From 45773739a7e2664d34551d981092c87e657f75aa Mon Sep 17 00:00:00 2001 From: Matthew Podolak Date: Sun, 1 Aug 2021 14:03:13 -0400 Subject: [PATCH 01/18] initial praw implementation --- CHANGES.md | 4 +++ pmaw/PushshiftAPI.py | 10 +----- pmaw/PushshiftAPIBase.py | 7 ++-- pmaw/Request.py | 69 ++++++++++++++++++++++++++++++++++++---- pmaw/__init__.py | 2 +- 5 files changed, 72 insertions(+), 20 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index e3da84a..9d77e5a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,7 @@ +## 2.0.0 (2021/08/xx) + +- Added support for enriching result metadata using PRAW + ## 1.1.0 (2021/05/27) - Added gzip for cached pickle files diff --git a/pmaw/PushshiftAPI.py b/pmaw/PushshiftAPI.py index 3770ebc..8af4658 100644 --- a/pmaw/PushshiftAPI.py +++ b/pmaw/PushshiftAPI.py @@ -1,14 +1,5 @@ -import copy -from concurrent.futures import ThreadPoolExecutor, as_completed -import json -from collections import deque -import logging - from pmaw.PushshiftAPIBase import PushshiftAPIBase -log = logging.getLogger(__name__) - - class PushshiftAPI(PushshiftAPIBase): def __init__(self, *args, **kwargs): """ @@ -26,6 +17,7 @@ def __init__(self, *args, **kwargs): jitter (str, optional) - Jitter to use with backoff, defaults to None, options are None, full, equal, decorr checkpoint (int, optional) - Size of interval in batches to print a checkpoint with stats, defaults to 10 file_checkpoint (int, optional) - Size of interval in batches to cache responses when using mem_safe, defaults to 20 + praw (praw.Reddit, optional) - Used to enrich the Pushshift items retrieved with metadata directly from Reddit """ super().__init__(*args, **kwargs) diff --git a/pmaw/PushshiftAPIBase.py b/pmaw/PushshiftAPIBase.py index 9bf2492..ce714bd 100644 --- a/pmaw/PushshiftAPIBase.py +++ b/pmaw/PushshiftAPIBase.py @@ -16,7 +16,7 @@ class PushshiftAPIBase(object): def __init__(self, num_workers=10, max_sleep=60, rate_limit=60, base_backoff=0.5, batch_size=None, shards_down_behavior='warn', limit_type='average', jitter=None, - checkpoint=10, file_checkpoint=20): + checkpoint=10, file_checkpoint=20, praw=None): self.num_workers = num_workers self.domain = 'api' self.shards_down_behavior = shards_down_behavior @@ -24,6 +24,7 @@ def __init__(self, num_workers=10, max_sleep=60, rate_limit=60, base_backoff=0.5 self.resp_dict = {} self.checkpoint = checkpoint self.file_checkpoint = file_checkpoint + self.praw = praw if batch_size: self.batch_size = batch_size @@ -42,7 +43,7 @@ def base_url(self): def _impose_rate_limit(self): interval = self._rate_limit.delay() if interval > 0: - time.sleep(interval) + self.req._idle_task(interval) def _get(self, url, payload={}): self._impose_rate_limit() @@ -217,7 +218,7 @@ def _search(self, self.metadata_ = {} self.req = Request(copy.deepcopy(kwargs), kind, - max_results_per_request, max_ids_per_request, mem_safe, safe_exit, cache_dir=cache_dir) + max_results_per_request, max_ids_per_request, mem_safe, safe_exit, cache_dir, self.praw) # reset stat tracking self._reset() diff --git a/pmaw/Request.py b/pmaw/Request.py index 7cf0ce5..84e9106 100644 --- a/pmaw/Request.py +++ b/pmaw/Request.py @@ -3,12 +3,14 @@ import datetime as dt from collections import deque import warnings +from threading import Event +import signal +import time from pmaw.Cache import Cache from pmaw.utils.slices import timeslice, mapslice from pmaw.Response import Response -from threading import Event -import signal + log = logging.getLogger(__name__) @@ -16,7 +18,7 @@ class Request(object): """Request: Handles request information, response saving, and cache usage.""" - def __init__(self, payload, kind, max_results_per_request, max_ids_per_request, mem_safe, safe_exit, cache_dir=None): + def __init__(self, payload, kind, max_results_per_request, max_ids_per_request, mem_safe, safe_exit, cache_dir=None, praw=None): self.kind = kind self.max_ids_per_request = min(1000, max_ids_per_request) self.max_results_per_request = min(100, max_results_per_request) @@ -26,7 +28,19 @@ def __init__(self, payload, kind, max_results_per_request, max_ids_per_request, self.payload = payload self.limit = payload.get('limit', None) self.exit = Event() + self.praw = praw + if self.praw is not None: + if safe_exit: + raise NotImplementedError('safe_exit is not implemented when PRAW is used for metadata enrichment') + + self.payload['filter'] = 'id' + self.enrich_list = deque() + if kind == "submission": + self.prefix = "t3_" + else: + self.prefix = "t1_" + if 'ids' not in self.payload: # add necessary args self._add_nec_args(self.payload) @@ -60,6 +74,43 @@ def check_sigs(self): for sig in sigs: signal.signal(getattr(signal, 'SIG'+sig), self._exit) + def _idle_task(self, interval): + print(f'INTERVAL {interval}') + if self.praw: + start = time.time() + current = time.time() + # make multiple enrich requests based on sleep interval + while current - start < interval: + print('ENRICHING DATA') + # create batch of fullnames up to 100 + fullnames = [] + while len(fullnames) < 100: + try: + fullnames.append(self.enrich_list.popleft()) + except IndexError: + break + + # exit loop if nothing to enrich + if len(fullnames) == 0: + break + + try: + # TODO: may need to change praw usage based on multithread performance + resp_gen = self.praw.info(fullnames=fullnames) + praw_data = [vars(obj) for obj in resp_gen] + self.resp.responses.extend(praw_data) + + # some ids returned by Pushshift may not be available via PRAW + self.limit -= len(fullnames) + except Exception as exc: + print(f'PRAW ENRICH EXCPETION {exc}') + self.enrich_list.extend(fullnames) + + current = time.time() + + else: + time.sleep(interval) + def save_cache(self): # trim extra responses self.trim() @@ -76,11 +127,15 @@ def _exit(self, signo, _frame): self.exit.set() def save_resp(self, results): - if self.kind == 'submission_comment_ids': - self.limit -= 1 + if self.praw: + # save fullnames of objects to be enriched with metadata by PRAW + self.enrich_list.extend([self.prefix+res['id'] for res in results]) else: - self.limit -= len(results) - self.resp.responses.extend(results) + if self.kind == 'submission_comment_ids': + self.limit -= 1 + else: + self.limit -= len(results) + self.resp.responses.extend(results) def _add_nec_args(self, payload): """Adds arguments to the payload as necessary.""" diff --git a/pmaw/__init__.py b/pmaw/__init__.py index 759dcae..e004105 100644 --- a/pmaw/__init__.py +++ b/pmaw/__init__.py @@ -5,7 +5,7 @@ """ PMAW: Pushshift Multithread API Wrapper """ -__version__ = '1.1.0' +__version__ = '2.0.0' __author__ = 'Matthew Podolak' __license__ = 'MIT' From 98112f60c4decaa54e114752bebe57b198a7f38a Mon Sep 17 00:00:00 2001 From: Matthew Podolak Date: Tue, 3 Aug 2021 08:44:09 -0400 Subject: [PATCH 02/18] improved limit handling for enrichment --- pmaw/PushshiftAPIBase.py | 78 +++++++++++++++++++------------------- pmaw/Request.py | 82 ++++++++++++++++++++++++---------------- 2 files changed, 88 insertions(+), 72 deletions(-) diff --git a/pmaw/PushshiftAPIBase.py b/pmaw/PushshiftAPIBase.py index ce714bd..f71725c 100644 --- a/pmaw/PushshiftAPIBase.py +++ b/pmaw/PushshiftAPIBase.py @@ -80,48 +80,48 @@ def shards_are_down(self): return shards['successful'] != shards['total'] def _multithread(self, check_total=False): - executor = ThreadPoolExecutor(max_workers=self.num_workers) - - while len(self.req.req_list) > 0 and not self.req.exit.is_set(): - # reset resp_dict which tracks remaining responses for timeslices - self.resp_dict = {} - - # set number of futures created to batch size - reqs = [] - if check_total: - reqs.append(self.req.req_list.popleft()) - else: - for i in range(min(len(self.req.req_list), self.batch_size)): - reqs.append(self.req.req_list.popleft()) - - futures = {executor.submit( - self._get, url_pay[0], url_pay[1]): url_pay for url_pay in reqs} - - self._futures_handler(futures, check_total) + with ThreadPoolExecutor(max_workers=self.num_workers) as executor: - # reset attempts if no failures - self._rate_limit._check_fail() + while len(self.req.req_list) > 0 and not self.req.exit.is_set(): + # reset resp_dict which tracks remaining responses for timeslices + self.resp_dict = {} - # check if shards are down - if self.shards_are_down and (self.shards_down_behavior is not None): - shards_down_message = "Not all PushShift shards are active. Query results may be incomplete." - if self.shards_down_behavior == 'warn': - log.warning(shards_down_message) - if self.shards_down_behavior == 'stop': - self._shutdown(executor) - raise RuntimeError( - shards_down_message + f' {len(self.req.req_list)} unfinished requests.') + # set number of futures created to batch size + reqs = [] + if check_total: + reqs.append(self.req.req_list.popleft()) + else: + for i in range(min(len(self.req.req_list), self.batch_size)): + reqs.append(self.req.req_list.popleft()) + + futures = {executor.submit( + self._get, url_pay[0], url_pay[1]): url_pay for url_pay in reqs} + + self._futures_handler(futures, check_total) + + # reset attempts if no failures + self._rate_limit._check_fail() + + # check if shards are down + if self.shards_are_down and (self.shards_down_behavior is not None): + shards_down_message = "Not all PushShift shards are active. Query results may be incomplete." + if self.shards_down_behavior == 'warn': + log.warning(shards_down_message) + if self.shards_down_behavior == 'stop': + self._shutdown(executor) + raise RuntimeError( + shards_down_message + f' {len(self.req.req_list)} unfinished requests.') + if not check_total: + self.num_batches += 1 + if self.num_batches % self.file_checkpoint == 0: + # cache current results + executor.submit(self.req.save_cache()) + self._print_stats('Checkpoint') + else: + break if not check_total: - self.num_batches += 1 - if self.num_batches % self.file_checkpoint == 0: - # cache current results - executor.submit(self.req.save_cache()) - self._print_stats('Checkpoint') - else: - break - if not check_total: - self._print_stats('Total') - self._shutdown(executor) + self._print_stats('Total') + self._shutdown(executor) def _futures_handler(self, futures, check_total): for future in as_completed(futures): diff --git a/pmaw/Request.py b/pmaw/Request.py index 84e9106..5fdae5c 100644 --- a/pmaw/Request.py +++ b/pmaw/Request.py @@ -74,37 +74,38 @@ def check_sigs(self): for sig in sigs: signal.signal(getattr(signal, 'SIG'+sig), self._exit) + def _enrich_data(self): + print('ENRICHING DATA') + # create batch of fullnames up to 100 + fullnames = [] + while len(fullnames) < 100: + try: + fullnames.append(self.enrich_list.popleft()) + except IndexError: + break + + # exit loop if nothing to enrich + if len(fullnames) == 0: + return + + try: + # TODO: may need to change praw usage based on multithread performance + resp_gen = self.praw.info(fullnames=fullnames) + praw_data = [vars(obj) for obj in resp_gen] + self.resp.responses.extend(praw_data) + + except Exception as exc: + print(f'PRAW ENRICH EXCPETION {exc}') + self.enrich_list.extend(fullnames) + def _idle_task(self, interval): - print(f'INTERVAL {interval}') if self.praw: start = time.time() current = time.time() # make multiple enrich requests based on sleep interval - while current - start < interval: - print('ENRICHING DATA') - # create batch of fullnames up to 100 - fullnames = [] - while len(fullnames) < 100: - try: - fullnames.append(self.enrich_list.popleft()) - except IndexError: - break - - # exit loop if nothing to enrich - if len(fullnames) == 0: - break + while current - start < interval and len(self.enrich_list) > 0: - try: - # TODO: may need to change praw usage based on multithread performance - resp_gen = self.praw.info(fullnames=fullnames) - praw_data = [vars(obj) for obj in resp_gen] - self.resp.responses.extend(praw_data) - - # some ids returned by Pushshift may not be available via PRAW - self.limit -= len(fullnames) - except Exception as exc: - print(f'PRAW ENRICH EXCPETION {exc}') - self.enrich_list.extend(fullnames) + self._enrich_data() current = time.time() @@ -114,6 +115,12 @@ def _idle_task(self, interval): def save_cache(self): # trim extra responses self.trim() + + # enrich if needed + if self.praw: + while len(self.enrich_list) > 0: + self._enrich_data() + if self.safe_exit and not self.limit == None and (self.limit == 0 or self.exit.is_set()): # save request info to cache self._cache.save_info(req_list=self.req_list, @@ -127,14 +134,15 @@ def _exit(self, signo, _frame): self.exit.set() def save_resp(self, results): + if self.kind == 'submission_comment_ids': + self.limit -= 1 + else: + self.limit -= len(results) + if self.praw: # save fullnames of objects to be enriched with metadata by PRAW self.enrich_list.extend([self.prefix+res['id'] for res in results]) else: - if self.kind == 'submission_comment_ids': - self.limit -= 1 - else: - self.limit -= len(results) self.resp.responses.extend(results) def _add_nec_args(self, payload): @@ -242,7 +250,15 @@ def _id_list(self, payload): payload['ids'] = list(payload['ids']) def trim(self): - if self.limit and self.limit < 0: - log.debug(f'Trimming {self.limit*-1} requests') - self.resp.responses = self.resp.responses[:self.limit] - self.limit = 0 + if self.limit: + if self.praw: + while self.limit < 0: + try: + self.enrich_list.pop() + self.limit += 1 + except IndexError as exc: + break + if self.limit < 0: + log.debug(f'Trimming {self.limit*-1} requests') + self.resp.responses = self.resp.responses[:self.limit] + self.limit = 0 From 3c84ada95dfd9f7936bf9a0b0a2c85d09aef4a39 Mon Sep 17 00:00:00 2001 From: Matthew Podolak Date: Wed, 4 Aug 2021 08:16:40 -0400 Subject: [PATCH 03/18] improve enrichment --- pmaw/Request.py | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/pmaw/Request.py b/pmaw/Request.py index 5fdae5c..a25b177 100644 --- a/pmaw/Request.py +++ b/pmaw/Request.py @@ -33,9 +33,13 @@ def __init__(self, payload, kind, max_results_per_request, max_ids_per_request, if self.praw is not None: if safe_exit: raise NotImplementedError('safe_exit is not implemented when PRAW is used for metadata enrichment') - - self.payload['filter'] = 'id' + self.enrich_list = deque() + + if not kind == 'submission_comment_ids' : + # id filter causes an error for submission_comment_ids endpoint + self.payload['filter'] = 'id' + if kind == "submission": self.prefix = "t3_" else: @@ -75,7 +79,6 @@ def check_sigs(self): signal.signal(getattr(signal, 'SIG'+sig), self._exit) def _enrich_data(self): - print('ENRICHING DATA') # create batch of fullnames up to 100 fullnames = [] while len(fullnames) < 100: @@ -95,7 +98,6 @@ def _enrich_data(self): self.resp.responses.extend(praw_data) except Exception as exc: - print(f'PRAW ENRICH EXCPETION {exc}') self.enrich_list.extend(fullnames) def _idle_task(self, interval): @@ -141,7 +143,10 @@ def save_resp(self, results): if self.praw: # save fullnames of objects to be enriched with metadata by PRAW - self.enrich_list.extend([self.prefix+res['id'] for res in results]) + if self.kind == 'submission_comment_ids': + self.enrich_list.extend([self.prefix+res for res in results]) + else: + self.enrich_list.extend([self.prefix+res['id'] for res in results]) else: self.resp.responses.extend(results) From dcd06743f743ec93d725d70ba7db51d39d4c7b22 Mon Sep 17 00:00:00 2001 From: Matthew Podolak Date: Wed, 4 Aug 2021 08:21:00 -0400 Subject: [PATCH 04/18] added delay when enrichment queue is empty --- pmaw/Request.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/pmaw/Request.py b/pmaw/Request.py index a25b177..798e512 100644 --- a/pmaw/Request.py +++ b/pmaw/Request.py @@ -101,9 +101,10 @@ def _enrich_data(self): self.enrich_list.extend(fullnames) def _idle_task(self, interval): + start = time.time() + current = time.time() + if self.praw: - start = time.time() - current = time.time() # make multiple enrich requests based on sleep interval while current - start < interval and len(self.enrich_list) > 0: @@ -111,8 +112,11 @@ def _idle_task(self, interval): current = time.time() - else: - time.sleep(interval) + current = time.time() + diff = (current - start) + + if diff < interval and diff >= 0: + time.sleep(interval-diff) def save_cache(self): # trim extra responses From 56422d2c5bb95a1998c51bab5b80dedd496e89d9 Mon Sep 17 00:00:00 2001 From: Matthew Podolak Date: Mon, 6 Sep 2021 16:13:56 -0400 Subject: [PATCH 05/18] reset resp dict before search --- pmaw/PushshiftAPIBase.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pmaw/PushshiftAPIBase.py b/pmaw/PushshiftAPIBase.py index f71725c..50e2ec4 100644 --- a/pmaw/PushshiftAPIBase.py +++ b/pmaw/PushshiftAPIBase.py @@ -217,6 +217,7 @@ def _search(self, raise NotImplementedError(err_msg.format(kwargs['aggs'])) self.metadata_ = {} + self.resp_dict = {} self.req = Request(copy.deepcopy(kwargs), kind, max_results_per_request, max_ids_per_request, mem_safe, safe_exit, cache_dir, self.praw) From 1abd11bb0a4549716a0a1da2d11705a3a4b02b6c Mon Sep 17 00:00:00 2001 From: Matthew Podolak Date: Mon, 6 Sep 2021 18:14:43 -0400 Subject: [PATCH 06/18] updated max_ids_per_request to 500 max --- README.md | 4 ++-- pmaw/PushshiftAPI.py | 6 +++--- pmaw/PushshiftAPIBase.py | 2 +- pmaw/Request.py | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index f9884e1..c691b69 100644 --- a/README.md +++ b/README.md @@ -143,7 +143,7 @@ Similarly to the memory safety feature, a `Response` generator object is returne ## `search_submissions` and `search_comments` -- `max_ids_per_request` (int, optional): Maximum number of ids to use in a single request, defaults to 1000, maximum 1000. +- `max_ids_per_request` (int, optional): Maximum number of ids to use in a single request, defaults to 500, maximum 500. - `max_results_per_request` (int, optional): Maximum number of items to return in a single non-id based request, defaults to 100, maximum 100. - `mem_safe` (boolean, optional): If True, stores responses in cache during operation, defaults to False - `search_window` (int, optional): Size in days for search window for submissions / comments in non-id based search, defaults to 365 @@ -158,7 +158,7 @@ Similarly to the memory safety feature, a `Response` generator object is returne ## `search_submission_comment_ids` - `ids` is a required parameter and should be an array of submission ids, a single id can be passed as a string -- `max_ids_per_request` (int, optional): Maximum number of ids to use in a single request, defaults to 1000, maximum 1000. +- `max_ids_per_request` (int, optional): Maximum number of ids to use in a single request, defaults to 500, maximum 500. - `mem_safe` (boolean, optional): If True, stores responses in cache during operation, defaults to False - `safe_exit` (boolean, optional): If True, will safely exit if interrupted by storing current responses and requests in the cache. Will also load previous requests / responses if found in cache, defaults to False diff --git a/pmaw/PushshiftAPI.py b/pmaw/PushshiftAPI.py index 8af4658..9dabfe1 100644 --- a/pmaw/PushshiftAPI.py +++ b/pmaw/PushshiftAPI.py @@ -27,7 +27,7 @@ def search_submission_comment_ids(self, ids, **kwargs): Input: ids (str, list) - Submission id(s) to return the comment ids of - max_ids_per_request (int, optional) - Maximum number of ids to use in a single request, defaults to 1000, maximum 1000. + max_ids_per_request (int, optional) - Maximum number of ids to use in a single request, defaults to 500, maximum 500. mem_safe (boolean, optional) - If True, stores responses in cache during operation, defaults to False safe_exit (boolean, optional) - If True, will safely exit if interrupted by storing current responses and requests in the cache. Will also load previous requests / responses if found in cache, defaults to False Output: @@ -41,7 +41,7 @@ def search_comments(self, **kwargs): Method for searching comments, returns an array of comments Input: - max_ids_per_request (int, optional) - Maximum number of ids to use in a single request, defaults to 1000, maximum 1000. + max_ids_per_request (int, optional) - Maximum number of ids to use in a single request, defaults to 500, maximum 500. max_results_per_request (int, optional) - Maximum number of items to return in a single non-id based request, defaults to 100, maximum 100. mem_safe (boolean, optional) - If True, stores responses in cache during operation, defaults to False search_window (int, optional) - Size in days for search window for submissions / comments in non-id based search, defaults to 365 @@ -56,7 +56,7 @@ def search_submissions(self, **kwargs): Method for searching submissions, returns an array of submissions Input: - max_ids_per_request (int, optional) - Maximum number of ids to use in a single request, defaults to 1000, maximum 1000. + max_ids_per_request (int, optional) - Maximum number of ids to use in a single request, defaults to 500, maximum 500. max_results_per_request (int, optional) - Maximum number of items to return in a single non-id based request, defaults to 100, maximum 100. mem_safe (boolean, optional) - If True, stores responses in cache during operation, defaults to False search_window (int, optional) - Size in days for search window for submissions / comments in non-id based search, defaults to 365 diff --git a/pmaw/PushshiftAPIBase.py b/pmaw/PushshiftAPIBase.py index 50e2ec4..101090d 100644 --- a/pmaw/PushshiftAPIBase.py +++ b/pmaw/PushshiftAPIBase.py @@ -202,7 +202,7 @@ def _reset(self): def _search(self, kind, - max_ids_per_request=1000, + max_ids_per_request=500, max_results_per_request=100, mem_safe=False, search_window=365, diff --git a/pmaw/Request.py b/pmaw/Request.py index 798e512..d57c950 100644 --- a/pmaw/Request.py +++ b/pmaw/Request.py @@ -20,7 +20,7 @@ class Request(object): def __init__(self, payload, kind, max_results_per_request, max_ids_per_request, mem_safe, safe_exit, cache_dir=None, praw=None): self.kind = kind - self.max_ids_per_request = min(1000, max_ids_per_request) + self.max_ids_per_request = min(500, max_ids_per_request) self.max_results_per_request = min(100, max_results_per_request) self.safe_exit = safe_exit self.mem_safe = mem_safe From 0545521ceeefcf1184a2e6ee544a930e82187945 Mon Sep 17 00:00:00 2001 From: Matthew Podolak Date: Mon, 6 Sep 2021 18:16:07 -0400 Subject: [PATCH 07/18] added functional tests --- .coveragerc | 5 + .gitignore | 16 +- cassettes/test_comment_praw_ids | 235 + cassettes/test_comment_praw_limit | 1608 +++ cassettes/test_comment_praw_mem_safe | 4712 +++++++ cassettes/test_comment_praw_query | 2341 ++++ cassettes/test_comment_search_ids | 83 + cassettes/test_comment_search_limit | 2989 +++++ cassettes/test_comment_search_mem_safe | 3312 +++++ cassettes/test_comment_search_query | 6240 +++++++++ cassettes/test_submission_comment_ids_praw | 2762 ++++ .../test_submission_comment_ids_praw_mem_safe | 1935 +++ cassettes/test_submission_comment_ids_search | 485 + ...est_submission_comment_ids_search_mem_safe | 430 + cassettes/test_submission_praw_ids | 259 + cassettes/test_submission_praw_limit | 2966 ++++ cassettes/test_submission_praw_mem_safe | 11183 ++++++++++++++++ cassettes/test_submission_praw_query | 2482 ++++ cassettes/test_submission_search_ids | 173 + cassettes/test_submission_search_limit | 9799 ++++++++++++++ cassettes/test_submission_search_mem_safe | 9799 ++++++++++++++ cassettes/test_submission_search_query | 4122 ++++++ tests/__init__.py | 0 tests/config.py | 58 + tests/test_search_comments.py | 50 + tests/test_search_submission_comment_ids.py | 26 + tests/test_search_submissions.py | 50 + 27 files changed, 68115 insertions(+), 5 deletions(-) create mode 100644 .coveragerc create mode 100644 cassettes/test_comment_praw_ids create mode 100644 cassettes/test_comment_praw_limit create mode 100644 cassettes/test_comment_praw_mem_safe create mode 100644 cassettes/test_comment_praw_query create mode 100644 cassettes/test_comment_search_ids create mode 100644 cassettes/test_comment_search_limit create mode 100644 cassettes/test_comment_search_mem_safe create mode 100644 cassettes/test_comment_search_query create mode 100644 cassettes/test_submission_comment_ids_praw create mode 100644 cassettes/test_submission_comment_ids_praw_mem_safe create mode 100644 cassettes/test_submission_comment_ids_search create mode 100644 cassettes/test_submission_comment_ids_search_mem_safe create mode 100644 cassettes/test_submission_praw_ids create mode 100644 cassettes/test_submission_praw_limit create mode 100644 cassettes/test_submission_praw_mem_safe create mode 100644 cassettes/test_submission_praw_query create mode 100644 cassettes/test_submission_search_ids create mode 100644 cassettes/test_submission_search_limit create mode 100644 cassettes/test_submission_search_mem_safe create mode 100644 cassettes/test_submission_search_query create mode 100644 tests/__init__.py create mode 100644 tests/config.py create mode 100644 tests/test_search_comments.py create mode 100644 tests/test_search_submission_comment_ids.py create mode 100644 tests/test_search_submissions.py diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 0000000..7e01820 --- /dev/null +++ b/.coveragerc @@ -0,0 +1,5 @@ +[run] +omit = + */__init__.py + setup.py + tests/* \ No newline at end of file diff --git a/.gitignore b/.gitignore index 3717025..8aef087 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,14 @@ -pmaw.egg-info /dist /build -/pmaw/utils/__pycache__ -/pmaw/__pycache__ /examples/.ipynb_checkpoints -/examples/cache -pmaw.code-workspace \ No newline at end of file +.pytest_cache +.coverage +.env +pytest.ini +pytest.log + +pmaw.code-workspace +pmaw.egg-info + +/**/__pycache__ +/**/cache \ No newline at end of file diff --git a/cassettes/test_comment_praw_ids b/cassettes/test_comment_praw_ids new file mode 100644 index 0000000..0e495ae --- /dev/null +++ b/cassettes/test_comment_praw_ids @@ -0,0 +1,235 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?ids=gjacwx5,gjad2l6,gjadatw,gjadc7w,gjadcwh,gjadgd7,gjadlbc,gjadnoc,gjadog1,gjadphb&filter=id + response: + body: + string: !!binary | + H4sIAAAAAAAAA6vmUlBQUFBKSSxJVLJSiAbzQKAazgLLZ6YoWSkopWclJpdXmCrB5Wp1CGpIMcox + I01DYkk5aRqSzUnVUJ5Bmob0FHPSNOQkJZOmIS+fRA356YakaSjISELSAGbFctUCACL2XKYAAgAA + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa5d77f8765419-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:14:44 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:27:08 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=skUCIH2wOwHhxyDfkLeipV2V8yt3dzgZKIJwpERvZ4dR3xgMkSfm1mO3MKBIxVMn2Nh3EHvC2eiUKMy9XvXIZzsqqNiHxETdzQ%2FCqOVRWg6DjnkwgkrTMerKpt%2F9ySjC6Feb"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: grant_type=client_credentials + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - close + Content-Length: + - '29' + Content-Type: + - application/x-www-form-urlencoded + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: POST + uri: https://www.reddit.com/api/v1/access_token + response: + body: + string: '{"access_token": "-4uIIMpDagkzEBoDIq8z72RyhdnHPow", "token_type": "bearer", + "expires_in": 3600, "scope": "*"}' + headers: + Accept-Ranges: + - bytes + Connection: + - close + Content-Length: + - '109' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:14:44 GMT + Server: + - snooserv + Set-Cookie: + - edgebucket=XreUlfBxUYDdPwXofO; Domain=reddit.com; Max-Age=63071999; Path=/; secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + cache-control: + - max-age=0, must-revalidate + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '299' + x-ratelimit-reset: + - '316' + x-ratelimit-used: + - '1' + x-reddit-loid: + - 0000000000edkb2hvn.2.1630959284353.Z0FBQUFBQmhObmEwVG4wS0tOVC1JNjVtRktoUmtQVnBrZGQyVDMwOFI0V1c4aUl6Mjk1LW9IQ2VjSW95X1NzanJZMjNEbWxpM1JQVXJVZnVsS3R5eFJaS25oRzVmNVVYa0dCbE12cUEwZnQtYld2c2UyRnhGZ3IzUGJDVFFwQWxlcUJGTVQ1eEpwOHY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - edgebucket=XreUlfBxUYDdPwXofO + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t1_gjacwx5%2Ct1_gjad2l6%2Ct1_gjadatw%2Ct1_gjadc7w%2Ct1_gjadcwh%2Ct1_gjadgd7%2Ct1_gjadlbc%2Ct1_gjadnoc%2Ct1_gjadog1%2Ct1_gjadphb&raw_json=1 + response: + body: + string: !!binary | + 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 + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '2312' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:14:44 GMT + Server: + - snooserv + Set-Cookie: + - loid=0000000000edkb2hvn.2.1630959284353.Z0FBQUFBQmhObmEwVmp2Wi1yZG5uWHVLRkZDb05zelpFY0ZuLTBFbmhwWnAtcWxkdkJrTUFiakhfNlhZWHZleGtOTHRuQ1N3UmJIcl9RN2FUa0M3OWhoWVQ0aVFBeXVVUUpjUWloU0RSbFBycWVpTUVRZkI0MU1yTXhZZ1ZKMS1XY2pfMTV1VVZlVEI; + Domain=reddit.com; Max-Age=63071999; Path=/; expires=Wed, 06-Sep-2023 20:14:44 + GMT; secure; SameSite=None; Secure + - session_tracker=krbbcpbibdmbmpohem.0.1630959284459.Z0FBQUFBQmhObmEwU0pvajNaTjdrZnRzazd6MndrSHFubzFidXdCODB6bjhQZU9JODhuM3JiQ3ZOWm5ZQnp4MVN6Mm9iUFNBTy1XWk1YX1pPanc2X052ejJtdU1xOVdmTzhMYjFSVHJLcE0xV2htQjFreUlQQ20tMTRoTjRxS0NEZW15V3diR3JvNVg; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 22:14:44 + GMT; secure; SameSite=None; Secure + - csv=1; Max-Age=63072000; Domain=.reddit.com; Path=/; Secure; SameSite=None + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '299' + x-ratelimit-reset: + - '316' + x-ratelimit-used: + - '1' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +version: 1 diff --git a/cassettes/test_comment_praw_limit b/cassettes/test_comment_praw_limit new file mode 100644 index 0000000..8300d92 --- /dev/null +++ b/cassettes/test_comment_praw_limit @@ -0,0 +1,1608 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=100&before=1629990795&filter=id&filter=created_utc&size=100&sort=desc&metadata=true + response: + body: + string: !!binary | + H4sIAAAAAAAAA7Wa226jMBCG7/sUEdfVCjBg3FepqoiAScwxwSaHVnn3FUnVhYY/bcdbrlLGfEzn + jOHtYbFYLJwsMYnztHi+/DUcbx+/LvK0k4mR2bI3qfO08CJfCOHyyHucLlOZ87RwNklebWvjfMjO + jz/jMg65TRmTuZEQkFumnM6NY8gtpLbg+pCr+pbO5dhvm72ic6MIc3Mb7h192YnODQPIXeeeBRfr + u+a9BdfFXD+hcwMGufnawm8Bjt88XdO5HvZbeizI3DDCeRyfjr/EPdC5IfYbb+l5EfrYb8FraMHF + 8Rv09H4Rene4bkTnuriesdq14OL4ZTk9fgOB/ebn9P4WxCHken1A5/owL8rD/tWC62Puip5vgQft + UO53GZnLsH1LE9DrL+Nwjiq1RX9jHOZb2e0EnRtiv+34js4NsL7biN6PmQ/nybINDxZc7LfmRO+b + zIP9oqy3ksz1BZx3ylLT51Sfw/pbFht6v/DxPFmq0Kdz78TvJmN0rofrpJSeBRfbVwr3d7g8JXM9 + DvtmmVR0v3kRzgvR0ucHj2EuZ/R+7ApcH9jrns6NcT1jCX3ucznm+gW9b7oh5rq71IKL48zN6H3I + daG+xSGj7hPEQuC5r+hPOzoX51thVokF18NcP6ZzI6yv3nR0LsP23WpG5sYC1smirg8WXGzfmnt0 + Lt6PKqq1S+feibNya2EHhrmbOKdzXdiPC3lILLgcc40gczmHfahY7TmdG2A7iNb8Dreh1zOOn9+K + qLewA95/KKKcXh/4nTiL4siCi+MsCk5kboTnqMIXLZ0bYr95xYbODXA/9rySzsXPb+qV0eM3xO8v + 1KEK6NwY+k3tRWrB9TDXO/4Sl15/Qzynqr7PLbgx5hp6nIX4fYsyuxWdi/eVla7o80MYYL91hUU8 + 4Lqutgm9D4V4XldtV1twsd9aG/u62G/tiv58EcRY31obCy7Wt1YNnYvfv6mi3tK5eL9PbZrWghtg + bmTD9THXzchcJrC+sjhYcLHfpMX8wO7U38yn900W4j6/EiGdy7Ad4iO9DzEXx0OU0Z+7fbz/oMLN + uJ5dfr1cFzu1NMn7dyf/7uIkuZGd87Ro+qp6HJ1er5davcrhrq47FmzVci87rdpmuCf74zoj6Urm + bSdHn5aIUatwpF7uetmdJhpcJPOnr8i2rWYlF2muqqv+8/KvCR+r6l6bySc56Hj7csWFZ2RX6y9v + O7lE96tOZpn6nh7TS1Mlm3T0TuGr4+VbK89frjo//i+DdUmzlj8z2DQ93n5msspM4vTbF5//l+Xu + rni5b1dHb9q+GtL+GXty/g7AY5cEWDatmWdOWZ8YzlypuArazszn9dR3TiZ1Oo3e81x9dORRpr1R + bbM0qpbLWlWV0jJtm2xINu6yP+Pdw3/14fmmYj7iUvsw4wVHNZk8Dqp26bjkVaq+JKzjuZNSOCq3 + jul6OZZdQl3faDVjpftJ8e0E+Fawn79y+qxZOqn7yuhlJ03fNTK76Rh6k3TZbSV08kRVl+U3MVOq + 7XZe0qep1Drvh3oefZ4GTGuSQcCD2ciZbWfv8XkNv0/nl+a0Ha6YWHm8Bpbr23I8ttgQuNmy7Yfr + 8qTSciwb/oflu00HbT3hi9ATD1cHnP8CsYyuXEAqAAA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa4cd87de8ca94-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:03:21 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:26:54 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=JzeEyp1%2BLwdQ%2FIRCPppecdWlWDZEGsJMSs5Kql2ohOGlwEBP8KNpXqJY%2Fe24DhVXlZ2PqyFELaVrdrRYaerJWVA9zfiru7lfHD7JvgZHbuFw2u0G3ebUY%2B8yiF6ZMwcCm0Ff"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=100&before=1601608395&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1598454795 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa3XKiTBCGz3MVFseprRkGBsitpFIUwoAoiPKjaMp73wJTWVh50fR8fifrkdrD + Q9vz9o/A58tisVgYUVAHxtvivf/UvT6/3/X2sFRBrSK/qUPjbcEl45K5wrFfx8vSyHhbGIkTmVG4 + Mr5tl9efcW0TcpeHnM61BOYGSoM7469zoHNNzA24R+cyBrlu5pC5pofj69r0OJhCQq6VCw0ujq8V + 0XVmmjgvxHFL53IXc9eVBhfHVygdLtaZ0NCvyXB8zb1J5nLPwlzTpnNdHF++CZ7ElRpcjrnens51 + HMxlazpX4rxgq1aDi+sZs5PncC16neQ21C8/Z8VzuJtKgyswd62hX0tirqU0uDbmcnrf5AJzT7HG + vnHY33jLGZnLPBzfI6PnGxOw7vDyLJ7DPe3oXDyf8TLe0Lkc59u+1dg3jvNtf+QaXByHfUP+H+B4 + zIPcTULOY8f1YL/g612iwcV5sc5qOted8VfsNLhYZ+nB0uAyzM1COhfPDzxVaw0u1m8qTDpX4rqz + igo618Z6WMkjnWvhfEvylQYX6yGxbDpXzPjLNfTAcT9W8UmDi+uvWtK5Dp7XebjM6NyZfAv5UYOL + 9bDc0vPCkdjfZUKvv46NuUGzp3OtGa6rEd8Z/boBeU515EzfdLyDBhfnhWxrDS7OC1nndK7Edcde + 0fNYztR1q1nSuTM6s2SqwcX7Jlr6fCZn6rrY0fux7WIuKzZ0rgP3jZ3PGv7iuYSdM4/OxdfX2Smg + 55uNdcbaM11nloRzKqt2jM61YX1gZUPXr/Bg/WXFsqRzHRyH/BjQuRLrIbfofUhY2N9Na2pwBeYe + NPw1sb/rnL5vpgfrDlsdXTrXwdxka2lwJebGXIOL8yIJpQYX71vi0fu8aeG6rjK6zkyG/V3u6HMU + t7Ee3JLuLxdwXmeyielcE8dXFhWdi68bMXvDNbi4v9mq0ODiemZr/D9m+PoOE/TrfQ6TuD6YJV0P + bEa/ZhA8h+vR53WG7wcwHtLrLxN431hO1pn0PNTnw3NbmnQuvD4Zntt1NOD27z6ui41c1cHXcyd/ + zmIEca3Kjm17rmVbznCWMoIk8av0rDr78CEGI9il/kGVVVpsuzOLX8wYWJcqLko1eABiBFWVv29U + eRr50Vumv74iiyKbtPTWOM2uv2Lafp/wvSpvqnr0YA56fd5d0fNqVebV3dOODqmaZamiKH3Mj/Gh + Yaq24WCSvvf6eGjl5e6qy+t/FbAy2CbqZwEbJ8nnz0KW1CPxP3zw5Z+PXFaPMvz/j9zsio/5uBrV + qmiyrmy+4xyYPgPYsb50+NuinmaOWX8xjKkiezUUZT1dEcd7Z0SqCsd5f5nqL4ZqVdjUabH16zRX + fp5mWVqpsNhGXZmy+K/hTdY/hfX9puG84k71MrEJRrqNVNt5WobDXpGleV/pDM5GPWTQrYy6uzow + sPVKr268mgjSfE48rP+HqsTlZ3v+RG8fycy73k5uYqmqJqsrv1R1U25VdDMYVKugjG4bnhEHadYv + vxH4Jt3tpi1NGKqqipuubd/caqiLOugMjjUp88mp5SuZrrny1/d+fdp1R4yiPFwDu/Jt1x1GrMuy + yC+a7rg4yCo1tHW/wf+KaS8wzlzxcg3/5TdtLeIbKywAAA== + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa4cdd8e1f3fdf-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:03:22 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:45:41 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=7IRhlOiWrMWJGs%2FgWlF17JQCCavbtbzmbjIlRO8zpVDdUeJGoKcWkUG%2FrqzzyZcdda40KDDs%2F5OhhRrkor55LXMVT9Vk8Sel88jyikRexMSmM1ahCnqlhiYKJT0LiJxwpbQF"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: grant_type=client_credentials + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - close + Content-Length: + - '29' + Content-Type: + - application/x-www-form-urlencoded + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: POST + uri: https://www.reddit.com/api/v1/access_token + response: + body: + string: '{"access_token": "-6KaG3ypybmxXMkKAlPBcVHppA9-p5w", "token_type": "bearer", + "expires_in": 3600, "scope": "*"}' + headers: + Accept-Ranges: + - bytes + Connection: + - close + Content-Length: + - '109' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:03:22 GMT + Server: + - snooserv + Set-Cookie: + - edgebucket=R5kcDw7QjgxxWJEznS; Domain=reddit.com; Max-Age=63071999; Path=/; secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + cache-control: + - max-age=0, must-revalidate + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '299' + x-ratelimit-reset: + - '398' + x-ratelimit-used: + - '1' + x-reddit-loid: + - 0000000000edk2un7t.2.1630958602158.Z0FBQUFBQmhOblFLdHFQclpfbmxrNERUbDlmaGhTNENuTFlmLVpMSngyVFBqcC1BQk5nM3FEU3NybnZBdTRCZGUwMWo0czF6ZmJIU0x4NlpNUldvNkd5WDZJaW41Vi1UZ0RCV2UweXZub0pzYUd3OU1qTzdmU3hCOTZLbE5QTnZsTTNTUEdPSmQ1Uks + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - edgebucket=R5kcDw7QjgxxWJEznS + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t1_gbgiix8%2Ct1_gbgihj7%2Ct1_gbgihe8%2Ct1_gbgif5y%2Ct1_gbgif0c%2Ct1_gbgie3z%2Ct1_gbgicq8%2Ct1_gbgicmu%2Ct1_gbgibfs%2Ct1_gbgibei%2Ct1_gbgibcp%2Ct1_gbgib26%2Ct1_gbgi9m2%2Ct1_gbgi8lr%2Ct1_gbgi7xx%2Ct1_gbgi7po%2Ct1_gbgi7js%2Ct1_gbgi6m5%2Ct1_gbgi5xa%2Ct1_gbgi5n2%2Ct1_gbgi5me%2Ct1_gbgi40p%2Ct1_gbgi1sz%2Ct1_gbgi0so%2Ct1_gbgi0o5%2Ct1_gbgi0jk%2Ct1_gbghzz3%2Ct1_gbghz3k%2Ct1_gbghw7x%2Ct1_gbghvr7%2Ct1_gbghvng%2Ct1_gbghvj2%2Ct1_gbghuyj%2Ct1_gbghuuv%2Ct1_gbght6h%2Ct1_gbghsys%2Ct1_gbghsek%2Ct1_gbghs4p%2Ct1_gbghrh7%2Ct1_gbghpox%2Ct1_gbghpaw%2Ct1_gbghoqf%2Ct1_gbghoka%2Ct1_gbghoj9%2Ct1_gbghogd%2Ct1_gbghlnd%2Ct1_gbghlkb%2Ct1_gbghlk2%2Ct1_gbghj0g%2Ct1_gbghivg%2Ct1_gbghi8r%2Ct1_gbghh3l%2Ct1_gbghfz8%2Ct1_gbghfhd%2Ct1_gbgheo0%2Ct1_gbghe6m%2Ct1_gbghdp8%2Ct1_gbghcyj%2Ct1_gbghc6a%2Ct1_gbghakb%2Ct1_gbgha9w%2Ct1_gbgh9rj%2Ct1_gbgh6gy%2Ct1_gbgh6fs%2Ct1_gbgh5o7%2Ct1_gbgh3xl%2Ct1_gbgh3q9%2Ct1_gbgh2tc%2Ct1_gbgh27o%2Ct1_gbgh27c%2Ct1_gbgh1e8%2Ct1_gbgh175%2Ct1_gbgh0mx%2Ct1_gbggzk9%2Ct1_gbggzhz%2Ct1_gbggywx%2Ct1_gbggxo7%2Ct1_gbggxd7%2Ct1_gbggx0w%2Ct1_gbggvty%2Ct1_gbggv04%2Ct1_gbggtp5%2Ct1_gbggp3u%2Ct1_gbggp33%2Ct1_gbggn5g%2Ct1_gbgglkc%2Ct1_gbgglhl%2Ct1_gbggkre%2Ct1_gbggk81%2Ct1_gbgghqu%2Ct1_gbggh75%2Ct1_gbgggzh%2Ct1_gbggf8w%2Ct1_gbgge8p%2Ct1_gbggbxw%2Ct1_gbggb6t%2Ct1_gbggaum%2Ct1_gbgga7u%2Ct1_gbgg9hj%2Ct1_gbgg8ty&raw_json=1 + response: + body: + string: !!binary | + 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 + /zdcRrt3MAMA + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '19560' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:03:22 GMT + Server: + - snooserv + Set-Cookie: + - loid=0000000000edk2un7t.2.1630958602158.Z0FBQUFBQmhOblFLWGktVDJ3OTdXSjhxcUFhRm0zX2hJRGhpQTdEcHhMNnY4djFPaHF5cEpGMXZESE93TVdwVkxrd1BHWmVoaFlCYW90Yk1mTW05SzM3OHdGRDh0NHRSNHdKOTBOMXJlY0FkNVNMZzFiWVdxNWRhdWJlYTV5d2w4eUZ2UTdjMGg4TE0; + Domain=reddit.com; Max-Age=63071999; Path=/; expires=Wed, 06-Sep-2023 20:03:22 + GMT; secure; SameSite=None; Secure + - session_tracker=gprdgmnpqhaccdkbhd.0.1630958602274.Z0FBQUFBQmhOblFLZEx2OU5JcFV1MmxBSEt4TXlrX1FtdFFsamFUMVVRUVBfOWZZUzJrMFZia3FLYWd5bU5FWlYwSUM1XzhkUUw5dlg2b2h5UzhVVXlucF9EczBWMFl5cUtxajFVbHFvTlR1VmZQVTFVX09ITnd1OVlPaF9kOGNzbmJiVjAwYlJFOTg; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 22:03:22 + GMT; secure; SameSite=None; Secure + - csv=1; Max-Age=63072000; Domain=.reddit.com; Path=/; Secure; SameSite=None + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '299' + x-ratelimit-reset: + - '398' + x-ratelimit-used: + - '1' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=100&before=1611069195&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1607915595 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+WaXXOyOhDH7/spHK47zwDhtV+l02EiCRhFwCQo2vG7nwE7faCyaLOHc3O8UhJ+ + rLv73904fr6sVquVxaim1tvqvf/UvT6/3/XrqeRUc5Y0OrXeVk7gOHYQO7HzOt4mmPW2svJt420L + ZX2vXV9/x41CmMtCBNeDuW5hzg1jkCsqieASmBsj/Bu6M9yjOdeH/bBZuwguHLf8mJlziQ9ys+yE + 4MK6yEIE14XjxgVdhrvhCK4zw3XMuQ5cHzhpzbk2nL9sSxBcOH9Z4Btz7QiO23pvrjc7hO2lF23O + DSKYu6MILqxjygSCC+cvdRH2+rAf4pYguLAuYnVGcOE8i/N0IS7CDx6cD1GLyF8P1kV0LBbiZgtx + Efk709/CBmGvC9sbpo0514bnKF8h/GDD+esfvGW4tbEuojiG64PPd+bcmXndq0IEF/aDR1NzbhiA + XKIVguvPcGNz7kx/Iw5DcGG9uWfXnOvD/nXN+3EUe3DfdNTJnEtmuC4iz+C5mlxOEYJrw1yF4MLz + LzmfEflr+zC3Ns+HKI5gbtAiuGB/I+3BR3DhuLWFef2NIph7Mp93ogg+B5DTJluGm18QXFhvJ2ab + cwOwv5Fjy825Hmxv45v3oYjAOtYniuDCetMNQ3BhP+gsWIbLS3OuC86TRNWIuuPMcF2EvTN1XWpE + fbBhXch6jeDCcZPcPB/CeMYPvkBwYV1Ip0Bw4b55MD/PR2HszXCdZbiyNufO1PU6Np9TQx/u86U2 + P2eF8LmblPRgziVwn9+n/jJcKs25M3NqscvNuQ6s42KjENwA5tIYwYXreuGaxy2I4LqzjVsEF647 + WwfDhXWxtc37WwCf54nIzfMhgH//JZucLcPNLstweY3gwjrerBH54MHcDHFuCVw4H/h5h+DC+cul + jeDCceM7834czNRJzrcI7ox/wwDBheskO5v3oWBm/mWHFMGF5xIWxQgurAvmmuvNn+kXaaQQXDhu + 69OwTvbvPm6brT3X9Ot/J3+fYtFMc9mz7TB2fH84A1s0zxMlLrxbHzrJorVIjlwqUZXdk8kf2xqs + rnlWST7848oQylVyaLg8j+zoV6Yv35BVVUyu9KuZKG7fYnr9MeF7175RevTHHOj1+XBHz9Nc7tXD + x45uUc1acsbEc3aMb00FL9PBLySPXh9P7bw+3HV9/bccJmmZ8985bCySz9+5LNej5H/65uv/3nOF + Hin8v/fc7I6Peb9aalM1RVc232ENTD8BiFhfOpKy0tPMMesHw5oqsreFSurpijiOncW4Sse6v071 + F4u3PG20qMpEiz1P9qIohOJpVbKuTHnOH3fQtP4W1ve7hvMKd6qXiSBYomS87SyVacJ4oSkZtoxC + 7PuCZzn2qJUMmpalZcOHa33CqzvjJnw1L42nZfBUsbj+LvQLWvuMQB9aOxlLyVVTaJVIrhtZcnY3 + H6gNley+71kZFUW//S7Pd6Kup1eaNOVKZU3XvX8eCHSlaX99MtcnR5cvRd0E8+N6os91d8fIx8M9 + YGu+b71Df3VSY0nVdPdltFB8uNZ9heTLo9bbynUdYscvN+df/wGpt+sRMCwAAA== + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa4cf7abdf3fd9-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:03:26 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:00:15 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=KSLJpmnrK6wjmtv%2B0tOhTtyHOY4dP9udsW9NKfR9Uf932rZL9Wpj4lCYjfbT1z5RvNiTAm1lZq1WLIgQ5Vb74vgeseSIpi0Z6OeKoUEfmHgoJmqFCWocDyKEk8VDC0Od4Bkd"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=100&before=1614222795&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1611069195 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa23KyShCF7/MUFtepvxiGY14llaIQBiVy0DloNOW770JT+SGyMOnZ2Tfbq8QZ + Pts13atb9P1hsVgsnCLTmfO0eL781z/eP/+6rOdSZFoUqdG587RgIfM9z4t8/3G8rSqcp4Wz6tpD + 0x6dz7Xz48+4PMLc4GDBZZBbb7d0LsPcTcLI3DD2ILfyWjo3CiF3XYd0Lg8gV1RLOtfD+VAcNnQu + wzrkJ0nmBiHWIXHp8QYu1sHf2HBxnvkhXQc/jiGXBx2d68N496dmR+dyDrnHE11fn8F82L/VdH15 + AvN3f/DpPsmjBHKN2VhwXcz1Kzo3wFy1iehcDvvbXmaKzmWwLvY75lpwcV1s65LM9WKcv+1G0LnY + J/eNxy24+Nwal54PXoC5dUT3M8/H9bbRBZ3rYX945RsLLvbJSjdkLotxHZftis71cb0VcWvBxfmQ + H+nzDmM4H5ZeYMHF8WbtK5nrJriOk/BE58ZYh3hH9183wD4ZWPR518Px+hE9H9wZX/f2Fjq4M1w/ + o3JZksA5dc+6rQUX5xmjz78siXG8rgno3Aj6pDnJHZ3L4bmZw9pCX/z52BzEms71YswNIwsuzAez + P1nkrwv7kDHMJ3NjnGdGu8KCi+NVpaZz8ecAo/KKzg1wPux2zIKL82FXSTrXw3XRGnq9xS7Wtznm + ZG4U43g30qNz8bxjKqbo3BnfWXuvdK6HfXJV0v0hYtjXS+nSufj+jikLug5hgvNMtJzOxfOZKY4n + OnfGd4pgZ8HF+ZB3dD8LQ+xneVFbcEPMjT0LLq63pcW8E4a4Dy2lBdfH9Zat6fUWcqxv8mYR78y8 + k2T0OSpIcP6GNf8d7mZvwcV5Fr6WdG6E+1CQ0OezYGau9jjdf4OZOZXV7He4Nuc20zdZYXFu+Hsy + 464jCy72HVfQ/XfmexF9UgmZ68cwf/WxbCy4DHMjug5+APuxPljM1T6HPqnN286Ci/U1bWHBxfqa + ku47Pp4nteb0zxe+i/VV8re49DrmeE7VimcWXJwPsqXPfRx/v6kl/X4f4yH8HKC3m9qCG2Buubbg + upjrDvvF5a+X62anETr7+N3J31dxslILeWUzN0zY8J6fk61WqapOol8f3qRxsm2V7oVUVdf2r8z/ + uM5gdSnKTorBDzZGUKHSnRHyOIrjsjL99BXZdfXkymW1rOrru5hev0/43NUYpUc/zEGP97s7Ljwt + ZKPuvuzoEmWWUhRF9b04xpfmlWjzwZ2te4+Xb+083911fvy3BJNZuxI/E2xcJO8/k2ylR8n/7YvP + /3vlaj2q8P9eudkdL/O6Omrdmbq3zWdcA9OvAE7sYh1p2+lp5pj1heFMmex1oZN62hHHZ+cUQuXj + uj9P9RdHvInc6KprU101Im2quq6UyLu26G2KB3+iQTP8a6zPNw3nEXeqh4lDcKq2EG99pDJPC1Hr + jA9bRl01F8NzmDtqJYOm5WhpxHDtkvDqJrgJreZL49tl8C2zOP/s6H8x2u8U6N1oJ89SCmVqrVIp + tJGtKG7mA7XOZHHb95wyq+rL9ps831Tb7fSKyXOhVGn67v11sNSdzi7PT+b65OjyUVHXgvnyfKqP + 2/6KkcbDPbA137beoV59qRVpZ/rryqxWYrjWv4X0Q9E+Wj/wg+jhKv75H9dm4j8wLAAA + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa4cfdfc8154bb-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:03:27 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:00:16 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=VnUQ86wvtRnkEqAxQtBA3TublAfDqXD1ZCpcfS9dTG5JvcvVdfQR20UiJ4oopwT3Aejv%2BvYA0e1hOaDhu%2FUVRNefkd7OIIoLs21J8d5ln09wP53D6KOj0WuBoNroXA9xg7%2BK"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=100&before=1623683595&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1620529995 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa226rOhCG7/sUEdfVkrE5ua9SVYiAITanACanKu++Bam6oGFIO97dNztXCTYf + k/HM/GPg/Wmz2WysJNKR9bJ5HX8Nn/fPb+N43IpIiyTsdWy9bGyPMi9grs+f59NkYr1srJ3dFH7U + WJ9j1+cfcj2YSw94rkdBrkcKPJfBXFaXeC6xQa7NbTTX4QHMtcnvcMnOgAv7l6gjnuuB8ZufmzOe + 665wSWDABf2bny6ZAZfCXGVgL3NB7tFL8Vzqg9yDxOebYzOQ26f4eGAeAblNYsB1YT80LsNzGeyH + eusbcGE/1C5eL9hKPFTHzIDrwNwmx3MJXB9K6RhwYT+UyQnNpRzmFrkB14O5aqvxXBeOX8k7Ay5c + J6Un8FwH7Hfy3R6vm5TC9TdzDPxgg31JnjK8XlAC1wfBXTTXDmD/JoEw4ML+TbwYz12J36jB65vt + wFx+xOebzeC+hEtlwIXzjdMez6WwvUFH8Vwb1gu/wtd1wuH49fjFgAvnsXvC9yXEg/OCaYnnUthe + ssPXB2LD9hIbXR8o90GuOjkHPBfu+9RBB3ius8IlEZ4L931K4/ONcrg/U3prwrVhLj38EtfAv7Bu + qjZH77NowDnM3RlwYd1UTerhuXA/qfakxHNdOM6qiwF3Jd+q7GzAheOsPB/xXArqsSqSGs+1YW5e + OnguvM9SucDXdZ/D8at4g+fC+wuVngIDLlwf0hafb76zwiUxnsvgvBB7jedSsI9SydFg3VbyIlEM + zyVgn6ri9GLAhevD9oi+r0w9F/ZvEPV4Lrw/Vn6OjzPPhuPM3Ua/xHUMuHCcOecCz4XvGylHXQy4 + K/YyvL65HNZjliZ4rg/nhV23eK7HYC7leK4L20sM9hfuil4Q+4TnwnohLz5ej134/q88B/i8cOE8 + lqcM3+84HIwHeVCNAZfC3GyL58L3z2R/xu8DHDjfpNYVnuvB9uodM+Cu2Gvj68PKcz3Z9Qb2ws/f + ZEvw+wAWgH21rHK8vQyuk7LIcwMuXHeKrYvnrqxb4fl4rgNz8wyvbyvP9aSK8PuAledvUvbTvm/8 + 9nabbJVCRx/vnfy9ihWlWrQ3NnEp59O9lhVlWdjJixjGpzc9rGgvw4NoO1lXw5XZH2JNRrcirVsx + ebFiBhVd2PSiPc/sGEeWD9+QdV0sjoyjqSxu/2J5/DHhc1bZd3r2Yg70eX84Y+Rp0Zbdw8vOTun6 + bSuSRH7PjvmpsRRVPFH2R5+3b828Ppx1ff63HNZGVSZ+5rB5krz/zGWZngX/t0++/u89V+hZhv/3 + nlud8bbuV6vb1X0xlM1XOAeWrwCs2Fg6wqrWy8w56wvDWiqyt4G61csVcb52ViK6eJ731yV9scRJ + xL2WdRVqWYqwlEUhOxHXVTKUKd/9E0zE8G9hfb0TnGdYqZ4WFsGSVSJOg6VtHCai0BGbSkYhy7Hg + WTaZSclEtCzd9mI6NgZ8d2fcgq/WU+PbafCtYnH92dL/orXfSdCH1i6uZSu6vtBd2Ardt5VI7vqD + bhe1yb3uWWkki3H6XZzncr9fHunjWHRd2g/q/fVGhK51NB5fjPXF1uUjo24J8+V4qM/74YyZj6dz + QGm+l96pv4ZUS8K6H85Lo6IT07HhL4QfHh2sDZhP/aeb86//AI6kKNIwLAAA + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa4d10bde63ff8-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:03:30 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:00:18 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=oq3NNgFyI3m7GEIlEtctYoaJMRKD9vOVeoYJH9DYkrxQPZL3%2FjHRbUCKdT9EndwSAQbiIzJ9c5ctD0BwQrREWVayw6XaJT97qhj1Cl%2BzeL%2FFhvEE6f1oPPaIYPuabquGGyiL"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=100&before=1626837195&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1623683595 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa226rOBSG7/sUEdfVFrHBQF+lqhDBBtxwCpg0SZV3H0Gqbmj4k3YxnZvJVYrN + h/Ovo13eH1ar1cqSkYmsp9Xz8Ff/ef/8NozHjYqMkmFnYutptRZM+Nxb+97jdJqW1tPKytxjVnV7 + 63Ps/Pgzricwl73SuSKA3DIv6Vy2htxtFpG5dmBDro47OtfD3Mx26FzHh9wkcxdwGeayA53LOOTK + HVlfETjYH7y9TecyrK84ZnTuGq/XrQIy13dcyLWbms7FOqSnbAHXhvkhPTonMtdz8Xq73XEBV2Bu + wehcHG+pySs6F+fJtPXI+VcIH9ttZ6d0roD+m1Yx3R+EC/NOWuo9nXvDbkWtFnCx3Yq8IXPdAOvw + Gizg3vAHfcoXcPF6tW7pXAHrcZoe6PXCxfU4TVmxgIvXm6T0/Ov4ON42Od1/HYF1iHx63nFu6Osb + h87lWF9PGzrXhv166hpyHyV4gPOOU9HrG/dwHPP2dQEXr5cHms69US9YI+hcju1m7ziZy/A+INlX + 9DrE1rAvSRqzXcB1MLeg243Z0B+SXUvvd9YetFtSuxGdy/B684DuD+t1gLk2vR7bAea+VvR8ZuN6 + keiCns9sD/tZ9kbX1+aYmzgLdGCYq5I1nWvDfieRdruAi/NO3JDrvBsEON7inNO5Pux/k032Sufe + yA8bL6ZzObab70o6l+F480ryOYHr43O5hBfHBVxsN84YnYv38wkz1QIurpus3tK5DvYzxuh287C+ + an906FzXw9wypXM59F/VMbq+Hj4/U21M3l+4AucHVR/fFnA55u7o+VcIzK1OdH0F3mep8mDoXAbz + jiryZAGXYS4nn9O6Lq5vahsJOtfFOmR5uoArMFcFv8OVdLu5N/whSU50Lt5fKLkl/1/EdXzY96l4 + U9C5eF+oNht6fnA4juOA0fPZjf28ciK6vhz3JcphLZ2L64U8nTZkLgtgXMijWcLlmJvvFnBtzE3o + dmM+5h7qPZ0rYP6Vb/UCHfD5r3zzzC9x6XWIOTDvyL3j07k4P8iujhdwsQ6dS68XN865pBH0feHa + xzo0Dr3Or3HfJ3d2TucKrEOtx+sdvr1cJluFMtHHeyd/n2JFiVHNhc2HTeeoZ7eiNA1bfVL9+PgQ + wYpqHe5V0+qq7J/M/9jWaHSjkqpRoxc2JlDVhrtONcfJOoaR+csXZFXlsyPDaKLzy6+YH79P+JxV + dK2ZvJiDPu93Zww8o5qivfvYyS1tt2mUlPp765jeGmtVxqOO4d7n5Vszz3dnnR//LcGaqEzVzwSb + Bsn7zyRLzcT5v33z+X+vXG4mEf7fK3dzxsttXa02q7q8T5vPOAbmnwAsNqSOsKzMPHPK+sKw5pLs + ZaBqzHxGnNrOkqqNp3F/nqsvljqouDO6KkOjCxUWOs91q+KqlH2a8sSf8SHT38T6fFVwHnGlepgx + gqVLqQ79Sps4lCo3ER+XjFwXQ8Kz1vaklIyKlmWaTo3HBodvrxY3o9Xt0Ph2GHwrWZx/ZvpfXO13 + AvTuamdt2ai2y00bNsp0TankVX/QZlEjr+uelUQ6H6Zf+flW1/X8SBfHqm2Trq/eXxthU5louD7r + 67Oty0dEXQLmy/XQHOv+jonG4zmwNF+X3rFefajJsOr6+5Iob9V4rP8J4Yei/Wq9ILD5w0X88z9O + sRb3MCwAAA== + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa4d175df35401-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:03:31 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:00:19 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=sl9Wgij5ih8gysot9ikYBKlApJj5c3PPVr%2BYBzGx8ajTuIf5ucCclWOUGwav73tgCL3lWPzjriclnLFDPK2YBxd7CIyUKlGuZWMmM872B5nN4oeZnD8dIGNINE7mdey7kxtn"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=100&before=1617376395&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1614222795 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa226rOhCG7/sUEdfVks2ZvkpVIQdMYsIhYJNDq7z7FqTqgoYh7czOvtm5ajPm + w5nDP2OSj6fVarWyUmGE9bJ6Hf7rXx9ffw32pJXCyDTuTGK9rLjPAyfwnYg/T5ep1HpZWRvjrc3h + YH3ZLs+/4wYhzOUenuvDXC22BG4Ac32bwPVgLjcErgty29MRz/V8mJudCVwGc3mA5zqwH/aHNYHr + wNyOwOVw/tZNQuDCcat3BC6D87cy+LjZIeyHslwTuHCelbzCcwNYJ4sNgbugDwXH66/tRSB3V7oE + LlxvO7EjcG2Y6+D7he3C3FwWeK4D52/u5wQurDvKHB7EtR/DbQlxc+A6VkX5GG5OyAcbrjelUjyX + w9xtQ9gvW+A6DoEL18WW4fOXR/B+Nwled3gI61mWhI/hig7P9eE+Lxled7gLz79JtcdznQUucx/C + Xb8T4mbDcVvbDYELzw+iEwQurGf9eRDNZfB+o+yE5rIQjluYvRO48BwVJjmBC/sh5BzPDWA/BIS+ + yXx43vGbDZ67MPf5vnwM1zkTuPBc4ttbAnfBvwQ9YwtzqhdqPHdBz5wTXs/Ywlzi5HsCF643+0TQ + nYVzrL1Dz79eFMH6y7MEzw3g/GVehOfC84N4r1wC14W5qsZzPTBu4nwM8VzXgblc4LnweUicIkPg + 2jA3SPFcG86Ho9Z4Lg9grrvDc+Fzizjs0PODF8LPjYSRCs/14XzQ3hnPhZ/viNaUBC5cx63K8VwX + zrPmmBC4sD40XU3gwnFragoXruMGf87yQmfBv8GWwIXzoeH4Og7h+UHU5xOBC+tOTakLtsB1Cf5l + sH+rI17XgxD2b4k/F3pBAOdZ0eHjFsDPH0RuQgIX9m++kwQu3C9yUeG58HNlkXs1gQvrmTowPBc+ + XwjlGwJ3Yb9ug+fC37+JrUkIXFjXt5LjuQyuty3D17EfwvvNBF53fPh7f5HxkMCF9UGeDYEL+1ce + MwIX9q8sAjx34fwmCfrgL5yz0nTs3+Gvt+tiq5RGfP7u5O9dLJEZ2V7Zrm3bQTRiW2KzibV6l72d + sbFhr+KDbLWqq/7Ozh9mjaxrmdWtHP9wZQyVOm462Z4n+xgs829fkXVdzFoGa6aK66eYt98nfK0q + O20mP8yBXh93Vww8I9tS373t5BLdrVuZpupn+5hemihZJaNOee/19qOVl7urLs//lsNaUW3k7xw2 + LZKP37lsYybJ/+OLL/97zxVmUuH/vecWV7wt+9XS27oretl8hWtg/g5AxAbpiKvazDOnrG8Ma05k + r4a6NfOKOI2dlUqdTOv+MtdfLHmSSWdUXcVGlTIuVVEoLZO6SnuZivgfZ3QY+SusrzcN5xnuVE8z + QbBUlcpTv9M2iVNZGOGMW0ahykHwLM4mrWTUtCzTdnJsGxJe32xuxlfLpfHjMviRWFx+F/oH7vYn + BXp3t7OxbKXuCqPjVpqurWR6Mx/orWjT275nZUIVw/KbPN+p/X7e0iWJ1Drr+u79/QBjaiOG92dz + fXZ0+ayoa8F8ez82531/xcTH4zVga75tvWN/9aWWxnXXX5eJQsuxrf8I8adH+93anseip6vzL/8A + bRGZKDAsAAA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa4d042e433ff8-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:03:31 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:00:16 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=KU%2FC0rk6A4%2FiYblxXXLxyXmJgPwP5tG6gxb2cOJD3Ut9%2Fp6IXbypbVYhTb%2B5OtRol8zeSGRwYYiscgIOqKcc9ulWz5i1hXgpjkZ0%2F1gIS%2FfJKEbOxxKP9oIpOh1rJuTmQK2c"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=100&before=1620529995&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1617376395 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+WaW3OiMBSA3/srHJ47O+Ga0L/S6TAIgaBcbBIU7fjfd8BOFyoH7cm6L8uTcsLH + 8dwDfjytVquVlcY6tl5Wr8O3/vj4+jTIE8ljzdOo1Yn1srIDh/hOGDL3ebqsSK2XlZV3eXE6udaX + 7Pz8M65PQO7R8fBcL4S5xEBfD7ZDVzl4rhvAXCYNuA7IPZyOBlwb5nY1nutQmFtTPJfA+u4dgeay + EOa2onwQN8FzKRy/mmd4bgDHrzoeDbhwfVAbfDwwD+ZKvsZzXTh+Jd0YcGH7St8gfm0f5O4OIZ5L + YDvsshOaS0OY22hiwIXzotnGeC6D6299wOcFXci3ao+vO9SH7Vutt3iuB+tb1sKAC/utFPg+RF2Y + u90/iNsa5IUN17NNjp+j6EIeb0IDOxC47mwCfH8LFuZUscfX9WChD+U5x3NtWN+0Cg24sL6pwOdb + QOC5Ok3x84PP4PqQGMzrPoPnqPU7fl73AwZziQHXge3Lcnw8+AtxRrMCzfUW/OZLbsCF+6Zf4Ouk + Rxf0DQy4C/HgVfi5z1vYvzlZjucSD+SShhhw4XwjxfZBXO8xXIHfd7shHA8kiQ24oL7i1HkGXAJz + 2wrPhfNYnNIWz6UM5roKzw1g+x5tg3iAn3OJbm2grwfboQsM9PVgvx327mO4JnG2xNWdAReOh4M0 + 4DqwvvsaXx+cEJwfRLsWBlwf5jp7PBfum0IlngEX9pvs8HOUA++PhdwZ6OvD8SCzdzzXBvu82Dn4 + +usQ2G/NLkVz7XCB6+Gfa9gLfaimPp5L4byoFH7+tRfyolqHBtwA5hrsu20XtsM23BhwYb9tHWbA + hevD1vYMuHCf33QHNJdQuO7kEl/XSQD7LXfQ/ZiFDK47a0/gufD+TcRNh+f6cN8M6wDPXZhLWJnh + uTbMDdT+Mdx39P6YLbwfEu6RGXDhPHabLZ7rw/XXFZ4BF85jF7+fZ8xfsC/38dyFema3BnZwYH3t + bYjnws8nBSnQczWj8Pybn5oGz2ULXPx7aUYp6Lf8iO/zjAZgXc+7dvw+YPj0dllsVVzHn/87+XMX + K840lwPbpi4N3LGNrTjPI1WceC8nZCzYFdGeS1U0dX9n9xexRtI1zxrJRy/+J1CuoveWy+NEj0Ey + f/qCbJpyVjJIs6K8/Ip5+W3C16qqVXryxxzo+Li5YuBpLit187aTS1S7ljxNi/v0mF6aFLxORhPv + rePtrpXnm6vOz3/LYDKuc/4zg02T5ONnJsv1JPjvvvj831uu1JMM//eWW1zxtmxXS4mmLfuy+Qrn + wPwdAI8NpSOqGz3PnLK+May5InsRNFLPV8Sp76yUq2Sa9+e5/mLxjietLpo60kXFo6ooy0LxpKnT + vkxR99d4KPhTWF+vGs4z3KmeZpxgFXXKu15TmUQpL3XsjltGWVRDwbNsMmklo6ZladnysWwIeHWl + 3IytllPj7jS4q1icf+b6B2p7T4Le1HbWl5KrttQqkly3subp1XygRCzT675nZXFRDsuv4nxb7Hbz + kjZJuFJZ23fv74OPbnQ8nJ+N9dnR5TOjLgnz7Xykj7v+iomNx2vA1nzdesf26lMtjZq2vy6LS8XH + sv4nRJ8W7bWldujTp4vxz78BczKRbDAsAAA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa4d0a794b53ef-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:03:31 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:00:18 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=tpM3l698sLbGptyW2GJSXSams5UewcgE8b4lW7Uc%2FxHgMSnHYVo3QRDxiifuy4t6SVxl4dUhU%2FgoUFnzSWfan3GZC2DnRyJP06CqS66hsQln%2BGsnT6Gk4dMmPVZZNf39oKtx"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=100&before=1629990795&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1626837195 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa23KqShCG7/MUFtepVQPDMa+SSlEIgw5HZQYPSfnuu9BUNkR+NT0r+2Z7pc7w + 0fbpb8CPp8VisbCyRCfWy+L1/Gl4fXy9O6+nnUi0yOJep9bLwvadKIpY4NvP020ys14W1jrJq02t + ra+10/PPuDyA3KYMyVw/iiC3TAM6NwwhtxDKgOtAruxbOjfAcVvvJJ3r+5ibm3Bv2MuPdK7nQu4q + tw242N5V0BtwGeY6CZ3rcsjNVwZxc3H+5umKzrVx3NJDQeZ6Pq7j8Hj4Je6ezvVw3IKWXheeg+Pm + vnsGXJy/bk/XC8++wWU+nctwP+M1M+Di/OU5PX/dCMfNyen65oYe5Nq9S+c6sC7K/e7dgOtg7pJe + b64N/VDuthmZy7F/S+3S+y8P4BxVKgN94wGst7LbRnSuh+O2DbZ0rovt3fh0PeYOnCfL1tsbcHHc + miNdN7kN9aKsN4LMdSI475Slos+pTgD7b1ms6Xrh4HmylJ5D597I33XG6Vwb90khbAMu9q+I2O9w + g5TMtQOom2VS0eNm+7guopY+P9gccwNO12MW4f7A33d0boj7GU/ocx8LMNcp6LrJPMxl29SAi/OM + ZXQdYgzaW+wz6n2CMIrw3Ff0xy2di+ut0MvEgGtjrhPSuT62V607Opdj/24UJ3PDCPbJoq73Blzs + 3zqw6Vx8P6qoVozOvZFn5cbADxxz12FO5zKox4XYJwbcAHN1ROYGAdShYrkL6FwX+yFq9e9wG3o/ + C/D1W+H3Bn7A9x8KP6f3h+BGnvmhb8DFeea7RzLXx3NU4UQtnevhuNnFms51sR7bdknn4us3+c7p + +evh5xdyX7l0bgjjJndRasC1Mdc+/BKX3n89PKfKvs8NuCHmanqeefh5i9TbJZ2L7ytLVdHnB8/F + cesKg3zAfV1uEroOeXhel21XG3Bx3FoT/zIct3ZJv75wQ2xvrbQBF9tby4bOxc/fZFFv6Fx8v0+u + m9aA62Kub8J1MJdlZC6PsL2i2BtwcdyEwfzAb/TfzKHrJvewzi8jj87l2A/hga5DnOF88DP6dbeD + 7z9Ibz3uZ+d3b5fNVi108vm/k3/PYiW5Ft2F7Yc8sKNRb7eS1SpW8l0M64yNFzYy3olOybYZzsz/ + MGu0uhR524nRH0wmUKHibS+648SO88r81xdk21azK+fVXFaXXzG/fp/wtavulZ78MQe9Pu7uOPO0 + 6Gp197STQ1S/7ESWycfsmB6aStGkoycL915vD+083d11ev5bDuuSZiV+5rBpkXz8zGUrPUn+hw8+ + /e89V+lJhf/3nru54+22Xy21bvtqaJuvuAbmzwAidm4dcdPqeeaU9Y1hzTXZy0Lb6fmOOI2dlQmV + Tuv+NKcvljiItNeybWItaxHXsqqkEmnbZEObcvmfcZv/6quvV3rzjIXqaSYGlmwycRgM7dI4E5VO + +FgxKlmf+51ls4mSjDTL0l0vxmvnfFdXxs246nZlPFwFD/WK088i/4vWPlKfd62djWUnVF9pFXdC + 910jsqvxQK2TLruWPStPZHXefpXmpdxs5lf6NBVK5f0g3t/nYN3q5Pz9bKrPTi6fBXWpl2/fx/q4 + GY6Y+Hi8ByrztfKO/TVUWha3/XBcnlRKjNeGnxB/etR6WTic2c4lWKen0z+mGz0ALywAAA== + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa4d1d6804542b-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:03:32 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:00:21 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=8O%2BSM5BcwKOtMP05RTN%2Bg1TU9l9eahDrC%2BtHMourN5wE9cPxZ1HBqRwJE%2BUDv0fGLhzohpHO9StevhOkejMnTR9Z%2F2oUplVT6sroVUpfUEHiHEEh5%2B1At4bb0siZ2wXDvHtm"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: grant_type=client_credentials + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - close + Content-Length: + - '29' + Content-Type: + - application/x-www-form-urlencoded + Cookie: + - csv=1; edgebucket=R5kcDw7QjgxxWJEznS + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: POST + uri: https://www.reddit.com/api/v1/access_token + response: + body: + string: '{"access_token": "-BzV0aSNFb0yfdTq9SZZgtygdAbRYtA", "token_type": "bearer", + "expires_in": 3600, "scope": "*"}' + headers: + Accept-Ranges: + - bytes + Connection: + - close + Content-Length: + - '109' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:42:31 GMT + Server: + - snooserv + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + cache-control: + - max-age=0, must-revalidate + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '299' + x-ratelimit-reset: + - '449' + x-ratelimit-used: + - '1' + x-reddit-loid: + - 0000000000edm5w4t3.2.1630964551811.Z0FBQUFBQmhOb3RIRWNyZGN4TlFQbWt6QUl3MjR3MWRPZkZwemRnRXpfZlVWVmUyYjlTaFFrQVVicXM2NXJiM05EQTV0V0VRazFhOTNEbF9lU29sOG51bHNudGRraFlFbS1NQ3JCX25XMmVVd0dnb3dsb2ZHNUtGU3hLTVlzVmI5MDB2OGRsX1JjdkY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=R5kcDw7QjgxxWJEznS + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t1_g7d2dch%2Ct1_g7d2bvm%2Ct1_g7d2bae%2Ct1_g7d2b7v%2Ct1_g7d2a19%2Ct1_g7d28l7%2Ct1_g7d285v%2Ct1_g7d24m3%2Ct1_g7d24dm%2Ct1_g7d23wn%2Ct1_g7d23js%2Ct1_g7d23es%2Ct1_g7d2319%2Ct1_g7d22q2%2Ct1_g7d2225%2Ct1_g7d21ka%2Ct1_g7d21k6%2Ct1_g7d219q%2Ct1_g7d210j%2Ct1_g7d20hx%2Ct1_g7d205g%2Ct1_g7d204v%2Ct1_g7d1zlo%2Ct1_g7d1zks%2Ct1_g7d1zj6%2Ct1_g7d1z4e%2Ct1_g7d1z17%2Ct1_g7d1yfo%2Ct1_g7d1x10%2Ct1_g7d1w0x%2Ct1_g7d1rz3%2Ct1_g7d1ryp%2Ct1_g7d1rfk%2Ct1_g7d1qx0%2Ct1_g7d1qw1%2Ct1_g7d1quh%2Ct1_g7d1kge%2Ct1_g7d1jpg%2Ct1_g7d1jlt%2Ct1_g7d1j3p%2Ct1_g7d1iv4%2Ct1_g7d1ilc%2Ct1_g7d1iej%2Ct1_g7d1i32%2Ct1_g7d1hdo%2Ct1_g7d1h6w%2Ct1_g7d1gmh%2Ct1_g7d1g45%2Ct1_g7d1g1j%2Ct1_g7d1efy%2Ct1_g7d1eby%2Ct1_g7d1cbl%2Ct1_g7d1c1w%2Ct1_g7d1bno%2Ct1_g7d1bgt%2Ct1_g7d1auq%2Ct1_g7d1a8w%2Ct1_g7d18a7%2Ct1_g7d179v%2Ct1_g7d16xt%2Ct1_g7d16tm%2Ct1_g7d15hy%2Ct1_g7d14ub%2Ct1_g7d146i%2Ct1_g7d13xe%2Ct1_g7d13p2%2Ct1_g7d10ok%2Ct1_g7d0zz2%2Ct1_g7d0zl9%2Ct1_g7d0yat%2Ct1_g7d0xzi%2Ct1_g7d0sp0%2Ct1_g7d0rue%2Ct1_g7d0obr%2Ct1_g7d0mwa%2Ct1_g7d0m4w%2Ct1_g7d0kx2%2Ct1_g7d0kvw%2Ct1_g7d0jmr%2Ct1_g7d0hw8%2Ct1_g7d0gn4%2Ct1_g7d0gf1%2Ct1_g7d0gc6%2Ct1_g7d0g9m%2Ct1_g7d0elw%2Ct1_g7d0bpv%2Ct1_g7d08rw%2Ct1_g7d06uf%2Ct1_g7d06os%2Ct1_g7d05k1%2Ct1_g7d05eo%2Ct1_g7d0545%2Ct1_g7d03w1%2Ct1_g7d02rf%2Ct1_g7d02aa%2Ct1_g7d029y%2Ct1_g7d01c4%2Ct1_g7d00mo%2Ct1_g7czxr2%2Ct1_g7czxjd&raw_json=1 + response: + body: + string: !!binary | + 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 + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '18897' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:42:32 GMT + Server: + - snooserv + Set-Cookie: + - loid=0000000000edm5w4t3.2.1630964551811.Z0FBQUFBQmhOb3RJVUlNWTZoVldVUlJzQV8taWdxR0IzcEkyV1N6dldLRVJaY0h5UUpkX1JRZlFRQlByVnRuV0ZMSk93Xy1kblluX29lUlVNVmRJUFlVLUVrRHhXZldfdjBPeVVEYjJMNk9mRVdNX3dsRVlKZ29BUi1iTVBVSzg2YlFySS13Z2p6bUU; + Domain=reddit.com; Max-Age=63071999; Path=/; expires=Wed, 06-Sep-2023 21:42:32 + GMT; secure; SameSite=None; Secure + - session_tracker=hkchokqkprqelhpqpd.0.1630964551893.Z0FBQUFBQmhOb3RJaFRybDl6X3JLYjNka0RhSDk0dzd4ZGt2c0tKQzNhMlhjMEpuQVV3YmVLTmhqSHEwU1gxVWRGcm9LWF9GN3UtWV9paE16VXFaZjlpdHg1V1haSkNnVmRodTByc01FUC1vaTVONk5oN3B6X25RRlhKVHlCd3d5X2YzUVhhVlVCMEU; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 23:42:32 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '299' + x-ratelimit-reset: + - '449' + x-ratelimit-used: + - '1' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +version: 1 diff --git a/cassettes/test_comment_praw_mem_safe b/cassettes/test_comment_praw_mem_safe new file mode 100644 index 0000000..be43158 --- /dev/null +++ b/cassettes/test_comment_praw_mem_safe @@ -0,0 +1,4712 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=1000&before=1629990795&filter=id&filter=created_utc&size=100&sort=desc&metadata=true + response: + body: + string: !!binary | + H4sIAAAAAAAAA7Wa226jMBCG7/sUEdfVCmNO7qtUVUTAJOaYYJNDq7z7iqTqQsOftuMtVyljPqZz + xvD2sFgsFk6WmMR5Wjxf/hqOt49fF3naycTIbNmb1HlasNATQrhRyB6ny1TmPC2cTZJX29o4H7Lz + 48+4PILcpozJ3FAIyC3TiM6NY8gtpLbgepCr+pbOjbDfNntF54Yh5uY23Dv68hOdG/iQu86ZBRfr + u456C66LuV5C5/occvO1hd98HL95uqZzGfZbeizI3CDEeRyfjr/EPdC5AfZb1NLzIvCw3/zXwIKL + 49fv6f0iYHe4bkjnurie8dq14OL45Tk9fn2B/ebl9P7mxwHkst6ncz2YF+Vh/2rB9TB3Rc83n0E7 + lPtdRuZybN/S+PT6yyM4R5Xaor/xCOZb2e0EnRtgv+2iHZ3rY323Ib0fcw/Ok2UbHCy42G/Nid43 + OYP9oqy3ksz1BJx3ylLT51QvgvW3LDb0fuHhebJUgUfn3onfTcbpXIbrpJTMgovtK4X7O9woJXNZ + BPtmmVR0v7EQ54Vo6fMD45gbcXo/dgWuD/x1T+fGuJ7xhD73uRHmegW9b7oB5rq71IKL48zN6H3I + daG+xSGj7hPEQuC5r+hPOzoX51thVokFl2GuF9O5IdZXbzo6l2P7bjUnc2MB62RR1wcLLrZvHTE6 + F+9HFdXapXPvxFm5tbADx9xNnNO5LuzHhTwkFtwIc40gc6MI9qFitY/oXB/bQbTmd7gNvZ5F+Pmt + CHsLO+D9hyLM6fUhuhNnYRxacHGchf6JzA3xHFV4oqVzA+w3VmzoXB/3Y8ZKOhc/v6lXTo/fAL+/ + UIfKp3Nj6De1F6kFl2EuO/4Sl15/Azynqr7PLbgx5hp6nAX4fYsyuxWdi/eVla7o80PgY791hUU8 + 4Lqutgm9DwV4XldtV1twsd9aG/u62G/tiv584cdY31obCy7Wt1YNnYvfv6mi3tK5eL9PbZrWgutj + bmjD9TDXzchcLrC+sjhYcLHfpMX8wO/U38yj900e4D6/EgGdy7Ed4iO9D3EXx0OY0Z+7Pbz/oILN + uJ5dfr1cFzu1NMn7dyf/7uIkuZGd87Ro+qp6HJ1er5davcrhrq47FmzVci87rdpmuCf/4zoj6Urm + bSdHn5aIUatwpF7uetmdJhpcJPOnr8i2rWYlF2muqqv+8/KvCR+r6l6bySc56Hj7csWFZ2RX6y9v + O7lE96tOZpn6nh7TS1Mlm3T0TuGr4+VbK89frjo//i+DdUmzlj8z2DQ93n5msspM4vTbF5//l+Xu + rni5b1dHb9q+GtL+GXty/g7AY5cEWDatmWdOWZ8YzlypuArazszn9dR3TiZ1Oo3e81x9dORRpr1R + bbM0qpbLWlWV0jJtm2xItoj5f+JRl/hXH55vKuYjLrUPM15wVJPJ46Bql45LXqXqS8I6zHUntXBU + bx3T9XIsu8S6vlFrxkz3s+LbGfCtaD9/5fVZu3RS95XRy06avmtkdtMy9CbpsttS6OSJqi7Lb4Km + VNvtvKRPU6l13g8FPfw8DpjWJIMg8mdDZ7afvQfoNf4+nV+a03a4YmLl8RpYr2/r8dhiQ+Rmy7Yf + rsuTSsuxbPgflu82HbRlwhMBEw9XB5z/AvzI815BKgAA + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa5efcaf2d5425-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:15:44 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:27:17 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=%2B%2Bc1A23Z6S8hhNdE5IQds5dU%2BynBAx1eET3Jp%2F%2F%2FIxCXp62ygwGGCe1Lt5IWec5C91zYKYb8IyAPpjDJMxrgmwyLoKiVu%2BZxAD4m0PyowDi5UX0IbbX2fb9uJIlG0NUSUsUP"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=1000&before=1601608395&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1598454795 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa3XKiTBCGz3MVFseprRkGBsitpFIUwoAoiPKjaMp73wJTWVh50fR8fifrUWIP + D23P2z+OfL4sFouFEQV1YLwt3vv/utfn91+9PSxVUKvIb+rQeFtwybhkrnDs1/GyNDLeFkbiRGYU + roxv2+X1Z1zbhNzlIadzLYG5gdLgzvjrHOhcE3MD7tG5jEGumzlkrunh+Lo2PQ6mkJBr5UKDi+Nr + RXSdmSbOC3Hc0rncxdx1pcHF8RVKh4t1JjT0azIcX3NvkrncszDXtOlcF8eXb4IncaUGl2Out6dz + HQdz2ZrOlTgv2KrV4OJ6xuzkOVyLXie5DfXLz1nxHO6m0uAKzF1r6NeSmGspDa6NuZzeN7nA3FOs + sW8c9jfeckbmMg/H98jo+cYErDu8PIvncE87OhfPZ7yMN3Qux/m2bzX2jeN82x+5BhfHYd+Qvwc4 + HvMgd5OQ89hxPdgv+HqXaHBxXqyzms51Z/wVOw0u1ll6sDS4DHOzkM7F8wNP1VqDi/WbCpPOlbju + rKKCzrWxHlbySOdaON+SfKXBxXpILJvOFTP+cg09cNyPVXzS4OL6q5Z0roPndR4uMzp3Jt9CftTg + Yj0st/S8cCT2d5nQ669jY27Q7Olca4brasR3Rr9uQJ5THTnTNx3voMHFeSHbWoOL80LWOZ0rcd2x + V/Q8ljN13WqWdO6MziyZanDxvomWPp/JmboudvR+bLuYy4oNnevAfWPns4a/eC5h58yjc/H5OjsF + 9Hyzsc5Ye6brzJJwTmXVjtG5NqwPrGzo+hUerL+sWJZ0roPjkB8DOldiPeQWvQ8JC/u7aU0NrsDc + g4a/JvZ3ndP3zfRg3WGro0vnOpibbC0NrsTcmGtwcV4kodTg4n1LPHqfNy1c11VG15nJsL/LHX2O + 4jbWg1vS/eUCzutMNjGda+L4yqKic/G5EbM3XIOL+5utCg0urme2xvdjhs93mKCf9zlM4vpglnQ9 + sBn9mkHwHK5Hn9cZ/j2A8ZBef5nA+8Zyss6k56E+H57b0qRz4flkeG7X0YDb//VxXWzkqg6+njv5 + cxcjiGtVdmzbcy3bcoazlBEkiV+lZ9XZhw8xGMEu9Q+qrNJi291Z/GLGwLpUcVGqwQMQI6iq/H2j + ytPIj94y/fYVWRTZpKW3xml2/RTT9vuE71V5U9WjB3PQ6/Puip5XqzKv7t52dEnVLEsVReljfowv + DVO1DQeT9L3Xx0MrL3dXXV7/q4CVwTZRPwvYOEk+fxaypB6J/+GLL/985LJ6lOH/f+RmV3zMx9Wo + VkWTdWXzHefA9B3AjvWlw98W9TRzzPqLYUwV2auhKOvpijjeOyNSVTjO+8tUfzFUq8KmToutX6e5 + 8vM0y9JKhcU26sqU5f0aHmb+KazvNw3nFXeql4lNMNJtpNrO0zIc9ooszftKZ3DGRk1k0K6Mujse + GNh6qVc3bk1EaT4pHk6Ah8rE5Web/kRvH0nNu95O7mKpqiarK79UdVNuVXQzGVSroIxuO54RB2nW + L79R+Cbd7aYtTRiqqoqbrm/f/NZQF3XQGRxrUueTY8tXNl2T5a/3/fq0664YRXm4Brbl27Y7jFiX + ZpFfNN11cZBVamjrPoP/FdNeYJy54uUa/stvYClN/ywsAAA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa5f01ceee5419-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:15:45 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:46:04 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=LaydoSHkvzTf8kQv6W0zparnMuCDIjWvO2sxewpt7W0dADsQqeDfBi%2BhKrmzTIjZXaEyykaVfB23u9bypPJalAa5Z3spYVYuBMQx%2FJjphcIxR4FIxUY9PzPPafRr53OpPleA"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=1000&before=1611069195&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1607915595 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+WaXXOyOhDH7/spHK47zwDhtV+l02EiCRhFwCQo2vG7nwE7faCyaLOHc3O8siT8 + WHf3v7uxfr6sVquVxaim1tvqvf+re31+v+vXU8mp5ixpdGq9rZzAcewgdmLndbxNMOttZeXbxtsW + yvpeu77+jhuFMJeFCK4Hc93CnBvGIFdUEsElMDdG+Dd0Z7hHc64P+2GzdhFcOG75MTPnEh/kZtkJ + wYV1kYUIrgvHjQu6DHfDEVxnhuuYcx24PnDSmnNtOH/ZliC4cP6ywDfm2hEct/XeXG92CNtLL9qc + G0Qwd0cRXFjHlAkEF85f6iLs9WE/xC1BcGFdxOqM4MJ5FufpQlyEHzw4H6IWkb8erIvoWCzEzRbi + IvJ3pr+FDcJeF7Y3TBtzrg3PUb5C+MGG89c/eMtwa2NdRHEM1wef78y5M/O6V4UILuwHj6bm3DAA + uUQrBNef4cbm3Jn+RhyG4MJ6c8+uOdeH/eua9+Mo9uC+6aiTOZfMcF1EnsFzNbmcIgTXhrkKwYXn + X3I+I/LX9mFubZ4PURzB3KBFcMH+RtqDj+DCcWsL8/obRTD3ZD7vRBF8DiCnTbYMN78guLDeTsw2 + 5wZgfyPHlptzPdjexjfvQxGBdaxPFMGF9aYbhuDCftBZsAyXl+ZcF5wniaoRdceZ4boIe2fqutSI + +mDDupD1GsGF4ya5eT6E8YwffIHgwrqQToHgwn3zYH6ej8LYm+E6y3Blbc6dqet1bD6nhj7c50tt + fs4K4XM3KenBnEvgPr9P/WW4VJpzZ+bUYpebcx1Yx8VGIbgBzKUxggvX9cI1j1sQwXVnG7cILlx3 + tg6GC+tia5v3twA+zxORm+dDAH//SzY5W4abXZbh8hrBhXW8WSPywYO5GeLcErhwPvDzDsGF85dL + G8GF48Z35v04mKmTnG8R3Bn/hgGCC9dJdjbvQ8HM/MsOKYILzyUsihFcWBfMNdebP9Mv0kghuHDc + 1qdhnezffdw2W3uu6dfvTv4+xaKZ5rJn22Hs+P5wBrZonidKXHi3PnSSRWuRHLlUoiq7J5M/tjVY + XfOsknz4w5UhlKvk0HB5HtnRr0xfviGrqphc6VczUdw+xfT6Y8L3rn2j9OiHOdDr8+GOnqe53KuH + jx3dopq15IyJ5+wY35oKXqaDb0gevT6e2nl9uOv6+m85TNIy579z2Fgkn79zWa5Hyf/0zdf/vecK + PVL4f++52R0f83611KZqiq5svsMamH4CELG+dCRlpaeZY9YPhjVVZG8LldTTFXEcO4txlY51f53q + LxZvedpoUZWJFnue7EVRCMXTqmRdmYq8P8N/Lv4trO93DecV7lQvE0GwRMl421kq04TxQlMybBmF + 2PcFz3Jse9RLBl3L0rLhw7U+49WddRPOmtfG0zp4qlpcfxf7Ba19RqEPrZ0MpuSqKbRKJNeNLDm7 + GxDUhkp23/isjIqi336X6DtR19MrTZpypbKma98/TwS60rS/Ppnsk7PLl6RuivlxPdHnurtj5OPh + HrA33/feob86rbGkarr7MlooPlzrPkLy5VHrbeW6DrHjl5vzr/8AyeyZNTEsAAA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa5f1bbfb33ff8-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:15:49 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:46:05 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=%2BNerjj%2F4UNpIBivDWTEtrVWHnaM27CCpIkRAoDW9CD3diWQgsY%2FfJ5C%2B%2BKsQbrHZqiYd88FaNTnQZxkwSb4uu0xSwOx6xzTaHEyvSAtOeTSd3FMs4fSOQ1AtTnkzHlpmD3NQ"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=1000&before=1614222795&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1611069195 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa226rSgyG7/sUEdfV0gwznPoqVYUIDAnllMyBHKq8+xak6oIGk9Szu292rhI8 + fDge+7ch+XharVYrJ0t04rysXodP/evj691gT6VItMhio1PnZUV9yl3XDTh/ni4rMudl5Wza5lA3 + J+fLdnn+GZcFMNc7WHApyK12OzyXwtwyomiuH7ogt3AbPDfwQe628vFc5oFcUazxXBfOh+xQ4rkU + jkN6lmiu58NxiAjeX4/AceClDRfOM+7j48DDEOQyr8VzOehvd673eC5jIPd0xseXUzAfumOFjy+L + wPztDhyvkyyIQK4xpQWXwFxe4LkezFVlgOcysL91MlF4LgXrottTYsGF62JX5WiuG8L525QCz4V1 + sqtdZsGF960m+HxwPZhbBXg9czlcb6XO8FwX1od3VlpwYZ0sdI3m0hCu47zZ4LkcrrcsbCy4cD6k + J/y8QymcD2vXs+DC/ibNO5pLIriOI/+M54ZwHMI9Xn+JB+ukZ9HniQv7ywN8PpAFXXc7iziQBS5P + sFwaReCc2tF2Z8GF84zi518ahbC/xHh4bgDqpDnLPZ7LwH0zh61FfOH7Y3MQWzzXDWGuH1hwwXww + 3dkifwnYh4yhHM0N4TwzmggLLuyvyjWeC98HGJUWeK4H58N+Ty24cD7sC4nnunBdNAZfbyGB41uf + UjQ3CGF/S+niufC8Ywqq8NwF3dm673iuC+vkJsfrQ0BhXc8lwXPh5zsmz/Bx8CM4z0TD8Fx4PjPZ + 6YznLuhO5u0tuHA+pC1ez3wf1rM0qyy4PswNXQsuXG9ri3nH9+E+tJYWXA7XW7LF15vP4PhGRwt/ + F+adKMHPUV4E569fsd/hlp0FF84z/z3HcwO4D3kRfj7zFuZql+H111uYU2lFf4drs28LfZNmFvsG + /05myDaw4MK6QwRefxd+F9FnFaG5PATzV5/y2oJLYW6AjwP3wH6sDxZzNWegTmpz3Ftw4fiaJrPg + wvE1OV53ODxPas3w9xecwPFV8re4+Dpm8JyqFUssuHA+yAY/9zH4900t8c/7KPPB+wC9KysLrgdz + 860Fl8BcMu4Xw7u362KnFjr5/N/J36s4Sa6FvLIp8SM6fubnJJtNrIqz6O3jhzROsiviTkhVtE1/ + ZfaHOCPrWuStFKM/bEygQsV7I+Rp4sdgmT98RbZtNWsZrHlRXb/FvP0+4WtVbZSe/DEHen3cXTHw + tJC1unvZySnKrKXIsuIxP6anpoVo0tGTrXuvt4dWXu6uujz/WwGTSbMRPwvYtEg+fhayjZ4k/8Mn + X/73kav0pML/+8gtrnhbjqujtq2petl8hWtg/grAjg3SETetnmdOWd8YzpzIXg2t1POKON07JxMq + ndb9Za6/OOIoUqOLtol1UYu4LqqqUCJtm6yXKc7+eKOb9L/C+nrTcJ7hTvU0swlO0WTi2Hsq0zgT + lU7YuGVURT0InkMJmfSSUddytDRibBsyXt14NxOs5dp4uA4eUovLz/b+F719pELveju7mVIoU2kV + S6GNbER2MyCobSKz28bn5ElRDctvEr0sdrt5i0lToVRu+vb9fbLUrU6G47PJPju7fJbUtWK+HY/1 + adefMYnxeA3Ym2977zhefa1lcWv68/KkUmJs679C/BnR3lvucS94ugb/8g9RPZh2MSwAAA== + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa5f220e36f981-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:15:50 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:46:05 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=FnTLkP07GtKZM4mxfpdshKdHUzWsRv3KTOlX0ktPOohv92luK9liHZrQrcJscZr1Z9GHfVAXHX8ElMj%2Bnjy9xihvT6aevSPE2jirUueKrHiM1aTcba0sHgodDVfYNi63VoZ0"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=1000&before=1617376395&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1614222795 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa226jMBCG7/sUEdfVyuacvkpVIQdMYsIhYJNDq7z7ClJ1oWFIOrPZm81VmzEf + zhz+GZN8PC0Wi4WVCCOsl8Vr/1/3+vj6q7fHjRRGJlFrYutlwX0eOIHvLPnzeJlKrJeFtTbeyuz3 + 1pft/PwzbhDCXO7huT7M1WJD4AYw17cJXA/mckPguiC3OR7wXM+HuemJwGUwlwd4rgP7YbdfEbgO + zG0JXA7nb1XHBC4ct2pL4DI4f0uDj5sdwn4oihWBC+dZwUs8N4B1Ml8TuDP6kHO8/treEuRuC5fA + hettK7YErg1zHXy/sF2Ym8kcz3Xg/M38jMCFdUeZ/YO49mO4DSFuDlzHKi8ew80I+WDD9aZUgudy + mLupCftlM1zHIXDhutgwfP7yJbzfdYzXHR7CepbG4WO4osVzfbjPS4bXHe7C829c7vBcZ4bL3Idw + V++EuNlw3FZ2TeDC84NoBYEL61l3HkRzGbzfZXpEc1kIxy1M3wlceI4K44zAhf0Qco7nBrAfAkLf + ZD487/j1Gs+dmft8Xz6G65wIXHgu8e0NgTvjX4KesZk51Qs1njujZ84Rr2dsZi5xsh2BC9ebfSTo + zsw51t6i519vuYT1l6cxnhvA+cu8JZ4Lzw/ivXQJXBfmqgrP9cC4idMhxHNdB+ZygefC5yFxXBoC + 14a5QYLn2nA+HLTGc3kAc90tngufW8R+i54fvBB+biSMVHiuD+eD9k54Lvx8RzSmIHDhOm5Uhue6 + cJ7Vh5jAhfWhbisCF45bXVG4cB3X+HOWFzoz/g02BC6cDzXH13EIzw+iOh0JXFh3KkpdsBmuS/Av + g/1bHvC6HoSwfwv8udALAjjP8hYftwB+/iAyExK4sH+zrSRw4X6RiRLPhZ8ri8yrCFxYz9Se4bnw + +UIo3xC4M/t1azwX/v5NbExM4MK6vpEcz2VwvW0Yvo79EN5vKvC648Pf+4uUhwQurA/yZAhc2L/y + kBK4sH9lHuC5M+c3SdAHf+aclSRD//Z/vV0WW4U04vN3J3/uYonUyObCdm3bDpYDtiXW60ird9nZ + GRsadiray0arquzu7Pxi1sC6kmnVyOEPV4ZQqaO6lc1ptI/eMv32BVlV+aSlt6Yqv3yKafttwteq + otVm9MMc6PVxc0XPM7Ip9M3bji7R7aqRSaLu28f40ljJMh50yluvt7tWnm+uOj//LYc1olzLnzls + XCQfP3PZ2oyS/+6Lz/+953IzqvB/77nZFW/zfrX0pmrzTjZf4RqYvgMQsV46orIy08wx6xvDmhLZ + i6FqzLQijmNnJVLH47o/T/UXSx5l3BpVlZFRhYwKledKy7gqk06mAv5r+HDwj7C+XjWcZ7hTPU0E + wVJlIo/dTps4SmRuhDNsGbkqesGzOGOjXjLoWpZpWjm09Rmvr3Y34az52ri7Du5Si/PPYv/A3d5T + oTd3OxnMRuo2NzpqpGmbUiZXA4LeiCa5bnxWKlTeL79K9K3a7aYtbRxLrdO2a9/fTzCmMqJ/fzLZ + J2eXz5K6VMy39yNz2nVXjHw8XAP25uveO/RXV2tJVLXddanItRzauo8QfXq0263teWz5dHH++Tco + 2JZgMSwAAA== + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa5f282b725407-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:15:51 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:46:05 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=O0M0ykZ5aVgaAMGOFAylDYTHf5FZTFEiDY5nxJ5gkxtXkix4kDeLxahLyOwXrgEG5Ptd74MgKCopvHFMG328KJQTKE9UTztjAb0btK2UiI0WsmydD0329Lxi3ict96TsefX%2B"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=1000&before=1620529995&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1617376395 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+WaW3OiMBSA3/srHJ47O+Ga0L/S6TAIgaBcbBIU7fjfd8BOFyoH7cm6L8uTcsLH + 8dwDfjytVquVlcY6tl5Wr8O3/vj4+jTIE8ljzdOo1Yn1srIDh/hOGDL3ebqsSK2XlZV3eXE6udaX + 7Pz8M65PQO7R8fBcL4S5xEBfD7ZDVzl4rhvAXCYNuA7IPZyOBlwb5nY1nutQmFtTPJfA+u4dgeay + EOa2onwQN8FzKRy/mmd4bgDHrzoeDbhwfVAbfDwwD+ZKvsZzXTh+Jd0YcGH7St8gfm0f5O4OIZ5L + YDvsshOaS0OY22hiwIXzotnGeC6D6299wOcFXci3ao+vO9SH7Vutt3iuB+tb1sKAC/utFPg+RF2Y + u90/iNsa5IUN17NNjp+j6EIeb0IDOxC47mwCfH8LFuZUscfX9WChD+U5x3NtWN+0Cg24sL6pwOdb + QOC5Ok3x84PP4PqQGMzrPoPnqPU7fl73AwZziQHXge3Lcnw8+AtxRrMCzfUW/OZLbsCF+6Zf4Ouk + Rxf0DQy4C/HgVfi5z1vYvzlZjucSD+SShhhw4XwjxfZBXO8xXIHfd7shHA8kiQ24oL7i1HkGXAJz + 2wrPhfNYnNIWz6UM5roKzw1g+x5tg3iAn3OJbm2grwfboQsM9PVgvx327mO4JnG2xNWdAReOh4M0 + 4DqwvvsaXx+cEJwfRLsWBlwf5jp7PBfum0IlngEX9pvs8HOUA++PhdwZ6OvD8SCzdzzXBvu82Dn4 + +usQ2G/NLkVz7XCB6+Gfa9gLfaimPp5L4byoFH7+tRfyolqHBtwA5hrsu20XtsM23BhwYb9tHWbA + hevD1vYMuHCf33QHNJdQuO7kEl/XSQD7LXfQ/ZiFDK47a0/gufD+TcRNh+f6cN8M6wDPXZhLWJnh + uTbMDdT+Mdx39P6YLbwfEu6RGXDhPHabLZ7rw/XXFZ4BF85jF7+fZ8xfsC/38dyFema3BnZwYH3t + bYjnws8nBSnQczWj8Pybn5oGz2ULXPx7aUYp6Lf8iO/zjAZgXc+7dvw+YPj0dllsVVzHn/87+XMX + K840lwPbpi4N3LGNrTjPI1WceC8nZCzYFdGeS1U0dX9n9xexRtI1zxrJRy/+J1CuoveWy+NEj0Ey + f/qCbJpyVjJIs6K8/Ip5+W3C16qqVXryxxzo+Li5YuBpLit187aTS1S7ljxNi/v0mF6aFLxORhPv + rePtrpXnm6vOz3/LYDKuc/4zg02T5ONnJsv1JPjvvvj831uu1JMM//eWW1zxtmxXS4mmLfuy+Qrn + wPwdAI8NpSOqGz3PnLK+May5InsRNFLPV8Sp76yUq2Sa9+e5/mLxjietLpo60kXFo6ooy0LxpKnT + vkx53i971Lz/FNbXq4bzDHeqpxknWEWd8q7XVCZRyksdu+OWURbVUPAsm5BJLxl1LUvLlo9lQ8Sr + K+1mjLWcG3fnwV3V4vwz3z9Q23sy9Ka2s86UXLWlVpHkupU1T68GBCVimV43PiuLi3JYfhXo22K3 + m5e0ScKVytq+fX+ffHSj4+H8bLDPzi6fKXXJmG/nI33c9VdMbDxeA/bm6947tlefa2nUtP11WVwq + Ppb1PyH6tGivLbVDnz5djH/+DfTa6RsxLAAA + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68aa5f2e6d71f97d-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:15:52 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:15:52 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=fu0%2B5L%2FzHUkNmINg2VmsEy9CPjdQu6Cc6AyKaI2U9TJ1osHAo%2FVRwhZ4q4Kruehrv14iMwKg%2Bh4z77vUxDcV3EQdRmCxmb2NJ8RKP4Qe%2FiznZKKw2DY3ewa6IV17q5ivhcyH"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=1000&before=1623683595&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1620529995 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa226rOhCG7/sUEdfVkrE5ua9SVYiAITanACanKu++Bam6oGFIO97dNztXCTYf + k/HM/GPg/Wmz2WysJNKR9bJ5HX8Nn/fPb+N43IpIiyTsdWy9bGyPMi9grs+f59NkYr1srJ3dFH7U + WJ9j1+cfcj2YSw94rkdBrkcKPJfBXFaXeC6xQa7NbTTX4QHMtcnvcMnOgAv7l6gjnuuB8ZufmzOe + 665wSWDABf2bny6ZAZfCXGVgL3NB7tFL8Vzqg9yDxOebYzOQ26f4eGAeAblNYsB1YT80LsNzGeyH + eusbcGE/1C5eL9hKPFTHzIDrwNwmx3MJXB9K6RhwYT+UyQnNpRzmFrkB14O5aqvxXBeOX8k7Ay5c + J6Un8FwH7Hfy3R6vm5TC9TdzDPxgg31JnjK8XlAC1wfBXTTXDmD/JoEw4ML+TbwYz12J36jB65vt + wFx+xOebzeC+hEtlwIXzjdMez6WwvUFH8Vwb1gu/wtd1wuH49fjFgAvnsXvC9yXEg/OCaYnnUthe + ssPXB2LD9hIbXR8o90GuOjkHPBfu+9RBB3ius8IlEZ4L931K4/ONcrg/U3prwrVhLj38EtfAv7Bu + qjZH77NowDnM3RlwYd1UTerhuXA/qfakxHNdOM6qiwF3Jd+q7GzAheOsPB/xXArqsSqSGs+1YW5e + OnguvM9SucDXdZ/D8at4g+fC+wuVngIDLlwf0hafb76zwiUxnsvgvBB7jedSsI9SydFg3VbyIlEM + zyVgn6ri9GLAhevD9oi+r0w9F/ZvEPV4Lrw/Vn6OjzPPhuPM3Ua/xHUMuHCcOecCz4XvGylHXQy4 + K/YyvL65HNZjliZ4rg/nhV23eK7HYC7leK4L20sM9hfuil4Q+4TnwnohLz5ej134/q88B/i8cOE8 + lqcM3+84HIwHeVCNAZfC3GyL58L3z2R/xu8DHDjfpNYVnuvB9uodM+Cu2Gvj68PKcz3Z9Qb2ws/f + ZEvw+wAWgH21rHK8vQyuk7LIcwMuXHeKrYvnrqxb4fl4rgNz8wyvbyvP9aSK8PuAledvUvbTvm/8 + 9nabbJVCRx/vnfy9ihWlWrQ3NnEp59O9lhVlWdjJixjGpzc9rGgvw4NoO1lXw5XZH2JNRrcirVsx + ebFiBhVd2PSiPc/sGEeWD9+QdV0sjoyjqSxu/2J5/DHhc1bZd3r2Yg70eX84Y+Rp0Zbdw8vOTun6 + bSuSRH7PjvmpsRRVPFH2R5+3b828Ppx1ff63HNZGVSZ+5rB5krz/zGWZngX/t0++/u89V+hZhv/3 + nlud8bbuV6vb1X0xlM1XOAeWrwCs2Fg6wqrWy8w56wvDWiqyt4G61csVcb52ViK6eJ731yV9scRJ + xL2WdRVqWYqwlEUhOxHXVTKUKcf9M31Y97ewvt4JzjOsVE8Li2DJKhGnwdI2DhNR6IhNJaOQ5Vjw + LJuQmZZMVMvSbS+mY2PEd3fWLThrPTe+nQffqhbXn639L1r7nQx9aO3iYrai6wvdha3QfVuJ5K5B + 6HZRm9wLn5VGshin3wV6Lvf75ZE+jkXXpf0g31/vROhaR+PxxWBf7F0+UuqWMV+Oh/q8H86Y+Xg6 + B9Tme+2d+mvItSSs++G8NCo6MR0b/kL44dHB2oD51H+6Of/6D1VlEk4xLAAA + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa5f34bcba5497-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:15:53 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:46:05 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=jfush7DAGqEYzrckPW%2BiyraUsd%2BqAu1dVFywV0tZmwje50bYb7%2BJkvqAtjOvA0J%2FGwlOxAuI8WIWgUDZITWAgAYMs17KHFgpddB5JCpZzxJQaiBZ5Z%2FG0%2BmuQf4N1x2vLG5W"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=1000&before=1626837195&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1623683595 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa3XKyOhSGz3sVDsedbyCBAL2VTodBEjCVPyFYteO97wE7/aDyarvY3SfbI2vC + w/Jdv6G+P6xWq5UlYxNbT6vn4a/+9f75blhPGhUbJaPOJNbTyhFMBNx3Av9xuk1L62llbbzjpur2 + 1ufa+fFnXF9gLnulc0UIuWVe0rnMgdztJiZz7dCGXJ10dK6PuRvbpXPdAHLTjbeAyzCXHehcxiFX + 7sj6itDF8eDvbTqXYX3FcUPnOtherwrJ3MD1INduajoX65CdNgu4NqwP2dE9kbm+h+3tdscFXIG5 + BaNzcb5lJq/oXFwns9Yn118hAuy3nZ3RuQLGb1Yl9HgQHqw7Wan3dO4NvxW1WsDFfivyhsz1QqzD + a7iAeyMe9ClfwMX2at3SuQL24yw70PuFh/txlrFiARfbm2b0+usGON/WOT1+XYF1iAN63XFv6BsY + l87lWF9fGzrXhvN65hnyHCV4iOuOW9H7G/dxHvP2dQEX28tDTefe6BesEXQux36zd5zMZfgckO4r + eh9iDpxL0sZsF3BdzC3ofmM2jId019LnHceHfktrL6ZzGbY3D+nx4Dgh5tr0fmyHmPta0euZjftF + qgt6PbN9HGebN7q+Nsfc1F2gA8NclTp0rg3nnVTa7QIurjtJQ+7zXhjifEtyTucGcP5N15tXOvdG + fVj7CZ3Lsd8CT9K5DOebX5KfE3gBfi6X8uK4gIv9xhmjc/F5PmWmWsDFfZPVWzrXxXHGGN1vPtZX + 7Y8unev5mFtmdC6H8as6RtfXx8/PVJuQzxeewPVB1ce3BVyOuTt6/RUCc6sTXV+Bz1mqPBg6l8G6 + o4o8XcBlmMvJz2k9D/c3tY0FnethHTZ5toArMFeFv8OVdL95N+IhTU90Lj5fKLkl/1/EcwM496lk + XdC5+Fyo1mt6fXA5zuOQ0evZjfO8cmO6vhzPJcplLZ2L+4U8ndZkLgthXsijWcLlmJvvFnBtzE3p + fmMB5h7qPZ0rYP2Vb/UCHfDzX/nmm1/i0vsQc2HdkXs3oHNxfZBdnSzgYh06j94vbjznkkbQz4VO + gHVoXHqfd/DcJ3d2TucKrEOtx/YO714um61Cmfjjdyd/72LFqVHNhc2HQ+doZrfiLItafVL9+vgh + ghXXOtqrptVV2d+Z/7Gt0epapVWjRj/YmEBVG+061Rwndgwr8x9fkFWVz64Mq6nOL99ifv0+4XNX + 0bVm8sMc9Hq/u2PgGdUU7d3bTi5pu3WjpNTfs2N6aaJVmYwmhnuvl2/tPN/ddX78twRr4jJTPxNs + miTvP5MsM5Pg//bF5/+9crmZZPh/r9zNHS+3dbXaTdXlfdl8xjkwfwfgsaF0RGVl5plT1heGNVdk + LwtVY+Yr4tR3llRtMs3781x/sdRBJZ3RVRkZXaio0HmuW5VUpezLlBv8cUbN8G9hfb5qOI+4Uz3M + OMHSpVSH3tImiaTKTczHLSPXxVDwLMe2J71k1LUs03RqvDZEfHtl3YxYt3Pj23nwrWpx/pnvf9Ha + 72ToXWtnndmotstNGzXKdE2p5NWA0G7iRl43PiuNdT5svwr0ra7r+ZUuSVTbpl3fvr9OwqYy8fD5 + bLDPzi4fKXXJmC+fR+ZY91dMNB7vgb35uveO9epzTUZV11+Xxnmrxmv9V4g+FO2t9cPQ5g8X8c// + AG5+uxExLAAA + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa5f3afba63ffd-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:15:54 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:46:04 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Bp5Ma97ejp1K9OyCNFmlrWu9YLD0L8mYrJ1%2BuSyqfzsLjmhaU3HnQw6O36rLLkVyZMOoN%2BR5FG6snE9P9Wzkfq6GO%2B%2FuChh1nzqjW1wz1xM0X5H%2BDIy9UMlsYPdikOl9pYyX"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=1000&before=1629990795&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1626837195 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa23KqShCG7/MUFtepVQPDMa+SSlEIgw5nmcFDUr77LjWVBZFfTc/OvtleqTN8 + tH36G/DjabFYLKws0Yn1sng9fzq9Pr7endfTXiRaZPGgU+tlYftOFEUs8O3n6TaZWS8La53kVVdr + 62vt+PwzLg8gtylDMtePIsgt04DODUPILYQy4DqQK4eWzg1w3NZbSef6PubmJtwb9vIDneu5kLvK + bQMutncVDAZchrlOQue6HHLzlUHcXJy/ebqic20ct3RfkLmej+s4POx/ibujcz0ct6Cl14Xn4Li5 + 754BF+evO9D1wrNvcJlP5zLcz3jNDLg4f3lOz183wnFzcrq+uaEHufbg0rkOrItyt3034DqYu6TX + m2tDP5TbTUbmcuzfUrv0/ssDOEeVykDfeADrrew3EZ3r4bhtgg2d62J7O5+ux9yB82TZejsDLo5b + c6DrJrehXpR1J8hcJ4LzTlkq+pzqBLD/lsWarhcOnidL6Tl07o38XWeczrVxnxTCNuBi/4qI/Q43 + SMlcO4C6WSYVPW62j+siaunzg80xN+B0PWYR7g/8fUvnhrif8YQ+97EAc52CrpvMw1y2SQ24OM9Y + RtchxqC9xS6j3icIowjPfcVw2NC5uN4KvUwMuDbmOiGd62N71bqnczn2b6c4mRtGsE8Wdb0z4GL/ + 1oFN5+L7UUW1YnTujTwrOwM/cMxdhzmdy6AeF2KXGHADzNURmRsEUIeK5Tagc13sh6jVv8Nt6P0s + wNdvhT8Y+AHffyj8nN4fght55oe+ARfnme8eyFwfz1GFE7V0rofjZhdrOtfFemzbJZ2Lr9/kO6fn + r4efX8hd5dK5IYyb3EapAdfGXHv/S1x6//XwnCqHITfghpir6Xnm4ectUm+WdC6+ryxVRZ8fPBfH + rS8M8gH3ddkldB3y8Lwu27424OK4tSb+ZThu7ZJ+feGG2N5aaQMutreWDZ2Ln7/Jou7oXHy/T66b + 1oDrYq5vwnUwl2VkLo+wvaLYGXBx3ITB/MBv9N/Moesm97DOLyOPzuXYD+GerkOc4XzwM/p1t4Pv + P0hvPe5n53dvl81WLXTy+b+Tv2exklyL/sL2Qx7Y0ai3W8lqFSv5Lk7rjI0XOhlvRa9k25zOzP8w + a7S6FHnbi9EfTCZQoeLNIPrDxI7zyvzXF2TbVrMr59VcVpdfMb9+n/C1qx6UnvwxB70+7u4487To + a3X3tJND1LDsRZbJx+yYHppK0aSjJwv3Xm8P7Tze3XV8/rcc1ifNSvzMYdMi+fiZy1Z6kvwPH3z8 + 33uu0pMK/+89d3PH222/WmrdDtWpbb7iGpg/A4jYuXXETavnmVPWN4Y112QvC22v5zviNHZWJlQ6 + rfvjnL5YYi/SQcu2ibWsRVzLqpJKpG2TndoU539G2v23r75e6c0zFqqnmRhYssnE/mRon8aZqHTC + x4pRyfrc7yybsYmUjETL0v0gxmvnhFdX1s346nZpPFwGDzWL489C/4vWPlKgd62dDWYv1FBpFfdC + D30jsqv5QK2TPrvWPStPZHXefpXnpey6+ZUhTYVS+XBS7++DsG51cv5+NtdnR5fPiroUzLfvY33o + TkdMfDzeA6X5WnrH/jqVWha3w+m4PKmUGK+dfkL86VHrZeFwZjuXYB2fjv8AnKkAITAsAAA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa5f41382054cd-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:15:55 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:27:21 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=3byhWhbue%2BMDMpZxbdkxT6jBnzjBNSFId0%2BdVdE3yDUcLZpRtbWCc3X%2FNaMfc4phf8gTfH3XU4EHLAKGge5oFAfUqtYw4RxGJ%2FwM5aREHi8GlY2ohMpBazmCM6aTOYj1foIP"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: grant_type=client_credentials + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - close + Content-Length: + - '29' + Content-Type: + - application/x-www-form-urlencoded + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: POST + uri: https://www.reddit.com/api/v1/access_token + response: + body: + string: '{"access_token": "-e_ddxxU3j-HmnvpAoHnAzzSrsejmaA", "token_type": "bearer", + "expires_in": 3600, "scope": "*"}' + headers: + Accept-Ranges: + - bytes + Connection: + - close + Content-Length: + - '109' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:15:55 GMT + Server: + - snooserv + Set-Cookie: + - edgebucket=scBYYXYbviwHs3HrM9; Domain=reddit.com; Max-Age=63071999; Path=/; secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + cache-control: + - max-age=0, must-revalidate + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '298' + x-ratelimit-reset: + - '245' + x-ratelimit-used: + - '2' + x-reddit-loid: + - 0000000000edkcdvnr.2.1630959355267.Z0FBQUFBQmhObmI3d19raHJ5RXVFbEtucF9zZmZDSmI2SWtHalRVenZmRnAxMXl0RExRR1Z3eUpYdkducUNGSW5UdzloclJhZ3VJVWRNOC1aenJCdjhVNkZmY3NNbXVIam5pQVhUcVBPSDRDNEItYlFoR0dhaVNSVG9hbWpzTTlCQURMUzJ4QmFJWGo + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - edgebucket=scBYYXYbviwHs3HrM9 + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t1_gbgiix8%2Ct1_gbgihj7%2Ct1_gbgihe8%2Ct1_gbgif5y%2Ct1_gbgif0c%2Ct1_gbgie3z%2Ct1_gbgicq8%2Ct1_gbgicmu%2Ct1_gbgibfs%2Ct1_gbgibei%2Ct1_gbgibcp%2Ct1_gbgib26%2Ct1_gbgi9m2%2Ct1_gbgi8lr%2Ct1_gbgi7xx%2Ct1_gbgi7po%2Ct1_gbgi7js%2Ct1_gbgi6m5%2Ct1_gbgi5xa%2Ct1_gbgi5n2%2Ct1_gbgi5me%2Ct1_gbgi40p%2Ct1_gbgi1sz%2Ct1_gbgi0so%2Ct1_gbgi0o5%2Ct1_gbgi0jk%2Ct1_gbghzz3%2Ct1_gbghz3k%2Ct1_gbghw7x%2Ct1_gbghvr7%2Ct1_gbghvng%2Ct1_gbghvj2%2Ct1_gbghuyj%2Ct1_gbghuuv%2Ct1_gbght6h%2Ct1_gbghsys%2Ct1_gbghsek%2Ct1_gbghs4p%2Ct1_gbghrh7%2Ct1_gbghpox%2Ct1_gbghpaw%2Ct1_gbghoqf%2Ct1_gbghoka%2Ct1_gbghoj9%2Ct1_gbghogd%2Ct1_gbghlnd%2Ct1_gbghlkb%2Ct1_gbghlk2%2Ct1_gbghj0g%2Ct1_gbghivg%2Ct1_gbghi8r%2Ct1_gbghh3l%2Ct1_gbghfz8%2Ct1_gbghfhd%2Ct1_gbgheo0%2Ct1_gbghe6m%2Ct1_gbghdp8%2Ct1_gbghcyj%2Ct1_gbghc6a%2Ct1_gbghakb%2Ct1_gbgha9w%2Ct1_gbgh9rj%2Ct1_gbgh6gy%2Ct1_gbgh6fs%2Ct1_gbgh5o7%2Ct1_gbgh3xl%2Ct1_gbgh3q9%2Ct1_gbgh2tc%2Ct1_gbgh27o%2Ct1_gbgh27c%2Ct1_gbgh1e8%2Ct1_gbgh175%2Ct1_gbgh0mx%2Ct1_gbggzk9%2Ct1_gbggzhz%2Ct1_gbggywx%2Ct1_gbggxo7%2Ct1_gbggxd7%2Ct1_gbggx0w%2Ct1_gbggvty%2Ct1_gbggv04%2Ct1_gbggtp5%2Ct1_gbggp3u%2Ct1_gbggp33%2Ct1_gbggn5g%2Ct1_gbgglkc%2Ct1_gbgglhl%2Ct1_gbggkre%2Ct1_gbggk81%2Ct1_gbgghqu%2Ct1_gbggh75%2Ct1_gbgggzh%2Ct1_gbggf8w%2Ct1_gbgge8p%2Ct1_gbggbxw%2Ct1_gbggb6t%2Ct1_gbggaum%2Ct1_gbgga7u%2Ct1_gbgg9hj%2Ct1_gbgg8ty&raw_json=1 + response: + body: + string: !!binary | + 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 + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '19532' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:15:55 GMT + Server: + - snooserv + Set-Cookie: + - loid=0000000000edkcdvnr.2.1630959355267.Z0FBQUFBQmhObmI3dlYzVktBdWRhMi0yZloyRnhkNV93ZFY5eS1YMjNNRi1tSUJjWC01SER6SmN3R0RrVGdYcGN5WExXRUtQcEtsNWdwQXQyeXQyUUN1UmN0Z2xyRkNYcHExV2xTeEZqM004MUQ5RV9CNVoyYUpkVHVIOU1GRFhHcm94ZjU3dERJdUM; + Domain=reddit.com; Max-Age=63071999; Path=/; expires=Wed, 06-Sep-2023 20:15:55 + GMT; secure; SameSite=None; Secure + - session_tracker=krbaimkecdoqerqmfo.0.1630959355372.Z0FBQUFBQmhObmI3MUZSZTVOOUhiS1FXaUtPbmx0XzRYTXcyUlljQ1VRQ0VxenY5SW8wZzBENDQ3dzROUHoxT3MyQkZVejJ5Um9YSVdIRTlSR1NwQVNMYzAxcnRuWTFCdkE4dS1MS0RRd1hXeHFxcnNDOWl2RlJGZXU5eUpPMGpJMFZBZWU1Y1ZiWjk; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 22:15:55 + GMT; secure; SameSite=None; Secure + - csv=1; Max-Age=63072000; Domain=.reddit.com; Path=/; Secure; SameSite=None + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '299' + x-ratelimit-reset: + - '245' + x-ratelimit-used: + - '1' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=scBYYXYbviwHs3HrM9; loid=0000000000edkcdvnr.2.1630959355267.Z0FBQUFBQmhObmI3dlYzVktBdWRhMi0yZloyRnhkNV93ZFY5eS1YMjNNRi1tSUJjWC01SER6SmN3R0RrVGdYcGN5WExXRUtQcEtsNWdwQXQyeXQyUUN1UmN0Z2xyRkNYcHExV2xTeEZqM004MUQ5RV9CNVoyYUpkVHVIOU1GRFhHcm94ZjU3dERJdUM; + session_tracker=krbaimkecdoqerqmfo.0.1630959355372.Z0FBQUFBQmhObmI3MUZSZTVOOUhiS1FXaUtPbmx0XzRYTXcyUlljQ1VRQ0VxenY5SW8wZzBENDQ3dzROUHoxT3MyQkZVejJ5Um9YSVdIRTlSR1NwQVNMYzAxcnRuWTFCdkE4dS1MS0RRd1hXeHFxcnNDOWl2RlJGZXU5eUpPMGpJMFZBZWU1Y1ZiWjk + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t1_gfrwd7l%2Ct1_gfrw8uc%2Ct1_gfrw5ac%2Ct1_gfrw2v4%2Ct1_gfrw2ay%2Ct1_gfrw0p3%2Ct1_gfrvzmj%2Ct1_gfrvysj%2Ct1_gfrvw4t%2Ct1_gfrvvom%2Ct1_gfrvvml%2Ct1_gfrvs8r%2Ct1_gfrvq6y%2Ct1_gfrvnxz%2Ct1_gfrvmjf%2Ct1_gfrvku6%2Ct1_gfrvj9j%2Ct1_gfrvj6d%2Ct1_gfrvf5u%2Ct1_gfrver5%2Ct1_gfrv9pz%2Ct1_gfrv9e8%2Ct1_gfrv9aj%2Ct1_gfrv5mq%2Ct1_gfrv4wj%2Ct1_gfrv3d6%2Ct1_gfrv36w%2Ct1_gfruwtf%2Ct1_gfruufx%2Ct1_gfruti3%2Ct1_gfruscv%2Ct1_gfruq2d%2Ct1_gfrupup%2Ct1_gfrundx%2Ct1_gfrunaw%2Ct1_gfrul0p%2Ct1_gfruipi%2Ct1_gfruf2h%2Ct1_gfrudai%2Ct1_gfrud50%2Ct1_gfruaas%2Ct1_gfru8zb%2Ct1_gfru82l%2Ct1_gfru6al%2Ct1_gfru44l%2Ct1_gfru3wp%2Ct1_gfru3q5%2Ct1_gfrtz7c%2Ct1_gfrtxed%2Ct1_gfrttua%2Ct1_gfrtthi%2Ct1_gfrtrro%2Ct1_gfrtqec%2Ct1_gfrtpss%2Ct1_gfrtp5u%2Ct1_gfrtp2y%2Ct1_gfrtok6%2Ct1_gfrtnxg%2Ct1_gfrtnox%2Ct1_gfrtn44%2Ct1_gfrtlh1%2Ct1_gfrti4p%2Ct1_gfrtefl%2Ct1_gfrtcbd%2Ct1_gfrtbil%2Ct1_gfrtanp%2Ct1_gfrt8mm%2Ct1_gfrt69r%2Ct1_gfrt3nh%2Ct1_gfrt2rs%2Ct1_gfrt216%2Ct1_gfrt18s%2Ct1_gfrstyk%2Ct1_gfrsnks%2Ct1_gfrsllr%2Ct1_gfrsj51%2Ct1_gfrsi7g%2Ct1_gfrsi5m%2Ct1_gfrsh87%2Ct1_gfrsekx%2Ct1_gfrsek7%2Ct1_gfrsdkq%2Ct1_gfrscu8%2Ct1_gfrsa80%2Ct1_gfrs948%2Ct1_gfrs67c%2Ct1_gfrs4zu%2Ct1_gfrs4bf%2Ct1_gfrs2d8%2Ct1_gfrs1mb%2Ct1_gfrs1il%2Ct1_gfrs024%2Ct1_gfrryrh%2Ct1_gfrrxuq%2Ct1_gfrrx5d%2Ct1_gfrrwux%2Ct1_gfrrwk7%2Ct1_gfrrvzc%2Ct1_gfrrvyb%2Ct1_gfrrug4&raw_json=1 + response: + body: + string: !!binary | + H4sIAPx2NmEC/+19jXPjNrLnv4I3V1eTpPwlWf7K1lZqkkyyfm8mycXzXi61s+WCSEiERRIagrQs + 7+3/ft0NgJJsSSNqBInycmt3x5JAEGg0+tfdaHT/89VApuGrb9mrd1LnMu2/OmCvQp5z+Oqfr3gv + Fxn8lRZxjN9DE/jUOjmBD4kKI64jfBSf6Qt125OxaU/fBJGMw0yk8Pnv/yxfk7dm3pCrnMe3fMSz + UN9mIhDyXmA7fAMfDjMFH295flvkwWQcvMgjld1KfduNVTCgB3o81gLfqpJEpPltPh6KyRMilPlM + Mxg9vI5rld52x5N2XZ6m8MLpr+zLejGXmev1VS4ecpxHJhJ1DxMwXU0eimU6uJVmwqe3g2AQpNR+ + tjORDGOeC9OwfHIg9ORjJoaxpC+Ipu55+DHliRlK+3Z4KcN7/FlzQz03SzOCfi8bhRcxNrDze0rQ + KWrkMo+nCNeHNZwsSAZrat6QZ4WhdhzzoRbl44EKp55OgSeghRpNnjAzwGH9F3DbDzFP2sQsPL3F + UQwVsVi5mtAtLJwdbev85OKqdXZ2cXWEw9Eixfc6AtkXDHmG6z+H+DpQGQ6ujcNwvDVnqYewqrJI + poaBI0tVPjUzHluuhUngy//+D3xB0c1ECKzm3n4GcypGRHgV4otefVCsK5guMuh2BH9EqohDGPqY + ZVxq6IxplQjm9g6TKetlPIBNwiL4QTOeQvMIftFCsFHEcxbBXESq4QN8a/ocYZOEcRYU8LaeyvAz + 68lM5yyXiTgiXsLhi6wcfaFFhuRUWV5+N8Ovgda3Qcz1FHuWTNi6neIyR0eeZwJ4gp6eomaoRin2 + QSw1/YJMBhHtLPt22OBA0kTmRqq455GWt1GexPjmj8XJyekPobxnNLS/fnyVhB/Nt2/Nb0PzoSaU + N2M6toP6mNrPMAHzDclSGILlq3/+6+D5LpvQHyUytCykjmhbOu7UWgWSdg6t8uQXaB4M5KzEhK2H + b3xVbqFcDc1z8PysHH0ivx5y2PAxbWfXP+6x20iGIQl+946hyBKOQhGX7Dg71oEUaSCOrbTWx2aX + HnfHt7wvbmHXSsAD2Ig94MmU57Bq+tYuB/IVMESqjy3LHSPN0iKZYl4nTJ+ig2lhyTjV0MqZV89l + jNvSOHA76jmCnHjW9pVjXwaD+EQ2lGs4NZqJvMB9RNOVD9TiVUkiEo4qzVFaZVoCEXMUJM/2TpcH + g36mChCJT5Zkwj1dEXDY5bdBpkbYDHvFTTSDAjP7fzJCh3zDohvLAEdVDLFZ+1/AoQ28+4T37HRw + kS6H98uClqRO8P5bkQ2LjN+omKeyMsS3TleGeIKeqyS7rAvGX7NQEZjkEcIKvCrPx0zLRMY8YyOZ + RwzYNdFM9VgoeyDiYDbw+6PQR+yawXgUQMu9ABQZCZmFLBUk5eHLrsyP2AfsVpsmuWJ9BVilZSiY + AqxBwMGfjwBaUuxsxMcavlNFP8rhvWzE4SMgAD765ubH4zc//u1HeO1r6CwF+OoKwLJQ8n6qYN3N + aLvQ8QHhXyx4luKzCH/wIg3tYRxSFRnDD5niYTwu+w/VkCcyFUxmmegXMH0JP5mxRXk+1N8eH4v0 + KDkayYEcwi7mRyrrH+On499AlOGkP6bvYLcRlCawtjDXnmLffu1Jg7EbqZYaTE346qkCY1WYcpAr + sxw+0D7/X6dXf9kq7y0fv/nAWQRgDEuxIpe69Vq1uRkDNw8tYvFnIzWfG1VxTVUR9rYXVdFhVaMq + vmxVcdva4Dw4W6wCnvGtqoCvfnz77u2Htz/ShlqmB/49FLEAkv+jqg7YObuspgMWl21yPzgdsIXj + mKcDbk7Vm5ncU3WkouphF3Bat9io+lCOtda44r5aB1hAmGSDkgO2CS2wdj6gpdwCPqDFbiTPyGKO + ArziSmvPcWV2Fdd0QVydXZIj/UtBxz1fzLgggmHnvkM7ayH+tE2DbeGPfXop9CQatmwfDDjiwSrQ + 0z5ZGXqmie+QZ4a35iy1T+/DGw32Hby6J0ACZ2gLgtQSSNgDMAIjHsLPQJcQbUOZsmTMeHjPYZOH + ZUMWgE2lBfyThkWQ2wfGTKVkdx0xMBUFti7iXIPllsMvYHlB857MEuMbB4tM50hZfAlZazwDwR8L + 1i1yY4tadzlZc2CrQgM0TUGEdgWNuweCVmUa+80zCY+hrQqWHXrUgdCZANaWMKauyEdoOd68Jzvx + RwHk1Rp/wY9v0gcp8vERu0H3PnQ7isBIBwsY3vbTr+9/PWDvVCpgO8Ez+PeIaRH3DgErAjGk/kUe + wJQ/ph9olDgTNgQkhYXk0+Q1U4Gfh0Jkh5m4l2IE08cx8CDAEXVh9veSs7/rIFJgkB71lerH4ggk + yj++cqbj89++NoSHzlMxYl/ByGCIX4OhDOsL+gbDfRqyj69+4oHoKjWYosDRx1fsEA17GHSs0BjW + DAYWolA/7HK0sqcWnZYPiawL+MxZONWP8SYl2Ap9Ahk2A74QyCPst+hHmueIzlRcE7PsAOQyMLbt + GMcMSm1O6wY0vYa1g72F/oZZNjAeB8cA9GNAfcPuRTqO8SzHokcMk7CcyRICZRrth4iDTT1WBb17 + jF4C3PrsEH98DyzARcxupgTEU/VtnvpdUaWzMtHt+lp5kxo54UNOGBJ3s2OnXG9MaJienzmmnosL + t9pzfjGKvnM7rSRVCvTRfSpU/pe54mXy84bkzFPb5Jl3cV9E0PKJLJZOy597KrieNTef62HL7dJH + iCrZMdA17d/yEOXP7ShStzJFfQ+nTjOKbxP0z96iRYIbnWw5ENpebDmnU/qw5dxoPBtzbm5ezbmT + PTfnVrXYduMmbPPxNs20LbgJW62VbTXSymTnkU8ba9twExJPbMZNaBfQn5vQjfWlQsvuvISwdF6Q + xe0AH8jSeAlrAiuzq1hLL2H/8nJIoT6L4edkeEqCcUvwY59eijyPIk0VCYQqsHN6eV4Ndu7ajyZG + +3OwY2nr00f4s1Jox8g0P2BMgkkUpq8ppgJsEt5VBUVtkMkzMmjzFLPm6RwVccxygpttrXwjc+iD + P5hglYWEeqmA6fpfGy7Xt8WASXwgZrl5fSCmG41nyHRza0DTtfMFmpsy1OaDZnvQ7d23zPHRIti8 + f0zu6gabf8h+PxZhEYqLy4vK6HlR7YDt6RWeXYLnj5LugYxZLnRughSBb4exeDBu267OUflnTvVn + uVLfsevXeCsE9jesD9MDdBkHPC6djpN7J3cF9BrDxEwsoI54aC+f9HgajMtuPd3hcaxWS1xek/QT + 7N70GjSQvwDy17OQkfm84L0TNw3eN3j/bNttF+/PwoyfPJzr5YA/1rUDfB4/3KaDTJMVWwnszy72 + FuxvlDmmDhUAANh6mo+t4ZcIJnvsmvWEiFmRoiXD7JakQ2kj3vR37B0wCcGLTEAammNuPGI0p9wJ + BxbCzoBycTyGnmBT9GDXcjz4xcNBupZqlssX5ltuqyXm12wFGsTfLOID63lBfCdzGsTfJ8RvnbdO + 2i34T5tWb3Xg3za2zxO6i9F81KGXbgvN/R+6nrZW935XgvTNIfcGr2a49fN35roXVzO+AF12duaK + S+cFX9wG8IEvltCe4aU5c91zVLlXCQm8l4MqJ6sndiLBnI7PTkqpgv3gODzDyuZCedwC+oOVJpTH + F6zA0nmBFbcDGlh5wbAyu4r19FKeX1zeXyUmUHIxAiW1yypIBzTdovKVv9OT1W+bV7JoLH19Oinf + 83HX3F/4WLRPWleYkW7MdIF3OoJY8JRFCvYgXq0RDGYvhuNDziLB4xzaceguzdFjFsQFijiX9gX3 + F6d7G0k3RhcZnoWRVKRDMxwkQ95isBoSHWt4QIadhZSCRvAsj44z2E1H7A3e4xEPwJuS8uWNWawU + 9N9HZxzP8V5GBLJa5jA83mU5Xo74ylzAkZohb2KPMJXeGO8Y9Xr0rlBm+dfwYDzULOBxgk48ysV3 + beiQYC4bfMnkism9OObmog/TQxi7L4+q3Rlu8WvlUW3YZX12eamalOt/63pU4iV9YynNfehRbjSe + FSk3t0aVcu32U5Ua8sdRNHhcrknpy6xumtSNyrIxJoODDS5ECgK3qk7VPlvdS2yv5txRAvI6KFU/ + FoBpGpbxP9g1pfyFDTxmIu3zPmJEGWIkON7i9ZdU2bFGLVWJ6kRqAHSzAArc4QNAy63bAGgDoM+2 + 3XYBNFPpydly+Px0vtVbrfbppfD5P7Aohf4NfpeqMnC2OysDZ92cEb+rhKcCRoIZWQOgoKQYmiHI + XUAGmGtGoW8egNIyQS2BcgWqNMi4WWQEdvCCjG5vNsjYIOOzbbddZGy1oyL9TCRx+kCmZ52g8Y+I + 5/pDJP6m4rAYVgXH1uXqnnoCBh0UM7UBTnEwO0LHDy6UFS/catyULJP9KD9gIAgjIChdFMJUWfAT + bOucmyz4FAKL6YISwU02trdFEMsQvbV9gTnhwe6S1CuIwoICWU2ULIa6auiZYmLxg+reiQBeiPm1 + 6MchD0x4rPmFyZQSwps0/TeKgEo8cLxnc4AO2NOQifLl5dOZeI1JriJadfgav8Gc8jyH7zEl1IiP + cQghoGAmuzipyTvpVX/C9EyKJY7+3xBkXmoGZl6CWeThQzvEKj49/MbOyL3sF1N+xzaXmgVFdm+z + aU3PD8cJvcBmzBlsRHoJXuHNkP6cRCXMM1cMiCDinkk/n2eSp310bKsUfygHESqiehiyYohpx1qX + JzD2fibQg67ZSMQx/svTMaZbg2XGNPTmjZh5yww2QSZASgeCaGEg/zoFODNJ+uPxQRnRXKbo7wpW + sgE+9SYTxCSgjEhKsEVvKR9Df75MhiZ/FcVBY50iIhGN4jtPipkVQbVUzCYbEj+7G97zd+akxQpb + 9Kk2Z/U5+8X83Ts9hA1u4+VDqbDDJ+NbsNWnG3x+zy8f1/6Kg5ll3KBcWEAv0oUwBx+tz8R0sA0r + CZGnrzCf57xh9h1fKngWvLexfda0fUDi+rB9StWrsX2W2z6ne277bNu8madkLDZpkrveNk0a/4Gv + rfPVD8oq+fs2Z7hsMu7Vrl8T97ourOwu7hWWzguwuA3gA1gsoT3jShP3+llUmV3FWnrU+np4GdHO + Wog+g+KcBOOW0Mc+vRR48ILyKIJ1gX18RWnVKqFPZ/VkPCTA1VWPsMHBzy6Lbb4BW6yb8dQkFk/B + oJMgaihjPebThu8kCDVjgoBJQiY9M5abr4ANyyBu8rVyd3wJuV4qmrr+t42lwCdesNRtZx9Y6kbj + GUzd3LzC6b7XI9wDOL3oPH56WA6nd1e1y3QT8CRUKoxFV1U/nWqdrQymlUy5LWAp1uCVbMRTLOXS + xxyoVm6xyRZ1ZTSGkUqNONk8gFqWqCWAVqZRg5qbRU1gDi+o6fZtg5rLUbMxQr2jZqeb9Qh4lqDm + eVg31PwpEUgz7KUSXtrq2SvgJaFDwbmJeKlJNAdFPVDYO6EBZQ0/wgpqIPt1Ho9tKTUwujDvGAjj + WLAR1qK3p2TmBPd6Ngm7zBlufxbA/JE5MKZeFf3oiOHR2zVe1gPiUv4zPHYzIQiZ+FRITFeaAwLm + TMtEUtX78YE5m+Mp3uaDJSghi67jmat5voxhy6i1xPKnJ9YbW8dJpyss6FP94Mnp7Zy1nu7+yxb9 + 2csb5eTLlJPz0I9yYoVko5wsV072/dx1D5QTqT7dEcUXKye9s6JuyslNgXqA+EM+wuJndE+gipZy + 0qmYmagIV8xMtAUt5Wec0YHx5X6HAPOn4Oji7SuAK5lq2BRYwJIzEIUZT0OVIJTlKsXQJjBju7BB + QREAJMzByM0w0ktqMIFNiJcNuuqLhNKzgnCERWfF0JdCYZmrlgrFLKWfYusssC9aBNOorPNarol7 + 4eQL07+r5rqJJXs25EYd+CJ1AHjVhzpQSqNGHViuDjS+ClAH2uno0xyu2JA6cBqN9cndwIDdQo1A + ZHSBs04awXuV/hDB0uMpaCaIotU0ApOieBWNYHoV6qAQ/KIwWnmYSUzyQ4Hd7BD/HTMej/iYgAIr + kwsJCMIxP48JUMZg9DRkA/SBI4AEWFw9oNpnGEg8LLDA+3HOBwgxPfbbb2+nA52pirti/F7JkMFQ + JHTXiwuQpZiCHc1o3PQc+8PCLub1GFLtS5OwTFlLTWLflqjRHBZoDrjvj4tUPAxhGUQYj28Rf241 + kPoW3Ua3POVCAyVzmLOGTyFpDsCbfjQHK7UazaHRHJ5tu6eaQ5SNqNiLH82hdXYXBqetznLN4Wq4 + 6+urbkwT1eEXlb/Pvi/SgFdVGzpX56sfd0wvgVMbznEgO1Ibrulm24G9ZmpACSMPyZeMRiVHzLqX + 9yrTkRyyrkRIwVauKstIvIZPKo0nCf0wyEwAP2EYGjxkL0DR3SRdBIEQsIq+7iVa3qqlAjBFbPxi + cpqwDtUnPaxF/gbcF4A77s5jAhyejW9zBSJgWMQcYEvAxu7dpmJ0iwkxUf7cApRIkBjCuAaA9zwA + /ES+NAC/HODPG4D3fVLw0M6Ku87VZ/BdUG6GHeL7M8+ASASIdp52Y/4osqpZDztXZ1XzU8gzqgPg + MH6GyeasuU+Mpx59wa1Z6lrCLT3d4NwCnFvT/Q0L7gXj3AarKcaRa68OGHfSYJxvjFOXA0mnyUsQ + jtcuwP1nFYe/yEHVvISw8/a3kutPLhkF1vvE1O9UNlQrluK+U4WvrIR2+WuJep+lSYOIG0ZE7iN4 + fbIva4qIz7h6V4jYuHVBKoP+1J7DFRtCxNOzi7vgvE1CbzEoniV0GlonUNSRFHE47iopq+Li5VW1 + 8LBh+tiuDTBem5BirIDiopVHPA/IvRgUOWa06veVPgB8SPBAMRlK6zA8YJhcC3cgfS1grczXGn7X + vTH2cC9DgQ+LsAjoKQ4AY4QFHSaiPD1guQgizHqlmcgDysiVjo2DE5k6F/HYRTbj+SSFS/UzntBZ + J54/dpUaHLk6LiHVCB8KNYwFKzT2MlZFXnSFiX0mtIlhOqHkJjWVKQh+z3XOEpkqDJ/2dehsGb+W + 6kDDCXM5oVGCFihBCCTHQNC0f8vDIs717ShStzJFGYlTN+S9JfLeIpSPRCZID4Jd4EMPKuVwowc1 + etCznfdUD/LrGTi9H/QvlitBndGuPQNuTBMtKMBbSbeGgatoQFWTMn9Smu4KOg3oDEexIw3oAyYJ + lZj9FMQ+lZ1LCaAQfgBkDBKaNKwwEwzUxltUqdAANPZSVsYp3irB+GvOhlKYdKRDDmL0wARupYIu + gGVKaxcizr6HLjFUC49j8SwWwQchNce6OvQK02E/Vt1JBBgA1TduIN+UGWDHAM+me9cT4FceETJq + GHvEhgrTuLAfYbAIhXOGirX5gDP0JCMoywp4yLwEZ1k+aLKsUupcTIZLWYtviFga6XZXAC2BeAjA + dKaMA8JKQYj1gRgCvnJzDM1C2QPDGRgE4Xfy4RubGRc46Zsj9hYrCOEjdDaNdQaRtW3+UhCP4VQm + XLeUOHNoJvFvaDhJ14sDLGcISopEHcQEJ2gFDAb6hQQFg4LcZA50HwkTUocBcvpTASuAisl0FlgM + iptDUCLLm/LunSRaQavJNFF6YXOXBxi5xdwMvMa7pURHblP/jojkH189KkVZVmX68RXR0FZWLGlM + zY/Yn6rAOcGu6vIuxvLNzAxb30iRDSXoMa1ORw9kOSGT5BZY+3Uc45AlZtClXLkUPpBw4M9iSDcJ + ShJ8xafYhkbw9RG7wbS5r1eZNjWz0y3zBvdkihN1BCBOkum9iu8F3l3AfLxOaTONcd/60t2tvK6l + 7r6HMsyMX5iLLG/dqKx27b6ujXh7agTM3ubZqOSbJcxEDD4hzXaEIr6rjB3auHRcTtW1Bedk0PMl + KP2MCa3/MiVKJ19+RqbOkORLhOuko01I2elJf55Ys+03I3efLaf53FjKax4XAOB4MZObNN6rmcln + e24mb9sSnqdjLTZ/T8OtJlL1nsa7c1khuNsYwaMzc07yuWOAzdm6m8zjbRewyeO9Lq7sLo83LJ0X + ZPEZfmwJ7RlYmjzen4WV2VWspfe11b5QNvZoMf6cG8m4JfyxTy+Fnm4mgxYdzlfDnYoJvIenvdrk + UHsLv36L1cMjqvVElixZI5rL0DiFZMqDoMhg4mjpZNmYEmySn0HhwSAm4+wKrEX17ddkQ6YfIjFG + z1dXgSk2yqDVxI+A35u81mgqYydYVwqsHjCkwWy2F12BlpqKWmGeDFuhC9roRGGXaL9loo93PWyJ + JrqSIxOwjqCPAD0ZUzW0zMsl3rXhmPvLzDV9nT9/gZHa9o6VbW4lODk+OBLb9jZ555S9CsudY0fc + PWZyxmHNxamiXrZnvGNETgsy8EzJKecjQdKQdwR7U0XGilSiNBVoaOMi2zPUPONEgVm30rSrCBof + sTLWDF0/ZD8CpwIzI7EdNBnDuNCm8BktFhjGXTqXnR4Bg+U3PqVMhgfklZjpvbweZW8zDYewmuwb + mWqY/Tc4nyflzax7C3cKkF1hwjWQjqYC4i8qPXxaDQ2TqZAngXKsRWCam7eSqT5Nt2E01jLQ1rsJ + 0wL+ggbwfxKYZOzuZ5dLCouJN77JhTDGKUeCh8Qltr5inxxJhr/+Ho3RqZWpfiH+8VWU50P97fHx + o0gVfXUk8yA6kuqYmtFXX08NGwTt2FAxnZlhV8EmLr2ClOk2V8Cj6Dpi2ATnRcXuaE7EBDh6m4XQ + PQANYzMPnPEBu36NW8ZgUchQZ4wVR2EB3fhy2FoJ76RYrRy2n5N72Mp5ZyoJwKe68qxLDSXjpOsF + InKmQT1k5WRIS4XmVLONSc/lBN1TwToh1AYlrCGM808bcWvJ575cLnynl29KCi9fgU0J6MnLv1RS + z/Q0I7LNwMvsXqvIbCc9poS9JYhL/bVZmT49+BnhPr04C6X8pNEScf9sQc3nvbfnXf9bt+bPR36s + +aaSyMwIFxn0TdpR7wb9Ze+Cn8cn5HBcaNIXo3yrlSHt08sjqr4vdADms74VY9EFFCDLu4p5f1HZ + rSw7JvLMuZV3WaDr2lwqIiSRPTwrNkWdYaZYhhmAGmmAWIJ6zZhFoPMwHURKxaACFSGeXvYVAgfo + vPj+SRcW1xHPRyqLQ09mhOOqWpoR2yRvA9sbhW3kKx+wXcqLBraXw3arqQDmHbdP5eDx7uHS5L5c + iNtFj6qE7RC3n7niwYCSKB0l3V5pt087lXG77amq8xZQ+/14KjIM0cGEDt5wmGnIfna+F+fgMEFL + iBRURlL0ehJFQJl3UmV9nspHAybdwmAEmd8xp2s/8CsIWRs2ZntEex1DyjKsKwPktcZ2VCRo0Qry + lExyXJG12Xcv0ejKMaLWJbZEGx0gGqzeVACSMOQFCrWyY/OmPljmrqX68G+5zo0es1k9Bhjcix7j + 5Gejx3xGj9lzNWbbmso8mb5YN8klVdTelm7iP0ztorV66nKToKwl45UUk83pHxsMU3ML2ISprYsr + OwtTw6XzgixuB/hAliZMzQustM5brUv476m54r15dNlUWpRq6KIDyu/8ctDl/KpaAWxHdgcuC33V + GwSX6bl9IbjY9fMHLm6stQYX99WO0GXtRBS4fD4AptwEDcAsAZjG/bpB2HHPFzPuVzFMT0wBgYUI + 9Kldu1LS/wWiKSgoOX8l6DlvfRH0LLRrLG19OlyvmRX06NVKKP5IPNBtYfPkAbtmI3uy56Jq6EQP + C/rhLeUDFsseObq0YkkRRKwrEIF8eTUt2zjS1Mqr6Y+YtUbhLzDxXP87gGBgJC8Q7ISBDwh2o/GM + wW5uXlG4bmbeyWXrvNNqGd/v6mC8Kt7uxok4LIbbBNktmHkVUkETYHR5ROn/Pwu2m8PUTdp5dgH/ + ze28L0CYDZh5azoRYem8AIzPpMsvxsarF7pM6+2rwcrsKq5p420Kc9zzxYyNdxaF6XigSfQtRqA0 + rF2IzQ8wqiAa/yfelSFOrII/7dXvvNYtuOYDhmVSji6Z4j2VsctXm6C5ASzcG+NlpRsYXZF7qkvg + +MFNt1b2WzUCvVTEdP1vGy+BM7zgpduxPvDSjcYzYLq5NZDp2u0nZLZHCQ/PO0YfXQyZfNcJItyY + Jph5p0B03guZ8iyVlWvTnbeqFSrIkiIzV24cbF7gaHaEm5hpEgMLeQYiN7b3fU22epPc3V5VwGuW + 8HVgpRt9CN0FTnP/tUxwaFqSPORxGUvoHuHlC7qCYapAEdJN2RT+n7LeidhXpQDHfbUE6JquRKMJ + bFgT4F7ulZZSqNEEPqMJXOy5KrBttJ8ndhfje3zywpyyZ5cVb4rG8YWpXvg5q3hzIL7JyE67gP6c + sk1kpy9ogaXzAS3lDvABLY1TtoGVFWBFDqmA3AuClU7F4i5PK5rvGazYBWxgZf9gBZbOC6y4HdDA + yguGldlVXM9x2R1lvbM5LFEZc9zzxYzj8jzvDug202L46bUjEoxbgh/79FLk0Vze8ZRXrqvauepU + A572MJy5qbbwMoGlrk9v5fsxHmGJjDZuWRQkYSOuWS9TCUtgjHgJOmWtMzYWPNOM9xWlkNOChXys + XelK4HQ6CzNXpnNXQCdXiuVC54cKXwLUs8VwGJbiSD+mb+9FCh8PKFskZyhETQ82z6lMsUwNbXJ6 + 8s3vb813POAhEAbT4qEj7/s3N9c3MFzQHzAkssczpgucGSahxMI3ggE3ZiCqmREJNsHMAfv4SoCI + Eh9fYT5BIKsvX6nlebeqtfKV7pgPnqoYVsmwXyxlEWziEv5tgVfobVR/xzDN5LPjnmeTeSH6kut/ + XW2JQOdYgkiPxG2hb3mYSK0lbAFcolsNen+Qgzi/xexPt4bgRl+CjeNDXyoFtw99yY3Gs8Lk5uZV + Zdr3KzArakU7ssRDo3JsSxXyb4l3zj2lFNqc2rNJQ9yuX2OIrwssuzPEYem8AIvbAD6ApTHEa4Iq + s6u4niG+Mchxzxdr5KMNz05INm4JgOzTS7Hni9PRds4rGuXDdjCTjnaXRvmvPUxuignuKTcqPAHG + GYhrX1G2lgHczGplmC6kxUtFQ9f/1rHw7MQPFjZG1swIF8FhY2RVQ7x5cm8xxnFOwrNOGLe+fdWu + mBrt02lOJorDtoWV1DYHYUYGf4+ldUxRb1cKB31pWK3ZOOjKei0k0zFWclIOBH+fLRBCVVO0KRX2 + u0hE0hVYYIjnmHEzVpoKiMuYZ7C1sS98elKGelKifPbVfeWqhM91/FbEUstom7cGaQujo9EUVikR + zwW7eiL1fJSdM5jZ4XhZngWDqQfku6/WwfzdWcDArl5Q34moPUb9LZjATUkW77mFxtn5Y4e21kLd + 4PKxS9BVI93gzWiAy/6L4nRkWEk7OKmmHQxPWyGxZB0s3/IGZeuKKnqFEovqmSsVVHyQs2GE+W9y + Gces1TmaunMZEbvj+Z0WgiVj1jqhg0qmsEyIwisf2IfE/OEsFSMmfzNd4aEmfv6WJOFT/J+nZ1bU + CSyDOfrVyr7eMcVrDem7tOLXT1UE3OYF0p1c2WNId3PzCur1MuRp9dqtqyuTB2TL2L4pY38+tp+L + JEo/g+1tCrWqE7YnPOiqkajs0j69rHgtdhhG/WlgX3iuugVgN9Kc/akKqniO9TIY72ZcA13LuhlU + BpVj0NekYifG4vTAcDGGZCZi2ZeALC7YiIxZtD7fDGGP99F6xCCh2RdQJj1OMUcYC4TXQQtkwDJC + icrygj3KMFMDmKPYB5Z8pW4OMLAHRAOIH3hxKrRmXyl8yOCY+TOWBHOmNC4m5sMyvTTEr8tQJYaE + o+KuVIqVho4CDZpjjdMYodFAbor2MaC7MIY6mL7sbZ9ySuD8MBwLaSNTUzFXUv1WZBnok5MHgIoD + dyWRJABSJgLrpEmdmMFg4opEZH3gGNMdxWyJB0ooaN7FsVOYNSUkhPZIAGC1AInYHbMEx1hgUZYY + Kw9Nv0uPYVqJreaLAjw1j4h7FRe5tGF/liE+TBHfyne3yOkRo7LFQKzXQBSsZJvmIO7jMdZ5BVLZ + J0ViFhP0jywSuUK/h0SfBkNDNxlSXTlAXF1wWNkE52fiyQ5tuVt6b45nCrRKXYkAi2NErtG4OKhU + EHcOUjUyJMRPWNQOf1G9HuxJS5gxiwF4cAVg+YYCOBcZ0s3pgEb8wN3FYqZBnCGxE7crpjsjPnHd + 4dYVqMZAN1S52pDrgI0iUBBpk5jKyQRjPJQBTIjWqQcLxREkYHUmOwgUQ5noI9yTuOtgn7MhB9oW + uAJm5KjZTb0lJg8OKCM8FdADvCpSpnjOUAG/UqnieykshUJp708HMguK5B6ZDemX2nLGMJiYj+wA + EiwqLiTtJdDiOLCzDUMsax+rp7+UfDLLTynlYgmVqc2jbQHhfjbGEsRUINwFJMaUelNmVIWHvpNp + r4wCpI2tv8POv7cCCp+dyC/qYFJkerIAoKW5OszIiCgZcc2QmpilkzOdA8PigtiekDtValhbahDl + vC+xavbPMK7X2q0OFcA24zt24Yq2LDU5/jCEE7i4fAzWTWFVoRQYECtEU3V0WBgA3zHu7iGWEYcB + llsb3nmsoF9Tlhu505Qj0gnFeUKH9zJTKQ3clqh2DbDWOtb1dvyO/CN7sBORtMAY9yguZYIylW7l + 8/w17vmy/jkvAzCPyzXQEuiJw6bS3pTglKSSqfUOswCNGfucNJzmBPZrBNsX06jiVsUlGsCoZCaR + G6huJPrDYFj4CdQZfF6jZHmNYhRdpFNCHqgUKwXzGx9+KjjWW5O8i7GuEUaV0raCzqgHCnwFFsm4 + RAmmRjQA5BrKCqRiemEkhwaoQICEWP+d1AVHdoAnorDdfEfs+4zfK5rdn+iVpcVw8EH9dQUaWlgP + vccwLhWLsY8JSNwKHRhJj93D8kqEFp4o0eUHyJhII+wHV4ikPeIBpisAKIbeEifESSIZYT82En6K + KYAOBFuWFLSzkYCqgAWDHeyofOAkJ/wVAuUQLEQeHBmQNHlw4wKRmzgDpJGlx/TbDRlBHJsvQc8o + Xz5d8HxqeIZ+MFEwXIs4xIXuIlRO5G0p7JAcptVU5TGze5CAIFbA3NJIOKpHPjLSA9ug7Blhfl5D + adIHzBcH1KaHBolZinJ1f4iAt4xEgRGBXndvVRMrwTSm/QXiIiU1vqSMvwZ9IUSkp7y/JCIpTpsH + QZEhJk4Gb6CFMRpWkUq0nUiqozqACG9WEwkKH0cqG1CsNPA+KIEiS91YcB6SZo4BuigTccxM9lOV + wcY4Yu9NcwuqKAJmB2HJigosn4B9gT33E37EfrdSnbAXhC7o/GbbJ5iBDedga6QZwYkqlhk6KraS + XgHCRKSatCC0jmC2+XhG8OBZAvDCjVU4pEZe4LTtYHbYglOxOOjAbndScpCfHOmQXVT3zoQs49h0 + kRmRTpuCYulpT5BcelrU3qp5SxZqdpmMWEK0ZQrj2Ym1J6RD0CXJAwIup3mLe6wLGdDykEQhnSDz + lgfG2ln1cnHNOaWadn2BKMA/zOWBEtUXWSWTppXNk/k+rjmjmx1fY9LskUnzdI3tUs5Z5Okl/rCS + +TNhvR3YQU8ntiLzNrbTnthOT9d3ZcbdtJ31dCArMtq0bYbfPBHn2zHSJi9ez1qbfr7eZtv0SD3Y + b0+ZYDVuXNfUm0zGh803w41fbvw9JY35PIcys7RpDMYvMBif0vwJaSe25DQnNUblv59ROVl/Y10u + Z5wpw3OacSYW6HR39TNFp8e8CZv0GbXM5yYIYM2gPjDGfUQAlAeQTQTA8giA5mab/6P/iyx+jIam + WM/C0/9zXrvT//9TcIQ0UI9uimCg37xTRKVKgQDnqyfQrHS/egtxAB8ihHcyCwEBEpgtoikowznp + 1kPZB0UN9y1YCSForp7clZYx6uWuLE3raiRq0HOz6Am84QU93a71gZ6WzA14NuC5AnjGJ51PxAeL + kbPTqR1yatilRcwPwY7JlaoMmqerh8XXDTRN0QH04bzDagU/q5Al6MNHzwfuEzJgQUgIzWDHjvDI + x9ltZgdTBx3TgnwAGCzMwMjlzkOAbcXYeBv6Cl6A/qke/HFkaxugl1KDjd7+9op7AmXLc7UE5bot + QQP6mwV94D0voO+kjg/Qd6NpUH/3qL9tYJ8nbhej+enohdWQOG1XjIXf8xoSdgE3f6vcAkiTY8wb + ssDSeUEWtwN8IMt2zMktXLDed1iZXcVaGpNRL+uFtLMWw88nSja+LfixTy9FnptPIxmTuVENdlbP + bEmCW3YeyVpysDPDWXMW2qcVaWOV8KxUwLtMyEJfAYlThrEjCo/DFbvDaCLeRQOGp2M6a/blhbV8 + 4eZeK4PvC6j1UjHU9b91BP105gdBPWbpdKPxDKFubl5B9KQBUd8g2ruLu+au7iIQzR8vaEl2CKJu + TBMU/RCJ9zz9KVPJTzx7M+JkYlUB1Pa5Lbe9KqDqzmMxDagdHM+OAPX6dWJirm64HvA8iMQI42jS + EIOdEg5cMBNo01fOywcdpTlVjUcXH2ejSMWChbIHohAmjIGFyIs4tI2DruOjWoLuNf5jIou8krZB + 6I0iNPKUD4QupUOD0MsRurPnCL1tEJ4nRhcjL3LDZNxPCbVx5PXvPW37OgvdHLZu0Hnq1q9xnq4L + KztznuLSeQEWn8dyjfO0QZUVUCUvyDO4LVSxT/sBlNaFyS62CqCQTM5GxcOWEeUar/X3ijTFu6P2 + Eqq5KoYXYYzrDq8rwCDoKgVe7aNnYOJq+kFkUqlSbB5EHIRuPsa7j8Yi6WWFzvEaRTjXaVoRuSyP + eEOu65mLJpWJM/3wulSqNWa6r/YLNIFrfIBmuckb0GxAc1egGb2wWnmti9bKyPkCTDG7ft4ArTHF + /KFK5KVWXrkBGlR5wagyu4q1PII7bZ/3i4H8zClcltHNg20BkH16KfbkPAFu4hcnxBSVwKdz5gd8 + LIV9Hr79TY1s3MUkuQvXrgIO/PXx4zcm+h6kNOWTikeYPwVT4KQiY5RVRdh8H5ggC9qz7xj7zSTu + wnwQ2Dls35ASw4iQ9TC1Pab3AYmGVWoywcKMjyhnDKU8yDG5Sw/2KAuKjC7B44kVWjppX8y1B+dp + PxUh1XKkI3mtzvM+u0jVlsjzAr1UncH1v22NATjTi8bgpJYPjcGNxrPK4ObWKA2u3RylYdt6wTxh + vFgT+CR2HY/zTBNY3wptr64IEOokRWaKCltN4HBhHM7mEB8v38ELurEwuSJZICnh2UgO5BDLoFAK + IRTzH1+V1eMQAzBzT9w7tMXnsISsFnQ7b1J87gbL3R18fIVd2GRef8d+zR0829nRP76K8nyovz0+ + FulR+dojlfWP8dPxT6bh1/OQviKqW+7yZihXIGaBTl7MMPaXNak66WCKvGY0nEUgWWGYKxHWzeT5 + ylioNtci7UxrCuTuq3WQfHfWP/CjFyx3gmePsXwL5v/hvgf4zK5jLe3//kl0QRdCFkP+UO+6iLAb + 0wTz+zHv8tNWh5iwCuS3Kl5l0fIsKUUPfN3eaZ3AnIVKUH7hqbNKZxPCmwNM84xkxiSllKMTeBpn + RfmyKUHt2FRlwCSmxtJMDpjEK/uUIp5D32CVRirAbN70/zYN3zDCFNx4Hmq4cfMmveUzR8damfQb + orxRCmxu1HlLMGmw4lrUGvT30HoHJvSC+E7u7DHiu7l5xfx2veoIVsf8bcP6PMG7BMvP6B7JtrB8 + CyfJJxUBPTl92HYM1iaPku0CerOQm6Nkf9ByVniBFrcDfECLJbRnZNmCLbnvXuHZVVzTlPRbc/4q + OOFXtLMWw0+b7kpuC37s00uR5/rHH2Ry8+H3X3/5+e3vefrfMv39HbFjJRCq5kj+9PCpIN78LAhZ + Svs0Kj9EAgaRY22HmFbnKULN0zCqopZZdzebWpl2M/N/qajn+l8b89YuzI5r7wf29t+H6ubWIJ9r + Nwf5VgW33RhUakAngttCNP8G1clVxUstg7tRthKWbQ6yNmlQ2QVsDKp1oWV3BhUsnQ9kKXeAD2Rp + DKoGVlaAlfSBInJfEKy4Kjorw0qUT6QK9oPj2B9YsQvYwMr+wQosnRdY8VlHqoGVmsDK7Cruq58u + VXRGsi34sU8vRZ5N+OlOLqv56bIrqU5KGeSmNQ+ELKV9+unoVj7GDJirBaNI0A0BldGX15S2M+Jp + GAvMFnaIZaXxUfw3FIHUUvnKrWa5xdGgVt692ev6X0a+lwq1rv+1gXZ95yCwjh+sbZyDMyNcBLdN + ktMNmnjz4fby0/1J0O+Y857FiNuhWMY6IW4C3fFu9eymJxXS4tTtfuU1A4OgwJMgAIOcik5rNpQB + mgsHTJp8L1Q7ODMV4KmeNLTLxkM1jFRXcmiTUylvG9DXPmld6UkuTuxlRLk9Q+hIZgyv4WlgNRCl + 5urBCFqxUabSPjtlIV4NxOrUlAWUAQbEWLwaow8NkGGVaZAceJUwxzrPvi5cWgatJ8jv/6o1usUC + 3WJdI77T8aJY+MwG9JIUi8aO965Y8Lv+p0/LtYo4IrrXSav4PlYg49/e8aBAKlRWLs5WrwJNwCU7 + dya5RQ20C4kmfATP4Z0A8QBsINMD1jXmaMows3pfCOBsU0gxBViT4QEYpz0hYoY8guaowalcHxC6 + wBewY0EqqEKneF+A480BSgB+AMDDYdcy4FZpMtlZWcmcrDw6OsL+NKYQN20SELRU1nFy7dHkJ8D8 + 4ywRDLhYRyhWTPJxTHqHqQXgVbk4shOBn9SA/fj+A/wJkklkBnX5iOmhzFDi958NxQwPhA++HGbV + 44HAwdG9FMqIkEIfuYQhXL8GKI84kGkIb8PqkRG8oAhkiiVKUovIQYyJEZBG9/Jezs9MuAHFyO6x + WipG5n6I834s4bxJs4YF57HgNBmf8OLkp3WYstH7Nqv3wW70ovc52Gn0vkbve7bttqv3XfYu+Hl8 + YjJRLFT9ZGerxU/t08tv7X5f6AC0K30L0rELwpHue1bS/k4qan93w5xSLzrt7/QCB7Qj9e+aYfU9 + lqLzARM59IWDX9aTmc5ZKAFMCx1lSiUmSdM1OgcQ2FJ8GTPJnJgI+wIhiuMl06RIMctwHuH9UNMb + qNiI4LHo5da/YCq24bPwXoHF26Dz2daZBER3zbEliBbgDAZQT3dNQxh2rIa43ehpdGFgMyOOKVMV + PRqpxFTzvpeZdcpgaDXhrcoAvo02EecAxj3TEmiZ0B/5ZERurvh6gcmzsOw4elMSOkbIBfRLvZBO + Mkm0FcJbx0cApOmvKREJO0mAtzDxRw8FoulL9HoiyEnNcAQ3wyvnjxoP9ki4/eZrujkNEN8VMMYI + 3UddgcRk33/NPmCTD3+7vsFUH8C4wCX0lL1sTSRJMSsYTXaAvWIrXDdMAOacV259ZB+vBWOrH75m + v3Ak719NcfQ5i6Hhty6nWg8etFsrRmqp3Tb7aXv76amaahVV+4WHrTajVlfcc5Nnt7T5npGn0eK/ + SIsHqeNFi3fqQ6PFL9fiTy8aNd63Gj/oDWyV5IU6vOhRap5a6fAgJrsAeCBlQcRU1N9PrzqX1fT3 + E9mauVzSXphxbxv6O53WwTy17MZ4ymghNQFyU7qXWDxYVMGvDXHxz7EBVZl/x35RKcwbSINAgilY + SUsAzrOZW7sqk1hmxOZ+0wegVYAOZU4vufNUkedu8sYDelSm8JMg6DgidHSnmKZac/ksJqvpp/IR + R9CFAaRspDKCRTX7Y+mhY+xGiASdeBmqMQPUFXKFAA40oBkSMtOUEG31UASyJwNGIwhod0ycedQL + PdhVD0JTm5D1RWpk8OZ1WLuN6qnDNjzll6ca1WyzqhlsJg+q2QQZGtVsuWrW3vekiKtqX5sKgp8H + IItVrqD7sqqenl5VyHg4TfbPnpdvTq+amdtT/K+I9Xb9/N27cmOtNa64r9YBlg1cvFo/HhyWzwu6 + +Ey/Z7eSZ3Bp7l5tDFk2ZddXQ5au3KoxvwVkqXoY1+XRZSlYsB8ch2do2eCVXruA/qCludL7WWRZ + 02iBpfMCKz79yQ2s1ARWZlexlr7kjow6p3dDYoTFCMTTXYeEPAOfHyIperdv4rDyNaPTyytPNUQt + iX16kn+OOZ5F9zMxYsUQww6zIuMxew8bjqd0KvAUrOYpGxUBzK6/m1+t/KCfochLhUTX/7YBEVjB + ByCWe9IHILrReEZEN7cGE127/cTESzkeXH16oBjDxZh4mVB5jzph4ttEZBwFAfZTBRDPT1YGxNpd + jbmB8WkBKKGK0Jxa4XEXnjTjuVN5cXMk9XDMFJ5sgXRL8XxKMV0EEYaChZPTJU8Iarmllgi6YQo2 + iLtZxAXW8YK4btM3iNsg7rNtt13EPROD6IpffMYKPb+iiJ46Ie7PWHr59h3HYIf0tnNPA6wEve1O + NeiN0/bZNPQero69ttPNQe9vmeryrrfc73a9a4mZbuoN2G0W7GDNvYCd22YN2C0Hu8MG7TYYQTIf + 7S4uB/f5+fndcrQ7TaO6oV2veAww/q8qyF1crg5ylSJJnkHcNL9sBuN+hE2c4rUWDDxgFHhwxG5E + hlfW47Evc9Eufi2h7zMUaRBxASKuH9sC3OADFMtt2YDiclDcd0xcFfY2ZeTNE4CLga6dbbVKtP/w + lovz1TPWVzpf3ByqbTK6xa5fE92yLrLsLroFls4LsLgN4ANYLKE940oT3bLvqNLaankt+/TyG5Dr + I8pZxduPdzrtzUDKJQ7EL6a8HzMN5HpUwwjGIwPWy2AXhiwUOshkV5i79ngljWt7P0umIJ7w/lbC + Q4HRG1Opuw4wlAPTscLeHdN1shQJhDm4pL14nykYOKY3wBzrmlJ30N3+UIlJyq+RSgHcbPZUPNjS + QDZK8FomHoAdONeQqwqEhuW8AeHuCfwUgGdzOaxN+2f91gnY3Vd7huwtHxXOJoLIB7K70bwAaL9s + sN0jtrcuX5rF2Kl21W7PLUa7ft6AsrEYveEKLJ0XXHEbwAeuNBZjgyqfRxWdj2lLvRxUOT9d3Wrc + f1Rx69egyt6hCi6dD1QpN0CDKi8YVWZXcc2IjzTrnc5hicqQ454vZgtujLM+ZZdYjD7pYKs2jX16 + KfD8qFQScVitrHNG16+rgM9Zp10JfNwCfBZ8LIU9hjX+TbL3IhEgZmEQY1VkmGUrZxF51QRmpSIc + oFSk6MMyFER3m6HxV/pr44rE0HmqAhVgVlehBa4PJuSaJJ06h7/TPNJMxeERY+xjCv/95rqH7zWV + E6gkFaY7DVWKabWYyDKVHWD9yZEq4tBk8+oVGSa+QgzLMNkVVQ44YMMYRiTw0dcwAaElFjrAbFl/ + T4TWIKWNE06F+h9fRXk+/Pb4eDQaHRkKHcFWPbbtUMgDFcR3ufrr/27/lMH/boxwQ8xrn9tmf30/ + /t/tk9+AXN/Cv/MxAlf6OCniXOqAx+JWywQLuqCH8Vb1ABgyoDx8z4MAFJ+Mfjn++ugb2l5PVIR5 + Gt5CteFVVypYBuzigtBmVn+wO9DxV61ibjbBkk+1lqfO23W4dXmf5oNIzCcPTG14D9P1znK3eTFn + EcwIiPpFnM2T4V98c7db86eb0tLXXGJ96/zkjqDPqG8+b0gPRYGK41MmCHsv1dG1FsPKAh8KaQmK + FRTSV79FP/6/9yoWWPbKFID5QcQxffheAq36FH//eYXVjbbRWOcoWPunsW7KSTJfY70s8rtH2nwL + NdY43vV1HDemicoqe7A/ugURppK22lpdW517A/Ych7GSujrNLpvRV9/EsTlOlVipC/83HApYE5vy + /ujoiNL156boAbzFtmC8z2U69+S7kl7lVmZWnbLsUUt16gsp5hd4HTdsH3Fd/2vj7ZruH2AVL2jr + NnUFtLV91QZN3dy84ul5g6e+8TS6LAbGub4QT+/OiO47xNNnHqCbAjb992/e/3RyQhZzFUjtXJxV + g9SnGftX9wBtHlKvMWk6mqjRuCyrkxe9nqsnCXPSGE5loqx+DcN4zG7AfNC9MXzxHftDmDznNlE6 + dcFjFmZ8VFaexO1mUQge8YTClqlqicLbJ3ID3JsFbuAuH8Bdio4GuJcDd2MIewfuTh70O4lJ4LoY + u+UFWYN1wu4g4kWAJTg+FYaPq2D3+f5mSLx2FfaATdCROjaFRwBcUpipJ5i1619PmF1KkAYSNwuJ + wAleINHtyAYSG0h8tu22C4mDYb9taiMvxsOzrSZHfPXu1z9ub3749XcSV0th8RcgoI44iOJWixIp + VcPFiokS1d2p8aJbYDzcpZ/4/aSgLQzUoEDOejDRARpYCe/LgIVFKCjt33imla2dJXIU73SOqwWe + U+IQ6NR5ZOuP0WOmihZ2M6n7VaCQZCmIObxnRNzlAYcN39USh+tE/g2hvhN/jPgbDPWYShEDOEYq + NuV0GoXgzEv6xlIU+VAILJm/QB8gC6AO+sDhvju3t43586TwYqCPLskxvDWg9x4039mDq1ibq3rm + 1s9f0PxeVD37AljZQJTSmsACS+cFWJqrWCvASmNmguyLstH9HJaoDDnu+WLW88rbvUFPfebUVAwe + SDZuCYDs00uxR8QykSkVVYbHuM4prrgSCJ1UAyG3EA6E2jieeSBkKe3TyrzusVD2bCCxZiqTfSAG + ZpPAEBoYOlanzjKBPBKykcwjaK81neuBlKMIXywojTGwriF8SdHC8LtJTBEWFOcLCwBGjRYPLMxg + /Q7MeaIu+n0BVDcngNgPyNAizqkLE/OJ0ZMLuwGbTCV4aIixyTZPBT6Wghw6MCPGrygTPn2KZB/D + lKenDWRV9uASKK6FaWheBLycgaz3VWvAbQm31rUyghvuWJk7XqrG5PpfW19CaXdMMM6z8W2uQKQO + cckA6GMsCpaK0a27v3ALAI0XB4TRmWBreNGZnLz2oTO50XhWmtzcvKpN7T1Xm1bVjHZjjIvBSzPG + K+pBuzDG7dWrTRjjdv38GeNurC8VWnZnjMPS7R2wNMZ4TVBldhXXNMY3BTnu+WLGGO/zUYsovhh9 + wsEnEoxbQh/79FLg+V3xDCTTe57w70EdJE6sAD+nFQrFkgQPunKmOM9C/LFE9mmHfwAj5L9v6HoL + 3mnReEgXKRWD4aPUf+ARoz0ovAJ7BMungjUEI+1nPGEBvBTML3Pq2MsEXiie6sKcLxoDCiwq86xM + WUKnj/yIXdP3FJJLxpkMhevbl9Fruc8RtlZGb12X4qWqAa7/bSsBwIM+lIBSDPlQAtxoPGsBbm6N + HuDazdEDtg3188TuYnwPCkoCUyd8X9uwPL1YvUQD4cvwtGfqAbtAroXQvjkEv7a5MDQfM5m/Bime + MpnAzgykxqsyMC3kvyP2TuSYbRlDgmSPXQNmYLqXIAaVx/g8iyEgQFdC07dFEAMEQE99oRKRZ2OT + 9QOhyMQJm2TNApNCU3wRRRuZ4GHVY6NIpPRNZDrHHM9ZyF673o5es5tPBdAPRxuWuaZZV6GDE92n + eJNWxlhIlh6fDAi4NxUAWPASgCgYA2eaunJNH8aH1OYAG8Acy8TXZrRsqGSaY2O6uAvv4yxQCskO + lGJD2CTGd4zDNySaeIztdSH7mB32EfvTNGWvH5VKAFdfY/fl7zRFonoOVBwKOvIhfIbxHDCtcKCp + QEc23mfCO0k8HlgK20ESsR+gu6mxmlTmb+BNKcf8DiyR/ShnMNFIjVjXxIvBsgYRqI8aqG7mRWsD + b3yyNKb9a/xlkMLz8K+OkLGQAl0TRUY92jTdMjeJMNA7b14BOggTsBT0LY3tGgteCsL7GN5eLjNd + xcrRtz21sCPUb0D3MatJOV9e53P1wIo6n5VI3vwlsxsQvzPJZirtxMlj292Sk/eWe3Py1d5s0mnq + rbxbJw/ZbTs18S3t36eatdWt7Rcb2tqTaZkHp6b5fLNPU3KdXb98Rl8qEKZG9/xV5nM9zBL31Tp2 + ye7ckyApvVgmTo3aY8tkC/7JvS+qWm/DhF+ebNMw8X/sBRZ/NevkkxympVzBfnAcfo2TTZ572QX0 + psc1517egAWWzguwuB3gA1iac68GVlaAlavOVv1dW4CVdsUkd+HwgiIJ9xRW7AI2sLJ/sAJL5wVW + 3A5oYKWBlR3ByvkFkXpbsGKf9oMo7YvVK8yYAAn47zSizDCNH0T5U/CIBbAVGXqd0BeF7lz0oRm3 + ncafyK1K967Z+xs8P3/PMc05xnWjizUZs27G4euu6PMU+4iKDH2GHEdjnJG0XJvwalsG8QZb2yVI + rbHRfbVf4AgM4gMcy83sAxzdaPYfHU/2HB1nl7GWwYanZ3fhp+R0SLtrIZB2HguS8zUC0neSJz8B + boqMuKISlFZNLZOdX5ikdBZKT3Ek86DU0thnrCFByvXrkEnMYoIVPXK674RXqXJEB9imIzzyBMT4 + H54GqrjHm05pyOD9bMRTagSYgZU9ctZXdNYWYRGMIs0BZzRTIBiO2A1iEx37/cDjPs/GcwF3nkJW + EYQtczna1Sqc0FAb/zYnZrsge61h/QtMXtf/tjEd+M0LpvvMErMlTHdz84rqp3uO6tsG7nkidglU + d3vbhGr/rtT2WUW0PntMZk7otmD4btKVahfQm03auFL9IUu35wVZ3A7wgSwvxpXaGIsbxBz3fDFj + LKowMBRfDD/tcKsnefbppcjzQ8STrgDueRtEiviwCvq0K6LPp2zULYUP9oNjmYc+lsTebUVyEJrQ + RzRFgoinfTA7Ciw4iXGk8CvlqTxg1yYvhwxAxKFrsVsY6c90xIfiOOZjDF80uTSoUKUVggc2OhKD + DXMqIllk95iSgyJ6eRgyDfTCXnnMdDHEjX3EZDgA+8hG2dqw2xRNK4EvN6HPNCCwpYDs5OoEsysU + HL2iXSxLeX5SZgGRmuGewZ+GOCoKqXSxpwVGDkcAqGbGgoHCMh1fWoZQws9vemBQmlha2U/ZVz2U + YxjK+ucHhsUt9bfs+BgJUbCjrji+SE/PP/1P593gqvNd/tfW+enXR+w6f43lrRgHgqhYlOlIcky8 + kikOlAfjDyuLYgBwLCOlwgNaHK3MwqRihITCXCiWckIfmABlQ/gipQQtPP4L2Zh5BOK2b9fakB2j + UYVgRYqxqeg8TkGiu1Qsrtqn6vW0yGkoCfB+BjIdyJ3CS8Eizb1lzbFCwu2A+ln829szWPJ0s/vm + qVb3JHh4X7eUIZfxwbyIvfVsoV6I+u3637byDULFi/LtFAAfyrcbjWft283Nq/7dhDJUU7Hn4ehi + vbqVkFa5Lb16C26dk9XjGabJ/lm9enPq8ya9Onb9Gq/OurCyO68OLJ0XYHEbwAewvBivzr6jyuwq + 1tKrE/KrhPwiS9DHFGXbFvrYp5cCD06/w8OISl9UA56LlYGHZHdSZOel4MF+cBzzkMeS16dH52dF + VhvGkeFlT7LRFMvEIcw0NFdXr18nLBYafpDQ27ExarTqiuyI/cDN9eW3767PnOGWCJ7mMhG+yqJa + 3nHEqZWxvwo5saUxPNek60tFZNf/1vFYxn7w2MoFH3jsRuMZkN3cGkh27eZA8rZRd54MXQy1J+1O + 3aB2bRuvddmpBrUxFzN1yRcm198cov4RqbnIVxHl7LJ5s+9wmLUGEvfVOkiyO9sOls0HlpSMv8dY + sgXjbt9TlM8uYy2Nu7s0kuY8ehHiZOMsIoG4O8RxY5pAznul0t9AKNyolKo9V0Kd84qo0x9dUARy + iTq7tPDe3gtKKRoKPQBZykbQ0ZDjcRVmfkpg/vEYM4yCTDtieLz3kxRxqPGUrp+B8MbDLDBceA7/ + 2vSllGsKOUpkQC1zqJWpIZ7nHbCu4EGE5UF65ZfsWsfQSB+xtw9Dnmo6AqRvDqbClbGbDLbYmEUy + jk2ushvFuGaxwsRKOfyrBtqM1SaAwnO4BGylhIfCnPDn5uQNi4s8CHjjO5kWD+w9Jq7CB/67C68r + KJ0rZ32lQhZEhcnFlVM1D5QdlJnLkQnGiA8alcUYYsB3GWaBChnv4vFbkNO7/yaCAR52pgDamv3f + 3+AtoXsLntzlSnk6AHdbzrFTrWziagz4VCWZPW2uDW8uH2Y1tl3e1844evmwVmH2Z12Yz/XQL/fP + UYG73Ity6fBtj5VLNze/6mXjqaimQs5DtsV640Ox1SIE/o+kWxVuGuz/kbRbP28ui+ZI2huywNJ5 + QZbmosEKsLLvqDK7irX0WpxfyciY5IvR54xOfreFPvbppcDz5p14KPSv0d+4/GXM6Q5aJfipkIqy + EvxYGvv0WmB8rimqIifZiRklWqYQY/wyBTMDzR4NA0HjY4QzwgNVMHZcuPARe5OKIMQ9NJWN+RqI + IIdDQUHDSaGjTKlEw9eaj8qIZCcg6TG0biTGXWO+bsEzzQTVGbVpxlMzWmx3j0VJA9VP5aPAYF+R + oC2oiyA6wrNfbBaCSWhSK+cY4EwXtzlaeKbupch8uQksj7v1q5Wb4N98xV+qTuP637pGcxZ60Wh8 + Jjd1o/Gs0ri5NUqNazdHqdm23jJPui9WVkYFJffclrKyBVP5tOIZixzcU8HVLZ7sz0zuKTpXRGK7 + gP5sZTfWl4oru7OVYen8IItHL+yLsZWbE/4NYo57vpixlTuj05TIugR+tlus3D69/IT/pyIdSCJL + NdxZ3UVLkvtumMtS7GA/lziKecBjqevVSgYLIhGYjICqC6HBhCecYCyBfJdhATYNXg4NMzVkERgz + aEiZPeusIry8q4pcY2lRG2dMuUGhCaUbAxsrlZhN9BqTjmn4KLRKjEDavH1q+cpRrl726a5o/VIR + 3PW/dfz2U+69lCQ+8NuNxjOAu7l5hfDWZYPhvjH8UmdDMXg0sc8LYfz+cdfpzJ/D+H/y9LFfVMfx + dsVy70+TurVn+GvOcvvE8fdjjGdKw0RRpodephKCh+9j2KPsJxPZBEjxMwrFdMyATSKurbtR6iP2 + A2zgAgN7nKTD4KV7KmxpgpcEBmFp3OzkLDUCko1sEnGs8PgwBBmA/tGM3UsxEiGFVjnc4gzkq4kP + /APmnswOGN9wfWCTWdCrwoyP8MYSRQfhz6VvFV21sPggmo7Kvu+xumQ0xpgwYKY4NI5buj6FDbTC + UuoJYePPk9dqUyaRY0NAYxh4PlI2XYhtb6KtaLLOu+ySa5hwwSlXs86LcMxSlWLuFLyY5csLb7dd + LbWc/eHEp1rRbHjai2HS5dNczr/PHm40xy/SHGHjetEcHXY1muNyzbG97ykZt60czgOrJerg+IWl + hKmsFJ7I1sx1wYU64eZUv00G4NkF9Heo0ATgeYOWsZecMF6h5cUcKuw7rMyuYi0dEmedhyi7u3qk + zbUQgYp+h2TjlhDIPr0UfH4DVb+bSZIKVbDn5Gp/g+/+iExNMZOFlG5EdTMVABklewCrpYilsY7A + HALahN+hXWISbx4fw9TwVhMw+XH79LxzegyM9oitj0cRzw+h38NIBINDqQ/BuOSpgBkfggV0GKnR + YagOx6o4DJSCBjlJxKeYOE+nqYiTls0cJWtlgFen/VMsnrUQzQfOIhDL8FYfq+Tm4aVvMzs+PZmX + p3e4/retdcBG8KF1lLLPh9bhRuNZ7XBz86p4tP71L2zYFXh51fb1r3/9f++it/4DKAMA + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '19032' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:15:56 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=krbaimkecdoqerqmfo.0.1630959355834.Z0FBQUFBQmhObmI4RERPLVpBU19mMzVyWFpid2ltY29qZ3V5a19XZGZPeDZIby1xVW9nQ2d2eTRyY2dJai1uM2hSZ01fNWlaenpWdk8wTGFFWmVXcGNoUm1QajMzVGtWZ2tEenFSRDVKamlHd1pSRDdScHJiajVzUDBqdm45UkZQbTNPYVJrVWp0c04; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 22:15:56 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '298' + x-ratelimit-reset: + - '245' + x-ratelimit-used: + - '2' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=scBYYXYbviwHs3HrM9; loid=0000000000edkcdvnr.2.1630959355267.Z0FBQUFBQmhObmI3dlYzVktBdWRhMi0yZloyRnhkNV93ZFY5eS1YMjNNRi1tSUJjWC01SER6SmN3R0RrVGdYcGN5WExXRUtQcEtsNWdwQXQyeXQyUUN1UmN0Z2xyRkNYcHExV2xTeEZqM004MUQ5RV9CNVoyYUpkVHVIOU1GRFhHcm94ZjU3dERJdUM; + session_tracker=krbaimkecdoqerqmfo.0.1630959355834.Z0FBQUFBQmhObmI4RERPLVpBU19mMzVyWFpid2ltY29qZ3V5a19XZGZPeDZIby1xVW9nQ2d2eTRyY2dJai1uM2hSZ01fNWlaenpWdk8wTGFFWmVXcGNoUm1QajMzVGtWZ2tEenFSRDVKamlHd1pSRDdScHJiajVzUDBqdm45UkZQbTNPYVJrVWp0c04 + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t1_g7d2dch%2Ct1_g7d2bvm%2Ct1_g7d2bae%2Ct1_g7d2b7v%2Ct1_g7d2a19%2Ct1_g7d28l7%2Ct1_g7d285v%2Ct1_g7d24m3%2Ct1_g7d24dm%2Ct1_g7d23wn%2Ct1_g7d23js%2Ct1_g7d23es%2Ct1_g7d2319%2Ct1_g7d22q2%2Ct1_g7d2225%2Ct1_g7d21ka%2Ct1_g7d21k6%2Ct1_g7d219q%2Ct1_g7d210j%2Ct1_g7d20hx%2Ct1_g7d205g%2Ct1_g7d204v%2Ct1_g7d1zlo%2Ct1_g7d1zks%2Ct1_g7d1zj6%2Ct1_g7d1z4e%2Ct1_g7d1z17%2Ct1_g7d1yfo%2Ct1_g7d1x10%2Ct1_g7d1w0x%2Ct1_g7d1rz3%2Ct1_g7d1ryp%2Ct1_g7d1rfk%2Ct1_g7d1qx0%2Ct1_g7d1qw1%2Ct1_g7d1quh%2Ct1_g7d1kge%2Ct1_g7d1jpg%2Ct1_g7d1jlt%2Ct1_g7d1j3p%2Ct1_g7d1iv4%2Ct1_g7d1ilc%2Ct1_g7d1iej%2Ct1_g7d1i32%2Ct1_g7d1hdo%2Ct1_g7d1h6w%2Ct1_g7d1gmh%2Ct1_g7d1g45%2Ct1_g7d1g1j%2Ct1_g7d1efy%2Ct1_g7d1eby%2Ct1_g7d1cbl%2Ct1_g7d1c1w%2Ct1_g7d1bno%2Ct1_g7d1bgt%2Ct1_g7d1auq%2Ct1_g7d1a8w%2Ct1_g7d18a7%2Ct1_g7d179v%2Ct1_g7d16xt%2Ct1_g7d16tm%2Ct1_g7d15hy%2Ct1_g7d14ub%2Ct1_g7d146i%2Ct1_g7d13xe%2Ct1_g7d13p2%2Ct1_g7d10ok%2Ct1_g7d0zz2%2Ct1_g7d0zl9%2Ct1_g7d0yat%2Ct1_g7d0xzi%2Ct1_g7d0sp0%2Ct1_g7d0rue%2Ct1_g7d0obr%2Ct1_g7d0mwa%2Ct1_g7d0m4w%2Ct1_g7d0kx2%2Ct1_g7d0kvw%2Ct1_g7d0jmr%2Ct1_g7d0hw8%2Ct1_g7d0gn4%2Ct1_g7d0gf1%2Ct1_g7d0gc6%2Ct1_g7d0g9m%2Ct1_g7d0elw%2Ct1_g7d0bpv%2Ct1_g7d08rw%2Ct1_g7d06uf%2Ct1_g7d06os%2Ct1_g7d05k1%2Ct1_g7d05eo%2Ct1_g7d0545%2Ct1_g7d03w1%2Ct1_g7d02rf%2Ct1_g7d02aa%2Ct1_g7d029y%2Ct1_g7d01c4%2Ct1_g7d00mo%2Ct1_g7czxr2%2Ct1_g7czxjd&raw_json=1 + response: + body: + string: !!binary | + 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 + j2395z//H6j6dZJNGAMA + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '18768' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:15:56 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=krbaimkecdoqerqmfo.0.1630959356258.Z0FBQUFBQmhObmI4bGxhWmlMOXFfNGs1alZnUDU0Y1h0N3JtZkdJVUpvZnhjQWtZb1B5dVJfY1lzLU1Sei1HeHBnX0dSUmNKVkgxUnNmLXRXUDVCZnJQUkw2TmhMdmd4OTlObjItUjNha0pvMXV6TlBxVkRxRmV4blduNUVVMjFBZ3pEWmpGQ3FXLXU; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 22:15:56 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '297' + x-ratelimit-reset: + - '244' + x-ratelimit-used: + - '3' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=scBYYXYbviwHs3HrM9; loid=0000000000edkcdvnr.2.1630959355267.Z0FBQUFBQmhObmI3dlYzVktBdWRhMi0yZloyRnhkNV93ZFY5eS1YMjNNRi1tSUJjWC01SER6SmN3R0RrVGdYcGN5WExXRUtQcEtsNWdwQXQyeXQyUUN1UmN0Z2xyRkNYcHExV2xTeEZqM004MUQ5RV9CNVoyYUpkVHVIOU1GRFhHcm94ZjU3dERJdUM; + session_tracker=krbaimkecdoqerqmfo.0.1630959356258.Z0FBQUFBQmhObmI4bGxhWmlMOXFfNGs1alZnUDU0Y1h0N3JtZkdJVUpvZnhjQWtZb1B5dVJfY1lzLU1Sei1HeHBnX0dSUmNKVkgxUnNmLXRXUDVCZnJQUkw2TmhMdmd4OTlObjItUjNha0pvMXV6TlBxVkRxRmV4blduNUVVMjFBZ3pEWmpGQ3FXLXU + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t1_gju4jls%2Ct1_gju4jd7%2Ct1_gju4j2l%2Ct1_gju4ior%2Ct1_gju4i9s%2Ct1_gju4i9v%2Ct1_gju4hb2%2Ct1_gju4gvf%2Ct1_gju4ffw%2Ct1_gju4f7w%2Ct1_gju4eia%2Ct1_gju4ehe%2Ct1_gju4eh1%2Ct1_gju4e3x%2Ct1_gju4dj3%2Ct1_gju4d65%2Ct1_gju4bm2%2Ct1_gju4azt%2Ct1_gju4aka%2Ct1_gju4adi%2Ct1_gju4a2a%2Ct1_gju49x3%2Ct1_gju49sy%2Ct1_gju49gc%2Ct1_gju49g3%2Ct1_gju48xt%2Ct1_gju48vl%2Ct1_gju48vf%2Ct1_gju48va%2Ct1_gju47uf%2Ct1_gju47cu%2Ct1_gju45sa%2Ct1_gju45q4%2Ct1_gju45p3%2Ct1_gju45ek%2Ct1_gju44o7%2Ct1_gju44ac%2Ct1_gju43ts%2Ct1_gju43t9%2Ct1_gju431d%2Ct1_gju42y2%2Ct1_gju42di%2Ct1_gju41sw%2Ct1_gju412c%2Ct1_gju3zw8%2Ct1_gju3zs8%2Ct1_gju3yy9%2Ct1_gju3ypi%2Ct1_gju3y6x%2Ct1_gju3xq5%2Ct1_gju3xlk%2Ct1_gju3wxt%2Ct1_gju3whf%2Ct1_gju3wgz%2Ct1_gju3wd0%2Ct1_gju3vxe%2Ct1_gju3u5s%2Ct1_gju3twa%2Ct1_gju3tud%2Ct1_gju3tf6%2Ct1_gju3ten%2Ct1_gju3spx%2Ct1_gju3s2n%2Ct1_gju3rtt%2Ct1_gju3rpb%2Ct1_gju3re6%2Ct1_gju3r5i%2Ct1_gju3r1l%2Ct1_gju3qsy%2Ct1_gju3qs1%2Ct1_gju3qrp%2Ct1_gju3p92%2Ct1_gju3nt3%2Ct1_gju3naq%2Ct1_gju3mc5%2Ct1_gju3mar%2Ct1_gju3lkg%2Ct1_gju3lhs%2Ct1_gju3la9%2Ct1_gju3l25%2Ct1_gju3j9x%2Ct1_gju3j1x%2Ct1_gju3j0n%2Ct1_gju3igs%2Ct1_gju3hgd%2Ct1_gju3hfz%2Ct1_gju3hep%2Ct1_gju3hbx%2Ct1_gju3fxt%2Ct1_gju3eyk%2Ct1_gju3er0%2Ct1_gju3ek1%2Ct1_gju3eej%2Ct1_gju3e76%2Ct1_gju3dyr%2Ct1_gju3dqc%2Ct1_gju3d89%2Ct1_gju3d2x%2Ct1_gju3c8s%2Ct1_gju3bwd&raw_json=1 + response: + body: + string: !!binary | + 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 + IRvreY9l/etf/w+q0ObIq6QCAA== + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '9595' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:15:56 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=krbaimkecdoqerqmfo.0.1630959356642.Z0FBQUFBQmhObmI4cXJvM3JUejJvQWhCcHR2bXo5ajhsYjRYVm8xR1NUaHdsWUs0RS13X0hwMFZBVERRdlozd1E1YXV1Q21GdDJHbjExVEpIM3hpZHZDWkNJUGhtZEZPNHppTHdURkk0ak4tUU8yclhNeVRGRmRMeEpJcE1YbWJOdnQ1ZjRIbG8zcDM; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 22:15:56 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '296' + x-ratelimit-reset: + - '244' + x-ratelimit-used: + - '4' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=scBYYXYbviwHs3HrM9; loid=0000000000edkcdvnr.2.1630959355267.Z0FBQUFBQmhObmI3dlYzVktBdWRhMi0yZloyRnhkNV93ZFY5eS1YMjNNRi1tSUJjWC01SER6SmN3R0RrVGdYcGN5WExXRUtQcEtsNWdwQXQyeXQyUUN1UmN0Z2xyRkNYcHExV2xTeEZqM004MUQ5RV9CNVoyYUpkVHVIOU1GRFhHcm94ZjU3dERJdUM; + session_tracker=krbaimkecdoqerqmfo.0.1630959356642.Z0FBQUFBQmhObmI4cXJvM3JUejJvQWhCcHR2bXo5ajhsYjRYVm8xR1NUaHdsWUs0RS13X0hwMFZBVERRdlozd1E1YXV1Q21GdDJHbjExVEpIM3hpZHZDWkNJUGhtZEZPNHppTHdURkk0ak4tUU8yclhNeVRGRmRMeEpJcE1YbWJOdnQ1ZjRIbG8zcDM + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t1_gonwmny%2Ct1_gonwm5w%2Ct1_gonwlpp%2Ct1_gonwk91%2Ct1_gonwi2n%2Ct1_gonwhl6%2Ct1_gonweib%2Ct1_gonwdwk%2Ct1_gonwczr%2Ct1_gonw90k%2Ct1_gonw4kk%2Ct1_gonw46r%2Ct1_gonw35o%2Ct1_gonvzmq%2Ct1_gonvyzk%2Ct1_gonvxlr%2Ct1_gonvw4w%2Ct1_gonvuuk%2Ct1_gonvu4i%2Ct1_gonvsk7%2Ct1_gonvras%2Ct1_gonvq10%2Ct1_gonvplf%2Ct1_gonvnke%2Ct1_gonvm23%2Ct1_gonvm07%2Ct1_gonvl7o%2Ct1_gonvktd%2Ct1_gonvj3k%2Ct1_gonvitm%2Ct1_gonvfng%2Ct1_gonvd8n%2Ct1_gonvcyb%2Ct1_gonvb25%2Ct1_gonvanj%2Ct1_gonv96z%2Ct1_gonv8qs%2Ct1_gonv5zk%2Ct1_gonv47b%2Ct1_gonv2vs%2Ct1_gonv24a%2Ct1_gonv1op%2Ct1_gonv1kk%2Ct1_gonv0u5%2Ct1_gonuzrq%2Ct1_gonuwhp%2Ct1_gonuweh%2Ct1_gonuw67%2Ct1_gonuvza%2Ct1_gonuu14%2Ct1_gonut0e%2Ct1_gonusft%2Ct1_gonusci%2Ct1_gonuqq1%2Ct1_gonuqir%2Ct1_gonunup%2Ct1_gonumyc%2Ct1_gonukr2%2Ct1_gonui1s%2Ct1_gonuh2j%2Ct1_gonugfa%2Ct1_gonufr0%2Ct1_gonufdj%2Ct1_gonuen3%2Ct1_gonudyz%2Ct1_gonud5q%2Ct1_gonucoi%2Ct1_gonucdl%2Ct1_gonuc82%2Ct1_gonubu5%2Ct1_gonubr5%2Ct1_gonuah0%2Ct1_gonu9x5%2Ct1_gonu9ah%2Ct1_gonu6l3%2Ct1_gonu6kv%2Ct1_gonu6jf%2Ct1_gonu594%2Ct1_gonu23j%2Ct1_gonu1l1%2Ct1_gonu1kv%2Ct1_gonu1df%2Ct1_gonu0h7%2Ct1_gonu0el%2Ct1_gontzs9%2Ct1_gontyfm%2Ct1_gonty7l%2Ct1_gontwir%2Ct1_gontuxq%2Ct1_gontund%2Ct1_gontuf4%2Ct1_gontt3p%2Ct1_gontsrp%2Ct1_gontsr7%2Ct1_gonts3a%2Ct1_gontrni%2Ct1_gontr7b%2Ct1_gontpkl%2Ct1_gontpfh%2Ct1_gontp0f&raw_json=1 + response: + body: + string: !!binary | + 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 + LtNiF1cGAwA= + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '17678' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:15:57 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=krbaimkecdoqerqmfo.0.1630959357019.Z0FBQUFBQmhObmI5YmpKM2FfZmNwVUpMMDNzeWVmNGZUNnVwNmQ0YzlTNzNvZHpuUGdYMkliRE5rNE5jSzVzenp2S2xSYWRjN3VKM0VqcmJxeC1oZUI1Z05sMHpaLW5Qa2h5dnNJdm5faVhrMUJSSU5TbDFkWlBocXVpMjg1emdIWU5lNU12SXBYNXY; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 22:15:57 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '295' + x-ratelimit-reset: + - '243' + x-ratelimit-used: + - '5' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=scBYYXYbviwHs3HrM9; loid=0000000000edkcdvnr.2.1630959355267.Z0FBQUFBQmhObmI3dlYzVktBdWRhMi0yZloyRnhkNV93ZFY5eS1YMjNNRi1tSUJjWC01SER6SmN3R0RrVGdYcGN5WExXRUtQcEtsNWdwQXQyeXQyUUN1UmN0Z2xyRkNYcHExV2xTeEZqM004MUQ5RV9CNVoyYUpkVHVIOU1GRFhHcm94ZjU3dERJdUM; + session_tracker=krbaimkecdoqerqmfo.0.1630959357019.Z0FBQUFBQmhObmI5YmpKM2FfZmNwVUpMMDNzeWVmNGZUNnVwNmQ0YzlTNzNvZHpuUGdYMkliRE5rNE5jSzVzenp2S2xSYWRjN3VKM0VqcmJxeC1oZUI1Z05sMHpaLW5Qa2h5dnNJdm5faVhrMUJSSU5TbDFkWlBocXVpMjg1emdIWU5lNU12SXBYNXY + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t1_gt5btvv%2Ct1_gt5bt15%2Ct1_gt5bsah%2Ct1_gt5bs62%2Ct1_gt5bs1t%2Ct1_gt5brxw%2Ct1_gt5brfy%2Ct1_gt5br17%2Ct1_gt5bpvb%2Ct1_gt5bpub%2Ct1_gt5boqc%2Ct1_gt5bokc%2Ct1_gt5bnt7%2Ct1_gt5bmmb%2Ct1_gt5bm1n%2Ct1_gt5blgn%2Ct1_gt5bl1v%2Ct1_gt5bkm4%2Ct1_gt5bkak%2Ct1_gt5bk35%2Ct1_gt5bjel%2Ct1_gt5bj6j%2Ct1_gt5bitv%2Ct1_gt5bit2%2Ct1_gt5bir5%2Ct1_gt5bilm%2Ct1_gt5bijl%2Ct1_gt5biid%2Ct1_gt5bhql%2Ct1_gt5bh33%2Ct1_gt5bh0v%2Ct1_gt5bgck%2Ct1_gt5bfc8%2Ct1_gt5bfau%2Ct1_gt5be0j%2Ct1_gt5bcnp%2Ct1_gt5bc04%2Ct1_gt5bbz8%2Ct1_gt5bb2q%2Ct1_gt5baua%2Ct1_gt5bata%2Ct1_gt5b9fx%2Ct1_gt5b8fz%2Ct1_gt5b8cj%2Ct1_gt5b811%2Ct1_gt5b7r5%2Ct1_gt5b6qg%2Ct1_gt5b66e%2Ct1_gt5b63y%2Ct1_gt5b62h%2Ct1_gt5b604%2Ct1_gt5b58s%2Ct1_gt5b3xq%2Ct1_gt5b3jp%2Ct1_gt5b2xx%2Ct1_gt5b2k2%2Ct1_gt5b1fc%2Ct1_gt5b059%2Ct1_gt5azn4%2Ct1_gt5azio%2Ct1_gt5ayw8%2Ct1_gt5ay1a%2Ct1_gt5ax9t%2Ct1_gt5ax7d%2Ct1_gt5awss%2Ct1_gt5aw4k%2Ct1_gt5avkz%2Ct1_gt5atei%2Ct1_gt5as5y%2Ct1_gt5artm%2Ct1_gt5arij%2Ct1_gt5aqwc%2Ct1_gt5aquo%2Ct1_gt5aqoo%2Ct1_gt5aqnp%2Ct1_gt5aq7h%2Ct1_gt5aq1k%2Ct1_gt5aoyx%2Ct1_gt5aotm%2Ct1_gt5ao4h%2Ct1_gt5anwd%2Ct1_gt5amta%2Ct1_gt5alux%2Ct1_gt5ajt8%2Ct1_gt5ajke%2Ct1_gt5ajan%2Ct1_gt5aj5o%2Ct1_gt5aiv0%2Ct1_gt5ai6t%2Ct1_gt5ai4q%2Ct1_gt5ahtc%2Ct1_gt5ahe1%2Ct1_gt5ah0a%2Ct1_gt5afad%2Ct1_gt5af18%2Ct1_gt5aeyt%2Ct1_gt5aewf%2Ct1_gt5ael7%2Ct1_gt5ae5o%2Ct1_gt5addt&raw_json=1 + response: + body: + string: !!binary | + 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 + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '16928' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:15:58 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=krbaimkecdoqerqmfo.0.1630959357512.Z0FBQUFBQmhObmItY2RLaVQ5NVhQSG92SXN2eWxaTldaYktZVTFhSzhZY2JyeGhWbGJ5bHVhUlBrLTY3aE1nbmFMYUJqSV9nS1VjLVJOQk9EVkxEc19xaG1lT1BUSzZPLWxXTU04a1VBb3pqaTNBWmlnUTFMOE13NlBvTGlJekNyWmJoT09xUlVlb2I; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 22:15:58 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '294' + x-ratelimit-reset: + - '243' + x-ratelimit-used: + - '6' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=scBYYXYbviwHs3HrM9; loid=0000000000edkcdvnr.2.1630959355267.Z0FBQUFBQmhObmI3dlYzVktBdWRhMi0yZloyRnhkNV93ZFY5eS1YMjNNRi1tSUJjWC01SER6SmN3R0RrVGdYcGN5WExXRUtQcEtsNWdwQXQyeXQyUUN1UmN0Z2xyRkNYcHExV2xTeEZqM004MUQ5RV9CNVoyYUpkVHVIOU1GRFhHcm94ZjU3dERJdUM; + session_tracker=krbaimkecdoqerqmfo.0.1630959357512.Z0FBQUFBQmhObmItY2RLaVQ5NVhQSG92SXN2eWxaTldaYktZVTFhSzhZY2JyeGhWbGJ5bHVhUlBrLTY3aE1nbmFMYUJqSV9nS1VjLVJOQk9EVkxEc19xaG1lT1BUSzZPLWxXTU04a1VBb3pqaTNBWmlnUTFMOE13NlBvTGlJekNyWmJoT09xUlVlb2I + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t1_gxgizz3%2Ct1_gxgiy24%2Ct1_gxgiy03%2Ct1_gxgixm2%2Ct1_gxgix8r%2Ct1_gxgiwzy%2Ct1_gxgiwxn%2Ct1_gxgiwn7%2Ct1_gxgiv2h%2Ct1_gxgiuhl%2Ct1_gxgiuhc%2Ct1_gxgitef%2Ct1_gxgisyy%2Ct1_gxgisj7%2Ct1_gxgireb%2Ct1_gxgir7j%2Ct1_gxgir5h%2Ct1_gxgipw9%2Ct1_gxgipfz%2Ct1_gxgiot0%2Ct1_gxgioka%2Ct1_gxginwy%2Ct1_gxgimvl%2Ct1_gxgimbk%2Ct1_gxgilnh%2Ct1_gxgilhn%2Ct1_gxgikvn%2Ct1_gxgikuz%2Ct1_gxgijg4%2Ct1_gxgij9n%2Ct1_gxgij6c%2Ct1_gxgihvb%2Ct1_gxgigge%2Ct1_gxgidm9%2Ct1_gxgidhh%2Ct1_gxgiddf%2Ct1_gxgic03%2Ct1_gxgibq2%2Ct1_gxgib02%2Ct1_gxgi8g9%2Ct1_gxgi7fi%2Ct1_gxgi5re%2Ct1_gxgi5iz%2Ct1_gxgi56z%2Ct1_gxgi4mj%2Ct1_gxgi2fg%2Ct1_gxgi0o0%2Ct1_gxgi0ik%2Ct1_gxgi0i4%2Ct1_gxgi0hr%2Ct1_gxgi0ca%2Ct1_gxghzx4%2Ct1_gxghzum%2Ct1_gxghzdu%2Ct1_gxghz3s%2Ct1_gxghy1r%2Ct1_gxghxbs%2Ct1_gxghx6r%2Ct1_gxghwv3%2Ct1_gxghwum%2Ct1_gxghwtx%2Ct1_gxghwrx%2Ct1_gxghvna%2Ct1_gxghubh%2Ct1_gxghu2v%2Ct1_gxghsc4%2Ct1_gxghrx9%2Ct1_gxghrp4%2Ct1_gxghrfq%2Ct1_gxghp2u%2Ct1_gxghopd%2Ct1_gxgho4l%2Ct1_gxghn75%2Ct1_gxghmse%2Ct1_gxghmb9%2Ct1_gxghm6c%2Ct1_gxghk9j%2Ct1_gxghk28%2Ct1_gxghk14%2Ct1_gxghjxw%2Ct1_gxghgrh%2Ct1_gxghg2m%2Ct1_gxghb4h%2Ct1_gxghaox%2Ct1_gxgh9n6%2Ct1_gxgh8lf%2Ct1_gxgh6sv%2Ct1_gxgh6qz%2Ct1_gxgh3y8%2Ct1_gxgh3ok%2Ct1_gxgh3h4%2Ct1_gxgh3fg%2Ct1_gxgh3e5%2Ct1_gxgh1u4%2Ct1_gxgh1k9%2Ct1_gxgh0ia%2Ct1_gxggzoo%2Ct1_gxggz2h%2Ct1_gxggy6c%2Ct1_gxggxun&raw_json=1 + response: + body: + string: !!binary | + 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 + Ubjzn//gg47wNePDvv7zn/8PktJZB54WAwA= + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '18152' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:15:58 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=krbaimkecdoqerqmfo.0.1630959358130.Z0FBQUFBQmhObmItbGNveWV5MzNydHFZWk5PX093SWtEUXh1bVRiWWVVWExOZzJCcUdLODNwOHItU3ZEdWFWa0syTlRCS1VIRUpqSjJfTjh3UTVvNzlpaHdwdHVibWFwYXBZT1NLZjBIYk5uMlJqTUN6Z3dsLW9jb1VKa0ZOaGtzTmo5QzRTNElnbk8; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 22:15:58 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '293' + x-ratelimit-reset: + - '242' + x-ratelimit-used: + - '7' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=scBYYXYbviwHs3HrM9; loid=0000000000edkcdvnr.2.1630959355267.Z0FBQUFBQmhObmI3dlYzVktBdWRhMi0yZloyRnhkNV93ZFY5eS1YMjNNRi1tSUJjWC01SER6SmN3R0RrVGdYcGN5WExXRUtQcEtsNWdwQXQyeXQyUUN1UmN0Z2xyRkNYcHExV2xTeEZqM004MUQ5RV9CNVoyYUpkVHVIOU1GRFhHcm94ZjU3dERJdUM; + session_tracker=krbaimkecdoqerqmfo.0.1630959358130.Z0FBQUFBQmhObmItbGNveWV5MzNydHFZWk5PX093SWtEUXh1bVRiWWVVWExOZzJCcUdLODNwOHItU3ZEdWFWa0syTlRCS1VIRUpqSjJfTjh3UTVvNzlpaHdwdHVibWFwYXBZT1NLZjBIYk5uMlJqTUN6Z3dsLW9jb1VKa0ZOaGtzTmo5QzRTNElnbk8 + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t1_h1ql7aq%2Ct1_h1ql72v%2Ct1_h1ql60l%2Ct1_h1ql3om%2Ct1_h1ql191%2Ct1_h1ql110%2Ct1_h1ql10h%2Ct1_h1ql0jw%2Ct1_h1qkyqy%2Ct1_h1qky08%2Ct1_h1qkxzg%2Ct1_h1qkxj8%2Ct1_h1qkw6f%2Ct1_h1qkvim%2Ct1_h1qkufy%2Ct1_h1qkqdy%2Ct1_h1qkq53%2Ct1_h1qkob7%2Ct1_h1qko5q%2Ct1_h1qknwg%2Ct1_h1qknqk%2Ct1_h1qkmi4%2Ct1_h1qkmdx%2Ct1_h1qklkx%2Ct1_h1qkjbt%2Ct1_h1qki9s%2Ct1_h1qki6e%2Ct1_h1qkhph%2Ct1_h1qkg4s%2Ct1_h1qkf38%2Ct1_h1qke95%2Ct1_h1qkd8e%2Ct1_h1qkd6c%2Ct1_h1qkaqm%2Ct1_h1qk9wt%2Ct1_h1qk9ij%2Ct1_h1qk92u%2Ct1_h1qk8s2%2Ct1_h1qk7n4%2Ct1_h1qk69z%2Ct1_h1qk5xy%2Ct1_h1qk3ti%2Ct1_h1qk0h5%2Ct1_h1qk01e%2Ct1_h1qjx4v%2Ct1_h1qjvt8%2Ct1_h1qjv0a%2Ct1_h1qjts2%2Ct1_h1qjtb2%2Ct1_h1qjt2v%2Ct1_h1qjt2a%2Ct1_h1qjrkf%2Ct1_h1qjrhf%2Ct1_h1qjqf6%2Ct1_h1qjp0m%2Ct1_h1qjnzm%2Ct1_h1qjngy%2Ct1_h1qjmyw%2Ct1_h1qjldo%2Ct1_h1qjkm4%2Ct1_h1qjkee%2Ct1_h1qjj9q%2Ct1_h1qjfx8%2Ct1_h1qjfr6%2Ct1_h1qjf0c%2Ct1_h1qjept%2Ct1_h1qjdwq%2Ct1_h1qjdj3%2Ct1_h1qjcfz%2Ct1_h1qjbw1%2Ct1_h1qj8au%2Ct1_h1qj7kc%2Ct1_h1qj5ba%2Ct1_h1qj5b4%2Ct1_h1qj4yl%2Ct1_h1qj4jz%2Ct1_h1qj43y%2Ct1_h1qj3fd%2Ct1_h1qj1or%2Ct1_h1qj129%2Ct1_h1qj04v%2Ct1_h1qj01x%2Ct1_h1qiz7e%2Ct1_h1qiy8l%2Ct1_h1qixgo%2Ct1_h1qivjq%2Ct1_h1qivgb%2Ct1_h1qiuyf%2Ct1_h1qittn%2Ct1_h1qith3%2Ct1_h1qit1r%2Ct1_h1qisu3%2Ct1_h1qir0w%2Ct1_h1qink3%2Ct1_h1qilkk%2Ct1_h1qilb5%2Ct1_h1qil67%2Ct1_h1qikgd%2Ct1_h1qija6%2Ct1_h1qiiuu&raw_json=1 + response: + body: + string: !!binary | + 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 + /w87XFepp2UDAA== + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '23551' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:15:59 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=krbaimkecdoqerqmfo.0.1630959358786.Z0FBQUFBQmhObmJfR2pGM2JnSDB5UndLdzNDMm5Db2E4REExTXRDaEVxUnRUdVVtelZmRVUwc192M2s4SkRFQ0FMcmhia0prY3pQSEowYzJGYzNJb1NVa1NVSnJCWHo5d0JXdDJwbmxLYThtWGViYmZxTGMtaE5uMklTT1hNU1RXMEZqWFlyVWpQam4; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 22:15:59 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '292' + x-ratelimit-reset: + - '242' + x-ratelimit-used: + - '8' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=scBYYXYbviwHs3HrM9; loid=0000000000edkcdvnr.2.1630959355267.Z0FBQUFBQmhObmI3dlYzVktBdWRhMi0yZloyRnhkNV93ZFY5eS1YMjNNRi1tSUJjWC01SER6SmN3R0RrVGdYcGN5WExXRUtQcEtsNWdwQXQyeXQyUUN1UmN0Z2xyRkNYcHExV2xTeEZqM004MUQ5RV9CNVoyYUpkVHVIOU1GRFhHcm94ZjU3dERJdUM; + session_tracker=krbaimkecdoqerqmfo.0.1630959358786.Z0FBQUFBQmhObmJfR2pGM2JnSDB5UndLdzNDMm5Db2E4REExTXRDaEVxUnRUdVVtelZmRVUwc192M2s4SkRFQ0FMcmhia0prY3pQSEowYzJGYzNJb1NVa1NVSnJCWHo5d0JXdDJwbmxLYThtWGViYmZxTGMtaE5uMklTT1hNU1RXMEZqWFlyVWpQam4 + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t1_h5yhouv%2Ct1_h5yho2j%2Ct1_h5yhnln%2Ct1_h5yhkha%2Ct1_h5yhicu%2Ct1_h5yhh04%2Ct1_h5yhfh5%2Ct1_h5yhf2x%2Ct1_h5yhdqu%2Ct1_h5yh7v0%2Ct1_h5yh6yh%2Ct1_h5yh5o9%2Ct1_h5yh0rp%2Ct1_h5ygzhp%2Ct1_h5ygy4z%2Ct1_h5yguqy%2Ct1_h5ygum2%2Ct1_h5ygtlo%2Ct1_h5ygs7n%2Ct1_h5ygq0g%2Ct1_h5ygocz%2Ct1_h5ygniv%2Ct1_h5ygmpe%2Ct1_h5ygmlr%2Ct1_h5ygj9r%2Ct1_h5ygizl%2Ct1_h5ygiis%2Ct1_h5yggx0%2Ct1_h5ygg2m%2Ct1_h5ygfgp%2Ct1_h5ygble%2Ct1_h5yga8n%2Ct1_h5yg8t4%2Ct1_h5yg7it%2Ct1_h5yg5tx%2Ct1_h5yg4oy%2Ct1_h5yg3sj%2Ct1_h5yg39i%2Ct1_h5yg2r6%2Ct1_h5yg0q3%2Ct1_h5yfvov%2Ct1_h5yfrtk%2Ct1_h5yfrmi%2Ct1_h5yfqso%2Ct1_h5yfp5a%2Ct1_h5yfl93%2Ct1_h5yfl0r%2Ct1_h5yfjot%2Ct1_h5yfimx%2Ct1_h5yfhw3%2Ct1_h5yff4t%2Ct1_h5yfef1%2Ct1_h5yfd0s%2Ct1_h5yfcre%2Ct1_h5yfcl3%2Ct1_h5yfbhj%2Ct1_h5yfb7c%2Ct1_h5yf85d%2Ct1_h5yf7n9%2Ct1_h5yf3my%2Ct1_h5yf322%2Ct1_h5yf2to%2Ct1_h5yf2pk%2Ct1_h5yf229%2Ct1_h5yevy4%2Ct1_h5yevng%2Ct1_h5yeu2k%2Ct1_h5yescn%2Ct1_h5yepyw%2Ct1_h5yepqe%2Ct1_h5yeozk%2Ct1_h5yenxt%2Ct1_h5yemlf%2Ct1_h5yem3h%2Ct1_h5yeka6%2Ct1_h5yehlg%2Ct1_h5yehe9%2Ct1_h5yehdf%2Ct1_h5yeffz%2Ct1_h5yedk5%2Ct1_h5yecbm%2Ct1_h5yebbe%2Ct1_h5ye92w%2Ct1_h5ye4a5%2Ct1_h5ye42s%2Ct1_h5ydzzb%2Ct1_h5ydytb%2Ct1_h5ydylq%2Ct1_h5ydyf5%2Ct1_h5ydxpv%2Ct1_h5ydwpq%2Ct1_h5ydw7t%2Ct1_h5ydw7h%2Ct1_h5ydv48%2Ct1_h5ydupc%2Ct1_h5ydu5f%2Ct1_h5ydt6j%2Ct1_h5ydr46%2Ct1_h5ydq0l%2Ct1_h5ydpi6&raw_json=1 + response: + body: + string: !!binary | + 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 + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '17492' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:15:59 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=krbaimkecdoqerqmfo.0.1630959359407.Z0FBQUFBQmhObmJfSE5KNkpRa3NHekstR0ppQjhpbUJfVkVySmR2YUdNWVh5VGZSUC1IcHdrSXRrbDZjRlVIUEdvYkRjdHNEQndLZ2t4VEp1WWpLNHdYaGhZa0ZMMmR6Ymo0QW1qeTFzUnB4S0cyWmhyaHJpMkpjbHBnenpfVkllTG5HT3hmZFI0ak8; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 22:15:59 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '291' + x-ratelimit-reset: + - '241' + x-ratelimit-used: + - '9' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=scBYYXYbviwHs3HrM9; loid=0000000000edkcdvnr.2.1630959355267.Z0FBQUFBQmhObmI3dlYzVktBdWRhMi0yZloyRnhkNV93ZFY5eS1YMjNNRi1tSUJjWC01SER6SmN3R0RrVGdYcGN5WExXRUtQcEtsNWdwQXQyeXQyUUN1UmN0Z2xyRkNYcHExV2xTeEZqM004MUQ5RV9CNVoyYUpkVHVIOU1GRFhHcm94ZjU3dERJdUM; + session_tracker=krbaimkecdoqerqmfo.0.1630959359407.Z0FBQUFBQmhObmJfSE5KNkpRa3NHekstR0ppQjhpbUJfVkVySmR2YUdNWVh5VGZSUC1IcHdrSXRrbDZjRlVIUEdvYkRjdHNEQndLZ2t4VEp1WWpLNHdYaGhZa0ZMMmR6Ymo0QW1qeTFzUnB4S0cyWmhyaHJpMkpjbHBnenpfVkllTG5HT3hmZFI0ak8 + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t1_haflpmt%2Ct1_haflnk8%2Ct1_haflkc7%2Ct1_hafljes%2Ct1_hafliuo%2Ct1_haflhvi%2Ct1_haflhfi%2Ct1_haflh3y%2Ct1_haflgf1%2Ct1_haflg7u%2Ct1_haflg2a%2Ct1_haflfgi%2Ct1_haflfcg%2Ct1_haflcxj%2Ct1_hafl8yx%2Ct1_hafl8yw%2Ct1_hafl7oy%2Ct1_hafl4z5%2Ct1_hafl4ut%2Ct1_hafl406%2Ct1_hafl3m0%2Ct1_hafl3fj%2Ct1_hafl2f7%2Ct1_hafl1u4%2Ct1_hafkwvz%2Ct1_hafkwbw%2Ct1_hafkvqd%2Ct1_hafkt4i%2Ct1_hafksf1%2Ct1_hafkrq9%2Ct1_hafkq7q%2Ct1_hafkp6u%2Ct1_hafko5w%2Ct1_hafknyg%2Ct1_hafkmpe%2Ct1_hafkkso%2Ct1_hafkjht%2Ct1_hafki52%2Ct1_hafkhd3%2Ct1_hafkee1%2Ct1_hafke90%2Ct1_hafke7c%2Ct1_hafkal2%2Ct1_hafk9o6%2Ct1_hafk737%2Ct1_hafk3zv%2Ct1_hafk3a5%2Ct1_hafk2jd%2Ct1_hafk0qc%2Ct1_hafk0dq%2Ct1_hafjwds%2Ct1_hafjuyq%2Ct1_hafjtba%2Ct1_hafjt28%2Ct1_hafjshr%2Ct1_hafjps3%2Ct1_hafjmmw%2Ct1_hafjm71%2Ct1_hafjlg0%2Ct1_hafjkpw%2Ct1_hafjh8f%2Ct1_hafjewa%2Ct1_hafjet9%2Ct1_hafjbv7%2Ct1_hafj9ot%2Ct1_hafj9nq%2Ct1_hafj6u7%2Ct1_hafj6f3%2Ct1_hafj686%2Ct1_hafj64y%2Ct1_hafj29o%2Ct1_hafj1jh%2Ct1_hafj11k%2Ct1_hafiz3q%2Ct1_hafiwl4%2Ct1_hafiv9c%2Ct1_hafiv1x%2Ct1_hafiv1a%2Ct1_hafiuuf%2Ct1_hafiutk%2Ct1_hafitqb%2Ct1_hafisl1%2Ct1_hafirjx%2Ct1_hafipat%2Ct1_hafiorm%2Ct1_hafiol1%2Ct1_hafiobs%2Ct1_hafimst%2Ct1_hafimin%2Ct1_hafijmp%2Ct1_hafihno%2Ct1_hafih6o%2Ct1_hafih0d%2Ct1_hafiejw%2Ct1_hafie9o%2Ct1_hafid24%2Ct1_hafib95%2Ct1_hafi8xf%2Ct1_hafi6d8%2Ct1_hafi5h1&raw_json=1 + response: + body: + string: !!binary | + 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 + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '17079' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:16:00 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=krbaimkecdoqerqmfo.0.1630959359866.Z0FBQUFBQmhObmNBRWwySWJmdDZ4eHJnaG1Vc0c1Z0gyYzdiS0pBVGVFaS1fd2EwVDVPRFFZUjVNWVJENWdWX0p1akVfY3BBS05zOWRyZm1xRFgzemNUVExPeFdqZGV0M01oaU9vZUZwX3h0UUJuLXlEWWJ5U20wZFVqSUxDMThJenAyTFREY2RWU1A; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 22:16:00 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '290' + x-ratelimit-reset: + - '241' + x-ratelimit-used: + - '10' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=1000&before=1604761995&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1601608395 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+WaW3OqOhTH3/encHju7AmXcOlX6XQYhBBQbiXBqh2/+xm00w1b/mpXTs/L8Uld + 4cfyn3VJgh+/VqvVysoSnVjPq5fzp/H18fXubE97kWiRxYNOreeV7TMv8O3I85/mw8rMel5Zci3L + ch9aX7bT0/e4jgu5xSYw4NqYK+j+hqEHuTk/GHAdzGUpnevjeRPukc718Lylbwb6eliHtB7oXAdz + 17ky4OI4W4vSgMswN+3oXJtjruOTuUGEdYhqh84NsL9h1dO5Ps7jYL834OJ5C7qWzuUB5m7o8Rvc + yGO/5nSui3Xg+4TOdXA9441BnDk4zngtyFw/CiHXY/Q89n2cb7ai13Xfwzow1Rpwcb6xlhtwsQ5s + s6VzXcgtjkeXzrV9zHXp/nIf1ofiPaDXM84jyN31gQE3xNxGGnCxvrsNvT5wD+s7HDYGXI65w47O + tbG/2i8MuDCPC3Wg9yHOsA5KGOQFw3msPHr99SLY34q+oOeFh9cPRdfS89jjLuYm73QuXj8U7Vtu + wMU6tNvkZ7ibiM51cZ1sZUbmuhHctxRVY8LFeVFt1z/Epddf18P9YsOkARf3i3JnwHVxPStD+r7F + xfu3onArMteJcL/Ij6EBF+dbXtDj1wnwvImW0bk+jjPh1wZcrEPWGeh7Iy9Sg3WJcyN+U59efx2G + 4ywxqDsOw30oiej9zY7weifq6fraLp43Xx5+hmtwzmXj/XHBW/p6h0U4j919ZcDFfdN9o/d5FuD4 + dTT9nJbd2L85QftDXAN/Oc4L2+B8nXFcJ+2Afk7A8LlywWr6upo5UAd53BrEGT6vlseCfr7DbFgn + 5eGdrAOL8LpP7un1gUVhgLmZCfeGv+ydzsV9Xu70gc7F5w9yxzw690b86o6cbyz04H5Idu5gwA1v + cF06F5/LyYaT9wEswOtfWW1TOjfEOlRFRefidbXc9oLOxX1IbkObzsXPA2TxRo+zAJ+fyYLeh1iA + z8/Gwk7m+vi5tMxDej3z8fNjKcKOznWwvuu9gb94fyzXvqZzGa5nyUDeFzKOnw/JJKDHLw/xvEXF + hs7Fz2NlOOtv53evl8FWLXTy+b+TP3exklyL/sK2fRa60YRtJVLGqjyK0c7Y1NCV8U70qmyb8c7u + b2ZNrGuRt72Y/BFkBhUqfhtEf5j5cbYsf31Btm21aDlb87K6/Ipl+33C16h6UHr2xxz0+rg74szT + oq/V3dvOLlHDuhdZVj7mx/zStBRNOukQ916vD4083R11evq3BOuTRorvCTZPko/vSSb1LPgfvvj0 + v1eu0rMM/++Vuzni9bauliraoRrL5gvOgeU7gBk7l464afUyc876i2EtFdmLoe31ckWcz52VCZXO + 8/601F8ssRfpoMu2iXVZi7guq6pUIm2bbCxTnvN70mP/1NWXq37zhBvVr4U5sMomE/vR0T6dtoqq + rM+FzrIZm/WQSbeydD+Iqe0c6erKrQWRbufEw/H/UJU4fW/Of9DbRzLzrreLs9gLNVRaxb3QQ9+I + 7GphoIqkz64bnpUnZXUefhXg27Lrli1Dmgql8mFs21dbF93qZDQE3mKYL65aPpPpkit/fR/rQzde + MVN5OgZ25euuO1VszLIsbofxujyplJjaxt8Qf2p6njKPu/avi/ynfwA4Z/FwKywAAA== + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aadf2dce6b54d3-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:43:14 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:18:20 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=2M1EC%2F9aw4%2Fdb11Gl8Dfuaigc1jo2EhphvVCO4FTIsFyMXQsfFrHfVR9BRzmwrXG3XrmW0Od%2FdR6XjwHHz5YPsAMjtwNbGq5qICGRcrfzjw5EwNXCVSS9jQVCA%2BGBbMZLT5K"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=1000&before=1607915595&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1604761995 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa2W6rSBCG7/MUFtfRUTc0W14liiwMjU3M5l68RX73EXaUAwk/cYrJ3EyuHFfz + Uf67tsZ+e1gsFgsnS0ziPC2er/91f28fr672VMnEyGxpTeo8LXjAwpj7fhg/DpcVmfO0cNa5OmRh + 6XzYLo8/43IPciObkrnCjyDXT2ZwXQa57l7QuZxjbnIic70ogFzWenRuCHXYn6tXOtcPIfekZ3A5 + 1GF/EIbOZTAv9vummsGNMLei55vrYx10pOhcV0DuLqDHL4+wDvXxTOcGWIfqNadzBc6LrQ3oXO5D + 7mv8OoPrYW6QkblM4LzIfTuD60KuVD6VK+IA6xC3ZzoX96F9LKMZXFwn44QcDyKK8b751Y7Onchj + cZjh78S+eVkwg4vz2AsOZG6I/bUHk9O5Lqxn1uZHOpfDfLOmIM8PIohhPbM63dO5AZyj7M7N6Fyc + b7a1LZ2L50lbZ/R9C3iMuQk9fv0Ix2/J6Dr4AtYHW7QFmStiOJfY3N3QuXh+sFkyw98A+5v5jM51 + cR4niaZzGeZG5xWZ60U4fiO3pHMn6m+QzOB6WAchZnBdrIN3aGdwcfx6O/oc5eK+ac5hSudifc1R + 0us6D2FdN8YmM7gcczf0+sAF7JtGqYbOdTF3J+n7xvG527SaXnc4m+DSzxeCM6xD65LPsYLFOM6a + LX1OZbhOmvq4nsHFOtQNfS5hE/lWC0Hn+rCum3LD6VyGuYUg118vxvOOkXlJ507kW7rK6NwJHVYF + 3d8oxnUyqen6TpzfTFRVdC5+zmWCmPz8zAsjzPXqDZ0b4PrgKk3n4ucaxuUBnStw/PKI7m/gQX+1 + OW3JXB8/j9L1lu6vj8/duizpcSZCWNf1q8/pXHzu1kW4nsFlmOvT81jgONObKKRz8Vyi5fb4S1y6 + vx6uvzrb7uhc/H2hTm1E53qYm0SMzsXnYx0Lur9uiOtOQD8PeRPnLC3Ols71J7irnM7Fz7m0m83Q + F39Ppnm1msENMXfGvMNxn9fMFXQufm6kToo+P3AcD+po6fWB4zxWRz+bwcU6HOxxBhfrcJhRf7kL + 66/an9Pf4Z7oecHw90PKrvvxe331clvsVNIk7787+XsXJ8mNVDe2CAMe978TcJL1eqmLs+zsjPUN + bbHcS6WLpu7u7P1hTs+6knmjZO8HJgOo1Mudleo08ONqGX/7hmyactRyteZFefsU4/bvCR+rKqvN + 4Ic56O/t2xVXnpGq0t/ednCJtisls6y4z4/hpWkh61Q6d1/1ctfKy7erLo//lmAqqdfyZ4INk+Tt + Z5KtzSD477748r9XrjSDDP/vlZtc8TKtq6M3jS27svmMc2D8DmDHrqVjWTdmnDlkfWI4Y0X2ZmiU + Ga+Iw71zMqnTYd5fxvqLI48ytaZo6qUpKrmsirIstEybOuvKlAj/9HrW37r6/KXfPOJG9TCyB05R + Z/LYOarSfqsoi+pa6BzO2KCH9LqVY5SVfds10vUXt0ZEms6Ju+P/ripx+dme/6K392Tmt96O7qKS + 2pZGL5U0VtUy+zIY6E2isq8Nz8mTorwu/xLg26Jtxy02TaXWue3advD5KGAak3SGUIyG+ejU8p5M + t1z59P7SnNruioHK/TWwK3/tun3FuizLlo3trsuTUsu+rfsMy3dNO2/D2A2jh5v8l38A20v3aSss + AAA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aaf202aee93ff8-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:56:06 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:43:14 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=26zbVEepcZxHmlSP6%2BQUfhJzrCvQHwOspv1TmFbmsKdrNrhdhlthHTAOZ0aMUNFhfUWRnuRnVWqnit23FijXXyeQXDnh9vInR%2BEi7R%2FLdWB2ZmpZVXeNMkiqI74OlazOINl%2F"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +version: 1 diff --git a/cassettes/test_comment_praw_query b/cassettes/test_comment_praw_query new file mode 100644 index 0000000..f93daf4 --- /dev/null +++ b/cassettes/test_comment_praw_query @@ -0,0 +1,2341 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?q=quantum&subreddit=science&limit=100&before=1629990795&filter=id&filter=created_utc&size=100&sort=desc&metadata=true + response: + body: + string: !!binary | + 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 + tg0sAAA= + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68aa51b6eb823fcd-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:06:40 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:06:40 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=4m3hz8GK9IBg9m%2FzOj0RNxLDjCTAyL%2BT2e8N%2FWdNhFqSdi%2B7%2F86tOJNAMXm4D%2BEW8Ct0pSZXJoVLoG3a9hdj%2FD%2FYSw8nfAaX2zG6Zsu9MeM3BsL9G%2Fe6YeKO3Acr2EuGJoq1"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: grant_type=client_credentials + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - close + Content-Length: + - '29' + Content-Type: + - application/x-www-form-urlencoded + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: POST + uri: https://www.reddit.com/api/v1/access_token + response: + body: + string: '{"access_token": "-ylqk2aMLaLbd6UEFPKcVMEQc9umr3g", "token_type": "bearer", + "expires_in": 3600, "scope": "*"}' + headers: + Accept-Ranges: + - bytes + Connection: + - close + Content-Length: + - '109' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:06:40 GMT + Server: + - snooserv + Set-Cookie: + - edgebucket=Zpy7lSwQL6qiebKjbL; Domain=reddit.com; Max-Age=63071999; Path=/; secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + cache-control: + - max-age=0, must-revalidate + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '298' + x-ratelimit-reset: + - '200' + x-ratelimit-used: + - '2' + x-reddit-loid: + - 0000000000edk5datt.2.1630958800965.Z0FBQUFBQmhOblRRSGVVQ3R0amQzdWc3bGxiMjB2MHVTY0hhaWFjMDdoZ1E3N2tmUzJyRnFlRXZOUU5Yb05yMWVuUWlXUThNck9lQndkUUNVa0JtLTh6M1V2aG1TN3l0a2VwNHB1dHN4c3pSQ0NJSkdGdkRpUXFhRFI1bUIyUEl6MnFKMnRPMmhfRlI + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?q=quantum&subreddit=science&limit=100&before=1601608395&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1598454795 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68aa51b8bb0f541f-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:06:41 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:06:41 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=c7xvTawiMetgUC%2BTWULzO4hKfDMbGOmUeQsiw51beOGcRT2bTZg6vryYwDXEIuyPK2C7N8Zz4iWXKqsh2n7ahChIGisAf2RLSLm8HMcSiPkCKEhLg6GC7%2F6Iywl2vTMjFvrO"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - edgebucket=Zpy7lSwQL6qiebKjbL + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t1_gb66k9u%2Ct1_gb0pn35%2Ct1_gawv9p5%2Ct1_gaw97u1%2Ct1_gaw3eza%2Ct1_gaw33k9%2Ct1_gavwh08%2Ct1_gajy5vg%2Ct1_gafbll2%2Ct1_gaf693u%2Ct1_gadi0vp%2Ct1_gacp14n%2Ct1_gaahdbf%2Ct1_gaa2gs5%2Ct1_ga8pzl2%2Ct1_ga83btk%2Ct1_ga7u1xx%2Ct1_ga5g3tv%2Ct1_ga44gjj%2Ct1_ga3sr6s%2Ct1_ga2gi9b%2Ct1_ga19f9n%2Ct1_g9x451c%2Ct1_g9w4ck0%2Ct1_g9ves2k%2Ct1_g9scugw%2Ct1_g9s1ods%2Ct1_g9ry09q%2Ct1_g9rgfu0%2Ct1_g9qagcv%2Ct1_g9piims%2Ct1_g9p0xrp%2Ct1_g9p0tpv%2Ct1_g9p03fo%2Ct1_g9oyns1%2Ct1_g9oal0k%2Ct1_g9n1wox%2Ct1_g9mhf7y%2Ct1_g9mbz7d%2Ct1_g9m7ke4%2Ct1_g9lyku0%2Ct1_g9lt1j7%2Ct1_g9l50ep%2Ct1_g9gyf85%2Ct1_g9gshbw%2Ct1_g9g7sro%2Ct1_g9b71x6%2Ct1_g9axn4v%2Ct1_g9axlde%2Ct1_g9a8l40%2Ct1_g9a74c1%2Ct1_g9a3ndb%2Ct1_g99ucsu%2Ct1_g99i7om%2Ct1_g99ctmp%2Ct1_g991qez%2Ct1_g98xd9w%2Ct1_g98tt8w%2Ct1_g98tont%2Ct1_g98rpw2%2Ct1_g98q4l3%2Ct1_g98ocna%2Ct1_g98cnr2%2Ct1_g9872m4%2Ct1_g93t6fn%2Ct1_g93t5jo%2Ct1_g93so8i%2Ct1_g93sm63%2Ct1_g93sbsi%2Ct1_g93gf9j%2Ct1_g937ijc%2Ct1_g924z6y%2Ct1_g90cl4r%2Ct1_g8zsqlx%2Ct1_g8zps93%2Ct1_g8znuht%2Ct1_g8zggep%2Ct1_g8z7l6c%2Ct1_g8ywas3%2Ct1_g8ynyyk%2Ct1_g8ymlf3%2Ct1_g8ycru7%2Ct1_g8wpnz9%2Ct1_g8v1fa8%2Ct1_g8v01ze%2Ct1_g8uw66a%2Ct1_g8utvkv%2Ct1_g8tc2hi%2Ct1_g8r2yyl%2Ct1_g8o7bhj%2Ct1_g8lnsol%2Ct1_g8l8qqi%2Ct1_g8jsczn%2Ct1_g8j0u5j%2Ct1_g8izjhl%2Ct1_g8ix1i4%2Ct1_g8hw40o%2Ct1_g8g2a7a%2Ct1_g84kzes%2Ct1_g83w2te&raw_json=1 + response: + body: + string: !!binary | + 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 + q8M9X3K4Z/XefzGRoNXLrINEdZDocYNEq/mxjh/V8aM6fnQXnPTvOjHxQYmJx5fJVhITbV5UnZi4 + OjHxqE5MvOxeT+PhAq54vMTELDkLv6zExJOj9S48aGWjE73vdgeucq2bKqr3+nnV/HHdVLEu2a9L + 9nV/n1/JPt0/6IG6Ln8rdflx3VTREb66+L4uvjf8bvbnTvF9XDdVrCvs66aK9y2jj+umijzm+VSt + fFw3VXTyf4K6IP7La6pow0tbSk60zz8wO7HuqrjdOMxq4tYhmjpEU4dosL/PL0SzWrJVe9TRm61E + b1aTvg7s1IGdOrBz38DOalmqYz51zGcm5rOaXepwELn2TjhoNdXqSNE9IkWrSVgHkeogkmHGuqvi + s0teRArYfi9ZlqtoUhl5GXRbcxyR4YgURgTXtpHCWGZQ1SmMq1MYD+oUxl1IYTT5e19QCuPBmr0V + s8tbvmQnUhjr3op1YT9N6Wr8urAfr15e2B/XvRXr3oocsi7RF+x5pBJ9g1J1HT5ptXt1+HHdW/HL + LraP696KJYd979dl83XZ/Jpl83HdW7Guja9r45vb6q1oQ0u7mb5YN1esYzB1DGYpe+hw947BrBal + OjwzE55ZTaz3deSmjtxsM3LzSfargzpKxt0L6qzeujre8yXHe1bv/RcTClq9zDpKVEeJHjdKtJof + 6wBSHUCqA0h3wUn/rvMTPyM/cXTS2kp+ok2PqvMTn1N+ouxe6+Tw9KB5yt27f5rifTMRi9EJF/+5 + mYiL4sbLsw872aM2UHzxw9tf3r5/+wPlalUK4r96AUq3ev9eN/vwaN0GitHwI0lQZh8eYiKL0g83 + mGVIpjCrmw/8rxnkNzvoRvE3G6i3c/1SMUZ0SnpVcsCDUAayq5/nMHHaGlXAGoRhroOoDetFuKeP + GcC7jgeEGNm7bUBMKQPbgBhD6S0jDFXZlvHlcKcAxs1lvh+yzG7jAxPgx2m8iCfWhh37fDGTAH/a + PEqDo/NbitcyEBr0zy+pHR8JhMzTK/HnpyD1o7z9D/FT/O/Bthjv3jDUOjk4PVkPhk6vD6JSCdkl + LUIhQ+htJsFfiHgh3kKHww3FuA4iz4q0LBQuHAIB8OzoaeGERzyxr427+U3pLHdkkHDEyC/KjqES + cFQYq2MadjXMAX+PrnPh+b2eqQZkPWT2HXlt40fllgUtcXfqqHyXt+NLNQrs+A82CaBX9xPRT2nb + 7xWRGAU4BWhnCJGJqykcNpy25d2RYF876cMcABNu3hxwdNE2zAE7m8+wB1jv8wl7wK5tqxZBszYI + LruX58eLuGJDBsFRcHx7NImY8bTUIDgNL7kru2QQXAfxbYB+RvF6psDh6cHZ/U0BdwN2oRzulyS5 + 0gYeGgnGGWMZRI4CfwxcQTINwML2fNIIpwAU0kgQybU/oE/P4LJNABJ64ZjQj/wU5wVb6uNn+Wkn + 0f2xSVwj9hLEhtztWwIL/7VxriYaATCEEzRx5vFrYRxDbGA2WGvzmO0ojR3F7Dsy8lSYvVtR4qfB + 7M7RVdpZwBUbwuyzUXL1cRVgHx7dntBD3iXA/u9QxLpIiwHDo/cG7LPz49bxWoBdUn8XAPtXGc73 + xlHQ2WNKQBmT/Nb7IeFJJE8cx+ZMdJKkPe/DCwM3H14Aa/qpCCYwBa6KHmlux+su2WYncflBlJQn + D08+Fkn+V0vS6pNltK0BeTEgU67cqLq2Fi5j6obC7W6YdgsghGD0vuGqjUOyqxZqSK4h+Y7czUPy + JBpusbHM8eim1WnlTcLOElRudqOjlNiwQ6gsqnL6ShD0lQDcq0GiZw/3B+eTg+PWeuBs92EnwBnJ + ae9UiNmiNdNWqA0Pifk9U+BwbstH2IHOVrCYprq/+vmQ/XZZhuM0rw6ZYmhTGBued6GDIbpbgRcj + vhfuc7ZWB7UIfg6HU/5G9qy+r3JEReUyyNwLNMky0u6DHQQw0bM70HAyk3XR0TMcybo8eLcYVz65 + YDT5Sv478rVvnaHEZXIV/Ad5fdMWRikCu2lh1OywlB1qo2iJUQR9tj8KBj5S5/1em1myWRv7Bt0l + Ex+gLqht9rjPMAXlYPM2kaONa5uotonuiN380ULz+KBYwBWbsonOz8PrFQbR2W32Mbp5YoPIzqmy + iLo5Sj149n9/O+jo/KSliYj3sYMECs+mRSsYu4bQCWbxRIbQ2xuR/hEwA02yBUNi3pICefCyPElR + 782U+NSPM0gak/ct+GiCfsB7APKhIEffRxUpIt29/UmKApBsHGi9Mg7GTVo2SmW0TA7vFR7ZymlD + xWU7aXPsCOVreF8M71SR+1Wzej2DyIouiiKg76btcmdkWhEKdfcNz20e3x0tU+P7anw/2Sl81907 + PT1U6+xxYX7LoY+Dk/z8dDXOj7Pzneup+/om+gXSuibOnx4cna2F87cH1326vBbnl6azPwLOw49F + FhqrvH1msEX+FAWklcuJD1EJZ7y/axx/lw5qw0PF34VtqxETW2Yu7YJXWt0wZj9BmZy4y0OUxVae + EMtksYS5MSbDKSqsYjjguT+Fv2uKYoVzdQp73twkhqiIi6K7C8E3nZDVrFo3mWoh3cwbcYnC98l1 + 2Ht1cC6QCfzUyWMqIz+70r+IXxHK2uWpLl4gluIYNWcyJe9vgswyp4uSLKh6U4LIejX5L0k5Cwvg + NvEPZXIwexYQs+PLL7Rk3hDwDvrr+z/ErzHhBC1mcNEHzkTS6jYvlkzi6j0UF0IvMk1BGPwqCExn + GV8b8PCyonGQoFQVdbMlL5gpxd4gYYFhjipB2QJuNR8HczEfcRJEMj0yGDIpwG1e4KfCBQnKu/Pw + 1XVww5Zjb4Vjv/X+C2c3MqaYS2nYn2J72c2g6kOgfWDMtGSaX+WYBnrVyKxM9aHPTWfcRG9hkQfD + lBeA+LixhhcWZU4NIr31qm4Ya/gKzVGyhCwhhhLK0KvZw9TC8HYFhvgXOoFR4LMcM0OVK8ghz5u7 + GPxogksxhIyyKTDqzELk15g2JjPKgugateo096b87xwvmI3YQwKo/D39aobhWeVs6r+1rDNjlWLD + +wdeEcTIVdXaVnY10ZYAwiVzw+gPSwaGCJBzuH1K+Y7ZUisi135XxMEU2g+SpGduheIPegkeMU2E + ClEjoy1Z+hZndtLS34TunbfSZ2uvn1otr57drmns1bN9Sl2+emavscZnpeRXr+eh+h9PH578Z+v8 + r1sCguoFzwgRqklvBhqWjfcpjHB3Z12wcJ+dQY07nKR//+mjFA86hFC43EKQonKR6iDF6iBFXfC4 + 9UOIaZwN/ZXBibjQIMAuBSd+9sd+fOULw64Znjg+PF+r3P7sdjCYPYZoYSJPFJ54V6QBkvwEEU3n + M73O2B8kDe9dwNu+Ydvw3rrXKRo7oUlY1PB4O3TgvXx5fHr08uUe4MBvHjePecjeOj5oel/jtP0b + zdO33fl6QQeWDxqsEsbVhHAubIShNHMfs2gAYbDSKBntVfaJL5MLIF9iWYjJqLJuagFTQRlrfAGl + NYOAYeRAeAgmY49drwTFv8bLTStZWb1s4NJ4fz9AC9OPRSfMs2+25FNZ8dhJn+qzGUZH04uBdUhh + IGNWuJ/+OTmqtrcW21sPPRWCLG3B4KqUfm1wrTa4WrXBtW2D6x4FpZXRsUs21wMLSs9ap82jo3vb + XO4G7ILJ9VOQMxTZjRIxFeiBm3/maElumwz60R3EaHjfM44BKEOrQd6IDCceK7kJRz5zENE5byvV + KhUT7aRl8ih0rfF5s/gMjto8PjsKosbnGp/vyN3j4vNpqzgZrQTn00gbHz4hONs5Vej8vpC9S3/t + /rQeOB+enq0BzszLTIKjbAadnxKejWbXHv7dPwLmBJrDM6otdCEW2CDWoH+udjUO8y4uCMCZQIIM + QP9qT5v10180PXn5E54h2N/jlhsm/ydoWC54VfD8SDau5/l5Msoa3h84+rnmDNgd2TwJfYI3Cz1y + e9jmHCXlKDOo5oxDFzayhvOsLRZQfikTE/wznZVwTsgps010dbSmN8UITVHN4ONYZi4hclTExkuu + jnP0tewdnOurAnP1Dgl71vXHCAdoSYYeg4T92V7hZf6lUDmQbdYLaUhvo/vQ7ln71/OqjCLTQxTh + uwxHpbxqxBMboOwsnvlhz/s9TfqCSrKG39HwvXvl/SHabyyoKz/HUMGNCH4Yq7evHbsZBkBEQJsz + M43iQ/yjbTTupwLM0bbSaa162C2zi8odZb3BrDFkbaNafmr5WS4/i+3oBTw1y1V3JG7JQLVB/kCD + HLpm8wa5YxTUBvknDPLaIt+6Rd66mRThuENeWGaUTwVanjqF+q5R/qs/iIvs1WvRfv2ANTb3t8wP + zg+OmutZ5vMVU4czbLZg1yvL3Ay6ScMcBsV7F9gUJI2BQWCzqDoSPkOumIJ8Ce9iGhw0Dr0Rrv4a + BUz+UmTbiuFWstBuGW4zBtqW6FnD8kZhmZy0eVh2NEINy6th+bDujLr1uqaT07jVv/p4vhKW4+mU + VxU8Fiy/+OW3P9rvvv/tH9RZK8+zfpsG7TdBJJwgfMcUqDXAuXV+tl4e0fRsMuqTVAacXz1lPfMF + HGF5gd5sxturKuwwN20x+7SI8fKwH6KPB7xp1n8gWRb/4VWdZWZGgwnsKGXQRhmMBdj7g8MIWedo + GYKfClxx6eMUgEAPu0q9BGB1C/FP6WGz4Qe7h+iYwfSrFN03JqjkZTY8OnWQTTduEVju3UmL4HP2 + ECPY1G1s5szfC3e1+sW2t7d604J93pClYhW2R2n0OkHE4oU0yIaJHs1/OUbMw5KfyftbsGEqxbkN + G8aQ+UswYV7tVoX205gwW44sHE+OjlbbL6Oov3thhZ8u3v1O9l3DXjk4vX8wYVEOzsH9YwmbN1d+ + HyZ5Elu31rb9WNjoYzu5NCUf7KQlsA55NgSghkhfDko+1NUHY2wDJkt53QZM2tl8CTh5ULv6W3f1 + u0fxUbISJ7tpcfrEOHnHwU8D8Jrs+bQbKRvfGy+bp8etNdNimq1T7TlvARNzeSK8RCk9yk73cMrs + VMib5gTsvWmOfb1hEMoaO0E6yMRT7AZpLp/mU/c2dl53PhBPIZMBe+bqj0Se9HkH9shD7a18YIfk + mX/QLVJ06kpDlJo7zqliEY+bkekpFB2NkbyJ8uVAddvG4duy507C96rdwi+s273L21abFYvNigc6 + 3+DXzVsVjlarrYpPWBW1UXHZSS5bvAh1O0bFab95o9eQLDEqJuP4lt75LhkVvAgRlykJiMRrHhuc + np6cnh6sZVZMLpPm7G3fmM0TmRWHr1peT4StFwBRwrTb8C4EVnLky7FRZk87c9iuIci8w7H0QZNl + px7S/NjFM+sOkyTywI8dZO7Jrw4F57RN108hcM4WbpYdPwWKslwImtGxxTfXfgrVib9HhKrhtJcm + A3mYtZ6dQP6FPSnArr19c9loz8tCHIbr/04C9HZiiloPfT0WR9HxPXMF/S46f8icroMoGTOCrGl6 + +ptyAllSpFV+omxFF4tBaiTOTTpFvy9P9dgFxvYsBxjIePYoP8uFknDmEUD/fyRMo9GQB5BcmbNY + NhHto33ThYRCBCGSVvdaAgXxIIyDILWg3btmGgDxW7vFyD9HsBsA/7zpUxbn/RQO/N/9rCv8A3Jg + YhnriPWWVttC52MRihIxNEsTZPqJapAhWDicxGpw/FcxBoNsxawrFcROmnWPIC3zRtds9uUjC1Jl + qj6yRFUvfphorabic5a6O0vTv2urHJbNPqhHc8ZQT2Rf/in2Y6/o5uG1yEp76Iu1Juy/b5TNxm1y + 1ySobfLaJr8jdPM2+WHnkOvejk3eKm6Pm6f9lbG+64O+f7ZrZvk/QpQztH8fJkEc3pyc86Kp+xvm + h+eHzfXaFhe3t5nW8Nt8nqe0zP9pmuDFSVXxkpp7dOUfwhtCavkjFEwJGt4PiSZqeK7GS9AJBmEn + Ewoq4hB6IPjOk9Eb3jvkaPjasc/0ORQUHKGJH8tqAMhMGqlat3CgEPEpHWnPS3FsYgZ8D5zvI/0C + T3hJ5zKQIWQW8lmXBsCADVoELWdfgKt+Fg/EWSlOcwYAT+0sE7LL3iD1odb30I8TVxObxFgZzu+F + pqQH6TDAZPSZEUNm9tWE4EjmmSLjBh/ZuNkMIVnG9P3rv4FYAHGdWPXChkzcH6KKR7wBwVSG4TCM + sQ8qTwH9MLmNILusKBKrgLXtnmg7Nm5U81GUB/5A7dIAVVipdh+ElUW6mr7UIx+2CQuPzCVG5jJC + r5MI17FwCvbhLFugpD4VPBADFs1HfftrlHNx8eGtKekSrYb5lueNMi+Qnz/f42/LZOROkE9gWPpY + /STRpZc05erN3ORDFvyjtopdOfFIL6ShR2IKA3g8nJNPMA/dIZ2I6TvkCxBlhm3N5O1902GMGcn/ + BWIDl5z1RijBnpBDkenAbLYhHG++lmWL3tTBNI9Jd9Ohx6wU/ZxMvAipVRDP3HQfkn1Hu0wxSsMB + mh30UTGFrgZZ2KPNyC0EDb/z/iA/IuMb/5if+Xfe35KxEONtyZ403kdinjW8N2XbTtsJCZ9zR8zf + RjQa3muuYcoqPPlXyUdzPMHfUEL4Q9m7hBrIcBCe0CEpVlgZpVq+UvmspAhPYUf1c5YB2hHmpQqp + a3am+nJdVi/1B2QDd0q46kM3BoxjLv7Iec+HN9YTcysn2dgHH11gA9mWFE8IamQhbi+zRX6LHJnt + JB6WELuTjm0NNs8UbFxHeSnqzHjTG4SfeVd01st+TsjkUujZQdQMD9RY9Yyxyt3JNUHrjjDq33Vc + CN71vuxmux+mWd5GhGhZgEhmMPSzfQPWmw8MOS5pHRhaHRh6VUeGdiMy1Dy4JbN8SZGhs9bpepVe + xW3zTM+1bWToKRsk/YZDFmM3XqMxiV6xkem9zWzQ4dYN2/MZNQkTXC4SoDJGr/0R6yf2u2Kw4OSE + 5yeQgy35QJaZdtIH2hhZXRRfRt8arjcJ1+CrLcB1pSdquP4EXO9WzxSzfYcnenPonw61i8nJCfOY + viTUPjlo3r/eiah93T3kndY7cZ7zWtMcNA9CfWg3oPOeX9F9fP3LH6//+Q4etvuDCzYjYxvdng/m + F6c28idAHtPqTJznKEtwjRRjJTPRnGokz2dSisBMyz/3vk6Go+ybPfVRBV7hLbO33r9wR9W/zYwx + HuKA48gEmGQmRgSJePJK2UiMkQWBrQBGukMxsg9DSGxAYRJehWMRVt/ria6LQ7b3Z0hnocft/IgU + IDhnIS84YKJzrBcEyAi4rmp+FOR3XJkgTA+BS8wzRziFUQP5HYIdqY6B6Zn8FSGuRgeMDjZRgVRY + YiryyFLsuLrNrHLFeS7zOi5jDPpqBAUwC8flR/mzbrm9GAuXVenLZnljJvrHVSDp397T1kX8U0M3 + VRDj7mMkHkq4A2S4IPIGGk5Nlzm/mrCJAYukQMSY5hIh/wccv6c56xrByMCWX2HeQrMIHZoRLzbR + DS1MKGMhNvrBwAov6JYZsOZKQ2nmKSUTWvQhzccEME0HPyQ48UQGd5o5CyvGYA18kQVR303LQVju + YxFGYScVuUaYE/JniyZwhVo8tbOz4ZUQgoavx8kkSHFRRXXxlwabdAKTwE6eljS4yvcGUFzC8qSv + 04YPMWeKxVfM0TexN9xQx5AamZlkFymRJ0O0AmLAL8y+Jcl4+RxnpNffdf3UpCXxfg3ZVuH2QMOe + w8C/xoUXulBZmHuYlbC7o5DfZbxOFVtsIO6KiCMDUH6vZxZqhVdfqi8SC9EdTOgJ070cQVRigTQp + iDzHYJND1X0D3WH0/kbQU4jGKD63bQ86CgOQPhyFBHPGoZyKitU9VrpUs3NJYtcpLCXskmLXMRgm + WoZdX1vuCzWCaqOmYt0LB+BYweUifYdhffycXBwItb4eF7D3cwGooPeNnQxOA2QDwsg5BODa5QlS + z2p/yFwnS6KC7c7jhHwE+SYaQkLNIYdtuDny4fmolGDJd4TNFUZ+q8ppCZ8xEgu6c8YZAua2I3sU + MJaKIP6cdk20faj72XfeH0PMXyj7jhf/aQMRLLGDqGp3CEAQUxVTcBWUaocqNov8u05CkvkcIcT5 + wCBGsrbXD4OoZ6P0OGHhSsYJblO8ZV9N/LAMTL8vw7Nk7H4agMhomukFuEZyPi4MU5oKHgmBQ925 + 2yBNvCJD0w17MIIpFtSRDM0WOATLeeBDhUypmsqGjMwMqvMX0Tc8t4qdExUFDrPLuq12eaYzKE/Y + qsk41MNMSsjBXhOeDXlglHnDYiQIlZOnwI8oIMLpFBJRI5r8CoI92ewuTsYgmcLB2PpONIXUJdns + AZaQ8+fX/+ctRlx2iqc6nBrV8i2psuzY57WrCixPKA3d5fLdPIXIVdB71DvCdaod5sbHMaKgAw67 + sKkjqjRRMxNcNQDdTeYHHFTL49EQVJOQbzsRkdJQ38mIyHMyWefjKbNnkbU1+xnW7GrSbt3QxWts + veRuWLzVjJabvu6s78Ay9dPn2MDuDBYbw+4v1rCK3WmvMo/d361hJ7uzuqfBXD3ylJazO/HahN6g + CT1D2OFzs6VXq8YlTLk9M9uVSujF2t7+hL29ev++WFPc5ZPnbJPf2T/9uz5Fe8gpGn2RLZyiVXH7 + +hTtE6doddLL1o/PxunlFTsgLD07y6+vrp/47MzOqTo8ew+BF8hc88zs6PTofL0zs6ujDjnSnpk9 + ZUvjP4ADNAoFMR2YUVONfjic3yThiRWMoR5dQ3O7M1NmxWYdwQASyx753mJ1KYzjb1yxQ5dArCd4 + NjCx3oUdYJ64LQRRRVDf64R5V7BPFpmO+LYfAfF6y/YeniyTkL///X8ErvEiNACiX6h3YDP+JTPC + DxSJU7FwD5riYIqG1P9tau6puMvZjO2Zw5TB4jSxOJp+Z1eMbsAcEca5wEKEDHRahbiMqcv+uyMz + VvVV6ZjQOcrELhcNxjFfj5Aj7OTAo9KddUtVDu9MaMamOAdldndpiClqh13YOfIoPffKz1DTpjzM + 4pQEgpH47KeNRkNpxF7BPfNYiGnQkGHedZKOdNCXL7GdjZcvuQLvpbDFSwZQ5FPuzkwRA8kEwvnI + s0frafWnsrwQenHDP7w4/OHDC687Rm428pxR1Y/4QS7QYB0pQzZjBws1tFkyKsHlgw8vWtUQlnhC + cjxNqqs5WPkj4q4Uac9xyciinWCaMK85lR+EQCyNfyQR2VCsK+EuNB6AjFQV5nfKyGchn7nXoK6N + znfgcoiUi6U9gsWFGTa8l/931rB9aT/SDs5KdO9nnSesa8ik7Pi1YGs5mkM+UA1l8jI9v0c84iKE + f+klyn6qGUnKyEIGCGcQ78SfzMSSGsP4xa6Bz4VMIfXDVONBNgCWl5YvoniMGNiwVtCHK6rm5jCE + 5yKSLyzBpgxBmopQa4gFXj8oxBQ5lQbjIMK2tx9p/2pZAa1zewpITlY1YLx4VTlaRaBJ+GVlgjJ2 + BN+2zF1XF1p2IGc1gWhK/fGeMxhN40hEj+azjjJIw55RLdmY6CVeUx6muAFM/hvDOGx4P5k4kjcI + uAqRButcyc5cdEVQ4t4e8t56NLUrAa/mmpn4GOKhZMgLMU2m/7GdGLkF5J2Mka+BUfPOyqyz+Yjw + tXoi6yMbnqvcyc1B3Op5bhz9Vr9uMTBWS98yQro0/hyo1DVlcKYHujBqcbN49/NP0cMMFYz0b2Fz + 84T95L4IXC1tIRTzW1xJ+FfB5OqPzwPnapzWgkG3A9er6bkRJK9IuQzSZzdtDt/nNnDhrx3on/v5 + ZxoCq8mzwzZCRfR7GAurV6l2hDvgn9uguEMu/bsO8D0owAdDagsBvirIUAf4Vgf46vs/2pedo6uU + tVTbie8dHmRXg8mErRaWhfjy7uGQHTifMMR3Jz1ezLReMmr3gyi8aXdFjLO1Yn0n5ycHxyf3jvW5 + G2FDfYeYzxOF+t6rr02nRW/zbng//vg+09uuYBlbfGAuSYhjNfEyrXcSolcD8Bg/J9rzGfmZRXU/ + GiSp4P1oS9eJlDy1k14qyOtaFY9C5xq8l4A3BE8/R0/4rN0L0H6h7YssiXvUNqRsG2+xDftr33DY + xuHb1Rs1fK+G78Mavi99xGcWcMWG4LvX7Z/qJVVLsDs9nE5Z1PWE2G3nVIH362g89FvNFjni/pjd + EuN5vR6FH5vTA95aZUH7GPN4ItA+Pf4LvOWQ0ovmUFVyDNxWzfHln2UPE0GKOIlfiTx2ZWXwGuHE + x3rvtdPgBAj0bigSEeH2yMPmQevvRRBmGd1FAUWTsMmuyn/7x9tfNI3F907EWY6ZEux1EZmli390 + 2jj4i4YyndfCv2+dNw75jTzkfsf5OFUzYGWsihlbZVupDkJ04yiZYjRxkWWtVZeWURHl4auZ2SjK + vkTya5wJ973c4yS6CTrFgGIVMfdsHh1Xi/ehPXKiEQXBYUaW2IAnQlSNiam/JnHy6l1on0S8Amlx + zg6RJBB8wPmIzZqB3zoNjExXn+jvhAvGgX+FQVtCqq/5UEb6yD8YK7DhW9mDm2qnTeQZNZ+girzh + 1cAff6OJrh1MLIHbP8Fj2LoUa70KvMOTv+xVfIQ+QSYNcY6M7i5MkpRxV87Dz9k+y0e6Yj8NPhaM + JjNdrDsMfMFnM4rNX5uCaF/7BBRPWJqLslTLv3Hjuryo1ozCg5/3fH9fdKB8jexX2cgAQY1gFKQD + zLCkOdcxCjEQH7KTeSmkeakxxvKlDe/vxp7qIUtW5iW/TK6zqxBdBJByZ9bAqE1exEyRs0TObIdp + 22sN0S+hDVo9dSPkjeWaiOruchgzLz2oWNZhHCNzb5EIHVI6lRI2Vj/HEeU6IBaHzb+gKxvS/O1z + At4T0Aape0KoSJOMva9N+yn5u9U4o1weNpvn5Exn/Vz5N9spyCjhZSfN+D+JwnU9lU1qXqWlDVeX + atj4JfbzWik/N6Vc8Yurnee9z9lI+wYU9yw7CS3nGOn56fRZQj5Auc8MsBEtf2cb9e8/fRCBfti+ + sGw7ywvBkq7PSEJSdPI2fJ+huL6yw/DJOkEszrZ8m/T3DcJtPozguDJ1GGF1GOG4DiNcnl+ffHQL + XzccRjg6uQkum0cMVCyLJCSnneHlzkUS/jsQZc5A8r3DCMciesettcIIyeHlaCbN9wiTeKIwgkHL + 17C6BNFYGWXur2QvXHwA1PM6KLFEwRysbxRrpgkqiQClKJUF+vmR2NmooL2mAXKVMan1vX0GWTFl + QVCGWjZacTYdpxMOvHHYxRFq1boVyU74lX2FiG14HfZQVCuEZZ/g9KrhvUnyXIYpxtbUS8ayc0Ay + UebZOMD9M0gc6el7TWtf/JDZMLC9EGNPeKjO32mlLzO8cCguI9uJIpHjtRhbCezUkcwiFDYzKREs + v4GNIhZLnorNmqSh2DNcMV8g+g4WXgpiRcgb6EJPiiEt5E0FpbFWWAos0WXVNi0HnblADS28IVOc + xNBm1a1YEDDmbQJL1SZP3iWLz+VZjtonxcJuhPuzkDumFVFjVmJjq0HrKOgNlFDMbxDO62mRd2a8 + gI7p+o3CObg3PPJuoNo8EYs+0OybYKrpPpjpBBXR4iTI15hDRQUauaVxLOt3yCZ+iaZ6CeNlyNGC + AeTQBy+hCYUX8vosa/ILPcqcF27yOJt2h4IwSIgw6RQTm+nUS5B+y4Q6y2CdlKyP3cfuqRDMMEoR + oz81DO4E2X98jI51JxDjMcShzjuU+3ZKnpzdCMOhPVElI2X0CfOgwe5kL/HzxDSERBaxEBvGKOso + KX6vKEouVw99GO4j0205Y2TESLVzWIQ9EwZCgTW8GgGMTEvthayzl6blti11J2AazR02CvPvUE8c + X0E8+Lr/mZkn7mItU1/k/0ZTzpedoMXYEzMWjN3wfkOWTB9fMxupm4pb1w2zqgX0D+9+LfcMNBcr + fYAXINUoLagpjKemC9SlpoFKPd4Hn7AbFchANONEiZjrMgbEToCiJJEd2x+JHipwextlrmAJopDZ + vgfXuhl7Xt0xp5G7bATXLvzXl7/5E+tRINMLr6VfKH4PFSIOAkXEzM5ZJwOA8RVq7Fja3EVTAVkA + yopzk0HHtphOu22kmFWizGwv2T8xQWNNOZKNJF/+DAsNBFeb15IGStG0xhSeQH4lczct/VG0uYCg + XibYxBk4vilTAM30+jNPia5LGC4ynVYi9fzQfYKKKEXq2ghpSmBIDPPhxftEc8t8bxAVuQ+D2htO + x0h0yjCxPgIRSNYL0YXiBeqg6RzS6IOXof7NwSHpI/+WpSdjoUpSlkr3whQbDEfaksvRGC8z1va+ + hGIfaU/+MNYFGBGDvpEZBLBEvIuvrvGXyJNlW2FUcAZ2DcXYCRpNDKhhTCF4ADkOSb1JIstveL+r + Sqza/tuCUry9xK18OE2TsEfx+yfU4QDRGycmhcQu1LXL7+NRz9e4ihhbfieM5UHQOxhrDqOynfBn + 4PuB99PrN6/RlsAYAwgevHUm6Xwh5kieoyo46cmu/ghENIW0ES7OZhEqNq+XFgONLWh6n8pSxWk+ + tA0ytYEPPsrW5R9JJ+D1ihDOclFI/ewZRFKACXFXRibIjT6x2vNEXwLVGEK7mep7sxN4c4TMN3wm + 9lcubBnx05LFZHp98Le8kaqcMx+hErZ8NxM/A3vbIibWBbCB6ZSrZO5AdZ2KKnMhGtQ8S/b3nAUj + 0qE3AOg0aZ+EGj+STRXjRt6CvPKyIwCrxLlNmPcPydgfIeOwesZuqfI48wdGBZgbeGlwWYHuWobF + X9f+oADEp9B0AhCapd0Rke1QiuxDETYZpAR24e1AH98bFmI1hGIMdRHEElFJoJhNMbE2Q0hhTJj7 + G7g+sI1Sxty2jip0XShgqSStwP9ggBAVev+LcWvCcoEJDwkJMZKyETeFzNo3dubEh1aDlLwJxDAH + U+RYYGzLouflJolgr5QRPJKJnGXvwGDSn62/lpGSdMCgUOIF10mkXCfqQIbqBUjdF0RATq6SSyxr + hk098WRNhofJVDaGFd+XmbvpOV7PXN+iRoZMK4SaJIgJxYWDZYV2OpRO9M9gFjDgAqTBi3tCE6hJ + o6N1NmoFsSjfpAUDvkYYi4m3De8PK+5i8Mn/+92iW4w6QFOjDjVIqHnQZSM+5S1zywXDj+8C2dXy + WbbdYeAsglmXBSOYgHqTTF8tSCFgCGsLmbKZqilN+Q3MpRU+uRVAbdZOCOR2KlJrThOED2vk+sJZ + JsTv1GjDK2GpJKI2KCSuOTojjOCk45/z0tGQ8bqFoJzGocUSRZeKMJbZ5hOgqYVAsAOtTWqTrBCs + JuKWSr18tIyuXgirAba0roN2FPoWdBnHpucDX1AlnWIu+hsZw+gcowykUWCLkUwxnqjIwZwS/5jZ + vlilJjNXw3M1uAcF6cGWD2yjKIJ8JJbo2FcZmiUCPodCssnx0BBsX1K2Qrigp5Ijnz1HNwrZsz56 + NL2xhwjOMqELmE2fTUdjGNTYSp0CesGwQMfORTfecCyJB8XDDjxUu9rnQlvukKmhbCGOgGTB4htA + osf6Go3V88RAtIEIa8oE7/JIYATHiHYbdrmXaBuosbw8VD7VsHaph1Uw0mCgl/4qJmK+TALHGgtY + h0BtaBvXVfZV149kEt2iOkfAu6YRAr3iYsCgKdW+jwAHL5oRErPpR6nJjAbv+GkaonfNBfo8QINn + 4kEgCq6IhQflN50wZ+90dFoiafBqdRRQ5NGzgF7adAhFc3qyULHcMAyVs9Xde4xCY+/4VnDFMIjG + Qg807qEdEwKqAivUWrprTGE4mDyyMnUQ7N2BweD3c9NpBlkyMEIPru/4WLHBFtAc0QH4K6ZChGdW + Y9QtoASgtHAwVSbpz08KbTNoYGBzrhNN08f5Cymr7zEHWSKStDR8JvapNGDm5eYGcN3gOIEcmvwn + xjktAbFzK7Bz1wCOE35CeZJaKhdmrvhvao2pqrWHmmgVgMKkgsVBkOQhA60k7d/jU0qUVlXroUHS + gYoWQmMy5MeQjg5tvD2UgJVrBf4I6bGxVEagkKwGkcQZ89HdJ76EIRslaxqE8Cm7lFOoFXf+VkGC + wRUuK/6mqdIh1Fv0wbvwb54IhXicfq0dxdhl1ZYM1F2yhit0wHbOu8sg6G6ddzOKjYosPZwtz31s + 7Rn4eguhwsVnTQsmM3+WWIcXseI6vEhvasfCi+BRWxO4iThjNR5U1sMDjjPjbCzyOC/CRlIXyLAr + wY8SpZyf2j21Sx3Z3HRk05WILzjEOc9vcxh6j+gn6cTC6PXCoNVzm4+H6iJsjo0GR81Sy8SbuVDp + EkIskDyXQNCzVVhV1wSeefz46vz89e8F059dAH2Z+dhSHZPdvZhsxVtpHZx9muDsvIjNStLzj9vO + sNguB3Crie5YJNed2OZDuqv57+HR3mrWddgXz9Zh3y8v7LtadrYTEXblqg4N16HhbYaGZ7B7dYz4 + jizo33/6bHmmG+9beGgL37VL1GsLwyH5F4Ew/DcrOlmA3jn7Jjy+8WR5N2G3TpZfnSx/VCfLX55n + 56F7SLPhZPlW8+b69GjaX5UsH8XiD+9csvyv4WUc+yLTP3aC4EeSFPrmflnzB2et8/sX37vbYJPm + D04xmyfKmn+N4w3Emhh76/o9YPSAd2mpCYhbq2jswmKy16rs0SoDbAzSkMabPUvJUTc21VP0vyUT + vyc2jRZAZmrrbucAsmSs3TqAtMbjtog8j9OzNuti+t95qAZ3BXfI5b7YY6x604Z46F7UxnFe2+mz + I+gkG8Tv9g3nbR7bHbVSY/tqbD84rcH98ux2kp4uYIsNgfvp9Pawc37OirKl4H728ePO9cP7cRJ2 + OvyfNWG92Tw6vjesA4KGk6NmMoPrmMgTwfovfoagJsuj4ZF4vYIHnHcvZtwOHFtW2Ek4vj9xaqxc + jJXUNkIGfyQObqaub9lwzoFK9IJo93FFZw+oCrgEZ2wBLitxreHyE3D5zNHysQFxkTJcBoGXWfc2 + 3jUI/FcviAKh9r/XQsCjk+OT84O1EPByeHLD1X8SATcHdO9xeoPUkH3sP45CNHXPG+BWY2Qk4tQv + GOdDOFA2+cxkFiLam2v6Vc4DOBy5YAKNRuPC64XohH/YPDhHCptNyipTp8Lcnv7Fev6C7A78emTO + SiycaD+lEE9pdhzzA5lcwMswvZA9eudBeC3ALRnPRdSNguaXQeidBnT70UMQXTR4elXK3uNiOplv + 45juKqBnjOnEkBrRy98tQPTZbdxJ//dkfBPcULyWIX+zOH7qNjB3kP/XYIQWXuu1kz06bp4frAf8 + 4e3lkNHXXegB/24kyDQesgMdjj7veHUmZUZQSDtmN7zfNd1SyxptLrCDRH//lSfommOSySeTcFuB + 7JKPLKV2ynP+LNpiCJvscG8i7zRgP0sPnBy2ebR2tMYzRmu7tq3i9XNvAP/YkLxIqS7D4RKKdgmH + H+iBHzdbR+s1ZAtvDsIjF4hftTCRRUi8OcB9Y8riqMbl8T2bi1SpceY3I/vpg2wmvroDHB9eLMTT + tbCz3PutOcFrLZVwx/KVZWuufrHbOGc/egjQPaVjSobYBtSVcvmMoe4RHNNXrWeOdLP7+Dw90xIT + dgkRH+aZHp0fnh2uBYg7dSirt26mnsKBjwJp401pcNP58g5WLETHRYbReohpecOufqe8zc+i104D + 6rN0HMksm0dTR6ifMZratW0VT597oPexEXORflwGkyVS7BJMPtBxbB0cnzfvjZMuxUu/8QjzWIST + m4PDd6itNJXuGa5rRmkrhEpbLeDo745aZ1nP0Nfyqyp4qIWYKCNCjaEABEdLA+3jx5I9LYyJhadF + 9Ie4soWHkrbKdsy6eTQJQGcGUxm3eA4LoXgt2C15bWuO6iPQFi9ySmw3TeSdxm/70UMA/CkdYjLe + 5iHc0TfPGMIfwyF+7nVIu4zgg0P/lJeBPBaCv/jh7S9v37/9gfK0eRhvnZ8dNte6i/sujC+913Nz + MP4v8oRZ3GfBYrmBW4PFcq47jS6f4R0+Jbhw+zYOLq4UbANcDLE/A1sYUtoBbKkvhGpfnp6Ou6MF + PLE28Njni5lg67g5DZisuQyDjq5u9QePhUHm6ZXw81/JMG6/QUMgUQrMEr03Bh2cnp4crHcG2Tpu + XWud0C6EXG1jHm2cIDpM/Bhkm2gCSir/GyGXFV14NFmU/T5jdNZhDmqAwkntAYTv0As2DgqR1mQQ + 8mpP/JEV6SCAJ4NHYvngVTKWpY3Mr8o+W5MkjXrotIWOe+xZJ9ytt4eip4P2bsM4tnlbxh6dTqNC + bSGZo98VGkzkVeuhTpZEBXs7xokX9gJ/UYPOhneBXvJQEVgRW/lY10uzZ7UzqF4KyVwcNM0AU8y0 + OO3ICnrsL1r1FIWbhwYrMrVBEJs+bXmRogmp9mMBwYtAG5BUM7fTnQynyNu1s6YDqn1MjVOIrpMs + 1wGV8ZNr3AM58i+TFD1O0ORMpibvR8efAJ3b2LNS9j5C15xOcqNvFYrTxWXzMbTOm8hIbDIlI+eh + 6Tbk2wa3gtWjItI/kZ+ch+xgMtX+PD4aXHXQ3KQkgfajGZs+H2WXNm27ot3D0CKo7L+jjjc7U2lD + FVAizNlbhM05M/bGQjo0m+loUyw0ctGWVmEWsK1dVnSvFsYmFhnRaxlmpVazErtbxwS1jM/LOAhj + YzO1sH+xwv6lejF2/If6MLQC99EVEsYFmFZefthsNnHveBKJFQJitnk3cJth0XYY7xs9t3EPxrWh + tuHB2Nl8hgtzR2EvcGHs2rbqxOzWCRd37+S4eajBzcd1ZU7y849nC5hjQ67M6XB4S1N5mSvTmhzm + 5JddcmW+T5M4+eH1u/WcmJOjs9Z6FQ3NadI52RUn5k3ZrA32AIro0pCQ/uHFBKBqm517lrIfXqAb + Lro1+oCvEO3E31ed3quzHfnmW7SNeaOtXzE8bifw3nUFKfFtkH6FDpZwGgRStVlmGLNzorGWgLTB + jbWA0BMWl9DDhsgK0dSKjDAe+tq5PPsrr1fQwj4UDl4HzvxTbbesXUA/vOihQ7a8HgsSrOSDd34U + heyCx581sJqyUyzXYibJJoda848Gsr5XPQZLxPfsu7RbDroD51zRsnVUJMXeyHpX7UbMNqjoRxrA + 9GMpo0Mqa5ZxZAwpxq7IBprnm6fLhs3GgoydDt8pmtKa7SjiEJo9ICHEuCvveGDP0DD7lmTQ+y+w + wrLD6XHzL0oCvA1/CDbYlvpoKIrHYCeWFEQaztCP+qAe3owm7ikardIqwkKDsgs0v+Ovv2NnKFwr + QDuQ3WjVTNLdNa/5Kuc7umrsyChkMe9r9KoVUx12o16zwc8DtoDHGNoaWTRkN/iGTTfFZBzYToeJ + Xk1SLfyrZcvGG2d+dtAsv8IP7UMynZnP+TN8Y66RwrmoTHJmqS+XbRnu5uyyW7IVEHybicqeY0HT + BrqLJsZLeB3/oGglqTacdd7jwcAeyGtIjQ8v8DQmL5tbxOZykjsKgHK+WBwqqlkaggLCt0JE/KVv + GEcwuSF1nLlh6zvfVxLf8F7K/r30MlHWlEQyW9lb012v7nTFNlMkhlU8V/YXJS0VdHQb5EUvneeg + kKrH/qrPUNj13ookEQO8zxbNeiJektnIPFnVyqgKaIALg3RQ26bfSjt/aBo+20a03isODGe1Oi0f + FyA4WpDOrwwKCKpEPyqFfytRgNIg2MkowHKQpC/MLPsl+rn6wTqwOe97Ge/LTmc5orrOOTjd+fMJ + MLZafCl6Lj2WoW71Gwd+qw/vuqaz5FmitvjJNiF6LV5YG7Srh0v0nhtvfRhfTcf3w11E+NVz/iT4 + K9G0UPQRrIDqdctoNGsOuL9/gF2wmjgLTQb9hb2XZhmvmJGd62uewJogbcjvGGaFWeFS8UH2RfWm + 0tCYffm8xeE8UJoeC59YoAjtvlni/lP7abvkXsdOqRZ/f4PlLhOYKbqTWDD2F2PUmLXW0c65aCcD + Rft+O8vTJB6042SQICNDRhu1EZwZBu1JOIiFhiZfY9/YcpuPdDqBljrS+clIJ36ol+6Ysf73f/8/ + zFnUmtYKBQA= + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '44468' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:06:41 GMT + Server: + - snooserv + Set-Cookie: + - loid=0000000000edk5datt.2.1630958800965.Z0FBQUFBQmhOblRSOVp1M0tTTGN3ckxCVmFuSXB1Rm1oT3ZrWXB0VzFOZlhxWHB1QjBUeERud29VbTdLZEFQT2prcDVyOUx4NXlMODZBVGZDMWtJRXRQLThCQ3hDQXdmdU1CSkJpNmdfREpscHh1U3dJV0lTNDlLdEVPS3dWdVJmclZzT3JpaFRMVnU; + Domain=reddit.com; Max-Age=63071999; Path=/; expires=Wed, 06-Sep-2023 20:06:41 + GMT; secure; SameSite=None; Secure + - session_tracker=kiiffialmkiicpjghd.0.1630958801146.Z0FBQUFBQmhOblRSZDZ6X0RJY0FzT29wYktLU2wySDdkT3dWNi1sU3RMaS13WWpBdjNLcnhNNjMxRUROYzAtY25oOE5BUXM3WFJkUVF6NC0xTTN6OFh4V0JZSDR2dnltdzFCYVNyZndXNXd1bWJvVkdOc2s1aTNsOGI2a3VnM2hGTlpCOUFNNWJ4anU; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 22:06:41 + GMT; secure; SameSite=None; Secure + - csv=1; Max-Age=63072000; Domain=.reddit.com; Path=/; Secure; SameSite=None + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '299' + x-ratelimit-reset: + - '199' + x-ratelimit-used: + - '1' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?q=quantum&subreddit=science&limit=100&before=1611069195&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1607915595 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa23KjSAyG7+cpUlynpvp8mFeZmnJhaKBxAzbd2MapvPsW9hzsibVxtLMXW+ur + BDUfslr6JcAvn56enp6yMk959uXp6/m/5fPy86+zvRhdnly5mlKRfXmiilIipGT0+XaZL7MvT1nd + JpvbY/bT9vr8MJdYRqXWALcPO6GQXGoNzG1SPWC5zBoCcbmIJxzXcKXA+PomuhLH1dYoxgFuLYdB + I7lKUwHFoSKnHXLflCXCCoC7rku9R3KN0lRC3HyaaiRXSm6hPLMbethiuVxaA3Frue6xXKoUg7jr + gzFIrtCUW4hL9wXWX84Yh/LMqGKacVypmBRQXYjTMVkkV1ohoTiIeCDIOhZWWQPlA5OOUTRXKqje + mAgBqWfCGGmgPKOD75C6I7QyBPKXzGFPsFwqBbRvpDsKjuNyKrgFdN3H/SiR+cukllBd+N0msAnJ + ZUoLYN/8cKoHrL+MWqoh7nbjCjTXcANyHbaOGaOEWIjbb7H9mDHCrIK4nZLYfaNWKzC+gboRy9Vc + Qvk7VMeeYblKKDDPnKAtmssJyC1jXqK5xBKQWwSD5QrDOcTNU43eN841WBf6OGosl3ALxpfxFu0v + IXA+0HpA9jdGLONAv/D9aV9wLNcwBuVDf5w3WJ0kmlkJcQ9m9ljucvMCcSdxbNFcAs2pC1cdsFxp + NehvOnQOzWXQ/ZDvY2hrLJdZDel6P8wceb9JjRIMqotezjMyfwlTnEF5VpmCIvsmoZyCuuOScKi6 + INZaocF5x4lBD1guMRLytzzaE5YrmAH1LD+1+YjkMsmh5wQ+L6MJOK7RmoJ9SCdiKJar4PlMR1ko + LFdQAem63gy4eZJYwyyD7i+8HPgwYrmGaSgfZDcLj+QSziRUx8KV7QbH1ZZKDukZ354oso4109ZA + cyqZu6bEcZVRBtLfZvY9bk4lVmlLGcjlTX5EcpkB7wOafbU5IfNMUSkNkL/NNJKNwHIphebfZvL1 + HhtfQi0Yh4mcKoHmGjgOJLYJzaVQvTXptGkDlkuYguKQZqE1jiulkRTixjZWEstVVFGIW3XYfiwE + 1dDc13RjrZH+CkaNgrhh3M4HHJdbZSUU38BUy7FcRsF82Oz3FNkvuOF/w63bCeuvYUxyiOtSY5Bc + zbWBuO282SDrjSshJaRnbd3RAs0lUH9r2mqokLrDpREG9FcUOTYfpFbQe5GmZcGf0FwBvQ9oWmZw + z+UWLtcc0h0/jesRy2XaQHHwcaIUzWWgPvhxd5BoLiVgHMYqKCyXGug5eON3R1GjuRx6r9f47SkY + NJdoDnILgc4zoqH3eo0fxujQXAX2Nz+08oDmUui5feP7at8jucJaAeZZT8kJz+XgvvXEdWiutKC/ + 3ZobNJcJUB9C8AzNpWB/86E+7NBcosB6C8bg941QMH+DvHkPef7r22Vx1rmUf//dya+rZHmV3Hhh + L7ec8vrZZ5bX9Sr6k1vshFwbtn61d2P0Q79cmX8m2ZV17aphdD9+uKIsvYG6uNpNbpxv/Dhb7h++ + IIch3LWcrZUPl29x3/4+4eeqborp5oc50Ofl3RVnXnJjF9+97M0pcVqPriz9Y37cnlp41xdXyvje + 59tDK1/fXfX6/KcCNuZ97T4WsNsieflYyOp0k/wPn/z6v49cSDcV/h+OXPTdNriLKq1iGn1ffyyO + pavyKaTVsHVjnoZFibK8L7PnxxGVd6GMHy/59VDOH6j3D3j0Q42z3ZT3aeqyP7Vvn/6Bh1lshiks + 7e4rrF33rwDky1nyV/2Q7jNvWb8xsnvN8WIYxnS/k93WXFa6WNxG9vXeXJC5oyum5Id+lXznVt0y + 8kRXDP05aTj7fP3S51dD/PpmUHiGJ4xPdzYh833pjounY7EqXUg5v271wXfnRpVRcjMCXA0bWRon + d23bXSfV1fGzgL0tgTsx/Hupe1jWHhL/14+lxL/o7SOC+663d/d4dHEKKa5Gl6axd+WbeS82+Vi+ + nWOyKvfhvPxN/m/8dnvfMhWFi7Galmns9wE5DSk/H79bA3dH0e+Vdimk346v0rxdzriJ8fUacNR6 + O0pdx2spwXI1TMt5VR6iu7YtX2H1PaKLt4Z8ukT+9S+xeKj2/S0AAA== + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68aa51d62f925425-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:06:45 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:06:45 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=HbOAMUBEbmhDJ%2BHR%2BdRB1QWrXEzRmZJg2s09GV0DY8AkkSLtDS5Hd3NvVN87DMh5N9oePeAE5zzMnIsMZp%2F%2Bn8ufGMSKy0NNJngScRXXM4L74nR4c4xm%2FvYnbM8Vv30g%2FH5F"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?q=quantum&subreddit=science&limit=100&before=1614222795&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1611069195 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+WZ23KjOBCG7/MULq5TUzqhw7zK1BSFQWBscTASie2U330LnJmBCb2xe2cvtpbK + hU1LH+1f3a0WeXvabDabKE9DGn3dfJu+jdfbz0+TPettGmyeDCGLvm6opIIRQbl4Xg6r8ujrJirb + 2h9rGv20XZ/v51JDtSIQl/a5xnGJUNRAXHtm5z2Sy5hmCuDmVdZzFJcbHWspAe62zU4UyZUxYxTg + pq/HXYbkMsMFxNXDUF1wXG00IzHAVbXsCjSXSAFy6V4huToWxEBcWRQByyWUMYArTxdZI7lSxgyK + M2l8IbFc/jdcYcoSy2VaQHks2aXp0VypBMhtG4vlUsKheIgvtUmR3FhxoiGuP1QOx1VGKAHlG4+p + QtYzFUseQ/5ScnQGySVMcIDbnFtP9lgu0VpCXOdfzjiuNCaOGcTdmzNDc5kAdai63RbL5TE1EFdV + jmK5DMyL5iwOWmG5VBtw3YR5OSC5QscK0vdlf5bIfBv/CBQPgzTNgOPGhhjBAa73pxqZb0IQHkPr + 5lzvNJLLjaYK4h761GO5SoHr5srXDpnHglAB9ZPNvnAxct24EVxD+u7FrgtYLjUG0mFPd7TBcZnU + wkDrlvG6bFFcZqQgUP9bh+0OmRfMxEJB54vaX6itcFytFJOAvnVHhgNHcmNJGMRts6LF9dVs2uCA + +uBeXCg6JFdIDfWpbiiHrsJyY8EMxC2yg8JyuVGQDkPeny2Sy5WB+h03KCIEkktiE0P++n3oKZYr + NCEQdyfdDs1V0PnY+R2pazQ31lCc+bINJyyXSqivdt5YnuO4TMYSquuue3UVQXI5Zwo4d7u2LqtX + FJdqJQ3U97n49SRx+yYVXBINnC8OJX0xDMsVSgD+HorTmQ5ILtMxlBeHIt+2KZZLKQfi92DrlOHO + x5RLSRSQbwfzWl9w+zxl3BgG1J0D2xbZccadPn2/DY5qG9L394u/nhKlRbD9O5uMoTaLiSgty8RX + Fzva5+JHaVclL7b3VduMT+ZfSDSzbm3R9vbHC0rG1AJqfXIcbH9e+DFZ1m/fkG3rVi2Ttajc7Ves + 2z8n/BxVDz4sXsBC19unIyZesH3tP33sYooftr3N8+o+P5ZTs8o22Wyn/Oz6ftfI66ejrs9/SrA+ + bUr7mGDLJHl7TLIyLIL/7snX/71yLiwy/D+snK/qztlbVUp86KumfEzH3Bbp4ELSdrZPQztWoiht + 8uj5fkRRWZf7x1N+2+bnB/L9AY9+VOPoOKRNGOroT63b0z/wMPK7dnDjdvcNrl3rTwDiZSr5SdOG + deaS9RsjWtscb4a2D+s72TLnotz6bKnsda0viOzJZkOo2iYJVW2TunKu8jZrmyloOPsyb+Z+bYjf + PjQKz3CH8bSyCFHV5PY0etpnSW5dSPl8q3dVPW1UESWLFmDWbEShH+zcdpwH1ez+VMA+psCKhn9f + 6u4ua3cV/+tjIfEventPwf3U29U17q0fXPBJb8PQN3ZMr/m7xcjv0j7/2MZERVq5afSH8D9UXbdu + GbLMel8MYzP2+/95QhvS6f5qCqx2ou+Jdsuj3+4n4dyNMxYSz8eAndbHTmou15iBedIO47widd7O + beNPSN4FnXR8uul+/Qtf/73G4x8AAA== + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68aa51dc8aa0548b-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:06:46 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:06:46 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=j90bSuU%2Fqkl9qnyj0NZVr%2FY92edlkupQ8XGNn2Vn0mxzBXpeAsZwVMrq6SrwI%2BdmPB61vSo%2BDGvMDr%2B3gGiUgbShzcR%2F0%2BxiTONom5bJRbwWjIH5fsOUWwsTb%2BkiR8bKleN2"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?q=quantum&subreddit=science&limit=100&before=1617376395&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1614222795 + response: + body: + string: !!binary | + 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 + nb7C5tWjJ2ulfrh4/uUv8Y2xOvwtAAA= + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68aa51e2bcf2f97d-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:06:47 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:06:47 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=3vuUYomdfuC17v95evqWMRcK6XXfO2ql9Umlu%2BPCmPoRO6AuEgCbWTtmyU6MCrgSoOzX63xWqZK2cGKMUvGgMvVX0pRbcF5YPkrK6jVwn6qA9nqWBSlF6UPpp8WgypT1yByk"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?q=quantum&subreddit=science&limit=100&before=1620529995&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1617376395 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68aa51e8fefa541f-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:06:48 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:06:48 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Ac1k5QGv7OO5vKb9mrueQlVZ%2F9jc9Y3NDMSjDJkufiM5b%2F24zXrKt9%2BUSeChjsPjxbqGj8XAg%2F92R3JhSSZ%2FBdohnmtsTOeTq5s%2BwKpJ%2BR3UF41Qe%2BLPU%2BdxNbaoKyeEs%2Fn7"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?q=quantum&subreddit=science&limit=100&before=1623683595&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1620529995 + response: + body: + string: !!binary | + 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 + Usen41/7Q2sV/S0AAA== + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68aa51ef3a175467-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:06:52 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:06:52 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=GEkp0QUsmjalggHM%2Fp7tRccckLmKhKXMavcpWvAjcqbkhOqJ%2Boai34Nnp2cdYiW2zmByYSjANAhzGZY0FkJPtH5thIrflqWkuemVSkRoocEfZzrqtgLiTBQaLi9oyB4QcMVh"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?q=quantum&subreddit=science&limit=100&before=1626837195&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1623683595 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68aa51f58d9853fb-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:06:52 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:06:52 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=%2FFxpntVwQY38ZPhURKi%2Ba%2BNZ2ORg2s2dPkXoq5ENMejR9XzwlnyWjGrdjvJt1ve0YE5u5e04eoMZweXopzY68NrKfeD0ABJmfMg9z0%2BIZJjPHOYLW3Jckc89ajy0lVmhPEvE"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?q=quantum&subreddit=science&limit=100&before=1629990795&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1626837195 + response: + body: + string: !!binary | + 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 + x5afsHlVdLFWqy8X5V/+ArrODXr9LQAA + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68aa51fbae2b3fd2-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:06:52 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:06:52 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=CGn8%2BUEkVAwjBrMl%2BQQg69YwyqrIAQucnpCpi%2F%2BSuZJE%2BJkk6lsXz3ZXO4LrYYgLw9GgWjPLG5%2FhzVa1LoyFbCPXuLyLZuJmoyUkBgvmyckkjJfitkj8emBFUL0cScz8hbjR"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=R5kcDw7QjgxxWJEznS; loid=0000000000edm5w4t3.2.1630964551811.Z0FBQUFBQmhOb3RJVUlNWTZoVldVUlJzQV8taWdxR0IzcEkyV1N6dldLRVJaY0h5UUpkX1JRZlFRQlByVnRuV0ZMSk93Xy1kblluX29lUlVNVmRJUFlVLUVrRHhXZldfdjBPeVVEYjJMNk9mRVdNX3dsRVlKZ29BUi1iTVBVSzg2YlFySS13Z2p6bUU; + session_tracker=hkchokqkprqelhpqpd.0.1630964551893.Z0FBQUFBQmhOb3RJaFRybDl6X3JLYjNka0RhSDk0dzd4ZGt2c0tKQzNhMlhjMEpuQVV3YmVLTmhqSHEwU1gxVWRGcm9LWF9GN3UtWV9paE16VXFaZjlpdHg1V1haSkNnVmRodTByc01FUC1vaTVONk5oN3B6X25RRlhKVHlCd3d5X2YzUVhhVlVCMEU + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t1_g79bqrn%2Ct1_g786qmf%2Ct1_g775suv%2Ct1_g75ysf5%2Ct1_g75lbrf%2Ct1_g75ei3r%2Ct1_g75ect4%2Ct1_g75e270%2Ct1_g75dx5p%2Ct1_g74jrf1%2Ct1_g7445cw%2Ct1_g73qryw%2Ct1_g73oi2i%2Ct1_g73mqnm%2Ct1_g73er5m%2Ct1_g73bf7y%2Ct1_g73a0ct%2Ct1_g72ton2%2Ct1_g72hf5o%2Ct1_g72ft99%2Ct1_g72fnhs%2Ct1_g72dm65%2Ct1_g72d6qs%2Ct1_g72amuf%2Ct1_g723rm7%2Ct1_g723l9c%2Ct1_g722335%2Ct1_g71znwl%2Ct1_g71y648%2Ct1_g71i9wo%2Ct1_g71goyg%2Ct1_g71cjbs%2Ct1_g715xfr%2Ct1_g715q67%2Ct1_g710pc6%2Ct1_g70wcr3%2Ct1_g6ulnu0%2Ct1_g6ug5mr%2Ct1_g6u8800%2Ct1_g6u1l1h%2Ct1_g6tugdt%2Ct1_g6rv5xx%2Ct1_g6qy7kl%2Ct1_g6qjc8p%2Ct1_g6qfubo%2Ct1_g6qdw5e%2Ct1_g6n9dl3%2Ct1_g6mrnmv%2Ct1_g6ldwie%2Ct1_g6jyx6l%2Ct1_g6jdftk%2Ct1_g6j9s3a%2Ct1_g6j4yft%2Ct1_g6ipex8%2Ct1_g6bri3w%2Ct1_g635n8s%2Ct1_g62w6bc%2Ct1_g62v9w5%2Ct1_g5zujyu%2Ct1_g5y5bb6%2Ct1_g5ncleq%2Ct1_g5mb0dk%2Ct1_g5d96is%2Ct1_g5cl9bx%2Ct1_g5bkeqy%2Ct1_g5axkjh%2Ct1_g5as1cn%2Ct1_g5apopd%2Ct1_g59za8i%2Ct1_g59d2cr%2Ct1_g59btie%2Ct1_g595u35%2Ct1_g59552e%2Ct1_g59552a%2Ct1_g5933j7%2Ct1_g58xb2z%2Ct1_g58x97t%2Ct1_g58wzsr%2Ct1_g58mr1n%2Ct1_g58lbok%2Ct1_g58kot0%2Ct1_g58knth%2Ct1_g58k3le%2Ct1_g58i1uy%2Ct1_g58gyk3%2Ct1_g587acz%2Ct1_g5822dp%2Ct1_g56ubp3%2Ct1_g53njv9%2Ct1_g4nobig%2Ct1_g4l5irc%2Ct1_g4l4pde%2Ct1_g4gm9rf%2Ct1_g4gk8lz%2Ct1_g4gidxp%2Ct1_g4c9mpg%2Ct1_g4a01iq%2Ct1_g49evc8%2Ct1_g48qycj%2Ct1_g48nx7p&raw_json=1 + response: + body: + string: !!binary | + H4sIAFyLNmEC/+y9C3MbR5Iu+ldquLGhR5AgQPDpiQmHbMk2z8qWx5JHd461l1FAF4AWG91QPwjB + e8797Te/zKruxoMQQaLJptyzsTIBdNe78vsyKzPrf3Yu/dDb+UbtvPaT1A+HO7tqx9Oppq/+Z0cP + UhPTX2EWBPieHqFPnXabPowjb6STEV7FO0MTXQz8QJ7nb/ojP/BiE9LnP/4nrybtzNWQRqkOLvRU + x15yEZu+8a8MnkMNejKJI/p4odOLLO0X7dBZOoriCz+56AVR/5JfGOggMag1Go9NmF6ks4kp3jCe + n849Rq2n6nQShRe9WfFcT4chVVj+Kjbj6IraKE8X3wd+eHnhS5+6Fx+77cPUQ9ds4waB9uOL1Iwn + gU6NPJi/eWmScgWTwOcveNiyxMRU2SSKU3z3x3/Td4mWUXGtl2qHJ2e9T3GIl2y7Fweq1MvUT4PS + gAxpboqBjmmupIY0zmQUg0BPEpO/3o88vL3z8tXrV+9evUSdIU04PRZNi9ek73juD88Ehob8v3kl + 6PACTZlEvH7yqaKy6RHb5M5xu3N0cHZy1m2hTYkJUbkbGlvBRMeYXDvsnQsagsPJJ15SST+K0cQD + Xp352ilPJdoQRmlpGHRgFx+t/GK0s15sPFoxrp4jan025XGOPJS38wevCts9LsDE+ftzK6CfJBf9 + QCelCQ/1mMdS2u+m0IumIR5C62llUyPGfirbyQ0Yar8YpeMAb3/I2u3u955/pbj4f3zYGXsf5NtX + 8ttEPuRtlW/37dcfQvuZipBveBvTurBj8T//F3O0sBCKXkAY0JOZn4x45bgRTZKo7/O88rgUv9Dj + /Ut/frPSwkCNO/kEp9FE3qP357fwwr76nNKaDGSxeTq+zJfAxcj3PJY6rpaJicca2xXP7sf7Sd83 + Yd/sW1GR7Mvm3dehDmYJjX00uKDmjCfJRTo1JqXJGEXT5GJk6K/AmAl1+yIwSbJvp2+ft0M2Lm1b + t9UXxZM8YQez9KDdCzvL+8AtRjTetnyFmPmM321ZKcoSIaiLVZ3PZDHYxULHkryYxGbgf+YHdvJR + 4v0bhSl2U5z4NI4pdgDvsXITerp/OYyjjHZtPi/yrltAPdPXJNwu+nE0xUMoEyt5TlbNi728fXYp + 7EyyXuD3WUxO8Bht9v9Ly/QRw8v8PNpu8nzu3hh7Op/0p2zFotgYe9z79GMupA4ujrufu1e8v66B + odPjT+MBi8d7giH7dhmBXJsKCCK0SfxeMJv66cibUX9ojnhF3hiN2ocnJwcbodGR1+0VogjloEmr + sMgONe25sZ+NS+3YHki9G+n0SaJG9KZKI6XDZGpiZbehOqcfrowKI+V7RiuScNSEWFFFM/pNj9Ug + jsbKXJlQ0aamvZ/qEC1Q6cgoaqQJkqf+gD5xJVP6j5pFmZpGWeDJa31quPLTZy1FBfZNnGo/DGbK + i8InqVSOoq6ivu5lgY5nKorVWKcjev5FqCCNo+GMK1Bjfziif/WlUTQV1Hrqj2eSfuz3jNR9/mSs + gii6RAsHVJCf0Jt+8g3XzW1Kje6PVBKNTRQatDCe0RP0+Lm6DKn3uhdlqeJFmJo+sE1penyQ0tAb + RZNIkkenfhRKf7jMaUzPohtjejaOtDfWExWFPJrURJIWE9Ag6nUxhuWqpU4/VUB/niQ3UCqgxwIV + DeiZJI11HzUr+r5nAEr0e4TZlKewLRSK7vkhDSQ18D2PiZrqMJWhoI8JbWkMCtXbo1oxSpMRAV4/ + 4R4NM4I0O5iKNkNArc7fj2SMpiNDnaXRxZzbDcaTQc973IJSPzG75lPGY5ag6fgCu854ajKQx3mg + RmZGXYhjA3GF0jBJCnJWB7LUFDYxhmpoUjsznhnGxqBYqiJMs7HrjFtG+C96Q5vpW/RvbHT4DRZl + PwuyBL3SmMWYVtNYhzM1MRFNlkomBu3SAY28mhnaEqnGqtrlQbPjIisbZdhiCCknqQwzyReaJDcQ + UUQdDcbUa2oqxiXFsFJveDRiXtfAQpL4PCB4KM54tmVaPmb0Ks9DMQkaVdHgekODFUKdWNij2AmJ + grAvRpknqY967esDTVPBhc/yuWwxDCwQ2lUqyUYkNwcIJ/U0cRQS5/x2SfaVOfBcBbHfH1mSw7Vv + lSBDTuKvg+P/6J79/T4EZrm2zSRn8WYFIrQovJGl9ylLy8uhEapfoVD9WjVvV/5t9W5WXPbtUrvA + 0gyHgWEFC2vC/5PVRt6jF+g1Pbdv0WT7OneJ7Vehc7vWVKx0u75VqnZ3GqW7aqV7eBSdsjZ3ndJ9 + cpRkrJXXTOkOZuMonoz8/iT2k/FGCvfh6dlR+2QjhfvYZG1dF4X7nBnBJZMlwTCwEwKJbDgiQCVY + AO9wqDuJ/JBhl0CEoRWgooNhRDxoNCac+lWwE4yJ3iRwBEPCCxNNojUBNwLiUMM+EsfaVTohZMMq + JSpAZOjKtNTPM8K+NPOF8DD3SDQIIaFkFDDOlaUugF/n0J+3xb6pMesC6xF4rKEne37Kv33YGRgT + fNhRjIYRExtCREB4S70qV8GlUOMHA+X5ehgRRyU6GY+ZzGj1kx77QRqFvg53eUTowb2FB4XERsGV + Y9fGH5qQ9iwNMbM8lcwIhcfUPlBKTVQObBk6TUt9J91PfSZwBnQU/68GZkrM8U8D6oNe7crgEga5 + 3tpCaTAA7kRCFFHuoTC1LMR0aFE1iNuCR44nWYoa/7k4nglXSWsOk0MtYDjn6ZxGee0gRj2qZobf + SoM+pvqGwhzTUcxLqzyFttnSVLAmc0UDZVRP045GHcMg6lHzaIfQIkp9GbHSO255WjGA2knM+1e+ + l9FrU+gcgyx0XOo8pJJM30+wwIgMJlnMzaAOTA2vNfpPQIQvZP5ZZuqoE5VAP7jCEgdPXd2WnsFr + dqFjvPFMGPkJqCrmUJYu9QkPSJPpqTXtJg4WvghnNJEYMDZhyTLh5TMm9k59w7eYJYyiTmbFFs5C + mP9Za6MufoPmJLKOmFjy9soCGdpcv8NkeJHQVLfFxqY/0iHxa1nrli0zxXxL0kpUPB1AEZgpnEJg + yzPTjBJXBylF0hKe5zCCEkMjQbyThEgl6nwOPbVU5//KUpgVyU9ZlP6dxXHxsZHLjVx+FHJ5UVO2 + urL9oiyyy1aTFbK7/PMjF+JLg9KYD+5gPmD02rr5oKy7NOaDxnywtO3u13ww+RR3Ix2vMyAczZLB + Ue0MCNRY2sdeFAeTzWwHx2cHG7qOHehxxqdSznYwt8JWTHiVtoN3xJ0KAjPO+qAPJsbpTZQTCcEN + Jh2M2EyG7Pk7kE3wSBgOo62YqwMuZKD9AOdCQRLtqpnBQYZjWVKYlD6iETB8fpKkMX9NCD4Ge7oC + 1dSJju2TaRYDyQBivUzgBxTaxBGNDlgmLeUQFnMTDgkuGfoJnXFuBPbhkSxRWLZzBzpcMs0VwaHh + /bR17SVf97XUXu6yDsqU5+tcEA0T2iYT4p2wfSZUksQNE1rPhBrvxcqZUPfQO4rW8qCgF9fPe3Fk + gg0PT46ODrsbeiteZqOTMgE6QhMeiAD94cwxqQl4G7GLw38/HaXpJPlmf9+Eral/6U9otepWFA/3 + 8WnfvnQx99Iz5Rk4HLBxriwMWT9PYx0mA5juxNIhbiWERoOIxCybBp4SBGRjwFc/YjNG3zyDGQDO + Lh9oSuLYN/GHHTbHhWJUs1/e3eC6Yz0uWCzP8Ra3TmvJW+SDViMSw/TULWbNFbtyHVig1/JIpfPL + JIqNpm6ii29WzfjXyknuHlZxS1aCdb59VlISjxuwkp2f36r/o361TlD/J7cZv5mkdo/WhrDcQ7jF + UUNXPh4M/+wwaFZDV4Zno3abd911dMX4Xbbr1IqufBdd9rARRrwIb8xZDk9OTs5uzFnKo5/7e3TR + jgfiLBaNPux8nx8vSaQJyYpEz0hTHrBVnz0M+fzEHabkR2Gk3GpWb/0+PHj5/AvaPGnqOGsgEAxU + JlBGI+GTbk4/pRFcfctHMrvERvBB+/B2RPGoCbunxYcooRNc+WGFNNAdkvrj3PF0T01HxBT4PG3E + BgZ5AqWGZprwuScjLY5Vfv3t9d05j1tic3THrfN60R2WUuACZh7vSzTIcoUarIkScblucawmLyt6 + Od/PKpfTNW169ITKlX9bOsWyb59AnRhu4FOTrKZwkaSZBzE5jeLL5CLKUtossfaiz4PYGDAqbKXt + M6qS8N6AUdmyakObXN8qJU6dbsOcHt7QY/rpYe2Y0+aGnsOT4+5mJ10dffWJj9Pq4CXroKOsD84f + TPSMuGzRLqQ5BlQA1AZZmsXUlMSnDS8RiLH5lBH8eRx/w+EgSX9EBSbKfJ4EkfhpLbppECCbwYDW + QtJSP0VTRBDtSnFcqW3GL2/eqWGE96VBRVumALpAz6yfhzibievMYlVwyvL0jCnYO36OANpPxTdk + 6LOflFYxgV80Vp2zdKT6NBgZtcLLEIWkJj4JA7w0yeB/5pNQgTsTrBxEAvD6yB/z6NADJPNyAmCf + nMJhjV2KAlQEn6NMvNBCeyokUVh3ZnDXW63cpqsXjVugMXddi8K05ORtm4uyXG51q3ORb81TvVov + 3KW2fyVc8cGMb9iuVVDFHLI2oIqN8a3xmqobhTw4Yevco6eQ3cPORhTy6DCZnuYCib4+QBMeiEKe + iwll4MeJDWkHdkxHcKbva/hIW+djQDDHPTvss+7VM3Z4qZT22IVSS9qzrfFr0PebLaMvrZoq0Dff + 7Q363hJ9Dxr0fXj09T4fsRnj0aPvQXszT53OyaF15q6BAecda23YHsqLTIJsXiV/zSUts6XOSQX2 + aZHMcHwBKz9prCT0+llCQ15E4onGOvaT+bQbftpS73BqMDLaoxVpoKCTBIa2TEUO6JsqgdytuVoC + +eJU4FuXHuih56QhB99slxxgJVZBDnJh1JCDW5KDRjWvnBycxKfpYXgiqZ6v4QeHH+MBP1ArfiC2 + 4mTEs3jQPmK18OZk4eDkrLuZqn54eNSX1DE1IAs2eRryhHHYNIznrHZySIcvLgPfwOjsXEazKQ1B + HERRq6/3kbnLT7PU7JEqumdF5p5YgKklTogW3+x12p3/eJuREKah5Yj7PcKsvbKQRWWvaQnuumx1 + HGKCiHsEEfMhep70D24ZodJphODwng+xA5M7h/SOsyD1JbuZH4pPBUe5ILgeTg+BPaVK0BrSqUm7 + 9lrquwzjoQM21ANlkayMW3D+i3rx8uX5u/M3v6h3b9S7n168Q1hzoqYIy3E98JBhYGqC4Fv1S/Qt + +kLaPACchjZkFwswAR5WxS4kAR8PSBWI0/fDiLMCPgUz4Bii4h/2bE0kAJpt/VyMtO4JdTlGRjqI + YJ5IjwbJM8++VS9Uj763opp6OplxMr/4W97Pd+FlboeVKVm+zWtJyW644BfJ0bIb0Qpv6uq3hu3R + /VUo42D9ur8wKve2aVGdO3ardPeu7+89beyit7fY4UtdkM+PnuW78u+X47No2z7HL3GIDTi+Las2 + RN717S9E5Xn2OmddG7nwVTH6L2Y4zHlsrej83TIcdk7POpux+e6neFYbNo8s+y43kmFn4jwzjiM8 + MyTOFcbjUu3sukRYLxZC0pH9WLLzxCbghErs4cHSUIcmyhI8OM7gIMPeHy5hsyRjghWLvcDyd7Xy + /MFAzq4+7GhqPjgNCAG1mBrWZwAFOViREUqAk8YMqaOxZzgkjES91M1g6bO5E2/Ql3Bv5kxARVmS + I2rEKDnlcPqy6MeLBr7PrWfqXR5szwAthKKUkhvw67KDIXeRFMP9zJvETtRuSPM0Vi31QxQr81kj + 8g1eRLQQ+mBBzHXwvR+inJUZp3IndGcCNMjfpdlpqXxIiITPNoP3Czj2lDKNwxQYU9G9YIYkVGnK + 3lNItvQNnN/Paa0zH7PjbsdJE8MIAhVoxPVxxya6D9ejSPUiWqkgfpLxnD2eAKJU/pBTQac2xZWP + jNImHPqhMfKB5LhB0B+SM3Fi9FaLM3hxO+BML7meYsk+jQ764YCGJ+Wk2onP7BFDw65LIGJDqp6w + ib/waOj4JW669Q2zZlAimFGKbFvYcOc0nCG7AZ6HfR/O2mg9zw3YnPh2YenC45/eipBxIc9UlXLK + +TD1BzNMH5tYkX16cTNJeECEDaA4D3Vczm3G63551Yst2G5DKjvjcTUhZzCjmnmAkDDsw06KnOJD + w5m+iOCDxMwt7w87vBjM5z51GsudNnLMK4ez7DnlR5HsDKIkmozY7ctlGOdAgG8UVA/SPPAMUYY9 + K71bE9LOWsbL9s+Ojw73O/shgS/1JJ3htqZyI1oTT6Jkt652Ojiqpdo5l7y/XiK6rE1dJ6v5EY5U + sUK7+GK70rtoTCPGGzF+OzG+qPIuaO2PV8IXm+6Lor54dAsyX8Zvztx1VwgoW7LuXJZM+HVGKvnc + WDxuZ/EAqm7f4lHSsxqLx2OyeJR11q/G1HGTw8tcz6+VteOOh5edg4ODo83MHZF/4NfF3PGC2YIO + L5k+99Kp0NmDducMVJZxlG8Lczc+EVomBsG3fJOVMCgAiwIF4/vBmIxLSj3mR58EpalhkpQe2cvd + qYJRSd+EOvYj1C/1xjDKM7cExvr2kqmcPNLSgZQeSiJhj0nSubxJ1MYRL88HC9QA62wwUNmEaVB/ + ZIgQjcvZ96ikv/3tb5WoU/l6r6U6dd8zv8gpFihlDRfFUpMbGnQHGsS7oQIaVMjfhgY1NGhp292C + Bu2c6BNPH3une12je3udjunu6b53tNc56Ha6Xud0cHZ2hjJuQ5T+DIfdkNH/Opbk6EGtWNJ/0XpN + o9Cwi/YG7KhzcHK6GTsafwr5xKkWUVhyISlgxF5GCgsYhNzCxYmk8M8bMnzYdJJIbDeuBE5rA7Rl + 8GKbWVl6Inkw+1zAypQhmV+ahRr3gQpxeg8LXmyG2KGAMzZy5tYzhWtb2RqR8CUuMIVkEjTtvEak + ZDaTKG5TP4394RD5/+gD3wjbM7g7NUWFP3L0NZuQUrn3woRXJogmVNkUBqZzMfGMYWlxPzC8Wkft + hU6LKwa/Qwg9hgO1+jd9L+PaSxD/jMhvd/1siU0Ybxf94Ss8pjrhO1FLRlm4rcBzZoprObhpqC/q + EYGjopHyUFINwUYJE2DJV2VC23/XmtTK5EVuzaAFonHNzvw8tdRbdy0sLTgxCuZXc0rmxHIFtua5 + QbHylZcT7gqxlmVuQ1EKQTHtU9cRuRnVlbeFgACYGRmP50irEz+1JK012pCL5HCezzZ7tdmrxV5d + WixfiSbxUIEiLKQq0CUKtrKBLrHzY6w99VYylKn/o77zIzhdYpLqFifyH4OOORrwbaLVqhpNLOnN + VI38zc0ViRtZXB2ZrpUucVeLa/vwdLPY0oPp2eRTLqZQDtrzQDrFO9jcEs47wGD1GVeGMKT8Te7s + VDJ0ME+xVW1MiBVlgQe8z/NLgiL0NW6hg8tzeMkWL75hhM807bE3zv1ppLMgTaSspdNWDq94wfej + uKzfpeqpjUJcLGfIDXOMjYfsbGCZA/tsu5NXYTXCaLiGuXN+Jgt+2VnAgjvzBQzKc8t1nnMTtOqb + ONVwZrfViz70E4G51I/j52EUDWYgEMQvcI2KfI9DX7ADMQHyxS2JLmV7cD2Tc3PwHWaPIeeAYg+I + Iqc6Iz4KczfdwUtfrktEo6n31iGDyyB+h5vwrAs69RUZQ2MAGChRCP6S5JRJHgqNEbZIM42y8c4Y + eeXBtXbtOb9z5cjd/Nl+aS98fRvhnr1y5zF9ycifIGKVCie4IMoV+AMapjch+ytw4/kRDIG4DKTq + lxdvX8i5PhEa63KxzJSkd7uYTTtloH8u7DaKafFNIhiaHYnlQ/dsJpc0DoBO3BghtXkf2EHBhyuA + MGGehjlKxetknJgAk8STy1Q5LY0yRj0IWupn2vMyvj42Bq0if4gbPZemRB7CGqT9vzekZWJbdE68 + DnqWI92cGC1fVflE8NDRtinaaCMhoC14p13qped1T/jvPv07GHjodxv/Hh8efMgGpl2NY1eOA7VU + 6tZKxEXmPK9m3bew/EJrqpWj6yvfUMTKu2YsL+e6JVfhvr1e+q5vSiOY5wXz+tF69DL7i92rkzhf + 39j7lPRLTZHPj94o4Mq/Z5MAIK4Ck0ChbGxgErBl1Ubxd32rVOev1/Eiz1775LAth8NflerfPT08 + 4APIa/V+Ex/VT+8HuGaxDv2xWKBurPG3j8+ONztFPBgNbKKtGpwiijh/MyBwzWKUPXe3unMUhp18 + JmZzBq4EOzhRhNBwiuG7wASUpnEEW789J+D8C5qwMtzzqTyfb7Qf+CbwWkC3fxs92s0drv+xj+9e + JOoHMwvHwE7tE/Z/cOkmUb34A61LrSSI6EVfTIv1YUfC13qIlsAhAWLPJaH0OXEeHYNgSebm7wg8 + nzALoPkaS6QDQvHCCPoAEdBnls9Fzilf7P0+TjCmIafXsJ0QRjkt7pItUR+5v55kCREGgSZ1RZSW + uT/XPWN3bl5WKEt0CbSA/eSJyIj/PsMRmBlNBdfdaQklA4X1fJJvTEyftpVnhrExyTM7eflD7f8E + O8NH3H1Cc3UgJUSTCTIJzJXSOb2+nE57qaRuC6cRRF89e7tKXlSinp5dX9TRfEmWeNvmLPzIi+vd + yCQSGdLTtIaZ38nosebQi+YiTkprhN9+71S1F6/fvnFjjKXvBvRFebBpWoMBLg120TdtLrDoDki9 + VfzyHh0cLfeoCMk5mf9V5mB9pWdSa2lCVlW7UPBCtQuN4rEoJUTnO4bFqY5Js8Rj5oO6IDZa6r2c + abnBtOP41C/HSdiHn9EmfH3+y6sXvwnPl7gYhQKY2yPoCckR5JRv7hl7qhiaoWYJ06dVQbqY7Qdv + s5b641cJohnGejLiYr90uSW2/X8enCQXqWz8/9hntWr/B5IU3+DHVnI1fMZDRHpEqf+0kecmamlV + YBu7+eA7phHWg+UVLk6AegrnQwg+5IEVCcwJJDpH//ntM8R+eNdUVloNS9UNGcZg0aAaFxcE1dgz + hGE0kAt1nh79p3T3u7J857AWeiAkmVmeFl4vLkMhKcNUL2OLXivi7u464OB+zsbkOEe9bExMHK+/ + zaoyVEbxLiTwGnherf+taPB8k5cgfbGcBaPUEtpzyziw6XawX3TtS/hf1LQQJHlDRlB+xUoISw2K + XzbgCOsH6sHowzXNirj7xcoIfPmcy5lb8QypzJW1quy7M5D1ddwDN1ndgP3SiM5P/bvbExkpeWny + 7BdrOM41L1436+t5SQVkaPUY3qw5ldCk1Q26flLXcyo844TYoyBX0relhGl34FUOKJdYmx1ZGw36 + pTX+VyJm60ei4GzF6roJeSuvxZuzuKXGyOfGfnw7+zHo6/btxyXTVWM/Xm8/bnzGKjccfzEhWbc3 + OJnVznB8t4Rk7aPDo+ONrMfdw4/hVdl6/JA3cL/jo057kA7i6dLZcIyjNcNaUsEpOCTTSJhMTdxS + 5+LzDfWIhcAuoclwRLqNiYczS11IBpJmk6RIRCLgIt8AQvOkFiQymCADKqOQCN0Y57DzaXhYQ3YN + bOWNEwy3hmqqBoryOCKmI+wH5EEaKFpRkbwzz3ZKZGiq8VsqyVjQEKehQ5qVaKPtWULA6fS13K1b + 9/smQEqaCJ2hXwo/Xe5bQgLL0YGeQbqVKApwsCvjKw4qmh3u2SloEpMO7mNQbQ4UdK4YU/XUeZr7 + nIxoLNxigKESEnBFIviZuiKiiVSupHhc83KSRvRj8bb4wGMh0ZeYNYt2RIpgNLe5bECL5HrGvh5P + 4FYC3wVSaIcyjWPCVhoVkfXo94edqXkCJQj6DihLmsKpARP2YSf3p4hFUxLflAkyonDCk8XOT0eR + Zc2SWgs3JrBWHLN2XTo6j8vJY/NK2OyFbEOsSeOg30Peox7VSqsGibjegRzHPT+NNS37fpZGg4Gr + 0pgxlhoVaqThzP3sNzEHLVhHA1pisOVs44pQJ8zmzGJOotbLLJYrvl8SLmVuWl8pU26lEzdlDv61 + yJ1Fyj+vf9RVJBUzcQfZxGWwLXHKCqoUeI20Kh6+o9gqCtpUfpWX3zpBVtSwfYm2tF7kc6Mi3k5F + hCivQEUs+GmjIq5XEbuNili1ivhl3yLd7nN7a6Ui3t636PDk+GQj7bCjrz7xfWl1iCY6T5VncJyS + IFyW0ckznBcSFIfwLZOElmzKlljbEeyQH3acrTul39ltFm+A5ltFDYKQL10Aui8YxgWAQC+QjBQG + zg87C+XAI1bjmnYcPAqE0dwg4SXb43G6c32byhJ5qUlsk0X9Uq8kidyDOXcvwLFsXnfEpKp8q4MI + HJBMRxKpE6LOvZGcmOK6T2V5iI8WNYQKkoyjE1obEv0r0QquuXmAAEc+czkBLWGufjoi/o6hElYk + Blx3MmnJECM5CJROZiRxiCL33Z13lwYR2/14NpGDOCapv7198YxqiTm95R9vaY1RK1+4LJlf8rnA + 83w2kOfVfIYoaRqxUTZENtHYrR10ZBrFgfeEU+BKEtrE9OU+e77AHp7x9qwuNnu2pUau11N/YPu5 + a1QU/xTxKcPsS238tfTiRflFcY44F89vXn1UMyskEiVhyTKyRXH8AB8LeHE2FOKN9K+0gnk6x1FA + XWG2Lq3NGzqi/UrE6out/KdroHvBum7gDBHxG3YJMUN0QRSskIlrPnLP0hoH58RTPi55sY4cGGjn + 8I5jDtHLdSCMWYri8PsUESycjHRpH2DKSlmLMS7lLcqnYdQKXHT43RxFXtdUDK8s6fnFjxbwguhB + Q4SzvYIXADHTitRqh0K1VKtvLZULZWC1eC7rNYsa7oYCuyjquipuI8KXOzAny7/c/nnpXjy/tLyX + G3pzeS9q0HVq9HVQUG5uvTFBunPDs+JlPHBrGr+UO51DjB1Ad0D8BfQoF3EbGNmoN9cih+vUtZi0 + 0KkvLJJKIGijni6hj+vhEo5t1rM7wReKKB1lL+NY8cCjBbSl8ZPPjVXldlYVIHkFVpVCr2usKuut + KvUK3PoqrSrH7ZNgOriUC+6vMawcpFF4wLp9nQwrsiCNhyMLWck3Na10z06ON0yNfXB4+dnjMbKm + lblFtmLOqzStiDBX7w2uhXWR5eK4bAnbpTHlGGAn8TwGFRBSnHS5EI9f4AaWivuZEvHXdydFgD28 + wywCr4mWK/dWcD4En2PROY8cX5vhAw3ByDUnGZhDxpY6LwXHy2PgKj2cU2DuQUL4/kx/grtR+FjN + +iDCSZkDu7sRziHk6A1HSlSSjXHGf/HoJAp07P9psXegGKO54X98HwF7Q2B56K6AmavSvlKMGJ+I + RSGOPSajKAWb7mlaspwELo+7ds6k9OqA/vBKSRrGtM/LGvt0Om1FiWZZl0CpYOL0kr2Nf335w4s+ + Ulfvn37XPTk8ODvZe/nyxfd7LzqHR3s/nHzfOf6hc3j83cuz0x8OX14cdk5PO539yOwdnOwdtOnf + w5MTXJrxraf/0RE+43v/kMfkY2I+/aMtf46jnh+Yf4TRM4zMe5zOWNZoHReVl8GJtLjbxp5DylzQ + sA3ZT3ocQWhmyHUNz+eUXU/TKP6UyfL64w0RWed6Tz+V3SLBd3hQb1wkVEhM/RDZvnE+i7dJ9SBK + 69PAFcOsvStexy2LdaQf8kADmajw/YP9s31D0qB9eHrEI/DOGtVkCGwsv73dpoNbiZjCldYvGmwb + UI0pIZe79TIlrIgDKbP09yUmfXf5tJrRrmjCfCM2lGmLtSxoVI9S3K3vk3xYUujuVzjp8eTvCwIK + X5WEFD7mgsotwwcT4nZMr7uMaHEfVCJR11d6zbRuIgzdKN+n2N5oYFlQ48/cQncbib1UiXxudOVb + 6coMVVvXlctEvdGV1+vK7UZXrlpXHoz6U85Lfq2i7JJ71EpRNlcxCX9u+AYq8sHp2Wa5TDvHxx/n + Mps8qPdBbrgH+xRwmMvnQTyOZBw2MaOVYHJQvmqHzbU/zUc4wY8NeMNXjTKjZfA2oWRZKyUIRNVj + 8ZAsy9BdkDYOD5XWJZMoupwhERyTGMRjObbaUm+qCgFnn4WVkd8hJ2EZEJhTO8+RYVzcJ42N+CoG + grOrD6OCxPjJN+oF0aqhgkAjooxKegFhPwaTJoyv+CROrFJNL2Au7IWl+B2585hUoy4qpHR+lz/O + x5V4w/mQonTOnY/H4KbJCeHxC6rDmOG1kb7iIYryZO6Y2ffRdHd++P+mfg9TP4B3a0BfYzZchdAc + mF4YZFqndicZgoUR5Esvfqt+iXAr6jv8PGXbvqwQZiI4PxSiz4PBg4Bxzme37LHZh7ZiPXdpNXK2 + R9uA/GxOskciLnisCUFou02ISZUdhtFWOXac81K2C0UWbc/oMfUfzqk49OJ7p7h/7KnJa9vj3P2s + kg2JO1aj4zqRWS8dN9f81omRMgf9S8uTOTK+WrAssu15St/InHuQOeun4NGJo6X+yOdGgbudAgc5 + XIECV9DIRoFbr8A1h52VK3BfjDI+GKRygV6tFLg7RRnTFqT/baTJHXjj46OyJneE5jyQJvfOHsuE + 9uamIEoSeChaHuY4zLzDDTU1jWjME5jgqVF9+PyEHFaVOZe7l6+//9/qqXufhgUjFz8r3mXcgrAY + 0WL2lJfx0QXACiFTDE74lXEbrWLnQMgCP5RHEV03SRVN+IxIAskb2J+HpIynagBm1VIvxP/OwF4q + fmmennECbC7Q5wukkJuD5Fcc7nK+eCIwzMgIJom80r/M+1AEo2s5/QtbulnZeIei/ZjYKc16CtwG + hxkbHLLklRDLSAixiIsF/mSCwYbNFO6E01C8pBZeAVMIkbGEc3q7ZoAYyeR02v/vIZuIOb05KsDg + iydgMtEIBsSYRXCwQkijZD/PJkR1+KAB27eipHD5Tq+l3sGLHn8WcXrN6r/l6l+kiUuHCQ+yMaQR + ROmlGYe2mfkXd982Sx2Xzw0/vh0/hryogh/n4Nzw4/X8+Kjhx1Xz45OuHwefh3zVz/UUORzx5YG1 + osgv6Z0xyafzMI1IpP8r8tlbbxOW3DnaLNqyPY1mvTJLfshM7v90pjw9m7L1LKPJCWj1DP9WEX2y + q6CW9GnNaDSouF1UpGVQBSrmm7FBxfWo2OSmqx4Vb3CfaW4yqRUq3u0+0+5Zp9s+2wgTD85OR8My + Jj6kD8ArSUQuMVfQZqF/wflzAhlMmhVpTHDh5MxK+d18fkgrLnOOqnxWkeD2cU6RWnLu5NtDz+EW + JwcYUMElUS1O/jCUCjly4EtIqxFX5uEeM0MKth/24W5YzuuEkxrcB1Y4sZmQ1T1U6S4g1KRMx1qS + AnyPlOQ4kcFpiLjW5c0kpXOCvsrFbS6G0Z2pSYkYCngn4pZBUdzxrWQY5yM+yX5tD5GoQwPDSd3d + 8ROOunBWxu6vUHtxRKo9P0LwGyvmNhcd10KtNImB8i71JDNq6zgPz3M3zNmh0bhg0FkmpOs4HbOG + D3upGh9gSo0Ev1gaMguxDpOxnyQ+3G8x8ag/oaf7I+VuoZfX+HCUBxxlz/YwZzwWfMY6NvGQ5D+m + Lc14whPJgmQ+ZT6tECNukEM5k8K52OGPKLv7YzV8y8mXWvKtqnfaImebN+E8zCZc36ZHsT/Xd+Ev + uHWXRkQ+N8rB7ZQDyKwKlIOClTTKwXrloDlSrlw5OOwey4hfrxkcf6qfvSwOelHonR5vqhB0Dja7 + 7rDTnvS5kjoYyaxAx306UwAteMgIN/sQNjnQKgs3hhPcjoEzK2ybOYySPKscqpYHmAFE/y3Q/SRt + KWeHmivU3Yo1jeJLIRRTLXl4t08a7dKrF2lcEbw3xzuqm53V8L6iPfMtsjOKDzaDyLqpLT02P8fX + VN+wi1uyC1rcVbCLXMQ17GI9u6iX6dHO3lFXjlO/KpLxZb81Pc741K5WJONufmunZ2cbRCCVJ8Fx + jVO05oG4xvPnL9TATAm5SOoCpvzQ6qKMW+I07bOTS8kf+pvnz4E+z6GuwmmaHaefelPaYji9eiaY + KvG3eWJw8dXn7OHuiiiHl/mNh5LCLeHrBkV95nzw8i61oZ/F1sc7C+HUHqqnH3Zm4s4ierh1Pjfz + OcbFE8U+RKTmue6Tzh0Es+elN7R63tfp87992OFEC8/VD1lMGn9sDS2upymn3oetAo1CpUi6liF+ + Gz4zvZnyaDeGSCzOvuP//Nn2ehQFXiJmhUDHyDk+1pxO62kRfeGsDO6Oq2TkT5S7lYtK4niAWHOS + eddIGM+pztT0OT8+rEhUoIYU0hJBYD5HaZ6JnurzNOG9ZBfbVfxBsu/vqis/shWjHJf3i5qZjTlZ + XvJMjTnOghoIrx4QoAnmHBEctglUj6bh5I5yVkIP48JfckQCWz8+a1i4dhXvKLw/x1Dsu8kY5iYv + zsZ7IwS2oC8aC4MT65swMWM2y5UmwsZ/28x3fkjlexykQruI1iEoF9vQkHgQqI2WX5nQJgGhFQ1y + NjAx37Iwz+NggmE/JrEtwXcM/m6mnHjXBuDbyzVou2QBW3Hmr1kba89goeDbPHId3UQSSE89laAF + jxP7884MZs9cBxMaYcP3OFjbkp9gyugr2y5JZ4iUazyHWZjnZEBfaehoDjOO5sBCm4s7T9jGZzwx + ij9X/wtBGr1MyB6so9RnWbq71o8tolmE/ZOqd4PlGpL83X3Fi3ou5T/sl6h94NOypy6Zyd8VYlRK + L2iWS170pwl31YgWNPV6F66aZ7uw8mnEFJG4oOWJP9jfDJsFHxCNZNJWqyKXTAdi9VJXHF/nD3JZ + h3xzKwFvSX+5nCW9wGoG2TUXbs41qw5AkUHh4XynmyKGvCq6knTLSArPVw5H7OC4r+dQZf4NWrkL + D7Ozh23ZM/vb3Gwu3dm5cojrjlZ36FiDcNtBuFtPwe1QMcuX9QI8Fj88epy89ZDWEVulgblz99mu + 7VDh7n1T5L3RuOwvQkdjZLqlkQmUZPtGppJq2xiZ1huZTmtlZCrbCaxB5PFbl47Ss6HkNr3OutSN + xye1sy79YmjS33/H/9nQsnR8etC5sWWJVZN2EohXvDUtddGUBzItvYxy2g4o41z+HBs1xx/A3YPg + 22o0NbcgaqmpbTQ+C3ja4OXd8BILowK8LDZsg5fr8bK5iK56vLya9L3DL0RJdYMznpVaQebL3787 + f/P724s3370+/9f5m182hc2T7s2zpq86kJlbZitmvUrUfA+lfjxTQda/VOdP2APVwcTvv7B4Y1fU + D9nBcffsQzYwbTFGbh887dKoJXjODxO+E/vcjcarAdPtgiktlCrANN/GDZiuB9N65VQVD4fjo1Px + T7k5pt4UNpPP488r5n9j2FwlIq8FyoNu914Dp3Zevnr96t2rl7yvSmhpXyvA8g/PBIZG/r83RMmj + s9PDG6OkKJfd/ly6nUO0YxVMbg8N/+A1YTu3CHGbwZmbwDJebRWS8rZ+rfCyg3OUfAHcCmCwdfdD + M73g8zET/jkjmUtrM7mgzYuGX/Qi3EJP8+J/vuBMJUAYzF0FCFNsgSoQxo50xQDDkqxaeDmsFbyU + KffNcGV+Fmupq51q/WmtbbPzZzgNWDLeE/7Yt9crapcxLdULXoE3B57D47PNonU7YXc655zfechw + 3Ws9qjmSkEP81nh7I8xuprCVJNoPNzTidDeU61Dmjhn5zUFVFwDnK8qNWa30uwcY5a8Vtl35twbt + W2mFvLwqwOxCelSB2a41FYO261ulsN1pwuoqx+3DKDr7uBa3Z8eHp7XD7R8JY5nJbwDb3ZMNDyM7 + w2g2l2Rj70GD6liGXx8PxbgivmHsNKeSCcLdI3dP2dwdaXAAwp3kAjoEeN4cyHyPFPUhEkQWXjnw + xXOVygUW5z+/Yb8uvuXC3gKF8PUJHPNaKo/P4zNBuS/eYZVgHj2W+J60Ni/aOgjZ1Ivww5r6SJZu + HeM4NJ9zr3uGIDiGh1SKhPZhVAJSeHpZBzM4tkHMBzN+zR/M4EDkpxWRErdd6kVKVoTe3Zys3N+i + Wk1gVjR+vvluIeJTcT3CtSuyeKyuS/OagWiY3O2YHPZkBUyuAJSGya1ncnv1CmHcnMndN1lbhUPX + MjT/bHqvl6FVbdk/Pjk5am/E1JZShD4qy34+gY1l/7bAsgXL/u2gBVO3fWgp7YAqoKUx7FcCK53j + g+4x/XO8aWR8rdHFKcEPjS6uYXeHl+P2htk2l5Lr3Ae8lDt3N3hxM1gdvLi21hpe3FePCl8wdxXg + S7EFGnx5NPjiHrs5sMzPYi0N0MPLww4nLLkWgPofe/XL6/ZOj0myvB0hexavw5vDT+f47Hgz+Dn6 + PIhz4YNy0JRV8GOHuEoz9L/NZFelWYzo46y4GAlLN08kW6SeDSNVNgFqm1fUJiiNYrGiqVc/O6uh + zUr6M59yJjaEXuk05bhWZGUdyfU8PgkPW9qUVg5fqhpKKLvykJvWM0Xw6+xJjLbgks0cUtip1l60 + 6WQLPQODng6RTsdUZCF269lNVj0sxBazH+f0ou1i0b3VPNeattxBK3bl3zNnwQKvgLMUcrMKzuJa + UzFpcX2rlLY05+aV05Ze1PXEl/g62uJAu1a0xR70XbzpmyDi4bw5cTk6Oj7ekLgs6s1naMwDEZeV + Z5y4FZ7vvEabGCmQvwTCTTLKS2JTuPEiA0VL/RRNcXm7yhKBIiRQJeDjGwJdwTYlis1zYbN0IMMF + gRp+lswcLXWuvAin43JPJA4aqQ/60l1AKInfbdobEw71UJrs4wJ0ah/OIGPN+MqPAAftBeU203/e + IK1sVn5Oz2FbJimyXgRJJOeyFnlXD4/mVtpLwXElecDHpi7FrksihEjfaMqXX9qrGJdd1+aoBLKn + SL4jPjfl2x25Iu4NH86G6m3f3xv4ykpKm+p/hpQtNgdNoGfU3CeJmk/sEw3me/PDu9cLRCaBbE6Q + 9CNLkIGmIsbnREEtGV8990XB6B5ygyzywnm3gy3snXI3a7GJigZtYTctjV/Dq+/CqyFGts+rS7De + 8Or1vPqs4dVV8+ru6eEBXxd+Pa/+dFy/HDlsnIh16I/1pqT68OyONz0c1pdVMw7zxUloHF9yVOYO + hPVwHuVHiySOyBb3mYSoj7KETQCh7D3juyo0WRr7YUR/msD0aV/jW5P22SnVMpHd1VcZsE/jL2/e + fSkA46m9hv07EwRPkFjUUHEQR8RPXvRp4BkSkSoQjAbSK/UHyHd45XuQZJxDUVMrQD/Mk+JeeUB6 + NhyaBHyEQFugfQ/Qvnd9aAewndZSpRzVbqtHyFFvsMrKtGZ7y22R3szTw+2vxHIv7rgky0VtcW0u + DUnD+O7E+GhTVsH4csxpGN96xnfYUL7KKd/s4Gp6dsYJMa4lfY7z1Ir0veU7Li9e9GgVXfmSknlD + 9tc5Pr65K9KqTE+duaW2YuarJH9vI7G/4J/g7168GumcPcYhNKwv36rv2QzhDwiWAEkcRdSPogD2 + Hx1M9QwFw6qSwliClMA02hZmVM9eJ0pofznWsPyZZKJSIJcYegjkh34YWrvFcEQz0cuAZonceEn1 + +kXL8ALm0hoyJCxllA2JOtD/PoTV3ZRlu86HqXqs/6QGizWHugQ7jiJe50dZouSGaepif6RixmKG + 8YrIoNtutSSDW111ZR502+VXLqOidSgD0Iv3HbGqekkWfVpem+X+3miRNqxwq6wQu7MCVlhgUU1Z + Ibs91YEVduqVr+yBWGF8kLHrWzWs8OOfw5EEX1/DCdvTftx9YE5o3yhRwrEfmORN+JYE84Zc8PD0 + 9Ozm8enlCaiDW+B5Dpdy9zwAs7iNR24FoaYZkdCMdDhw0iGBR1/sCRHsMAHuMpFb4qkUEwQSaU4Y + 56kDQjiUF+GecQJAe35lQdAEHOXLKUeLqhBNywfdgjTvcVc7n0riTYJkNARnkJ4/GCCfF04SRQx7 + Kup9pLbxzUI0AvhbGkndgnsbyXeCux5D9e486PIJXmIDi5duPNE41cP18bhWht3VAn+MvYybQqhB + aKpuS+3EA/80cbQ3iXyAeZDhkFCGQAYGI82loic2rhqXcTjnOLbO4F2+yibCRUMIjA5oPS4P4qvX + 551Txv/Cx2+IpcqVFVxMt89x71AffSGutMujKUUEhtiI6kXoZw/zgXbR6vd5ktEIfDGOME7EVWgK + Xp//+Ia6OfbjGHfjWOKUkChg8x0PreF7W2jgor0+DS4NlUXNvfxCpb1BbAwmiu/zkJr0pX0tNbie + hCWyDHYAwsSLRHjQoHxtC1+nMo7QYvT7fTEePJ7WYkc8Jx7zo8zbSqYx9Eg9zd0faTXmlO6ZHaao + x7f2yFDzYfmTFEfp3yquDcRP6GNI+Jgm1aSXz0VoRTzfSq7b0fwKJcoiHZ23224kbPCK48mLUuea + alakMyhX/+hEVDEEa2TV4ljI5xVDsTgX9yXfFht4s8mScdiyMCwPaE2l4uJo3XA670eSFuO3VqRe + 04lGKwWv3FgrZSzZvlZaYsU11UqXQPHBtNJGKf3Y9pLxaMWq2JJS2vWGfw46p+vi1Y6zIMzaD6yX + ujYViun3URxm/Wji6zeDl7MkxV8b6acHnaNjmxD9Jvop0cvjT970iHdNHRTUl3uII2KnAWvftc6Z + yUiPYfME17QXFxLeAAlh7TR+TDiZDQYqZAdXz/eso6Ya4kJO+q8zu/b5DiRYSasg68W6qoisu/dv + x9bvc3gb4F4N3Cz85PuUOkXLiXfxBd+jCZDxMr4b9KKv414U7ts1tXXQLouKBrQb0F7acvcL2ift + 4eeDtYg9PBrXL1TrbX8URwZCjBbuT3qzYK2DzsHBSffxojUhg/IEUmC4WQABOJ1B47P6MMGNQrDJ + ZE+PJ+oFDEOkBpK+6+Oma36f0YsvX3Yl5Nkg+biSL2YOZlTeDCYRwJi7AJ11dVxH7bl3Ew4t8WGb + hWVkytqlmBmg0CaKTTgpgi9Q3lLbUVT+dh82AirDsILryyXZHu6gntmwkbkA6+WO2KyaCNXxw74/ + qchDtNglteQfj2LBoKklp8vbrpzFYqpYQg3H2hrHwr6pgGMVAr7hWA3HWtpy98ux9ICGbS3HOj1t + 188qklzSKoCsOeLYh5vTq/ZZp73R5WP1oleLoec2hzsfhRBs6CAazqCe49doAGghtd2iCDAIqvlw + psxg4LMkLJTz4lylBy84Wl1947VaLaDLOOoh9tUzV37fkPr/z0XNXswHiqTIDInGCRoCDl/t6wS2 + e2rbOEKhJpqgHO5CaKj8agiPW7K1JDzXRkkvpkF/dJNa7hTPbsNFtsZFsKS3z0VK0rDhIo+Ji8js + HZ+1JQD8q6Iko5PMMOhdS0k6QYfrrxUleevHP2YhNLkNGcnx8fHJRowk1VlfTrIsI3nI221+yEIq + tZ8mu+yt9+Q8VJ2zs1N1nmjdV9+PCFXYhR46/OsoUS8CTbChfmFfAEKU17oXxZrU99mu+sX4gfqR + tj8p0wMDFwF572eS8bo/oi2dpok6D0mwp6T+4ud3UOkjIKR6+vP5u2e7jIg/6/hS/VfW80PTd4X8 + HvosWdIZvvmeBMwgikNfw0PjOxNfmoCUdzs/eAEQpdsskpf0efnt6cHeJ6ojfSZoKF4NhLVBpD3n + j8Oe+2hSlKX0Kvt8BBn63nqC8Tp/Mlbw01CzKFMjQ+NvHU78VG4rYfcpvDfIQvaOAjL7ntHfSvIQ + /D6eqTFcKcSfZgpTRJJqxnASfn0zwbkMjv9b6jeEK0yjmFrKifkSuFfswpUIrilw6hhDMHLQgaF9 + b8Sdg8tMY77mhJ7Fjp0RQdHJBHYJqYNdDX818Yi2EErKwkk0yQIdq2jih+zIhA6dw48Fxp4ksylM + MDvSJJqYfpSMZT4RAMHOJrIZWxJzHsJkUgrpSHEBTIbg31jDtSvGKHroFucLHOM6PttAl3HmM2Eu + GBAezmRVYAhgvIkGKXV0FAXINKimxgbPwiLDhh7qP/Vdgj5sk6mRtMS5LXC9MvBW02qUUc0V0Vsn + /mpJb8vyYJH+LbtgCV1sZMZNZUYxZl8Y3JJ/41ckYNb3uVrZUwzoIxNCS6MmnxstbHMtDJK3Ai2s + YICNFrZeC3vs11E9AvXreNbvrYvpP06zocftrZX6lUwIMc3nYbRZVveDdvfo+ObeceXhd9rX3Opa + MdlVal8vkYyGgYojGxY5RzXhJ8UKqCUD/eKYNIC4LUDkhVABIBZ7sgHE9YDYBDRXDogdKGGdCbfo + OkyMr44+M2jWChM/7gV296Ckm0Ji5+T40NqVbwuJJ2jGA0Hi22hX0owY1fMlKZr2rggD9NBG5fGv + mvODiP7NIXWs83VfKp6D1PQ5I4bLumvtAfSYiUkLxr9ZQgV+q36eLaTbhb7MxZdbIDcNk74mWyqm + fvfxsBr7JA1ooPqG8CLGaZwJogn2WFGQT5Uj9wfJZI4og3+SH/czP4Wzdh+JPMaIYuM0zaaUty7N + aDEGqIfan+fAyw8F5U04dtN80D5DpXyeWNzYIb1Po0h0WCMxbRJ4SANQVVbDYj/VkmE0S+x+l1hD + 2LZF2HhfbZ2wlRGjIWzrCdtJrQgbz97x2WFX6Pa98jb/TzP7zJc/V8PbjttBuNaQ8Wl2chnUjrTR + +jk5msQ+n/DenLQdH550bp6RkB3bBlmPb692rK2LdjwQaxNBruDlxEkRNMEWcCJP8Muni3wCiGsZ + JL9E8esurmcAPqWadqOY9rmRwJ2xn5hv1Iedc6XH6seIML2FBAM4EOFbJeirXXx64qnLkFAaAW3i + gE1fwzXqPRIY8P1kclQ0dT5s/Dg7gwvgjWj44JA9kBs2uHQSGQjwh7yBnT5PHOfwmiAwP0fQnN5B + PR3rGaFf+WhAxmRAX+156DHC/OEIPsrEKYyzBOxxrXy0AETmM4CBxuFOH9aPwOfWp8uZrdFGbuEz + HuYX4YzzIZxLt9BTDHU/VeNZYoIBXkGagiFnvbOnOVI0T8wezpc8m4xAboBDvyU/x9ikOucqnORg + itvk+HUeNGp2acxo9Ef+WChJcUEGZ/Hrj6IIV5AoG9SuiIJRUXJ2Rnua/k/5NCrYLRLKSON47rqS + 96HFgQQc11E+0OlJ1gH2dqPGfx/RzI6Ij8HfnkgkrSucgEmyBceG8uwNTA9p45VTGEneQJtAWnte + jJwNM0yyzYPBx3L5iNgF757EO3MPhjS0WAcYxuUW5cVgZ/B9K7zoEo7t5O1VngY/HAQZ0JMrfc83 + nRRTg6gEjStTejhdcgXgAJBZK37N0iiMxkgliKYEgT9kpod/XQMwmPxFfvnQCEEfyAwCv0VqBWey + kBwROO5yC4h4Iee9YArrEWWWDEo8abKLsTmHkV3Lw4i2OiI+8C3fq5J3c6xJUoeSTINKG8aawNHD + S14k25gPSbX96sMOLcQsNXwsF2K/WL9HXtByKY4tBvkj+3qConVAtSVIt8LZMAIJEOGYWUxDok7a + 7faejN67jBOB2HY5IUbjjegQZG9EaX9SEzNe53xJDz1NzUGaDZm5hNYZ80H19H//8D1NEKsFUTx7 + xv3UkLsiLIjhZuOJjC98O23+GO1VpMTl+FovJY5J0vWZYdYg0Go1ZEV5C2fxC469t4MvLgLV/D3H + seKr1YBWVLsZshXvPWaIKw/6NVi3OKHz87YIg+Vh+QvgYXn8qgDGawZ/xXYqT8qmILpYi3xeUcni + nr1v4F1s6Hx77gWTUZVb4HcA5/U9WYfbXD8LtO0AeFHeXwbJl0ZfPv/VbWVibNgnLVh70WfsowtI + 14s0pnUewHbCQ214LoIZFG4WePuWxmzfZlZS2Bub2XqbWbd+NrOjs+MDSW92rzazqs86z6YfZ5dr + bWYf+6eT2tnMPn68JDaymcHs6PTs6OYGs7qdcrZaLeYBPmE+/js0OGmKAoVNwhkZ+7gUQMi4vXuU + mAgB9sCPzbdA5XMwiMDdAcAXEQhf3VUj4vzMsPgkC8QaWEwos5yf4Vul3qMBODjC8VdCktYd/Oi4 + 55OAjX13QSs9/D1Rk3MGOyqHvofyB+dnpJLUvRlyLlDjsbm/xR0e6kPIxeMRAGdCM0nkiyEVrQtz + R/GJTtJq3J3yNV8vPdZC/F1XwiJfWODBdV8k0trSBRubLJelzjdk6ZYHi7xHtk+SSkK6IUnrSVK9 + DhbLiHdv7KjqE8X05Pjg01p25I7UasWOwDhCyOxhFm52t0Xn6OSkc3PvaIBleOYFnJq+PqeK3717 + z+ZQe2gHXbrPafvZtumwKred5NE4AEOEQNmEX7EJDJx8xGoK24uUkhsU7aWl6w4xJaP1Sktq2YjK + IDpDkJEeRlSIFzJsh2bK37IJEZhqE3K7EKYgii6pNt0HZuJrTpplS8IOABDnEP9KfdgpRkXsPYWF + 6cMOWxbCCDaqPK03RBVbkUKOTdIcMAYfHfySmE9sy0rk1GtDS1011M1tyHpRtxXmxzLpKi9YfONs + cnbllr/60hJeTXBW1D/fAiz7opo167/clse2ERbHxg7BisEpD430mI2KK6ZoaRsVT99pPy22VT6v + aOrCStpsD15TzV+dD9/FeAgBVAEvLnC54cXreXG9jIcPwourthp+MWNLnkOtVrz4lhlbaPO1Oxvm + kOv7vcMyKT48esicLe8NXuczYxh32C6S8JlgmKcJcGjqJeoJq/1Pdt1Jse+uHgpozIFdcsdLp20x + uWcG8PhGAcgakEDejBVfqMpHVROS8igkm4BKPKFHLRB1uraEQRyNpTk2PT3O0TISNgzyfqwOTtUn + 3Ba0aGgSLwZfPNvtzT3o1Hy74PDOKSdOuJGr8zVwEf2F7AYvuMiD9lEbrhLJiHlHcYCeEJDaLPix + jc7n01Exk+z1NK1U9f2vvxOi/26vQTLhbnGPmC0pz/8qrvPmM9rATaWZuZqpEdPPBKY+9oKQMRlp + tvdxGtqxdKoiUu12c71ItTsp32xxF+SNR6z4WNFyLypo1v3yrU9b3wANo13JaG9j4cWur4LJ5mDa + MNn1TJZIQ8Nlq7bxfjFqJDdw1orLxreLGmmfnRwebURlx3E4loTRlsoeox0PRWRHbN4JOS/th52y + 8dK3d4eWvfU4NZKlAr7k/tfwsE3TmVybCcPLgksfnqF/ez6kAbBujAxS5euQqJ5VXp5i0oHzFxCK + AzgJVk3c95FPig2kt7RLqwQu7lWZbjnGht3uaGwSk3nRHk3ugBNZcVvYflcJscy3Vj2J5dxiY9LC + dr2Vtr66L79FWlSVAZrXajEuK8pcWr2lUbzTMi4qucF6XhoQ+fxX54l3sHzyZt4+XywhVsMX1/PF + 44YtVs0Wv+gRkNOlWrHFO3gEtA+6G6arHh8df+ZVWQfGKNL8hzyOwrnyAyoRTqOu/CjIgznywINA + TzkQgDNq2vAOJBTFUVoJnDkCh00hgsED2FOAS75nr/y+0n7AaFXGNCYLyHYhQQG0UOIWMPld0Tqb + iBSVwDJyCRNJEYQBWIX3v+uJZ6jisR/iGFUOQHUcI7YHG5TjQ9gyBi84uZhd+AK1iLAzb46Ly+JE + I/gHp7rMFeA7KlYwMaLZeI65k1sc5fLxrdTByVjzBkv4CYejgTzE6E9+Cbq0g+1QS2e4qEZOjZkI + 4Xt+Rn515Qu/RnbVopGluI0VwylxI1flEBuJVKuG6eZioV5Md8V5Mn9vadFj2DaredyKjs13bd3a + eLCtttiX+SbXfw+ub/92tudSJfK5Ie63Ju4smyog7gVxaIh7Q9yXtt79Evfj04NLOZG/hrgH3tSv + n8vCq+9f/T/f//7b2/M3v2xE29unB2fdm+d0BEUJjofDOUPv3PpaMd3V0/Z3r1/+9o16bYY4VDXA + zz4OSDnA1seNZnLKGarOHAgDKQryevvXv2WnxW+ZW7JnYwLRkMhZc+fssE3fiIBR3721EMank7j7 + oLhgLY+F3wUs04iYICcAiRzk6oBIRUgshxAPNdPegE3rR5Oq/NYCG68sdzNUdNVIvgkeFU29+zJZ + zSlWVDtf8e2rzJfWYs2LLLVmq26pvfK5YV+3Zl+85bbOvsryv2Ff69lXk1Kb2Fe/2/64YlVsiX2Z + 2eFQbrC7hn19nH0+rl9qxu9HOiZNdO8dbejN6NfRUft0M5fRj72hl5Xp10PGUf3KBh3JNdJDtpkk + zeDUZg859fQShSJLEGcosdcnGRXAYe7/O3KecmJxmLLL59RAh58iZNhG5CbUi5R2A9qG72AkYjHp + A6BgNiodd4v5mhhChgDkSCHBjcoSDkqmjyR18O6YY1Vommy8A/0S9a4QyawGsE0JFpKIRg1ZiLPM + 0IIhnxj6IVuhkpTkFrWCGxFGGJViKNgsRQVjZnwPLnvzQIozSriviQ9fFMOQAke8hG00YjYqAmN0 + oAyKITnZUi9hlPlZgyzt89+v+KbfXfvd3ouQUIX/VDqZkRhJcSPaOxrLn3wTY/HP1K9xRA0c79JX + NF5SAO41GxD0OHvdD2yM2s25wo8EUySUqZ6MHvhZD0Mglfo5Qgt3UWRK35/D4Kbe0grmRNa76k3s + D2HUGai3GUMkgRqNwHcBbFE/RQGqKD7Q+4Up71eZhpZ6IdYymMJoEpg3YYkEEYK5Xf5rN1NYgGJr + tDnTwohWBPw7Y+OuTBOfyjxhmEyBs64raubEsN/ih52foomB44hNif08z671XAxOROWIoPSBWjyX + Mok+jqRJLJqUf9ZDkg3M7bhBC/XKW1yaXZAj2NhgBGVAoXU7lERCOMyXrGvmyRVi5Wmljf0EyYOq + ofq5xK0X1bfMcssCCIXmTri3lERFGY1IakTSFkTSoiq1qPrNSStefOwkw2Kr+JjLL3nbjOX1XJjZ + atz3Dyvaij20KOOWRkM+N4oliPm+rDD229bxMCPFksaTdAtayBcjrOoLLDEomRc9f7hvpfv2tcoS + rW20yvVaZROGWLlN/+R4YFhpvVar9AYpZzerlVY5mk1CejzmFFM3VykPDw/am7lufzwed7mSOlj0 + XwFr0tQnbuIw/uc8SSyYjIEjrDAUJKatyOU4XxK1pL2bD1KDm9fg5q0NsrxCtg+dpe1bU+jsLLbh + oaCzMchWDp2nB+1ekPTE4Hgdep4lXV079ES+5WFAAmpqoBNfzTZE0YODg80SXH3sfg7F5deiaOch + LbPv4OIVZ6R4JnJzHJs4aB8DEsSdijXWodOf3XVz9gvVz+Irk0hy/eKQ/O0IKbC9GS0RQE2qL+G3 + xuocIc2Ypkl0OZb3udlkYgiK6AMnmbQhySHNikba67lKENeCDPMH7c5ZoghbVUKC1xTNKz9KxbjW + coZJVAVPM9ZnubkI9pCi8KPnDwbUd5yIukz4+PpUTkr3Br5iOSeGBq1YbVJQm1SaxXx2Cncz0mEj + NGM4AgJLb7jz0ZUPSwEBbwITD+xKy2ngWcHF4+bzBPfqybelXnHxrqWpym88cHfncQojPuNla4Gm + v6kOTWuFOQNwatdq2lQwNWnaUr+YKawg/lgP2SFxfryRABPec+XLFYax77XmOmPnms1qNHkTP7aB + SLB96BgmMI4zZxPA2MRDjJdzGix7ZzqzBk3PL1HobGu4M8AzaA3MKCqJAp8DyQMN41R57HhhG6Ax + LeJiYUjMOI7W7Y+0NJIJmsTjBFMdbZuPps+mLrFiYSnIZRewu7klSf8kuIECEf60MpzRSMpJae8S + xg1n0nFe8HyEnyo95Ch/MdeV2sO98EO1p/QlxtrIuTxn0EfW/1Hk5XbnpV+oj6Gs4RRmngG1v8Ux + TLKsbfzSlRnBhZTNm6guksmpiBo7eV9LalyF4FvkzvMWuMckE9f3pBGX9RWX62eukaS5JF0/UBUI + 2aUa5XOjWt9etQbCVKBaF5y+pqr1ElQ+lGrdaczSpFv3PnY5BVw1unX3cPhx+PHobK1ufTgbcJNr + pVu/jX7W4QxMK/mOc0htplt3z7qnm/mc+350VRunp9cmRwaAEvUfVytIci2H4GYAEEk4biu/P115 + IAwpoJ8wjX0D0sjTs4pouls6taTp2x/EBoavgWFIsf2YeCGkwMUAt3/IuTAAI7mAf8IFCCHweCYf + iZEBhrGCtg/Dpe3fwPB6GG5QuHIUPpm2zeik9+c6FPYn5vNp7VD4B/7fxa+bge/BUad98zwN5fGv + w+nwee70yPG/UJpZxYZOpsX1ik026j2SKVlFL0nhZURKJsAFXne9GPql+u3Vi9ev/81JKUmlFF1b + PbXo80yNo8BIaHRgSGNBgiZCoqEP61DsJ8Ad0UGRvonNEiYYtFotbgibEyYmmgQ2LLkntxpdGcI5 + HfuIkWEDtb1EgnVMFsgt9aZPOAEj0K7yomBCHbWOfufSa0TYcJjNjE1ZLfUTh9FD308mhm/ldLq8 + mAT8mE0rctUnvPXehKqnE9J/eSSkf2qQhRxov8tF7yJwHC2jqaIvxoQy1qSAXVYNZcn3WS0pyzn+ + M++V9hUswkXWtGwRLLJlPcaFutTBhhbekRbyLt0+LSwBU0ML19PCxvHhwp+dhNHJilWxJVo4M52Q + D7mu44S92O8KNakTJ6RWheaszTalm3LC9unJ0cFZ98acEEjdm4TRnEHmIa8tQCZIe2dQ+CQF9MFV + nDDPGRIk/STn1cThBMk6WrpU67hnYoZId4v9xMaJJOqpXNSNGBLVfYkjEA8wjrSVVNcYINhDfp4+ + 7f6U4yo07t4GF6DmKDUhoRL4CZ8QPGtJbk/gtJtdJZcbSdIfZJLPYskKj4OcpfbwqzjVyb34AXZL + jyUq6vezuIXHY0nunifIKfdcj9Fq9DyP9FZ2WeD8Y2Hc4Fc4lKPF1YWUH0u4gIR4Bk4ifVyjXn7J + 1VcJfcy3ZC3pY3mVFqSqWa6PYbk2JHI1iWQQ3tdUqB5fRIMLnRC7CUnFiJOLInDoQl/g9NkQB0Qk + XDDbt3t12yRyDskaErmeRDZ3Blz40+zkz3Jw65ZJZHeSxv1LZqnX0cjuUXjKmVZrRSM/eoHp88Vg + NyaRx6dHx4c395gtD77jkHuHaMQDkcgXqdwMs6vOObvhMGK7TiShjjA+2OtzRrhRwCEE7iaPwuGH + HaC/P24phZsVUwufMzWNqXG79IJSVvapTruten4QME7G9g+gEPLntGC64bDYAu4NzQXEagI0JUDn + y9AFVgu3sEmMLJnsSVHAl4Vxa6OynlQ5WsKJrEVUJfwQvmf2cK44lJOdkrghPqyTWo0QjmujmG2z + bO2IKya49qPY3f0Dg8KYw4zxBLW+BKd2sAC9NJwfdvoBsntKwR92xL84UsgbL+00CZMJmnRYyr6x + F8vj2I/zS2qVTpEDnlrOxWZhL44uqcdSPpBeeNVo5sXRENCeRmMeQnEpUinVwHXRMjKwGlm/o9je + VYRMlob9khjvvq2EteYSoJasdaNtwayWo40X90fxyxc2SunBuu6YoolLtHDeeHrtrpIixKZa2fYq + mjm3z4qvl02j882v915carx8/stTckbV/WJNXGA+LngaElB0NwEXPAEXULb2rRDaOh0vc4KGjq+n + 43uHteLjPH0nxyddCeP/qmj5F6/yOpge93hqakXK49tc5YVJ7J4d3JiXg5EchGkwFw/+kLycT8hB + MwhBxpnkkuec4DMld/Vo58SNOAN5JIfsPZfdkjCEgwtcKnkgp6UFK2kD14cjSjiJ9zX6JDmCFvAL + 54wsa/AKrc6+GJ7gvr+Ey7TIKzo3z9drLSnk/Bny1zOVDQPZJgPhNbx9BlKSfg0DWc9A6kVAykjy + 9TCPo1mPm3Mt87g6mx7VjnmEEWG5DjfkHUfdk5vbAxnGMj1g9y/HO04f8lT5PFRLN5xM9ayl/hdO + 0zikEMnTcACW6BnMBXL3Zp+v6tSep7LJNQd4gxy8UhKEVHq8m58NcuBg8VIe1TmmBRzP/vZhxz7W + M7CZhEO5jxEaNNyotLrSsW/SGaoZayoaYYTATMldmKV8aocARByyicYdmyQL5GjMGJwJUpc/7Phj + d2AH66YO4IXGjW4pGpoB9WAXl8TgTz+mNwhysZ91PJt7GmjqDCh5rnEG22iAq8iBrwz0HoIr+c6g + hFqK1uSDkCDCMIHtRI450VtOXIcIFGkEDcdzD4d1BCzpc0nGSAgZBPY4kTqEfI57Hglm2ljUJem1 + 3Aj1bxpC9B1jQyW568NHGUwZE+eVV/ip8dU0VGTBYz7sSJ2YzPyymswZasqMJz+NxR2fkjQ9AkeB + QY3vWUdkLGxsI7Z/yQpIUjORw9dsQiJZfsfXYEjMgJIZPQOm0hcLCexaLfV9VLosiRjPBDfr2AXh + p1kRk4pnuFrJwMdLTM5884ZoOw+oL4iGXAiJHNwHzjwMNjkpbKJhnePIVw9hzhJAGcqtPkyo2CCU + c0AWmFsnxU6U1pMUby5dmETnt6X2569brUzeFLXek+ApKixJoFIrHoMokql2uTRzuWQ1BPf9KilV + dHROXJX6n8stKew66+0tRVpRUUm2FV82Qu7WQm5pvuRzoy7eTl2EdK9AXSxIa6MurlcXTxsHEtIX + T0dBhV7I3lF3LLFXq/XFoz+zjzP2w62VvqgvL0hS8wK+sbrYOT072SguLR/6PN8a2vBAyiJH+qSw + ZBJbA7eC9yYiY8qcAys4gwUTeLCrCBPPhUohgmU8U7SFaae7zOEMy8hW5FKU4LDUHgwL7QpSpFSH + URK+nQnSfUbWMZLwl35F3A+jZ6KeCi6luGsqCvejweAZmhaBc+M1IlG4dhWvDnQChJ5rrXIZgPLY + bAJfHOgCB+39pZW4RxQrvJY0vpl30xzFX8tsIKHke47/Y+5y4SGGLZqgHxcyxxdpdEEEx8TUu327 + 4rdPbUoCtqE266lNp1bMBrN3dHrW6UjShK+L4Iw/DtYlwDmaHfV6x7UjOHioN0vN4UF7I5ZzdHp6 + 1Nko0upo1vW0jJCjOadoygPxHE6dyNapMEIobjQRPRubQ3GSloGJW+yOhwSIYxqQ1c9YVR5p+uJL + +JlpT8/YX683k5BfdszrYTkCFWNJRQeMQvEFPmpMEicsZFMHiReaRzUZIfMc6/x+jEx1OGl+beBL + AKCWnxEtA3tZaobUIId0bX6te9wmvR+Oe2KRyIvBW4EZULdiFSN3I8JXCJzHRrN9wEib2XUOaG0b + dHLQLqUptOBMXGGgcSEOEQJG9pwItEANXCv5PCFvKEx3T6ypCdPxN67/CRwaTYr8lVEUcJMlAry4 + YhS2FHjp2cqJZ1izCJGCFrVAblFDoC9792GohdqgaTaqxr5LI58NR3nWUt55sGcOhwxikj+SpDLt + 9tAkXFeJ07QU8tfPOCUlF+5ojM/DFc8mPNCp6Y/CCEYYI9cZ+bhfyfBwYLRlHIYRFgF+pD7gCzaZ + yVl9MeA8AJOYhhB1Bgbkj6053AjXoV2b20/jcpuWeo/kjKv4GTcRVq3JaJYPXM/QVkY2IhjHqB3j + rD9SoaHBhLHMfMbFSjKeyHRULNUeMbRV6xUVTaJAxzYsy3aPNx+mcUwDqxHBBDoX0jbHxLdwQVKZ + eE4y9JjWjHeJOR5mmA423Irx121Hv5RyUjx6wyjc6/khjKh21qUiV7HMKHY55ub8yRjWQFfzMKsm + q1WBB7VUBx67eEQvnKPOI5STRfMXBWa5YwuSs/zTFkRouQ0bydJFJWrenP8AYrbcEytvy2M1L3jL + vzyIBC63dk4Ul1tWhUwul19X4Vy0cUlKL607+dwo77dT3hmftq68l/WGRnn/gvJ+WivtvayD3Z/a + /tFk/eGKZbEltb1zcnbc5fjQ6/T2sB8Yvg2lVnr7T5n/xtvoJph29/TorL2RH1vX8yf9Of/5hzyZ + 6BKyEOfxgYWEXRH8I3DUb7xdUDPWodgYTXQBD3mMGj6hpLGXmpbRx7IgwpYrTXBFUJ/0Y5+JBBDM + 0gQ5C88A8SCpNKaXxApwcwHH1wHhOC+/LuV6jQlsOa+6vV2WfSy4Jo1MFcJVYF3vKpHmpe8Z/fz0 + b+rFMwUfcs23D8z5NSBiN8ggvz7sqO+egR6WyuWe8V0N7s0PO3nuhx311LRoeKgp1DW+DADuCrvS + S/qckhD89llLff+MiZ4zt/PNDuopcB5XpYINmQktIRpXW5+1zU+jZ5XoSvkerJeuFAXzXCPw5fP6 + ZVqmWX+B9cq9daG0duEW391oBRePl9OYuBKqX9OWSbrpzanl4vw3XJPRet8urYvSJb7MObPwyvgB + U05SXS7shQr7dn9vnWuWAa/hml/gmo+cat6QTWb+pH2wYuI3ZpOrIO06Bjnutb36Xcr7h2cg+Lz/ + 3oxEHp+dHd7cuwXgHZwMB2zo/GIQ5va4okhhSVsL0EtSHacKt9QzqMCSlSLKPzVDqLul5LSEuH0Y + xK5gIMwCZH5NEnatfzeNHLINcHWQfRJetzEN5ZVGUq7519gggwfym6xCD0azeGha6kf7XRQGnFrW + Hxik1vUFfTrtNpvBxpIlQkxiEa0fKpU2DTyTgWVFgUBA+kNCDgn7kK0AmRpgZAE3iEIfmQsUEqoJ + pWCLn7WqcdihhUatejC2gljk1rtXzq8XybCyhO+vmr/jYEJjHdGm1gopbHsGpfpjwmNaQGzrxajA + 5tDnOw+QXnfII06kiKF26idGavyXPIXLnLiwfHiRAQPeJkRGeFoxtOijHTP2PfdDEwPz6S136dcg + xg9arIxYImKGK/WlCJ5AkckkYnsWdZc5TKID7cH4SrPQu/KjLFl5JLARpc2FQpmzboeWsrgFN5Js + bzk9KXv6bGVTCOlZNLitqH7BAvxX3EiLY2WHZMVglYfqvjbdYutuOJMPslEX2zrfpA328FJJ8rke + JN59dRsWT8QtZtlyax7PPGm/xN9pO/oDEkI6GPTpkSyeRYEn957NLnhN7luZtn0aX6Icj5jGM22s + lsQ3cc/U0PHoT7bn3pXhu/ezOXtx7IVTIbPXkH3v7NivXxrE31788vLNz6//ffHixx9/e/X27fm/ + WLrdmPZ3To+ODjfKvXLU92f6KhdCKActWkX77UhXaTt+EeKy0lkPeYBD2ssk/vmcGUaunDJYMB8s + uQhjla9kfKu0wI1YYL5a3BjUw7BpIXELo1ZrjH1AQxmLqX3iQymHhgU0lBdEWVL0geb/yoQZhLTc + aUErzkaLyYLZOsSWt/cjhljXt0pBtl6WMp69k6OzM7Fz/rWwth+c9Tj92deFtSfdow0uNqsd1ooD + JemAuAXb5VTV6a7CAc0YjjylRPu67AMHda0EJKJ+MNz44VUUXM3FB0Fkyv3bST/WaX9UDULna6yW + CL3gD/UAg94A/HYBntfb9gG+JFMagH9MAF+Wz/eI7J/9Y/YuqgbZp58nZ+JXdA2y9y7NJ67/AZHd + vlEAe9I32pv6G6YP6xy2D886G8F5b9j2JbmahfOHvCT8Hfu6E4IAXkJa8EmiY19CdmGmRSJKXG9Y + whfzGbekiGIIL2j2pkAtcMxm33m+LgcWegc7RRYb8Rjmwm1ynSee35fU2vRtEGma3yfi7qX7acbh + AnAYtkcKiQ+PDrl+MYYbPLeDc/Zwu6wJmkY2Ni7FC5DMNQ31SPO8zIgndUmfVXIkFr6BdX/El0By + MnXFDjNzQT3sou1uhVylHM/55yRUkU5oXPPENHY8EdSM1ErI8wIAvoLlHNldMmRt8Qz1cuyHwM0+ + LN00dk+RuoVPAhKsMRqemHA+Gj+Tm5gSNRMXcRpN5LyRizxx/sGYDy/1aEIl8sFGPqyLw1miDMXc + cStRCd4IDGIFSr5C1RC0XFTUkqA9/O4pGOLyNip+W/BLe5CNtcgk5w921uy4ouXN1rtm6y0NbkPT + haaD6Oz7RNLxHYkNRDrRxAyNXCFLT4FfeBfEBv0r36NdkexbobN9ll6iCg1LX8/Suw1Lr9r+1j8d + fIzWsXT9+fIj1/+ALN21qaDpAz8EdKV+4pEQ3YyrH5wedM424uqn0adEEltZrj63xFbMeJVc/WcO + w2XU8GOJuIUvhEMLwuIxR+jO5ZKMrE+GD3BkC9JA96ldySiaAspCvpc9plbOaHHYeN2Bvopivn6T + BlEiCgnWqNde1kdUbpTgEnXDEcKwSOH/VZHH0ydoIl6A31rqhWAuxxBzRPAuPifgKqVmYuTlxqMU + VyYNTF+Qs4/0ofI1oapP5GOQpdSyGfWkR7iTZjTHNhjTubiz04nNJEr1M7mKeNVw1Yj29Jix+eEV + 7gsawvYFfx8MXv4m0u8jcyY6x/764kz+2QZEcrtRpo1j5lOzJM0mVPaYAFRfUt9/3ftJ9aLQE/cn + RLnC5wjRnMwFaUxdtX0C9Ss9pIkx9sr5wLnH/P4v9Nu5I7WQlIlpIDrcF0Mgj3AxVfgmNi7aLykm + TFrp6qT5BGNtKV5YyGIaE4dK7TApWdGJNNtQC/AT8aK+Dzf6okx75RNNT/TZ9/w/xTcJJfwLZjAf + rlLpGE/zeuAlQxNm7GRgZBC1gMWIRUJ1cPNtLstiQni48l4trEJEwMbMqYgjx4nE1M4v6izMl/Uu + yJqfYji4dwj/9fvI8cp1lFZ5FGfJ0389k1h4XsOvz//r1et/0+JMpqDLRMpNDC+yQLQAmAJb6jdk + lhVyL8W5AUN5cs0DNgj8v3oIUp/AVkjEFQu57Mo2MzpOpPLS+8gwiZqTUTYYgGdqhui5PejqyBOG + uinA7RKQFEka89o1Re9nEm8Mdosl9ErH6Yg5OPfMeqsNSaeJqBEIXkFF5XZRGzgJGEbF1YHiaJWB + atlpAAmrJplygVm1VBcbAd4I8EaANwL86xDgjdHhGqPDLc8GGbu2b3UoKT2N1WG91aHdWB38xP8k + 3uXVWB06R8Or47UZGXTS6fMZXK3MDj3Cez8iuArMySlf17GB2eGoc9TeyOygJ9HEK5sdHvaI0ADe + 9nKrdMQX3460x0EfSYoES88P2m0Bu+eMKXHUQ9BPiIsL5HI6oBx7mpKgB1Lit0lEEEwrhDNQsV2W + i7QZj5ifoWpiOynM8/w4+JNksuPDAMJ7Zlm0tHHuQG3tZzFncuIIE8Y38XnJ65CDAD5izDkTn1iM + kUqJ+I+g5zRnRs9DQwLrORhSYvrwwfFDhdgm6s4VcJEJMMhuFPaDDJEsuPKD6QlaxBQl1CneBLJD + GqZ8z19srqIgc/ycOzJmSoYjDj5rSDh7oSCqUP2ICiOWYe+PSADV0uMApI12M3NZd+DEr7/NQNze + G3v5Q0AYzxdfkJzNB577LJQKbS6ay4Hc/nC8l4z8AQfdIGAHIpzpSZTnCSvazIORD6K93YPpBz9U + fh8ji0xmGZJBg/0ZxJ/gl6eaI7JIfMU6wqqVozUsIUw3rwiwf+SYflaROulkUS3VyRttTHnDXeWS + 71JL1tz397NnUdfcSd4dNm9R1k138fxI8JZeHIUH2uDSiqWj0RUBeuXpv500WKxLPq+oar6yv4AE + uWZoGn0GjHBfknpw/Csf0JMci6/MDBoOTfZFcokLcSIiuBek+ERQZyA7K1BnCjLVqDPr1ZnmELVy + dSb6HMWcceRabcYx+VppM98ZkoAkvzfUY7pnB5tFLpwdHR3wNnF6zENelPreBAHQhLPd/shWyED9 + xs5MnGDAh5OO2IhTDlOfy+OdjITm/HPRN4dRkQFxLp0rWzOtHZ1fBCS+hUs+tVz9DKomxjt+hu26 + 1DxAOBcQMYAV9kVa9TRntAQA64RZYGaEkFN2+aIGDnzGS6NGUWDATayOxBRATUwEcKQpDUCMGMOR + EGKuVK66qFFqaam3TDPYzMsJ3qfWTIv3PWMm1IYn9M4QLk3ODOwc2+gzd4cq9lgReZcPDffR3n43 + Rc5owneCaWSjXk7kZdP92pCFRI01V8P5wBD0b4IBsV9YN63lk9YReJtkqeWIBnuR33LZzr4qhcmR + wa2oVTUaiJMftdRAbr2l8HqhCdR5b5VbunKTlR/Y7m4rl7xq2xW/32z/LfLbeYb/NW/Npa7L54ba + 35LaQyhVQO0LftFQ+/XUvrnTsnJqfxZ4l2zov47an/2pT/3aUfteoMNLkyZsAaTtH0wiDnC9Oc3v + dE9ONjuuOD048GqTSPoX66MviIUbORZgpZXzjNQEvPGsC0sMjsEON1fsYE8lA6cIdMFshrOWehH0 + s55vCGmUhwvCAY0RE9vftOdHhJb4TkxXcPHxA/HwMThXJ7lUEUnMV2ItSeIDTMgi3M8znZvO1VIx + DWu4C2vgVbp91lASVw1rWM8amtjnyllDvzf6JCf317EG76DPEQW1Yg0/tBN2yrg5S2gfH55txhLO + ut2PtbkIWyQ4O7px/CYOkUgdn0xM6AxVpD6S5JLTLNJb3/zKJ6Tsuur5Hmxh7KI3sN6JcqDpfDnn + Ln4Sd097yAUFHqaFyF1fbFxgoi4yf+aXXfHBViDGM9dmUz7wZGh1bWQ4tcAGZZ4zhWjVE4dEhdT5 + cDqkd+H5GDIGBiYcpiPC2gRXMqMwBEFyjGWS4gIDejTxh6EOuBE/r/jB+rlO0QSSVB676ybfsgnG + CRI5CGatPI7QejkphmmBnjLMNexDyGPqyf1SOL2jn9SIOrYnJVCD+1T9WA9D2ChKiVptiCq+iNQg + Np9wHcHMnljaC6t0/tiVLwG5mERas+OW+o5nwZewU/aYpPVAM+sPlLtMjrOdWiOQ7Rn3SRMJijLc + r6Y8VCe2CvohmuhPEg/r6ivMJqgB7qpob2mCf5GvITrRK2qfkfmf4y2xK4k/s7lr5qw0dg3ym2iS + sKyihvcjk8K7lV1gpJQolnbs0vToPjywEVwb2YvagBhcELK+xryMi/WLRmIP6YCNRXAjztjNHQfo + tAOSCVf9nlbHt7DnoWCZI+kKzn+LzVAY9K6imcYaE7+EllwriTFbLB79pS3YUr+HgbuZjHcjSa1g + D4t+obX0PJ8Zc3fAyzSBd+4v7kstH3YW6/mww9P2YQfbTyxLH3aIg9LY8IVq5yrRvrfrZnpPRna+ + aiyJAJuF6a8Mw9wT1r9aWoEeJOI64AygtBmmtJ3VyASTirQJh1D10iZWuCiUSf01onw1hV9R1pIx + 9AviH8854+x94sBih2y7V/RofnQeDjQWW3zDKWiApiKgWZyPm62g1ai0WNYN5/auSLZY7c26UMAe + Phd3Yd4D/i02+IbjtAXMLHf1HsGTa+UbnBYrLP0kcFp8LuFq8eWDAuw1E9eYgG5pAgK12L4JqKSL + NiagxgS0tO/u1wR0qNuHf641AfVSnxdKrUxAvxmSgLjImgT2i++DTJbyBvag9vHxRvag06PJuLjH + AuWgPQ9kD0JMLnNLf3Wq83kMgdsJIIImmBNF9RHRTORygLDnRLwa9EDHFSlobv3US0GzIFnRSDZI + vF0kxhqqAolzKdAgcYPES/vunpH40nw8CS95ZK8F46Osy24etQLjNKYFOxnpYeS123xosgESH7a7 + N3fTLs9CHYD4O3+oviOwsBY8+GKyQapzkFukOIBN0di0bIYDG6rWXfXEeZga+nII5OH85infkFyY + tyJJhKAJiQz04LfiuZiwFsw2jwDOB5zYAVlEWK+k+VnK8XA+YOUZiUM4k4iZKMgWNuO4a5mho0/8 + PgdG4WEGv8SINZCKCWYSduZf+YH/Z67R5sk3k3HEfqdiSYSmjZC1LJ7EPq00QO409+GUbBfau4KC + 7lG1yE+K9jpUTmhBcFMkhsoOY0WcxW2zWnKWZtE99KJr6N126R22WwX0roCWht49Jnons3d6dHzI + s/dVsbwvpxTJw9BqxfHuklKEtuHZhplM//woJh1H8q69p/seSJ7IdJw+PikOV3BiNgwjpClD2AmD + YI5gqADHIziGouHAQat7eNcevKnnyINl0PHnXAAf2EhATF6GIOkMKcYQbDMmwOJDhAQV4lgRP+E4 + Lo60HGcA1PJ2PaVG4dHQ+rSi2XEcDem3Z0jq3Wq1+AAhii8TJFHTSNKNB7lsRlmb4IBPMvMreqge + Oepk4B6yJ2smDrBsD0F+amcwoTr5ABSngSFyi8MVyR2ciKuFjciyp9DA8oTB3mVTmCIYR1aVIwgE + yXzPH/89pRb6hkiOvQ1WPe2ctds4JEsiSaVGaD/FP3bobfR96A+HAfqD86fAjBO1p3oB+AjncyhO + UK0D1afM52uHQqOySXGKldoYrV1l0n4LZfCBqZm5qR8YZHqzZ+wzTldhp1faw+Rt4A+JZnASdjlD + SnE1Nsp3XKSUnKEgfvTgc04pwCUi6UufZA3nWOO1lXMutzgxqwxKkvFhfmK5T1oOy658M0XOPJkP + NARZ4mlUUkk1x34DuCHAJtIoe+zYGcUkukuyeZHhkVf0QhBgUZnPGrF2HDbH02NTI4QD38PvNqvF + fBNp0l2R4JvP8/wJ6Dvy/ClJ2YfUinlkXxoRFcysBwHKNDSo1qDHp2t52F9L/WKmaRQijWDedKTL + R7uuTIiBc/tdpozPKLUiBidJIo1LmomLC7gKVw5ob+Iyglh+WsTUPc/CZGL0JftsuG36nDvJSSRs + nB7Vy9uUWbZdUXLRAk5dfWbjHvGu2Le3OmCmqZVZiEN5d6s97kXj67mIC1uizPx2DGbO1dmkkjh2 + 5GWA0DaSFxWpWxbx6qVurTjwLqthGH/85c6rb44Mq7WHFdXNV7gOTeRBlxom3/626DxlzF8KaIrJ + KSPO4uAv+DA8CjAq96ymqDS/IAuIWlyRDwlY1yyFFRtx1RJZRrfF8uTziuLmC9wuIs4PfA6Py+P+ + mMFyvpOrkHOxvxXg6OJ0z8/q3HWYt8LapQrkc2Nluq2ViVhGBVamQrltrEzrrUyHtbIylQ0FfzHz + km7MS/PmpYc8QxRhDhRqzEtbYP2NeWm7RL4xLzXmpY1o8UbmpfswLTHaNaaldSroOiSRBxvTUmNa + qgkizS/IxrS0Zl9vFw3nB74xLdn+VoChi9N9Z9NSY1aq0qykG7PSA5qV6ui81D077X59zkt+/2P7 + 48e11iWXNqdW1qVfIj06Ojw429Q3vds+ublvOhuWPvcOJJrOGpaO0I6HMiztuEx1c0FM6vs3v79+ + qWwO3FLyhlI2u31TjoFKl+O3AbalEO8PO/9/e9fa3LaxZP8KVrVVtlMKSb2lux9cTuLEupXE2Tj3 + ulKrLdaQGJKw8GDwIEVv8t+3T/cMHqREkxIhITaqbnxFEhjMDHrmnO7ph7CjlZQWzu9IDRDDMTeO + 8/qREgoNLidtDCJQy1iC6EGEwcYNq6wjE4SzSSoIB0pRupxEwHn0dDT16MV2nTZLL7akhPkNB9Q/ + nggXz/wCZblglI8j1C0J3S0JxXKug4TmANiS0PUk9KRRJLRMJj4b9vnJbJU5+2oU+bxHtsrexenJ + drxzvLg+KvPOpzzQvB2yxQKyU8jmM6F/VxJIecbGuJwOi6+XOtyJxTWAsirMgyVQZSsZm4TEdqnL + qc2W+sVwCEtU4tE2ZY1f/IiO8zaU+DtjPLSoWZ0ZmKKzwQdmFBHNUIqC9DE2PaEV+o/MQwQaG2Lp + 7oTTSjmXgHE1pHfn8bhLbRAeTrFLUuODhaTeQksYCBZePZQyX32NpJSPKJTL1KZqvGvldXt5XZnS + li0+hC3ySq2BLRaw1bLF9WyxWSbLz5ItHh8OPozXs8WLM+5vo9jia0LB3wZRqP9JoonpQ4PbMMct + i7evVEN5yqKHsps7vwKMzC7/mtMTxISKzvM5wwqQwfVggNHG5tINPCxO4F8aqzAJvISLHr/I28jR + v0hwSyBbgTU+5p+p2IuyxNE3EVAYHwmONXsWvefElqhWjV58JcD5lQVnPpjeswxi3XOu9sSRwKGN + KuJj1mQ4IXaxL7lVkYkVaQYEa3k8Uy82RhVaskjJSlBKcxJwlyuZLauP2se5IKw2ZXrifJ8hoQLB + VcmlioCf68c5HjEQwDbMQppRGh4blgdc7cHShALENIil2SsxDgCXJK4dwMeDQFzNua/W08GYw+QJ + sTgNVNJbwjp2LaYxy39KlP9SznXHkfLZgrbKyRwUWqsmieAjUPEwgIWN/vsKR+BfUTMRSEv10V5a + eew+zGHSJs93Qb3yXKJDHpOUgGNOlCCrhoqdsYIJDCQWAwpzM16pjboIudngmkXIb3FaKPNjs/gf + tOofvNxv55u39Lza9+oWIT9ZNwHZL0xLue9AeffIcgP0RttIcXlj9pPlaTOzc8u8lWdtw72nGG++ + CZWm4Il2o+URy+dbBlwd8o52MGnTChO2M9OBXL6asLndMUmt9nZf7Y229Vq0t7ZU/WbaW1vPsnbt + 7fBDFGSDi2CtAjf/mDSvOJWrZp4b+HruJR+4d9tob+fHkvJoY+0tvDnmt9YE7e3nqLBDKq5nocbC + M2IxPAp+gnQox9VTGqNmr1xHBcJV5gA1IHPp3mg1Ma/r0EzQru4TyYoEa1B8G+0XlywRgkG2kHIB + gFuCXtQ1GYqv5izyXCehh8TMDfBEF1xyKh3woyThkgFAZePsvTB4GUYeXDqluPeC2GraGXTczj5R + l7oiGnKpbxarN+jeysCSDLTkZ7fkB9JfB/nJd96W/LTkZ2XdNZD8BPEBG4c/E/LTuzi9ODrfjvz4 + g6iSCfoIfXki8nPpJFPaqEzYUOj8dPkbXN3cDLCXpJkNskm5fDP1kX4MHKxxnOnSOnU1svGKKciq + +biOz0gR+uW4Kr7uXIW/akTe0HUhLf4hH0snxmMwtxtVcU/f0H7syYWMzEMYVoxP3uuMgFbb8DHg + n+kc4uFgTSoh7iRKqT22wcIXUk7PhxM9vJZxX75+/ZqtCTlEYhClXk0zGAdM99JFTQzJLo1GMqQv + SlCWyU/VCrYbGVp5SMuwHsSwsHp2zrDK23vLsNYzrKNGMSzmxwe9k55Eo31WROtodHPGyWbuZFmW + YjSKZX1I5hOA0XbOAbQEj3tbmpeuw1SSCTXArVR2c4Ifj53iYCyAtj3UcaoILxGFS00DqRAu0cnP + /ANNXXNxFkSj5bgEelIGvX+CWp00TxJWjnDlMcrl5mo/E513URYP9csHMxWssyntQLyzVuiKlbFm + 0ZVbzrDK2P2or+F2hL+lh9U+mld3x+1/e4KwB56Xr87HpAiQ2DooQr4/bUER9r559+e3lhW+K65t + DGdg/KmXMbTuhLVThXj2MftjnvByu4ssXEdpDxc0iiy8I/H/UWsWiW24wsHJ5jn1bivL9ZQnUe9J + P/WTyGQaQv2fiJ4SEygRKmGfM7Gbc+24EUOYnpEizblXONNPahIrEZp1HOd7wjSTP4XUbpoIuMvA + K4J11wF8YqD/LinTEaIxrd7qa8SD2oeybp0/lvaAxCNeQYqzdFjfEMbQLaS7+1EolY/gJc8VJ+E9 + z4UmD+g1iccO32QKOs3Vgnp8aVxpgii81guujkRgSNr1q4AU/KGi17hAl0upU7yRM8kCFcJvf4ZU + LM4rYgbXyoHbjM3qFEYoJgWY9qmLOuQ2kP4EGJc4YKX4asLiSHeN63Jts0utWZypcANrxa8h4ve5 + kj/b/mNTPyy8OqhfDjdbUD/TVmOYnh1brVyvPX+rnettdP5mTSONInsPOn872DZ05MN0zsulCZTv + Ue0R4VX4GzXmcG1KeMLu20cnHsngAq4vGRyvHQ6jHKoEeSprYkJGDhvJhB71rSwj/ZLBavsXttJi + yx0exh1IVOvhDq3jcqWHLXd4Mu5wdH1wPL/4Yz11OPJZVBpFHX6O0v6PekwT+MqdeUPd/yXiZCtb + MIiTi+PDLRnEwc3ofgzCtLk7AvE2zgOQKnFHAW3QNM2EEbTCEY+l3X0nC6MBIfcMqaL3V3xTIfQm + CAvKcGr0alP2ekLLHsq2aMxAQkkTC5We1GwSYi0aduDR/qHiBany8IKITDCQCsX3o2iJi26jIckt + W7QwoedSr9z8Tvz8I6nG9J3kk4AFIM045InzcFOf6Hs3EaSc0tIQrwz+cTqBOUB8U5xEAU85iTc8 + QTRsCEiQofxrDmgS/5WhGtCMpnVxH7OQGsl9WoGqU6BabrZjbkZLqQZuVkBCy81abray7h6Xm02m + 6oitIncyM+8gWzSOmf0Q68Wv0UAkeAs2dnC4ORu77QTvFL3YiIyVpWU3bOxq7xUOOqxrqQVEeDwQ + gAKfvx6Qku6aBKeJPZ0IJSGV73tjgIfvjTROQjip1ZWIxs5ZiBWaRrIQ/Gti5GuY0aLxFo93i8cQ + qjrwON8UWjxej8enLR7XjcefLieQ5zVtFCDfr5xA7+L4rLdlWtfBeFFJznWGfjwRJFtb/nyycK72 + Tgub/bosNVB478yys+e4keaKjQnWtxNLoshqu5zDxRjrxxGgC4rrhFOOcxrzbp6sRjJpilKNqF05 + TEg6zo821yZUy5DWAHwDqIvIW6OnrLdGgxk6SWqr+DNIOZ0BaaIR4M/oxJKBCOcFoakZ5OsE/g3K + pV0sZYBEuaCxqM8odZQ7TsD/V0G7pq/KOWTqISV24TSSlFREqeAQu5CpojURLvlC6pl9yVLW8rPd + 8jOsrxr4WQERLT9bz8/OWn5WNz8bHHwY9M7X+zyfqWHzUu7/NtHf6ZnnJ6/cWXStFM/p5kTt/OLs + ZHOidpvp5Cl52nuY1+F9yoVgrhf7nPLEunZObcptgQuSN+oKDiN480PhmGyYZkhfyAZ/5JRzCHaA + fNbqb7LRdZxvCNECtRiIM+nXwD1b6VDB/5WhawwT/8yLcSjAnjOvQj6qmOwbfMLGmsDgn6a4O/IZ + 9gxSoqsZYHkulYXxSHuqUumNo/KyqITJ3PcMBCPiSOWqzaNKJzrOW4RW03vJEjxZjlGokerNSJ03 + Rp3Kwn0WHi2mM65pJTAVeyqNwI2FbyJRGxJg0nXEJWi25xxKLdOmQhSqlJOTQIXeNMMaZi6xnLAw + jw4fqRkOaZCfBjRDYanwHL/Xz2Yw01BbXNRSFQkRhZAQTGtT1bPTySvF0jPyqp4vcc4kGXp4IHxg + 4xJQhJ5MG93Hh0auN/ZQHqjcZrlFiVmnaebMnjQRJrGjfcNurOYAEVMKKdCYCT+gVWrdhTgGPErg + T4zIcyuNnHAwM5HqyqfBuwsnmXspzzEJDh7Dr83RtMh4Yi5RtWtqKvYKFYRwmRMzOWGqkk1IAL83 + bgdWLw5OxyEeS4VJigj5nxty6EbQafJKrtQTcVfm2Hka3BguULJw5vyi2A9bViSPSwcF9SOqhcym + +fcJKV+ccojUpwilfzGVKRIRTalx+hRGYU06hd3rG6lTNHrbWybfVde0+++I69ttN8tPb5brZ/C9 + yTEL/bHdUFc21PWTd1mpKvcIm27xuI1338rr3XIb5lvZ1CD7cfH57o15Zcrkc6uG31MNByTtXg0v + KQCtGl6HGl7JI7GsM7ZqeLa1S6mt4nF/NZxfyW7V8Ie7lJ6f9i42T1lyqyZ+tnnOks19Sv+P5o3W + I82GF1KvljbZqo5uviVxps2tNFxXLRLsbG7sTfskcDpE+YI9Wdvc8JQIM3px0sNX5l17bv8QAyQe + ES76hHqq0lN0Baw6l+Uffnz7zasfZRspd/ZAGqVdoJ/FTLUnaTpN/tHtzufzjgwgQQm0YYcWXXcc + +W5XFnIXN/EX/ZODw8405DI7djjFdMIIknq0a9Gs901VMINIZh7zVZB4H7GpIxRVpvf+XTo4tT2a + e246wUjhyEIsg2gHf+IN6/4POMqHbB9wBLfl/AFHhw98wPH58gOOz8sPOD5/4ANOj5cfcHpcfsDp + 8QMfcHC4MgT6qvIWDs//YhUQ8mevIWnaB0dB6ywMq78QeLsVgadlpUN4zZY2rVzECqlLo/44JoWG + MDAklC2TBKLSQ1qCIJ4Y7g8eqjDT6nB+5cE639KykfojigijvgYFj7s+QS0pJWo4xNEM/+p+PYq1 + dgaErqCprIRj16p2uNgdqutRVn0W8uwsTUM+bTIPFht+oLkWmJL1U7qlXUZf3jIacZWXvWJp3CI6 + ghoWWCqgYQFj7EcD5TOGlkTw/qOwGMEd3cB+fTliy42UKpF0lRXt8FmlugvrkCZzAHHbf0ALPeg4 + 7wLk2DSubF35f2eEsjxdYmdj+8tVeNhxflKeWFho+cXAq6vwqMNFQPn8+So8Nqr2VXjSeVg5sl2c + cIeSfJX96RNtcqrDwsLWCTfiKuuV9kq2Ci1H3L4ijZnkBeXtuaqMY6rJm4BMW+inZOZYwO4AEogx + J/yQqglkimygck5trus4f5+6Yg4fL3D++LlkNx2oBOPiOYXVAQf7krYCJgWk54ASyv0AMEnkhZ4h + aoHjVRXyZ7DHZWEXS8piyS4G+WAR2fH2et9YJnh66D6JzIDNy4OJQ7xlJlnMxkzOmiphF5xKBL+Z + UYsJZ7n8j0qSLDB9Y0Na7n+Qm+2Koq/FxNdkTrY6SyPNyZ/ahcqmrXXb0bK9x1h8Ir9qAfI9+bzp + viXN2ruWW1nd0dZfX+x166+TXXD9NQ/ZH9e3/OCd8/bmu6V3UTVgfnbbbNbAEmrOp04x/gZ7ssyi + GJ7v3JzLF9WyS6/Mo3y+07ZsbAnEIomnrlh6il27tTIDqWqwMhfGrdbKLD2808p81qa4pI6efrwe + 3CIXO7Izu/7p+mzYp9lg+tTe+NbEkxuZk2FGqJBq6vNhr7dlmsvj897x5p5eYK2nJJcsmNbAXBGx + W954na5e3+PknjMGXjrwZwgG4Blv1Jyz5QFlhZh4OPHn2Gtgdl43S/CQgNDMDAhHkTNQlypt0Z0C + RhLf7dDAvI9R2GHiMVH+iDBM27N2Z+DTNoEsfFocF+ga7LRToP27CKjJnthI9XcNnEP3pE9MWZQA + uoG/vD/SC5CAKEUQOmQEpXbpAy4rV7lljwaP0xoudQiHwHA8N94aSBO4fPNVdtg7GPokO/wXH3wv + jYq+gc820TBNyFHqRD7l4q322wTZE33hquxfrmjMKS0NmjRoU2hJ39DypZnjRoIFn1zTrMMrxQNr + 8VAOZBb5MEuSXrGwPuKBHBgkPCR4W+SvE9Qzd48w72TE3gb5TeAkIIxgtoa8hZaO4H3lV6JAbQD3 + C5IcL020z5XZUGuExs1kiwP5dYw9F3ZY5ja11XbJt6BGKo3temzwelxmx1Ut44teqitz8wnN4YvR + F0C4uixofQhavySXtPWQdEU3/YlKiGkgKsfDW+yaTWr3+kKJrLT6wnp9oddqC16cHc3LeQl2rC3o + D2cfg/Fsnb5wFH6YXTyxvmD7VCgM34EaTLwRvZtfaQveTmHoHRycHG2lMBxdD884UDjPcbZ5krPd + awzvvMDzOSWTGDP/yDzjN8vplwTG3g0ncYSWdfwMyTDhM49jvoyDNrG9Z/EAIZF66AHzjVGQcAzQ + I4mscspgbpxPPAKcabIYTiJC/DSKF9QqDUz7XRqw6w0tMyIEpf0Eh+Z5y8UFz2BenGnfGFxBXhKH + Xig9FUDXyVOPJ5Mo42TghrUMohvnau/3KHsGRNbK3cfA/uNqzxjzVMwXO3ijCyEs5rZ9uu+3iQqv + k32idXNwMj4OYEvddYeIIB8cYXgrEyc8AlMgObyq1fdQlY/9cdMFmuZ0XsxatK9nCpffeNQPcMTy + vBm6s9ounzvQToxnYxvFmKx3Ar0Vmg41XLAbLD0iSWMz5wpO67CqsvUzgGERvfifmfY4Q6s3DqMY + HsL/+9we/+qwM/euvSnKOHeieNzFp+6/6QZY0fIbXgiD5aReSCMCX2hv5n1kx2OmPOIMTGPzhnWF + Que7UCNVhm0XJO6y504kYOWPNSzRcvNbr9XyzQ9YtNwKn1DQ6i3arC7j4qJN1nNx9bqFXVxl+PBd + usPK4l96SU+zC1Q68fDtQEasnAnxQRLnLXcCK/sre4qZWiU/b7lfrLwX+fzF6y1M/brIKICT2H6i + QaF00qddb6zoTXOyARYAv58sgmkaBUnX7JS711tKnKnVW9brLYdtFsC+Nx1fj8qAvWPFhSBrsi4L + 4HEYDTx2umuU2vJapT8tfolwNry5ynJycXF2dHpyeLCNynIcnKSn7GPeiHB2ztaf0DpSHed9HlBI + vCpDTKDC8To4va0RNELNpDeopESYtTfCGiaSD8ucMbvN5VqYV4VlxBFcGAn5ONEL+zXAeSBl++lY + +YS/OpFDf6Fj1AKHlzHdMR4QdNPQi4cZuFwUD4jh7FvDHWEpvk+lkhLHpyIHMPrEj4anB+81HY4Q + 9Fz4cSnXdbJpYckUd4Y5aOEc0yEPTjAcDJ7WgTiYBIiF438Gxg0k90GgviDVkoadcp/+e4ZQ4lL+ + v6s9kAHW9rw0/xON0n/EOGj6YXqEW5RxUTBt8Gjwdf4Eo1axR4YQTDsr9jp5oxxtFwfgfhLeyRTG + vChpmJoyw5GBIGVwguQ4nmOdSmwH8YpHvhckCzl+uTQJdtApmQ24UlFb7HtjhYEpB736Ibx2clcL + YlFwKresdgTmLFZb67yh5po9QkQCFMprcSee686444R6jhLoTqCRRYgk5IVx0JtHNOGuNxppLDsH + ntuJ8xx+Kgmhui9hyyEJoiWI++zEQltS8UvMXHpG4PWi4/xCSAbjr0/00TMDcLUOIF9sf4Zw+MY1 + DWNZdt5RLFcs0ezQwuI3BW0mEiYOS1+zo0Qi0dKcXzpfGZ3lh4T04pSJq2bJwIMhU+HM4wjQqz1I + n0RtkqwE5tzBVx+RWExmkd66fdGdktePhzfGWSjtQQUx0YCmKJ1HRqsx3kt8jMKsl7UR6AIJhBZ/ + sedWFvP8s1azLxuJ8GcWCeOBYzyaFF4BU3DSq1DEDVfD8wd12ThTE+aVbp9pLKLLyuBANegKLjQi + BzDYs7+eREPm17oWrbcAsUZqvZts6oX+ctfuzhewgibbfPH5b7bfF0Ota+MvP6FAgOLbSjhzGROK + bwURyrdYlCh/tx4u7nhgGUCWelp+qTuAlOozy43fC2SytXaBHH/KY2oGEJV79DdApHJ3HwZNxRtf + waiKaOdgVdywBrWKiwx8lQRrQxwr7mgYoBUd2xrZVtaHfP7i7TOs4XYHiz6razSmvurTLDJokO4W + IrY40eyNKp3gyFrVNbC+WxPNko7YmmjWm2jul/Dg87LQRNnx4fEtUrEjC83paDyd64BF4S4jjX9C + 7IvtBE0y0rzhyJ/vxA/pDZFcluZNTTWn56dH51ulO8hfxPYFtHZvqbnae8uAxXSA1y3MAOZAwmGY + Bvawy1N++pEsEpIbh5rHUZDghkoyeM+FKYod4QY8wUltPiDLEhDcxGEyc2AjQxjOYAAto9P8FPZb + kCumVh8Q50G0f6oj4BWSTYmyS3sIbTUp00uJzxFO8ZIeD2zUnEAshp8VUUvzAXtVUqnQBNBFYAqa + TBG3oXCSom8mHrFUJ81ITn1G65iGFH7Naahokugp7ANH/xtEUAL5GuQVDpEFyqOloZN6zkaLVdRI + LbFEPVYkq0SwnlbEpCfCGj8la8W1uxe6ctu7l76Wyd3O5HgD7iKeyEhb7haIJGXzhDkcWyeExhOP + 65plt3MWV4aPlsWtZ3HtOVvfm17Hp1x9ox4Wdzy46GVrKdzx1GVBaRSFG2UDnRz2er0tqdvJxcnF + xtQN2Hvth0eSW7sBp2yXsEIYO5dMGnCAgwgY9byRtW5eaz3ly2jWp0DIyBczix6NPCx+WA/MtYMs + mMKYyZdjUYjJlfARmMR3wc4JI0WgfUBCd6amiGXA0/OHdGBZexPNbRg1YRXbKmjojNawRuFiybYY + qA/0OY6Uy+uQrbo0qcjTEyHhJiJ994kNDCewM+G+wqY2h/9SNFADn5OMgkdYq5qPTKOw1iBknV1w + EpNrFkYyeq7ZpthUC3Myjx7dY9f7PGrCMAs8xs+tSPbXHKZront2xTWS7jVcBpcZUNXW+4WJ58ps + tHxQLHvA1K6iRlUAm10y9xJQCOOCFSd9HHX15TVjXGCDWJU1sMECkVo2uJ4Ntja9vhel8wlHf9fD + Bk9uEv+cfllHCMfBRczl4J+QEK7El19ic32P9M3f6wAK+la88OT8rHd6thUvHHvuTaXoW0XObnnt + dfLC76JSGiSAUefESTStOpfPs+GszG7CmAgHScpZsmFAkJb5FD5CbpZw/NLhVC72hAlGB3tExehW + apo/W9SpJtnhhDy0xbx0XhF0o3Mw5eRez3BxF1Sj7jC6BwqJ/Wlukol4rcNT2h5aJZGfiVc6nohU + 6nkon+mudHCg0Si3R5s5bbucynwI9+yBdtCWGGoQneqqRU4pEAQa6nk+FkK6ITZBHPGaiXjJvkpv + gsD5ySQlZ94CF3ae8QRSFZjCBLT1EcL7HrGXLGZ+hM0UUarct6FPd/mLTj30MV+fjaSPrag+hqgu + 874lFrxbKV55WssyxeoIrO6y+wLxSTdmRPN9z0VKasagpC/+O33Md5+LDXbNAt450yxjXMs01zPN + NjC5GUzz+tx/6rJ1O2eap73j078v03wVulKAJYXX4K2ACo9CWEEAq4THjKw/i5Gl4/wTfklsrQgz + BhBzCeGcMcR0nLecsjFMskBKtwLxJzgxTDItv45jrRFTOAGqJBNCTNLXPTidvkdNVwZNTtnIFVl1 + qOPxYp9wli0r1Lkkr5sTKFfjl0FGTYk3KQxUtD4yenNAzlc4oCNkVwlMMtEUBhxgYTZFbhFOlhLJ + SSCgOOMkmWacbOpZcDoPxHLt84knu3wVFMhDxCP9gSbF9IPfXNrGxLOuLs/jfG01kiV+YWK2TKCq + dO3pJXClgy3DexjDw+KrgeEV2NIyvJbhrSy8x2V4aXIachK4O+mdJTZNonevfC5Guei/DUWIN2d2 + JweHve2Y3WR4yCG0ltltXgRp98zud0m6ogZswYArPkfx86nue0n64LuCP3x4Zk9LxNAhFTynUj1w + gcL3DI6KbRXWix1IHOY4OUJgOz/GRV9R0pCuGaEJ3xll2pcT5bc4jIOtwkufEdTbltGuPQbjsAZB + Y0sVdMn5Kv+9wh+SSiLwl85r3wuoR2zrAZYyvuNQcBhNCQkYs0fegP6KpkhYPkRutuSl6aINbmG/ + ezn4jIEEdZ0R52unkfTt96UUIKtCtUwoqoznyeRtfbdKolgMr4ky+clhrBHXlZvlc8v17sv1sFJr + 4HoF2rRcbz3Xa1ZScry944ujwwtJtvK4lC+Yxx9qzDY4Wpy4nPfiLso3vAimzUvagYJwtHTZFrkx + 3zu+ODw+3o7vDbIklgKhDYgDeX0z9CTCOpEw5lGMky5OUDuccMwlx3tzIW0YAtgYQ/1OjSMTcEhJ + OrJ9jlbGF/pG8TEY0Or7osH/NhD4hu6E+xfnE/ttAu956oXAG/41doypArpBdjVy4loCwOd/fDBo + bDWFzxXnuKCp5Dn3TRAuB+8W/vnUj1KsJp6lwgWG/zy3iGBkkuoZlb2nXvhCuskjR1HxiUm0FfDR + Hs8NRwfQ/ONckJ4Ed/zQGcfKhWmHuMFM+w6W6YDrxXPALuKAOagY9pXnmDsOAkankZiLejDWL5j9 + vgoXc8UZx0xeChwQplz9BHniYmIvRepnCRCAicdO637uUMYnpxI2HSzEGsRBEGb22BduuTIVe6al + iIkQCUH2MWEiCBx/MK/dM1yJsbFMbvNdopHk9nNbOAWV/fxW0DKXXTKslhdXMQ11r7LykzZfbitj + +Ux4Oec2ykHxPsycSQ1H99gaUn3MNwf12HifeRT7LvgaThW6ZovZOSsvc4ItWPneT++cP51fjOb4 + p/MO2wsmnFaC/VaExvk2wi5x47zjaDneOhtD5pkY1kvl24CgvhfORhHnfauHw5/8oTSrCHdxeNU7 + 8JjFPiGHXzHbjqMo0fCV1/H5Ocvhxjz+6PB8C9/P8gtogtn2XcTlJcYZ8klnId0BNE15D3dGmuMA + EptzFtmRGNUGpvxgCXqRkIQNSnkYAePOS+dnREyApxiftoEeYdjo80PYn32rZeKXi1YjiV8x1WXK + 9Ihz/rlSANv+fQkAL8gu4D6JspjgPxrlwC+cOeka4do95Je2jy0g37TVGOy2Y6sVvZtliHsi9L44 + 8pm21YPehwfX2cHpQAj1HQB+oWdDxsgnBHDbpwLB9XASvZpHUbQdeh/2Lnpb1QY8Pj/7qNm60AQr + 3E86VU65jpaGt7pCrS/kioMCKVlSfwBWEMRfhkNWAVLNWeIZMEiXhqNP4nzUMbIzKi+w8AO84a0Q + nuykr5cetS81khlfTG77Sk+GEro4QAb/gHbANGZ8SzmhPWaXFXvURY6lQhZjm+IEZh4crH43h0ym + CtbIC1E0YTphP6apQspGNp/I9+VHAxIJbXyf20X+fDjHIyoALwnJMQi85G+2iwQ6HtNbtkM3dQQU + XL6Wn7nc6SAzZb1ImfezhARa5vv7LKbxxPB0R/IOAuJLmAAq3fQS8wAk0BP7XIATR3703IQQcHoS + X+q5wZGffarQazbZ5E2UG+44b7RH4jygYdEr/1eYlx5wfom9cOjBUDRCWkUOmhADi83OZ6lEnkmw + cuUl53gNzMEpjfWbDFkaJQQC/Xi4Wc+u9jKxy7ecRhK7zRbhMvmq2pJ4fZZ5YbtQH2Ghrn8n91nD + xSusYTGX5WO3q7rc8trlvTJl8rnVIcDLuiq88aIs6ZNc96n1mBZEjFEkaUYbC02hi0P+cNGXjFFd + s7PtXqso0ZpWq1ivVbQ2QdIqfJrjW6RiR1rFeTjxuTt3qRTnfyyGnKToCVWKFZugfx0ruOdsp1D0 + zk9PtyvEcX7tJ0zqrUJxhG48kULxHY2I3dsA8oQRiWZIVi6OrOb/yDHy9VX6g2YqwICrh3xelwLY + cOpkjqxohaK6EwgFDuSQOdqZKxTOBfJPtKSxdjgtn4UoeiiqPiELsYDlQEIQ5OSOqcx/Xlw4z1N1 + Y9pJJt6Uk5wA5wkJ/YxE4kU9TDSX1EYy0U+9vWXwNvDNuxTSLIqJMId1y00b/qJXhiWf7xpVS1Z4 + u+8qAm1Eovf51L+fTJDJUPU53okeFUu2dwCQTueajz1Z+nfPVkp7ZstW1rOVo5at1M1WbvT5cK0X + 4nl4c9a4wJN0Csd0PnndgqycHZxtF018PugNB2WyUhGtW950nWTld1RwOeh9feIkWIkmjxn1PZ2I + Fe5qr9PpsI/SYe/gAodtuMIaQ6Dc20zC7AVVeBclnFYj89Okc7X3X87lswCp5DTNDm0L0jZUY44x + ZUUvQudV7MEZxxtPnNL+ad19sBnwfrKPUz0+oTO9IbgzdhYN0wwShZDKzaYbc683TSIHXleRTRTC + tpEYqY7zdqVf/wrZaWwfJUdp0wWDZWeukZ9hgyuwFvfxqGn0PBIarBmZO9aIfw1yR7VoxOUnTPkC + thpxM6j4SthOc0PCdQ3Sg/6LMxMQW47P9iW/SXFrjI7z+JQzpq4PJ7gNDCEgPuXdiO8ialiGUeAN + Tc7nyiMtizBBtRKMi/KnXDWEQ1Y18QuOza2JCtptoJFUcP3aWGZMVcKHf201kIevn6IxWkjyCYam + pRW1vkeNXGzru/zAdbi+8SYs0fU93OHqXXmSfG5p/L1pPHauGmh8wSZaGr+exvf++gsXGl8oaeuv + v/4fUJjHOp1jBAA= + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '36833' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:42:52 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=hkchokqkprqelhpqpd.0.1630964572554.Z0FBQUFBQmhOb3RjTTNGWE5qdTk1ZEd2WGpHaVR5U0tsSV9XZEJKQ0E5LVVSZ1JMVW5HVkJzSHBCSEFHS0I4Q3BucURnVkhQUEtyOUxON0ktSThPMWI2cHQybXFoZm8zT2Qwa1ZPMElxelpielZpcVJlNGtPQlFnaU5kZUNDNGxtbml2cFpXczlCUWM; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 23:42:52 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '298' + x-ratelimit-reset: + - '428' + x-ratelimit-used: + - '2' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +version: 1 diff --git a/cassettes/test_comment_search_ids b/cassettes/test_comment_search_ids new file mode 100644 index 0000000..3d85954 --- /dev/null +++ b/cassettes/test_comment_search_ids @@ -0,0 +1,83 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?ids=gjacwx5,gjad2l6,gjadatw,gjadc7w,gjadcwh,gjadgd7,gjadlbc,gjadnoc,gjadog1,gjadphb + response: + body: + string: !!binary | + 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 + xxdf/wRFqEIVX0MAAA== + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bdd89b0d5431-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:45 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:45 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=9GmsIAcKsg2YkkvprDUgzc38MdrQcugGbBdBZwJX7quTodBfuSczsx%2FH1tWXAiol%2F8HfsnJ6MDnl92ZMC1JZy%2Ffns8Fr1cfYpDL3ZDJNHdqPiva6HlIUqCgNeY52fgKGy9Mx"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +version: 1 diff --git a/cassettes/test_comment_search_limit b/cassettes/test_comment_search_limit new file mode 100644 index 0000000..550a803 --- /dev/null +++ b/cassettes/test_comment_search_limit @@ -0,0 +1,2989 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=100&before=1629990795&size=100&sort=desc&metadata=true + response: + body: + string: !!binary | + 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 + antYJWQCAA== + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bd491c7053e9-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:21 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:21 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Ud6IR8854RvJW6Vi2TA5zaIieX4cgo4Py0%2FyNIkQYhhlpe9tXrkzKFMNsBfEraRkxTDLE%2BShFge20OHnsBVnfe95KFGIgGj%2Bq%2BujtaMgqoF%2Fux6a5ljHvRBKyApk33X6Elhz"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=100&before=1604761995&size=100&sort=desc&metadata=true&after=1601608395 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+19a3PbyLXt9/yKHlXd4+SUTPEhvubULZfG9sxorl+JPZmTG6dYDWADaLHRDXc3 + CEE5+e+39m6Aoi15gjBDEaqLnEcsEs8msHb33muv9fffMcbYScQdP/mW/ZX+wv/8ffsv+p5LueIl + N5FQicUN/3b6xQbW6lBwB5Hf7uRbpgopv9yqcKk2J9+yk7UEoWB1UwoIQKqTezdcxZILswp4uE6M + LlS0CrWk/b967HqX0NpVKLm1LbY1IkwdXLt7b2t3QwdZLrmDlYhaHLY+ZJvNWt+Wq3LA0aNjf2XD + QkrFM7/ZeDVf2I0ebcKvbJ1zZ0Arf/iTb1nMpYWvbGogE0X2tY3wRwdz77MR6KjCy/mQAiuUCCFm + 3DgRSmCVLlgGygmtWMkty7V1EDGh2GteDdilZS4FA4yriuVFIIVNIWL4tDKXcsdsqkvahkEcQ+iY + jpnU4TrSpbJMKxamQkYs08ZxKVyFR8atrbhmmVYutcwKFcKzL8cn1FLy3EK0CiDkhYVVaHSJD6By + Rsv7f6tQZ3gzzc903xYG6B0pXHjyLRvNhufz2Wh5Pvtis0TI5k37+z+++I4evpMkSIS4Xnx52cKu + bBFkwjn42s8phVr7J/jETVZXObj8+svD4BBC9JUDKL2KtZS6PPmWOVN8+XXODY5BfYbRKgkSWLpP + X54iB5NxvBbc7Myc2VCACuGsHkN75q/szDruIOMqonGzjlfcpTqDlabnbcVVtKInI1xl3K7P6oE5 + +/J8BpwRsIFopdXO0E/nX2xnQ23wxxt9+TmoaGUglwLs/TdunQjX4qvDZovAQBQJBIWT+m5PvrZN + M3zTVaaL8svNnM49ykL0K8+a047XqG1XBkIQG7q44Zfb4TPpn1teg/t2g52H79AR4QMYK7gdjZZ9 + MDhQMBiNyk8q70IoeK8Lc2zUHU/2Qt30av4boG5uk/LAqBtk68UeqItXdhZBKIUSKllZpctVqDdg + VkKtCrtS2rgUuHWrUki5SvkGzupxaQu6k/MedLsBulc8E5C5gBtT9bB7INid6NCOuoC6PxXWsTAF + hBkmHNOFO2VMaQU4b3aptsAMxGDwNbHbiXmkhUpo2qzzXFvhaHPOcsmVYwG3OCUX4J6xj+qj+oUm + 7JHGHartMQLAY3AWcqPERptjY/9oP+yH32LGrSbJoWfcPFmEe2A/XtlZLIx1q7TIuFqF3MJKxytb + 4mpdqFgWoG44hoKQKx7xs3pYWkP/qIf+bkD/ay75GsbTWY/7B8L98+vwXHUB9y8dE5RbsSKQ4DMn + JbBSq4/FeDhaOiZiwvcw5SoByzgiuOH4hjFQukjSAbuQVrNPhU+jYJpFxMBCjtDOhDGQc8MDWbEI + EsMjiNjvv9c6YjbkJhSuOmX4E4LhrjDA4NoZyMCeMnDh4A/HjAWLxflesSCeVo9jHZDmvHzAdUA8 + rVoGg8Vy1geDbgSDd69XGay+e/v2w1+e5iK0q1ze9HHhQHFhuplcTTbxpAuh4UU9T7c5z1jxjF0y + KdaYH0+Un/QLy6wrYooPiiXgmNUs4xEr8e9L/4m4ZpBxIS3jLOLVceF8vB+cD8PHAedLMeYPCefD + sDWc92mdPpfe59IfPpd+ikkYEXIpK6yoGsZNUuBTyEKdgWVYDWVOn7KPJyVgzbSQkXriMEnDVeVS + QnrNnKkYVxGzUpdMG5YJJxLugAl3in97vGUpcOlSAYZxYWiHkjswLNaG6cJYkBuc2NdQz4R7IiVL + eZ6DwtOVvLJYhuUshpJlQkrMD1XAjf148oxdZD6oOB9+uGNGJKk7arpoMduvQAuTm8cRU8RCmgeM + KTC5aRtT5n19tiMxRWkd5EZHIukrBQerFIz4BroQU/4CPD1llyzSGCfWSpcDhGUDJStyRO/vtHVa + +XCRY6RxIgP8wuoCKTuKvfmRcWk17qeVrBjme7IAzBbcES5YALE2wD6kXK1tIjZ1lUAXOSaqBEYv + jquKtYjwSAo2YO4eSjg89dvQ6QDM4Kih4ny/qnL4aXHsUHHf9/fEisWn6/QBY0X4qW1tYTHt1x8d + iRWvYCNW43kfJw4UJ/RytJl2IU78rIRKeSAcDyQcF3f3S/uEWfFIsvgW1g8Ju1nRGnYnPex2A3Z1 + mla6iESkHE7Zevg9EPzyoVjqLsDv25QpjbPfklucqFPuPtXE7LEiglOWVUz6WbXROmNXyABKwFnG + pSa2fCQM8uZtoSTmWTC7LxwmbyhzlGo3YN8VDj8rbEEZpkhbnPDXGR2qEOAPeNxp93g/+A9i+0jg + /2bykPAfxLYt/E96+O8I/P8fvdZG9Kh/INRfTJyxnUj48wxO2ficsi94NCVsiBCPLzalVQIuJYsR + zy1tFHMpKU+inMYcPYuNvgGFGX1Y+/IAsTaFYm+ef/hvzLQgFGBICQohHeN02FgbR4UBHkH9EZ2J + WqiIQKR4gScdsDe6ZB/gmlsfcngYQu6sT+j7ikAA7Hz4sRgOgyFdI158yK3zhWWkJ/E1YLaJCs9X + RZZjjSIVScoWQ39boQRumF0LrHEUpmGpRhz7vKwDHlGEI/rqttDBA03x7Mjxaj8CagDiccQrKO4S + yg8Zr0C0jlfjPl51I179rJwuwhRTB0/fCHXF+9B1oNCVRWGkg6ojlYVTCgNPLCsxGlzepvP9kgJB + mqKR0/rIID3cD6TD/HGAdDLjD5nKD8K8NUj3bQIdAekXghuTAn+t1Rqqpz1EHwiiZ4mD9LcE6Hte + hTb4/KOwTpvqFKlDmVbMgrJAs238P2oS0Ao/LCxOrpVWTz8YnJzHXHEnQswsSSZUJEIkC9EUXVZ+ + 4k+5IpR5UBoTTVgwzrZdCQpKpBBleNTY8CI6LvaPpvth/3j2b2O/KDeLq6vDYn+s4jL6l7HfX9lZ + YVco1MHlyoLZiBBWW22OFcenFU8Wa7Piq43GAv1ZPTRt4X/cs346Av8vK7B5dSFlD/yHKibMxlkn + eKSXTzIC5pILItUUygnJxqPhEBMvEvgG2NtUaCJ6oowPK4Ej12fA3qcANj0mXs+X+yVUltm483P1 + r53hgFP1ZTZui9XDPp/SEax+G9iwMPBi9Qqgh+tDVQHCcTydlONOILZv3/WwbXmFqJ1xFGwAu23t + xXeacbUVSFNE5w8KhzgeNjlz3/nLxO1+UifYUjBgv+DU3adm7DY57wqjaKZPO3PjE/JYLKDHmek4 + 3i4YSm1kxNYAufXnoTQ8PX+ssEeNGvP9Zvn30OU7ytYUQz19wLixkKZl3Jgv+ubfjsSN3IrcQN/v + ezAdCLO8juNPV50IGSwweg2+5kuQjeoOTYGXBVKXYJjEOiy2ZA0YeyGoV8wAl+IGiGyE/WPMd3dR + SicrwpQ5o4tAwoC9rljAj5u9mc/203SYX1/3q4G7qD6/vm6L6ncCao/qR0L1zIapgXGP6gdC9dRm + POoGpCOxZe2rqV5QmWO7L64IUPfHNZ+HfDu5zyWvUBs5XON0XriUKRLmGaCC2wU2XNEb5YR1p2y7 + zMgNOFcxSwo+GzAVKsdd4vx+7Q+CrGPK7iPTZsCIOYodx7hDfZFA4kI248YdN0LsV9ud5/rYmsvt + Zv5xObXrhxRdnue6dZDoq7sdCRI2B1BgojDs48ShZv+pyufdkN9HfU//BlNrLiNgFUHhwGK8EAqh + 0vo23kKE1EAQYR8A6sBthJb4+pyyyBSea4qdAPaURZAbsFbU/cBcXQtw1XEXAHd03VvC+5XtvKT+ + 185wUHC/atsPMJ8te3DvBrj/sRAmXPdqDYdCdjkpgqQLyH5hiU2Df7Iy1djxBeR+gtn3N4A1WslV + ZE9x+o2SnUozqVWC3QI5QMTsmmR+cCmgUMrnm4/qbWFwTSC04pLl3LqnqMZw2hio4CfHRfg9hRZm + 2bRP8dxN8cyyaVuA7/t9uwLwb6jDxw1VX+49mFbnKJCdYOe80c73P13xcM04oxeZ4ZvMXGqAR76m + KxR7pS27UAlInJtXYB0Y6oiiLmG2HJJCM4Cv2DqN33mTLWFZomstuACoIDBgv3iOD31Zq+2UQh45 + vT/ZL3kzveaPg5j/wBo702veFvzPe7ZPV4j5P70A+IlX48moR/8Dob81Y7noBjdTylr8rFC4sUPw + TnXJctAolUbKD5jkRz1mJN9oRel6UFFD8RGI+IznOuSyyjGlY0NQ3AjSaMPUPYNrHjpZ3ZYS/Hmc + ZgkX6riYP95Pg3Oqxo/CJDHOM7l4yJTOVLWleM4nPR2/I6D/1wgkOIj+9q9C/snJbwX4h8fxk4ib + O6WrNij5VwOZ3twzOg8LVPtxCqcZ/AZA9WmSqANPTmf5eLIHUOGVnW2rynYVAZoMrHJN3ULeboqH + MF5FEOrKrpw+q4elh6nHBlMXEQ/ERvB1PzM90MzUJdlVyWddmJs+51LE2ijBkXFiWQpS6gF5AWJL + Ec1X/QQ029YJiZOSSB1wyUpuMpyjEmv9iWMKQrCWGyErxjNdoLgwadcL1AxINaKhp5+UlLaw2Jxk + LeUrPp6w33OfDW9mxjmpvfwBZYRRJtjikUIpMsp472Q8bCpiyp+QQL0XqrEsEnEswkJS8iU3EInQ + fTwZsEvnWS0WILN+9k1USJxkswRr6lyiLJpwRQRPvUciwhZwUl0LtYzwcKHIhaMsu0/foBgCqtaE + Ibc+9Q7XqJwjtKISLZ2Dri3jzSnrs4kb7m3Uga+PLII8Wy72CoHnw0cinACf1EN6sJwP2wonzId9 + 9bUjMdDxiGfIsLN9EDxQEAQb8LhjjVgM8H4TIk4iolMDFK9qRTUP7xSHGkkEYC85pvLxlWchGMcF + yuXziOcO6fe3umYksa9j9g5btfjurtyyTFvM3Dijc2zbouQ+8fIxvIIZDAZefYG8XxoaaOBV28jx + lTZkORihIxagE0xFTFI7YD6W79JMUSJUo9/X1lom1SXG5FO8M7oVPLDh3iu4CfGUtEIFNwkbkCQg + 8fztGC8j1CoqQrFB1R/GWSA0i8QGjAUcUFtZB9k2KNvCC05TJ7ItLA4ZqQbhIoKMKQeMvUJ/SroS + jM6SaKsbsYFTPzR4ezaHELXjMl6xABTEwqEyXobqcIy9LUytXpeRMio22QXAtm7JkB03yM7263ge + 2UdiShNm6egBg+zItjWlmc37IkifD+vzYS1x6ny/fNjQ6r5Yew9ODW1bnv1s2rfY9oaMvSHjg+sz + Y2JIAmaraProUqPLrVhC/XagRL9fHAgV6RJdGctmou+lGmh6jBNarViTsPIyDcedd57v11t7jxBB + R5M7PHtIqf2hnrbG897gqiuSCWkewQapdT2eHwjP41EwXXRAEPOS6PQkjQ8le6kS2YhhlvBkAywA + QJVMQPCODXwq0BzFYi4EWGRIXcF6PWOS50d8J3mFqfe8RT19dEn8WZG/CkvEpnFV2alSpKTKWVv8 + luCOHAH2yzwMr9b9jP6+CHC1bh0Beu59RyLA+3cXzyfvJhfPf+wjwIEiwFgOJ4toc92FOf1Lyd4I + dCuJR5rA/xXffsAZ99pqNHdXThig2jaVpivwmX6fcrfMAP4MxKmkTHpdpUZRhAhsaERA0gkfMLm/ + e85IWFeYgOPSIS9sivx9EyKLE13YcTHhk9Ls5/dI5/S5erE9bW2P8tlV+/hDti2ETEaxn99TBZtu + B6gMkGvJDdto4+B66+lOHWC7X0RG53UxIC7oWN4I2Cfb65N/dj/+5L7fzNLtZ0JGd+dTDxrYJnsF + tvTmZvI4Als8Mw8Y2HBc2ga28z6wdSSwVbowGVc21EpB6ProdijBf1fGQTd0IciMBYuuzpeML6mi + XHtIUuLqtoEMGVroMAkKlzZUgb14PmCveRUAEzF1DVClW+k6tXVUhc/ZaLYfpE8eyVoF5F3HgUNC + +qT1WqUX8e+rpH2VtCVOTWd7Cdak5bxXrLwHpsp5W8XK6bxnTPYw1cNUS5iaLveCqY2Z/wYwZYPZ + +rAwdd8ZWsAU7namoFzVjMKVjlc8y1MRCK7sKuV2hZXgFdYKzurxaI1PvVhid/S01Gg2mvdL4kNR + OGaRXXdCUevDTsa2ITyX3J7WS2PKrmJK8+L5y/HW58Lm2AaUG+0A24jIwhQ/5plXv00Gx4XuxX7Q + rZLfALon5fzAK+FwHV3t00CPV3bmUlgRC37lK7c4yRTRaIlPHXasrmwRYlcaPrDVWT0sbRG8V0Ts + CoL/CNw4Hb9HreuIV6Sf1aP5gdB8aeG8Ew2qP1tfb0s0s2uBsF2LGL7ToVbaDthP29Tmn7mQTfeL + dQZcmDZtPNWTiNRVOIuhZInWEUNSRoapU6xmURyodPEkqj2XWAQhkkGw+5MSpRQNgFutBuyNLhk1 + tGJ6NeNhKhQM2I9c+iqeMxzba0KOFwVICdE5qOYUprkRzmwKpPjC0JAPm4CaOiB2C2El0B9i67G9 + 5Z8EImnkHuk2vAjYcSPUfrnazVX3PfyOwCvBcWkdohZ9iOpGiApTiNdaSy6iPjIdKDJNNmMddmOZ + 4SUDyhQbRHnGAkjIHa9mhdSyXKrWfsSoshaRHbBLX2grOYkjMMMFmnSjo4eMThmPNPaOovtGoUgb + ATcmjkUhnUCmhUB1ASSq0GF2uiQNikM6FiBjA69E1UdlQjWUFaQmaurn9EFNWPQTUeAG7OWm8RMh + wQdlC+lVCbAJFLh0qQ96tZOIEXZdebJLXKD/yGeKDFLrNfvP2k3kPxuRhTp8oS0tcUiOGrHO98va + F9XVI6ku3kxuHjBiFdVV24g17SNWRyLWn8WGy8oIrvqAdSguvBoq2xWP8ExETydDe8oCbfyKhMJP + RLYhSPpDIuEbbUpeDfzuH9UH3+hEXL8SGoJIiXEEUaemQ4Kq82t1zHnGfuTpKa29vGuUJpLgN+wS + YwhwQ2R4KX1seqM3fomDl2QdxrTRZCt2/BykFcWW1VJfGfuodu+T1eZXaxGd1lo7teYCLfAuvXzC + lvXf2N1ue7m8kEIstTbUvFWRKFHIUXWgsVVvFoI4jE4/xUfx9tItGWihGhGQFlFudA54m1bjUo6M + Fzkbq6g+Ce5tGK4n2Rc3hOJLzTDQcPtDNYpKOvaGj7UNr1B0KPaamzA9Jf0kvHPLLnIj5M5qNUH5 + g6Bi30NgCm6q3W39D0KHGNwZ3Y/qFYZtXDp76iddVMYjYNdPQ7wmU90uz0kEgpSpjciZFch6vWR+ + LoTRR1Z+f6dZZLA9A6/Cy0Hh+Nb3iqISgrSTThl9yS3DUdGxw56NtaDmC+kfPxumWkvG699/cGc4 + mS3yHC10UG0DPS4lkXGpE4RLSgd7oYhSG9tMg3gCp4zUW3lOek84yqQkQbvTw6No7T5lmVYutc36 + HUepEYWK8MG3nqtb31v9NqE9M/hsBv2eBmIDNsW30VmQ8bYlxT9DwqGkawURK1PhkNtFKQPMQdR2 + n3cepO37awtF4hv0SNFzgEN996Ibui+mKbDYWac8Thl3TJJgeS1Fnmmc8EWVlCKsR6vpkaxvRUJI + 70ymtWL/wbP8vygpA45JHGliSm8fTZQTFLEIOd0snhnlSCh3IuJ6E9oNUcOLohx37jjdb+5YbHrG + xz1Tx2LTeurYE9N6xkfP+GgJU6P9lrhulvYwdRem3CxtC1PjfoXbw1QPU21hai9VitRWveHjPe4A + OC6tcaq3fO8ITmH/JcacdV87Ohyr4apKbrqQiitTEaa4ssUVrisoJ0KvlC/SoJr2jlL091IbEfFn + R8Xo4X4rXguPpBcrmt/oB5xLWmjbizUd9UpwXcFoKKGKoC+WHE42YjSuFk51olyyJRGHht9UTVk/ + 0lsFZq/T8Lm8G2ZZDXA5YK+wAl6n6CtdnPrkqEiUV0y4NUE4biZzuJ9sgj3vvtz/EVIE9jxvDeu9 + EHFHYD0o8JG1o+Vy1tsxHqw/ZLKI5rILwP4X4CnDYrhGrf7xeVOoSwyUrMixnvqaW8vDtLDgnB1g + /XAjNiIiilXNxc0lr3boyFT1CsDzeitfTSXuk1fRwaoh6YlyJoVzEkiwoS7knu4KMggihdEb3UQP + /HhbfysB1nhJH9Vbg+L3AdC90MGbi/NapMLzk7FMjxkwrJwZjddn2WVD4qp0ceTWlvPlXn7AqUnn + j4SGVZjqASOQSVt3Jw777sSORCAu4Zqj19ZKAfpgqMMlq09yW4Upc6U+OV4sOnmXvmD/w17mIoJM + oOdKxf6HvcMrE9wZEX721cm/mQf/N7V+1mOuo81VJ9YktbqodUWE9Ckm1AasEwnJ0nlaSMbJZA0p + JokRrqL407ia0Y+vc8wh06AL5dlaBhT5oiGfGUlZSF2und7QRQ0Q1fzO9e+TGx1ItE9Dl2KMWKF+ + qsOwMKfMogwRtyyCxjIO6SPoFOn/mSSNkxyRvSRAfns4nmGI0khEswP2Y2NM0/DOuGJCNRFtx06Z + HGR0WWuv1pdivFZ3fP+FcyMskIRrSiyUmgAkspyHyKHmQrEIrW50jgAxYL+Ab7OJkfqCv4AA3ztK + 2xKNZjKcDGsy0lOeQLQdXNShrWcLfyITvIhnfkX4BvCgqEtLRCfNcm6cCEVOP2k9u/iBfj4iY//J + //hEvLZwewJDo40/E+6w/b113rC4607X5vrR8ydiG25oFtMw7b42WIZ7Rjk57CjkDxHPDdstaWBs + yJXywyFMMyCF9dMhB2GqxKcCGGrgQsReiDgu6An4AMpqwy4zTof//YsPl3/AQ2fAyaLPM9GbJxmJ + 6DvPOPKndp94iz+eNg6J9ThnArT/ww5QnANlhRKhH4kAXEkUQPqNDSTk0Pf5+PiHIYBdzcdffxMG + 7FJFABE9rDqwYDY0INzd/khElJK6RA7YV17W0OiaLFamWtYPF0u5N18Cs2O/9JWX+pSJAQyazTeF + xK0CIfHwOy8qzRIDSPlGaMPlKYNMO+9bSCLJzRuLJ9je4i94OyWwSPg5LVznELrPHaToluuzf+Uu + iScqrWa3gdKPDdHKSIghRnXMGio2nqlnCglPAwN8vXvppwxoB0qii3gXXyiPjpfZ3LM/ifYal1WW + O535ufRH9w6n10Tvg9PG3qvxhKTf5KlFQhuNB72Bp+Sw5afaflDqh/YLIMYr331emvPilJ5eJGSp + 5logsVPJ6gucwfdKO1IQFSophE2RDUk3sIWeW83P+57L06/A31Yn9EukO0VMDLRLB2hRJgU1GSLa + 1bxPWyQJWNc83FvkDOBOePEnwTH6bEh2ToY2Y/5muIc6jTxN4WDALvABue/3UPXrxT//Oaz2B2he + vcaJYXt1xDZVyID1T8CGG4FWZNjDg/WYBNt0PKGW/pselvufYP8rGeGBgYdEgvX0VfJEFhwXXirG + SRo9rNiRytE8udYB5xGu2BpOsYXrU8LQM24tWEsjQ/RTTC2a5p3Mmz8gKjyWnVE0rH3REA9IVFaF + YJGSW0ePDH/gTEcIG/Rq10EeX8LIk2y53BkNoZhf4zwtcsYVl5UFO2DfC4WX7sNW8+Lia4a0TpW4 + dAuse0xEEBEkLYWvc1lbwlH3Ez0Yo/9Fa2X/5vgrVSHszA+aZ8PjEYIwt/QM//q7uDMZgHqhfM3y + FJTOQPGdB4Ys527x/3akIwZqI4xW+JNxyWIeOo1TF48q1Bh2yy73E0FPuG2mcfTg7oov4qk+FTit + I/JzDCCRCezd9ez6m6Ou1mf7rdZz/c+kzu5ZVN6REFqKmwNLCN1zhjYSQktxc0YP2so/aKtMYMxw + pgixM45YGihTUT/9Z/WQtFyon8+H/UK9Ix2+3HGnlQhXGJhFwGWfMD5QwvhTPHQjOezCsvs/Evdf + H90bTl2u3uuVin2n1A1xWxCkTC8GJJaikblv1mhkhGie6Y/0oSF5bPfEqaRXfsCcMfVZUcts7XtK + 0w1K8aY6B99UFWnftJWRR+2A1Zf32WFDjGs8wBangpa6XFV0BgbS+it6r/FkdGwF9XQG7Wu9Y3lT + 1rRHJZ+c37HOaBl1ePlIyCclf0DbKhyXtqFn1mu7dyT0/AkqpWXUVygPFXCmN2K96JQjOQ9rbuCt + bzU1YdZUFGqZFIo9/+AXyNvNKe8B6kpX29ok5gvJffseT/sHhfLz/aBcf4qPDeX3fX90won+FLeF + 8mnP9e4IlMdguH1qlch7D8LDEU6y9Tn+1N3QCgKWVZh69iBeWL+MiAyW2VBwlDcVDIOrS3ZsObfz + 8/3yPHrNe1rgPSi95q1RuqcFdgSlX2hM5b6DvLeKPSRMX9uS52UnlKO3pECsl1S1Jsp46KsmPjcv + DfCowrKUCOvkjscDmokjIMRcyoFXuUEiOGp3cKq5YKoGJ/JY5Jd6A42DnqdBkHrK4FFi/tWyx/x7 + MP9q2WP+Y8N8WQSBULPheY/3h8qyFGs17QQNnDdmeT5BjoQmXlFKP+W3KfRUOPbHAgIItw6qJXyu + zUVMaoRyZWFH2wlIcdqlKDtluGm+Iv0iloMRGilftUC1J5BvJZqwOQiPvOHyniXMg0aFyX6uMTqJ + HkfuPdRr+ZBhIYnahoXz3nugI2HhQwo/CmSd/UlswPyJ98YDB2sADTI1GW+6ECAukAIGXoTOCxbi + ZJ87jqECf2MMFUVez/V5QybapuW35twlkEyf1QNq1SHe5AZqerVGVUgVscvb1qKtsXaTz/d9RaFW + VlhX6wEqXVY7gocfGm3lCELUZURSma6F8zQFMdT7Qx1C+qwUMkLHgshf9xU6oF8SyxTFPLVZo7Ih + EqKExFO/f/P2w8tX7PcBtzV/Dc9/RqKIuXCeBubpj7i59Z/YP2yHS0hZWGdu+2Rrvq0BFdlm5eQX + QvgPnw6rma5+McYNcIb4eisjjaUQf7s77F2K6BHEQgnqeeLkbI4/tz8bnYxEDZE5SGcNwyKrWdLH + jLST5XivSCvVI4m0D2yhIFXrSDs87yNtNyKtzUKx0Wa0XIz7GHuoGCvm8dieR91QWbhtFEJF2Ns2 + 3MAXr9+7AXvFS9/LQ9MvRHD/zqNW9V+8iC/WVGqnIFJfDg1EIpBQaybbW9FkKesA6+Vna+XqRLON + sMhlr1jMMyErvAYfUS53RR8ocpOzg4hx/YirNQv1+q1Wz32eGmFdhhRk7FbAu5LUxOD7eant5y/P + WQbOaB/YtglG0qZuZKZzMks496LLnnJe5XUAxlhNDThNGGv8jFTEpPY33OgHs1hivwfYM4v6y41r + kMWRtc4L/6K6sKKeIH2rjHyrGU2TGbh2KOw8YK+rpo15LchYiWYZQZFlSL32K2hvaLQTiX3g97Md + Yb1bvdfypbiOadPjht/9lDDkOujD733hdx20Dr99I3JHwu9PkTh3YR95D2VepM9HnRCge6V1Jo5L + 6t0fbx+JY1xk58mD4u24x9vHhrdjboKqh9tDcQvWczsV+acuIO4P+MBt+/q2taStjWgOBtuYHa4T + RC3zgEsDzBlugCUatYNSTfsolqeCukhVRNzgRoSoMKbpOLVFUJjADgY4M7/tpLwCY6HyZae6iCWS + tBEg8i4sL0DiHcET69u4rWOOX4MlUzeLZijAKS2Y8pQfNYSc72eLfTVMOi8c7WtTy+urh1SOvhq2 + NcaezPqexF7hvle4bwtU+7kji03ySETO7Cx7wLmu2LTGqd5rsis49Qr4Buxb9UHn/Yz3QDPeuYiN + qubjTtTPUb+lnpm+edm0Pvz8/mJApeZNnd+manOIPKcIrQVJdMUn03llmcSKd3Ral8ipTRmz7TSh + pVQ3WEvKZVI4yiFXnsFb57JdifZ8ssly38mhY1K+Udbk6NGIfXU6ZoFImoQ6GvbRvkcNIJP95PfF + wvTJ6fsCyMK0DSDnfdtcRwKIqQrLE+iDx6Gy05WNZl3R2/iONCs8/wmlkZLaU95XZZmBUJvIxwCB + upXqiau7oGt8J3WLHxHhcfctl4oKmrhX5P9RC1wJ23jUC7utv1JploT6Kclimau9Yokx/Ix9t03i + YFDKtofgmNS5DUikwYXF0LhQEa+Fohy3a38NQbX1TvVeAqiIJayr9SDJPNlrTZe10JwlMSi02BVe + rQsVK6nmzbGKLiv28aQZho8nxw1co/0CVzqRj4Q+nOXwgIErnci2gWvc+8Z0JHD9kGrrvgNuLu0P + urf3OlT8Kq6yRdApAQ+k+pKO7eWOVjHGI8O4SQqvK9yk2xHML757++eXtWijRQVTca1RPFjVepin + fmdcFZFJvYieXjjJFYoRUsKXVBBJ53/A3uvChPAtcY8itjVYH09rQtHgqJFhvNzPnDa+WTyOyBBH + k+IBI0N8s2gbGYZ9Tqwr1jO6lJAkEEU66ePCgeLC+c3kSm/O1x0pAzcmMz9RKZbWIu+onNtkubyv + WKULH0Yi1C5OsYGBaLKe5RoLFPJVtDCpaaW++yHVX0gAYtdIBIa9eEnS8k0ebgsjRw4C+/Wcx+kj + 6XlIJjfThwwCadQ6CPQkoI4EgZcb/rMSbthL+x2s6VwsddoF+H+hC2xKKFOeZd7DozEc0TF7/vbP + ly9qYSiB3XKhYwm+9CQu7nNdoXDiBpT1ThzUCoeGKQ4M/oXP83HxfL5foRv08JGQOvUif0A8Bz1s + iefjxbzH827g+XdG82j1x4Kj5cp4Op73uH4gXJ/J88laj3gXoP3jSVCx8Wg4/HjCOP5HRT7rX6u1 + Svw3NZ6BdQP2c5Keko0OVidqoahGgFuoUBaRryQ8Y+/8/hQXqATC60oH9W1Rz3So45h9PNEpzf9R + 9ZsshBS7fCIlWZ8AjwYfT44aGmb7kTXhLrOol5eiYWkbGeZ9uqcjkeG94yYWNl29r7I81aqn/h8q + MkC8zn9TFtQ9L0ObqPAeQk29vTJmz9itpzwla0iX+xeB+R70UfRpeSzwEtYHwICTRRTwsHYtO+7k + fk/znyh/JBl7uJncPCCER/miNYT3yZqebd+z7Vvi1J5tQWF19Rvg1FLko8PONO87QwuYwt3OJBrn + uRU5z62wiGBXsBERbrvCRQXZlBnQORCW6fisHpm2SNXz7TujX/3q/46n/QTzUL2l0wBmky4kHl4D + V2UqJDQyMzXnnnINwttNXkhu17yWyvFzUC9Sx7eqpOCNWHm0EVabarAzWa3J9OMZZiZSsMwK1Ij5 + kBbGIgtRocPqURF/T3p8OOvtCu6ZmIaztnYF4/OeZNgRuHcpzOdzLBuppPcrOByZhM+0ULITfgU/ + aB19Q0VE6nkqeVX7zaPkmSF2eKLJoRw9qlG0TEKUQGOnjSmILS/eG2sLawvwPVi3fHRiJtac+AyP + hS7Lhl5Av5VWloTGQrDHTVAM96MU8kcg4XWEMMBbK3iNR71UdZ+f6PMTbWFqPw9Eviwfh2xJcD3K + H1K2hC/L1kDV+9n2QNUDVTugGi3P9wKqpbnqm/fumVAtTes06rDvOu9xqsepljg12a/gM0uqft13 + F6ZmSdUSpkbTXgWuh6kepg4MU7HtYeoemIptW5jqndS6U6UQNjYAmVC9EMLBaPEmW8ad8Nhselhr + BWMqS0coavwjGGjKy1wxuOYZktypq+k5lyLWRgn+LWr4oBrQzmfNXpHIhBI2rR1FYo423U8zkESZ + RBTJ0aMNjytiAZZFBjWOHertSF1C7VRmgGex1CWT5DnWKCnn9DWR69HVxPherd2jo2+Yt5bB0gi5 + mdSttVt7MW9jZos8l1hPJ9uajEvP8zy9vcbcaOTgNE6kHDuATbQ9HGbEmrum1/3zA/91+je6uIRi + jtm9/u0Z/A4Y1EC5U9pkd3PULZIi1Tq6Z6ANWDAbLYzvQDPowWM9RbXGG+Z/PBzB3ZHz/tl+/Jgp + FDYpcLt1O6ULwxHFu2IZgLt7u/66I0oI3qpc0wH9jy69zlPqXG6/PTsry3JQF62sSBSXdqBNclZ/ + 9LT+7Kw5/dPau/uos4LxftyFqZ4/kiQLHz5ky9xUz9tOCyZ9kqUj04JfsBhtP6TwDlRSCNVPDQ40 + NbA3o2TYhanBfIp4/p22TisvZvfNMVF4uNyvcXly/Uh06h5YYHVy3VanbjTsKWQdQWHIuYJ1j72H + WpbZ5U0nlmUXFqWEIhGSS/OO8aTT2rO5zIaTE41ngokMcJZs2SXLkOpLBLDQebFUq7W6yzd8WOze + zzh58mnZ59Xuge5Py9bQ3bMpeonRXmL0CBD+CxfuFK29SA+U0mavee2JsONWTEbFmDSJRByDN1EO + wJUI9m+gZC9VIrnyGTTyaUBMYC+5dc/YhfHS2SgxR6kobaERsyAGsUJpbCYhdv4qkKbFnC7VUX0l + h/P9SMDju76n3ZzJB+vkIX0lxy5sGQ6Gi77M0pFw8E7nsPpBRzdCSt5HgwNFAzU9X2ddiAbf14YF + sTCNnzths1DoZy9FTB4FkYi2gcFXMBw5D8hbE3javpEJffPT2Zu/PCd3nbLO2wdoBll3DKL+tD/4 + gL3RzKZ6A2QLOYlpdzoF1jNeVyzCqgH2p3DHpjzDwHXJQq7QOx6z/2QCxB1b+rQ+Ni023SUopoWi + GLvNKhGEaGvv2xB9I0vJbzVPsYCiC4uHyrVLtQTLKOxEjZU9XVsudWm3t5dqBdbJaivGhM5BJMja + qHmnOsfbw6vjzEAOvF4CHd0eaDjbM+bNdZ+9ui/mzXXbmNeLK/UMqJ4BdXCc6v7c/AiZmvE87GHq + 0WnAievn+DLbV6+e9zPzA83MF5mz15uJ6cLk/ANOEYUlMxhhNQ4lqXxu8y2kwk+MKJyAv4HAkFgH + 2rzjzDyCkEdgT3EKn3LrM/XIobvB2WhQoYycT9TvWFnGUDZiHfVU3Hu+V4A0KbIO89NeLkmkdDGM + abJbKCcke61Vs4mn+WRcqIZ/Mx8et8t7ON2vK2kEj0SGbmzEQxJmRtBWhm44O++jSDeiCA9EWNjz + yfmkjyEHiiFpkalO2GH+gjLQx0Xc/YQ/R/Pp42hYj6ez+CEb1kfzaWvI7ZU/OwK5r11gTVz03MRD + Aa4Mk/SqGnUloc5VhX/uSOp7er5nvbgijknFeSuSh9XPBCn0EXe83vbNj9/u0tO9RWORZdwIsAMV + irAmqKc8d2DOVHp2VKA/349JM8yu+/zM3Zn1MLtuC/PTnknTlfxMxqX8hcex7J3mDyaeOhxv0vOO + WPXGMIypFsmdw/ImpWaEz7fs2LqTD7wvkzakmq1zbyrQnqs2pcfusgF7X4RrzNV4h/jmNFJvsEpr + U1LlQxINtVOdNoVG2qjUhUTLAIdsGjJ7t9hdxlkAvHAiLqTfi9nKOshYZCpW5MfNyYz3yskkN+ue + gnk3cOCwtA0cfQ9TVwLHRqhK3mjRsy8PFTaup8mwE15fl+5J3cfKMyCOS1pn76m0wyM9YK8xrW7X + AvtntXE1zR47Xfm6JqAQ81JKv6IoAdZNUn4n047Lh18AOZ1PHLFlAuH7em2dqy+s58T8xHEn6nFm + r7kJU5/wfxs6HdTtsm/0BjL8o9knwF5dv3RBE5pkwC5qIig+HmC4K3DdEwNIHwTfQ+7oEEeONuP9 + ok1609Nd7gs36U3rcNOvU7rC+AcjuDMijGVh0z7mHCjmjOObZDQddcI9+HXFPhVgsWsLC8olrh+E + Qoi0RNG3hQhF5FmLG6El0f3rWELkfIwtBnJtsAQtFPZ6XRWK2sC2ot8WyFweH1MSvTAk/81lyStc + 40S6JEP5o+L/aC8B3aQqrztfj/jaGQ5YjsBxaYv/4x7/O4L/lptr9bXZcMjXEPHqK76FfWz4jdJY + Y7UIr7vBMeJq7ZWIcm1Jo+i2WHHKLhkq30DEivyYKgvD5XK0F3BfPxatm6UY8wecuF+31roZ9q26 + PU+956m3xanFfD+cirqPU0dIZ19HLWFquFz2PPXu+ImVWsbLPrNwoNljBSOtuzB5/GPxsRgOYRlA + SHnsAbsIwyIrJKfEQACxNsAyEbEXEPoEcsq3KQGioxtuYHBcxN5zZjks+5TwfZA9LFtDds9Q7Ahk + F5IHPVwfSr1rKs474ff7C9JDsBpIZUMurWYBgg0SFhneF6aCNzwMhfIA7u0ekXFI3BbDG4PgLCsU + NCwSp1lM4l484UJZx57rPz8dPzsqqM/24p0nG/db+Hp8miTqsNPw+87QAtNxN/+5E9bZVURax6tc + o7gzti1wteIhjFcRhLqyK6fP6lFpC+nzcQ/pHSGdg+Pyex7Cc8mzHtsPVeS7LnipxFUnuCU0ufba + WpZEGVNg73mo2Z+I9MctEgzxv0Sjy1JLkBwVqs/3y5hshud9xuTu9HszPG+L1dM+Y9IRrMaqOVc8 + 5z1z/GBIPYdw3gn98gtvSIE6VIZLdul/+wG7QJLEWkTsksje0VZuCkWySlYCkfiUrvl233lPEish + qo1EKtzb7ohy7chOoRRj3WJUEbtP6fzIeZc9id8unz6OvEsUx8UDAr/Lp22Bf9LrpncE+F/ie5VX + k+Gix/0D4b5JJO8EBy9BFjfK4gZcOGLa4R9OayRvDzD/IkIuWShMWEhumNSJCI8K0Ys77nftIDqf + FI+jex8+2fFD0uXySdESoxez3h+1Ixhd6psbCbYH6AMBdJBUshNqKZcoV+WrlNRkY502md1t30TQ + Tvlma+QXYRlz9/tmCl/nyZdD6sh58xO2x1Q4B9+egTRxpbi54d6v78ly9oy93ACKZdUSX94Fbzwc + Dn3LkFfPrRVtA1Ognx/5DCpdkktgvd94OBremuWhLZ6phcMi8JTvAfsFnkS+r8jiZWX8Std3jc54 + lpYIOOn0Jn+4ogC8tql3IGQC25iofiuh1o7Hf2wlcanlpx6EJ9OhZVqx/85oeFBfzB+EJ9qbI/Iw + BIk9Q1hzIMF4r3tWamMqoZLjxsDFnjFw0qen7q5S8smkj4CPLQJePrVFuH7K3dNEy7gPhAcKhLmc + XblO1ImBKagjBs9YkTfWrW5r8gRnGB2htllF/PfoyTL6FByag9jjrl5GexnzJWqa9Mh9F7nVNGmL + 3OM+v9QR5H6eciPB/vid0crqXoDsUNCdqclIdGMNU3JHki9Sk5dGir3+uF5JsfFfK7TjI7wWqCnM + UiG5EbogbPe7+k7OpKgsizj2gXJ6KJjlOBdntSM2C1OuEmBlCsovgXAdISyroQY31YqluvSLBdQw + TsD5BiPcSkZ1JZrcNZxmwXHrEfPlfpQhue4V5u8JF3Idtg0Xw54G2pFw8cdCgHvHQ+i5+4cjDC1m + oxF0gjD0IQVgPHrCXOFYxKNnXsTF/7H9wqYa7LNn7Pvv10zHMau0wlbRtPrmG/bL7f6Loc+BIbDb + EniECasNi3kILDK8VBgOvFsgdz6HhdZ/eCarWYY5KOZw5+Lmm4+KfVSXtXRNABJBg6HYGe5xYZQA + JrVeQ1THOUo3vTbshyJ33J+guaxQG4UJvVTn+IXyt1RCJGzKvHqasE/893RRoRE5y3m4BhTNVwkF + ssI5Xut0Gq4UEmKDIvvmG8beaW1YwIOKzigcHb/UxgJZSZ1i3Z6OS1eV49YsrT+iyEdJMceznIZV + GyZFGEp4wgIJEIEZ4H+kcGBQeOebo3bhzhf7JcNk+lt4nS9FPjp0Qeg820dAH6/sTOJkya2sK6Jq + hUIYdgUbEeG2K/zxVy6FlQGdA0VSHZ/VQ9M6TvYJsa4ofa61XhfZh1QkvX7OwQhbarNcr+N1FyLl + y/S0KWdIrRKsi4DJTumDDDJNLRKo54nLnBijYBz7L7lZ+yKHRPG2S5YYKDGjphWGBimRtvWCR9vC + kGV2zZvVk3B1dSnUBZrn6rgpndSFpgH7UVj2gsR5mv2RXLAju0Osr1xiGEYiWH30Abv0Ji6B9Fqh + a1zT+VO6sjEwzCqmIE+h3GEWU9Xnnt1Ib+6jeqX1mtZ4zosHCcwTErHhM2G4ejC5AX7KKshP/Xr0 + 1mXS1avNep2Io97s5Otgx10szvfLLa4NPA7yWpjl8ICrxbWBllFwfqfBvo+CR4qCb7gIdPyBB6aP + gQeKgbFYFx1xkhFhyjJq8xMqlEWEy5fjYvB+lpDJejF6HBgM4lo/JAYvRm0xuPeE7FCBJxqNRj0A + H6p3W6llJ3xlLrd5sNSrceJKw0oAavHAyTpc52DwBRE0VbY6U4I3S5SIpuDW8Tj+bN7vcAmSfm6C + vj2qJT5ZxYi57HvBNUsFdXxjL0r9T9r+uKFgvN90PP30WxCV18O1PrQ6XJFN9ggFeGVnHB9UbPle + lalehagBsFLarVAsi1jKjktPT04/taUnzyf9LLwXhetF4VrC02i/mWo6736r2xFKy2lbD8ThfLzs + YaobMPWLDgJZhTrpGykONVdVxfmsE3NVr/1O00xmRYYUI2qmqG5NxAfsvc4AKUOWi7om7IlH1N7s + k+kZFpGDimU6ErGAiAU8dGhecFtHpvkpWnBhCRh9SYDlRkdFCJhS51YrHsiKhSnwXFa+3KtYxq1l + nwqunHBop0gJ+kafvpbG4I6FhUGokxUWcRsfFeULsc1pmuulErTXVXLMhlxiZwUrsc2i4dIanuWY + +vd7YrPDgF2wT4UI18wCGq9QyThJfZ1BKCpwGydCCWjPHlkskxNTyq8E6HQOeIa8q8LSQmA74DzP + jeZhetyJ+Wi/Ju/kJu28DpNv8g5m/OGEmJKbtHXk6w3XuyK3Dzzl5bqPewfL0ZS2iLqRJK9YpH1b + dyrUmr0B66SXSGVk/avDdS4kArVvnKCoERp+Uz1jr8SnQkQs0TI6KmbPFvthdrzoviDqEVYr8aKt + Hups2WN2RzBbrg0XEfSFzUNh9kKlshO9bu9xxg9xDKGz7PeRztAlK9yaYJ0yCLXSmQiZKYQ6Zfhs + ckyZc+lS3/isFWBXhbV/OCpsz/bLgcMifxRiHXHqovOHFOuARd4WuPt6aIfqoTbW/Vz7ULidmDRV + XcDt59R+5nsH0OO8YWeiVIUrQTkvyYGSFL6uuSFypgiBslKpiL0Gk5/RbcUqcFqHChgD9n4tqEh6 + q6FBrMWfuCq4qVjjwmudkLJpDQDM/bgijnHLi9wI2Rgh3ja5saTghiuHSSE69vPUCOsybk99Tbe+ + Ia4q7KUesAuHyR+0BFa6zDixK1NijFIeSmS5IbnA3RGIIOQRDBgyMt/JAkmhfhSwz08zfOowA2eM + 1ww87npjvF91JLjuDRjuW3AE160XHJM+bnUkboViI8Ks79A+XHEks5OOFEe410jKqjrdT3x97AXw + 1u+yYmS08BnbnWLPO+zWjkDmqeAYgI4L26PpfrA9c4+EAs+H+UPC9sy1he1eX6MrsB2Fugx01aP2 + gVD7ZhN0Ikt0uZ0+U/vT2K8tTrEP2gosMNfSexGvTpkVqJpRAs3S0VqHpvklvvesNIKau8hU3Rvt + 1sAuq+PC+XA/rVdeZP0s/B4450XWFs5HPUmpI3CeFTatAq7of/ok0qFQ/Vzk6ys17Ybo6xbZPRrX + 2Eq9si8g06Hhzp56nlHJlduS5rHKW9ac+EjXW0R6y6IvFJ7aeaYS4HFDyEmSyYKMmQEpOBUYaEdf + Ly6pI5Zx4uQb4vqkIHMGPEyZdikYVlIjFoqjppXfFfego6OfhPOJIMlNAiys2U0XjRhUYbf3IMXG + C3DgPyz9q+QVKwWuSRxLEOIUvpGM1h8bZKpoddQQNV3upz7B549Djjy+mWXrh6xw8Hlbvv/d2UEf + o44Uo74TDt4UazCT4XDYh6hD1aeDuLiKZ4suhKi36SnpcfOM36DUgqWggKuIHDTKQgQVCRZx0ipq + +LPSAI8qDAY5lgRESMRXVGdt/q5Dk/LVi5CbKNCoRo4xwH/22eZBEWA9pDQ8H5BQ1EWOJ8ejfAAr + OQUiuM6l9kscK7FtTPJAG4qmUrhUFJm3IyoMy1OtwH7DLp2liEdCFQL1pQofQzESqqb+butyzW2A + DSlUUtCWwjkJjL4J4dqBUVxS8KOPIs+zCvAFTqmow4Vh2rDICLWmD4iOdVRtpeliv/r9Mr3qaVd3 + 11/L9KplbJsu+162rqTTuC36ZdehYpqGMOrEmusHYWRT3nBFAM9ua+DPvIrQG13LCaXO5fbbs7Ns + ILIoGIQ6O3PCSThzbriYLiez2dkzA/Hqf2cr5yBf0f/O/b7vqf+DTRjkwuoI2PyUfTx57z0mnuuM + sx+K6uNJfSZsAbl46ttU/P8Xlulgg+K4stpuT1HoR11YaJxA4kLhqgz7qVNg3z3d7kzNIMqWWL35 + PTHFiPOLkZWCNIXXP2yDOW5uj73Emu9X1Fn8Jr7ZD9BIvRCLm8M3Ui9aG2bfjfp98Pks+NC/aiA5 + ycDxiDuOD+PvbiEn9o/YaDYczYaLyXLnGT7hSbKy4oZGdFdA8YTnYoWmBoJ+jpPJYHcxdRJAXP8M + 9DuNlp8dFOzqUwGm+uw66Jv7P67Rj17Wu9/Qt7GQ/i7u//6fH2G7VVZYil+/utXdaP7V46HSnf2n + p/3qo/bX1rvVj79/MFvv9bdWW/7jn271Bbj9GwNmkJn2rw3Y52D8939tyBL32cPfeud//H8/ctJ9 + 9oY//Mj96hZ/+/VxPbEphqDP8bLdGb7yixF0YEi7/5ifH+vLycB9IOu/0Mbdj4if/3YnEdjw8/f+ + H/ctQk7gGsICs9ErJzJYZUJKYTFNECFMTUaDXbkF9NaGazy82dXpP5Ei85Fw9FkWbTfEnGCM3f2O + Hk97B9PuubNff5BbP7StXu1//Gs/1AGvts3r9E+v9nf3PP4nBmwhHc4iXGEUzSI+j+Y2xVnG3Xgc + cyHvnXTYtcjz+78pwhCsjQuMtXc05mhSc/Itm5/f+2zeO9Wo3wD/gH/x+XYdtzvKu9t8NZTeDZW7 + I4avRrTShbs7G6wnZvWY0k92Pp2MfueH/x//D/8FQXodaAIA + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68a9bd4c5ecd541f-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:21 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:17:38 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=3bT8ZfVdrz84d%2FnpjuWXLfpst73u3eBIpTRvuwDIObXQzRTQWspMlwCRscnOZKjwj2ijqn4UCnq3FVywMYEdrz2aOj%2BoJRp18675qUycCFWA5o82Y6QQkh2NMpmesBBj8gTv"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=100&before=1611069195&size=100&sort=desc&metadata=true&after=1607915595 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bd681e1654a3-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:25 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:25 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=XmuNsPuxM8F6uR6fqIr%2B%2B%2B4XyCEoz5ae4qe%2FvpNu26yV7smUSt9ULa3rEFPpe3AbYMSo4zOZhN3flyhWnsh6G0PWcISkl6%2FIlQSq5%2BWphOUdNoXTwcQv6ooaBnVkcyTAj0rm"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=100&before=1614222795&size=100&sort=desc&metadata=true&after=1611069195 + response: + body: + string: !!binary | + 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 + F78Ii//3/wfzUpYA7UoCAA== + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bd6e5cb854a3-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:27 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:26 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=5fCadovO2jgL9CHCuoFGvmY7Efjb8nyREuUwlFbSVJaCK7tIDkwtwORkDCF2tbZ34VTpcbdgYr6phlAXEMVEBLPdof4cZfjikWO2kJBnQixdZym6yu8kXtdmeH0Fi809KGD8"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=100&before=1620529995&size=100&sort=desc&metadata=true&after=1617376395 + response: + body: + string: !!binary | + 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 + AA== + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bd7ac9fbf995-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:29 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:28 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=KqMAU%2FouTTSA3m56r0rlcat7MUUsiDubtRvvN7AUifff%2BDa%2Byu66C%2BtNrfyE8MbiCS0%2F%2B4ghLXHXGdlyZR5odVbZkLvY78h2Dfe%2F%2FTVU5DPs%2FKRwANv77tu9YXTMs0uRBKlx"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=100&before=1617376395&size=100&sort=desc&metadata=true&after=1614222795 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bd749e183fd9-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:29 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:29 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ixgRW5MdPtvOH5z45B7svdSScMUltbh3zg4F3NYW8xSpA%2Bs%2B1nsr2afvW%2BVyPnZPHnGWBGtZwe4h9fx%2BXXae%2FWN4%2FBrHQjWLaNO8cYmtSgSn1N7TEUrQd7Ys5cTF3lG3%2FH5g"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=100&before=1623683595&size=100&sort=desc&metadata=true&after=1620529995 + response: + body: + string: !!binary | + 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 + TP4//w+N8tFQ730CAA== + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bd8119d15485-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:30 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:29 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=IxIiese%2FaiX%2BurgOhQjS2DqJbUdO1oXkgkX2v315QiD2%2FtbK6uqanu1q4VLDj%2FRPp6hNHWg3ua%2F%2BJsjaBCdRfDW%2FzQEKnj0N%2Bg0JaZk8yOgL0Cu7K6ZiokZg7vI1GTtKZEKA"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=100&before=1626837195&size=100&sort=desc&metadata=true&after=1623683595 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bd876dff54c7-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:31 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:31 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=NhgRyGurgFyRCeZ5gBAPSKVne8ErtPoH1gXgf34lrRTdtFDErK1mJJD%2B9I%2FF0z3XvBVI%2BXaIrEZ3rShq90469W6v2j3t9jRR%2BxB6HDL%2FaH%2FUtukDb65doHZiAQhm8xSRmlCN"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=100&before=1629990795&size=100&sort=desc&metadata=true&after=1626837195 + response: + body: + string: !!binary | + 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 + OztrR9SVc/QHQ/9j/fN3//z/pbtM/hVmAgA= + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bd8d89075419-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:32 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:31 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=b8%2FqXqg53CMnGJASdD7djfKpxJNeiBVq3ipsgngfJb28hzrSpeE9fHsThseuv7hJ1%2BDWxV7ebK%2BzF2nMDfdbKgqz8AzjrBqGj83asVwOLXEvk4uX1Z6R%2B%2FQD%2Bijrxq%2F7HmfQ"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=100&before=1607915595&size=100&sort=desc&metadata=true&after=1604761995 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aaf0a74f38366a-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:55:10 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:42:19 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=NydkPrurHBSIDVa2eyq3QdNurLf4hcPvY5EnuQaiwATmYC5B4ezHq3Wptw%2BRDHUzdD7OSOSEHbyVc4ls5stGauQWVqlbtZmK6GOYQE1w5fSnFXvXkhu9uP%2BlcH3uxPOUAyR2"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +version: 1 diff --git a/cassettes/test_comment_search_mem_safe b/cassettes/test_comment_search_mem_safe new file mode 100644 index 0000000..6bde88d --- /dev/null +++ b/cassettes/test_comment_search_mem_safe @@ -0,0 +1,3312 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=1000&before=1629990795&size=100&sort=desc&metadata=true + response: + body: + string: !!binary | + H4sIAAAAAAAAA+19/ZPjtpXt7/krsP0qO7Zfj1rfH95KTY1n7HUnduzyeOPNs10skLgk0QIBNgCK + zc7mf391AUrdMy3ZtGYkS1mkKuUeiSIpijwH995z7/nHHwgh5IJRSy8+JT+6f+H//rH5y71PhYho + TTXjMjO44c+X72xgjEo4tcD8dhefElkJ8e5Wlc2VvviUXLwpqV42bygXSl9s3SpKBeU6immyzLSq + JIsSJdyHd+64/UhiTJQIakyHbTVPcgt3dut3eryhhaIU1ELEWYfdtrvsslnnr2WbEvDSuX3v2LAS + QtLCbzaM7sXAiB2bltRqUNLv++JTklJhYMemGgpeFbs2wp8b9Na7IlaswXPJrS3Np1dXdV33Epb0 + MrW6SgwIc8WEuRIqMVfD/nBw1Z89Hw6e45/PBY2fUwHaPn+VU5mBiV69fhV99/3zb199F715+d2b + 56/U354Po+/BWC6zaNDLbSF+kt/nQF69fkVyaogqQYqGUFZwa4ERm1NLCiobkqgVZ8SCsYYkVEpl + CeNpChqkxbuYxGBrAElsDiRRRaEkSZRghErWfniw6P0kf5LXKWlU9UwD4dKCBoMH4pLQxFZUiIYI + oFpymZFc1W53JahSAH6KMG5opgFIzW1ObM7l8tKd5TNDKMmUYqQUNAFiFTGWatsjeMyvlbFEpbg3 + s9kf1SCfWYKPoSqpzc0lkUoTpnCzxu+8PXVuSEqX0CPf4zs3lbHt2xwPHAOebUGN4SsQDVEr0HlT + AiOp0qRUglueUEFUfAOJ5Ssw7kLghV9xqEmpwYDEyxC7wxpS4vlyQ6gkNDaVZsRYTeuCSnfRJMPf + RhEGeVVQye+B2FyZ9qr43wVPKQbBITW9d+/oRAlBSwMsiiGhlYEo0apGvJBWK7H90Xr4kAZqlIwS + xWDXpkUB0q4fwG1baHDQV9nk4lMymA4Xi0V/Nh28s1nGxRpA//HPd95zsHKR01SUxZPHm5vIVLG7 + i3c9q4LLpcemCzuKynh5O0/f3Y1QyRLYjh1IFaVKCFVffEqsrt59u8T7y/7aEUrQBcVTwa2u9JVJ + OMgErtpLaK78x67cfThYRLoSEMUa6BK0iZKcappY0Pwef8zmqr0cV+8eRoPVHFbAIiXdBR/1+9Px + fDx7ZzuTKI0/Wf/d10Hi714KDmb71zWWJ0u+82KZKtbAGEeQv2i/5MWubdYXbRIVqqrf3cyq0lMm + sF+4w6yytKVgE2lIgK/cyb37zSzeif5upS1TbzZ4dMsdmt7p80RpwxMqn5e8KAPDH4jhB9VCVnf1 + 7SmQ/LVkfMVZRQU3BcJ9jXSLPOxAmTnyyxxSGkvKyuRIKLhj5EsH/YSyFZUJ4A3sXuTGKt30yJ+R + o1p0d8xpqmRJqCUO43lc4RqAMAUGObAAZBbkMiR2UyUJGJNWokeurac73MK4HX1SK/nMfkJi6JGX + +fOcng29jGZ70Ytczk+eXgZRTtNZkYyPwC9yOe/KL4P5Dn4ZBX45Lr/8N4/+G4rov0FHf+ay5DIL + FHMgimE3o0FVjMtToJg3qgDLCzCOS/DhJuuHG+Ofh1cL99q5QPl0sdgLypfJLEQKD0i+TGYdkXw2 + G+5A8kFA8uMiedEky6YI6H2oAOFOSg3T+hTQ+zUISwmXKaaNlDSEphY0sbUiK5okXAJhyoAhOWXE + 8IILqkkJdEkErEAYTHmtuK4MJot8hohLUkn/Ybzl2lzYf6zzaUBeijKnZEU1p9Je+r35fbT75HKz + Kzwv3Icy9vl6n1xJUoMGUlRJToSqQbts1+OMpmRFT931aNKrlh6vng8Wmz+eb77wc1PpFTRXGkwl + rLmSUD83tmIILWdCVPP5XkR18/QbvkNUW4D1HZ5KBlAclqe2HuHXecp9bMNT+Pw10cMtGflbMkqo + jBKqdRNRE+HNdNVemK6UNVmE5FZIboXk1u/DXa9UCZdEKAP6bKKK+XAvsOaVOo8E0WKhkyOEFbxS + nTG6HzA6YHTA6N8Ho/89s/9Brl0Jm7JNtaAGYihnxChct/+galQAEKOIe2osT3lyNog+26+inK/4 + maT8s6eR6gEQPV/xrog+moZE0Wkg+o8MBFhgP/9WLL+4+FBIfniAvmBULy/2wL4fNRRqteXqfFAo + u3j9+Veff//564sPhGfT6X54lp4HnrF53VTHwLO0O571A56dBp6ZJa1lWJceaF1aLcVUn8Ki9C/Q + kJjbXs+ljXGJ+lM17A+SzyrrEtQpTawXpjqZZkIlyekKSM6z/Ene21RZ5jSr7gOt8LPOlRN/uv0u + LGnAkkcp8YI2TgYTA6GGlFpZn+ZOtSrcGTCXlm9T5LhNDSRXJTDUh3LTamW4U3CCMU4hK5wWlBqv + pl0rUJ3S0/BYOMFq9tZ5uLMbx8rmPuUO5L/+4tS0tdKC1ZxBz23CzmUtvqe6Mx81789d/5K58HzU + dGWx4WQXiwUlzpFp7GVl1deKgaY2dHIcjM6mYnw/+pB0tuVB6MJmP4BIVOHgffP4/5unCdT3kxzo + iouGFP6OAEY2zwbCvsID4IeXAKUnH26SyhgssypJ2j32yJeqhhXoS+QiDYnK2q6Adf/GmvqQsbBz + wO9l3WLRkBRAeDUQGKA6yYkG/M3b0jFwTVQtSQnaKEkFEdjGcIlZISQuvnroqiCmbBswXCcFtZfk + k082n6MSEqZwvyg/kqomFEEWGJKhBlMqadYH5Ya0QPnJJz3yUjbrT1OxfsMQEAbqHFw7ybsXqOZC + OMErlxV2qJA25nM0qipNfpQKAXq9NyeFMj9/RB4Xq/2P0UtU8QjAa77kV27r/4N/RmtOdC99TIzF + I9OyFA1+FWVz0JtTduuaT64JLQglsbKX7nTc16WJr5/jwgB0qnSBJ1tZVVDXQiKaHvlWADVAfsTv + 5ZdCsL57lDa+y4Wbh9vo54+uCjCGZo52SmXg6oVVf3r4Mh8T7lpy/DIKb5bbCnuEUHCg8LRlAlqa + 3ifnstCYjN/ZjHHX8lRxkztmuCh24W+3JUmWDj7EkiRLFgdekmw5QpclSZYsrqym0mTYaqSjRlU2 + j+pcRXiLRI7vcKHituF4pwC7ai9M1xXJYLJfXL11yfGwItm2XgkLkl9ckGQaMoWxTEyFMDRZmrAq + OdCqZMTrAVP3zSnE2Z81GAhfulC3cH/3yPWzwpWCMLhuUCR+NoWeyX7BZTarzqPQM7m/nx4hMZrN + qs4AvksRPAwR5XEB/Etals33mq5AvNQ2gPehQsr5eDm5X7BTAO+XOWkw/hJq5Zs4lMC2e7kC7SIf + DDho2RCqswpv0B55rdwaXwMVGBni3xiB4QbYCeiyk6REROBJGzhiJ2KMPf0MAAMRXhRKU/HibDih + vx8nDOkH4ASjb5eH5QS4FcD34AQ8sz2X90PamR36ofPvNNjhjYUy/7q6oaF2djBNV1yUtToFXnDt + 24pAmvpJI5jaiUEmeUH1Ephv8yiUhkdN3sSUkHAw6wSaoQUQkCuulcTb99KFBUKpJRIFtVjZcrUw + SjKhYipIBhI0FcSANOAnrnyJ3enYyF7AQ+FMJdhnbpVyGa/rZ8zRD6avzOOuc9GcDcWMR3tRTJp9 + CD1GM1M3Bw47lnwy3INi8MyuUiiogEglVpWVARPZXKs6wsE5mYmojfBtfJXaiGq4ai9MV4bpD4Iw + 4zQYhluz4gmjRvBkGUjmQCRj++O7k+CYH/IGSzvXfgTWC/IDdiFuxBTYSE6oMVVR+hKC4Ms2nuCP + 6lUPFbBYK+xetNSCZ5sYhR50CRK5JsVa0oqKCi4JtwbFD5pjUSRWrR4E71WwDdaPKGaxBPTwlBJV + CeaKF6Ji0JZgNkcxBOsysRtVVqJKUjTEgEifU8+cMkM+ynGnjz7jD6okGHKj4rPJjY33a2tJk+w8 + RIOrFcuOkBtLk6wjNz0dTxC46Xfips/vlOVJrYqYhszYoaipHic341Mam8l7vMgq7Yr2isZJPJn0 + bsqMtGMXUSyAbLGeYJk8Gl/pp2OiLo+7AAojFT/g0TRF2VbiUW9hSm4xl0bb1nyN8U1SaTd5sQ2l + 3mq1p5ZQrLbQWDSoUii1KpXGT+P8TBR/ODai2g93fPRJvhkUdj4TWgbjvUgnubv5AKRTNbU+cGQ0 + Xtzvo1THM7tKWBLhHIMmMrmqTfT4NllL/qiGaLiI3PCeq/bKdKWf6Tgk306DfhjH2XyLQaCeQxVl + xsNpmsD0FNjn+5xaHwaZTTOli1DwUXeiLgaGZ3Kdh3Mpsco6fSAyRsEl65GvMF4qHgYWk3biCUZW + jlosQQY7Ex6YTPcbgDJv7s4j+MhteozgY97cdUX//q4OzOehMk9CZT5U5g9KAt+2DT3nUsLYH6Dr + 86iSF03Jjlolnzf1+0N1SBQdGaq/g9WqCQh9KOFryrU+gXacN8o7imgVC3Az100OzwzRPMuty/U4 + lxGccL7plXFuKLjsXq/puSW1qy5UCAwFjmF0O1UeBja9FD3yme8k9X4q7eLd5qrK8nZ/Ckfz8uJx + F2jbhUFyrDP4cxIqcwYij3pbfNMIT/H8yVKqum1xxX+6tpdac+tlXipNN6euUsJtj/xdVc+EIKbm + NsnxoFAol4hyTStAhXG7X38/Z8YCD60gvkSDbUO1v1JKLzeHwDOgQgNlja8DgVkbvvg8GuOm/W5O + GNBgI46GtDJU4Kk0HATDkg/HyZIcG2YOO6Lhq29+iN68+ua7zz/QkIbJZD9RwEw155H64rlUR019 + zVTXRtfJfCejTmaBUsMAmjCA5v2wbbhfLXl8PwmD1x+yOeP7SVdA22nRFCKEI8PZa1Sy6Uil0Xfg + Hg6ugqT2UAHDrMzmxSnkc76kMsNVq5JWkW8Sqxg9l4krk+F+DRDjyp6HOjWPK3lMdeq4sp1hexJg + O6xCwyr0MKvQwZ7A1p+eR4S9rFf3R42wx/1pV2QbBSegE0G265fFyzdK8NJwE4qLh1qJxquED05D + XgINZlGpEJgvdcJFLrNP12MSyV+hJibBZQvmealr1iW+TkWotdxWDHxi902S11Tbe/ePz7gwy+aZ + IR8NFov+x+RvqLYnb5z1jjPPbkhWgXFyfUzkMiLBSxQxyduOYlQ+WWws7hEbzC7JjyhTcb7ciFq9 + nz9aqzNL0yQSbI+WtKd0dsUU/4pKfCxeMMX/NOj3Bv3R7I/DL/r94fD5aDIY9ybz3qQ3n80/Ppel + d3+/Qb2jov9750m2vb8tCcyGxzAbHRX9rsQ03JX6nQRiCiMOw4jDMOIwjDgMIw7/JUYcTvqHHnE4 + Sm/C1OWtU5dH6U3nFcnoIDMOw5Lkty9J/kqrLLfNawxZ7sOS5FBLknSuT2K44Q8U/WozFFlRufT1 + m5Z/DIm5tjlpIfxcGurGi/0q78P0A1ieJ/3bZHxYIN92hA5Ajh+7sjlEazBvjZEjpsBEUtnI/4bo + KawtF9z6uHKYdrU+n/TnIa48EIjrJG+PuPVB/63NdlSq+XQ2GfUXAeEPhPCLgYhXTSkODfIPw0ao + 9RJRQxunoDUEbiu+ogJ8nNe+/tOFyi/9lq8pI4y7vmlCSUI1QUxguD2sQK4VuKiUdeYt1LVsU2KA + 2hiE7ZFrZytjAL1iGr/TVHNw5itO8Aq400cfePXoID7Fun7PR4HOxsWC1jzFs/3pwkVIn6m2C3Dt + 5v70gzh9BJf2LjJC3bL7AoowTTevamBVAiTJKXayq5QwoDbvkb+DC7+pZDjlS6Xr+NUFQe4CsQra + 4Hd9Clebw/tBLO7E8UQq6S678oc0NMWgPac+IKXCgkbz9xU84VP8JSOT0wH+nMkkng1YEi/m/cUk + nizGMBkMIY7j4WDRT9hk3odhMuzPn5AylRHy3XZY3bDvjpvpg1D6MYjfnY+b4UmRqbYg8fa1wXzy + K+HgloPh5dwK9t3WFYNqfB6Tk/lqcHeERPWgGv/CguKd6L2zOARfj3LOGMgdK4oTWnM8bIaEgQCf + 8jufjdhc4t2fWXNRWcWCJ/8rgtLbimaCstB2dLB4tJrcn0rtltQQG+zJ8alczEbiIuNxjnOdmAZt + 2oRpa3CHT7n7hOszouV6A7grBfVJ4cL1zqhqnelEIHxmyU1lLMkULnCsO65V5IbeYlPQ2US+w706 + VLdpaI6t9ulYS70pivqYch+8NB2j3/FO57hFiH6Pyxb4X55xSUXgiwPxxVjdiuwU+AL1PNdY/gSS + UAOXhKYWMOREVfJ6xgxlK4z4XCmREi9oJjWCvIYb51l6iUGuzTXUGK3mIISPiTWVTBWEcQ2+HIdk + gvFjBjgzU6hKuwD1p4uXdU1khRW9i7Ohi+F+dBHXJ69633WEA4re8bp05YrBNEhDg+g9iN4PInof + P3HM64Zrq1v2AXBtPsyXh8W1bUfogGv4saucihQb8yirhDURTleLKMuZH9WSUxZR/MaoTk0gqoxH + ttUt64ps/dCFGexMgp3JsZfBTkGWo5XIJbkmSorGzTrxL62l7YmSxuoqwZIFiv1QLtcOaKGywSW0 + im+8HYpoWsUalY1b9Lils+QFTjxB1MD57qZab94eJ+bUgHnhpgdft8Nh3Oz7NqXiVI5+dziEPjZK + VHb9YS4ZlDhBStrNeXDbnEvyZTTfj3Xs+FwcTmaj2TGX03bc1eFkNA2kcyqCdlHmFC1ygzXuwYQF + 9Xx+e9u/PQXaeaMwi04leWksaMWZEwrkQNnaKvFzihIyn6NXlaGSGZJT1xSVKZ9jiSu59MJ2Q1uT + Rs8ImqKa/bPK6RpcL5XvpkLPk7fUAI/F8X6v+K7f72XLcE7+HsNmlL11p2dzhRyYq8fOLGthvDsO + t6hMf0H+jPWBWmHvFvZfkTfJ8y84KdQKJw5TUdPGbD5oQEBbqUgRxY1dKwrcIYHgDQrGng23zWZ7 + cZv5EPbv/zLDbPBydGW0SWC085DS/e/NH/1qjugtPVMKi8VoMRqyKUuAjZM+nc8WsKB0wmZ0Cv00 + jsfTWTrZX8/0S28fT870HrmsPTVNo1n/2Jqmpb5dnEfQwu9Ht8cMWvTtoqu4aTQfB3HTk8/8LxQ3 + fc2N4WXJv67YtxxC3HSoZN34TvGbJD6FuOnvqiJmyQtnFm83lsEYkZQ8sZXGflqbOwWzMX4jajg7 + m2H5o8l+teXb2e15uJnoQT49QshwO7vtGjLs1B8FMxMSasqhpvx+eDbeb6FcTqswIXLbQrmcVl2B + bWdbYciFBGALwPaewDZc7AVsanL6rka7jnBIUyO8MB2BbbgYBWA7DWD7O12Bjr6O+T0P8feB4u90 + PJ+ehGTcdUpTdAstOSNUZ5Wb9/Tc1+twohJWEF0vM1PZM0PSShMqjHrH7ohxuEQ7bNSbC7C+twhn + YaEExw2C7PXOpsI33K/CJ5vs/WmAruLiwOvbxe1KmN/OA+7MrhJagKYI9WXbO0SjmgsWxYrqSPAU + s+34mlIM5FV7XTqzQH8HC/QDC4TlbVjevh+uDfayGFsWJZyFaWc60Hlx1PVtUUJXZJsNwvo2aMGD + FvzoLfTUPjOP1dl+JM+lnz1ac+NHo9+oJRhUxzHUxaWVlG5AKY6OdWJwFO1RNzS1AMZRRl4lCRiT + VmczC264GOwF/0ujzkSUDTA4Ztp2aVRX9B+H7MapiLKle/Ajp6qNRoECDkQBdNmXRdPcncocFc6A + Ys+Nkz4vuRCoMTAgLQdpL1GLbGjJ11JohHovh15rlb13MTpUcINjzWyOc9R6Xgq9djHGpIkpIUEZ + dE4NJkgEUC2BEUFrnBBXAEWZt1AWR6u5m9C0ouwYZ6yVpeMdzJx4QThTGQFq3X9rpQVrJ8EUlRN5 + czexFE8E+4xeK3AHLVqxtjOoPht+mu3lfrG8yc/EeC6hTw13DslPN3lX47nhzpnTQS9xZH76jlr6 + 3CqzDBYYB2sauluubjQvT2Vki1EFuClLCNmwUmIFhsSUkRSok78htP9VXT6KOYjVlFtDSmoMSbUq + 3NCXDCRO78fRLO18Tgl3tkd+uviMsp8uCH8cCF3i0bBDCdJ0HRr5jhyuCcgV10ri43A29DHdL7zh + k+F50Ecs0+SY9MEnw6700Q/ufiG5FZJbv0dy621I/5XklniU3XLDu9pslnGbnWFKa09ldc5GZ6JE + 1FAfE/NzNuqI+YNFwPwTwXwNDEyyhDAR+GARQ15QewqI/2eH5G7Ef1WiZZmbAbDG9LOB7cF+s3m3 + 5PcDbLcXpitsjycBtk/EiFuIyljNVWWiV4raaDifBQQ/lB/3cjiazUCeAoh/7UsG6DEDmMvBEWK+ + LvEt2kuiH8zZAPl+KXtYfADD6pmooDzgkPVdh/h1IHcfu6KZ5kklbKWpiMr1L2taa7Ea/y7RWDDK + qS4iq67aK9MZyUNN+USQ/FUTK519ybNcUBSQBRQ/lGzeKsZPpaKc5FwwkoF1o9QZrECoskd8UqbU + YG1DYp71yCtsccbkO06hlM7b2SriK8YGFUZ+XLtT2rudapA9cm2diYfX2tOCZkBEhX3xlfTT1x0O + SZBWtMkct0PncO2y+QwSwSXgGbWGIAm1SU6qEg9kklwpQfAO0D1y/axovZldvdoNpbRk3PeGY4D/ + bu2O0Xc5xmq4//rt13ZNA6xqLdFKfAoKnrjvzNFSOiWCL2HtuoYTzEyO6Sg/FFOr2rUYGBDpunLh + HxGcqBZXQkBrbJYK3MHlpuCOeyqwyE3iqih9nwJOXDufSGhPAp0lv/dogG4uJUzPDD/CbACYJe/N + m6PAm0e2V1bWKKlkU6gqzMg8mBJLl3R6EnOZUYkrlcWyQyl4gjdKj7yp3LqYaGrB4MRKhiRZKmOf + P+jtd23mnDnTSmO545IkAhVbmBCjxm95iQTiUcl7X/lNUlrwljV9xcSzC00SKK3zfU4dCT2cgNvW + t7yZvJIP75IlPxu2GczGe7ENFcPfuwGkoyfWrFnBUTtAqOhaJO/PF7s0VsEUiwQRcBABH9oVYDN9 + v3mneTkGlNiCJLGzbfZa2m9FZS694aIrnKMIF1H/cy6NBZyynJI2Se8/8J2LQ2Qbyzz0UqNE1wU/ + KPNy8/5bTbEvyBvqFL9oucjThhhBqyy3brCy1xOjRtntiAoOqBYGUgBYf1DHqc6u8UGTfC5sNN2v + HXGhpudRBZqt7tJjVoEWatqVi2aTEAMFvW/Q+/5e/YiP8lfPsJjvUm/OZAZhf4dRzTo15jJx5dkI + cwej/XB+i8XKic5VHt0Ux8T52WjWFedHYXR+CDlCyPG7hRw+zsDQYRMqoIXL9bMVLuxBElNQjQmx + 2qenSp4hzKvL1iXGkUWmLCngwW+lLcDgiCVsKfRhDUYXG1MyXxLB1AWpfdJMZmAwYllRzcFy/w8u + LQjBM3xWe+QN7gG3dNOXsafE5enAogFarNExngFll879zLRnjn/g53wn47lQUn+x34Sn0f3qPChp + OmPzY1LS6H7VjZJGi8UgtBqeiG64shloU1DJ7Q3eF4GTDsNJk3w2BGrHJzHwz5Xd1+5eayMwDZje + fsghvSBft75iRZsgk0D1xpzygTbIJYmRizQtS5QGSIazBBkH9oJ8g6MAvb0Z4j2XFWDrO0/BS97c + goi4U0lYVcTuL0YMUOJQG1sfkWDUg9IZsaqSWDpCkmqFc+A9PteN93Ytd3BShrbZHvnsXPwCnlYK + OrITnZwHOy2GT5+Fg7ITnXRlp3k/BEynwU6NkpnmYQTtwUjpblzXMc9PI1DytRChVuA9I5EpXlPU + zb20FmSstKqynBjbCCCS6rbNXblKPMretMM4cy4QP9sP4oc3LJhIPqi+hjesK7BPFwHYT6Tv5XN5 + o5ovqEyaL6kNuq9DAfxspJLqFND9G1yrKYYCZ7Nxs8ekkjMmBmMf9Lw12ny15XFqlm4iSaJkynXh + Ad/V47E4QhufUkPlNdyTv/7X9//vXLB/sh/292+T81jeZ9QMj7m8798mXVlgvKtpfRxY4LgssFy6 + H9FwGwjgUD2P1TzLK357ChzwLVivo0VEF2BtK28qSClo4wS7MRXi384Gw/dT0vbZ7clj+K4jHBTC + 2W1XCB9Nw0I+WEQEi4iDWET0+3utTW9qZs5jbXojsv4RgQ0vTEdgm8+CVud0BirNJqXmRTAgP9Ta + NBGreXmT9E9iHgcuQFFWaazgOFM7dbpMHAGunTbfPWvYruYyFnBXgubnMxp1vlgs9hqTd1M1H2S1 + OrzJD4vq0Nzmk31QfXiTX9kcIj8C10Qqjagoc+qQPHIETkWkZIQbeT3uVXthuqL6ZBrkLiHjEDIO + R0f1v6uKZFVjvBlCAQStfEhSuYFbGwklyl+UWrqxHXJp1iOwieXWFRoLILwgmZKSkiSHZIlTs/Gj + Ril5HtmK+WKxX9/vjY3peazqqSyPmXHGC9MV/0fB9y2kK0K64hDpCgS2wX7ANpyfSboiXs2OCmzD + eVdgG84DsAVgC8B2GGCb7rdiM7k+lwnJo/tjApvJdVdgGwSl2IkA2w1twFCZ2DAd7GAh+2jI6puT + 6IwHITBMdzG5sUr7+Vw1/hNVX1ap5botEiSpARO0DNxQMKsywGaSs0nIjvZLyJbmTHxLFv3FMTs8 + 8MJ0hPdZ6PA4FXivlWI4MHkwHAwDvh+qzWMoR3e36UlA/F+VJabS0FbYNLFULN9qaCc1xIZbIC4N + Sy3h1rcqGtfILho3Q5m4h8lyY4kF6RoDcaxkzNsKXb5unicpADPrTvke9IhVMU0SRdrH8VwIY77Y + a07wTVHUH4AwqqbWh56hUot9CAPP7CphSYRNp01kclWbqJIrmiRcusvoxeRIFNFwETmbzav2ynRl + jNGuYVnPA2UcmTIGw1GhykAWByILuF0ms5PoUsdgAFf9MSBO+Rqeow6rSI2t6I4/CuwRqXMu/CR4 + i1u5N2oqloQKNMVVlTUYI3BJpOsp/zfyzcYdcT1/yxlx+Cn3K87c1PuvnxySYisKU9gRrx4ddcux + jFrvGXnpYe+UszOZkYKUs19uvZgNTr5F0YlGpDKTw/co4vXoSjQ7U+r9wDPH5ZmYSkljAe3vTnXw + VjwU5wzncTbK4SQGdqGtS6GYITl47FZOLSIaIqsleB/dc4Hv+X4ppi366OCx2F6Yrjg+mAfN32ng + ONomWTodDgJ8Hwi+p3M6P4kZIt/n6OyBOPEMRx/q9bwowKnuFtV9eObNucD3npK9ZVmfB3yni6e/ + xSHhe1l2zvf0ZwG+DwTfOsnbI259zH8juq+oNjbYLR4M2wejpXx6p31ocH+0+MbSgCESuJsMyKgv + BNSaYw6Ie9clsWVSJe4iMjkd4H4SWKRjOhwspovRZDobJjHM6CzuL9h0NpmO6XzQ74/n7ImJREJl + hCC7/UneQP6Ob/FBeOQYbOPOZwXacCq4bbY8/NsJafQuITFusIu/4iaHHfc0Xs6t+NKNzPKnOaA9 + yKxemvrQZGYV3YPM8MyuNBhAXMQEEmdY1kqbKAMJlietV7BKr9rL8QsU9vavNe6szsTXo5wzBnIH + h50Qyz1shjCFwJLyO3fgi80V3v2ZNQKWVSx4ErShQRt6jtrQeX++F5pCTU++FrzrCActBUPdtZtn + Otw1P+r5cBqCgyO7x1IQk/58EZb/B1r+z2+Lm5PQDV2jDbpwLnqC50oxP+ObCqyrNpjzaU3OnYkr + GqZzmWhgPHYmr5a3VkooCxJojV6hk0aN1ueXWKtdTwzHYm1raO6t97D9c21gbiHJpRIqa9CBr7Jc + 8HsgjK6NZGu0cJJo505MjicCNGlnnD/z1u8CWOaqySnPsK6Mmicq8XtY0JLiUMTzqQ73Z/uRkF2c + yRBDiKfHzE+BXXQmodBSGhoUQoPC8dWrl9j8zxQY+cx6jZDSLolCOL5EqKhpYwjjVOCM26RHyNcI + 8CanzDsuZRqaHvlS1cgTl+uUVoJ25a3leAsal6SgDfrSosF5oXTrsISDDGyOFWrcfP0QtNPTY0AL + Qa1KjbdwjxDoZT0SKy42wxapo7/WkRbL2soSCQkYQzUSmT/ImXDQbLaXseC2ntoT5aCEHXMKI16Y + jhw0mQWpUsjwnEOGZ9fVOeUMz2y8X4Znoex5zOu6AyOPOa9roWxXYBtPQvE3AFtIXZ8WsMnTH0S4 + 6wgHxTV5+964FpIGAdcCrr0nrg0me+HatDr9SPR3sAPA69IV1/qjgGtBax201uWRJ2bH0Pr3tm5d + NZUWa1tM05pYp8UWXILx/sDXzwrv44UCJ0x7Gtr4pCS1BLyb79q83uQum+k6+oEw7Kv8qJICjMGH + 1lXbCBSgM9yVT15y23zcI9cEQQUntD4zhBcFJmf94V0WlbrWTGds7w5rnd4QK3UMVtRYfxaAP1+G + HsikXY3ht3LVQKDm0ksQqWSbUTSE2kKZ0u3M7bxQDNB32H0dQjPNk0pg4+kVyu5SbhD5LrGBNMk3 + x6Btr2istO8jXeeGS80TlxwugNr1qSRKmqoA7cbVUlI0mlNXpPQsdzZVxNlgP2HgND2TOTgpG5qj + EmfadQ7OeBHsJk6EOL9ZPv+WipJbZ3E4HPcDgx5M0mJNdXOXwknYYi4vHS8KbixILjNXGMTiXLEu + KzJIuQTmCNM/Ny/cRzKQFZdYwGvnmZ8N4O+pXZzOp+cxVCAVih1hqMB0Pu2M8+OA86eB82llQD/n + cgUyWFAcCuHH85vJ/Wl42jslYk5X6GVfAHMxRc79aEuVEgnghsLkPHPdTsp4jYixVZqu44Nrwjgj + eO+ieaZVpGhImTeGJ5zKHrnejEeLAZ2TNVjbkKLCyAL9Ltxi0UUJaGQhE1G5Q2Ig0gYSlcTeKndM + Jwoh3zcCpBKXRHCmEsolRjhuY+Znrl26mZyw3gWVYGwOhru4yVhSGWDrnWNkiEoV1Fp7mWVZWTwX + p8B0J+ajyPX1KbVKgFUaTI98KyrzoMN8+CqJG87BUSNTmVwrVZhLAjY5HxLcTzs5HTcfgATnw3x5 + 6KhHpGoPEsQzu8qpSF39g1XCmqjmNo8oy1mED1KUUxZR/MrGUplAVJk27hk3nfkwJAxDISQoVw5T + CJlO95PkDRcq9CZt600aLlRXYBuFCu+pdCZd/+eX30fffBH9xf31Jiz2DzWg4L4c9TM2Pon1PlYd + 8MHFVTpltLRnshydTvYrXg+eal1OVEadF4NjJuEHN3lXzB6Og4w6LEbDYvQwi9Hxfmb2g8Ey2B5v + kxsOBsuuwDYItsehRzH0KB4/6cwUdiKuhTBt/lQJzN5a0AWXLotKE6t0K80hTG22X4tvYq8x4Qw0 + sB7x3fUFbXw6O1EygdK6bHVJuXRSmEJp66uWTl1T8Cy3fm67yxLHN5BYkugKhG3aZkeuieG2cmVv + r9GplTbgWit/cOeB89VR98KUKHMuXxDy2v/lTiYGYqmxjf8iPCVfCF6WgOPfjZ8Dn2oOqNWpN3uz + FWpz3H3uThv3nvPiBSFvX7tCGbvRNrlPPzqPHiFPzxFlSQLKnEr7or1i7dUqikpyy8H4C0Wt5jjx + iQqCjzLgO72H4zuHE5c/rzRCPkFpUuUudquUWh9m/T2ccYrSgq1/0c3PuWkMva3QHMVdfjcXk5ao + SNpcAWwOvXRH3qiyXLbepekx18ra3yv1naX47b+kKyfbWt8OrnZRpSlor+ZiRChjHumkCiw2vL2V + v1VoQwRtCM2BMnfLGCwRpACCQFFSmzet0MnRvBvJj59LqFwfu6JuGoO3jJHE4NjPgkoJ6/oCDgAl + JgcsOgh3a6rNXyWVPHE33fUzRjR1H9DAqgR2njh+qfXN3Cq13C/QXpuXpadrgU8DN1jUd9fpYfQa + 8Rnsc6lZTId71Sz4/ej2PIJEJlR2xCARL0zHtdRoHsZJn8ha6raimaAsmAEcTOFcTe4Hp7CQ+q6d + ykgyHEKa07bA3hIuspFnVGSaNumnzgXLJ4u94uJtFl3HLtJse3+bN8Dcro5ZpsFL0xXNJzun94wD + nB/Z5aXSWSVTWpmgxzoUoosya7JTQPTXVNdcclN4cwCKwZFeng1mz/cqrPPVIjl54eyuI3x43Sxe + jq44PRqGcnoozYSG6YOUZibzwX5wNrg7jz6AWT2bHwPPBndd8Wy42Dm6OADacQHNCEUlcB4WnQda + dDI91FIsF6fiKYi1FLit8DkwPpXd9jpj26/rbOYFKuCphUuvwvfZdpWmpnT5ZsxACFWjVL/SK76i + AhPVbUXhx8Xsj5iejrlmxJSQYKlBYAHD76YEyQ3WGH7+KLe2NJ9eXdV13atlk2Cky5XpKZ1dlYol + 1FhzpSnjStD4imrLEwHmKgZa2eZ5Wd3fC/j4bNbM+5IMPY+c9aKg/Jg569WAvjfbhNXzkcnmjYUy + /7q6oTLQzaFkqHFR1uoUyMY1fSkJLxyzYGUaHcxfkBaXyTUxzsr8mhhaE0riSiY5sVQsXVEzxsET + LqWd+zqzm0ucEkslTts4m2TJbL8Ed1WlZ+J9m63kMYG/qtLOwD8NitaQNgmK1sOkTWbz/YDNLs8D + 2GZ0Vh4V2OzyvYEtrGiPDGx/qTS3KqhZD7WcXUzUU7x4n9Xslkeg4wSFWGkLDIceCGosSQGFkDGk + SntpXkklg4InmwVuDUL0ej1SwzM0k5WEbrbp+dE5grJWJ4gNW8aibZOhKbi8jB9c597GBXSpIZNU + 2p4T9bkOr8zZTyliABWK9cMAvNzLIZOcC6YBJYGqynJnTGUetJyocm3HvWVKSuoVsu9+lvE0dVPj + vHqyVMY4LyuG63CtKtOeLJBibTCVAxU2P5sV+nS6F5HZ2/j9iSzp3ybjg5Yztx7h13nMfcx1ZqxL + AF56AhGazkRS2dYQlssUNDqQWV8GsLdxVxrr70rMjAKNBTHhvxSPnYyY8NpJ1S0IgSmZZ27qaFYh + 4nNJYspISrnNUbvf6/U2TIPwnnJtLCm+++tL0kIBck+M4nYGhK4oFzQWsJ4L6o2NfRcA6vefrcDr + FplyRQR0dyLYfSA8gzBI0JmqR/7md/4wh7TUKkWzK81Rr94OI+L4R+P3jATclDizRzQk1sh1bjxp + QfUSNtNLHd1hacLNbNWQgUyasyGpyX6aGyMGZ6KTTIvKHlUnacSgI1ENFzv1N5PAVCGTFAQ474dt + 4/1qo/rm7lxS5JNjWhbghemKbLOQSQrAFoDtQMC2nxULL6k9D2CjpTzmSHm8MF2BbRxGK54IsH3x + n9+9+iokFg6UWIBlnpzEuIcFiTXl0qx77Js2n51QN8gAU8uU5FzaS8JoIc8m8O7vp99Qugh2Wlsg + XOmiK4SHIZJhbRrkG4dam/b3q3qpD5JQ/Jdp4lPdk4ijsCI9EThLKBocuVpmWJceaF1q+T3YU1iX + vmxHPuGcMYJzuFBRrJibYaViA3rlZ37VTvoAl35QlpJYSnpnzAYleSWZBkYaoNo4SYds0A0PJ5ml + FS52S5pwez5lpf5+ZSUVmzNJvfb53VGXt7HpygehLeVU+IAKuOMG7T1UZdE/JrDCgVjh/jadn0S2 + 4lUOydJ5m7pxeejGqlHQhqzAqKUui0ElFY3h7bhDjRZ3qIrLUXaHI/k8caCJlnF3sfHavHVfIx6i + oBJu/VRJ19eowahKJ3A1GD3Xij+3SolY3V25QX2SEWehlOA0EPcX88ZNKLmS3l3JkpsKZRhAJUm5 + pBIn4oqmR65T12OT8RWsZYCqLJW2OO+xuSTgmjGdRIJa3BTle4RmgEIK8BIJl8FBaQWDFQhVOnNY + l8tB0QhKPVDsmGhunUGSG+0I+mwc/8bz/WKewtjfO+bpJqKA5dI2R4h6CtM5D9/fNTAwKCeOzHJf + VyahOlDbocz+Bjfz6hSo7Ye1Ps5Ne/3pIlFaQ2J/usAhU+wF+cgn4Z3kHOV1CPzvbkUkqucQ3Pzs + 4iRXPMF5AEq5Wb5V+fH5gP5+IU7B5ZmEOJPyqCFOwWVn8A9zq8Lk/TB5/9gM8O2mCwhwojqasfpX + qPFNSYS8bFvyqXMw5TEVL84Fzyf7qQVvivI88DyexuNj4vlNUXbE88F0GBrqTwPPawCWVqL9ZQOk + HwjSb2o5ik8B0t+4LJVwptQxxf5LDaZUkvl2G7fad32krdmJSwOhd0SCzg7ap3hMDhgXzPvoDPHT + JzX4XNKD1cdPP31yLiww3E+Wk8vf3dy1Yz9Mls6XR+2HyWVXe9fBznm0wzA3nARpTpCNvye2jffD + tmkwrt6ObNPOyLZzssrzQVjjBmgL0Pa+0DbcD9r67ANAm9G3y8NC27YjdIA2/NiV1VSaDNDlLmpU + ZfOozlWESZzW91Q0kduGYzUZ2FV7YTpDW9AfngiwfSZoslSVHc1D4H6gwD2dV3B7CoH734Hm5Jpk + FU7Wvm4nMVmS8PZRd0oOP+hUSSB1rkhNJQ6awsB+87i7MRqMs7UKpEe+r7Q0TsHCrX/REJqg+6Qz + enRenyXyp5OBGG7Pxt9xtNhv/Qs39e9NEl09wcppfFSagJu6I03057NdsX2YynRknnito2+BJvnh + 1r8XILOL348kLr7NX5P/IS9BK1PSBMjnMuMSvK3t/5AfgJZKkjeNsVCQz51DPF+BBPPLGe8OC+z3 + Yxd6p4YnkRb+kpMfqFh+n8O3gsolrvG8YMOhnjHIHBvDyDZg2Mzr86iFl9oj+Ufm40/9xCfvEayh + RN8GPzGJCg2UNWQNp6ydBlhWgmpirNLNpwSVj59eXeED2+P2qqRyXq5wl5+06kTno+zS1WiLzZDx + uCSgNTqAK916RDvXibTSzvw4EVTzlHux5SUpBVADbc46B8MtmmJaRX4swBiaQTuKkBlvMNH6S3gM + 6SWquGq3Q2AtlYEXVv3pj8Mv9B+HX7zxEPTvtCj/A//fbvmnr5s/DvvfKmM//eOw/+53TPqxHl59 + /Mn5sOu7633GDVp5V9zkDg0vCsVAU6ueZGk68vBCfYjBiLEeHngw4pYjdBmMiL83+jRqKjg1UUIl + RFZRZiJYKYGE6l91ZXUToa78qr0unUk4xGohCRVaXw+ThBrtObmcDcdnYfiWJrEYHUEFzoZdjYb7 + 00mwjT8NPPuKFnGSq9IJhEL66VBSwL7SVjYn0QD7V7izXjsSA0FTNcK1ksQsuRBgz6Z5ZzSZ7YXa + 8WISBrFskf3Fi0lX9B7Nw2r0QOitk7w94tbH+zeC+7e0pNF/RgHWDwTrM3aXjJfL1aFh/WFYt0uT + cJpJZYARDCXJl1+9/IwMZ/8XMydoRgGp9fI+v7U3TpM4nttPKVCCXa5tG4CMNCOZxondfo62AOpK + DWv/NZyK4PIuxlZp2iPXXkY+7F8N+32y4sa3vG6ODI0floBbOju3DG8UMBsXjKIh2kkSuSESNzD4 + rzZ/xK1vVMJ9gNuXkzFiyoqi44VJNC9d/UOAdLahL2VT08Zcuo5UZyrnpoy5k/zsb68J94kmfNfN + cEBvDLwg+L38IZ4I3fFqRyanA5cQncF0EU8moxmFuD+cp2xGk3gxnKYsGc2nk2k6HCaUPlnCJ1RG + SEjbYW9Djzt+8A/CucdgZnc+OIadU3R82IKU28l79GtJpy0Hw8u5FYy7Ef/87kM46M2H+fKw4Vps + lMz3YH48s6ucijRSaURZJazPNUWU5cwXhHLKIopf2ViUAUeV8dw/v/slD713ll2dU1H4epRzxkDu + IP8TWh48bIb4jnic8juf/txc7d2fWVOHNzkI3q1hefEhlhen4936WUverj/AwJ0jb4VWGqnSBcUq + HAGJUobWQrwhKyo4I87DG84nqOzvp0ebsvl5NJOli6U+ZlQ5ZfNuUeVwMZ2FZrJgYhhMDI9oYoge + TDW1Se7CLwIlN4oBiRvyxsIKyLWucaZd3M5FMlidX1GDaO8KnM4Q6nucB+TyiYJb0E5vBmhSKBtv + 1b0ZGISuTd58iWtSoFbJewhWyCK2QtG+aNyAIfRHNFjRRyaR1FaaYqsbMKxCt71tuMeal67AX6xj + OmfslCjjJCLeryrdmEKta7D8fj3ISLoOOboEQwwGlBj58oJmzswqBzw0ftlUq4y4eUmtDRWruWQC + v5wLwXHTV1QC+V5R9sy4SBVB5Vxo76mhUTfam+SDUNnfUtmf5IOurDcJlbBfZD33VwtgFwVYitPY + 8K78wwPUpf5ee/sULmiWRYbfu9C033/8Rskjl7JwP8TFqNd/9P0uvIPr+tlY9GeLR7/QBZjotgLd + vHUG7p3tL7d46x7tp++4d1Mu/Plvf//X97DZqqiMI8xf3OrpAmLn/izowvzqYXfeZD92/lh74/tb + svOnfu605T9/dat38O09LpgbGfjbLtjbePyP33bJhH3rPu384X9+qCv3i1v8/MvX9cLkqO57+3nv + doQdv5h7ANCKdvs+397Xu6y2DSr8G0rb7c/127/dBQOTvH33/nPb6v0C7iCpMIntWhKjggvBDSRK + MuNk1ZPe45EmF1wyuHN5qMeJpQvBCw/lg37/LQB7BJIXyBKP33M3qHnybG75br98K3e+bTvdov/8 + tZ/qD1tuqQsNxuU4NdhKS8csb+O8yZF5niJ1SrnYSkRmycty+ztVkoAxaYUo/CRQdUR38SmZjbf+ + 3ltJqL2r/E3zzuubkOLxVX68zU6QfQqij68Y3m4sUpV9ukJoybq9pni2g8VwMRks/uB/gH/+f3li + MikmZAIA + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bde11a095479-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:45 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:45 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=HOAd4vqwbMSb9jinm9mkmpzkyfDmZhRVt23cKdpmlBYa3bRTenGSdUj5x%2Bhy5dXF9FvHQukWcByhIi5NIfkB6G5BtkRuzDn30xaVLYI9zCYH1enAjOYIwKKAPP4t3jneCM1r"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=1000&before=1601608395&size=100&sort=desc&metadata=true&after=1598454795 + response: + body: + string: !!binary | + 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 + rCk9YP3edPg7v/z/+L+uHYB1rFMCAA== + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bde51c5d53f5-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:46 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:46 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=4QvFYVSqpzM4gc6eLdaKU98yYpL8IEWHipLXBTGXzsjJWHE3I3m6rLKfmhTTwUaZScY6EzZZOSg3GSbDsMGv6V7y3Fdj8hgx1kJUlRtYRUqb%2ByJhN6eIKQ5SUYX%2BrXnLT6Bn"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=1000&before=1604761995&size=100&sort=desc&metadata=true&after=1601608395 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bdeb5de6546d-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:46 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:46 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ljgOXCqTjEHJtNTIUg39YuVFecU41XhZUw1fRD3hDJnA5gVxahMEHxuEtWTVsKGRH9Mo1SLR7wqy4dA1sP%2BxUSbIlOWI5UH1sKhEaWcmiDdCZOI8HnkZqWCBchIhP4RKy5Lw"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=1000&before=1607915595&size=100&sort=desc&metadata=true&after=1604761995 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bdf19d1a5413-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:47 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:47 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=oC7T9HiYGcNXNvS1MWYPYVORwt%2BXIuFB%2FvEP4g0m5ygJhMj9OS%2BUvFj4GpnsSGYLRNodCL51Qz00IivTdjJ4itPdzqf7dWRgVKbnSv1ROmncSIsSpJSCnYhKyJUPpHf7JSef"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=1000&before=1611069195&size=100&sort=desc&metadata=true&after=1607915595 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bdf7df9954c1-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:48 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:48 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=3taPJXih2zVAomiKvOPcdZz%2BHjqIONSsXCHpTCU7sYS3dJzp2nAR5HRCGUYD%2BB2rvJvMhjvwwzMBdDd9QK57XpdM0yhIBUHELYqNEFOT2KhCR8szsSs2MvwazWYZ1ebZ9MG4"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=1000&before=1614222795&size=100&sort=desc&metadata=true&after=1611069195 + response: + body: + string: !!binary | + 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 + 2cUvwuL//f8B7tukHe5KAgA= + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bdfe1c825401-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:50 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:49 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=gCne6i9%2F%2F45GEztk%2BdZNMrqrPGwPBaCmMl2JkgU0iE3LHSTk8IBBoe8XR3LvxvnSPfORZt6VvHoEvW6%2F0zcmX4%2F8OVtpO4YsFX0CVMRxDvZ20fYlniCHMLXkMDJboUtJUKsb"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=1000&before=1617376395&size=100&sort=desc&metadata=true&after=1614222795 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9be046c1f5425-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:51 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:50 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=CjTPeUBMgws49VoQobByx0sWHvIiRRLq87Au5osacRpur4umOzc8Mq%2BHif66jR7mW42YdTb3poyrSibS2kJ5snsrnd%2B85vt%2FXLFs53mBatn2iG9YzDoahXt%2FmlO5a3yZ5NNT"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=1000&before=1620529995&size=100&sort=desc&metadata=true&after=1617376395 + response: + body: + string: !!binary | + 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 + AgA= + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9be0aa82354d3-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:52 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:51 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=%2FAjIoyhyzRcXsc3EFMoXLCUa7yt4NcwkvP4Wj9aCbcODSZF466aB%2F9TOA8C8BDVW8OuBeaY%2BRGRG2T%2BBe1v8e7Bw9aB7fq3v66Hp89x9lrFLE5lY72IEg%2BSZnw30E6naUrr4"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=1000&before=1629990795&size=100&sort=desc&metadata=true&after=1626837195 + response: + body: + string: !!binary | + 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 + YTs9a0fU1XP0B0P/Y/3zd//8/02zirEWZgIA + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9be1d5d475437-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:55 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:54 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=vbcCPeHaOaXHJy9ivLJ4%2BEk%2F4j7LoOgXokF9l9u2jiF290bgVk0XYfd4DbUiNLtxca2JjxWQ7FeMy5mQ19FUgPkaeM92myeyxVVTRUylF76q87n6iv205uLKCicy%2FiplXRGN"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=1000&before=1623683595&size=100&sort=desc&metadata=true&after=1620529995 + response: + body: + string: !!binary | + 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 + Fib/n/8HbXiDifB9AgA= + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9be10df9853dd-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:55 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:55 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=zturi1LdA9T%2FBA8KD4O6C5r%2BcPRKQc85wCWR29X3EB90C8sGBrWWWSmg9Jp8n2P8rgWoKGabzlRWV%2B7FUeANCliT%2FY0mLjMwEmwC99JSXqSIQpkZFzvaslRVARTBtlD%2B2%2BBR"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?subreddit=science&limit=1000&before=1626837195&size=100&sort=desc&metadata=true&after=1623683595 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9be170f883fd2-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:55 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:55 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=gR91R2ynQsf3KIvDe5MolPcyYm9nG%2FUzGq%2F2%2FH997ExayPhOj9d%2F6aOnQh660fGQROOOqyJYP7UFNzE5pyiVGpQklBGSGlkTBGzwt6TorgUIbf5JyFgG8GlZa42G2ppeGids"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +version: 1 diff --git a/cassettes/test_comment_search_query b/cassettes/test_comment_search_query new file mode 100644 index 0000000..9b69d2b --- /dev/null +++ b/cassettes/test_comment_search_query @@ -0,0 +1,6240 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?q=quantum&subreddit=science&limit=100&before=1629990795&size=100&sort=desc&metadata=true + response: + body: + string: !!binary | + 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 + //n/AU5w5th+WQMA + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bd93df193ff2-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:33 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:32 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=kajmZsG4pkCWYRd4%2B1EcZbLSc%2FLUQLhepjHHL528KeXRTTDGQyEJHMJgQi613aR1MrlaRy3EK7hzg7mJA%2BPEuf8Ahq0Xv%2F4GPxU3piv%2FTakw%2FyBT2kaH7NkraDUE5NvDwKLz"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?q=quantum&subreddit=science&limit=100&before=1601608395&size=100&sort=desc&metadata=true&after=1598454795 + response: + body: + string: !!binary | + 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 + 0HZzCqXt0fQLnvv3/wuJCPMecv8CAA== + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bd9a1ecf3ff1-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:34 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:33 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=jogINz8hfcN5GMCe5%2BgNMdRf3ILrkyA5ejiosCy9C3wehDADmTn%2BxFAI6m95BSJPAxeC%2BtU6kt2Ch3qXBjWoUEKtQBQyzhtZA2U5AgX46Oq%2BsVePmXv8Jt2L%2F9ds8ARBao3v"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?q=quantum&subreddit=science&limit=100&before=1604761995&size=100&sort=desc&metadata=true&after=1601608395 + response: + body: + string: !!binary | + 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 + AwA= + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bda05de05431-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:34 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:34 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=YdXOxNFHOKHCxztrZyRruzhMtN7GqyfV%2FVZ8R6iVVAgRqSwU0rWIjMaAIsE67Wqi5Hz%2BfoT%2BA%2FwrjdcTjvyOUH4p6Xym0xPpcBX11W11a%2BjnXzvCCK4ucynrdKvwckpmiQv2"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?q=quantum&subreddit=science&limit=100&before=1607915595&size=100&sort=desc&metadata=true&after=1604761995 + response: + body: + string: !!binary | + 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 + uf/1/wFfoRtO7AwDAA== + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bda69846cac4-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:36 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:36 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ig3TW%2F5q04pdI9o%2BbPA5sHlBSt2A0lXCh5PbQIqFOZ8d0WjmjquV%2BEk0aQt81RsBbNk%2FxTmJAEl5VPKLEDVDt6GU4Ds5y3vRxnQQTV7OsL9S%2BJGTb7gDd7XlQqUX%2B3UPRtZf"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?q=quantum&subreddit=science&limit=100&before=1611069195&size=100&sort=desc&metadata=true&after=1607915595 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bdacd88e53dd-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:37 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:37 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ynohwvt%2BzUkVdzL%2Fzqx2an5mF7MbMwia7%2BE%2FRHaxj5cYqfOvR4EM4e4sPLE9789lD2YSDMAyy2yzYQvfrqBFs2v337RNLOOLd997Sh7awy8f8Ha0ZUdsKIXvI0zz9%2B2iKPGG"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?q=quantum&subreddit=science&limit=100&before=1614222795&size=100&sort=desc&metadata=true&after=1611069195 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bdb32b6854cd-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:37 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:37 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=oMSdf%2BAcov59E4FNbsd7QLhrOuFaHwGayPEdI0nNUyw6Nspo4iiWbPKCLRaDtkFwuF6HZyKZkIeQSUuNTXR8neRkFURBwtET%2FSJqpAVmzY%2BM8mYzDjb0zv8Texbr88eRB84O"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?q=quantum&subreddit=science&limit=100&before=1620529995&size=100&sort=desc&metadata=true&after=1617376395 + response: + body: + string: !!binary | + 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 + AA== + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bdbf9bfaf989-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:39 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:39 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=vp3JQMONbUS0JBPci5VjBi7Pgz2o2tVz7Qc9oXHgRLDRQXZyWfcqE4OWBLUoXC4X%2FJ%2FdE49N879r1ZNvVCWG%2F9pbtH0FTvcw%2BfiReaDOs2Eec6YlC65no1DFNJ8QrPn1jkJ6"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?q=quantum&subreddit=science&limit=100&before=1623683595&size=100&sort=desc&metadata=true&after=1620529995 + response: + body: + string: !!binary | + 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 + JQqjtV9qdbb6F96IHjQ42gIA + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bdc5d9e6541f-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:41 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:40 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=kEQ5Vpzf2jhrVo3W9xfVypG%2BrbAmI6pHhB%2FhBCcPRB%2BhWBNR%2BYzu0fUc0dKvDMtbBiFBa%2Bdh6bWtPDhzqxdy%2FoVx7l0i5qpDtgfJZgtXqPAbvT%2FgD6Y9DS2JmmK1X1qdpDJn"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?q=quantum&subreddit=science&limit=100&before=1626837195&size=100&sort=desc&metadata=true&after=1623683595 + response: + body: + string: !!binary | + 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 + 77b9jMLvKeh8QTP/2/8B5K8xwJkGAwA= + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bdcc2d4f544f-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:42 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:42 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=r4ubSewP%2F3AJY3glWhyfTvjQvyfsrNI1Yrd5q%2BdTV8qlmateJqvVfJm2KrAlY8uqNRghIaos4ZORuSYYQA2guESFMrcJj5%2BBVSoK7MD50t6JS7JYTARazculs1aV88crvvfr"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?q=quantum&subreddit=science&limit=100&before=1617376395&size=100&sort=desc&metadata=true&after=1614222795 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bdb95aa753ef-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:42 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:42 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=zbiGy6Qon2pw0IOBN12QO4kxuw4NeTWZ1FGjlHhYsCAohl4Ve%2BjZV63EEnNfg3cwneztNuLqi9LX3yRgz1pzx%2BeJue%2FA5UVvmFAiKa2G2u7m6KUNnVxJLOnSE2JE2YhhenoR"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/comment/search?q=quantum&subreddit=science&limit=100&before=1629990795&size=100&sort=desc&metadata=true&after=1626837195 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+y9a5PcNpY2+H1/BUYbu5L8VmVlMu9+Y0Ihy5fWjGWrLc16O9ozGSB5mISKBCgA + zCxqeue3b5xzQCbr5k6VneWq7pwP03IWLyAI4tye8zz//X8IIcSTVHr55EvxV/ov/L//7v5Ff5dF + sZJbaVOl1w4P/M+TKwfYJFcbSJ98KTJZOLj6Z+dMoqSHlC/z5Euh66K4elTtc2OffCmevIPKq+T0 + jXL+yY0HrbJCKruKZXK+tqbW6SoxBZ1763XDKYlzq6SQzu1xrFVJ7uHC3/jE/QM9lFUhPaxUusdl + wyX3OWzvx/JNBThzdO1bDqyLQsuSD4tWo6marbO5vuXoSnoLRvPlb3ut4VALparLWw6KTdrgLV9r + DxacV3pdNCeiMbUVlVHaCxmb2gvYmKL2ymjxSx0NR8lWajxWeCNKeQ5CCldBosCJGLwHS0elQjlh + NAifSy9eC58rfY6/aeP5ty0Uhah1CtZ5Y9KB+FNdSu2EyTzocLzPoRHSQriyiCGRtYPd7z4HURrn + hdIeikKtQXtxSj9XSmuZFCBMtnuEgfhF/6K/qr3Ap0xMWRVw0Ts5AVGqde6FTHwti6IRMYhSFjKV + lVcbEEqLBKyXSgunfC3xok5InZ6IFCrQ+CEKowXojbJGl6C9LERidKro0BNRSrqogwISD6kwtedR + fWusgAuJQzoRyoutdLePkqYwsYCfrtB1UoDEt7YFi4OhCdhIq0zthIck16Yw66adeHpDSwsiqa0F + 7YtG1C680hSct6bhKSykBk8XTC0+fVKoUnoQSS71GgbiZ6DHsYCvsX+K0rlxlfIyLgCvWrvuYFm4 + G++yVT7vnmQLssKJdaYEkcoG5x2PzWpfW+D5+oupxbk2W7Glp5JOaNjg83thlTvH954aeqrc0JrB + PfKFeJ+DSExybo1Mcr7SO3MitrlKclygvKQsiO6dG7uWWrnyhfi5fxB/DZfWfHckXvV1/30pp3nW + vZCOPxhZ4D+3IDzgGzPtN+KFcgPxGv9HOFVWRSOkNj4HS6+UptRY4a3EQ3leXG03aiML4Y0pzpXH + hy9UBgPxvToHUagydid4FjTA/0hAeysLocFucJW4xnko+W8phL+qT7i6Lh8xED9IfAkiNbB7qDVN + lAacx3bjoBcmk+57py9WinOlUxxfafQ5hDWJj+qlbfeVsC20KzmWTiW4M4iPtdS+LkWVN/gTTVP4 + oPo3SWk7A5rVTCqa6N02ZWEtbVqAo0vmZntp9+BL8MJ47fn58OwN2EbkdRkXYU3VuE90r40eefDk + hj125XI5wo1WjrLpPIuT0XiymM7G8XI2nY+zdDmUyXQpk+V0ApPZNJ5evUgi9WqtCrRg3tZXt/HE + FIWs3K0mvvv7Kuyeq8SaLdpl7a0pbjZhu5MsSGf0fketEpPCbYeWuBe25vDGI3A8G7BOyUJ5NE3D + q4fwfreqffLkSzGaRct5NFmOx1cOSxUZs1q5HG4x+zid9LfhDX8IvtR//39X/kY+xJNcjqIPkbz6 + kpRbuTouFe4Gt7yJQulzdkSe+PGqWqqP5+OrlylMcn7rq9RmlZmiMNubV0IlcTNv7zBa5ctPY5su + rt6iAltKHAsedmbPXKJwizoLr8id8cjOOqO50ma7kkkCFU5+3KxK+cFY5ZuVyVayBKsSqd1ZmJiz + q/ez4K2CzbX3Np1cOdAlxuLiGN30+ypXaQr65id3oHENVoUCd8sRXiXn6taZdXVsIU0Vun9PwoQ8 + ue2Ydoanq9LU29sPQ58OfbBMXdCNn3Rzffs5rbtY1XGhkqvHeVOxnw7pr3xJ3ngZwgK3spBACACu + rnWPnxN/lTJED90BvbX/2SHHZ8YU3pyropAlb/+ygGNkcaDIotnGVX3osILXp71xaXQhh0hN5zrE + UOD2EAy4ZOdKpSBFDGhqXV1VFpxDc05WdyC+l7EoQJ6LjROxMqfsLqIXITsXoQBZDcRfgK+XGO1A + u9rRHbaAboM9By/iGsOTDAovCnSV8OCivTweK7WoNf4Jg4Hao7taO4VOWGWcU7FCYzUI3uCrXGlw + 0BtU8AwvPVf3pM8sOPRzVVw0zyk0AgzGMLyA9Joz8btY8t9mo28ywMNZdBcjOnSf1n+0Eb3p79es + qBxui6m5RyuKM/MrVpS8MZr7xXg8jW4xotEDNpH/kGbMxaA/yaPtOpDt0tm6Wj4E24VpB4wxE6Mz + zpqABrtuKE1SSty6Br/o9zlYeOrY7tgN5YkoE0XHntBe3x38i35D/xSJ1BjKtnkdSrxwpgTSwS/6 + LbpImNKSWqtcFXzVZ3wdUQJ4NFde8Q/P23NDToOPslCA5GRPDu3QMfei9OAX/f8oi3kvUYU7ORoS + j6f7UVRSWcxN+X5InhV10ibELo01SaAAK72xrr1SGEvcCFdKh4mZ3h0xfwOUe8vVOseoHVI3oLzN + udLgVdIO22ScQOpOVTThG7A4e0p7IzRs27s9k6XB5BxlUjgb9PxR2NjZJJrNpp9vY5fbzXp2/jvY + 2GQB5WED1e1HGw3vYGJxZGegtPOg9MpJla4KzN+uMGfCM7ni178aDWerBqR1Z2Fi9jKxw2i5nN9m + YkdHG3u/Nhb3YKelT3Kwn46m9kCmVuqsHD4EU/uWs7y4rSv85B3GYFQOUQkumhPRgMeCFVmpX55Y + SOsEfnmCOXRvhAWMGzGni2WUrbEFGgVRWfC+4dQ6iK1s3InIjBVSFIYsmktAY+0EU92w9UY/dQI+ + drUei6WVQqUnAjZUqcKYtDODJWBxBEcNF8p5FxLJIU0vS7rjSTvop5gct2Yr5JZKIwXd31BxIHz/ + XdFLeVHI5LyNZ6kopHxDl0rBKQuPwppNRovlbHYHa1aYZKp+uzWbq2ZSHNaanetUnn++NaORnTlf + p81KpaC9yhS4VeWaJMf6nUpkgR9gjmt2hUmEszAr+5iyyWI6XQxvMWXjoyW7X0s2WqYf5Go4Phqx + Axmxsd5+yhaQPAQ79h7hCr2MpyfYhG7aOCazpqRdnaMSzg9WVpWcvCzZhuTeV+7Ls7PtdjsgayNL + uZaflIaBseuzTFnnT70q4TSxjfOyOI1rVfhTClJP18asC3CnwU6dogGpPdjTaBiNhvPx8OxRGI/h + fDi/Q81ueX5hmsnvYDyycZwd2Hj4enaHmh2N7CxKV66uwDpTqJRMxCorzNatMMI3tV9lViWUjcwl + BkI0LXtZj3m0HO1dsDtaj6P1OFqP36tY1oFQUsiUVh6jIKWd1DvQCycO1yrk6igreWEwVZYZWxLO + pc25SSykGY3/nVOG8XrkIgujgTNuaE9EsCeuSzXSbWEj01Bdc4AIN1HIbcjJ2dKkjZalStxzipic + V0VBx54TQi4TW1A21eDcSVvWewwGaLyYj8Z3iV4+FEObPXgDdNsdDmV/aFb2sj/T4XIxPta6Hob9 + 2ebGKpevjPl0RGscygYt9MaWTQ2/pw264VPYL4BRlIXrUNEImkTUBBQBTYmbemtI2tDCCcLjxhZk + krcVp0KVDE8l1C69aMxrhJPwKLRlqUFo59OiwOwXYoDpSgTLTVWWqaQuKMV3DlC1UZNypuCsIObl + Ovh2Ykq8qioZrlHAQLwWudwA1uBoWIjqyCTCj70RuGJFTRd1hNY4ob8rLz7UzgsHUDo6jqEimLbD + /621QugiYJrx3HEu8XEYtPFiOJ/fwaDlaVya38GgRZ+W6rARVT7Mm/UdLBqO7EyusMpr9AouKsCQ + XPuV9Cufw4oyym4Vq/UanF8V0oE9CxOzl00bDcfTxS02bXq0afdr0zDBD1ZL21TWYDnxaNgOZNiS + kT+v87J6CMHV1yqlAooDapYpGt7mvW0Y2o+1GWpC8YBxlKRXzkjBwui18nVKxis3lpsBLANB0Jxh + 3BMaFfBPuBypDeeFEO8wyU/gRlMCW6G2BIV2EoMuaq946oVMU0Q/Ur4wAB6UczU4UYHBChbZMuqe + 6e7ANkurhLqf8PnQYlmyg17U1UCI7xECCWJdUwTWmPqpBYH1M8nYCeyXuFyHwscii894i7qQtmiE + 8zWa0CaM5qkT0jlwrqS6W8btZJmCIn0hRK+g13YGVdZsVArCgqsL7/hBJKFrsAbCTzAVTq1LORDi + a0OPc6VBxKm1VhkC6Ph4DDxe7Hswo0yxXlhrsdvlndgihqcrLwb3om2DCXCfc2C3R2XcmFNZSDnC + cZzWlRRoQyk9ujlFI6xaG4v9NKVJocBRgkus4lYj56XH7gWco1AyvPQSHKaRn3quPJJjlBTU3GQ4 + Ji9gA1RDxMljYKp4F1YFViNFjp0vDbtTlTVYL8WV5YN/RnlneiHo7CW1lR5OLj8hDRt7+0LLVP+J + A36plCkMRGhhkgU16MkCq1bCwik221gswjLsx3mBXa7UqoOtQ3wDXsHcuRXuyN1d6IDhsXBBbVME + 8ul3hoW+Hf6MFX9B9NTtFHYDo4aerKizjD/ZylK/otkVgmMl6T3QyGly8E79i3E5WBs/EAKBYfQt + snf4wVCmQ/H3h4e1L62Slj/98F7Q/fU5GIvNSbT+r7Q5YU+WBYR7bfiVYmam/ZtEV8i1HzmtyMpC + otzlxcjfVYn1gnV4tQleSvwQvOCAfsbEDhWu8cG7DYXuyTHANm+EBvr2c1lkOE9Yt+4OFZXEBACu + BQS5xUB1eFppKV1GeqHrMgbbvh7d8JeGV+UREPALN8Suz6tdTBozX8H5v7rHXt4DD+t9P/n+x59X + 7179+NM3T34PJ3w0icZ3QFEvs4uP8ey3O+EzvdXLwzrh2XZcpZ/vhNPIzjRsi2ZFPTHY07VCWAd2 + tq+UTgkKwuXwFdugszAv+/jg48Uomt+WVzo9OuG/1Qn/fekHvv6kIDU+/aTK+uieHyrvtIii+L7I + B96xi9Yllti9ueKxMRsBGprO6VZ653YTYgYNQg5F1flpkGWQIP7qZeHMSbgw9YuzSX66AZGjxUFH + o6wLr6i72qO9WqPHjdjqYApxIK0fKFNyLdA6+Ry6xnI6xgHg1QlZTbcXaAr5ErHZsA8dQ2MoQiCz + g4wAJm3x0eRUQqrovwgZ/jrr7Bs2SRth4g+QkLOIB4e8utg5VRug1icqqyA8DWkWEHWWN+FCNBzG + npFHYrF4k6gCxBrxCLLo+Rq3FIiIxMEI3C9wlshP5c3sNGOHQ2QIUHCNSCHG/bmNnBJTgc7lGjQ6 + NSUGNZxG2T1BgJBz5zpeeg2G+tFVQsPJoVDdD8E3LIw5R8C838HsyKkMb0khswLyDLTX/hm9DO5S + /16uLbIZYC8Zw/1eiNchaGpJKAjKr82VMeKKbMMWxBWG1xRiqfCacU3+elv4JJovF9NoOZvF0VTG + 6XQymcbJYh6NllE6SofxcgpTgPjYFr53W/h4NJ4sR/fbFn6zh/MwfbHZhw/b+/PFcF726gofj8bT + 4fTYFX7tnH/GrvBcoeGEFNNy2myP7t6h3L2tXleTzeQhZGORe6WwINNGnGPnFmMiMdWKOZJSXqiy + LtlJUpr+XVkTF1BSNzWXEMk0ky8JF95CCfSvCrRTG6YsunIL6W+oXG4RrkLJFCoESi2wa46TZnhD + 9s36oM6ez4q+lg/pEnIWuduP8kEatu4EO8oxp6s6aE8MoLGhHJOvMWTEP6TTgVB8gVSl3Y3IyfQv + HkNxMZqMl9O7FBeT0hXR72BL0+HysGiZG++whynF087a5baiAzDx61apcgm6OysqlDtsDqdG8bMw + KXslNaJhFC2PYJkH0hhel4h1QJITsEczdqj+8OU2eRBNa9ewMpKT+4HpLJdhs1da4Ldec6KBCMoq + 43EbkEU/WqUY9loI/iiwJdF4urgG2ttr+5/a+eZ32P7nEx8dlhxkGbstzO9gAHBoZ67E3SYuTEwb + fY4MmKvYSqVXa2u2eqX0SqJJyFdYWToLM7OXDRgNl6PoCNh/GDaAH1wWBf6jORqBAxmBabYuZg/B + CLyRTRw4JJHco4mh28Kdr7OMc7klRRc25RQy4vh78cSzRLb/fvE89PsS9H8XaJxgPngLLUso5UIR + 4IHoTG4KaIfwJ7PF6vkJlWo9OCJmxTBEfawv14lNJv78huvYZKaIpneHiiCLhoxcxhLUkmIxrO+3 + F+W8tsTroc3rX/oZEaeydaQtBu+kHE/y8949N2AZbdDQ37ANNt0xte6CJgI8IICASvlrYygDnBKe + IqYZDe0RlPanBD21IRQgU4LkYADYwgIeg0EdLefLyV3iqeX2AorfblCna8gP3P62PF9+aD7fntLI + znpxVOCBCXQgCBNpiUCkTs/CjOxjSKPZYh7Njob0YRjSd0m+VVnm4dh3cDB4Zjr8UF5ED8GM/mh3 + sCvkhMKKpHICdwIIlNmAJVYk1QsFue4XxOMPxCujXUIpZMq3OW47w942S7zP16BWDN7Ul87JLMjz + 5nFYiMVoMryThUhm9neA80+zbDo5rIVYLM0ndwcLgSM7kysrLWBIZXD1rTDF61aNqVe5LIo6URq/ + Vq90sytg0dTsZSqmi8l4dBuY6Ggr7tlWxLLI5CeZf3bS7cmTfQ3FEw319c/mHm3Fk6/eib+JH3AU + LU77b+Jtyxjz65HmJTvyJJX2/Mnva0nmi4lPH4Id+RmK4kRsTV3syiiSZQXEt9DoElvOFAJBSuEw + emIktFQtSJqsC4GE8bdL9IvU3dyUJW4HyQlh908tEGCBAeEmQfLiUAkilC1B+YmGsKNUJGSJDIFS + iGCwFNRcHZ97QYHQf3AB6TU/TdlWlzr0S6kcsYwYKxg8sc79ibhUsMI6Ej8rBHQSbkbNZV0HqR1q + ihCK/2ONsgr4yJ28g4WPtcIim2ZEVCtU0T5XG6kxEVfCQHUrtcu6LvILb+U1mszS4CWRVdIEXRGe + RjzfIHgZAz1ZFAPxDr9cR/OKrJr98BCrbm3TH3c0bGRSYwExSQy3LHojfnzbHu9MbZNW+aGdWGpm + 1iHstZVVzEMdnJKO/BIbHERmZClazjG8IfJ54XxsEY1NV1xAWfmGLx6G4y7PeHu+FK6OnUcEfjcL + 3bRcmi/Gm+ND1Rrrh3h03KAuBurMYJYhtESI2FhrttSAb4XLVUYY/ADN6jwhjKip2YMg9WJzhRNU + ZHVyjgF3mKOAo0vDkm77IzCFbZQXzxSI0+7ivtYaUEHj+aPwpubj2fguCezlMB6qRxFvL+rtcn0f + 8TbOyH5OVHQ7IvvoQ92zD5VInaq0Mu4Ybx8q3s7Hkd08FGbrEqRmJ+VayfFRIE5G8+HoLnoEy4Wv + q+iPjn/3KzkurP4wus8AmOZmr717sljeCjwZDY+b9/1u3t9J43Op7HHvPtTencliUT4AgpZvsALG + VUTuZgcWw9l90yR++TY3HgPM2NQ62bn+J1gXK+uCicMo1jOo80rSf6gX6IKwJWlWWmpYxS5qpATz + hk8g1ALXA1+8eMHhBh8j1uB77R3cXZ5cystiBFOrIm27f4OuQKFk13bj6rbvJeA5bejm/eXJj+1f + fnnSzxJTvC0Fsl9ir/qVWK3tLaKgiWLpCqyvbbyT9BRbuUG5wFprfPhcYXxzKnV66vnfxA+A5M+K + A6YuiMeZbf87A+67150gJ7YTPwpbOpstpneypXo+XD4SWzqJ6sm92lKcm/1s6XSyvK0ZYnk0pfdr + Sj/IT5+2ufps0YEn/2e2hCxb7p9RDoWoQ+SUn0wWUTqfycnpGGR8OhrB+DSewvB0FI1H43S0mIzG + 8yf7ZJ2/lcjA1Yi/IRWBwbZDtAmd5svbPZ7h4Nnn8WLW5A8irgKZnyDCM+RGe7QtqFhywgnOligm + yOGuTVCSJmoEKlwWxeXMMJ72DnFAmHx709rNnUpPjxahlU+2sgRkKCOYT7CH35I9pPfYUFvDO29D + LhkRPAlmzQnyU0jtxZ+/fS++iGv/BbdIkO4vk9Un1DnK7ZDe0IHS92muXSILRPgUIen8tpA6Oeef + B+KdwvxwEPDF7HpLyJNJy/IIgSZbelRrBppLYynLK4WjMTe9J3xG6egu0d7mgVsvYG0lNbh2Jzzv + Jtf1vQhlUTFpI/XjoHMbTefR5C78pIsoL8tHkbGcb0ducw8ZS5qRvSz1eDKZ3wa1PQa992ypCdmB + +8VoulhMJtEx9j0U2BZc9unjpwcjyseUBpisXHPXoKuUFkYjMhakw1KW8gMkh3rK9cKWmympPTGO + KWrKIFIjKvWGGmdOaFH6ma4HIjYXXfzopSp2f23rn3gE8kpg395TT/QEaAy33AFSIPs1lwiRGrV/ + PS0cVNISCRtePjYX4ERe69RCSuhc2q4EKZkNiB6CmQqQUKECHl+AQfG5LXfFGnx4FDoYfyJYbFfL + 3I0ce1T4ufoKRwrn7ZaRkIFm2UOecWRpBUsl30uMVggh1uuCK8aqx6plpU5NSdkA5DVj3q12oF0v + DT1ieDYWUeyOaa9MihmPwVQP59Pp4i6melzKcfLbTfVkOx+ODhxej8/nH+/QHUND69tqdP1WH2Ql + NTXCdF2SaBRWDDw/CxOzj8UeTYfRZHhkXn0YFhuS3LzcGmOOpvpApjoandejWXz+IPojv//fX/+E + YSapIpVSyzVjeaX3aAyx1T5s5QFuhUGt5cR1gPy62mYSmSuFU4VKjN5hZRi+g3boJY3YoYAskpV6 + aI0NqcRiUBuDqB3fvAS7hh4deZ/3aMcKQGyTUuRNbFXamlm/NXzTH4xICmSU6nMNiS3G73IjVUHt + MZIeYsvQJ5n4IvSFYuGViB5bSJbfGrGRzveMqe/ANdt2/DTuxyEVP5zNl6O7yNiOZ+v8w8O3d7fd + 4nDmDudlL3M3GUXz2TGV/Cg4Dt8hp93b2r/U6ds3r14dbeKBbGI61I2apsP7YjoksGTyNsBJhdSQ + pMZ3DMJbJvJFEjvMP7oKEZ6OTuJiJZ/fdZG2vOF8xIB5dWXsTFFTlyjVorBw27JDoxECK9cgfqIv + D02f/XVmutkYZnMZRYvFZDqeJQu5WM5H6TxeROlMTofzbDyK58lwcWSm25uZbjiLotnwnpnpIt/4 + 2R9tQPdh07lf+0nTshcxHb61+ehITHftnH9GYrrKWaiG1rsDthVhyOES9cc2Fv3tVQh8xDteB3/7 + DltLvtFrpeHvUBkdvLqblEP7IHpUX2Y4Q20x9XuQFfbZtNSxEpOmEuWlbE8Y41GEa9NocadKYrQY + F/5xpCdHWo3z+7M3ODF7xWvRaLqYHKXaH0W8ZuW61g0c5aIOFah9mCdqel0S+1BxGqN1HKFRFNWo + Qsx1IhTLJYWf5RYwCvv1ECqJYDZPojiLo+k4TZPJdL4Yx+MsiiRMomU2i9IEhkl0DKH2D6Emk+ga + xcGhQ6gbLcUxhKJp2S+Emkyi0eIYQh1DKPHkDZSIGB0dTeaBTOasuoCLhxAc/fIEK3GqLM1Gxoow + lShOh00SWBvjJKUKBG4JouYBo0tqzG/hmAToYIJUVxrjc6KYUxo7+QkS2gJEB+IrtnYdBpYV6WrH + 4JESOQ4yC1A0Jy32ZyuVZ9FF0IRy8TmE9vyiEB+M80zOYAhjikVEkwkkPShUbBU6BSlkSjMgN66L + cyxVYicJarm5GuuZTuASQoUXhCChqBmqy5BYXQuYdoEQQGlF9K/Idx4U9UByApehiQPxFYoVt/NH + 3BO+TghchHVO1DVkuRyqJeLTMwAKH53abso4dAMJSY+dgPVSYc+nBjoHS5fgBkGWMGYksEK5Qjor + MD44kl6mP1pUTO691fAsbJETv3sY7g5ygbUplw46lTiXE1lFlgW1llIlSGhiKpXgssArM9qX7W2b + 0aY321sOaSulaPTglyehJntZpacTGoKsaYkSia+wo43v1l2Xa+ei6+Moso4Xk9nyLg6OnNm/F7Xf + YGWv+jfF+WJ+UPjv4lMzvfhwBwcHR3ZGss3IAIaCzQHti2qVyL5Lm4YsVt3mcRZmZa+QfTgZjffO + EB9D9sM6GGWSGuyXkOuji3EgFwPSoXwQ3E6vycp1mzY6Cci7g19xxwcYNDvEV434juJNTMoWa2OV + z8vdPk86RnjSJbZd522doO1O2wshOhYdF4IifazRCltjutvtUERIBkUkvR1BlDiHZnfr0KTaqsam + po4ZwEqHOfUJBuINsusmtSX8DwcJVy+CA4glIpmA+1IDow9eCLFDipu10EajibbKsQfw7Kd3L5+L + wC10+UD+xSXYsCsKs5Y8Va3cyjMoCkUtwkltN/B8wJK04a89XK/jfp4W0FSiq9HNIsu+XodZ0Xyg + 1F73iuhySJNErTlFQ91QSP4kniktyiaQXJVVQWTBYqNg+1y00lR4TRwF91ThV088UjxVVWWNTHIg + XNbN88t370O5kdHKlMqFzl6CTxepSFEomJDctgleLIk011UrTtuqfbNaszHneCVsGW5BZw4SdA0f + ga+xWI5mw+kdKgSLzYfR1v32ZMrYbpw7rLPhq2o+/nxng0Z2Fhb2CkLBLCRVau22K9ekGhpOrVhA + 9zxdybMwNXs4HIvlcjabDY8Ox6OoEayNKZtSHmsEh/JGxpmpkvuqEPz5msF6jV2t+IEKbq5liwAX + ldFB0IV7X5GZjwj5dsYFJdgJCb0lgVqSHGt1WPkGaC4y6TAAjrklqSGXp0JG/mDR+/cqQhevYYJL + MpekYRqQZkKWyHlBHTxGr8GiuXMd0YYnZmRsQkZR+yAcsPurJaXdXpdVz0gb6j66bs+5Mys1v14q + WcI0Hk2zaDKbD6fLOE7lMJsl42g8lYtxLCdyPIRUZvNjqWTfUsliOVyOpov7LZUsNrMyTx6Fda+z + 6nrl7aDWHadmn3IJvbkj4uyGc/4JyyVvjZfevLUmA+fMUULuUE6E1DN/MSvPHwCfVwsgAy6MtDg8 + bvvh8HhnZ3NVCaNjgzQgnNSnYFP289p0FCb1E5lycy3xgTDDLzf4Po6YczgeR3fIby/quv60fRxW + qdaT4X1aJZqavWLOxWQcHZPcD0ZTLjbGI/kece9hjepoGg5kGuY6Gz8IhewfjG9ToNoMBP6ndFwB + d63SGYV/WCcm9gYVuN9RIZuy09LBiaA0bJt3dAlopFsKmU62MsQETPYH7x1+1IANStdCPC7XZ6BT + Ide0FgPxIja8YlvvORovNkpXz0UyJ5XkmDTW/HDYIBUXjyQHOhxH17bE/ezRDbv8w8yB+vP8/H7t + kZ4M97RH0eiYA30oRddTdUxwHgzRtU4Ws83Hh0NnGFKRiDoqCiqDOREXBk1FqRwqbCq9Zl6Eb799 + J153qixhRzitrDEZc/h0yiP4E1mvl+KLLy79ukszfvFFK5664zuuXaifIkwqh1KyXSMGQwhXcJiW + vZabPAlEvZRHvSF1SSSHMXTiosQgdWl8pzeOj1gsEttUAWp1rZDZ6b0UxiGIy4Je+xxH4irFMLNA + GtHB5q6N7pFYyChaTO9iIZ1d/+F5xL36iBb1eZTLezWRODf7mchxFEVHpqOHYSKlLurS/GP3jb75 + e32jSq//2NbRpV/cOkX3akm/7tuBHIrqJND/atxGXUAY8XbPiB2lkVMfUb5Se4Qxh33+5qIbGsR+ + lVB9aq8iKlM02pQqgJQGrbg20eldvaunSyCfrrDAZPpd5LcbK2Gx05BgRMSyKopWUpxIAk86HbNr + 8aPygTaQEFBOPCN+RkQMbQHOMV/pPEiiXDIa4UY/mB2fE4KM0tq2xP02UBDChUQUFwNy0M0gfsYG + 6fdJ4RWhTY/Egg4XszvFmNUGlo8j5zkbbtW9GlCcmv0M6Gg+XBxjzKMBPRrQB2dAfzAnN1g+wuNy + jjSWLId52Wy17Sit8SRITU8ZlUjtiZ0v6J+6gfgpMNvjxUlL1BIChrkJ4zZKCzCZ9kIWbVaqLBDP + 3zOu5pE1xQPpr7IjezrpaHplj/EvCLCG5GnbrdO75/NeArWHW95dweeE2+mVArv4USBvcos+5opj + p+1aitJY4iukxiJZqE+A0uhBiRWZFenKkmRjZUKUvuRHBE7iFqmLqgHeiFrj20S5Amq76Y8P0bYW + TnhCaixmir8iDVofpf2fz3LvK/fl2RnoQTnYqnNVQarkwNj1Gf7XGZ7xf0Vzt+rOYVhyAD7JwmET + VwZbfOr3dYzKpim0SW/ibEQG6NCMRgDjR+IdTO+Ewq2rZTx7JPH1fQN1aG72dA/Gy+hIrfgw3IOv + sRdT4f73g/FvCDP57piSPlBKemvzcfIg1N1zLIb6F+IbrHfe0k7iTYubKdSug1TZHsi2MlssR2rz + GJROcd8f3S0qNOt59Uj2fT1NPtzrvo9zs9++P1zO58ew8GHs+++kTkup3xlrG2ZYPe76h6LNNdGo + MhfNQ9j4/3xzhdBhLPfUM1ilNQe5tOlWIunCv2HLJSqOAtO1PwovHzecu2hx3lyaepg5QLmU97vZ + 49TstdnPF7PJcbN/KJs903G8TEulFYk+HDHxh8PER5+2D4JJ6E/S4Z5OVDSyQAllEUNbq5IOXogf + ABNlmbGla3v42a8Ph/ucdlXdNdMXsIGCjt1BNbiRPSTdUAfr0r0M9+sXhNUINz8H7rd7ib9L59vu + v1ajxGSYU6IGvKcEccxDZ3jZYJmrVB7S54TbLCBdQw+Cic/LfYNGixiJj5zC2lpoz4ePdZD17tLF + yoVOQSIdUL59MC4kptLLNpFYSIudf5Ti46zhBXW9B8ZavDYm79BqMriTrtM+G7fOg07pycmg9nKp + 2AS5M7yooak3pthAysCXtstRearKOY8QG9nDkuIQ0vC7rbFoJ358x83x9BvHczjFmBXPgIiVuMxH + 88np3UcRxC2Ws2E0v4tZvykjdmyhJ7OOU7OfWZ+NJ7OjWX8YZj3JAVyNDG9HY34oY34+UfBQIKR9 + Zh7xWjiAjjdGecZdIssO2ipsaaOqWQyZ6THGtDFdUIxMzZaxLVYlwBEesa+QbSlNqnwzEK8D0oQZ + fLBfnco9cFGBdlj3K2WSK03nO48kQgkS3AVBbFEiG48qK2M91rWocx7FySDx7SFKe7AaPGNksRJG + gWhhPPslOciqvQt14hmcrxtaKAJ9DvVPPA6s52I5ni7vVIu6KfZ7mOasyExxr+YMp2Y/czaeDI/m + 7Ni0fWza/mOatl9exzUiCJNoyRqRKYxPOOwiUOZj2dJH8/H4Llv6TZC+h5l4nOS6vtctHadmvy19 + NFxOb9nST497+j3v6d9DDG5dw2vtYW2xR/W4rR9oW0+mS5XI8weRenwtZMmpqroixDvmGLEPmqBy + l/d8pdfs979G8D1m9XYS96VJwWpBmTSztrLKG2GRN4xa03RdxmBDBIRBDcUlbQIuWBTxDAbrAdkS + Cje2hk1KsChBSrguvEKTQ6zlLWSQr/88gAWdNxXxr+NlWCWSMoOPs8dssRwNF3dKo9209R+7sMlI + 4dTsZ6SG0eI2CNzwaKPu10b9mCr9XW3ro2U6kGUarXU0sw/BLr0nWQbZIJIBPySml7yNaVrisboJ + RMgmbStBFJ5Ayz3d8k6fIEibmB+p0NIqX9zMj4zDQKkLqiYh3L2Pu3Z4FVmICjNnrXnpnYx6GQa5 + qxFVj81jpZJsQjfKBrEGjXk6LnuVXP7RIC3zWgYBCgsJVp1MJn569/Ls63cvz7559fW7l1QVYt5L + 3/JqFk3bWk3aHm27W2m0MBVo4UxtEwh2WqDQh7RopKkn7ccK9Lt33w/E26IOM0oD6vXlkfEkemjO + 77kK83/GdpNLQhZqrVkRpP2Fi2rcqecG4nUWTPsNgEbCL6YSUeqBmCUGHAZVO6npgZr6Hovpnt6p + PXySjf7w5rb9YIz3nzPEudnXdk/Gt9ju633jR+N9WOOdvvr+VXW03IciifYxPAjcIuI1pOa4rxVn + ahuvlUWohzclKTIRlUiWQeIhJZPAlphthKBV29kHMk+fwJqdDAFqNGE17WOtwGPkV4RmN+ymLqhS + VQjlnzLHCbKIeYMRpQeUsyLjimW3th+cxywTPxDfkwyCF+9MIe3PSqcuiDuVraFu9RW4fBXCzi30 + MByEBFFerSU93fscmVC22BT2NHCXhUd7HIZsMZ3diefEf3T1H177eqCGjOZmL0OG2lfLYxD6QNq0 + ExiNouFR4PFQpiyeJ5voQZgyqbltGaETtPtfot0Iv6CmIKHyXlB/8KVeYOkIECmDXhFpFlwBZXKo + amGNy5+AGbkcCPFaSOfqYJ+Uc3XIYbb4TmQIM6nryxFRrEygEG/VRsnizEIhvdpgyzRIRznT2II8 + Z4O8BRQIQiCkWqM1S2FtgSGYoQ+6axyjR/uZ8q8ELZHiFgKzF72RK8+YUGqz5kAcMacpZXcpnI6V + D7PhramagRA/U8CnEHLJNr+dQoyZ+0QptRUo9khZZD6ie5wtjvP1UwyksRe7jmNIhT7tjqPo/Qee + OQipY7zmrmv7Iw7skdjlaHqX3PCNwMUjJoXMMk7NnmZ5PLwtN3wML+/ZLLvhZmxHa31A/hT4O9wk + B+ZO+eqd+NsODv9gCFPGtqlGDyNlvKPDQLaN5jYjhQnIjrKTmh5kkCDm3gq9UTpBU7GLC70RZMHK + QOpRMk8KRpAY5Eqt4ZH02i3Gs+HkLhbjpn34gUZy6lOd3KvJwLnZy2RMl8v5bZiX67nKo804rM2A + YpWBtcqb2DTHeO5QRcUqTqZ2Jh8OvzMGdJrh7hUYDEyelY2DIkPGx6JOsWmN26wDz1MvpgsqtK1p + QSH6HublhLAxeCbBY5AMispoBPlfW+mqXcmrd1qbIMxJTSAwM3uQVtQs3aogATcYMOf0O8oyJsYU + j0ndZrEYR8O7aK75c7Dl0fLcbHlwbva0PJNbg5Wj4RFHsOURbHlw6/Oy4P1aSGvVRhY3Et8jRAPt + zEWiuMPbdTBHfPpe/3cgBUYcfowgFw0MVWnbpNtWM2IHTMF5a7jw1TM9KjkjVW4kePTGFLt0InY6 + o+w3VIAVMOzFfi1yU0GPQhms6M7G7azW+C9FSuYp5Rup/pdx63gCNxJaWrV5JHCORXSdKmMvC3aT + WXh4Fuy2WxzUgOHU7GfAFtPlbVzF42MV7J4tWG4a8Mdu5kNZrelHoz/l6kHk1d40DOX4WINjin1H + gQ2SX2CEhHNLOP52c/9a2i3S15SPg6YiGk/md+Ea/FiY3wXbsGhifeBd/aZb7LGr42lnpP6erZRe + 0Q5RrNL29a7wbNzUzFmYjb028uE0urWV9xiJ3PM+/vOfXr5585e3L384buWHktecuQtzoR+Ewuar + HX07lsuLIpQ/sPAfyJkQzq1CWYRZwzOiKUrbGOMF0kxcUvm6xEEbUBHKedAeJVhaqwAE9RsMBgPV + wgjiGjuGnfAYsIR6PyB4ju6XSOsNqZ6IsnZ0JlFD6XQgvoc1kbajBZKJNa6Vk6m1tw2d/rFWXmQ1 + 0lsIWrqPIsaY3xUybs7T+Py3W6OoqePJYa3Rjbf4+9aITjsrpVUfaqnlKpF6pXRaJ7DKAFCmz61M + tjIJSK2SszAj+1ikxWwSzUdHHbGHYZGI+FS+1qlaH+OLgzHdLkbJxXlSP5C6vXhXa2EBmfQo5UVv + lXb0b6T1Oek7FzKGghSaE6NdpaxMmhNRNVaWKnX0o7c1gslbfPePRVNWSmqxNqk7CfksFAsBkYCm + FFloJ8bOrhI5kkg6pYMN5A3h9ajNKsNk17+D1oCC0dJqICCaFKXRplA+V0lvYHROqtpj3si1SkRc + FwX4HYtg73DlUOczJahcIbHa9Dis1WI5Gi/vYq2yD7H7HayVWTb54fBnt91hD2OFp53tXvCK5FqV + 824lyX4Uaq1M7VZcf1xJC2dhVvazWNFoND0iwg9ksWyShzveuKd9pkF7b7ar0Wi+ioaTaPWdlRuT + HO3aoao9m2i4bdbLQ9u1Hn0Gxk4noid/tYWW3M95qAS+Tu74yWpL2AGlWaBDVNJ5KtNQtIX9uQ4l + oqTm9qJYrtF8bIn1Fw3KFjjksiDAOY6vsOHXt43M1gdKXgztiGqPEQOvuWup1moD1pFMVrCWBIO2 + NV7FiQ2NR2r8xD3HYIE+VzrxOohoKTwHAQtSM/Nvi6TThuQnlUa5zwKnIa9LqQOaIVNrbAhGMcza + DwgmUceIvIuvSmkKU6Qib5iOxKMC9xqHQ0pdEK5G3dv47purF36PQHhsHC+pCkZI8fDccIJwjco4 + p2J84ITxfQ26HO0hiA3k19HTTHMUHUOJAmZUkwtlNn6drEGWS89z/aYRFck0YBNaCrLlFQ4IQ+W+ + bF/Ja02KPm3BrBi0v0BPApxCaTcQP1OPWQk4oao9rGVcLimKxzIfHR5eeu/yaRAPQtcIkMIRm9Z3 + OmsD8QajJlQ6z3r3xspiLqsK9K6YyP/dLat2KCfdZcOYNDi3ezBeLUaUEGRgrxyF1UmlOY1cSq0y + QCpK/E660YRblhKLS6RB3j5HIbmDPmQdEmp85568doJ4FkmkFZfOQHxHECBmoSQeanfCbQdMtymp + GVE51lpf19JK7dscybXp5wXOlxaZKdIT4bfK7T4hcmeRDRM12BBodCJq7VXRm2vm9iad2XBZfmAi + QnAApQu6Dq6ukKGT3VznbaDmNLYZiHf9/7y0R1AWdwNul47RYNe0NgrlicRgg2QAvv0U22drGb9L + WRT4Uniy2h6M9rO55q3iBrlyuRzhLjmZyigbzcbD+XCWxtE4XsxHy2SejrIpjCbjeJqMo2WSxtdc + XqlX6E3e7LV0vu0te/Tv4jDfh1tN48FpRCFC39zg6NzgeUfL2fRqOTTFBavXtXI53GKzcTpv9KX2 + 8doLdzH8HZBYI+nG/rBdI4W9OJ99vttOIztTeiVXKZRkI+mLwMQSUPuR0m4FZRKhD1MoChjPwsT8 + iuN++b3No32JTPH3Va7SFPQtnvsD8u13h6FDhg5Upi7oxk+6ub79nNbXYxaWY9wgnvityWVZmuTc + HeOFQ9EmbGemGE6r+4oXUJO2QwZLUUnrVULqvRbQZUTnBb0u4uUWqGihQazxTb0Qr5+W7IKziUcm + vcuXYOBYLm1pNGWjsJdya+w5l1ZIJoOZkFyhSBUWkFlPe3FKbHsOvwsWGAkYNE2StaFls64Y0GWh + dXlZxZ6OdS3ZUKnStABxyveUdao8+iJKZ2DR2bGNOOWMmmN94LoIyifKCdAEj0NOwJwkiC8RNPW8 + 6Ev33kp0bJj7iefG4mVOXxYeWn+o83suXW2bm4KuCRZLVZJRahgC4O6hUdiYdHtZmQUnugDRavVu + t9sB0xwNElOehT+7s3Qymi5mp8NodDocRdH4dPILF7TwveNL3BpM8HEvKqrzFo7Cl1Ktcx96WL0Z + DH7dp5ojHGqWjubDSI7imRxPZLycZIvJZDZPAKI4ncr5CODoU32GT7WYz+/dp7Kj+negeoqK+DfU + 7fbzqYq5a+6QCsWRnbXf2EpRShQXULNKcqn0qpSqWHkrtaMYiECDZ2Fi9vSpFvPl8OhT/UP6VJ/p + NJWYNLBgji7ToVymmcs3D6KX6x37HeRnNKa+MTXqbRMUyRJTxuhMtX7A2soNJseIVSOQJ4pAmEEZ + sfe57JqEpfjBxIApM8KcZEQLgn7apeSj+PJ5aNBiVvzgN0nKmUgrMgUF+T0Npk5ScIlVMXEU5ySJ + 1qYbmRSLy59vwlnBg5OUOqVMn6sxI4qCMt0o9a5JmcJWAdYaOxA/2t0EIUTH12VMpVRGzuwIKLlZ + je0v0lo1N8xMANfwLJaAjhoWSXvp0hLc42hJm41m0WhxB6OdFQkMH0UiBGbGru8vEUITs08Fc7Yc + DSdH8owHYjWPJcp/vBLlftAb7Dpugf1kmAIi1J0DcwuH4qKMnSmQpB/LHJk1miqNASEz6IxeKy/6 + pfgZ+iYBcx5sG38GRrpQMYNqEruOs6/UWnwlMS6W7vJdu9om1VlDeWRH4lEYc96xSnXJjmuX667y + xRf94sUXXzAnM8b4lE8JwB4s8rGozQnWoqxKiJ9Sp7saYq0z6XNTSvwPrFtmVpZAOReTUe2LfAkq + 5BiRKpdgUMpxPxXHXGU0XooJrnGQtr6pvoLzSVW+7hpkrtn8uvLGSynsTYego9qevwFNzMy7IrRV + pbEp5j8yg9zQp+LPlwFQPP6fDKr7vAVtcc28MqQUIQvxqkmQNvuVcaUpzJoFY0Mh6j0VovCH9pLf + kjez+/0NOhw/IzLLCeyGtZUFdl7wr1+Zwn9CdhXxlUUo8u68l0URfBbWZTXEYo0Ltipkw0U5zzp8 + XITNQrKFaoTpSSu315/ky6+WSvYxNOaRIIdno9F4dBcxo2xZjsaPwplJ3cft9h6dGZyYvZyZxWQ2 + HB6dmYfhzMT1OldH9+VA7suH+bR+EDqryDTZehCdZlAv0R9AECbrQv0g1R2aWyh0J4RD7akcU1D+ + vbIGewpcd1bwTbxCIrCAf2CL2B9BW8EIquno3hA1qCJUze7ymDQIt2hrGWh1WnAVAarYESFAGYlZ + oI1PgptEXfRbaBMP/Fvtg6lGkAujURLDTDatc0XFFa8s7Kxd4A0Iw0SXjOsmPD1QQOKtOS3lWoNX + rqRxhkkZtI9/iSUHC0oJgl4awxqzBIMrUSbDItiVYCispE6yU4F6rbJIRVCW6NN06ZrwfM7XWUYP + qDSKyjs0CgSzQ6YdajiSIgjN91h66LVml/0XwTftZYTIhJKKVFFQAU3W3pQoJB9LdFExgXLjLCAe + jLwJBkM5zAi9xnRPt2iQL45SNRkV0v5KL8BCZRyVw/7zWVtEWiuf1zEVkLJCIrDnLEt9+pzfm1Nl + jRuEw0QQ3rmUWq7Ze752O57P+La8E1cMUa9kjdIdBEMS7EkSahHdJQ1qnceGPgucFRdu2kkE7z4l + vHxlPEucWDSnshDBpWyZVJMur/TdlRyY5+EUJuFEVctUy0+CvLFhJC4ste/ar5FyY/yd8RcVN1ws + bIeI/oDyvVwV/gAB6Ea1zUomrOIiuBjBQ2CnWbkuWmDfhNBjH2s+hgb9k4nBevG1Ss7xIyoBK6M0 + fUqL0XI6/1L8Ug+H8VT8K/5jTP8Yif8lou/enNkkapfjewpwkB+ju34B3tEHE967+C6k337apd9o + 6r+pk0Kl2NsQnub1jhs3Bv4A6C/hW2nfmyvMNohJ8+yFVotSOhKINvEHnF6cHd7Pwje648ZFiCcq + xwSO/Ov5wZO2TptTRfdjjUwnoH14kf+BcYOvtfRAXL2gxWtqB+QGPi77hlXTZj9db70xCE7unogE + bU741aWypO8xnMyFYQoZmfU31KjD9KrAaRLo+nnLSWm3wdRngzLXtCE/xf24vxXTEt3tZSW2lMiQ + bg07FTr3g/6+3umBc503Dltz+xzUUfkUYa5UcW4xvSyvk4W3RasMLx5YoOkmjyE4mS6H0eQumdYb + 85f3HZzs1dZ44y0OF5zQxOwVnMymk/H0KJ39MIKTd6bUBrfDt/bY3XioGKVMLtz8IcQoPxjP3Cm4 + 1XOSsbUaRNiPzmxsqNhG/03RgaRmdnbFQSY5i80MLgUb0KGRuCOAe/eDzA4ZLCT1b/FULdabrV+V + G099ju1QTEYByvWaHuYx3UkvKNEC9Q+Ux8DiGbvubQuBeL7L44Y7UPuGlQkZ7TboaRFrlCr2qvuP + Sio7EF/VPojo9NUDVBaUfUqJKJyTK3lexSx65EERz3PRZvHwsj5nLzYo7tGNwmg46c1cBMyLBrur + /Mo46dYFTWhI8T4KG7yIZtFdbHDazD6ah2+DKUM4mo2X92eEaWb2M8KjaHmbhM/saITv1wh/bf9f + eUQIHcz8LjZDvX0Q4uY7aEwS1Fad4fKepXhKdTJsXZKEG6nE2xbOSzY6MTlHv8TKuWuS4qbKFGxB + SSUI2Bvb9OLWd5iQQqXzNyaFYiDEjxo7I1HXPAdtStBYNqM+s17epNX1aU0pC8OaVq4G+zfBbkLW + QG5POFGDjNYW1pTMqronSA01PoYYFIV9+NrobWyUoUSDp0owKs+eXr02T8EWdYPwJhb/yyBg/WON + +UQWciUXQ8HjkFSfzmbjWXQXSxiX3j+KUllS2zi7R0OIE7OXIZwOh/PJMRo9MhccjeYfylzwMqcu + nnPE/PwLt1ZT5pvKTonRGaF0iElHcQBFqeBcUvGBc5QirjXGp5lwUElL1ZTW6LR9wzVllPGcNXjO + 27qKcsE/nku0x6LPIbDtgW65mcdo8SxkUQO69k9yS/WITlxdWpBsuVmXZ7Scj3YZbM/VC8K7YMt/ + rbH7XJ924S6iYLtQFfezrhv+hCLPrRFxge1Y2CyERENFoVIGi5Rg16GUwJ1MeCcN294JAdwbalWa + YCVYb7TqU1tQ4DT5rnxCm4hIlSwhaBK17U68z/eHMxAv//3lyWV/gBT1KOLHZiIVykW9swb9aaRn + SMVLnMT3YRLx2dq//yRTxdflqZ1gm7n0XRNaf25kSqkCLH6ypF/ogL9xcEaT7hLOfiiq/slsMVl/ + wn+iF6Q+Qcp/PrkhQYEeTGghowpBQXDmjMoZIW9BKB+X265vDi6/goDYNiRmnxtLBBhNGBeXQ3aL + o4UV9SczZGDkre8AW/+7RU3ZoC470WK+riwKI9bWbEWs1mtM/LTYqf4avXUc194JzlGBzh1PSqtF + efmWPEHu11vOFtE0W8pFlKbj4RJm8ULKZDhOhuNRImUqx+M4gmy2XB5bzvZuOZvORsNFdM8tZ+ko + 8394Pmc/L/ZTvrb36MXixOzVcobvbTk5tpxdO+efsOXs6CX/s4LnAWEpOhX/oVWmApLlm8qgS5xQ + iT5tYcZcvg/g4+CzXYIex8ylzm7qjsjo0unonqNWkGgPGTDNU4tpqIigp6dILV6T9WcIgskG4l1H + N5RLF9BLkIrKQqIcVjRMYE+6jD3/1lh0NayCTJSYsWJghIhlIQPIZ1ddCXWSrpZCvf5aq1wx5IIe + A02crStEbSEom4KOyijt2yLV7ubfsOBan5WKGwiuFGyoJtTKeFYcGaDfq70KP1MWbHedypIPhEPY + HcMMTOzjd+4e/2kgXmqaXePCLXce6i7ZBvxYJ8hkHXQRvvjiYy1TG3jOvviCxKaD2DbOTo3Lp8Wv + hUYFazifiOgzoeukQDE4wufTS/+eFkSqdk2DJPx9efW0JFMUwWVGlj1F1EK6UpKGHKRtmbD1Rtvx + 0O1OSJMci367loEJ/4l5opgB4VGk/abz2WJ2B4cpqdfL+eNwmBIT3WO7H03MXmm/yWg8HB1FH44e + y9Fj+eM8lrehmIQVnL7tSs4Rd9qlLAbcmBXoKilpRUkiAhy2vKEhK9UaFMRBlMEf6WUpegJ3bDJO + ruVsLEhrA353lzXhQQm+WW1Zghs7zoTHY+OitfWPxPLMlou7KMcl7tPHi8dheYrq4h6RFzQx+1me + 4TQ6Cp8+EMuTyRJZz4kY+GhyDiUeN6phorcffk+Tc8OnsBdHS5Jbg6sHrNhFbZJQfWhXLiQ1jQdj + ImNX2zS0abSip+pSV/Alk9IVArgEwwEkhpeIG+zQiAmXWGShNly1SbF4tePfxWYlHIjSAQa4I8Zj + 2mPZE0W9PJobBxOKOl3KPzaYqb989xbej90j1H6jXODaprYIq1Lk9DO1G9zQSE+nmtpTyBemrkfm + x0/WKznEWJagnuc6TMsl+SasG+wAMshC3hZKYnNB0TZ3E2E3BVtgI1p72ZUTcJITkA5ammLu2Kgr + sNT0FCaL5wIzAn9nPvghpA6jl63wILZaDAL3dJ/0h94LYHalD+phOA+2im2pCMdxNbH6sQlKxZ+/ + +RqrnD+pJEeQzrfQ6FLqPrkA0uroxELKrOFVZY1MckzEnFAhEVtdoJRMFY08AS20NLRlMTaXBODx + mZFjIZALxEA+Vk9dPrSpt7cOjXVdJZR4FzdyXePUQZIabA2TMXasWJkqg27Xhl4G9029dBTUv218 + LtfGSiK53vG1Yz2WlSmaVf8v7a9Qrk4Ckfbl9dm1Aw3Ey7bRkpoWS8Q4Xaao3q1MibztKgWiWHy5 + q9i6XlLGc1sddtcAdUoSTTf3/BRb2RBbPQwEEmlyIw0+BkuH0ZeBXXNEDMXLPTQJ/pVkyfC79QQj + tl6w8sauEw/pHGNkGWg+1sYzpyP9y50hj38OepVzSXQ1XkTL8fx51+ljNVhelDyDJW9AXachNSx9 + AHtOtW4eWGicQkhaBVSiPmm7obC9UAoPtuQHo4smObaxaai9Shz9wg2bW932cCnNibRUUgGfmP5x + GV5+s7EK9Ba4GCV1c/Gc8UaonKiwqE+fPDWnMZHEFvvxiF7fck8cVrqIRF+mUKpEfJB2bbqxdHRV + AV2tPHeMtWRdYis1gQIcvjWTZcyJtTGJjBG9xm1uWqCLX1Z05Bal6OQGD8OkHHXtSpYL0k1YPEY4 + 2YTFIZvuJkg6GpoY6TbSrmvyP7sr4Rf8KCKJ8Ww8Gk/uEEmMJ8OP298cSZiLej0eHTSSmG/Ar+vP + jiR4ZGc+h1UQsFjFMm4Ko5XUbhX2WGPS1Tk0+AoTqDxGEjQx+0QSk+lsdi2IO0LX/qBIAkGu6w+y + LNUxkDhUIGEWkI3l5gHEEaTqwmQDGlr2KJGxbClWzqwL0i+EUqNjZCBvEhhzMl8VNkWxxUUlY8p+ + eUhyrRJF2BlCiEEBliHRaPioi3qHPUInqPZkrdFfe/m6pS9wqAcT+IKofGa2+lFYlGg2m0/vkJua + Nws7q367Rfk0m1XqsBbl4lx+GH6+RaGRnaEvJFfKrTLp/MrUvpIJOoG1WzkP5arK0xXCtXy+cgov + EGZmH5Mynk2Gy9vKIpOjSblfk/JvJtfvkZ/DpbJe57iCj5blQCmqqU0yV1QPoSryM1BBBIn1ake5 + jq92jqPg7McagnZBAGTsImoWZssNR2kLilhTDrcYtsvRcaYsab1lO8gvRrYtEhRRqARYLg1SVgQz + cimz4G3dtrJiKBVSVRXW+pl4Tzxj6ECdNh3dnXKUMSogXYdcDV7lOf3TaN87j+v4PdbC5wPxF47c + gsBDVtRZFihVclUYZ6ocR9alCPB2HNxiAK9KzAFgBIbIlACPcSfCYeZDun6aJvD0nDDaAiPCLXQM + I0S4Qw8VtixG7EbDoBYn1yZ0KGOibslyYL7To3CGpDEanKYTEbJnll/5YiC+VqngBGBVmJQam1KF + SnvsSDAfSXp1TFcvPBBfm5A8zLDfecvX59wVcbHs0CvMcKK86015DPinF+K1viGdqDhfJ57xpGFK + FfllshnnVdvQ/pXsS3o8fxy+x3C2nN1B7fzmGPFBRrMuXUb3F83yxOzleoyiaDY6RrOPohHrWDb7 + xymbdaUx3PtTw5wXGEZChug/I+TGqJREXBEb6CDAIzGtW0i9ruUaAtWHLM5D2pOT2eSHEAcuAiyY + lBgZiktVKGnblhFvKpUQa1XDyXHKjZPp8AqliPSOGiQktElGCiGafBtOvK+DlnmpHBL9kfiABec6 + orTXoXQWMsYhNUx369LGnFemUSpbNCd4tVRZ6DXblE0vLxwanZWzgDdDTkPsYWpEUkhVOiw4rNUm + FLBKripWoW2K304oL4JFaSrCo96eTe6qYiTiS1esq1aXE3VmafAr1GNYBZhtVwKwkNZJ13J04S2U + WDoJWFtujLKKfDukEum8pbCZt4W9yhqU9NU9Z5ASFT3lUGlFgU3dlTVMN0hlouCO0XRzyYikr6hE + yCUjJrmrdbqrrHYu1kudYhFI+lUonSFfmUUZ++uFDrnzB7ldLVwFm/u6A4M0l2G/CpcuEa0hcBe1 + h7kGRCDetnDTyg23Dg6ukFCIpTx/KFyEeynXY20MVabQFJ9CIDKk2t2FKmVbnZMiBajaEhw38Xek + 3e9ymSJbXuhkTPBTocrJltSVqYhZBE2O9y1FjjY70vLu1YUx7j4rbVq4MTqWJLqBVc9QE+8quViM + AYs1V6zedhJhmSRQL7brX3g6set23GmI6I4hyGR4hs85QpnwyqG7XSkcd6ud3M3rdzkJItThy0fb + xwWd6/X4gCDrFmxHP3qleIjU7fjNOXKZERId1uaqNGntRGU0aIdVSOYr7YYYKBPog+IqFQ0H3ymX + CXGorSQvrd0aqOSlO2ABfolG8ybgBuJdWEiS9KnoUt3uyB8aK9rxa+VFKomoiMMdt1t2YaJppfNJ + BU9lP7DETlpC9AcVusLwN4+F5YAhwOJYwEwwX0VOBAx1QR/obqGtvNEaVsyPH8bwLKk/tXuI80TI + ildGEWS61osXz/kZ2u2vezCOj5L2q5fh3t4qqdcFIQ/CMTg1TKyIVeZtbkoh/yv6X/F/ReJfz/5V + JP8V0UJY/ax8vtrdYAstjKEtjK/4pa3aN4XI9YJ5KngsrMnMvQdXWwQED+HyihGxBXnOVJet8EBR + 7GSswyppV4Zqv3Gmw2J6TcRFtIF/WPt4qr60pvDzJhwGdSmwijNyDofzeCfdgljhI69Ce+aOeIum + hL+X98Rlj6aq/YivbNvc0sqsYe27R2UCLGdSXwjGnniQrVtZciy1GivKywX3y8YEN46yBOlqSx4D + NVJUZgs2q4tO6jGU+He7GY35L+A50YA3clKlO6lqsn9wiYE/rIDWfHVkLPycsXTqshF6z4LhrZw6 + ugehkOx6Feb+2bgOW4sgC+xSb/qU/x31GhGaWLi0i2XSll1iP3yGHVNMu/pDB+1GEqPx1bfefX30 + 4fGORIvcWG7uYZMuHZl5r3QdjCIpRoQ/ZzV1VASbQsPcbdLtGqC9Bf/WLRaWYyCuOezm4Cq/u3xq + bwZ4mjw2Lgnc4Ex6qZ2EJg0pUFnOARlkzk9aax74pSEFrqcT8Gog3jDna3cNtvSYA+MaiyyuvWOa + zLghH2Zn6THlVsCO0mbnHHljikt4BlTC2rUvbfsewW4j55YZg0+w0+7qLGVF52PFB41x65PxfrDz + xaRY8eJdEamAESv8hlZ/54oBAnHpY8M5SMKbgmAW2Sfdpep41QBboA4Ts9r5o9fQMfjRr3hxhhHx + uYx+QOHWlmP36tfIWq/BEYoJO6KD/63Y12rdFytpudOW0HtI5cP+T7A38jol41FSw8mvVkmWWZJL + fmHkezNfAP1/pjaXrjXQvsEJjWZiSzt350nKzOJG85rXVw8bF+jAt8aS6UcG7l/tZx+PZvPFcDKF + LJrNpmmajJMsyWbDyTSazuMsnUXReDpMx8d+9r372UfT+Wx6z/3sN6fYHmYycO4vxveXDKSJ2auf + Hd/bfHTsZ792zj9hP3tmLk7LpACTHlONh9JQnUcJnPsHAKxhbOmPWRYgpT337WOtPPRg2dw3DjYU + 4L4HhI6LqvYMciblhGbHVsNIGbCuj9g5R28qQaG04PQOxOuMQfboQrPEvDWmFPhaEYdTY0KojdpS + YCZGhGeTuogj0h/WosOIpeWZoqol3ehR1MFGo+H4LtS8849Rer75HUyfaZLqsKbP6JH7eAfThyM7 + k6taq481rKpcOsDeME6frdCPxn1thfmpVWIb52VxFuZlnzJYNBpNrvWEH8tgf5DpwRBClrU5FrkO + ZXnGUH48X9bRQwDevBT8VQv6qpm3jZLi/FVjqQpbgcJX3cJMEurH6XA1haqwj2aLATFS5FG2zHWp + X5Y1MjsKfLRXGpAEF7sM/ud/cun+53/ErhhGkXXYoVEfiKj+rsA/MU6uVUHaQ98Zsy4eB//FcLGY + L+4SYJlSjWcP3srcdoeDGRmaln2MzGgxnkwnR33Ih2Fk3sgLVdblKzz0aGYOY2ZGH9JyEvvkIZiZ + v4DMT65qFbZSKqjSx1t4Vy8gxtSuQq6s+OXJNfT/L09acxSaXDvDwHWzLlFLfZ5UUYEsU5S8KZpH + Yy1GoztZiyTLjtbiurVIsmxPazGejY8hyeNA5h2TZf8YybK+tRiI97VFQFTLlxDigGtRANL+uZO2 + /scBBO0HrhfNdLAbLnZ3vepbybGOZpRFoT7WCEZHqkVnCpWKZyqB54wPbAu3/U7uq6PZjcNxBqyu + MAkW2CiE21I9mpBsARzjc6Y7RHQIx2CB4I/L2p3AVgU6rYu65Koh7SeIZMfNmHOB34FnvB49Eubg + DF9ZJXTN8GxU7MX7B+2Qm7J3SEnYskpoIlEkG/0+h0vRIDct8KC74VGK8jmnCqk4SM987ZFvDg0x + Swnpr1cMRzM5Hco4GWWz2Rwm49F8no1hMpGz8Xw0TaJhvEzkchEfK4Z7VwyH80U0md5zxdCM8ujh + B7SYNtXex5v781FwXvYrGI5Gs+HiNicl+vWK4Y1+yLFk+A/rJL2DEskGk/cBRHV0lQ4VdrtiWH6y + 7r5EZF5noTkhJtxPoHcif4Lw0eITWLPzS9Jg3vvQuPC3p4jkQeTSpeuRWgZfj/wivBzizJoYTjoc + 86DvgciWWxK7tRGNrm/K3jKCSWiCzO1+RmAXsuyk3Rky3Ujt5RpRiFaVMmmYRLrG+ZFJI56lUAW9 + dYIzGeZ3cihW875rNCS0Y1ZrooXCYz9eK5KSNxKImGPsDmzxxzLJafO9aUxM6AUhdc2z1R5OrQ/t + oUSnU6yx+yEvw8yjrXnqWfCndoBgT0RNdf0PcEHYtx4tY2/g3ZUJpWlr3V5idxcC+lLtl4VMbnto + yo6sKWuPi4Z01p0PsrK/7o8tJ/PZYr5YTtLpaJGMZ3GWwnyULpM0ms3ScbKMZ7NFKmdHf+wz/LFJ + dE3Z4tD+mN5cROnRH7vmj9G87OuPLRa3qbzPj+7Y0R3buWOvpP3KlLHP4WtARsTmSHRxMI/s4zKd + ZPflju0cjnHrY7XMly0Ga821jrbVAFkpBHZRho4J6hMyzE0Rw1oRurzHT7llHlRW1nOSGuaoW68F + Z7N4O4LJi0YkNXdJcDHlGjDs1217mqbjZSqHo8VkvoD5ZDEaz5J4Ppoux/EEZDyHdDmP5PRo2z/D + to/G83u37S6JF4/DtlfNR31/th3nZU/bHo1uzbVER+N+NO494+5ziKFwWiXnBYyWy9HRtB+qLjUc + lnXdLO6pMPXFFy9jDMMT/8UXmPH4c6dfq5tTPChwEZG4VlVIZBFP8lAi6XQ0guVXVhRme9oDWaME + rSpUbFVdBhBdT5CVYAyd2hM3ureNuJRD6Z09ED9BKe05NpN2BOr4XSH0AZv1UpWQMhb6Eqb2pyY7 + vXTz8BgJNcPnCnNB2mygEGmjZUnNeaHIFtrrGi5YbZFXIaZm5Ji2P6Kf7l2ZBmvCVbBLDQt4MlVr + as7r2OiZjQn9I+QEs+Cvlp6+fv/q+UC8Mpr+iE95bWShrJdCpjR3fmIbpklD519qqRV99+4KkwRC + yvbxN0pe7UEEtQZN70YYhL0MkDBq9+Mp/YiKLjSGk15/YX+VVCgqVpft3LpeXsZaKAIZBPOM6fWp + Jb4qunQg6EKmdJl4sOg5JMKpNS8L6g7Gr/iUpqudZ64EUqu8Vl7Jolter7lZMG9XWZKjrWQpGBIy + 2zGHE29A56gwiZijJt12xuku3krtEGQjkLAb28XlCTcZIns0bIUjTbUWJYpvqZTuXPim4v5UQBYQ + YwfiT9x8S+RlgTSj7dlFl5ZIVahp09eahvHq7Z9evvsmJLIMs1dbK+mYABHSRAxPWbQ2xXflGQNX + P/FAXH+vX79/xXoAXUqO67NXX0iF7xC/bWNlgQnRCqWJuXr79ftXlOYj/nGVXHsnPyK/NnYj445s + kEiBFv8p1UwdLnBrvElMEZQE8AtRpdL02HDhwWq5a9TAqIILwdpbrKIn7Y6hPgVyclpoeHG5ht1a + DC8EyVqwKKxsUpekWBw4K7DLn8adYIMwCeppagF2+A13tCs0h2HB09ciUyZ8OGE6t6SdwlD+puXD + YgV1R8GCU8bcOfoym32GkwenTn3CNyaLximmoXWtHrgTQKsU16wkHWtaK62IAHXXErcdCgn0t6pr + KAKjBUlKar+jzbMGcczGMn/AF1/89e3X34p3prZJj9de2gu1GRi7PqvS7CwaDeeD0Xg6Hw2qNHv+ + xRe/rvicjZJpNJ7H0TiK5EgOl1EcjafjdDHP0mQ5nA7nk8k8Gx1jsP1jsNnyTvlVSJWnv4VAbjZa + /q5R2k2xzxG0R9Oyb5AWRcvbCuKT3xyk3XjIMUp7rClYpjgomv/Qge1g9blx2pMn+0ZpT0Cvn/xx + YdqTt/nX4m/IDgJWycJ1TEt/E+9qm8kE2l+e7B3NPUmlPX/y+8ZzS0ibbTa6r2QtipRIIjeySHf3 + L+LfELHWZ2gJktAtj5er12tw3gUWPmT+SYo6bX2daxh1/FdZa+UxPjG6px2FHjspVgeqGgbAP6XI + MTHMNogKUUEb6se3yERFsHakW3EV4uQ5C1xiH9UaLtW6288+0OrYM+nOW06WbWD6YDavCn23HlNZ + BzjEA9qnRxyBO0dowJZYToifjGSuuqz0ns9EcoIyDbRLhcogFLXJh0b+wDYvfnnmB+L1U6p4o7tI + jHtYJnfnzBaIQ3RbsOzXg+PwCQ9BbhwHRdaSRnsoyDOlYLUvehRjQzQ9/NMt7PV0NPndkz0diDeN + yAAKyvkTYR3m5z2U7H07gO7GSJ5YgKR1Qy/AK19w7Hb91REXEbNEd0Ph14+eqXJKE+0Qecz4yEmh + knN3hmfTFYPKEaNEf9Q9cClSmZ1gN0bKsA1il+5WQmi/6EXdjmGdlTUxs1QhnY30ogBkUyIEK9FE + MZzgshzYu/ffvBGZgiIlQkTxWshkx7XjcmmZnzJIeN+0DIl8Dld/jPkBDdjLIYtfr2AMR5mcLGSc + Acyn6XIyziI5TOaQJYvlEqaTSTIczRbz5Og97+s9z5fL2Xg4vOcKxgf7cdP8dt946z/G+rAVDJVX + ZfP5zjGN7IxLg+6SC7zq9hhUwHBmFav1agurRGp/FmZmH/eYXtz4SDBz9I336M/8dC4/lepYtziU + IvmwvJjfl5fbZaHUgPeXuDBr0laMhtHobDg7Y8Ci0uvTjhbuVOnT4M6iuiaFDYPcl8WL8l9H5Ij0 + RRvpSFnKtfykNFCmi3ANlIU+DRvZKTXsn5Kax2nY6bp7tIiEUxzTcD4env2qXY+X82wKw9lQjpNx + mi2my1Ek5WSWDqfTJcwm8TyLkulkeLTrn2HXp/Pxvdv1j2b96e/Y9Rte1P2b9Q8f0yK9T7OOE7On + WZ/Ol/OjWT+a9aNZ/2cy6y0UQZz+saZ4OIT5LIZYRtE4zqbTZTScxbNlFM2nw3QYZVk8W2TzeHk0 + xZ9hiieja1v6wU2xvpjpR2GK53np79MU48TsaYon0XxxNMVHU/x3TfH7HN7YVwD/djTGh2rEHKkL + 9+He2jCDVg5x7VtTI8QkSBAGUaNdOSHQul8SZKk74gcP1qIeJVaTiqCU1IkFYP0G2fH1utObCRKX + yu7KVCyXozudy42ygQupRvCVcycCJ4vQhAhL0kEMKZdFFkQuCc7yM17kNVU1OCP/umtiQLFG2Yop + sHZk+wD9gSKkrBPMQLxi4H5iVnpGQX4wMd3tB9h6o586UcitE89oEQc8H18f6x0G6xzPr17OQgEb + ybokknBUKrkmiSMLRFUV6UC8wypcAFDy4T3qQ5YLwQdhURhAA141wgG1jjKrBWuMEodIZYxlIYFG + 7HjAO5r/X69PTLIMklk0S5YLmUWT8Xw4TONkhsmM8QjS6XQxzSZZlh6dp89wnobR4t6dp9xV5w++ + PnHbHQ7pPOHE7Ok8DcezydF5OjpPe6iEa938u/17mJqj9/QbvKdhMzPz+wTiYHmfsLWvv3rz1GGr + YozW+1XLDOEUOhXRcDQbXEp4oAQlrq+BikuqalzOYyi9PmM8/6nR8OupjGSyHE2y8WQK02EaRcN0 + OlzGIEfjaJHEEaRxMs9gvDha48+yxqPl4t6tsZksHgVa4IMcuupezbGZLPY1x9G1ctDRHB/N8XVz + jN1JL7XRTXmklTqUPb6IP2y290Yq9T34p460WrH3yDYsOHwDXxMTS5FCNjZ1WYqy2yYZFMVGWeEe + QnEgvlFBwC6o9YaDuQmJJCyBaKtGxPLkd6K+/uoRw4H4qqH/YPiiA6u4X2co/m9ZVv8br9HjvUIN + QHqQb429gbmzB03dXbN9lN5tgzIiP2/bPYV/Z/1OJAh1wlVKi2dBMddhA5vKmoDdVNQU+csTkvhF + 3Z7a6iBxaVBGOvNIbY2UDnSs0q0esmB9H4ZX4sALuGjFQaV/PhAvC7rMCeo5t+OjDFFtifIKr30i + hkF+FqcHpGsC5dVA/CyVPwkagpRZoizNv4gfSQB8bUgA+Sm2o6Wc4PJbVKgk/Yd5NBT/QjypmHk6 + Ebc/3AvRycDu/sjPi/BVJh/rnUYso5duiJSvz3dLgzChlLqSfF5IS21QTB3XYxAzN1o8w7HSwkJb + SmRdQegC9yZ6EKYUDzqGnU5y7xqoR2p80K8Oyqw0B89DSg4B263oKMu9X1syr4UsRSIr6kRrPxN6 + rYEWLZzR+3JOxCWaM6IWu2Ahz3Y4Jx1AuI8JZs71VokyBjHE5x+hMKny7bfBVG1nriAO2PaC1K6H + ayl05QbVVulERDfnt9ZboN07wWcZiO9bFG87jwl0QiGyv3qYqa5SH+tf6uEQlvTr/9/etzZHbhtr + f8+vQLYqx5LPzIj3y6ZcrvU6ziq+7fFu4vLJnFKBADiDFQlwQVLS7Fv57291A+TMSFpdYmtil/kl + WWtIEPd+0Oh+nsUCV+v353QzI1uxYpj6F5iLeTPkftiQME7ZOmSXzy7XG9cJGNntmNcs0/wfl88W + OB8HofeiAnVeO3wzd+YYlTxvXfwbG+lMmVOyryoMyQfqX1RmddvCgiyfvbKdx4XjVoNc43c25cBG + p68FOZfsfK4hDltxbLXdRD7pMHYdYvDBM0lVZ/2wXO/3JHL0XevI5TNyLtUQdA8tXBA8cWFCAe+b + So5JmOO2cYQO33aj2NpohVXlEh3Z7/q6cWnIoPay6jdup4B5wjonqroVLDu2swR2DktNI4zRBqqi + nMr9mLO625Pg4q3ESmr1R/JSt7VkxMBM2KIIAonjGh6/wAwLTODeVS2DrFwFKa1HOBJ/ff13GFog + NEaHfDMjBeicwfiudEcujUbxecwaPZ6RC1kYm4rtpuJ3+hL3qO4aE/KoX1BitailWNxR921oYykP + O2DscZsDJgiMCe123xmd0lzSWiuXkjA8BP3oBGC3jIqtHlRdIddZrSB/vZGqPd5T2T4XotmOC611 + r2w+OzIvw85FbapJ+5wsgVQSDSce52xFaQ0BBauxLoNlherWmoN5A8vxSeuYunGXdTK43F4MDK9i + vcYKiavO0IEBerClODVnRFiwMFhWl2htk+GRIclda9jMaJTBHbJ3oBTMthkmJfjqkUPBlsBh5b91 + knl212h1dSH2NgJd7m2llW7FeKnioAEIWcCZ8DZKSZw0r988H23qyzef302mWOSRlwRRRuPUK7Mg + EklOc+qJJM9EEYdpEHDIcpwcEA93QGRpfiNP98kdEOL8ffjbSFdoEy89pAMCeuZhDogszae4xskB + 8QAHxFd9Vc1PkUWjkxcizG8yy0+OiF/IERGvyg/8slgdOrBiK7uBiBlw0WzAFwAV//aafKvNCk5P + DkM4yD7Yckt0DHgd/+eCGgnHrx3tEMjwJAOYeqWV2FziycDK5DrEiyELSJAjIIMUPnaT21oTl0As + jSMTgr8paoxL/21058hTBpISXdrjwoDQ78QJYRbwkodRzFme85ylCYu8LPHjOOZ+xuOUIVQoJ5zw + CJyQ5MmhiRnfcVYHv42LCh73V4fECdAzD8QJSZ7HE06YcMKEE37POKFVFiB0zsCi9gQt9IX1BTim + ZDy9Dz4CVume77B1AGGDJpQBpReEYM5u1UuoKlQLc67bDkkQRpEHF6x5o2RVGrplgOy0JU+QHZJT + 0AsqLStZ6VzTwgC3AZCUoW8OfFB3ew68okgCBixIuc/KvAii2I+y3BN+zqIwKPOipFE6UTU/DhGE + ycE9B6y6ElPowm2IAHrmoYgg+jgP2IQIJkSwlcVaG3F+9nYtzr5fGXEWBd4ECJ4IEORtL3jUHyyG + 4Sc42sPx3N3NWO6iUVF6sOxramqtZAvaU4q8qOkHrQZPQ60rwfqKGqJEj7diRpRwP6UNKQStBwFq + LFqo8Y6i7pG+1+ygBEOBPblbG1SXgof+Svu2Jd/JKylI1xdIvAqM4cN9PN4LW3pRZO5FWEErqI/l + t8KLVdFUAq4Ce0MVkJYaYasHuxqpKRd3OxJYlkYB+BGSIotC7qeJyFiaJp5gAUuyMmERT3g4sYs+ + BjZEgXdwR8JtxvjXeeHQZdXqkLABeuaBsCEK0nCCDRNsuBc2vNJyPcU6PhVSWLVtlx/MbwAhJ7CF + SOAsp2bjgjWAqR2UuZSubVgCW4tatkMw5FtgbByyL/GNT1qiL5WlcpzBIb5A2QEXAgYKChB/gwSJ + cLJ3JOi7uZRO2cmVh6FtwMG4IK9vvAVCny6QCl+QDcTq1IWuWtB+AMtHTgmXHB0arpa4fF3gGlYf + g/QggGOvBhCiRJmLrOAQpAMNXqqBcOI5/scXb97+8OLl2+coC46owwXHvSK007UTllxVGyaVDXuS + 6gKoOYGdnwNtZLjwydcoy0ANnb8KZoQu1ZC8YeXX17p1wuPjF6Aka3Egam9DTn9wcgq6ZbrZzMZr + Gvdn6DXHC79UVHL71ujXgUFlY0Cri/bBpBNqZGtb5Pjut6Tz4zd7e620VM4/BESkDlAyUoLEulBM + OlVNCG5CanvRDvmjNsrMiBU1HPJyh69ha6nqlmroQKZ3QwFfLnsvLPw5/LqpMA4KGiGR9LS2jJtU + kVdzGIo5dQMH3TcgSjs6sNkulRVkwCAq29mN0SCTMGYeC9BNcKWRndJmBGQHNGUC8m0pk3xmZw9E + ZDodBb5UNim3hkBL40KP7Hc+3ozW9pSNWfz7P0iFoaDQiyBrUDcapUf0Ul2vAD5jpyDpG61IkHlE + 1Vi2i2l8g0F9YzfDR4Yvg0AKrrylssIEfIi1HKoKBc9c9rZjAx50VFCBg1ZkeBJqhnUapUjc4CAf + rBvYpRpERj7SGYUTJoD4KGylS2du63YIdLVrxconuCHDQLoWIgapWapacBCFscv4W9GtNW9xFb/d + m9ktuYTwzUaYnVlE1nK1nl9Q1ruUKtqBa3QJuhhS4aRtO0gQZ2taF0OUm2uwgPeoC1WkpIAaNka0 + cFJaKl0SH3rL4ynxvWUfBH6Qkbqgxk4PLhrtpCAwbNIp41Gy0hWfo1njS9XK6kIYcklLiBSDybUd + NaYrXkq1cvu5Ij98+fU88uMvg6ViZqMh9Zscvelr2elak1eCXmzIqeJ922Es+alii+PhlEdh08Gt + dKnavhjEPzCmFgL+bCtxV1sMexpWvDECcDBsPEtVVvoSPMI2kB4eGQ6FjTYgayKNVkenp6fHRF9J + LsjRGxDHeVFxsPkzst5w+C6fEUY72Nc6sjIU4u1C14WxBwGo62PYY/1wkQ/VcbWBE5Jg3TC8PvmG + rAB1kKKvCnvoxOrakyztjLxaKlp2wgAywkn0hQ1XdaM70jfbCTAbFvtOlOE42Y9+ELAbz8h/rbo/ + 5/mfjm0HVZRhfXB03/fUdB+siogga11xmFV9Aa87a+otYsJqDJIUsGDFlezgSXHsog9tWv/e/NQX + Qs2WinYdZWuMZoWI7moz0BbYKT5O41pf4OF9rY38oK02zFINY0XJjRVBCoETxM5d+NpuKOpSQUNd + ICOaIEq+ngM2cpJITPfQXEQa9hhcueeW6ht6Lto1dPm3mouKhGGyfcgtlgsNfoEK1XJ6Y60MSPQs + FYUQR+glXN1G1Gh6is3QYnFBQaXGBt12JExD8rWLSIYG7+0Q9lt2Vlyf24Tp+bBk1Wo0XbMd+644 + eVkFRKuBKmJYRgvyFcbVSiuZtFS7UbxuT8MuhWZTidkMu9iiFZhuEnkx+XqpeI9s0tv9wwkQQX3d + uhyqgn0Cyjhg8WA7KTYY1dxCs2B939jmaCNhV91YaSFbYlWJys2jpdqbuA6PUMu20a1FTYbkEhCg + uZJArlltSEhYvVRWQAkDvMthYIcaQy0w/Fc4Na9VjzugnUuVoOdLdUErazLH6Nphtx3Wxc5CJShA + jhHLiduGl2rYh2Pch2HnQwqM1vZoNyDUl1XwfKgYTh1Eq1jYUvnPM88V4z8PPM9bDLZmBE50mIwM + hJVcG74w/bkw5FRdCCU1+ert6Q9LJx2k7TqHOBx7nQaeuMpmZNgv0aLVpsFJXGuOC2mpkOAMeke+ + 7yWffxfM3UZdSz4vYA7ATVtvIA2E16hPJqqqN5LDZvPty7fHhItOgEfNzlABikHfnf6A8+fbHRw4 + I2HgmhxkS9UyyAHBNm732wGxR57nYQGJ58Gw29fcRFkqI1pd9QOctlude8aSuL8YJxNAIygIaiTN + iHHsl5eKUWMkWMO+wx5WRDc2JQbGrgYfCCO6ZTChwWl49P3r72fkrz/+/WSp3thxmr925Cv/AOmp + N2DXv/2CBJE3I+XluiZQsSgjO3VcqmNUfGua7elngMKbOSbyWDocCab32lf6C/jE8VI1fd0M86Lp + q1Zw8h1//tOLv5KKgq/2xpuoxUeX6ge6Id/QgvixNyOvh/oFC99WL1gE5MeZxWgF+YyEcUxUPSMl + +Yz4Hnn1YWY/h5uI3RM/I25kQ6La43Euw+7hHMRihGJuy4EZ5vZImAJcjv6FpbJuXdhtyMvKnZUQ + qY4D6Oyp20dgS06gkgAflyr3SA25ZdumhaT+8Xhx4xw2Fo5j4BarNUNWcMztHeKKyfGb/+Mf+cfk + v8kb78g7xqn1Pz78y/0FDzoFKI1JPI9uMyTwcOs2hG2vALbdaZY1J65naEeCwE+hYUdw7R0k2DDa + bUctwqYRu4qHvVW4GdCKrm8IptN0VMKixst+2xHurGK1DwYEuVRwMOu0sdinlV0PHWCN8tADr6Df + tnuJG9dvYSsymI0Cr3QUt6FhL9MlCQNi17zNX6ul6sGqvQDctFSgUtauh0/AarVt2Fmzs50xdzvH + OWgOSrVUoLSi8Hh4IYwaj0LfXt9O96CdrUjoLVUt4dSDhzj0b6x1p/FAjGNgz0fjsc1J5EF32rp3 + Y3fuHSSHqda6RqKWxv6JkZrNUu18bfek8ZF64zfReu0OebOVyx66YjjMyCt4EMd4PD1fOzND1MbR + aTMjp6cuRe709FQdzyCj9eUr95cXLxwWABdFPdpV1MQbxg0OVStjV/GeP2A7X8Y61CDrYU/8cKKi + 51aPBOyHtWlStH++VircGFE39vZ4gGlXg0MDFp+xSoLcactYnwNs/s634A7w1kGC8iLw6aVy3YwY + wAj+nGReuAhmJMvw/3zfixbZjPhhFi8cUPOj0Ft4S7U1UNAA6Mc0SxcRPJx78BI+nObpIiDXnoX+ + TtN0kcyWKovDseQ0hVPS9Yfhad8P4oVFZ36S79k+u/1th8wPvHSRXC/lxYvAdkHfgA+tkrUc/Riv + cE+od6bMeE4dB31EYGOPureX6trOUMEUwwWUR3utgcqNxXRrydzaLXe3P3dKGM1xtyYgu9mtydFY + 0vFWwrQTpkZ34l793LQZ9l0ENHYOudUSxYEDYlGU7/bl0d62viO6aDf9KItj914W7L335qPv2d2x + 3e7WMC93+otpUYJkCy7/3EPEWfjEDna6GP/g7cyjYIbSmeidEtVmEfnkLXUIsMNILTxh2v5gkmOG + KcUUzaMkXcRYpDcS0zmpK7u2jodpATe57p8AOcku4kSNymF23BhQOy+cPeucMI3FeN4iiLFl3iL0 + SI2yRhDevXuWWqofrxV+26Sd35y1+KmlGr7lOzgZeR5pmls/BZKlcBQA/xa383DcgQd/KTh6RNvt + fQpb+WrEPOhWaoxw6c+QP7i7Dw6x7GhMnKt169K91dc6w6MRunaKzfZeXFJFvBz9BRcL8qXnHwNo + Whlak4ayc9C7igLyVwGjZDa4jmonZ2pXWmvLR3unJUy5o1oqWVObI70VGR2D8tpj5zVaqm10vktL + HGbONf+YOwx9EX7z0+sTxpp/vP1f1FEd4Lk2sB/rbWiAe+HWz8P2rhQo46JrEq28rfJsR7p1RHhM + a7juop0YvM870H9bR3R3rioxx16w7ZFiPCCMbmsw/cPZ7uWbL4/eHp8wNocWnZwM7cP/XCpsIaaG + 7zx9MzQBLkjtKh5yioevwo3DIHQMNXyx9ZmPgBKkXff95+BH3jrQnUFz1Qdnxs6bjTBdb4ohRx/G + YamO/vH6bXB8fczm20FzkGKp3vRNow1i4kH6ghx9ZQTCm5dralbiGN2nAw1V0xftgrIW2ba5lie+ + t/BBWwP+9q5hlei6hc88P/SSz1e605+14yfmkGB6d1JolEReUlBBgyBhWRnSME4Yy1PmpSELiziI + kixIp9DOR8VoeMnBOSLzfvP+ZxNsX3n+Rfu08q63feEB8q7w2klFC/AlarM525oGmDSlBASzOsNL + 1cEUnLheeWh8hu9NCaFTfMb98RnvaC0Fo6by8ilK44miNFRydakPFaUBxEKIUW5KrKJjoTOiFhg6 + iXjNIYULMRtzPeD+z0VRXlK8tAUekB3+C2CCQEIUl5mxWCxcaRj8SavPUYMUwAugOSDxsZmp8FfY + 4PoWbwD13RGXRcmozzOWJomI8zAosjjNQs+LeZnSJE7yIIyYxyaOyUdY8zSJ4oMrV/lZLn8bEZfG + o8khIy6hZx5m0dMk9qbUzcmi32/R+0q2og39aLLnT2TPP1xp3zuUPX+LmhB43wCi32JLotD2cGrQ + Bjyvls6OdgU6lECfGvjk9D3H5dgvw4wy4XHqh4nwc1/Q1IvzwI/LKEqDKMxyEU0pDY8xsLEfHzql + QX54z99Pkgo37St2zAPtaxx4wWRfJ/t6r339Rl+endYNZV2S+ZONfSIbW+SljFIR/kdUqQRbK13p + 1YasaQuEooz2cMnQN6ST7miMFzxKdC5g38pEtXiTPN4TIbfBgpDvLJfRxnInATmyvcGE8g3fvRAg + tFqBRV/Xo0jUTWIFK0DlCBg57agtHAWnLD2tJcfFHAW43xq4mREx7BTE7zmB05gleVpkNKYJFYJz + T4RlEWW570UsERllRe6X4USy+BiA4HnRoakSbs0k/HWewKtQXh4SIUDPPBAheHDLPiGECSHchxDW + /WqtINB9M8GDp+JMavKrw2GDTxwnIrAjuXyZ10IZ4Djej/OAGI1ujXkPshsIpStBLwRkNJBLDaqH + CBHWG3IKcSalJUEsRAUbDgCJoWTaEt1A+hYmy7zUjVBrugLFANGxBfleEQgFWVPFZ+M7rRB1a5mw + qU0ZoBidUW0IBuYX8gM1yBZOG4sRkOFRI3f0flPaGfBAQ2ikjY9EgnJyKT65wM8oSJcsqbGJlzcU + JFubk4nh2XDb4D68IF9BVFa9wfROF60E3JRjd7YungM/11rOKIBFI7O1FZ1oJbDCA5U5MH27MbHN + WGMGYYm9M+RD3NY+ZKaG2AoGlOsgPdFXHVVC9201hsJgmg2Ghw5dNxD4F8M9y04rS9oyDPmFcELd + ukpKYWMwTwlt27620S1A8Q4hOdir1cD+75Q8LVAbU7pcK9a6saId1Ol8SpfyubleeSC9d+Qd+1qq + NvJq0JFw9z0IHu0reud5GzvoSNw/UhLywG9LUuJylCDFyyYXL+3+djfYLAvhs5DnUREJL6BJlNPM + o3FBaSESLy6jIiuzuPAmsPk4sJkeHmyu3/02wOa6bNVhweb63QQ2J7D5C4PNVSUUJFh3E9x8KrhZ + XXDufzgU4PxOO/0ocA9dUiOcmcfgsFU/KPoMv1pMcINbu3UCPrKDtOGNsCQRFtIAitkXZrnTNmdR + GtK0zPO0oKJkGc/LMixjP0zzmKUZZSzIY69kk21+uG1O8jhJDm2b2/N19Nuwze/zsj2kbYaeeZht + TvLEyybbPNnme23zSiNXjZJrWcl2Ms9PZZ573+jilzTOt6zCwTa/grscR0pNHZOUtbPAEQWXReIK + NObAP2D/5fIorMybrMXnNgO7rwnmd99teQWL4tILWRn6XsHDjAuaRX6ZFEWQRGVZ8jQRNM2iyfI+ + wvJmQXZwy/v+/c1UgX/D8l6woHxiy/uOlv8OWzXU7ATyDHF7Pev0GT1ru55vzhqhm0qgATbAQgW7 + C11RkJE9cT3zQMubhTeERybLO1nem5a3pXUvKqW7d5Sdw140md6nMb3hOyNF0cWHi9OQNfAMiJv5 + DShyhRcWDVIvMCd4ackBZi5nwRFdgPGuwdkOyldATwSH6Ata9aIln36670//9NNrlzE2OV1tCG5p + ohN7ibpQEtNAzeOSLMeAiwUhP2IlwOFfuYiNnWsaq47BLEnKLUUgRY/i21xLtzMQq/RlffIDkTZI + lEq1gvHCXuAoMzrcgdziMABazr5r+m6xIECkuaYNCh/bfoOSkZvTqt3q6mLQEu+24s+YCPy+H/rh + AuVXwUhLBfxZLrPEXo1UwvW3TWyGUBXFLIPmlwJoQPBKBVlAelYJashXfeuuQ7Y+DtsBd2OoJI5D + QaOCpSIuMj9K0jJKSyGSPBRZHORl7LGSRsmEoR6BoVI/OXQiiWyCov+NhLHQXB/SewE980AMlQb+ + hKEmDHU/hnI0ErUwQZROAOqJABS7VJvycEof1EWmAswwZJyIxDFqOMZshBOskuy8oLID3gkiytKF + a9y4aKgxYqMCiAG4AwlPx6evf6kdowX2oIUDLVZYvDG6ExBTq9EoWPrVS7oZ4iN2MZVTVrcsQbs3 + GhiYC7oeW6LT6zW30SNrCtTeKIGuttBxV1GMDBr0UP49IbNJFsQhC7wyCL0wj0qaC+YxL6VxwWnE + UhGlqccnrPEYrJH4WXBorKHO++q3gTVkpMwhsQb0zAOxRhJ4yYQ1JqxxL9b4vqXn9EdZTa6ap0Ma + /oekO5ybhmskgNhGDUI4KdpgFPjYcQy4gMs1tXR4uyZ8LaoGgzCHFBlheX3hEgYlOXoAF8A7DeyD + 4N5oO2ojQ/FdskMhC5y+fceAe3PInHV6Y1YpBEDFNhHnc/Ijxk5ANq3lFgM3CgCHSlwNhLM2FnMr + AbGDMLYlzfayeIDv94JWwrK9+//t+5/5/t2CpWHoeX6RBiLMBA98FvpZzoswyYui5J6XlkkUlGE+ + SZg/BlJEaXjwwMjbnAJTmq7rmAciiijzp7jICVE8JE3X8L9RNqGJp0ITUdF03QFZMEgpTdvd9D6g + 4I2otbL6GMjo/U8/z7P/OxpYJ4VaXMpz2QguKTJPwn+dvJW1AGriM12euVLPxnuWM4qToq575ZwA + x+AG4YSiL2EgF5Zme5ux6zCQCtRFjL6w9NMgqQH3NFLddm11itm8EDqCiTXbjJxWrpQsJWyTewLn + gDnsZVSrbaAoCDd0IFQG3UkH5XTmeLxA7PTCKSVQs7nbgxEXeVGINIwin4ZJFBaFRwuf52HoBynz + E89LkzAJxQQ3HgM3kuDgtyW3pdL+Oj0YRVynB8Ubobx8KN5IssmDMeGN+/GGojDzpHw/IY4nQhxp + k0XvBFsfzoex47xwmRRoattN24mayFZXWyUEAXahcQmp68E/gbcGlr4bDPLNNFmrYuagwN1+gKzI + c1HC/UHORM69kgV5mIR5WJa0YFlc+iJJSxpOhvkRhjn0g4OzccjKbCY/wC12GTrmgXY5DCY/wGSX + H2CXv6Cr1eYVlWbznWzayTg/kXF+//6D7x/KMr+oLEnEKRJqnUvFIQ5RoNlFi2sjEgqBlwBlXyGN + wQ0irbtt9Y3Ahc/JtxuiVbUhqx7INFDSnHa3EHSNn19pbSkUuMCzPEhtmn7V3mPoWUBjTss0LsMi + ShkPM5HFZcLy0M9DLyoS3+dBPslYPMbQB9nBia9vvZmfDL3rmAca+iAPpgP4ZOjvN/SnZy/qs5da + N3Qy8k9k5GXZxKsD5Vk6kVa4da+l4qTQq1Vl9fIw8QBpp7Zi0fasXm126IZGA30J2tTA2+nKg+3v + E6tNYSGD3smLQEkxp86my+29/a5E3DVp4ZqCj512kknQNYUj/UjQhKkcW/Iu0q61PkeOqnZGWir5 + jCyftWvZtcRQxXW9fIYFXEKEAK30Dp2oNITTzYK8YWujYVVhygajnbsCAYQhOBFXdBBrB526ytFp + CVJW9NLKHdLuGhnWIFtnxCcQnykUBERum2xV5zoNZKNOnA2CJplWrOpbFByEKwkUct9FRI3RTLQt + qJKhrjbHfJdOszWFfXZBTochGeinBh60OynWlKW/WMG2tDcdBtk4bTbj4A+lrHf7iKqd1llyrs4G + vUJKTjtk0pB1vxKY4QKsYyA/XslOYJoMyuI2lIkFAcUVWboOmLkpt82ZARM6ih3a7KPKwkx5MVC3 + Dx02KOHhBAMas6GkCkhjy97gtdClsGOqh8ZB5g7+Yt+fke8NW8+//wFEydmaMCxilOqrNi7M1sal + gKzikFWjWiZ136Jo4xCyg+2xvYV3WBBBgz1Umt7yk9nJDgVjV/4gVtRg4rtjMZGqpcouNVgqOwvE + TgwFgUEuALgRlrmEC9FUGyteWWjHp4tEbG2N6UJuEhjJJesrG0NUyBWhSCvXbrcFCVBRLMipdd7B + ROo2hOsGtf+k5sNoVxCujIa3w0s33CpwKX5iBG41GJIMkUuXsuLwaajySkDX332nFpVlkTAI2qGp + n3kBE3lORZzENORZJvKEZkEZsimL+1GIPjp8BtJtjGG/zjs1lpb1ISE99MxDIX2UTvwpE6S/H9J/ + ++GcfqjlhOefKvfIq6/SgzntCgjQYd2yDzw/IkNszuXl5QLhD63pin6QSmCEDgb7zGEDmrsNaF70 + surmKJo9dzvUfFRMdr63eeAFvpeG3smd9thLi6DgiR8GnpcGgpZBFGXCjxnzi6wIU1qUMY/pxGf2 + GHvsRd7Br9J489772UKxhzDHqegOqSyHHfNAc+xFSTiZ48kcT+b4d2WO9zNtxBV0mCylcH6TCwlk + G3BsRoOdtzvZLbp4B6zp+Jyy0aaya0WFTpCCFkhtAuQf1ky0C/JGk41ANhHZ/vHuyy+RBZGfeXlR + JCLISsa80I/8qMjSMM4F99IyKtI4n0zzY0xzGB/eNNflxW/CNDO6eXdQ01yXFw81zWE+cXVMpnky + zb8r0/ydtpocSF4BNy/ghYYUF2uJ8VrAnqLnyHoBsht7xhyeJTU15+2uCorNn4EH29vowuGCpITZ + QYCaEYJmYJz0Bq9IyLVTO5ULu/UVlV4tmK5P4OB94iUnlK2lgLSXeWMEQxAxl2o8qA/UZYt1V1ef + 15/5d7Of8qhIRSRSnhUlLf0w86IyzyNR+n4RBTnPY0rzeFKofQQYiHPvxnnvycHAbRkev0owQFtB + DwkGoGMeBgbi3L+RsjyBgQkM3AQDXwhq4jzMJzTwRGiAl2ln+vZw8a6nMwLZquSl3VRmt8Wyym4I + piiFqEYVuJWuOCSVrhAHSFVqUztSK0AVw+60IH8Z1LoQIcxccC3Gu4LyGEAIJ/E16uNKF9mBKmJw + ia5EKW1UzrqvIRYGCDmQerR0FKVA0qUb4v/p7gvzgnOfikjEZRQHvh9EQcSLJEmDKE2SKPfDqPQT + LrLJ8D/K8B+e86II23gKgb3N8Idt/FDD7yWT4Z8M//2Gn2vWaSMqbmT30TzJyfz/bM7z93mtDyc+ + C7ryoPYO6rOdI7mcQVAr1xDGCryVSD6lNlsuiltpLFun5imBiByjFm1InIMNTOsKHPi6dMGATDQd + ooQLqfjAbAG/9tfVQHcCZcfU1nsUxQRlnhA8FXnhszSNeJLGZZyKPMt55sdJngaFV/DJwD/CwGe5 + d3CeTNoXv/4cFzza5+17dkgLDz3zYAs/ZbNOFn6y8L9LC/+TsMH2Sv/ZHq1d7PmllQnHdAzrVQdy + K5QYA3Vw0fWgACKqcs6NhNyLWtsECchqNRQTAiipdNui9ru46oRRUPLwvOWxmJFLSPxAeAE8VBiF + bxMcIFlhtSFH0uqrg+vA0lxWtBXm2H4J3luJvVwc9x7MwJmVIbWZJQoSbcBwYVbHQJmBSQNvNCAa + xDK2OjvloFB7DTgDmTYwJh+fQfyy0phW2xubHAROCkAgKzGkH6DjAZNIBNrCXeHzoVrQS1B790XI + nRG0WxDMxPhRVJVNO9l50yWT4J/FlWD9VqpdutQjQVhfod7V4G5BdDXX5XxAV5BXAoykLiuhpGYO + ySXX80HIWzsXHFKDoncb1FADdf1StI3sBE4cGJZPbMoTR1GczditQ5tvpzofIOKQOgW5D6w3YE0h + H8Lpzd4N7piXsiILPJ4KWnBesiDz4ixNGU+zOEtL7hUxeHQmcPcYcJf9B8CdWvu/DXCX9V55UHCn + 1v4DwV2WRZP7ZgJ3UxDH7yqI4xt7/bJFahadkRqgnBIzQvdjNkptbMjkhlWiHRNG2w4CKDEHGIAB + pGj2CIUsUlmQ19tMY1ZRWSN2ARiH6RLWlMOlDfCr4xVQTWHn/rgoyt2mnccsDcqMxtRPaFaIxPOS + kkZl4vlhGGaZEFkYeP50MfMY057+B/RoUxUXv/aIjP/EvQz0ywMNexomEzXJZNjvN+wvVCdxW5ks + +xNZ9iL1xIGISX7SPZyJLaNIIdD5IEqhUEr2ci0UOZ2RTusZoTXpDDKSWIYBR0a2Q5LgXBbkQg6q + JbqEk7sBwoWK7ngO0LZDVMYntY3JMKIRFE//l471Yks6Qo6ABAFM0AcnnzZmbjSdZO0MXR6ibY/B + UdFoqbAg3XeWeuJLjV4dI2pRFxAaqpE4pGVruCICzwInbQOUFJRsQJkVfAaXmkBdiRNkITCKDm+s + R9IO5d6u9YUgfQPxKQaiXOHnEmheRhoP9FlYcg+oS2PEhbQsD6AFq9AVZj03QISCPViBBTBGsO5z + snz2lTbglrpWDniYls9s5VrZOanazy3/iXXcjCGzQBuyfQbruLGDT82qH/1RSqu5/TzphDGyA/oR + 1LKrBZR1udZQLFCHGMu+MQyOJauv6fkwD6zVtzJ8EAIM37I/46T5TsMkhMIEcq0AH4lrVzf4fIwg + nwKDhRHV5lNyaTQwzA9loStMqHZwlm3fAa2etgFvEfxSy3YnUmjerY3uV+u5VJSx3lDmKEp+0j0G + CXWCsjX5lCr+qR0d4mZkS2t7X7kgp4qUlHUz1NzB5wdMi2/gPIXLSA6uO6P7loB3ChlSsJ667IQi + hUF+lrEi0vlOwaAzrUrJUQ6YDGM5miurwlOItiNNRRl6Od9iNX5cy0qQb1wlln3gBwHM5B/QmmG/ + v4CI6OcEmtuukUyls0NsG2tHzkogMzFCdwrd0FF2jjUEuSOcm5hV9RekMsEDAIweONXcz6BUDWNy + gTREjVZccEsBtC1v2CRAsHBwSUIxEPjlnhF8gfWlbmztRjX8Nhu/av8+fhub+8q6COGA0gwuV8sv + 0xjdc0L7TnPJKevIEQclgr47JvO5ZVjR53Tj9jv79FDZNTV8XsI8snfWleArQQraCutHdk5mWrTY + i7pEf7NdMJ3pGaSZcSJ4bx2VcGQytBaX2py3M1y0I3cP9IetcC26tbZ/xGkvBh4ZygbunWFKwxcv + neaT1YKEX909t9a2P3HxM4ZJ6KQR2qlA1bLdvxDf6N61Cq/YGZwAq812pd5UxwIKKbuqTjtcVAXM + 0X61tuXYu/7KEVT988tewWydf2162P2s3OZ9ghfupT/9JfhT5v0pD+3LZ/blY2L6StihqjXHZukG + pNJdGiC0QxFB2w1oZqG0VmlJcTp995kxz2IRsJLxIE6o8NIk8HkpwlywIhcepSyM8oyFk4DVI86M + QRZ48YHPjKtVePVL3PV7YcOe1h284u/jD//GqRFqdmJEK+AAIEx7Rrsze4g8kzDKVUULbZfEGezJ + J65THnZgDLIgmjLtpwPj/QfGv2nxpWTTefGpzovlhzrjh9Sukgry6eGIsBLUbHkpxVXvTj8Axiha + YsFJsSHPt9STqqNqVQlkYpyTpt2wtWQ7GGo+suFF3ZpwIDWEtDtypEsbum/vqIEXzylZ3e3ipVkc + hmnJsoAGfkmLvOBRkKYsSUTu0YDSjAs/nnQmHmOukzA9uLkurtb8FzDXtIvE05rrUr037/8Ncw01 + OwGXCzpwtYWr4gxG2DohzjranrdnujdnhaFSXdIL0Z64rnmg0U7iOJ6M9mS07zXaopZVoxs28U8/ + mdnetNqT8aEMN5zWGbh4qo07f18XhAJ/Ad7a3hR26hXeMrXW8eRYcsAgb7jRwAR9aRmpa+ocH+Ar + W+z6IceEOcml7iQjl3TjeG2lOh8deLK8lguw9XjOxpg68N+AF5FY5Wx0RFwaiWzO6AJuuxlpJThe + xsKg8zfXXBREVIJ1ZnCH2rtk9J5+sUEi37uhRSh4IbIi557IRMYTL6ZCBHlQFkHi0TLxaFImeTnx + 7j0CWnhBFB769rj04qL/+dDi/eW6jp8UWiTyw4csezy0wJqdIBt5CUd/9wRsHFyyrj0rKRNnNW3P + zy4FBW/6ieuVh6EKL4iSfEIVE6q4F1V835vvVbX5kW6+0gZfmNDF06ALWr5b+R/Kw2X2jcx6sm60 + 6UACYbjNGew27Vx8ONzRQvQXl/Yy0t4QABc/3I5oDAiD2wK8ejGCnhMbwy20kUDA96VW9msOJOCV + LqgLAEkQIo2N6PCmoRWibkeafFqr4UZ3Qd7gT0gs0KtOViPsWRmKN3UgvaWN2Lk12VU6QMTTdhRo + /SHarBKduDtJMI/jOImKRIhUJLlfxr4fJwXNvJDFvhcFRZgVYTbR5j8KLhw+2Ex82MjyF/BEpDJ9 + 97SeCFFHrP83PBFQsxOnHdF27RkXnWDdGYqvnOEd65l4h769M7hQPSvEWip+4rrmoZghjP0JM/x6 + MQP+y5nFZ7XoKKcdhXXxh62BKO1s95MgycLUz3dcS8/oanXWyg84np63+0Mjz3Cd477yLFzscl4/ + K0TpJkES5HnupXuFivbsfS/MZq8e+Mvtf3a7MO5zN3/BX0tZ2Vbc/vv9JYxP1X2LWOLOp26CsI+W + 1wlTt/d+9qPT+J8Pfs0tMjszH/zW/z3oyX/d+9S1ffZndJiBaJvHddi+Tfl/j+uyVbc3+R/88r9+ + 9z1XdXsr/Dfcc60E6Gd3pbO2g8Pz4/qRi5L2VXdm/f32mETV9YPRnUWUUlS8ffySR+z+8PX+iBoN + u/Ezh6mf/VLj9oefUcNnNtxt38497AsfmS+45Z8p3d1e5n5Z1/HkbcbR/qBNd7sl219zz7ho2X7P + /uu2M/+zMaPX5g7UsqpkK+D8BZPGzxbxTiDHM1C2u0K0ws64qDq6ezf6rJK1BUm+t2e3dxDCM4Bf + u7+9350JO3/HXefmvL2l4XfvTw/eix60Y//rceP4hLV9yC55b23/cMvqeOY0Ic+M6HoIP74B0loI + cLwJPp6VVFa3Ysn2XDbN7b/0DHQTyx4gVHQbVIW/3zpxb8WPbnnY2X/t7yN83u3j3Wc+io9u4p/d + /oJ1w8903908Pji07XoU11P6B9vz//r/5lwKDW9bAwA= + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68a9bdd258fe53dd-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 18:25:42 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:25:42 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=xHWr3MUaje%2FRl7PEBvS9Vqmjw6ky2uQyrAdXfZoUJdeCtso%2Bdkm77%2Br0xDulPmyiFjH5O68iCeTtbOnacgDLhXQWKi602rB3Zm9nIGcyv7q2Qnd7Bu3z2B6NIhgFNOOZfUuN"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +version: 1 diff --git a/cassettes/test_submission_comment_ids_praw b/cassettes/test_submission_comment_ids_praw new file mode 100644 index 0000000..23ec330 --- /dev/null +++ b/cassettes/test_submission_comment_ids_praw @@ -0,0 +1,2762 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxi2g1 + response: + body: + string: "{\n \"data\": [\n \"gjacn1r\"\n ]\n}" + headers: + Accept-Ranges: + - bytes + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac02a8849cab0-YYZ + Connection: + - keep-alive + Content-Length: + - '41' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:05 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:21:54 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=1naLgHMIFlPlGSJYf8QFTVHVcq1Yco4T2c%2B6f%2Bwf3FjpJmVM14%2FknrnZnw9EOs39khblsjMbXnGkhtRC09nwXe0s0B2Xl3ARJFTSzhrmzqRRNYS6PxfLziLakSFm5hLUL6aA"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhwh0 + response: + body: + string: !!binary | + H4sIAAAAAAAAA6vmUlBQUFBKSSxJVLJSiAbzwCLpWYn5ybnpSjrIQklGWcVZaEKZxUXlaEJZSdkW + SmCRWK5aAIGijjJiAAAA + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac049ec5d53ef-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:11 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:21:59 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=1bTbX%2FjnP%2Bifc4foVZOHlnaxROGmNyagcSLc1QV%2FsomYqwK3LQ8LoiKr5Pbg%2BG%2FxbjOk94fXlO61FRndRHPdVNBBz%2BLGx261YmJnoA2XwpaGDT1UT%2FoYMO7WfWlUkk5VnyCP"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhv53 + response: + body: + string: !!binary | + H4sIAAAAAAAAA13MsQ6CMBRG4Z2nuOnMUBsC1VcxDhcwUlqbgkWLxHc36dZ/PN9wjoqISIwcWVzo + mivLY+bBmEXUJTnXIvmwAY3SGSS14muKCyN92zOQeU4NUlABKTncz80pAVmpIlB6dxJo12kvqde2 + fwF97L0raZBeb0gre5HlVv3+Po7oeGwBAAA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac0501ca3542b-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:11 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:00 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=LUVC9q1n%2Bk9xRchKSd89YIfZr22OchGFg1hWRIHjYqiFxDRD4YKvawOIDP4FeW67rVn3sGeNV0kr8mLgxRxcoXEwE1GXuhluk6GF%2FrZCP5BAcDE0xzipMkDklQKK86N61z2V"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhm7b + response: + body: + string: !!binary | + H4sIAAAAAAAAA6vmUlBQUFBKSSxJVLJSiAbzwCLpWYmWBVUpSjqoQoUGOWhCSan5lWhCyWmm2WhC + KRYVZmhCqcVmpmhC6cVVBahCyXklyYVKYJFYrloAdvPG464AAAA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac0564b0853e9-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:12 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:01 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=WbeU%2BNfR8oXyD%2BHjPWQzllMkPWNX7fXhTIuBMQevcS%2Fy2KS6UllHs%2F6LljNSlYvVQ1dlglpvB4asLSkiAa%2BYjRyQ%2FUbF06x6iqccaimdNPiR0gkDwgNS3pf1IaQ8OCOKq93x"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhm3s + response: + body: + string: "{\n \"data\": []\n}" + headers: + Accept-Ranges: + - bytes + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac05c8e88ca94-YYZ + Connection: + - keep-alive + Content-Length: + - '18' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:13 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:02 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=4zQX81LiHeSw1d7Uj6ISYZUAfjEUCr63PB%2B%2BYSVW9t5c0bvdH5ZUnq9O3gotX4OUO%2BiG3uLlYadjW8egO79mz4vwom03T9kPTo7lUym0HUKQPehFPKuNPU6pbF6jInzoNBLV"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhg37 + response: + body: + string: "{\n \"data\": [\n \"gja8u8b\"\n ]\n}" + headers: + Accept-Ranges: + - bytes + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac062dd8f53ef-YYZ + Connection: + - keep-alive + Content-Length: + - '41' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:14 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:03 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=8QV%2FFaW5Z8E4WIpoNnyftSyM4soEx7qlUNtCY%2B%2BrfPuBl90w%2Fi96AeRaPc7aGOCKE7aAf9MZcoea1dTY9Wpqg9q%2FXZM3soZJWPoiB9csi9xQ7AiJuGalMXxF0n%2BlPDBpxgRs"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhak9 + response: + body: + string: "{\n \"data\": [\n \"gja7tcu\"\n ]\n}" + headers: + Accept-Ranges: + - bytes + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac0691e32f975-YYZ + Connection: + - keep-alive + Content-Length: + - '41' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:15 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:04 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ZPMu%2Fv6PSCYkJY%2BsMQO%2BM9zlPrbPXFuDjznr15okIpeCoeWDgKZeMKpmPG3k0Ku8ZdqA6k3H9h0S02QCMHqL5tFk5FwQl1sZo3PqxQzKEalRDzvlNqf70RQh6lLgvG6U77Qr"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: grant_type=client_credentials + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - close + Content-Length: + - '29' + Content-Type: + - application/x-www-form-urlencoded + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: POST + uri: https://www.reddit.com/api/v1/access_token + response: + body: + string: '{"access_token": "-oxCBNpdDoaRvuobJctZgZrLIgI0E-g", "token_type": "bearer", + "expires_in": 3600, "scope": "*"}' + headers: + Accept-Ranges: + - bytes + Connection: + - close + Content-Length: + - '109' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:15 GMT + Server: + - snooserv + Set-Cookie: + - edgebucket=OMsZOoVYIjD58gEF6j; Domain=reddit.com; Max-Age=63071999; Path=/; secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + cache-control: + - max-age=0, must-revalidate + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '299' + x-ratelimit-reset: + - '465' + x-ratelimit-used: + - '1' + x-reddit-loid: + - 0000000000edlr3smv.2.1630963335757.Z0FBQUFBQmhOb2FIRFNYYXE5M3JWWFpMLVRFZE5TQ1YzOVdXVmE2QU5od2kzazZlUEdzb2x1QWprWUdBM3JYMERQOXhmVUItam9uOWM5QlB6by0wYmNHQ0N6QWZrMU1haGx4em5KczJhLTZSa3ZQeXQ3R2NBTkl4SGx0dEJLZ0VodGtoZGtPMVdKRWI + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - edgebucket=OMsZOoVYIjD58gEF6j + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t1_gjac9d6%2Ct1_gjacn1r%2Ct1_gjac5fb%2Ct1_gjacdy5%2Ct1_gjaco45%2Ct1_gjasj4f%2Ct1_gjbxfeg%2Ct1_gjacwx5%2Ct1_gjad2l6%2Ct1_gjadatw%2Ct1_gjadc7w%2Ct1_gjadcwh%2Ct1_gjadgd7%2Ct1_gjadlbc%2Ct1_gjadnoc%2Ct1_gjadog1%2Ct1_gjadphb%2Ct1_gjadtz3%2Ct1_gjaduck%2Ct1_gjadxa0%2Ct1_gjaeb3p%2Ct1_gjaeb5o%2Ct1_gjaeg5d%2Ct1_gjaegdn%2Ct1_gjaemkt%2Ct1_gjaenva%2Ct1_gjaerpm%2Ct1_gjaex2y%2Ct1_gjaf5nv%2Ct1_gjaim0d%2Ct1_gjapx5s%2Ct1_gjaqruo%2Ct1_gjarqic%2Ct1_h49ixux%2Ct1_gjaocmg%2Ct1_gjb2jsj%2Ct1_gjbisrw%2Ct1_gjbjbk8%2Ct1_gjaciiq%2Ct1_gjacll6%2Ct1_gjacnpu%2Ct1_gjad0li%2Ct1_gjad2rq%2Ct1_gjahtqa%2Ct1_gjahz69%2Ct1_gjaimh4%2Ct1_gjaip2p%2Ct1_gjaixlq%2Ct1_gjaj41x%2Ct1_gjak02t%2Ct1_gjaxv70%2Ct1_gjay8xy%2Ct1_gjb8kbs%2Ct1_gjbwke7%2Ct1_gjc0n8u%2Ct1_gjc0ran%2Ct1_gja9pzd%2Ct1_gja9q0l%2Ct1_gjabeoy%2Ct1_gjacf5k%2Ct1_gjad8x6%2Ct1_gjaes65%2Ct1_gjagszp%2Ct1_gjcntcq%2Ct1_gja8u8b%2Ct1_gja7tcu&raw_json=1 + response: + body: + string: !!binary | + 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 + 977lWt8SP+yLoSL1mNd///v/AWJoYPcyeAIA + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '17241' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:16 GMT + Server: + - snooserv + Set-Cookie: + - loid=0000000000edlr3smv.2.1630963335757.Z0FBQUFBQmhOb2FJdk11b2p1ZEhCaEhqamNYeHdraEFBZ01wbV9WX2ppMURnaEpXMzM4bFpRUUxCeTdiOHZBa1l4OXhUR2dZa0xfSzdCRHd2ZDFtTmNlMXBSU0ZjODBJS3lRaFNOQTRyQ3VPR2drcjJnbDZOenBqejhkaHVRVTdJM2xKUzVVSHhrSlk; + Domain=reddit.com; Max-Age=63071999; Path=/; expires=Wed, 06-Sep-2023 21:22:16 + GMT; secure; SameSite=None; Secure + - session_tracker=hrmpjhapbalbrenlmk.0.1630963335869.Z0FBQUFBQmhOb2FJeFlYVklfUGhjWmVjaTdubDF2anRmejRXWkRhWExwODhUVVZFaEgzcWgxbkVMaGF4SFlaNXRaeWVCcVYwOXRHbTlzVW9zV1FReUNoTlRvUTRQV0FsT0E2VlBFV3pwanBmY1hKQjJuM1dNUEJET3IyRV9zZUZvenRQX3loYmd0QkQ; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 23:22:16 + GMT; secure; SameSite=None; Secure + - csv=1; Max-Age=63072000; Domain=.reddit.com; Path=/; Secure; SameSite=None + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '299' + x-ratelimit-reset: + - '465' + x-ratelimit-used: + - '1' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - edgebucket=OMsZOoVYIjD58gEF6j + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t1_gjacn1r%2Ct1_gjacwx5%2Ct1_gjad2l6%2Ct1_gjadatw%2Ct1_gjadc7w%2Ct1_gjadcwh%2Ct1_gjadgd7%2Ct1_gjadlbc%2Ct1_gjadnoc%2Ct1_gjadog1%2Ct1_gjadphb%2Ct1_gjadtz3%2Ct1_gjaduck%2Ct1_gjadxa0%2Ct1_gjaeb3p%2Ct1_gjaeb5o%2Ct1_gjaeg5d%2Ct1_gjaegdn%2Ct1_gjaemkt%2Ct1_gjaenva%2Ct1_gjaerpm%2Ct1_gjaex2y%2Ct1_gjaf5nv%2Ct1_gjaim0d%2Ct1_gjapx5s%2Ct1_gjaqruo%2Ct1_gjarqic%2Ct1_h49ixux%2Ct1_gjac9d6%2Ct1_gjac5fb%2Ct1_gjacdy5%2Ct1_gjaco45%2Ct1_gjasj4f%2Ct1_gjbxfeg%2Ct1_gjaocmg%2Ct1_gjb2jsj%2Ct1_gjbisrw%2Ct1_gjbjbk8%2Ct1_gjaciiq%2Ct1_gjacll6%2Ct1_gjacnpu%2Ct1_gjad0li%2Ct1_gjad2rq%2Ct1_gjahtqa%2Ct1_gjahz69%2Ct1_gjaimh4%2Ct1_gjaip2p%2Ct1_gjaixlq%2Ct1_gjaj41x%2Ct1_gjak02t%2Ct1_gjaxv70%2Ct1_gjay8xy%2Ct1_gjb8kbs%2Ct1_gjbwke7%2Ct1_gjc0n8u%2Ct1_gjc0ran%2Ct1_gja9pzd%2Ct1_gja9q0l%2Ct1_gjabeoy%2Ct1_gjacf5k%2Ct1_gjad8x6%2Ct1_gjaes65%2Ct1_gjagszp%2Ct1_gjcntcq%2Ct1_gja8u8b%2Ct1_gja7tcu&raw_json=1 + response: + body: + string: !!binary | + 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 + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '17549' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:24:48 GMT + Server: + - snooserv + Set-Cookie: + - loid=0000000000edlr3smv.2.1630963335757.Z0FBQUFBQmhOb2NnMFVGWlRoTXROc3VsbWNaQ1BZb0Q3MlNrMzc0ZEI3TUFJWXVBR0dfeVcxWFVmUFFycmZIYmRCV2phOE5JcjF6S2lrcU5Da0lfejlMRFYySjFpSG9EWjhZbkhBR0YxcHcweGxiX1pORkV3WlQzODF1Ulp4VHZrNWZldk1lai11TUc; + Domain=reddit.com; Max-Age=63071999; Path=/; expires=Wed, 06-Sep-2023 21:24:48 + GMT; secure; SameSite=None; Secure + - session_tracker=cpeaoegmkakciohion.0.1630963488446.Z0FBQUFBQmhOb2NnOVo4V256a1FCYm91X0c3b3gwcEdUOEdaMmRmNVJyR3Z5V0VMSlYydVo3dzVPTkpkSVpydVFyT29OS3BWSUNELWwxWm50cGpBN19sbWRyejdzczllcEF2YXFuU1NZRXI5VUIwM2taeWpJWHhxWGxZdXRoMjJyQnY3RlQ3bHFoei0; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 23:24:48 + GMT; secure; SameSite=None; Secure + - csv=1; Max-Age=63072000; Domain=.reddit.com; Path=/; Secure; SameSite=None + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '297' + x-ratelimit-reset: + - '312' + x-ratelimit-used: + - '3' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxi2w8 + response: + body: + string: !!binary | + H4sIAAAAAAAAA2XQuw6CMACF4Z2naDo7IFiJvoph6EULQi/UAlXju5uwcTqeb/pzvgUhhFDFI6dX + ctvWJvrJ5ZoYPexIVeMZiccVSTY5rR2SVg3SKCSSdRk5fUTynUCKnxpplgNS4iXQXdQ+I+aQNFMZ + KYtkhohkF44UvEFK1RvowewC1JsSI3xiL6ApzFgfpn73ane69GlOdJO2+P0Bm838pRcCAAA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac6930d0953fb-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:26:28 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:26:18 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=peAvvgnpotxi70PDuJtbflImF9fnZQmNx0x9mjHN45n9KTr0JEf3enX1tK2wBHZw1iZtOf7pgD9ROThmoC0%2Fq9%2Fn0Fcv3rAW57GGwbxNhy50P4r7i1esdIHpJlxwJ%2Bk00R9z"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - edgebucket=OMsZOoVYIjD58gEF6j + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t1_gjacn1r%2Ct1_gjac9d6%2Ct1_gjacwx5%2Ct1_gjad2l6%2Ct1_gjadatw%2Ct1_gjadc7w%2Ct1_gjadcwh%2Ct1_gjadgd7%2Ct1_gjadlbc%2Ct1_gjadnoc%2Ct1_gjadog1%2Ct1_gjadphb%2Ct1_gjadtz3%2Ct1_gjaduck%2Ct1_gjadxa0%2Ct1_gjaeb3p%2Ct1_gjaeb5o%2Ct1_gjaeg5d%2Ct1_gjaegdn%2Ct1_gjaemkt%2Ct1_gjaenva%2Ct1_gjaerpm%2Ct1_gjaex2y%2Ct1_gjaf5nv%2Ct1_gjaim0d%2Ct1_gjapx5s%2Ct1_gjaqruo%2Ct1_gjarqic%2Ct1_h49ixux%2Ct1_gjac5fb%2Ct1_gjacdy5%2Ct1_gjaco45%2Ct1_gjasj4f%2Ct1_gjbxfeg%2Ct1_gjaocmg%2Ct1_gjb2jsj%2Ct1_gjbisrw%2Ct1_gjbjbk8%2Ct1_gjaciiq%2Ct1_gjacll6%2Ct1_gjacnpu%2Ct1_gjad0li%2Ct1_gjad2rq%2Ct1_gjahtqa%2Ct1_gjahz69%2Ct1_gjaimh4%2Ct1_gjaip2p%2Ct1_gjaixlq%2Ct1_gjaj41x%2Ct1_gjak02t%2Ct1_gjaxv70%2Ct1_gjay8xy%2Ct1_gjb8kbs%2Ct1_gjbwke7%2Ct1_gjc0n8u%2Ct1_gjc0ran%2Ct1_gja9pzd%2Ct1_gja9q0l%2Ct1_gjabeoy%2Ct1_gjacf5k%2Ct1_gjad8x6%2Ct1_gjaes65%2Ct1_gjagszp%2Ct1_gjcntcq%2Ct1_gja8u8b%2Ct1_gja7tcu&raw_json=1 + response: + body: + string: !!binary | + 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 + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '17540' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:26:37 GMT + Server: + - snooserv + Set-Cookie: + - loid=0000000000edlr3smv.2.1630963335757.Z0FBQUFBQmhOb2VOQ3htY0pnVEVGdkd4VnV2YTllR25CcnE1NGRjdTlsMWdSVXhEbkJQc2VCS0FaUVpuQ1hNRUIyMF9ENGt1bV9Ic05JQ05aVE83TzZRSTVKdWY5bWM5VGtvSDU3ZGlaaV9VT3JSTDFuQnMwZDJEMDF2eFNPc3RJZWhYdG11NkUxczU; + Domain=reddit.com; Max-Age=63071999; Path=/; expires=Wed, 06-Sep-2023 21:26:37 + GMT; secure; SameSite=None; Secure + - session_tracker=lqkbpjrrapcpqordli.0.1630963597170.Z0FBQUFBQmhOb2VOcGY2Z0dHSTZNZDM2VDJfT0QzNUN5bDZya3ZQSUxybmFqb2Y0WFo4Tk83RnNjMFhsOWc0ZUJPR2c5d0VDay0zNzRBSDJ5RXFvNjZnUTNkOC12U0VZbTJMaV9CdE9XUGhka09xY0RpbW5GRVJDMnI5ZlhKRDA2bGNBVDZnUHNULTY; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 23:26:37 + GMT; secure; SameSite=None; Secure + - csv=1; Max-Age=63072000; Domain=.reddit.com; Path=/; Secure; SameSite=None + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '295' + x-ratelimit-reset: + - '203' + x-ratelimit-used: + - '5' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - edgebucket=OMsZOoVYIjD58gEF6j + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t1_gjacwx5%2Ct1_gjad2l6%2Ct1_gjadatw%2Ct1_gjadc7w%2Ct1_gjadcwh%2Ct1_gjadgd7%2Ct1_gjadlbc%2Ct1_gjadnoc%2Ct1_gjadog1%2Ct1_gjadphb%2Ct1_gjadtz3%2Ct1_gjaduck%2Ct1_gjadxa0%2Ct1_gjaeb3p%2Ct1_gjaeb5o%2Ct1_gjaeg5d%2Ct1_gjaegdn%2Ct1_gjaemkt%2Ct1_gjaenva%2Ct1_gjaerpm%2Ct1_gjaex2y%2Ct1_gjaf5nv%2Ct1_gjaim0d%2Ct1_gjapx5s%2Ct1_gjaqruo%2Ct1_gjarqic%2Ct1_h49ixux%2Ct1_gjac9d6%2Ct1_gjacn1r%2Ct1_gjac5fb%2Ct1_gjacdy5%2Ct1_gjaco45%2Ct1_gjasj4f%2Ct1_gjbxfeg%2Ct1_gjaocmg%2Ct1_gjb2jsj%2Ct1_gjbisrw%2Ct1_gjbjbk8%2Ct1_gjaciiq%2Ct1_gjacll6%2Ct1_gjacnpu%2Ct1_gjad0li%2Ct1_gjad2rq%2Ct1_gjahtqa%2Ct1_gjahz69%2Ct1_gjaimh4%2Ct1_gjaip2p%2Ct1_gjaixlq%2Ct1_gjaj41x%2Ct1_gjak02t%2Ct1_gjaxv70%2Ct1_gjay8xy%2Ct1_gjb8kbs%2Ct1_gjbwke7%2Ct1_gjc0n8u%2Ct1_gjc0ran%2Ct1_gja9pzd%2Ct1_gja9q0l%2Ct1_gjabeoy%2Ct1_gjacf5k%2Ct1_gjad8x6%2Ct1_gjaes65%2Ct1_gjagszp%2Ct1_gjcntcq%2Ct1_gja8u8b%2Ct1_gja7tcu&raw_json=1 + response: + body: + string: !!binary | + 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 + dHgCAA== + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '17332' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:28:47 GMT + Server: + - snooserv + Set-Cookie: + - loid=0000000000edlr3smv.2.1630963335757.Z0FBQUFBQmhOb2dQNEVQTV9EZFpUbmdTckoxN2hQbWRaajJMbi1qUEJsSm5uN3VINzdUUjVoZVZYVVhlVWp6V1RfeXp0MndJQU1IUzNHMkpKQVVOYS1Gd1IwOWxRRlVXcHlmX2d2WTl5SmpndllWNWpOcmtPVml0c0lWQkl0U09QdzVwMUFCX2psSk0; + Domain=reddit.com; Max-Age=63071999; Path=/; expires=Wed, 06-Sep-2023 21:28:47 + GMT; secure; SameSite=None; Secure + - session_tracker=kebarknakndbqfqkli.0.1630963727763.Z0FBQUFBQmhOb2dQMDg1b2c3Qy1NazVtZGlRd1ZKQXRHQ250Z3NiMW94aEIzSkNNTFlObEhYUjJiZUN4Q2dBM0QyMzNYTTlXdHlvbE9raHJmMU4wRk9oQ0Z2RU1lcUxKU0hCTEV0X2lmeUNuNEF0My1xWGpoMnotVE1ibTg5ZHB5TWtOTVh5V3ZySFk; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 23:28:47 + GMT; secure; SameSite=None; Secure + - csv=1; Max-Age=63072000; Domain=.reddit.com; Path=/; Secure; SameSite=None + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '293' + x-ratelimit-reset: + - '73' + x-ratelimit-used: + - '7' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=R5kcDw7QjgxxWJEznS; loid=0000000000edkcdvnr.2.1630959355267.Z0FBQUFBQmhObmI3dlYzVktBdWRhMi0yZloyRnhkNV93ZFY5eS1YMjNNRi1tSUJjWC01SER6SmN3R0RrVGdYcGN5WExXRUtQcEtsNWdwQXQyeXQyUUN1UmN0Z2xyRkNYcHExV2xTeEZqM004MUQ5RV9CNVoyYUpkVHVIOU1GRFhHcm94ZjU3dERJdUM; + session_tracker=krbaimkecdoqerqmfo.0.1630959359866.Z0FBQUFBQmhObmNBRWwySWJmdDZ4eHJnaG1Vc0c1Z0gyYzdiS0pBVGVFaS1fd2EwVDVPRFFZUjVNWVJENWdWX0p1akVfY3BBS05zOWRyZm1xRFgzemNUVExPeFdqZGV0M01oaU9vZUZwX3h0UUJuLXlEWWJ5U20wZFVqSUxDMThJenAyTFREY2RWU1A + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t1_gjacwx5%2Ct1_gjad2l6%2Ct1_gjadatw%2Ct1_gjadc7w%2Ct1_gjadcwh%2Ct1_gjadgd7%2Ct1_gjadlbc%2Ct1_gjadnoc%2Ct1_gjadog1%2Ct1_gjadphb%2Ct1_gjadtz3%2Ct1_gjaduck%2Ct1_gjadxa0%2Ct1_gjaeb3p%2Ct1_gjaeb5o%2Ct1_gjaeg5d%2Ct1_gjaegdn%2Ct1_gjaemkt%2Ct1_gjaenva%2Ct1_gjaerpm%2Ct1_gjaex2y%2Ct1_gjaf5nv%2Ct1_gjaim0d%2Ct1_gjapx5s%2Ct1_gjaqruo%2Ct1_gjarqic%2Ct1_h49ixux%2Ct1_gjac5fb%2Ct1_gjacdy5%2Ct1_gjaco45%2Ct1_gjasj4f%2Ct1_gjbxfeg%2Ct1_gjac9d6%2Ct1_gjacn1r%2Ct1_gjaocmg%2Ct1_gjb2jsj%2Ct1_gjbisrw%2Ct1_gjbjbk8%2Ct1_gjaciiq%2Ct1_gjacll6%2Ct1_gjacnpu%2Ct1_gjad0li%2Ct1_gjad2rq%2Ct1_gjahtqa%2Ct1_gjahz69%2Ct1_gjaimh4%2Ct1_gjaip2p%2Ct1_gjaixlq%2Ct1_gjaj41x%2Ct1_gjak02t%2Ct1_gjaxv70%2Ct1_gjay8xy%2Ct1_gjb8kbs%2Ct1_gjbwke7%2Ct1_gjc0n8u%2Ct1_gjc0ran%2Ct1_gja9pzd%2Ct1_gja9q0l%2Ct1_gjabeoy%2Ct1_gjacf5k%2Ct1_gjad8x6%2Ct1_gjaes65%2Ct1_gjagszp%2Ct1_gjcntcq%2Ct1_gja8u8b%2Ct1_gja7tcu&raw_json=1 + response: + body: + string: !!binary | + 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 + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '17375' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:43:46 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=rhfglgfbfcbqimjrmb.0.1630964626386.Z0FBQUFBQmhOb3VTbUVBNGR3ZVowd2ZLVzRrTlk4WmJKS0hIRFZESEgzaFZfNFNKZDJXYVc1SDh1OGlDWFdLVVVtX29qSDJSeTBNYk9zVmxkbmtESDFPWEpTSGo0TEJGRldaYjl5V1pVTGpSc19vd01vSXZ1eGhYdjZlOURWWEw4Ti1kcE42X2hiNUY; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 23:43:46 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '299' + x-ratelimit-reset: + - '374' + x-ratelimit-used: + - '1' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=OMsZOoVYIjD58gEF6j; loid=0000000000edkcdvnr.2.1630959355267.Z0FBQUFBQmhObmI3dlYzVktBdWRhMi0yZloyRnhkNV93ZFY5eS1YMjNNRi1tSUJjWC01SER6SmN3R0RrVGdYcGN5WExXRUtQcEtsNWdwQXQyeXQyUUN1UmN0Z2xyRkNYcHExV2xTeEZqM004MUQ5RV9CNVoyYUpkVHVIOU1GRFhHcm94ZjU3dERJdUM; + session_tracker=krbaimkecdoqerqmfo.0.1630959359866.Z0FBQUFBQmhObmNBRWwySWJmdDZ4eHJnaG1Vc0c1Z0gyYzdiS0pBVGVFaS1fd2EwVDVPRFFZUjVNWVJENWdWX0p1akVfY3BBS05zOWRyZm1xRFgzemNUVExPeFdqZGV0M01oaU9vZUZwX3h0UUJuLXlEWWJ5U20wZFVqSUxDMThJenAyTFREY2RWU1A + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t1_gjacn1r%2Ct1_gjac5fb%2Ct1_gjacdy5%2Ct1_gjaco45%2Ct1_gjasj4f%2Ct1_gjbxfeg%2Ct1_gjac9d6%2Ct1_gjacwx5%2Ct1_gjad2l6%2Ct1_gjadatw%2Ct1_gjadc7w%2Ct1_gjadcwh%2Ct1_gjadgd7%2Ct1_gjadlbc%2Ct1_gjadnoc%2Ct1_gjadog1%2Ct1_gjadphb%2Ct1_gjadtz3%2Ct1_gjaduck%2Ct1_gjadxa0%2Ct1_gjaeb3p%2Ct1_gjaeb5o%2Ct1_gjaeg5d%2Ct1_gjaegdn%2Ct1_gjaemkt%2Ct1_gjaenva%2Ct1_gjaerpm%2Ct1_gjaex2y%2Ct1_gjaf5nv%2Ct1_gjaim0d%2Ct1_gjapx5s%2Ct1_gjaqruo%2Ct1_gjarqic%2Ct1_h49ixux%2Ct1_gjaocmg%2Ct1_gjb2jsj%2Ct1_gjbisrw%2Ct1_gjbjbk8%2Ct1_gjaciiq%2Ct1_gjacll6%2Ct1_gjacnpu%2Ct1_gjad0li%2Ct1_gjad2rq%2Ct1_gjahtqa%2Ct1_gjahz69%2Ct1_gjaimh4%2Ct1_gjaip2p%2Ct1_gjaixlq%2Ct1_gjaj41x%2Ct1_gjak02t%2Ct1_gjaxv70%2Ct1_gjay8xy%2Ct1_gjb8kbs%2Ct1_gjbwke7%2Ct1_gjc0n8u%2Ct1_gjc0ran%2Ct1_gja9pzd%2Ct1_gja9q0l%2Ct1_gjabeoy%2Ct1_gjacf5k%2Ct1_gjad8x6%2Ct1_gjaes65%2Ct1_gjagszp%2Ct1_gjcntcq%2Ct1_gja8u8b%2Ct1_gja7tcu&raw_json=1 + response: + body: + string: !!binary | + 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 + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '17321' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:56:39 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=cjrdadhrlrbqiqegoq.0.1630965399208.Z0FBQUFBQmhObzZYbTRFcWJLbnhwTk8zazYybU9mQWZyTkxrdjYxUkJweUo0WGUzVm5FNXhaOElCaVBJekxZWG9KcFhPbWJOUmRPR0c0aW1RWUdRaVlQdE5nZzk3RjExNHdkRG5EOWtNcHAxaG5LNmJ0ajA5OXBCZWZuR05qMXlqalRXaGt4dHM0Y0Y; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 23:56:39 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '299' + x-ratelimit-reset: + - '201' + x-ratelimit-used: + - '1' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +version: 1 diff --git a/cassettes/test_submission_comment_ids_praw_mem_safe b/cassettes/test_submission_comment_ids_praw_mem_safe new file mode 100644 index 0000000..de083d2 --- /dev/null +++ b/cassettes/test_submission_comment_ids_praw_mem_safe @@ -0,0 +1,1935 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxi2w8 + response: + body: + string: !!binary | + H4sIAAAAAAAAA2XQuw6CMACF4Z2naDo7IFiJvoph6EULQi/UAlXju5uwcTqeb/pzvgUhhFDFI6dX + ctvWJvrJ5ZoYPexIVeMZiccVSTY5rR2SVg3SKCSSdRk5fUTynUCKnxpplgNS4iXQXdQ+I+aQNFMZ + KYtkhohkF44UvEFK1RvowewC1JsSI3xiL6ApzFgfpn73ane69GlOdJO2+P0Bm838pRcCAAA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac0b95f7e5401-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:28 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:17 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ebQa1tXOf5yPQx5sWqhucEAgbFkAysWwx3JAcbFRWQUnPqvlD1m5fffFH4o%2Fv0GMs7T682vPA1lQOUIPvaql6RO1jVThVMnaTPx158yRpPtdui0VHYpUZgI1F4lSYeD1mvMt"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhwh0 + response: + body: + string: !!binary | + H4sIAAAAAAAAA6vmUlBQUFBKSSxJVLJSiAbzwCLpWYn5ybnpSjrIQklGWcVZaEKZxUXlaEJZSdkW + SmCRWK5aAIGijjJiAAAA + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac0d8ab2bcab8-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:33 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:25 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Kde2TH%2FEfSpQqwOGQMC5Kt0BCREVFPktwnuEuvS0o99isDZoKqVlc9JW2AWPRp0xnVI%2FfXDExan0q91EaoZoonGNU33AZi7f24B0hpceQnzOqUUtm1D%2FRlOOzXLmyZiXJ%2F9N"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3-27=":443"; ma=86400, h3-28=":443"; ma=86400, h3-29=":443"; ma=86400, h3=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhv53 + response: + body: + string: !!binary | + H4sIAAAAAAAAA13MsQ6CMBRG4Z2nuOnMUBsC1VcxDhcwUlqbgkWLxHc36dZ/PN9wjoqISIwcWVzo + mivLY+bBmEXUJTnXIvmwAY3SGSS14muKCyN92zOQeU4NUlABKTncz80pAVmpIlB6dxJo12kvqde2 + fwF97L0raZBeb0gre5HlVv3+Po7oeGwBAAA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac0defbd1caa0-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:34 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:25 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=bnIg2i6CSzVV4JzWECMxKdgWon4MDbkjNxfLLx5A9lTUsqkGt0BJWfo4GtowZs%2BycT%2FhJVBt7Nr%2BunvByalpYob5FqAddM5qQKfLpK9%2FdzVxc1LQcqUCM0Y5ITr8xNzJiScp"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhm7b + response: + body: + string: !!binary | + H4sIAAAAAAAAA6vmUlBQUFBKSSxJVLJSiAbzwCLpWYmWBVUpSjqoQoUGOWhCSan5lWhCyWmm2WhC + KRYVZmhCqcVmpmhC6cVVBahCyXklyYVKYJFYrloAdvPG464AAAA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac0e51e7854a9-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:38 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:25 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=NJJwbST%2B7Y7roDwrWziEk%2Bvf6LvxLV495hI1V5tzt%2F9hlPTq%2FUhBvGdKJ8KWpKLx1BG1aNF%2FwVi80P5rvNHNQk8b7VJNcWkpl%2BJjW79vjUUchgSdzmdLaI0O%2BFyQr7Hi%2FqZz"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhm3s + response: + body: + string: "{\n \"data\": []\n}" + headers: + Accept-Ranges: + - bytes + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac0eb5b144009-YYZ + Connection: + - keep-alive + Content-Length: + - '18' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:38 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:25 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=wCiui9x6WIz7jWLFNbVbJ6Pdkw9eCbAicpQ5IhJVZ54p4zT%2FmPE9BYR8bcH3laKTEbFlRPGVTk5PMpfjVj%2Bk2ydPdG3Jx5bkUjr0K58Js8SprIcYfNPah8vfNgcsH9%2FXdE7w"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhg37 + response: + body: + string: "{\n \"data\": [\n \"gja8u8b\"\n ]\n}" + headers: + Accept-Ranges: + - bytes + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac0f19dd3f999-YYZ + Connection: + - keep-alive + Content-Length: + - '41' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:38 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:26 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=qakZ%2B4iWxepPYSOMnow1pYW5bFCk3Cr8bWFV4MMelfN5OC5K2o5sdDaYpbE9xqINfAlO1QfGkTpXswXTBgBpMLSKEJymyMUV%2FHydAZEtIkrp8Din0u5Ep5UgyucLloWZeVVb"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhak9 + response: + body: + string: "{\n \"data\": [\n \"gja7tcu\"\n ]\n}" + headers: + Accept-Ranges: + - bytes + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac0f7dd5d5425-YYZ + Connection: + - keep-alive + Content-Length: + - '41' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:38 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:27 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ba%2Bz1cMpauIZ%2FsRFb4iWp5u3ZK96reRDgSqhOl934F0g9KISmBsQNeK%2BVhCAvN%2BjDLc3gnrNplfsNM4DIrZrKz0t1vA8k0OP0hGXD2BoYuO07oU2rwZ%2BRiwlZTxfC61CsEkF"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=OMsZOoVYIjD58gEF6j; loid=0000000000edlr3smv.2.1630963335757.Z0FBQUFBQmhOb2FJdk11b2p1ZEhCaEhqamNYeHdraEFBZ01wbV9WX2ppMURnaEpXMzM4bFpRUUxCeTdiOHZBa1l4OXhUR2dZa0xfSzdCRHd2ZDFtTmNlMXBSU0ZjODBJS3lRaFNOQTRyQ3VPR2drcjJnbDZOenBqejhkaHVRVTdJM2xKUzVVSHhrSlk; + session_tracker=hrmpjhapbalbrenlmk.0.1630963335869.Z0FBQUFBQmhOb2FJeFlYVklfUGhjWmVjaTdubDF2anRmejRXWkRhWExwODhUVVZFaEgzcWgxbkVMaGF4SFlaNXRaeWVCcVYwOXRHbTlzVW9zV1FReUNoTlRvUTRQV0FsT0E2VlBFV3pwanBmY1hKQjJuM1dNUEJET3IyRV9zZUZvenRQX3loYmd0QkQ + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t1_gjac9d6%2Ct1_gjacn1r%2Ct1_gjacwx5%2Ct1_gjad2l6%2Ct1_gjadatw%2Ct1_gjadc7w%2Ct1_gjadcwh%2Ct1_gjadgd7%2Ct1_gjadlbc%2Ct1_gjadnoc%2Ct1_gjadog1%2Ct1_gjadphb%2Ct1_gjadtz3%2Ct1_gjaduck%2Ct1_gjadxa0%2Ct1_gjaeb3p%2Ct1_gjaeb5o%2Ct1_gjaeg5d%2Ct1_gjaegdn%2Ct1_gjaemkt%2Ct1_gjaenva%2Ct1_gjaerpm%2Ct1_gjaex2y%2Ct1_gjaf5nv%2Ct1_gjaim0d%2Ct1_gjapx5s%2Ct1_gjaqruo%2Ct1_gjarqic%2Ct1_h49ixux%2Ct1_gjac5fb%2Ct1_gjacdy5%2Ct1_gjaco45%2Ct1_gjasj4f%2Ct1_gjbxfeg%2Ct1_gjaocmg%2Ct1_gjb2jsj%2Ct1_gjbisrw%2Ct1_gjbjbk8%2Ct1_gjaciiq%2Ct1_gjacll6%2Ct1_gjacnpu%2Ct1_gjad0li%2Ct1_gjad2rq%2Ct1_gjahtqa%2Ct1_gjahz69%2Ct1_gjaimh4%2Ct1_gjaip2p%2Ct1_gjaixlq%2Ct1_gjaj41x%2Ct1_gjak02t%2Ct1_gjaxv70%2Ct1_gjay8xy%2Ct1_gjb8kbs%2Ct1_gjbwke7%2Ct1_gjc0n8u%2Ct1_gjc0ran%2Ct1_gja9pzd%2Ct1_gja9q0l%2Ct1_gjabeoy%2Ct1_gjacf5k%2Ct1_gjad8x6%2Ct1_gjaes65%2Ct1_gjagszp%2Ct1_gjcntcq%2Ct1_gja8u8b%2Ct1_gja7tcu&raw_json=1 + response: + body: + string: !!binary | + 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 + sv773/8P5/o1dlV4AgA= + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '17570' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:38 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=hrmpjhapbalbrenlmk.0.1630963358739.Z0FBQUFBQmhOb2FlZ2Y3akFDN29aTWd3ZHNPekVIQnVlU0hsUXkwLXZyMUlpWl9oVVFaWHNWbDdYZ1JNSkYwWVZFcGllNmdSR0RHUHNhWVdqNFRrRkVIN1pfem1SS25XbEt4STUxbVhCX2FIdEpLNE1UV0VlbDJoOW5QS1F5b1poSUFFcGltVFZqUDg; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 23:22:38 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '298' + x-ratelimit-reset: + - '442' + x-ratelimit-used: + - '2' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=OMsZOoVYIjD58gEF6j; loid=0000000000edlr3smv.2.1630963335757.Z0FBQUFBQmhOb2NnMFVGWlRoTXROc3VsbWNaQ1BZb0Q3MlNrMzc0ZEI3TUFJWXVBR0dfeVcxWFVmUFFycmZIYmRCV2phOE5JcjF6S2lrcU5Da0lfejlMRFYySjFpSG9EWjhZbkhBR0YxcHcweGxiX1pORkV3WlQzODF1Ulp4VHZrNWZldk1lai11TUc; + session_tracker=cpeaoegmkakciohion.0.1630963488446.Z0FBQUFBQmhOb2NnOVo4V256a1FCYm91X0c3b3gwcEdUOEdaMmRmNVJyR3Z5V0VMSlYydVo3dzVPTkpkSVpydVFyT29OS3BWSUNELWwxWm50cGpBN19sbWRyejdzczllcEF2YXFuU1NZRXI5VUIwM2taeWpJWHhxWGxZdXRoMjJyQnY3RlQ3bHFoei0 + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t1_gjacwx5%2Ct1_gjad2l6%2Ct1_gjadatw%2Ct1_gjadc7w%2Ct1_gjadcwh%2Ct1_gjadgd7%2Ct1_gjadlbc%2Ct1_gjadnoc%2Ct1_gjadog1%2Ct1_gjadphb%2Ct1_gjadtz3%2Ct1_gjaduck%2Ct1_gjadxa0%2Ct1_gjaeb3p%2Ct1_gjaeb5o%2Ct1_gjaeg5d%2Ct1_gjaegdn%2Ct1_gjaemkt%2Ct1_gjaenva%2Ct1_gjaerpm%2Ct1_gjaex2y%2Ct1_gjaf5nv%2Ct1_gjaim0d%2Ct1_gjapx5s%2Ct1_gjaqruo%2Ct1_gjarqic%2Ct1_h49ixux%2Ct1_gjacn1r%2Ct1_gjac9d6%2Ct1_gjac5fb%2Ct1_gjacdy5%2Ct1_gjaco45%2Ct1_gjasj4f%2Ct1_gjbxfeg%2Ct1_gjaocmg%2Ct1_gjb2jsj%2Ct1_gjbisrw%2Ct1_gjbjbk8%2Ct1_gjaciiq%2Ct1_gjacll6%2Ct1_gjacnpu%2Ct1_gjad0li%2Ct1_gjad2rq%2Ct1_gjahtqa%2Ct1_gjahz69%2Ct1_gjaimh4%2Ct1_gjaip2p%2Ct1_gjaixlq%2Ct1_gjaj41x%2Ct1_gjak02t%2Ct1_gjaxv70%2Ct1_gjay8xy%2Ct1_gjb8kbs%2Ct1_gjbwke7%2Ct1_gjc0n8u%2Ct1_gjc0ran%2Ct1_gja9pzd%2Ct1_gja9q0l%2Ct1_gjabeoy%2Ct1_gjacf5k%2Ct1_gjad8x6%2Ct1_gjaes65%2Ct1_gjagszp%2Ct1_gjcntcq%2Ct1_gja8u8b%2Ct1_gja7tcu&raw_json=1 + response: + body: + string: !!binary | + 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 + lvXf//5/LNX5/zB4AgA= + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '17285' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:25:09 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=cpeaoegmkakciohion.0.1630963509305.Z0FBQUFBQmhOb2MxbFhtdlBBb0RVRkkyVno5OVZsNDBDQ2w3RktNekdocllKYlFrdkNKU0s4Y2EyMXI1WUI3VnAwTjlhemc4V1RhTS1YbGNFSVdtOTRKSXhsTG1ZRWNIcWZiLXltLVFkYlNFN2k2bFZvLUJCallJOVBHcG1NZ2hNZmFkNVhJOGNmWHU; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 23:25:09 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '296' + x-ratelimit-reset: + - '291' + x-ratelimit-used: + - '4' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxi2g1 + response: + body: + string: "{\n \"data\": [\n \"gjacn1r\"\n ]\n}" + headers: + Accept-Ranges: + - bytes + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac71329c45401-YYZ + Connection: + - keep-alive + Content-Length: + - '41' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:26:51 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:26:38 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=rQvzKw0OMZ8nHCQJw%2BIQu00wHzUZ%2Foph3igEjFM%2FFc6MtdIJTrS4d9ppd0AxS2nY6CxPoUdMHd4hC%2B8j261i%2FV4B5rh9ydgxNXlykSFNwn2Ct5bfN4s4PbPvDCLrEiudf3a7"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=OMsZOoVYIjD58gEF6j; loid=0000000000edlr3smv.2.1630963335757.Z0FBQUFBQmhOb2VOQ3htY0pnVEVGdkd4VnV2YTllR25CcnE1NGRjdTlsMWdSVXhEbkJQc2VCS0FaUVpuQ1hNRUIyMF9ENGt1bV9Ic05JQ05aVE83TzZRSTVKdWY5bWM5VGtvSDU3ZGlaaV9VT3JSTDFuQnMwZDJEMDF2eFNPc3RJZWhYdG11NkUxczU; + session_tracker=lqkbpjrrapcpqordli.0.1630963597170.Z0FBQUFBQmhOb2VOcGY2Z0dHSTZNZDM2VDJfT0QzNUN5bDZya3ZQSUxybmFqb2Y0WFo4Tk83RnNjMFhsOWc0ZUJPR2c5d0VDay0zNzRBSDJ5RXFvNjZnUTNkOC12U0VZbTJMaV9CdE9XUGhka09xY0RpbW5GRVJDMnI5ZlhKRDA2bGNBVDZnUHNULTY + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t1_gjac5fb%2Ct1_gjacdy5%2Ct1_gjaco45%2Ct1_gjasj4f%2Ct1_gjbxfeg%2Ct1_gjacn1r%2Ct1_gjac9d6%2Ct1_gjacwx5%2Ct1_gjad2l6%2Ct1_gjadatw%2Ct1_gjadc7w%2Ct1_gjadcwh%2Ct1_gjadgd7%2Ct1_gjadlbc%2Ct1_gjadnoc%2Ct1_gjadog1%2Ct1_gjadphb%2Ct1_gjadtz3%2Ct1_gjaduck%2Ct1_gjadxa0%2Ct1_gjaeb3p%2Ct1_gjaeb5o%2Ct1_gjaeg5d%2Ct1_gjaegdn%2Ct1_gjaemkt%2Ct1_gjaenva%2Ct1_gjaerpm%2Ct1_gjaex2y%2Ct1_gjaf5nv%2Ct1_gjaim0d%2Ct1_gjapx5s%2Ct1_gjaqruo%2Ct1_gjarqic%2Ct1_h49ixux%2Ct1_gjaocmg%2Ct1_gjb2jsj%2Ct1_gjbisrw%2Ct1_gjbjbk8%2Ct1_gjaciiq%2Ct1_gjacll6%2Ct1_gjacnpu%2Ct1_gjad0li%2Ct1_gjad2rq%2Ct1_gjahtqa%2Ct1_gjahz69%2Ct1_gjaimh4%2Ct1_gjaip2p%2Ct1_gjaixlq%2Ct1_gjaj41x%2Ct1_gjak02t%2Ct1_gjaxv70%2Ct1_gjay8xy%2Ct1_gjb8kbs%2Ct1_gjbwke7%2Ct1_gjc0n8u%2Ct1_gjc0ran%2Ct1_gja9pzd%2Ct1_gja9q0l%2Ct1_gjabeoy%2Ct1_gjacf5k%2Ct1_gjad8x6%2Ct1_gjaes65%2Ct1_gjagszp%2Ct1_gjcntcq%2Ct1_gja8u8b%2Ct1_gja7tcu&raw_json=1 + response: + body: + string: !!binary | + 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 + 1rfEB/tiqEg9lvXf//5//ArHy1N4AgA= + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '17351' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:26:57 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=lqkbpjrrapcpqordli.0.1630963617627.Z0FBQUFBQmhOb2VoRVIwS0k2dnAzd2o1Y0JZdkwyRnJmd0lLc1dCdkVUUnZVQklmMnA3NTNDYzMwc0pTaGhfbmNyMUlPelJyOGxoN1I2X2tqZUtsM0NvbTJxaE5jckRJZTg3RVo2dDRRUGt2aks3Y0JDbFJZV0dlYXl6aThmUU1sdVNDLXd3VjJIVVQ; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 23:26:57 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '294' + x-ratelimit-reset: + - '183' + x-ratelimit-used: + - '6' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=R5kcDw7QjgxxWJEznS; loid=0000000000edkcdvnr.2.1630959355267.Z0FBQUFBQmhObmI3dlYzVktBdWRhMi0yZloyRnhkNV93ZFY5eS1YMjNNRi1tSUJjWC01SER6SmN3R0RrVGdYcGN5WExXRUtQcEtsNWdwQXQyeXQyUUN1UmN0Z2xyRkNYcHExV2xTeEZqM004MUQ5RV9CNVoyYUpkVHVIOU1GRFhHcm94ZjU3dERJdUM; + session_tracker=rhfglgfbfcbqimjrmb.0.1630964626386.Z0FBQUFBQmhOb3VTbUVBNGR3ZVowd2ZLVzRrTlk4WmJKS0hIRFZESEgzaFZfNFNKZDJXYVc1SDh1OGlDWFdLVVVtX29qSDJSeTBNYk9zVmxkbmtESDFPWEpTSGo0TEJGRldaYjl5V1pVTGpSc19vd01vSXZ1eGhYdjZlOURWWEw4Ti1kcE42X2hiNUY + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t1_gjacwx5%2Ct1_gjad2l6%2Ct1_gjadatw%2Ct1_gjadc7w%2Ct1_gjadcwh%2Ct1_gjadgd7%2Ct1_gjadlbc%2Ct1_gjadnoc%2Ct1_gjadog1%2Ct1_gjadphb%2Ct1_gjadtz3%2Ct1_gjaduck%2Ct1_gjadxa0%2Ct1_gjaeb3p%2Ct1_gjaeb5o%2Ct1_gjaeg5d%2Ct1_gjaegdn%2Ct1_gjaemkt%2Ct1_gjaenva%2Ct1_gjaerpm%2Ct1_gjaex2y%2Ct1_gjaf5nv%2Ct1_gjaim0d%2Ct1_gjapx5s%2Ct1_gjaqruo%2Ct1_gjarqic%2Ct1_h49ixux%2Ct1_gjac5fb%2Ct1_gjacdy5%2Ct1_gjaco45%2Ct1_gjasj4f%2Ct1_gjbxfeg%2Ct1_gjac9d6%2Ct1_gjacn1r%2Ct1_gjaocmg%2Ct1_gjb2jsj%2Ct1_gjbisrw%2Ct1_gjbjbk8%2Ct1_gjaciiq%2Ct1_gjacll6%2Ct1_gjacnpu%2Ct1_gjad0li%2Ct1_gjad2rq%2Ct1_gjahtqa%2Ct1_gjahz69%2Ct1_gjaimh4%2Ct1_gjaip2p%2Ct1_gjaixlq%2Ct1_gjaj41x%2Ct1_gjak02t%2Ct1_gjaxv70%2Ct1_gjay8xy%2Ct1_gjb8kbs%2Ct1_gjbwke7%2Ct1_gjc0n8u%2Ct1_gjc0ran%2Ct1_gja9pzd%2Ct1_gja9q0l%2Ct1_gjabeoy%2Ct1_gjacf5k%2Ct1_gjad8x6%2Ct1_gjaes65%2Ct1_gjagszp%2Ct1_gjcntcq%2Ct1_gja8u8b%2Ct1_gja7tcu&raw_json=1 + response: + body: + string: !!binary | + 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 + 8C03+pb44ECMJKnHsv773/8PGqp3bFF4AgA= + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '17354' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:44:07 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=rhfglgfbfcbqimjrmb.0.1630964646909.Z0FBQUFBQmhOb3VuTkhnNUV1UWQ5NEJnc0c3WEZhZWktNm90NVJZUUc0XzVrZEZQNElBbGVYbzI1dzVBQmVUVmVkbmNPaFVzZEJzR3VxZDBQWlIxSVFKMVl3QkJUMVFTa0lzQWh0VnhHdHQwMTNELTVoTEs5a0VHSG8zV3IzeHFRRkd3ckM4c2JGVEY; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 23:44:07 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '298' + x-ratelimit-reset: + - '354' + x-ratelimit-used: + - '2' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +version: 1 diff --git a/cassettes/test_submission_comment_ids_search b/cassettes/test_submission_comment_ids_search new file mode 100644 index 0000000..393566c --- /dev/null +++ b/cassettes/test_submission_comment_ids_search @@ -0,0 +1,485 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhzrl + response: + body: + string: !!binary | + H4sIAAAAAAAAA6vmUlBQUFBKSSxJVLJSiAbzwCLpWYnJpmlJSjqoQimVpuhC+SboQsVZJmmoQkkV + aanpSmCRWK5aACYuF1F1AAAA + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68aabfe3c8cd4009-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:21:54 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:21:54 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=l4tbQlLCwzgg4SqtHddfQvLNTpnE7%2FnzGY9peqiZYYQAop4RsVBLpKq44Vy0o9TdJtp5%2F%2Fna6tuCTXiQHncb9NnaXxjwM3a4s66sM5MwWaf65GnaPkY9aKAr%2FthUysSZLVrd"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhwh0 + response: + body: + string: !!binary | + H4sIAAAAAAAAA6vmUlBQUFBKSSxJVLJSiAbzwCLpWYn5ybnpSjrIQklGWcVZaEKZxUXlaEJZSdkW + SmCRWK5aAIGijjJiAAAA + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68aac0030c3f54d3-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:21:59 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:21:59 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=e1Fo6qjViz1H3l99YniRkx4D5b6nGjdm%2BGCcNx5KilixwTv%2FgGHkBlf%2B%2F%2Bb5QTFyHopE1DZYfmj%2FVrdMnyhb%2Fkl47t1lOuZ0AUxWAso%2BJ0CtQb%2BW%2BhPfj1ay0q6%2BfhL7D2Xs"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhv53 + response: + body: + string: !!binary | + H4sIAAAAAAAAA13MsQ6CMBRG4Z2nuOnMUBsC1VcxDhcwUlqbgkWLxHc36dZ/PN9wjoqISIwcWVzo + mivLY+bBmEXUJTnXIvmwAY3SGSS14muKCyN92zOQeU4NUlABKTncz80pAVmpIlB6dxJo12kvqde2 + fwF97L0raZBeb0gre5HlVv3+Po7oeGwBAAA= + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68aac0094fe2cac4-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:00 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:00 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=t2tf%2FtJpY1A3B8WoUeqBu7tw%2BDWznCl2ILLHTE%2FsJXqCE4GjSdqCLLhdCtDP4IB%2FPACH5r42xPSYKrU6%2BUx%2B%2BKv5GQewnujRvKK9EtE9lR0WwsgHXu9knd09xJooSEy%2Fm7DL"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhm7b + response: + body: + string: !!binary | + H4sIAAAAAAAAA6vmUlBQUFBKSSxJVLJSiAbzwCLpWYmWBVUpSjqoQoUGOWhCSan5lWhCyWmm2WhC + KRYVZmhCqcVmpmhC6cVVBahCyXklyYVKYJFYrloAdvPG464AAAA= + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68aac00f7fc153ef-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:01 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:01 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=AZ4tgq8k6rz7k7R3eYHr9pATSPXlv0L2RtxifyIv77fuVbxBpGngWebpIz7pzK45G7%2FQxP3RJDp38I7deS6hNNq9ob6RnLOpwDk9H4XJ9dM4BembmRvCrp2FKG6n%2F4tC7DUf"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhm3s + response: + body: + string: "{\n \"data\": []\n}" + headers: + Accept-Ranges: + - bytes + CF-Cache-Status: + - MISS + CF-RAY: + - 68aac015b8295485-YYZ + Connection: + - keep-alive + Content-Length: + - '18' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:02 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:02 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=wZ4np4GpoA96fbFfLqEgvSdNZ5DWHe9bruL80BkJBgUdcj79rqyW2wuClH4toUuz9mORS6Jw9tuU5QlOVTYfez5PMvDgA38yE2KqyZAnLhhZ2qVzCW6UtEKbgMvPL2NUGeRt"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhg37 + response: + body: + string: "{\n \"data\": [\n \"gja8u8b\"\n ]\n}" + headers: + Accept-Ranges: + - bytes + CF-Cache-Status: + - MISS + CF-RAY: + - 68aac01bfb353fdf-YYZ + Connection: + - keep-alive + Content-Length: + - '41' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:03 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:03 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=i0d%2BzHZJlglugOu8C5ej1P5E5xcXqgwPsgMGWtYzUagRU81G5gOqINgz4AWzSXL3O1qmTCCKTEEFO5UPrxoXfdsP7K7HXfmNbOxe4I7tKWhImgmRhyvJVs%2BZ%2BDhQ5DoaSLCE"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhak9 + response: + body: + string: "{\n \"data\": [\n \"gja7tcu\"\n ]\n}" + headers: + Accept-Ranges: + - bytes + CF-Cache-Status: + - MISS + CF-RAY: + - 68aac0223fe93ff7-YYZ + Connection: + - keep-alive + Content-Length: + - '41' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:04 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:04 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=uifoqSgl6fdbNx2%2FPTn7iSPMjarK1yZ8MuXeX41wus8InfGHWHR9RGCm%2Fe1RII5lBWAmUxXxLnkPaV6CANBRMY62iuLqXCZHrr2d0OGqTj4LER597trtAYw%2B0ddj7i2aCfGd"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxi2g1 + response: + body: + string: "{\n \"data\": [\n \"gjacn1r\"\n ]\n}" + headers: + Accept-Ranges: + - bytes + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac3ac9cfd3fcd-YYZ + Connection: + - keep-alive + Content-Length: + - '41' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:24:29 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:28 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=dYP9yuQ3fy2RD24azO%2FcFj58X1O8sw68QtOoDx0Zr0LstvFgEJg5%2BdOtVRx%2BGraXvmN61s5TLOGk72ZWRV6qfNJ0aRvKD5yAoa%2FN%2BuAaix9oG56UjeW0AVe7D2cXwrm%2FCaxM"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxi2w8 + response: + body: + string: !!binary | + H4sIAAAAAAAAA2XQuw6CMACF4Z2naDo7IFiJvoph6EULQi/UAlXju5uwcTqeb/pzvgUhhFDFI6dX + ctvWJvrJ5ZoYPexIVeMZiccVSTY5rR2SVg3SKCSSdRk5fUTynUCKnxpplgNS4iXQXdQ+I+aQNFMZ + KYtkhohkF44UvEFK1RvowewC1JsSI3xiL6ApzFgfpn73ane69GlOdJO2+P0Bm838pRcCAAA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac6541d78cac4-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:26:18 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:24:39 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=djFAZjxy7JhuS%2FweVamLhxxN5%2BgLjGLh0zLoqsr5X9fJUua4qAIlYZfRTEaaF3xelkNbm5p25PYoHcUlvL81Nz6ngHqif2l6eBCkwt9167ZPDHDcCckbpdl7chJyWwhxSnnn"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +version: 1 diff --git a/cassettes/test_submission_comment_ids_search_mem_safe b/cassettes/test_submission_comment_ids_search_mem_safe new file mode 100644 index 0000000..6191eba --- /dev/null +++ b/cassettes/test_submission_comment_ids_search_mem_safe @@ -0,0 +1,430 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxi2w8 + response: + body: + string: !!binary | + H4sIAAAAAAAAA2XQuw6CMACF4Z2naDo7IFiJvoph6EULQi/UAlXju5uwcTqeb/pzvgUhhFDFI6dX + ctvWJvrJ5ZoYPexIVeMZiccVSTY5rR2SVg3SKCSSdRk5fUTynUCKnxpplgNS4iXQXdQ+I+aQNFMZ + KYtkhohkF44UvEFK1RvowewC1JsSI3xiL6ApzFgfpn73ane69GlOdJO2+P0Bm838pRcCAAA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac0734be1546d-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:17 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:05 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=kgXb4iMGgGB0M5nxrFB4Phs%2BjngXYp1%2FQIAuC%2Brcv5FvwBbblFqVhO5wk2eZLncR4fZBgFqTS%2FMt3eqbZIgqMeQ9TwpRzNCqel7A9Pc53QlfNuPh27si%2FQKDHJCqkhVPGLs5"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhm7b + response: + body: + string: !!binary | + H4sIAAAAAAAAA6vmUlBQUFBKSSxJVLJSiAbzwCLpWYmWBVUpSjqoQoUGOWhCSan5lWhCyWmm2WhC + KRYVZmhCqcVmpmhC6cVVBahCyXklyYVKYJFYrloAdvPG464AAAA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac09f0c9e549d-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:25 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:12 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=XYSedK8u33nu7BBLZLAVuPiwYkzNsGuVOwj2B3cqd%2Fko9gk2F7%2BUxqAfRsQKPKdzSQSsxdm1EBsBcPbCaKOTQ0D0ALOfA%2B0CohPoeGGmDsXO1bIpMX7HNJX6976Q%2FKOJAYHf"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhwh0 + response: + body: + string: !!binary | + H4sIAAAAAAAAA6vmUlBQUFBKSSxJVLJSiAbzwCLpWYn5ybnpSjrIQklGWcVZaEKZxUXlaEJZSdkW + SmCRWK5aAIGijjJiAAAA + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac092996d4004-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:25 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:11 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=XmyH%2BuI%2Fw7tvv8%2FFOMUU1K0XUad5i6VezZRoZKLxD9Kcn1Bp9R5cVEpXfDx7uASLl%2F047svnil4lERIsRI3TGCTB5u6klYGVieEgAHB%2B4fUiuHwBWrRUFV%2Fj4Ub1ZwxNsND%2B"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhv53 + response: + body: + string: !!binary | + H4sIAAAAAAAAA13MsQ6CMBRG4Z2nuOnMUBsC1VcxDhcwUlqbgkWLxHc36dZ/PN9wjoqISIwcWVzo + mivLY+bBmEXUJTnXIvmwAY3SGSS14muKCyN92zOQeU4NUlABKTncz80pAVmpIlB6dxJo12kvqde2 + fwF97L0raZBeb0gre5HlVv3+Po7oeGwBAAA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac098ec0454a9-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:25 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:11 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=NJgbx1pPPWK8tzxMu0uieClFHgmWvvXk9yC5fFJxE9dF4l71dJ8hbSQTjyhZwE6KmIxOirC99v7p3zW5y10w9v9YI2KLUE56leAMmYpeE6rFP5EhUiBeBSlvxIfYCeDsuc42"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhm3s + response: + body: + string: "{\n \"data\": []\n}" + headers: + Accept-Ranges: + - bytes + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac0a54ca6548b-YYZ + Connection: + - keep-alive + Content-Length: + - '18' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:25 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:13 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=4j5NSVVrQHyUAtVcxHg8iapHfC4xajuZAc8g%2B3jZSixUESwdBDe3sPUD9t0Mz6LVI6QfCt8Btwyq%2FisCLoS7H%2BVGjuShcfvH874KdGcQOMChMTaWVuQugTO%2Fhumes8gcuNXI"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhg37 + response: + body: + string: "{\n \"data\": [\n \"gja8u8b\"\n ]\n}" + headers: + Accept-Ranges: + - bytes + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac0ab8b7053fb-YYZ + Connection: + - keep-alive + Content-Length: + - '41' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:26 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:14 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=x7z9etb3Lv3R9lpy5AMzsiv0pR1Qo65TBh%2F%2F6pUducQJV%2BddbiifW%2BlQ9I5JZgQLVZxRcDEzZZsByWgTTcG7CrR%2Bb6KuwbG3WYaN28BrgxoQZl5UrHf0sT8Ivn1A0dIraqGv"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhak9 + response: + body: + string: "{\n \"data\": [\n \"gja7tcu\"\n ]\n}" + headers: + Accept-Ranges: + - bytes + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac0b1ca7ccab4-YYZ + Connection: + - keep-alive + Content-Length: + - '41' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:22:27 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:15 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ONpseJcSyq%2F2P8T7Thbsf0JKAXTyuRNP3uN1njwRczN68Z0Y8u26JS5KinkcUncum1Y32QSYMhUACvLQg%2FdZ2ku809ebCuY9JutqB58Oszxzd%2FfHl%2BlOT8agz7keAOMtNy%2Fd"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/comment_ids/kxi2g1 + response: + body: + string: "{\n \"data\": [\n \"gjacn1r\"\n ]\n}" + headers: + Accept-Ranges: + - bytes + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aaca046904f98d-YYZ + Connection: + - keep-alive + Content-Length: + - '41' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:28:50 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:28:38 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=jOLEowvySlu1BZBsekUFZ650ytyplKbB5cJw50I7oOrerRy0egKqqEZAGHK62lBk2b6QO5OBDvJIb9C%2BG2%2FFLHt8ocIYZ26zDb2VaLoLaMpuaPAVCVXYT%2BuKadA9z%2FqgY9f4"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +version: 1 diff --git a/cassettes/test_submission_praw_ids b/cassettes/test_submission_praw_ids new file mode 100644 index 0000000..db49aeb --- /dev/null +++ b/cassettes/test_submission_praw_ids @@ -0,0 +1,259 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?ids=kxi2w8,kxi2g1,kxhzrl,kxhyh6,kxhwh0,kxhv53,kxhm7b,kxhm3s,kxhg37,kxhak9&filter=id + response: + body: + string: !!binary | + H4sIAAAAAAAAA6vmUlBQUFBKSSxJVLJSiAbzQKAazgLLZ6YoWSkoZVdk5BoXK8GlanUIqk/MtiRJ + fbqxOSnqM43SDUkyv6oohyT1ueZJJKkvzzAgSX2ZqTFJ6iszzEgLn3ILJPVgVixXLQCfBu1g9gEA + AA== + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aaa0060bc6cab8-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:00:08 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:26:04 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=lJkhTOgfpSwPle2Kp0LxXwExFwlX72xGLaKBZhJCQg2EFP2OUais5M5AEmVcJiWmFnHr7AxqIsKSVA3mEX3HkEstq8jT7P1U3T3t%2FPvRuxaBZesfNr8LNbF8NLx59bTckDRy"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3-27=":443"; ma=86400, h3-28=":443"; ma=86400, h3-29=":443"; ma=86400, h3=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=rMnJXdgWbcPi5FKlAW; loid=0000000000edl180ip.2.1630961281900.Z0FBQUFBQmhOb0U4Z0dmdWZmMmJ5V2tGeExMekVuZ2syd29hQkxvRDZiYzNyckRJc3VfaC1zbHFhZWxDMnliNEZSWTJXd2c3T2VUaVlFMDJaYV9Kb2RvQ1FqQ2tPYUpiSVI3RjZOdTdqbTVONzY1QkxYM29PalF4T1h5LU5NdXdSM0owUWJnMTU2blE; + session_tracker=jdhkgkbdkjemrqkpeo.0.1630962002066.Z0FBQUFBQmhOb0ZTbzVoTS1zSmxhOGZXejc0QVlRMW5yYmtCUkhNWTJ4bUNWYkNGbUlRS2otWjc1WGZzemlOUDFtLUY1cmV5TG9rZFFUY0tuWUNkdlVTNDRKWXZrd0tQSDZLRmtrOEJsWHFUeVAySG4ybm40d0NibmdGaGFuYU53bmY3N0NrVkVsazI + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t3_kxhm3s%2Ct3_kxhak9%2Ct3_kxhg37%2Ct3_kxi2g1%2Ct3_kxhzrl%2Ct3_kxhm7b%2Ct3_kxhwh0%2Ct3_kxhv53%2Ct3_kxhyh6%2Ct3_kxi2w8&raw_json=1 + response: + body: + string: !!binary | + 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 + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '7396' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:00:13 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=jdhkgkbdkjemrqkpeo.0.1630962013008.Z0FBQUFBQmhOb0ZkQVRxb3lCU3BETE4yRThYV1J3SGhmeWM0VEYtVWgxTWU4SU1aYVJUbmNtSThpZDFTSVc2eVdSTDlxZ210ZXZBb0VMdC1IMUJ1ZG1Pd2QxbnNCNTk4eHhhb0d4YkFza0t4cTJtNWYyaWt1X3d3SndKN0E3RjduaU1OLUpONEF3dkg; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 23:00:13 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '298' + x-ratelimit-reset: + - '587' + x-ratelimit-used: + - '2' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +version: 1 diff --git a/cassettes/test_submission_praw_limit b/cassettes/test_submission_praw_limit new file mode 100644 index 0000000..c9ee875 --- /dev/null +++ b/cassettes/test_submission_praw_limit @@ -0,0 +1,2966 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=100&before=1629990795&filter=id&filter=created_utc&size=100&sort=desc&metadata=true + response: + body: + string: !!binary | + H4sIAAAAAAAAA62ayW7bMBCG730KQ+eg4L7kVYrC0EIt1mpSsmwHfvdCTpDatSbLoD45IvVpMjP8 + Z0jr5cdms9lEWTzG0fPm1/Wv5fPy/u06nnoXjy7bTmMaPW+oYtZaoiR/up9WZdHzJhpSWqQ2eh+6 + PH0LKwmDsK7N0VihKYi1Cok1RhADYMk+FVispkRA2MQzLFYpDvmWqB3aWik4kAnJOfRoa7lSFsLa + kWOxzBgDYWmdoLFKAL5NTid/wGKJopC1J3dC5y2RsLXOdHgsAa3NZoPGCkNAbFfisZqD2CZGYrU1 + ErRW9zs0lhMFYdkO6wRtiAKkJjn67ozFag3m7bEfayxWKQNam88nLFZIAoVsPuoMi2WWQyGb6zAj + sUpzJgHsIR8IFiuM1QB2Os0ei+XcQiGb+gKNZZRBCTbltURipTQMsnZkHtt+yA8SLPg9djlIwiyk + YH7fYmVcKGUh3+79qcViOWOQE4YxxvYJghlKIexAczRWCMgJQ5NghVFQC5bIIe8oEsuNAruaftdi + iw7XVEC+7bkJWKySHJKabj5iE4xLAmPLWGOxXIEFvWPcoLES7Go6mmC7cc4oqGBtw7FtMyeSQwnW + coIOGeECCllLArbyLtoI9bfNYW6wWE0UFLL62GGLDlNCgNi9wSoYk4ZCTqirGe1bKQXUftR5KPBY + sGOs88KisQzsauo09FgsowzC7uwO7QQGd+M7E7DVgVFNoUZ0Jwo0lggFhawa9BGPhY4pkqoPCo1l + 4N6h6ijWWmok2NVUdD+jsRzswSqiTmgsk1BBL08pNm+p1gw6qyn9gMdKBWVCOXQVFqushpZDWcUc + jZUWdELWNHgshZr8Mt3tsVipOGgt01i9pUJAR5dJ0R4GNJYbBWJb9OLllkEJVhRjicYysJYVJsPq + LWVGQ1JTCInd+FOqwY4x3zt0JhALY4usRmMZBbF6wDb5xFoFJVguphmNNeAOPefnFo1l4J7XHQK2 + OhAjwF2k64hEY7mEOkbXJNizcSItg5yQBYLHMgEJY7Y7YjWBCHi7lyUDtqshjIAlMi1b7CojVIGn + dml6xp6NE6I5FLKUpj0aKwW0ypKzQuctoRrybTLNyAMrsxy6Q75N9uUZjeUwtiUFFqushjQhPkwW + jRVg2xzvWYrFSq2gBIt3dYPGKgNpQlwdOBorwdOPuKwsHstgbLLDYoXiYMjMEY8V4A9bsfIxFsvh + M0Z78gMayyxUy+zsEjxWKhBLGR4L9gn2UN+2zddvv1/nRq0b47d3Qv4+JIrz0fnoedNNTfN0c7ko + tqE6u+Wht79yRPFQbQ/Oh6rvlkfynyS6GU1c3nv39wUNfevXyIXtfnL+dGfBdWT98iuy75vVketo + XjWv9q+Pf054n9VOYbx7XQb6vHw648obnW/Dp4+9uyVMiXdZVn3Njvtb08p1qYu+fNfvL828fDrr + 8vS/HObjrnDfc9j96nj5nsua8S5Pv3zz5X957sMZvz/2axTKfmqWVf8LjuT6E4CIXRfAtuvHdeY9 + 6x9GtCYVrwO9H9fX9X3sosyF9D57L2vyGLmjS6ex6rvtWLVu21ZNUwWX9l22LDYlf97uSv7Kw68H + vXyChfbHShCiqsvccbHUh1vFa6r2ul4jSu6U8EZto9FP7nbsmunhwaoVJ328Jr6c/1/K9ctnMV91 + i3dhasaw9W6cfOeyh4IRythnj0IY5XHVXKc/pExdDcP6yJSmLoR8WuT8odMc+zG+DojVxFmtZm/p + +Zp9/1zfjqdhuePOy7dzQLV+VONbjy15m237abkvj5vgbseW/2H75tMlnzXRyvx4df/lDxZNSC3Z + KQAA + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa8e49399f54d9-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:48:01 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:25:40 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=C2H0BwCBDVE1NqICGLDdumnBwAbm0mliWYiuDjHlu7rDauumLye82sV7Rd3fdpGkFhH4FaEanXBYAVTH2xdvzDLfzOf4JNex1h2o6fL6itwl18OXhvANS52g%2FJxjhhvX%2F3gA"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=100&before=1601608395&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1598454795 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa2XKrOBCG7/MULq5Tp1q7lFdJpVwYhAGz2CBi7JTffQonlTEndJY+M3MzvrIt + 8dG0/l4k++VutVqtojQOcfSwerx+ml4v7++u40nn4+DT9RCS6GHFNDANxllzP59WpNHDKipFfbZN + 9D50uf8JVlhmEWx11iMZqxzDsGPMqFgmJWqt3xGxyhlnMGt35b6iYrVxAsPaQ0PFKjASwZb90VOx + wkrMCWXe5mSsAGzJymR7ImKtthoLhzwXz1QsY0oj2KwxVN9a4AwwbCICEWuccZgSMmN6MlYKTLcZ + P5V0LKqEjLeOjGUO9S1Iak4wVghMCf6Q7qhYI9A07rO8pWK1AWzJvGmoujVKMszatG+pwWskVwrD + +jOjYwG11mcxFcuNxnSbjBtLxTKLCiypmjMRq51RmLWb47glY3ElbAJQw0EbZ7Gis9mcRjIWGCaw + DUskFauMxfJt3CQ1GatRJcRV05CxCrDEGO/UkYoVVmFLFsOpo2K5chzBuvoIZKw0mBNctduTsUJj + +dbt0pKM5Q7TrSvbjI4FTLeuqMi65Qy3tsgrMhacw7C5JwcvUxy1dgMxGSsVKrCY3INp0LjAWGPI + WI72t3YsNBGrnFWYwGwgR5lygOrWVoLaLCmrGSYwmycxGavQcLA5ucmfsBLHpn+AFTiWU7HGobq1 + 8WjJWInmBKu3DRkL6Mbf8rigYrXVaJRBWpGxUmJOMMdM0rGCoVhHTTVKOVRgpucDHauwPsF07TMZ + a9BzMLMvHRkLEmubTbklL5kUDhOYSbuMjhWob1NNDgf+iRJYR23tFDMcs1Z35CWTRqNYdQxUgUml + GOYEVaiEihUM3e4pXlF36JJzwAQmj+SzGqEsYCVSHAS1/RDCoRsokdQ1GavQE1Hh9iUZyxSWxoU+ + H6hYptHqwI9KELHcMXQrzVNJtZZrEFjbzNoDdRfJpUAFxmJOPVThAlAsnI7UcOBcoZtTeNYDGYvv + IqEPPR2L7h2gL6hnjBw4en4LG0ZtRJnT6GkzyEBtm5kBiaRxfs431EaUKSaRJp+fzgN1A8XAAFLL + +Bi6nIxlwDBsc6aeLIExWJPPR9Zs6Vis8vIRAjV4QUosg/EjPyVkLGC/nPLnc0xNjCAsjh01tToA + 1xxbsufSjGQsAIpNGjKWGdxat6du/AEA+/GFD4eaqFvpjBMWw4p6R8ZqZTAs5CUVKxW6ZIF85C4d + UxbzbS9CQcYyhtQy3p18S8WCQ63tjuOtwK7vnl7nRrUP8dt/Qv6+SRRnwXcTWjkrlTS3RT2Kt9t1 + X5z9NH57zB/F+2L97Lu+aJvpxuIXRDejG5+1nX//P4UVM6jv14fBd6eZHdeR5a9fkW1bLY5cR7Oi + en2K5fGvCe+z6qEPsz/NYK+XL2dcecF3df/lbWeX9MOm82lafM+O+aVJ4Zvkpkn66vX0rZmXL2dd + 7v8ph3Vxs/U/c9g8Rl5+5rJtmIn/2xdf/veeq8Iswv97z3064+lzv0Z93g7VlDUf8RhYvgOyYtfU + sW7asMycs35jREtJ9nWg7cJyRpyvXZT6PpnH/WWpvER+9MkQirZZh6L267qoqqL3SdukU5ri5tcs + V78n1scP9eYeL1R3C4sQFU3qx8nSrr+tFVVRXzNdxGBWQ26qVRS6wd+OXZXef7BqwUmfx8S39f+t + LHH52Zr/i9Z+JzK/tHZxETvfD1Xo150PQ9f49ENj0Odxl34seFEWF9V1+geB74r9fnlkSBLf99kw + lW3++2hoQ3wdkIsyX+xa3oLpNVZ++34dTvvpipmXb+egVflj1b312BRl6bodpuuyuOr97dj0DOs3 + n07PwgDuXp1/+Qv8o+i4xSsAAA== + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa8e4a4f1c5419-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:48:01 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:25:40 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=pJCpFWu2W%2B4i%2FJmrxYWQvEMbakSnFs4VaYCB5sx8%2BfesClt33n6ikMy%2BuLfO5i58SBcKjxNhknW0CuDaMH%2BwZUfJoaFjgTA1k93C9JkRxgr%2F4T9%2BGjntqa9IdRt8NvzwUYvN"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: grant_type=client_credentials + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - close + Content-Length: + - '29' + Content-Type: + - application/x-www-form-urlencoded + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: POST + uri: https://www.reddit.com/api/v1/access_token + response: + body: + string: '{"access_token": "-9C43B5v_80FIMUi2ieWWlmtTcTL2BA", "token_type": "bearer", + "expires_in": 3600, "scope": "*"}' + headers: + Accept-Ranges: + - bytes + Connection: + - close + Content-Length: + - '109' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:48:01 GMT + Server: + - snooserv + Set-Cookie: + - edgebucket=rMnJXdgWbcPi5FKlAW; Domain=reddit.com; Max-Age=63071999; Path=/; secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + cache-control: + - max-age=0, must-revalidate + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '297' + x-ratelimit-reset: + - '119' + x-ratelimit-used: + - '3' + x-reddit-loid: + - 0000000000edl180ip.2.1630961281900.Z0FBQUFBQmhObjZCT1p0cDJYNVZ3eWZ6OU5jNzA3ckt4M3BPb00za0lmY0hmOEUweE05MnIwSjdJb1ZKMjZJS3FNazlCcERuOW9IM09aMmRVRVFGOGdDWHU4cm5wRUs4NEV1Mkc2bzd0MGxOaGg3X2szQ3N5T2dPbTY0UWF3OXhpQ2szQjBVNC04M00 + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - edgebucket=rMnJXdgWbcPi5FKlAW + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t3_jpsb6k%2Ct3_jps9iz%2Ct3_jprevh%2Ct3_jpqwe5%2Ct3_jpqvmr%2Ct3_jpqqts%2Ct3_jpqko7%2Ct3_jpqjsx%2Ct3_jpqfd2%2Ct3_jpq6so%2Ct3_jpq3gn%2Ct3_jpputb%2Ct3_jppfc4%2Ct3_jpp7gu%2Ct3_jpovn2%2Ct3_jpocxp%2Ct3_jpns4y%2Ct3_jpnn4n%2Ct3_jpngth%2Ct3_jpn6uq%2Ct3_jpmzbm%2Ct3_jpmwqo%2Ct3_jpmwc3%2Ct3_jpmnah%2Ct3_jpmbw4%2Ct3_jpm5t8%2Ct3_jpl3ym%2Ct3_jpl0c9%2Ct3_jpkut4%2Ct3_jpk5l1%2Ct3_jpk47n%2Ct3_jpk0ko%2Ct3_jpjfel%2Ct3_jpibpl%2Ct3_jpi39r%2Ct3_jph7j2%2Ct3_jph3x5%2Ct3_jpgo3n%2Ct3_jpgmpl%2Ct3_jpginc%2Ct3_jpghnj%2Ct3_jpgf4z%2Ct3_jpgel6%2Ct3_jpgb1f%2Ct3_jpg0vr%2Ct3_jpftik%2Ct3_jpfnft%2Ct3_jpfle2%2Ct3_jpe0re%2Ct3_jpd3pw%2Ct3_jpczs9%2Ct3_jpcmpo%2Ct3_jpcior%2Ct3_jpca28%2Ct3_jpasl0%2Ct3_jpalvy%2Ct3_jpa8d3%2Ct3_jo8bcj%2Ct3_jo80f2%2Ct3_jo7n3f%2Ct3_jo7kh3%2Ct3_jo75p9%2Ct3_jo6ytz%2Ct3_jo69q6%2Ct3_jo657z%2Ct3_jo5yoh%2Ct3_jo5uo6%2Ct3_jo5hvj%2Ct3_jo5c7w%2Ct3_jo4lwa%2Ct3_jo4gbn%2Ct3_jo3w5c%2Ct3_jo3f8t%2Ct3_jo35ih%2Ct3_jo2xzq%2Ct3_jo2vqd%2Ct3_jo2me1%2Ct3_jo2l51%2Ct3_jo2b5t%2Ct3_jo28zu%2Ct3_jo28ce%2Ct3_jo22r5%2Ct3_jo1ze0%2Ct3_jo18ud%2Ct3_jo171v%2Ct3_jo0mq3%2Ct3_jo0dgz%2Ct3_jo0516%2Ct3_jnzel5%2Ct3_jnz0nr%2Ct3_jnyyii%2Ct3_jnyaid%2Ct3_jny993%2Ct3_jny23r%2Ct3_jnxx97%2Ct3_jnxtf6%2Ct3_jnxqcu%2Ct3_jnxf3h%2Ct3_jnxbr0%2Ct3_jnwlda&raw_json=1 + response: + body: + string: !!binary | + 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 + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '55266' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:48:02 GMT + Server: + - snooserv + Set-Cookie: + - loid=0000000000edl180ip.2.1630961281900.Z0FBQUFBQmhObjZDcExSVmFtNDY1bzdQdGNJTHp4UXVmaWpsdm0xdFo4MklucHFoY3BZSkV1Q0cyd3NBLXJmMWxaaHhrWGNGWDY4eDI2bzU0alQyd3NZQXZQSEF0QWVfX3l5aU9RdDlsNmROTmdRZlJuTTVPQTkyaDVwd2g0Ri04S3ByMHFJN3FWQWY; + Domain=reddit.com; Max-Age=63071999; Path=/; expires=Wed, 06-Sep-2023 20:48:02 + GMT; secure; SameSite=None; Secure + - session_tracker=kiqkkohrenehhmoqlf.0.1630961282011.Z0FBQUFBQmhObjZDRnFGMXdxZEhtbWs0ODZodk1TYUFKb3lieTI1SHk0WWdPcnhtXzQ0QURzdnQ5LUMxMXVhSDNjZXEwTTM5RkRlejFEMzNTV3dBYXhVZ0trMllKNnJJd205eE1qTmlmWUItUkxwdjJ5X3VwRXIwUWJmUEtCNnRhSkpVRWNWZHdZeHE; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 22:48:02 + GMT; secure; SameSite=None; Secure + - csv=1; Max-Age=63072000; Domain=.reddit.com; Path=/; Secure; SameSite=None + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '299' + x-ratelimit-reset: + - '118' + x-ratelimit-used: + - '1' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=100&before=1614222795&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1611069195 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa2Y7aShCG7/MUyNejqPclrxJFyNht3F5xuw2eGfHuR0A0wRnXLJWTc3O4Arr9 + uajlr2qL5y+bzWaT5GlMk2+b79dPl9fzy7vrehZcGl2+nWKWfNtQRQVjVFrysNzm8+TbJmnCiZc8 + eVk6P3wGS4xUAPY45AGNZcxA2MIOaCzlHMLm9Q6PpTBWp2gsIaATdvaIxFIrBGgtpY9YrFFaAtip + fbJorCAMwpZDhsVKSjWAHePRYLFcKwthORVYLJMGClkoa3TIqFaQE4IasZpAidZQyIaoCzSWWgFh + m7ZEYom1DBLGwROOxkoFYnNl0FgOKtiQ8hmNZWDeDtbirSUaxKpQY7HmjZCJ5oTFKkmgXnbQosVi + JQelph+0Q2MpB7Fd67FYbsG87RVDlwNXFsrbnqkOjSUSkppuYli9JcwqqPN20TRorKagtUHssVhi + LIWwno04LLWWC6gc2kdrsVijBDQntL2gWKyWBEqw1pAGi1VUQ9im7zMsVgoKOaFx+oDGwprQpFpj + sUIYqBwa6vgfYAWI3Y14rAR9S+YSjeXgfFs/xSMaS8Ehvz4pdIJxBoasrvFYZkAFq3NbobFcQ02n + VtOAxVJDIQWrniS6HKjmUN5W84mhscqC1s67iMZKA81g1TG0WCzRDMqEqlLokBHOoSqr0Cd0aqzS + kDBWfC/QWAnKeEVOWAUzRoKZ4Ltq/jvYiMYyCbVI7+sjHss0iFUBi1UaPEWWc9ZhsdIKyNqydhaN + NeBxr/RDwGMp6ARfPKKxEpTx0j1iRzvDqYGqbF9atCYwDT5Z2qctR2MphZywZx0eSzQFsdizAzVU + gjJeTEGjsVRA1haH7oTFEk2hqaaoBVrBiDSgE7xVaKwAFazYW+RzMKqtlVDxFqnAYwko424+Yn2r + jVAg9tA2f4AlILaesFhtwbHZVUVAYzk4Nru0YmgsMVCCOe2xnVcrDTuB93isAo/SjpkRjZXgcc+R + QaKxHGyR+Vw7LFbCxZuPT9hBVAsCHk5zabFNR1MLtsisoE9IrDIMfAS0Mz02E5SmHLI2PZ2wLVIp + zqCQpQeLnWqUsApyQrpTAo014JEktdWAxsLdIaUHdMi4otCcYOcM7VsuwSHfzgL7CEhayyFrzcwM + GisMdC4z4x6bt9JY8JG76Y7YGUwyAx6lNQk9EiusAkc7JalDY4WAnn4oXkY0lgpo/FCk9lis4QZK + MBmz+9Hu+u7HbW/Supj+/E/Ir5skaRFduKEpUZbaO11I0v1+O/ond1kn5H7h4LdHF0bfd5cb868k + uVvduaIP7uUfCkwvoG7cDpMLjws7rivrX9+Qfd+srlxXC9/cfsX6+vuEl13tNMbFn2ag1/O7O668 + 6EI7vnvbxSXjtAsuz/3H7FhemnnXZXdl8N7rx4d2nt/ddX74txwW0m7vPuewZY08f85l+7hI/g9f + fP7fe66Jiwr/7z335o4fb/s1Gct+ai6q+R2ugfU7ABG7Sse26+M6c8n6jZGsiextoQ9xXRGXsUty + N2bLuj+vtZfEzS6bou+7bfSt27a+afzosr7LLzLF9Vdy1wl/Cev3V/3mAW5UX1aCkPgud/PF0jBu + c9fE1N23jMa3V8FLKFm0krumlcQwLa65Jvz4yrgVX71dGh8ugw+Jxflzof+L1n6kQN+1djWWwY1T + E8dtcHEKnctfzQdjmYb8dd9LitQ31+2v8rz2h8P6ypRlbhyL6dK9f5/XYx/T6/erub46uvysqFvB + /Pb9Nj4eLlcsfHy/B2zNr1vvvb8upZZv++lyXZE2o7tfu/yE7U+PXkqQMfvl5vrzPzmAahjKKwAA + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa8e6eab87cab0-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:48:08 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:25:46 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=W%2FdPs7n05F4SZGCzdeCQUasvhAjKu0DqV%2BhU860ljcZPOHQ34G8pwWenHdkwRVa6OPYzIh%2FfunswAixvNPiSxZrn%2FafSaUNvT9xDHhDAioyuKtSLAR4plxOTk%2FNLtBmjTwve"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=100&before=1611069195&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1607915595 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa2XKqShSG7/MUFtepXT0PeZVUykJoZkShUSTlu58CU9mSsHaSdYab45Xazcfy + 7zV14+vDZrPZBHHow+Bp8zx/ml6v7+/m8ah1oXfxtvdR8LShilKiDLficTktj4OnTVCRKh2y4H3o + +vgTrBbKQFilOBrLpIKw/HDGYwkDsdKgsUQSCEudwmKVURLAluMOra3UgkPYunNorDCQtmUxVlgs + p6DfFmcxYrFME2jJitaVWCzVSkPY/IB2MCIJ5AmF6hokVloBWpsPhxyLNQIM3ry5hGgsFxTEshSP + pSB2749oLJFQYsyr4oTFCgt6QnZKsKlGcmmhnJCVaYfGClCErEglGkuIhbApwQavZIyC1touQ2Op + Aq218QGNJRaKssx4i8VSLaE0nil0iZRUKtDBRIHWlnINWssGdPASBmqb9habGIXhYOVN3dijsQSs + vGl0woaDUMRAIiRDrrFYIcGik9S6QmM5g/qEpIwbNJaARSfJLbZZEoyDbXMiZYvGwv1twj02eAVR + HCo67hgnSCy3WkE9mCtChsUqbSFrY38u0FgFOljcJQKLlRZMNXFd7tBYoyC/jSsXobES7MbjQmBT + DeeGQOEQs51BYzmDKm809NgMxplhkN9GXmKxzFoKBe9ubNFYbRTkYDt3SdFYzkBrLcWWSEYkuOe1 + usamGmqkhTzBVA32PIEKyaAo07vuiMYKAWmrwzM2J0wyQJ4ghwTbjRNLKaStLGusCMQYCWkrsxib + b4nWBnIwKXKCxjINZTBxITUWq+BjCtESjsZSsOiIssXmBCIUuIEStLNoLOOQtXxQ2OAlnIGbU15G + 2I6RMAN2NTyx2OAl1IIdIxcc7bfUMKgb5yxGewKVFFoydknR1hLBoQ0UK3N0qiEczAmsGHCeQKy1 + lkPNEnO0RWOVgJaMhUhtZyzY37JQ7dBY+FiYGeSB1YQlAooyxikaK62BRCDjMUJjORgO5HjhaCwD + Ky85/A1rCbh3IHvf47Fgf0v2JsdiheSgtZkUWCyDHr6U43gaEzSWAQ5WjmOT4a2lQPtRjuNeaSwW + PLUrxzFxaBEo9NCwHEcXhkisMUxTAHsJkwSNpcDeoRwvtozwWOCgdcISi8VqKyC/vag0RWO5hDxh + GPUFi1VSQ9YOh2OBxUpNNIRN+BGNFRzy22FXY/sEI6BHReV4PkVoEbg1kIOd+4JisUwIKIOdY8mw + WGo1gbA6I2is4ZDfnuVosFiiGaTtyZ/QGYwQ4KymHE/1+b5PmN+93OYGtfPh239Cft8kCBPv2hlN + tKVS3p+KBmGabrt8dNP4/RYzCA/59uTaLm/20435LxLcje5c0rTu/bm0pQuo67bH3rWXhR3zyPrX + N2TTVKsj82iSV7dfsT7+NeF9Vt13fvGnGej1+uWMmeddW3df3nZxSdfvWhfH+ffsWF4a5W4f3T1v + +Or18q2Z1y9nXR//KcHacJ+6nwm2jJHXn0mW+oXzf/vi6/9eucovIvy/V+6PM17+rGvQZU1fTVnz + GY6B9TsAKzanju2+8evMJesDI1hLsreBpvXrGXG5dkHsumgZ99e18hK4wUW9z5v91ue129Z5VeWd + i5p9PKUpzn/dle3fefX5U7l5hOvUw8oaBPk+dsNkaNttY1f50N1XjCqv53wXULKoJHc1K/Btv7hm + 9vfuk3ErUv05Mr4dBd/KFdefrfy/aO134vNLa1fXsnVdX/lu2zrft3sXf2oPuixs489lL0jCvJqn + f3LzMj8c1kf6KHJdl/RT8f7YUvrGh/P3q66+2rm8BdQtXj58v/WXw3TFQuP7OWBl/lx57/WaIi3e + Nv10XRJWnbsfm37C9k3R4GnDrLr9muvD9S8nfhdQySsAAA== + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa8e68796b5401-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:48:08 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:25:46 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=LBsK5ZZQoD3hQjYLatjoDi8PAIJss%2BoI5wTKAzX3hstEy1o%2F8dygep3VdudQNG9BLbbUDb9OUHhppgDmsIVP5iMIvgvafmwh7ximEkACWeZhyxV8SlTLNdk%2BqRgibJCnjJTJ"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=100&before=1617376395&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1614222795 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+WaW4/aOhCA3/srUJ5Xle+X/StVhXJxsENCIHaAzYr/fgRULelmurujnvNyeILY + +WLmPqO8flmtVqusylOePa++3X5dP68/v93Wy8HlyVXrMZXZ84oqqrlWRPKn+bZQZc+rrAudGars + 59Ll6TNYoZQFsG3cKCyWScUgrOhqNJZLBWFZ0WKxRFEKYLeNDmis4ATC+vyIxjIFWcK2rkokVllY + tltZGzSWUAFh6QmrMmW4kgC2GXus3SotKSSEppMFFis16LyNmBIWyymDnDd4mWOxTCvIHUK13SCx + 0loNYf0+dmgstZCX+SYMWKyRDFKZd+WExlIBqcwXwmGxmnMNYUW5R2MpgbzMs4BNOlJKbgDs5lBg + scJKDZ22DrFBY7mEVFZ7g8YaTiC7rW13wGI1YVDmddO4w2IFB5OOqzdoIVBGIZVVB4qNYNwSAhlY + pfoTFquVhFRWjqPFYgXnkMqKqcZaAucUDONFL7FVDSdWQwm9YPGMxioNGVg+pR0aSywk23zU2OzA + rAADY77LRyzWGAupLPcDR2MlaGC5q7B2y6Q10GltP3k8FuwdbB8NGkspiN3ILRbLrYJCjRVFRGOV + ghK6pabHYqllENaEAetl1HIGxQR90Fi7pUaDRb5uAkVjlYHCuA5BYrHagjFB2w4tWyUU1JKoVGN7 + Byo06GXKSqzzUqYF5A5ye8rRWEogIciKYucJxAoOJR1Rnwo0lnOoYhTucEJjKdiSiFJgWxJiNJgd + hK4EGgs3p3zaY7tIog1YNvNjmaOxhIHY7YCtwYgSFIq3vDLYMQWRBuwiueLYBooIDXY6LBK0yrgE + Z4ys9NjegVAJypZ2Fdp5CZx0aFkgK0ZmrRaQl5GXrkNjCei8ZF/3WKxmYFVDaPeCxSpLgDrBT6eR + o7FGKBDLSjRWQi2Jn2LVYrFCagthWV5hsRycJ/iX1hdoLGMUwm5rhsVSQxiEpVuLxipo5O7Pkzug + sUQbCBv7GosljECWcPYJ2UozAw9a/dmNFRqrLCjbIndoLBcgVk3401IKCkEQtGy1hkZA/rSr0Fil + hYaw+UmhsVJCdnsy3YTGEqh38CdWeSxWSqga98fjJNBYBmVef4xth8dCI3d/jM0JixXCgEJoxgaP + Bb3s2NQSi+UGjLfHMmDrBMMk1EX68XxOaCycy8ZRYXOZoQw+bbNFWwIx0CTfj7XAFkvaglM7P6pG + obHMQkJI0wsaawiYdNJuilisVlAr7VOzz9FYCVY1KcxGQLdv3+97s86l/Mc7Ib8ekuV1csMdLRhj + 2j60JVm+2axjmNx1/bHuy/J9WB/dEEO/uz6YfyXZw2rh6n5wv14q4TOoi+vD6IaX2TluK8uX78i+ + bxdXbqt1aO//Ynn9fcLPXd0Y0+ylGejz+u6OGy+5oYvvPnZ2SxyLwVVV+Ng55reWwe3KhyLpvc/3 + D+28vLvr8vS3BDbku437nMDmPvL6OZFt0sz4P3zz5X8vuTbNPPy/l9wfd3z/s1yz6PuxvUbNb7AP + LD8B0NgtdKx3fVpmzlm/MbKlIHtf6Ie0HBHnussqF8u531+W0kvmzq4cU+h36xQ6t+5C24boyn5X + XcMUJ1/JQ97+FVi/vck3T3Ci+rKghCzsKne+nnSI68q1KXePKaMN3S3gZZTMUslD0srSMM7uuRl8 + fHO4BVn92TU+7AYfChaXz6n+XzztRxz03dMu6nJwcWxTXA8ujcPOVW/qg+jzoXqb97I6D+1t+xs7 + 34b9fnllLEsXYz1es/fvc73Up/x2fdHWF0uXHx51d5jfrq/Ty/56x0zGj3vA1Pw29T7K6+pq1bof + r/fVeRvd49r1L6x/SDR7XjFK2Je76C//ACIs1RHKKwAA + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa8e74e86a5401-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:48:08 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:25:47 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=zmELkN3RUTTBc%2FKnWrIQue3V6dmGEMbvW9oe0luED%2BacP9Sj5ehfOBUQ9zf%2FsZuG6VgeCzxEtDYeq%2BTGaFF%2BxhLBxt%2FEKTpNaHpz55j%2F7JXeMfPRMsyiU%2BpcadZubmRcSt7W"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=100&before=1620529995&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1617376395 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa2W7iShCG7+cpkK+jUe9LXiWKkJe2MXiju80W8e5HJlEGT1yTpM5yc7hK6Pbn + 4nfVX2XDy4/VarVKijSmyePq6fbf9Hp5/+u2nnuXRlesx5gnjyuqGJHMSKkf5tvqInlcJZ0RnrHk + fen68B2sJgbE5tkei6XEKADL2mpAYqm2hgFYOjCJxhIFYl3XYbGScA5gib/UWCyTSkBYwk9YLCUa + yAR9qXNsJlBijYSwmxytLWGGQ1gzYrHEKiMgLKMCjeUMivZ8Gg9YrJHEQNi+yNBYyiyE3UZsghFt + KIGwlT1jsVJqwGr0aTineKwyIPaAdTDCJWMQlm6wnkAYs1DeHtszOlpqOSTCsfYUjTUCxG56hcbC + xXsse3SVUSEgYzzmEZlgwhoFFu+hSDUaC3vCIScBjeUWEuGQdiUWq4iGoh03QWCxUhAKYW2GFkEy + DjnYqJVHY6kFRVABjyUSFEGcGRbLBJgJ0bI9FkspaDUhMILFEiMgvw39Bh0t0QJqOqFLsQlmjCCQ + g/lYCTSWKmj88PsGjdUSrDJfo7U1wiioyvZt36KxXEIi7Ku2QWOJgkTYFxJbZYZz6E5H76VCi8A4 + h/J2CIPCYomVUN4ORTuisYZAVjPk8ojEaqsZZDUDqbHFqw18p9OHYYPFKmlBrHDYKtPSgHnbnTjW + E7QwFMrbrtPoSyYkOIN1u4GhsVRA2nbVeYvFUiMhbHvshr+BJSC28Wis0NAla6PBiqCsoFCCtVlW + YbHMEMjBdoFd0FgOOtiuRyeYtBpsOjtOtmgsM1AmbC98h8VKzqG83XJ6wmIpPDbX7BiR2KmZQdFu + 0hyN1ZZDTz82uj2jsYaB0aoa6wmCaw1VWcWIwWKJtVCVlVZ2aKykkAilyLDacmstJII7X3o0VoKZ + 4EaHjlYr8HbPZSXWwbgS4MRYnC8ZGksVJEJx6HMsVjAwwYpswD5P4FSBN6f5Nj+hsXAvyyvToLGM + QiLkjlkslhjwOViephKPBR9i53aHrTJmCShC1hPs2MyUEJAIqR+x4web5nEIq1KHx1KoylK5p2is + BKssFQYdLYfz1ra0RWOphRLMNh5778CYtZC2dktrNFaCT5Zs3mLLgVoJTuPGtFs0loGeYESF7Q5U + KwYZo96UBRpLwM6rbY+db6kUEspb1XVobSVRILYW2EGUTh0dwMoz92is5FAmyOMWrS0X4PcOcjxi + q4xSeLST2dbhseCX3TLLSjSWU1AE6u9Hu9tfz697k9bF9O03Ib9OkqRldP6Gppprxe8fAyVpVa1D + fXHTOiH3C0O9Pjgf6r6bTsx/kuRuNXNl7937zzSsnUFdWO9H58+zOG4ry2+/Ivu+WVy5rZZ18/op + ltc/J7zvascQZz+agV4vn+648aLzbfj0tLNDwph5VxT11+KYH5rXrsvv8vWz1/OXdl4/3XV9+KcE + 82lXue8JNq+Rl+9JVsVZ8n/54Ov/Xrkmzir8v1fujzue/6xrEjb92Eyu+QTXwPIZgCt2s45118dl + 5pz1GyNZMtnXhd7HZUecX7ukcCGf1/11qb0k7uTyMdZ9t45169Zt3TR1cHnfFZNNcfHz/uvcX8b6 + 9KHfPMCN6sfCRUjqrnCnKVIf1oVrYuruW0ZTtzfDSyiZtZK7ppVEP86OuSV8+BDcglZ/Lo0vl8GX + zOL6vUv/L0b7lQL9NNrFa+ldGJsY1t7F0Xeu+DAfhE3qi499LynTurlt/5Dnu3oYllfGPHchlOPU + vX+fKWMf09v7i7m+OLq8VdRrwfz2/jqeh+mImcb3e8DW/LH13us1lVqx7sfpuDJtgrtfmz7C+k3R + 5HHFpH39NNcf178ARLa1ZMorAAA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa8e7b3c95547f-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:48:09 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:25:48 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=WTrMxKHECUVB1gXK0Gw%2BRTVkaxFuYEIYwPEbBkgd8%2B5eml3k5ZVTjfnujt9hJWRwbsXCy%2F8LW9xnnLq6cPNOLJoRJMunN86fv%2F90KcGHzJuYR2n%2B4CHFHrcaWug68nK7FQc5"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=100&before=1623683595&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1620529995 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa227iOhSG7+cpUK6rkc+HvkpVoRCbEMiJOKExFe++FahmyDRr2q7Zs282VxDb + Xxa/vQ528vpttVqtEpf2afK4err+mj6vP75d27POp71366HPkscVVYwrw6U2D/NuhUseV0l9bklU + yY+my8NXsIwKDmCbXTtisUQqCFuPZEBjmSAQNrQvaCyRFsIeXYrEamO0grCbfIPFas0hbauxYVis + spZC2GbcYbFSENBaRbFTpoWikLbluLVYLLeEQdh2KNBYISSELZnEYpkUGsJmHOu8mhgOrYTDEPdo + LBeQtodjqpFYZYUCrd21aKxRFooJh7QiWKxmoPPuR0uxWMkNFBj3O3lCYwkTENbLEosVWkPusN9U + GRqrNKht2uZoLAFz2V5maCwlHEroRZ55JFZKw6CYsEs7gcZyUISdFtjyQwpJQGtJUWOxXIDukIfs + iMeCU5YH6rBYyiWITTODxRKlIG1zHtELjAgDYpnGZl5hjYVE2L5UFRarLDhlWxEaLFZoCSUdX1R4 + LNNQvPWuD3gsKIJ32xaNJaDz+g3psFguLRRqvDpiiyXBDLh3cLGhaKym0EpwY6bQWAGK4E4MW+Rz + ozVU1WTHaPBYMIJlR/SUccIF5A4pH7ARjFkBOq/tXY3GcgVZa0OG3UAxo8CK0e4LNJYbCVXjenw5 + orGcQF6mjx12S8KIArEqpNhClFpuQaxjWBGo4RSqb+VZF38FK89YrKZgdpD7Fnv6QZUx0AKT+Z6j + sUqA1roCvRIUUSBWWexZDRXwWY1oRo/GKgllXlF32O0e5QJ0B6HRMYESaaHAyLXAugMRVkC5jJoc + u0Ofcg40ZaQVSKy0ykB1QoypVFisVBrwsjieDns0lloQ2zYbLFZYoyBsrSUaK6Cjyzju/gRLDITN + ZY7GMg5q6yVeWwoVS3F0psJimVVATIgv5xe0tUxCR0Dx5eSQR0DSaAudNsfTlnVoLFjkx5MTKRbL + CRQY46B2JzxWExC70Xgsh5x3kOcRi2XgkXscxKlAY40CrRUHbLw1VEFJJ/aDRlY1UlspQazj2FAz + PSqCsCFGjcYqTkCsiFisAnc6MRw3Eo2VErS2PbRorNAawjZntLVSQOdgMews2lpJBKitG7DuoIUF + Q01w6YjGGrBOCFmFFkEwMIwHLdBYbig4ZTz2WCzV0BP/2NXnDo0VAsSWJdZ5lSVgYOx4wC4wZQyH + 6oSOyQaN5RbCHiP2tQepDLPQuj2O4/0Cu357vvVNKt+nb++E/LxJkm57393QRDJr7y1O0jxfh+Ls + p/b7o5EkbYv1yXehaOrpxvw7Se5aN37bdP7upZIZ1If1cfBdnNlxbVm+fEM2TbnYcm3dFuXtXyy3 + f0z40asaQj97aQb6vH7Y48rrfVeFD287GxKGTeedKz5nx3xoVvj6/qneR5/nT/W8fNjr8vBvCdal + de6/JtjcR16/Jlnezxb/pwdf/vfKlf3Mw/975X7b4/n3uiZh1wzlFDWfYB9YvgMwY9fQsa6bfpk5 + Z/3CSJaC7K2h6frliDifu8T5kM39/rKUXhI/+mzoi6Ze90Xl11VRlkXwWVO7KUxJ8f3+PZefgfXp + Xb55gBPVt4VJSIra+XGytAtr58s+9fcpoyyqa8BLKJmlkruklfTdMBtzXfDhnXELWv3eNT7tBp8K + FpevTf1ftPYzDvqhtYtz2fkwlH1Yd74futq7d/VB2KWde5/3km1alNfu79b5oWjb5ZYhy3wI22HK + 3r8eZPRNn16vL671xdLlzaNuDvPL9XUf22nETOP7PmBqfp967/WaXM2tm2Eat03L4O/bpr+wflM0 + eVwxa/m3m/SXfwBu7E6eyisAAA== + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa8e817814f999-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:48:10 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:25:49 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=9RcsJuWGPKVvDb6HsSmiFPBPYXzgddAQhemHUq7jRkcjQANmv7rj5iNsKWFpToKfogs%2B%2BD22gcBCsYxpGBp7vTqi2GGIGb35Q1WkEnllhPCVSl1T%2FzGFhIYErKh9i8i0QOHH"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=100&before=1626837195&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1623683595 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa246jOBCG7/spIq5bI58P/SqjUUTAENLEgG1yauXdV0laPWGa6kNpdm82Vwk2 + H5Vy1V9l4OVhsVgssjJPefa0+Hn9dfm8vH27jhfB5cmVyzEV2dOCKqYMF8rax+m0psyeFlnX1Ydy + zN6Gzo/fwTKjBIStNMVjCWit2zgklhlmKICt5HOHxSorJYB1YS+xWGkpiK2PIxqrFYitVhs0llgQ + q49HLFZoCQWYEyu0EwSzCsCWp7bEYrlQGsIO/TMWS6kiEJZWBIslmnMAW+w91lpqJWhtsakZFmtg + qSlWDRqrNDcAdrUdWzRWWsjaVSsrLJZbDilY3m8jEksspVAkWEF3WKxhDNIEk2iDxhINYoPyWKxk + FnKCTntsJBDBFLRkek0JHgtWB11XAo2lAhJGXT0PWCzTBsKq47FEYxVYHdTBndBYLiAZVylQPBZM + B5XqNRZLrYIUTPW2wGMJiO02HI3VBsoytT0lNFYRBmGfB6zeEiI5GLca3TYTIuC4VQVSb7U1ElQw + uZFrNJZzKG5lbSgaS8BaJotNxGK1VaATVr3DYpUG2w+xP27wWEpAbN6jsRzUBBFzj8eCfYIIvkJj + GYH0VgwlOm4VJVDcil4GNJZQSBNExwosVioB+nZToTVBCrDyivUGnbySWCh5RZEMFiukAdNBbdFO + YIpC6cA3eY3GMg3dpuCVO+CxYPLyapWjsdRCvuVuTfFYUMZ5mQgWSxSHCjrbH7DCaIzhkIyzIiUs + Vitw48/IUKKxjEHJS/fOobFUQb6lu4hNXvNBLaOhDmgsZ1A6UN9j9dZIeONP14NGY4WBig6tygGL + FZSBS8ZCg8VSbqG4Je6ETV5DBKgJRCWstZoraCvtj8PBoLFcCwjboTVBM0sIhG0rjsVSCUWCP66G + NRrLKOhbO6yQWGXBezX+sMPeAtLKCGMg7BCx1UEpBe0d/KHsOjSWQXrrD5dnOUis4FDH6Pf74YjF + ckUUhA0KeaNVS6ug1s7vdidsaye1gnowv6t6g8ZKA2Lxwii10FCW7cqTRWM5mGW7UuGxlINLlu8E + Fqss7FvbbdFY8AGB35ltQmOpBa1lJ2zyCmsE5NtUr2s0VkkNYV3cY7FaSShu4655RmMpg5wQB4t2 + AjfQfTAf0h5tLVMMioSwLhQWS42GnBCsw1ZeQQy0gfLDcdigsRLaRfphX2ClhgsOlsie7bF9AmcC + dEJX77A7dE6tgCKhywP29honHHpo6H3M79uP67dft7nZ1qX89Z2Q3xfJ8iq5cENzZbi8fzyf5XW9 + jM3JXcbvu9Qs75vlzoXYdP5yYf6DZHejK1d1wb29pqHpBOrichhdOE7suI7MH74hu66dHbmOVk17 + +xfz458T3mZtx5gmL81An5dPZ1x5yYVt/PSyk1PiuAquLJuv2TE9tWicL+42/J99fn1p5vnTWefH + v+WwkPvafc9h0xx5+Z7L6jQJ/i+ffP7fe65Nkwz/7z334YxfH/s1i+tubC+q+RPOgfkrACt2lY6l + 79I8c8r6g5HNiextoAtpXhGna5eVLhbTvD/PlZfMHVwxpqbzy9Rs3XLbtG0TXdH58iJTXP+4f1/g + t7D+fFdvHuFC9TCzCFnjS3e4WBrisnRtyt19yWib7VXwMkompeSuaGUpjJNzrgEf3xk346uPU+PL + afAlsTh/b+n/RWu/kqCfWju7lsHFsU1xGVwag3flu/4grvNQvq97WZU37XX6uzh/bvp+fmQsChdj + NV6q9599T+pSfj0+G+uzrctrRt0S5o/jy3TsL2dMfHw/ByzN70vvvb8uqVYuu/FyXpW30d2PXf7C + 8tWj2dOCWUUebq4//wMJixzTyisAAA== + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa8e87b9c1f995-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:48:11 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:25:50 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=FaorihWGSoE37XvZfHEToSS5qcsOq1gcUPmMDjyHDhK2k4KjzMEw1g%2FARlaOHun59RhHUcjAh7f2WW73rCQezY420q3slHufd%2BxxW97q4kI3v%2BwmQHISPquNdzQS%2FA%2BniW8E"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=100&before=1629990795&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1626837195 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa2Y7iOBSG7/spUK5LI+9LvUqrhbI4C2TDTghQ4t1HgVY36cqpoo5m5mbqisL2 + l8Pvs9nw9m2z2WyiLB7i6HXz/fbf/Pf269VtPPUuHly2HYc0et1Qxay1REn+spxWZdHrJupTWqQ2 + +jV0ffkSVhIGYV2To7FCUxBrFRJrjCAGwJJDKrBYTYmAsIlnWKxSHNKWqB3aWik44AnJJXRoa7lS + FsLagWOxzBgDYek+QWOVALRNzmd/xGKJopC1Z3dG+y2RsLXOtHgsAa3NJoPGCkNAbFvisZqD2DpG + YrU1ErRWdzs0lhMFYdkOK4I2RAGpJjn59oLFag367akb9lisUga0Np/OWKyQBNqy6aQzLJZZDm3Z + tA8TEqs0ZxLAHvOeYLHCWA1gx/PksVjOLbRlY1egsYwyyMHGfC+RWCkNg6wdmMe2H/IDBwv+gA0H + SZiFMpg/NNg0LpSykLYHf26wWM4YJEI/xNg+QTBDKYTtaY7GCgGJ0NcJNjEKasES2ectRWK5UWBX + 0+0abNHhmgpI246bgMUqyaFU004nrINxSWBsGWssliuwoLeMGzRWgl1NSxNsN84ZBTNYU3Ns28yJ + 5JCDNZygt4xwAW1ZQwK28s65Eepv6+NUY7GaKGjL9qcWW3SYEgLEHgw2gzFpKCTCvprQ2kopoPZj + n4cCjwU7xn1eWDSWgV3NPg0dFssog7A7u0OLwOBufGcCtjowqinUiO5EgcYSoaAtq3p9wmOha4qk + 6oJCYxl4dqhairWWGgl2NRU9TGgsB3uwiqgzGsskVNDLc4r1W6o1g+5qSt/jsVJBnlD2bYXFKquh + cCirmKOx0oIiZHWNx1KoyS/T3QGLlYqD1jKNzbdUCOjqMimaY4/GcqNAbIMOXm4Z5GBFMZRoLANr + WWEybL6lzGgo1RRCYg/+lGqwY8wPDu0JxMLYItujsYyCWN1jm3xirYIcLBfjhMYa8ISe80uDxjLw + zOuOAVsdiBHgKdK1RKKxXEIdo6sT7N04kZZBImSB4LFMQIkx252wOYEI+LiXJT22qyGMgCUyLRts + lBGqwFu7NL1g78YJ0RzaspSmHRorBRRlyUWh/ZZQDWmbjBPywsrMl+6QtsmhvKCxHMY2pMBildVQ + ToiPo0VjBdg2xweWYrFSK8jB4t2+RmOVgXJCXB05GivB24+4rCwey2BsssNiheLglpkTHivAL7Zi + 5WMslsN3jPbsezSWWaiW2ckleKxUIJYyPBbsE+xx/9g23179uM+NGjfEP38T8vshUZwPzt/RynBN + H4WI4qLYhuri5vHH7zqiuK+2R+dD1bXzg/lfJHoYTVzeeff7Zxp6AXVhexidPy/suI2sv31Hdl29 + OnIbzav6/inWxz8n/JrVjGFY/GgG+nv7dMaNNzjfhE8fu1gSxsS7LKues2O5NK1cm7ro6VU/npp5 + /XTW9eWfEszHbeG+JtgyRt6+JlkxLJz/6cXX/71y9bCI8P9euQ9n/PhY1yiU3VjPWfM7HAPrTwB2 + 7JY6tm03rDOXrD8Y0VqSvQ90fljPiMu9izIX0mXcX9fKS+ROLh2Hqmu3Q9W4bVPVdRVc2rXZnKY4 + /4s9NN2/E+v3d/XmBS5U31Y2IarazJ1mS33YZq4eYvdYMuqquSW8iJJFKXkoWtHgx8Wam8OHd8at + aPVxaDwdBk8li+vXtv5ftPaZAP3U2tW99C6M9RC23g2jb132rj8IZeyz93UvyuOqvk1/5+f7qu/X + R8Y0dSHk41y9/zwLDd0Q395f9fXV1uVnRN0D5o/3t8O5n1csNH6cA5bm96X3Ua851LJtN87r8rgO + 7nFs/gjbn4pGrxtmpP12l/76Ny3vfRrKKwAA + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa8e8dfcfa548b-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:48:12 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:25:51 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=lgogWYh6cpjpQcxZ3q%2BUL6UvYrxWWkp3MttEbN8t389VjF96lOmp5eUFonZ7LVewXj7uh2lBB8x6lcVAyinj0aEv4hENy%2BTHbuNKoV1bB52KIXDolhcIVxgSkKwyzW7ae%2F72"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - edgebucket=rMnJXdgWbcPi5FKlAW + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t3_j3mz8n%2Ct3_j3lz6x%2Ct3_j3lxa1%2Ct3_j3lek1%2Ct3_j3kjpl%2Ct3_j3k8qn%2Ct3_j3jswe%2Ct3_j3jhoh%2Ct3_j3jcgy%2Ct3_j3hh3v%2Ct3_j3fn7e%2Ct3_j3fc3t%2Ct3_j3f77s%2Ct3_j3f2yj%2Ct3_j3f2o9%2Ct3_j3f041%2Ct3_j3eqdk%2Ct3_j3efho%2Ct3_j3e7ne%2Ct3_j3dsoy%2Ct3_j3dez1%2Ct3_j3defa%2Ct3_j3cxb8%2Ct3_j3clnz%2Ct3_j3bwxg%2Ct3_j3bt0k%2Ct3_j3bbyx%2Ct3_j3b1c4%2Ct3_j3ancm%2Ct3_j3alnn%2Ct3_j3ak5w%2Ct3_j3a0yr%2Ct3_j39mw0%2Ct3_j39lkp%2Ct3_j39kdj%2Ct3_j39jof%2Ct3_j39ilm%2Ct3_j39ihl%2Ct3_j39he4%2Ct3_j39b0a%2Ct3_j39a7s%2Ct3_j391n7%2Ct3_j38xi6%2Ct3_j38tkp%2Ct3_j38l3o%2Ct3_j38hca%2Ct3_j38h3t%2Ct3_j38h3d%2Ct3_j38h32%2Ct3_j38ax8%2Ct3_j386gn%2Ct3_j382ai%2Ct3_j380dl%2Ct3_j37wf4%2Ct3_j37w97%2Ct3_j37s2u%2Ct3_j37rov%2Ct3_j37pj9%2Ct3_j37jg4%2Ct3_j37drf%2Ct3_j37d6i%2Ct3_j371r0%2Ct3_j36rj9%2Ct3_j35wtv%2Ct3_j35i5c%2Ct3_j352ly%2Ct3_j34wo9%2Ct3_j33q36%2Ct3_j33cmm%2Ct3_j339pj%2Ct3_j336zq%2Ct3_j32w53%2Ct3_j32d4q%2Ct3_j31oqr%2Ct3_j31a2z%2Ct3_j30yw9%2Ct3_j30v6u%2Ct3_j30sts%2Ct3_j30sie%2Ct3_j30b12%2Ct3_j304td%2Ct3_j2zhbn%2Ct3_j2yzup%2Ct3_j2xtrh%2Ct3_j2xnzw%2Ct3_j2x1ng%2Ct3_j2x0t9%2Ct3_j2w2yc%2Ct3_j2vzar%2Ct3_j2vx63%2Ct3_j2vj7x%2Ct3_j2vcnx%2Ct3_j2v9pa%2Ct3_j2uqmg%2Ct3_j2u3mk%2Ct3_j2u0hj%2Ct3_j2t1c4%2Ct3_j2s3ti%2Ct3_j2ryeo%2Ct3_j2rwxa&raw_json=1 + response: + body: + string: !!binary | + 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 + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '58246' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:02:37 GMT + Server: + - snooserv + Set-Cookie: + - loid=0000000000edl180ip.2.1630961281900.Z0FBQUFBQmhOb0h0c2FBVHdTa3FEaEMxVER2OS02Ml9FMFE0Z0EyNmdZQVR0SGlxNXJvWkNDd21iWDVXSEI2ZjBaTnJlSWY3X3hLQmgxc3VHSU91WnJjblVtclYyMUJ5RTJYbXVFUkJmTWl5VWFXdElUVnZ3WjAxUzVDWUlza2ZhUlAyZ21fTzFyUU4; + Domain=reddit.com; Max-Age=63071999; Path=/; expires=Wed, 06-Sep-2023 21:02:37 + GMT; secure; SameSite=None; Secure + - session_tracker=aldqoekpgqnnongefl.0.1630962157323.Z0FBQUFBQmhOb0h0OVk0MWN4bXJoeEhIeTB2T0h1Y2Y2OXliVmlLQjh4dlkwSHJtai1pVjNGR1dSdFpyZ0M1T2ttaDJuQVR4b0dKWE1GZGdFSmc0TlBjYmRScVViTEtrRW1SRmNudWN1eTF2RDZWRDl4Y1Jac3ZaWFdZRjUyVDlVS2hhV0NJakg4TWs; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 23:02:37 + GMT; secure; SameSite=None; Secure + - csv=1; Max-Age=63072000; Domain=.reddit.com; Path=/; Secure; SameSite=None + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '297' + x-ratelimit-reset: + - '443' + x-ratelimit-used: + - '3' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=100&before=1607915595&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1604761995 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa25KqOBSG7/dTWFx37cr50K/S1WURCIIiaAABu3z3KbWrB7asPqyamZvxSk34 + iH+y/rUSfPu1Wq1WURq3cfS8erl9ur7ePt7d2pPg49an665NoucVVURbKpjiT/NuRRo9r6JdUo8l + iz6aLk8/wVJqDYQVPEFiibWCAdgqZByLNYqA2DSrsFjFCAWw+3prsFgprIWweRqwWKFhrB0GNFZZ + aIHtTUfQWKoJhOWuxGKZNRrAloceKYKxlhkBYHc7n2CxRmoQm1QtFqsthYJ3J7cCi5UUxG5j0WCx + goPBuyUDw2KpZFDwFiKgsURyKBzyllRorACNMQ/9CYk1lksoHPIs4WgsA60m93uKxWomIRE2wWAX + mJGSQ1G2UecdFsuJgBZY5k2HxTINOljmvMFiqRWQCBltczyWgKOl/ozFEmOgKPOHBuu32ioYm6gW + jwWD17vDFo2VDIoyH6fYBaaVAMMhTTK0CIqBdUIaj9ikoyU3CsJSW6OxVEHlRzKeOBpLBJQik+GI + DV4tiIBESKpMYrHcgMGb7Hqs32oqwNG6/lygsRwsP9ypwWKVUURCWF2laCwj4GgFxUaZkkpDSScu + KFYEaRm4Eqw02GJJXs0GwrJkg8YKBU2ZJXGFxnLQxs05NWgsI5AxmjFDT5mSFMTuK4nGMgNpa0qB + rROkEAwcra2wKVIwaqApUyw3eCyBHEzRAesJgioNiSDHgNz4G24NWDHKssLmMs4FgVKkEAdsaccM + BYOXtbnHYrUUILbqj1isUgzSlmUeO2VMWA6VdvRcYx2MUQJ6AhljbDhQoywkAnFpjseCG38S77BJ + h1LFgZXgRldv0VgBVeNutCW2GieGK8Bq3JBsLRpLoAMrN1iNzQ5EU8gTXD/0PRpLqAWxBFsnECUZ + ONqALpuJlATStt/kDo0FzxNc79DlB5EEOrByvbPYcCDCQA8IXG8DWgShoMzrerVDLzDBNeQJPT9j + EzrhFlwJp/GIXmDUglF2SsoSiyUKKu1cd0af3xJCobLZda1B7tC1NdSCWF0GNJZAGyjXqaTEYrkF + s0Mz+D0eC+0dXDOIGIulDNS2kVmHxhKoBnMNOw1YLLHQoyLXMIE8v71uzCw02uM+ztBYDSb04+7s + 0VgBanvMz2c0loAOdkyP2JVgPrHxox3RWEolFLyHbGexWCKhLYk7xGHAY6FzMHeIS+QzHa21hY4u + XX3IBBproK20q+sOa4xaWQ6JUOdBo7FGgiLk/IzGEgaFQ+1itLZSQsfCrtbjVITbu9d732jv2/j9 + PyF/3ySKs9aHO1poRe3UxaJ4s1k3xdlf26dFRBQfivXJh6aoq+uN+W8STVqdz+rgP/79IeUM6pv1 + sfNhnI3j1rL89R1Z1+Viy601K8r7r1hu/5rw0WvfNe3sTzPQ6+3LHjde68O++fK2s0uazgWfpsX3 + xjG/NCl8lUyywlev12/1vHzZ6/L0TwkW4mrjfybYPEbefibZpp0t/m9ffPnfK1e2swj/75X7tMfr + 57pGTV535dU1X+AYWL4DMGM361hXdbvMnLP+YERLJntvqEO77IjzuYtSP32QPb/jZeq+g0+6tqir + dVvs/XpflGXR+KSu0qtNSfubTb36w1hfHvLNE5yofi1MQlRUqR+uIw3NNFeUxf7mdBElsxwyyVZR + Gzo/bbut9OZhVAsifR4T317/33KJy8/m/F8c7Xci88vRLk5i8E1Xts06+LYLlU8fCoMmj0P6mPCi + LC7KW/eHBb4rDoflli5JfNNk3TVtPxy9tXUb3xrE4jJfrFreg+keK398v27Hw/WKmcrTPmBWfsy6 + U8WuUZau6+56XRaXjZ+2XX/D+l3T6HnFheS/7uJf/gKJnnAtxSsAAA== + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aae0bb498d5419-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:44:18 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:22:51 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=%2FM5NEQCAl%2FJc%2B6poZZlB2UrGFQdXMeKmdwS7upx76cli7K9Zn%2Bskk5BPgD6YmtkX76ujROm%2B5kL1A2D8mS53bCuCaITYsEPUys7ELV09Mx47JL9xm1zC3jtb7nGbfwbjQ9ul"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +version: 1 diff --git a/cassettes/test_submission_praw_mem_safe b/cassettes/test_submission_praw_mem_safe new file mode 100644 index 0000000..bf36ae7 --- /dev/null +++ b/cassettes/test_submission_praw_mem_safe @@ -0,0 +1,11183 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=1000&before=1629990795&filter=id&filter=created_utc&size=100&sort=desc&metadata=true + response: + body: + string: !!binary | + H4sIAAAAAAAAA62ayW7iQBCG7/MUyOdo1PuSV4ki5KW94JVuGwMR7z4yGc3A4MpSGk6Ebn+u1PJX + ueHtx2az2URZPMbR8+bl+tfyevvz7rqeehePLttOYxo9b6hi1lqiJH+631Zl0fMmGlJapDb6s3R5 + +hZWEgZhXZujsUJTEGsVEmuMIAbAkn0qsFhNiYCwiWdYrFIc8i1RO7S1UnAgE5Jz6NHWcqUshLUj + x2KZMQbC0jpBY5UAfJucTv6AxRJFIWtP7oTOWyJha53p8FgCWpvNBo0VhoDYrsRjNQexTYzEamsk + aK3ud2gsJwrCsh3WCdoQBUhNcvTdGYvVGszbYz/WWKxSBrQ2n09YrJAECtl81BkWyyyHQjbXYUZi + leZMAthDPhAsVhirAex0mj0Wy7mFQjb1BRrLKIMSbMpricRKaRhk7cg8dvyQHyRY8HtsOUjCLKRg + ft9iZVwoZSHf7v2pxWI5Y5AThjHGzgmCGUoh7EBzNFYIyAlDk2CFUVALtsgh7ygSy40Cp5p+12Kb + DtdUQL7tuQlYrJIckppuPmITjEsCY8tYY7FcgQ29Y9ygsRKcajqaYKdxziioYG3DsWMzJ5JDCdZy + gg4Z4QIKWUsCtvMu2gjNt81hbrBYTRQUsvrYYZsOU0KA2L3BKhiThkJOqKsZ7VspBTR+1Hko8Fhw + YqzzwqKxDJxq6jT0WCyjDMLu7A7tBAZP4zsTsN2BUU2hQXQnCjSWCAWFrBr0EY+FjimSqg8KjWXg + s0PVUay11EhwqqnofkZjOTiDVUSd0FgmoYZenlJs3lKtGXRWU/oBj5UKyoRy6CosVlkNlUNZxRyN + lRZ0QtY0eCyFhvwy3e2xWKk4aC3TWL2lQkBHl0nRHgY0lhsFYlt08XLLoAQrirFEYxnYywqTYfWW + MqMhqSmExD74U6rBiTHfO3QmEAtji6xGYxkFsXrADvnEWgUlWC6mGY014BN6zs8tGsvAZ153CNju + QIwAnyJdRyQayyU0MbomwZ6NE2kZ5IQsEDyWCUgYs90RqwlEwI97WTJgpxrCCNgi07LFVhmhCjy1 + S9Mz9mycEM2hkKU07dFYKaAqS84KnbeEasi3yTQjD6zMcugO+TbZl2c0lsPYlhRYrLIa0oT4MFk0 + VoBjc7xnKRYrtYISLN7VDRqrDKQJcXXgaKwETz/isrJ4LIOxyQ6LFYqDITNHPFaAX2zFysdYLIfP + GO3JD2gss1Avs7NL8FipQCxleCw4J9hDfTs2X9+9vu+NWjfGv38T8vcmUZyPzkfPm25qmqebj4ti + G6qzW256+y1HFA/V9uB8qPpuuSX/SaKb1cTlvXd/f6Chb/0aubDdT86f7iy4rqx//I7s+2Z15bqa + V827/evrnxP+7GqnMN79XAZ6vX2648obnW/Dp7e9uyRMiXdZVn3NjvtL08p1qYu+fNXrl3ZePt11 + efpfDvNxV7jvOey+Ot6+57JmvMvTL198+V+e+3DH68d+jULZT81S9S9wJNfvAETsWgDbrh/Xmfes + fxjRmlS8L/R+XK/r+9hFmQvpffZe1uQxckeXTmPVd9uxat22rZqmCi7tu2wpNst+qpsG8VceXh70 + 8gkW2h8rQYiqLnPHxVIfbhWvqdprvUaUkDspvJHbaPSTu127pnp4MGvFSx8XxZcL4EvJfvks6Kt+ + 8S5MzRi23o2T71z20DFCGfvsUQmjPK6a6/aHnKmrYVhfmdLUhZBPi54/jJpjP8bXBbGaOavt7Hd+ + vqffP59vx9OwXHHn5ds9oFw/yvGtx5bEzbb9tFyXx01wt2vL/7D97dPoeaM00cr8eHf/5RcW/Y0Z + 2ikAAA== + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa8c103ff04004-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:46:30 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:44:06 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=73yHVndyH29zIfLdkpyHPanyLWDXmESxDg0nQEVWHfs5xu8HsOoyM%2BsD8OkIn9HXbw5fvrlmBGyIfgDBHGIC1tV5dxk7WYjKsoPIW%2BvorTBmJdZZd8%2Buc0GfBP4CEF9eml3Q"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=1000&before=1601608395&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1598454795 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+WayXLqOhCG93kKyuvUqdYs5VVSKcrYMrbxALYcDCne/ZZJKgefuDP0HTaXFSD5 + c7v19yDBy91qtVpFaRzi6GH1eP00vV7e313Hk87HwafrISTRw4ppYBqMs+Z+Pq1Io4dVVIr6bJvo + fehy/xOssMwi2OqsRzJWOYZhx5hRsUxK1Fq/I2KVM85g1u7KfUXFauMEhrWHhopVYCSCLfujp2KF + lZgTyrzNyVgB2JKVyfZExFptNRYOeS6eqVjGlEawWWOovrXAGWDYRAQi1jjjMCVkxvRkrBSYbjN+ + KulYVAkZbx0ZyxzqW5DUnGCsEJgS/CHdUbFGoGncZ3lLxWoD2JJ501B1a5RkmLVp31KD10iuFIb1 + Z0bHAmqtz2IqlhuN6TYZN5aKZRYVWFI1ZyJWO6MwazfHcUvG4krYBKCGgzbOYkVnszmNZCwwTGAb + lkgqVhmL5du4SWoyVqNKiKumIWMVYIkx3qkjFSuswpYshlNHxXLlOIJ19RHIWGkwJ7hqtydjhcby + rdulJRnLHaZbV7YZHQuYbl1RkXXLGW5tkVdkLDiHYXNPDl6mOGrtBmIyVipUYDG5B9OgcYGxxpCx + HO1v7VhoIlY5qzCB2UCOMuUA1a2tBLVZUlYzTGA2T2IyVqHhYHNykz9hJY5N/wZW4FhOxRqH6tbG + oyVjJZoTrN42ZCygG3/L44KK1VajUQZpRcZKiTnBHDNJxwqGYh011SjlUIGZng90rML6BNO1z2Ss + Qc/BzL50ZCxIrG025Za8ZFI4TGAm7TI6VqC+TTU5HPgnSmAdtbVTzHDMWt2Rl0wajWLVMVAFJpVi + mBNUoRIqVjB0u6d4Rd2hS84BE5g8ks9qhLKAlUhxENT2QwiHbqBEUtdkrEJPRIXbl2QsU1gaF/p8 + oGKZRqsDPypBxHLH0K00TyXVWq5BYG0zaw/UXSSXAhUYizn1UIULQLFwOlLDgXOFbk7hWQ9kLL6L + hD70dCy6d4C+oJ4xcuDo+S1sGLURZU6jp80gA7VtZgYkksb5Od9QG1GmmESafH46D9QNFAMDSC3j + Y+hyMpYBw7DNmXqyBMZgTT4fWbOlY7HKy0cI1OAFKbEMxo/8lJCxgP1yyp/PMTUxgrA4dtTU6gBc + c2zJnkszkrEAKDZpyFhmcGvdnrrxBwDsxxc+HGqibqUzTlgMK+odGauVwbCQl1SsVOiSBfKRu3RM + Wcy3vQgFGcsYUst4d/ItFQsOtbY7jrcCu757ep0b1T7Eb/8J+X2TKM6C7ya0clYqaW6LehRvt+u+ + OPtp/PaYP4r3xfrZd33RNtONxS+IbkY3Pms7//5/CitmUN+vD4PvTjM7riPLX78i27ZaHLmOZkX1 + +hTL418T3mfVQx9mf5rBXi9fzrjygu/q/svbzi7ph03n07T4nh3zS5PCN8lNk/TV6+lbMy9fzrrc + /1MO6+Jm63/msHmMvPzMZdswE/+3L7787z1XhVmE//ee+3TG0+d+jfq8Haopaz7iMbB8B2TFrqlj + 3bRhmTln/cGIlpLs60DbheWMOF+7KPV9Mo/7y1J5ifzokyEUbbMORe3XdVFVRe+TtkmnNCXtL3NT + sn4n1scP9eYeL1R3C4sQFU3qx8nSrr+tFVVRXzNdxABmReSmXEWhG/zt2FXq/QezFrz0eVB8OwC+ + lSYuP1v0f9Ha74Tml9YurmLn+6EK/brzYegan37oDPo87tKPFS/K4qK6Tv+g8F2x3y+PDEni+z4b + prrN/xwNbYivA3JR54tty1s0vQbLH9+vw2k/XTHz8u0ctCx/LLu3HpvCLF23w3RdFle9vx2bnmH9 + 5tPpWRjA3avzL38Ba9QzVsYrAAA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa8c11599dca98-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:46:30 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:44:06 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=CuLr6BSPjroljbpnMiCx31GfsyV9W7pfZRbHRJC49XAsEpu8M9h0KUeLPP58fMfOAGYsDM0N51N%2BCASws6O3OtePGOP0wy7QTJSqS3Cvk73%2FlasdcOkjRYPLaAJviIaTAoAO"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=1000&before=1611069195&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1607915595 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa2XKqShSG7/MUFtepXT0PeZVUykJoZkShUSTlu58CU9mSsHaSdYab45Xazcfy + 7zV14+vDZrPZBHHow+Bp8zx/ml6v7+/m8ah1oXfxtvdR8LShilKiDLficTktj4OnTVCRKh2y4H3o + +vgTrBbKQFilOBrLpIKw/HDGYwkDsdKgsUQSCEudwmKVURLAluMOra3UgkPYunNorDCQtmUxVlgs + p6DfFmcxYrFME2jJitaVWCzVSkPY/IB2MCIJ5AmF6hokVloBWpsPhxyLNQIM3ry5hGgsFxTEshSP + pSB2749oLJFQYsyr4oTFCgt6QnZKsKlGcmmhnJCVaYfGClCErEglGkuIhbApwQavZIyC1touQ2Op + Aq218QGNJRaKssx4i8VSLaE0nil0iZRUKtDBRIHWlnINWssGdPASBmqb9habGIXhYOVN3dijsQSs + vGl0woaDUMRAIiRDrrFYIcGik9S6QmM5g/qEpIwbNJaARSfJLbZZEoyDbXMiZYvGwv1twj02eAVR + HCo67hgnSCy3WkE9mCtChsUqbSFrY38u0FgFOljcJQKLlRZMNXFd7tBYoyC/jSsXobES7MbjQmBT + DeeGQOEQs51BYzmDKm809NgMxplhkN9GXmKxzFoKBe9ubNFYbRTkYDt3SdFYzkBrLcWWSEYkuOe1 + usamGmqkhTzBVA32PIEKyaAo07vuiMYKAWmrwzM2J0wyQJ4ghwTbjRNLKaStLGusCMQYCWkrsxib + b4nWBnIwKXKCxjINZTBxITUWq+BjCtESjsZSsOiIssXmBCIUuIEStLNoLOOQtXxQ2OAlnIGbU15G + 2I6RMAN2NTyx2OAl1IIdIxcc7bfUMKgb5yxGewKVFFoydknR1hLBoQ0UK3N0qiEczAmsGHCeQKy1 + lkPNEnO0RWOVgJaMhUhtZyzY37JQ7dBY+FiYGeSB1YQlAooyxikaK62BRCDjMUJjORgO5HjhaCwD + Ky85/A1rCbh3IHvf47Fgf0v2JsdiheSgtZkUWCyDHr6U43gaEzSWAQ5WjmOT4a2lQPtRjuNeaSwW + PLUrxzFxaBEo9NCwHEcXhkisMUxTAHsJkwSNpcDeoRwvtozwWOCgdcISi8VqKyC/vag0RWO5hDxh + GPUFi1VSQ9YOh2OBxUpNNIRN+BGNFRzy22FXY/sEI6BHReV4PkVoEbg1kIOd+4JisUwIKIOdY8mw + WGo1gbA6I2is4ZDfnuVosFiiGaTtyZ/QGYwQ4KymHE/1+b5PmN+93OYGtfPh239Cft8kCBPv2hlN + tKVS3p+KBmGabrt8dNP4/RYzCA/59uTaLm/20435LxLcje5c0rTu/bm0pQuo67bH3rWXhR3zyPrX + N2TTVKsj82iSV7dfsT7+NeF9Vt13fvGnGej1+uWMmeddW3df3nZxSdfvWhfH+ffsWF4a5W4f3T1v + +Or18q2Z1y9nXR//KcHacJ+6nwm2jJHXn0mW+oXzf/vi6/9eucovIvy/V+6PM17+rGvQZU1fTVnz + GY6B9TsAKzanju2+8evMJesDI1hLsreBpvXrGXG5dkHsumgZ99e18hK4wUW9z5v91ue129Z5VeWd + i5p9PKUpLn+Ru7r9O7E+f6o3j3ChelhZhCDfx26YLG27bewqH7r7klHl9Zzwgumg5X7grmoFvu0X + F80e332ybkWsP8fGt+PgW9ni+rO1/xet/U6Efmnt6mK2rusr321b5/t27+JPDUKXhW38ufAFSZhX + 8/RPjl7mh8P6SB9FruuSfirfH5tK3/hw/n7V2Vd7l7eQukXMh++3/nKYrlhofD8HrM2fa++9XlOs + xdumn65Lwqpz92PTT9i+KRo8bZhVt19zfbj+BRbMutzLKwAA + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa8c2f6c613ff7-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:46:35 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:44:11 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=AzbdbzjFnLJWwrtFnVRtnwDjP5cPBDhl8xEipU4yPGipC6L%2FvzGfdV8hZ6wUYkOb9yTVWJkPuCF1DOlRl6p%2FnJdMnxqSHDksXDFY3OJBzThUKX%2FNOPkr8Oo1wwMdwK1FYEkg"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=1000&before=1614222795&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1611069195 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa2Y7aShCG7/MUyNejqPclrxJFyNht3F5xuw2eGfHuR0A0wRnXLJWTc3O4Arr9 + uajlr2qL5y+bzWaT5GlMk2+b79dPl9fzy7vrehZcGl2+nWKWfNtQRQVjVFrysNzm8+TbJmnCiZc8 + eVk6P3wGS4xUAPY45AGNZcxA2MIOaCzlHMLm9Q6PpTBWp2gsIaATdvaIxFIrBGgtpY9YrFFaAtip + fbJorCAMwpZDhsVKSjWAHePRYLFcKwthORVYLJMGClkoa3TIqFaQE4IasZpAidZQyIaoCzSWWgFh + m7ZEYom1DBLGwROOxkoFYnNl0FgOKtiQ8hmNZWDeDtbirSUaxKpQY7HmjZCJ5oTFKkmgXnbQosVi + JQelph+0Q2MpB7Fd67FYbsG87RVDlwNXFsrbnqkOjSUSkppuYli9JcwqqPN20TRorKagtUHssVhi + LIWwno04LLWWC6gc2kdrsVijBDQntL2gWKyWBEqw1pAGi1VUQ9im7zMsVgoKOaFx+oDGwprQpFpj + sUIYqBwa6vgfYAWI3Y14rAR9S+YSjeXgfFs/xSMaS8Ehvz4pdIJxBoasrvFYZkAFq3NbobFcQ02n + VtOAxVJDIQWrniS6HKjmUN5W84mhscqC1s67iMZKA81g1TG0WCzRDMqEqlLokBHOoSqr0Cd0aqzS + kDBWfC/QWAnKeEVOWAUzRoKZ4Ltq/jvYiMYyCbVI7+sjHss0iFUBi1UaPEWWc9ZhsdIKyNqydhaN + NeBxr/RDwGMp6ARfPKKxEpTx0j1iRzvDqYGqbF9atCYwDT5Z2qctR2MphZywZx0eSzQFsdizAzVU + gjJeTEGjsVRA1haH7oTFEk2hqaaoBVrBiDSgE7xVaKwAFazYW+RzMKqtlVDxFqnAYwko424+Yn2r + jVAg9tA2f4AlILaesFhtwbHZVUVAYzk4Nru0YmgsMVCCOe2xnVcrDTuB93isAo/SjpkRjZXgcc+R + QaKxHGyR+Vw7LFbCxZuPT9hBVAsCHk5zabFNR1MLtsisoE9IrDIMfAS0Mz02E5SmHLI2PZ2wLVIp + zqCQpQeLnWqUsApyQrpTAo014JEktdWAxsLdIaUHdMi4otCcYOcM7VsuwSHfzgL7CEhayyFrzcwM + GisMdC4z4x6bt9JY8JG76Y7YGUwyAx6lNQk9EiusAkc7JalDY4WAnn4oXkY0lgpo/FCk9lis4QZK + MBmz+9Hu+u7HbW/Supj+/E/Ir5skaRFduKEpUZbaO11I0v1+O/ond1kn5H7h4LdHF0bfd5cb868k + uVvduaIP7uUfCkwvoG7cDpMLjws7rivrX9+Qfd+srlxXC9/cfsX6+vuEl13tNMbFn2ag1/O7O668 + 6EI7vnvbxSXjtAsuz/3H7FhemnnXZXdl8N7rx4d2nt/ddX74txwW0m7vPuewZY08f85l+7hI/g9f + fP7fe66Jiwr/7z335o4fb/s1Gct+ai6q+R2ugfU7ABG7Sse26+M6c8n6jZGsiextoQ9xXRGXsUty + N2bLuj+vtZfEzS6bou+7bfSt27a+afzosr7LLzLF+de7keiXrn5/1W4e4D71ZSUGie9yN18MDeM2 + d01M3X3HaHx71buEErJoJXdNK4lhWlx0TfjxlXUrvnq7ND5cBh8Si/PnQv8Xrf1Igb5r7Wowgxun + Jo7b4OIUOpe/mg/GMg35676XFKlvrttf5XntD4f1lSnL3DgW06V7/z6vxz6m1+9Xc311dPlZUbeC + +e37bXw8XK5Y+Ph+D9iaX7fee39dSi3f9tPluiJtRne/dvkJ258evZQgY/bLzfXnfwCdH3I6yisA + AA== + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa8c35a8dc542b-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:46:36 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:44:12 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ravnB9GMhxBvpekfMROOpoLxjLkcW2VaG1g%2Fb%2F928db45Yny%2BUl%2FP8xckXtDkzbJIseZjEBcs%2BBuC4syU0HuWq7UXcoDLWAgrp2cGkYdMUNvBZjnkYXMVlNsM3cpww8p%2FHY8"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=1000&before=1617376395&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1614222795 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+WaW4/aOhCA3/srUJ5Xle+X/StVhXJxsENCIHaAzYr/fgRULelmurujnvNyeILY + +WLmPqO8flmtVqusylOePa++3X5dP68/v93Wy8HlyVXrMZXZ84oqqrlWRPKn+bZQZc+rrAudGars + 59Ll6TNYoZQFsG3cKCyWScUgrOhqNJZLBWFZ0WKxRFEKYLeNDmis4ATC+vyIxjIFWcK2rkokVllY + tltZGzSWUAFh6QmrMmW4kgC2GXus3SotKSSEppMFFis16LyNmBIWyymDnDd4mWOxTCvIHUK13SCx + 0loNYf0+dmgstZCX+SYMWKyRDFKZd+WExlIBqcwXwmGxmnMNYUW5R2MpgbzMs4BNOlJKbgDs5lBg + scJKDZ22DrFBY7mEVFZ7g8YaTiC7rW13wGI1YVDmddO4w2IFB5OOqzdoIVBGIZVVB4qNYNwSAhlY + pfoTFquVhFRWjqPFYgXnkMqKqcZaAucUDONFL7FVDSdWQwm9YPGMxioNGVg+pR0aSywk23zU2OzA + rAADY77LRyzWGAupLPcDR2MlaGC5q7B2y6Q10GltP3k8FuwdbB8NGkspiN3ILRbLrYJCjRVFRGOV + ghK6pabHYqllENaEAetl1HIGxQR90Fi7pUaDRb5uAkVjlYHCuA5BYrHagjFB2w4tWyUU1JKoVGN7 + Byo06GXKSqzzUqYF5A5ye8rRWEogIciKYucJxAoOJR1Rnwo0lnOoYhTucEJjKdiSiFJgWxJiNJgd + hK4EGgs3p3zaY7tIog1YNvNjmaOxhIHY7YCtwYgSFIq3vDLYMQWRBuwiueLYBooIDXY6LBK0yrgE + Z4ys9NjegVAJypZ2Fdp5CZx0aFkgK0ZmrRaQl5GXrkNjCei8ZF/3WKxmYFVDaPeCxSpLgDrBT6eR + o7FGKBDLSjRWQi2Jn2LVYrFCagthWV5hsRycJ/iX1hdoLGMUwm5rhsVSQxiEpVuLxipo5O7Pkzug + sUQbCBv7GosljECWcPYJ2UozAw9a/dmNFRqrLCjbIndoLBcgVk3401IKCkEQtGy1hkZA/rSr0Fil + hYaw+UmhsVJCdnsy3YTGEqh38CdWeSxWSqga98fjJNBYBmVef4xth8dCI3d/jM0JixXCgEJoxgaP + Bb3s2NQSi+UGjLfHMmDrBMMk1EX68XxOaCycy8ZRYXOZoQw+bbNFWwIx0CTfj7XAFkvaglM7P6pG + obHMQkJI0wsaawiYdNJuilisVlAr7VOzz9FYCVY1KcxGQLdv3+97s86l/Mc7Ib8ekuV1csMdLRhj + 2j60JVm+2axjmNx1/bHuy/J9WB/dEEO/uz6YfyXZw2rh6n5wv14q4TOoi+vD6IaX2TluK8uX78i+ + bxdXbqt1aO//Ynn9fcLPXd0Y0+ylGejz+u6OGy+5oYvvPnZ2SxyLwVVV+Ng55reWwe3KhyLpvc/3 + D+28vLvr8vS3BDbku437nMDmPvL6OZFt0sz4P3zz5X8vuTbNPPy/l9wfd3z/s1yz6PuxvUbNb7AP + LD8B0NgtdKx3fVpmzlm/MbKlIHtf6Ie0HBHnussqF8u531+W0kvmzq4cU+h36xQ6t+5C24boyn5X + XcOUlF8fi+5fgfXbm3zzBCeqLwtKyMKucufrSYe4rlybcveYMtrQ3QJeRgmZ5ZKHrJWlYZzddLP4 + +OZ0C8L6s2982A8+FC0un9P9v3jaj3jou6ddVObg4timuB5cGoedq94UCNHnQ/U28WV1Htrb9jeG + vg37/fLKWJYuxnq8pu/fB3upT/nt+qKxL9YuP1zq7jG/XV+nl/31jpmMH/eAuflt7n2U19XXqnU/ + Xu+r8za6x7XrX1j/kGj2vGKUsC930V/+ATWW5rvLKwAA + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa8c3be9f45419-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:46:37 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:44:13 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=d6y5KRLpPTDlIEU8S9CcvzBaki5DjXVcqFtor9Ax7wZyekinUsZo9Tvd%2FhDrrjiYAoesOpi4XbedptPFQ%2BapYbaNV%2FnpNcuY7y1sGxhZwUZrWl9tilPPNBFImXrOKFddT%2FGF"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=1000&before=1620529995&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1617376395 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa2W7iShCG7+cpkK+jUe9LXiWKkJe2MXiju80W8e5HJlEGT1yTpM5yc7hK6Pbn + 4vdfiw0vP1ar1Sop0pgmj6un23/T6+X9r9t67l0aXbEeY548rqhiRDIjpX6Yb6uL5HGVdEZ4xpL3 + pevDd7CaGBCbZ3sslhKjACxrqwGJpdoaBmDpwCQaSxSIdV2HxUrCOYAl/lJjsUwqAWEJP2GxlGjA + CfpS51gnUGKNhLCbHK0tYYZDWDNiscQqIyAsowKN5QyK9nwaD1iskcRA2L7I0FjKLITdRqzBiDaU + QNjKnrFYKTVQavRpOKd4rDIg9oCtYIRLxiAs3WBrAmHMQr49tmd0tNRySIRj7SkaawSI3fQKjYWT + 91j26CyjQkCF8ZhHpMGENQpM3kORajQWrgmHnAQ0lltIhEPalVisIhqKdtwEgcVKQSiEtRlaBMk4 + VMFGrTwaSy0oggp4LJGgCOLMsFgmQCdEy/ZYLKVgqQmBESyWGAHV29Bv0NESLaCmE7oUazBjBIEq + mI+VQGOpgsYPv2/QWC3BLPM1WlsjjIKybN/2LRrLJSTCvmobNJYoSIR9IbFZZjiH7nT0Xiq0CIxz + yLdDGBQWS6yEfDsU7YjGGgKVmiGXRyRWW82gUjOQGpu82sB3On0YNliskhbECofNMi0N6NvuxLE1 + QQtDId92nUZfMiHBGazbDQyNpQLStqvOWyyWGglh22M3/A0sAbGNR2OFhi5ZGw1WBGUFhQzWZlmF + xTJDoAq2C+yCxnKwgu16tMGk1WDT2XGyRWOZgZywvfAdFis5h3y75fSExVJ4bK7ZMSKxUzODot2k + ORqrLYeefmx0e0ZjDQOjVTW2JgiuNZRlFSMGiyXWQllWWtmhsZJCIpQiw2rLrbWQCO586dFYCTrB + jQ4drVbg7Z7LSmwF40qAE2NxvmRoLFWQCMWhz7FYwUCDFdmAfZ7AqQJvTvNtfkJj4V6WV6ZBYxmF + RMgds1gsMeBzsDxNJR4LPsTO7Q6bZcwSUISsJ9ixmSkhIBFSP2LHDzbN4xBWpQ6PpVCWpXJP0VgJ + ZlkqDDpaDvvWtrRFY6mFDGYbj713YMxaSFu7pTUaK8EnSzZvselArQSncWPaLRrLwJpgRIXtDlQr + BhVGvSkLNJaAnVfbHjvfUikk5FvVdWhtJVEgthbYQZROHR3AyjP3aKzkkBPkcYvWlgvwewc5HrFZ + Rik82sls6/BY8MtumWUlGsspKAL196Pd7a/n171J62L69puQXydJ0jI6f0NTzbXi94+BkrSq1qG+ + uGmdkPuFoV4fnA91300n5j9JcreaubL37v1nGtbOoC6s96Pz51kct5Xlt1+Rfd8srtxWy7p5/RTL + 658T3ne1Y4izH81Ar5dPd9x40fk2fHra2SFhzLwrivprccwPzWvX5Xd+/ez1/KWd1093XR/+KcF8 + 2lXue4LNc+Tle5JVcWb+Lx98/d8r18RZhv/3yv1xx/OfdU3Cph+bqWo+wTmwfAbgit1Kx7rr4zJz + zvqNkSwV2deF3sfliji/dknhQj7P++tSe0ncyeVjrPtuHevWrdu6aerg8r4rpjIl1E9xNx3/KqxP + H/rNA9yofixchKTuCneaIvVhXbgmpu6+ZTR1eyt4CSVk1kvuulYS/Tg76Ob48CG6BbH+nBtfzoMv + VYvr9679vxjtVzL002gXL6Z3YWxiWHsXR9+54sOAEDapLz42vqRM6+a2/YPRd/UwLK+Mee5CKMep + ff8+VMY+prf3F82+OLu8pdRrxvz2/jqeh+mImcb3e8De/LH33us15Vqx7sfpuDJtgrtfmz7C+k3R + 5HHFpH39NNcf178AyrMB1ssrAAA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa8c4228d7cab8-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:46:38 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:44:14 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=7BWE0iiwaWFxmzN9yI1Uct4dNktPg52%2FPEYwruDQf%2F9dwoUtHfyF3Yxlm8FXT7zxhkKJAxlAk%2FoLIv8MAx8E%2FWk2asr%2B82AIcH39dmgK4aCedMYs5Gf4QB8wJ3ZrrgTH2xmI"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3-27=":443"; ma=86400, h3-28=":443"; ma=86400, h3-29=":443"; ma=86400, h3=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=1000&before=1623683595&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1620529995 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa227iOhSG7+cpUK6rkc+HvkpVoRCbEMiJOKExFe++FahmyDRr2q7Zs282VxDb + Xxa/vQ528vpttVqtEpf2afK4err+mj6vP75d27POp71366HPkscVVYwrw6U2D/NuhUseV0l9bklU + yY+my8NXsIwKDmCbXTtisUQqCFuPZEBjmSAQNrQvaCyRFsIeXYrEamO0grCbfIPFas0hbauxYVis + spZC2GbcYbFSENBaRbFTpoWikLbluLVYLLeEQdh2KNBYISSELZnEYpkUGsJmHOu8mhgOrYTDEPdo + LBeQtodjqpFYZYUCrd21aKxRFooJh7QiWKxmoPPuR0uxWMkNFBj3O3lCYwkTENbLEosVWkPusN9U + GRqrNKht2uZoLAFz2V5maCwlHEroRZ55JFZKw6CYsEs7gcZyUISdFtjyQwpJQGtJUWOxXIDukIfs + iMeCU5YH6rBYyiWITTODxRKlIG1zHtELjAgDYpnGZl5hjYVE2L5UFRarLDhlWxEaLFZoCSUdX1R4 + LNNQvPWuD3gsKIJ32xaNJaDz+g3psFguLRRqvDpiiyXBDLh3cLGhaKym0EpwY6bQWAGK4E4MW+Rz + ozVU1WTHaPBYMIJlR/SUccIF5A4pH7ARjFkBOq/tXY3GcgVZa0OG3UAxo8CK0e4LNJYbCVXjenw5 + orGcQF6mjx12S8KIArEqpNhClFpuQaxjWBGo4RSqb+VZF38FK89YrKZgdpD7Fnv6QZUx0AKT+Z6j + sUqA1roCvRIUUSBWWexZDRXwWY1oRo/GKgllXlF32O0e5QJ0B6HRMYESaaHAyLXAugMRVkC5jJoc + u0Ofcg40ZaQVSKy0ykB1QoypVFisVBrwsjieDns0lloQ2zYbLFZYoyBsrSUaK6Cjyzju/gRLDITN + ZY7GMg5q6yVeWwoVS3F0psJimVVATIgv5xe0tUxCR0Dx5eSQR0DSaAudNsfTlnVoLFjkx5MTKRbL + CRQY46B2JzxWExC70Xgsh5x3kOcRi2XgkXscxKlAY40CrRUHbLw1VEFJJ/aDRlY1UlspQazj2FAz + PSqCsCFGjcYqTkCsiFisAnc6MRw3Eo2VErS2PbRorNAawjZntLVSQOdgMews2lpJBKitG7DuoIUF + Q01w6YjGGrBOCFmFFkEwMIwHLdBYbig4ZTz2WCzV0BP/2NXnDo0VAsSWJdZ5lSVgYOx4wC4wZQyH + 6oSOyQaN5RbCHiP2tQepDLPQuj2O4/0Cu357vvVNKt+nb++E/LxJkm57393QRDJr7y1O0jxfh+Ls + p/b7o5EkbYv1yXehaOrpxvw7Se5aN37bdP7upZIZ1If1cfBdnNlxbVm+fEM2TbnYcm3dFuXtXyy3 + f0z40asaQj97aQb6vH7Y48rrfVeFD287GxKGTeedKz5nx3xoVvj6/qneR5/nT/W8fNjr8vBvCdal + de6/JtjcR16/Jlnezxb/pwdf/vfKlf3Mw/975X7b4/n3uiZh1wzlFDWfYB9YvgMwY9fQsa6bfpk5 + Z/3CSJaC7K2h6frliDifu8T5kM39/rKUXhI/+mzoi6Ze90Xl11VRlkXwWVO7KUwp+/0+E/4MrE/v + 8s0DnKi+LUxCUtTOj5OlXVg7X/apv08ZZVFdA15CCZnlkruslfTdMBt0XfHhnXULYv3eNz7tB5+K + Fpevzf1ftPYzHvqhtYuT2fkwlH1Yd74futq7dwVC2KWde5/4km1alNfu7xb6oWjb5ZYhy3wI22FK + 37+eZPRNn16vLy72xdrlzaVuHvPL9XUf22nETOP7PmBufp977/WafM2tm2Eat03L4O/bpr+wflM0 + eVwxa/m3m/SXfwCFmUgoyysAAA== + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa8c487b56548b-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:46:39 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:44:15 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=po2bcm%2Ff8gsE0E0L%2BcDmOdsZO1dfoU7FjRju8WvGzmpsn6LC2ZBxPECasJVZNAI7nFIhCqzbzxYrKtj13JIbuEojE1cAkKk5%2FcIzH5j%2F9%2FvxnGT%2Bp92j5fOrwYrpOabhNUSj"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=1000&before=1626837195&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1623683595 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa246jOBCG7/spIq5bI58P/SqjUUTAENLEgG1yauXdV0laPWGa6kNpdm82Vwk2 + H5Vy1V9l4OVhsVgssjJPefa0+Hn9dfm8vH27jhfB5cmVyzEV2dOCKqYMF8rax+m0psyeFlnX1Ydy + zN6Gzo/fwTKjBIStNMVjCWit2zgklhlmKICt5HOHxSorJYB1YS+xWGkpiK2PIxqrFYitVhs0llgQ + q49HLFZoCQWYEyu0EwSzCsCWp7bEYrlQGsIO/TMWS6kiEJZWBIslmnMAW+w91lpqJWhtsakZFmtg + qSlWDRqrNDcAdrUdWzRWWsjaVSsrLJZbDilY3m8jEksspVAkWEF3WKxhDNIEk2iDxhINYoPyWKxk + FnKCTntsJBDBFLRkek0JHgtWB11XAo2lAhJGXT0PWCzTBsKq47FEYxVYHdTBndBYLiAZVylQPBZM + B5XqNRZLrYIUTPW2wGMJiO02HI3VBsoytT0lNFYRBmGfB6zeEiI5GLca3TYTIuC4VQVSb7U1ElQw + uZFrNJZzKG5lbSgaS8BaJotNxGK1VaATVr3DYpUG2w+xP27wWEpAbN6jsRzUBBFzj8eCfYIIvkJj + GYH0VgwlOm4VJVDcil4GNJZQSBNExwosVioB+nZToTVBCrDyivUGnbySWCh5RZEMFiukAdNBbdFO + YIpC6cA3eY3GMg3dpuCVO+CxYPLyapWjsdRCvuVuTfFYUMZ5mQgWSxSHCjrbH7DCaIzhkIyzIiUs + Vitw48/IUKKxjEHJS/fOobFUQb6lu4hNXvNBLaOhDmgsZ1A6UN9j9dZIeONP14NGY4WBig6tygGL + FZSBS8ZCg8VSbqG4Je6ETV5DBKgJRCWstZoraCvtj8PBoLFcCwjboTVBM0sIhG0rjsVSCUWCP66G + NRrLKOhbO6yQWGXBezX+sMPeAtLKCGMg7BCx1UEpBe0d/KHsOjSWQXrrD5dnOUis4FDH6Pf74YjF + ckUUhA0KeaNVS6ug1s7vdidsaye1gnowv6t6g8ZKA2Lxwii10FCW7cqTRWM5mGW7UuGxlINLlu8E + Fqss7FvbbdFY8AGB35ltQmOpBa1lJ2zyCmsE5NtUr2s0VkkNYV3cY7FaSShu4655RmMpg5wQB4t2 + AjfQfTAf0h5tLVMMioSwLhQWS42GnBCsw1ZeQQy0gfLDcdigsRLaRfphX2ClhgsOlsie7bF9AmcC + dEJX77A7dE6tgCKhywP29honHHpo6H3M79uP67dft7nZ1qX89Z2Q3xfJ8iq5cENzZbi8fzyf5XW9 + jM3JXcbvu9Qs75vlzoXYdP5yYf6DZHejK1d1wb29pqHpBOrichhdOE7suI7MH74hu66dHbmOVk17 + +xfz458T3mZtx5gmL81An5dPZ1x5yYVt/PSyk1PiuAquLJuv2TE9tWicL+42/J99fn1p5vnTWefH + v+WwkPvafc9h0xx5+Z7L6jQJ/i+ffP7fe65Nkwz/7z334YxfH/s1i+tubC+q+RPOgfkrACt2lY6l + 79I8c8r6g5HNiextoAtpXhGna5eVLhbTvD/PlZfMHVwxpqbzy9Rs3XLbtG0TXdH58iJTgv64f0nt + t7D+fFdvHuFC9TCzCFnjS3e4WBrisnRtyt19yWib7VXwMkrIpJbcVa0shXFy0jXi4zvrZpz1cW58 + OQ++pBbn7639v2jtVzL0U2tnFzO4OLYpLoNLY/CufNcgxHUeyveFL6vypr1Ofxfoz03fz4+MReFi + rMZL+f6z8Uldyq/HZ4N9tnd5TalbxvxxfJmO/eWMiY/v54C1+X3tvffXJdfKZTdezqvyNrr7sctf + WL56NHtaMKvIw831538AWm49qssrAAA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa8c4ebd31546d-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:46:40 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:44:16 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=hoZLsfYCs6h00JgBffZdhj4jMqtEPQRn8wY4WyfKRXZN4RA8DUsruvMerL0bQXfTgIqwbcEvAqzpfYw0JzLfqGbEWamFqwygXwrQ%2BCW%2F78UfgrsWFc10oo9Co2CUO6sTd6s6"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=1000&before=1629990795&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1626837195 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+WaWY/aOhTH3/spUJ5HlfelX6WqUBZngWzYCQFGfPerQNWSTs4Mc9R7X+48Mdj+ + 5fD32Wx4/bLZbDZRFg9x9G3z/fbf/Pf669VtPPUuHly2HYc0+rahillriZL8ZTmtyqJvm6hPaZHa + 6NfQ9eVTWEkYhHVNjsYKTUGsVUisMYIYAEsOqcBiNSUCwiaeYbFKcUhbonZoa6XggCckl9ChreVK + WQhrB47FMmMMhKX7BI1VAtA2OZ/9EYslikLWnt0Z7bdEwtY60+KxBLQ2mwwaKwwBsW2Jx2oOYusY + idXWSNBa3e3QWE4UhGU7rAjaEAWkmuTk2wsWqzXot6du2GOxShnQ2nw6Y7FCEmjLppPOsFhmObRl + 0z5MSKzSnEkAe8x7gsUKYzWAHc+Tx2I5t9CWjV2BxjLKIAcb871EYqU0DLJ2YB7bfsh3HCz4AzYc + JGEWymD+0GDTuFDKQtoe/LnBYjljkAj9EGP7BMEMpRC2pzkaKwQkQl8n2MQoqAVLZJ+3FInlRoFd + TbdrsEWHayogbTtuAharJIdSTTudsA7GJYGxZayxWK7Agt4ybtBYCXY1LU2w3ThnFMxgTc2xbTMn + kkMO1nCC3jLCBbRlDQnYyjvnRqi/rY9TjcVqoqAt259abNFhSggQezDYDMakoZAI+2pCayulgNqP + fR4KPBbsGPd5YdFYBnY1+zR0WCyjDMLu7A4tAoO78Z0J2OrAqKZQI7oTBRpLhIK2rOr1CY+FrimS + qgsKjWXg2aFqKdZaaiTY1VT0MKGxHOzBKqLOaCyTUEEvzynWb6nWDLqrKX2Px0oFeULZtxUWq6yG + wqGsYo7GSguKkNU1HkuhJr9MdwcsVioOWss0Nt9SIaCry6Rojj0ay40CsQ06eLllkIMVxVCisQys + ZYXJsPmWMqOhVFMIiT34U6rBjjE/OLQnEAtji2yPxjIKYnWPbfKJtQpysFyMExprwBN6zi8NGsvA + M687Bmx1IEaAp0jXEonGcgl1jK5OsHfjRFoGiZAFgscyASXGbHfC5gQi4ONelvTYroYwApbItGyw + UUaoAm/t0vSCvRsnRHNoy1KadmisFFCUJReF9ltCNaRtMk7ICyszX7pD2iaH8oLGchjbkAKLVVZD + OSE+jhaNFWDbHB9YisVKrSAHi3f7Go1VBsoJcXXkaKwEbz/isrJ4LIOxyQ6LFYqDW2ZOeKwAv9iK + lY+xWA7fMdqz79FYZqFaZieX4LFSgVjK8FiwT7DH/WPbfHv14z43atwQ//xNyO+HRHE+OH9HK8M1 + fRQiiotiG6qLm8cfv+uI4r7aHp0PVdfOD+ZfSfQwmri88+73zzT0AurC9jA6f17YcRtZf/uO7Lp6 + deQ2mlf1/VOsj39M+DWrGcOw+NEM9Pf64Ywbb3C+CR8+drEkjIl3WVY9Z8dyaVq5NnXR06t+PDXz + +uGs68vfEszHbeE+J9gyRl4/J1kxLJz/6cXX/71y9bCI8P9euXdn/Hhf1yiU3VjPWfM7HAPrTwB2 + 7JY6tm03rDOXrD8Y0VqSvQ90fljPiMu9izIX0mXcX9fKS+ROLh2Hqmu3Q9W4bVPVdRVc2rXZnKaY + /WoeasvvxPr9Tb15gQvVl5VNiKo2c6fZUh+2mauH2D2WjLpqbgkvooQsaslD1YoGPy4W3Tw+vLFu + Raz3Y+PpOHgqW1w/t/f/orXPROiH1q5upndhrIew9W4YfeuyNw1CKGOfvS18UR5X9W36G0ffV32/ + PjKmqQshH+fy/edhaOiG+Pb+qrOv9i4/Q+oeMX+8vx3O/bxiofHjHLA2v629j3rNsZZtu3Fel8d1 + cI9j80fY/lR0jkEj7Ze79Nd/AJVPexbLKwAA + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa8c54dca55443-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:46:41 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:44:17 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=FsmEtqoTJLPO4ep2FuS3ckySl3zXyRddUium2AY44Xx3zc8KhaZ%2FRfeim4eZLP7M6iWgxB6SmLFUvx3gkd%2BI%2BkSYfN3XCQFbF26SvGo4YcL%2FOtE9yRaVN8UpqFOPiJ2GVReN"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: grant_type=client_credentials + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - close + Content-Length: + - '29' + Content-Type: + - application/x-www-form-urlencoded + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: POST + uri: https://www.reddit.com/api/v1/access_token + response: + body: + string: '{"access_token": "-S8yWeb31gFOhOTHpXOIW8o4efqLB0g", "token_type": "bearer", + "expires_in": 3600, "scope": "*"}' + headers: + Accept-Ranges: + - bytes + Connection: + - close + Content-Length: + - '109' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:46:41 GMT + Server: + - snooserv + Set-Cookie: + - edgebucket=QU25HWvdp61mrlxng9; Domain=reddit.com; Max-Age=63071999; Path=/; secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + cache-control: + - max-age=0, must-revalidate + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '298' + x-ratelimit-reset: + - '199' + x-ratelimit-used: + - '2' + x-reddit-loid: + - 0000000000edl07u1t.2.1630961201580.Z0FBQUFBQmhObjR4VVJuQ3YyRkpOT0VPNFJkQ2hObWFIcmlTUXJpbXJLR3otT28xMUtNcGp4TDVmSzhpRExxc2ZWNXpqTVNfbWpOMzJiQU9Gc25pY3ZrTnlLaFczZGdtVnZwRk95Ql9YWjdPN3lDcXV2V21yNmpkcTVLYkxVM0NiRnllVUQ2alNYTDY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - edgebucket=QU25HWvdp61mrlxng9 + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t3_jpsb6k%2Ct3_jps9iz%2Ct3_jprevh%2Ct3_jpqwe5%2Ct3_jpqvmr%2Ct3_jpqqts%2Ct3_jpqko7%2Ct3_jpqjsx%2Ct3_jpqfd2%2Ct3_jpq6so%2Ct3_jpq3gn%2Ct3_jpputb%2Ct3_jppfc4%2Ct3_jpp7gu%2Ct3_jpovn2%2Ct3_jpocxp%2Ct3_jpns4y%2Ct3_jpnn4n%2Ct3_jpngth%2Ct3_jpn6uq%2Ct3_jpmzbm%2Ct3_jpmwqo%2Ct3_jpmwc3%2Ct3_jpmnah%2Ct3_jpmbw4%2Ct3_jpm5t8%2Ct3_jpl3ym%2Ct3_jpl0c9%2Ct3_jpkut4%2Ct3_jpk5l1%2Ct3_jpk47n%2Ct3_jpk0ko%2Ct3_jpjfel%2Ct3_jpibpl%2Ct3_jpi39r%2Ct3_jph7j2%2Ct3_jph3x5%2Ct3_jpgo3n%2Ct3_jpgmpl%2Ct3_jpginc%2Ct3_jpghnj%2Ct3_jpgf4z%2Ct3_jpgel6%2Ct3_jpgb1f%2Ct3_jpg0vr%2Ct3_jpftik%2Ct3_jpfnft%2Ct3_jpfle2%2Ct3_jpe0re%2Ct3_jpd3pw%2Ct3_jpczs9%2Ct3_jpcmpo%2Ct3_jpcior%2Ct3_jpca28%2Ct3_jpasl0%2Ct3_jpalvy%2Ct3_jpa8d3%2Ct3_jo8bcj%2Ct3_jo80f2%2Ct3_jo7n3f%2Ct3_jo7kh3%2Ct3_jo75p9%2Ct3_jo6ytz%2Ct3_jo69q6%2Ct3_jo657z%2Ct3_jo5yoh%2Ct3_jo5uo6%2Ct3_jo5hvj%2Ct3_jo5c7w%2Ct3_jo4lwa%2Ct3_jo4gbn%2Ct3_jo3w5c%2Ct3_jo3f8t%2Ct3_jo35ih%2Ct3_jo2xzq%2Ct3_jo2vqd%2Ct3_jo2me1%2Ct3_jo2l51%2Ct3_jo2b5t%2Ct3_jo28zu%2Ct3_jo28ce%2Ct3_jo22r5%2Ct3_jo1ze0%2Ct3_jo18ud%2Ct3_jo171v%2Ct3_jo0mq3%2Ct3_jo0dgz%2Ct3_jo0516%2Ct3_jnzel5%2Ct3_jnz0nr%2Ct3_jnyyii%2Ct3_jnyaid%2Ct3_jny993%2Ct3_jny23r%2Ct3_jnxx97%2Ct3_jnxtf6%2Ct3_jnxqcu%2Ct3_jnxf3h%2Ct3_jnxbr0%2Ct3_jnwlda&raw_json=1 + response: + body: + string: !!binary | + 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 + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '55289' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:46:42 GMT + Server: + - snooserv + Set-Cookie: + - loid=0000000000edl07u1t.2.1630961201580.Z0FBQUFBQmhObjR5RUUtRHkxdXVLUHBGOXV4YllJbWtJa0xqRW1kWlp5Q0FzczFjd0o2MVlENEJNNkpnOTZVVndKSXpOUXc5cWdqSjdkdWdjZjA1cVFxa0hXeHVjajhiSnRCR2VnNnlMNlhMUW8td0U3UmFHTzN0UFBLVWRQSTFTYjBZTkNNMXRFc1c; + Domain=reddit.com; Max-Age=63071999; Path=/; expires=Wed, 06-Sep-2023 20:46:42 + GMT; secure; SameSite=None; Secure + - session_tracker=jqfndrglmgipekdfkg.0.1630961201721.Z0FBQUFBQmhObjR5TzRXc1R6b2k1NkpMWHJGRXk4TEgyZjdPbEt4cjQzYmpuM2hPRkR4dERCV1lSWGxYV29kNmh6N0JfSUJoeEFSYXJiTXBHSUctek9VZ3ZWWmVqXzBfZHNaU2IybWp3RHRDdndSQUxQNHNTZE1hY3FranJoNTJlc2VMOXZDUnZram8; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 22:46:42 + GMT; secure; SameSite=None; Secure + - csv=1; Max-Age=63072000; Domain=.reddit.com; Path=/; Secure; SameSite=None + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '299' + x-ratelimit-reset: + - '199' + x-ratelimit-used: + - '1' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=QU25HWvdp61mrlxng9; loid=0000000000edl07u1t.2.1630961201580.Z0FBQUFBQmhObjR5RUUtRHkxdXVLUHBGOXV4YllJbWtJa0xqRW1kWlp5Q0FzczFjd0o2MVlENEJNNkpnOTZVVndKSXpOUXc5cWdqSjdkdWdjZjA1cVFxa0hXeHVjajhiSnRCR2VnNnlMNlhMUW8td0U3UmFHTzN0UFBLVWRQSTFTYjBZTkNNMXRFc1c; + session_tracker=jqfndrglmgipekdfkg.0.1630961201721.Z0FBQUFBQmhObjR5TzRXc1R6b2k1NkpMWHJGRXk4TEgyZjdPbEt4cjQzYmpuM2hPRkR4dERCV1lSWGxYV29kNmh6N0JfSUJoeEFSYXJiTXBHSUctek9VZ3ZWWmVqXzBfZHNaU2IybWp3RHRDdndSQUxQNHNTZE1hY3FranJoNTJlc2VMOXZDUnZram8 + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t3_j3mz8n%2Ct3_j3lz6x%2Ct3_j3lxa1%2Ct3_j3lek1%2Ct3_j3kjpl%2Ct3_j3k8qn%2Ct3_j3jswe%2Ct3_j3jhoh%2Ct3_j3jcgy%2Ct3_j3hh3v%2Ct3_j3fn7e%2Ct3_j3fc3t%2Ct3_j3f77s%2Ct3_j3f2yj%2Ct3_j3f2o9%2Ct3_j3f041%2Ct3_j3eqdk%2Ct3_j3efho%2Ct3_j3e7ne%2Ct3_j3dsoy%2Ct3_j3dez1%2Ct3_j3defa%2Ct3_j3cxb8%2Ct3_j3clnz%2Ct3_j3bwxg%2Ct3_j3bt0k%2Ct3_j3bbyx%2Ct3_j3b1c4%2Ct3_j3ancm%2Ct3_j3alnn%2Ct3_j3ak5w%2Ct3_j3a0yr%2Ct3_j39mw0%2Ct3_j39lkp%2Ct3_j39kdj%2Ct3_j39jof%2Ct3_j39ilm%2Ct3_j39ihl%2Ct3_j39he4%2Ct3_j39b0a%2Ct3_j39a7s%2Ct3_j391n7%2Ct3_j38xi6%2Ct3_j38tkp%2Ct3_j38l3o%2Ct3_j38hca%2Ct3_j38h3t%2Ct3_j38h3d%2Ct3_j38h32%2Ct3_j38ax8%2Ct3_j386gn%2Ct3_j382ai%2Ct3_j380dl%2Ct3_j37wf4%2Ct3_j37w97%2Ct3_j37s2u%2Ct3_j37rov%2Ct3_j37pj9%2Ct3_j37jg4%2Ct3_j37drf%2Ct3_j37d6i%2Ct3_j371r0%2Ct3_j36rj9%2Ct3_j35wtv%2Ct3_j35i5c%2Ct3_j352ly%2Ct3_j34wo9%2Ct3_j33q36%2Ct3_j33cmm%2Ct3_j339pj%2Ct3_j336zq%2Ct3_j32w53%2Ct3_j32d4q%2Ct3_j31oqr%2Ct3_j31a2z%2Ct3_j30yw9%2Ct3_j30v6u%2Ct3_j30sts%2Ct3_j30sie%2Ct3_j30b12%2Ct3_j304td%2Ct3_j2zhbn%2Ct3_j2yzup%2Ct3_j2xtrh%2Ct3_j2xnzw%2Ct3_j2x1ng%2Ct3_j2x0t9%2Ct3_j2w2yc%2Ct3_j2vzar%2Ct3_j2vx63%2Ct3_j2vj7x%2Ct3_j2vcnx%2Ct3_j2v9pa%2Ct3_j2uqmg%2Ct3_j2u3mk%2Ct3_j2u0hj%2Ct3_j2t1c4%2Ct3_j2s3ti%2Ct3_j2ryeo%2Ct3_j2rwxa&raw_json=1 + response: + body: + string: !!binary | + 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 + KhouYCb9BgA= + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '58205' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:46:43 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=jqfndrglmgipekdfkg.0.1630961202362.Z0FBQUFBQmhObjR6VTEyaFBKVnRZS1Q4emR4ejhweTBXNGhUcEpncjR2S3B5RXZWZGQ1VHl1Smg5b251T214WnlEUTZEQi1DR1RlX24yZ183ZjFlU1dwakg0TGwwaDRTcklMZTdyNDNFclBaU0dhRGFfV2Y2ZV82MG4xSkZxRXllSGVjWDd4SF9MdGw; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 22:46:43 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '298' + x-ratelimit-reset: + - '198' + x-ratelimit-used: + - '2' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=QU25HWvdp61mrlxng9; loid=0000000000edl07u1t.2.1630961201580.Z0FBQUFBQmhObjR5RUUtRHkxdXVLUHBGOXV4YllJbWtJa0xqRW1kWlp5Q0FzczFjd0o2MVlENEJNNkpnOTZVVndKSXpOUXc5cWdqSjdkdWdjZjA1cVFxa0hXeHVjajhiSnRCR2VnNnlMNlhMUW8td0U3UmFHTzN0UFBLVWRQSTFTYjBZTkNNMXRFc1c; + session_tracker=jqfndrglmgipekdfkg.0.1630961202362.Z0FBQUFBQmhObjR6VTEyaFBKVnRZS1Q4emR4ejhweTBXNGhUcEpncjR2S3B5RXZWZGQ1VHl1Smg5b251T214WnlEUTZEQi1DR1RlX24yZ183ZjFlU1dwakg0TGwwaDRTcklMZTdyNDNFclBaU0dhRGFfV2Y2ZV82MG4xSkZxRXllSGVjWDd4SF9MdGw + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t3_kcoyl2%2Ct3_kco43c%2Ct3_kcnrf3%2Ct3_kcndfn%2Ct3_kcmoj8%2Ct3_kcmhdr%2Ct3_kcm9xx%2Ct3_kcm8u0%2Ct3_kcm3bl%2Ct3_kclpwx%2Ct3_kckkec%2Ct3_kckcnt%2Ct3_kck5j4%2Ct3_kcja4s%2Ct3_kcj0x2%2Ct3_kci4r2%2Ct3_kcht0n%2Ct3_kchrwv%2Ct3_kchfc3%2Ct3_kchem1%2Ct3_kcgr8s%2Ct3_kcg6zk%2Ct3_kcfe8u%2Ct3_kcfbe8%2Ct3_kcf1th%2Ct3_kcf1ez%2Ct3_kcepsc%2Ct3_kcec6t%2Ct3_kcebpj%2Ct3_kceadu%2Ct3_kcdcft%2Ct3_kcday4%2Ct3_kcd19o%2Ct3_kccyv3%2Ct3_kccxq8%2Ct3_kccnf5%2Ct3_kcckws%2Ct3_kcbwzi%2Ct3_kcbvsi%2Ct3_kcb7nd%2Ct3_kcb41t%2Ct3_kcai1i%2Ct3_kc9582%2Ct3_kc92cg%2Ct3_kc90an%2Ct3_kc8zd8%2Ct3_kc8yfi%2Ct3_kc8mn5%2Ct3_kc8l4h%2Ct3_kc89nj%2Ct3_kc62h8%2Ct3_kc61xd%2Ct3_kc5yrr%2Ct3_kc5ln3%2Ct3_kc44pz%2Ct3_kc2the%2Ct3_kc2nwq%2Ct3_kc2fer%2Ct3_kc1zon%2Ct3_kc0ya8%2Ct3_kc0bdh%2Ct3_kc0ak2%2Ct3_kbyboj%2Ct3_kby9lu%2Ct3_kbxcj9%2Ct3_kbx975%2Ct3_kbwxww%2Ct3_kbwx0g%2Ct3_kbwrf5%2Ct3_kbwghb%2Ct3_kbwbd8%2Ct3_kbwb9j%2Ct3_kbw9rb%2Ct3_kbw6kw%2Ct3_kbw3zd%2Ct3_kbvyq5%2Ct3_kbvcll%2Ct3_kbuz4s%2Ct3_kbut8o%2Ct3_kbu7lr%2Ct3_kbu6cl%2Ct3_kbsxem%2Ct3_kbsx4a%2Ct3_kbs5fu%2Ct3_kbs2vx%2Ct3_kbs24k%2Ct3_kbqmaf%2Ct3_kbqkze%2Ct3_kbqhzz%2Ct3_kbqdqu%2Ct3_kbq9yu%2Ct3_kbpfk9%2Ct3_kbparx%2Ct3_kbpalv%2Ct3_kbopf4%2Ct3_kbooul%2Ct3_kbohr7%2Ct3_kboh3z%2Ct3_kboba4%2Ct3_kbo7y7&raw_json=1 + response: + body: + string: !!binary | + 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 + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '58362' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:46:43 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=jqfndrglmgipekdfkg.0.1630961203193.Z0FBQUFBQmhObjR6RURUalpXVDU3akFfeDIxeGZPWDdRWUNkZXdESWdzU25kSEthSk1VbTFDYU40ME1WcWVNTGZnWFVfWlZfaEdNb1lXSWtzb3JlUFlBT25lR1Y4b29rNEJTRm5TejJTNDBXY0RpNzdGdVdUR1MySkhfbEJMZmJSdWRXNGU5UUJLbW8; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 22:46:43 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '297' + x-ratelimit-reset: + - '197' + x-ratelimit-used: + - '3' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=QU25HWvdp61mrlxng9; loid=0000000000edl07u1t.2.1630961201580.Z0FBQUFBQmhObjR5RUUtRHkxdXVLUHBGOXV4YllJbWtJa0xqRW1kWlp5Q0FzczFjd0o2MVlENEJNNkpnOTZVVndKSXpOUXc5cWdqSjdkdWdjZjA1cVFxa0hXeHVjajhiSnRCR2VnNnlMNlhMUW8td0U3UmFHTzN0UFBLVWRQSTFTYjBZTkNNMXRFc1c; + session_tracker=jqfndrglmgipekdfkg.0.1630961203193.Z0FBQUFBQmhObjR6RURUalpXVDU3akFfeDIxeGZPWDdRWUNkZXdESWdzU25kSEthSk1VbTFDYU40ME1WcWVNTGZnWFVfWlZfaEdNb1lXSWtzb3JlUFlBT25lR1Y4b29rNEJTRm5TejJTNDBXY0RpNzdGdVdUR1MySkhfbEJMZmJSdWRXNGU5UUJLbW8 + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t3_l0lgxh%2Ct3_l0l663%2Ct3_l0l3pw%2Ct3_l0l358%2Ct3_l0l1e6%2Ct3_l0kzb3%2Ct3_l0kmse%2Ct3_l0kjzl%2Ct3_l0jw4z%2Ct3_l0jrek%2Ct3_l0jip8%2Ct3_l0j6so%2Ct3_l0ixpi%2Ct3_l0ioya%2Ct3_l0io2g%2Ct3_l0intq%2Ct3_l0iljv%2Ct3_l0hvf6%2Ct3_l0hkgs%2Ct3_l0hjg5%2Ct3_l0hg0k%2Ct3_l0h9sh%2Ct3_l0h9dp%2Ct3_l0h8t9%2Ct3_l0h658%2Ct3_l0h4jh%2Ct3_l0h2xq%2Ct3_l0gu9i%2Ct3_l0gezu%2Ct3_l0gcvk%2Ct3_l0fxi7%2Ct3_l0fm7l%2Ct3_l0fkdo%2Ct3_l0fi9e%2Ct3_l0f55r%2Ct3_l0f3t8%2Ct3_l0eqdf%2Ct3_l0eja2%2Ct3_l0dtwj%2Ct3_l0dsf4%2Ct3_l0dmkb%2Ct3_l0dlec%2Ct3_l0dj4k%2Ct3_l0d2b8%2Ct3_l0cxu7%2Ct3_l0ct57%2Ct3_l0bzr7%2Ct3_l0beyg%2Ct3_l0b91i%2Ct3_l097mf%2Ct3_l08low%2Ct3_l07bsq%2Ct3_l07awb%2Ct3_l05xf5%2Ct3_l05kmq%2Ct3_l05hd4%2Ct3_l054i0%2Ct3_l04y0m%2Ct3_l04r03%2Ct3_l04krg%2Ct3_l041s9%2Ct3_l03x6w%2Ct3_l03kco%2Ct3_l03f9b%2Ct3_l03430%2Ct3_l032dg%2Ct3_l02yg0%2Ct3_l02kiq%2Ct3_l02jxo%2Ct3_l02e1r%2Ct3_l02ag0%2Ct3_l02a6b%2Ct3_l028f6%2Ct3_l02316%2Ct3_l00zqc%2Ct3_l00qy3%2Ct3_l00pqc%2Ct3_l00ntu%2Ct3_l00n8i%2Ct3_l00h54%2Ct3_kzzvzf%2Ct3_kzzoh4%2Ct3_kzzn67%2Ct3_kzzfef%2Ct3_kzzeaa%2Ct3_kzyaff%2Ct3_kzy9kc%2Ct3_kzy909%2Ct3_kzy6gg%2Ct3_kzxz7y%2Ct3_kzxpqj%2Ct3_kzxf3q%2Ct3_kzxbmo%2Ct3_kzwvcj%2Ct3_kzwuj1%2Ct3_kzwd52%2Ct3_kzw7h0%2Ct3_kzw5z8%2Ct3_kzvtva%2Ct3_kzvmw3&raw_json=1 + response: + body: + string: !!binary | + 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 + Axxd48u6BgA= + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '53873' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:46:44 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=jqfndrglmgipekdfkg.0.1630961203924.Z0FBQUFBQmhObjQwOXU4QXBLOU5ZTGdkbFJYalRyc3pfX3d3cE5ZOHF6YWNqcDFUeTRabF80RDM3c01YWWhmd0l3UThNS1MzekRBVmduUFZwbkNfX1FRbTRwQndJSmo4cG5jMlRVeFdmemhIdW1sOUhMMFdlMjNMMmstZ1BjMHFubFlsLTBUVC14UF8; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 22:46:44 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '296' + x-ratelimit-reset: + - '197' + x-ratelimit-used: + - '4' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=QU25HWvdp61mrlxng9; loid=0000000000edl07u1t.2.1630961201580.Z0FBQUFBQmhObjR5RUUtRHkxdXVLUHBGOXV4YllJbWtJa0xqRW1kWlp5Q0FzczFjd0o2MVlENEJNNkpnOTZVVndKSXpOUXc5cWdqSjdkdWdjZjA1cVFxa0hXeHVjajhiSnRCR2VnNnlMNlhMUW8td0U3UmFHTzN0UFBLVWRQSTFTYjBZTkNNMXRFc1c; + session_tracker=jqfndrglmgipekdfkg.0.1630961203924.Z0FBQUFBQmhObjQwOXU4QXBLOU5ZTGdkbFJYalRyc3pfX3d3cE5ZOHF6YWNqcDFUeTRabF80RDM3c01YWWhmd0l3UThNS1MzekRBVmduUFZwbkNfX1FRbTRwQndJSmo4cG5jMlRVeFdmemhIdW1sOUhMMFdlMjNMMmstZ1BjMHFubFlsLTBUVC14UF8 + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t3_lrw3h3%2Ct3_lrvqdr%2Ct3_lrvf9q%2Ct3_lrvdkb%2Ct3_lrvd7a%2Ct3_lrvb9v%2Ct3_lrv11y%2Ct3_lrumz9%2Ct3_lruhqc%2Ct3_lrstv8%2Ct3_lrs314%2Ct3_lrrhky%2Ct3_lrr6s3%2Ct3_lrqt7f%2Ct3_lrqlmh%2Ct3_lrqi03%2Ct3_lrqd68%2Ct3_lrqa3x%2Ct3_lrq998%2Ct3_lrq6rk%2Ct3_lrq4lw%2Ct3_lrp74m%2Ct3_lroq7e%2Ct3_lronmi%2Ct3_lro623%2Ct3_lro26n%2Ct3_lrnu24%2Ct3_lrnt8l%2Ct3_lrnr4g%2Ct3_lrni2s%2Ct3_lrmy99%2Ct3_lrmo41%2Ct3_lrm80l%2Ct3_lrlooc%2Ct3_lrle7p%2Ct3_lrla77%2Ct3_lrl1e3%2Ct3_lrl1bs%2Ct3_lrl0xh%2Ct3_lrkztv%2Ct3_lrkw6c%2Ct3_lrkk6c%2Ct3_lrkd9j%2Ct3_lrk6uq%2Ct3_lrjz57%2Ct3_lrjxw2%2Ct3_lrjxbt%2Ct3_lrjvrm%2Ct3_lrjj6q%2Ct3_lrjdkb%2Ct3_lrj3g4%2Ct3_lrj0ws%2Ct3_lrinjx%2Ct3_lrinjt%2Ct3_lriikv%2Ct3_lrii6r%2Ct3_lrhxcn%2Ct3_lrhke9%2Ct3_lrhiqr%2Ct3_lrhify%2Ct3_lrhey1%2Ct3_lrgh9b%2Ct3_lrgam3%2Ct3_lrg2n3%2Ct3_lrg24g%2Ct3_lrfur7%2Ct3_lrfpnw%2Ct3_lrfk4t%2Ct3_lrfi96%2Ct3_lrfg9f%2Ct3_lrfa4f%2Ct3_lrexvt%2Ct3_lrepml%2Ct3_lrepku%2Ct3_lrejfr%2Ct3_lreaj2%2Ct3_lre7iv%2Ct3_lre3ov%2Ct3_lre28s%2Ct3_lre0q5%2Ct3_lrdxke%2Ct3_lrdsz4%2Ct3_lrd593%2Ct3_lrcf1z%2Ct3_lrb8os%2Ct3_lrawwg%2Ct3_lrap91%2Ct3_lrab64%2Ct3_lra9jq%2Ct3_lra1ps%2Ct3_lr9xc1%2Ct3_lr9x4h%2Ct3_lr8x28%2Ct3_lr8sgg%2Ct3_lr8nvw%2Ct3_lr70ro%2Ct3_lr651e%2Ct3_lr63ht%2Ct3_lr60ki%2Ct3_lr5tcf&raw_json=1 + response: + body: + string: !!binary | + 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 + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '56756' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:46:45 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=jqfndrglmgipekdfkg.0.1630961204601.Z0FBQUFBQmhObjQxWDFyNkp2elhhSjNQWWZTSjBwR3ptZlVuOU1PMjB4cWdIdFgyZzNUN3plMHczRTBIVTVsOWxYblNRWHNBaFJxc1hkQ2R4Q3ZkWThBR1JYX1hYaHBtQ3pyU2N3NmFDYkF3M2hDaFctR0VqNFRBUjFJb0Z4eGhfbUdnRW96WExWNno; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 22:46:45 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '295' + x-ratelimit-reset: + - '196' + x-ratelimit-used: + - '5' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=QU25HWvdp61mrlxng9; loid=0000000000edl07u1t.2.1630961201580.Z0FBQUFBQmhObjR5RUUtRHkxdXVLUHBGOXV4YllJbWtJa0xqRW1kWlp5Q0FzczFjd0o2MVlENEJNNkpnOTZVVndKSXpOUXc5cWdqSjdkdWdjZjA1cVFxa0hXeHVjajhiSnRCR2VnNnlMNlhMUW8td0U3UmFHTzN0UFBLVWRQSTFTYjBZTkNNMXRFc1c; + session_tracker=jqfndrglmgipekdfkg.0.1630961204601.Z0FBQUFBQmhObjQxWDFyNkp2elhhSjNQWWZTSjBwR3ptZlVuOU1PMjB4cWdIdFgyZzNUN3plMHczRTBIVTVsOWxYblNRWHNBaFJxc1hkQ2R4Q3ZkWThBR1JYX1hYaHBtQ3pyU2N3NmFDYkF3M2hDaFctR0VqNFRBUjFJb0Z4eGhfbUdnRW96WExWNno + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t3_mim8rd%2Ct3_milsg6%2Ct3_mil4mf%2Ct3_mil2bl%2Ct3_mikj7i%2Ct3_mikhav%2Ct3_mikfdc%2Ct3_mik5f8%2Ct3_mik1wl%2Ct3_mijuo6%2Ct3_mijm5b%2Ct3_mij4zt%2Ct3_miih5a%2Ct3_miidkg%2Ct3_mihpsm%2Ct3_mihjir%2Ct3_mihecz%2Ct3_mihb4e%2Ct3_mih4cp%2Ct3_mih2id%2Ct3_migqbd%2Ct3_mifisj%2Ct3_mifh8j%2Ct3_mif9mq%2Ct3_miezun%2Ct3_miefgj%2Ct3_midq1a%2Ct3_mid6ow%2Ct3_micuu9%2Ct3_mibzfq%2Ct3_mibo5i%2Ct3_mib2sx%2Ct3_miaztn%2Ct3_miau7r%2Ct3_mianau%2Ct3_miahr3%2Ct3_miaed9%2Ct3_mi9ozh%2Ct3_mi9os8%2Ct3_mi9g5k%2Ct3_mi94bs%2Ct3_mi918o%2Ct3_mi8irn%2Ct3_mi7q73%2Ct3_mi7ji1%2Ct3_mi7ii5%2Ct3_mi79mn%2Ct3_mi6tft%2Ct3_mi695h%2Ct3_mi5kwa%2Ct3_mi5d1f%2Ct3_mi4fwb%2Ct3_mi4eqw%2Ct3_mi4c4z%2Ct3_mi47d4%2Ct3_mi3zpg%2Ct3_mi3vca%2Ct3_mi3krq%2Ct3_mi3d86%2Ct3_mi363d%2Ct3_mi2s0g%2Ct3_mi2chj%2Ct3_mi1mdb%2Ct3_mi1cbr%2Ct3_mi0ymm%2Ct3_mi0pfo%2Ct3_mi01my%2Ct3_mhzwu3%2Ct3_mhzw2c%2Ct3_mhzsdl%2Ct3_mhz2ad%2Ct3_mhylhb%2Ct3_mhykf2%2Ct3_mhy1k9%2Ct3_mhxzeq%2Ct3_mhxsof%2Ct3_mhxhtx%2Ct3_mhxeud%2Ct3_mhxbae%2Ct3_mhx6zd%2Ct3_mhx40x%2Ct3_mhwndx%2Ct3_mhwaw6%2Ct3_mhw8mz%2Ct3_mhw2dh%2Ct3_mhvvz4%2Ct3_mhvslm%2Ct3_mhvsjw%2Ct3_mhvjuj%2Ct3_mhvjf5%2Ct3_mhvciy%2Ct3_mhuxxt%2Ct3_mhuu62%2Ct3_mhujkw%2Ct3_mhuf43%2Ct3_mhu6j6%2Ct3_mhtzy6%2Ct3_mhtnzs%2Ct3_mhtjpa%2Ct3_mhtimn&raw_json=1 + response: + body: + string: !!binary | + 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 + SQceJNDcBgA= + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '56894' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:46:45 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=jqfndrglmgipekdfkg.0.1630961205259.Z0FBQUFBQmhObjQxblpDQ2gwdGlhWFBzbmJJOUJ3WEVuMlpWdVp2cGFXeFVwOHdOS2thaUl2c0ZSY3diYm4yRUJRU2NNX0xLVXJWR3l5QnJfcXI4aWFVM3JkRkhMT3FpX3VXM3ZlNkRNM25yUnFBVFk3ZklIYmc1bUMtTF9RbWlDTVhtZ0Y2NWlBbTU; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 22:46:45 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '294' + x-ratelimit-reset: + - '195' + x-ratelimit-used: + - '6' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=QU25HWvdp61mrlxng9; loid=0000000000edl07u1t.2.1630961201580.Z0FBQUFBQmhObjR5RUUtRHkxdXVLUHBGOXV4YllJbWtJa0xqRW1kWlp5Q0FzczFjd0o2MVlENEJNNkpnOTZVVndKSXpOUXc5cWdqSjdkdWdjZjA1cVFxa0hXeHVjajhiSnRCR2VnNnlMNlhMUW8td0U3UmFHTzN0UFBLVWRQSTFTYjBZTkNNMXRFc1c; + session_tracker=jqfndrglmgipekdfkg.0.1630961205259.Z0FBQUFBQmhObjQxblpDQ2gwdGlhWFBzbmJJOUJ3WEVuMlpWdVp2cGFXeFVwOHdOS2thaUl2c0ZSY3diYm4yRUJRU2NNX0xLVXJWR3l5QnJfcXI4aWFVM3JkRkhMT3FpX3VXM3ZlNkRNM25yUnFBVFk3ZklIYmc1bUMtTF9RbWlDTVhtZ0Y2NWlBbTU + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t3_n84r22%2Ct3_n84cbq%2Ct3_n82mgp%2Ct3_n81p25%2Ct3_n81enn%2Ct3_n80rzi%2Ct3_n8003x%2Ct3_n7zicq%2Ct3_n7zhcn%2Ct3_n7z8un%2Ct3_n7z214%2Ct3_n7yxuv%2Ct3_n7yodb%2Ct3_n7yjtx%2Ct3_n7yg9y%2Ct3_n7xpya%2Ct3_n7xpvp%2Ct3_n7x1hi%2Ct3_n7wmyp%2Ct3_n7wir1%2Ct3_n7who6%2Ct3_n7wfov%2Ct3_n7wcta%2Ct3_n7vda7%2Ct3_n7vc0s%2Ct3_n7vanf%2Ct3_n7uhs4%2Ct3_n7u9bs%2Ct3_n7u76r%2Ct3_n7u6sr%2Ct3_n7u4y2%2Ct3_n7t92q%2Ct3_n7ss20%2Ct3_n7sohq%2Ct3_n7snas%2Ct3_n7rtg4%2Ct3_n7rql4%2Ct3_n7rihq%2Ct3_n7qmom%2Ct3_n7qgml%2Ct3_n7qd52%2Ct3_n7q56m%2Ct3_n7psp6%2Ct3_n7pdmu%2Ct3_n7pc5w%2Ct3_n7p0is%2Ct3_n7osph%2Ct3_n7o4eq%2Ct3_n7nx34%2Ct3_n7nn7w%2Ct3_n7nkp2%2Ct3_n7ngyj%2Ct3_n7mwnp%2Ct3_n7mwlr%2Ct3_n7mt8j%2Ct3_n7mbbg%2Ct3_n7ks2z%2Ct3_n7kop2%2Ct3_n7k30j%2Ct3_n7jz3k%2Ct3_n7j31x%2Ct3_n7i2wt%2Ct3_n7hact%2Ct3_n7h7my%2Ct3_n7h6ip%2Ct3_n7g208%2Ct3_n7f95n%2Ct3_n7f4by%2Ct3_n7eyzo%2Ct3_n7euey%2Ct3_n7ebfz%2Ct3_n7dyzb%2Ct3_n7dvoc%2Ct3_n7dbpf%2Ct3_n7cjcx%2Ct3_n7cg8l%2Ct3_n7ce29%2Ct3_n7caa5%2Ct3_n7c9ko%2Ct3_n7bo0h%2Ct3_n7arug%2Ct3_n7a6ae%2Ct3_n7a5q1%2Ct3_n7a48e%2Ct3_n79m1m%2Ct3_n79lrw%2Ct3_n79j1i%2Ct3_n79cmo%2Ct3_n788mj%2Ct3_n784gb%2Ct3_n77hfd%2Ct3_n779ok%2Ct3_n76nnj%2Ct3_n76i4t%2Ct3_n75y3r%2Ct3_n75wjk%2Ct3_n75uwi%2Ct3_n75bje%2Ct3_n75bbf%2Ct3_n751rz&raw_json=1 + response: + body: + string: !!binary | + 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 + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '56656' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:46:46 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=jqfndrglmgipekdfkg.0.1630961206007.Z0FBQUFBQmhObjQyLURFMmZRb1I3aEdsRFV6MTFYZV81MjhsLVFFTmQ3N0tUX1ZKU2JUcG1kWF9GdW4zZ1BRZWQ1a2llU1NVRUM1LU9wUEcySmplYVVwcm94OFZodVhSdDU1b25SdENCWXBDb1BkN0FiVTBCbWU2ek5PU09PM2pTR211bzNzN2hsTGI; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 22:46:46 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '293' + x-ratelimit-reset: + - '194' + x-ratelimit-used: + - '7' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=QU25HWvdp61mrlxng9; loid=0000000000edl07u1t.2.1630961201580.Z0FBQUFBQmhObjR5RUUtRHkxdXVLUHBGOXV4YllJbWtJa0xqRW1kWlp5Q0FzczFjd0o2MVlENEJNNkpnOTZVVndKSXpOUXc5cWdqSjdkdWdjZjA1cVFxa0hXeHVjajhiSnRCR2VnNnlMNlhMUW8td0U3UmFHTzN0UFBLVWRQSTFTYjBZTkNNMXRFc1c; + session_tracker=jqfndrglmgipekdfkg.0.1630961206007.Z0FBQUFBQmhObjQyLURFMmZRb1I3aEdsRFV6MTFYZV81MjhsLVFFTmQ3N0tUX1ZKU2JUcG1kWF9GdW4zZ1BRZWQ1a2llU1NVRUM1LU9wUEcySmplYVVwcm94OFZodVhSdDU1b25SdENCWXBDb1BkN0FiVTBCbWU2ek5PU09PM2pTR211bzNzN2hsTGI + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t3_nzp0y6%2Ct3_nzohpx%2Ct3_nznx0u%2Ct3_nznspw%2Ct3_nznqda%2Ct3_nznbgb%2Ct3_nzmxo2%2Ct3_nzmoxh%2Ct3_nzm61w%2Ct3_nzlxf9%2Ct3_nzlpui%2Ct3_nzll25%2Ct3_nzlc3x%2Ct3_nzkuyj%2Ct3_nzkqa7%2Ct3_nzkhp7%2Ct3_nzkam0%2Ct3_nzjx91%2Ct3_nzjh5v%2Ct3_nzje5l%2Ct3_nzjbmc%2Ct3_nzjapg%2Ct3_nzj5cg%2Ct3_nzigce%2Ct3_nzhar4%2Ct3_nzh746%2Ct3_nzh0in%2Ct3_nzgscq%2Ct3_nzgs1d%2Ct3_nzgac8%2Ct3_nzg3ye%2Ct3_nzg279%2Ct3_nzfwmm%2Ct3_nzf4so%2Ct3_nzeimo%2Ct3_nzedts%2Ct3_nzedfp%2Ct3_nzeb0r%2Ct3_nze6q5%2Ct3_nzdyo1%2Ct3_nzdxc6%2Ct3_nzdv22%2Ct3_nzcqy8%2Ct3_nzcqq5%2Ct3_nza3ue%2Ct3_nz9tdn%2Ct3_nz9sch%2Ct3_nz9jih%2Ct3_nz7xwq%2Ct3_nz7qrx%2Ct3_nz6sal%2Ct3_nz6d2q%2Ct3_nz5z7i%2Ct3_nz5z5z%2Ct3_nz5jpa%2Ct3_nz5gj3%2Ct3_nz5dil%2Ct3_nz569b%2Ct3_nz4oxe%2Ct3_nz4nrv%2Ct3_nz47wq%2Ct3_nz374i%2Ct3_nz18g0%2Ct3_nz0p40%2Ct3_nyya56%2Ct3_nyxvkj%2Ct3_nyxpob%2Ct3_nyxn75%2Ct3_nyxh75%2Ct3_nyxg5g%2Ct3_nyxe5b%2Ct3_nyxd8m%2Ct3_nywzwb%2Ct3_nywvdc%2Ct3_nyvf2r%2Ct3_nyvd4a%2Ct3_nyu6hv%2Ct3_nyu6b7%2Ct3_nyu5zx%2Ct3_nyu4vi%2Ct3_nyu4k6%2Ct3_nytu73%2Ct3_nytd3g%2Ct3_nysyy7%2Ct3_nysy4y%2Ct3_nysqb5%2Ct3_nyspkp%2Ct3_nysoz5%2Ct3_nysh9p%2Ct3_nysdu6%2Ct3_nysdax%2Ct3_nyscmp%2Ct3_nys74p%2Ct3_nys3yt%2Ct3_nyrnzr%2Ct3_nyrlly%2Ct3_nyr3s6%2Ct3_nyr25o%2Ct3_nyqypx%2Ct3_nyqxxp&raw_json=1 + response: + body: + string: !!binary | + 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 + //73f4N+B6AjNgYA + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '49659' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:46:47 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=jqfndrglmgipekdfkg.0.1630961206784.Z0FBQUFBQmhObjQzN081Z2M5Qld6M2xZNm1EYVFaMzFhVTN1MTZkNEczYmY4UWpGaGtaYmxqZ1c5eFdTM2o4QTBfX044RmYxeEtwMF8ySnRSdGJKZE1Eb3VVQmNFQUdnYmNHckh0X1kyWXlXT1VBYlZPSUlFWmFqaFR5MXNaWGs1NGtObWtmb3EwRWw; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 22:46:47 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '292' + x-ratelimit-reset: + - '194' + x-ratelimit-used: + - '8' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=QU25HWvdp61mrlxng9; loid=0000000000edl07u1t.2.1630961201580.Z0FBQUFBQmhObjR5RUUtRHkxdXVLUHBGOXV4YllJbWtJa0xqRW1kWlp5Q0FzczFjd0o2MVlENEJNNkpnOTZVVndKSXpOUXc5cWdqSjdkdWdjZjA1cVFxa0hXeHVjajhiSnRCR2VnNnlMNlhMUW8td0U3UmFHTzN0UFBLVWRQSTFTYjBZTkNNMXRFc1c; + session_tracker=jqfndrglmgipekdfkg.0.1630961206784.Z0FBQUFBQmhObjQzN081Z2M5Qld6M2xZNm1EYVFaMzFhVTN1MTZkNEczYmY4UWpGaGtaYmxqZ1c5eFdTM2o4QTBfX044RmYxeEtwMF8ySnRSdGJKZE1Eb3VVQmNFQUdnYmNHckh0X1kyWXlXT1VBYlZPSUlFWmFqaFR5MXNaWGs1NGtObWtmb3EwRWw + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t3_oogxdu%2Ct3_oogf71%2Ct3_oogeje%2Ct3_oof5ko%2Ct3_ooerw5%2Ct3_ooegyu%2Ct3_ooefbj%2Ct3_ooe7yy%2Ct3_ooe4bu%2Ct3_oodzld%2Ct3_oodqpk%2Ct3_ood1f0%2Ct3_oocwnk%2Ct3_oocjg2%2Ct3_oocbi2%2Ct3_oobmul%2Ct3_oobl5f%2Ct3_ooapms%2Ct3_oo941v%2Ct3_oo8t1i%2Ct3_oo8r6n%2Ct3_oo7twl%2Ct3_oo7h10%2Ct3_oo7gf4%2Ct3_oo7fkq%2Ct3_oo6yyd%2Ct3_oo6xez%2Ct3_oo6tr1%2Ct3_oo6tgh%2Ct3_oo6p9c%2Ct3_oo6oj3%2Ct3_oo6mzt%2Ct3_oo6kqf%2Ct3_oo67du%2Ct3_oo66cv%2Ct3_oo5j5h%2Ct3_oo5g81%2Ct3_oo5cjs%2Ct3_oo5bpe%2Ct3_oo4wyj%2Ct3_oo4wap%2Ct3_oo4san%2Ct3_oo4rnf%2Ct3_oo4qdh%2Ct3_oo4p5r%2Ct3_oo4o2c%2Ct3_oo4jfv%2Ct3_oo4hj1%2Ct3_oo4ct8%2Ct3_oo46mv%2Ct3_oo3jag%2Ct3_oo3fex%2Ct3_oo3fba%2Ct3_oo3eh1%2Ct3_oo3dt0%2Ct3_oo2wxp%2Ct3_oo2ctt%2Ct3_oo20qd%2Ct3_oo1wee%2Ct3_oo1vs8%2Ct3_oo1rgr%2Ct3_oo1npc%2Ct3_oo1hq7%2Ct3_oo1fdq%2Ct3_oo12ri%2Ct3_oo0ez0%2Ct3_oo06ti%2Ct3_onyqx8%2Ct3_onyott%2Ct3_onylf3%2Ct3_onybqh%2Ct3_ony9qb%2Ct3_onxv1i%2Ct3_onxqsp%2Ct3_onxdoo%2Ct3_onxata%2Ct3_onwwqy%2Ct3_onwr62%2Ct3_onvvzv%2Ct3_onvfp8%2Ct3_onvez0%2Ct3_onvdz9%2Ct3_onvd69%2Ct3_onvav4%2Ct3_onv9om%2Ct3_onv8mt%2Ct3_onv2za%2Ct3_ontghg%2Ct3_ontesw%2Ct3_onsvik%2Ct3_onsq9g%2Ct3_onrtwk%2Ct3_onrhc6%2Ct3_onr9eb%2Ct3_onqyqj%2Ct3_onqwc9%2Ct3_onp2wi%2Ct3_onogvx%2Ct3_onoarn%2Ct3_onnsao&raw_json=1 + response: + body: + string: !!binary | + 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 + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '48431' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:46:48 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=jqfndrglmgipekdfkg.0.1630961207517.Z0FBQUFBQmhObjQ0WXRiTWRqRmtuZGFoVlM4TTBTYzlKQTdMZXlLM3l3aEs2cnEtTnFRMUJvOUNDTk91YUMxemZGUDBkVmJNM0RXSjNJVnBFbzFuTGFEcEZDdFJ5SWxVNDFsUElWU3M2QXlRRmpIYWc3cHZMVV90ZUp6TjhIUHpZc3IwT2hLZm1YOVc; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 22:46:48 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '291' + x-ratelimit-reset: + - '193' + x-ratelimit-used: + - '9' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=QU25HWvdp61mrlxng9; loid=0000000000edl07u1t.2.1630961201580.Z0FBQUFBQmhObjR5RUUtRHkxdXVLUHBGOXV4YllJbWtJa0xqRW1kWlp5Q0FzczFjd0o2MVlENEJNNkpnOTZVVndKSXpOUXc5cWdqSjdkdWdjZjA1cVFxa0hXeHVjajhiSnRCR2VnNnlMNlhMUW8td0U3UmFHTzN0UFBLVWRQSTFTYjBZTkNNMXRFc1c; + session_tracker=jqfndrglmgipekdfkg.0.1630961207517.Z0FBQUFBQmhObjQ0WXRiTWRqRmtuZGFoVlM4TTBTYzlKQTdMZXlLM3l3aEs2cnEtTnFRMUJvOUNDTk91YUMxemZGUDBkVmJNM0RXSjNJVnBFbzFuTGFEcEZDdFJ5SWxVNDFsUElWU3M2QXlRRmpIYWc3cHZMVV90ZUp6TjhIUHpZc3IwT2hLZm1YOVc + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t3_pc1gc9%2Ct3_pc1emf%2Ct3_pc1e96%2Ct3_pc0qc4%2Ct3_pc0br2%2Ct3_pc06j4%2Ct3_pbzso2%2Ct3_pbz9t3%2Ct3_pbz1kb%2Ct3_pbyyrv%2Ct3_pbyey6%2Ct3_pbye8n%2Ct3_pbydw8%2Ct3_pbydnh%2Ct3_pbydla%2Ct3_pby7oj%2Ct3_pby2jh%2Ct3_pbxrnz%2Ct3_pbxotk%2Ct3_pbxfwy%2Ct3_pbwx7d%2Ct3_pbwksw%2Ct3_pbvfp0%2Ct3_pbuywr%2Ct3_pbuogr%2Ct3_pbufk5%2Ct3_pbt2rf%2Ct3_pbsrqk%2Ct3_pbrqmn%2Ct3_pbqrym%2Ct3_pbpta2%2Ct3_pbpp1f%2Ct3_pbplbz%2Ct3_pbpfn1%2Ct3_pbojmj%2Ct3_pbo38s%2Ct3_pbnwxm%2Ct3_pbnha7%2Ct3_pbn238%2Ct3_pbn1b4%2Ct3_pbml33%2Ct3_pbm30m%2Ct3_pbm0sd%2Ct3_pblvwl%2Ct3_pbkxn5%2Ct3_pbkq8f%2Ct3_pbkiwd%2Ct3_pbkfsg%2Ct3_pbkfg9%2Ct3_pbkcso%2Ct3_pbj9jg%2Ct3_pbj8s1%2Ct3_pbj4g1%2Ct3_pbip7x%2Ct3_pbios6%2Ct3_pbin1x%2Ct3_pbi1qw%2Ct3_pbi06y%2Ct3_pbhycg%2Ct3_pbhrpg%2Ct3_pbhpni%2Ct3_pbhia3%2Ct3_pbhdll%2Ct3_pbhcjq%2Ct3_pbh279%2Ct3_pbgmvp%2Ct3_pbgmmx%2Ct3_pbggth%2Ct3_pbg8d1%2Ct3_pbg450%2Ct3_pbfqe9%2Ct3_pbfgdk%2Ct3_pbf7p7%2Ct3_pbf4uw%2Ct3_pbf3zm%2Ct3_pbevsy%2Ct3_pben05%2Ct3_pbelbv%2Ct3_pbds0v%2Ct3_pbdjxh%2Ct3_pbdbp6%2Ct3_pbchmk%2Ct3_pbccza%2Ct3_pbc1co%2Ct3_pbbz65%2Ct3_pbbuw2%2Ct3_pbbqhz%2Ct3_pbbm0g%2Ct3_pbavu9%2Ct3_pbaq2c%2Ct3_pbajkl%2Ct3_pbaiv3%2Ct3_pbahi9%2Ct3_pbahbj%2Ct3_pba8xj%2Ct3_pba6ra%2Ct3_pb9yrp%2Ct3_pb9web%2Ct3_pb9w12%2Ct3_pb9vkx&raw_json=1 + response: + body: + string: !!binary | + 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 + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '55151' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:46:48 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=jqfndrglmgipekdfkg.0.1630961208169.Z0FBQUFBQmhObjQ0eGJUd01mMjRick5rM2NUN09RNGxBSUpyZVBablVBMlJpUFpRYU5PeklIWDBDcEx5RkV4QXZHbDVMaG04ZXg5WkVkbUlnVGVYY2ZIN21meU1pV0YtNmNFX0VRX2lYYVNpVmp6VnN4cFVMUHp2T1BvOEZaRk5SR0l1N3Z1SFROMk8; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 22:46:48 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '290' + x-ratelimit-reset: + - '192' + x-ratelimit-used: + - '10' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=1000&before=1604761995&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1601608395 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+Wa25KaShSG7/MUFtdTqT4f5lVSKQuhwVboVmg8Tfnuu9BUIpGVmVmVvW82V+pq + Ppp/HUXfviwWi0VW5inPXhffbu/G4+3nq5u96FyeXLkcUpG9LqgiQisqOX+ZLvNl9rrINrt+pbbZ + T9P15VNYrgiEtf6CxEpDCQOwnTussVhFGCTC/ugkFistFxD20HZoLJeQCPt96rFYITWFsNuo0Vih + wN1u+hMWyy23ELYqGRbLDANFUH1EY7kBReB1wGIpI1CA7Ya0QmKFJUxC2KoQWKy2FMqyna4HLFYx + oQFsPARsJAguCVTBYnHaYbGEg7sNvTgjsdxKC8VtCAIbYNxIBWLrhK23XBMCYtWwx2KlAette1m1 + aKwAa0J73Ec0lksDYguOxXJLoORtQ452GaMUitt2dcTWBE6pgcp4K5NBYpmCA6zhZ2wkMCkFVMYb + UlgsVhgDuWw7JKy2jBoO7XYrG4rGKg3uVuiAxjJwqtmSLTbLqNEGKuObyjVYrGCgy/xqh8ZyLqCa + 4LnFTozEGgF13rXeMDQWHu3W/IQdm4k2TAHYOvKAxioLdYe6RbuMaKYhl9U+FGgsBQOsXocNFqss + BbWtxAWNNWAk1K5RaKwEv+7VK1phsVKA03hNDugsG0dcAFslv0VjqYAqWBWqhMVyC9bbqnHImqCs + URTKMkc6h8VKxaG4LfnuiMYyDbmsuPQWixWUQslbtLuIxXItQKyPHRbLrIZmsCJnyBlMGcPBQTTv + G4LFag12h7w5nLFYJRlUxnNTIqdxySXnwCAazarYYLGCKQ5hScWwWGY54LKoA6/QWHBijHq7RmtL + GTTVRC13FosligH1NqpzQrbI8cGSMhDW7hUWqw3U0KOSGr1bTQ2krTzHNRarDNEQdohoEaSCvu5F + uT5s0FhiGYQt9BGLZRpqkVE0xxyNZVBhjKJeBSyWCA7FLT9K5HwrqbFgYeSVSWgsgQbRyKXHxi3V + 3EIisNNlj8YyaL6N7LAvsVglwHRgraNoLINFaCQaK4UARVhJdCRIJqEsY+YyoLHUahBbOCxWaAq6 + jHUSjRXQD1uRXhzBYhklUKmhZkDHLbUSEoFqesBiCQObDmn32PGDWG6gdCBlje28xCgJuYxIim2R + RDEJiBAursEGGBEWGkTDhYQOjdXQc7BwPnuPxTIhLITNfYnGcuj3snC2Fh1gVHHIZWfG0dpSqiAR + TiersVgCjnbhlCp03BJJQey+QJZxYS1XkMtOFV+jsYRCcXtadQSLVVQDvSwcm/JxYry9+n5fm7Uu + 5T/+E/LrIlleJdfd0VQRw+2DEFle18veX9xof/z9M8t3fnlwXe9jGC/Mv5LswbpyVezcr39/2AnU + 9cv94LrzZB83y/zHd2SMzazlZq18c7+Lefv7hJ+r2qFPkz/NQMfbuytuvOS6tn/3spNT+mHVubL0 + H9vH9NTCu/A4drx3fP/Qyuu7q64vf0uwLg+1+5xg0xx5+5xkdZoE/4dPvv7vlWvSJMP/e+X+uOL7 + n3XN+nUcmrFqfoNzYP4KgMdupWMZYppnTlm/MbK5Ins3xC7NV8Sp77LS9cU0769z7SVzJ1cMycew + TL51y9Y3je9dEUM5lilmvj4+nPtVWL899ZsXuFF9mXFC5kPpTuNOu/6xVzS+vVW6jBIyaSIP7SpL + 3eAebbdQ75+2NaPSn5PiwwnwoTJx/ZzT/8XdfiQ1393trBc71w9N6pedS0MXXPk0GfTrvCufO15W + 5b65LX+K8K3f7eYtQ1G4vq+GsW8/PYVNMeU3g5iN89mx5Uc23ZPlt8+X6bwbz5io/LgGbMvPbfdR + sTHNymUcxvOqvOndo228h+UPTcd7oZp/uYt//QfHgmaRxisAAA== + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aaa4ddb98154c1-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:03:26 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:57:27 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ax4efqOBLYhw2g4y6FF3PojzUuAApjtmLdG7Yv%2FC2Fxp8oX3p26SnCOlQWgEqat8wSOKvie%2FG5iJBV6UtJ%2FGJUUh1LgHSskeptGdfeUMSfbrFFFq1rLdQqlbAaveuDMb2A55"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +version: 1 diff --git a/cassettes/test_submission_praw_query b/cassettes/test_submission_praw_query new file mode 100644 index 0000000..775083d --- /dev/null +++ b/cassettes/test_submission_praw_query @@ -0,0 +1,2482 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?q=quantum&subreddit=science&limit=100&before=1629990795&filter=id&filter=created_utc&size=100&sort=desc&metadata=true + response: + body: + string: !!binary | + H4sIAAAAAAAAA82ayXKjOhSG93kKF+tUl+Yhr9LV7cIgsGIQGAljO5V3v4XTg93h3MSn7+KyspH4 + JA7/GSR4eVitVquszFOePa2+Xv7Nx8uvX5f2YnB5cuV6TEX2tKKKWUupZuLxtpsvs6dV1m+qvbPZ + r6bXxzuwhFDNAOxmnBgOq4UyRC5jc3VMFRJLGZV8GWsnLxUOK6URSi1jTWJji8MKpZXSAFZ2BInl + xhICYPV2MByHZZZbS5exaijiBoclgnMIKyZNKAprrObMAkoQVZMnHNYYqhWgWz4cYsRhKZPG2kVs + d1JTkDgsMZLSZSN0xyS2DolVlnII252KHoXV1ihuFYAlTRRIrNYWcIduOo2mxmEvpgWMMBHeF0is + IMQA2MO035RILOeMAbY9jM1ksVhqjICwOsdFMK2N0hzC7qrS47BKS8bNMnaMe4ecrZKGMEBgY+ub + Aw4rNVcMiAkjoekZh2WcUgIIbHATIUgss0woCJsfBxyWSEU5WcbuZc2Qzku4ZRbCkkLhbKusFgbI + ZV3vw26DxBImOWDb7lzqHIfVnHALeFkIMe9wWKmVEIARWi8lcrZCSs4BL2sa3ezRWCoFhJUVrmJU + 3BomGYBVtdoisUYqAmHZfuyRWKU5B0LNbgo1rshX1FKpgUf27OsmIrHEWAWEcX8oHK5YklYLQQAj + bI9UBBzWcKohI9Qj2R+RWGYEFG/rZDiuWJJaG0slgK1DUkisMhZKkXVpDxMSy7WASruaH3cjDssp + IxLAFlPpcBFMMmatBXRb2JLh1mWSSm2hsnnTpx0SS5TR0NphQ/JgUFhhDWECwOb5ttkhsVJJCThv + LgozIrGUciiM21idcYWoMIpoCwjMumLEZV6hjGZQNW4krU44rNCcEkBgyp+ahMRSIwngDkrUfkBj + ubEQtkIuTgUVs3aXsXzoZInEcgIWojx0DpciBbEWnm2Z7/ZIrKQUyrycPIsaiWUa2rXr2L6VuBTJ + 7Zx1ACWwwj1bJHZ2XqC+ZaqtSyRWWgaVzUyedz0SKziDVpH0PCRcvOVGScKAOoHmPiKxyhAChPFw + DvsyR2KFgHZEw9ltCC7UcGkF48vZIZyOTuKWe1xIZgB3CMc4HJFG4IpCmTdM540iSCxnXBEAGyZk + BOOcU8tB7B5ZNvPZsuBs826nkVilLFAnhEnIZ2RMoMpYsxwTwkGPE/KRUaoVsIkdxtRG3MsXZrgQ + kPPGUlS4JQlTUhIBOO9+yB3uBcFcjjNIYH2TGG4LiDHCDLB/G9pJiw6LpZYAs20Px4hboVPL53cP + y9hdw5ClHdXUcKBOCD6Wxy0SSxgBFqfBt33bY7HUGAVhw3lCY7WFjNC2qUNjobckwbdbZJ1AlRKW + AQLzRUWQRlCUCgYYYXuoIm4VSTm3CtgRDZUlFBdvKTVKAe95Q5lqi1tFUiKFUUAYLwbNkEogjFMN + YbepxHkZscwqoBANm2CLFokllFMBYEvX4YolMn9GQAGB2eo84Tas5oUOAXbtgj77Yo/EEi4ZEG/1 + kW6v9xMuv7699c1al/If34T8HiTLq+SG7GkVxqZ5vDpd1+voz24e9DppZHnv1wc3RN+FeUj+hWRX + rRtXdYP7+d2HJdpexdrMxfV+dMPpZgaXluXTb8iuaxZbLq2Vb97mv9z+MeFXr3aM6eZzGeh4+bDH + hZfc0MYPh725JI6bwZWl/9w8bi8tvAvF1cv4j45vn+r5+mGv18f/ymBDHmp3n8FuvePlPpM16Uan + n7749X9nuejbvnFvvrWOafChvs+OpavysUnrrndDnrrZn7I8lNnj5xGVd00Z7xdu8qlx3+UdQ73d + smuq5I7pO7tD8nfczs+AlO3HPKTrr7P+8qE//MUMs7jtxmYO9V9h910eARDbJeqtQ5eWmbesPxjZ + Un54a+iGtBzMbx02K10sbi37upQTM3d0xZh8F9bJt27d+qbx0RVduChO2C/2KiH+zglf3yXJRzi7 + Piw8hMyH0h3nmQ7xOs01vr0E6YySm/R3lWKzNIzuum1/raar85ew995xFoz37wHy08HwU4Hv9SMt + LJprcHFsUlwPLo1DcOW76iFu86F8nxWzKvfNpfs7Ke183y+3jEXhYqzGObe/W3akLuWXBrEoqMXS + 5ods31T5x/l1OvXzFTdWvu4Dpu73qfnaYrOey3U3ztdVeRPdddt8D+sfNr3onKmHN+O//gPJDOE9 + 5CsAAA== + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9fc05b1c3ffd-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:59:58 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:25:52 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=FOyBbloqp4x65SrNWFFM7hpYxthuKfTEr1U%2BgzGzV5%2FfsqZMaxuHmBn4jWUhcvHcekqKGcxcbuO7V7mgh77Crjh%2BskIM%2BZbdVtv%2Bi6CX7wzsxPs9DmDvG%2BPRh88CoovXTWhb"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?q=quantum&subreddit=science&limit=100&before=1601608395&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1598454795 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+WXy5LaOhCG9/MUlNZUShdbkudVphKXxpZBIF/QBZiZ4t1TNmRiByuATs4iFVbG + LX1q/eputT+eFovFApTCCfC8eBn+9b+Pz6fBXhgpnCxz7wrwvEAUIpLwlKHldJgqwfMCbJDBvgSf + ptPyEWxKOQxgd2Lno7EJ5iEs54dYLEFZGsB2+kjisBhCmga8ha0uWRwWJpyxZBar3vUe76OwkGFI + ApGgjrwr4rSFlKUIzYugDofEmjhsyjGEJIDla80isRhDHvB2bzdSx2ExwjQkgttSG3lkiEOOAkfm + BI71FhLEaSDALH3fvkZg0yzLKOd0PsuUMVQcY7GM8IAIZudKH4flhFFI57E7q0gXh00Z4XC+MKrW + JziJwyYEYR5Ih2ZftTgOSwjDOHBkDafdNhKLCc8C6dAkHKWRWETTFAewOGlRHBZnhNBAgNXH1UFH + YnlGskCW1QezeYvEIkqzQNzWpS3qOCxKGcWBuNXvCRNxWMizJJS8WlGzjsL20JQGAmy7WnsWicUZ + Cmm7LVYGxmE5YzgNZNnmmGxjsRjjJHBkm62p00gsxBQG4nYjfbGKwzLO01A6bF43oojEYkyTgLbq + sN1tRtjh6et5LKilE5d2+uciQFROmgs6SRM27hqBWK1yq95lbx/XeCA6le+lsapt+oXJFwhG1ldZ + tUZemjsKOZlApc13Xpq3iR+DZf71Gdm2etYyWCulz7uYt98mfI6qvXWT743Q7+PmiIHnpKntzWUn + U6x/NbIs1X1+TKcWSjaFBHfP+nrXyNPNUaflnxLMiGYlHxNsmiMfj0m2cpPgv3vy6Z9XTrtJhv/F + yllVd1qeq1JunVHN6jEdS1kJr13edtII1/aVCIimBMv7EZWSurSPp7xTTstv6QNLnbcsdeXk0X3D + DxSLB7bzo5SDnReN8zX4U4f+9B88BHbdet1flS/hwje/QiDYhvsib1o3z5yyfmGAuZv1bGiNm78G + pwkLSmmLqbKnuZ4CyKMsvFNtkztVy7xWWisri7YZIg6xL1k2Gv15m75cNRnLcHfyNHMIQDWlPPae + GjtuELSqh+sNIDhpHEYtCnDGy7FtN46m0fuh7F0nzox4vy+QdxfDu66M02Ox8D96e0+Zvunt7OEa + ab12NjfSedPIPq/I6Isd2LUw5XXzAyqh9DD6Ku63quvmLb4opLWV71u4q6821zoxGJLZ6J/tYC85 + dk6hX97n7q3rZ0xEHo8JdmjXHdhYsD75yrz1/bxKaCvHtn4P+UXSQcmns/Kn7ys8228KFwAA + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68aa9fc82e8b3fd2-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:59:58 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:59:58 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=vxhwBOg0l%2FPyReJQfcxOI3xt4qdnThXNhS4MkCqc9TJiT%2FH%2Blv%2ByrsBmTEJzQFihJ1A9Ql6vfcxP%2BqOgyUwBaQBedFaa3vR0Hg%2BSYCMNtaoU3nW6%2FwIwUVLuVh3cae0woxSc"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?q=quantum&subreddit=science&limit=100&before=1611069195&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1607915595 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+WY2XLiOBSG7/MUlK6pLsna8yqpbpexZRB4QwtLUrx7l006bSdWA5qei6nxFfhI + n45/nw3enhaLxQIUmcvA8+Jl+NZfbx+fBntuVOZUkXqXg+cFYghKJAmDy+kyXYDnBdi9lrU/gQ/T + ZXk/VlDCeAB7PmsB47Ac8QTzeezJb44kDsswo1IGsDw7NnFYmvCEJfPYY67tLg5LmKQ4oO3hQFwe + jUUo4O3Bv+4jsRgRiMU81jflOhKbCIEZDmBLfpaRWJogHBDBc5Zkcdg+chmbxzqEdRQWSkmYCIlg + 9jA7RGIxRiQggqkFtnFYwRklgSwzTBaRInDBeBKoCfuS620klhGMAt7uRaLqSCzEFAWStzPbs4rD + soQKEfC249jhWCzmkgawrDxGisAgJTjkLdySUxyWSolhoNS0565zkVgqEA28srZzxTEOSwhhCZrH + Nkd/zCOxGFIY0LaxWus4LE4oooFIaCBmMA6bMMZEoILV22MX6W0CqSABb2uC210cFkpMeKAwVkKv + 9lFYIWGCYCDAtme/l3FYgQmSAW+3O3wq47CcJzLU0LfUHZJorAhFwpa6HEdjCUYhbId4HJYxikVA + W53zkkZiMcc8oK3GxsZ1B0EJFSKQDhtV15GvjCLBZUDbjShWu3gsDnkrcruNxrLQ2LwRKxPXdASR + HCaBertBJ/4ah00kEySgbbmzp3MkFiPIAt6WeAsjIyFB/WQzj1UncVhHYbmUhNNATShW+es4EoZP + 369rQa1c9v5b+PchICudMr/QiNLxZAOy9Tq1+lX19nExBlmn04MyVrdNfzD+BsHIulJla9R1zO+l + RROosuneK3Oe+DFY5m9fkW1bzVoGa6mr61PM228TPlbV3rrJnwWh6+3mioHnlKntzWMnW6xfGVUU + +j4/pltzrZp8VBBvXd/vWnm5ueqy/FuCmaxZq8cEm+bI22OSrd0k+O/efPnfK1e5SYb/h5Wzuu4q + da1KqXVGN+vHdCxUmfnKpW2nTObavhKBrCnA8n5EqVVV2MdT3mlXqR/0gaOuj6yq0qmT+5E8UCwe + eJxfpRzsfdY4X4O/9dKf/oGHwG5aX/Wt8iVc+OZPCATb0C/SpnXzzCnrEwPMddaroTVuvg1OExYU + yuZTZS9zMwVQJ5V7p9smdbpWaa2rSluVt80QcUh+G/1V9LuZvnyZMZbh4eRp5h0A3RTq1DtqbFqo + ymVqPCZUuh6aHEBwMj6MBhXgjJ/s2Y9janR/KH5f02dGwj+XybtL4l2N4/JYRPyL3t5TrG96O/uO + jbK+cjY1ynnTqD67CBnZ7SYzxdcRCJSZrobVX6J/p7tu3uLzXFlb+n6QI5+MrnXZcH82A2an2Pc8 + u6bRp/upO3f9jonE4zXBKe3rFDaWq0/AIm19v6/MKqvGtv4R0ndBBx2frrpffgLPKgw8yxoAAA== + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9fdfafed4009-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:00:01 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:25:56 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=EWbWs3cX4hFDMxVR%2Ba6pz%2BvL8y%2B1HTMlo0X5rM2gKouYZVYB8bcVyj6b%2B6Oxf7WaZboMeByhW4GSZcItm1kyfIyRoC%2B%2BRohY0lC1Q7eox1ryjhqFNx99H%2FsgSoTntncsLqC3"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=rMnJXdgWbcPi5FKlAW; loid=0000000000edl180ip.2.1630961281900.Z0FBQUFBQmhOb0U4Z0dmdWZmMmJ5V2tGeExMekVuZ2syd29hQkxvRDZiYzNyckRJc3VfaC1zbHFhZWxDMnliNEZSWTJXd2c3T2VUaVlFMDJaYV9Kb2RvQ1FqQ2tPYUpiSVI3RjZOdTdqbTVONzY1QkxYM29PalF4T1h5LU5NdXdSM0owUWJnMTU2blE; + session_tracker=jdhkgkbdkjemrqkpeo.0.1630961979819.Z0FBQUFBQmhOb0U4RXc2SVB2cmtMandFeXl2bmNTaGpyRjhoOEhRY3ZPdEkxQ3lrNnBKRGFQOGo1by1ib2JoZjVsaEVTdm1oVV9ZZU9PQWZuZGdhaFBXYmgxaE1ORzdrb0RjcU5FYVRWNGx1TW9yNFhwX1hUUXNuNjZuZDNZME54X2tKVjFDVXdUZ2w + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t3_kcht0n%2Ct3_kay2ed%2Ct3_k9ur77%2Ct3_k9nv0h%2Ct3_k9l40q%2Ct3_k9assu%2Ct3_k96j9p%2Ct3_k8rm59%2Ct3_k7vb2i%2Ct3_k753a3%2Ct3_k353af%2Ct3_k2mspp%2Ct3_k24ai6%2Ct3_k1c6h1%2Ct3_k17aiu%2Ct3_k174lg%2Ct3_jztfu8%2Ct3_jzokes%2Ct3_jswwx9%2Ct3_jqyn3e%2Ct3_jqu3gq%2Ct3_jlbsot%2Ct3_jlbius%2Ct3_jjb60n%2Ct3_jj0iye%2Ct3_jiqnxv%2Ct3_jgmt5h%2Ct3_jc051u%2Ct3_jbsvu9%2Ct3_jbopwe%2Ct3_ja4bgs%2Ct3_j9a1r1%2Ct3_j975u3%2Ct3_j80prz%2Ct3_j7ney8%2Ct3_j7ndf1%2Ct3_j7evjb%2Ct3_j77ar3%2Ct3_j6rhr8%2Ct3_j5hjvq%2Ct3_j3yphf%2Ct3_j3r6sv%2Ct3_j1r2ud%2Ct3_j1qaqu%2Ct3_j1q88w%2Ct3_j1plx3%2Ct3_j0old7%2Ct3_izlv2v%2Ct3_ix8pcw%2Ct3_iww4sr%2Ct3_iw8hl7%2Ct3_ivsjel%2Ct3_itk6sv%2Ct3_ita2el%2Ct3_is6zkb%2Ct3_irr6ax%2Ct3_irqtdu%2Ct3_iqsi3p%2Ct3_iou424%2Ct3_invfo2%2Ct3_in86pk%2Ct3_in4815%2Ct3_in24o1%2Ct3_imxgwl%2Ct3_imwrjy%2Ct3_imdscm%2Ct3_ilz47a%2Ct3_ili6rh%2Ct3_ikghu7%2Ct3_ikcgr0%2Ct3_ijx4k0%2Ct3_ijkrm5%2Ct3_ijeucg%2Ct3_ijbjac%2Ct3_iiwkqj%2Ct3_kzfmux%2Ct3_kyyi80%2Ct3_kxuhw4%2Ct3_kx7awn%2Ct3_kwcisk%2Ct3_kvv4tc%2Ct3_kvuzqc%2Ct3_kunfgc%2Ct3_kuf7y9%2Ct3_ku762a%2Ct3_kt13ia%2Ct3_krq0av%2Ct3_krm83s%2Ct3_kr69da%2Ct3_kqf7ij%2Ct3_kq82em%2Ct3_kprjye%2Ct3_kp73t3%2Ct3_kp6fwm%2Ct3_kp0j4x%2Ct3_koyppt%2Ct3_koptdw%2Ct3_knwuwc%2Ct3_knsiii%2Ct3_kn0360&raw_json=1 + response: + body: + string: !!binary | + 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 + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '47010' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:00:02 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=jdhkgkbdkjemrqkpeo.0.1630962002066.Z0FBQUFBQmhOb0ZTbzVoTS1zSmxhOGZXejc0QVlRMW5yYmtCUkhNWTJ4bUNWYkNGbUlRS2otWjc1WGZzemlOUDFtLUY1cmV5TG9rZFFUY0tuWUNkdlVTNDRKWXZrd0tQSDZLRmtrOEJsWHFUeVAySG4ybm40d0NibmdGaGFuYU53bmY3N0NrVkVsazI; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 23:00:02 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '299' + x-ratelimit-reset: + - '598' + x-ratelimit-used: + - '1' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?q=quantum&subreddit=science&limit=100&before=1614222795&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1611069195 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+WWzXLbIBDH73kKD2dPBwToI6+SaTVYWjnUSMiAWtcZv3tHcppKMdQ2bQ+d6mSz + 8GNZdpf/y8NqtVqhWjiBHldP07/xe3n7NdkrA8JBXQ6uQo8rkhJG8oITvl5OkzV6XCFlPuOvFr2Z + TuvbsbjgeZL5sXvV9fsoLC04YzjxY3txIFUkliQkIX6s/vo5icTmGWe8CGC7NG/jsFmW4SKA7VzN + D5HYlBY4hNXdkcRh0yItQlfWJbpmcViaE0YCCbYTaS7jsISTPGF+rNwWfVxskyJnJBTbZ0KhicRy + nvNAELZmdzxGYhlL0sCVbXvcmGgsLvIAVh8pi8VSHEqwrd7v8jgsyzLCAldWmS840lvKx4LwYzft + QfI4bFJQzGgAS/W+isSyDPNAYxT9pt1HYknCWSBvRd33EInFBUlD3lYbkUZhCc9pzgJ5y/TOxBUv + YTwp8tSPpf2Q0kgsxTQPdDAqNc7isLggtAhUGXbqoGbY6dfH81zUghOvsuTnJkg0DswPdFqQYiZB + kNhuSyuPMNoxnht6WX4BY6Xuxo3pB4xm1g002sCrAEmSJFtAwZb7Acy3hR+TxT98RmqtvJbJ2kh1 + PoXffp3wNqsdrFvottD3cnXGxHNgWnt128USO2wM1LW8zY/l0kpCV82K9tr38aaZp6uzTus/FTAj + ui3cF7BljbzcF7KtWyT/zYtP/33klFtU+D8cOSvbXsG5K5XWGdlt74tjDY0YlCt1D0Y4PXYiJLoa + rW9HNBJUbe8veSedgk/8jq3ORwbVODi4T8kdzeKO4/xo5Wg/iM4NLfpTl/7wGx4i+6wHNT6VT+HG + 598hkGzTe1F22vmZS9Y7BvK9rGeDNs7/DC4LFtVgq2VkTz5NgeAA1eCk7konWyhbqZS0UOluyric + fMhnqurna/p0ITLWYXXy4LkEJLsaDqOnxpY1KCdgrhOUbKdXDhG80A8zpYKcGRZr9vOkmo1P3e+y + fjwx/HWfvLkn3vRynO5Lib/o7S3d+qq33js2YAflbGnADaaDsbySud6zz8LUlxoINUKqafZF+u9k + 3/stQ1WBtc0wKrn30tppJ6Zxbwl4ZexroZ3r6N146b7144pFiOdzgjLtUobNwzVWYF3qYVzXCGVh + bhuPUL4GdIrjwznup+/eSnB7VxQAAA== + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9fe5f8f73ff2-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:00:03 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:25:59 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=nARsOsSLcdshzzO8QATa%2B7nroXIpEvNyd92CiAvFmdy8UJnB6Y4C8MdKvAfNRFB6x57pwka2NpzHxB6WpyIXfmLy7kmZMg%2BVsD91C6EtStPt6Nl0RKJvf3KumSju7wm3fEPt"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?q=quantum&subreddit=science&limit=100&before=1617376395&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1614222795 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+WY23KbMBBA3/MVHj17OkggIfIrmZbBsBAl4mJJ+JKM/70DzgViqcZq+9ApT1i7 + OlpWexu/3q1WqxUqMpOh+9XD+Gt4Xj/eRnmuIDNQpL3J0f0KMxwTHkU8XM/VRIHuV6h+3D31T+hD + dFovxtIkYpwwO5Z1T+3eExsy5sTWPGF+WM45Jw4nMPq8UX7YOGJxFNuxNNhr4YelnBMa2bGh3pvS + E8s4xg7fhlIlnldGaRgk3IGtdLf1xWKcYBd2Q3Z+2IiyMHZEAqm3BfXE4hBTh7Uk2QWVLzZg1HFl + hDel55WFhLLYEbe4Oh494zYc6o3DWlyA7DyxAcHYkQ6Ysx77YQmJSEzt2OBZ537WRkmEw9CeDvKY + bB6PntiAcpI4sAGtDn5YzhmL7HErD4ZlfgEWxTEnjriVe7M/GD9sSGgSBXas1kbuPLFBzLHjynTz + 8uJXbyOSsIBFDuwzC5oJdnz7ftZFNZjsrdF/HoKy0oB6RxMSJ5PYRVlVpVq8wCAPgqmgE+kOlBZt + MxwcfgvQRLqBslXwNimEMQtnUNDptgd1nNkxSuzLZ2TbSqtklJZCnr/CLr9O+NCqe21mk5Dreb2q + MfIMqFpfPXa2RfcbBUUhltkx35oLaHJAi3d9X6R5uqp1Wv8ph6msqeA2h81z5PU2l1VmFvyLN5/+ + e89JM8vwf9hzWtSdhHNVSrVRoqlu82MBZdZLk7YdqMy0QyVCWVOg9XJEKUAW+vaUN8JI+EFvOOr8 + ySBLAwfzg9xQLG74nPdSjrZ91pi+Rn/q0u9+w0KkH9teDq3ywV347Cc4gm3sF2nTGjtzzvrCQLbO + eha0ytjb4DxhUQE6n3v2ZJspEBwg741om9SIGtJaSCk05G0zRhwm3+hkbP/spg8XQ8baPZ3cWS4B + iaaAw2Cp0mkB0mQwnROkqMcuh3Awmx8mkwoyqp/t2U6DarI+Vr/L/LH48Nd1cnFNXNQ5TreFxF+0 + dkm1vmqt9Y4V6F4anSowvWpgSK/pnyJIP2aquJyBUJkJOWpfhP+z6Dq7pM9z0Lrsh0nu6wxsWpON + 69YUsI6xb4l2zqMv66k5dsOOmYunOs4x7XIMm7pryMAibfthX5lJDVPZ8Anpm0NHP96d/X76CTqk + 9c6pEwAA + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9fec3c0f53e3-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:00:03 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:57:11 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Dul9eY%2FhUgwRJbcL4pbqqb41Xd4x29nsLhqtw55I1%2FGGK9wy4WkV8s404MTwi8jsUt5JlMzkoUouzR%2FDVjNCyxZOSXLixADWHgt2A1B1hBN6US9yK98WWUp1HFenwxdpajZ6"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?q=quantum&subreddit=science&limit=100&before=1620529995&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1617376395 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+WXW3ObOhCA3/MrPHr2dHThIvJXMi2jwGIrFWDr0trO+L+fAacpxNKxUdOHM4cn + W7v6tKz2xuvDarVaoVpYgR5XT+O/4Xl9/zXKKw3CQl06W6HHFckoTgnBeb6eq8kaPa5Ql59ktUfv + ovN6ARazlNIA9kC2Mg6bcMZ4CLtPszYOyzLCecAJ2f7Z/YjEJjnBLIBVx7yKxNKcsjSAhRZ0HJYW + FCchLKMMx2EJz3GB/dg0279sI7GMpiSATbqXtInD4oJzRgJYOGZRV0aKomApyfxYthWnYxw2x0WO + A1dGsl0HcdiMc5zxABarn1kkNs8JDTgBH4X4HokdgjOEdfbUx2JpkSYhrE6LOGxKccb92PakNI60 + NmGEcH8ktEeXiTYSSwjHeQC766mKw5I04TjghJ/diUdVMMJ5lrNAqWmdOFSHWGyaBVpk64Q47SOx + CS8KHsAm6Z7FYXOcpknAWkvlMa4m8JQXFBd+rMnqXR2FzZOcMRKI25faiecJdvz19aKLWrDibdr5 + fQgSjQX9hmZ5xooJGonNpjTyBIMc46lgJ8sfoI3su+Fg9gWjifQZml7Dr7mGFsUMCqbcO9DHmR2j + xL98Qfa98kpGaSPV5S388tuEd63WGTsbB0PP602NkWdBt+bmsbMtxj1rqGt5nx3zrZWErprE663n + 612a55ta5/VnOUyLbgPLHDbPkddlLtvYWfDfvfn8v/ecsrMM/w97zsh2p+BSlUpjtew2y/xYQyOc + smW/Ay1sP1QiJLoare9HNBJUbZanvJVWwbd0wVGXVwbVWDjYb3RBsVjwOr9KOdo70VnXos+69Ic/ + sBCZbe/U0CqfwoXPf0Ig2MZ+UXa99TPnrA8M5OusF0Gvrb8NzhMW1WCquWfPvpkCwQEqZ2XflVa2 + ULZSKWmg6rsx4ij9Mv3m/t1Nn66GjHV4OnnwXAKSXQ2HwVJtyhqUFTCdE5Rsxy6HCJ7ND5NJBVnt + Znv206CarI/V7zp/PD789zp5d028q3Ocl4XEX7T2nmp901rvHWswTllTarBOdzCk1/SbFZmt0PX1 + DIQaIdWofRX+3+Vu55e4qgJjGjdMch+/hmxvxbjuTQHvGPuWaJc8+rBe2uNu2DFz8VQnOKZdj2FT + dw0ZWJe9G/Y1QhmYyoZXKN8cOvrx4eL38z85iA1XrhQAAA== + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9ff26b1f542b-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:00:04 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:57:13 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=tveyJMrz49xdCON2Xz1st18s0%2Fv7oZu9tjeV5xi3985054CTvFBXdQXlYaTNLMS2lWH0bMHAsRlQBGlbH1jBjLYGdAD88dUns7h7wYJLC1sZevt3TL7kjMU%2Br54dhYw3vg6D"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?q=quantum&subreddit=science&limit=100&before=1623683595&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1620529995 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+WXzXLjKBDH73kKF2fXFB8SFnmV1IwKi5bNBEk2oNhxyu++JTmbkRJY28zsYWt1 + kmn40fzV3bTfHhaLxQIp6SV6XDyNv4bn7eNttFcWpAdV9r5CjwvCKeMFxrlYzqdphR4XqD21eyXR + h+m8vAObZRivIlhYY5uGzUVGGQ1jX4+Qr9OwWU6LnIWxR2ePiSIwTmgWwR5Oa44TsYwyjiPY9gAu + FUsEi2L3+2MadlA26q3snleJWM5FHomEQ5b/VGlYwgtRkDD2ZdUfEj8ZISvO8zC2942rk7C0YFkW + S16nsjpLw/I8x1kkefdWAknD5pTSWIDtjKc/07AU06KIZFlzWGVdKpYIHPG2eTk6moQlgtGCROL2 + 2VDj07ArUjBehLHaqeM2EYspJpG41c2u2aViSVHwGLY9HZKxKxEToWl8l4xlIurt9jlRBM4zQSMB + pqsaJ4rACcloRITtS+2KNCxjgrOICLXAJK3eElJwziNY5TeiT8PiPCt4pIxXdkUTIwFTRlYx7Nar + tCzDggqeRbDrVlRNIhYTRrIIVkGX1ixhXuCcRAJM1KcDn2DHt++XuagBL98b1F+bIFl7sO/onAoh + JuUGyc2mdPoEg31ajJHc6fIFrNNdO2zMvmE0sa6h7ix8dLgsn0HBlfse7OvMj9ESHr4gu84ELaO1 + 1uZyirD9OuFjVtM7P+vgY8/b1Rkjz4Nt3NVtZ0tcv7aglL7Nj/nSSkNbAbp51febZp6vzjov/5Rg + VrYbuE+weY683SfZxs+C/+bF5/+9csbPMvw/rJzTzc7ApSqVzlvdbu7TUUEte+PLbgdW+m6oREi2 + Ci1vR9QajHL3p7zX3sCP/I6tLkcGU3s4+h/0jmJxx3H+LuVo38vW9w36Ux/94Tc8RG7b9Wa4Kp/i + hS+8QyTYxvuibDsfZs5ZnxgodLNeDJ314WtwnrBIgavmyp5DPQWCI1S9111bet1A2WhjtIOqa8eI + I9k3MvkX++s2ffrSZCzj3clD4CMg3So4Dp5aVyowXsK0TzC6GW85RPCsf5h0KsjbfrZmPw2qyfhY + /b7mT0DDf66TN9fEm26O830h8S96e0u1vupt8BtbcL3xrrTge9vCkF5s0k0jt5VWfe2BUC21GWd/ + Cf9nvduFLX1VgXN1P3Ryn1tr33k5jgdTINjGvifaJY8+jZf+dTesmEk8nRNt0762YVO5hgxUZdcP + 62ppHExtwxHKd0FHHR8uup//AnW5m+ZhFgAA + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9ff8ac4c54b5-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:00:05 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:26:00 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=DThEQ3Qfyi1WN3D60PzF80X1Ra78%2BAi1ucl4%2B6aAbBXVJjW3q2rZ00ZLaODsaAJIWplQSPRZjJqfFWgJHFebo3CvIA6ex4svVlNumOUuNoVYVRPUaeWcU2%2FSpbpmXbur9B7Q"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?q=quantum&subreddit=science&limit=100&before=1626837195&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1623683595 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+WYXXOjKhjH7/spMlxndngX+lU6uw5VNDSoCWCbtpPvvqPJ6WorJwm75+LMemV4 + 4Af+fd7M+91qtVqBUgUF7lcP46/hev+4G+2F0yroMu9DAe5XiGOeEUgkXc+nmRLcr0DXtl514MN0 + XF+PZRmnFC1jG8OYSsNSxgjJlrHWZnafjEWMxrCs4mlYIgVmOILlNd8kYgXjMIbF+36XiOUZIXIZ + u31pa5yGRRKxLPLKnkxtfSIWCsnFMtY8F5olYZnMKIURETYHRNs0rCAoi4lQ93B/SMRiQSmPYIMg + NA2bZUIiFsHWbeCJWC4kjolQyueXRCzJKIxhyWHbp2EJwpBFsMVLqdMyGMNYShnx20KWmKRhEcuk + jHjC4y5sE7GQiwyRCBaqViRhqRQQ0whWqY3dJmIZZywSvIoWok/EIkRiaVz66s2kYQWHmYw4mNRF + n1Z5KRcZFpFaJhiqXtOwNCMIRhyMm1cbErFIMBgJB05r45KxRMgYtirSSiRFdPDdZSxxHSsTsQRi + CSPYttNpJZJCKeOnLdV2n4hlCMUqL4FPtE7E4gyxSE7A+4allUgih6oT8QRc6CeZiB2CN9LfYt7U + ZSKWSRxrmzF72+4SsZRgHBEBvbmQlm+J4AziSJ+AlPFT7Hj3/TQXNDqo86fKr02AqoJ2ZzQXhMkJ + Gqi6zr1504MdwqlhZ/Jn7bzp2mFj8g2CifVRV53T555RkAzNoNrn+16719k5Rsvy8AnZdXbRMlor + Y09PsWy/TPiY1fQ+zL7lYtf7xRkjL2jX+Ivbzpb4/tHpsjTXnWO+tDC6LTS4etX3q2YeL846rv+U + YE61tb5NsHmMvN8mWR1mzn/14uNfr5wNswj/HyvnTbOz+pSVch+caevbdCx1pXob8m6nnQrdkImA + akuwvh5RGW1Lf3vIBxOs/sFu2Or0yNpWQR/CD3xDsrjhcf5J5WDfqzb0DfhTL/3uN04I/Kbr7VAq + H+KJb3mHiLON9SJvu7DMnLM+McBSZT0ZOheWy+A8YEGpfTFX9rjUUwB90EUfTNfmwTQ6b4y1xuui + a0ePQ/wbn7Q/v6rpw5cmYx3vTu4WXgIwbakPw0mdz0ttg9LTPsGaZqxyAMFZ/zDpVEBw/WzNfupU + k/Ex+32NnwUN/z1PXp0Tr6ocx9tc4j887TXZ+uJpF9+x0763wedOh961egiv6b/FwG+UK7/2QKBS + xo6zv7j/1ux2y5a+KLT3VT90cp8/t0MX1Di+GAKLbew50E5x9Gk8D6+7YcVM4umcaJv2tQ2byjVE + YJl3/bCuUtbrqW14hPws6Kjj3Un3409aaiuJaxgAAA== + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9ffeef0dcab4-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:00:06 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:26:01 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=8f6SKTyLHgvgQXhPZ0g3FaGZVwdR8GOmaLR%2FVKy1UD6sPbRMFrS7vTVYdiJszqpbiKzKqGgdbFZGYFTMiR%2BYdPzWeMCJNaBTIV5j4pm4Lowkeio%2BrGycbR60vbmB4Unsrkwk"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?q=quantum&subreddit=science&limit=100&before=1629990795&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1626837195 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+WX2XLbKhjH7/MUHq49HRaJJa+SaTVYQg4nsrBZvDTjd+9ITlMpgWOb9lycqa5s + PvgBf32bXh8Wi8UCNNJL8Lh4Gv8Nz+v7r9FeWyW9aqrga/C4QBQLgRDDxXI+TTfgcQG2q3anBHg3 + nZd3YCFEDCewq3DAeVhWUA7LOFbSo28zsQijksSx4qBLmoctS15QGsdyj8MmD1tQRilLYEsDM7GE + CwgTWPZsOcnDYkGEQHEstbVb5WFhQUgKWxwYRFlYLhjBIuEJRdtJn4flHDGa8Fti987lYREuuRBR + rDnRQ1/mYSEvEYqLYI6+eFaZWCoQSWHNqd5mYZnglAiawMLOFZlYxkQiHMzhFPg6DztKmxDhAMm2 + zsQWEPIEdn/YrZpMLCEYJ7Tdh+4gcrGI8yKFZTIvgzHGKSMp7Evb6DwsZSUmPI4NbqcyT0tLDnHC + wcJGd/s8bMkIxYmcECDy/+RhMUEIJhzMqgOEmVgscEFTWHm0eVhYUkRgHLsr1zgzeCERWKSwsKZ5 + 2lLBCp6oZWar+5dVJhbikiS0Nd8bJifY8dfXy1ywUV6+dZK/NgGy9cq+oTlhSEzqGZDrdeX0dzXY + IZwatrraK+u06YeNyRcIJtaVao1VP3tGAdkMqly1C8qeZucYLfHhC9KYLmoZra3uLreI268T3mdt + gvOzVjv1vF6dMfK8sht3ddvZEhdWVjWNvu0c86W1Vn09KeTXnq83zTxfnXVe/inBrOzX6j7B5jHy + ep9kaz9z/psXn/965To/i/D/sXJOb7adumSlynmr+/V9OjaqlaHzldkqK70ZMhGQfQOWtyNarbrG + 3R/yXvtOfSvv2OpyZdW1Xh39N3xHsrjjOj9TOdgF2fvpN/FvvvSH3zghcM8mdEOpfEonvvgOCWcb + 60XVGx9nzlkfGCBWWS8GY328DM4DFjTK1XNlz7GeAqijqoPXpq+83qhqo7tOO1WbfvQ4VH7Bkz7l + VzV9+tRkLNPdyUPkJQDdN+o4nNS6qlGdl2raJ3R6M1Y5gOCsf5h0KsDbMFuzmzrVZHzMfp/jJ6Lh + v+fJm3PiTZXjfJ9L/IenvSVbXz1t9B1b5ULnXWWVD7ZXQ3hNm3TgnqVtPvdAoJW6G2d/cv8Xvd3G + LaGulXNtGDq5j5+E3ng5jkdDINrGvgXaJY4+jFf+tB1WzCSezkm2aZ/bsKlcQwQ2lQnDulZ2Tk1t + wxWqN0FHHR8uup9/AMA+RX4KFgAA + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aaa0053ee75497-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:00:07 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:26:02 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=A2r0rUPWn%2BBXsqf%2F2fA28228sM6qItd3sRJU5Zq3insU92R3tPUHhQ26fDI1lmHpm%2FoIBJa5hUtSvwXDkdEQJxZRx7C3HjJaJZc0x7Y4aAPbBil4lEeVSnHH0%2ByGPZN0NWqP"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Cookie: + - csv=1; edgebucket=rMnJXdgWbcPi5FKlAW; loid=0000000000edl180ip.2.1630961281900.Z0FBQUFBQmhOb0h0c2FBVHdTa3FEaEMxVER2OS02Ml9FMFE0Z0EyNmdZQVR0SGlxNXJvWkNDd21iWDVXSEI2ZjBaTnJlSWY3X3hLQmgxc3VHSU91WnJjblVtclYyMUJ5RTJYbXVFUkJmTWl5VWFXdElUVnZ3WjAxUzVDWUlza2ZhUlAyZ21fTzFyUU4; + session_tracker=aldqoekpgqnnongefl.0.1630962157323.Z0FBQUFBQmhOb0h0OVk0MWN4bXJoeEhIeTB2T0h1Y2Y2OXliVmlLQjh4dlkwSHJtai1pVjNGR1dSdFpyZ0M1T2ttaDJuQVR4b0dKWE1GZGdFSmc0TlBjYmRScVViTEtrRW1SRmNudWN1eTF2RDZWRDl4Y1Jac3ZaWFdZRjUyVDlVS2hhV0NJakg4TWs + User-Agent: + - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' + method: GET + uri: https://oauth.reddit.com/api/info/?id=t3_j1r2ud%2Ct3_j1qaqu%2Ct3_j1q88w%2Ct3_j1plx3%2Ct3_j0old7%2Ct3_izlv2v%2Ct3_ix8pcw%2Ct3_iww4sr%2Ct3_iw8hl7%2Ct3_ivsjel%2Ct3_itk6sv%2Ct3_ita2el%2Ct3_is6zkb%2Ct3_irr6ax%2Ct3_irqtdu%2Ct3_iqsi3p%2Ct3_iou424%2Ct3_invfo2%2Ct3_in86pk%2Ct3_in4815%2Ct3_in24o1%2Ct3_imxgwl%2Ct3_imwrjy%2Ct3_imdscm%2Ct3_ilz47a%2Ct3_ili6rh%2Ct3_ikghu7%2Ct3_ikcgr0%2Ct3_ijx4k0%2Ct3_ijkrm5%2Ct3_ijeucg%2Ct3_ijbjac%2Ct3_iiwkqj%2Ct3_jlbsot%2Ct3_jlbius%2Ct3_jjb60n%2Ct3_jj0iye%2Ct3_jiqnxv%2Ct3_jgmt5h%2Ct3_jc051u%2Ct3_jbsvu9%2Ct3_jbopwe%2Ct3_ja4bgs%2Ct3_j9a1r1%2Ct3_j975u3%2Ct3_j80prz%2Ct3_j7ney8%2Ct3_j7ndf1%2Ct3_j7evjb%2Ct3_j77ar3%2Ct3_j6rhr8%2Ct3_j5hjvq%2Ct3_j3yphf%2Ct3_j3r6sv%2Ct3_kcht0n%2Ct3_kay2ed%2Ct3_k9ur77%2Ct3_k9nv0h%2Ct3_k9l40q%2Ct3_k9assu%2Ct3_k96j9p%2Ct3_k8rm59%2Ct3_k7vb2i%2Ct3_k753a3%2Ct3_k353af%2Ct3_k2mspp%2Ct3_k24ai6%2Ct3_k1c6h1%2Ct3_k17aiu%2Ct3_k174lg%2Ct3_jztfu8%2Ct3_jzokes%2Ct3_jswwx9%2Ct3_jqyn3e%2Ct3_jqu3gq%2Ct3_kzfmux%2Ct3_kyyi80%2Ct3_kxuhw4%2Ct3_kx7awn%2Ct3_kwcisk%2Ct3_kvv4tc%2Ct3_kvuzqc%2Ct3_kunfgc%2Ct3_kuf7y9%2Ct3_ku762a%2Ct3_kt13ia%2Ct3_krq0av%2Ct3_krm83s%2Ct3_kr69da%2Ct3_kqf7ij%2Ct3_kq82em%2Ct3_kprjye%2Ct3_kp73t3%2Ct3_kp6fwm%2Ct3_kp0j4x%2Ct3_koyppt%2Ct3_koptdw%2Ct3_knwuwc%2Ct3_knsiii%2Ct3_kn0360&raw_json=1 + response: + body: + string: !!binary | + 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 + headers: + Accept-Ranges: + - bytes + Connection: + - keep-alive + Content-Length: + - '46719' + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:03:04 GMT + Server: + - snooserv + Set-Cookie: + - session_tracker=aldqoekpgqnnongefl.0.1630962184384.Z0FBQUFBQmhOb0lJRkh0RXdtMnE2dGx0NS13LVp2X3VKVGJyX1pJNmxqS1hxS0JVb1MzeGhKcGZuRDVYRVczc3ZtYUtmc2drajN3QUUyOVZRc01OSHdWUWktb2tmal9tR25aNTh1cTFzRWlseWQ5RklGSmc0N1M4R1E2eTdKTG9MVDFnTTZLOVYtVEw; + Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 23:03:04 + GMT; secure; SameSite=None; Secure + Strict-Transport-Security: + - max-age=15552000; includeSubDomains; preload + Vary: + - accept-encoding + Via: + - 1.1 varnish + X-Clacks-Overhead: + - GNU Terry Pratchett + X-Moose: + - majestic + access-control-allow-origin: + - '*' + access-control-expose-headers: + - X-Moose + cache-control: + - max-age=0, must-revalidate + content-encoding: + - gzip + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-ratelimit-remaining: + - '296' + x-ratelimit-reset: + - '416' + x-ratelimit-used: + - '4' + x-ua-compatible: + - IE=edge + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?q=quantum&subreddit=science&limit=100&before=1604761995&filter=id&filter=created_utc&size=100&sort=desc&metadata=true&after=1601608395 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+WXW3OiMBTH3/0UTp6dTgIkQL9Kp2UiHDRdbubiah2/+w5gW6hklWz3YWd5Uk7y + S/LPuXFaLJfLJcq45uhx+dT9a5/Tx6/OnkrgGrLE6BQ9LgnDASHMZ2Q1HiYy9LhEr8Va1Rp9mM6r + OVhKWGTDCqOcsH7kM4bDaezrmuHKEYt94gcWLBZHcMOGNAyoP40Vu+qwd8MGNLKKsCk13TphvQjH + MbF4QoopMW7YMKI+sXjCWu1N7IgNPYY9C7ZufrpdmUdpQGxXxoP1xs1vvcCPcWTBxpxI4oj14sBj + FmxIje+G9SjzqAUb4Ua+uWFJHAaxxcHCCo6RM9YPQhs2yx21JSEmAbVgYf+6dsT6gU9iCzbk0vHK + cBiHgcXBmNxKN21JFDMaWTyBbl/3OzcsozGOLSL4x2abO2K9GDNswUqmhvm2+/Xcj0UlaH4pnZ+L + IJ5rkO9oHPnxwBsQ32wSJd6gtWM8NDQi2YNUoq7ahf0HjAbWNeS1hEuRDBmJR1BQyc6API720Vmm + X/fIui4mLZ01F0V/imn7bcLHqNIoPeotbM/p5oiOp0GW6uayoynKrCVkmbhvH+OpqYAqHVSFW8/z + XSPPN0edV98lmOTVBuYJNo6R0zzJNnrk/HdPPv/3yhV6FOH/sHJKlE0BfVZKlJai2szTMYOcm0In + dQOS67rNRIhXGVrdj8gFFJmaH/Ja6AJe6Iyl+iNDkWs46BdvRrKYcZz3VI52hlfalOi7Ln3xBztE + aluboi2VT/bEN72Cxdm6epFUtZ5mjllfGGiqsvaGWurpMjgOWJSBSsfKnqd6CgQHSI0WdZVoUUJS + iqIQCtK66jyOsAc6+Hb5rKZPV03Gyt6dLCYuAYkqg0O7U6mGDUIhyq68IYJHjcOgRUFaGhjadkNv + Grzv0t514EyI9/sEeXcyvKtknOf5wl/c7T1p+uZuJy9XgjKFVokEbWQFbVx5gy8fpLZcZtfND8q5 + KLrRV37/QzTNtMWkKSiVm7aF875ada15ZwgmvX+yg73EWB9CX94n+ti0M0YiD8dYO7TrDmwoWBt8 + WVKbdl7OCwVDW3uG5CJpp+SiV/78CyAQf1D2EgAA + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aae145ec3ff989-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:44:40 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:23:12 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=SUTe0LEQUa7PZ93rWqhhu4j1FpcK66rTdB1exlkZ6eZClGT3If2smjag5mCKSscE2GYsrdq4hYTWp5mWaKUO0hQKJJEXifDtC%2FW9V597ZmMUmZyZFY907mZVFI6eO4Xnn4k6"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +version: 1 diff --git a/cassettes/test_submission_search_ids b/cassettes/test_submission_search_ids new file mode 100644 index 0000000..6b1a74b --- /dev/null +++ b/cassettes/test_submission_search_ids @@ -0,0 +1,173 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?ids=kxi2w8,kxi2g1,kxhzrl,kxhyh6,kxhwh0,kxhv53,kxhm7b,kxhm3s,kxhg37,kxhak9 + response: + body: + string: !!binary | + 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 + z/8DqpfrLbSZAAA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa6e147c9553f5-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:26:02 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 18:26:17 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=PkAIgEWlJUJJxv2Qxdd5FiH2A%2Fg6TLxqt1AUYxW6qsP0YsM7rJRsts3kIwprWCBBQ%2F883xcrCFu9W0%2B6eFJ8gF7wjvUvVXcYNi%2BZh%2B1xIVsDwyoQ3FqqgUQ5%2F3JMZdRlB0wQ"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +version: 1 diff --git a/cassettes/test_submission_search_limit b/cassettes/test_submission_search_limit new file mode 100644 index 0000000..53da697 --- /dev/null +++ b/cassettes/test_submission_search_limit @@ -0,0 +1,9799 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=100&before=1629990795&size=100&sort=desc&metadata=true + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9ab93c9153e3-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:56:31 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:54:53 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=DKMOp4dDcXV8GCkKXwJkVF0xswVx3kuScHMNKZnyHfxknQFrdwdQH4CpInhOTaHExtzFqXtmcj3KqSprKl0WCllZOlXPgSIfVR7S9mu0prRkD6tJRlIgZO3oGy5SBOgDMvba"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=100&before=1604761995&size=100&sort=desc&metadata=true&after=1601608395 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+y9aXPbSLLv/f58CoTvPc95Y1i1L31jYkL7vu9+5gSiVhIiCFBYSNFz7ne/UaQk + qy3LTcm0RarVHdEzIotYElVA5g+Z//z3f0RRFH2wqlYf/oj+/9Ff4Z9/3/+/0fcqyxI1UKVN81YV + Bv73x0cDikGSpX2XmKLbdXkdhnmVVe7bkU3dLsoPf0QfWk2vRvjDd79PfKbSMjFVlZhMVWFjeZNl + PxpbpqZdu5v6u4f3cODtoL/aXj3suXCYo+FPDGyyLFfd8TCUsLTbL1lz9cTonqpLV+Tjzf/QOkmv + dN206T41KFwJV373QhiVJ93CJr2iqp/4uSny2lV1GOaeGlI6VTubNLX58EcEGSCcQYrxN8Ns0VVp + Hs6+MqnLjcvdoPpUlK1vLRAMlWRp3glj23Xdq/5YWBgMBp9KZ21afzJFd6FcuN3Iwt0MWrjqVZp1 + FnI3SKqeM6mrksInqttrpzpVeZW0VZVcNVWdaOfyhW/32kqzuwn77//7zXepDYcy3sG3v0urxJRF + VQUbKp0FI9Vl4x6P6rrRsvmeBdMqKcq0leYqS0YGz+unR46tkHSdTVVyb9SnBhe6qJM0t+7mhwdX + ucw/vZV+al3xxNfhQt0uAq1Mp1UWTW4TU2Tjdfu/uDKC8w9P/+rhsv2g8rSrssqkP/jBj9bug2G1 + 6/YyVbtkfPUgkA5yZGLCsIghdDhW2skYIgyxBsQ45T/8aGujHX5YHB1gdDyefX/xg69myNJWu/7R + 6B/cP7LCdJx9wvzjaVDk2fCJAXmR+CLccL9/7fOm+/AmTL/39d30DgPANwOKvisTKJ7YeU+VLq+T + QTutXZZWdVLVqm7GVzo8JWz17cn2XNlVd4v/FyzzXprnTxoznGTSTkerb3R1Hv26dP3UBVP++Zk3 + +tLlYYk9se3xUuqqlqv+9Ox8+M+/v/vpgzvQNczZsL+yqeBN6fj28KpE6Tnji/leI4qz7Gqzf7SZ + bGxu2NXFDx+f3ljpqiJr6rTInz6Wvz6m+8213Why/xEx8PGvRzdl9vC+7m5qV+Yqi29NO7rJf0rr + BWtXW+snDV3ZbYodzs8sP4N79mSrXhmwBPZgf6tXpcciZ8fi01Wv9c9Bauv2PyAQ/5/q9v6PKYve + P6quKuvRn6qpi38MnO6N/qr+4QBwwgnIAdCWIymo0AAyQ7A22HJjqHZaQvhhghMa7Tg8+ID44eD/ + +3FqhoYIvrqlEWSTWFoioaHXzjmBBKKOIqCpd1IZp6E3AhLioRb+OZZGkP02S4vXn9MYgUkszTwG + 3EAnPDVUSCWxNgQbRbizzllmGRHEI/YcS2MEfpel8QzcPRiZyNJKaG4EtYxDDilVmkIDJGcOaCM1 + xRpKr4BBz7E0I7/N0pS8vqUlm8jSVof5jB2H3jttPBBUSIIABAITbJAnhhugnzWnJfsLSz/57X// + 4JlaFU1p3Hcdgyeuwl/dWX7ZFfjWyFhD55EC0CkDCNbaWoS50Jh6YyCzRlPGmQV/YeQHD0L8tIV/ + MI8/9FWZqrEf+u/vX4XHn/73f/xg6x96gyxsjX3zcenqMnV9Z5MifxCykm+938oUZbim8NvPXebv + AoIPj77LbVK6XpaOPL3vuNxVr0gz91RQX9Wp6aRPuqhVo8cB4INA+sNTY25Dn5om3aIZPD2sanRl + ylSPMQGihFEg5JPD74KVXqOz1DzebKvlqgAEqqIcHaYpcp/a7x1p3W66Olfpnya6+jT6uLqN90cR + zijov64IHNLz3p6oTsD6SqWumN07ap0vpyfXN3hT+ORk/7xoOwlGE/3JnSX3i5CLJ8fcz+Zv75Yf + 6rQeRdIf9twguo1BosJHi/cxSNRWVRRikCjEIJFNKxPiJGejP6JL1anaKuq50tV1mn6K1ooyqtsu + 8mlZ1VGddl3k+q78GK0fHUc7So821isL2xhnIxX50rnIFqYJ8ZAqh1GRR5dFc9JoF9VtVUdVuxhU + UbsYROr+8NLqwVF8emSZola3zC7wBePS/mgCPjrzQHrCbpNafR/tNb1+UbukVHUagAH89O0mvrmp + BazzDQ5aUGWdmswtqDx8Ucf3sV1cZNZVddzJi0Eej1FBXGWB2rSLOq6LvNU8mmJNmSXhtMvUWpcn + epiEbfzeY3hG/Ht7w/qP79zRfgdmVZm7Ubl1ZZK7pqvy/IfE9XvAZ2JE+6FXDU07qgfFh2mS2g8H + 7ZXof6LVXmpdNy2yojWM/ic6CPtKVV2m5k9fffirLX49MavKzocpM+AOUoXtv1UG/Milf8yAbVo6 + M0K606PAMv2yMFpxSVfVtSuTbhoQVl02pm5Kl6jcJnXbJS2Xu1JlLyPBMv3yToKfR4KVMIKrSUlw + 7pqymDoFdsI5BayImQA0UGAaC+FUDBF1jjOiDYATUOC9cHDVG2XAeB4Y8M8u8h9z4OeEDZjD97Dh + Pmzg+HeHDdZ51WSPVsy9l34eZkm0O5ol0e6fZkmkcjvyvdfHs2TsJhQ9VbfHjsOaMnVRRmkeLbfT + zJYun0nX+etT9H6t3DuwulropenCMRASCMo4AhgADPhP+cnT2OH8OMXrw+AS90nzhtIPxFUKCXdv + 0/WkAgL0pOt5+0io6samriLNVL3P0vXbC62iaGUu6aU3Lkto0vRM0U3zVjICnb12kf+c8xn28e58 + Ps/5tFIgoyd1Pk3R7f2KJARGGLKUsFgIqcdJCBILcJeEYJxQbAL3c7no9prwOHuraQhgDlzQn13p + c52JcDM88Sk4x+nll3J1d3nPDm1vTV/CFu5Vufrcu2hdHJN9EGem9RqZCGKa78d9Z1CcXJ11r+3w + CFzsXzVFLHoq21ok5qq3Z3vrw578jJUj/PIFmQgaGeQYxIYjRDShBkgJoceMQqa09kQ6KQyf1UwE + hl7d0hNmIiDCnBaYCGgx18Qgrq1USiqEgOfSaKw8JZzPaCYCmupb25dZesJMBKIJ5NI47B212GDJ + jXFeacI9hgpKKagHguCpZiL8nre2GLMpvbV97hX41sjGMIWIJRAgyCXBEFvltWQWIgS5VdIwTQCl + k761JUTM30tbKiDE7/Tllr4QweBrvbTVT720rWBvmNjlG5Ms712cHK2tr+drK0Wrk11tF8yTpF2c + rcmDljpZqyZ8aQsB/Zm3tusjly06CC5bRKPTW5ctOr532aJ/NQhAfE+FbiPF6DEAeD36870g9tYb + jUfeaEwXno94XrLV+eE4utA6c72y6LVd/YZYjrU3V+JtghwG0NN1JLkKEHeq+OZ64OjCQJWjIM6W + ad9ViQvhcys1IyrS7TZ5Wg8T01Z5y1Uv4jdhJ+/85pllJNYiQSblNy7vT53dcI6opeRPrw6dxzFE + RigcYDfiE7Cb1byflkUeJtybwzZwDrDNT6/w+a4g8XSjq66uyovOIT3GR9f5VX+pabWvapl08qrQ + iS709UbaT6vX4DYQyCkGud3z44svSXdIhsUBW+/mYjfutxvXPWuf3dT6en+DHp2cH2Wqz3efD24A + INgjJTG3xhtCjNGQYqIUkYYrKamR2AHhZhTcIPj6lp4Q3BjDAVdeoGBawokGQBnqoDdGWmEVVIYD + D8CMghuMyKtbekJw45XRAiLPgPaCaO+cM4pI7RnCTjDgqSYGEjSjJSSMvP6cnrSERHlNiQbOWi8Q + UAxZCBCTSHIuCeSUQo8BtlMtIfk9iIwJOiVE9twr8Kj2jDAUEJnj0kJllObGCqwVEsBpzBgkSmHH + /aSIjHE6h4iMAfyOyO4RGWdk5hDZdYtcb4nDq8PzPb+7rbrFko/55vnNYXHYS1ZOmgt3jXrrn/cv + FlcnRWSP8ddzENn52D2Oxu5x9NU9ju7d4+jWPY6Ck+tsVBdRu6jqWFVVYdIQx0ejjDydFl0X2WGl + 06J65FS+cvrUV4Bwl75ULVQEUipigEAMhJQxfVmi1Is2PT8orWyquijeUj4UuGGdt8nQqMTkSYZm + i3SqGizX/W65cJsEUTR1oqpEp5W7aVSWDFSVfL0/JIO0br+Mn/W75Ts/ex4/Y0hICyflZ22nsro9 + dYSmpKCEGPIAoSnveQyRBBgJZz3FEyC0jb86uvmkZ2Ie6NlPLu+5hmenX9hyoepVeD3UVYPxmfy8 + hQan9RfQae+t6JOtmm+eb9iisK8iv8LpFKPfxSW9vFLvLt1cxVfN57SzhNnpztLGMjjekd3dzhe8 + 9WUIb5bWro5Pn8/OjOeWEsoFBFBgwoSCwjoCNPZEW22F40RLO7NJTxS8uqUnZGcQeWm8McwrBxDm + hCPluPYOAiyFEcAjrKjDs5r09O3bv1ew9ITsjCoGnLTAASwUJyNFISucdEQLqb31QjoLHZhRdkYI + e3VLT8jOmOMCGUyUJJxyaqD3nnCmuLBKcSqcw1hIqWZUfoXx1797TCi/grgRgf0SDxxyWmljrXFM + GccYVs4wCL2RyE5VfuXjFB+IZBaeiBOZGhOiLdXWCqcZkkoAAKSXhAGrjbeCMKC4tPiZj8SZIMKP + SyR/20V4lG4NiTLYeWaFI5oA7pklUnqEIWQCOq4F4VSJibVuJMNzyISpfNe6ecCEqZg5JjwE8cVJ + uvvl8oqeXF1e7J2fna6ckCZftvDy8uBib+nyc6t/o/Hu8uWETFjyn0HCy+MkyaKpI1VFdzFfNFBV + 9AD5hpgvSvNAoSpnozKtOkEZJ83TOlV12IBJWyoo37io6had8EmowTVNGYLV+8/SPBoWTd0efTks + mjDMNlldfYpO2m6UkDmMStcrXRUC0ygkbRb+gYyOylU2rFwVuLS76WVF6Ubf5o3KzViu5/YMwsWq + A9C2ru+yohci3XFdcDo642/P7vEJ3J1dkc+QsM4t11uA4BMEAC5cqa7qhdkVJFCqTwgg8AlT9gK6 + /dItv8Ptd7j9C+A2pk9X+o7knExR5i7LPjnbTI9yX9fVwugulPSKLDXDJC/qpHamnVS9cC+ziVV5 + WrUDGU7zcM9J0pdpjoddvcPu92TRd9z9Grh7Out8rqn3IfsiztZ71yblK5uH6ytfhhviZu+8dbp5 + lA+1jZdXNcsG5/EpbM296Ph6vZzZix3JTlS9cX3Z2l5ud9d2sXXpxuZBXZ1eNhtf9m+OT7o5eD71 + xkADihlGCAOAkNUGcOOMFdQwAACwCmOEnP5biI6/zNITUm9tqGGEG8w4F4QjiZSCxBhMHJYaO+Sd + JsDNaqkv5PLVLT0h9XYaIIg8554YBrghxgivvNWcGYkkME5xLpWax1JfiKYErZ57BR4li1rgBeRK + U4OwAlJxq7XHTkmulIVEUwOZZBOX+lI6j3mMFH+rNfC3ZlYQzRyzai9d9WS/NTi0IvUXmd06IL5A + 22lCa9D9IpbP62SA8xN22r78LfrMx8Fx+yM6GHluH6O8qKPgun2Mbn23aGXku0X3vlvgToM0t1Eo + g20Nx7DpdlAruJ8jTzyIKud19L/xJxot5UF+ecSdnLNxmke1KlPvg2Bzq1TdKPxq9P2YWfVcmRb2 + 4wgwqSrqNqYd/vd/Q0ii3ftthempjBvtzLiyTn1qVO0C/Sparm4Hdegwrh4UdzuqotKNFaKNKnWR + R66bVlXwtiI9jCj/NNp+140UcOvwceGj5X00Q8jq22h9oaqLMnXVQkBKCxAujF3wOA86y86049vL + GI9d8Pj+MsbhGsbja/h8vvVbDmN+YJhpq24vLXJdFJ3qLTGxTn/AB+UbxWKEPlIl/YrFxqFy1VaZ + mm7xdKfgC+1ikNRFUrVV2XN50isLnbluVWT9kS5WJ82yF1ZNdwo+AQh7AifNCAl7YuCvQ2GOKMnY + pCisKszUURgiVkiiR0mfbIzCNCEshogJjzQQ1kwiuXwc3sI8v/He91TbZxCGoXmAYS9e3nPNv3aW + QF83/Zqd7Qz50nD/CyONNLH9oq72yJCv187zL9nB5THovErW5zQF2Aa7ZvEmRtfabaHBGuzHhysJ + vuID2WYny63d1W5zen59fAMGSy/I+lQSUuUIlAhBCqWFhAhirUBeesk8ceE/Rsxs0z1CXt3SE2d9 + YkyxIoQJAaH1GGFknOfMcowYVxxiAqxks5r1CfGrW3pC/gWRx44orSkyHCKJCRSYKwyEwFxrRo2g + kFE8q1mfiL26pSfM+uSUQYC484x5aZ3VhAJAlLfQWUkcd0QxTy2b1azPqco3vszSE2Z9QgIVUZgT + L6ikDlKsjTGeIg6RJkITao0nz8uvnZGme0zgKTHd516BR1ILBkmtkZNQO+A5cAxDjaTXUJCAe5m3 + CDirJ2+6h8isQ91uEZCuHiYBZrWKMrjOH0JgW6q6eFTR910ITKh477ZxD4EZ4zMHgdkSU/2LzvnS + 9WGxxfYs0WfXaxd93tpq+ks7yzEBPLlYYtli+3TSxEX8MxA49MGri+g2YIluA5b4NmKJxhHLP2eD + gv6xsPANmwnxVlwX8e3hx98cfvxEwPVjyjm13bxLP75LP/46hEkY+qv2cXf9aLqqNd0q9qvqZkGF + 6dXL3E3Sa7u8CBcnSfOkUlm3yEeksCyybPxEUy9DmlfVzXtu3zNz+5QRnE8KNMcNOn9FKw8IpIMc + mZgwLMatPJR28q6VBzFO+Qmw5uLoAOe0kcd3v59DScifX+1zTTiX+J7agRcnxFUFvZY5r8/wdrK7 + M+i1FdyuyYpeyfm5FyQjr0E45TQZxRnoxvsbZbZ4tb10ub215/rd82vP6YE6/3La2bGO+vXCfalu + zqsXZPhJ6BxSWHkDuVcWKsQgJ5ICzBzzxliPjSRsVgmnRK9u6QkJJ1OIGgQQ9Fx7wqhV1nrKOQOG + S8CglgYb7fysEk5BXt3SExJOaTUGlDqBsYWGWkMogIYDbL2RkHMhMCBS2hklnJTJV7f0hIRTYKAY + l4p74lQoA/YCUg6EUoIQpJ1mhnNLZ5VwCopf3dITEk5AKfZYWmktRthz4iUjynFOKbNeIoyZlcao + Ga1rl1PNeX/xE3GyXkDeemoEYBgQoLyh2BKsGKeaQkWxG6FOyelc1rVDLKaEk597Eb41s/VOaYCU + s1py6ZFjGmpoKZdWW6Wx5Ig44fHEOBn9wMSzmyNMCH/XOv2KhymbOTysD2smdNJaL1rkEB7vqC9Z + XHzZI/Kws3u+Km4O0m2DloZ7y18OJ9U6/VZf+3l8eDG6jfui+7gvpAGP477oa9wX0mhVVKVh7K34 + aRjXTVujtxfD23rx2Umn/T4iW7jlQQuYg4XQY3CBAfn8JNmf2Pj8QOPjpmy54uYN4WJs1VXaSd9o + 12cssXySGF8VTXjyfgq3oi9fhtNNfPUWLaikdqqbFD4JqhSqNG1XVslIiOKLswmBozPuFmXtui+j + xd6id1r8zLbPlhvuJqXFXWenzomNFFYqxx5UgktsSAwRdY4zog2YJP1119nUpPkbJMTz0Ov55xf4 + XAPi/Z02XTrswgb5z7DbJtc5PkX1RgGPyv3V4/P10h0cHfgh3cnA3JeAL4LTtf4xP1Nrq1/8Wrx1 + vLknjtCykIsbTnTOr8vmZOWKNIub24fPB8QeaQGEpIwCophRTGFLuQVEUg29QsIzYhRVf4sS8JdZ + elJADClXDCKrMPXOaUpAkEIFHGIqnXZKIiQJmdkScPH6c3pS4VNMACKhHRZWBBkMFQGWWMm8J8J7 + So0X3uJZbRqEZ+DuMSkgtgBQwbFAlnMgtNQESS4RFNh7DJGHSIcM5DlsGoTZtPpqP/cKPM5+5VJK + KyC32jGBFAUUIY4ZQYAjZo2XzkGAJm4aROcRpGH5bS+tvzVIQ7OXZ1lf9D/vkNO4Y1uAX5PtvHd6 + BeWB3L5cag/2XeuwPtnYubD13n7ntxTbL0bBOw5V5Q+84+jOO44IjIKXG4/d46hSgaNVkS+LbtRz + RYBqg3YRtZWNbOrsuDr9bHMlhvJTtHpTu7xK+y5SWd8VmSojq4JP+3HUkCjEIo90GhePVo4/jvQp + b1UiA61TWRb1VJ0Gt/5TtFEMXD/U0v/piLOqiApdubIf2hoNisimVZ3mpg6/DDedUel81oyUH6+a + chg2HKrxw52kV6WumqGa+u9Qj9Gtc2TNOJxEPLZkXDmXx2kem6Kf2hjK+P50XtBH/Jfsdn7A4UoA + SUtpZYq6ThF/9Mp2ruvmr209ZNeDt4kQkUBP18138iJzV2lVq/yTzopW1Svq6XJEVhULNsybviuH + gTTUbZe0XZYlvUzlLmANV7qkLEynSkqV5onK7ctgIquK92r65+JEZbk3cuLk06oui6kDRasVQ9i4 + B4mnUho0Tjy1CBri3CSJp+Hg8qI7fHPCknMBFKez0ueaKvpNZr8kl2erpwfbve1DS/PV1vmVvZQ3 + dQcuHg7A1vWFLHdQvfgqvcjlNFP0YN1dTxxvirRpOkvHxclSXfH+Ad6+aivUt0dbnR7gncOVvVbx + gsJ6o6wkIdcj5NZQJZgUgkEGgecCW26MRwYrPKtUUchXt/SEVFFqBZB0TjAuuIHEYUao9oAQqBi0 + nnkhqJMz205pqlTxZZaekCpyAZgB3CqKpeFGcUel9kJiyLVGWHukMeaGzGza6etbekKqiLBFyACn + GJGeMuOJA1oSCiGWwhuggKRWUzGPrcgxmBJVfO4VeDSdiVDcc8wRI5BD7g3DEDoDvKfGGUUpYFwo + OClV5GjmqeIUqr2RwO+Sn/cU8jul769OIZd7u/jQ6K3D04vV3eHR5cny6nZncXsfJXC783ntHA5P + z448+XJ1fTlxOh/6GQy5cudT3/WD+deHDZdl//oQjf3qaORXRyO/Ogp+9UiKM1N9FVUuNLMpXVT1 + Sqfs7EC8p7jDvSLlfSARFz4en2ccYol4dLLx6GQ/tetu9nyS9+v2PT84r9t36ocE73usYGLkF8Lf + KCpdOGryYZrw78PuSnzQXol3lxaj/4mWszRPjcqig7LwrqqKcuGppKJHG/uxnt5PEkXWvkqnSRO/ + c39/JZiIxetVsONWPv68Tqu6Cus6beVJrwhALmk3XZUnyjiUWGeKYZXUxcswIm7l7zmJ7zmJPxo6 + fwSRzoUc58+v8LnGh+fqSg5E0zncs+Tw6IilfcQPVk46n8nBfn5l2/kwGV5fcAG/gLmvWreoNcS9 + xRY/HSwlB2TjxLa7X/gGNGf7adv3bnaXTvKeUOak/RJdTgq0DclynmNNFfNSSm6cQlojBrjWxIOg + bfi3qFp/maUnxIfcW8ohkcYAIzmTjAlMAAGGSay5ApBiyLn9e1Stv8zSE+JDAyW2GnCOmdJMSYWs + VZhhjqBSmmFhEZOU0L9F1frLLD0pPkSAKekN1AILYo0AhDivCEdISS41ZQIzgenfomr9ZZaesGqd + UaKIkMgRy4myBBjLqGYYAM8t15xipJUh+m9Rtf7iJ+JkppaWC4M1B5ZzBIgGGhqgEMEh/5Zo6Ajy + Dpu/edX6cy/Coz5tXmlNELYWQ+ixdRh4j6x1hiotNTNMCaO8fONV6wjL96r1r5h7BqvWz27a1Y44 + bUw2PNu9rG9ObtaXTht5s41Xj3txd0BLvZGdLa+c0NXfU7V+fB/3ReO4LxrHfdEo7osWl1dRNI77 + gvhp7pq6VFn6xUXHi0fH8XJxFqNxd6vRoFHDqXGLqXGvql7acUEqtXZpHqV57UqvjBuh8rQKH5Rp + XgWYmIXfVmkWjibsqZ+WKou6TT3uhx4tRlWatzI3+o3KVaWyaKTCOcyUqVMT2aIatW4fH8dolybk + 8LZVt6pDPu4oQ1hFmavbKrvPCQ4V+Fnm8paboWTbvyiKd6rMhvfcHJD78Uo7ADidehX+c3f4TuTf + ifzbJvIQAfJ0W6zu1SfdvZpqRm+vqfVC4JIJFSHLb1zqkKgRTExcUxY9lwxCpt8gzbLQQueFID7s + 6B3Ev4P4Hw2dPxBP5oDDT2WJzzWJP+3vuOLm2rflzdFx+/KI717kje+2r0in2Oh1OnX/Yo+3175s + /zBg/mUkfrqNm3K4YsApb62t7e2sZQnye3S1dXm2Vg3wdnv9c8cPDrcGCepjt/p8FG+4xpY6A4ET + kFOCpQvt4SGBTCnEObXaU6z9jKJ4JMSrW3pCFK+opx56YyUAkiJpscBWayCxdlYJ7bz0RAExoyh+ + uo2bXmbpSVtkWYaUwEhaBaHQnkumhPaYam2RI9oQAB1XZkZR/HQB8cssPSGKB5wybaGw0hEkjYTY + CCiQhNYYh6FhBlMJlZ9RFA+nm57+MlNPyOIRIR5IhpwjhhnklKbWOKc9Qpp5pIB33kvgZ5TFQ0Je + 39STwngOtYEo6E1DoJSQNLQjc0Q4jKHFlrOgx0AgnksYzyiZEox/7kV4BOOR04AQIYyQxBEmEJXA + Ma01h8SF1obcKgns5DCezCOMhwiSdxh/B+OJlDMH46ulhC0ub7khX9zPDrYuN886e8P9xa3hKR4s + 09XLzs5lc5ocp4NzMymMfwzanwPj94P+BBX/GTj2rZbFOPqLVkfRXxSiv+g2+guUvOXqSH1l2X1l + QvQeFblxUVpH2pmi66pI9VWaheDtYwTZf463covyP45YPLr/tKhH+e357Q7GW1S1+xQdN6Yd+Hkx + uP80LfJA7XtFXrnIFE1mo67qjHbtboxzATZlw8im3qemyUZgv3TKtEcvB9qutFHa7TZ5Wg+jul0W + Tav9cNszROQfIL3vUnGwgPhCCK9bpbJdZ6/i8HkMsZAA//PkH4unz4fy09/nXCnmunhZlXVR5GlV + E4DQG5K+4O3+lXDD1puUviASIPokG2+6unRZpgZlGt7KfTJZo6cHyb0hC2WRuYDPbNFT3TR3od49 + qVxZ1EWe5kl4cNSpT51N0vxlhNw/qhZ9V7z4S0bOkJAWTsrI205ldXvqmFxJQQkx5AEmV97zGCIJ + MBLO+kcdtr+HyTf+6uje9S5+GST/6SU+14T8eBfCZP/8y9pxTM3Obgmq5PQYnR4qutMumqV1uUPl + an1hVhZfpcManyYMWB7s8NoBs7qW9avDbTocAJdtNzeD00GR0BRYJNpp+3Od3YiXAHJpMeYES4+Y + QgRwSgTmRHttqWKQceQQRGBWc9UJfHVLTwjIvYdKKEaF8ZgCZrSynLsgDuAotIRgC4T1fmalLoB8 + dUtPCMgR9swHQk48tYYryahAyCOtuadWeRkaiqLnvfT5jYCcwNe39ISA3APuPQWEIwexBERrL7XA + TjI8ouYWKCewp3ModUH4tAR0n3sFHrWiopxZJgSGo9uHUBIiakMnO8m4ps4pb5ngz5C6YHMpdXHL + 5yZgjkQCTN+Z4x1zxHz21Haz3nqfwOPrw8v04PQzs9X+6nG+vg5Pcbp1fHpUrKw4udeWpF1uTsgc + JfwZ5HhUZKO02ZVbV3qEA4/vXOlo896VDuK0G6Oc4ANXGtcLzuPs8LlAB76HFu5Rmbvpqdw6G4fY + oYq/hgixL8r4LpB4obbFr9z7/DC7c9UKUry/Mp/2LpkWfvitgO9Xp8m2Go/ZW8yTJVxC/CQLHN8V + 87r55GzzqZqeZkWPt5qHFe1t1XeJdX2XFT1nE5Vk6XWT2mSQ5rYYJD2Vu+xlKJC3mvdk2eeBwNC3 + xthJQaBpu+7UMSBiVhsMREysorfKt164W+VbKAQkk2DA5bbrplVdvj3l27lIl53GIv8xDJz8bT/h + Er2/7f/qeWPyuz1v67xqsker5nuFbmGmRPczJbzTHs2UaDxTotFMieq2qiOj8tCptclqlbuiqbJh + pMM6HBe3Nfn4hXarCfeWqBr1kwjVaVU3raq0yD9Gg3aaufBZrzd6o94ezeuo7VT9dQ/aRaXLnKpC + n4jb1+BhB1YNR+54Hu4aH6O2y3q3r+VLZxvjIpe7sjUMvWWrpjvyyIOXrpu7J9fMuOffPukX9tyg + Ohqfc7VwEJj4Qu4GlXW1SrNPqurd/DP8/Q/oJFXC2JgIjWJirY2FlSzm2gAAsYPfqbv4a3/9tx7O + /DjwPVWqvEjVowy4uW4zwepO522+aGeI8L+ShZu2HFzRz9GCTouWy6tEZV/aLu2G7pW2bFqJUblN + bfCzatVxVaIS7VSd5q0XOddhV+/O9Xsl2ttyreEcuNZTWuRz/abdubOt7frwcw7k+lK8FHfUsUA1 + r+F60qLFUp+5nbXtU3mo0OXct6pdFdvwrP4cX6F15tdXW8sIDvCG2zxky3Zru5SH55dX9uIs3byu + nv+mnSAFrEDOYCcJplAi6Y0xknJAJbNEIaeUoDOrCjfVVrUvs/SEb9qRZ8Qyq5lWmEAqHYOeOcSx + 51Qzbz20SjlH/hatal9m6UnftEOktWFOAMihowpoCQXGkmisrQKWSylCX+a/Raval1l6wjftRlmM + iQbCA2iJlEYz4hFk0gAmDLIWUMiJJDNaikbJ61t6wko0Jx1yWGgDtUWaGk4scFgrjDGWnoYKQGMQ + djNaicYAn4Un4kSmVoT4UKHtiIPec6y8YY54jDhhgAnJCfRMejKPhWgcTatVynOvwaN6YWec4IBj + 4iGTCnuFDLeMKoqDTm3ofUfE4xdvT1t4LkXhCENUvJPpOzKNHifIvHpOCIiPO1srRtn+/vbhMRHK + rF3i443WodxdObpU2drKclf2Wy3Ed39LB+alUeT3rwYBKKto8S7+u/sgRIHRfRQYjaLASEW3UeBY + Z21tZTFStp9WwfQzlSXyjcRZwLr3ymbjkDeu4vuYN67icLrx/enGo9ONb0829lbFT53nZHkjv+94 + 3qu/3qu/7r77dVAaUwBep/qrMDe9hVapeq4fakJMO+0lTeWSNE96qqxTk7lEF6p8WZ/jsPX3qq/n + 8mguDdZ6Uh6t0+l3OVYmCMYYFBPhb3M9BIPiubkeS2mRFa33HsevgqNfvLDnmkBvrMdLZtstrYq8 + vSYac3p4vLQdY2g36ithe2T9dOdojTZrQ/UG1NDoMgHx1YHLjy87i0trzXa6vp1tiRvZ61XXV+yi + f1mer2xdQ0bIC4q9oBGCA+UpUQoDQg3zGmrCOPcAI8so5IISO1UE/XvCbUTllMLt516BR1L3JlRl + IC4s9d5bJxRRHguKBCSKU6GJI1IDPHG4LclbL9fAFML30PwuNAffVo/OQGjujjeMWoX7y8MqW+r3 + Nw9WtlvHm10BaO+kfXlj9vApWdw8xN3z3d8jEXP/GIzCYzBqqqCIHh3cPgaj0WNwjsoy7p7f8ejA + 48AO4vtTjMMp/qqSjBfueZ7KMbzP3Ia6edwjeY6DZ9azHXWVtd9m8AzwjzK66sYOfZrbaqoZXXlF + hgujbSdNruq6DP0U+i7pujzJizoJTkLIp64S+/JcrrCT9+j5udGzEkZwNWn0nAeJ6KnHz044FxI4 + HuRzCeHUc/O59sLBPeE8vAfRvyGI/ullPt+6KSe96714aMnR1mGyLHY3st3r04Mbe9NeGhyhm8sO + 3iY9d5Mx3HoV3ZRpdp7sb9/Y6+R0ba3og8366HwlvrzyO1V3bWVvb3+lqXy5Gx8e4iQ+7jw/lAZM + U8ohYA5CpRxDymuhrMAOMCsBBp4CQwGcWd0U8uqWnjCbSyhNvOdaGE2MoEIBJQjSwmOhmFLAUgMs + ml3dFIhf3dITZnMpJpg3SiuHOWUCGumdZ8xzH7qqCmu05k7z6WZz/R48hCGfEh567hV4lAYKIaRE + OOmUdQg7BjlmhAjIncfaCmEVQ9j5SfEQ4fSt4yGAKX/HQ7d4CEs4ewrCN3ttv2ib4d7xZq/cWa/z + xWz77MvB+XXVO4rz9bOtA1225fk62T2dVM0D/1Q3v+Df/RGdPnDwol2XR3tFHZ2NHLxosYr+a2Wc + qbGralemKvv4X9FeEf6qXRltFINoPYSmoatfWga1j6rIVZbWwxlL5PhTOLzw0KmNuy6Px25s3L09 + yXg0fuGFSRpT2df8sKOlzfVkZXN5Ozk+PN08OlrdeVPpF11dAq7eJEHCkj7SA/pKkMrCtMONsAx1 + r9MDSDnJF9K86qXl+HFn037oTqVdliVVLw1GGCl0lsrXVdDt9GnpXoaRcpK/lwQ+CyJNAwj9lfzN + DCIZPA9IZjoLZ67BzHZtVw7Sm8/5ztXq0V7r8Pp4tYv45lVPdYedpsjhCquW03Ltpnv4KmV208QF + Z0X6ee1yJdlapXrzKNH1cPccr+erQ4/QkTjvxsP2xe7J2kDhFwjaQowZEEBj47inBEppAreVBBPm + kDScMS+AVzNbZidf3dITghmpJccgaE86iJ2WVmNKBfYKEwwtVBAqKCGf1Y5vUKJXt/SEYEYqKA3g + REvlqeVaCsGI5VQTaKCXDgEKHRCzKmiLxevfPSYss1OaEkGolpRLzDmgWGNlGYRcUUQdRNRDrSie + 1TI7zl7d0hOW2WFNkMKaQ00MlUQijJgliFslvPHhDiKYxQxMtczu98BGBqZV+vXcK/CollFAZA31 + FhGomPeIchOKGDnHVmhlKbLSYjJ5CzIA5rD0C0sG0DtAvAOI4lFV1OsDxLOD03UW470y3z9fzDdw + fakv1k8k2eqdpd0UyNN6SyQbF2Zrf3FCgPjtM+d5AHHzNhqJdGjbFaKRKEQj0W00MpIjG0UjQTM4 + RCNRmN0fQxcwp0rTDmNG8mq3bCJSUQi7syw1UVWXjamb0o2Vz9IqqopoEJBZVLqeyzKX1x9D77DS + +aZyVRA6q9K88zHKi6g7ppPtYhAVvnZ5GJdWkS9KM9Imru82VYwHdUO3svEYG1RpnQ3f9Jp8dAR2 + pMxm2lFXDaPMKRv21eRhbyHgiap22huf7MCpcvSRz4p63PHMun5qXDVD3clGlOYh2xmVkRmX165c + qJqeK9tDWxa9dqFTE48uSDwo8joOJxwTwBBHLySjU9/t/EDSFadsmlepdVWaG8fBG4KkuCqzISFf + 3iYkFZQ9DUlzFe4Q4e48PULaqtsLKh8pUCY2V0np+k5lVdIt8uLLsFXUqUlyN9BFmSf1IM2rl9HR + 1uOmVO909C8E07BCFE2aYqfyoM85fT1ipDTDXMXBSxnXqGmB2bhGTQMuGZkkx25xdHS9t1moxuYB + 6P78Op9rmOtTcCx5N8u3FxepWx3uHQyX3PDI4pMr5y79sDk4PD3buE4XD1ZfpWINT5PHrOWD3S26 + sva56TByk1wcnZRrh8dZvF4Nd9Y2j45b192TuLZHYmX3+TRXMIG5VwBwCJEGHiFqhQMGEQ80hIRR + R5CTaEZpLmLi1S09Ic0lGhBGseYAEkMQhIyK0FVIIgwgMhoSygzxbkZpLpb81S09aZod1op4DRF2 + VnhMnNNIWaqph9QCwwg2SEI5j2l2TNApka/nXoFvjayFNB5hbqTGBlsNlQRSWuiJR5YiZymQEEA1 + KfmiFM4h+BKUvxdWfgVfZPYy59YHN50VcUWXy/3tmyFtb1/Ux2xxJds6WR0cq31zdLx37fu76fFV + 6/cUVi6O3bZoZW8xunXbogduW3TrtkUjt20schQ0+k97PVdGBypTrsjSup2a6H+i5WLU1d6MeFEV + PaEd8bq86GuYu3BbCVktVAQBgOPQRR5AzFEsXgaFXrbt+SE/XWfaQZ/Iji5sUCiSbylBrtA3bZS9 + TdF8zAGAP+hIZdoqLNwMSommy4BYc72QpnXSHlpXKq1sknetSbK0m4ZjzFSTB5Sa0GToVPkyAMSa + 6/cqy+dXWYZ/J0VALm9Nnf8wJrkzCj2ssYSCxhBZIjxhXHI9Af9ZzVtp7lyZ/vAQ30ssfxn++ckl + Ptfsp81pdbTUypv4C9zXB93r6wtgl/LjS2v3Nz+vnaa4bO+1hlvpCngN9iOmqeKO6quDlYuCre9v + 7fDWDQNL4PPx6la8vOvPB58vyp3FreOk3Wtvrr0gkQ9YaAzRWhtlJKRaacOpFRRw7gS2CIQKNQJm + Ff1Ahl7d0hOiH6Ogxco7jzR21luANSJaBvl25l3IOMMCQ29ntcJyqtriL7P0hOiHAEKcNlQiraHE + WnpJEAfUYuKsERZCYRFXcB4rLKeW9PTcK/AI/WjhFIUMcQesBZpbSIlDREiCDFTYECnA4+ZeTxqY + zH7O03crLENAUKr6sezNd1ERB+8aXF9REZ/BHKl0+XxJbfZ0qvT2atbtJHA9yUFvN75OzuvFfKuz + fn18dHwhjw47k6IiQH8qSWrzJNq4c/Gi0eqL9nZXlqOdsaMX3Tl6EY2Coxdt5qbR4+Sh8eg1Fxzf + kGUU9cqiVarubMGhx3HwvSZ1mtbxvX8bB/82vvVv47vTjulIOuuf3X/Al/GjX7b7OUJMjW46TRAk + 66k3xJZU/6b9NrW7MBWPmt5+BUt11XQarT4p8+mqNzWm1P2iuwv1oEi6RZ32RzeYcNMo69SnJlVZ + ol2Yk4kqXaJdSKB8EVYKu3nPK3qHSnMGlb77/Z+pEpoDqjSFRT7XYKnVXswPh0gnw8FSswagbseS + 7SrMN1eutpKdGJnB5dXiVg9tb75Kheg08y+OP59fuNU9tFG0LtnBWS76Bylo7x24E8DPxX5OmlpW + TbxxEL9Eukt4wrlWUHshMfbEKcixdZpqxxG3QjnhtXOzCpYwfXVLT5pTFG6wQkjGpMeUekMBRxYq + CwF0DHmEvQeeoFkFSwC8uqUnBEtGWMG1NJRjzQ1EoZpOUMeh0hBgopninhuGZrRClMyApSesELUA + GSC91ZoqKJREjBCCPDfWW04w5xITrzWd0QpRBuCrW3rCClEgWUhF9BBQwQHhGkNDtHBCeEEMJBZB + 6QC181ghysmUYOlzr8CjW7SAFiPIJUFWAc2kg9ZSj6RFmliDjRGUIS8nrxDlbA4T5aggdPr087sE + cx7wJ5Oz14IgO1iDAFzsr7v+rvrcsYcivVS7W02NlGq2krPrzV5xhg+S68+rk5aI8p+hnyeDItp9 + EIpEi/ehSLQ0CkWixdJFS6NQJJR65tF+7kKlZrSat0N1RN6Kdpwq8zRv/REdPagcDQpr4+LQXqnS + ykXWBWp2W486CurHVZn9tKwblUWqFYKkKO32yqLvQlGqz0JvhOx287NBVW9pzp8Y0ILLF+6KZuMQ + Ky70AuKEEFBAAHgeN53CDuaHjC6TjkvIG2KilHJK6gF8o1iUoKfz7W5v5aFseKo9DbqD62KhXQyS + wE3SkIzrkmpY1a6bmLbrhjcLVdJVw6Qu01brpVh0cF28Y9FnlltabribFIt2nZ06FjVSWKkce4BF + JTbkuf0Mdp1NTZq/vV4GcB6Q6M8u77kGootHF3zxOre7FSzbWxfZBV0Zbmd6sflMO7Sz0twcXaxk + sSkGr9MXkE0TaYCjxq3Yay9uOvs3y4s9uNeGw92b5RN/Dg7Y5dXVElpbTJg8W918PhAlHjpEDSdA + aswc4ZoxCzECimBDgBHAa2+smFnJPPjqlp4QiDJvpQvt7qwxTGAgNEKMa8cxItJiDrWxQCM1q5J5 + 4vXn9IRAFEDokXJIc0mZ054pwUTQFfMAQiglBwYZwsisSubNwN1jQiDKgOaMMomdJEQaxgWwKqSR + cqsF51IiozhHelYl88jrW3pCIAodV1gzIp2h3kvEAADAQe8sR5oCKJVhnio/h0CUimlljz73Cjx6 + k2KtsdhwzrlzWAMkqUJaUykloEGHRDpIkXGTA1E8j5J5lOB3ybyvPFTgmeOhwybu55WxsrhZjstk + 6E4uszpO+Pplcy3W1wpL+/XSZ7C6zIoJeeijnNdn8dDQMKMeFNE4DonGcUh0H4eMJOZu45Boef9s + cyWG8l8NAlBWkXXKZsPIDOuiE7hlVRdlt5qxPht/ZjR3Fb0LpuinNoYyNkVZ5Kqflk0Vj40Qj40Q + 3xshHp9ofHei8ehEF1S3988kCOEEVJwEiuuqKi3yf4T18sJOHTNytO889Z2n/hqeiql4BZ5q8IJ3 + XZW5RKetluq6pN0EnccxZwmSn4l2Lk+qpuyVaZXmrWz4Qqpq8DtVfRexe5MidmQu4OpU1vqPEetz + PHLMwbtHfu+Rc/q7PXLrvGqyR+vm3gFeG82VSKetOEyW6HayjBzfkRZ0mCzRw8kShelW5FGajzR0 + bhUTo8WuK1Oj5sT/HS+R0SnHt6cc355JrG7P5Hd6uNM/nvnxYVVVl8WV6rj6DfmxwjhpxVU2TT/2 + O7e913FjsXxUg/nVjVW2r/IgsX4717uqNV13NlftBRWUWJNxR/SqXQyqJGQeJV11VZSJKk3Qai1D + 9tHLxJjDPt792Of5scYp9rgx45NFU6qs25VJp+7JUk4Zs9Q9rJzyxsUQSYCRcNY/aoTz3cqpcHzR + 8fd9gbl3ZeeidOon1/l8d9ZriO1vpGw1Pl5NNtGX/S46TE9uVuu1jYN8hfdFvnKk+ulG94S8ihgz + mKZEsDn8bA6KFScHpmq11i431vbXut3tYd5JbbV/gy46F5cq3bnoJIMXtNYLdTvEee8NV1Az5Lix + xksBgzKPwgB5RhWnsyrGDNmrW3rCPAFkpFWYSK2tkRJ7TywyNGRkWMwV54R4rhjysyrGjMCrW3pS + RR6rwws/a7nmQnrAnfdYKUE5cogyxTzyUohZzRNgBL66pSfME5BOEAuBZxI5xaxXUlIptLdeUxVa + vlkDOQNyRvME5FT1vF5m6QnzBCgTTDCHmOVIUoE0ldgB4gkCVGtisVLQC8fnME8AAoqnlCjw3Evw + 6M7BGCLEWWYoxcx4Y7DhxAMhOcecWwEZJgzByRMF6DwmCmAJ6TuWvMOSj7vOv36iwN5pf3Vz+/Dk + vOU2L832+dZOD+zyZteu7mx+7rnlncZctnYpQWLxN0mMBxHxaBSJRKNIZFzrNIpEosVRJBKNI5Eo + RPZlqpvaRVXaykN9lcrrbBh1i9JFbafq0LEuwNPb3+0bp/JxtVXddqF5X+iKF0EpwKfoKGx0/Ku0 + Cr36ekVepaOudkUZNb2wLQj+M/T0C5sc8daocipKjYuyoro90MKYpgzFWCP187Dp8EMEII1CcDf6 + bdV2mY9K1wpiV7fbe3iIM9Q17wnKtHBLVRbYAqELTmlDmJTPZ7U/tfn5Qa/upg61d+VoBWdF3X5L + SuiKZiKD7G1mEiAI+V9lEqjMlfVUddC7ekAWHrQLHZOZNG8lKq9vcUwn/NlzeatJ8yppFS8DsHpA + 3gHs8wAsV0ZwPnkiQdpV2a8gsBBIBzkyD3IJlHbyLpeAGPco2/f7uQThAN8sguXzgGCnsdznmsOe + HrAVdL1+WOXJYub2D3o3/X20nB32d9aPV9jS9dHVoHXU24JZXbwGhyV4iuH9yW55fWh3qu7xDtE7 + 1ytb1/Vg8fBqudsyIlm2F4VEl0fXxcZiffqCnnjQAQychAwBqYVmFgOrBCQKKIEEt1QSgMms6lcJ + /uqGnlQX3TDHCFBMAuk1pFAZyK1mDkCNkBFcM82BntlqLSRf3dITUljsuMPOKKoJoMIJzbDlQGGA + BQeIGGUZ1R7SGaWwiL6+pSeksM56Yr21UkgtAaAiwFgvnbYeUy+Fo1YDhNCMUlgsXt/SE1JYL41B + CFkkrbKGSOgp09YB6pAhSAlPueUAgDmksAROq83jc6/AI9RNEHJWSuMdVJJLZD3ggDOsIAeMUqAY + ZfgvS+IePAcRmUMIiyAS7xD2HsLC2RPv3ym6S9v7a8vrl1jSqzqW3XPXXJ9cm/zUJlcnddGYi88b + 6ZYVZkIIS9nPMNiHclN3oUi0eBeKRCEUie5CkahVRP/6YBrTKYp/fRhTz4C7XDcoTPVdFgSnojyt + y6KpouImtS7I+dvGjAWr6rZLy8iWRa8XYMUMoc8HeaT3hOdhlBZnRd/F9xFafGuRuFcUvbjtShdX + 8aA9/KkE1mnueH5w6bEpmroW4g1RUgirdn71NhkphN86Xg8YqU2HeTFlOkprsTBoh4Y2eZ0Mi2Zc + bhF0bmza7QaAMno1VGRZgCZF7l7GRmkt3htFvmv6v8FGkXORl/rzq3yukej1qmh5fUK+JJd7Zbpl + ti9Wi6vFsxt7VK6WK0N9tb3RA4nZ3dfFG0hNXdmiBGx87i53TWfXI9Zu7fhir3eyfLh6cPpl/+ZQ + HeZXp/s7Gy+QsPLcUC0hINQKgg0wEBJpQroZUhBQB0mQWzJgqkz09wTbaGqN9Z57BR6xI801p5AZ + YZURGChBtDPEYG2g8AJzgRAAfmJpFPS3aKwX1KbeY/O72JzMYGO9Jsu52rrc3jxfXh0ciaML2z5s + d46WNi72Vjev+7y7mlz0Yvf5Wle/J0HqvD2MjMr/q46GRTOuHQ3KKrfPxOjBMzEqgspz2GvIclJ5 + 5DJn6jI1kUlL06T1P6OVwoW8pbSKqqLr2sUg6qdF8KWi/Xb3v6ooU4N/RptR5dztqDp4/1Hha5dH + uqnH+8+LOlSrukiNnIhIRaNJMlK8jtxNL1P5uLFfyKQatIfjbaXVKPHJqMrNWNT/NWZZsOlwoW6X + Ttkq9BeKb80cF3lc5C6+NeQnCJDAcOFlsf7Udvfeue+9c98vCvKDntzTEtWZC3rqTWdqIX6Gh92F + dtNVeZLmtcuytBWGJFdNVSetok4yV1VJN2gSlWnRvKz6NOzkPfnpueG9EZNXn+au+QUiKk44p4AV + DwN84dRz1an3wsFVbzTtCYI5CPF/epVPSz8FMQB/gaLh3LZ4gZzNmoDKRpgm0cNpEoVpErWKOgrT + JPo6TT5Gyphi5LCE3Pv8fp3XaVVXf0R7bhDdvU4ZJ+3r0qlOFQ3Suj3ySXuqqiOf+no46k09foX1 + YDPBry16aZ4W+cdIla3GjbcTfjtQw2gwVil0Udd1izJ1I2e344bhcLpq9P6s/fh8qqYXTqAcVy2E + WgIf3aaPzo5/fPeoXwjaKuOO03nRd13tyvFSjh+e0/Md4p/b/vx4wNoZk2ZFk1ZOsjfkArd50e68 + TReYUoKedIFHUkNVZzjVN10ZMHLh640tKZVNiyQUO6kssa52JhxjeOeehHtXmid1+2Uvu8Ke3n3h + Z/rClvvHVnuyECDIL03dF7ZaMYSNe1AEIKVB4yIAi6Ahzk1SBBAOLi+6b09NEM+DHzyVZT7Xb7uO + sK+20+7pRe8MLX3u83SbX8qzTtE6I81iUas+T447u+vXGm7Ofb8Wub3YZvn5xuq+2LkefPH2vDrg + 191V1hyhld2V/ZXk8mD7+nrvnIIX6LAohiXQihkoCYaQagCdBIgJZKyHxmgInQfmb9Gv5WWWnrAC + wGLjAUBOEEMxwAQLTa2EFllNg5oF5MwaLOzfol/Lyyw9YQUAZZgB6AFx4VHnDKTEcAu94YxhjggG + khP5yI3+oaXntl/Lyyw9YQWAEgJz6AwDWCLDNbIYKAQdlBRr7QzGihJv2N+iX8vLLD1hBQCRllGm + KAoNW4iiBgKNkUIWE4oZxMRow5TGU60AmGarcD4LT8QJiy0IJjYUDTnMYejTAiFyI1YMoOOaBL14 + QNUzH4kzUW0hp5YA8txr8CgBhGoLMWaeQkCktVgCy5iH0mDBlORAQ8UJxxNXW7DZzwD5DkmmlL73 + xvkKkgmZuYwOdt0iJ2il0znfLJa3B2Ltc3fF7ar9y/bO4U5iLDk/3Dm4kOlR/Ht64+zeB37RKPCL + xoFfdBf4jWsqxoHfiDDvpllnGJ2r4exQ4Yf0ayGg7+GDeDYenVY8Pq347rTicFrx+LTiuu3ibjit + eKCGMUQQEYT58+nx7zmO+aHMS5vrycrm8nZyfHi6eXS0uvOWhGfaXV0Crt4mbCZCPK39XRamHW6O + 5Sdnm6nR5k5Tk4U0r3ppOc5rtGk/pFZrl2VJ1UuDERIVnkvK11VS+MSn5ctwc9jVO25+Fm6eBjp+ + CHCtKjtzwG/pHPDbKS2c+VbSru3KQXrzOd+5Wj3aax1eH692Ed+86qnusNMUOVxh1XJart10D18F + 4JIphqtnRfp57XIl2VqlevMo0fVw9xyv56tDj9CROO/Gw/bF7snaQGHxAoCLMQMCaGwc95RAKU3I + dgoxLHNIBublBfBqZgGufHVLTwhwpZYcA2+ZcBA7La3GlArsFSYYWqggVFBCLmYV4Er06paeEOBK + BaUBnGipPLVcSyEYsZxqAg300iFAoQPCzyrAFa9/95gU4GpKBKFaUi4x54BijZVlEHJFEXUQUQ+1 + onhWAS5nr27pCQEu1gQprDnUxFBJJMKIWYK4VSIIlmNoBbOYzaOEC5saVHzuFXgEFQVE1lBvEYGK + eY8oN1h6yjm2QitLkZUWEzu5hMtcQkUi5LuO9j1UBBLMHFQ8OzhdZzHeK/P988V8A9eX+mL9RJKt + 3lnaTYE8rbdEsnFhtvYn1dH+9pnzPKi4eRuNBImVcTQShWgkuo1GIpXbaBSNhCTTEI1EYXZ/jB7I + jIxru27ZRKSiEHZnWWqiqi4bUzflbdLrqHgsGqjalVHpei7LXF5/jNI6Kp1vqlBgFphm3vkY5SH9 + NXTVi0Kp2biKLB1twRdlEIRJ8/puU8V4ULcx7dsxVoUYxYZvek0+OgL7MRq0U9Me9VHMnLJhX00e + 9hYCnqhqp73xyQ6cKkcf+ayox9Vo1vXToD09W8Vnf2I7I6BpXGhUuDBKD24Pg1ROu9CpiUcXJB4U + eR2HE44JYIijFxahTX238wNJy6aqi+ItNUUEN+yN5uBCgZ/OwXVN6TpjyaRpdkLs0AyGFZHc3RzD + Aho9k6pEJb6oqjRLvOqm2XDUNu1lRJRm8J2IPjMBFwhI/f9j781721ayde//z6fgu4G+5xy8UVzz + 0I3gwPM8z373C6JGiTZFyiQlWca93/2iJDtJb8c7lKLEkiM0ujuxFZFcZLHW+tVTz6orwO2o1E1f + gOsV5ZZB8vVmNIb0sA+iBMAGilNDgHsUTi6r3mdH73nYi/bDg3yu6S2UW4NNf3wzuNSFqHavCgMG + ElPC7P3hWh8n9uxgG2ytXprTN5Hf8mmSrrhw6ZnWW0cHx7xjH0GvfdynvUPVXl9LD1ZO7s3m7abZ + 3Lg8Ta/Hp7fIIhCYgPJOIKeFJyKobgFgFgjLlNYUGQj8rNJbQt480jXprQgyLuqRQ0ACHLxmNGSI + WKeM4VZCTBxSgM0qvUUQv3mka9JbxSyQSiApmVOCMSs9Da08IWUaSI08dVZaDmaU3hLE3jzSNemt + VhRYia1l1GhMFVHceWgNtIA4SDgNvJFjP6P0lk1VfjtZpGvSWy49V1YRbh3nRDtqmHAEIgE1BtJ6 + RYjSEpsZld9y9PaRriu/RU545aQjTBGtrQpE10oovfMYIqYMYFhqCudSfsumRcrHvQcvHmgUliq9 + UxxqSASEmBvGHGDaCq+VIpyGORHVJuWEzCMph4Is5LfPpBwJ9maGauo1Uk4Gvd6eO+4eP7pi97C3 + c9g6afDL1n7vOt+g/QNfdW67x/LkJDkCNUm5xD9Cyv/NDeJzzRepaFTzRaOa7wl1p2m3nWSqciPv + shFZCQg9ODeUZW6VqQZpGTWGvw7AohN+21bt4OLw9CWZSbvWlVErL0oXmHsryfLgWpHZqFKdpCg/ + RttVcEkPcKSMkqwMV1pG+Uj/O7J4Cy0wE5VG911XVk+NJPvB/Tt8pnRRK8994PYjA4nI9fK0F3i5 + yYfHH5pjPHlWDCJV5KULLnF5EWVOFVEnhCSrIqsG0XYW7t1sUfJ/R31Lna4OL1CnSjcyjWhAuFT5 + ZiPxJYQAI/Cx0+pMRsancqhFr8pFr8rR734iG2f8dclwM8+bqZuqO8Ud4dkv6VIZDrRg44sule+3 + SyWbB0I+jeE+15S8e1Qd0JX+ne4c2n2X7DwuH1NJ7jtl7/TsodnwEh3DrWa1tZw0575L5d5VY2vz + 9shkbP8BsjV5mhx39lSRHQ3ur7K1+GZTtu/hfns1fpigS6U3ihunmKUSkdCsARLgETeaa6cMl0Qy + wSFAv0OXyskCXROSMykhYMJRZBxgHoFggA+1ctBDQo0VhGLPqP4tulROFumakFwzogOfhcBZhCHR + nBvIiCVcaAsYtIgB5535LbpUThbpmpAcSy8DU2QQa86MxRIaqABAWnAmNdScaGSk/C26VE4W6boe + FURDgyjEWnulhRJUa+6NhRwj53kwZQFYjfeafnddKse9A9+wEaIcOu4YNIZgDV1o2IihkV5yq3Hg + 5dg6/L67VCLIBFuA28/glvKZkzhXK2a1JZZ7LczgA0h3djf6YmM1vtvXlJzg3i5J8JHaWuvHK/1F + l8pfCkO/sJ0l1e4sldPqIBm+bTJm+ivPaCE0XgiNfwJMRfTXC43BXb6kQuSSEb7JY5N3UxtneTj/ + nhtuIq9UejcZRgV3+QKjjodRreWGu7oYte3s1AGqkcJK5dhXAmOJDRm328W+s4lJsnlDp9/8/b+z + UyLmAZ5OPrTnGpleH9xJuMU3DgY3Dw+7QhoYb+3f3jQu1PXNStNvLecX6f5e82QVr8+9r2/n0a6h + 9nl1SjaqfPP4br1Ay/f49OYM7lRtCtjm5cXVBtcV2e6Pj0wJJsHLG1BhnZJUa0CN8tRRBKxGQHip + JSae/xa+vpNFuiYz5QRwS53UmBmPtfXKWU24khbT4M0BpLBccvRb+PpOFumazBQQTw1jXBOjpRl5 + RjKvmUCUEWy1BUgrO7PMFM/A26MmMyVESeKxEJ5KSrTCimBNONPYEiCtRhRapGZWWDxdX9/JIl2T + mSoKiOPAGyy011xAQjlD0AhkKLMKUw4QJNz+Fr6+E8+I9TTcgAUvcM65MhIrgK3kVIvwd8IZCAsw + nmhj51FY/ELK88vuwUtHGemcYmGXjUSGAGmUIsAooqx0iBpOLcVGmtp8eg46O3+LTyO2EBZ/4dNY + zhyfXsO92+XH66uDbG9dHV9tHOcbabnXEJe7vnd1R/bBdpt0tMxO9P4v8fVdjp6qvajfyqNhtTfs + lByqvSetb3oXlZ08q1Tm8m6ZDoYNksVTz7myUkGEGRwtbB4sNlRThT7OPrhjaBfwtrLtJEuCa8PQ + oaNMnesMsXeSph+js5aLyo4zlTLdVBXDfs0BLuSFKgaR896ZKuqrMuolZVelyaOzoxZ4uggHKo3K + yg9Rc+Qe8rUxiIq0G7p4dLMA5iqVDeXEuR81drZJmQdi95/l6APpkMwP++d1WoMyCZucE6PSQNiN + K8uZs+D4vuIXLBXdtmkopSAA6Oeqi+sca34Y+Gm3cI1VVVR5Hp5cAhB6V57EvVvhBs13ycSh4H+t + Lb9i4t22Llyaqn6RVK4oP5q0q6dGxm+9S5cK13SZG47kLJio5p0gOcxc0XNx1SrybrMVh0+E7liF + 6gwmguThSDUg+SuoeUYo+Ssf/HmYnCEhLayLyVtOpS/3FfwwKVdSUELM11Ycyns+tOLASDjrX/ge + fouUb33v7BYmHD+Lkk9nmM83MAe6px4Pb3khmvfN/k3zaGO3WtmK1Ra7VvHKflesdkF1ou8fl98C + mNNp7qXnp1uqaKCytQ3zlZ19dqvJxurdYYnPb+nJ6uHGcpKlx+uti8eUjA/MgeHEKem1cZo5ZDyT + WEooiZAOQ0UZNlwLz2YVmE/VH2KySNcF5ogrSimhmmsOeFiTUFpwpwnmSmPhFbCWWzerwPyvm2Tf + INI1gbkHxABJqMVYWW8hhphJ4xhwjEuDOPTeUqhnthEefvu3R01g7hhm1knrJLcQIUUoE85qgzjX + EkLPjLVeYjurwByQN490TWCOvGXGQGKV5AxChpghBiOEPCKCemc0VchgMKPAnDI+CzNivVAbQbD3 + AmAJkGcUUK2dc4hK4JhFnnskFIB+LoE5npYTx7j34OWyBBTccyIgNoYqBblAniBMpYAIGEScwkxx + 9Z6AeWCaw84nRlWumReDodxxRKJr0HUouIQLuv5M1xmBs2fbQVfOyd3G3bZ57CW9ixh2k43N8syt + biPweF2i81RkV1D2jKhr28Hxj6m/v1SJgTwfhioxOghVYvRUJUabLnOBgocq8Z/RcpS5fqQ6nSJX + phVV+ZAuR5up6pq8raKzZ5Y8WzD6W1xtSIaXIPy3WrmR+8awVm4Ma+XGUxQ+tqp2Ohmb/imHnh9U + XbrUmSreA++pax7lPZxROXifhJqgv+maF+7+01t7qj4Yie6kS5kqVewD3U0HcVvduXJIeZWp4rCm + FvfygWq6IkbxcAFvIjYdDrRg02O7RFvujazthFFWxfRdoq1WLPSu/8oFQ0qDRi4YFsEg7azjghFO + LsvbC4vot6DTUxnnfw+nx8qvw7uxUFVe1EqxCZKLDZafU2wkf3mKbZ1X3fRldvnZiG75dDl6erKi + 4ZMVPT1ZI1XGxejJitCTBCTNs3Ain5tGp+EMgocbBiMFyWzlsX+ZfYf7AsNgagwvtfF0qY2n8dNA + jXB9n1s2Dy/uB1LZn3X0+clm2860gvDCjvQ3ZUXkexJe5PqhhdL3uRkRYvxik9OXtDbcWJUFQRWU + Ek03s8WyWOoU+W2ogzp5mQwXFOOhqiu2ZRX78EcbP32kjCdsfhKOs0hsx05sRfhP3cTWZc2pp7WM + yeDehL5ufgIFbUBkifCEccl1jbR2PWsmmXNF8renuEhsf1piO4VhPteii8HqvVjek5tQa1idZWfk + XLt47WIZH902/caeuGyyta3tFkVAjCG6mOr6xvdaoNRe3uiuHyePxxulWe3768bmVaeLLu8vTsQl + GTApiqRzuwNvj4+K1cu7by5vQGcN9EgYSbEQjhHLJBEEEeGM4UprZqDHpvZ+AI7e++IGxlQuKq/P + lReZve6d2rtuftdudLpr9nS3C5r3t6Rx3Dk7OvcPlxnyxxed9C62oiXzuosb4LuLG/zVtY2j0Xs2 + Onp+FUfn4VUcrZ2eRRvDV3H09JEyUlW0vX26fhIddTMX/X80ulBGZSZx5f//z2i500kHwb/mIO9F + kEbDIRwhMFuV4csE9vMiw9OM0/g8KTWGk1LDllVjNCkNq7L/aX+Ck9WFP+fY81MVHt4lOgH8HVWC + nvcf8LssA4EUf7V4/aoM1O3bqdZ+LX6LlkabhIIK1z24wiSli6uwOSjY/PoQ+/CwDWFTnGexStOJ + yr9wqIUxzUJx/85KPz4Hpd+URvlcV3/WXfkLSM8al7cUH992NpPBzu0ZxFvVvQYnZw5vrfTaHbx1 + tXb8FpJ7CKapT+62ivgOn4ssP7u6WG3n8vB8t7Pu9g/45UHj8Paie3R5YtTx+uX1+viaewGHW8Ex + BNY5TJHzmEkvqDWUKGIklgpaoWe1+yWC7M0jXVNz76mQAFPooPAGCokpVQJxYbVXEirhIKOOMDij + mns81f51k0W6puZeckIcFpBqoDA2GHtPgEOCCmy8Z95YoDiXaEY199PtyThZpOua1FBOEPaAW8Og + cVwBSJX22EkjgGWaGaEwF2ZGNfeSvX2k62ruMfbMAw89E8YTo5AxkmsFuPYUA0mRIQQYMaOa+6A5 + n4UpsVasoVUSYhTSdWGVd5xSKR0wNpR0kmGpAJLcuHkU3SMApqW6H/cmvOi/gBwwTCkysqORDlsq + NPMOWUedAoYiRpStrboPlzZ/NjVACooXrPmJNYfNnjPHmvv3tBv7/dOSaH+xJ0/Q2Xnx4LOHzQ6P + d4+z9gnka8XB7V7j5Loma/6GSn4cJf36yAgm99Fz9Rc9V39DP5pQ/T1Z0uRZpNI0MqpbuqidF5VK + k2ow7BuZBkCtbDetnrtfbn7R50MARhbt/4wKldm8nZTOPvWxTNPgcVMkKp0tKv3E05aewNES5nAp + /KyNiaCTweaxvnJ+GLIpfPyeFPIVsPcD8T4V8kAS9rqv+dOr2CaFM9V0aTJ+oEsdV5R5gLHKVEkv + qQZxklUuTZNm+PjQAfnzSyW2qlKT0WT8QBdiogVPXkiJ3oInT2ecv5VKHkjCF/nzl/wZollTyR89 + PVvR87MVff1sDX0VvySmf3YRgDhaU5Ua9fwJeemyK3KdmDJadVnQ0e/lWTOpQkf00GA2ZKmzlYi+ + mJQ/jztVVIlJ3VInSZZOAcAYsCBewABCTP6nl6h/4LWk9dKGrV62Ov3jzk9K+6iSDCMG8Htq1lMC + kbU771MiD7hA7NW81nSr6mM6mFo228xxttR0VTzKgwZx5VzVGk5s4adFYsNiapXnVSu2zqjJrAjD + URaJ7NiNz6XBWtdNZHUy/c2eyiBplUENIjwdbfYUDIqnzZ5QCEjqZLErw406i62eb5HG/vgAf7MM + lgvMFxnscwbLuZi1DHbTVdHTYxUNH6th0tp0VVQkdmiiHR6raPhYzU4m+jSFLhXNrd31DTx+Svmd + L5if3FAVpcuq1vN20mZ38I6SRNbu3clK5O80SWSSvN7U8VEneZgWpgo+m+1OutTK+2G05m2dZCqr + YmUcir+M0X5e3JWxe+ikKsmGL5zJ8sV2LXuQhYx20d9xjtJFMg/p4nQG+WQ547dyQA7oIgf8nAOy + mcsBt/J+dPLlWYmWV9fRFwO66DI8K9F/rT8/LMPuLxGNrp0qwlJ7ZFT2VfOV/56dNPHfJtGlr4aD + ehmx7+eM43zbHDlxqCpPTetdmcqhZvVOU0bEX7fe6HR129mPmdHJxyxtf8yS1sdm3pte8phkZskn + vnIuG27AeJo4425nyB+Caib8QZtm3FMmzP/lZKljkpkFalwkj+8tecTzkDxOY5C/HW5EYmFu8CXV + xHTWUs2N0ZM1VHBGoycr6naGnDE8WeEPK6ub0fOTFcScZd6tWtF2ZhM1VIBWXe0K003zMimjINx2 + WZB1fozOvv7FyVOHwOG6euGi/9pe3T/57w/RastlmUqiRtRvDaKkipLQ2zBJ06gbVKD9lstCM8LE + KDMYtiPsFHnPZaHvoXYR+J/ZSW5fme6XIKAcM8qWxs9wx/7KRZq7SHN/RpoL/8Y4+aenua3sdumr + 6S3utwZxeA+XcXhFxFVu1SAOL4r4+UUxWZbbym4XWe5CGfru0lw0D2nuFAb5XNsMbLdWi35ncNG8 + XCn8zr0WN27/qK0k2SmyLXN+r0DnIHYtet26nn+bgRt80Wvry52T6mFra2/l5KF5CC46R3RHXRd7 + R1v6cH0dyfOWeVwH49sMcIEd1wgpDzSUVAMmiUFUcQUZg85y4S3DaFZb+03XZmCySNe0GdCeYEk4 + 4xhggbUiAlmFDGcOc8SJw94oRrH+LWwGJot0TZsBISDD2GnhMQaaMUag5dxhCQRh1gkHoUJe8d/C + ZmCySNe0GWCAAEMdIUQBR5QUkEjjrPeaWyOcVJwYJz36LWwGJot0TZsBDK0CjjPnrMFca04kpZoh + wKRkzGvmCLWc+9/DZmDiKbFWrLnnXlJuNUDacOSUU0oZIyXiGkIrJPbMeSvm0WYgdMCbks3AuDfh + hRuM8o4oqKGDnjLEqVFQA0Ixwt4IS6Hixngp331zvzEpMZQLQcIXSozkzNkSbIPGjn28um9u3q6v + VbtXxY0tMlesnAxE9x4tq7W8o3YBu16+zX+NLUGA0hejUvHf0PEQGg+LxW+g4yyvnvDxAhv/+/tm + brDxVl6UbjV/0S58nsGxdc3+O913xSR8fd+VUplVH/OiOT1U7MnjEgHDhdGWi7UqBnmWmLitqsoV + cZINf9zNkp4rShe31IR6CE8eF1LaRZ+990eK50IR8eODfGpSWibRT9hO9c3scy5SVwhmTeBAwD+G + aoaWi56flGj0pAQtQ/jx+dOTErVUGTXzzA21s5Uz1Uha61URmiQMw1YlZVV+iLpZlaRRJy/LRKeD + KMv7H0feAOFQV40TNYhcOynL4G4VHCyip8sro6qVlNHwV1kzCueWlMGroDts69caZnTDfn5P5/bn + HyYv24mJ+k5HPknVcBD8+UdUtVQVLLKyYM7VVKl6SFz54fmSfF60w6m08upDZBPvgyNXU5UfZ8u7 + 4HMC8OwZUC4ptaR0+bnLglJYUAQbCHz1xx9o9DfNI85P0rwXSnRVbSRFWb0rywJF01uavdPUWfyN + FZdqq8c8m+5WNJey55/HaXLn4rZqJibW3SounEpDm69sEH9+DcZV2UqKyTr6hWMtpBZjptDTSIe/ + TkqtKu4WhgDTSUmnNHbeTKfLxM8wtprfPBbgWctjT0dXG+0ldy7aD09XtNKtohOn0tD1KxtEp89P + V3TWOA2P14wle5+nrCXbWVoBYm/j9GzndMLOXHW/bWEcsDAO+PmpGgXoVxsHaOiXdOHUXWjDE4CH + D9l9XLqeK8JT18stlCGw4aUwOenU0C9I52LfV72Mcl4wJ5yHlPLHB/hc62FPuuu9x+WTzupG57YP + V1pk62LXP9x20r2zg/NMl+dbafuw19vfT5ffRA8r0RTFP5W/2D3E8kHi6obfn58zc9e530mTbmmh + bvFsmXmfxntEm+Xx9bAICOMoklZriwSEEBLJKSaeesuZR9xhLR3hM6qHxYK8eaRr6mEFUNBAx5Ry + FDsiiIDWM8+MAEABJYT0HGOFZlQPS5l480jX1MMqxBmQxAMCMHKIGaO9V1AATBTBThgHnZDYzqge + FsK/uvC9QahrCmIVRN4AgZxiXDtgGbXGGEzD/wuipWQYSMXlVAWxv0o5KKalHBz3FrzoA8WksEo6 + xAXFWHgPuEOEY0CJREBpohTw2pC6ykGO5rE/EaNw4a/+mUIxTmdOCLjcX0dobQc0b9OHYr8Jb8XF + oNu/6R9ubp5cbLVBsr9yiBPf7t70f5EQ8ClF/md0FhY+Q44cjXLkaPXw4nANyugpRx6u7+qw2b0a + 1fDDhdZIRcVfrZZOhy+Sf0YHquoWbj7sk9B0/ZPQ/IK0lfwuz/JsW/4tP6uzwvIqcPuWMfQPEbc/ + NgtlhxKC8KD+72g/T53ppqqIVpK80xqUiSn/+N73/P3Szo8utlYPyf37xHeUiNfxXfI8xU8P3YFe + sTRaFcrzSjVdUDKpVKssUVmcJc2misMNzMILMjxynU6SNSfDd6BXzCi++/Yx357ehT1fjNWld87k + 2dTxHUCSKmdZAyPNA74TDakEagCHLMcQQEhJDXy3boJI8Rsvjvnnd3Oxo306w7w+xBsStwkp3suY + R9OAePLo/MG1rlJ81N1JNjFu4/ubnGVX0j4croLjAwJ3zzon5erFUf4WEE/i8YvwvxZ+eQ+lvS68 + 950HCj82E//3cC4o81T1qZM1xfOGU2WkpgxAjpTz2ChouMSCAEw1wZpobw02RM0onoOC/7wgvsLd + XgYRMgIdIVwLgiC01msGJHJMGiCIgxAaRhyaWfL2wkVymkF8Bal9I4hOOQ+I1xp4DB2RxFLKHAfY + EmkY4hJCiJWfUahGKft5QXwFlr0MokNCA2Cc5wBAJCW1TAGENQWh6zSBjBjBLbdziMu+G+Dxg/uN + +HHltFPWC8SgNpRJCqmEjGAgLZZGeU05N7guCPu72NUFYX9/pGbiv/uhsaex+gNgsmntJ01v5Sel + HEcIU8YYtgwgxIWTSCHssFSccu80slzVwcVjT2s1Xyo/Etta091PmvbKT9p66zlgClBhsOBWeAmF + 9kwiTT2CFDGspXCTBPd7090vCG6tafAnTYflJ+RhoAHYMQKx0pQ5ZKVwRkMlkRcSGoK1UWaS4H5v + GvwFwa01Pf6kabL85JkOjyrwykjFnWUCYaA9NEhJanFYHwVa+oleC9+bHr8/TdaYLsedNn/gBowf + /PITl9gRSgxHVgBDhdLOSAcklMH0g3gkCaQGoprxHSu2/+dHMrw/2h3y+06fT/lPu0Oe0x+Nw61U + BghlPGecewUwkAByyZSggAMNjGWL6fP70+eL4EKhCIBGCemFEEhqByX1ThGIGaHSKuQ9xJwsps/v + T58vgisllFYgrzBTQBhljQkqRKCd8NQgTTxHiLrF9Flj+nwZXMEdsxhDZBFyQhJMoA/kyBMNleCe + AmdILQ3XYvp8rQr9Em5CJMFAAO6CGZnhHkIGtGXaYh989xzxQAsM32A2/Y/xfvMz1RpBmjJbao1v + /dtfJNagf5Up/jqxhnpNrBEfn6/cb27u4aM4T6uUOHlt2o2HXXrfaK+BPb2yJtrswbrdO1BXrIHg + j4g1RruVRsshYX/68tNySHQQlkOiz8sh0fNyyOxoL5LX3x/jKy/G+LKF7mKhu3inugvCCX9VdxFm + jI+vvK8nll74KrlbKlxZpa4s46pQwR0ueIyPXOHiKo9NN+yuUJlxxUSSi3CId71j6tu//CFrKBH+ + U1ty8XJW+GHFBWOSO6PQVxumBBS0AZElwhPGJdd1FBdZM8mcK5K/PcWfoLn4xj35DXfh/+Donpop + FOFUTJAXr3SDieXH6CCvIq1s9HQBkaoilab/zztNmxH71Wnz8D32eoY6enw+Rz/5uuPUajfIioeP + z2xtrv/JE98iCV0koe81CX1Zrv7sJDTz1ZJpJe1O3EmdKl1cVnkn1i5s9FVx2XZpOoi9GuZkQStY + tVR2N9n+/XCsRTY6VjZqqfCM1s1GzTcngx93KoUeSSxFgwhPR06lQiD/5FQKBYGY10hIV793dov9 + +z8tGZ3SKJ9eVgopmCArHbjyfWaeRMqZyjxXw7MSHQ2flSg8K9FKeFYiFY2elcirKho9Kx+i0cMy + Y3aev2riW2Sji2z0nWajWFL0i7PR1KGnQZmUsYp91wwdZ0ZDcLKkM325fXSRdC6SzvlOOueCgI43 + mKeWW2LJJvFtOG3l3SrvVgGtnWdJ2JK/roroIi9c+Wf2ZxZ8q6MyzfPOh6hs53nV+hCpLM+i/xrl + D5FpqazpokHeLaIwQfz3h6/WkO+c63xeSP74TpNYAWYwiQ2e9tHTsxdtD5+9eUtVxxtI85ORtpPi + UfWUzXPbTbVKmu/IZJTYTg/0M/4eU0MmBYPk1dTwKS9vqOfWNFM1G3WgcEvPX+2KMrZJaYbTWydV + matiX+TtuOXStMjNXajqivZkvDIcaeE3uuisNGfZ4zd/P3/McjrjfK5tRy9uVzZZur974896Kts8 + v0qKg3X6eHDXtQrt9g7jMjl7kM31Q2DewrGATdM28Oi2TGEzx/K6VfIbeXG8MfCnTXV0Sg7l4cZO + udYXFnPDd1tmfNdRTp0FBGkngDaUayyNAUQBwZ2h1FpqNbQIm1m1NcD0zSNd03WUUWi1Ag5Ab7Hn + nlCvIEdWCa+sN1ZLK6ljM+t9AMCbR7qm66hWHjkkPNPWA4qDQR+xwgHErOBCeU+EUFSRqRok/Jq9 + /UiIKTlhjnsHXgRZEGLDf7URDACNpTBEQ+zDNlHLnXEIKwlhXQMAwubPCTNk++i1ltjo93PCBPyX + Y47vOmHe3/jlvfvrAq4Ux+uPq617sByfPKT88fjBU9FsbsSuv9p6yLY7dzU3V/x1b+R4eyuWv+Rt + 0dpT3hb92UUAmqNh9haF7C3acmk6/KltnOTmLjodJnEfotNuxxXlsD3iZZLZ8kMEAWjsJmnedpUr + GmuBpu3naeWyaE/1VHRonMpmqI32tyrgL139vgSn8ZzUNkZJbSOEpRGS2kbIahujrLZRfo5Hox/i + 0QjhuPscDutcp9EehqORqp5q5CEcE3YmnN1znx+wtaHazuk8a/L31OEwT6lOuHifRIsy/Hpz8EHe + rbof9fQWOi3u9JdsMohbeTvv5Kkq4nZe5U//W8aqcHEznOWwa1t7aCo8EcMKB1o0N3zPzQ2/DSdy + 19bDf/ftnPt5JD4P76eGbh+i1UL5Khpmv9FyUUVnJ9t7h5vXr+S3z1/zjUWN4ZDRbjgEwspY5tKl + 89VC0PL0YLB7cnddZsvde9KRYOf4tW//0naDkNc+EuaJf0Z//K+0+lfiC9V20aiK+vMPQuWff0Sj + 7/j05x+YkD//iMrCfPrz1RMdBm3pfHW1217eH5Be+T/eDW23P43iOYzLiPvclqqTfIJ//hENj6rz + 8M769Ocf4M8/ouGU8enPP5QxLnXFaKb7VxSKi06qBv+KTJp0dK4K2+gXSeX+FbnMFINO5WxjeE// + FTUHRV6avOP+FXUSE06hkWSNpz8+HyK8fkpTOJf9r2b1rxCCpVEMwl9fC2oQ2SfWfbn313n3rKvd + dz//nZv82r//Rm6JGfjuh1/seB1USbs5PFIv+foWLbXun9oVfiOz/ZvslYhXT+I5i13bvv4QbR1e + RmeH0f7y7nq0HJ1u7x/trUdbh/uHR4d7yyfR/uHZ4cmrR30a2aN30SsfCv2+k2G19Qf8CF771OfT + pvI/alSOnw/91S36428LwtHL+fXXxh9f3vKL0VZntH3n9fVHaYo8TcP2vNcJ8mt3/f/8XHnJPFga + TyWFqr88ECb+f35rHL/1IsGezu5v8v2TQanU3XL3ZiXD2zdrWXfFNG/Lvb3e/m58nV6ewsvj5lss + Egg4RaB6ri73Wr3y9DQWp7eK3R/mp+TueHCMrwdsxV+flG0Tb+48nm2A/fEXCRjhFiALGHAcc+SJ + J0ISJhXmGDAAtbZeaQpndZGAoTePdN3WZN5zDAiGQCBNJLQKAmgYJ94obISCQlBrrJjVRQIC3jzS + NRcJjKFUe2SJM9xizhiUwbYNC+CZEEQT4BUAgM/hIsGrSeRPvwMvFgmwtZpgTCyDVDMFBbJKcmw5 + AMJxzQEzlqP6iwRi5hcJfrjLewAuLww3XpdpDvcDL8rdRbm7KHcX5e5Uyt2v3ymLqvfXVb1fM+D4 + VTH0l5XN4Z9GMfsmzY6mXUqPsYL9zVXoOVjCBgKhmVvC7lxd8vPt6+2NtNuwp4+Ht3ent9fZw9X6 + nkzXveaHx/3b9f79jY236/oDAvoja9hr29d/ffF9/Pgx2h/ihUgVLhrihUh3q2iEF6I8c2G/QTsv + XOS72cfoNI+SLKpaSRkNX4ofou2on6RppF1UtvJ++EeDvBs1u4MyauX9sPmkre6edpHk/ezDqC9k + 4B55FiWVa5dP6UpLZTaq8jwtP0ZbzwgkGsKPqK/KqPrcgdKlzlRFYlT69OsqD8fX3SStPkbbVRnl + HTdc286G/9K6dp6VVTFsS6kH0X5iWsql0YYqlFWDcEVQIPhxhrZRPC/Qff1eHX/pu863zNF+X9dM + sixsFFm2MSH8fa1Ft3SHJ/CdrkUj/jdehKNpIckqV0x1Y4V5LOVS2c6He4taTqVVK3beO1OVcehh + O6ha4TeDvBtnztlg03SX5f2JlqXDsRbL0u95WXp6ixFkDhYjpjV25nq7Ah9U4K59maf54cA+Xizn + a9e8zU92d9o35HKrkzZPlu83d1bjPbL9JtsV5BSpLag6iiXdZrzbRvJoLbtJd7ZOtsH9elvC9uN9 + latDc9GW+734ePyVCCUoURgw45Q2BgrjGWQUSGycVRAyYS3VQPOZ3a7w9pGuuRIhHXReMWIFJ5oH + bisk4M5h7S2ikDiOKbVGzux2Bfbmka67XQEzQQ0x0EKBhKBcGmWExh55gzFUBnvoIJrVfo4E4jeP + 9Cv9rP4aaQKEDlsciSZcSMmxZ4QQIpkHPLQV08AQxYGZw6aP370LP+0O/DXIjgPJGFKcM2uh11Yo + K4jgzlOgpAbeYQQQgb+yM+QcrPlgOIkZ8XvFcFzQmcNwmzvZ+Zk9etwWF+u3t63Hze55Z7fcXL8+ + OWd7t1XczA8feq3b1fPduhhOgh+hcKf7h7vbB5vR1vry3tlWtL6xsb56dhr9M1q/WD+5PtsKv7s+ + PI8O1tfXwsLF7sHh5WzZe/y1YP+8l+KpXmiM6oXGU70w4baNaR1pfvhWotpJ2ZwnM7uj1lr0v79y + rguGds4mJsncG5vYFW2Sv0+WRiCkr7I0Gyr7j7ftpPiYF83pkbR2J18y3UplLu+W4SmsXJGoOAku + ki5uBj1iYopcJ3nbxWoyd5JwkIU7yXjuJAwJaWFdd5LR23Lq9iRKCkqIIV/191De8wZEEmAknPUU + 17An2fre2S28SX4e7vvRAT7XnC/Z0GCtNUhPq2y5WDUnDzt9vtw9u7/fdqlX7uKRXeTW7LZXr6/n + XnHcve9zH+81r7czHR+s8GT1evtSmcHqfr5zvLvsLm+PW2eXci+h1+NzPo+89lZx4gV2kEuiPBTA + Mqw4MUg6yTCwL30u/7aQnFvF8WSRrqs4JkwTgagYdqEmDEtrsQeeKKxCn3qKAvfT7LdQHE8W6Zqc + jwKKDaHMO6QZB8h4SoFCLjzkoXGsh5wL6Oyscj7x9pGuyfkEdUILTqUlDmPBhQ6GuRpa4IPeW0BM + HdMeTJXzTS/SHL19pCWrp6J3XhjppdWcEg+1MwJw7bTH2AfpNzRYSULGWiWQ7JdFWsC3jzQEolao + raUYYQm50swQbzBkRBLovIYO2GBzZAgWTow5Jc4EvZZgWjsWxr0HL/zQDFWGGKyAQkoDL7HV2Cjk + EQDCc2aR1MhoUJdeQwTm0deIYABfwdH4t/M1Ahy+ma/Rq02j+xfg7gIvr5wN5N7WDj89a3Xg5vnj + FVh7VLs3ScOsObFzXGwdtMSvEYWuPhd90cpT0TcSeLpos1sFpeRT0RepMoC+tiruggdS7qPTQVm5 + dmKifZXmNi+ioN88cnknddFy4aLlNHVFMzFBnbnvov86Wj7b/+9oNc9sMqyR/hltZ2W4iDLaCN5J + KrpIiqqrQjeW8KmuCXLN1TTJhkrPsyJR6eyA8H8nbU9geslBQIFYGp92j/V184O0daF6rpEqO9Dd + 92SGLQqBOjar3idixpy8jpiL3LTCu7H46Gx3eoQ5yYulJCs7STFak7VJLwjMtEvTuOyEDUxlrMK0 + pHxVxrmPfVK4yThz8nJxd8GZF0LNOSW30xk4c81vdyu7dpQ83GR7t+snB83j+9P1NuLbtx3VHtx1 + 8wyusXI1KTYe2sdvotMkU6xWL/LkZuN6Ld5Zp3r7JNbVYP8Sb2brA4/QibhsNwatq/2zjb7CYnx+ + CzFmQACNjeOeEiilcQpYSTBhDknDGfMCeDWr/BbJN490XZ2mlhwDb5lwEDstrcaUCuwVJhhaqCBU + UEI+q44RUKI3j3RNfisVlAZwoqXy1HIthWDEchooF/TSIUChA2JWdZpYvP3boya/VZoSQaiWlEvM + OaBYY2UZhFxRRB1E1EOtXqwF/22kfyG/pZy9eaRr8lusCVJYc6iJoZJIhBGzBPHgSm98eIMIZjED + U+W3v4YpsqkxxXHvwAtFrIDIGuotIlAx7xHlBktPOcdWaGUpstJiYmszRTCXTBFLLhZM8Zkpspet + +N5c4XpxdL7JGvigyA4vl7MtXF3rq80zSXY6F0k7AfK82hHx1pXZOVyu65VOfgQpbj9VI2Gr9aga + iUI1Ej1VI0NOOKxGAkUM1UgUnu4PUeFKpwrTCp9pqZ6LnthEpKJQdqdpYqKyKrpDO4fQpLkKe9PL + POqryhVR4TouTV1WfYiSKiqc75auDPCxTLK7D1EWNqJX4YNhW3rug9V6MvwGnxfG2SjJquevykcf + andN6+kzVoUaxYbfdLrZ8Azsh6jfSkwraqtBlDoVNq9H3SwcLRQ8UdlKOqOL7TtVDH/k07wabUu3 + rpcYN3M9pr9mO0uZ65fGBe3t0tDzvDWwRd5p5ToxjeENafTzrGqEC24QwBBHS5PJfKd+2PkBpFWR + lJXKOgFKmLt3REipoQN2m75PQIokl68C0mw4wlXadHmzUJ1WYqa7q10hsdQOay9FErR6hbJJHpdJ + M3DHspNX4WSTLG4n6d0g7qtB7PNiMlCqkFiA0kW7wHfXbFrOA9edyjCfa6x7BHeObH5+dpB11qXN + ti7vjzbOVzrHm+VpH6d3ht1vN8uDI3YN87mX5W6kIOvhdoc/FPDulEA56OzcFpfbx/e3cesB9VZP + 4uqRF/GRXh4f6wKgjAgt7LR00gnghNGYMwgxQEhIIiTUlGD2W8hyJ4t0TayrKNCWWOghNwhI4AFB + kmBqnbKMEUY5MQJQ91vIcieLdE2sC7jVHFqMGWbMG+moBhJCpE34KyESSywkwL+FLHeySNfFuhwp + 76kmgjHJpJfYOceoNM4hJakKijsMDPstZLmTRbou1qUeYYs1ZFZyaQAC2lqlFPLaIYiY1EJaZdxv + IcudeEasFWpkFCRGWmQtQRpgRJQghMrgeY00s8hi4hXU8yjLhQTRKTH0cW/CiwVl65gBxkgoHXXO + ASIYItpARQlGwGvDHTHfNUn5EmI5nwwdw4Uu9zNDp3L2GPqa5VW3ym6OTqrH++x27ygr7hVObgRS + eSe7v++R+3Q1h+By+fjX6HL3P5d+0bD0i0alX/RU+gWR7n4o/aJLNQgE+8katUrabraY8rdx2OeS + 99nR4Uup2/CqrBrDi27oblFWjadrbgxr3UZfDRrDi22Ei50QOf/qs5ofIl06pfU7AtEQ5w+o+y45 + tBAYvC7UferaEJZTVDl6zU0NQqsyBUvBFTquWiqLGQAg7gyl/4FJmVaSqTJOVfbYyrtxuLKJAHQ4 + ygJAjwegDeRK+boA2nWSqeNnISlWjLCv7CAkkyTYQWBuKTFW+hr4eT2sFreTPM2b80ag65hCsDlg + 0D8+yueaPzf2l7t35+tnKyfLjaK/f72x+3h0k9xdtq/82eoduDlInIfnPRdfv42seJrV9rHtFWL1 + TvDT1cvWzZ5hqt+ojvPGDTzcES7fiK9AtdtY7983ywn4s3NSM24UAoBKxgFlmkhrJTdOOSYlBJpg + PrP8GcE3j3RN/oyZAtooHrYZM48lJIIzogUJxhxIeMV4UMPSWZUVc/nmka7Jn7kXBjBpDGWBYWgm + aOioKChnVkoAuCVC+Sk3opuirJi+faRr8mcqg78uggR6DpTyYVlFB99dYRCzVlvAtZFiZmXF+O0j + XZM/Q+YA0U4z7w1lzhPumPXSScgxE1A5DhmlhMyhrJhSPiUkOu4deOG9QaSwEEKEvSEKGyWRJ8QY + 4BAWQFOjCUPYmrpIVEo4f0RUSATAK0SU/X5EFFEwc0T0pnm8eq63esVacX6wSuLzzZ3bzjo6Tcuj + tT7dal2sXLSam118dbxek4i+0JGPB0Tzkeg3i9gHAEA0KkQCB10Nhch/ltHeqBKJQiUSdfIyqZKe + G7JRXXSNS9O8TMrZgqPfYDRD/etS+NvSsMJqPBVYjVCINUIAGqEQa4SrbDxfZeOrK2xATDhihE1G + Rn/pKc0PFt02g8ZhP20wjsl7MjIAUCvi32ffKcE5Yq/y0fbH0j0MfNfcNVXbldPlo2lvsFTlTVe1 + XBGrZugN2QMQx+GQcThmPDzoZFg07Q0WvaYWFgZ1pK5gcsz4jS//OZRx0rEy13CxfXZ9Bx+3r/mO + 2fe3EokrdXbf7W9RVsnLAbm4PXVn93FHJcvgLeAiBGKKVavELfC4vXwPGsYkd6tr++nVoH05OMG9 + 1v1Dgx13Oqvs8Movq1EuOR5dRMQzgAEHmGEsMAHIOsgp0wZg4CWTWGDElZtRuogge/NI16SLxliE + KMYOGCAU1gZohLnQBDvOGOOAeAQUnlV1K56qEnCySNeki5YJIg0g0CsvuXZSWUS0oF5oxi3FDCFt + 2ZSbS/2ilkdT2+A97h14IWyV2GBEFTYaGKqsJlQH4w2DmKPMMWwdVYCruiSGTEGb9vdHykrf/+6n + xp4X6o+lCeeJt50vdNotPsHRsPN50VbVp85tp/ltAuqxNpwHw2eNrAVSWK8ZNQZyFzZReGEVZr7O + G27sOaXmG+9H7latueZt55zh3UKw1t2y3kPgOCACWw484955LYhS1BlljHDSSy8VmuRufW9e+gV3 + q9Z89bbz1vBuYVTrbhlDvMRaa0yE59b40GUOcioJJ8xRj8LN40hPcre+N7d9f46rMdeNO+dNMPf9 + 9Ls5vGGk3svQKcw9IBoyJogFiHlHiROIaMqg1QQYbLkEpOYNqzVP1rtR3xl0f+Tad8vQ1c8uZsvF + bLmYLRez5WK2XMyWv+1s+R/j/WaGGuwKwSRYNNj9LBSAUvxqocCQOdTY7kR+qCvu2RP/j5YD/48u + wEf4EUeN6NQ9DKKNrrmLNsMawOys3n9j9XCpk6rB0vOVNIZX0hhdyfhL8T/2/d9aoekUeTuPle2m + VfytmzoaxfitFtj3V45Oc/ONHg/zvLpe4rbsKfc+V9cZReLV1fWnl6BVSTqY7tK6sHipTJ2Nbd4s + Y1W42KR56dJBXLh0eJJVHksKwMCpIk/tZGvswuLFGvu4m4+4MoLz2u5XWdJWaWmmvwUJAukgR+Yr + ByylnRw5YGlAjFN1tiAtD08wOv32fD73NlhgHrYg/fBon2uVwP3NTrnS3M1j2YmPWB/G9PzisnV9 + 0xucuvsNf1tt+TIDWyvkYnn+VQJ7292D4qrfhDKPz3nZdne8dPvn5ZnLEbzplersoSTdpLPWN+Or + BBRxyCjBqcMYUKMARcg7DoHTwGNlqGJUEzpdlcCvWVFFU1tRHfcOvNjoJQRXmGnKlGZYQUQtwF4J + R6WGCAtnw04CROuuqM5BF74p1Lic/dWvZRo17rxq4V+8U2ZAC09bxzbZsNdxd3+zkcR0k/vO3hql + d9ud7V13QRtXy+i0dbDFb+s6bP9guXyaOhuFGTFShYueZsToaUYMPtTyAwWgEebERp7a6D9VFu5Y + Ff7Nf86WBP6vhcJS4VKnSleOTDgAW0IAMEQhIQKyj62qPZmu/cePMz9i9T0Xn6gq3g/D4P1U0zi9 + 9f304fY9VtMUU4zhq9W00uZj5qqPamod93Khze1SX6Wp0okbZdZ5FlctF6d5Xg53+OsiqYIaV9JJ + aujhERb2HYsKelFBf/7Ar6+gf3Ccz3X1fHG72s5Pfb4l8t4yWb19vNcH1fagb7Iztbe+tv2g2+dX + a+Wy4udzb+Cxszu4X+3uxZlevSD3kByz7eSxQw/z1Y27+8NVeVutrF0PHq9Xy+b4xTP2iiIbWgFy + QTziziviaegHqIKDNMTUASvZ72HgMVmk6xpIG4oxgcBCYYCnISGlQGOGuXBcYMZt6Mjk8KwaeIi3 + f6brGkhLpim2SiHqtXbKQWER5wRQBxR1lEsnvGB8DiX2eGpAaNw78EIhxoViwnjkHfSIeGGoFVgr + whwHxiltCBZGwrpAiGI8d2YHIbUnaCFieCI8RFDCZ47w9Nfuznt391tr1D5upee63b3DVXc/7V+o + W3mEbravrjawP2quye1f4nZw+ZywDQFPnkVVy0XDhC04HqyMErbozy4CkESSBnfYVhUKsqitOh1n + Z4vxfClfR1YCgbg0IGwAutRPUtv4nJ428qxRtVxjeKWNp7y0ES4pyZrhN0nR+HypSxAJIjid0Ojg + F5/U/NCjLZdkidtVOs91eJm8H4KkK4nR+8RHBL3oTPkFH3VzE1rrTY8dAY+WrEuTIum2Y2VM3u6o + LBkthHgXilyTd1MbaxerLHaqSAeTISTg0QIhjYeQrOWGu7oIqf1yrvhheGSksFK5f3OAxSY4wFLn + gh+hAbAGPNp3NjFJ9v6wEZoHbDSNIT7X9Ojh+gSmotdpbCPHmvvbjeNOf/X+zpoeznR+eXu+d3K5 + AjaXYW957unRBcgfVm+yeGvj0hxcSrruTt3Vzs7Fg710t3CLbXTP+2vGLg82ticwaECSMcyII0jB + IJPXBGruHPZISUCcZhgQQsBvQY8mi3RNeuSJ1QY7LySWllgKtJQSUwoZxkxSy7znmIxnSjq39Giy + SNc1aDDWQ2uQQsoxrrgBHEgMlGNKWeYsCD1uFESzav86A2+PmvavkHqBmLcQCo6Md8JTF/YVcmw9 + 4tJTCqSSWs+q/St5+0jXtH/1jgFsNRHaWOet1xYrYzDUEjgkHWHeaKkkmEf7V86mRETHvQMvHmdB + OLIkSOMglA5xhTQm4RmHyCpLIdOaYlZbIgcBInOIRAniZIFEPyNRguTMIdGzbPVMi4cN1NmU1cn9 + 3cZab4Vt6e3ufWXo/iFfuciuj28Py/Ot/Jcg0bWnYiT6qhiJ9CAaFiPRsBiJtItUFg2LkagctDtV + 3o5yH60eXmyvNaCcLSr6RGWWOnlRqXTJZU8+q6bqqjSpVDVSphGIGibvJbbxXI4FcVo6GfSc7jHn + h2nequw2yR7eEcukpb51+L7/PnEmkvj1zlZlRxk3zU1lOc+wXypV1S2yMm7nQSCTVCqLW6qMVdx3 + SWHjvGiqLDGxabl2YlQ6EdAMB1oAzfGAprLcG1lbE1dWRT51pGm1Yggb95UeTkqDRno4i6AhztXR + w4WTy/L2vHW0eh9SuKmM8vluaZWR84eVjX1/2r9eaZ4KstI73GwdNQbnXep7aXrYB0frCbvdhuvz + r4jTu5ci92dXR11wiuF9nFurwB2ozq8udy6Pd9pHzPpD1UVGjM80nfCMeeiE4Ro5B7CmjEmBAZZW + GM81wB4YOKums1NWxE0U6dqKOIy9ccYYo6Ew0guKgYPGG0aMgQx4iqjB6vdQxE0U6ZpMUwKtESEG + CiYopoJjiBQC2hhNuNXCIuyCKvG3YJqTRbom0yQSS8yZ0pgyLq3WyCGvHTRWEGuwtZ4YooT5LZjm + ZJGuyzSl8xrgYfd55DzUWEkpuURaWiMBAoYzLbj+rZnmuHfgxYuDAEWUlNYQoglCmluHFRRMYgUZ + hxhTArV870wTScIW+3ifkSYG7K2Qpnq1p5XdHmyIQ7jLjy26w8sn3d7DY3N1/fH4YH9/f/l6deVo + efvo5uZgIH4J0jwd1iL/WUahGInOQjEStVQZqWhYjERPxUj0XIwE7WdSlZGq2nnZabnCzdhe3mcw + szQsrBotVTaGV9J4voKGymyj71RwsHK2YQpVuaL8n27VjkcvwE+nLk2TpstG7/Pwi3D/uu1Prq2S + 9PMPjWp3VNLMPklI6ZefjtDHp9O11fjA9cvUVZUr/t/Pv69c0f6EJMOYj6aPdpx8Osruju6vL07v + +p1D/A+00tp6PKnWcTdrnixXbK252dnX/0ArBMTMo3+gldvWzqq4vMFrnc4GE1sG0sMtRFdXV9Yv + ss5GCbgpiqNLOHioHvLT3WP5cNhk8SbePNr6B1rRJ0dHEwpWF9GdLLrzQ6nP8myw2lLZ9dk7AtXs + jmVF+FdTBNXfmBTfiFMz/jqnNlk2XUp918JLqu2KxKisDEO62arivFvFt90ABPPcxiqzsc7zRxer + cjJCfdfCC0I9HqF2xBEB6xLqTjkwrenv2OYkGDmjILplI9GtBtg1IEJKA86FF7oGoT4KJ5enebM+ + op6TVmhwHgj1j47wuabTMSugeLhoLOMuXMnMfaIv8eqDWTve712tXFW3m8Uy5kWyO+ibuafTVyfg + YIXK48PqaD1myyk8PdoW+IY/HlcHLVk2m/3GYH37RmPdH59Oa8u0gUwJyolEHFgDjfAMUOG0csop + wIQRDP0WdHqySNek0xQKTYhj1hgmKURAIs+5ZpR4oiiR1GKkiPs96PRkka5Jp6nA2HmtPCFeaaux + QwpAIhynHHJngBcGGPt70OnJIl2TTitrjRMAAIcdEEBRGRa7KGWca0c4NMA6zYj4Lej0ZJGuSacZ + JNwCyZ003NPgRGmFl0KysB8CG8I0N85zO1U6/WGKEyKfhRmxXqix0pAz5YkzoUuloVpqgpkJRpXO + OO0EVJbZMafEmVgJYFBOaSVg3HvwYiWAaY49ttwxzZ1FAELoFTCaICOJlFQF0w3uaq8EwNl3AP3W + SgATi5WAzysBiM+eoye6ieO7Ac5uWUfiUmTm9gE+JGsHB5v7CFwky+dGV76P91l7/5esBCw/13zR + qOaL8m4VhZovCjVfpDIbDWu+SJWRS50J1U1UuLKbVmVUFYm5C46gSTZb6wFPAGykKYZwCZAl3S2T + zJXllyq3ES6zES6z8XxlS0OY8wMy559w4PmhyPtJWV061XOFAO+II6Oere5N+/59Cp4hIq/7N9x3 + VVaptmqqxyRzH/OiOT2mTDtyKRkZAkLJQRmXleu5IIrs3yVZM+4UeScvg89+S1WTEWXakQuiPKaJ + AxDWotpEuTUoE1NOnSkDQRT1XnzFlKWkogGREQoLCQTidZjyd09vPjXPdB6I8o+N77/nyWOkxBBR + vEiJn1NiiH65BZp1XnXTF+Plcwa6PfIYGz4jH6LT4UMSbY0ekuj5IYnCQxIl2agZYjL0JVNVCGVa + RklW5ZGKdKrMXdTKUxc1XVVGIT8r8oGzH6JsuFWvysM+vc9PycdoOSpdEbzOch/pwqm7qlWELDjq + qI4ryqilei7K8n5UtvL+6JBD5zNZRlleRSYvCmeqj9FyiF+SZyqNyiCICK/HoWzGee9MVUau7Yrm + 0EEtT60rvjrV8kM0TLXCxf7b5eVR2UnSNOTjH2cruX6ZFCwFl7LhNTXCNTW+upBGRxXK5g8Nk7dd + 2ajyhsoaLrONkCFDgOTSZIn2Tz6J+Um6D/KylVTxpstc8a562DEPfJu06PtMuwH7a9vgr9LutrMf + u9p8NGpq6TYbVI9LhSudKkzLFWXsh4lfeKXFHZd3Uhf3W3kc3nhxpyptrLuTJd3hQIuke6ykexrp + 8xzqIsgcZLFTGTZzrY3Yljvx8srVcdKyaXa/edg838FneXF3ulPtHi6vMZjuLSPK5e5p/y20EXya + a25bh32OGo/3zY1H12Qntxf+ZvlaMJJWJ49oo3u3d0j8RY9uZ+Z4fG2EVxY4xAzl0AjDFbecSuoJ + wZJaQyhTXjGlZlYbQd4+0jW1EURKRYBnGCGqiUCCIk8wB9pyqrEiAoaOexjMqDYCTXV1c7JI19RG + aGaYIhgawyiWnErnnAMQaUqg5U4TLIjkTM2oNoJA+uaRrqmNAJg6Q7ENjmSEQsiJkJxaB6wL7Q0V + wEhR4uhUtRG/aD/Z1LoGjHsH/hpkTpTHjChLtPKaS+4J1lwDyQ3DmnHuBFWW1+4awPk8LiIDhtGC + mD0TMyDRzC0ip7urj3s7FJ80tsuT1sVyerPF7+9vesljtkdiYe92OMnubjO/fV5zEVn+UFfIky8J + cjRMkEd0bpQgR/1WPiJpR2ena5HuhmaQQ34WLih0L436SdWKjMoypZNR4wGviqidFy5Kk7vQYTLg + sK73roh8kbejMvA8F1nXKVxZBl4WFqqHBym7iUmsSqOqNVzQLsO5BHYXWhiEUylc8KBy9ssBu6WL + 8iEgbLmoo8oqCv0rP0ZnLReVVdcOoqSMtAoYMs8iRD4AAKJVlSmbqKycMTr3hR2MHLaer7IxNCpr + tFzaaag0db1EVa7xJYLDLVzPwUuqQUO186zZGN3DRrhDjVDgTIjrfvVZzQ+/ayzvL59cLx8sN95T + x0wsb9MWyt/j1iskEBOvojvrmkV3ULliqhuwmLxno59XSVmVI95gk9KEkfe0hDZcaQuLqINOt4yT + yTZhhQMt6N2YrTOlwVrXXTLXyfRNwpRB0iqDGkR4OjIJEwyKJ5MwKAQkuMZy+Uoy3v6reVkuh3ge + SOM0hvhck8ad/St6JpdXTpTobqKT0zt2enLtTt3m/Vp77SC/3Bys3KK9wU2G796CNEJCpik6r+TZ + StXZaWzyHtjq0mw7l27PxGs7V8nRaimvbw7Xq5VeE7MJTMKoBNhJSbkzygjtpHYEIWWNCZb8jFgs + EVZ8VhsfICHePNI1USNCkGGGFIMcAgeIBEZTjo21wiqDOUIGEwXFjKJGgtibR7omauTCBXNWwCmE + liHHhHUsOFgLbnlwiCeSEUvgHLbNFFMDYOPegRePs7fSaAUhxlZ5AC0GQGFBvbAcY4K1lUhJ4+sC + MDaPuyiQQFwuANgTAONCspkDYA/VqmruZd4P9O7xygatuo2TzZ34bPVkPz48zrIDfYdOt+lNst+v + CcC+QbfGMlT6nLiNKNSXxG2EwoZk6SlxG9KkJPdpNy9caVxWjVBT1Sqci8qOM0nbZUHWNvxnIwIV + mmuq8HX/l7037W1bWfa9vwoRIOc+D7AY9zycg2DD8zzPRgChR4k2RcokJVnGud/9oinb8bLjtWRF + iSXH+83asSixu9jd7Pp11b90EULRulkII+slZaLTAMlC5kZAYM3CuSzKi8gM1P1VxyfDC/6KbNcF + kvZwZxv1Vc+lLmtWrfKe2akrZyNVOzkBzUdZOzQvqZsd2uOToqzuKFodOPe4K6YOclNRO8/yqnBt + F7VVu63SKYNkf/PS58ISOneZd8OSWs6FBs+pllM2zn3cKZKsmlNFlZjUxRB8gRTSeNipRNUBZDEA + iI9wyZebcbNKpqa5s4PVTKvI2/kLy+Isq++7fsktq95lVBziArIX0VoWROsmK7/PKL+dU4VrJJkf + JmIFUOTCSGyUeds1jCpd2ch9Q6W3LZe0XTEmV6N8lKi4F+jUlIC1Fy78hQL8wgiuRiVrmev+AgF+ + J5xTwIpHNUWFcOq1NUV3QuNeWI4+6or+Dr42iak+03wN8X7n5vpgKUs9viC3u7t9QjdOm0vzaz2x + t8Ht+snV8jo/utT57KscLQ8uKqDEam91WV72rrf3Fi9OT2O+5ldSJQ+7abYllilpNfDe9uvxGqSG + EqqwAtgxyJjWOrjNVGCPKPSBAwECnfkjVI7Gs/SoeM1iwq1UHnFFgEU4FF7kQgJrBTVGC4sxNZL+ + ESpH41l6RLzmMbEQIYcgMs4aQA20yBirMINIIAwFZI4q90eoHI1n6VHriiLIKGBMCcYtZdhr5YC3 + igU6DwBRjMCw8fkjVI7Gs/SIKkecI8KBRUopBZ1FXgNCrcDICeqQwthT7RjDf7QG/2ufwPOCNNoz + Ih03jmLmvPacYyJRqG9AINTGSsiMgO9Jg7+d94b16EP0WjMvBnXSVm5doaq8+DQKY+bieSbuH8yY + GZ86xjyv0/0FtXLTuWbLC+uHC/E1vlmnW8crnZWqmS7gneK6e7O43O1sN3+PUk8R2Oq97xLd+S5R + 8F2i2ncJMHb+3ne5z1O2SelU6f4zXfz1O8q5B5HlnCWQChbX+BEDQWI5Hiwd77dnh2y281aZZO1u + s6VSjt5Twu9N20uPy3eKNqF4WWcnqcqqcFkYJxMV2aGDvDXXD5FDgdN1i2ZQJWhUzrSyOtSr1nRu + 5f1GlTe0C9nxDTUW3ww3+uCbH5GDH2Dzt4PNiczxmQabCdrqNzQpkubB6dFGJjaqVJwt3S7uGndx + vNK5jPNmubuyu3bB5t8CbNJJxlhtrbaWb/uLBwdr86RN+SZe9e0+OTspNk931Ooy9r1kIV7aFGB3 + eQz5dmFD0GAoCiikN5SBUFHUMEI8g1waKSkzhE1r3CB8Guj7BpYeEWxioIzAmijHGYQaMi2Zh9oZ + DYyi0EiCECd8auXbmXhzS48q364MggwITKjAwdHkRDpPpMEUQaW0pN5T66YWbOK3Xz1GBJtaQ0yM + wRxTCLiBgCoGJaWcKYwJosQ5jQWU0wo2AXlzS48INgmRPtQktkxZiQDVjAYhcc+l41ASgUmQvWZ8 + SuXbKePT8EYcydTYEwUEFRCGExFPKQFGeoilCGGiWGKIqWAOzKR8O55U3PFrn8Gzyg+YEEqg0w4K + Simw1HsIlaPYaGcgRKFEgeJoZIiMpj/weBIQGUr6AZHvITIX0weR9c3NYOf4ZD5ehde7PLndy+RC + 83ajuXrMBvNLWbG42M5Udgar5ZEhMv4ZiHxay2iW0b2fGH33E/8zzKHP+0OdzOAoRuoHFyZlFf3v + j34g+t/oNC9SO12o+Qlae1BmD5aIkzK+70j8vSN10nkr7wehyKEhYvWD65Ky+uG3ayPUUu7/aX+F + 40HsaWv17ODxC+WTIu+VV4kQ7wiOi/aAAoHx+4TjTDzVvHoEx/suTTNXfjFpV0+OjHdzNlez20aZ + m0Sld9TYpCpph5jAmpY1dLfI6gjBKk9dNh4a7+bsA41/VDZ9h5VNwSzg8YlM9Jnm43tXtq8O8nKt + teCrLbq3u+Ga7cZVUa1u9PuH2cHZYLczWOphZfffgo+LSXIXmqye7fLLi4ZUh7lvrvSMQjeku79/ + cZGWViwer5/RvbbQreXy9XycS2YtcEBQzTGijDNDoJSAawygl1xDKZDXclr5+ESp7XiWHpGPO+ux + IIQqq6BHBkGhNGKUUCS5UgoBZgE0SE+rhCd5e0uPKuHpQ/1BR6GjUGPEgCPaQkABRsBCLTjEyFJp + plXCU/I3t/SIfNxDp6FilgumsQXIAk44lcgzxkIMZZCRQB66KeXjnLA3t/SIfNwRAylFQjChnSfM + M2ct49YyQKTyGEjomSd6Svm4mGiI9dhvxNGOIqRzDDHKoAQeCmgNgEEhIijOGOGIJNJqItws8nHJ + JhVk/dpn8MzKWAjjveBWEuwN4cxajBixUmOnFEIEAUicGJ2PEzSTfPwOJI8Cx5mA4gOOP8BxMn0q + HsXN8YVeqRJTWIrT+SN51Tzd2l3caFyUqugl7TWllkVK+dZ1PqqKB/ipEOuT9aXl3eiwdhOj7dDO + aPHOTQxQfMFFC0M3MTqs3cToqOi2O9FC4JRVGa3mroxOkh+U4XkbBB5Q2CN2NvSC46EXHNePIb73 + gofQOL7zguOhFxxXoXuxHnYvbuaujHuhe68Ugf197ZgdTN0sXLNqucKptBkKw74jVE3EbWVL/j4L + NyHKAHwRVVf9pDKtL1Vvcpy61bucC4Ol1n6sh0rRGN5mPBrd6l1+0OjX0mgNOXZ4VBrdVtXkYbTW + xgJvzCMdCk0pjCGCiiiLHbKj6FBsq6rlQlW8qSmL+mMqmru2rr/34836J+vCDqcTaGS49Xme5i9s + fh/F0r3kV32q627/d/Tpv9LqfxJfqJBSFZ7m12+f6nakg7j+77dPUVmYr98eprCx2Ze7K+o53E9s + qD05N9zk1Kep4Qv15Z/x/Ge08hmtdFI1cMWXh8Ui/BWvmJbKMpd+xktPpvtnxNrdytnPeCnsPj8j + NgTln/HSk9s//uj7wvL4r39fch5/kqf2hU8y99J3nmzoamfFJmXoXyO8EL4e3Xex/qhbpE8sEZrz + 2AxPel5/q6bfT74X3u6JiUP3L6te1v+SueozWrmseo1u6YpGJzEhCaz8jFaYwNB4gGJFPImJET7W + ToLYCsIlZRopLeNOkfskdY36XjEG4AYD8KWTNesWXLnBV2eFV4JJaRwgAmOBhWPMOC61AtTD+sIw + Eb6GWfAZrYRnP/TeTJhwX4fd/PYpGvrX3z4xAL59ioaD8+u3T5iEf5amyNM0yZpfv33K8m+fonpv + +vXbpwdLRvcDsR6mOg+vwK/fPoUv1/uQr9/C2zMPz+B/ovDaKU3QhLv/+Ptfvn77FIbTt0//1az+ + Jwz8ueHID/98aSp1ijwso0Xj/nV/9MIL7/k3nuxLHz/4l777gw0+fkkq89HFT5zyH42VuWcjZe7n + xsm/d+GBjb7cg3s35MksiOJoaOYXb3K3/oYXy0vX9FxR3q2V8MtL0Yr/qNv5AyzwcOfvj/Ifff3h + +/7llf3T943Dx1L8sRR/LMU/Xor/ZUfz6aHl/3Cm/NJM/78fCXWvcblmOi6gZw7zwUZx0DDUy85x + Qa7Wi6XG5vn24PiCYbB5ZJbj7bVWkVy/Sd7cM5j3w8tHRfC+ZGdrboAk6PV3ktPVi7h5ZPrVVgYX + 1Okm1IsoLveS9XzvGrw+MMAQ4gXyAJIgDQYU4lIqTCn2RDPtCTVGaaj8tAruQ/bmlh41cY4DZzDD + DmHMmQ1KScoiJxmVXGvEDCSEKc8nGhjwe46b8MRk4F/7BJ4aWSgtQqYcIl5yD60wlCNNvNCh0Cfk + SiiACbajHjfhPyIbgzIIRz5wMt3CNT74x8em+2PT/cE/PvjHn8E/Hi/7HxjkY0X+WJF/JQZ5fLrY + +EFm4NNwlPr/1X2Z++E5aTRptvIHhB0xKKcu7ChPttYb85vUN1e3W2jvZtEdre6f7pwI2t07MyeX + vXXIbrsd0yDnv6d40IjvuzdOpH1YFZ+ysfEyXEf+uRlSZkyKW9VTNs9tN9Uqab6noB7b6YF+xt9p + UA+Q6MWgnk5rUCamjFVZFXmWtwcTLUFDDe/PlXmqikY5KCvXbnS6VdnIs4ZqlEG2LQzVUO8+C5Vf + s7CVGyvux/D+R9zPqwvQWO6NHDXupx4gEw/8sVoxhI2LCcNiKNEopUF3Eo0IGuLcCIE/8/ej90Ok + 8S3OlH5+ls/0UdOWOzxTfrDQyNYOL45bjRvnt1d9t8ncUqWOzbKYZxa2lxfbaPlNJBonmXBzcrG7 + Vx3MtwDa3tjOL/zGlj1o3hLWc+c3BSPdpHF+1dtEfdOZH+OkSVIlkAOaKWgUgNIIYEP2qSdUM4+1 + 5N54bac1BRXAN7f0iCdNzArhsfYKAGIp5pR7CI3inhMlnQeWa6gxddMq0TgFY3rEFFQgBJZUSigU + RY5iS7TjXCOJHEBSQgktpkqxaZVoBG9v6VFrz1hjAAuil4g4xh01zgCEEPOESKSwZsIDDcFEU1B/ + 0+kpxhM6PX3tE3i2RLOQXaoMI0pIrwSyVnCBGYFOGQKEJcJYL0dO1uPwjzg9hU/1N//kdD3K0NRx + M0k7fds2B4fHB0udkyXmOqS7vHV4tFn1BulSFyT9zbN8fn9tszk/Ijdj9KdqboftdDTcTkdhOx3l + ofR02E7/dzSfplG9n47u9tNRP0nTSLuHotl35bWzunZ2eTWIqlDkuu/cVRTXUniDvPt/hl8Ju+OQ + AFi6UP6650KllZBGEfWTqjX8lbpqthu46WF2P8QWD0JyaZ5fxd1OrNI0ru0U39kpDnYKOXh3doqT + LK5aLq7tFJdXgzjYKQ52qk+TXk//3qhhs8MRj1pusVC3zi6qaltl76nEC+hfAX/t3idFRBySFymi + V8bpPL+aKDwkaV/NFc4mRSgLlTUb93UgAk5XRbNbryiqqZKsrBphfowFD8NtPuDha+GhcYqNXr3a + qaJqlSaZOD+knDJmqXtcwNqboGInAUbCWU9HKfGyHNoXHX5UsB5e8AYMcQKTfaYZojofUAh3N45y + zFd2Vy426Hl3Wx3o9n5/Kz28PO7exuX54vF8ez5/k/rVkyRblzebW+uWrmTz8vwmH8j5a3B94k43 + 3FWyvXBUXSzcwK3GXndXw/7rGSKWmCLpmWAYEG0ZNhh7RoHFQe3LSmhtKLrsprZ+NX5zS48arY6V + 04JQpzw1gAsttaaAcgyENBBSIqmWGExtmRfx9pYekSEKgb0XBBOpNGfSCYY1dcZY4iBmkkIclBlf + VxLjXxni7yFbCExKhuq1T+CZViDWyGjJDNSecmoElkIwoxHCBmhDBbBOWDsy2cJU/gFkC3H0UaXh + gWxhBKeObB3sn/cWblZ2imof91ePbnYPtoVrXi+st1sk4bBsHGye6ZtebpfMiGRL/FRA2MH3Td6X + L1+i/l3RhgCa7vd50d0+r6ZWU1bd97GrO0cgoxxzgiChEMK5ekM9JzmTSAKJOGcI87n/9Fpf3TBa + 92s2XkDZpO86O7xoJUnT8jzvFjuJabl/xEU/clRH5kufXNaLoqhwoQP40yRR06ftw+h/o2UzLCQS + 6Oty726XHv5e/Vg//dkv/bOC+k/CK4jdrb1+p+gKIfYiutKqan1R5kv3anLgqqmzueC3+qQoq4YL + 3rTKVDooAxLyjaQqG1dJZhs+LxpNl1V5Ph65aupsBHL1g5fp9ICrHzfuoyrxH1uVGM8CrJrABJ9p + WrUPSBvCA55Xze7Z9W1+0b1qbHDRXxjAyu0yfbzKyuTauJOj9TehVZOMWVm8WqQ3540bs7ZWdm7g + 7VKzD5a9N6m4ur5xnd3B0lF5uLNw0FgVYxRdQBpYo4w1DkluIRJecaKpDQnpCnLNGIOaTau2AkTw + zS09Iq2SylpDMEOaIU0oo05QoQUS3hvkqTWSUgWUmVpa9fZjekRaZaihXFrgBAbUIMVFkHAMRVuR + cQpgDyWB4l/rXUZvFfE2BavHiBFv1mujGYGBTjnAtEYcSGUEwNZwbSDVznqmxbQWJSZvb+kRiy4g + SRnA1iIAqMJWeK+MBtQq7oljkgvCoKKGTbTowu8hsJRPisC+9gk8MzLXQeVGIWyNEkZoKKhgDAkt + cYhUdoIAoQgduRAAQGTaEeyPkCrCH9r+D0gVSTJ1SHWwmh/atl52pplfrx6qg+r4PNnlO4c+Lk4b + S0e3xhWx6FxIsjxq4dufkvY/aoXQvaKsouCKRPeuSIjkS6oyCq5I5PMiGroiUcdlzW6SlZHJ2zrJ + XBk+cFViajY1jGBTaWQT710RrFX/UifvdFNVb9ajJLNJODOose0gRCV2UxuCCashfolUGfm8W0Sl + 66hCVS4qO84krvwSnbaStCa77klz7i+JQpBc1HPFICqTdpKq4q/hXVqq5yJlVSfcoMqjwBFDoGN9 + 6X1jq6ildFKpqvwyXdz4O2eaU1mWdzPjhu7k0Arx/UOJVeHiYLv4zh5xlldxnrm4VIO4nmhVUv4g + hWo0kPzLm/GR0fyR0Tz87NcBXUCevSF/V0Yz7lMzl6lSNco6IKlRJs3ASVFDJ2ma5FmjnaSubCRZ + lTfKjjKuoTI7Ft4Nt/rAux85ze8O8T4LJJ5GxjuhiT7TmPdqB9HbarvdXLltbd8Yl7XV4DTb2G+d + HO77271Os3O0dbFwC/rl9sxj3k253j9ZubxcASsbab97sNq9XFq7bZ12LrdzRltnG2il2dmNL8ji + +esxL2QOcym4N1gqizlEGiKMPNGSa0uA10xgr+gfgXnHs/SotXW1JtJwCjQz1gkiAWWIQ0is0Jha + biBRWvI/A/OOZ+kRMS+2xFkKCeMOGoaBtYYyrGBI1bcMWImcJNiSPwLzjmfpURObCdWCeAWNERwI + ICQMgtvUIysNYYZBrLDldAYTmwmgE4KPr30Cz1g6VchCwDEBgHokgFbMWsUUMIYIA50EjABCRk5s + RlOf2PwD9ggIkR/s8Z49QvxmicrqJfbYqo4XspujW3ZK9lYW5ovLI3F+sn96psWAYQnWN+jq/m5H + bMcx+C3scWf+cD46DOBtPjqst8gRihaGW+RoO2yRo/WsyqPDsEWO5jMbrebh2gNXdvKsdNFRyEw+ + de5qVrKLg1MQB6cgVvHQKYghiu+8grj2CuLgFcS1VxCrzMbNPFxc3HX5FycZ/+r2zQ7h28krf5oX + V0nWXMmLvW6VvKd8Y+zFrRy0ykkyvh+s1G+C+KCQ+OVKpEl23U3KpComi/a8qObKqmsHAYuVruip + Kum58g5tNExe5JnqJUW3bDS7iXVpODsZD+15UX2gvdehPUccEXBUtNcpB2bydUohJ9QZhUK6Mbur + UwpwSDdGSgPOhRd6BLS3Fxr3uvDNH4V8TyPa47OA9iYz0Wca7c1fnDT7AOr5tZ355ur+xfzCxt5p + 3sS3sH15tAibeP9q+9xtmfOz/TfRLEQTdM7VxQ50GwmoQLpOt0Satpvw+nZhYV/dZoPzAuTzq+dr + +8fxVWuM6liMSc6YokZZbrD3jjPHkLSAOc248dZ6gbUXU6tZSN7c0iOiPY+RDZWwpOfOUiA4Fspa + qbW3SGqhBdEGcGmnVrPw7S09ItpzhCkDKPDWSatCnBtlDEILMAKKCw45FEwAP7WahfLNLT0i2iNC + C4gkhgY6CCDWWHpkXMibJ4oTiSQTnhg7i2iPTari22ufwLP0eYyZUVowQiDgkmqlHJBBjtMKhyUF + 1GGPAB4V7Uk6g2gPCknQ5NHeD/HcDLA9Jvn0Fe9YzpKOz27Szdul+c7BZbzfaSl1Rnd3LlrrR/tE + nJy00MJ2Z/0W5KOKEPKfEiEMe+T/jhYfb5KjlXqTHC1+3yRHqw+b5Oi05bLoKE9tdNRyg29dBKAs + XLTtVFZFR3m0V+SVM1X4tF26tOfKv6KdvIp2q1Z4OFMVsvc3zDDHMGMcy6HjEP/NcYgfeQzxP3gM + o4XoTfy2swPs1os8Ww1rZFIWTqXvCNY1MYDQXL3LeDwoAEP/AOtCeTo3WVRHk9Zclld1ZYF+3nZZ + I8mCaVpJWeVFYhplbhJXJa5s9F3hxoN0NGl9QLrXQTqLFaJo5Pi7rGr9ggC8AOMY5upRAJ4WmA0D + 8DTgkhE4SgBe3brO+0yzfloUezpB3c9O839GdK/ZPAOOPzbPD5tnIX67zpF1XnXTZ3Pm+zl0XoWS + i1E9TEJayKNhEj0MkygMk6ipwm7TFeVfUeb6Ub21inyS2fJLNB+FpTt+nEMDAY9UVqc8RPNtVyRG + lZHuFolKozIJWTCF6zmVRlWtZZRFZd52L92/bl5bWRd1O5FJ87IW36Yg6rjChDsM5bejVjerXFF+ + ibbyrBm1XBqSaspuuzPMwKny+qrw/ihUMYjMfQZOkechPybJolrIK4tKd5OU7b/uelmqwbRlxjza + IDwsAnfmjmtzxbUtbKyTZhzK6I27rf7J28zONlpldtDyLn1PG2jVsiJ9n9tnjuXL6SxdY1UvKb84 + 253Y9hnd3F7PqYYEADQGThWNPLWN4YLWCAtaeMvWuruZdWVdwmu8Y+5wn48d9McO+l3uoOkMbKAn + MdFn+pj7drFctgTuLV1dnNJ4a78sVvfP1cn5cdFqn/Gi2+tVB8t6yV+umrc45paTPKjykq0sc7mk + mzcXOW9U5cpx7+q8e3p9crWUXJytLpfzO8sn8qQk62NksEgEuRPCGS6poFI5gxnwjmDDNBJIM8Ot + c2Raj7mnwNIjHnNb4QyjwCMjCOLOKAscttRQxY2SgBhuCLXOT+kxN5L0zS094jE3kQhaJhwP6i6C + I6goItoKZyFhVFqhCUIeTGtpPirhm1t6xGNupBhygmAEuEHQEgoQ4x4QLqzyAiJBIIRK2SkVKhKC + v7mlRxQqosBzQLQTkDKNNNfAhjVDWAKlMFwwLrGFCM2gUJEkfEIBBa99Ak+NrDBFxFrJBcDKIS2g + p8IKCmj4r3QoKHExB963UBHkBIKPZKEHJoqmT6ho/+QMNVO60LFJAjZlf7XcPbxd4J52FsrTHblz + 5ouzi7Xz7kp3fcSAAojkz0QUzEfyLwBAFJyRKEQJPMKo90UL54MzUlc6LCOdV607Zhq0icJ/h5Qu + 0kkz+hGle1uW+YjWzGWuX845VaSDB6QY31HdWN1h5Djw6Ni7tkpdyL9xqjAhECK+GxPjoc5f3YrZ + IaH9MK+KrFF2Bo13BENFG125q1S+Ux6KwMvhBGE8f2mpoqcKO1ko2ru2c5g22knWrVzZUA2rBkHN + 2d24wiSla7TVoNEZxi81qlZeuoaqxuOivWv7wUVfxUUngThnMZ9mFiDjZCbObJfvM1uX+5357IzQ + xWLQy/ja7d42vz1QW+3ydPNgfbdrOMsOOif/WH7+l3FGPsl0mssOOsp6t0hcLbXsgSrFBZ3vbiKx + 1tzds1vnrRbdWnQ3tNNom9dzRmCxpFYKBZFwIEBHwLiSElHhlALMUskBwnJaOSMhb27pUZVygCGc + A+WBJ9ZSbhEQVijOuKVWQwYg195aPa2cEeI3t/SInFFJC4VW0lokvZRQOKgEc0xIiRhmnjoAGWd6 + SjkjQezNLT2qUg5nyjuPKdYKOIMUtR4BwCnhmFkuIWMMC8xnMJ2G4Uml07z2CTxbohVlRggjXCis + RLFHghHjEFPOUUapxpZoPnqhREnoLMKvZwvQHw2/AJ46+LWbFLJZFtat9c93to7NyqXcXV3ZPt3f + LEmqEDtN+WJ1eyS0uRoRfkn8M+wL0+huixypyKpBiPS73yJHbTWI7rbIUb1FjlQVFUl5VQt3W9cp + XFkmefYlWs9s0ktsV6Vl1G/lkcuaqjmM+FNVlDpVVlEZdMBVGrXyblH+7T5OmVYUpF2GkZCpK8so + Ta5cOgghhdpFNlHNLC+djfpJ1YpUHSHpOkmZWxd+6XtT/gpq49k9tQsVCsPnraTZetATf+hAuMIm + ZR5owhSFHz6FCXNNdeuqys2FuM3BXEheCoo695LosTJV0kuqQdxWg/juccX144pVFYfexj4v4u82 + GiMF6Pe3aXZw3iK5cg3yjkAepZySqg/fJ8hjBLws4nP3NqqHe140J8fx2g4+Ks5mXZaUeU9lDZup + Rt6tysS6RhneXolqdLOeS9KyocbjeG0HPzjeRwHGf7hy9uIawSwgx8nM8ZlGjiXs3uyc7S0V7SQp + 0kt/3c2vT7pddHS8fL28bbdX/C7tXpx3exf5zItzu+4WOG5tuhKv6Wt7JkwjK29P19vAE7e0f0IO + CtBfIatX3a0xajBiji2wwGrvrPaME4Yx55ASKiAVGCBvAGXizxDnHs/So4Y2Ss8Yh057q6UwlDmJ + nDHMaaGNct4YwJ3i7o8Q5x7P0iMiR6SEx5YDixVxUDEmnWEaK0GdU1opjbjyDk5raCOegtVjRORI + DdTcMW64UQ54KIFCyLFwho2BVtJ77zwx8o+owTiepUcMbeTYWEYFNxZCzp1EijlPLAU2jPBQKE5i + y4WcxRqMYlJw97VP4FnxVu0xU5pzrJAVkCGoBPecSY+5pd5hqDiB9hWhjXgWxZIYgeiD7t7TXY7f + jO6+qIMOTxaW9kh2o3tXkJ0vV7cby9f+gi6UkKwXO6tnl+triyVZPKjOxG+uwbh0741ESzvz0Z03 + Eh0OvZHozhuJVJSGxO6ySkLO95ChFnnu7/O/+3mR2ukKbnxCbOZUUSUmdXN1t+MHJyy2mYrvuh3f + OWGhlGBm4yrRrlJZXLvjqhsb1XNzqt35T6NR9ZOqckUjad9zyq9huowXADkNLf2gqh9U9ddQVfQP + 6eK/jKqmFM6pRtktOkVSJlkzHTSqJBs07iQUGqVTjXaehXDbRtotrpxtJNl4VDWlH1T1tXUPgYDU + jyyOrlI3ea7qFeWWQRLE0elQHF0wpGOIJJAAWOO4H0UcPTQuq2YRrv7w8xmkq5OZ6zNNV/vnRYUG + K63dm/lj04hTuXK2NujcnJXk1N74xTO47JfR9ZrchGLm6Sq6nD89OdK7bcNXkuPOXn58UqClXn6w + M395cna10jgS+OZ2vk/B+jj66FYAxS2lkBvpCJMUeGYAFMpCACCjFipk1R9BV8ez9Ih0lVEkLQyR + hIoBBanz1AX8B5Sz0CkppQRGCfxH0NXxLD0iXaUeE+KgZyQMYCYg1A5BSQ2iGCLFKRJMUzy1+uhT + sHqMSFc5tNIwQYVFCoQocBIKTWqiPMIUKk0kspAy8kfQ1fEsPSpdZQRLaawHiDHikBUEOMqhcUAw + Abk1SmPr8R9NV1/7BJ4aWXpIPaCMUKSgF5JwwpSWygDtrONKCkI5Euq909VnFRr+aLoKp0+Jfq95 + lDWuViVcr87Y2R4+pZ0tRlo7e73VzUHepa4tb84op7db87+Frs5Hj72RKHgjD5KcpVPRnTcSDb2R + WoOzVaOwqK+qqROWfwlP3stRlk7Fdz2KC9epktTFd/2JfV6WSRpneQjxVN3id+LTX9++2YGmJ3li + XO4PO0WSNf+RnY6SzvoibP3UdHlU9fNPkySun7YPo/+NDlw7r1yo3RpmVfS/0V4rr/JmodptVxWD + v6JVlyeZz4u2qhJTfvq3H/7n5NqfRLqsja910+XvE+lSQtC/IV2bFM5UE5XRR5pWwzC6etKGhTAv + bEjd1a6lekneLYJCoHWu06iS9ngy+uEmHzj3lUGyygjORxcBTdoqLU0y+XqXQDrIkXmkA6q0k/c6 + oMQ45UfSAQ0NjA5/vIf6iJj9HUz3Z6f6xKT0KaEfiXMPm38Gp05Jv45kqEdJNBwlISThYZSEvXUY + JVEYJVFYVtKgPt/upK4ea3XwwlB6fsp05p+9R7/LwN/vb3U510mSuUMAAMaEIwQwQJzjn9pGT+KG + H4pLH4pLv3L/iZ4WJ32iuFT7fUk54e2nuO3ODQ8WiyrxiallqbuZT/O+K8rwBjStRmBotQei0nQw + 3g5U3HY/dqAfckv/vpPDs7CTm8CsmW1Nd1T1rxua8MWV/WSle9I9i9He4urJ1kY3X9D5frx0Ojjg + C2twb33mtZa67UIM6B5Ae0dqLV2QmbxcOEDVZftK9NVBU63CY79bDq5WF5ZffzRvjZZIYc+FoRw7 + FjJEtHXUIyk1VpBAwxCEU1u6fKJaS+NZesSjeeW0kF4Y7qWzjFjHGSTWGsu9pV4bIoDRWJA/Qmtp + PEuPeDQPlPAWOSkN8UyGA0whkYcSOyg9oAoyLBgk5I/QWhrP0iMezTuureYIIuElpAoAb4CjEDsk + qVESIYwtI5hO6dE8m+jR/HiWHvFonjhBJRRWIuFcKErgEaRBJY97w70CBHqsIQcTPZr/a4IvxLe3 + NARiJFNL7LDWBkGFkGcuBE4JQRDCkitvkRSWO6z8a+UHpyIMQoBJhUG89hk8LyZDILSccY8JJYZh + xxQnHlriCMHIE4i8l25kBTGIwCyGQVDE6AcJvSehVLKpC4Moz/qdnQWXrp42BUqOdft8dbAh6VbT + bcW5mN+4bq/Lk2UhFq7Xf4uE2FEd9/Dg9kXf3b6/otrvi/7m90XaZTaq8hq4RvVxSqTKKMnKTlIE + Df1BlKmqW7i/vtcP7QbpryqPggKVC1JieaqKyGWuaA7+iu5MXd7pgg1rit4pgF3m3bBaRDv1T0Y7 + KgtaVK2sjuS/b1+dXTUslBq+01GZS4d8ObODuKxcu+1sdNjNFnaPyqivyii4k48b1O2EfxHwvWJq + Oy/c39o5ZeD5KUB7wL8o/I+IOHjz8ffHGn9/rHH9XGLt4vBc4iqP78wQ1/2Nh/2dG49P//52zQ7G + XlNFMYhTFx/kg3eEsSHzPYzfKcSGkr8Ise8Wp/JLJ80nnBknjJtzNx2VhQEYQHDpil5YH7KG6aZV + t8jbiSlDjcVG4ky9Go6JsZ+/zj4w9r8EUliLnmGVFwMpXNabeAgF54haSsTjrDjncQyREQoLCQTi + I4RQLGe9pMizMOg+4ifehLpPYJbPNHYfbBdHqe8t0E776PJ4O95fWvXtS3ydNvaYmJfN1tL2Xn9l + wZbX82+B3SGYJKO8YacbVxe3uzZm5eXKxm3jMt9bOj88bOY9wW624rULke/kne6eGENwzEtjENRA + Q6atpYY5yyE0zDEFtVeCAcWZoXpKuTsC/M0tPSJ3R4hqoZGjykNNmfBcYC+wMoIKwgR2hkAu9LRy + dwzEm1t6VMExxAKGBCIouGEKOVTKKUKEtEYY4iD1hkMAJ8rdfw83+9en8MuewFMjC+ENhQRzzT3i + FmFvGbZKG+5qZT3NBHdIjizO9E8GnmZs9pE99BibwanDZri/fnmQbK3GA905P7vo3hK1d7GaFzoz + h5t7cgsdborWVltumvNRy05i8jPcbPl+4xY93rhFjzZudXnJZHm4cYt8kbejyhWFK6u6PmWVR+q6 + q2pNe6fS9hQlFD3zbOfC/9FDdeJ7pPOfxH6F4AvEHN5/4UtHJ/kXDACQzw7pRgBIv+S2M6SZNNB5 + 0TzK22squyrfESEqFbi213SSiOgHS+vbECLC4ct69EnWc0XpJhvhiAo696igaqOleq5hk9KEyeVs + Q93F4ye3zo4HhVBBP6DQh1jShxL9G3Ghn5rhMw2EWnH3bLsRrzbTs8v1aqGdH9NrfGXPO8cNmix0 + aT9lB/wiWwNx+RZAiE4ykuqsxU4WCzffaN9a4Pt86azZaG52rwZ9eL0VL16cbSaw2sgW0dn+63mQ + kFQoxKk3RjpkFFbIGK6EkhoCJISQ0htv+LTGYU40OnA8S4/IgziHxgfBbisgER44DzmRgElMhcYW + KQoo9HpqJZKYeHNLj8iDcIhtNRRKKC1H2gstKJEKMek8UYRzxw0HRE6rRBJ++9VjxDhMxbgXUAnk + oCRSGoNdCF2z3ASRdIoF0MgaD6ZVIgmQN7f0iHGYihOjuBFGI4YhNxRrCbCiwDCsGXIaQMEMtlMa + h0kZn4Y34kim9s4zTByQxjgnlaLGSYogZ5BjqJ1FkhslpZ3FOMzJVXJ97TN4FocptBDGYaUBAdRx + KJR2yhAABIEAcIKYhEzqdx6HGfJuJw+UfwiFZ4Iok+kLxNzKN8v2YXVztLzRjXsLzcbNvGpum4MG + r8jR8fqZWZPJTnKBeldmVD2qnwrEPPju8UXB44u+e3yRir57fCFYs1XkndxGVlUBQFd5Hfi4qNo6 + jPlozxVJfhcRqTodp4pyGO3Yc5GK/k9HVabVz4ur/xOiJO+LfkZVoZIQhVmWuUkC5xpWa82rlise + hLEe7l1+iY5a39s4uIv2LOqSoPWV0bdPVaGyMgl+2LdPUdlxJnHlfWhnyPVPk6wu8Pq9R65357hN + WbzlI5L34LL3XVLY+EHAqlUk7U780IHx4id//j6zw7vbXd296jYL1emod0S7Ve+m1Xqf4ZCEIPwi + 7O6Ug3DHiQZCwlsHaomZEI8dRpZWVcPddFxRX1o2whrX6LnKhZWm4TLbLcaTlAp3+oDer4PejijJ + 2KjQu8zNxJE3IlZIomvkzYbIWxPCYoiY8EgDYQ0cAXkf5nXqw2vFpGZEgUDMAvSezEyfafhN7eKG + uk3Xmig5pe3OktjegnDl/GK907vevz7by85bC93Ly+uDRfMmIgSTTLksNmlF0svb9Z3rwRa52QAH + lUqvbnaWW4Q3euakrMqdmBa3+er5GMGQxgJMvCTUKgo4p9ZTpy2VFiplHIFOM+YdmVoRAvjmlh4R + fhvrqNaGSU0wJwhpTMK5g6GIKaAB0YpKwODUihA8jfp6A0uPCL+59BRBAImWXEIBDMFMeekUgBZ7 + orTiAmFhplWEAIo3t/SI8Jto5aSxQGhntJRSBLVKI20QH3CMOq+tsFK4aRUhQPzNLT0i/PYKAEQ0 + MIY6qQiEHlHtUYiqNhAggKxgRAI9rSIEgE3DG3HEksIOQCa0UlhjiRnwGDBKAcHMe8w4QA5ig/As + wm9IJ0a/X/sQntXLUTYUu4VaQoadVBQKwKVR2hrNqFcKo6Daw0el3wiTmaTf5Fls7R9NvyGZOvq9 + 1InjrLerd5eOb3T7dJc52B/Alts7286KQ3LJO36pmzSvNvj+qDIE8Gdr3dZJ90PXL3rk+g1B9r3r + Fw1dv79qiJy6MsDy/lVStsIfkiLyeeGSZhZ18jQxg6iTDwF0GanC/Xe086Aw0CnywD7KyPWG9qxv + 81ek2qGGbqg04KJ+Kw8NCdUFosI1C1dFSufd6u5WtVztHc5uJ2lSqSBx/9DQGp+/2KehjMIQytcX + 2bwXevGk/WF5mrJSE49A3xwCCMzB2nOPQy/iYVfjR12Ng13je6vEw8cXhy+EpxffPb24Nml81/t4 + 2Pv44enFqnAxFViS8bj6dLV5dhj9qWqqtmqqX1iNIooKF5oNP/1Wrv+rq0s0ux6zdxnyjuDTje+j + UwDXLdyVSl0x4YMA0bV/i4ktXCcvqiEVrPp5w+alK4P2fNUa8wBAdO3HAcBrDwAcEXDkqPdyYFqT + ryfBCXVGocdHAAC7GCKkNOBceKFHiXoPjXtdzPuHAPHk6P9PTe+Zpv7nO1cSrvGVncHFzc2mkAY2 + 1rYvL+ITdX6x0PRr8/lJur3VPFjEyzNfFbhza5dQ+7g6JCtVvrp/tVyg+Wt8eHEEN6o2BWz19ORs + heuKrPdfT/0JJoY4B6iwTkmqNaBGeeooAlYjILzUEhM/tSHvE60KPJ6lRw15J4Bb6qTGzHisrVfO + asKVtJhizAAImpaSoz+iKvB4lh5Veph4akIWPjFaGmktloB5zQSijGCrLUBaWTet1B9PweoxKvUn + ShKPhfBUUqIVVgRrwpnGlgBpNaLQBmHzP6Iq8HiWHjXknQLiOPAGC+01F5BQzhA0AhnKrMKUAwQJ + n9aQdzZRqZqx34ijHRoC5gyknHNlJFYAW8mpFuHfhDPAuYGeaDObIe+cTgj6v/YZPBvQWjqnGAIS + SGQIkEYpAowiykqHqOHUUmykeech7whC9qGhcs/8MaRTx/x7K3p7TR7FQMrFcg+jDbeUFzun62wz + OTs/aq8t5KvsZP8ib3bPf0sF5scR70OH707Ft59HtcMXYsNrSd/gnDvr0sREwdaVCry+UyZpbgY6 + yf6KmknPZUPiXnY74aeS3t336gB21Rn8FZC/7Rpno0J1ElvLs6SqaLqocLZrhqcEdSm6YT3hnovK + QbtT5e0ghTyE+WUVdWohkqQTZlpUtvJ+CMEPNYjzXl2urv7dlkp9aP3dWcPjryjTSlwvfCmgvbpu + cRTC37vN+ggjyBkXcd+5q2jo5MfdzpQFw/+d8c11urpRuNSp0pU1XI8hnLtsteNO1YcQYAS+dFqd + 8bj9RG41O7i9WbhmGK5OpU3VdsU7Cosn4rayJafvMzIeSvqyDEwoVG5aX6re5HA4h725MFgCD2vU + Q6VoDG8zHvzmsDcC/H4BIU8J/X7hwl+Hv41TjKtR8XfzF0i+SBki1ZB5JPmiOEYxRJYITxiXfBT4 + veqmSe3lxyQ2d21df+/HDsIn68IWrFOnRAWsmqf5CxvuR3ziJa/5U6tq16+9/0qr/0l8odouqh/k + 12+f6nakg7j+b8hrK8zXbw+z19jsy90V9fTtJ7bpqnJuuAsLP/uf8IX68s94/jNa+YxWOqkauOLL + wzoR/opXTEtlmUs/46UnM/0zYu1u5exnvBS2x58RG0L5z3jpye0ff/R9TXn817+vNo8/yVP7wieZ + e+k7T3actYNkkzL0rxHeBV+P7rtYf9Qt0ieWCM15bIYnPa+/VRP3J98LL/bExKH7l1UvC4UIqs9o + 5bLqNbqlKxqdxIQKEuVntMIEhsYDFCviSUyM8LF2EsRWEC4p00hpGXeK3Cepa9T3ijEANxiAL52s + Wbfgyg2+OiuCrq6UxgEiMBZYOMaM41IrQD2sLwwT4WuYBZ/RSnj2Q4/RtFxbfR1289unaOjTf/vE + APj2KRoOzq/fPmES/lmaIk/TJGt+/fYpy799iurd89dvnx4sGd0PxHqY6jy8/b5++xS+XG9Bvn4L + L848PIP/icIbpzSFc9n9x9//8jUkbHbdt0//1az+Jwz8ueHID/98aSrdRdEUjfs3/dEL77rn33i0 + sbx761X/9t0feCD4pQpEjy5+soX90ViZezZS5n5unPx7Fx547Ms9uHeUnsyCKI6GZn7xJnfrb3ip + vHRNyDO9Wyvhl5eUPL6jzB8giR+giIc7f3+U/8gXhq/6l1f2T9/3DB9L8cdS/LEU/3gp/pcdzaeH + lv/DOfZLM/3//troBDQL0Qmv8LZmOhahZw7zwUZx0DDUy85xQa7Wi6XG5vn24PiCYbB5ZJbj7bVW + kbxVPYZJJhH5kp2tuQGSoNffSU5XL+LmkelXWxlcUKebUC+iuNxL1vO9a/D6YARDiBfIA0iooQQo + xKVUmFLsiWbaE2qM0lD5aa3HANmbW3rEYATMgTOYYYcw5sxCJYwK1XoZlVxrxAwkhKnXhX38azDC + 76oSMKm8ltc+gWdykkoLwThHxEvuoQ3VvZEmXmhjGIVBWBJg8q8yZZ8e7Xmn/YSrnYfzLT1oGFW5 + Zl4MasmS3LpCVfkzMPvDEzEo2egiUKZbuMYH//jYdH9suj/4xwf/+DP4x+Nl/wODfKzIHyvyr8Qg + jw8WGz+Ia3gaL1P/v7ovcz88Io0mzVb+hLgoMH1xUXmytd6Y36S+ubrdQns3i+5odf9050TQ7t6Z + ObnsrUN22+2YBhm5ttTzoKfXBEaN+L574zCgh1XxKRsbL9Rn5J+bnXCe5SIxK0Xe3u1WrjjsqOcD + dYYDejQb3Lpk8D7jecCziqSP4nkyFd7cE63qBNrXeE41dBEWkEY7SdOkdCbPrO0Ww4rAhbJJ3tDd + oqwaoZZcQ40V6RNu9JHm+ro4HwuEtWjkNNdaULmceKwPEERR78WjRFcpqXht1e+9f23eR2WnX3WQ + NJFZPtvZrktXu27zBqyIJdbaFzf7ldlsHeP97cbaMT3prWaNhU18u3ShNo/fJNt1kgdMl1V3ewFf + XZ7d7vQXStX0bO1c5Oed7jHYXI3J0eCg1Rpc7Z0gVY6R7QopZ5QQZ7xWQPNQhtohRi3mkAJpPOda + 8WflMP8RcvzObFfM39zSIx4wAUalNcwQaSEgmklFiYeaAGOAV0ARKzxzFEytxiV5c0uPmO3KHHQK + KsmcxcIRqT0DNJw3YSk5N4hqbJx43aHp79S4BG+/eoyY7QoM5tJDo7FHiFFmiOLQYe0MZdxoCQki + wonJFnj6PYem5N9Wll/2BJ4LEiiCgffaIC24IE5QCoMclPAMOqYtZ5BqIUY9NGWCzmBaIEBPpV// + 5LRA+FRFewrwVxNU++cb/Kiz6tjgun1p+uv9ne7Nyk62urXTKQ5aLbgwANfXB1vzI+IvIX+Gfs1H + ww1y9GiDHN/vkKN6hxzVO+RhTXUVrapUmVBHva2amatUMV2c7DsuuK9hXs6VBFLB4pDBhgTD8eA/ + bdMwif1KofLYKuRxvYq0TcMl9isGXCLvsabjsbVf2oTZ4XEmVYOKvSMGByF0BXmXCA5ILMSLCE6V + VZFneXswWQpnm7dz9z8dZKh8ktXlllVZ/c01T7KaT7eT9GowHoazzdsPDPfKGuuh/KscFcPVj3Hi + EM5qxRA2LiYMiwDhcCylCQl3GGKLYFCgGgHCzd8P33eH4WZBbW4y03ymORybb6+tXNwqlZ+z/d3z + tjvmV6h7jv3mWb50wfbTDF8f7rerBZXPPIdr7DXzzeO0eaaXegvpWvP2bOHsaLBvb27R3nXroHG8 + TaQZCNjY2H49h7OKAcGVw94gQZTXWmKkPaJAKmWhBhr4UIz9j+Bw41l61FozzhNvuDHSMGcVYJgS + 5ig0XnHpHTTCS2jsn8HhxrP0iByOak2g4YQBRKlBnCGmjZMQS4OpQU5Toiy26I/gcONZekQOZwnx + RCoOPEFUKyEcAZxwDIhj0gPijGHAaDuDHI5COCEO99on8EwFDROBqbdSYCSFRoxQZJ0U2FPvCJLG + huN+MXLygphFeS4gsZQfHO6BwwHxVhxOvcTh9KC7tyXMdUna6w3maHlxbHOnyHpfNkm1faZ3Wmce + 7cdXq+L3cLjvO+Qo7JAjFa2osooOagK3UBO4u+oX22GHHJ2qQShfUf+lrgntk3BNKJMxrBaduf7w + l+6MWEYrBwt1ZY7v2lx68IDxguxWKzGt+oJasysdRGXYdwf1rCCz1U2rQsXD6xMTZa4bmhyV4ctT + JJr1N1oxl7l+eVeEAj52Q+JQCyT2wXdPB7EP3m9dcsKobuni3MftQVmF0t7dMg6uSly7KnHtqpSv + 54Jv0KjZIYVVy90M0udoaZYFuMrrvmVp/z3WpACC0ZcrU4ex/aXr0y/OdifHCilkc7W8X6NwPafS + stF0WUjs0Ykqa3SgGq6n0m59blGOhwkpZB+Y8KMoxbsrSgH5LHDCn53isx2qd9E4rm4O5pfXk0Vz + KcuOOlxxlydCLlW9plHgdFltckqb6GT7LRDhREX84c5xfntDr65Xk43Lan1hEzRaB3Lx9IIfdHTJ + jvc6rfbimdo9MFevR4RYaisRFIhSYRAm1lJkg/K2JFpqS4FR0GA9rVoQkME3t/SIiJAhzLw0TklF + gJUaMkYIsdoQrl0dvAeoF0RPKyLE8s0tPSIi9Nh5a4QElkJEsfDOQkuYwIoyJyjhzIWiK3xaESF/ + e0uPiAghVAJjzwm0UhMrnTcOYK2tc0wqzgTAEhskZhIRogkhwtc+gWdnC9A7ybiG1IkwcLFmWhOB + oXaUUEa8chARKkcP1cMziAgFY/gDEd4jQoDF1IXqzfetoYOFQbZ2cLR/uuWX94q1WwS5u/WrZx6f + l2itvbyyte2vRg3Vg0+PpV7HCA9rffu73XE03B1HYXccyODRfPRodzw9OO4xD3hgXpWKQ7vnXg/S + XvVzs4PAfF7lzcwVz8f3DEMwRdo2eZ/xcgzRl1NWa8wRBqpVSTrRoLns1qU0zIHG0FMOfL9sfK/N + 0WiGtqaDhsps47qbmKt0rJC5+j4fLOyDhb0/FibpDCSvTmSezzQQ23Y7VwC2bX/nNjml1l+cgP6O + 3oizzZMFWIoyvlo/3XGtXZWfvwUQo5OU7Dwe7C3cXrPmSXm+ugbNjesQ21/0bNE0+TVePo7Vxtni + KeygrTFi5pRGmAGIIUUcQ8GQN0ooIqxGiBhKsDKOWzi1QAziN7f0iEBMEOOlodhzCABEGnqlDEdQ + cMOYwtIS6Z2nbFortU40DnQ8S48IxKBFQBjgNSBCIwmkA9AQwh2migGnNTdcKe2mtVIrfvvVY0Qg + hqWxmnqhrWDWE6MwJVoiILgP+JErRAHgikxrpdaJxoGOZ+kRK7UKAbmlwimhtDeKCKG0pc5qYBXC + ANtQLZcQM6WVWinj0/BGHMnUCFLmjOPGYkWt1tZjyxSxXFOEDEWcICsVnc1KrXhSMtavfQbPApuR + R5gDQZhiThkLLQcUSCSA18ZjZgnVVHn2viu1AobYRyjoPeelYgpTshsXeysl2Wh1VltFk5zm13Zl + VRyo7dvVVZSsZIk5PDpot/LNs7XtUSu14p/BvDuuf1fKtHb7HpVeje7cvjoc887tiwqXhkFXPpRS + zbPpSsl+jsOCZxvXXYy/dy5EliYmbnfLVpHn7TK+71j8csdGS8j+hQ2YHcK80U0T1x6kee896SLy + wsEcA/Qu4yyJZC/HWVYt1+yGMaKyyRJmkBU1eWrnedaoL6iSsqoHRdKuUzSdKqpW2ShV5dI0qdx4 + hBlkxUcV1I+07HeYlj0DZbYmMs1nGjCnmxdSxrfFHqADUAJmwFo5f9nsNZe6+3413fNUeCXP1tA6 + mHnAzM52bNoYLLkyFhsb7BbubnaPT4+v1tLVTnm6nVyrs4vd491rdDgGYEbCSaoN8BgSLYBTTHut + oTLMOmAUdwgTaBH5IwDzeJYeETATSawCFGJAiAReIelwQMrCeW2wMxhhSbGkfwRgHs/SowJmogD2 + AFEgoCdCQY8RQNBSSYHGRhnEpQIS/xGAeTxLjyqOCLSXYePgFUaOK0e4gY5I6yDkGikpw6Mg/o8A + zONZekTATASi3HpCJCXGe4kxtRYAoTH2kGrgEFWCWPVHAOax34ijnZooHk5Mgtyn1AQCpy2DxEok + KSUMIScRRVqCPxswv/YZPFeDMUpiyqxzBhLgnLEKcs+QwNAzYxzgmABl3hNg/vlCiYBITj+A9D2Q + 5k832lMApDcqvrzeO9neAFd7pxk8yeEOKna6vV182V84XziJt7u9PmGt3sr6bwPSwU38T3T44CdG + tZ9Yqw8sBz/xWxcBKMvowVuM2moQhXz2SEX1h8I6ZaMiyZquGF49ZRV2/g7UHpzmspUXlelWdxn7 + Wd6bA6QGyMEm8XfXOa5NUifsD13n+MEYcVsNhsn9Kg5miIdmGLN2z9s3dHawd0tlJYTPduqzzLwx + SEj3fYZVE05eliHV1Rd7NTHOPRgkyVy7W9VtMHmRZ6rRS4puOSwF0g5YsaXKxmW33XG2UeVjUe5w + l4846tcxbgO5elZ34EXG7TrJxAm3kBQrRliIoqZ31X+YJDFEEnNLibHSj0C4lzuJde3kdXHUswK5 + 4SyEUf/8JJ9pxn1Gb3Y26UUTnVi3my+ui4PNTnLaTEGxunrQY5tJtdNQzUG7uTD/JsKjk8x1Xzk9 + dYvLh0kvLeYXuo1y/jA57/Vvlz2WmB26/eNur1xcbZC9vTEKAAHvjGOOirCPhVIKD7Ex3lqluZOK + aAWRFdJOK+NG6M0tParwKAUKAiaUY1x5ZoAhymiKqOKOeQI949QoyqeVcYu3H9MjMm7kFAk1j4nD + zloCIPIWQ+iBxpp7bBwCikEtppVxM/zmlh6RcfNwRGOoZUp5CgH2mCMuIcQIUC6BENR7RbCaVsZN + 6JtbelTGjbRkBEKGwpEkJ5AhCiAX0EhKtEFBmURhqSfKuH+TfsO/PYVf9gSevwwF1AgpyIzmDAnJ + hQDeOoGJx5warBRTxoFRues/GXh643oJpx9xvd8xKpo+jNqQKxp1Di+v1hDwdm137fr4ZGev3LZL + y/ICwJNWUlC+ctkuT/ujYtSfknjdHvoh0dAPiWo/ZFhVKfghUUuV0dAPiao8anXbKiv/ilSa1h/X + Gg9eFe0yfKpddJWkqbPR/3dcuqiZ583URVWhsjK4sf//dJHVGtzMdfI0qZKrOZWmLg5dissrlcZl + qlQZJ61Ll8btULrbVfHQQrWBYh80Z8PVrohdFldFtyxdGvt8THr6mxozO4R0TRXFIE5dfJAP3lO1 + JuZ7GL9PTIoIkS+rT7QG5Ze8aE6OlKrEzrm2K5pJ1mzYpJmExaTK87Rs+LxotFWRZK5ORfeFK1t9 + VbliPFqqEvsRE/xaXsqtRYKMzEuz3sR5KeeIWkrEI14qnMevrZa+nPWSIs/CuPuICX4LWjqRiT7T + xJRz3HfrOycb89fXm7vQFOzy9HyAk52TdPly+bh7eb3aLTVpHMn+mxDTSXK8w2Qz3j83RwAeq/1y + e+MoX9MVOzg7zM5O1PkF3bWL1XqxsLF4MP96YkopE1hYwK3AVgFAoAFOQK6QCKFQDgCmicF8aokp + fXNLj0hMMSacUYUMdkpxbglH1imMsfMQIWAwNAA6TaaWmL69pUckpsozArnHVnqLGJDWGwY4gYIz + bKEzxmhmGJfTSkw5fHNLj0hMiSMk5OdTz4LMMOCYUcU184J7oKnAzknFgJlWYkr5m1t6RGLqGWQB + 2xHNFbFeYIY4sohRTBhjmGHrkbMGzCAxZWBSirevfQLPtD0wo5IwZ6QSTAflWy0AcE5Ca7wTgNEg + oS3QyJGqALM/IFIVEQY+EOs9YqXPefObV9FaXoHb1QHXnZ0DgM4O+MbpMTk9KU7LBtoYKLJ4NTgv + ziQ9zvbIqFW04M8g1uU75yW6c16i2nmp62QNnZdaOeG78xKZPCtd0atFc6cHmt4jnO+FomII4nvP + LL7rXFx3Lh52LP7eqS+tqp2+Ho7+gpvODgRt52mRl06+p3r1GPdA3rptv1MGip+6aI/FEZxpZXXc + Xeaqfl5clRPVSBhIiefS/9femTW1rTR9/P58ClWu4zD78t6RADlw2LdAnnrKNUuPLZAlI8kY81S+ + +1sjO4EESAxxgp1D5SbYspYejab7p393Z6ZnGhjiTA+ytsnr1BY+haodBdRtC5C3q24xzJ8sHtV3 + dcsv4tHvw1DvpZMwLQztgZ85DHVaeW3gK/EodVE8ygGkYNYhPAUM3QKfujSHP084qhYBhf78DF9o + Dtq7PHi/jd1ef//i1O70T/gWx1fXO3qr704/lB8+HBxXMr+C9tG6exYOOst+VMvCr6brgQ33Buvn + fKNeHe0vX7mt4SbDB2TYlzu9bPtw6+C04OoJLeuJQxRMVC5ibYKioLQ1AnGMCAODpVaaBjG35XcJ + fnZLT8lBATvsgvDUI+BUCKQAB6GDxQZbjajAQlJk5peDPv89PW11hBAc4ghbg7QUgkliiHVUW4y1 + sSSg4BD2aH6Vo89v6Sk5qGYiYEOUCyIIy6jk4HCss8IxxJRyy4gCB2YB+1H9cBR+2Qh8a2TLjOZc + cCkYxRRZEExbhqzQilvjtQqKchXC1P2o2CLqGcmdoiH/atjG9NzpGfEZZqzo1aeZ6uxth5NzW6zU + Nq92/Ns2qwM/Jf235eb2KeufTqtnVD8D2zaje9wAtcY9Tm7c43Hed3SPk8Y9jpLFpl28ydJrSA6W + 9w9a74rjFnmd2EEdk8jTctKUPvqKSVolrhuleXlET2+S7WKY3KQvJ6ZOVrfebo6PEi1bpyEFn1Sj + vO42vekvoYzVOqtJS3ub5o2oMp7rrfOIyeuNrm+Outc3Cd730oslmxb9ril7ZkzovlxtVCSmrYn1 + R614sVWrLlom962bq41J3mXVcsVli7QoI1SqJ6afP9PZLQ5MLAdVXRR/EElU6Eqc/5kYEQv6cCMv + 6A7ewKCaHTcktFy6KSbcoAWTX6VQj9qmhHavKCFKqy4GkNdP7NwVj/ECDV86d/15nbvwInDDn5zh + Cw0N3wVr+nv76eiwVWy1BmRVr5zsraGsOjs7HjBzxD9sdd/6VFzvPEsTezHLNtQ0qOuNvfrYHFx9 + aNWerSyfHm1/2Fu/qD+03x1vZdm1KI/V4c6acY+Hhs4RzxiiFDhCwK2mVhoMFLhxQXlphJXIkrkV + T9Lnt/SU0NAjFYS1hlPEpNCUOaMD9oxwbg2WSmHKY5b0vDaxR+LZLT0lNLSUU4hNjKhlhiCKcGzV + BUEDF0Y6BkTYgCie1yb2mDy7paeEhkRKbSHCb0EkdggBkZwyp4IJ2HmGnMRgMV/EJvZoVtDwsSNw + 53Ym2GmtCLiAQpDcE0GdBxaYFhgxTw3GCrCfFhpKyRcQGmJxp17XvxkaIjl30HD//ODibNWfnO3g + rAa9+f7d8eU7JtXp6FAzLDZ6BxuDY5Ti61BMCQ01+hlouPLFN25o3MQ3TkwJSfSNkxvfOPGp6eRF + BT6mPg+LHuRvkoOmL1JjnCYVumvqZJjW3aRKe2lmyiQ64iZLumCy+Gnj0kM13ncTuBV1WfRTl/hy + 0Kma48YTakbSN0LB5khxz/lYNwj566SbdrqNviJqC5uDluAHLv7VgdxDmaQ5XAxMTCqGJlX76/MY + plmW5DBO7bZj8lhCNcjqpAhJTEZ2oyTNaygvI80s8nlDkhMSsgT50hDskjO9/qAysWOSuU5zWGrd + CnoatDcZ2JYpoRWN37oZ2NaXgW2leasx99NI5G8+qcUBkGkM6fP79EALDCHNeWUv/8g+TxiLh9O5 + XT7b/k5XV1ou1QB51R52i3bVj2tvgyXqtAftNG/DVV0aNyjL1A0y87RM7niUFwr5OAoZS+n4qSnk + eGWZOYY0WsUus+yWetGEIGPpS0SJAh84nQJD/v2js1vUopeLACF/foovNIZEA3R6sebecyOVPv37 + n721Ietv2fNzBMiMDjYqXInh5Ue+KlcXXrvIYHu5/nB8dJHttw/P/Pq626r/3v1YbA7Octm93JPW + lKtvi5Ma1h+PIXHMTFNUSkKM8IZR7J0EwSwYDUSAc8FQjP4d2sWnWXpKDKmt0sZShxUXhGJHkRZe + BOEZxoQwhkBwxAP5V2gXn2bpKTGkDBgDxo5GtisNkR4ACaop9tKZ2PPJey7B/iu0i0+z9LTaRWOc + oJZgIrmwTniLlfSBOBso4gopJI2nks9t1cvnt/SUOdwQy4o6pa021mjuLQogGGISgUYUtAakpLB0 + Tjs7CSTnYUWc7qbW3CmqhHbKISIkl94RBRKCY8Z7RAhznCq3kJ2dsJ4RXH/sGNzJl9eEccYdphqU + cxhzMCCDNkQb5C3iSjDKf9hS8sbCeP47O91H1++sq/9mus70/NH199vdtQ8M/9N6d/jx8mqFC1aI + y4+lWr14u7V/UHc2NerT3ZXd9vn5b5HkHsagLxl2i6QJ+sbYOwZ9EUl/E/QlxtXp5RhYRxSfQVV9 + 2TaURd6w6cqVzT4nit46Js1/xbZfJ1XD5EMUds4XtJ6gs3E7JIxjN6RBNQ6MW+NraI2voTW+yla8 + +tYQsiyHqmrVZe6Xnkamf8WRX/SvL/rX2bPn6IY/nEY/qN40779nR5/rIJZKqMCUrgvlJJHWw2Va + gW+bdlWXsVzMqF0X7XFCADyNP9dBvPDnlzqifxyBXoSuS7OY5ItNoNeO3ndHO2ylt44vzVporVFy + sXtgdw9P17KLrfKkf3rQWrHpBnsWAs1nKRo8O7+W5fb2RRge5Oh4t+ysbfTK3vZFe/NyZxur1jJf + /qfq75+ka+4pVUSN5UZzkIgQTxFTBBEae9gazCQXhhLvnEXzSqAxfXZLT0mgFXFUMBQoN0pJTQF7 + 67kFhrjjEKuPOe+RFPNKoIV6dktPK4QN1IuggSrjUay2GBTW1IqIkhwVivlYw1WZeSXQ9PmfHlMS + aDABMKHBeYJjJWJnFXIeOMU22GBjoxrLxePqFPxOAo3Ys1t6SgItCVZcCkCMYCG1A+ejBpmhwCQO + EnPFFA2KzymB5kLOw4o4lakFFxKIsw6wxI5w7aTgOphglSEWUQIIgxB2IQk0nZW8+7FjcIfze4G5 + V5gT4xBjyhtEgDolNYsFTpBzSAps3dQEmiwkgUYKv+i7bwi0mr+iEGv93kXu3imzNzzHF9ne0d72 + +j5ZLcOGOYStf1LouE6983ev3phW3y3pzxDo/Zuwb8yMJ2FfYpLPYV/UQE/CviQzZQeiCtskvaLu + tmA0aWM1DkyTkGafZd6dSK+y0Vh5HeXTIQNXm9yNi7qmvX5ZXE5+3Uvr5ps3yWEXKpjsxhWDzEf5 + 9aD6rMRuePa4DkSV2jRL69Ft6h13DHm3OUjcqg9lKMpe83fcrIgcvW9yyOauhsRndBfV0c3tUkLW + lLmtluL4pJfQ0GmMEWsTSugTq8bO7lgvfPuFb/8Cvs3xd/h2GouZzBpxX7jB0k21mii3PDN9k3+h + YJAV/YaD5cUlZE/D2xdu8IK3H4e3jYr/psfbnZnjbSG0/Fzi4TPexoq3MPFMBSaklnYqvN1Jc4Ay + /e4pvuDtX4a3f3KCLzTaPt9E7XMy6rGNluqXK1cWDZYPDcvfrre2YWe1s2xX5PXJ8CzsqoUXV/dW + MTrqnJWb4f3q+tnR7turXXp4urp1Pvp45nqj3F56dw71kbNPKAwrhNRCcW48t6hpSi2wJ8aBYaAM + Y4AAFOJzi7bJ81t6SrQtgDotdJSPASeYWKq1UIwHBQx7Lm1Egp7NLdqW6tktPSXaViH4qKpWVgeg + 2hqurVTeOMqEMQAugPYA81rjgc60bdPTLD0l2hYGucCFIUEYbEVs8UaZh0Ashqj15QCEBinnFW3P + 9CXC0yw9rbgaKCaW0GBJCBECMq81wVpaxInWyngIWEg/t+JqOg8r4nRd36wDxbyO5XdcYMYQqjgJ + WiAdJMacRaG7enS+0VygbYn5jND2Y8fgzjt17zlILzwCEMAYQYFop5gSBinMFQ2aI0ft9GhbLSTa + 5kS/oO0vaFvMH9r+eNRbOb3Y+fChrSmYi4/15ZG+2h6S4X77/fXe3v6o/fdedbQ5oBdHv0VcfXBT + gTjNk40Y8n1B3OOQLzFJE/Ilpt8vC+O6TQWRCI57hW801x6qtJNHdhzxSllkWQTlcauGhLcqZzJI + JoV1k2pU1dCrGoqdll8A+utJWeMIvFMf5duJK3r9DGqIZVPAQT4pq+uTHtTdooHdk0N/e9x4M4wP + E8/KjM+jjBryDF7fIPMSjE+zUbyyLB2XZOkXQyiTTpn6uYPft7jeEuSdLK26N23NlhCTmqmfAd5P + 3v8CQW4zus6NO/+TKohYLfI/EXMzral4uBtakWdpDllqS1OO3gzTDEazLSkSaHfJlibNq7YtzXBc + 9tSCGdSjdt1tbrp+Bk3iQzlql0UG1dOwd6DdF+z92NrGRgsxLfauCjdz7E2YV5pZdruyMWOihYlQ + gVikvJumIdpB4VKTJQf3O0GLXt2YLQL4nsU8X2j6vbV7dvLPut9Jz1NV0wM77MKJlmrVjC4PP17v + nNrN0d4oPV7pjZ6lLRpmsyxS+vGErmxuXa2uEdg+Lww73O+fXRneOm6/HRyc+KLY3N9u92pTcPZ4 + /K2CE8Jb5g1hWmtPsNFEIE3BkxDAIs4oDmq2+Pv3hPqYz0rF9tgR+NbIhkjMPQEuJcbKeAzWCW7B + RZZCvVIEG+uYmT6Pmi1cpB99I/nS2ehLpE/v5pQ/f5HSt/xUac/8zgor3r3tbvevYL9N9km2cV1e + fzw6LK4OdzbkaONsddpI/8dFSuWDgf7bZol7nTRr3OtGBDZe5P4vBuLJV6tc0qxyMXSO5TuzLO3A + Z0VabKidOpMlptP5XPM0zRNTxzTsppJoBVcDkyV9U9Z5HKK5CaIfiBiWfJEuGVstYfQGI0SWjH1D + sKbs8WH0zx5hcQLprbSqP4C5hPLOarbIwTS59PWF6138ofE0uiN8vomnxxO7GhZl5mcbSNsSLeUD + l4Ep2y6GH1XTNcS049oRP6mgjFmTJcRSw09rEBQP8hJEP7KrOFLek6kbBI3vj5kH0kgxw0NQtwJp + rbl6bHr07g9Pb0GLc5JFiKF/doovdPzcxkWPna+Ji95hu1g93KuvrvZG1fuT9nJxWpC/T9Vx33Mi + Vqh6HvXYLN+Vm5W9bMOIw3d9fVaVmu2W29dXOcuO96rjttW9Ubrc613ow/rsCeoxg4jxxlLJwEvE + GMI2/pdypxnCykkmOP2+Fe9Gd79TPSae3dJTqscQ5lZbxojUsclHcNIGLRShyAYWZMCcO+B6btVj + 6vktPaV6DAQDSQVHhgXKbMwitVoxIi1VgfCoVjAOy7ktzSmf/+kxpXrMOB/bAWFAzCJGmVFeYoja + dGm4lthIhY16XLL/nHQIYlTNCL49dgS+NTKVmHkpDDPSGKGNJ0JL5gJWwTHiA4lFUIVTU3cI4osn + s4mB1IvM5hZ843ju4Bv9Z3n9eOV8lxzsto7z3fOar1Qnrhrlw9YRzeVKIXYPr2vc5uvDKeGbwj8j + s9keO8fJ2DluOvSYJA5fMnaOo5Zl4hw3XXrOq/gJXPWhTBsve5wu2gNTDcqY59mFBHIoO01mZ/wr + K4ZQ1QlcubSObcNrU8NY/BJ5RDrotQjRSeOkD5qdxx/FFkDxV/0SXNqwPLiEco6EL99SiSUz+Sgq + lloTc7TGlmgVoTW2QmsSi7Qm1mg11nhC2cNfevjFoX0rg7IDVbdjyg4Sf1KKaM8Vvasz9WfiPoEl + exD3pXmT8x3DzWBcXZRvbFZ0qn5RzxT+DTNvloxLfdW2poKqeblemaye3CZtjJ7E++J+p+B9D1Cz + OQF+D2z464ifQko7Py3xc13ozV43I7x1FKkW86ZJF6UtHVTsCE4x9VgpzKZpxfOuC720qsvRHwf8 + FoH3PWVWfx/xPeR894roettR20WRcFFGG7+Kz8HS1EX5ahpnXWDFX5z1z846Fr/9TbmHYAbZnUn1 + xTdefre+cpC8XT5YPUiWt1eSg+XNw4Pk3ebywUGC0fz4ot9fMidlsdF4XrSaedH0Z2zmRauZFy2M + nijQ/nXH/hkv9K9bpONVXFS9aRbWG5/0lQl1MyWwQFggRfWtufjKdDrtKr1upuLtJsivTD9tX0IZ + I5J4PvTN7dvglYUwmb8iNjjH+qudQtW+GEDzpPjGN77/4/EuiyJ7EMi8Cmk2vorvvAv47h5uFotB + M67/+SGC+jGkG9/lUPaqHx72wSfNf6b+2eS5OX4uTf2r/0615acfbvXp9awMVpq8A48z2Ne+9f8e + Z7JO/dXNP/WPP/3rLZfVX83w32+5727x3x8Azqobk4yaZeevxx3hgRFrHh3tvKjv3+en78LN+x6y + 4y/GS/k9T8Svx+6Vh8p9Pe8/3UcjXsEVuOYl5rgtYy/NsrQCV8Q+GlFryd/cZtmvmnCoycy5vdq8 + ytLe2BPC6Ksn/6015lX0wG5/19yfd1+d3nNp37+Tp75rp5rbnx43Ur/wbKeZTz8827/uuf9fjZt+ + R2+sHpRjJ//r5bzqRm/t7oIcTJrd67xV52m/f/83A+egqsIgLrYE3eccxi/YvTfnvb7GZ2+2ucO/ + +fyLS3zbyre3eXAtvbtW3rZYnBu+XQzuYQsTB3di0+a9qqR/jY3/6f8BXwZvj66qBwA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9abc3b12f98d-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:56:31 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:54:53 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=PMhY0J3PuGt4yQLwSc4TR1vJwgZYg0TkC9BcgXCZQyHuV4hpbNr7%2FSVp9T0UC96j7NsjbHNzW1BRIoVsr9HYHVtqT1RSezo7Kcnk6aQJuljHa4nkkstx%2Fc3Ut5mz44ceQRj%2F"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=100&before=1611069195&size=100&sort=desc&metadata=true&after=1607915595 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9ad87ace543d-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:56:36 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:54:58 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=sMmqSIIv%2BidEjKAtlGKdHahtUVJfPhtqI%2BLFIn%2F4DYlUztno8AVUNm8ZBJUyHgkt5LkbfCZ1GMrTp3GHV462x%2BRAw0z86uDUvOL5CAwzKDKvXJGHpi900KA%2FbXnf6IEjjhiM"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=100&before=1614222795&size=100&sort=desc&metadata=true&after=1611069195 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+y9aXPbypYt+L1+BcId3fd1hCHlPNwXNyrkQbaOjzzJc9UNRI4kLBCgMIiiq99/ + 70iQkmVJlECJFkmZ58sxxSSQuZHIXHvl3mv/z39EURQ9sqpWj/4Z/Vf7Kfz3P2f/ar9XWZaokSpt + mveqXxpe/YOfPww/SqpGJ/V46B79M3r04u83T3b+fvT4uvanbXtZoVV2bdvQoaR0R01aOpvURdIr + VV4n2uXOp3Xoa95k2YwrmCLNk2GZmnA3CMB1zUoXbvfon9HsVk1eh+vM+N6qcZUUPrFlOkzcSe3y + Ki3yay54+oNh6QZpM7iupatMmQ7ryfUeHfSLURXVfRcdpNmxK6Od0PWtra1I5Taq+6r+RxWl9dYs + w7rcJlbV7nrj9dJjVya/2uaa5qkp8sQX5UDVHRr2Xdrrh4YUouvaNWUWRtyv62H1z+3t0Wi0VTpr + 07qqVZ2aLVMMtntFZrfbyVJthx9tV61VEgrR1jDvPbru+qPU1v3ru2HbmZraBM68UpW4XOnMhaZ1 + 2bjZ7XI3evTPyKusmtUoV4P23Zg82lm3HLo8Hye2yG98jJOWpy/BNQ1LV6U/nE2CXa5eA65fC84u + dPZsIXt8fcu7PF3Irnm4Z3c4fb6QzWz3fx7feaAY/caBYjTPQDH6nQMl4jcOlIh5BkrE7xwoI79x + oIzMM1BGfudAIfqdjxSiuZ4pRNc81Cu/+fcNi9mkj5s1bbOmbda0zZq23mtaVauy7gDcz615XXD2 + +ea/EW6fv83NqLtq9OTGSTfn7Gf79AY/pU5dWSV6/NOpPO/4hh/+x/WP6cLjCb5zMUqy9NglphgM + XN56pVdA/EeqqftFGQysjouesmVRJXkz0Jdg/rRl4jOVlolW5rBXFk1uE1Nkkwtc+wNTVYnJVBX6 + 8SiKoon10LW/KVPTr91JmCr/9e/rGk4bXbbw5WY/u2tVeXjt7U8ZgfbqMxo2WXbqHNUo0QOfZjOa + DlVduuCOhmtf+zDOOd9XNgqGc2V1lVWMypNBYZNhUdUzfm6KvHZVHZq5WU1Kp2pnk6Y27ZYOCUKQ + ygvz/JEtBiptnf+673pNmLAqD6/jRQsEKyVZmh9e/R63b3C5XZnU5cZtn07Y7awc4T7eVqWZvKQu + yYqqCv68cVUyLDJVJtqpsgoUTFO5xBdNuX3x5r00O32RLq/VUx/6nxH8j2vW+6m/PenPxeunVWLK + oqqCyYO/faW7HVoNXMt3XWXwtEqKMu2lucqS9vnk9eyW0zVl4GyqkrNnMKtxoYs6SXPrTq7tXOUy + P/sqx6l1xYyvw3O9ZlH4v7gygvNHs3/1y8qg8nSgssqk1/zgumXhXLPaDYaZqt1k9X0EgXSQIxMT + hkUMocOx0k7GEGGINSDGKf/ouqu1N3y003YwOphM1ht+8NMMWbvlXdP6mrUmK8xhS+NcZf7JNCjy + bDyjQV4kvgjbwazvm8H5PQKhq74/neDV5e3uUdECEDHj8kNVurxORv20dlla1a3300yedSB4bXVx + uENXDtTpavH71oVhmuczrRrGmvTT9jVsH9OlX5fuOG15sysWlZ/E2wxS7VE6UD032/mbDSqnS9HH + PGVx/vpg79OHD/ygef3+/VMxZOr9q0+f8id737KhjZ/8TY4qebx/DSYMHmmRNYHCvd4RvRno/gp2 + 6Q0O6VV4N7DTZa6yeGradnPYSuvtnfH7+POe//ubeP3p6+uh3jfirX89ftnL4HtW7//oD+EL13vy + mfSqre/D3n+2QO5fEIj/Rw2G/9uUxfBf1UCVdftRNXXxr5HTw/ZT9S+MOQeEeoYx84QSySBlWkpC + GRZcEO+0xdK6Rx0GdIaugbi28f95vDBDQ4iXbmkEWRdLEyAt1xwwrKDgAmJgBJFEQwqgVgRTi53j + Ts1jaXQN3bBoSzOxdEtjBLpYmhIGiZGaIAC4kkwywxyBFkFglDEaMmGhkGQeS2ME7svSGC9/9WCk + k6URsNgwzhiiyBrmqNXKcW+FAUJoI5hHSAtB57E0I/dmaQrI0i0tWSdLE4kwFVRCixGByjpHnVUE + SG2VQEI7qwQ0ZK7VQ7L7szTjq7Ajdls+DAIcYK0w9RI5IqWSQGmsKFfecck91hxLNueWeIOtZ377 + 72vwS1U0ZXuE2JluxGA+Fm5hz+CilR1VHjiOHIVMeM0lk4QorT2wzEtGIBdUEo+7U3oA3Ia/fHSs + ylRNsP//XP0ULv/139d6y8NRFq52YRV/VLq6TN2xs0kbMRBoBUwRwRcQzKPKFGUbG4H4xW9c5k/9 + sEeXvsttUrphlrpZVFc1LNLMzeJeqjo1h+lMj+CMzAs3r672/i4Qfo9qmgyKZjS7WdXoEEShJ2wO + YkAAjMDM5qdO4rDRWWouX7bXc1XgbaqibLtpityn9qqe1v1moHOV/jLX9Vb752pKy7SeZcvNPC+y + cvedSd+92nv119v+zu5OAn7Iz68+vNqvRwn4uv/kVf9V78dJkXwNc33mzX4yvxzPbHM2oclFQ9Rp + 3TIYj3Zazy9KjYuC5xdNPL+o9fyi1vOL6iJqKhcFzy+q04GrIlVFg8b0I5e7sjcODaqmPE6PXRRH + b+q+K6Nh6ayqi7KKqtBQVVGuylFfZVWkShdVjfeuTPNeVKWDNFNlNg5tmjw9alykrBoGNrnIq0g7 + UwxclLkqXCqtnb1kkqJW0+imQOgYlx63Mw9ebBeYuOD1JrXqXcn4NcPjonZJGW4dnPMtefEaV/Dn + F/i67VFRZnYbAQS3vdPbiEyd6zg1Lg4mjicmjlsTx62J47qIm8rFwcRxa+JYVXEwcTwxcWgwNXFc + 1Y0dP7rcsSSQB2VqrcsD/W1dS1uuYF/n4C+mq99/XLE83hThtgga36naqnrYVNV4t2hKspseu87M + /E0M+sIZ+bkpdu4yDfozhzRcb5YdiIvUyTmWfWjKwVZR9hZGrx8f2XJ7WBbGVZWzycCpOkmrpO67 + pEyrw6R0KsvGSd1Pq0Qrey21PosyD/foQJnPIJ5XhDOf0fD3keaWCs9oV9LcqNxcPq+7M2NuoUcS + SxET4emEMRcC+QljbqEgEPMOjPnTm3q3ikz5FackF4hyuA5E+V3f8OtJ8lk4f1AElK/HiVG16xVl + MPijsBKWAV496uIXQC75DL8A3N4ruOKprodTAOh9OwXWedVkdRcsL+6C5d+eTs5o36n6cZROgsjD + 7IwmszMKszPSqjOIBncH0RcpyKtA9Ol2vN0rChvnTV2mAf5vn/0rTvNJ7Hn469lLGIeX8HZQeJF3 + XB9Aa8omN/2xd4PBQwKyqg9dytXRAwWy6GK82zkgm6u6Kd1CI0WOvTzatqmrq6Sf9vpJmie+bExd + VGGmNZlNjApHwelg0OQuqcZV7Qa3A7ReHm0A7byAliEhLewKaPtOZXV/4YBWSUEJMSRmArSAlsbK + ex5DJAFGwllPcQdA+/Km3q0noGXrgGcX8povD9WiS+79KarFfx6qRXJlUO0pGn0WplYUplaU5tHp + 1IraqRW1UyuaTK1oMrUiq0Ikz+OoJQ2jab+qe0SqFw8Wr0KqP/fbbVXWqclctV0RSBiPAYIxgoTB + mNwOk97u2uuDPgcqM0U2oOIBQc+RyLB8oLgTXjpP/Ik7p2uZylxZLxZ92kO9rZKB+l6USWGcyhPT + lO3+N9mVtEuKvKVdjl3ZcyHDWt0OfdpDvYlAnjMC2VokSFfs6fLjhQNPzhG1lIhzwFM4j2OIjFBY + SCBQFyb1eX6clkUeZt3DCzwma4E/F/Kir3Xo8eejpy9Z7aR833xH4vDJk8Pd7Pu7/fT7F7s3xl+P + 4+O+evv3149jOVpG6DFZZEAsOjzKnrgP+x+OXMo+Hdm93SR+93lA6t47+eF1/8nAH7BnT8Tn0be9 + +UOPnWHEUEyhEoA6a5VE3ihMDMFUEamJQoZ5Clc09FjwpRu6Y+QxlFZrbrx2jHgHoAOAYe+8Q44J + QqlgXAJDxKpGHiO5dEt3jDzGjHnJiWXKSsuZ8wpizoWhREhBlDSMUa+UWNHIY0SXb+mOkceYEm0k + MwgzhRQVEjPqCXCccuGcJBITKs2lvKtrLX2PkcdYLN/SHSOPhXTCceYNxMgRrRWhlCFviFAAKaq8 + V4JR7BYaeXw/0bAE0gVFw877BC4amRMGPZcEcUmJloA7qrkmWFomCaREUmGNYLpzNCxAZA2jYSHk + ZBY/KP5EglCsXCzs/tFuUe/Yl+hdpg72Xn6lb959evb12ce3h7t/WQ3I0fe8/Pv14duB+tgxFvYS + JTxfLGy0H5yR6E1wRqKnE2cketoSlk9cVOTRh76LPgVnJCp8pKJn7li1ugd5L/rHh3Q4DP94W6R5 + /Y97pC0vBQ1cQVtepGu2Vdw6XnHreMVTxyseBDvG2sVFHtd9F7eOV1z4WMUmSweqdrHpq7zn4noy + 2ngYRns7uvN++7Q5pN8c0v9WshTeSJZalWbjBZOlXN3TUb3lanNUvzmqf3BH9WsRerqQ13x5R/WQ + zgpAhX8iEuerG4B6BTqeB0Gv25k/3AKdsfPZ7r1dusypylWTzCmAthEECCGICCN8q18P7oSH73Cf + +8G4G+3wK1pNtMPRRjv8quYb7fCNdvjkQhud3YUOdKOze+VANzq7G53djXb4Zk3brGmbNe3PWNM2 + 2uEPRju8MumEenw4Rz8yP0bZkMMHevQDwOz8TO366jgtyrSqt3T6Y3EnP1oebyvbZHWVjPpF4k6G + rmxbJVXm3DCxaVU3pQ6CEYEkGRZlfUs9b9RJzzt0aBNNP9/xkCOOiM7HQ8NqbBZ/OgQ5oc4oFE6H + 2OR0SAPsYoiQ0oBz4YXucDr0NnSuyIreuPMJ0VVFA1Yxmh6TdTgiWsR6sNbB9IfFt0J+/Lg/fG7r + /vDtczx6c3BYf0Psy2f8bRe+HIB4V+68YG/d82UE0zOwwCjNN/X+yVf4cmcPZWrw4+W719/Tphq/ + 63238Zsv6cdn3968sOVJyl4/3b9FMD2k1nhlFBdCOS4NFZZhbiXBVghgLAtrAgarquON4NIt3TGa + njolvKDKcyyB5AAx77xWHkAPgZHEYQ45JHJVo+nF8ud0x2h6xplHWgqIPWDISEsMpx4oIigCHAGP + PVKeyVXV8V6B1aNjND0ECCBuALNSUk4AtRpTiYyjVgKNtcdcQGjMqup4k+VbumM0PQeOWeAM4UhZ + CikWVltDMeaeWCUxhgxLBcWK6ngzwFdhR+xkaq0JEFQpxa0lGElgvVfEE2cZI1o6RCFTWJB11PHm + aFE63vM+g4tW9sg4zA1yRnltPSLYUewERVBCQZmTnFPEBZiDXltHHW8I2CxlEyTJH6jjjS7pMN9b + 7oKalbtAm6d7+Ns7Ps4+wVjy6njXQHz0db/36dX35qSW9ZPPH6rD13Dvg+iq430n7b+d1vWLRv0i + +un6Ra3rF513/aKJ6xeNirJy0VCleRsskruTOrJqvBW9LEbu2JWPw5/TctIirVoBbpc7G6U+fDOO + +urYRYOidNGwqNI6iH9XhUlVFrm8DYdxQTq8XxZNr180dXuXcIOusV3ofuS7L/Bz20U/bv/kYhXr + rOhtD1VZ566s4mCJ2wV23e0e65O48Lapn6R17UpEKHhImQuH7AioOn+Q9DWUhMzOXBiqoSurraoq + F1uN8hjC8fZA9QYqUVWikl7Qjg8BxW3QW6aq8EVug/pDOSjyxmROlbdLXIBwvElcmJeZNk6xywkf + M3VeVFn3f0ehScopY5a682Iv3rh5Uxeeh/6taZ3JmzMYwDrQ0wt535eWwQAo32Qw/MTjDK2a2OB+ + mFqhhIyKzqZWyNGdTK1p7PO5qRX5JkRgR1P4q4uRy6rwg/CpXS5WJwfhwh68XRUZPv2j8YP/VLqq + S2XCE/0X5lhgJObHqQu4yfoA1Rdpqbx3SV2qNHclfEBYlf5QnNDhw6zpAgXjdHaW7VCZxSphN4Mf + chvRZOTSkMkSrp94ZerqVkg0XG2DROdFospyb2TnmudVXRaLr96iFUPYuHP1zqU0aFq9BUFDnOtS + 7zx0Li8G400S7RIgaPeXeVkwk0gJxaZSyxnMJCsHMxGNPofpEx2E6RPthulzj0oviHbIVj3dBbcx + ZZLG7XR3VR1XbQ2/Sd5t3E78kEKa3TJX9Y53WR+s+F/WZa529t/XgsSrtq6FocquYPHG6LolgTYC + 0EzQNjLNlvoBt44aldVlaqrFArj+kdku8iwNqghNeezGSRpOJgrjhuHIItGFHbdzxuWuqgIFcTto + 1z8yG2i3CX9du/DXh8EuLuI1XyDom+4Y3SAfE+gWzOLMXemhYL/LpcyXjf3etPMrOmjn1/+O9s5P + sOhJYcet1EI7wVq+ccd+b6r6KoH5JcqZXLXbbn/3bjuoM2wffErkV1MdPhu9zw7YM/4c3gId3vUW + 6wMNVW7Hfe+y7EGp9FmRPUzyMEjCzsShjbHqOK22nG0Whj6r+lhsq8SrQRoKw5aurWFQqbIKzyU5 + TsumclVSBcmWW8HOcINNztWcFUykwVp3BZ06XTybqAySVhl0vhY0g+KsFrSApMuh9pN0Pry5NtVL + 1qIa9J3e7bXOs/rwzo3Rpzf14Oke158pen3y1/jHs6f6HX2F0ufvsuGT5rNNqYr3zDLyrDhdYFT5 + ky9+JPd/EP3s0zdSv6w+PokrPLbPh02vJz+y2KL35firMu9FNX+eFVGaUi8ZoUw4DQ3ByGoEGVJM + c6GsAQ4TK9mq5llRuHRLd8yzskYJIhDlTikNNFAWQiA8s55jSDQQmGHNPV3RPCuEyNIt3THPyiqL + cUhh0044YKyEWjKqAVJIGogNRpgQovmK5lmRmwRf7sHSHfOstAcOSqYB4d4y4B2ChnroKJKSGW2U + t1pi6lY0z4pxtHRLd8yzMpASyAAWXGrHjIYCO6cFUIhA7AnHwDJsKV/RPCtO2SrsiJ1MLaG21Fng + GDWGK+4MN5AoxRXxnjhkpNeaGb6OeVaQELmgRKt5H8KlbFhkFSeWKOyNpxJqryDT2lFOifJaO8O1 + JTeuHT/3QsDXMNGKMMlnHbdj+eedt8PLBbWXXiJG4Q84HmHT/PBqqE++YviMNCcvBgNUHXx8S759 + OXr26fkx+xvtf+2YZiXvlmYVTTy+KHh8IV70YOf9QRysE01dvqh1+aLSZap1bvrpMNKuHjmXRwgA + 3P6iJYifvvm09yyG8vSX91kypkOl63OM2HbuRtV2kwfOrlZ54KVidzx13+Lg9MYqt7EpjlMbQ9na + I54xqm7xBb/p5puwgz8n7ABzJmfSveUw622ZYnFUL4Zku3SVU6XpT1ifZFhXNqlceZwal9iiVyV9 + lw2TUVr3k1bk/XacL4ZkE2owN+urjOC8cxRpng5U9jsSmiCQDnJkzkWSKu3khPvVgBinfJdI0raD + m4ym0wbLIIAX8sYvKeqACg43UQeXETBc5dIs4E7FDd9Pp+oUn779cPAsmk7VKEzVKEzVKEzVqJ2q + kcpP0qKpIlUWTaWyx1F/PAzte2kWlASi/6WykRpXkXah6mGRR20hv//3cZSHDg9U6arHkc9U1Q8r + cvW4xbwDlY9P06yqumx6vcxVbVmKqO6HUjFtB9rO+RBhGy4bZAOiumj/p1WVVlurE1AxxRFnC0E8 + NWlsi17sizIOS8L8EPhWl10fcHs4UOXhoOir/EGJ3JIfjRbpwwyeQFTMVgmwxbEblq5abPBu2T8c + bxuV50qnVYCPjXE2Cd+qLKnGg2FdDKoprEjz3q3QdLjHJoJiU9TwgQFosg4I+q7v91pHUfSPOP5C + n7tvXz7Gn+uXmv9oDtzr4+ypKT/TH+936JO92P2F9pNRtYwoCggWeRC6u//kWQrM3gEe2ffP/7Lo + zTPOxZCCv4/39N6n74x8llX23hdPP84fRiEFkUAwCYQTGFHGFdRSEY0ZRRIaC7iR1mOz0DCK+zky + QmBR0nzzPoFLZ6AOMSG05gBhxQwCghBHkDLMGC6V0J556pzsfmK0jgdGRMhNfuaZtwwEWbnzohOP + itf6wGRAO/v+FX3/Ur5+dvx3vpPvvukPjnZ5Vr37kiD97tPzjudFd6yI+nS6v0XT/S2a7G/R6f4W + ne1vP8+DwtyJw5hMe4T0z2gn+qwOXfxxGD1VWRZ84b3BsCyOXfS0COVU0/pc8sF95qOym4+RfvEN + tlVZpyZz1dawP/zP6YcgKcIQEfh2R0V3uMGmXupt66UiupB6qXDp9VI/910ejYsmMsXARarFyJGK + vHNZ3CuKIBuU5r21KJeKwKzotSvrpaZn4GAykSaIdrumCULGlUfbNP2hj4nPwcASmHzuF5mrioHr + XDf1uv5MfLj2vtRDhB22MfFExAR5EksDYeyk0K36m5D8Xqurno30jyqwehExzj8pTmH7JCR30pHT + T5dAO5IYecKopcIRA5mGSDOnDDEKcIu4wxZCA9az3uHCbInReVtOP12KuYWQCKIQEJYJhaHQXlri + jcccQg4VNJop7vx6llRcmC2JOG/L6adLEuQuCI8LzTyWnlvFnYaYUYyoFtQBrYlU0jO8nlUbF2ZL + Rs7bcvrpUoQyIYApZIXQXjCvsDVCEaqU8dyBEGJojCFer2lhyMUtmOiXmXn68VJhDUkp1RA73MZ9 + M+SclpABC5WBFmrMkTUa6D+4oO5mD9vsYZs9bLOHbfawzR52nwWUr/F0r6mg/Dsc8KsqKV/Xu5Uq + pfz4ITJlADwQpuygjRsLgVsHbVHvlnG2W1tbU3VtVf+jitJ6Laiy2cXFf3ep8441zicE2aQC831y + X5NH+0cRX3M9XciuebiXt6eVQvRzDRSjeQa6WnB7roESMc9AVwsLzzVQRuYZ6IoB1fleUjTXM32A + RMhmTdusaZs1bbOmLWBNu5NjPBvgXuMXLxJuX+UPX9OplXKH/+Oax3OrtIvBsVO/L504xDBH0cRm + 5NEiczUe7T+L3/afxX89i/ef7ET/X/Q0S/PUqCx6WxbeVVVRbu+HcKk0d4/umKp8txwQ1v++0PyP + K0IDl5P+ATmbrZ1p1GBLma3mcHGpH6zCk7/XaVWHIPAylIZLfFpWdVKng7Z2U14NM5WHruo0c9fm + f1wO4J741v+M4LXRoWd5IqzCmzyR+fJErOWGu655IoPLqat3ThIxUlipHDuXJCKxITFE1DnOiDYA + dkgSmbW2rL/U5iWV7Ut5InQF8kQWsRisdbLIt+LjM/83Tfbe1W9ex8S64zHdUX83w3i/jzOPPmj9 + +cvnLy978OsykkXoIqXc5F9Pk9HzT0eHn5/u/pAn9Iut3JcDRMGxfbP74+W39Dl7Bz6ZXL0Q8+eK + QO44d8Y5y7nHDAjIsDKKOcidJVwzygyngqyq5CagS7d0R8lNTqTAUDBiOCSQeKckxAhqAqCVnCIM + BKNGyBWV3IQLFc27naU7Sm4ywoUg3ElEDRVGO0+cEpw4ggG0Ltg8yJ6qFZXcxHD5q0dXyU1Lndde + SuUFxcAwgjBUijLquWKGcAuQJ0gvVHLzfjLNyLzE28KewCUjI0iB9NhgRQQAFEsloTYGciZDJSmr + HBaSka5MiBB0HTPNECSzBFqI+ANrToNLYl7LTzY7/gC+jN+zYf7k5QtbpYydvH+DfiQvTg6+/vW6 + +F59+ZB/Gdh6yOKPHZPN2J3ECQ/OMHLki7I9qm8xchQwcnQeI0cBI0e2MXVUlD2VF6mtol5ZjM4q + YmdKR2neqq4E8GqjfjNQeRQIp7IKGWilG6q0vclgK9qpomFZFD4ufDws09ykw8w9Dl+Opw2dPf2t + dS4wRU1eNWnrN086e9a7Nuctso0Ld/nZz0k/gopMlA6GRVmrvI6q2g2jEDIw6bTpl0WemiBxU9aq + 1wo02iIPpcDDKLsLx6C758bJDhKLZ8TJmdDLROwwUzpun0Y8SPM0DkaIgxGquKmcjesinhg1bh9K + PDFsnOZx6abVz9NjN8kgTHMXt5PgPz/8a+fj7TLslt7NTZ7ebaOP6IKij+jSw48+9FV+2GbqhUL0 + ec+VW9HPkKTWbn9klt5hdnxyCEe9ng9Bgi9dNvRNtugcPU8Ig9DDWAsZqmBbE0vuXSwkQgJoiLVA + 9xqnNB3nJkNvjgkxT26Doowh67XVBCDtGReMGUCBUpwZDA0k3CBP6IPObbjJkp0yGxQTAjmNPRbA + CScEAJIL6YkFgCMHuRaGSg8fdGbDTZbslNfgKACMaCCB4NIJBTSljmDsmXMMWmo09dpB+6DzGm6y + ZKesBuGo1shxxgQ2mmnIoMBAG2slIwgQaZmyBsKHndVw40LZLafBWUWURIR5ST1BzjFJgDHAGUYx + YN4iYJ3gYpOXt9m5NjvXZufa7FybnWuzc12/c61iNt7cjvYmF292+/VWrcIb2aormm9kqzayVRvJ + j43kx0byYyP5ca0tN5Ifi7PlRvLjvD03slWbPWyzh232sM0ettnDNrJVv7bbyFZtqLL7l60CS6fK + NrpVG92qjW7VRuPlqoFuNF42Gi/RRuNlo1u1WdM2a9pmTXtIa9pGt2rjDy/OHxaLcYfl0r3h58eu + HLfBIVFaRdrVtSujUVr3IxW1gSP9prd4Txh0coMfvX394tH9xowcgd53sn1YEZp+ZyNAPYNJkdmX + Te/HogNGBKZIW+9j7ACOCRQyFgqIWCAKoLXCC0zvN4eq6f3o6DGDTu4yWNsokRumwTzHaxwrhLXn + HgjNMKZAWGc9odwjDoihCGlJFCAP83itmyE7na1R4JGHzHFokUTSYcsRp4AB5bGyTAsKrfb6gYaf + dzNkp4M1o4jgGELKMEHUQUmZlIpY7oihXElhtLdO6Id5sNbNkJ1O1bgmzlnjvYYGSCUQc1xgTjEy + FEkuOQMeWvRQT9U6LpIdY8+JpUojzJ3mUEkPkNZYe6ksdY5gTqCEwjKzCQu54Xn44QCUtBwfQcxg + 8rbIVPmy6VXzbltMSsmVcdh54r0BUmoBLefEICM8DPkAAAn+QNOmupqy08blJIXSQiml89IaR41Q + 0lOJmTRaIk+RlRRD+ZA3rptN2S0mBHBmGMHEa2SRl4BTKaGAwFtBqCHAK469YQ9567rZlN0ypyhF + HBLqgCGaU4IBUxhYj6SjgngbMqk4w+xBb14dFstu25cWgmBjvUAGa06g5coDyg0kgDNrLGIIOtE9 + D+2BRoTcaPUHGRByC+H2q4S+z3Tb9/afqPrju85K7JeHczf99ZuuN79OOjzsgyyrjxaplX5lo6WI + pQPO0Uyx9HSgt5qjLWebLdUsTDD9qOZ+O4gij4oys1WSqTKI3iVV3dhxIAqD4FZ4o7wydVFWSZrf + Vi8ddBJMDx3aCKbPJ5jOkJAWdhVM7zuV1f2Fa6YrKSghhpzTTFfe8xgiCTASznqKO2imv7ypd2uq + mI6wEDdppl8MeluGaPoiFoS11kzPYVbH+evky/N6x2f2C/j649ub3UO8u5uD455/9e7pSBf9V5Y/ + 2VuGZjpfpOrx86OUPWPMvD8c99nHo6/4jdWv/zK7r2LRZOhL3pj39OAN/3YQm/k104EUnkHDCeda + a8ED++UBCior0AS/gTsMDFxZzXRClm7pjprpTBOPNSLUau64gZIxaTDQWlCsFTfYU4wJRiuqmY5m + 5cXfo6U7aqYDqoklzEmMiSQAAU9UiOP3yDBBkCJGKiwdXVHNdILY0i3dUTOdGkOU0FYSSRlEjioK + AQBGK++85IxxzIy5keeN5tJMX5ylGQFLt7RknSxtkCQWUKMsJx5K6AxjShqjgRU6KAxB4rlyc63T + kt2bpTlavqUhEJ1MjbCTkGHBGbKOSce9EoRDZpzyShhoFAuqOnzOLXElKgFgNi8jvLCHcClTVRsG + KETMcsUJ8pQwxDwzXksJGFaOYCpl97QrSvitqPQl1wLA+FLttdNaADhUUvkDiwEQvnLFAP7u66Mk + az5/+khefvsGjqrstfPpd/YSfht+y/afiPdN2bx6Xx18PuxYDEDiuxQD+NB3Uev7/XeDAJRVNPUA + o9YDDMr4Uw8wmnqAQfl/6IbhL01mXBnZtHKqclFfhXoCzTRZKqrqYqBMf9KoilTpouD+ORv0+q0b + lq4KwWudtfYvPcvbiO3T68X2fyHdtlVZpyZz2wgguA3Qdq+p4wmbEqvcxoOisPHUOCrLxrHL61Ga + X65Pd7N6/u+57/3I4S+i4ujboqpSnblkR5eFKQYqQegB0dj8eFTSGvYeKI0NJZlJY5fDrLdlisUR + 2Nmgf1ZeIqlCzmYo8leqYQhD7FVJGGffZcOkdFnYIq+lr2ey0tmg34GVnsHtrggtPaPh7+OluTKC + 8668tMrTgcoqky6cmoZAOsiRiQnDIlDTOFbayRgiDLEGJMDvDtT0TtvB6OBqfLLiFPUVkO0CQw1u + oqdXgZ2+89t+PTc9C10PioCt9Tgxqna9ohy3lWcLG2rRFBfTh69G40heTI3/WZnrD0TiGN43ErfO + qyarfzuAfj+dntMqMx8m0zN6VvSq6KnKo6AAG72fTM/ooG6sy+vooA7wtyv0BXdFvnALXA98p9v0 + 9vTlisPLFU/fqbiadDquruz0zej2DhdfHwj7X9Zlrnb239fi1qv2zYUB3a749ebq9svAkUDKi9Te + ORxpVa5ir0rtyq2i7C0OT6YAb6uQDZOEWySTWyRGlUltXJadbTfTSmSuuh2gTAHeAMq5K8NT4Rnt + CiiNys0lbY+7o0kLPZJYipgITydoUgjkJ2jSQkEg5h3Q5NOberemgQ5kHWDk3V/yBeLI6UbRDUUy + MQtF8mtQ5MzN6KHAyYthv6sEJyG+U3XWnSh3o+iZylW0287T6OnO++hDHCZqNJ2o0dlEjQIh1BKp + E2JW1aG2azVJ1R00WR0qrEaDscuKgXocqWiySgZed5ipaqCicN32tzorCvs4/Etlg6KqI07/77bd + 2TX7RdRXNipdpoaVs5HyISu4cseuVFnUHusUTRWdwdPqcaudVeQurvtpacPVQiHY9ioqaNIPwzQN + DLIaDp0qQ99CI5VlUZX28mr6i7Sc9nvr3iAz2BLo5sqsF2BJW++0LIpB+4+AcQMzXk2YXKPKuG4f + Y3yKhM8eY5ypqk7zXvzzcYYCqKemj8PjjE8fZzx9nNu3K9O6Wn3eIPw/COFTtgSEb5nYvmarT6bT + OPk5jW+Kep6J8i0TG5S/QfkPjiteC5C/mPd8WUAfS3gLuvjBA/2LFcUfENC/FtZPJ+ui4X0UR2kd + DcvCNuaS87CB/R2Y8g3qXx/UvxHcvqLVRGEMbfS2r2q+0dve6G1PLrTRpl3oQDfatFcOdKNNu9Gm + 3ehtb9a0zZq2WdP+jDVto7e9RnJD1x+I7Tal01X6kPSGKGnG9kGmaQCJMZ55+Oaa0h2qzJX1Ys/e + FD6Z/L1Oq7pqrxHQTFn125/mvcQdt+xcMT3gClzCLRWHUDfBIYVPNoJD853QKcu9kZ0TO6q6LBZ/ + QKcVQ9i4c0kdUho0PaBD0BDnuiR1hM7lxWD88CLx5Doc0i1mQVhrxSHBX+pnn3bdq7QcHxTPdj59 + /T7e2Un77+hzBT/uxgNivsBPpH56KJahOMQWqa/w5GSfPoF5Pijdzo8fR5+zHTn6OvpxgE6+1q9f + merLR+XUx/rLj7/251ccsoRZJbkSxFMHAYRSSeqJM9pAzomiFAJiKV9VxSEEl27pjopDimiFnMLc + Iucgt0QwajRWEAnjAJUAeuuVdSuqOATF8ud0R8UhKhhCjGmmvRJBIFpywYRyXCoNjADaak0cEyuq + OIRXYPXoqDiEjQKMO+UcEJZyISiAIJRodhwRxKSDkhhN5UIVh+5LmwUsSJpl3idwaYkGyCHItWce + em2d0tIBzwB0WjJCqCVOcOhEd8oFrKEyC0KAzQru+RNlWSBZliyLmiXLUrw7et/f//QMf/hbvqhe + YPz1yY/Pfx3Cr4K9fln/dVh/LT592H+bfX4uOsqy8DsFBx2cYeRWNSUKGDk+A8lRC5KDkMoUJIeA + mSYPZ92V+0cV9dNe31V1HII2euNoOFUU6Zxwiu4ePc/kzXE0v7IO28NGJ78EosQAbefjJq6yCiAo + Edwa9oe3C39ZyK3WJ1Z9Q82tFTWHLr0tP6m5urBqvNWkJsgDLY6Zk1JsZ21KXNVXQ2f6Ku8F95vY + ZKBqV6Yqq5J+kdlkWBaDtHIhLOZ2UfFSig3jNmdMPBDWoq6M27A/rlJTLZxzA4Io6r0IGt9sovEt + JRUxREYoLCQQqEtQ/Nsbu7emjBtfB8ZtMS/67cLir8LCkM5SKWR/IhRGqxLffoo8s+i1G0XtXIlP + J0tEnkVnkyUKkyWaTpbIF2U0KMphv7DjXA1SE9VpVTUucuGXzpVp3rvHpM2bYOcvu2mIfY5/HWlM + bHw20jiMNJ6ONPZFGf8y0ngy0viakd4MTu+5QxsIu4GwvwXCAi7v/XSZlYfnD5N+LolNFXY467wz + dZh0NlWDIre3T+xkl1NoNxB2A2E3EPZeIOxC3vO1PjP++vpQwpd89/X428nJKyENTF7uf/8Wf1Jf + vz3p+Zc7xads/+/e+6f4+dqfGQ9/2Gdo8LE+ILt18eLd4fMS7Rzhg28f4F/1gAL24vOnL7tc12Rv + NP+ZMcEkRIoAKqxTkmodKiF46igCViMgvNQSE/9nnBnfztIdz4w5AdxSJzVmxmNtvXJWE66kxRRj + BoAUlku+qlVqFntmfDtLd61SQzw1jHFNjJZGWoslYF4zgSgj2GoLkFbWmT/izPh2lu54ZkyIksRj + ITyVlGiFFcGacKaxJUBajSi0SGG/olVqKFm+pTtWqVEUEMeBN1hor7mAhHKGoBHIUGYVphwgSLhd + 0So1DPBV2BE7mZoD5gyknHNlJFYAW8mpFuEz4QxwbqAn2th1rFLDOF1QJMS8z+DShNbSOcWCpyyR + IUAapQgwiigrHaKGU0uxkaZ7RgZYy1AIAPhGFvuM/gWrV6CmOPmUHu/uvf/2l94bFZ/SndfZy1dl + X+kXe2R3tPv80yHeOU6OTvCr0X1HQpwNOmodv+gfZ57fP6JT1y8ImZzEpRpHRahRU90j90zxYkIe + 0kPt46pqAELkd8c83Hyv9WGMlakQoJI9pMoxvBlAWzxMzlhcJ/g9bLTpu8FWbnS6lWeDrTztb/WK + 48WxxyQbbQ/b12FSQiLNkyJYIeQeqOMitclIlV6VaZ74shjcjjgm2WijCDh3IRlpsNZdqWOdLj7b + SBkkrTLovBwgg+JMDlBA0qW6+ZO0yIreuuUa3awHiNaBNb7r+7200jFQCLzByD8x8sqUjjmFpG+z + ScHDUNnln9FeHrXzKoTjtvMqOp1XUZhXkU7zNmb35cHO42gUSiMOCpv61KiWiI9GRZPZaFw00UAd + unCVIIp1do1BkTnTZC6qiklhxbSuIpOWpsnaC0RpFQ2LsAGkoRpglA6GZZiD/7k6mnmz9vLwug7D + 2r99Otr5ge7tr71GwNaWqcvqVJUKPyBwq74PjwHDD7MsImD0UtLHT3QbRBdHaeUCPF0Yoh1yMtie + qBEmbfXWxKfhMNSmLhxu9vphCxwWRZkcNSpL6/GtIG24ywbSzgtpGRLSwq6QdlLtdfGoVgpKiCEh + GIJOgiGU9zyGSAKMhLOedkG1L2/q3aYg4u8CtXd/xZeFarGUhG1Q7QTVcikJXl1ha8ZuJGwvNzkF + xy/a2TktH97OzijMzjYnrdWwLooyms7OyKhSF/2xnYhep3nYSCtXRX2nyvqssngQhLVOXV5zlisD + fX4TPy3aXU3fzrau4Thuxx+H8cdh/K1SclGU8XT88S/jj8/GH7fjj6fjb6t+Xzn+bjzw8vu5kXte + stwz3Mg9X9V8I/e8kXueXGgjjbrQgW6kUa8c6EYadSONupF73qxpmzVts6b9GWvaRu55WXLPjx+g + Oyweijf8/NiV47ofjoXTKtKuDhXV2qJuKuqFOm39prd4Txh0coMfvX394lEnPxiBWfvQlY5wehZM + PZlCk6S47ZomR6D3nWwfVoSm39kIUM9gUmT2ZdP70dkbvq4zk9OP9qYCU6St9zF2AMcEChkLBUQs + EAXQWuEFpvfqM4dBdvSYQSd3Gaysr3wxpn7OaXCa1zBJP5v04vTTpaQGrBDWnnsgNMOYAmGd9YRy + jzgghiKkJVGArCduXYwhMTpvyOmnS4KkwCMPmePQIomkw5YjTgEDymNlmRYUWu01XE9cvBhDEnHe + kNNPFw1pFBEcQ0gZJog6KCmTUhHLHTGUKymM9tYJvZ64ezGGZOS8IaefLr3amjhnjfcaGiCVQMxx + gTnFyFAkueQMeGiRXlNcv6BFEv0yJ08/XrSlI5YqjTB3mkMlPUBaY+2lstQ5gjmBEgrLzB9MhnR7 + Hn44ACUtx0cQM5i8LTJVvmx61bzbFpNScmUcdp54b4CUWkDLOTHICA8pBgwgwelD3rZuNmWnjcsF + 9WwLpZTOS2scNUJJTyVm0miJPEVWUgzlQ964bjZlp63LA84MI5h4jSzyEnAqJRQQeCsINQR4xbE3 + 7CFvXTebstPmJShFHBLqgCGaU4IBUxhYj6SjgngLGRScYfagN68Oi2W37UsLQbCxXiCDNSfQcuUB + 5QYSwJk1FjEEnYBwzXiva1zZa4iv9PZWn4f/uq5zD7ve2X5a1Z+dOnalAA8oDBsd2/rIDI4WGYZ9 + RVjecqKwKYZ8trRyM9i6VLTk9vHXxRF32/1ilKgkpCdnLjEuy5IqSwcuGQSF1ZDgUSWtFMMti5zB + TkXOQk82enWbpMNrWq6hVh2EN4Zoo+WHaN9tFVhrlbpDfNT/6+O77NUnYIZSko/1fvE9fSGql091 + Sb4/1e/ta9L7e9Q7qJahUkfYAjV5/mJPgXiXD9LesekrM/jYJM8+wM/HR1Lj98/2LHzNj75Y9vb9 + 9535VeqYNhZ7h4jHFHDvIXJYCqIp1gJDixVzSDiOV1SlTqKlG7qjSJ10znpLAKIeCCqZJMgyCQ3Q + hEMiDNYWcCJXtrAZ5ku3dEeROmGZ5R5a4502HlJBvfEGBG/Xa28ZpB5RBsCKitQhTpZu6Y4iddJL + CD2lgENIOKFaMKowIUxjgA0zGlOljXIrKlJH4PJXj64idUZCoyFjSGOvqfKSMYuBZhIryKwP8pdI + Ir+iInWE4VXYELtNaiq0lF5ApgnSUDiPKcQKW8SNBMQgiIUQRqyjSB2FixKpm/cZXDpakwxRrK0T + ChvuFOUGEG0F1hAjLjA0Dgp149Kx5iJ1WEhOZqQqSiH/wGTFS47X8mXq9otdM94nowa47PgZVm/G + aTFM98vvybO3+j3bJe+/+ufvR98TYDrK1DFwF5m6l8UoUtHE44uCxxe1Hl+Q77CtsEcVtatbZJ1J + q4nwR1r3i6aOVGRcXpcqi3JXHhdNFVXjqnaDreic9l1fHbsoL0ZRMF6d+tTZqF+M2oyqc3cKQvWq + bAbRsMjGxg37KmsGUaWOXRUN3KAoU1dF/90gAHEUsriLJmRl1lFfVVFeXOzAPdYLlOzmhMsJX7ed + m22XbytdNHVcN4NQNKUKJw9VFZ/p21lXqzSrtjEjDG3fLm9yYbdbJaWRq5jZM4b7v6zLXO3sv6+l + t6+izxbGh3eluX+hsKy6XJ9jSXzzJZfsHN9cqmpLma3mcHGUcz5It9vaXq0YwHS5DSUSWqaqqsLT + 15kyh6HEl6sSE8SGbqX7EW610f3YVEF5iFVQ4DpofyzoXV+gAMh0t+gk/yEEmoWp8XWQeuaW9FCw + NViZCoCXITEE8i6YuC0k2OqAnE7W6PxkjdrJGrWTNWona6gmOJio5oUtPdQcrF25FX3op1X0348G + QdXZe1dGKspV3QTI7E6GmconSnihFmHAxDNvEi7vbFAhCbDZqTIbRx+nZbMfn+HxSYxByM0YlmlR + trW3o0l6RLhLUUa5c62kX11EaX5cHLqocs7+cqs2maPJS6fCApCaSBlTuvYCrYjGVgvC7T3KUwty + PcI+Qyctwm3FPFqUu126yqnS9FtpkHZNryaFClvpkNNHG5+3etyaIm5NEbePNlQrHMRXAbWbwfiy + erY+CoEb4H5X4I4lmy1GbZ3JVPsm5UWQynFDl1tlFivfVzCEtweuNGnmqlDCzKYqTyp1HA5lk1E/ + JAIlmauTuh9AqSt1qnrudlieIbzB8vNieUeUZKwrlq8Ks3Acj4gVkmhyDsdrQlgMERMeaSCsgR1w + /EFhUpVN2KXLWGEmnL/qZV1FNI/Woajhgt72JaF5LgidgebBHwzmrxDuXrZW9f7pFIv22ikWTafY + 1lY06o8jW0SZq6MwyaLTSRaFlTvNGxeActGU0bOf219U+HChdgMMfTsDzQFQD11pmqqaNgtnU+Hf + W9Hnc5esi8gHoBaVql2E0vx7E56ei3QLvX1TtY1a4PzDnfu+8NObFMPMTaSwi1Hu7KTzWZAR084X + pdu6R1B9MUD+PKj+5/b2PMDhehw858U20PUPgq5M4pnQ9WyLmewwp2//QoErYvn5yRkUEdJza0S7 + m/VV1W5lt8OriOUbvLrBqw8Ur64DXL3TO74slMog3KDUyyiV01VDqdcizP64DU9oYV6Yyy5Mykg7 + l0fF4SlGrQqTunocjfouj0YuUqWL6nI8ZWl16dRhCx+nsNOmYWW9z+KA1+LE7rv0jSix+6XWByMO + in4anvoDyrpjw8HokPPRg8y6w4CimYi08s2WUQtDn3mDyPZQZa7I65D4FKKlEptWpt0lB+p7UQY1 + piTNK2fqJKCk4a1AaLjRBoTOC0IVEJD6zgEQ4TkuHIZ6Rbll8HzdE8GQbuueSACscdx3CX/4Ocke + Xkk/SNYAhS7kXV9aBRQO+Cw4Sv/AqGLBVgaGXo58kOQugQ9vf52i0ekUjdopGuVuFE2maNRO0Uj5 + oP9YFdlxwKuQgnjsVBm3ocMhErcc32ecgLg5Eneyh29XvmmjYau6DSxuq0pvA3zxFY1Pxx+344/D + Ef1k/HE7/rgdfzwdfwzpVr8eZLcL2l1GzzZk659DtiLJxL1B21pk9wNta5FtoO0G2m6qVS8N2S7i + VV8WzQou54d1qOz34GnWDb5dQXzbqbLfBt5u4O0fCm85nM3chvSkraLsLQ7glqQ3e9e7uN8l7Wy9 + HcAtSW8DcDcAdwNwlwZwF/GqLwngMgHZBuCuGcAFvwXgrjW0Pd2/JxIGATPGAMUXMeMvAPF0MPF0 + MLeErr/rzusDTffdwNXp5XC3tQ5hOHEnDzJ+AQgJZ6Lgo0bltRqonvqR5m6xeDhFQUvEKOuqrMh7 + yVETel+6Y6eyKpmqjITYu7rvkmFZ1EV+u4jacKeNQvBGy+HhaTnQdQDDC3nP11or+E31+S04elq+ + xIf08OlJ9XrnLT92Ltfv3hyi3Z1h/a56+eTo5ahBvWVoBdNFagV/KsvdTxV4QX2197r5umf/Eu+e + fXd773f+/nj88fO7H9nH48/85AvEe/NrBSPHsAiVxLiijlFqoUBKeMOo1kxJBBhxAmqxolrBEOKl + W7qjWDDiWmMEFceaaWopVYAIggTC2hiKjNbcKSTxqooFM7F0S3cUC1aSSCeIgcoSR4zQyGqKjWHa + Auigc9pqojRZUbFgjJe/enQUC+bGY0OlQBZqr6xy2lsDGNRQaUGcF5xgpeab0/coFkwBWbqlO4oF + A2WVMZQYpg2RGAMorBGIMQMwwlh7wSFn2qyoWDBlfBV2xG6TGhMpsYUWYs6s9Ah5oAAOFUsBM9hL + Dgnjgq+jWDDDYEFiwfM+g0tWJtiF+m8aSka4I1pAKULpQuUl10IyxLAVFj5wsWDKZooFoz8xqpeQ + ldMKPvn08vj91xcGfHj+dZQ+OYIvfwxfPKktsfZwkGVPmTW5Zy/e41Gvo1Ywx3dhl59NPL/47yLv + Re+C6xe9n7h+0bOJ63cqdvC2df1aqTAZFBxyV0Y7eZ1OhNHuMSiYy5ujJi4TY9tT1zVWZ32OJ06u + s7Eex1MXuKV53cnQlWnoVRz4YYAQuaVu7+/vxxplzrWazyobFHlRhvfl4dDPlBb00F4+zr0LA31l + oyVQ0FBKfLFc0TkKOpyibBVVs+VsszDyeTCWcntYZGmdmvTHWZZ3YKBMcZxaKJOhyq0bpCbpK5uo + WxHP4S4b4nleIQdHBOxMPFdj01847Qw5oc4odF7KAWAXQ4SUBpwLL3QX2jl0br4ojHWRcbikYL+K + zPPdX/K1Zp3HHz6ImhfFyfe/+vxF/PXzGDz/cpjuf/z8oS5e//0MVi93P3z7kL99vxzWmS7Qx/5+ + cKyevPlEnoJi9xvbP+oPv1L48vUukT8Guwdpv9h9uqeOuXjnDudnna0GGmJmIRQKGWGMBpIYThTw + WngHAYcIcudWlnWGS7d0R9YZM4INBUgxjwwFSlCEGAfKCW8Nox6JUDockZVlnZc/pzuyzhAYwD3B + VAjgAbAecsCFY9woJhVlyFKKmFpd1hks3dIdWWdhHPXKGMSAgAgyQKDijjGspQQeWe+E58LLVS1R + J9nSLd2RdcaCSqgoAhYyZpwQUmHpHWASUwqoAI5pRzFeKOt8X2XT+IKY0HmfwKWFg1FrjHUYSEGM + IFhJbjR0QCpAJbUYCiAREp2ZULCWTCghdGYeGBF/IBV6qfT88qlQ+NycfP86rMTbyu9+EKx5+5Ek + b5+8IYMfJwcfB5++HD7/asdvvu+j/a5UKLpToO0vrsgp7fn0zae9ZzGU0akvEvWVjVQ0LEau9E1Q + jfVZ06qDtVG5QSJsqgtrU/s4lGiwqY3yon4cmWIwzMaTegxVMRX/qmqVmxCw22tS67I0d1Vkm7bm + Q7h/8BttMcojq8bV41Bt4qyShQ++eahI4SKVq2xcpVWkw2S0UfuLuohG/WIwbT1UZRjdMLyUYR6H + ZxoNiqr+Z1T9rO1WlNHb0lVtZbfoWZGrzEYfymYwvE8lWwGvZ3jPc04/PUhn49NnFFd9NXQ2bg2e + qty4OBg9nhg9/mn0W9C6v/Hm68Pl/h3eOJ+63D4gFhfL7yJ7mBSuYJdE0n9SuDotB2ne66vBgkvC + DQoCt9M8dKhyNumVzuVJNVTGJWmeDMu0KvIqCaMunW3M7QpIhJtsWNwNi/vwWNxL9X1XksW96zu+ + 1iQuqf969/nD592jDyWhVD3VL94a0D95/2P/xLz8a+8j2T96jT4UX959318GibvQQCkrDnezD/Ub + /pX29nYP06fFqx/46Ycfz97AwU59+O4Vr4vmPdzjz77OT+JyBbVn3ECAJVEWYWSVEDz8W0LPuNMM + ScrlqpK4mC7d0l1JXA8EwQJLw6F3UADIiHXIIQ4MsNoILwyWbFVDhxEAS7d0VxKXa8iAUAhyZo22 + XirhFSXcSQyZF8pRyaDwK0rikhWwdEcSV3MDCWMQcSeo4chq4DxxTBirEfKYI2GIgoslce+HWrxE + ZN3bE7hoZAKJRpYbhTQDRnqpsJYACEcpJsw6F7LThe1MLXK0jswiviLV/LR4LKB/ILMIlhZkqWYx + iy//et8fxcnb92zvxdP09R55Idh+/k2U3z/tmexJCr7sFM9OBm+TfdKRWRT8Lszi3ik8jlp4HLXw + OFQLmMLjyKg8msDjKEyZuK/KQRSqSB2nRdZyi3H0348C0Tfh8tKq5QZ9WlZ1oPlCGOFgWEeZKnsu + rozKXDRQw2EgEQv/y10DFXV258jlx2mo5hzAfHvDgLGjtL3oyGVZrF24RppHKioL3VT147buQVtH + VmXZOKrSXp761Ki8jkZqvPXfj+6RKLxUbOiKUNCL7MYk7z84olU9FatCPx2YuLVV3NoqTvN4+oRi + o/J48oTisyfUVn89fUJbqhqe3C5IdJk9XB/KsTLpscpz1X9AjKOsDutDN2APk3TkFMwuBqbybKtX + HC+OaxQg254kurd6PmGhyetsnKT5savqtNd2LwSXpXldpkaZIFZ3K8JRgI1C7UaxYP0UCx6Getdi + XvQFyndNYXYX5wFJAG+h3vVAXQcuwKoV/3p7Nq+i03kVnZ9XLew+N68CulbRYR6O21U1HgxcXY7b + P55l9wTw3BaLbfN+Jsf1pauarD5LrfqZ5xOZoslsVPVTHyrQVk6Vpn9Wbra9QqTHbT3bVuSr9fGL + psrGrS5Y2OXbPrZSrOF3aV1FaZurNSrKw7C1ba2Wvu0UB2y30QmZ285V3ZSuin2T94umcvEgLcui + jJs8AJha5WF/js9sHRBw3XfxxDa3w9+/tQvrA7A/q16bqfb7BGsfRVHpQrevlx5bOC6/WeD2bjC+ + 13jMHqD6GJQM8tkQ3jWlO1SZK+uFKo9lRWF+f/JXuMsmbGATNvDwwgYQXwMUf/eXfK3jBr6+PpTw + Jd99Pf52cvJKSAOTl/vfv8Wf1NdvT3r+5U7xKdv/u/f+KX6+lLiBRZ78DX/YZ2jwsT4gu3Xx4t3h + 8xLtHOGDbx/gX/WAAvbi86cvu1zXZG80f9wAwcQQ5wAV1ilJtQbUKE9dSDPQCAgvtcTE81WNG0Bw + 6ZbuGDfACeCWOqkxMx5r65WzmnAlLaYYMwCksFxytKrJX2L5c7pj3AAgnhrGuCZGSyOtxRIwr5lA + lBFstQVIK+vMqiZ/rcDq0TFugBAlicdCeCop0QorgjXhTGNLgLQaUWiRwn5VJcfI8i3dMflLUUAc + B95gob3mAhLKGYJGIEOZVZhygCDhdkUlxxjgq7AjdpMcA8wZSDnnykisALaSUy3CZ8IZ4NxAT7Sx + ayk5xumComHmfQaXJrSWzimGgAQSGQKkUYoAo0LAokPUcGopNtI8cMkxyC/VaD2THCN/IKVN6crl + 2bnDHfluRE8O3hDxLrbMvf3+aQz3nxYHn8vmqNh7U9kef54UP97udc2zE8vPs1O278r2Y11cn0w3 + 5d8/5mkg8A/qEFfRxrp0SNXrlojXV9U0Ge8+ZdDIzeT6rwzd9rDRSemyEEZyVvliu6iaeDisAEIY + wa1hf3g7En0ht1ofsvyJGqvSQSnIAwpHgeTHWFcPMxiFEjg7Ay4tt3Sp0jzUMBzExmVZWDkXx2g7 + PtzOm7IY5cmwryqX4KQuhmF5SqZHgbfjsB0fbiJR5mWxGRLSdmax+05l9eJpbCUFJcScryWnvOdt + LTmMhLOe4g409subereecSgXhfhXk8K+xVu9wLCTsP6Vqi7KTpEnELJZkSfgD4TpmKxa5MnrdiJF + b8NEinD0YTKRoveTiXSPuJLcEFN99V4ZMB6IIYwhj5+Erw/ar3fyvGhy46p4OqB4OqDYl8Ugft2U + b0Z5/D5uhx3jeOfvg/ggYOr5Qehy+rUpSPynFCSGkkLMZ0LIEAF0pqOyWPSoON9WbV3SU5mX06PS + vsrt9N+3A5CK8w2AnBdAcmmw1l0BpE4XX4lYGSStMigmwrfoEceCwRDGjCG2UAhIuqDHJ+k6FiHu + EAJB1gE+3u61XlLdYSAxmJn2uIDCw1eiwQ2UnAtKXlF5+E5E7U5LcZ5Ji02J2jA5T/9Ntkg8SLMs + LfKftYZboTGVRdVhePQThnentOkwrfvONFVUqkFqm0DM2tS0bGzdV/Xk4s1A5VHQzAowLhqoQK4e + u8hk6UA729K21ahpKdmyaHr9qC6dq6IsPXSR6aeDocp/hD/Y4l4Fy9DNXOwlgNCm+cXFMM3TIt9u + yy6GQJ64VGlI81O6aOq4X4xilceB1Q5lIPrFIM3TPG7f55gJIsTt6Nr76s364OPdpnS6Sh8SnUtJ + M7YPk84l5NK547ncwlBCZZCaOh24arFYHDq8bYqyyNVxWjbVZAczk/jFkADg0jxpczgS7RLfhESC + 2yFz6PAmPHk+XG4gV8p3xeVumC4clwtJsWKEnWN1JZMksLqYW0qMlb4DLn8+TMP8faDgfC3Ckxfx + nq91hLJ/9e3DzkHz4zj+wg7YaOSGLz7A/GtfvyLJa31QHe7ixhmZH/e+LiNC+aLU75Wtu8YCjZ5/ + +mqaz/3sWb949eLV37tPM7p30js8HOwNPuYnJ+ytHryAT718XcwfoUyxIB5T7aCEQELuvVbUY6OJ + AppYYqlwgnm/qhHKhCzd0h0jlK12ymGMQSiKbJQESEJtmaDCUaawsVhjYuez9H0qm8HlW7pjhDLn + SniJICBeCaItkQozDQRQFGEjgEPeCeTRqiqbXayGuQRLd4xQhpho5KA3WEtMuZdQO0YZdpRph6SA + 1mBNlVnRCGVG8NIt3TFC2UCgCfTACeHM/8/eu/e0zXXfov/vT2H9jrbevaXHZd0vWzo64g4tUMq9 + PWfLWtfExLGD7SQE7Q9/tBJoeUqhDqSQ0Oh59QqKE9vTa3nNOdYYY3oX+qkr4BB3LDhTEqQptBhg + u4DtKTiYlYfctE/gAeHee2yEwNA4xDG2mvnQdxpBCI10hAsssNOmOWsWELKArFlAwGMmcuwv3I2H + 80earfZ3d1Z3D8/NzeXJJQCnF6PVDoIXXxnJjg6uDtrQwpH50su/0i8NSbPyRX1613/UItG9WiS6 + rUVufSO0iya1SPQdxIzq4AlXvyIY+rPp8M8vlwfozP1CK753c/HtzcXjm4u1iyc3F3+/qHhyc8/o + 4vAKF/E60Od/a7Y8T2C6MPu+T6ntvc9rq3uPvGlvj787tpUVWmVPHhsuKCndVT8tg/9OkbRKldeJ + drnzaf1rxPT7N5hiYhY+XtbgY5ank8MmFhIPx+q9o/rjsvqREvG/AoE7bK/ZMu0lYanLq3T8cga/ + +cAPIPTRI114ufXqyff910lb5Z1oVPSjqi5V3nLlh+i4XQwn9o3jsH14LKjh3W5V7Z4OXCsN4Mi/ + 4/LE4akJkG9RdlXd4MB7pss/N03694E/U4S+5wuTUTTBIlZqmiBkXHm10skG1x04bLW8JTDZcVnP + 97MPvfyxTpeTs3yvyZ64msn2+PisnhAGoYexFtLFhFkTS+5dLEL/q9AyUgv06Pmq5AfE8nBdvX9c + 7oaPwzDjg+4g+dv7fOycPZfno8QW+W8f+uTIu+nyxIGhk8+Ns0kI39P4S9NUErLpMsmfE8hpB8Qd + 1jIBACaXcffbQ40hY8h6bTUBKLjJC8YMoEApzgyGBhJukCe0cXLJnpNaNo0kRm8SSYzuR/L2tweR + ZEIgp7HHAjjhhABAciE9sQBw5CDXwlDpYdNIYvQnI/nY2+APR5KI+5G8/e3nSDoKACMaSCC4dEIB + TakjGHvmHIOWGk29dtA2jSQRfzKSjLxJJBm5H8nb3x406nRUa+Q4YwIbzTRkUGCgjbWSEQSItExZ + AxuPSUb+ZCQheptBCdG/RuXdrw+GpVVESUSYl9QT5ByTBBgDnGEUA+YtAtYJ3rxNJHpiXP7yL//7 + N0vW2GXaLFeu5cq1XLmWK9dy5VquXPO+clW1KusGJfu9la1RhX3/+D9eaN8/WYN6+wdQ2wya+Qku + fiJKderKKiB33yGl+7BX+OB/e/pxzYITeHIhgXhHjMDrXtaS75YQSB53Kq3bNx8emlG+gAaoq5Uf + XZMT7Vppnuj+hNiXtNNWOxslyph+GchhNm2ltcqeSQR8qMhfEgF/I9CxFj00ZniUCJgPZk4E5BxR + S4m4RwQUzuNp+wxs/mjP8/54gPBBI60HTEA4D0zAmUz1heYCotOtw/J4z/KDjZsv6nzDyCoffNpV + 2/7zfmoKfHUpRLZFV29uqrfgAtJZ8qb8hbH1/vDzKJGjr5+JPl5npnf2sc72k7UW2okH5eEavOCd + 0/7p9FxA6yDVlhlNpKaCOqwwlU5I5qz3mkMKoRTK0nnlAgLx5pFuyAX0glNKOVUEccw41p5TghVC + 1ElGAbSYEkr4vHY5hTP10HxepBtyAbW3iEpPNUAIAONFIPgIIJCFmjhFBQbICTevXU4xevtIN+QC + AocgGm9eeqWMUcga6TTl1iMhscWCWOTMg04ET0b6FbmARLx9pJu6lTLtCAOWMCC1xh4iDKAVQnvl + nTSaQ46ppGBO3Upn6wv77BWxUagtt9YzpTzSFklLIXAQYcEE1gx7o3Vomkyne1HPi1spF3hGvMtp + n8FD824CGUQ0kC45pYATSrnmGnmnqLFCOU0tFLIxakbZgvIu0SO8S/rA2+OvYF6SuWNeHn11n24+ + 1UfpsOqu7vOP39DoaL0NFJAp3zj8/EUZNVrV28O166qpXSl4CfPy+HvtF41rv+iu9osmtV90V/tF + t7VfVA/Tsei96JdRL1O5qz9Eq0/8ddzOt4iqtNsPEMKYG7apyrodVaOqdt3gYDohHX6IdsdHpwGv + Gbf6KqKq3+sVZR2FZhpmFP9/fQSA7qqOKyfWpyp0/YpUr1cWvTIN3991qgoNrsKntRv3KOuVLlTP + kS/KyF3Xpeu6yA1CCdxYRo9m0M73NzL6WxhvxeUTtXrobju5yvCneNw2d/x/d01zVTx5RvHdM4pv + n0IcnkJc+Ljol/HtM2rX3Wx6IunrX9NSUr+U1P8ZBJ0+7pBa5MElLUt1qcrRh2GaudFshfXgur3S + KothANWycXPDMM56RZXWrkpC1/KkCEFx9nkwOrhuL2H0pc/VE0cupfR/BkB/wcxeaNS8l3798mWb + Cn2YfVrfXf+aYbGT7Ii9bMOUm2l+sXfUOjGX8e6XTfEWqDkEs5Rmfsy3uofreNMWmyPZAV99erNr + Vwtm9lf34k/6y8aXvfOKHWxnq1+mh80F5s5KhBVXUkgMkcdeMGKVhEAQIiDThMAHhcfTFezrweZo + ps1jnhfphrA5A1BZBxA1wjrhHechzNoILoGTknEltSEWzilsjucg0k1hc6O1oAAI5wBhUDJKnTBA + CCOlAcAxwAHFmM8UNn8d2AtzMSPYa9on8JAsJgBTQkIigNECWECE8dpZqrhg2HMgvCdENWaDyoVE + vTBnj6Bef2OLngfm8q+GeanHMC9af0w/t/Y2b3aqDohPR+e9b/X+9cfLrwcJBKffztDhzskaQaiX + kYaYF3xgSzkV6LU9ydeivUmb+fXv+VoU8rXo8yRfi/bTkG3WZd+MO6aP7Rk3r40bCyBVFu0701Z5 + alQWHZZFz5V1GDvzI0V+pKpdsUW6AsEHCAJeY7vqQ3ARB0wSNj1A9PJzLAGfJeDzRwAfzB8HfHKV + h85bnZmiPJ2berDSr+5VglqZ2pWpCoJx66q0lY8Bjdt68VlQTzjJ0tR8Cfa8s544YAGwnhfP7zfr + jwMwfKw/DlzmyHNlat5gO5c/mtiehsEZTQZndDc4w0boZHBG4eHGt6MzcnkrzZ0bt4DsqvGh2eul + r/AD+L2r+P1leqXqFfX4dTb+KbX/N+WYoef3dHzmly9OvrrU9yxOsvqAfHy/f2NLfwhtCPIirT44 + 259dwjpk5nZBU0m3n9VpryzyVlCjBUKFMu2wsKX5INjlt0Iu89xWPOFMyw3K6XJWBQSkjQ2/eypz + s89avaLcMni/kaNgSI8bOUoArHG8ieX3Ybi4vH6n+5R0EXLXmUz1hd6x3P12MDhc273arnp77mi0 + 1bNnDn6T5e7Fx8sE+Bx8Pd+qv33dqjF5ix3Ln/Vivzy66dZC+5Btr6+m6VZ2ctn6hOnG2aCrLxOe + Hp8Ptq/L4rLE/fyT7p1skWdsWEIJlQaAGoewIwYaDgUUlBKjQTBNgBxCIfi86nwwePNIN9X5aKWB + Ypg6jaljjEtthcRUcq+QwwphpbGm87phCSV+80g39fx23nnqgCGeO6Ewg5QgAIUBEnkhmVACBV3K + vOp8BH/zSDfU+RgMrIEScUM8Nogx4aSUkAMDJEAeS4UMo5rMqc6HCvjmkW6o8wEMAsuR10gybBQE + yBIppJLBkBoDCjzVEqJ51fmwmSpfn70iNgo1U8ByjYXj0BAlFDSUMuyhlNBCRz0Loh8i0SLqfASG + MyI8TPsMHrJKuCNOAaU5IIoSwh3jHAjNgNVMUyad41A1thqCmKNFZDwA+ZjOR/yNaC6cO5UPWzs8 + vjo5Vpnk7a4auM6X4dHJx92PZ+d+A2V2G60ODq/2drb3k/2GjAfxIsLDBBdW0f3CL7or/AI+fK/w + Gwt0bOrqIOO57YUY2aJVvWbLyQdbt78Ah3+GxVZCZ06TuUmZG9+/1/juXuN7NxqHm/ze7THc4fNw + 5D9/HYsDOe+WRb4dXo1pVboHluqLDD63MIDQdN4n/IzRE/0mw1AtKzdbqkSHmRWVJ/f2oJLaqW7i + y6KbBL3YKGmr6nZTNaBUwYn8edBzZwk9Tw09i/Bfc4up1syBZ8Ykd0ah+8AzFDSGyBLhCeOS60YW + U9/H1/vDnRH8HfCM5gB4ns1MX2jkmaMRqS86258+XoqOSHaOkm0z2lSsvdZ257j6dtZNdsmoV+Pe + 6ps4TLEZ1tnipNhoZWdJIvfRR93evNr4lnw8+Kx3b7Lt5DPswMutLjnKV0+PxfTIM2MKW0MBl0w7 + JbTTnDGOGWYOcA8JgRZCOLWdxqvhoRC/eaQbIs/AG6YIsAoAYrDHjipNOfMKCumQwAq70PBTzq3D + lHjzSDdEno3nUgOkpeTAcyKNpAZLwhAUgEolOVHaOQDnFXnGb//2aIg8M8Go0wJwrLHkgFiBhbCc + YocQt0wgjqEUxs4r8gzIm0e6IfLMJZZEQyuDR50nDCnGPPJGG2M0ENBpYZie7j39mg5TjM/Ditgs + 1MwgKY22WGGLldFSUcGJsMIChoElhgjnzEI6TDE8q86e0z6DB41qlQeMMsWVgVobYhATSlohUbBh + BEpSRbhxzVtYIAAWD3lGEstHtXYvENv9Ej5eCOwZzF9vz6tzf0n8x5v2pa6GQ26P2Flf9evTuF0c + tS7qrZiMUt/ONulFp6nD1It6e67m/2Iah9ovCrVftBtqv6itquiu9otUlLthFCIXwOfuD31dt1+Z + LEDTqo6MyqMs9XXEQTRucBmldRUVwzwajq/4n0hlWTRsp5mLQn8dVw4mdGdXtkZjD6jbLqKBWB/K + 1A/RSTut7s5xS5XuqlHUdlkvGrdQtGNUPEv9+MK0CrZSo7gX+MPhsvt1kRfdInQvDdhNFelRpOoo + c6qqIwSinitNONErIugCNUDQfyB7K2meF4NxT9CVqt9zZdzud1Uej+8nnoQmrurS5a26/UycfEZn + Wxw0PM3SkWorner3JBpUl7bvyOXl+4TCkYDo8U4Lwbeu6ow+FGVrdli4lZcrddsF3CsZFmUnKd3A + qaxKrCo7SXf8sknaKitclagqUaZOB8+kYVt5uRQPTo2GW+6NbIqGq6ouZ0/EtloxhE3o9IrFRD4o + pUG38kEEDXGuAR6+Gi4uL7rvT0CIFoGEPZuZPkMZ4W2W3CT3F1KSpYbwLvNnUs6xhlC8JGE/abtx + Gh4GaHQ7QKMwQKPJAI0mAzRSVTQZoFHpWmFTIqTGIU2uOqN/otq5bki7x44aeVFHYaZHLZWp69RV + ke7XkcqqIiqVTSet6F03revwEVNkWVqNv3GS8Ife9FEwfY3S4ARbVakOxUAR+TS3v7q04AzbDtel + snA1H+ZH1Xg/g1ipesq4SQIcPOP6tSvjqu7bUXxTFN04zeNwb/Hk3uLJvT3Dw3XWp1ycBLxuh6rP + 9vpZ5d5RBl52PLt6p+k3fqBu/sNMFNa/Gq/JlTOlq4MKqhUGjcqyURKcqLMsbYU3gEqTbni/Jln6 + zOSb9a+WRJTpUm8rBTKNfTvCG60y6ezJKIQhSwmLhZD6NvnGAkySbw2ME4o1SL7Xb1+40fGv85J3 + 0PQML0DPs9nM+MVueba5eXR+4XXaLVaPj1jv0/HG9fXJ1u7ndQD7n7uDcutz9+rT5nEbby48IaX+ + VA03W2utQVzD1sZh93yj31Hmsuq09H59vbftDgd7NN2za3B3ekIKd1piY51C3hMKrUWQKkys4t5o + rCiVoTeytH8FIeV5kW5ISHGQc6S545oaITQVimjGgbJGCweAQkIjjYX/Kwgpz4t0Q0JKIEIgZ4yE + jEloqeWUACswktwTDIWGWGgA0F9BSHlepJtKISnW2hIvsMbacmEdU8wRAL33hgEcNvYddvyvIKQ8 + L9JNpZBBXWoN49gjZg3FVjhrHJBEhw7ryAOmoYL+ryCkPHtFbBTqIDMF2iKoueDCWIAJYg4KwKQU + WjGnpBOOwb+bkDLtM3jgDKCA48JSgZBCwCCrsOfKO8ERUsIwp6ECDKJ3TkgRD57Id1Aa/Y2gNJg7 + Osrhwd6psQd729eXo6+7XVyXH/UW2zk+Oj7eOt3uHH9sHX77XA1SZVqvQkcJ6Pak8AsAcugnBs33 + 8i+6V/6N/2Sj1Q+7H6JxGRhlqYvSvEqti1QerdaqTCOjyrpMbcv9c0teGYOpAYA+UGOSSYCoq9Ah + zatumo3GosqsVZRp3e5WkVFZ5my0XcSb172sKF3UVgMX6fGziHRRt6MxM2JiPt1Vpp3mAXqvo1wN + gnpwTKlpuypQXbq9zF1H7kdX9WpyfySqOmmW/QtN1y7qV5MWa8oOVG5cZMt+K7Ju4LKiFz59h6Lf + Nmd7Re7Kz/XfFNwVlcb9ylWxCk8nbqmui+si1kVR1fGPh/twUL+IwvLcky6tr5fW138CRIcCssc5 + LP3SdVTmynqmLJbLG8pXusExv1f0+lladZOuGiXaJXW/zIPqy9m+Gc+XALIViXoWiB5OswTRpwPR + HVGSsaYgelWYmQPoiFghiR7bCLKJmlMTwmKImPBIA2ENbACgHxcmVdnU8HnY0Vz2O5sNeD6Dab7Q + yPnXg46EO3zrYPTt+vqTkAYmO/uX3+Iz9fXbWsvvrBZn2f5e62j9bZBzNktru96N3UDd0/qYbNXF + 9pfOZolWr/DxtxP4se5SwLbPzy62uK7J7nB65JxgEjhrgArrlKRaA2qUp44iYDUCwkstMfFzayKI + 4JtHuiFyzgngljqpMTMea+uVs5pwJS2mGDMApLBccjSvyLl4+zHdEDkHxFPDGNfEaGmktVgC5jUT + iDKCrbYAaWXd3JoIzsHboyFyToiSxGMhPJWUaIUVwZpwprElQFqNKLRIYT+vyDl5+0g3RM4VBcRx + 4A0W2msuIKGcIWgEMpRZhSkHCBJu59VEcKY9E5+9IjaTcgLmDKScc2UkVgBbyakW4XfCGeDcQE+0 + sQuJnHM6I+R82mfwYEBr6ZxiCEggkSFAGqUIMIooKx2ihlNLsZHmvSPnD9bVH3Ru/BdC52L+oHPZ + zexuLTr9o6Q8Oh+sru4cjgQ5LocHZ2tfB/AQlb7+lF9+6x/sNoXOX0QM/8/+/brvP2OJpHbRbeEX + fS/8AopeRGosk8ycT11m77Bk08/GqPhQla/aKZH8HlD+Ny620uvrpHRBwemqFQQQjAFa6Rcm7mqA + EEHw+Y1nZnGmxYGOi9yqQWqT96SABNelht3ynaLH/EF31R/osS2MLYvUfshdPTvs+HqIJqDSUA1c + onKbdIOjZtcFPVT4t7HSOtFOdZ/bNzGcYyl9XBoBLpwR4PuQPr50ir+R5hEu+ybey5EfpI/zpHl8 + EStk/25kjnkW+99HZnSuBu4wjMxobTIy56tB4v3leIWubu7vf91bARJDwQmJe9Y/L0Od+muXTIYl + k+GP5KJMPs5kMM6qsoqrNFfpbLkM17peCRr92pl2nl71XVK1i2GV9Mqim1YuSfMQrYHL6+eno7pe + 8himFANabrhrmox2nZ15MmqksFI5di8ZldiQGCLqHGdEG9CEx7DvbGrS/B0KABeCwvCy2b3Q9AXP + AL0E9f7J5UB9PdV7FoB6ddCTw1G7jW4uvqafd3c3wV5786x6C/oCRzPcrKkuNgjfNlf7J3Zd8f31 + E3S0e3TsNuBXvra9kyVnfGf1XH4anSTFM5yovXNKEw0118wQbRHFyGlugECCWwuJpU7puXWiJuTN + I92QvmAcJd5gxqVnVmqknLTIBxdwAIiQmDEKtJluA/IV6QtophLL50W6IX0hiFi5x5I4q71m3GDt + QxtEJwTVHGknvVJYqDmlLxDE3jzSDekLGGrGlcMQWIsctyq8l6XhiCpJUNhtV5bq6TRSr0hfYDOl + Lzwv0g3pC8Y5ajDETBhKFDZUU6soNCKwz4ShPNinKanmlL7A0dtHunEPRGk5IcwxzJ2ClngoiBdc + SeUkIthp5qA0iC0ifSFs8s+IvzDtQ3gQZhQkfl4ShJzSDEuPoQMMQaQcQlgpbR3wDDTmL4jF5C8A + zh+DZtmSv/CK/AX1GH9hMDwc9La26zNW7HTXr1e3v5rNfnWq2v3O0UHLtA6w4SdfOmdygzTkL8gX + gbwHbhid3NV80XGo+aLDSc0X+AmH32u+6MiZfhlKz+i4LouOe83Ohw2oCj8DX6Garcqi6IYf4u9l + bTwua+PbsjZ4u/0oa+Py7haDz3LReWhw0wwpfpVLWaLLS3T5j6DLVMhX18kNyu5K6SqnStN2ZZWE + N22d+lEySIssvCp6ZWFcVbkqCXrdxKh+9TzDuXCqJca8xJifOnQBMWa5CBjzbGb5QmPNp8PRNuUH + F6vsJPm2tbN1uHXwpd5M9beg/uxnB1/Y9s6a3z3dc503MZmbJQJ6WhzWH7udjZzCdqe3f4IZP6ta + vU9feqPP6dfOWX4R62p/PbXo6/RYM3QCcAABglYxYwgGXjEDvPecKc68xQ4rbeYWawbizSPdFGsW + iFFLsLAOOM+MxZRbaIGhobkTtyC4aQg6r1gznKmA63mRbog1WwMAhgxLABA3wmLvkAiGUYorqB2n + FGvHlJ5XqRx6+0g3xJqtIdoQp4FHlipDsdTGWM0oNUyCIAK1GjANZoo1vw4q99un8MeewM9BpgxL + SbDCiHqsPCLSW6YFUQZSD4XxykJjbeP+cE8FeH4xOS7FY+3hEPgbMTk0d5qisw15gfuDI/7pUh2x + bb52chAfk8/06LzqJi0I1uVlZ30TfCsuGmuKwEswuaMfOXJ0lyNH/7lNkv8Tfc+S71q/9SsXDdvO + 3QSY7lZUlPVDIfyKEJ2YnZqoTAFC6DXURE+daXEAti7uldfvCF7LhLm8fK9KIsDR473UdNdMXn5t + p7K6/UGnRTd4suZ1qbKZtni4vGRXK6qqgnvQuI5MtKuHzuVJYUy/NzGrCYqEtlODUaIyU7SL7HmQ + 2yVb9nhY2lO9S3uqB1KYuQTeZjPXnyc3+lVKjNhj29TiL8yIydwoiL63J743VqLbsRL9GCtjPdB4 + rES3Y2XcU7jf7d0q3aPTT5Gy/ayuItVyNiJg7LmKmYxGTpXV/4pUNJ4kceVM+ExoSTb2iO1Xt+at + 4SvW0kKrhxDun8xi8dNZ7G/X5xVV1qnJXLUCwQcIBVupIBJCxiHphAABEV9Pn9L+kdMuTn6bu6Er + 1TgVe0d6+TYYgo7ovNMsF2P6aJb743nONqW1Hb3iusXkhZLcNxl+Xt5qO3qpjp9eHW8EV00z19z1 + /0BjYCecU8CK+/p44dS028UH4eKqhexL9nuBPFuExHWKGT1DMXx415WqLspGengm8WM9gP9GfJeQ + +dXDyxdZPW3eDcToKf/6P5id4t9kp/9eV39MnPjJifP79PN537s4+eVZaqralWX5jtJL6S9rjeX1 + u0wvhWQPiO730stxk5HZppa4RVZs0arujL27RenGSdR4NLrAV8oTd91zZR3IS0W/1a6fl3TiFlmC + pdOlnFwZwXnTlFPlaVdlf6IlLgTSQY5MTBgWk5a4Sjt51xKXGKd8g7RzdXyB77ch7oN0aS5Tz5nM + +IXmKq5m7fwSfj2glvakqW1rdXvjy87HQ7F66M8/7bY/7n0d8XaJu73hW3AVxSy5iulR68vw4z4d + nH1CtZX9q6NNozevYR9i8u1841R8TJMRaI1O+l+ewVWkiiLBuNVSKoG8UxZYG14HzBhDmRESc+XY + vHIVmXzzSDfkKjLgpDWQEgIFZlA4BR0W3DorQqdLb5CTFFg5r7p4Ct480g25ioJgDSyBVFoPBeMC + AaAV88RQwoQXwBLDrCdzylWk4O0j3ZCryCA2TGjOw8jGyELhjKKACqkNVQxKYhSTRi0gV5H+ri3x + H3sCD4JsmbWOYOKNZZIQCDTDHABiCLeSIqZ44OI2FhAzQReQq8gwo49AWeRvbB36YA/j7fXDh1vy + BnV7p/zL2tH6t6on2ceD7Zv+53Zxuf/1077V/VO1OUSbu59EQ64iBPIlqNhG0aqifTWK1ly0H5p1 + HrvMR6shRw78xDzanOTI0ckkR37N3dwGLTN/gAU/9lCrsKyJ8d6pQBjI52zZPv+7Fwc385kyqpDv + CDW71AWv3ilkRuHjO7JVT5kZI2ZgWK3U7VAyBypz4osyCaSupKvq4G7ccnWVqKTqubD/ErrCPg8u + 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 + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9adedd52548b-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:56:37 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:54:59 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=AhvR0P0OFQmpeHJZkHe7WNieLo23abmyJ6AguKfHckS2YY4QL4uB1ukFC%2BcRBosvDvZB5o0dilhzX5F897vq0xJroRsu2KokYzafHMfoArkpyHzKzyQEJq%2FQhh6L72uv%2BGbt"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=100&before=1617376395&size=100&sort=desc&metadata=true&after=1614222795 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9ae4f85bf999-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:56:38 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:55:00 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=DrImqNJvM5Iwoj36JcoIbP%2FAqD12DngaRP0oUjf6nO%2FbDuLrVet6aIfi0EAK2CAIohcW5rV66AMzU7G0GmCzYi%2FbMXZZHqrfII0e5E%2BjmYqnLQIL4z3I1x48rimqlVMCkTTd"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=100&before=1620529995&size=100&sort=desc&metadata=true&after=1617376395 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9aeb1d9454d3-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:56:39 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:55:01 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=5mRhAqr105wbwzVWXZA5bKIbxhiK%2BSnxjL%2BTiBQNeKOmm1aA13tjsiDS%2FR%2FTSsGqviscfZB7ds4VvQ8JkzrtEvTlmsB4J4wfq93asCmEc0Fir%2BHiOC7R%2Bk%2BlNwlrh4UiK9SG"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=100&before=1623683595&size=100&sort=desc&metadata=true&after=1620529995 + response: + body: + string: !!binary | + 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 + 33kb9OhSP1o0hD1S4v8Ymf7f/z8+xUOIggYIAA== + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9af2fef554d3-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:56:40 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:55:02 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=lMHwHwdAzjHvxFnyBFqnsvIhnEuGVLm7J64lsmFL1hhyci3RRy76%2BZ57gWcSn40oSIyVZXjzylEY9bocKWSgnDdiVvDO7GJILKz%2Fq2uRZj80Mx%2FyunIW0r03%2BvnixyyTEEYS"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=100&before=1626837195&size=100&sort=desc&metadata=true&after=1623683595 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9af7bc3aca98-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:56:41 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:55:04 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=kiNJObhTooDjiqWek%2B4MAgfdGfISZbtWPIhV36YdFV9N%2FSpdh21Dfvn1K0SRgYU6sWTXSRHkrbHcX7SItaFjlq%2B%2BKTko3TFCnmiIHJEfur6sKC5EBpY1TXxKnITh6fDmNKvo"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=100&before=1629990795&size=100&sort=desc&metadata=true&after=1626837195 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9afe0e9453e3-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:56:42 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:55:04 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=o1VG4B%2FZVTwFElqabxE4wal03Bj9SfSdix44lSEQy8%2BkdcAwIy1X8TbMLhgw6UZRBNfdvNtOVHtcYTJpSeK9C11w%2FG6mVvVLk0jZnZaBvRdxkSsRoDSioZcQfjTJPmiIyeFr"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=100&before=1601608395&size=100&sort=desc&metadata=true&after=1598454795 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aaa3655b5953fb-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:02:26 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:56:31 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=v0KtjepsEofmS3wOMZiNiYf%2FmW%2BWMvcstWCzCo%2FP28QaCWVpfQPWNAO7TFsM7XG6k22Di%2F8IthVhS94Xie%2B51uCcAwdCWiCC0n5OyAs4196IQkFEEmmcFYFwzkokKRre9Oi9"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +version: 1 diff --git a/cassettes/test_submission_search_mem_safe b/cassettes/test_submission_search_mem_safe new file mode 100644 index 0000000..e6de46d --- /dev/null +++ b/cassettes/test_submission_search_mem_safe @@ -0,0 +1,9799 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=1000&before=1629990795&size=100&sort=desc&metadata=true + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9bd21c4a5467-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:57:16 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:26:04 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=096ZclZTkVz3zo4jTI5XKrr1c25Cum7uzZA%2BtRhaoF2e%2B9LcMQNZVQIsPqdb4A%2BcZswEIftfb08nbyGiO0nbfjc2Ys7SGTe3vQuYyHuLxhoOnP02EQFNE6mPliQi%2Bumn8TVd"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=1000&before=1604761995&size=100&sort=desc&metadata=true&after=1601608395 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9bd52fd75473-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:57:16 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:32:55 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=aWjgzCQIG%2BD8rEU11vfDeSI7VOJ3HiH9PAug%2BB6ieg5kNGXhXF%2FDQXby3hAHJbwOnPNiHdQRW2eEO%2BmRNrGJ%2FcKjMGD1nDx7%2FQv94itkMjbNtcSgclsRZoBqzqIIM310VhJ%2B"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=1000&before=1611069195&size=100&sort=desc&metadata=true&after=1607915595 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9bf17a9753e9-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:57:21 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:32:54 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ABcg%2B3tAJkaBKF3hdvsvluZ7nOKmfx729UyCZgznKHmT%2Bam2XGHnSvTt%2BGTca4CpJ5uxYtjhbyE1anP7m4opSqyOpcARMZHgfBUW7oV65AjC7alXz1tfoIbn8O5NIzhF9Bt%2B"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=1000&before=1614222795&size=100&sort=desc&metadata=true&after=1611069195 + response: + body: + string: !!binary | + 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 + 2yVb9nhY2lO9S3uqB1KYuQTeZjPXnyc3+lVKjNhj29TiL8yIydwoiL63J743VqLbsRL9GCtjPdB4 + rES3Y2XcU7jf7d0q3aPTT5Gy/ayuItVyNiJg7LmKmYxGTpXV/4pUNJ4kceVM+ExoSTb2iO1Xt+at + 4SvW0kKrhxDun8xi8dNZ7G/X5xVV1qnJXLUCwQcIBVupIBJCxiHphAABEV9Pn9L+kdMuTn6bu6Er + 1TgVe0d6+TYYgo7ovNMsF2P6aJb743nONqW1Hb3iusXkhZLcNxl+Xt5qO3qpjp9eHW8EV00z19z1 + /0BjYCecU8CK+/p44dS028UH4eKqhexL9nuBPFuExHWKGT1DMXx415WqLspGengm8WM9gP9GfJeQ + +dXDyxdZPW3eDcToKf/6P5id4t9kp/9eV39MnPjJifP79PN537s4+eVZaqralWX5jtJL6S9rjeX1 + u0wvhWQPiO730stxk5HZppa4RVZs0arujL27RenGSdR4NLrAV8oTd91zZR3IS0W/1a6fl3TiFlmC + pdOlnFwZwXnTlFPlaVdlf6IlLgTSQY5MTBgWk5a4Sjt51xKXGKd8g7RzdXyB77ch7oN0aS5Tz5nM + +IXmKq5m7fwSfj2glvakqW1rdXvjy87HQ7F66M8/7bY/7n0d8XaJu73hW3AVxSy5iulR68vw4z4d + nH1CtZX9q6NNozevYR9i8u1841R8TJMRaI1O+l+ewVWkiiLBuNVSKoG8UxZYG14HzBhDmRESc+XY + vHIVmXzzSDfkKjLgpDWQEgIFZlA4BR0W3DorQqdLb5CTFFg5r7p4Ct480g25ioJgDSyBVFoPBeMC + AaAV88RQwoQXwBLDrCdzylWk4O0j3ZCryCA2TGjOw8jGyELhjKKACqkNVQxKYhSTRi0gV5H+ri3x + H3sCD4JsmbWOYOKNZZIQCDTDHABiCLeSIqZ44OI2FhAzQReQq8gwo49AWeRvbB36YA/j7fXDh1vy + BnV7p/zL2tH6t6on2ceD7Zv+53Zxuf/1077V/VO1OUSbu59EQ64iBPIlqNhG0aqifTWK1ly0H5p1 + HrvMR6shRw78xDzanOTI0ckkR37N3dwGLTN/gAU/9lCrsKyJ8d6pQBjI52zZPv+7Fwc385kyqpDv + CDW71AWv3ilkRuHjO7JVT5kZI2ZgWK3U7VAyBypz4osyCaSupKvq4G7ccnWVqKTqubD/ErrCPg8u + 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 + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9bf7aa5eca98-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:57:22 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:32:53 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=3QHybt9Fubw5xw7PE1r4L3S9b9fR3%2Fe0H%2BApAjr1HguhqRuY%2F12IaHekTET%2FUlJ16yCVUWkhoXDwD8vt6ihZan8qxA0llXVI7CQP7l9NNxkNz0CS8sA99fFkUPba0ffIZRrX"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=1000&before=1620529995&size=100&sort=desc&metadata=true&after=1617376395 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+y9aXPbSJSu+b1/BcY3ero7rmHlvtRERQe1Wbu1b9MdjFxJiCBAYSFF9dz/PpGg + ZLssy6ZULIuUVfVFJkEsJ7HkefCe9/zPv0RRFL2zqlLv/oj+3+Zf4b//+fxX871K07YaqcImWacM + C/73+wcL5KN2mgxd2+T9vsuqsJhXaem+XbKuunnx7o/o3VF3kJhxu+9UBcG77y7W9qlKirYpy7ZJ + VRnWmdVp+qNli8R0K3dTfXcvv17wbqGfra8aD1zY22bxRxas0zRT/cliqI3TIUesqB9ZeqCqwuXZ + ZPU/DFJ7ULh+UvcfWygMiCu+Ox5GZe1+btuDvKwe+bnJs8qVVVjMPbZI4VTlbLuuzLs/IsgQoEhQ + yr9ZzOZ9lWTN0Xddpw6nico+mLz/bQRCoNppkvXCst2qGpR/LC2NRqMPhbM2qcJPloql0iQuM27p + /kRaygQpEFoaqbLbTl1ZtrsuHbRLNXTtquvag1Rlrmp381G7ytuFs7Vpvlj6dvOdJL0/gf/n/3zz + XWLDPk229O3vkrJtirwsQzCVTkO0qqJ2D5fqu+Yy+l4ok7KdF0knyVTabiKfVY8vOQlHu+9sotqf + o/vYwrnOq3aSWXfzw50rXeofX8swsS5/5OswYndXg1am1ynyOrNtk6eT6/h/cWuRIO8e/9XX1+87 + lw1/sOiPLt+vFqtcf5CqyrUn48Y5opYSETMBaAyho7FwHscQGaGwkEAg/u5Ha2s2+G4tGyZFnoWz + 7idLfzn6NOl0f7j0D+4faW56zj4S9cno51k6fmSBLG/7PNx3vz/kWd3/+l6Mvvf1/VkdFgDfLJAP + XdGG4pGND1Thsqo96iaVS5OyapeVqupmgJuHhS2/PdiBK/rq/uL/Jy/zQZJlj0Y1HG27mzRXXzNM + D35duGHiQkz/+gxsvnRZuMQeWffkUuqrjiv/8iz9+r//+e6nX92BhmWPcZF/akO8qeja6Krbzz9t + X+OdwxHe6MRw96baWRmeWnq7+e794ysrXJmndZXk2eP78vN9+ry6rmvO8j8iRt7/fOm6SL++wbub + yhWZSuO70DZ3+w9JtVQcffp4SHO3fNEuMbk4X87h6f724BO3bGt5YyTd/kptdHl7KsyHq0HnP0eJ + rbp/QiD+b9Uf/D+myAd/ln1VVM0/VV3lf46cHjT/Kv9URHmNOVCScqq51NAZDbFjyEDEmcJGGUuU + ezfFATUbDk9AIH648P95P7NAQyRfPNIIsmkizRHVWEDlKfcOMaC9AJoaI7klyDsrnFXOIviUSCPI + flmkJXrxSGMEpok0o5IoZKAXGlvCjYGEUUaMcQY4aA30lBoA7FMijRH4VZHG4uXvHoxMFWnFGYbO + KwO8xxAxxhARRmrPnFTEeoKBNdqLp0SakZ9E+tFv//sHd/oyrwvjvvu4+v4oEAR+vNP/2Ah8G2QD + hNCYcyYU4EYCaxj2HFNqJANQegKcNoSSnwT5c4A5eDzAPziN3w1VkajJLOl/vj8IDz/973/5wdrf + DUZpWBv75uPCVUXihs628+yrhIp9m1CVJi/CkMJvP3epv5+rvnvwXWbbhRukSTP9+M6EsBzkSeoe + SznLKjG95NF5U1nrSVYStn03dXv32DJ3s/KKtvt5PXp8sbLWpSkSPUliEcOACgAfXfx+Kj2odZqY + h6vtdFwZ0tUyL5rdNHnmE/u9Pa26dV9nKvnLea4/NB+Xd9loM/9uUtJMbKGVwfXG1oEdUXB2IG72 + V9oncRETvb7xsdVC/Y2zutM6zdbLcJ4/urH252vw2xvhV8t8nmuQbyfkVVI16d27M1V2ozBDfh+F + KXIUpshR1XXRZIr8R9TNR1GVR5M5cvON+5LZqDRK+gNlqij30TiviyhVdWaL8YP9zit1h31CSmpc + MmxOjwf7FShBWHO7Ut+nQ/VgmFeuXagqCTkm/PDtKr654wQk8A1KWEpdVcYBMMUmdSpbQgDBJTUo + lqBsUoY4BCQO8YhDPOKq6+JJPOJuPoqrPJ6Eo/niL+GIJ+GIcx+HcMR34fjPld39Pz/uKF02t6u6 + 6jcJed3/8yg3iUo/fzq5A/+5rozTed5rPvfapIn9c3PUOgQdPEyOdjA4b4Gbo3UF02OYkPbFJ58Y + vLIyONnApyk9xYPuOBNs7SLd4Lv0+Nh3/tea6eY6v/kTMigkkox8O4UKcWuHPK1IrHVZW4/b1jXA + 5y2UTw3lEzLZu5v7v3zn7v8ruOmVyq6S7OYVEVNa6iuHr0evk5hyIB4npkabD0bNDpQafb2kk8Km + Sc+1bZLlpaqLtsnr1La7dRZAYXtyY7eq6GWuLJ+HSY2+fsOkT8OkCghI/bSYdKBSl88clHpFuWWQ + fA1KGdIxRBJIAKxx3E8BSvfDzmVVnuad8asjpRAuAiqdwYW+0KAUXxyRG2g/yc5NdVIU+ebtuLVy + 0jvhLhlt5nb35qS+Bin0rpu/CCgFM0Qd4FNWbcA1Lwo8TJeVGJ0IvL+817rKD0+XL2S9ku/h294q + QeubTwelxjPgtORK32XiDkFJrIAacKmZl8I4qqWaW1AKXzzSU4JSqrAW2ntKGGFcWcWdQAJh4TDh + ynPEiDOSsnkFpeLlz+kpQakTEkovBUHWEGo8UVxzjygx1GpqOHI+nOh8pqD01+A7TOSM8N1TR+Db + IGMigRFICU+VUIQCRKhWikjjKSYCGM0UpxhPi+8YWkR8x4EUb/juHt9xKl8K36nH8J1Lrtfzi/Yq + Plg9XutdYTTCfr/Y2G/Z3bjLU72WiPbpzcfxqiNT4jsu/g6+W04KG4dpW3Q/bYuaaVsUpm1RkkXN + tC26n7a9jwZ5klVJ1glMr+oWyTD8PShcNymrvEhMlIX9ShPv5gvhTXLbpcyNys9T2LJbD+s6UbF1 + pSuqJIYfGIBcyGeyrb+3jcWBPv2hUz8kPt9LOadGRCGFiqLChb0m72YJi97trsb73dV4azXeXW5F + /1+0kiZZYlQa7Re5d2WZF0u7ziYmydy7n63vy5GFi+PdbCEU614lswRQ37mFvwx/gkCwR/mTMsq6 + fmKqpO/KmWr2UL8zWKpLrUpn2/06rZIs3DwmZKc/UFniyvYoqbpt9SwEFdb/hqCehqAcUZKxqZV6 + Js9mTqAAklQ5y2KMNA8ESsRSCRQDhyzHEEBIyTRSPZNneT8x5evDT2QRpHp/5+peaO7UGm+IolzW + futwpU4+gavL3lV/5dy11ne31epmp+RmBy/DM6EvXoI78VmKmfYcVj7rfywgrm/Ske/1Pnb7W+3B + fnW7AgqDejufruNs+aS1KZ7OnThmGhJlEdYCcq+NVAQZZiFgVijGOeZASsPmlTsR8uKRnpI7CecI + k8ZrCpBSEDkAOUQWUiYslAoJSaXGyM8pd0Lw5SM9JXeyxjIFiDeYS0iphEZSCo0EQjCPodYcEoLt + vAr0yExFp8+L9JQCPaS1h0BxKY0mnFFnuVYMKW80IRgorh13GuiZCvTez1BHjV880pJNFWljmZPS + C4O0lkAaD61XWHpvLMEEEGuZ9Eg86e4h2VywVA5mJYV86gh8G2QPlKGUhZuxYp5wRYyF0lFBFeDK + Aa+oUxa7aVkqBIQsIEyFQL5pIT/DVMrnTwu5cXoJa6FNUpgb7BHprHS6VdzvDEBd9ldvdsrT68Pe + 5fHG7jifEqZK/Hdg6smHow9xk4VEf8lCos9ZSBSykEhFIcCVyqpEpVFW97UrggAyJKf52LkySnMT + 0EkAsD4vXNLJoqu6SEob4Eie3a0nDdJKdRMVqgqrdoWLfEiyA5vVLurnhYsC203HUdVVWZRXXVd8 + tTNVHv3XO1VUiU+C8i0d/9e7uy1HJi8GeVhv5FSRBfzRwOBuXrqw2Ths9i979GF+cO8DjLQUctLS + qTL+HOG4H0Z8oiusP39elBORYT/P3DjOs3CY7qFW4ec0+B/fhcWBxQ1QVemhK50qTPc7VG+BxYIa + KnLjUvsqxYKQS4EehbX9ybgWd+M6U1wLB4gudfLcthPrVCixbAoxg4y3PVKVK9o6r6rUle0kexav + DRuYgtc+Qj3nBNg+suBbbfVbbfW3X88ZsP1b1/dCE9v8cG00GN3uX7au2/pI7F8en1yyYocsi1G5 + ub5ysvaJr0N9tHzkRk8gtjNNRCGdVSKqd7covdbVxXnv9urTYevkoHWe1atkV1zlq2fJ0Xlx1dob + 7S6bTvndRFRiKaDA0BBLHaJKeAc0dkJpR5WgSmDgLXZy+kR07kU9/TxkoXrcDrPwTl6Ee8K7uwRv + iqQVcvkghfmNk1bC6dwpgD6digPT2lcXWw53r0WuV3S1PDzazVd4mmyMEno5BuqTOR8oMa0CCPw0 + aeWP5qwf89xGm9ap6DiPmmK+i1CGdxbuwtHy5C4cUr/VpOyGm3T41IWcNDopk6wzP1nfd+ajS5O5 + dZxklSvCnalsHjpxeOiEyrGmvqypDWseOvHdQydOsth+PtxYN4cb1+FwlyhHEjwjIXzJvVucXLHq + Ou3SMktML3VQPtRILXCqyADo1/VYvEZZD+SAPZ4purpwPZW6ovqQF53ZJYkuy5aCGY9PirJqd9Jc + q7Q9mYK0c9+8+k9dUwtajJ+XJbose1P1PC1HtJYb7qbNEfvOzjxHNFJYqRz7KkeU2JAYIuocZ0Qb + AKfIER8TAi58gkgWoaTs713cC50iXuz1JNzg63vjy5ubbSENbG/sXl3Gp+ricrnjN1r5abq70zlc + wWsLX0w2uLWrqH9SHZH1Kv940FsrUOsaH10ew62qTwH7eHZ6vs51RTZHTxf1EEwMcQ5QYZ2SVGtA + jfLUUQSsRkB4qSUmnv8WxWTPi/S0rlsEcEud1JgZj7X1yllNuJIWU4wZAFJYLjn6LYrJnhfpKUU9 + gHhqGOOaGC2NtBZLwLxmAlFGsNUWIK2sM/PqujUHd48pRT2EKEk8FsJTSYlWWBEc1D3B7QxIqxGF + Fins51TUQ8nLR3pKUY+igDgOvMFCe80FJJQzBI1AhjKrMOUAQcLtTEU9M5RPAT4PT8SpQs0BcwZS + zrkyEiuAreRUi/Bvwhng3EBPtLFPfCTOhYCKfQv7ftkYPDihtXROMQQkkMgQII1SBBhFlJUOUcOp + pdhIMzW3RotoJgc54P8Ai/4uT14IGI3l3Cmo+q2DvVLb/Z1V2xl5dQxu92q7f7sljrb3Wmui7JyP + jtZONtf7O5u/pBz1uOuiJuOLJhlfNLkygzjqLxlf1L/Lzsvo37uuCEuqzEY2cc23ZT24W7b8jyCg + ikbN7kVpXjYwG7Jo7FRRvg9r1UnQN4XpdlSozOb9JAi4Bmnj+xUHPlPkaepsVBWJSsPvTVoHdhRl + ThXpOILgPQAgUrZOq/J9dDdaZdBcVcHwLimiunSRUVmWV0GYdVWXQXPlbDQRi+VZ44tn6iJk0pEb + ToZ2jiRVgcf9FeMtDWrdLlzqVOnKxrUtBnTJKV/FfVMCChiCHwbdwfMqaWezrcUB34lNbFaVatzJ + x656RdS70yPevE51FAUYP8q8754jfdWZKfMGxW0y+bxKyircBAZ5UbX7qpdknbbK2l/UnM8i3mH9 + b8T7iaooabDW0xJvnczeSE0ZJK0yKCbCN8Qbx4JBEUOEIbZQCEjwFMR7OXmlHmp4AYD337myFxp3 + qwomK5dsRe9stfCytLvrhzcbPXNZVsd+5bw7POqLqk12upfmZOFx99lwZ3tlPUlgrNZXQG/rYgRP + WmZ9/WzrbLt7eT6Sx/mn449H7W72jCYTCDqOgDVWSSgUMoRjA6V1lEnpGfRCUBTkk78F7n5epKfE + 3UQ5Zr1nlGhgAASOcoIMYMIzAh2WnmlLBTe/Be5+XqSnxN2hmQfQAljMnSUaSCiYZdpCpREOWJYZ + LSljvwXufl6kp8Td2lpiKaCSYk+ERN4xxgSkwligjJLGYiKtIb8F7n5epKfE3RQaJLQxmEEJFFLe + esYRRQRgbwG0mjjOLSK/Be5+9hNxulCzYP/nkVMEcYYpl4TBUMzqIVJKOk2tkN7jRcTdfGatU546 + Bg+KsgnCHjIjYDAgpEZbr60HAHoBvGLECSO81Wx63C0WEXdTQN6k159pN35QOvbytHs7HcvrVbh/ + e7G/slelFxut88uLI8PhNsnO2jdH/f55ws22Px/kv4R2H31O96JJuhdN0r1IZdGXdC8y3TQv8kGq + ymrClPOBm5T85nVVJtY1eNylaVPR21XF0JVVVNZZk6A3YDzw54CYC1c2hcmdyGWu6IzDD0yeDV1R + RUYVOs8im+Q3YZ3/vvIJ/UeUZFV+t2wc4ETUz1Nn6tTNU8FvIGd/BW4TD0YEEFgCdOlLLOOvYlnG + VV1k8X2cYpXZeBKD+C4GcV50VJaYOLx7CNSnfB7Nfpl9e/OTfPOTfO1+kjDInl7ATxIAfLPk07xI + rApFikmVqCppmsOqql24cPU62x7m4V7bLsI1/LzeJmFDb0D+nzSWLHMzcyCPiBWS6KazCZtI0DUh + LIaICY80ENZMI0GfNKSKjr4/S3uUy3/v/vHLsfx3v/+Gy9OFAPOzuNQXmtDvSHW7f3K90SmkXEFn + eghXi07ZbfPRWnbqt/n4IOudbS3f5NnawrtMks2VtjjtHXZvsT/uxWp0ujf+2L/ZKfau8Bo/YeB6 + jRV1tlKKZ3U3AYwiSSBzViprtQmdNoTlgEhGmIYeIy/mtw30TF0mnxfpKQm9ZUwbgSFVRDoEqIdc + A4+pDD2lqMAAKKI00b+Fy+TzIj0loVcUW4mkJN5DbQjkTBAktJDcuiBWh9BZK9i8CtJn6zL5vEhP + SegNUIBrJQwiHmuDrfEec+qpBpg6RRnREHIMfwuXyedFekpCz7GmWHlnpHaaGouox8pLLozWVFhu + EYTCIvZbu0w+dQQeuEwaRbCxECPMhCfMGuyt9dQh4IDARBjoPNbidbtMQkQfelT8xtQYzh81Jsvj + Vn3qzga9TK0Oq5v8qHe8nl8gWV7r1tY6715uLt/ctA6lOvklLpPrk1zk34IS+T4ZmXDh+2QkmiQj + 0SQZCYzX50XfBa1ykhlVmAYfB3dJmwwTWwdVs01sFOTJSRYwS+nCOlwRhRXmddMJCAEo3kfKmLyh + f2G1KsrcKCqr2o4ne2BdP8/KakKn+7XpRqO86EVJGY1ddWdLafPMTTqCK9MNAux+HY7D3QmmGxtL + m5Qu84XKTLdRY+tx9OWwB4UyVWLmCkE/NHws3MCpNHSfvkseY+/SPIu1CgzXZlV8H+q4CXV8F+rg + 79HPy+qufbWz8VchmokV5a/Zs0VyqOy7KjGvymxkcONuXqfsGgL+eAfrq7wOk5XygxqUsxRe89vE + XC/VaVUor8qAfco8U01j2yrcTEP3l6bfbSgnMW3rjHqW5UiznTfe+zTey5RUD9uWP8Z7M5XNXoFt + JbCUSvOV54h2CAbPEaQZAco/cKn7HvDdU1lePpH2LoztyPyz3plc5QuNejunkMn+4OpiOd/5NPi4 + u523d1Vrb+sCHqQfrw8QRl17sd86FWvkJVAvBGKGDOF8w4riZM8dmFZnYI/gzU497KwMz1trO7Cz + 71aLvfL2pLexP1w+eQbrJY4BZlhoPwuMRMIQBKE3gihnIAGcCMug9jNlvb+GIaCZMYSnjsCDZkIY + eaeJ5MhjjrlXAivnofHMMoWwIIogKn7q8PIF8S5knTUE4q3r72eEgIiYO4RAL4YHR6uHYOXE6PR2 + P1nr04OPh5z3Pu6elSewvXpKz9BKsrY5UVhOgRC+wwee1Kni/hkXHd4946LNL8+4aOX+GRethmdc + tJnZ2kzS8INaZVXdj9bTOrHR6jhT32t8+HKJ+LcZwNKguFlSOjAJUy1B8AFCgJf2u+Py0A3PP0D4 + AaDQ6PHpifWstvSWKL8lyv9EogykoD+qT66c6VqVpONZKqP4bddkS40bbVulgRa1k8zkWbgDKJ2O + 283Euu9UWRcTg4bnpcldk731b3hLlF9jorwADRxmcJX/OE1+kj1+uC+GmUsxlUM+kG9t3b6eLf/y + F27WeVWnDy6xL3PTcFpF/1UjAE2rObmiza9PrmhdlVXztY12vzrF3kf3PaZcUUbrSWaj5Vrr4F9/ + NHDORieDaG1S9XBcqKz0rpifaeu3z+PJxRVPLq74LxdXHC6u+OuLKy6+HHjsk8zGenLgcRkOPK4H + 8V0JR3V34EuqP3jGu6R52Ms3N/s3N/t/euaMxOPOPoNyHLY427dLos5CWVD7/hJpD4o8zPTK9r0Z + WGN6nTpVPG++LOo3J/u3MoLFKyP4+XR5AWoI/t71vdhm9sut1Zu09Yl+jEm9t39BRru3G2wXJqf1 + BV7el+fy5vji0zHxOxcv8UKJzlJnvZXsZK3DnWURy3KzjC/768u2d7LdX1atttsnFdxc9cdn4FO9 + d/D090nWMowVMUhyqx2GXFKnpFKCw9CLW8vg4qugnNfagZm+uXtepKesHfDMecyUAgowF3xbodLE + U2eIlVBrKKlWUBE6r+4+M/WceV6kp6wd0MwIp7z3gHAmqMYcAcacRgYjLAElDmOBCJpXdx/08pGe + snbAAQcFBcRygB1DQFCMjeRIYKAx44yBoG0Hdk5rB4h4+UhPWztADfHSaW+QRZgAoQ3iRnmApYLc + gNAOw3As5tTdZ7Y+Ss9+Ik4VaimVUEYGizvBjEPAO6gVJdZjBqlmHiKOvaeL6O5D+aw0Fk8dgwca + C6o8JMBoyyz3GjAsoDLQKscBw1A6gY2nP30cfokwJIsosgBIvpnZf+HGUM6fmf3l1hY46UHMu/nR + eJeUqNO7uRp91LW5Pl/Pweaq2G+Zwt5cnVzMrrPqD0QWe24U3Sd80X3C99ndPZj2TCB3k/YFK/qs + TMqAUN43nj2pKjpNJYQpkn6SBZKc3WFv1VFJVlZR32WhMsO7vkpdHKzrs6awIzemHjQ/aOzuj0bO + uuxDFNz1J8UaofLDNEUak5qLPKxJFS7qh86uadJz6XhSo9Ew8EiFAxnkWdlUbrisKsZx6oYuja5y + HanBIA2ra7ZXdVUW3a1uzjyCvkJ3jYt88N8pRy50U42buMT33v1xNykC2f5r9OOkjAdF0ldFko5j + FQ+KXKeuH/u8iPsuC/UR3w5F/NVQxAwwKZ9nITSXu/7mMPTmMPTaHYaAZOIFHIb4LYJkqS6bBiHt + fmPa1lyKDWjvD1SWuLI9Sqpuu5t0uu6ZrwUQJG+vBf7J1wLO5NnM3wsAJKlylsUYaR7eC4hYKoFi + 4JDlOGgMKZnivcCaybP8e+rNhZfQsEV4J/B3L/CFfi/QGm+IolzWfutwpU4+gavL3lV/5dy11ne3 + 1epmp+RmBy/DM6EvFt5TaM9h5bP+xwLi+iYd+V7vY7e/1R7sV7croDCot/PpOs6WT1qb4unvBThm + GhJlEdYCcq+NVAQZZiFgVijGOeZASsN+C0+h50V6yvcCwjnCpPGaAqQURA5ADpGFlAkLpUJCUqkx + 8r+Fp9DzIj3lewFrLFOAeIO5hJRKaCSl0EggBPMYas0hIdja38JT6HmRnvK9ANLaQ6C4lCb0tqXO + cq0YUt5oQjBQXDvuNNC/hafQ8yI95XsBY5mT0guDtJZAGg+tV1h6byzBBBBrmfRI+N/aU+ipI/Dg + 1S1QhlIWbsaKecIVCWb/jgqqAFcOeEVdeFv+uj2FgGTyzVPoC6rm84eqN04vYS20SQpzgz0inZXg + 8t3vDEBd9ldvdsrT68Pe5fHG7jj/JZ5CJx+OPsSTZqR/SUWiz6lIFFKRaJKKRFndDxEOCDtkTqVT + ZRRS1Hzsgu9PYzuvg9u8GgQt9wQq16a48ypSN5F2mfNJVU42UITuqvm3GxsUbgIjsyodR1/t4udN + vW/8hz4z9nsE+r6B0L3yfp2pu2k2OkhV1vR6Df5Bw8a2Zq4thO5jG38+4LiJbdx16SCuP39elHGp + hi7u55kbx3kWV+pmRl5BM96FxSHGm+nm5uZmmm6G/zfT9BVpt/tmXJDXyWoxely4faWMmalqe3xT + D5cGRV4OnGkcoY0q3V2/6HbzUqYRdYYTMx+q0tTpM9XbYUNvmPaJtY5ISAunxbRdp9KqO/vGrFJQ + Qgz5qtpRec9jiCTASDjr6TSNWTd+tnfzSGmnMIBfBEugmVzkC41qe0X/+LqFBOja8razIxHaOblJ + rz+WTF279nbrZpi0ewedam/1YvE9gWznDFVH51uHt6v2fOVmZfXWbLD2/tZ1K7FwCMv88OPWZTcv + +uf5MzTcEjNGLVXWMQ2wg1ZQZxAT2mmNMOVAO2LYvPq/I8hePNJTslqmrCOQAumsMUxJqRS1SBJl + qaDcOCYc54TjmbLaX+S+RNGMaMtTR+Ch/pIjip1xklqrABXAaRrcrbSRxCsiPTGG0qmVgYiiRYQt + GL+1/fsCW+iLGTirx2DLgd0bf9zY6O5cJ1s7hSJjtnW4u1JskjWS4XT5Zhehs/7alT+X5Ne4L+1/ + mU5EK8Fmd2Uyn4iOGnFe7qOVv8wnopbO8mam0tgks2g3z6puGa03c60ANHaT1EYrn043V2Mog+Rv + MmU0QdJ3lhc9V5R/zJcW7z4bW7J50pglAciWrj5cmX7nQxC4fQDkw7Nsmf7GyheHTiRlnjpXDLNX + hCU07dYDD8CrdGMCgn47T/0KTdzmuU1SZWasIRvnVi9VXVe6tuqr2+DWkjnTazbUVoVr+8K5ts+L + tmqnST+pnH0en8itfnNjehOSvT4h2SJ4Mc3iKl9oQJEPDe1e4/pwc3V/1GWjY3mQrlbX12L50yHY + SK5oeczrqgD1/mjxAcXpyeBixWSbyyOw2js87ac68Zcn3dtteLDTkmTgrsZ7H7vLJ9t7a08HFNQa + SCxx2HqNqGEAewGdQs5bwIzCQGkAGNe/BaB4XqSnBBRacKIRcpxbopy0jisuCYCUAuiY9xhzzzVj + cyomm23p8/MiPa2YLDSZUk4DZqgAEkrIINBYQ0Y0Ucg5LjQkls5UTPaLikRnJrx56gh8G2QAMSNC + asiDu6MUmgcJnw/BVkhCphEBxAg9LQqi82/E/fetCIGgUL6ho3t0BOawpPTqdtWNbdGpB9UYL6fd + w+PED9cuW3XOBiXCeHjcye3pxk7n4uLXoKPjMM+LWpN5XrR3P89rajfXD9fWQqevSEU7k3ledJz0 + 3f8VrXSd6UVV1/WjvK7mgwP9sbT046z3x6Tnpz9fHJazk1TD5BVxHM7yHL1SiAO/lXZ/BXGM6n9Q + 5kPdmx2/uapulozKjCvaTUu9dpI1fMMNVdrWRVKpJGuHhnltNaELENw8j+BcVTdvCpOn8RuLFaJo + Wn6jsqpbzN5PGyGlGeYqJgyLQHBwrAUOFoEYYg24ZGQai8BWs3eDPM0741cHceQiQJyZXOoLjXF2 + hgekujwBV/Gu3o/XWbHb2j0q3bCw1e3h5eawvjWX4/ZopXfSehGrwJmWBG5XW/qk09b9I1vdlvYq + aY35Ab4YnFyYZL3d76y2soO0HhdHzygJhMZpoSgCzCqKmOaGQysBwOEvKpGSWnml/NxaBZIXj/SU + FEdK6rSkxgkOAUaMcAiV1EgyCb0ngEpMnURzaxVIXz7S01Ic4rlURAHqlbJICMKd51QTi4wU3ANg + jLOUzatVIJAvHukpSwKBxxRBDAEQLLQHcEowCz2wlCFqHZUGMu00nmlJ4K/hZQSJWRWqPXEEHhSq + BVxmnYTaCCeF4UI4jpi3RklEDGWSYuIAnpaXCUEXUDolHoKO39lTDXA6dwBs5AcXJ/I63rhB5nq3 + GJ+XB+hjtVOt5bs7V7vXh9uO7i7r7fWPuydTAjDG/w7/WmmmyNGkwXwSjMYmU+RoeTJFnrSPn0yR + Iwhu7ivWGley5irO6zJ4m3XzutOtJp5oPinK6r6NfR7VpYvO40KNy8aHbeU4Ko3Kmmoy6ypnqmgy + UQ/bL3sudZVKo8KFfLUpiVNhQ3GS2bqsiuC8PsgHddpU1H0uUZv4rskYkn9tfmLrtPr+AXWVDegu + GMGFluyRqpp/hhKt8Muq65Iisk5V3TlzW/vMQ5buC/SCBXp5l+XEzRA2LeXvjji+y3LiMITxZAjj + ymVxU40WTwYyDgMZfxnI+G4gvzFBe55sbJ72eHH45Xo6Dn5zrcEgda9Jjia8S/l1/3WSTC4g+KUt + TsYdOf5rC4SuKtu+QRmqWWNbu2rkXNYu68EgL6ogWXkezOzI8RvMfKoYzRExdbncoByb2VfLQU6o + Mwp93e4EYBfDADkB58I/eIH8PZa5H3buaSRzLlqdTFEwBxdCjzabK32hWeZ14ltenm7UY77hTVYi + 2886Ca0OjnvCDFa43NHjeKCW1/qbC9/2ZP3gcHdzW4wtpHp5lFz00cryob493x+J2+wTL2S7M7g8 + Ol69PB89w97MMOcRIIYaRaEkSFgMjAHSOSyJl5QbILWHv0Xbk+dFekqWiU3wvtfEOu4IVEAD7A20 + EGvksDMGQ66Jgb9H25PnRXratidCKWOtgDDEE3hnoCdOAm25JRh5KSlVUpLfou3J8yI9JcsUxnkA + vbaIImIpwsIL6EO0PVTKaiIsBBbD36LtyfMiPaW9mVKGAKoUc0gBLKyCDEgBJZNSQI29tYYw4uRv + 0fbk2U/E6Xr5MEoBc85q67Rx3hDuBNOcIWikCqoEBwxm4vdue/LUMXhwk4YQUo+8Yghq7h0wXlFI + APdUaOaJhMwhCPjrbnsCuEDwTaL6mdAzNHeEPjlD7mDd9BG/jC8+ydVRdXq9otPDi/xsXK+tbKH6 + Zu8spa0LefDru550VRk1mV+kopCmRXeZX3SX+TVy1dXgNGej46LuDxri3ldlLx45FfpYRNp11TDJ + i8jWzb8D/P5c6TxQWWNY9lVvk/dRMwJl19nA08Pia6oMd4novk4t2srrcNN4/w2Ob/agabEiA4v3 + hbuuXVY1LwRy3+xWw+gnQxz11TjqqqELi6Z1GEkbdZMyCqi8aF4XTHL78JPwuc/zqqzcoJz/rihV + iETo2J3Wpgr0O67yZkRiFTejowYDp4oyfBxCEBe11qFliPfB/K2blPHk2IMxHAMM89m1Pfnn9+2t + xfhbi/Hon+XvlHL2KH93deF6KnXFbBH8zWCsQqFo24f2T1mnHW56bV04VVbtqu7ndVG2wyG7YZ4O + XbvKn4Xfw2be8PsTtcRUeEanxe+T95Ez5+8WeiSxFDERnk60xEIgP9ESWygIfHir/A5/X/nZ3r2V + gv9T6H0GV/hCY/fbVTVKySBZO9ge1Fts6+jm9PTglHGw7LZ26adefHW7vy42T08u8hepBJ9ps4uV + T/sk9ZuD7ik0J2dc9pdvNs3l3u744uBYrNmPx/3rs15343QFXTyduxtmgFUAaMC0USR0FrdOCkqd + gkoLTq3WAAk8r5XgQrx4pKfk7oBQDriwVjvvDLOISsONAtghDZBl1DDuLcZzyt0JYi8e6Sm5OwTW + O6ARMM4iTwGCHBOrROjfwjW1TAluhZrXtiKC4heP9JTcXWqhOZcYQeuxtZAwgBxlCCsJlaPYQqMs + 0WhOuTtEMwXvzwv1lOCdMuqdxFh74CxCVBKqnZBUNB4SgDFsucSMzil4h4S8fKinJe9eEquplIgZ + qgn0CCBnDQDOYaMpoNxx4ChbyIbjUKJZofenDsK3YSYaOhTwOhdIB0dJr4SVnBFsvDPSMEsJwNxP + jd7JQqJ3SgV7U8ffs3civxWtzAF7L8gJae+tHd3w9FrYC3h+kn/015x/IuVeXAmXMpdvH560kO78 + MnuI6C73myDtSe4X3eV+QbgeTXK/po/3zaBwZRkFRr2xdoiiQR6oSqLSdByNQoDKhp9P2r0EBB7a + QYdcMxp182Zld31cIl/k/aYZS5INXVklnfsGMqoTln8fVeNB6FucjqMsD33DVVYlOrfj2BZ1J/Q+ + v6o7qnJhe4UaJG7SxKVqjC1MXYRkOQ19yyNz3wG50daXzRuEsPNxOIq745wzJfxfed7SoNbtwqVB + zV82VDsGdMmVvh+XuQ7v3BD8MOgOnkfMZ7OtxSHga6nrqKxqb4WLvMhUXVHyiiC4JKPqminyOlXo + lLLHTVFtnswYfw8HjS413Hp8nXVU2u4npsh1otL2IOk0170ahCelfT78Hg7e4PfT4DeXBms9LfzW + yexdNJRB0iqDvibfDIrP5FtAMk2fluXkdRpo4IVA33/z6l5o8D1Mj4v8gPTc9RE4rEhS5uLkU8sM + T9fE6aag+2RNxXsny/s3J+QlwPdMtbnX+cnuTvFp/6LvMs5P7Ajj8cXy2QYUym6U4+56t38bb/Cx + Ozx5hncGYdxBx5CDnDDIKPXK46CNJtR6TAmjSGhC5lVv/q1a6wUiPSX35hJYhSwiwEMnuLVYceKA + xQijkN4bzBwTRs2r3pzLF4/0lNxbIEEwdkZAwQU2ThNHgSDKMUgZ1Y03KmGQLKAD6k99Nf6xEXiA + vA3CGBBljXVeagstx5ZQ4ZxWQGIFodEMYTa1AypdTGbF3xxNv0JWeO6QlRr1lk2+urw2uPRXN/k+ + grtb1l3U7fLwYnhYblzT/CBfHdRrg7Vp5aLi78pFW5+nbNHu/ZQt2p9M2aLWZMoWeNVmf1DkQxcd + Ke+qcSMVPahDV5ymZ85+kRtXhv7Au05V8X6R29pUcyS2vEtoQ0MajCVYaqanedFRWVL2SxkccIV8 + OvV51moXB/DsJmV15tTQFQK8IrCDhra6Nv3rV6luxBShR7nO3Q03OGvMlu/AbrLkbgauSJrLtnBD + p9JyooEKoqhuXlWuaP40IX0Ofz0P8sBu8gZ5nqhwBMLaqd1SB91x+eN+Ms9seCOIot6LrywGpKQB + 9BihsJBAoGkkjvs/3b3FBD0PaOxckp6ZXOcLjXvGg/21snW8Pcy3Vy62jrZHyZa83u/jwcVQVeaE + ZNtwKOJW7FdPFh73rGekHh3b7W27djI+zMuNegOcHW53+bobdqrWfj3u7UMzrM8vn9HwhmnPNBUM + IKoJsswiBS1Woaun5oR67IyG5mm2kguLe54X6Wkb3jAhFTWIGgGRE1JrEgR3WDMDMJVOQoCsmF+r + VPHy5/SUuMcbSr01zGoQzCUB1s5oDSFyBCBKjRXIA+zMvNoLzMHdY1qZI9cWQkioA9IBIb1BHGCn + HFdBoyQN98R77uZU5jjjovdnRXpKlSNEjEpGmCYMY2Q1otoBDZ3GmFgHuQMCcobsTFWOv6jkXcys + 5P2JI/BASiohwNg4RQG2AGKMDCAOBsm095Zyalhw/4VT6+4AXkSGielbQ+8vDFPQF+vK9GhD7+2R + W94o9jY3T+jZKto/Yjtli0GyA/ZuPvq8Vca3VbqxVurtK/FLGOba52QkuktGJtq1oJ2bJCPNn00y + 8r75s58Hl1pj6uJO89b4ufacGyRZ50O0nk9+AYN0L+m791EzwlUSStXLbj5yoaC+cHemsvdF9eEn + k5Wa8cSIttlk1FzfUVKVkQt9xgfjaDCBo0mevY9G3cR0o9AuPPiSRtYVgYg2urp84LLoulZZVfej + clxWrl++j7p5asvmhA56vExluUudqYq870xXTcR5k4XnTIf3DXlaUkWVmNQtNVFqTFvj+/DFd5GK + bVLmgaA9T403yy0uDrJdrW0CMHxVuJaUuKad1ynDQ0iSR3Ht1cQro/wwSPPZAttRfzxY6n6+fgKv + CRFvq3bQ8fi0zgtXmnATGNT9QS/JngVrw1beYO0TFXnKCM6nb22V9FVammT2jrBAOsiR+aq7ldJO + 3ne3IsY96GLz/e5WYQejo+/Pkt7keb8A2v79a32hgS2yedI/3kTHqd1MDVo2arx5uLZ91SaXifdi + Q6+0XX1ts3HnZQrT4Sw5YmcDDcZDfnrOtvnhlhysn57dbp1Ue2V79ab8eNxfHxXsev1gn9lnFKYr + LixlChvnlfdYC8QkpgJJYKiB0nlLDINyXoktQujFIz0lsXUoNCDX1ntrAGecAo0IE5QiCQQRQjmk + mfB8bluUyxeP9JTEFhHlEJPeO8y8IlxQxgHAQArlPXCYCmcxon4RBXpoVgK9p47Ag9NZcSGBgw5Z + q7knTFILqHFOO2Kkpgwogzgm09KtHwV4fuEWwoC+wa17uMXl/Pk5duB+XJ18ZLfp8fV+sXWqDtZu + aTtb3mQX8aebsczZUZFslpWTrV9TU7rRzNoiPZ7Ugqq++yNqNbWeX03bortpW1TlyqburiA0/GC5 + UKY7Nm7QVWldRm7QTQaDpO5HIesYRP/eyupC/fGXxRKr3H/MDzp6kAEvhT/yzN3jnP9M7J8QfICY + w/uFPwzyzH0AiBABUXMHGjkd7md/hmul+SALwxMy9T+bS+DpgOll9utNOfimHPznUBSU+PGK0MyN + VJWqMtwnZ0ehkgIufcHr7aousnaZpL12klV5Ow2d1Ro1karKNrbPY1BJAd8Y1NMYlABCGju1JWLX + 9WffXJ1ZbTAQMbHqrixUeuGeWha60nX9pKyK11cYiihfBPb0N6/whSZPrQ13Pr68hXvtS/JxBD/R + 1WO4My5afmVn5Whlb2O7N1b4YF/diN6LdCKapXtc93h74xrv9A8uq02/srO+das2R0U/t5tX1X4Z + r+xf7W8nl6tIqWdUhjqiJSCUQAAZNVhaZhlURGsAmDQcOWWAdljOq1QQ4heP9LSOiM4ENz4HEdCW + qND5W3IqhcMMKmCh9VRQhd3cdiISLx7pKcGTkgw5RQnBymKjsGBaCWu0xthTSCjwRHPuwbxKBfHL + 3z2mlApqwbkn4V5BpcZOIgIl1k4Z5QyUxlILtfRQzKtUEJAXj/S0hojQcw6Y8NIF3ziFLIDSA6uZ + pc4hogXwEnI7r52Ivu2P/TJPxKlCDbyUghjNGOGYSA2QMsIpS6kXRErNZdATSr6IfogMz0qW+dQx + eKAyptIaDaUCAiirnMQiqGAFI1wLzShXoVmcnxpcQwQWkVxDSd5Ky78i12DuyPVGuyZ7G2WrM9ge + 5a0k1XZjfGyWh+217vbq1s7aNtDucmcfDbWZVpaJ/w64PvqimQwpXxRSviikfNFdyteoNP+tjPBq + NCiSrMEwTVV54czYpOGfc6Rg/Jp+LfVV5Rr/w6VwVPHdAcVfdjwu6zL0pg9/Lz2dLc9wY4sDjDfy + +si1l/dfESzmqb6tXXr1OoWLUJDHafGw/6FKelXemy0u7uZsqeomZTsp21letVW77/quPXLtzDXO + Ym2bt8u876pu6MCR5aPnIeNuzqZAxo+A1zlhxo8s+E+2sVeSsWmhsTN5NvsScySpcpbFGGkeoLGI + pRIoBg5ZjiGA8KFB6Xeg8X2vutdXZA4WARnP4Cpf7E46VXF4tF2X5mp57+pMZpsrvVF7Y4OX127v + EvUPNw96/St8IHr90YsIFuUsZXRmb3m72hVbe2B3HR5tyrVq/aqX7+3tfjwszguw8/FWrNr45ur0 + o3k6N0YeWgE4gIx4bIQSwSgMGuK4g5Qxqhwi3pt55cZYkBeP9JTcOHSb1gh776C3GCEMqWAMKeQt + DsYfniphkZ5XwSKdKTd+XqSn5MaMSGEs1ogQw7WG1gnPEOTOQOs4Z547TDW3CyhYlGxW3OepI/DA + IBNYQDjEyhgLoBCSGR4wpsGWQUSBtMAp7MTUjoLz3wWjnwfoo8dtoyrXyYsw4XgXcoJCVfmDgrjv + Y6LvFKz+xpjo2z5oc4CJWmtlFZfLtF6XK/XH/uHu1frJxqXZcK3r7aPDjtnVeDnfvTldvv1lTTOS + MkrKKMurSEVhnvfhw4fozEVhqhd8B20efZ7qRVk+miMo9Jckd+ly1+kLjXbOnw58plzR4sCczXRz + c3MzTTfD/5tp+oqgTt+MC/I65X9MPF6JqrKkKaROstnRHJ8Pl5q28e1+kgaSMEwslO0k864pjw/5 + 39AV43adpUnPpePnNoYIW3rjOU/lOQwJaeG0PKfrgovB7LtDSEEJMSSYBtKJaaDynscQSYCRcNbT + aWSAGz/buzec84/hnJlc5otdgXpihocslp/SgbxcKfa3svUbeUCKrZXBEIx6Q3fYOe13zM5u/0Us + A8UsC1DH2zuF2Bi7Yler8afNdhfJEgjauzy/2t0hveHlZvuCbw/T7bXdZ1gGKkkBMcQxj5xk3nsB + qUGaSq8ZpoxiQAxlcKY859fkvoLPKPV96gA8YGYIMs09Jt5IRQxHkkvAnaMGYc0UdchKrzmaWvLw + A4rzilJfJt9q+75Kfencpb7wODne2V+3K9UhzC4roIYlKwt2sbePq962Wik2N1xyvnyw+6k3ZepL + 0U8zX/64QCI8Ef+IdpPURiufTjdXYyijz8/EkBKHZ2J0/0wMqbBRdemiVJVVyIW7ThVVZFV4Ns2X + 1dOXXCFIGcrPk4JmEhCHSUDcTAJiKOPPRxwnZRyOOL4/4rjK4+aI47sjjpsjjidHHNopAgoEpIgh + uvQ8h6g52NHFyenPVCcckPphLv+9RGLq5P9dFBUu7DZ890sZwF+m/lYVvXezRQad2j/oPfNKkAEh + /FFk4GZtWWUqtRTMa9I874cXv6ZIypCB+3aZZL3wyd2pl2TtvrtJzDNpganUW8HgE02rrEWCTK39 + yIYzBwWcI2opEV+BAuE8fmp3gbVsmBR5Fs65V0cLHmh45xIXzOAqX2hY4LKke5XEOxdnQiYMsCuy + v795aw7iPrAHy7vjEg1p+/CwF292Fh4WiD2zLPftfm8ARiN29fGajq8226drn1Yu6dUneHMCtrvV + x7PbGj+nv4DFgmuqjLTUES8hVg4bpjEnBmProDJU46c5+/zKokGGXjzSU4o/rJCWMk2JcZhCGKyU + tMXIcEQpEhhZZBXi1Myp+APN1Iv9eZGetmhQG4I0wJqRYBCOlGReGoMENIhRpYUNlmFCzWnRIBEv + H+kpiwYNskwzpJ2lFGBmvBcMQWMp1pI7BhDWWrmntUj9adHgLyqvgnRGrPGpI/DgdKaccgCdh4AQ + CzG23GsnFABIYOqdI1AzzM20rFEspC8YJG+yma/ZIZw7dnjdvVanKyeZOG5pfpZgtMNHq5W9zleO + vD9f7+3Vy1s3O8ON1vbJtLKZB1ZwT5TNuOhughxNJsjBc/5oMkGOJhPkYBC/20yQo5WkGn+IVlxW + 1UXimmWDZ1hYdhTqi744hqnrOvGuiOrMuuLrn0ddVU4IpI2SKuDIMB2PbKH6qgq28+n4Q7SZNWKd + aJAq48qJ3b4JP07K6G72HiEQJZnpujJS0dip4kO0WUUmr1M7WaNK+3lZRRCAyDtXTez6QyIysUBz + N1UEKWh+WkaJvzuA1A1dWkYhI/m3KipUUjo7P1T0DoUsFa50qjDduBzkVZM2liHXie+GMp4MZZz7 + +C5a8WQo4ySLJ7lOHML5dNr5D+/AAvmSORtO1sO7OHynOmmBtUkaKnLjUvsaC86IFAw8XnDWn4zr + /fk907KzoVV8KZzYLsTF9QeNaiFVo9D3sNnRrGynuQk3F52ElsjPFSqFLb0JlZ7c3tRyw9208LHv + 7Mzho5HCSuXYV/BRYkNiiKhznBFtAJwCPjY3pyR7fS75aAHA42yu8oVGj/udrZNNvTrk+3QUx2iz + nVwVIt1AO6Dz6frjTlyQbO0gQ2eciBdBj7OEB8cX12LHLeN8+zjfLJPl087ggo/iC3/bO0yOdldy + uta5wn7d7j6j7kxoZCjDhkEtITBSKuQd18Ayhhi10gAnuSBobtEjfPFIT4kevQPMceeJZ8gqoTTT + mnGtJMQeGosMlR4RAGeKHn8NpkGIzAjTPHUEvg0y1oRgyRBz3EuulECSa60gYhJRYaRRTipApq6G + wvNvgvNdSdgd//g50wmTVQTemM4902EMzx3TiQ/6hKdHvYwm12a4v/yxc92ibF+0U7Z1g4vtFX51 + ToFsXy1fTM10yN+yzAlzj2j/89wj2lGjMjq+n3tEO2HuEbUmc48AYDb7g9Q1nQ+P6o4q4qORc5XL + nI2W3dAVquOiY3XjyvnhIN/J0pZsorSrXDmZe8Vf5l5xmHvFn+decTP3iu/mXkF0ldwff1w2x1/e + H3+s744/rsLxL1HGOXqGRmyudndxGEvLmLw/SJOy62z76GFrskW29Lnp6pvhIH2lhIX+gLDcPR5U + 6opqtnjFgDLoL9NxO9zXq8Qn4XY/cCZxE92H0q6o8rwK55NRVXukyufhFQPKN2XX0+CKCtJVPy1c + GajU5TPHK15Rbhn8ughMMKSbIjAJgDWOT9OKcD/sXFblad55fXbwDxws5hOyzORaX2jIwvxFq0P2 + QLIxPtS42ui19vZg3qq8V218iYYQJ9db8ZpfO7x4CchCZmlVfrZ3nFfX211bdrdask5GDm9mXNVF + r7zcsna8cmmHN1ud4S56BmSxVjkCbEj0rUaWBvkRgohzaKFxWAhlGcNQzylkEfzFAz0lY5EKIqeZ + RMx7JDxBlFpMgGaEWYyRtty7UH03r57wM21G+LxITynvIkEqp5UmzAitjCXMIcINdUGAJKBXXDNj + CZlTeReiLx/pKeVdRBvMqcZSK+KtkhAwaozQXjoGAZXGYcA9IHPqCY/Fy0d6Sk94wS2RjHvvgk85 + J8JIALCylghOgvua8h4SrmbqCf9rCC2ZmZDuqSPwwHjfilCsyxRnDCOhoLJSMsCcoQo4wqnjkEvD + pi7aBYgsnJIuJLDwTUn3FXWdvw6bg92NnSwt4MomRvT6YGX5LN/ga3sAr5REgRX68Sb55PaOVo/H + 0yrpvu1i9DTouhdykWjzcy4SHU1ykUZOF3KR+HiSjEQrqorOVBkd5dFy0gmitY06q5yNDrtJlpdB + bdfquyJ5IAl+4Wrcb7nNV9244rscbByruBMu27hJv+K7/Cs2qoqDTXs8KPJR6mwcpGJ1GdNYhurY + NFDPRocXq07+n3XVb09uoX9656yui8wVzf0pfBNOgbrffPP5M6P6A5V0sj/XnbP/ilv/++t9jQMA + KKtQmPu//xWJo8lXrearnearf0XyeXW/v1VIFocbr92YpKmfXldZzCinrwgcy7F06XBcvVJwjOXj + dcCq10wOy3owyGeNjlXml0ya14FY9gd1OHueR4ZV5t/I8BNld1Igo6duEpr3B+XDd0F/mw0zwpCl + hMVCSH3XJxQLMOkTqoFxQrFp+oQ2p48roqPvz8fmnA9/9/sF1OBNcz0vNP1do6pwIv6YjdfwqH3g + 4m6eF8P1c9faOjzfP7GnZNdstY7d2e2LVPfOFOC4tL2+01lJ0usVXnd28o3VwWjTbu73dk57o50i + 2+j3QS4/nV6BzafTX2UIR5pASpRX1nmmkCGQC+clNQp5aa2FSJi5bQn68pGeEv9yDrRTQgKgtVOK + ac0B8U4AxDVRDmtiJYZOzCv+5ezFIz0l/gVUcQ8AxUpibQ2SWFNqMMCGGoo5ENwJZNS84l9M8YtH + ekr8CxCEwjnGDdHKOcxscxobgjUXUljmiOPCzm1LUPTyd48p8S9W3ECInXECe265koorpTR1zkng + oSZcU+f5vLYElS9/95i2JSj1TltHNRDCQuWt9sYZqAmWlAMmOWTeefy0zhDz0hL0p+Pwj43Bw9YQ + BHnPreIMhpbCxKugMpdUehP6Q0CkNVMKTI/axeIVrRMpyAOt2O+M2sn89Xq4GML2xtHp8sY1iqk8 + uS5WVjp8L/3kaHfFfGxfncHeQXe5Oruga9O2BOV/B7WvhLwu+pzXzZln5QNItRScG5cAWWr2O/68 + 36EUuptkNvnQrfrpM40nZ7S1N7b7xnYn3/1zbJcBLl6C7dbdkiyNuqoK/vA2U8/iumElb1z3iV6O + 0mA9NdfVyez1vsogaZVBMRGeTpiuYFBMmK6FQkAyTdOH5eR1Sn3xApDcn169C01xV3pn572L8kSc + +ByYcctfqqNMtFqDpE1PYSs3H83y+Hxj52g7fwmKy2ZZKD06sq3N7VZBb3eGy4ONztWWH/BlPboy + 4ljXZXV+ftPd7t9efiye4dGonTXeKK6pgQB7KIAmCnIHkBTSQCY0kIJYPK8UF8EXj/SUFBdJrzGg + lgPsnTPeG+MBFkA4xQWHWEqHGTB2XimuePlzekqKKx3lAjgLAYBYAa8M5soZyhEzTEKMAWbMAz2v + FHcO7h5TUlyBghOm9EpgwLQGTDGOQWiQ6jDw3GrskZfezivFJS8f6SkprlOOOKGQlIoKLDQlVAAV + kgNoMJZYWGGJ0X5OKe4D56iXeSJO92oCCOyJpsAST6kjWknAsNUUKMSZkKHgDdInPxLnw3n0Z+Pw + j43BA4pLqQNSQBdeqWnnBKEaUu0s0d5AYwlVWkmkXznFZUC8CaY/U1yK+NxR3PNbep4C2B0ofOh9 + sb2ZdfoF1a2b9tpea3e0Cc/WEzmgB8WNmZbiir9Dcc+6qgp2nqt7rYUhuKt7rbg3VnFX/UPQ9mcb + WBxO+2mUxStd1R+EpLSbDGIExStCtQqRKzYW9HWiWkoAfBTVBtV4Og5WvbPFtFKXSxNdertwLquK + cYiNTZpmWWXb50XbdJPMle55BFfqN8+Gp3o2WO6NnJbgqrIqZs9wrVYMYeNiwrC40+VKg+4YLoKG + ODcFw22Fncvy/iukuIsgyP07V/di63T3aF5sVdvHWX/7yPb24uHGWZYcZNejo7Vh//RQ4m0rj5IW + OB29iE6XzDCfJe3h7fF4r9gCsuV2u9tiddjq1nh/Y3c93mOsdzxY62yuD4v18+d04UHKa8EN+v/Z + exPdxpFta/NViAsc9H+BZDrm4TQuDjzPs50e+jaIGCXaEimTlGQZ/fCNoGyns5yuol3KlORSocol + WxIZEZx2fLH22hAjIiSk2DIJCRZESU0QpJyA4CY4q4R3ouTgYyPdkPAqjLSQQjLGsLcOGcWxREY5 + 7xmQ3EjDJBaIzCrhnSh3/NhINyS8AmDmpBJMQyEcEEgjw7SgklIOJQXUE62gpbNKeNH0R7qpTQOH + zmtmtKSUOSOkZIhbToEx1AqPKZNGUDurhHey9Y4+NtJNdbqAMauCrBE6SrVwiCohjILUaIwAJoZY + QpmcQ5sGCsCEqON7j8Artgux0Q4wS5xUmAKJhaFeCsuhQUoKSxhyTtPm1HH2nXR/Qh0pgXBBHZ+o + I5GzV/Bo9fAbPsQb67Z9J1wnPRWQ6IOD9t2BzVPqzVF+f7sb3+n0dHDclDqCv0Mdx9nt0YmL6zlI + cMl9moNEG3kRrY7nINFhv4oPfbyaZ1WRd6KTMJ+rZotT/shhlsJE6HGGFReP3YtfTLFinxfx4xQr + zvtVqM1jxt2Li592rxnN/OXNWFQ2X1Q2n9fK5kRShMHblc37hbsdu4dMssB5n7NiSSVl2spSnxqV + VUld1qz2xRx1e1XerT0yresVrizTPPsYUeWsWBDV9xFVRxwRsLELbjky7YkTVcgJdUah4ILLxi64 + GmAXQ4SUBpwLL3QTF9zQuPcJY39255hBosrmAaj+/Wt8rrnq1cGthFt842B0fX+/GzSeydb+zXX8 + TV1dr7T81nL+rbO/1zpZxetzr5ztPdg11D2vTslGlW8e364XaPkOn16fwZ2qSwHbvPh2ucF1RbaH + 7+eqJMzInQNUWKck1RpQozx1FAGrERBeaonJ+/Jq51Y5+7GRbup/QAC31EkdTFixtl45qwlX0mKK + MQMgzN8lR/8I5ezHRrqp/wHx1DDGNTFaGmktloB5zQSijGCrLUBaWWf+EcrZj410U65KlCQeC+Gp + pEQrrAjWhDONLQHSakShRQr7f4Ry9mMj3ZCrKgqI48AbLLTXXEBCeSgkL0KFOKsw5QBB8r6k/N+q + nOWz8ERsNNQ8+N1CyjlXRmIFsJWcahF+J5wBzg30RJu59D9gfFJWw+89Bq9OaC2dUwwBCSQyBEij + FAFGEWWlQ9Rwaik20jRm2Gg+GTYiC4b9nWELOnMMe7B8XW2NtlLGTnF+ZFRx1Uf3qL9DTk/h9e7B + zc7GLU7Ku8HF3u1vUc4uRy9mfeOC9cFl+GnWF15/n/V9iVR2n7pqFKnMRmFWF1eF6ndVlZqorMKn + oq4aRePpcbR6+G17LYYyCpCk57JgYhs2qLJRVN8A8n4Z1VgiVVWRmsimqpXlpSsjZUxe89RQUu65 + 1FnwN07LqGq7qKOKcISisurbuu6cG6hOP9Sqe2ruwD0390vd3qOz07VgiFypzLpupLp51op6qgou + u2U0bOdRW9mom3bs95bbtHSqdLMF638kfUu9vk4K1wntLGvxbwzokul3y7gyPUABQ/Brr937GJGf + zL7mB7tXLqwndNJWVW/184iMxQ26zfsP9pOKjKF82w/i+/GcrMiYlcVSOFtU0lH9zLRdkB72i6RU + let00sqVyTCt2kknz1pJN9zBEmQ+RsdZ2YSOv8GYZwSPv/HBX8fHjVPsVQmPN/m4U0XV/hVmwJRT + xix1LwvFeePqQnEYCWc9bWIcsR7aN6dOwH+NyedCdzyZC36uUXmFr7Fdebi4PS7IEPNrdlAexK3y + YHiwvaPOtx62cn1+c7JDiZ6KVTBHEwQDD37U2j/o3ow2N/O1Yrvly42haJ9f7Q2vH1q7lw+rhbx5 + KO+PjQLvR+VGagYJxt5xDh303hmLuefOSwCQgxYDTogQs4rKCZn6SDdE5RZSgCjHTCvJTJCyCem1 + 5JJR5KUx0AHgGHYzisoRxFMf6Yao3GDPvAeOKwuAZZZ6aCUjhltNkHCAAIMlY7MqQSaITX2kG6Jy + xwiHwECLsCCcSSC5ZcQJDjkLKcPUWRX8r2cUlbOJovKPjXRDVM4tUYpb7iAiyhlvDcQGQ8ChQtYj + 5RWShLl5lCAzgSaEb997BF7pvLWBzBOMMDEckfDcw4Qoio2lnjGFqBZYGvKOSnF41vFtNw/wVo9C + QWHXyosQR//XIxdtxnrBwiXhBeudWlk59Rbrfdi+NYfX3873t+/d7u23m7y/snt+cHK63Mn3+c7F + 2a3c2eZS95YfREPWK/Hf8roNU5foaeoShalL9H3qEoWpSxSmLlE9dYnQatRNyzLtuCiOzpxpR9vP + ICX61+wg0R/xzniCFj/1Mg69jL/3Mg69jEMv47qXMTLxYy+X3k9If9muFx66Cw/d8Xu/kJkCCqfi + oUtGaKns91yR5QOVdJ3KPlohLWxqoRpeVEib1wppn4SLNrug55p7Jt1Bes3Oz1a3qUqT4/Wr1cMj + f9c5Xu7uXJ8VbHTZ77u9i94VKKcjEZ6kcLWKl0mvd7f8MES4K89h7zrd2V87hN/WVkdr33rH7d28 + la/w43v9Ae4pJIbAeuQMYRAyJbVFgAqOrBRMa20sJMS42TXXRVMf6YbcE3CPtLSEGSWo0k4jQqCz + GjlhpMJECcOs9ewfIRH+2Eg3NddVDhEBJGLEQmklt14QiLzy3BAqgqGIxUajmZUIT//u0VQiLLjW + SiFgoBaWQCc90wZqI5C3QlqGFeaOTVYi/HtoHOZ8QjTuvUfg1YIJM4gBI7EVCGLKDUcKWQ4gD3Tf + MIqQ0cTypjSOMT6PWkrA0IKvPfM1LmdOS5miB75ZpCtaD9po5+hY3rW3zy/IhmkNTzgcnh+wvfPe + 9d5Q5MOmWkr5d/ja6VMIHD2GwHPjRfrc8l/rSNpsN3PEvjquFZIlj/upqxIqBP5E8EsbQrXp3n9O + +IWI5G/Cr0FuVOdrfaOZGPWqJLp7rj3TVsPbNGslhbJpuIQ/ljMfNrlQBS58SD+hDymYA+z1zit6 + rvGXL6o1vlvuHSyfULWzkXT5zrpcya+2wGCf3YzaZ3oZuv3CZtvDuZf9XYD99auN9fzArKCdXX4D + ySVB2/vDA71xf4kHp5vDdNuka6s7vdsPOI9axBVhlGAOtSGGSq4dMARqJmEoy6OdV5q7f4Ts72Mj + 3RB/YQg5IxohDyy3FmgNsVFGCKWMpARrzBwFUv4jZH8fG+mmGfIcao1xcIDRgHDHGJMEIGgFxZ4q + KD1QUiE7s7I/PvWRboi/kGE+EF0rjDbIa8qdlZAiRZynTlJGEDDifUh3bmV/HxvphrI/QJXWhFhj + lffWUqqgoWGILVFQSuMUEJhOWPb3ZYIPxOmPdNMMeaWJQ0RBzwBRXBOAtPfQIEeI5xZQYpHRSLN5 + zJDHYGI2r+89CK+GWTrlASCQO06s4op4A6XnHHOoNDCKWug8l02pLiGSzaXGMpCCQlV50UhmiehC + ZvkdA2PBZ05mubmdtx62CjOskhWxkiKE79kx2tiR12ot7g/FqtzoX7SSq16P/BaZ5VMxqq3xlDA6 + eZoSzg4OfgG4lny/6hdp2a2nsnFaxo9T2bh4q91/zYH/3vbnBwB3+7p/228VqtdTn6kg1eC+3f6c + 3BdC/HaieC9T5UTNU8sSgSVXO1saFVSyiVZVuNY7oyTPEpUlaZYFLFj2nLO5LwOr/BALDntaKCHf + R4K5MoLzxiQ4S7uq8yu0kBBIBzkyL2iw0k4+aSGJcco3ocF1Az+tEpLMARKezPU+16RYt+9AIvZ2 + qrJE56Kzf1JtFXcHaAWk7uHMnBZbzh4d7w1Oe2YqCeJskqxnSxfL5gIW8clG64AsG7R7h+7WNjHY + zsxJmp8/KFhspnvdbbj9flLsnVaCIak40IRZRjFT1FisrfTacucJFMq7mU0Qx2TqI92QFENokWOS + M664pSFMEBJijoQPOYncMQgl9XRmvVSlmPpINyXFUlFEmbYB7nAupcXSK2aQpFwz7YgVLliqzqpQ + Uk7/7tGQFAsNmHdScGcEhVh6RoxxhDALALE6VPghVmI1q16qkk19pBuSYsEFooRi5hVHCnMJlaWC + KKCEw8xC5DyQ4H32Er/TS5WDWXgiNhpqLyzWyitChdHaQqyFZkhp6LlizHAXcB1/9yNxJkgxl5Py + Un3vMXi1cOo5Qlhp4YxW2jKINFIIK8SYkkg7J5hgUvDmXqpiHr1UISS/APz+FN7OBfklaOYEwA8k + y9qgw066wg369xctHX/rQScGAO5+O8vOcLV6uL6zfrximxYEE+zvkN/1FzO/KMz8ojDzi/IsUlk0 + nvlF9cwvFKqq535R4bwrwkj8O1qOMjeMzlwnWh6kg+g8SweuKNNq9Ghy2lZhewOnOs5+iXxe1Eao + Pi3KKqrSrvsSVYE81/u9zfJh/Xa9u9rRtd6dL/JupNOias+WNvmJvC09MqYlCMUSlEsOAUQwRRCK + j6mRP7Dh+cHPp33v03DJV8lyUSWQvFKzzLUA2fehH2n5OUE0EK9uqC9AdN7rd1TRdaatstRM1re0 + zNt3479XaVmViXad8PBLqrYrXdJr51VeJmU7Hybdftku8rr4z8cUymFXCyr9TiotDdaN8/N1Onl1 + sjJIWmVQTISnYx4tGBSP6mQoBCRNDEtX0vcV9JoXEA3nISd/Qhf5XKPo1gq42DaX1xvxys7pwQE4 + H3jR6p0QfHnkVvhJa/XmONu8P13d89vTQNF0koB0b6SvklUwuEnjbvFwNWjvan1y3jlJ2qd3UvSu + ymKdblyNGFxdfj+K5tIgT4UAXFvnoBdOMS9F0MA57z1D3gEFgZlVFP1HBc8URrqpaJkQBTCnnkoA + rfYKcAc19xR6DSEDXCFoFACziqInmkn+sZFuiKK5McgoqqASwnOstcFIaS4ostoZC5gARAPgZxVF + Izz1kW6Iohlx2AJABWNcIAS5cdwipBhEHDOvqaWQSDSrKJqI6d+nm5b1ggRwpykwmEkolfeeQy4d + JdgAwgDkLiSemRlF0ZTQWXgiNlPiQ+0EVhJZrrF2xhjloUdcGiok944aiZgkcylaZgBPCEW/9xi8 + sjkGDFjJpGDcCUM4pY5DbAj3yghmhUfcG+pdYxQNJZlDFA0ExQsN8jOJRmL2rCiOVHp81+6W3S65 + 4/BoP7sn7GFXsPXDbO9axqVI7+K9O33Vy5taUYC/ZUXxPPOLVsYzv+gszPyio3rmF52282G0/zTz + C4R6XxXl//YRgKSulVXkuQ/YeC/1M1b96mdsbKnsKeOWunmeBW/VcklhhikjhC49T2/jx/fiTJUq + Hs+A407q3dMbS//x2nRS+z/bw+UTdJSeuO2bbPsS65bZ47E/ovcs79m9qjjM4oPzleTs0A/2T6VO + W33V3lJkj56YnasPYur56tRCob1QaP8yMM4JexOMlyYNFdqsSjujyULxTJVLtViz7Be9Ii2DeLP2 + tCxdVrok90lYYwv8bJSE1bXw6mNMPFPlwrVjodX+zFptPA+EfCJX/FwDcrp9u0nXbzfLzaHc3emX + 8Lgl78Xl9knXXJr7k7i6qLpHVSIP1qZTzGuSMPH0tr0zvFjbOjyPe2QQr9wun3LV7uTUfNvRx73b + qxvYJ0dXB+ri6v2AHGACPRVKKe2YNk4F5RTRHDArLNEEMK6tlbNbzAtPfaQbAnIkteLWaUIVk9xD + QaHnWHgnpLVYcoepU0rgf4Srx8dGuikgF8YwoATTFGAhw3hbxoHUQHJupcYEQ+Ih+EcU8/rYSDcE + 5BQBxpjHlnMQltcAsc4Bp5zgAmotgTSUQTOrgJxhOfWRbgrIg/xdQcuFRqEcIBbWcMQ914g5ABHX + Ckphyay6esDpj3RTQC6Ql9ppigUwAmIDIBXMC2y4w4IZoJXQhEk9j4AcYjwpQv7eg/AqdynQcIax + 9UAbAhiQWDCPUIhBGMPAQqgp9KApIUcAzLxYewKuHoBTvhB3v0DqcOaQ+mEJxe712sHx1f61ru7P + z1rF8e4K2S1ztXHF8kOGN5e3L69NoW5/i63HiqrGgFxGp88Txqj+izl9njbWv9eC67O06/4dqPso + 2n1SY58+qbFPazX2RlBjr8yWGvuPhK2eIsffp8jx9ylyULGHKXIcpshxmCKHV/GPCvc4SM7jn0rO + /xqN/8bGzA/SHqadju1nRmUSvFICzTPUhiwnBfmUVFsIAsibVLtwpQsVAVuqcl8zV02MahdViyz5 + tNUvXIKSoboPjCtcA0mrUKMkzQLTSlQyTLPKFUmVf4hoh70sVN4LlfeffHLWEPZP358/v5G/f33P + N79ev/lGrFFkuTXqn9hzyPe7u/HmLq2c3/UXeu9gq+NXkQQPt9Pg1xBOEmC3L1Tn7GG47XVc5cVG + C7j7A7e6cdgarfGj0xRVqnV/XQ766fr6+wG25FYww5RmWgEjhVEGCIktx0BBDn2wx1DYzqotNZpo + VbaPjXRjgO2NcUoKAr2wnmLDoPBB7e0AZFoTIDVmYlZtqTEGUx/phgCbOc2tJAAQBzGllHolg2kO + UhRqq70TGGpo1YwCbMamP9INATYXgjNDBLfAGGEoZBBIzqhVgBMnJTGaGwPpHFZlExOryvbeI/Dq + xgEIc4hCILQCRBlnQlIOB9gowpDXiilvDPVNSZ+gc+jKIASBdCGFfeJ26BWumgFu963UA33rH8qV + TV6Wmxdkv7u1erC5eX1yI6r86Ppqv9gbZGRjY70ht/sJlHsPuNuo4+MIfY0u6gB5bIIQAuQozWos + 93/Uf0cXdYgcVXmkO8rcRrZfhM/Wb+sv5r+/fv06WzrYP0KDx3nA0riTY9IVOhmnWU3CVDzuYlzl + cd3FeNzF+k0dm/i0V/+qMhsP6/J14WXi0xaiCaYQUcSg/Ji8dTbaOj+Ir+cqV9gBgp+I7hlgLbPk + c6pWhYAMv8n3rKrUQLVGKktvJ6paLe46ZCkECt28CieYD1eNaYcTraey1JWJKlwSTtHSVUmVJ6pT + ueJjkO+uQxay1fdiPisFMo0xXzhsv0K0yghDlhIWCyH1Y7k5LMCTaNU4oVgD1Lead3v98JD8rLJV + OA/IbzKX/J9zv1+38i4E5GQRwD8H8PC3l1W2zqt+59V19hwuLz+fW9HG+NyKns+tSBUuUp1OVLoq + hMr1uVXHyNq11SDNC9WJrCvTVhZWuY0qIt0fuaL8upoPUhtDGRWurIrUBNoawu8wm8z7ZdQLJYPD + d8LGhnnRscHhzDgbmX5Z5V1XlGGHVRHs1Dpp5uqNl+281wtherjb+bzoljMUpP/xqf/iqo0fr9r4 + eWRjVbhYdTpx6aoQ9dYjOw53n0c2Ho9sWM02qojHI7v0/oh8Sg2bn/B7Py2rC6cGrhCfaX0dDWx1 + Z7p3k4zAf3LjnU4AzimAb/uphVto2U6z1leV9iZa4qNIfzRaqlffummVhAlpWH1LM5vWxv9llVb9 + KiSWfCwATxdeau8Ov4GwFjUNv3vtUZmacuLhNxBEUe9FHCpkhvCbxlLSsNJuhMJCAoF4g/D76C+b + N59R9zzYqU3kKp/rtfb7/fLbynZ81N876+we9O6H6c12gfYQULK4fXAjPKCOru7fek6mUtdjkotl + ZKPbIn6Lr5238TlKjugG3D8s487FUXbpV9UOvOyi3bNN2LoC719qpx4oarVlMhTxkJozQzUHWAPl + ADE4qLU943RWc8UQnPpIN1xq55wJDajQRABlHXSIeei4dUoZBoBVilpK/azmikEx/XO64VK7hdxJ + jrjxSDKOsLESUQkFE4RrCJ1RwAKkZrauxwzcPRoutStqsTZUCYyZQ8Y7qb22QhMPjIHAQaAgFcbN + al0PMv2RbpgrxrQTEhNBBObcQEKZJYpAhwjVykLFLWKGYjrRXLHfI2qgnE1I1PDeI/DqFk0MowAG + pQ4SjBIGPDGAAeEdRE5iqa2AAJPGBl8AzaHBl+D0lanwPxiKQjl7RYZPRjvVDd8R+yvrdrDiVpe/ + XR34tYPVm/vdu/5lO9YHwJqr/slDLpoafIkJGXzVcob97bMoGHcFfLpdz0Wi7ae5SJ2N5Ew7q5Xa + 0b6yhSqjthq4qFXkwywqu4Hpqm7ez8YQNpxkcV60VJY+1LUsChWkEmlZ9t2XurhEFqkyqj+Rp7b8 + ElCuiqo0G0V4LQ6L85WzUTkqK9cdl6WoOVwZ5bp0xaAu+xsN22nHhRaP6nbU7bdu4Dp5b4Yw7mt2 + NP6TqTtRLoWJflnFT/UlwhjE9XiVcT26QdOA7dOYxDrNC6dMlRcfILe/ry3zA2uTZFUVPXeQm8p1 + k+QzFcCoboc0l53PqZgg4o9R98uMqHykOmVuUleNXpz0kwS3d928u1QzsqSXd8ZMIlHeO1OVyTB0 + KEs7LhmkRb9M3H0vL4Ni6SPkNuxpIZ14L7tlSEgLm7LbtlOd10mdfz9JSgpKiCEB3dIxulXe8xgi + CTASLgj4G6Dbrb9q3YLc/ipyO5nLfK7R7W3RPbtbRgK0bfnQ2pMI7Z3fd+42S6buXLK7fD9Ik9vj + VnWwdjWVNCkwyfq1tnWBqtPLnZOHNXu5er+69mC2WHK0c7ecWjiAZX6yuXPdzovuZf5+dmslZoxa + qqxjGmAHraDOICa00xphyoF2xLCZTZOCbOoj3ZDdMmUdgRRIZ41hSsoAa5EkobYq5cYx4TgnfLLs + 9vfQF0TRhOjLe4/Aq6w/yRHFzjhJrVWACuA0Vc5AbSTxikhPjKGUNjaPoWguvWMeqUYTUkMEX5Ca + Z1IDmJg5UnMl1m65K67uuKpIvnFrDh78yugAn6zvnezsZd38uM/k7mHnfov8nvyTvbCZ6Dn4iB6D + j+jClVV0EBBIHXxET8FHVKTlbaTqQCra6ORFalVdGnRcBtSnmS2/Riuj8RcCnjHt1Ny6rFbIXRx8 + +/L0ydpkpqyKPGtFZb/Xy4uqrhuqomwsolNFqFA6hgfttBdpVw2dyyJVVGmoLKk6UR06RaqKsvrF + /1neWz747xrVXBx8+0Ob0+x7U4Zp1Y56Tt3Wn6vfzo3pF3VWjaqiTj6MwraiTiA+s6Tbe3vuuWTz + dAmCrxBIsVSUPf0VAQS/AvR6EvDXLGciu1kYsS+M2H8ZoMH07ZSWzA3LryPVcV+d7U+OybS6naX6 + 5pXk3ruiTJwqwjOyStxg/HAIvsztfldlZRJqJbTSrPUxKNPqdhZyunfK6bBCFDU3Ya/axeR9axBS + mmGuXjiwa4HZUzILl4zARg7soXW9T1qiFMwDmZnMxT7XaGbtYn35Am1VR2cbkoiHo+2drfaBPD46 + 3E33OilMxOhbF2/73I/Wp1KidJK8YPtii7YfTvdZ9W1r/0am/fKQrLW3DDtWN6umXxnXuVyz2TrY + aL2fzEAtIHUWQIOptFAJrxHByklKSZjmAqgocNrPqqpuor7gHxvppmSGOsEsYpxThzXVgDFDgJCa + EW0Qwt46Qb0TM1uilE99pBuq6gjE1EnuQHioQSMQNJoRTi1ADAjBlQfAEohnVVWH6dRHuqGqDmqj + laCM+CAM5Zx4KpFyUgrIkWNYSOQhZW4ODWwImBRtfO8R+OMge2Iw1JIqQQgkViIgCHPcmWA8ho1A + ijOPPGtKGzljcyj1Ipj9AgObuXWeBoTMnIMNTtburvqYHHwb7JBRVmbapsWFKzaP70/PiD0kNym6 + MgerXdbUwYb/Lefp05rmjWPk6ClGjp5i5KDXGsfI0VOMHDmTj7VXjxzOp8XYi/qRDJq8q9Oszuc1 + beXCJCg1qvN9m+NKkJENzsqR6fTLKuw7KMOqPHNjPqgCxLSqqoFeGfmQ7Bucc1QZSfQFABCNnCrK + SLXyp+2NoaDquNxlg7TIszAXCCnDqlIBXtrc9MOfxpKx0NXRU9+GrnDf+xW50FEXTqSZ4YY/IJGl + gOyWAA3/1mMej49f/HT84qexjscdjJ8OXvz94MXhuL2fLP6mhiwkYguJ2C8mkID9SU5ve1ROVhBm + KfpNgjD7mqItBGELQdhCEPY7sONELvO5po69h294YC6+7R+t7eoDu3qQ9I6LbexWbq1pZfosszex + Otmk51vLUxGEyUm6OVOgIIBddHB3r1roBm8fujjePF/fPl72dnvltL/ffRD3p/eg/QHsyJDmDlKC + mUGOIc6ApopqyRCXLMx0EXLeODSj2BELMvWRbogdPRMylA0jHHkAIDNQeSw8YQgRzh3BwBKA+Kxi + R8rk1Ee6IXb0TCjhkFDAQ8AFhUohA7giDHqlOAXWCUQMm1HsCCEWUx/qhtyRCaIZk8wZTpU0wgJu + pfSKIsEYlYAwYZxRZA65I8SYTAg8vvcQvOLoQlNBgXCOKustEMDQcFpLFIpAWoAZU0YA0xg8zr5z + 9gSM+ghYKB1fcEpEZ07peNtf7m5Vh6v75fGGXT87/RZf312fkLWVe33WlyfDGycf1KmzJQALpeNC + 6fiT1NZHhFITwxoUxgDHz8cvDrOhOMyG4vq4fW1XrzVTDZJWJ7CX+WGNa3nWcvUmP5N3901RjT4n + Y8RYoDcZo1KdKv/q08kxRsq6S2OfudpHLCThJ/XdK1TpUqNg2OsGyrpgKvYxtkhZd6FrXNgEfj5N + 4zy4c/+963uuoWJ30FvhFy113DLDy42Lcj9LT1c3L8vBxZ2XxyN2De+3LzQaJBtg7qWMencl2T+r + Lg8GKyC9OR6Mjo8YPgfb7V5n2N3Y9mTPw8vLfXq4ffV+puiFCv5pQjivMMGUcm0U09YwSJSRNkxX + MTH8HyFl/NhIN2SKhjCPiBWYCwstoZhyghSRxCBiCUUEe6EtmtVafJCJqY90Q6aIrRZMWSGwowRT + LRy1gGqkHeFQGxLM1ighM2sQiKd/92iIFA2XDEtnoIFMU4C4JI5obI3RCAEHiQGWA+pn1SAQkKmP + dEODQMsx9UIKirg2gAMGICSQY00Uo1gpYY0XAOOJGgROckWCz8ITsdFQOwoYFMYzDLXjlGEGPSDM + IGkgFMyZkJkEoXrnI3EmQDn7q4qqv+wYvPIWxVpIggxzDloHqbTABITniVXeYEcoM8ob2NiMEYF5 + LDGJscQL8P0IvrEUfOYEujv7FTpn+fYJ7pps7eb82/LQqLjdHyaVvts/Eg/ZPWrF8c2BXf4tAt2j + 5wnf2FVxjKNVNFSjAKrrCV/tzNjPjCsqlWbVKAomfCbtdVyAyXd9lVX9bvQGW5hupcknCrbksjHD + DR16qsb4okvxc5eCz+Bjl+I3utSscOQv2fX8wGRTpNlDqvPPpFjtww5xmfycNBm9mim8oMlPR3Oi + JSB7ZY99r0wRToS0WwbMVPbyKlFJt1+2izzvJsEANM1aSZ59iCuH/Sw0q+8ly8pyb2TjjPmwgjlx + rmy1Yggb9yJhXkqDxgnzFkFDnGuSMF8vr+bdz5ctPw+q1Ulc5vONl5dvemubraPu2aGFN+Tm4SYd + JrHd6N5e5Q97K/lux2brpdvrnLXmvv7ManXeHl3vnJBWtZHKh+Ho8Ob2Bu/JrXLjMD6C3eXk9lwD + jEo7/ABeRpQqKJC02BEJqGFeMIutwohQipQ1Nszz2D+i/szHRrohXraKIk44ws4R5QREnGuhCeRO + KUIE0op6LRH/R9Sf+dhIN8TLVAktqYSMCGogMtRgbQmmRFmpvGXEeky8dP+I+jMfG+mm9Wc8UVwC + DTFkyELtPRWGY2S0N5w6p7EOhWn0P6L+zMdGuiFelkgKwSRhUGjsvTCKGQ+Bs5YzDKBwhGoh7azi + ZQb4LDwRGw01xxQSRI2GWGnFPfXYGoWdIVYYChVUhkCk5xMvczohvPzeY/BqDVB5pBz2lAFohDdU + MgU4IpZhZR1FjHDlmBafCS//XbtZhAlfsOhnFv0KrkyfRQN21Do+8fcqOyxOUD487hfp1cOxvVg+ + 75pOejPcc9fDzm17dbT9ewsDReM5YgDQYY4YqWj/cY4YbY7niFGeRfuqCNV7qsioLNIuUlGvyHMf + rB46qXczJFZ+Sc/GLPhpmvw8LY7HXQ5lykOXYxU/TYvjx2lxnGdxVxUfoNG/dPfzQ6Qrdd9ObZp9 + JgvXO2JuRh37OYk0kJS8rW/ObJGntquq9lftJsekbbe/1HGqyJJekbcK1e0GJOXD2BfOJb2OU6VL + Cqds0h0lupN/zMM17GehdX6n1lkKZHRTIm3ybq806cSZNCMMWUpYLITUj0waC/Bk4mqceAWgfsak + V/Nur1+5Ijr9edCxQNO/A01P4GqfazR9ubqxlhwvl1f4kOyXBLuOSw831lvZZdreSjeXly+P9oWu + dtnVlOrrTFKQu5oOjnftqluxAF1odHvH87ui2uvvVaff2v29Q3KWxKR7fbTOPlBfxxOlDaNGIyo9 + 0ho6i6HDWGOhPWLGciMkBnpW6+tMlnl8aKQbsmkRasyjIAYlACMnnfDYKqgUVsojRLm1VmMN57G+ + DoaTIh7vPAKvYCky0jPrHHCWaQ2tUBAiCjz3CjBOIODUUduYeCAyj3o6IH+F4+W8MgzxWlw49URy + vtFL7/dXvt2d3XQGm8VJ+0Gl+ytX5GZ3V+qTrbWrTZ5tZuFn40TyP5o/vDORPEQT0dH3aKJO5g7R + RPQlGscTUYgnou4oCvHEv2dMMPfDtGrppxFPQ/1bgy3NDzw4SG87qtxInQ2X6echCPJW3+oUiE9K + EMQfw5oXBMGmrbRSnVa/6LdGKpustM3Q4VLVDnNGp5JgCRuyJpMsL6p28G5zybjTA5ekZZLlVfuj + xWDCnhbitveiBOMU46opSnCqqNq/giVQThmz1L2wZBTeuPdaMq6H9n1akDAPBWEmc73/OUr4hYZJ + QMDFWt33OFf89rU667zqd15dZs9RZfA/D6fW2F085GMchFMrOso7rl7/CidBlJbR46kVrIi+RLo/ + /mxwIwrPkbA0pqIQU2bVo/3QY4vH2z1VWaWibu0hlDlnwwJcL/ii93u1mVDYTjS2OVI9VdTR57+j + 1U7aVZUbW7i7aD+cjn9o4n9mK8j9yZP/2WvcpjYe5f34NsuHsRl3bewr7uL6Sovri/qDhkK/cu9z + lBvSLvJu/sYVPMfBNHXDkltWfcpgmkuOxJvB9E3eDxyq/Nrr5JP1Nu+BtFxSWZW2XOYyo3plv1NX + bkjaAa67+6pQxnU6/Y4qkoErU9Nx5cdCaZCWizW59wXSXBqsG6/J6XTyOSLKIGmVQTERno7X4wSD + 4jFHBAoBSZMYeiX9nPUU8TxEzxO5xOd6IU4N1/TD3UkL3O71Tzut47XVA9za2ahu9uLVk/td3y72 + 037ybetqvZzGQhyZpImI3X5Y3qr88qBnLvh9Cw/bxwJVV8PB6t3uN7/Vv8/s9dr2+trVqnn/OhwH + TAquBAUcAI+gQVJrTTG1gggmkMGEGOdn1dZc4qkPdMNlOMwcJkopApnlyiMhMFaUSa6sllp5zSzE + GoNZTRGZqNX2x0a6YYqI4khazZ1zWAIEpGXKOyowYQYzZoVhwGhj/URTRH6X1baY0ILne4/AK6dt + CpCBQlstrSZeY24Et8oIT51SlHqOlDIYNV3w/LMBntkFTy45lgsQ9AyC0OxV+DsXW+XBEPJEXvS3 + 7q4y3l+Pfd9vx/whp+p6MPy2ysjlQ+6Hxw0XPNnfMs5eHodt8Q9xWxTituiHuC16itsi64pAeyJf + 5N3oVHW6eeY6HRWnWbDcdjYKXymjskq7YXMu6qmqnYd9lD1nguV1dNaGcTgAUeHKXp6VrgxOJIN0 + kM8OaHo1I14KL576Ui4F+27Tcf9J7f9A8BViDp++8rXXU9VXCIAkjL6fMf2iHc8PXtp3NpSEPHGl + C0Uif7KuN88mJFCRe/dJJd88eNK9yZi64+NaPB7XiS7Y5mWvvaRs3nGlCe8laVapW5fkPin7LVWU + Q+cql4WFFjdwRZjsfYgxhf0sGNM7dd+WG+6aMqausxNnTEYKK5VjL9ZpJTYkhog6x0P1eAAbMKb6 + xpRmn1DrjecBM03iGp9ryLS3cXLje9fwsqfbVyRp7SzfDfuXNwf2Eu/bjtuN98Xuao9tgWIqPteQ + THJKHseD4dlKka5skYOBvkOt2z1U7ezs3peMDld6ck33t2V6bNVg+f2USSMBoGXcQC6lgR5JKIXF + QlGODdQQSOUhQLPqRIIkm/pIN8RMVBLAPDMWeKE4INhSgb2wBCIPNbUAS+XU+0yBfyNmInj653RD + zMS81wp5xKX2QntIoKUWGAmtdBQyioxR1lIzh5iJ/VUeyS87Aq8GmSnLZbC29swx4DxRlEMALHEM + C2y5CNRagaaYicyjrp4LKdkCMz1hJs5mz6d299j019Lbg22eq9bh9d75zmGyTRK/urd9VuQ3l+vu + yuLj62O9nf+eAm3L3+O2aLuO24Ka6TTEbfHpU+AWrTwFbtFemt2OFUzbWZhpls5GJ3WBMx+tq6Iz + igM3qqLVvJNn0aoKhqyzA49+MtVdMnUb4yTOM1OvVS+F/2Xx+O8vA9t4HNjGuY/rwDZ+jmzj58g2 + 7tQDFDL+06cBikMFuPAt932A4h92Qjkm9AMJAfPVn/lBXUW/rPLP5LErwD27/Zxsi1H5Ntuq2s7k + 2cAVZV3ocbJsi7i7pVruGdBQ2e+6okxU4ZJuXrikk966Tl3dybTzvHSJ+hjYIu5uAbbeB7YccUTA + xsXbypFpTxxtQU6oMwq9KN2mAQ4pCEhpwLnwQjcp3RYa9z4FlVXF7TwIqMArJD2TcOvvXuRzTbbW + 4vvObfltY83EB99W9y7J/kFr82Tl2Pc2863Th0toenujm+633rf1qVRwm6Sqh+2cPWwep0N92I/T + a3l8tHNwfbu+rB/aHXzbx9u9Fl++2c52+/kH5FPCCQmQE4owQj2yFlnNpJQk+JJSJIHQWHgpZtVi + F7Cpj3RDsOUw5YEbUmyV1IJRLQGlwFBPLGCYMEYMRJrMqn6K8qmPdEOwJazRhFtppaJaGEkgRUoq + RpWVVjECHLWGSTmrFruQTn2kG1rsUg8FxdQp76xx2lOmsQCUQ+KY08griYSXiMyoxS7haOoj3dBi + N0gtCQpDijFl2CskpBecIaitlZwI5BliVMxqBTc8/ZFuarGLAbXIG+msY8Gi21NqlVfIMBz4LQkO + xwRIM5cWu2xS+sv3HoNXntFGUmyocQIzA5jHUEkGGeFaOYaVQQhgjhlrbLGLKZtDMs5emU//k8k4 + w1Mj4286zvSu8xiNhFzuPfTyFb26c4Fph3UldndnLX56gXr7l4m99PFRU8cZ9vdcc8Oc79/R6tOk + L1KFi8KkLxpP+gICH0/6gkNuR2VVrGsa3nWqisKgV2nVr1w0bLusztstXFmpfqGy6n/7CEBZRsoO + XFGlZS3tTFvtWpdS1h8uc5OqTqRd5nxa1SnGNg+fK/OoUFXbFSG3OIvCe5UqK/c1ehLm1Y3tlPlj + 0bk6Bbls50Oj6h292LoJ8+yw6brN4/ltL0zTxt/vOGVrt+BgAey8K+pVguC787K/dWdM2EL5tX5t + Z4f3/wT/LdWjFatOnrl4mGdV3HNF2VfWxarritSobOzXO1S9OO9XsXbOxz4v4hedjnW/aLmijCEN + yS/vB/dTatj8EPhVVel+VWWuLD9TJrNt3fZpfvc5STwVDL5J4vP+V2f7E4Pv2T0mS72OCk/U4P2h + siRPO4nKbKKCM8io64r6tyzPknKUVW1XpeZDCD7samEF9F4IL4CQxjZ2FW677sQZPGJWGwxETKx6 + TGGWXrj3pjCvtl03LatiUeZuGgB+Qhf6tDyAOBV/pB//6JkHBLPmAXQ0PreCy4/KojztfKlNeVT0 + eHKNf83yLHo+u6LaDKisZwKRyYtsqe26vVAnw/aNe7GNwj1tpfz6NVrN+516w64o8+xLNH6Gft/T + OHVLRTrNrWsVyoZ7dzSGD+MwflhvQbu6pnS998cro/Ykqv9zkXZVMEAPcXqI9V02SIs8C9fTf6Kz + dprd1u6ZaVkbGrm7ftoL79UNxmt1EeqQa/al3oC7V91ex30N/8yY29A4oFiqHyFLpu1i68q0lS2p + pxe9Ir9xpipjBABdOhqP8b8QCKP8LwQOi2D/U8Yb4fn7LwROXC8vqq+9Vwm/Df2Hfl975qg2yKif + hn8+lZaG396puwL3PmcQTwREbwbxQ1W5Iu44data4QSvnJm4rCbL+HDpf/thra7+CcNPgsNPJJP6 + T7L+ieo3SP0nMv6UqH/S+k+o/gXx8afq1+77BpFJvn/jhw/h8TZe/H38F5a8+qiqX6vk+y/Ijv9U + 74i/aAfh428nb/XsY1OTjC9cSt+f+IYVoqhxCe6sav+CGtxBB8QwVy9qcGuB2VO9Ey4ZaZL7tly3 + rvc5TZbmwaJ0cbtqMsGacZ2Tufa8WjlYvz43reFZygylRXZ1hOK9viv211aEPzOnxyugWF2ehs5J + TFJ9c9Ve3rgDu1sy2Tnfu1nxO96frJmDq13FzrLlzQeS5cnl/mCLnp2/X+dEhROcAG+YloohpJiH + iFHHtCKaIuIBtcITOKs6J46nPtINdU4aKCukVcgKD7wQQkkvobRICYERZ94ajJUTM6pzQnT653RD + nVO4GxplEJRGQ0Gtl14jjiDgCEnhtJLcM/e+WsAzksBHBJmQTuG9R+CVTxSxiHujMTRUQkiBYio4 + ylmMvffAYgetxJQ21SkwQOayEvD74GIoB7yAi09wkYrZS/gz26vf1lY3dy/It37rRPUo56cZkBff + Nh7s3km7vf7NLrfbF3dFed404e/V/Pxduoa3ArrodagavQ5VoyahavTeUDV6K1SN3gpVo9ehavgJ + xvt+s3+PO1cv2ky//3z6EHy185ebGjcBifHb5vtmH9s23shjZ9kfh+Lp7Red/cmg/zAW9sXY8het + UW+M88sRRuxlX8SLlr25u/ptjL+37GmnL3eHvw8UZm9s6XFU2IshNy9apl4csB+G462D93hS1A1H + /uX5+OJI/vCnx5aP//TYqBdNG3fysTn2ZdNe9wW/OOFenBJIvujFY4f5i2777/sZf+3pZMcvTqgX + hxa9HOXHE5G9+PYP23Df2/TUmhffHh+8Hy438vpS8C++LV7dCR47//Ibj4OmXjTz5Td+GDT1+noa + jw4G49fRz28kT0f3rRF+ccoj/+aNa9zcF3eHx8OHXo7Cq5Pih4uVvjo+Ly+6p16Oh+Xl9h53+uJQ + I/3qUnp5NTyeLi/Orx/7TV5uUP3xxjQer8eh+GF01ItukJ/cvGdrSedP8PLSv6z4lyb1T/gvK/8l + cHitZFz/SdY/Uf0Giev/jT8l6p+0/pQS9U8+/lT92j1tUPxLmQ9WZJu1Vs/P8lB34NSfLgz9DN82 + XkkKNDKKChdaTf5rkmtK/7W/Fh+11+KdtXh/ZTn6/0Ktliwk4ocChd6VZV4svWVK9mp7f565+TfX + qlj7Jp3kOtVPpgZTWqai5O0SdKqnJlorI7vtoaWey3sdlwzbeeKd6ySjvJ+1XJGEtfhEJa26kUVS + uqwM3mcfW8+57aFFtvci2/vTZXtDLuZhLWcS1/nHlGY/gzuUigXceYY7r2V0U1eO1WdKNGznUThT + osczJarVWSp6PFOi+kwJWRZD1+nE2tXiqkeRlslbWVqlAxf5flaHjfW7HVcG623fUd1unSDwJerk + Q1dExaPVUjsve6HaWfqgxvkamY3cwGVRCMCiTl63o04QyTvWFXFoX5B79VyQokUbj78+tbirRlHb + dXqR7nsffk+t7bhYtZytN11vJFK236nKSLVUmpXjEnhWdVWr1pH54DJeJ5OUVeHK8uuMFWAehwRL + mRuWS73QwKXC1WWjy+cqcY+DFD+OStwr8qoWbLWd6lTtD9ZrnvyO50j/lWfdfJS0lU71ZzILb2eq + XT4MPqkCDJI/MVSqj2h9QL+GGKHfnaz4qzW6WWrnw2Cpop3Ju49GK2NpbbhRJhAkVdorw3M5CdU0 + kyr/WKzdGt0stFPvjbYZEtI2jrZ/fv/6+7XppKCEGPLCN1x5z99b33nrr1q3UE39skh7Mtf5XIuO + yHXpR9+Odqr7Y93rbez2kofD8vq0paG6uLi43tLJwWZn0JKKk2mIjjicoEBD4J2HRK3xC3xxvqn7 + YrTB8sOLU3nAeLZ7di33Nu/u17e3+Wq1/X7REcJcECshNCG9CxrPgRRUEw8M4YAJh4wV5C+1A9G0 + REcET32kG4qOrHcaKMkFgSxU/xMcQgccZ8xwFmytMTESMTmroiM4/ZFuKDry3BmsITLeI86dtl47 + 6ixFnBitEMeYAQ9e5S/+6UjPiugI8gmJjt57BF55hUGAJFROaOOB9ppypyFyDCMvsFCScewthY2L + 0zE0894okxAdQbpwGf/OpaicOdHRil672Nb9eC03u6W87PHWWTHa28tuD1GrutvCK/3t03Rr8+To + ar2h6OiP9VPfpznayofBRmQc6I1NVL4Hev93BEEUIr1Ao6IQ6YXP3mb5cIZ8RH466w0BbHDkGPcr + Dv2Kv/crhiAO3QpUJw7dCh8N3Yotw1ZzZbh+XeK7gXXIb2vLYiF5sZD86ReSoaBv0y5llHXd1FRp + 15UTBV3dYdYLTLhubid5fBYEe4PWbV4kqptnraRqu2SYFx37saJ4YR+L1eRFbuCnzA2ch8p4f/ci + n2u81V/ZSIqHiz1wfX0M5OASdsu1wyt0cH98ZTfISW95bbBxnYL1shBTwVuTdEpNLnaT80N5SKEY + bKQqW9YjeXrRvh5dP5Td7duVrVFv9TI7eDjf/ADeoooYZKz1RBAMtaHUCAy0sshAQ5jFXivGZzen + jpCpj3TTnDokubWGKsSZcwAjzikjjEPtPMLaOsKh5NjOLN6a/kg3xFvIMSkMc1pLqKEVXlgoIAn/ + IgmNdZZq6yWZUe9wguTUR7qhdzhTiANjhCMSa2Y49MBDwg0VkkAuPbNGav0+l/bf6B3OJgrHPzbS + Db3DIRQeMg5VKOkgHDEGc2MMpFBApyCT2AggJZ+od/jvQbYcgAkh2/cegddFB7DkxlDDAPQYUeBC + Sq6B4bym3jspoUfeqMZ+1oDMfKLoTxgsFGzhZ/3MYPErden0/azvNrvX7ax30d3s5Jxer/Ruut6d + sxv6zWTb63CwxVd6YghWbiX5LQz2wA2jehoSPU1DouV6GhLV05BazVdPQ/6vMuqoInwiUlk4ZlVk + 0ip1ZRRHy1VtOK16ecu5KB37WkNctSPjsqpfjKLV9S/1H198dRREgY/7GqoyagcIHFyle70iv0+7 + qgp22uEWAwAIb8jHl2kWKGcVrrIvkTImr6Hh2JA6c8OoLss0NsbrdZRxzz3Kxw3rql6kyijPavXl + zzoYDpcbBCfsuoczpFl8RZ7CPDKuD2D8dADj8Twyrg9gXLWDbXSYR8aP3YsfD0I87t0H0pt+Ryvm + yJO6XaRllffaaZl+Jlfqu7u0+0nd7KCg4E262ytHYY8TTRXqDjvFY7243IdF1nbeSU1SpmUVKscF + kXWZ9PI03CrywH4+SHY7xYLsLvKEPl2e0DyUhPz7l/hcc91jMjrvaHKvVteGqWv3VgZVur27cg7W + ZFGtjw52V2XnJFkhub6aCtcFE+QFO7vxzs6eLLott7IZ60HvIl1N43wta9s23nrYXFHpPT/2F3sY + vJ/rMqsQFo4iZaRCTlNBGSBQKQOo1IQBppWggs8s14VTH+mGXJczp4ihClpFQn03Bmv2aLXgCiOK + vcFYQ89mlesCOfWRbsh1sceOYOUZ01ZZ4LFHBAhokGZeA+EhN8pSaGaV60Ix9ZFuyHUN0k5Zajlj + lALkjfOeYSQAJo5zBrXRnEhgZ5XrIj71kW7IdR0EQlivNMTKA8+UEEhYxAHB1hKpFTChTqSf0ZqQ + fKK1ez/8RGw01ERzJiBWxEnFtdGCWS4hI1gpBAUhmnJhudfzWBMSUjwpiP7eg/DK0dJ4rb0BCgBB + CCDMEIOgtZIYi7mmGCEnBIVNITrCf3LjmGmIDhcQ/TtEnz33xMu15e79kaX76L7fG2xuHa/fHp+e + Kbh9cXWSD8/2tvpX5w/GspvRdlOIDv92UcgAk1cfZ33R46yvzp4vo3rWFwB1gM2Z6xdhkl7rOU1e + FC6QgDpFvleoUUioz2zUTTPr+52fFbqbbsb8Czr2nKhez3rj3MdPs974sf9x3f+47n/QFgcM/LL/ + 8ff+h6+P+x+rzMYv+h8zwAH9WJr9rLR2oZleaKY/v2b6VUX3F1T98RFl08KZarKa6UrcLFVOFYl5 + KsmXmFARq2ZuiU1VK8tLl1hX+2ykefZxwF6JmwVgf6d02nLDXVPA3nV24njdSGGlcuyFL4DEhsQQ + Uec4I9qAJrrpt+4eC83076Drk7nIJ+bCFRSJi0nC0yQB0Zmr33jmVBE9nytRfa6MzayezpXo+7kS + xdFZ20Xh/BoH4o8WXmnVjrrqJi+ePztwkU3LPDxdv0R5EZmnKOP7xr48OX3Z1NfV0atxO8bxfreX + l2ltzlX7cFUvd5vl2eNmnH1sw5fvFeBrkUvole/00yBX6eXhQREqtj8VdSzTbv2dQvVS+9TRdFzL + Pc/tc9NnzYbrVXDwfAtQRZWajltSulzqpenSKQAIYUkZggBAIdjH5gUT3OH8hPZr6sTZzf7oE2lU + MKIP7c9puMUkgfDPwuk4eMdNNpLWurVkM5WMl7HrO3HRLcOTtHCJKlzi836RtNJCee+SsufMz6Rb + jSJprVuLSPp9kTRXRnDePAkx7apOadLJy1WAdJAj8yIPUWknn/IQiXHKN8pDDA2MTn8elsx9VE3m + wdp2Qlf8pMJqJglahNXPYTX8/SYifxVWrx0sR2Pcvfp4roTIuXDRcuGijbxfRJvjcyU6HZ8rsxFo + fg/7np+aSzqttXJL4QyPH8/w+PEMj4FkGH1tV93O+wLMCe5ofgLLol9Wn6qWtwD37PYzMlqGxB/X + /V8Ela5fuFvVccVkxc+3JXp4VEZ2006IaAaphTJJMz+uiZKEwMgVo6SfddJb1xl91Lw17GkRVS6s + Wz9ZKAnnwbt1Mlf5XGugrw5uJdziGwej6/v7XSENTLb2b67jb+rqeqXlt5bzb539vdbJKl6fhgaa + TVID3Xuwa6h7Xp2SjSrfPL5dL9DyHT69PoM7VZcCtnnx7XKD64psD9+vgSaYGOIcoMI6JanWgBrl + qaMIWI2A8FJLTPzMaqARnPpIN9VAE8AtdVJjZjzW1itnNeFKWkyDmSiQwnLJ0YxqoKGY/jndtF40 + 8dQwxjUxWhppLZaAec0Eooxgqy1AWlk3qxpoPAN3j4YaaEKUJB4L4amkRCusCNaEM40tAdJqRKFF + CvsZ1UBTMv2RbqiBVhQQx4E3WGivuYCEcoagEchQZhWmHCBIuJ1RDTQDfBaeiI2GmgPmDKScc2Uk + VgBbyakW4XfCGeDcQE+0sfOogWacTkgC/d5j8OqE1tI5xRCQQCJDgDRKEWAUUVY6RA2nlmIjTWMf + EQTmUALNkIALL+cnDIskmD0J9E7SBueX/bwc3ZyWe2vn5U787frgpF1mnXvzrZOcbu0VosX2929b + DSXQr8xS3i+B/ne0n3ZstBpmfjGU0fPUL0rLKEz9oqepXxBDG9UvXdRRZa1sqEuGuSeRdFkVfVP1 + Cxc0Fk810J7sOtpOFdXXWrFRuNKpwrSD1rpUo/rtwpV1QbKyXWs+CqfKMmwpvDc+TF+C/0fVdqNo + LOd92utABfOPoPd4tCfpfS/l1lY/61j5qBEJ3c6LKMujctTtVXl31hQWP6K9pV5fJz/UG4sBXeqb + Ttw1KaCAI/i11+59TFsxkV3Nk/1Hv+NGn0lUAU3eVr41/JyyCoQpmYJK+TbvoaXHGoljc9c0s4lK + Ormy2qkizVrJyFWJ7RcBUyW3afUxjXLY0YKBv1NZIQ3WuikD1+nkvZ2VQdIqg2IiPB1rKgSDYqyp + sFAISJoA8JX0c9o6o3kA4JO4wiempECY0UUI/xTCCyFmTUmx/KJebjhT/h0tR+FUiR/PlS/RyFXR + 48nyJQpnS5RmZS8tnI30KLx2pgpfbc1YiuBfi2vHwlrECEScIoCBkODyVyl5G+1sfuLN/8e6jquc + /X9/XZbeX4aUDSPPv86km0YESCWn+M0IsNUPx0tlXdX6WkvxJxcBYnCzFKaqWa5HnSTrm07IZ1GF + U6HYpeq6RGWJM0/pph+L/jBYlK99f/xnLRKkafznssHE4z/OEbWUiBcCCOE8jiEyQmEhgUC8Qfy3 + ng3SIs/CKbcoYDuNGPDvXuMfi/9+Wr7v8TnRpHgflZyRD0SLbz6LPkvYCGYmbPwJsOV/B9iuPp2k + 0cH4JA0KXhWt1CdppLJo/fkkjU77xriyrI0pDse2yev9Iu+5/+0jAGUZ7T0aJx+omtkeBSxbDGZF + /Pv0gH71aH+2hHi+YuPHKzYOV2w8vmI/oAL+FXucnwh1Q2WqSs2hf3zxmUyR5aDEICv8p2SjVCLx + ti9yJzVuokj05gHfLg3rTBObJ2HzSV3y3Rd590PBb9jgIvhdBL+fMPidBwD6rut5goHuu+pUU4nk + wt7tOcLlv9/e7a/A6EWdT2bzKJxBUV0bOpxB/5mZTLK3HoR/mRn21hfnJ7Q7ahdhHT/5RBGdAbw/ + vJftzxnRUYzfrmPs64Op8yytVGmd6ubFyLqOGqRWfc1cNblID8P7paodzsRQ1PQ2yftVokN3fF4k + VTs49wzbedJVt65eOgvvfSwExPB+EQIuimB8wiIY88A/J3Ohz3USWAnp0F6wzXS42V7vx/d93T/v + XJxUXKPlzQO3OVhuXdOrb13aN1NJAptk4Uwa77DrwxO9ewY6iN9VeXwzuDw9LtDd3eB8C5phd6jP + qdvsnqy/PwnMKi8B5cZYDKglCGoCsICcIym91VgoTA11s5sExqY+0g2TwKh3SCuuKJdCEa29l9h4 + jzmT0gMrhdGCECxnNgmMT32kGyaBCaewU8AaDhgxACHipRZeSmQMkgx6Y6QAUE80Cez3JHEgTCaU + xPHeI/DqxmEMdgxgrEioZAwpcIozhBAGBgJlGTDcaGGbJnGQ2c/hmAAXoZgscj6euQj943NyBmrH + nm/pjeXde5FcX63tHfLB7vnl1TrR1a3xmxcnu4fp7VpV+u5ueda0dqz4W7b3Z3WcF6qn3kZ5v4pC + LPdoRRnsNUPWRIjzaoVb/V7uo3Y+jKofvzdbi4R/NSde+k/3f+DHVgM/tOn5YUO9NLsd+U4+dMVn + cpgcyLT6nGwIIgx+txdQiobV0vh5/+g5163nc/2uyh4BS5mUVV6krqz957L8YyAo7GiRBrFIg/iT + T86hEdA8LANO5BKfawS0frhvh2v7/nJtpV8drJyfD48ZO5H3a/mZ397S9jQ97m+smdWb4VQQEMST + NJjY3b21q2jzMNlckSvHw3Nxc3qPLof/P3tvwts28qz9fhXeAwz+7wVGce/LBQ4O5H3fl9g4gNBL + tURbImWSsizj/fAXLdmJJ04mtKOJJI9nAMORLJJdTVJdPz71FN8+v/D6pBTF7f3yqje4nb+hGSr4 + ECSnwlmDQBFtOQhNlHGWKQ5SWowQwtbNKQMiYvaRrsmAvA/IKQIICKPAjLVUYBMwZYSpAME7b4B4 + N6cMiCox80jXZUASoUCs0RQLy7EghBKlowY3UAFMWsuNNZ7PqRGQ/LbJzwwiXdMIyGMDCHjgHgjW + SHnruAweCSGENNYQYZnnwOfUCAi/8P+dQahrOgEFRa21JkgtpAVPwQsZEPDYfxbouI+y5ljPazdU + TBGbh+/Emt2UsbHAKZEMJBDMDWGWehekVYhLpIm1Cku6kO1QJdVTwsivnYQXjksGEy6M94YT5bFG + GAcKAAEJjRHV2jDK0E9P6a8hZovYDpVjwj70cl+4MFV6Vlz4h15Ax5sr8Hlr/wR29Uqet7byy/Je + 7Z5vuOPTwNVguL+Zlf2N7eXV3aOaXPg70Pc1YPh4fCEmT55AeVkl4+wvecz+ksfsLzEFJFlejdsi + mSq1Tz2XbrJ8mCUhL8u0O2dFJHXcbUwvzxpFr4M44v+0k87P9/XhI//hIz9tdswU+RtdYZ510wy6 + qS1MMfo0TLswmmrhSMe4askNChstNcp+Aca38vDFaXpQtnxaxsukVcDtIC3e2KMo7uYDIb8OITss + zd92//lrMUl/+t2JlObUCPaXbp9Cx26fmkrPmfO6TneitX7qofdOObJcAIw8hYt8sc3kLzqnvZPT + die/ys4HtyfrXd48bwzPBisHF3dbo+OmJv6kdaT24GgmEJnzaXrnVvRqWKDLhyzHl0H6u0vChun9 + dceubFf9zorubh7t6/xQ3DZfD5E5FVgA9kxQYbEgwnglA7ZeYSwck1YFZ5SdVyEhxXjmka4JkRVg + HAgy1AqmpMKYGKaY9MhIhryEYDRoTMycQmQmZh/pmhCZY1A0smJhJZWcMmq98jZYxbmQjiOGjLds + XiGyJmTmka4JkanU0nEuTCDScWwpY0wSBEggzRzC2MqgtBNThci/CbYhhKZlvP3KKfg2yho0ERwr + pgOnjqkQIFb9OoaREjIYJa3TlrO6sE1otnisjSnyocH8ytqIFnOnwfx8yVc2H5Y/X2SDPeZ2V1q7 + G10ZmtXq8V0Dtbs3d/n53taKUNugfg9rW5mskJPJCjlKLL+ukJPHFXLytEJ+NLT+T5lc52lWJRBC + XlRJGllbTB7GRtyTz4ytXVC8zGOP8TxL+oVxVeqg/DOBcfNC0+2OJrju8SPRU9tUY6g3bloeu65n + lWnHQ/mU7MMwCWk2zrqTxwmafKCX27SbPsSdu7RKHyArk7vUJNE8JM9MN4kTV6UhdeMXHnu5W0h6 + eQFxDHG4d9EdMXFQVCbNkn7eTavHjutZvEzmyY/7B3hkyefpEkafMMZ4qZ/3y09jw8LXo8Nf2/7i + 4MLTDhwba9OqhQl9T5LTwIBWN/5dqk6Z1N8+4XtGDn3ufJF/Sv30WKHsjZY6aas9GJWt8Z2jVeY9 + sLkftTrQ7bd6ERyN7y+jWJH4NlIoe6OPquPXskKFlH7RsOaHrNB1oDd1WEiEt44i1WDePOpNdVDw + Wr3pSgd6aVkVH8bbMyGFv3qJLzQnPN3ZupSnaKAvcbOJjg1G4dSK8+J0p3W8fw3Z5kD644erswvH + ZsEJ+TR1eReXq/m2vup18qOdjI3E0Wqx3KGtY7ETeHN5/5ZdXWxfP6yTnbOt12NCRUEHsIJajI11 + VlDuBbLcCiKR50QhEqyldF7rjTGdeaRrYkJKmeBUBspQQDgEz6jSoBS3TCMvKSdeaKfmVWuKhZx5 + pGtiQg9OEKy4EhGhEC5AEmIQ54RrRqhiQI2WAs9r00nKZh7puk0nQQUEwKWwjGEtqGIUCycFxUiy + 4LAODnNk5rXpJCIzj3RNqalEmBqCDHKMe2qIRFgyTYwVgRPtQXqLQCA0p1JTLvg8fCPWCjVmWgBT + KgjKkNMacYpVEIJYIlRwVliqhDd6EZWmUk2r6eRr5+DbKDuQPhhlgrMKK42dd5owokARZq2UXErM + FRG1hab832BYwKTm6AOWf4HlL2r5Zy9M/ZwrmlbnVlR3N+3DFddbG675h/21dbVr8tZt0524wxHJ + bzsXrm6TSvorrHwzTWKO+OcjQX5KEpOYJCY9eOLMkzaSEY30IYsvJeMLI6pT02z8Htz3oUhj/pm0 + B6mH/0m2qv+UY+8DkyUmnoY2dYlxqU+qtBqT4Sx2rDTZTRk3YvydyRz8P/MDpb+Qt6WjgV1eW2++ + njv/dBMfStQPJer0ebIiP1ai+nZaVp+M+3RTTI8oi7Q/eb1Ky6pspVnrJo8NPjrmDloe7qCb98G3 + TLcdG8l2em9Un4q0/6E+fR1R9loRV9vAIFYdlG76ClTBBPGciYZS2j5CZarQBCpb5EAZUQcq573+ + oIIiOfn+qmHh2TJfBLb86xf7QtPlIjs6T/v+tEC79/Jw5fyOdg7O7b5yLbx83F/eyh9ge7O/eqoH + zVnQZTlNwV6VEXeEL+/6mo9WCFF0lVEMo35zrY8OT3i6cX5zcr+85ehh+/V02WAFSGjvLCeOC2wc + sYRT5hGxAivLGfWMOTWvdJnRmUe6Jl12hBGHteLYIwyCIM+xVlpLIkAHLyPJQBKpOaXLBJOZR7om + XZY6YEsQB+kMNkhojoPBwK0Fr5jBwRiJDVlEN0vKp0WHXjsDL24cSAePhRfeB2qRlTIA4YaLYEFr + F4vrGbOW1KVDnC6iMlIq+qGM/Ap7JJs72PNwsyXI+rXHCkaHn/1xur3WelCX60cYNs6W98XtygN1 + V2snMuzVhD36l2DPyZdFWwQuO3HRlsRFW/Jl0ZZ8XbQ9CREnesJ0/NHuKOmBKWNDu+ha6dP4xqBb + JWmVDJ8kiE/Ip6qMu4EiqfKkPYi98kpwBVTJDYwmXMgVo36VtwvT76QuKUdlBb0yIiFITL9f5MZ1 + HrFUAX7gJq6ZbpwCPMkg47+6cJ9WoyQD8ODj3u5MN/WmggSy8S6iQLIENyjSajRHmsdnifgSZEux + wd1SObBILCGBCCLjlnf/E1P//z4f3/iy/L+JBoEdWCW1NiJIyzXXklDBLCNPj+U28io/NG14iynn + DA5qcRBYNRqk8b93hcHkza25LWj/fUorqfw2H3qGwoamgqLRBXNj2tDwUI1F4tlUC7PbBKml/x0g + Qdn4J44/GY0/iW6NX9Ljn2T8Bhu/RMbv08lPOX7FT95Q459y8rfj3+HrZolrffv2ZOMkjF8xk9/H + f8T4+KeYfKD19f3HT8ivbzPzl0+82Afxzw5BPvtdv4nyxYh9KEdfbVRqnJKyLuczWdoz3X+C9GGk + AUviGkxQNSF9xoJ+In3MgalTa94cH+C75XyL0Ljm4871l4AtMrLcPd5dS+kgTbflJg8r1XnBzq8b + 6L7aWD1VD028OqzyrT4Y5/JZIEs9TUvQTJ/0RHaeNi+O+g/FsI+Xj0a7Z/39o/27YkWthtOds/XW + affu7PYNyFKGoC0NylBPpWYhKEBYY0sR5UYT6oMLhsLcCmIVnnmk6yJL0Jo6xwQEFRwGUF5ZJMAK + yZQcC2QjOuZTRZa/qS3Mz2rq/7EZ+DbIKBjsEEPWQ7BCOUEFtRQJSTTT2tpIjbnDvC5Ioxj/C1RW + VCryAd6ewBtGbO5KksXxzdH2sFq/626NRocN2j0DcXdT3aYiXemf+K0Gv2yfbZ8tHx7WLknG8lfI + 24+WUcnLZVTyo2VUUmcZFX8il9RZTCUvF1PJ3y+m/vKJpP5iavI5/Hwj439Q/nzIzw+Xfz0Qhief + eDFw+mxkk3cp/lGM1LPDCS8P5+Vmifn6OsHPovr4R+jr74wmz2KovoaC2GfT+xQw/2zIj3GVz3b1 + l0izr28/7lC+ONzJdFD29ax6HLJ+fiqYb0+9x5NA/eBM+cvJ+Lgj9mxiX56Yk8Nk6tnp+zjJ4vmm + 1Iuze/JH+i/R+cFZ/HhCqMm4n4eQPDu9+d8fwm+/DM3Xt59Ouq8H9Tjt5kfR0c+vpuT5PDzb+OPw + 1Q+upr9e48/CQl+cKI9/+mx0j5fL904L9Wx49tkRmOdD4s9iJ5/9EXl+a2Bfo8b483vQj0735zcn + 8+wD+OVdKTw7Z56dRU+7Vi9i+rgp/vXTT5HnLy/a5Nt73uQKfrwBPO6Dzpdf699gz6U/vPrDsvFP + /IfXfygafze6MX5Jj3+S8Rts/JIZv28nP+X4FT95Q41/ysnfjn+Hp82qP4xbepv/63we++I8wjjp + AvT3c4G1elcN6+loUAzu3+czDKRfuP58fYZRgetc+3KqzyyC5tnSuEV16QqALN6i8vHAW6bfL8eN + qzuDNrTapvdGI9m4iw/I/2orWTBCmtpWsqaoOv8E4+eSC+E5PPOTVcFFiwiNKFHgA69jEbEWj+8D + 8T/9wQwQ/y9e6AvNxDdWti/X19j1BdsdrXXEqWhlV6s7e/JwWJz7PemuttbOrtn9fW9tbyZN6acp + eTwR/Yoekeu11bPm+vLZgeUr+Kra3ESpPc+QXtmBjmvA6h3fcG+Q8TpqnfFMAQbtsVdYAXYCPPLS + G649RaCQnNeGZJiwmUe6JhMHzcAIIT0C72wgGLTxTjEsgxHeavCWE8bs3Daln32ka8p4NTGBc4yl + 90EQgwhw4Z3UjLMABJHoNOuCQfNqEiHUzCNd0yRCKBDeMRWVOrEUgDJDDLcch9gfCwJR1kqjYF5N + IjideaRrmkQY4EoZJC2AsBQsBkER9YFwI7XwzNpguX6dHcdvNIkQZC6+EWtaUVvgngTmXTDAKbLa + c2e0EZhSz0FL7YAFs5AmEVRN6enla+fghRVHjCoVDoimAMKrwJzkwgUe/ZJMUA6Qkr7200tM1L/h + 8SVGSH48vnx6fImQmLu6gbu0ubx/tPXQHR3bO3OxfHu+ebu+vmmvzE3b9WhL7hwcMNLfOuys1Xx8 + qX7JUHk5+hKfjDPE5PgpQ0ya/X6ZrOdFsjloQ7IRM8T54tzP0Ni4N9gS4uNktzFJdhtPyW4j5rpj + YfvbmPSv72dx+PEFlP10fK8ZvSN+fMN1UeXpO8XHHP/YDWI4KD5l3emRY2ZHS5BVeS92iXoqD686 + 0Mqg6kDRNZmfdLivCpNmadZ+Gz1mdvRhBPEhEF9Ugfh33/8rPlaLgI9//WpfaITc62dmfciKqtpZ + v7mFW3S9us1u9lcO94ZXaO9045jBtd3YG94c5wvvBHF4bJr7/pKGTvNWf+61D9prVxVt7bf3Vs93 + d+TZ3vZN2+YPfT1cez1CplhYD14YprgQ4Im1HItgkOfIcoccBIMwNv8KJ4i3RbomQpaAaCAWNHOE + A/bWGok4V4o5Qyy2HAmrPIa5dYKYfaRrImQIKDgXULBGGsedZJ5JTxnVCpOguIhndXgd2PyNCJkR + MfNI10TICKNADFIBC+JAWxEosgoCSKMww9jEdnsa6TlFyOLb5h8ziHRNhCyclUr7gDBVGjFlwFiJ + rfDMgCMBATEySEOnipB/D9YUQkwJa752Bl7WGGGDpGRBS4MCIVwDtoJ5rGOPzhC7wQWqdO2+b7Gl + 3QLamyBOPuxNnjAl1i+cP2ZfZXFZbGyr5sFRKs9dB/X3R+XWgxl0dqpjd3Zl7Wb3cn914/AWD0r2 + W+xN1p5nIk++tPtfM5FxG7anTCSxELuz5UnZg2730VqkyDNzlxaDeWqNNla9jilNNOTIYFg2hoNi + 6aSTD5dOHwfTiINpVHljPJhG1YHG88F0qt4b1bZT3+8CmX10IHVg85HW74h0kmLA8IN37xJ1Uq31 + j90+Hu/OIXeD6cplYfSQ/8UQ86mxUntQRRZXQZGa8ZbBt6r8TcQz7uODeL6OeBrlVH21bAaDIp86 + 7QQFYJBXz6WyCkwDEw4gBbMO4Rq0cz8eXPlOlbJyAVDnr17jC805q+bZxWF13T856u3cb51mx5uN + g3vbOFwNqpNd5GH9pCpX84IV3b2F55x7/DK7YreXaJDfnpJVbG1r+fThyN9sr50VvaK3shWae0fZ + 7hbLX885mfLKOUk0tioAYc4zgpGMNrigkRMca0Tlv4Rzvi3SNTmn51po5kygUgvprNKeGsUkwiK6 + sXKlqSbqpxahybtwvH1bpGtyTmylVNSD1cwqohCzxEkXCEecEODECcYFDXRuOSefeaRrck6OmcVM + UexBEADttSROUcwDgJLa4KCRCxCmyjl/E3372fn+j83AC5gsgGllkBVcWxYcd9E4GyEcgPKgkQWm + DPppkL/iTbKQ8A0h+gHfvsA3ieZOI3jZ66Pb/KE1gMPPK5dp49Y/yK0mPidny4EXtH10v7Vq7Pn2 + SDV/u7fwU8+o9qBKntbGyWRtHInbONPy0IYsqlbTu0jeMp9OFoZzxd2+RQZjDPYsDWg8DbXRHlSN + p6E2JkONXOzFUBtfh7pkev03VsH//uNaHG63D2m3dWJ676lT1UM7h5SYdwrt+LcPQL8pb88i0x99 + SrPbQVpA8SmDanrsbgCjpUixv6dcGj8rGOfzrYnTRMvld6nHb/O1jbv6QHgfosX362r77SJ+Pkne + dK74hQZ6l6bZy8lDE+nD9Hhrj1ydjcghN3fNZhi2zM3Kxnb10Nq4t3d0Ni2spik9Oh59roZDNxhs + nZ2ufL4u7mx62ln2fqU6ZBto83TrpME/k3vSX3mDcNEiIYEGqgWnmFmQDFOFDEjGtdVOEay5EwHP + K9DjZOaRrgn0mDIiWEGV14QGQg1hLgTug6RKOI4j68PS8nkFemT253Rd4aIHAOeppQaENIEojhwm + iDIrA8PYEc8tFmoBW1ixn0nt/rEZeKGkEyp4Y7X1SHgGEpMgOHIOLCIsaCBUEQyE1sVMYhExE9X8 + o1/5M8zE6dxhpsNyeWNHpxfhfvPiWO6E5sPdXevhNofm4Sp3w93loQjFcHPl8+iyLmbSv1aKCt+V + dj0u3CJemizckpWD863VBtZJmoWJSeAcwaUfpLVLGGmO1Hh52kizsaDq2fK08TjKSHAmo2yMl6cN + rBs/HuXPkdLvPJrFAUm9OzB/C5G+l7HWpk4x90qSAuJRs/+aJn/6r73VxmFntbG92thbbib/N1np + plnqTDc5LPIAZZkXS3vgU5dm8F8/297XkXlT3PzXdLmW6Fyn77EBO5VCqx8ircxUgwKmq0Cz4eG5 + OsWnpRun1p18GHPZqkjdTcuZzEHRctDtlm/Wodnw8AGxXtmCnasgeO0W7ONZmjrB8jgQTbVqMBX4 + hGApRcKEYHmsGKayTgf2nx3dYpIr9uLh11yiq6lc5gtNrlr9Tt4+3aKnVzdnvH+j0nPMN7evb1q3 + n3fuNh5Wdy4fSKPrrWQzkaJpOcUsf9mPzFZrF/YbQ33VuF8WRZCH5UVnrQcP6POofQTnD+bcHQjd + fEMnIyksCwFTSoEqJ5i1gunggrdaIOSCEQERP7dSNM1nHuma5EopzQk4FeVQQKQ1OoD1NmAtgmBE + SKQVVn5upWhKzzzSdaVoWAmOxv3ALRHAvJXSes8Yl54A0xy8CT7IOZWicTn7SNeUonlgxjrETbDI + MqUxd1IFqjUKThpBAkbBAZhFlKIRNCVG+NoZ+DbIQWAwNFgUi8eZtCwgHrSmQiPMMXFYMumJhNqM + UPEFZIRSIv3BCJ8YoVJy7upAz4/Ku9vmptiQI3PSNINOeYgb6Wn7wTq0wS1fa63fbuzla+e6bh0o + flH6+1Yt2tMSedyvvsqT8RI5mSyRk/ESOb7q8qwc9CCp8vvUJb4YtMukkRxDCab40oQ+78OEO/o8 + LyYd7E1yWuTXJks6eVFC5JKPW46QzPRHk2b2ZVVEs8ZRUkA8+5I8S6pBLy/K/yRdU7TH3e6hSisY + b7Nf5BWkWZIN4sWQVWVSdUyVhAF0k5ggtDOTVUm7yIdV58/EZH4ypljSGg9usuU4qDQz/g6KmEp3 + R0llbsYHaKrKuA74ySjnrM71KxpZMkWVui6USyXDXPAGIriBkNKygd+mmXvbthcHV+7c3JWdzJTV + 6P7+/h2J38x1j1f4pWfi+xC/Cfail+RXUphmEail+SfnpoYK/ejBLpnuXVoZa+yoVcJ9ZfpvYoFx + Ux8s8HUsUBClPa7LAjtgulVn6izQaMUZc+xZUaoJQb62f8vmz45uMVmgWAASWPMqXmjUVx6sXnxu + 7CzDsDSHqYOjUzk62FrdPzs8czfuHIr7Yv3utn8aGuUsUB9G0+yxMKp29wfVYLSF9+4PrrYuHbQa + D2mlOuuXV2RnZ5Rb0ciOxa29VG9gfQ5z7iQ4LDRD3DFNFHCvNWXgnZfRph5TPq9dywkWM490Tdan + ObdOccOxiqX9mjAFRhgFxgvhlQSGg9dqXju00J+xj98Q6Zqsz2IERAfnGaJaGeljNwvlASEhAlOS + CAzEYryIKjU1LQL12hl4EWSKCOFI+9gzJHDHguIBk0CpcFxY5yxIb7StS6CYWkSVmmCafRCoLwSK + sLlTqV2Rag2vb92brGsO77fLs+1Dunp53wqXJyfQvr/Vl3a1yT4PgqnbMOE7dOk1BKr5ZWmW/J+T + tc+nzcP/N/nfgVfU/+/AOyPmB7s8yzGXCEZYh5XuTRe9nrHU3NCH/utD//Xu9V8Cix+XNBpnPPRS + V6U9mK4Rmb/L3XN9SMfcQavsgG9lEM/+dqdq5Vlr2Bm18kHRslG/+bb2vXFPH+jnw47sPVYxskXg + P1O50hcaD2Ur3X2/s9/f6axod3XZLTufN9Z6GK8yeXwyvMsu948aRztrm0NxOZMaxmlW1t1X7c/9 + 67Zh8uJgv40G7Ut3mt1V69d3myvsZLm9ct5tp+XRcui+oX8v8oEz5MEiTYzy1hhFdDBKCk4UZx5R + Lxiyam5NydjMI12TDo3bJFMrJQdKbbCMeMaYYJTiwCQQjDSTCM2vKdnsI12TDpGACLOMcB/AIwNI + MKMEUtqG4DCAZRKkRn5uTcn0zCNdUwkWECJaI025V4gg7XE0NIzdRLzzgH2gxiIr5rb5wlQtDd8W + 6ZrNFxxDTjgnLdXaC4UQUlgghePZHbWlGksbTQ8XsPmCRNMinq+dgZdYGRvsAHkpubIytgHXxFDG + JLbUKKmV9IoHUb/5AmOLiDyx+ijM/Yo88fwhz16DXWRna62ePDrHvjoaXWdONe6z67PV4zun787d + 4CY/vLg7vbz83f5vMRlJYjKSZDBMxslI1LwNO6MkHxTJJBlJPNxBN+9HJVoaAhQTmVoo8l5SdfIS + kjwkedTRJf0i7ZkKyrHYrZ3eQZYUaRnVekln0DNZ4gbdqO36M+marD0wUVEXZXF53k0GJfz5RQQ4 + 0ciZatLtAQqw0O0OeknPjCYH3e+aEfjEJO0x1CmSIu/CU7kx3D0mCvHI4guTnY+HEzebJeObUT4o + o9yukw/anWqO9HUvsNPSsGOqRglV2RiUDdM3RSzgbWdp9IPrjhpxKhrjGWg8zcAb7Or+kd0uDkQ+ + KAI8vCM1HtDuPXqfUjxGtPghtO3n/UHXFD1wHZOlbsrc1vbDc5rjuibttTJTmljuVuVlq4wVfr1B + 2SnyvPdGZGv74QPZvtJ+TjtqbV1ka9PpA1vjiPbGkedluwKrL2W7CrM6Ur3ldGzv8O5YLVmEst1f + vrwXmtMeHt/au63ddnG1RmiGIBzobdHZob3t+7OD5o3davrt7G4Pettns+C0fJpM6/ICG7maLQ9Z + q9oQzebZ5fLylr4+3+yxQUPwO38XIJjsKuC913NaHDjnnmBGuBSWeGpjGwMuiLdEKstV0AFLObde + c1PVS74t0jU5bQgIY4wYCZp5Eat3GeLYBOCUKSTAcuCava6lwW/ktFjgmUe6JqcVXjrpNFhpubbB + EOWpQih4xJEWCjnOifDWzSmnpYTMPNI1Oa1F8ekDKO6RwIpT5APTxlJNidbBYw2SWK/8nHJapujM + I12T00qBiEIYB+mx5J4iFFt0BMaMc5QqIZglWL/uKc9POe0Uq9DZ7CONkarX+ZlorzUIToLhhGNh + EMHMMU+DDVgogpkKVspXfiXORx06wlNi4q+dg2+jbARxJBhhCQIQiFNrAuJWUMa410IbJ6yntLZX + JcZ6EZk4o9+uYP7NTFyS+StE75YPfrfccRc3e2bz8Mpng82VNJfd5u7Oxe7Vslpd29m9vH2Au4aq + ycQlmhITH+d8yX7zpJlMcr4k5nzJl5xvXNAd+XSeJXummLfC7O/hr6Wybxws9fI8a/RMMe4bQgXl + gjG+9GVgjcd3GzHfbUzG3uimAZ7eeGMLlN95RIuDm90gks9B7P7yjqBzO+1w9i6Fwlh86xj2jDlP + qn+9qcynvGhPjTa7a3e/9NjWoNUxZcuZQQm+JXSrl3a7aZ61PJiqU7ba3dyabnf0Jt4cd/PBm1/H + mx2W5m8bifyFN0N/+o1OlObUCCaeCYSjpiSWhlPpOXNe12l0stZP41O/dwqdF6HNyRSu8oXGztfi + 4WGDgrpe27/Qm9t9b1t6y1/tNi/OttRB46K3tX2srpu77cHNTOTB07QvPF+2B/c5v+ndLN/cdNHJ + YPfoZC+ndyRvD7LLjZ2NXXxzu9PunfryDS1ONAhvgwnYaKExpVYhYRBgRBAmmgEOVgYb5rbFCZp5 + pGtiZ0wVV4QG5hV4QqUHoySQYCW3CrgwnmNCuJgqdv49MAMLNiWY8doZeBFkRzUm3EjgGqTg2kjH + OLfBYEW9EdiEoEngdWEGoWIBWQaW/wTL+C6PWASYIRieO4Hf7cHD5eYpXB9stc9Oq31Toofmibwv + Lw+bO81Bo3+5v5ZtnMvMYVdX4Cd/BWZ86afRMWUyWUwk4pNOHlcTyWQ1kTytJv5MenkBE12czwe2 + C0kUfiV5CKlLTTcpoJ8X1YSDzAfseMyf/pp2jVurNgrogilh6UuDi44pG5MgNIRuPMagMYlB4ykG + jRiCxmT0jbHs7Wn0jcfRN743+r8HIPNylIsDRda7ozRrN5r9fhfeERWxKkBX3vbepxoPM4x/rMYr + R3GP08UibdVdqopBrx9vOd2Bq6KVZ7TVH4IpWqbVM+VNK1p1miL66o9rLt9GRtqq+0FGXkdGgBkt + RF0yUr6sTv9lMkKYV5rZsWmemJARy5hoYCJUIBYp7+qUTp/k42+/17aA/Z77wjyiEbwIaGQqV/pC + 05HbNDSDPt8cjORmcFlJfC9rp7w6Or1Rrr8i9a4dNfpmea23tfCivPWj472tHTXymNvlYXrZIyvL + x/bh8+FQPWQHstCtdv/q5HT16vPwLdZ6AgJBzHFnONYsCpiQc0gDUM2C5tIhbee3AexURXlvi3RN + OkJdVGZY5iG66BlkEQ0Oe0wtAQrOUSwtc3heG8BigWYe6brWesoY573COMYTBXA4MNDIeukZJUFr + zo1+XaHpbxXlzT7SNUV5ykFAOFhPOGGeE6qCwiFGO2BjvGXKY+QpnltR3uwjXVOUZ4xjiBsjgBhE + lTdYxLY7WmitsKXBe8cEAz23orzZR7quKA8E50gAeOvBOgiOSVDCSkGw08ZTQwA5KtQiivK4nFah + +mvn4DuF6piHKMsj2MoAsWMXxwzJwJUVgWksoqGIrC/KY4vozYnZi6ex/2JRnphDb870gsDRuusR + edW4PNCrw+r8dsV2jy/zi9FgbWWbDO73L7q8eamPfoso7zQmfv8pk6+ZXywkj5lfYpKY+SWPmd+4 + vjxWhRcDa8FHch3VeZ009n6JGTEUsUvMPgyT4qlTTGTjIaKLxCQx7UssVEOALCkH/YhSxx1eVvPM + dH0yPpBxpXrcayMeQRQAWuiYuzQvEj8onpq6fGHvfZONq6nnTB34FcctEUTwEuKP+XXja5Rjm+g4 + xoZpjMf7GOX4coxyYxLlyJ6jDq+Tlo0vUW4IJF52J62pE5zJsS0OHN9Ly+oCzB0UCr0jOE7ufHXr + erfvUzX4whH/n20v7YDopTLvQYsjiVp5aEHPFqP80XfQZDDod/PUj1omaxmb5RHBvQ2NA9EfaPyj + SP1v/nIB9YKLwMSncokvNBMPw6PsDnXzlWGvu6oH2Z3fPlrtXnWu07tT1LgP+U67eXS+XG7eq1kw + 8anyQ3u9AeUtvzu/Sw8PDow8CPsb17enpbm8Cg9leX3dXLla25fNqvkGQ9GgiFTBMoO8pU5ThThX + hitBMUcKBYuxJlrPa7sZTPDMI12TiUulvVIggmHaeWp5CECI1pJwgZACZwyAMXhembia/Tldt7W0 + 44Rz7Th3XAcJnluHohEjw1IxIh3lzFhh55WJz8HdoyYT1yZwZ1UQjDGuBcWWCOWEBi4Ck4QYcEI7 + RuaUiU+X1L4t0jWZuApcoSCi94JBlkphvA/Rz5UFOj69scDaU7uAhqJciilx2tfOwMsSdU98IJIY + jISTIIn0XBrmNVUgpBbAKPPmFYaiZBGLpzF5WS/8L+a0WM4dp8Xo5qaJG6vnpLi9/6wksW64vGrR + mjlQt5eDne1lcpFt37ZIa1iX06pfKp7Oe5Bw9L8DgjCV6I/ouvmYk0yw7NecJLbBTp6SkiQb9CwU + 8c9dp8h7ecxqyk/JycB1vmzAFNFftIIs6aWlM0WRgv90michzXySD6qxWenXHSRpmZSxTXivl2d/ + Jl+9vJKxDLqTtjuNr+v+pJfG9M7lfRhD5NyWUNzBxETUFN1RUlYxVYmHOPEQjRDY5cMnT9SYlC1A + Z27PMFdi0j0bEyQbbHqduX++7Y9GUh+NpN59IymkFPsh6e32Bp88TI/yGsOXpIrsZ1BCUbYen121 + qg604v0qvoNFy2S+heXb8K4x/APvfiif36PyeRGcSH/xEl9ovHu/dXjycGmPbm/3r/fOXPPgbqV9 + 60dwum0uz+Xl6t1l+2S7ucW7F1sL3y/q5MLgTivw/eu787TpVd/SbE0VD4e34fPW0U6vcwrF8Gyr + cdHfekNBuARDrQuScikwCwEJqiii4APWSCIsqKfg5L+iX9TbIl3Xh9Qb7xgL3goeFMGICxYsMAhA + AGmBQDKEHZvbflF05pGuiXe5JMxohb1lVjGhmEREagMOvJCWYscIckr7RewmPrXeOq+dgRdBdkIh + YoLRGBghnhpEKTAVCPbGE+DWM8dJbR9BgRZRsYjURzfxZyQM0bkjYa2evrpZO1nuhex2dX1P59Vp + KUs56u2F4uqegGpUnx0d7nSW3W9prSPVGH6NV2xfBIURJj1BJCzGBAnLx6J68F/a3MTGNj6BzOWD + rIICfNLPiyxvF6Yf2/FMtrMV38qg+pScxk+UfciqMVK7gyJ208lDQpJOPijKpA9F0suzqhM/O15Z + FuNVfdxqMgRbphWUfyam28vLKjHdoRmViXEOygjKJvtLi2R8J+538iwOoEjGiV9VPu4/wrmxeUA3 + vYHYSydPLCQ904U5g2KTBHwJsnH5fTQXnNThm8w34G6y5oZhuQT3/W7q0tjnZpybNkb5IGs3+pD3 + uzD+63FU4tvloNePi8tGHhrPZupTp+p130bXZnyQi4PpjgYmqwa99fwneGqxhJCY3t3cDt6nRwBS + L7Lur3Ts8UsrntvT9QnQN/nSEFoh0qbuaNLCY3wBgG+ZeJYXretBWbUshLyAVlq9DZXpm/wDlb2y + w7qXwem6qMyU1T/QYd1bIwh10GCCqokWUmtHHrWQBDsGUAOWNePBZXnvHaoh9SKAsl+/yBcalh2f + 76ymYuVofcTX+M5u5suTEzzQm/ebN/uD7HJ0db2SNx5g5aYzXHgtZOPzXhk0Ob+3TX60kQ60zYdb + RuVDtb/Pd22btavhgD+M1Jl6gz8AdsJRSx1l3GFHhJOYGcwdEgZ7agBJwZSfW1g2VS3k2yJdF5Yh + AgiIYhS0Q9ZhpoXThknFgxRSUeOkImJem6tPVwv5tkjXhGVexUpq0FpIHFtSIU4loOCUVgRj6WPH + ZKW4/ldoId8W6ZpaSEkl8MC9E8QIy4JA0lmGtXHMe2s4VjpY4PZfoYV8W6RraiEZwooFhYET6ZBz + RBhLKBBDkOCWCfAYO/y65mq/0R9AIDkP34i1Qk2ExygYxLQKhBvvhbZUeRx0CIgRLwMQxvlCNu1R + eFqw/bVz8NJahATBMHMSMY8D88gYLY0iQtggudTE4Yjfa+tO2UL6AyBFP2j7M9o+fz63F/q0dz8U + Z9c94xQcHqfLo3u7tXd+X/LbS5of7K1fX5z2ZH9z2PwtutMLSB6zvuR51peYqNoskpj1JZOsL0mr + ZBhReTnoQ5Hld+bPMYdPq/+USZZXE8PbITw1gx//fT7o+qSb5zdjuj1nQPsbZvYkx1wqTAGNdjft + 9UtoxDA0JhFoxOE3vgy/4SGkUDbgvg+uMpO8703Q+jccyOKA6Y1uWlUQzSAaxwMbF33viE+rwRCM + Itm7JNREo7+p1C/74MrGeKHUaMcJg/LTjbuxn8pqarTa5qizNN5F63EXrVDkvdZ43610/EywrNKs + /SZIHbdeA1L/APXOCaX+wR/+c5jaa0Vc7YJ9l/f6pZt+px/BBPGciYZS2j6CaqrQBFRb5EAZUQNU + r+S9/qCC4tW6zo/q/enh6rdf5QtNqQ1TZm24IfZ6vLkL/jTb3B+UeX4L8mFvY59kstn8vH1107wW + lzNxsRVTzMmrntm+WN07OTrGUG7dbFykIhXLd9j2TuBo977dR1en6XIz3Q356yk1wyZg4g2RKATL + JVjGJLHAMFjBvcSMUg12biv2pyo0fFuk61Lq2FReIO0oEZ5SRCXTEjTGwVspnYmtaTD7aVqezMzF + Vs080jUptSZcBc+1UFyBpdwx4S3iHrx2HAmuFMOcaTOvlJrO/u5Rk1IzYrBHxFHlg5FCk+CMpja2 + izZWGs6Ew174MK+UGrGZR7ompaYEWayND5oST5kNKPpPWG2pU8gEz4hHhgc+ry62Qs7DN2KtUDsU + NHJEguLUSYpCMIqHwDD10jkVjFaSKI8WsrU8nRalfu0cvLBldp4gjiwCoA4o8oIJRQgYirW1ihHN + qPc/fcD1NcJk/jXhvTwyajtqOVNBOy9imvJfj/i3BtImGpGPPvRfkDan84e0ixOaF94fX6Oj4+uL + q+Hh9bLvrxzc7K0sH37mSJktZ6qb05P987Iu0v4lAflJvMslj5lhEjPD5ORwbeUkeZYZfvr0aY5g + 9N+gsSXo3qVpyV8Plt+w0cWBxBbMoBpVAwst1x3Y99Tn7Bb3un3N3ichjjZXPyTEXyf10/cm9c1U + 2BSD9tLXjcdtv4n/xu188N/XV/QDU7gu/+2XI9eZOv3FknFwhjyv6UcUGpgQY5GUKihbg/4exoN7 + nWvrgtTzL0IjszqX8d8D3letUeOdrTBVXtRapgr2Lf/8Ny9TGfrtjl8eghl0X1xEX1aFP/lymd3i + 75sDW3r9Su9nW1icZV3VAQvdMkvdTRew1vgdLewEQr3BYKTeo3MTYVLw316bZoSBpV7a9a0H0x+3 + rozGLrYwadaKQ7V5fKJnWn2TZgV0U7h765P/uKeP8rTXrfsEUdrXXvdNGnxP36tfK86YG5s58cnC + z4QgG5hoRIkCH3gdr/7Nnx3dYj7sZ4uw6pvKRb7QD/6p8vsVORyQz1t7V+upu1wma7s77fOb1pAe + 3zxcltTvH7TOdsp7t/DlafpO9PYvtvqH7T13dnnYPDq7y6+3jlFjvdk73m6U91XG15uqmZVv8HJS + 1gShNECggXFmmGcMSyY8xgEsIZ5ppKXU/4rytLdFuuaDf+awAOp8EBhF4/hYzaO08lJJygBDQJo4 + qd2/ojztbZGu+eCfgrWxh2rgSofYWDVYxBVCQQjpg6GYBY6cUf+K8rS3Rbrmg3/gVFknkAlEcQde + ISIAKQscsHWEEs8DVkz/K8rT3hbpug/+GTBkiGDeIeNMsBCCC8goQkNgoCwNwWOL/hXlaW/+Rqz3 + 4B+IkZKhoHnwhIlAPEZSGYWiGs6ZoJWB4OHfXZ722jl4UQTIkFVCGoEcttw5y7UhHHtLGBYaZBAa + O3DifZenESblPwBJvws6F4GSUqpn9TDf/Ohh/uURqKMhG95v7ezkyw93ze27vrk0fPvsLG/dDz8f + WTTcf2DNTcl+S33aXtr1Scz8oi9adG8bZ36JM1kyzvwSk8TMr/El9Uv6XePA5gmEAG5i8jZudBDf + K0waNQFxO/28LFObdtNqNO61kHVM5p460PZjs9Pxy89KquIRpL1+kcfmBk8YuFyQmrZx2Boxj27E + aDbGwWs8xqoxiVXjayRDI4NB7Orw3ZP/16rapnooi8O2wd+Yninek9naddonqDTvU6rAJNY/RNr9 + zmjKLJvf4qU+FCVEF8rMQatniohxI3Fzph97hjzy2JYZ+DRv5eFtKJvf4g8Rw6u91lT8vy7Mhqw9 + /QI2oeWThOGRZCuseAMTz1RgQmpZR8KwlrXTDMbltR+1a7PA2dO4zheaZvfujrZG1wd7y7hxSk+X + N4/66pauQGu5d8f2Vo4790e697l3+6COz2ZCs6dZXFUsb6xqs7O8cbzOsnRYyu09eb681noYCi2u + Nzfl1W0/3T276F2cvZ5me6UsCwQRTYxnQRPuLMaY22C1l0wx0D44Nb9ma2Lmka5Jsyk2KnDvITJr + yT0YJ1BQPtYBIYZYwFIIiuzc0mw580jXpNmgLALCrAduDUNgtScyEK0wosQSxk3AYIScV5ot+cwj + XZNmG6+kksxZA04KLQxS0klqlCJCMSEdUGWDgnml2XNwn65Js3nw1ATkOBHCCUyksZoaEs3XtKBC + Ui6CB+bmlWbTufhGrBVq5AKhVDMgAUsazdYQAq4UB+yN9Ypwh61RdBFpNhZKTwlnv3YSXhQbM2KA + aqa4CQ55Y4iWNHqOEowUxtGXGojGvC7OJkotZh3b6zTCTL5wg/4Xa4Qpnb+uwHd3kN9vbrazo+Ou + 327cH54WbUdGFzf7J2uHN81R2l45zA7hfijqdgVW5Ffo9+GzRDHZM0WZjBPF5ClRTMaJ4p/JOFOM + vDrkg6LqJFtZG7JBRNvhu8n77Bj1EzibdOEg4463vPE8IW7EhLgxHmfjaZyN8Tg/mV7/9Sh62ntc + HOLcLky4bw9G70lFbXqSvlMJNdc/Nk9LQ/fxVhzvU9OjzkzB0lhPmbZbWV5OfunEXzqjfl51oEzL + Vlq2YpTehpuZgg/c/FrcLLWjtrZnmk2n39jDOKK9caTBVOATvzQlsHps7IGVwqyOcHo5fV253KKg + ZrQIqPmXLu6FZszZNWqssSHojurhW7fZX93ZfyCiNN29/e01Mdj+vHm1equuxP7iK6Zlv9Vhd43d + 9bubsNPrr+3dHmSnG52TC9kTt1fyZPNY+suD0dH96lsU0woCt5w7zKzyGBkspLMejLdgZTCcS8Ds + dZ1CF1Yx/bZI12TMmsTHe4JIrYPlyhoC3mvqwQojLGDqOMWY/TsU02+LdF3GHGXpIn6vcedYUI5y + i5BHzDGOg/KWOs+ks/8KxfTbIl3XKk0Ep6yTWnPCCdeBWCU1g0ACJRiCNAph8H6qjPl39RnmU4Jx + r52BF7dorCmWQTHOrcGaOo8McEOcNcw74z0ngitL6sI4SRaTxcW4xMwspN1x69d6SE68rFT/NyM5 + NHdITuXb9ys3Iwgrm4dsJxSdvbzZrLqD47Xz45XmcXZzv3W7fY8O1k8uf4sgNcpJ/7OctpP9vIQk + /rKZl/CfZPPLkjrZKpPTeAYkTefyMdJJTvPkpBr4UXKQJSt50S+hnC/d6F8Bw9KkHHfcBzdOhUuz + cSrRsGm7EVOJ8S8xlWh8TSUaadmIZ37DPA27UeWNMg67kWcNNxn20v8E67qp/++tYfMYD+GhCGd7 + yzuty9MjuXq+a+lufnKzvtq+3KH44PNV2GMb/cuty5PN3co2Vldbx7u3l5vNtylSF3yQi0MeTZaZ + yhRlOw1V+Z7aN5TB9u6Cf5+KV0r+pn2Dg253quxR93BvjCfakOW91LU6aVnlxaiVh3GJt4E2mKzV + N11Tpab7JvoY9/Hh2/DKfg3UEE5qtxXOqs4/0Fc4+nIJKs2zvsJWUfHUrkFqwXCdvsLjo+u/TwZJ + F4BB/upF/jY/r+8s9CkhH/5cXxb6WP/2yrOf+XPFdfXjSZI8niTxgXasxmqOT5Lk6SRJXHqXdtOH + 7ze6mu0y+ulbcin+shS/G+OZtHSCkCYNJST7PwT/vwhRiRrif1oFVIMiOzve/e/xNv6gzT/I+h9k + PV5TadbuDOwn6JYRFxRxo3+Q9adz+w+y3k/TP8j6eMtxwwSPNyv+oOtlJx+abvcPuhrPz7ctlRdg + IIuzHH4Y9IrBe1oHY9FzTD6od7oOxpr+zMzMp0WsLp3qgrhbDMdqldSlZVW2OuYOWv24fCnBt0xr + aEbR/igOqsi78evzbWvibjH8eCL/6lUxUt7XXhVPZrGc+rIYKWZ4COqZj63WPD6Vd8pQpZEiso6P + 7U8P76MA7B9bEf/6VT5Fk9tXNGKgBH2soOd5BX345aRK4kmVPJ1UiUmGZhTdCx5PqvGiOs2zxyV0 + AhkU7fFq23WglzrTTaALk4tqHs0Nvn73frnAnrwF+mm6dIKo5FogHFeSRGL8S/YFv7qzxVml7kEP + qtS9K8/d/j3cv89FKtFa/2yR+nQO90x7qmYF+hqnS0WUT5ep7UIrDMo0z1omi09fy/HveWhNWoln + b1ylXuP0g9y+0nHXaONM3TVqZrLpc1uvkedcu2cuBRYIbmDCiRUMmQC6xgJ132Q/MnxZ+EUqXgTX + 3V+8whdaPFqc9G9bqTny9rZ7sZw17erGRtneu83o1cbGyf7gfuVw+fSc91Y/b81CPKqnWcyNDi+O + BpvNbnu4/4DuOj2+XJ7tyM/HO+nWQ/O+fbDzubuSb9jLZvvyDQYFUZnkjcCeOeV40ICsJVIJbYgk + iHHAIpjg5lU8qvnMI11TPKowZ0YxozRorCxowoILWGAquPMGK4OtwZ7OqXiU/Kyy9TdEuqZ4NGhj + AtOIeR2QcsEy5KjQHCQ24EFQYzH3lM2peJRLNfNI1xSPcoa1k8xjyTHW49JtYbmm4H0IwANm2Bns + +ZwaFCgx+/t0TYMCoqU1iBlsScCISecd0kowIjgSzCtrhCRBsDk1KNBy9vfpugYFYHUApKnCEtnA + DUikfAgSYReNdgnzzgUnyUIaFGAupqSJfu0kvFh5xGJ7ZgNFSkd7NEvBGsJBUR8wItKBiDYRpn6j + 3fk3KPgeskUYfSDbL8hWqblTN7fXFYe785V73THbx/vlac/JXXay0c1WOsfD/t5un18vuxU0hLqG + Ay9stV4nbz7+kvMlk5wvMZlPHnO+iIifcr4kv089/O+AIEytiZg5jKOd/N/k5PtzOMP+ut/FYUuP + /GeJSrIkOCNLArM39Nl9+8Y/BL0fgt5/lBFzRn6fha12vXwpmmjHS9dnphX5kek+AdcIjEJalFXL + Fnn2AC3TfiMadr38Q8DwIet9p7LehRAxTOFSX2hG3D9f26woNafpITneH6gLWHYbnR5+uLgXudje + qe5XMt7qVPd75SwYsZpm2ftqfnR3fLqpDvjeSUWJbV4dP8jrTmtvy901ynVahuXO6mm0k1SvZ8TB + M8Rk7ImitEdeGa208RCAOoqssQJ7pBWaW0YsyMwjXZMRG0oUB6SoZEpQ6jjnihEZGNIIBLMO6wAG + iXllxFNtX/W2SNdkxC54LbXDWAcisRo3mCcKc3CII+SMCJ4JYmBOGTFTs490TUYsQDjuFHaeKmmJ + 4ULQ6JeBpcIUMwrGaxG0n1NGLMnsI13XxFYrNukSRoX1gYJwiGCDqSLBa+xBcS69nG5Ltt/DLSUh + U8KWr52Bb4MsucXcSB0UshZzShQFDw7jwIkEZj11hlAV6mJLLci/wFaVcM4+KOcXyinE3FFOZJbL + Gy8OLtEa2PuD/sHWYE/kvXy0ll9dKXy4uddH2zvty6JwdSnnt/Yrr6OczUnqkqzuN5PH1CWZpC5j + E9WYuiTL49QlabbhrwVnSZola4Mi788R4Py+x+ljgtbwmWk8jrIxScgapg2fOlWvOy071TfsanHg + pzN9ZwbZoPuOwGd1d+/fZ+MurLn8MfWM/h7ju2+VltMt31Kqd72UZi4ecVqOL26b5600a2UmWgq3 + zF2exvOylWa2APDf61Nfh3/GHX1IY19pqGqckrI+/Ux7JlrFTB2AYqQBS+KeAVBjQT8BUObAhFoA + NB7gjx60LTwCZXIBGOhUrveFhqAXzu8M2/nlcUufWGyq3fy4f0TPaau8bp9coz5af6jEzUZ2PWCz + gKBTlQWd9+zV4e7BgNLtplvB25yurj+cXp5cw3p6zg8aq4pKe9mkbXr0egjKonQGDOLBSOKNwwgs + l6CYFUiaoJHlijgi5hWCcjzzSNeEoMIjJ0CBZ5JaQ63k2FKGOCfWUCMx8TwgHeZWKEvYzCNdVyjr + HI6OqohjjIInwXNtkAFBuMReWIQgMMr9vEJQpmYe6ZoQ1DlNEBiDAzBkBQLnhXCWo6BlsIZpLbCh + Xiygyyr/mdftPzYDL5stYsol0jhWN0mLFGcYmJaKOQ6CSBDU0mBkXTSn0AIKCrHmik4ftX0Xly0C + a0NsZi2MzI9Y26ZsNlu3WRex/Xxz/2Y7L9WD6fW4GJa7+the3Gwc7AzTs52jfVaTtelf8kvdGq+Q + k60yG2sFdZWcxnVypGj743Xy/5c0HxfKydeFcmL6fYj9jqo8sTAuWId7B/1xvXphqg4USdUx2fid + LC96SciL5DFv+zP5Ys4ZP2+SDIZJTHwbJjPdUbRozUMC930o0riaN90kGnimUH6ar3r3F7BiDN0a + eT/N0jx7TD4aaZk1qsY4+2ikWWOSfTxakgolmXxb/fs/tPMFqodPy+oCzB0UCr0j8kfufHXrerfv + sYkS1kSxH7I/44yP/hZV2oNyuuyPte1SkZbw5GvYS73vwuSsiEggvkZQ1Wk5yKpBMWoNTfk2+Mfa + 9gP+vQ7+ATNaiLrwD1yeTd+4iWhuwIsGJVZG7qca2ijSQEC8pBhhzFkN7rfm8rFD4vuzbhJ6IZjf + VK7zhYZ+693dq3BA0mZubx6611vVOblL9yuzUu2vfT5fWT3u7pPba+89n4nyUU5Tj3dnNjr37VTv + 7oV9Lm46Xc5a1cW9Ap/10s+Mt7e7+HJ9+2T3nr1B+UjAgvTSMQ2eUwiegkHe26gXcxw7QTUNr+5V + /NugH2Mzj3Td6nhjETIOKUYxBidoEJgyGRBiWCENjigQBOZW+YhnH+ma0G8cS+mxwxi051wSoFzH + fmHBay0Vx1xay9W8Qj+iZx7putXxWnOJALDXhGBjLLPYhWANxYE6KVSUQXps51T5KBideaRrKh+p + IQqCxUQHypAKJlAskHLUKIytwFoq5TAyi6h8RNPCq6+dgW+DbIUU3sZGbE5i5STXmDhCrRWUY2Ah + BARR2Vu7YBsxtoh8lXzrOfNvljIiQudOythv73eH19solccH3ev+jW4Sef+g9o58aGZOHR228E0x + 7FIW9uriVfpL9dppCU8++ZNkJBknI5GvxtdiMpI8JiPJ0JTJMO367iiJyVPMiMB/Sppf/iAPyXDc + FCkpIBLUcoxVY7vPZC1rd9Oyk/Qh73fhi2qy6phqvKPiRwdiQgVFcpEXXZ9cmCLZ2hofh0l6aWHa + kIyxMEtiJjn+cJX3E4r+iNt63Fc7r5KYdkPxZzLspN0JD7Z5VeW9RKA/xr6maTYAH3GvTyEZplUn + uUuLamC63VGS5VUnzdpzRHdfoKhxVtnIQyNi10n8GuP4RaoaX4sT2Xicp8bQlI3JRDa+TuTS6znv + bzmMxSG+n3eb3X7H7JkuvCPgK9umLzT37xL4SvFti9+/ij3LQfbJ5Z8GN1NjvbIT/NIQiqwDResu + z1q2MIMsxsanrhp7ePdM1nKm2wXfgm6evQn0xt18VLm/FvUaL4PTtXWeZfUPFLl7awShDp5pPLV2 + ZKLx9AQ7BlBH4xkPLst7HxXusyC9U7jKFxrzdtWaGZStjXQtXbHdlBKjz9c/53fdk3zgGmfyoX1w + 27jD7bUZaTuniXkz+yAuH656adnuH1C5s+6g17s0ZwejvLu9u3r+uT3AuurtVQdbr8e8wDQXKFBN + vfDcME8MDRoRIBJAasG9Fli/cF3/SXa7oJj3bZGure3EAoMD4gwEx50QGqwgmhAAySTVloAnmM0t + 5qUzj3RNzGs0WCeA2BAt9pAJWHAuMOYhUBOClmA8ASbmFvOKmUe6Jua1gBjhnnKNNQmxMpgjxrGU + 3gdivKFUBayUmlvMi2Ye6ZqYV1jLtPfSeAQSa4+JJUIErSj1QkjnsdFAiJlTE9TpWgm8+RuxprOv + JpR5o8BypLXQBJPgnbDKcPCgVbSJ4pYvogmqmhpSf+0cvJCFC0uD9AasNNZoCkYjpxFDygROwRCK + BBCm63ugzr9k+dfdBLAUlHwg+EcEjzTlc4fgpV9RGZdq58zf37cD2bo7OVndHm02+meDsLUsheXd + m8HZYf//b+/MmtrWtjz+fj6FOlXd95yqq7DnofqhizEQIAnzcOuWa4+2wJaMJNuYW/nuXVs2hASS + yD4O2IQ3sGVJe0lbe62f1lr/neaTIPiTUZQY9bM0WglRYnQXJQbKrdJoFCWOSLdZb2ejVGgbFS3V + bkd5r+0qHh/thoznJI18ILJZGuksuxx9w0E0rPKhVTP7r7lLUr6DbEulM60lSISAguKlsR3ijkrj + ECLHAVWkgTB3VF7EYXhLUycnz/Kgi4OodS8vb1z/BeFpPNSo+zLZNMDfl+gaZcrPNAuZy+xyqenS + oOJWSfUU3Uowu5HlTXWr9nebudhLe0XvEcX1WmxaZpevScgTdiCQBmtdl0zrZPZcWhkkrTIoJsLT + EZcWDIoxl4ZCQIJrcOmVZBH7rj76/QJi6VlM8YUG08f51vKKys6u197F8dZH8GlzO26XK+LD6c3h + Drgk7NicrN2gs+bps+QfQzRLireBzUYCwPHyIdk/2/s0OOu09NXZtt7oLRcrIPNq9d37fGdHL+Ni + cjKNKKBMQA0Y58pZa7hB2EHgPCYYcwG59ZrLee06gAh7dkvXJNMYecFMwNDWSWi4YFRZL5XGSBsG + kLVCcyHknJJpzOizW7ommbYYE8e1hR4wS5jH0gFnvPUMcyMY55JDAWcsz/U0ZIkJOiOyNOkVeJDl + LSQW3DALDXJIQ0KZd4YYQLHDRDvulLKG2bpkiS1kLTwH9FVc5wsoAnzuQFGxLaQ7O0saV+fL53DQ + fqc+dPPCHrbiD2fkfNm0D9vDy5UEvj+rLa7zkAJNQorejRy3SlJn7LhF9x232/zJseMWmVaedbIi + 67ji9iubpJlvq6ZrB88+Ohh2dJLZJE16naiTmDxTNk9UmZheZ74w0Zd491Y/vVgqCKRCxFUPSSAI + jIfT0aDp9r040CdJfZZ3qlukTJouf0H0h3rfvL7BL7MTJSXfKuLdA0C6W3R7unibpe0kde1E5yof + vh0kbTecKRViaXoR/tdJOmpgG8LDpFQmS9VN1nYNlZaJ76XNKoqcigeFQ7zyoFce9IMtF5AHLUJB + +t+c3AtNgsDWZmFV3NmjH7mKXeJ2D9r0VF8dUQSWsw2lrLLXRx1//CD5+xvn/heRIDLLHEXUa2zt + rYpiY/kw+UCRtSfFSZwMDsDJxeau/dg5POyvJf3N7a1TM0UpOgRQAWmddIACEXTbJfBEIY8Y0wI5 + xTklgs8rCRLk2S1dkwQhoQDF1FDsgOZMYu8NJtIa6r0AhFOAhHIAzikJIgg+u6VrkiAKAUTKSOus + ZTLc2Rxy56BUlAAKjKEKQiTMApIgLvCMSNCkV+BBZwWqqKWBG3tEmFDUMAwBg0ghIyHW0hIOBK0t + WEIlXUASRAnjryTolgQJNH8CJHAdX59vZ++914fv9/kxOsIbg+z91YlDSf+g/WntfG/YKlljvXv0 + NCRo9Z7LFtDOPZct+vOLz/ZXlOWRb/eya1cm6fgr67q5KwqVln+NCl1z17GuSPpJHrVUv6qMbUVF + KxukoR62+khFxTB1eTMJN0nkvHemjPQwStJWopOy6pTYclE3z2zP3KKoJA2bJVmviA6W9w+qpCWw + mh2P/kChwFa1o+4tcon+/J9m+b+RBP/9VxSPj5H0XXsYJZ2uSvKqrWN6t9c0ikOuUz8p82yOKnN/ + EpYv2SxZguAthBAu6W7rLaQEismx1UwOszgEq2w57dpFmpjLtoNSwheEsBgAnV5vKF5kDhMF7PsI + q1sMwxFnqiLNElIuqUbqBmEtzPKyUS0WRcvZhnWlStrh3kjSxKh2wydpdZtOR60SUr5SqwlVpC03 + 3NWlVh1nZ06tjBRWKsdiJkBFrWgssSExRNQ5HnRMQR0J6d2QJJqkL087BS8CtZrJHF9oeEUHHOAs + X95xTX3Kb2hjY+8Gb6ab/J13e6uDDZud7+8Mhsa9X3+W+tpZVhM1T4t3x+eIwq28XO4P1XL7DL/b + AFnj5hNd6VyR0/WDA7yz9o6snU3OrrBhVnIjHBNacwGo1QhZo4zSmDshofSWW6/mtr4WPrula7Ir + IDliGktJHfKKE+6tA5hIzxgADlKAgaBYi3mtrwXy2S1dk11p7xjhAAErEFOMAS+ggpBS5KmgyEBM + jMFkbtsoQvHslq5ZX+uthc4ByxSV1kKptbEaMqAM5thqCZn2zpG5ra9F/NktXbO+VmKusUCaCgO4 + 1xYSxECoq0VIBlTgqAwNWem81tcCNg8rYi1TA8ukBpJTpTGFgmEOGEAScEI0AIAGIabw5mER62sh + xbMqsJ30IjxsDGqYp1Qpwh1gWCFqpAZEBe8DeKkAZtR6I+rCb4TJIuZBUsB/Af1eVE0gwOX84W/S + yLJiZ6t5erS8k793xPgVUR7u9MHV8LCpNj+ZwcdeSTr7PbRet2IW/i357UqRZxT6RXehXzQO/aLb + 0C+6Df1Cg0fj8vQWU9+x5dQVFT43Kk2VTmyStaM/V1fW/rptf3nHh8NWKr1OXDl8G53cNZEcn8PY + 9ON2lqsra1FHhW6Y3uUBnSvvqpzNu+Pe2+9Id6ja8T+rXY5YXhG1kmarggYjjSLn7GjbcGmSLFXt + KHeFU7lpRaqTjUfmXUe1XdTNur129XZgzhSJ7hG/Svt7CdAlo20c3jYUcTfPOqHQdtwr8u4UQkPJ + sY1i3SvjTpa7+Hb0cVLEwTrOxqNXCb22ytvDuDJKPMg6Lo0ZYJJMlxs6T2e8OLz+UJlsxbXbxUaW + 2YNO+OsFEXvZ7F0Z1wEvM+sUs2+1K+8h+8tWOlNcT4c4XzL9oipGHKh2M3cuLRrhpWPQPgnnFuZO + o69MwK0NmxVuOlwfjvSK619x/Y82XcAsU/igR8A8EvvZTPOFJvb73fL98TUu808nPbGxdXmk4ZbJ + jmDzYp9vZQV1xO2sr/aQOhUL3xHzNNnXaxdY7QwGaXmWInS2snl8CNc+9c/7Zps2rujm2qZjZD1e + n5zYCw694JR6gigUnlFqEWeUYsykEMRRZkJVrPgtOmJOZ+maxF5ToD1zjlomJffUWUCNY1pKYzWy + FHEmiBbqt+iIOZ2l66qdK09cENmmHEmKieRaE+40sEo66KzSiAqo/G/REXM6S9ck9s5BaLBCoZ0u + wh47ijyCBGCEJDKYcIKMJRD9Fh0xp7N0TWIPDIQcCM+YlJ4oKxzg2nPhsKcSay+hNiGl+rfoiDn1 + iljL1IQ6gY3hCjMmqSfeIa4tN1Z4Y7lnhhMJqWKLSOzlzDpiTnoNHjgeknlrCHBEG4O8V4pBhTyG + VCOEAKHUM4awrt0RE9NFBPaYUfmarn7H6x/ohzw/rz/abhbwfG3jRsQ3GSqJ7marK42kmSx3bg7P + su2Vs6QRs4tls/I0HS5Xjw8q/n1yG/hFmyGp/KQK/KLdLHfR8Sjwi9ZC4BcdtlQa7WZFGR0ETaAi + GuW7P+QLz0ezxyCsErW/7RoQItxYpTa+i3DjEOHGowh3BIHHEW5cRbhx2VJp3MmKMq7Ej4rYjAc6 + RV/Lpz6jxaHRuy7Pmq5Svn5JjS/72Igra14ohaaYfJdCd75c0OKtUbOj0YOLyyWT9doBgvYTC+UI + USkzUoK7Jb0Vr1LpsFE11Z0ORw8uLl/1mSYF0gZy9SAK/i6Qdt1k5kBaSIoVI18BaSYDkJaYW0qM + lb4GkF7vJkE5bxFbH/w8hxwsApGezVRfaCR9udmKryHbvy665kq7beOWd2wD+f4J/YT0yWEnPTLn + l7B1cjVYeCTtrk57W52BPccXfX49MCtlitsdcU6KQd7dP+y9iy9Wtvsru8ZM0QoTWyIl0wZ4bbxV + zkmKPTGYQsKBxkwgZTlH5rdA0tNZuiaSVoYCqAUkhBIlvBLOOQagtAwJCpSATiGvKJpbJP38lq6J + pDnRgiOKjEaOA6WJpMZbJiGV2ElDDVAcGObmFknLZ7d0TSSNqdZCUKO049YAxyjDCBADNRKaOE48 + 5Ri4+UXS+NktXRdJI2c0l1JiE1qPYukRwogrj6mUSnICjWEWyLlF0s//9KiLpCHwBCoCsCCQExKW + RgewUAgKL63RSAqqmLYLmUQOf/Zw+WUX4YFKk+ZMOaYttAYDAjTSPlT3KGAlJI4AqazW0NRm0kyQ + 30ClCVNCXxn2HcP+tuBqDhj2cO39tckOTy8u1nhrd217o9GT0PnT82y4tz/otTV7/+HD2tlOb3nv + aRh2CBWj1Y/HW2sxlOOuKONYMfoSKwa9puEXraX/mx9g/Q0zW9LtrLnk0iWIxFI1uPh2cCNEfDu4 + +MvggibSMK4GF6tmNjmi/vXn8AqlX6H0L4TSBIinh9K9QfJUULo3SF6h9CuUfoXSzwSlZzPVfwyl + f6VbTeBrasg9t/rJU0Os86rXfjDPXr3YVy/2lzXmS4zT2VDKF+TForxH4M1L9WJD/8Sn1BWl+sKN + Pi+Toiwa2WWj21Zpo8wauWs7VbhGlrpGJ2m3g/pgmaXptDV++sK91vhNKCRhLRKktvea9mfuvXKO + qKVE3PNehfM4hsgIhYUEAvE63mvaT/IsDXfdi3NeF0FLYjbTfKETKo72xCc1zMSNOVZlpi8MAPbj + UJLt/RWndL+v8pjgZUPxGXmOhAo2y4qG3Y2PzdawsWrAzjVspKvrDbdH4MUakx/BhjykTX4qYYfS + jXMweUIFB5RQoKQUjoSXotA6Y5Q3DDFsJUQIUiEdAvOaUDFTnYPpLF0zoQJyJ0IbImKFYRRJzryX + GFJLrAahdZmRwEjA5jShAornv6frKkoQI7QH2hgAKeRYIakQwNobB4jQmGGGrTV4ThMq8Bw8PWom + VCijEfdKcmmlkgIjyJxSGlAFIDHSe4EURY7NaUIFJc9v6ZoJFYYLEmqEPZdGUY8EIARYAahkCFHK + IdcMuslSV36aUPE0L/kpZzN6xz/pFXhQ3WeNwohLKYBEHgsFmdNSCcs80IoaRzTi1NZuFAcBmvt3 + /I/ARQQAeoWLt3CR4fkTzD1Eqfu0srn6rtz6eCLErmB726Q4O/iwleOT7RbdV83hx6s1e3NV9509 + F3/nnf3BXTASfdyOQjASBE3GwUiUpS4aByPRKBgJTd6qyqhooEqXRz7POtFG77JXtJKOmn89XBs0 + a9lIsxYiRGM0Oz3cn+97caDlvmqmKo93Mqvz7LIhAKUvCF7q4rLDuki/VHj5oF3oPU1c57PcBbEY + lTZn26dMa387GRqBXrRc47afX6Orui6/p0HQGTZsPiXA1P4VYE7YpAwIa1FdgNltDYvEFDOHmEAQ + FUQYA8Rk41fwkopJIeann57eqxruLySYf3uSLzS+tLAr+k1aDo7Mmh2elLKxf2bKk8K+31v/sFts + bJ47vl1kq8dx9iyKuGCWugDvHN2w+/v9U3Sy5ry/PPKHYGtzA19tysuVfp+W7UKcyPV8/WgwOb80 + nlpHNVcaKKh8aKSOHLcEAueo15I7SRQF86oqgiB7dkvX5JccSoadIsIJZjFGnhqqDGacYkEEtZoZ + 591knbOekF/imXYZms7SNfklEBp5pbTDjHmDqebQI4cAUgQ6BRR0VFoP1Zzyy9l2zprO0jX5JaEQ + GIUN5cobgjyEmGrsGSZGa8idcZIRJGbLL59Ie3hm3ZwmvQIPqu4YIJIiSzXjVnhhDEdGMgIZltwy + CbSmSMjalTMcLGIzJyiFeIVqcwDV1PegWn589W6/e7V9IAC9WNnbReimwa82bj7AzcFaPznvs62z + 9a2D850WeRrt4eWRgxxl6VgCYaxCUDnI9+QYOsNoLf9ntJ4nl9GOS8ub8ItWNogGLgguRMq0wu0Y + +UDc8iCdkEZjwYNc9V17vnjbA7SwFLz5pdHJj7omVScfj04+9PgPQXHo8Z8VRRJC46lY3OyPu0DJ + hdmIAA2cLpLSvSBGBzHXzReqHwAx/H6RTGhOdkvlZ5tkCPObpRHcqbKPqrz5jlNFL3e2odKGKrNO + 0Uhdr8yztFFcJul0hA7mN6+E7pXQvbgUQ7YIgG4Gk3yhCd17gvHRNTk6Z9fgg1o+vwbM7De3S7y1 + Fa/w61Lvt8/J3vFAGbPwHZuOPq2ciuXjwf5RY1NcbWXX16e763gD7ne3Pn5gWVfuIr21I30vzSYH + dEgQDqU2mimglYDWWmVCVpalGCGNUWha4aX7LTo2TWfpmoDOaAeZtwR47IgFEjIoCeYMeuIBcYxx + C0LXrN9CRGA6S9cFdJCroNQgPSbCMmk9YVjZsPYarAWwBgaxVPRbiAhMZ+magA4woZnH2nqtpPUU + SWEUox4rYD0N+spQW2bmVvZ3pih0OkvXTDD0hjrlkIeSIKeh9dJYYaAA2DACmCLeIMOA+S1EBKZe + EespLCPvhSXa0SCMwQ2WFDvplCEecWOh8VYa5vUidmwSM8POk16DB/n2CALllfEEc+eVdkRw7ryB + hhjvCZDWUiwFrJ3MiRaTO2P0Win+hTt/e3vOQTJnvL58sYo38XZ51F53q/5ded651hfbaX561T4+ + jXvXHdw4zF376PJJGjB9ugv7RmXrt2FfFFBymXX+UUT/GAd+UQj8/lHJ5VaiuElelFGZdNycpXB+ + w8LumvYjxJlkOP4S6Y4KyW+HHKs0riLdeDzgOAw49lleqdBW443DeJemzP98+hP7O1D6j3vLxZuA + 2KyqMNuXxeGN8mX1DIAMcswZlve6v71RzWajSG6qZ8/9ifhGdZNG3+VFUj243uC394ntONlw/ESj + SMqvduqKxlXPVU00vkHlj3882mWWtb+7qr3xSXs0ih9ggh/u4W6rTq+66P/66UL+c19nND9c3il+ + etjvPlr/Vftn44Vi9CCu/at/19ry80+3+vzPWRksV2nTTWawr1H7fyYzWbP86uav/ePPv73l2uVX + M/zpLffDLf79Ey+xaIV+JNWC9cdkR/jOFaseHY00Kx/f5+cfOoiPPWRHX4x8l0eeiF9fuzfWFebr + ef/5sZeTb9y1MxXfbITVZlRzXjiTpTY8pjB4y+696H9TvRsJu8+LhnXtUt13FN60k87IAYQAfLUA + 3Ftq3gTP8/531W36EK4+MsIf39C1b95aU/zzZBfsF55tnWn107P945FpENh2r10Gd67s5SPS//Wq + XrSCu/dwXfYqaT/q/RWXSbf7+Dc9Y1xR+F5Yc8ljzmX4/NE79FGH49aHr27zbz6/CwTu2/j+Nt9d + UB8umPftFSaIbWS9R143jv3jsUVDsELlaDSf//j8/4zuaS4zowcA + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9c043fdf54c1-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:57:24 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:32:53 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=eUpLMRigvrcZ5Y1IviC90B%2BUYctp4hMzU9izjyhDqYpNfJnZ16Vkdc3j31gt4vUpINtoUzIImBYPCO97hkWwbjn%2BJ6BznoyETX%2BN01xaCHur83krSZNfIZvKYAqLPQTZl8OF"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=1000&before=1623683595&size=100&sort=desc&metadata=true&after=1620529995 + response: + body: + string: !!binary | + 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 + e995HfToUz9aNMQ9UuL/GJn+3/8/EzSAZIMGCAA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9c0a7a9c549d-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:57:25 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:32:55 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=lgTu%2B6LtIUbyTL7pWc1qShLI2nAC3LoLNpcoaNGr5NYmkrWk4HcseUTdM%2BMDXGS3ke1PcbydIYsdeoapXeb8QN20jX7LtUjpqYayE7kQFtfLR59ZYYAe93YSzbUuN0%2FtOaSk"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=1000&before=1617376395&size=100&sort=desc&metadata=true&after=1614222795 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9bfdeab94003-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:57:26 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:32:54 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=DNExd09%2FDDxOQ9Y%2FBEXTemFE7cz20j1z5xKiwxfJnJ6PcJ8OyOCsi3rq5RmDFG91SsSx3iVybQFvp%2FBuZRg9LhctBxQpz7FL8%2FR7D0vEuB4fVNQ7HCWe%2F9VMS3c%2Fzs58%2FfHc"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=1000&before=1626837195&size=100&sort=desc&metadata=true&after=1623683595 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9c10aa6753f5-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:57:27 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:32:54 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=KT%2FbDJISLSPi1noLqTcxAmf%2FvNaAKVsqWzO3kSWLEZQal8iTf%2FYQeua%2Ba24T6vs1%2FxLKGS2eFypoBh%2Fvk6zGtZcQoLat7%2Bd%2FvVmlhbSp82O4VyJHRjCxIN1NvZAMxmxl%2BZTo"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=1000&before=1629990795&size=100&sort=desc&metadata=true&after=1626837195 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 68aa9c16ed8153e3-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:57:27 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:57:27 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=VsKuCmt4JGnhhggrwHyIR3jFMZYHdnWUDxhF7zv7GW2M98nm6kpNkilCp1pDYBs5u2l5w%2Boz6wNFp7k8WgU%2B4me2x0ERXozZQpnIbmvFh02k%2BJOWRwbLSmZERWt9bxNFZ%2Bx8"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?subreddit=science&limit=1000&before=1601608395&size=100&sort=desc&metadata=true&after=1598454795 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aaa497c8a23fd3-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:03:15 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:57:16 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=pPeBJBOlAzwEmLURiRjBexWOpUFGtjxasLIr%2FO8Dts0lZHg9jOM9bm2D5o8j16NNo298O2yDe8tQqXcAGm%2F54p6LrP5XrQi1IaNDAVAudwL5IZFPCNHHwOm4M2VHJa6NaBUm"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +version: 1 diff --git a/cassettes/test_submission_search_query b/cassettes/test_submission_search_query new file mode 100644 index 0000000..b24739e --- /dev/null +++ b/cassettes/test_submission_search_query @@ -0,0 +1,4122 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?q=quantum&subreddit=science&limit=100&before=1629990795&size=100&sort=desc&metadata=true + response: + body: + string: !!binary | + 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 + +85ruodU9yGm9djfh/mV//7Hv/8/WMnmVN+cBwA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9b46599e53e3-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:56:53 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:55:05 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=a7ib6QZEn4WwLjLraQWl9HErmmsaOtQuES61jQLfYTguZqgYBddCfpLaOHJI2G%2BBQQ%2BYn32JXVz3C15SBHvoNON9wtKCFxLbvY8BKQdCzUP%2FO1aTErlp55E0CaMBd%2BSGPnXZ"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?q=quantum&subreddit=science&limit=100&before=1601608395&size=100&sort=desc&metadata=true&after=1598454795 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9b49193ecab0-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:56:54 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:55:05 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=chuwC9p0bl4kjja1BYvv02l%2BVKDiLEPa675jQPgtkWD6RqdBFH2PTcNhI13W7pdzuXFn9LH41xRW7xUxHhLq8PSRNcYVcx0Qee7wXgU4i9vVqUsYhoZ%2FWOal89lYWY4%2FP3Lv"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?q=quantum&subreddit=science&limit=100&before=1611069195&size=100&sort=desc&metadata=true&after=1607915595 + response: + body: + string: !!binary | + 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 + Cc9YoIkcN1K53/0HhGAmrYwUAwA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9b659d785407-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:56:58 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:55:10 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=sMkFb2dfq7S9PZTh97nBv%2BrHLges3WkmsujgOlwH4HAF7ytED6Ga1UfYwIxAqwT1Yrqc3MunGF0LlNy0FESqSBPR4sRFMWpUWa%2FTSZ9fNHKj5xTgiHkaVOnpVulHNiNc3ST6"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?q=quantum&subreddit=science&limit=100&before=1614222795&size=100&sort=desc&metadata=true&after=1611069195 + response: + body: + string: !!binary | + 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 + 20W0HsYBAA== + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9b6be962541f-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:56:59 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:55:11 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=TUMyFhl0jtyU0YPH9GUFoBuZei%2BJ3aSPcZ5ZQqgCyi%2BURP%2B42Coj4DUPs2UkhZI03KJI8iT%2B8J39U%2B69iOvjvBqnPVesSWS9%2Fr%2FhMQpN6%2Bg01i3ZrB5m0Ej8hHLEM5SRu%2BCn"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?q=quantum&subreddit=science&limit=100&before=1617376395&size=100&sort=desc&metadata=true&after=1614222795 + response: + body: + string: !!binary | + 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 + oKFAazn+o5H73/8/Tz1ymp+PAQA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9b722b8ccab0-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:57:00 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:55:12 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=05vQj0b9yfbpixTW1Y6UechRNBRl8miudWxEYwQLQZJ5vZlcgSKM19Rr2Zn3DXf2OwlHmYEaBa5LIGkzJdmlYw8%2FE0D1ec6ZxvhKhGgyvbpvdgm8Uh3tiC1SfAmSx8ZbNbox"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?q=quantum&subreddit=science&limit=100&before=1620529995&size=100&sort=desc&metadata=true&after=1617376395 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+29aXPbSLKo/X1+BV7fiPd+GNOqfZkbHRNabO2yVms551xErSQkEKCwiKIm+r/f + KFCS1ZbkpmTaJGV2R8+IYBFVyNoyH2Rl/ucfURRF76yq1Lt/Rf/VfAr//Of+r+Z7laax6qvCJlm7 + DAX/5/2jAnk/TpMrF5u823VZFYp5lZbu25J11cmLd/+K3m27rqsSA989WSL2qUqK2JRlbFJVhttl + dZp+r2yRmE7lrqsnG/iw4G2hv7tfNei50NCm+DMF6zTNVHdYDMWsd+2unynaU1Xh8mx47+8KJ+4V + rpvU3ecKhY5wxZP9YFQWd3Mb9/KyeubnJs8qV1ahmHuuSOFU5WxcV+bdvyLIEKAQAs6/KWbzrkqy + 8OjneV1kKi0/qF75IS/a34ogiClOk+wiFO5UVa/818JCv9//UDhrk+qDybsLxUJpEpcZt3A3ghYy + fpOYy4U6rQrlVVnFhSvzTGVVnGSVK1SVdxMTm7xO865OTGydUYOFbytvJ+nduP3Pn998l9jQomE9 + 3/4uKWNT5GUZZKl0GoRVFbV7XKrrmtnzlCSTMs6LpJ1kKo0bwWfV8yWHwoi7ziYqvhfuc4VznQc5 + WHf93caVLvXP3+UqsS5/5uvQX7czQStz0S7yOrOxydPh9P1fTEll1Lvnf/Vw7r7LVJZ/p+z35u6D + YpXr9lJVuXjYcVYCS6k0LSYAbUHoaEs7BFsQUaQZAco7+e57d2sqfLejsvx28P1N6a+PnybtTvW9 + 0t9ZPNLcXDj7jNiH3Z9n6eCZAlke+zyst0/3eVZ3H67B5Kmv74Z1KAC+KZBfuSKG4pnKe6pwWRX3 + O0nl0qSs4rJSVd30cLNJ2PLbh+25oqvu5v7Pm+W9JMuelWl41riTNJOv6aRHvy7cVeKCRP+68zVf + uizMsGfuPZxJXdV25V920If//OfJqw8WoPYXyGS3d366lG997q1ub+bxtlrc2TiFe+nq5R7CqGNP + dxe/iI/k3fvnbxYEl9ZVkmfPt+Xv23R/u45rxvi/IgjE+78vXhfpw+XdXVcubAqtW9k2a/2HpFo4 + WbOiONpxe2ax3bMH8HqrvmovX50sftyC7V23UuyUN0cXa7tXS0cfznvtf/cTW3X+gED8/6rb+z+m + yHt/lF1VVM1HVVf5H32ne82n8g9DHAPMME8xAUYiYQiC0BtBlDOQAE6EZVD7dyM8UFPx8PG/W/jP + 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 + 0q1AGzn+Yyj3P/8f/eXtirX8AQA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9b786fbe53dd-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:57:01 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:55:13 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=32aeIfBDGFb2YuOV9VjoIP3aCbduh9XA1g%2BA1fq8geAoP%2FHMSNVaEK2E6HZMxxTAqSGfQ19bUiCX8bW0kEBbvZfIIDLrYp%2BagB7rQmJ7fRXHw5xSHrScNgv8RLUf1qD9UeWy"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?q=quantum&subreddit=science&limit=100&before=1623683595&size=100&sort=desc&metadata=true&after=1620529995 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9b7eaccf5467-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:57:02 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:55:14 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ArW%2BPdOsSvCGl%2BBQZ%2FkIbpGhIlwW%2FsbzROTqGQePYO%2BQ04DYuAFrrf6djYdfWm1W2jhy9pLzkroEVjqWHd0bVV8iubgvClM8AVyz8Zz%2ByP1qOpeCbGWDfTKe%2FpQSrI6OKkOC"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?q=quantum&subreddit=science&limit=100&before=1626837195&size=100&sort=desc&metadata=true&after=1623683595 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9b84ec6453dd-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:57:03 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:55:15 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=IJoqgx7L8NXgJNJ%2B5rG9irf5352jFeUt66FApH06yTVqyjrpMDdgVU4BnyB%2BmR7C4h7JqCJGe1nTFB2mMuZV8BoQi95YDdhIZDXM8lZ9Tyl1IztDkrYBasdic%2Fecovbhfscc"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?q=quantum&subreddit=science&limit=100&before=1629990795&size=100&sort=desc&metadata=true&after=1626837195 + response: + body: + string: !!binary | + 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 + HP8xlvt//n+RXjhdWjsCAA== + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aa9b8b585753e9-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 20:57:04 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 20:55:16 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=6oRTWjY1HRcx8UPe%2Bwu0ExrTQ5AAq%2B6VBlD4CMW%2FDzfr%2F1ZWTmiyWartlBv0XHliO6pPveYU2ZGwuN7VjitAR4OdrWHjYLI%2BHXM%2B%2B0RIOZgVP%2BQDTUBNV4bMpU4SDfOPBG49"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?q=quantum&subreddit=science&limit=100&before=1604761995&size=100&sort=desc&metadata=true&after=1601608395 + response: + body: + string: !!binary | + H4sIAAAAAAAAA+29aXPbyNKm/b1/BUITMfOlYdW+nDdOPKHdsiXZ2peZZxC1kpBAgAJAUtSZ/u9v + FEjJai1uSmZbpJt94nS0yCKWLFQh86qsO//zWxRF0ZJVtVr6V/S/m7/CP/+5/6/me5VliRqo0qZ5 + qwoN//v3Jw2KQZKlfZeYotNxeR2aeZVV7nHLXt0uyqV/RUu7aVWfOtV3pQBLz7ZKfKbSMjFVlZhM + VeGQeS/Lvte2TE27djf1sxf5sOG40V8drx52XbjYpvkLDXtZlqvOqBlKUN/W16Zz/ULrrqpLV+Sj + w3/XRkm3dJ2013mpUegPVz7bHUblSaewSbeo6hd+boq8dlUdmrmXmpRO1c4mvdos/SuCDBAIGWbw + UTNbdFSah7uvTOpy41TmyvqDKTqPTRAslWRpfhUat+u6W/1reXkwGHwonbVp85Plcnl8lOW7B2n5 + MtNVUS+neZK7QdJJM1fVRe6SbntYpSat6iqp6qJ0icptUpcqr7pFWS8/Pnsrze6e3//88ei71IZL + Gp3o8e/SKjFlUVXBmEpnwVp12XNPW3VcM4qeM2VaJUWZttJcZUlj+bx+ueXIGknH2VQl99Z9qXGh + izpJc+tuvntxlcv8y0fpp9YVL3wdOmw8GrQyV62y6OU2MUU2Gsb/wwJhLVp6+VcPx+/SqNOq7zT/ + 3hB+0Kx2nW6mapeM+g4Ioqj3ImYCsBhCR2MpqYghMkJhIYFAfOl7R2tOuPT1Ly8vtPx291naatff + a/2d+SMrzJWzL1h91PtFng1faJAXiS/CtPt8l+e9zsOpGD739d1THRqARw2KvisTKF44eVeVLq+T + QTutXZZWdVLVqu41Hdy8K+wTC3Zd2VF3Y/9vHOXdNM9fNGq42aSdNoOv6aUnvy5dP3XBpH9+AzZf + ujyMsBeOPRpJHdVy1Z/epA//+c+znz6YgFZEunb1pfq4dfapBy8BvTXx+e3NyW33THXVUc5PjvT6 + 2dXHld1zs/T7ywcrXVVkvTot8pev5a+v6f5wbdc85P+KCP79r1v3yuzh9O5ualfmKovHpm3m+g9p + vVyS/tch5ll7+2jnQAz4xZV0qtzoVYPj833zcWvv8mhtbdOd4WTw4bLb+q9Bauv2vyEQ/1N1uv+f + KYvuv6uOKuvmT9Wri38PnO42f1X/ptxJDYUS0hrMFJIGcAeJIkBATRlxzELmpV6a4IaaE4chBMR3 + G//x+9QMLfi7GxpBNpGhKVJQIMaZwshoKoG3SFgEkCeAOIEFw0Qp/xpDI8h+lqEhku9uaYzAJJZW + mGjDNdYaKuwd0IxzppABUEGAMTYOcWc8fY2lMQI/y9KIvr+lGZnI0poy4Q2mjjOMkBMMCwIQFIpZ + TaBRkDtEoAevsTQjP83SWLy/pSWbyNKYQUQwlx5Kzrm1GBtEvWDIKoooU1hCC7xTr7G0ZH9h6Re/ + /e/vvFKrolca96xf8MK7EtLvX/Tf1gOPjcyA85gQb5jQyhlEhHLQESsVtxhRQpGQWEn7F0Z+8B5E + 5Lc3PMdLfVWmauSO/uf5Xnj66X//9p2jL3UHWTgae/Rx6eoydX1nkyJ/ELnyx05wZYrSPeMch1jp + LiBYevJdbpPSdbO0cfSe8byrbpFm7qXYvqpTc5W+6KFWPT0K/x7E00svtRmHPjVNOkVv8HKzqqcr + U6Z6RAsQJZBSgF5sfhezdHs6S83Tw7ZargpcoCrK5jJNkfvUPneldbvX0blK//Sg6w/Nx9U46m8C + nSb0pxctvXp99NWsDPt9eXN41o73a94/c3jvZu9s7evR9fFFvW6Hvc0iPOgvniy5H4SUvdjm/mkm + jyOfOq2bOHppO4/23CDavQtFfo++3sci0WGIRaKV3EZHd7FItBNOGx1Xad6K9nsqr3udaNd1inL4 + 4cnFFrUaM7UQ8BuX9ptn4snFBAYTAqSkVs+jt163X9QuKVWdhggefnh8iEfzTOAtj0HN8rcgK26r + voubSMvGKrfxfajlbNxEu3Ev3GB8PbrBuNPc4NLTkyYhhCxTa12e6GFiXcOifvJ1vCJCHc8lvz0z + 2Sxw6AKHPotDKWTiHXBo2quWWy53pcqyYTIeAUnHmbbKU1Mlqtu8n5K6SOq2S+o0H74Nh6a9aoFD + Fzj0l8OhaB5w6DRG+VzjUG9PDvdr4zm4JBfiUO9cOLa5eTZc/bT9ZWvtdDc+/JQegK+F3jqfexy6 + sr9yscn9/nm9c3kpV8zJJwSHun/JEta9McOrra4/XVv/qDf2Vl6PQ6VjxEjmBXLcEuqhEJw5ZYz2 + wEhtPWNcUcz/CTj0bYaeEIcaLgMDVRpaJS2ThhDsHMYAK4usRJIhTZlR/wgc+jZLT4hDmSSGUwsR + 0JBYaB00WFIjgEeMAOSoNphTb/8ROPRtlp4QhxKMKYCAIQWAJ9BTyDU0TGrHuWpWUaSWSIh/BA59 + m6UnxKFaOq6BBdgAyQ3hmIVVFOY8pxQxxAgBYfqw/2gc+toeeGxkzqAXDgvvFAJAQYUgR0B6SAlT + 1lAjDRAC0F8ch1LI5QKH3uFQAtnM4dDbZC1Lh/2dTp182ulfX506wPnhhdjPiqs1fnvduj0+T9bP + 84/Vxk/BoVt3ocjv0TgWie5jkWgci0R1EdVtF4VYJBoUZWajwkeqLjpVpHIbdVVZpyZz1YfoqO2i + y145jNIqquo0y6KiV0dFHg3aqo7SOuo4lVeRL8ooU2XLxZVRmYsKfelMXX2IDsPTUDcstlsW3aJy + kcojd9N1ZRpCqKgOx+moYdT4/30X1e20igJKyofRdc9VISKIity45tLCiVSW/R7pYaTyauDKgHEH + bVe3XRkdmnb5f3oAeBagiSv/VxUZVUem6GU2cjdpVUdpHpVOZVGWejfrvLe57rgy7bJwoxuKq9io + Om5uJU7zONxKHG5lSmT3B844Pwz3sFa5L0q7kbfS3DVP0HdR7nMAaWL2u+TyVlQPiqVpAuD7WwhP + fFFkYfhOejd/RkFWlVdL02XJUA2KAvZ+RZaMBWYM8BdZsvvWBx+qcRd9cLY3LaZ8qRnIR5/Xo1y7 + 8PSHVLuqdq5MGrCXDNK6nYTpNFf5mxJsm9MsiPLriLIS4X+TEmX3dJT+ME1mTHJnFAo0mY5osoCC + xhBZIjxhXHI9AU3+zkQy90SZzT5RnsYYn2uefB0X+hZ39PqxMHsHdbpyQQ+HFzeHZ8Oid3DkC3ye + XKefzvLVnav34MmP3fMfCpNb4shfnN+cM5sk7mpwkiRs1V6v7m2hHX/wGR7X5Ga9Zw/zrcS8nicz + A5CW3kjHrATQY4uF5pAJToSAiiAtEJeMzChPhhC/u6UnBMoKE4k8c5AKKwUHAmIoBEZOcKMZZxIw + 7tzrLP0zgfLj5fF3sPSEQBl5R6kxUkksDDWIO4icRYhQqCHVSBihIQBsRoEyxu8/e0wIlJHgVmMt + IKPeGmkwFABCTLw3CFllEUJECaxnFChTQN7d0hMCZYuY5gTwMIsAaQVy1EpoQ44tJ1hRzTxHzE4X + KE/R0ozPwhtxIlMbRYglmkvpHBfSIEGoZBhrj5RE2knHGTDMvfKVOBPwnmEwJXj/2j54bGWhuVDG + O4QtwJw5LRwVCEjgOHUOMsKVEZyjieE9AmDe4H2DCqBYwPsG3mOJEJGzB+/dbnZCz9snx+DyfPPL + zebHjfjo6ONO2iWpgn25q1vn2RU8vLxZmRDec/wj8P4BLQ9RX0O8m6gvaqK+KER90V3UF+UqL1SA + KLmqov8XHbjKqdK0XVlFIS038qpqp0XubNTL6lLV7TSPqjRLTZH/+bcNg69L1W1OWDqbls7Uo3P+ + PkLuYeHAqCaaCgj9bmnBFJ1ur07z1u/Rzvb6ykFzANd3ebO+YF3tzIjf+6iflr3KVTPE3F+idcsd + 1VK3ae6Wx+sgy3ffxt/C8jh0UJPy3HTQONn5rm/ih/b9r17dSUbT+b9HT2AzT4ZPw6PY6/y7Kkyq + svtPjep0VdrKx63jwCmrb9+OwNm/H54CAsQRQOD1ywD/ACMssssX2eV/34oAwBCTF1cEmolS3Y2l + D0XZmtpaAEiHbvku37Tu5bnLqqRqF4Mk/P9+DTcJd65Lp65C/umblgPCmRbLAYsE819Pb0PMwXrA + dMb595cEJo9qAIaELqKaUVQjhBA/fYemdV71sifj5j6IuNvTeDR6VKLDdjGIPhaD6OvdoxKtqTxa + DY9K46Yfdp1rMoCanZEfogNnQmbOtySdKgqP2yhMuH/ewmchrUa7KEyxIaeoVYSYo3ZlaJrfxSzt + UTQwfJKPFLKUov/TQwCa0WPd/LeN6nZZ9FrtaKCybJbihfBSfvo+vxua8ege4mCqKr43U2xUHjfD + Mq7bLq6CrePCj13l4K5CgMDy2/J3ftbVzJEH7TquTg38hbxn1r1xN9N0nZ+Za9/Dc+aUE4pf9Jxz + VfdKN80dmel1ftNvqGdunU3aquwUeWqSjup207wVXNA8ZC02+7TcdW+EO97iMTdnWnjMC4/51/OY + 50CibkrjfK6TaKTuKyr2r7YuZGtz51Jmn9jB6Scm2hcrPde7PFSdYfvz0U4J+tV7JNHIaaZ2dNZO + Dz99XP2a337c83jrIkYXp73BagUuN6FrK3nSXbuwG0dHwr5Bo85r4wH3VlKEMNUEWGgwEp5iyhB3 + VgDspEZsVpNoBHt3S0+YROOEwpQqwySninmBPbFCSI04xEo7prQwgnA4o0k0iNN3t/SESTQaaiac + U9Yo672g1nLJFCAWUKsIpZYJZCkkM5pEQyl8d0tPLFJHOPcQGu0E9BAKqBVijjLAkCYYWeaVoma6 + STQ/J92AymmlG7y2B57o00mNrEAcUW8Z4VhaxwVhmiuMNYDcOooB4G7SdAMm6NxlG3DKKVgop91x + OSIoea9sA/VStoH7soKSz+srGzuar9ivJrm8KdHu1ala4V++bPZjNshLbPqb6FhMmG0AEfiRdION + sYsc3bnI0dhFju5c5IYP3rvIYeW/CcACu/s9Cq56Gvo7/OGzXmq/7Tkch2dNPsBYHSUqXabqtJ/W + w+j/3W0M9KmJDlwQDKtmC/R9ww93C+DVckUglSIGCMScIghj+jZs97Zjzw+E05my7qaL4K+0iA1h + 3Yc3v+ISNqHie5vaqvuRqjquTI3KpwnlWp2atr8tb6Udl9SD8JAX3ruySlQyUMMgnjS67rfQuOYU + Cxq3oHG/Ho0Ds0/jfnSAzzWGS3qt1f2t/dv+0X59QNbQ9tVumiafcOJg2TvmvX7Zizd3kLyqt98D + w001c7++TdwWSouteuPQwPW1ek/x9Y3qdm+wuf4V3UDwdTf+enwgOLh6PYaDmAtFpJZEcMMcxMZa + TKBwCFqJIREWegZeJ9n1MzEcpu9u6UlrRUCrlZYCcyyBl5oTCjz0WklBtQNhMxuh0MhZxXAAvLul + J8RwlniGLNZYAyWxtlpgz4Rj2gptkKdEYU40EzOK4QiA727pCTGcBcIBKiwjBClKCCCIaRGkuxyz + OiQ1aU88oXOI4YhkU8Jwr+2BJ5Jd2FPNANaKQ06sEsoJqBQFyjliNEYYIWgUmRTDcTl/m35CKLXY + 9HOH4SiXT3MF333TD2e326sn4pPYBSenYmtweLqqd4e7n7NudbC3Zzdy9+kr2Mo/H8HzCTHcY+XT + 11G4+3y9tOOio+AaR18a1zhS0akahsS6tcY1fk7eai2EG1H8EKetjKP0GRS3ekIR7jeX3KetpR0X + N/FBPIoPYhUP1DCui3gUH/xJnKqKTbj/5R9Qv/pZl7TYhPILbkKZjUw6JICU8OWCr708jcN/336w + blrYzgAKew8KgSRhx2FS9YxxVRUOOkwelAIZida8hd0151mwuwW7++XYHZmDTLqpjPLp7DxpJjm0 + WOEeu9YAYTpzO08eFN5qNqA/fFCiBw/KeGfIqGxUWFRWD/aGhPpQUXjUIxXZNGw6Ni5sToEfUNRJ + syztuNqVI2naYdSr7ra3x6bIbFT2dBp2E8eC3wnaBj86nEq1XDTaatxsaQ8r26PrUI0grjLt8MRF + KmqnrXaUub5rdDXvfuq8T5veHDaL2irKirzVyMgGB3HGtqk8fOUvd0tXVW5ZXdU9l2XLECEpko29 + reTj0e7Oh267+zb3+cfOsfCHF/7w3+UPc0Ex/E7Frzztdl09npunuZitq35PLpffhDhGL0zf+Gdh + +1ySFnkaCuIlpbJpk1XzFq+4Oc/CK154xXPmFT/7/aMl7dn3iqcyyud6Wfviim+sndqVbu+jOqta + 8ojz8tR8jm/Ob/326jaosqHTh+lVcvMuy9ocTXFh6qw4W9mLK7WGkt7HHJm0XW+fbGxdZKB1azJ2 + erp9fbn/UWdd9oaSX5BZL5hRADIrMfVQe2w5xJhirKwhJFQ1Z3pmd5cQ8u6WnnhZ23ggHHHKSU8A + J4wA7SBTFimukQKeeUocmtVl7amK4b7N0hMuawtgBXGcWyg80RJ66yTlhFtpCJCcemGF5q8TDv2Z + y9qIvbulJ1zWllox5CVU2hoksSKOU2gM0VIhSJRGXluiX6dm+RMlWhkB727pCSValRJac6ENRBwh + QDlz1gMjENCYC0eoJ4oay2dUopWj97f0pBKtQQuXUCE1VJIqzTBxVjIJtUYUGOYxpIo7LOdRohUC + MK1NU6/thCebphhVlCAqFHYWWUgdpIyEzZcMQOQQkFQyayYvsEbnT6O1AQV4oWZ0x5QBeCJf+v7p + GjCXXZ1frx7XneuTaus27SO3MgArB+braS5ujtHex0H3FKWdw2rCdA35QxqtT2VWQ9w3Eke6i/ui + +7gvytJOOt5HZYq2K4NBokCMG7bc67rSFLntmSCiGl33dFpXvzeAuTl2g8XTOu27bBhKrVW9QMyb + EmnO+yDSeoeyfVpWdXPghoynZdCJ7WV1FQ1UmY8uz/fCvqNH4q3hPgahsFseVKCqouOiqzRv9KC+ + 3UXVTl1DpQKtLwLQC8g8EJ9apXnUdaUvyk5A9bNWU+0J61s2RdVJTVyqYdVIl951Wnx/u/G4DFpR + 5LF2sYq7ZaEz14l9UcZ3aSH30rdvTD75+Rc2P8i9o1p5rwKQ8V8IuA99x3Z/RdrOEQPoRdp+WfSC + A1N9UN1qmvqnuugO3PKjGTS522dSOl+mLVequihHqojhW5XbN+H2cKoFbl/g9l8uCQXNAW2f0jif + a+Cu05Ob2501cLmOeze9S5wUeufQ3HRIfn77EfWLo4vd1fYmoZ9L8i410aZZvF2Ck1M6PHJkpe58 + 2lXw8qI47uCvOTtotQ8H9aePpzsH2Up+yrfJ64G7loAwBwwDmBJuBdWaQSokZhRwgSlxjAv2ZOP6 + 90PfvwLuPwkuQDgltvDaHnhaDk2G7WIMaGc4IggbRBVHnjCpLXZQAYYh+8siXd84+zyiBY4YxAu0 + 0KAFJAUjs1e7na9Rv+pydRq3dhJW6tbHLSgRba/IxIqjeOdg+MmvfPkS791cTVr+5Yd2ghw+wgF3 + O0MOHrzk/jUSbg5fB0pw4C6LNA9/rRVF15XRV5U2AX3djnZVKw9iuNFmCN6jtWEQGpmd8PxxYLDc + LUf16e2y0lVdKlMvQ/ABQoCXg/914Poro+8/QPgBUAIweX3s/XecdSGPvJBHnnpYTSmB35FH/rvC + akV0q1rOCqOyeyc76De1hiFCtWnjPCbpm9LWmmMv4uhFHP3LxdF89uPoNw/suQ6cu/ub5bY+2PnC + t0/94fkaqLOra7HWrT538uMDu/v11l+d66456m28iwDLNCUUxOVKP94lxwwXx2dKn20eH7DNbM3T + L0y3PsUDuiGLbb9/k8XiDcXEEcaYQEylMhYhoAiDFCpsqWVQeGwJ8ABhPquZagi9u6UnzFSTBDTB + s2fSOMeod4pKaaBVxEGMPAtqNxTqWS0mLsC7W3pSHWTkBHEQEa2dJS5oV3BuBLVBCtkBoRSkHE25 + mPjPgUEITUsW5LU98CQdkEMRtLyBNVg7DZmzjkGMnYBUGu2NlxQxACaFQWQOYVDw5dkCBo1hEJeS + 8pmDQd0+XL3aK6C6areuP25vnV1v6M92/yAntsg+Xh1ddgbbbcgOTm8Hk8Ig+SMwaCd4avcIaKPx + 1KK1e08tJGLsFXm8UwRX8TbezscP+P1PRtTnqO2KMp1x7pO9yF52XF1/gAh/gCgMpKnwnjefbY4U + eF2ZpcUtlAL9QqiHosvi+pLLX1CEFxEsgfhONSznrC/Kv2HPolSwhMutUvXTukkyUlkyUH1XJWmV + jD4eJuo+ZPRFad6kwtucZwL48wJCmRH680LDBf5ZpFE8/nq28M9UhvlcoyCf9/ZWd+uVXG/So8Mt + k21//bwj4L6AtM8uznqd643OF7i20sVi7rV49+AXmN4e7B5AtRn3DtdOtz5t7l6fDjtZcSLAl8PN + 83a7LT+enW4Vr0dBxCHLsTXaUcQc5AoAwYJsqZcGOeAVcUwSaP8RWrxvs/SEKAhhLQnzAGPnpAFS + O84VsUQyZpkQAiIfto3OKgqarhbv2yw9KQpSgEqilSUOe64d1lpSzA1REklkoQSGCev8zGrxvr+l + J9y0SJkjGBlJrAOMYYcp4ABDThXUXhGgPLaeWDmXWrxiStDttT3wpGqhAwRzID1y0mPpqFKAKU0s + lVZpipyyHGgEJtfinfmSWJ0iIDc9TIyqXasoh81GgsKO0maW/hrShQhMkgWkG0E6JgWcvYytr6vd + s9Wet7vp6UZ8rI8R2ocdePsp2T+sD2u1e7OOv7hP3fYN2vgp2r1bD/3pqPGn/xVtV9HYoX4gbNY4 + 1P81YzWunkCFsdZf9edAIW5uLE6reHxfsbrbbfRG6d2/48wLRbFfUFFsZvAckk+EIR7gufHDO+1k + LMlpDy+rJHeDUKy6KF1TbS8MKVOm3TBGksIn7aL5OiCAN5G5cJZFWtaCy/1yXG4OymNNYYjPNZXL + Tjc/lezgy8nJpz3Vvfkai8/nx+S6ddnqf94m8ovp3m7FabdfrxbvsrNpmgJXNO+xzq7UhwTtf0RG + wwvzuaZrUPb8xknCEE4/H14cHQKvq9dTOemQdh57j5VlxjOnJTVeK+sJ8thzDzm1AtFZpXJAvLul + J6Ry2nugOFaeKA8p5co5bQRzniPIlEJacq4AEbOaoMXAu1t6QioHlEQYAIcoVB4QRKglyBCtHLQQ + e8CpNpZQPI8JWnRaSkCv7YGnWXAGWGEgQVBbxAm1iiilvBDESA4EEN4TRu2krGgehYCCe4/5gv2M + 2Y/gfPYStHaO+xsmXb/qVrdJvL29v64GJzsm/eIpKw/qz0W33jnjn1eKrpqU/fAfqp6+EuVuED3w + 2aIHPluQz2kXzdfBZ4s6QV4+d1U0KMqrkLsVNHvu2FDpWkEQqFsWISIJevWtXmpdkNhJ8xCLNppC + daPq802GfoaUdh6Fv9+qmvchXq7gW/bpvfqQ84N/smF+07n6lcCPb/Fh2iO/IvhBlCHKvpOXVVfO + fBiP5PDCsNNMzhKgW97eF08ej4mQnJFo1wphX1m9hfg0h10Qn9cRH2W5f1L29kXio6q6LKbOe2xQ + fMXGxUEYOvAeHEtpUAwRhtgiaIhzE/CelXBxedEZLojPzyc+bxnTc414juOP/exi1Zr9YXv42dyc + F8nl8dezy4ur7u7xysH1QbsY1va02lP775J4Nc1w+OCLjUnbHrNWay/bo8cZatMjpMBWu9uygzhb + 76xs1l60MHoD4lHaeMW0ghxAz6hg3gsKjKZGIeSFJARLZQSc2T148N0tPSHisVQ64wnSDlgopcec + hh1hmBDgDfBKOA+sFeQfsQfvbZaeEPFA4xij3BjiglKQN55oJ7hGTkqvtXCYUsEpnUfEw6eFeF7b + A0/Eni3hREtClBKeY2GYhYJKhaFjTjhrqCWaGzzxHjwxf4gnOPJsUZp7jHgolmT2EM9+T29/6ar+ + ykm+unpwvnWyC/oqVnb909b6xmeNLvv1kb7ZlDdyYkEmMY3S3OP10UZs+d5Jmx388kIQutxES6H4 + 3jICCCxDsAzofVnrsePZSAe/7Hj+Naj5G08+P0inq8KoNmlhmn//SvJKDnMztOZXZDtQciJfrps9 + KhY6TZzDczcU4W/daLbd77ZRuU3GhDjJnCrDl2/hOs3xF3vsXp3LIwUyelKyE/TVK5NOne0wwpCl + hMVCSD1mO1iAEdvRwDih2ARsZ22s6h8dPu87LBDP3494fmiczzXrOT/b2VmV7Wx3uHYSe3dxvHVz + uNL9DHrmGtgN/XE3r25RpTcudt9FqHiqcXGRp2dDRml/c/PT2e7e1nXvuFfVfi9O7IW4zb9SvtOL + N8/VSR+8nvUgrAS0wmjNIWECEwwoZkZpYiAnzgpPiKWczCrrmaqy1dssPSHrUUIBZpWlEihuMccI + NfuSgLdcYwwBEEBRr2Z1kx2W727pCVmPl8wJTqAykgkGFcYaUYi9EExKgh2AEGj1xNf8rqV/5iY7 + /v6WnnCTHSeYQcJCJbWgdc6cNVIIwLhGRANAqQYCC+lntDIgh+9v6QkrAzrjsYXUUwsgU8hbh6SB + nEGEILTGYOMA5q/bOPoTKwMK8P6WnrQyIFdWMESwAVhoLxwTGkAPEGJCIA2QQFwr4/k8VgYUUk6J + Fb+2D54IPSogEBRaK4WAp8wDqB3VWhmNsQ+VLo0RFJqJCwPOgXr/D+8dhZLTJzWQ/rFwmchnjPHu + cLn3mYINXnQ3+wi0t7YZWh9c7J2Yo/xwH9Tbn1eKtu+K6yE+O540fxAC8iN0ee0uPryXbAuK/ruj + +DDaGceHs4OZv/Gw5TTLep00Hxel65UBrC2n1X0NunGQG98FuXHddnHubuq4boc/GUZCU0k8QW/I + DfxJF7LAzwv8/DfjZ/xkEe7vxc/Ww+W0uudRj1lU2GKWhNGRNKPjbQja+oXM2wJB/9IIeg703n54 + rC8w9AJDLzD0AkNPaOkFhl5g6AWGXmDot74QFxh6gaEXGPrHMTSmi23s9xiaiAWG/ksMvV3d8+fH + 7LnZpR5ixKiJEWdIvnDBohfihs81XIgbvgVEcwAJ/c4e90H1oZPWH5ztTQ1Fu/6lXm6FApQq1LpO + uu2iDgUowz7Y0KyXp6YZSUmaf6tL8CYiHU612Oy+kDdcZEK/A4ae0jifaxrdMQU2N0VWXe87slLc + Fp2ztdvhAT4/s9WRPf5yqS7W11YOD8qt8/eg0XyapVH3+fXa0Xph5Be45zoreB+wjmytXN987l3e + VlfH54L3js6S1ur2G2i0UpQgrixjGhrmQ6FUrDj11BlnnQMQOSG897NKowl5d0tPSKM5EMJiT4y3 + kDkhsFReSOOlAt4YbaXy1FFqZpVGQ/zulp6QRlOErJZeWS6kgMZSDDFF2jHuPTdMGig8NALPKo3+ + q0KzP8HSE9JoJSgGDhsCOcJWC22Q8cKqBihxhiTR1hMgZ5RGMwLe3dIT0mhFYFCPxA4o4DxlEDAu + sRRAa+gMEghZoRkyU6XRP4eQsr+q0/W39cATUQdqJDKAOOYM8oB7y7xETgtpLQlriQ4iR5mcmJCC + ORTuDKErpQviOSaeHCDyXsRTvVi0ZXNNVTUkJ+X2eoeLM4zOk0wfbOhDc0tub8wlPl7fWN/qXdZi + QuIp8Q8VbbmPRqJxNNIIO/wpGgkSnd+Kt5gmoSn8oBpWtet8GCtCpFVdRb1GnbPqdV1pitz2TNPw + 7qc6ravIFHnuTO1skPRUUSc1ZREqm0R1qfKqk1ZVOGUW0Gs7fFy1i0F+px8aXfdGB1F5NA6kXFTk + kXWdkC8cWoxv4/eoKKPunVJmkCBtItnfo9wZV1WqHD5zo9rVA+fy+wvulkVoXJTVDAmMPkRQIz2J + byFlPL77+E/3dU9d7/suHvVdDAHgb5G5+HuvYAF4F4D37wO8mODHuQwPAO/4fdQ84lOsXsO5KvFY + yDfMlMndhak8UabohVfmqKhF0XG1K5O6reo3Ed5wogXhXRDeX47w4jkgvFMZ5XPNdy+2hlfMyc0v + vXqrvbb29fDT/mFXtXWuN9vkZE+eU985ulb0eIvMvcApqoZkr/zaTf1qnNcputwFG5t0P21TmQz4 + 1n4xuMZXX65ZtvUGvkshMYxzw4kFBEnNvCKeIqGgZZJICyCnAuKZrSw9VYHTt1l6Qr7rmEAKAeMJ + BAIDjCDy2kAniXSCMQcDh7RgVrONpytw+jZLT8h3JaJQOmoIpYQRZi3xjBqEsHAwZG1yqTl1Rs0o + 38UzMHtMyHc1ZQhKJaGwUAnJCTMIawsh8o5xAIzmDDmEZpTvUvL+lp6Q7xqlLUYkbAyhTFirNYZC + YM+YQgJBLRDyyEA1h3yXimmJ9r62B55oUHtBBBEKWQcVkcwyr7TkhmsvrWIIea2Ap3pyvovnkO9i + gjFY8N0x3yWE8Znju92LC3WNr+B1j6H6iO9+HFzlt8cf07Yp9ncTsB2vt8vbwf7g6hD8FNXeB2x2 + HItEKo/uYpHoQSwShVgkqtWVqxqOGoLTwPR6pQv0tNCXztRVpIdR5fIR5g1RdDX+XdvdN2ml/fAT + Hw3arinuNIxaro7aRf0h2q4jU/QyG1VFx1k1jHya26hXuQCZnyJm6/qpcdXv0aCdmnbU6VV1VHRH + 2FfVUd+VwygLaPjbxc4Sqg1g6BFQuiveFCBq/MD8ccepKlx+/OBe4kFat+PGzm+rLf43nXx+AG3Z + q+riVxKBEOCGXf2KXBZwyQl+kctmKs8+tIr+tIAsK9ulGNcaVlmrKNO63Wl4TOJVVYecvNGEUaWd + XtYsYrypvFRzngWPXShALBQg7hv8fDA7ldE+11y26ojV9iosP+98+dIrN6rN3WPJPesxc9PCp6vn + GVvvxye7l0cbV3Ofd/vZJ3qLn8fu85E73TwoTofbndVLpDtnxZevmxfV5sogHmyL6uPt7hvybgXm + ykuoXMCCjknLNBQYeYOVwd5KjxR1ema57OPNLe9g6Qm5bCP54DkAUnNBPCbKWakw09IzL5ghyAEs + DJzZvFvy7paekMtaiIw23CiALbVGUyUpsRYKQxzkinlEJaCezmzerXx3S0/IZYmhAgtgJXPcWcyZ + EphiYgxTMDzcUvhQ0d1Mlcv+HFpIplbi67U98GSZQVArpQEMOcGwJZJpKoBGkiGNuNbAA+Q8UZPS + Qj6HyaAhnHpSq/efCwvBU0b2/rBw5SSgwKJdrOy0z0/WibvpH+zt9m+PT75+7RWfvvq1rdvV1Vs/ + VBMng/7Q7vdRFfd7/3hE9oJ/HN35x9ED/3gM8nQZQF2riefLhuQpnWZpPQz5naZXBme+EXPNnSrj + 2pWdR5zPlSFZs+vuN9kP1Cg3U3W72Th/sAoHK3t5FNQ9o6ouU1NHdSgUn6WdkBDaXGpbBXgVdVQ+ + /HYOlZm7K54xMniHNJZtWpkQEzWJlXHpMqcqF6vStNO+GyVYfjF1oV25DAGgj5IpXRnfd1moMfY2 + UviTLmZ+yKGyTpUdlUv4C9FDzu1lJ+/f/oIAEQoZygC/nNiZp92uq8evmGlKydL2Zf/6YdZXyFtP + rOu7rOiG5K+kdqadp9c9l9TFWyBic4YFRFwkdf56SZ1i9uHhD47vucaGh6fHq/m6/ZQfpLfwRn/+ + enycHXyVR7KzerV1vX95fV6Ckpt1vAHmHhvCHY8Ozz8OXQHL82J179PRp3ov39u4+WJx1QEbeIWC + /fzs+IvaeD02BBwJZhX0QcQUSEwZlARaj5FW2CnljVNSY/GP2K7/NktPiA0lFQwbrC3XBoTS6VwH + OGuFd4BJoYwkyiI1q/Xqp7td/22WnhAbam6AkNxTAZjwDGhJNQDEA8Z0yM5yAgoDgf5HbNd/m6Un + Tec0HHHMKIDaAkGth5pwagTBmFiIkAVSE+LUP2K7/tssPWE6J5eAAwwh0bDRUFHQKSsIdRwxCZFC + DDvAoZlR8ViO3t/Sk4rHSm+tcthZr4VnGFmNJW4eZc2YsUAi7YXneB7FY4OAwJRo+Gs74YmZGTKW + OoMsdcgirBgniGFhqVXWS2I4I4a4ybUR6Pzh8AYOyIUa7BiHI8bQ7KnBHn6ObVWxs6NbJs/lZct0 + DrO43LR1drpe5K49LM9u/GdT5efFT9FGeJA72ygR3Ed8kYruI74Apnt5ZUrV0Zm7x84ur1Xeypwd + yQ5Eygc63pDqIHPgm3zbsui12kEDoZfVaWBdUdGtU6OyyKe6dL9HpWtQ7B0Yvzt4mvui7IwkC4wq + yzSIKQQAPmiIfBEyOwdp5SId0mqVCRoGqc7ch+io0bAdRB1Xtwt7R/Bdc/Qr1yD7O5IfcFBZZI/y + cr9t6Z+xLNsndK/JcR3dZ/ytg6r4vmfipmfipmfiu16Jx73S4OzM3cSVUXXddEHcPKlvzMN9r8tb + ZOouMnWnDdoZlUC+rKBQp2Fy/KDMh8vutBA7Hnbbfrl0lQsLUa4cM7iq7WyT05fmVRgtVZLmddHM + Pvmb1BOa8yxA+wK0L/Rxfz5nn8ogn+9SbevJpjj+UtICH2TdQwO21/n2ZXa2l3XSqy/kKEZng3h4 + 1V+53J978YS03GSf9laGCoDi8rR/xT+L7dvL27OPu/3jq8KeHG/n6anfX1nfHbyethtPIXfOO6Og + ctBrL6Qi2gqvmBaGEIaIlobPrHjC+1t60lJtkGjEpfLSECyVlgggJQXhgFlqpCOICiK0mFXxhMfb + K9/B0pOKJzCghUSeIWoAs14C4SmzlENFkJSEUoOkMmRWxRMof3dLT0jbKYTCI06ZMpBwoxDGEgQp + FuUDrLQIG4uwd7MqnoDZu1t6QtruAQmyH4JbFBKhiTcYe64VpcAaShwwWiil+IzSdgbwLLwRJzI1 + EDoUwiOeYwIhwMYyI5UUgFrLtYOOKM8VIvNI2zmkU4Ltr+2DJ8tHQhNKBCIEAaikA8g6DzT2wDGN + NNOMWqOcm7xUm5g/2M6ohHAhVDGG7RCIJwWF3h+277V209ZGcS5O9w/wyvbhqWvfHJzIm8Oto/Tq + iu9clsM4VzH5KHZ/ilDFwbew707319mGVd+FfVEI+6JR2BdZp1Xtqqh0rRGHbBC264/jnqBYET7Q + IfG8qsueaXQsgqLBn4Qt0jyqi26RFa0Gu6d5FXLFi/JeccLdtFOd1lEv71U9lX1TBm67vOi4XDWp + 7ap0kcv7aZAuHgkbaxeZsmfS5qBN2bj4TiO3yCOXOVOXRZ6a6veo6qb5/R/haE/S42csb/0h4Ft2 + eStLq3aTLT7KDgeES4k+tOtO9jZY/vbjzw/trtpK6yGivxDvJrZXkqdb134N5I0keEw/HiBvVVaj + BUGjpplYjktW9ZfrUnW7zoayUOOZIbmbGZLK1VXDxjqqvAq72N8EvcNpFtB7IVHx60pUzAP9nsJg + n2v4vXMDt69W+MceOBqudw4TuLe5uULO11ZPb9bE54+f+cbR+peLTzvi+l3gN51mAvTFwdf1ld18 + f3ByeXi+EZ9VnzK8X3BbFEfpSdna28g267Pt8rKm56+H3xhbhrjGEBEFRIhANfJN+jPiwjnisQec + Ejar8BuId7f0pMrBXlNiDIVIC4uokhIRowTnGECLOOMeYc2hn1X4PdUFnbdZekL4zZyFClLtKGAe + OUI8hIIZ7Ih1RmFELNbWKDGr8Bu9v6UnhN9cKEOYC1UyjGaGYOSJNIBbjZVmMBAsJwAEc6hQgaem + Z/vaHnhsZOggYUR56YQFAhgoIcdSGoukdQgwRYnkhk2MCTmbQ0qIJOBwQQlHlBAIidnMKVRctltH + XXMgwdX219Njov1lskIPW5Lv4z7f/Rgf11s7X3N1pU7IpJQQ/AglPBq5x3GAaI8xWRT841F2qyqv + GgWJuyYBC3bc7FC0R7zgPhpo+BYEd1FA/LRylivjcJtxkz2qyqvYF+V9k9FtLr+euv3c6/kRSvfb + g5fCUkAPVjX44dsrYKnJmL2bY4DA8gF8X1KtVlKlt260RePhF9006bsyENxwPfjDwxfcknZ+PC8x + QDiD8k8HdVVy3XPl8MmraOn5j0eHLIrsxXfXkk+z0V18J2z67hHuWwXN5L8MhCbzZ0ajwZWd6i9P + ++IM+r8n/tn4fTCabyf+1X9P1PKPv2z1x+/TMlip8pZ7ncH+DCD/8zqTteo/PfwT//iPf7zlsvpP + I3yOLVelYXvAaFZKglxS3nqdHa3zqpfVyUhsfayIk08iavlgCnOZrV4/5JuX/f+lrzhV9NBD/L/o + FZPFK27nbipfGr/dlqbV6b/9wBUuVe2whafxSX573RleeNia90WSF/Xzx/zju87/c2/W0Rcjv/SZ + 1+CfB+ySdZX5s2X/eG6JbsndONNAviSogCWdNMvSyoWas1WTAfUBPXxBNwsFzSaThx7GUqMdFj6G + 4E9v+wd+xVKIJh5+d/3wEXjweTNXPX3an7nj789qE89gE83zf7yuA//Gq51kbv3Lq/3tmWERgG8v + q4MHX/fKEf5+WHssLLWW9qnHsuRVmj3r71dXYbPWs9/0mr10vhf8LgSeiyfCF+TZR/ZZt/MuYGue + +0ef30d9D438sM2LbtVTt+mhwcKIsUnRe2YxbhwTjU3aWPK3keX/+P8BwymXe3mrAQA= + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aac18d1a1c53e3-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:23:01 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:02:48 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=y9XkAjDuAVC7FCYqak1an3DBw4%2FvlSSRo1UReE3HCrFFV2Yqi9Q8CJ4yXNlAj6aLZjP%2BghfeJNEhki6Xnb%2BeU%2BzqDODLlrEgMnlzpkOmKjMPJ0owo4O6HGBsX45OHZEkJ2fg"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://api.pushshift.io/reddit/submission/search?q=quantum&subreddit=science&limit=100&before=1607915595&size=100&sort=desc&metadata=true&after=1604761995 + response: + body: + string: !!binary | + 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 + headers: + CF-Cache-Status: + - EXPIRED + CF-RAY: + - 68aaf3dc8fcc5479-YYZ + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json; charset=UTF-8 + Date: + - Mon, 06 Sep 2021 21:57:22 GMT + Expect-CT: + - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" + Last-Modified: + - Mon, 06 Sep 2021 21:44:32 GMT + NEL: + - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=acvLnwI%2Bs8SGkSo3g3GPz76bg%2BRt8XlVRFmIDkGshAKVkhsAouX%2BNM8vsNBk6V3XhurzBfOuCzxCfUi8icu9JLSvcE7rG%2FEsIHHvY8w1o2UuqvTuYLqPfrW4FHaCm0p0BxZy"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; + ma=86400 + cache-control: + - public, max-age=1, s-maxage=1 + status: + code: 200 + message: OK +version: 1 diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/config.py b/tests/config.py new file mode 100644 index 0000000..607e7a0 --- /dev/null +++ b/tests/config.py @@ -0,0 +1,58 @@ +import os + +import vcr +import praw +from dotenv import load_dotenv + +load_dotenv() + +client_id = os.environ.get('REDDIT_CLIENT_ID') +client_secret = os.environ.get('REDDIT_CLIENT_SECRET') + +# dont record responses that werent successful, usually due to rate limiting +def bad_status(response): + if(response['status']['code'] == 200): + return response + else: + return None + + +tape = vcr.VCR( + match_on=['uri'], + filter_headers=['Authorization'], + cassette_library_dir='cassettes', + record_mode='new_episodes', + before_record_response=bad_status, +) + +reddit = praw.Reddit( + client_id=client_id, + client_secret=client_secret, + user_agent=f'python: PMAW v2 endpoint testing (by u/potato-sword)' +) + +post_ids = [ + 'kxi2w8', + 'kxi2g1', + 'kxhzrl', + 'kxhyh6', + 'kxhwh0', + 'kxhv53', + 'kxhm7b', + 'kxhm3s', + 'kxhg37', + 'kxhak9' +] + +comment_ids = [ + 'gjacwx5', + 'gjad2l6', + 'gjadatw', + 'gjadc7w', + 'gjadcwh', + 'gjadgd7', + 'gjadlbc', + 'gjadnoc', + 'gjadog1', + 'gjadphb' +] diff --git a/tests/test_search_comments.py b/tests/test_search_comments.py new file mode 100644 index 0000000..45da38d --- /dev/null +++ b/tests/test_search_comments.py @@ -0,0 +1,50 @@ +from .config import tape, reddit, comment_ids +from pmaw import PushshiftAPI + +@tape.use_cassette() +def test_comment_search_limit(): + api = PushshiftAPI(file_checkpoint=1) + comments = api.search_comments(subreddit="science", limit=100, before=1629990795) + assert(len(comments) == 100) + +@tape.use_cassette() +def test_comment_praw_limit(): + api_praw = PushshiftAPI(file_checkpoint=1, praw=reddit) + comments = api_praw.search_comments(subreddit="science", limit=100, before=1629990795) + assert(len(comments) == 100) + +@tape.use_cassette() +def test_comment_search_query(): + api = PushshiftAPI(file_checkpoint=1) + comments = api.search_comments(q="quantum", subreddit="science", limit=100, before=1629990795) + assert(len(comments) == 100) + +@tape.use_cassette() +def test_comment_praw_query(): + api_praw = PushshiftAPI(file_checkpoint=1, praw=reddit) + comments = api_praw.search_comments(q="quantum", subreddit="science", limit=100, before=1629990795) + assert(len(comments) == 100) + +@tape.use_cassette() +def test_comment_search_ids(): + api = PushshiftAPI(file_checkpoint=1) + comments = api.search_comments(ids=comment_ids) + assert(len(comments) == len(comment_ids)) + +@tape.use_cassette() +def test_comment_praw_ids(): + api_praw = PushshiftAPI(file_checkpoint=1, praw=reddit) + comments = api_praw.search_comments(ids=comment_ids) + assert(len(comments) == len(comment_ids)) + +@tape.use_cassette() +def test_comment_search_mem_safe(): + api = PushshiftAPI(file_checkpoint=1) + comments = api.search_comments(subreddit="science", limit=1000, mem_safe=True, before=1629990795) + assert(len(comments) == 1000) + +@tape.use_cassette() +def test_comment_praw_mem_safe(): + api_praw = PushshiftAPI(file_checkpoint=1, praw=reddit) + comments = api_praw.search_comments(subreddit="science", limit=1000, mem_safe=True, before=1629990795) + assert(len(comments) == 1000) \ No newline at end of file diff --git a/tests/test_search_submission_comment_ids.py b/tests/test_search_submission_comment_ids.py new file mode 100644 index 0000000..a35bb41 --- /dev/null +++ b/tests/test_search_submission_comment_ids.py @@ -0,0 +1,26 @@ +from .config import tape, reddit, post_ids +from pmaw import PushshiftAPI + +@tape.use_cassette() +def test_submission_comment_ids_search(): + api = PushshiftAPI(file_checkpoint=1) + comments = api.search_submission_comment_ids(ids=post_ids) + assert(len(comments) == 66) + +@tape.use_cassette() +def test_submission_comment_ids_praw(): + api_praw = PushshiftAPI(file_checkpoint=1, praw=reddit) + comments = api_praw.search_submission_comment_ids(ids=post_ids) + assert(len(comments) == 66) + +@tape.use_cassette() +def test_submission_comment_ids_search_mem_safe(): + api = PushshiftAPI(file_checkpoint=1) + comments = api.search_submission_comment_ids(ids=post_ids, mem_safe=True) + assert(len(comments) == 66) + +@tape.use_cassette() +def test_submission_comment_ids_praw_mem_safe(): + api_praw = PushshiftAPI(file_checkpoint=1, praw=reddit) + comments = api_praw.search_submission_comment_ids(ids=post_ids, mem_safe=True) + assert(len(comments) == 66) \ No newline at end of file diff --git a/tests/test_search_submissions.py b/tests/test_search_submissions.py new file mode 100644 index 0000000..b7ed7df --- /dev/null +++ b/tests/test_search_submissions.py @@ -0,0 +1,50 @@ +from .config import tape, reddit, post_ids +from pmaw import PushshiftAPI + +@tape.use_cassette() +def test_submission_search_limit(): + api = PushshiftAPI(file_checkpoint=1) + posts = api.search_submissions(subreddit="science", limit=100, before=1629990795) + assert(len(posts) == 100) + +@tape.use_cassette() +def test_submission_praw_limit(): + api_praw = PushshiftAPI(file_checkpoint=1, praw=reddit) + posts = api_praw.search_submissions(subreddit="science", limit=100, before=1629990795) + assert(len(posts) == 100) + +@tape.use_cassette() +def test_submission_search_query(): + api = PushshiftAPI(file_checkpoint=1) + posts = api.search_submissions(q="quantum", subreddit="science", limit=100, before=1629990795) + assert(len(posts) == 100) + +@tape.use_cassette() +def test_submission_praw_query(): + api_praw = PushshiftAPI(file_checkpoint=1, praw=reddit) + posts = api_praw.search_submissions(q="quantum", subreddit="science", limit=100, before=1629990795) + assert(len(posts) == 100) + +@tape.use_cassette() +def test_submission_search_ids(): + api = PushshiftAPI(file_checkpoint=1) + posts = api.search_submissions(ids=post_ids) + assert(len(posts) == len(post_ids)) + +@tape.use_cassette() +def test_submission_praw_ids(): + api_praw = PushshiftAPI(file_checkpoint=1, praw=reddit) + posts = api_praw.search_submissions(ids=post_ids) + assert(len(posts) == len(post_ids)) + +@tape.use_cassette() +def test_submission_search_mem_safe(): + api = PushshiftAPI(file_checkpoint=1) + posts = api.search_submissions(subreddit="science", limit=1000, mem_safe=True, before=1629990795) + assert(len(posts) == 1000) + +@tape.use_cassette() +def test_submission_praw_mem_safe(): + api_praw = PushshiftAPI(file_checkpoint=1, praw=reddit) + posts = api_praw.search_submissions(subreddit="science", limit=1000, mem_safe=True, before=1629990795) + assert(len(posts) == 1000) \ No newline at end of file From 2e1df2d7c50e2936aa285f00dbcabcce37b10651 Mon Sep 17 00:00:00 2001 From: Matthew Podolak Date: Mon, 6 Sep 2021 18:20:22 -0400 Subject: [PATCH 08/18] cleanup testing notebooks --- .gitignore | 1 + examples/test_comments.csv | 98876 ----------------------------------- 2 files changed, 1 insertion(+), 98876 deletions(-) delete mode 100644 examples/test_comments.csv diff --git a/.gitignore b/.gitignore index 8aef087..9445402 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ /dist /build /examples/.ipynb_checkpoints +/notebook-tests .pytest_cache .coverage .env diff --git a/examples/test_comments.csv b/examples/test_comments.csv deleted file mode 100644 index 8ef888c..0000000 --- a/examples/test_comments.csv +++ /dev/null @@ -1,98876 +0,0 @@ -all_awardings;approved_at_utc;associated_award;author;author_flair_background_color;author_flair_css_class;author_flair_richtext;author_flair_template_id;author_flair_text;author_flair_text_color;author_flair_type;author_fullname;author_patreon_flair;author_premium;awarders;banned_at_utc;body;can_mod_post;collapsed;collapsed_because_crowd_control;collapsed_reason;comment_type;created_utc;distinguished;edited;gildings;id;is_submitter;link_id;locked;no_follow;parent_id;permalink;retrieved_on;score;send_replies;stickied;subreddit;subreddit_id;top_awarded_type;total_awards_received;treatment_tags;author_cakeday -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"# Source Material Corner - -Reply to this comment for any source-related discussion, future spoilers (including future characters, events and general hype about future content), comparison of the anime adaptation to the original, or just general talk about the source material. **You are still required to tag all spoilers.** Discussions about the source outside of this comment tree will be removed, and replying with spoilers outside of the source corner will lead to bans. - -The spoiler syntax is: -`[Spoiler source](/s ""Spoiler goes here"")` - -# **All untagged spoilers and hints in this thread will receive immediate 8-day bans (minimum).** - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610552126;moderator;False;{};gj4cvpu;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4cvpu/;1610615731;1;False;True;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610552168;moderator;False;{};gj4cyvs;False;t3_kwitjm;False;True;t3_kwitjm;/r/anime/comments/kwitjm/not_sure_what_the_anime_movie_is/gj4cyvs/;1610615779;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610552181;;False;{};gj4czv0;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4czv0/;1610615794;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610552198;;False;{};gj4d137;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4d137/;1610615812;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkWorld97;;MAL;[];;https://myanimelist.net/profile/;dark;text;t2_aqfg4;False;False;[];;"Uncensored version airs in like 3.5 hours. - -EDIT: Guys, I'm not gonna tell you where to find it. You are all old enough to use the internet. You can find it. - -EDIT: It's out if you know you know.";False;False;;;;1610552242;;1610573532.0;{};gj4d4ex;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4d4ex/;1610615864;347;True;False;anime;t5_2qh22;;0;[]; -[];;;Nihhrt;;MAL;[];;http://myanimelist.net/animelist/Nihhrt;dark;text;t2_8p0ab;False;False;[];;A giant space *shit* you say?;False;False;;;;1610552244;;False;{};gj4d4kk;False;t3_kwitjm;False;True;t3_kwitjm;/r/anime/comments/kwitjm/not_sure_what_the_anime_movie_is/gj4d4kk/;1610615866;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bobcam7;;;[];;;;text;t2_1xr1f5w7;False;False;[];;Let’s see if it lives up to the “hype”.;False;False;;;;1610552256;;False;{};gj4d5dx;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4d5dx/;1610615878;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Venoden;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ZcaT;light;text;t2_sbhd577;False;False;[];;Can’t watch atm because of my damn school Sadge;False;True;;comment score below threshold;;1610552268;;False;{};gj4d6ci;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4d6ci/;1610615892;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;Smudy;;MAL a-amq;[];;https://myanimelist.net/animelist/Smudy;dark;text;t2_nrmt6;False;False;[];;Wait for the uncensored version.;False;False;;;;1610552283;;False;{};gj4d7er;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4d7er/;1610615908;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Renard888;;;[];;;;text;t2_2dnrowir;False;False;[];;Ah.... shit xD;False;False;;;;1610552289;;False;{};gj4d7u2;True;t3_kwitjm;False;True;t1_gj4d4kk;/r/anime/comments/kwitjm/not_sure_what_the_anime_movie_is/gj4d7u2/;1610615914;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vpeyjilji57;;;[];;;;text;t2_15ti6p1p;False;False;[];;I've heard a lot about this series, and have very high expectations for it.;False;False;;;;1610552335;;False;{};gj4db8s;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4db8s/;1610615964;-2;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610552343;;False;{};gj4dbtt;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4dbtt/;1610615974;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610552374;;False;{};gj4de6r;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4de6r/;1610616007;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Expect the less censored version to come out in roughly 5 hours time. - -The trailer said 23:00 for the normal version while the ""heal"" version would come out 28:00, so it's 4:00AM JST.";False;False;;;;1610552380;;False;{};gj4delm;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4delm/;1610616014;15;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610552383;;False;{};gj4deu5;False;t3_kwisyw;False;True;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4deu5/;1610616018;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"I wonder if they'll change the scenes entirely or just remove the censors - -[](#harukathink)";False;False;;;;1610552417;;False;{};gj4dh2g;False;t3_kwisyw;False;False;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4dh2g/;1610616051;51;True;False;anime;t5_2qh22;;0;[]; -[];;;VeryFunnyValentine;;;[];;;;text;t2_4uph3tsh;False;False;[];;Oh boy here we go;False;False;;;;1610552422;;False;{};gj4dhje;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4dhje/;1610616058;61;True;False;anime;t5_2qh22;;0;[]; -[];;;Nihhrt;;MAL;[];;http://myanimelist.net/animelist/Nihhrt;dark;text;t2_8p0ab;False;False;[];;The only one off the top of my head is [Outlanders](https://myanimelist.net/anime/1940/Outlanders) but I don't think that's correct.;False;False;;;;1610552434;;False;{};gj4dikq;False;t3_kwitjm;False;True;t1_gj4d7u2;/r/anime/comments/kwitjm/not_sure_what_the_anime_movie_is/gj4dikq/;1610616073;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Smudy;;MAL a-amq;[];;https://myanimelist.net/animelist/Smudy;dark;text;t2_nrmt6;False;False;[];;Apparently there's three versions of this, i wonder indeed.;False;False;;;;1610552464;;False;{};gj4dktp;False;t3_kwisyw;False;False;t1_gj4dh2g;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4dktp/;1610616106;51;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610552484;;False;{};gj4dmc2;False;t3_kwisyw;False;False;t1_gj4d137;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4dmc2/;1610616129;1;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;Anyone know if HiDive is getting the uncensored/less censored version?;False;False;;;;1610552522;;False;{};gj4dp5k;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4dp5k/;1610616171;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SuperomegaOP;;;[];;;;text;t2_7k6bn;False;False;[];;three version wat;False;False;;;;1610552537;;False;{};gj4dq76;False;t3_kwisyw;False;False;t1_gj4dktp;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4dq76/;1610616188;26;True;False;anime;t5_2qh22;;0;[]; -[];;;HobnobsTheRed;;;[];;;;text;t2_1ftgjit5;False;False;[];;"Let the ~~games~~ flames begin! - -* anyone thinking this thread isn't going to be entertaining is cuckoo";False;True;;comment score below threshold;;1610552559;;1610560696.0;{};gj4drvf;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4drvf/;1610616214;-15;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610552586;;False;{};gj4dtx0;False;t3_kwisyw;False;False;t1_gj4de6r;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4dtx0/;1610616245;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Smudy;;MAL a-amq;[];;https://myanimelist.net/animelist/Smudy;dark;text;t2_nrmt6;False;False;[];;"> There will be three different versions of the anime: a censored broadcast version, a streaming-exclusive ""Redo"" version, and an uncensored ""Complete Recovery"" version. All of the stations airing the anime will carry the broadcast version. In addition to airing the broadcast version at 11:30 p.m. JST, AT-X will air the ""Complete Recovery"" version on the same morning at 4:00 a.m. JST. - -from the Wiki.";False;False;;;;1610552666;;False;{};gj4dzs8;False;t3_kwisyw;False;False;t1_gj4dq76;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4dzs8/;1610616330;71;True;False;anime;t5_2qh22;;0;[]; -[];;;kenjasama;;;[];;;;text;t2_9q2aelyc;False;False;[];;I saw it because everyone said it was a terrible anime, but ... it was a lot of fun;False;False;;;;1610552833;;False;{};gj4ece8;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4ece8/;1610616521;5;True;False;anime;t5_2qh22;;0;[]; -[];;;GetAllTheBestPlayers;;;[];;;;text;t2_3qzyx1y6;False;False;[];;Animation is better than I thought it would be ngl;False;False;;;;1610552834;;False;{};gj4ecfv;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4ecfv/;1610616522;151;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610552857;;False;{};gj4ee78;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4ee78/;1610616549;-10;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 50, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""I'm in this with you."", 'end_date': None, 'giver_coin_reward': 0, 'icon_format': 'PNG', 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png', 'icon_width': 2048, 'id': 'award_02d9ab2c-162e-4c01-8438-317a016ed3d9', 'is_enabled': True, 'is_new': False, 'name': 'Take My Energy', 'penny_donate': 0, 'penny_price': 0, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=16&height=16&auto=webp&s=045db73f47a9513c44823d132b4c393ab9241b6a', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=32&height=32&auto=webp&s=298a02e0edbb5b5e293087eeede63802cbe1d2c7', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=48&height=48&auto=webp&s=7d06d606eb23dbcd6dbe39ee0e60588c5eb89065', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=64&height=64&auto=webp&s=ecd9854b14104a36a210028c43420f0dababd96b', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=128&height=128&auto=webp&s=0d5d7b92c1d66aff435f2ad32e6330ca2b971f6d', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=16&height=16&auto=webp&s=045db73f47a9513c44823d132b4c393ab9241b6a', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=32&height=32&auto=webp&s=298a02e0edbb5b5e293087eeede63802cbe1d2c7', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=48&height=48&auto=webp&s=7d06d606eb23dbcd6dbe39ee0e60588c5eb89065', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=64&height=64&auto=webp&s=ecd9854b14104a36a210028c43420f0dababd96b', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=128&height=128&auto=webp&s=0d5d7b92c1d66aff435f2ad32e6330ca2b971f6d', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;"Let me just make a very quick statement: - -I don't care the least about what Twitter or some similar cesspool thinks, or gets offended by about this show, and **nobody else here should either.** - -It's an edgy trash show, and sometimes I need some edgy trash show to watch in between the masterpieces. There has been and there will be anime that are much much more edgy than this one, and if they don't cause a """"""controversy"""""" then neither should this. Let people enjoy some trash.";False;False;;;;1610552875;;1610553584.0;{};gj4efk2;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4efk2/;1610616570;7;True;False;anime;t5_2qh22;;1;[]; -[];;;SuperomegaOP;;;[];;;;text;t2_7k6bn;False;False;[];;"> a streaming-exclusive ""Redo"" version - -what does this mean. still censored but not as much? extra scenes? is it being streamed at the same time as broadcast?";False;False;;;;1610553056;;False;{};gj4et78;False;t3_kwisyw;False;False;t1_gj4dzs8;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4et78/;1610616774;11;True;False;anime;t5_2qh22;;0;[]; -[];;;AdmirableFondant0;;;[];;;;text;t2_3u7avr5f;False;False;[];;"waiting for uncensored & watching it mainly due to people outrage - -oh no no the downvotes are starting";False;True;;comment score below threshold;;1610553071;;1610554605.0;{};gj4eucc;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4eucc/;1610616793;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;"I'm very much looking forward to uncensored version. I haven't seen the censored one. Thanks everyone for pointing out when that one will come out. I'll probably be browsing Twitter just for the reactions and watch ReZero in the meantime. - -Edit: Why the downvotes? Is it because I mentioned Twitter?";False;False;;;;1610553193;;1610554910.0;{};gj4f3pn;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4f3pn/;1610616935;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Lute142000;;;[];;;;text;t2_53kdcq0t;False;False;[];;Incel time;False;True;;comment score below threshold;;1610553284;;False;{};gj4fasc;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4fasc/;1610617044;-18;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610553536;;False;{};gj4fu0z;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4fu0z/;1610617334;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;superbatflashman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/kurisuokabe;light;text;t2_8mdt665;False;False;[];;"For Promare, watch other stuff by Imaishi. Since you have already seen KLK and Gurren Lagann, Dead Leaves is another option. - -Apart from that, you can watch the shows that inspired such shows in the first place which includes Gunbuster and Diebuster (Diebuster is the sequel to Gunbuster). There are some other shows like Getter Robo and Mazinger Z which served as huge inspirations for GL, but just start with Gun and Diebuster to see what Gainax was up to. - -Then there's Re: Cutie Honey whose first episode was directed by Imaishi and the series was directed by Hideaki Anno, who directed Gunbuster and Neon Genesis Evangelion. Diebuster was directed by Kazuya Tsurumaki and you can watch his other and even more ambitious show FLCL if you want more of the same studio. - -Something similar to Redline will be tough. That movie took 7 years to produce by Studio Madhouse. In general, you can try other works by that studio to see if something falls in your area of interest. If it's car racing you want, Initial D might be something up your alley.";False;False;;;;1610553621;;1610556426.0;{};gj4g0cp;False;t3_kwj3mm;False;True;t3_kwj3mm;/r/anime/comments/kwj3mm/movieshow_similar_to_promare_or_redline/gj4g0cp/;1610617429;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;I assume you are already watched tonikawa?;False;False;;;;1610553746;;False;{};gj4g9y7;False;t3_kwj9gp;False;True;t3_kwj9gp;/r/anime/comments/kwj9gp/looking_for_an_anime_where_male_mc_gets_married/gj4g9y7/;1610617573;1;True;False;anime;t5_2qh22;;0;[]; -[];;;River_sounds;;;[];;;;text;t2_y4vd1;False;False;[];;If you mean over the top crazy stuff happening all over the place, check out [Dorohedoro](https://myanimelist.net/anime/38668/Dorohedoro).;False;False;;;;1610553842;;False;{};gj4ghah;False;t3_kwj3mm;False;True;t3_kwj3mm;/r/anime/comments/kwj3mm/movieshow_similar_to_promare_or_redline/gj4ghah/;1610617684;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kcanimegod;;;[];;;;text;t2_3ux15mq1;False;False;[];;Yeah no;False;True;;comment score below threshold;;1610553917;;False;{};gj4gmy2;False;t3_kwisyw;False;True;t1_gj4efk2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4gmy2/;1610617770;-17;True;False;anime;t5_2qh22;;0;[]; -[];;;soberboijay;;;[];;;;text;t2_5dpgzx1v;False;False;[];;Yeah i read the manga for it;False;False;;;;1610553967;;False;{};gj4gqq9;True;t3_kwj9gp;False;True;t1_gj4g9y7;/r/anime/comments/kwj9gp/looking_for_an_anime_where_male_mc_gets_married/gj4gqq9/;1610617827;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610554013;;False;{};gj4gu8c;False;t3_kwisyw;False;True;t1_gj4fasc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4gu8c/;1610617880;13;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610554073;;False;{};gj4gyu4;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4gyu4/;1610617948;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610554149;moderator;False;{};gj4h4nt;False;t3_kwjipc;False;True;t3_kwjipc;/r/anime/comments/kwjipc/where_can_i_watch_the_demon_slayer_movie/gj4h4nt/;1610618037;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Roketsu86;;;[];;;;text;t2_hwze9;False;False;[];;Fly to Japan and get a theater ticket.;False;False;;;;1610554177;;False;{};gj4h6uh;False;t3_kwjipc;False;True;t3_kwjipc;/r/anime/comments/kwjipc/where_can_i_watch_the_demon_slayer_movie/gj4h6uh/;1610618072;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610554194;;False;{};gj4h871;False;t3_kwjipc;False;True;t3_kwjipc;/r/anime/comments/kwjipc/where_can_i_watch_the_demon_slayer_movie/gj4h871/;1610618092;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;NemuNemuChan;;;[];;;;text;t2_36u9ttad;False;False;[];;thanks;False;False;;;;1610554198;;False;{};gj4h8gs;False;t3_kwisyw;False;True;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4h8gs/;1610618096;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheAughat;;;[];;;;text;t2_w0842;False;False;[];;"People are gonna get so triggered over this lmao - -You're already being downvoted by some of them xD";False;True;;comment score below threshold;;1610554213;;False;{};gj4h9ni;False;t3_kwisyw;False;True;t1_gj4de6r;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4h9ni/;1610618115;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;NemuNemuChan;;;[];;;;text;t2_36u9ttad;False;False;[];;He's not an incel;False;False;;;;1610554237;;False;{};gj4hbf4;False;t3_kwisyw;False;True;t1_gj4fasc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4hbf4/;1610618142;0;True;False;anime;t5_2qh22;;0;[]; -[];;;NeverGonnaSimp;;;[];;;;text;t2_9pkuih4r;False;False;[];;This and Ex Arm are going to break the internet... For far different reasons.;False;False;;;;1610554275;;False;{};gj4heb4;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4heb4/;1610618185;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ItchyPlatypus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ItchyPlatypus;light;text;t2_x6uza5h;False;False;[];;Probably not what you’re looking for but Gurren Lagann has a side plot where the MC eventually gets married at the end but it’s far from the main objective and romantic.;False;False;;;;1610554286;;1610554791.0;{};gj4hf6o;False;t3_kwj9gp;False;True;t3_kwj9gp;/r/anime/comments/kwj9gp/looking_for_an_anime_where_male_mc_gets_married/gj4hf6o/;1610618198;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610554306;;False;{};gj4hgns;False;t3_kwisyw;False;True;t1_gj4dhje;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4hgns/;1610618220;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi MysteriousForeteller, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610554325;moderator;False;{};gj4hi64;False;t3_kwjl1j;False;True;t3_kwjl1j;/r/anime/comments/kwjl1j/all_aboard_the_feel_train/gj4hi64/;1610618242;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"It’s an actual movie ffs. - -The only way you can possibly watch it is by going to a movie theater in Japan. No website (both legal and non legal) has it. Even the non legal sites only have the crappy camera rips which aren’t worth you time on. - -Eventually, once covid regulations lift up, it’ll come worldwide to specific theaters in major cities. That’s when you’ll be able to watch it outside of Japan. - -In about 6 months or so, it’ll come out on Blu-ray for everyone to watch.";False;False;;;;1610554374;;False;{};gj4hm23;False;t3_kwjipc;False;True;t3_kwjipc;/r/anime/comments/kwjipc/where_can_i_watch_the_demon_slayer_movie/gj4hm23/;1610618302;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610554406;;1610554626.0;{};gj4hogy;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4hogy/;1610618337;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;Fly to japan, buy a movie ticket, watch movie;False;False;;;;1610554428;;False;{};gj4hq86;False;t3_kwjipc;False;True;t3_kwjipc;/r/anime/comments/kwjipc/where_can_i_watch_the_demon_slayer_movie/gj4hq86/;1610618363;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610554469;;1610556229.0;{};gj4htk9;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4htk9/;1610618412;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;JackBrun6969;;;[];;;;text;t2_3gbdvs8n;False;False;[];;damn, makes sense tho;False;False;;;;1610554484;;False;{};gj4huu2;True;t3_kwjipc;False;True;t1_gj4hm23;/r/anime/comments/kwjipc/where_can_i_watch_the_demon_slayer_movie/gj4huu2/;1610618431;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xVx_k1r1t0xVx_KillMe;;;[];;;;text;t2_7qaygenb;False;False;[];;Exactly my thoughts. It was a pleasant surprise.;False;False;;;;1610554502;;False;{};gj4hw98;False;t3_kwisyw;False;False;t1_gj4ecfv;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4hw98/;1610618453;32;True;False;anime;t5_2qh22;;0;[]; -[];;;_Pinguino_;;skip7;[];;;dark;text;t2_8rggs9k7;False;False;[];;Dead Leaves and Trava;False;False;;;;1610554503;;False;{};gj4hwao;False;t3_kwj3mm;False;True;t3_kwj3mm;/r/anime/comments/kwj3mm/movieshow_similar_to_promare_or_redline/gj4hwao/;1610618455;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JackBrun6969;;;[];;;;text;t2_3gbdvs8n;False;False;[];;do vpns work, i didnt know the movie was that new lol;False;False;;;;1610554511;;False;{};gj4hx0j;True;t3_kwjipc;False;True;t1_gj4h6uh;/r/anime/comments/kwjipc/where_can_i_watch_the_demon_slayer_movie/gj4hx0j/;1610618466;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;KnightKal;;;[];;;;text;t2_pwr4duc;False;False;[];;"how could they know if the anime is good or bad? They may talk about the source story, but that means little when the adaptation can do whatever they want with it ... because it is an adaptation, not a copy and paste. - -so far it is a edge revenge story with lots of abuse/bullying/sex/drug abuse/etc and it is just episode one. What is the rating? R18?";False;False;;;;1610554515;;False;{};gj4hx9v;False;t3_kwisyw;False;True;t1_gj4ece8;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4hx9v/;1610618470;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Roketsu86;;;[];;;;text;t2_hwze9;False;False;[];;How would a VPN help you see a movie in a theater?;False;False;;;;1610554580;;False;{};gj4i2de;False;t3_kwjipc;False;True;t1_gj4hx0j;/r/anime/comments/kwjipc/where_can_i_watch_the_demon_slayer_movie/gj4i2de/;1610618550;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;Tf would you use a vpn to do. You *physically* have to go to Japan.;False;False;;;;1610554596;;False;{};gj4i3mh;False;t3_kwjipc;False;True;t1_gj4hx0j;/r/anime/comments/kwjipc/where_can_i_watch_the_demon_slayer_movie/gj4i3mh/;1610618571;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610554618;;False;{};gj4i5gt;False;t3_kwisyw;False;True;t1_gj4ee78;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4i5gt/;1610618600;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;kadenzm;;;[];;;;text;t2_4gqbw6fv;False;False;[];;Anohana;False;False;;;;1610554624;;False;{};gj4i5v9;False;t3_kwjl1j;False;True;t3_kwjl1j;/r/anime/comments/kwjl1j/all_aboard_the_feel_train/gj4i5v9/;1610618606;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dxing2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/dxing;light;text;t2_sbxd9;False;False;[];;Haven’t seen the episode yet but I’m just here to witness the anime subreddit burn.;False;True;;comment score below threshold;;1610554699;;1610562945.0;{};gj4iboz;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4iboz/;1610618698;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610554703;;False;{};gj4ic0d;False;t3_kwisyw;False;True;t1_gj4fasc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4ic0d/;1610618703;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;soberboijay;;;[];;;;text;t2_5dpgzx1v;False;False;[];;Yeah i watched lagann already i really liked it;False;False;;;;1610554711;;False;{};gj4icn6;True;t3_kwj9gp;False;True;t1_gj4hf6o;/r/anime/comments/kwj9gp/looking_for_an_anime_where_male_mc_gets_married/gj4icn6/;1610618713;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610554723;moderator;False;{};gj4idhk;False;t3_kwjq2a;False;True;t3_kwjq2a;/r/anime/comments/kwjq2a/i_need_some_answers/gj4idhk/;1610618727;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Indiangod099;;;[];;;;text;t2_2ve95gvt;False;False;[];;😐;False;False;;;;1610554735;;False;{};gj4iefo;False;t3_kwjipc;False;True;t1_gj4h871;/r/anime/comments/kwjipc/where_can_i_watch_the_demon_slayer_movie/gj4iefo/;1610618742;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Luke911666;;;[];;;;text;t2_4nhzay4;False;False;[];;I‘m actually excited for this, it’s the perfekt amount of edgy and echii.;False;False;;;;1610554759;;False;{};gj4igam;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4igam/;1610618771;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;ohaimike;;;[];;;;text;t2_5ovb2;False;False;[];;See you all in 3 hours i guess.;False;False;;;;1610554792;;False;{};gj4iizm;False;t3_kwisyw;False;False;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4iizm/;1610618812;41;True;False;anime;t5_2qh22;;0;[]; -[];;;chunkyspunk123;;;[];;;;text;t2_7v9z6v0i;False;False;[];;Kiznaiver;False;False;;;;1610554809;;False;{};gj4ikar;False;t3_kwjl1j;False;True;t3_kwjl1j;/r/anime/comments/kwjl1j/all_aboard_the_feel_train/gj4ikar/;1610618832;2;True;False;anime;t5_2qh22;;0;[]; -[];;;moichispa;;;[];;;;text;t2_g7zxf;False;False;[];;Usually movies are released on BD about 6 months more and less after the cinema release in Japan. movie cinema releases (physical) and streamings are usually around that date too but it may vary (BD releass are usually later). I think that seeing how things are going lately with you know what, waiting for news on a streaming is the best option.;False;False;;;;1610554851;;False;{};gj4inil;False;t3_kwjipc;False;True;t3_kwjipc;/r/anime/comments/kwjipc/where_can_i_watch_the_demon_slayer_movie/gj4inil/;1610618880;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bamboozled2319;;;[];;;;text;t2_2y9vepec;False;False;[];;it's just an edit;False;False;;;;1610554877;;False;{};gj4ipjv;False;t3_kwjp5a;False;False;t3_kwjp5a;/r/anime/comments/kwjp5a/a_question_about_jojo/gj4ipjv/;1610618913;3;True;False;anime;t5_2qh22;;0;[]; -[];;;EXTRA370H55V;;;[];;;;text;t2_1mlz54nl;False;False;[];;This will be an answer eventually, but at least 6 months out. Lol;False;False;;;;1610554885;;False;{};gj4iq63;False;t3_kwjipc;False;True;t1_gj4h871;/r/anime/comments/kwjipc/where_can_i_watch_the_demon_slayer_movie/gj4iq63/;1610618923;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Probably like how Peter Grill and Dokyuu Hentai's Streaming version were like compared to AT-X version.;False;False;;;;1610554886;;False;{};gj4iqa8;False;t3_kwisyw;False;False;t1_gj4et78;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4iqa8/;1610618924;18;True;False;anime;t5_2qh22;;0;[]; -[];;;BigBat6;;;[];;;;text;t2_5kzs0gd2;False;False;[];;Any rapes in episode 1?;False;True;;comment score below threshold;;1610554921;;False;{};gj4it1m;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4it1m/;1610618966;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;nueker;;;[];;;;text;t2_971rkuiy;False;False;[];;"Let the slug fest begin ( ͡° ͜ʖ ͡°) - -is it just me or everyone who commented is getting downvoted LOL";False;False;;;;1610554940;;1610555345.0;{};gj4iuil;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4iuil/;1610618989;8;True;False;anime;t5_2qh22;;0;[]; -[];;;MoonDragon72;;;[];;;;text;t2_82hwmqc3;False;False;[];;He's both;False;False;;;;1610554941;;False;{};gj4iuji;False;t3_kwisyw;False;True;t1_gj4gu8c;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4iuji/;1610618989;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;With the hentai;False;False;;;;1610554952;;False;{};gj4ivgu;False;t3_kwjq2a;False;True;t3_kwjq2a;/r/anime/comments/kwjq2a/i_need_some_answers/gj4ivgu/;1610619004;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bananeeek;;MAL;[];;https://myanimelist.net/animelist/bananek;dark;text;t2_m3u6b;False;False;[];;I was afraid I'd have to wait for the BDs just like with HxEros.;False;False;;;;1610554976;;False;{};gj4ixc1;False;t3_kwisyw;False;False;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4ixc1/;1610619034;20;True;False;anime;t5_2qh22;;0;[]; -[];;;SuperomegaOP;;;[];;;;text;t2_7k6bn;False;False;[];;i watched neither so i dont know what that looks like.;False;False;;;;1610554991;;False;{};gj4iyg3;False;t3_kwisyw;False;False;t1_gj4iqa8;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4iyg3/;1610619051;10;True;False;anime;t5_2qh22;;0;[]; -[];;;zz2000;;;[];;;;text;t2_nc21g;False;False;[];;"I looked up the author's bibliography out of curiosity. - -They're very productive on their WN account, and a good portion of their webnovels have ongoing/complete light novel publications, such as The World's Finest Assassin (novel, manga) and Dungeon Builder: The Demon King's Labyrinth is a Modern City! (manga). - -The author mainly specializes in isekai stories, which runs a wide range from light-hearted to fairly dark stuff. Iirc Kaifuku's their darkest, edgiest work so far, likely an exercise to push their creative limits. (Also helps the LN version is illustrated by H-artist Shiokonbu, who also indulges in dark-themed hentai works.) - -Here's a list of some of their stuff: https://www.novelupdates.com/nauthor/tsukiyo-rui/ - -PS. Apparently this is a picture of the author, although naturally no face would be shown. -https://www.nautiljon.com/images/people/00/84/tsukiyo_rui_77048.jpg";False;False;;;;1610555084;;False;{};gj4j5sq;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4j5sq/;1610619164;45;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"In the streaming ones there was this Holy Light/Stars/Other means covering the *""Important""* stuff but they weren't present in the AT-X version. - -Except in Dokyuu's Hentai's case, AT-X still had censored boobs, as they were saving the full uncensor for the Blu-rays.";False;False;;;;1610555109;;1610558566.0;{};gj4j7p9;False;t3_kwisyw;False;False;t1_gj4iyg3;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4j7p9/;1610619194;15;True;False;anime;t5_2qh22;;0;[]; -[];;;HahaVince;;;[];;;;text;t2_6pkh7e8o;False;False;[];;I’ll start with gun buster! Thanks a ton! Also you’re a very knowledgeable man/woman. Sheeeesh;False;False;;;;1610555135;;False;{};gj4j9u8;True;t3_kwj3mm;False;True;t1_gj4g0cp;/r/anime/comments/kwj3mm/movieshow_similar_to_promare_or_redline/gj4j9u8/;1610619228;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;"https://www.reddit.com/r/fatestaynight/comments/df8rvo/rfatestaynights_official_viewing_order_guide_v2/?utm_medium=android_app&utm_source=share";False;False;;;;1610555135;;False;{};gj4j9vj;False;t3_kwjq2a;False;True;t3_kwjq2a;/r/anime/comments/kwjq2a/i_need_some_answers/gj4j9vj/;1610619229;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Izanagi___;;;[];;;;text;t2_6wmop5vl;False;False;[];;still wondering how this managed to get greenlit for an adaptation;False;False;;;;1610555136;;False;{};gj4j9xx;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4j9xx/;1610619230;441;True;False;anime;t5_2qh22;;0;[]; -[];;;Garlicbread10;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;ereh;dark;text;t2_8zn7f5o;False;False;[];;Yea agreed;False;False;;;;1610555162;;False;{};gj4jbxe;False;t3_kwisyw;False;False;t1_gj4ecfv;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4jbxe/;1610619260;10;True;False;anime;t5_2qh22;;0;[]; -[];;;HahaVince;;;[];;;;text;t2_6pkh7e8o;False;False;[];;Dorohedoro was fantastic! More so the art style and characters! But thanks :);False;False;;;;1610555171;;False;{};gj4jcq2;True;t3_kwj3mm;False;True;t1_gj4ghah;/r/anime/comments/kwj3mm/movieshow_similar_to_promare_or_redline/gj4jcq2/;1610619272;2;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;Koi Kaze. You have to pirate it, but it's still worth the watch. And I know what you would be thinking, still, stick with it.;False;False;;;;1610555180;;False;{};gj4jdey;False;t3_kwjl1j;False;True;t3_kwjl1j;/r/anime/comments/kwjl1j/all_aboard_the_feel_train/gj4jdey/;1610619283;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HahaVince;;;[];;;;text;t2_6pkh7e8o;False;False;[];;"Dead leaves in on the list now! Thank -You !";False;False;;;;1610555183;;False;{};gj4jdnx;True;t3_kwj3mm;False;True;t1_gj4hwao;/r/anime/comments/kwj3mm/movieshow_similar_to_promare_or_redline/gj4jdnx/;1610619287;1;True;False;anime;t5_2qh22;;0;[]; -[];;;myrmonden;;;[];;;;text;t2_f0rs6;False;False;[];;" -healing those maids on rotation was the only thing I really felt stood out so far lol - - otherwise its REVENGE but he is still deep down a good guy doing it to save the world. - - The harpy chick in the op/ending is clearly the demon lord.";False;False;;;;1610555196;;False;{};gj4jeqn;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4jeqn/;1610619304;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bananeeek;;MAL;[];;https://myanimelist.net/animelist/bananek;dark;text;t2_m3u6b;False;False;[];;"I've heard some juicy stories about this series, that it's going to be like the 1st episode of Goblin Slayer, so I got quite excited. But so far it's more edgy than dark. I just can't bring myself to take his grudge and desire for revenge seriously when he plots with that squeaky voice. Shield bro in the early episodes seemed more serious than this kid. - -But that being said, I'm all in for gore and whatever this show will throw at me, so I'm looking forward to it. - -EDIT: Shit, why is everyone getting downvoted? Is it safe to post in here?";False;False;;;;1610555218;;False;{};gj4jgh2;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4jgh2/;1610619331;39;True;False;anime;t5_2qh22;;0;[]; -[];;;pa-sama3;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_6ffle8jt;False;False;[];;When?;False;False;;;;1610555221;;False;{};gj4jgq2;False;t3_kwisyw;False;True;t1_gj4d7er;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4jgq2/;1610619335;3;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Shows the Silver Award... and that's it."", 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'icon_width': 512, 'id': 'gid_1', 'is_enabled': True, 'is_new': False, 'name': 'Silver', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;NixUoatan;;;[];;;;text;t2_5fgw07j0;False;False;[];;"90% comments in this thread is about twitter. - -They bitch more about twitter than twitter bitching on this anime lul.";False;False;;;;1610555224;;False;{'gid_1': 1};gj4jgwc;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4jgwc/;1610619337;258;True;False;anime;t5_2qh22;;1;[]; -[];;;YouJustGotDabbedOn;;;[];;;;text;t2_9idi21mg;False;False;[];;It's censored, I'm out. Call me when the uncensored drops 🤣;False;False;;;;1610555229;;False;{};gj4jhcx;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4jhcx/;1610619344;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610555249;;False;{};gj4jix0;False;t3_kwjq2a;False;True;t3_kwjq2a;/r/anime/comments/kwjq2a/i_need_some_answers/gj4jix0/;1610619369;0;False;False;anime;t5_2qh22;;0;[]; -[];;;SHSL_Zetsubou;;;[];;;;text;t2_rzxzswv;False;False;[];;Because the LNs are popular and sell well. Thats really all it takes most of the time.;False;False;;;;1610555254;;False;{};gj4jjd8;False;t3_kwisyw;False;False;t1_gj4j9xx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4jjd8/;1610619377;163;True;False;anime;t5_2qh22;;0;[];True -[];;;YouJustGotDabbedOn;;;[];;;;text;t2_9idi21mg;False;False;[];;Anti-hype lulz 🤣;False;False;;;;1610555268;;False;{};gj4jkfn;False;t3_kwisyw;False;True;t1_gj4d5dx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4jkfn/;1610619394;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Expect the comments here to triple after the uncensored version haha - -Especially after Gigguk said on twitch he was going to watch only the uncensored version - -Edit: They really went full softcore hentai like Aki Sora - -Edit2: reading the comments i realized that people don't know how to use the internet....";False;False;;;;1610555272;;1610584494.0;{};gj4jkr7;False;t3_kwisyw;False;False;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4jkr7/;1610619398;149;True;False;anime;t5_2qh22;;0;[]; -[];;;Beybladeer;;;[];;;;text;t2_ionrm5z;False;False;[];;Wait it's actually pretty interesting?!;False;False;;;;1610555273;;False;{};gj4jkta;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4jkta/;1610619399;47;True;False;anime;t5_2qh22;;0;[]; -[];;;Individual-Glove9223;;;[];;;;text;t2_8ck1anb2;False;False;[];;Can anyone tell me what all the versions mean? Like, what they’ll show and what they won’t show compared to the other versions and stuff;False;False;;;;1610555280;;False;{};gj4jlck;False;t3_kwisyw;False;False;t1_gj4dzs8;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4jlck/;1610619408;23;True;False;anime;t5_2qh22;;0;[]; -[];;;gopivot;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/gopivot;light;text;t2_7tclu;False;False;[];;"Gotta be honest man all i seen is people keep saying ""OhoH twitter gonna go crazy went into flames"" and stuff more than the ""controversy"" itself and i honestly don't see any like 500 liked max the rest is pretty much ""i'm gonna avoid this show like a plague"" which i think is fair, also people probably move on in like a week - -Maybe i'm just seeing very limited view as my own twitter, or because the show haven't air before this yet but yeah";False;False;;;;1610555311;;False;{};gj4jnvk;False;t3_kwisyw;False;False;t1_gj4efk2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4jnvk/;1610619448;28;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;The sex scenes are very strange, just a slide show, they probably have those scenes animated in the cultured versions;False;False;;;;1610555328;;False;{};gj4jp7v;False;t3_kwisyw;False;False;t1_gj4dh2g;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4jp7v/;1610619468;16;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610555353;;False;{};gj4jr8p;False;t3_kwisyw;False;True;t1_gj4efk2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4jr8p/;1610619500;1;True;False;anime;t5_2qh22;;0;[]; -[];;;paulchaested;;;[];;;;text;t2_o0bnm;False;False;[];;"This should’ve just straight up been a hentai doujinshi. It’s got all the tags to typically see in a legit hentai. Just sayin... - -Is it safe to say that the MC will give Rance a run for his money...?";False;False;;;;1610555472;;False;{};gj4k0kj;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4k0kj/;1610619642;298;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610555475;moderator;False;{};gj4k0ut;False;t3_kwisyw;False;False;t1_gj4gyu4;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4k0ut/;1610619646;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Just_a_Highwayman;;;[];;;;text;t2_8poi7kj0;False;False;[];;Ah shit, here we go again...;False;False;;;;1610555561;;False;{};gj4k7kd;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4k7kd/;1610619751;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610555562;;False;{};gj4k7nx;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4k7nx/;1610619753;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610555567;moderator;False;{};gj4k81w;False;t3_kwk144;False;True;t3_kwk144;/r/anime/comments/kwk144/just_a_question_guys/gj4k81w/;1610619759;0;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610555586;;False;{};gj4k9ks;False;t3_kwisyw;False;True;t1_gj4jkta;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4k9ks/;1610619782;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Mage_of_Shadows;;;[];;;;text;t2_n8o12;False;False;[];;[Huh, didn't expect one of those skill hexagons](https://i.imgur.com/8aCPpsG.png) but I guess that makes sense;False;False;;;;1610555619;;False;{};gj4kc4i;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4kc4i/;1610619822;87;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"# Source Material Corner - -Reply to this comment for any source-related discussion, future spoilers (including future characters, events and general hype about future content), comparison of the anime adaptation to the original, or just general talk about the source material. **You are still required to tag all spoilers.** Discussions about the source outside of this comment tree will be removed, and replying with spoilers outside of the source corner will lead to bans. - -The spoiler syntax is: -`[Spoiler source](/s ""Spoiler goes here"")` - -# **All untagged spoilers and hints in this thread will receive immediate 8-day bans (minimum).** - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610555650;moderator;False;{};gj4keiv;False;t3_kwk23i;False;False;t3_kwk23i;/r/anime/comments/kwk23i/soukou_musume_senki_episode_2_discussion/gj4keiv/;1610619859;1;False;True;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"So its begin, and I unironically liked it, which is surprising - -That heal magic thats basically is time travel is a very interesting concept for a show like that. - -I will check the uncensored version later so let's see how far they will go - -See you guys every week, definitely watching this";False;False;;;;1610555700;;False;{};gj4kiin;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4kiin/;1610619923;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Count5or6;;;[];;;;text;t2_49le5kiw;False;False;[];;"For every person who's getting angry about it on twitter, there are a hundred going ""ooh I can't wait to see all these people on twitter getting angry, they're going to be so triggered""";False;False;;;;1610555737;;False;{};gj4klfb;False;t3_kwisyw;False;False;t1_gj4jnvk;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4klfb/;1610619968;25;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610555756;;False;{};gj4kmzw;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4kmzw/;1610619995;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MaiValentineHusband;;;[];;;;text;t2_9ktbpab3;False;False;[];;Onegai Teacher, it starts with a marriage, i can't really think of one that ends with a marriage.;False;False;;;;1610555767;;False;{};gj4kntb;False;t3_kwj9gp;False;True;t3_kwj9gp;/r/anime/comments/kwj9gp/looking_for_an_anime_where_male_mc_gets_married/gj4kntb/;1610620008;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"So is her name Flare or Freya? Both were used... - -And really, why would you even be such an ass to your healer out of nowhere???";False;False;;;;1610555782;;1610565945.0;{};gj4kp17;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4kp17/;1610620027;2;True;False;anime;t5_2qh22;;0;[]; -[];;;YouJustGotDabbedOn;;;[];;;;text;t2_9idi21mg;False;False;[];;It's only 7 comments(out of 65)at the time of writing this lul 🤣 relax and enjoy the show bruh, ignore outrage sluttery.;False;False;;;;1610555824;;False;{};gj4ksjc;False;t3_kwisyw;False;False;t1_gj4jgwc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4ksjc/;1610620078;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;"""What a useless power"", I guess its not";False;False;;;;1610555851;;False;{};gj4kupr;True;t3_kwk3f3;False;False;t3_kwk3f3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj4kupr/;1610620112;121;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"The thing is that Fate **HAS NO ANIME STARTING POINT**. - -**This series has always been for Visual Novel readers** (the watch order now becomes incredibly easy after you've read the VN). - -Why do you think the Grand Order anime are aired out of order, it's because it's for the mobile game players. - -If Fate sounds interesting, **I recommend watching the Garden of Sinners instead**. - -It's basically the same world but doesn't connect with Fate. The visuals and sound is also done by the same people that did Fate/Zero. This is the probably the reason why you want to watch fate. - -The watch order is 1, 2, 3, 4, 6, 5, recap, 7, 8. Watching it this way makes the 6th and recap movie exponentially better and the 5th movie even better. - -If you *really* want to watch fate without reading the visual novel. (I highly discourage watching the anime before reading the visual novel.) - -Fate/Stay Night (2006) Fan Edit -> Fate/Stay Night Unlimited Blade Works (TV series not the movie) -> Heaven's Feel Movie Trilogy -> Fate/Zero -> any other fate you want. - -If you are really impatient, you can watch Fate/Zero after the second heaven's feel movie but I wouldn't recommend it.";False;False;;;;1610555852;;False;{};gj4kuum;False;t3_kwjq2a;False;True;t3_kwjq2a;/r/anime/comments/kwjq2a/i_need_some_answers/gj4kuum/;1610620115;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610555859;moderator;False;{};gj4kvgp;False;t3_kwisyw;False;True;t1_gj4hogy;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4kvgp/;1610620125;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;"I guess I will wait then. - -Edit: Damn, that definitely was worth the wait.";False;False;;;;1610555862;;1610586110.0;{};gj4kvna;False;t3_kwisyw;False;False;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4kvna/;1610620128;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Torque-A;;;[];;;;text;t2_ghmo2;False;False;[];;It seems like more people are talking about how Twitter is going to be upset about this show than, you know, the actual show itself.;False;False;;;;1610555894;;False;{};gj4ky9e;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4ky9e/;1610620169;62;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Some troll came here and downvoted everyone for some reason, don't worry about it;False;False;;;;1610555905;;False;{};gj4kz5u;False;t3_kwisyw;False;False;t1_gj4jgh2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4kz5u/;1610620183;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610555913;;False;{};gj4kzsr;False;t3_kwisyw;False;True;t1_gj4jhcx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4kzsr/;1610620193;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mmat7;;;[];;;;text;t2_elcsa;False;False;[];;"maybe because shitstains on twitter called an anime like goblin slayer ""an incel fantasy"" so people are wondering what kind of dumb shit are they going to come up with now";False;False;;;;1610555922;;False;{};gj4l0ja;False;t3_kwisyw;False;False;t1_gj4jgwc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4l0ja/;1610620204;24;True;False;anime;t5_2qh22;;0;[]; -[];;;dinoaide;;;[];;;;text;t2_btwr8a;False;False;[];;You should continue. Pace would go down but then stories would be very different.;False;False;;;;1610555986;;False;{};gj4l5ki;False;t3_kwjxza;False;True;t3_kwjxza;/r/anime/comments/kwjxza/should_i_continue_gosick/gj4l5ki/;1610620284;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hulkkis;;;[];;;;text;t2_98qda;False;False;[];;Good old Rape Healer has arrived;False;False;;;;1610555987;;False;{};gj4l5of;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4l5of/;1610620285;124;True;False;anime;t5_2qh22;;0;[]; -[];;;Nescau_Fernando;;;[];;;;text;t2_1m6og0;False;False;[];;"[You know shit's gonna get real when the first thing you see is a mature audience warning](https://i.imgur.com/gFEHEbo.png) - -For a censored version, this was quite watchable. Around 18:30, there are some parts that go into slideshow mode showing very little of the action. Those parts are definitely getting a lot spicier in the uncensored version! I wonder how far they can go with the slideshows before being forced into an Interspecies Reviewers style black screen. Judging by [next episode's title](https://i.imgur.com/P0LEXsO.png), it might be soon. - -I love how the highest quality shot was [the Flare one at the beginning (NSFW)](https://i.imgur.com/IJ8pDsF.png). Kehehehe...they definitely got their priorities right. ( ͡° ͜ʖ ͡°) - -That said, the best part of the episode was definitely the faces! Keyaru goes from a [nice & sweet good guy MC](https://i.imgur.com/oOlOO6k.png) to a [full degenerate with a mix of edgy and derpy expressions](https://imgur.com/a/M1Jfht0). Flare got [some ""nice"" expressions](https://imgur.com/a/kchhXJM) too. - -**EDIT**: Watched the uncensored version and it was great! From 18:04 to 19:27, not only the sex scene between Keyaru and the maid becomes uncensored and gets extended, there's also a montage of the MC having sex with the other maids in different positions. Interspecies-senpai would be proud! - -The scene before the opening also got uncensored, revealing a little detail that's quite easy to miss. I highly recommend you guys to pay close attention to that part. - -Please don't ask me to provide links to the uncensored version.";False;False;;;;1610555988;;1610577645.0;{};gj4l5r2;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4l5r2/;1610620286;51;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610555993;moderator;False;{};gj4l648;False;t3_kwisyw;False;True;t1_gj4k9ks;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4l648/;1610620292;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610556013;moderator;False;{};gj4l7pk;False;t3_kwisyw;False;True;t1_gj4kmzw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4l7pk/;1610620317;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cire101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cire101;light;text;t2_oryv2;False;False;[];;"I can’t believe that happened too. Episode 1 was like... bad but not incel fantasy bad. After that it became basically a d&d game lmao";False;False;;;;1610556022;;False;{};gj4l8ey;False;t3_kwisyw;False;False;t1_gj4l0ja;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4l8ey/;1610620328;16;True;False;anime;t5_2qh22;;0;[]; -[];;;TheGriefingEnder;;;[];;;;text;t2_i4ejx;False;False;[];;The MC isn't an incel but the target demographic for the show is definitely incels;False;False;;;;1610556024;;False;{};gj4l8me;False;t3_kwisyw;False;False;t1_gj4gu8c;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4l8me/;1610620331;10;True;False;anime;t5_2qh22;;0;[]; -[];;;pasta37meatball;;;[];;;;text;t2_4em82llv;False;True;[];;I am not going to watch a single episode of this show but you can bet I’ll be tuning in to every discussion.;False;False;;;;1610556087;;False;{};gj4ldnk;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4ldnk/;1610620411;14;True;False;anime;t5_2qh22;;0;[]; -[];;;hell-schwarz;;;[];;;;text;t2_z247q;False;False;[];;"I didn't know if I was going to watch this, but what can I say, I'm up to date in the Manga allready. - -I don't read LNs.";False;False;;;;1610556133;;False;{};gj4lhdo;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4lhdo/;1610620471;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Clean-Parsley-4667;;;[];;;;text;t2_9ppnzj8e;False;False;[];;"By the first episode alone it seems to be a completely serviceable isekai/dark fantasy. Remove the horny maids and there would be nothing left that deserves to be called trashy. -All this racket about ""wait for the uncensored version"" is especially funny considering that literally two keyframes were censored.";False;False;;;;1610556140;;False;{};gj4lhvo;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4lhvo/;1610620478;19;False;False;anime;t5_2qh22;;0;[]; -[];;;CaptainBasculin;;;[];;;;text;t2_1570rw;False;False;[];;On manga translations, Freya was used. I think they will continue with Freya.;False;False;;;;1610556157;;False;{};gj4lj9n;False;t3_kwisyw;False;False;t1_gj4kp17;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4lj9n/;1610620501;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- Direction toward specific sources of pirated content of any type is not allowed. This includes links to unofficial scanlations, streams, uploads, and download sources of any copyrighted content. It also includes direction towards specific sites offering this type of content, and watermarks mentioning such sites in uploaded images/videos. - - Discussion of piracy in general is allowed, **but naming, linking to, or hinting towards specific sources is not. Offering to send links via PM is also not allowed.** For more details, see our [full rules on illegal content](https://www.reddit.com/r/anime/wiki/rules#wiki_do_not_link_to_illegal_content). - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610556230;moderator;False;{};gj4lp7f;False;t3_kwisyw;False;True;t1_gj4kzsr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4lp7f/;1610620595;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SHSL_Zetsubou;;;[];;;;text;t2_rzxzswv;False;False;[];;I remember someone pointing out before how Kaifuku is very different from the rest of their work. It does seem like its more of an experiment than anything else.;False;False;;;;1610556230;;False;{};gj4lp7n;False;t3_kwisyw;False;False;t1_gj4j5sq;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4lp7n/;1610620595;28;True;False;anime;t5_2qh22;;0;[];True -[];;;FarrelMFajar;;;[];;;;text;t2_13bxx0;False;False;[];;Also Bullet and Barrett.;False;False;;;;1610556246;;False;{};gj4lqgh;False;t3_kwisyw;False;True;t1_gj4kp17;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4lqgh/;1610620614;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Manga has more content but the show has colour and music so pick your poison, I guess?;False;False;;;;1610556252;;1610556446.0;{};gj4lqzi;False;t3_kwk144;False;False;t3_kwk144;/r/anime/comments/kwk144/just_a_question_guys/gj4lqzi/;1610620623;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheGriefingEnder;;;[];;;;text;t2_i4ejx;False;False;[];;"The biggest problem is that the show doesn't seem to be popular. It might be worth to dm some anime twitter accounts/anitubers and let them know of the existence of ""this morally disgusting show"" so there's quality entertainment of this becoming more mainstream.";False;True;;comment score below threshold;;1610556303;;False;{};gj4lv16;False;t3_kwisyw;False;True;t1_gj4jnvk;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4lv16/;1610620684;-15;True;False;anime;t5_2qh22;;0;[]; -[];;;FarrelMFajar;;;[];;;;text;t2_13bxx0;False;False;[];;">The author mainly specializes in isekai stories - -That explains the status screen despite being a pure fantasy, though it's much more game-like in the manga.";False;False;;;;1610556304;;False;{};gj4lv3d;False;t3_kwisyw;False;False;t1_gj4j5sq;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4lv3d/;1610620685;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;To be fair, the downvoted comments are pretty worthless comments x);False;False;;;;1610556366;;False;{};gj4m05j;False;t3_kwisyw;False;False;t1_gj4kz5u;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4m05j/;1610620761;18;True;False;anime;t5_2qh22;;0;[]; -[];;;DeathByCrowbar89;;;[];;;;text;t2_x8zlw;False;False;[];;Is this going to be on HiDive as well?;False;False;;;;1610556387;;False;{};gj4m1vy;False;t3_kwisyw;False;False;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4m1vy/;1610620788;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Polarrii;;;[];;;;text;t2_7ya6lx6n;False;False;[];;1st Episode was shlappin great way to start off the season;False;False;;;;1610556438;;False;{};gj4m5wt;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4m5wt/;1610620850;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Well I'm also the same lol. Don't want to be bothered by this annoying censoring.;False;False;;;;1610556444;;False;{};gj4m6dh;False;t3_kwisyw;False;False;t1_gj4jkr7;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4m6dh/;1610620857;52;True;False;anime;t5_2qh22;;0;[]; -[];;;lucacp_ysoz;;MAL;[];;http://myanimelist.net/profile/SoZLuka;dark;text;t2_gch7f;False;False;[];;yup, waiting for AT-X myself;False;False;;;;1610556446;;False;{};gj4m6im;False;t3_kwisyw;False;True;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4m6im/;1610620859;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Khronify;;;[];;;;text;t2_41zknosc;False;False;[];;Call me fucked up but I'm all for shows that don't give a shit about the standards of society and show gruesome shit that a lot of people don't wanna see. It's more interesting since it's rare to see it in the first place. I'll praise it just for that, and the plot is also surprisingly fine all things considered. Looking forward to the rest of the episodes.;False;False;;;;1610556457;;False;{};gj4m775;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4m775/;1610620869;10;True;False;anime;t5_2qh22;;0;[]; -[];;;CruisinCinnamon;;;[];;;;text;t2_45sei6q;False;False;[];;They might announce it later and have it a week behind like Peter grill;False;False;;;;1610556489;;False;{};gj4m9tw;False;t3_kwisyw;False;True;t1_gj4dp5k;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4m9tw/;1610620912;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SolubilityRules;;;[];;;;text;t2_2lolx4d;False;False;[];;**Here comes the straightmen with boners from the top rope!!!**;False;True;;comment score below threshold;;1610556514;;False;{};gj4mbs2;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4mbs2/;1610620941;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610556590;;False;{};gj4mhn0;False;t3_kwisyw;False;True;t1_gj4jgwc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4mhn0/;1610621033;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Royal_Heritage;;;[];;;;text;t2_8wglzuge;False;False;[];;"The hypocrisy of this sub is hilarious. - -If their favorite anime is trending on Twitter they always brag about the numbers it gets as some sort of quality proof. - -But if Twitter foul mouths their favorite anime, then Twitter is beyond garbage and people shouldn't listen to it.";False;False;;;;1610556591;;False;{};gj4mhpc;False;t3_kwisyw;False;False;t1_gj4jgwc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4mhpc/;1610621034;104;False;False;anime;t5_2qh22;;0;[]; -[];;;keithohara;;;[];;;;text;t2_gbzf7q;False;True;[];;The soundtrack is absolute fire;False;False;;;;1610556601;;False;{};gj4miiq;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4miiq/;1610621047;2;True;False;anime;t5_2qh22;;0;[]; -[];;;UnderCoverKV220;;;[];;;;text;t2_4qheuvc5;False;False;[];;Both are good, and with how far the anime is the two are not that far apart.so yeah, pick your poison;False;False;;;;1610556613;;False;{};gj4mjhc;False;t3_kwk144;False;True;t3_kwk144;/r/anime/comments/kwk144/just_a_question_guys/gj4mjhc/;1610621063;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610556628;;False;{};gj4mko9;False;t3_kwisyw;False;True;t1_gj4jgwc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4mko9/;1610621082;0;True;False;anime;t5_2qh22;;0;[]; -[];;;zz2000;;;[];;;;text;t2_nc21g;False;False;[];;"Interesting that the experiment would get an anime adaptation over the rest of their ""thematically-safer-and-less-controversial"" works.";False;False;;;;1610556632;;False;{};gj4mkzw;False;t3_kwisyw;False;False;t1_gj4lp7n;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4mkzw/;1610621087;14;True;False;anime;t5_2qh22;;0;[]; -[];;;FarrelMFajar;;;[];;;;text;t2_13bxx0;False;False;[];;"""My memories may be gone but my body will not forget the revenge."" and ""I will heal the world!"" is one way to tell the audience it's an edgy show. - -The English title of the light novel is ""The Redo of a Healing Magician: Transcendental Healing of Instant Death Magic and Skill Copying"". I guess they don't want it to be compared to ""Isekai skill copy"" series.";False;False;;;;1610556639;;False;{};gj4mlkk;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4mlkk/;1610621095;226;True;False;anime;t5_2qh22;;0;[]; -[];;;MobileTortoise;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Mobiletortoise;light;text;t2_gylu5;False;False;[];;Waiting for the uncensored version to watch it, but can abyone tell me how many chapters this episode covered? I'm a manga reader but am familiar with the LN as well.;False;False;;;;1610556641;;False;{};gj4mlpg;False;t3_kwisyw;False;False;t1_gj4cvpu;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4mlpg/;1610621097;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Monkeyy_D_LuFFY;;;[];;;;text;t2_1xt7n4da;False;False;[];;"Hey, -I wanted to know where can i watch fully uncensored version and when? -""Arigato ( ͡° ͜ʖ ͡°)""";False;False;;;;1610556644;;False;{};gj4mlww;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4mlww/;1610621101;0;True;False;anime;t5_2qh22;;0;[]; -[];;;dontloseyourway1610;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Marinate1016;light;text;t2_4wegnp53;False;False;[];;Not my proudest fap;False;False;;;;1610556725;;False;{};gj4msgn;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4msgn/;1610621202;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610556738;moderator;False;{};gj4mth4;False;t3_kwkfu1;False;True;t3_kwkfu1;/r/anime/comments/kwkfu1/does_anyone_know_where_this_character_is_from/gj4mth4/;1610621217;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;i am talking about normal comments just giving their opinions on the episode, and the discussion itself already has a 89% upvote ratio (~98% is the normal), so some people are going out of their way to downvote the show and everyone here;False;False;;;;1610556759;;False;{};gj4mv5h;False;t3_kwisyw;False;False;t1_gj4m05j;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4mv5h/;1610621243;6;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Oh my! I just realized how powerful his arm strength is and how good at maths he is. The coins dropped exactly on the tray. If he hadn't calculated the correct throwing motion, the coins would have kept going with him as that's how momentum works.;False;False;;;;1610556768;;False;{};gj4mvua;False;t3_kwk3f3;False;False;t3_kwk3f3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj4mvua/;1610621254;136;True;False;anime;t5_2qh22;;0;[]; -[];;;dontloseyourway1610;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Marinate1016;light;text;t2_4wegnp53;False;False;[];;Will the uncensored version be on hidive too?;False;False;;;;1610556784;;False;{};gj4mx6v;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4mx6v/;1610621275;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaperius;;;[];;;;text;t2_m3d68;False;True;[];;So basically the real version comes out on Thursday mornings, is that what I am reading?;False;False;;;;1610556861;;False;{};gj4n39m;False;t3_kwisyw;False;True;t1_gj4dzs8;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4n39m/;1610621367;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lute142000;;;[];;;;text;t2_53kdcq0t;False;False;[];;Hey,so mushoku tensei is one of the first isekai that go from baby to adult,sao game mechanica and shit,is this the 9ne who popularize rape revenge isskai story;False;False;;;;1610556893;;False;{};gj4n5wa;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4n5wa/;1610621407;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;Oh yeah, great point, as expected if a yusarin fan;False;False;;;;1610556896;;False;{};gj4n64e;True;t3_kwk3f3;False;False;t1_gj4mvua;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj4n64e/;1610621410;51;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptainBasculin;;;[];;;;text;t2_1570rw;False;False;[];;Pretty good so far, liked the animations.;False;False;;;;1610556918;;False;{};gj4n7v2;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4n7v2/;1610621437;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"of course, i have a big suspicious that they animated those love making scenes, it'll give us an idea of what they are willing to show to earn the certificate of ""i cant believe this is not hentai""";False;False;;;;1610556937;;False;{};gj4n9ea;False;t3_kwisyw;False;False;t1_gj4m6dh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4n9ea/;1610621459;39;True;False;anime;t5_2qh22;;0;[]; -[];;;Lute142000;;;[];;;;text;t2_53kdcq0t;False;False;[];;Tbh.,the conclusi9n of the first bitch,isnt satysfying enough;False;False;;;;1610556963;;False;{};gj4nbgx;False;t3_kwisyw;False;True;t1_gj4k0kj;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4nbgx/;1610621490;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Niener_11BananaBoys;;;[];;;;text;t2_66k3coga;False;False;[];;tokyo ghoul i think;False;False;;;;1610556966;;False;{};gj4nbp5;False;t3_kwkfu1;False;True;t3_kwkfu1;/r/anime/comments/kwkfu1/does_anyone_know_where_this_character_is_from/gj4nbp5/;1610621494;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;You must have thought the same thing, right? The coins shouldn't have stopped in mid air like they did. It's amazing.;False;False;;;;1610556973;;False;{};gj4nc8o;False;t3_kwk3f3;False;False;t1_gj4n64e;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj4nc8o/;1610621502;16;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610557023;;False;{};gj4ngaj;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4ngaj/;1610621565;3;True;False;anime;t5_2qh22;;0;[]; -[];;;janjicm;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/janjicm;light;text;t2_kx8ha8d;False;False;[];;I'm.. disappointed. I expected at least 500 comments with a lot of arguing.;False;False;;;;1610557041;;1610559252.0;{};gj4nhqg;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4nhqg/;1610621588;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;Last year's spicy winter anime was Interspecies Reviewers, Redo of Healer will be the spiciest winter anime of 2021.;False;False;;;;1610557054;;False;{};gj4nisv;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4nisv/;1610621605;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;GMorelli;;;[];;;;text;t2_13n5gj;False;False;[];;"My searches say its from a table top game called ""Nechronica -The Long Long Sequel-"", this artwork is created by ""hetza (hellshock)""";False;False;;;;1610557127;;1610557398.0;{};gj4norm;False;t3_kwkfu1;False;True;t3_kwkfu1;/r/anime/comments/kwkfu1/does_anyone_know_where_this_character_is_from/gj4norm/;1610621697;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;"Fully agreed. I just understand this ""ooooh what is X going to think??"" mentality. Do these people not have enough drama to chew on already?";False;False;;;;1610557132;;False;{};gj4np7l;False;t3_kwisyw;False;False;t1_gj4jnvk;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4np7l/;1610621704;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610557155;;False;{};gj4nr20;False;t3_kwisyw;False;True;t1_gj4j9xx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4nr20/;1610621733;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"TNK really upped their game here on this one. They really came from a long way since High School DxD. - -They have to go nuts it if they're gonna show and sell the most controversial scenes in high fucking quality. If they're going to animate this dark edgy fantasy, they better go full edge.";False;False;;;;1610557167;;1610560076.0;{};gj4ns17;False;t3_kwisyw;False;False;t1_gj4ecfv;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4ns17/;1610621747;55;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;Stop. Get help.;False;False;;;;1610557169;;False;{};gj4ns7p;False;t3_kwisyw;False;False;t1_gj4lv16;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4ns7p/;1610621750;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Heigou;;;[];;;;text;t2_c23wx;False;False;[];;"the downvotes are probably cause most people just want to enjoy watching an edgy trash anime without people telling them how twitter is going to have a meltdown in every other comment. - -I'll watch this later with my american boys.";False;False;;;;1610557194;;False;{};gj4nubf;False;t3_kwisyw;False;False;t1_gj4h9ni;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4nubf/;1610621781;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NMN_tog;;;[];;;;text;t2_5ou6jdqo;False;False;[];;"I like that you call it **""heal""** version.";False;False;;;;1610557199;;False;{};gj4nurd;False;t3_kwisyw;False;False;t1_gj4delm;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4nurd/;1610621788;5;True;False;anime;t5_2qh22;;0;[]; -[];;;soberboijay;;;[];;;;text;t2_5dpgzx1v;False;False;[];;Watched it and dropped it in the middle. Too cringe;False;False;;;;1610557223;;False;{};gj4nwq3;True;t3_kwj9gp;False;True;t1_gj4kntb;/r/anime/comments/kwj9gp/looking_for_an_anime_where_male_mc_gets_married/gj4nwq3/;1610621818;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NMN_tog;;;[];;;;text;t2_5ou6jdqo;False;False;[];;5 hours later;False;False;;;;1610557237;;False;{};gj4nxw3;False;t3_kwisyw;False;True;t1_gj4jgq2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4nxw3/;1610621837;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Rucati;;;[];;;;text;t2_mdl3f;False;False;[];;"Honestly I'm actually a bit interested in the premise and how he's planning on getting his revenge. I think I'll be waiting for the uncensored version from now on for... reasons... but other than that I'm definitely interested enough after one episode to keep watching it. - -Could have done without that eye kissing scene though, kind of freaked me out just imagining someone kissing my eye.";False;False;;;;1610557244;;False;{};gj4nyfy;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4nyfy/;1610621847;8;True;False;anime;t5_2qh22;;0;[]; -[];;;TrueZach;;;[];;;;text;t2_17ctwo;False;False;[];;It went up to the point where He healed the swordswoman. I don't remember where that is in the manga though;False;False;;;;1610557260;;False;{};gj4nzpr;False;t3_kwisyw;False;True;t1_gj4mlpg;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4nzpr/;1610621867;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;Surprisingly, TNK is on point with the animation so far, it seems they are spicing it up in preparation for the big dark wave to come that this series will bring soon.;False;False;;;;1610557276;;False;{};gj4o11a;False;t3_kwisyw;False;True;t1_gj4efk2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4o11a/;1610621886;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Presillience_fr;;;[];;;;text;t2_7rrw73sc;False;False;[];;IT should air in some hours. Count approximatively 3/4 hour between the censored and uncensored version.;False;False;;;;1610557277;;False;{};gj4o146;False;t3_kwisyw;False;True;t1_gj4mlww;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4o146/;1610621888;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AnotherFakeRat;;;[];;;;text;t2_119khxfe;False;False;[];;Reading LN/WN with fantasy rpg music is pretty good ngl;False;False;;;;1610557293;;False;{};gj4o2fc;False;t3_kwisyw;False;True;t1_gj4lhdo;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4o2fc/;1610621908;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hunger1203;;;[];;;;text;t2_5ogdocge;False;False;[];;"Hmm i see, btw what manga chapter is the ""declaration of war"" episode?";False;False;;;;1610557315;;False;{};gj4o49c;True;t3_kwk144;False;False;t1_gj4lqzi;/r/anime/comments/kwk144/just_a_question_guys/gj4o49c/;1610621937;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610557334;;False;{};gj4o5sw;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4o5sw/;1610621961;0;True;False;anime;t5_2qh22;;0;[]; -[];;;123475899573;;;[];;;;text;t2_9p0vjg3z;False;False;[];;Oh yes I’m ready for the twitter explosion it will be glorious to watch;False;True;;comment score below threshold;;1610557342;;False;{};gj4o6fi;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4o6fi/;1610621972;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;levelling up through sex? Yup, that's hentai;False;False;;;;1610557348;;False;{};gj4o6yn;False;t3_kwisyw;False;False;t1_gj4k0kj;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4o6yn/;1610621980;200;True;False;anime;t5_2qh22;;0;[]; -[];;;Lute142000;;;[];;;;text;t2_53kdcq0t;False;False;[];;?;False;False;;;;1610557353;;False;{};gj4o7ah;False;t3_kwisyw;False;False;t1_gj4ic0d;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4o7ah/;1610621985;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NMN_tog;;;[];;;;text;t2_5ou6jdqo;False;False;[];;Same here waiting...... keeping a little more patience.;False;False;;;;1610557362;;False;{};gj4o831;False;t3_kwisyw;False;True;t1_gj4jhcx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4o831/;1610621996;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610557385;;False;{};gj4o9xy;False;t3_kwisyw;False;True;t1_gj4kp17;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4o9xy/;1610622025;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;100 is what the wiki says.;False;False;;;;1610557396;;False;{};gj4oas4;False;t3_kwk144;False;True;t1_gj4o49c;/r/anime/comments/kwk144/just_a_question_guys/gj4oas4/;1610622039;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Scotty10711;;;[];;;;text;t2_298yx9z4;False;False;[];;titan ae?;False;False;;;;1610557400;;False;{};gj4ob5u;False;t3_kwitjm;False;True;t3_kwitjm;/r/anime/comments/kwitjm/not_sure_what_the_anime_movie_is/gj4ob5u/;1610622045;1;True;False;anime;t5_2qh22;;0;[]; -[];;;oogieogie;;;[];;;;text;t2_607w7;False;False;[];;so how is it censored? doable,unwatchable, or terraformers level?;False;False;;;;1610557410;;False;{};gj4obx9;False;t3_kwisyw;False;False;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4obx9/;1610622057;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;its not even isekai, smh;False;False;;;;1610557415;;False;{};gj4ocbr;False;t3_kwisyw;False;False;t1_gj4ee78;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4ocbr/;1610622063;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610557491;;False;{};gj4oigw;False;t3_kwisyw;False;True;t1_gj4nr20;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4oigw/;1610622163;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"The trailer said 完全《回復》(ヒール), Translated, it should've been called Complete 'Recovery' (Heal) version. But somehow I only remembered the ヒール part so I called it the ""heal version"". The 28:00 really made me confused though.";False;False;;;;1610557501;;False;{};gj4oj8w;False;t3_kwisyw;False;False;t1_gj4nurd;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4oj8w/;1610622174;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BaizuosExterminator;;;[];;;;text;t2_9ibfc8b0;False;False;[];;Cause it's fun;False;False;;;;1610557527;;False;{};gj4olca;False;t3_kwisyw;False;False;t1_gj4j9xx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4olca/;1610622210;25;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610557528;;False;{};gj4oleq;False;t3_kwisyw;False;True;t1_gj4nr20;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4oleq/;1610622211;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;Yeah;False;False;;;;1610557530;;False;{};gj4olkr;True;t3_kwk3f3;False;False;t1_gj4nc8o;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj4olkr/;1610622213;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610557577;;False;{};gj4opa6;False;t3_kwisyw;False;True;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4opa6/;1610622271;12;True;False;anime;t5_2qh22;;0;[]; -[];;;BaizuosExterminator;;;[];;;;text;t2_9ibfc8b0;False;False;[];;Imagine giving a single shit about twitter.;False;False;;;;1610557602;;False;{};gj4ora4;False;t3_kwisyw;False;False;t1_gj4mhpc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4ora4/;1610622302;80;True;False;anime;t5_2qh22;;0;[]; -[];;;mf_ghost;;;[];;;;text;t2_dhuwg;False;False;[];;Incel is involuntary celibate, he regularly rapes women, so not an incel;False;False;;;;1610557606;;False;{};gj4orlv;False;t3_kwisyw;False;False;t1_gj4iuji;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4orlv/;1610622307;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610557624;;False;{};gj4osze;False;t3_kwisyw;False;True;t1_gj4nr20;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4osze/;1610622327;3;True;False;anime;t5_2qh22;;0;[]; -[];;;stiveooo;;;[];;;;text;t2_9amaa;False;False;[];;It was good, had good animation cause the manga style is really cringy and teenagerish/edgy, this style is better cause it looks normal;False;False;;;;1610557631;;False;{};gj4otjc;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4otjc/;1610622337;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jaideep1211;;;[];;;;text;t2_ba11kjh;False;False;[];;!remindme 12hrs;False;False;;;;1610557639;;False;{};gj4ou39;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4ou39/;1610622345;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Purple_Haze_Requiem;;;[];;;;text;t2_5b012gbe;False;False;[];;The Quintessential Quintuplets maybe;False;False;;;;1610557652;;False;{};gj4ov7w;False;t3_kwj9gp;False;True;t3_kwj9gp;/r/anime/comments/kwj9gp/looking_for_an_anime_where_male_mc_gets_married/gj4ov7w/;1610622363;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ynairo;;;[];;;;text;t2_13fbnf;False;False;[];;"I'm not sure how the censor works in there, but if at the beginning there's already the mature warning, I wonder if covering [half](https://imgupload.io/images/2021/01/13/healer.jpg) the screen was really necessary. Guess I'll watch the uncensored version later. Lots of static images in the sex scene too, bit strange. - -Decent episode overall, good animation and ost, but damn do the voice acting make the downsides even worse, not the VA fault of course, he's done a good job, but that evil laughter at the lake is painful to look at, its cringe in the manga but even worse in the anime lol. I'd much rather he carries out his revenge (with the torture/rape/whatever), but with a more ""normal"" behavior like the Shield Hero or Goblin slayer.";False;False;;;;1610557759;;False;{};gj4p3pp;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4p3pp/;1610622498;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rinascimentale;;;[];;;;text;t2_zqupj;False;False;[];;Thanks I'll have that to watch when I get home from work tonight :);False;False;;;;1610557770;;False;{};gj4p4le;False;t3_kwisyw;False;True;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4p4le/;1610622512;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kikogeva;;;[];;;;text;t2_nw4g3j0;False;False;[];;Thx for the update bruh;False;False;;;;1610557776;;False;{};gj4p54z;False;t3_kwisyw;False;False;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4p54z/;1610622520;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Careless_Skin4048;;;[];;;;text;t2_9btoyywc;False;False;[];;I read the manga, and it was very enjoyable. The anime is also good, and really looking forward to the uncensored version (for, practical purposes..);False;False;;;;1610557794;;False;{};gj4p6kh;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4p6kh/;1610622543;0;True;False;anime;t5_2qh22;;0;[]; -[];;;VeryFunnyValentine;;;[];;;;text;t2_4uph3tsh;False;False;[];;It's literally like this in Isekai Harem Monogatari (MC gets isekai'd, turns out his sperm make women much stronger, you know the rest);False;False;;;;1610557849;;False;{};gj4pavb;False;t3_kwisyw;False;False;t1_gj4o6yn;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4pavb/;1610622611;113;True;False;anime;t5_2qh22;;0;[]; -[];;;PlatinumPlyr02;;;[];;;;text;t2_7axolb3s;False;False;[];;It kind of sounds like the intro to Gurren Lagaan, the first scene in episode one sounds very similar to that.;False;False;;;;1610557860;;False;{};gj4pbnh;False;t3_kwitjm;False;True;t3_kwitjm;/r/anime/comments/kwitjm/not_sure_what_the_anime_movie_is/gj4pbnh/;1610622622;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jaideep1211;;;[];;;;text;t2_ba11kjh;False;False;[];;"RemindMe! 12 hour ""echhi time""";False;False;;;;1610557867;;False;{};gj4pc7n;False;t3_kwisyw;False;True;t1_gj4ou39;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4pc7n/;1610622633;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FEARTHESHADOWS;;;[];;;;text;t2_5hm4y9ex;False;False;[];;"hey man is gigguk gonna stream him watching redo of healer? - -cos if he does send me a link to his stream";False;False;;;;1610557912;;False;{};gj4pfwu;False;t3_kwisyw;False;True;t1_gj4jkr7;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4pfwu/;1610622690;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TheAughat;;;[];;;;text;t2_w0842;False;False;[];;"Yeah, no that doesn't make sense. Take a look at all the comments downvoted at the bottom of the thread. A lot of them are just talking about the show or how they're excited to watch it or asking about the uncensored version. - -Heck, *your* comment is on -2 right now lol";False;False;;;;1610557920;;False;{};gj4pglp;False;t3_kwisyw;False;True;t1_gj4nubf;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4pglp/;1610622702;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LeloThePGG;;;[];;;;text;t2_qbt1b;False;False;[];;Honestly I'm just here to see the internet reaction(s) to this, whatever they may be;False;False;;;;1610557927;;False;{};gj4ph4h;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4ph4h/;1610622709;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;tbh it's just few seconds in this episode, not worth waiting imho;False;False;;;;1610557981;;False;{};gj4plkc;False;t3_kwisyw;False;False;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4plkc/;1610622781;16;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610558020;;False;{};gj4popc;False;t3_kwisyw;False;True;t1_gj4ngaj;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4popc/;1610622830;1;True;False;anime;t5_2qh22;;0;[]; -[];;;grizzchan;;;[];;;dark;text;t2_nn6d9;False;True;[];;That's because manufacturing outrage gives shitty anitubers views.;False;False;;;;1610558028;;False;{};gj4ppbx;False;t3_kwisyw;False;False;t1_gj4jnvk;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4ppbx/;1610622840;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Veradill;;;[];;;;text;t2_3z3d0olb;False;False;[];;i wonder what there even gonna do like change the name or something where would it even stream;False;False;;;;1610558032;;False;{};gj4ppmz;False;t3_kwisyw;False;True;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4ppmz/;1610622845;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkWorld97;;MAL;[];;https://myanimelist.net/profile/;dark;text;t2_aqfg4;False;False;[];;But future episodes tho.;False;False;;;;1610558033;;False;{};gj4pppw;False;t3_kwisyw;False;False;t1_gj4plkc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4pppw/;1610622846;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Pootbird1999;;;[];;;;text;t2_3jid5mbl;False;False;[];;Where so you find it? I know it says AT-X, which is a Japanese network, but where is it online?;False;False;;;;1610558037;;False;{};gj4pq1f;False;t3_kwisyw;False;False;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4pq1f/;1610622851;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;yea, that probably won't be the case for every episode;False;False;;;;1610558066;;False;{};gj4psf7;False;t3_kwisyw;False;False;t1_gj4pppw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4psf7/;1610622889;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Renard888;;;[];;;;text;t2_2dnrowir;False;False;[];;No I have watched Gurren Lagaan its not it;False;False;;;;1610558090;;False;{};gj4puba;True;t3_kwitjm;False;True;t1_gj4pbnh;/r/anime/comments/kwitjm/not_sure_what_the_anime_movie_is/gj4puba/;1610622921;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_-ammar-_;;;[];;;;text;t2_4qobazxv;False;False;[];;im not bitching *I'm enjoying* other people's cry and pain;False;False;;;;1610558091;;False;{};gj4pudl;False;t3_kwisyw;False;False;t1_gj4jgwc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4pudl/;1610622922;32;True;False;anime;t5_2qh22;;0;[]; -[];;;Renard888;;;[];;;;text;t2_2dnrowir;False;False;[];;No its an anime;False;False;;;;1610558094;;False;{};gj4pun9;True;t3_kwitjm;False;False;t1_gj4ob5u;/r/anime/comments/kwitjm/not_sure_what_the_anime_movie_is/gj4pun9/;1610622926;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Renard888;;;[];;;;text;t2_2dnrowir;False;False;[];;I dont think thats it the style was more realistic;False;False;;;;1610558109;;False;{};gj4pvuf;True;t3_kwitjm;False;True;t1_gj4dikq;/r/anime/comments/kwitjm/not_sure_what_the_anime_movie_is/gj4pvuf/;1610622946;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sremcanin;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/mrkvaa;light;text;t2_4xt3dgl2;False;False;[];;"I started reading manga two days ago. It definetly has a darker tone to it, and isn't the same experience as watching the anime. You don't get that hype feeling in your chest as often, but more of a sad feeling and engagement - -If you want to read from season 4 episode 5, it ends on chapter 100";False;False;;;;1610558120;;False;{};gj4pwpf;False;t3_kwk144;False;True;t3_kwk144;/r/anime/comments/kwk144/just_a_question_guys/gj4pwpf/;1610622959;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610558134;moderator;False;{};gj4pxsu;False;t3_kwisyw;False;True;t1_gj4nr20;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4pxsu/;1610622977;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;SourceIsMyAss;;;[];;;;text;t2_534bvt8v;False;False;[];;Up to end of Ch 4.1 (manga).;False;False;;;;1610558150;;False;{};gj4pz3z;False;t3_kwisyw;False;False;t1_gj4mlpg;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4pz3z/;1610622998;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Bosseffs;;MAL;[];;http://myanimelist.net/profile/Zynapse;dark;text;t2_6pa52;False;False;[];;Well well well;False;False;;;;1610558192;;False;{};gj4q2fo;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4q2fo/;1610623051;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610558220;moderator;False;{};gj4q4n8;False;t3_kwisyw;False;True;t1_gj4ngaj;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4q4n8/;1610623085;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610558228;;False;{};gj4q5cp;False;t3_kwisyw;False;True;t1_gj4j9xx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4q5cp/;1610623096;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;_-ammar-_;;;[];;;;text;t2_4qobazxv;False;False;[];;it will be a season of 1st episode of Goblin Slayer with extra step;False;False;;;;1610558296;;False;{};gj4qaov;False;t3_kwisyw;False;True;t1_gj4jgh2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4qaov/;1610623176;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Careless_Skin4048;;;[];;;;text;t2_9btoyywc;False;False;[];;I watched the first episode, and since I heard there was going to be an uncensored version, I just skipped to the good moments. I'm going to wait for the uncensored version to watch the whole episode, which is something I could recommend doing, whether you read the manga or not. (Or NL);False;False;;;;1610558346;;False;{};gj4qemc;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4qemc/;1610623240;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Troodash;;;[];;;;text;t2_fzwgn;False;False;[];;"Check out things by the same directors: - -So for Promare: Dead Leaves & Panty and Stocking. - -and for Redline: Lupin III: Jigen's Gravestone (and the other movies in the trilogy). - -for some other recommendations: FLCL, Gunbuster & Diebuster, Space Dandy, Brand New Animal, Re: Cutey Honey & Star Driver. - -I'll also throw in Hellsing Ultimate, Drifters, Kekkai Sensen, Mob Psycho 100, Steamboy and Sword of the Stranger.";False;False;;;;1610558369;;False;{};gj4qgiu;False;t3_kwj3mm;False;True;t3_kwj3mm;/r/anime/comments/kwj3mm/movieshow_similar_to_promare_or_redline/gj4qgiu/;1610623269;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_-ammar-_;;;[];;;;text;t2_4qobazxv;False;False;[];;"> also people probably move on in like a week - -my day is ruined and my disappointment is immeasurable";False;False;;;;1610558404;;False;{};gj4qjde;False;t3_kwisyw;False;True;t1_gj4jnvk;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4qjde/;1610623315;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shona_Cloverfield;;;[];;;;text;t2_4zv9izq;False;False;[];;"Normally, this show seems like something I could enjoy. - -I mean, i loved rising of the shield hero, which just like this started off as an edgy revenge isekai. - -However, I'm not really sure why, but this show gives me some really really nasty vibes. I can't quite place my finger on it, but it feels disgusting, revolting. - -Does anybody know if this show is any good? - -To be honest, I think its because I'm just getting real rapey vibes from the mc, and to be honest its absolutely disgusting me, even though this would normally be a show for me. - -I'm not sure tho, its just a feeling that I cant quite place my finger on.";False;False;;;;1610558419;;False;{};gj4qkk9;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4qkk9/;1610623333;24;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Meemeli;;;[];;;;text;t2_2o1rogl;False;False;[];;"Jun Maeda, who wrote Angel Beats and The Day I Became A God, has written a few other tearjerker anime and visual novels (that have anime adaptations). I quite enjoyed Clannad (followed by Clannad: After Story). His other works also include Kanon, Air, Little Busters and Charlotte. - -You should also check out some of Makoto Shinkai's movies (5 centimeters per second, The Garden of Words, Your Name, Weathering With You) - -As for others anime with feels, check out the following: - -\-I want to eat your pancreas (movie) - -\-Anohana - -\-A Silent Voice (movie) - -\-Madoka Magica - -\-Wolf Children (movie)";False;False;;;;1610558446;;False;{};gj4qmpx;False;t3_kwjl1j;False;True;t3_kwjl1j;/r/anime/comments/kwjl1j/all_aboard_the_feel_train/gj4qmpx/;1610623367;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;For people outside of Japan, you have to sail the seven seas for it.;False;False;;;;1610558466;;False;{};gj4qoao;False;t3_kwisyw;False;False;t1_gj4pq1f;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4qoao/;1610623390;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Beybladeer;;;[];;;;text;t2_ionrm5z;False;False;[];;where do you see isekai here;False;False;;;;1610558540;;False;{};gj4qu69;False;t3_kwisyw;False;False;t1_gj4lhvo;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4qu69/;1610623486;16;True;False;anime;t5_2qh22;;0;[]; -[];;;SatsumaComic;;;[];;;;text;t2_11m5mk;False;False;[];;"This is not a spoiler -This is a question.";False;False;;;;1610558543;;False;{};gj4quer;False;t3_kwisyw;False;False;t1_gj4pxsu;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4quer/;1610623490;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610558543;;False;{};gj4quew;False;t3_kwisyw;False;True;t1_gj4qkk9;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4quew/;1610623490;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Beybladeer;;;[];;;;text;t2_ionrm5z;False;False;[];;where do you see isekai here;False;False;;;;1610558552;;False;{};gj4qv6r;False;t3_kwisyw;False;False;t1_gj4n5wa;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4qv6r/;1610623502;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bananeeek;;MAL;[];;https://myanimelist.net/animelist/bananek;dark;text;t2_m3u6b;False;False;[];;I hope so. But I also hope this kid will get less edgy in the following episodes. So far I'm not sure this VA was a good choice, he sounds childish. I'd get more hyped if Fukuyama Jun voiced him.;False;False;;;;1610558573;;False;{};gj4qws4;False;t3_kwisyw;False;False;t1_gj4qaov;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4qws4/;1610623527;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hell-schwarz;;;[];;;;text;t2_z247q;False;False;[];;Well they usually don't get translated to my language and reading long books in English is not that fun to me;False;False;;;;1610558589;;False;{};gj4qy2g;False;t3_kwisyw;False;True;t1_gj4o2fc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4qy2g/;1610623547;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610558618;;False;{};gj4r0e6;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4r0e6/;1610623585;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Meemeli;;;[];;;;text;t2_2o1rogl;False;False;[];;Clannad (followed by Clannad: After Story);False;False;;;;1610558640;;False;{};gj4r28y;False;t3_kwj9gp;False;True;t3_kwj9gp;/r/anime/comments/kwj9gp/looking_for_an_anime_where_male_mc_gets_married/gj4r28y/;1610623614;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;I didn't say it was a spoiler. It is a question about the source, so it belongs in the source corner.;False;True;;comment score below threshold;;1610558655;;False;{};gj4r3ek;False;t3_kwisyw;False;True;t1_gj4quer;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4r3ek/;1610623632;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;soberboijay;;;[];;;;text;t2_5dpgzx1v;False;False;[];;Really liked that one;False;False;;;;1610558668;;False;{};gj4r4l0;True;t3_kwj9gp;False;True;t1_gj4r28y;/r/anime/comments/kwj9gp/looking_for_an_anime_where_male_mc_gets_married/gj4r4l0/;1610623650;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_-ammar-_;;;[];;;;text;t2_4qobazxv;False;False;[];;same here;False;False;;;;1610558694;;False;{};gj4r6pq;False;t3_kwisyw;False;True;t1_gj4nhqg;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4r6pq/;1610623683;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610558709;;False;{};gj4r7xi;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4r7xi/;1610623702;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnotherFakeRat;;;[];;;;text;t2_119khxfe;False;False;[];;Same... I was lucky some dude translated it to Spanish xd. But anyway, good music always makes it cool regarding the language 👍;False;False;;;;1610558715;;False;{};gj4r8di;False;t3_kwisyw;False;True;t1_gj4qy2g;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4r8di/;1610623709;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jojo_is_trash;;;[];;;;text;t2_595dn1yo;False;False;[];;And we let the shitstorm begin...;False;False;;;;1610558726;;False;{};gj4r98u;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4r98u/;1610623723;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kenjasama;;;[];;;;text;t2_9q2aelyc;False;False;[];;"This is the current evaluation. It seems that many people find it interesting. - -[https://youpoll.me/49716/r](https://youpoll.me/49716/r)";False;False;;;;1610558731;;False;{};gj4r9ll;False;t3_kwisyw;False;True;t1_gj4qkk9;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4r9ll/;1610623729;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;JinNrkm77;;;[];;;;text;t2_9i6dazn8;False;False;[];;"3d kanojo - rom/drama wedding last ep - -Grancrest senki - rom/fantasy double wedding last ep";False;False;;;;1610558784;;False;{};gj4rduq;False;t3_kwj9gp;False;True;t3_kwj9gp;/r/anime/comments/kwj9gp/looking_for_an_anime_where_male_mc_gets_married/gj4rduq/;1610623794;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bromeek;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Bromek/;light;text;t2_qmc60;False;False;[];;[Duality of man](https://i.imgur.com/NzmMUF8.png);False;False;;;;1610558815;;1610559027.0;{};gj4rge1;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4rge1/;1610623835;117;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610558843;moderator;False;{};gj4rinx;False;t3_kwisyw;False;True;t1_gj4r7xi;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4rinx/;1610623871;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610558857;moderator;False;{};gj4rjq1;False;t3_kwisyw;False;True;t1_gj4quew;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4rjq1/;1610623890;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jojo_is_trash;;;[];;;;text;t2_595dn1yo;False;False;[];;I think it only gets trashy by the next few episodes;False;False;;;;1610558887;;False;{};gj4rlh6;False;t3_kwisyw;False;False;t1_gj4lhvo;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4rlh6/;1610623917;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Lute142000;;;[];;;;text;t2_53kdcq0t;False;False;[];;Oh yeag,forget cause of the trope and fantasy setting;False;False;;;;1610558895;;False;{};gj4rm42;False;t3_kwisyw;False;True;t1_gj4qv6r;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4rm42/;1610623926;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"*Goddamn, you are telling me this author is the same one as Orc Harem Manga/WN?!!!!!?????* - -I'm loving the Orc Harem manga and found it hilarious and enjoyable. Can't believe it's by the same guy who did Redo of Healer.";False;False;;;;1610558909;;False;{};gj4rnjs;False;t3_kwisyw;False;False;t1_gj4j5sq;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4rnjs/;1610623949;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Pootbird1999;;;[];;;;text;t2_3jid5mbl;False;False;[];;Yar har, fiddle dee dee~;False;False;;;;1610558930;;False;{};gj4rpel;False;t3_kwisyw;False;False;t1_gj4qoao;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4rpel/;1610623979;9;True;False;anime;t5_2qh22;;0;[]; -[];;;soberboijay;;;[];;;;text;t2_5dpgzx1v;False;False;[];;Watched both but i'm gonna rewatch 3d kanojo;False;False;;;;1610558983;;False;{};gj4rtoo;True;t3_kwj9gp;False;True;t1_gj4rduq;/r/anime/comments/kwj9gp/looking_for_an_anime_where_male_mc_gets_married/gj4rtoo/;1610624050;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Admiral_Joker;;;[];;;;text;t2_muyeqq;False;False;[];;Wait till Ep 2;False;False;;;;1610559008;;False;{};gj4rvnx;False;t3_kwisyw;False;True;t1_gj4nhqg;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4rvnx/;1610624082;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"Lol everybody is waiting for the uncensored version nobody is actually discussing this anime lol - - -The uncensored version can't come soon enough";False;False;;;;1610559033;;False;{};gj4rxoj;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4rxoj/;1610624115;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SYZekrom;;;[];;;;text;t2_i5y6z;False;False;[];;"[Loli fairy, nice](https://cdn.discordapp.com/attachments/621713361390010378/798958869165637643/unknown.png) - -Ok anyway so it feels like the twist is that the princess here isn't the villain in this new timeline - -Oh ok - -[So it's literally that level of ecchi](https://cdn.discordapp.com/attachments/621713361390010378/798964188705718282/unknown.png) - -And also that means there's no point in watching this until a blu-ray drops huh - -But anyway so he can steal memories wth his healing and is going to eventually see the princess's memories and figure out she was mind controlled or some shit is what I'm guessing - -Ok nope guess she's actually just a bitch - -Dunno what was with all the sad faces she was making in other scenes like the show was telling us she had some other secret - -OK now I'm suspicious again when he straight up said 'I'm glad you're as bad as the first time around' - -> The Healer Ruins Princess Flare - -oh - -Well if something's happening that quickly whatever I'm thinking'll probably get answered next week - -But again imagine watching this version of this show - -OH the uncensored version just airs later the same day huh - -So I can actually watch this wow - -Well, be back in a few hours then";False;False;;;;1610559044;;False;{};gj4rymv;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4rymv/;1610624130;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;Hopefully in this wave of edgy fantasy reincarnation adaptations, *The Dark Massacre of the Vengeful Hero* gets a chance. It's one of the funnest ones imo.;False;False;;;;1610559064;;False;{};gj4s05c;False;t3_kwisyw;False;False;t1_gj4jjd8;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4s05c/;1610624155;140;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610559103;;False;{};gj4s3e4;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4s3e4/;1610624207;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610559131;;False;{};gj4s5ks;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4s5ks/;1610624244;-4;False;False;anime;t5_2qh22;;0;[]; -[];;;Brook0999;;;[];;;;text;t2_ycupg;False;False;[];;God raul;False;False;;;;1610559131;;False;{};gj4s5np;False;t3_kwisyw;False;False;t1_gj4s05c;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4s5np/;1610624245;49;True;False;anime;t5_2qh22;;0;[]; -[];;;ShadowthecatXD;;;[];;;;text;t2_lpruw;False;False;[];;Bruh TV shows from the US or Europe put this shit to shame. Go watch your average HBO or Cinemax show.;False;False;;;;1610559145;;False;{};gj4s6qx;False;t3_kwisyw;False;False;t1_gj4q5cp;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4s6qx/;1610624262;16;True;False;anime;t5_2qh22;;0;[]; -[];;;icewallow1;;;[];;;;text;t2_58dloasz;False;False;[];;Anybody know where the uncensored versions are going to be on.;False;False;;;;1610559162;;False;{};gj4s85p;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4s85p/;1610624284;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jojo_is_trash;;;[];;;;text;t2_595dn1yo;False;False;[];;">To be honest, I think its because I'm just getting real rapey vibes from the mc - -Oh, you have no idea how spot on you are";False;False;;;;1610559166;;False;{};gj4s8g7;False;t3_kwisyw;False;False;t1_gj4qkk9;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4s8g7/;1610624288;65;True;False;anime;t5_2qh22;;0;[]; -[];;;janjicm;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/janjicm;light;text;t2_kx8ha8d;False;False;[];;"that means that nothing much happened during ep 1? -Understandable then";False;False;;;;1610559226;;False;{};gj4sdbv;False;t3_kwisyw;False;True;t1_gj4rvnx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4sdbv/;1610624367;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SYZekrom;;;[];;;;text;t2_i5y6z;False;False;[];;Damn I've watched one or two of his videos about vtubers but he's really *the* anime guy huh?;False;False;;;;1610559238;;False;{};gj4sean;False;t3_kwisyw;False;False;t1_gj4jkr7;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4sean/;1610624383;12;True;False;anime;t5_2qh22;;0;[]; -[];;;jojo_is_trash;;;[];;;;text;t2_595dn1yo;False;False;[];;Expect the first one to happen in an episode or two;False;False;;;;1610559278;;False;{};gj4shho;False;t3_kwisyw;False;False;t1_gj4it1m;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4shho/;1610624434;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"People are saying 3-4 hours but I think it going to be closer to 24h just like Peter grill - -Well when this thread blows up you will find out never the less";False;False;;;;1610559279;;False;{};gj4shll;False;t3_kwisyw;False;True;t1_gj4s85p;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4shll/;1610624436;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610559308;;False;{};gj4sjvo;False;t3_kwisyw;False;False;t1_gj4shll;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4sjvo/;1610624473;1;True;False;anime;t5_2qh22;;0;[]; -[];;;baquea;;;[];;;;text;t2_j3k0u;False;True;[];;"> Thursday mornings - -Yes, but because this is Japan they call it Wednesday at 28 o'clock.";False;False;;;;1610559347;;False;{};gj4sn1o;False;t3_kwisyw;False;False;t1_gj4n39m;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4sn1o/;1610624523;7;True;False;anime;t5_2qh22;;0;[]; -[];;;notathrowaway75;;MAL;[];;https://myanimelist.net/profile/notathrowaway75;dark;text;t2_fomut;False;False;[];;"Way more people criticized it for being gratuitous than it being an incel fantasy. A claim you can definitely argue against, but a valid one. - -A much more recent example was the Uzaki ""controversy."" One where the reaction to whatever criticism there was absolutely more extensive than the criticism itself. - -And the controversy this show will spawn will be completely valid. Redo of Healer is trash.";False;False;;;;1610559358;;1610559552.0;{};gj4snxg;False;t3_kwisyw;False;False;t1_gj4l0ja;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4snxg/;1610624537;78;True;False;anime;t5_2qh22;;0;[]; -[];;;Loremeister;;;[];;;;text;t2_tfhkl;False;False;[];;Don't mind me, I'm here just see the shitstorm this anime is gonna raise;False;False;;;;1610559363;;False;{};gj4soc0;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4soc0/;1610624544;148;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610559391;;False;{};gj4sqlp;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4sqlp/;1610624580;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Reemys;;;[];;;;text;t2_o0hwpg4;False;False;[];;"It is definitely an unhealthy, alarming fantasy, but for what group of people is arguable. This? The same story, but the target audience might as well be different, though intersecting. - -Twitter is a decadent echo-chamber for people with attention issues, but those behind this and the Goblin Slayer are not much better, if any better at all.";False;True;;comment score below threshold;;1610559392;;False;{};gj4sqn0;False;t3_kwisyw;False;True;t1_gj4l0ja;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4sqn0/;1610624580;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;SourceIsMyAss;;;[];;;;text;t2_534bvt8v;False;False;[];;Large sections are completely blacked out. I suppose it ruins the “immersion”. But that’s version with the highest level of censorship.;False;False;;;;1610559433;;1610584026.0;{};gj4sty1;False;t3_kwisyw;False;False;t1_gj4obx9;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4sty1/;1610624634;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;" -This feels like a manga spoiler thread where everybody is waiting for the leaks to drop - -In this case it is the uncensored version - -This is fking crazy lol";False;False;;;;1610559483;;False;{};gj4sxy0;False;t3_kwisyw;False;False;t1_gj4soc0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4sxy0/;1610624696;74;True;False;anime;t5_2qh22;;0;[]; -[];;;Loremeister;;;[];;;;text;t2_tfhkl;False;False;[];;"I use twitter just for two things: art and porn. - -It shouldn't have any other use other than those two";False;False;;;;1610559484;;False;{};gj4sy26;False;t3_kwisyw;False;False;t1_gj4ora4;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4sy26/;1610624699;64;True;False;anime;t5_2qh22;;0;[]; -[];;;OneHappyMelon;;;[];;;;text;t2_ll14b;False;False;[];;"Damn. I read the manga and thought that it was ok with some dumb power system, bullshit hero hax on the protagonist's part, and some edgy sex shit (which wasnt too unbearable, even funny at times due to characters being evil assholes for no good reason whatsoever). - -But hot damn, I actually enjoyed it animated. The animation quality is similar to Shield Hero, music scoring is on point, along with the voice acting as well. 13 minutes in and I felt that I was watching a decent isekai anime. If this quality stays consistent, then all the other bullshit and edginess from the source material could even be forgivable if we treat this as a popcorn show. Cant wait for the next episode.";False;False;;;;1610559518;;False;{};gj4t0uy;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4t0uy/;1610624744;18;True;False;anime;t5_2qh22;;0;[]; -[];;;FoxWithTooTails;;;[];;;;text;t2_8lplkhb4;False;False;[];;Where is it going to be possible to stream it?;False;False;;;;1610559528;;False;{};gj4t1ph;False;t3_kwisyw;False;False;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4t1ph/;1610624758;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Loremeister;;;[];;;;text;t2_tfhkl;False;False;[];;oh this is more edgy than dark. I don't know who told you the opposite, but they were REALLY wrong about this;False;False;;;;1610559605;;False;{};gj4t8hr;False;t3_kwisyw;False;False;t1_gj4jgh2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4t8hr/;1610624870;27;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Yeah, he is one of the most famous anime youtubers, check his videos about the anime seasons i discovered a lot of new anime there since 2014;False;False;;;;1610559680;;False;{};gj4teyu;False;t3_kwisyw;False;False;t1_gj4sean;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4teyu/;1610624972;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610559696;moderator;False;{};gj4tgd3;False;t3_kwisyw;False;True;t1_gj4sqlp;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4tgd3/;1610624993;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jithinrohith;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/leefez;dark;text;t2_o1yz9j9;False;False;[];;That was surprisingly a decent episode. I guess I'll have to wait another week to see if it's as bad as people say it is.;False;False;;;;1610559757;;False;{};gj4tljd;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4tljd/;1610625076;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"The art is also decently [detailed](https://i.imgur.com/Eu58rEF.jpg) with pretty [clean](https://i.imgur.com/mje1KtT.jpg) models of characters [up close.](https://i.imgur.com/mje1KtT.jpg) The voice acting is also solid. That's quite unexpected for an edgy ecchi fantasy series. - -[](#bigshock)";False;False;;;;1610559775;;False;{};gj4tn2w;False;t3_kwisyw;False;False;t1_gj4hw98;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4tn2w/;1610625101;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;Ok;False;False;;;;1610559779;;False;{};gj4tncr;False;t3_kwisyw;False;False;t1_gj4s5ks;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4tncr/;1610625105;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;False;[];;Any adaptation is possible in the post Ishuzoku Reviewers world.;False;False;;;;1610559812;;False;{};gj4tq2x;False;t3_kwisyw;False;False;t1_gj4j9xx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4tq2x/;1610625156;222;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;" ->for, practical purposes..) - -You mean for research?";False;False;;;;1610559828;;False;{};gj4trcq;False;t3_kwisyw;False;True;t1_gj4p6kh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4trcq/;1610625177;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;"###Stitches! - -* [Open Shirt Flare](https://i.imgur.com/Gv6k9Xe.jpg) - -* [Angry Flare](https://i.imgur.com/Yzc4Umq.jpg) - -* [Keyaru & Flare 1](https://i.imgur.com/7vOXGlR.jpg) - -* [Keyaru & Kureha](https://i.imgur.com/nwCYmzq.jpg) - -* [Grateful Kureha](https://i.imgur.com/8tTfGvE.jpg) - -* [Keyaru & Flare 2](https://i.imgur.com/7x7WNnO.jpg) - -###Uncensored Clips! - -* [Part 1](https://redgifs.com/watch/shockedgranulariberianchiffchaff) | [Part 2](https://redgifs.com/watch/enlightenedshinyblackmamba) **(NSFW!)** - -You know this is going to be good when [you get a mature warning in the opening](https://i.imgur.com/9JXUY7w.png) and the first shot [is of a character with a ripped shirt.](https://i.imgur.com/HHXgNd4.png) So it's going to be one of those shows, huh? ( ͡° ͜ʖ ͡°) - -The scene after the OP got me a bit confused. When you've read enough revenge fantasy plots in manga they all fall into a certain pattern. It all usually starts with the MC being discarded like trash and building himself back up again to take revenge. I didn't expect that [he'd actually ""heal"" back time](https://i.imgur.com/ZRxiH89.png) to start over again! Which basically makes this a time travel fantasy revenge anime and not an isekai revenge anime like I was expecting. - -[So he's already drugging himself](https://i.imgur.com/NxB6JEa.png) so he can learn the Drug Resistance skill much more earlier so he can resist any attempts of the Princess of turning him into an addict in the future. - -[It's actually quite amusing watching Keyaru act all innocent](https://i.imgur.com/8C2ie95.png) despite already knowing what will happen and what Flare is really like. - -[Demi-human slavery](https://i.imgur.com/a8O5M4u.png) and invading lands of demons for their own gain? Considering how the ""Demon Lord"" in Keyaru's flashback was talking about them just wanting a peaceful life it's pretty clear who the bad guys are in this. - -[Considering Keyaru's worried about the other sister](https://i.imgur.com/q6fz14G.png), I'm guessing Norn is the only good person in the Royal Family. - -[Oh my.](https://i.imgur.com/nF1BSVg.png) Well of course there will be something like this in a revenge fantasy anime. [Damn censorship though.](https://i.imgur.com/ZCSY7PM.png) They've already placed a TV-MA warning at the start! Why not go all the way and show us the uncensored goods? - -**EDIT:** Now that I've seen the uncensored version.... Holy fuck! That's a very meaty (heh) scene that they've cut out. they didn't just black out the maid's body, they actually replaced the entire thing! He didn't just have sex with the one maid, they showed us glimpses of him banging them into an orgy xD - -[So he's been leveling up by stealing XP from the maids he's been sleeping with?](https://i.imgur.com/SiotO1r.png) Rance would be so proud of this guy if they ever meet. - -[Kureha seems to be a pretty decent person.](https://i.imgur.com/kuLQRGh.png) I'm guessing there's a reason why she wasn't in the party during the flashback fight with the Demon Lord. I wouldn't be surprised if they killed her off for being too nice. - -Now that Keyaru is convinced that Flare has been rotten right from the start [his revenge can finally begin.](https://i.imgur.com/umF1NGK.png) - - -Yep that's definitely what I expected from this show! As someone who has read tons of revenge based manga, I am so excited! Call me edgy or whatever but I really enjoy this kind of stuff, it's not even a guilty pleasure! I just like it. If Keyaru's revenge is as entertaining as Raoul's revenge in The Dark Massacre of the Vengeful Hero (which I hope it is), this is going to be fun! Can't wait for more!";False;False;;;;1610559842;;1610570772.0;{};gj4tshh;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4tshh/;1610625195;153;True;False;anime;t5_2qh22;;0;[]; -[];;;Redmon425;;;[];;;;text;t2_15ro6h;False;False;[];;"I know nothing about this series, and I won't lie, I was drawn in for that ecchi tag lol! - -But clearly from this episode, this will definitely be 'edgy' and 'revenge' driven. Plus we see the MC is redoing his life were he was physically abused by all of his comrades. - -Like the MC just said, in this new life, it seems they are still the same abusive people. So, I have no problem with MC doing whatever he wants lol! They all still seem like bad people. - -Although when he got his green power, they immediately went to a scene of the pink haired girl getting a similar green mark on her hand and then she smiled. So I wonder what that is about? - -Lastly, the very first scene of this episode showed some type of fire and it looked like the MC was having sex with the pink haired girl. That definitely didn't happen in the 1st timeline, so is that something that is coming soon?? We shall see!";False;False;;;;1610559870;;False;{};gj4tusc;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4tusc/;1610625232;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;"It’s mostly because people don’t actually like this. As far as I’ve seen. So no one’s arguing in favour of the show. If someone says it’s trash, edgy, and wrong, no one will argue with them. - -The comments are either : - -1. Let me watch this trash - -2. This is trash - -3. Twitter gonna go crazy";False;False;;;;1610559870;;False;{};gj4tusk;False;t3_kwisyw;False;False;t1_gj4nhqg;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4tusk/;1610625232;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;False;[];;They tried to warn me about this show but I didn't listen...fully drawn nipples on a guy in an anime WTF.;False;False;;;;1610559871;;False;{};gj4tuv1;False;t3_kwisyw;False;False;t1_gj4ecfv;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4tuv1/;1610625233;47;True;False;anime;t5_2qh22;;0;[]; -[];;;VideoGamesForU;;;[];;;;text;t2_iyc44;False;False;[];;Let the chaos begin. The next few weeks will be fun on here.;False;False;;;;1610559888;;False;{};gj4tw7g;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4tw7g/;1610625255;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;You must be forgetting Game of Thrones, sure the final season was a terrible mess, but damn that show was explicit af during its heyday.;False;False;;;;1610559923;;False;{};gj4tz8y;False;t3_kwisyw;False;False;t1_gj4q5cp;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4tz8y/;1610625305;6;True;False;anime;t5_2qh22;;0;[]; -[];;;nueker;;;[];;;;text;t2_971rkuiy;False;False;[];;Heard that the uncensored is coming out in 1-2 hours;False;False;;;;1610559929;;False;{};gj4tzpk;False;t3_kwisyw;False;False;t1_gj4tshh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4tzpk/;1610625312;18;True;False;anime;t5_2qh22;;0;[]; -[];;;TheChaosBlue;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_1if45ei9;False;False;[];;A fanrun Demon Slayer podcast found this on the AMC Theaters site about it: tentative/placeholder release date of [February 26th, 2021](https://twitter.com/dslayerpodcast/status/1349242621403783168?s=19). Grain of salt yadda yadda;False;False;;;;1610559934;;False;{};gj4u03k;False;t3_kwjipc;False;True;t3_kwjipc;/r/anime/comments/kwjipc/where_can_i_watch_the_demon_slayer_movie/gj4u03k/;1610625318;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;False;[];;It's only the first episode but so far it looks like what I wanted Shield Hero to be.;False;False;;;;1610559966;;False;{};gj4u2rn;False;t3_kwisyw;False;False;t1_gj4jkta;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4u2rn/;1610625360;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Loremeister;;;[];;;;text;t2_tfhkl;False;False;[];;"we have people complaining about twitter, people complaining about people complaining about twitter but so far not really much of a sh\*tshow. I guess that will be for later episode. - -I mean, I saw people complaining about Mushoku Tensei MC being a piece of crap, so I want to see what people will think about this MC";False;False;;;;1610559988;;False;{};gj4u4j4;False;t3_kwisyw;False;False;t1_gj4sxy0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4u4j4/;1610625388;40;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"> Although when he got his green power, they immediately went to a scene of the pink haired girl getting a similar green mark on her hand and then she smiled. So I wonder what that is about? - -That was just them getting the mark that recognizes them as ""heroes""";False;False;;;;1610560000;;False;{};gj4u5jx;False;t3_kwisyw;False;False;t1_gj4tusc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4u5jx/;1610625403;10;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;Seriously. There's more comments about this being a controversy than actual discussion about the episode :|;False;False;;;;1610560034;;False;{};gj4u8el;False;t3_kwisyw;False;True;t1_gj4jgwc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4u8el/;1610625450;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;Alright in the beginning when it shows Bullet choking Healer, was he just abusing him for fun like the brother of Mahou Shoujo Site or was he trying to rape him as well. Like I couldn't tell if he just got his kicks from beating up people he considers lower than him or was genuinely trying to rape him. I'm asking cause I'm not sure if the show will show everything like its source and this doesn't seem too important, but more so if I should hate Bullet more than I already do.;False;False;;;;1610560041;;False;{};gj4u91t;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4u91t/;1610625461;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AradIori;;;[];;;;text;t2_j2giy;False;False;[];;I dont think that word means what you think it means....;False;False;;;;1610560054;;False;{};gj4ua5n;False;t3_kwisyw;False;False;t1_gj4fasc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4ua5n/;1610625479;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"Most people are waiting for the uncensored version lol - -Nobody is going to argue whether this is trashy or not the real fun is how hard they are going to trash this";False;False;;;;1610560067;;False;{};gj4ub5a;False;t3_kwisyw;False;True;t1_gj4tusk;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4ub5a/;1610625495;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bobothegoat;;;[];;;;text;t2_8h5kv;False;False;[];;"This seems more like a ""Is It Wrong to Pick Up Girls in a Dungeon"" or ""Goblin Slayer""-style fantasy setting, where it's not explicitly an isekai, but let's be honest: its setting is an RPG's.";False;False;;;;1610560070;;False;{};gj4ubh6;False;t3_kwisyw;False;False;t1_gj4qu69;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4ubh6/;1610625501;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;Yeah. Let’s wait until a few more hours.;False;False;;;;1610560093;;False;{};gj4udbi;False;t3_kwisyw;False;True;t1_gj4ub5a;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4udbi/;1610625530;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hesghdfs;;;[];;;;text;t2_97zzxxoz;False;False;[];;It's a revenge rape story from what I read. I'm going to avoid it and just check the discussion thread to see if I'm wrong with that understanding, or if it really is just a revenge rape show and everyone praising it is an incel.;False;False;;;;1610560130;;False;{};gj4ugb6;False;t3_kwisyw;False;False;t1_gj4qkk9;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4ugb6/;1610625577;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Sad_Rush_4773;;;[];;;;text;t2_5sgwmb8o;False;False;[];;Does anyone know what time the uncensored version comes out? And what website to watch it on?;False;False;;;;1610560140;;False;{};gj4uh64;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4uh64/;1610625591;10;True;False;anime;t5_2qh22;;0;[]; -[];;;random-pineapple420;;;[];;;;text;t2_4mzbx15n;False;False;[];;It's looking great so far. I'm waiting for ep 2;False;False;;;;1610560161;;False;{};gj4uium;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4uium/;1610625619;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610560173;;False;{};gj4ujx1;False;t3_kwisyw;False;True;t1_gj4m775;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4ujx1/;1610625637;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"Also anime & videogame news and Hololive memes from the VTubers";False;False;;;;1610560191;;False;{};gj4ulbt;False;t3_kwisyw;False;False;t1_gj4sy26;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4ulbt/;1610625662;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Redmon425;;;[];;;;text;t2_15ro6h;False;False;[];;Yeah that makes sense. Although a part of me thought that she may have known this world was being relived some how. But if she ends up being completely oblivious to that, I won’t complain lol!;False;False;;;;1610560226;;False;{};gj4uo6b;False;t3_kwisyw;False;False;t1_gj4u5jx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4uo6b/;1610625710;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TheBKaine;;;[];;;;text;t2_shca5;False;False;[];;Industry standards are in the fucking dirt, that's why.;False;True;;comment score below threshold;;1610560334;;False;{};gj4ux2f;False;t3_kwisyw;False;True;t1_gj4j9xx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4ux2f/;1610625856;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;Dairosh;;;[];;;;text;t2_1qv0hkm0;False;False;[];;Same, good decision;False;False;;;;1610560392;;False;{};gj4v1qr;False;t3_kwisyw;False;False;t1_gj4sy26;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4v1qr/;1610625934;19;True;False;anime;t5_2qh22;;0;[]; -[];;;GMorelli;;;[];;;;text;t2_13n5gj;False;False;[];;I dont know, should you?;False;False;;;;1610560393;;False;{};gj4v1um;False;t3_kwjxza;False;True;t3_kwjxza;/r/anime/comments/kwjxza/should_i_continue_gosick/gj4v1um/;1610625935;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LightswornMagi;;;[];;;;text;t2_bgdkdk0;False;False;[];;Because, for all his anger, Shield Hero wasn't someone who took pleasure from cruelty or torment.;False;False;;;;1610560403;;False;{};gj4v2pl;False;t3_kwisyw;False;False;t1_gj4qkk9;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4v2pl/;1610625948;42;True;False;anime;t5_2qh22;;0;[]; -[];;;Dairosh;;;[];;;;text;t2_1qv0hkm0;False;False;[];;Was about time;False;False;;;;1610560449;;False;{};gj4v6m4;False;t3_kwisyw;False;False;t1_gj4l5of;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4v6m4/;1610626012;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"Given how much better the uncensored versions of *Nande Koko ni Sensei Ga!?, Peter Grill to Kenja no Jikan* and *Dokyuu Hentai HxEros* were, this is a wise choice. - -[](#mug1)";False;False;;;;1610560450;;False;{};gj4v6n7;False;t3_kwisyw;False;False;t1_gj4iizm;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4v6n7/;1610626012;27;True;False;anime;t5_2qh22;;0;[]; -[];;;TheBKaine;;;[];;;;text;t2_shca5;False;False;[];;"lol ""come up with"" like ""rape is okay when I do it"" isn't literally the premise of this show.";False;False;;;;1610560459;;False;{};gj4v7ge;False;t3_kwisyw;False;False;t1_gj4l0ja;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4v7ge/;1610626024;64;True;False;anime;t5_2qh22;;0;[]; -[];;;Redmon425;;;[];;;;text;t2_15ro6h;False;False;[];;"I agree man. This is a guilty pleasure for sure. Plus it makes it better knowing these comrades of him are still shitty in this new timeline. So now idc what the MC does as revenge to them. He earned the right lol. - -That first scene does have me curious though. No way in the original timeline did he ever get to smash the pink haired girl. - -So does that imply it is something that will be happening soon?!?! I hope lol!";False;False;;;;1610560484;;False;{};gj4v9m2;False;t3_kwisyw;False;False;t1_gj4tshh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4v9m2/;1610626059;5;True;False;anime;t5_2qh22;;0;[]; -[];;;KinAsukira;;;[];;;;text;t2_elfps;False;False;[];;Wow I was concerned that the adaption might be butchered or low quality since the studio has done School days and their recent anime have been bad or low quality but ignoring the extra credits the pacing, artstyle and animation have been solid 90% of the time. Hopefully the uncensored version adds on more to the one min of powerpoint during the maid sex scene. Surprised the gore seems more censored/toned down than the sex, was hoping they add a bit more flashbacks on the healer's suffering;False;False;;;;1610560490;;False;{};gj4va25;False;t3_kwisyw;False;False;t1_gj4cvpu;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4va25/;1610626066;12;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;Why the fuck this title get such a good production value lmao. I wish the good animation, OST, etc. could be given to another title with better source material lol.;False;False;;;;1610560528;;False;{};gj4vd5s;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4vd5s/;1610626115;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BigBat6;;;[];;;;text;t2_5kzs0gd2;False;False;[];;Then the censored and uncernsored ep 1 should be the same?;False;False;;;;1610560586;;False;{};gj4vi1s;False;t3_kwisyw;False;True;t1_gj4shho;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4vi1s/;1610626195;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;So... was this as bad as everyone expected? I don't have HIDIVE and have no intention of wasting a free trial on this show.;False;False;;;;1610560631;;False;{};gj4vlvs;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4vlvs/;1610626258;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Sorry, your submission has been removed. - -- It looks like your questions have been answered, so we're taking it off the list of new posts to make room for other content. For future reference, here are some additional resources that may help you find an answer even faster: - - - [To ask any random question you may have, visit our Weekly Miscellaneous Anime Questions thread!](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Weekly+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) - - [For finding an anime based off of a single image, reverse image searching typically works instantly](http://www.reddit.com/r/anime/wiki/reverse_image_searching) - - [r/anime has a large number of watch orders available](http://www.reddit.com/r/anime/wiki/watch_order) - - [You can find all of your recommendation needs here](http://www.reddit.com/r/anime/wiki/recommendations) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610560756;moderator;False;{};gj4vwd1;False;t3_kwjipc;False;True;t3_kwjipc;/r/anime/comments/kwjipc/where_can_i_watch_the_demon_slayer_movie/gj4vwd1/;1610626434;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610560806;;False;{};gj4w0e4;False;t3_kwisyw;False;True;t1_gj4s8g7;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4w0e4/;1610626502;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nescau_Fernando;;;[];;;;text;t2_1m6og0;False;False;[];;"> Wait it's actually pretty interesting?! - -[Always has been.](https://i.imgur.com/bOXxSPr.png)";False;False;;;;1610560825;;False;{};gj4w228;False;t3_kwisyw;False;False;t1_gj4jkta;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4w228/;1610626530;34;True;False;anime;t5_2qh22;;0;[]; -[];;;tertig;;;[];;;;text;t2_x7fmy;False;False;[];;Is uncensored version gonna be subbed though?;False;False;;;;1610560837;;False;{};gj4w311;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4w311/;1610626546;7;True;False;anime;t5_2qh22;;0;[]; -[];;;jojo_is_trash;;;[];;;;text;t2_595dn1yo;False;False;[];;It is EXACTLY a revenge rape show. Utter dumpster fire, I despise it, but I’m still gonna stick around for the discussions;False;False;;;;1610560888;;False;{};gj4w777;False;t3_kwisyw;False;False;t1_gj4ugb6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4w777/;1610626616;4;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;Infamy is better than no fame I guess. Mediocre titles can get lost in time and memory, but unique ones stand out.;False;False;;;;1610560939;;False;{};gj4wb7w;False;t3_kwisyw;False;False;t1_gj4mkzw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4wb7w/;1610626682;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"Somebody is probably going to time the subs - -Just have to wait a bit more for that version";False;False;;;;1610560956;;False;{};gj4wcob;False;t3_kwisyw;False;False;t1_gj4w311;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4wcob/;1610626706;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"The last thing an anime needs to be is mediocre - -You rather be masterpiece or flaming garbage but never mediocre";False;False;;;;1610561104;;False;{};gj4wojb;False;t3_kwisyw;False;False;t1_gj4wb7w;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4wojb/;1610626899;23;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610561107;;False;{};gj4wos2;False;t3_kwisyw;False;True;t1_gj4u91t;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4wos2/;1610626904;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ImKnottt;;;[];;;;text;t2_80glhny6;False;False;[];;"i think I'm gonna like this anime. It's a new take on the concept of fantasy, demons, healers, MCs, and kingdoms. - -I always did try to understand the different perspectives in the lives of the characters. How invasions affect the invaded citizens, why humans are portrayed as righteous and demons as evil when they have opposite values, and many more norms that should be given a second doubt. - -As long as no good or familiar characters are killed, and bad guys get what they deserve, i'm gonna continue to watch this weekly. If not, I'm just gonna wait until the whole season is over.";False;False;;;;1610561144;;False;{};gj4wrst;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4wrst/;1610626954;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610561173;;False;{};gj4wu73;False;t3_kwisyw;False;True;t1_gj4wos2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4wu73/;1610626996;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;Because the real meat isn't out yet, it's probably for episode 2. Different with Goblin Slayer where the shock value is in episode 1 so Twitter blew up right away.;False;False;;;;1610561173;;False;{};gj4wu7l;False;t3_kwisyw;False;False;t1_gj4jnvk;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4wu7l/;1610626996;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610561231;;False;{};gj4wyqs;False;t3_kwisyw;False;True;t1_gj4wu73;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4wyqs/;1610627070;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610561282;;False;{};gj4x2xf;False;t3_kwisyw;False;True;t1_gj4wyqs;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4x2xf/;1610627139;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;not yet. maybe next week.;False;False;;;;1610561307;;False;{};gj4x51u;False;t3_kwisyw;False;True;t1_gj4ee78;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4x51u/;1610627175;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610561425;;False;{};gj4xeh1;False;t3_kwisyw;False;True;t1_gj4opa6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4xeh1/;1610627333;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610561429;;False;{};gj4xesi;False;t3_kwisyw;False;True;t1_gj4wojb;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4xesi/;1610627337;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610561451;;False;{};gj4xgjc;False;t3_kwisyw;False;True;t1_gj4xeh1;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4xgjc/;1610627369;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;reminder that boobies are completely fine in many European countries and can be in movies for +12;False;False;;;;1610561455;;False;{};gj4xgtt;False;t3_kwisyw;False;False;t1_gj4q5cp;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4xgtt/;1610627373;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610561520;;False;{};gj4xm5f;False;t3_kwisyw;False;True;t1_gj4o6yn;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4xm5f/;1610627466;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi TheHeadPatter, your post has been removed because it links to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610561520;moderator;False;{};gj4xm6r;False;t3_kwisyw;False;True;t1_gj4xm5f;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4xm6r/;1610627467;1;False;False;anime;t5_2qh22;;0;[]; -[];;;-phish;;;[];;;;text;t2_6qes0l10;False;False;[];;Where will i be able to watch that version?;False;False;;;;1610561530;;False;{};gj4xn0k;False;t3_kwisyw;False;False;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4xn0k/;1610627480;3;True;False;anime;t5_2qh22;;0;[]; -[];;;charredchord;;MAL;[];;http://myanimelist.net/profile/Charred_Chord;dark;text;t2_kvasr;False;False;[];;The rare male nipple.;False;False;;;;1610561574;;False;{};gj4xqjz;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4xqjz/;1610627539;102;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610561906;moderator;False;{};gj4yhoe;False;t3_kwisyw;False;True;t1_gj4wos2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4yhoe/;1610628062;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"At the end of the day, I think this phenomenon is due to how YouTube changed. With the demonetization of both short videos and more adult ones, extreme DMCA overregulation, pressure to make ''family-friendly'' content and general lack of care towards content creators, a lot of the more creative Anitubers gave up. - -Animators, singers, artists and montage makers were the hardest hit. As a result, anitubing started stagnating. And as many other YouTubers, they turned to forms of content that are easier to make, get view, are unlikely to get copyright striked and can be stretched to meet the 10min requirement for ad revenue: drama videos, podcasts and commentary videos. Given that Twitter is a nest for dumb arguments and manufactured drama, it became their bread and butter. - -Hopefully now, there's VTubers who have managed to carve a niche thanks to livestreaming and superchats. However, they also face many difficulties (trolls, suspensions, DMCAs, bans, etc) and might not have succeeded if not for the support of their parent companies and their lawyers. - -[Thanks for coming my TED talk](#smugboard)";False;False;;;;1610561939;;1610566620.0;{};gj4yk9b;False;t3_kwisyw;False;False;t1_gj4l8ey;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4yk9b/;1610628108;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Careless_Skin4048;;;[];;;;text;t2_9btoyywc;False;False;[];;Yes;False;False;;;;1610561953;;False;{};gj4ylgx;False;t3_kwisyw;False;True;t1_gj4trcq;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4ylgx/;1610628130;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Arkroy;;;[];;;;text;t2_niom3;False;False;[];;Any ridicule this show gets will deserve it lol;False;False;;;;1610562126;;False;{};gj4yzlk;False;t3_kwisyw;False;False;t1_gj4l0ja;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4yzlk/;1610628390;42;True;False;anime;t5_2qh22;;0;[]; -[];;;tertig;;;[];;;;text;t2_x7fmy;False;False;[];;Yeah but that means theres no legal way to watch subbed uncensored version due to that.;False;False;;;;1610562181;;False;{};gj4z4a4;False;t3_kwisyw;False;True;t1_gj4wcob;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4z4a4/;1610628471;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;There is no legal way to watch the uncensored version with or without subs;False;False;;;;1610562255;;False;{};gj4zad0;False;t3_kwisyw;False;False;t1_gj4z4a4;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4zad0/;1610628586;8;True;False;anime;t5_2qh22;;0;[]; -[];;;NathanTPS;;;[];;;;text;t2_tt2rz;False;False;[];;Ok... so..... he uses the maids to increase his XP.... guess that's one way to grind rank;False;False;;;;1610562322;;1610579677.0;{};gj4zfyv;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4zfyv/;1610628698;12;True;False;anime;t5_2qh22;;0;[]; -[];;;killerofcheese;;;[];;;;text;t2_zkkin;False;False;[];;harlock maybe;False;False;;;;1610562469;;False;{};gj4zrvo;False;t3_kwitjm;False;True;t3_kwitjm;/r/anime/comments/kwitjm/not_sure_what_the_anime_movie_is/gj4zrvo/;1610628903;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Toasty117;;;[];;;;text;t2_5hiwq;False;False;[];;"Can't really say *exactly* what will be shown or not, but I think it'll go like this this. - -* Broadcast version - heaviest censorship, such as black screen fades that eclipse significant portions of the screen. -* Redo version - moderate censorship, such as white trails that censor just the more explicit portions of the screen, the norm for most anime. -* Complete Recovery version - little to no censorship, think AT-X's censor-free showing of Interspecies Reviewers.";False;False;;;;1610562506;;False;{};gj4zuyq;False;t3_kwisyw;False;False;t1_gj4jlck;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4zuyq/;1610628954;50;True;False;anime;t5_2qh22;;0;[]; -[];;;_Nerex;;;[];;;;text;t2_t56sk;False;False;[];;To be fair, Shield hero was merely abandoned and harassed, not raped, raped, beaten, tortured, forced drugs, and betrayed upon completing his duty;False;False;;;;1610562515;;False;{};gj4zvnl;False;t3_kwisyw;False;False;t1_gj4v2pl;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4zvnl/;1610628966;26;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;Where is goblin slayer when you need him?;False;False;;;;1610562527;;False;{};gj4zwku;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4zwku/;1610628981;3;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;That one is one of my favorites;False;False;;;;1610562561;;False;{};gj4zzbl;False;t3_kwisyw;False;False;t1_gj4pavb;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj4zzbl/;1610629028;56;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;So shield hero on drugs...;False;False;;;;1610562602;;False;{};gj502m4;False;t3_kwisyw;False;False;t1_gj4zvnl;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj502m4/;1610629096;15;True;False;anime;t5_2qh22;;0;[]; -[];;;MaiValentineHusband;;;[];;;;text;t2_9ktbpab3;False;False;[];;Yeah, i get that, it's an acquired taste. It gets better though, i think.;False;False;;;;1610562658;;False;{};gj5073q;False;t3_kwj9gp;False;False;t1_gj4nwq3;/r/anime/comments/kwj9gp/looking_for_an_anime_where_male_mc_gets_married/gj5073q/;1610629183;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;"Ironically, I see more people butthurt -about twitter users getting mocked than I see people talking about twitter users. - -Yup, not surprised by the angry downvotes.";False;True;;comment score below threshold;;1610562747;;1610594990.0;{};gj50ebk;False;t3_kwisyw;False;True;t1_gj4pudl;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj50ebk/;1610629310;-15;True;False;anime;t5_2qh22;;0;[]; -[];;;Cyclone_96;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CrazyCyclone96;light;text;t2_es52y62;False;False;[];;Yeah if the word ‘status’ is ever uttered in reference to a person’s condition, just consider it an isekai.;False;True;;comment score below threshold;;1610562764;;False;{};gj50fsc;False;t3_kwisyw;False;True;t1_gj4ubh6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj50fsc/;1610629333;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;imaprince;;;[];;;;text;t2_m9jud;False;False;[];;Still unbelievable that this got an adaption. Probably the most unadaptable work I've ever read.;False;False;;;;1610562793;;False;{};gj50hzh;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj50hzh/;1610629370;69;True;False;anime;t5_2qh22;;0;[]; -[];;;InsanityRequiem;;;[];;;;text;t2_ie44d;False;False;[];;Then call it what it actually is. Time travel fantasy. Isekai is very specific, so this butchering of the use of isekai means every show is an isekai.;False;False;;;;1610562888;;False;{};gj50pmr;False;t3_kwisyw;False;False;t1_gj4ubh6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj50pmr/;1610629508;12;True;False;anime;t5_2qh22;;0;[]; -[];;;TheHeadPatter;;;[];;;;text;t2_5gsty4wo;False;False;[];;Funnily enough there's actually a non-hentai manga where the MC increases his LV through sex. Also there's a dungeon in his basement. The manga is (unsurprisingly) called [Sex and Dungeon](https://myanimelist.net/manga/124044);False;False;;;;1610563013;;False;{};gj5100z;False;t3_kwisyw;False;False;t1_gj4o6yn;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5100z/;1610629695;31;True;False;anime;t5_2qh22;;0;[]; -[];;;El_grandepadre;;;[];;;;text;t2_5bikpicr;False;False;[];;"Equally amazed that this airs the same day as Re:zero. - -Great follow-up material.";False;False;;;;1610563054;;False;{};gj513h2;False;t3_kwisyw;False;False;t1_gj4j9xx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj513h2/;1610629761;73;True;False;anime;t5_2qh22;;0;[]; -[];;;MsWisberg;;;[];;;;text;t2_7jvgrr0g;False;False;[];;where’s the uncensored versions;False;False;;;;1610563145;;False;{};gj51aqi;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj51aqi/;1610629892;8;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;Because Shield Hero was a poser while this guy is the real deal.;False;False;;;;1610563196;;False;{};gj51erc;False;t3_kwisyw;False;True;t1_gj4qkk9;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj51erc/;1610629962;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;DeTroyes1;;;[];;;;text;t2_awtnhf;False;False;[];;"Has the Twitter shitstorm started yet? I'm deliberately avoiding Twitter right now due to all the other shitstorms going on over there. - -**ADDENDUM** - -I presume ANN & The Mary Sue will go off like they usually do. There should be some Grade-A indignation and hysterical hand wringing coming soon from them.";False;False;;;;1610563222;;1610565654.0;{};gj51gux;False;t3_kwisyw;False;True;t1_gj4jgwc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj51gux/;1610629998;1;True;False;anime;t5_2qh22;;0;[]; -[];;;maxblockm;;;[];;;;text;t2_7nwd0;False;False;[];;Link me this anime plz;False;True;;comment score below threshold;;1610563253;;False;{};gj51jhu;False;t3_kwk3f3;False;True;t3_kwk3f3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj51jhu/;1610630047;-14;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"""Are ... we the Goblins?""";False;False;;;;1610563256;;False;{};gj51jpg;False;t3_kwisyw;False;False;t1_gj4qaov;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj51jpg/;1610630051;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610563292;;False;{};gj51mv4;False;t3_kwisyw;False;True;t1_gj4opa6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj51mv4/;1610630107;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Renard888;;;[];;;;text;t2_2dnrowir;False;False;[];;I dont think it was that retro;False;False;;;;1610563292;;False;{};gj51mva;True;t3_kwitjm;False;True;t1_gj4zrvo;/r/anime/comments/kwitjm/not_sure_what_the_anime_movie_is/gj51mva/;1610630107;1;True;False;anime;t5_2qh22;;0;[]; -[];;;notathrowaway75;;MAL;[];;https://myanimelist.net/profile/notathrowaway75;dark;text;t2_fomut;False;False;[];;The shitstorm will be deserved. I'm here for the people who will unironically defend this show as a result.;False;False;;;;1610563323;;False;{};gj51pfw;False;t3_kwisyw;False;False;t1_gj4soc0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj51pfw/;1610630152;23;True;False;anime;t5_2qh22;;0;[]; -[];;;YgJb1691;;;[];;;;text;t2_k8dbo5z;False;False;[];;I’m pretty sure he’s the most subscribed Anime YouTuber not counting Team four star(DBZA) as well as being one of the oldest to still be active.;False;False;;;;1610563323;;False;{};gj51pig;False;t3_kwisyw;False;False;t1_gj4sean;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj51pig/;1610630154;20;True;False;anime;t5_2qh22;;0;[]; -[];;;icewallow1;;;[];;;;text;t2_58dloasz;False;False;[];;When the uncensored comes out can some reply to me;False;False;;;;1610563353;;False;{};gj51rvu;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj51rvu/;1610630192;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;Its name is Charlotte;False;False;;;;1610563429;;False;{};gj51y0f;True;t3_kwk3f3;False;False;t1_gj51jhu;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj51y0f/;1610630300;7;True;False;anime;t5_2qh22;;0;[]; -[];;;chotoipho;;;[];;;;text;t2_9p59b;False;False;[];;Anime of the season, calling it now. When I saw the TV-MA, I already knew it was going to be good lol;False;False;;;;1610563445;;False;{};gj51zdv;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj51zdv/;1610630324;0;True;False;anime;t5_2qh22;;0;[]; -[];;;BigBat6;;;[];;;;text;t2_5kzs0gd2;False;False;[];;Is it out;False;False;;;;1610563488;;False;{};gj522uz;False;t3_kwisyw;False;True;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj522uz/;1610630383;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;Sex and Dungeon is hentai tho. It's like in premise, he spents half chapter on sex and other half on exploring dungeon.;False;False;;;;1610563613;;False;{};gj52d7y;False;t3_kwisyw;False;False;t1_gj5100z;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj52d7y/;1610630579;17;True;False;anime;t5_2qh22;;0;[]; -[];;;exeia;;;[];;;;text;t2_mc7v3;False;False;[];;It's interesting but I also got nasty vibes from this, how bad does it get? like I was hoping it's a series where he can think his way out of shit but if its as bad as people say then i might dodge this...;False;False;;;;1610563625;;False;{};gj52e4b;False;t3_kwisyw;False;False;t1_gj4r9ll;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj52e4b/;1610630596;3;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your comment has been removed. - -- Direction toward specific sources of pirated content of any type is not allowed. This includes links to unofficial scanlations, streams, uploads, and download sources of any copyrighted content. It also includes direction towards specific sites offering this type of content, and watermarks mentioning such sites in uploaded images/videos. - - Discussion of piracy in general is allowed, **but naming, linking to, or hinting towards specific sources is not. Offering to send links via PM is also not allowed.** For more details, see our [full rules on illegal content](https://www.reddit.com/r/anime/wiki/rules#wiki_do_not_link_to_illegal_content). - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610563639;moderator;False;{};gj52fb8;False;t3_kwisyw;False;True;t1_gj51mv4;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj52fb8/;1610630620;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;I see more people here simping for twitter users than I see people mocking twitter users. In all honesty though, I think reddit will complain about this series more than twitter anyway.;False;False;;;;1610563646;;False;{};gj52fvi;False;t3_kwisyw;False;False;t1_gj4ky9e;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj52fvi/;1610630630;4;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"People said this would blow up but I literally see nothing about it lol! - -Hell even the karma is pretty low for episode 1. IIRC goblin slayer first episode broke the internet and scored highly with it's first episode on reddit. - -I haven't watched the episode yet, so maybe it was tamer than expected?";False;False;;;;1610563668;;False;{};gj52hou;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj52hou/;1610630662;49;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"Oh so that version is the one that's going to ""destroy the internet"" than. - -I was wondering why this episode got no reception at all, but it makes since now";False;False;;;;1610563709;;False;{};gj52l1p;False;t3_kwisyw;False;True;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj52l1p/;1610630723;2;True;False;anime;t5_2qh22;;0;[]; -[];;;VisualAmoeba;;;[];;;;text;t2_5si7fqpm;False;False;[];;"> Damn censorship though. They've already placed a TV-MA warning at the start! Why not go all the way and show us the uncensored goods? - -Well, they knew everyone was expecting the show to be dark, so they had to live up to expectations by covering half the screen in darkness. It's only logical, you know.";False;False;;;;1610563748;;False;{};gj52o7m;False;t3_kwisyw;False;False;t1_gj4tshh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj52o7m/;1610630780;33;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;HELL YE TIME TO WATCH 22 MINS OF FILLER AND THEN GET HOURS OF SALT MINING ON TWITTER DOT COM AND REDDIT;False;False;;;;1610563779;;1610568086.0;{};gj52qph;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj52qph/;1610630828;3;True;False;anime;t5_2qh22;;0;[]; -[];;;VeryFunnyValentine;;;[];;;;text;t2_4uph3tsh;False;False;[];;Good taste;False;False;;;;1610563900;;False;{};gj530yp;False;t3_kwisyw;False;False;t1_gj4zzbl;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj530yp/;1610631024;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Puzzleheaded_Bar_610;;;[];;;;text;t2_6p7yk9hc;False;False;[];;I just started reading the manga of this (on chap 8) and sheeeeeeeeesh. I don't know how this got an anime;False;False;;;;1610563927;;False;{};gj53303;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj53303/;1610631065;2;True;False;anime;t5_2qh22;;0;[]; -[];;;echykr4;;;[];;;;text;t2_k4xht;False;False;[];;"Heard this Monte Cristo-like revenge fantasy was going to be as dark as Goblin Slayer, with violence and rape and all, so I came prepared, and so far so good. - -Almost none of the main characters cover themselves in light, with the exception of the demon lord, who was only protecting her homeland from the brutal humans who subjugated her people. (Manifest Destiny, anyone?) - -And maybe swordswoman Kureha, who after having her arm regenerated genuinely seemed to be concerned for Keyaru when he fainted, before the scumbag princess pushed her away. - -Wonder if there are going to be extra minutes of footage for the uncensored version, or is it just going to be just a removal of those blacked out bits?";False;False;;;;1610564054;;False;{};gj53d4g;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj53d4g/;1610631269;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Rarbnif;;;[];;;;text;t2_5z1ic53;False;False;[];;Sucks that it’s wasted on this crap;False;False;;;;1610564068;;False;{};gj53eb0;False;t3_kwisyw;False;True;t1_gj4ecfv;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj53eb0/;1610631295;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Chem_chem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Throwawaybathtow;light;text;t2_f8b00;False;False;[];;"> Wait it's actually pretty interesting?! - -Uhh... no. Upfront I am not put off because this show is offensive, I'm peeved because its just dull. So as someone who loves garbage media, this is just . . . bad. Not funny bad, not amazingly bad, not bad but sexy. Just lame bad. - -Conceptually its unflinchingly offensive and obscene, in practice its mostly boring. Only two things of note were how the FIRST SHOT of the series was just sexual assault and how the MC's trauma backstory was aggressively brushed over in a 10 second montage because combined the show is very clear in it's messaging that this is a show about people being raped and that's it. Period. Both writing and cinematography show is this series is just going to be a rape fantasy with elements of revenge, an absurd logical reversal of the sub-exploitation genre of rape-revenge media. Everything in the episode sets up rationalizations for the MC wanting to be a rapist, from the comically evil morality of the intended victims to the veneer of righteousness lazily slapped on to make this series appear not as unapologetically degenerate as it is. The focus is clear: ""it's rape time"". - -And you know what, at least the show is advertising its intent loud and clear cause that will make cutting through the discourse of bullshit easier. There is no alternate angle or artistic merit in this show other the main hook of rape fantasy at the end of the day it is what it is. Its a fictional show, with fictional people, if people want to get off on this all the power to them *but just to be clear* that is the only thing this show has to offer. You think the show is **interesting**? Get otta here with that bullshit 80% of this episode is the main character playing dumb while in narration he rubs his hands thinking '*oooh, I'm gunna get ya*'. Because to be totally real, none of the exploitation bothers me. As said, its a fictional show, whatever. What annoys me is just how fucking boring this is, so all that can be talked about is its poor execution of distasteful material because that's all I *can* talk about. In in shows that are transparently about tits and ass at least they are fun, this just screams misery and its sex scenes are just uncomfortable. - -I committed to watch Ex-Arm and Scar on the Preater because as fucked up as those shows are at least I'm having fun - those actually are interesting at the meta level because I am constantly questioning who made these and why they made the choices they did. This show, its a show about rape. They talk, then rape. That's it, check your coat at the door. And in that case, I will be dropping this show here.";False;False;;;;1610564159;;False;{};gj53lvo;False;t3_kwisyw;False;False;t1_gj4jkta;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj53lvo/;1610631467;7;True;False;anime;t5_2qh22;;0;[]; -[];;;WavyTheGreatApe;;;[];;;;text;t2_9g2e4khn;False;False;[];;I need this does anyone know?;False;False;;;;1610564165;;False;{};gj53mdd;False;t3_kwisyw;False;False;t1_gj4uh64;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj53mdd/;1610631478;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Rarbnif;;;[];;;;text;t2_5z1ic53;False;False;[];;The hate for this show will be justified.;False;False;;;;1610564218;;False;{};gj53qtl;False;t3_kwisyw;False;False;t1_gj4l0ja;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj53qtl/;1610631590;42;True;False;anime;t5_2qh22;;0;[]; -[];;;echykr4;;;[];;;;text;t2_k4xht;False;False;[];;"It's always like this for the first few hours of any new episode thread. - -Wait for a few hours after you post for the hivemind to ""correct"" any score. Most of the time the hivemind gets it right eventually, unless you're responding to a specific circlejerk thread-chain.";False;False;;;;1610564250;;False;{};gj53tgg;False;t3_kwisyw;False;True;t1_gj4kz5u;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj53tgg/;1610631644;3;True;False;anime;t5_2qh22;;0;[]; -[];;;skaro1789;;;[];;;;text;t2_11u3vv;False;False;[];;So what do you get when you mix Re:Zero and Shield Hero with some of the negative aspects of the other isekai protagonist series. You get this series.;False;False;;;;1610564263;;False;{};gj53uh9;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj53uh9/;1610631663;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Kcanimegod;;;[];;;;text;t2_3ux15mq1;False;False;[];;That's because no rape happen this episode obviously and goblin slayer is basically a kids show compared to this;False;False;;;;1610564273;;False;{};gj53vce;False;t3_kwisyw;False;False;t1_gj52hou;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj53vce/;1610631679;68;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;"###Stitches! - -* [Kyouko](https://i.imgur.com/vAMNmNg.jpeg) - -* [Miharu](https://i.imgur.com/po8MXbE.jpeg) - -* [Yui](https://i.imgur.com/iB60UBC.jpeg) - -We're only at episode 2 and [we already have an onsen scene.](https://i.imgur.com/hyVNYOc.png) This show works fast! - -Knowing that Riko left a world where [lots of people will be missing her](https://i.imgur.com/zoz6yis.png) is a bit heartbreaking. - -[Riko finally asking the important question](https://i.imgur.com/ZQ2Zein.png) and [Suzuno fantasizing about it](https://i.imgur.com/CpZkkQQ.png) was hilarious! - -It's really bothering me as to why [the switched currencies.](https://i.imgur.com/MEWQ7lM.png) Even if those crystals did provide power, it's not like money is just going away considering it's still waaaaay more convenient. How do you even assign crystals with monetary values? - -[Oh boy we're suddenly jumping into the serious bits again.](https://i.imgur.com/8DB9cEa.png) I do like it though. The threat is much more real this way. - -[I've seen this dude in the OP](https://i.imgur.com/xMs2vJ3.png). I'm guessing he'll be a recurring character. Also I'm guessing the statue of an Armor Girl is a statue of [his girlfriend who died protecting the base.](https://i.imgur.com/cMZ2Bov.png) - -[I really do hope Riko can get back.](https://i.imgur.com/17oXYyZ.png) As cool as the Armor Girls are, this world is very shitty.";False;False;;;;1610564281;;False;{};gj53w06;False;t3_kwk23i;False;False;t3_kwk23i;/r/anime/comments/kwk23i/soukou_musume_senki_episode_2_discussion/gj53w06/;1610631692;11;True;False;anime;t5_2qh22;;0;[]; -[];;;KrillinDBZ363;;;[];;;;text;t2_14wqfv;False;False;[];;While stuff on HBO may show a lot of sex and nudity, I’ve never seen a show there be as edgy and fucked up as what this series becomes.;False;False;;;;1610564347;;False;{};gj541cf;False;t3_kwisyw;False;False;t1_gj4s6qx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj541cf/;1610631788;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610564407;;False;{};gj5469b;False;t3_kwisyw;False;True;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5469b/;1610631875;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610564407;;False;{};gj5469v;False;t3_kwisyw;False;True;t1_gj52hou;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5469v/;1610631875;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rarbnif;;;[];;;;text;t2_5z1ic53;False;False;[];;Twitter living rent free in these dudes heads lol;False;False;;;;1610564446;;False;{};gj549i7;False;t3_kwisyw;False;False;t1_gj4ky9e;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj549i7/;1610631934;59;True;False;anime;t5_2qh22;;0;[]; -[];;;ViperiousTheRedPanda;;;[];;;;text;t2_2z45q33v;False;False;[];;Rising of the heal hero;False;False;;;;1610564623;;False;{};gj54o04;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj54o04/;1610632198;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Rarbnif;;;[];;;;text;t2_5z1ic53;False;False;[];;A lot of people have told me this series is edgy garbage and I can definitely see it already through some of the dialogue and shit;False;False;;;;1610564638;;False;{};gj54pab;False;t3_kwisyw;False;False;t1_gj4qkk9;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj54pab/;1610632224;8;True;False;anime;t5_2qh22;;0;[]; -[];;;four-lokos;;;[];;;;text;t2_2lmsysym;False;False;[];;okay guys, is this actually good? the controversy peaked my interest lmao;False;False;;;;1610564727;;False;{};gj54wap;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj54wap/;1610632353;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Slurms_McKenzie775;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/solis91;light;text;t2_g5vcr;False;False;[];;Anyone know if HiDive will be getting the uncensored version?;False;False;;;;1610564738;;False;{};gj54x62;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj54x62/;1610632370;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkWorld97;;MAL;[];;https://myanimelist.net/profile/;dark;text;t2_aqfg4;False;False;[];;Episode just started I think. Give it an hour or so to pop up online.;False;False;;;;1610564756;;False;{};gj54ymz;False;t3_kwisyw;False;True;t1_gj522uz;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj54ymz/;1610632397;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610564786;;1610566981.0;{};gj55120;False;t3_kwisyw;False;True;t1_gj4vlvs;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj55120/;1610632445;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dishonoredbr;;;[];;;;text;t2_z5wm6;False;False;[];;I saw some people calling Rising of the shield hero a incel isekai but Goblin slayer? Nah.;False;False;;;;1610564810;;False;{};gj5530i;False;t3_kwisyw;False;False;t1_gj4l0ja;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5530i/;1610632483;10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610564835;;False;{};gj5552l;False;t3_kwk3f3;False;True;t1_gj51jhu;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj5552l/;1610632524;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610564854;;False;{};gj556li;False;t3_kwisyw;False;False;t1_gj541cf;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj556li/;1610632551;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Beybladeer;;;[];;;;text;t2_ionrm5z;False;False;[];;"I just found it good. - -Also I'm pretty sure they're going to talk about MC's backstory as the story progresses.";False;False;;;;1610564916;;False;{};gj55blp;False;t3_kwisyw;False;True;t1_gj53lvo;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj55blp/;1610632641;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610564931;;False;{};gj55cu2;False;t3_kwisyw;False;True;t1_gj4tljd;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj55cu2/;1610632665;1;True;False;anime;t5_2qh22;;0;[]; -[];;;randyripoff;;;[];;;;text;t2_pg4m04;False;False;[];;"I personally enjoyed it a lot, but if it isn't working for you you should drop it. - -As time passes it becomes less episodic and an overall story line begins to develop. Unless you're just really bored with it, I'd watch a little longer.";False;False;;;;1610565003;;False;{};gj55imt;False;t3_kwjxza;False;False;t3_kwjxza;/r/anime/comments/kwjxza/should_i_continue_gosick/gj55imt/;1610632771;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LesbianCommander;;;[];;;;text;t2_xkfd3;False;False;[];;">The Redo of a Healing Magician: Transcendental Healing of Instant Death Magic and Skill Copying - -Still blown away ""instant death magic"" is considered healing in this world. I GUESS you can make the argument that it's like negative healing, but how the hell is ""skill copying"" considered healing magic. Not to mention the other bullshit he does in the manga which is spoilers.";False;False;;;;1610565113;;False;{};gj55rf6;False;t3_kwisyw;False;False;t1_gj4mlkk;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj55rf6/;1610632937;100;False;False;anime;t5_2qh22;;0;[]; -[];;;Unownplayer135;;;[];;;;text;t2_3m6q2771;False;False;[];;Where can I watch the uncensored version I’ve been looking for it everywhere but can’t find it;False;False;;;;1610565128;;False;{};gj55slz;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj55slz/;1610632960;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"[That's one way to start an episode (NSFW)!](https://imgur.com/4z4RbDQ) - -She went so quickly from [sweet, heroic angel,](https://imgur.com/dwEcRPt) to [soulless](https://imgur.com/ew9I4Sr) [monster](https://imgur.com/wFjUYhu); - -Guess I was right in [that random comment I made yesterday](https://www.reddit.com/r/anime/comments/kwajzq/what_are_some_life_lessons_youve_learned_from/gj36u6g), can't trust pink-haired anime girls! - -[I'm curious about her](https://imgur.com/dYWhuvG); She was not in the main party, right? But they said her skills were even better than the hero's. She seemed sweet (and she has white hair, so we can trust her!) - -I'm wondering a few things; Why isn't she in the hero party? Well I guess this one has an answer, if she's not 'chosen' as a hero with the mark thingy, I suppose she's just a random soldier, even if she's stronger. But I also wonder if she'll make good on that promise! She seemed to genuinely care about him and all that, so she might help. If she does, will the party be OK with it? - -Flare seems to hate that a 'trash' person is a hero just like her, so she might also hate that a non-hero is better than the heroes. If she tries to help, I could see Flare acting in anger, and taking her out or something. And if Healer-kun grew close to her, it might piss him off even more than he already is. - -Also curious about the other members of the party. Will they show how they all join, and how they're all ok with torturing him? I mean in this 'reset' I guess they won't be torturing him anymore, but I wonder how it happened the first time around; ""Hey guys, this is our healer, make sure to treat him like a dog and stuff"" ""Ok!"" - -You'd think they'd at least question it a little. Even if one of them was pure evil, the others might not be as crazy. Especially if they think themselves hero material. - -Well, I can't wait to see how it happens, what he'll want to do to them, and if they'll realize it early, or what. Will they try to fight back but he's just too powerful now? I wonder. - -Also: This is harem, right? I wonder if the Demon Lord will ever join his harem, I mean if he's against the other heroes! They seemed to paint her in a positive light. Not just compared to the heroes, but in general. She didn't seem that evil for a demon. - -^^As ^^a ^^demon/succubus ^^enthusiast ^^I ^^hope ^^she ^^joins ^^him! - -Next episode: [Ruining her](https://imgur.com/LYMhz98) so soon? I thought it would be a bit more of a long-term thing, but healer-kun doesn't mess around!";False;False;;;;1610565186;;False;{};gj55xf2;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj55xf2/;1610633057;21;True;False;anime;t5_2qh22;;0;[]; -[];;;FelixThe-Trap;;;[];;;;text;t2_23tmi85l;False;False;[];;Man you down bad. it's airing rn, wait until it gets uploaded online. it will probably be up in an hour or so.;False;False;;;;1610565246;;False;{};gj5629n;False;t3_kwisyw;False;False;t1_gj55slz;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5629n/;1610633148;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LesbianCommander;;;[];;;;text;t2_xkfd3;False;False;[];;"There's a manga called ""My Room Is A Dungeon Rest Stop"" that's not hentai, but the way to increase a character's level cap is by kissing. - -It's actually kind fun in a fluffy-trash kind of way.";False;False;;;;1610565408;;False;{};gj56fmq;False;t3_kwisyw;False;False;t1_gj4o6yn;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj56fmq/;1610633402;9;False;False;anime;t5_2qh22;;0;[]; -[];;;Kiyori;;;[];;;;text;t2_cxejt;False;False;[];;Your feelings are right, the mc is exactly that kind of person, I do not recommend watching more if this kind of thing puts you off.;False;False;;;;1610565463;;False;{};gj56k7g;False;t3_kwisyw;False;False;t1_gj4qkk9;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj56k7g/;1610633486;14;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610565516;;False;{};gj56og8;False;t3_kwisyw;False;True;t1_gj4xgjc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj56og8/;1610633564;8;True;False;anime;t5_2qh22;;0;[]; -[];;;TimetoDDDuel;;;[];;;;text;t2_2ljjuma0;False;False;[];;God I love the shopkeep's reaction,implying that this dude flying across the counter at mach 5 and throwing 20+ people into the air is a regular occurence.;False;False;;;;1610565596;;1610568411.0;{};gj56v1b;False;t3_kwk3f3;False;False;t3_kwk3f3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj56v1b/;1610633688;266;True;False;anime;t5_2qh22;;0;[]; -[];;;NotMentallySane;;;[];;;;text;t2_7g2tfho1;False;False;[];;I dont think skill copying in itself is the technique but through the healing allows him to take the experience and mimic it;False;False;;;;1610565602;;False;{};gj56vg6;False;t3_kwisyw;False;False;t1_gj55rf6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj56vg6/;1610633695;58;True;False;anime;t5_2qh22;;0;[]; -[];;;NearWinner;;;[];;;;text;t2_68jzmig0;False;False;[];;Very good first chapter, many things have happened. I like the different MC's, I'm tired of seeing perfect heroes who don't transmit anything to me.;False;False;;;;1610565647;;False;{};gj56z68;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj56z68/;1610633769;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610565705;;False;{};gj573zg;False;t3_kwisyw;False;True;t1_gj5629n;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj573zg/;1610633864;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi thecrimsontrigger, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610565705;moderator;False;{};gj5741q;False;t3_kwisyw;False;True;t1_gj573zg;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5741q/;1610633866;0;False;False;anime;t5_2qh22;;0;[]; -[];;;TheHeadPatter;;;[];;;;text;t2_5gsty4wo;False;False;[];;I mean it's technically not a hentai, just a very **very** ecchi manga.;False;False;;;;1610565710;;False;{};gj574gn;False;t3_kwisyw;False;False;t1_gj52d7y;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj574gn/;1610633873;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Xampz15;;;[];;;;text;t2_1h6xijps;False;False;[];;Here it is. The worst abomination to be ever written, the pinnacle of incel power fantasy. And it's hot garbage as expected. They tried to make it tv friendly while still keeping the cringey edgyness of the manga/LN and managed to create such a low effort trash that I'm honestly disappointed. I don't know how anyone could make a more offensive story, but they, at least with this first episode, made the anime unbelieavably boring given what length they go in the manga to be edgy.;False;True;;comment score below threshold;;1610565751;;1610566002.0;{};gj577q9;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj577q9/;1610633934;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610565762;;False;{};gj578nf;False;t3_kwisyw;False;True;t1_gj56og8;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj578nf/;1610633950;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"> why wouldn't you even be such an ass to your healer out of nowhere? - -Assuming you meant ""why would you"": - -She had quite a 180, but if we try to reason it: She's trying to save the world, bringing an 'incompetent' with her can mean trouble; Sure he has great healing abilities, but she thinks he can only use them once, that's not very reliable. - -To be honest, when I saw it, it reminded me how people sometimes act in MMORPG; At first they're friendly enough and willing to help, but anyone who mess up is trashed and sometimes kicked out. - -But well, it's actual fantasy and not a videogame world, so who knows. Maybe she has a backstory about a healer failing to heal the party and getting her friends killed or something... - -Or maybe she's just an ass!";False;False;;;;1610565790;;False;{};gj57axp;False;t3_kwisyw;False;False;t1_gj4kp17;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj57axp/;1610633994;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"Pretty fun episode to cool down from the first battle and establish the overall tone of the show. The lighthearted bits were good and the fanservice doesn't feel out of place at all (we got some [""wait for the blu-rays"" steam](https://i.imgur.com/7uhuMwJ.jpg) though) but the hints at something more serious were there and done well. The bit about [Armor Boys](https://i.imgur.com/yM6yiWV.jpg) was particularly hilarious though, best laugh I've had so far. - -We'll have to wait and see if the lighthearted and serious sides of the show actually mesh well together in the later episodes.";False;False;;;;1610565812;;False;{};gj57cph;False;t3_kwk23i;False;False;t3_kwk23i;/r/anime/comments/kwk23i/soukou_musume_senki_episode_2_discussion/gj57cph/;1610634028;4;True;False;anime;t5_2qh22;;0;[]; -[];;;deehwae;;;[];;;;text;t2_7vcvl6ce;False;False;[];;Where do you watch the Uncensored Version?;False;False;;;;1610565840;;False;{};gj57f1n;False;t3_kwisyw;False;False;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj57f1n/;1610634073;8;True;False;anime;t5_2qh22;;0;[]; -[];;;fredthefishlord;;;[];;;;text;t2_ba5at3b;False;False;[];;It might be at the point where it's just so bad people on twitter are just like how the fuck did this get greenlit, because it's definitely fucked up enough that there isn't much to debate on how fucked up it is, so not as much outrage as something with an argument;False;False;;;;1610565840;;False;{};gj57f3q;False;t3_kwisyw;False;False;t1_gj4u4j4;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj57f3q/;1610634074;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;"> subgenre of the Japanese genres of manga and anime, characterized by overtly sexualized characters and sexually explicit images and plots. - -Yea, that fits definition. I mean, there are some people who think that officially released manga can't be hentai which is dumb imho";False;False;;;;1610565952;;False;{};gj57ogq;False;t3_kwisyw;False;True;t1_gj574gn;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj57ogq/;1610634261;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kasdean;;;[];;;;text;t2_6j1oajc2;False;False;[];;Where you looking online that will drop it straight away? I know a few places but it usually takes them a while to add the uncensored versions;False;False;;;;1610566042;;False;{};gj57vt1;False;t3_kwisyw;False;False;t1_gj54ymz;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj57vt1/;1610634395;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"Haven't read this one, but I would love to see more dark/edgy series adapted, to be honest. - -One thing I really like about manga/anime is the variety, and while my most watched genres are probably Romcoms and Psychological/thrillers, it's fun to get something different once in a while.";False;False;;;;1610566048;;False;{};gj57wd1;False;t3_kwisyw;False;False;t1_gj4s05c;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj57wd1/;1610634407;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"> and Suzuno fantasizing about it - -The question still remains: Was she fantasizing about them with *her?* Or was she a fujo in her previous life and she was fantasizing about them with *each other?* Not that there's anything wrong with either of those, of course.";False;False;;;;1610566081;;False;{};gj57yx3;False;t3_kwk23i;False;False;t1_gj53w06;/r/anime/comments/kwk23i/soukou_musume_senki_episode_2_discussion/gj57yx3/;1610634465;6;True;False;anime;t5_2qh22;;0;[]; -[];;;coolgaara;;;[];;;;text;t2_7nslb;False;False;[];;Does this HIDIVE have the uncensored version?;False;False;;;;1610566150;;False;{};gj584s7;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj584s7/;1610634586;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"> Expect the comments here to triple after the uncensored version haha - -But will it be that different? I mean the only censor so far was the maid stuff. Is it simply removing that dark filter, or will they add some scenes or I don't know what? - -I suppose the uncensored will be way different for future episodes, but the first one should be about the same (I think). - -(I mean, I'll probably watch it too for my thesis on sexy maids, but still!)";False;False;;;;1610566202;;False;{};gj5899w;False;t3_kwisyw;False;False;t1_gj4jkr7;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5899w/;1610634675;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Artistic_Turnover665;;;[];;;;text;t2_7ur51mks;False;False;[];;May I have some research sauce then,dear sir;False;False;;;;1610566303;;False;{};gj58hk1;True;t3_kwjq2a;False;False;t1_gj4ivgu;/r/anime/comments/kwjq2a/i_need_some_answers/gj58hk1/;1610634855;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610566381;;False;{};gj58o0d;False;t3_kwisyw;False;False;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj58o0d/;1610634974;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Shona_Cloverfield;;;[];;;;text;t2_4zv9izq;False;False;[];;Thanks a lot :);False;False;;;;1610566392;;False;{};gj58oud;False;t3_kwisyw;False;False;t1_gj56k7g;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj58oud/;1610634991;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610566437;;False;{};gj58soo;False;t3_kwisyw;False;True;t1_gj578nf;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj58soo/;1610635066;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BudgetRespect;;;[];;;;text;t2_3vx4tfoh;False;False;[];;Why would it deserve a shitshow? If someone does not like it, they should not watch it.;False;False;;;;1610566534;;False;{};gj590lz;False;t3_kwisyw;False;False;t1_gj51pfw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj590lz/;1610635216;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;lul psycho smile is his resting face.;False;False;;;;1610566588;;False;{};gj594y3;False;t3_kwisyw;False;False;t1_gj4s5np;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj594y3/;1610635300;29;True;False;anime;t5_2qh22;;0;[]; -[];;;killerofcheese;;;[];;;;text;t2_zkkin;False;False;[];;theres a newer movie but idk how old you are so it might not be that one either;False;False;;;;1610566633;;False;{};gj598id;False;t3_kwitjm;False;True;t1_gj51mva;/r/anime/comments/kwitjm/not_sure_what_the_anime_movie_is/gj598id/;1610635370;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lucacp_ysoz;;MAL;[];;http://myanimelist.net/profile/SoZLuka;dark;text;t2_gch7f;False;False;[];;"AT-X is broadcasting 2 versions of this anime, a ""PG13"" version at 23:30 Japan Time (UTC+9) and a ""R+"" at 04:00 (Thu) Japan Time. - -Meaning the ""proper"" version should be out at any moment now, you-know-where";False;False;;;;1610566676;;False;{};gj59bva;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj59bva/;1610635439;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610566797;;False;{};gj59lmx;False;t3_kwisyw;False;True;t1_gj58soo;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj59lmx/;1610635623;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hoseja;;;[];;;;text;t2_3t2v4;False;False;[];;I'm here 4 hours later.;False;False;;;;1610566811;;False;{};gj59mu4;False;t3_kwisyw;False;False;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj59mu4/;1610635646;5;True;False;anime;t5_2qh22;;0;[]; -[];;;SparklessSoul;;;[];;;;text;t2_7akjl1jb;False;False;[];;People who won’t even watch it gonna cry about it;False;False;;;;1610566841;;False;{};gj59pa8;False;t3_kwisyw;False;True;t1_gj4soc0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj59pa8/;1610635692;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610566930;moderator;False;{};gj59wfc;False;t3_kwisyw;False;True;t1_gj55cu2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj59wfc/;1610635842;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610566960;moderator;False;{};gj59ywc;False;t3_kwisyw;False;True;t1_gj5469v;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj59ywc/;1610635897;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610566983;;False;{};gj5a0on;False;t3_kwisyw;False;True;t1_gj578nf;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5a0on/;1610635929;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610566983;moderator;False;{};gj5a0pr;False;t3_kwisyw;False;True;t1_gj55120;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5a0pr/;1610635929;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Same, Shieldbro never quite went full edge and was all talk, no brutality. That bitch who got her name changed to slut as her punishment for murder, attempted murder and perjury? In this anime she would be mindraped, physically raped and perhaps eaten alive in the end.;False;False;;;;1610566997;;False;{};gj5a1sp;False;t3_kwisyw;False;False;t1_gj4u2rn;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5a1sp/;1610635949;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Brook0999;;;[];;;;text;t2_ycupg;False;False;[];;"I find raul much more sympathetic in his actions and justification’s. - -How he does his vengeance it is so classy. - -After redo of a healer anime, an anime adaption of raul’s ln/manga looks so tame in comparison.";False;False;;;;1610567050;;False;{};gj5a649;False;t3_kwisyw;False;False;t1_gj594y3;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5a649/;1610636038;31;True;False;anime;t5_2qh22;;0;[]; -[];;;JackBrun6969;;;[];;;;text;t2_3gbdvs8n;False;False;[];;"wait its in actual theaters wtf u -i thought they were closed bc of covid";False;False;;;;1610567052;;False;{};gj5a68l;True;t3_kwjipc;False;True;t1_gj4i3mh;/r/anime/comments/kwjipc/where_can_i_watch_the_demon_slayer_movie/gj5a68l/;1610636041;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JackBrun6969;;;[];;;;text;t2_3gbdvs8n;False;False;[];;i didnt know it was like IN a theater;False;False;;;;1610567069;;False;{};gj5a7mo;True;t3_kwjipc;False;True;t1_gj4i2de;/r/anime/comments/kwjipc/where_can_i_watch_the_demon_slayer_movie/gj5a7mo/;1610636068;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lyota;;;[];;;;text;t2_5q8nqqc;False;False;[];;"tbh goblin slayer isnt even close to this, i dont want to spoil but man, almost everyone in this world are rotten and this is why keyaru is doing ""bad things"" to them in his 2nd life";False;False;;;;1610567199;;False;{};gj5ai0l;False;t3_kwisyw;False;False;t1_gj53d4g;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5ai0l/;1610636273;17;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610567214;;False;{};gj5aj8h;False;t3_kwisyw;False;True;t1_gj590lz;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5aj8h/;1610636297;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Sorry /u/notathrowaway75, this comment has been removed because some spoiler tags did not include a description of the spoiler content inside the brackets. Please make sure to label all your spoilers so that other users know what is being spoiled and to ensure the visibility of the spoilers with mobile applications. - -[](#yanderebot) - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610567215;moderator;False;{};gj5aj9t;False;t3_kwisyw;False;True;t1_gj5aj8h;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5aj9t/;1610636297;0;False;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Also, for all his anger, he never actually did anything cruel or tormented his enemies. Rather, his way of punishing them was even less than what would have been just by law. He is a goody-two-shoes just disguised as a darker personality.;False;False;;;;1610567253;;False;{};gj5amdd;False;t3_kwisyw;False;False;t1_gj4v2pl;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5amdd/;1610636356;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Loggevik;;;[];;;;text;t2_fbc8frz;False;False;[];;It gets worse but in a good way;False;False;;;;1610567269;;False;{};gj5annn;False;t3_kwisyw;False;True;t1_gj4tljd;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5annn/;1610636385;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RinoaDH;;;[];;;;text;t2_ivfm8;False;False;[];;Can someone let me know when it is possible to watch the uncensored version of it somewhere? I know you can't say where, but when will be enough, i hope;False;False;;;;1610567301;;False;{};gj5aq8a;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5aq8a/;1610636434;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MithrilEcho;;;[];;;;text;t2_zyn38;False;False;[];;Oooof that one's edgy.;False;False;;;;1610567328;;False;{};gj5at1o;False;t3_kwisyw;False;False;t1_gj4s05c;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5at1o/;1610636497;13;True;False;anime;t5_2qh22;;0;[]; -[];;;notathrowaway75;;MAL;[];;https://myanimelist.net/profile/notathrowaway75;dark;text;t2_fomut;False;False;[];;I said shitstorm, as in tons of people criticizing it. This show is rape the anime so yeah, it'll be deserved.;False;True;;comment score below threshold;;1610567356;;False;{};gj5aury;False;t3_kwisyw;False;True;t1_gj590lz;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5aury/;1610636530;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;The show that separates the wheat from the chaff.;False;False;;;;1610567364;;False;{};gj5avdj;False;t3_kwisyw;False;False;t1_gj4rge1;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5avdj/;1610636542;25;True;False;anime;t5_2qh22;;0;[]; -[];;;BTGz;;;[];;;;text;t2_bctmn;False;False;[];;"""I hate this! But i'm still going to keep watching just to have something to complain about!""";False;False;;;;1610567379;;False;{};gj5awnn;False;t3_kwisyw;False;False;t1_gj577q9;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5awnn/;1610636567;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"Not in Japan. Japan is an example of one of the countries who handled the pandemic and quarantine efficiently and effectively. Japan was already a pretty clean country beforehand, so enforcing regulations wasn’t super difficult. I mean, a bunch of Japanese people were already wearing face masks before corona was a thing lol. - -Thus, they were able to open theaters (albeit very cautiously) a lot sooner and just in time for the demon slayer movie to release.";False;False;;;;1610567411;;False;{};gj5azc2;False;t3_kwjipc;False;True;t1_gj5a68l;/r/anime/comments/kwjipc/where_can_i_watch_the_demon_slayer_movie/gj5azc2/;1610636627;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Prodigy0928;;;[];;;;text;t2_3kg2qhzg;False;False;[];;Looking good so far... *hehe*;False;False;;;;1610567427;;False;{};gj5b0me;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5b0me/;1610636658;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Prodigy0928;;;[];;;;text;t2_3kg2qhzg;False;False;[];;I thought about Rance when I first saw him too;False;False;;;;1610567466;;False;{};gj5b3ww;False;t3_kwisyw;False;False;t1_gj4k0kj;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5b3ww/;1610636719;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Good production was needed to make this watchable dude. Some other anime with a good story is still watchable with some slideshow.;False;False;;;;1610567469;;False;{};gj5b478;False;t3_kwisyw;False;False;t1_gj4vd5s;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5b478/;1610636726;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Sound business model, works well in the era of social media.;False;False;;;;1610567563;;False;{};gj5bc1v;False;t3_kwisyw;False;True;t1_gj4ppbx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5bc1v/;1610636886;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Xampz15;;;[];;;;text;t2_1h6xijps;False;False;[];;It's very funny how you people always say the exact same thing, it's almost like you can't handle criticism. I probably will continue to watch and complaining about it, and you know what? Knowing that people like you get super angry and triggered makes it almost worth it.;False;True;;comment score below threshold;;1610567585;;False;{};gj5bdy7;False;t3_kwisyw;False;False;t1_gj5awnn;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5bdy7/;1610636921;-12;True;False;anime;t5_2qh22;;0;[]; -[];;;AkodoRyu;;MAL;[];;http://myanimelist.net/animelist/AkodoRyu;dark;text;t2_6vq07;False;False;[];;To be fair, nothing worth bitching from twitter happened yet, but it's basically 100% guaranteed that the wider online community will lose their shit because of this show. I mean, they did it over Goblin Slayer, and AFAIK GS is PG compared to this one.;False;False;;;;1610567730;;False;{};gj5bpr0;False;t3_kwisyw;False;True;t1_gj4jgwc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5bpr0/;1610637158;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheHeadPatter;;;[];;;;text;t2_5gsty4wo;False;False;[];;"Well I guess that depends on one's interpretation of ""sexually explicit images and plot"". How lewd and explicit do you have to get to be a hentai vs just smut ecchi manga? Or is it the same thing? The way I see it is, if there's no genitals shown then it's ecchi or smut. Or at least thats usually how it is.";False;False;;;;1610567735;;1610568205.0;{};gj5bq5q;False;t3_kwisyw;False;False;t1_gj57ogq;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5bq5q/;1610637166;5;True;False;anime;t5_2qh22;;0;[]; -[];;;BudgetRespect;;;[];;;;text;t2_3vx4tfoh;False;False;[];;"So there is rape in it. Again, if someone does not like it, they should not watch it. There are tons of movies, games, hentai/porn where rape, torture and stuff like that happen. I hate this ""I will make a fking # out of it"" culture.";False;False;;;;1610567748;;False;{};gj5br84;False;t3_kwisyw;False;False;t1_gj5aury;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5br84/;1610637187;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;His meat isn't out yet? It will be.;False;False;;;;1610567849;;False;{};gj5bzjv;False;t3_kwisyw;False;True;t1_gj4wu7l;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5bzjv/;1610637351;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;Ignore the sourpuss, they’ll be back next week to complain more.;False;False;;;;1610567850;;False;{};gj5bzph;False;t3_kwisyw;False;False;t1_gj55blp;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5bzph/;1610637353;5;True;False;anime;t5_2qh22;;0;[]; -[];;;BTGz;;;[];;;;text;t2_bctmn;False;False;[];;Nope, just pointing out your stupidity.;False;False;;;;1610567871;;False;{};gj5c1ho;False;t3_kwisyw;False;False;t1_gj5bdy7;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5c1ho/;1610637388;7;True;False;anime;t5_2qh22;;0;[]; -[];;;notathrowaway75;;MAL;[];;https://myanimelist.net/profile/notathrowaway75;dark;text;t2_fomut;False;False;[];;And if someone does not like it and wants to voice their criticisms, they are free to do so.;False;False;;;;1610567912;;False;{};gj5c4xm;False;t3_kwisyw;False;True;t1_gj5br84;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5c4xm/;1610637454;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Xampz15;;;[];;;;text;t2_1h6xijps;False;False;[];;Okay dude, sure lmao;False;True;;comment score below threshold;;1610567919;;False;{};gj5c5ib;False;t3_kwisyw;False;True;t1_gj5c1ho;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5c5ib/;1610637464;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Redeeming traits on MC's enemies: 404 not found;False;False;;;;1610567949;;False;{};gj5c7xr;False;t3_kwisyw;False;False;t1_gj57axp;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5c7xr/;1610637509;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610568011;;False;{};gj5cd29;False;t3_kwisyw;False;True;t1_gj4opa6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5cd29/;1610637606;2;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;Nentai;False;False;;;;1610568018;;False;{};gj5cdn7;False;t3_kwisyw;False;False;t1_gj4kc4i;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5cdn7/;1610637618;19;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;The MC is definitely going nuts;False;False;;;;1610568064;;False;{};gj5che3;False;t3_kwisyw;False;False;t1_gj4ns17;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5che3/;1610637690;22;True;False;anime;t5_2qh22;;0;[]; -[];;;DutchyXD;;;[];;;;text;t2_wxnlx;False;False;[];;Because there is a market for it. Simple as that.;False;False;;;;1610568121;;False;{};gj5cly8;False;t3_kwisyw;False;False;t1_gj4j9xx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5cly8/;1610637781;18;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610568134;;False;{};gj5cn4i;False;t3_kwk3f3;False;True;t1_gj56v1b;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj5cn4i/;1610637803;0;True;False;anime;t5_2qh22;;0;[]; -[];;;wjodendor;;;[];;;;text;t2_f2f741;False;False;[];;"There's a genre for that called LitRPG (LitRPG, short for Literary Role Playing Game, is a literary genre combining the conventions of computer RPGs with science-fiction and fantasy novels. The term is a neologism introduced in 2013 - from wikipedia). - - Isekai by definition requires going to another world.";False;False;;;;1610568310;;False;{};gj5d14j;False;t3_kwisyw;False;False;t1_gj50fsc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5d14j/;1610638087;11;True;False;anime;t5_2qh22;;0;[]; -[];;;pi8you;;;[];;;;text;t2_3jobjyjn;False;False;[];;Nope, that was some heavy blacking out of the relevant scenes.;False;False;;;;1610568370;;False;{};gj5d5sa;False;t3_kwisyw;False;True;t1_gj584s7;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5d5sa/;1610638176;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610568381;;False;{};gj5d6pu;False;t3_kwisyw;False;True;t1_gj4opa6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5d6pu/;1610638193;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;He is theatrical to the max, this mc emphasizes personal suffering more.;False;False;;;;1610568476;;False;{};gj5dee2;False;t3_kwisyw;False;False;t1_gj5a649;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5dee2/;1610638340;22;True;False;anime;t5_2qh22;;0;[]; -[];;;DestroyerOfDoom29;;;[];;;;text;t2_yvqy9eh;False;False;[];;Ill be back when the uncensored hits. Goddamn why is there a delay between the censored and uncensored one?;False;False;;;;1610568516;;False;{};gj5dhi5;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5dhi5/;1610638399;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chelseablue2004;;;[];;;;text;t2_6mqvr;False;False;[];;"So let me get this right, In this story.. All the heroes are giant a-holes.... - -The main one is a princess that's really a piece of work, and the main character wants to get revenge on all of them by restarting time but now has all his memories back and built up an immunity to heroin and other drugs so they can't control him. - -What could go wrong with this story? (btw I've never read the manga so I have no idea what will happen next)";False;False;;;;1610568529;;False;{};gj5diip;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5diip/;1610638418;21;True;False;anime;t5_2qh22;;0;[]; -[];;;kriosken12;;;[];;;;text;t2_3zpju4rz;False;False;[];;Just you wait until the.....forcefull feminization and canniballism parts.;False;False;;;;1610568539;;False;{};gj5dj9t;False;t3_kwisyw;False;False;t1_gj4l8ey;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5dj9t/;1610638432;8;True;False;anime;t5_2qh22;;0;[]; -[];;;kriosken12;;;[];;;;text;t2_3zpju4rz;False;False;[];;This will be an interesting 12 weeks.;False;False;;;;1610568580;;False;{};gj5dmit;False;t3_kwisyw;False;False;t1_gj4dhje;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5dmit/;1610638497;14;True;False;anime;t5_2qh22;;0;[]; -[];;;qwilliams92;;;[];;;;text;t2_11le5l;False;False;[];;I truly dont understand how and why this got an adaption. The light novels must sell well because all those sad Otaku dont feel bad about reading about constant rape if its not illustrated. Shit is edge for the sake of edge;False;False;;;;1610568636;;False;{};gj5dqyz;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5dqyz/;1610638581;4;True;False;anime;t5_2qh22;;0;[]; -[];;;coolgaara;;;[];;;;text;t2_7nslb;False;False;[];;Well, guess that only leaves one option..;False;False;;;;1610568650;;False;{};gj5ds23;False;t3_kwisyw;False;False;t1_gj5d5sa;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5ds23/;1610638602;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610568707;;False;{};gj5dwkp;False;t3_kwisyw;False;True;t1_gj5cd29;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5dwkp/;1610638685;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lyota;;;[];;;;text;t2_5q8nqqc;False;False;[];;yeah, people watch what they dont like is usual;False;False;;;;1610568716;;False;{};gj5dxba;False;t3_kwisyw;False;True;t1_gj5bdy7;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5dxba/;1610638702;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Fluffy9345;;;[];;;;text;t2_2od0d93r;False;False;[];;Hentai heaven? Lmao;False;False;;;;1610568725;;False;{};gj5dxzt;False;t3_kwisyw;False;True;t1_gj59bva;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5dxzt/;1610638714;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Brook0999;;;[];;;;text;t2_ycupg;False;False;[];;Raul is a great entertainer.;False;False;;;;1610568745;;False;{};gj5dzk2;False;t3_kwisyw;False;False;t1_gj5dee2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5dzk2/;1610638745;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Fluffy9345;;;[];;;;text;t2_2od0d93r;False;False;[];;No. Just At-x;False;False;;;;1610568775;;False;{};gj5e1wj;False;t3_kwisyw;False;True;t1_gj54x62;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5e1wj/;1610638793;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BigBat6;;;[];;;;text;t2_5kzs0gd2;False;False;[];;How's the uncensored version?;False;False;;;;1610568875;;False;{};gj5e9x4;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5e9x4/;1610638942;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kuddlesworth9419;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kuddlesworth;light;text;t2_btage;False;False;[];;The un-censored verison is out boys!;False;False;;;;1610568877;;False;{};gj5ea4a;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5ea4a/;1610638945;4;True;False;anime;t5_2qh22;;0;[]; -[];;;noolvidarminombre;;;[];;;;text;t2_tjm6v;False;False;[];;It's just edgy revenge trash for now, nothing special;False;False;;;;1610568880;;False;{};gj5eac4;False;t3_kwisyw;False;True;t1_gj4vlvs;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5eac4/;1610638950;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ArmadilloOk2814;;;[];;;;text;t2_8sxmskh9;False;False;[];;cause u dont know where to find it lel;False;False;;;;1610568895;;False;{};gj5ebj0;False;t3_kwisyw;False;True;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5ebj0/;1610638974;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;Pretty sure it’s mentioned that he does this often;False;False;;;;1610568895;;False;{};gj5eblq;False;t3_kwk3f3;False;False;t1_gj56v1b;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj5eblq/;1610638975;108;True;False;anime;t5_2qh22;;0;[]; -[];;;NinokuNANI;;;[];;;;text;t2_65tpsjrl;False;False;[];;A show I will be watching while my husband is at work because I do not want to answer any questions or get any looks.;False;False;;;;1610568920;;False;{};gj5edkf;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5edkf/;1610639020;32;True;False;anime;t5_2qh22;;0;[]; -[];;;kriosken12;;;[];;;;text;t2_3zpju4rz;False;False;[];;"I agree wholeheartedly with you. - -The most annoying thing to me is that the only way the author could make something as shallow and overly edgy as Redo of Healer work, is by making every character so stereotipically evil and one dimensional that they make the MC (a fricking rapist) look like the poor victim who is completely on the right for commiting coutless human rights violations because he was ""betrayed"" by them.";False;False;;;;1610568944;;False;{};gj5efdy;False;t3_kwisyw;False;False;t1_gj53lvo;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5efdy/;1610639054;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ezorethyk2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/catalin_sara;light;text;t2_1vlmn3cp;False;False;[];;Just asking but is this show a dark adaptation with extreme explicit content or just an edgy show with a ton of fanservice? Also, do i need to watch it with headphones?;False;False;;;;1610569057;;False;{};gj5eobz;False;t3_kwisyw;False;False;t1_gj4soc0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5eobz/;1610639225;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Dionysio5;;;[];;;;text;t2_fq2v2;False;False;[];;where ?;False;False;;;;1610569078;;False;{};gj5eq1f;False;t3_kwisyw;False;True;t1_gj5ea4a;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5eq1f/;1610639261;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;"Love Hina (kinda) - -Ai Yori Aoshi (kinda) - -Clannad After Story - -Kanon (2006)";False;False;;;;1610569087;;False;{};gj5eqpi;False;t3_kwj9gp;False;True;t3_kwj9gp;/r/anime/comments/kwj9gp/looking_for_an_anime_where_male_mc_gets_married/gj5eqpi/;1610639273;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mori_Forest;;;[];;;;text;t2_3foohwla;False;False;[];;Just saw the screenshots, very nice nipple tiddies.;False;False;;;;1610569122;;False;{};gj5etfn;False;t3_kwisyw;False;False;t1_gj5e9x4;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5etfn/;1610639325;8;True;False;anime;t5_2qh22;;0;[]; -[];;;camaron28;;;[];;;;text;t2_tj7mj;False;False;[];;"HEAL HERO DESTROYS SJWS!!!!!! PART 13 - -Video submitted to youtube: 13/12/2023";False;False;;;;1610569129;;False;{};gj5eu0q;False;t3_kwisyw;False;False;t1_gj4ppbx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5eu0q/;1610639335;5;True;False;anime;t5_2qh22;;0;[]; -[];;;soberboijay;;;[];;;;text;t2_5dpgzx1v;False;False;[];;Thanks;False;False;;;;1610569227;;False;{};gj5f1yy;True;t3_kwj9gp;False;True;t1_gj5eqpi;/r/anime/comments/kwj9gp/looking_for_an_anime_where_male_mc_gets_married/gj5f1yy/;1610639486;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kuddlesworth9419;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kuddlesworth;light;text;t2_btage;False;False;[];;"The high seas. - -Edit: 0m0 released a troll video, pretty funny actually. It's been taken down now though. I still have the copy so I will uplaod to YouTube for archival purposes. - -Edit: This is the video he uploaded. https://www.youtube.com/watch?v=Fj8sJjaRFgY&feature=youtu.be";False;False;;;;1610569286;;1610574630.0;{};gj5f6pw;False;t3_kwisyw;False;False;t1_gj5eq1f;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5f6pw/;1610639578;4;True;False;anime;t5_2qh22;;0;[]; -[];;;kriosken12;;;[];;;;text;t2_3zpju4rz;False;False;[];;">Heard this Monte Cristo-like revenge fantasy - -Nah thats to classy for this piece of trash. - -If you want an actually good revenge fantasy series that doesn't need rape to be interesting, then I recomend you the much better Nidome no Yuusha. It came out relatively at the same time as Healer yet its not as popular because its less controversial.";False;False;;;;1610569312;;False;{};gj5f8vk;False;t3_kwisyw;False;False;t1_gj53d4g;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5f8vk/;1610639620;10;True;False;anime;t5_2qh22;;0;[]; -[];;;kriosken12;;;[];;;;text;t2_3zpju4rz;False;False;[];;Let me just say: TRUST YOUR INSTINCS.;False;False;;;;1610569381;;False;{};gj5feis;False;t3_kwisyw;False;False;t1_gj4qkk9;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5feis/;1610639733;9;True;False;anime;t5_2qh22;;0;[]; -[];;;flopc9292;;;[];;;;text;t2_9t0ynav9;False;False;[];;"Here are some shots from the uncensored version. - -NSFW [Front look.](https://i.imger.co/p6hY9.png) - -NSFW [From below](https://i.imger.co/p632j.png) - -NSFW [Front view](https://i.imger.co/p6rLT.png)";False;False;;;;1610569438;;False;{};gj5fjam;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5fjam/;1610639826;83;True;False;anime;t5_2qh22;;0;[]; -[];;;DestroyerOfDoom29;;;[];;;;text;t2_yvqy9eh;False;False;[];;What was the ruckus about tensei?;False;False;;;;1610569462;;False;{};gj5fl5o;False;t3_kwisyw;False;False;t1_gj4u4j4;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5fl5o/;1610639864;9;True;False;anime;t5_2qh22;;0;[]; -[];;;kriosken12;;;[];;;;text;t2_3zpju4rz;False;False;[];;True, but countering rape with even more rape is not really the best solution.;False;False;;;;1610569471;;False;{};gj5flya;False;t3_kwisyw;False;False;t1_gj4zvnl;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5flya/;1610639883;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Xampz15;;;[];;;;text;t2_1h6xijps;False;False;[];;This is literally the first episode, lol.;False;False;;;;1610569506;;False;{};gj5foqw;False;t3_kwisyw;False;True;t1_gj5dxba;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5foqw/;1610639937;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;Yeeep. Already seen it and updated my post to include the uncensored scene ( ͡° ͜ʖ ͡°);False;False;;;;1610569586;;False;{};gj5fv1l;False;t3_kwisyw;False;False;t1_gj4tzpk;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5fv1l/;1610640068;27;True;False;anime;t5_2qh22;;0;[]; -[];;;Lyota;;;[];;;;text;t2_5q8nqqc;False;False;[];;">I probably will continue to watch and complaining about it - -yeah yeah sure";False;False;;;;1610569589;;False;{};gj5fval;False;t3_kwisyw;False;True;t1_gj5foqw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5fval/;1610640072;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lucacp_ysoz;;MAL;[];;http://myanimelist.net/profile/SoZLuka;dark;text;t2_gch7f;False;False;[];;lmao, I'm gonna love this anime.;False;False;;;;1610569618;;False;{};gj5fxo3;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5fxo3/;1610640116;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;I love people who don't blink an eye when people get mauled to death but the second someone is raped it's the actual worst thing that was ever made.;False;False;;;;1610569642;;False;{};gj5fzmz;False;t3_kwisyw;False;False;t1_gj5aury;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5fzmz/;1610640154;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Xampz15;;;[];;;;text;t2_1h6xijps;False;False;[];;Exactly, I know what I said. If so, what's your problem?;False;False;;;;1610569657;;False;{};gj5g0rz;False;t3_kwisyw;False;True;t1_gj5fval;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5g0rz/;1610640175;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;kriosken12;;;[];;;;text;t2_3zpju4rz;False;False;[];;"Honestly just read Nidome no Yuusha if you want to read a revenge fantasy series. It has great characters, even greater villains and unlike Healer it actually delves into phylosophical themes of revenge like ""is it ever gonna end or am I just making more and more mental gimnastics in order to keep enjoying the feeling of revenge""?";False;False;;;;1610569683;;False;{};gj5g2v3;False;t3_kwisyw;False;False;t1_gj4ugb6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5g2v3/;1610640217;13;True;False;anime;t5_2qh22;;0;[]; -[];;;BudgetRespect;;;[];;;;text;t2_3vx4tfoh;False;False;[];;They absolutely can. I just don't like how it leads to the cancellation culture and to people afraid to speak their mind to not anger a loud minority and their virtue signaling on social media because there is something they don't like.;False;False;;;;1610569691;;False;{};gj5g3hv;False;t3_kwisyw;False;False;t1_gj5c4xm;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5g3hv/;1610640229;8;True;False;anime;t5_2qh22;;0;[]; -[];;;_Nerex;;;[];;;;text;t2_t56sk;False;False;[];;"Fair, then again, if raping and mindbreaking someone or killing them prevents them from committing genocide, or numerous counts of rape/torture, then I'd say its excusable. - -This statement will be more agreeable as the season goes on and we get to see the modus operandi of people like the sword hero left to their devices.";False;False;;;;1610569761;;1610590581.0;{};gj5g8zt;False;t3_kwisyw;False;True;t1_gj5flya;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5g8zt/;1610640333;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;kriosken12;;;[];;;;text;t2_3zpju4rz;False;False;[];;Honestly, this show is so trashy that it can both attract the edgelords and earn the hate of everybody else.;False;False;;;;1610569793;;False;{};gj5gbe7;False;t3_kwisyw;False;False;t1_gj4rge1;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5gbe7/;1610640383;57;True;False;anime;t5_2qh22;;0;[]; -[];;;jojo_is_trash;;;[];;;;text;t2_595dn1yo;False;False;[];;You watch a show about a lot of suffering inflicted on one person, and then immediately go watch a show about one person inflicting a lot of suffering on others;False;False;;;;1610569797;;False;{};gj5gbrg;False;t3_kwisyw;False;False;t1_gj513h2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5gbrg/;1610640391;114;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;This give me hope for a Nozoki Ana full adaptation;False;False;;;;1610569842;;False;{};gj5gfbr;False;t3_kwisyw;False;False;t1_gj4tq2x;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5gfbr/;1610640462;103;True;False;anime;t5_2qh22;;0;[]; -[];;;notathrowaway75;;MAL;[];;https://myanimelist.net/profile/notathrowaway75;dark;text;t2_fomut;False;False;[];;This is actually an interesting thing about how we consume and respond to violence in media. Why do we view murder and rape so differently? But of course it can also serve as a gotcha.;False;False;;;;1610569937;;1610570401.0;{};gj5gmtq;False;t3_kwisyw;False;True;t1_gj5fzmz;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5gmtq/;1610640609;0;True;False;anime;t5_2qh22;;0;[]; -[];;;diexu;;;[];;;;text;t2_uries;False;False;[];;Next episode ill be Goblin Slayer /Shield Hero shitstorm again;False;False;;;;1610569960;;False;{};gj5gonq;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5gonq/;1610640648;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;brodred;;;[];;;;text;t2_294fh3;False;False;[];;I saw the first one and also got spoiled about the story, i will not tell people to stop seen it since everyone can see what they want, i wont do it since i found it too disgusting and tesited, but what i found messy and worrying is that some people truly belive that the main character is a moral one and enjoy the rape and torture scenes, i notice that specially on the hispanic community (from where i am);False;False;;;;1610569963;;False;{};gj5goxo;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5goxo/;1610640654;6;True;False;anime;t5_2qh22;;0;[]; -[];;;YellowestOne;;;[];;;;text;t2_23ucvkqg;False;False;[];;"So can anyone tell me how far his revenge goes? Does he harm innocent people in order to get his revenge? I know you’ll probably think I’m a wimp or something but I really dislike when bad things happen to the good guys. -If his revenge was justified and only targeted at the ones who truly deserve it, I could probably watch it (I’m a bit weaker hearted than most, sorry for the strange question)";False;False;;;;1610569980;;False;{};gj5gqd8;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5gqd8/;1610640683;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kriosken12;;;[];;;;text;t2_3zpju4rz;False;False;[];;"Honestly, that isn't even the ""compassionate"" solution anymore. MC is planning to give back the memories of the girls in the future to make them suffer even more at the realization of what they've become. Even after making them into completely different people that are subservient to him, MC still thinks of ways to torture them. - - -If he wanted to prevent those events then he would just have killed them already.";False;False;;;;1610569981;;False;{};gj5gqg8;False;t3_kwisyw;False;False;t1_gj5g8zt;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5gqg8/;1610640686;23;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;This show reminds me of those revenge rape hentai I mean the Mc gives Hentai rape mc vibes;False;False;;;;1610570025;;False;{};gj5gtzu;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5gtzu/;1610640756;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610570045;;False;{};gj5gvli;False;t3_kwisyw;False;True;t1_gj4u91t;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5gvli/;1610640790;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;You are a god among men;False;False;;;;1610570095;;False;{};gj5gzm7;False;t3_kwisyw;False;False;t1_gj4tshh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5gzm7/;1610640864;52;True;False;anime;t5_2qh22;;0;[]; -[];;;regime60;;;[];;;;text;t2_3jkmq3xr;False;False;[];;This is on another level of peter grill, it's hella fucking crazy with the shit that goes down that would need to be censored.;False;False;;;;1610570326;;False;{};gj5hi6b;False;t3_kwisyw;False;False;t1_gj4v6n7;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5hi6b/;1610641222;15;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;Rance would like to have a word with you and also most Hentai Mcs as well;False;False;;;;1610570361;;False;{};gj5hl35;False;t3_kwisyw;False;True;t1_gj5efdy;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5hl35/;1610641279;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FelixThe-Trap;;;[];;;;text;t2_23tmi85l;False;False;[];;come on man i've searched the seven seas high and low and can't find it. Yes i know i'm down bad;False;False;;;;1610570405;;False;{};gj5hone;False;t3_kwisyw;False;False;t1_gj5f6pw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5hone/;1610641348;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Vongola691;;;[];;;;text;t2_6zyxknme;False;False;[];;Does anybody know a website that will have the uncensored version or the super uncensored version?;False;False;;;;1610570421;;False;{};gj5hpz6;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5hpz6/;1610641372;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pi8you;;;[];;;;text;t2_3jobjyjn;False;False;[];;That's a hard pass from me, I don't need/want that much edge with my horniness.;False;False;;;;1610570479;;False;{};gj5hur6;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5hur6/;1610641464;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AdmirableFondant0;;;[];;;;text;t2_3u7avr5f;False;False;[];;countless rapes in GOT yet it wasn't cancelled,hmmm;False;False;;;;1610570523;;False;{};gj5hya4;False;t3_kwisyw;False;False;t1_gj5aury;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5hya4/;1610641529;9;True;False;anime;t5_2qh22;;0;[]; -[];;;KnightKal;;;[];;;;text;t2_pwr4duc;False;False;[];;well it is like cancer, you make the body overheal itself into death.;False;False;;;;1610570560;;False;{};gj5i1bf;False;t3_kwisyw;False;False;t1_gj55rf6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5i1bf/;1610641587;69;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610570567;;False;{};gj5i1w5;False;t3_kwisyw;False;True;t1_gj5gqg8;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5i1w5/;1610641598;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;BassCreat0r;;;[];;;;text;t2_81037;False;False;[];;Think I'll pass on the guro rape anime, thanks.;False;False;;;;1610570573;;False;{};gj5i2dq;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5i2dq/;1610641606;5;False;False;anime;t5_2qh22;;0;[]; -[];;;YouJustGotDabbedOn;;;[];;;;text;t2_9idi21mg;False;False;[];;That scene where healslut drugged himself was short but disturbing 🤣;False;False;;;;1610570582;;False;{};gj5i332;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5i332/;1610641621;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;nananashi3;;;[];;;;text;t2_soegz;False;False;[];;[AT-X stitch of pre-OP Flare.](https://i.imgur.com/r05mkzW.png);False;False;;;;1610570630;;False;{};gj5i6y1;False;t3_kwisyw;False;False;t1_gj4tshh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5i6y1/;1610641705;25;True;False;anime;t5_2qh22;;0;[]; -[];;;kenjasama;;;[];;;;text;t2_9q2aelyc;False;False;[];;The anime was interesting and I read the manga. He becomes a demon only against those who have done terrible things to him;False;False;;;;1610570671;;False;{};gj5ia4v;False;t3_kwisyw;False;False;t1_gj5gqd8;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5ia4v/;1610641776;5;True;False;anime;t5_2qh22;;0;[]; -[];;;adeleke5140;;;[];;;;text;t2_10tpx9;False;False;[];;Fresh sand must be a delicacy;False;False;;;;1610570712;;False;{};gj5idch;False;t3_kwk3f3;False;True;t3_kwk3f3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj5idch/;1610641844;5;True;False;anime;t5_2qh22;;0;[]; -[];;;notathrowaway75;;MAL;[];;https://myanimelist.net/profile/notathrowaway75;dark;text;t2_fomut;False;False;[];;"This is actually an interesting thing about how we consume and respond to violence in media. Why do we view murder and rape so differently? But of course it can also serve as a gotcha. - -Not to mention the implication that the rapes in GOT haven't been criticized is just laughable.";False;False;;;;1610570713;;False;{};gj5idgl;False;t3_kwisyw;False;True;t1_gj5hya4;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5idgl/;1610641846;0;True;False;anime;t5_2qh22;;0;[]; -[];;;BeefiousMaximus;;;[];;;;text;t2_8jzc9;False;False;[];;That would be amazing, if for no other reason than it would probably also mean an official English translation of the manga.;False;False;;;;1610570816;;False;{};gj5ilx9;False;t3_kwisyw;False;False;t1_gj5gfbr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5ilx9/;1610642007;15;True;False;anime;t5_2qh22;;0;[]; -[];;;notathrowaway75;;MAL;[];;https://myanimelist.net/profile/notathrowaway75;dark;text;t2_fomut;False;False;[];;Virtue signaling? It's rape the anime. The criticisms will definitely be genuine.;False;False;;;;1610570863;;False;{};gj5ipoe;False;t3_kwisyw;False;False;t1_gj5g3hv;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5ipoe/;1610642079;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Xander066;;;[];;;;text;t2_8e6gzkx;False;False;[];;At this point, the more something outrages Twitter, the more I'll defend it. I don't even care if it's good or bad, I just want to see the snowflakes loose their shit over it.;False;False;;;;1610570869;;False;{};gj5iq52;False;t3_kwisyw;False;False;t1_gj51pfw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5iq52/;1610642089;13;True;False;anime;t5_2qh22;;0;[]; -[];;;notathrowaway75;;MAL;[];;https://myanimelist.net/profile/notathrowaway75;dark;text;t2_fomut;False;False;[];;"This is honestly kind of pathetic. - -Actually that's too harsh. This is really sad.";False;False;;;;1610570917;;False;{};gj5iu1t;False;t3_kwisyw;False;False;t1_gj5iq52;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5iu1t/;1610642167;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610570918;;False;{};gj5iu3l;False;t3_kwisyw;False;True;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5iu3l/;1610642167;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sad_Rush_4773;;;[];;;;text;t2_5sgwmb8o;False;False;[];;Where dude pls;False;False;;;;1610570922;;False;{};gj5iui6;False;t3_kwisyw;False;False;t1_gj5ea4a;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5iui6/;1610642176;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610570953;;False;{};gj5iwyv;False;t3_kwisyw;False;True;t1_gj5i1w5;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5iwyv/;1610642227;1;True;False;anime;t5_2qh22;;0;[]; -[];;;corruptbytes;;;[];;;;text;t2_11i5mn;False;False;[];;"after reading through a bunch of otome isekai mangas and webtoons that deal with revenge, this feels p mediocre as a revenge fantasy and definitely more rape fantasy - -no issue with the edgier content and i hope we get more shows that cross the line in every direction, there's just seems to be much better stuff out there not fueled by controversy";False;False;;;;1610570956;;False;{};gj5ix95;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5ix95/;1610642232;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Sad_Rush_4773;;;[];;;;text;t2_5sgwmb8o;False;False;[];;Anyone knows where to watch the uncensored version?;False;False;;;;1610570980;;False;{};gj5iz6i;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5iz6i/;1610642269;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiraho;;;[];;;;text;t2_bwkkf;False;False;[];;"It's always interesting to see the same people come back week after week to complain about the show they watch and comment on. - -I hope they're being paid for it some way. They put in a lot of work.";False;False;;;;1610570991;;False;{};gj5j03h;False;t3_kwisyw;False;True;t1_gj5bzph;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5j03h/;1610642287;1;True;False;anime;t5_2qh22;;0;[]; -[];;;username500500;;;[];;;;text;t2_5gcp6o36;False;False;[];;why is that shit popular ? every character is a meme i dont get the appeal;False;True;;comment score below threshold;;1610571037;;False;{};gj5j3t3;False;t3_kwisyw;False;True;t1_gj5gfbr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5j3t3/;1610642359;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610571192;;False;{};gj5jgdm;False;t3_kwisyw;False;True;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5jgdm/;1610642606;1;True;False;anime;t5_2qh22;;0;[]; -[];;;winmace;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/winmace;light;text;t2_d41vr;False;False;[];;Something is definitely rising ( ͡° ͜ʖ ͡°);False;False;;;;1610571212;;False;{};gj5jhwv;False;t3_kwisyw;False;True;t1_gj54o04;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5jhwv/;1610642654;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hesghdfs;;;[];;;;text;t2_97zzxxoz;False;False;[];;That actually sounds very interesting. Thank you!;False;False;;;;1610571262;;False;{};gj5jlx9;False;t3_kwisyw;False;False;t1_gj5g2v3;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5jlx9/;1610642734;7;True;False;anime;t5_2qh22;;0;[]; -[];;;kriosken12;;;[];;;;text;t2_3zpju4rz;False;False;[];;"Hey man don't shittalk my boy rance, he doesn't need to brainwash, drug or kidnapp women to get laid. - -Also, most hentai mc aren't pieces of human garbage that you have to do some olympic level of mental gymnastics to root for.";False;False;;;;1610571354;;False;{};gj5jtag;False;t3_kwisyw;False;False;t1_gj5hl35;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5jtag/;1610642878;8;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;"Sounds kinda like something by Leji Matsumoto? - -So maybe Galaxy Express 999 or Captain Harlock?";False;False;;;;1610571389;;False;{};gj5jw4k;False;t3_kwitjm;False;True;t3_kwitjm;/r/anime/comments/kwitjm/not_sure_what_the_anime_movie_is/gj5jw4k/;1610642932;1;True;False;anime;t5_2qh22;;0;[]; -[];;;d1dupre1996;;;[];;;;text;t2_1uwvo2na;False;False;[];;How did you watch the uncensored version already?;False;False;;;;1610571433;;False;{};gj5jzo6;False;t3_kwisyw;False;True;t1_gj5fv1l;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5jzo6/;1610642997;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Belmut_613;;;[];;;;text;t2_18ua7y;False;False;[];;That the MC is really horny i guess.;False;False;;;;1610571499;;False;{};gj5k516;False;t3_kwisyw;False;False;t1_gj5fl5o;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5k516/;1610643093;7;True;False;anime;t5_2qh22;;0;[]; -[];;;MisakaMikotoPL;;;[];;;;text;t2_218zp08;False;False;[];;Oh yes;False;False;;;;1610571649;;False;{};gj5kgx6;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5kgx6/;1610643317;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610571662;;False;{};gj5khy6;False;t3_kwisyw;False;True;t1_gj5d6pu;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5khy6/;1610643337;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610571694;;False;{};gj5kkl4;False;t3_kwisyw;False;True;t1_gj5cd29;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5kkl4/;1610643384;1;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;Maybe Iam watching the ones with the fucked up tags then;False;False;;;;1610571703;;False;{};gj5klb4;False;t3_kwisyw;False;False;t1_gj5jtag;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5klb4/;1610643397;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sworp123;;;[];;;;text;t2_70kjkn0w;False;False;[];;"It has nothing to do with math. Since it's been mentioned he does this ""often"", it would only take a few tries for someone like him, who obviously has enhanced visual acuity and physical ability to do it. It's more muscle memory and his crazy ass body/mind.";False;False;;;;1610571750;;False;{};gj5kp5r;False;t3_kwk3f3;False;False;t1_gj4mvua;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj5kp5r/;1610643469;28;True;False;anime;t5_2qh22;;0;[]; -[];;;BudgetRespect;;;[];;;;text;t2_3vx4tfoh;False;False;[];;I call it virtue signaling, because they will raise their voices on a currently hot topic. How is rape worse than murdering someone or torturing while it is much more common in media? Because people got used to it? It happens to men?;False;False;;;;1610571759;;False;{};gj5kpva;False;t3_kwisyw;False;False;t1_gj5ipoe;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5kpva/;1610643482;10;True;False;anime;t5_2qh22;;0;[]; -[];;;ByonKun;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_16umub;False;False;[];;Because the uncensored version had to be aired at 4 am in Japan. Unlike 23:30 for the regular version. The uncensored version have already aired so you could find it if you know where to look....;False;False;;;;1610571840;;False;{};gj5kw6h;False;t3_kwisyw;False;True;t1_gj5aq8a;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5kw6h/;1610643604;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kriosken12;;;[];;;;text;t2_3zpju4rz;False;False;[];;Eh, im not judging. I've watched some with King Hassan along with some other unsetling tags.;False;False;;;;1610571854;;False;{};gj5kxbe;False;t3_kwisyw;False;True;t1_gj5klb4;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5kxbe/;1610643626;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;[YARRR](https://i.imgur.com/tVaZOkR.png);False;False;;;;1610571920;;False;{};gj5l2lh;False;t3_kwisyw;False;False;t1_gj5jzo6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5l2lh/;1610643727;3;True;False;anime;t5_2qh22;;0;[]; -[];;;scyrinelol;;;[];;;;text;t2_7n104i35;False;False;[];;did you find that version;False;False;;;;1610571945;;False;{};gj5l4kv;False;t3_kwisyw;False;True;t1_gj57vt1;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5l4kv/;1610643765;1;True;False;anime;t5_2qh22;;0;[]; -[];;;theHypatia;;;[];;;;text;t2_3gdbi72k;False;False;[];;If you're here for the feels train, Beastars, Violet Evergarden, and Mob Psycho 100 are all strong choices. Anohana is another good one, and it's more in the vein of the shows you mentioned.;False;False;;;;1610572018;;False;{};gj5laan;False;t3_kwjl1j;False;True;t3_kwjl1j;/r/anime/comments/kwjl1j/all_aboard_the_feel_train/gj5laan/;1610643873;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thecrimsontrigger;;;[];;;;text;t2_10nqwv02;False;False;[];;I keep hearing that it'll be out either later today or that it'll be out 6 days from now (still haven't found a clear answer yet). As for websites, I'd imagine you'd be able to watch it on the original website that you watched the censored version on, but if I hear anything about it, I'll try to keep you posted.;False;False;;;;1610572161;;False;{};gj5llo6;False;t3_kwisyw;False;True;t1_gj5hpz6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5llo6/;1610644091;3;True;False;anime;t5_2qh22;;0;[]; -[];;;scyrinelol;;;[];;;;text;t2_7n104i35;False;False;[];;please DM the link fam :/;False;False;;;;1610572162;;False;{};gj5llrx;False;t3_kwisyw;False;True;t1_gj5l2lh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5llrx/;1610644094;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lvlasteryoda;;;[];;;dark;text;t2_5fbw3;False;False;[];;"Quite a good ring to it ""I am the Cancer Hero!"".";False;False;;;;1610572196;;False;{};gj5logu;False;t3_kwisyw;False;False;t1_gj5i1bf;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5logu/;1610644145;79;True;False;anime;t5_2qh22;;0;[]; -[];;;TheTruthVeritas;;;[];;;;text;t2_1056nw;False;False;[];;He's also probably the anime youtuber that most appeals to r/anime as well. Some of his vids feel just like this sub.;False;False;;;;1610572310;;False;{};gj5lxsk;False;t3_kwisyw;False;False;t1_gj51pig;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5lxsk/;1610644322;18;True;False;anime;t5_2qh22;;0;[]; -[];;;notathrowaway75;;MAL;[];;https://myanimelist.net/profile/notathrowaway75;dark;text;t2_fomut;False;False;[];;"> I call it virtue signaling, because they will raise their voices on a currently hot topic. - -It's seasonal anime. New anime is constantly coming out and people are watching it. Criticizing people for doing that by phrasing it how you did is extremely unfair. - ->How is rape worse than murdering someone or torturing while it is much more common in media? Because people got used to it? It happens to men? - -Rape is more common than murder in media? What? And plenty of women get murdered and tortured in media. - -This is actually an interesting thing about how we consume and respond to violence in media. Why do we view murder and rape so differently? But of course it can also serve as a gotcha. - -My answer to that question is that we're all acutely aware of physical pain and our mortality. We see physical murder and violence, and we can imagine what that would feel like. Rape on the other hand is violence that we are not used to. We just know it's a horrible invasion of someone's body. That's what makes it uncomfortable. - -Rape is also serves as a really cheap plot device or character development in many instances.";False;False;;;;1610572354;;False;{};gj5m1me;False;t3_kwisyw;False;False;t1_gj5kpva;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5m1me/;1610644395;6;True;False;anime;t5_2qh22;;0;[]; -[];;;03682;;;[];;;;text;t2_17bmhm;False;False;[];;Not very comparable because rape is portrayed as bad in GOT and usually done by bad people while as a manga reader I can say for sure that the main character is a rapist.;False;False;;;;1610572462;;False;{};gj5mav7;False;t3_kwisyw;False;True;t1_gj5hya4;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5mav7/;1610644579;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ergheis;;;[];;;;text;t2_99qyf;False;False;[];;That's because there's nothing of substance in this series. It's built entirely to shock and anger people and fans of (most of) these kinds of revenge fetish genres are usually here for the instant catharsis and the shock value.;False;False;;;;1610572559;;1610572862.0;{};gj5mj1b;False;t3_kwisyw;False;False;t1_gj4ky9e;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5mj1b/;1610644744;20;True;False;anime;t5_2qh22;;0;[]; -[];;;hoseja;;;[];;;;text;t2_3t2v4;False;False;[];;yes... Yes... YESS, LET THE HATE FLOW THROUGH YOU!;False;False;;;;1610572750;;False;{};gj5mz7e;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5mz7e/;1610645072;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;STKNsBESTPLAYER;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/rieL-kt-;light;text;t2_11ljo5;False;False;[];;I've seen twice as many comments exactly like yours than people actually complaining about twitter lmao. tf are you on about;False;False;;;;1610573174;;False;{};gj5nyz4;False;t3_kwisyw;False;True;t1_gj4jgwc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5nyz4/;1610645760;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HayakuEon;;;[];;;;text;t2_hwuazl5;False;False;[];;Yo, can you DM me the link as well?;False;False;;;;1610573182;;False;{};gj5nzoh;False;t3_kwisyw;False;True;t1_gj5l2lh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5nzoh/;1610645773;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AbstractDream;;;[];;;;text;t2_q05gt;False;False;[];;The entire thing is infamous for being edgy along with its explicit content. If the show really does go through the whole way, you might wanna grab headphones.;False;False;;;;1610573245;;False;{};gj5o505;False;t3_kwisyw;False;False;t1_gj5eobz;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5o505/;1610645874;26;True;False;anime;t5_2qh22;;0;[]; -[];;;RiasFx;;;[];;;;text;t2_2vecewf5;False;False;[];;dm pls if you find the uncensored version;False;False;;;;1610573277;;False;{};gj5o7o5;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5o7o5/;1610645928;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610573371;;False;{};gj5ofnv;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5ofnv/;1610646087;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;BudgetRespect;;;[];;;;text;t2_3vx4tfoh;False;False;[];;"I'm not using Twitter, IG or platforms like these, so I'm not always up to date on the currently trending topics. I can see why a new show can be the top # to complain about, but I still see it as a hypocrisy. From what I can see it is always the trending topic that is being complained about. Couple of last years it was always about rape or other sexually/gender related issues. -Sorry for the misunderstanding, maybe I have not expressed myself correctly. I meant that torture and murder is far more common in media, displayed daily. Yet people still complain about one show that dares to show rape while ignoring other grueling images that are far more disturbing. -Yes, there are women being killed and tortured in various media, but in my experience if there is a complaint about or against violence in media, it is usually after seeing a woman or female being the target.";False;False;;;;1610573394;;False;{};gj5ohih;False;t3_kwisyw;False;False;t1_gj5m1me;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5ohih/;1610646121;6;True;False;anime;t5_2qh22;;0;[]; -[];;;HayakuEon;;;[];;;;text;t2_hwuazl5;False;False;[];;I'm satisfied that the MC gave Flare a chance to prove that she was human garbage first before proceeding with his plans;False;False;;;;1610573401;;False;{};gj5oi4p;False;t3_kwisyw;False;False;t1_gj4tusc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5oi4p/;1610646134;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Used_Neighborhood36;;;[];;;;text;t2_6wemrfy0;False;False;[];;Balanced as all thing's should be;False;False;;;;1610573433;;False;{};gj5okpy;False;t3_kwisyw;False;False;t1_gj5gbrg;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5okpy/;1610646184;65;True;False;anime;t5_2qh22;;0;[]; -[];;;ShadowKingthe7;;;[];;;;text;t2_jpaej;False;False;[];;Also helps that the only people in the world who are not massive pieces of shit are already dead.;False;False;;;;1610573470;;False;{};gj5onvl;False;t3_kwisyw;False;False;t1_gj5a649;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5onvl/;1610646248;10;True;False;anime;t5_2qh22;;0;[]; -[];;;HayakuEon;;;[];;;;text;t2_hwuazl5;False;False;[];;Hoo boy, i've seen the uncensored clips, it was about 40 seconds of sex missed.;False;False;;;;1610573489;;False;{};gj5opgd;False;t3_kwisyw;False;False;t1_gj4lhvo;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5opgd/;1610646278;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Renard888;;;[];;;;text;t2_2dnrowir;False;False;[];;The style was a bit like cowboy bebop from what I remember and there was a scene of the girl character showering if that helps galaxy and harlock dont look like that;False;False;;;;1610573687;;False;{};gj5p6ak;True;t3_kwitjm;False;True;t1_gj5jw4k;/r/anime/comments/kwitjm/not_sure_what_the_anime_movie_is/gj5p6ak/;1610646610;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;It's one of the best hentai mangas.;False;False;;;;1610573725;;False;{};gj5p9ko;False;t3_kwisyw;False;True;t1_gj5j3t3;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5p9ko/;1610646677;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DecentlySizedPotato;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/ocha94;light;text;t2_5f0gxk9t;False;False;[];;Still not sold on this anime, sadly. Wasn't really a bad episode, but didn't fix the bad aftertaste from episode one either. But it's nothing too bad either, so imma give it one more episode and I'll decide whether to keep watching.;False;False;;;;1610573803;;False;{};gj5pg5u;False;t3_kwk23i;False;False;t3_kwk23i;/r/anime/comments/kwk23i/soukou_musume_senki_episode_2_discussion/gj5pg5u/;1610646809;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lost-Earth6451;;;[];;;;text;t2_7zmrgfe4;False;False;[];;Anyone know where can I find it uncensored? Asking for a friend;False;False;;;;1610573890;;False;{};gj5pnfu;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5pnfu/;1610646951;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Dyaxa;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_untly;False;False;[];;Fucking heinous. How are people giving this an ‘excellent’ rating?;False;False;;;;1610574086;;False;{};gj5q3x3;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5q3x3/;1610647304;1;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 125, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'When you come across a feel-good thing.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'icon_width': 2048, 'id': 'award_5f123e3d-4f48-42f4-9c11-e98b566d5897', 'is_enabled': True, 'is_new': False, 'name': 'Wholesome', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;Ynairo;;;[];;;;text;t2_13fbnf;False;False;[];;Just sailed the seven seas and watched it uncensored, well color me surprised, the slideshow sex scene turned out SO much better in this one. Since I know what's coming next ep guess I'll just skip the normal version, what's the point of seeing censored when they are actually changing scenes and dialogue.;False;False;;;;1610574097;;False;{};gj5q4sr;False;t3_kwisyw;False;False;t1_gj4tshh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5q4sr/;1610647322;31;True;False;anime;t5_2qh22;;1;[]; -[];;;Lost-Earth6451;;;[];;;;text;t2_7zmrgfe4;False;False;[];;Man of culture;False;False;;;;1610574172;;False;{};gj5qb7t;False;t3_kwisyw;False;False;t1_gj530yp;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5qb7t/;1610647466;7;True;False;anime;t5_2qh22;;0;[]; -[];;;username500500;;;[];;;;text;t2_5gcp6o36;False;False;[];;"I stopped reading when some guy broke into his house and made his ""girlfriend"" sleep with him and then realized he loves her midway. Weirdest shit i read";False;False;;;;1610574297;;False;{};gj5qlr8;False;t3_kwisyw;False;True;t1_gj5p9ko;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5qlr8/;1610647690;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Redmon425;;;[];;;;text;t2_15ro6h;False;False;[];;"Right?! That was actually the scene that sold me on letting him get his revenge. - -He basically was like “alright, I’ll give you 1 chance to prove you can be better in the timeline.” - -And as soon as she proved she wasn’t, he went full on the revenge train lol. - -I respect it.";False;False;;;;1610574350;;False;{};gj5qq4v;False;t3_kwisyw;False;False;t1_gj5oi4p;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5qq4v/;1610647778;12;True;False;anime;t5_2qh22;;0;[]; -[];;;BeefiousMaximus;;;[];;;;text;t2_8jzc9;False;False;[];;"This was happening before the show even aired. There was a thread about the show a week or so ago and it looked like a couple people were just down voting every comment, regardless of context. - -Looks like a case of ""I don't like this, so you shouldn't talk about it.""";False;False;;;;1610574369;;False;{};gj5qrq4;False;t3_kwisyw;False;False;t1_gj4mv5h;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5qrq4/;1610647811;5;True;False;anime;t5_2qh22;;0;[]; -[];;;HayakuEon;;;[];;;;text;t2_hwuazl5;False;False;[];;"I don't know why people dismiss this anime just because ""MC seems rapey"".";False;False;;;;1610574412;;False;{};gj5qvff;False;t3_kwisyw;False;False;t1_gj5qq4v;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5qvff/;1610647894;3;True;False;anime;t5_2qh22;;0;[]; -[];;;EvansJuicyMemes;;;[];;;;text;t2_4k9i06bq;False;False;[];;not really, the only scene with boobs out is the maid one at the end of the episode;False;False;;;;1610574425;;False;{};gj5qwme;False;t3_kwisyw;False;True;t1_gj4dh2g;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5qwme/;1610647918;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Darkerdead;;;[];;;;text;t2_13b1ko;False;False;[];;Help a brother out and give me a link;False;False;;;;1610574460;;False;{};gj5qzm9;False;t3_kwisyw;False;True;t1_gj5l2lh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5qzm9/;1610647980;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vezok_Dreg;;;[];;;;text;t2_78fdvk4q;False;False;[];;What site did you find it on? Been searching myself but no luck.;False;False;;;;1610574461;;False;{};gj5qzqk;False;t3_kwisyw;False;False;t1_gj5q4sr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5qzqk/;1610647982;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610574474;;False;{};gj5r0sh;False;t3_kwisyw;False;True;t1_gj5q3x3;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5r0sh/;1610648002;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;Someone wants to catch the mojo from GS ep1 in a bottle.;False;False;;;;1610574540;;False;{};gj5r6av;False;t3_kwisyw;False;True;t1_gj4j9xx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5r6av/;1610648114;3;True;False;anime;t5_2qh22;;0;[]; -[];;;_-ammar-_;;;[];;;;text;t2_4qobazxv;False;False;[];;always has been;False;False;;;;1610574549;;False;{};gj5r70q;False;t3_kwisyw;False;True;t1_gj51jpg;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5r70q/;1610648128;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mockingbirdguy;;;[];;;;text;t2_6096n672;False;False;[];;Trash but might be high quality trash. I’m intrigued;False;False;;;;1610574553;;False;{};gj5r7de;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5r7de/;1610648135;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;What's wrong with edge?;False;False;;;;1610574554;;False;{};gj5r7i3;False;t3_kwisyw;False;True;t1_gj5dqyz;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5r7i3/;1610648137;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610574744;;False;{};gj5rndc;False;t3_kwisyw;False;True;t1_gj4rge1;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5rndc/;1610648466;-22;True;False;anime;t5_2qh22;;0;[]; -[];;;Streichholzschachtel;;;[];;;;text;t2_8fm29;False;False;[];;"First episode was alright and nothing that would cause a ""twitter shitstorm"".";False;False;;;;1610574753;;False;{};gj5ro4p;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5ro4p/;1610648481;0;True;False;anime;t5_2qh22;;0;[]; -[];;;notathrowaway75;;MAL;[];;https://myanimelist.net/profile/notathrowaway75;dark;text;t2_fomut;False;False;[];;">I can see why a new show can be the top # to complain about, but I still see it as a hypocrisy. - -How is watching the newest seasonal anime and voicing your reaction to it at all hypocritical? - ->Couple of last years it was always about rape or other sexually/gender related issues. - -That's fine? Do you have a problem with sexuality/gender related issues? - ->From what I can see it is always the trending topic that is being complained about. - -People voicing their opinion is what makes the topic trending. - ->Sorry for the misunderstanding, maybe I have not expressed myself correctly. I meant that torture and murder is far more common in media, displayed daily. Yet people still complain about one show that dares to show rape while ignoring other grueling images that are far more disturbing. - -You expressed yourself just fine, and what I said still stands. To paraphrase, physical violence and mortality is familiar, rape is not. And rape is often just a cheap plot device. - ->Yes, there are women being killed and tortured in various media, but in my experience if there is a complaint about or against violence in media, it is usually after seeing a woman or female being the target. - -I mean, yeah. There's a long history of violence against women being used as a cheap plot device to motivate male characters. - -That's not to say criticisms about violence against men don't exist. [Here](https://www.youtube.com/watch?v=uc6QxD2_yQw) are [two](https://www.youtube.com/watch?v=9nheskbsU5g) examples.";False;False;;;;1610574838;;1610575092.0;{};gj5rv1o;False;t3_kwisyw;False;False;t1_gj5ohih;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5rv1o/;1610648621;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Ynairo;;;[];;;;text;t2_13fbnf;False;False;[];;pm'd;False;False;;;;1610574878;;False;{};gj5ryd0;False;t3_kwisyw;False;True;t1_gj5qzqk;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5ryd0/;1610648689;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kreinster;;;[];;;;text;t2_wb3r6;False;False;[];;"\*First episode\* - -Alright then. That happened, and the world is still intact. Huh. Weird, that. Let's see now: - -Mature audience warning. Nice. - -Animation – mediocre, but surprisingly decent in places. - -Plot – I appreciate that he didn't literally heal time, but reversed the planet's state. Makes a bit more sense. And was he actually kind to the Demon there for a second? - -Character goes back in time, and immediately uses a shortcut lost to history to obtain great power with no consequence. Now, which HP time travel fanfic did I read that in? Trick question – *all of them*. - -Maid rape? \*Throws hands up\* Sure. Fuck it. You gotta have a sex scene in the first couple pages, or people will get bored. I, guess? - -And you know, for what is likely a writing exercise in achieving maximum edge (considering the author's very much alright other works), that was actually decent. I found myself dreading the sudden, yet inevitable reveal of the swordswoman as an asshole or her undeserved death. One or the other. Wait, was the catgirl in the OP her? No death, then. - -Could it be? Is this series not that bad- - -""Next episode – Healer ruins Flare!"" - -...I think I'll just go watch Re:Zero. The new episode is out.";False;False;;;;1610574910;;False;{};gj5s0zs;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5s0zs/;1610648742;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KrillinDBZ363;;;[];;;;text;t2_14wqfv;False;False;[];;That’s because the things that make it trashy haven’t happened yet.;False;False;;;;1610574914;;False;{};gj5s1d3;False;t3_kwisyw;False;True;t1_gj4lhvo;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5s1d3/;1610648749;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610574950;;False;{};gj5s4ac;False;t3_kwisyw;False;True;t1_gj5ryd0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5s4ac/;1610648809;1;True;False;anime;t5_2qh22;;0;[]; -[];;;qwilliams92;;;[];;;;text;t2_11le5l;False;False;[];;If its serves no purpose other than to shock its cringe;False;False;;;;1610575220;;False;{};gj5sqnr;False;t3_kwisyw;False;False;t1_gj5r7i3;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5sqnr/;1610649277;6;True;False;anime;t5_2qh22;;0;[]; -[];;;gojasper01;;;[];;;;text;t2_3tpbewbt;False;False;[];;mind sharing link with me too? :);False;False;;;;1610575257;;False;{};gj5stri;False;t3_kwisyw;False;True;t1_gj5ryd0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5stri/;1610649337;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Surylias;;;[];;;;text;t2_kj6vc;False;False;[];;This was actually a good first episode with pretty interesting stuff. The shit people are talking about is surely yet to come, but so far the only notably bad thing about it is the censorship.;False;False;;;;1610575290;;False;{};gj5swfe;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5swfe/;1610649387;4;True;False;anime;t5_2qh22;;0;[]; -[];;;minboxTNbyco;;;[];;;;text;t2_6jep4yp8;False;False;[];;Where did people watch it?;False;False;;;;1610575291;;False;{};gj5swgw;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5swgw/;1610649388;3;True;False;anime;t5_2qh22;;0;[]; -[];;;darkmacgf;;;[];;;;text;t2_11ybmk;False;False;[];;Can any source material readers explain why healers are looked down on? I feel like in most fantasy stories healers are highly prized by other adventurers.;False;False;;;;1610575299;;False;{};gj5sx48;False;t3_kwisyw;False;False;t1_gj4cvpu;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5sx48/;1610649400;9;True;False;anime;t5_2qh22;;0;[]; -[];;;kaji823;;;[];;;;text;t2_4nw1u;False;False;[];;You had me at Interspecies Reviewers;False;False;;;;1610575346;;False;{};gj5t0xo;False;t3_kwisyw;False;False;t1_gj4zuyq;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5t0xo/;1610649475;17;True;False;anime;t5_2qh22;;0;[]; -[];;;ENKlDU;;;[];;;;text;t2_4scvchzo;False;False;[];;"heard this was the trash incel hentai anime - -lets see how it unfolds";False;False;;;;1610575425;;1610629184.0;{};gj5t7el;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5t7el/;1610649595;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ImANewRedditor;;;[];;;;text;t2_90ty9;False;False;[];;"""Cancel culture"" -""Virtue signaling"" - -I see where this is going.";False;False;;;;1610575471;;False;{};gj5tb47;False;t3_kwisyw;False;True;t1_gj5kpva;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5tb47/;1610649669;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Responsible-Chair-17;;;[];;;;text;t2_8fl2trz7;False;False;[];;Low budget koro-sensie;False;False;;;;1610575529;;False;{};gj5tfsf;False;t3_kwk3f3;False;False;t3_kwk3f3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj5tfsf/;1610649758;18;True;False;anime;t5_2qh22;;0;[]; -[];;;ImANewRedditor;;;[];;;;text;t2_90ty9;False;False;[];;You seem like the worst type of person.;False;False;;;;1610575536;;False;{};gj5tgfe;False;t3_kwisyw;False;False;t1_gj5iq52;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5tgfe/;1610649770;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610575570;;False;{};gj5tj5k;False;t3_kwisyw;False;True;t1_gj5ryd0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5tj5k/;1610649824;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DanielsNYLI;;;[];;;;text;t2_74p2zz0z;False;False;[];;Op reminded me of high school DXD. The MC also had a piece of armor around his hand in the op that looked similar to the Gauntlet in DXD.;False;False;;;;1610575624;;False;{};gj5tnhi;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5tnhi/;1610649905;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GetAllTheBestPlayers;;;[];;;;text;t2_3qzyx1y6;False;False;[];;Uncensored version shows the maid riding him, and a slideshow of him with some other maids for like 10 seconds;False;False;;;;1610575632;;False;{};gj5to4t;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5to4t/;1610649917;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;"Not everything needs to be an art. Sometimes people just want some edgy show to laugh about. I suppose you dislike the entire genre of horror as well if you are at it. - -If you are not liking it, don't watch it. Doesn't mean others shouldn't as well.";False;False;;;;1610575659;;False;{};gj5tqd2;False;t3_kwisyw;False;True;t1_gj5sqnr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5tqd2/;1610649958;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Chinese_Nibbba;;;[];;;;text;t2_56ojkg3d;False;False;[];;Can someone leave a link to the uncensored version im down bad;False;False;;;;1610575696;;False;{};gj5ttbb;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5ttbb/;1610650015;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDampGod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheDampGod;light;text;t2_im4vi;False;False;[];;I keep feeling like I've seen the control room of their truck somewhere before, maybe it's just a really standard design.;False;False;;;;1610575774;;False;{};gj5tzmn;False;t3_kwk23i;False;False;t3_kwk23i;/r/anime/comments/kwk23i/soukou_musume_senki_episode_2_discussion/gj5tzmn/;1610650132;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;">I'm guessing Norn is the only good person in the Royal Family. - -Let's just say Norn is best girl. ^(She turns me on the most.)";False;False;;;;1610575782;;False;{};gj5u08s;False;t3_kwisyw;False;False;t1_gj4tshh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5u08s/;1610650143;17;True;False;anime;t5_2qh22;;0;[]; -[];;;dxing2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/dxing;light;text;t2_sbxd9;False;False;[];;That’s considered a spoiler apparently based on this subs rules. So it’ll get removed if someone answers you;False;False;;;;1610575929;;False;{};gj5uc2l;False;t3_kwisyw;False;True;t1_gj5gqd8;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5uc2l/;1610650373;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gloomy-Ad8593;;;[];;;;text;t2_9kvbtdsb;False;False;[];;Yo you know can you tell me where you watched the uncensored version;False;False;;;;1610575940;;False;{};gj5ud05;False;t3_kwisyw;False;True;t1_gj5q4sr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5ud05/;1610650391;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Not the healer the world deserves, but the one it needs right now.;False;False;;;;1610576043;;False;{};gj5ul9x;False;t3_kwisyw;False;False;t1_gj4v6m4;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5ul9x/;1610650549;6;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;True;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610576078;moderator;False;{};gj5uo48;False;t3_kwisyw;False;True;t1_gj5gvli;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5uo48/;1610650601;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dxing2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/dxing;light;text;t2_sbxd9;False;False;[];;Starts off tamer;False;False;;;;1610576183;;False;{};gj5uwj1;False;t3_kwisyw;False;True;t1_gj52hou;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5uwj1/;1610650766;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FatherDotComical;;;[];;;;text;t2_2w4u4081;False;False;[];;"[5 nobodies with 3 Twitter followers dislikes anime] - -The EsJayDubYas R TrIgArded!!!!! - -This comes up everytime with a ecchi anime and it has failed to bloom every time. - -There's always people who won't like something, why care about their opinion so much?";False;False;;;;1610576195;;False;{};gj5uxgs;False;t3_kwisyw;False;False;t1_gj4jgwc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5uxgs/;1610650784;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Deadman3350;;;[];;;;text;t2_5vgdbo1e;False;False;[];;if you would be so kind to help a brother out please;False;False;;;;1610576205;;False;{};gj5uyap;False;t3_kwisyw;False;True;t1_gj5q4sr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5uyap/;1610650800;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AsterJ;;MAL;[];;http://myanimelist.net/animelist/asteron;dark;text;t2_3zjll;False;False;[];;The way it can be explained is that the concept of healing magic in this series can be broken down into the more abstract concept of transforming one form into another. The transformation requires complete knowledge of both forms and the knowledge is what lends itself to skill copying / mind reading.;False;False;;;;1610576285;;False;{};gj5v4m2;False;t3_kwisyw;False;False;t1_gj55rf6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5v4m2/;1610650918;42;True;False;anime;t5_2qh22;;0;[]; -[];;;DadAsFuck;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DadAsFuck;light;text;t2_peaym;False;False;[];;not all heros wear capes;False;False;;;;1610576313;;False;{};gj5v6u2;False;t3_kwisyw;False;False;t1_gj5fjam;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5v6u2/;1610650960;44;True;False;anime;t5_2qh22;;0;[]; -[];;;Aureus23;;;[];;;;text;t2_lnlscw0;False;False;[];;Me to please;False;False;;;;1610576347;;False;{};gj5v9kf;False;t3_kwisyw;False;True;t1_gj5ryd0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5v9kf/;1610651013;0;True;False;anime;t5_2qh22;;0;[]; -[];;;A_0Nane;;;[];;;;text;t2_5wyy0n2r;False;False;[];;Greetings kind sir could you DM me the goods please ?;False;False;;;;1610576377;;False;{};gj5vbvj;False;t3_kwisyw;False;True;t1_gj5l2lh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5vbvj/;1610651056;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Izanaginookami10;;MAL;[];;http://myanimelist.net/profile/Izanaginookami;dark;text;t2_opbh3;False;False;[];;Same, I literally buzzed with excitement and expecation for this thread, especially after [Ex-arm](https://www.reddit.com/r/anime/comments/kujb96/exarm_episode_1_discussion/)'s, though it seems I was early as see less fire than I expected. I mean, Ex-arm's was just filled with pure gold after all.;False;False;;;;1610576621;;False;{};gj5vv4y;False;t3_kwisyw;False;True;t1_gj4soc0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5vv4y/;1610651431;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Kazewatch;;;[];;;;text;t2_mqdki;False;False;[];;For me i’d love to see a full Nana to Kaoru.;False;False;;;;1610576648;;1610584840.0;{};gj5vx6t;False;t3_kwisyw;False;False;t1_gj5gfbr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5vx6t/;1610651471;52;True;False;anime;t5_2qh22;;0;[]; -[];;;ArmadilloOk2814;;;[];;;;text;t2_8sxmskh9;False;False;[];;can you dm me the link pls bro?;False;False;;;;1610576670;;False;{};gj5vz1a;False;t3_kwisyw;False;True;t1_gj5fv1l;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5vz1a/;1610651508;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610576765;;False;{};gj5w6jz;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5w6jz/;1610651651;0;True;False;anime;t5_2qh22;;0;[]; -[];;;CeruSkies;;;[];;;;text;t2_6hy5d;False;False;[];;Where can I see the uncensored version?;False;False;;;;1610576822;;False;{};gj5wb27;False;t3_kwisyw;False;True;t1_gj4k0kj;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5wb27/;1610651738;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CeruSkies;;;[];;;;text;t2_6hy5d;False;False;[];;Where did you even see the uncensored version?;False;False;;;;1610576840;;False;{};gj5wcf9;False;t3_kwisyw;False;True;t1_gj4j9xx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5wcf9/;1610651761;2;True;False;anime;t5_2qh22;;0;[]; -[];;;celtial;;;[];;;;text;t2_fikay;False;False;[];;Can you dm me a link as well have been searching for 4 hours;False;False;;;;1610576899;;False;{};gj5wh67;False;t3_kwisyw;False;True;t1_gj5l2lh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5wh67/;1610651851;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MobileTortoise;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Mobiletortoise;light;text;t2_gylu5;False;False;[];;Yeah this was WAY better than I expected, looking forward to future episodes now just to see how far we can go.;False;False;;;;1610576917;;False;{};gj5wilb;False;t3_kwisyw;False;True;t1_gj4ecfv;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5wilb/;1610651879;1;True;False;anime;t5_2qh22;;0;[]; -[];;;qwilliams92;;;[];;;;text;t2_11le5l;False;False;[];;If a show its edgy for the sake of being edgy and you take it a chance for a good laugh, does that not mean the show failed? I never said people cant watch. If a horror movies goal is to be scary and im scared then bam it did it jobs, if an anime like this one purpose is to be edgy but all i do cringe and and all you do is laugh then its bad. If you want to watch a bad show more power to you;False;False;;;;1610576961;;False;{};gj5wm1p;False;t3_kwisyw;False;False;t1_gj5tqd2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5wm1p/;1610651946;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MrZ1811;;;[];;;;text;t2_qn9rm;False;False;[];;DM link if you could kind sir!;False;False;;;;1610577063;;False;{};gj5wu1d;False;t3_kwisyw;False;True;t1_gj5fv1l;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5wu1d/;1610652105;1;True;False;anime;t5_2qh22;;0;[]; -[];;;luciXer2004;;;[];;;;text;t2_7hmyzk4w;False;False;[];;So when’s the uncensored version coming out;False;False;;;;1610577077;;False;{};gj5wv59;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5wv59/;1610652126;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MyLittleRocketShip;;;[];;;;text;t2_yg6qc;False;False;[];;yea im a good warrior. i got the power all for heal.;False;False;;;;1610577142;;False;{};gj5x0a7;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5x0a7/;1610652224;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Killzone47;;;[];;;;text;t2_80j6cskr;False;False;[];;Chould you help a brother out and dm me the link?;False;False;;;;1610577263;;False;{};gj5x9na;False;t3_kwisyw;False;True;t1_gj5ryd0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5x9na/;1610652403;0;True;False;anime;t5_2qh22;;0;[]; -[];;;matthewnguyennnn;;;[];;;;text;t2_627q6i2x;False;False;[];;dm link pls?;False;False;;;;1610577313;;False;{};gj5xdhv;False;t3_kwisyw;False;True;t1_gj4tshh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5xdhv/;1610652477;0;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Waiting for JK Haru is a sex worker in another world;False;False;;;;1610577424;;False;{};gj5xm5n;False;t3_kwisyw;False;False;t1_gj4tq2x;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5xm5n/;1610652645;39;True;False;anime;t5_2qh22;;0;[]; -[];;;MrHandsss;;;[];;;;text;t2_ky02c;False;False;[];;to be fair the MC of this doesn't NEED to do those things to get laid either. in fact they went out of their way to show it was the opposite. he was getting raped by people constantly just because of what it does for them.;False;False;;;;1610577632;;False;{};gj5y2ct;False;t3_kwisyw;False;True;t1_gj5jtag;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5y2ct/;1610652953;5;True;False;anime;t5_2qh22;;0;[]; -[];;;diexu;;;[];;;;text;t2_uries;False;False;[];;Uncensored version is good;False;False;;;;1610577697;;False;{};gj5y7f5;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5y7f5/;1610653056;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;People just watch this to trigger 'dem SJWs so they can harass a woman with 10 followers complaining on Twitter that she got jebaited into watching a rape incel power fantasy by the misleading advertising of the show;False;False;;;;1610577723;;False;{};gj5y9ju;False;t3_kwisyw;False;False;t1_gj5nyz4;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5y9ju/;1610653099;7;True;False;anime;t5_2qh22;;0;[]; -[];;;diexu;;;[];;;;text;t2_uries;False;False;[];;it is already out;False;False;;;;1610577764;;False;{};gj5ycsh;False;t3_kwisyw;False;False;t1_gj5wv59;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5ycsh/;1610653162;2;True;False;anime;t5_2qh22;;0;[]; -[];;;luciXer2004;;;[];;;;text;t2_7hmyzk4w;False;False;[];;Oh thank you;False;False;;;;1610577796;;False;{};gj5yfau;False;t3_kwisyw;False;True;t1_gj5ycsh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5yfau/;1610653209;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;There will be some backlash as this series seems very innocuous from the poster on streaming services alone. But it's on HiDive, most people won't just stumble over it by accident;False;False;;;;1610577824;;False;{};gj5yhdr;False;t3_kwisyw;False;True;t1_gj4ky9e;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5yhdr/;1610653250;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;"This looks edgy af. Kinda bummed about the MC being so disgustingly OP in comparation to the other heroes. - -I mean in that flashback he was using enough game breaking abilities to arm 3 isekai main characters. - -Seeing the apparent light pacing as he says ""well i just gained poison resistance in 6 seconds"" and stuff makes it feel like this is just gonna be pure unadultered edge. - -Which i'm actually looking forward to see, too many shitty anime with the same plot that end up becoming the same dumb vanilla stuff. Hopefully this wont be the same... - -I wonder if we'll ever return to Anna, she seemed to be nice to him.";False;False;;;;1610577976;;1610578580.0;{};gj5yt45;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5yt45/;1610653490;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ChiggaOG;;;[];;;;text;t2_3hcondt;False;True;[];;I'm here for the story and not the sex. 1st episode in and the MC is already sadistic like you find in hentai. How did it even get passed through for production?;False;False;;;;1610578038;;False;{};gj5yxvu;False;t3_kwisyw;False;True;t1_gj4o6yn;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5yxvu/;1610653596;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dartlord74;;;[];;;;text;t2_1gexkw2g;False;False;[];;hey can u send it to me too homie;False;False;;;;1610578062;;False;{};gj5yzp4;False;t3_kwisyw;False;True;t1_gj5ryd0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5yzp4/;1610653634;0;True;False;anime;t5_2qh22;;0;[]; -[];;;play-devilsadvocate;;;[];;;;text;t2_6c2wmtms;False;False;[];;What a letdown. Before this aired, I read a comment saying 'Remember when people freaked out over the first episode of Goblin Slayer? I can't wait to see the reactions over this'. This episode wasn't even a tenth as controversial as the Goblin Slayer first episode was.;False;False;;;;1610578101;;False;{};gj5z2px;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5z2px/;1610653698;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Mycathatesyou1;;;[];;;;text;t2_jig6t;False;False;[];;What the actual fuck is going on in this anime? I'm not offended by it, but the plot seems all over the place.;False;False;;;;1610578107;;False;{};gj5z36t;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5z36t/;1610653710;4;True;False;anime;t5_2qh22;;0;[]; -[];;;FelOnyx1;;;[];;;;text;t2_12holt;False;False;[];;The old trick where if you can figure out a way to phrase an effect with the word for a character's main power in there somewhere, no matter how ass-backwards and convoluted, they can do it. No limits fallacy with a side of insane troll logic. A staple of powerwank fanfiction, dumb forum arguments about superheros, and of course powerwank isekai.;False;False;;;;1610578162;;False;{};gj5z7dl;False;t3_kwisyw;False;False;t1_gj55rf6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5z7dl/;1610653800;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Tearorize55;;;[];;;;text;t2_61ijlzsy;False;False;[];;2 negatives does make a positive.;False;False;;;;1610578208;;False;{};gj5zaxe;False;t3_kwisyw;False;False;t1_gj5gbrg;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5zaxe/;1610653869;33;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610578238;;False;{};gj5zd6z;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5zd6z/;1610653925;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ingtipo;;MAL;[];;https://myanimelist.net/profile/;dark;text;t2_hdb2k;False;False;[];;if you think of MC's heal and the power in his eye like a cheap version of Tatsuya's Regrowth + Elemental Sight, all makes sense.;False;False;;;;1610578244;;False;{};gj5zdmr;False;t3_kwisyw;False;False;t1_gj5v4m2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5zdmr/;1610653936;31;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;"Don't worry those were my exact same thoughts. - -She seems to have forgotten everything so gg no re.";False;False;;;;1610578319;;False;{};gj5zjdr;False;t3_kwisyw;False;True;t1_gj4uo6b;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5zjdr/;1610654053;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gloomy-Ad8593;;;[];;;;text;t2_9kvbtdsb;False;False;[];;How do I work this website I don’t even know where to watch the episode;False;False;;;;1610578324;;False;{};gj5zjsa;False;t3_kwisyw;False;True;t1_gj5q4sr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5zjsa/;1610654061;1;True;False;anime;t5_2qh22;;0;[]; -[];;;South_Moose9966;;;[];;;;text;t2_95e44i7c;False;False;[];;pass link in dms please;False;False;;;;1610578343;;False;{};gj5zl7t;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5zl7t/;1610654088;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;BigBat6;;;[];;;;text;t2_5kzs0gd2;False;False;[];;Do we see the main females tits?;False;False;;;;1610578376;;False;{};gj5znrm;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5znrm/;1610654136;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;OniiChanStopNotThere;;;[];;;;text;t2_rn5xr;False;False;[];;You sir are the real hero.;False;False;;;;1610578378;;False;{};gj5zny6;False;t3_kwisyw;False;True;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5zny6/;1610654139;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;Didn't Shield Bro ended naming someone Dumb or some cartoonish shit like that?;False;False;;;;1610578388;;False;{};gj5zonx;False;t3_kwisyw;False;True;t1_gj4jgh2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5zonx/;1610654153;0;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;"Or Arifureta. - -Hell you could remove the starting episodes of Ari and the show gets better. - -You can also remove ALL the episodes and get an even higher effect.";False;False;;;;1610578452;;False;{};gj5ztkw;False;t3_kwisyw;False;True;t1_gj4u2rn;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5ztkw/;1610654246;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NoItsNotAnAirplane;;;[];;;;text;t2_tlihv;False;False;[];;Yo, can you dm me where you got the goods?;False;False;;;;1610578485;;False;{};gj5zw29;False;t3_kwisyw;False;True;t1_gj5y7f5;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5zw29/;1610654293;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HotCoco4ChillyPepper;;;[];;;;text;t2_7o9t1xyk;False;False;[];;lul means penis in dutch.;False;False;;;;1610578489;;False;{};gj5zwf5;False;t3_kwisyw;False;True;t1_gj4jgwc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj5zwf5/;1610654300;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Clue-Rare;;;[];;;;text;t2_3iy0b2re;False;False;[];;So, where do you watch it?;False;False;;;;1610578595;;False;{};gj604hb;False;t3_kwisyw;False;False;t1_gj5ycsh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj604hb/;1610654451;1;True;False;anime;t5_2qh22;;0;[]; -[];;;luciXer2004;;;[];;;;text;t2_7hmyzk4w;False;False;[];;Where to watch the uncensored?;False;False;;;;1610578639;;False;{};gj607u1;False;t3_kwisyw;False;True;t1_gj5ycsh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj607u1/;1610654515;1;True;False;anime;t5_2qh22;;0;[]; -[];;;diexu;;;[];;;;text;t2_uries;False;False;[];;im affraid it is spanish subbed but still can dm you the link;False;False;;;;1610578731;;False;{};gj60eyy;False;t3_kwisyw;False;False;t1_gj604hb;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj60eyy/;1610654649;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OrionRBR;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Ramon2000;light;text;t2_yww9h;False;False;[];;Nah, there is a minute and a half uncensored sex scene(no dicc ofc).;False;False;;;;1610578733;;False;{};gj60f41;False;t3_kwisyw;False;False;t1_gj4plkc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj60f41/;1610654652;8;True;False;anime;t5_2qh22;;0;[]; -[];;;diexu;;;[];;;;text;t2_uries;False;False;[];;im affraid it is spanish subbed but still can dm you the link;False;False;;;;1610578737;;False;{};gj60fel;False;t3_kwisyw;False;False;t1_gj5zw29;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj60fel/;1610654657;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WhamPhiobic;;;[];;;;text;t2_1splpldq;False;False;[];;Can you send link too pls;False;False;;;;1610578750;;False;{};gj60gd8;False;t3_kwisyw;False;True;t1_gj5ryd0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj60gd8/;1610654677;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TheWulfAmongUs;;MAL;[];;https://myanimelist.net/profile/WulfBlood13;dark;text;t2_g7ktkob;False;False;[];;Me too, would be much appreciated.;False;False;;;;1610578775;;False;{};gj60ib9;False;t3_kwisyw;False;False;t1_gj5ryd0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj60ib9/;1610654714;0;True;False;anime;t5_2qh22;;0;[]; -[];;;NoItsNotAnAirplane;;;[];;;;text;t2_tlihv;False;False;[];;I'm Portuguese so I can understand Spanish just fine, I would appreciate it if you did;False;False;;;;1610578794;;False;{};gj60jrd;False;t3_kwisyw;False;True;t1_gj60fel;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj60jrd/;1610654741;0;True;False;anime;t5_2qh22;;0;[]; -[];;;kuubi;;;[];;;;text;t2_7kc5i;False;False;[];;"Has been a while since I read it but iirc: So far everything that any healer could do, had the same value as having a simple healing potion with you - compared to the power of the other heroes, it's basically negligible. But then it has a big side-effect: When healing someone, healers feel the pain the wounded person went through, which basically breaks their mind/makes them not want to heal at all. - -No one knows what kind of power a healer hero can actually achieve";False;False;;;;1610578803;;False;{};gj60kfd;False;t3_kwisyw;False;False;t1_gj5sx48;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj60kfd/;1610654755;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Morbid_Fatwad;;;[];;;dark;text;t2_ol3rd;False;False;[];;You do that while I pray for Emergence.;False;False;;;;1610578866;;False;{};gj60p6a;False;t3_kwisyw;False;False;t1_gj5gfbr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj60p6a/;1610654845;2;True;False;anime;t5_2qh22;;0;[]; -[];;;iandewilde21;;;[];;;;text;t2_fj7wc;False;False;[];;"It has a mature content warning for a reason. Wait until the second episode. It will put GS's first episode to shame in terms of controversial (if they don't censor it). - -People probably expected the introduction to be a bit faster and what is on the second episode to be on the first.";False;False;;;;1610578977;;False;{};gj60xga;False;t3_kwisyw;False;False;t1_gj5z2px;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj60xga/;1610655023;5;True;False;anime;t5_2qh22;;0;[]; -[];;;WandererTau;;;[];;;;text;t2_exw8x;False;False;[];;I like how it only has two reviews one is a 10 the other a 1. The duality of man.;False;False;;;;1610579023;;False;{};gj610s6;False;t3_kwisyw;False;True;t1_gj5100z;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj610s6/;1610655093;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tropicalfrosty;;;[];;;;text;t2_31469gfz;False;False;[];;lemme get it too doe;False;False;;;;1610579097;;False;{};gj616av;False;t3_kwisyw;False;True;t1_gj60eyy;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj616av/;1610655202;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Jajichun4;;;[];;;;text;t2_7d08qe8g;False;False;[];;Me too please! dying to watch it :P;False;False;;;;1610579201;;False;{};gj61dx3;False;t3_kwisyw;False;True;t1_gj5ryd0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj61dx3/;1610655355;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Flyers429;;;[];;;;text;t2_1og0f5;False;False;[];;Where do you find the uncensored versions?;False;False;;;;1610579274;;False;{};gj61je8;False;t3_kwisyw;False;False;t1_gj5to4t;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj61je8/;1610655461;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Evilmon2;;;[];;;;text;t2_6e943;False;False;[];;"> he doesn't need to brainwash, drug or kidnapp women to get laid. - -Cause he already has a sex slave that he drags around with him everywhere.";False;False;;;;1610579347;;False;{};gj61otl;False;t3_kwisyw;False;False;t1_gj5jtag;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj61otl/;1610655568;4;True;False;anime;t5_2qh22;;0;[]; -[];;;dxing2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/dxing;light;text;t2_sbxd9;False;False;[];;I’d say you’d probably have to wait a few more episodes. Second episode is where it’ll just start getting there;False;False;;;;1610579395;;False;{};gj61sf0;False;t3_kwisyw;False;False;t1_gj60xga;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj61sf0/;1610655640;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;lol yeah;False;False;;;;1610579480;;False;{};gj61yr3;False;t3_kwisyw;False;False;t1_gj5j03h;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj61yr3/;1610655762;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Radyou;;;[];;;;text;t2_6xba169w;False;False;[];;Any chance to get a link still pls?;False;False;;;;1610579554;;False;{};gj6246x;False;t3_kwisyw;False;True;t1_gj5ryd0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6246x/;1610655869;0;True;False;anime;t5_2qh22;;0;[]; -[];;;tim1OO;;;[];;;;text;t2_4dhwvvty;False;False;[];;Pls DM link;False;False;;;;1610579562;;False;{};gj624qp;False;t3_kwisyw;False;True;t1_gj5q4sr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj624qp/;1610655879;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PacoTaco321;;;[];;;;text;t2_8yxkb;False;False;[];;link pls;False;False;;;;1610579606;;False;{};gj627xk;False;t3_kwisyw;False;True;t1_gj60eyy;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj627xk/;1610655942;0;True;False;anime;t5_2qh22;;0;[]; -[];;;iiiiiiiiiiip;;;[];;;;text;t2_i7ekk;False;False;[];;Because Japan is a country where individual creativity thrives and if there's a market they will produce it.;False;False;;;;1610579673;;False;{};gj62czs;False;t3_kwisyw;False;True;t1_gj4j9xx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj62czs/;1610656039;2;True;False;anime;t5_2qh22;;0;[]; -[];;;iiiiiiiiiiip;;;[];;;;text;t2_i7ekk;False;False;[];;Apparently not!;False;False;;;;1610579763;;False;{};gj62jl0;False;t3_kwisyw;False;False;t1_gj50hzh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj62jl0/;1610656188;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tim1OO;;;[];;;;text;t2_4dhwvvty;False;False;[];;DM me link pls;False;False;;;;1610579786;;False;{};gj62laf;False;t3_kwisyw;False;False;t1_gj60fel;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj62laf/;1610656220;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iandewilde21;;;[];;;;text;t2_fj7wc;False;False;[];;"Considering the title of the next episode is ""The Healer ruins Flare!"", I think we will get to *that* scene and then on episode 3 the ""change"" will occur. Something like that, unless they really pad out the second episode.";False;False;;;;1610579845;;False;{};gj62pnq;False;t3_kwisyw;False;True;t1_gj61sf0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj62pnq/;1610656305;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PacoTaco321;;;[];;;;text;t2_8yxkb;False;False;[];;Only here for the link.;False;False;;;;1610579905;;False;{};gj62u5e;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj62u5e/;1610656397;2;True;False;anime;t5_2qh22;;0;[]; -[];;;iiiiiiiiiiip;;;[];;;;text;t2_i7ekk;False;False;[];;The show is good but if the feelings you're having puts you off you absolutely shouldn't watch it.;False;False;;;;1610579906;;False;{};gj62u7i;False;t3_kwisyw;False;True;t1_gj4qkk9;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj62u7i/;1610656398;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rusted_muramasa;;;[];;;;text;t2_12r9iq;False;False;[];;Ah yes, Rape and Dungeon, the manga where the MC date rapes and mind controls (for more rape) his teacher and classmates just so he can explore said dungeon (which offers treasure purely in the form of more magical date rape/brainwashing tools). A timeless classic that will no doubt go down in history as the pinnacle of fantasy literature.;False;False;;;;1610579941;;False;{};gj62wsh;False;t3_kwisyw;False;False;t1_gj5100z;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj62wsh/;1610656444;39;True;False;anime;t5_2qh22;;0;[]; -[];;;dxing2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/dxing;light;text;t2_sbxd9;False;False;[];;I moreso meant that some of the reasons that people find this anime to be especially disturbing aren’t from that specific scene. That’s my opinion anyways;False;False;;;;1610579943;;False;{};gj62wxv;False;t3_kwisyw;False;False;t1_gj62pnq;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj62wxv/;1610656447;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Chespineapple;;;[];;;;text;t2_12ohaj;False;False;[];;"100% agreed. Anime community's too obsessed with an ""own Twitter/the SJWs"" mentality sometimes, god forbid anyone criticize the medium's portrayal of women at many points. I've been dreading certain youtubers' takes and their 'ironic' circlejerking of the show far more than any justified complaints from Twitter.";False;False;;;;1610580073;;False;{};gj636i1;False;t3_kwisyw;False;False;t1_gj4snxg;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj636i1/;1610656640;28;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610580094;;False;{};gj63814;False;t3_kwisyw;False;True;t1_gj4ns17;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj63814/;1610656668;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iandewilde21;;;[];;;;text;t2_fj7wc;False;False;[];;"Ah, for real, some of the things he does later on really are more disturbing, but if we are talking about ""breaking the internet"", episode 2 probably will do the job just fine.";False;False;;;;1610580094;;False;{};gj63823;False;t3_kwisyw;False;True;t1_gj62wxv;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj63823/;1610656669;3;True;False;anime;t5_2qh22;;0;[]; -[];;;tim1OO;;;[];;;;text;t2_4dhwvvty;False;False;[];;Have u found uncensored version if so pls dm;False;False;;;;1610580103;;False;{};gj638q1;False;t3_kwisyw;False;True;t1_gj5znrm;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj638q1/;1610656682;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bauxl_;;;[];;;;text;t2_9t4anj4n;False;False;[];;Yo share it to me as well;False;False;;;;1610580141;;False;{};gj63bnn;False;t3_kwisyw;False;True;t1_gj5ryd0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj63bnn/;1610656746;0;True;False;anime;t5_2qh22;;0;[]; -[];;;KevR3Y;;;[];;;;text;t2_48zm8oya;False;False;[];;Lemme hop on this link train too please;False;False;;;;1610580153;;False;{};gj63cjq;False;t3_kwisyw;False;True;t1_gj5l2lh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj63cjq/;1610656767;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tim1OO;;;[];;;;text;t2_4dhwvvty;False;False;[];;Do u have 1?;False;False;;;;1610580175;;False;{};gj63e7u;False;t3_kwisyw;False;True;t1_gj62u5e;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj63e7u/;1610656801;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BigBat6;;;[];;;;text;t2_5kzs0gd2;False;False;[];;No time to watch it yet vdo wecsee her titties?;False;False;;;;1610580185;;False;{};gj63ex0;False;t3_kwisyw;False;True;t1_gj638q1;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj63ex0/;1610656815;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;tim1OO;;;[];;;;text;t2_4dhwvvty;False;False;[];;Did u find 1?;False;False;;;;1610580215;;False;{};gj63h56;False;t3_kwisyw;False;True;t1_gj5hpz6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj63h56/;1610656860;1;True;False;anime;t5_2qh22;;0;[]; -[];;;I_Made-This_For-You;;;[];;;;text;t2_2w2gbqmr;False;False;[];;Can you dm me the link to the uncensored version? I can’t find it anywhere;False;False;;;;1610580319;;False;{};gj63ovl;False;t3_kwisyw;False;True;t1_gj5l2lh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj63ovl/;1610657018;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Taerusaki;;skip7;[];;;dark;text;t2_1jiysgpw;False;False;[];;I'm not bored at it and I kinda enjoy it but there are so many flaws that makes the story kinda whack, I'll continue it for a couple more episodes and see for myself, thanks!;False;False;;;;1610580380;;False;{};gj63tfy;True;t3_kwjxza;False;False;t1_gj55imt;/r/anime/comments/kwjxza/should_i_continue_gosick/gj63tfy/;1610657104;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610580395;;False;{};gj63uko;False;t3_kwisyw;False;True;t1_gj51rvu;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj63uko/;1610657128;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Taerusaki;;skip7;[];;;dark;text;t2_1jiysgpw;False;False;[];;I'll continue it, thanks;False;False;;;;1610580399;;False;{};gj63uu6;True;t3_kwjxza;False;True;t1_gj4l5ki;/r/anime/comments/kwjxza/should_i_continue_gosick/gj63uu6/;1610657133;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610580491;;False;{};gj641n6;False;t3_kwisyw;False;True;t1_gj5pnfu;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj641n6/;1610657270;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkRainbow24;;;[];;;;text;t2_osw2q;False;False;[];;DM?;False;False;;;;1610580567;;False;{};gj6476b;False;t3_kwisyw;False;True;t1_gj5y7f5;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6476b/;1610657378;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tim1OO;;;[];;;;text;t2_4dhwvvty;False;False;[];;We see a maids I think;False;False;;;;1610580623;;False;{};gj64bal;False;t3_kwisyw;False;True;t1_gj63ex0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj64bal/;1610657459;0;True;False;anime;t5_2qh22;;0;[]; -[];;;phatKirby;;;[];;;;text;t2_raz5j;False;False;[];;Keyaru its kinda annoying to read until you realize it's the jp equivalent of cure. And then cura, and then curaga later on for his disguises lol.;False;False;;;;1610580686;;False;{};gj64fv4;False;t3_kwisyw;False;False;t1_gj4tshh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj64fv4/;1610657550;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hollowXvictory;;MAL;[];;http://myanimelist.net/animelist/h0ll0wxvict0ry;dark;text;t2_6hn3t;False;False;[];;"Pretty tame first episode despite the reputation. Maybe it will pull a reverse Goblin Slayer and shit's going to get crazy every episode after this haha. - -Also like the court wizard guy says calling what the MC does ""healing"" is putting it lightly. This guy is more like Orihime being able to alter time and reality itself.";False;False;;;;1610580972;;False;{};gj650ow;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj650ow/;1610657958;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610581152;;False;{};gj65dr6;False;t3_kwisyw;False;True;t1_gj5q4sr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj65dr6/;1610658199;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610581226;;False;{};gj65j5b;False;t3_kwisyw;False;True;t1_gj5ryd0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj65j5b/;1610658294;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610581229;;False;{};gj65jc8;False;t3_kwisyw;False;True;t1_gj5ryd0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj65jc8/;1610658297;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sangenshiki;;;[];;;;text;t2_98412sxv;False;False;[];;Incel the animation, now with 250% more cringe.;False;False;;;;1610581396;;False;{};gj65vnp;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj65vnp/;1610658525;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Lyota;;;[];;;;text;t2_5q8nqqc;False;False;[];;"""You gotta have a sex scene in the first couple pages, or people will get bored."" - -I barely remember something like ""gaining exp with sperm"" from manga, so its not like maids were hungry for sex but instead exp. - -and that swordswoman deserves everything, actually, almost everyone in this series deserves worst death because all of them are trash. Unlike other hentai series, this mc has a reason to kill or do ""bad things"" to them";False;False;;;;1610581425;;False;{};gj65xqs;False;t3_kwisyw;False;True;t1_gj5s0zs;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj65xqs/;1610658564;1;True;False;anime;t5_2qh22;;0;[]; -[];;;trueselfdao;;;[];;;;text;t2_1mcwjmbm;False;False;[];;Potential backlash aide, it will probably live or die by the pacing.;False;False;;;;1610581470;;1610600697.0;{};gj660y5;False;t3_kwisyw;False;True;t1_gj4tljd;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj660y5/;1610658627;1;True;False;anime;t5_2qh22;;0;[]; -[];;;psihius;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/psihius;light;text;t2_ebp2e;False;False;[];;Could you PM the link? :);False;False;;;;1610581554;;False;{};gj6670n;False;t3_kwisyw;False;True;t1_gj641n6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6670n/;1610658740;3;True;False;anime;t5_2qh22;;0;[]; -[];;;eh_whatever17;;;[];;;;text;t2_63o5bktw;False;False;[];;Unpopular opinion but jun maeda's humor is top notch whereas the 'sad scenes' are... not very on-point. Except clannad because damn is that the only non rushed show of his haha.;False;False;;;;1610581579;;False;{};gj668sg;False;t3_kwk3f3;False;False;t3_kwk3f3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj668sg/;1610658772;79;True;False;anime;t5_2qh22;;0;[]; -[];;;wannabe414;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/wannabe414;light;text;t2_duznv;False;False;[];;If you're calculating the slope of a parabola before throwing a baseball then you're probably not a human;False;False;;;;1610581683;;False;{};gj66gcm;False;t3_kwk3f3;False;False;t1_gj4mvua;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj66gcm/;1610658914;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610581745;;False;{};gj66ktk;False;t3_kwisyw;False;True;t1_gj6670n;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj66ktk/;1610658995;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VariousMeet;;;[];;;;text;t2_63veb3s5;False;False;[];;Yknow, if you don't really focus on all the 18+ stuff, this actually seems like an entertaining show;False;False;;;;1610581765;;False;{};gj66ma5;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj66ma5/;1610659024;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PacoTaco321;;;[];;;;text;t2_8yxkb;False;False;[];;If I had one I wouldn't be here for the link;False;False;;;;1610581833;;False;{};gj66r4c;False;t3_kwisyw;False;True;t1_gj63e7u;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj66r4c/;1610659117;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610581924;;False;{};gj66xmn;False;t3_kwisyw;False;False;t1_gj5ryd0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj66xmn/;1610659241;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PurityCE;;;[];;;;text;t2_10ygu5;False;False;[];;Not only women..;False;False;;;;1610581948;;False;{};gj66zbo;False;t3_kwisyw;False;True;t1_gj4pavb;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj66zbo/;1610659274;3;True;False;anime;t5_2qh22;;0;[]; -[];;;tim1OO;;;[];;;;text;t2_4dhwvvty;False;False;[];;I found a way to get it so I'm alright now;False;False;;;;1610581993;;False;{};gj672l6;False;t3_kwisyw;False;False;t1_gj66r4c;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj672l6/;1610659337;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;MonaThiccAss;;;[];;;;text;t2_8stg2bwj;False;False;[];;SHIELD HERO on steroids;False;False;;;;1610582272;;False;{};gj67mg6;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj67mg6/;1610659716;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HiddenOniiSama;;;[];;;;text;t2_5zsmzrwi;False;False;[];;can i get it to?;False;False;;;;1610582326;;False;{};gj67q9t;False;t3_kwisyw;False;True;t1_gj5ryd0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj67q9t/;1610659792;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Nepunka;;;[];;;;text;t2_8r9rcc74;False;False;[];;same;False;False;;;;1610582339;;False;{};gj67r7f;False;t3_kwisyw;False;True;t1_gj4zzbl;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj67r7f/;1610659811;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610582388;;False;{};gj67uot;False;t3_kwk3f3;False;True;t3_kwk3f3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj67uot/;1610659882;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fghjokey;;;[];;;;text;t2_ddjakoj;False;False;[];;This show about to make more noise than Shield Hero. I do like how this show is the same studio from Highschool DxD as it was nostalgic.;False;False;;;;1610582390;;False;{};gj67uuv;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj67uuv/;1610659885;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kriosken12;;;[];;;;text;t2_3zpju4rz;False;False;[];;Two sex slaves if you count the underage one.;False;False;;;;1610582437;;False;{};gj67yat;False;t3_kwisyw;False;True;t1_gj61otl;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj67yat/;1610659949;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gajaczek;;MAL;[];;http://myanimelist.net/profile/gaiacheck;dark;text;t2_7mhng;False;False;[];;"It's absolutely fine to like his good works and dislike his worse shows. - -I don't understand why everybody either hates or loves him and nothing inbetween.";False;False;;;;1610582437;;False;{};gj67yd8;False;t3_kwk3f3;False;False;t1_gj668sg;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj67yd8/;1610659951;38;True;False;anime;t5_2qh22;;0;[]; -[];;;HiddenOniiSama;;;[];;;;text;t2_5zsmzrwi;False;False;[];;dm link pls;False;False;;;;1610582572;;False;{};gj687zy;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj687zy/;1610660134;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LuckyPed;;;[];;;;text;t2_banjb;False;False;[];;one of the things you assumed is almost the opposite but I won't spoil it as it will be revealed soon xD;False;False;;;;1610582625;;False;{};gj68bqy;False;t3_kwisyw;False;True;t1_gj4tshh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj68bqy/;1610660206;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;Troll suggestion: Oreimo.;False;False;;;;1610582641;;False;{};gj68cvc;False;t3_kwj9gp;False;True;t3_kwj9gp;/r/anime/comments/kwj9gp/looking_for_an_anime_where_male_mc_gets_married/gj68cvc/;1610660227;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hntaiboi_8;;;[];;;;text;t2_8rzhfrdj;False;False;[];;Bro really I've been looking for uncensored for a while and can't find anything can u tell a fellow weeb 😅;False;False;;;;1610582758;;False;{};gj68l4c;False;t3_kwisyw;False;True;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj68l4c/;1610660391;0;True;False;anime;t5_2qh22;;0;[]; -[];;;MonaThiccAss;;;[];;;;text;t2_8stg2bwj;False;False;[];;yeah, it's like comparing Doom with yandere simulator lmao;False;False;;;;1610582759;;False;{};gj68l7o;False;t3_kwisyw;False;True;t1_gj4jgh2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj68l7o/;1610660393;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Potential-Yellow6111;;;[];;;;text;t2_8xr988sv;False;False;[];;Where do I watch uncensored?;False;False;;;;1610582765;;False;{};gj68lo4;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj68lo4/;1610660402;0;True;False;anime;t5_2qh22;;0;[]; -[];;;DominoAsks;;;[];;;;text;t2_9t4bjeae;False;False;[];;"Kind person of the internet, - -Would you be willing to please dm the link with this fellow pirate as I have not found it in any of my waters? - -Thank you for your generosity, - -DominoAsks";False;False;;;;1610582778;;False;{};gj68mke;False;t3_kwisyw;False;True;t1_gj5ryd0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj68mke/;1610660418;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610582882;;False;{};gj68u0i;False;t3_kwisyw;False;False;t1_gj5q4sr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj68u0i/;1610660573;1;True;False;anime;t5_2qh22;;0;[]; -[];;;eh_whatever17;;;[];;;;text;t2_63o5bktw;False;False;[];;"No, how dare you! If you adore a person, you must adore everything about them! Same goes for hatred! - -Nah but seriously, I feel the 'sad moments' lack substance, or just aren't my type, whereas the humor always gets me. So the first half of his seasons are always amazing to me haha. - -I do not necessarily categorize his shows like worse or better. For me his latest work was on the same level as angel beats so eh! I loved the humor parts and detested the feels on both.";False;False;;;;1610582887;;False;{};gj68uca;False;t3_kwk3f3;False;False;t1_gj67yd8;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj68uca/;1610660579;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Yeah, dont know if you already watched the uncensored but holy shit this show is not holding back, they will go full softcore hentai like Aki Sora;False;False;;;;1610582931;;False;{};gj68xhm;False;t3_kwisyw;False;False;t1_gj5899w;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj68xhm/;1610660644;16;True;False;anime;t5_2qh22;;0;[]; -[];;;RandomRon005;;;[];;;;text;t2_2mk4myep;False;False;[];;"Between this & Ore dake Haireru Kakushi Dungeon: Kossori Kitaete Sekai Saikyou, I feel like 2021 wants to continue the Ecchi/Cultured train as far as it will go.";False;False;;;;1610583208;;False;{};gj69h96;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj69h96/;1610661029;5;True;False;anime;t5_2qh22;;0;[]; -[];;;soberboijay;;;[];;;;text;t2_5dpgzx1v;False;False;[];;Saying it's a troll loses the whole purpose of trolling me but i'm gonna watch it anyways so thanks brotha;False;False;;;;1610583239;;False;{};gj69ji3;True;t3_kwj9gp;False;True;t1_gj68cvc;/r/anime/comments/kwj9gp/looking_for_an_anime_where_male_mc_gets_married/gj69ji3/;1610661076;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OmegaQuake;;;[];;;;text;t2_cq53u;False;False;[];;Everyone is going to need a breather after watching that.;False;False;;;;1610583261;;False;{};gj69kzh;False;t3_kwisyw;False;False;t1_gj5vx6t;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj69kzh/;1610661105;29;True;False;anime;t5_2qh22;;0;[]; -[];;;Resident-Today4536;;;[];;;;text;t2_8jufy9vf;False;False;[];;Can I get it too? Plz;False;False;;;;1610583360;;False;{};gj69s2j;False;t3_kwisyw;False;True;t1_gj66ktk;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj69s2j/;1610661245;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LuckyPed;;;[];;;;text;t2_banjb;False;False;[];;"The other comment is half correct,The other healers don't feel any pain or anything but MC fainted after a single heal, so he is even more useless than a normal healer in Flare's opinion. - -In this universe, Healing Potion or Elixir, can instantly heal you better than a healer, coz Healer still have Mana but Elixir you can just carry as much as you want. - -Normal Healers are Ok, but not really special and the Heroes are all Super OP fighters. - -But they underestimated a Healing Hero as they look at him like a normal Healer. - -if Healing Hero was just an Strong Healer he was still useless, but his ability is basically changing the state of stuff, like turn the body back into it's Healthy state. - -and this ability can even be used in advanced forms like changing your body's stats, for example move all of your Magic power or defense power into Speed or such. - -&#x200B; - -Anyway, Flare saw the MC is not only a Healer which is usually just as useful as a couple of Healing Potion, but he can't even heal without fainting, so She believed she is even worst than normal healers, coz normal healers does not have the backlash, they don't experience everything the target did. - -They didn't realize this and didn't realize MC's potential.";False;False;;;;1610583362;;1610615855.0;{};gj69s7n;False;t3_kwisyw;False;False;t1_gj5sx48;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj69s7n/;1610661248;10;True;False;anime;t5_2qh22;;0;[]; -[];;;degenerated_weeb;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Can’t escape the peko hole;dark;text;t2_3cku6n8b;False;False;[];;And I cannot believe there’re people in this tread _still_ saying it isn’t a rape fantasy...;False;False;;;;1610583466;;1610584016.0;{};gj69zos;False;t3_kwisyw;False;False;t1_gj54pab;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj69zos/;1610661403;5;True;False;anime;t5_2qh22;;0;[]; -[];;;degenerated_weeb;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Can’t escape the peko hole;dark;text;t2_3cku6n8b;False;False;[];;Yeah, I think he meant that the target demographic for this show are incels.;False;False;;;;1610583642;;False;{};gj6acf0;False;t3_kwisyw;False;False;t1_gj4ua5n;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6acf0/;1610661655;1;True;False;anime;t5_2qh22;;0;[]; -[];;;degenerated_weeb;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Can’t escape the peko hole;dark;text;t2_3cku6n8b;False;False;[];;Why are people downvoting you for not wanting to see a guro rape story?;False;False;;;;1610583708;;False;{};gj6ah3w;False;t3_kwisyw;False;False;t1_gj5i2dq;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6ah3w/;1610661741;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Slimrdh13;;;[];;;;text;t2_tbgdv;False;False;[];;Could someone pm me the uncensored version.;False;False;;;;1610583715;;False;{};gj6ahob;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6ahob/;1610661752;2;True;False;anime;t5_2qh22;;0;[]; -[];;;zhivix;;;[];;;;text;t2_lzaui;False;False;[];;me too brother mind sharing the link;False;False;;;;1610583741;;False;{};gj6ajga;False;t3_kwisyw;False;True;t1_gj5ryd0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6ajga/;1610661787;0;True;False;anime;t5_2qh22;;0;[]; -[];;;CountChadvonCisberg;;;[];;;;text;t2_14taao8w;False;False;[];;I also want to know;False;False;;;;1610583782;;False;{};gj6amd1;False;t3_kwisyw;False;True;t1_gj61je8;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6amd1/;1610661840;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jman778877;;;[];;;;text;t2_9t4tvow7;False;False;[];;Hey, if you could send the link my way as well that would be much appreciated!;False;False;;;;1610583786;;False;{};gj6amom;False;t3_kwisyw;False;True;t1_gj5q4sr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6amom/;1610661846;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rarbnif;;;[];;;;text;t2_5z1ic53;False;False;[];;Because they’re the target demographic lol;False;False;;;;1610583978;;False;{};gj6b0ev;False;t3_kwisyw;False;True;t1_gj69zos;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6b0ev/;1610662098;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610583986;;False;{};gj6b0yn;False;t3_kwisyw;False;True;t1_gj641n6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6b0yn/;1610662107;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ELTWINKY-_-PR;;;[];;;;text;t2_4oq1989l;False;False;[];;You sir are a hero. The censoring in the ep was abismal. Is there a place I can watch the full series (as it airs) uncensored?;False;False;;;;1610583996;;False;{};gj6b1py;False;t3_kwisyw;False;True;t1_gj4tshh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6b1py/;1610662122;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610584108;;1610592136.0;{};gj6b9p3;False;t3_kwisyw;False;False;t1_gj6b0ev;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6b9p3/;1610662268;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610584391;;False;{};gj6btsf;False;t3_kwisyw;False;True;t1_gj5z36t;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6btsf/;1610662647;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SuperomegaOP;;;[];;;;text;t2_7k6bn;False;False;[];;he started making anime reviews back in like 07. in terms of youtube anime people hes definitely one of the OGs.;False;False;;;;1610584442;;False;{};gj6bxhd;False;t3_kwisyw;False;True;t1_gj4sean;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6bxhd/;1610662715;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dem00z;;;[];;;;text;t2_2irk13sj;False;False;[];;Where can you watch the uncensored version?;False;False;;;;1610584507;;False;{};gj6c20p;False;t3_kwisyw;False;True;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6c20p/;1610662806;0;True;False;anime;t5_2qh22;;0;[]; -[];;;mayyhin;;;[];;;;text;t2_5n89u5rx;False;False;[];;legit cant find the uncensored version anywhere anyone have a site?;False;False;;;;1610584847;;False;{};gj6cpxy;False;t3_kwisyw;False;True;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6cpxy/;1610663275;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Helpful-Rice-9077;;;[];;;;text;t2_8b5s4s62;False;False;[];;can i get it?;False;False;;;;1610584934;;False;{};gj6cw4n;False;t3_kwisyw;False;True;t1_gj641n6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6cw4n/;1610663388;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Helpful-Rice-9077;;;[];;;;text;t2_8b5s4s62;False;False;[];;i aswell;False;False;;;;1610585048;;False;{};gj6d4hg;False;t3_kwisyw;False;True;t1_gj6amd1;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6d4hg/;1610663545;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Helpful-Rice-9077;;;[];;;;text;t2_8b5s4s62;False;False;[];;dm? 🤔;False;False;;;;1610585115;;False;{};gj6d973;False;t3_kwisyw;False;True;t1_gj60fel;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6d973/;1610663632;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AlCasi5134;;;[];;;;text;t2_9gzu1sch;False;False;[];;Me too please;False;False;;;;1610585214;;False;{};gj6dg4f;False;t3_kwisyw;False;True;t1_gj6ahob;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6dg4f/;1610663763;2;True;False;anime;t5_2qh22;;0;[]; -[];;;xXZERO51Xx;;;[];;;;text;t2_12y8m41s;False;False;[];;What platform are you guys watching this show?;False;False;;;;1610585271;;False;{};gj6dk7b;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6dk7b/;1610663839;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SundustCrusader;;;[];;;;text;t2_7fn9nbae;False;False;[];;A lot of sexual assault, tons, and tons of it, it's why the series is so controversial to begin with.;False;False;;;;1610585405;;False;{};gj6dtmb;False;t3_kwisyw;False;False;t1_gj5diip;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6dtmb/;1610664033;36;True;False;anime;t5_2qh22;;0;[]; -[];;;ProteccSakurasawa;;;[];;;;text;t2_86kerwge;False;False;[];;Main character doesnt mean good guy. He says word for word hes evil, but he doesnt give a shit for his revenge sake. Every one fucking sucks in this manga, so yes the comparison to GoT is valid;False;False;;;;1610585434;;False;{};gj6dvoy;False;t3_kwisyw;False;True;t1_gj5mav7;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6dvoy/;1610664072;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Espada_6;;;[];;;;text;t2_sb5ghaa;False;False;[];;So I’m assuming the hidive stream is the censored version right?;False;False;;;;1610585579;;False;{};gj6e5ut;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6e5ut/;1610664274;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610585592;;False;{};gj6e6tl;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6e6tl/;1610664293;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;"Oh damn, waiting for the uncensored was really worth it. Especially after I check how was that scene on the normal version. - -Anyway, I know it is just one episode, but it seems to me that the tone of the show is way less darker than what I expected from the comments that I had read.";False;False;;;;1610585896;;False;{};gj6esaf;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6esaf/;1610664691;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fro99ywo99y1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Frat_Snap;light;text;t2_tailh;False;False;[];;Looked pretty mediocre to me tbh;False;False;;;;1610585902;;False;{};gj6esnk;False;t3_kwisyw;False;True;t1_gj4ecfv;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6esnk/;1610664697;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610585904;;False;{};gj6est8;False;t3_kwisyw;False;True;t1_gj68l4c;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6est8/;1610664701;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Helpful-Rice-9077, your post has been removed because it links to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610585904;moderator;False;{};gj6esut;False;t3_kwisyw;False;True;t1_gj6est8;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6esut/;1610664702;-1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610585911;;False;{};gj6etbn;False;t3_kwisyw;False;True;t1_gj6c20p;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6etbn/;1610664710;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Helpful-Rice-9077, your post has been removed because it links to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610585911;moderator;False;{};gj6etcz;False;t3_kwisyw;False;True;t1_gj6etbn;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6etcz/;1610664711;-1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610585922;;False;{};gj6eu2c;False;t3_kwisyw;False;True;t1_gj6cpxy;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6eu2c/;1610664726;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Helpful-Rice-9077, your post has been removed because it links to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610585923;moderator;False;{};gj6eu4t;False;t3_kwisyw;False;True;t1_gj6eu2c;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6eu4t/;1610664727;-1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610586014;;False;{};gj6f0jp;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6f0jp/;1610664860;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi obreezy2x, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610586014;moderator;False;{};gj6f0ku;False;t3_kwisyw;False;True;t1_gj6f0jp;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6f0ku/;1610664861;2;False;False;anime;t5_2qh22;;0;[]; -[];;;SundustCrusader;;;[];;;;text;t2_7fn9nbae;False;False;[];;Get ready for a lot of sexual violence, it's not going to be fun.;False;False;;;;1610586238;;False;{};gj6fg66;False;t3_kwisyw;False;True;t1_gj4tusc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6fg66/;1610665159;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KearLoL;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/vollizie;light;text;t2_46k87az;False;False;[];;Got a mix of Re:Zero, Fullmetal Alchemist, Code Geass, and some hentai all in one episode.;False;False;;;;1610586241;;False;{};gj6fgc9;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6fgc9/;1610665162;5;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;"The fact that he called everything he was doing ""healing"" annoyed the hell out of me cause it was just not correct";False;False;;;;1610586329;;False;{};gj6fmez;False;t3_kwisyw;False;False;t1_gj55rf6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6fmez/;1610665279;9;True;False;anime;t5_2qh22;;0;[]; -[];;;SundustCrusader;;;[];;;;text;t2_7fn9nbae;False;False;[];;If you are sensitive to stuff like sexual assault, I highly recommend you sit this one out, because it'll be filled with it from here on out.;False;False;;;;1610586394;;False;{};gj6fquj;False;t3_kwisyw;False;True;t1_gj4uium;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6fquj/;1610665359;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SundustCrusader;;;[];;;;text;t2_7fn9nbae;False;False;[];;If you are sensitive to sexual assault, I don't recommend you keep watching.;False;False;;;;1610586486;;False;{};gj6fwz3;False;t3_kwisyw;False;True;t1_gj4nyfy;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6fwz3/;1610665473;1;True;False;anime;t5_2qh22;;0;[]; -[];;;allnicksaretaken;;;[];;;;text;t2_5brln;False;False;[];;So, you mean at the last 2 words of his post.;False;False;;;;1610586555;;False;{};gj6g1nl;False;t3_kwisyw;False;False;t1_gj5t0xo;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6g1nl/;1610665571;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Kayuga;;;[];;;;text;t2_jcch1;False;False;[];;charlotte gave me anxiety when when shit hit the fan all of a sudden. things just didnt go back to normal but i had to finish the anime otherwise my curiosity would kill me. By the time i finished the anime i literally had a panic attack for like 2 hours. But at least i satisfied my curiosity.;False;False;;;;1610586609;;False;{};gj6g5bo;False;t3_kwk3f3;False;True;t3_kwk3f3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj6g5bo/;1610665639;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheKappaOverlord;;;[];;;;text;t2_j6waf;False;False;[];;"i think the thing that sets Jun's works apart on the scale of ""rushed shit"" is the fact that even when hes not allowed much time, he still tries to produce the series as if it had proper time. - -Up until the wick is burned out then he is forced to rush an ending. - -Still like 6 years until we get a Charlotte VN im sure. So lets hope he doesn't kick the bucket until then";False;False;;;;1610586763;;False;{};gj6gfzj;False;t3_kwk3f3;False;False;t1_gj668sg;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj6gfzj/;1610665837;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Maleficent-War7377;;;[];;;;text;t2_9momrxkp;False;False;[];;Can you help a brother out and send me the link;False;False;;;;1610586839;;False;{};gj6gl6q;False;t3_kwisyw;False;True;t1_gj5q4sr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6gl6q/;1610665932;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApxKrypha;;;[];;;;text;t2_51jjwg5l;False;False;[];;mind if you hook another brother up;False;False;;;;1610586897;;False;{};gj6gp9r;False;t3_kwisyw;False;True;t1_gj5ryd0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6gp9r/;1610666009;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;That's also the dream...;False;False;;;;1610586905;;False;{};gj6gpuc;False;t3_kwisyw;False;True;t1_gj4o6yn;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6gpuc/;1610666019;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dapper-Pineapple2356;;;[];;;;text;t2_8na3aq9g;False;False;[];;Can anyone tell me where to watch the uncensored version;False;False;;;;1610586915;;False;{};gj6gqil;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6gqil/;1610666030;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;Enough edge in here to cut a Hot Topic.;False;False;;;;1610586944;;False;{};gj6gsm9;False;t3_kwisyw;False;True;t1_gj4mlkk;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6gsm9/;1610666070;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerdy314159265;;;[];;;;text;t2_752wc;False;False;[];;When he explained how he goes through all their experiences, I immediately thought of Irregular too.;False;False;;;;1610586960;;False;{};gj6gtns;False;t3_kwisyw;False;False;t1_gj5zdmr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6gtns/;1610666088;12;True;False;anime;t5_2qh22;;0;[]; -[];;;mr_sto0pid;;;[];;;dark;text;t2_13ckn3;False;True;[];;The sjw meltdowns are already happening lol.;False;False;;;;1610587357;;False;{};gj6hlqo;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6hlqo/;1610666607;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Maweri11;;;[];;;;text;t2_83s2kvfv;False;False;[];;Is there a uncensored version;False;False;;;;1610587373;;False;{};gj6hmx8;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6hmx8/;1610666627;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;The world can be one together, cosmos without hatred...;False;False;;;;1610587473;;False;{};gj6htsb;False;t3_kwisyw;False;True;t1_gj4tq2x;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6htsb/;1610666754;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rockseiaxii;;;[];;;;text;t2_1358q1;False;False;[];;"The LN has sold 1.7 million (9 volumes) to date, and is the best selling ongoing LN series from Kadokawa's Sneaker Bunko that hasn't received an anime adaptation. - -Sneaker Bunko used to be the flagship LN brand for Kadokawa, but it seems like this is the best they can do now.";False;False;;;;1610587605;;False;{};gj6i2zs;False;t3_kwisyw;False;True;t1_gj4j9xx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6i2zs/;1610666932;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;I want the insane Nozoki one to get adapted.;False;False;;;;1610587887;;False;{};gj6imhh;False;t3_kwisyw;False;True;t1_gj5gfbr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6imhh/;1610667273;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chinatownjon;;;[];;;;text;t2_2llv7rko;False;False;[];;An all around criminally underrated anime;False;False;;;;1610587991;;False;{};gj6itlq;False;t3_kwk3f3;False;False;t3_kwk3f3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj6itlq/;1610667396;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"Oh damn, really? - -I haven't watched the uncensored yet, but I'll get on it!";False;False;;;;1610588030;;False;{};gj6iway;False;t3_kwisyw;False;False;t1_gj68xhm;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6iway/;1610667442;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dapper-Pineapple2356;;;[];;;;text;t2_8na3aq9g;False;False;[];;Where can I watch the uncensored version;False;False;;;;1610588054;;False;{};gj6iy08;False;t3_kwisyw;False;True;t1_gj4jkr7;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6iy08/;1610667473;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Dapper-Pineapple2356;;;[];;;;text;t2_8na3aq9g;False;False;[];;Where can I watch it the uncensored version;False;False;;;;1610588100;;False;{};gj6j13x;False;t3_kwisyw;False;True;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6j13x/;1610667531;0;True;False;anime;t5_2qh22;;0;[]; -[];;;DaddyAndre28;;;[];;;;text;t2_80s30m7b;False;False;[];;Where do I find the uncensored version? All the links that have been sent are removed;False;False;;;;1610588106;;False;{};gj6j1jt;False;t3_kwisyw;False;True;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6j1jt/;1610667540;0;True;False;anime;t5_2qh22;;0;[]; -[];;;dillon-fury;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/DillonEP?status=2;light;text;t2_zl5ueq5;False;False;[];;can anyone pm me the link to the uncensored version;False;False;;;;1610588158;;False;{};gj6j54w;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6j54w/;1610667602;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wyvernwalker;;;[];;;;text;t2_y9gem;False;False;[];;the mental whiplash I got for finding out that it got an adaptation isn't gonna heal for years. Im psyched to see how r/anime reacts to it lmao;False;False;;;;1610588403;;False;{};gj6jm6r;False;t3_kwisyw;False;False;t1_gj50hzh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6jm6r/;1610667900;31;True;False;anime;t5_2qh22;;0;[]; -[];;;fktheo;;;[];;;;text;t2_6bbnkbkw;False;False;[];;Where can I watch the uncensored version it go removed by the bots;False;False;;;;1610588557;;False;{};gj6jwsx;False;t3_kwisyw;False;True;t1_gj6c20p;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6jwsx/;1610668087;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Ynairo;;;[];;;;text;t2_13fbnf;False;False;[];;">Edit2: reading the comments i realized that people don't know how to use the internet.... - -I replied to another post about the uncensored version, bad idea, rip my PMs lol. Still helped people out, but damn do they need to learn to search for things...";False;False;;;;1610588603;;False;{};gj6k006;False;t3_kwisyw;False;True;t1_gj4jkr7;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6k006/;1610668144;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rorate_Caeli;;;[];;;;text;t2_qw271;False;False;[];;Nothing you can do about it.;False;False;;;;1610588707;;False;{};gj6k7h5;False;t3_kwisyw;False;True;t1_gj4gmy2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6k7h5/;1610668293;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;afpedraza;;;[];;;;text;t2_4tj1xac;False;False;[];;His shows have the same tendency, are good but feel super rushed, like he shouldn't be allowed to do so short series. I like them by the way, the only two series of him that I don't watched yet, are Clannad and the last one, but I liked what I saw, rushed and all xd;False;False;;;;1610589214;;False;{};gj6l7bj;False;t3_kwk3f3;False;False;t1_gj68uca;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj6l7bj/;1610668921;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Slurms_McKenzie775;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/solis91;light;text;t2_g5vcr;False;False;[];;Can't say I know what that is;False;False;;;;1610589309;;False;{};gj6ldto;False;t3_kwisyw;False;True;t1_gj5e1wj;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6ldto/;1610669037;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"[seriously look at the answers for this post](https://www.reddit.com/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj5b3hf?utm_medium=android_app&utm_source=share&context=3) - -Lol";False;False;;;;1610589371;;False;{};gj6li6g;False;t3_kwisyw;False;False;t1_gj6k006;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6li6g/;1610669111;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Taerusaki;;skip7;[];;;dark;text;t2_1jiysgpw;False;False;[];;"Just watched ep 3 and seems a bit too early to drop it off but the story really bothers me. I enjoy both Kujo and Victorique as a character but it just feels like the series force its viewers what their personality is. When the ""case"" was solve and it was revealed that the woman in red dress was the culprit feels forced. ""Oh she is not rich because she always walks 5 steps and goes back again"" is a dumb reason to put it. The gun thing seems reasonable compared to the first explanation but it was still off. I also don't get it why the culprit created a replica of the cruise that results death just for ""revenge"". Anyways I just felt like the storyline seems forced and the mystery aspect to it is dumb especially on how Victorique solves the case. Just wanted to share my thoughts";False;False;;;;1610589411;;False;{};gj6lkv8;True;t3_kwjxza;False;True;t1_gj55imt;/r/anime/comments/kwjxza/should_i_continue_gosick/gj6lkv8/;1610669158;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PacoTaco321;;;[];;;;text;t2_8yxkb;False;False;[];;And this unhelpfulness is why everyone is struggling...;False;False;;;;1610589420;;False;{};gj6lljf;False;t3_kwisyw;False;False;t1_gj672l6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6lljf/;1610669169;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;You have to find the One Piece for that;False;False;;;;1610589459;;False;{};gj6lo8h;False;t3_kwisyw;False;False;t1_gj6iy08;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6lo8h/;1610669214;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Inevitable3;;null a-amq;[];;;dark;text;t2_p2uss;False;False;[];;Can I get it as well?;False;False;;;;1610589670;;False;{};gj6m2zp;False;t3_kwisyw;False;True;t1_gj5ryd0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6m2zp/;1610669466;0;True;False;anime;t5_2qh22;;0;[]; -[];;;mwm1a;;;[];;;;text;t2_6553ygp0;False;False;[];;This. I've been saying for years that Jun Maeda excels at writing VNs because they are long form stories where he can take as much time as he needs to develop the characters and set up plot points. When he's tasked with writing a one-cour anime series, he doesn't know how to pace himself. He ends up putting a bunch of pointless filler at the start and having to rush everything at the end. But before we get a Charlotte VN, he needs to finish the Angel Beats VN first.;False;False;;;;1610589708;;False;{};gj6m5kj;False;t3_kwk3f3;False;False;t1_gj6gfzj;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj6m5kj/;1610669509;14;True;False;anime;t5_2qh22;;0;[]; -[];;;madpat213;;;[];;;;text;t2_26oc3v8i;False;False;[];;Where is uncensored. Too horny not to know;False;False;;;;1610589747;;False;{};gj6m8d3;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6m8d3/;1610669557;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610589768;;False;{};gj6m9t9;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6m9t9/;1610669584;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Theonlymaskrill, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610589768;moderator;False;{};gj6m9ug;False;t3_kwisyw;False;True;t1_gj6m9t9;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6m9ug/;1610669584;2;False;False;anime;t5_2qh22;;0;[]; -[];;;kahzel;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kahzel;light;text;t2_bcvnx;False;False;[];;eh, after shit started hitting the fan everything was rushed and felt really not that good;False;False;;;;1610589775;;False;{};gj6mabf;False;t3_kwk3f3;False;False;t1_gj6itlq;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj6mabf/;1610669592;17;True;False;anime;t5_2qh22;;0;[]; -[];;;TheKappaOverlord;;;[];;;;text;t2_j6waf;False;False;[];;I still forget that hes doing Angel beats in parts and that Berserk will finish at a faster pace;False;False;;;;1610589926;;False;{};gj6mkqz;False;t3_kwk3f3;False;True;t1_gj6m5kj;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj6mkqz/;1610669775;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610589930;;False;{};gj6ml0y;False;t3_kwisyw;False;False;t1_gj60fel;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6ml0y/;1610669779;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aschentei;;;[];;;;text;t2_z1t0l;False;False;[];;and Yosuga no Sora;False;False;;;;1610589947;;False;{};gj6mm5h;False;t3_kwisyw;False;True;t1_gj4tq2x;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6mm5h/;1610669798;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tricky_Ad_9980;;;[];;;;text;t2_5opgm9e8;False;False;[];;can you pm it pls;False;False;;;;1610589963;;False;{};gj6mn8x;False;t3_kwisyw;False;True;t1_gj641n6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6mn8x/;1610669817;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Aevio11;;;[];;;;text;t2_5dgofayv;False;False;[];;I've tried watching this show a couple times and I get maybe 3 episodes in before I start getting bored. I can't really put my finger on why. I think it has something to do with them kinda going through the same actions multiple times and it just feeling kinda episodic without any real progression in the character arcs.;False;False;;;;1610589982;;False;{};gj6mojk;False;t3_kwk3f3;False;False;t3_kwk3f3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj6mojk/;1610669839;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"> that officially released manga can't be hentai which is dumb imho - -Well, commercial hentai *is* ""officially released."" If they're saying that works published in something like Comic Karaikuten can't be hentai, that is 100% factually wrong, because Comic Karaikuten is a bona fide R18 eromanga magazine. - -But if you mean in a non-r18 magazine, well, there can be pretty explicit stuff there too...";False;False;;;;1610590010;;False;{};gj6mqh0;False;t3_kwisyw;False;True;t1_gj57ogq;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6mqh0/;1610669871;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aschentei;;;[];;;;text;t2_z1t0l;False;False;[];;like ironically or what?;False;False;;;;1610590057;;False;{};gj6mtmc;False;t3_kwisyw;False;False;t1_gj53vce;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6mtmc/;1610669923;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Aschentei;;;[];;;;text;t2_z1t0l;False;False;[];;"this dude gets 3 MAIDS?! lucky fuck - -anyway, i'll probably need 12 weeks worth of popcorn for this";False;False;;;;1610590126;;False;{};gj6mygi;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6mygi/;1610670003;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Embarrassed_Grade_53;;;[];;;;text;t2_8yv9e4l7;False;False;[];;O\_O you know what I want;False;False;;;;1610590270;;False;{};gj6n8i4;False;t3_kwisyw;False;True;t1_gj5l2lh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6n8i4/;1610670164;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nghtmare-Moon;;;[];;;;text;t2_jsig9;False;False;[];;[Hexagons are bestagons](https://youtu.be/thOifuHs6eY);False;False;;;;1610590352;;False;{};gj6neag;False;t3_kwisyw;False;False;t1_gj4kc4i;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6neag/;1610670262;46;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"It can get kind of hard to classify. In Japan, then yes, the line between R18 eromanga and *extremely* hardcore ""ecchi"" is genitals. But then again, this mostly applies to male-targeted eromanga...I'm pretty sure (though not 100%) that a lot of explicit BL and Ladies' Comics can get by without being R18. - -Basically, it comes down to a matter of classification, and how much mangaka and publishers are willing to toe the line when it comes to content. In the '90s, after a bit of moral panic, hentai manga publishers and regular manga publishers started to self-regulate a bit when it comes to content--basically, they label the most sexually explicit stuff as 18+. These works have more limited distribution. Not all stores will carry them, and the ones that do have to keep them separate from the manga that anybody can buy. In addition, there is often censorship from local governments, which have the power to label non-R18 manga as ""unhealthy"" for youth--which also restricts distribution. - -But there is a back-and-forth with these kind of things. After a big crackdown on ""unhealthy manga,"" publishers and artists might play it safe for a bit, but then go back to toeing the line, seeing how much lewd content they can put into manga without it being restricted to limited distribution. Sex sells, after all, and if you can get as much sexual content as possible in manga without its distribution being restricted, it's in the best interests of publishers to do so. That's how you get hardcore ecchi, which in their sexual content might even show semen--but no genitals, which means that in the regulatory regime it was released in, it can be purchased by anyone. - -[Source, btw.](https://www.aup.nl/en/book/9789463727129/erotic-comics-in-japan)";False;False;;;;1610590449;;False;{};gj6nl0o;False;t3_kwisyw;False;True;t1_gj5bq5q;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6nl0o/;1610670370;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LuckyPed;;;[];;;;text;t2_banjb;False;False;[];;"Well, this MC does not actually level up through sex, rather the other people who have sex with him get their potential/max level increased. - -He simply need to heal people to learn their experience and gain their EXP. it got nothing to do with sex.";False;False;;;;1610590715;;False;{};gj6o3cf;False;t3_kwisyw;False;True;t1_gj4o6yn;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6o3cf/;1610670677;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TeoVerunda;;;[];;;;text;t2_271awa48;False;False;[];;"The Parts 1 and 2 that you posted are all that's Uncensored right? - -I'm sorry to ask this, but I have Zero Clue on where to get started with the pirate's technique, I only know about which sites I should be looking at (the site I'm looking at right now is making a Cat sound) - -Do you know any accurate tutorial videos for it?";False;False;;;;1610590722;;False;{};gj6o3w2;False;t3_kwisyw;False;True;t1_gj4tshh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6o3w2/;1610670687;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vcdm;;;[];;;;text;t2_fup8p;False;False;[];;Wanna send it to me if possible? I don't wanna flood the other guy's inbox.;False;False;;;;1610590789;;False;{};gj6o8cj;False;t3_kwisyw;False;True;t1_gj5qzqk;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6o8cj/;1610670764;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LuckyPed;;;[];;;;text;t2_banjb;False;False;[];;As bad as this MC can be, Rance is worse than him, coz Rance fuck any girl he see but this MC does not touch innocents unless they harm him or someone close to him.;False;False;;;;1610590830;;False;{};gj6ob28;False;t3_kwisyw;False;False;t1_gj5b3ww;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6ob28/;1610670813;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610590879;;False;{};gj6oebm;False;t3_kwisyw;False;True;t1_gj6m8d3;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6oebm/;1610670871;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Theonlymaskrill, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610590880;moderator;False;{};gj6oecx;False;t3_kwisyw;False;True;t1_gj6oebm;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6oecx/;1610670871;2;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610590921;;False;{};gj6oh53;False;t3_kwisyw;False;True;t1_gj6gqil;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6oh53/;1610670920;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Theonlymaskrill, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610590921;moderator;False;{};gj6oh6r;False;t3_kwisyw;False;True;t1_gj6oh53;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6oh6r/;1610670921;2;False;False;anime;t5_2qh22;;0;[]; -[];;;YuriAddict7;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/R1seKujikawa/;light;text;t2_3zn8celm;False;False;[];;that wasnt so bad. though im guessing the fucked up stuff starts next episode? i hope they dont half ass it. if this series is supposed to be trashy fucked up, then migth as well go all the way;False;False;;;;1610591021;;False;{};gj6onv6;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6onv6/;1610671031;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;"Yeah, from the moment I read the plot my first thought was ""I'm sure I have read a lot of doujinshi with a similar plot to this one like this one before"".";False;False;;;;1610591163;;False;{};gj6oxel;False;t3_kwisyw;False;True;t1_gj4k0kj;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6oxel/;1610671194;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Embarrassed_Grade_53;;;[];;;;text;t2_8yv9e4l7;False;False;[];;"O\_O you know what i want - -&#x200B; - -NOW GIVE IT";False;False;;;;1610591283;;False;{};gj6p5m4;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6p5m4/;1610671332;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;It makes sense if you interpret his healing as time magic.;False;False;;;;1610591305;;False;{};gj6p73c;False;t3_kwisyw;False;False;t1_gj55rf6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6p73c/;1610671357;6;True;False;anime;t5_2qh22;;0;[]; -[];;;YuriAddict7;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/R1seKujikawa/;light;text;t2_3zn8celm;False;False;[];;hmm i wonder why MC used his magic when that first maid was riding him?;False;False;;;;1610591384;;False;{};gj6pchh;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6pchh/;1610671448;7;True;False;anime;t5_2qh22;;0;[]; -[];;;SpecialChain;;;[];;;;text;t2_7tv0lefo;False;False;[];;"It makes sense in-universe but it's dumb meta-wise though. It's like the author is trying to jump through hoops to make ""healing"" power be subversive just so the title can be more interesting (or clickbaity if we want to use a harsher word).";False;False;;;;1610591418;;False;{};gj6peru;False;t3_kwisyw;False;False;t1_gj5v4m2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6peru/;1610671486;17;True;False;anime;t5_2qh22;;0;[]; -[];;;TreGet234;;MAL;[];;https://myanimelist.net/animelist/Wasserflasche;dark;text;t2_mv25k;False;True;[];;this is like slimesekai but with extra steps.;False;False;;;;1610591485;;False;{};gj6pjgd;False;t3_kwisyw;False;True;t1_gj4mlkk;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6pjgd/;1610671565;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Potential_Run_3139;;;[];;;;text;t2_7mftfehn;False;False;[];;Which Anime is this?;False;False;;;;1610591559;;False;{};gj6pofd;False;t3_kwk3f3;False;True;t3_kwk3f3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj6pofd/;1610671651;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610591600;;False;{};gj6pr80;False;t3_kwisyw;False;True;t1_gj5fzmz;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6pr80/;1610671698;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TreGet234;;MAL;[];;https://myanimelist.net/animelist/Wasserflasche;dark;text;t2_mv25k;False;True;[];;that one tiny scene wasn't really enough to make me bust, hope there is more.;False;False;;;;1610591653;;False;{};gj6puqc;False;t3_kwisyw;False;True;t1_gj4j9xx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6puqc/;1610671760;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TreGet234;;MAL;[];;https://myanimelist.net/animelist/Wasserflasche;dark;text;t2_mv25k;False;True;[];;why was it so detailed ugh;False;False;;;;1610591699;;False;{};gj6pxvo;False;t3_kwisyw;False;False;t1_gj4xqjz;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6pxvo/;1610671816;49;True;False;anime;t5_2qh22;;0;[]; -[];;;TreGet234;;MAL;[];;https://myanimelist.net/animelist/Wasserflasche;dark;text;t2_mv25k;False;True;[];;seems pretty generic so far? or is there some story telling twist that makes it hard to turn into an anime?;False;False;;;;1610591846;;False;{};gj6q7pr;False;t3_kwisyw;False;True;t1_gj50hzh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6q7pr/;1610671988;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SpecialChain;;;[];;;;text;t2_7tv0lefo;False;False;[];;the Goblin Slayer ep1 equivalent will be next week, this episode hasn't gotten to the real shit yet;False;False;;;;1610591887;;False;{};gj6qahu;False;t3_kwisyw;False;False;t1_gj52hou;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6qahu/;1610672037;29;True;False;anime;t5_2qh22;;0;[]; -[];;;SpecialChain;;;[];;;;text;t2_7tv0lefo;False;False;[];;not as great as I hoped, but better than I expected.;False;False;;;;1610591970;;False;{};gj6qg27;False;t3_kwisyw;False;False;t1_gj5fjam;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6qg27/;1610672130;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"> There's a genre for that called LitRPG - -In Japanese contexts, it's known as ""dungeon-kei.""";False;False;;;;1610591977;;1610592884.0;{};gj6qgiq;False;t3_kwisyw;False;False;t1_gj5d14j;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6qgiq/;1610672138;5;True;False;anime;t5_2qh22;;0;[]; -[];;;TichoSlicer;;;[];;;;text;t2_14tpdf;False;False;[];;This so fucking much!! Kids here and on Twitter watch this type of series Just tô complain like a bunch of annoying brats...;False;False;;;;1610591984;;False;{};gj6qgyz;False;t3_kwisyw;False;True;t1_gj590lz;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6qgyz/;1610672146;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TreGet234;;MAL;[];;https://myanimelist.net/animelist/Wasserflasche;dark;text;t2_mv25k;False;True;[];;could take out flare pretty quick.;False;False;;;;1610591993;;False;{};gj6qhlg;False;t3_kwisyw;False;True;t1_gj4w228;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6qhlg/;1610672156;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chinatownjon;;;[];;;;text;t2_2llv7rko;False;False;[];;That's fair, the twist/ramp up could have used some more time, but overall story (especially single season) I think it's really great;False;False;;;;1610592024;;False;{};gj6qjnb;False;t3_kwk3f3;False;False;t1_gj6mabf;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj6qjnb/;1610672189;12;True;False;anime;t5_2qh22;;0;[]; -[];;;imaprince;;;[];;;;text;t2_m9jud;False;False;[];;"...you'll see. - -No spoils. But you'll see in a week or so time.";False;False;;;;1610592166;;False;{};gj6qt5g;False;t3_kwisyw;False;False;t1_gj6q7pr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6qt5g/;1610672349;11;True;False;anime;t5_2qh22;;0;[]; -[];;;random-pineapple420;;;[];;;;text;t2_4mzbx15n;False;False;[];;Oh..;False;False;;;;1610592194;;False;{};gj6qv0x;False;t3_kwisyw;False;True;t1_gj6fquj;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6qv0x/;1610672383;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SundustCrusader;;;[];;;;text;t2_7fn9nbae;False;False;[];;Yeah, I read the manga and I think there are 7 scenes of sexual assault in total, but do not quote me on that.;False;False;;;;1610592365;;False;{};gj6r6nk;False;t3_kwisyw;False;True;t1_gj6qv0x;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6r6nk/;1610672582;2;True;False;anime;t5_2qh22;;0;[]; -[];;;spyder616;;;[];;;;text;t2_152u9aq2;False;False;[];;YES I WANT THE FULL ADAPTATION OF THAT;False;False;;;;1610592689;;False;{};gj6rsiz;False;t3_kwisyw;False;True;t1_gj5gfbr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6rsiz/;1610672957;1;True;False;anime;t5_2qh22;;0;[]; -[];;;seldkam;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/seldkam?status=2;light;text;t2_c0asgt0;False;False;[];;I lost my patience with the show's inability to make anything happen in the overall plot and the lack of character development.;False;False;;;;1610592737;;False;{};gj6rvr6;False;t3_kwjxza;False;True;t3_kwjxza;/r/anime/comments/kwjxza/should_i_continue_gosick/gj6rvr6/;1610673012;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"...I defend works like this out of principle (the actual moral value of a work of art has much more to do with sociocultural context than anything inherent in the work; if the works of the [Marquis de Sade](https://en.wikipedia.org/wiki/Marquis_de_Sade) have literary/historical/cultural significance, we shouldn't be trashing this, which is actually less edgy), but your attitude towards this is pretty bad, ngl. - -A word of advice: Don't base your identity around trying to get one over another group of people. That's a really harmful attitude.";False;False;;;;1610592741;;1610603574.0;{};gj6rw0x;False;t3_kwisyw;False;True;t1_gj5iq52;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6rw0x/;1610673016;3;True;False;anime;t5_2qh22;;0;[]; -[];;;YunYunForever;;;[];;;;text;t2_78oor7zc;False;False;[];;Hope everyone has their popcorn ready. All the people that whined about Goblin Slayer are gonna lose their fucking minds if they try to stick this show out lol.;False;False;;;;1610592783;;False;{};gj6ryul;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6ryul/;1610673064;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"Eh, if something like [120 Days of Sodom](https://en.wikipedia.org/wiki/The_120_Days_of_Sodom) has literary/historical/cultural significance, then why not defend this show? It might be gross and the ultimate in bad taste, but I wouldn't necessarily say it ""deserves"" controversy.";False;False;;;;1610593063;;False;{};gj6sho1;False;t3_kwisyw;False;True;t1_gj51pfw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6sho1/;1610673398;2;True;False;anime;t5_2qh22;;0;[]; -[];;;preciousleo;;;[];;;;text;t2_14n9vb;False;False;[];;Can u give me the link pls;False;False;;;;1610593136;;False;{};gj6smkc;False;t3_kwisyw;False;True;t1_gj5fv1l;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6smkc/;1610673482;1;True;False;anime;t5_2qh22;;0;[]; -[];;;myrrh69;;;[];;;;text;t2_4vhi0qg0;False;False;[];;Send it to me too;False;False;;;;1610593209;;False;{};gj6sree;False;t3_kwisyw;False;True;t1_gj6j54w;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6sree/;1610673567;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ippwnage;;;[];;;;text;t2_790zhsxg;False;False;[];;life imitating art!;False;False;;;;1610593290;;False;{};gj6swth;False;t3_kwisyw;False;True;t1_gj4o6yn;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6swth/;1610673657;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610593295;;False;{};gj6sx6c;False;t3_kwisyw;False;True;t1_gj6mm5h;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6sx6c/;1610673663;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"> How did it even get passed through for production? - -I mean, sex sells, as the adage goes.";False;False;;;;1610593434;;False;{};gj6t66e;False;t3_kwisyw;False;True;t1_gj5yxvu;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6t66e/;1610673817;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"Not about isekai per se, but that reminds me of this bit in the [book](https://www.aup.nl/en/book/9789463727129/erotic-comics-in-japan) about hentai manga that I'm reading that nearly made me do a spit take: - -> For example, a cute girl in costume comes crashing through the roof and ceiling of an apartment. “Soooory! My dimensional transporter ran out of energy and I fell.” Saying this absurd thing, she pulls down the protagonist’s pants. “Please share some of your energy with me!” She pushes him over, and offf we go. Here the creator can add that sex is necessary to replenish “orgone energy,” or suffice it to say that seminal fluids are a “highly concentrated energy source.” In fact, even if you skip the explanation, those with some experience reading eromanga will call up appropriate reasoning from their mental database and subconsciously fill in the blanks. After replenishing her energy, the dimensional traveler can exit the scene by this time crashing through the wall. “That was awesome...” Says the protagonist, basking in the afterglow. Behind him, the reader sees the apartment landlord standing there in sheer exasperation and about to explode. This works fine as a punch line, and it can be followed by a final panel to end the page reading, “As to what happened after...” Turn to the final page in the short story: “In fact, she’s still here.” “My dimensional transfer engine broke this time, tee hee!” - -I can't think of any specific examples, but I swear this is like the most beautiful encapsulation of the most generic hentai plot.";False;False;;;;1610593715;;1610606301.0;{};gj6toji;False;t3_kwisyw;False;False;t1_gj4pavb;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6toji/;1610674130;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Vosska;;;[];;;;text;t2_cjhhw;False;False;[];;Imo they spent 2-3 episodes too many on slice of life things getting us used to the world of Charlotte. Leaving behind only 3-4 episodes total for the main plotline, which while I found very enjoyable, it needed more time.;False;False;;;;1610595743;;False;{};gj6xbqz;False;t3_kwk3f3;False;False;t1_gj6qjnb;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj6xbqz/;1610676405;11;True;False;anime;t5_2qh22;;0;[]; -[];;;aimglitchz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/aimglitchz;light;text;t2_14zzu5;False;True;[];;charlotte;False;False;;;;1610597389;;False;{};gj70742;False;t3_kwk3f3;False;True;t1_gj6pofd;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj70742/;1610678212;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_Eggs_;;MAL;[];;https://myanimelist.net/animelist/_eggs_;dark;text;t2_iz815;False;False;[];;"That's not how most speedsters work. When speedsters stop going fast, they never need to ""jump"" on the ground and slide to stop themselves. They just stop going fast immediately with no counter-force. - -So it's fair to assume that the same thing happens when the coins leave his hand. They just stop going fast without needing a counter-force. There's no ""jerk"" or acceleration/deceleration force. This is also why the sandwich didn't get smashed like a pancake when accelerating from 0 to Mach 5.";False;False;;;;1610598296;;False;{};gj71qsd;False;t3_kwk3f3;False;False;t1_gj4mvua;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj71qsd/;1610679288;10;True;False;anime;t5_2qh22;;0;[]; -[];;;crusadeLeader7;;;[];;;;text;t2_6wceo51g;False;False;[];;Using powers wisely;False;False;;;;1610598546;;False;{};gj725xe;False;t3_kwk3f3;False;True;t3_kwk3f3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj725xe/;1610679568;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chinatownjon;;;[];;;;text;t2_2llv7rko;False;False;[];;That's a fair perspective, but I feel like that addition of sol elements builds the viewers love for the characters, and rounds out the show a lot more than most action/one shot shows do. I definitely agree that it could benefit from much more content and expansion, but I still stand by my statement that it's crazy underrated. Never had it recommended to me, never saw it talked about, but when I watched it, it really wowed me and made me love it! It definitely has its shortcomings, but it'll always be a gem in my eyes I think;False;False;;;;1610598669;;False;{};gj72da4;False;t3_kwk3f3;False;False;t1_gj6xbqz;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj72da4/;1610679707;4;True;False;anime;t5_2qh22;;0;[]; -[];;;clay10mc;;;[];;;;text;t2_gsbea;False;False;[];;Probably because he didn't write the Clannad anime, just the source visual novel;False;False;;;;1610598785;;False;{};gj72k43;False;t3_kwk3f3;False;False;t1_gj668sg;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj72k43/;1610679827;7;True;False;anime;t5_2qh22;;0;[]; -[];;;DebonairTeddy;;;[];;;;text;t2_yinry;False;False;[];;It has progression eventually, and I do like the characters and some of the twists in the story are good. Sadly the anime as a whole just isn't paced super great and the ending is pretty rushed. While I would recommend the show overall, it's not so amazing that you need to watch it if you're not enjoying it.;False;False;;;;1610599440;;False;{};gj73moo;False;t3_kwk3f3;False;False;t1_gj6mojk;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj73moo/;1610680562;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Mission_Door_8377;;;[];;;;text;t2_5at43qsn;False;False;[];;What’s the name of this anime?;False;False;;;;1610599622;;False;{};gj73x49;False;t3_kwk3f3;False;True;t3_kwk3f3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj73x49/;1610680746;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeadingPlayer;;;[];;;;text;t2_c0osog1;False;False;[];;It’ll be interesting if they actually get close to losing someone on their team and how they have to figure out that. Or if they can make any of their own relationships with the other people here. Also?? Does that mean *everyone* in the world was transported here and no one was naturally born in this.. dimension??? Wild, wild. Sure, I’ll keep up with it. It’s not mind killing so let’s see what else happens! I’m down for our MC to become a sharp shooter!;False;False;;;;1610600692;;False;{};gj75lbj;False;t3_kwk23i;False;True;t3_kwk23i;/r/anime/comments/kwk23i/soukou_musume_senki_episode_2_discussion/gj75lbj/;1610681786;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sedewt;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Sedew;light;text;t2_3kzvlpfo;False;False;[];;Well, he’s about to publish a LN soon. Yeah it’s not a VN but you are not that limited there either;False;False;;;;1610601364;;False;{};gj76mdp;False;t3_kwk3f3;False;True;t1_gj6m5kj;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj76mdp/;1610682431;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sedewt;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Sedew;light;text;t2_3kzvlpfo;False;False;[];;Yeah, we don’t need less SoL we just need more episodes;False;False;;;;1610601446;;False;{};gj76qpu;False;t3_kwk3f3;False;False;t1_gj72da4;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj76qpu/;1610682513;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Yogurt_cap;;;[];;;;text;t2_8tcc372b;False;False;[];;Damn physics;False;False;;;;1610604380;;False;{};gj7avs2;False;t3_kwk3f3;False;True;t3_kwk3f3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj7avs2/;1610685161;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrettyVeterinarian96;;;[];;;;text;t2_45yit5wf;False;False;[];;Uhhhhh....yes...;False;False;;;;1610604695;;False;{};gj7baic;False;t3_kwk3f3;False;False;t3_kwk3f3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj7baic/;1610685403;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;Charlotte;False;False;;;;1610606131;;False;{};gj7d3vu;True;t3_kwk3f3;False;True;t1_gj73x49;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj7d3vu/;1610686516;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pnohgi;;;[];;;;text;t2_2yejrvb1;False;False;[];;"Understandable but I hope you didn’t do that with steins;gate";False;False;;;;1610606947;;False;{};gj7e36x;False;t3_kwk3f3;False;True;t1_gj6mojk;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj7e36x/;1610687107;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aevio11;;;[];;;;text;t2_5dgofayv;False;False;[];;"Nah, S;G is awesome. Though the first but of the show is reeeeaaally slow. Had I not been bored that day I may have ditched it after a couple episodes";False;False;;;;1610607025;;False;{};gj7e6hl;False;t3_kwk3f3;False;True;t1_gj7e36x;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj7e6hl/;1610687164;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MackeralDestroyer;;;[];;;;text;t2_kt7160w;False;False;[];;Have you seen either Kanon or Little Busters? Kanon is solid, and even though Little Busters isn't a perfect adaptation, it's still pretty good.;False;False;;;;1610607129;;False;{};gj7eav3;False;t3_kwk3f3;False;True;t1_gj668sg;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj7eav3/;1610687242;3;True;False;anime;t5_2qh22;;0;[]; -[];;;monkeyDroofy;;;[];;;;text;t2_18k6r7mc;False;False;[];;Imo this was as bad as my little monster. Never been so irrationally upset at an ending of a show like those 2;False;False;;;;1610609249;;False;{};gj7go0d;False;t3_kwk3f3;False;True;t1_gj6itlq;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj7go0d/;1610688751;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LBLV_999;;;[];;;;text;t2_8oa514x4;False;False;[];;The reaction is so funny like not this again.;False;False;;;;1610610860;;False;{};gj7iegm;False;t3_kwk3f3;False;True;t3_kwk3f3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj7iegm/;1610690076;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BackStabbath2004;;;[];;;;text;t2_6zuc8qts;False;False;[];;"Yeah it's a little hard to convince slightly impatient people to watch S;G. It took so much effort to make my friend continue after the first few episodes. He finally liked it but was seriously considering ditching so many times in the first half.";False;False;;;;1610611301;;False;{};gj7iv3r;False;t3_kwk3f3;False;True;t1_gj7e6hl;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj7iv3r/;1610690357;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IceAsFireYT;;;[];;;;text;t2_52ihbvhj;False;False;[];;"There is a lot of progress after that. Like on 6-8 episodes a lot of progress starts getting done. And there will be character development and some secrets after that. Like *spoiler* - - - - -The mc's power isn't what you think it is";False;False;;;;1610611826;;False;{};gj7jed6;False;t3_kwk3f3;False;False;t1_gj6mojk;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj7jed6/;1610690742;4;True;False;anime;t5_2qh22;;0;[]; -[];;;iHacki44;;;[];;;;text;t2_gl7ie5o;False;False;[];;km sorry but this show was objectively not good. Just everything about the second half of the season was just...disappointing to say the least;False;False;;;;1610612912;;False;{};gj7ki5t;False;t3_kwk3f3;False;True;t1_gj6itlq;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj7ki5t/;1610691494;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Larseman7;;;[];;;;text;t2_8869slz3;False;False;[];;This anime is absulutely amazing;False;False;;;;1610613712;;False;{};gj7lb9t;False;t3_kwk3f3;False;True;t3_kwk3f3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj7lb9t/;1610692029;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sparrowofalbion;;;[];;;;text;t2_6bx6nmzl;False;False;[];;Oh my...;False;False;;;;1610613852;;False;{};gj7lgbb;False;t3_kwk3f3;False;True;t3_kwk3f3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj7lgbb/;1610692116;1;True;False;anime;t5_2qh22;;0;[]; -[];;;satoumegu;;;[];;;;text;t2_5rhzan4;False;False;[];;Angel Beats 2nd beat.......someday;False;False;;;;1610614185;;False;{};gj7lsf3;False;t3_kwk3f3;False;True;t1_gj6mkqz;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj7lsf3/;1610692321;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkAudit;;MAL;[];;https://myanimelist.net/animelist/DarkAudit;dark;text;t2_f48t6;False;False;[];;Just me, or did the art quality take a big hit?;False;False;;;;1610615204;;False;{};gj7mt3c;False;t3_kwk23i;False;False;t3_kwk23i;/r/anime/comments/kwk23i/soukou_musume_senki_episode_2_discussion/gj7mt3c/;1610692920;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kimmstr;;;[];;;;text;t2_374pil;False;False;[];;started watching this w my lil brother today haha thanks;False;False;;;;1610615558;;False;{};gj7n5t7;False;t3_kwk3f3;False;True;t3_kwk3f3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj7n5t7/;1610693124;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FStorm880;;;[];;;;text;t2_12gu2e;False;False;[];;He still paid for it lol;False;False;;;;1610616286;;False;{};gj7nvgg;False;t3_kwk3f3;False;True;t3_kwk3f3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj7nvgg/;1610693552;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fubes2000;;;[];;;;text;t2_4b90u;False;False;[];;Well technically you are, just not consciously.;False;False;;;;1610618616;;False;{};gj7q463;False;t3_kwk3f3;False;True;t1_gj66gcm;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj7q463/;1610694837;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Teath123;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MahoHiyajo/animelist;light;text;t2_5ryna;False;False;[];;10000%. I feel like this genuinely is an unpopular opinion. For me, all his original shows, from Angel Beats, to Charlotte, to God, for me, the humour is hilarious, but all the 'tear jerker' scenes feel so forced and unearned. Clannad is good still of course, because it's probably the only truly fantastic visual novel adaption, where it covered EVERYTHING in excellent detail. Charlotte? Angel Beats? 12 episodes of characters barely explored.;False;False;;;;1610618874;;False;{};gj7qcwe;False;t3_kwk3f3;False;True;t1_gj668sg;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj7qcwe/;1610694972;3;True;False;anime;t5_2qh22;;0;[]; -[];;;INHUMANE_KING;;;[];;;;text;t2_ny5c02w;False;False;[];;That anime is pretty great;False;False;;;;1610626311;;False;{};gj7y37x;False;t3_kwk3f3;False;True;t3_kwk3f3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj7y37x/;1610699279;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;That's not the conservation of momentum works. If you drop something and you're moving horizontally, the object will still maintain said horizontal velocity and it will also gain a vertical velocity due to gravitation. That's why you'd need to throw the coins backwards. How do you think throwing works?;False;False;;;;1610626918;;1610647256.0;{};gj7yt87;False;t3_kwk3f3;False;True;t1_gj71qsd;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj7yt87/;1610699668;0;True;False;anime;t5_2qh22;;0;[]; -[];;;c_pool69;;;[];;;;text;t2_8ukp9b1s;False;False;[];;This show was so good! No one talks about anymore😔;False;False;;;;1610629377;;False;{};gj81zw3;False;t3_kwk3f3;False;True;t3_kwk3f3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj81zw3/;1610701412;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;Yeah;False;False;;;;1610629547;;False;{};gj828ge;True;t3_kwk3f3;False;True;t1_gj81zw3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj828ge/;1610701540;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sneaky_42;;;[];;;;text;t2_4spbyunp;False;False;[];;I agree 100%. After how The Day I Became A God went, I think his next anime should just be a simple, slice of life comedy, or even a romcom. Like you said, he nails the comedy, but when it comes to sad stuff, it's hit or miss with him.;False;False;;;;1610629767;;False;{};gj82jop;False;t3_kwk3f3;False;True;t1_gj668sg;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj82jop/;1610701706;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gpsz6629;;;[];;;;text;t2_6hnfrrvt;False;False;[];;Gotta go fast;False;False;;;;1610630050;;False;{};gj82yha;False;t3_kwk3f3;False;True;t3_kwk3f3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj82yha/;1610701932;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chinatownjon;;;[];;;;text;t2_2llv7rko;False;False;[];;Big facts!!!!;False;False;;;;1610632693;;False;{};gj875gj;False;t3_kwk3f3;False;True;t1_gj76qpu;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj875gj/;1610704224;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chinatownjon;;;[];;;;text;t2_2llv7rko;False;False;[];;Really? I can agree that the latter half could use some more expansion but I wouldn't say it's straight up bad. To each their own I suppose!;False;False;;;;1610632764;;False;{};gj879wm;False;t3_kwk3f3;False;True;t1_gj7ki5t;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj879wm/;1610704292;2;True;False;anime;t5_2qh22;;0;[]; -[];;;iHacki44;;;[];;;;text;t2_gl7ie5o;False;False;[];;yup. Glad we could have a nice civil discussion. Have a nice day my dude;False;False;;;;1610632899;;False;{};gj87iag;False;t3_kwk3f3;False;True;t1_gj879wm;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj87iag/;1610704419;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SeanCanary;;;[];;;;text;t2_4uiu0;False;False;[];;It is a slight annoyance to her, eliciting a sigh.;False;False;;;;1610633228;;False;{};gj882og;False;t3_kwk3f3;False;False;t1_gj56v1b;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj882og/;1610704723;9;True;False;anime;t5_2qh22;;0;[]; -[];;;blitzbom;;;[];;;;text;t2_6h9w1;False;False;[];;I honestly wondered if the head writer died from a heart attack or something and someone else finished the show.;False;False;;;;1610633537;;False;{};gj88m4r;False;t3_kwk3f3;False;True;t1_gj6mabf;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj88m4r/;1610705025;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chinatownjon;;;[];;;;text;t2_2llv7rko;False;False;[];;Totally! :) Hope you have a good one as well!;False;False;;;;1610634404;;False;{};gj8a70v;False;t3_kwk3f3;False;True;t1_gj87iag;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj8a70v/;1610705885;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiro_Kai;;;[];;;;text;t2_bevm2wi;False;False;[];;Riko is an Amor Girl but not really part of the their unity, so, technically, she could stay to help the people there, if she wanted.;False;False;;;;1610634476;;False;{};gj8abtw;False;t3_kwk23i;False;True;t3_kwk23i;/r/anime/comments/kwk23i/soukou_musume_senki_episode_2_discussion/gj8abtw/;1610705958;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kahzel;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kahzel;light;text;t2_bcvnx;False;False;[];;tbf it's that anime is not Jun Maeda's strength at all, he's really good when it comes to VNs tho;False;False;;;;1610639353;;False;{};gj8kc63;False;t3_kwk3f3;False;False;t1_gj88m4r;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj8kc63/;1610711732;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Eggs_;;MAL;[];;https://myanimelist.net/animelist/_eggs_;dark;text;t2_iz815;False;False;[];;I know that. My comment includes examples to show that most speedster powers ignore that law of physics. Quicksilver, The Flash, etc. Their powers operate the way I described. You just have to consider it another aspect of their powers.;False;False;;;;1610647553;;False;{};gj92sol;False;t3_kwk3f3;False;True;t1_gj7yt87;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj92sol/;1610724442;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Those examples have canonical in-universe reasons for why they can break the laws of physics. Charlotte doesn't.;False;False;;;;1610648077;;False;{};gj93yeq;False;t3_kwk3f3;False;True;t1_gj92sol;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj93yeq/;1610725243;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Eggs_;;MAL;[];;https://myanimelist.net/animelist/_eggs_;dark;text;t2_iz815;False;False;[];;"I don't recall a single example of Takajo using super strength in Charlotte. Every speedster I can think of operates the way I described. It's a standard part of the ""super speed"" power. - -I mean it's a good application of high school physics to realize that the coins need an opposite force to stop. First law of motion and all that good stuff. - -But if it worked that way there would be a ton of other considerations. His body would have to be tough enough to withstand massive forces (near instant acceleration from 0 to Mach 5). If he accelerates over half a second (although it's clearly much faster than that), this would be a constant 300,000 Newtons of force on Takajo's body during acceleration. That's 67,400 pounds of force. It's actually much more weight than that because he accelerates in a shorter time period. - -If a car weighs 4000 lbs (exerting 4000 lbf downward), can Takajo's body withstand the weight of 16 cars stacked on top of him? According to you, it can. - -So ""canonically"", if he can withstand these forces, he shouldn't be injured like he is in the show. He's always injured by broken glass, running into walls, etc. These injuries make no sense if his body is this durable. - -Never try to apply physics to speedster powers because it will never make sense. Just assume all speedsters violate the laws of physics. They always do.";False;False;;;;1610649975;;False;{};gj985wp;False;t3_kwk3f3;False;True;t1_gj93yeq;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj985wp/;1610728217;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Accursedimmortal;;;[];;;;text;t2_14772nr4;False;False;[];;Those coins would be as fast as bullets making holes in the coin tray and counter.;False;False;;;;1610654492;;False;{};gj9i3dp;False;t3_kwk3f3;False;True;t1_gj4olkr;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj9i3dp/;1610735373;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GrAyFoX312k;;;[];;;;text;t2_16m9ml;False;False;[];;Wow this has nichijou levels of antics. How is this animal compared to it?;False;False;;;;1610659132;;False;{};gj9tikc;False;t3_kwk3f3;False;True;t3_kwk3f3;/r/anime/comments/kwk3f3/the_sandwitch_scene_of_charlotte/gj9tikc/;1610743138;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"> Even if those crystals did provide power, it's not like money is just going away considering it's still waaaaay more convenient. How do you even assign crystals with monetary values? - -Given that their world collapsed, and with it all production and existing products are in disarray, the *value* of the original money would have crumbled. I don't know if only Armor Girls cross the temporal quakes or if other people might too, but assuming you're gathering people with different money from different worlds, that might be a problem too. - -Compared to that, reverting to a multi-purpose, easy to transport new currency that has a steady supply and drain (something the missing government and banks usually manage) and provides a way to fund the armed defense against Mimesis without draining other sectors rather makes sense.";False;False;;;;1610701510;;False;{};gjbssx5;False;t3_kwk23i;False;True;t1_gj53w06;/r/anime/comments/kwk23i/soukou_musume_senki_episode_2_discussion/gjbssx5/;1610787457;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"You don't have to lewd them ! BONK - -[](#breakingnews) - -Given how I'm watching the Armor Girls and thinking they're cute-cool, I find it pretty easy to relate to Suzuno.";False;False;;;;1610701652;;False;{};gjbsxzp;False;t3_kwk23i;False;True;t1_gj57yx3;/r/anime/comments/kwk23i/soukou_musume_senki_episode_2_discussion/gjbsxzp/;1610787532;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Taerusaki;;skip7;[];;;dark;text;t2_1jiysgpw;False;False;[];;This is late but I already dropped it. Kinda sad I can't enjoy it like most of the fans but there are still alot more anime to enjoy;False;False;;;;1610729034;;False;{};gjcx2p2;True;t3_kwjxza;False;True;t1_gj6rvr6;/r/anime/comments/kwjxza/should_i_continue_gosick/gjcx2p2/;1610811569;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ctrl_alt-account_del;;;[];;;;text;t2_wnd079s;False;False;[];;Depends on how blatant and how often. If the do it a lot, it does start to bother me a little. If it's just a one off thing every now and again that doesn't extend beyond a couple seconds, I'll get over it.;False;False;;;;1610635649;;False;{};gj8ckgi;False;t3_kx6y1v;False;False;t3_kx6y1v;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj8ckgi/;1610707205;9;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;I don't think anything. It just is there just like any other element of the series.;False;False;;;;1610635669;;False;{};gj8clyh;False;t3_kx6y1v;False;False;t3_kx6y1v;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj8clyh/;1610707227;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;Fan service is kind of annoying to me, so I don't really like it. But at the same time, if anime didn't have fan service then it would probably be targeted for kids;False;False;;;;1610635693;;False;{};gj8cnor;False;t3_kx6y1v;False;False;t3_kx6y1v;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj8cnor/;1610707252;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarRufus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ScarRufus;light;text;t2_2u0vy1pk;False;False;[];;"Depends what fanservice we are talking about - -If it is the ecchi type, I normally don't care. Just need to be used and how the story is told. Like Monogatari Series. A bad situation can be Fire Force, sometimes ""you know who"" can be annoying. But I like the ones in FT too. - -If it is fanservice in general it is always welcome and help you to hype the moment.";False;False;;;;1610635697;;False;{};gj8cny4;False;t3_kx6y1v;False;False;t3_kx6y1v;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj8cny4/;1610707257;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;It’s the only reason why I kept watching shows like fairy tail;False;False;;;;1610635799;;False;{};gj8cvdy;False;t3_kx6y1v;False;True;t3_kx6y1v;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj8cvdy/;1610707369;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;Clannad and Clannad AS , but they are not action anime;False;False;;;;1610635827;;False;{};gj8cxdh;False;t3_kx71cj;False;False;t3_kx71cj;/r/anime/comments/kx71cj/looking_for_an_anime_sadder_than_aot_and_akame_ga/gj8cxdh/;1610707401;9;True;False;anime;t5_2qh22;;0;[]; -[];;;FuenteFOX;;;[];;;;text;t2_qz4fp;False;False;[];;I'm not sure if I remember an anime in the action genre that's any sadder, but probably what most people are going to suggest is something like Your Lie in April or Ano Hana.;False;False;;;;1610635894;;False;{};gj8d2aa;False;t3_kx71cj;False;True;t3_kx71cj;/r/anime/comments/kx71cj/looking_for_an_anime_sadder_than_aot_and_akame_ga/gj8d2aa/;1610707476;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BTGz;;;[];;;;text;t2_bctmn;False;False;[];;I don't mind it and like it in some cases. But in shows like Fire Forece and 7 Sins I hate it.;False;False;;;;1610635920;;False;{};gj8d47x;False;t3_kx6y1v;False;True;t3_kx6y1v;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj8d47x/;1610707505;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi sasukebrother, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610635960;moderator;False;{};gj8d76b;False;t3_kx73ey;False;False;t3_kx73ey;/r/anime/comments/kx73ey/prison_school_alike_anime/gj8d76b/;1610707550;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;Angel beats;False;False;;;;1610636003;;False;{};gj8daan;False;t3_kx71cj;False;False;t3_kx71cj;/r/anime/comments/kx71cj/looking_for_an_anime_sadder_than_aot_and_akame_ga/gj8daan/;1610707598;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;As long as they don't throw fanservice in serious moments then I'm fine with it.;False;False;;;;1610636014;;False;{};gj8db2r;False;t3_kx6y1v;False;False;t3_kx6y1v;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj8db2r/;1610707610;6;True;False;anime;t5_2qh22;;0;[]; -[];;;whowilleverknow;;MAL;[];;https://myanimelist.net/animelist/BignGay;dark;text;t2_o6bib;False;False;[];;99% of the time it's shit;False;False;;;;1610636018;;False;{};gj8dbdx;False;t3_kx6y1v;False;True;t3_kx6y1v;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj8dbdx/;1610707615;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ve_spart;;;[];;;;text;t2_4y0x530d;False;False;[];;Vinland Saga;False;False;;;;1610636027;;False;{};gj8dc2d;False;t3_kx71cj;False;True;t3_kx71cj;/r/anime/comments/kx71cj/looking_for_an_anime_sadder_than_aot_and_akame_ga/gj8dc2d/;1610707624;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];; SHIMONETA: A Boring World Where the Concept of Dirty Jokes Doesn't Exist;False;False;;;;1610636029;;False;{};gj8dc7j;False;t3_kx73ey;False;True;t3_kx73ey;/r/anime/comments/kx73ey/prison_school_alike_anime/gj8dc7j/;1610707626;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Massaman95;;;[];;;;text;t2_zxb3m;False;False;[];;Ishuzoku Reviewers;False;False;;;;1610636047;;False;{};gj8ddh9;False;t3_kx73ey;False;False;t3_kx73ey;/r/anime/comments/kx73ey/prison_school_alike_anime/gj8ddh9/;1610707646;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Luna_Sphinx;;;[];;;;text;t2_68r0k5np;False;False;[];;Anohana, Your Lie in April, devilman crybaby (at least for me it was sad);False;False;;;;1610636114;;False;{};gj8dif0;False;t3_kx71cj;False;False;t3_kx71cj;/r/anime/comments/kx71cj/looking_for_an_anime_sadder_than_aot_and_akame_ga/gj8dif0/;1610707719;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ve_spart;;;[];;;;text;t2_4y0x530d;False;False;[];;Shimoneta and ishuzoku reviewers;False;False;;;;1610636191;;False;{};gj8do2n;False;t3_kx73ey;False;True;t3_kx73ey;/r/anime/comments/kx73ey/prison_school_alike_anime/gj8do2n/;1610707806;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gosutoo;;;[];;;;text;t2_hcu39gx;False;False;[];;"Best case scenario: I like it - -Worst case scenario: I don't really care, and it doesn't affect my enjoyment of a show at all.";False;False;;;;1610636448;;False;{};gj8e6w0;False;t3_kx6y1v;False;True;t3_kx6y1v;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj8e6w0/;1610708097;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610636455;moderator;False;{};gj8e7ex;False;t3_kx7976;False;True;t3_kx7976;/r/anime/comments/kx7976/i_watched_all_the_beginnergateway_animes_and_am/gj8e7ex/;1610708106;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Reasonable-Affect-76, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610636455;moderator;False;{};gj8e7gi;False;t3_kx7976;False;True;t3_kx7976;/r/anime/comments/kx7976/i_watched_all_the_beginnergateway_animes_and_am/gj8e7gi/;1610708106;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610636460;moderator;False;{};gj8e7sz;False;t3_kx78r8;False;True;t3_kx78r8;/r/anime/comments/kx78r8/what_anime_is_this_i_liked_the_art_style_and/gj8e7sz/;1610708112;2;False;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;Puparia;False;False;;;;1610636488;;False;{};gj8e9tf;False;t3_kx78r8;False;True;t3_kx78r8;/r/anime/comments/kx78r8/what_anime_is_this_i_liked_the_art_style_and/gj8e9tf/;1610708144;3;True;False;anime;t5_2qh22;;0;[]; -[];;;weebu4laifu;;;[];;;;text;t2_7nij0alj;False;True;[];;Tbh at this point I've seen so much anime that it takes something special for me to notice it.;False;False;;;;1610636509;;False;{};gj8ebc7;False;t3_kx6y1v;False;False;t3_kx6y1v;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj8ebc7/;1610708166;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Burnedsauce445;;;[];;;;text;t2_3wiksx30;False;False;[];;I mean for me Rascal does not dream of bunny girl senpai and Rascal does not dream of a dreaming girl were pretty sad.;False;False;;;;1610636523;;False;{};gj8ecch;False;t3_kx71cj;False;True;t3_kx71cj;/r/anime/comments/kx71cj/looking_for_an_anime_sadder_than_aot_and_akame_ga/gj8ecch/;1610708181;3;True;False;anime;t5_2qh22;;0;[]; -[];;;VortreKerba;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_13ws09;False;False;[];;Take a screenshot of the characters face then Google search the image to find the character name the go from there to find the series. I cant do it myself cos I'm on mobile and its a pain in the ass 😒😂;False;False;;;;1610636525;;False;{};gj8eci6;False;t3_kx78r8;False;True;t3_kx78r8;/r/anime/comments/kx78r8/what_anime_is_this_i_liked_the_art_style_and/gj8eci6/;1610708183;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"# Source Material Corner - -Reply to this comment for any source-related discussion, future spoilers (including future characters, events and general hype about future content), comparison of the anime adaptation to the original, or just general talk about the source material. **You are still required to tag all spoilers.** Discussions about the source outside of this comment tree will be removed, and replying with spoilers outside of the source corner will lead to bans. - -The spoiler syntax is: -`[Spoiler source](/s ""Spoiler goes here"")` - -# **All untagged spoilers and hints in this thread will receive immediate 8-day bans (minimum).** - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610636527;moderator;False;{};gj8ecmv;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8ecmv/;1610708185;1;False;True;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;"KonoSuba -Monster Monsume -Shimoneta";False;False;;;;1610636625;;False;{};gj8ejp6;False;t3_kx73ey;False;True;t3_kx73ey;/r/anime/comments/kx73ey/prison_school_alike_anime/gj8ejp6/;1610708291;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gazny78;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_zlqd3;False;False;[];;"Rin internalizing [her excitement](http://imgur.com/gallery/08V7BIt) - is just too cute! Also cements the fact she may be in introvert, but she's not an anti-social loner! - -That is one of the prettiest [tea house](http://imgur.com/gallery/IXOwuB9) I've ever seen! And, as expected, it's a [real place](https://maps.app.goo.gl/zSztGU7z85FfyRiH9)!. - -[Pinecone-chan](http://imgur.com/gallery/2u84CFf) still makes me snort every single time! - -[Not even Rin-chan can resist fresh pizza!](http://imgur.com/gallery/T8qGsri) - -No Shinto shrine on a popular mountain will be [this empty](http://imgur.com/gallery/KLF7JVR) on New Year's Day! The lines of people visiting for Hatsumode could probably stretch all the way to the ropeway! - -My God! That whole [first](http://imgur.com/gallery/ze67gle) [sunrise](http://imgur.com/gallery/Tb95yUv) scene was just gorgeous! My own [hatsuhinode](http://imgur.com/gallery/R9zsycG) was close to my wife's parents house in Chiba. - -Toba-sensei channeling her [inner racer](http://imgur.com/gallery/5ejpCXB) with a K-class car! - -I love the little exchanges that happened between Aoi and her little sister! It's so subtlety wholesome! Chibi Inuko is a great addition to the cast!";False;False;;;;1610636626;;1610644837.0;{};gj8ejsg;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8ejsg/;1610708293;112;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;100%*;False;False;;;;1610636627;;False;{};gj8ejsn;False;t3_kx6y1v;False;True;t1_gj8dbdx;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj8ejsn/;1610708293;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;"Ping Pong the Animation - -&#x200B; - -One Outs";False;False;;;;1610636722;;False;{};gj8equ7;False;t3_kx7976;False;True;t3_kx7976;/r/anime/comments/kx7976/i_watched_all_the_beginnergateway_animes_and_am/gj8equ7/;1610708399;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Juuzou_suzoya_is_hot;;;[];;;;text;t2_81x6bdxq;False;False;[];;Bruh I'm on mobile too lmaoo;False;False;;;;1610636744;;False;{};gj8esey;True;t3_kx78r8;False;True;t1_gj8eci6;/r/anime/comments/kx78r8/what_anime_is_this_i_liked_the_art_style_and/gj8esey/;1610708426;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"Makes the anime harder to watch with others and recommend to people. - -If you want to watch something arousing watch pornography etc... not an anime. It seems so weird. - -I don't mind it if it's in shows that are completely based around fanservice like Highschool DxD, not my kind of show and I won't watch it but at least it's upfront about it. Whereas, when it's in a show that isn't based around fanservice like a romcom, comedies, battle shounens or more serious anime it does take me out of the immersion and often makes the anime worse. - -Other than horny teen boys and neckbeards I don't get who enjoys this.";False;False;;;;1610636798;;1610637078.0;{};gj8ewdr;False;t3_kx6y1v;False;True;t3_kx6y1v;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj8ewdr/;1610708490;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;RowdeyAssassin22;;;[];;;;text;t2_17cmou;False;False;[];;I quess thats fair. I'm sorta new to anime. I recently finished the naruto and shippuden series, 7 deadly sins and sao. Also finished dragon ball and dragon ball z when I was alot younger. I just hear amongst friends who watch anime talk about fan service and they all have different views on it.;False;False;;;;1610636808;;False;{};gj8ex76;True;t3_kx6y1v;False;True;t1_gj8ebc7;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj8ex76/;1610708503;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VortreKerba;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_13ws09;False;False;[];;F 🙏;False;False;;;;1610636819;;False;{};gj8ey08;False;t3_kx78r8;False;True;t1_gj8esey;/r/anime/comments/kx78r8/what_anime_is_this_i_liked_the_art_style_and/gj8ey08/;1610708516;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;"School Live -Ancient Magus Bride";False;False;;;;1610636859;;False;{};gj8f0wb;False;t3_kx71cj;False;True;t3_kx71cj;/r/anime/comments/kx71cj/looking_for_an_anime_sadder_than_aot_and_akame_ga/gj8f0wb/;1610708562;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi King_otaku_amv, your post has been removed because your title is below our minimum length requirement of 4 words. Feel free to repost with a more descriptive title. - -If you're looking to get a quick question answered, like asking for [recommendations](https://www.reddit.com/r/anime/wiki/recommendations), [the source of a picture](https://www.reddit.com/r/anime/wiki/reverse_image_searching), a [watch order](https://www.reddit.com/r/anime/wiki/watch_order) or any other [general question](https://www.reddit.com/r/anime/wiki/faaq), please check our sidebar too, it might help you faster. - -[**Thank you!**](#blushubot) - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610636890;moderator;False;{};gj8f36c;False;t3_kx7ea7;False;True;t3_kx7ea7;/r/anime/comments/kx7ea7/naruto_edit/gj8f36c/;1610708597;1;False;False;anime;t5_2qh22;;0;[]; -[];;;WildPlatypus88;;;[];;;;text;t2_4nfruvws;False;False;[];;"Mob Psycho (comedy, slice of life, action) - -Madoka Magica (just disturbing, masterpiece) - -Konosuba (comedy isekai) - -Haikyuu (volleyball shonen) - -Re:Zero (currently airing) - -Kaguya sama(rom-com, subreddit like to simp)";False;False;;;;1610637020;;False;{};gj8fcul;False;t3_kx7976;False;False;t3_kx7976;/r/anime/comments/kx7976/i_watched_all_the_beginnergateway_animes_and_am/gj8fcul/;1610708747;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Environmental_Big789;;;[];;;;text;t2_85cbu6p9;False;False;[];;DARWIN’S Game , guilty crown;False;False;;;;1610637069;;False;{};gj8fgkx;False;t3_kx7g15;False;False;t3_kx7g15;/r/anime/comments/kx7g15/mirai_nikki_similar_anime/gj8fgkx/;1610708804;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Miidas-92;;MAL;[];;https://myanimelist.net/profile/Miidas;dark;text;t2_ja1jx;False;False;[];;"When you're new to anime, I'd actually say the ""top anime"" list on Myanimelist can be quite useful. Scroll down and pick stuff that you think looks interesting: - -https://myanimelist.net/topanime.php - -When you get more into the medium, you'll know what to look for and can start searching up the more influencial works, staff membes you enjoy, etc. - -Here is 5 anime I recommend checking out, if you haven't already done so. They're huge in their respective genres, and got good reception + popularity: - -- Cardcaptor Sakura - -- Cowboy Bebop - -- Hunter x Hunter 2011 - -- K-On! - -- Neon Genesis Evangelion";False;False;;;;1610637139;;1610637351.0;{};gj8flth;False;t3_kx7976;False;True;t3_kx7976;/r/anime/comments/kx7976/i_watched_all_the_beginnergateway_animes_and_am/gj8flth/;1610708887;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahou_Shoujo_Ramune;;;[];;;;text;t2_4vs4l2r6;False;False;[];;"Yuki Yuna is a Hero - -Madoka Magica";False;False;;;;1610637268;;False;{};gj8fvs2;False;t3_kx71cj;False;True;t3_kx71cj;/r/anime/comments/kx71cj/looking_for_an_anime_sadder_than_aot_and_akame_ga/gj8fvs2/;1610709054;2;True;False;anime;t5_2qh22;;0;[]; -[];;;the22sinatra;;;[];;;;text;t2_1plc2ja9;False;False;[];;Highschool DxD;False;False;;;;1610637317;;False;{};gj8fzku;False;t3_kx73ey;False;False;t3_kx73ey;/r/anime/comments/kx73ey/prison_school_alike_anime/gj8fzku/;1610709113;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahou_Shoujo_Ramune;;;[];;;;text;t2_4vs4l2r6;False;False;[];;I'm a pervert so I love it. I only don't like rapish or derogatory fanservice.;False;False;;;;1610637351;;False;{};gj8g24u;False;t3_kx6y1v;False;True;t3_kx6y1v;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj8g24u/;1610709154;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Boris_Boskovic;;;[];;;;text;t2_3qxt47av;False;False;[];;Just watch The Devil is Part Timer believe me dude;False;False;;;;1610637378;;False;{};gj8g45f;False;t3_kx7976;False;False;t3_kx7976;/r/anime/comments/kx7976/i_watched_all_the_beginnergateway_animes_and_am/gj8g45f/;1610709186;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Suchomemus;;;[];;;;text;t2_77xks1x8;False;False;[];;(Higurashi: When they cry) might be a good watch for you then;False;False;;;;1610637415;;False;{};gj8g72b;False;t3_kx7g15;False;True;t3_kx7g15;/r/anime/comments/kx7g15/mirai_nikki_similar_anime/gj8g72b/;1610709233;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahou_Shoujo_Ramune;;;[];;;;text;t2_4vs4l2r6;False;False;[];;Happy Sugar Life;False;False;;;;1610637488;;False;{};gj8gck3;False;t3_kx7g15;False;True;t3_kx7g15;/r/anime/comments/kx7g15/mirai_nikki_similar_anime/gj8gck3/;1610709320;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BlooregardQKazoo;;;[];;;;text;t2_3uspr;False;False;[];;"i personally just start watching shows and then stop after a couple episodes if i don't enjoy it. and sometimes this means that i drop shows that are highly recommended or really enjoy shows that aren't reviewed well. - -also, most shows either have 12-24 episodes or they have 100+. there just aren't a lot in between that. - -**Assassination Classroom** is fun and has like 50 episodes, though you might have already watched that since it is beginner-friendly. - -**Madoka Magica** only has 12 episodes but it doesn't matter. Just watch it. - -another option is to watch seasonal anime. rather than binging shows you can watch like 20 shows at a time, once a week each. a season just started so now would be a good time to jump in. you can't afford to be too choosey but it is a good way to expose yourself to new genres and shows you wouldn't normally watch. i personally have time to watch 5-10 shows every season and wish i had time to watch more.";False;False;;;;1610637516;;False;{};gj8gep1;False;t3_kx7976;False;True;t3_kx7976;/r/anime/comments/kx7976/i_watched_all_the_beginnergateway_animes_and_am/gj8gep1/;1610709354;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Sorry, your submission has been removed. - -- This doesn't appear to be about [anime per our definition](https://www.reddit.com/r/anime/wiki/rules#wiki_everything_posted_here_must_be_anime_specific). - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610637643;moderator;False;{};gj8gog2;False;t3_kx79kr;False;True;t3_kx79kr;/r/anime/comments/kx79kr/voltes_v_legacy_trailer/gj8gog2/;1610709511;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vegetable0;;;[];;;;text;t2_5im09tzo;False;False;[];;"You should check out myanimelist. It's a website for rating anime and it ranks all anime based on people's ratings. It's a good place to get some recommendations. Though don't take the ratings or rankings to be absolute, all of them might not be accurate for your taste. But considering that you are new to anime, you can pick up pretty much anything from the top 100, they are all really great. - -And for some recommendations of longer anime, there's hunter X hunter JoJo's bizarre adventure (though you might want to get a little bit more into anime before watching this), code geass, assassination classroom, durarara, haikyuu and steins gate.";False;False;;;;1610637728;;False;{};gj8gv2r;False;t3_kx7976;False;True;t3_kx7976;/r/anime/comments/kx7976/i_watched_all_the_beginnergateway_animes_and_am/gj8gv2r/;1610709619;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aryu_redikiz;;;[];;;;text;t2_99qm5c27;False;False;[];;https://anidb.net/anime/14413;False;False;;;;1610637856;;False;{};gj8h52z;False;t3_kx7nvc;False;True;t3_kx7nvc;/r/anime/comments/kx7nvc/does_anyone_know_what_anime_this_is_from/gj8h52z/;1610709785;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Yuul-Aiyng;;;[];;;;text;t2_bzqhpuh;False;False;[];;"Is it normal to feel the need for a jacket watching Rin camp even though I live in the tropics? Having been through camps I have no idea how she hasnt accidently set her blankets on fire/gotten mild hypothermia. - - - - - - - -On the other hand, I have not heard anything as fluffy as Inuyama's Kansai-ben, that got rid some of the frostbite.";False;False;;;;1610637866;;False;{};gj8h5v8;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8h5v8/;1610709797;21;True;False;anime;t5_2qh22;;0;[]; -[];;;death556;;;[];;;;text;t2_y24tf;False;False;[];;"Why the hell are you here here, teacher - -Hidive on vrv has it completely uncensored";False;False;;;;1610637883;;False;{};gj8h73x;False;t3_kx7nvc;False;True;t3_kx7nvc;/r/anime/comments/kx7nvc/does_anyone_know_what_anime_this_is_from/gj8h73x/;1610709821;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;Nande Koko ni Sensei ga!?;False;False;;;;1610637893;;False;{};gj8h7xw;False;t3_kx7nvc;False;True;t3_kx7nvc;/r/anime/comments/kx7nvc/does_anyone_know_what_anime_this_is_from/gj8h7xw/;1610709836;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ballsdeep256;;;[];;;;text;t2_2x0xo9q2;False;False;[];;"I only remember the English name but it was - -""Teacher why are you here""";False;False;;;;1610637908;;False;{};gj8h91i;False;t3_kx7nvc;False;True;t3_kx7nvc;/r/anime/comments/kx7nvc/does_anyone_know_what_anime_this_is_from/gj8h91i/;1610709853;2;True;False;anime;t5_2qh22;;0;[]; -[];;;the22sinatra;;;[];;;;text;t2_1plc2ja9;False;False;[];;"If you liked Death Note, definitely watch Code Geass - -Other shows I’d highly recommend: - -Stein’s Gate - -Parasyte: the Maxim - -Re: Zero (airing currently) - -The Promised Neverland (airing currently) - -Cowboy Bebop - -Mob Psycho - -Assassination Classroom - - -Once you’re ready for a long anime, I can’t recommend One Piece enough - -Also which FMA did you watch? If it’s the original I’d recommend watching Brotherhood as it’s widely considered to be better and follows the source material until the end unlike the original";False;False;;;;1610637919;;False;{};gj8h9wp;False;t3_kx7976;False;True;t3_kx7976;/r/anime/comments/kx7976/i_watched_all_the_beginnergateway_animes_and_am/gj8h9wp/;1610709867;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sremcanin;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/mrkvaa;light;text;t2_4xt3dgl2;False;False;[];;Yeah I picked up the manga a few days ago because I couldn't calm down my excitement;False;False;;;;1610638011;;False;{};gj8hgs3;False;t3_kx7qln;False;True;t3_kx7qln;/r/anime/comments/kx7qln/attack_on_titan_episode_64/gj8hgs3/;1610709984;5;True;False;anime;t5_2qh22;;0;[]; -[];;;blackmagemasta;;MAL;[];;https://myanimelist.net/profile/blackmagemasta;dark;text;t2_aceb1;False;False;[];;"Other people are giving recommendations, so I'll tell you how I discover good shows. - -1) Google. If you like FMA, then you can google ""anime like FMA"". If you like sci-fi, you can google ""best sci-fi anime"". - -2) Anime websites. The bot has a link to a list of tracking sites. Some of these tracking sites will include a recommendation section. The two that I use are http://myanimelist.net (MAL) and http://anidb.net. On MAL, if you search for an anime and then scroll to the bottom of the page, there is a section of similar anime. Click on one and it'll take you to a page of people saying why the recommend such and such anime. - -3) New anime. Every 3 months, new anime starts releasing. If you go to http://livechart.me or to MAL, there are lists of these newly airing shows. I'll read the synopsis and if they sound good, I'll check them out. Or if I'm full up on shows, I'll just add them to my Plan to Watch list and watch them later.";False;False;;;;1610638062;;False;{};gj8hko5;False;t3_kx7976;False;True;t3_kx7976;/r/anime/comments/kx7976/i_watched_all_the_beginnergateway_animes_and_am/gj8hko5/;1610710045;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CosmicPenguin_OV103;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cosmic_Penguin;light;text;t2_1ufwqhs7;False;True;[];;"=U= - -[The lighthouse at the start of the episode with Rin](https://goo.gl/maps/225KWN6wC9ozYuxGA) - -[Rin's camp site across the New Year](https://goo.gl/maps/h8uPdMqshAYPULUW9) - -[Where Rin saw the first sunrise of the year](https://goo.gl/maps/v6NM1EDqv4LgK1fM9) - -[The mountain where Nadeshiko, Aoi and Chiaki saw the New Year sunrise, near where they live](https://goo.gl/maps/pMMDWLV1rL6Xra8YA) - -That area happens to be really off the beaten path for tourists (can't remember much things of interest around Shizuoka - Hamamatsu), maybe we will see more people rolling around there soon... ~~most tourists visit Shizuoka Pref. for Mt. Fuji, Izu and maybe Numazu only.~~ - -As an astronomy and stargazing lover I probably would have focused on stargazing with at least my binoculars for such camps, not reading books in cold weather. But it's definitely a very nice way to cross the new year! Rin's noodles looks so warm, maybe I need to make that some day\~ - -Also I have to chuckle at all those near misses in watching New Years' Sunrise, I failed in my attempt to watch that from some picturesque corner of my city this year because I still think it's too risky to drive on country highways despite having my driver's license since 2017. Le sigh... - -BTW my dad - on one of my dozen or so trips to Japan thanks to his interests - managed to brought my family to see something like that Mt. Fuji diamond sunrise several years ago, though it was 4:30 am or so in July from a hotel room in nearby Lake Kawaguchi. A much more comfortable way to do so, but always risky because it's hard to get a clear view of it in any season!";False;False;;;;1610638068;;1610640364.0;{};gj8hl3b;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8hl3b/;1610710052;70;True;False;anime;t5_2qh22;;0;[]; -[];;;Wrcicw;;;[];;;;text;t2_7ecaotat;False;False;[];;"My anime list will help you find new anime and the recommendations from me are : -Saiki k ( comedy ), -Steins Gate ( sci-fi ), -Rascal does not dream of bunny girl senpai(supernatural), -Love is War ( romance ), - -And from movies -Your name , -Silent voice, -Weathering with you";False;False;;;;1610638081;;False;{};gj8hm33;False;t3_kx7976;False;False;t3_kx7976;/r/anime/comments/kx7976/i_watched_all_the_beginnergateway_animes_and_am/gj8hm33/;1610710069;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Yeah, can't wait to see what will happen next after such a great episode. For me, that episode was one of the best episodes of AoT and that last few minutes were hype at its best.;False;False;;;;1610638085;;False;{};gj8hmbq;False;t3_kx7qln;False;True;t3_kx7qln;/r/anime/comments/kx7qln/attack_on_titan_episode_64/gj8hmbq/;1610710073;18;True;False;anime;t5_2qh22;;0;[]; -[];;;SIRTreehugger;;MAL;[];;http://myanimelist.net/animelist/SIRTreehugger;dark;text;t2_fvp12;False;False;[];;"I swear the manga is good, but the anime is an improvement on almost every level. Still the scenic panels are my favorite. - -[Surprised Rin Chann](https://i.imgur.com/OA0bQL2.png) - -[Chapter Cover](https://i.imgur.com/YcVKsgr.png) - -[](#excitedyui) - -[Double sunsets what does it mean](https://i.imgur.com/3ht4ACs.png)";False;False;;;;1610638106;;False;{};gj8hnxp;False;t3_kx7a0l;False;False;t1_gj8ecmv;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8hnxp/;1610710098;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Ishuzoku-Connoisseur;;;[];;;;text;t2_65qsew7y;False;False;[];;What’s with all of the posts today talking about fanservice? It can be either good or bad depending on the context.;False;False;;;;1610638134;;False;{};gj8hq55;False;t3_kx6y1v;False;True;t3_kx6y1v;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj8hq55/;1610710135;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610638222;moderator;False;{};gj8hwrk;False;t3_kx7tx5;False;True;t3_kx7tx5;/r/anime/comments/kx7tx5/so_i_just_watched_both_your_name_and_the_devil_is/gj8hwrk/;1610710245;2;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Boris_Boskovic, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610638222;moderator;False;{};gj8hwtm;False;t3_kx7tx5;False;True;t3_kx7tx5;/r/anime/comments/kx7tx5/so_i_just_watched_both_your_name_and_the_devil_is/gj8hwtm/;1610710246;2;False;False;anime;t5_2qh22;;0;[]; -[];;;TheLazyBerserker;;;[];;;;text;t2_ewzhcsl;False;False;[];;Assassination Classroom. Despite the, for lack of better words, comedic nature of the show, you know it's coming, and in a way that just makes it that much more sad.;False;False;;;;1610638257;;False;{};gj8hzhq;False;t3_kx71cj;False;True;t3_kx71cj;/r/anime/comments/kx71cj/looking_for_an_anime_sadder_than_aot_and_akame_ga/gj8hzhq/;1610710294;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lethalmc;;;[];;;;text;t2_at3n1;False;False;[];;Rin running away is my favorite running gag;False;False;;;;1610638318;;False;{};gj8i481;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8i481/;1610710371;214;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;I can't wait either and i read the manga! Lol;False;False;;;;1610638340;;False;{};gj8i5wc;False;t3_kx7qln;False;True;t3_kx7qln;/r/anime/comments/kx7qln/attack_on_titan_episode_64/gj8i5wc/;1610710398;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;Golden Boy (a classic but has dirty jokes);False;False;;;;1610638354;;False;{};gj8i6xv;False;t3_kx73ey;False;True;t3_kx73ey;/r/anime/comments/kx73ey/prison_school_alike_anime/gj8i6xv/;1610710414;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The-All-Might;;;[];;;;text;t2_6gwkewr6;False;False;[];;I should probably read the manga also! But the buildup leading to episode 64 has been so worth it !;False;False;;;;1610638387;;False;{};gj8i9lh;True;t3_kx7qln;False;True;t1_gj8i5wc;/r/anime/comments/kx7qln/attack_on_titan_episode_64/gj8i9lh/;1610710458;4;True;False;anime;t5_2qh22;;0;[]; -[];;;RADIOAUDIO;;;[];;;;text;t2_40i8he57;False;False;[];;I could watch 100 episodes of just Rin solo camping;False;False;;;;1610638410;;False;{};gj8ibbz;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8ibbz/;1610710486;311;True;False;anime;t5_2qh22;;0;[]; -[];;;Hupecuar;;;[];;;;text;t2_6jtghg6g;False;False;[];;Your lie in April;False;False;;;;1610638473;;False;{};gj8ig8q;False;t3_kx7tx5;False;True;t3_kx7tx5;/r/anime/comments/kx7tx5/so_i_just_watched_both_your_name_and_the_devil_is/gj8ig8q/;1610710565;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Burnedsauce445;;;[];;;;text;t2_3wiksx30;False;False;[];;I personally recommend A silent voice, toradora, Rascal does not dream of bunny girl senpai, and Rascal does not dream of a dreaming girl;False;False;;;;1610638520;;False;{};gj8iju1;False;t3_kx7tx5;False;False;t3_kx7tx5;/r/anime/comments/kx7tx5/so_i_just_watched_both_your_name_and_the_devil_is/gj8iju1/;1610710625;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Wait more 3 months, the manga will be done by then - -We have 1 chapter per month, so if you read now and reach the current chapter you'll have to wait 1 month for the next, and there's still 3 chapters to go - -But if you like the torture of waiting go ahead haha";False;False;;;;1610638593;;False;{};gj8ipjo;False;t3_kx7qln;False;True;t1_gj8i9lh;/r/anime/comments/kx7qln/attack_on_titan_episode_64/gj8ipjo/;1610710722;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Gil_B132;;;[];;;;text;t2_4xlezoga;False;False;[];;Thank you, I’ll watch.;False;False;;;;1610638993;;False;{};gj8jkaw;True;t3_kx7g15;False;True;t1_gj8gck3;/r/anime/comments/kx7g15/mirai_nikki_similar_anime/gj8jkaw/;1610711254;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gil_B132;;;[];;;;text;t2_4xlezoga;False;False;[];;Thank you, I’ll try and see if I like both!;False;False;;;;1610639006;;False;{};gj8jl9u;True;t3_kx7g15;False;True;t1_gj8fgkx;/r/anime/comments/kx7g15/mirai_nikki_similar_anime/gj8jl9u/;1610711270;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gil_B132;;;[];;;;text;t2_4xlezoga;False;False;[];;I’ll give it a shot;False;False;;;;1610639013;;False;{};gj8jlsm;True;t3_kx7g15;False;True;t1_gj8g72b;/r/anime/comments/kx7g15/mirai_nikki_similar_anime/gj8jlsm/;1610711280;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Environmental_Big789;;;[];;;;text;t2_85cbu6p9;False;False;[];;Darwin’s game is a spitting image of future diary guilty crown has a MC like yuno gasai;False;False;;;;1610639082;;False;{};gj8jr3e;False;t3_kx7g15;False;True;t1_gj8jl9u;/r/anime/comments/kx7g15/mirai_nikki_similar_anime/gj8jr3e/;1610711374;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610639162;;False;{};gj8jx93;False;t3_kx7976;False;True;t3_kx7976;/r/anime/comments/kx7976/i_watched_all_the_beginnergateway_animes_and_am/gj8jx93/;1610711473;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RasmusFPS;;;[];;;;text;t2_7di5r6fe;False;False;[];;Watch weathering with you awsome movie;False;False;;;;1610639180;;False;{};gj8jynl;False;t3_kx7tx5;False;True;t3_kx7tx5;/r/anime/comments/kx7tx5/so_i_just_watched_both_your_name_and_the_devil_is/gj8jynl/;1610711497;3;True;False;anime;t5_2qh22;;0;[]; -[];;;fiiiiiiiiiiiiiiiiiii;;;[];;;;text;t2_nod7fzh;False;False;[];;"Cousin Yui vs. Minami sensei on a Kei car race, place your bets now. -Also do not resist the pizza, pizza will always win.";False;False;;;;1610639311;;False;{};gj8k8ul;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8k8ul/;1610711676;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;I had a higher tolerance when I was younger, but now I try to avoid it. It's easy to avoid ecchi series, but it's more annoying when a non-ecchi series has fanservice randomly, especially when it's less about showing skin and more about perving on female characters as a joke (e.g. Mineta, Aladdin from Magi).;False;False;;;;1610639320;;False;{};gj8k9lp;False;t3_kx6y1v;False;False;t3_kx6y1v;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj8k9lp/;1610711690;5;True;False;anime;t5_2qh22;;0;[]; -[];;;The-All-Might;;;[];;;;text;t2_6gwkewr6;False;False;[];;"Haha I'll take your advice and wait 3 months it's torture already waiting for episode 65 ! -Don't think I can cope with more torture :)";False;False;;;;1610639650;;False;{};gj8kzcj;True;t3_kx7qln;False;True;t1_gj8ipjo;/r/anime/comments/kx7qln/attack_on_titan_episode_64/gj8kzcj/;1610712125;2;True;False;anime;t5_2qh22;;0;[]; -[];;;legwkio2;;;[];;;;text;t2_3winxodf;False;False;[];;Big Order is done by the same author but it's pretty bad. Some people like watching it though since it's so bad that it becomes funny.m;False;False;;;;1610639673;;False;{};gj8l167;False;t3_kx7g15;False;True;t3_kx7g15;/r/anime/comments/kx7g15/mirai_nikki_similar_anime/gj8l167/;1610712156;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The-All-Might;;;[];;;;text;t2_6gwkewr6;False;False;[];;"I legit agree with everything you have said above! -I thought the episode was just brilliant. -And as I said I think Erens concept in that episode was amazing";False;False;;;;1610639762;;False;{};gj8l8ai;True;t3_kx7qln;False;True;t1_gj8hmbq;/r/anime/comments/kx7qln/attack_on_titan_episode_64/gj8l8ai/;1610712280;7;True;False;anime;t5_2qh22;;0;[]; -[];;;spshiu;;;[];;;;text;t2_3xe1fna1;False;False;[];;the first sunrise scene for both seaside and with fujisan are really beautiful!;False;False;;;;1610639809;;False;{};gj8lc1r;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8lc1r/;1610712357;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gil_B132;;;[];;;;text;t2_4xlezoga;False;False;[];;Yeah I’ve heard of it being pretty funny. I’ll definitely watch it too.;False;False;;;;1610640029;;False;{};gj8ltds;True;t3_kx7g15;False;True;t1_gj8l167;/r/anime/comments/kx7g15/mirai_nikki_similar_anime/gj8ltds/;1610712654;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;I would love a scarf as fluffy as Rin's...;False;False;;;;1610640157;;False;{};gj8m3ep;False;t3_kx7a0l;False;False;t1_gj8h5v8;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8m3ep/;1610712832;10;True;False;anime;t5_2qh22;;0;[]; -[];;;mandj0307;;;[];;;;text;t2_jd7pi;False;False;[];;This is a live adaptation of voltes v anime.;False;False;;;;1610640195;;False;{};gj8m6cj;True;t3_kx79kr;False;True;t1_gj8gog2;/r/anime/comments/kx79kr/voltes_v_legacy_trailer/gj8m6cj/;1610712879;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mecha_Link;;;[];;;;text;t2_7axs7twr;False;False;[];;"Does anyone have a sense for how well this series is doing in Japan? I really want C-Station to get recognition for their amazing work! - -I think Yuru Camp is one of the best produced series... ever. They nail the voice acting, humor, animation detail, and music. All the pieces fit perfectly together. - -C-Station appears to be a fairly small and inexperienced studio - I am really impressed with the skill they've shown so far.";False;False;;;;1610640347;;False;{};gj8mibq;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8mibq/;1610713081;174;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;">That is one of the prettiest tea house I've ever seen! And, as expected, it's a real place !. - -Is Yuru Camp one of the most realistic animes out there? - -most of the places you see are actually in Japan and mostly accurate to what they're based on.";False;False;;;;1610640361;;False;{};gj8mjez;False;t3_kx7a0l;False;False;t1_gj8ejsg;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8mjez/;1610713100;23;True;False;anime;t5_2qh22;;0;[]; -[];;;baquea;;;[];;;;text;t2_j3k0u;False;True;[];;Well Iron-Blooded Orphans is sad in similar respects to those two, so I'd suggest giving that a try.;False;False;;;;1610640366;;False;{};gj8mjtb;False;t3_kx71cj;False;True;t3_kx71cj;/r/anime/comments/kx71cj/looking_for_an_anime_sadder_than_aot_and_akame_ga/gj8mjtb/;1610713108;1;True;False;anime;t5_2qh22;;0;[]; -[];;;100degreesCalcium;;;[];;;;text;t2_91fm9ha3;False;False;[];;I find it annoying and distracting. If there’s a lot it will usually make me lose interest in a show.;False;False;;;;1610640410;;False;{};gj8mn8m;False;t3_kx6y1v;False;True;t3_kx6y1v;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj8mn8m/;1610713166;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WhyNoClosure;;;[];;;;text;t2_449be22a;False;False;[];;Tenki No Ko is a good one. Just watched it yesterday. I think the english name is Weathering With You or something like that.;False;False;;;;1610640438;;False;{};gj8mpd9;False;t3_kx7tx5;False;True;t3_kx7tx5;/r/anime/comments/kx7tx5/so_i_just_watched_both_your_name_and_the_devil_is/gj8mpd9/;1610713204;2;True;False;anime;t5_2qh22;;0;[]; -[];;;iAmMutun;;;[];;;;text;t2_afim7;False;False;[];;Thanks for the map! More spots to visit on my next pilgrimage, whenever all these restrictions are over, that is.;False;False;;;;1610640505;;False;{};gj8mume;False;t3_kx7a0l;False;True;t1_gj8hl3b;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8mume/;1610713307;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;So this is about 1 week after the Christmas camp... it feels like even so, a lot is still happening in the story...;False;False;;;;1610640585;;False;{};gj8n0wh;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8n0wh/;1610713425;15;True;False;anime;t5_2qh22;;0;[]; -[];;;CosmicPenguin_OV103;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cosmic_Penguin;light;text;t2_1ufwqhs7;False;True;[];;[Full list of places featured in this episode](https://myanimelist.net/forum/?topicid=1889003#msg61690230);False;False;;;;1610640601;;False;{};gj8n26t;False;t3_kx7a0l;False;False;t1_gj8mume;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8n26t/;1610713449;9;True;False;anime;t5_2qh22;;0;[]; -[];;;gazny78;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_zlqd3;False;False;[];;Not really...It's about par course for many SOL and sport animes. For example, locations in [Yama no Susume](http://imgur.com/gallery/PMTo64Y) and [Flying Witch](http://imgur.com/gallery/U6u5f4g) are very real and as accurate as in Yuru Camp!;False;False;;;;1610640752;;1610641492.0;{};gj8ne4q;False;t3_kx7a0l;False;False;t1_gj8mjez;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8ne4q/;1610713660;27;True;False;anime;t5_2qh22;;0;[]; -[];;;gst4158;;;[];;;;text;t2_bcltr;False;False;[];;"> Pinecone-chan still makes me snort every single time! - -Pinecone-chan is absolutely one of my favorite 'characters' in the series. I love the inanimate objects talking.";False;False;;;;1610640868;;False;{};gj8nn6o;False;t3_kx7a0l;False;False;t1_gj8ejsg;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8nn6o/;1610713836;41;True;False;anime;t5_2qh22;;0;[]; -[];;;Plugin33;;;[];;;;text;t2_p81szkq;False;False;[];;"Hajimete no Gal - -Okusama ga Seitokaichou! - -Shomin Sample - -Boku no Kanojo ga Majimesugiru Sho-bitch na Ken - -Tenjou Tenge - -Negima! - -Senran Kagura - -Nagasarete Airantou - -Koe de Oshigoto! The Animation";False;False;;;;1610640880;;False;{};gj8no38;False;t3_kx73ey;False;True;t3_kx73ey;/r/anime/comments/kx73ey/prison_school_alike_anime/gj8no38/;1610713852;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Harrason;;;[];;;;text;t2_e8nh0;False;False;[];;"Even though this anime has been a lot more about respecting boundaries, it's very clear that the intention to make Rin so much more expressive here compared to Season 1 is very intentional, and speaks a lot of what you can do with subtle character development. - -Love it.";False;False;;;;1610640935;;False;{};gj8nscy;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8nscy/;1610713929;166;True;False;anime;t5_2qh22;;0;[]; -[];;;IKnowTheWayToo;;;[];;;;text;t2_2jlft1a8;False;False;[];;Ena had the best first new year's sunrise cause nothing beats waking up late on new year's day.;False;False;;;;1610641012;;False;{};gj8nyio;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8nyio/;1610714039;132;True;False;anime;t5_2qh22;;0;[]; -[];;;gazny78;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_zlqd3;False;False;[];;">...brought my family to see something like that Mt. Fuji diamond sunrise several years ago, though it was 4:30 am or so in July... - -Ugh... Summer in Japan is such a pain! Sunrise in some parts can be as early as 3:30am, and temperatures hitting 40+°C! I've had to put up blackout curtains in my house every summer to avoid the sun hitting my room and waking me up at an ungodly hour! - -Japan is one country that might actually benefit having daylight savings time during summer months!";False;False;;;;1610641106;;1610641308.0;{};gj8o5t3;False;t3_kx7a0l;False;False;t1_gj8hl3b;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8o5t3/;1610714171;19;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;Esp when she's panting.;False;False;;;;1610641142;;False;{};gj8o8n8;False;t3_kx7a0l;False;False;t1_gj8i481;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8o8n8/;1610714224;73;True;False;anime;t5_2qh22;;0;[]; -[];;;Sulfrurz;;;[];;;;text;t2_9dty9445;False;False;[];;I think Naruto does the best job at it. It comes along every 45-50 episodes then it’s gone. Anything more is just annoying.;False;False;;;;1610641175;;False;{};gj8ob7g;False;t3_kx6y1v;False;True;t3_kx6y1v;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj8ob7g/;1610714270;1;True;False;anime;t5_2qh22;;0;[]; -[];;;albrioz;;;[];;;;text;t2_4crhwhhq;False;False;[];;Grand Blue matches the same type of comedy as Prison School;False;False;;;;1610641222;;False;{};gj8oeyw;False;t3_kx73ey;False;True;t3_kx73ey;/r/anime/comments/kx73ey/prison_school_alike_anime/gj8oeyw/;1610714336;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aryu_redikiz;;;[];;;;text;t2_99qm5c27;False;False;[];;"Introductory anime with 40+ episode count: - -80s - -* Saint Seiya (Classic Shounen) -* Hokuto no Ken (Martial Arts) -* Touch (Adachi Mitsuru Manga, Baseball Romance/Comedy/Drama) -* Maison Ikkoku (Takahashi Rumiko manga, RomCom) -* Dragon Ball + sequels (IIRC Original + Z is only around 400 ish episodes) - -Could probably watch some Gundam (0079-Z-ZZ-CCA, One Year War OVAs, 0083 , or AUs such as G/X/W/∀/SEED/00) if you are in to that. - -90s - -* Rurouni Kenshin (Samurai Manga) -* Cardcaptor Sakura (Magical Girl Series) -* Great Teacher Onizuka (Yakuza turned High School teacher) -* Magic Knight Rayearth (Magical Girl, and technically an isekai) -* Fushigi Yuugi (Fantasy shojo manga, technically isekai) -* Sailor Moon (Magical Girl) -* Yuu Yuu Hakusho (Probably my favorite shounen series) - -You might notice that some of these are labeled ""technically isekai"". However 90s isekai is a very different genre from 10s isekai (indeed, at the time, isekai wasn't so much a genre as a convient plot device, and a subcategory of fantasy). Afaik, the reincarnation trope isn't really a thing on syosetu until 2010-11. - -00s - -* Inuyasha (Also a Takahashi manga) -* Prince of Tennis (hyperexaggerated superhuman sports manga) -* Hikaru no Go (might as well be considered a sports manga) -* Shaman King (Supernatural Shounen) -* Cross Game (Also an Adachi manga, but less 'dated' than Touch) -* Soul Eater (Supernatural Shounen) -* Digimon Adventure (Technically '99, but the sequels aired in the 00s) -* Eureka Seven (Coming of age Mecha meets surfing) - -10s - -* Hunter x Hunter (same mangaka as Yuu Yuu Hakusho) -* Uchuu Kyoudai (Brothers go to space. Quite realistic and endearing) -* Sket Dance (High school shenanigans) -* Beelzebub (Naked baby demon high school shenanigans) - -Honorable mention to Gintama (Not so beginner friendly, has way too many references to Japanese and Otaku culture to count) - -I'm pretty sure (Dragon Ball aside) all of these shows have less than 200 episodes, so no 700+ episode behemoths here. For more recommendations, you can try [AniDB's](https://anidb.net/) best of [80](https://anidb.net/anime/?airdate.end=1990-01-01&airdate.start=1980-01-01&airing=2&do.search=1&h=1&orderby.rating=0.2&votes=1000)/[90](https://anidb.net/anime/?airdate.end=2000-01-01&airdate.start=1990-01-01&airing=2&do.search=1&h=1&orderby.rating=0.2&votes=1000)/[00](https://anidb.net/anime/?airdate.end=2010-01-01&airdate.start=2000-01-01&airing=2&do.search=1&h=1&orderby.rating=0.2&votes=1000)/[10](https://anidb.net/anime/?airdate.end=2020-01-01&airdate.start=2010-01-01&airing=2&do.search=1&h=1&orderby.rating=0.2&votes=500)s lists.";False;False;;;;1610641387;;False;{};gj8osah;False;t3_kx7976;False;True;t3_kx7976;/r/anime/comments/kx7976/i_watched_all_the_beginnergateway_animes_and_am/gj8osah/;1610714589;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;Why have to brave the cold, when you can just stay in bed for a little while longer?;False;False;;;;1610641398;;False;{};gj8ot5e;False;t3_kx7a0l;False;False;t1_gj8nyio;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8ot5e/;1610714603;52;True;False;anime;t5_2qh22;;0;[]; -[];;;dgam02;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/dgam02;light;text;t2_13gmsx;False;False;[];;Rin Sonic dashing everywhere was so funny;False;False;;;;1610641545;;False;{};gj8p4sg;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8p4sg/;1610714813;70;True;False;anime;t5_2qh22;;0;[]; -[];;;nsa_official2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Ginsan2802;light;text;t2_6f0bmz9o;False;False;[];;Its not really that known in japan, just has a small niche fan base.;False;True;;comment score below threshold;;1610641612;;False;{};gj8pa59;False;t3_kx7a0l;False;True;t1_gj8mibq;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8pa59/;1610714909;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;Also putting up the tent as quickly as possible too.;False;False;;;;1610641629;;False;{};gj8pbie;False;t3_kx7a0l;False;False;t1_gj8p4sg;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8pbie/;1610714932;28;True;False;anime;t5_2qh22;;0;[]; -[];;;gazny78;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_zlqd3;False;False;[];;Her inner monologues seriously betrays her default deadpan expression.;False;False;;;;1610641684;;False;{};gj8pfyt;False;t3_kx7a0l;False;False;t1_gj8nscy;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8pfyt/;1610715011;105;True;False;anime;t5_2qh22;;0;[]; -[];;;CosmicPenguin_OV103;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cosmic_Penguin;light;text;t2_1ufwqhs7;False;True;[];;">Does anyone have a sense for how well this series is doing in Japan? I really want C-Station to get recognition for their amazing work! - -[Just an hour or so ago when this episode aired it briefly reached Top Twitter trending worldwide.](https://twitter.com/hashtag/%E3%82%86%E3%82%8B%E3%82%AD%E3%83%A3%E3%83%B3?src=hashtag_click) No worries, this was an instant hit back at home and this season is going very strong there.";False;False;;;;1610641740;;False;{};gj8pki4;False;t3_kx7a0l;False;False;t1_gj8mibq;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8pki4/;1610715094;151;True;False;anime;t5_2qh22;;0;[]; -[];;;jslice4ever;;;[];;;;text;t2_2wvi51tm;False;False;[];;Konechiwa!;False;False;;;;1610641839;;False;{};gj8pskc;False;t3_kx7a0l;False;False;t1_gj8nn6o;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8pskc/;1610715235;20;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;[Rin talking about the lifespan of dogs reminded me of this](https://pics.onsizzle.com/the-pan-midwesterner-panmidwest-follow-buying-a-dogl-hi-yes-i-42151887.png);False;False;;;;1610641867;;False;{};gj8puqe;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8puqe/;1610715274;44;True;False;anime;t5_2qh22;;0;[]; -[];;;kicksFR;;;[];;;;text;t2_4jaom6ys;False;False;[];;Damn sensei got that drift;False;False;;;;1610641984;;False;{};gj8q42y;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8q42y/;1610715438;6;True;False;anime;t5_2qh22;;0;[]; -[];;;PowerlinxJetfire;;;[];;;;text;t2_c4osa;False;False;[];;"I think the reason it's more notable about Laid-Back Camp is that the locations are actually a main focus of the anime, not just the backdrop of a story. - -The show is all about vicariously experiencing the views, tastes, etc. of the locations.";False;False;;;;1610642027;;False;{};gj8q7kl;False;t3_kx7a0l;False;False;t1_gj8ne4q;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8q7kl/;1610715500;37;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;[Has there been anything more relatable?](https://i.imgur.com/mXZS2X9.jpg);False;False;;;;1610642149;;False;{};gj8qh8b;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8qh8b/;1610715704;131;True;False;anime;t5_2qh22;;0;[]; -[];;;stevethebandit;;;[];;;;text;t2_8zmld;False;False;[];;I get kind of moved seeing Nadeshiko working so hard to get that gas lamp;False;False;;;;1610642152;;False;{};gj8qhhz;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8qhhz/;1610715712;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Zemahem;;;[];;;;text;t2_2i7j9c90;False;False;[];;"That cafe sure looked cozy. I would love to visit there at a time with no other customers and have a slice of matcha cake myself. - -It was pretty sad when Rin found out about Shippeitaro III and started thinking about Chikuwa. It's never fun to think about how your pets will be gone long before you. - -I'm happy to see more of Akari in the series. Seems like she enjoys messing with Aki more than her own sister. Toba's back too, and man, if she can drive like that while sober, I'd like to see what she'd do in her Ms. Chuggs persona. Yuru Camp can now have a crossover with Initial D. - -I got kinda sad for Nadeshiko during the sunrise scenes since she seemed like she wanted to watch them too. It's a good thing her friends came in clutch with double the number of them. - -Big F for Rin's pig's feet curry, though. No one can resist the allure of pizza. I sure wonder how she's gonna kill time in those three days. It shouldn't be a problem for her, but she definitely wasn't planning for such a long stay. In any case, I really hope that we actually get to see her grandpa again in the next episode.";False;False;;;;1610642162;;False;{};gj8qibe;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8qibe/;1610715734;18;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;Rin is by far the best part of this show.;False;False;;;;1610642165;;False;{};gj8qijv;False;t3_kx7a0l;False;False;t1_gj8ibbz;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8qijv/;1610715738;89;True;False;anime;t5_2qh22;;0;[]; -[];;;ballfun;;;[];;;;text;t2_cvyhs;False;False;[];;[Pog Rin](https://i.imgur.com/4OIKWxv.png);False;False;;;;1610642218;;False;{};gj8qmvq;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8qmvq/;1610715828;79;True;False;anime;t5_2qh22;;0;[]; -[];;;o-temoto;#12679b;ann;[];d01f2890-bcaf-11e4-9b5c-22000b3d83a4;フレア願いします;light;text;t2_ubz22;False;False;[];;But Shippeitarou was [right there](https://i.imgur.com/bHUoX2g.jpg).;False;False;;;;1610642326;;False;{};gj8qvij;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8qvij/;1610715986;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Zemahem;;;[];;;;text;t2_2i7j9c90;False;False;[];;One thing this episode revealed is that Pinecone-chan actually likes getting used for campfires since it seemed shocked at the fact that the feather sticks could replace it.;False;False;;;;1610642340;;False;{};gj8qwoe;False;t3_kx7a0l;False;False;t1_gj8nn6o;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8qwoe/;1610716007;29;True;False;anime;t5_2qh22;;0;[]; -[];;;Papasimmons;;;[];;;;text;t2_5r9bq;False;False;[];;I can't believe the euro beats kicked in.;False;False;;;;1610642408;;False;{};gj8r2ar;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8r2ar/;1610716111;126;True;False;anime;t5_2qh22;;0;[]; -[];;;gazny78;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_zlqd3;False;False;[];;Good point. As fans has always alluded New York is as much a character as the ladies are in Sex and The City, the locations in Yamanashi and Shizuoka is just as important as the girls are!;False;False;;;;1610642452;;False;{};gj8r5vh;False;t3_kx7a0l;False;False;t1_gj8q7kl;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8r5vh/;1610716176;9;True;False;anime;t5_2qh22;;0;[]; -[];;;mr_sto0pid;;;[];;;dark;text;t2_13ckn3;False;True;[];;Anyone try calling Rin's mom's phone number? It showed up for a second or so.;False;False;;;;1610642542;;False;{};gj8rd11;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8rd11/;1610716306;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Zemahem;;;[];;;;text;t2_2i7j9c90;False;False;[];;Honestly, it doesn't feel right to watch Yuru Camp without the temperature being low. And that's because this show makes me feel so cozy and warm that somewhere cold is a requirement for watching.;False;False;;;;1610642547;;False;{};gj8rdf4;False;t3_kx7a0l;False;False;t1_gj8h5v8;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8rdf4/;1610716313;15;True;False;anime;t5_2qh22;;0;[]; -[];;;NittanyEagles55;;;[];;;;text;t2_kaj1s;False;False;[];;Power doggy;False;False;;;;1610642687;;False;{};gj8rotd;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8rotd/;1610716523;20;True;False;anime;t5_2qh22;;0;[]; -[];;;NittanyEagles55;;;[];;;;text;t2_kaj1s;False;False;[];;I wish America had dog shrines to visit;False;False;;;;1610642697;;False;{};gj8rpka;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8rpka/;1610716536;5;True;False;anime;t5_2qh22;;0;[]; -[];;;NittanyEagles55;;;[];;;;text;t2_kaj1s;False;False;[];;I feel like this and Kobayashi’s Dragon Maid have fantastic New Years episodes;False;False;;;;1610642722;;False;{};gj8rrq2;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8rrq2/;1610716574;5;True;False;anime;t5_2qh22;;0;[]; -[];;;RIP_Hopscotch;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RiPHopscotch/animelist;light;text;t2_qblus;False;False;[];;"I actually can't remember if I've seen an animated show capture how sunlight looks against mountains and on water as well as Yuru Camp does. I go camping quite a bit, with a lot of experience in mountain areas especially, and it's honestly hard to put into words how awesome waking up and seeing a sunrise over the mountains is. Yuru Camp manages to capture the feeling so well through visuals and music, it's just so damn gorgeous. - -Also I love that Chiaki got the sunrise time wrong. Seeing the drift sequence was chuckleworthy, but Chiaki's ""oops"" moment as the payoff made me outright laugh.";False;False;;;;1610642835;;False;{};gj8s0u8;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8s0u8/;1610716734;48;True;False;anime;t5_2qh22;;0;[]; -[];;;Roonagu;;;[];;;;text;t2_2g2fx8o4;False;False;[];;That was the fastest 30 kmph I have ever seen....;False;False;;;;1610642849;;False;{};gj8s1yg;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8s1yg/;1610716754;187;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;True;[];;"Rin's so excited about seeing the ocean like she's been living inside Wall Maria all her life. - -This show continues to make me feel empathetic towards pine cones. Poor things got replaced by feather sticks. - -Skin fangs seem to be a genetic characteristic. - -Minami going full Initial D on a winding road just to see the sunset was impressive.";False;False;;;;1610642898;;False;{};gj8s5w9;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8s5w9/;1610716823;13;True;False;anime;t5_2qh22;;0;[]; -[];;;zendragi;;;[];;;;text;t2_15nx28w6;False;False;[];;In some shows its ok others not. Context is really everything.;False;False;;;;1610642984;;False;{};gj8scwn;False;t3_kx6y1v;False;True;t3_kx6y1v;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj8scwn/;1610716974;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Prince-Dizzytoon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/princedizzytoon;light;text;t2_mu0df;False;False;[];;No more pinecones?;False;False;;;;1610643081;;False;{};gj8sl2z;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8sl2z/;1610717137;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;True;[];;While I do like the supporting cast, this show could probably pull off a dialogueless episode with Rin doing camping things and reading silently for 20 full minutes.;False;False;;;;1610643098;;False;{};gj8smhr;False;t3_kx7a0l;False;False;t1_gj8ibbz;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8smhr/;1610717169;182;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;True;[];;*angry Nadeshiko noises*;False;False;;;;1610643129;;False;{};gj8sp0d;False;t3_kx7a0l;False;False;t1_gj8qijv;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8sp0d/;1610717224;77;True;False;anime;t5_2qh22;;0;[]; -[];;;Tydram;;;[];;;;text;t2_178tmv5;False;False;[];;The first thing that went through my mind was the flying whale... and for one second my brain didn't work and was having some hope... Now I'm just disappointed on the real world and myself.;False;False;;;;1610643143;;False;{};gj8sq4c;False;t3_kx7a0l;False;False;t1_gj8ne4q;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8sq4c/;1610717246;5;True;False;anime;t5_2qh22;;0;[]; -[];;;gazny78;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_zlqd3;False;False;[];;"Almost every anime shop in Akihabara sells Yuru Camp merchandise. Real-life locations like Fumottoppara and Asagirikogen has exploded in popularity since it's first airing that it's almost impossible to get New Year's booking at the campsites. Fujikyu train company have posters of the show up in its trains. - -There are tonnes of camping YouTubers who make videos that pays homage to the series since 2018, with more to come. Equipments used by the girls have all but sold out at every outdoor shop in Tokyo, and scalpers make a killing online reselling these items especially Rin-chan's Mont-Bell Moonlight 2 tent. At this point, it has become really popular, even among casual anime watchers.";False;False;;;;1610643260;;False;{};gj8sztb;False;t3_kx7a0l;False;False;t1_gj8mibq;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8sztb/;1610717461;92;True;False;anime;t5_2qh22;;0;[]; -[];;;Libbits;;;[];;;;text;t2_8l0mu;False;False;[];;[( ´ °◞ ౪ ◟° ` )](https://imgur.com/fSUEbo4);False;False;;;;1610643331;;False;{};gj8t5r2;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8t5r2/;1610717579;45;True;False;anime;t5_2qh22;;0;[]; -[];;;XJDenton;;;[];;;;text;t2_8miqc;False;False;[];;"Smol Shimarin in episode one and excited Shimarin in the first 10 seconds of episode 2? - -The comfy gods are truly generous.";False;False;;;;1610643334;;False;{};gj8t627;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8t627/;1610717589;8;True;False;anime;t5_2qh22;;0;[]; -[];;;lethalmc;;;[];;;;text;t2_at3n1;False;False;[];;It's super niche but it's very merchandisable. I mean this is the anime that literally saved the camping industry in Japan when it came out so it gets a lot of support from various companies that don't typically partner with anime. Crunchyroll is also on the production committee for the show so it's going to get the recognition and support to be successful.;False;False;;;;1610643418;;False;{};gj8td5s;False;t3_kx7a0l;False;False;t1_gj8mibq;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8td5s/;1610717727;44;True;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;God this anime makes me so happy;False;False;;;;1610643581;;False;{};gj8tqtu;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8tqtu/;1610717997;14;True;False;anime;t5_2qh22;;0;[]; -[];;;thepeetmix;;;[];;;;text;t2_cwxxz;False;False;[];;Using that classic Top Gear Editing Trickery.;False;False;;;;1610643585;;False;{};gj8tr38;False;t3_kx7a0l;False;False;t1_gj8s1yg;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8tr38/;1610718002;33;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;True;[];;You can see the influence her friends had on her personality. She seems even more enthusiastic towards food this season.;False;False;;;;1610643625;;False;{};gj8tuio;False;t3_kx7a0l;False;False;t1_gj8nscy;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8tuio/;1610718069;104;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;True;[];;Now this would be a worthy replacement for the new PogChamp emote.;False;False;;;;1610643678;;False;{};gj8tyuf;False;t3_kx7a0l;False;False;t1_gj8qmvq;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8tyuf/;1610718148;30;True;False;anime;t5_2qh22;;0;[]; -[];;;allwrong_allright;;;[];;;;text;t2_6ocpmfrp;False;False;[];;"[Nadeshiko and snow.](https://cdn.discordapp.com/attachments/742311661070712853/799321565505781800/Screenshot_from_2021-01-14_10-58-09.png) - -[I too always give in to pizza.](https://cdn.discordapp.com/attachments/742311661070712853/799320383518015508/Screenshot_from_2021-01-14_10-43-30.png) - -Today's count is low, with Rin solo camping. ~~Ena~~ [Chikuwa did also say ""Rin-chan"" once](https://cdn.discordapp.com/attachments/742311661070712853/799320986939293716/Screenshot_from_2021-01-14_10-55-46.png) tho. - -**Rin-chan count, Season 2:** counting every time Nadeshiko says ""*Rin-chan*"" - -|**Episode**|**# of ""*****Rin-chan*****""s**| -|:-|:-| -|1|3| -|2|1| -|**Total**|4| - -**Overall Rin-chan count** - -|Season 1|85| -|:-|:-| -|Specials|13| -|Heya Camp|5| -|Season 2|4| -|**Total**|107| - -Did I miss any? Let me know.";False;False;;;;1610643693;;False;{};gj8u03h;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8u03h/;1610718170;41;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;True;[];;[DEJA VU INTENSIFIES];False;False;;;;1610643716;;False;{};gj8u1zj;False;t3_kx7a0l;False;False;t1_gj8r2ar;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8u1zj/;1610718205;46;True;False;anime;t5_2qh22;;0;[]; -[];;;NineSwords;;MAL;[];;myanimelist.net/animelist/NineSwords;dark;text;t2_408jm;False;False;[];;So I tried to go to the link Rin posted and intestinally enough umm2.com is a site for Japanese pics. Just not of the kind that I thought it would be (it's JAV, folks). I wonder if this was some inside joke of the studio or coincidence?;False;False;;;;1610643731;;False;{};gj8u374;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8u374/;1610718226;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;True;[];;"""We have been trying to reach you about your car's extended warranty.""";False;False;;;;1610643768;;False;{};gj8u6a3;False;t3_kx7a0l;False;False;t1_gj8rd11;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8u6a3/;1610718283;8;True;False;anime;t5_2qh22;;0;[]; -[];;;SparklessSoul;;;[];;;;text;t2_7akjl1jb;False;False;[];;The faces done by everyone especially Rin were adorable;False;False;;;;1610643777;;False;{};gj8u705;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8u705/;1610718297;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SYZekrom;;;[];;;;text;t2_i5y6z;False;False;[];;"[Woooow can't believe she came back](https://cdn.discordapp.com/attachments/621713361390010378/799316022418341948/unknown.png) - -[Oh my god why is this the most comfortable thing I've ever seen](https://cdn.discordapp.com/attachments/621713361390010378/799316511834898452/unknown.png) - -[omgggg](https://cdn.discordapp.com/attachments/621713361390010378/799317296324673557/unknown.png) - -[CALM DOWN YOU CAN'T JUST DO THAT TWICE IN A ROW](https://cdn.discordapp.com/attachments/621713361390010378/799317483772837908/unknown.png) - -[The best girls are here!!!](https://cdn.discordapp.com/attachments/621713361390010378/799318538178527252/unknown.png) - -[Give her your life savings or else](https://cdn.discordapp.com/attachments/621713361390010378/799318677413560350/unknown.png) - -[SHE'S SUCH A LITTLE SHIT I LOVE HER](https://cdn.discordapp.com/attachments/621713361390010378/799319272601944064/unknown.png) - -[Omg rin you baby ily](https://cdn.discordapp.com/attachments/621713361390010378/799319784923201626/unknown.png) - -[AH NO STOP WHY](https://cdn.discordapp.com/attachments/621713361390010378/799319833090588732/unknown.png) - -[She is adorable and precious I'm going to cry](https://cdn.discordapp.com/attachments/621713361390010378/799320259647504444/unknown.png) - -[EXCUSE ME WHAT](https://cdn.discordapp.com/attachments/621713361390010378/799320727630643230/unknown.png) - -THE NEEDLE WAS -OFF SCREEN AT THE START - -THEY WERE DRIVING AT LIKE 10KM/H????? - -AND NOW THEY'RE GOING LIKE 30???????? - -Ok well it looks like some twisty thin-ass mountain road so I guess that makes sense - -[omg what a photo it has everything ](https://cdn.discordapp.com/attachments/621713361390010378/799321407494291496/unknown.png) - -Pajamas, bedhead, doggo, beautiful morning, how -How does she just do that";False;False;;;;1610643805;;False;{};gj8u9ac;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8u9ac/;1610718337;60;True;False;anime;t5_2qh22;;0;[]; -[];;;Tydram;;;[];;;;text;t2_178tmv5;False;False;[];;"I loved how they show the car going incredibly fast, flying, drifting and everyone inside being crushed by the speed... but they were just going at 30km/h... - -I'm sure I'm not the only one humming Gas Gas Gas during that scene.";False;False;;;;1610643818;;False;{};gj8uab5;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8uab5/;1610718356;11;True;False;anime;t5_2qh22;;0;[]; -[];;;KittenBuns1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KittenBuns1;light;text;t2_5j04zssx;False;False;[];;Yuru Camp has inspired me to stay up to watch the first sunrise of the year in 2022.;False;False;;;;1610644006;;False;{};gj8upp3;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8upp3/;1610718640;6;True;False;anime;t5_2qh22;;0;[]; -[];;;flybypost;;;[];;;;text;t2_e4p0i;False;False;[];;*~~angry~~ sleeping Saitou noises* (she's not awake yet);False;False;;;;1610644038;;False;{};gj8uscv;False;t3_kx7a0l;False;False;t1_gj8sp0d;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8uscv/;1610718692;72;True;False;anime;t5_2qh22;;0;[]; -[];;;flybypost;;;[];;;;text;t2_e4p0i;False;False;[];;some pine cone commentary wouldn't hurt;False;False;;;;1610644083;;False;{};gj8uw0m;False;t3_kx7a0l;False;False;t1_gj8smhr;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8uw0m/;1610718764;127;True;False;anime;t5_2qh22;;0;[]; -[];;;rocky_iwata;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/banninghamma;light;text;t2_i9ys0;False;False;[];;"The anime team is really stepping up on scenery shots. It is adapting some fish eye camera scenery scenes that is featured in the manga as well. Very nice. - -Drunk Sensei was running in the 90's :D";False;False;;;;1610644146;;1610645755.0;{};gj8v13y;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8v13y/;1610718859;6;True;False;anime;t5_2qh22;;0;[]; -[];;;flybypost;;;[];;;;text;t2_e4p0i;False;False;[];;"> Toba-sensei channeling her inner racer -> with a K-class car! - -at 30km/h (about 19mph), really dangerous stuff there. - -> Chibi Inuko - -She's as mischievous as her sister.";False;False;;;;1610644176;;False;{};gj8v3kx;False;t3_kx7a0l;False;False;t1_gj8ejsg;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8v3kx/;1610718906;32;True;False;anime;t5_2qh22;;0;[]; -[];;;OldSnemple;;;[];;;;text;t2_194o7phc;False;False;[];;[Forget the car, we need to see this sunrise STAT!](https://i.imgur.com/UwYag2d.png);False;False;;;;1610644333;;False;{};gj8vgnp;False;t3_kx7a0l;False;False;t1_gj8uab5;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8vgnp/;1610719172;4;True;False;anime;t5_2qh22;;0;[]; -[];;;rocky_iwata;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/banninghamma;light;text;t2_i9ys0;False;False;[];;Probably Shippeitarou VI or V.;False;False;;;;1610644368;;False;{};gj8vjhs;False;t3_kx7a0l;False;False;t1_gj8qvij;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8vjhs/;1610719236;4;True;False;anime;t5_2qh22;;0;[]; -[];;;WhoiusBarrel;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/darubarrel/animelist;light;text;t2_pdj0b;False;False;[];;Can't wait for the upcoming spin off Yuru Bed △;False;False;;;;1610644434;;False;{};gj8voy7;False;t3_kx7a0l;False;False;t1_gj8ot5e;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8voy7/;1610719348;45;True;False;anime;t5_2qh22;;0;[]; -[];;;flybypost;;;[];;;;text;t2_e4p0i;False;False;[];;That sounds was something else. I don't even know what they were going for but it was superb.;False;False;;;;1610644463;;False;{};gj8vrdq;False;t3_kx7a0l;False;False;t1_gj8t5r2;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8vrdq/;1610719397;26;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;Nadeshiko really makes the food look THAT good!;False;False;;;;1610644567;;False;{};gj8vzx6;False;t3_kx7a0l;False;False;t1_gj8tuio;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8vzx6/;1610719567;64;True;False;anime;t5_2qh22;;0;[]; -[];;;Ponchorello7;;MAL;[];;http://myanimelist.net/animelist/Ponchorello7;dark;text;t2_d2rmf;False;False;[];;Wasn't expecting some Initial D in my comfy camping anime.;False;False;;;;1610644568;;False;{};gj8vzxb;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8vzxb/;1610719567;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Mpwnd;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Mpwnd?status=2;light;text;t2_23sj0rg;False;False;[];;If only you knew the state of twitter when this episode came out. People were one step away from doxxing each other lmfao.;False;False;;;;1610644593;;False;{};gj8w23g;False;t3_kx7qln;False;True;t3_kx7qln;/r/anime/comments/kx7qln/attack_on_titan_episode_64/gj8w23g/;1610719607;3;True;False;anime;t5_2qh22;;0;[]; -[];;;rocky_iwata;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/banninghamma;light;text;t2_i9ys0;False;False;[];;Bless Google Map/Earth so that we can virtually be at the same places as the girls.;False;False;;;;1610644625;;False;{};gj8w4v2;False;t3_kx7a0l;False;False;t1_gj8hl3b;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8w4v2/;1610719663;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PPGN_DM_Exia;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PPGN_DM_Exia;light;text;t2_rzaut;False;False;[];;Me after FFXV;False;False;;;;1610644764;;False;{};gj8wgjo;False;t3_kx7vyz;False;False;t1_gj8lr4j;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8wgjo/;1610719898;6;True;False;anime;t5_2qh22;;0;[]; -[];;;GoldenDude;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GoldenBoy808;light;text;t2_ay8d1;False;False;[];;Am I crazy or did I hear them using the sound effect for gold experience?;False;False;;;;1610644765;;False;{};gj8wgml;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8wgml/;1610719900;2;True;False;anime;t5_2qh22;;0;[]; -[];;;flybypost;;;[];;;;text;t2_e4p0i;False;False;[];;"> Oh my god why is this the most comfortable thing I've ever seen - -With the itinerary setup I though she'd was doomed fall asleep in the cafe. - -> SHE'S SUCH A LITTLE SHIT I LOVE HER - -Akari is adorable. She's also in the OP so I hope we get more of her. I really want to see her interact with Nadeshiko and Rin too (the little bit in season one doesn't count).";False;False;;;;1610644811;;False;{};gj8wkfc;False;t3_kx7a0l;False;False;t1_gj8u9ac;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8wkfc/;1610719977;17;True;False;anime;t5_2qh22;;0;[]; -[];;;digbicks845;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;god ussop;dark;text;t2_12n6ju;False;False;[];;Man I forgot how much I love this show;False;False;;;;1610644818;;False;{};gj8wl1z;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8wl1z/;1610719990;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;*slurping Nadeshiko noises\**;False;False;;;;1610644868;;False;{};gj8wp4j;False;t3_kx7a0l;False;False;t1_gj8sp0d;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8wp4j/;1610720091;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Papasimmons;;;[];;;;text;t2_5r9bq;False;False;[];;Laid Back Camp X Initial D when?;False;False;;;;1610644894;;False;{};gj8wr7q;False;t3_kx7a0l;False;False;t1_gj8u1zj;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8wr7q/;1610720137;24;True;False;anime;t5_2qh22;;0;[]; -[];;;RekSause;;;[];;;;text;t2_2t2m84pb;False;False;[];;Thanks;False;False;;;;1610644925;;False;{};gj8wtsm;False;t3_kx7vyz;False;True;t1_gj8iprw;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8wtsm/;1610720191;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NoDespair;;;[];;;;text;t2_11h1e0;False;False;[];;Really hope we get season 3;False;False;;;;1610645012;;False;{};gj8x112;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8x112/;1610720337;4;True;False;anime;t5_2qh22;;0;[]; -[];;;13steinj;;MAL;[];;;dark;text;t2_i487l;False;True;[];;I mean I couldn't care less about AoT. It's hype died for me with the second season. I might pick it up again, but it's not that amazing of a story. Great visuals though.;False;True;;comment score below threshold;;1610645022;;False;{};gj8x1w1;False;t3_kx7vyz;False;False;t1_gj8vkc6;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8x1w1/;1610720354;-26;True;False;anime;t5_2qh22;;0;[]; -[];;;MaksimShadow;;;[];;;;text;t2_h92eaka;False;False;[];;I guess Tsukasa also isn't prepared for all those scientific shit. Round one: stone weapons against radio and instant ramen. Round two: bronze weapons against tanks, rockets and aviation. Round three: iron weapons against low orbit ion cannon.;False;False;;;;1610645124;;False;{};gj8xa6u;False;t3_kx7vyz;False;False;t1_gj8of7b;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8xa6u/;1610720509;38;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;Why is she doing greeting card deliveries, she could become a celebrity off food commercials alone;False;False;;;;1610645133;;False;{};gj8xaxi;False;t3_kx7a0l;False;False;t1_gj8vzx6;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8xaxi/;1610720522;26;True;False;anime;t5_2qh22;;0;[]; -[];;;AkodoRyu;;MAL;[];;http://myanimelist.net/animelist/AkodoRyu;dark;text;t2_6vq07;False;False;[];;"We all know [this](https://youtu.be/dv13gl0a-FA?t=63) supposed to be the BGM for sensei's driving. - -Levels of chill this season are over 9000. They even walk slow. I don't think I've walked at that kind of relaxing pace in 15 years. - -Also, now I really want to get up early tomorrow to see the sunrise...";False;False;;;;1610645230;;1610645478.0;{};gj8xiu9;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8xiu9/;1610720670;5;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;"Earlier this year, since foreign travel was impossible, I (and sometimes my wife) decided to re-visit places we've been in Japan (and places we still want to visit) via anime. It is really fun to see things in shows that we've seen in real life. We've recognized a lot of Kanagawa prefecture locations (especially Kamkura, Enoshima and Chigasaki) and some in Takayama. And other places across Japan have rung some bells (like food booths in Fukuoka). Right now I'm watching Wake Up, Girls -- in order to re-visit Sendai. - - -Most of the locations in Yurucamp fall into the category of places we still want/need to visit.";False;False;;;;1610645299;;False;{};gj8xojf;False;t3_kx7a0l;False;False;t1_gj8mjez;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8xojf/;1610720774;3;True;False;anime;t5_2qh22;;0;[]; -[];;;unaviable;;;[];;;;text;t2_1o4qd3;False;True;[];;oh man this season is pure fire. Come on, this has to be a sign that 2021 will be better;False;False;;;;1610645401;;False;{};gj8xwvr;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8xwvr/;1610720928;1;True;False;anime;t5_2qh22;;0;[]; -[];;;redlaWw;;;[];;;;text;t2_9wwod;False;False;[];;Senku might be great at science, but his anthropology needs work. Anatomically modern humans are around 300,000 years old, not the millions that they claimed twice in the show.;False;False;;;;1610645415;;False;{};gj8xxys;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8xxys/;1610720948;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;"[Rin trying to hold it in and not shout ""UMI DA!""](https://i.imgur.com/wBtHiKk.png) was pretty adorable! - -[That second floor cafe on that tea shop look so comfy!](https://i.imgur.com/fFXLCls.png) Now I want matcha tiramisu! T_T - -[Looks like Rin was a few years too late for Shippeitarou](https://i.imgur.com/nQlt7r6.png) :( - -[That face that she made when she get her Shippeitarou charm](https://i.imgur.com/MB52bG4.png) was pure healing though. - -[Now that Rin has a new firestarter](https://i.imgur.com/BViCzGj.png), is this finally [goodbye to good ol' Pinecone-kun?](https://i.imgur.com/HMPKoNg.png) - -[Looks like no drinking for Sensei today](https://i.imgur.com/0M0uEmQ.png) since she'll be driving the kids to the shrine. - -[Akari shoving snow up Aki's back was just hilarious!](https://i.imgur.com/oFSQlHa.png) She's really just a mini version of Aoi. - -If there were no tourists and it was just the torii gates there [it would look more mysterious.](https://i.imgur.com/zQx8r6w.png) - -[Nadeshiko couldn't see the sunrise from her delivery route](https://i.imgur.com/pqksGIn.png) but at least she got to see two different views of it thanks to photos the girls sent to her. - -I am now adding [""Experience New Year's First Sunrise at Fukude Beach""](https://i.imgur.com/c6OoyFv.png) in my list of things to do in Japan in the future once everything is no longer shitty. - - -[Those are a lot of rice cakes.](https://i.imgur.com/1ApHqi2.png) Well looks like snacks won't be a problem anymore for this trip! - -[Silly Rin.](https://i.imgur.com/RhEI3up.png) No one can fight against pizza. [No one.](https://i.imgur.com/eH4NM1K.png) - - -I'll never get tired of the trope of a female teacher [being amazing at driving](https://i.imgur.com/hk4U6J5.png) in anime. What makes it more amazing is that Minami-sensei managed to do all of that [while keeping at a constant 30km/h! ](https://i.imgur.com/XpLSFCm.png) - - -I love how everyone is so busy this morning and then [we have Ena who just woke up xD](https://i.imgur.com/OrrgHV2.png)";False;False;;;;1610645430;;False;{};gj8xz8o;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8xz8o/;1610720972;41;True;False;anime;t5_2qh22;;0;[]; -[];;;yworker;;;[];;;;text;t2_12fuax;False;False;[];;"**Romance genre:** - -* Tsuki ga Kirei -* Spice & Wolf -* Toradora -* O Maidens of Your Savage Season -* Tsurezure Children -* Hi Score Girl -* re:Life -* Horimiya \[Currently airing\] -* The Garden of Words \[Movie; same director as Your Name\] -* Weathering with You \[Movie; same director as Your Name\] -* I Want to Eat Your Pancreas \[Movie\] -* A Silent Voice \[Movie\] - -&#x200B; - -Fantasy-Comedy-Isekai: - -* Danmachi -* Konosuba -* Princess Connect Re:Dive -* No Game No Life";False;False;;;;1610645437;;False;{};gj8xzrq;False;t3_kx7tx5;False;True;t3_kx7tx5;/r/anime/comments/kx7tx5/so_i_just_watched_both_your_name_and_the_devil_is/gj8xzrq/;1610720981;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kunte-kinte;;;[];;;;text;t2_16mq9z;False;False;[];;Say it with me .. E X H I L I R A T I N G;False;False;;;;1610645444;;False;{};gj8y0cm;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8y0cm/;1610720991;18;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;My wife and I would love to visit Japan in the summer for the festivals and other summer-time events -- but having been on Kyushu in late September we wonder if we could put up with full-scale summer weather there.;False;False;;;;1610645460;;False;{};gj8y1p6;False;t3_kx7a0l;False;False;t1_gj8o5t3;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8y1p6/;1610721016;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SerialExperimentAoba;;;[];;;;text;t2_7iykuss6;False;False;[];;Similar to K-On!, the manga actually can’t do the concept justice. (As strange as that is to say.);False;False;;;;1610645490;;False;{};gj8y41z;False;t3_kx7a0l;False;False;t1_gj8hnxp;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8y41z/;1610721061;5;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;"> *angry Nadeshiko noises* - -Is that when she calls Rin ""Shima-san""?";False;False;;;;1610645503;;False;{};gj8y55g;False;t3_kx7a0l;False;False;t1_gj8sp0d;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8y55g/;1610721081;19;True;False;anime;t5_2qh22;;0;[]; -[];;;jk3sd;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Jk3sd?;light;text;t2_6e7jktbe;False;False;[];;Still baffles me how he was counting for thousands of years, that’s some big brain right there😂😂;False;False;;;;1610645510;;False;{};gj8y5oz;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8y5oz/;1610721092;40;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;Re:Zero might win this week;False;True;;comment score below threshold;;1610645558;;False;{};gj8y9o1;False;t3_kx7vyz;False;True;t1_gj8vkc6;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8y9o1/;1610721168;-15;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;"Woah, there are 4 different anime shows in the top 50 worldwide trending tag as of 2 hours ago, that's pretty impressive - -* Yuru Camp on 1st -* Eva('s birthday) on 7th -* Dr.Stone on 15th -* Gundam W on 27th";False;False;;;;1610645563;;False;{};gj8ya45;False;t3_kx7a0l;False;False;t1_gj8pki4;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8ya45/;1610721176;65;True;False;anime;t5_2qh22;;0;[]; -[];;;Thengel09;;MAL a-amq;[];;http://myanimelist.net/profile/Thengel;dark;text;t2_9phlb;False;False;[];;a [this](https://i.imgur.com/PAdCMdo.jpg) point i had to pause to make a cup of tea;False;False;;;;1610645583;;False;{};gj8ybq2;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8ybq2/;1610721208;8;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;"Here's what I watched over and over while waiting for our 17-year-old English Setter to finally end his days. (Warning -- do not watch without a large supply of tissues at hand). - -[https://www.youtube.com/watch?v=22fSspZCA-c](https://www.youtube.com/watch?v=22fSspZCA-c) - - -(It's been well over 10 years since Freckles died, and this little movie still makes me cry),";False;False;;;;1610645658;;1610645843.0;{};gj8yhsy;False;t3_kx7a0l;False;False;t1_gj8puqe;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8yhsy/;1610721322;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Mara_Uzumaki;;;[];;;;text;t2_sx8vus0;False;False;[];;This is exhilarating!;False;False;;;;1610645667;;False;{};gj8yijd;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8yijd/;1610721336;1;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;Nah. Episode 6 has a fighting sequence and Re Zero still hasn't beat the karma totals of the dialogue heavy episodes earlier this season.;False;False;;;;1610645684;;False;{};gj8yjvs;False;t3_kx7vyz;False;False;t1_gj8y9o1;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8yjvs/;1610721363;15;True;False;anime;t5_2qh22;;0;[]; -[];;;sprint113;;;[];;;;text;t2_5ihfw;False;False;[];;"I noticed that seems to be a trope in anime, usually when doing an homage to Initial D. Show the car drifting around the corners, racing against someone, getting air, and then cutting to the speedometer and show they're driving the legal limit. - -Off the top of my head, Lucky Star and Shirobako invoked it.";False;False;;;;1610645733;;False;{};gj8ynz2;False;t3_kx7a0l;False;False;t1_gj8s1yg;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8ynz2/;1610721444;121;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"Hopefully in Dr. Stone there is no need for [waifu wars](https://i.imgur.com/9pPjjg5.jpg) since we already know who [the best girl is](https://i.imgur.com/mt1GMvk.jpg) - -[](#cantbehelped)";False;False;;;;1610645743;;False;{};gj8yoq5;False;t3_kx7vyz;False;False;t1_gj8pliv;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8yoq5/;1610721458;169;True;False;anime;t5_2qh22;;0;[]; -[];;;GenghisKarnage;;;[];;;;text;t2_izs9n;False;False;[];;Man it hurts inside when you realize why Byakuya doesn't have any voiceline. Great start to a season overall though! Hyped for the war;False;False;;;;1610645745;;False;{};gj8yowd;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8yowd/;1610721461;67;True;False;anime;t5_2qh22;;0;[]; -[];;;un6952db;;MAL;[];;https://myanimelist.net/animelist/asimovitsch;dark;text;t2_mh7vo;False;False;[];;"> it's not that amazing of a story - -do watch the rest of AoT, and I can only imagine how you will regret this sentence in a good way.";False;False;;;;1610645752;;False;{};gj8ypj4;False;t3_kx7vyz;False;False;t1_gj8x1w1;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8ypj4/;1610721474;32;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610645869;;1610646251.0;{};gj8yz2p;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8yz2p/;1610721669;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;Re:Zero's episode from yesterday is still climbing fast.;False;True;;comment score below threshold;;1610645898;;False;{};gj8z1hg;False;t3_kx7vyz;False;True;t1_gj8yjvs;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8z1hg/;1610721714;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;Begun, the stone war has;False;False;;;;1610645937;;False;{};gj8z4m0;False;t3_kx7vyz;False;False;t1_gj8os0n;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8z4m0/;1610721776;54;True;False;anime;t5_2qh22;;0;[]; -[];;;yachi100;;;[];;;;text;t2_3crjo0im;False;False;[];;I love how Yuru camp always makes me feel so good. We're so lucky we have this show this season.;False;False;;;;1610645985;;False;{};gj8z8la;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8z8la/;1610721856;5;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;It's been a day and it's at 11.4k. I see it realistically finishing around 12k, the same as the first episode. Even if it got some extra boost and made it to 13k, that will most definitely not be enough to beat AoT.;False;False;;;;1610646043;;False;{};gj8zd7r;False;t3_kx7vyz;False;False;t1_gj8z1hg;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8zd7r/;1610721946;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ArjunSudheer001;;;[];;;;text;t2_3b5wpo6e;False;False;[];;Hey where can i watch the directors cut of rezero?;False;False;;;;1610646106;;False;{};gj8zicp;False;t3_kx7vyz;False;True;t1_gj8ncqc;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8zicp/;1610722045;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mjrbks;;;[];;;;text;t2_11rslemr;False;False;[];;"So great this show is back. Time to wage war and learn science at the same time :D. Always love seeing what seemingly unrelated yet eventually super related inventions Senku keeps adding to the effort. - -Also here’s hoping for a Homura v Kohaku battle sometime this season.";False;False;;;;1610646140;;False;{};gj8zl6a;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8zl6a/;1610722103;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610646156;;False;{};gj8zmdx;False;t3_kx7vyz;False;True;t1_gj8xa6u;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8zmdx/;1610722130;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Garsnikk;;;[];;;;text;t2_23jwwe5u;False;False;[];;You mean PogCamp? :p;False;False;;;;1610646198;;False;{};gj8zpuu;False;t3_kx7a0l;False;False;t1_gj8tyuf;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8zpuu/;1610722198;55;True;False;anime;t5_2qh22;;0;[]; -[];;;chelseablue2004;;;[];;;;text;t2_6mqvr;False;False;[];;"So in preparation to watch this episode, I bought a 6-pack of Nissin Curry Ramen (5 for future episodes), made a cup of Tea and started streaming once I had the hot water in the curry noodles steeping for 3 mins.... ABSOLUTE RELAXATION!!!! - -I love Thursdays because of this show. I will try a different tea next week but its such a nice relaxing 30min lunch break before i have to get back to work :)";False;False;;;;1610646201;;False;{};gj8zq3e;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8zq3e/;1610722203;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610646242;;False;{};gj8ztgw;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8ztgw/;1610722269;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okbuddybutbruh;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_9ow7haip;False;False;[];;When will the dub arrive?;False;False;;;;1610646280;;False;{};gj8zwmi;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8zwmi/;1610722334;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zooasaurus;;;[];;;;text;t2_s96w0;False;False;[];;"[This week's Rin ❤](https://imgur.com/a/tnnF5ei) - -Comfy and atmospheric as usual. So atmospheric it makes me want to actually experience those - -Strangely enough I found the teashop to be the comfiest place of this episode - -And pls do not attempt sensei's wacky driving on a mountain road. Dangerous and it gave me PTSD. Driving on mountain road itself is bad enough - -And I too wonder how will Rin spend the next 2 days stuck there lul";False;False;;;;1610646308;;False;{};gj8zyxu;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj8zyxu/;1610722379;31;True;False;anime;t5_2qh22;;0;[]; -[];;;Redracerb18;;MAL;[];;https://myanimelist.net/profile/;dark;text;t2_15t6vi;False;False;[];;This is what happens when you read old norse and sami fock tales while intoxicated;False;False;;;;1610646314;;False;{};gj8zzdi;False;t3_kx7vyz;False;False;t1_gj8s6sh;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8zzdi/;1610722387;6;True;False;anime;t5_2qh22;;0;[]; -[];;;bananeeek;;MAL;[];;https://myanimelist.net/animelist/bananek;dark;text;t2_m3u6b;False;False;[];;"I loved this episode! I was a bit bummed when I saw it was titled ""solo camping"" but as expected we got all of the girls. And we got Mini Aoi! - -[](#feelingloved) - -I like how Mini Aoi is just as sly as Aoi. If she can already handle Aki, then Nadishiko is not her opponent anymore. - -And that ending is just too comfy. Next time I'll prepare not just tasty food but a blanket as well.";False;False;;;;1610646324;;False;{};gj9007t;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9007t/;1610722404;7;True;False;anime;t5_2qh22;;0;[]; -[];;;notthehulk03;;;[];;;;text;t2_1ptvlvbk;False;False;[];;Wait senku is driving a tank in the opening XD;False;False;;;;1610646325;;False;{};gj900an;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj900an/;1610722405;6;True;False;anime;t5_2qh22;;0;[]; -[];;;notthehulk03;;;[];;;;text;t2_1ptvlvbk;False;False;[];;un-petrafied...;False;False;;;;1610646375;;False;{};gj904fd;False;t3_kx7vyz;False;False;t1_gj8p3sk;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj904fd/;1610722491;31;True;False;anime;t5_2qh22;;0;[]; -[];;;Cool-E;;;[];;;;text;t2_13jon4;False;False;[];;Little detail but some of the photos in the OP changed, wonder if this will happen every week;False;False;;;;1610646399;;False;{};gj906fb;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj906fb/;1610722529;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Clemenx00;;;[];;;;text;t2_i99bz;False;False;[];;"Yeah it's actually fucked up imo lol - -I would feel bad if Tsukasa hadn't revived just thugs.";False;False;;;;1610646421;;False;{};gj9084u;False;t3_kx7vyz;False;False;t1_gj8wg7g;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9084u/;1610722566;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Matty314;;;[];;;;text;t2_wtwd0;False;False;[];;This season is so god damned stacked;False;False;;;;1610646437;;False;{};gj909j0;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj909j0/;1610722597;5;True;False;anime;t5_2qh22;;0;[]; -[];;;bananeeek;;MAL;[];;https://myanimelist.net/animelist/bananek;dark;text;t2_m3u6b;False;False;[];;So, as I said, they'll simply lie for a couple of days. Exaggeration, imo.;False;False;;;;1610646440;;False;{};gj909rx;False;t3_kx7vyz;False;True;t1_gj8wg7g;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj909rx/;1610722603;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hadouukken;;;[];;;;text;t2_3fopu84;False;False;[];;"Wait what there’s a season 2?!? Fuck yes omggg - - -I dropped the manga a long time ago cuz it got a hit too boring for my taste butt yessssssss letsss goo stone wars was a sick arc";False;False;;;;1610646512;;False;{};gj90fp0;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj90fp0/;1610722720;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SGTBookWorm;;MAL;[];;http://myanimelist.net/profile/JordanBookWorm;dark;text;t2_fb51j;False;False;[];;hol up;False;False;;;;1610646521;;False;{};gj90ghw;False;t3_kx7a0l;False;False;t1_gj8o8n8;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj90ghw/;1610722737;9;True;False;anime;t5_2qh22;;0;[]; -[];;;SGTBookWorm;;MAL;[];;http://myanimelist.net/profile/JordanBookWorm;dark;text;t2_fb51j;False;False;[];;"Rin is way too relatable... - -And cute. So cute. - -NOOO PINECONEEEE";False;False;;;;1610646605;;False;{};gj90ncz;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj90ncz/;1610722890;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"[Must acquire rice cake](https://i.imgur.com/e44iWiY.jpg) - -[](#atthewindow)";False;False;;;;1610646637;;False;{};gj90q0g;False;t3_kx7a0l;False;False;t1_gj8o8n8;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj90q0g/;1610722947;69;True;False;anime;t5_2qh22;;0;[]; -[];;;LeoFLT;;MAL;[];;http://myanimelist.net/animelist/LeoFLT;dark;text;t2_ew6hl;False;False;[];;This episode was just... Perfect. Every little detail from music to ambience was executed so well that I couldn't get this grin off my face, I really love this anime.;False;False;;;;1610646677;;False;{};gj90tel;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj90tel/;1610723021;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiro_Kai;;;[];;;;text;t2_bevm2wi;False;False;[];;"Show still cool as a stone being exploded in the winter. - -Another good comeback.";False;False;;;;1610646689;;False;{};gj90udp;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj90udp/;1610723040;1;True;False;anime;t5_2qh22;;0;[]; -[];;;citatel;;MAL;[];;https://myanimelist.net/animelist/citatel;dark;text;t2_qtrfe;False;False;[];;"Is it just me or are they using a few Jojo stand sounds in this season? - -&#x200B; - -like times when things change physically they use Golden Experience's object to living thing changing sound.";False;False;;;;1610646693;;False;{};gj90urr;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj90urr/;1610723048;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chelseablue2004;;;[];;;;text;t2_6mqvr;False;False;[];;Well now since she is stuck there for 2 more days, she can have the curry when she is super hungry like she wanted so unexpected win-win!;False;False;;;;1610646723;;False;{};gj90x9a;False;t3_kx7a0l;False;False;t1_gj8qh8b;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj90x9a/;1610723098;51;True;False;anime;t5_2qh22;;0;[]; -[];;;harshit1705;;;[];;;;text;t2_35o1c08d;False;False;[];;Dude exactly same, I have watched like 25-30 episodes of death note and I feel the same. I had put FMA:b on hold for sooo long but finally watched it 15 days ago. In my opinion Death note was awesome in the start. FMA:b was good but it wasn't 'addictive' to watch.;False;False;;;;1610646749;;False;{};gj90zd7;False;t3_kx7vyz;False;False;t1_gj8ow53;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj90zd7/;1610723140;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SIRTreehugger;;MAL;[];;http://myanimelist.net/animelist/SIRTreehugger;dark;text;t2_fvp12;False;False;[];;Man I still remember picking a picture of a cup of noodles for the last photo and laughing my ass off when it was brought up at the end.;False;False;;;;1610646783;;False;{};gj9127b;False;t3_kx7vyz;False;False;t1_gj8wgjo;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9127b/;1610723200;10;True;False;anime;t5_2qh22;;0;[]; -[];;;UDani11;;;[];;;;text;t2_3urk0qno;False;False;[];;Honestly, second season was just kinda boring. It does get better. That's like the low point of the series.;False;True;;comment score below threshold;;1610646799;;False;{};gj913ky;False;t3_kx7vyz;False;True;t1_gj8x1w1;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj913ky/;1610723227;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;UDani11;;;[];;;;text;t2_3urk0qno;False;False;[];;I'm pretty sure it will be science focused. They would not to a full on war arc with no inventions happening. Just look at what they did already in ep. And than if you see the op you know that big ass tank is coming.;False;False;;;;1610646924;;False;{};gj91dpo;False;t3_kx7vyz;False;False;t1_gj8op8k;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj91dpo/;1610723425;14;True;False;anime;t5_2qh22;;0;[]; -[];;;SgtExo;;;[];;;;text;t2_cnfzs;False;False;[];;Last season had a good set of shows, only sunday had nothing on its plate until they started AoT.;False;False;;;;1610646957;;False;{};gj91gh2;False;t3_kx7vyz;False;True;t1_gj8lsg4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj91gh2/;1610723484;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;"Could almost be an advert for Japan with the scenery and food involved. -Almost like they know about the Anime pilgrimages that fans of the show will go on.";False;False;;;;1610646983;;False;{};gj91ilb;False;t3_kx7a0l;False;False;t1_gj8q7kl;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj91ilb/;1610723526;15;True;False;anime;t5_2qh22;;0;[]; -[];;;GoopFoop;;;[];;;;text;t2_3lwinibd;False;False;[];;don’t forget the kangaroo :);False;False;;;;1610647062;;False;{};gj91oyh;False;t3_kx7vyz;False;True;t1_gj8sdd1;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj91oyh/;1610723654;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UDani11;;;[];;;;text;t2_3urk0qno;False;False;[];;I really hope it's coming back within a year just like this did after s1.;False;False;;;;1610647086;;False;{};gj91qze;False;t3_kx7vyz;False;False;t1_gj8tup8;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj91qze/;1610723694;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;Fan service out of place can be annoying, like in Girls und Panzer when the girls are washing the tanks, it was a bit unnecessary 😕. On the other hand if a show is an ecchi (from DxD to Strike Witches) then fan service is one of the main reasons we watch them in the first place, so any and every instance is most welcome. 😇;False;False;;;;1610647118;;False;{};gj91tm1;False;t3_kx6y1v;False;True;t3_kx6y1v;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj91tm1/;1610723740;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UDani11;;;[];;;;text;t2_3urk0qno;False;False;[];;Lol ye, when did he sleep?;False;False;;;;1610647134;;False;{};gj91uya;False;t3_kx7vyz;False;False;t1_gj8y5oz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj91uya/;1610723766;10;True;False;anime;t5_2qh22;;0;[]; -[];;;stormhunter2;;;[];;;;text;t2_2d0p5yp7;False;False;[];;Sometimes less is more.;False;False;;;;1610647135;;False;{};gj91v17;False;t3_kx7a0l;False;False;t1_gj8smhr;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj91v17/;1610723767;3;True;False;anime;t5_2qh22;;0;[]; -[];;;UDani11;;;[];;;;text;t2_3urk0qno;False;False;[];;**BOI IS THIS EXHILARATING**;False;False;;;;1610647170;;False;{};gj91xtj;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj91xtj/;1610723832;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Slifer13xx;;MAL;[];;http://myanimelist.net/animelist/Slifer13xx;dark;text;t2_irntz;False;False;[];;So cute;False;False;;;;1610647213;;False;{};gj921d1;False;t3_kx7a0l;False;False;t1_gj8i481;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj921d1/;1610723915;14;True;False;anime;t5_2qh22;;0;[]; -[];;;G1596872;;;[];;;;text;t2_qdv50;False;False;[];;I’m currently at 17. I don’t think think I’ve watched this many in one season. It’s wild;False;False;;;;1610647236;;False;{};gj923bf;False;t3_kx7vyz;False;True;t1_gj8kx3q;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj923bf/;1610723950;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Giaguaro80;;;[];;;;text;t2_1rp3im9;False;False;[];;"The cup ramen is anime original, I think it was done as a bit of filler but also to tie it to Byakuya's ramen in space (just as a wholesome bit, nothing important) but the other point they might've wanted to emphasize was how to **conserve stuff** for a long time like using a natural fridge (the igloo) - -I always have a hard time doing the spoilers correctly so I'm not gonna say it specifically but I guess you can connect the dots. Maybe - -EDIT: Oh, yeah, the sonic bombs are canon, they did use them to distract her, the cotton candy thing already happened but that was just being friendly - -Also, I don't remember where it was, but there was a promotional mini chapter I think? That already covered this segment";False;False;;;;1610647255;;1610647636.0;{};gj924r4;False;t3_kx7vyz;False;False;t1_gj8ttqj;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj924r4/;1610723977;22;True;False;anime;t5_2qh22;;0;[]; -[];;;MayureshMJ;;;[];;;;text;t2_1dq3tpba;False;False;[];;Can someone tell me how many episodes this is gonna be? I really really really hope its more than 12 lol.;False;False;;;;1610647263;;False;{};gj925g6;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj925g6/;1610723991;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Roboglenn;;;[];;;;text;t2_2tzu4yyq;False;False;[];;"Don't fight the urge to do the Umi thing Rin-chan, just let it out. Besides it's not like there's anybody around who'll see you. And I just love all the enthusiastic running she was doing this episode. - - -That's right, you cannot fight the Pizza. Resistance is futile. - - -Oh dear, I haven't seen this kind of terrifying driving since Lucky Star. Step on the gas!";False;False;;;;1610647268;;False;{};gj925up;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj925up/;1610723998;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;I do wonder how much the western countries do for Japan in terms of watching Anime... I wonder what series are bigger than they are in Japanese because it speaks louder outside...;False;False;;;;1610647382;;False;{};gj92exw;False;t3_kx7a0l;False;False;t1_gj8td5s;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj92exw/;1610724171;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Redmon425;;;[];;;;text;t2_15ro6h;False;False;[];;"LET'S GO! We are back baby! - -A good first episode, but sadly only 10 more to go now :( - -I hope they bring the pink haired girl over to their side, as she is cute lol. - -I assume that was the OP at the end of the episode. The visuals were BEAUTIFUL! The song was okay though. Need to hear it a few more times.";False;False;;;;1610647432;;False;{};gj92iz4;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj92iz4/;1610724249;1;True;False;anime;t5_2qh22;;0;[]; -[];;;z3onn;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://www.imdb.com/list/ls093600574/;dark;text;t2_10aeas;False;True;[];;Sorry, I just can't take Dr. Stone's waifus seriously with that art style...;False;False;;;;1610647437;;False;{};gj92jcv;False;t3_kx7vyz;False;False;t1_gj8yoq5;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj92jcv/;1610724257;102;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;I think it's a trope of a teacher or someone you respect being an either very terrible driver, or someone who basically is an extra in Initial D;False;False;;;;1610647479;;False;{};gj92mqz;False;t3_kx7a0l;False;False;t1_gj8ynz2;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj92mqz/;1610724326;53;True;False;anime;t5_2qh22;;0;[]; -[];;;Unstealthy-Ninja;;;[];;;;text;t2_fzpjr;False;False;[];;You should rewatch using the directors cut. Similar to AoT, it’s one of those shows where knowing all the details helps a lot.;False;False;;;;1610647516;;False;{};gj92prh;False;t3_kx7vyz;False;True;t1_gj8mf4o;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj92prh/;1610724384;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;11 only;False;False;;;;1610647554;;False;{};gj92sq2;False;t3_kx7vyz;False;False;t1_gj925g6;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj92sq2/;1610724443;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MayureshMJ;;;[];;;;text;t2_1dq3tpba;False;False;[];;GOD DAMMIT;False;False;;;;1610647584;;False;{};gj92v7d;False;t3_kx7vyz;False;True;t1_gj92sq2;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj92v7d/;1610724493;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;Early March maybe;False;False;;;;1610647606;;False;{};gj92wwe;False;t3_kx7vyz;False;True;t1_gj8zwmi;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj92wwe/;1610724524;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SorryImBadWithNames;;;[];;;;text;t2_4g6w808v;False;False;[];;No, but i tried the link of the photos she posted. Unfortunally, no luck. It would be a nice easter egg, but oh well...;False;False;;;;1610647631;;False;{};gj92yva;False;t3_kx7a0l;False;True;t1_gj8rd11;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj92yva/;1610724560;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;False;[];;It's just a neutral element of a show. It can be good, bad, appropriate, inappropriate, etc depending on all sorts of factors. It's a tool that can be incorporated into a story to varying effects depending on the show and execution, not some shameless taboo to avoid.;False;False;;;;1610647654;;False;{};gj930kj;False;t3_kx6y1v;False;True;t3_kx6y1v;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj930kj/;1610724593;1;True;False;anime;t5_2qh22;;0;[]; -[];;;69naruto;;;[];;;;text;t2_65r75as6;False;False;[];;crunchyroll;False;False;;;;1610647661;;False;{};gj9313j;False;t3_kx7vyz;False;True;t1_gj8zicp;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9313j/;1610724603;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;[Comfy Eats](https://i.imgur.com/INFdJ4V.jpg);False;False;;;;1610647664;;False;{};gj931e9;False;t3_kx7a0l;False;False;t1_gj8qh8b;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj931e9/;1610724608;39;True;False;anime;t5_2qh22;;0;[]; -[];;;Roboglenn;;;[];;;;text;t2_2tzu4yyq;False;False;[];;"> Not even Rin-chan can resist fresh pizza! - - -Resistance is futile. - - -> Toba-sensei channeling her inner racer with a K-class car! - - -Like Yui from Lucky Star.";False;False;;;;1610647670;;False;{};gj931vu;False;t3_kx7a0l;False;False;t1_gj8ejsg;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj931vu/;1610724617;11;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610647682;;False;{};gj932ve;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj932ve/;1610724636;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gatokar;;MAL;[];;https://myanimelist.net/profile/Gatokar;dark;text;t2_bf5jr;False;False;[];;"> at 30km/h (about 19mph), really dangerous stuff there. - -Can't wait to see Toba-sensei in the next Fast & Furious film";False;False;;;;1610647688;;False;{};gj933ec;False;t3_kx7a0l;False;False;t1_gj8v3kx;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj933ec/;1610724646;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Slifer13xx;;MAL;[];;http://myanimelist.net/animelist/Slifer13xx;dark;text;t2_irntz;False;False;[];;Laugh in Norwegian summer.;False;False;;;;1610647721;;False;{};gj935xq;False;t3_kx7a0l;False;False;t1_gj8o5t3;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj935xq/;1610724692;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"Pinecone-chan is the Speedwagon of Yuru Camp - -[](#poltears)";False;False;;;;1610647786;;False;{};gj93b75;False;t3_kx7a0l;False;False;t1_gj8uw0m;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj93b75/;1610724792;61;True;False;anime;t5_2qh22;;0;[]; -[];;;ExtensionSea5002;;;[];;;;text;t2_71pywsy3;False;False;[];;If you're in south asia, its streaming weekly on muse asia YT channel.;False;False;;;;1610647821;;False;{};gj93e27;False;t3_kx7vyz;False;True;t1_gj8zicp;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj93e27/;1610724847;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeta42;;;[];;;;text;t2_bjdm4;False;False;[];;Gen already has Majima vibes;False;False;;;;1610647852;;False;{};gj93ghh;False;t3_kx7vyz;False;False;t1_gj8vuxb;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj93ghh/;1610724891;39;True;False;anime;t5_2qh22;;0;[]; -[];;;Slifer13xx;;MAL;[];;http://myanimelist.net/animelist/Slifer13xx;dark;text;t2_irntz;False;False;[];;For real man. She really killed me this episode.;False;False;;;;1610647953;;False;{};gj93oj9;False;t3_kx7a0l;False;False;t1_gj8vrdq;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj93oj9/;1610725046;12;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;"> Fast & Furious film - -It's Yuru Camp, so I'd expect Slow & Delicious instead.";False;False;;;;1610648057;;False;{};gj93wqb;False;t3_kx7a0l;False;False;t1_gj933ec;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj93wqb/;1610725210;15;True;False;anime;t5_2qh22;;0;[]; -[];;;ExtensionSea5002;;;[];;;;text;t2_71pywsy3;False;False;[];;It was better than 1st though.;False;False;;;;1610648068;;False;{};gj93xm0;False;t3_kx7vyz;False;False;t1_gj913ky;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj93xm0/;1610725227;4;True;False;anime;t5_2qh22;;0;[]; -[];;;PowerlinxJetfire;;;[];;;;text;t2_c4osa;False;False;[];;"https://www.animenewsnetwork.com/interest/2019-02-27/yamanashi-prefecture-sees-spike-in-tourism-earnings-thanks-to-laid-back-camp/.143979 - -Not just almost lol";False;False;;;;1610648075;;False;{};gj93y8b;False;t3_kx7a0l;False;False;t1_gj91ilb;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj93y8b/;1610725239;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Ratailion;;;[];;;;text;t2_7vmjctgh;False;False;[];;I'm only watching 3-4 this season. What do you recommend?;False;False;;;;1610648082;;False;{};gj93yrn;False;t3_kx7vyz;False;True;t1_gj8kx3q;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj93yrn/;1610725249;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Demolution-Gamer786;;;[];;;;text;t2_2y4pbcre;False;False;[];;"Yu yu hakusho - -Code geass";False;False;;;;1610648133;;False;{};gj942ww;False;t3_kx7976;False;True;t3_kx7976;/r/anime/comments/kx7976/i_watched_all_the_beginnergateway_animes_and_am/gj942ww/;1610725330;1;True;False;anime;t5_2qh22;;0;[]; -[];;;flybypost;;;[];;;;text;t2_e4p0i;False;False;[];;"> Slow & Delicious - -Comfy & Delicious";False;False;;;;1610648141;;False;{};gj943it;False;t3_kx7a0l;False;False;t1_gj93wqb;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj943it/;1610725340;8;True;False;anime;t5_2qh22;;0;[]; -[];;;dancelordzuko;;;[];;;;text;t2_zfc18;False;False;[];;"One of my favorite parts about Yuru Camp is the cozy cafes and stores Rin visits on her trips. I find myself wishing I could go to Japan and actually go to some of these! That matcha tiramisu looked divine. - -Poor Rin has to miss out on spending New Years with her family. Looks like that curry ramen cup will come in handy. But hey, I can’t say no to seeing more solo camp adventures.";False;False;;;;1610648150;;False;{};gj9448v;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9448v/;1610725354;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Slifer13xx;;MAL;[];;http://myanimelist.net/animelist/Slifer13xx;dark;text;t2_irntz;False;False;[];;Waking up to see new year sunrise is such an alien concept to me. We're too shitface drunk every new year.;False;False;;;;1610648169;;False;{};gj945sz;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj945sz/;1610725384;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lucacp_ysoz;;MAL;[];;http://myanimelist.net/profile/SoZLuka;dark;text;t2_gch7f;False;False;[];;According to my Tsuiseki, I'm currently watching 25 shows. And unbelievably so, Thursday is the most packed of the week with 6 shows, usually it's either Friday or Saturday.;False;False;;;;1610648200;;False;{};gj948b4;False;t3_kx7vyz;False;True;t1_gj8jybx;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj948b4/;1610725433;2;True;False;anime;t5_2qh22;;0;[]; -[];;;axl625;;;[];;;;text;t2_tskg1;False;False;[];;Thank you!😄;False;False;;;;1610648242;;False;{};gj94bpg;False;t3_kx7vyz;False;True;t1_gj8tf6k;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj94bpg/;1610725498;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ArjunSudheer001;;;[];;;;text;t2_3b5wpo6e;False;False;[];;Thanks a lot my man. Cheers;False;False;;;;1610648259;;False;{};gj94d3f;False;t3_kx7vyz;False;True;t1_gj93e27;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj94d3f/;1610725524;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;The sound the VA makes whenever she runs is hilarious.;False;False;;;;1610648288;;False;{};gj94fe2;False;t3_kx7a0l;False;False;t1_gj8p4sg;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj94fe2/;1610725570;26;True;False;anime;t5_2qh22;;0;[]; -[];;;DammitWindows98;;;[];;;;text;t2_hevjv;False;False;[];;"Do they have a commercial deal? Cause this really felt like a commercial for Cup Noodles. A good commercial, but I was just constantly thinking ""they want me to buy Dr. Stone brand noodles, don't they"".";False;False;;;;1610648353;;False;{};gj94klu;False;t3_kx7vyz;False;False;t1_gj8lr4j;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj94klu/;1610725672;8;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;The *real* Shippeitarou is adventuring across the country fighting evil alongside old man Nadeshiko.;False;False;;;;1610648430;;False;{};gj94qpm;False;t3_kx7a0l;False;False;t1_gj8qvij;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj94qpm/;1610725793;6;True;False;anime;t5_2qh22;;0;[]; -[];;;sako_isazada;;;[];;;;text;t2_4bnutmlh;False;False;[];;Chrome: I need to go now;False;False;;;;1610648446;;False;{};gj94rzq;False;t3_kx7vyz;False;False;t1_gj8p654;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj94rzq/;1610725819;77;True;False;anime;t5_2qh22;;0;[]; -[];;;_GoJo_Senpai_;;;[];;;;text;t2_9ru29hqe;False;False;[];;it was a good episode, so much hype;False;False;;;;1610648486;;False;{};gj94v8k;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj94v8k/;1610725881;1;True;False;anime;t5_2qh22;;0;[]; -[];;;the22sinatra;;;[];;;;text;t2_1plc2ja9;False;False;[];;You gotta watch all of FMA:B, there’s a reason it’s regarded as maybe the best anime ever and the top rated anime on MAL;False;False;;;;1610648517;;False;{};gj94xpc;False;t3_kx7vyz;False;True;t1_gj8ow53;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj94xpc/;1610725934;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_GoJo_Senpai_;;;[];;;;text;t2_9ru29hqe;False;False;[];;yeah i did, im just really exited to see taigu and yuzuriha again;False;False;;;;1610648528;;False;{};gj94yk4;False;t3_kx7vyz;False;True;t1_gj8lr4j;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj94yk4/;1610725951;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Royal_Heritage;;;[];;;;text;t2_8wglzuge;False;False;[];;"Wished Rin-chan would had got an upgrade bike or scooter by now. [Driving in the cold](https://imgur.com/Kgifb97) in a slow-ass scooter with no wind protection is no joke. This probably makes the sponsored Yamaha Tricity OVA a flashforward where Rin got her full licence to drive a bigger bike. - -Even though [chibi-Inuko](https://imgur.com/JRhJubk) is a total brat, makes the Aki, Aoi & sensei trip a lot more fun. I loved that sequence where both Inuyamas are chasing Aki and the [chibi one](https://imgur.com/y8zB71U) is carrying a big ass snowball on top of her head. - -These individual Rin travels are great, but I hope they do a group one soon, specially since it feels like Nadeshiko has been totally left out in these 2 episodes so far.";False;False;;;;1610648562;;False;{};gj9519x;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9519x/;1610726005;9;False;False;anime;t5_2qh22;;0;[]; -[];;;junebearblues;;;[];;;;text;t2_6x9bf5ia;False;False;[];;It just likes to feel included!;False;False;;;;1610648617;;False;{};gj955mq;False;t3_kx7a0l;False;False;t1_gj8qwoe;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj955mq/;1610726089;11;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;"I assumed it was in a block of numbers that are reserved for fiction, like how in America you'd use the ""555"" prefix for fake numbers.";False;False;;;;1610648619;;False;{};gj955qq;False;t3_kx7a0l;False;False;t1_gj8rd11;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj955qq/;1610726091;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lartkma;;;[];;;;text;t2_11w45u;False;False;[];;That OP at the end is more ominous that I expected;False;False;;;;1610648636;;False;{};gj95734;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj95734/;1610726119;1;True;False;anime;t5_2qh22;;0;[]; -[];;;the22sinatra;;;[];;;;text;t2_1plc2ja9;False;False;[];;If only they knew;False;False;;;;1610648657;;False;{};gj958qf;False;t3_kx7vyz;False;False;t1_gj8ypj4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj958qf/;1610726152;8;True;False;anime;t5_2qh22;;0;[]; -[];;;UDani11;;;[];;;;text;t2_3urk0qno;False;False;[];;I don't think so. I liked season 1 a lot more.;False;False;;;;1610648658;;False;{};gj958tj;False;t3_kx7vyz;False;True;t1_gj93xm0;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj958tj/;1610726155;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Batmanhasgame;;ANI;[];;http://anilist.co/animelist/8203/ImBatman;dark;text;t2_7s1kj;False;False;[];;I'm at a total of 43 for the season, but this isn't really anything new for me I pretty much watch everything every season and rarely drop. In fact this season might the first time I dropped something because the first episode was that bad.;False;False;;;;1610648660;;1610648855.0;{};gj958zq;False;t3_kx7vyz;False;True;t1_gj8kx3q;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj958zq/;1610726159;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610648793;;False;{};gj95jm8;False;t3_kx7a0l;False;True;t1_gj8v13y;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj95jm8/;1610726381;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;[Camppa](https://i.imgur.com/FY0nk5H.jpg);False;False;;;;1610648893;;False;{};gj95row;False;t3_kx7a0l;False;False;t1_gj8zpuu;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj95row/;1610726540;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"I already dropped Cells at Work: Black since Thursday has three seasonals for me starting from today. - -[](#hisocuck)";False;False;;;;1610648899;;False;{};gj95s4e;False;t3_kx7vyz;False;True;t1_gj8jybx;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj95s4e/;1610726550;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;The K-On! manga is a 4-koma though, and I really feel like the anime had to really stretch to make it more than just a series of punctuated gags. Yuru Camp as a manga uses more freeform panels, so I find it's much more of a straightforward adaptation than K-On!.;False;False;;;;1610648956;;False;{};gj95wrq;False;t3_kx7a0l;False;True;t1_gj8y41z;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj95wrq/;1610726642;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Existential_Owl;;;[];;;;text;t2_ff7ph;False;False;[];;"> Senku keeps moving forward. - -Because he was born in this world.";False;False;;;;1610649038;;False;{};gj963b4;False;t3_kx7vyz;False;False;t1_gj8n30e;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj963b4/;1610726770;152;True;False;anime;t5_2qh22;;0;[]; -[];;;HereticalAegis;;;[];;;;text;t2_6xeubalv;False;False;[];;"Mini-Aoi! Mini-Aoi! Mini-Aoi! - -Also Shimarin is such a child when she's by herself. But also, mini-Aoi giving new year's snowballs!!";False;False;;;;1610649041;;False;{};gj963k2;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj963k2/;1610726775;7;True;False;anime;t5_2qh22;;0;[]; -[];;;JSlickJ;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/LeMasta;light;text;t2_ne9k5;False;False;[];;I was eating a cup of noodles literally 30 minutes before watching this episode and I started craving some more;False;False;;;;1610649049;;False;{};gj9643p;False;t3_kx7vyz;False;True;t1_gj8lr4j;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9643p/;1610726786;2;True;False;anime;t5_2qh22;;0;[]; -[];;;zeppeIans;;;[];;;;text;t2_rreti;False;False;[];;Looks like thursday is food anime day;False;False;;;;1610649128;;False;{};gj96ahh;False;t3_kx7vyz;False;False;t1_gj8q006;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj96ahh/;1610726910;26;True;False;anime;t5_2qh22;;0;[]; -[];;;JSlickJ;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/LeMasta;light;text;t2_ne9k5;False;False;[];;"This is the sequel I was most excited for even out of AoT, ReZero and TPN, Beastars etc.. - -I still can't believe I was able to hold off on reading the manga to wait for the anime";False;False;;;;1610649162;;False;{};gj96d8d;False;t3_kx7vyz;False;False;t1_gj8kkjk;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj96d8d/;1610726967;35;True;False;anime;t5_2qh22;;0;[]; -[];;;dontloseyourway1610;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Marinate1016;light;text;t2_4wegnp53;False;False;[];;Is anyone else crunchyroll not working for the ep? Keeps saying an error code for me;False;False;;;;1610649169;;False;{};gj96dqr;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj96dqr/;1610726977;1;True;False;anime;t5_2qh22;;0;[]; -[];;;satoukazumadesu-;;;[];;;;text;t2_3ohrjpev;False;False;[];;"Man, Subaru can cook! - -Yeah Stone Wars is coming❤️";False;False;;;;1610649358;;False;{};gj96sw6;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj96sw6/;1610727267;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Devilo94;;;[];;;;text;t2_g0ijo;False;False;[];;Having some cup noodles while watching this new season, wait.. that is a Tank in the new opening!;False;False;;;;1610649369;;False;{};gj96tqb;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj96tqb/;1610727282;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sneaky_42;;;[];;;;text;t2_4spbyunp;False;False;[];;This season is gonna be.....exhilarating!;False;False;;;;1610649392;;False;{};gj96vkd;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj96vkd/;1610727316;1;True;False;anime;t5_2qh22;;0;[]; -[];;;whizmas;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/xjet465;light;text;t2_14gyc2;False;False;[];;The perfect 1-2 combo;False;False;;;;1610649420;;False;{};gj96xru;False;t3_kx7vyz;False;False;t1_gj8q006;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj96xru/;1610727358;4;True;False;anime;t5_2qh22;;0;[];True -[];;;tyYdraniu;;;[];;;;text;t2_12j48s;False;False;[];;god was absent of all this billions of years in cience;False;False;;;;1610649493;;False;{};gj973jk;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj973jk/;1610727473;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zerglinghunter;;;[];;;;text;t2_by2m8;False;False;[];;Let's get excited! Dr Stone is back immediately going super science! I love it. I forgot how great the characters look with their unique petrification. So excited! Let the stone wars begin!;False;False;;;;1610649512;;False;{};gj9751o;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9751o/;1610727500;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AlikeWolf;;;[];;;;text;t2_13pwz0;False;False;[];;Hype time is NOW. Also, did anyone else notice the Gold Experience noise when they were talking about the science behind freeze drying? It was the shot with space in the background.;False;False;;;;1610649515;;False;{};gj9758a;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9758a/;1610727504;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"Talking about impressive stuff, the [artworks](https://i.imgur.com/geUh7Dj.jpg) [for](https://i.imgur.com/br5H7jl.jpg) [the](https://i.imgur.com/p3ythNb.jpg) [environments](https://i.imgur.com/4ai7ux7.jpg) in this season managed to surpass the first one. They did an outstanding job. - -[](#wow)";False;False;;;;1610649516;;False;{};gj975cb;False;t3_kx7a0l;False;False;t1_gj8ya45;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj975cb/;1610727506;46;True;False;anime;t5_2qh22;;0;[]; -[];;;NathanTPS;;;[];;;;text;t2_tt2rz;False;False;[];;Good episode, great way to get back into the series;False;False;;;;1610649527;;False;{};gj9768l;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9768l/;1610727523;1;True;False;anime;t5_2qh22;;0;[];True -[];;;LeadingPlayer;;;[];;;;text;t2_c0osog1;False;False;[];;So happy this is back! I love the science so very much! I hope Taiju returns to the series soon though, he was my favorite part for the first season. I’m so definitely looking forward to this though! :D;False;False;;;;1610649568;;False;{};gj979f5;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj979f5/;1610727590;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bluepsycho65;;;[];;;;text;t2_3exex6qy;False;False;[];;Yeah I’m eating it right now;False;False;;;;1610649586;;False;{};gj97atz;False;t3_kx7vyz;False;True;t1_gj8lr4j;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj97atz/;1610727619;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bluepsycho65;;;[];;;;text;t2_3exex6qy;False;False;[];;This was fun;False;False;;;;1610649600;;False;{};gj97bya;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj97bya/;1610727641;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610649665;;False;{};gj97hbw;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj97hbw/;1610727742;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;True;[];;When it's one day into the new year and you've already ruined your New Year's Resolution diet.;False;False;;;;1610649714;;False;{};gj97l8x;False;t3_kx7a0l;False;False;t1_gj8qh8b;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj97l8x/;1610727821;32;True;False;anime;t5_2qh22;;0;[]; -[];;;paxhamama;;;[];;;;text;t2_5ijqspdu;False;False;[];;Uuu it's out? Yyyeeeess!;False;False;;;;1610649811;;False;{};gj97sye;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj97sye/;1610727965;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;So accurate it hurts.;False;False;;;;1610649827;;False;{};gj97u5x;False;t3_kx7a0l;False;False;t1_gj97l8x;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj97u5x/;1610727993;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Ninjaboi333;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Ninjaboi333;light;text;t2_9fyks;False;True;[];;"Ena is best girl - -fite me";False;False;;;;1610649891;;False;{};gj97z7u;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj97z7u/;1610728090;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MiraculousFIGS;;;[];;;;text;t2_ta1ep;False;False;[];;Dr stone, promised neverland, attack on titan, re:zero. All sequels though;False;False;;;;1610649928;;False;{};gj9825o;False;t3_kx7vyz;False;True;t1_gj93yrn;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9825o/;1610728146;1;True;False;anime;t5_2qh22;;0;[]; -[];;;applebyarrow;;;[];;;;text;t2_ehexg;False;False;[];;Thursday is best day this season. The OP looks great, and I’m glad to have the gang back!;False;False;;;;1610649937;;False;{};gj982wn;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj982wn/;1610728159;1;True;False;anime;t5_2qh22;;0;[]; -[];;;manaworkin;;;[];;;dark;text;t2_5f6j9;False;False;[];;They really are bleeding out everywhere aren't they?;False;False;;;;1610649961;;False;{};gj984t7;False;t3_kx7vyz;False;True;t1_gj8qhz7;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj984t7/;1610728196;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DemonDaemion;;;[];;;;text;t2_1muhec;False;False;[];;"So exited for whats to come - -I can't be the only one who noticed petrified Kamina in the ED - -[https://imgur.com/a/Yu0FQj8](https://imgur.com/a/Yu0FQj8) - -Theres probably other references in there that I didn't catch";False;False;;;;1610650083;;False;{};gj98eme;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj98eme/;1610728384;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atonomic69;;;[];;;;text;t2_2mljfnkt;False;False;[];;"Life, spring forth! Bring forth new life! Gold Experience -Anyone noticed the sfx?";False;False;;;;1610650144;;False;{};gj98jh0;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj98jh0/;1610728475;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atonomic69;;;[];;;;text;t2_2mljfnkt;False;False;[];;"Life, spring forth! Bring forth new life! Gold Experience -Anyone noticed the sfx?";False;False;;;;1610650156;;False;{};gj98kfp;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj98kfp/;1610728495;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610650254;;False;{};gj98scr;False;t3_kx7vyz;False;True;t1_gj8mlgo;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj98scr/;1610728650;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610650321;;False;{};gj98xr7;False;t3_kx7vyz;False;True;t1_gj98scr;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj98xr7/;1610728758;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Negirno;;;[];;;;text;t2_66hjr;False;False;[];;Yukariguruma flashbacks.;False;False;;;;1610650343;;False;{};gj98zk4;False;t3_kx7a0l;False;False;t1_gj92mqz;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj98zk4/;1610728793;9;True;False;anime;t5_2qh22;;0;[]; -[];;;NenBE4ST;;;[];;;;text;t2_57p0ycnd;False;False;[];;More science and less fighting = less kohaku lol;False;False;;;;1610650408;;False;{};gj994sl;False;t3_kx7vyz;False;False;t1_gj8op8k;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj994sl/;1610728898;8;True;False;anime;t5_2qh22;;0;[]; -[];;;kartikgsniderj;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_xiq8m64;False;False;[];;Love this show but my only problem I have with this it's that it has so many reaction shots, I like the shows/movies that that gives very little information and let the audience think and fill in the blanks. Everything else is expected from TMS Ent. Nice pasing, great voice acting, etc.;False;False;;;;1610650429;;False;{};gj996f8;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj996f8/;1610728931;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_nickums;;MAL;[];;http://myanimelist.net/profile/Snakpak;dark;text;t2_9gxz1;False;False;[];;Do you know off hand how many chapters they're doing per episode? This one seemed like quite a few but I honestly dont pay much attention to chapter numbers when i read.;False;False;;;;1610650488;;False;{};gj99b34;False;t3_kx7vyz;False;True;t1_gj8rf9f;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj99b34/;1610729025;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MaxtheBat;;MAL;[];;http://myanimelist.net/profile/IonUmbrella;dark;text;t2_fdhln;False;False;[];;10 billion percent inbred;False;False;;;;1610650492;;False;{};gj99ber;False;t3_kx7vyz;False;False;t1_gj92jcv;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj99ber/;1610729031;180;True;False;anime;t5_2qh22;;0;[]; -[];;;SIRTreehugger;;MAL;[];;http://myanimelist.net/animelist/SIRTreehugger;dark;text;t2_fvp12;False;False;[];;"[I love how you pause almost anywhere and the background always looks beautiful and inviting](https://imgur.com/a/JDAqgLq) - -Still I think what I love the most are the text conversations. The use of emotes, avatars, notification sounds, and realistic dialogue happening while we still see the characters in the background interacting is just superb. Such a little thing, but it elevates the show for me. Also this was much needed after Higurashi. - -It's hard to tell since we never saw Rin Chann camping on her own or interact much with other people initially, but I do think Nadeshiko has rubbed off on her in a good way. At least when it comes too food.";False;False;;;;1610650501;;False;{};gj99c4l;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj99c4l/;1610729045;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Negirno;;;[];;;;text;t2_66hjr;False;False;[];;"No derpy curling lips though. - -I only know about the meme since two days when I watched the latest Fallen Titans episode on the Youtube channel Quinton Reviews.";False;False;;;;1610650576;;False;{};gj99icn;False;t3_kx7a0l;False;False;t1_gj8tyuf;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj99icn/;1610729169;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileran;;;[];;;;text;t2_6dkaz;False;False;[];;Rest in peace, best dad.;False;False;;;;1610650608;;False;{};gj99ktf;False;t3_kx7vyz;False;False;t1_gj8yowd;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj99ktf/;1610729219;17;True;False;anime;t5_2qh22;;0;[]; -[];;;UberDueler8;;;[];;;;text;t2_485dcj1j;False;False;[];;"As an anime only, this is how I think this plan is going to go - -Gen: “I’m Lililan Weinberg. The Americans are coming” - -Tsukasa: “Doubt“ - -Gen: “Senku get the tank”";False;False;;;;1610650614;;1610655170.0;{};gj99lbg;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj99lbg/;1610729229;41;True;False;anime;t5_2qh22;;0;[]; -[];;;SpikeRosered;;;[];;;;text;t2_9mwt7;False;False;[];;"I honestly question if capturing Tsukasa and the cave is enough. - -Not caring what happens after seems like a straight up bad plan.";False;False;;;;1610650677;;False;{};gj99qe6;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj99qe6/;1610729328;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SuperFightingRobit;;;[];;;;text;t2_8a1kwn8a;False;False;[];;I wonder why Wing trended on the 27th?;False;False;;;;1610650718;;False;{};gj99tso;False;t3_kx7a0l;False;True;t1_gj8ya45;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj99tso/;1610729393;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;This season covers Ch. 60-83, so it's approx. 2 chapter/episode, same as last season.;False;False;;;;1610650746;;False;{};gj99w0l;False;t3_kx7vyz;False;True;t1_gj99b34;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj99w0l/;1610729436;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Y0_medic331;;;[];;;;text;t2_4ko9iout;False;False;[];;Ahhhh! these posts keep letting me know about next seasons, all my favorites have been coming out!;False;False;;;;1610650826;;False;{};gj9a2f9;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9a2f9/;1610729563;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hanyallua;;;[];;;;text;t2_97l3s8;False;False;[];;I like how dramatic they make it seem, sure it's a dick move but they're still doing it to save everyone :3 It's not like they're trampling the rest of humanity for their own ideals;False;False;;;;1610650941;;False;{};gj9abfw;False;t3_kx7vyz;False;True;t1_gj8q62f;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9abfw/;1610729746;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PrestigiousFarmer543;;;[];;;;text;t2_85n8t2ih;False;False;[];;Plastic Memories;False;False;;;;1610650985;;False;{};gj9aex7;False;t3_kx71cj;False;False;t3_kx71cj;/r/anime/comments/kx71cj/looking_for_an_anime_sadder_than_aot_and_akame_ga/gj9aex7/;1610729814;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The-All-Might;;;[];;;;text;t2_6gwkewr6;False;False;[];;Haha I m not surprised at all;False;False;;;;1610651050;;False;{};gj9ajyu;True;t3_kx7qln;False;True;t1_gj8w23g;/r/anime/comments/kx7qln/attack_on_titan_episode_64/gj9ajyu/;1610729918;5;True;False;anime;t5_2qh22;;0;[]; -[];;;The-All-Might;;;[];;;;text;t2_6gwkewr6;False;False;[];;For me attack on Titan is up there with the best animes I ve watched;False;False;;;;1610651093;;False;{};gj9anh1;True;t3_kx7qln;False;True;t1_gj8hgs3;/r/anime/comments/kx7qln/attack_on_titan_episode_64/gj9anh1/;1610729994;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Hanyallua;;;[];;;;text;t2_97l3s8;False;False;[];;For those who don't know, the cup ramen making is anime original. The staff went out their way to add original material and start the season with a comfy invention to welcome us back :);False;False;;;;1610651121;;False;{};gj9apnj;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9apnj/;1610730039;3;True;False;anime;t5_2qh22;;0;[]; -[];;;REAL_CONSENT_MATTERS;;;[];;;;text;t2_ftyr6;False;False;[];;"so been reading about this and found some youtube videos. - -here is one using a hand pump and silica gel where the guy gets made fun of relentlessly in the comments. the basis of the mockery is that he is using a hand pump without a proper sealant, though it nonetheless works well enough for him to be satisfied. he clarifies in the comments that he uses the hand pump multiple times to maintain the lowered pressure until the food is complete. that means he's aware this doesn't actually maintain a proper vacuum on its own, but feels comfortable with the taste and shelf life of this food. - -https://www.youtube.com/watch?v=lCybfrZ0CBg&feature=emb_logo - -here is a more ""serious"" tutorial, but like people mention in the comments it is probably overkill for food preparation and you could probably at least use a cheaper pump. he uses dry ice to quickly get things to a lower temperature than a home freezer, as well as a vacuum pump and moisture chamber. this looks like it would be under $300 and not incredibly difficult, though still rather a lot of work. he is planning to use it for non-food uses, but demonstrates it with food. - -https://hackaday.com/2018/02/07/a-freeze-dryer-you-can-build-in-your-garage/ - -here is an interesting ""guide"" that seems like it never finished where the creator was not using dry ice and was using a true vacuum pump. - -https://256.makerslocal.org/wiki/DIY_Freeze_Dryer - -he attempted to use silica gel based cat litter to absorb the moisture, but found it didn't work well in a vacuum. - ->Note: This method may still prove viable for more normal pressure ""frostless freezer"" drying. - -naturally he did not decide to use more normal pressure. - ->QUOTE: The lowest temperature that can practically be achieved in single-stage refrigeration systems is about -40ºF to -50ºF [-58 to -40ºC]. A single-stage system is limited by the compression ratio of the compressor and the ambient temperature in which it must condense the refrigerant. Temperatures from -50ºF down to -120ºF or lower can only be achieved economically by using cascade refrigeration systems. SOURCE: 2011 Refrigerant Reference Guide, P.64. ->Now I just have to figure how to make that kind of system on the cheap. - -the guide then ends around there, though he had a couple ideas for how to do this. overall it's pretty interesting, though my lack of knowledge about how compressor systems work is holding me back. i know it's how refrigerators and freezers cool things though, so seems like something there should be lots of information about.";False;False;;;;1610651145;;1610651327.0;{};gj9arjd;False;t3_kx7vyz;False;False;t1_gj8rj0n;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9arjd/;1610730074;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Blahxyz;;;[];;;;text;t2_hoyhm;False;False;[];;Attack on Tsukasa;False;False;;;;1610651170;;False;{};gj9atkv;False;t3_kx7vyz;False;False;t1_gj8jiy4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9atkv/;1610730115;36;True;False;anime;t5_2qh22;;0;[]; -[];;;OuchYouPokedMyHeart;;;[];;;;text;t2_vcemo;False;False;[];;https://i.imgur.com/ESeRdO4.png;False;False;;;;1610651223;;False;{};gj9axnz;False;t3_kx7vyz;False;False;t1_gj8p4jt;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9axnz/;1610730192;45;True;False;anime;t5_2qh22;;0;[]; -[];;;k-abal;;;[];;;;text;t2_2jg32yd4;False;False;[];;why only 11 eps?;False;False;;;;1610651238;;False;{};gj9ayw0;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9ayw0/;1610730216;1;True;False;anime;t5_2qh22;;0;[]; -[];;;timelesstrix0;;;[];;;;text;t2_14424p;False;False;[];;Their legit flexing their background scenery skills lol;False;False;;;;1610651244;;False;{};gj9aze0;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9aze0/;1610730225;22;True;False;anime;t5_2qh22;;0;[]; -[];;;OuchYouPokedMyHeart;;;[];;;;text;t2_vcemo;False;False;[];;"S T O N E S - -T - -O - -N - -E - -S";False;False;;;;1610651276;;False;{};gj9b1w6;False;t3_kx7vyz;False;False;t1_gj963b4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9b1w6/;1610730275;84;True;False;anime;t5_2qh22;;0;[]; -[];;;justsomescrub;;;[];;;;text;t2_bwwof;False;False;[];;Ooioioook look over o pi like to pilioollo olpp look later I'll o LL il out onlike looks likel like pool oo illpp lo 9plooooopoo loo ooioioook loo pool oro ifooili tk mlllook;False;False;;;;1610651481;;False;{};gj9bhzy;False;t3_kx7vyz;False;True;t1_gj8v6tz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9bhzy/;1610730599;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GodspeedRen;;;[];;;;text;t2_5f7zx4ik;False;False;[];;I’m the same as you, Senku...;False;False;;;;1610651557;;False;{};gj9bo1x;False;t3_kx7vyz;False;False;t1_gj8p4jt;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9bo1x/;1610730718;249;True;False;anime;t5_2qh22;;0;[]; -[];;;StefyB;;;[];;;;text;t2_qx1zd;False;False;[];;The idea of kids trying to recreate that at home just gives me the mental image of little kids hunting down deer and ripping out their bladders for it.;False;False;;;;1610651721;;False;{};gj9c0xu;False;t3_kx7vyz;False;False;t1_gj8pk3y;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9c0xu/;1610730963;90;False;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"Myanimelist and anilist honestly often what I have done is just pick a year and browse throught it looking at shows and see if there is an interesting premise. That's why I have like 500+ titles on my PTW. - - -As for shows longer than 12-22: - -- Legend of the Galactic Heroes (OVA 1988-1997) A great epic space opera with a conflict focused on a corrupt democracy fighting an enlightened despot. Discussions on both the benefits and issues of both systems along with the huge epic space battles. Recent remake not a bad adaptation but it is a bit rushed and only covers the first two books of 10 original has covered all. (Watch the first two prequel films My Conquest is A Sea of Stars and Overture to a New War and skip the first two episodes of the main series after seeing the films. Overture covers the first two episodes better. Extra content you can watch after the fact is the prequel Gaiden and the remake). -(Hidive/VRV) - - [Legend of the Galactic Heroes OP 3]( https://www.youtube.com/watch?v=Hryo6H57y6I) - -- Mushishi (2005) Ambient supernatural show about a Mushishi a doctor who specializes in healing the afflicted of diseases usually caused by supernatural beings called Mushi. Stories can range from heartwarming to tragic with various messages about family or the relation between humanity and nature. -(Crunchyroll/VRV, Hulu, Funimation) (Slice of Life) - -[Mushishi Trailer](https://www.youtube.com/watch?v=CXhPRWY1L0E) - - -- Ghost in the Shell (Film 1995) (SAC 2002) Set in the mid 21st century in a world that has allowed people to easily modify their bodies with some becoming entirely cybernetic. Matoko Kusanagi is one such cyborg who works for the Public Security Section 9 task force whose main objectives are to deal with crime and counter terrorism. -(Films and the SAC series are independent. Films are more philosophical vs SAC which tends to be more a crime drama) -(Amazon Prime has the official dub release but if you want to watch sub look elsewhere) - - -[Ghost in the Shell: S.A.C. 2nd GIG OP](https://www.youtube.com/watch?v=YQIqgxeNtl0) - -- Monster (2004) Kenzo Tenma a Japanese surgeon living in Germany life changes drastically after he saves an incredibly dangerous man known as Johan Liebert. After learning the truth about Johan Kenzo decides no matter what he must find and kill him. - (going to have to sail the seas) - -[Monster OP](https://www.youtube.com/watch?v=msTB5r8nUHU)";False;False;;;;1610651877;;False;{};gj9cdam;False;t3_kx7976;False;True;t3_kx7976;/r/anime/comments/kx7976/i_watched_all_the_beginnergateway_animes_and_am/gj9cdam/;1610731192;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kneelhitler;;;[];;;;text;t2_2y0cogxa;False;False;[];;I absolutely hate fan service maybe that's why my fave shows are where there's no fan service;False;False;;;;1610651933;;False;{};gj9chq2;False;t3_kx6y1v;False;True;t3_kx6y1v;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj9chq2/;1610731279;1;True;False;anime;t5_2qh22;;0;[]; -[];;;midtharp;;;[];;;;text;t2_2tkeqy5s;False;False;[];;"> subtle character development - -Rin hauling ass after rice cakes";False;False;;;;1610651995;;False;{};gj9cmnp;False;t3_kx7a0l;False;False;t1_gj8nscy;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9cmnp/;1610731377;50;True;False;anime;t5_2qh22;;0;[]; -[];;;N1gHtMaRe99;;;[];;;;text;t2_4hm66djz;False;False;[];;I read until today's episode but decided it's best to wait for the amazing anime;False;False;;;;1610652014;;False;{};gj9co7c;False;t3_kx7vyz;False;True;t1_gj96d8d;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9co7c/;1610731406;3;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"The issues with fanservice isn't the sexual content but how it's often used. People focus more on the fact there is sexiness' like that itself is a problem. - -So it depends for me as long as it's kept ""natural"" so no creepy guys being a peeping tom and getting off with just a punch to the face. On the other hand nude scenes, shower scenes or a series like Reviewers where they are touring brothers where it makes sense to have a lot of content like that. How Food Wars used it to make the reactions more involved as well is pretty good. Chainsaw Man is another upcoming title that uses it's fanservice in good plot/character oriented ways. That would be a case where taking it out would harm the story. Quanxi is a character where you feel the creator wrote her because he originally just wanted to draw something sexy but those scenes do actually add a lot to her character. - -In large I would rather read h-manga than watch a lot of fanservice content just because it's not relevant to the story often and it just feels immersion breaking rather than say an actual intimate or sexy scene.";False;False;;;;1610652076;;1610652387.0;{};gj9ct4v;False;t3_kx6y1v;False;True;t3_kx6y1v;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj9ct4v/;1610731508;1;True;False;anime;t5_2qh22;;0;[]; -[];;;midtharp;;;[];;;;text;t2_2tkeqy5s;False;False;[];;"Didn't S1 throw in a couple of brief horror interludes? - -Yuru Camp does love its counterpoint.";False;False;;;;1610652094;;False;{};gj9cuhy;False;t3_kx7a0l;False;False;t1_gj8r2ar;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9cuhy/;1610731536;22;True;False;anime;t5_2qh22;;0;[]; -[];;;BluestarDolphin;;;[];;;;text;t2_okm0w;False;False;[];;This was a really good fullfilling episode.;False;False;;;;1610652098;;False;{};gj9cutj;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9cutj/;1610731542;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;Cup Noodles are a cultural staple in Japan and there are many different brands. It’s equivalent to the popularity of hamburgers here. Imagine living in a stone world and Senku just created microwaveable burgers that you can preserve and heat up on demand. You’d probably be ecstatic at the prospect of being able to eat a burger whenever you wanted.;False;False;;;;1610652191;;False;{};gj9d23z;False;t3_kx7vyz;False;False;t1_gj94klu;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9d23z/;1610731694;35;True;False;anime;t5_2qh22;;0;[]; -[];;;jesselll;;MAL;[];;;dark;text;t2_efkoh;False;False;[];;"Ah, I didn't know it was possible to cry over the beauty of an anime sunrise scene. Turns out it is, as proven by me tonight, like, 3 times. - -Also, I love the ED too much. I thought the new ED couldn't be even more peaceful than the first one, but turns out it could.";False;False;;;;1610652300;;False;{};gj9dap8;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9dap8/;1610731858;4;True;False;anime;t5_2qh22;;0;[]; -[];;;midtharp;;;[];;;;text;t2_2tkeqy5s;False;False;[];;"> when Rin found out about Shippeitaro III - -So was that a glimpse of Shippeitaro IV in the following scene? - -Or did Yuru Camp just go metaphysical?";False;False;;;;1610652323;;False;{};gj9dciv;False;t3_kx7a0l;False;False;t1_gj8qibe;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9dciv/;1610731893;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Piko-a;;;[];;;;text;t2_5175itkd;False;False;[];;This is the second time I saw a series go over the invention of cup noodles. Was a fun start to the season. Somehow forgot how much time goes into the science part of the show somehow, was nice to see it again.;False;False;;;;1610652362;;False;{};gj9dfrz;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9dfrz/;1610731954;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aperture_Kubi;;;[];;;;text;t2_3n9pj;False;False;[];;"So there was a recap OVA with an extra scene of Team Science chasing down Homura, Senku covering her with UV sensitive dust, and following her via that. Does that come in during this episode, either mentioned or just shown again? - -Also the ""cure-all drug"" was just a basic chemically created (as opposed to organically, penicillin) antibiotic right?";False;False;;;;1610652431;;False;{};gj9dl63;False;t3_kx7vyz;False;True;t1_gj8iprw;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9dl63/;1610732065;1;True;False;anime;t5_2qh22;;0;[]; -[];;;midtharp;;;[];;;;text;t2_2tkeqy5s;False;False;[];;But why wouldn't the shrine shopgirl have mentioned that to Rin?;False;False;;;;1610652433;;False;{};gj9dlch;False;t3_kx7a0l;False;True;t1_gj8vjhs;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9dlch/;1610732068;3;True;False;anime;t5_2qh22;;0;[]; -[];;;THEGUYINTHEPICT;;;[];;;;text;t2_4059sf4r;False;False;[];;When they said they were going to hell for something, I thought it was something along the line of playing god and tricking the villagers lmao;False;False;;;;1610652465;;False;{};gj9dnu3;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9dnu3/;1610732119;1;True;False;anime;t5_2qh22;;0;[]; -[];;;THEGUYINTHEPICT;;;[];;;;text;t2_4059sf4r;False;False;[];;And then feels bad for eating junk food after watching Cells at Work Black;False;False;;;;1610652530;;False;{};gj9dt2q;False;t3_kx7vyz;False;False;t1_gj8q006;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9dt2q/;1610732226;73;True;False;anime;t5_2qh22;;0;[]; -[];;;chelseablue2004;;;[];;;;text;t2_6mqvr;False;False;[];;Considering Rin now is stuck really near Hamamatsu because of the icy roads, does she run into the new girl???? Cause isn't that where Nadeshiko originally from?;False;False;;;;1610652572;;False;{};gj9dwff;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9dwff/;1610732294;2;True;False;anime;t5_2qh22;;0;[]; -[];;;midtharp;;;[];;;;text;t2_2tkeqy5s;False;False;[];;"""intestinally enough""? ""inside joke""?";False;False;;;;1610652590;;1610654814.0;{};gj9dxu1;False;t3_kx7a0l;False;False;t1_gj8u374;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9dxu1/;1610732324;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mathema_thicks;;;[];;;;text;t2_641mk527;False;False;[];;I hate you. Now that annoying *Hello, Hello* song won't leave my head.;False;False;;;;1610652601;;False;{};gj9dyrb;False;t3_kx7vyz;False;True;t1_gj8pwzd;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9dyrb/;1610732343;3;True;False;anime;t5_2qh22;;0;[]; -[];;;diamondcake;;;[];;;;text;t2_9vnme;False;False;[];;Keep coping lmao. I'm a fan of both but let's be real here. AoT is reaching its climax hence it will keep climbing higher. Re:Zero S2P2 has yet to do that. It will have more seasons anyway in the future so it will definitely climb just as high provided there's no other series that can challenge it.;False;False;;;;1610652694;;False;{};gj9e696;False;t3_kx7vyz;False;False;t1_gj8z1hg;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9e696/;1610732503;4;True;False;anime;t5_2qh22;;0;[]; -[];;;The_nickums;;MAL;[];;http://myanimelist.net/profile/Snakpak;dark;text;t2_9gxz1;False;False;[];;Ah, so it really is just adapting the Stone War and nothing else. I really hope it ends with a season 3 announcement then.;False;False;;;;1610652712;;False;{};gj9e7r8;False;t3_kx7vyz;False;True;t1_gj99w0l;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9e7r8/;1610732533;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610652823;;False;{};gj9egd8;False;t3_kx7vyz;False;True;t1_gj8x1w1;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9egd8/;1610732698;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Toonamigamerrr;;;[];;;;text;t2_ssw2vcw;False;False;[];;"Senku: Hey It’s been four years Tsukasa - -Tsukasa intense stare : Senku";False;False;;;;1610652848;;False;{};gj9eicb;False;t3_kx7vyz;False;False;t1_gj8jiy4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9eicb/;1610732735;83;True;False;anime;t5_2qh22;;0;[]; -[];;;Toonamigamerrr;;;[];;;;text;t2_ssw2vcw;False;False;[];;I was actually eating them while watching and my jaw dropped. Same with my chopsticks too;False;False;;;;1610652917;;False;{};gj9enod;False;t3_kx7vyz;False;False;t1_gj8lr4j;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9enod/;1610732846;2;True;False;anime;t5_2qh22;;0;[]; -[];;;midtharp;;;[];;;;text;t2_2tkeqy5s;False;False;[];;"Campfire cuisine mystery. - -When cooking one's meal in a single pot of boiling water, [where do you get a piece of deep-fried fish](https://imgur.com/a/ps4nBcx)? - -Rin doesn't have a deep fryer with her, and deep-fried food is infamous for not holding up well after cooking. - -Anybody?";False;False;;;;1610652973;;1610653162.0;{};gj9eryh;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9eryh/;1610732929;5;True;False;anime;t5_2qh22;;0;[]; -[];;;WatchDude22;;;[];;;;text;t2_jhmn0p3;False;False;[];;V12’s loudly revving... 55mph;False;False;;;;1610653086;;False;{};gj9f0rm;False;t3_kx7a0l;False;False;t1_gj8tr38;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9f0rm/;1610733101;24;True;False;anime;t5_2qh22;;0;[]; -[];;;4twinkie;;;[];;;;text;t2_nek4g;False;False;[];;Yo January too stacked with good anime.;False;False;;;;1610653167;;False;{};gj9f75t;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9f75t/;1610733225;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Aperture_Kubi;;;[];;;;text;t2_3n9pj;False;False;[];;Now if only I could find the offering box camping stove for less than $100usd. . .;False;False;;;;1610653383;;False;{};gj9foa8;False;t3_kx7a0l;False;False;t1_gj8td5s;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9foa8/;1610733571;7;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;"I think you can't really get anything more skilful with their backgrounds outside of anime movies. - -&#x200B; - -This and Iroduku are the high levels";False;False;;;;1610653423;;False;{};gj9frfd;False;t3_kx7a0l;False;False;t1_gj9aze0;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9frfd/;1610733634;4;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;We don't know how many camps Rin did solo but if we only saw in ep 2 of the first season she was attempting to cook a camp meal but couldn't find a shop on the way, she did not really go too far away from Curry Noodle pots.;False;False;;;;1610653498;;False;{};gj9fxe8;False;t3_kx7a0l;False;True;t1_gj99c4l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9fxe8/;1610733753;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;*Senkuuuuuuuu-chan!*;False;False;;;;1610653620;;False;{};gj9g6zi;False;t3_kx7vyz;False;False;t1_gj93ghh;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9g6zi/;1610733954;34;True;False;anime;t5_2qh22;;0;[]; -[];;;what_is_this_shitt;;;[];;;;text;t2_b5h79;False;False;[];;In a world full of disinformation, I love the plot and idea behind the plan. The cell phones are basically social media provided lies to the enemy to turn on each other/believe that the US is coming and the old world is still alive. How relevant to what we deal with in real life on a regular basis. Cannot wait to watch the rest of this show.;False;False;;;;1610653697;;False;{};gj9gd13;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9gd13/;1610734075;1;True;False;anime;t5_2qh22;;0;[]; -[];;;__Raxy__;;;[];;;;text;t2_2ei6tsb7;False;False;[];;Solid first episode, I thought the way they did the recap was smart and also interesting with Gen. Somehow Dr Stone keeps making mundane things like making cup noodles interesting and I love it;False;False;;;;1610653712;;False;{};gj9ge4e;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9ge4e/;1610734095;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;I thought it was pretty wild that a comfy series like Yuru Camp would start talking about the relentless inevitability of death, but thinking about it some more it feels like it fits in thematically with camping and seeing the year's first sun rise. These are all ephemeral, temporary experiences, but they're all worth experiencing.;False;False;;;;1610653721;;False;{};gj9ges1;False;t3_kx7a0l;False;False;t1_gj8puqe;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9ges1/;1610734108;21;True;False;anime;t5_2qh22;;0;[]; -[];;;criticaldiamonds;;;[];;;;text;t2_y91lh;False;False;[];;[Rin ON vs Rin OFF](https://i.imgur.com/GG7Cg3X.jpg);False;False;;;;1610653890;;False;{};gj9gs1h;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9gs1h/;1610734370;14;True;False;anime;t5_2qh22;;0;[]; -[];;;booooimaghost;;;[];;;;text;t2_6hx2mica;False;False;[];;Wuutttt season 2 is out???! Sry I been taking a break from anime;False;False;;;;1610653939;;False;{};gj9gvya;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9gvya/;1610734456;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jojo_is_trash;;;[];;;;text;t2_595dn1yo;False;False;[];;I can never get enough of Senku’s voice;False;False;;;;1610653985;;False;{};gj9gzkp;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9gzkp/;1610734540;1;True;False;anime;t5_2qh22;;0;[]; -[];;;midtharp;;;[];;;;text;t2_2tkeqy5s;False;False;[];;"Exquisitely melancholy symbolism: on New Years Eve, Rin turns off her camping light before going to sleep, echoed by the lighthouse light turning off too. But then the lighthouse light turns back on, making it a blinking symbol for all the other years Rin will be turning off her camping light on New Year's Eve. - -As all dogs know, in a life everybody gets only so many new years. And that's one thing New Years is about.";False;False;;;;1610653993;;1610654472.0;{};gj9h08n;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9h08n/;1610734555;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Chaos4139;;;[];;;;text;t2_es2ni;False;False;[];;Excuse me...was that a fucking tank I saw?;False;False;;;;1610653998;;False;{};gj9h0m4;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9h0m4/;1610734562;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jojo_is_trash;;;[];;;;text;t2_595dn1yo;False;False;[];;Yh;False;False;;;;1610654018;;False;{};gj9h274;False;t3_kx7vyz;False;True;t1_gj8t7s6;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9h274/;1610734593;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CCO812;;;[];;;;text;t2_1p7cuq2p;False;False;[];;For me the one thing that really strikes me in this episode is the realistic conversation about dogs between Rin and Ena;False;False;;;;1610654021;;False;{};gj9h2g2;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9h2g2/;1610734599;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomXxZ;;;[];;;;text;t2_37lbelym;False;False;[];;"Don't you find it s t r a n g e that Re:ZERO's supposed hype episode might not even beat 3 pure dialogue episodes in a row? - -Re:ZERO is popular, but AoT is next level.";False;False;;;;1610654034;;False;{};gj9h3fj;False;t3_kx7vyz;False;False;t1_gj8z1hg;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9h3fj/;1610734620;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610654036;;False;{};gj9h3mh;False;t3_kx7vyz;False;True;t1_gj99lbg;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9h3mh/;1610734626;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tomani02;;;[];;;;text;t2_kwkolp6;False;False;[];;This is exhilarating.;False;False;;;;1610654104;;False;{};gj9h8yr;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9h8yr/;1610734733;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tomani02;;;[];;;;text;t2_kwkolp6;False;False;[];;Integral Integral;False;False;;;;1610654156;;False;{};gj9hd4b;False;t3_kx7vyz;False;False;t1_gj8pliv;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9hd4b/;1610734819;2;True;False;anime;t5_2qh22;;0;[]; -[];;;da_cum_sock;;;[];;;;text;t2_6i5b93d5;False;False;[];;I gotta wait for the dub 😔;False;False;;;;1610654198;;False;{};gj9hgcc;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9hgcc/;1610734886;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RasenRendan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RasenRendan;light;text;t2_118o7l;False;False;[];;"I am just so happy my man Senku is back - -And best girl Kohaku";False;False;;;;1610654217;;False;{};gj9hhso;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9hhso/;1610734915;1;True;False;anime;t5_2qh22;;0;[]; -[];;;next_door_nicotine;;;[];;;;text;t2_xyq5i;False;False;[];;"[""Are you seriously watching *anime* by yourself?""](https://youtu.be/1EZ4RFevbqU?t=6)";False;False;;;;1610654224;;False;{};gj9hicv;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9hicv/;1610734927;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;I like how they extended Toba-sensei's driving scene to a full-on Initial D parody. Aside from that and dropping some internal dialogue, it's been a pretty faithful adaptation of the manga.;False;False;;;;1610654511;;False;{};gj9i4u3;False;t3_kx7a0l;False;True;t1_gj8hnxp;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9i4u3/;1610735404;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610654663;;False;{};gj9igm8;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9igm8/;1610735647;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kicksFR;;;[];;;;text;t2_4jaom6ys;False;False;[];;I don’t struggle everyday but damn Thursday is hard;False;False;;;;1610654724;;False;{};gj9ilb1;False;t3_kx7vyz;False;False;t1_gj8jybx;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9ilb1/;1610735742;7;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your comment has been removed. - -- Advertisements or questions about other communities aren't allowed here. If you'd like, you can join our [/r/anime discord server](https://discord.gg/r-anime) or our [Casual Discussion Friday](https://www.reddit.com/r/anime/search?q=title%3A%22Casual+Discussion+Fridays%22+subreddit%3Aanime&restrict_sr=on&sort=new&t=week) thread. If you mod a **sub** with a sizeable userbase, send us a modmail and we can add your subreddit to our [related subreddits wiki page](https://www.reddit.com/r/anime/wiki/related_subreddits). Other external communities should be promoted elsewhere. - - - -- Very NSFW content (""not safe for work,"" e.g. female nipples, genitals of either gender, heavily implied sexual content, sexual contact between two characters) isn't allowed. Female nipples from episode screenshots, manga panels, or uncensored art is allowed in comments, but only if it's relevant to the discussion and called out as NSFW. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610654727;moderator;False;{};gj9ilja;False;t3_kx7vyz;False;True;t1_gj9igm8;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9ilja/;1610735748;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IC2Flier;;;[];;;;text;t2_wnxu2v6;False;False;[];;This I wanna see on *Record of Ragnarok*eventually.;False;False;;;;1610654768;;False;{};gj9iono;False;t3_kx7vyz;False;True;t1_gj8zzdi;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9iono/;1610735811;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Chemiczny_Bogdan;;;[];;;;text;t2_4hx94;False;False;[];;You can't get DDoSed if you don't have the internet f(ಠ‿↼)z;False;False;;;;1610654862;;False;{};gj9ivwn;False;t3_kx7vyz;False;False;t1_gj8xa6u;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9ivwn/;1610735972;15;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;"> where do you get a piece of deep-fried fish? - -I'd guess she picked it up from a convenience store earlier, like when she bought that pork bun for her sandwich press last season.";False;False;;;;1610654900;;False;{};gj9iys1;False;t3_kx7a0l;False;False;t1_gj9eryh;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9iys1/;1610736032;8;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;Funny thing is, that would be Senku's *second* political marriage.;False;False;;;;1610654909;;False;{};gj9izej;False;t3_kx7vyz;False;False;t1_gj8qzm8;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9izej/;1610736047;33;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;"> Disappointed that we didn’t get a Mecha Senku telling all us kids at home to not make sonic bombs. - -This can mean only one thing: Mecha Senku WANTS US to make sonic bombs at home.";False;False;;;;1610654974;;False;{};gj9j4j4;False;t3_kx7vyz;False;False;t1_gj8pk3y;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9j4j4/;1610736154;52;True;False;anime;t5_2qh22;;0;[]; -[];;;IC2Flier;;;[];;;;text;t2_wnxu2v6;False;False;[];;"I want him to make a graphics card. Just so I can vicariously live through someone who's made one. - -<cries>";False;False;;;;1610654982;;False;{};gj9j57g;False;t3_kx7vyz;False;True;t1_gj8v07x;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9j57g/;1610736168;1;True;False;anime;t5_2qh22;;0;[]; -[];;;midtharp;;;[];;;;text;t2_2tkeqy5s;False;False;[];;"That would work – thanks! - -Still trying to wrap my head around camping trips where you can hit a convenience store every day. Sounds convenient.";False;False;;;;1610655038;;False;{};gj9j9l5;False;t3_kx7a0l;False;True;t1_gj9iys1;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9j9l5/;1610736257;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Insullts;;;[];;;;text;t2_3e5zunbo;False;False;[];;Been missing the Kaseki x Chrome duo big time;False;False;;;;1610655083;;False;{};gj9jd5c;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9jd5c/;1610736332;2;True;False;anime;t5_2qh22;;0;[]; -[];;;UberDueler8;;;[];;;;text;t2_485dcj1j;False;False;[];;I have no idea if that’s what actually happens.;False;False;;;;1610655142;;False;{};gj9jhsp;False;t3_kx7vyz;False;True;t1_gj9h3mh;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9jhsp/;1610736430;2;True;False;anime;t5_2qh22;;0;[]; -[];;;brodycartwrightt;;;[];;;;text;t2_5cwie6xs;False;True;[];;I’ve gotta know some other opinions on the opening. I thought it was really good. It started really slow then built up;False;False;;;;1610655191;;False;{};gj9jllw;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9jllw/;1610736509;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Oakshror;;;[];;;;text;t2_k6q6u;False;False;[];;what is Ex-Arm?;False;False;;;;1610655267;;False;{};gj9jrpj;False;t3_kx7vyz;False;True;t1_gj8mjdj;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9jrpj/;1610736634;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrDangle752;;;[];;;;text;t2_34cbdrv8;False;False;[];;"I find it hard to believe america would say ""we're still around and totally didn't turn your country into an amusement park"" - --Coming from an american.";False;False;;;;1610655299;;False;{};gj9ju7k;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9ju7k/;1610736683;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BehindTheBurner32;;;[];;;;text;t2_yegy3;False;False;[];;There's like three banger anime airing daily so you're filled to the hilt with the goods. Great solace to the worst January since Y2K.;False;False;;;;1610655303;;False;{};gj9juku;False;t3_kx7vyz;False;False;t1_gj8lfe4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9juku/;1610736690;10;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;"One thing that I find interesting about Yuru Camp is it's use of technology. Maybe I'm just tipping the hand about how much I like watching old slice-of-life series, but this is the only one I've seen that integrates stuff like group chats and sharing pictures into the core of its narrative. - -It's something that's become more relevant in quarantine times is this ability for technology to bridge physical gaps between friends and family, like the way Nadeshiko was able to experience two different sunrises with two separate groups of friends despite not being able to see it herself because she was busy working. Rin's out solo-camping, but she's keeping in contact with friends and family, uploading pictures, sending texts, etc., so she's not just a lone wolf disconnected from society. I think it's a more modern take on how people experience the world nowadays, like it's a thing to be shared with others rather than something you just keep to yourself.";False;False;;;;1610655531;;False;{};gj9kcjp;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9kcjp/;1610737055;11;True;False;anime;t5_2qh22;;0;[]; -[];;;JuraTempest;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Minshall;light;text;t2_32defc5v;False;False;[];;Crunchyroll has it, that’s all I know haha;False;False;;;;1610655732;;False;{};gj9ksm8;False;t3_kx7vyz;False;True;t1_gj8zicp;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9ksm8/;1610737356;1;True;False;anime;t5_2qh22;;0;[]; -[];;;troutblack;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/;light;text;t2_tsmcg;False;False;[];;Yeah dude! That was a very gripping episode and crazy epic ending to the episode. And it looks like it's only getting started lol! Like the start of a huge battle now.;False;False;;;;1610655822;;False;{};gj9kznf;False;t3_kx7qln;False;True;t3_kx7qln;/r/anime/comments/kx7qln/attack_on_titan_episode_64/gj9kznf/;1610737490;3;False;False;anime;t5_2qh22;;0;[]; -[];;;JuraTempest;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Minshall;light;text;t2_32defc5v;False;False;[];;you good?;False;False;;;;1610655906;;False;{};gj9l6c7;False;t3_kx7vyz;False;False;t1_gj9bhzy;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9l6c7/;1610737620;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ali94127;;;[];;;;text;t2_m3skk;False;False;[];;Tsukasa (to Gen): You were supposed to destroy the Science users, not join them!;False;False;;;;1610655931;;False;{};gj9l893;False;t3_kx7vyz;False;True;t1_gj8of7b;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9l893/;1610737658;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;"> Is Yuru Camp one of the most realistic animes out there? -> -> -> -> most of the places you see are actually in Japan and mostly accurate to what they're based on. - -Mitsuboshi Colors is based in and around Ueno district. I had the pleasure of visiting it after watching the series and it was neat seeing all these places in the anime in real life. - -I found [this post where someone posted some pictures of their visit and comparing it against some screenshots](https://www.reddit.com/r/anime/comments/8v0gpx/i_went_to_ueno_and_found_a_couple_of_places_in/), if you're curious.";False;False;;;;1610656131;;False;{};gj9lp71;False;t3_kx7a0l;False;False;t1_gj8mjez;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9lp71/;1610737969;11;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;That sounds like a prequel to the isekai version of Sleepy Princess in the Demon Castle.;False;False;;;;1610656216;;False;{};gj9lx8w;False;t3_kx7a0l;False;False;t1_gj8voy7;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9lx8w/;1610738114;19;True;False;anime;t5_2qh22;;0;[]; -[];;;HobnobsTheRed;;;[];;;;text;t2_1ftgjit5;False;False;[];;"> I too always give in to pizza. - -Just realised I've had no pizza at all since the start of December! Shall have to rectify that tomorrow.";False;False;;;;1610656262;;False;{};gj9m1h9;False;t3_kx7a0l;False;False;t1_gj8u03h;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9m1h9/;1610738185;8;True;False;anime;t5_2qh22;;0;[]; -[];;;CookieSlut;;MAL;[];;https://myanimelist.net/profile/NumeralXIII;dark;text;t2_kumzc;False;False;[];;"Top Gear and Youtube videos. - -Just dont show it or show a fake one lol";False;False;;;;1610656316;;False;{};gj9m6ax;False;t3_kx7a0l;False;False;t1_gj8tr38;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9m6ax/;1610738274;5;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;The Heya Camp specials had a bit about filming a Blair Witch-style mockumentary with that tablecloth cult.;False;False;;;;1610656394;;False;{};gj9mdbk;False;t3_kx7a0l;False;False;t1_gj9cuhy;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9mdbk/;1610738404;19;True;False;anime;t5_2qh22;;0;[]; -[];;;PhilosopherJack;;MAL;[];;http://myanimelist.net/animelist/philosopherjack;dark;text;t2_mx4ip;False;False;[];;"> Ex-Arm - -? - -\**googles** - -> 2.23 - -bruh - -\**watch crunchyroll trailer** - -###lmao";False;False;;;;1610656421;;False;{};gj9mfnw;False;t3_kx7vyz;False;False;t1_gj8mjdj;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9mfnw/;1610738448;10;True;False;anime;t5_2qh22;;0;[]; -[];;;CookieSlut;;MAL;[];;https://myanimelist.net/profile/NumeralXIII;dark;text;t2_kumzc;False;False;[];;Sensei moonlights as a tofu delivery driver!;False;False;;;;1610656436;;False;{};gj9mgzv;False;t3_kx7a0l;False;False;t1_gj8r2ar;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9mgzv/;1610738473;11;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610656462;;False;{};gj9mjfe;False;t3_kx7vyz;False;True;t1_gj9dt2q;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9mjfe/;1610738514;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;[There is a reason Saitou is my favorite of the bunch.](https://i.imgur.com/9ECUztM.png);False;False;;;;1610656535;;False;{};gj9mqb6;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9mqb6/;1610738631;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaxsP;;;[];;;;text;t2_cf3fz;False;False;[];;I just had a thought about how much easier things would be for Senku if this was set in America. Because iirc the Library of Congress has a basement built to stay with a ton of information incase an ELE happened so the people who find it could rebuild society if they wanted to.;False;False;;;;1610656764;;False;{};gj9nd4c;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9nd4c/;1610739028;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SpaceMarine_CR;;;[];;;;text;t2_1la1dh3q;False;False;[];;#SOZORUZE KORE WA;False;False;;;;1610656839;;False;{};gj9nkdz;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9nkdz/;1610739156;1;True;False;anime;t5_2qh22;;0;[]; -[];;;justsomescrub;;;[];;;;text;t2_bwwof;False;False;[];;You've been butt-commented. Pray I don't sit on my phone again.;False;False;;;;1610656841;;False;{};gj9nkkw;False;t3_kx7vyz;False;False;t1_gj9l6c7;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9nkkw/;1610739160;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610656856;moderator;False;{};gj9nlyd;False;t3_kx7a0l;False;True;t1_gj95jm8;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9nlyd/;1610739185;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SpaceMarine_CR;;;[];;;;text;t2_1la1dh3q;False;False;[];;Blame Boichi 🤣;False;False;;;;1610656899;;False;{};gj9nq3f;False;t3_kx7vyz;False;False;t1_gj92jcv;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9nq3f/;1610739259;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;"Thanks to this day being so staked as I noticed the episode was out an hour after it got released I ended up watching it hours after it was out as I watched the other shows first. - -Anyway, great episode!";False;False;;;;1610656929;;False;{};gj9nsu7;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9nsu7/;1610739309;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrestigiousFarmer543;;;[];;;;text;t2_85n8t2ih;False;False;[];;"This is an older anime (from 2004) but I felt like Elfen Lied was pretty similar. - -Also this is not out yet but sometime in October(I think) there is an anime coming out called Platinum End, I heard the manga was very similar to Mirai Nikki and it was written by the guy who wrote Death Note, so make sure to check that one out of when it’s out I definitely will.";False;False;;;;1610656975;;False;{};gj9nx8q;False;t3_kx7g15;False;True;t3_kx7g15;/r/anime/comments/kx7g15/mirai_nikki_similar_anime/gj9nx8q/;1610739386;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;" - -Here is a question, is the space food part anime original? Because for the life of me I cannot remember that they did that in the manga.";False;False;;;;1610657068;;False;{};gj9o6e6;False;t3_kx7vyz;False;False;t1_gj8iaxy;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9o6e6/;1610739553;4;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;im at 7 shows, pretty good season;False;False;;;;1610657070;;False;{};gj9o6li;False;t3_kx7vyz;False;True;t1_gj8jybx;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9o6li/;1610739557;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;Its just phone wars and Food wars;False;False;;;;1610657161;;False;{};gj9ofee;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9ofee/;1610739712;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DrNavi;;;[];;;;text;t2_dm74e;False;False;[];;I’m at 22 according to my anime list. At least they’re some what spread out through the week;False;False;;;;1610657394;;False;{};gj9p1g5;False;t3_kx7vyz;False;True;t1_gj8kx3q;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9p1g5/;1610740161;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gil_B132;;;[];;;;text;t2_4xlezoga;False;False;[];;I’ll be checking it out when it releases then, thank you .;False;False;;;;1610657487;;False;{};gj9pahp;True;t3_kx7g15;False;True;t1_gj9nx8q;/r/anime/comments/kx7g15/mirai_nikki_similar_anime/gj9pahp/;1610740319;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;"I like how they're using the fish-eye perspective more for these backgrounds. That view of the 2F tea shop cafe was neat. - -During the Yuru Camp S1 rewatch, I read the manga and noticed that a lot of interior shots used a fish-eye perspective like [when she visted that first doggy temple](https://i.imgur.com/AMqnd9Y.png) that wasn't present in the anime, so it's nice that they seem to be flexing their budget and skills a bit in S2 to include more of those.";False;False;;;;1610657520;;False;{};gj9pdof;False;t3_kx7a0l;False;True;t1_gj8ecmv;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9pdof/;1610740375;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;[Wonder Egg Priority](https://anilist.co/anime/124845/) was easily the best first episode of the season.;False;False;;;;1610657600;;False;{};gj9pl7n;False;t3_kx7vyz;False;True;t1_gj93yrn;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9pl7n/;1610740505;1;True;False;anime;t5_2qh22;;0;[]; -[];;;deathbyglamor;;;[];;;;text;t2_uu96t;False;False;[];;I really want ramen now. Their idea to fake Lilian’s voice is a great one but I don’t think it’ll work.;False;False;;;;1610657621;;False;{};gj9pn99;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9pn99/;1610740540;1;True;False;anime;t5_2qh22;;0;[]; -[];;;botika03;;;[];;;;text;t2_ckakdou;False;False;[];;*beat drops*;False;False;;;;1610657709;;False;{};gj9pvhu;False;t3_kx7vyz;False;False;t1_gj8p4jt;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9pvhu/;1610740698;14;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;"I didn’t believe eren was the best mc so I recently read the Manga - - -Eren is 100% the best mc";False;False;;;;1610657745;;False;{};gj9pyuu;False;t3_kx7qln;False;True;t3_kx7qln;/r/anime/comments/kx7qln/attack_on_titan_episode_64/gj9pyuu/;1610740758;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Ice_tail;;;[];;;;text;t2_77hng;False;False;[];;Not a lot of people know the direct correlation between cup ramen and mass death;False;False;;;;1610657782;;False;{};gj9q25n;False;t3_kx7vyz;False;False;t1_gj8utk4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9q25n/;1610740815;71;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610657820;moderator;False;{};gj9q5hi;False;t3_kx7vyz;False;True;t1_gj97hbw;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9q5hi/;1610740872;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610657885;moderator;False;{};gj9qbno;False;t3_kx7vyz;False;True;t1_gj932ve;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9qbno/;1610740977;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The-All-Might;;;[];;;;text;t2_6gwkewr6;False;False;[];;"Yeah I didn't use to see Eren as the best MC until that episode ! -The concept I just really liked and think the creators are doing a great job";False;False;;;;1610657972;;False;{};gj9qju4;True;t3_kx7qln;False;True;t1_gj9pyuu;/r/anime/comments/kx7qln/attack_on_titan_episode_64/gj9qju4/;1610741134;4;True;False;anime;t5_2qh22;;0;[]; -[];;;stormhunter2;;;[];;;;text;t2_2d0p5yp7;False;False;[];;Begun, the stone wars have.;False;False;;;;1610658042;;False;{};gj9qqik;False;t3_kx7vyz;False;False;t1_gj8jiy4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9qqik/;1610741250;13;True;False;anime;t5_2qh22;;0;[]; -[];;;stormhunter2;;;[];;;;text;t2_2d0p5yp7;False;False;[];;Wait, is it animated now??;False;False;;;;1610658116;;False;{};gj9qxea;False;t3_kx7vyz;False;False;t1_gj9dt2q;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9qxea/;1610741371;6;True;False;anime;t5_2qh22;;0;[]; -[];;;whimhammer;;;[];;;;text;t2_2wmb9wel;False;False;[];;"""Cowabunga it is""";False;False;;;;1610658116;;False;{};gj9qxen;False;t3_kx7vyz;False;False;t1_gj8n30e;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9qxen/;1610741372;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;You are gonna love the rest of the season;False;False;;;;1610658162;;False;{};gj9r1rw;False;t3_kx7qln;False;True;t1_gj9qju4;/r/anime/comments/kx7qln/attack_on_titan_episode_64/gj9r1rw/;1610741455;3;True;False;anime;t5_2qh22;;0;[]; -[];;;whimhammer;;;[];;;;text;t2_2wmb9wel;False;False;[];;"Senku this season: ""Oh yeah, it's all coming together""";False;False;;;;1610658187;;False;{};gj9r42p;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9r42p/;1610741495;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The-All-Might;;;[];;;;text;t2_6gwkewr6;False;False;[];;"That comment has got me super excited -I'm sure we will all love it";False;False;;;;1610658220;;False;{};gj9r70o;True;t3_kx7qln;False;True;t1_gj9r1rw;/r/anime/comments/kx7qln/attack_on_titan_episode_64/gj9r70o/;1610741551;3;True;False;anime;t5_2qh22;;0;[]; -[];;;pi8you;;;[];;;;text;t2_3jobjyjn;False;False;[];;I was cackling so hard at that.;False;False;;;;1610658249;;False;{};gj9r9jj;False;t3_kx7a0l;False;True;t1_gj8vzxb;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9r9jj/;1610741596;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"NOW WE GOTTA CAMP - -LET'S GET MOVE - -[](#dekuhype)";False;False;;;;1610658254;;False;{};gj9ra22;False;t3_kx7a0l;False;False;t1_gj8wr7q;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9ra22/;1610741605;22;True;False;anime;t5_2qh22;;0;[]; -[];;;SamuraiFlamenco;;;[];;;;text;t2_fmzp2;False;False;[];;"I'm honestly a little miffed they show [manga spoilers](/s ""the tank and Hyoga's face markings"") in the OP; I'm going to be watching the simuldub with two friends of mine who haven't read the manga and I was really excited for their reaction to both of those. [manga spoilers](/s ""Especially because the spread where we finally see Hyoga's face is so well done and creepy-looking."")";False;False;;;;1610658309;;False;{};gj9rf12;False;t3_kx7vyz;False;False;t1_gj8iaxy;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9rf12/;1610741701;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;[](#doggo);False;False;;;;1610658312;;False;{};gj9rfcw;False;t3_kx7a0l;False;False;t1_gj8rotd;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9rfcw/;1610741706;1;True;False;anime;t5_2qh22;;0;[]; -[];;;akman16;;;[];;;;text;t2_g2eos;False;False;[];;"Senku:There is no gravity in space. - -I don't know about that chief.";False;False;;;;1610658334;;False;{};gj9rhf9;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9rhf9/;1610741742;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pi8you;;;[];;;;text;t2_3jobjyjn;False;False;[];;OshiBudo had a really good one too;False;False;;;;1610658398;;False;{};gj9rnhz;False;t3_kx7a0l;False;True;t1_gj8rrq2;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9rnhz/;1610741863;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ChiggaOG;;;[];;;;text;t2_3hcondt;False;True;[];;Can anybody who visited Japan confirm the validity of Shippeitarou the Thrid's gravestone?;False;False;;;;1610658399;;False;{};gj9rnlx;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9rnlx/;1610741866;1;True;False;anime;t5_2qh22;;0;[]; -[];;;track_cyclist;;;[];;;;text;t2_309g1or0;False;False;[];;"Season 2 hype! Love the new opening theme that was revealed at the end, banger of a song 「楽園」""Paradise"" by the band Fujifabric along with visuals that show us the advances to come in the science kingdom as well as a look at the lives of some of the characters before the petrification.";False;False;;;;1610658456;;False;{};gj9rssb;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9rssb/;1610741968;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PMonkey03;;;[];;;;text;t2_2qmcf1ln;False;False;[];;How many episodes will season 2 be? Is a dub confirmed? And how much of the manga will this season cover, and how much farther until it's fully adapted?;False;False;;;;1610658553;;False;{};gj9s1qc;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9s1qc/;1610742142;1;True;False;anime;t5_2qh22;;0;[]; -[];;;J0HN__L0CKE;;MAL;[];;http://myanimelist.net/animelist/J0HN_L0CKE;dark;text;t2_caftb;False;False;[];;This show is a warm bath in anime form;False;False;;;;1610658612;;False;{};gj9s74c;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9s74c/;1610742248;7;True;False;anime;t5_2qh22;;0;[]; -[];;;JimPadawan;;;[];;;;text;t2_kf1aboy;False;False;[];;Wow is the stone wars already out?;False;False;;;;1610658654;;False;{};gj9sb0w;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9sb0w/;1610742325;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gibethegreat;;;[];;;;text;t2_7vf56x5v;False;False;[];;billie eilish: duh;False;False;;;;1610658699;;False;{};gj9sezc;False;t3_kx7vyz;False;True;t1_gj8p4jt;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9sezc/;1610742399;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Phazze;;;[];;;;text;t2_5irch;False;False;[];;S5 jojo aka Golden Wind is one of the best anime's I have ever seen, stick with it.;False;False;;;;1610658729;;False;{};gj9shgh;False;t3_kx7vyz;False;True;t1_gj8ow53;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9shgh/;1610742445;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Guaymaster;;;[];;;;text;t2_7s5u9;False;False;[];;"The EXTREME speed of 30 km/h! - -Well, it *was* a sinuous mountain road";False;False;;;;1610658739;;False;{};gj9sidz;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9sidz/;1610742462;3;True;False;anime;t5_2qh22;;0;[]; -[];;;track_cyclist;;;[];;;;text;t2_309g1or0;False;False;[];;"The song is called 「楽園」(""rakuen,"" meaning ""paradise"") by the band Fujifabric for those that want to check it out. It doesn't appear that they've released the full version yet though.";False;False;;;;1610658768;;False;{};gj9sl8y;False;t3_kx7vyz;False;True;t1_gj8nokl;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9sl8y/;1610742511;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;"""Amateurs talk about tactics, but professionals study logistics."" - Gen. Robert H. Barrow - -Hence why Senku knows what he's doing, and his first contributions to the war efforts are a camp radio and freeze dried food that keeps their supply light and durable.";False;False;;;;1610659007;;False;{};gj9t78q;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9t78q/;1610742921;1;True;False;anime;t5_2qh22;;0;[]; -[];;;akman16;;;[];;;;text;t2_g2eos;False;False;[];;When Gen first changed into Lillian, was that sfx the same as Golden Wind transforming stuff?;False;False;;;;1610659083;;False;{};gj9te4b;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9te4b/;1610743058;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yawp2546;;;[];;;;text;t2_11cj34wl;False;False;[];;I've got a Funimation subscription, but can't find the episode. Is it coming later or am I doing it wrong?;False;False;;;;1610659122;;False;{};gj9thoj;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9thoj/;1610743122;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DarthNoob;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/darthnoob;light;text;t2_91lna;False;False;[];;"It's the same one. You can compare the sound at 15:55 to [Giorno's ladybug sound at 21s (Jojo part 5 spoilers)](https://www.youtube.com/watch?v=9b5OjgcIkRc#t=21s). - -not sure if they're even allowed to do that lol";False;False;;;;1610659223;;False;{};gj9tqv7;False;t3_kx7vyz;False;True;t1_gj8wgml;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9tqv7/;1610743292;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610659240;;False;{};gj9tsiq;False;t3_kx7vyz;False;True;t1_gj98xr7;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9tsiq/;1610743326;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sjs-07;;;[];;;;text;t2_3vxhip2r;False;False;[];;This epsiode was 10 billion percent exhilarating;False;False;;;;1610659241;;False;{};gj9tsn4;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9tsn4/;1610743327;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Master3530;;;[];;;;text;t2_1so2sp13;False;False;[];;Just to let you guys now, first half of the episode with space food is anime original, but it's pretty good. Overall this episode only adapts 1 chapter and like 2 pages. We might expect more anime original scenes considering it's only a single cour season and stone wars arc isn't that long.;False;False;;;;1610659255;;False;{};gj9ttvv;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9ttvv/;1610743349;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDuckMurloc;;;[];;;;text;t2_4mue8mdb;False;False;[];;Who else heard the golden experience sound effects?;False;False;;;;1610659283;;False;{};gj9twku;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9twku/;1610743400;2;True;False;anime;t5_2qh22;;0;[]; -[];;;joe4553;;MAL;[];;https://myanimelist.net/animelist/EmiyaRin;dark;text;t2_nujxw;False;False;[];;Sensei has to lead by example.;False;False;;;;1610659591;;False;{};gj9upby;False;t3_kx7a0l;False;False;t1_gj8s1yg;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9upby/;1610743988;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TheWrittenLore;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Traynjos000;light;text;t2_ouc2a;False;False;[];;"Was the animation always looking this good. It also looks like the art style changed slightly for characters or is it just me? The women look more normal. - -That ending song is also really good.";False;False;;;;1610659596;;False;{};gj9upql;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9upql/;1610743998;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dontloseyourway1610;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Marinate1016;light;text;t2_4wegnp53;False;False;[];;"Alright finally got the episode working on VRV! - -Please give us two more episodes of Rin solo camping lol. - -That “whoopsie” at missing the diamond sunrise was hilarious. I’ve actually been to where they were today and got to watch the sunrise. Really lovely experience.";False;False;;;;1610659752;;False;{};gj9v48x;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9v48x/;1610744265;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fuelbomb;;;[];;;;text;t2_yzy9i;False;False;[];;"I'm always glad Rin is written like an actual ""loner,"" as opposed to a stereotypical antisocial weirdo that avoids others at all costs. Having her be someone who enjoys being by herself, while also having friends and interacting with them makes me smile.";False;False;;;;1610659807;;False;{};gj9v9d9;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9v9d9/;1610744358;4;True;False;anime;t5_2qh22;;0;[]; -[];;;_Andoroid_;;;[];;;;text;t2_4afhr1y4;False;False;[];;Yeah, that's a good Idea to bring phone with Senku's logo written on it to Tsukasa's people and telling that this is from other people.;False;False;;;;1610659875;;False;{};gj9vflj;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9vflj/;1610744463;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kick-ass-grandma10;;;[];;;;text;t2_44y1hq43;False;False;[];;Has stone begun the wars?;False;False;;;;1610660017;;False;{};gj9vsdk;False;t3_kx7vyz;False;True;t1_gj8z4m0;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9vsdk/;1610744684;2;True;False;anime;t5_2qh22;;0;[]; -[];;;zhivix;;;[];;;;text;t2_lzaui;False;False;[];;This is exhilarating!!!;False;False;;;;1610660031;;False;{};gj9vtku;False;t3_kx7vyz;False;True;t1_gj8kkjk;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9vtku/;1610744706;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Person243546;;;[];;;;text;t2_5lscuc6j;False;False;[];;Anyone noticed the Gold Experience sound effect when they were explaining freeze dried food (during the animation)?;False;False;;;;1610660033;;False;{};gj9vtrl;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9vtrl/;1610744708;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hentai-hercogs;;;[];;;;text;t2_2a3b6tj0;False;False;[];;Rin is my spirit animal when it comes to taking pictures whilst visiting places.;False;False;;;;1610660054;;False;{};gj9vvm3;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9vvm3/;1610744742;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zhivix;;;[];;;;text;t2_lzaui;False;False;[];;It's only gonna get better moving on,you've done the right thing holding off from reading the manga;False;False;;;;1610660096;;False;{};gj9vzed;False;t3_kx7vyz;False;True;t1_gj96d8d;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9vzed/;1610744829;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Person243546;;;[];;;;text;t2_5lscuc6j;False;False;[];;He is probably evil enough to give them dial up internet.;False;False;;;;1610660114;;False;{};gj9w12k;False;t3_kx7vyz;False;False;t1_gj9ivwn;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9w12k/;1610744859;6;True;False;anime;t5_2qh22;;0;[]; -[];;;zhivix;;;[];;;;text;t2_lzaui;False;False;[];;NGL I'd wish they'd adapt sunken rock,another boichi's work;False;False;;;;1610660195;;False;{};gj9w8le;False;t3_kx7vyz;False;False;t1_gj8vuxb;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9w8le/;1610744991;11;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610660281;;False;{};gj9wge9;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9wge9/;1610745122;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;?;False;False;;;;1610660354;;False;{};gj9wn3c;False;t3_kx7vyz;False;True;t1_gj9vsdk;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9wn3c/;1610745237;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chaosof99;;;[];;;;text;t2_6y6y6;False;False;[];;"> My God! That whole first sunrise scene was just gorgeous! My own hatsuhinode was close to my wife's parents house in Chiba. - -Really jealous. I was in Japan over New Years 2018 (started the trip with Comiket and finished it with Wrestle Kingdom). Unfortunately, as I stayed the entire time in Tokyo, I did not have a good sunrise in the middle of the city. I saw it eventually from a park in Shibuya, after hearing that a bridge there had a good view which did not exactly work out.";False;False;;;;1610660360;;1610660980.0;{};gj9wnn9;False;t3_kx7a0l;False;False;t1_gj8ejsg;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9wnn9/;1610745246;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Person243546;;;[];;;;text;t2_5lscuc6j;False;False;[];;Is it legal to use those for self defense? Asking for a friend.;False;False;;;;1610660389;;False;{};gj9wq7o;False;t3_kx7vyz;False;False;t1_gj9j4j4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9wq7o/;1610745290;10;True;False;anime;t5_2qh22;;0;[]; -[];;;willworkforabreak;;;[];;;;text;t2_77idl;False;False;[];;What's at the top of the olll list? Right now I'm following dr. Stone, skinfinity, promised neverland, log horizon s3, attack on titan, and maybe that issekai where the MC starts as a baby.;False;False;;;;1610660418;;1610660703.0;{};gj9wsrs;False;t3_kx7vyz;False;True;t1_gj8jybx;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9wsrs/;1610745334;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PlanetaceOfficial;;;[];;;;text;t2_2cefhqps;False;False;[];;Bruh he was petrified, he didn’t need to;False;False;;;;1610660432;;False;{};gj9wu15;False;t3_kx7vyz;False;False;t1_gj91uya;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9wu15/;1610745355;29;True;False;anime;t5_2qh22;;0;[]; -[];;;willworkforabreak;;;[];;;;text;t2_77idl;False;False;[];;Which bois?;False;False;;;;1610660452;;False;{};gj9wvui;False;t3_kx7vyz;False;True;t1_gj9o6li;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9wvui/;1610745385;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Person243546;;;[];;;;text;t2_5lscuc6j;False;False;[];;Also when he was explaining what freeze dried food was (in the animation) you also hear it.;False;False;;;;1610660460;;False;{};gj9wwk2;False;t3_kx7vyz;False;False;t1_gj8s138;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9wwk2/;1610745398;9;True;False;anime;t5_2qh22;;0;[]; -[];;;asuhoe1316;;;[];;;;text;t2_8w9ijkq9;False;False;[];;poggers so much seasons out this year;False;False;;;;1610660507;;False;{};gj9x0o4;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9x0o4/;1610745478;1;True;False;anime;t5_2qh22;;0;[]; -[];;;willworkforabreak;;;[];;;;text;t2_77idl;False;False;[];;My only complaint is that the ramen felt rushed. I'm spoiled and would've preferred a 2 episode arc. Still seems fun tho;False;False;;;;1610660510;;False;{};gj9x0yd;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9x0yd/;1610745484;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeadingPlayer;;;[];;;;text;t2_c0osog1;False;False;[];;"This show is just so so wonderfully comfy! Thursday truly is a wonderful day for shows that air. It’s stacked for sure, but just absolutely wonderful! I agree with some of the other comments that I could just watch Rin and her camping adventures with nothing else happening. They truly just have something magic here. <3";False;False;;;;1610660609;;False;{};gj9xa2t;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9xa2t/;1610745648;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Person243546;;;[];;;;text;t2_5lscuc6j;False;False;[];;He used electrolysis to make hydrogen gas so I am assuming that it will be some type of gas powered car.;False;False;;;;1610660627;;False;{};gj9xbro;False;t3_kx7vyz;False;False;t1_gj8qxo0;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9xbro/;1610745677;6;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;slime, neverland,re zero, redo, stone,jujutsu and the greatest anime ever unless they fuck up the ending AoT;False;False;;;;1610660722;;False;{};gj9xkkr;False;t3_kx7vyz;False;True;t1_gj9wvui;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9xkkr/;1610745822;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;"""As long as it doesn't outright kill the enemy, anything goes."" - Senku Ishigami, probably";False;False;;;;1610660807;;False;{};gj9xsd1;False;t3_kx7vyz;False;False;t1_gj9wq7o;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9xsd1/;1610745955;21;True;False;anime;t5_2qh22;;0;[]; -[];;;monke_with_beans;;;[];;;;text;t2_7psipa72;False;False;[];;i love this show so much. does someone know how many episodes it will be? im hoping it's 2 cour;False;False;;;;1610660860;;False;{};gj9xx6j;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9xx6j/;1610746043;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GrouchoSnarks;;;[];;;;text;t2_7ck40;False;False;[];;You and [Renge](https://funnyanimepics.files.wordpress.com/2015/08/non2-ep1-whales.jpg) both.;False;False;;;;1610660905;;False;{};gj9y1at;False;t3_kx7a0l;False;False;t1_gj8sq4c;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9y1at/;1610746115;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tamyocom;;;[];;;;text;t2_3pr08va7;False;False;[];;"Finally the new season has started, can't wait to see what stuff they make this time around, I already see a tank in the op. Speaking of the op, it's visuals are great, have yet to get used to the song tho, I think it'll grow on me. -I'm very happy with how they're going about handling this ""war"" , good to know that it's going to be more of a mental and tactical warfare rather than physical one. Only thing that I was kinda worried about.";False;False;;;;1610660988;;False;{};gj9y8c7;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9y8c7/;1610746236;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Existential_Owl;;;[];;;;text;t2_ff7ph;False;False;[];;"> ""Now I am become Death, the destroyer of worlds"" - -- Robert Oppenheimer, upon freeze-drying warm noodles for the first time in human history";False;False;;;;1610660994;;False;{};gj9y8u5;False;t3_kx7vyz;False;False;t1_gj9q25n;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9y8u5/;1610746244;59;True;False;anime;t5_2qh22;;0;[]; -[];;;sahithkiller;;;[];;;;text;t2_5zd0pjy5;False;False;[];;Tsukasa looking more and more like ultimate kars and I love it!;False;False;;;;1610661129;;False;{};gj9yj4r;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9yj4r/;1610746432;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yourparalisisdemon;;;[];;;;text;t2_7m7e2ehi;False;False;[];;I m such introvert that i dont know who is bellie eilish;False;False;;;;1610661156;;False;{};gj9yl69;False;t3_kx7vyz;False;False;t1_gj9sezc;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9yl69/;1610746471;4;True;False;anime;t5_2qh22;;0;[]; -[];;;yourparalisisdemon;;;[];;;;text;t2_7m7e2ehi;False;False;[];;Happy cakeday;False;False;;;;1610661231;;False;{};gj9yr2i;False;t3_kx7vyz;False;True;t1_gj8p73h;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9yr2i/;1610746581;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gibethegreat;;;[];;;;text;t2_7vf56x5v;False;False;[];;Hum... Really? I mean.. Its been a year since i dont have human internactions but i heard of her from memes;False;False;;;;1610661237;;False;{};gj9yrkm;False;t3_kx7vyz;False;True;t1_gj9yl69;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9yrkm/;1610746591;2;True;False;anime;t5_2qh22;;0;[]; -[];;;yourparalisisdemon;;;[];;;;text;t2_7m7e2ehi;False;False;[];;Happy cake day and take my upwote;False;False;;;;1610661243;;False;{};gj9yrzo;False;t3_kx7vyz;False;True;t1_gj8p73h;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9yrzo/;1610746598;2;True;False;anime;t5_2qh22;;0;[]; -[];;;beetroottree;;;[];;;;text;t2_z5tod;False;False;[];;Tsukasa, Tsuareyo;False;False;;;;1610661251;;False;{};gj9ysob;False;t3_kx7vyz;False;False;t1_gj8p654;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9ysob/;1610746611;6;True;False;anime;t5_2qh22;;0;[]; -[];;;cojoB_;;;[];;;;text;t2_27b35u6d;False;False;[];;Didn't know vindiseal was in this show;False;False;;;;1610661273;;False;{};gj9yucb;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gj9yucb/;1610746644;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yourparalisisdemon;;;[];;;;text;t2_7m7e2ehi;False;False;[];;[Atack on titan intro starts playng];False;False;;;;1610661334;;False;{};gj9yz14;False;t3_kx7vyz;False;False;t1_gj9atkv;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9yz14/;1610746734;8;True;False;anime;t5_2qh22;;0;[]; -[];;;yourparalisisdemon;;;[];;;;text;t2_7m7e2ehi;False;False;[];;[Atack on titan intro starts playng];False;False;;;;1610661353;;False;{};gj9z0if;False;t3_kx7vyz;False;True;t1_gj9atkv;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9z0if/;1610746760;2;True;False;anime;t5_2qh22;;0;[]; -[];;;yourparalisisdemon;;;[];;;;text;t2_7m7e2ehi;False;False;[];;[Atack on titan intro starts playing];False;False;;;;1610661367;;False;{};gj9z1k1;False;t3_kx7vyz;False;True;t1_gj9atkv;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9z1k1/;1610746781;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;yourparalisisdemon;;;[];;;;text;t2_7m7e2ehi;False;False;[];;[Atack on titan intro starts playing];False;False;;;;1610661378;;False;{};gj9z2gw;False;t3_kx7vyz;False;False;t1_gj9atkv;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9z2gw/;1610746797;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tamyocom;;;[];;;;text;t2_3pr08va7;False;False;[];;RIP to both the character and the VA;False;False;;;;1610661397;;False;{};gj9z3we;False;t3_kx7vyz;False;False;t1_gj8yowd;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9z3we/;1610746826;54;True;False;anime;t5_2qh22;;0;[]; -[];;;yourparalisisdemon;;;[];;;;text;t2_7m7e2ehi;False;False;[];;I was on 1 comuniety on my main;False;False;;;;1610661462;;False;{};gj9z8uw;False;t3_kx7vyz;False;True;t1_gj9yrkm;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9z8uw/;1610746929;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yourparalisisdemon;;;[];;;;text;t2_7m7e2ehi;False;False;[];;I was on 1 comuniety on my main;False;False;;;;1610661474;;False;{};gj9z9th;False;t3_kx7vyz;False;True;t1_gj9yrkm;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9z9th/;1610746949;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yourparalisisdemon;;;[];;;;text;t2_7m7e2ehi;False;False;[];;I was on 1 comuniety on my main;False;False;;;;1610661486;;False;{};gj9zapg;False;t3_kx7vyz;False;True;t1_gj9yrkm;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9zapg/;1610746965;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Existential_Owl;;;[];;;;text;t2_ff7ph;False;False;[];;"I mean, how else would you convince foreigners that you're actually from America? - -Either you bring tanks or you bring cheeseburgers... and I don't see any cows in that forest.";False;False;;;;1610661500;;False;{};gj9zbra;False;t3_kx7vyz;False;False;t1_gj99lbg;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9zbra/;1610746985;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Existential_Owl;;;[];;;;text;t2_ff7ph;False;False;[];;"Not sure why you had 6 people downvote you, but I always enjoy your commentary. - -+1";False;False;;;;1610661671;;False;{};gj9zolz;False;t3_kx7vyz;False;True;t1_gj8lgjk;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9zolz/;1610747239;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Dartkun;;;[];;;;text;t2_7pg67;False;False;[];;I think it's interesting, I'm pretty sure the cup noodle thing is anime original. But no one is saying anything about it, which means it blended in with the canon material really well. It's truly a great adaptation.;False;False;;;;1610661685;;False;{};gj9zpm8;False;t3_kx7vyz;False;False;t1_gj8q5f6;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9zpm8/;1610747257;42;False;False;anime;t5_2qh22;;0;[]; -[];;;tamyocom;;;[];;;;text;t2_3pr08va7;False;False;[];;I'm sure when senku said they'll figure out the details later, he also meant this part along with the voice deception;False;False;;;;1610661746;;False;{};gj9zu74;False;t3_kx7vyz;False;True;t1_gj99qe6;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9zu74/;1610747345;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BigBear_same;;;[];;;;text;t2_135hdl;False;False;[];;"When he said all we need is phones and brought up how the hot babes are why they are against them my mind insantly went **""Hes gonna say that we should make porn!""**";False;False;;;;1610661793;;False;{};gj9zxol;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9zxol/;1610747411;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"Such is life. - -Some people dont like my episode thoughts. - -But thats fine because i dont do it for others, its for myself.";False;False;;;;1610661814;;False;{};gj9zz6z;False;t3_kx7vyz;False;True;t1_gj9zolz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj9zz6z/;1610747441;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UDani11;;;[];;;;text;t2_3urk0qno;False;False;[];;Wasn't it like his brain still worked?;False;False;;;;1610661895;;False;{};gja052v;False;t3_kx7vyz;False;False;t1_gj9wu15;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja052v/;1610747562;6;True;False;anime;t5_2qh22;;0;[]; -[];;;gazny78;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_zlqd3;False;False;[];;Coming from a tropical country, I don't really mind the heat that much. Sure it's hot, but there are easy remedies, e.g. air conditioners. It's the long day times that bugs me to to end... I grew up with a 12hr day/night daily cycle most of my life, so sunshine before 7am and past 7pm messed up with my internal body clock for a while when I first moved to Japan!;False;False;;;;1610661922;;False;{};gja0764;False;t3_kx7a0l;False;False;t1_gj8y1p6;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gja0764/;1610747607;5;True;False;anime;t5_2qh22;;0;[]; -[];;;supasayajingoto;;;[];;;;text;t2_2x4boddw;False;False;[];;Looked like something you see on mad max;False;False;;;;1610661942;;False;{};gja08mt;False;t3_kx7vyz;False;True;t1_gj8lbhs;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja08mt/;1610747636;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Surylias;;;[];;;;text;t2_kj6vc;False;False;[];;"Just what I needed after the latest episode of Higurashi. - -Another really good and compy episode. BTW belated HNY everybody! - -Didn't expect to hear techno beats in my Yuru Camp, but the scene was funny. Rin's mom took it pretty easy to have Rin stay for two more days. Looking forward to seeing her grandpa again.";False;False;;;;1610661965;;False;{};gja0acf;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gja0acf/;1610747671;1;True;False;anime;t5_2qh22;;0;[]; -[];;;I_have_a_problem_hlp;;;[];;;;text;t2_7v38i4pj;False;False;[];;its probably some legal reason. top gear did it once when they were in the middle of no where in america but all the signs said 50mph so they were clearly racing at 100+ but kept it showing the false spedometer;False;False;;;;1610662006;;False;{};gja0dfs;False;t3_kx7a0l;False;False;t1_gj8ynz2;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gja0dfs/;1610747733;30;True;False;anime;t5_2qh22;;0;[]; -[];;;LightningLord42;;;[];;;;text;t2_8v8uz;False;False;[];;"it seems everyone here is excited for... ATTACK ON TITAN. I cant wait. - - -Seriously thats how i feel about this show";False;False;;;;1610662009;;False;{};gja0dmp;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja0dmp/;1610747737;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tamyocom;;;[];;;;text;t2_3pr08va7;False;False;[];;A part of me hopes that they'll address it in the show even if they later say something like the terrain changed in 3700 years and it's impossible to locate it;False;False;;;;1610662011;;False;{};gja0ds5;False;t3_kx7vyz;False;True;t1_gj9nd4c;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja0ds5/;1610747739;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Biscuit9154;;;[];;;;text;t2_20d11f6r;False;False;[];;I already read the manga, so IK what happens, but it's cool to see it animated! Anybody know the length? Will it be 12 or 24?;False;False;;;;1610662142;;False;{};gja0nfo;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja0nfo/;1610747952;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YUM0N;;;[];;;;text;t2_diwhw;False;False;[];;Same, surprised not many people are mentioning it.;False;False;;;;1610662148;;False;{};gja0nw1;False;t3_kx7vyz;False;True;t1_gj9twku;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja0nw1/;1610747960;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tamyocom;;;[];;;;text;t2_3pr08va7;False;False;[];;Yeah I noticed it as well, their eyes are much closer now, I still kinda prefer the previous one but I can see why they chose to do it.;False;False;;;;1610662162;;False;{};gja0ozj;False;t3_kx7vyz;False;True;t1_gj9upql;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja0ozj/;1610747983;1;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 150, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Thank you stranger. Shows the award.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'icon_width': 2048, 'id': 'award_f44611f1-b89e-46dc-97fe-892280b13b82', 'is_enabled': True, 'is_new': False, 'name': 'Helpful', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;AvatarAarow1;;;[];;;;text;t2_3ve7o5xz;False;False;[];;If you’re into non-action stuff then there’s a lot of stories that make Akame ga kill look like nothing. Anohana and “I want to eat your pancreas” will rip your heart into tiny shreds, and 5cm per second will just make you want to curl in a ball and be upset about life;False;False;;;;1610662169;;False;{};gja0ph6;False;t3_kx71cj;False;True;t3_kx71cj;/r/anime/comments/kx71cj/looking_for_an_anime_sadder_than_aot_and_akame_ga/gja0ph6/;1610747994;1;True;False;anime;t5_2qh22;;1;[]; -[];;;ProgramTheWorld;;;[];;;;text;t2_fmd67;False;False;[];;Yeah I don’t remember seeing the “space food” scene.;False;False;;;;1610662205;;False;{};gja0s44;False;t3_kx7vyz;False;False;t1_gj8t7s6;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja0s44/;1610748052;12;True;False;anime;t5_2qh22;;0;[]; -[];;;_Sai;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;https://www.anime-planet.com/users/Sai0/anime/watching;light;text;t2_k8fhr;False;False;[];;##[WE BACK](https://i.imgur.com/P3ph853.jpg)!;False;False;;;;1610662236;;False;{};gja0ueu;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja0ueu/;1610748111;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PatriciaTheCool;;;[];;;;text;t2_565xp6mz;False;False;[];;Thanks;False;False;;;;1610662249;;False;{};gja0vci;True;t3_kx71cj;False;True;t1_gja0ph6;/r/anime/comments/kx71cj/looking_for_an_anime_sadder_than_aot_and_akame_ga/gja0vci/;1610748131;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fushikushi;;;[];;;;text;t2_8kxj5z5b;False;False;[];;"Well, I still have the same problem as in the previous season: dr Stone uses real scientific facts but uses them in totally unreal way. When anime is about magic or sth I just accept that all these unrealistic actions are just part of the created world. But dr Stone shows true, but very idealised truth and it doesn't say ""this wouldn't really work w/o laboratory conditions"". -For me it's extremely annoying...";False;False;;;;1610662267;;False;{};gja0woo;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja0woo/;1610748157;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ProgramTheWorld;;;[];;;;text;t2_fmd67;False;False;[];;I couldn’t hold it after season 1 so I caved in and read the manga, and now I’m very excited to see the glorious scenes in animated form. I wonder which chapter it will end on.;False;False;;;;1610662327;;False;{};gja1144;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja1144/;1610748245;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tamyocom;;;[];;;;text;t2_3pr08va7;False;False;[];;I apologise if this sounds dumb but why do you have downvotes?;False;False;;;;1610662346;;False;{};gja12k4;False;t3_kx7vyz;False;True;t1_gj8lgjk;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja12k4/;1610748272;0;True;False;anime;t5_2qh22;;0;[]; -[];;;IronWishmaster;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/IronWish;light;text;t2_198iqdoi;False;False;[];;"It's ""Initial **△""** now!";False;False;;;;1610662364;;False;{};gja13w0;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gja13w0/;1610748298;16;True;False;anime;t5_2qh22;;0;[]; -[];;;ArchadianJudge;;;[];;;;text;t2_dk2pa;False;True;[];;"This show never disappoints! Perfect comfy episode again. - -The dog part made me so sad but I'm so happy the creators are big dog fans. As a dog lover myself, this brings me so much joy. Cherish your precious doggos!";False;False;;;;1610662398;;False;{};gja16ec;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gja16ec/;1610748348;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ProgramTheWorld;;;[];;;;text;t2_fmd67;False;False;[];;Half of the episode was anime original.;False;False;;;;1610662426;;False;{};gja18j9;False;t3_kx7vyz;False;False;t1_gj8q5f6;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja18j9/;1610748390;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Natsuki_Nakagawa;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Jepjur/;light;text;t2_4bb0d1ew;False;False;[];;Did not expect to see hiker tea lady again! I'm hoping Sakura will show up soon as well.;False;False;;;;1610662515;;False;{};gja1f3n;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gja1f3n/;1610748521;3;True;False;anime;t5_2qh22;;0;[]; -[];;;_Sai;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;https://www.anime-planet.com/users/Sai0/anime/watching;light;text;t2_k8fhr;False;False;[];;31 and still going.;False;False;;;;1610662541;;1610662882.0;{};gja1h0w;False;t3_kx7vyz;False;True;t1_gj9o6li;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja1h0w/;1610748561;1;True;False;anime;t5_2qh22;;0;[]; -[];;;M-atthew147s;;;[];;;;text;t2_fqmfu4s;False;False;[];;On a real note Egypt and Ethiopia and South Sudan looking tense.;False;False;;;;1610662600;;False;{};gja1l7r;False;t3_kx7vyz;False;False;t1_gj8r9wy;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja1l7r/;1610748647;14;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;Who knows.;False;False;;;;1610662633;;False;{};gja1nkp;False;t3_kx7vyz;False;True;t1_gja12k4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja1nkp/;1610748693;0;True;False;anime;t5_2qh22;;0;[]; -[];;;M-atthew147s;;;[];;;;text;t2_fqmfu4s;False;False;[];;Not sure you needed to send this 4 times;False;False;;;;1610662679;;False;{};gja1qwv;False;t3_kx7vyz;False;False;t1_gj9yz14;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja1qwv/;1610748758;6;True;False;anime;t5_2qh22;;0;[]; -[];;;HobnobsTheRed;;;[];;;;text;t2_1ftgjit5;False;False;[];;"> Mitsuboshi Colors - -The Colors also acted like actual kids. Best/most realistic portrayal of kids I've seen in years.";False;False;;;;1610662707;;False;{};gja1sxm;False;t3_kx7a0l;False;False;t1_gj9lp71;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gja1sxm/;1610748800;7;True;False;anime;t5_2qh22;;0;[]; -[];;;degenerated_weeb;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Can’t escape the peko hole;dark;text;t2_3cku6n8b;False;False;[];;">”I regret sending that design to Roosevelt.” - -—Albert Einstein, upon realising the horrors he unleashed onto the world by designing the first freeze-dried ramen prototype.";False;False;;;;1610662831;;False;{};gja2255;False;t3_kx7vyz;False;False;t1_gj9y8u5;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja2255/;1610748986;24;True;False;anime;t5_2qh22;;0;[]; -[];;;rguzgu;;;[];;;;text;t2_16z5p0;False;False;[];;Or your dead evil twin;False;False;;;;1610663205;;False;{};gja2tr3;False;t3_kx7vyz;False;True;t1_gj8mlgo;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja2tr3/;1610749514;1;True;False;anime;t5_2qh22;;0;[]; -[];;;M-atthew147s;;;[];;;;text;t2_fqmfu4s;False;False;[];;I knew it was coming but it still made me laugh so loudly but what more was the impact was smaller than i expected and made it one hundred percent funnier;False;False;;;;1610663301;;False;{};gja30pb;False;t3_kx7vyz;False;False;t1_gj8s1g9;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja30pb/;1610749644;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610663428;;False;{};gja39zh;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja39zh/;1610749815;1;True;False;anime;t5_2qh22;;0;[]; -[];;;neito;;;[];;;;text;t2_1tbak;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610663442;moderator;False;{};gja3b26;False;t3_kx7vyz;False;True;t1_gj8w3uw;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja3b26/;1610749835;0;True;False;anime;t5_2qh22;;0;[]; -[];;;scot911;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/scot911;light;text;t2_e6v5y;False;False;[];;Considering my families going to have pizza tonight and I'm probably going to order the deliciously disgusting Pizza Hut because it's my turn to pay....;False;False;;;;1610663480;;False;{};gja3dvv;False;t3_kx7a0l;False;False;t1_gj8qh8b;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gja3dvv/;1610749896;8;True;False;anime;t5_2qh22;;0;[]; -[];;;wolfpwarrior;;;[];;;;text;t2_fl0wz;False;False;[];;Having seen Tonikaku Kawaii recently and forgetting the names of people in Dr. Stone, this confused me for a minute.;False;False;;;;1610663505;;False;{};gja3fpj;False;t3_kx7vyz;False;False;t1_gj8p4jt;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja3fpj/;1610749930;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Godprime;;;[];;;;text;t2_dezxafd;False;False;[];;11;False;False;;;;1610663670;;False;{};gja3rpg;False;t3_kx7vyz;False;True;t1_gj9xx6j;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja3rpg/;1610750159;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkWorld97;;MAL;[];;https://myanimelist.net/profile/;dark;text;t2_aqfg4;False;False;[];;Somewhat related, but I would kill for these outfits to pop up in Animal Crossing. The vibes are too perfect.;False;False;;;;1610663685;;False;{};gja3srw;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gja3srw/;1610750179;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Caenir;;;[];;;;text;t2_12257c;False;False;[];;I know I gotta. But this season is just too stacked and I'm not good with long shows as I tend to watch in long bursts.;False;False;;;;1610663697;;False;{};gja3tkt;False;t3_kx7vyz;False;True;t1_gj94xpc;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja3tkt/;1610750193;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Demolution-Gamer786;;;[];;;;text;t2_2y4pbcre;False;False;[];;I think mappa is doing a really good job on animations, I don’t like the cgi Titans but it doesn’t look that bad.;False;False;;;;1610663740;;False;{};gja3wn3;False;t3_kx7qln;False;True;t3_kx7qln;/r/anime/comments/kx7qln/attack_on_titan_episode_64/gja3wn3/;1610750251;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SuchWow125;;;[];;;;text;t2_167x8o;False;False;[];;"Is it just me or were the backgrounds even more gorgeous than they were already? - -Also, Aoi's imouto takes after her so well it's honestly scary. We don't need two pranksters! (specifically, *Chiaki* probably cannot survive two pranksters)";False;False;;;;1610664000;;False;{};gja4fbr;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gja4fbr/;1610750611;3;True;False;anime;t5_2qh22;;0;[]; -[];;;The-All-Might;;;[];;;;text;t2_6gwkewr6;False;False;[];;Bro I am so excited for the big battle I do hope to see Eren end up on top but I'm expecting a big twist;False;False;;;;1610664128;;False;{};gja4ojv;True;t3_kx7qln;False;True;t1_gj9kznf;/r/anime/comments/kx7qln/attack_on_titan_episode_64/gja4ojv/;1610750777;5;True;False;anime;t5_2qh22;;0;[]; -[];;;scot911;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/scot911;light;text;t2_e6v5y;False;False;[];;I mean she didn't ask about Shippeitaro IV so I'd assume yes to the former.;False;False;;;;1610664192;;False;{};gja4t88;False;t3_kx7a0l;False;True;t1_gj9dciv;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gja4t88/;1610750865;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GekiKudo;;;[];;;;text;t2_dpr3b;False;False;[];;I'm sorry but how is this spoilers? I didn't include a single plot detail.;False;False;;;;1610664211;;False;{};gja4uoy;False;t3_kx7vyz;False;True;t1_gja3b26;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja4uoy/;1610750893;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;Yeah, I think it nails the mixture between cute, mercurial, blunt, ambitious, ignorant, fanciful, and rowdy that feels authentically childlike to me. There are some scenes I can I think of where I go, wow, this is so much like real children that I actually find it a little bit annoying.;False;False;;;;1610664354;;False;{};gja54zv;False;t3_kx7a0l;False;False;t1_gja1sxm;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gja54zv/;1610751079;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Soap646464;;;[];;;;text;t2_2nr0birw;False;False;[];;After yesterday's re:zero episode , Senku's voice gave me some serious whiplash at the beginning of the episode , damn that VA is good;False;False;;;;1610664490;;False;{};gja5f1n;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja5f1n/;1610751263;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gazny78;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_zlqd3;False;False;[];;Just imagine the carnage of Ghost Shrouds being massacred once the girls get their hands on them to create their B.L.A.N.K.E.T. Army!;False;False;;;;1610664509;;1610675753.0;{};gja5gfa;False;t3_kx7a0l;False;False;t1_gj9lx8w;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gja5gfa/;1610751288;11;True;False;anime;t5_2qh22;;0;[]; -[];;;leafy_fan3;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/3UGL3N4;light;text;t2_83mvdmhg;False;False;[];;"There is a recap episode tho - -https://youtu.be/vO_KhCqmP-8";False;False;;;;1610664604;;False;{};gja5ned;False;t3_kx7vyz;False;False;t1_gj8oryv;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja5ned/;1610751418;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GGABueno;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GGABueno;light;text;t2_ebmks;False;False;[];;Hey, fish people reserve more respect.;False;False;;;;1610664758;;False;{};gja5yke;False;t3_kx7vyz;False;False;t1_gj99ber;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja5yke/;1610751653;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Chik0Che;;;[];;;;text;t2_oy8r1;False;False;[];;Manga reader here. Just do everything you can to avoid spoilers. This shit gets sooo goood, and it’s not even finished yet, hype is through the roof;False;False;;;;1610664843;;False;{};gja64sb;False;t3_kx7qln;False;True;t1_gj8kzcj;/r/anime/comments/kx7qln/attack_on_titan_episode_64/gja64sb/;1610751769;5;True;False;anime;t5_2qh22;;0;[]; -[];;;GGABueno;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GGABueno;light;text;t2_ebmks;False;False;[];;I find the whole conflict so incredibly dumb. I wish they just kept to the interesting set up.;False;False;;;;1610664896;;False;{};gja68kj;False;t3_kx7vyz;False;True;t1_gj8op8k;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja68kj/;1610751837;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;gazny78;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_zlqd3;False;False;[];;"> ...deliciously disgusting Pizza Hut.. - -I'm all for gourmet/artisanal pizzas, and don't mind paying extra for it. But once in a while I just crave the cheap, artificial taste of a Pizza Hut or a Domino's! It's disgusting, but you just can't stop wolfing it down!";False;False;;;;1610664903;;False;{};gja690i;False;t3_kx7a0l;False;True;t1_gja3dvv;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gja690i/;1610751844;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The-All-Might;;;[];;;;text;t2_6gwkewr6;False;False;[];;"I will 100 percent take your advice! -I wouldn't want this season to be spoiled -Hype is really going through the roof";False;False;;;;1610665034;;False;{};gja6ini;True;t3_kx7qln;False;True;t1_gja64sb;/r/anime/comments/kx7qln/attack_on_titan_episode_64/gja6ini/;1610752022;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HobnobsTheRed;;;[];;;;text;t2_1ftgjit5;False;False;[];;I remembered [this ep](https://myanimelist.net/anime/40833/Inu_to_Neko_Docchi_mo_Katteru_to_Mainichi_Tanoshii/episode/7) of Inu to Neko. Makes me tear up every time I see it.;False;False;;;;1610665240;;False;{};gja6xdw;False;t3_kx7a0l;False;True;t1_gj8puqe;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gja6xdw/;1610752308;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;TBF I think the manga deserves to be read too, because Boichi's art is phenomenal.;False;False;;;;1610665264;;False;{};gja6z3m;False;t3_kx7vyz;False;False;t1_gj9vzed;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja6z3m/;1610752340;7;True;False;anime;t5_2qh22;;0;[]; -[];;;zuruka1;;;[];;;;text;t2_3faf5se;False;False;[];;"Thursday is absofuckinglutely packed. - -I currently stand at 8 myself, and that is not counting quintuplet which I don't watch.";False;False;;;;1610665433;;False;{};gja7axa;False;t3_kx7vyz;False;True;t1_gj948b4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja7axa/;1610752558;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tarrant_Korrin;;;[];;;;text;t2_22g01irg;False;False;[];;God I want to cry at how wholesome this show is.;False;False;;;;1610665533;;False;{};gja7i0s;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gja7i0s/;1610752687;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cynadiir;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cyn50;light;text;t2_zs3sh;False;False;[];;"I'm only at 7, waiting for AOT dub, never got into log horizon. Not sure what else yall are watching, could use the recommendations. - -Currenrly watching, rezero, quintuplets, slime, dr stone, promised Neverland, jobless reincarnation, and a kid from the last dungeon boonies";False;False;;;;1610665585;;False;{};gja7lqo;False;t3_kx7vyz;False;True;t1_gj8kx3q;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja7lqo/;1610752760;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mockingbirdguy;;;[];;;;text;t2_6096n672;False;False;[];;Don’t underestimate truck-kun like that;False;False;;;;1610665685;;False;{};gja7ssg;False;t3_kx7vyz;False;False;t1_gj8jjm6;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja7ssg/;1610752894;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;"Stand User**「Shima ""Shima-rin"" Rin」** -Stand Name**「POWER DOGGY」**";False;False;;;;1610665755;;False;{};gja7xpl;False;t3_kx7a0l;False;False;t1_gj8rotd;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gja7xpl/;1610752984;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610666068;;False;{};gja8k1o;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja8k1o/;1610753405;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610666090;;False;{};gja8llb;False;t3_kx7vyz;False;True;t1_gj900an;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja8llb/;1610753434;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dr4urbutt;;;[];;;;text;t2_49vemuy8;False;False;[];;Oh..wasn't aware of that. RIP.;False;False;;;;1610666099;;False;{};gja8m8h;False;t3_kx7vyz;False;False;t1_gj9z3we;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja8m8h/;1610753446;34;True;False;anime;t5_2qh22;;0;[]; -[];;;GowtherETC;;;[];;;;text;t2_47ql3fom;False;False;[];;I mean with a population as low as that...;False;False;;;;1610666170;;False;{};gja8rc5;False;t3_kx7vyz;False;False;t1_gj99ber;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja8rc5/;1610753542;32;True;False;anime;t5_2qh22;;0;[]; -[];;;dr4urbutt;;;[];;;;text;t2_49vemuy8;False;False;[];;I'm pretty sure he said millenias;False;False;;;;1610666334;;False;{};gja92t0;False;t3_kx7vyz;False;True;t1_gj8xxys;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja92t0/;1610753763;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mythriz;;;[];;;;text;t2_d37v0;False;False;[];;I can't wait for the civil war arc in Yuru Camp;False;False;;;;1610666592;;False;{};gja9kzv;False;t3_kx7vyz;False;False;t1_gj8olfp;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja9kzv/;1610754119;36;True;False;anime;t5_2qh22;;0;[]; -[];;;i_love_rem;;;[];;;;text;t2_yb6o5zf;False;False;[];;Yes, season 2 of regular Cells at Work as well as an adaptation of Code Black are both airing this season.;False;False;;;;1610666724;;False;{};gja9u80;False;t3_kx7vyz;False;False;t1_gj9qxea;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja9u80/;1610754295;11;True;False;anime;t5_2qh22;;0;[]; -[];;;mythriz;;;[];;;;text;t2_d37v0;False;False;[];;Shion will be happy to cook it up for Rimuru-sama;False;False;;;;1610666801;;False;{};gja9zhg;False;t3_kx7vyz;False;False;t1_gj9mjfe;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja9zhg/;1610754394;6;True;False;anime;t5_2qh22;;0;[]; -[];;;redlaWw;;;[];;;;text;t2_9wwod;False;False;[];;It might just be a translation issue, but the subs definitely said millions.;False;False;;;;1610666805;;False;{};gja9ztd;False;t3_kx7vyz;False;True;t1_gja92t0;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gja9ztd/;1610754400;3;True;False;anime;t5_2qh22;;0;[]; -[];;;redlaWw;;;[];;;;text;t2_9wwod;False;False;[];;"I checked the show again. First time, it was Gen saying ""nan hyaku nan man"", which is ""hundreds of myriads"" or ""millions"", second time, it was Senku saying ""ni hyaku man"", which is ""two hundred myriad"" or ""two million"".";False;False;;;;1610667124;;False;{};gjaambu;False;t3_kx7vyz;False;True;t1_gja92t0;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjaambu/;1610754846;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EPLWA_Is_Relevant;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/EPLWA/animelist;light;text;t2_hk8ga;False;False;[];;They are declaring war on Non Non Biyori. It's the Fluff Wars.;False;False;;;;1610667510;;False;{};gjabdd8;False;t3_kx7vyz;False;False;t1_gja9kzv;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjabdd8/;1610755335;26;True;False;anime;t5_2qh22;;0;[]; -[];;;FiveDividedByZero;;;[];;;;text;t2_12qlqr;False;False;[];;"This show is too cute, I can’t even. - -OMG TEA GIRL CALL BACKS!!!";False;False;;;;1610667523;;False;{};gjabeax;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjabeax/;1610755351;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;"Just binged the second half of S1 of Dr. Stone today is order to catch up, and Episode 1 of S2 was pretty good. - -The anime's never blown my socks off, but Senku is an unconventional shonen character with a unique approach to problem-solving so it continues to keep me intrigued. It should ramp up from Episode 2 onwards which I'm looking forward to as the Stone Wars have been teased for about 10 episodes now.";False;False;;;;1610667775;;False;{};gjabvr0;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjabvr0/;1610755664;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TexhnolyzeAndKaiba;;;[];;;;text;t2_781er1nk;False;True;[];;Curses! This will be an agonizing week without paid anime streaming. T-T;False;False;;;;1610667783;;False;{};gjabwax;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjabwax/;1610755674;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JuraTempest;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Minshall;light;text;t2_32defc5v;False;False;[];;The ones I recommend are Horimiya, Kemono Jihen, and I’ve heard good things about Wonder Egg priority but I haven’t watched it yet;False;False;;;;1610668108;;False;{};gjacj35;False;t3_kx7vyz;False;True;t1_gja7lqo;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjacj35/;1610756122;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Guaymaster;;;[];;;;text;t2_7s5u9;False;False;[];;!remindme 10 weeks;False;False;;;;1610668183;;False;{};gjaco86;False;t3_kx7vyz;False;True;t1_gj99lbg;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjaco86/;1610756215;1;True;False;anime;t5_2qh22;;0;[]; -[];;;me_funny__;;;[];;;;text;t2_177qw4;False;False;[];;Are we just gonna ignore the tank in the OP/ED?;False;False;;;;1610668275;;False;{};gjacufw;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjacufw/;1610756327;1;True;False;anime;t5_2qh22;;0;[]; -[];;;me_funny__;;;[];;;;text;t2_177qw4;False;False;[];;At least we can count on JoJo STONE ocean to possibly use it;False;False;;;;1610668439;;False;{};gjad61y;False;t3_kx7vyz;False;True;t1_gj8j0kx;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjad61y/;1610756546;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FiveDividedByZero;;;[];;;;text;t2_12qlqr;False;False;[];;Sensei Tokyo drift! Omg. And the music too!;False;False;;;;1610668469;;False;{};gjad87a;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjad87a/;1610756588;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shnick9996;;;[];;;;text;t2_405jha7v;False;True;[];;"Oh yeah, that scene is right after today's episode. Senku uses the flash grenade to temporarily blind Homura and is shown to have developed Black Light (UV) at the end. - -Yes, the cure-all sulfa drug is a chemically created antibiotic.";False;False;;;;1610668693;;False;{};gjadnv7;False;t3_kx7vyz;False;True;t1_gj9dl63;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjadnv7/;1610756870;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SeanPJoy;;;[];;;;text;t2_9sotdxt2;False;False;[];;I am half expecting the record they're listening to to break, and the only piece of recorded music left in human history will be lost forever.;False;False;;;;1610668741;;False;{};gjadr40;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjadr40/;1610756928;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hunter-McGee;;;[];;;;text;t2_1ft3s4q0;False;False;[];;"I feel like Rin-chan has always been a closed off person but ever since Nadeshiko-chan entered her life she became more open and expressive (in het own way) and it’s a great development to watch. - -This is also might be the first time we’ve seen sensei without a drink, also sensei: DEJA VU!";False;False;;;;1610668784;;False;{};gjadu7w;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjadu7w/;1610756984;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dr4urbutt;;;[];;;;text;t2_49vemuy8;False;False;[];;Ah..then it's not right. Though I have a feeling it might the way how they speak everything in exaggerated figures like 10 billion percent!;False;False;;;;1610668948;;False;{};gjae5pk;False;t3_kx7vyz;False;True;t1_gjaambu;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjae5pk/;1610757197;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mrjeremyt;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MrJeremyT/;light;text;t2_etwd0;False;False;[];;I'm currently at 32 or so shows this season. Yes, I know I'm insane.;False;False;;;;1610669051;;False;{};gjaeclh;False;t3_kx7vyz;False;True;t1_gj8kx3q;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjaeclh/;1610757319;1;True;False;anime;t5_2qh22;;0;[];True -[];;;FiveDividedByZero;;;[];;;;text;t2_12qlqr;False;False;[];;Wow it’s amazing how well the show resembles the actual tea house. Even the inside!;False;False;;;;1610669181;;False;{};gjaelqb;False;t3_kx7a0l;False;True;t1_gj8ejsg;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjaelqb/;1610757482;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomXxZ;;;[];;;;text;t2_37lbelym;False;False;[];;Everyone keeps making AoT references in the comments. First the Re:ZERO episode and now this one.;False;False;;;;1610669218;;False;{};gjaeo9m;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjaeo9m/;1610757528;1;True;False;anime;t5_2qh22;;0;[]; -[];;;G4llade_;;;[];;;;text;t2_5kys0wx5;False;False;[];;The op sounds so good;False;False;;;;1610669350;;False;{};gjaexdd;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjaexdd/;1610757691;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Walter-Miller;;;[];;;;text;t2_ii3dk1;False;False;[];;What's science withouth its many practical applications in warfare?;False;False;;;;1610669359;;False;{};gjaexz2;False;t3_kx7vyz;False;False;t1_gj8op8k;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjaexz2/;1610757702;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TexhnolyzeAndKaiba;;;[];;;;text;t2_781er1nk;False;False;[];;"> And it looks like it's only getting started lol! Like the start of a huge battle now. - -Even that is an understatement based on my reading of the manga. It's easily the part I've most anticipated about this season because it was so exhilarating and savage even as just stills. I was reading it at my job and was almost pumping my fists in the air.";False;False;;;;1610669868;;False;{};gjafx19;False;t3_kx7qln;False;True;t1_gj9kznf;/r/anime/comments/kx7qln/attack_on_titan_episode_64/gjafx19/;1610758330;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hazeringx;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/akariaku;light;text;t2_mozjs;False;False;[];;"[Rin](https://imgur.com/asCzC4o) [looks](https://imgur.com/tcLTbNr) so [cute](https://imgur.com/3zNEP8G) when she is excited/happy! -This [place](https://imgur.com/MFrS99a) looks really nice. As does the tiramasu and [tea](https://imgur.com/Ede7mWx). - -Mini Inuko is [so](https://imgur.com/NY9k9Ks) [cheeky](https://imgur.com/7i91Vdo) - -This sequence was [gorgeous](https://imgur.com/1hDkFmE).";False;False;;;;1610670329;;False;{};gjagt8c;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjagt8c/;1610758904;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sodapopkevin;;;[];;;;text;t2_6xeae;False;False;[];;We all simping for Gen.;False;False;;;;1610670331;;False;{};gjagtdo;False;t3_kx7vyz;False;False;t1_gj8vfej;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjagtdo/;1610758907;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Dare555;;;[];;;;text;t2_6k3zwl8o;False;False;[];;There is tooo much good animes to watch now !! I cant keep up aaaa....Whats with this Januar 2021 ??? AoT,Stone, Quintessential quintuplets,Re:Zero,Horimiya ,Black Clover god damn.. I havent seen month this packed in a while bless 2021;False;False;;;;1610670347;;False;{};gjaguhc;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjaguhc/;1610758926;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wolfpwarrior;;;[];;;;text;t2_fl0wz;False;False;[];;I thought that was the one where the were doing a commercial for the VW Golf TDI. They couldn't show one car speeding to pass another car and leave it way behind, so they showed it going the speed limit.;False;False;;;;1610670400;;False;{};gjagya4;False;t3_kx7a0l;False;False;t1_gja0dfs;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjagya4/;1610758995;5;True;False;anime;t5_2qh22;;0;[]; -[];;;sodapopkevin;;;[];;;;text;t2_6xeae;False;False;[];;Senku's true waifu is science, anyone else and you're lying to yourself!;False;False;;;;1610670417;;False;{};gjagzfw;False;t3_kx7vyz;False;False;t1_gj8yoq5;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjagzfw/;1610759016;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Hazeringx;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/akariaku;light;text;t2_mozjs;False;False;[];;It's early to tell (and BD sales aren't the only thing that matters to determine whether an anime is doing well or not), but the BD seem to be doing well so far. It's only behind Mushoku Tensei, I believe. The first season sold 14k~ BD, so I don't think it will do too badly, even if it doesn't reach the heights of the first season.;False;False;;;;1610670459;;False;{};gjah2df;False;t3_kx7a0l;False;True;t1_gj8mibq;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjah2df/;1610759067;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sodapopkevin;;;[];;;;text;t2_6xeae;False;False;[];;My strat is watching episodes while having a meal, then you got some multi-tasking going on.;False;False;;;;1610670515;;False;{};gjah6br;False;t3_kx7vyz;False;True;t1_gj8lsg4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjah6br/;1610759136;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wolfpwarrior;;;[];;;;text;t2_fl0wz;False;False;[];;"DO YOU LIKE - -MY TENT";False;False;;;;1610670562;;False;{};gjah9kp;False;t3_kx7a0l;False;False;t1_gj9ra22;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjah9kp/;1610759197;22;True;False;anime;t5_2qh22;;0;[]; -[];;;AccidentSubstantial1;;;[];;;;text;t2_6xa0wpcw;False;False;[];;Gen most supportive wife;False;False;;;;1610670608;;False;{};gjahcpe;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjahcpe/;1610759256;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wolfpwarrior;;;[];;;;text;t2_fl0wz;False;False;[];;Well now I have to go watch Heya Camp;False;False;;;;1610670638;;False;{};gjahesc;False;t3_kx7a0l;False;True;t1_gj9mdbk;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjahesc/;1610759295;3;True;False;anime;t5_2qh22;;0;[]; -[];;;unknownjunior;;;[];;;;text;t2_kcfhl;False;False;[];;Ohaiyooooo sekaiii good morning world!!!!!!;False;False;;;;1610670688;;False;{};gjahiaa;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjahiaa/;1610759359;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sidat;;;[];;;;text;t2_ogun6;False;False;[];;No messing around and we’re back with a bang, this winter anime season is too much 🔥;False;False;;;;1610670755;;False;{};gjahmv5;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjahmv5/;1610759449;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gazny78;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_zlqd3;False;False;[];;In my opinion, they're now on par with Non Non Biyori.;False;False;;;;1610670777;;False;{};gjahoev;False;t3_kx7a0l;False;True;t1_gj975cb;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjahoev/;1610759480;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nimrag_is_coming;;;[];;;;text;t2_2ty9jhb3;False;False;[];;My favourite part of dr stone is where it gives you some very specific instructions on how to build something dangerous, and then tells you not to do it. Like that’s gonna stop meme;False;False;;;;1610670874;;False;{};gjahv3s;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjahv3s/;1610759608;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wolfpwarrior;;;[];;;;text;t2_fl0wz;False;False;[];;30 KPH is 19 miles per hour. Even my old Toyota Corolla could go faster around that mountain road. It's about learning to roll the steering wheel at a constant rate as you take the turn, so the turning ends up a lot smoother. I suggest filling a cup most of the way up with water and putting it in your cup holder. If I keep the water from spilling out of the cup, I can drive as fast as I want without damaging the tofu I am delivering for my dad's shop.;False;False;;;;1610671211;;False;{};gjaiiay;False;t3_kx7a0l;False;False;t1_gj8u9ac;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjaiiay/;1610760018;8;True;False;anime;t5_2qh22;;0;[]; -[];;;kkfvjk;;;[];;;;text;t2_jmsh8;False;False;[];;Yess I grabbed one during the episode! I'm glad I'm not the only one;False;False;;;;1610671359;;False;{};gjaistf;False;t3_kx7vyz;False;True;t1_gj8lr4j;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjaistf/;1610760198;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kkfvjk;;;[];;;;text;t2_jmsh8;False;False;[];;What a fun first episode to kick off this season! Super excited for more;False;False;;;;1610671385;;False;{};gjaiujv;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjaiujv/;1610760229;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JulianFoxy;;;[];;;;text;t2_3o90q6dh;False;False;[];;"(...)He wasn't really awake neither sleeping his body was frozen all the way through but his consciousness managed to keep track by draining energy from somewhere, giving him the opportunity too count and think about what's going on. E=mc². Energy just don't come out of the blue(...) - -Senku, Something along those lines, ep6 (iirc) s1";False;False;;;;1610671387;;False;{};gjaiup9;False;t3_kx7vyz;False;True;t1_gja052v;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjaiup9/;1610760232;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hoenntrumpets;;;[];;;;text;t2_kuafh;False;False;[];;It's called the curse of 2020 becoming the blessing of 2021;False;False;;;;1610671570;;False;{};gjaj7x6;False;t3_kx7vyz;False;True;t1_gjaguhc;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjaj7x6/;1610760464;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;Wow they are really close to Mt Fuji, I've driven around there the mountain roads are really nice to drive. Although I went over to Kofu before heading back to Tokyo rather than going to Minobu. All the areas around Fuji are amazing though, [this is one of my favourite pics from my trip driving around there](https://i.imgur.com/7o2gJB7.jpg);False;False;;;;1610671714;;False;{};gjaji1y;False;t3_kx7a0l;False;False;t1_gj8hl3b;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjaji1y/;1610760647;7;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;Yep, it was pretty much a perfect filler.;False;False;;;;1610671841;;False;{};gjajqwl;False;t3_kx7vyz;False;False;t1_gj9zpm8;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjajqwl/;1610760800;20;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;God damn why did you have to remind me;False;False;;;;1610671883;;False;{};gjajtv5;False;t3_kx7vyz;False;False;t1_gj8yowd;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjajtv5/;1610760854;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Melbuf;;;[];;;;text;t2_j03jl;False;False;[];;benefits of having a country smaller than the state of CA;False;False;;;;1610672496;;False;{};gjal0ww;False;t3_kx7a0l;False;False;t1_gj9j9l5;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjal0ww/;1610761620;3;True;False;anime;t5_2qh22;;0;[]; -[];;;monke_with_beans;;;[];;;;text;t2_7psipa72;False;False;[];;only 11?? damn. that's like the least amount possible.;False;False;;;;1610672789;;False;{};gjalky4;False;t3_kx7vyz;False;True;t1_gja3rpg;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjalky4/;1610761994;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KxJoker;;;[];;;;text;t2_52ia6p2b;False;False;[];;" -Back Arrow: China Vs the wild west";False;False;;;;1610673001;;False;{};gjalzik;False;t3_kx7vyz;False;True;t1_gj8mjdj;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjalzik/;1610762272;2;True;False;anime;t5_2qh22;;0;[]; -[];;;triforcer198;;;[];;;;text;t2_2xhulcuc;False;False;[];;Is it weird that I’m really hyped about grandpa coming to get rin?;False;False;;;;1610673501;;False;{};gjamxkn;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjamxkn/;1610762893;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TokiWaKita;;;[];;;;text;t2_5x93wszo;False;False;[];;"They can't show certain illegal activities that people can copy. - -That's why you never see minors drinking, only getting drunk off of alcohol fumes (stupidest thing ever) or chocolates with alcohol content (which can be consumed by anyone under Japanese law).";False;False;;;;1610673606;;False;{};gjan4o4;False;t3_kx7a0l;False;False;t1_gj8ynz2;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjan4o4/;1610763029;17;True;False;anime;t5_2qh22;;0;[]; -[];;;ai298;;;[];;;;text;t2_75lboqkr;False;False;[];;"What a visually beautiful episode. C-station doing some fantastic work. Looking better than S1 which was already super beautiful. - -Speedy Rin was adorable. -And as always, I’m hungry. Damn anime food. Give me some of that soba, curry, pizza, matcha tiramisu!";False;False;;;;1610674005;;False;{};gjanvr6;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjanvr6/;1610763509;2;True;False;anime;t5_2qh22;;0;[]; -[];;;yourparalisisdemon;;;[];;;;text;t2_7m7e2ehi;False;False;[];;I have very bad wi fi and i cant send 1 at the time mohst of the time because of that because it will not send and i can t see copies;False;False;;;;1610674053;;False;{};gjanz2x;False;t3_kx7vyz;False;True;t1_gja1qwv;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjanz2x/;1610763575;2;True;False;anime;t5_2qh22;;0;[]; -[];;;VanguardOdyssey;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/VanguardOdyssey;light;text;t2_b5m9z1;False;False;[];;I was so high on the shows season 1 that immediately after it finished I caught up to the manga and now the wait for the anime to come back is over!;False;False;;;;1610674447;;False;{};gjaoqdy;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjaoqdy/;1610764090;1;True;False;anime;t5_2qh22;;0;[]; -[];;;katsu045;;;[];;;;text;t2_2s28oigd;False;False;[];;"so many blessed Rin faces she truly is peak comfy. - - -but for real can i get a anime initial D but it's only teachers there all so skilled at drifting mountain passes";False;False;;;;1610674612;;False;{};gjap1zl;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjap1zl/;1610764305;1;True;False;anime;t5_2qh22;;0;[]; -[];;;terrible_idea_dude;;;[];;;;text;t2_8cnfnva0;False;False;[];;"""Remember kids, when opening the gut cavity, make sure to insert the knife with the sharp end up so you don't accidentally nick the abdomen and spill the stomach fluids, it will ruin the meat!""";False;False;;;;1610675003;;False;{};gjapsw2;False;t3_kx7vyz;False;False;t1_gj9c0xu;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjapsw2/;1610764793;40;True;False;anime;t5_2qh22;;0;[]; -[];;;shayminthesky;;;[];;;;text;t2_3djw8rt1;False;False;[];;one of us! one of us!;False;False;;;;1610675102;;False;{};gjapzin;False;t3_kx7a0l;False;True;t1_gj8qh8b;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjapzin/;1610764911;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OneMoreDuncanIdaho;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/a_trisolaran;light;text;t2_i31pk;False;False;[];;Send in the [Americans from Kill la Kill](http://imgur.com/a/TBLxSo1);False;False;;;;1610675671;;False;{};gjar27k;False;t3_kx7vyz;False;False;t1_gj9zbra;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjar27k/;1610765583;9;True;False;anime;t5_2qh22;;0;[]; -[];;;camaron666;;;[];;;;text;t2_c4efj;False;False;[];;I had no idea this was back on when the original came out it really inspired me to go camping more just went camping a few weeks ago and can't wait to watch the new season;False;False;;;;1610676080;;False;{};gjaru2v;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjaru2v/;1610766099;1;True;False;anime;t5_2qh22;;0;[]; -[];;;squirtlesquadweeb;;;[];;;;text;t2_9pryse70;False;False;[];;I could write a whole ass essay on why this episode is good... or I can just say the Rin is adorable and the music is the most beautiful shit I ever did hear.;False;False;;;;1610676086;;False;{};gjarui6;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjarui6/;1610766106;5;True;False;anime;t5_2qh22;;0;[]; -[];;;bigbeanis1136;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/Gamma_Panther/;light;text;t2_4qgkrgcw;False;False;[];;Sick. As. Fuck.;False;False;;;;1610676176;;False;{};gjas0im;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjas0im/;1610766209;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sirzotolovsky;;;[];;;;text;t2_a9n7b;False;False;[];;This was the one series I did not expect that kind of music;False;False;;;;1610676277;;False;{};gjas7ck;False;t3_kx7a0l;False;True;t1_gj8r2ar;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjas7ck/;1610766329;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lost-NotFound;;;[];;;;text;t2_57xayenq;False;False;[];;the bobble head scene killed me with gen and senku lol;False;False;;;;1610676578;;False;{};gjass4l;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjass4l/;1610766693;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Steve_Gray;;;[];;;;text;t2_57o1dyer;False;False;[];;kinda of a meh first episode but i understand the set up my review [https://www.youtube.com/watch?v=rtv5HZDeqTA](https://www.youtube.com/watch?v=rtv5HZDeqTA);False;False;;;;1610676685;;False;{};gjaszpn;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjaszpn/;1610766819;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Memepsycho100;;;[];;;;text;t2_5bb8lf5i;False;False;[];;I have been waiting so long! I was really upset when I found out it got delayed, but the wait was worth.;False;False;;;;1610676922;;False;{};gjatfxf;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjatfxf/;1610767103;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheAmblingOwl;;MAL;[];;https://myanimelist.net/profile/TheAmblingOwl;dark;text;t2_fw6ou;False;False;[];;Looks like the opening is going to change slightly every week! I noticed the pictures on Rin's phone changed during the part when she is in the library. Last week the pictures were of the Christmas camp, but now they reflect things that happened in episode 1. Really nice detail.;False;False;;;;1610676973;;False;{};gjatj94;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjatj94/;1610767161;5;True;False;anime;t5_2qh22;;0;[]; -[];;;SleepingOnTheStairs;;;[];;;;text;t2_7tr3ct6h;False;False;[];;I feel like the mouths look a bit lower in s2 but dr stone girls def prepping me for the monstrous mouth placement o fht promised neverland;False;False;;;;1610677108;;False;{};gjatsdn;False;t3_kx7vyz;False;False;t1_gj92jcv;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjatsdn/;1610767323;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ProgramTheWorld;;;[];;;;text;t2_fmd67;False;False;[];;"What about villains cutting people's heads off? - -Most of the time CGDGT shows don't show ""illegal"" activities is really only because they want to keep the characters ""pure"".";False;False;;;;1610677169;;False;{};gjatwe8;False;t3_kx7a0l;False;True;t1_gjan4o4;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjatwe8/;1610767394;3;True;False;anime;t5_2qh22;;0;[]; -[];;;csbsju_guyyy;;;[];;;;text;t2_aiy98;False;False;[];;I'll try spinning, that's a good trick!;False;False;;;;1610677192;;False;{};gjatxwt;False;t3_kx7vyz;False;True;t1_gj8of7b;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjatxwt/;1610767419;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zemahem;;;[];;;;text;t2_2i7j9c90;False;False;[];;Yeah that's probably the case, but I like to think it's the latter so the talking pinecones can also be a real thing in-universe.;False;False;;;;1610677322;;False;{};gjau6hc;False;t3_kx7a0l;False;False;t1_gja4t88;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjau6hc/;1610767570;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Zemahem;;;[];;;;text;t2_2i7j9c90;False;False;[];;Sounds kinda dark. Poor Pinecone-chan is so lonely that it's willing to be kindling just to not be left out.;False;False;;;;1610677437;;False;{};gjauec4;False;t3_kx7a0l;False;True;t1_gj955mq;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjauec4/;1610767716;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Papasimmons;;;[];;;;text;t2_5r9bq;False;False;[];;Same, it caught me so off guard.;False;False;;;;1610677456;;False;{};gjaufmj;False;t3_kx7a0l;False;True;t1_gjas7ck;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjaufmj/;1610767740;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ProgramTheWorld;;;[];;;;text;t2_fmd67;False;False;[];;"> And, as expected, it's a real place!. - -And it actually has a second floor tea house! Here's the menu from its website: - -> 2階 茶寮メニュー - -> > お茶:煎茶、ほうじ茶、抹茶 -> > 甘味:パフェ あんみつ、和菓子など -> > 食事:お茶漬け(10時半~14時 数量限定) - - -> 期間限定メニュー -> > 寒蜜いちごパフェ(1月初旬~4月頃)";False;False;;;;1610677487;;False;{};gjauhrz;False;t3_kx7a0l;False;True;t1_gj8ejsg;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjauhrz/;1610767778;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Voller_Faulheit;;;[];;;;text;t2_yzz8v;False;False;[];;You and I aren't that different;False;False;;;;1610677518;;False;{};gjaujvr;False;t3_kx7vyz;False;False;t1_gj9bo1x;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjaujvr/;1610767820;51;True;False;anime;t5_2qh22;;0;[]; -[];;;chelseablue2004;;;[];;;;text;t2_6mqvr;False;False;[];;Saitou is the character who i most identify with...is part of the go home when school is done club, and the sleep in and stay warm society,;False;False;;;;1610677521;;False;{};gjauk27;False;t3_kx7a0l;False;False;t1_gj9mqb6;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjauk27/;1610767823;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ProgramTheWorld;;;[];;;;text;t2_fmd67;False;False;[];;Watching Yuru Camp makes me really want to go camping and driving in Japan;False;False;;;;1610678001;;False;{};gjavgdn;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjavgdn/;1610768387;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gazny78;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_zlqd3;False;False;[];;"> CALM DOWN YOU CAN'T JUST DO THAT TWICE IN A ROW - -People getting worked up over mundane activities in this show reminds me of fans going nuts with the missing dinner shirts crisis in Downton Abbey!";False;False;;;;1610678111;;1610711441.0;{};gjavnk0;False;t3_kx7a0l;False;True;t1_gj8u9ac;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjavnk0/;1610768510;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sunshine145;;;[];;;;text;t2_d976y;False;False;[];;Is there gonna be any more stupid shit about his father in this season. I know it's anime and ridiculous shit is expected but the shit with his dad was the most forced shit I've ever seen and am not looking forward to more of that.;False;False;;;;1610678162;;False;{};gjavr21;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjavr21/;1610768569;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gazny78;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_zlqd3;False;False;[];;"> 期間限定メニュー - ->寒蜜いちごパフェ - -I plan to visit there next month with my wife. I hope the Honey Strawberry Parfait will still be available! Places like this they tend to serve limited numbers of their special menu dishes daily...";False;False;;;;1610678465;;False;{};gjawb4r;False;t3_kx7a0l;False;True;t1_gjauhrz;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjawb4r/;1610768904;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mathmango;;;[];;;;text;t2_cc9gd;False;False;[];;You sound like a slice of life protagonist yourself;False;False;;;;1610678513;;False;{};gjawe81;False;t3_kx7a0l;False;True;t1_gjaiiay;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjawe81/;1610768954;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ImKnottt;;;[];;;;text;t2_80glhny6;False;False;[];;"I genuinely thought that the writers were gonna hide the probability that there are other people who have gotten out of petrification and are smart enough to create cellphones. And that this would be used as a cliffhanger after the end of the season. - -I held off on telling this because i don't read manga and thought that this was a spoiler. Kuddos to the creators, they had me believing that I was able to guess the plot on my own.";False;False;;;;1610678549;;False;{};gjawgky;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjawgky/;1610768992;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CertifiedLolicon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_5bmbk3re;False;False;[];;when you realize Kohaku and Pieck share the same VA;False;False;;;;1610678657;;False;{};gjawnpg;False;t3_kx7vyz;False;False;t1_gj8jiy4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjawnpg/;1610769112;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Mathmango;;;[];;;;text;t2_cc9gd;False;False;[];;Also being close or on the way to a dedicated campground;False;False;;;;1610678822;;False;{};gjawyug;False;t3_kx7a0l;False;True;t1_gjal0ww;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjawyug/;1610769301;1;True;False;anime;t5_2qh22;;0;[]; -[];;;evilstop4;;;[];;;;text;t2_pwwxi4p;False;False;[];;Depends how long the war lasts;False;False;;;;1610678948;;False;{};gjax7i3;False;t3_kx7vyz;False;True;t1_gj909rx;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjax7i3/;1610769447;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Royal_Heritage;;;[];;;;text;t2_8wglzuge;False;False;[];;I think you meant our secret blanket society captain Chikuwa.;False;False;;;;1610679188;;False;{};gjaxnj2;False;t3_kx7a0l;False;False;t1_gj9mqb6;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjaxnj2/;1610769719;8;False;False;anime;t5_2qh22;;0;[]; -[];;;Rustic_Professional;;;[];;;;text;t2_pajnr;False;False;[];;"I was always skeptical of the ""umi da!"" thing until I had a classmate from Wisconsin do basically the same thing. The difference is that the water in Texas is brown with an iridescent sheen, and I had to stop her from getting in and catching cholera or something. To be fair, I had the same sort of reaction the first time I saw a mountain with snow on it, and wanted to get out of the car and play in it. I think that was on the side of a road in Nevada. It wasn't even pretty, but it was *snow*, right there. - -Rin's knife looks like an Opinel. They're cool looking knives, but the collar lock scares me. They seem like they'd be awkward to carry every day since they don't have a clip, and if you have to put it in a scabbard then you might as well carry a fixed blade. - -I've never gotten up to watch the first sunrise of the year. I might if there were some place scenic around here, but there isn't, so I don't bother. I'm with Ena. This year I slept till nearly noon. - -Anyway, I like that Rin can be a little childish. It only comes out when she's alone, but it's still charming. I don't think she'll ever reach Nadeshiko's level of adorableness, though. That gap is too wide. It's a little like the difference between Chino and Cocoa.";False;False;;;;1610679375;;False;{};gjaxzqo;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjaxzqo/;1610769929;6;True;False;anime;t5_2qh22;;0;[]; -[];;;wolfpwarrior;;;[];;;;text;t2_fl0wz;False;False;[];;"I used to be the main supporting character, but I managed to get my own slice of life spinoff after getting my character development arc in the main show. - -But hey, now I'm sitting by the window, with only 1 desk behind me.";False;False;;;;1610679424;;False;{};gjay2zp;False;t3_kx7a0l;False;True;t1_gjawe81;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjay2zp/;1610769984;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mathmango;;;[];;;;text;t2_cc9gd;False;False;[];;">with only 1 desk behind me. - -I'm sorry to be the one to tell you this, but you might be the spunky best friend.";False;False;;;;1610679528;;False;{};gjay9pq;False;t3_kx7a0l;False;True;t1_gjay2zp;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjay9pq/;1610770099;2;True;False;anime;t5_2qh22;;0;[]; -[];;;punctualjohn;;;[];;;;text;t2_nffka;False;False;[];;"The way it was portrayed too is hilarious ""16475284, 16475285... oof! almost lost consciousness! that was close... gotta use both parts of the brain in parallel"" Like that Russian dude in Baki with such crazy grip strength he can hang for hours by gripping a 2cm nut in the ceiling with his thumb and index, or Biscuit Oliva who can stop bullets and katanas with his muscles!";False;False;;;;1610679611;;False;{};gjayf4p;False;t3_kx7vyz;False;True;t1_gj8y5oz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjayf4p/;1610770191;1;True;False;anime;t5_2qh22;;0;[]; -[];;;G102Y5568;;;[];;;;text;t2_5blex;False;False;[];;The next two arcs are heavily science-based. The one after that still has some science, but becomes more action-based. So you're good for at least 50 episodes or so.;False;False;;;;1610679705;;False;{};gjaylcl;False;t3_kx7vyz;False;True;t1_gj8op8k;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjaylcl/;1610770291;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wolfpwarrior;;;[];;;;text;t2_fl0wz;False;False;[];;Normally the sunny best friend sits adjacent or directly behind so they can slam the protagonist's head backwards into their desk as they loudly announce their plan to make a club. My neck still hurts.;False;False;;;;1610679910;;False;{};gjayyxx;False;t3_kx7a0l;False;True;t1_gjay9pq;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjayyxx/;1610770521;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"Good to have this back. I still don't get why they insist on calling radios ""cell phones."" Does Japanese not have a word for ""radio""?";False;False;;;;1610679950;;False;{};gjaz1j4;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjaz1j4/;1610770564;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FeistyKnight;;;[];;;;text;t2_1twmffwo;False;False;[];;I think that's the op honestly;False;False;;;;1610679970;;False;{};gjaz2v4;False;t3_kx7vyz;False;True;t1_gj8utk4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjaz2v4/;1610770587;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SailorArashi;;;[];;;;text;t2_orqld;False;True;[];;I hear nothing because Nadeshiko is incapable of being angry.;False;False;;;;1610680086;;False;{};gjazafb;False;t3_kx7a0l;False;False;t1_gj8sp0d;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjazafb/;1610770714;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Stepwolve;;;[];;;;text;t2_b98th;False;False;[];;ive rewatched season 1 so many times. its become a 'comfort food' kind of show for me. So hyped new episodes are finally here!;False;False;;;;1610680474;;False;{};gjazzv7;False;t3_kx7vyz;False;True;t1_gj8l4nb;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjazzv7/;1610771141;1;False;False;anime;t5_2qh22;;0;[]; -[];;;SailorArashi;;;[];;;;text;t2_orqld;False;True;[];;[Currently $105 on Amazon](https://www.amazon.com/dp/B00KKQASKQ/ref=cm_sw_r_cp_api_glc_fabc_5GqaGbYKW6HK9). The wife bought me one for Christmas because we’re both huge fans of the show. It’s pretty nifty.;False;False;;;;1610680478;;False;{};gjb0068;False;t3_kx7a0l;False;False;t1_gj9foa8;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjb0068/;1610771146;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ProgramTheWorld;;;[];;;;text;t2_fmd67;False;False;[];;That’s awesome! I’m guessing you’re in Japan? Meanwhile we are stuck here in America...;False;False;;;;1610680521;;False;{};gjb0324;False;t3_kx7a0l;False;True;t1_gjawb4r;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjb0324/;1610771192;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Alaskan_Bull_Worm_Jr;;;[];;;;text;t2_2kob6py3;False;False;[];;Holy shit, the first verse (and stanza) of Gas Gas Gas works freaking well with Yuru Camp 🔺 settings lmfao;False;False;;;;1610680554;;False;{};gjb057i;False;t3_kx7a0l;False;False;t1_gjah9kp;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjb057i/;1610771227;5;True;False;anime;t5_2qh22;;0;[]; -[];;;SailorArashi;;;[];;;;text;t2_orqld;False;True;[];;She eats all the food before they can finish filming the commercial. It’s tragic, really.;False;False;;;;1610680614;;False;{};gjb096v;False;t3_kx7a0l;False;False;t1_gj8xaxi;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjb096v/;1610771292;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Mathmango;;;[];;;;text;t2_cc9gd;False;False;[];;I have a feeling you secretly like ponytails;False;False;;;;1610680634;;False;{};gjb0ak7;False;t3_kx7a0l;False;True;t1_gjayyxx;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjb0ak7/;1610771315;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hell-schwarz;;;[];;;;text;t2_z247q;False;False;[];;I paused some shows so I could watch them in one go honestly. I can't keep up with 16 shows.;False;False;;;;1610680659;;False;{};gjb0c6i;False;t3_kx7vyz;False;True;t1_gj8mf4o;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb0c6i/;1610771343;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wolfpwarrior;;;[];;;;text;t2_fl0wz;False;False;[];;Ponytails turn me on.;False;False;;;;1610680774;;False;{};gjb0jqw;False;t3_kx7a0l;False;True;t1_gjb0ak7;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjb0jqw/;1610771476;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lanariley;;;[];;;;text;t2_5k9zu47h;False;False;[];;We are same Reiner.;False;False;;;;1610680833;;False;{};gjb0ntc;False;t3_kx7vyz;False;False;t1_gj9bo1x;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb0ntc/;1610771545;32;True;False;anime;t5_2qh22;;0;[]; -[];;;Waterburst789;;;[];;;;text;t2_134kz1;False;False;[];;Series question, If Tsukasa were in the Survey Corps, would he be on par with either Mikasa or Levi or above them?;False;False;;;;1610680847;;False;{};gjb0oqw;False;t3_kx7vyz;False;True;t1_gj9atkv;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb0oqw/;1610771560;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lanariley;;;[];;;;text;t2_5k9zu47h;False;False;[];;One piece : supernova vs 2 Yonkou war;False;False;;;;1610680942;;False;{};gjb0v21;False;t3_kx7vyz;False;True;t1_gj8mjdj;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb0v21/;1610771668;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610680950;;False;{};gjb0vnm;False;t3_kx7vyz;False;True;t1_gj9izej;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb0vnm/;1610771680;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sprint113;;;[];;;;text;t2_5ihfw;False;False;[];;Ahaha, after the first ep aired last week, I also immediately bought 2 6-packs of Curry Ramen that'll be my companion for future eps.;False;False;;;;1610681046;;False;{};gjb1248;False;t3_kx7a0l;False;True;t1_gj8zq3e;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjb1248/;1610771787;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ninjaboi333;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Ninjaboi333;light;text;t2_9fyks;False;True;[];;I know my personal limit given other things I'm working on is like 12, maybe 15 max if I stretch it. Given that Cells at Work has only 8 eps and d4dj is almost done partway through, I think I can do it but at one point I was at least 3 episode ruling 27 series. I really need to find more cuts or put some on hold for a later time.;False;False;;;;1610681046;;False;{};gjb125f;False;t3_kx7vyz;False;False;t1_gj8kx3q;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb125f/;1610771788;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Caenir;;;[];;;;text;t2_12257c;False;False;[];;Last season (first time watching currently airing for a few years) I watched them each every week until like episode 8-10 where I saved them until the last episode was out. I expect that time will come later this season too, or the ones which are good, but not the best will start falling behind.;False;False;;;;1610681307;;False;{};gjb1jni;False;t3_kx7vyz;False;True;t1_gjb0c6i;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb1jni/;1610772082;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AyeItsMeMyDude;;;[];;;;text;t2_15do5f;False;False;[];;It’s on Crunchyroll roll;False;False;;;;1610681339;;False;{};gjb1lra;False;t3_kx7vyz;False;True;t1_gj9thoj;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb1lra/;1610772119;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gazny78;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_zlqd3;False;False;[];;Yes. Been living here for better part of a decade now...;False;False;;;;1610681687;;False;{};gjb28q0;False;t3_kx7a0l;False;True;t1_gjb0324;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjb28q0/;1610772506;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRealAman3;;;[];;;;text;t2_n92m5ro;False;False;[];;We all fall for it.;False;False;;;;1610681909;;False;{};gjb2ndn;False;t3_kx7a0l;False;True;t1_gj8qh8b;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjb2ndn/;1610772760;2;True;False;anime;t5_2qh22;;0;[]; -[];;;xykist;;;[];;;;text;t2_kzxlr;False;False;[];;"Yuru camp is honestly one of the most surprisingly enjoyable anime I've ever watched. It's slow paced, there's no serious plot, and camping is a completely unfamiliar and unexciting topic to me. And yet I can't seem to get enough of the show. - -I don't remember what made me even consider the first episode but I'm so glad I did";False;False;;;;1610682094;;False;{};gjb2zbs;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjb2zbs/;1610772957;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Rally8889;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kilimonian;light;text;t2_1qx0or1k;False;False;[];;In hindsight, the story at first made me think it'd be about the Senku-Taigu bromance, but now I know it's about the Senku-Gen bromance all along. Brain and brain instead of brain and brawn.;False;False;;;;1610682169;;False;{};gjb347m;False;t3_kx7vyz;False;False;t1_gj8iaxy;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb347m/;1610773035;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Boogiepop_Homunculus;;;[];;;;text;t2_ex1rn;False;False;[];;This is my first time watching an anime where I'm caught up on the manga. I'm excited.;False;False;;;;1610682222;;False;{};gjb37ls;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb37ls/;1610773088;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Doomroar;;MAL;[];;http://myanimelist.net/profile/Doomroar;dark;text;t2_bk6ee;False;False;[];;"If that's not a image of Nikki listening to Lillian i will be really disappointed mr. - -Oh it was Gen, that's actually correct too.";False;False;;;;1610682275;;False;{};gjb3b38;False;t3_kx7vyz;False;False;t1_gj8yoq5;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb3b38/;1610773143;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ProgramTheWorld;;;[];;;;text;t2_fmd67;False;False;[];;Living the dream;False;False;;;;1610682456;;False;{};gjb3n1l;False;t3_kx7a0l;False;False;t1_gjb28q0;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjb3n1l/;1610773337;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fatalystic;;;[];;;;text;t2_xy716;False;False;[];;Instead of a yule log stream, we can have a winter camp stream.;False;False;;;;1610682660;;False;{};gjb405m;False;t3_kx7a0l;False;True;t1_gj8smhr;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjb405m/;1610773559;2;True;False;anime;t5_2qh22;;0;[]; -[];;;megatsuna;;;[];;;;text;t2_7is0v;False;False;[];;"god i'm so happy to see Senku again. I swear watching this episode felt like seeing old friends again. - -i do kinda hope with this anime being a shounen that we'll get some decent versus fights though senku is actually trying his best to not actually have any fights to begin with.";False;False;;;;1610682700;;False;{};gjb42px;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb42px/;1610773602;2;True;False;anime;t5_2qh22;;0;[]; -[];;;officergogo69;;;[];;;;text;t2_4v43ojon;False;False;[];;Filled my happiness quota for the week;False;False;;;;1610682708;;False;{};gjb438x;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjb438x/;1610773613;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xzcarloszx;;;[];;;;text;t2_886vs;False;False;[];;It is strange maybe being in a super hype season and losing momentum from the break? Honestly it's just as good if not better than the first half so far.;False;False;;;;1610682773;;False;{};gjb47ch;False;t3_kx7vyz;False;True;t1_gj9h3fj;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb47ch/;1610773684;1;True;False;anime;t5_2qh22;;0;[]; -[];;;omarninopequeno;;MAL;[];;https://myanimelist.net/animelist/omarninopequeno?status=2;dark;text;t2_fje75;False;False;[];;Heh, I just did.;False;False;;;;1610682849;;False;{};gjb4c7p;False;t3_kx7vyz;False;True;t1_gj8lr4j;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb4c7p/;1610773764;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fatalystic;;;[];;;;text;t2_xy716;False;False;[];;"Shows with that level of violence usually get late-night slots when kids are unlikely to be watching so they can just about get away with it. - -Any mundane offences like underage drinking/smoking or speeding tend to be touchy though, so most content creators try to avoid them.";False;False;;;;1610683140;;False;{};gjb4uqb;False;t3_kx7a0l;False;False;t1_gjatwe8;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjb4uqb/;1610774066;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AwakenedSheeple;;;[];;;;text;t2_bm454;False;False;[];;"For all we know, it could be as primitive as people actually pedaling with their feet. -Slow, but still far more armor than just skins.";False;False;;;;1610683505;;False;{};gjb5htr;False;t3_kx7vyz;False;True;t1_gj9xbro;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb5htr/;1610774450;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jandkas;;;[];;;;text;t2_dkvxm;False;False;[];;Yurucamp 2077 the secret society blanket controls the flow of fluff;False;False;;;;1610683576;;False;{};gjb5m5r;False;t3_kx7a0l;False;False;t1_gj8sztb;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjb5m5r/;1610774518;27;True;False;anime;t5_2qh22;;0;[]; -[];;;Darkelementzz;;;[];;;;text;t2_11yf1u;False;False;[];;I'm up to 15 shows now!! I don't think we've ever had a season this stacked before!!;False;False;;;;1610683590;;False;{};gjb5n2c;False;t3_kx7vyz;False;True;t1_gj8jybx;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb5n2c/;1610774532;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fatalystic;;;[];;;;text;t2_xy716;False;False;[];;"> Like Yui from Lucky Star. - -\*Gravity plays in the background*";False;False;;;;1610683964;;False;{};gjb6a7k;False;t3_kx7a0l;False;True;t1_gj931vu;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjb6a7k/;1610774900;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Alaskan_Bull_Worm_Jr;;;[];;;;text;t2_2kob6py3;False;False;[];;"To put you into perspective, - -Try to imagine Beserk 2016 animation. But worse. And it's on modern settings. And it claims to beat other Sci-fi series in this industry. - -My eyes need hearing aid after watching that";False;False;;;;1610684051;;False;{};gjb6fkg;False;t3_kx7vyz;False;False;t1_gj9jrpj;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb6fkg/;1610774983;5;True;False;anime;t5_2qh22;;0;[]; -[];;;josanuz;;;[];;;;text;t2_1s4w10b5;False;False;[];;Fought with pillows and water guns;False;False;;;;1610684384;;False;{};gjb703v;False;t3_kx7vyz;False;False;t1_gjabdd8;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb703v/;1610775308;13;True;False;anime;t5_2qh22;;0;[]; -[];;;fredthefishlord;;;[];;;;text;t2_ba5at3b;False;False;[];;"Then we could say ""If I had nickel for every political marriage in a stone age anime, I'd have 2 nickels, but it's weird that it happened twice""";False;False;;;;1610684565;;False;{};gjb7b76;False;t3_kx7vyz;False;False;t1_gj9izej;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb7b76/;1610775479;20;True;False;anime;t5_2qh22;;0;[]; -[];;;fatalystic;;;[];;;;text;t2_xy716;False;False;[];;"Incidentally, the real Shippeitaro III went missing in August 2010. He was already really old then and his eyes and hearing were failing. - -I can't seem to find anything on whether or not they managed to find him in the end. Nor can I find anything about a successor. Perhaps things have gone better in the Yuru Camp timeline.";False;False;;;;1610684590;;False;{};gjb7cph;False;t3_kx7a0l;False;True;t1_gj8qibe;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjb7cph/;1610775504;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EPLWA_Is_Relevant;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/EPLWA/animelist;light;text;t2_hk8ga;False;False;[];;They're all going to catch the Japanese cold!;False;False;;;;1610684603;;False;{};gjb7dh7;False;t3_kx7vyz;False;False;t1_gjb703v;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb7dh7/;1610775516;5;True;False;anime;t5_2qh22;;0;[]; -[];;;EarthRat_;;;[];;;;text;t2_117993;False;False;[];;As good as season 1 so far?;False;False;;;;1610684835;;False;{};gjb7rsa;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb7rsa/;1610775747;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Astrayed_Zoro;;;[];;;;text;t2_5ypafin3;False;False;[];;It's just ongoing series including usually 6 continuing ones. School made me busier tho so it plummeted in the previous seasons, but I still watch them in weekends. There's just too many sequels of what I've already watched this season plus there are good new ones too resulting to estimated 32 for this season.;False;False;;;;1610685391;;False;{};gjb8pgf;False;t3_kx7vyz;False;True;t1_gj8v6tz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb8pgf/;1610776291;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cornonthekopp;;;[];;;;text;t2_16smxv;False;False;[];;I agree, season 1 is really impressive with how much they did on a limites budget, and it’s so cool to see the show get some more production value season two.;False;False;;;;1610685482;;False;{};gjb8utq;False;t3_kx7a0l;False;True;t1_gj8mibq;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjb8utq/;1610776378;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dio5000;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gundam336;light;text;t2_5czjwh85;False;False;[];;**GET EXCITED**;False;False;;;;1610685534;;False;{};gjb8xt8;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb8xt8/;1610776430;2;True;False;anime;t5_2qh22;;0;[]; -[];;;deetricky;;;[];;;;text;t2_wis2k;False;False;[];;Am I the only one kinda bummed out that Rakuen isn't on Spotify?;False;False;;;;1610685583;;False;{};gjb90qc;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb90qc/;1610776479;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RipjawGaming;;;[];;;;text;t2_1uj3nm4p;False;False;[];;Pretty sure the first half of the episode was filler;False;False;;;;1610685640;;False;{};gjb944a;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb944a/;1610776537;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Killllerr;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Monomuske;light;text;t2_7zpm7;False;False;[];;Wonder what the dr stone equivalant of zenith will be.;False;False;;;;1610685782;;False;{};gjb9ckt;False;t3_kx7vyz;False;True;t1_gj8l9li;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjb9ckt/;1610776677;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Aperture_Kubi;;;[];;;;text;t2_3n9pj;False;False;[];;I'm glad we got a bit of Unhinged Sensei, it wouldn't feel right for her to appear without at least some of it.;False;False;;;;1610686007;;False;{};gjb9pvi;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjb9pvi/;1610776892;2;True;False;anime;t5_2qh22;;0;[]; -[];;;xolon6;;;[];;;;text;t2_1dfc1jam;False;False;[];;I loved it. Really smooth vibe. But also catchy.;False;False;;;;1610686249;;False;{};gjba3so;False;t3_kx7vyz;False;True;t1_gj9jllw;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjba3so/;1610777123;2;True;False;anime;t5_2qh22;;0;[]; -[];;;zenithfury;;;[];;;;text;t2_eevh0;False;False;[];;In between season 1 and 2 I got to watching some camping videos, and one of them was by this guy called ALPHATEC, who makes delicious camp food. He uses very similar equipment to the ones found in this show. In this episode Shimarin used a small knife and made some tinder, almost exactly as ALPHATEC would do it.;False;False;;;;1610686602;;False;{};gjbaohd;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbaohd/;1610777456;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Saucy_Totchie;;;[];;;;text;t2_n6mml;False;False;[];;As someone looking to get a dog, I WAS NOT READY FOR THE DISCUSSION OF OUTLIVING YOUR PET!!! This has been a barrier for me in the past that I dont want to have to face and have done so by just not getting a dog. I just live vicariously through others. My cousin has a very sweet lil fur baby and my BIL has a nice big woofer and I'm fine with them for now.;False;False;;;;1610686756;;False;{};gjbax3t;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbax3t/;1610777594;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Saucy_Totchie;;;[];;;;text;t2_n6mml;False;False;[];;I've been thinking about getting a dog lately but this has been my main barrier. Idk if I can handle it.;False;False;;;;1610687042;;False;{};gjbbd7b;False;t3_kx7a0l;False;True;t1_gj8puqe;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbbd7b/;1610777850;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fridchikn24;;;[];;;;text;t2_b0c3x;False;False;[];;">angry ~~Nadeshiko~~ Aki noises";False;False;;;;1610687575;;False;{};gjbc6ig;False;t3_kx7a0l;False;False;t1_gj8sp0d;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbc6ig/;1610778310;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fridchikn24;;;[];;;;text;t2_b0c3x;False;False;[];;"> and finished it with Wrestle Kingdom - -12 or 13, either way I'm jelly";False;False;;;;1610688031;;False;{};gjbcuwv;False;t3_kx7a0l;False;True;t1_gj9wnn9;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbcuwv/;1610778690;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nananashi3;;;[];;;;text;t2_soegz;False;False;[];;"[Google copyright watermark](https://i.imgur.com/qgxfNZU.png) in top left at 21:15. - -Same for the anime [The Day I Became a God](https://img.anime2you.de/2020/11/kamisama-google-mark.jpg) last season.";False;False;;;;1610688111;;False;{};gjbcz8g;False;t3_kx7a0l;False;True;t1_gj8hl3b;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbcz8g/;1610778762;3;True;False;anime;t5_2qh22;;0;[]; -[];;;moojc;;;[];;;;text;t2_60702;False;False;[];;mafuyu sensei in bokuben too lol;False;False;;;;1610689013;;False;{};gjbe9y2;False;t3_kx7a0l;False;False;t1_gj92mqz;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbe9y2/;1610779520;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Nuzilla;;;[];;;;text;t2_5ovlyorj;False;False;[];;It was a great episode, but the argument that inventions are going faster and faster and that can make it loose z bit of it's importance in the anime, nah?;False;False;;;;1610689226;;False;{};gjbeksv;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbeksv/;1610779688;1;True;False;anime;t5_2qh22;;0;[]; -[];;;enag7;;;[];;;;text;t2_96akx;False;False;[];;As someone who lives and grew up in the northern Canadian Prairies and lived in Japan for a summer I found it to be decently bearable all things considered. Like sure there were some really hot days, the day I left sticks out where it was so hot and humid I was drenched just carrying my luggage down 2 flights of stairs, but otherwise it was generally manageable. Widespread AC, shade and cold foods made it easy to manage and you can always just go out in the evening since it gets dark fairly early there. Add in the rainy season and I found Japanese summer to be quite enjoyable overall.;False;False;;;;1610689294;;False;{};gjbeoej;False;t3_kx7a0l;False;True;t1_gj8y1p6;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbeoej/;1610779743;3;True;False;anime;t5_2qh22;;0;[]; -[];;;complemenberry;;;[];;;;text;t2_5jn7lagp;False;False;[];;Damn I wanna try that matcha tiramisu now.;False;False;;;;1610689525;;False;{};gjbf09g;False;t3_kx7a0l;False;False;t1_gj931e9;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbf09g/;1610779921;10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610689963;;False;{};gjbfmne;False;t3_kx7a0l;False;True;t1_gj8ibbz;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbfmne/;1610780267;1;True;False;anime;t5_2qh22;;0;[]; -[];;;marcushendriksen;;;[];;;;text;t2_3picdciq;False;False;[];;Wait, it's out now?!;False;False;;;;1610689978;;False;{};gjbfner;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbfner/;1610780278;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gazny78;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_zlqd3;False;False;[];;I'll probably miss Rin's inner monologues but if they replace it with more Rin noises, it's still going to be perfect! Bonus points if the only actual talking comes from Pinecone-chan, Scooter-kun and other inanimate objects.;False;False;;;;1610689991;;False;{};gjbfo28;False;t3_kx7a0l;False;False;t1_gj8smhr;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbfo28/;1610780288;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Erianimul;;;[];;;;text;t2_7lpw9;False;False;[];;I was curious who he was going to be voiced by but I think it hurt more that there wasn't a voice at all.;False;False;;;;1610690352;;False;{};gjbg5y1;False;t3_kx7vyz;False;False;t1_gj8yowd;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbg5y1/;1610780562;17;True;False;anime;t5_2qh22;;0;[]; -[];;;gazny78;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_zlqd3;False;False;[];;I'd like to think Pinecone-chan's soul is reincarnated into a new, still unopened seed, and becoming kindling is just part of the cycle.;False;False;;;;1610690495;;False;{};gjbgd9v;False;t3_kx7a0l;False;True;t1_gjauec4;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbgd9v/;1610780671;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chaosof99;;;[];;;;text;t2_6y6y6;False;False;[];;"Twelve. Was really hoping for Naito to win that year, but alas. Still an amazing show and the energy in the building was amazing. - -Actually did a bunch of wrestling events, including a DDT/BJW wrestling show on New Year's eve at Korakuen, a Stardom show at ShinKiba 1st Ring and the Tokyo Joshi Pro show they have every year at Korakuen before WK.";False;False;;;;1610690771;;False;{};gjbgqtm;False;t3_kx7a0l;False;True;t1_gjbcuwv;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbgqtm/;1610780882;1;True;False;anime;t5_2qh22;;0;[]; -[];;;complemenberry;;;[];;;;text;t2_5jn7lagp;False;False;[];;Nice, thanks for the tip!;False;False;;;;1610690831;;False;{};gjbgts4;False;t3_kx7a0l;False;False;t1_gjatj94;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbgts4/;1610780928;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Orange5151;;;[];;;;text;t2_grs4v;False;False;[];;10 billion percent that I will never skip this new opening for stone wars;False;False;;;;1610691214;;False;{};gjbhcb0;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbhcb0/;1610781213;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fridchikn24;;;[];;;;text;t2_b0c3x;False;False;[];;You go to the All Japan show??;False;False;;;;1610691264;;False;{};gjbhese;False;t3_kx7a0l;False;True;t1_gjbgqtm;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbhese/;1610781250;1;True;False;anime;t5_2qh22;;0;[]; -[];;;legend_89757;;;[];;;;text;t2_he2er;False;False;[];;you should stay and listen chrome;False;False;;;;1610691422;;False;{};gjbhm9d;False;t3_kx7vyz;False;False;t1_gj94rzq;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbhm9d/;1610781363;38;True;False;anime;t5_2qh22;;0;[]; -[];;;chaosof99;;;[];;;;text;t2_6y6y6;False;False;[];;Unfortunately no.;False;False;;;;1610691685;;False;{};gjbhyqa;False;t3_kx7a0l;False;True;t1_gjbhese;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbhyqa/;1610781554;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pufflekun;;;[];;;;text;t2_35xur;False;False;[];;"> its probably some legal reason - -Sure, but that doesn't mean they're not also making it as comedic as possible. Kinda like how in a harem anime with girls under the legal drinking age, they'll all get totally drunk off of *one* chocolate liquor.";False;False;;;;1610691851;;1610723446.0;{};gjbi6l0;False;t3_kx7a0l;False;False;t1_gja0dfs;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbi6l0/;1610781671;3;True;False;anime;t5_2qh22;;0;[]; -[];;;gabu87;;;[];;;;text;t2_1l9auf0v;False;False;[];;She's actually not that deadpan, it's just that she and nadeshiko had more shared scenes and looked comparatively calm.;False;False;;;;1610692149;;False;{};gjbik8d;False;t3_kx7a0l;False;False;t1_gj8pfyt;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbik8d/;1610781882;18;True;False;anime;t5_2qh22;;0;[]; -[];;;saga999;;;[];;;;text;t2_9ppe9;False;False;[];;If you're into comedy, Suppose a Kid From the Last Dungeon Boonies Moved to a Starter Town.;False;False;;;;1610692920;;False;{};gjbjj5s;False;t3_kx7vyz;False;True;t1_gj93yrn;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbjj5s/;1610782427;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saga999;;;[];;;;text;t2_9ppe9;False;False;[];;Excluding sequels, I'll say Back Arrow. SK8 the Infinity is also pretty good.;False;False;;;;1610693119;;False;{};gjbjrvr;False;t3_kx7vyz;False;True;t1_gja7lqo;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbjrvr/;1610782557;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wolfguardian72;;MAL;[];;;dark;text;t2_71wn5;False;True;[];;It kinda helps to keep a schedule. Makes it super easy to keep track.;False;False;;;;1610693199;;False;{};gjbjvf6;False;t3_kx7vyz;False;True;t1_gj8jybx;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbjvf6/;1610782610;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThrowCarp;;;[];;;;text;t2_79cxz;False;False;[];;and pizza.;False;False;;;;1610693392;;False;{};gjbk3zx;False;t3_kx7a0l;False;False;t1_gj9cmnp;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbk3zx/;1610782740;6;True;False;anime;t5_2qh22;;0;[]; -[];;;F00dbAby;;;[];;;;text;t2_rt6uy;False;False;[];;"Wonder egg priority - -Sk8 the infinity - -Kemono jihen";False;False;;;;1610693406;;False;{};gjbk4ke;False;t3_kx7vyz;False;True;t1_gj93yrn;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbk4ke/;1610782747;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wolfguardian72;;MAL;[];;;dark;text;t2_71wn5;False;True;[];;"And with this, Teacher’s Thursday (what I’m calling it anyway) is set. We learn anatomy thanks to Cells at Work! and Cells at Work! Code Black. We learn about animals thanks to Heaven’s Design Team. And now we’re back with science with Dr. Stone!!! - -What a fun day to learn!";False;False;;;;1610693537;;False;{};gjbka6z;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbka6z/;1610782840;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Epsilon748;;;[];;;;text;t2_4nd9f;False;False;[];;Amiami even put up branded camping stuff recently and it sold out basically instantly. I grabbed a cast iron pan and a couple of mess kit parts. I was last in Japan in 2019 and Yurucamp was still everywhere despite being over a year past first airing.;False;False;;;;1610693552;;False;{};gjbkauo;False;t3_kx7a0l;False;True;t1_gj8sztb;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbkauo/;1610782849;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThrowCarp;;;[];;;;text;t2_79cxz;False;False;[];;And Sensei from Azumanga Daioh.;False;False;;;;1610693808;;False;{};gjbklta;False;t3_kx7a0l;False;False;t1_gj931vu;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbklta/;1610783021;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zemahem;;;[];;;;text;t2_2i7j9c90;False;False;[];;Pinecone-chan's backstory is a lot more mystical and intriguing than it first seems. Maybe it's even ripe for an entire spin-off series.;False;False;;;;1610693897;;False;{};gjbkpke;False;t3_kx7a0l;False;True;t1_gjbgd9v;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbkpke/;1610783076;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KinoHiroshino;;;[];;;;text;t2_6x5tw;False;False;[];;[Poor Chiyo-chan...](https://youtu.be/FS9csiX95dQ);False;False;;;;1610693925;;False;{};gjbkqrr;False;t3_kx7a0l;False;False;t1_gj98zk4;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbkqrr/;1610783094;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ThrowCarp;;;[];;;;text;t2_79cxz;False;False;[];;I can hear Kongou whenever she does that.;False;False;;;;1610693938;;False;{};gjbkrbx;False;t3_kx7a0l;False;True;t1_gj94fe2;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbkrbx/;1610783103;3;True;False;anime;t5_2qh22;;0;[]; -[];;;rotten_riot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RottenOrange/;light;text;t2_20f93nxp;False;False;[];;Maybe my memory is off but was the instant ramen thing in the manga or it was anime original?;False;False;;;;1610693964;;False;{};gjbksg8;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbksg8/;1610783120;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Epsilon748;;;[];;;;text;t2_4nd9f;False;False;[];;I did a matcha tiramisu and tea set at Ippodo in Kyoto, nothing fancy but they're known for amazing quality. It looked just like this set but also in historical building in the city. I brought home one of their tea kits and so much tea and it was glorious.;False;False;;;;1610693977;;False;{};gjbkszu;False;t3_kx7a0l;False;True;t1_gjbf09g;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbkszu/;1610783128;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Agni7atha;;;[];;;;text;t2_lz9tdz;False;False;[];;"We've been so blessed with this Rin focused episode. I wish this episode air two weeks earlier, so we can enjoy it at the same time with the real life new year eve. - -The music is impressive as always. It's really setting up the right mood for the scene. I enjoy these new composed music. Can't wait to get the full OST album.";False;False;;;;1610693981;;False;{};gjbkt65;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbkt65/;1610783131;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rotten_riot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RottenOrange/;light;text;t2_20f93nxp;False;False;[];;"The climber waifu is back! - -# I REPEAT, THE CLIMBER WAIFU IS BACK!";False;False;;;;1610694020;;False;{};gjbkusl;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbkusl/;1610783156;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThrowCarp;;;[];;;;text;t2_79cxz;False;False;[];;"> Rin trying to hold it in and not shout ""UMI DA!"" was pretty adorable! - -I heard Kongou when she imagined herself shouting that.";False;False;;;;1610694056;;False;{};gjbkwc5;False;t3_kx7a0l;False;True;t1_gj8xz8o;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbkwc5/;1610783180;3;True;False;anime;t5_2qh22;;0;[]; -[];;;rotten_riot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RottenOrange/;light;text;t2_20f93nxp;False;False;[];;Same. I love all the girls but the best thing on Yuru Camp is definitely Rin solo camping. It's so chill and relaxing that you feel like you're there too.;False;False;;;;1610694095;;False;{};gjbky06;False;t3_kx7a0l;False;True;t1_gj8ibbz;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbky06/;1610783204;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KinoHiroshino;;;[];;;;text;t2_6x5tw;False;False;[];;"*Saito’s alarm was for 9:00 am* - -> Ena had the best first new year's sunrise cause nothing beats waking up late on new year's day. - -> waking up late on new year's day. - -> waking up late - -[Me](https://i.kym-cdn.com/photos/images/newsfeed/001/485/098/245.gif)";False;False;;;;1610694299;;False;{};gjbl6ib;False;t3_kx7a0l;False;True;t1_gj8nyio;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbl6ib/;1610783329;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ManateeofSteel;;MAL;[];;http://myanimelist.net/animelist/daysun22;dark;text;t2_ft1fk;False;False;[];;I was in Japan for new years in 2019 and there were Yuru Camp events despite the series having ended already. It did pretty well;False;False;;;;1610694378;;False;{};gjbl9sa;False;t3_kx7a0l;False;True;t1_gj8mibq;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbl9sa/;1610783380;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;Sasuga Kohaku!;False;False;;;;1610694446;;False;{};gjblcix;False;t3_kx7vyz;False;False;t1_gjawnpg;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjblcix/;1610783420;17;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;Mood Whiplash is great this season.;False;False;;;;1610694507;;False;{};gjbleyl;False;t3_kx7vyz;False;True;t1_gj9dt2q;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbleyl/;1610783458;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DaLoverBoii;;;[];;;;text;t2_cc2ss3;False;False;[];;Same, I'm watching like, 20 shows in the whole week.;False;False;;;;1610694521;;False;{};gjblfjv;False;t3_kx7vyz;False;True;t1_gj8jybx;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjblfjv/;1610783467;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;It might just come down to tastes. S2 was very political. I like it more than S1 but I can see why others may like S1 better.;False;False;;;;1610694659;;False;{};gjbll3p;False;t3_kx7vyz;False;True;t1_gj958tj;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbll3p/;1610783551;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Radix2309;;;[];;;;text;t2_praen;False;False;[];;I mean theoretically Tuskasa has to sleep eventually. Of course he can one-punch a lion, so what do I know about his capabilities?;False;False;;;;1610694706;;False;{};gjblmzp;False;t3_kx7vyz;False;True;t1_gj8qo7e;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjblmzp/;1610783580;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lrekkk;;;[];;;;text;t2_6bubk4h;False;False;[];;That tank in the OP I'm assuming is interesting. I think it's not gonna blow explosive shells though, probably more like smokes? Also are they sure all 7 billion people are still alive? And by alive I mean not broken even a piece because surely some of them shattered through natural causes right?;False;False;;;;1610694718;;False;{};gjblnfl;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjblnfl/;1610783585;1;True;False;anime;t5_2qh22;;0;[]; -[];;;appleandapples;;;[];;;;text;t2_kvrvf;False;False;[];;Man, I missed this show.;False;False;;;;1610694721;;False;{};gjblnj5;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjblnj5/;1610783587;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;And then Cells at Work BLACK guilt trips you for having sleep deprivation.;False;False;;;;1610694743;;False;{};gjblof3;False;t3_kx7vyz;False;True;t1_gj8pwvk;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjblof3/;1610783600;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;r/nocontext;False;False;;;;1610694794;;False;{};gjblqjx;False;t3_kx7vyz;False;True;t1_gj8utk4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjblqjx/;1610783631;1;True;False;anime;t5_2qh22;;0;[]; -[];;;raidensnakeezio;;;[];;;;text;t2_v1rc3;False;False;[];;"sun ken rock gets really messy in terms of delivering consistent plot lines around the mid point. I think by that time Boichi hit a creative snag, but he had already gone too far, so the least he could do is continue it while touching on several loose ideas he had for plot points. I'm fairly sure the last arc nor the ending is what he originally wanted, nor is it his ideal ending/storyline. - -Edit - in addendum: not to say that sun ken rock is outright bad, absolutely not. It's still pretty cool. Just that the rate of cool things that happen from great writing drops off significantly. - -My biggest minor gripe is the inconsistency in language - which obviously can be contributed to the translation I was reading. In the first act and arc, the dialogue is presented in a way where it's fairly obvious that they're speaking Korean. Ken is fairly fluent in Korean, but the writing tells us that the people around him are aware that Korean is not his native tounge nor ethnicity. This is great. However, Ken meets his girlfriend, and from this point on it becomes unclear at points as to whether or not they are conversing in Korean or Japanese. This issue is further exacerbated down the line when the audience is introduced to the other filler-harem girls. Sometimes they'll say jokes or pull off visual gags that are very Japanese-centric. A similar situation could be found in the latter half of the manga. To my memory, I have bookmarked the page when Ken and his friend are walking up the hill and Ken is wearing a suit - symbolizing that he is a 'made man' but still walking through the slums he fought out of (or something). Another bookmark is when Ken and his girlfriend storm up a resort tower in Jeju (iirc), In the example of Ken walking up the hill, to me it seemed that either Ken became natively fluent in Korean, or that they were suddenly speaking in Japanese. For the resort tower, it felt like the goons were speaking in Japanese. Just my feelings for the latter half of the story, depicted in Korea, presented in Japanese, translated to English.";False;False;;;;1610694805;;1610695903.0;{};gjblqzt;False;t3_kx7vyz;False;True;t1_gj9w8le;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjblqzt/;1610783638;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkMorford;;MAL;[];;http://myanimelist.net/profile/DarkMorford;dark;text;t2_4mu9m;False;False;[];;Baaaaaningu Raaaaaabu!;False;False;;;;1610694838;;False;{};gjblsap;False;t3_kx7a0l;False;False;t1_gjbkrbx;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjblsap/;1610783657;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Radix2309;;;[];;;;text;t2_praen;False;False;[];;They need more than that dont they? They need enough fluid to gain superior numbers.;False;False;;;;1610694910;;False;{};gjblvc0;False;t3_kx7vyz;False;True;t1_gj909rx;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjblvc0/;1610783702;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aethercakes;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SparkleDuck;light;text;t2_79ww5ykd;False;False;[];;Now THAT was a good start. Great episode all around.;False;False;;;;1610694953;;False;{};gjblx1h;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjblx1h/;1610783730;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iAmMutun;;;[];;;;text;t2_afim7;False;False;[];;Thanks again!;False;False;;;;1610695183;;False;{};gjbm6bx;False;t3_kx7a0l;False;True;t1_gj8n26t;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbm6bx/;1610783875;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;"Gen: ""I'm Lilian Weinberg. USA is coming. Open the country. Stop having it be closed.""";False;False;;;;1610695277;;False;{};gjbm9z6;False;t3_kx7vyz;False;False;t1_gj99lbg;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbm9z6/;1610783928;9;True;False;anime;t5_2qh22;;0;[]; -[];;;gamaeng;;;[];;;;text;t2_55igg2pj;False;False;[];;Seriously, if they want to use propaganda use the ramen noodles not the dead singer.;False;False;;;;1610695418;;False;{};gjbmfhp;False;t3_kx7vyz;False;True;t1_gj8lr4j;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbmfhp/;1610784010;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;"Tsukasa: ""Let's make a teenage utopia only of the pure-hearted"" - -also Tsukasa: \*revives obviously-evil guys\*";False;False;;;;1610695492;;False;{};gjbmia0;False;t3_kx7vyz;False;False;t1_gj9084u;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbmia0/;1610784054;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Game2015;;;[];;;;text;t2_poe9a;False;False;[];;I know these threads aren't supposed to tell animeonlys about what happens in the manga, but if anime original scenes occur, can we let them know or not that these aren't in the source materials?;False;False;;;;1610695657;;False;{};gjbmotp;False;t3_kx7vyz;False;True;t1_gj8iaxy;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbmotp/;1610784152;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SataniaSaturday;;;[];;;;text;t2_3phxs4q9;False;False;[];;"It's a bummer, but if they did 24 episodes it would end in an awkward spot in the middle of another arc. - -It's possible we get this arc, then season 3 be 24.";False;False;;;;1610695759;;False;{};gjbmsy5;False;t3_kx7vyz;False;True;t1_gj92v7d;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbmsy5/;1610784214;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rollin340;;;[];;;;text;t2_cmyef;False;False;[];;I love this top tier comf.;False;False;;;;1610695934;;False;{};gjbmzvb;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbmzvb/;1610784318;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MayureshMJ;;;[];;;;text;t2_1dq3tpba;False;False;[];;Well then i hope they come up with season 3 next year lol.;False;False;;;;1610696046;;False;{};gjbn49a;False;t3_kx7vyz;False;True;t1_gjbmsy5;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbn49a/;1610784380;1;True;False;anime;t5_2qh22;;0;[]; -[];;;awpdog;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/aapodogu;light;text;t2_a5b2t7r;False;False;[];;Rin-chan running is officially a mood;False;False;;;;1610696669;;False;{};gjbnslw;False;t3_kx7a0l;False;True;t1_gj8i481;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbnslw/;1610784747;3;True;False;anime;t5_2qh22;;0;[]; -[];;;awpdog;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/aapodogu;light;text;t2_a5b2t7r;False;False;[];;"In the year 2077 what constitutes a crime? - -> Not being C O M F enough.";False;False;;;;1610696734;;False;{};gjbnv5a;False;t3_kx7a0l;False;False;t1_gjb5m5r;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbnv5a/;1610784783;12;True;False;anime;t5_2qh22;;0;[]; -[];;;awpdog;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/aapodogu;light;text;t2_a5b2t7r;False;False;[];;"Sawa-chan - -Mafuyu-sensei - -And now Toba-sensei - -Well it is a requirement for teachers in Japan to be a tofu deliver driver anyway.";False;False;;;;1610696796;;False;{};gjbnxnb;False;t3_kx7a0l;False;False;t1_gj92mqz;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbnxnb/;1610784819;6;True;False;anime;t5_2qh22;;0;[]; -[];;;River_sounds;;;[];;;;text;t2_y4vd1;False;False;[];;Let's go!!!;False;False;;;;1610696870;;False;{};gjbo0j7;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbo0j7/;1610784863;0;True;False;anime;t5_2qh22;;0;[]; -[];;;UDani11;;;[];;;;text;t2_3urk0qno;False;False;[];;Thanks! Yes i remember now.;False;False;;;;1610697223;;False;{};gjboedc;False;t3_kx7vyz;False;True;t1_gjaiup9;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjboedc/;1610785067;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FlyingPiranha;;MAL;[];;https://myanimelist.net/profile/;dark;text;t2_7ke2b;False;False;[];;Mad Dog of Senku vibes;False;False;;;;1610697897;;False;{};gjbp435;False;t3_kx7vyz;False;False;t1_gj93ghh;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbp435/;1610785466;7;True;False;anime;t5_2qh22;;0;[]; -[];;;FlyingPiranha;;MAL;[];;https://myanimelist.net/profile/;dark;text;t2_7ke2b;False;False;[];;7 damn shows I watch are all airing on Thursdays. It's exciting, but it's also a little much, lol;False;False;;;;1610697989;;False;{};gjbp7iv;False;t3_kx7vyz;False;True;t1_gj8jybx;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbp7iv/;1610785520;1;True;False;anime;t5_2qh22;;0;[]; -[];;;komodo_dragonzord;;ann;[];;;dark;text;t2_4q35p;False;False;[];;glad that the recap was really quick and we're back to science!!! So excited that this show is back.;False;False;;;;1610698214;;False;{};gjbpfw0;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbpfw0/;1610785645;1;True;False;anime;t5_2qh22;;0;[]; -[];;;susgnome;;AP;[];;http://www.anime-planet.com/users/RoyalRampage;dark;text;t2_50od8;False;False;[];;"I'm at 20 atm. - -But, I still want to try LBX, Hortensia, Horimiya, Azur Lane and.. *maybe EX-ARM & Redo of Healer*";False;False;;;;1610699218;;False;{};gjbqhrd;False;t3_kx7vyz;False;True;t1_gj8kx3q;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbqhrd/;1610786215;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mrfatso111;;;[];;;;text;t2_fn9fc;False;False;[];;"Agreed, it's been a while, i guess 2021 is off to a better start of the year. - -I gonna need to maranthon log horizon s1 and 2 once more though, i have no idea wtf is going on in s3";False;False;;;;1610699558;;False;{};gjbqudq;False;t3_kx7vyz;False;True;t1_gj8lsg4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbqudq/;1610786401;1;True;False;anime;t5_2qh22;;0;[]; -[];;;When_Ducks_Attack;;;[];;;;text;t2_ag4ui;False;False;[];;Who do we have to throw money at to get *Comfy Witch Camp* to happen? I think I desperately need to see Rin's reaction to a flying whale, and Chibi Inuko eating pancakes.;False;False;;;;1610699589;;False;{};gjbqvi9;False;t3_kx7a0l;False;True;t1_gj8sq4c;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbqvi9/;1610786420;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mrfatso111;;;[];;;;text;t2_fn9fc;False;False;[];;and oops, now we have a recap for our recap episode;False;False;;;;1610699707;;False;{};gjbqzxr;False;t3_kx7vyz;False;True;t1_gj8pmxt;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbqzxr/;1610786483;1;True;False;anime;t5_2qh22;;0;[]; -[];;;When_Ducks_Attack;;;[];;;;text;t2_ag4ui;False;False;[];;"> Where Rin saw the first sunrise of the year - -So the torii is a temporary installation, I suppose? That's a pity.";False;False;;;;1610700163;;False;{};gjbrgg0;False;t3_kx7a0l;False;True;t1_gj8hl3b;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbrgg0/;1610786728;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CosmicPenguin_OV103;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cosmic_Penguin;light;text;t2_1ufwqhs7;False;True;[];;Yes. It was explicitly mentioned in this episode.;False;False;;;;1610700271;;1610702012.0;{};gjbrkap;False;t3_kx7a0l;False;True;t1_gjbrgg0;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbrkap/;1610786785;1;True;False;anime;t5_2qh22;;0;[]; -[];;;When_Ducks_Attack;;;[];;;;text;t2_ag4ui;False;False;[];;"> just has a small niche fan base. - -Sure, that's obviously why it got a second season.";False;False;;;;1610700286;;False;{};gjbrktx;False;t3_kx7a0l;False;True;t1_gj8pa59;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbrktx/;1610786793;2;True;False;anime;t5_2qh22;;0;[]; -[];;;When_Ducks_Attack;;;[];;;;text;t2_ag4ui;False;False;[];;"> In the year 2077 what constitutes a crime? - -Flying your tent without a license.";False;False;;;;1610700354;;False;{};gjbrn8m;False;t3_kx7a0l;False;False;t1_gjbnv5a;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbrn8m/;1610786829;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Chen19960615;;;[];;;;text;t2_ehqmf;False;False;[];;Sono toori da!;False;False;;;;1610700490;;False;{};gjbrs4b;False;t3_kx7vyz;False;False;t1_gjblcix;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbrs4b/;1610786904;10;True;False;anime;t5_2qh22;;0;[]; -[];;;When_Ducks_Attack;;;[];;;;text;t2_ag4ui;False;False;[];;"> the deliciously disgusting Pizza Hut - -Dinner was a couple of reheated slices of stuffed-crust sausage & pepperoni... while I was watching the show, in fact.";False;False;;;;1610700629;;False;{};gjbrx1e;False;t3_kx7a0l;False;True;t1_gja3dvv;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbrx1e/;1610786976;1;True;False;anime;t5_2qh22;;0;[]; -[];;;athrun_1;;;[];;;;text;t2_ubnet;False;False;[];;"Enlighten me on this one. Senku proposed an instant food, which they can prepare anytime anywhere as the situation demands it. As per the scene, they cooked the cup noodles with hot water... obviously. - -So basically, each group will carry a camping stove (assuming senku developed one) and a kettle?";False;False;;;;1610700775;;False;{};gjbs278;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbs278/;1610787054;1;True;False;anime;t5_2qh22;;0;[]; -[];;;heimdal77;;;[];;;;text;t2_6qr37;False;False;[];;After the first series aired it was reported that there was apparently a massive jump in people visiting camp sites.;False;False;;;;1610700846;;False;{};gjbs4nc;False;t3_kx7a0l;False;False;t1_gj8mibq;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbs4nc/;1610787092;4;True;False;anime;t5_2qh22;;0;[]; -[];;;lemonTheHeavens;;;[];;;;text;t2_5ib7at5e;False;False;[];;Is it just me or did the females eyes get closer;False;False;;;;1610700923;;False;{};gjbs7gx;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbs7gx/;1610787136;2;True;False;anime;t5_2qh22;;0;[]; -[];;;heimdal77;;;[];;;;text;t2_6qr37;False;False;[];;Well Flip flappers apparently bombed in Japan but was rather popular outside in the west. Same with that one about the 7 heros.;False;False;;;;1610701019;;False;{};gjbsb2w;False;t3_kx7a0l;False;True;t1_gj92exw;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbsb2w/;1610787190;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610701127;;False;{};gjbsf2b;False;t3_kx7a0l;False;False;t1_gj8vzx6;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbsf2b/;1610787250;1;True;False;anime;t5_2qh22;;0;[]; -[];;;heimdal77;;;[];;;;text;t2_6qr37;False;False;[];;If that tea shop was real they better hire more staff and stock up because they gonna be getting slammed.;False;False;;;;1610701177;;False;{};gjbsgxp;False;t3_kx7a0l;False;True;t1_gj8tuio;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbsgxp/;1610787278;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jandkas;;;[];;;;text;t2_dkvxm;False;False;[];;Nadeshiko Corp is now a reality, just like in the ovas;False;False;;;;1610701296;;False;{};gjbsl98;False;t3_kx7a0l;False;False;t1_gjbrn8m;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbsl98/;1610787344;4;True;False;anime;t5_2qh22;;0;[]; -[];;;heimdal77;;;[];;;;text;t2_6qr37;False;False;[];;[That was made years ago](https://myanimelist.net/anime/7897/Issho_ni_Sleeping__Sleeping_with_Hinako);False;False;;;;1610701320;;False;{};gjbsm4g;False;t3_kx7a0l;False;False;t1_gj8voy7;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbsm4g/;1610787355;1;True;False;anime;t5_2qh22;;0;[]; -[];;;heimdal77;;;[];;;;text;t2_6qr37;False;False;[];;[That was made years ago](https://myanimelist.net/anime/7897/Issho_ni_Sleeping__Sleeping_with_Hinako);False;False;;;;1610701355;;False;{};gjbsnbi;False;t3_kx7a0l;False;True;t1_gj9lx8w;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbsnbi/;1610787374;2;True;False;anime;t5_2qh22;;0;[]; -[];;;heimdal77;;;[];;;;text;t2_6qr37;False;False;[];;Ya if that store is real good luck getting in after this episode. it gonna be getting slammed.;False;False;;;;1610701409;;False;{};gjbsp95;False;t3_kx7a0l;False;True;t1_gjbf09g;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbsp95/;1610787403;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Maybe-Lucky;;;[];;;;text;t2_4dtxo0gy;False;False;[];;there's manga called dricam about cute girls doing drift, it's not a teacher but a college student;False;False;;;;1610701474;;False;{};gjbsrma;False;t3_kx7a0l;False;True;t1_gjap1zl;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbsrma/;1610787438;1;True;False;anime;t5_2qh22;;0;[]; -[];;;When_Ducks_Attack;;;[];;;;text;t2_ag4ui;False;False;[];;They mentioned they had put one up. I assumed that meant it was a permanent thing.;False;False;;;;1610701944;;False;{};gjbt8fk;False;t3_kx7a0l;False;True;t1_gjbrkap;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbt8fk/;1610787691;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PBTUCAZ;;;[];;;;text;t2_ldqak;False;False;[];;[Start playing this](https://youtu.be/NrjbeE90vVY);False;False;;;;1610703248;;False;{};gjbuilp;False;t3_kx7vyz;False;True;t1_gj9zbra;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbuilp/;1610788399;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Wavernor;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Wavernor;light;text;t2_dv4e7;False;False;[];;I haven't been excited for the rest of a season like this in a while.;False;False;;;;1610703889;;False;{};gjbv52i;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbv52i/;1610788741;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;I might have missed it, but what is the ED name? Shit slaps;False;False;;;;1610703992;;False;{};gjbv8mf;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbv8mf/;1610788796;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FearlessOverlord_;;;[];;;;text;t2_1haeq1mq;False;False;[];;Gen imitating Lilian’s voice reminded me of that one scene in Grand Blue Dreaming when Kouhei was imitating different girls lol;False;False;;;;1610704173;;False;{};gjbveqj;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbveqj/;1610788889;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mnt51;;;[];;;;text;t2_57sxz2xa;False;False;[];;" I am Japanese. I use google translate. - -yuru camp is popular enough, so don't worry about it. (Of course it's less popular than Attack on Titan and Jujutsu Kaisen lol.) - -Rather, I'm curious about how yuru camp is evaluated overseas.";False;False;;;;1610704432;;False;{};gjbvnld;False;t3_kx7a0l;False;True;t1_gj8mibq;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbvnld/;1610789024;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Epsilon748;;;[];;;;text;t2_4nd9f;False;False;[];;Thanks for the link, I've been hunting for that adorable little hibachi she has. I've got a wood burning solo stove light that's fine for boiling water but this would be fun for actually grilling. Ordered one to give it a try. Normally a big fan of the jetboil on most trips where I can't have fires.;False;False;;;;1610704552;;False;{};gjbvrks;False;t3_kx7a0l;False;False;t1_gjb0068;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbvrks/;1610789084;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Waterburst789;;;[];;;;text;t2_134kz1;False;False;[];;Everyone be gangsta until Senku builds the Mechanical Bosses;False;False;;;;1610704888;;False;{};gjbw34u;False;t3_kx7vyz;False;True;t1_gjb9ckt;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbw34u/;1610789259;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerdy314159265;;;[];;;;text;t2_752wc;False;False;[];;On another not USA and USA and USA looking tense too.;False;False;;;;1610704904;;False;{};gjbw3p5;False;t3_kx7vyz;False;False;t1_gja1l7r;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbw3p5/;1610789268;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Epsilon748;;;[];;;;text;t2_4nd9f;False;False;[];;Guy below helped me find the model name so I knew what to search for. [Amazon.co.jp has it for $68 + $20 shipped](https://www.amazon.co.jp/-/en/SHO-0004-10-25-Compact-Hibachi-Grill-Piece/dp/B00KKQASKQ/);False;False;;;;1610704985;;False;{};gjbw6hs;False;t3_kx7a0l;False;True;t1_gj9foa8;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbw6hs/;1610789309;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerdy314159265;;;[];;;;text;t2_752wc;False;False;[];;My Saturdays are barren at the moment unfortunately.;False;False;;;;1610705042;;False;{};gjbw8jw;False;t3_kx7vyz;False;True;t1_gj8lsg4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbw8jw/;1610789339;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mantisman;;;[];;;;text;t2_6jvk8;False;False;[];;If we’re going based of the anime, then we had a declaration of war last week on the Warlords.;False;False;;;;1610705904;;False;{};gjbx34v;False;t3_kx7vyz;False;False;t1_gjb0v21;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbx34v/;1610789796;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SailorArashi;;;[];;;;text;t2_orqld;False;True;[];;"Nothing's gonna beat the jetboil when what you need is two cups of water boiled in two minutes. A jetboil and a backpack full of Mountain House is good camping...if a bit expensive :D - -I haven't had a chance to try the little hibachi yet other than practicing taking it apart and putting it back together. Looking forward to testing it out once the weather improves slightly.";False;False;;;;1610706094;;False;{};gjbx9xm;False;t3_kx7a0l;False;True;t1_gjbvrks;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbx9xm/;1610789899;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Trahona;;;[];;;;text;t2_80hirv3e;False;False;[];;Out all the anime this season Stone War is in my top 3 to watch. Such a fun episode.;False;False;;;;1610706161;;False;{};gjbxcaj;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbxcaj/;1610789933;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;What the heck?;False;False;;;;1610707167;;False;{};gjbybt8;False;t3_kx7a0l;False;True;t1_gjbcz8g;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbybt8/;1610790481;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;">[Where Rin saw the first sunrise of the year](https://goo.gl/maps/v6NM1EDqv4LgK1fM9) - -Huh… I was expecting a beach that faced east";False;False;;;;1610707200;;False;{};gjbycxk;False;t3_kx7a0l;False;True;t1_gj8hl3b;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbycxk/;1610790497;2;True;False;anime;t5_2qh22;;0;[]; -[];;;one-eyed-02;;;[];;;;text;t2_783k5oi0;False;False;[];;"""Eh, Tsukasa, you ever heard about the War of Roses, and how it all ended?""";False;False;;;;1610707326;;False;{};gjbyhhd;False;t3_kx7vyz;False;False;t1_gj8qzm8;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbyhhd/;1610790566;5;True;False;anime;t5_2qh22;;0;[]; -[];;;one-eyed-02;;;[];;;;text;t2_783k5oi0;False;False;[];;No bro that's the opening. Playing the opening at the end in the first episode is what studios do when they can't be chads like White Fox.;False;False;;;;1610707443;;False;{};gjbylos;False;t3_kx7vyz;False;True;t1_gj8lbhs;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbylos/;1610790629;3;True;False;anime;t5_2qh22;;0;[]; -[];;;one-eyed-02;;;[];;;;text;t2_783k5oi0;False;False;[];;I believe that Cup Ramen was invented by Americans shortly after World Was 2.;False;False;;;;1610707511;;False;{};gjbyo2v;False;t3_kx7vyz;False;False;t1_gj9q25n;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjbyo2v/;1610790665;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;[It's all of a piece with Japanese thinking](https://en.wikipedia.org/wiki/Mono_no_aware);False;False;;;;1610708087;;False;{};gjbz8n3;False;t3_kx7a0l;False;True;t1_gj9ges1;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjbz8n3/;1610790974;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;"[It's okay, Rin! You can get excited!](https://i.imgur.com/tqUYQo7.jpeg) - -[I don't know why but I find it super cute when anyone puts an upper lip on something](https://i.imgur.com/AnL26yb.jpeg) - -[That's pretty neat. I do doubt my ability to make one though](https://i.imgur.com/klzCMv6.jpeg) - -[""Here's snow up your back, now pay me!""](https://i.imgur.com/g8kWgzY.jpg) - -[COVID has me traumatized seeing something like this](https://i.imgur.com/7lxhudK.jpeg) - -[For those who need Freedom Units™ to get a feel for this, that's about 18.5MPH, a speed pretty attainable on a bicycle](https://i.imgur.com/KojTIcO.jpeg) [](#kukuku2)";False;False;;;;1610708891;;False;{};gjc0281;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjc0281/;1610791426;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Luapix;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Luapix;light;text;t2_dsxeb;False;False;[];;"More like: - -Tsukasa: ""Cool, how about a live performance in English?"" - -Gen: ""...Nigeru n da yoooo""";False;False;;;;1610709700;;False;{};gjc0wbc;False;t3_kx7vyz;False;True;t1_gj99lbg;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjc0wbc/;1610791914;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Epsilon748;;;[];;;;text;t2_4nd9f;False;False;[];;Well you nailed my normal food supply, plus some packets of oatmeal and a baggie of instant coffee. I have friends that will lug beer and canned food but if I'm backpacking I prefer a light pack and if I'm car camping it's cast iron and a cooler all the way.;False;False;;;;1610709972;;1610736946.0;{};gjc16ph;False;t3_kx7a0l;False;True;t1_gjbx9xm;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjc16ph/;1610792078;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ohoni;;;[];;;;text;t2_91pt3;False;False;[];;Pretty sure it was anime original. I guess they wanted some science right away?;False;False;;;;1610712343;;False;{};gjc3r2j;False;t3_kx7vyz;False;True;t1_gjbksg8;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjc3r2j/;1610793552;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ohoni;;;[];;;;text;t2_91pt3;False;False;[];;They aim the language at kids, who would be more familiar with cell phones than with walkie talkies.;False;False;;;;1610712429;;False;{};gjc3uol;False;t3_kx7vyz;False;True;t1_gjaz1j4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjc3uol/;1610793606;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ohoni;;;[];;;;text;t2_91pt3;False;False;[];;I don't know how far s2 intends to get, but I don't think they will get to more Byakuya stuff in the first cour, at least, but honestly, I love those parts. Byakuya is best dad.;False;False;;;;1610712522;;False;{};gjc3yiy;False;t3_kx7vyz;False;True;t1_gjavr21;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjc3yiy/;1610793666;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ohoni;;;[];;;;text;t2_91pt3;False;False;[];;Yeah, this season is way too packed.;False;False;;;;1610712557;;False;{};gjc400b;False;t3_kx7vyz;False;True;t1_gjaguhc;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjc400b/;1610793689;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Saitouplasm;;;[];;;;text;t2_27a0v9iy;False;False;[];;いやーっ**そそるぜ**;False;False;;;;1610713049;;False;{};gjc4ked;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjc4ked/;1610794001;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Goingdownforever;;;[];;;;text;t2_3t8dcl89;False;False;[];;It's like the Battle of France. Everyone thought they were at least equal then one Side absolutely demolished the other.;False;False;;;;1610713737;;False;{};gjc5eev;False;t3_kx7vyz;False;True;t1_gj8q4ha;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjc5eev/;1610794472;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Goingdownforever;;;[];;;;text;t2_3t8dcl89;False;False;[];;The IS a Recap Episode;False;False;;;;1610713849;;False;{};gjc5ji0;False;t3_kx7vyz;False;True;t1_gj8oryv;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjc5ji0/;1610794553;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bloodglas;;;[];;;;text;t2_hrcp6;False;False;[];;">omgggg - -I had to save that one too. Rin seems to try her best to look calm and cool but she still gets excited over things she likes.";False;False;;;;1610713979;;False;{};gjc5pal;False;t3_kx7a0l;False;True;t1_gj8u9ac;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjc5pal/;1610794642;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sunshine145;;;[];;;;text;t2_d976y;False;False;[];;He was a good dad before by just having him be a father willing to sell his car so his son can do experiments. They took it way too far having him be one of the astronauts and to add insult to injury made it so he's adopted despite fucking looking just like him. Funnily enough Bleach did the same thing with a character named Byakuya, having him look like a male version of Rukia despite not actually being related.;False;False;;;;1610714078;;1610714294.0;{};gjc5tnq;False;t3_kx7vyz;False;True;t1_gjc3yiy;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjc5tnq/;1610794707;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bloodglas;;;[];;;;text;t2_hrcp6;False;False;[];;so Rin has to extend her trip by two days? hopefully she has enough extra money/supplies.;False;False;;;;1610714258;;False;{};gjc61rb;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjc61rb/;1610794832;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SailorArashi;;;[];;;;text;t2_orqld;False;True;[];;Definitely feel the same on both counts. Though when backpacking I prefer to only break out the jetboil for dinner, so breakfast is either a clif/sports bar, or a bagel that I dip in a [bottle of goobers.](https://www.smuckers.com/products/peanut-butter/goober-pb-j/goober-grape).;False;False;;;;1610715721;;False;{};gjc7z1r;False;t3_kx7a0l;False;True;t1_gjc16ph;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjc7z1r/;1610795905;1;True;False;anime;t5_2qh22;;0;[]; -[];;;twigboy;;;[];;;;text;t2_4caar;False;False;[];;Amount of insanely good shows to watch this season has just increased by one.;False;False;;;;1610715826;;False;{};gjc84bd;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjc84bd/;1610795988;3;True;False;anime;t5_2qh22;;0;[]; -[];;;icecubes99;;;[];;;;text;t2_1gde7px;False;False;[];;As expected of you, Kohaku chan;False;False;;;;1610716199;;False;{};gjc8nal;False;t3_kx7vyz;False;False;t1_gjbrs4b;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjc8nal/;1610796280;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Summer_RainingStars;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Summerstars_Rain&view=list&sta";light;text;t2_14o7uw;False;False;[];;I was confused lol.;False;False;;;;1610716228;;False;{};gjc8ou1;False;t3_kx7vyz;False;True;t1_gj8t7s6;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjc8ou1/;1610796303;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rotten_riot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RottenOrange/;light;text;t2_20f93nxp;False;False;[];;"I think so, [I mean](/s ""They not even eat during the Stone Wars, so the instant ramen is kinda useless lol"")";False;False;;;;1610717711;;False;{};gjcax5t;False;t3_kx7vyz;False;True;t1_gjc3r2j;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjcax5t/;1610797528;2;True;False;anime;t5_2qh22;;0;[]; -[];;;G1596872;;;[];;;;text;t2_qdv50;False;False;[];;Thankfully I’m off Thursdays which helps a lot;False;False;;;;1610718804;;False;{};gjccpmz;False;t3_kx7vyz;False;True;t1_gjbjvf6;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjccpmz/;1610798514;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;By the end of Season 5, you basically will have.;False;False;;;;1610720288;;False;{};gjcfamc;False;t3_kx7a0l;False;False;t1_gj8ibbz;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjcfamc/;1610799954;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;"*sees sea* - -Inner Rin: ""YAY SEA!"" - -Outer Rin: ""Must... suppress... urge... to yay...""";False;False;;;;1610720422;;False;{};gjcfjaa;False;t3_kx7a0l;False;False;t1_gj8pfyt;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjcfjaa/;1610800088;10;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;"ROH ROH FIGHT THE PIZZA - -...or not.";False;False;;;;1610720460;;False;{};gjcflqt;False;t3_kx7a0l;False;True;t1_gj8qh8b;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjcflqt/;1610800125;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;"Other shows: ""Noooo you can't make a compelling anime episode just out of twenty-two minutes of girls doing literally nothing but lazing around in campsites!"" - -Yuru Camp: ""Hahaha Rin moped goes brrrrrr""";False;False;;;;1610720548;;False;{};gjcfrim;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjcfrim/;1610800217;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Spiced_lettuce;;;[];;;;text;t2_20ux01m6;False;False;[];;Really stoked for the second season but I’m a bit confused what they’re planning on doing when/if people in the tsukasa empire find out they were lied to..;False;False;;;;1610720730;;False;{};gjcg3a4;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjcg3a4/;1610800407;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Garsnikk;;;[];;;;text;t2_23jwwe5u;False;False;[];;Because of yuru camp (and the fact that there is fuck all to do outside because of the lockdown), I decided to go to the local park, make a campfire and grill some sausages over it. All while listening to fuyu biyori. Instant comf achieved. The only thing that could be missing is a thermos of hot cocoa and official secret society BLANKET attire.;False;False;;;;1610720982;;False;{};gjcgk59;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjcgk59/;1610800673;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;[Very deep](https://i.imgur.com/t1oaRtR.png);False;False;;;;1610721119;;False;{};gjcgt20;False;t3_kx7a0l;False;True;t1_gjbz8n3;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjcgt20/;1610800819;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;[](#sakurathink);False;False;;;;1610721968;;False;{};gjcietf;False;t3_kx7a0l;False;True;t1_gjbsnbi;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjcietf/;1610801750;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;Wow. I guess that kind of spills the beans that some of their background art uses Google Maps as the foundation.;False;False;;;;1610722462;;False;{};gjcjdfw;False;t3_kx7a0l;False;False;t1_gjbcz8g;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjcjdfw/;1610802335;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;I imagine the LN name would be *I Was a Not-Quite-Dried-Up Pinecone in a Previous Life, But I'll Try Hard to Start an Inferno in the Next Life, You Hear?*;False;False;;;;1610722711;;False;{};gjcjuup;False;t3_kx7a0l;False;True;t1_gjbkpke;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjcjuup/;1610802631;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610724052;;False;{};gjcmkkw;False;t3_kx7vyz;False;True;t1_gj9zbra;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjcmkkw/;1610804380;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Etereke32;;;[];;;;text;t2_11qhl2;False;False;[];;Also, the recap is done really well, incorporated into the story.;False;False;;;;1610724828;;False;{};gjco5md;False;t3_kx7vyz;False;True;t1_gj8rl4h;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjco5md/;1610805420;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Etereke32;;;[];;;;text;t2_11qhl2;False;False;[];;Wot, I'm up to date to the manga but I didn't realize it's filler. It made perfect sense if that's the case.;False;False;;;;1610725123;;False;{};gjcorec;False;t3_kx7vyz;False;True;t1_gj9zpm8;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjcorec/;1610805803;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hikarunu;;;[];;;;text;t2_13zkno;False;False;[];;The episode 01 is quite good, they add stuff that is anime-original only. Making cup noodle.;False;False;;;;1610726299;;False;{};gjcr77v;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjcr77v/;1610807453;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fanatic1123;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/fanatic1123;light;text;t2_6vx49;False;False;[];;why would they add filler tho if there's so much material to adapt?;False;False;;;;1610726765;;False;{};gjcs67p;False;t3_kx7vyz;False;False;t1_gjajqwl;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjcs67p/;1610808162;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiro_Kai;;;[];;;;text;t2_bevm2wi;False;False;[];;Luckly she got a big supply of rice cake, that should do the trick XD;False;False;;;;1610726795;;False;{};gjcs8bv;False;t3_kx7a0l;False;True;t1_gjc61rb;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjcs8bv/;1610808204;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"Oh yes, kids are definitely more familiar with all the different chemicals and stuff always being talked about in the show than they are with walkie talkies and radios in general >_>";False;False;;;;1610727505;;False;{};gjctr92;False;t3_kx7vyz;False;True;t1_gjc3uol;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjctr92/;1610809252;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;Because the Stone Wars arc is only 23 episodes long;False;False;;;;1610727640;;False;{};gjcu1qs;False;t3_kx7vyz;False;False;t1_gjcs67p;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjcu1qs/;1610809443;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Shizzi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://anilist.co/user/Mivy/;light;text;t2_gfpz3;False;False;[];;Agreed;False;False;;;;1610727966;;False;{};gjcur7i;False;t3_kx7a0l;False;False;t1_gj8ibbz;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjcur7i/;1610809955;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ohoni;;;[];;;;text;t2_91pt3;False;False;[];;"It's sort of a mixed thing. They aren't meant to understand the chemisty, it's sort of like ""magic"" to them. But they are supposed to understand the *goal,* to understand what they are working toward. It works on multiple levels. It's like how Disney movies often have jokes that only the adults in the room would get, but it's still got Olaf for the kids.";False;False;;;;1610728522;;False;{};gjcvygu;False;t3_kx7vyz;False;True;t1_gjctr92;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjcvygu/;1610810768;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shizzi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://anilist.co/user/Mivy/;light;text;t2_gfpz3;False;False;[];;"**Veteran Member Of Secret Society Blanket** - -[Start Off With This](https://gyazo.com/c40b6142f4a211496e8a1a7c7ee4d74f) - -The OP is growing On Me More The Song That Is - -[OMG The Mountain Climbing Lady Did Not Think We Would See Her Again](https://gyazo.com/64bb84be7d190f5edd454316ecfff954) A Nice Surprise - -[Goddammit Her Mom Should Have Told Her About The Café In Advance](https://gyazo.com/f0a3be43149cbabc8aa7a8377a999e27) - -[This Is What I Ask About Yuru Camp How Is It So Relaxing](https://gyazo.com/115cfb08672b70a092bd425b8056602a) - -Then We Get To Nadeshiko Working - -[Too Bad RIP](https://gyazo.com/3e358ea693877d6c234079fdccb20420) - -[Oh Boy I Think Most Of Us Can Relate To This](https://gyazo.com/49edb4a4b1d2127d43d40abcce2f73b0) Reminds Me Of Our Dog We Had Just A Couple Of Years Ago - -She Heads To The Campsite And Damn Did She Set Up That Tent Fast. - -[Anime Never Fails To Make U Hungry](https://gyazo.com/c531bac220845694c2e8e30dea305c38) And I Always Watch In The Night Too - -[I Always Love These](https://gyazo.com/7c808d8c76c8dc856748344ce66feb8c) And It's True That Nadeshiko Is Smitten With MT. Fuji - -[LOL](https://gyazo.com/b45c9959d62cd6495e52cb8522130312) - -[It Truly Was](https://gyazo.com/e8feb41652141a7b23d1416ea5b92851) - -[AWWW Look At Our Rin-Chan](https://gyazo.com/f3a498c37e750a93ca293b03249a0e82) - -[Poor Aki](https://gyazo.com/f48b973f01f0f29e9d6d27cb66603e37) - -[Interesting](https://gyazo.com/2c063574c33fb7869f039aec25eff2ae) If Only It Was That Easy - -[Nadeshiko Still Working On New Years Hardworking Girl](https://gyazo.com/6acd939b7223a6d078f0804e47d58f69) - -[This Face](https://gyazo.com/1a2fd6a75358ea14454397d8799cd22b) - -[Oh No](https://gyazo.com/6ecf687402ea66771ae585425dae75be) - -[RESIST RIN RESIST](https://gyazo.com/3d340503d6c49fbb814cc8cc006368b3) - -[Temptation To Much](https://gyazo.com/dd7b43dbeafcd4c88d84f45c2fb495ed) Look At That Happy Face Tho - -[Some Crazy Driving](https://gyazo.com/581e111572b68ab34966322ed0938bb8) And Wth Is That Ost Defintely Not Something One Would Expect From Yuru Camp And How Does It Looks So Fast When They Were Driving in 30km/hour One Wonders - -[Teehee](https://gyazo.com/4a2261930d09b444e20252a6af9eb329) Oh Aki - -And Rin Gets Extra Days Because Of Ice And Snow - -We Finally Get To See The ED And It Looks Really Nice";False;False;;;;1610728989;;1610730298.0;{};gjcwz4z;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjcwz4z/;1610811506;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SirAwesome789;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SirAwesomeness;light;text;t2_ra3np;False;False;[];;I think I'm at 11 and I might add one more, that being said, I'm already having trouble keeping up;False;False;;;;1610728997;;False;{};gjcwzry;False;t3_kx7vyz;False;True;t1_gj8kx3q;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjcwzry/;1610811517;1;True;False;anime;t5_2qh22;;0;[]; -[];;;101Kitsunes;;skip7;[];;;dark;text;t2_5vdjakbf;False;False;[];;You made me picture a new story of the Stone War against the Empire with that cute Tsukasa as their leader....;False;False;;;;1610729052;;False;{};gjcx438;False;t3_kx7vyz;False;False;t1_gja3fpj;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjcx438/;1610811596;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Lol, the biggest war is Senku (Yusuke Kobayashi) vs Subaru (Yusuke Kobayashi) in terms of chadness.;False;False;;;;1610729281;;False;{};gjcxm16;False;t3_kx7vyz;False;True;t1_gj8olfp;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjcxm16/;1610811947;2;True;False;anime;t5_2qh22;;0;[]; -[];;;wolfpwarrior;;;[];;;;text;t2_fl0wz;False;False;[];;Things would get way more complicated with Nasa-kun thrown in the mix.;False;False;;;;1610729497;;False;{};gjcy2tc;False;t3_kx7vyz;False;False;t1_gjcx438;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjcy2tc/;1610812266;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Hikarunu;;;[];;;;text;t2_13zkno;False;False;[];;The anime was way too far from manga. With Stone Wars actually covered by previous last episodes from season 1. Season 2 will conclude the arc from season 1. It will not get any new arc until we get next season. They got enough source materials to adapt at least for season 4.;False;False;;;;1610730694;;False;{};gjd0p9t;False;t3_kx7vyz;False;True;t1_gj8r420;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjd0p9t/;1610814108;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shizzi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://anilist.co/user/Mivy/;light;text;t2_gfpz3;False;False;[];;There is just something about Iytashikei shows where they just change a small detail in the OP or ED which is just amazing to me u rarely see this in other shows i feel like;False;False;;;;1610731333;;False;{};gjd245b;False;t3_kx7a0l;False;True;t1_gjatj94;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjd245b/;1610815201;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kara_no_tamashi;;;[];;;;text;t2_1npw7g;False;False;[];;I watch very often the raws with japanese comments and the first episode of yuru camp had more than 5000 comments, which is more than most other shows except mushoki tensei. It gives a good idea of how popular the anime is, at least among people regularly watching animes.;False;False;;;;1610732457;;False;{};gjd4lfd;False;t3_kx7a0l;False;True;t1_gj8mibq;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjd4lfd/;1610816932;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ijiolokae;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/corvoatano;light;text;t2_15k31w;False;False;[];;reminds me of that one episode from Haruhi were we watch Nagato read a book for 5 minutes with the only sound coming from the class next door;False;False;;;;1610734436;;False;{};gjd8xy7;False;t3_kx7a0l;False;True;t1_gj8smhr;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjd8xy7/;1610819953;1;True;False;anime;t5_2qh22;;0;[]; -[];;;katsu045;;;[];;;;text;t2_2s28oigd;False;False;[];;interesting thanks that close enough i'll check it out;False;False;;;;1610735194;;False;{};gjdalo9;False;t3_kx7a0l;False;True;t1_gjbsrma;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjdalo9/;1610821122;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CuteWarCrimes;;;[];;;;text;t2_9rcucv3q;False;False;[];;You're trash;False;False;;;;1610735261;;False;{};gjdaqy1;False;t3_kx7vyz;False;True;t1_gj8mf4o;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjdaqy1/;1610821218;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SuperomegaOP;;;[];;;;text;t2_7k6bn;False;False;[];;/r/titanfolk is leaking;False;False;;;;1610735748;;False;{};gjdbtk2;False;t3_kx7vyz;False;False;t1_gj9b1w6;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjdbtk2/;1610821963;5;True;False;anime;t5_2qh22;;0;[]; -[];;;RazorReviews;;;[];;;;text;t2_q3427;False;False;[];;"Yuru Camp is very well known amongst American otaku, you will find people with merchandise of Rin like a pin or something every once in a while if you hang around anime circles. Some of my friends before the pandemic were talking about going winter camping because they're big fans. - -Though the more casual you get the less likely you're going to find people who have heard of it. I've let a few people know irl who probably will like it but it's not an action series so it's harder to recommend, I would argue even harder because it's slower than most slice of life series.";False;False;;;;1610737500;;False;{};gjdfme7;False;t3_kx7a0l;False;True;t1_gjbvnld;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjdfme7/;1610824637;3;True;False;anime;t5_2qh22;;0;[]; -[];;;zFX02_TM;;;[];;;;text;t2_ewyoenx;False;False;[];;This Science VS. God is complete bullshit nonsense.;False;False;;;;1610738513;;False;{};gjdhsfi;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjdhsfi/;1610826048;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;theth1rdchild;;;[];;;;text;t2_6xbw5;False;False;[];;When I went in Oct 2019 there was a lot of merch in the suspect places, it had been a while since airing but it still seemed very popular. I'm sure with the outdoor boom from covid it's even more popular now.;False;False;;;;1610738671;;False;{};gjdi4lu;False;t3_kx7a0l;False;True;t1_gj8mibq;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjdi4lu/;1610826265;1;True;False;anime;t5_2qh22;;0;[]; -[];;;masteroftasks;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/masteroftasks;light;text;t2_6fvq5;False;False;[];;Me when I'm supposed to diet. Sigh. I need more discipline.;False;False;;;;1610739189;;False;{};gjdj88c;False;t3_kx7a0l;False;False;t1_gj8qh8b;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjdj88c/;1610827036;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheKappaOverlord;;;[];;;;text;t2_j6waf;False;False;[];;"if i remember the episode correctly the process they used was just vague enough (IE they only explained it in the most boiled down manner possible without telling you how to get the specific reaction or how to make the explosive work like that) that they didn't need to. - -Plus theres no gunpowder involved so its more likely they are able to get away with not needing a disclaimer.";False;False;;;;1610741502;;False;{};gjdo311;False;t3_kx7vyz;False;False;t1_gj8pk3y;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjdo311/;1610830598;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Remarkable_Box4136;;;[];;;;text;t2_6dqe9lhg;False;False;[];;I had to put my 17-year-old dog down two months ago, this episode hit me so fucking hard. I know what that link is and can't watch it!;False;False;;;;1610741732;;False;{};gjdokl2;False;t3_kx7a0l;False;True;t1_gj8yhsy;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjdokl2/;1610830953;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheKappaOverlord;;;[];;;;text;t2_j6waf;False;False;[];;"afaik, he also said pretty much in the same span of time though that he is still completely mystified as to where that energy came from and eventually just shrugged it off. - -Senku is a scientific man, but he figured there was no possible way for him to determine where he was drawing energy from, as like you said he mentioned he was completely petrified. Even if you 'draw energy' from the petrified form it shouldn't *un*-petrify you. It would make the shell more brittle.";False;False;;;;1610741930;;False;{};gjdozl9;False;t3_kx7vyz;False;False;t1_gjaiup9;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjdozl9/;1610831233;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Radinax;;;[];;;;text;t2_iextq;False;False;[];;Its not any cup of noodle, you had to go into the top of Ifrit's Corpse in order to get the ingredients, you need to appreciate cup of noodles more! We need to send you to face Gilgamesh.;False;False;;;;1610743940;;False;{};gjdt7fv;False;t3_kx7vyz;False;True;t1_gj9127b;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjdt7fv/;1610834015;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Radinax;;;[];;;;text;t2_iextq;False;False;[];;Nah, what is coming for AOT is something that will shake the whole anime world, we're not ready for what is coming.;False;False;;;;1610744009;;False;{};gjdtcoe;False;t3_kx7vyz;False;True;t1_gj8v0yr;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjdtcoe/;1610834117;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lord_ne;;;[];;;;text;t2_lh1o5;False;False;[];;"Senku really like exaggerating. Freeze-dried ramen is ""space food,"" a radio is ""a cell phone,"" etc.";False;False;;;;1610744397;;False;{};gjdu67n;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjdu67n/;1610834653;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lord_ne;;;[];;;;text;t2_lh1o5;False;False;[];;Seems like the kind of thing you'd see in Attack on Titan;False;False;;;;1610744523;;False;{};gjdufw2;False;t3_kx7vyz;False;True;t1_gj8ml4o;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjdufw2/;1610834829;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;It took me quite some time until I mainly remembered all the happy memories, but a little sadness will linger forever.;False;False;;;;1610744889;;False;{};gjdv6tq;False;t3_kx7a0l;False;True;t1_gjdokl2;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjdv6tq/;1610835332;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kuryaka;;;[];;;;text;t2_7ugo4;False;False;[];;More importantly, a hilly island country that wasn't part of the Industrial Revolution. So you get a lot of green areas that haven't been exploited to hell and back.;False;False;;;;1610745744;;False;{};gjdwy4k;False;t3_kx7a0l;False;True;t1_gjal0ww;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjdwy4k/;1610836552;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TurbTheCurb;;;[];;;;text;t2_eo71j;False;False;[];;Sasuga Kohaku-chan, sono toori da yo;False;False;;;;1610746024;;False;{};gjdxipt;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjdxipt/;1610836948;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HappyDoodads;;;[];;;;text;t2_10qnayxt;False;False;[];;In *Kyouko Suiri* (*In/Spectre*), a minor can be seen smoking, although it's explicitly noted that what she was doing was illegal. It's not that they can't but it's definitely not something they thread on lightly.;False;False;;;;1610748150;;False;{};gje1tja;False;t3_kx7a0l;False;False;t1_gjan4o4;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gje1tja/;1610839880;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LOTRfreak101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LOTRfreak101;light;text;t2_opd6l;False;False;[];;I gave in after 3 episodes of season 1. it was worth it.;False;False;;;;1610749040;;False;{};gje3l0c;False;t3_kx7vyz;False;True;t1_gj96d8d;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gje3l0c/;1610841030;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Melbuf;;;[];;;;text;t2_j03jl;False;False;[];;there are a lot of un exploited areas in the US as well. just saying japan is smaller than CA with 3x the population of CA. its a lot of people in a small area. things like convince stores are everywhere/closer to things;False;False;;;;1610749161;;False;{};gje3tku;False;t3_kx7a0l;False;True;t1_gjdwy4k;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gje3tku/;1610841184;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dentorion;;;[];;;;text;t2_138s5k;False;False;[];;"no there will not. The voice actor of the father died a few months ago. i think they decided to do just a few recaps like we have seen this episode. - -RIP";False;False;;;;1610752661;;False;{};gjeakqt;False;t3_kx7vyz;False;True;t1_gjavr21;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjeakqt/;1610845569;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LaTartifle;;;[];;;;text;t2_nhwpw;False;False;[];;I came here for this comment;False;False;;;;1610755027;;False;{};gjeez2q;False;t3_kx7vyz;False;True;t1_gj8s138;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjeez2q/;1610848335;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mobott;;;[];;;;text;t2_dznm1;False;False;[];;"[Re:Zero](/s ""Subaru vs Roswaal: ""A bet, with both our wishes on the line"""")";False;False;;;;1610755579;;False;{};gjeg0lq;False;t3_kx7vyz;False;True;t1_gj8mjdj;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjeg0lq/;1610849000;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnukTheWolf;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/mokacchi;light;text;t2_i35ya;False;False;[];;[how about Rin's scarf](https://myfigurecollection.net/item/764349)?;False;False;;;;1610757401;;False;{};gjejdta;False;t3_kx7a0l;False;True;t1_gj8m3ep;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjejdta/;1610851059;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Caenir;;;[];;;;text;t2_12257c;False;False;[];;Ah cool. What part. Me not watching enough anime, me watching too much, me dropping that one anime, or anything to do with rezero?;False;False;;;;1610757802;;False;{};gjek4f1;False;t3_kx7vyz;False;True;t1_gjdaqy1;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjek4f1/;1610851555;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AnukTheWolf;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/mokacchi;light;text;t2_i35ya;False;False;[];;In Japan where 24/7 open convenience stores can be found seemingly every 10 meters, I wouldn't be surprised. One of those weirdly amazing things you miss a lot after having visited.;False;False;;;;1610757869;;False;{};gjek8v6;False;t3_kx7a0l;False;True;t1_gj9j9l5;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjek8v6/;1610851638;1;True;False;anime;t5_2qh22;;0;[]; -[];;;monsieurvampy;;;[];;;;text;t2_453ax;False;False;[];;"Same. I planned the season to watch 21 series. I've dropped two. I still need to start 4 series. I have three shows from last season still on-going (including AoT). I'm also doing the Noein rewatch for this month. I'll be doing the Parasyte rewatch that starts in February I think. - - - - -I did this last season and I told myself to limit myself more. I didn't listen it seems. The past year, maybe two I've been watching more anime than I have in years. I think the bubble is about to burst and I'll go back to watching only a few each season. This is also how I have easily a hundred plus (its way higher) shows not finished going back 16 years now? Maybe longer. - - - -The worst part is during the weekdays I should have a solid two hours to watch anime after work. I can do one episode easily. The second episode I usually struggle to focus. It's to the point where I waste watching an episode because I don't really take it in when that happens and/or I'm pausing and going back to read subtitles all the time. Third episode? I should just walk away from the screen. I'm not going to be able to focus at all. Thankfully this isn't an issue on the weekends. At least not yet.";False;False;;;;1610765213;;False;{};gjexn45;False;t3_kx7vyz;False;True;t1_gj8jybx;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjexn45/;1610859916;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pnohgi;;;[];;;;text;t2_2yejrvb1;False;False;[];;Lmao. In elementary school, my friends and I would make these sonic bombs using a plastic bottle, balloon, fireworks powder, and a fuse. 4th of July was always lit. Good times;False;False;;;;1610767279;;False;{};gjf182f;False;t3_kx7vyz;False;True;t1_gj9c0xu;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjf182f/;1610862057;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NeoSlyde;;;[];;;;text;t2_qqx8z;False;False;[];;Yep, God doesn’t exist anyway. Why even compare something that exist with something imaginary.;False;False;;;;1610769464;;False;{};gjf4tk7;False;t3_kx7vyz;False;True;t1_gjdhsfi;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjf4tk7/;1610864091;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hexahedron17;;;[];;;;text;t2_3lwtpekb;False;False;[];;Sensei: #GAS GAS GAS;False;False;;;;1610772957;;False;{};gjfabn2;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjfabn2/;1610867116;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Strix182;;;[];;;;text;t2_g3111;False;False;[];;"""So for now, let the battle be here, on this strange, primative world... And let it be called the Stone Wars!"" - -wait, fuck, wrong reference. - -wrong gorilla.";False;False;;;;1610773721;;False;{};gjfbfqt;False;t3_kx7vyz;False;True;t1_gj8jiy4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjfbfqt/;1610867728;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Strix182;;;[];;;;text;t2_g3111;False;False;[];;Pacifist route ending, I'm down!;False;False;;;;1610773830;;False;{};gjfbleb;False;t3_kx7vyz;False;True;t1_gj8q1vi;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjfbleb/;1610867813;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Strix182;;;[];;;;text;t2_g3111;False;False;[];;I can't eat them anymore since I came back from my exchange program. I dunno why, but the same exact brands taste so much better over in Japan. There was this really delicious curry cheese Cup Noodle that was like ambrosia. Some day... Some day I will experience true dehydrated noodle soup again.;False;False;;;;1610774067;;False;{};gjfbxlh;False;t3_kx7vyz;False;True;t1_gj8lr4j;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjfbxlh/;1610868000;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LakerBlue;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LakerBlue;light;text;t2_afaca;False;False;[];;Summer 2017 is the last time this happened for me.;False;False;;;;1610778717;;False;{};gjfi5wk;False;t3_kx7vyz;False;True;t1_gj8lsg4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjfi5wk/;1610871368;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Roeclean;;;[];;;;text;t2_2n7hny27;False;False;[];;Wow. Just wow. I've learned so much;False;False;;;;1610780897;;False;{};gjfkpx8;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjfkpx8/;1610872805;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Roeclean;;;[];;;;text;t2_2n7hny27;False;False;[];;But vastly different viewpoints;False;False;;;;1610780968;;False;{};gjfkssc;False;t3_kx7vyz;False;True;t1_gjaujvr;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjfkssc/;1610872848;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Roeclean;;;[];;;;text;t2_2n7hny27;False;False;[];;Subaru is a accomplished Simp;False;False;;;;1610781095;;False;{};gjfkxv9;False;t3_kx7vyz;False;True;t1_gjcxm16;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjfkxv9/;1610872925;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610781211;;False;{};gjfl2ih;False;t3_kx7vyz;False;True;t1_gjb0oqw;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjfl2ih/;1610872997;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Roeclean;;;[];;;;text;t2_2n7hny27;False;False;[];;Say whatttttttttt;False;False;;;;1610782004;;False;{};gjflxi0;False;t3_kx7vyz;False;True;t1_gj9vsdk;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjflxi0/;1610873479;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zenithfury;;;[];;;;text;t2_eevh0;False;False;[];;konnichiwaaa;False;False;;;;1610795088;;False;{};gjfzjn3;False;t3_kx7a0l;False;True;t1_gj8sl2z;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjfzjn3/;1610880510;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sKyBlazer08;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sKyBlazer08;light;text;t2_17ibsr;False;False;[];;"Hngh such a good and relaxing episode. Perfect after getting home from a tiring trip, the fatigue just disappears after watching the show. - -Rin was so adorable this episode, well she is all the time, but even more so this episode. It's hilarious how she was running around this episode lmao. Aww, that dog life talk is sad though, I don't wanna see Chikuwa pass. And Saitou is a mood as always. - -Oh no, now there's 2 Inuyama trolls, Aki out-trolled them though lmao. Sensei with them drift skills. Really looking forward for more comfyness next episode.";False;False;;;;1610800505;;False;{};gjg90yc;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjg90yc/;1610884772;2;True;False;anime;t5_2qh22;;0;[]; -[];;;l0l1n470r;;;[];;;;text;t2_16veay;False;False;[];;So, they're gonna change the opening every week to show the photos the girls took the previous episode? Nice touch.;False;False;;;;1610800602;;False;{};gjg97f0;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjg97f0/;1610884859;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ProperWeeb;;;[];;;;text;t2_1tqo9upm;False;False;[];;Feels like it's been so many chapters since this point now. I hope we get a ton more seasons to cover everything that's left and still to come.;False;False;;;;1610806209;;False;{};gjgkbsv;False;t3_kx7vyz;False;True;t1_gjcorec;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjgkbsv/;1610890381;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RDOoM;;;[];;;;text;t2_i9bs4;False;False;[];;"Yep, still fun with those over the top reactions, still making ridiculous decisions in *what* to invent in order to win the war. - -Things could go wrong a thousand ways with the current plan, as opposed to them making the likes of a gun and have the Tsukasa empire fold by being afraid for their lives when encountering armed oppositions. - -Still... it would have made necessary a lot less invention, so things are fine how they are. Enjoyable first episode.";False;False;;;;1610809152;;False;{};gjgqjfj;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjgqjfj/;1610893821;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RDOoM;;;[];;;;text;t2_i9bs4;False;False;[];;"Because who is more popular than Tsukasa? - -That's right. That one pornstar that *everybody* knows but lies about knowing.";False;False;;;;1610809251;;False;{};gjgqrhf;False;t3_kx7vyz;False;True;t1_gj9zxol;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjgqrhf/;1610893953;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RDOoM;;;[];;;;text;t2_i9bs4;False;False;[];;"I thought that too at first, but what purpose would it serve to trick the villagers. Or if villagers would even believe so quickly that there is a god and one is speaking to them. - -Maybe if they were tricking people in Tsukasa's camp, but those are 'modern' people, who might or might not believe god can come out of the blue and speak to them.";False;False;;;;1610809492;;False;{};gjgrahg;False;t3_kx7vyz;False;True;t1_gj9dnu3;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjgrahg/;1610894262;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PreacherSchmeacher;;;[];;;;text;t2_6rf8o32;False;False;[];;There really was nothing they could do so they joined Ishigami’s kingdom and sign a contract that lets the USA visit anytime they want.;False;False;;;;1610810368;;False;{};gjgt9z0;False;t3_kx7vyz;False;False;t1_gjbm9z6;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjgt9z0/;1610895663;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BloodyStrawberry;;;[];;;;text;t2_11zadc;False;False;[];;*The air is getting colder around you...*;False;False;;;;1610813141;;False;{};gjgzpw9;False;t3_kx7vyz;False;True;t1_gjbw34u;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjgzpw9/;1610899497;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Heigou;;;[];;;;text;t2_c23wx;False;False;[];;Camping in the 90s;False;False;;;;1610813721;;False;{};gjh11gr;False;t3_kx7a0l;False;True;t1_gjb057i;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjh11gr/;1610900320;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Karagoth;;;[];;;;text;t2_36zfl;False;False;[];;"> And, as expected, it's a [real place](https://maps.app.goo.gl/zSztGU7z85FfyRiH9)!. - -Someone's about to get a ton more business.";False;False;;;;1610816014;;False;{};gjh6jc6;False;t3_kx7a0l;False;False;t1_gj8ejsg;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjh6jc6/;1610903730;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Doobie26Easy;;;[];;;;text;t2_7vh18bed;False;False;[];;Haha I remember I searched “anime to help relax after a stressful day, and this was the first thing to pop up. I binge watched season 1 last week. Thankfully I didn’t have to wait as long as everyone else for season 2;False;False;;;;1610842640;;False;{};gjitjbq;False;t3_kx7a0l;False;True;t1_gjb2zbs;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjitjbq/;1610941292;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gazny78;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_zlqd3;False;False;[];;"They've most likely anticipated it. The campsite featured in this episode already had buntings, posters and a booth with merchandise of this show up in their office more than a month before season 2's premiered. - -In fact, most of the locations featured on this show have setup space on their premises dedicated solely to this show. Even the [Selva supermarket](https://maps.app.goo.gl/GT2DpgtvPUojm2Wj9) (*Zebra* in the show) has a sizable section of their retail floor selling official merchandises and items connected to Yuru Camp!";False;False;;;;1610852501;;False;{};gjjbvob;False;t3_kx7a0l;False;True;t1_gjh6jc6;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjjbvob/;1610952299;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GosuGian;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GosuDRM;light;text;t2_mu7ij;False;False;[];;YOOOOOOOOOOOOO it's finally back!;False;False;;;;1610861655;;False;{};gjjrp1n;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjjrp1n/;1610961174;1;True;False;anime;t5_2qh22;;0;[]; -[];;;merickmk;;;[];;;;text;t2_4ujqdaze;False;False;[];;It's crazy, I had over 10 shows without even getting into the new releases.;False;False;;;;1610862341;;False;{};gjjsoxk;False;t3_kx7vyz;False;True;t1_gj8jybx;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjjsoxk/;1610961704;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sombrero69;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Ed_Sama_desu;light;text;t2_16q17k;False;False;[];;Chapters* ?;False;False;;;;1610871849;;False;{};gjk47ft;False;t3_kx7vyz;False;True;t1_gjcu1qs;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjk47ft/;1610967758;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cortez0498;;MAL;[];;http://myanimelist.net/animelist/cortez1098;dark;text;t2_snun8;False;False;[];;"They didn't show Soyuz in the shot of everyone eating InstaRamen, did they? - -edit: WAIT, Ukyo has white hair? I always pictured him with blond hair, idk why.";False;False;;;;1610873330;;1610874081.0;{};gjk5pxc;False;t3_kx7vyz;False;True;t1_gj8iaxy;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjk5pxc/;1610968573;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cortez0498;;MAL;[];;http://myanimelist.net/animelist/cortez1098;dark;text;t2_snun8;False;False;[];;What's being introvert got to do with not knowing who she is lmao;False;False;;;;1610873460;;False;{};gjk5ul8;False;t3_kx7vyz;False;True;t1_gj9yl69;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjk5ul8/;1610968645;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cortez0498;;MAL;[];;http://myanimelist.net/animelist/cortez1098;dark;text;t2_snun8;False;False;[];;Damn, I remember when I used to watch seasonal anime. This season I'm watching 2 (AoT and Dr Stone, might increase to 3 if they overlap with Shuumatsu's airing) and that's the most I've watched in *years*.;False;False;;;;1610873847;;False;{};gjk686x;False;t3_kx7vyz;False;True;t1_gj8jybx;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjk686x/;1610968849;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610874621;;False;{};gjk6ykd;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjk6ykd/;1610969253;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DeithWX;;;[];;;;text;t2_6jgkl;False;False;[];;Watching an episode of Yuru Camp while drinking coffee in the morning is the most relaxed I've been in years.;False;False;;;;1610875037;;False;{};gjk7chj;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjk7chj/;1610969467;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yourparalisisdemon;;;[];;;;text;t2_7m7e2ehi;False;False;[];;I dont care about the well known people.;False;False;;;;1610881199;;False;{};gjkfro4;False;t3_kx7vyz;False;False;t1_gjk5ul8;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjkfro4/;1610973629;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cortez0498;;MAL;[];;http://myanimelist.net/animelist/cortez1098;dark;text;t2_snun8;False;False;[];;That's alright, but it's got nothing to do with being an introvert, dude.;False;False;;;;1610881689;;False;{};gjkgote;False;t3_kx7vyz;False;False;t1_gjkfro4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjkgote/;1610974084;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yourparalisisdemon;;;[];;;;text;t2_7m7e2ehi;False;False;[];;I dont go further than reddit;False;False;;;;1610881770;;False;{};gjkguie;False;t3_kx7vyz;False;False;t1_gjkgote;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjkguie/;1610974159;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yourparalisisdemon;;;[];;;;text;t2_7m7e2ehi;False;False;[];;I dont go further than reddit so its wery hard to me to know something;False;False;;;;1610881812;;False;{};gjkgxaw;False;t3_kx7vyz;False;True;t1_gjkgote;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjkgxaw/;1610974197;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AkumuHoshi;;;[];;;;text;t2_3gf5d6t7;False;False;[];;"I always think that is because Senku and his friends are teens, so is funny and easy to them calling radios ""cell phones"" - -&#x200B; - -(omg, my english is horrible)";False;False;;;;1610887213;;False;{};gjktha0;False;t3_kx7vyz;False;True;t1_gjaz1j4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjktha0/;1610980335;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hinakura;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;http://myanimelist.net/profile/astarcalledspica;light;text;t2_dyigg;False;False;[];;Same here. I just watched this one and I have to watch TPN and Log Horizon next.;False;False;;;;1610911120;;False;{};gjmy85k;False;t3_kx7vyz;False;True;t1_gj8jybx;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjmy85k/;1611022746;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610912602;;False;{};gjn29hg;False;t3_kx7a0l;False;True;t1_gjan4o4;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjn29hg/;1611024890;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hinakura;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;http://myanimelist.net/profile/astarcalledspica;light;text;t2_dyigg;False;False;[];;"Only true bros go to hell together! I missed this show <3";False;False;;;;1610913923;;False;{};gjn513a;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjn513a/;1611026680;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JulienBrightside;;;[];;;;text;t2_cixsf;False;False;[];;Breakfast anime, lunch anime, Dinner anime and Supper anime.;False;False;;;;1610924604;;False;{};gjnseqf;False;t3_kx7vyz;False;True;t1_gjah6br;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjnseqf/;1611040771;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sgt_Meowmers;;;[];;;;text;t2_61t28;False;False;[];;They did a great job implying what he was saying even without voices.;False;False;;;;1610939209;;False;{};gjokiat;False;t3_kx7vyz;False;True;t1_gj8yowd;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjokiat/;1611056328;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okaquauseless;;;[];;;;text;t2_769g8yfw;False;False;[];;what is this raws with japanese comments? like nico nico douga?;False;False;;;;1610945062;;False;{};gjou6qf;False;t3_kx7a0l;False;True;t1_gjd4lfd;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjou6qf/;1611062345;1;True;False;anime;t5_2qh22;;0;[]; -[];;;batchmimicsgod;;;[];;;;text;t2_1gzy1nk0;False;False;[];;"> gourmet/artisanal pizzas - -You mean real pizza?";False;False;;;;1610945082;;False;{};gjou7v8;False;t3_kx7a0l;False;True;t1_gja690i;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjou7v8/;1611062366;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Barbed_Dildo;;;[];;;;text;t2_4ehcd;False;False;[];;"She didn't ask about the current Shippeitarou, she asked about the third. - -Maybe the miko is studying computer science.";False;False;;;;1610952849;;False;{};gjp55db;False;t3_kx7a0l;False;False;t1_gj9dlch;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjp55db/;1611069790;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FierceAlchemist;;;[];;;;text;t2_fcfw8;False;False;[];;"Major props to composer Akiyuki Tateyama. I had forgotten how amazing the OST is and that whole sunrise sequence was utterly gorgeous both visually and audibly. - -So happy to have this show back again.";False;False;;;;1610960728;;False;{};gjpdy4v;False;t3_kx7a0l;False;True;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjpdy4v/;1611075887;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Smoothw;;;[];;;;text;t2_12tkm2wb;False;False;[];;This show feels mostly like advertisement from a regional park organization, but i love it anyway.;False;False;;;;1610965165;;False;{};gjpid3v;False;t3_kx7a0l;False;False;t3_kx7a0l;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjpid3v/;1611079044;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kara_no_tamashi;;;[];;;;text;t2_1npw7g;False;False;[];;"himado dot in. - -that's the site, it helps me improve my broken Japanese and some comments are sometimes funny. It's interesting to see the reactions of Japanese people to the anime.";False;False;;;;1610988164;;False;{};gjqezqf;False;t3_kx7a0l;False;True;t1_gjou6qf;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjqezqf/;1611102073;1;True;False;anime;t5_2qh22;;0;[]; -[];;;colin8696908;;;[];;;;text;t2_avbjz;False;False;[];;I figured he was going to use propaganda, although I don't think lying was the best course of action will probably be his Achilles heel.;False;False;;;;1611002027;;1611002778.0;{};gjr7hjm;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjr7hjm/;1611119918;1;True;False;anime;t5_2qh22;;0;[]; -[];;;colin8696908;;;[];;;;text;t2_avbjz;False;False;[];;">Things could go wrong a thousand ways with the current plan - -Ya lying is never the best course of action.";False;False;;;;1611002323;;False;{};gjr83ge;False;t3_kx7vyz;False;True;t1_gjgqjfj;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjr83ge/;1611120270;1;True;False;anime;t5_2qh22;;0;[]; -[];;;colin8696908;;;[];;;;text;t2_avbjz;False;False;[];;technically you don't need it to be hot. In the past people would boil water in a small pot over the campfire.;False;False;;;;1611002575;;False;{};gjr8lxm;False;t3_kx7vyz;False;True;t1_gjbs278;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjr8lxm/;1611120563;1;True;False;anime;t5_2qh22;;0;[]; -[];;;colin8696908;;;[];;;;text;t2_avbjz;False;False;[];; Anyone else notice how no ones snow gear covers their arms and the girl's snow gear doesn't even cover their legs. They should all be dead from exposure.;False;False;;;;1611002781;;False;{};gjr9158;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gjr9158/;1611120802;0;True;False;anime;t5_2qh22;;0;[]; -[];;;zenithfury;;;[];;;;text;t2_eevh0;False;False;[];;Yes, like a Japan tourism video.;False;False;;;;1611039511;;False;{};gjt2f0z;False;t3_kx7a0l;False;True;t1_gjpid3v;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjt2f0z/;1611159183;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PM_ME_UR_DRAG_CURVE;;;[];;;;text;t2_10epp6xr;False;False;[];;Initial D: Comfy stage;False;False;;;;1611040240;;False;{};gjt3a7t;False;t3_kx7a0l;False;True;t1_gj93wqb;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjt3a7t/;1611159760;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Strix182;;;[];;;;text;t2_g3111;False;False;[];;[I'd argue that Pinecone-chan's the Zeppeli.](https://i.ytimg.com/vi/HB5QpyXiVsY/maxresdefault.jpg);False;False;;;;1611087998;;False;{};gjv9jqb;False;t3_kx7a0l;False;True;t1_gj93b75;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjv9jqb/;1611211697;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Strix182;;;[];;;;text;t2_g3111;False;False;[];;"I haven't had a ton of experience with Japanese cafes, but the ones I have visited have been cozy a f. - -There were two different buildings on the international campus I studied at with cafes on their top floor. The one on the top floor of the library had waffle sundays and pizzas and sandwiches and all kinds of yummy coffee and tea drinks. The one above the study lounge had all sorts of specialty bread, pastries, and daily specials, including delicious katsu sandwiches. I think everyone I met over there knew me as the katsu guy, I couldn't get enough of the stuff. - -Both cafes had really comfortable seating kinda like the arrangements at the cafe Rin visited. Locations like this are some of the most relaxing public spaces I've ever been in. So comfy. - -edit: veeeerrry incorrect typo";False;False;;;;1611088593;;1611088999.0;{};gjvavts;False;t3_kx7a0l;False;True;t1_gj931e9;/r/anime/comments/kx7a0l/yuru_camp_season_2_episode_2_discussion/gjvavts/;1611212418;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JustAnObserver_Jomy;;;[];;;;text;t2_26iffy9q;False;False;[];;Patrick: FINLAAAAAND!!!!;False;False;;;;1611204341;;False;{};gk138e4;False;t3_kx7vyz;False;True;t1_gj8s6sh;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gk138e4/;1611338543;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1611204410;;False;{};gk13ch0;False;t3_kx7vyz;False;True;t1_gjdufw2;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gk13ch0/;1611338621;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kappa_Is_Ugly;;;[];;;;text;t2_n3q4i;False;False;[];;rofl wanna check again?;False;False;;;;1611204453;;False;{};gk13ex0;False;t3_kx7vyz;False;False;t1_gj8y9o1;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gk13ex0/;1611338666;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tstngtstngdontfuckme;;;[];;;;text;t2_63hxvdqf;False;False;[];;The dub pronunciation of Tsukasa makes me wanna get my stonehead smashed in.;False;False;;;;1611205820;;False;{};gk15l4y;False;t3_kx7vyz;False;True;t1_gj8p4jt;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gk15l4y/;1611340102;1;True;False;anime;t5_2qh22;;0;[]; -[];;;athrun_1;;;[];;;;text;t2_ubnet;False;False;[];;So this is what will happen to Tsukasa after she lost Nasa Kun.;False;False;;;;1611216255;;False;{};gk1ik78;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gk1ik78/;1611348530;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"# Source Material Corner - -Reply to this comment for any source-related discussion, future spoilers (including future characters, events and general hype about future content), comparison of the anime adaptation to the original, or just general talk about the source material. **You are still required to tag all spoilers.** Discussions about the source outside of this comment tree will be removed, and replying with spoilers outside of the source corner will lead to bans. - -The spoiler syntax is: -`[Spoiler source](/s ""Spoiler goes here"")` - -# **All untagged spoilers and hints in this thread will receive immediate 8-day bans (minimum).** - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610638405;moderator;False;{};gj8iaxy;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8iaxy/;1610710479;1;False;True;anime;t5_2qh22;;0;[]; -[];;;AFF123456;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/aff123456;light;text;t2_p9097;False;False;[];;Begun, the stone war has;False;False;;;;1610638457;;False;{};gj8iew2;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8iew2/;1610710544;443;True;False;anime;t5_2qh22;;0;[]; -[];;;Bruhmanch;;;[];;;;text;t2_8xkriy11;False;False;[];;It is finally here, I loved this series i am so excited for the second season.;False;False;;;;1610638556;;False;{};gj8imnn;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8imnn/;1610710673;293;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'I needed this today', 'end_date': None, 'giver_coin_reward': 0, 'icon_format': 'PNG', 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png', 'icon_width': 2048, 'id': 'award_19860e30-3331-4bac-b3d1-bd28de0c7974', 'is_enabled': True, 'is_new': False, 'name': 'Heartwarming', 'penny_donate': 0, 'penny_price': 0, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=16&height=16&auto=webp&s=4e50438bd2d72ae5398e839ac2bdcccf323fca79', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=32&height=32&auto=webp&s=e730f68de038499700c6301470812c29ef6a8555', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=48&height=48&auto=webp&s=8d7c7fa22e6ff3b1b0a347839e42f493eb5f6cbc', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=64&height=64&auto=webp&s=11ec2a72e2724017bb8479639edce8a7f2ba64f4', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=128&height=128&auto=webp&s=1e936ae571e89abb5a5aaa2efd2d7cfb0ed1b537', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=16&height=16&auto=webp&s=4e50438bd2d72ae5398e839ac2bdcccf323fca79', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=32&height=32&auto=webp&s=e730f68de038499700c6301470812c29ef6a8555', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=48&height=48&auto=webp&s=8d7c7fa22e6ff3b1b0a347839e42f493eb5f6cbc', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=64&height=64&auto=webp&s=11ec2a72e2724017bb8479639edce8a7f2ba64f4', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=128&height=128&auto=webp&s=1e936ae571e89abb5a5aaa2efd2d7cfb0ed1b537', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;shnick9996;;;[];;;;text;t2_405jha7v;False;True;[];;"Dr Stone is back and I'm ready for more science! - -***S1 Recap*** - -# Senku's Kingdom of Science (Expanded Ishigami Village) - -Leader/Village Chief: Senku Ishigami - -* Known for his profound knowledge and sheer intelligence -* Prodigious inventor, bringer of modern science to the stone age -* Has always had dreams to go to space - -Fellow Scientist and Senku's Right Hand Man: Chrome - -* Is as equally fascinated in science as Senku, calls him his Master/Sensei -* Collected rocks as a kid and his treasure trove treehouse started out as the base for the Kingdom of Science - -Allies of Ishigami Village: Kohaku, Ruri, Kinro, Ginro, Old Man Kaseki, Suika, Magma - -* Became steady allies of Senku after they saw his feats of ""sorcery"" and after he cured Ruri's disease with the Cure-All Drug -* Ruri, the village priestess, knew of Senku since his name was passed down in the traditional ""Hundred Stories"" that the priestesses learned. Evidently, Ishigami village was named after Senku's father. - -Defected from Tsukasa Empire: Gen Asagiri *(""Mentalist"")* - -* Fed Hyoga and Tsukasa false information that Senku was dead, sabotaged Hyoga's spear -* Has an uncanny ability to imitate certain voices (10/10 smooth buttery voice) -* Defected after being convinced that Senku was capable of making just about anything and even got an iced cola for it - -Spies in Tsukasa Empire: Taiju, Yuzuriha - -* Tsukasa is aware that they are spies and are closely monitoring them - -# Tsukasa Empire - -Leader: Tsukasa Shishio (*""Strongest High School Primate"")* - -* Wants to build a purist empire to be rid of the ugliness of the old world -* Built an empire on pure strength and devoid of technology -* Very high intellect that is second only to Senku -* Failed to murder Senku -* Used Senku's Revival Fluid to depetrify his allies -* Will kill anyone to maintain a pure Stone World -* Plans to lead a war against the Kingdom of Science to remove science from the world - -Allies: Hyoga, Homura (Hyoga's right-hand woman), other unnamed characters - -# Astronauts on the ISS - -* These 6 astronauts were the only humans that were not affected by the petrification since they were in space at the time. -* Byakuya Ishigami - Senku's father. Left a 3700 year old record as a message for Senku to uncover and as a proof of existence as the founders of Ishigami village. -* Lilian Weinberg - World renowned idol and singer. It is implied that Ruri and Kohaku's bloodline trace back to Byakuya and Lilian -* Connie, Shamil, Darya, Yakov - -# Key Inventions in S1 - -* Revival Fluid -* Gunpowder -* Ramen -* Electricity, Glass, Salt, Gas Mask, Cure-All Drug -* Lenses and Glasses -* Cola -* Katana -* Cotton Candy -* Hydroelectric Power Plant, Light Bulb, Christmas Tree, Tungsten, Telescope, Observatory, Tungsten Filament, Wire, Stove, Circuit Board, Cellphone -* Record Player - -**Now we can finally move on to today's episode** - -1. Space Food - -* Preparation for winter -* At this point I keep getting more and more amazed by Senku's ideas I have no idea what he's gonna do next XD -* (Was that a Food Wars reference when Senku busted out the freeze-dry ramen) - -1. Revisiting the Record Player - -* The record player probably one of the most emotional parts of S1 for me - -1. Tsukasa Empire - -* We now know that the Empire is only held together by their loyalty to Tsukasa -* Senku and Gen plan to use Lilian's voice to exploit Tsukasa's empire and give them false hope - -1. The Scene with Tsukasa - -* We see Tsukasa with a petrified girl, possibly a dear friend or someone close to him -* It is possible the girl could be Tsukasa's sister, which he mentioned in S1 that he tried to make a shell necklace for his sister undergoing surgery. - -1. The Beginning of the Stone Wars - -* Kingdom of Science now has a significant advantage over Tsukasa's with the development of communication equipment. -* Senku develops the Sound Bomb to distract Homura as the execution team brings the phone to Taiju and Yuzuriha - -Didn't expect a slower OP (Fujifabric - Rakuen) this time but sound director Aketagawa Jin never fails to impress! Can't wait to hear the ED. - -# Episode Rating: 8/10";False;False;;;;1610638596;;False;{};gj8iprw;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8iprw/;1610710726;261;True;False;anime;t5_2qh22;;1;[]; -[];;;Damarugaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Damarugaki/;light;text;t2_6zyxfkgg;False;False;[];;Thanks for the recap, filled in quite a few holes in my memory as its been a while since I watched season 1.;False;False;;;;1610638681;;False;{};gj8iwet;False;t3_kx7vyz;False;True;t1_gj8iprw;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8iwet/;1610710838;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;"This season is starting out with an actual bang - -[Also I'm still mildly upset that they didn't use this song in the anime](https://www.youtube.com/watch?v=BDhJU_cNCZE) - -That said, this new OP is an absolute BANGER.";False;False;;;;1610638736;;1610641889.0;{};gj8j0kx;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8j0kx/;1610710907;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Garlicbread10;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;ereh;dark;text;t2_8zn7f5o;False;False;[];;Can’t wait to see this this arc animated;False;False;;;;1610638822;;False;{};gj8j78s;False;t3_kx7vyz;False;False;t1_gj8iew2;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8j78s/;1610711028;24;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610638832;moderator;False;{};gj8j7zw;False;t3_kx80z8;False;True;t3_kx80z8;/r/anime/comments/kx80z8/can_anyone_do_anime_art/gj8j7zw/;1610711040;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Total_Ninja;;;[];;;;text;t2_eh7ua;False;False;[];;[Here we go.](https://imgur.com/0XescKS);False;False;;;;1610638909;;False;{};gj8jdre;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8jdre/;1610711134;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Deanomac2010, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610638940;moderator;False;{};gj8jg72;False;t3_kx827e;False;True;t3_kx827e;/r/anime/comments/kx827e/anime_recommendations_mangaanime_completed/gj8jg72/;1610711176;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Biba99;;;[];;;;text;t2_5bwzvqqa;False;False;[];;“ declaration of a stone war “;False;False;;;;1610638976;;1610639749.0;{};gj8jiy4;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8jiy4/;1610711227;1113;True;False;anime;t5_2qh22;;0;[]; -[];;;Yuul-Aiyng;;;[];;;;text;t2_bzqhpuh;False;False;[];;"So we see Tsukasa-chan again, in the snow. - - - - - -I swear this one will probably also survive getting hit by a truck. - - - - - - - -Senku is probably faster than NASA when it comes to building something - - - - - - - -Ship?";False;False;;;;1610638985;;False;{};gj8jjm6;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8jjm6/;1610711242;170;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;Do you have a MAL or anilist so people can see what you’ve watched?;False;False;;;;1610639154;;False;{};gj8jwmq;False;t3_kx827e;False;False;t3_kx827e;/r/anime/comments/kx827e/anime_recommendations_mangaanime_completed/gj8jwmq/;1610711463;5;True;False;anime;t5_2qh22;;0;[]; -[];;;G1596872;;;[];;;;text;t2_qdv50;False;False;[];;I’m legit struggling watching all these shows this season;False;False;;;;1610639176;;False;{};gj8jybx;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8jybx/;1610711491;593;True;False;anime;t5_2qh22;;0;[]; -[];;;90sChennaiGuy;;;[];;;;text;t2_o76q2;False;False;[];;10 billion percent excited for this!;False;False;;;;1610639460;;False;{};gj8kkjk;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8kkjk/;1610711866;517;True;False;anime;t5_2qh22;;0;[]; -[];;;JuraTempest;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Minshall;light;text;t2_32defc5v;False;False;[];;I’m now watching probably 18 airing shows with intentions to start like 3 more. It’s a lot but it’s also pretty amazing lol;False;False;;;;1610639622;;False;{};gj8kx3q;False;t3_kx7vyz;False;False;t1_gj8jybx;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8kx3q/;1610712086;226;True;False;anime;t5_2qh22;;0;[]; -[];;;LoopedPotato633;;;[];;;;text;t2_3st9ht2x;False;False;[];;YESSS LETS FUCKIN GOOOOOO;False;False;;;;1610639635;;False;{};gj8ky6p;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8ky6p/;1610712104;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610639692;moderator;False;{};gj8l2px;False;t3_kx8b5g;False;True;t3_kx8b5g;/r/anime/comments/kx8b5g/name_of_the_anime/gj8l2px/;1610712183;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Permanoxx;;;[];;;;text;t2_3hwherkr;False;False;[];;This was the show I was most excited for this season it’s finally here;False;False;;;;1610639717;;False;{};gj8l4nb;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8l4nb/;1610712218;62;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;Fullmetal Alchemist Brotherhood;False;False;;;;1610639721;;False;{};gj8l508;False;t3_kx827e;False;True;t3_kx827e;/r/anime/comments/kx827e/anime_recommendations_mangaanime_completed/gj8l508/;1610712225;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JuraTempest;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Minshall;light;text;t2_32defc5v;False;False;[];;Excited to be an anime only for this arc. Let’s see what kind of science I’ll be learning this season;False;False;;;;1610639743;;False;{};gj8l6rg;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8l6rg/;1610712255;146;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;True;[];;"An army marches on its stomach. - -Attacking Ishigami Village during the winter is like attacking Russia during the winter. - -[Looks like we have our first Terraria crafting map of the season.](https://i.imgur.com/A6hREA6.png)";False;False;;;;1610639778;;1610640377.0;{};gj8l9li;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8l9li/;1610712306;56;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;True;[];;Thanks, Yoda.;False;False;;;;1610639801;;False;{};gj8lbd3;False;t3_kx7vyz;False;False;t1_gj8iew2;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8lbd3/;1610712343;18;True;False;anime;t5_2qh22;;0;[]; -[];;;NittanyEagles55;;;[];;;;text;t2_kaj1s;False;False;[];;Very intrigued by the tank in the ending;False;False;;;;1610639803;;False;{};gj8lbhs;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8lbhs/;1610712345;168;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"Hard to tell without knowing what you have seen, but I would suggest watching original animes if you want completed stories since most manga/LN adaptations dont finish. Some personal favorite of mine: - -- Code Geass - -- Madoka Magica - -- A Place Further than the Universe - -- Angel Beats - -- Cowboy Bebop - -- Kill la Kill - -- Gurren Lagann - -- Death Parade - -- ID Invaded - -- Neon Genesis Evangelion (rebuild movies are not yet completed, but the original series is) - -- Psycho Pass (primarily season 1) - -- Serial Experiments Lain - -- Deca Dence - -Others that I can think of that are complete and have a source material off the top of my head: - -- Oregairu - -- Your Lie in April - -- Tatami Galaxy - -- SteinsGate and SteinsGate0 - -- Death Note - -- Fate/Stay Night and Fate Zero (not gonna argue over watch orders) - -- Kakushigoto - -- technically Jojo, but not really (most of the seasons are self contained with some recurring characters) - -- Oreimo (with the OVAs)";False;False;;;;1610639822;;1610640321.0;{};gj8ld0n;False;t3_kx827e;False;True;t3_kx827e;/r/anime/comments/kx827e/anime_recommendations_mangaanime_completed/gj8ld0n/;1610712374;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NittanyEagles55;;;[];;;;text;t2_kaj1s;False;False;[];;This winter is stacked with fantastic anime and I love it;False;False;;;;1610639852;;False;{};gj8lfe4;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8lfe4/;1610712414;52;True;False;anime;t5_2qh22;;0;[]; -[];;;Nihhrt;;MAL;[];;http://myanimelist.net/animelist/Nihhrt;dark;text;t2_8p0ab;False;False;[];;[Daitoshokan no Hitsujikai](https://myanimelist.net/anime/17827/Daitoshokan_no_Hitsujikai) (A Good Librarian Like a Good Shepherd);False;False;;;;1610639864;;False;{};gj8lgdp;False;t3_kx8b5g;False;True;t3_kx8b5g;/r/anime/comments/kx8b5g/name_of_the_anime/gj8lgdp/;1610712431;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"#IVE MISSED SCIENCE TIME SO MUCH~ - -[](#awe) - -Sharkface giving us a recap? Oh we see his past! neat. - -Senku just casually counting for 2 millennia. - -Good ole Racist Tarzan, or agist? - -Making Space food? I guess good food for travel is ideal for an assualt. - -So with warm meals they can attack before spring. I see. - -OLDMAN POWERRRRRR~ HAHHA - -Freeze ramen, but how will we super heat it? - -HES MAKING CUP NOODLES OF COURSE HE IS HAHAHHAA - -Im glad Senku has Gen around who he can talk about past stuff with. Hes a good friiend for him. - -Cup noodle about to blow these peoples minds.... YEP HAHHAHHAHAAH - -Oh so this project was something Senku and Byyaku did together? He did mention he had ramen made from his fav shop, but didnt think him and Senku made it. - -GEORGE AND JANE LOOK SO FAB IN CHROME'S MIND HAHHAHAHA - -Gen realizing something about the music? A new plan? I think we saw the sick sister with a mic last season. - -Wait are they gonna fake music girl's revival or something with the phones? Hmm hmmm... - -SHARKFACE WHY ARE YOU TURNING INTO MUSIC LADY!? JESUS CHRIST HAHAH - -Yeah faking Lillian's revival. Not a bad plan. - -CHROME THROUGH THE FLOOR HAHAHH! - -This plan seems... too good to be true.. its gotta fail. - -""We dont need any villians from the onyl world, just us two."" They are willing to play the baddie to save the world. Sounds familiar... - -Oh yeah Homura is watching. Lure her over huh? What with this time? Bombs? Hmm - -Man were off to a great start, cant wait for more. - -WAIT WHAT WAS THAT TANK IN THE ED!? WHAT!? HAHAHHAHAH - -Oh wait... i forgot Byakko's VA died so how are they gonna do this? I know in GBF his VA has a dedicated replacement so maybe they will use him again. Kazuhiro Yamaji is who took over Keiji Fujiwara voice roles in GBF.";False;False;;;;1610639867;;False;{};gj8lgjk;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8lgjk/;1610712434;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Prince-Dizzytoon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/princedizzytoon;light;text;t2_mu0df;False;False;[];;Today I learned how cup ramen is made;False;False;;;;1610639879;;False;{};gj8lhj9;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8lhj9/;1610712450;13;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"Pretty good season opener, just a little bit of recap and now we're already on the way to Tsukasa! - -Really missing Yuzurihara and Taiju so hope we don't have to wait long to see them.";False;False;;;;1610639933;;False;{};gj8llt7;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8llt7/;1610712517;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LudicrousityX4;;;[];;;;text;t2_66jnm945;False;False;[];;This episode was a blast! Kaseki got yet another laugh out of me with his clothes bursting. The idea of instant noodles in the Stone Age is awesome too, I had no idea they were that simple (in terms of complication, not actually doing it). The sonic bombs too, so clever yet simple. This is off to a great start!;False;False;;;;1610639950;;False;{};gj8ln7u;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8ln7u/;1610712541;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Seeejay18;;;[];;;;text;t2_9md9xve2;False;False;[];;Did anyone else feel like eating cup noodles after this ep? Haha;False;False;;;;1610640001;;False;{};gj8lr4j;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8lr4j/;1610712615;584;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;True;[];;Been a while since there's something worth watching every day of the week.;False;False;;;;1610640017;;False;{};gj8lsg4;False;t3_kx7vyz;False;False;t1_gj8jybx;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8lsg4/;1610712639;164;True;False;anime;t5_2qh22;;0;[]; -[];;;DadAsFuck;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DadAsFuck;light;text;t2_peaym;False;False;[];;science, we must;False;False;;;;1610640038;;False;{};gj8lu4o;False;t3_kx7vyz;False;False;t1_gj8iew2;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8lu4o/;1610712667;173;True;False;anime;t5_2qh22;;0;[]; -[];;;Burnedsauce445;;;[];;;;text;t2_3wiksx30;False;False;[];;A Good Librarian Like a Good Shepherd;False;False;;;;1610640121;;False;{};gj8m0l8;False;t3_kx8b5g;False;True;t3_kx8b5g;/r/anime/comments/kx8b5g/name_of_the_anime/gj8m0l8/;1610712783;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Seeejay18;;;[];;;;text;t2_9md9xve2;False;False;[];;"One thing dr stone did really well in the first season was the sound design; and ive gotta say they've killed it with this episode too! I hope it stays this way.";False;False;;;;1610640126;;False;{};gj8m0zf;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8m0zf/;1610712791;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Burnedsauce445;;;[];;;;text;t2_3wiksx30;False;False;[];;That took me a minute to find, I’ve never heard of this show though;False;False;;;;1610640148;;False;{};gj8m2ri;False;t3_kx8b5g;False;True;t3_kx8b5g;/r/anime/comments/kx8b5g/name_of_the_anime/gj8m2ri/;1610712821;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Morbid_Fatwad;;;[];;;dark;text;t2_ol3rd;False;False;[];;As if yuru camp didn't already get me in the mood for that.;False;False;;;;1610640204;;False;{};gj8m72d;False;t3_kx7vyz;False;False;t1_gj8lr4j;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8m72d/;1610712891;280;True;False;anime;t5_2qh22;;0;[]; -[];;;practicalnoob69;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Practicalnoob69;light;text;t2_xyvhvps;False;False;[];;Nice;False;False;;;;1610640302;;False;{};gj8mepe;False;t3_kx7vyz;False;False;t1_gj8jiy4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8mepe/;1610713018;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Caenir;;;[];;;;text;t2_12257c;False;False;[];;Damn, you got me beat. I'm sitting at 16, dropping only one (tenchi souzou design-bu). The only big one I won't watch for a while is re-zero because I'm still deciding whether I should rewatch the first season first.;False;False;;;;1610640307;;False;{};gj8mf4o;False;t3_kx7vyz;False;False;t1_gj8kx3q;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8mf4o/;1610713025;65;True;False;anime;t5_2qh22;;0;[]; -[];;;WoLofDarkness;;;[];;;;text;t2_1323we;False;False;[];;"Finally it's back!!! - -Season 2 Hype :)";False;False;;;;1610640346;;False;{};gj8mi7j;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8mi7j/;1610713079;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"AOT: Declaration of War - -Ex-Arm: ""This is a declaration of war on all SF series around the world!"" - -Cells at Work vs Cells at Work: Code Black - -Dr. Stone: Stone Wars - -Winter War 2021 Confirmed";False;False;;;;1610640361;;False;{};gj8mjdj;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8mjdj/;1610713099;613;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok_Draw_2833;;;[];;;;text;t2_4dha12vu;False;False;[];;I’ve never seen the “anime friendship fist bump” prefaced by “Let’s go to hell together...” before. Lol;False;False;;;;1610640382;;False;{};gj8ml4o;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8ml4o/;1610713131;58;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;I almost forgot this is a different Tsukasa, and he ain't waifu material.;False;False;;;;1610640387;;False;{};gj8mlgo;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8mlgo/;1610713136;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"> Tsukasa - -> NASA - -Hmmmmm";False;False;;;;1610640405;;False;{};gj8mmul;False;t3_kx7vyz;False;False;t1_gj8jjm6;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8mmul/;1610713160;136;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;True;[];;This comment is like an official episode 0 of the new season.;False;False;;;;1610640423;;False;{};gj8mo70;False;t3_kx7vyz;False;False;t1_gj8iprw;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8mo70/;1610713182;118;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;So how much episodes will Stone Wars be? Expecting it would be 24, the same as S1.;False;False;;;;1610640436;;False;{};gj8mp9d;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8mp9d/;1610713201;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;Ah yes, I miss those Clannad uwu faces from the girls here.;False;False;;;;1610640462;;False;{};gj8mr8l;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8mr8l/;1610713238;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610640470;;False;{};gj8mrvw;False;t3_kx7vyz;False;True;t1_gj8jiy4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8mrvw/;1610713248;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;True;[];;Senku keeps moving forward. Until he frees all seven billion people.;False;False;;;;1610640612;;False;{};gj8n30e;False;t3_kx7vyz;False;False;t1_gj8jiy4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8n30e/;1610713463;699;True;False;anime;t5_2qh22;;0;[]; -[];;;Deanomac2010;;;[];;;;text;t2_7w8w2jz4;False;False;[];;"Animes i watched -Dragonball series -Naruto -One Peice -HxH -Fullmetal Brotherhood -Black Clover -Planetes -Monster -Dragon Drive -SAO -Seven Deadly Sins -Bleach -Kiba -Rurokin Kenshin -D Gray Man -Inuyasha -Stein Gate -7 Seeds -Ranma 1/2 -Gintama -Elemental Gelade -Fushiyu Yuugi -Dr Stone -The Promised Neverland -Demon Slayer -Marchen awakens romance -Fairy tail -Yu Yu hakusho -Dororo -Attack on titan";False;False;;;;1610640627;;1610641240.0;{};gj8n47j;True;t3_kx827e;False;True;t3_kx827e;/r/anime/comments/kx827e/anime_recommendations_mangaanime_completed/gj8n47j/;1610713484;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Deanomac2010;;;[];;;;text;t2_7w8w2jz4;False;False;[];;I put up most of the ones ive watched :);False;False;;;;1610640649;;False;{};gj8n5z0;True;t3_kx827e;False;True;t1_gj8jwmq;/r/anime/comments/kx827e/anime_recommendations_mangaanime_completed/gj8n5z0/;1610713517;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Deanomac2010;;;[];;;;text;t2_7w8w2jz4;False;False;[];;Thank you :) i will look up all of them :);False;False;;;;1610640716;;False;{};gj8nb94;True;t3_kx827e;False;True;t1_gj8ld0n;/r/anime/comments/kx827e/anime_recommendations_mangaanime_completed/gj8nb94/;1610713609;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JuraTempest;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Minshall;light;text;t2_32defc5v;False;False;[];;Ohh gotcha. I watched the Director’s Cut when that came out as my rewatch to prepare myself back in summer. I’m really enjoying season 2 much more than s1 so I do recommend watching it;False;False;;;;1610640735;;False;{};gj8ncqc;False;t3_kx7vyz;False;False;t1_gj8mf4o;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8ncqc/;1610713634;40;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;True;[];;Speak for yourself.;False;False;;;;1610640780;;False;{};gj8ngcl;False;t3_kx7vyz;False;False;t1_gj8mlgo;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8ngcl/;1610713699;59;True;False;anime;t5_2qh22;;0;[]; -[];;;Animegamingnerd;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/animegamingnerd;light;text;t2_k7u33;False;False;[];;I think this is the most shows I have ever watched in a single season and there is still shows from fall I still need to get around to finishing.;False;False;;;;1610640794;;False;{};gj8nhec;False;t3_kx7vyz;False;False;t1_gj8jybx;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8nhec/;1610713724;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;God the OP is so good, I've listened to it over 10 times already.;False;False;;;;1610640886;;False;{};gj8nokl;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8nokl/;1610713862;60;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;True;[];;So I don't actually have an unhealthy diet, I'm just preparing for war.;False;False;;;;1610640950;;False;{};gj8ntlj;False;t3_kx7vyz;False;False;t1_gj8lr4j;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8ntlj/;1610713953;42;True;False;anime;t5_2qh22;;0;[]; -[];;;xboxanime;;;[];;;;text;t2_98v7uta8;False;False;[];;wish I had premium so I could watch it now;False;False;;;;1610641101;;False;{};gj8o5h0;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8o5h0/;1610714165;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mr_sto0pid;;;[];;;dark;text;t2_13ckn3;False;True;[];;The anime has shown us how to make a sonic bomb.;False;False;;;;1610641184;;False;{};gj8obyy;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8obyy/;1610714282;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;False;[];;Oh, no. I'm not brave enough for science shit.;False;False;;;;1610641225;;False;{};gj8of7b;False;t3_kx7vyz;False;False;t1_gj8lu4o;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8of7b/;1610714340;72;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;If it's your favorite then it is the best anime ever made that you've seen to you.;False;False;;;;1610641243;;False;{};gj8ogld;False;t3_kx8sy5;False;False;t3_kx8sy5;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8ogld/;1610714366;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;False;[];;Recently, it seems everyone wants to deliver a declaration of war.;False;False;;;;1610641302;;1610652475.0;{};gj8olfp;False;t3_kx7vyz;False;False;t1_gj8jiy4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8olfp/;1610714459;180;True;False;anime;t5_2qh22;;0;[]; -[];;;Parzival_32;;;[];;;;text;t2_3trhd2m8;False;False;[];;factsss people need to realise this;False;False;;;;1610641320;;False;{};gj8omvr;False;t3_kx8sy5;False;True;t1_gj8ogld;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8omvr/;1610714486;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Aadi-K;;;[];;;;text;t2_4klu6o3e;False;False;[];;"I had a convo with someone who thought AoT was a masterpiece, which is fine, but then they started saying that K-ON was just a meh anime, so I obviously got pretty mad, because you know? K-ON is actually very good - -It’s those kinda of people that are toxic, I don’t like them very much";False;False;;;;1610641329;;False;{};gj8onoy;False;t3_kx8sy5;False;True;t3_kx8sy5;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8onoy/;1610714502;1;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;Looks like Senku managed to create anime already lol.;False;False;;;;1610641333;;False;{};gj8oo01;False;t3_kx7vyz;False;False;t1_gj8jiy4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8oo01/;1610714506;20;True;False;anime;t5_2qh22;;0;[]; -[];;;gulitiasinjurai;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;eh nandake?;light;text;t2_1591dz;False;False;[];;"Watched season 1 because I was invested with the science and not the fighting part. - -Please have more science. And more Kohaku of course";False;False;;;;1610641349;;False;{};gj8op8k;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8op8k/;1610714529;118;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Enough to stop a moving car;False;False;;;;1610641373;;False;{};gj8or5z;False;t3_kx8om5;False;True;t3_kx8om5;/r/anime/comments/kx8om5/baka_and_test_anime_how_strong_is_the_punishment/gj8or5z/;1610714566;1;True;False;anime;t5_2qh22;;0;[]; -[];;;axl625;;;[];;;;text;t2_tskg1;False;False;[];;We get a recap without the recap episode. Definitely a good refresher.;False;False;;;;1610641383;;False;{};gj8oryv;False;t3_kx7vyz;False;False;t1_gj8iprw;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8oryv/;1610714582;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;False;[];;With 10 billion percent more well on the way.;False;False;;;;1610641384;;False;{};gj8os0n;False;t3_kx7vyz;False;False;t1_gj8kkjk;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8os0n/;1610714584;130;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Wait then;False;False;;;;1610641384;;False;{};gj8os23;False;t3_kx8rpd;False;True;t3_kx8rpd;/r/anime/comments/kx8rpd/where_is_beastars_season_two_episode_two/gj8os23/;1610714585;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610641396;moderator;False;{};gj8oszy;False;t3_kx8vyb;False;True;t3_kx8vyb;/r/anime/comments/kx8vyb/does_anyone_one_know_if_they_have_improved_the/gj8oszy/;1610714601;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610641403;moderator;False;{};gj8otjp;False;t3_kx8w1c;False;True;t3_kx8w1c;/r/anime/comments/kx8w1c/does_someone_know_whats_the_name_of_this_anime/gj8otjp/;1610714610;1;False;False;anime;t5_2qh22;;0;[]; -[];;;axl625;;;[];;;;text;t2_tskg1;False;False;[];;Hard same. There are many promising new shows, alongside the solid sequels.;False;False;;;;1610641409;;False;{};gj8ou0w;False;t3_kx7vyz;False;False;t1_gj8jybx;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8ou0w/;1610714618;6;True;False;anime;t5_2qh22;;0;[]; -[];;;consolefreakedorigin;;;[];;;;text;t2_2baqt95w;False;False;[];;"You seem to misunderstood good sire -Officially it’s out but I can’t find it";False;False;;;;1610641432;;False;{};gj8ovvs;False;t3_kx8rpd;False;True;t1_gj8os23;/r/anime/comments/kx8rpd/where_is_beastars_season_two_episode_two/gj8ovvs/;1610714652;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Caenir;;;[];;;;text;t2_12257c;False;False;[];;"I just feel like I've added to much to my currently watching list. In addition to all of those I've been watching JoJo (only S3 as I took a week break) and my hero academia in which I watched like 50 episodes in 2 days. - -There's also K-on which was around the same time as JoJo, but I'm not good at sticking to anime. For example, I never finished death note or FMA:b. Death note I don't plan to as I finished the good parts, and FMA:b I don't even know where I stopped.";False;False;;;;1610641435;;False;{};gj8ow53;False;t3_kx7vyz;False;False;t1_gj8ncqc;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8ow53/;1610714657;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Sighontherun;;;[];;;;text;t2_8mhujfv5;False;False;[];;"How about the test battle thing -the mc scores suck so his summon is useless he can't even win one battle it's just luck??";False;False;;;;1610641454;;False;{};gj8oxmu;True;t3_kx8om5;False;True;t1_gj8or5z;/r/anime/comments/kx8om5/baka_and_test_anime_how_strong_is_the_punishment/gj8oxmu/;1610714682;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Wonder egg, its airing right now;False;False;;;;1610641484;;False;{};gj8ozyg;False;t3_kx8w1c;False;True;t3_kx8w1c;/r/anime/comments/kx8w1c/does_someone_know_whats_the_name_of_this_anime/gj8ozyg/;1610714727;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nidzzzzzzzzzzz;;;[];;;;text;t2_86ry341o;False;False;[];;Yeah, why not? it's your own opinion, go for it!;False;False;;;;1610641486;;False;{};gj8p03x;False;t3_kx8sy5;False;True;t3_kx8sy5;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8p03x/;1610714729;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610641497;;False;{};gj8p0zr;False;t3_kx7vyz;False;True;t1_gj8iprw;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8p0zr/;1610714744;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LilyGinnyBlack;;;[];;;;text;t2_fvv45w;False;False;[];;I believe it is Wonder Egg Priority. It's a new anime original series airing this Winter Season. Only one episode is out so far.;False;False;;;;1610641510;;False;{};gj8p20q;False;t3_kx8w1c;False;True;t3_kx8w1c;/r/anime/comments/kx8w1c/does_someone_know_whats_the_name_of_this_anime/gj8p20q/;1610714764;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok_Draw_2833;;;[];;;;text;t2_4dha12vu;False;False;[];;He was un-petrified that way.;False;False;;;;1610641532;;False;{};gj8p3sk;False;t3_kx7vyz;False;False;t1_gj8n30e;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8p3sk/;1610714797;43;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;Tsukasa: *I'm the bad guy.*;False;False;;;;1610641542;;False;{};gj8p4jt;False;t3_kx7vyz;False;False;t1_gj8n30e;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8p4jt/;1610714810;313;True;False;anime;t5_2qh22;;0;[]; -[];;;Lapiz_lasuli;;;[];;;;text;t2_ammk071;False;False;[];;"""Sit down Tsukasa.""";False;False;;;;1610641562;;False;{};gj8p654;False;t3_kx7vyz;False;False;t1_gj8jiy4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8p654/;1610714836;162;True;False;anime;t5_2qh22;;0;[]; -[];;;axl625;;;[];;;;text;t2_tskg1;False;False;[];;This but without a mental breakdown of a daddy, betrayal of an innocent boy, and a speech from a rich, blond, long-haired man;False;False;;;;1610641574;;False;{};gj8p73h;False;t3_kx7vyz;False;False;t1_gj8jiy4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8p73h/;1610714854;67;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;"But the thing is, for them K-On might be the shittiest show they've seen. It may be because they know something about music that the show did wrong. Or something else, it's not really toxic then. They're just stating there opinion. What I'll say is that it's only toxic if they say ""you're wrong for liking K-On"". - - - -(PSA: I haven't watched K-On, so don't know how it is)";False;False;;;;1610641586;;False;{};gj8p81w;True;t3_kx8sy5;False;False;t1_gj8onoy;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8p81w/;1610714870;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;If you analyze subjectively it is totally fine to think your favorite anime is the best of the best however if you are analyzing objectively the results may differ. All in all, it's all good bro!;False;False;;;;1610641588;;False;{};gj8p87j;False;t3_kx8sy5;False;True;t3_kx8sy5;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8p87j/;1610714872;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;AFAIK it's only being aired in Japan until it gets released on Netflix. You can probably find it through alternate means online I guess;False;False;;;;1610641595;;False;{};gj8p8q3;False;t3_kx8rpd;False;True;t3_kx8rpd;/r/anime/comments/kx8rpd/where_is_beastars_season_two_episode_two/gj8p8q3/;1610714882;1;True;False;anime;t5_2qh22;;0;[]; -[];;;consolefreakedorigin;;;[];;;;text;t2_2baqt95w;False;False;[];;Thanks bud;False;False;;;;1610641627;;False;{};gj8pbd4;False;t3_kx8rpd;False;True;t1_gj8p8q3;/r/anime/comments/kx8rpd/where_is_beastars_season_two_episode_two/gj8pbd4/;1610714930;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;Ikr, people get pissed sometimes when I say Attack on Titan is the best anime ever made with only Legend of the Galactic heroes as competition. But I'm like 😂 bro you're free to think otherwise.;False;False;;;;1610641647;;False;{};gj8pcxh;True;t3_kx8sy5;False;True;t1_gj8p03x;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8pcxh/;1610714958;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bhupeshpr25;;;[];;;;text;t2_78m9sk7m;False;False;[];;This is Exhilarating. Get Excited!;False;False;;;;1610641666;;False;{};gj8pegb;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8pegb/;1610714984;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;Thanks you for saying ! It's fax;False;False;;;;1610641670;;False;{};gj8pet6;True;t3_kx8sy5;False;True;t1_gj8p87j;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8pet6/;1610714990;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Yup in test battle they solely depend on the marks and considering that this role is only given to students with bad marks, it's pretty useless as expect, anyone can one shot him, but it still is usable in practical stuff,like it was used to block the enemy's path by moving a wooden block or something in one of the EPs;False;False;;;;1610641675;;False;{};gj8pf8r;False;t3_kx8om5;False;True;t1_gj8oxmu;/r/anime/comments/kx8om5/baka_and_test_anime_how_strong_is_the_punishment/gj8pf8r/;1610714998;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bhupeshpr25;;;[];;;;text;t2_78m9sk7m;False;False;[];;Winter has come;False;False;;;;1610641712;;False;{};gj8pi6r;False;t3_kx7vyz;False;False;t1_gj8mjdj;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8pi6r/;1610715051;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok_Draw_2833;;;[];;;;text;t2_4dha12vu;False;False;[];;"Disappointed that we didn’t get a Mecha Senku telling all us kids at home to not make sonic bombs. - -All around cool episode. Nice to see the science squad again. The science MacGyvering and the fun characters are the highlights of this show and we got both this episode.";False;False;;;;1610641735;;False;{};gj8pk3y;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8pk3y/;1610715086;120;True;False;anime;t5_2qh22;;0;[]; -[];;;Hells7rom;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Hells7rom;light;text;t2_3jumls03;False;False;[];;Quintessential quintuplets : waifu wars;False;False;;;;1610641753;;False;{};gj8pliv;False;t3_kx7vyz;False;False;t1_gj8mjdj;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8pliv/;1610715113;308;True;False;anime;t5_2qh22;;0;[]; -[];;;death556;;;[];;;;text;t2_y24tf;False;False;[];;I'm at 24 and have only dropped I☆chu so far lol.;False;False;;;;1610641757;;False;{};gj8plup;False;t3_kx7vyz;False;False;t1_gj8mf4o;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8plup/;1610715119;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"*Tensei Shitara Slime Datta Ken*'s studio resisting the urge to animate this - -[](#restrainedanger)";False;False;;;;1610641770;;False;{};gj8pmxt;False;t3_kx7vyz;False;False;t1_gj8mo70;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8pmxt/;1610715138;54;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610641783;moderator;False;{};gj8pnzi;False;t3_kx90mk;False;True;t3_kx90mk;/r/anime/comments/kx90mk/how_can_i_post_my_fanart_here/gj8pnzi/;1610715157;1;False;False;anime;t5_2qh22;;0;[]; -[];;;dontloseyourway1610;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Marinate1016;light;text;t2_4wegnp53;False;False;[];;"That was a really good first ep back. The new OP bangs man. Got a really unique vibe to it. - -Wasn’t a huge fan of this arc in the manga, but I’m sure the studio will do a great job of bringing it to life. Looking forward to how it goes. Def missed Kohaku, Senku and co";False;False;;;;1610641802;;False;{};gj8pphz;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8pphz/;1610715184;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;I think Tsukasa might've just been reminded of his sister because of the little girl. Don't think it was anyone specific and just him thinking about how innocent the kids are and all that stuff he spouted in S1;False;False;;;;1610641820;;False;{};gj8pqyc;False;t3_kx7vyz;False;False;t1_gj8iprw;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8pqyc/;1610715208;21;True;False;anime;t5_2qh22;;0;[]; -[];;;death556;;;[];;;;text;t2_y24tf;False;False;[];;Lol ex arm. So bad that it's kinda good.;False;False;;;;1610641820;;False;{};gj8pr00;False;t3_kx7vyz;False;False;t1_gj8mjdj;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8pr00/;1610715209;20;True;False;anime;t5_2qh22;;0;[]; -[];;;TacoBellIsChipotle;;;[];;;;text;t2_7l9egrg6;False;False;[];;Any reason why you can't check for yourself?;False;False;;;;1610641824;;False;{};gj8prbk;False;t3_kx8vyb;False;True;t3_kx8vyb;/r/anime/comments/kx8vyb/does_anyone_one_know_if_they_have_improved_the/gj8prbk/;1610715214;0;True;False;anime;t5_2qh22;;0;[]; -[];;;JiGGiYxMaN4;;;[];;;;text;t2_8fcuvfjw;False;False;[];;Cause I’m in a monopoly game, and my friends were talking about it.;False;False;;;;1610641858;;False;{};gj8ptzd;True;t3_kx8vyb;False;True;t1_gj8prbk;/r/anime/comments/kx8vyb/does_anyone_one_know_if_they_have_improved_the/gj8ptzd/;1610715261;2;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;Make a text post but make the text of the post a link to your image.;False;False;;;;1610641870;;False;{};gj8puz5;False;t3_kx90mk;False;True;t3_kx90mk;/r/anime/comments/kx90mk/how_can_i_post_my_fanart_here/gj8puz5/;1610715279;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;Is Senku riding a homemade tank in the OP ready to destroy ~~his town~~ the Tsukasa Empire?;False;False;;;;1610641872;;False;{};gj8pv68;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8pv68/;1610715282;14;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;It's making up for 2020's dry seasons with only a few good anime.;False;False;;;;1610641878;;False;{};gj8pvp9;False;t3_kx7vyz;False;True;t1_gj8jybx;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8pvp9/;1610715291;0;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;From what I've seen the artwork is better (I mean, it couldn't really have been worse) but still that stiff animation.;False;False;;;;1610641889;;False;{};gj8pwit;False;t3_kx8vyb;False;True;t3_kx8vyb;/r/anime/comments/kx8vyb/does_anyone_one_know_if_they_have_improved_the/gj8pwit/;1610715305;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"My sleep schedule is messed up because of this season. - -[](#lifeishard)";False;False;;;;1610641893;;False;{};gj8pwvk;False;t3_kx7vyz;False;False;t1_gj8lsg4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8pwvk/;1610715312;68;True;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;At least they aren't declaring war on all SF series;False;False;;;;1610641895;;False;{};gj8pwzd;False;t3_kx7vyz;False;False;t1_gj8jiy4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8pwzd/;1610715313;11;True;False;anime;t5_2qh22;;0;[]; -[];;;cassidybk;;MAL;[];;https://myanimelist.net/profile/catcityk;dark;text;t2_ejuod;False;False;[];;Wow this is great! Love your art style! Ram deserves more love, this season should showcase how great she is :);False;False;;;;1610641897;;False;{};gj8px63;False;t3_kx8ear;False;True;t3_kx8ear;/r/anime/comments/kx8ear/i_drew_ram_from_re_zero_oc/gj8px63/;1610715317;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"> Really missing Yuzurihara and Taiju so hope we don't have to wait long to see them. - -Please, we have waited too long!";False;False;;;;1610641900;;False;{};gj8pxdl;False;t3_kx7vyz;False;True;t1_gj8llt7;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8pxdl/;1610715320;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;First get interested in cup noodles from Yuru Camp, then learn how to make them from Dr. Stone;False;False;;;;1610641933;;False;{};gj8q006;False;t3_kx7vyz;False;False;t1_gj8m72d;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8q006/;1610715367;148;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;It seems they did, they probably were in a rush to make 50eps and made the abomination such as S3, I think they atleast put a bit more effort this time so it could come out as decent but don't expect it to be on the same level as S1 and S2 cause it's still the same studio;False;False;;;;1610641939;;False;{};gj8q0hr;False;t3_kx8vyb;False;True;t3_kx8vyb;/r/anime/comments/kx8vyb/does_anyone_one_know_if_they_have_improved_the/gj8q0hr/;1610715375;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;Oh no Senku is gonna marry Tsukasa confirmed?????;False;False;;;;1610641956;;False;{};gj8q1vi;False;t3_kx7vyz;False;False;t1_gj8mmul;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8q1vi/;1610715400;86;True;False;anime;t5_2qh22;;0;[]; -[];;;breakdownbudi;;;[];;;;text;t2_nr28t;False;False;[];;i just love this world. i could watch them talk science and plans all day. this season is going to be so fun. really happy right now! and the ed is soooo good ive been waiting for it ever since the trailer.;False;False;;;;1610641959;;False;{};gj8q22q;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8q22q/;1610715404;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;"Don't forget the karma war between AOT and Re;Zero ^^a ^^hopeless ^^war ^^for ^^rezero ^^but ^^still ^^a ^^war";False;False;;;;1610641989;;False;{};gj8q4ha;False;t3_kx7vyz;False;False;t1_gj8mjdj;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8q4ha/;1610715444;97;True;False;anime;t5_2qh22;;0;[]; -[];;;LvciferXChrollo;;;[];;;;text;t2_2o14rcm5;False;False;[];;It‘s actually insane how they adapt everything of the manga in absolute perfection. This Season is going to be one hell of a ride!;False;False;;;;1610642000;;False;{};gj8q5f6;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8q5f6/;1610715461;66;True;False;anime;t5_2qh22;;0;[]; -[];;;bananeeek;;MAL;[];;https://myanimelist.net/animelist/bananek;dark;text;t2_m3u6b;False;False;[];;"When Gen said they'd go to hell I assumed he was going to imitate god's voice through the cell phone to trick them. But they want to go to hell for a simple lie? Get in the line. - -I've heard about ice drying but only after this episode I know what the process looks like. Cool shit.";False;False;;;;1610642008;;False;{};gj8q62f;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8q62f/;1610715473;8;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;It's been announced to be 11 episodes for this season.;False;False;;;;1610642018;;False;{};gj8q6uw;False;t3_kx7vyz;False;False;t1_gj8mp9d;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8q6uw/;1610715487;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;Dr. Stone is the only anime besides Yuru Camp that makes me excited for cup noodles.;False;False;;;;1610642022;;False;{};gj8q76g;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8q76g/;1610715493;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Pet___Shob;;;[];;;;text;t2_8e3zsvx9;False;False;[];;"Yeah i love Arifureta and its CGI! -Haha yeah... -Fuck this -It sucks";False;False;;;;1610642028;;False;{};gj8q7o6;False;t3_kx8sy5;False;True;t3_kx8sy5;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8q7o6/;1610715501;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;Don't worry, this season will have even more science.;False;False;;;;1610642043;;False;{};gj8q8tm;False;t3_kx7vyz;False;False;t1_gj8op8k;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8q8tm/;1610715522;65;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;You go m8😂;False;False;;;;1610642068;;False;{};gj8qauw;True;t3_kx8sy5;False;True;t1_gj8q7o6;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8qauw/;1610715567;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;"First time? - -[](#slowgrin)";False;False;;;;1610642077;;False;{};gj8qbl9;False;t3_kx7vyz;False;False;t1_gj8pwvk;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8qbl9/;1610715581;64;True;False;anime;t5_2qh22;;0;[]; -[];;;baquea;;;[];;;;text;t2_j3k0u;False;True;[];;Problem is when those people say their favourite anime is best and then refuse to accept that anyone else could possibly disagree. Saying something is the *best*, rather than just their favourite, already implies they are thinking their opinion is objective, which tends to rub people the wrong way too.;False;False;;;;1610642103;;False;{};gj8qdk2;False;t3_kx8sy5;False;False;t3_kx8sy5;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8qdk2/;1610715620;16;True;False;anime;t5_2qh22;;0;[]; -[];;;LvciferXChrollo;;;[];;;;text;t2_2o14rcm5;False;False;[];;I randomly ate one while watching it and it actually tasted 1.000.000 times better;False;False;;;;1610642122;;False;{};gj8qf1y;False;t3_kx7vyz;False;False;t1_gj8lr4j;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8qf1y/;1610715650;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];; If you need some dissuasion, you can watch Haachama's cooking;False;False;;;;1610642158;;False;{};gj8qhz7;False;t3_kx7vyz;False;False;t1_gj8m72d;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8qhz7/;1610715726;51;True;False;anime;t5_2qh22;;0;[]; -[];;;SnowLocke;;;[];;;;text;t2_wx2pc;False;False;[];;"It's ok to think that your favorite anime is the best, but it's not ok to say that your favorite anime is the best. - -Saying ""I think AoT is the best"" or ""I think AoT is the worst"" is giving an opinion. You like it or dislike it, and probably have reasons for having that opinion. But when you say ""AoT is the best"" and omit the words ""I think"" or ""in my opinion"" then you're no longer stating a personal opinion. You're saying that you're correct and that anyone who disagrees is incorrect. And that's pretty shitty.";False;False;;;;1610642169;;False;{};gj8qixg;False;t3_kx8sy5;False;False;t3_kx8sy5;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8qixg/;1610715747;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;It's possible that flashback was supposed to be voiced. I don't know cause I only started the manga recently, but it wouldn't surprise me if he was supposed to talk in it. Maybe we won't hear a replacement which makes me sad, but I guess I could always check the VA list if I wanted to;False;False;;;;1610642200;;False;{};gj8qlet;False;t3_kx7vyz;False;True;t1_gj8lgjk;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8qlet/;1610715798;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;"Nah, I disagree. It's okay to think a series is the best ever created becuase let's be real. A series could do everything perfectly and someone would still hate on it. You may be subjective or objective. So me saying ""Legend of the Galactic heroes is the best anime ever created and nothing compares"" isn't wrong.";False;False;;;;1610642202;;False;{};gj8qlie;True;t3_kx8sy5;False;True;t1_gj8qdk2;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8qlie/;1610715799;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;dfhxuhbzgcboi;;;[];;;;text;t2_7706yp72;False;False;[];;YAYYYYYYYYYYYYYYYYYYYYYYYYYYYYY NOW EVERYONE SING KOMM SUSSER TOD WITH ME!;False;False;;;;1610642204;;False;{};gj8qloi;False;t3_kx95be;False;True;t3_kx95be;/r/anime/comments/kx95be/evangelion_fourth_movie_isnt_the_end_of_franchise/gj8qloi/;1610715804;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TacoBellIsChipotle;;;[];;;;text;t2_7l9egrg6;False;False;[];;So it's ok to post online during a game of monopoly but not to check a video?;False;False;;;;1610642221;;False;{};gj8qn2j;False;t3_kx8vyb;False;True;t1_gj8ptzd;/r/anime/comments/kx8vyb/does_anyone_one_know_if_they_have_improved_the/gj8qn2j/;1610715831;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;"### Stitches! - -* [Senku 1](https://i.imgur.com/AuBAJYd.jpg) - -* [Chrome](https://i.imgur.com/TNJTvTj.jpg) - -* [Kohaku](https://i.imgur.com/gEO7B64.jpg) - -* [Senku 2](https://i.imgur.com/VZhfbhA.jpg) - -* [Byakuya](https://i.imgur.com/uHEFIGw.jpg) - -* [Yuzu & Taiju(?)](https://i.imgur.com/GKOcTQ3.jpg) - -* [Senku 3](https://i.imgur.com/u6wov3Y.jpg) - -* [Gen](https://i.imgur.com/JdW9VrO.jpg) - -* [Magma, Gen, & Chrome](https://i.imgur.com/1BbK47w.jpg) - -[Starting off with a nice and short recap](https://i.imgur.com/bMFYrH7.png) about what happened last season from Gen. - -As expected from Senku, he's already starting off this new season with a new crazy idea. [Space food?](https://i.imgur.com/QlED3dV.png) That definitely took a few minutes to click [until Senku explained the importance of pre-prepared food during the winter.](https://i.imgur.com/4W67kAR.png) This show is really a quick reminder at how we take modern things for granted. - -Unsurprisingly this one isn't as difficult to make since he already has everything at the ready. They just had to modify [an existing gadget](https://i.imgur.com/q6pr95w.png) that they already have so it can do the drying part of a freeze dired food. - -[Ginro's imagination of what Yuzu and Taiju looks like is hilarious!](https://i.imgur.com/vGlVT1w.png) Taiju is basically just brown haired and tall Senku while Yuzu is just long haired Yuzu with a much fuller lips. - -I was wondering what kind of plan Gen had [that would send them to hell.](https://i.imgur.com/5VkCftA.png) I really thought they were planning on assassinating Tsukasa but it looks like the plan is just have Gen imitate Lilliana's voice and make Tsukasa's followers believe [that the world hasn't fully collapsed](https://i.imgur.com/LzOZBrn.png) to make them lose faith in Tsukasa. - - -It's not as horrible as I first thought but yeah, Tsukasa's followers are definitely going to hate them after that. Although I'm pretty sure that even if it's just [Hyoga and Tsukasa left](https://i.imgur.com/w0mWuP5.png) they will have a tough time overpowering someone like those two. - -Welp plans seems to be pretty straight forward! I don't think there's anything else noteworthy to mention. I think this will all depend in Tsukasa's followers actually believing in their fake Lilliana. And considering there's a motherfucking tank in the OP, this Stone Wars arc will definitely escalate even more!";False;False;;;;1610642235;;False;{};gj8qo7e;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8qo7e/;1610715853;58;True;False;anime;t5_2qh22;;0;[]; -[];;;nsleep;;MAL;[];;https://myanimelist.net/animelist/NeverSleep;dark;text;t2_5u8vg;False;False;[];;Of course not, Anno forgot how to write anything else and a man needs to pay his bills.;False;False;;;;1610642259;;False;{};gj8qq3b;False;t3_kx95be;False;True;t3_kx95be;/r/anime/comments/kx95be/evangelion_fourth_movie_isnt_the_end_of_franchise/gj8qq3b/;1610715888;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610642286;;False;{};gj8qsai;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8qsai/;1610715927;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"# Source Material Corner - -Reply to this comment for any source-related discussion, future spoilers (including future characters, events and general hype about future content), comparison of the anime adaptation to the original, or just general talk about the source material. - -**Spoilers for the first TV anime adaptation can be left untagged**. Discussions about the source or any other adaptation outside of this comment tree will be removed, and **anything not adapted in the first TV anime adaptation will be treated as spoilers**. - -The spoiler syntax is: -`[Spoiler source](/s ""Spoiler goes here"")` - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610642286;moderator;False;{};gj8qsbu;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8qsbu/;1610715928;1;False;True;anime;t5_2qh22;;0;[]; -[];;;leave1me1alone;;;[];;;;text;t2_74bvy75;False;False;[];;"If we're going to see stuff at the same rate we did before (games and the like) I understand but I highly doubt were going to see another series/movie in the next decade. - -As the article says: The movie is the end of the story";False;False;;;;1610642329;;False;{};gj8qvrq;False;t3_kx95be;False;True;t3_kx95be;/r/anime/comments/kx95be/evangelion_fourth_movie_isnt_the_end_of_franchise/gj8qvrq/;1610715990;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610642340;;False;{};gj8qwor;False;t3_kx8vyb;False;True;t1_gj8qn2j;/r/anime/comments/kx8vyb/does_anyone_one_know_if_they_have_improved_the/gj8qwor/;1610716007;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;It says there are spinoffs and other stuff;False;False;;;;1610642347;;False;{};gj8qx7u;True;t3_kx95be;False;True;t1_gj8qq3b;/r/anime/comments/kx95be/evangelion_fourth_movie_isnt_the_end_of_franchise/gj8qx7u/;1610716018;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Vegetable0;;;[];;;;text;t2_5im09tzo;False;False;[];;Judging from the opening they are going to make a tank. Seems too far fetched but then again, so did a cellphone.;False;False;;;;1610642352;;False;{};gj8qxo0;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8qxo0/;1610716026;12;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;"Senku marries Tsukasa and we get instant peace between the two factions, Stone Wars are over - -Proven 100% effective by Nisekoi";False;False;;;;1610642375;;False;{};gj8qzm8;False;t3_kx7vyz;False;False;t1_gj8q1vi;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8qzm8/;1610716063;55;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;Yeah, the Main story ends;False;False;;;;1610642400;;False;{};gj8r1m8;True;t3_kx95be;False;True;t1_gj8qvrq;/r/anime/comments/kx95be/evangelion_fourth_movie_isnt_the_end_of_franchise/gj8r1m8/;1610716098;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mcpw;;;[];;;;text;t2_esjgx;False;False;[];;I mean, nobody expected it to be the final end of all EVA related products, right? It just seems to be the last take on the main story in animated form.;False;False;;;;1610642400;;False;{};gj8r1nh;False;t3_kx95be;False;True;t3_kx95be;/r/anime/comments/kx95be/evangelion_fourth_movie_isnt_the_end_of_franchise/gj8r1nh/;1610716099;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nescau_Fernando;;;[];;;;text;t2_1m6og0;False;False;[];;"That was a nice little recap: it had [best boy Gen](https://i.imgur.com/CuZL3nb.png) telling the story and covered just enough to refresh the memory without overstaying its welcome. It's nice to be back! - -Somehow, someway I survived the temptation of reading the manga between seasons. Season 1 was really good, up there with Kanata no Astra in the strong year that was 2019, so I'm looking forward to how this season's gonna play out. - -In the transition from S1 to S2, I kinda forgot how absolutely hilarious some of the faces in this show are! [Gen and Chrome](https://imgur.com/a/88fOWkw) have the funniest ones overall, but Ginrou's imagination is a worthy competitor: take a look the shoujo [Taiju & Yuzuriha](https://i.imgur.com/8oa1JWR.png) LMAO - -So Senku wants to win the stone wars with a combination of cellphones, space food and fake news about America...oh boy, if this was any other series that would go all kinds of wrong. Can't wait for [Senku in a tank](https://i.imgur.com/wm9kTDz.png)!";False;False;;;;1610642428;;False;{};gj8r3xx;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8r3xx/;1610716140;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;Well that's... disappointing, the Promised Neverland way huh.;False;False;;;;1610642429;;False;{};gj8r420;False;t3_kx7vyz;False;False;t1_gj8q6uw;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8r420/;1610716141;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;"It's fine to just think your series is the best coz let's be real, what series has ever, literally ever been liked by everyone ? If someone says ""Aot is the best series ever created and nothing compares"" they're not wrong. Cox everyone should understand they think that. Coz a show being better than another is never ever facts. It's always an opinion. Just talking about the quality of a show means is always an opinion. There's no facts here and it's not possible for anything to be factual. So it should kinda just be common understanding it's all opinions. - - -In summary you're saying you need to classify it as an opinion, but what's the point of doing that when literally anything you say is will just be an opinion. - - - -Science and math are the only 2 fields where opinions need to be classified cox there's a definitive answer.";False;False;;;;1610642430;;False;{};gj8r43m;True;t3_kx8sy5;False;True;t1_gj8qixg;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8r43m/;1610716143;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nsleep;;MAL;[];;https://myanimelist.net/animelist/NeverSleep;dark;text;t2_5u8vg;False;False;[];;"[Nobody knows what this man is thinking.](https://i.imgur.com/MRCQmCo.png) - -But now we know it's likely some random ass L5 person killed her and Satoko back in Onidamashi. It's going to be so funny if Rika's out is allying herself with Takano.";False;False;;;;1610642433;;False;{};gj8r4d8;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8r4d8/;1610716147;150;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;Oh jeez a different rom com to watch. It was already on my list, but now I wanna see that;False;False;;;;1610642440;;False;{};gj8r4yh;False;t3_kx7vyz;False;False;t1_gj8qzm8;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8r4yh/;1610716158;6;True;False;anime;t5_2qh22;;0;[]; -[];;;KaptainTZ;;skip7;[];;;dark;text;t2_9fhynbf5;False;False;[];;"\*disclaimer\* - -I love Gintama";False;False;;;;1610642443;;False;{};gj8r55s;True;t3_kx948a;False;True;t3_kx948a;/r/anime/comments/kx948a/gintama_fans_be_like/gj8r55s/;1610716162;1;True;False;anime;t5_2qh22;;0;[]; -[];;;H-Ryougi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DizzyAvocado/animelist;light;text;t2_pr24s;False;False;[];;"[AHH DAME DA, ZEN ZEN DAME DA](https://i.imgur.com/A7hd9bc.png) - -Honestly, what is there even to say about this episode other than ""what the fuck"". I guess we confirmed that the building in the OP is St. Lucia. - -Boy what an introduction for Akasaka.";False;False;;;;1610642460;;False;{};gj8r6jk;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8r6jk/;1610716188;75;True;False;anime;t5_2qh22;;0;[]; -[];;;Fantastic-Wrongdoer6;;;[];;;;text;t2_7aa5p4xx;False;False;[];;This anime is literally so perfect. It is always onto the point and the animation is superb as well. If this was db z or one piece this episode would be stretched to like 5 episodes.;False;False;;;;1610642461;;False;{};gj8r6m8;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8r6m8/;1610716189;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MySaltIsExposed;;;[];;;;text;t2_3v5xat3;False;False;[];;"[POYO](https://pbs.twimg.com/media/Ers_LYnXUAI-X5Z?format=png&name=small)";False;False;;;;1610642466;;False;{};gj8r70y;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8r70y/;1610716197;33;True;False;anime;t5_2qh22;;0;[]; -[];;;SnowLocke;;;[];;;;text;t2_wx2pc;False;False;[];;You are incorrect. It is wrong. Not that you're wrong for selecting LotGH and not for some other anime, but from changing a statement about opinion into one of objective fact. If you *think* that LotGH is the best, then you're saying that it's your opinion. For *you* LotGH is the best. But by saying that it **is** the best, you're saying that anyone who says otherwise is incorrect. That your opinion is the only correct one and that other people aren't allowed to have a favorite anime that's different from your own.;False;False;;;;1610642469;;False;{};gj8r7am;False;t3_kx8sy5;False;False;t1_gj8qlie;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8r7am/;1610716201;15;True;False;anime;t5_2qh22;;0;[]; -[];;;HyperSonic6325;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;I don’t simp for Kaguya girls.;dark;text;t2_40y5x1xp;False;False;[];;"[Slime Isekai](/s ""War against Kingdom of Farmus and Demon Lord Clayman"")";False;False;;;;1610642482;;False;{};gj8r8d6;False;t3_kx7vyz;False;False;t1_gj8mjdj;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8r8d6/;1610716221;29;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;Lmao;False;False;;;;1610642490;;False;{};gj8r90k;False;t3_kx7vyz;False;False;t1_gj8ngcl;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8r90k/;1610716232;7;True;False;anime;t5_2qh22;;0;[]; -[];;;scorchdragon;;;[];;;;text;t2_evfqj;False;False;[];;"At first I went from gasping like Rika when Akasaka appeared. - -Then everything to what the fuck, followed by WHAT THE FUCK and an ever increasing amount of it and that gripping feeling of despair. - -And there's another arc after this (WITH 7 EPISODES), and this one has two more eps in it. Unless Rika pulls off an amazing save at the end of Nekodamashi, someones going to stop her from going through with her from going through with her plan. - -What's her ""last"" attempt even going to be about? All I can think of is either Rika just booking it as far as she can, or we start getting a focus on Takano... - - -All that said I sure do suddenly feel more understanding to those people saying this could be an origin story now. Akasaka alone would have been enough for that. - -.... And boy howdy the thread chaos just got worse....";False;False;;;;1610642500;;False;{};gj8r9p6;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8r9p6/;1610716244;113;True;False;anime;t5_2qh22;;0;[]; -[];;;genasugelan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Genasugelan;light;text;t2_15kv3y;False;False;[];;We just have to wait for North Korea to do that.;False;False;;;;1610642502;;False;{};gj8r9wy;False;t3_kx7vyz;False;False;t1_gj8olfp;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8r9wy/;1610716249;70;True;False;anime;t5_2qh22;;0;[]; -[];;;scorchdragon;;;[];;;;text;t2_evfqj;False;False;[];;Do we... flip the chessboard around...?;False;False;;;;1610642557;;False;{};gj8re9c;False;t3_kx96wn;False;False;t1_gj8r6jk;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8re9c/;1610716328;49;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;It was expected. I don't want to spoil something from the manga, but the 11 episode is a perfect cut-off point, since 24 would leave it in the dead middle of the next arc.;False;False;;;;1610642570;;False;{};gj8rf9f;False;t3_kx7vyz;False;False;t1_gj8r420;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8rf9f/;1610716349;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Cjb1126;;;[];;;;text;t2_flrzq;False;False;[];;Sosoruze kore wa is back;False;False;;;;1610642572;;False;{};gj8rffb;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8rffb/;1610716352;9;True;False;anime;t5_2qh22;;0;[]; -[];;;REAL_CONSENT_MATTERS;;;[];;;;text;t2_ftyr6;False;False;[];;"it's kind of funny they have a disclaimer at the end telling us not to imitate senku after he spends every episode hyping us up on cool the stuff he's doing is. - -they even refer to ""foraging"" as ""extremely dangerous,"" lol. pretty sure it's only dangerous if eat things you haven't identified with certainty. i am definitely still alive after preparing acorns to eat last fall. i'm sure this is just a legal disclaimer though and they mostly don't want us to make explosives or things like that. - -this episode definitely made me want to learn how to freeze dry food. if you can freeze it with ambient temperatures during the winter like they did then that's a pretty minimal power draw, but also if you have extra freezer space you aren't really occuring much extra draw either. there are also containers made so you can suck the air out of them to create a partial vacuum for the purposes of food storage, so seems like you could freeze them, suck the air out, and let the moisture evaporate for a slower process than what occurred in the show. - -my google searching seems to suggest that it works better if you have something that can absorb moisture in the container, as it it gives the moisture somewhere to go other than back into the food during the slower process. the example i found is calcium chloride, which is somewhat toxic but sometimes used as food preservative in safe levels, so it's more something to be careful with than highly toxic. - -i currently have some calcium chloride (ie damprid) in my room to act as a dehumidifier, which works very well for slow dehumidifying. i think. silica gel (the stuff that's in those ""do no eat"" packets) also absorbs moisture but is more highly toxic, so it would be a bad use in this case.";False;False;;;;1610642616;;False;{};gj8rj0n;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8rj0n/;1610716415;14;True;False;anime;t5_2qh22;;0;[]; -[];;;SkywardQuill;;MAL;[];;http://myanimelist.net/animelist/SkywardQuill;dark;text;t2_fp41n;False;False;[];;"It's baaaaack ! :D - -I've missed this show and Senkuu's cheesy one-liners.";False;False;;;;1610642622;;False;{};gj8rji2;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8rji2/;1610716427;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Squiddy56_;;;[];;;;text;t2_93n2q5lm;False;False;[];;is it glorious that the most normal thing here is the outro;False;False;;;;1610642622;;1610644653.0;{};gj8rjj8;False;t3_kx948a;False;True;t3_kx948a;/r/anime/comments/kx948a/gintama_fans_be_like/gj8rjj8/;1610716428;3;True;False;anime;t5_2qh22;;0;[]; -[];;;nsleep;;MAL;[];;https://myanimelist.net/animelist/NeverSleep;dark;text;t2_5u8vg;False;False;[];;Flip the whole table.;False;False;;;;1610642630;;False;{};gj8rk7e;False;t3_kx96wn;False;False;t1_gj8re9c;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8rk7e/;1610716439;53;True;False;anime;t5_2qh22;;0;[]; -[];;;genasugelan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Genasugelan;light;text;t2_15kv3y;False;False;[];;I'm glad there was only minimal amout of recap and they reached space food with the 9 minute mark. The reaction faces are really funny and the old man super saiyan never gets old.;False;False;;;;1610642642;;False;{};gj8rl4h;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8rl4h/;1610716455;174;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;But the thing is, that when talking about a show everything is opinionated. So you don't need to classify is as being an opinion. There's no point cox a show could be the best ever created and someone would hate it. It's just common sense that the person is saying an opinion.;False;False;;;;1610642649;;False;{};gj8rlpv;True;t3_kx8sy5;False;True;t1_gj8r7am;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8rlpv/;1610716467;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Urielvls_007;;;[];;;;text;t2_9siideao;False;False;[];;damn it looks good might trigger people but idk who that is.....;False;False;;;;1610642661;;False;{};gj8rmpn;False;t3_kx998m;False;True;t3_kx998m;/r/anime/comments/kx998m/askeladd_from_vinland_saga_my_first_fanart/gj8rmpn/;1610716485;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;"Also Ex-Arm : - -[](#panickedgakuto)";False;False;;;;1610642683;;False;{};gj8roh4;False;t3_kx7vyz;False;True;t1_gj8mjdj;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8roh4/;1610716517;4;True;False;anime;t5_2qh22;;0;[]; -[];;;dniwehtotnoituac;;;[];;;;text;t2_6navr;False;False;[];;"Is ""holy fuck"" a fitting enough reaction? - -Because holy fuck.";False;False;;;;1610642698;;False;{};gj8rpmu;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8rpmu/;1610716537;270;True;False;anime;t5_2qh22;;0;[]; -[];;;Sophia-Eldritch;;;[];;;;text;t2_3q1f4ih1;False;False;[];;Hehe, you got juked;False;False;;;;1610642700;;False;{};gj8rpuk;False;t3_kx9axj;False;True;t3_kx9axj;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gj8rpuk/;1610716540;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jerl;;;[];;;;text;t2_5ea9r;False;True;[];;"A -K -A -S -A -K -A";False;False;;;;1610642709;;False;{};gj8rqnr;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8rqnr/;1610716555;27;True;False;anime;t5_2qh22;;0;[]; -[];;;juances19;;HB;[];;https://kitsu.io/users/juances;dark;text;t2_17a18d;False;False;[];;"It's ok as long as you're not obnoxious. Someone people end up going ""lalala my favourite is better than yours"" when people try to have a discussion about it. Respect has to work both ways.";False;False;;;;1610642761;;False;{};gj8rupy;False;t3_kx8sy5;False;False;t3_kx8sy5;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8rupy/;1610716627;5;True;False;anime;t5_2qh22;;0;[]; -[];;;sidz250;;;[];;;;text;t2_4xov6zdo;False;False;[];;This truly is exhilarating. Ep is a solid start. A bit disappointed in the fact that there will be only 11 episodes but that just gives hope that s3 could potentially release earlier. Ed is pretty solid too, anyone got its spotify link?;False;False;;;;1610642777;;False;{};gj8rw03;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8rw03/;1610716650;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610642793;;False;{};gj8rxbs;False;t3_kx998m;False;True;t1_gj8rmpn;/r/anime/comments/kx998m/askeladd_from_vinland_saga_my_first_fanart/gj8rxbs/;1610716673;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;Gen even started with [the Star Wars opening crawl](https://i.imgur.com/JYtDkAM.jpg);False;False;;;;1610642810;;False;{};gj8ryr3;False;t3_kx7vyz;False;False;t1_gj8lbd3;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8ryr3/;1610716697;19;True;False;anime;t5_2qh22;;0;[]; -[];;;MagnoBurakku;;;[];;;;text;t2_u37ay;False;False;[];;Gen singing in the op, best shit i've ever seen.;False;False;;;;1610642835;;False;{};gj8s0ux;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8s0ux/;1610716734;3;True;False;anime;t5_2qh22;;0;[]; -[];;;fazagustaf;;MAL;[];;;dark;text;t2_z0cy4;False;False;[];;when Gen turn into Lilian Weinberg the sound effect similar to Gold Experience when transform object into a living organism lmao;False;False;;;;1610642838;;False;{};gj8s138;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8s138/;1610716739;32;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;">the old man super saiyan never gets old. - -I almost choked to that scene lol";False;False;;;;1610642843;;False;{};gj8s1g9;False;t3_kx7vyz;False;False;t1_gj8rl4h;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8s1g9/;1610716744;63;True;False;anime;t5_2qh22;;0;[]; -[];;;Urielvls_007;;;[];;;;text;t2_9siideao;False;False;[];;oh guess thats another anime to watch....;False;False;;;;1610642851;;False;{};gj8s248;False;t3_kx998m;False;True;t1_gj8rxbs;/r/anime/comments/kx998m/askeladd_from_vinland_saga_my_first_fanart/gj8s248/;1610716756;1;True;False;anime;t5_2qh22;;0;[]; -[];;;edwinvi;;;[];;;;text;t2_61hvsyte;False;True;[];;STONE WARS HYPE;False;False;;;;1610642866;;False;{};gj8s3cv;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8s3cv/;1610716778;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"Well Kazuhiro Yamaji was friends with Keiji Fujiwara and wanted to help, so i think he might be a goto pick if they need him to voice anything. We will probably see at some point this season though. - -Keiji Fujiwara had a lot of roles that will need to be delt with over the years, so im sur ethis discussion will happen again for a while. - -Its always rough to loose a talented VA, but in this case were lucky he had a talented friend willing to help fill in. - -Oh looks like he voiced Regan in Log Horizon too so with that having a s3 we will probably see there too. - -And Aldebaran in ReZero (one of the royal candidate's knights). - -Oh shit and World Trigger, i forgot he voiced Takumi Rindou, thats a MAJOR role also since hes the boss of the MC's team. - -So he voiced characters in 5 series this season (counting titan show). So we should find out i guess. I hope they stick with Kazuhiro Yamaji because he does a reallly good impression.";False;False;;;;1610642890;;False;{};gj8s5b9;False;t3_kx7vyz;False;True;t1_gj8qlet;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8s5b9/;1610716814;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Cynic_of_Astora;;MAL;[];;http://myanimelist.net/animelist/Cynic_of_Astora;dark;text;t2_hw3cs;False;False;[];;"> Winter War 2021 Confirmed - -Why do the trees suddenly speak Finnish?";False;False;;;;1610642908;;False;{};gj8s6sh;False;t3_kx7vyz;False;False;t1_gj8mjdj;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8s6sh/;1610716841;25;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;So I guess we can expect S3 with two cours !!;False;False;;;;1610642913;;False;{};gj8s75i;False;t3_kx7vyz;False;False;t1_gj8rf9f;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8s75i/;1610716846;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610642937;;False;{};gj8s94y;False;t3_kx998m;False;True;t1_gj8rmpn;/r/anime/comments/kx998m/askeladd_from_vinland_saga_my_first_fanart/gj8s94y/;1610716885;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SnowLocke;;;[];;;;text;t2_wx2pc;False;False;[];;"You are incorrect. I had a glass of grape juice this morning. That's neither science or math, yet it isn't an opinion. It's a fact. At the time of writing, Lupin III Part 2 has a 7.80 on MAL. That's not an opinion. If someone says ""AoT is the best and nothing compares"", unless the classify it as an opinion then it's being presented as a fact. In person or with people you know, maybe you're able to understand that the person is giving an opinion. But online, in text, with strangers? There's no way to know. If you state something like that as a fact, you are saying that anyone who disagrees is incorrect.";False;False;;;;1610642951;;False;{};gj8sa6p;False;t3_kx8sy5;False;False;t1_gj8r43m;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8sa6p/;1610716912;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;"Fax, I recently saw an example of this on a thread about Aot taking number 2 on mal rankings. FMAB were repeatedly shitting on Aot even though they should've just ignored it honestly. A celebration of success for a franchise is not an invitation for haters to come and shit on the series. It's a invitation for the fans to rejoice. I also saw this with demon slayer movie threads as well. There was always some DBZ and MHA fan shitting on the demon slayer and being like ""mha is better than DS, you cry babies"". That's when it's wrong, only state your opinion when it's asked for. Don't shove it in everywhere ffs.";False;False;;;;1610642953;;False;{};gj8saf7;True;t3_kx8sy5;False;True;t1_gj8rupy;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8saf7/;1610716920;2;True;False;anime;t5_2qh22;;0;[]; -[];;;as1eep;;;[];;;;text;t2_pek5e8i;False;False;[];;" this is right and wrong because as much as everything is subjective, people tend to state things like they are fact despite having no attempt at being objective or evidence based, and people are right to dislike this type of person. - -If person A says 'Horimiya is the best anime ever made because I like it the most', is in the end a narrsastic statement to make because you are placing yourself above objectivism and everyone else. Thus wrong. - -If person B says 'Horimiya is the best anime because in my opinion it has the best writing and art and the adaption really did justice and is thus the best anime to me.' this is a reasonable way to state it because it makes clear you are of an opinion and have your own reasons for it.";False;False;;;;1610642979;;False;{};gj8scjc;False;t3_kx8sy5;False;True;t3_kx8sy5;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8scjc/;1610716966;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WhoiusBarrel;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/darubarrel/animelist;light;text;t2_pdj0b;False;False;[];;Ahh yes scorpions.;False;False;;;;1610642989;;False;{};gj8sdd1;False;t3_kx7vyz;False;False;t1_gj8qhz7;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8sdd1/;1610716983;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;Couldn't it be just 12?;False;False;;;;1610643000;;False;{};gj8se9z;False;t3_kx7vyz;False;True;t1_gj8rf9f;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8se9z/;1610717002;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Aadi-K;;;[];;;;text;t2_4klu6o3e;False;False;[];;That’s fine, but if you say that it is a *fact* that K-ON is meh, then I’m obviously gonna disagree with that, so when talking about anime, you should really be subjective and objective, like my favorite series is Katekyo Hitman Reborn, but obviously I know it’s not the best anime ever made, and if someone does think that, that is also fine, it’s a problem when they become all toxic and go KHR is the best anime ever, nothing can compare to it, or just full elitist mode;False;False;;;;1610643004;;False;{};gj8semn;False;t3_kx8sy5;False;True;t1_gj8p81w;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8semn/;1610717011;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Urielvls_007;;;[];;;;text;t2_9siideao;False;False;[];;uh yeah it uh worked for me....;False;False;;;;1610643005;;False;{};gj8sene;False;t3_kx998m;False;True;t1_gj8s94y;/r/anime/comments/kx998m/askeladd_from_vinland_saga_my_first_fanart/gj8sene/;1610717011;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OverallDingo2;;;[];;;;text;t2_67sl6pdx;False;False;[];;And im glad im only whaching 3 now;False;False;;;;1610643048;;False;{};gj8siag;False;t3_kx7vyz;False;True;t1_gj8kx3q;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8siag/;1610717082;2;True;False;anime;t5_2qh22;;0;[]; -[];;;alucab1;;;[];;;;text;t2_12fuop;False;False;[];;With every episode of this, I become more and more convinced that Ryukishi is one of the greatest writers alive. This is insane.;False;False;;;;1610643070;;False;{};gj8sk3x;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8sk3x/;1610717116;35;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;"But here's the thing, when people say "" it's is the best anime"" without adding ""i think or ""imo"". I don't think there's anything wrong with that because it should just be a known fact that nothing can be factual when talking about shows. Look at fmab for example. It's got the first rating on mal but a huge percentage of people think it's garbage. Unless there's a show everyone loves, which there never will be. There's no point in classifying anything as an opinion since it's always inherently gonna be an opinion since it's talking about the show.";False;False;;;;1610643149;;False;{};gj8sqoo;True;t3_kx8sy5;False;True;t1_gj8scjc;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8sqoo/;1610717258;0;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;It just depends on if he was able to voice him or not cause with the amount of characters he’s voicing this season he might’ve been too busy to pick up a new job as you’re dedicated pretty much to the role unless something major happens. I don’t know much of Keiji’s work, but hope he gets to honor his friend by voicing his character;False;False;;;;1610643188;;False;{};gj8stuy;False;t3_kx7vyz;False;True;t1_gj8s5b9;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8stuy/;1610717332;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Andreas260899;;;[];;;;text;t2_oonk8ga;False;False;[];;Yes.;False;False;;;;1610643196;;False;{};gj8suk0;False;t3_kx8vyb;False;True;t1_gj8qn2j;/r/anime/comments/kx8vyb/does_anyone_one_know_if_they_have_improved_the/gj8suk0/;1610717347;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PineappleBuns;;;[];;;;text;t2_65f7v;False;False;[];;"Literally starting off the first episode with a BLAST! My boy Senku is finally back! Already learning how to freeze dry food too. - -Super looking forward to this season!";False;False;;;;1610643197;;False;{};gj8sun8;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8sun8/;1610717348;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;Facts, I personally think FMAB is not Mastepeices but just a good anime. But I don't go out of my way to tell that to every person who thinks it's w Masterpiece.;False;False;;;;1610643237;;False;{};gj8sxwc;True;t3_kx8sy5;False;True;t1_gj8semn;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8sxwc/;1610717422;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Evilux;;;[];;;;text;t2_naswj;False;False;[];;"LET'S GOOOOO! - -OONGA BOONGA SCIENCE MAN! - -OONGA BOONBA STONE MAN!";False;False;;;;1610643268;;False;{};gj8t0hc;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8t0hc/;1610717474;16;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;It's competing with the GOATS like Berserk 2016 and Gibiate;False;False;;;;1610643269;;False;{};gj8t0kf;False;t3_kx7vyz;False;False;t1_gj8roh4;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8t0kf/;1610717477;13;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610643284;;False;{};gj8t1tm;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8t1tm/;1610717499;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexUltraviolet;;;[];;;;text;t2_10o258l;False;False;[];;Yeah it was just the random kid they passed by back in S1, she's holding a hand because Tsukasa broke the rest.;False;False;;;;1610643286;;False;{};gj8t22m;False;t3_kx7vyz;False;False;t1_gj8pqyc;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8t22m/;1610717504;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Aadi-K;;;[];;;;text;t2_4klu6o3e;False;False;[];;Then you’re good, I just hate people who can’t even *try* to accept or even look at my or your or anyone else’s opinions;False;False;;;;1610643308;;False;{};gj8t3ua;False;t3_kx8sy5;False;True;t1_gj8sxwc;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8t3ua/;1610717537;2;True;False;anime;t5_2qh22;;0;[]; -[];;;as1eep;;;[];;;;text;t2_pek5e8i;False;False;[];;But if it is a known fact that everything one says is an opinion and thus going around acting as if you are completely factual and true can be seen as narrsastic because you are acting as if you are above this previously defined law unlike the rest of us imbeciles.;False;False;;;;1610643322;;False;{};gj8t51o;False;t3_kx8sy5;False;True;t1_gj8sqoo;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8t51o/;1610717562;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dadnaya;;MAL;[];;https://myanimelist.net/profile/dadnaya;dark;text;t2_cubnc;False;False;[];;"The first half was anime-original, right? - -I don't recall it in the manga";False;False;;;;1610643355;;False;{};gj8t7s6;False;t3_kx7vyz;False;False;t1_gj8iaxy;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8t7s6/;1610717622;26;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;Oh nice didn’t realize that. Didn’t rewatch season one prior so I forgot a lot of details;False;False;;;;1610643356;;False;{};gj8t7w3;False;t3_kx7vyz;False;True;t1_gj8t22m;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8t7w3/;1610717625;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Admiral_Ryou;;;[];;;;text;t2_o6jpw;False;False;[];;"Man, how I missed Senku, Gen, and Chrome. ""Let's go to hell together"" These boys are awesome.";False;False;;;;1610643427;;False;{};gj8tdyf;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8tdyf/;1610717742;5;True;False;anime;t5_2qh22;;0;[]; -[];;;SnowLocke;;;[];;;;text;t2_wx2pc;False;False;[];;">when talking about a show everything is opinionated - -It should be, yes. But some people do not realize that their opinions are not facts. Yes, a show could somehow be objectively the best and still hated. That's the point. It's all opinions. There are some objective things, but when it comes it liking something or enjoyment it's 100% subjective. That's why presenting opinions as though they were objective facts is wrong. - - - -Also, what does ""cox"" mean? Are you trying to type ""because""? Because the shortened version of that in English is ""cuz"".";False;False;;;;1610643432;;False;{};gj8teef;False;t3_kx8sy5;False;False;t1_gj8rlpv;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8teef/;1610717751;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;Ok, i agree it applies to more things then math and science. Those were just quick examples. However, it doesn't apply on any shows. Even using mal as a metric to classify an opinion as fact isn't facts. It's just stating the collective opinion of mal raters. Anyone saying a show is a masterpiece, isn't wrong since it's inherently subjective. You don't need to classify it as an opinIon.;False;False;;;;1610643433;;False;{};gj8teh9;True;t3_kx8sy5;False;False;t1_gj8sa6p;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8teh9/;1610717752;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Eagle_Nebula7;;;[];;;;text;t2_6dkenliv;False;False;[];;Happy Cake Day!;False;False;;;;1610643441;;False;{};gj8tf6k;False;t3_kx7vyz;False;False;t1_gj8oryv;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8tf6k/;1610717765;5;True;False;anime;t5_2qh22;;0;[]; -[];;;unknown537;;;[];;;;text;t2_20519zb3;False;False;[];;"I was literally shouting ""STOP IT"" every single loop!! What the hell, Ryukishi?!!";False;False;;;;1610643454;;False;{};gj8tg8r;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8tg8r/;1610717787;33;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;12 would need to include a filler episode. The cut-off point at the end of season is a hard cut-off, so it would be pretty hard to fit any more content in.;False;False;;;;1610643454;;False;{};gj8tg8w;False;t3_kx7vyz;False;False;t1_gj8se9z;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8tg8w/;1610717787;8;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;Most likely yes.;False;False;;;;1610643465;;False;{};gj8th6f;False;t3_kx7vyz;False;False;t1_gj8s75i;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8th6f/;1610717805;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Greenawalt_Gaming;;;[];;;;text;t2_463fnkfu;False;False;[];;Name?;False;False;;;;1610643483;;False;{};gj8tip4;False;t3_kx9axj;False;True;t3_kx9axj;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gj8tip4/;1610717834;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Eagle_Nebula7;;;[];;;;text;t2_6dkenliv;False;False;[];;So it's out already in the episode? I haven't been able to find it in any distribution platforms.;False;False;;;;1610643509;;False;{};gj8tkuh;False;t3_kx7vyz;False;True;t1_gj8j0kx;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8tkuh/;1610717874;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;Cox is a slang version of cuz, it's primarily used on the Canadian east coast. The pronunciation is the same but it's typed differently.;False;False;;;;1610643532;;False;{};gj8tmrz;True;t3_kx8sy5;False;True;t1_gj8teef;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8tmrz/;1610717911;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RandomError19;;;[];;;;text;t2_57ucn;False;False;[];;That first jump cut... jfc;False;False;;;;1610643542;;False;{};gj8tnmi;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8tnmi/;1610717931;61;True;False;anime;t5_2qh22;;0;[]; -[];;;HeilAnime1488;;;[];;;;text;t2_902o5pt0;False;False;[];;wow I fucking love science;False;False;;;;1610643560;;False;{};gj8tp14;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8tp14/;1610717964;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610643580;;1610660094.0;{};gj8tqpu;False;t3_kx8sy5;False;True;t1_gj8rlpv;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8tqpu/;1610717994;3;True;False;anime;t5_2qh22;;0;[]; -[];;;A-Dolahans-hat;;;[];;;;text;t2_3jkxuxfu;False;False;[];;Not going to lie. I’m a little disappointed. I was hoping for some sinister twist, not a silly prank;False;False;;;;1610643595;;False;{};gj8trxx;False;t3_kx9axj;False;True;t3_kx9axj;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gj8trxx/;1610718018;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;Keiji played a TON of characters through the years that are classic and iconic. His voice is extremely unique and you can always tell its him. He was just made to voice older spunky / sassy characters and he was pretty much typecast into that, which he dint seem to mind. But yeah check his MAL and see all the stuff hes done. Its a lot.;False;False;;;;1610643601;;False;{};gj8tsg1;False;t3_kx7vyz;False;True;t1_gj8stuy;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8tsg1/;1610718029;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;Future Diary;False;False;;;;1610643604;;False;{};gj8tsow;False;t3_kx9axj;False;True;t1_gj8tip4;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gj8tsow/;1610718034;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlackSCrow;;;[];;;;text;t2_837fn80k;False;False;[];;"Is it just me, or the cup ramen and sonic bomb are anime original? - -IIRC they use [that](/s ""cotton candy"") instead of sonic bomb to distract Homura in the manga.";False;False;;;;1610643616;;1610644240.0;{};gj8ttqj;False;t3_kx7vyz;False;False;t1_gj8iaxy;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8ttqj/;1610718053;10;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;That some good news. I hope we can S3 announcement once this Season is finished airing;False;False;;;;1610643628;;False;{};gj8tup8;False;t3_kx7vyz;False;False;t1_gj8th6f;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8tup8/;1610718072;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;True, some people do be dumb dumbs;False;False;;;;1610643629;;False;{};gj8tutj;True;t3_kx8sy5;False;True;t1_gj8tqpu;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8tutj/;1610718075;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KaptainTZ;;skip7;[];;;dark;text;t2_9fhynbf5;False;False;[];;Change sad to glorious and we have a deal;False;False;;;;1610643630;;False;{};gj8tuvy;True;t3_kx948a;False;True;t1_gj8rjj8;/r/anime/comments/kx948a/gintama_fans_be_like/gj8tuvy/;1610718076;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;Idk what you mean it's a cute romance anime between an assertive girl and a timid boy;False;False;;;;1610643647;;False;{};gj8tw98;False;t3_kx9axj;False;True;t3_kx9axj;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gj8tw98/;1610718100;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;;;[];;;;text;t2_4la0rf79;False;False;[];;Bruh I want to keep watching but I also don’t want lol;False;False;;;;1610643658;;False;{};gj8tx4p;True;t3_kx9axj;False;True;t1_gj8rpuk;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gj8tx4p/;1610718115;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Snivy_Ian;;;[];;;;text;t2_fdhiz;False;False;[];;don't worry, most of the action incorporates the science in clever and unique ways.;False;False;;;;1610643666;;False;{};gj8txus;False;t3_kx7vyz;False;False;t1_gj8op8k;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8txus/;1610718128;85;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;;;[];;;;text;t2_4la0rf79;False;False;[];;In the top left of the vid;False;False;;;;1610643679;;False;{};gj8tyyx;True;t3_kx9axj;False;True;t1_gj8tip4;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gj8tyyx/;1610718150;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NJBuoy;;skip7;[];;;dark;text;t2_9i9ekg0o;False;False;[];;Which anime is this;False;False;;;;1610643685;;False;{};gj8tzgc;False;t3_kx9g8p;False;True;t3_kx9g8p;/r/anime/comments/kx9g8p/food_anime_they_said/gj8tzgc/;1610718159;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;I’ll check I don’t recognize too many VAs besides like the obvious meme ones;False;False;;;;1610643691;;False;{};gj8tzzi;False;t3_kx7vyz;False;True;t1_gj8tsg1;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8tzzi/;1610718168;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RomainLuke;;;[];;;;text;t2_vy4owk;False;False;[];;"I guess Higurashi always had gruesome scenes but this was too much for me for one episode. The Akasaka betrayal... I felt that. I was curious how they were going to handle the 5 remaining loops and I am even more curious right now were all of this is going. - -At least I'm excited for what's to come and the symoblism with Rika's hand and the loops remaining was nice.";False;False;;;;1610643694;;False;{};gj8u060;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8u060/;1610718172;94;True;False;anime;t5_2qh22;;0;[]; -[];;;Greenawalt_Gaming;;;[];;;;text;t2_463fnkfu;False;False;[];;Ah sorry, I didn’t realize;False;False;;;;1610643713;;False;{};gj8u1qt;False;t3_kx9axj;False;True;t1_gj8tyyx;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gj8u1qt/;1610718200;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Greenawalt_Gaming;;;[];;;;text;t2_463fnkfu;False;False;[];;Thank ye;False;False;;;;1610643720;;False;{};gj8u2aw;False;t3_kx9axj;False;True;t1_gj8tsow;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gj8u2aw/;1610718210;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;;;[];;;;text;t2_4la0rf79;False;False;[];;30 seconds watching the anime and there’s already blood all over lol;False;False;;;;1610643733;;False;{};gj8u3e7;True;t3_kx9axj;False;True;t1_gj8tw98;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gj8u3e7/;1610718230;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;Once you see who hes voiced you will know.;False;False;;;;1610643745;;False;{};gj8u4e5;False;t3_kx7vyz;False;True;t1_gj8tzzi;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8u4e5/;1610718247;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dannybi91;;;[];;;;text;t2_10kzkl6o;False;False;[];;Is this food wars?;False;False;;;;1610643756;;False;{};gj8u57y;False;t3_kx9g8p;False;True;t3_kx9g8p;/r/anime/comments/kx9g8p/food_anime_they_said/gj8u57y/;1610718263;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NiceHighway_;;;[];;;;text;t2_93nr39et;False;False;[];;Food wars. There are some ‘scenes’ but overall it cracks me up everytime i watch it. I recommend it but not with people around.😔;False;False;;;;1610643760;;False;{};gj8u5kw;True;t3_kx9g8p;False;True;t1_gj8tzgc;/r/anime/comments/kx9g8p/food_anime_they_said/gj8u5kw/;1610718270;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Designer_Pride201;;;[];;;;text;t2_8g18fo1y;False;False;[];;sauce?;False;False;;;;1610643761;;False;{};gj8u5pe;False;t3_kx9g8p;False;True;t3_kx9g8p;/r/anime/comments/kx9g8p/food_anime_they_said/gj8u5pe/;1610718273;3;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;;;[];;;;text;t2_4la0rf79;False;False;[];;What? The video I posted was meant to be the scene I saw in the video that made me think it was a cute romance anime;False;False;;;;1610643768;;False;{};gj8u6b9;True;t3_kx9axj;False;True;t1_gj8trxx;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gj8u6b9/;1610718284;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NiceHighway_;;;[];;;;text;t2_93nr39et;False;False;[];;Aye.;False;False;;;;1610643782;;False;{};gj8u7e1;True;t3_kx9g8p;False;True;t1_gj8u57y;/r/anime/comments/kx9g8p/food_anime_they_said/gj8u7e1/;1610718303;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;;;[];;;;text;t2_4la0rf79;False;False;[];;No prob... but trust me, the anime is not what you think it is lol;False;False;;;;1610643809;;False;{};gj8u9l0;True;t3_kx9axj;False;True;t1_gj8u1qt;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gj8u9l0/;1610718343;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dannybi91;;;[];;;;text;t2_10kzkl6o;False;False;[];;Ok good to know not to watch when my 7 year old is around loool;False;False;;;;1610643839;;False;{};gj8uc3n;False;t3_kx9g8p;False;True;t1_gj8u7e1;/r/anime/comments/kx9g8p/food_anime_they_said/gj8uc3n/;1610718390;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;"From NIPAH to NOPE-AH - -But honestly, holy fuck indeed. This was Shion-L5-episode-tier horrifying.";False;False;;;;1610643903;;1610644170.0;{};gj8uhbz;False;t3_kx96wn;False;False;t1_gj8rpmu;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8uhbz/;1610718483;64;True;False;anime;t5_2qh22;;0;[]; -[];;;Greenawalt_Gaming;;;[];;;;text;t2_463fnkfu;False;False;[];;I’m giving everything a try, I used to watch highschool dxd a while back then the other day watched Rent a girlfriend, tonikaka kawaii, the quintessential quintuplets, and am not watching darling in the franxx, they are all uniquely amazing;False;False;;;;1610643905;;False;{};gj8uhhu;False;t3_kx9axj;False;True;t1_gj8u9l0;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gj8uhhu/;1610718486;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NiceHighway_;;;[];;;;text;t2_93nr39et;False;False;[];;Haha! You should definitely give it a watch for yourself though. Started it today.;False;False;;;;1610643907;;False;{};gj8uhoe;True;t3_kx9g8p;False;True;t1_gj8uc3n;/r/anime/comments/kx9g8p/food_anime_they_said/gj8uhoe/;1610718490;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Astrayed_Zoro;;;[];;;;text;t2_5ypafin3;False;False;[];;my average are 30+ per season until the start of school, but it's going back because of ton loads of sequel this season;False;False;;;;1610643924;;False;{};gj8uj2q;False;t3_kx7vyz;False;True;t1_gj8kx3q;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8uj2q/;1610718517;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sophia-Eldritch;;;[];;;;text;t2_3q1f4ih1;False;False;[];;It gets wierd;False;False;;;;1610643959;;False;{};gj8ulvq;False;t3_kx9axj;False;True;t1_gj8tx4p;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gj8ulvq/;1610718566;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jorel7521;;;[];;;;text;t2_3c35tunc;False;False;[];;The irony that I was eating cup-o-noodles as I was watching this episode.;False;False;;;;1610643980;;False;{};gj8unjw;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8unjw/;1610718597;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DaREY297;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Marin_Karin;light;text;t2_130drh;False;False;[];;"My entire reaction can only be summarized as ""BRUH THE FUCK!?"" - -mom come pick me up im scared";False;False;;;;1610643986;;False;{};gj8uo2b;False;t3_kx96wn;False;False;t1_gj8rpmu;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8uo2b/;1610718607;24;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;"AND YOU GET AN L5 - -AND YOU GET AN L5 - -AND YOU GET AN L5 - - -#**EVERYONE GETS AN L5**";False;False;;;;1610643989;;False;{};gj8uobn;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8uobn/;1610718613;211;True;False;anime;t5_2qh22;;0;[]; -[];;;Dolphin_handjobs;;;[];;;;text;t2_7kc68;False;False;[];;"The hard cut from Akasaka was horrible. - -[Rika offering up sass whilst being drowned was pretty funny though.](http://puu.sh/H6SZJ.jpg)";False;False;;;;1610644006;;False;{};gj8upr1;False;t3_kx96wn;False;False;t1_gj8rpmu;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8upr1/;1610718641;169;True;False;anime;t5_2qh22;;0;[]; -[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 500, 'coin_reward': 100, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 7, 'description': 'Gives 100 Reddit Coins and a week of r/lounge access and ad-free browsing.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/gold_512.png', 'icon_width': 512, 'id': 'gid_2', 'is_enabled': True, 'is_new': False, 'name': 'Gold', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/gold_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;True;[];;Inventing cup ramen is a slippery slope towards tank warfare.;False;False;;;;1610644053;;False;{'gid_2': 1};gj8utk4;False;t3_kx7vyz;False;False;t1_gj8lbhs;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8utk4/;1610718716;266;True;False;anime;t5_2qh22;;1;[]; -[];;;Roboglenn;;;[];;;;text;t2_2tzu4yyq;False;False;[];;"A long time from now, in our very own galaxy... Stone Wars! - - -A bloodless siege huh? Well Senku is certainly being optimistic. Let's see how Senku's optimism pans out. Especially given who they're up against.";False;False;;;;1610644094;;False;{};gj8uwvi;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8uwvi/;1610718779;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sdd264;;;[];;;;text;t2_1g5wqrbo;False;False;[];;"Well, when Higurashi turned into fuckin' Umineko? - -P.S. Transfer to the Akasaka's L5 scene was hilarious";False;False;;;;1610644101;;False;{};gj8uxen;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8uxen/;1610718789;15;True;False;anime;t5_2qh22;;0;[]; -[];;;iw2kl;;;[];;;;text;t2_9k8gikvs;False;False;[];;Yeah this has changed my mind a bit. I always refrain from saying something is the best (unless I'm advocating for someone to watch it) and I kinda get a twinge of annoyance when ppl say smth is the best. I think it comes from assuming that people are like trying to prove that its the best show and anyone who thinks different is wrong. So yeah I definitely shouldn't assume that they think that way.;False;False;;;;1610644110;;False;{};gj8uy5v;False;t3_kx8sy5;False;False;t3_kx8sy5;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8uy5v/;1610718804;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dadnaya;;MAL;[];;https://myanimelist.net/profile/dadnaya;dark;text;t2_cubnc;False;False;[];;"I don't remember cup ramen at all, so I think it's anime original. - -Not sure about the sonic bombs, I think it appeared at some point? I'll have to check";False;False;;;;1610644127;;False;{};gj8uzkj;False;t3_kx7vyz;False;False;t1_gj8ttqj;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8uzkj/;1610718830;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MaksimShadow;;;[];;;;text;t2_h92eaka;False;False;[];;Damn, that's a lot of inventions for one season. Will we see a supercomputer and a spacecraft at the end of this season?;False;False;;;;1610644135;;False;{};gj8v07x;False;t3_kx7vyz;False;True;t1_gj8iprw;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8v07x/;1610718841;3;True;False;anime;t5_2qh22;;0;[]; -[];;;13steinj;;MAL;[];;;dark;text;t2_i487l;False;True;[];;"Honestly kinda feel re zero would win that - -E:win on average, not any individual episode.";False;True;;comment score below threshold;;1610644144;;1610645478.0;{};gj8v0yr;False;t3_kx7vyz;False;True;t1_gj8q4ha;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8v0yr/;1610718855;-27;True;False;anime;t5_2qh22;;0;[]; -[];;;axl625;;;[];;;;text;t2_tskg1;False;False;[];;Again, WHAT THE FUCK AKASAKA;False;False;;;;1610644154;;False;{};gj8v1qp;False;t3_kx96wn;False;False;t1_gj8rpmu;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8v1qp/;1610718870;88;True;False;anime;t5_2qh22;;0;[]; -[];;;Prob6;;;[];;;;text;t2_rscm707;False;False;[];;Fuck yeah, science!;False;False;;;;1610644155;;False;{};gj8v1uh;False;t3_kx7vyz;False;False;t1_gj8lu4o;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8v1uh/;1610718872;18;True;False;anime;t5_2qh22;;0;[]; -[];;;JuraTempest;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Minshall;light;text;t2_32defc5v;False;False;[];;Yeah I get that. I also like to watch a finished show or two alongside the weekly seasonal ones. But I personally always feel like I need to finish an anime once I’ve started it lol. Even if it’s something super long, it keeps pecking at me that I need to finish it;False;False;;;;1610644163;;False;{};gj8v2ia;False;t3_kx7vyz;False;False;t1_gj8ow53;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8v2ia/;1610718885;3;True;False;anime;t5_2qh22;;0;[]; -[];;;unknown537;;;[];;;;text;t2_20519zb3;False;False;[];;Funny thing is, I was surprised the most by Keichi going L5 among all other people.;False;False;;;;1610644176;;False;{};gj8v3ks;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8v3ks/;1610718906;109;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;Ya, it's important to remember any statement regarding a show is always an opinion, coz there can't be a show everyone loves;False;False;;;;1610644202;;False;{};gj8v5sr;True;t3_kx8sy5;False;True;t1_gj8uy5v;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8v5sr/;1610718948;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lhbdawn;;;[];;;;text;t2_5nsijqo7;False;False;[];;"ahh yes it begins!!!! - -can't wait to see the anime-onlies reaction to this arc - -also THE LAST PART WAS SOOOOO HYPEEEE. seriously dr.stone never disappoints. just gotta see more hype moments. also did you guys see tsukasa'a sword?";False;False;;;;1610644212;;1610646508.0;{};gj8v6kd;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8v6kd/;1610718962;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JuraTempest;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Minshall;light;text;t2_32defc5v;False;False;[];;"Is that weekly airing ones alongside previously finished series? That’s what I tend to do, I’m watching probably 18ish weekly season shows with like 3 on the side - -But geez, 30? Lol that’d be way too much for me to organize";False;False;;;;1610644215;;False;{};gj8v6tz;False;t3_kx7vyz;False;True;t1_gj8uj2q;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8v6tz/;1610718967;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DomoJohn;;;[];;;;text;t2_3z4cr4it;False;False;[];;"Damn that transition from wholesome akasaka-rika moment to rika being almost dead was something else and they didn't give us time to think with how gruesome the next scenes were. - -I thought satoko was sus but now i don't even know what the fck gonna happen and we have yet to see how takano is involves in this or if she's even significant in all of this.";False;False;;;;1610644254;;False;{};gj8va5a;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8va5a/;1610719047;112;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610644271;;False;{};gj8vbg7;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8vbg7/;1610719072;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jerl;;;[];;;;text;t2_5ea9r;False;True;[];;"Rika's one round from flipping the table and walking out. - -[Umineko](/s ""But you can't leave a game until it's finished."")";False;False;;;;1610644292;;False;{};gj8vd75;False;t3_kx96wn;False;False;t1_gj8rk7e;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8vd75/;1610719105;32;True;False;anime;t5_2qh22;;0;[]; -[];;;ZenoZoldyck12;;;[];;;;text;t2_7nueigrp;False;False;[];;When Gen mimics Lilians voice it makes the Gold Experience sound effect at 15:49 :);False;False;;;;1610644308;;False;{};gj8vekf;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8vekf/;1610719131;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"[If Gen was a VTuber...](https://i.imgur.com/DblF3DH.jpg) - -[](#cokemasterrace)";False;False;;;;1610644319;;False;{};gj8vfej;False;t3_kx7vyz;False;False;t1_gj8sdd1;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8vfej/;1610719147;29;True;False;anime;t5_2qh22;;0;[]; -[];;;milady-newton;;;[];;;;text;t2_5itg3q7s;False;False;[];;episode 1 was so good!! so hyped for the next ones!!!;False;False;;;;1610644323;;False;{};gj8vfsx;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8vfsx/;1610719154;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sdd264;;;[];;;;text;t2_1g5wqrbo;False;False;[];;"Now I'm convinced that Miyo again used her notebooks. I understand how Akane could get L5, but how could others... Especially Akasaka. I don't get it - -UPD: Got it. He believes Rika as a prophet and tries to protect her in any means from hidden menace, and paranoia develops";False;False;;;;1610644327;;1610645866.0;{};gj8vg5w;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8vg5w/;1610719161;17;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;Food Wars.;False;False;;;;1610644344;;False;{};gj8vhjs;False;t3_kx9g8p;False;True;t1_gj8u5pe;/r/anime/comments/kx9g8p/food_anime_they_said/gj8vhjs/;1610719191;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dontloseyourway1610;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Marinate1016;light;text;t2_4wegnp53;False;False;[];;"I think this episode solidified what I’ve been feeling for a long time that rika ultimately goes through more pain and suffered more than Subaru. - -To go through the same hell alone for 100 years.. watching your friends and yourself be brutally murdered over and over again, trying so hard to change things, coming close and then failing.. it’s beyond comprehension really. Think that monologue at the end really did a good job of putting it to words.";False;False;;;;1610644352;;False;{};gj8vi5f;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8vi5f/;1610719204;35;True;False;anime;t5_2qh22;;0;[]; -[];;;Izanagi___;;;[];;;;text;t2_6wmop5vl;False;False;[];;oh how i've missed the faces from this show;False;False;;;;1610644359;;False;{};gj8vipz;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8vipz/;1610719218;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Gen is still looking like a Demon Slayer character! - -Good start for this season, let's see how this war will play out, I doubt that will be even some fighting";False;False;;;;1610644377;;False;{};gj8vka7;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8vka7/;1610719249;2;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;Lol no. Re Zero is going to be demolished constantly I reckon. Couldn't care less though as both series have been incredible so far.;False;False;;;;1610644378;;False;{};gj8vkc6;False;t3_kx7vyz;False;False;t1_gj8v0yr;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8vkc6/;1610719251;34;True;False;anime;t5_2qh22;;0;[]; -[];;;jenthehenmfc;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/jnsparrow;light;text;t2_v5dwp;False;False;[];;"Everyone: how are we going to get through 5 more tries in so few episodes??? - -OH";False;False;;;;1610644395;;False;{};gj8vlpp;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8vlpp/;1610719277;249;True;False;anime;t5_2qh22;;0;[]; -[];;;unHolyKnightofBihar;;;[];;;;text;t2_9a23lkt;False;False;[];;Love the style;False;False;;;;1610644447;;False;{};gj8vq29;False;t3_kx8ear;False;True;t3_kx8ear;/r/anime/comments/kx8ear/i_drew_ram_from_re_zero_oc/gj8vq29/;1610719372;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610644461;;False;{};gj8vr8m;False;t3_kx7vyz;False;True;t1_gj8pk3y;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8vr8m/;1610719395;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SnowLocke;;;[];;;;text;t2_wx2pc;False;False;[];;">Even using mal as a metric to classify an opinion as fact isn't facts. - -What does this mean? Because it is a provable fact that on MAL, all of the people who have voted on Lupin III Part 2 have given it an average score of 7.80. It doesn't prove that an a person *should* like Lupin, but it is absolutely a fact that on average, MAL users who have watched Lupin consider it to be good, verging on very good. Assuming they follow MAL's scoring guidelines. - ->Anyone saying a show is a masterpiece, isn't wrong since it's inherently subjective. You don't need to classify it as an opinIon. - -They aren't wrong *for themself*. You are right. It is subjective. And that's why it needs to be presented as being subjective. When things are presented in text, it is difficult to convey meaning beyond what is literally written. There are of course some things that can be done, like *italics*, **bold**, CAPS, and /s for sarcasm. But the default for written word is to take it at face value. Your ""cox"" thing is a good example of this. I thought that 1) you're bad at typing, 2) English wasn't your native language, or 3) you can't spell. Because I'm not talking to you in person, I can't hear that ""cox"" is pronounced the same as ""cuz"". - -It's the same with giving opinions but stating them as facts. When someone says ""AoT is the best anime"" I have to assume that they are saying that it is an objective fact that AoT is the best and all other anime are worse. They aren't presenting it as an opinion. If they wanted it taken as a statement of subjective opinion, they could type ""in my opinion..."". Otherwise, they're just looking for an argument.";False;False;;;;1610644471;;False;{};gj8vs0d;False;t3_kx8sy5;False;True;t1_gj8teh9;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8vs0d/;1610719410;2;True;False;anime;t5_2qh22;;0;[]; -[];;;axl625;;;[];;;;text;t2_tskg1;False;False;[];;THEY NEED THERAPY;False;False;;;;1610644472;;False;{};gj8vs3c;False;t3_kx96wn;False;False;t1_gj8uobn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8vs3c/;1610719411;58;True;False;anime;t5_2qh22;;0;[]; -[];;;nekika;;;[];;;;text;t2_o3fqilb;False;False;[];;"Hurray, Akasaka! Wait why is he hurt in his memories even though he saved his wife? - -Oh. Oh L5. That explains it. - -Samurai Sonozaki. Never thought I'd want that until now. - -Kimiyoshi actually does something other than die for once? Goddamn - -Rampaging K1 in an angel mort. I'm wondering why the cops didn't rush in and just shoot him but eh, I won't think too hard on it. - -Never would I've guessed that 4 loops would be covered in a single episode, but thinking about it, it makes sense. How the remaining idk, 10 episodes are going to play out, idk. At some point it almost felt like every character that got L5 this episode were the same personality. And for actual clues, I either missed them all, or there weren't many at all. - -Edit: another thing I just realized. GHD is never mentioned or even hinted at all this season. Does it even happen?";False;False;;;;1610644486;;1610650893.0;{};gj8vt6y;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8vt6y/;1610719435;70;True;False;anime;t5_2qh22;;0;[]; -[];;;okbuddybutbruh;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_9ow7haip;False;False;[];;I don't understand what Senku says but I enjoy it;False;False;;;;1610644490;;False;{};gj8vtjm;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8vtjm/;1610719443;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDampGod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheDampGod;light;text;t2_im4vi;False;False;[];;I wonder if the studio behind Isekai Quartet and its related short shows will do a chibi EVA series?;False;False;;;;1610644499;;False;{};gj8vu9g;False;t3_kx95be;False;True;t3_kx95be;/r/anime/comments/kx95be/evangelion_fourth_movie_isnt_the_end_of_franchise/gj8vu9g/;1610719457;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"[We're yakuza scientists now](https://i.imgur.com/R8uPjwr.jpg) - -[](#oilup)";False;False;;;;1610644507;;False;{};gj8vuxb;False;t3_kx7vyz;False;False;t1_gj8imnn;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8vuxb/;1610719472;122;True;False;anime;t5_2qh22;;0;[]; -[];;;manaci;;;[];;;;text;t2_1f2hc0lq;False;False;[];;"At this point prior experience didn't even partially prepare me for the despair of this episode... I appreciated the quick turnover in terms of set-up and execution of the worlds (and Rika, RIP) but that also made it all the more shocking and gut-wrenching to watch. But 10/10 Nekodamashi has had the best episodes of the season thus far. - -The scene in Angel Mort was WILD given that it the tragedy struck so early (June 13th I think?), which make me think that this episode was just really to depict just how strong the will that Hanyuu (RIP) mentioned of whoever is keeping Rika in this cycle is. To have even Akasaka and Kimiyoshi fall victim was heartbreaking (Akane's scene was kind of badass, aside from the whole murdering her daughter thing, but at least she made the end quick) but also incredibly shocking given that Akasaka was the trump card to happiness in Matsuribayashi. Is there even hope in succeeding if even depending on her allies isn't enough? Maybe this is like Saikoroshi-hen and is just a punishment for Rika not depending on herself enough? Did she maybe commit some grave sin like preying on the weak when she was at St. Lucia? Maybe Ange will pop up somehow and this'll turn into an Umineko crossover?! I don't even know where to go from here, hoping the next world will be a happy ending seems... naive but hey, who knows.";False;False;;;;1610644558;;False;{};gj8vz4g;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8vz4g/;1610719552;49;True;False;anime;t5_2qh22;;0;[]; -[];;;cojoB_;;;[];;;;text;t2_27b35u6d;False;False;[];;For a second there I thought they were gonna like flashbang her out of the trees or something;False;False;;;;1610644566;;False;{};gj8vzrb;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8vzrb/;1610719564;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KrazyBean94;;;[];;;;text;t2_110dr6;False;False;[];;I've seen a lot of disturbing anime/manga...but this episode still hit different. Holy shit.;False;False;;;;1610644574;;False;{};gj8w0hg;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8w0hg/;1610719577;12;True;False;anime;t5_2qh22;;0;[]; -[];;;brucebananaray;;;[];;;;text;t2_15bpgp5p;False;False;[];;I wonder if Khara will adapt any of the manga or Light Novel like ANIMA into anime.;False;False;;;;1610644581;;False;{};gj8w11t;False;t3_kx95be;False;True;t3_kx95be;/r/anime/comments/kx95be/evangelion_fourth_movie_isnt_the_end_of_franchise/gj8w11t/;1610719589;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610644595;;False;{};gj8w294;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8w294/;1610719611;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610644614;;False;{};gj8w3uw;False;t3_kx7vyz;False;True;t1_gj8op8k;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8w3uw/;1610719645;16;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;"The only thing I'm shocked about is that this episode could mean that we will never get an answer arc for the first two question arcs in Gou?? - -YOU CANNOT JUST DO THAT";False;False;;;;1610644617;;False;{};gj8w445;False;t3_kx96wn;False;False;t1_gj8r9p6;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8w445/;1610719650;57;True;False;anime;t5_2qh22;;0;[]; -[];;;Clemenx00;;;[];;;;text;t2_i99bz;False;False;[];;"I can't help but have a smile all the time when watching this. No matter how absurd Senku's plans are lol - -Getting excited for Stone World Cup Noodles. DIdn't expect this at all. - -Good to see Kaseki is still a SSJ";False;False;;;;1610644636;;False;{};gj8w5rf;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8w5rf/;1610719681;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fridge_freezer;;;[];;;;text;t2_gqsfu;False;False;[];;I've really missed this show and our weekly science lessons.;False;False;;;;1610644638;;False;{};gj8w5y4;False;t3_kx7vyz;False;False;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8w5y4/;1610719684;7;True;False;anime;t5_2qh22;;0;[]; -[];;;BennyFort;;;[];;;;text;t2_83rmnvab;False;False;[];;and some people worried that we won't get all 5 loops in the rest of the season lol;False;False;;;;1610644641;;False;{};gj8w665;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8w665/;1610719688;9;True;False;anime;t5_2qh22;;0;[]; -[];;;H-Ryougi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DizzyAvocado/animelist;light;text;t2_pr24s;False;False;[];;"> Wait why is he hurt in his memories? - -Because he got beat up by Okonogi, it's a flashback to Himatsubushi.";False;False;;;;1610644660;;False;{};gj8w7s8;False;t3_kx96wn;False;False;t1_gj8vt6y;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8w7s8/;1610719718;34;True;False;anime;t5_2qh22;;0;[]; -[];;;Squiddy56_;;;[];;;;text;t2_93n2q5lm;False;False;[];;idk what the deal is, but ***deal***;False;False;;;;1610644666;;False;{};gj8w8a8;False;t3_kx948a;False;True;t1_gj8tuvy;/r/anime/comments/kx948a/gintama_fans_be_like/gj8w8a8/;1610719727;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FA-ST;;;[];;;;text;t2_wh9z4;False;False;[];;"Kerokerokero - -It's not a Higanbana reference but I'll take it";False;False;;;;1610644676;;False;{};gj8w95f;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8w95f/;1610719743;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Craonom;;;[];;;;text;t2_mjtmm;False;False;[];;I have a feeling Rika will get help from the most unexpected people. Takano for example who was once the villain of the previous series, might just become her saviour!;False;False;;;;1610644727;;False;{};gj8wdfg;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8wdfg/;1610719829;47;True;False;anime;t5_2qh22;;0;[]; -[];;;DidYouFloss;;;[];;;;text;t2_2v2w1vr;False;False;[];;Of all the shows to come out this season, this is the one I have been most excited for. Here is to hoping for a great season!;False;False;;;;1610644731;;False;{};gj8wds7;False;t3_kx7vyz;False;True;t3_kx7vyz;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8wds7/;1610719837;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PPGN_DM_Exia;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PPGN_DM_Exia;light;text;t2_rzaut;False;False;[];;Not sure if better worse than the Stoner Wars.;False;False;;;;1610644731;;False;{};gj8wdug;False;t3_kx7vyz;False;True;t1_gj8iew2;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8wdug/;1610719838;3;True;False;anime;t5_2qh22;;0;[]; -[];;;evilstop4;;;[];;;;text;t2_pwwxi4p;False;False;[];;Going to hell for convincing people in an apocalypse that the world is actually completely fine and that help is on its way. Giving them false hope only to destroy it—that’s why they said they’re going to hell;False;False;;;;1610644760;;False;{};gj8wg7g;False;t3_kx7vyz;False;False;t1_gj8q62f;/r/anime/comments/kx7vyz/dr_stone_stone_wars_episode_1_discussion/gj8wg7g/;1610719891;46;True;False;anime;t5_2qh22;;0;[]; -[];;;TacoBellIsChipotle;;;[];;;;text;t2_7l9egrg6;False;False;[];;I *think* you've put it quite well. It's all about clear communication.;False;False;;;;1610644779;;False;{};gj8whr4;False;t3_kx8sy5;False;False;t1_gj8tqpu;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8whr4/;1610719922;3;True;False;anime;t5_2qh22;;0;[]; -[];;;H-Ryougi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DizzyAvocado/animelist;light;text;t2_pr24s;False;False;[];;Yeah Angel Mort scene was super early in the loop which is seriously unexpected. How does Keiichi go L5 that fast other than getting a dose of H-173?;False;False;;;;1610644796;;False;{};gj8wj6n;False;t3_kx96wn;False;False;t1_gj8vz4g;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8wj6n/;1610719953;34;True;False;anime;t5_2qh22;;0;[]; -[];;;dragonman8001;;;[];;;;text;t2_k7io8;False;False;[];;"I hate this. This is so much despair. - -I'm convinced this is Bernie's origin story now. I don't want this to be our Rika.";False;False;;;;1610644818;;False;{};gj8wl2a;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8wl2a/;1610719990;12;True;False;anime;t5_2qh22;;0;[]; -[];;;ThoughtPorn724;;;[];;;;text;t2_79p7y;False;False;[];;That really made it hit harder... I was not expecting a speed run at all.;False;False;;;;1610644825;;False;{};gj8wlmr;False;t3_kx96wn;False;False;t1_gj8vlpp;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8wlmr/;1610720002;118;True;False;anime;t5_2qh22;;0;[]; -[];;;BennyFort;;;[];;;;text;t2_83rmnvab;False;False;[];;"this arc: rika finds out who the mastermind is - -next arc: she fights mastermind";False;False;;;;1610644843;;False;{};gj8wn27;False;t3_kx96wn;False;False;t1_gj8vt6y;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8wn27/;1610720035;14;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610644859;;False;{};gj8wodd;False;t3_kx96wn;False;True;t1_gj8wdfg;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8wodd/;1610720073;24;True;False;anime;t5_2qh22;;0;[]; -[];;;not_overwatch;;;[];;;;text;t2_1261g2;False;False;[];;"This is by far the best episode of the season, I was legit worried that they wouldn't have time but then they decided to speedrun - -The first L5 with akasaka caught me so off guard tho";False;False;;;;1610644864;;False;{};gj8wos8;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8wos8/;1610720081;34;True;False;anime;t5_2qh22;;0;[]; -[];;;reddadz;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MysticEyes/;light;text;t2_oek5m;False;True;[];;"Sorry, your submission has been removed. - -- Clips from shows should use the ""Clip"" flair, be between 10 seconds and 5 minutes long, and include the anime name in the title of the post. If the clip is from a recently aired episode, wait a **week** after the episode's discussion thread is posted before posting the clip. Additionally, we only allow each user to post two clips per month. - - - -Your clip does not meet one of the following quality guidelines: - -- Clips must have audio unless the scene is silent. - -- They must have subs if the audio is not in English. - -- They must not have watermarks of any kind (screen recording software or channels), except for legal streaming services (e.g: Crunchyroll). - -- They must not be an obvious screen recording (e.g: the iPhone popup to stop the recording at the end that some clips, a mouse cursor and actually recording the screen with a phone). - -- They must be properly framed in the aspect ratio of the original anime. - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610644933;moderator;False;{};gj8wugf;False;t3_kx9axj;False;True;t3_kx9axj;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gj8wugf/;1610720202;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kuyarei-;;;[];;;;text;t2_5h9juzpi;False;False;[];;Gotta say the art's grown on me now, i was a bit worried how they'll do the rest of the episodes but i never expected they'd flash through all these worlds this quickly and honestly i'm glad they did cause i'm a little tired of the repetition by now. From now on it's probably going to be new stuff that we haven't seen at all in the OG series and that's hyping me up. Can't wait for the inevitable Umineko connection with this story.;False;False;;;;1610644936;;False;{};gj8wuru;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8wuru/;1610720208;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;"Yes it's a proven fact, lupin has a 7.8 on mal. However that's no different than saying ""it's a proven fact that James rates lupin a 7.8"" mal is just a collective opinion and not fact. Lupin 3 is a 7.8 series isn't fact";False;False;;;;1610644942;;False;{};gj8wv7j;True;t3_kx8sy5;False;True;t1_gj8vs0d;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8wv7j/;1610720216;0;True;False;anime;t5_2qh22;;0;[]; -[];;;sdd264;;;[];;;;text;t2_1g5wqrbo;False;False;[];;I may be mistaking, but could it be that this series explain, how Berncastel was born?;False;False;;;;1610644942;;False;{};gj8wv8j;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8wv8j/;1610720216;6;True;False;anime;t5_2qh22;;0;[]; -[];;;northwesternrs;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/northwesternrs;light;text;t2_ovdnonb;False;False;[];;"Ooishi: Hey kids check out this party trick, where I swap out all my mahjong tiles with ones from the wall in one fell swoop! Haha, pretty cool right? - -Ryukishi: Hey viewers check out this party trick, where I swap out all your hope with absolute fucking despair in one fell swoop! Haha, pretty cool right?";False;False;;;;1610644987;;False;{};gj8wyw5;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8wyw5/;1610720300;259;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;Ig fair enough, especially on the internet it's hard to understand when someone is being subjective and when they're being objective.;False;False;;;;1610645021;;False;{};gj8x1uc;True;t3_kx8sy5;False;True;t1_gj8vs0d;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8x1uc/;1610720353;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Quiddity131;;MAL;[];;http://myanimelist.net/profile/Quiddity131;dark;text;t2_f3bdc;False;False;[];;"This is clickbait speculation, nothing in the article about something beyond the fourth movie. - -Of course 3 - 4 years from now can Khara/Anno once again revisit the franchise that can never die rather than do something new? Absolutely. If Anno truly deserves the praise he gets, he should move on for good. We don't need Evangelion done for the fourth time.";False;False;;;;1610645096;;False;{};gj8x7vy;False;t3_kx95be;False;True;t3_kx95be;/r/anime/comments/kx95be/evangelion_fourth_movie_isnt_the_end_of_franchise/gj8x7vy/;1610720465;11;True;False;anime;t5_2qh22;;0;[]; -[];;;jenthehenmfc;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/jnsparrow;light;text;t2_v5dwp;False;False;[];;A thought - why do people keep trying to compare this to re:zero?? I enjoy re:zero, but it’s pretty insulting to imply Ryukishi07 is “doing something like re:zero” as if the When They Cry franchise hasn’t been around longer and isn’t miles ahead of re:zero in writing and storytelling 🙄;False;False;;;;1610645122;;False;{};gj8x9zs;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8x9zs/;1610720505;61;True;False;anime;t5_2qh22;;0;[]; -[];;;Spade-Demon;;;[];;;;text;t2_5tkn0i2y;False;False;[];;Sure, why not. You should always be confident about what you love, don’t sweat if someone disagrees with your opinion, most criticism about an anime tend to be subjective anyways unless we’re talking about animation or sales.;False;False;;;;1610645146;;False;{};gj8xc3v;False;t3_kx8sy5;False;True;t3_kx8sy5;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8xc3v/;1610720546;2;True;False;anime;t5_2qh22;;0;[]; -[];;;H-Ryougi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DizzyAvocado/animelist;light;text;t2_pr24s;False;False;[];;Saikoroshi already explained how she was born, this might be explaining how Bernkastel became as jaded as she is.;False;False;;;;1610645159;;False;{};gj8xd4p;False;t3_kx96wn;False;False;t1_gj8wv8j;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8xd4p/;1610720565;10;True;False;anime;t5_2qh22;;0;[]; -[];;;UnityGrave;;;[];;;;text;t2_13atui;False;False;[];;"I'm actually speechless - -like what the fuck?!?!?! - -depression speedrun any% - -they really went all out this episode and - -K1 back to bonking again. - -I'm also really glad they removed that stupid censorship";False;False;;;;1610645201;;False;{};gj8xgkw;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8xgkw/;1610720627;21;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610645210;;False;{};gj8xhbs;False;t3_kx96wn;False;True;t1_gj8wv8j;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8xhbs/;1610720642;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;Faxs, even animation can be subjective to an extent but that depends on how much your consider animation and artstyle as the same thing. I love LOGH's art style but I know the animation is poor. I hate fmabs art style but know the animation is good. But sometimes people don't realize there's a difference.;False;False;;;;1610645314;;False;{};gj8xppq;True;t3_kx8sy5;False;True;t1_gj8xc3v;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8xppq/;1610720795;3;True;False;anime;t5_2qh22;;0;[]; -[];;;axl625;;;[];;;;text;t2_tskg1;False;False;[];;This is a Nuzlocke speedrun;False;False;;;;1610645348;;False;{};gj8xsf3;False;t3_kx96wn;False;False;t1_gj8vlpp;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8xsf3/;1610720843;50;True;False;anime;t5_2qh22;;0;[]; -[];;;A-Dolahans-hat;;;[];;;;text;t2_3jkxuxfu;False;False;[];;Right, but then you said at the 30 second mark it’s covered in blood. I guess I figured it was one of those cute moments they sometimes put in action/horror anime.;False;False;;;;1610645363;;False;{};gj8xtqq;False;t3_kx9axj;False;True;t1_gj8u6b9;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gj8xtqq/;1610720869;1;True;False;anime;t5_2qh22;;0;[]; -[];;;8andahalfby11;;MAL;[];;https://myanimelist.net/animelist/thereIwasnt;dark;text;t2_kvyfg;False;False;[];;"[Guess #2 was right this time](https://www.reddit.com/r/anime/comments/ksgu8r/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gig3gbp/) - -### **RULE BROKEN: Keiichi went L5.** - -I wish we got to see what happened to everyone else in these timelines. The randomness of the people what went L5 seems odd at first, but I think that the pattern is that **all the people were someone Rika might go to for help;** Akasaka, Mion's Mom, even Kimiyoshi were all people in positions of power. The last one with Keiichi might have been a direct ask. In other words, **the culprit is deliberately following Rika's actions and targeting whomever she reaches out to for help.** - -Of course, all the club members were present to see Akasaka show up, but in all the cases where club members were shown, Keiichi charged into a fire, Mion risked beheading by her own mother, and Rena tried to negotiate with Keiichi... **Satoko did NOTHING** (unless, of course, we missed something in the Kimiyoshi death).";False;False;;;;1610645377;;False;{};gj8xuvx;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8xuvx/;1610720890;78;True;False;anime;t5_2qh22;;0;[]; -[];;;heavenspiercing;;;[];;;;text;t2_12wzz4;False;False;[];;"Okay, so. - -Maybe it's cuz my ""Satoko sus"" goggles are on, but she's still the only one of the main 5 that we haven't seen directly die, even through 4 mini loops (other than Keiichi, technically) - -It really does seem like whoever goes L5 is completely random, though it can't be a coincidence that Akasaka just happened to go crazy on the extremely rare loop of him returning. I've also noticed a recurring pattern that just about every person that goes crazy is specifically targeting Rika, and she's not just getting caught up in the crossfire by coincidence - -I hope Rika, out of desperation, asks Takano for help. I can see this actually working because we know Takano likely abandons her original plans in this new Hinamizawa.";False;False;;;;1610645391;;1610646228.0;{};gj8xw1g;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8xw1g/;1610720911;44;True;False;anime;t5_2qh22;;0;[]; -[];;;axl625;;;[];;;;text;t2_tskg1;False;False;[];;Ryukishi was taking notes from Ooishi;False;False;;;;1610645442;;False;{};gj8y083;False;t3_kx96wn;False;False;t1_gj8wyw5;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8y083/;1610720989;63;True;False;anime;t5_2qh22;;0;[]; -[];;;Dillbooy;;;[];;;;text;t2_5ox5zst0;False;False;[];;I’m surprised everyone in the cafe couldn’t take 1 guy with a bat;False;False;;;;1610645460;;False;{};gj8y1nu;False;t3_kx96wn;False;False;t1_gj8v3ks;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8y1nu/;1610721016;100;True;False;anime;t5_2qh22;;0;[]; -[];;;Omen111;;;[];;;;text;t2_16bdvg;False;False;[];;"People were whining that new season was too slow and had not enough gore - - -They fixed it";False;False;;;;1610645511;;False;{};gj8y5qf;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8y5qf/;1610721092;39;True;False;anime;t5_2qh22;;0;[]; -[];;;RockoDyne;;MAL;[];;https://myanimelist.net/profile/RockoDyne;dark;text;t2_g4ooj;False;False;[];;"I'll respect you a hell of a lot more if you don't. Here's the thing, there is an immense amount of maturity found in acknowledging that it is not intrinsic properties of a work that make something a favorite, but what it means to you. The point of favorites is not to declare GOAT's, but to find what is deeply meaningful to you as a person. - -This is what actual subjectivity is about. People have this layman's notion that objectivity is about putting things on some scale from perfect to trash. Kids find out that no one can agree on where things go, so they take their scale and declare it their subjective opinion. Neither of which has anything to do with objectivity nor subjectivity. Subjectivity is about context. It's about examining what about the experience gave something meaning. You are just as important in the experience as it is. Acknowledge that you are part of why something is great.";False;False;;;;1610645516;;False;{};gj8y65x;False;t3_kx8sy5;False;False;t3_kx8sy5;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8y65x/;1610721101;9;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;;;[];;;;text;t2_4la0rf79;False;False;[];;Oh, yea, probably;False;False;;;;1610645525;;False;{};gj8y6x1;True;t3_kx9axj;False;True;t1_gj8xtqq;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gj8y6x1/;1610721116;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nsleep;;MAL;[];;https://myanimelist.net/animelist/NeverSleep;dark;text;t2_5u8vg;False;False;[];;$5 on Rika being a creep trying to influence things.;False;False;;;;1610645541;;False;{};gj8y86z;False;t3_kx96wn;False;False;t1_gj8wj6n;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8y86z/;1610721140;28;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610645572;;False;{};gj8yass;False;t3_kx96wn;False;True;t1_gj8rqnr;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8yass/;1610721190;1;True;False;anime;t5_2qh22;;0;[]; -[];;;8andahalfby11;;MAL;[];;https://myanimelist.net/animelist/thereIwasnt;dark;text;t2_kvyfg;False;False;[];;Akasaka turned the house into a small bomb...;False;False;;;;1610645616;;False;{};gj8yeer;False;t3_kx96wn;False;False;t1_gj8r6jk;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8yeer/;1610721256;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;You sound like a wise veteran, who's been through too many wars;False;False;;;;1610645627;;False;{};gj8yf8e;True;t3_kx8sy5;False;True;t1_gj8y65x;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8yf8e/;1610721273;4;True;False;anime;t5_2qh22;;0;[]; -[];;;sjk9000;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JK9000;light;text;t2_goeql;False;False;[];;"Alright, who else laughed when Rika said, ""Can you finish your monologue *after* throwing me in the swamp?"" I don't want to be alone. - -Her whole attitude of ""Yes, yes, parasites conspiracy, curse, whatever, just get on with it and kill me already"" is sad and tragic, but also hilarious.";False;False;;;;1610645641;;False;{};gj8yge5;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8yge5/;1610721295;149;True;False;anime;t5_2qh22;;0;[]; -[];;;Tobi_Granbell55;;;[];;;;text;t2_6l67ov9x;False;False;[];;I thought I was the only one who considered her teaming up with takano. Would definitely be a nice twist! Considering how different each timeline is, I wouldn't put Takano being innocent out of the realm of possibility just yet.;False;False;;;;1610645718;;False;{};gj8ymq7;False;t3_kx96wn;False;False;t1_gj8r4d8;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8ymq7/;1610721420;61;True;False;anime;t5_2qh22;;0;[]; -[];;;Mana_Croissant;;;[];;;;text;t2_30m68690;False;False;[];;"Me When I see Akasaka: THAT IS IT, Akasaka will save us all. He is one of If Not THE BIGGEST ally of Rika, Now We will finally go somehere -And then THAT HAPPENED And I was like ''NOOOO NOT AKASAKA'' -Now I am fully convinced that Bernkastel shoul Appear and BURN THIS DISGUSTING KAKERA until nothing is left";False;False;;;;1610645731;;False;{};gj8ynsg;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8ynsg/;1610721441;43;True;False;anime;t5_2qh22;;0;[]; -[];;;sdd264;;;[];;;;text;t2_1g5wqrbo;False;False;[];;Actually, he turned our hopes for another arc with same events/different details into something new. Well, FUCK;False;False;;;;1610645751;;False;{};gj8ypem;False;t3_kx96wn;False;False;t1_gj8wyw5;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8ypem/;1610721472;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;">fairytale is the best show ever made (which I disagree with) - -I like how you've made this post because you're upset that some people don't agree with your feelings about AoT, but you ironically made it a point to add the disclaimer that you don't think Fairy Tail is the best anime, as if playing down that opinion. That's funny to me.";False;False;;;;1610645760;;False;{};gj8yq44;False;t3_kx8sy5;False;True;t3_kx8sy5;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8yq44/;1610721486;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Omen111;;;[];;;;text;t2_16bdvg;False;False;[];;"ACtually there is one huge clue IMO - - -EVERYONE who gone L5 was talking about parasites. QUESS WHO HAS BOOK TALKING ABOUT PARASITES AND MAKING PEOPLE GO INSANE????";False;False;;;;1610645786;;False;{};gj8ysan;False;t3_kx96wn;False;False;t1_gj8vt6y;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8ysan/;1610721529;30;True;False;anime;t5_2qh22;;0;[]; -[];;;quitethewaysaway;;;[];;;;text;t2_100ag6;False;False;[];;"Wow, I was not expecting the gore to go any further. The eye popping head bashes were surprising. I didn’t think they would go there since Teppei and Rika’s eyes didn’t pop out. - -NOR DID I EXPECT TO SEE DECAPITATION. HOLY MOLY LOL.";False;False;;;;1610645824;;False;{};gj8yvcv;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8yvcv/;1610721589;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;this def encapsulated the best parts of Higurashi.;False;False;;;;1610645829;;False;{};gj8yvs9;False;t3_kx96wn;False;False;t1_gj8sk3x;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8yvs9/;1610721597;12;True;False;anime;t5_2qh22;;0;[]; -[];;;manaci;;;[];;;;text;t2_1f2hc0lq;False;False;[];;That was also a big question I had, like did Takano dose him up? Is she responsible for all this? But if she is then why wasn't emergency manual 34 put into action in Tataridamashi-hen after Rika died? Even if Ooishi killed her, wouldn't Nomura still want those in Tokyo to suffer? It just makes me think that there's some new force that's responsible for all of this that we hopefully might get to see in the next episode.;False;False;;;;1610645830;;False;{};gj8yvxp;False;t3_kx96wn;False;False;t1_gj8wj6n;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8yvxp/;1610721602;10;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainedDog;;;[];;;;text;t2_fib5a;False;False;[];;"Akasaka going L5 made my jaw drop. I was feeling so hopeful when the mahjong scene started and then we saw Akasaka. I felt like we were going to get an episode of Rika being saved. - -The sheer despair in the speed run of tragedies was powerful. I can see her descent into Bernkastel and I expect her to completely break in a way that will connect this to Umineko.";False;False;;;;1610645842;;1610651300.0;{};gj8ywxa;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8ywxa/;1610721624;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Syokhan;;;[];;;;text;t2_b5zid;False;False;[];;"Goddammit this fucking hurts to watch... - -The first jump cut with Akasaka was so cruel. Fuck. - -Edit: I'm still not over that Akasaka switcheroo. Way to play with the viewers' expectations. Here he is, finally! The stalwart cop who was strangely absent before and who will help Rika change things! And then he's the first one to go L5 and just... Jesus Christ, that gut punch is something I won't soon forget.";False;False;;;;1610645850;;1610654440.0;{};gj8yxh4;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8yxh4/;1610721636;24;True;False;anime;t5_2qh22;;0;[]; -[];;;franzinor;;;[];;;;text;t2_degwt;False;False;[];;"Well, that was fucking horrifying even by Ryukishi standards. - -It's ironic but despite this episode proving once and for all that it's not the mansion that's featured in the OP, this episode still felt pretty Umineko. Also St. Lucia, so tiny Ange next episode pls. - -It was morbidly entertaining seeing L5s outside the usual suspects. Even best boy Akasaka... - -How do you fight that? - -Rika saying ""Why am I the only one that has to go through this?"" seems like another narrative pointer towards there being another looper. - -If this is indeed Bernkastel's origin then there really won't be a happy ending this time, will there?";False;False;;;;1610645874;;False;{};gj8yzgt;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8yzgt/;1610721676;38;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;???;False;False;;;;1610645875;;False;{};gj8yzkb;True;t3_kx8sy5;False;True;t1_gj8yq44;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8yzkb/;1610721678;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Endless-Sorcerer;;;[];;;;text;t2_13sj4l;False;False;[];;"So, the Tsubame Gaeshi (the exchange of pieces) is probably foreshadowing hinting that one of the players swapped their piece on the board for another. - -[Umineko terminology](/s) - -If so, Satoko would just be a new looper and attempting to learn about her situation. This would help explain her suspicions towards Keiichi and freakout in previous loops, her odd behaviour and why her death is always shown. - -I'll guess that the end of this arc (and Rika's last loop of five) will involve Rika and Satoko discovering the other is looping too. Considering the disappearance of Hanyuu (and her only real confidant) was a largely why Rika gave up, the discovery of a new ally capable of remembering the loops maybe sufficient to convince her to continue. If nothing else, she may not be willing to leave Satoko to suffer alone as she had to. - -[Umineko terminology](/s ""While it's possible that Takano's player swapped to Satoko instead, I feel like it would be more appropriate for it to have been Rika's player. After all, Bernkastal's player abandoned her in the game and it would be even more tragic for her to have been abandoned for her best friend."")";False;False;;;;1610645905;;1610646503.0;{};gj8z21u;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8z21u/;1610721725;6;True;False;anime;t5_2qh22;;0;[]; -[];;;RockoDyne;;MAL;[];;https://myanimelist.net/profile/RockoDyne;dark;text;t2_g4ooj;False;False;[];;Far, far too many.;False;False;;;;1610645920;;False;{};gj8z39y;False;t3_kx8sy5;False;False;t1_gj8yf8e;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8z39y/;1610721751;5;True;False;anime;t5_2qh22;;0;[]; -[];;;X_Prez_Hoover;;;[];;;;text;t2_8g20ddmu;False;False;[];;"There's a chance Takano isn't the culprit anymore. I mean, we haven't seen the hinamizawa disaster happen a single time in all these arcs, and the fact that she's appeared so little could mean something changed. But how? Because she is still the one who is behind the hinamizawa curse, doubt that changed? - -This episode was kinda crazy, it seems like some random persons goes L5 and starts a murdering spree, but there's nothing leading to it. I mean how did keiichi get L5 so early? Somebody must be doing something about this clearly, I guess we'll see wtf is going on.";False;False;;;;1610645979;;False;{};gj8z822;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8z822/;1610721846;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ashbat1994;;MAL;[];;https://myanimelist.net/profile/Ashwin_eva;dark;text;t2_14m6oz;False;False;[];;Rikka is playing among us without getting imposter and no crewmate wins.;False;False;;;;1610645980;;False;{};gj8z833;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8z833/;1610721846;13;True;False;anime;t5_2qh22;;0;[]; -[];;;ACfusion;;;[];;;;text;t2_6ocqa;False;False;[];;O that's different, I like that.;False;False;;;;1610645988;;False;{};gj8z8s9;False;t3_kx8ear;False;True;t3_kx8ear;/r/anime/comments/kx8ear/i_drew_ram_from_re_zero_oc/gj8z8s9/;1610721860;2;True;False;anime;t5_2qh22;;0;[]; -[];;;8andahalfby11;;MAL;[];;https://myanimelist.net/animelist/thereIwasnt;dark;text;t2_kvyfg;False;False;[];;"""What the... wait, are we doing Matsuribayaaaaaah... *never mind*.""";False;False;;;;1610645991;;False;{};gj8z909;False;t3_kx96wn;False;False;t1_gj8rpmu;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8z909/;1610721863;78;True;False;anime;t5_2qh22;;0;[]; -[];;;EveyHedgehog;;;[];;;;text;t2_5jbkm5us;False;False;[];;I like the time-travelling Aggretsuko merch in one scene;False;False;;;;1610646043;;False;{};gj8zdaf;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8zdaf/;1610721949;9;True;False;anime;t5_2qh22;;0;[]; -[];;;8andahalfby11;;MAL;[];;https://myanimelist.net/animelist/thereIwasnt;dark;text;t2_kvyfg;False;False;[];;Given the riot police, he might have wired up the place to explode like Rena did in Tsumihoroboshi.;False;False;;;;1610646090;;False;{};gj8zh2w;False;t3_kx96wn;False;False;t1_gj8y1nu;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8zh2w/;1610722019;66;True;False;anime;t5_2qh22;;0;[]; -[];;;Omen111;;;[];;;;text;t2_16bdvg;False;False;[];;If it was because of H-173 why in hell does he talks about parasytes? He never did this before in original.;False;False;;;;1610646100;;False;{};gj8zhtt;False;t3_kx96wn;False;False;t1_gj8wj6n;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8zhtt/;1610722035;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexUltraviolet;;;[];;;;text;t2_10o258l;False;False;[];;"I wanted Akasaka to appear BUT NOT LIKE THIS AAAAAAAAAAA - - -and well I just found out thanks to this he's voiced by OnoD so uhhhhhh new Umineko anime when?";False;False;;;;1610646135;;False;{};gj8zkqh;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8zkqh/;1610722094;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;You're subconsciously guilty of hypocrisy and you don't even realize it. (or don't want to?);False;False;;;;1610646210;;False;{};gj8zqvh;False;t3_kx8sy5;False;True;t1_gj8yzkb;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj8zqvh/;1610722218;0;True;False;anime;t5_2qh22;;0;[]; -[];;;RoseSpinoza;;;[];;;;text;t2_jwp6i;False;False;[];;"Sooooo... If what's happening is what I think is happening..... And, I don't like to use this word lightly, but I think Featherine might be a huuuuuuge bitch! - -&#x200B; - -\*ahem\* Anyways. - -&#x200B; - -I feel like this episode was specifically crafted towards a few of us. - -&#x200B; - -1- people who were bored with the ""remake"" episodes only having minutes of new content. (this one was me, I'll be honest XD .) - -2- People who were, ""where's the horror?"" - -3- People who were, ""how can five loops happen in the number of episodes left?"" This one was especially cruel to you all XD . - -&#x200B; - -Featherine (Ryu07) trollin' aaaaaaaaaaaaaaall of us. XD - -&#x200B; - -I'm laughing, while still kind of being in shock XD.";False;False;;;;1610646245;;False;{};gj8ztoy;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8ztoy/;1610722274;18;True;False;anime;t5_2qh22;;0;[]; -[];;;8andahalfby11;;MAL;[];;https://myanimelist.net/animelist/thereIwasnt;dark;text;t2_kvyfg;False;False;[];;*All is in the name of guiding humanity down the right path.*;False;False;;;;1610646247;;False;{};gj8ztuq;False;t3_kx96wn;False;False;t1_gj8r70y;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8ztuq/;1610722277;23;True;False;anime;t5_2qh22;;0;[]; -[];;;AzarelHikaru;;;[];;;;text;t2_fladd;False;False;[];;You aren't alone. I was thinking the same thing.;False;False;;;;1610646248;;False;{};gj8ztys;False;t3_kx96wn;False;False;t1_gj8yge5;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8ztys/;1610722280;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Perepere11;;;[];;;;text;t2_x0t23c2;False;False;[];;At this rate, Takano is going to be the safest person for Rika to be around.;False;False;;;;1610646252;;False;{};gj8zu96;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8zu96/;1610722287;60;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;;;[];;;;text;t2_4la0rf79;False;False;[];;Well yea, just warning you that it it’s more like a terror show. If you are giving everything a try, give “This Art Club Has A Problem” a try (if you haven’t yet) it’s funny, it’s romance comedy;False;False;;;;1610646253;;False;{};gj8zucf;True;t3_kx9axj;False;True;t1_gj8uhhu;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gj8zucf/;1610722288;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kroxisop;;;[];;;;text;t2_n7vdcaw;False;False;[];;Watch the ep again, in the 4th loop when keiichi gets L5 satoko isn't dead she was just lying on the floor. And in the 2nd loop when the house was burning we can't see satoko's face (creepy smile). That's suspicious.;False;False;;;;1610646282;;False;{};gj8zwte;False;t3_kx96wn;False;False;t1_gj8va5a;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj8zwte/;1610722337;48;True;False;anime;t5_2qh22;;0;[]; -[];;;kassavfa;;;[];;;;text;t2_3mp20rnz;False;False;[];;"This episode is a whack, especially Akasaka part shocks me, I'm not ready for the twist. - -At least we now got the glimpse of how Rika's live after Higurashi, she's attending St. Lucia high school.";False;False;;;;1610646322;;False;{};gj90018;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj90018/;1610722399;14;True;False;anime;t5_2qh22;;0;[]; -[];;;H-Ryougi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DizzyAvocado/animelist;light;text;t2_pr24s;False;False;[];;"> the Tsubame Gaeshi (the exchange of pieces) is probably foreshadowing hinting that one of the players swapped their piece on the board for another - -Ehh, I think this might be reaching, Tsubame Gaeshi scene comes from the Minagoroshi arc in the VN. It just wasn't in the DEEN adaptation I believe, since they removed most of the mahjong stuff. - -True fans know that Higurashi is a mahjong story with a horror mystery sideplot.";False;False;;;;1610646326;;False;{};gj900ed;False;t3_kx96wn;False;False;t1_gj8z21u;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj900ed/;1610722408;12;True;False;anime;t5_2qh22;;0;[]; -[];;;brotato96;;;[];;;;text;t2_16ylw4gr;False;False;[];;bruh K-on is the favourite anime for me. Anyone can disagree and say that its not great or even good but if they start badmouthing im gonna get pretty mad.;False;False;;;;1610646348;;False;{};gj9027m;False;t3_kx8sy5;False;True;t1_gj8onoy;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj9027m/;1610722444;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RoseSpinoza;;;[];;;;text;t2_jwp6i;False;False;[];;The troll was so STRONG XD .;False;False;;;;1610646360;;False;{};gj9037s;False;t3_kx96wn;False;False;t1_gj8z909;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9037s/;1610722464;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;Bruh, I wanted to make a point that I think both opinions are right even though I don't agree with one of them;False;False;;;;1610646398;;False;{};gj906az;True;t3_kx8sy5;False;True;t1_gj8zqvh;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj906az/;1610722527;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kassavfa;;;[];;;;text;t2_3mp20rnz;False;False;[];;It seems like somebody is doing backside job injecting those guys with L5 injection, just to mess Rika up.;False;False;;;;1610646412;;False;{};gj907fz;False;t3_kx96wn;False;False;t1_gj8uobn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj907fz/;1610722553;31;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;;;[];;;;text;t2_4la0rf79;False;False;[];;That’s stupid;False;False;;;;1610646431;;False;{};gj9090u;True;t3_kx9axj;False;True;t1_gj8wugf;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gj9090u/;1610722585;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;Counting down the number of re-tries she's willing to do with her fingers at the end of each mini-arc. Heartbreaking.;False;False;;;;1610646470;;False;{};gj90c7o;False;t3_kx96wn;False;False;t1_gj8u060;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj90c7o/;1610722653;47;True;False;anime;t5_2qh22;;0;[]; -[];;;Xsaderr;;;[];;;;text;t2_62fn42oe;False;False;[];;Same;False;False;;;;1610646477;;False;{};gj90cs6;False;t3_kx96wn;False;True;t1_gj8v3ks;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj90cs6/;1610722665;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sharafi04;;;[];;;;text;t2_4949iljy;False;False;[];;Man, these past two episodes have been crazier than the OG Higurashi has ever been;False;False;;;;1610646494;;False;{};gj90e6y;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj90e6y/;1610722693;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xsaderr;;;[];;;;text;t2_62fn42oe;False;False;[];;Keiichi basically becomes a god when he holds a bat;False;False;;;;1610646501;;False;{};gj90erh;False;t3_kx96wn;False;False;t1_gj8y1nu;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj90erh/;1610722704;101;True;False;anime;t5_2qh22;;0;[]; -[];;;nekika;;;[];;;;text;t2_o3fqilb;False;False;[];;But if he went home to his wife, the okonogi fight couldn't happen. Therefore I think she's dead and he's already l5 from the start;False;False;;;;1610646623;;False;{};gj90oty;False;t3_kx96wn;False;False;t1_gj8w7s8;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj90oty/;1610722922;58;True;False;anime;t5_2qh22;;0;[]; -[];;;Key_Feeling_3083;;;[];;;;text;t2_8k6onlu2;False;False;[];;"Those those toy story and aggretsuko toys. - -https://i.imgur.com/LDgMtlF.jpg";False;False;;;;1610646634;;False;{};gj90pqi;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj90pqi/;1610722943;14;True;False;anime;t5_2qh22;;0;[]; -[];;;kassavfa;;;[];;;;text;t2_3mp20rnz;False;False;[];;"My reaction to - -1. Ooishi's trick : How did he do that, what's happening, I don't understand, it's flipping so fast. - -2. Ryukishi's trick : How did he do that, what's happening, I don't understand, it's flipping so fast.";False;False;;;;1610646649;;False;{};gj90qye;False;t3_kx96wn;False;False;t1_gj8wyw5;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj90qye/;1610722967;82;True;False;anime;t5_2qh22;;0;[]; -[];;;H-Ryougi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DizzyAvocado/animelist;light;text;t2_pr24s;False;False;[];;Ah you're right.;False;False;;;;1610646698;;False;{};gj90v4y;False;t3_kx96wn;False;False;t1_gj90oty;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj90v4y/;1610723054;23;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610646717;;1610716830.0;{};gj90wp4;False;t3_kx96wn;False;True;t1_gj8w445;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj90wp4/;1610723087;36;True;False;anime;t5_2qh22;;0;[]; -[];;;kassavfa;;;[];;;;text;t2_3mp20rnz;False;False;[];;Rena tanked him though, too bad Rena didn't have her trusted scythe or her fighting mode activated.;False;False;;;;1610646726;;False;{};gj90xg7;False;t3_kx96wn;False;False;t1_gj90erh;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj90xg7/;1610723102;61;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610646730;;False;{};gj90xsl;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj90xsl/;1610723108;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;If you thought both opinions were right, you wouldn't have felt the need to say you don't agree with one. By saying so, you're admitting that your opinion that AoT is the best anime is the better opinion. Just man up and admit that you're cut from the same cloth as everyone you're complaining about.;False;False;;;;1610646730;;False;{};gj90xtk;False;t3_kx8sy5;False;True;t1_gj906az;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj90xtk/;1610723109;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610646789;;False;{};gj912o2;False;t3_kx96wn;False;True;t1_gj8vi5f;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj912o2/;1610723208;28;True;False;anime;t5_2qh22;;0;[]; -[];;;8andahalfby11;;MAL;[];;https://myanimelist.net/animelist/thereIwasnt;dark;text;t2_kvyfg;False;False;[];;"> Maybe it's cuz my ""Satoko sus"" goggles are on, but she's still the only one of the main 5 that we haven't seen directly die, even through 4 mini loops (other than Keiichi, technically) - -Let me trigger your HS even further. She's also the only one that didn't actively try to save Rika in any of the mini-loops.";False;False;;;;1610646867;;False;{};gj9191k;False;t3_kx96wn;False;False;t1_gj8xw1g;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9191k/;1610723335;45;True;False;anime;t5_2qh22;;0;[]; -[];;;stanman237;;;[];;;;text;t2_b6rt8;False;False;[];;Not necessarily, you never get to see what happens after Mion locks up K1 in the cell.;False;False;;;;1610646889;;False;{};gj91auo;False;t3_kx96wn;False;False;t1_gj90wp4;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj91auo/;1610723371;14;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainedDog;;;[];;;;text;t2_fib5a;False;False;[];;I know! The format of slightly changing past arcs made me expect Matsuribashi deceiving version then they hit us with the betrayal.;False;False;;;;1610646911;;False;{};gj91cmm;False;t3_kx96wn;False;False;t1_gj8z909;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj91cmm/;1610723404;33;True;False;anime;t5_2qh22;;0;[]; -[];;;SnowLocke;;;[];;;;text;t2_wx2pc;False;False;[];;">Yes it's a proven fact, lupin has a 7.8 on mal. However that's no different than saying ""it's a proven fact that James rates lupin a 7.8"" - -I'm really not sure what you mean or what your point is. Can you restate it more clearly? - -I'm not trying to say that MAL is the decider of scores. All because MAL gives Lupin a 7.80, it doesn't mean that Lupin should be a 7.8 or that someone who thinks Lupin is better or worse is wrong. Simply that it's a statistical average of the users who were polled. -The only reason I brought it up was to give an anime related example to refute your claim that the only things that aren't opinions are math and science. I could just as easily have said that in the MAL poster for Lupin III Part 2, Lupin is wearing a red jacket or that Hayao Miyazaki directed Castle in the Sky. I realize in retrospect that giving a score as evidence of a fact may have been a poor example given the topic of discussion.";False;False;;;;1610646915;;False;{};gj91cxv;False;t3_kx8sy5;False;True;t1_gj8wv7j;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj91cxv/;1610723410;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BerserkerMagi;;;[];;;;text;t2_p3y06;False;False;[];;Great catch. I wonder what other little clues like this we are missing.;False;False;;;;1610646927;;False;{};gj91dz6;False;t3_kx96wn;False;False;t1_gj90oty;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj91dz6/;1610723430;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Rhys_Henry;;;[];;;;text;t2_2wott471;False;False;[];;Higurashi Any% speedrun;False;False;;;;1610647093;;False;{};gj91rk3;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj91rk3/;1610723704;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerellos;;;[];;;;text;t2_qohtkfa;False;False;[];;Every L5 person this episode talked about parasyte in them, so someone(likely Takano) showing the notebook to everyone.;False;False;;;;1610647131;;False;{};gj91up2;False;t3_kx96wn;False;True;t1_gj8z822;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj91up2/;1610723761;2;True;False;anime;t5_2qh22;;0;[]; -[];;;8andahalfby11;;MAL;[];;https://myanimelist.net/animelist/thereIwasnt;dark;text;t2_kvyfg;False;False;[];;"Absolutely. - -Here's another pleasant thought: Rika's with her mother now.";False;False;;;;1610647211;;False;{};gj92177;False;t3_kx96wn;False;False;t1_gj8yge5;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj92177/;1610723911;17;True;False;anime;t5_2qh22;;0;[]; -[];;;H-Ryougi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DizzyAvocado/animelist;light;text;t2_pr24s;False;False;[];;"I believe this is a pretty important clue, they've been sneakily showing St. Lucia and her uniform since episode 1. - -As far as we know, St. Lucia is a good distance away from Hinamizawa which means Rika probably left the town some time after Matsuribayashi/Saikoroshi. The town that notedly had a syndrome that prevented people from leaving, the syndrome of which Rika is the queen carrier. - -We've been told that the syndrome is mostly dormant and on its way to disappear during the OG Higurashi, plus Irie is actively working on a cure, but what does that mean for the queen carrier? Would she be cured? What if Gou is her punishment for leaving Hinamizawa?";False;False;;;;1610647284;;False;{};gj9277j;False;t3_kx96wn;False;False;t1_gj90018;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9277j/;1610724022;14;True;False;anime;t5_2qh22;;0;[]; -[];;;RoseSpinoza;;;[];;;;text;t2_jwp6i;False;False;[];;......................y'know, your post just made me realize, what if the Oyashiro sword DOESN'T actually perma-kill a looper?;False;False;;;;1610647306;;False;{};gj928ww;False;t3_kx96wn;False;False;t1_gj8vd75;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj928ww/;1610724053;16;True;False;anime;t5_2qh22;;0;[]; -[];;;jojoismyreligion;;;[];;;;text;t2_5j56wzq4;False;False;[];;Why;False;False;;;;1610647406;;False;{};gj92gv7;False;t3_kx948a;False;True;t3_kx948a;/r/anime/comments/kx948a/gintama_fans_be_like/gj92gv7/;1610724207;1;True;False;anime;t5_2qh22;;0;[]; -[];;;luxor777;;;[];;;;text;t2_i5w5ro;False;False;[];;"Fuck, I was excited to see Rika reaching out to Akasaka but then it immediately went to shit. Imagine being a first timer and this is your introduction to him lol. It doesn't look like Rika can gain allies just by opening up to them Matsuribayashi-hen style. It makes me wonder if this series will end up reinforcing or subverting the OG's message. I could see it going either way at this point, but I would be disappointed if the original message was destroyed just to do something like giving Bernkastel an origin story with no greater meaning attached. - -Based on the tidbits we've seen of Rika's future (which is now in the past because loops) I think she ended up becoming distant with her friends over time. Even though they were crucial to her defeating the fate of 1983, the traumatic memories she had of her time in Hinamizawa caused her to want to start anew somewhere else. She got a happy ending, but she probably had an enormous amount of PTSD associated with the 100 years of misery she experienced trapped in Hinamizawa. If you notice, the image of Rika's ideal future has changed from 1978 with Akasaka to the present. Instead of wishing to live out her life happily with her dearest friends in Hinamizawa, she is wishing to be away from it all, greeting another unknown day in St Lucia. - -I'm still in the camp that believes Satoko to be the one pulling the strings. As others have speculated, I think she was the one most affected by Rika's estrangement in this possible future, leading to her making a deal with some Hanyuu-like being to be sent back to 1983 after her own life falls apart somehow. Its possible the motivation could lie with Satoshi as well. For instance, maybe in order to truly find a ""cure"" for Hinamizawa Syndrome, something that would work on a patient whos been pushed to L5 like Satoshi, Irie needed Rika's assistance. However, she had already left Hinamizawa with no plans of returning or even having to think about Hinamizawa Syndrome ever again. These loops could be Satoko throwing this dangling thread back into Rika's face, essentially telling her that its her fault that people are still suffering from Hinamizawa Syndrome. So far its difficult to discern a motive beyond ""make Rika suffer as much as possible"", which makes me more strongly believe the culprit is someone who was once very close to Rika and not a mysterious person X.";False;False;;;;1610647417;;False;{};gj92hpt;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj92hpt/;1610724225;5;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;"I reject the entire concept of ""best"" anything. The sole issue importance to me is whether like/love a show (or book or movie or musical piece, etc,). Great works of art are unique and one can't be exchanged for another. Many shows can be great, often for very different reasons, why bother trying to decide if one is *better* than another if both are wonderful,";False;False;;;;1610647442;;False;{};gj92jrv;False;t3_kx8sy5;False;True;t3_kx8sy5;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj92jrv/;1610724267;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Endless-Sorcerer;;;[];;;;text;t2_13sj4l;False;False;[];;"Eh, part of the fun of these series is to grasp at straws and try to predict what's going to happen next. Even if you get it entirely wrong, the speculation process is still fun. - -Anyways, It's entirely possible that it's just a nice slice-of-life moment they included for contrast with *The Many Deaths of Rika*, but we've already seen a few hints that the players and scenario have changed. Satoko and Takano have been the most apparent before this point, so the pieces on the board having changed are something people have suspected for a while now. - -Narratively, it would seem appropriate to reveal the other looper at the end of this arc. I think the next arc is supposed to be the longest, so we'd have time for scenes from (presumably) Satoko's perspective to show how she had to adapt to the loops and provide a few answers we've been missing from previous scenarios. The arc is long enough that they should be able to include those reveals, finding their resolve, rallying their friend to make an attempt at resolving the scenario, and revealing their [final opponent](/s ""who is probably Featherine, formerly Hanyuu"") in time for the final arc.";False;False;;;;1610647452;;1610655248.0;{};gj92klc;False;t3_kx96wn;False;False;t1_gj900ed;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj92klc/;1610724284;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;False;[];;Exactly. We like series *because* we think they're good. I don't get how people can treat them as separate entities as if quality can be objectively quantified. No, enjoyment comes from how good we perceive it to be.;False;False;;;;1610647479;;False;{};gj92ms6;False;t3_kx8sy5;False;False;t1_gj8ogld;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj92ms6/;1610724326;5;True;False;anime;t5_2qh22;;0;[]; -[];;;CosmicPenguin_OV103;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cosmic_Penguin;light;text;t2_1ufwqhs7;False;True;[];;"[This is how I feel when I picked the wrong set of original anime in one season...](https://i.imgur.com/M2T9tPR.jpg) - -For goodness sake. Rika-chan getting her head chopped one time after another. I, um, have nothing more to say about this gruesome loop, except that she's still stuck in this far longer than our MCs of so many different anime out there. - -At least she knew what she's doing and she's apparently trying to narrow down the source of this tickling parasite by dying a few more times. It looks like it's working and I must say that [spoilers](/s ""our always so suspectable Satoko"") seems so out of loop that I am very suspicious of how this person managed to avoid dying. - -Well, let's hope we don't see more of these [Madoka Magica spoilers](/s ""Rika being Mami-ed"") next episode, I can barely take that with blood at 1:30 am in my place...";False;False;;;;1610647499;;1610647681.0;{};gj92oex;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj92oex/;1610724360;7;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;"Man I thought we were going to get a wholesome episode when we started off with the kids having fun and [learning a mahjong party trick from Ooishi.](https://i.imgur.com/rWBU5MP.png) And then [Akasaka shows up!](https://i.imgur.com/FFjsiNA.png) Yaaaay! Everything is going to be allllriiiii- [Oh no.](https://i.imgur.com/t5Vpsb8.png) - -And it didn't stop with Akasaka! [Akane](https://i.imgur.com/9db4HrP.png) and [Kimiyoshi](https://i.imgur.com/FBdFxHo.png) goes on their own L5 rampages too! Holy fuck! What the fuck is even happening! And to make things worst for Rika [we're back to Keiichi in a completely new scenario](https://i.imgur.com/1ZPhYaE.pngv) where he basically massacres all of the Angel Mort girls and the gang. O_O - -As insane as this was though, this episode just completely proves all of us who are saying that this isn't first timer friendly. I'm sure all of us in this thread were freaking out when Akasaka showed up but his significance is completely lost on the first timers on the other thread. - -Anyway looks like Rika only has one loop left before using the blade. I don't even know anymore. Ryukishi is just fucking with us at this point.";False;False;;;;1610647510;;False;{};gj92p90;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj92p90/;1610724375;6;True;False;anime;t5_2qh22;;0;[]; -[];;;FA-ST;;;[];;;;text;t2_wh9z4;False;False;[];;"Did they put H-173 in Keiichi's parfait or some shit how do you get him to L5 so early - -EDIT: S M A L L S Y R I N G E S";False;False;;;;1610647542;;1610661133.0;{};gj92rrj;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj92rrj/;1610724424;23;True;False;anime;t5_2qh22;;0;[]; -[];;;luxor777;;;[];;;;text;t2_i5w5ro;False;False;[];;This would be an interesting twist. It doesn't look like she can ally with anyone who doesn't already have knowledge of the disease. Honestly, the more I think about this the more I want to see it. Takano helping Rika get through this would make for nice atonement for her actions in the original series. She would totally get along with Rika's savage sarcastic side too.;False;False;;;;1610647720;;False;{};gj935uo;False;t3_kx96wn;False;False;t1_gj8r4d8;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj935uo/;1610724691;34;True;False;anime;t5_2qh22;;0;[]; -[];;;Komi028;;;[];;;;text;t2_inot1;False;False;[];;"So high school Rika next episode? - -I have to say, Satoko was a lot less suspicious this episode, I still think she is the other looper.";False;False;;;;1610647735;;False;{};gj9372z;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9372z/;1610724714;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkChaplain;;;[];;;;text;t2_3zc84;False;False;[];;Short term memory for a lot of viewers. They haven't been around back when the original aired, let alone the VNs were still releasing.;False;False;;;;1610647771;;False;{};gj93a0w;False;t3_kx96wn;False;False;t1_gj8x9zs;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj93a0w/;1610724772;35;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610647997;;1610648384.0;{};gj93s0j;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj93s0j/;1610725114;0;True;False;anime;t5_2qh22;;0;[]; -[];;;CosmicPenguin_OV103;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cosmic_Penguin;light;text;t2_1ufwqhs7;False;True;[];;No, Ryukishi07 is the one that needs that LOL. Getting Rika-chan losing her head several times in 10 minutes is just insane. 😣;False;False;;;;1610648014;;False;{};gj93td3;False;t3_kx96wn;False;False;t1_gj8vs3c;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj93td3/;1610725141;38;True;False;anime;t5_2qh22;;0;[]; -[];;;garfe;;;[];;;;text;t2_18gnef;False;False;[];;Someone noted that the first loop on June 13 and the Keiichi murder loop is on June 13. Which means things have gotten so bad she is now looping straight into her death, no few days of fun anymore.;False;False;;;;1610648019;;False;{};gj93trt;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj93trt/;1610725149;27;True;False;anime;t5_2qh22;;0;[]; -[];;;KaptainTZ;;skip7;[];;;dark;text;t2_9fhynbf5;False;False;[];;because;False;False;;;;1610648040;;False;{};gj93vfa;True;t3_kx948a;False;True;t1_gj92gv7;/r/anime/comments/kx948a/gintama_fans_be_like/gj93vfa/;1610725184;1;True;False;anime;t5_2qh22;;0;[]; -[];;;8andahalfby11;;MAL;[];;https://myanimelist.net/animelist/thereIwasnt;dark;text;t2_kvyfg;False;False;[];;Takano isn't the culprit. In Tatari she was already leaving the village when Ooishi went on his rampage.;False;False;;;;1610648067;;False;{};gj93xjg;False;t3_kx96wn;False;False;t1_gj8yvxp;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj93xjg/;1610725226;22;True;False;anime;t5_2qh22;;0;[]; -[];;;knockout28101996;;;[];;;;text;t2_6dujtbvr;False;False;[];;Anime name ??;False;False;;;;1610648131;;False;{};gj942rh;False;t3_kx948a;False;True;t3_kx948a;/r/anime/comments/kx948a/gintama_fans_be_like/gj942rh/;1610725326;1;True;False;anime;t5_2qh22;;0;[]; -[];;;luxor777;;;[];;;;text;t2_i5w5ro;False;False;[];;Thats a good point, though I think people can come to the conclusion that maggots or parasites are inside them just from experiencing the symptoms. If I remember correctly Rena believed they were inside her before receiving File 34 from Takano in Tsumihoroboshi-hen. Also first timers haven't been given any hints about the notebook (though its possible the show wasnt written with the culprit being solve able by first timers).;False;False;;;;1610648136;;False;{};gj9434q;False;t3_kx96wn;False;False;t1_gj8ysan;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9434q/;1610725334;10;True;False;anime;t5_2qh22;;0;[]; -[];;;DeathFromSky;;;[];;;;text;t2_2ecwkjeh;False;False;[];;Yep,Kimiyoshi was also talking about swamp gas.;False;False;;;;1610648145;;False;{};gj943u0;False;t3_kx96wn;False;False;t1_gj8ysan;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj943u0/;1610725346;10;True;False;anime;t5_2qh22;;0;[]; -[];;;jojoismyreligion;;;[];;;;text;t2_5j56wzq4;False;False;[];;Fair enough.;False;False;;;;1610648166;;False;{};gj945ip;False;t3_kx948a;False;True;t1_gj93vfa;/r/anime/comments/kx948a/gintama_fans_be_like/gj945ip/;1610725378;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Almondjoy247;;;[];;;;text;t2_ekw78;False;False;[];;I mean it was stated that people who go L5 commonly see/feel bugs crawling in their skin causing them to scratch at their skin. It's just a byproduct of going L5.;False;False;;;;1610648215;;False;{};gj949iq;False;t3_kx96wn;False;False;t1_gj8ysan;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj949iq/;1610725455;46;True;False;anime;t5_2qh22;;0;[]; -[];;;hell-flower;;;[];;;;text;t2_xbjz1;False;False;[];;"ok wild thought here - -Hanyuu is the culprit. I'm sure of it. I'll die on this hill. -Perhaps Hanyuu isn't the right word. Let's say ""Oyashiro-sama"". The vicious oni kami of Onigafuchi, slain by her own daughter with the Onigari-no-ryuuou... Or literally in English, ""Demon-hunting willow cherry tree"". It's a sword meant to kill demons. And yet last episode Hanyuu described it as a weapon that can kill someone who can travel between worlds... And in episode 4 of Rei, Rena described someone who could go between worlds as a god.... The DEEN anime must have aired before this one for a reason, right? Not to mention Hanyuu's horn cut was glowing in that scene, and according to the TIP in Matsuribayashi the ""demon god's horn was destroyed"" when the Onigari-no-ryuuou was used. Though I'm trying to form this theory on only anime content, but I guess it's not much of a stretch to assume Hanyuu got the cut when she was killed. - -Hanyuu has shown she can create fragments that break the rules of the Hinamizawa we know and love. She's can also interact with those who have reached L3, and in the case of Rena and Takano she could even talk to them. Hanyuu has a very easy means of fast tracking anyone's ascent into Hinamizawa Syndrome. - -I guess the real question would be why, I imagine it has something to do with future Rika. Something we haven't seen yet, like with Takano. I hate this theory and I hope I get proven wrong honestly. - -Alternatively Rika herself could also be the culprit given the she is the reincarnation of Oyashiro-sama... it's got to be one of them. After all, who else would know how to hurt Rika this badly? I can't exactly see Rika telling her friends all the brutal ways they've murdered or been murdered by each other. And at this point I can't see the culprit being someone that hasn't been introduced.";False;False;;;;1610648221;;False;{};gj94a01;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj94a01/;1610725465;5;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;What the hell is wrong with this anime, it's more gruesome than the first one, nowadays they don't even censor the scenes;False;False;;;;1610648229;;False;{};gj94ali;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj94ali/;1610725477;3;True;False;anime;t5_2qh22;;0;[]; -[];;;scmasaru;;;[];;;;text;t2_98x0i;False;True;[];;The fact that they chose not to animate tsubame gaeshi was a strong hint that they were not going to show us anything nice in this ep.;False;False;;;;1610648238;;False;{};gj94bde;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj94bde/;1610725491;6;True;False;anime;t5_2qh22;;0;[]; -[];;;quitethewaysaway;;;[];;;;text;t2_100ag6;False;False;[];;Just when you thought Akasaka was your hope.......................;False;False;;;;1610648342;;False;{};gj94jnm;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj94jnm/;1610725654;1;True;False;anime;t5_2qh22;;0;[]; -[];;;relaxed_anon;;;[];;;;text;t2_15odpdr2;False;False;[];;She needed that, because literally day later K1 went bananas.;False;False;;;;1610648405;;False;{};gj94opb;False;t3_kx96wn;False;False;t1_gj92177;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj94opb/;1610725754;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;Honestly, facts;False;False;;;;1610648417;;False;{};gj94pry;True;t3_kx8sy5;False;True;t1_gj92jrv;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj94pry/;1610725775;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Omen111;;;[];;;;text;t2_16bdvg;False;False;[];;It was only aplied to Rena who aside from HS had a whole baggage of psychological issues. If im not mistaken, prior to events of Higurashi, she had some kind of mental illness(that is unrealeted to HS and im pretty sure exist irl) which made her think that there were maggots inside of her. And she started talking about parasytes only after reading Takano scrapbooks;False;False;;;;1610648439;;False;{};gj94rgn;False;t3_kx96wn;False;True;t1_gj9434q;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj94rgn/;1610725807;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sdd264;;;[];;;;text;t2_1g5wqrbo;False;False;[];;He was a mate with Kameda, so why not;False;False;;;;1610648496;;False;{};gj94vzu;False;t3_kx96wn;False;False;t1_gj8y1nu;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj94vzu/;1610725897;8;True;False;anime;t5_2qh22;;0;[]; -[];;;RoseSpinoza;;;[];;;;text;t2_jwp6i;False;False;[];;She has multiple notebooks with various theories though. Like the one with aliens she gave to Rena.;False;False;;;;1610648502;;False;{};gj94whw;False;t3_kx96wn;False;True;t1_gj91up2;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj94whw/;1610725907;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Omen111;;;[];;;;text;t2_16bdvg;False;False;[];;Yeah, and if im ot mistaken, wasnt swamp gas not meentioned at all in legends of Hinamizawa and only got known after GHD??;False;False;;;;1610648512;;False;{};gj94x91;False;t3_kx96wn;False;False;t1_gj943u0;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj94x91/;1610725924;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;Let me restate I think both opinions are respectable, but i don't agree with them, or think they're right. I just respect people who have these opinions;False;False;;;;1610648514;;False;{};gj94xed;True;t3_kx8sy5;False;True;t1_gj90xtk;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj94xed/;1610725928;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Key_Feeling_3083;;;[];;;;text;t2_8k6onlu2;False;False;[];;At first I thought Rika was trying to convince people, that's why they knew Rika has knowledge of it and went after hger, but it is still suspicious how random the people that go L5 are.;False;False;;;;1610648541;;False;{};gj94zm9;False;t3_kx96wn;False;False;t1_gj8xw1g;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj94zm9/;1610725974;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Omen111;;;[];;;;text;t2_16bdvg;False;False;[];;Where was it stated and why none aside from Rena mentioned this?;False;False;;;;1610648542;;False;{};gj94zp0;False;t3_kx96wn;False;True;t1_gj949iq;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj94zp0/;1610725975;1;True;False;anime;t5_2qh22;;0;[]; -[];;;8andahalfby11;;MAL;[];;https://myanimelist.net/animelist/thereIwasnt;dark;text;t2_kvyfg;False;False;[];;"She has one more attempt, and that's the last best remaining option. Not only is Takano powerful, she knows exactly what HS and is surrounded by people that do too. - -Of course, that will also fail. Last episode of the arc will reveal the culprit as Rika is on the way to off herself.";False;False;;;;1610648548;;False;{};gj95060;False;t3_kx96wn;False;False;t1_gj8r4d8;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj95060/;1610725984;27;True;False;anime;t5_2qh22;;0;[]; -[];;;sdd264;;;[];;;;text;t2_1g5wqrbo;False;False;[];;Yeah, unfortunately we couldn't get that epic battle as it was on the school's roof;False;False;;;;1610648561;;False;{};gj9516l;False;t3_kx96wn;False;False;t1_gj90xg7;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9516l/;1610726004;32;True;False;anime;t5_2qh22;;0;[]; -[];;;RoseSpinoza;;;[];;;;text;t2_jwp6i;False;False;[];;Some people probably weren't even born....;False;False;;;;1610648577;;False;{};gj952gn;False;t3_kx96wn;False;False;t1_gj93a0w;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj952gn/;1610726027;26;True;False;anime;t5_2qh22;;0;[]; -[];;;EquivalentGur3072;;;[];;;;text;t2_84bevo8q;False;False;[];;"""Best anime ever"" is subjective, therefore it's fine for anyone to have their own opinion about it. The problem arises when someone says that their ""best anime ever"" should be everyone's objective ""best anime ever."" - -If you post ""Attack on Titan is the best anime ever,"" be prepared to have people disagree with you. This disagreement is completely fine. I also believe you should be *extremely* confident in your belief that ""AOT is the best anime ever"" before you actually say or truly believe it. You cannot declare AOT to be the best *anime* ever while only having watched battle shonen because you aren't extremely confident.";False;False;;;;1610648755;;False;{};gj95glo;False;t3_kx8sy5;False;False;t3_kx8sy5;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj95glo/;1610726324;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sirtemmie;;;[];;;;text;t2_wnszs;False;False;[];;Itchy, tasty.;False;False;;;;1610648805;;False;{};gj95kks;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj95kks/;1610726399;4;True;False;anime;t5_2qh22;;0;[]; -[];;;un6952db;;MAL;[];;https://myanimelist.net/animelist/asimovitsch;dark;text;t2_mh7vo;False;False;[];;ngl, I will be pretty impressed if you are right, but both occasions seem to me like you are reaching a bit. Still, I would like to be wrong if it is executed well.;False;False;;;;1610648819;;False;{};gj95lrh;False;t3_kx96wn;False;False;t1_gj8zwte;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj95lrh/;1610726423;33;True;False;anime;t5_2qh22;;0;[]; -[];;;SuddenFellow;;;[];;;;text;t2_acaw1;False;False;[];;You know, I thought to myself, how could this possibly get any worse for Rika after what last week was. What the FUCK Akasaka.;False;False;;;;1610648948;;False;{};gj95w3b;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj95w3b/;1610726628;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_That-Dutch-Guy_;;;[];;;;text;t2_19ywmle;False;False;[];;That moment was great. Does a good job at showing how little Rika really cares. She just knows she's gonna die and wants to get it over with so she can get to the next world.;False;False;;;;1610648949;;False;{};gj95w59;False;t3_kx96wn;False;False;t1_gj8yge5;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj95w59/;1610726629;13;True;False;anime;t5_2qh22;;0;[]; -[];;;DT-Z0mby;;;[];;;;text;t2_ec9a0rg;False;False;[];;"did a great job at... deceiving though. - -&#x200B; - -gotta give it to ryukishi07 though, he is insanely good at toying with our expectations and emotions";False;False;;;;1610648976;;False;{};gj95yc1;False;t3_kx96wn;False;False;t1_gj91cmm;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj95yc1/;1610726674;40;True;False;anime;t5_2qh22;;0;[]; -[];;;DT-Z0mby;;;[];;;;text;t2_ec9a0rg;False;False;[];;rika remaining worlds speedrun any% world record.;False;False;;;;1610649047;;False;{};gj963yp;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj963yp/;1610726784;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GamerOfVirtue;;;[];;;;text;t2_lejf2;False;False;[];;The lack of Irie in the series is pretty... SUS;False;False;;;;1610649174;;False;{};gj96e5z;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj96e5z/;1610726985;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainedDog;;;[];;;;text;t2_fib5a;False;False;[];;People scratch at their neck because it feels like there are maggots crawling under their skin. They might not even need to be told anything to think there are parasites when it feels like there is something crawling inside.;False;False;;;;1610649215;;False;{};gj96hdp;False;t3_kx96wn;False;False;t1_gj8zhtt;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj96hdp/;1610727049;10;True;False;anime;t5_2qh22;;0;[]; -[];;;ovy7;;MAL;[];;https://myanimelist.net/profile/ovy7;dark;text;t2_w1z6n;False;False;[];;"Holy fuck, Ryukishi! Chill the hell down!!! - -[Also, is that body Takano's?!](https://cdn.discordapp.com/attachments/741550005407580210/799343298900000789/Annotation_2021-01-14_201340.png) Does this confirms she actually dies in the loops?!";False;False;;;;1610649286;;False;{};gj96n4i;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj96n4i/;1610727158;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainedDog;;;[];;;;text;t2_fib5a;False;False;[];;"> I've also noticed a recurring pattern that just about every person that goes crazy is specifically targeting Rika, and she's not just getting caught up in the crossfire by coincidence - -Good point. The rules seem to be setup specifically to make it harder for Rika compared to the original.";False;False;;;;1610649407;;False;{};gj96wse;False;t3_kx96wn;False;False;t1_gj8xw1g;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj96wse/;1610727339;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Sneaky_42;;;[];;;;text;t2_4spbyunp;False;False;[];;"Rika: ""You were the chosen one!""";False;False;;;;1610649614;;False;{};gj97d2u;False;t3_kx96wn;False;False;t1_gj8v1qp;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj97d2u/;1610727662;59;True;False;anime;t5_2qh22;;0;[]; -[];;;twistedtessellation;;;[];;;;text;t2_10ydls;False;False;[];;"Everyone: There’s no gore in Gō. - -Ryukishi: _Heard you talkin’ shit_";False;False;;;;1610649627;;False;{};gj97e5h;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj97e5h/;1610727683;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;I agree a 100%;False;False;;;;1610649678;;False;{};gj97ib2;True;t3_kx8sy5;False;True;t1_gj95glo;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj97ib2/;1610727763;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HypertoastR;;;[];;;;text;t2_weyz45g;False;False;[];;"i thought the old anime had more gore -i was mistaken -the details, are just ERGH, when rena gets her head split open , her eyes are gouging out of her eye pockets blood spewing from every hole in her head -nice job -also im very certain everyone called it that some magical way shit gets fixed in last try or after the last try";False;False;;;;1610649702;;False;{};gj97k8a;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj97k8a/;1610727799;3;True;False;anime;t5_2qh22;;0;[]; -[];;;J765;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Jarik761/favorites;light;text;t2_1bvjsg2f;False;False;[];;Of course not. Having something that brings in the money allows them to do more stuff like the animators expo, Dragon Dentist or Patlabor Reboot shorts.;False;False;;;;1610649753;;False;{};gj97o8q;False;t3_kx95be;False;True;t3_kx95be;/r/anime/comments/kx95be/evangelion_fourth_movie_isnt_the_end_of_franchise/gj97o8q/;1610727876;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sneaky_42;;;[];;;;text;t2_4spbyunp;False;False;[];;Wow! I was not expecting that at all! This is getting insane! Where do they even go from here? I'm so glad I watched the original series first. The newcomer thread is probably so confused right now lol.;False;False;;;;1610649795;;False;{};gj97rpe;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj97rpe/;1610727941;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kassavfa;;;[];;;;text;t2_3mp20rnz;False;False;[];;"Probably, but it's really sad if Rika is prohibited to go outside Hinamizawa for too long. - -I think someone just want to mess with Rika in witchcraftian way that doesn't have any morality or so on just for the sake of having fun messing with the girl that already pass the trial of 100 years repeating deads and tragedies just to drag her to that repeating tragedy again.";False;False;;;;1610649796;;False;{};gj97rs6;False;t3_kx96wn;False;False;t1_gj9277j;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj97rs6/;1610727942;10;True;False;anime;t5_2qh22;;0;[]; -[];;;janoDX;;;[];;;;text;t2_bowtb;False;False;[];;"L - -5";False;False;;;;1610649816;;False;{};gj97tbu;False;t3_kx96wn;False;False;t1_gj8rqnr;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj97tbu/;1610727972;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Sneaky_42;;;[];;;;text;t2_4spbyunp;False;False;[];;Akasaka! No! You were the chosen one!;False;False;;;;1610649836;;False;{};gj97uxg;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj97uxg/;1610728008;7;True;False;anime;t5_2qh22;;0;[]; -[];;;gsgsygahshsgsgsh;;;[];;;;text;t2_5iz28rhx;False;False;[];;HOLY SHIT;False;False;;;;1610649850;;False;{};gj97w1c;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj97w1c/;1610728028;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sneaky_42;;;[];;;;text;t2_4spbyunp;False;False;[];;Also, I'm surprised nothing was censored this episode. I thought decapitations and whatnot were supposed to be a big no-no.;False;False;;;;1610649899;;False;{};gj97ztz;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj97ztz/;1610728102;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Net_Flux;;;[];;;;text;t2_13gl9k;False;False;[];;Not quite. Her mother's brain was dissected alive without anaesthesia by Takano with Takano laughing euphorically about how she has so much power while Rika's mother was screaming and begging her to stop. Her body was probably cremated or buried after that. It was shown in the manga which was written by Ryukushi. Rika doesn't know this though.;False;False;;;;1610650101;;1610652057.0;{};gj98g1t;False;t3_kx96wn;False;False;t1_gj92177;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj98g1t/;1610728410;40;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610650117;;False;{};gj98h9k;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj98h9k/;1610728434;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ADDMYRSN;;MAL;[];;https://myanimelist.net/profile/Not_Ryan_Gosling;dark;text;t2_amt1w;False;False;[];;We also have this somewhat suspicious [backshot of Satoko](https://postimg.cc/HJLp95Yf) whereas we clearly saw Rena and Mion react.;False;False;;;;1610650136;;False;{};gj98iue;False;t3_kx96wn;False;False;t1_gj8xuvx;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj98iue/;1610728463;32;True;False;anime;t5_2qh22;;0;[]; -[];;;WisperG;;;[];;;;text;t2_v4hxy;False;False;[];;"That was quite the clickbait article, though not surprising from a site like CBR. Like, of course they're not going to bury one of the most popular mecha franchises in anime just because it's last planned film was released. - -On a similar note, Anno did say several years ago that he intended to be done with the franchise after the fourth film, but wanted to open it up for other creators put their own spin on it, citing Ghost in the Shell and Gundam as examples of what he was envisioning. Who knows if that's still what he intends, but either way it'll be interesting to see where the franchise goes from here. I'd be quite interested in seeing anime adaptations of some of the manga and novels personally.";False;False;;;;1610650140;;False;{};gj98j5t;False;t3_kx95be;False;True;t3_kx95be;/r/anime/comments/kx95be/evangelion_fourth_movie_isnt_the_end_of_franchise/gj98j5t/;1610728469;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;Anno is done with it, he wants it to become like Gundam, with people telling their own stories in its universe.;False;False;;;;1610650212;;False;{};gj98owr;False;t3_kx95be;False;True;t1_gj8qq3b;/r/anime/comments/kx95be/evangelion_fourth_movie_isnt_the_end_of_franchise/gj98owr/;1610728580;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ADDMYRSN;;MAL;[];;https://myanimelist.net/profile/Not_Ryan_Gosling;dark;text;t2_amt1w;False;False;[];;Because most Re:Zero fans are 13 year olds who listen to Bakugo trap remixes on youtube.;False;True;;comment score below threshold;;1610650222;;False;{};gj98ppf;False;t3_kx96wn;False;True;t1_gj8x9zs;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj98ppf/;1610728596;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;garfe;;;[];;;;text;t2_18gnef;False;False;[];;They actually were censored on broadcast. Weirdly, the streaming version had the uncensored one;False;False;;;;1610650254;;False;{};gj98scv;False;t3_kx96wn;False;False;t1_gj94ali;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj98scv/;1610728650;8;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;I just want more Patlabor, god that was such a creative series and the movies are some of Oishi's finest work.;False;False;;;;1610650261;;False;{};gj98syd;False;t3_kx95be;False;True;t1_gj97o8q;/r/anime/comments/kx95be/evangelion_fourth_movie_isnt_the_end_of_franchise/gj98syd/;1610728662;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fixdswine;;;[];;;;text;t2_3zhil823;False;False;[];;This episode was 5 Levels of messed up.;False;False;;;;1610650394;;False;{};gj993ln;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj993ln/;1610728873;10;True;False;anime;t5_2qh22;;0;[]; -[];;;ADDMYRSN;;MAL;[];;https://myanimelist.net/profile/Not_Ryan_Gosling;dark;text;t2_amt1w;False;False;[];;Another user in this thread said that the people going L5 were people Rika would typically ask for help in times of need. Meaning, someone may be deliberately inducing L5 on people who Rika trusts the most or when she seeks out help to break the loop. This surely cannot be the work of Takano either, and I bet we will see Takano go L5 soon to confirm that.;False;False;;;;1610650465;;False;{};gj99990;False;t3_kx96wn;False;False;t1_gj8xw1g;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj99990/;1610728986;20;True;False;anime;t5_2qh22;;0;[]; -[];;;H-Ryougi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DizzyAvocado/animelist;light;text;t2_pr24s;False;False;[];;It was censored on Japanese TV. Funi got the uncensored version apparently.;False;False;;;;1610650533;;False;{};gj99etc;False;t3_kx96wn;False;False;t1_gj97ztz;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj99etc/;1610729099;14;True;False;anime;t5_2qh22;;0;[]; -[];;;SweetCoconut;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SweetCoconut;light;text;t2_p7ndv;False;False;[];;"I thought that Neko was done after this episode because Rika has only 1 more try left but nawp she basically speedruns her journey lol. - -But daaamn I'm so excited to see if she will win in her last loop. That and answers for the first three arcs we still need answers Ryukishi!";False;False;;;;1610650579;;False;{};gj99ilg;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj99ilg/;1610729174;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Slifer13xx;;MAL;[];;http://myanimelist.net/animelist/Slifer13xx;dark;text;t2_irntz;False;False;[];;"> I guess we confirmed that the building in the OP is St. Lucia - -That's actually very disappointing.";False;False;;;;1610650720;;False;{};gj99twq;False;t3_kx96wn;False;False;t1_gj8r6jk;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj99twq/;1610729395;11;True;False;anime;t5_2qh22;;0;[]; -[];;;thenewwwguy2;;;[];;;;text;t2_49p26v8j;False;False;[];;"based on Go so far, this seems to be the set of commonalities - -1. Keiichi always lives (or is presumed to live) -2. Rika (and probably Satoko as well) is always killed -3. A key player in Rika’s survival in the original Higurashi is the betrayer - -with Keiichi surviving, the exceptions are the mini arcs, where we don’t know if he actually lives. Based on the first few arcs though, the assumption is that he does - -Satoko dying is unknown in the mini arcs where Akasaka and Kimiyoshi turn out to be the villains, but since it happens in all the other ones it’s likely the case? - -So far, the villains have been Rena, Mion, Ooishi, Akasaka, Kimiyoshi, Mion’s mom and Keiichi, as well as the mystery murderer from the first arc. All of them were key in Rika’s survival, so the 3rd point is likely supported";False;False;;;;1610650747;;1610683676.0;{};gj99w3j;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj99w3j/;1610729437;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Almondjoy247;;;[];;;;text;t2_ekw78;False;False;[];;I mean it was stated from takano's notes that some of the ww2 victims had symptoms. Just because not everyone develops the maggot hallucination, doesn't mean it's not a common side effect. It also wasn't shown before that every injected person hallucinated bugs.. For example oishi wasn't complaining about maggots the previous episode. Just that he was itchy. It is pretty obvious he was injected just like the 4 this episode. Imop, it's more to drive home that they are all L5.;False;False;;;;1610650757;;False;{};gj99wtw;False;t3_kx96wn;False;False;t1_gj94zp0;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj99wtw/;1610729452;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Slifer13xx;;MAL;[];;http://myanimelist.net/animelist/Slifer13xx;dark;text;t2_irntz;False;False;[];;"C -R -Y";False;False;;;;1610650883;;False;{};gj9a6wc;False;t3_kx96wn;False;False;t1_gj97tbu;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9a6wc/;1610729651;14;True;False;anime;t5_2qh22;;0;[]; -[];;;nsleep;;MAL;[];;https://myanimelist.net/animelist/NeverSleep;dark;text;t2_5u8vg;False;False;[];;But how would her notebooks would work on Akane? The Sonozaki know about those and have been collecting them for a while.;False;False;;;;1610650900;;False;{};gj9a8am;False;t3_kx96wn;False;False;t1_gj8vg5w;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9a8am/;1610729680;6;True;False;anime;t5_2qh22;;0;[]; -[];;;luxor777;;;[];;;;text;t2_i5w5ro;False;False;[];;">How the remaining idk, 10 episodes are going to play out, idk. - -Its pretty exciting, I think we've reached the pinnacle of ""1 person going L5 and fucking the loop"", and the rest will only get more hectic, possibly ending this arc with something on the level of the GHD in terms of scale.";False;False;;;;1610650946;;False;{};gj9abwj;False;t3_kx96wn;False;False;t1_gj8vt6y;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9abwj/;1610729755;2;True;False;anime;t5_2qh22;;0;[]; -[];;;wizzaryredy;;;[];;;;text;t2_8nmy7o38;False;False;[];;So, does this mean K1 holds the official any% speedrun record at June 13th?;False;False;;;;1610651158;;False;{};gj9asko;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9asko/;1610730096;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Mystic8ball;;;[];;;;text;t2_hpgps;False;False;[];;"Man when I heard Rika say she'd give herself 5 more chances I thought we'd see them played out until the end of the series with the last chance being the one where everything works out in the end. Never expected to just see a montage of failure, the violence on display here surpasses anything from the original Deen anime in my opinon... which is weird considering how censored the gore was in the start of the series, I wonder if Funimation managed to acquire the uncensored raws for simulcasting. - -Seeing Akasaka getting infected with Himizawa syndrome was another thing I never thought I'd see happen, that hard cut of him saying he'll help Rika to her just lying in a pool of her own blood is going to be one of the strongest moments in the series. The suddenness of Keiichi caving Renas head in also made me legit jump. - -The series is done retreading old ground with a twist here and there, eager to see what to make of what's to come. - -That said, I do have to wonder why Ryushiki thought this series would be a good entry point because people just jumping into Gou are going to have no clue who Akasaka is, his relationship with Rika and why it was so shocking to see him go L5. Now more than ever do I think that watching the old anime or reading the VN is mandatory for Gou.";False;False;;;;1610651181;;False;{};gj9augl;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9augl/;1610730131;9;True;False;anime;t5_2qh22;;0;[]; -[];;;H-Ryougi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DizzyAvocado/animelist;light;text;t2_pr24s;False;False;[];;Okinomiya way ahead of its time with the merchandising considering this is 1983.;False;False;;;;1610651196;;False;{};gj9avl7;False;t3_kx96wn;False;False;t1_gj90pqi;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9avl7/;1610730154;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610651241;;False;{};gj9az1u;False;t3_kx96wn;False;True;t1_gj8r4d8;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9az1u/;1610730219;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Slifer13xx;;MAL;[];;http://myanimelist.net/animelist/Slifer13xx;dark;text;t2_irntz;False;False;[];;Welp, this was fucking horrifying. Guess I'll go back to read Umineko.;False;False;;;;1610651250;;False;{};gj9aztt;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9aztt/;1610730233;10;True;False;anime;t5_2qh22;;0;[]; -[];;;ItsFromMars;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ItsFromMars;light;text;t2_dftam;False;False;[];;"Overall, a great episode that really helped with what I felt was poor pacing for the rest of this series. Only two more episodes in this arc? Curious. - -I will say this (I always have to complain about something). While I felt like the quick cut into Akasaka killing Rika was super effective, immediately into Akane slaughtering everyone in the Sonozaki household, I really feel like the ""horror"" scenes of Gou are just a bit too \*goofy\* and over the top to be truly horrific. The DEEN adaptation, while flawed in many ways, I think had way more effective horror. The Kimiyoshi & Keiichi scenes just felt really goofy as opposed to horrible, and I think this is mostly down to two big things: - -The voice acting & color palettes. The Kimiyoshi scene in particular felt super goofy because his VO really didn't sell his insanity as much as it should've. The Keiichi scene is the same. I think it's great that most of the VA cast from the original returned for this new series, but I think the voice direction in many of these more intense scenes could've used a little work. It doesn't help that the super bright and vibrant colors of this series sort of creates some tonal inconsistency (more so than usual in Higurashi) that just feels off to me. - -Back on the more positive side of things, I think watching Rika continue to lose hope is pretty heartbreaking. The motif of her counting down on her fingers with every death, punctuating her shift into a new world by snapping her fingers was great. Rika calling Kimiyoshi out on his monologue was some solid dark comedy. - -I've seen some people theorize that maybe Rika may have to reach out to Takano for help, and I think that would be a fun & interesting flip on their original roles. I can't see what Takano would have to gain from such an alliance (unless she too has been experiencing the loops this time around, though I find that doubtful), but I would be down for the possibility nonetheless. - -Lastly, I know there's a lot of people holding out hope for an Umineko crossover still, which is fair considering we have 9 episodes left to go, but I'm still of the opinion that it just shouldn't happen. A Bernkastel ""origin"" I'd be fine with, considering Bern has technically been in Higurashi already, but bringing in other characters from Umineko is pretty risky, imo. Ryukishi would have to be very careful not to introduce too many element from Umineko to keep Higurashi's story and characters relevant and impactful. - -Looking forward to next week!";False;False;;;;1610651267;;False;{};gj9b13j;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9b13j/;1610730259;13;True;False;anime;t5_2qh22;;0;[]; -[];;;sdd264;;;[];;;;text;t2_1g5wqrbo;False;False;[];;First, she still could suffer from being disinherited. She had the same grudges with Sonozaki clan as Shion did, but it depends on whether she could keep her calm. But in contradiction - she's very stable person, which is an unchanging factor. But, as we can see from this episode, she should've undergone emotional stress, started despising her clan;False;False;;;;1610651361;;False;{};gj9b8j8;False;t3_kx96wn;False;False;t1_gj9a8am;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9b8j8/;1610730400;5;True;False;anime;t5_2qh22;;0;[]; -[];;;yuhboiwhiteboi69ner;;;[];;;;text;t2_2ky7v9bl;False;False;[];;People are capable of having a favorite and knowing what is better than their favorite but still preferring their favorite;False;False;;;;1610651367;;False;{};gj9b90w;False;t3_kx8sy5;False;True;t3_kx8sy5;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj9b90w/;1610730410;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jerl;;;[];;;;text;t2_5ea9r;False;True;[];;"As in, it only kills [Umineko](/s ""their piece representation inside the gameboard fragment?"") I don't think that would make it any different from an ordinary sword, though.";False;False;;;;1610651376;;False;{};gj9b9ox;False;t3_kx96wn;False;True;t1_gj928ww;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9b9ox/;1610730422;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chino-kafu;;;[];;;;text;t2_hgf2eos;False;False;[];;So probably forgetting some but notable characters that haven't gone L5 killing spree now would be Irie, Takano, Tomitake and Kasai.;False;False;;;;1610651420;;False;{};gj9bd65;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9bd65/;1610730506;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Asddsa76;;;[];;;;text;t2_978nq;False;False;[];;[This is fine.](https://cdn.discordapp.com/attachments/741762417976934460/799354766106165339/hSsZvl4.png);False;False;;;;1610651438;;False;{};gj9bejg;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9bejg/;1610730530;9;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;But once you see the uncensored version, u can't unsee it;False;False;;;;1610651438;;False;{};gj9beku;False;t3_kx96wn;False;False;t1_gj98scv;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9beku/;1610730531;4;True;False;anime;t5_2qh22;;0;[]; -[];;;FruitsPnchSamurai;;;[];;;;text;t2_knvm4;False;False;[];; I feel bad for the people who started with this season. This must be confusing as hell.;False;False;;;;1610651562;;False;{};gj9bohy;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9bohy/;1610730728;10;True;False;anime;t5_2qh22;;0;[]; -[];;;thebige73;;;[];;;;text;t2_e593p;False;False;[];;Ive been thinking this since the start of this series;False;False;;;;1610651611;;False;{};gj9bs5j;False;t3_kx96wn;False;True;t1_gj8wv8j;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9bs5j/;1610730795;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sdd264;;;[];;;;text;t2_1g5wqrbo;False;False;[];;I am afraid that the previous cases would be explained in one episode in the same gory way;False;False;;;;1610651646;;False;{};gj9buyb;False;t3_kx96wn;False;True;t1_gj8wn27;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9buyb/;1610730848;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CriticalPerformance;;;[];;;;text;t2_58c2kp;False;False;[];;" - -It is forbidden for the culprit to be anyone not mentioned in the early part of the story.";False;False;;;;1610651663;;False;{};gj9bwaa;False;t3_kx96wn;False;True;t1_gj8r4d8;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9bwaa/;1610730875;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;No, coz nothing is better if you think it's your favorite. That's a dumb argument coz you're basing it off of the fact it not all opinionated. It's all opinion, there's no series better than any other series factually. Someone could say mars of destruction is better than MHA. Whilst most, me included would disagree. That person isn't wrong.;False;False;;;;1610651720;;False;{};gj9c0uq;True;t3_kx8sy5;False;True;t1_gj9b90w;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj9c0uq/;1610730962;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sneaky_42;;;[];;;;text;t2_4spbyunp;False;False;[];;It's odd, because Funi censored some stuff in a previous episode, so it threw me off this time lol.;False;False;;;;1610651788;;False;{};gj9c675;False;t3_kx96wn;False;False;t1_gj99etc;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9c675/;1610731059;5;True;False;anime;t5_2qh22;;0;[]; -[];;;yuhboiwhiteboi69ner;;;[];;;;text;t2_2ky7v9bl;False;False;[];;Thanks, everyone should have their own opinions;False;False;;;;1610651986;;False;{};gj9clzg;False;t3_kx8sy5;False;True;t1_gj8p03x;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj9clzg/;1610731363;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nsleep;;MAL;[];;https://myanimelist.net/animelist/NeverSleep;dark;text;t2_5u8vg;False;False;[];;I don't think the Decalogue can be properly applied to Higurashi at any point through the whole series.;False;False;;;;1610652213;;False;{};gj9d3te;False;t3_kx96wn;False;False;t1_gj9bwaa;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9d3te/;1610731725;27;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610652225;;False;{};gj9d4s9;False;t3_kx96wn;False;True;t1_gj8r4d8;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9d4s9/;1610731744;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ekyou;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/rizuchan/;light;text;t2_edg4v;False;False;[];;Those are probably people's only exposure to death-looping. Even though it's a super common visual novel mechanic.;False;False;;;;1610652298;;False;{};gj9dajp;False;t3_kx96wn;False;False;t1_gj8x9zs;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9dajp/;1610731856;11;True;False;anime;t5_2qh22;;0;[]; -[];;;funnyguywhoisntfunny;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Hinloen;light;text;t2_31g4aceg;False;False;[];;it was never confirmed that Higurashi follows the Knox decalogue;False;False;;;;1610652352;;False;{};gj9deyk;False;t3_kx96wn;False;False;t1_gj9bwaa;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9deyk/;1610731939;8;True;False;anime;t5_2qh22;;0;[]; -[];;;SpikeRosered;;;[];;;;text;t2_9mwt7;False;False;[];;This was always the episode people kind of wished for when they watch this series. None of the fluff, only despair.;False;False;;;;1610652376;;False;{};gj9dgvp;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9dgvp/;1610731976;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;J0HN__L0CKE;;MAL;[];;http://myanimelist.net/animelist/J0HN_L0CKE;dark;text;t2_caftb;False;False;[];;1) was definitely me haha. This episode got me going god damn;False;False;;;;1610652384;;False;{};gj9dhi5;False;t3_kx96wn;False;True;t1_gj8ztoy;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9dhi5/;1610731989;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rigoku;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Elitar;light;text;t2_2j07de1;False;False;[];;You can think whatever you want.;False;False;;;;1610652535;;False;{};gj9dtg7;False;t3_kx8sy5;False;True;t3_kx8sy5;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj9dtg7/;1610732234;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CriticalPerformance;;;[];;;;text;t2_58c2kp;False;False;[];;"It can be applied to Higurashi Gou since it was written after Umineko - -But even so, having the solution be a random person would be kind of shit writting";False;False;;;;1610652595;;False;{};gj9dy7w;False;t3_kx96wn;False;True;t1_gj9d3te;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9dy7w/;1610732332;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Afan9001;;;[];;;;text;t2_h11er;False;False;[];;"I'm fucking crying at the people who thought there would be a season 2 - -Looks like I was right, we speedrunning this bitch";False;False;;;;1610652629;;False;{};gj9e106;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9e106/;1610732390;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610652661;;False;{};gj9e3oh;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9e3oh/;1610732454;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nsleep;;MAL;[];;https://myanimelist.net/animelist/NeverSleep;dark;text;t2_5u8vg;False;False;[];;But I don't think it's even a proper mystery or even a point of concern to begin with, who killed her in that arc isn't entirely relevant to what the story is wanting to tell because anyone could've killed her. The fact that she died matters, but who killed her isn't as important.;False;False;;;;1610652720;;False;{};gj9e8d4;False;t3_kx96wn;False;False;t1_gj9dy7w;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9e8d4/;1610732545;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Micchan001;;MAL;[];;https://myanimelist.net/animelist/Dystania;dark;text;t2_15cpsl;False;False;[];;"Me last episode: Five loops in the remaining episodes seems a bit tight, maybe she won't use all of them. - - -Me this episode: Oh fuck.";False;False;;;;1610652737;;False;{};gj9e9p7;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9e9p7/;1610732571;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ArcOfRuin;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/arcofruin;light;text;t2_wbn3w9;False;False;[];;"It does look like Takano, but I think it could also be Satoko. Both have blond hair and their ""default clothes"" are green, and the body is too out of focus to get much more than that.";False;False;;;;1610652749;;False;{};gj9ean6;False;t3_kx96wn;False;False;t1_gj96n4i;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9ean6/;1610732588;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Septaluna;;;[];;;;text;t2_7wai0fs4;False;False;[];;I just wanted to have SOL higurashi becasue... she gave herself 5 times... so there shouldn't have been any deaths in this ep... oh, well, how nice of a dinner i have had....;False;False;;;;1610652769;;False;{};gj9ec6e;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9ec6e/;1610732617;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Stefan474;;MAL;[];;http://myanimelist.net/animelist/Stefan474;dark;text;t2_9ffp8;False;False;[];;Also we have not seen Satoko L5 yet, and everyone else was either L5 or L4 in Shion's case during the Satoko uncle arc.;False;False;;;;1610652781;;False;{};gj9ed58;False;t3_kx96wn;False;False;t1_gj8xuvx;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9ed58/;1610732636;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Ekyou;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/rizuchan/;light;text;t2_edg4v;False;False;[];;Ryukishi07 heard all the complaints that there wasn't enough new stuff to keep the longtime fans interested.;False;False;;;;1610652799;;False;{};gj9eej8;False;t3_kx96wn;False;True;t1_gj90e6y;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9eej8/;1610732664;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Greenawalt_Gaming;;;[];;;;text;t2_463fnkfu;False;False;[];;I for sure will, just one more question, what website do you use to watch anime, I personally use animefreak and it’s pretty amazing but there’s something that could be better;False;False;;;;1610652828;;False;{};gj9egss;False;t3_kx9axj;False;True;t1_gj8zucf;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gj9egss/;1610732706;1;True;False;anime;t5_2qh22;;0;[]; -[];;;realrimurutempest;;;[];;;;text;t2_4bauklbm;False;False;[];;Well fuck, that was brutal and depressing;False;False;;;;1610652885;;False;{};gj9el6a;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9el6a/;1610732796;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RoseSpinoza;;;[];;;;text;t2_jwp6i;False;False;[];;St. Lucia was also in the original. It's the private school that Shion goes to.;False;False;;;;1610652952;;False;{};gj9eqbo;False;t3_kx96wn;False;False;t1_gj93s0j;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9eqbo/;1610732898;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Izanaginookami10;;MAL;[];;http://myanimelist.net/profile/Izanaginookami;dark;text;t2_opbh3;False;False;[];;"Oh dear ~~God~~ Hanyuu, what the fuck did I just witness. This is cursed. I think I hardly blinked post Asakasa fucking troll. I think my feelings haven't even yet caught up with my mind, as it's still damn not little shocked by it. - -Still, this is certainly making it very clear that Gou will be completed wthin this season. I suppose we will get some answers from now on finally regarding what kind of shenanigans are going on behind this Hinamizawa.";False;False;;;;1610653035;;False;{};gj9ewpv;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9ewpv/;1610733022;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Madnissimo;;;[];;;;text;t2_81vdci6l;False;False;[];;Stop feeding Rika, we're going to lose the game;False;False;;;;1610653070;;False;{};gj9ezhh;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9ezhh/;1610733076;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Izanaginookami10;;MAL;[];;http://myanimelist.net/profile/Izanaginookami;dark;text;t2_opbh3;False;False;[];;Hanyuu left us and there was nothing holy in it, so cursed fuck. The episode was cursed as fuck indeed.;False;False;;;;1610653121;;False;{};gj9f3jf;False;t3_kx96wn;False;False;t1_gj8rpmu;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9f3jf/;1610733153;9;True;False;anime;t5_2qh22;;0;[]; -[];;;sdd264;;;[];;;;text;t2_1g5wqrbo;False;False;[];;At the time of Higurashi Ange is 3 years old. The difference between ages is too big;False;False;;;;1610653138;;False;{};gj9f4vd;False;t3_kx96wn;False;False;t1_gj8yzgt;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9f4vd/;1610733180;7;True;False;anime;t5_2qh22;;0;[]; -[];;;divini;;MAL;[];;http://myanimelist.net/animelist/Akichi;dark;text;t2_e94uq;False;False;[];;"When I saw Akasaka I brightened up just like Rika, but remembering Ooishi I immediately thought, ""Nothing would be more tragic than the savior himself betraying her"" - -But I didn't even imagine it would happen in only 1 cut. Damn.";False;False;;;;1610653157;;False;{};gj9f6dh;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9f6dh/;1610733209;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Pyroprotector;;;[];;;;text;t2_7217d;False;False;[];;He's always been voiced by Daisuke Ono.;False;False;;;;1610653181;;False;{};gj9f89y;False;t3_kx96wn;False;True;t1_gj8zkqh;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9f89y/;1610733247;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wizzaryredy;;;[];;;;text;t2_8nmy7o38;False;False;[];;Agreed. The manipulator clearly is someone with the knowledge and ability to turn other people into killer.;False;False;;;;1610653222;;False;{};gj9fbhn;False;t3_kx96wn;False;True;t1_gj93s0j;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9fbhn/;1610733312;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Pyroprotector;;;[];;;;text;t2_7217d;False;False;[];;Nah, St Lucia was in the original too. It was the school Shion went to. If anything, the one in Umi is a Higurashi reference.;False;False;;;;1610653234;;False;{};gj9fcef;False;t3_kx96wn;False;False;t1_gj93s0j;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9fcef/;1610733331;8;True;False;anime;t5_2qh22;;0;[]; -[];;;franzinor;;;[];;;;text;t2_degwt;False;False;[];;Ange would be in St. Lucia’s elementary division when Rika’s in the highschool.;False;False;;;;1610653272;;False;{};gj9ffgv;False;t3_kx96wn;False;False;t1_gj9f4vd;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9ffgv/;1610733391;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Syokhan;;;[];;;;text;t2_b5zid;False;False;[];;No, I laughed too. It was morbidly funny, but at the same time I still felt terrible for Rika, just wanting to get it over with.;False;False;;;;1610653326;;False;{};gj9fjrx;False;t3_kx96wn;False;False;t1_gj8yge5;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9fjrx/;1610733479;7;True;False;anime;t5_2qh22;;0;[]; -[];;;CriticalPerformance;;;[];;;;text;t2_58c2kp;False;False;[];;Its a proper mystery, just not an orthodox one;False;False;;;;1610653494;;False;{};gj9fx1s;False;t3_kx96wn;False;False;t1_gj9e8d4;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9fx1s/;1610733746;5;True;False;anime;t5_2qh22;;0;[]; -[];;;sdd264;;;[];;;;text;t2_1g5wqrbo;False;False;[];;It has one? Didn't know;False;False;;;;1610653849;;False;{};gj9gowb;False;t3_kx96wn;False;True;t1_gj9ffgv;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9gowb/;1610734308;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610653882;;False;{};gj9grgf;False;t3_kx96wn;False;True;t1_gj94a01;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9grgf/;1610734359;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610653916;;False;{};gj9gu1i;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9gu1i/;1610734414;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Omen111;;;[];;;;text;t2_16bdvg;False;False;[];;BUt why whould he ask for cure for Rika, whom he cleary left alive before killing everyone else? And no one before with L5 thought of parasytes.;False;False;;;;1610653957;;False;{};gj9gxbi;False;t3_kx96wn;False;False;t1_gj96hdp;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9gxbi/;1610734484;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Patangua;;;[];;;;text;t2_b5e6u;False;False;[];;I saw Akasaka and I was like YAY! And then it cut to what happened and I was like oh.;False;False;;;;1610653959;;False;{};gj9gxgu;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9gxgu/;1610734488;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Flare_Knight;;;[];;;;text;t2_v5stf;False;False;[];;"This really is impossible mode. The previous series was near impossible with the amount of things stacked against Rika. But this is just insanity. No one is reliable here. The last miracle required absolutely everyone, including the Hanyuu they don’t have anymore. There are no reliable allies anymore. - -The episode was a painful drag in that sense. Although it did let me empathize with Rika’s(can we just move it along already) feelings. - -I wouldn’t blame her at all for suicide. This is just impossible.";False;False;;;;1610654078;;False;{};gj9h6uy;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9h6uy/;1610734690;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Chris__Johnson;;;[];;;;text;t2_hzxyyz5;False;False;[];;Given the theory that this is Featherine's doing this is exactly how her ability works.;False;False;;;;1610654141;;False;{};gj9hbvg;False;t3_kx96wn;False;False;t1_gj8upr1;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9hbvg/;1610734794;29;True;False;anime;t5_2qh22;;0;[]; -[];;;Flare_Knight;;;[];;;;text;t2_v5stf;False;False;[];;The Akasaka part was good. But geeze the rest just dragged on. Yes, let’s see what obscure killer you have this time. I half expected the last one of the episode to be the toy store owner.;False;False;;;;1610654154;;False;{};gj9hcyd;False;t3_kx96wn;False;False;t1_gj95yc1;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9hcyd/;1610734815;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Mega-Dyne;;;[];;;;text;t2_1kv28ry;False;False;[];;"When I saw Akasaka my thoughts were ""Oh God No"" and then it proved me right. - -Then all the jump cuts. I'm beginning to think some of those time Rika's looped started where the insanity began. - -Keiichi wasn't acting the way he normally acted in Onikakushi when he was losing it. - -I'm under the impression that everyone in this series who went L5 doesn't seem to be going full ""EVERYONE IS OUT TO GET ME!!!"" mentality. Rika please get Takano in on this.";False;False;;;;1610654162;;False;{};gj9hdl5;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9hdl5/;1610734828;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Aerohed;;;[];;;;text;t2_xjmyo;False;False;[];;"Well... At least there were no nails this time. - -I guess this proves it's all wrapping up this season, unless she gets some other push to keep moving forward that would put her squarely in answer arc territory. - -This was a rough one to watch, honestly, and not just because of the head crushing stuff at the end. I like how they lead in with Akasaka to make us think that this loop could be good, and then hard cut to when it went terribly wrong. This was a shockingly effective montage, at least to me, because I think seeing all of these awful things happening to her sequentially clue us in as to her despair without having us go through every single arc beforehand. - -As far as we know, some of those arcs might break ""rules"" that've been established previously. In the Akasaka one, it didn't seem like anyone other than Rika died, which might shake the Satoko theory a little. Then again, she did die in the K1 arc, but so did everyone else we saw, and K1 was probably close to death by that point anyway. - -In the other timelines we saw, it's difficult to determine which members survived and which didn't, so that's all up to guesswork, but I think this is the first time we know of that K1's actually gone L5 in this season unless the first arc (of Gou) was actually him losing it and not Rena.";False;False;;;;1610654183;;False;{};gj9hf6j;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9hf6j/;1610734862;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Flare_Knight;;;[];;;;text;t2_v5stf;False;False;[];;Ugh, I hope not. That’s like teaming up with a time traveling Hitler. Yeah, take your allies where you can get them. But teaming up with a genocidal psychopath seems like one terrible last resort option.;False;False;;;;1610654274;;False;{};gj9hm7z;False;t3_kx96wn;False;True;t1_gj8r4d8;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9hm7z/;1610735008;1;True;False;anime;t5_2qh22;;0;[]; -[];;;prrg;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/prrg/;light;text;t2_j0167;False;False;[];;gou!keiichi destroyed rena with just an alarm clock, imagine what he'd do with a bat;False;False;;;;1610654317;;False;{};gj9hplj;False;t3_kx96wn;False;False;t1_gj8y1nu;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9hplj/;1610735081;18;True;False;anime;t5_2qh22;;0;[]; -[];;;franzinor;;;[];;;;text;t2_degwt;False;False;[];;"It’s elementary through college, as far as I remember. But we don’t know if the branches are on the same grounds. - -Edit: Checked the wiki. It's up *to* college, so the highschool is the highest branch.";False;False;;;;1610654328;;1610661436.0;{};gj9hqh5;False;t3_kx96wn;False;False;t1_gj9gowb;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9hqh5/;1610735099;7;True;False;anime;t5_2qh22;;0;[]; -[];;;melindypants;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/melindypants ;light;text;t2_bb5qq9o;False;False;[];;They got us good....here I thought it was going to be somewhat happy because she wasn't going to go through 5 attempts. Poor Rika-chan...*sad nipah*;False;False;;;;1610654329;;1610655710.0;{};gj9hqjt;False;t3_kx96wn;False;False;t1_gj8vlpp;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9hqjt/;1610735101;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Aerohed;;;[];;;;text;t2_xjmyo;False;False;[];;"It's a little disturbing how readily available explosives are in this small town in the middle of nowhere Japan, and even more so how many of the children there know how to properly wire them. - -Then again, looking at everything else going on there, teenagers with explosive ordinance seems pretty tame by comparison.";False;False;;;;1610654370;;False;{};gj9htqw;False;t3_kx96wn;False;False;t1_gj8zh2w;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9htqw/;1610735171;9;True;False;anime;t5_2qh22;;0;[]; -[];;;melindypants;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/melindypants ;light;text;t2_bb5qq9o;False;False;[];;Higurashi: Oprah edition;False;False;;;;1610654435;;False;{};gj9hyxw;False;t3_kx96wn;False;False;t1_gj8uobn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9hyxw/;1610735280;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Rhaga;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/rhaga/;light;text;t2_b4kn8;False;False;[];;Hinamizawa speedrun any% RTA, that's how;False;False;;;;1610654467;;False;{};gj9i1er;False;t3_kx96wn;False;False;t1_gj8vlpp;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9i1er/;1610735331;31;True;False;anime;t5_2qh22;;0;[]; -[];;;melindypants;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/melindypants ;light;text;t2_bb5qq9o;False;False;[];;All that fucking neck scratching made my neck feel weird. Disturbingly well-done brutal episode.;False;False;;;;1610654492;;1610654839.0;{};gj9i3ds;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9i3ds/;1610735374;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Flare_Knight;;;[];;;;text;t2_v5stf;False;False;[];;What surprised me is how terrible the police here are at hostage situations. “Boss, the lone suspect is killing all the hostages what should we do?” “Let’s stand around and see how this plays out...”;False;False;;;;1610654549;;False;{};gj9i7tz;False;t3_kx96wn;False;False;t1_gj8v3ks;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9i7tz/;1610735470;31;True;False;anime;t5_2qh22;;0;[]; -[];;;Aerohed;;;[];;;;text;t2_xjmyo;False;False;[];;"It's like that Freeza counting thing from DBZA, where he lists the number of how many times he's heard a specific heroic phrase. - -I wonder how many times she's heard each type of crazy rambling.";False;False;;;;1610654600;;False;{};gj9ibsj;False;t3_kx96wn;False;False;t1_gj8yge5;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9ibsj/;1610735551;4;True;False;anime;t5_2qh22;;0;[]; -[];;;toutoune134;;;[];;;;text;t2_fokbo;False;False;[];;Jesus fucking christ;False;False;;;;1610654647;;False;{};gj9ifd5;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9ifd5/;1610735624;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rhaga;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/rhaga/;light;text;t2_b4kn8;False;False;[];;I mean technically he might not have been the only one who went crazy in there, just one of the last men standing;False;False;;;;1610654670;;False;{};gj9ih52;False;t3_kx96wn;False;True;t1_gj8y1nu;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9ih52/;1610735657;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Chris__Johnson;;;[];;;;text;t2_hzxyyz5;False;False;[];;"Given the structure of the episode I am pretty sure this is Featherine's doing. The Asaka scene is exactly how you would animate her ability. A quick cut to the conclusion and ""add the rest later"". - -I suspect that the ""last round"" will include Takano/Battler/Featherine.";False;False;;;;1610654676;;False;{};gj9ihli;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9ihli/;1610735667;1;True;False;anime;t5_2qh22;;0;[]; -[];;;toutoune134;;;[];;;;text;t2_fokbo;False;False;[];;Well they really deceived us haha;False;False;;;;1610654703;;False;{};gj9ijqb;False;t3_kx96wn;False;False;t1_gj91cmm;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9ijqb/;1610735711;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Toonamigamerrr;;;[];;;;text;t2_ssw2vcw;False;False;[];;WHAT THE HELL 0_____O!!!!!;False;False;;;;1610654723;;False;{};gj9il7h;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9il7h/;1610735741;2;True;False;anime;t5_2qh22;;0;[]; -[];;;metaaltheanimefan;;;[];;;;text;t2_1qdntfx;False;False;[];;I was so happy once i laid eyes on akasaka only for me to be scared and clutching onto my seal stuffed animal at the end of the episode;False;False;;;;1610654782;;False;{};gj9ipqt;False;t3_kx96wn;False;False;t1_gj8rpmu;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9ipqt/;1610735836;15;True;False;anime;t5_2qh22;;0;[]; -[];;;ultimatesorceress;;;[];;;;text;t2_pe3mlhr;False;False;[];;Yikes.;False;False;;;;1610654830;;False;{};gj9ith1;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9ith1/;1610735920;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mrtheliger;;;[];;;;text;t2_11ghbg;False;False;[];;"This is the most devastating piece of fiction I've ever experienced. It was depraved, emotional, and just pure evil. I loved it but I've never despised an anime so much at the same time. The triumphant return of Akasaka, followed by an immediate lurch in my stomach when I realized what it probably meant.. and then, not even five minutes later, it came true. It made me feel so helpless, a completely new feeling that I've never gotten from any anime, and rarely from any book. - -Higurashi has made me feel empty. I have no theories, or comments other than what I've said. At least not right now. Fucking evil shit man. - -Edit- I changed my mind, I do want to praise Daiksuke Ono for his performance. As short as it was it may be a new favorite of his for me.";False;False;;;;1610654855;;False;{};gj9ivcb;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9ivcb/;1610735960;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Rhaga;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/rhaga/;light;text;t2_b4kn8;False;False;[];;"> Hurray, Akasaka! Wait why is he hurt in his memories even though he saved his wife? - -Wasn't that a flashback from Rika's perspective? I was also thinking about how it was weird. - -Though TBF he might have just remembered from a different timeline, it's not like there is no precedence for that with Rena, Keiichi and Shion experiencing the same thing at various times.";False;False;;;;1610654996;;False;{};gj9j6ad;False;t3_kx96wn;False;True;t1_gj8vt6y;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9j6ad/;1610736191;2;True;False;anime;t5_2qh22;;0;[]; -[];;;metaaltheanimefan;;;[];;;;text;t2_1qdntfx;False;False;[];;"You made me remember the last episode of rei ( mainly because i watched it today ) - -You know the one where rena accedently sallowed some sealed away furude treasure and fell in love with anyone who carried around the white stone. She fell in love with takano and it was hillarious after those bouts of depression";False;False;;;;1610655043;;False;{};gj9j9zw;False;t3_kx96wn;False;False;t1_gj8ymq7;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9j9zw/;1610736266;19;True;False;anime;t5_2qh22;;0;[]; -[];;;prrg;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/prrg/;light;text;t2_j0167;False;False;[];;"This episode was HILARIOUS. The comedic timing was exquisite. - - - That fucking jump cut with Akasaka. - - ""Rika, shout if you're alright!"" **EXPLODES** - - Itchy, itchy, itchy, itchy! those fire effects during this scene lmao - - Rika's zero fucks given - - Just Kimiyoshi in general - - Could you finish your monologue *after* you toss me in the swamp? LMFAO - - ""yo breath stank"" ""YEET"" - - Rika just sitting in Angel Mort while Keiichi breaks everything ""this is fine"" - - Keiichi's face after Rika says the cure is inside her head, bad Keiichi - - Rika thinks back to her time on St. Lucia, anime visualizes this as her literally ascending to heaven. ""That's all I want"" BONK - -Thank you for an amazing... abridged episode? Can't wait to see what else Gou has in store.";False;False;;;;1610655269;;False;{};gj9jrwb;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9jrwb/;1610736638;44;True;False;anime;t5_2qh22;;0;[]; -[];;;MateusMalice;;;[];;;;text;t2_9r7cfte;False;False;[];;"Rika: ok 5 more loops - -Ryukishi07: ok let's fit all these loops in one episode - -Could you finish your monologue after you tossed me into the swamp? Your breath just stinks. - -LMAO";False;False;;;;1610655400;;False;{};gj9k23j;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9k23j/;1610736845;15;True;False;anime;t5_2qh22;;0;[]; -[];;;8andahalfby11;;MAL;[];;https://myanimelist.net/animelist/thereIwasnt;dark;text;t2_kvyfg;False;False;[];;It's not explosives, it's gasoline and a timed igniter. Same effect, different means.;False;False;;;;1610655554;;False;{};gj9kegc;False;t3_kx96wn;False;False;t1_gj9htqw;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9kegc/;1610737090;27;True;False;anime;t5_2qh22;;0;[]; -[];;;melindypants;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/melindypants ;light;text;t2_bb5qq9o;False;False;[];;Right?!? So unexpected! And with Akasaka too - freaky af.;False;False;;;;1610655565;;False;{};gj9kfcj;False;t3_kx96wn;False;False;t1_gj8tnmi;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9kfcj/;1610737105;18;True;False;anime;t5_2qh22;;0;[]; -[];;;skurttengil;;;[];;;;text;t2_ujxei;False;False;[];;"Damn, this episode was garbage. - -They wasted like 5 episodes going back and forth to the child protective services doing nothing but then cram together multiple deaths in 1 episode where everyone is equally looney toons insane with 0 buildup.";False;True;;comment score below threshold;;1610655640;;1610658318.0;{};gj9kla6;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9kla6/;1610737220;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;Nick_BOI;;;[];;;;text;t2_x2i42xd;False;False;[];;"It doesn't end. - -It doesn't stop. - -Ryukshi really wanted to put us all in Rika's shoes didn't he? Holding onto some faint hope, only for the same thing to always happen. - -It doesn't end. - -It doesn't stop. - -Why is this happening again? - -It. - -Does. - -Not. - -**END**.";False;False;;;;1610655697;;False;{};gj9kpvq;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9kpvq/;1610737305;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610655740;;False;{};gj9ktan;False;t3_kx96wn;False;True;t1_gj9bwaa;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9ktan/;1610737369;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Sorry /u/dniwehtotnoituac, this comment has been removed because some spoiler tags did not include a description of the spoiler content inside the brackets. Please make sure to label all your spoilers so that other users know what is being spoiled and to ensure the visibility of the spoilers with mobile applications. - -[](#yanderebot) - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610655770;moderator;False;{};gj9kvkz;False;t3_kx96wn;False;True;t1_gj9ktan;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9kvkz/;1610737412;1;False;False;anime;t5_2qh22;;0;[]; -[];;;-YukihiraSoma-;;;[];;;;text;t2_1q5qjz63;False;False;[];;What is L5?;False;False;;;;1610655794;;False;{};gj9kxgn;False;t3_kx96wn;False;False;t1_gj8zwte;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9kxgn/;1610737446;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rhaga;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/rhaga/;light;text;t2_b4kn8;False;False;[];;"> It really does seem like whoever goes L5 is completely random, though it can't be a coincidence that Akasaka just happened to go crazy on the extremely rare loop of him returning. - -Not only that, but that it happened to an outside at such a (presumably) short span of time is absolutely unheard of. Not to mention Keiichi and Akane going crazy on the 13th and the 15th --- before Watanagashi even! - -Something is definitely going on, smells like someone found the syringes with the bad stuff and is out to make Rika suffer";False;False;;;;1610655825;;False;{};gj9kzy7;False;t3_kx96wn;False;False;t1_gj8xw1g;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9kzy7/;1610737495;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Rhaga;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/rhaga/;light;text;t2_b4kn8;False;False;[];;"> Let me trigger your HS even further. She's also the only one that didn't actively try to save Rika in any of the mini-loops. - -Wait, I remember Keiichi trying to save her in the first loop this episode. What else?";False;False;;;;1610655874;;False;{};gj9l3uj;False;t3_kx96wn;False;False;t1_gj9191k;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9l3uj/;1610737571;7;True;False;anime;t5_2qh22;;0;[]; -[];;;AUO_Castoff;;;[];;;;text;t2_qjl21;False;False;[];;The moment Rika asked Akasaka to stay in the village the whole time I knew it was over for him.;False;False;;;;1610655908;;False;{};gj9l6gy;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9l6gy/;1610737623;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aerohed;;;[];;;;text;t2_xjmyo;False;False;[];;Ah, that makes a bit more sense. It's still kinda funny that they have enough rational thought to do all that, yet the paranoia and hallucinations from L5 make them think that bugs are crawling around inside them.;False;False;;;;1610655959;;False;{};gj9lagv;False;t3_kx96wn;False;False;t1_gj9kegc;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9lagv/;1610737699;7;True;False;anime;t5_2qh22;;0;[]; -[];;;-YukihiraSoma-;;;[];;;;text;t2_1q5qjz63;False;False;[];;Whats L5 ?;False;False;;;;1610656170;;False;{};gj9lsuj;False;t3_kx96wn;False;True;t1_gj8uobn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9lsuj/;1610738035;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hmu0nmyspace;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/darkmage_;light;text;t2_628sckny;False;False;[];;idk what hurt more, Rena pleading for K to stop then crushing her skull or Akasaka giving hope to Rika and taking that all away in 2 seconds.;False;False;;;;1610656295;;False;{};gj9m4fg;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9m4fg/;1610738239;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ChocoLemonCake;;;[];;;;text;t2_8ovron6e;False;False;[];;That sudden switch from a hopeful world to a scene of Rika bleeding scared the fuck out of me. The deaths were so gruesome too... So much new stuff happened, that was totally my favorite episode so far.;False;False;;;;1610656405;;False;{};gj9me8y;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9me8y/;1610738422;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Btw_kek;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SouvlakiSpace7;light;text;t2_i0pj6;False;False;[];;I think that's a butt, not blonde hair lol;False;False;;;;1610656414;;False;{};gj9mf1j;False;t3_kx96wn;False;False;t1_gj96n4i;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9mf1j/;1610738437;7;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;I think you are in the wrong thread...;False;False;;;;1610656528;;False;{};gj9mppw;False;t3_kx96wn;False;False;t1_gj9lsuj;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9mppw/;1610738621;17;True;False;anime;t5_2qh22;;0;[]; -[];;;abibyama;;;[];;;;text;t2_12he31;False;False;[];;Bat too OP pls nerf Mr. DragonKnight07;False;False;;;;1610656609;;False;{};gj9mxn5;False;t3_kx96wn;False;False;t1_gj90erh;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9mxn5/;1610738761;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ovy7;;MAL;[];;https://myanimelist.net/profile/ovy7;dark;text;t2_w1z6n;False;False;[];;IMO the body is too big to be Satoko's, plus her green clothes are mostly just [this one](https://static.zerochan.net/Houjou.Satoko.full.3048645.png), and that's the school outfit IIRC. [Compared to Takano](https://static.zerochan.net/Takano.Miyo.full.3071687.png), which IMO fits better.;False;False;;;;1610656693;;False;{};gj9n60x;False;t3_kx96wn;False;True;t1_gj9ean6;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9n60x/;1610738904;2;True;False;anime;t5_2qh22;;0;[]; -[];;;abibyama;;;[];;;;text;t2_12he31;False;False;[];;In case you haven’t read the VN nor watched the older anime, you really shouldn’t be here.;False;False;;;;1610656772;;False;{};gj9ndxd;False;t3_kx96wn;False;False;t1_gj9kxgn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9ndxd/;1610739042;12;True;False;anime;t5_2qh22;;0;[]; -[];;;abibyama;;;[];;;;text;t2_12he31;False;False;[];;Haha chessboard goes flip.;False;False;;;;1610656848;;False;{};gj9nl87;False;t3_kx96wn;False;True;t1_gj8re9c;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9nl87/;1610739171;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610657178;;False;{};gj9oh1m;False;t3_kx96wn;False;True;t1_gj8r6jk;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9oh1m/;1610739749;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Omen111;;;[];;;;text;t2_16bdvg;False;False;[];;"Too bad its too much ""Witch did it""";False;False;;;;1610657220;;False;{};gj9ol49;False;t3_kx96wn;False;False;t1_gj9hbvg;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9ol49/;1610739846;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Omen111;;;[];;;;text;t2_16bdvg;False;False;[];;But who caused these events? This defenetly matters and revealing him as some random person would be shit writing and not something that R07 likes to do.;False;False;;;;1610657353;;False;{};gj9oxr4;False;t3_kx96wn;False;False;t1_gj9e8d4;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9oxr4/;1610740090;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Omen111;;;[];;;;text;t2_16bdvg;False;False;[];;">Unless Rika pulls off an amazing save at the end of Nekodamashi, someones going to stop her from going through with her from going through with her plan. - - -I think we should ignore possibility of her diyng permenantly, consedering how big of madlad R07 is";False;False;;;;1610657477;;False;{};gj9p9n1;False;t3_kx96wn;False;True;t1_gj8r9p6;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9p9n1/;1610740304;2;True;False;anime;t5_2qh22;;0;[]; -[];;;abibyama;;;[];;;;text;t2_12he31;False;False;[];;This calls for a certain [guy that cancels witches](https://i.imgur.com/IKhPEcV.png);False;False;;;;1610657500;;False;{};gj9pbqg;False;t3_kx96wn;False;False;t1_gj9ol49;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9pbqg/;1610740342;7;True;False;anime;t5_2qh22;;0;[]; -[];;;TGSmurf;;;[];;;;text;t2_j3zktkn;False;False;[];;The fact it’s constantly a single random person going crazy shows there is a pattern. There must be an hidden culprit giving L5 to someone in each arc.;False;False;;;;1610657599;;False;{};gj9pl4s;False;t3_kx96wn;False;False;t1_gj9e8d4;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9pl4s/;1610740503;10;True;False;anime;t5_2qh22;;0;[]; -[];;;8andahalfby11;;MAL;[];;https://myanimelist.net/animelist/thereIwasnt;dark;text;t2_kvyfg;False;False;[];;"Keiichi tried to charge into the burning house. - -Mion tried to appeal to her mother. - -No one intervened during Kimiyoshi. - -Rena tried to stop Keiichi before getting bashed in.";False;False;;;;1610657717;;False;{};gj9pw9r;False;t3_kx96wn;False;False;t1_gj9l3uj;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9pw9r/;1610740711;12;True;False;anime;t5_2qh22;;0;[]; -[];;;TGSmurf;;;[];;;;text;t2_j3zktkn;False;False;[];;"Mion was sane enough to actively help Kei and be sane in front of him, so that’s something. - -Meanwhile Rena and Kei happily kills each other in their respective loops.";False;False;;;;1610657729;;False;{};gj9pxc0;False;t3_kx96wn;False;False;t1_gj91auo;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9pxc0/;1610740731;12;True;False;anime;t5_2qh22;;0;[]; -[];;;FireFistYamaan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4uscna3;False;False;[];;">as if the When They Cry franchise hasn’t been around longer and isn’t miles ahead of re:zero in writing and storytelling - -Higurashi is my favorite VN and Re:Zero is my favorite LN, so I don't know if I agree with you on this - -Even though they might have a few things in common, they tell vastly different types of stories with different types of themes.";False;False;;;;1610657857;;False;{};gj9q8wi;False;t3_kx96wn;False;False;t1_gj8x9zs;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9q8wi/;1610740932;25;True;False;anime;t5_2qh22;;0;[]; -[];;;GaaraOmega;;;[];;;;text;t2_fi02o;False;False;[];;"“Okay looks like this will be the Akasaka arc”. - -Next Cut: “Oh”. - -This is the one episode they didn’t censor anything for some reason.";False;False;;;;1610657882;;False;{};gj9qbbk;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9qbbk/;1610740972;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ZCaster;;;[];;;;text;t2_12v8oe;False;False;[];;"K1 tried to save Rika from the burning house - -Mion tried to dissuade her mother from continuing her attack - -Rena tried to dissuade L5 K1 from continuing his attack - -All of them made an effort to stop the horrors they were seeing, with the latter two dying for their attempts.";False;False;;;;1610657902;;False;{};gj9qd7n;False;t3_kx96wn;False;False;t1_gj9l3uj;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9qd7n/;1610741009;25;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;To be honest, given what happenned to Oishi, I was suspicious when he suddenly appeared. But I didn't expect them to directly cut to Akasaka murdering Rika lol.;False;False;;;;1610657903;;False;{};gj9qdb5;False;t3_kx96wn;False;False;t1_gj8v1qp;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9qdb5/;1610741012;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Rhaga;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/rhaga/;light;text;t2_b4kn8;False;False;[];;"Hm, fair enough, I don't think I'd consider Mion and Rena's case as them trying to save Rika, as much as just stopping the culprit from going on a further rampage. - -Still, you're right about her not doing anything actively here that we see.";False;False;;;;1610657945;;False;{};gj9qha5;False;t3_kx96wn;False;True;t1_gj9pw9r;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9qha5/;1610741084;1;True;False;anime;t5_2qh22;;0;[]; -[];;;n080dy123;;;[];;;;text;t2_139f6y;False;False;[];;If someone else there is looping they could explain what happened during those arcs, potentially even just show them to us straight up over the course of a full episode or something;False;False;;;;1610657948;;False;{};gj9qhkn;False;t3_kx96wn;False;False;t1_gj8w445;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9qhkn/;1610741090;7;True;False;anime;t5_2qh22;;0;[]; -[];;;jenthehenmfc;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/jnsparrow;light;text;t2_v5dwp;False;False;[];;But reading the atrocious writing of re:zero makes me want to pull my hair out 😂 I’m not sure if Higurashi or Umineko would be the same in book form (I’ll admit Ryukishi can get hella repetitive at times ...;False;True;;comment score below threshold;;1610658007;;False;{};gj9qn5x;False;t3_kx96wn;False;True;t1_gj9q8wi;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9qn5x/;1610741191;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;TGSmurf;;;[];;;;text;t2_j3zktkn;False;False;[];;The scene felt like a big parallel to Tsumi. Could be he read the same takano notebook.;False;False;;;;1610658091;;False;{};gj9qv2l;False;t3_kx96wn;False;False;t1_gj9gxbi;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9qv2l/;1610741329;3;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;Lol. The villain (whoever he/she is) is definitely in a speed run to see how fast they can kill Rika.;False;False;;;;1610658145;;False;{};gj9r05z;False;t3_kx96wn;False;False;t1_gj8wlmr;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9r05z/;1610741423;18;True;False;anime;t5_2qh22;;0;[]; -[];;;n080dy123;;;[];;;;text;t2_139f6y;False;False;[];;Lots of shocking stuff but I also want to point out the music when Akasaka showed up TOTALLY makes it seem to new viewers like Rika's in love with Akasaka.;False;False;;;;1610658169;;False;{};gj9r2du;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9r2du/;1610741464;1;True;False;anime;t5_2qh22;;0;[]; -[];;;theanimegamer-___-;;;[];;;dark;text;t2_3vm3lj8d;False;False;[];;Yeah I have no idea what's going on anymore. We'll just have to see how he ties all of this up.;False;False;;;;1610658202;;False;{};gj9r5co;False;t3_kx96wn;False;True;t1_gj8r4d8;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9r5co/;1610741521;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NBR-SUPERSTAR;;;[];;;;text;t2_130bo7rw;False;False;[];;"I don't think I've ever had this strong of a ""FUUUCK! I need a fucking Drink!"" moment after finishing a piece of media ever. - -Now multiply this feeling x1200 and I think I vaguely get what it's like to be Rika. - -Being Rika is suffering.";False;False;;;;1610658218;;False;{};gj9r6sr;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9r6sr/;1610741548;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FireFistYamaan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4uscna3;False;False;[];;Dunno man, looks like we have different opinions regarding this. I find the Re:Zero light novels to be fantastic;False;False;;;;1610658218;;False;{};gj9r6tw;False;t3_kx96wn;False;False;t1_gj9qn5x;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9r6tw/;1610741548;10;True;False;anime;t5_2qh22;;0;[]; -[];;;8andahalfby11;;MAL;[];;https://myanimelist.net/animelist/thereIwasnt;dark;text;t2_kvyfg;False;False;[];;[And then it gets worse](https://www.reddit.com/r/Higurashinonakakoroni/comments/kxepn5/episode_15_dying_after_rika/);False;False;;;;1610658222;;False;{};gj9r77r;False;t3_kx96wn;False;False;t1_gj9qha5;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9r77r/;1610741556;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NBR-SUPERSTAR;;;[];;;;text;t2_130bo7rw;False;False;[];;"I NEED THERAPY! - -Seriously, I was NOT prepared for Akasaka L5ing! - -FUCK!";False;False;;;;1610658324;;False;{};gj9rggd;False;t3_kx96wn;False;False;t1_gj8vs3c;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9rggd/;1610741725;14;True;False;anime;t5_2qh22;;0;[]; -[];;;GaaraOmega;;;[];;;;text;t2_fi02o;False;False;[];;Satoko’s face is hidden in Loop 2 and in Loop 4 she’s just lying on the floor.;False;False;;;;1610658325;;False;{};gj9rgli;False;t3_kx96wn;False;True;t1_gj8vt6y;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9rgli/;1610741728;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jenthehenmfc;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/jnsparrow;light;text;t2_v5dwp;False;False;[];;The story and characters are pretty great ... the style of writing is just ... very painful to read and a slog. Aren’t they known to have bad writing? I know a lot of LN’s are just like that and the English translations aren’t always great but there are some with much better writing (Torture Princess comes to mind). I wish Re:Zero was more readable for me since I love the anime!;False;False;;;;1610658405;;False;{};gj9ro5n;False;t3_kx96wn;False;True;t1_gj9r6tw;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9ro5n/;1610741876;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;If Keiichi got an L5, it would be weird for Satoko to not get killed.;False;False;;;;1610658489;;False;{};gj9rvug;False;t3_kx96wn;False;False;t1_gj8zwte;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9rvug/;1610742032;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FireFistYamaan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4uscna3;False;False;[];;"The general consensus is that it's very well written, I actually love Nagatsukis writing style. - -But each to our own";False;False;;;;1610658499;;False;{};gj9rwtn;False;t3_kx96wn;False;False;t1_gj9ro5n;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9rwtn/;1610742053;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Surylias;;;[];;;;text;t2_kj6vc;False;False;[];;"Wow, didn't expect it to get THIS insane. This was some prime Higurashi shit. The scene transitions... wow... - -Subaru hast nothing with Rika.";False;False;;;;1610658569;;False;{};gj9s375;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9s375/;1610742173;3;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;">GHD is never mentioned or even hinted at all this season. Does it even happen? - -The hint so far was only by Kimiyoshi when he mentioned the swamp gas. Where did he learn about the gas? Is there any legend related to it being passed on?";False;False;;;;1610658672;;False;{};gj9scko;False;t3_kx96wn;False;False;t1_gj8vt6y;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9scko/;1610742352;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuyou_lilienthal_yu;;;[];;;;text;t2_74nij6hu;False;False;[];;"Thanks to Gou, I've started to read the original in manga form, (rip reboot only times ;-;) and I've gotten through all question arcs as well as Meakashi hen so now I get to feel the same surprise noticing the murder weapons in the opening shots as well as in each character's shot! - -The moment they were doing mahjong stuff I immediately thought of Akasaka and there he was! With his wife and kid no less! -So glad I read Himatsubush- *Cuts to murdered Rika* you wat? - -So we've been through four of the five loops now, right? Geeze Nekodamashi hen is shaping up to be as brutal ad Meakashi hen.. - -Also, now that I've read a lot of the original, I now have no idea who that person is in Rena's shot in the ed. as of tsumihoroboshi chapter 5, I know she wouldn't kill her own father and that person doesn't even look like him or Teppei. - -Ps. I'm totally ignoring every other comment in this thread until I finish Higurashi original";False;False;;;;1610658722;;False;{};gj9sguu;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9sguu/;1610742434;2;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;Who are people? Never saw someone mentioned that. Though to be fair, I only lurk in rewatcher thread.;False;False;;;;1610658821;;False;{};gj9sq80;False;t3_kx96wn;False;False;t1_gj8x9zs;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9sq80/;1610742597;6;True;False;anime;t5_2qh22;;0;[]; -[];;;jenthehenmfc;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/jnsparrow;light;text;t2_v5dwp;False;False;[];;I’ve seen it on twitter.;False;False;;;;1610658910;;False;{};gj9sy7k;False;t3_kx96wn;False;False;t1_gj9sq80;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9sy7k/;1610742755;4;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;"> Rika's out is allying herself with Takano. - -The thing is, the only one who knows about the L5 bioweapon are Takano and ""Tokyo"". - -If I remember correctly, Irie and Tomitake only learned about its existence in the last minute.";False;False;;;;1610659036;;False;{};gj9t9ug;False;t3_kx96wn;False;False;t1_gj8r4d8;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9t9ug/;1610742971;3;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;Ah... Twitter... Of course.;False;False;;;;1610659135;;False;{};gj9tiuq;False;t3_kx96wn;False;False;t1_gj9sy7k;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9tiuq/;1610743143;11;True;False;anime;t5_2qh22;;0;[]; -[];;;quitethewaysaway;;;[];;;;text;t2_100ag6;False;False;[];;I wish they lightened up the blood. It’s too dark. Blood is way brighter than that;False;False;;;;1610659278;;False;{};gj9tw2d;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9tw2d/;1610743389;1;True;False;anime;t5_2qh22;;0;[]; -[];;;franzinor;;;[];;;;text;t2_degwt;False;False;[];;"> He sort of did that with Umineko. (just had a character throw out the answers in like 2 lines of dialog. - -He didn't ""throw out the answer"" to the locked rooms. He expected you to try to solve them yourself. If you solve it correctly, those pieces of dialogue makes sense. If the dialogue doesn't make sense, then you go back to the drawing board and try something else until you crack it. - -I thought that was pretty brilliant writing.";False;False;;;;1610659298;;False;{};gj9ty0o;False;t3_kx96wn;False;True;t1_gj90wp4;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9ty0o/;1610743428;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Torchperish;;;[];;;;text;t2_6zo3b6hv;False;False;[];;I feel so bad for Rika...that Akasaka betrayal was too much;False;False;;;;1610659311;;False;{};gj9tz5d;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9tz5d/;1610743448;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mira0995;;MAL;[];;https://myanimelist.net/profile/Mira0995;dark;text;t2_7njxl76;False;False;[];;"Me : how are they going to put 5 loops in the next episode! Great hopes to get a second season! - -Ryukishi: you were fooled poor mortals! - -I guess everyone who was complaining about how this season doesn't have enough blood is now satisfied - - -Thoughts on the episode: - -- seeing Akana with L5 was a huge hit for me, it's literally the meaning of anyone will get it ! (I live her!) - -- no Takano this episode... Since new watchers don't really know her background and I doubt we would have enough time for it I guess she may have nothing to do with these loops - --i think the Nekodamashi is referring to Rika thinking she could free herself... I bet the fragment she found can't kill her. We still have 2 episode of this arc and another one after (from what I understand) so she will either change her mind for the 5 loops rule (but I highly doubt it) or she won't find the fragment this time/ it won't be effective. -which means in the next two episodes she will either find the true culprit or she will try to find the true weapon that could kill her. - -- what I get from this episode is that everyone is convinced that Rika knows the cure for the parasite inside their head. How told them about it ? I guess seeing worms coming out of your busy will make you think of some parasite but Why did they target Rika ? In the OG when Rena went full alien theory she read about it. Here we have everyone trying to get Rika but none said their source ! - -- the deaths occured BEFORE the festival, I don't this this HS is the oyashiro curse... It's someone else's - -- Rika was dreaming of st lucia academy. Interesting she wasn't with Satoko, I thought we would for sure have a glimpse of her friends in her happy life but we didn't - -- I'm really worried how they will put the umineko character, be it bernkastal (Which we rewatcher know about ) Featherine (who was hinted in the OP) or lambdadelta (whom umineko know about it) none of the is known for new watchers. Without a proper setting it would make them useless characters thrown in the anime. Umineko had the whole ""seeing outside the box to understand"" so far the only outside the bow we saw was the space thing with Hanyuu and no other witch was there (actually did someone check all the fragments? What if one of them had some hints?) - -- the swapping game is probably a foreshadow. But what changed ? So far everything is different. For me the obvious guess would be that the game master (Hanyuu) was swapped by someone else without us seeing it. - -- yellow still sus... - -- being Blue is suffering - -- and I the only one that thinks the animation for the whole ""loosing my mind"" is a miss... Like when kimeyoshi was on the boat it felt some animation was lacking";False;False;;;;1610659357;;False;{};gj9u3dr;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9u3dr/;1610743522;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Arisa_o7;;;[];;;;text;t2_1sidewlr;False;False;[];;I'll cry if the looper is Satoko and Rika has to use the looperkilling sword on her.;False;False;;;;1610659554;;False;{};gj9ulwq;False;t3_kx96wn;False;False;t1_gj8yzgt;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9ulwq/;1610743924;13;True;False;anime;t5_2qh22;;0;[]; -[];;;IHateRay;;;[];;;;text;t2_fp5em;False;False;[];;My knowledge of Umineko is very limited but from what I've read/seen I wouldn't be surprised if in the end we got some crossover. Makes me really want to get into it ill say that. But if what you said happens where does Takano fit in? I feel like she has to have some bigger role i dunno.;False;False;;;;1610659632;;False;{};gj9usz0;False;t3_kx96wn;False;True;t1_gj9gu1i;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9usz0/;1610744057;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ultimatesorceress;;;[];;;;text;t2_pe3mlhr;False;False;[];;Rena and K1 are smart cookies, unfortunately.;False;False;;;;1610659684;;False;{};gj9uxz8;False;t3_kx96wn;False;False;t1_gj9lagv;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9uxz8/;1610744148;17;True;False;anime;t5_2qh22;;0;[]; -[];;;NBR-SUPERSTAR;;;[];;;;text;t2_130bo7rw;False;False;[];;Subaru is playing Dark Souls while Rika is forced to play Suffering.;False;False;;;;1610659847;;False;{};gj9vd20;False;t3_kx96wn;False;False;t1_gj912o2;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9vd20/;1610744421;9;True;False;anime;t5_2qh22;;0;[]; -[];;;franzinor;;;[];;;;text;t2_degwt;False;False;[];;Auau... Don't cry. Have a creampuff, nanodesu!;False;False;;;;1610659885;;False;{};gj9vgjf;False;t3_kx96wn;False;False;t1_gj9ulwq;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9vgjf/;1610744479;11;True;False;anime;t5_2qh22;;0;[]; -[];;;8andahalfby11;;MAL;[];;https://myanimelist.net/animelist/thereIwasnt;dark;text;t2_kvyfg;False;False;[];;We still might get you-know-who in the shrine though.;False;False;;;;1610660163;;False;{};gj9w5o4;False;t3_kx96wn;False;False;t1_gj99twq;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9w5o4/;1610744941;4;True;False;anime;t5_2qh22;;0;[]; -[];;;zhujik;;;[];;;;text;t2_cu0f8;False;False;[];;It's arguable if even Umineko follows it, imho.;False;False;;;;1610660219;;False;{};gj9wao2;False;t3_kx96wn;False;False;t1_gj9deyk;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9wao2/;1610745025;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Kanturu_;;;[];;;dark;text;t2_5wni9bei;False;False;[];;"I gotta say it's quite interesting how discussions around the matter of ""best anime ever"" have increased here drastically since the last season of AoT began airing.";False;False;;;;1610660224;;False;{};gj9wb5e;False;t3_kx8sy5;False;True;t3_kx8sy5;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj9wb5e/;1610745033;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexUltraviolet;;;[];;;;text;t2_10o258l;False;False;[];;Yeah I figured out as much, it's just that I didn't watch the old anime and I played the vn without voices, so this is the first time I'm hearing the characters voiced.;False;False;;;;1610660364;;False;{};gj9wnz7;False;t3_kx96wn;False;True;t1_gj9f89y;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9wnz7/;1610745252;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Shashank_08;;;[];;;;text;t2_5jymdpqf;False;False;[];;That transition from akasaka scene, Damn;False;False;;;;1610660370;;False;{};gj9woje;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9woje/;1610745262;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Shashank_08;;;[];;;;text;t2_5jymdpqf;False;False;[];;"A doubt, - -Which thread(rewatcher or new) is considered for karma in weekly charts (fairly new here)?";False;False;;;;1610660453;;False;{};gj9wvv6;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9wvv6/;1610745385;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nsleep;;MAL;[];;https://myanimelist.net/animelist/NeverSleep;dark;text;t2_5u8vg;False;False;[];;Oh, yeah, by proper I meant a classic one. Even because there are some supernatural aspects to Higurashi and the HS definitely isn't ruled clearly enough that it allows things like this episode to exist and still make us scratch our heads.;False;False;;;;1610660513;;False;{};gj9x184;False;t3_kx96wn;False;True;t1_gj9fx1s;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9x184/;1610745490;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hell-flower;;;[];;;;text;t2_xbjz1;False;False;[];;"The Satoko theory is interesting, but the way you've presented it here relies way too much on Umineko for it to actually work in the story of Higurashi. You can't solve a mystery with information from another mystery, even if they do have a connection. If R07 made this watchable for newcomers to Higurashi, then he's not going to make Umineko a part of the solution either. This is why I'm only using info from the Higurashi Animes, and ignoring the VN. - -First of all, this couldn't be an origin story for Bernkastel, she already exists, the original Higurashi was her origin story. She's existed as an entity separate from Rika since at least Minagoroshi-hen, since we the reader have a conversation with her at the beginning. She doesn't directly call herself Frederica Bernkastel, but the narrative makes it pretty clear that this person thinks of themselves as both ""Furude Rika"" and someone that's developed separately from her. Given that Rika fully separated herself from Bern at the end of Saikoroshi-hen, and this Rika has memories of a world beyond Showa 58, she couldn't possibly be Bern. - -[Umineko](/s ""It's hard to comment on Featherine, since there's nothing concrete about her connection to Hanyuu. Just conjecture. I personally think Hanyuu is one of the many lives Featherine has lived, but with Featherine being beyond even the metaverse I think the two can co-exist. Either way I don't see how it affects my theory."") Also about the horn, Kotohogushi-hen shows Hanyuu's horn as being undamaged in her past, but again, VN content and I also can't remember right now if that arc was written by R07 or not... - -Anyway, I don't really think looking at Gou from a meta perspective is going to bring us any closer to the truth, especially since the meta doesn't really exist as a concept within the story. I also can't imagine this ending on bad note, especially given the themes of Higurashi. At its heart, Higurashi is a story about a group of friends learning to trust one another and coming together to overcome adversity and beat fate, and I can't see R07 overwriting that. - -...This post might be a bit of a mess. I have yet to sleep lmao";False;False;;;;1610660588;;False;{};gj9x887;False;t3_kx96wn;False;False;t1_gj9grgf;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9x887/;1610745613;3;True;False;anime;t5_2qh22;;0;[]; -[];;;varnums1666;;;[];;;;text;t2_kxv4z;False;False;[];;A few is confirmed.;False;False;;;;1610660669;;False;{};gj9xfof;False;t3_kx96wn;False;False;t1_gj9wao2;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9xfof/;1610745743;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zhujik;;;[];;;;text;t2_cu0f8;False;False;[];;"> Edit: another thing I just realized. GHD is never mentioned or even hinted at all this season. Does it even happen? - -GHD is initiated by Takano and the Yamainu, however, Takano and Tomitake all play a very minor role and when they don't seem to do the typical stuff. Others have theorized that the operation was cancelled or actually never started in the first place, and in one of the first episodes we saw the Irie clinic being dismantled. So I don't think its happening at all.";False;False;;;;1610660758;;False;{};gj9xnsq;False;t3_kx96wn;False;True;t1_gj8vt6y;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9xnsq/;1610745876;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Death030303;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Death3000/;light;text;t2_8l7ott9;False;False;[];;I didn’t know there was a rule that he couldn’t go L5, because didn’t Keiichi go L5 in arc 1 of the original?;False;False;;;;1610660763;;False;{};gj9xo96;False;t3_kx96wn;False;True;t1_gj8xuvx;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9xo96/;1610745884;2;True;False;anime;t5_2qh22;;0;[]; -[];;;H-Ryougi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DizzyAvocado/animelist;light;text;t2_pr24s;False;False;[];;Usually the new watchers thread, this week the threads got mixed up with the name change so idk.;False;False;;;;1610660914;;False;{};gj9y23f;False;t3_kx96wn;False;True;t1_gj9wvv6;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9y23f/;1610746128;2;True;False;anime;t5_2qh22;;0;[]; -[];;;zhujik;;;[];;;;text;t2_cu0f8;False;False;[];;or the shot of Satoko lying on the floor in Angel's Mort. Its not clear if she's really dead or not. You never see her die;False;False;;;;1610660918;;False;{};gj9y2fu;False;t3_kx96wn;False;False;t1_gj98iue;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9y2fu/;1610746135;19;True;False;anime;t5_2qh22;;0;[]; -[];;;vlntslnt;;;[];;;;text;t2_qsmu4;False;False;[];;that cut made me fucking jump and audibly gasp holy fuck I was not expecting it;False;False;;;;1610660944;;False;{};gj9y4nf;False;t3_kx96wn;False;False;t1_gj8upr1;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9y4nf/;1610746173;18;True;False;anime;t5_2qh22;;0;[]; -[];;;KYZ123;;MAL;[];;https://myanimelist.net/profile/KYZ123;dark;text;t2_ud1qb;False;False;[];;I expected it to be Shion or someone, but of course it would be Keiichi given that he's not killed anyone in the prior arcs. The dialogue was reminiscent of his fight with Rena at the end of Tsumihoroboshi, except the roles are reversed.;False;False;;;;1610660966;;False;{};gj9y6h6;False;t3_kx96wn;False;False;t1_gj9hcyd;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9y6h6/;1610746203;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;Of course, Aot imo has been reaching heights that haven't been reached by anime for around a decade. The last shows arguably, that reached similar heights imo were steins gate, death note, maybe FMAB and code geass. Just my opinion tho 🤷;False;False;;;;1610661020;;1610661692.0;{};gj9yax8;True;t3_kx8sy5;False;True;t1_gj9wb5e;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gj9yax8/;1610746281;1;True;False;anime;t5_2qh22;;0;[]; -[];;;8andahalfby11;;MAL;[];;https://myanimelist.net/animelist/thereIwasnt;dark;text;t2_kvyfg;False;False;[];;In the original he did, in this one he either didn't, or we didn't get evidence of it. Either way, he was in a recoverable position. In this one, he is in a non-recoverable state.;False;False;;;;1610661173;;False;{};gj9ymgl;False;t3_kx96wn;False;False;t1_gj9xo96;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9ymgl/;1610746494;5;True;False;anime;t5_2qh22;;0;[]; -[];;;KYZ123;;MAL;[];;https://myanimelist.net/profile/KYZ123;dark;text;t2_ud1qb;False;False;[];;Honestly, it could just be Satoko having killed in Onidamashi, it wouldn't entirely surprise me. Watadamashi aside, we've had Rena, Ooishi, Akasaka, Akane, Kimiyoshi, and Keiichi in a row go L5 and murderous, so Satoko on that list wouldn't seem all that out of place, save for that it would make two known L5s in one loop as opposed to just the one.;False;False;;;;1610661308;;False;{};gj9yx4h;False;t3_kx96wn;False;True;t1_gj8r4d8;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9yx4h/;1610746699;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;True;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610661744;moderator;False;{};gj9zu04;False;t3_kx96wn;False;False;t1_gj9gu1i;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9zu04/;1610747341;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;True;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610661750;moderator;False;{};gj9zuhk;False;t3_kx96wn;False;True;t1_gj9grgf;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gj9zuhk/;1610747350;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vlntslnt;;;[];;;;text;t2_qsmu4;False;False;[];;"I feel like this episode was made to shut everyone up who said Gou was too tame compared to the OG, or new watchers who said this wasn't a horror anime like they were expecting. - - - -IS THIS WHAT YOU WANTED? IS IT???";False;False;;;;1610662138;;False;{};gja0n7z;False;t3_kx96wn;False;False;t1_gj8u060;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gja0n7z/;1610747948;27;True;False;anime;t5_2qh22;;0;[]; -[];;;nsleep;;MAL;[];;https://myanimelist.net/animelist/NeverSleep;dark;text;t2_5u8vg;False;False;[];;But what if he had a clock in his pocket?;False;False;;;;1610662277;;False;{};gja0xgz;False;t3_kx96wn;False;False;t1_gj9i7tz;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gja0xgz/;1610748173;17;True;False;anime;t5_2qh22;;0;[]; -[];;;vlntslnt;;;[];;;;text;t2_qsmu4;False;False;[];;first time a scene in Gou made me physically jump, really well executed scare when we haven't had anything like that up to this point;False;False;;;;1610662300;;False;{};gja0z2r;False;t3_kx96wn;False;False;t1_gj8tnmi;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gja0z2r/;1610748206;10;True;False;anime;t5_2qh22;;0;[]; -[];;;KYZ123;;MAL;[];;https://myanimelist.net/profile/KYZ123;dark;text;t2_ud1qb;False;False;[];;"Okay, we've had nearly everyone of vague importance go L5 now. Rena, probably Mion/Shion, Ooishi, Akasaka, Akane, Kimiyoshi, and Keiichi, in that order. - -The obvious question is who's going L5 next. Given that it's thus far been someone that Rika would go to for help, I'd bet on that. Satoko, or is she part of some deeper plot? Is it finally Mion's time to go L5? I'd say Tomitake, but honestly, he does that most of the time anyway, he just doesn't kill anyone except himself. Irie seems like someone Rika would go to for help, she did in Matsuribayashi after all, so my bet's on him. - -I feel like the next two episodes are going to be Rika's fifth death of this arc, but reveal the villain and give her enough hope to try one more time, similar to how she tries again after Minagoroshi for Matsuribayashi despite saying she wouldn't.";False;False;;;;1610662326;;False;{};gja112a;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gja112a/;1610748244;2;True;False;anime;t5_2qh22;;0;[]; -[];;;vlntslnt;;;[];;;;text;t2_qsmu4;False;False;[];;it almost makes me wonder if Keiichi actually *has* gone L5 or close in a previous arc but we were misled into seeing it from a different, unreliable perspective. I mean honestly everyone who goes L5 in this episode feels random but with Keiichi it feels SUPER weird and out of place;False;False;;;;1610662515;;False;{};gja1f3h;False;t3_kx96wn;False;False;t1_gj8xuvx;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gja1f3h/;1610748521;7;True;False;anime;t5_2qh22;;0;[]; -[];;;lookw;;;[];;;;text;t2_floum;False;False;[];;"you are right. interesting. - -i think that means even the censors are part of the mystery. Anything censored is not what really happened in terms of injuries (we cant see keiichis torso when Rena was stabbing him due to censored but in the morning his shirt isnt even torn.)";False;False;;;;1610662621;;False;{};gja1mnq;False;t3_kx96wn;False;True;t1_gj9qbbk;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gja1mnq/;1610748675;3;True;False;anime;t5_2qh22;;0;[]; -[];;;electric_anteater;;;[];;;;text;t2_ocq5m;False;False;[];;How the fuck are Kimiyoshi and Keichi obscure?;False;False;;;;1610663086;;False;{};gja2kw7;False;t3_kx96wn;False;False;t1_gj9hcyd;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gja2kw7/;1610749349;14;True;False;anime;t5_2qh22;;0;[]; -[];;;ultimatesorceress;;;[];;;;text;t2_pe3mlhr;False;False;[];;There’s no real confirmation that this version of Takano is much at all like the original loop’s version.;False;False;;;;1610663309;;False;{};gja319f;False;t3_kx96wn;False;False;t1_gj9hm7z;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gja319f/;1610749653;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Sowhateverisayman;;;[];;;;text;t2_3zd9dbr6;False;False;[];;"This might just be me but... - -Did the animation quality seem really off to anyone else? I hate to be that person, but there were a ton of scenes this episode where I got distracted by weird animation :( - -It kind of ruined the emotional impact for me, a few times. - -I'm not talking about people looking crazy or spooky, some scenes just looked sort of...low quality? I haven't noticed anything like this in other episodes of Gou, though.";False;False;;;;1610663483;;False;{};gja3e44;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gja3e44/;1610749901;1;True;False;anime;t5_2qh22;;0;[]; -[];;;janoDX;;;[];;;;text;t2_bowtb;False;False;[];;"The rest of Higurashi is a f\*\*king Disney movie compared to this episode. Borderline torture-porn. - -&#x200B; - -Gj Passione, gj Ryu07.";False;False;;;;1610663957;;False;{};gja4c76;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gja4c76/;1610750555;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dinghyattack;;;[];;;;text;t2_ejira;False;False;[];;lmfaooooo;False;False;;;;1610664884;;False;{};gja67q5;False;t3_kx96wn;False;True;t1_gj8wyw5;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gja67q5/;1610751822;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Grelp1666;;;[];;;;text;t2_3nnfv5cw;False;False;[];;Because Zero is more popular. Technically neither does anything new, this kind of time loop + gore/violence are a staple of the genre of scify time travel but both have their own merits and are entertaining.;False;False;;;;1610665056;;False;{};gja6ka0;False;t3_kx96wn;False;False;t1_gj8x9zs;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gja6ka0/;1610752055;10;True;False;anime;t5_2qh22;;0;[]; -[];;;firathjfrancis;;;[];;;;text;t2_9aun74n5;False;False;[];;"Like honestly.. I understand the purpose of the episode is to make us realize how though it is for Rika to loop endlessly and being betrayed by everyone, but... it feels really ""cheap"". I know most people will shoot me for saying this but at least on the first version, we could see each character slowly succumb to Hinamizawa Syndrom, whereas in this series it feels off, less consistent, more bloody... A bit disappointed to be honest.";False;False;;;;1610665057;;False;{};gja6kbr;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gja6kbr/;1610752058;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mana_Croissant;;;[];;;;text;t2_30m68690;False;False;[];;Rika: AWESOME, My Saviour has finally returned, He is the one person (maybe other than Mion) I can fully trust to support me and Not get the Syndrome, I am as good as save...... AKASAKA WHAT THE FUCK;False;False;;;;1610665406;;False;{};gja7959;False;t3_kx96wn;False;False;t1_gj97d2u;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gja7959/;1610752527;44;True;False;anime;t5_2qh22;;0;[]; -[];;;Mana_Croissant;;;[];;;;text;t2_30m68690;False;False;[];;">if Rika's out is allying herself with Takano. - -That part is What bothers me the most. I mean This is like a sequel right ? and Rika is supposed to know Who her killer was so She REMEMBERS Takano but She did not try to do ANYTHING against Takano at all. All She did was trying to have her classmates not get insane from the Syndrome but Even If they didn't Takano would still kill Rika for her own end right ? I don't know Why Rika did not focus on Takano or at least tried to talk to her at all";False;False;;;;1610665618;;False;{};gja7o15;False;t3_kx96wn;False;True;t1_gj8r4d8;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gja7o15/;1610752806;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dolphin_handjobs;;;[];;;;text;t2_7kc68;False;False;[];;When she skips to the result the victim doesn't know what happened though. Rika seemed resigned and aware of her fate in each quick loop with no sign of confusion.;False;False;;;;1610666345;;False;{};gja93kv;False;t3_kx96wn;False;False;t1_gj9hbvg;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gja93kv/;1610753777;5;True;False;anime;t5_2qh22;;0;[]; -[];;;UnknownWorldMap;;;[];;;;text;t2_8fa1wnup;False;False;[];;I NEVER thought I'd say that, but I kinda miss Higurashi Kira now...;False;False;;;;1610666455;;False;{};gja9b9v;False;t3_kx96wn;False;False;t1_gj8rpmu;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gja9b9v/;1610753931;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Dolphin_handjobs;;;[];;;;text;t2_7kc68;False;False;[];;It definitely doesn't. There is an obvious supernatural entity and the Tokyo group provides a 'Chinaman'.;False;False;;;;1610666494;;False;{};gja9e1f;False;t3_kx96wn;False;False;t1_gj9deyk;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gja9e1f/;1610753982;5;True;False;anime;t5_2qh22;;0;[]; -[];;;TheExcludedMiddle;;;[];;;;text;t2_6n8kp;False;False;[];;I wouldn't be surprised if we don't see her, Tomitake, or Irie for the rest of the series, to try and keep it 'newcomer friendly'.;False;False;;;;1610666534;;False;{};gja9gw7;False;t3_kx96wn;False;True;t1_gj8wdfg;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gja9gw7/;1610754039;3;True;False;anime;t5_2qh22;;0;[]; -[];;;joseto1945;;;[];;;;text;t2_819on36;False;False;[];;I missread that really badly;False;False;;;;1610666659;;False;{};gja9pn0;False;t3_kx96wn;False;False;t1_gj8uobn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gja9pn0/;1610754206;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Igoory;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/pissolati;light;text;t2_40n0ldkg;False;False;[];;Me too, me too...;False;False;;;;1610666745;;False;{};gja9vl5;False;t3_kx96wn;False;True;t1_gja9b9v;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gja9vl5/;1610754321;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Endless-Sorcerer;;;[];;;;text;t2_13sj4l;False;False;[];;"That might be intentional if someone is deliberately infecting them or triggering the symptoms. - -IIRC, the next arc is a long one so I figure it will probably contain a few flashbacks to previous scenarios from the POV of the other looper to help explain things.";False;False;;;;1610666751;;False;{};gja9w11;False;t3_kx96wn;False;False;t1_gja6kbr;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gja9w11/;1610754329;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Igoory;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/pissolati;light;text;t2_40n0ldkg;False;False;[];;Happy cake day!;False;False;;;;1610666783;;False;{};gja9y8v;False;t3_kx96wn;False;True;t1_gj8xsf3;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gja9y8v/;1610754371;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Igoory;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/pissolati;light;text;t2_40n0ldkg;False;False;[];;The last stage of the Higurashi disease;False;False;;;;1610666846;;False;{};gjaa2r2;False;t3_kx96wn;False;False;t1_gj9lsuj;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjaa2r2/;1610754461;2;True;False;anime;t5_2qh22;;0;[]; -[];;;solopy567;;;[];;;;text;t2_tdxs3;False;False;[];;"Opinions are not facts. If the other person tries to construe their personal opinion on a show regardless of how well received it is by others as a fact, they're a shitty person who thinks they're better than everyone else. - -Just like people have the right to like something, others have the right to dislike the same thing. Anime is art at the end of the day, and when it comes to *interpretation* of art, there is *no* right answer. There is no objectivity, and anyone who says otherwise is full of themselves. - -You're allowed to like whatever you want for any reason, just like everybody else. You can say your favorite anime is the best, but that's your *opinion*, just like I can say your favorite anime is pure trash. People are allowed to think your favorite anime is the worst anime ever made for the exact same reasons you said it was the best. This is the nature of opinions and discussions. We can agree to disagree on this. If either one of us tries to claim our personal opinion is a fact, then it's a dick move. - -It's *extremely* important to understand how to properly present your opinion. If you try to flex or lord your favorite over others, you are more inclined to make them hate you *and* the show in question just because of your attitude. This is something fandoms of popular anime don't seem to completely understand. Despite popular belief, the manner by which something is presented to you very much affects your opinion of it. It's impossible to separate that first impression afterwards. You are more inclined to check out something that is presented to you in a way that speaks to you rather than by having it shoved down your throat every 2 minutes.";False;False;;;;1610667367;;1610668432.0;{};gjab3cr;False;t3_kx8sy5;False;True;t3_kx8sy5;/r/anime/comments/kx8sy5/is_okay_to_think_your_favorite_anime_is_the_best/gjab3cr/;1610755155;1;True;False;anime;t5_2qh22;;0;[]; -[];;;skyyohhs;;;[];;;;text;t2_3sbllrar;False;False;[];;What’s GHD?;False;False;;;;1610667536;;False;{};gjabf8u;False;t3_kx96wn;False;True;t1_gj94x91;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjabf8u/;1610755367;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DewyHQ;;;[];;;;text;t2_tziyp;False;False;[];;"When I saw Akasaka, I was like ""oh shit we got a bro on the team now."" Smash cut to thr scene. ""Ah fuck, we're speedrunning these loops, aren't we?"" - -100% the most ""Impactful"" scene was K1's L5 loop. I'm not an expert on Higarashi but that one hurt. :(";False;False;;;;1610667577;;False;{};gjabi15;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjabi15/;1610755417;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Igoory;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/pissolati;light;text;t2_40n0ldkg;False;False;[];;Well... I can understand someone not knowing what's L5, because I myself, even though I watched the anime, had forgot about it and I only remembered when I read about it here;False;False;;;;1610667699;;False;{};gjabqj3;False;t3_kx96wn;False;False;t1_gj9ndxd;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjabqj3/;1610755568;4;True;False;anime;t5_2qh22;;0;[]; -[];;;firathjfrancis;;;[];;;;text;t2_9aun74n5;False;False;[];;Nevertheless, whether they got inflicted with it or not, I just didn't like this episode. It doesn't make the story progress and Rika (thanks to her seiyu) was already good at showing how desperate she was... this bloody episode was unnecessary to me, it's just for the sake of TV audience. But yeah, hopefully the next arc will be more interesting.;False;False;;;;1610667941;;False;{};gjac78g;False;t3_kx96wn;False;True;t1_gja9w11;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjac78g/;1610755900;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KendotsX;;;[];;;;text;t2_j6nbtko;False;False;[];;"This is one of the most beautiful things I've ever seen. - -I feel the need for some sort of movie compilation of all the bad ends in Higurashi.";False;False;;;;1610668053;;1610675214.0;{};gjacf7g;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjacf7g/;1610756051;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Igoory;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/pissolati;light;text;t2_40n0ldkg;False;False;[];;At first I thought this was a flashback or something like this because of the flashback about his wife that was shown previously :(;False;False;;;;1610668194;;False;{};gjacozs;False;t3_kx96wn;False;False;t1_gj8tnmi;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjacozs/;1610756229;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Aska09;;;[];;;;text;t2_1ey90z6n;False;False;[];;"I dread the day we actually see Mion go insane - -The last bastion of sanity, I don't wanna see it fall to ruin";False;False;;;;1610668300;;False;{};gjacw8u;False;t3_kx96wn;False;False;t1_gja7959;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjacw8u/;1610756359;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Igoory;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/pissolati;light;text;t2_40n0ldkg;False;False;[];;wow.. this last thing that you said may be a very important clue, because I was thinking why they would show Keiichi breaking into the fire just to cut in the middle, but makes sense if the important action wasn't he breaking into the fire, but just he trying to do something, like everyone in the others loops.;False;False;;;;1610668459;;False;{};gjad7hh;False;t3_kx96wn;False;True;t1_gj8xuvx;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjad7hh/;1610756573;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Flare_Knight;;;[];;;;text;t2_v5stf;False;False;[];;How the fuck isn’t Kimiyoshi obscure? He barely makes an appearance in the arcs and even when he does show up he’s a minor character in the overall story. You couldn’t get more obscure without using someone who barely shows up ever like Keiichi’s father.;False;False;;;;1610668660;;False;{};gjadlfy;False;t3_kx96wn;False;False;t1_gja2kw7;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjadlfy/;1610756826;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Aska09;;;[];;;;text;t2_1ey90z6n;False;False;[];;"The part with Akasaka was pure pain. Other timelines in the episode didn't hurt nearly as much as watching someone Rika placed so much faith in also succumb to the Syndrome. - -After this much randomness, I wouldn't be surprised if Takano *saved* Rika this time";False;False;;;;1610668839;;False;{};gjady4e;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjady4e/;1610757054;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Anemone_Flaccida;;;[];;;;text;t2_34bnb8;False;False;[];;Kasai wasn't even introduced this time around, so I doubt he's going to be relevant;False;False;;;;1610669315;;False;{};gjaeuyd;False;t3_kx96wn;False;False;t1_gj9bd65;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjaeuyd/;1610757647;5;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheRantMan321;light;text;t2_efp1aj;False;False;[];;"I'm not sure how I feel about this episode. It feels like the author realized that gou was lacking in the horror vibes of the original, so he made a montage to catch the audiences attention. - -The original higurashi wasn't amazing because of the gore. It was great because of the masterful suspense and thriller. It's one of the few genuinely good horror anime out there. It didn't rely on jump scares and gore to scare people. - -Yes it had a lot of gore, but it wasn't shoved in our faces. It was the climax of the mystery being revealed. - -This episode isn't bad, but i'm not as gung ho as many others. - -I understand the point of this episode is to show rika's mental state deteriorating, but the OG did the exact same thing better. - -And i'm not even acknowledging Kai. Kai is just the icing on the cake that amplifies the originals quality. - -Maybe Gou will get it's own Kai after this season ends?";False;False;;;;1610669620;;False;{};gjaffyb;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjaffyb/;1610758031;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mrtheliger;;;[];;;;text;t2_11ghbg;False;False;[];;"Okay I think I can talk about it now. - -How the fuck is this gonna get resolved without a second season? Takano and Tomitake have gotten no expansion on what they're doing in these worlds, we haven't had a single Answer arc to explain to the new watchers what the fuck is actually going on, and there is only one more arc after this. - -Unless Rika literally speedruns the next two episodes by finding out who is causing this, how she can stop them, who can help her, and then defeating them all in one try it just doesn't seem possible to me. I see some people thinking she'll go to Takano for help, but going to Takano and then resolving everything would then defeat the purpose of Ryukishi specifically showing us that she and Tomitake are running away from Hinamizawa after Watanagashi. - -Not to mention she hasn't tried Irie or Satoko yet, two of the only people who haven't gone L5 in any of these worlds. I suppose if she goes to Satoko for help and it turns out Satoko *is* the mastermind that would be one simple way of getting the ball rolling. Also gotta point out that Shion has been very absent recently. - -I'd also like to praise Daisuke Ono again, because goddamn his performance in this episode was so amazing. Outstanding and I'm curious to see if Akasaka shows up again now that he's been established, and whether Rika relies on him at all if he does.";False;False;;;;1610669784;;False;{};gjafr8q;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjafr8q/;1610758227;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheRantMan321;light;text;t2_efp1aj;False;False;[];;"Same man. - -Gou kept Keiichi reletiviley sane throughout the entire season so far. - -He survived all of the events, and has only succumbed to the parasites once; in satakos arc vs her ""uncle"". - -I was caught off guard when keiichi finally became the killer. - -Also his kills where the most brutal by far. Watching their eyes burst out of their sockets, while their head deforms like a ball was uncomfortable. Gives me OG higurashi death vibes. - -Also it seems like the climaxes are happening earlier than the fated date? Seems like something is causing the deaths to speed up; maybe because rika is on the verge of giving up?";False;False;;;;1610669847;;False;{};gjafvmb;False;t3_kx96wn;False;False;t1_gj8v3ks;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjafvmb/;1610758305;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Guaymaster;;;[];;;;text;t2_7s5u9;False;False;[];;mRNA is a rather new method, and it happens to be the one being used for COVID19 vaccines. Or at least for Biontech-Pfizer, not actually sure about the others.;False;False;;;;1610669871;;False;{};gjafxbe;False;t3_kx9qo8;False;False;t1_gjadm2i;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjafxbe/;1610758336;18;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheRantMan321;light;text;t2_efp1aj;False;False;[];;Rena is only powerful when she succumbs to the parasites IIRC.;False;False;;;;1610669887;;False;{};gjafydi;False;t3_kx96wn;False;True;t1_gj90xg7;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjafydi/;1610758354;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheRantMan321;light;text;t2_efp1aj;False;False;[];;Seems like real life cops;False;False;;;;1610670042;;False;{};gjag97a;False;t3_kx96wn;False;False;t1_gj9i7tz;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjag97a/;1610758547;8;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheRantMan321;light;text;t2_efp1aj;False;False;[];;"I'm still actively against the satako ""looper"" theory. However, knowing Ryu, anything can happen.";False;False;;;;1610670090;;False;{};gjagch3;False;t3_kx96wn;False;True;t1_gj8va5a;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjagch3/;1610758605;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheRantMan321;light;text;t2_efp1aj;False;False;[];;"This montage of deaths isn't what I liked about the OG higurashi though. - -It was the excellent build of suspense in terrifying mysteries. - -The OG higurashi is fantastic for it's great horror, and intriguing thriller. - -The insane deaths where just icing on the cake";False;False;;;;1610670351;;False;{};gjaguua;False;t3_kx96wn;False;False;t1_gj9eej8;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjaguua/;1610758932;2;True;False;anime;t5_2qh22;;0;[]; -[];;;alphamone;;;[];;;;text;t2_myfbn;False;False;[];;"Saw that ""holy fuck"" was the top of both threads, this is gonna be great. - -Never really managed to figure out mahjong (not that I ever really made any huge effort) - -Also, Akasaka-san. - -And a timeline in which his wife was saved. - -Head tilt. - -DA FUK? Akasaka... - -Kimiyoshi there probabbly gotten closest to the deranged animation of the original that any other ""freak out"" scene we've seen so far in this series. - -goddamn K1. - -Eye flashes when talking about parasites... I really need to rewatch Stargate at some point. - -holy umineko reference batman";False;False;;;;1610670435;;False;{};gjah0oa;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjah0oa/;1610759038;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Igoory;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/pissolati;light;text;t2_40n0ldkg;False;False;[];;What is this?;False;False;;;;1610670563;;False;{};gjah9l7;False;t3_kx96wn;False;True;t1_gj94bde;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjah9l7/;1610759197;0;True;False;anime;t5_2qh22;;0;[]; -[];;;iBlackChicken;;;[];;;;text;t2_qi9yyua;False;True;[];;When did Reddit have a live feature of people commenting;False;False;;;;1610670591;;False;{};gjahbhe;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjahbhe/;1610759233;1;True;False;anime;t5_2qh22;;0;[]; -[];;;linkman0596;;;[];;;;text;t2_dknd9;False;False;[];;"Because without her friends, she stands no chance against Takano. Plus, they're her friends, she kinda wants them to be alive when it's all over, we never got any sort of ""I hate to be back but it's nice to see them again"" so they might all still be friends in her future as well and she wouldn't want to lose any of them like that";False;False;;;;1610670629;;False;{};gjahe50;False;t3_kx96wn;False;False;t1_gja7o15;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjahe50/;1610759283;5;True;False;anime;t5_2qh22;;0;[]; -[];;;In_Tr1gued;;;[];;;;text;t2_4d8bftc9;False;False;[];;Rika was just sitting there like Tf is going on 0_0;False;False;;;;1610670652;;False;{};gjahfq6;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjahfq6/;1610759311;1;True;False;anime;t5_2qh22;;0;[]; -[];;;linkman0596;;;[];;;;text;t2_dknd9;False;False;[];;Could it be possible that these loops follow timelines where Hanyuu did go back and save Takano's parents?;False;False;;;;1610670721;;False;{};gjahkhc;False;t3_kx96wn;False;True;t1_gja319f;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjahkhc/;1610759400;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mastesargent;;;[];;;;text;t2_rfk6u;False;False;[];;I think it’s worth noting that a lot of the info surrounding Hinamizawa Syndrome is pretty unreliable, especially regarding the Queen Carrier. Rena, for example, left Hinamizawa but only showed symptoms when her parents’ marriage started falling apart. Rika gets killed by Shion in Watanagashi/Meakashi timelines yet there never seems to be a mass outbreak. It seems more like the Queen Carrier was something Takano made up to explain away holes in her theories. I don’t think the events of Gou have anything to do with Rika’s alleged role as the Queen Carrier, but rather something we haven’t been made aware of yet.;False;False;;;;1610670834;;False;{};gjahs8y;False;t3_kx96wn;False;False;t1_gj9277j;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjahs8y/;1610759553;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Igoory;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/pissolati;light;text;t2_40n0ldkg;False;False;[];;One thing that I find strange is that it was shown that the actions of Keiichi was also influenced by him remembering things from others time lines, so maybe he isn't the only one, and this is also common to everyone else, like the culprit.;False;False;;;;1610670857;;False;{};gjahttv;False;t3_kx96wn;False;False;t1_gj99w3j;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjahttv/;1610759584;4;True;False;anime;t5_2qh22;;0;[]; -[];;;linkman0596;;;[];;;;text;t2_dknd9;False;False;[];;That image wasn't too gruesome, so I'm betting it'll end up being a meme before too long;False;False;;;;1610670921;;False;{};gjahyby;False;t3_kx96wn;False;True;t1_gj8yge5;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjahyby/;1610759666;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Viruin;;;[];;;;text;t2_3u0d6vr;False;False;[];;Man that escalated quickly,.......though I laughed my ass off in that scene when she said can you finish your monologue after tossing me into the swamp.....no cause your breath stinks.....;False;False;;;;1610671150;;False;{};gjaie2i;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjaie2i/;1610759942;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Igoory;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/pissolati;light;text;t2_40n0ldkg;False;False;[];;I don't know anything about her but someone said that this can't be true because her powers also leaves the person confused and Rika didn't look confused in any of the loops.;False;False;;;;1610671182;;False;{};gjaig9l;False;t3_kx96wn;False;True;t1_gj9ihli;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjaig9l/;1610759982;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Viruin;;;[];;;;text;t2_3u0d6vr;False;False;[];;Well played ryukishi;False;False;;;;1610671211;;False;{};gjaiic5;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjaiic5/;1610760018;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Igoory;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/pissolati;light;text;t2_40n0ldkg;False;False;[];;At least it's not pink;False;False;;;;1610671304;;False;{};gjaiox7;False;t3_kx96wn;False;True;t1_gj9tw2d;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjaiox7/;1610760130;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Endless-Sorcerer;;;[];;;;text;t2_13sj4l;False;False;[];;">How the fuck is this gonna get resolved without a second season? - -I'm assuming that once the other looper (assuming they exist) is revealed, we'll see a few scenes from the previous scenarios from their POV when Rika confronts them, they go into a motive rant or we learn of their tragic backstory. - -Ultimately, we don't know if the sword's fragments are actually capable of killing her (meaning she may not actually be able to escape) and it's quite possible that she'll learn of the other looper at the end of this arc (prompting her to continue now that the enemy is known).";False;False;;;;1610671324;;False;{};gjaiqda;False;t3_kx96wn;False;False;t1_gjafr8q;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjaiqda/;1610760156;6;True;False;anime;t5_2qh22;;0;[]; -[];;;pettyhoney;;;[];;;;text;t2_103u2o;False;False;[];;The way this is going, it’s making me wonder if Rika surviving through that one timeline in Kai was god’s way of popping in one “It’s not unusual” among 21 plays of “what’s new pussycat.”;False;False;;;;1610671602;;False;{};gjaja4f;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjaja4f/;1610760503;1;True;False;anime;t5_2qh22;;0;[]; -[];;;slyguy183;;;[];;;;text;t2_3296x;False;False;[];;"L5 is the final stage of the ""Hinamizawa Virus"" that causes psychosis and the sensation of an itchy throat where the victim goes on a murderous spree and eventually dies of scratching their throat off";False;False;;;;1610671849;;False;{};gjajrgo;False;t3_kx96wn;False;False;t1_gjabqj3;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjajrgo/;1610760812;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Z000Burst;;;[];;;;text;t2_10dtxk;False;False;[];;"think of it like Xcom and running into a near dead alien, have a unit tag the thing and bring it corpse back for autopsy and develope new tech to fight against it - -and then you run into the full health version and waste it easy";False;False;;;;1610672114;;False;{};gjaka3z;False;t3_kx9qo8;False;False;t1_gja7639;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjaka3z/;1610761141;15;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;I believe Moderna uses the same method. Astrazenica uses the regular way.;False;False;;;;1610672196;;False;{};gjakfwe;False;t3_kx9qo8;False;False;t1_gjafxbe;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjakfwe/;1610761242;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Jamgreitor;;;[];;;;text;t2_b4avuls;False;False;[];;I'm glad to hear S2 continues to be accurate!;False;False;;;;1610672358;;False;{};gjakr6l;False;t3_kx9qo8;False;True;t1_gj9jwwn;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjakr6l/;1610761447;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AltF4z_;;;[];;;;text;t2_4i99r19m;False;False;[];;That shit went from 0 to 100 soo fucking quick;False;False;;;;1610672504;;False;{};gjal1it;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjal1it/;1610761631;1;True;False;anime;t5_2qh22;;0;[]; -[];;;To-the-Morrow;;;[];;;;text;t2_4wbl3w37;False;False;[];;Great Hinamizawa Disaster;False;False;;;;1610672573;;False;{};gjal676;False;t3_kx96wn;False;False;t1_gjabf8u;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjal676/;1610761715;6;True;False;anime;t5_2qh22;;0;[]; -[];;;AsuraDeo;;;[];;;;text;t2_905i8ltp;False;False;[];;"Re Zero is looking to be pretty good. Especially if you read the novels. - -No shit, Higurashi as been longer. That doesn't mean it is better.";False;False;;;;1610672839;;False;{};gjaloev;False;t3_kx96wn;False;True;t1_gj8x9zs;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjaloev/;1610762071;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Ghost_Rider_LSOV;;;[];;;;text;t2_herrd;False;False;[];;Black first, then this and finally Yuru Camp. So I end it with wholesomeness and comf.;False;False;;;;1610672845;;False;{};gjaloul;False;t3_kx9qo8;False;False;t1_gj95gtr;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjaloul/;1610762080;3;True;False;anime;t5_2qh22;;0;[]; -[];;;optimalobliteration;;;[];;;;text;t2_bc7uhf9;False;False;[];;I think Hanyuu is pretty suspicious too. Setting aside Umineko, Hanyuu did say that she was just a 'shard/fragment' of the original. It doesn't seem like she's our original Hanyuu... I also have a sneaking suspicion that this next episode might open with Rika waking up at St. Lucia as a teenager after wishing to go back so desperately this episode. I'm sure when that happens, she'll probably end up killed by someone random again...;False;False;;;;1610672848;;False;{};gjalp20;False;t3_kx96wn;False;False;t1_gj94a01;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjalp20/;1610762083;6;True;False;anime;t5_2qh22;;0;[]; -[];;;VritraReiRei;;ann;[];;;dark;text;t2_b9elz;False;False;[];;Yeah, I figured as much given by the analogy the Anime presents. I just didn't think that was an actually solution we have achieved.;False;False;;;;1610672850;;False;{};gjalp61;False;t3_kx9qo8;False;False;t1_gjaka3z;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjalp61/;1610762086;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610672966;;False;{};gjalx6e;False;t3_kx96wn;False;True;t1_gj9ro5n;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjalx6e/;1610762227;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;moybull;;;[];;;;text;t2_wfco3w0;False;False;[];;You're right but maybe that flashback was from Rika's POV?;False;False;;;;1610672997;;False;{};gjalza2;False;t3_kx96wn;False;False;t1_gj90oty;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjalza2/;1610762269;6;True;False;anime;t5_2qh22;;0;[]; -[];;;patrizl001;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/patrizl001;light;text;t2_jcz8m;False;False;[];;Rika remembers her deaths now, aaaaaaaand immediately the killings become worse. Great job, Hanyuu!;False;False;;;;1610673033;;False;{};gjam1n8;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjam1n8/;1610762308;5;True;False;anime;t5_2qh22;;0;[]; -[];;;jenthehenmfc;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/jnsparrow;light;text;t2_v5dwp;False;False;[];;I was kinda grouping the Higurashi and Umineko VN’s together in regards to showing Ryukishi’s writing skill, tbh. The fact it’s been around longer just makes it odd people are acting like Higurashi is mimicking re:zero to be mistaken. I’m in no way saying that re:zero isn’t good - I like it a lot!;False;False;;;;1610673079;;False;{};gjam4p0;False;t3_kx96wn;False;False;t1_gjaloev;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjam4p0/;1610762362;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ultimatesorceress;;;[];;;;text;t2_pe3mlhr;False;False;[];;Probably not—her name’s still Takano—though that doesn’t mean her backstory is necessarily the same.;False;False;;;;1610673197;;False;{};gjamcql;False;t3_kx96wn;False;False;t1_gjahkhc;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjamcql/;1610762519;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610673241;;False;{};gjamfqa;False;t3_kx96wn;False;True;t1_gj8vi5f;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjamfqa/;1610762573;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610673317;;False;{};gjamkwq;False;t3_kx96wn;False;True;t1_gj912o2;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjamkwq/;1610762664;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;jenthehenmfc;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/jnsparrow;light;text;t2_v5dwp;False;False;[];;The English LN’s are riddled with run-on sentences with too many commas, split infinitives, and the awkward rambling train-of-thought style that plagues most LN’s. It really does hurt the readability, and to be fair, it may just be a translation issue. I never criticized the story / plot. It’s definitely one of the strongest Isekai stories, and I love the anime. Calm down with the personal attacks, I’m not insulting any blue haired waifus here 😂;False;False;;;;1610673398;;False;{};gjamqk0;False;t3_kx96wn;False;True;t1_gjalx6e;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjamqk0/;1610762765;0;True;False;anime;t5_2qh22;;0;[]; -[];;;kiernand066;;;[];;;;text;t2_21ro3e5t;False;False;[];;"THIS EPISODE... - -I let my defence down when I saw Akasaka... The cut to Rika really caught me off guard, it’s probably the first scene of gou I found genuinely unsettling. - -Also we sure see the back of Satoko’s head a lot huh... I’m still on the Satoko sus train.";False;False;;;;1610674145;;False;{};gjao5jj;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjao5jj/;1610763693;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheRantMan321;light;text;t2_efp1aj;False;False;[];;"The first half was pretty weak but the second half was hilarious! - -Decent episode overall. It's fun watching this after code black; jumping from depression to joy";False;False;;;;1610674488;;False;{};gjaotc7;False;t3_kx9qo8;False;True;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjaotc7/;1610764141;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheRantMan321;light;text;t2_efp1aj;False;False;[];;"I watch black first, because I like to watch the best anime of the day first. Then mellow it down with the weaker ones. - -Also CAW cheers me up after a depressing Code black episode";False;False;;;;1610674550;;False;{};gjaoxmc;False;t3_kx9qo8;False;True;t1_gj95gtr;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjaoxmc/;1610764217;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ladypixelchu;;;[];;;;text;t2_1qo407a0;False;False;[];;"Imo, its more of showing us this is more torture amusement for someone than the original curse. I feel like that was the point of this episode. Another fact as a lot of people are stating is that these deaths happen before the festival proving that this isn't the same curse. Either way, everyone she either super trusted/every timeline she studied are not happening. It's almost like the first half was to throw Rika off guard until she was able to retain memories and now, she can retain every bit of torture unlike before where she would just reset, a misery almost that Hanyuu gave her. Now, idk if that was really Hanyuu at her departure. That whole scene felt off and I think it was on purpose. Everything Rika put trust/hope into is now gone besides a certain someone. Someone who hasn't gone L5 and we all know who that is. :) Going based off the last episode of OG, I feel like something will give Rika hope. Whoever stops her from giving up aka killing herself and that will be the crux in the current looper/Featherine's plan, maybe said looper turns on said Featherine and sides with Rika in the end all bc of the power of friendship and hope that beats all odds....or this truly is a bad end and there is no happy ending for Rika and thus we see her be born into thing she would of become if it had not been for K1&friends and Hanyuu. Yes, I agree. Nothing will top the OG. But, this is on par for me as a sequel like Kira. I'd be pretty amusing if I am right on either of these.";False;False;;;;1610674954;;1610675665.0;{};gjappk7;False;t3_kx96wn;False;True;t1_gja6kbr;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjappk7/;1610764729;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;True;[];;"Sorry, your comment has been removed. - -- Do not attack, insult or harass other Redditors. Don't speculate on anyone's mental state. - - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610675466;moderator;False;{};gjaqo8t;False;t3_kx96wn;False;True;t1_gjalx6e;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjaqo8t/;1610765337;1;True;False;anime;t5_2qh22;;0;[]; -[];;;theanimegamer-___-;;;[];;;dark;text;t2_3vm3lj8d;False;False;[];;So funimation gets it before it airs on japanese tv?;False;False;;;;1610675553;;False;{};gjaqu3j;False;t3_kx9qo8;False;False;t1_gja1o8z;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjaqu3j/;1610765439;4;True;False;anime;t5_2qh22;;0;[]; -[];;;seinera;;;[];;;;text;t2_q2s2e;False;False;[];;I think the hide and seek episode last week kinda implied she was the one who went insane and killed Rika in Watadamashi-hen.;False;False;;;;1610675727;;False;{};gjar60x;False;t3_kx96wn;False;False;t1_gjacw8u;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjar60x/;1610765650;6;True;False;anime;t5_2qh22;;0;[]; -[];;;EasilyDelighted;;;[];;;;text;t2_8t8z8;False;False;[];;I'm a rewatcher but I don't know what that means. Why is it disappointing?;False;False;;;;1610676094;;False;{};gjarv0o;False;t3_kx96wn;False;True;t1_gj99twq;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjarv0o/;1610766115;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mortalstampede;;;[];;;;text;t2_dvfla;False;False;[];;People wanted it to be Rokkenjima.;False;False;;;;1610676497;;False;{};gjasmmv;False;t3_kx96wn;False;False;t1_gjarv0o;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjasmmv/;1610766599;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Aska09;;;[];;;;text;t2_1ey90z6n;False;False;[];;"Yet Oishi confirmed it wasn't the case at the end of Watadamashi because what he said in regards to the bodies found was the same as in Watanagashi. - -""Shion's body was found on the bottom of the well"" and Mion died after killing Satoko. Except Mion is actually the younger sister Shion because they used to switch places often and Mion ended up with the tattoo on her back, a medical examination of the body would identify our Mion as Shion. - -+Mion had no grudge against Satoko unlike Shion.";False;False;;;;1610676904;;False;{};gjateoj;False;t3_kx96wn;False;False;t1_gjar60x;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjateoj/;1610767078;8;True;False;anime;t5_2qh22;;0;[]; -[];;;xQuasarr;;;[];;;;text;t2_ym7nr;False;False;[];;What the actual fuck?;False;False;;;;1610676960;;False;{};gjatifh;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjatifh/;1610767147;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shrederjame;;;[];;;;text;t2_gwmmx;False;False;[];;I thought you were making this up as I didnt remember that part all too well but its true. Damn Takano is the fuckin worst.;False;False;;;;1610677587;;False;{};gjauold;False;t3_kx96wn;False;False;t1_gj98g1t;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjauold/;1610767901;4;True;False;anime;t5_2qh22;;0;[]; -[];;;EasilyDelighted;;;[];;;;text;t2_8t8z8;False;False;[];;Still don't know what that means. I'm an anime only so I feel like I don't understand stuff that people may be referring to from the visual novels.;False;False;;;;1610677657;;False;{};gjautdd;False;t3_kx96wn;False;True;t1_gjasmmv;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjautdd/;1610767984;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610677852;;False;{};gjav6fj;False;t3_kx96wn;False;True;t1_gj8yzgt;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjav6fj/;1610768211;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Anon199760;;;[];;;;text;t2_49baaa9v;False;False;[];;And flipped the dimension while we're at it.;False;False;;;;1610677971;;False;{};gjaveeo;False;t3_kx96wn;False;True;t1_gj8rk7e;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjaveeo/;1610768352;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aperture_Kubi;;;[];;;;text;t2_3n9pj;False;False;[];;"I call this one the whiplash; this one, Code Black, Yuru Camp.";False;False;;;;1610678101;;False;{};gjavmx8;False;t3_kx9qo8;False;False;t1_gj9frhi;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjavmx8/;1610768499;7;True;False;anime;t5_2qh22;;0;[]; -[];;;mortalstampede;;;[];;;;text;t2_dvfla;False;False;[];;Then I probably can't give you an answer to that without potentially spoiling things.;False;False;;;;1610678119;;False;{};gjavo4u;False;t3_kx96wn;False;True;t1_gjautdd;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjavo4u/;1610768521;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kingran15;;;[];;;;text;t2_2667gaau;False;False;[];;Rokkenjima is the setting of Umineko no Naku Koro Ni, another series in the grander When They Cry series that has Higurashi, Umineko, and the recent Ciconia. A lot of people have been theorizing that Higurashi Gou is going to have ties to Umineko.;False;False;;;;1610678196;;False;{};gjavtc5;False;t3_kx96wn;False;True;t1_gjautdd;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjavtc5/;1610768609;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Incognito_Tomato;;;[];;;;text;t2_3928s52y;False;False;[];;I take the second one. It leaves me with the sense of “this is how it should be” followed “this is what it could be”. It kinda makes me want to work harder so that I don’t fall into Black’s situation.;False;False;;;;1610678260;;False;{};gjavxia;False;t3_kx9qo8;False;True;t1_gj95gtr;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjavxia/;1610768677;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SonnyIC;;;[];;;;text;t2_16bbjp;False;False;[];;"> she's still the only one of the main 5 that we haven't seen directly die - -Comrade Rika, it's time for you to learn about 'perfect autopsy'.";False;False;;;;1610678320;;False;{};gjaw1ga;False;t3_kx96wn;False;True;t1_gj8xw1g;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjaw1ga/;1610768743;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EasilyDelighted;;;[];;;;text;t2_8t8z8;False;False;[];;Don't mind. Pm me spoilers!;False;False;;;;1610678653;;False;{};gjawnhc;False;t3_kx96wn;False;True;t1_gjavo4u;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjawnhc/;1610769109;0;True;False;anime;t5_2qh22;;0;[]; -[];;;EasilyDelighted;;;[];;;;text;t2_8t8z8;False;False;[];;"Right, is that where the witches gather to play their game? -So what is st. Lucia?";False;False;;;;1610678702;;False;{};gjawqs7;False;t3_kx96wn;False;True;t1_gjavtc5;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjawqs7/;1610769163;0;True;False;anime;t5_2qh22;;0;[]; -[];;;fatalystic;;;[];;;;text;t2_xy716;False;False;[];;So this is why Kira was made...;False;False;;;;1610678720;;False;{};gjawrzi;False;t3_kx96wn;False;True;t1_gja9b9v;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjawrzi/;1610769183;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Spoon_Elemental;;;[];;;;text;t2_ft38m;False;False;[];;Starting next week, I'm watching Yuru Camp, Vanilla Cells, then Black and then finishing off with Redo of the Healer. Slowly degrade from comfy, to despair and then abandoning my humanity.;False;False;;;;1610678749;;False;{};gjawtxl;False;t3_kx9qo8;False;True;t1_gj95gtr;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjawtxl/;1610769216;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fatalystic;;;[];;;;text;t2_xy716;False;False;[];;...that sounds like the plot of Higurashi Daybreak.;False;False;;;;1610678850;;False;{};gjax0r1;False;t3_kx96wn;False;True;t1_gj9j9zw;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjax0r1/;1610769336;1;True;False;anime;t5_2qh22;;0;[]; -[];;;joseto1945;;;[];;;;text;t2_819on36;False;False;[];;I´m just really happy that they did not show Keiichi eating Rika's brain.;False;False;;;;1610678873;;False;{};gjax2br;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjax2br/;1610769361;2;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - -- Spoilers for Umineko - please tag them accordingly - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610678965;moderator;False;{};gjax8nx;False;t3_kx96wn;False;True;t1_gj90wp4;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjax8nx/;1610769467;1;True;False;anime;t5_2qh22;;0;[]; -[];;;seinera;;;[];;;;text;t2_q2s2e;False;False;[];;"> How the fuck is this gonna get resolved without a second season? - -I agree that it doesn't look likely. The next arc, which is supposed to be her final loop, will reveal the culprit and that will motivate her to go on, but there isn't enough episodes to actually reach a satisfying conclusion.";False;False;;;;1610679403;;False;{};gjay1m9;False;t3_kx96wn;False;True;t1_gjafr8q;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjay1m9/;1610769961;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610679679;;1610719571.0;{};gjayjlp;False;t3_kx96wn;False;True;t1_gjawqs7;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjayjlp/;1610770263;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomWolf83;;;[];;;;text;t2_wxq1l;False;False;[];;A skit about vaccines, they couldn't have timed it any better.;False;False;;;;1610679734;;False;{};gjaynab;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjaynab/;1610770322;8;True;False;anime;t5_2qh22;;0;[]; -[];;;fatalystic;;;[];;;;text;t2_xy716;False;False;[];;Akasaka is trending on JP twitter...;False;False;;;;1610680031;;False;{};gjaz6u9;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjaz6u9/;1610770654;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sKyBlazer08;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sKyBlazer08;light;text;t2_17ibsr;False;False;[];;"Damn, I was so happy to see Akasaka then boom, what the fuck. - -I really can't fucking wait for the answer arcs, I am really excited. - -There's definitely someone triggering all these L5, poor Rika, Jesus.";False;False;;;;1610680417;;1610680619.0;{};gjazw5i;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjazw5i/;1610771082;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"[Wanna swap to a different body?](https://imgur.com/toHXjHX) He doesn't know how good he has it! - -It's insane, the contrast between this one, and Black; It was always somewhat light-hearted (other than a few episodes, like Cancer) but it still felt a lot heavier in season 1... But now, when you compare it to Black, it feels like they're just playing! - -Also, I don't know if it's just me, but isn't WBC a bit sillier this season? He had a few dummy moments in the previous one as well, but I thought he was generally serious... He kinda seems like a gag character in S2, though perhaps I'm also comparing this to Black's WBC, who are a lot more serious/hardcore. - -This one has [the best macrophage](https://imgur.com/eKb4eAg) for sure though!";False;False;;;;1610680703;;False;{};gjb0f3d;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjb0f3d/;1610771398;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Phonochirp;;;[];;;;text;t2_dskku;False;False;[];;"I'm really confused by it. What happened to her speech from episode 2? ""I'm not the same person I was back then"" ""I'm not going to randomly toss the dice"" ""I know who killed me"". - - -Yet she's only taken the minimal action each loop. We haven't seen her be proactive at all... She should know just getting the doll to the right person doesn't lead to a good end. She hasn't checked on the clinic at all. We thought she was the reason Takano was leaving, when in reality it seems like she hasn't been doing anything. - - -Then for the past 6 loops or so it really seems like she's just been counting 100% on luck. She straight up threw away 4 of her self inflicted 5 lives without learning ANYTHING.";False;False;;;;1610680852;;False;{};gjb0p3m;False;t3_kx96wn;False;False;t1_gj8vlpp;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjb0p3m/;1610771568;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"If you want the full depression package, you should like I did, and watch Hataraku Black and Higurashi one after the other! - -Also, I assume Promised Neverland will have a few sad/scary/depressing episodes as well, could be a good trifecta! - -But about the order between the two Hataraku: Personally I like Black more (so far, anyway), so I always watch it first. Maybe I'll try watching this one first at some point, to see if the Black depression lasts longer hah.";False;False;;;;1610680939;;False;{};gjb0uvg;False;t3_kx9qo8;False;True;t1_gj95gtr;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjb0uvg/;1610771665;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sKyBlazer08;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sKyBlazer08;light;text;t2_17ibsr;False;False;[];;No, not just 100 times. She's been dying for a century, we don't have an exact number how many times she has died.;False;False;;;;1610681287;;False;{};gjb1ia9;False;t3_kx96wn;False;True;t1_gjamfqa;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjb1ia9/;1610772060;3;True;False;anime;t5_2qh22;;0;[]; -[];;;scorchdragon;;;[];;;;text;t2_evfqj;False;False;[];;Everything about this episode is trending on JP twitter....;False;False;;;;1610681596;;False;{};gjb22uc;False;t3_kx96wn;False;True;t1_gjaz6u9;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjb22uc/;1610772408;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lulkas;;;[];;;;text;t2_v6p0q34;False;False;[];;Except the Pokemon never truly dies but keep dying painfully everytime until it can't feel anything anymore;False;False;;;;1610682717;;False;{};gjb43up;False;t3_kx96wn;False;True;t1_gj8xsf3;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjb43up/;1610773627;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Roy_Mustang23;;;[];;;;text;t2_2v2sa0vc;False;False;[];;Wtf? Everyone is now L5 including Akasaka, and Kimiyoshi, and lastly Mion and Shions's Mother? What the hell is happening? This is getting much worse than expected. I'll not be surprised, if this would be how witch Bernkastel will be born.;False;False;;;;1610682883;;False;{};gjb4ecg;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjb4ecg/;1610773799;2;True;False;anime;t5_2qh22;;0;[]; -[];;;baixiaolang;;;[];;;;text;t2_g4q48;False;False;[];;"For me the most impactful was Akasaka tbh, considering Rika's reaction to him showing up whenever he does. Keiichi wasn't as impactful for me bc we've already seen him kill Rena and Mion so I was just like ""oh okay and this time he does it."" The bulging eyes got me tho.";False;False;;;;1610682982;;False;{};gjb4kqq;False;t3_kx96wn;False;True;t1_gjabi15;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjb4kqq/;1610773903;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cornonthekopp;;;[];;;;text;t2_16smxv;False;False;[];;That’s what I’m doing lol, I tried cells at work black out and couldn’t make it through the first episode before I decided I couldn’t handle it. I feel way too much empathy for the red blood cell.;False;False;;;;1610683294;;False;{};gjb54mq;False;t3_kx9qo8;False;True;t1_gj9al5t;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjb54mq/;1610774234;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cornonthekopp;;;[];;;;text;t2_16smxv;False;False;[];;I sure hope my irl immune system isn’t making any deals with germs lol;False;False;;;;1610683377;;False;{};gjb59v6;False;t3_kx9qo8;False;False;t1_gj9b0p0;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjb59v6/;1610774325;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Kakuzen;;;[];;;;text;t2_rdq07;False;False;[];;That episode is based off it, so yep lol;False;False;;;;1610683731;;False;{};gjb5vw4;False;t3_kx96wn;False;True;t1_gjax0r1;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjb5vw4/;1610774671;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cornonthekopp;;;[];;;;text;t2_16smxv;False;False;[];;"This was how vaccines were first created in the late 1700’s when Edward Jenner discovered that injecting people with cowpox gunk (relatively harmless and benign) would cause people to become immune to smallpox - -Listen to u/one-eyed-02";False;False;;;;1610683814;;1610727907.0;{};gjb610v;False;t3_kx9qo8;False;False;t1_gja7639;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjb610v/;1610774752;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Creepy-Investment341;;;[];;;;text;t2_6ybu0vv9;False;False;[];;someone tell me where was shion during all of this;False;False;;;;1610683947;;False;{};gjb697y;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjb697y/;1610774882;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RedOneMonster;;;[];;;;text;t2_12op9k;False;False;[];;This is my vieworder currently: Higurashi: When They Cry - Gou, Cells At Work! CODE BLACK!, Dr.Stone: Stone Wars, Cells At Work!!, Quintessential Quintuplets 2 and finally Laid-Back Camp 2. Probably best for my mentality, for viewing the 1st named anime.;False;False;;;;1610684550;;False;{};gjb7aa8;False;t3_kx9qo8;False;True;t1_gj95gtr;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjb7aa8/;1610775466;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Endless-Sorcerer;;;[];;;;text;t2_13sj4l;False;False;[];;Shion isn't involved in every scenario so there's a good chance that she was simply outside of Hinamizawa.;False;False;;;;1610684585;;False;{};gjb7cei;False;t3_kx96wn;False;True;t1_gjb697y;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjb7cei/;1610775498;3;True;False;anime;t5_2qh22;;0;[]; -[];;;szeto326;;;[];;;;text;t2_mot3x;False;False;[];;Oh hey it’s Akasaka - can’t wait to see how they’ll introdu- holy fucking shit, what the hell;False;False;;;;1610684689;;False;{};gjb7ixh;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjb7ixh/;1610775603;5;True;False;anime;t5_2qh22;;0;[]; -[];;;jenthehenmfc;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/jnsparrow;light;text;t2_v5dwp;False;False;[];;I don’t think we know what she did during these quick cut loops tbh, and I think we can assume she is trying her hardest. The actions she took in the first half of the show also made sense and probably should have worked. I think the overall point is it doesn’t matter how proactive she is now or WHAT she does - the rules have apparently changed and someone is likely messing with her so that she CAN’T win. Even without having finished Umineko yet (I’m in the middle of the VN!) I’m sensing some crossover vibes ...;False;False;;;;1610685113;;False;{};gjb88r4;False;t3_kx96wn;False;False;t1_gjb0p3m;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjb88r4/;1610776021;5;True;False;anime;t5_2qh22;;0;[]; -[];;;baixiaolang;;;[];;;;text;t2_g4q48;False;False;[];;When Akane went l5, she almost walked by Mion bc she didn't know Mion was still alive. Same thing could've happened with Satoko and Keiichi.;False;False;;;;1610685236;;False;{};gjb8g67;False;t3_kx96wn;False;True;t1_gj9rvug;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjb8g67/;1610776140;3;True;False;anime;t5_2qh22;;0;[]; -[];;;scorchdragon;;;[];;;;text;t2_evfqj;False;False;[];;"Okay back the fuck up here, we barely saw what she was doing in earlier eps, proactive or otherwise. We were following Keiichi for all of it, not her. - -And for these ones? ""Straight up threw away 4 of her self inflicted 5 lives"" when she got blindsided by 3 people she would never expect do turn on her and Keiichi snapped in an incredibly FAST and unexpected way? There was literally nothing she could have done. If she got struck by fucking lightning and exploded, would you say she threw away another life? Did you pay attention to the dates that all of these happened on? Because all of them were before the festival. - -Rika walked into this thinking she was playing a familiar game of Mario but in reality it's I Wanna Be the Guy.";False;False;;;;1610685657;;False;{};gjb9528;False;t3_kx96wn;False;False;t1_gjb0p3m;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjb9528/;1610776554;8;True;False;anime;t5_2qh22;;0;[]; -[];;;carlos12ivan;;;[];;;;text;t2_169snm;False;False;[];;It's just me or this season is more childish than the first one??;False;False;;;;1610685980;;False;{};gjb9oc9;False;t3_kx9qo8;False;True;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjb9oc9/;1610776868;3;True;False;anime;t5_2qh22;;0;[]; -[];;;leliel;;;[];;;;text;t2_3w521;False;False;[];;">I'm really worried how they will put the umineko character, be it bernkastal (Which we rewatcher know about ) Featherine (who was hinted in the OP) or lambdadelta (whom umineko know about it) none of the is known for new watchers. Without a proper setting it would make them useless characters thrown in the anime. Umineko had the whole ""seeing outside the box to understand"" so far the only outside the bow we saw was the space thing with Hanyuu and no other witch was there (actually did someone check all the fragments? What if one of them had some hints?) -> ->the swapping game is probably a foreshadow. But what changed ? So far everything is different. For me the obvious guess would be that the game master (Hanyuu) was swapped by someone else without us seeing it. - -For a few episodes now I've been thinking that the game master is lambdadelta, she's the one that pulled rika back into the loop, and this game is where bernkastal is born and defeats lambdadelta. It's been a long time since I've played umineko tho so I can't remember the details of their past relationship.";False;False;;;;1610686015;;False;{};gjb9qd6;False;t3_kx96wn;False;True;t1_gj9u3dr;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjb9qd6/;1610776900;3;True;False;anime;t5_2qh22;;0;[]; -[];;;carlos12ivan;;;[];;;;text;t2_169snm;False;False;[];;Last week took the depressing one and this week the wholesome one, I preffer the depressing one;False;False;;;;1610686045;;False;{};gjb9s1x;False;t3_kx9qo8;False;True;t1_gj95gtr;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjb9s1x/;1610776927;2;True;False;anime;t5_2qh22;;0;[]; -[];;;scorchdragon;;;[];;;;text;t2_evfqj;False;False;[];;"So is supernatural elements. - -In this story about a 100+ year old girl who keeps going back in time each time she dies alongside her ghost god ancestor. - -People need to shut the fuck up about Knox when it comes to Higurashi.";False;False;;;;1610686541;;False;{};gjbakxi;False;t3_kx96wn;False;True;t1_gj9bwaa;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbakxi/;1610777401;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Red_Persimmons;;;[];;;;text;t2_7sxd3y9y;False;False;[];;I legit did not believe it to be real until Rika dropped from five fingers to four. Man my heart sank. Not my boy Akasaka.;False;False;;;;1610687168;;False;{};gjbbkar;False;t3_kx96wn;False;True;t1_gj8tnmi;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbbkar/;1610777962;3;True;False;anime;t5_2qh22;;0;[]; -[];;;skyyohhs;;;[];;;;text;t2_3sbllrar;False;False;[];;Ohhh okay tysm.;False;False;;;;1610687336;;False;{};gjbbth0;False;t3_kx96wn;False;True;t1_gjal676;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbbth0/;1610778103;1;True;False;anime;t5_2qh22;;0;[]; -[];;;3-to-20-chars;;;[];;;;text;t2_5ad760x1;False;False;[];;Umineko was never stated in red to be following the decalogue exactly, so that logic doesn't hold;False;False;;;;1610688328;;False;{};gjbdalp;False;t3_kx96wn;False;True;t1_gj9dy7w;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbdalp/;1610778949;2;True;False;anime;t5_2qh22;;0;[]; -[];;;3-to-20-chars;;;[];;;;text;t2_5ad760x1;False;False;[];;small bomb the size of a large bomb;False;False;;;;1610688630;;False;{};gjbdq9y;False;t3_kx96wn;False;True;t1_gj8yeer;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbdq9y/;1610779205;3;True;False;anime;t5_2qh22;;0;[]; -[];;;3-to-20-chars;;;[];;;;text;t2_5ad760x1;False;False;[];;that's not what it was flashing back to. it was just showing us himatsubushi exactly as it originally occurred, to give newbies more insight into how rika and akasaka know each other.;False;False;;;;1610688727;;False;{};gjbdvb7;False;t3_kx96wn;False;False;t1_gj90oty;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbdvb7/;1610779287;5;True;False;anime;t5_2qh22;;0;[]; -[];;;3-to-20-chars;;;[];;;;text;t2_5ad760x1;False;False;[];;"i dont agree with this one. they all specifically mentioned maggots in their blood. rena and takano are the only people who should know about this. it's fine for them to feel ""bugs"", but for them all to specifically mention ""maggots"" -- imo -- means that Takano is at work here. you'll never once see a mention of maggots in keiichi's blood from his POV in the original arcs.";False;False;;;;1610688867;;False;{};gjbe2fx;False;t3_kx96wn;False;False;t1_gj949iq;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbe2fx/;1610779406;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Massepic;;;[];;;;text;t2_lieyj;False;True;[];;Sokoto is suspicious. The ominous shot of her in front of the fire and her laying on the ground in angel mort. You can see there's little blood on her, her head isn't bashed and there are no pool of blood on her too. When Rena died, you can see that she bled profusely. In the fire scene, she didn't really react to the explosion at all as someone had mentioned in the comments.;False;False;;;;1610689442;;False;{};gjbew0i;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbew0i/;1610779857;3;True;False;anime;t5_2qh22;;0;[]; -[];;;leliel;;;[];;;;text;t2_3w521;False;False;[];;You're right that it doesn't make much sense for a reboot to depend on info from umineko that new viewers wouldn't know, but from a meta perspective it makes a lot of sense for this to be the game that bernkastel and lambdadelta play together.;False;False;;;;1610689647;;False;{};gjbf6ms;False;t3_kx96wn;False;True;t1_gj9x887;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbf6ms/;1610780021;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Almondjoy247;;;[];;;;text;t2_ekw78;False;False;[];;"So Oishi not mentioning maggots just one episode earlier is fine? How about the bugs/maggots WW2 victims of the desease mentioned by takano's father? - -And what does maggots even have anything to do with takano anyways? She injects them and tells them there are maggots in them? How does that make any sense? She could care less about maggots. She wanted to prove a parasite could manipulate the mind, nothing to do with maggots.";False;False;;;;1610689777;;False;{};gjbfdam;False;t3_kx96wn;False;True;t1_gjbe2fx;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbfdam/;1610780125;3;True;False;anime;t5_2qh22;;0;[]; -[];;;infj1029;;;[];;;;text;t2_15up1k;False;False;[];;"This episode and last episode have been my favorite so far! Feels like the OG Higurashi. Really threw me in a loop when Akasaka went L5. Him and Rika are my favorite characters and I loved his story line. - -Also... can we pleaasseeeee tag Umineko spoilers? I've read a few while reading this comment section. Some of it may be common knowledge for fans of the whole franchise but some people haven't seen/are interested in reading it. I'm currently watching a Let's Play of it and I don't want to ruin the story :/ It's been really turning me off from the re-watcher discussion :(";False;False;;;;1610689984;;1610733488.0;{};gjbfnqw;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbfnqw/;1610780283;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Phonochirp;;;[];;;;text;t2_dskku;False;False;[];;"Her earlier steps should have prevented someone from going l5, but she should know that's only half of the solution. Even if no one goes L5, Takano kills the entire village. Yet during Satako's arc, she didn't even try to get everyone on the same page to stop Tamitake's death, which to her knowledge should be happening right after the festival. Maybe we're being kept in the dark and she already learned that Takano isn't a threat, but that seems like a stretch. If she did something during these 4 loops that was useful, it seems odd they wouldn't show it as well. - - -Even if someone is screwing with her, which I think is pretty obvious at this point, that doesn't change that she really doesn't seem to be trying her hardest. The person screwing with her could have done nothing, and each of these would have ended with her or her friends dead.";False;False;;;;1610690328;;False;{};gjbg4sb;False;t3_kx96wn;False;True;t1_gjb88r4;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbg4sb/;1610780544;1;True;False;anime;t5_2qh22;;0;[]; -[];;;moonmeh;;;[];;;;text;t2_56czx;False;False;[];;" ->YOU CANNOT JUST DO THAT - -That would be against the rules. - -Though it could be explained tangentially with other exposition later i guess";False;False;;;;1610690572;;False;{};gjbgh4x;False;t3_kx96wn;False;True;t1_gj8w445;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbgh4x/;1610780731;2;True;False;anime;t5_2qh22;;0;[]; -[];;;midtharp;;;[];;;;text;t2_2tkeqy5s;False;False;[];;[David Production voguing](https://imgur.com/a/GuwTCHS);False;False;;;;1610690842;;False;{};gjbguaw;False;t3_kx9qo8;False;True;t1_gj9frrg;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjbguaw/;1610780936;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nrk151203;;;[];;;;text;t2_6ftnp5k6;False;False;[];;Watched this right after the black version. I was extremely pleased to see macrophage-san in a much better condition;False;False;;;;1610690881;;False;{};gjbgw83;False;t3_kx9qo8;False;True;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjbgw83/;1610780966;1;True;False;anime;t5_2qh22;;0;[]; -[];;;moonmeh;;;[];;;;text;t2_56czx;False;False;[];;Unsure if this is glitchless run though;False;False;;;;1610690917;;False;{};gjbgy0w;False;t3_kx96wn;False;False;t1_gj8wlmr;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbgy0w/;1610780993;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Phonochirp;;;[];;;;text;t2_dskku;False;False;[];;"She told us what she did last episode, maybe she did more and is keeping us in the dark, but that would be quite odd. These last 4 were fast to us, not to her... It's not like she woke up and was immediately being dragged to her death. - - -If she got struck by lightning on the way to say, check to see if there's a way to screw with Takano after taking steps to prevent her friends going l5? Nah that wasn't a waste, that's bad luck, try again next life. - - -She has never once tried to enact the entire solution though. I think the most egregious was she didn't try to rally everyone to go save Tomitake, who she thinks dies the night of the festival without intervention. Would it have failed because of Ooishi going L5? Yes, but she didn't even try, and maybe in trying she learns something new. - - -From what we've seen, she's never acted as though she knows the entire solution, despite telling us episode 2 she knows the solution. She only takes very minor steps to prevent her friends going l5, never taking steps to solve the Takano part of the problem. Even though we know she's no longer a threat, we're 8 loops in and Rika still hasn't managed to learn it.";False;False;;;;1610691262;;False;{};gjbheni;False;t3_kx96wn;False;True;t1_gjb9528;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbheni/;1610781248;1;True;False;anime;t5_2qh22;;0;[]; -[];;;3-to-20-chars;;;[];;;;text;t2_5ad760x1;False;False;[];;"> oishi not mentioning maggots - -rena didnt mention them either during onidamashi. which doesnt really help my case, but im mostly spitballing literally anything i can think of - -> How about the bugs/maggots WW2 victims of the desease mentioned by takano's father? And what does maggots even have anything to do with takano anyways? - -well, that's kinda what i meant. the existence of the ""maggot disease"" is in her scrapbooks, which she could give to whoever she pleases. if all the killers we saw this episode had contact with takano prior to their killing spree, then that could be one explanation. im just....not sure why. not sure why she'd do that, especially with police like oishi or akasaka. not sure why the dates are varying so heavily. not sure why she does that and then fucks off with tomitake. - -the more i think about it, the less it makes sense, but i really feel like theres some sort of clue involved with every single killer this episode spouting similar monologues.";False;False;;;;1610691705;;False;{};gjbhzog;False;t3_kx96wn;False;True;t1_gjbfdam;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbhzog/;1610781569;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NerdyNurseKat;;;[];;;;text;t2_hh35kpp;False;False;[];;I chose to watch Black first, and Original as a palate cleanser. Best way to do it for me.;False;False;;;;1610691830;;False;{};gjbi5js;False;t3_kx9qo8;False;True;t1_gj95gtr;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjbi5js/;1610781655;1;True;False;anime;t5_2qh22;;0;[]; -[];;;becooltopeople;;;[];;;;text;t2_89mlds89;False;False;[];;"Oh man that was good. Also horrifying. Poor Rika... - -Although I doubted it a little before, I feel like there is almost definitely something going on with Satoko now. Although I'm still not sure about details of that, there have been way too many hints to think it's just a red herring. - -Unpredictable stuff just keeps happening, but there is definitely a pattern: people are learning about the virus and the folklore around it, and going L5. That's the main mystery. - -I still wonder what happened to the GHD, though. Maybe it doesn't happen as often as I thought. There has to be some kind of explanation for that.";False;False;;;;1610692050;;False;{};gjbifrm;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbifrm/;1610781813;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rotten_riot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RottenOrange/;light;text;t2_20f93nxp;False;False;[];;"First one, but mostly because I like the original one better. Since it's Season 2 it means I already know the characters and therefore I sympathize more with them than with the ones from Black. - -I also think the art is better lol";False;False;;;;1610692572;;False;{};gjbj3fl;False;t3_kx9qo8;False;True;t1_gj95gtr;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjbj3fl/;1610782179;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hikaritoyamino;;;[];;;;text;t2_qbki0;False;False;[];;"A live-attenuated vaccine is a weakened form of the disease-causing agent that may or may not cause symptoms (some flu vaccines, MMR vaccine, Chickenpox/Shingles vaccine, and Smallpox vaccine are this). In the case they do cause symptoms, it's very mild. - -Another type of vaccine is the ""Subunit, recombinant, polysaccharide, or conjugate vaccine"", which contains only a part (the antigen) of the disease causing agent created through various biotechnological procedures. - -The recent COVID vaccines in emergency use are mRNA vaccines, which use mRNA coding for an antigen and our cellular machinery (ribosomes) in our immune cells (dendritic and macrophage) to create the antigen for ""antigen presentation"". It bypasses the early stages of ""antigen presentation"" where the macrophages and dendritic must first kill the disease-causing agent and subsume a part of it to show the immune B and T cells so they can create the antibodies and target the disease causing agent.";False;False;;;;1610692778;;1610739751.0;{};gjbjcr5;False;t3_kx9qo8;False;False;t1_gja7639;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjbjcr5/;1610782328;10;True;False;anime;t5_2qh22;;0;[]; -[];;;rotten_riot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RottenOrange/;light;text;t2_20f93nxp;False;False;[];;"It's kinda sad that Black is getting more attention than this one, specially considering this is probably the last season of Hataraku Saibou. But well, at least none of them are getting ignored. - -Black says I have hostesses inside my liver and this one says I have a bartender in my kidney, damn. - -[It can't be possible that I have something so cute inside me](https://i.imgur.com/3lNNm3D.png)";False;False;;;;1610692822;;False;{};gjbjer3;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjbjer3/;1610782359;7;True;False;anime;t5_2qh22;;0;[]; -[];;;midtharp;;;[];;;;text;t2_2tkeqy5s;False;False;[];;"> viruses look creepy as fuck - -Starting at 11:10 the OST sounds happily ""Brazil""-like, [which is consistent with those mumps mugs](https://imgur.com/a/1hptuUl).";False;False;;;;1610692937;;False;{};gjbjjwm;False;t3_kx9qo8;False;False;t1_gj9ni9v;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjbjjwm/;1610782438;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Omen111;;;[];;;;text;t2_16bdvg;False;False;[];;"Maybe this time her aim is different and has nothing to do with research - - -Maybe she tells them about maggots to give them motivation for their massacre. Ooishi does not mention them because she has no need to tell about it. Same with mayor.";False;False;;;;1610692964;;False;{};gjbjl3e;False;t3_kx96wn;False;True;t1_gjbfdam;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbjl3e/;1610782455;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bahutmut;;;[];;;;text;t2_3p8yd2ly;False;False;[];;ive noticed that rika’s eyes glow only when looking at keiichi, probably means nothing tho;False;False;;;;1610693434;;False;{};gjbk5sk;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbk5sk/;1610782767;1;True;False;anime;t5_2qh22;;0;[]; -[];;;starwaver;;;[];;;;text;t2_chkak;False;False;[];;When Akasaka appeared I thought finally you have all the pieces, been the strongest character from Higurashi;False;False;;;;1610694483;;False;{};gjble0f;False;t3_kx96wn;False;False;t1_gj8upr1;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjble0f/;1610783444;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Nielloscape;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Niello;light;text;t2_160hhg;False;False;[];;I find I weird that even Keiichi who should be most in the dark of them all, was going to Rika to ask for cure and explicitly talking about parasite.;False;False;;;;1610694800;;False;{};gjblqst;False;t3_kx96wn;False;False;t1_gj907fz;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjblqst/;1610783635;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ma_1815;;;[];;;;text;t2_4y8von09;False;False;[];;I feel bad for first timers they have not watched from beginning and are going to be confused. They may start disliking this show.;False;False;;;;1610695053;;False;{};gjbm114;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbm114/;1610783795;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ProNewbDude;;;[];;;;text;t2_4fscab08;False;False;[];;Would u guys say the end of the 5th life will be the end of the “question” arcs and we start getting “answer” arcs and will that be in this single season or do u think there will be a second season with “answer” arcs?;False;False;;;;1610695545;;False;{};gjbmkdx;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbmkdx/;1610784086;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Colilite;;;[];;;;text;t2_50nt91up;False;False;[];;A lot of things I didn't think would happen, happened in such a short time span that I cant help but feel there's a dead or corrupted end on the way.;False;False;;;;1610696238;;False;{};gjbnbsv;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbnbsv/;1610784493;1;True;False;anime;t5_2qh22;;0;[];True -[];;;TheSpartyn;;;[];;;;text;t2_6p07c;False;False;[];;thats the guess i made with my friends, build up to her killing herself with the sword and then she just wakes up again.;False;False;;;;1610696268;;False;{};gjbncyd;False;t3_kx96wn;False;True;t1_gj928ww;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbncyd/;1610784510;2;True;False;anime;t5_2qh22;;0;[]; -[];;;xXx_ECKS_xXx;;;[];;;;text;t2_15ribh;False;False;[];;"Ok, big wtf on this episode. - -Named characters who have not gone L5: - -* Satoko -* Shion -* Chie -* Onibaba -* **Takano** -* Tomitake -* Irie -* (Teppei) -* **Featherine/Hanyuu** -* Rika - -I'm assuming that the culprit is going to be somebody from this list. I highlighted who I think are the two most likely candidates. - ->Some things to note: - -Every person who went crazy this episode knew that Rika was the queen carrier or had some information that they shouldn’t. This essentially confirms my theory that somebody is directly causing people to go L5 rather than the condition being stress-induced, although this was kind of already confirmed when Mion went crazy in the second arc. - -Seeing as how Takano and the Tokyo organization in the original are the only people with explicit knowledge of Rika being the queen carrier, I think that Takano is looking mighty sus. Tomitake and Irie are included but I think that Takano is more likely. - -Also, the Satoko looper theory is not out yet, but I have a suspicion that she's not the looper, but is looper adjacent instead. Again, this possibly lends credence to the fact that it may still be Takano at work. - ->Something else: - -I included Teppei in this list because there was a subtle detail some people may have missed. Every person who went L5 so far has had the same crazy cat-eyes, *except* *for* *Teppei*. - -When he was beating down Keiichi, his eyes were glowing red for some reason. This has to be on purpose. - -Now, this could be because Keiichi was hallucinating, but I think there's a more likely explanation. - -**Featherine.** The red glow of Featherine's eye in the opening is an exact match for the red glow in Teppei's eyes. Coincidence? Probably not. I think that Featherine was involved here. - -Another piece of information that may hint at Featherine being at work behind the scenes is the fact that the ceremonial sword is missing. After all, she's the only one who knows where it is. - - ->Putting all this together, I have four theories left: - -* Featherine/Future Hanyuu is manipulating the Tokyo organization. -* Featherine/Future Hanyuu is up to some shit on her own/messing with Satoko. -* Takano or somebody in the Tokyo organization is a looper. - -And my last, wildest guess: - -* It's a future version of Rika - -I did say that Hanyuu is the only person who knows where the ceremonial sword is, but technically... Rika does too. - -I don't know what the motive would be, but... You heard it here first lol. - ->Edit: Formatting";False;False;;;;1610696293;;1610698748.0;{};gjbndzg;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbndzg/;1610784525;7;True;False;anime;t5_2qh22;;0;[]; -[];;;TheSpartyn;;;[];;;;text;t2_6p07c;False;False;[];;holy shit i joked around with my friends that what if killing herself with the sword would just make her wake up in the meta world, but with that explanation its possible;False;False;;;;1610696309;;False;{};gjbnek9;False;t3_kx96wn;False;False;t1_gj9b9ox;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbnek9/;1610784534;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Nielloscape;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Niello;light;text;t2_160hhg;False;False;[];;Keiichi who's supposed to be clueless was asking Rika directly for cure.;False;False;;;;1610696497;;False;{};gjbnlu6;False;t3_kx96wn;False;False;t1_gjbfdam;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbnlu6/;1610784645;3;True;False;anime;t5_2qh22;;0;[]; -[];;;starwaver;;;[];;;;text;t2_chkak;False;False;[];;"St. Lucia is the school that Shion attended in the original series... - - -interestingly... Ange also attended the same school";False;False;;;;1610696705;;False;{};gjbnu0d;False;t3_kx96wn;False;True;t1_gjawqs7;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbnu0d/;1610784767;3;True;False;anime;t5_2qh22;;0;[]; -[];;;303Devilfish;;;[];;;;text;t2_dofmj;False;False;[];;"Akasaka shows up - :D - -2 minutes later - D:";False;False;;;;1610697065;;False;{};gjbo88l;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbo88l/;1610784975;8;False;False;anime;t5_2qh22;;0;[]; -[];;;Nielloscape;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Niello;light;text;t2_160hhg;False;False;[];;If you look from Rika's perspective, so many people who shouldn't have gone L5 did, but Keiichi was safe. But then on the loop before her final, even that is gone too.;False;False;;;;1610697191;;False;{};gjbod5n;False;t3_kx96wn;False;False;t1_gja1f3h;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbod5n/;1610785048;6;True;False;anime;t5_2qh22;;0;[]; -[];;;303Devilfish;;;[];;;;text;t2_dofmj;False;False;[];;"I've been pretty on the fence about how this looks to people who haven't seen the original - -this episode kinda sealed my opinion. That abrupt cut from Akasaka being the hero to Rika lying a pool of blood was a gut punch from out of nowhere, and I can't possibly see it being nearly as effective to a first-time watcher. - -Though as someone who has seen the original, this episode was a fucking ride.";False;False;;;;1610697234;;False;{};gjboeuc;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjboeuc/;1610785074;7;True;False;anime;t5_2qh22;;0;[]; -[];;;not_actually_gaudin;;;[];;;;text;t2_16gee2l6;False;False;[];;"> Is that Show Hayami as that M-Cell bartender? I'd never mind getting served drinks by him, even if it was part of a sting op to snag some viruses. - -Sounded like him, reprising his Bartender role from GochiUsa.";False;False;;;;1610700007;;False;{};gjbrau3;False;t3_kx9qo8;False;False;t1_gj9b0p0;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjbrau3/;1610786640;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DrizzyRhyme;;;[];;;;text;t2_ntwq6;False;False;[];;Welp one more try;False;False;;;;1610702306;;False;{};gjbtlhc;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbtlhc/;1610787890;1;True;False;anime;t5_2qh22;;0;[]; -[];;;scorchdragon;;;[];;;;text;t2_evfqj;False;False;[];;"So far it seems like everyone is on board with ""being Rika is suffering""";False;False;;;;1610702917;;False;{};gjbu729;False;t3_kx96wn;False;True;t1_gjbm114;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbu729/;1610788223;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Zechtum;;;[];;;;text;t2_yvj5xvd;False;False;[];;I said to myself before starting that I shouldn’t pause the episode because I would have to watch a long ad before being able to keep watching. Naturally, I dit it once unintentionally. I’ll let you guess at which point it happened.;False;False;;;;1610703142;;False;{};gjbuewh;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbuewh/;1610788342;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Zemahem;;;[];;;;text;t2_2i7j9c90;False;False;[];;"As of this episode, anti-vaxxers can officially no longer watch this show (if any even did in the first place). I was wondering when this was gonna touch on vaccines and how they're supposed to work. Imagine if Memory Cell's dilemma existed in real life, just your body forgetting that it was already immune to a particular disease. Now that would be fucked. Oh wait... it already kinda does. Well fuck. - -After the second half of the episode, I felt the need to look up if there existed a bar with the name ""Peyer's Patch"". It sounds like an oddly fitting name for one too. - -Damn, though. I guess Cells at Work doesn't just have something for *ara ara* and MILF lovers in the form of Macrophage and Megakaryocyte respectively. It also has M-cell too who exudes immense DILF energy. Funny how all three of them start with the letter M as well.";False;False;;;;1610703172;;False;{};gjbufy4;False;t3_kx9qo8;False;True;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjbufy4/;1610788359;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ma_1815;;;[];;;;text;t2_4y8von09;False;False;[];;It is really depressing to watch Rika suffering.;False;False;;;;1610703892;;False;{};gjbv567;False;t3_kx96wn;False;True;t1_gjbu729;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbv567/;1610788743;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Plerti;;;[];;;;text;t2_3iruws8i;False;False;[];;"Plus, Rika's final phrase was ""I can't keep doing this ***alone***"". We know that there are multiple loopers and it's not just Rika as there is a sword made specifically to kill them. And then from Umineko we have certain witch very close to Berknastel, the next chapter has the prefix ""neko"", and we know that Featherine is somehow involucrated in all of this as she is shown in the OP... - -Please just tie Higurashi and Umineko and announce a propper remake of Umineko with the answer arc covered...";False;False;;;;1610706540;;False;{};gjbxpmg;False;t3_kx96wn;False;True;t1_gj8zwte;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbxpmg/;1610790141;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thezaki25;;;[];;;;text;t2_8mfpcdu;False;False;[];;Keiichi be like B O N K;False;False;;;;1610707781;;False;{};gjbyxta;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjbyxta/;1610790810;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThrowCarp;;;[];;;;text;t2_79cxz;False;False;[];;Who would Tippy be then?;False;False;;;;1610707798;;False;{};gjbyyee;False;t3_kx9qo8;False;False;t1_gjbrau3;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjbyyee/;1610790820;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ThrowCarp;;;[];;;;text;t2_79cxz;False;False;[];;The anime we need!;False;False;;;;1610707816;;False;{};gjbyz19;False;t3_kx9qo8;False;False;t1_gj9irqa;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjbyz19/;1610790829;5;True;False;anime;t5_2qh22;;0;[]; -[];;;one-eyed-02;;;[];;;;text;t2_783k5oi0;False;False;[];;"Well, no actually, since cowpox is not a weaker small pox, but just a viral cousin from the family *Orthopoxvirus*, and the antigen for which also bind to smallpox. -Attenuated vaccines have been used in a basic sense for thousands of years however, in the form of variolation, where a smallpox scab would first be weakenen by exposure, steaming, heating, etc., then delivered to the body using tiny stabbing needles.";False;False;;;;1610708889;;False;{};gjc025z;False;t3_kx9qo8;False;False;t1_gjb610v;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjc025z/;1610791426;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DomOfMemes;;;[];;;;text;t2_14x5xv;False;False;[];;Is noone going to talk how Akasaka can get L5, he is not from **Hinamizawa** ?;False;False;;;;1610709728;;False;{};gjc0xav;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjc0xav/;1610791931;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DomOfMemes;;;[];;;;text;t2_14x5xv;False;False;[];;The question is how the fuck did Akasaka get l5, he is not from Hinamizawa?;False;False;;;;1610709824;;False;{};gjc110g;False;t3_kx96wn;False;True;t1_gjb4ecg;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjc110g/;1610791991;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sr_DingDong;;;[];;;;text;t2_5zf6k;False;False;[];;Black has way more culture, watch that first.;False;False;;;;1610710088;;False;{};gjc1b44;False;t3_kx9qo8;False;False;t1_gj97sxf;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjc1b44/;1610792147;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ReeseChloris;;;[];;;;text;t2_ukqvj;False;False;[];;She just used Fus Ro Dah;False;False;;;;1610711133;;False;{};gjc2f4k;False;t3_kx96wn;False;True;t1_gj9jrwb;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjc2f4k/;1610792804;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Careless_Pudding_327;;;[];;;;text;t2_8rj9fyvi;False;False;[];;"I'm curious to know why we spent so much time on that. Is it going to be used as a metaphor for how they end up winning this series like how Old Bachelor was a metaphor last series? By the way, in case anyone's interested [here is tsubame gaeshi being performed IRL.](https://www.youtube.com/watch?v=OtzOGlckRYg&ab_channel=Thomas)";False;False;;;;1610711207;;1610711447.0;{};gjc2hya;False;t3_kx96wn;False;False;t1_gj8wyw5;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjc2hya/;1610792850;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ReeseChloris;;;[];;;;text;t2_ukqvj;False;False;[];;Slaughter the younglings;False;False;;;;1610711611;;False;{};gjc2xjc;False;t3_kx96wn;False;True;t1_gj97uxg;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjc2xjc/;1610793104;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DrScorcher;;;[];;;;text;t2_2eyxjnbn;False;False;[];;Neither is Keiichi but he still got it. Maybe you just have to spend time in Hinamizawa?;False;False;;;;1610713036;;False;{};gjc4jvj;False;t3_kx96wn;False;True;t1_gjc0xav;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjc4jvj/;1610793993;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Global_Rin;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_ox0no;False;False;[];;"I actually got my hope up when Arasaka appeared. To Rika, he is like the Super-rare white knight that guarantees a win when he gets involved in the plotline. - -then that transition happened, WTF. - -then the Mom, and village chief, and K1. Is there nobody safe from this shite parasite!? - -Holy shit this episode is... just brutal it's very hard to watch. 4 deaths in a row...";False;False;;;;1610713270;;False;{};gjc4tve;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjc4tve/;1610794147;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DomOfMemes;;;[];;;;text;t2_14x5xv;False;False;[];;Had a conversation in Discord that it might be due stress in Hinamizawa or something.;False;False;;;;1610713301;;False;{};gjc4v85;False;t3_kx96wn;False;True;t1_gjc4jvj;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjc4v85/;1610794169;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610713383;;False;{};gjc4yqf;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjc4yqf/;1610794224;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Global_Rin;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_ox0no;False;False;[];;"WTF! - -What?! - -Why.... - -&#x200B; - -Are only response from me this episode";False;False;;;;1610713385;;False;{};gjc4yt5;False;t3_kx96wn;False;True;t1_gj8rpmu;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjc4yt5/;1610794225;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cybersteel;;;[];;;;text;t2_dpy8o;False;False;[];;How weird they didn't show that part where vaccines causes autism.;False;True;;comment score below threshold;;1610713741;;False;{};gjc5em3;False;t3_kx9qo8;False;False;t1_gjbufy4;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjc5em3/;1610794475;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;Cybersteel;;;[];;;;text;t2_dpy8o;False;False;[];;There's germs that convince your immune system to attack your own body like Tuberculous myocarditis.;False;False;;;;1610714054;;False;{};gjc5ski;False;t3_kx9qo8;False;False;t1_gjb59v6;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjc5ski/;1610794692;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;I do them all in release order. Let the schedule decide!;False;False;;;;1610716268;;False;{};gjc8qxj;False;t3_kx9qo8;False;True;t1_gj95gtr;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjc8qxj/;1610796336;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;The octopus on 1146's head;False;False;;;;1610716451;;False;{};gjc90f9;False;t3_kx9qo8;False;False;t1_gjbyyee;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjc90f9/;1610796480;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;Soon! We're all waiting warmly for that giant tube in the sky;False;False;;;;1610716624;;False;{};gjc99mk;False;t3_kx9qo8;False;False;t1_gj91g54;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjc99mk/;1610796621;5;True;False;anime;t5_2qh22;;0;[]; -[];;;RoseSpinoza;;;[];;;;text;t2_jwp6i;False;False;[];;Strong disagree for my tastes, very much wasn't what I wanted. But different strokes for different folks.;False;False;;;;1610716925;;False;{};gjc9ppg;False;t3_kx96wn;False;True;t1_gj9ty0o;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjc9ppg/;1610796865;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Careless_Pudding_327;;;[];;;;text;t2_8rj9fyvi;False;False;[];;mOrph0gEnEtic FieLds;False;False;;;;1610717216;;False;{};gjca5df;False;t3_kx96wn;False;True;t1_gj9dajp;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjca5df/;1610797108;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Careless_Pudding_327;;;[];;;;text;t2_8rj9fyvi;False;False;[];;If this 100 million number they brought up is real (which is stupid if true) then Rika, who has probably still only died in the hundreds of times, definitely pales in comparison.;False;False;;;;1610717458;;1610719351.0;{};gjcaiqr;False;t3_kx96wn;False;True;t1_gjb1ia9;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjcaiqr/;1610797310;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RoseSpinoza;;;[];;;;text;t2_jwp6i;False;False;[];;.............................. that would be a little funny.;False;False;;;;1610717727;;False;{};gjcay3e;False;t3_kx96wn;False;True;t1_gj9hcyd;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjcay3e/;1610797542;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;I laughed at the vaccination scene when the immune cells are surprised that the invaders are that weak.;False;False;;;;1610718004;;False;{};gjcbe0v;False;t3_kx9qo8;False;True;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjcbe0v/;1610797783;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;"I love how they [modeled the mumps' faces](https://i.imgur.com/1eFi2B3.jpeg) after [the okame mask,](https://traditionalkyoto.com/culture/figures/otafuku/) with more mumps-swollen cheeks - -[Do what you love and you'll never work a day in your life](https://i.imgur.com/WmILCTj.jpg) - -[Hah, the sugars are those spiky candies!](https://i.imgur.com/4Vnv7nP.jpg) - -[Wait, this isn't _Suddenly, Egyptian Gods_](https://i.imgur.com/Uzk1ZTz.jpg) - -[Haha, sounds like the VAs had a fun time doing this ""bad acting"" acting](https://i.imgur.com/Qap75gS.jpg) - -[M cells. Damn, good tactics, Human Body-san](https://i.imgur.com/AbOYahk.jpg)";False;False;;;;1610718250;;False;{};gjcbsbg;False;t3_kx9qo8;False;True;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjcbsbg/;1610798003;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sKyBlazer08;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sKyBlazer08;light;text;t2_17ibsr;False;False;[];;"Very educational episode, anti-vaxxers should fucking watch this episode lmao. - -The second half of the episode was hilarious, those campylobacters were screwed from the start. M cell sounds bad ass as fuck, that last supper line was cool. WBC forgot bout the tea lmao. I do miss some red blood cell screentime though.";False;False;;;;1610720066;;False;{};gjcewfu;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjcewfu/;1610799730;4;True;False;anime;t5_2qh22;;0;[]; -[];;;zenograff;;;[];;;;text;t2_p9qlh;False;False;[];;Damn they held back on the horror and brutality just to unleash it all on this episode. I got chills.;False;False;;;;1610720669;;False;{};gjcfzdo;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjcfzdo/;1610800345;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Omen111;;;[];;;;text;t2_16bdvg;False;False;[];;Its seems like everyone who attends this school suffers in life and forced to live through hell at one point;False;False;;;;1610721947;;False;{};gjcidef;False;t3_kx96wn;False;True;t1_gjbnu0d;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjcidef/;1610801727;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zenograff;;;[];;;;text;t2_p9qlh;False;False;[];;Wow first time I read this. Takano doesn't deserve redemption.;False;False;;;;1610722069;;False;{};gjcils1;False;t3_kx96wn;False;True;t1_gj98g1t;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjcils1/;1610801865;3;True;False;anime;t5_2qh22;;0;[]; -[];;;8andahalfby11;;MAL;[];;https://myanimelist.net/animelist/thereIwasnt;dark;text;t2_kvyfg;False;False;[];;"> Maybe Ange will pop up somehow and this'll turn into an Umineko crossover?! - -Ange was born in 1980. Some quick math will show you why her appearing is unlikely.";False;False;;;;1610722354;;False;{};gjcj5t9;False;t3_kx96wn;False;True;t1_gj8vz4g;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjcj5t9/;1610802207;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zeroryoko1974;;AP;[];;http://www.anime-planet.com/users/zeroryoko1974/anime/watching?i;dark;text;t2_j0nr2;False;False;[];;"> Hayami Show - -Thought that sounded familiar. He is the evil dad in Food Wars, and Rin's dad in Fate Zero, Chino's father in Guchumon, and the head priest in Bookworm. Sure does play a lot of fathers lol";False;False;;;;1610724098;;False;{};gjcmnzg;False;t3_kx9qo8;False;False;t1_gj9ni9v;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjcmnzg/;1610804447;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AiraIchigo;;;[];;;;text;t2_1vf44vm3;False;False;[];;"Yeah. I kinda think it's not a good idea to show this and Code Black at the same time. I can already see some on the other side bashing this season already. Really, if CAW doesn't exist, then either is Black. At times like this, I'm glad that the decision to make another season is based on blu-ray sales in Japan, hope it goes well this time. But well, based on the materials alone, this is most likely the last season already, so cheers. -P.S. With people reaction, I got a hunch CAW will get back on its feet with cancer cell episode.";False;False;;;;1610726267;;False;{};gjcr4sc;False;t3_kx9qo8;False;False;t1_gja359n;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjcr4sc/;1610807405;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AiraIchigo;;;[];;;;text;t2_1vf44vm3;False;False;[];;"Yeah. I kinda think it's not a good idea to show this and Code Black at the same time. I can already see some on the other side bashing this season already. Really, if CAW doesn't exist, then either is Black. At times like this, I'm glad that the decision to make another season is based on blu-ray sales in Japan, hope it goes well this time. But well, based on the materials alone, this is most likely the last season already, so cheers. -P.S. With people reaction, I got a hunch CAW will get back on its feet with cancer cell episode.";False;False;;;;1610726299;;False;{};gjcr77r;False;t3_kx9qo8;False;True;t1_gjc1b44;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjcr77r/;1610807453;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kassavfa;;;[];;;;text;t2_3mp20rnz;False;False;[];;"Somebody could be fuelling them with information so they targets Rika specifically. - -First part with Rena, the culprit probably testing the power to induce L5. - -Second part with Mion, after found out how they can induce L5 try to aims at Rika by fueling the info thus explaining how paranoid Mion is hating on Rika. - -Third part with Ooishi, the culprit finally able to aims at Rika and make him do the execution. - -Later with Akasaka, Mion's mother, Village Leader, and K1 they do the same induce L5 and aims at Rika but made it more harder to guess the pattern by using different actor everytime thus making Rika unable to win, giving it to K1 at early dates specifically seems like the culprit really wants to break Rika's hope.";False;False;;;;1610726684;;False;{};gjcs05c;False;t3_kx96wn;False;True;t1_gjblqst;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjcs05c/;1610808050;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kassavfa;;;[];;;;text;t2_3mp20rnz;False;False;[];;Nope there's one instance when all the people got infected with parasites thus making K1 and Rena tag team killing people for the sake of protecting themselves and their friends.;False;False;;;;1610726811;;False;{};gjcs9kg;False;t3_kx96wn;False;True;t1_gjafydi;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjcs9kg/;1610808226;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Euan_Chew;;;[];;;;text;t2_s7ksihi;False;False;[];;playing dead. surprisingly calm tho;False;False;;;;1610730774;;False;{};gjd0vn9;False;t3_kx96wn;False;True;t1_gj9y2fu;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjd0vn9/;1610814240;3;True;False;anime;t5_2qh22;;0;[];True -[];;;Euan_Chew;;;[];;;;text;t2_s7ksihi;False;False;[];;the first half was really slow due to it being newcomer friendly but now that this is uncharted territory, no pulling punches anymore;False;False;;;;1610731383;;False;{};gjd287y;False;t3_kx96wn;False;True;t1_gj8y5qf;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjd287y/;1610815284;1;True;False;anime;t5_2qh22;;0;[];True -[];;;Almondjoy247;;;[];;;;text;t2_ekw78;False;False;[];;">well, that's kinda what i meant. the existence of the ""maggot disease"" is in her scrapbooks, - -My point wasn't to say that to takano didn't know about the maggots, just that the maggot hallucination is a normal side effect that is sometimes brought on from being L5 and does not directly link these crimes with Takano.";False;False;;;;1610731635;;False;{};gjd2s0g;False;t3_kx96wn;False;True;t1_gjbhzog;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjd2s0g/;1610815681;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lilyium;;;[];;;;text;t2_mbro1;False;False;[];;"Could it be when Rika does her adorable Monogatari head tilt? - -Of course not, it was after the hard cut Akasaka scene wasn't it? -My eyes and brain also paused there too.";False;False;;;;1610731695;;1610732072.0;{};gjd2wr4;False;t3_kx96wn;False;True;t1_gjbuewh;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjd2wr4/;1610815790;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Euan_Chew;;;[];;;;text;t2_s7ksihi;False;False;[];;same. The later half of the season is definitely better. The first half was just teasing new content due to newcomers;False;False;;;;1610731913;;False;{};gjd3dzp;False;t3_kx96wn;False;True;t1_gj9dhi5;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjd3dzp/;1610816110;2;True;False;anime;t5_2qh22;;0;[];True -[];;;Zechtum;;;[];;;;text;t2_yvj5xvd;False;False;[];;Akasaka, still can’t believe what we saw;False;False;;;;1610733718;;False;{};gjd7d7i;False;t3_kx96wn;False;True;t1_gjd2wr4;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjd7d7i/;1610818824;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sssesoj;;;[];;;;text;t2_jccym;False;False;[];;I don't remember akasaka doing anything aside from kicking one guy's ass.;False;False;;;;1610734115;;False;{};gjd88ac;False;t3_kx96wn;False;True;t1_gj8vz4g;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjd88ac/;1610819434;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Consistent-Ad-8571;;;[];;;;text;t2_7h9ilxb5;False;False;[];;I have a theory that Rika is going to be prepared to kill herself with the shard and then finally notice that the statue's arm isn't broken. I feel like that has got to be mentioned at some point.;False;False;;;;1610735848;;False;{};gjdc1dj;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjdc1dj/;1610822106;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bacon_this;;;[];;;;text;t2_3spi34j2;False;False;[];;Not you alone. I'm guessing they might want to make it more distinctive, opposite with the depressing Black.;False;False;;;;1610737620;;False;{};gjdfvkg;False;t3_kx9qo8;False;True;t1_gjb9oc9;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjdfvkg/;1610824804;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Burian0;;;[];;;;text;t2_u0ho4;False;False;[];;"I agree with yout points regarding VA but it's not just that imo. - -Horror without suspense is always goofy, and Gou is not very good at suspense in general. And of course you can't have too much suspense when you already ""got it"" that we're going to see Rika being killed over and over by random people for several minutes. - -Akasaka's loop itself was pretty well executed at first with the sudden cut into despair but then it goes on and on with Rika surviving being opened up, having her throat slit and exploding in flames. Repeat that 4 times with random people killing her and it just feels like some kind of torture porn.";False;False;;;;1610738577;;False;{};gjdhx87;False;t3_kx96wn;False;True;t1_gj9b13j;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjdhx87/;1610826135;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhritz_;;;[];;;;text;t2_5bmxqow7;False;False;[];;5Death run any% WR;False;False;;;;1610740022;;False;{};gjdkz8k;False;t3_kx96wn;False;True;t1_gj8wlmr;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjdkz8k/;1610828254;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhritz_;;;[];;;;text;t2_5bmxqow7;False;False;[];;"Yes... - -...**But i'll try to beat it** *\*Scratches his throat\**";False;False;;;;1610740536;;False;{};gjdm259;False;t3_kx96wn;False;True;t1_gj9asko;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjdm259/;1610829083;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhritz_;;;[];;;;text;t2_5bmxqow7;False;False;[];;haha loop go brrrr;False;False;;;;1610740616;;False;{};gjdm87r;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjdm87r/;1610829208;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;;;[];;;;text;t2_4la0rf79;False;False;[];;Own experience?;False;False;;;;1610741269;;False;{};gjdnlji;True;t3_kx9axj;False;True;t1_gj8ulvq;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gjdnlji/;1610830238;1;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 150, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Thank you stranger. Shows the award.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'icon_width': 2048, 'id': 'award_f44611f1-b89e-46dc-97fe-892280b13b82', 'is_enabled': True, 'is_new': False, 'name': 'Helpful', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;gabriel_GAGRA;;;[];;;;text;t2_4la0rf79;False;False;[];;"Sorry, this was lost in the notifications. Well, this is kinda of a tough question, I usually just search the anime name and get the one that has it in 720p res at least. -As English is not my main language, the websites I use only have animes in Portuguese, so it would probably be useless for me to say what are they";False;False;;;;1610741415;;False;{};gjdnwfa;True;t3_kx9axj;False;True;t1_gj9egss;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gjdnwfa/;1610830460;1;True;False;anime;t5_2qh22;;1;[]; -[];;;Sophia-Eldritch;;;[];;;;text;t2_3q1f4ih1;False;False;[];;Yes?;False;False;;;;1610741440;;False;{};gjdnyci;False;t3_kx9axj;False;True;t1_gjdnlji;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gjdnyci/;1610830501;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;;;[];;;;text;t2_4la0rf79;False;False;[];;Maybe?;False;False;;;;1610741579;;False;{};gjdo8vi;True;t3_kx9axj;False;True;t1_gjdnyci;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gjdo8vi/;1610830722;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ctom42;;MAL;[];;http://myanimelist.net/animelist/ctom42;dark;text;t2_88gbg;False;False;[];;"> Also St. Lucia, so tiny Ange next episode pls. - -Rika mentions that her life at St. Lucia is 5 years in the future. This would put it 2 years after the Rokkenjima incident. We don't have exact confirmation of when Ange began attending St. Lucia, but it's certainly a possibility she would be there in this timeframe. That is of course if Umi and Higu can both exist in the same fragment.";False;False;;;;1610741845;;False;{};gjdot2v;False;t3_kx96wn;False;True;t1_gj8yzgt;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjdot2v/;1610831110;3;True;False;anime;t5_2qh22;;0;[]; -[];;;darkhappy1;;;[];;;;text;t2_qaj58gb;False;False;[];;"I think Gou is capable of suspense considering the creeping dread of the episode 14 massacre, but the script, shot composition, and breakneck speed of episode 15 colored the hopelessness of Rika's predicament with extremely dark, absurd, self-aware humor. - -The rapid brutality on its own is shocking, but the situations get wackier each loop: - -1. L5 Akasaka is devastating, but with the very first cut, Rika is smiling like a cruel joke for herself and viewers. The house explodes right after her friends ask her to ""shout if you're alright!"" -2. Akane Sonozaki, sexy samurai yakuza mama. -3. Kimiyoshi's murder method is drawn out and painful, but that makes his ramblings more tedious to Rika than threatening. He's a babbling old man that she doesn't take seriously at all. His voice and animation are suitably ridiculous. Rika's lines in the boat might be the funniest and most ""I'm done with this"" quips in the show so far. -4. The first shots inside Angel Mort are thighs and boobs like usual... but with blood. Rika sits around in carnage like the ""This is fine"" meme. - -Tone is a difficult balancing wire act that also depends on the viewer though, so that's why the episode is receiving conflicting reactions. The question of ""who kills?"" has become practically irrelevant with this episode because It feels like the show is throwing carnage in the face of viewers that wanted more gore in the first half. I'm interested to see how this troll episode contributes to the whole series' toying with expectations.";False;False;;;;1610743219;;False;{};gjdroy2;False;t3_kx96wn;False;True;t1_gjdhx87;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjdroy2/;1610833030;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Burian0;;;[];;;;text;t2_u0ho4;False;False;[];;"I agree which what you say but I still don't think it's intended or, if it is, it's this director's ""thing"" which doesn't really work for me. - -As far as gore scenes go, this episode is not the exception. Ep.4 had great momentum with Rena until she stabbed Keiichi. Rena's stabbing scene and Keiichi & Teppei's batting tantrum were also very over the top with blood-soaked people with way too much HP flailing around splatting blood everywhere. - -The E14 massacre would probably be the most suspenseful act of Gou but the fact we've been told everything that happened one episode ago seemed almost like they hate suspense. That scene would have been great as the ending of ep.13 instead of the recap we got.";False;False;;;;1610745556;;False;{};gjdwk75;False;t3_kx96wn;False;True;t1_gjdroy2;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjdwk75/;1610836290;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dallypardon;;;[];;;;text;t2_773dg1h0;False;False;[];;Sorry to be that person but Keiichi had a flashback of killing rena first episode. Not to mention he killed Satako’s uncle with a baseball bat, leaving Satako with her Uncle’s blood splattered across her face. That was two episodes ago, when Rena watched everyone get killed at the festival. So we have seen everyone kill someone but what is strange is Takano’s role has dwindled away these last few episodes. And Takano was the key last time to beating Rika’s cycles of fate last time. That is until she died at an older age and got sent back to this one. So sad.;False;False;;;;1610745639;;False;{};gjdwqd2;False;t3_kx96wn;False;True;t1_gj9y6h6;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjdwqd2/;1610836408;0;True;False;anime;t5_2qh22;;0;[]; -[];;;HamuelLJackcheese;;;[];;;;text;t2_l2oaw;False;False;[];;"For a brief moment, the camera was on Satoko's back overlooking the building on fire. I have a feeling that this is a huge hint... or maybe I'm overthinking it. - -Seriously... Satoko is sus AF";False;False;;;;1610745708;;False;{};gjdwvhc;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjdwvhc/;1610836500;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CriticalPerformance;;;[];;;;text;t2_58c2kp;False;False;[];;"Knox arent strict rules, just guidelines, you can apply Knox since most of it is just basic decency as a writer - -A random person cant be the culprit because it would just be shit writing - -Rika(the detective in this case) cant be the culprit because it would go against the plot itself - -You cant have Hanyuu just go and tell Rika who the culprit is because it wouldnt feel rewarding";False;False;;;;1610745785;;False;{};gjdx15q;False;t3_kx96wn;False;True;t1_gjbakxi;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjdx15q/;1610836610;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CriticalPerformance;;;[];;;;text;t2_58c2kp;False;False;[];;Theres is the chat in Episode 5 that tells you that the Decalogue arent strict rules;False;False;;;;1610745831;;False;{};gjdx4j5;False;t3_kx96wn;False;True;t1_gjbdalp;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjdx4j5/;1610836673;1;True;False;anime;t5_2qh22;;0;[]; -[];;;smalltownbunny;;;[];;;;text;t2_22o6gnk;False;False;[];;does rika remember takano being the mastermind?;False;False;;;;1610749510;;False;{};gje4ida;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gje4ida/;1610841635;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sr_DingDong;;;[];;;;text;t2_5zf6k;False;False;[];; u/profanitycounter;False;False;;;;1610749881;;1610779169.0;{};gje58n8;False;t3_kx9qo8;False;True;t1_gjc1b44;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gje58n8/;1610842109;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;allcatshavewings;;;[];;;;text;t2_6ql075n9;False;False;[];;About the scenes looking 'goofy' and over the top... It reminded me of the Umineko killings where the witches played with their victims, and the L5 depictions in this episode looked so different from the original that it looks almost as if the characters were being possessed instead of being sick;False;False;;;;1610752964;;False;{};gjeb55j;False;t3_kx96wn;False;True;t1_gj9b13j;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjeb55j/;1610845923;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MalabongLalaki;;;[];;;;text;t2_1032jb;False;False;[];;"I really like this episode! Thay big injection, it's too cute. So a weaker version of the virus enters the body. I wonder how weird the wbc when they see one. - -Then for that acting for the second act! How cute when they are playing bait.";False;False;;;;1610755112;;False;{};gjef4pg;False;t3_kx9qo8;False;True;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjef4pg/;1610848433;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Greenawalt_Gaming;;;[];;;;text;t2_463fnkfu;False;False;[];;Yeah, but thank you though;False;False;;;;1610755729;;False;{};gjegajq;False;t3_kx9axj;False;True;t1_gjdnwfa;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gjegajq/;1610849171;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bleutofu2;;;[];;;;text;t2_23ov9qcz;False;False;[];;Im showing antivaxxers this episode the next time some idiot “reeee vaccines are bad!!!”;False;False;;;;1610758880;;False;{};gjem3ut;False;t3_kx9qo8;False;True;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjem3ut/;1610852901;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jaumander;;;[];;;;text;t2_xj347;False;False;[];;"They know of it, but they thought it was destroyed. -(Well at least they know of the version in its early stages, they don't know about the improved version that Tokyo manufactured for mass killings.)";False;False;;;;1610759903;;False;{};gjenz2y;False;t3_kx96wn;False;True;t1_gj9t9ug;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjenz2y/;1610854118;3;True;False;anime;t5_2qh22;;0;[]; -[];;;imaginary_num6er;;;[];;;;text;t2_jjarg;False;False;[];;I thought it was the whole Shimion thing where Shion is Mion and Mion is Shion at birth?;False;False;;;;1610760843;;False;{};gjeponp;False;t3_kx96wn;False;True;t1_gjateoj;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjeponp/;1610855191;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jaumander;;;[];;;;text;t2_xj347;False;False;[];;"->the point> - -your head";False;False;;;;1610761781;;False;{};gjere4y;False;t3_kx96wn;False;True;t1_gj9kla6;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjere4y/;1610856243;1;True;False;anime;t5_2qh22;;0;[]; -[];;;skurttengil;;;[];;;;text;t2_ujxei;False;False;[];;What point? To have 0 buildup and a comedy montage?;False;False;;;;1610762453;;False;{};gjesm4v;False;t3_kx96wn;False;True;t1_gjere4y;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjesm4v/;1610856970;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Damianx5;;;[];;;;text;t2_owd0o;False;False;[];;"> anti-vaxxers should fucking watch this episode lmao - -No point, they will just call it pharmaceutics propaganda or some shit like that and call it fake";False;False;;;;1610764086;;False;{};gjevlwt;False;t3_kx9qo8;False;False;t1_gjcewfu;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjevlwt/;1610858723;6;True;False;anime;t5_2qh22;;0;[]; -[];;;transfusion;;;[];;;;text;t2_4nxug;False;False;[];;Oh god, if best boi Battler shows up itll be aoty of all years;False;False;;;;1610764362;;False;{};gjew41c;False;t3_kx96wn;False;True;t1_gj9ihli;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjew41c/;1610859019;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sailor_sega_saturn;;;[];;;;text;t2_12grb1;False;False;[];;Top 4 Anime Betrayals;False;False;;;;1610767132;;False;{};gjf0z76;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjf0z76/;1610861916;1;True;False;anime;t5_2qh22;;0;[]; -[];;;manaci;;;[];;;;text;t2_1f2hc0lq;False;False;[];;I meant when Rika was at St. Lucia: although a baby Ange appearance would be fascinating in its own right!;False;False;;;;1610768467;;False;{};gjf373g;False;t3_kx96wn;False;True;t1_gjcj5t9;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjf373g/;1610863180;1;True;False;anime;t5_2qh22;;0;[]; -[];;;8andahalfby11;;MAL;[];;https://myanimelist.net/animelist/thereIwasnt;dark;text;t2_kvyfg;False;False;[];;The point was that there's no reason why 8yo Ange would cross paths with 16yo Rika. If they were to encounter anyone from Umineko, it would need to be a few years earlier, in a situation where they're accessible. The only person who they could encounter in '88 would either be Eva or someone with a witch-alt. Anyone else would need to be a flashback.;False;False;;;;1610769267;;False;{};gjf4i21;False;t3_kx96wn;False;True;t1_gjf373g;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjf4i21/;1610863912;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mechengr17;;;[];;;;text;t2_bfq0pqd;False;False;[];;Bold of you to assume I have any hope left;False;False;;;;1610769702;;False;{};gjf57nb;False;t3_kx96wn;False;True;t1_gj8wyw5;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjf57nb/;1610864298;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mechengr17;;;[];;;;text;t2_bfq0pqd;False;False;[];;"This - - -No one knew about this before, but suddenly everyone knows";False;False;;;;1610770020;;False;{};gjf5qbc;False;t3_kx96wn;False;True;t1_gj8ysan;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjf5qbc/;1610864579;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mechengr17;;;[];;;;text;t2_bfq0pqd;False;False;[];;"I was honestly thinking that - - -At least Subaru gets a new save point after reaching certain checkpoints. - - - -After 100 years, it took Rika 100 years to defeat Takano. Then, she forgot to hit save and Jerry messed everything up for her.";False;False;;;;1610770766;;False;{};gjf6xlv;False;t3_kx96wn;False;True;t1_gj8vi5f;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjf6xlv/;1610865251;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Joke_Induced_Pun;;;[];;;;text;t2_b65jv;False;False;[];;Both this and Code Black had pretty enjoyable episodes, watching the latter and then the former is a nice palette cleanser, but still a treat.;False;False;;;;1610771426;;False;{};gjf7zp6;False;t3_kx9qo8;False;True;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjf7zp6/;1610865828;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fawful999;;;[];;;;text;t2_5x0425a2;False;False;[];;You only need to be in Hinamizawa to catch HS, Keiichi, Takano, and Ooishi all get HS and their not from Hinamizawa.;False;False;;;;1610774340;;False;{};gjfcbop;False;t3_kx96wn;False;True;t1_gjc110g;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjfcbop/;1610868213;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DomOfMemes;;;[];;;;text;t2_14x5xv;False;False;[];;Ah yea ic;False;False;;;;1610783011;;False;{};gjfmzyg;False;t3_kx96wn;False;False;t1_gjfcbop;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjfmzyg/;1610874050;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaiipikachu86;;;[];;;;text;t2_3s691qzw;False;False;[];;"Looks like they darkened the blood to me. - -So this episodes some how have too much blood for TV, yet the stabbing isn't as bad as last time.";False;False;;;;1610786576;;False;{};gjfqj2u;False;t3_kx96wn;False;True;t1_gj8xgkw;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjfqj2u/;1610875910;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bitfrost41;;;[];;;;text;t2_f9wm3;False;False;[];;"Jesus. Fucking. Christ. I was ready for a slice of life episode (Well one of the loops gave us a ""slice of life""), but damn, they didn't give us the chance to breathe on this one.";False;False;;;;1610787283;;False;{};gjfr7p3;False;t3_kx96wn;False;False;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjfr7p3/;1610876272;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tiniestkid;;;[];;;;text;t2_22bafsi;False;False;[];;Maybe it's the other looper that Hanyuu (might've) alluded to. I originally thought Hanyuu was referring to Rika but maybe it was actually another looper like other people said last episode.;False;False;;;;1610791286;;False;{};gjfuzvr;False;t3_kx96wn;False;True;t1_gj907fz;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjfuzvr/;1610878282;1;True;False;anime;t5_2qh22;;0;[]; -[];;;__bacs;;;[];;;;text;t2_1hyovv64;False;False;[];;What the hell is this episode!? Its so hard to watch! Poor Rika.;False;False;;;;1610797681;;False;{};gjg418t;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjg418t/;1610882518;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nanoha_Takamachi;;;[];;;;text;t2_5hvgp;False;False;[];;Scishow recently had a episode about this: [The Untold Story of the First Vaccine](https://www.youtube.com/watch?v=jtqAqL3fn64);False;False;;;;1610798244;;False;{};gjg50v6;False;t3_kx9qo8;False;True;t1_gjb610v;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjg50v6/;1610882957;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RDOoM;;;[];;;;text;t2_i9bs4;False;False;[];;"Noo... Akasaka... You were the chosen one. You were supposed to save Rika, not stab her. - -Uf, Rika had quite the rough time these cycles. - -I can't wait to see the next and 'last' one, surely, something special it's going to happen. Like the reveal about the other looper?";False;False;;;;1610800662;;False;{};gjg9bi7;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjg9bi7/;1610884911;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CosmicPenguin_OV103;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cosmic_Penguin;light;text;t2_1ufwqhs7;False;True;[];;"That first part should be made compulsory watching for every one in the news to try to squeeze out some more people on how vaccines work right now, regardless of which part of the world you live in. - -And I learnt something new with the second part! I didn't know that there's such a tissue at the stomach's bottom that has a bunch of lymph nodes until today. What a funny way to illustrate that with our germs trying to be so comedic! - -Nothing beats the sound of Red Blood Cell HanaKana every episode though...";False;False;;;;1610815099;;False;{};gjh45b2;False;t3_kx9qo8;False;True;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjh45b2/;1610902264;1;True;False;anime;t5_2qh22;;0;[]; -[];;;firathjfrancis;;;[];;;;text;t2_9aun74n5;False;False;[];;"We'll see - Hopefully you are right and Rika is not facing the same ""curse"" as she did before, i.e. not the same ""enemy"". While the x rule is still happening (someone randomly succumbs to H Syndrome), the Y is less certain (because, as you said, events are happening prior to the W festival). The Z rule is barely mentioned so i don't think it's relevant. -I'm quite interested in theories that mention another ""looper"" such as Takano, Keiichi or even Satoko but unless 7th expansion is planning on reviving Umineko, I don't buy in Featherine involvement. Let's wait and see!";False;False;;;;1610818337;;False;{};gjhcgne;False;t3_kx96wn;False;True;t1_gjappk7;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjhcgne/;1610907701;1;True;False;anime;t5_2qh22;;0;[]; -[];;;omu_55;;;[];;;;text;t2_6wjkpqqq;False;False;[];;What is that? I've never heard about this.;False;False;;;;1610821082;;False;{};gjhjd87;False;t3_kx96wn;False;True;t1_gjeponp;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjhjd87/;1610911836;1;True;False;anime;t5_2qh22;;0;[]; -[];;;omu_55;;;[];;;;text;t2_6wjkpqqq;False;False;[];;Keiichi killing Teppei was self defense, and flashbacks to previous loops - which didn't even happen in this season - are not the same as seeing it strech out for multiple episodes - especially, if you consider newcomers have never really seen Keiichi descende into madness. With the few fleshbacks Keiichi was getting, a new watcher could have gotten the impression Keiichi can hardly succumb, implying his flashbacks help him avoid tragedy on his part (and his leading/motivational skills are very protagonist like). I imagine they needed to shatter that. I don't know about Takano. Most tragadies start to fold out even before her scheme can effect Rika or others. If you look at the dates in this episode, they not even making it to the festival in the last loops, and before that Oiishi went crazy on the night, when Rika started to poke around for Takano.;False;False;;;;1610822245;;False;{};gjhmedi;False;t3_kx96wn;False;True;t1_gjdwqd2;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjhmedi/;1610913715;1;True;False;anime;t5_2qh22;;0;[]; -[];;;omu_55;;;[];;;;text;t2_6wjkpqqq;False;False;[];;I think the first two arcs were just to play with your expectations. You know how the play goes, you know how to save it, but it ends up being a disaster anyway. It's a hint to you that something is different, there is a new variable - for old viewers at least. When we'll find out what that is, the changes can be explained in like 4 sentences or in an overall narrative Rika will be able to piece it together. But again, Rena usually goes crazy because of her family situation, and Shion because of Satoshi, and neither has been introduced to the new audience yet. They are very conscious about them as well. So I think they still have to tell those stories anyway.;False;False;;;;1610823990;;False;{};gjhqoad;False;t3_kx96wn;False;True;t1_gj8w445;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjhqoad/;1610916454;1;True;False;anime;t5_2qh22;;0;[]; -[];;;omu_55;;;[];;;;text;t2_6wjkpqqq;False;False;[];;Definitely. She lived a life after they broke the loop once, and before Oiishis rampage she's asking about her If i recall correctly. But I don't think she's the mastermind of whatever is going on right now.;False;False;;;;1610824339;;False;{};gjhrj10;False;t3_kx96wn;False;True;t1_gje4ida;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjhrj10/;1610917043;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SogePrinceSama;;MAL;[];;http://myanimelist.net/animelist/teacake911;dark;text;t2_p55wn;False;False;[];;"Jessica Ushiromiya is highly possible to be Rika's classmate during the time she attends St. Lucia's. It would be easy for her to be the link between the two When They Cry series in Gou, and in fact it would be kinda weird for the two to not know each other. - -We know that Jessica [I guess Umineko spoilers, maybe?](/s ""brings Shannon to St. Lucia's at least once, and there's your way for Featherine and Hanyuu to cross paths right there, if Shannon makes contact with Rika."") The next day, Rika finds herself back in Hinamizawa to start Gou-- makes perfect sense. And perfect math.";False;False;;;;1610825197;;1610827257.0;{};gjht71e;False;t3_kx96wn;False;True;t1_gjf4i21;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjht71e/;1610918238;1;True;False;anime;t5_2qh22;;0;[]; -[];;;omu_55;;;[];;;;text;t2_6wjkpqqq;False;False;[];;Spoilers, I guess, but I assume you've seen the older seasons. There is a parasite infection in Hinamizawa. Everyone who lives in the village, or spends a good amount of time there can get infected. Its permanent, there is no cure. The parasite can induce all the symptoms you always see: hallucination, paranoia, feeling of maggots crawling under your skin. It's speculated that it stays dormant until some high stress situation hits the individual. A person can leave Hinamizawa for a long time as well, there is no gurantee they start developing the syndrome, they can live they whole life far away without getting affected. It's not clear how the parasite is passed from one person to the other, but there are 5 satges of syndrome. I also didn't really remember this information, but you can find it all in the shows wiki.;False;False;;;;1610825329;;False;{};gjhtge8;False;t3_kx96wn;False;True;t1_gjc0xav;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjhtge8/;1610918423;1;True;False;anime;t5_2qh22;;0;[]; -[];;;8andahalfby11;;MAL;[];;https://myanimelist.net/animelist/thereIwasnt;dark;text;t2_kvyfg;False;False;[];;You have major spoilers in there. Please tag.;False;False;;;;1610825511;;False;{};gjhtt7p;False;t3_kx96wn;False;True;t1_gjht71e;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjhtt7p/;1610918670;1;True;False;anime;t5_2qh22;;0;[]; -[];;;omu_55;;;[];;;;text;t2_6wjkpqqq;False;False;[];;Also, I forgot, if a person leaves Hinamizawa, starts developing the syndrome and moves back to the village, they symptoms can easy up or go away completly. Probably there is something around the town the subdues the parasite. See Renas backround story.;False;False;;;;1610825588;;False;{};gjhtz60;False;t3_kx96wn;False;True;t1_gjhtge8;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjhtz60/;1610918778;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610825712;;False;{};gjhu85e;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjhu85e/;1610918944;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SogePrinceSama;;MAL;[];;http://myanimelist.net/animelist/teacake911;dark;text;t2_p55wn;False;False;[];;"I'm hopeful that with 3 more episodes in this arc to go (and only 1 more loop that Rika is willing to live through) there will be a point where we get to see a flashforward of her life in St. Lucia's, and maybe get more info on who/what killed her in the future to force her to re-experience the Hinamizawa looping. - -My guess is the last day Rika spent at St. Lucia's is the same day that Jessica Ushiromiya brings her servant, Kanon, to visit the school. Something must have happened, in terms of witchcraft, to make somebody believe (IN RED TEXT) that killing Rika and trapping her in a logic error would make it so that the past could be changed-- perhaps someone from Umineko no Naku Koro ni wants to rewrite history and is using Rika to facilitate that...";False;False;;;;1610826364;;1610828461.0;{};gjhvin2;False;t3_kx96wn;False;True;t1_gj9277j;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjhvin2/;1610919880;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SogePrinceSama;;MAL;[];;http://myanimelist.net/animelist/teacake911;dark;text;t2_p55wn;False;False;[];;EDIT Whoops I just reedited my original comment and put spoiler tags up, you right;False;False;;;;1610826771;;1610828549.0;{};gjhwahl;False;t3_kx96wn;False;False;t1_gjhtt7p;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjhwahl/;1610920442;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jexlan;;;[];;;;text;t2_df5l64b;False;False;[];;remind me again, what causes just 1 person to go crazy? it just spontaneously happens?;False;False;;;;1610827084;;False;{};gjhwwp9;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjhwwp9/;1610920844;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SogePrinceSama;;MAL;[];;http://myanimelist.net/animelist/teacake911;dark;text;t2_p55wn;False;False;[];;"The brief flashback to St. Lucia's at the end of Rika's current suffering gives me hope that maybe before the end of this arc (3 episodes left!) she'll flashforward to the future that she left at the school and we may get some Umineko references. - -I hypothesize that Jessica Ushiromiya is her classmate at St. Lucia's. If you've played that game, you might remember a scene where Jessica brings her servant at the mansion Shannon with her to visit (or it might be her other servant Kanon, I can't really recall). Let's imagine that Rika and the servant crossed paths-- the possibilities are endless! - -Ask yourselves (if you've played Umineko) [possible Umineko spoilers](/s ""why ever would Shannon or Kanon possibly want to trap Rika in the loop and change the past? Why ever would they possibly want to redo the time period before befriending Jessica and the rest of the Ushiromiya cousins? Is there a particular reason for the servants to want to change history?"")";False;False;;;;1610827435;;1610829007.0;{};gjhxlie;False;t3_kx96wn;False;True;t1_gj8qsbu;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjhxlie/;1610921310;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexDragneell;;;[];;;;text;t2_8dza636o;False;False;[];;"What an incredible episode. Interestingly, Satoko is lying on the floor during Keicchi's attack, but she is not dead and like all previous deaths, we never see her death on screen. - -The episode does not answer how Rika died in the first two arcs, we must remember that it is the only arc that we have confirmation of the death of Satoko, since in tataridamashi-hen, her death is not displayed.I have a theory that the mystery girl from the opening is the grown-up Satoko, if we look closely, this mystery girl looks older and looks like she's wearing some uniform, so I think Satoko went with Rika to school. - -We must remember that Rika does not remember how she died, she remembers living at the new school after 5 years in Hinamizawa, but she does not remember how she died and I believe that this is important - -Akasaka killing Rika was painful to see. - -I believe that just like in the original, we will only know the identity of the mentor at the end of Nekodamashi-hen, so in the next arc, Rika will know what to do. - - -the mysterious girl at the opening is untying a tie, which may be the same as Rika's uniform, that is, it may mean that we know her. - -Unlike many, I do not want a second season of Gou, I can not stand to see so much disgrace happening to Rika and also, I believe that Higurashi is getting saturated";False;False;;;;1610827796;;1610829562.0;{};gjhya8w;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjhya8w/;1610921772;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Heigou;;;[];;;;text;t2_c23wx;False;False;[];;they swapped places and Shion got the tatoo that identifies her as Mion. Might be vn stuff since I don't remember them mentioning it in the original anime. To avoid needless confusion, don't even bring this up lol. as if watanagashi wasn't confusing enough.;False;False;;;;1610828253;;False;{};gjhzb41;False;t3_kx96wn;False;True;t1_gjhjd87;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjhzb41/;1610922446;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Heigou;;;[];;;;text;t2_c23wx;False;False;[];;The reason was that fact that they couldn't find the parasites in deceased people. Takano wanted to dissect living people, but irie didn't want any of it. She did bring in some criminal before rika's mom.;False;False;;;;1610828755;;False;{};gji0lj0;False;t3_kx96wn;False;True;t1_gjauold;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gji0lj0/;1610923234;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexDragneell;;;[];;;;text;t2_8dza636o;False;False;[];;" -After reading some comments, I keep thinking, I believe that Chie killed Rika in Watadamashi-Hen.";False;False;;;;1610828874;;False;{};gji0wi8;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gji0wi8/;1610923419;1;True;False;anime;t5_2qh22;;0;[]; -[];;;imaginary_num6er;;;[];;;;text;t2_jjarg;False;False;[];;Yup. My point is that even though the police identified the body as Shion, but it could be Mion since they probably gone off the tattoo and not DNA evidence.;False;False;;;;1610830028;;False;{};gji3s36;False;t3_kx96wn;False;True;t1_gjhzb41;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gji3s36/;1610925201;1;True;False;anime;t5_2qh22;;0;[]; -[];;;omu_55;;;[];;;;text;t2_6wjkpqqq;False;False;[];;"Pretty solid ideas.If I may offer some challanges:First off, you can't be sure Mion went crazy. It's most likely to be Shion, Mion's never succumbed to the disaese before. It's still a possibility, though, Shion is just the more likely candidate, really. - - -Idk about Takano, there is no info about her at all. Takano starts really losing it during and after the festival (originally). I think her role doesn't change, or I don't think her already very complicated story line would be altered that much. I can imagine she'll become an ally for Rika, actually. But this is all speculation, maybe they don't even touch this story line at all, I feel like something totally separate is going on. And Rika isn't really a queen carrier, I'm not sure if you are clear on that, I remembered it foggy as well. - -I don't think matters which side character lost it in these small sequences we saw, it's the fact they are not expected to. These are not the usual loops that Rika used to. - -I've never though Teppei was suffering from the syndrome when he attacked Keiichi, he was just pissed, he almost got him locked up in prison. But you are right, the red-eye could be something to keep in mind. Also, Oiishi shows up at the festival with the already used bat. So there's no way to tell what went down between Oiishi, Satoko, and Teppei. My best guess - based on the infos - Oiishi could have planed something with Teppei, and since he was trash already, he went with it. So it all can come down to Oiishis infected state. - -Hanyuu and Satoko are sus indeed. I wouldn't try to guess what happens tho based on no evidence. Tbh I've never suspected Satoko until I read some comments, so it's a very subtile hint, but still very valid. If we are looking for more clues in the opening, every characters weapon of choice is shown, then a teddy bear. After that, we see them again with their weapons, and both Satoko and Rika are standing by the bear. It can mean they have the same weapon - time. - -For your 4 theories: - -1. If Hanyuu has the power to manipulate the organization, I think she would have the power to manipulate a random person as well. So, she could induce the symptoms by herself, she doesn't need them - you know, suspicion is enough in a lot of cases. I still don't think that the organization has anything to do with what's happening, they were only shown during the first loop. They were hanging around the hospital, so Keiichi couldn't see Irie about his fake cold, which usually doesn't happen in that loop. -2. I think this is the most likely. Hanyuu - or some other demon, who looks a lot like her - is referenced in the opening as well, and Satoko is shown very misteriously on multiple occasions. -3. A random looper plotwise would be useless and random. Hanyuu's existence and Rikas looping power are the only supernatural elements. Everything else, even the syndrome are based on real life science, so I don't think they would mess with that. -4. So are your saying Rika becomes a full fledged time traveller? If you are concerned about the sword, If Satoko is suspicious, it's more likely she took it, right?";False;False;;;;1610830079;;False;{};gji3wl2;False;t3_kx96wn;False;True;t1_gjbndzg;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gji3wl2/;1610925274;1;True;False;anime;t5_2qh22;;0;[]; -[];;;omu_55;;;[];;;;text;t2_6wjkpqqq;False;False;[];;Ah, okay. I was like, if something like that happened in the anime, I would remember. It could be vn stuff than. In the anime the tatto is only shown when you see Shions story. So, as you see the tatto on Mions back, you can figure out who really died. That's why I was confused. Thanks for the asnwer.;False;False;;;;1610830615;;False;{};gji58dw;False;t3_kx96wn;False;True;t1_gjhzb41;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gji58dw/;1610926060;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xXx_ECKS_xXx;;;[];;;;text;t2_15ribh;False;False;[];;"Thanks for the response. - -The fact that Mion has never succumbed to the disease before is why I believe she is the one who went L5 in the second arc. If it was in fact Shion, it would be the only arc where the expected L5 candidate went L5. Gou has been all about defying expectations in regards to this, as Akasaka, Ooishi, Kimiyoshi, etc. have never been shown to succumb to the symptoms either. It would be strange if it was in fact Shion, and a lot of things wouldn’t match up, such as the doll. - -I have the feeling we’ll get some more information in the next episode on Takano. It’s very possible that she becomes an Ally to Rika. She’s mostly sus in my opinion because if her motives have changed ever so slightly from the original (looped back from the future alongside Rika), with what info we have, she can’t be ruled out easily. One thing to note though, is that if she is a looper, I can’t understand why she’d be continuing to loop other than to cause Rika to suffer. This one probably isn’t too likely as you’ve mentioned. - -I don’t think Teppei was just pissed. He has no reason to know that Keiichi specifically is at fault. He could have been informed offscreen however. Although I do agree with you in that there’s no way to know what truly happened due to Ooishi’s damaged bat. So the possibility is there, but the answer feels uninspired IMO. - -Also that’s a very nice detail you noticed in the opening with the bear. It would be incredible if that came to fruition. - -And I don't really have much support for my Rika theory, just a shot in the dark lol.";False;False;;;;1610831809;;1610832045.0;{};gji8629;False;t3_kx96wn;False;True;t1_gji3wl2;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gji8629/;1610927762;1;True;False;anime;t5_2qh22;;0;[]; -[];;;smalltownbunny;;;[];;;;text;t2_22o6gnk;False;False;[];;i just find it weird rika isnt trying to do anything about takano when she knows shes the original mastermind;False;False;;;;1610835700;;False;{};gjifzfo;False;t3_kx96wn;False;True;t1_gjhrj10;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjifzfo/;1610932697;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Careless_Pudding_327;;;[];;;;text;t2_8rj9fyvi;False;False;[];;Well Akasaka wasn't even introduced either, until he was and went L5 within 5 minutes.;False;False;;;;1610836213;;False;{};gjigzg0;False;t3_kx96wn;False;False;t1_gjaeuyd;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjigzg0/;1610933299;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cincintilante;;;[];;;;text;t2_8l5rsc09;False;False;[];;i loved the reference to death parade!!! laughs too much in that part;False;False;;;;1610841414;;False;{};gjir4w3;False;t3_kx9qo8;False;True;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjir4w3/;1610939749;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CSachen;;;[];;;;text;t2_ehwb4;False;False;[];;"Isn't it noteworthy Rika is killed every time by someone going L5, including in the other Gou arcs? - -In the original series, Takano arranges for Rika's murder, because her goal is to carry out Emergency Order 34. With the exception of Watanagashi/Meakashi, Rika's murder is carried about by Takano via the Yamainu. In fact in Meakashi, the Great Hinamizawa Disaster doesn't happen and Takano loses, right? - -Isn't it problematic for Takano when Rika dies at someone else's hands or worse is ""spirited away"", because Takano needs physical proof of Rika's death and notify her higher-ups within 24 hours.";False;False;;;;1610844012;;False;{};gjiw57q;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjiw57q/;1610942913;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hexcellion;;MAL;[];;http://myanimelist.net/animelist/Hexcellion;dark;text;t2_h1m4a;False;False;[];;Someone give him Ryukishi some neck scratches, he might be feeling itchy after that episode;False;False;;;;1610849750;;False;{};gjj6u6u;False;t3_kx96wn;False;True;t1_gj8y083;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjj6u6u/;1610949384;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hexcellion;;MAL;[];;http://myanimelist.net/animelist/Hexcellion;dark;text;t2_h1m4a;False;False;[];;That episode gave me L5. That sudden cut to Rika bleeding and Akasaka going L5 broke my heart. This is probably the most painful episode I've seen so far. I can't imagine how broken Rika must be after all these occurrences (especially Akasaka going L5).;False;False;;;;1610850001;;False;{};gjj7bd1;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjj7bd1/;1610949664;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-YukihiraSoma-;;;[];;;;text;t2_1q5qjz63;False;False;[];;Yea i watched both seasons but forgot most of it so yea thanks for telling me;False;False;;;;1610850183;;False;{};gjj7ny9;False;t3_kx96wn;False;True;t1_gj9ndxd;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjj7ny9/;1610949868;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hexcellion;;MAL;[];;http://myanimelist.net/animelist/Hexcellion;dark;text;t2_h1m4a;False;False;[];;Did this happen in the OG anime?;False;False;;;;1610850544;;False;{};gjj8bqi;False;t3_kx96wn;False;True;t1_gji0lj0;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjj8bqi/;1610950251;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hexcellion;;MAL;[];;http://myanimelist.net/animelist/Hexcellion;dark;text;t2_h1m4a;False;False;[];;That's a really well-done cut. I went from being hopeful to being desperate in a few seconds. :(;False;False;;;;1610850857;;False;{};gjj8wl6;False;t3_kx96wn;False;True;t1_gj8tnmi;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjj8wl6/;1610950587;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Amber-writes-things;;;[];;;;text;t2_715uhthy;False;False;[];;"So I paused it when Akasaka showed up and mentioned his wife was still alive because I was still shocked at how this is slowly becoming less of a remake. Also I was just so happy to see him... So after I took a moment to remember what that all meant and have my moment of ""aww I love him"".... Then he immediately fucking kills her ass... I never screamed at a TV more in my life. - -This show is taking the bait and switch horror concept and just turning it up to the extreme.";False;False;;;;1610851982;;False;{};gjjayrb;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjjayrb/;1610951764;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BigBat6;;;[];;;;text;t2_5kzs0gd2;False;False;[];;Can people explain this? I watched the original a decade ago. These are completely new deaths? But we also didn't get answer arcs to the question arcs at all?;False;False;;;;1610864060;;False;{};gjjv36t;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjjv36t/;1610962960;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SciFiXhi;;ANI a-amq;[];;https://anilist.co/user/SciFiXhi/animelist;dark;text;t2_cq3gu;False;False;[];;Dirty old man Sigma;False;False;;;;1610866095;;False;{};gjjxprz;False;t3_kx96wn;False;True;t1_gjca5df;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjjxprz/;1610964325;1;True;False;anime;t5_2qh22;;0;[]; -[];;;omu_55;;;[];;;;text;t2_6wjkpqqq;False;False;[];;Well, she is the mastermind of what she is doing, but Rika keeps dying before even Takano's plot begin. She isn't the only one who moves the plot. Developing the syndrome is not strickly linked to Takano. In these episode a lot of people go L5 even before the festival starts. There are a lot of hints that something else changing the loops that has nothing to do with Takano.;False;False;;;;1610869765;;False;{};gjk1z47;False;t3_kx96wn;False;True;t1_gjifzfo;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjk1z47/;1610966575;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KansaiBoy;;;[];;;;text;t2_5p82q;False;False;[];;"It feels like he was watching Re:Zero and thought: ""So people like it when the protagonists are suffering?"" And then you tried to one-up Re:Zero.";False;False;;;;1610876102;;False;{};gjk8cdx;False;t3_kx96wn;False;True;t1_gj93td3;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjk8cdx/;1610970009;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Scrubtac;;;[];;;;text;t2_6exdm;False;False;[];;The criminal is dissected alive in the original (though I believe the act was offscreen), but Rika's mom was not.;False;False;;;;1610877384;;False;{};gjk9jh9;False;t3_kx96wn;False;False;t1_gjj8bqi;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjk9jh9/;1610970673;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Net_Flux;;;[];;;;text;t2_13gl9k;False;False;[];;"Yes but those people were given anaesthesia. Rika's mother was not given one with Takano's excuse being that it would affect the data from the brain and blood vessels. But she could essentially do an awake craniotomy by using local anaesthesia to achieve the same result (it was a proven method even before Takano's time) but doesn't do it. In fact, not giving her anaesthesia would cause her to squirm due to pain and cause problems, not to mention she also has a possibility of going into a cardiac arrest or neurogenic shock due to the extreme pain which would again be a problem. So essentially, she decides against giving her anaesthesia even if it was detrimental to her research. - -So for her torturing her victim and feeling powerful was more important than her research.";False;False;;;;1610896402;;False;{};gjlilgy;False;t3_kx96wn;False;True;t1_gji0lj0;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjlilgy/;1610994324;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Net_Flux;;;[];;;;text;t2_13gl9k;False;False;[];;We weren't shown what exactly happened to her in the anime. That doesn't mean it didn't happen. Also, the criminal was not just dissected alive. They also kept him alive forcefully for as many days as possible to perform as many tests as possible.;False;False;;;;1610896779;;False;{};gjlk1vc;False;t3_kx96wn;False;False;t1_gjk9jh9;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjlk1vc/;1610995104;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Scrubtac;;;[];;;;text;t2_6exdm;False;False;[];;Wasn't trying to say that it wasn't canonically what happened to her in the anime, just that it wasn't explicitly an event in it.;False;False;;;;1610898338;;False;{};gjlq1ox;False;t3_kx96wn;False;False;t1_gjlk1vc;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjlq1ox/;1610998336;1;True;False;anime;t5_2qh22;;0;[]; -[];;;smalltownbunny;;;[];;;;text;t2_22o6gnk;False;False;[];;true i guess i just don't get why rika wouldn't automatically consider takano her number 1 suspect;False;False;;;;1610911756;;False;{};gjmzzsn;False;t3_kx96wn;False;False;t1_gjk1z47;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjmzzsn/;1611023648;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RDOoM;;;[];;;;text;t2_i9bs4;False;False;[];;"That is one forgetful Memory cell. You had one job... - -WBC suck at acting, lol. Still, got the job done.";False;False;;;;1610918322;;False;{};gjneac8;False;t3_kx9qo8;False;True;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjneac8/;1611032567;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Oujii;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Oujii/;light;text;t2_gk9to;False;False;[];;Why would he go back randomly to Hinamizawa 5 years later?;False;False;;;;1610928513;;False;{};gjo052j;False;t3_kx96wn;False;True;t1_gj90oty;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjo052j/;1611045068;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hectorneutron;;;[];;;;text;t2_1fm72deg;False;False;[];;I mean if the god killing sword shard or whatever its not actually capable to kill Rika... We got ourselves a pretty solid origin story for Bernkastel;False;False;;;;1610948031;;False;{};gjoylyg;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjoylyg/;1611065273;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Greenawalt_Gaming;;;[];;;;text;t2_463fnkfu;False;False;[];;I have watched all of it and have so many questions, it’s currently 3:42 in the morning and I am completely puzzled on the ending, I haven’t watched an anime with a happy ending in a couple of weeks and just wow, I want a happy ending to calm me but I keep getting endings, I feel both happy yet so depressed at the ending, I feel upset that Yukki and Yuno didn’t end up together, they were perfect for each other the whole time;False;False;;;;1610959456;;False;{};gjpcmyg;False;t3_kx9axj;False;True;t1_gjdnwfa;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gjpcmyg/;1611074933;1;True;False;anime;t5_2qh22;;0;[]; -[];;;revolverzanbolt;;;[];;;;text;t2_5my8q;False;False;[];;Keiichi is the obvious exception, but Kimiyoshi is very much a supporting character, where as historically it's always been main characters who get the syndrome.;False;False;;;;1610969544;;False;{};gjpmsvz;False;t3_kx96wn;False;True;t1_gja2kw7;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjpmsvz/;1611082289;1;True;False;anime;t5_2qh22;;0;[]; -[];;;revolverzanbolt;;;[];;;;text;t2_5my8q;False;False;[];;This whole episode was fucking hilarious, and I reject anyone who says otherwise. The smash cut (lol) from Akasaka saying he'll stay to immediately seeing him murder Rika is A+++ comedy. It's like the scene from Groundhog Day where you see Bill Murray kill himself over and over.;False;False;;;;1610969706;;False;{};gjpmyud;False;t3_kx96wn;False;False;t1_gj9fjrx;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjpmyud/;1611082406;1;True;False;anime;t5_2qh22;;0;[]; -[];;;revolverzanbolt;;;[];;;;text;t2_5my8q;False;False;[];;I mean, historically she has no memories of the people who killed her, so she probably hasn't heard these things before.;False;False;;;;1610969753;;False;{};gjpn0mb;False;t3_kx96wn;False;True;t1_gj9ibsj;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjpn0mb/;1611082440;2;True;False;anime;t5_2qh22;;0;[]; -[];;;revolverzanbolt;;;[];;;;text;t2_5my8q;False;False;[];;The implication to my memory was that he succumbed after waking up in the hospital in the first (or second?) arc, although potentially that was medically induced.;False;False;;;;1610969852;;False;{};gjpn4do;False;t3_kx96wn;False;True;t1_gjafvmb;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjpn4do/;1611082513;2;True;False;anime;t5_2qh22;;0;[]; -[];;;revolverzanbolt;;;[];;;;text;t2_5my8q;False;False;[];;Umineko is a murder mystery, Rokkenjima is the island it's set on.;False;False;;;;1610970069;;False;{};gjpncfq;False;t3_kx96wn;False;True;t1_gjawqs7;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjpncfq/;1611082680;1;True;False;anime;t5_2qh22;;0;[]; -[];;;revolverzanbolt;;;[];;;;text;t2_5my8q;False;False;[];;But if Akasaka went back home in this timeline, doesn't that mean the scene where he references Rika telling him she'd be murdered this year (which he references) didn't happen in this timeline?;False;False;;;;1610970217;;False;{};gjpnhx1;False;t3_kx96wn;False;True;t1_gjbdvb7;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjpnhx1/;1611082781;1;True;False;anime;t5_2qh22;;0;[]; -[];;;revolverzanbolt;;;[];;;;text;t2_5my8q;False;False;[];;"If it's Satoko, there's no chance it's the real Satoko. The theme of the show has always been to believe in your friends, no matter how many times we saw these kids kill each other, the only thing that made a miracle happen was them relying on each other. Making Satoko the villain (not just a victim of the syndrome, but the actual mastermind) flies in the face of that. - - -If Satoko is the other looper (which I'm coming around to as a theory), then it's not actually Satoko, it's some other person or intelligence who is possessing her, possibly the ""evil Hanyuu"" from the OP people keep referencing.";False;False;;;;1610970522;;False;{};gjpntar;False;t3_kx96wn;False;True;t1_gj9ulwq;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjpntar/;1611083007;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GAGRA;light;text;t2_4la0rf79;False;False;[];;DUUUUUUDE, I told ya this didn’t look like a good anime;False;False;;;;1610976830;;False;{};gjpv9nz;True;t3_kx9axj;False;True;t1_gjpcmyg;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gjpv9nz/;1611088478;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GAGRA;light;text;t2_4la0rf79;False;False;[];;Holy shit man, I feel bad now, but can’t help as I haven’t watched it. You man find answers to the ending on YouTube or the subreddit of the anime idk. And I’m actually scared what the ending is that made you happy but also sad for they not ending up together, this thing became a harem in the ending? Lol;False;False;;;;1610976978;;False;{};gjpvh6z;True;t3_kx9axj;False;True;t1_gjpcmyg;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gjpvh6z/;1611088626;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GAGRA;light;text;t2_4la0rf79;False;False;[];;"I completely understand you in that feeling of needing a happy ending anime, I had it when I ended ToraDora (still hate it). - -Well, after getting answers for the ending, maybe you should try the one I recommended for being a funny romance anime (but anime is incomplete so good ending only in manga) or watching an anime with a good ending like Golden Time (this one is complete and is my second favourite anime of all time lol)";False;False;;;;1610977308;;False;{};gjpvy32;True;t3_kx9axj;False;True;t1_gjpcmyg;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gjpvy32/;1611088970;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Greenawalt_Gaming;;;[];;;;text;t2_463fnkfu;False;False;[];;It was nothing close to a harem, I could give a brief summary on what I collected from everything, as I did have mixed feelings on the end I don’t regret watching it as it was still a good anime, don’t get me wrong some parts scared me quite a bit but I still enjoyed watching it;False;False;;;;1610984377;;False;{};gjq7p9s;False;t3_kx9axj;False;True;t1_gjpvy32;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gjq7p9s/;1611097273;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GAGRA;light;text;t2_4la0rf79;False;False;[];;Well, good that you enjoyed watching then, but from what you said, I’m too scared to watch this thing lol. I don’t like sad endings;False;False;;;;1611008720;;False;{};gjrky8r;True;t3_kx9axj;False;True;t1_gjq7p9s;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gjrky8r/;1611127420;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Greenawalt_Gaming;;;[];;;;text;t2_463fnkfu;False;False;[];;Yeah it’s worth watching but not at late night;False;False;;;;1611016901;;False;{};gjs0as0;False;t3_kx9axj;False;True;t1_gjrky8r;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gjs0as0/;1611135746;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GAGRA;light;text;t2_4la0rf79;False;False;[];;Lol. Did u found the answers to your questions about the ending?;False;False;;;;1611017977;;False;{};gjs28yj;True;t3_kx9axj;False;True;t1_gjs0as0;/r/anime/comments/kx9axj/saw_this_scene_in_a_video_and_though_it_was_a/gjs28yj/;1611136784;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sarela_Helaine;;;[];;;;text;t2_3loa13bg;False;False;[];;Yes they are. As explained in Episode 2, Rika was in high school (having been 5 years AFTER the conclusion of the original) when she was suddenly transported back to Hinamizawa 1983. So she is back in the time loop with no explanation, so these are completely new loops.;False;False;;;;1611017999;;False;{};gjs2ai5;False;t3_kx96wn;False;True;t1_gjjv36t;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjs2ai5/;1611136807;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aska09;;;[];;;;text;t2_1ey90z6n;False;False;[];;The tattoo was a secret known only to the Sonozakis, why would the police would know about it now if they didn't in the original anime;False;False;;;;1611018668;;False;{};gjs3i18;False;t3_kx96wn;False;True;t1_gji3s36;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjs3i18/;1611137450;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aska09;;;[];;;;text;t2_1ey90z6n;False;False;[];;I haven't read the vns and it was definitely mentioned in the anime but maybe not directly. In the original adaptation, Shion, pretending to be Mion, told Keiichi and Rena about the whole demon thing in the Sonozaki bloodline and put her hand on her robe, ready to show the tattoo but also knowing Keiichi would stop her before she had to, don't know why I remember this so clearly tbh. Then in meakashi it's revealed that they switched and the ypunger sister ended up with the tattoo. Also, the tattoo itself was a secret known only to the Sonozakis, I doubt the police would know about it, especially since they misidentified them in the original anime;False;False;;;;1611018676;;False;{};gjs3ik3;False;t3_kx96wn;False;True;t1_gjhzb41;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjs3ik3/;1611137457;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kurokitsune91;;MAL;[];;http://myanimelist.net/animelist/kurokitsune91;dark;text;t2_bxpxq;False;False;[];;"Ok that went from 0 to 9000 pretty damn fast. The eyes bulging at the end. Oooof - -Also did anybody else notice the Toy Story and Aggretsuko stuff in the game shop? So much for being the 80s! 😅";False;False;;;;1611083122;;False;{};gjuyvhf;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjuyvhf/;1611205722;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hermeticcirclejerk;;;[];;;;text;t2_6yr95uf9;False;False;[];;"GHD? Fuzzy memory over here... - -Edit: Great Hinamizawa Disaster";False;False;;;;1611104861;;False;{};gjw8cs1;False;t3_kx96wn;False;False;t1_gj8vt6y;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjw8cs1/;1611230616;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UnderCoverKV220;;;[];;;;text;t2_4qheuvc5;False;False;[];;"Anyone else feeling like the Nekodamashi here stands for deceiving Rika herself? Since rika has often been dressed up as a cat in higurashi and spoilers [Umineko](/s ""since Bernkastel in umineko is basically Rika's alter ego that had to deal with all the horrific shit of the original loops and Bernkastel is often disguised as a cat? And since Bernkastel is Featherine's ""Pet""so to say, she might just be putting her through this for fun?"").";False;False;;;;1611131748;;False;{};gjxd6gw;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gjxd6gw/;1611257407;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MelioremPH;;;[];;;;text;t2_34xg6oci;False;False;[];;"Until you see Takano dissecting Rika alive without anesthesia - -P.S. I'm just saying it's a possibility since she did it with Rika's mother (dissecting the brain).";False;False;;;;1611196254;;False;{};gk0o3wx;False;t3_kx96wn;False;True;t1_gj8zu96;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gk0o3wx/;1611328555;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RemCallisto;;;[];;;;text;t2_5iddfavd;False;False;[];;"So are we maybe heading into Umineko territory? Because this feels like we are heading into umineko territory. - -Hanyu's smile in the opening gives me a sinking feeling and has been from the beginning.";False;False;;;;1611214702;;False;{};gk1gwkj;False;t3_kx96wn;False;True;t3_kx96wn;/r/anime/comments/kx96wn/higurashi_no_naku_koro_ni_gou_rewatcher_thread/gk1gwkj/;1611347469;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"# Source Material Corner - -Reply to this comment for any source-related discussion, future spoilers (including future characters, events and general hype about future content), comparison of the anime adaptation to the original, or just general talk about the source material. **You are still required to tag all spoilers.** Discussions about the source outside of this comment tree will be removed, and replying with spoilers outside of the source corner will lead to bans. - -The spoiler syntax is: -`[Spoiler source](/s ""Spoiler goes here"")` - -# **All untagged spoilers and hints in this thread will receive immediate 8-day bans (minimum).** - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610643872;moderator;False;{};gj8ueve;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj8ueve/;1610718439;1;False;True;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Pitiful-Ad-5247, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610644326;moderator;False;{};gj8vg2r;False;t3_kx9wgb;False;True;t3_kx9wgb;/r/anime/comments/kx9wgb/some_anime_recommendation_please/gj8vg2r/;1610719160;1;False;False;anime;t5_2qh22;;0;[]; -[];;;lostintheabyss_;;;[];;;;text;t2_8t71sas7;False;False;[];;Classroom of the elite and mahouka.;False;False;;;;1610644346;;False;{};gj8vhnx;False;t3_kx9wgb;False;True;t3_kx9wgb;/r/anime/comments/kx9wgb/some_anime_recommendation_please/gj8vhnx/;1610719193;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Cat_c0d3;;;[];;;;text;t2_124rwr;False;False;[];;There will probably be a season two. It was alright, Crunchyroll is just throwing as many good webtoon anime’s as they can since they partnered with them. I personally can’t wait for tower of god season 2;False;False;;;;1610644840;;False;{};gj8wmua;False;t3_kxa11y;False;True;t3_kxa11y;/r/anime/comments/kxa11y/what_do_you_guys_think_about_noblesse/gj8wmua/;1610720031;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YunYunForever;;;[];;;;text;t2_78oor7zc;False;False;[];;It was okay. Not bad, but far from top-tier.;False;False;;;;1610644850;;False;{};gj8wnnl;False;t3_kxa11y;False;True;t3_kxa11y;/r/anime/comments/kxa11y/what_do_you_guys_think_about_noblesse/gj8wnnl/;1610720050;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi MALISENPXI, your post has been removed because your title is below our minimum length requirement of 4 words. Feel free to repost with a more descriptive title. - -If you're looking to get a quick question answered, like asking for [recommendations](https://www.reddit.com/r/anime/wiki/recommendations), [the source of a picture](https://www.reddit.com/r/anime/wiki/reverse_image_searching), a [watch order](https://www.reddit.com/r/anime/wiki/watch_order) or any other [general question](https://www.reddit.com/r/anime/wiki/faaq), please check our sidebar too, it might help you faster. - -[**Thank you!**](#blushubot) - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610644878;moderator;False;{};gj8wq0g;False;t3_kxa3bc;False;True;t3_kxa3bc;/r/anime/comments/kxa3bc/httpsteespringcomstoressenpxiswonderland/gj8wq0g/;1610720115;1;False;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;I found it pretty lackluster, it never really got my attention so I found it somewhat boring;False;False;;;;1610644905;;False;{};gj8ws40;False;t3_kxa11y;False;False;t3_kxa11y;/r/anime/comments/kxa11y/what_do_you_guys_think_about_noblesse/gj8ws40/;1610720158;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Mr__Anime;;;[];;;;text;t2_8jo0ltqs;False;False;[];;"In a bubble, I think it was decent. Not great, but not bad. And probably going to be very forgettable unless it gets another season to continue the story. - -As someone who had started the comic prior to the anime's release, I thought it was pretty good. Pacing was different, but not unenjoyable. Voices seemed appropriate for the characters. It was cool seeing the fights animated.";False;False;;;;1610645019;;False;{};gj8x1nd;False;t3_kxa11y;False;True;t3_kxa11y;/r/anime/comments/kxa11y/what_do_you_guys_think_about_noblesse/gj8x1nd/;1610720349;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RandomShyGuy10;;;[];;;;text;t2_8ee0qhmm;False;False;[];;Assassins pride, Demon Slayer (unless you have already watched);False;False;;;;1610645034;;False;{};gj8x2sr;False;t3_kx9wgb;False;True;t3_kx9wgb;/r/anime/comments/kx9wgb/some_anime_recommendation_please/gj8x2sr/;1610720371;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610645174;;False;{};gj8xedm;False;t3_kx9wgb;False;True;t3_kx9wgb;/r/anime/comments/kx9wgb/some_anime_recommendation_please/gj8xedm/;1610720587;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610645260;;False;{};gj8xlas;False;t3_kx9qo8;False;True;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj8xlas/;1610720714;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Darling in the franxx, irregular, cavalry of the failed knight, arifureta;False;False;;;;1610645357;;False;{};gj8xt6q;False;t3_kxa5ud;False;True;t3_kxa5ud;/r/anime/comments/kxa5ud/action_anime_with_a_little_bit_of_romance/gj8xt6q/;1610720858;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"# Source Material Corner - -Reply to this comment for any source-related discussion, future spoilers (including future characters, events and general hype about future content), comparison of the anime adaptation to the original, or just general talk about the source material. **You are still required to tag all spoilers.** Discussions about the source outside of this comment tree will be removed, and replying with spoilers outside of the source corner will lead to bans. - -The spoiler syntax is: -`[Spoiler source](/s ""Spoiler goes here"")` - -# **All untagged spoilers and hints in this thread will receive immediate 8-day bans (minimum).** - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610645417;moderator;False;{};gj8xy5x;False;t3_kxaa94;False;True;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj8xy5x/;1610720952;1;False;True;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;WorldEnd (has a really long name) has a pretty good mix of action and romance;False;False;;;;1610645588;;False;{};gj8yc45;False;t3_kxa5ud;False;False;t3_kxa5ud;/r/anime/comments/kxa5ud/action_anime_with_a_little_bit_of_romance/gj8yc45/;1610721215;1;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"Well long running anime are generally not always faithful to the manga because they have generally caught up to the source material and have to make filler episodes to avoid breaks. - -One Piece and Black Clover are the two that come to mind, and I think Boruto as well";False;False;;;;1610645687;;False;{};gj8yk7k;False;t3_kxac4x;False;False;t3_kxac4x;/r/anime/comments/kxac4x/what_are_some_good_non_seasonal_anime/gj8yk7k/;1610721369;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;"Too in love with the episode-to-episode pacing of the original to suggest the Director's Cut, but that's just me. - -There's no real difference between the two other than minor editing tweaks, a new ED for one of the episodes, and 2 reanimated fights. The only ACTUAL bit of new content is used as the first scene of S2 anyway, so there's no reason to do the DC over the original imo";False;False;;;;1610645783;;False;{};gj8ys0p;False;t3_kxac0b;False;False;t3_kxac0b;/r/anime/comments/kxac0b/should_i_watch_rezero_starting_life_in_another/gj8ys0p/;1610721523;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;The director's cut is the same but with a couple of minutes of extra footage total and two episodes are stitched into one.;False;False;;;;1610645795;;False;{};gj8yt1a;False;t3_kxac0b;False;True;t3_kxac0b;/r/anime/comments/kxac0b/should_i_watch_rezero_starting_life_in_another/gj8yt1a/;1610721543;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;"Aikatsu - -Pretty series";False;False;;;;1610645811;;False;{};gj8yubt;False;t3_kxac4x;False;False;t3_kxac4x;/r/anime/comments/kxac4x/what_are_some_good_non_seasonal_anime/gj8yubt/;1610721570;1;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"It basically combines two episodes at a time from the original series into 1 hour long episodes. - -Pretty sure it is almost all the same, with occasional touch ups to the animation, and maybe slightly different dialogue. Only “major” change I can think of is a post credit scene at the end of the final episode of the DC version, but I think it is the opening scene of seasons 2.";False;False;;;;1610645866;;False;{};gj8yyuu;False;t3_kxac0b;False;True;t3_kxac0b;/r/anime/comments/kxac0b/should_i_watch_rezero_starting_life_in_another/gj8yyuu/;1610721664;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;"The director's cut makes each ep 50mins long by combining 2 of them, depending on where you are watching it could be in that format you mentioned. - -1a is ep1, 1b is ep2, 2a is so 3 and so forth. The director's cut doesn't have many differences except an extended version of ending.";False;False;;;;1610645911;;False;{};gj8z2jp;False;t3_kxac0b;False;True;t3_kxac0b;/r/anime/comments/kxac0b/should_i_watch_rezero_starting_life_in_another/gj8z2jp/;1610721735;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"I am curious did you think there's a lot of recent long running shows? - -That said definitely Hunter x Hunter and Fullmetal Alchemist Brotherhood - -Hxh is from 2011 and fma from 2009";False;False;;;;1610645953;;False;{};gj8z5wj;False;t3_kxac4x;False;True;t3_kxac4x;/r/anime/comments/kxac4x/what_are_some_good_non_seasonal_anime/gj8z5wj/;1610721802;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;The directors cut is basically the same as the original with just 13 episodes of 1 hour length versus 25 episodes of 24 mins of the original and there's a very small scene that's added in the directors cut but that scene is also in the Second season so yeah just pick if you want to watch a few short episodes or 1 hour long ones;False;False;;;;1610646050;;False;{};gj8zdsy;False;t3_kxac0b;False;False;t3_kxac0b;/r/anime/comments/kxac0b/should_i_watch_rezero_starting_life_in_another/gj8zdsy/;1610721959;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TacoBellIsChipotle;;;[];;;;text;t2_7l9egrg6;False;False;[];;"When you say ""seasonal"" do you mean ""aired for a season, stopped for a bit, and then aired for another season later""? Like Re:zero is doing? Because that's not what seasonal means. Seasonal anime is just anime that aired with a season of anime and ended with one as well. FMAB is seasonal.";False;False;;;;1610646111;;False;{};gj8zipx;False;t3_kxac4x;False;True;t3_kxac4x;/r/anime/comments/kxac4x/what_are_some_good_non_seasonal_anime/gj8zipx/;1610722054;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Mahouka I guess;False;False;;;;1610646120;;False;{};gj8zjhr;False;t3_kx9wgb;False;True;t3_kx9wgb;/r/anime/comments/kx9wgb/some_anime_recommendation_please/gj8zjhr/;1610722070;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi RandomShyGuy10, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610646140;moderator;False;{};gj8zl4r;False;t3_kxaj29;False;True;t3_kxaj29;/r/anime/comments/kxaj29/looking_for_ecchi_anime_recommendations/gj8zl4r/;1610722102;0;False;False;anime;t5_2qh22;;0;[]; -[];;;Heinousrat;;;[];;;;text;t2_xc5qg;False;False;[];;Air gear is pretty good, very dated, and I hope you like random ovas that STILL don't see completion.;False;False;;;;1610646361;;False;{};gj903bq;False;t3_kxac4x;False;True;t3_kxac4x;/r/anime/comments/kxac4x/what_are_some_good_non_seasonal_anime/gj903bq/;1610722466;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;"Golden Boy - -Miru Tights - -Aika - -Iya na kao sare nagara opantsu misete moraitai - -Ishuzoku Reviewers - -High School dxd";False;False;;;;1610646371;;False;{};gj9044p;False;t3_kxaj29;False;True;t3_kxaj29;/r/anime/comments/kxaj29/looking_for_ecchi_anime_recommendations/gj9044p/;1610722484;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Prince-Dizzytoon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/princedizzytoon;light;text;t2_mu0df;False;False;[];;Jebaited by white blood cells, yikes.;False;False;;;;1610646422;;False;{};gj908a7;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj908a7/;1610722570;51;True;False;anime;t5_2qh22;;0;[]; -[];;;weeb2098;;;[];;;;text;t2_4dsrclve;False;False;[];;Nanatsu no Taizai;False;False;;;;1610646524;;False;{};gj90gp1;False;t3_kxa5ud;False;True;t3_kxa5ud;/r/anime/comments/kxa5ud/action_anime_with_a_little_bit_of_romance/gj90gp1/;1610722741;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Melonmans;;;[];;;;text;t2_9kom32s2;False;False;[];;The testament of sister new devil;False;False;;;;1610646535;;False;{};gj90hnz;False;t3_kxaj29;False;False;t3_kxaj29;/r/anime/comments/kxaj29/looking_for_ecchi_anime_recommendations/gj90hnz/;1610722761;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610646601;;False;{};gj90mzu;False;t3_kxaa94;False;True;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj90mzu/;1610722881;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610646664;;False;{};gj90s8u;False;t3_kx9qo8;False;True;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj90s8u/;1610722996;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Yarichin;False;False;;;;1610646673;;False;{};gj90t1e;False;t3_kxaj29;False;True;t3_kxaj29;/r/anime/comments/kxaj29/looking_for_ecchi_anime_recommendations/gj90t1e/;1610723014;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SolubilityRules;;;[];;;;text;t2_2lolx4d;False;False;[];;"That Death Parade parody was insanely poggers. - -Also, it was so cute how White Blood Cell ran back like he left his date behind";False;False;;;;1610646738;;False;{};gj90ygk;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj90ygk/;1610723121;109;True;False;anime;t5_2qh22;;0;[]; -[];;;nameIessV;;;[];;;;text;t2_9sxhjp7y;False;False;[];;I feel like the pacing is a bit fast.;False;False;;;;1610646937;;False;{};gj91etu;False;t3_kxaa94;False;False;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj91etu/;1610723449;18;True;False;anime;t5_2qh22;;0;[]; -[];;;MaksimShadow;;;[];;;;text;t2_h92eaka;False;False;[];;"Damn, viruses are crazy. There are more soldiers in that war than in all wars of our world combined. - -Wish I had immunity against coronavirus.";False;False;;;;1610646953;;False;{};gj91g54;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj91g54/;1610723478;28;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;https://www.reddit.com/r/anime/wiki/recommendations#wiki_ecchi Read this.;False;False;;;;1610647168;;1610647633.0;{};gj91xpv;False;t3_kxaj29;False;False;t3_kxaj29;/r/anime/comments/kxaj29/looking_for_ecchi_anime_recommendations/gj91xpv/;1610723829;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"# Source Material Corner - -Reply to this comment for any source-related discussion, future spoilers (including future characters, events and general hype about future content), comparison of the anime adaptation to the original, or just general talk about the source material. **You are still required to tag all spoilers.** Discussions about the source outside of this comment tree will be removed, and replying with spoilers outside of the source corner will lead to bans. - -The spoiler syntax is: -`[Spoiler source](/s ""Spoiler goes here"")` - -# **All untagged spoilers and hints in this thread will receive immediate 8-day bans (minimum).** - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610647369;moderator;False;{};gj92dyj;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj92dyj/;1610724150;1;False;True;anime;t5_2qh22;;0;[]; -[];;;PreludeToHell;;;[];;;;text;t2_yec5f;False;False;[];;I thought this episode was ok. Curious to see the rest of the cast and if they liven things up once they get to high school.;False;False;;;;1610647449;;False;{};gj92kbv;False;t3_kxaa94;False;False;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj92kbv/;1610724280;18;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610647509;;False;{};gj92p6n;False;t3_kxa5ud;False;True;t3_kxa5ud;/r/anime/comments/kxa5ud/action_anime_with_a_little_bit_of_romance/gj92p6n/;1610724374;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Action / Romance - -Akatsuki no Yona - -Katanagatari";False;False;;;;1610647557;;False;{};gj92syo;False;t3_kxa5ud;False;True;t3_kxa5ud;/r/anime/comments/kxa5ud/action_anime_with_a_little_bit_of_romance/gj92syo/;1610724447;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mchuck13;;;[];;;;text;t2_58ki5a;False;False;[];;Overall I prefer tower of god because the subject matter is more my preference but I think noblesse was probably the best adaptation wise. Hopefully there will be more but I don't think anyone knows especially with the recent acquisition by Sony what their plans will be for them.;False;False;;;;1610647589;;False;{};gj92vmv;False;t3_kxa11y;False;True;t3_kxa11y;/r/anime/comments/kxa11y/what_do_you_guys_think_about_noblesse/gj92vmv/;1610724502;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Masou gakuen hxh;False;False;;;;1610647621;;False;{};gj92y24;False;t3_kxaj29;False;True;t3_kxaj29;/r/anime/comments/kxaj29/looking_for_ecchi_anime_recommendations/gj92y24/;1610724545;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Amr_Mb;;;[];;;;text;t2_130web;False;False;[];;Same but its only 12 episodes so I guess it’s better so we can get to the high school tournament;False;False;;;;1610647765;;False;{};gj939jc;False;t3_kxaa94;False;False;t1_gj91etu;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj939jc/;1610724762;6;True;False;anime;t5_2qh22;;0;[]; -[];;;axl625;;;[];;;;text;t2_tskg1;False;False;[];;"The Fukui accent is too strong in this episode, I can’t help think of Arata Wataya from Chihayafuru - -I did not sign up for the angst though.";False;False;;;;1610647816;;1610693243.0;{};gj93dni;False;t3_kxaa94;False;False;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj93dni/;1610724839;40;True;False;anime;t5_2qh22;;0;[]; -[];;;OfficerNorth22;;;[];;;;text;t2_33mpstte;False;False;[];;I though it was alright nothing to write home about. To me it was held back by the 12 episode form.;False;False;;;;1610647897;;False;{};gj93k4z;False;t3_kxa11y;False;True;t3_kxa11y;/r/anime/comments/kxa11y/what_do_you_guys_think_about_noblesse/gj93k4z/;1610724962;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BoopTheChicken;;;[];;;;text;t2_82olxgk9;False;False;[];;Because harems are generally designed to be fantasies for the viewer who are expected to project onto the main character, so the main character is not able to pick a girl as a result, because it may not be the one the viewer likes best.;False;False;;;;1610647986;;False;{};gj93r5h;False;t3_kxb5mp;False;True;t3_kxb5mp;/r/anime/comments/kxb5mp/why_dont_more_harem_or_romance_leads_actually/gj93r5h/;1610725098;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Minute_Brush955;;;[];;;;text;t2_6k4ofyvo;False;False;[];;Your definition of seasonal anime confuses me;False;False;;;;1610648003;;False;{};gj93sje;False;t3_kxac4x;False;False;t1_gj8zipx;/r/anime/comments/kxac4x/what_are_some_good_non_seasonal_anime/gj93sje/;1610725124;0;True;False;anime;t5_2qh22;;0;[]; -[];;;THEbaddestOFtheASSES;;;[];;;;text;t2_ocvb8i5;False;False;[];;So as to not offend the viewers fantasy the protagonist bangs no one at all. That’s even worse and I’ve never understood the thinking behind that.;False;False;;;;1610648165;;False;{};gj945gk;False;t3_kxb5mp;False;True;t1_gj93r5h;/r/anime/comments/kxb5mp/why_dont_more_harem_or_romance_leads_actually/gj945gk/;1610725376;3;True;False;anime;t5_2qh22;;0;[]; -[];;;veilsofrealitydotcom;;skip7;[];;;dark;text;t2_xnuyosb;False;False;[];;"I thought it might be interesting initially but to me it seemed like there was no plan, that it wasn't going anywhere. So I fell asleep a few times on ep 11 and never finished. - -Seeing how many interesting shows there are this season I think Noblesse was lucky it was released in the fall.";False;False;;;;1610648211;;False;{};gj9497a;False;t3_kxa11y;False;True;t3_kxa11y;/r/anime/comments/kxa11y/what_do_you_guys_think_about_noblesse/gj9497a/;1610725450;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610648311;moderator;False;{};gj94h9o;False;t3_kxbaxk;False;True;t3_kxbaxk;/r/anime/comments/kxbaxk/are_some_shows_on_mal_schedule_airing_earlyis_mal/gj94h9o/;1610725607;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610648422;;1610660064.0;{};gj94q32;False;t3_kxb5mp;False;True;t3_kxb5mp;/r/anime/comments/kxb5mp/why_dont_more_harem_or_romance_leads_actually/gj94q32/;1610725780;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TacoBellIsChipotle;;;[];;;;text;t2_7l9egrg6;False;False;[];;"Anime seasons are Winter, Spring, Summer, and Fall with the starting months being January, April, July, and October. So anime that starts in January and runs for 12-13 eps and ends in March (the end of winter) is seasonal. So is an anime that starts in January and runs for 52 eps and ends in December (the end of fall). - -An anime that starts mid-February wouldn't be seasonal. OVAs, movies, and specials (usually) aren't seasonal.";False;False;;;;1610648434;;False;{};gj94r30;False;t3_kxac4x;False;True;t1_gj93sje;/r/anime/comments/kxac4x/what_are_some_good_non_seasonal_anime/gj94r30/;1610725799;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610648523;moderator;False;{};gj94y6c;False;t3_kxbdlq;False;False;t3_kxbdlq;/r/anime/comments/kxbdlq/any_baseball_anime_recommendations/gj94y6c/;1610725944;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi danny18wrx, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610648524;moderator;False;{};gj94y7g;False;t3_kxbdlq;False;True;t3_kxbdlq;/r/anime/comments/kxbdlq/any_baseball_anime_recommendations/gj94y7g/;1610725945;1;False;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;"Think about people's response wherever the MC picks a girl. Every harem manga has a ""bad ending"" once a girl is decided.";False;False;;;;1610648542;;False;{};gj94zpg;False;t3_kxb5mp;False;True;t1_gj945gk;/r/anime/comments/kxb5mp/why_dont_more_harem_or_romance_leads_actually/gj94zpg/;1610725975;2;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;Cross Game, One Outs, Diamond no Ace;False;False;;;;1610648577;;False;{};gj952gf;False;t3_kxbdlq;False;False;t3_kxbdlq;/r/anime/comments/kxbdlq/any_baseball_anime_recommendations/gj952gf/;1610726027;10;True;False;anime;t5_2qh22;;0;[]; -[];;;blackmagemasta;;MAL;[];;https://myanimelist.net/profile/blackmagemasta;dark;text;t2_aceb1;False;False;[];;"> Beastars s2 ep 2 has not aired yet. - -ummm... Better tell the bot. https://www.reddit.com/r/anime/comments/kxato6/beastars_season_2_episode_2_discussion/";False;False;;;;1610648590;;False;{};gj953gu;False;t3_kxbaxk;False;True;t3_kxbaxk;/r/anime/comments/kxbaxk/are_some_shows_on_mal_schedule_airing_earlyis_mal/gj953gu/;1610726046;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610648641;;False;{};gj957ih;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj957ih/;1610726126;-27;True;False;anime;t5_2qh22;;0;[]; -[];;;Veeron;;MAL;[];;http://myanimelist.net/animelist/Troglodyte;dark;text;t2_6v4zw;False;True;[];;It would make the MC less relatable.;False;False;;;;1610648678;;False;{};gj95ae9;False;t3_kxb5mp;False;True;t3_kxb5mp;/r/anime/comments/kxb5mp/why_dont_more_harem_or_romance_leads_actually/gj95ae9/;1610726198;1;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;I know Funimation had Cells at Work and Cells at Work Black earlier than the initial broadcast, so maybe they have it like that for the season?;False;False;;;;1610648678;;False;{};gj95afm;False;t3_kxbaxk;False;True;t3_kxbaxk;/r/anime/comments/kxbaxk/are_some_shows_on_mal_schedule_airing_earlyis_mal/gj95afm/;1610726200;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rusticks;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Rusticks/;light;text;t2_6qqvr;False;False;[];;Diamond no Ace;False;False;;;;1610648679;;False;{};gj95ag2;False;t3_kxbdlq;False;False;t3_kxbdlq;/r/anime/comments/kxbdlq/any_baseball_anime_recommendations/gj95ag2/;1610726200;11;True;False;anime;t5_2qh22;;0;[]; -[];;;tomtomm9;;;[];;;;text;t2_3ycvxoo9;False;False;[];;For binging the directors cut is the obvious choice. But there’s something about watching episode-episode and seeing how the director skips out on ops and Ed’s on certain episodes that make me want to say to watch the normal airing.;False;False;;;;1610648692;;False;{};gj95bko;False;t3_kxac0b;False;True;t3_kxac0b;/r/anime/comments/kxac0b/should_i_watch_rezero_starting_life_in_another/gj95bko/;1610726223;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jessechu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jera_;light;text;t2_nzdad;False;False;[];;"True, but the title is ""high school"" and we're not even there yet. This is like a set up for all that. - -Also, am i the only one who dislikes the ""slap"" sound effect when they spike or the ball hits the floor?";False;False;;;;1610648695;;False;{};gj95bs7;False;t3_kxaa94;False;False;t1_gj91etu;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj95bs7/;1610726229;30;True;False;anime;t5_2qh22;;0;[]; -[];;;citatel;;MAL;[];;https://myanimelist.net/animelist/citatel;dark;text;t2_qtrfe;False;False;[];;"Well maybe it has but the aite i use might not have uploaded it. - -But wither way, cells at work ep 2 are uploaded. So there is still that.";False;False;;;;1610648697;;False;{};gj95bxp;True;t3_kxbaxk;False;True;t1_gj953gu;/r/anime/comments/kxbaxk/are_some_shows_on_mal_schedule_airing_earlyis_mal/gj95bxp/;1610726231;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;15016zmiv;;;[];;;;text;t2_tt0nq2o;False;False;[];;If it turns out to be a bad series, i’ll still stick with it till the end just because of best girl, Yunis cousin I think?;False;False;;;;1610648714;;False;{};gj95d9m;False;t3_kxaa94;False;True;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj95d9m/;1610726260;1;True;False;anime;t5_2qh22;;0;[]; -[];;;THEbaddestOFtheASSES;;;[];;;;text;t2_ocvb8i5;False;False;[];;Fuck ‘em! They’ll get over it.;False;False;;;;1610648748;;False;{};gj95g01;False;t3_kxb5mp;False;True;t1_gj94zpg;/r/anime/comments/kxb5mp/why_dont_more_harem_or_romance_leads_actually/gj95g01/;1610726312;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JinNrkm77;;;[];;;;text;t2_9i6dazn8;False;False;[];;Major;False;False;;;;1610648751;;False;{};gj95g80;False;t3_kxbdlq;False;False;t3_kxbdlq;/r/anime/comments/kxbdlq/any_baseball_anime_recommendations/gj95g80/;1610726317;8;True;False;anime;t5_2qh22;;0;[]; -[];;;jojo_is_trash;;;[];;;;text;t2_595dn1yo;False;False;[];;"There’s two ways to enjoy cells at work - -You watch Black first and this second so you are left with a sense of wholesomeness at the end - -Or you watch this first and Black second so you are left with a sense of depression at the end that will haunt you till the end of the day. - -Which path do you take?";False;False;;;;1610648758;;False;{};gj95gtr;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj95gtr/;1610726328;151;True;False;anime;t5_2qh22;;0;[]; -[];;;citatel;;MAL;[];;https://myanimelist.net/animelist/citatel;dark;text;t2_qtrfe;False;False;[];;So will cells at work air it earlier than what MAL says then?;False;False;;;;1610648760;;False;{};gj95gy4;True;t3_kxbaxk;False;True;t1_gj95afm;/r/anime/comments/kxbaxk/are_some_shows_on_mal_schedule_airing_earlyis_mal/gj95gy4/;1610726330;0;True;False;anime;t5_2qh22;;0;[]; -[];;;MisakaMikotoxKuroko;;;[];;;;text;t2_hw7cbmp;False;False;[];;I've read the whole series so I'm kinda skipping bits and pieces, but I just want to say that there were definitely a couple of scenes the studio transitioned very fabulously.;False;False;;;;1610648779;;False;{};gj95iim;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj95iim/;1610726360;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Mal is showing the Japanese airing time - -Both cells at work are airing on Thursday, I think mal is wrong there, on anilist and livechart is also showing Thursdays - -And I don't know about the fansub for beastar, unfortunately I don't watch that, since the episode aired earlier i think the fansubs are already out, that's why the discussion is up";False;False;;;;1610648800;;False;{};gj95k79;False;t3_kxbaxk;False;True;t3_kxbaxk;/r/anime/comments/kxbaxk/are_some_shows_on_mal_schedule_airing_earlyis_mal/gj95k79/;1610726391;2;True;False;anime;t5_2qh22;;0;[]; -[];;;danny18wrx;;;[];;;;text;t2_74zifzz5;False;False;[];;Thanks highly appreciate it !;False;False;;;;1610648814;;False;{};gj95l96;True;t3_kxbdlq;False;True;t1_gj952gf;/r/anime/comments/kxbdlq/any_baseball_anime_recommendations/gj95l96/;1610726413;2;True;False;anime;t5_2qh22;;0;[]; -[];;;danny18wrx;;;[];;;;text;t2_74zifzz5;False;False;[];;Thanks!;False;False;;;;1610648820;;False;{};gj95ltl;True;t3_kxbdlq;False;True;t1_gj95ag2;/r/anime/comments/kxbdlq/any_baseball_anime_recommendations/gj95ltl/;1610726424;1;True;False;anime;t5_2qh22;;0;[]; -[];;;danny18wrx;;;[];;;;text;t2_74zifzz5;False;False;[];;Thanks I’ll look into it !;False;False;;;;1610648832;;False;{};gj95mpl;True;t3_kxbdlq;False;True;t1_gj95g80;/r/anime/comments/kxbdlq/any_baseball_anime_recommendations/gj95mpl/;1610726441;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Prince-Dizzytoon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/princedizzytoon;light;text;t2_mu0df;False;False;[];;Are you gonna type this in every discussion post;False;False;;;;1610648848;;False;{};gj95o1g;False;t3_kxayvb;False;False;t1_gj957ih;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj95o1g/;1610726467;14;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610648871;;False;{};gj95pxq;False;t3_kxaa94;False;True;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj95pxq/;1610726504;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Minute_Brush955;;;[];;;;text;t2_6k4ofyvo;False;False;[];;Oooohh okay thanks;False;False;;;;1610648885;;False;{};gj95r28;False;t3_kxac4x;False;True;t1_gj94r30;/r/anime/comments/kxac4x/what_are_some_good_non_seasonal_anime/gj95r28/;1610726528;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dreski13;;;[];;;;text;t2_3alwzh7y;False;False;[];;I dont like that look in Emma's eyes, her innocence is fading away.;False;False;;;;1610648904;;False;{};gj95sjg;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj95sjg/;1610726559;74;True;False;anime;t5_2qh22;;0;[]; -[];;;eylabae;;;[];;;;text;t2_4qzbzeot;False;False;[];;Really not liking the sound effects this episode, it's like they're chopping wood with an axe instead of playing volleyball x\_x;False;False;;;;1610648930;;False;{};gj95um1;False;t3_kxaa94;False;True;t1_gj8xy5x;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj95um1/;1610726600;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610649027;moderator;False;{};gj962gr;False;t3_kxbjy0;False;True;t3_kxbjy0;/r/anime/comments/kxbjy0/does_anyone_know_from_what_anime_this_character_is/gj962gr/;1610726755;1;False;False;anime;t5_2qh22;;0;[]; -[];;;nameIessV;;;[];;;;text;t2_9sxhjp7y;False;False;[];;Same here. I also disliked the way the ball hit the floor.;False;True;;comment score below threshold;;1610649043;;False;{};gj963nt;False;t3_kxaa94;False;False;t1_gj95bs7;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj963nt/;1610726777;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;Asphalt_in_Rain;;;[];;;;text;t2_3jqchbrf;False;False;[];;That look in Emma's eyes... I mean, she's having to start imitating that which she hates.;False;False;;;;1610649139;;False;{};gj96bcv;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj96bcv/;1610726927;395;True;False;anime;t5_2qh22;;0;[]; -[];;;yaserafriend;;;[];;;;text;t2_qrljx;False;False;[];;Vegan Demons, ftw!;False;False;;;;1610649165;;False;{};gj96dhn;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj96dhn/;1610726972;110;True;False;anime;t5_2qh22;;0;[]; -[];;;Kookospuuro;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Kookospuuro/;light;text;t2_3poom3wa;False;False;[];;Eureka 7.;False;False;;;;1610649171;;False;{};gj96dw0;False;t3_kxa5ud;False;True;t3_kxa5ud;/r/anime/comments/kxa5ud/action_anime_with_a_little_bit_of_romance/gj96dw0/;1610726980;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"MAL times are TV air times for TV shows, which sometimes don't correspond with how they're released online. - -For example, on Beastars S2 it says: - -> Thursdays at 00:55 (JST) - -JST = Japan Standard Time, so that's a little over a day ago as the current time is about 3:30 AM on Friday in Japan. - -However, Netflix has the license for Beastars and they aren't releasing the show internationally until after it's done airing. Instead, fansubs are being made of the TV broadcast and come out at their own pace. - -For Cells at Work, Funimation is actually putting them up *before* the TV broadcast which is rare.";False;False;;;;1610649176;;False;{};gj96eb6;False;t3_kxbaxk;False;True;t3_kxbaxk;/r/anime/comments/kxbaxk/are_some_shows_on_mal_schedule_airing_earlyis_mal/gj96eb6/;1610726987;5;True;False;anime;t5_2qh22;;0;[]; -[];;;yaserafriend;;;[];;;;text;t2_qrljx;False;False;[];;Didn’t expect such a wholesome episode to be there in the Promised Neverland Season 2. I was expecting the whole season to be like last week’s episode 1.;False;False;;;;1610649222;;False;{};gj96hwr;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj96hwr/;1610727059;12;True;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;"> Also I was wondering what time zone MAL follows. - -Japan. - -That's why it says (JST) next to the time.";False;False;;;;1610649242;;False;{};gj96jkb;False;t3_kxbaxk;False;True;t3_kxbaxk;/r/anime/comments/kxbaxk/are_some_shows_on_mal_schedule_airing_earlyis_mal/gj96jkb/;1610727090;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mockingbirdguy;;;[];;;;text;t2_6096n672;False;False;[];;Ray is the super smart emo big brother who’s obsess with death. Emma is the fun elder sister who’s overly optimistic and is willing to do anything for her family happiness. Gilda is the bossy middle sister who too busy trying to keep her family alive. Don is the middle brother who’s always trying to act tough. And Phil is everyone’s favorite little bro;False;False;;;;1610649251;;False;{};gj96kas;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj96kas/;1610727103;124;True;False;anime;t5_2qh22;;0;[]; -[];;;whizmas;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/xjet465;light;text;t2_14gyc2;False;False;[];;A surprisingly more laid back episode this week makes me think shit is going down next episode;False;False;;;;1610649293;;False;{};gj96np8;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj96np8/;1610727169;63;True;False;anime;t5_2qh22;;0;[];True -[];;;yaserafriend;;;[];;;;text;t2_qrljx;False;False;[];;I was waiting for the demons to tell the children that they were consuming demon meat 🥩. Glad that we did not go that route, despite this being a dark anime.;False;False;;;;1610649299;;1610688984.0;{};gj96o5d;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj96o5d/;1610727177;84;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;True;[];;"Wasn't expecting such a positive reaction to being told they're sacrificial lambs. I guess Emma and Ray are glass half full kind of people. - -The secret to Ray's cooking is MSG. - -Sonju and Emma riding together gives off Somali and the Forest Spirit vibes. - -Did this episode feel like it ended abruptly to anybody else? I thought the ending was the halfway point and then it was suddenly over.";False;False;;;;1610649299;;1610649585.0;{};gj96o7a;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj96o7a/;1610727178;523;True;False;anime;t5_2qh22;;0;[]; -[];;;Redmon425;;;[];;;;text;t2_15ro6h;False;False;[];;"This episode was so damn good! Like I enjoyed the whole episode. May be up there for my favorite of the series actually. - -Like I just like the two demons so much. And it’s cool to see some of them have a ‘human’ side and are actually nice. In fact, I thought for a second there that they were going to reveal those two demons as originally being humans somehow. But I’m glad the story didn’t go that way. - -Plus an awesome reveal of two worlds. At first I assumed they just meant like the other side of the planet is a humans only area, but maybe the really do mean an entire different world for humans. - -Crazy to think the humans who are in the farms are from the humans who were basically left behind as a sacrifice/gift. - -Wonder if we will ever get the story on how the demons and new animal/creatures were born.";False;False;;;;1610649301;;1610649513.0;{};gj96odd;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj96odd/;1610727181;252;True;False;anime;t5_2qh22;;0;[]; -[];;;mythriz;;;[];;;;text;t2_d37v0;False;False;[];;I just watched Black after White, depression it is. Although the ED song there is surprisingly upbeat lol;False;False;;;;1610649343;;False;{};gj96rn9;False;t3_kx9qo8;False;False;t1_gj95gtr;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj96rn9/;1610727243;30;True;False;anime;t5_2qh22;;0;[]; -[];;;o-temoto;#12679b;ann;[];d01f2890-bcaf-11e4-9b5c-22000b3d83a4;フレア願いします;light;text;t2_ubz22;False;False;[];;Can we talk about how campylobacter's [head](https://i.imgur.com/qPqCw3m.png) is a 💩 ?;False;False;;;;1610649354;;False;{};gj96skj;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj96skj/;1610727261;9;True;False;anime;t5_2qh22;;0;[]; -[];;;citatel;;MAL;[];;https://myanimelist.net/animelist/citatel;dark;text;t2_qtrfe;False;False;[];;"I see! I live in Korea so time/date conversion wasnt the problem but I was curious on why cells at work were aired earlier than what MAL had said. - -Your explanation was perfect for my questions. Thank you so much!";False;False;;;;1610649357;;False;{};gj96sqs;True;t3_kxbaxk;False;True;t1_gj96eb6;/r/anime/comments/kxbaxk/are_some_shows_on_mal_schedule_airing_earlyis_mal/gj96sqs/;1610727264;2;True;False;anime;t5_2qh22;;0;[]; -[];;;citatel;;MAL;[];;https://myanimelist.net/animelist/citatel;dark;text;t2_qtrfe;False;False;[];;Thank you.;False;False;;;;1610649368;;False;{};gj96tpb;True;t3_kxbaxk;False;True;t1_gj96jkb;/r/anime/comments/kxbaxk/are_some_shows_on_mal_schedule_airing_earlyis_mal/gj96tpb/;1610727282;1;True;False;anime;t5_2qh22;;0;[]; -[];;;citatel;;MAL;[];;https://myanimelist.net/animelist/citatel;dark;text;t2_qtrfe;False;False;[];;From what I have heard, it seems MAL dates are corrext for japanese airing date while those other sites use funimation release dates.;False;False;;;;1610649447;;False;{};gj96zx8;True;t3_kxbaxk;False;True;t1_gj95k79;/r/anime/comments/kxbaxk/are_some_shows_on_mal_schedule_airing_earlyis_mal/gj96zx8/;1610727399;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;;;[];;;;text;t2_4la0rf79;False;False;[];;Kiss x sis😳;False;False;;;;1610649504;;False;{};gj974da;False;t3_kxaj29;False;False;t3_kxaj29;/r/anime/comments/kxaj29/looking_for_ecchi_anime_recommendations/gj974da/;1610727487;10;True;False;anime;t5_2qh22;;0;[]; -[];;;sharafi04;;;[];;;;text;t2_4949iljy;False;False;[];;"What did they mean by ""before 30 years""? I don't remember the previous season very well";False;False;;;;1610649541;;False;{};gj977bx;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj977bx/;1610727547;45;True;False;anime;t5_2qh22;;0;[]; -[];;;unaviable;;;[];;;;text;t2_1o4qd3;False;True;[];;"I already forgot a good portion about post prison break, so its nice to watch the anime to relive some moments again. But one thing i remember so unnecessary and out of place because it was never used again......... - -once they depart sonju says how excited he is to hunt humans again soon because of the new promise. Oh my .......";False;False;;;;1610649594;;False;{};gj97bh4;False;t3_kxayvb;False;False;t1_gj92dyj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj97bh4/;1610727632;13;True;False;anime;t5_2qh22;;0;[]; -[];;;yaserafriend;;;[];;;;text;t2_qrljx;False;False;[];;Muslims are made to slaughter meat themselves during their Eid-ul-Adha. I can tell you that the feeling in them, at least for the first time, is really like how haunted Emma felt in this episode - unable to consume meat properly for a few weeks. Killing your own game really does bring the realisation in you that a living creature gave its life for your food - which people who merrily get their food from their butcher (like the kids taking the game from Emma) always may not understand.;False;False;;;;1610649604;;1610651129.0;{};gj97cbh;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj97cbh/;1610727648;180;True;False;anime;t5_2qh22;;0;[]; -[];;;kickaboo_;;;[];;;;text;t2_3j0el5fe;False;False;[];;Continue watching and you‘ll learn why;False;False;;;;1610649605;;False;{};gj97ced;False;t3_kxbpv3;False;True;t3_kxbpv3;/r/anime/comments/kxbpv3/attack_on_titan_season_3_question/gj97ced/;1610727649;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarRufus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ScarRufus;light;text;t2_2u0vy1pk;False;False;[];;Why don't you just continue to watch. And how answer a important plot point without spoiler????;False;False;;;;1610649636;;1610649982.0;{};gj97ev5;False;t3_kxbpv3;False;False;t3_kxbpv3;/r/anime/comments/kxbpv3/attack_on_titan_season_3_question/gj97ev5/;1610727697;14;True;False;anime;t5_2qh22;;0;[]; -[];;;LukaLaurent;;;[];;;;text;t2_1hvdrskz;False;False;[];;The whole reason they are chasing her is a spoiler. You should just keep watching.;False;False;;;;1610649638;;False;{};gj97f0t;False;t3_kxbpv3;False;False;t3_kxbpv3;/r/anime/comments/kxbpv3/attack_on_titan_season_3_question/gj97f0t/;1610727699;6;True;False;anime;t5_2qh22;;0;[]; -[];;;unaviable;;;[];;;;text;t2_1o4qd3;False;True;[];;they thought that the ~~human~~ demon world was like ours before 30 years ago and had the hypothesis that the demons were some kind of apocalyptic disaster where they killed all humans expect the farm humans during the 30 years. Or something like that;False;False;;;;1610649713;;False;{};gj97l5d;False;t3_kxayvb;False;False;t1_gj977bx;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj97l5d/;1610727818;58;True;False;anime;t5_2qh22;;0;[]; -[];;;Nanashi-74;;;[];;;;text;t2_5x0k2vam;False;False;[];;Is this show any good? I'm basically asking if I'll be disappointed if I'm used to Haikyuu;False;False;;;;1610649755;;False;{};gj97ofk;False;t3_kxaa94;False;True;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj97ofk/;1610727880;1;True;False;anime;t5_2qh22;;0;[]; -[];;;catmeom;;;[];;;;text;t2_8crwsgoc;False;False;[];;They seem to have bit of an accent;False;False;;;;1610649786;;False;{};gj97qzg;False;t3_kxaa94;False;False;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj97qzg/;1610727928;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"Given that Black has twice the amount of comments atm, it seems some viewers really followed your advice. - -[](#cup4)";False;False;;;;1610649811;;False;{};gj97sxf;False;t3_kx9qo8;False;False;t1_gj95gtr;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj97sxf/;1610727964;81;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610649820;moderator;False;{};gj97tp3;False;t3_kxbt98;False;True;t3_kxbt98;/r/anime/comments/kxbt98/whats_the_anime_of_the_vid_only_got_a_small_clip/gj97tp3/;1610727984;1;False;False;anime;t5_2qh22;;0;[]; -[];;;RektCompass;;;[];;;;text;t2_gm30lnh;False;False;[];;Does Eren ever die? Please answer without spoilers;False;False;;;;1610649885;;False;{};gj97yrb;False;t3_kxbpv3;False;True;t3_kxbpv3;/r/anime/comments/kxbpv3/attack_on_titan_season_3_question/gj97yrb/;1610728081;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;True;[];;Better not put her on cooking duty.;False;False;;;;1610649886;;False;{};gj97ytu;False;t3_kxayvb;False;False;t1_gj96bcv;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj97ytu/;1610728083;158;True;False;anime;t5_2qh22;;0;[]; -[];;;RedsonOfKyrypton;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RedsonofMelomarc;light;text;t2_5d1b60l;False;False;[];;Read a wiki entry if you don't want to watch the show, why come here asking for spoilers if your mid season?;False;False;;;;1610649928;;False;{};gj98250;False;t3_kxbpv3;False;True;t3_kxbpv3;/r/anime/comments/kxbpv3/attack_on_titan_season_3_question/gj98250/;1610728145;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Prince-Dizzytoon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/princedizzytoon;light;text;t2_mu0df;False;False;[];;"Emma trains to become an Archer Servant - -On a serious note tho, I fear for Emma's mental state";False;False;;;;1610649932;;False;{};gj982ge;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj982ge/;1610728151;301;True;False;anime;t5_2qh22;;0;[]; -[];;;Royal_Heritage;;;[];;;;text;t2_8wglzuge;False;False;[];;It's from [Fuuka](https://myanimelist.net/anime/33743/Fuuka);False;False;;;;1610649944;;False;{};gj983eu;False;t3_kxbt98;False;True;t3_kxbt98;/r/anime/comments/kxbt98/whats_the_anime_of_the_vid_only_got_a_small_clip/gj983eu/;1610728169;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Powertapole762;;;[];;;;text;t2_3n1ll4tf;False;False;[];;Fuuka;False;False;;;;1610649963;;False;{};gj984yn;False;t3_kxbt98;False;True;t3_kxbt98;/r/anime/comments/kxbt98/whats_the_anime_of_the_vid_only_got_a_small_clip/gj984yn/;1610728199;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tuckleton;;;[];;;;text;t2_e2viz;False;False;[];;"[""Ray always tries to run off and die if you don't keep an eye on him.""](https://imgur.com/uN7eIVE) - -Laughed so hard at that!";False;False;;;;1610650014;;False;{};gj9893h;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9893h/;1610728278;483;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;God this day is **STACKED.**;False;False;;;;1610650027;;False;{};gj98a43;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj98a43/;1610728297;313;True;False;anime;t5_2qh22;;0;[]; -[];;;MrJelloYT;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Allen23woo;light;text;t2_5sq7ncbm;False;False;[];;Fuuka episode 3;False;False;;;;1610650048;;False;{};gj98buh;False;t3_kxbt98;False;True;t3_kxbt98;/r/anime/comments/kxbt98/whats_the_anime_of_the_vid_only_got_a_small_clip/gj98buh/;1610728330;1;True;False;anime;t5_2qh22;;0;[]; -[];;;applebyarrow;;;[];;;;text;t2_ehexg;False;False;[];;Seconded.;False;False;;;;1610650112;;False;{};gj98gxw;False;t3_kxbdlq;False;True;t1_gj95ag2;/r/anime/comments/kxbdlq/any_baseball_anime_recommendations/gj98gxw/;1610728428;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;"Oregairu isn't shoujo neither is Kuzu no Honkai - -Also I really liked Kuzu no Honkai.";False;False;;;;1610650113;;False;{};gj98gyp;False;t3_kxbvf2;False;False;t3_kxbvf2;/r/anime/comments/kxbvf2/discussion_about_kuzu_no_honkai/gj98gyp/;1610728428;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610650114;;False;{};gj98h20;False;t3_kxbvf2;False;True;t3_kxbvf2;/r/anime/comments/kxbvf2/discussion_about_kuzu_no_honkai/gj98h20/;1610728430;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;SnowLocke;;;[];;;;text;t2_wx2pc;False;False;[];;"She's important because backwards her name is Airotsih. Look at the first two letters. Ai. Artificial Intelligence. This is proof that Historia is an AI and that in the final chapter it will be revealed that AoT is a west-world style simulation where the AIs took over. - -Or you could just watch the anime. - -Or you could go to the AoT wiki and read Historia's character page.";False;False;;;;1610650126;;False;{};gj98i1b;False;t3_kxbpv3;False;True;t3_kxbpv3;/r/anime/comments/kxbpv3/attack_on_titan_season_3_question/gj98i1b/;1610728448;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sin778;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/Philipp2002;light;text;t2_42jtk419;False;False;[];;"""Please tell me a major plot point without spoiling it"" - -?";False;False;;;;1610650128;;False;{};gj98i5b;False;t3_kxbpv3;False;True;t3_kxbpv3;/r/anime/comments/kxbpv3/attack_on_titan_season_3_question/gj98i5b/;1610728450;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;"Keep watching and you will find out. - -That's literally it.";False;False;;;;1610650149;;False;{};gj98jub;False;t3_kxbpv3;False;True;t3_kxbpv3;/r/anime/comments/kxbpv3/attack_on_titan_season_3_question/gj98jub/;1610728482;2;True;False;anime;t5_2qh22;;0;[]; -[];;;growinginsour;;;[];;;;text;t2_63hosv8x;False;False;[];;I’d give it a try. It’s darker for sure;False;False;;;;1610650198;;False;{};gj98nqn;False;t3_kxaa94;False;False;t1_gj97ofk;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj98nqn/;1610728557;16;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610650217;;False;{};gj98pbn;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj98pbn/;1610728588;8;True;False;anime;t5_2qh22;;0;[]; -[];;;supicasupica;;;[];;;;text;t2_casna;False;False;[];;"Last week, this direction showcased the difference between the closed space (practically a stage set) of Grace Field House [to a more open terrain](https://formeinfullbloom.wordpress.com/2021/01/07/transitioning-from-a-closed-stage-to-open-terrain-the-promised-neverland-season-2-episode-1/). The thing that caught my eye the most was how everyone was presented on a level playing field (either all in focus at the same time/on the same actual level of ground/framed similarly) as they were sharing information. [Emma and Ray](https://formeinfullbloom.files.wordpress.com/2021/01/tpns2e106.png) may have started as the most informed, but by the end of their conversation, [everyone was on the same page](https://formeinfullbloom.files.wordpress.com/2021/01/tpns2e109.png), which marked a departure from the previous season (and will be important to their survival!) - -One of the most important things last season was who knew what at what time. [The visual direction employed paneling](https://formeinfullbloom.wordpress.com/2019/03/09/visual-paneling-in-the-promised-neverland-episode-9/), varying focus, and lighting within the closed space to do this. - -Who has information remains at the forefront of The Promised Neverland’s storyboarding. For example, when Mujika and Sonju are presented as threats, we see [Emma and Ray framed between them and surrounded ominously](https://formeinfullbloom.files.wordpress.com/2021/01/tpns2e201.png). This quickly changes once it’s revealed that the rest of the group is safe and they intend to help the group, not hurt. Later when Emma and Ray voluntarily go to Sonju to apologize and ask for information, [they’re visually separated](https://formeinfullbloom.files.wordpress.com/2021/01/tpns2e204.png), and then [purposefully cross that threshold themselves](https://formeinfullbloom.files.wordpress.com/2021/01/tpns2e206.png). As the information is shared, [they’re shown framed as a group](https://formeinfullbloom.files.wordpress.com/2021/01/tpns2e207.png). - -This episode was also really good at showing reaction shots from everyone in the group as Emma was talking. She is their optimism and hope, and it was cool to see that reinforced visually in their reactions. I also loved the scene where Gilda snapped and chewed Emma out for not taking care of herself, followed by the rest of the kids yelling at Ray. It really sets up the feeling that they’re all together and have to be on the same level of understanding moving forward if they’re going to survive. - -The most impactful scene was definitely Emma’s first hunt. I appreciated the cut from her shooting the bird, to the red, [blooming Vidar flowers in the water](https://formeinfullbloom.files.wordpress.com/2021/01/tpns2e209.png), to Sonju handing her a white flower and instructing her to do to the bird what was done to her brothers and sisters at Grace Field House. [The final shot of her face shadowed](https://formeinfullbloom.files.wordpress.com/2021/01/tpns2e211.png) really drove home her loss of innocence, as others have already mentioned in the thread.";False;False;;;;1610650333;;False;{};gj98ypw;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj98ypw/;1610728776;131;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Okay?;False;False;;;;1610650389;;False;{};gj99395;False;t3_kxc0ai;False;True;t3_kxc0ai;/r/anime/comments/kxc0ai/help_im_fucking_to_weak_for_this_shit/gj99395/;1610728867;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aluminum-Chair;;;[];;;;text;t2_63qs0yl8;False;False;[];;"Kuzu no Honkai is nothing like Oregairu (which I wouldn't classify as a ""classic shojo"" either) - -But yes every character is hugely messed up, that's the point of the show. It's kind of jarring to stumble onto if you aren't prepared beforehand.";False;False;;;;1610650411;;False;{};gj9950z;False;t3_kxbvf2;False;True;t3_kxbvf2;/r/anime/comments/kxbvf2/discussion_about_kuzu_no_honkai/gj9950z/;1610728903;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_bbc;;;[];;;;text;t2_iiu6x;False;False;[];;Her plan doesn't seem realistic. If they save all the kids from all the farms, what is to keep the demons from breaking their agreement and crossing over to find humans to eat again.;False;False;;;;1610650414;;False;{};gj9958s;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9958s/;1610728907;224;True;False;anime;t5_2qh22;;0;[]; -[];;;RektCompass;;;[];;;;text;t2_gm30lnh;False;False;[];;Call a therapist;False;False;;;;1610650414;;False;{};gj995b2;False;t3_kxc0ai;False;True;t3_kxc0ai;/r/anime/comments/kxc0ai/help_im_fucking_to_weak_for_this_shit/gj995b2/;1610728909;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;That's the point. Neither of the shows you listed are shoujo either. A Shoujo would be Maid-Sama, where the male character is made to be hard to obtain.;False;False;;;;1610650426;;False;{};gj99682;False;t3_kxbvf2;False;False;t3_kxbvf2;/r/anime/comments/kxbvf2/discussion_about_kuzu_no_honkai/gj99682/;1610728928;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CorbenikTheRebirth;;;[];;;;text;t2_g98wg;False;False;[];;Touch and Cross Game if you want a little bit of romance mixed with your baseball.;False;False;;;;1610650427;;False;{};gj99698;False;t3_kxbdlq;False;False;t3_kxbdlq;/r/anime/comments/kxbdlq/any_baseball_anime_recommendations/gj99698/;1610728928;5;True;False;anime;t5_2qh22;;0;[]; -[];;;pythonopps;;;[];;;;text;t2_4minlrq2;False;False;[];;It was just really fucking good is all;False;False;;;;1610650429;;False;{};gj996fc;False;t3_kxc0ai;False;True;t1_gj99395;/r/anime/comments/kxc0ai/help_im_fucking_to_weak_for_this_shit/gj996fc/;1610728931;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuck_Taha_Emre;;;[];;;;text;t2_7zgvwi1l;False;False;[];;Thanks, I hate Emma cooking Conny;False;False;;;;1610650440;;False;{};gj9979y;False;t3_kxayvb;False;False;t1_gj97ytu;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9979y/;1610728947;96;True;False;anime;t5_2qh22;;0;[]; -[];;;tailor31415;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/tailor31415;light;text;t2_zr3cx;False;False;[];;"Ookiku Furikabutte - -Ace of Diamond as others suggested - -Major - -baseball related but more drama: One Outs, Battery, Gurazeni, Cross Game";False;False;;;;1610650441;;False;{};gj997cl;False;t3_kxbdlq;False;False;t3_kxbdlq;/r/anime/comments/kxbdlq/any_baseball_anime_recommendations/gj997cl/;1610728948;7;True;False;anime;t5_2qh22;;0;[]; -[];;;pythonopps;;;[];;;;text;t2_4minlrq2;False;False;[];;Why?;False;False;;;;1610650447;;False;{};gj997t1;False;t3_kxc0ai;False;True;t1_gj995b2;/r/anime/comments/kxc0ai/help_im_fucking_to_weak_for_this_shit/gj997t1/;1610728959;0;True;False;anime;t5_2qh22;;0;[]; -[];;;RektCompass;;;[];;;;text;t2_gm30lnh;False;False;[];;You said you wanted help;False;False;;;;1610650468;;False;{};gj999jl;False;t3_kxc0ai;False;False;t1_gj997t1;/r/anime/comments/kxc0ai/help_im_fucking_to_weak_for_this_shit/gj999jl/;1610728992;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610650490;;False;{};gj99ba3;False;t3_kxbvf2;False;True;t3_kxbvf2;/r/anime/comments/kxbvf2/discussion_about_kuzu_no_honkai/gj99ba3/;1610729029;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Aetheraragi;;;[];;;;text;t2_5xpdkzvm;False;False;[];;I like the Islamic comparison!;False;False;;;;1610650502;;False;{};gj99c81;False;t3_kxayvb;False;False;t1_gj97cbh;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj99c81/;1610729048;22;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"my stomping ground :) - -[Koi Kaze](https://anilist.co/anime/634/Koi-Kaze/) -Drama, Psychological, Romance, Slice of Life - -[Rent-a-Girlfriend](https://anilist.co/anime/113813/RentaGirlfriend/) -Comedy, Drama, Ecchi, Romance - -[Scum's Wish](https://anilist.co/anime/21701/Scums-Wish/) -Drama, Ecchi, Psychological, Romance - -[High School DxD](https://anilist.co/anime/11617/High-School-DxD/) -Action, Comedy, Ecchi, Fantasy, Romance - -[Domestic Girlfriend](https://anilist.co/anime/103139/Domestic-Girlfriend/) -Drama, Ecchi, Romance - -[Miru Tights](https://anilist.co/anime/106967/Miru-Tights/) -Ecchi, Slice of Life - -[Ao-chan Can't Study!](https://anilist.co/anime/105989/Aochan-Cant-Study/) -Comedy, Ecchi, Romance - -[Panty & Stocking with Garterbelt](https://anilist.co/anime/8795/Panty--Stocking-with-Garterbelt/) -Action, Comedy, Ecchi, Supernatural - -[Prison School](https://anilist.co/anime/20807/Prison-School/) -Comedy, Ecchi - -[Why the hell are you here, Teacher!?](https://anilist.co/anime/104325/Why-the-hell-are-you-here-Teacher/) -Comedy, Ecchi, Romance - -[To Love Ru](https://www.reddit.com/r/anime/wiki/watch_order#wiki_to_love-ru) -Comedy, Ecchi, Romance, Sci-Fi - -[Chivalry of a Failed Knight](https://anilist.co/anime/21092/Chivalry-of-a-Failed-Knight/) -Action, Ecchi, Fantasy, Romance - -[SHIMONETA: A Boring World Where the Concept of Dirty Jokes Doesn’t Exist](https://anilist.co/anime/20910/SHIMONETA-A-Boring-World-Where-the-Concept-of-Dirty-Jokes-Doesnt-Exist/) -Comedy, Ecchi - -[Interspecies Reviewers](https://anilist.co/anime/110270/Interspecies-Reviewers/) -Comedy, Ecchi, Fantasy - -[No Game, No Life](https://anilist.co/anime/19815/No-Game-No-Life/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_no_game_no_life) -Adventure, Comedy, Ecchi, Fantasy - -[How Not to Summon a Demon Lord](https://anilist.co/anime/101004/How-Not-to-Summon-a-Demon-Lord/) -Comedy, Ecchi, Fantasy - -[Bakemonogatari](https://anilist.co/anime/5081/Bakemonogatari/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_-monogatari_.2F_bakemonogatari) -Comedy, Drama, Mystery, Psychological, Romance, Supernatural - -[Kill la Kill](https://anilist.co/anime/18679/Kill-la-Kill/) -Action, Comedy, Ecchi";False;False;;;;1610650557;;False;{};gj99gtf;False;t3_kxaj29;False;False;t3_kxaj29;/r/anime/comments/kxaj29/looking_for_ecchi_anime_recommendations/gj99gtf/;1610729139;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;"Touch - -Princess Nine";False;False;;;;1610650565;;False;{};gj99hg8;False;t3_kxbdlq;False;True;t3_kxbdlq;/r/anime/comments/kxbdlq/any_baseball_anime_recommendations/gj99hg8/;1610729152;3;True;False;anime;t5_2qh22;;0;[]; -[];;;puddi101;;;[];;;;text;t2_7vqj5i4;False;False;[];;any media (books and stuff) they had access to on the farm was at least 30 years old. This made them assume that the world was normal until 30 years ago;False;False;;;;1610650571;;False;{};gj99hxe;False;t3_kxayvb;False;False;t1_gj977bx;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj99hxe/;1610729161;85;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyCrapBasket;;;[];;;;text;t2_6edqtztm;False;False;[];;I don't care about the discussions I just use this to know when the episodes come out;False;False;;;;1610650578;;False;{};gj99ihs;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj99ihs/;1610729171;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuck_Taha_Emre;;;[];;;;text;t2_7zgvwi1l;False;False;[];;"I'm a muslim. 2 years ago I attended to the slaughtering camp (for sheep and like obviously). I was there to help my mom carry the meat to the car and such... I stayed out of the area until it was done... The smell of blood and meat gahhhh - -Edit: We don't slaugther the animals ourselves. The butchers do that. If I tried to kill a sheep by cutting its neck without hurting it, I would accidentally cut my own arm or something.";False;False;;;;1610650613;;False;{};gj99la7;False;t3_kxayvb;False;False;t1_gj97cbh;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj99la7/;1610729227;56;True;False;anime;t5_2qh22;;0;[]; -[];;;moath2335;;;[];;;;text;t2_153kut;False;False;[];;"That “Don’t worry I’m okay” is VERY different to the season 1 one(iirc it was when Isabella first suspected Norman and Emma for knowing the truth). - - -I am an anime only so no spoilers please. Does Isabella know that Ray is alive? - - -Angry Gilda is terrifying.";False;False;;;;1610650621;;False;{};gj99lvm;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj99lvm/;1610729240;37;True;False;anime;t5_2qh22;;0;[]; -[];;;RimuZ;;MAL;[];;http://myanimelist.net/animelist/LtCrabcake;dark;text;t2_8df66;False;False;[];;Emma is such a great character. Truly a badass.;False;False;;;;1610650663;;False;{};gj99pbr;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj99pbr/;1610729305;15;True;False;anime;t5_2qh22;;0;[]; -[];;;danny18wrx;;;[];;;;text;t2_74zifzz5;False;False;[];;Awesome appreciate the recommendation !;False;False;;;;1610650667;;False;{};gj99pm5;True;t3_kxbdlq;False;True;t1_gj99698;/r/anime/comments/kxbdlq/any_baseball_anime_recommendations/gj99pm5/;1610729312;2;True;False;anime;t5_2qh22;;0;[]; -[];;;miss-macaron;;;[];;;;text;t2_40ktfacw;False;False;[];;Yeahhh, that bartender genuinely threw me off for a moment! Doesn't 1146 have the same voice actor as Decim? I was expecting it to be him, haha...;False;False;;;;1610650694;;False;{};gj99rva;False;t3_kx9qo8;False;False;t1_gj90ygk;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj99rva/;1610729358;34;True;False;anime;t5_2qh22;;0;[]; -[];;;Verzwei;;;[];;;;text;t2_cmzqb;False;False;[];;"I don't think the print release ever got an English release. - -I'm not even sure there's an official English version of the digital release. - -Edit: Why did this get downvoted? All I did was state two facts. I didn't inject any opinion into it at all, and my statements are 100% on-topic for the thread.";False;False;;;;1610650695;;1610651270.0;{};gj99rxe;False;t3_kxc1ds;False;True;t3_kxc1ds;/r/anime/comments/kxc1ds/relife_manga_help_please/gj99rxe/;1610729359;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"Yakusoku no Yuru Camp - -[](#morecomfy)";False;False;;;;1610650711;;False;{};gj99t7y;False;t3_kxayvb;False;False;t1_gj96np8;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj99t7y/;1610729382;50;True;False;anime;t5_2qh22;;0;[]; -[];;;basuga_BFE;;;[];;;;text;t2_l8vzif1;False;True;[];;Emma is known to be badass, she will manage! (EDIT) Hopefully...;False;False;;;;1610650732;;1610696522.0;{};gj99uvq;False;t3_kxayvb;False;False;t1_gj982ge;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj99uvq/;1610729415;25;True;False;anime;t5_2qh22;;0;[]; -[];;;HereticalAegis;;;[];;;;text;t2_6xeubalv;False;False;[];;If we don't get to see Emma pay that back to at least one of the demons before the end of the season, I say we riot.;False;False;;;;1610650737;;False;{};gj99v8l;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj99v8l/;1610729421;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuck_Shinji;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Fuck Shinji(fate);light;text;t2_7xrbju2m;False;False;[];;looks like emma's gonna have to change to survive pretty interesting;False;False;;;;1610650742;;False;{};gj99voj;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj99voj/;1610729431;56;True;False;anime;t5_2qh22;;0;[]; -[];;;MaksimShadow;;;[];;;;text;t2_h92eaka;False;False;[];;But most went to Dr. Stone and Neverland discussions. Poor little cells are so unfortunate to be surrounded by such a giants.;False;False;;;;1610650750;;False;{};gj99wb5;False;t3_kx9qo8;False;False;t1_gj97sxf;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj99wb5/;1610729443;41;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuck_Taha_Emre;;;[];;;;text;t2_7zgvwi1l;False;False;[];;I thought the same about the ending! There was no fading to black screen or anything. It was just BAM ending song.;False;False;;;;1610650755;;False;{};gj99wox;False;t3_kxayvb;False;False;t1_gj96o7a;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj99wox/;1610729450;29;True;False;anime;t5_2qh22;;0;[]; -[];;;Bigdrama25;;;[];;;;text;t2_2tcxp565;False;False;[];;I don't see this one mentioned ofter but Hundred is pretty good.;False;False;;;;1610650760;;False;{};gj99x28;False;t3_kxaj29;False;False;t3_kxaj29;/r/anime/comments/kxaj29/looking_for_ecchi_anime_recommendations/gj99x28/;1610729458;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;"There are no official English releases. - -If you can read German, here's the first one's ISBNs: - -* ```3842055129``` -* ```978-3842055124```";False;False;;;;1610650765;;False;{};gj99xgy;False;t3_kxc1ds;False;True;t3_kxc1ds;/r/anime/comments/kxc1ds/relife_manga_help_please/gj99xgy/;1610729465;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuck_Taha_Emre;;;[];;;;text;t2_7zgvwi1l;False;False;[];;The reason is that most recent book in the library was published 30 years ago;False;False;;;;1610650814;;False;{};gj9a1gc;False;t3_kxayvb;False;False;t1_gj97l5d;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9a1gc/;1610729544;33;True;False;anime;t5_2qh22;;0;[]; -[];;;MiraculousFIGS;;;[];;;;text;t2_ta1ep;False;False;[];;I remember when I went to the farm to slaughter a llama for meat, I couldn’t eat meat the same for at least a few weeks. Its definitely not something I’d recommend until somebody was mature enough, since it really puts everything into perspective (humans and food chains and all that). Just reminds me again of how young the cast is here and how much they have to go through to be free :/;False;False;;;;1610650843;;False;{};gj9a3s2;False;t3_kxayvb;False;False;t1_gj97cbh;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9a3s2/;1610729589;35;True;False;anime;t5_2qh22;;0;[]; -[];;;miss-macaron;;;[];;;;text;t2_40ktfacw;False;False;[];;Oh, I wasn't expecting this episode to cover two manga chapters, that was a pleasant surprise!;False;False;;;;1610650849;;False;{};gj9a47w;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9a47w/;1610729598;8;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;"I mean this [was pretty much the expected outcome of last week's cliffhanger.](https://i.imgur.com/d7HL5gP.png) Would've been more surprising if they found a bunch of dead kids. How insane would that have been though? - -[Mujika and Sonjo both look pretty awesome.](https://i.imgur.com/yV642S0.png) I love their designs! Also I love Sonju's mask. - - -[Well this was unexpected though!](https://i.imgur.com/6LohqPi.png) My guess last week was that they were some sort of freedom fighters but it looks like they just don't eat humans for religious reasons. I kinda wish Sonju explained what this religion is though. - -[More unexpected revelations!](https://i.imgur.com/JAaDG7Y.png) Free humans do absolutely exist! Just not on this world since the humans and demons separated their world under the promise of one will not hunt the other. And these humans that are being raised in farms are all basically gifts so the demons would leave the humans alone. - -Now I'm curious how does this separation even work. Is Earth's territories divided like one hemisphere is dedicated for humans while the other for demons or is it more fantastical where you have to enter a portal to flip flop between Human and Demon realms? - -[I do love Rey and Emma's reactions though!](https://i.imgur.com/fLLLM4l.png) At least now there's hope! They have a place they can escape to where they don't have to worry about demons. The problem now is how they'll even get there. Hopefully Minerva has the answers that they need. - - -[Gilda getting made at Emma was hilarious!](https://i.imgur.com/2URXHIs.png) Don't make her angry again Emma! Just tell her if you're feeling something wrong with your body again! - -The rest of the episode was all about [Mujika and Sonju](https://i.imgur.com/1QNjgck.png) teaching the kids survival techniques before letting them go back outside into the forest and [Emma learns how to hunt.](https://i.imgur.com/4n4FkOF.png) Specifically, how to take a life. [We even learn the significance of the dry white flower](https://i.imgur.com/821AHsz.png). Looks like the demons use it to drain blood off their prey. Damn. And now Emma's doing the same. - - -[That final look from Emma.](https://i.imgur.com/N1UH9uO.png) Yeah that hunting trip definitely changed her. Interested to see how her first actual kill will go. If she even ever kills a demon.";False;False;;;;1610650888;;False;{};gj9a790;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9a790/;1610729658;33;True;False;anime;t5_2qh22;;0;[]; -[];;;Anto974;;;[];;;;text;t2_90sfzxsi;False;False;[];;Yeah i don’t know that type of show and for a first time it’s very special and strange for me;False;False;;;;1610650953;;False;{};gj9acf8;True;t3_kxbvf2;False;True;t1_gj9950z;/r/anime/comments/kxbvf2/discussion_about_kuzu_no_honkai/gj9acf8/;1610729765;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuck_Taha_Emre;;;[];;;;text;t2_7zgvwi1l;False;False;[];;Man the attention to detail is amazing!;False;False;;;;1610650956;;False;{};gj9acnw;False;t3_kxayvb;False;False;t1_gj98ypw;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9acnw/;1610729770;29;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Funnily enough, there was German one though.;False;False;;;;1610650970;;False;{};gj9adqj;False;t3_kxc1ds;False;True;t1_gj99rxe;/r/anime/comments/kxc1ds/relife_manga_help_please/gj9adqj/;1610729790;1;True;False;anime;t5_2qh22;;0;[]; -[];;;boran_blok;;MAL;[];;http://myanimelist.net/animelist/boran_blok;dark;text;t2_3gho6;False;False;[];;For if you want to go and see how far ecchi can go before its considered a hentai.;False;False;;;;1610651047;;False;{};gj9ajq3;False;t3_kxaj29;False;False;t1_gj974da;/r/anime/comments/kxaj29/looking_for_ecchi_anime_recommendations/gj9ajq3/;1610729913;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"Can't believe [Memory Cell predicted the pandemic.](https://i.imgur.com/dSZXhwT.jpg) - - -[](#whatdidijustread) - -[NotLikeThis](https://i.imgur.com/WjLEn6p.jpg)";False;False;;;;1610651055;;False;{};gj9akdi;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9akdi/;1610729926;74;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;"This is the only thing I could find with that title. It's a hentai. - -https://myanimelist.net/anime/4357/El";False;False;;;;1610651064;;False;{};gj9al4u;False;t3_kxc8h9;False;True;t3_kxc8h9;/r/anime/comments/kxc8h9/ive_heard_of_a_mystery_anime_who_goes_by_the_name/gj9al4u/;1610729942;4;True;False;anime;t5_2qh22;;0;[]; -[];;;the_dan_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/asian_weeb;light;text;t2_545v6;False;False;[];;Third option: Don't watch Black, because life is depressing enough as it is.;False;False;;;;1610651064;;False;{};gj9al5t;False;t3_kx9qo8;False;False;t1_gj95gtr;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9al5t/;1610729942;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Anto974;;;[];;;;text;t2_90sfzxsi;False;False;[];;Thanks, i didn’t watch a lot of shojo so that’s why i don’t know several shoujo and i say oregairu because it’s the only show that i remind ok;False;False;;;;1610651149;;False;{};gj9aru0;True;t3_kxbvf2;False;True;t1_gj99682;/r/anime/comments/kxbvf2/discussion_about_kuzu_no_honkai/gj9aru0/;1610730080;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;o-temoto;#12679b;ann;[];d01f2890-bcaf-11e4-9b5c-22000b3d83a4;フレア願いします;light;text;t2_ubz22;False;False;[];;"> I guess Emma and Ray are glass half full kind of people. - -Planet half-full people.";False;False;;;;1610651153;;False;{};gj9as51;False;t3_kxayvb;False;False;t1_gj96o7a;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9as51/;1610730086;169;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiro_Kai;;;[];;;;text;t2_bevm2wi;False;False;[];;"Dr. Stone - -Yuru Camp - -Higurashi - -Tenchi bu - -Volley-bu - -Hataraku Saibou / Black - -Neverland - -5-toubun - - -and some high sea Nanatsu and Beastars. - - - Yeah, blessed day but is stacking for the weekend. :/";False;False;;;;1610651256;;False;{};gj9b0b3;False;t3_kxayvb;False;False;t1_gj98a43;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9b0b3/;1610730243;216;True;False;anime;t5_2qh22;;0;[]; -[];;;Frontier246;;;[];;;;text;t2_an8rjvo;False;False;[];;"I can never get enough of Kikuko Inoue's Macrophage just casually coming in and serenely slicing stuff up. - -I guess this is what Memory Cell gets when he mistakes his recall ability for the power to see the future and makes the Cells work harder than they actually have to...it's tough being neurotic. - -That being said, the scene of him and B-Cell coming in for the save was pretty awesome. - -Still some rivalry between Killer T-Cell and our White Blood Cell, with Killer T-Cell viewing White Blood Cell's doting on Red Blood Cell as a weakness instead of strength...of course, in all the chaos, White Blood Cell still ends up forgetting about Red Blood Cell. - -I guess this just goes to show you can't really negotiate with germs, even germs with grand visions for themselves, and the best bet is to play along until you get a chance to turn things around. - -Is that Show Hayami as that M-Cell bartender? I'd never mind getting served drinks by him, even if it was part of a sting op to snag some viruses.";False;False;;;;1610651261;;False;{};gj9b0p0;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9b0p0/;1610730250;45;True;False;anime;t5_2qh22;;0;[]; -[];;;rembestwaifu_;;;[];;;;text;t2_4g1t4rcr;False;True;[];;I mean, that’s basically an accurate description of Ray, isn’t it;False;False;;;;1610651269;;False;{};gj9b1a3;False;t3_kxayvb;False;False;t1_gj9893h;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9b1a3/;1610730263;173;True;False;anime;t5_2qh22;;0;[]; -[];;;Anto974;;;[];;;;text;t2_90sfzxsi;False;False;[];;Yeah I didn’t notice that when i saw the discussion about it previously but know i understand the gap between this;False;False;;;;1610651289;;False;{};gj9b2uq;True;t3_kxbvf2;False;True;t1_gj98h20;/r/anime/comments/kxbvf2/discussion_about_kuzu_no_honkai/gj9b2uq/;1610730291;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Vryly;;;[];;;;text;t2_2c81cz27;False;False;[];;"i like the reveal finally of what is going on in the world, very satisfying to hear that and the flower in one episode, a lot of questions ticked off. - -but that leaves a new one; all of the books they have which appear to be from the human world, or at least are for human consumption, are more than 30 years old. We know know the worlds split 1000 years ago, back in the eleventh century apparently, so where did these books come from and why did they stop coming out 30 years ago?";False;False;;;;1610651326;;False;{};gj9b5t3;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9b5t3/;1610730348;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;"After today's episode of Higurashi, I really needed this. - -Although the Mumps vaccine part of the episode was hilarious it is truly nothing when compared with the whole [Campylobacter part.](https://imgur.com/a/JRyPJdU)";False;False;;;;1610651344;;False;{};gj9b77r;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9b77r/;1610730374;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610651348;;False;{};gj9b7i3;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9b7i3/;1610730380;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610651362;;1610654981.0;{};gj9b8l8;False;t3_kxbvf2;False;True;t3_kxbvf2;/r/anime/comments/kxbvf2/discussion_about_kuzu_no_honkai/gj9b8l8/;1610730401;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610651380;moderator;False;{};gj9ba0n;False;t3_kxcdqa;False;True;t3_kxcdqa;/r/anime/comments/kxcdqa/help_looking_for_an_anime/gj9ba0n/;1610730430;0;False;False;anime;t5_2qh22;;0;[]; -[];;;Ritchuck;;;[];;;;text;t2_16zv69;False;False;[];;Not that many comments. huh? I assumed this series was more popular here.;False;False;;;;1610651461;;False;{};gj9bgeg;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9bgeg/;1610730568;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610651523;;False;{};gj9bla7;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9bla7/;1610730665;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HappyVlane;;;[];;;;text;t2_6cxhc;False;False;[];;Did we see Emma's sister before and I just forgot it, because the demons seem suspicious? Emma said that the flower was pierced through her sister's heart and the other demons don't strike me as the religious type.;False;False;;;;1610651528;;False;{};gj9blon;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9blon/;1610730672;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;True;[];;Thursday this season is thiccer than the quintuplets.;False;False;;;;1610651589;;False;{};gj9bqic;False;t3_kxayvb;False;False;t1_gj98a43;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9bqic/;1610730765;51;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"[Never negotiate with bacteria](https://i.imgur.com/XOusrkl.jpg) - -[](#gendo-pls)";False;False;;;;1610651669;;False;{};gj9bwqn;False;t3_kx9qo8;False;False;t1_gj908a7;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9bwqn/;1610730884;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;They are available in French too;False;False;;;;1610651721;;False;{};gj9c0wb;False;t3_kxc1ds;False;True;t3_kxc1ds;/r/anime/comments/kxc1ds/relife_manga_help_please/gj9c0wb/;1610730962;0;True;False;anime;t5_2qh22;;0;[]; -[];;;applebyarrow;;;[];;;;text;t2_ehexg;False;False;[];;Really good episode, and tough to watch.;False;False;;;;1610651724;;False;{};gj9c15u;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9c15u/;1610730968;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610651865;;False;{};gj9ccam;False;t3_kxayvb;False;True;t1_gj9bla7;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9ccam/;1610731174;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Verzwei;;;[];;;;text;t2_cmzqb;False;False;[];;"Does the series have to follow the fantasy adventure format that are in all the shows you listed? - -If not, Princess Principal is about a group of spy girls doing espionage and capers in a steampunk London. For a show about covert ops, it has a lot more action than you'd expect. Yuri romance is rarely the spotlight or focus of the series, but two of the girls being in love with each other is a major underlying driving force for a lot of the plot.";False;False;;;;1610651914;;False;{};gj9cg7w;False;t3_kxa5ud;False;True;t3_kxa5ud;/r/anime/comments/kxa5ud/action_anime_with_a_little_bit_of_romance/gj9cg7w/;1610731251;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FalconPunchInDaFace;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FalconPunchFace;light;text;t2_4fi02812;False;True;[];;"KEIJO!!!!!!! - -High School is the Dead";False;False;;;;1610651953;;False;{};gj9cjbj;False;t3_kxaj29;False;True;t3_kxaj29;/r/anime/comments/kxaj29/looking_for_ecchi_anime_recommendations/gj9cjbj/;1610731309;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BootiBigoli;;;[];;;;text;t2_30pxu7ic;False;False;[];;sad;False;False;;;;1610651977;;False;{};gj9cl91;True;t3_kxcfak;False;True;t1_gj9bt2r;/r/anime/comments/kxcfak/does_anybody_know_anything_about_the_dr_stone/gj9cl91/;1610731348;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;BootiBigoli;;;[];;;;text;t2_30pxu7ic;False;False;[];;sad;False;False;;;;1610651987;;False;{};gj9cm2h;True;t3_kxcfak;False;True;t1_gj9c091;/r/anime/comments/kxcfak/does_anybody_know_anything_about_the_dr_stone/gj9cm2h/;1610731365;0;True;False;anime;t5_2qh22;;0;[]; -[];;;JackieFuu;;;[];;;;text;t2_7blss3gr;False;False;[];;">They got nerfed tho..";False;False;;;;1610652063;;False;{};gj9cs1u;False;t3_kxayvb;False;False;t1_gj9bqic;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9cs1u/;1610731487;38;True;False;anime;t5_2qh22;;0;[]; -[];;;Reagcz;;;[];;;;text;t2_gf6mu;False;False;[];;I believe she meant Connie;False;False;;;;1610652068;;False;{};gj9csgt;False;t3_kxayvb;False;False;t1_gj9blon;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9csgt/;1610731495;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Vowsky_;;;[];;;;text;t2_5o5cdzwt;False;False;[];;.;False;False;;;;1610652073;;False;{};gj9csui;False;t3_kxcdqa;False;True;t1_gj9ba0n;/r/anime/comments/kxcdqa/help_looking_for_an_anime/gj9csui/;1610731503;0;True;False;anime;t5_2qh22;;0;[]; -[];;;supicasupica;;;[];;;;text;t2_casna;False;False;[];;Yeah I've seen a few complaints at the lack of animation (which I suppose are fair) BUT I wanted to draw attention to how much the storyboarding and framing does for the overall mood and tone of the show because they do a lot of the heavy lifting. It's also (thus far) consistent with the first season's direction to the point that it really feels like the show picks up where we left off from both a narrative and visual standpoint.;False;False;;;;1610652124;;False;{};gj9cwsh;False;t3_kxayvb;False;False;t1_gj9acnw;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9cwsh/;1610731585;26;True;False;anime;t5_2qh22;;0;[]; -[];;;N1gHtMaRe99;;;[];;;;text;t2_4hm66djz;False;False;[];;I won't say darker but more slice of life;False;False;;;;1610652159;;False;{};gj9czki;False;t3_kxaa94;False;True;t1_gj98nqn;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9czki/;1610731647;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JackieFuu;;;[];;;;text;t2_7blss3gr;False;False;[];;Maybe the other humans. The demons haven't destroyed the human side yet, and there must be a reason for that.;False;False;;;;1610652173;;False;{};gj9d0oq;False;t3_kxayvb;False;False;t1_gj9958s;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9d0oq/;1610731668;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610652190;;False;{};gj9d21y;False;t3_kx9qo8;False;True;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9d21y/;1610731693;1;True;False;anime;t5_2qh22;;0;[]; -[];;;growinginsour;;;[];;;;text;t2_63hosv8x;False;False;[];;I don’t put slice of life and suicide in the same sentence;False;False;;;;1610652196;;False;{};gj9d2gv;False;t3_kxaa94;False;False;t1_gj9czki;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9d2gv/;1610731700;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Vangorf;;;[];;;;text;t2_otrl8;False;False;[];;Good to see that humanity wasnt wiped out by the demons and they fought back. Pretty much in every other story humanity goes out like a chump.;False;False;;;;1610652223;;False;{};gj9d4oe;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9d4oe/;1610731742;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Pythoner6;;;[];;;;text;t2_n4og0;False;False;[];;Ace of Diamond is probably my favorite of what I've seen, but I also liked Mix and Major 2nd.;False;False;;;;1610652239;;False;{};gj9d5ur;False;t3_kxbdlq;False;True;t3_kxbdlq;/r/anime/comments/kxbdlq/any_baseball_anime_recommendations/gj9d5ur/;1610731764;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nueker;;;[];;;;text;t2_971rkuiy;False;False;[];;Damn yori is so relatable, I was a volleyball player and i had that 'moments' like yori when everything i did was not working at all. I needed someone to helped me back into my normal mindset but noone did and i ended up getting subbed out. Found him annoying at first but realized that i can only see myself in him.Imagine doing so well in the first few matches before ending the day with a terrible performance. The terrible performance just ruins it.;False;False;;;;1610652261;;1610652684.0;{};gj9d7lz;False;t3_kxaa94;False;False;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9d7lz/;1610731800;22;True;False;anime;t5_2qh22;;0;[]; -[];;;N1gHtMaRe99;;;[];;;;text;t2_4hm66djz;False;False;[];;U don't know what Asahi has done in his samurai past;False;False;;;;1610652290;;False;{};gj9d9wa;False;t3_kxaa94;False;False;t1_gj9d2gv;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9d9wa/;1610731844;15;True;False;anime;t5_2qh22;;0;[]; -[];;;sligaro;;;[];;;;text;t2_ia1m7;False;False;[];;It's not exactly a shounen type show if that's what you're asking. At the very least, the show (this episode at least) explores the darker emotions of athletic performance that were far less present in Haikyuu.;False;False;;;;1610652340;;False;{};gj9ddyp;False;t3_kxaa94;False;False;t1_gj97ofk;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9ddyp/;1610731920;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Snivy_Ian;;;[];;;;text;t2_fdhiz;False;False;[];;at least the pacing was better this time, adapting chapters 46 - 49.;False;False;;;;1610652352;;False;{};gj9dexb;False;t3_kxayvb;False;False;t1_gj92dyj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9dexb/;1610731938;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Nanashi-74;;;[];;;;text;t2_5x0k2vam;False;False;[];;Do you think it'll be something like the movie whiplash? Dialed it down a bit of course;False;False;;;;1610652453;;False;{};gj9dmvh;False;t3_kxaa94;False;True;t1_gj9ddyp;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9dmvh/;1610732102;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610652455;;False;{};gj9dn42;False;t3_kxayvb;False;True;t1_gj9958s;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9dn42/;1610732106;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;Certainly, and the blush volume is still overboard for the weirdest things + the drama is maybe a bit much. On the other hand, visuals and music are still great, the OST composer is Yugo Kanno by the way who also worked on Jojo.;False;False;;;;1610652524;;False;{};gj9dsl6;False;t3_kxaa94;False;False;t1_gj91etu;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9dsl6/;1610732217;14;True;False;anime;t5_2qh22;;0;[]; -[];;;DurableNapkin;;;[];;;;text;t2_10klkt;False;False;[];;This is a long shot, but are you thinking of L from Death Note maybe?;False;False;;;;1610652528;;False;{};gj9dsww;False;t3_kxc8h9;False;False;t3_kxc8h9;/r/anime/comments/kxc8h9/ive_heard_of_a_mystery_anime_who_goes_by_the_name/gj9dsww/;1610732224;5;True;False;anime;t5_2qh22;;0;[]; -[];;;FortuneTune;;MAL a-amq;[];;http://myanimelist.net/animelist/fortunetune;dark;text;t2_h8vit;False;False;[];;"Maybe its this? - -https://myanimelist.net/anime/38936/Lord_El-Melloi_II_Sei_no_Jikenbo__Rail_Zeppelin_Grace_Note_-_Hakamori_to_Neko_to_Majutsushi";False;False;;;;1610652549;;False;{};gj9dun7;False;t3_kxc8h9;False;True;t3_kxc8h9;/r/anime/comments/kxc8h9/ive_heard_of_a_mystery_anime_who_goes_by_the_name/gj9dun7/;1610732258;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Weeb_twat;;;[];;;;text;t2_2thpxsq3;False;False;[];;"And some sweet looking visuals as well - -*~~looking at you white cell onee-sans~~*";False;False;;;;1610652567;;False;{};gj9dw1m;False;t3_kx9qo8;False;False;t1_gj96rn9;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9dw1m/;1610732286;13;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"probably, since you spell the letter L ""ell"" phonetically.";False;False;;;;1610652626;;False;{};gj9e0pi;False;t3_kxc8h9;False;False;t1_gj9dsww;/r/anime/comments/kxc8h9/ive_heard_of_a_mystery_anime_who_goes_by_the_name/gj9e0pi/;1610732384;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610652757;;1610660058.0;{};gj9eb9m;False;t3_kxbvf2;False;True;t3_kxbvf2;/r/anime/comments/kxbvf2/discussion_about_kuzu_no_honkai/gj9eb9m/;1610732600;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zevix_0;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Mei-Li;light;text;t2_14lw70;False;False;[];;I'll be picturing this happening in my body after I get the COVID vaccine lol;False;False;;;;1610652768;;False;{};gj9ec31;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9ec31/;1610732615;12;True;False;anime;t5_2qh22;;0;[]; -[];;;metaaltheanimefan;;;[];;;;text;t2_1qdntfx;False;False;[];;"So first half of the episode made me happy. The vegan demons are really likeable, hope they will stick around for a while - -Second half just made me want to lay innmy bed and cry a river";False;False;;;;1610652776;;False;{};gj9ecoa;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9ecoa/;1610732626;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;"That's reddit for you. -Surely a bitter American.";False;False;;;;1610652971;;False;{};gj9errz;False;t3_kxc1ds;False;True;t1_gj99rxe;/r/anime/comments/kxc1ds/relife_manga_help_please/gj9errz/;1610732926;2;True;False;anime;t5_2qh22;;0;[]; -[];;;applebyarrow;;;[];;;;text;t2_ehexg;False;False;[];;The second season is starting off great. I love the absurd humour of this series.;False;False;;;;1610653071;;False;{};gj9ezix;False;t3_kx9qo8;False;True;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9ezix/;1610733078;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610653073;;False;{};gj9ezqn;False;t3_kxayvb;False;True;t1_gj9ccam;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9ezqn/;1610733081;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AZLarlar;;;[];;;;text;t2_6d6peonh;False;False;[];;i really liked the guitar piece as everyone was learning different things to survive, theyre learning in many many different ways and its a great thing to see despite the circumstances;False;False;;;;1610653110;;False;{};gj9f2mu;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9f2mu/;1610733135;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;Cousin's accent in her first scene was way to over the top.;False;False;;;;1610653144;;False;{};gj9f5ce;False;t3_kxaa94;False;False;t1_gj97qzg;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9f5ce/;1610733188;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ak_them;;;[];;;;text;t2_13cyqy;False;False;[];;"two words - -character - -development";False;False;;;;1610653187;;False;{};gj9f8se;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9f8se/;1610733258;25;True;False;anime;t5_2qh22;;0;[]; -[];;;sxcialanimal;;;[];;;;text;t2_6pd78srh;False;False;[];;elfen lied?;False;False;;;;1610653206;;False;{};gj9fa95;False;t3_kxc8h9;False;False;t3_kxc8h9;/r/anime/comments/kxc8h9/ive_heard_of_a_mystery_anime_who_goes_by_the_name/gj9fa95/;1610733286;0;True;False;anime;t5_2qh22;;0;[]; -[];;;maullido;;;[];;;;text;t2_knqi8;False;False;[];;"one outs, battery - -most of mitsuru adachi works are related with baseball: cross game, mix, touch";False;False;;;;1610653214;;1610653409.0;{};gj9favd;False;t3_kxbdlq;False;True;t3_kxbdlq;/r/anime/comments/kxbdlq/any_baseball_anime_recommendations/gj9favd/;1610733298;1;True;False;anime;t5_2qh22;;0;[]; -[];;;drasheed132;;;[];;;;text;t2_39t8myjk;False;False;[];;Which episode did you find out that the wife died in a bathtub?;False;False;;;;1610653221;;False;{};gj9fbfl;False;t3_kxcdqa;False;False;t3_kxcdqa;/r/anime/comments/kxcdqa/help_looking_for_an_anime/gj9fbfl/;1610733311;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610653221;;False;{};gj9fbg7;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9fbg7/;1610733311;14;True;False;anime;t5_2qh22;;0;[]; -[];;;aTrustfulFriend;;;[];;;;text;t2_oppp4;False;False;[];;I dropped it after three episodes to read the manhua. I recommend the manhua 100%, its great. It is also very long, it'll keep you busy for a while.;False;False;;;;1610653229;;False;{};gj9fc1e;False;t3_kxa11y;False;True;t3_kxa11y;/r/anime/comments/kxa11y/what_do_you_guys_think_about_noblesse/gj9fc1e/;1610733323;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jubjubwarrior;;;[];;;;text;t2_5ss71;False;False;[];;whats up with that writing ray did on the tree? that the demons were looking at;False;False;;;;1610653246;;False;{};gj9fdbl;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9fdbl/;1610733348;49;True;False;anime;t5_2qh22;;0;[]; -[];;;myrmonden;;;[];;;;text;t2_f0rs6;False;False;[];;ITS AN ISEKAI !!!!;False;False;;;;1610653276;;False;{};gj9fft4;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9fft4/;1610733398;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok_Draw_2833;;;[];;;;text;t2_4dha12vu;False;False;[];;Not really veganism when it’s only one specific animal you won’t eat lol.;False;False;;;;1610653329;;False;{};gj9fk12;False;t3_kxayvb;False;False;t1_gj96dhn;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9fk12/;1610733484;68;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;Never watched Haikyuu but I believe Haikyuu is more about the volleyball while here the sport is secondary.;False;False;;;;1610653340;;False;{};gj9fkuh;False;t3_kxaa94;False;False;t1_gj97ofk;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9fkuh/;1610733500;6;True;False;anime;t5_2qh22;;0;[]; -[];;;UberDueler;;;[];;;;text;t2_bs1ea;False;False;[];;The coordinates Ray etched into the tree for the demons. Did we learn last week the intention behind that?;False;False;;;;1610653341;;False;{};gj9fkzh;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9fkzh/;1610733503;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mr_sto0pid;;;[];;;dark;text;t2_13ckn3;False;True;[];;Only if antivaxxers could see this.;False;False;;;;1610653376;;False;{};gj9fns1;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9fns1/;1610733560;19;True;False;anime;t5_2qh22;;0;[]; -[];;;sheeperZ;;;[];;;;text;t2_13yq2k;False;False;[];;Oof. Yuni's got a lot of stuff he needs to reflect on.;False;False;;;;1610653382;;False;{};gj9fo6g;False;t3_kxaa94;False;False;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9fo6g/;1610733569;4;True;False;anime;t5_2qh22;;0;[]; -[];;;jojo_is_trash;;;[];;;;text;t2_595dn1yo;False;False;[];;Option 4: *only watch Black and be depressed with no wholesomeness to prepare you or help you recover*;False;False;;;;1610653399;;False;{};gj9fpkr;False;t3_kx9qo8;False;False;t1_gj9al5t;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9fpkr/;1610733596;26;True;False;anime;t5_2qh22;;0;[]; -[];;;ItsNotPro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/itsnotpr0;light;text;t2_16uvkwin;False;False;[];;Is it actually two separate planets? I thought it meant one planet but 2 halves;False;False;;;;1610653418;;False;{};gj9fr0k;False;t3_kxayvb;False;False;t1_gj96odd;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9fr0k/;1610733626;80;True;False;anime;t5_2qh22;;0;[]; -[];;;Ignisov;;;[];;;;text;t2_7v23t5mq;False;False;[];;"Hardcore one - -Vanilla first, Black right after";False;False;;;;1610653424;;False;{};gj9frhi;False;t3_kx9qo8;False;False;t1_gj95gtr;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9frhi/;1610733636;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;True;[];;Lmao was that mump virus doing a fortnite dance at 9:13?;False;False;;;;1610653427;;False;{};gj9frrg;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9frrg/;1610733642;13;True;False;anime;t5_2qh22;;0;[]; -[];;;shining-moon;;;[];;;;text;t2_2vm6qc77;False;False;[];;its different from HQ and focus more on drama/ Slice of life;False;False;;;;1610653428;;False;{};gj9frvt;False;t3_kxaa94;False;True;t1_gj97ofk;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9frvt/;1610733644;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Frontlines95;;;[];;;;text;t2_87qtk;False;False;[];;I'd say Haikyuu is more hype. Only the two main characters carry any weight to the story imo. While in Haikyuu in the first two eps. most of the teammates had clear characterizations built.;False;False;;;;1610653436;;False;{};gj9fshs;False;t3_kxaa94;False;False;t1_gj97ofk;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9fshs/;1610733656;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuck_Taha_Emre;;;[];;;;text;t2_7zgvwi1l;False;False;[];;When I saw your username I was ready to defend my boi. Then I saw your flair and calmed down and became happy that we share the same opinions.;False;False;;;;1610653441;;False;{};gj9fsts;False;t3_kxayvb;False;False;t1_gj99voj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9fsts/;1610733663;35;True;False;anime;t5_2qh22;;0;[]; -[];;;luigirovatti1;;;[];;;;text;t2_169nyn;False;False;[];;">This is the only thing I could find with that title. It's a hentai. - -Though I don't want to watch it for that very reason, I think that's what I was, ehm, looking for. Thank you anyway.";False;False;;;;1610653496;;False;{};gj9fx7z;True;t3_kxc8h9;False;False;t1_gj9al4u;/r/anime/comments/kxc8h9/ive_heard_of_a_mystery_anime_who_goes_by_the_name/gj9fx7z/;1610733750;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610653501;;False;{};gj9fxmk;False;t3_kxayvb;False;True;t1_gj9ezqn;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9fxmk/;1610733758;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610653543;;False;{};gj9g0w2;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9g0w2/;1610733823;1;True;False;anime;t5_2qh22;;0;[]; -[];;;scrotalobliteration;;;[];;;;text;t2_ljytd;False;False;[];;Muslim demons, ftw!;False;False;;;;1610653547;;False;{};gj9g17s;False;t3_kxayvb;False;False;t1_gj9fk12;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9g17s/;1610733830;91;True;False;anime;t5_2qh22;;0;[]; -[];;;SparklessSoul;;;[];;;;text;t2_7akjl1jb;False;False;[];;"So far so good, I like the demons - -Also a lot of the dialogue are giving me red flags lmao";False;False;;;;1610653548;;False;{};gj9g1bo;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9g1bo/;1610733831;6;True;False;anime;t5_2qh22;;0;[]; -[];;;shining-moon;;;[];;;;text;t2_2vm6qc77;False;False;[];;I wish i could read the novel. as you know, it is based on a novel with 5 volume. so, i wonder if they are going to adapt all in 12 ep. to me, this episode felt kinda rushed or fast paced ,i dunno may be it was the same as it was presented in the novel since it is not a long run one;False;False;;;;1610653596;;1610654321.0;{};gj9g52y;False;t3_kxaa94;False;False;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9g52y/;1610733914;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Belmut_613;;;[];;;;text;t2_18ua7y;False;False;[];;They are not vegan they just can't eat humans because of their religion.;False;False;;;;1610653643;;False;{};gj9g8sp;False;t3_kxayvb;False;False;t1_gj9ecoa;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9g8sp/;1610733988;16;True;False;anime;t5_2qh22;;0;[]; -[];;;catmeom;;;[];;;;text;t2_8crwsgoc;False;False;[];;If haikyuu is the standard to consider, then rest of sport anime is depressing;False;False;;;;1610653664;;False;{};gj9gah0;False;t3_kxaa94;False;True;t1_gj97ofk;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9gah0/;1610734022;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610653708;;False;{};gj9gds1;False;t3_kxayvb;False;True;t1_gj9fxmk;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9gds1/;1610734089;2;True;False;anime;t5_2qh22;;0;[]; -[];;;metaaltheanimefan;;;[];;;;text;t2_1qdntfx;False;False;[];;I know but calling them that makes me happy and gives me hope;False;False;;;;1610653718;;False;{};gj9gek6;False;t3_kxayvb;False;False;t1_gj9g8sp;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9gek6/;1610734103;3;True;False;anime;t5_2qh22;;0;[]; -[];;;_Nonso;;;[];;;;text;t2_1xygu1ye;False;False;[];;Currently the easiest to jump into is Black Clover. Hasn't had too many episodes so far. Of course there's one piece but that's an investment;False;False;;;;1610653728;;False;{};gj9gfea;False;t3_kxac4x;False;True;t3_kxac4x;/r/anime/comments/kxac4x/what_are_some_good_non_seasonal_anime/gj9gfea/;1610734120;1;True;False;anime;t5_2qh22;;0;[]; -[];;;catmeom;;;[];;;;text;t2_8crwsgoc;False;False;[];;"can you do bigger crimes than not watching haikyuu /s - -&#x200B; - -please do watch it, it is excellent";False;False;;;;1610653756;;False;{};gj9ghmt;False;t3_kxaa94;False;True;t1_gj9fkuh;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9ghmt/;1610734163;3;True;False;anime;t5_2qh22;;0;[]; -[];;;yachi100;;;[];;;;text;t2_3crjo0im;False;False;[];;I love how well drawn this episode was. The forest scenes are beautiful to look at. They did a good job at showing how terrifying and hard it was for Emma to slaughter/kill a living being. Really great episode.;False;False;;;;1610653771;;False;{};gj9gip8;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9gip8/;1610734182;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok_Draw_2833;;;[];;;;text;t2_4dha12vu;False;False;[];;I’m pretty sure it’s not only Muslims that don’t eat human. Lol;False;False;;;;1610653789;;False;{};gj9gk4z;False;t3_kxayvb;False;False;t1_gj9g17s;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9gk4z/;1610734209;41;True;False;anime;t5_2qh22;;0;[]; -[];;;catmeom;;;[];;;;text;t2_8crwsgoc;False;False;[];;yeah;False;False;;;;1610653845;;False;{};gj9goj5;False;t3_kxaa94;False;True;t1_gj9f5ce;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9goj5/;1610734301;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610653881;;False;{};gj9grfa;False;t3_kxayvb;False;True;t1_gj98pbn;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9grfa/;1610734358;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610653926;;False;{};gj9guwj;False;t3_kxayvb;False;True;t1_gj9bla7;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9guwj/;1610734434;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok_Draw_2833;;;[];;;;text;t2_4dha12vu;False;False;[];;If there is one thing Emma isn’t, its realistic. Lol;False;False;;;;1610653937;;False;{};gj9gvr4;False;t3_kxayvb;False;False;t1_gj9958s;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9gvr4/;1610734453;235;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;They definitely cut some stuff from the manga about Sonju and Musika's reasons for not eating humans, it's not ultimately super important but it's there. Overall just a lot of details cut that add context to scenes.;False;False;;;;1610653979;;False;{};gj9gz4c;False;t3_kxayvb;False;False;t1_gj9a790;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9gz4c/;1610734531;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhoenix995;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_38ji019d;False;False;[];;">Did this episode feel like it ended abruptly to anybody else? I thought the ending was the halfway point and then it was suddenly over. - -Tbf the episode really was only 5 mins.";False;False;;;;1610653985;;False;{};gj9gzlr;False;t3_kxayvb;False;False;t1_gj96o7a;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9gzlr/;1610734540;198;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610654060;;False;{};gj9h5hj;False;t3_kxa5ud;False;True;t3_kxa5ud;/r/anime/comments/kxa5ud/action_anime_with_a_little_bit_of_romance/gj9h5hj/;1610734664;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610654073;;False;{};gj9h6hv;False;t3_kxayvb;False;True;t1_gj9ccam;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9h6hv/;1610734684;3;True;False;anime;t5_2qh22;;0;[]; -[];;;F00dbAby;;;[];;;;text;t2_rt6uy;False;False;[];;People who want a more sports centric show will be disappointed. But im all here for the drama.;False;False;;;;1610654085;;1610676592.0;{};gj9h7eb;False;t3_kxaa94;False;False;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9h7eb/;1610734702;27;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610654091;;False;{};gj9h7xx;False;t3_kxayvb;False;True;t1_gj9grfa;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9h7xx/;1610734713;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Emma considers everyone from the farm brothers and sisters, she's referring to Connie who was revealed to be killed by the flower in episode 1 of season 1;False;False;;;;1610654126;;False;{};gj9haqz;False;t3_kxayvb;False;False;t1_gj9blon;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9haqz/;1610734771;16;True;False;anime;t5_2qh22;;0;[]; -[];;;CenturionRower;;;[];;;;text;t2_aq6uh;False;False;[];;"Yea that is the case, but still ""two worlds"" which could be separated by water, a wall, ect. - -But for all we know, that world is completely different from the one they know. I have a feeling they might not like the world they find, and I have a feeling this show is not going to have a happy ending.";False;False;;;;1610654184;;False;{};gj9hfaj;False;t3_kxayvb;False;False;t1_gj9fr0k;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9hfaj/;1610734864;81;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610654207;;False;{};gj9hh22;False;t3_kxayvb;False;True;t1_gj9guwj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9hh22/;1610734900;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;"Oh, so [Mujika and Sonju](https://i.imgur.com/nK38rEu.png) don't eat people because of their religion - -Damn, [Gilda can really be terrifying.](https://i.imgur.com/iCyLjtQ.png) - -So they are not on earth and whatever in that world that led to the creation of the farms happened one thousand years ago. - -Well, now I wonder how old are the clues they are currently following?";False;False;;;;1610654260;;False;{};gj9hl4p;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9hl4p/;1610734985;14;True;False;anime;t5_2qh22;;0;[]; -[];;;sohvan;;;[];;;;text;t2_8z82g;False;False;[];;Humans from 1000 years ago were able to fight the demons to a stalemate, and they said the demon world hasn't changed much in 1000 years. Chances are the modern human world would crush the demons if the worlds united again.;False;False;;;;1610654297;;False;{};gj9hnzu;False;t3_kxayvb;False;False;t1_gj9958s;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9hnzu/;1610735045;93;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your submission has been removed. - -- You might consider posting this to - /r/Manga - instead. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610654298;moderator;False;{};gj9ho2d;False;t3_kxc1ds;False;True;t3_kxc1ds;/r/anime/comments/kxc1ds/relife_manga_help_please/gj9ho2d/;1610735046;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RasenRendan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RasenRendan;light;text;t2_118o7l;False;False;[];;"This episode was really heavy. Having to kill something for the first time is never easy but it's a must have skill in that world. Better to get over the fear now. - -I'm glad the two monsters turned out to be friendly. The entire time i was afraid they would turn on the kids.";False;False;;;;1610654324;;False;{};gj9hq6o;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9hq6o/;1610735093;5;True;False;anime;t5_2qh22;;0;[]; -[];;;2ndtolastuchiha;;;[];;;;text;t2_8tgp9rxp;False;False;[];;i mean, Emma is like 12 so she probably isn't thinking about the war she might start;False;False;;;;1610654492;;False;{};gj9i3c6;False;t3_kxayvb;False;False;t1_gj9958s;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9i3c6/;1610735372;37;True;False;anime;t5_2qh22;;0;[]; -[];;;CenturionRower;;;[];;;;text;t2_aq6uh;False;False;[];;"Well the issue is currently that we have no idea what could possibly be happening. The ""human"" side as being described to us could be litterally anything since they only know about it second hand. - -Theres a real possibility that the kids were taught to speak the demons tounge, meaning even if they get to the other side, they are immediately given away as they would be unable to communicate. This whole series is going to be that the grass looks greener, until you get there and realize it's not, you were pretending and lying to yourself.";False;False;;;;1610654519;;False;{};gj9i5gc;False;t3_kxayvb;False;False;t1_gj9d0oq;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9i5gc/;1610735417;37;True;False;anime;t5_2qh22;;0;[]; -[];;;slicer4ever;;;[];;;;text;t2_bgvkp;False;False;[];;">God this ~~day~~ season is **stacked**. - -Seriously i dont think we'll see another season with so many hit shows for a very long time.";False;False;;;;1610654614;;False;{};gj9icuu;False;t3_kxayvb;False;False;t1_gj98a43;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9icuu/;1610735573;25;True;False;anime;t5_2qh22;;0;[]; -[];;;RHO-PI;;;[];;;;text;t2_32yngflb;False;False;[];;"I choose the second option. It's like ""Look at this happy-go-lucky city. Everyone's working super hard to keep it functional. Now look at this garbage dump, ready to break down at any moment. DON'T LET YOURSELF BECOME THE LATTER.""";False;False;;;;1610654663;;False;{};gj9iglm;False;t3_kx9qo8;False;False;t1_gj95gtr;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9iglm/;1610735647;14;True;False;anime;t5_2qh22;;0;[]; -[];;;RasenRendan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RasenRendan;light;text;t2_118o7l;False;False;[];;Wholesome ending. It's obviously not as dark as black but it still has lessons to be learnt;False;False;;;;1610654669;;False;{};gj9ih3k;False;t3_kx9qo8;False;True;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9ih3k/;1610735657;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yuwenn8;;;[];;;;text;t2_13irok;False;False;[];;All is playing out just as Phil planned. That is all.;False;False;;;;1610654693;;False;{};gj9iiyx;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9iiyx/;1610735696;15;True;False;anime;t5_2qh22;;0;[]; -[];;;RHO-PI;;;[];;;;text;t2_32yngflb;False;False;[];;An episode about vaccination when a new, much needed vaccine is out in the world. Hope it educates some people to get it.;False;False;;;;1610654807;;False;{};gj9irqa;False;t3_kx9qo8;False;False;t1_gj9akdi;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9irqa/;1610735883;40;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610654908;;False;{};gj9izcj;False;t3_kxayvb;False;True;t1_gj9gk4z;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9izcj/;1610736046;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Successful_Priority;;;[];;;;text;t2_55g7r9t7;False;False;[];;Really? Name 5 groups. Jk;False;False;;;;1610654944;;False;{};gj9j27u;False;t3_kxayvb;False;False;t1_gj9gk4z;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9j27u/;1610736106;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Trotterswithatwist;;;[];;;;text;t2_dv6e1;False;False;[];;"I feel like too many people are getting the wrong end of the stick with this series, and becoming disappointed as a result. To me, it’s a dark slice of life with sports, *not* a sports anime. They are trying to tackle *much* bigger issues here; bullying, peer pressure, suicide, anxiety, pressure to ‘fit in’. It’s not about the volleyball. - -For that reason I really like it, it’s very different to the positive buddy fluff we normally get, and I can imagine it hits quite close to home for some people.";False;False;;;;1610654963;;False;{};gj9j3ov;False;t3_kxaa94;False;False;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9j3ov/;1610736136;98;True;False;anime;t5_2qh22;;0;[]; -[];;;Redmon425;;;[];;;;text;t2_15ro6h;False;False;[];;"Yeah, I don’t know which one actually. I originally thought it meant other side of this 1 planet. - -But then when we see all the weird creatures, it makes think there is a possibility of an actual 2nd world somehow.";False;False;;;;1610654981;;False;{};gj9j55p;False;t3_kxayvb;False;False;t1_gj9fr0k;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9j55p/;1610736166;4;True;False;anime;t5_2qh22;;0;[]; -[];;;four-lokos;;;[];;;;text;t2_2lmsysym;False;False;[];;so i’m watching 25 animes this season (ik idk how) is this anime really worth my time? I know it’s early on but I’ve debating picking it up!;False;False;;;;1610655019;;False;{};gj9j872;False;t3_kxaa94;False;True;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9j872/;1610736230;3;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;;;[];;;;text;t2_4la0rf79;False;False;[];;That describes both Kiss X Sis and Shinmai Maou No Testament lol;False;False;;;;1610655120;;False;{};gj9jg4w;False;t3_kxaj29;False;False;t1_gj9ajq3;/r/anime/comments/kxaj29/looking_for_ecchi_anime_recommendations/gj9jg4w/;1610736393;5;True;False;anime;t5_2qh22;;0;[]; -[];;;tiler2;;;[];;;;text;t2_11s570;False;False;[];;I think hunting in this case is probably more of looking for a life and death battle which is i guess less cruel?maybe?;False;False;;;;1610655139;;False;{};gj9jhlt;False;t3_kxayvb;False;True;t1_gj97bh4;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9jhlt/;1610736425;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Orochidude;;;[];;;;text;t2_dgqnq;False;False;[];;"> I am an anime only so no spoilers please. Does Isabella know that Ray is alive? - -I mean, she saw them all escape at the end of last season, so I don't see why she wouldn't. And even if she didn't see him specifically on the other side, she knows that he wasn't really in the fire, which would suggest that he was with the rest of the kids.";False;False;;;;1610655163;;False;{};gj9jjha;False;t3_kxayvb;False;False;t1_gj99lvm;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9jjha/;1610736464;38;True;False;anime;t5_2qh22;;0;[]; -[];;;magical-grill;;;[];;;;text;t2_box4k85;False;False;[];;"I don't think that'll be the case since the orphanage had books published as recent as 30 years ago. I doubt those were written by the demons since the kids assumed the world was 'normal' then, and they can't have been written by other humans on this side of the world since they're all under the control of the demons, and there's no reason for the demons to want such texts written. - -Soooo books from the human side somehow, for whatever reason ended up on the demon's side";False;False;;;;1610655168;;False;{};gj9jjua;False;t3_kxayvb;False;False;t1_gj9i5gc;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9jjua/;1610736472;17;True;False;anime;t5_2qh22;;0;[]; -[];;;PrCitan;;;[];;;;text;t2_g7gxr;False;False;[];;Wait... is Ray still a traitor? I thought he left fake coordinates, but those look like the actual coordinates left to the demons. That just makes it seem like he's still a traitor.;False;False;;;;1610655172;;False;{};gj9jk6u;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9jk6u/;1610736478;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Swyfti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Swyfty;light;text;t2_ce1yn;False;False;[];;Gotta love dark humor.;False;False;;;;1610655201;;False;{};gj9jmga;False;t3_kxayvb;False;False;t1_gj9893h;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9jmga/;1610736526;37;True;False;anime;t5_2qh22;;0;[]; -[];;;lucacp_ysoz;;MAL;[];;http://myanimelist.net/profile/SoZLuka;dark;text;t2_gch7f;False;False;[];;"holy sh!t, my heart totally skipped a beat at 15:14, my brain saw Norman there. Snk S1 Forest of Giant Trees at 16:35 - -Wow, that look at the end. A Girl becomes a warrior.";False;False;;;;1610655277;;False;{};gj9jsh7;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9jsh7/;1610736650;5;True;False;anime;t5_2qh22;;0;[]; -[];;;chickenwings247;;;[];;;;text;t2_9zfpjrp;False;False;[];;Only anime I know that starts with el is an older western one;False;False;;;;1610655308;;False;{};gj9juyf;False;t3_kxc8h9;False;True;t3_kxc8h9;/r/anime/comments/kxc8h9/ive_heard_of_a_mystery_anime_who_goes_by_the_name/gj9juyf/;1610736698;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IXajll;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ixajii;light;text;t2_ob6j8;False;False;[];;I thought it was just me who thought they sorta overdid it with the blushing. Kinda takes away the meaningfulness of it if the characters have red cheeks every other scene they are in.;False;False;;;;1610655329;;False;{};gj9jwn5;False;t3_kxaa94;False;False;t1_gj9dsl6;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9jwn5/;1610736731;5;True;False;anime;t5_2qh22;;0;[]; -[];;;daemare;;;[];;;;text;t2_d2nmn;False;False;[];;I start med school tis August. I just got my Masters degree in Bio last semester. It actually is quite astonishing to see how well broken down each subject is taken. Entertaining and properly educational. Like I told my students to watch this and I know Ill have some stuff from this in my notes.;False;False;;;;1610655333;;False;{};gj9jwwn;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9jwwn/;1610736736;6;True;False;anime;t5_2qh22;;0;[]; -[];;;boran_blok;;MAL;[];;http://myanimelist.net/animelist/boran_blok;dark;text;t2_3gho6;False;False;[];;Time to add Shinmai Maou No Testament to my PTW;False;False;;;;1610655384;;False;{};gj9k0ub;False;t3_kxaj29;False;False;t1_gj9jg4w;/r/anime/comments/kxaj29/looking_for_ecchi_anime_recommendations/gj9k0ub/;1610736821;3;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;"Tasiho Baseball Girls - -Baseball episodes of Haruhi, & Samurai Champloo.";False;False;;;;1610655444;;False;{};gj9k5m6;False;t3_kxbdlq;False;True;t3_kxbdlq;/r/anime/comments/kxbdlq/any_baseball_anime_recommendations/gj9k5m6/;1610736920;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IXajll;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ixajii;light;text;t2_ob6j8;False;False;[];;Do you even watch all the shows you comment your “meh” on or just a sad trolling attempt?;False;False;;;;1610655445;;False;{};gj9k5rd;False;t3_kxaa94;False;True;t1_gj90mzu;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9k5rd/;1610736923;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KrazyBean94;;;[];;;;text;t2_110dr6;False;False;[];;After this episode, I think it's going to be less of a sports anime and more of a drama. I actually think that's a good move to help differentiate it more.;False;False;;;;1610655445;;False;{};gj9k5rq;False;t3_kxaa94;False;False;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9k5rq/;1610736923;41;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610655460;;False;{};gj9k6x7;False;t3_kxayvb;False;True;t1_gj9fdbl;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9k6x7/;1610736946;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tiler2;;;[];;;;text;t2_11s570;False;False;[];;Yep, the demon's fighting technology probably hasn't changed much since they are physically powerful and fast. They had to accept a stalemate from 1400s humans. No way they stand a chance against modern ones;False;False;;;;1610655461;;False;{};gj9k6zc;False;t3_kxayvb;False;False;t1_gj9hnzu;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9k6zc/;1610736947;64;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;"Oh, I bet that was intentional, so they can turn up the queer-/fujo-baiting even more but at the same time go ""see? see? not gay at all!"" to the homophobic part of the audience. It's the same junk as so often and I'm disappointed but unsurprised it's still going on.";False;False;;;;1610655535;;1610655737.0;{};gj9kcvv;False;t3_kxaa94;False;False;t1_gj9jwn5;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9kcvv/;1610737060;9;True;False;anime;t5_2qh22;;0;[]; -[];;;tiler2;;;[];;;;text;t2_11s570;False;False;[];;It's to fuck with the demons. He is hoping that the demons will think that the coordinates are instructions he gave to the rest of the gang but it's just a red herring to waste the demons time;False;False;;;;1610655674;;False;{};gj9ko07;False;t3_kxayvb;False;False;t1_gj9fkzh;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9ko07/;1610737271;11;True;False;anime;t5_2qh22;;0;[]; -[];;;tiler2;;;[];;;;text;t2_11s570;False;False;[];;Seems more like they are on earth, just one that has been split into two;False;False;;;;1610655722;;False;{};gj9kruk;False;t3_kxayvb;False;False;t1_gj9hl4p;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9kruk/;1610737343;6;True;False;anime;t5_2qh22;;0;[]; -[];;;fenrir245;;;[];;;;text;t2_1hqr9iah;False;False;[];;Hello RBC senpai;False;False;;;;1610655789;;False;{};gj9kx29;False;t3_kx9qo8;False;False;t1_gj9fpkr;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9kx29/;1610737439;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SYZekrom;;;[];;;;text;t2_i5y6z;False;False;[];;"Just caught up binging S1 yesterday - -And back to regular Cells at Work - -**Ep1** - -[Poor kid](https://cdn.discordapp.com/attachments/621713361390010378/799359212148883546/unknown.png) - -[Oh my god stop that's too powerful of a combination](https://cdn.discordapp.com/attachments/621713361390010378/799361003866685480/unknown.png) - -[Oh my god what is this](https://cdn.discordapp.com/attachments/621713361390010378/799361239897473054/unknown.png) - -[huuuuuuggggggs](https://cdn.discordapp.com/attachments/621713361390010378/799362556594094100/unknown.png) - -**Ep2** - -[Bro they filming a youtube prank show in here](https://cdn.discordapp.com/attachments/621713361390010378/799371690454810744/unknown.png) - -He just got pranked so hard - -That's a camera, there's a camera, and there's a camera in this apple, and a camera in this drink - -Except instead of a camera it's a knife that's about to go in your chest - -[Damn how he gotta leave his date...](https://cdn.discordapp.com/attachments/621713361390010378/799372265359147008/unknown.png) - -Dates like that";False;False;;;;1610655802;;False;{};gj9ky26;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9ky26/;1610737458;22;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610655863;;False;{};gj9l2xn;False;t3_kxayvb;False;True;t1_gj9ezqn;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9l2xn/;1610737554;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610656109;;False;{};gj9ln3p;False;t3_kxayvb;False;True;t1_gj9hfaj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9ln3p/;1610737933;10;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;;;[];;;;text;t2_4la0rf79;False;False;[];;"Also the PTW list: 519171919 animes - - -Jking";False;False;;;;1610656174;;False;{};gj9ltby;False;t3_kxaj29;False;True;t1_gj9k0ub;/r/anime/comments/kxaj29/looking_for_ecchi_anime_recommendations/gj9ltby/;1610738043;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Samultio;;MAL;[];;https://myanimelist.net/animelist/Samulito;dark;text;t2_6r57m;False;False;[];;He did say that the world used to be larger, so it is definitely a possibility.;False;False;;;;1610656245;;False;{};gj9lzxj;False;t3_kxayvb;False;True;t1_gj9fr0k;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9lzxj/;1610738158;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Fehervari;;;[];;;;text;t2_4wj5c6;False;False;[];;"> Emma trains to become an Archer Servant - -Are you trying to tell me that the Archer class is really made up of archers?";False;False;;;;1610656349;;False;{};gj9m97g;False;t3_kxayvb;False;False;t1_gj982ge;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9m97g/;1610738328;110;True;False;anime;t5_2qh22;;0;[]; -[];;;tiler2;;;[];;;;text;t2_11s570;False;False;[];;That's why ray and Emma are so hopeful, they believe that there must have been a way for the book to make it from the human world and thus they should be able to transport themself back through the same process;False;False;;;;1610656403;;False;{};gj9me2u;False;t3_kxayvb;False;False;t1_gj9b5t3;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9me2u/;1610738419;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;Looks like Thursday is the new Friday this season lol;False;False;;;;1610656413;;False;{};gj9mexy;False;t3_kxayvb;False;False;t1_gj9b0b3;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9mexy/;1610738436;77;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"I mean, you can't expect a realistic plan from an idealistic person - -[](#yousaidsomethingdumb)";False;False;;;;1610656491;;False;{};gj9mm5g;False;t3_kxayvb;False;False;t1_gj9958s;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9mm5g/;1610738562;27;True;False;anime;t5_2qh22;;0;[]; -[];;;tiler2;;;[];;;;text;t2_11s570;False;False;[];;Ye pretty impressive for them to have forced the demons into accepting a peace treaty?;False;False;;;;1610656531;;False;{};gj9mpxa;False;t3_kxayvb;False;True;t1_gj9d4oe;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9mpxa/;1610738625;1;True;False;anime;t5_2qh22;;0;[]; -[];;;slader0745;;;[];;;;text;t2_5aavgkea;False;False;[];;1st episode with not a serious cliffhanger;False;False;;;;1610656564;;False;{};gj9mtc7;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9mtc7/;1610738684;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nescau_Fernando;;;[];;;;text;t2_1m6og0;False;False;[];;"This episode adapted chapters 46 to 49. It was very well paced, adding some nice little details that enriched the narrative: - -- When Emma gives Sonju an angry stare and screams ""Are they safe?!"", the little creatures scatter. - -- After Sonju responds with a single amused ""Hoo..."", [Emma gulps in fear while trying to maintain the tough face](https://i.imgur.com/AQtlbzF.png). - -- Upon finding the children, [Ray gets hugged too! <3](https://i.imgur.com/HCG6MG2.png) - -- The cave navigation is more complex and requires [Sonju to constantly stay still holding the lantern while the children help each other](https://i.imgur.com/hK8eG8O.png). In the manga, the terrain is mostly plain and linear. - -- The montage where the kids learn survival skills from both demons is extended, featuring more activities and children. The small manga panels they adapted are more detailed in the anime. The children also rest and traverse the cave inbetween said activities, making the segment a lot more organic. Very good job. - -Not everything was positive, though. In addition to the usual lack of internal monologues, there was a major omission from [Manga chapter 47](/s ""When Sonju talks to Ray and Emma about the promise, the manga shows a lot of pictures of the brutal war between humans and demons plus foreshadowing of an important character, all of which is absent in the anime. The internal monologues are also very important here, because they reach the conclusion that William Minerva could possibly be the one crossing the barrier between the two worlds after thinking about sister Krone's words about human associates""). They also omitted [Chapter 48](/s ""the foreshadowing about youknowwho""), but this specific part could easily be included next episode. - -Finally the hunting scene has differences in the anime. [Chapter 49 to anime comparison](/s ""1) In the manga, Emma shots a mid-air bird on first try, notices that downed bird is still alive and warm and that's it. In the anime, Emma hesitates to shoot the bird after it looks at her, then gets her shit together after Sonju reminds her about the need to protect herself and her family. The bird is also stationary, making her success more realistic. 2) After using the gupna, Emma vomits then tells Sonju about Conny. In the manga, she doesn't vomit and tells Sonju about Conny as soon as she sees the flower. 3) When Emma gets back to the cave, the children notice her behaving strangely. She tells them she's okay. In the manga, this dialog happens between Sonju and Emma before they enter the cave. Other than Ray, none of the children notice anything about Emma's behavior""). I prefer the anime version for 1 and 2, but liked the manga version of 3 more. - -Overall, very good episode. 4 chapters per episode may be the sweet spot for the anime if we consider internal monologues are always gonna be skipped.";False;False;;;;1610656589;;1610673479.0;{};gj9mvqs;False;t3_kxayvb;False;False;t1_gj92dyj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9mvqs/;1610738728;23;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610656607;;False;{};gj9mxhm;False;t3_kxayvb;False;True;t1_gj9hh22;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9mxhm/;1610738759;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zonca;;;[];;;;text;t2_11odu8;False;False;[];;"""Someone has to do it, someone has to stain their hands with blood."" - - -""Those that can't sacrifice anything, can't ever change anything.""";False;False;;;;1610656608;;False;{};gj9mxlh;False;t3_kxayvb;False;False;t1_gj95sjg;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9mxlh/;1610738760;54;True;False;anime;t5_2qh22;;0;[]; -[];;;Astro-LUV;;;[];;;;text;t2_6fl5nkvf;False;False;[];;I think he left that to the kids in case he died, but I think it backfired;False;False;;;;1610656665;;False;{};gj9n35b;False;t3_kxayvb;False;False;t1_gj9jk6u;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9n35b/;1610738855;14;True;False;anime;t5_2qh22;;0;[]; -[];;;HannibalCake;;;[];;;;text;t2_13gozl;False;False;[];;"This whole episode I was just waiting for something to go wrong. I don't know what do with this somehow depressing wholesomeness. - -Also think its kinda funny that the kiddos only survived because of what is essentially demon vegans. Or do they just not eat meat that comes from humans? Maybe they're just ethical lol - -It's pretty crazy to see how the kids are basically taking all of this in stride, just goes to show that Emma and Ray are like the best for Morale. I also like how Ray is pretty much Emma's hype man in her little speech.";False;False;;;;1610656665;;False;{};gj9n35h;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9n35h/;1610738855;5;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;"I love the slight change in art style [when Memory was trying to remember](https://i.imgur.com/TZBSFHL.png) what his dream was. - -[These Mumps viruses looks creepy as fuck.](https://i.imgur.com/I4USgJN.png) And even creepier when they're in a horde. - -[Just linking this part where Macrophage jumps into battle.](https://gfycat.com/unfitwastefulannelid) I just love her so much <3 - - -[Just look at her!](https://i.imgur.com/hWTd5DA.png) Lucky virus getting headlocked by Macrophage! - - - -[Ohhh!](https://i.imgur.com/w517VGU.png) I just realized what was happening! The Mumps that they fought before was from a vaccine! I guess sooner or later Cells at Work will tackle [something that is very relevant to current events.](https://i.imgur.com/tFy28Uw.png) - - -So having acquired immunity is like [having a laser turret](https://i.imgur.com/kJa2OOi.png) insider your body that gets rid of antigens? Cool. - -As someone who regularly experiences stomach pain I wonder [if this is the same bacteria that causes it.](https://i.imgur.com/RZ1y11U.png) If it is then I finally have a face to hate the next time my stomach aches. - - -[The Neutrophils trying to trick the Campylobacters](https://i.imgur.com/Ns9Mijg.png) was just hilarious! And I just love this [shot of them in chibi form.](https://i.imgur.com/vZLwap4.png) - -[Was that supposed to be a Death Parade reference?](https://i.imgur.com/tU4sB56.png) Also that's Hayami Show voicing M Cell! He's absolutely perfect for a dandy gentleman bar owner type! - -[You fuckers came into the wrong tissue wall!](https://i.imgur.com/1mXSrnB.png) It's really a good choice watching this **after** Cells at Work Black. I love both shows but it's just fun seeing bacteria getting their ass kicked so easily unlike how they struggle in the other series.";False;False;;;;1610656817;;False;{};gj9ni9v;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9ni9v/;1610739114;34;True;False;anime;t5_2qh22;;0;[]; -[];;;flybypost;;;[];;;;text;t2_e4p0i;False;False;[];;"> Chances are the modern human world would crush the demons if the worlds united again. - -They got that magic high tech pen so humanity could be quite a bit more advanced than the ""oh we got swords and spears"" daemons.";False;False;;;;1610656821;;False;{};gj9niot;False;t3_kxayvb;False;False;t1_gj9hnzu;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9niot/;1610739122;81;True;False;anime;t5_2qh22;;0;[]; -[];;;Zonca;;;[];;;;text;t2_11odu8;False;False;[];;Obviously some 4d-chess big brain plan, but I can't even begin to guess what it is, it points to a location Minerva said in his pen they should go for and I thought they were heading there in the first place ... maybe Ray distrusts such instructions and expects something from demons checking the place.;False;False;;;;1610656878;;False;{};gj9no54;False;t3_kxayvb;False;False;t1_gj9fdbl;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9no54/;1610739223;41;True;False;anime;t5_2qh22;;0;[]; -[];;;Ispenthourmakingthis;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Qrow_Branwen42;light;text;t2_3hk5nmob;False;False;[];;Emma's hesitation and reaction to killing the bird was anime original right? If so then I'm really glad they added that. It really adds to her character.;False;False;;;;1610656881;;False;{};gj9nog3;False;t3_kxayvb;False;True;t1_gj92dyj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9nog3/;1610739228;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LimoneSorbet;;;[];;;;text;t2_2wbxbpfg;False;False;[];;"I don't know why, but the way they phrased ""we eat everything but human flesh"" was odd for me; I get that they can eat other types of meat and stuff, but does ""everything"" else include other demons?";False;False;;;;1610656900;;False;{};gj9nq62;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9nq62/;1610739260;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Ominous_Strix;;;[];;;;text;t2_3km5xr5i;False;False;[];;Judging from the fancy pen the humans have advanced technology, and at the very least nukes probably in that case. Sonju said the humans started killing more and more demons, and given how sparse the demon half of the world seems to be perhaps the demons were always small in numbers? Perhaps their natural state is that of the 2 we have met, nomads.;False;False;;;;1610656998;;False;{};gj9nzma;False;t3_kxayvb;False;False;t1_gj9i5gc;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9nzma/;1610739425;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Lendios;;;[];;;;text;t2_r9w03;False;False;[];;"Being from Iran, I can say that we were purposefully shown at a young age to 'help us mature' and understand life for what it is. - -Obviously not every family does this";False;False;;;;1610657073;;False;{};gj9o6vd;False;t3_kxayvb;False;False;t1_gj9a3s2;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9o6vd/;1610739561;14;True;False;anime;t5_2qh22;;0;[]; -[];;;TheTruthVeritas;;;[];;;;text;t2_1056nw;False;False;[];;"With how vague Sonju was and how apparently nobody knows what the human world is like, and given the 1000 year difference and that even the humans from 1000 years ago were strong enough to force a peace treaty between the physically powerful demons and humans, there’s definitely something shady going on. With how even the demons seem to have pretty decent tech and Sonju saying that the world hasn’t changed much, as least so much as he knows, shouldn’t the human world have really good tech? I mean, I think even just fighter jets, bombers, tanks, and machine guns should be enough to easily wipe out a powerful race that loves eating them. - -With how dark this series is, it’s definitely not going to be a “go to the human world and live happily ever after.” I have this feeling the human world is likely even darker and more messed up than the demons, with them being a total mystery. Sonju and Musika didn’t add a “but...” twist saying their chances and the world are hopeless, which is definitely giving me a vibe things are definitely up with the humans. - -Makes me curious about how the plot will progress, especially with how...vocal manga readers are about some things. Just what is going to happen?";False;False;;;;1610657130;;False;{};gj9ocbj;False;t3_kxayvb;False;False;t1_gj9d4oe;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9ocbj/;1610739657;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Zonca;;;[];;;;text;t2_11odu8;False;False;[];;Every fantasy is an isekai and every isekai is a fantasy nowadays it seems....;False;False;;;;1610657158;;False;{};gj9of3o;False;t3_kxayvb;False;True;t1_gj9fft4;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9of3o/;1610739707;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610657172;moderator;False;{};gj9ogir;False;t3_kxayvb;False;True;t1_gj98pbn;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9ogir/;1610739735;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CenturionRower;;;[];;;;text;t2_aq6uh;False;False;[];;Yea but doesnt change the fact that they could be speaking the demons language. And its possible that updated texts are apart of the agreement. No reason the demons and humans couldnt be on good terms meaning the kids are doomed from the start.;False;False;;;;1610657204;;False;{};gj9ojka;False;t3_kxayvb;False;False;t1_gj9jjua;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9ojka/;1610739801;7;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;"UFO Princess Valkyrie - -Yusibu - -How NOT To Summon A Demon Lord - -Agent Aika (especially R-16 Virgin Mission) - -Najica Blitz Tactics";False;False;;;;1610657226;;False;{};gj9olol;False;t3_kxaj29;False;True;t3_kxaj29;/r/anime/comments/kxaj29/looking_for_ecchi_anime_recommendations/gj9olol/;1610739863;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610657292;moderator;False;{};gj9os1r;False;t3_kxayvb;False;True;t1_gj9bla7;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9os1r/;1610739978;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;False;[];;Out of the mouths of babes come words of truth and wisdom lol.;False;False;;;;1610657308;;False;{};gj9othx;False;t3_kxayvb;False;False;t1_gj9b1a3;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9othx/;1610740005;53;True;False;anime;t5_2qh22;;0;[]; -[];;;BluestarDolphin;;;[];;;;text;t2_okm0w;False;False;[];;"This season going great. The direction is great and I genuinely like Emma's characterization as well as the kids' . - - I expected Ray and Emma to ask more question about the demon society, like do they live in villages, resemble human culture? Also the man said ""It's been a while since I talk to humans"", also said ""one of the calendars that human use"", ""demons? I've been called that before""... Are these foreshadowing that he's not being truthful or being a veteran or something? I'm curious. I need the entire series. - -Also since other side humans are kinda an ass to let such thing happen and keep happening. I think even if the kids reach there, they'll be sent back to the demon side.";False;False;;;;1610657499;;False;{};gj9pbox;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9pbox/;1610740341;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;Full Metal Panic;False;False;;;;1610657513;;False;{};gj9pczh;False;t3_kxa5ud;False;True;t3_kxa5ud;/r/anime/comments/kxa5ud/action_anime_with_a_little_bit_of_romance/gj9pczh/;1610740364;1;True;False;anime;t5_2qh22;;0;[]; -[];;;barsonica;;;[];;;;text;t2_2wk37sqs;False;False;[];;"That's what keeps my mind thinking about Promised neverland again and again. They were food and they didn't like that, and know they are basically doing the same now, so what's the justification for this. The animals want to live as well. - -My head is just a mess about this topic.";False;False;;;;1610657530;;False;{};gj9pekx;False;t3_kxayvb;False;False;t1_gj96bcv;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9pekx/;1610740390;95;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;Major and Ace Of Diamond are (based on what I've heard, because they're quite long and I haven't watched them myself) really good and I see them recommended a lot. But if you don't have time for a really long series like either of those two, I'll personally recommend Princess Nine. It's my favorite baseball anime that I've ever watched.;False;False;;;;1610657547;;False;{};gj9pg5h;False;t3_kxbdlq;False;False;t3_kxbdlq;/r/anime/comments/kxbdlq/any_baseball_anime_recommendations/gj9pg5h/;1610740417;2;True;False;anime;t5_2qh22;;0;[]; -[];;;galactic-toast-;;;[];;;;text;t2_11t8p8;False;False;[];;"What do the ""demons"" call themselves as a race? - -Kinda weird that the kids didn't ask, sure they don't call themselves demons or monsters? - -Or would that be some big spoiler?";False;False;;;;1610657556;;False;{};gj9ph1p;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9ph1p/;1610740433;8;True;False;anime;t5_2qh22;;0;[]; -[];;;AZLarlar;;;[];;;;text;t2_6d6peonh;False;False;[];;i honestly like the dark tones this show gives, it just isnt about the sport;False;False;;;;1610657557;;False;{};gj9ph5h;False;t3_kxaa94;False;False;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9ph5h/;1610740435;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Second93;;;[];;;;text;t2_671rqji9;False;False;[];;"Emma is training to kill but when the time will come to kill a demon or something she will say "" I don’t want to kill we can live together "" or something like that I can already see that coming";False;False;;;;1610657558;;False;{};gj9ph8c;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9ph8c/;1610740436;19;True;False;anime;t5_2qh22;;0;[]; -[];;;NiamhHA;;;[];;;;text;t2_4iywrflx;False;False;[];;"I’m glad we got so much information about the world in this episode. Now the title of the show makes more sense. Before, I assumed that the “promised neverland” was the outside, in general. - -I laughed at that scene where Ray and Emma were happy that the world “isn’t as bad” as they thought. About the kids new plan, I have to admire their optimism, but freeing all the kids would be incredibly difficult. To be fair though, I was surprised by how many kids managed to escape at the end of Season 1. - -I felt so bad for Emma at the end. That scene was so well done. Now, the deaths are even worse in hindsight. I thought they were just killed instantly, at the exact moment they saw the demons. But because of them being alive when the flowers were used, they experienced being killed for at least a few seconds. That final shot of Emma was so sad. - -That episode went by so fast.";False;False;;;;1610657596;;1610657992.0;{};gj9pkxl;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9pkxl/;1610740499;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;BNA, Assassination Classroom, and Pokemon (I think it was the Sun/Moon series) also had hilarious baseball episodes.;False;False;;;;1610657627;;False;{};gj9pnsq;False;t3_kxbdlq;False;True;t1_gj9k5m6;/r/anime/comments/kxbdlq/any_baseball_anime_recommendations/gj9pnsq/;1610740551;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rask14;;;[];;;;text;t2_85mg68yr;False;False;[];;Long running and done? Or still ongoing? Cause I would throw Haikyuu! into this for sureee;False;False;;;;1610657766;;False;{};gj9q0q0;False;t3_kxac4x;False;True;t3_kxac4x;/r/anime/comments/kxac4x/what_are_some_good_non_seasonal_anime/gj9q0q0/;1610740790;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Faleepe22;;;[];;;;text;t2_3c2sh28z;False;False;[];;Yo, can anyone PM me what Ray carved on the wood from episode 1? Couldn’t read it, he being suspicious or nah?;False;False;;;;1610657770;;False;{};gj9q15s;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9q15s/;1610740797;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;"Re:zero - -Darling in the franxx - -Sao";False;False;;;;1610657792;;False;{};gj9q320;False;t3_kxa5ud;False;True;t3_kxa5ud;/r/anime/comments/kxa5ud/action_anime_with_a_little_bit_of_romance/gj9q320/;1610740830;1;True;False;anime;t5_2qh22;;0;[]; -[];;;supicasupica;;;[];;;;text;t2_casna;False;False;[];;It's especially sad since she just got over saying to Gilda that there won't be any more secrets/sacrifices between her and the rest of the group and this is something that almost immediately gets in the way of that (not purposefully, but as a consequence of being the only one who has hunted something else).;False;False;;;;1610657800;;False;{};gj9q3r2;False;t3_kxayvb;False;False;t1_gj96bcv;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9q3r2/;1610740841;60;True;False;anime;t5_2qh22;;0;[]; -[];;;Rask14;;;[];;;;text;t2_85mg68yr;False;False;[];;I thought it was pretty good. I liked the first half more than the second. Thought it was more fun when we had the secret crazy fights coupled with the high school comedy. The second half just kinda became generic Castlevania. Overall I liked it though! I'd want to see more;False;False;;;;1610657884;;False;{};gj9qbjw;False;t3_kxa11y;False;True;t3_kxa11y;/r/anime/comments/kxa11y/what_do_you_guys_think_about_noblesse/gj9qbjw/;1610740976;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NearWinner;;;[];;;;text;t2_68jzmig0;False;False;[];;"I'm not reading the manga, so all these things took me by surprise. These revelations are impressive. But I have a question, how do the demons get humans, do humans supply the demons with children? Anyway, this is a big plot twist. I'm excited about the next few chapters. - -Each chapter, Ray seems even better, one of my favorite characters in the anime. Even if this anime became boring, I would still watch it just for him. - -I also continue to think that Norman is somehow alive. We haven't seen his death. I still hope that we will see him later.";False;False;;;;1610658028;;False;{};gj9qp6z;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9qp6z/;1610741228;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aaandre001;;;[];;;;text;t2_mjde4n8;False;False;[];;I think the scene was exist so we dont know if we can completly trust them and to show that its an important part of all monsters that they want to hunt, which ist rly important later. So i dont think its a problem that he never hunts them.;False;False;;;;1610658048;;False;{};gj9qr2s;False;t3_kxayvb;False;False;t1_gj97bh4;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9qr2s/;1610741260;5;True;False;anime;t5_2qh22;;0;[]; -[];;;HobnobsTheRed;;;[];;;;text;t2_1ftgjit5;False;False;[];;Wanted to give a quick shoutout to Kenichiro Suehiro. His music queues and background tunes are spot on yet again. The BGM for the scene in Peyer's Patch where Killer T is lecturing WBC about being ready for the fight could have come from Battlefield 1942.;False;False;;;;1610658059;;False;{};gj9qs49;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9qs49/;1610741278;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610658230;;False;{};gj9r7vw;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9r7vw/;1610741567;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kenga123456;;;[];;;;text;t2_49vw1707;False;False;[];;The promised neverland s2 isnt available in my country:(;False;False;;;;1610658412;;False;{};gj9rosg;False;t3_kxayvb;False;True;t1_gj9jmga;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9rosg/;1610741887;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VariousMeet;;;[];;;;text;t2_63veb3s5;False;False;[];;An alarm would've gone off in my head if the same flower some religious guy uses for religious purposes is also used by the same demons who had them as livestock. But fair enough, if they're used for preserving the meat I guess it has a general use that's not religious. I'm surprised she didn't ask how to kill demons while on the topic of hunting, or maybe she did but it as off screen.;False;False;;;;1610658439;;False;{};gj9rr7a;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9rr7a/;1610741933;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ezorethyk2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/catalin_sara;light;text;t2_1vlmn3cp;False;False;[];;"Similar tradition in Romania here. Can't guarantee for rest of balkans/eastern europe but they prolly have some similar. - -A family, or 2-3 depending on the situation , will buy a live pig and prepare the meat themselves. From sausages to meat to steak, most of the parts that can be used will be used. Of course they will call someone who can kill the pig fast and knows how to butcher the meat. Dying tradition recently but still heavily used.";False;False;;;;1610658472;;False;{};gj9ru8h;False;t3_kxayvb;False;False;t1_gj97cbh;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9ru8h/;1610741993;11;True;False;anime;t5_2qh22;;0;[]; -[];;;keithohara;;;[];;;;text;t2_gbzf7q;False;True;[];;Best opening of the season;False;False;;;;1610658494;;False;{};gj9rwb5;False;t3_kxaa94;False;False;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9rwb5/;1610742040;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePreposterousPear;;;[];;;;text;t2_u4mql;False;False;[];;I read the Noblesse webtoon and I am fairly confident there will not be a season 2. They really butchered a lot of moments, skipped a lot of arcs, and messed up the story quite a bit which would make it very difficult to do season 2 I feel.;False;False;;;;1610658514;;False;{};gj9ry5h;False;t3_kxa11y;False;True;t1_gj8wmua;/r/anime/comments/kxa11y/what_do_you_guys_think_about_noblesse/gj9ry5h/;1610742076;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lowkeyanteater;;;[];;;;text;t2_68gyrl9m;False;False;[];;I wish we had the whole season already!! It's so good but idk how Emma expects to save kids from the other farms, they should worry about getting themselves to the human side of the world then looking for more help.;False;False;;;;1610658622;;False;{};gj9s82u;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9s82u/;1610742267;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kirbyzz;;;[];;;;text;t2_qdu0u;False;False;[];;Isabella was such an amazing antagonist, I hope we see her again;False;False;;;;1610658711;;False;{};gj9sfxm;False;t3_kxayvb;False;False;t1_gj99lvm;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9sfxm/;1610742417;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;And so, Goldy Pond even with only 11 episodes this season I suppose;False;False;;;;1610658803;;False;{};gj9sohg;False;t3_kxayvb;False;False;t1_gj9mvqs;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9sohg/;1610742566;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Kirbyzz;;;[];;;;text;t2_qdu0u;False;False;[];;I still miss Phil!;False;False;;;;1610658975;;False;{};gj9t4ad;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9t4ad/;1610742867;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Oxu90;;;[];;;;text;t2_yxh7y;False;False;[];;"My body is like ""See? You dumb fuck! Thabks a lot""";False;False;;;;1610659045;;False;{};gj9taoa;False;t3_kx9qo8;False;False;t1_gj9iglm;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9taoa/;1610742987;6;True;False;anime;t5_2qh22;;0;[]; -[];;;TemperanceL;;;[];;;;text;t2_h2tdp6;False;False;[];;"Not every day you see a Death parade reference. I'm all for it though, loved that show. - -Also, decided I'll just watch black tomorrow, I don't think dread is a good feeling to go to sleep with :v";False;False;;;;1610659177;;False;{};gj9tmk2;False;t3_kx9qo8;False;True;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9tmk2/;1610743210;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ShrayerHS;;;[];;;;text;t2_ggc3w;False;False;[];;I feel like the human side of the planet is going to be even more fucked up than the demon side assuming we get there. Hell, knowing humans maybe it doesn't even exist anymore.;False;False;;;;1610659326;;False;{};gj9u0ig;False;t3_kxayvb;False;False;t1_gj9hfaj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9u0ig/;1610743473;25;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;Well, they can always go vegan once it's not a matter of life and death any more.;False;False;;;;1610659506;;False;{};gj9uhjq;False;t3_kxayvb;False;False;t1_gj9pekx;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9uhjq/;1610743846;33;True;False;anime;t5_2qh22;;0;[]; -[];;;barsonica;;;[];;;;text;t2_2wk37sqs;False;False;[];;I know, it just always makes me think.;False;False;;;;1610659556;;False;{};gj9um27;False;t3_kxayvb;False;False;t1_gj9uhjq;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9um27/;1610743926;8;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;I think Islamic traditional butchering includes also draining the blood out, so it might be more than just a coincidence. Though of course in general draining the blood makes sense as it makes the meat last longer, so all of these rituals were originally born out of necessity.;False;False;;;;1610659616;;False;{};gj9urj5;False;t3_kxayvb;False;False;t1_gj99c81;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9urj5/;1610744032;21;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;Humans are pigs, Muslims don't eat pigs, demons who don't eat humans (and ritually butcher their meat by draining the blood) are Muslims. Makes sense.;False;False;;;;1610659694;;False;{};gj9uyv0;False;t3_kxayvb;False;False;t1_gj9gk4z;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9uyv0/;1610744165;46;True;False;anime;t5_2qh22;;0;[]; -[];;;Zopffware;;;[];;;;text;t2_wdnwh;False;False;[];;Today, I'm gonna build a depression sandwich. This, then Black, then Yuru Camp.;False;False;;;;1610659736;;False;{};gj9v2tb;False;t3_kx9qo8;False;False;t1_gj95gtr;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9v2tb/;1610744239;4;True;False;anime;t5_2qh22;;0;[]; -[];;;chaderenabs;;;[];;;;text;t2_8yuqmavz;False;False;[];;Understandable, at least I'm glad I read the sequal so I had a better feeling after the series ended;False;False;;;;1610659759;;False;{};gj9v4zl;False;t3_kxbvf2;False;True;t3_kxbvf2;/r/anime/comments/kxbvf2/discussion_about_kuzu_no_honkai/gj9v4zl/;1610744279;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;"They risk causing a breakdown of the truce simply by crossing over; the only way to not risk it would be to let themselves be captured and eaten. But at this point I think they're entitled to a little ""fuck you, it's YOUR problem now"".";False;False;;;;1610659778;;False;{};gj9v6o0;False;t3_kxayvb;False;False;t1_gj9958s;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9v6o0/;1610744312;7;True;False;anime;t5_2qh22;;0;[]; -[];;;EggsPls;;;[];;;;text;t2_n8l37;False;False;[];;"Not sure if this was intended by the author, but it also feels a bit like an easter egg when you consider that 30 yrs prior to 2046 is 2016, which is a year all of us can recognize and relate to. Considering the manga began serialization in 2019, it's actually not out of the realm of possibility that Shirai himself interpreted the year 2016 as the 'beginning of the end' of sorts and decided to use that year as the assumed 'end of human era'. In doing so, it establishes a much more realistic and relatable narrative because their perception of 'time' is the same as ours in the real world, so we instinctually compare ""our world in 2016"" with ""PN's world in 2016"". Of course this might be a stretch, but regardless of intent, having a timeline that closely models our actual timeline provides Shirai w/ a ton of opportunity to use historical events of PN to allude to real life events (think AOT w/ pre-WWI weaponry). This also means of course, that if the audience is able to pick up on these sorts of references, we become more sold to the idea that the world in PN is (albeit fantastical) real and convincing. - -For a story that is essentially 'fantasy/thriller', Shirai paints the world in a way that not only provides great plot, but also makes us actually think about the current state of our world, and whether the dystopian future depicted in PN is actually not out of the realm of possibility. Of course I'm not saying that we're gonna split the world between demons and humans in 30 years, but could a similar future exist between humans of different ideologies? - -I'm anime-only so everything I'm saying could be completely baseless, but I feel like the series' high focus on the timeline and how it aligns similarly to ours allows the mangaka to inject a stronger sense of realism, and thus the narrative and tension is heightened because we think ""wow could this happen to us"", or ""what would I do in this situation"". - -I definitely rambled a bit too much and probably didn't even answer your question, sorry about that; but I just wanted to write out these thoughts somewhere while I'm still thinking about it haha. Hopefully someone finds this enlightening, but if a manga reader wants to shoot me down before I dig myself deeper into this rabbit hole please feel free.";False;False;;;;1610659793;;False;{};gj9v81v;False;t3_kxayvb;False;False;t1_gj977bx;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9v81v/;1610744336;16;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;The books the kids had described a world similar to our own, it seems weird that they would be all entirely made up. Makes more sense they'd base their fiction on truth.;False;False;;;;1610659846;;False;{};gj9vcxu;False;t3_kxayvb;False;True;t1_gj9i5gc;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9vcxu/;1610744419;2;True;False;anime;t5_2qh22;;0;[]; -[];;;leafy_fan3;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/3UGL3N4;light;text;t2_83mvdmhg;False;False;[];;Why does MAL say this comes out on Saturdays?;False;False;;;;1610659964;;False;{};gj9vnq6;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gj9vnq6/;1610744601;5;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheRantMan321;light;text;t2_efp1aj;False;False;[];;"Seems like the core theme (so far) of S2 is about the food chain. - -Man vs Nature, Man vs beast or in this case Man vs demon. - -This direction makes since, considering last season was primarily about overcoming a toxic family, and uniting your closest allies. - -S1 was more of man vs man, now it's time for the kids fight their hardest to survive in an unknown wilderness, crawling with terrifying demons.";False;False;;;;1610660085;;False;{};gj9vyaj;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9vyaj/;1610744805;1;True;False;anime;t5_2qh22;;0;[]; -[];;;magical-grill;;;[];;;;text;t2_box4k85;False;False;[];;"Well we were told that no one on either side has crossed over to the other since the agreement was established 1000 years ago, it’s hard to assume they’re on friendly terms. I’d say there’s even the possibility that the humans after 1000 years might not even be aware of the demon side anymore. Especially if my theory that some books came from the other side, since not once did any of them mention anything about the demons. - -As for the language thing, I’m inclined to believe it’s still human language cause I don’t think the morse code would work in demon language? But I dunno";False;False;;;;1610660182;;False;{};gj9w7cj;False;t3_kxayvb;False;False;t1_gj9ojka;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9w7cj/;1610744969;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"[*Narrator: She was not OK*](https://imgur.com/Rx2YErK) - -Well, she now knows what it's like to kill a living thing... And she might've realized [it's not that different from what demons are doing](https://imgur.com/b28fKlt); In fact, it's PRECISELY what the demons were doing before 'the deal', hunting humans. - -They only turned to farming them after they made that deal. So Emma is doing what humans considered ""The demons at their worst"". - -Can't make her feel too good about it. Some might even argue that what she's doing is worse, because humans fought back. That bird didn't do anything. - -[Getting bullied by a bunch of kids?](https://imgur.com/bfkXc3o) Ray's life is suffering! Still, they're kinda right. They need to keep him on a short leash! - -I was so sure [Sonju was a goner](https://imgur.com/SYKdR2n) after this death flag! I kept expecting the demons to show up, and he'd die protecting Emma or something. - -Seems like they'll teach them some more before waving them goodbye (or dying)! - -So there is a human world somewhere? That's an interesting new development! There's an actual ""goal"" now, some place they would be safe forever. Well, unless humans turn them down to protect the peace agreement; Now that would suck! - -I wonder how this plays out with the Minerva thing. I suppose they'll still want to visit him, maybe he knows more about the human world. - -Oh, and speaking about knowing things: There's something to make off the disagreement they had about history; Emma thinking something happened 30 years ago, and Sonju thinking nothing happened for a thousand years... I don't remember, where did she get the 30 years thing, from the hint about Minerva? If this is it, then I REALLY don't trust him; I already thought it was fishy in the past episode, like maybe Minerva is a trap from Isabella in case the kids escape at some point. If there's some discrepancies about history, it's suspicious. - -Or perhaps it's a case of ""History is written by the winners"". But technically there aren't any winners, but maybe both sides have their version of the events. If it was a truce though, why lie about something like the dates? I expect we'll find out more about this at some point. - -One last thing: Spoilering even though it's just speculation, but... [Spoiler from the ED](/s ""That's Norman in the ED, right? If it's really him, then I guess they're confirming that he's alive? I mean most people already seemed to think he was, but putting a dead character in the ED would just be weird, so... I'm expecting him to show up at some point this season"")";False;False;;;;1610660218;;False;{};gj9wal9;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9wal9/;1610745024;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheRantMan321;light;text;t2_efp1aj;False;False;[];;"Nah, I expected the ending. I got pretty good at predicting when endings and openings will appear now of days. - -We got the big emotional climax of the episode, with Emma proving her resolve to kill innocent wildlife. Thus ending on a depressing scene of her lying to her family, about her wellbeing.";False;False;;;;1610660246;;False;{};gj9wd3r;False;t3_kxayvb;False;False;t1_gj96o7a;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9wd3r/;1610745067;41;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"> holy sh!t, my heart totally skipped a beat at 15:14, my brain saw Norman there. - -I thought the same! I wonder if they did it on purpose.";False;False;;;;1610660286;;False;{};gj9wgwl;False;t3_kxayvb;False;True;t1_gj9jsh7;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9wgwl/;1610745131;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheRantMan321;light;text;t2_efp1aj;False;False;[];;"I wonder if the demon princess is mixed? In season 1 the only demons we saw where freakish bloodborne type beast. - -We never saw any human-like designs. Or maybe the women look more human?";False;False;;;;1610660305;;False;{};gj9wiod;False;t3_kxayvb;False;False;t1_gj96odd;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9wiod/;1610745160;12;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheRantMan321;light;text;t2_efp1aj;False;False;[];;"This season is stacked. Got like 18 fucking anime man... - -I lowkey want half of them to end up trash so I can free up some time lol. - -I could put them on hold, but knowing me they would end up in an indefinite void of forgotten anime";False;False;;;;1610660382;;False;{};gj9wpla;False;t3_kxayvb;False;False;t1_gj98a43;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9wpla/;1610745280;16;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheRantMan321;light;text;t2_efp1aj;False;False;[];;"Emma is still a child at the end of the day; a genius but still a child. - -She doesn't understand the gravity of the situation.";False;False;;;;1610660431;;False;{};gj9wtza;False;t3_kxayvb;False;False;t1_gj9958s;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9wtza/;1610745354;13;True;False;anime;t5_2qh22;;0;[]; -[];;;DonThousand77;;;[];;;;text;t2_3mc9c9pm;False;False;[];;Not really, she's using a bow;False;False;;;;1610660483;;False;{};gj9wyid;False;t3_kxayvb;False;False;t1_gj982ge;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9wyid/;1610745440;21;True;False;anime;t5_2qh22;;0;[]; -[];;;aholicat637;;;[];;;;text;t2_6d4wju3e;False;False;[];;Ichigio 100, the manga is better so you may want to check that out instead;False;False;;;;1610660565;;False;{};gj9x5ye;False;t3_kxaj29;False;True;t3_kxaj29;/r/anime/comments/kxaj29/looking_for_ecchi_anime_recommendations/gj9x5ye/;1610745570;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"[Desperate situation? Yay!](https://i.imgur.com/Ks8YMn7.jpg) - -[](#everythingisfine)";False;False;;;;1610660664;;False;{};gj9xf7n;False;t3_kxayvb;False;False;t1_gj9as51;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9xf7n/;1610745735;39;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;[*I'm sorry Conny*](https://i.imgur.com/tAZ6FON.jpg);False;False;;;;1610660790;;False;{};gj9xqst;False;t3_kxayvb;False;False;t1_gj9979y;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9xqst/;1610745929;48;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"> Damn, Gilda can really be terrifying. - -All this time, Emma feared being eaten by a demon, when Gilda was the real threat.";False;False;;;;1610660983;;False;{};gj9y7wz;False;t3_kxayvb;False;False;t1_gj9hl4p;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9y7wz/;1610746228;10;True;False;anime;t5_2qh22;;0;[]; -[];;;JimPadawan;;;[];;;;text;t2_kf1aboy;False;False;[];;Let’s go kids time to outsmart some demons;False;False;;;;1610660988;;False;{};gj9y8bi;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9y8bi/;1610746236;1;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;"There are some things that I found as interesting from the two worlds premise: - -Why did Touma think it's only 30 years since demon appeared, when in fact it's 1,000 years? Doesn't this imply that the book on the orphanage were just recently written (not 1,000 years ago)? The human knowledge difference between 1,000 years should bevery significant. Since it depicted the knowledge of the recent human world, this further alludes that maybe the book were put there from the human world. Hence, transporting between the world is possible. - -My own rebuke for this theory is that they lived like medieval people in the orphanage, with some modern technology that might be introduced by the demon. That should be in line with the 1,000 years gap (2045 - 1000= 1045, which is the middle ages in Europe).";False;False;;;;1610660991;;1610675125.0;{};gj9y8ju;False;t3_kxayvb;False;False;t1_gj96odd;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9y8ju/;1610746240;15;True;False;anime;t5_2qh22;;0;[]; -[];;;NeckOnKn33;;;[];;;;text;t2_7gp4o11j;False;False;[];;She's also being hunted. Who has time to think so far ahead?;False;False;;;;1610661031;;False;{};gj9ybti;False;t3_kxayvb;False;False;t1_gj9i3c6;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9ybti/;1610746298;12;True;False;anime;t5_2qh22;;0;[]; -[];;;PM_ME_FUTA_PEACH;;;[];;;;text;t2_12maon;False;False;[];;I'll just put here because it's kinda hint-y, but it's pretty crazy seeing that this show has such a low amount of comments/engagement considering what series it is. I mean this season is probably the single most stacked season that I can remember so obviously that affects it, still pretty surprising. Don't see it going up either because imo the show doesn't really reach previous peaks.;False;False;;;;1610661149;;False;{};gj9ykm5;False;t3_kxayvb;False;True;t1_gj92dyj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9ykm5/;1610746460;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"[Yup.](https://i.imgur.com/dONx8XT.jpg) It's pretty draining. I had to move Beastars to Saturday and skip any Thursday Hololive stream. - -[](#drink2)";False;False;;;;1610661308;;False;{};gj9yx39;False;t3_kxayvb;False;False;t1_gj9mexy;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9yx39/;1610746699;31;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"> If she even ever kills a demon. - -I imagine it'll happen at some point, but I think they'll need more than bows for that... - -Not only the demons are much tougher than humans, but also, Emma and the gang are just kids. Need a lot of strength to use a bow with actual killing power. - -Well I suppose if they hit it with like 50 arrows by firing all at once, it could still deal some damage.";False;False;;;;1610661353;;False;{};gj9z0i2;False;t3_kxayvb;False;False;t1_gj9a790;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9z0i2/;1610746760;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;[Animals die when they are killed](https://i.imgur.com/DBq3dAq.jpg);False;False;;;;1610661455;;False;{};gj9z8ap;False;t3_kxayvb;False;False;t1_gj9m97g;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9z8ap/;1610746916;45;True;False;anime;t5_2qh22;;0;[]; -[];;;Solid-Equipment;;;[];;;;text;t2_68jzmig3;False;False;[];;Haikyuu would've spent an an entire episode on the first match, an entire episode on the second match.;False;False;;;;1610661511;;False;{};gj9zcm7;False;t3_kxaa94;False;False;t1_gj9g52y;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gj9zcm7/;1610747001;5;True;False;anime;t5_2qh22;;0;[]; -[];;;camthegodoflol;;;[];;;;text;t2_g4fs0;False;False;[];;Still the happiest episode we've ever had of this show, right Emma? :);False;False;;;;1610661596;;False;{};gj9zj0m;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9zj0m/;1610747130;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"Now that she realizes killing might be necessary, I wonder if her 'We have to save everyone, even our enemies' will change as well; - -Back in season 1 she wanted to save Ray even if he was a traitor... If a new traitor appeared, would she still have the same philosophy? I'm not sure.";False;False;;;;1610661618;;False;{};gj9zkog;False;t3_kxayvb;False;False;t1_gj99voj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9zkog/;1610747162;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"I thought the same. - -In the end, it will have to come to war. I don't really see her teaching demons that they can just eat birds and vegetables. - -I even thought that maybe humans could turn her down at the border (assuming there's a border between the two worlds), because letting her in might endanger them all, and start the war again.";False;False;;;;1610661740;;False;{};gj9ztot;False;t3_kxayvb;False;True;t1_gj9958s;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9ztot/;1610747336;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"I wonder if demons are even edible. Given that they're apex predators, they must be full of toxins and pollutants. That being said, [Mujika is still a snacc.](https://i.imgur.com/5WAtxjk.jpg) - -[](#harukathonk)";False;False;;;;1610661822;;False;{};gj9zzt3;False;t3_kxayvb;False;False;t1_gj96o5d;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gj9zzt3/;1610747453;36;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"That's a fair point, but... If that's the case, why haven't humans conquered the whole thing already? - -A deal made 30 generations ago likely wouldn't stop the human's desire to conquer/control everything they can. Not unless there's something to enforce it, or they have a reason to fear breaking it.";False;False;;;;1610661837;;False;{};gja00vh;False;t3_kxayvb;False;False;t1_gj9hnzu;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja00vh/;1610747473;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"I'm actually so relieved Beastars is in Netflix jail, dropped Cells at Work, Gotoubun and Slime and haven't started Higurashi and Log Horizon yet. This season is already crazy stacked as it is, I'd legit drown if I watched all the shows that are on my list - and the scrolling never ends when you're going through the seasonals list on MAL lmao - -[](#selfcontrol) - -~~might start Horimiya though ngl~~";False;False;;;;1610661865;;False;{};gja02xc;False;t3_kxayvb;False;False;t1_gj9yx39;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja02xc/;1610747513;8;True;False;anime;t5_2qh22;;0;[]; -[];;;jubjubwarrior;;;[];;;;text;t2_5ss71;False;False;[];;Right that’s why I am confused if it’s the place they are heading why is ray pointing them there ? I couldn’t read it so I thought maybe it was a different coordinate;False;False;;;;1610661917;;False;{};gja06rf;False;t3_kxayvb;False;False;t1_gj9no54;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja06rf/;1610747599;14;True;False;anime;t5_2qh22;;0;[]; -[];;;CenturionRower;;;[];;;;text;t2_aq6uh;False;False;[];;Good theory, also note that all of what he mentioned he heard 2nd hand, so its possibly they are secretly crossing over and not telling anyone. Also it's true that Morse code may not work if it's not human/english.;False;False;;;;1610662011;;False;{};gja0dsv;False;t3_kxayvb;False;True;t1_gj9w7cj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja0dsv/;1610747739;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"I think her mental state might have a hiccup, but in the end I'm pretty sure it'll be for the best; - -Changing from an idealist, to someone with a more realistic view of the world, is a good thing.";False;False;;;;1610662021;;False;{};gja0ehy;False;t3_kxayvb;False;False;t1_gj982ge;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja0ehy/;1610747755;112;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;And it ended with [a cryptic expression from Emma](https://i.imgur.com/Tdj35Lk.jpg) instead of the usual cliffhanger accompanied by dramatic music.;False;False;;;;1610662134;;False;{};gja0mvv;False;t3_kxayvb;False;False;t1_gj9gzlr;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja0mvv/;1610747941;85;True;False;anime;t5_2qh22;;0;[]; -[];;;TheWrittenLore;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Traynjos000;light;text;t2_ouc2a;False;False;[];;Watching this after Dr. Stone feels strange.;False;False;;;;1610662160;;False;{};gja0ouj;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja0ouj/;1610747981;5;True;False;anime;t5_2qh22;;0;[]; -[];;;entinio;;;[];;;;text;t2_11a1xl;False;False;[];;Still loving your blog. You’re the one who was doing Revue Starlight back then right?;False;False;;;;1610662353;;False;{};gja1324;False;t3_kxayvb;False;False;t1_gj98ypw;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja1324/;1610748282;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Byfall;;;[];;;;text;t2_21m9drt6;False;False;[];;"""For some reason I have a bad feeling that many will compare every single aspect of this show to Haikyuu"" - -I read this after the first episode aired and I guess Haikyuu will be one reason why many, me actually included, thought this will be a sports anime in first place. After those two episodes I dont really know yet where the show is headed in the long run but the first episodes set a very distinct tone.";False;False;;;;1610662420;;False;{};gja182w;False;t3_kxaa94;False;False;t1_gj9j3ov;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gja182w/;1610748382;44;True;False;anime;t5_2qh22;;0;[]; -[];;;FaizGale;;;[];;;;text;t2_1258ok;False;False;[];;Its an actual struggle, I already know that the smaller shows I don’t keep up with this season I’m never going to go back to finish lol.;False;False;;;;1610662441;;False;{};gja19n6;False;t3_kxayvb;False;True;t1_gj9wpla;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja19n6/;1610748414;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDampGod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheDampGod;light;text;t2_im4vi;False;False;[];;The drama is coming in heavy, but I'm finding the pace is a little too fast. Like I think it would have been better to see them talking shit about Haijima rather hearing about after the fact. Would have fleshed out the rest of the team, along with the MC. Still it's not a bad and I'm intrigued to see where it goes, I just hope it slows things down a little.;False;False;;;;1610662500;;False;{};gja1dxj;False;t3_kxaa94;False;False;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gja1dxj/;1610748499;6;True;False;anime;t5_2qh22;;0;[]; -[];;;LeanderN;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/aLeegatou;light;text;t2_16k2bzww;False;False;[];;"Mujika and Sonju are very intriguing characters. Hopefully we will still have more episodes with them. - -The world is starting to expand beautifully and I'm really loving the plants and other animals. - -Also great backstory, showed us that there's actually still humans and there's hope for those kids, even though it's going to be a tough journey. - -Can't wait for next week, because I'm really hyped to explore the world. Gave me some made in abyss vibes honestly.";False;False;;;;1610662547;;False;{};gja1hgx;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja1hgx/;1610748570;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Zonca;;;[];;;;text;t2_11odu8;False;False;[];;"Sonju says he remembers being called like that in past, but wasn't for a long time, so yeah, they probably call themselves differently. - - -Though weirdly enough when he talks about wild demons territory, demons in the tale, demons who would have drooled over them, he actualy just uses the word demon so...";False;False;;;;1610662568;;False;{};gja1ivi;False;t3_kxayvb;False;False;t1_gj9ph1p;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja1ivi/;1610748598;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Byfall;;;[];;;;text;t2_21m9drt6;False;False;[];;The sound feels kinda off but I can't really say why;False;False;;;;1610662601;;False;{};gja1l9v;False;t3_kxaa94;False;False;t1_gj95bs7;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gja1l9v/;1610748648;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;ken_NT;;;[];;;;text;t2_56zdq;False;False;[];;Gurazeni-I always like recommending it. However it’s more of a slice of life and workplace comedy about a professional baseball player.;False;False;;;;1610662612;;False;{};gja1m2y;False;t3_kxbdlq;False;True;t3_kxbdlq;/r/anime/comments/kxbdlq/any_baseball_anime_recommendations/gja1m2y/;1610748664;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Snivy_Ian;;;[];;;;text;t2_fdhiz;False;False;[];;funimation streams it two days before japanese premiere;False;False;;;;1610662642;;False;{};gja1o8z;False;t3_kx9qo8;False;False;t1_gj9vnq6;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gja1o8z/;1610748706;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheRantMan321;light;text;t2_efp1aj;False;False;[];;"Yeah i'm going to have to force myself to watch every anime this season until I lose interest in a couple, and drop them. - -At least it's a lot of potential topics for my content at least";False;False;;;;1610662647;;False;{};gja1omt;False;t3_kxayvb;False;True;t1_gja19n6;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja1omt/;1610748713;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610662683;;False;{};gja1r80;False;t3_kx9qo8;False;True;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gja1r80/;1610748764;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zonca;;;[];;;;text;t2_11odu8;False;False;[];;"?? - - -They talked about it in the episode, 1000 years ago, races segregated and humans gave (our kids) ancestors to the demons as gifts, and now they breed and eat humans on many farms from which Grace Field was one of the best one.";False;False;;;;1610662831;;False;{};gja2257;False;t3_kxayvb;False;True;t1_gj9qp6z;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja2257/;1610748986;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Agreeable-Highlight;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/STARFLIGHT1111/;light;text;t2_2xajbknh;False;False;[];;I know this isn’t that big of a deal, especially after this episode, but I thought these *middle school kids* (excluding Haijima) were supposed to be pretty new to volleyball. Then how were they pulling off fake-out attacks and hitting like they’ve been playing for years?;False;False;;;;1610662852;;1610663557.0;{};gja23py;False;t3_kxaa94;False;True;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gja23py/;1610749019;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;Horimiya deserves to be watched, we all need that bundle of fluff in our lives.;False;False;;;;1610662967;;False;{};gja2c3s;False;t3_kxayvb;False;False;t1_gja02xc;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja2c3s/;1610749183;20;True;False;anime;t5_2qh22;;0;[]; -[];;;EverChangingUnicorn;;;[];;;;text;t2_3dcfqg6w;False;False;[];;"It's Yuni btw, and yeah I totally agree. -It was relatable with how he just forgot how to do things, like how to serve, like which foot he usually puts forward and what he does, and ended up not being able to do the things he was able to do before, like that back attack.";False;False;;;;1610663231;;False;{};gja2vmq;False;t3_kxaa94;False;False;t1_gj9d7lz;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gja2vmq/;1610749550;12;True;False;anime;t5_2qh22;;0;[]; -[];;;ElegantPregnantMan;;;[];;;;text;t2_1f1ldy8h;False;False;[];;Maybe it's weird to say this, but I hope they tackle on some queer issues in this anime. I remember the ''Stars Align'' anime, think they even had an arc related to transgender and gay people, was kinda cool;False;False;;;;1610663364;;False;{};gja3597;False;t3_kxaa94;False;False;t1_gj9kcvv;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gja3597/;1610749727;7;True;False;anime;t5_2qh22;;0;[]; -[];;;thepeetmix;;;[];;;;text;t2_cwxxz;False;False;[];;Today is just completely rammed with new episodes coming out. Unfortunately, I think Cells at Work is at the back of the queue. :(;False;False;;;;1610663364;;False;{};gja359n;False;t3_kx9qo8;False;False;t1_gj99wb5;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gja359n/;1610749727;16;True;False;anime;t5_2qh22;;0;[]; -[];;;n080dy123;;;[];;;;text;t2_139f6y;False;False;[];;The problem I already see is they want to liberate the other farms, but the problem is if they do so, they invalidate the promise between the humans and demons, which means the demons will likely start hunting humans again. Basically they could start a war by doing so. But the problem is if they don't, and leave people who aren't their family to the farms to prevent a war breaking out, that makes them no better than the humans who left their ancestors to the farms as sacrifices in the first place.;False;False;;;;1610663404;;False;{};gja3871;False;t3_kxayvb;False;False;t1_gj9hfaj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja3871/;1610749783;88;True;False;anime;t5_2qh22;;0;[]; -[];;;Agreeable-Highlight;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/STARFLIGHT1111/;light;text;t2_2xajbknh;False;False;[];;"It depends on what you’re looking for. It seems like this series is going more for drama with some volleyball then hype volleyball with some drama. If that makes any sense at all. Either way, the animation and music are both quite nice, so that’s a plus. - -Also, 25 anime! Are you going to be OK?";False;False;;;;1610663514;;1610664039.0;{};gja3gdf;False;t3_kxaa94;False;False;t1_gj9j872;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gja3gdf/;1610749943;6;True;False;anime;t5_2qh22;;0;[]; -[];;;QQforYouToday;;;[];;;;text;t2_60cf943y;False;False;[];;I came to this thread to get answers on this. It looks like it said “Go 06-32 Pursuer”. Considering Ray is the son of momma, do you think he could still be crooked somehow?;False;False;;;;1610663558;;False;{};gja3jni;False;t3_kxayvb;False;False;t1_gja06rf;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja3jni/;1610750004;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Servel85;;;[];;;;text;t2_8xdtr;False;False;[];;black then white;False;False;;;;1610663566;;False;{};gja3k6i;False;t3_kx9qo8;False;True;t1_gj95gtr;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gja3k6i/;1610750014;2;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;I watch this first and Black second, but I'm also watching Quintessential Quintuplets after that, so I can sandwich the depression with wholesome and joy.;False;False;;;;1610663612;;False;{};gja3nhx;False;t3_kx9qo8;False;False;t1_gj95gtr;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gja3nhx/;1610750076;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Exodor54;;MAL;[];;http://myanimelist.net/animelist/Exodor;dark;text;t2_eex6z;False;False;[];;I saw it too;False;False;;;;1610663647;;False;{};gja3pzv;False;t3_kx9qo8;False;False;t1_gj9frrg;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gja3pzv/;1610750127;4;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;Another fine episode! I enjoyed that. It's very wholesome and very happy overall! The vaccines episode will HOPEFULLY make people less resistant to vaccines, but then again, I doubt those people watch this show. And the intestines one was cool, I now know you should never negotiate with bacteria. Luckily we managed to trick him though.;False;False;;;;1610663750;;False;{};gja3xcb;False;t3_kx9qo8;False;True;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gja3xcb/;1610750265;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mana_Croissant;;;[];;;;text;t2_30m68690;False;False;[];;Is It possible tho ? Golden pond arc finishes at chapter 90 ish right ? If we are at chapter 50 right now there are over 40 chapters to adapt and Only 9 episodes remain. Each episode have to adapt a total of +4 chapter for that to happen. If this season had like 12 or 13 episodes, I could have maybe believed it but We have only 11 so It seems not likely;False;False;;;;1610663821;;False;{};gja42j0;False;t3_kxayvb;False;False;t1_gj9sohg;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja42j0/;1610750373;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hochseeflotte;;;[];;;;text;t2_38czhwoh;False;False;[];;"I really liked this episode. It was more of a buildup episode but I like where this is going. - -I was waiting the entire time for something bad to happen. The show has done a good job keeping tension even when everything is going well. I don’t fully trust the Vegan Demons and I have a feeling they are hiding something. I keep going back to the contrast of Emma and Mujika from the poster. - -The hunting scene was really good. - -The human world seems to be the end goal. I expect a wrench to be thrown in that makes the human world not seem that great. - -I am left wondering where the human world is technology wise and why the two sides have stayed at peace for a 1000 years. Rarely do we see such large periods of time without a major war in history. The demons have to have a trap card that has prevented humanity from restarting a war. And humanity probably has one as well to stop the demons from attacking. - -My guesses for those trap cards are: - -I think humanity has advanced so far in technology that the demons can’t use their superior strength and speed to their advantage. - -I had more trouble thinking of what has stopped humanity from attacking. Here are my two ideas. My first one is that humanity’s governments have hidden the existence of the demon world for centuries and it’s too late to change course. Though it would be incredibly hard to keep that a secret so it seems unlikely. - -My second guess is that humanity makes so much money working with the demons. Sending books, supplies, clothes, etc. that there is no will power to attack the demons as the negatives out way the positives money wise.";False;False;;;;1610664089;;1610664686.0;{};gja4lru;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja4lru/;1610750728;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Soap646464;;;[];;;;text;t2_2nr0birw;False;False;[];;Protagonist-kun is pissing me off;False;False;;;;1610664202;;False;{};gja4tz5;False;t3_kxaa94;False;False;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gja4tz5/;1610750879;14;True;False;anime;t5_2qh22;;0;[]; -[];;;IKnowThatIKnowNothin;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RealHinate;light;text;t2_12xbhr;False;False;[];;Damn they’re in _middle school_ and they’re taller than me feelsbadman;False;False;;;;1610664234;;False;{};gja4w9p;False;t3_kxaa94;False;False;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gja4w9p/;1610750921;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Lunawalker;;;[];;;;text;t2_12pwid;False;False;[];;"I really enjoyed the episode and the series as whole, it's such a joy to be able to watch new episodes every week :) I really liked seeing the more silly side of the white blood cells this time, them and the Killer T cells hiding in the ""food"" stash with the costumes was great.";False;False;;;;1610664318;;False;{};gja52bc;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gja52bc/;1610751031;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Soap646464;;;[];;;;text;t2_2nr0birw;False;False;[];;Reminder :this is middle school iirc (and judging by best friend-chan's uniform) , so the volleyball won't be as advanced as you may be used to in Haikyuu (that's why team 1 was surprised by a Pipe attack);False;False;;;;1610664350;;False;{};gja54p6;False;t3_kxaa94;False;False;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gja54p6/;1610751073;9;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;I don't remember Emma: First Blood from the manga, so it must not have made much impact on me back then. Certainly was impactful now. Great episode.;False;False;;;;1610664359;;False;{};gja55e3;False;t3_kxayvb;False;False;t1_gj9mvqs;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja55e3/;1610751086;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Sorwest;;;[];;;;text;t2_wz4img5;False;False;[];;Season 1 revealed that Sisters and Mamas give birth to the kids. And from Krone's flashbacks we know there's at least 1 male. The resources for reproducing are there.;False;False;;;;1610664382;;False;{};gja573c;False;t3_kxayvb;False;False;t1_gj9qp6z;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja573c/;1610751116;5;True;False;anime;t5_2qh22;;0;[]; -[];;;abdulladam12;;;[];;;;text;t2_1hw3wbk3;False;False;[];;Episode was good now that we know what is the world situation we can understand more, i hope we get a lunitic character that feel betrayed and decide to kill all humans and demons and start a world of the people that lived as food for the demons this would be great , i wish isayama made this manga would’ve been much better;False;False;;;;1610664433;;False;{};gja5av4;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja5av4/;1610751190;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;supicasupica;;;[];;;;text;t2_casna;False;False;[];;Thank you so much! And yeah I blogged Revue Starlight weekly. This winter I'm going to (hopefully) be blogging The Promised Neverland and Wonder Egg Priority if I have the time (I just started a new job).;False;False;;;;1610664471;;False;{};gja5dmd;False;t3_kxayvb;False;False;t1_gja1324;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja5dmd/;1610751237;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Nazenn;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Nazenn;light;text;t2_n4ozd;False;False;[];;All of the kids giving Ray and Emma shit for being reckless was one of the best moments in the show for me so far. Coming off the back of S1 where Ray, Emma, and Norman were the key to everything and everything was drowned in fear about what would happen to the young kids if they failed, the flip of the younger kids now turning it back on them and making them look after themselves, that they don't have to hide things or put up a brave front any more if it means they're at risk was both touching and hilarious with how they went about it;False;False;;;;1610664567;;False;{};gja5kn0;False;t3_kxayvb;False;False;t1_gj9893h;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja5kn0/;1610751365;128;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"""So you're telling us there's a chance!""";False;False;;;;1610664581;;False;{};gja5lnv;False;t3_kxayvb;False;False;t1_gj9xf7n;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja5lnv/;1610751387;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Brandon_2149;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Brandon2149;light;text;t2_162r8p;False;False;[];;This anime reminds me of Stars Align... Hopefully studio don't fuck them over like that anime. Seems more drama with some sports anime.;False;False;;;;1610664679;;False;{};gja5ssv;False;t3_kxaa94;False;True;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gja5ssv/;1610751530;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok_Draw_2833;;;[];;;;text;t2_4dha12vu;False;False;[];;"Hmm, when you put it that way it does make sense. - -I guess the majority of Demons in PNL are Christian then? Maybe only give up human on lent?";False;False;;;;1610664699;;False;{};gja5uax;False;t3_kxayvb;False;False;t1_gj9uyv0;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja5uax/;1610751564;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Cynadiir;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cyn50;light;text;t2_zs3sh;False;False;[];;Yeah, the mamas do provide children. Ray was the moms actual kid I think, we learned that in S1.;False;False;;;;1610664813;;False;{};gja62lj;False;t3_kxayvb;False;True;t1_gj9qp6z;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja62lj/;1610751729;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DodzReincarnated;;;[];;;;text;t2_6dnzr3j;False;False;[];;"I wonder if the team that worked on jojo’s also worked on this, I can totally feel like they did. - -edit: I know it is davidpro I’m just thinking if it is the specific team";False;False;;;;1610664829;;1610665013.0;{};gja63oc;False;t3_kx9qo8;False;True;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gja63oc/;1610751748;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ParallaxKnight13;;;[];;;;text;t2_1vvbys50;False;False;[];;Kinda reminds me of Eren🙄;False;False;;;;1610664850;;False;{};gja659r;False;t3_kxayvb;False;False;t1_gja0ehy;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja659r/;1610751778;33;True;False;anime;t5_2qh22;;0;[]; -[];;;NearWinner;;;[];;;;text;t2_68jzmig0;False;False;[];;It seems that my memory failed. Thanks for the clarification.;False;False;;;;1610664856;;False;{};gja65q0;False;t3_kxayvb;False;True;t1_gja2257;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja65q0/;1610751786;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoaoWillerding;;;[];;;;text;t2_1a7a935l;False;False;[];;Seriosly, Asahi? That guy would cry in Titanic.;False;False;;;;1610665054;;False;{};gja6k60;False;t3_kxaa94;False;True;t1_gj9d9wa;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gja6k60/;1610752054;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GLOaway5237;;;[];;;;text;t2_7uqrlja1;False;False;[];;Woah;False;False;;;;1610665088;;False;{};gja6mgv;False;t3_kxayvb;False;False;t1_gja3871;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja6mgv/;1610752100;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Nazenn;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Nazenn;light;text;t2_n4ozd;False;False;[];;Glad to see you back doing these write ups again this season. This season seems to less involved with the direction than last one, perhaps just due to adapting the initial info dumps etc while now we're getting more into the drama, but the focus among the different groups of children and how their individual skills are prioritized is something that's stood out to me, in particular how it's no longer taking any one childs viewpoint of the situation, such as the forest, and showing their individual focus. It also made Emma shooting the bird stand out to me this episode because we hadn't seen any other individual perspectives yet, and that's also something she seems to be keeping to herself.;False;False;;;;1610665089;;False;{};gja6mlw;False;t3_kxayvb;False;False;t1_gj98ypw;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja6mlw/;1610752102;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Madao16;;;[];;;;text;t2_txqdwdz;False;False;[];;I was muslim and sacrificing animals was one of the reason why I left islam. It is a primitive tradition. Also technology has advanced now. Killing the animals by cutting their neck is just torture. It takes a lot of time for animals dying because of blood loss and it is really painful process. You can kill animals in a second now but muslims still prefer the painful way.;False;False;;;;1610665186;;1610665403.0;{};gja6thp;False;t3_kxayvb;False;True;t1_gj99la7;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja6thp/;1610752239;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;p0kli;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Anonime-chan;light;text;t2_i0lxd;False;False;[];;What an episode. Fucking love it. Both MCs are growing and feel very natural. Now let's hope it doesn't get the same treatment Hoshiai no Sora did.;False;False;;;;1610665299;;False;{};gja71jv;False;t3_kxaa94;False;False;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gja71jv/;1610752384;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Nazenn;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Nazenn;light;text;t2_n4ozd;False;False;[];;The demons say they eat everything else, just not human meat, so they would eat animals etc;False;False;;;;1610665305;;False;{};gja71zc;False;t3_kxayvb;False;False;t1_gj9n35h;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja71zc/;1610752393;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;"Well, episode 1 adapted 8 chapters lol -With the pacing now, they are forced to do Goldy Pond and they can finish it by rushing one episode like last week.";False;False;;;;1610665310;;False;{};gja72e3;False;t3_kxayvb;False;False;t1_gja42j0;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja72e3/;1610752401;4;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;i assume that demons have some sort of magic or powers or have limited breeding capability, otherwise a vastly stronger and faster enemy should crush humans during the dark ages;False;False;;;;1610665341;;False;{};gja74iq;False;t3_kxayvb;False;False;t1_gj9k6zc;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja74iq/;1610752442;5;True;False;anime;t5_2qh22;;0;[]; -[];;;VritraReiRei;;ann;[];;;dark;text;t2_b9elz;False;False;[];;"Whoa wait what? Sometimes immunization is just them introducing a really weak version of a disease!? - -Learned something new today!";False;False;;;;1610665364;;False;{};gja7639;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gja7639/;1610752469;28;True;False;anime;t5_2qh22;;0;[]; -[];;;Nazenn;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Nazenn;light;text;t2_n4ozd;False;False;[];;Demons probably isn't the word they use among themselves, and if things on the demon side have remained as stagnant as he seems to be suggesting then who knows how long its been since he last had human contact if it's all blended together;False;False;;;;1610665423;;False;{};gja7aas;False;t3_kxayvb;False;True;t1_gj9pbox;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja7aas/;1610752547;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nazenn;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Nazenn;light;text;t2_n4ozd;False;False;[];;I didn't expect Sonju to die so quickly, but I did half expect them to be attacked. The scene with Emma was so much better than anything that an attack could have brought us though.;False;False;;;;1610665528;;False;{};gja7hod;False;t3_kxayvb;False;True;t1_gj9wal9;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja7hod/;1610752681;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Master3530;;;[];;;;text;t2_1so2sp13;False;False;[];;They could just stop at the elevator;False;False;;;;1610665549;;False;{};gja7j6h;False;t3_kxayvb;False;True;t1_gja42j0;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja7j6h/;1610752709;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Yeah her inner struggle is between idealism (peace, love and pacifism) and reality (kill or be killed bro), her great ability to be hopeful is part of that idealism.;False;False;;;;1610665610;;False;{};gja7niu;False;t3_kxayvb;False;False;t1_gja0ehy;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja7niu/;1610752796;61;True;False;anime;t5_2qh22;;0;[]; -[];;;joga22;;;[];;;;text;t2_4p7fek4l;False;False;[];;prison school;False;False;;;;1610665678;;False;{};gja7s9q;False;t3_kxaj29;False;True;t3_kxaj29;/r/anime/comments/kxaj29/looking_for_ecchi_anime_recommendations/gja7s9q/;1610752884;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Well what's best for the animal in the first place is not to be bred in captivity for slaughter. Painless death is of course important as well, but so is a mainly free life which is why I feel least bad eating reindeer and wild game.;False;False;;;;1610665711;;False;{};gja7ujn;False;t3_kxayvb;False;True;t1_gja6thp;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja7ujn/;1610752925;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aerohed;;;[];;;;text;t2_xjmyo;False;False;[];;"I kinda wonder if humans would even accept them once they came over. It could be that the humans in the human world don't want to start another war and would gladly hand over the kids if they ever even got that far. - -Then again, human society could be more advanced than it was previously, and thus, more able to handle demons on their own terms.";False;False;;;;1610665784;;False;{};gja7zu3;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja7zu3/;1610753024;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Yeah sometimes blood and violence is necessary to protect peoples' survival and that is the harsh truth that Emma needs to accept. And I don't mean just killing for food.;False;False;;;;1610665825;;False;{};gja82om;False;t3_kxayvb;False;True;t1_gj9mxlh;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja82om/;1610753077;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Emma's top-notch physical talent bout to come in handy.;False;False;;;;1610665904;;False;{};gja88by;False;t3_kxayvb;False;True;t1_gj9fbg7;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja88by/;1610753183;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Animeproduction13;;;[];;;;text;t2_8hn84kk3;False;False;[];;"In this episode we learned that there are 2 world Demons and humans and they fight each other in 1000 years ago. But later on they come in peace each other. -There are more questions left to be answered like. - -Why children live on a farm in demon world? - -If Demons and humans have agreed to live in peace, then why Demons eat children?";False;False;;;;1610665928;;False;{};gja8a0z;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja8a0z/;1610753215;0;True;False;anime;t5_2qh22;;0;[]; -[];;;entinio;;;[];;;;text;t2_11a1xl;False;False;[];;"All I can say is that you have great tastes! I also like these efforts put into stories and production on sometimes not so popular shows. I got high hopes on Wonder Egg to be a masterpiece. -Good luck on your new job!";False;False;;;;1610666042;;False;{};gja8i4b;False;t3_kxayvb;False;True;t1_gja5dmd;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja8i4b/;1610753367;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Madao16;;;[];;;;text;t2_txqdwdz;False;False;[];;You are right. Animal farming is a horrible industry that is full of abuse and it is one of the reasons of climate change. Also I don't think eating meat is necessary and I don't even like its taste. So I stopped eating meat for good because of those reasons.;False;False;;;;1610666042;;False;{};gja8i4c;False;t3_kxayvb;False;True;t1_gja7ujn;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja8i4c/;1610753367;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeadingPlayer;;;[];;;;text;t2_c0osog1;False;False;[];;"Haijima is killing me. He’s so unlikable that’s it hurts to see Yuni’s willingness to help him out get basically nothing in return. I’m all for Yuni not wanting to play with someone like that, what’s the point?? Also, these guys being in middle school gives me big “the main characters in Shugo Chara are in elementary school.” - -Definitely wanting to skip but gah, it’s my friends favorite so we’ll see.";False;False;;;;1610666093;;False;{};gja8luo;False;t3_kxaa94;False;False;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gja8luo/;1610753439;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NinjaOtter;;;[];;;;text;t2_4qd1x;False;False;[];;"My wife is like ""is he still working for the other side?"" - -And I told her that maybe Ray messed up. I assumed he left that writing for Emma and crew in case he got caught, telling her to continue on without him. But I honestly have no clue at all";False;False;;;;1610666153;;False;{};gja8q4g;False;t3_kxayvb;False;False;t1_gja3jni;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja8q4g/;1610753519;6;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;I would hope so too, but this really just looks like the standard kind of female-authored gay-bait boy drama.;False;False;;;;1610666178;;False;{};gja8rxj;False;t3_kxaa94;False;True;t1_gja3597;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gja8rxj/;1610753553;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NullandVoidUsername;;;[];;;;text;t2_14qmfcj;False;False;[];;These episodes are feeling too lighthearted and peaceful to me, I just know it won't be long until something dark occurs.;False;False;;;;1610666260;;False;{};gja8xmc;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja8xmc/;1610753662;1;True;False;anime;t5_2qh22;;0;[]; -[];;;XEGmidnight;;;[];;;;text;t2_3v990d7m;False;False;[];;still trying to figure out what it say on the tree;False;False;;;;1610666271;;False;{};gja8ybe;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja8ybe/;1610753675;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;Muslims do slaughter animals (Cows/Goats/Camels) on Eid-ul-Adha. Most do themselves, while you also have the option to let the butcher do it.;False;False;;;;1610666321;;False;{};gja91v6;False;t3_kxayvb;False;True;t1_gj99la7;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja91v6/;1610753745;1;True;False;anime;t5_2qh22;;0;[]; -[];;;carlos1106;;;[];;;;text;t2_yb3x5;False;False;[];;"Fair point, I think it depends on how humans (on the human side) feel about it. They either know and care (but can't do anything about it), they know but don't care (they could have their own, more pressing problems), or humans don't know. - -The observation that there doesn't seem to be any human endeavour in destroying the demons makes me feel like maybe it is impossible to go to the other side.";False;False;;;;1610666348;;False;{};gja93s5;False;t3_kxayvb;False;False;t1_gja00vh;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja93s5/;1610753781;10;True;False;anime;t5_2qh22;;0;[]; -[];;;theanimegamer-___-;;;[];;;dark;text;t2_3vm3lj8d;False;False;[];;Emma keeps moving forward;False;False;;;;1610666518;;False;{};gja9fr3;False;t3_kxayvb;False;False;t1_gja659r;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja9fr3/;1610754017;53;True;False;anime;t5_2qh22;;0;[]; -[];;;Mana_Croissant;;;[];;;;text;t2_30m68690;False;False;[];;But The first episode rewrote/changed/did not include A LOT of content Even If they were not the greatest and the episode still worked very well without them. Can they do the same again ? Cutting that much content would be MUCH harder in the future;False;False;;;;1610666605;;False;{};gja9lw0;False;t3_kxayvb;False;True;t1_gja72e3;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja9lw0/;1610754137;3;True;False;anime;t5_2qh22;;0;[]; -[];;;magical-grill;;;[];;;;text;t2_box4k85;False;False;[];;"> he mentioned he heard 2nd hand - -That’s a good point. We’ll just have to see which direction this goes c:";False;False;;;;1610666633;;False;{};gja9nuc;False;t3_kxayvb;False;True;t1_gja0dsv;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gja9nuc/;1610754172;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Toonamigamerrr;;;[];;;;text;t2_ssw2vcw;False;False;[];;Memory Cell Trigger Sense gone wrong here XD;False;False;;;;1610666663;;False;{};gja9px8;False;t3_kx9qo8;False;False;t3_kx9qo8;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gja9px8/;1610754211;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NoraaTheExploraa;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/NoraaTheExploraa/;light;text;t2_hx789;False;False;[];;"What? Haijima has been nothing but incredibly nice. He trained a bunch of complete amateurs and never once complained at their failures or inexperience. In the tournament he played with his team right up until doing so meant they would lose, and then carried them a bit so they could take a day to recover their nerves. - -Literally the only bad thing we've *seen* him do is get frustrated at Yuni in the match towards the end. (Im not even sure if he actually said those words, it looks more like Yuni misinterpreting his glare)";False;False;;;;1610666700;;False;{};gja9si1;False;t3_kxaa94;False;False;t1_gja8luo;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gja9si1/;1610754261;31;True;False;anime;t5_2qh22;;0;[]; -[];;;Agreeable-Highlight;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/STARFLIGHT1111/;light;text;t2_2xajbknh;False;False;[];;That’s interesting that you say that because their level of volleyball is way advanced for a middle school team. Or idk maybe Japan is just that good.;False;False;;;;1610666814;;False;{};gjaa0h1;False;t3_kxaa94;False;True;t1_gja54p6;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjaa0h1/;1610754414;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ziptofaf;;;[];;;;text;t2_8e3wg;False;False;[];;"Demons definitely do have electricity as well and at least 20th century tech (I mean, that camera last season came from somewhere). And if these ear-installed transceivers are anything to go by then their actual level of tech exceeds known 21st century tech too. - -So they might very well have fully functional high tech killing machines. They just don't use them for basic hunting against helpless prey, the same way you don't bring a tank to a Safari. Or they don't use it because they generally don't have a need for it. I don't think we can estimate anything about their odds vs humans from what we currently know.";False;False;;;;1610666842;;1610667449.0;{};gjaa2g4;False;t3_kxayvb;False;False;t1_gj9k6zc;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjaa2g4/;1610754456;36;True;False;anime;t5_2qh22;;0;[]; -[];;;emilio2710;;;[];;;;text;t2_4sgdoh0z;False;False;[];;But they had pretty advanced technology in the house when they did their tests...;False;False;;;;1610666887;;False;{};gjaa5n2;False;t3_kxayvb;False;False;t1_gj9y8ju;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjaa5n2/;1610754517;14;True;False;anime;t5_2qh22;;0;[]; -[];;;LeadingPlayer;;;[];;;;text;t2_c0osog1;False;False;[];;"That’s fair. I’m probably projecting my own bad feelings onto that character then. He just rubbed me really wrong last episode when he told someone who was really excited to see him that he was wasting his life. I shouldn’t be so harsh on him, so I’ll keep watching to try to curb that bias. - -Thank you for pointing out the good in him for me. It’s hard for me to see that in characters I don’t click with automatically. :)";False;False;;;;1610666970;;False;{};gjaaber;False;t3_kxaa94;False;False;t1_gja9si1;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjaaber/;1610754629;2;True;False;anime;t5_2qh22;;0;[]; -[];;;emilio2710;;;[];;;;text;t2_4sgdoh0z;False;False;[];;Yeah that look reminded me of Isabella... Like she embraces and accepts the sacrifices that have to be done in order to survive, both she and her family;False;False;;;;1610666990;;False;{};gjaactg;False;t3_kxayvb;False;False;t1_gj96bcv;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjaactg/;1610754656;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;"The method to slaughter (*dhabīḥah*) also leads to a very quick death. The method leads to very fast blood loss. I’ve seen it happen, doesn’t take more than 5-6 seconds. - - -It’s a whole different case if don’t wrongly, though. Any who, let this not be a discussion about Islam and slaughtering animals.";False;False;;;;1610667014;;False;{};gjaaejs;False;t3_kxayvb;False;False;t1_gja6thp;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjaaejs/;1610754690;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Mjrbks;;;[];;;;text;t2_11rslemr;False;False;[];;"The synchronicity between the animation and voice work really make the emotions come out so raw and real. Emma especially, I really feel her emotions and it enhances the whole experience so much. - -It was interesting seeing how the flower works and how it’s considered to the demons. For Emma to actually use it herself when she has such traumatic memories of when she first came across it, that would be a major turning point in anyone’s sense of self. Seeing that on her face upon her return was an excellent shot. - -I didn’t really attach too tightly to Norman in S1, though I did like his character and certainly felt for him - but I feel myself getting very invested in Emma and Ray. It’s gonna make this season quite the roller coaster I feel.";False;False;;;;1610667149;;False;{};gjaao4p;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjaao4p/;1610754881;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Tearorize55;;;[];;;;text;t2_61ijlzsy;False;False;[];;Seconded.;False;False;;;;1610667261;;False;{};gjaaw18;False;t3_kxaa94;False;False;t1_gja4tz5;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjaaw18/;1610755021;5;True;False;anime;t5_2qh22;;0;[]; -[];;;emilio2710;;;[];;;;text;t2_4sgdoh0z;False;False;[];;Her smile at the end reminded me of Isabella. Like she realises sacrifices have to be made in order to survive in this world;False;False;;;;1610667380;;False;{};gjab495;False;t3_kxayvb;False;True;t1_gj99voj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjab495/;1610755171;2;True;False;anime;t5_2qh22;;0;[]; -[];;;qwilliams92;;;[];;;;text;t2_11le5l;False;False;[];;So did people just want another Haikyuu because that's dumb. Sport anime with character studies are usally pretty good.;False;False;;;;1610667397;;False;{};gjab5gp;False;t3_kxaa94;False;False;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjab5gp/;1610755194;17;True;False;anime;t5_2qh22;;0;[]; -[];;;IISovereignII;;;[];;;;text;t2_66j28ci4;False;False;[];;"Go 106-32 Pursuer - -No idea what the means. Why would Ray write a message to the demons? - -Is this all a plot by him to work with the demons? Is he trying to find the human world in order to surrender it to the demons?";False;False;;;;1610667470;;False;{};gjabajd;False;t3_kxayvb;False;True;t1_gja8ybe;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjabajd/;1610755286;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;">They are trying to tackle *much* bigger issues here; bullying, peer pressure, suicide, anxiety, pressure to ‘fit in’. It’s not about the volleyball. - -But I don't think its tackling that well, it's jumping around too much and failing to give the characters actual characters, like can you even name one single other person on the team besides the main 2 characters? Just telling us Yuni called the team and shit talked Haijima makes that fail to work as an emotional moment, we should be seeing that, seeing him being pushed over the edge like that. - -It just feels to be hinting towards those thematic ideas but breezing past them and not giving them time to settle. Like look at the events of this episode, Yuni finds out Haijima pushed a player to try to kill himself, then makes up with him, we skip a month and a half of training, they play some games, which then causes him to hate him, then after the credits he wants to play with him again. - -You can't bounce around that much if you want to be focusing on heavy thematic themes, the heaviness necessitates room to breathe, and with this breakneck pacing, any form of breathing room is non existent.";False;False;;;;1610667471;;False;{};gjabals;False;t3_kxaa94;False;False;t1_gj9j3ov;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjabals/;1610755288;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Soap646464;;;[];;;;text;t2_2nr0birw;False;False;[];;If this is way advanced for middle school , is Haikyuu Olympic level or something/s;False;False;;;;1610667473;;False;{};gjabasj;False;t3_kxaa94;False;True;t1_gjaa0h1;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjabasj/;1610755291;0;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;She sounded almost Chinese at times.;False;False;;;;1610667562;;False;{};gjabh14;False;t3_kxaa94;False;True;t1_gj9f5ce;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjabh14/;1610755398;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Tearorize55;;;[];;;;text;t2_61ijlzsy;False;False;[];;"That is a fair assumption, and I completely agree with it, but my concern with this series is that if they are focusing on slice of life elements, then I need to be invested in characters; which I'm not. - -In my opinion, the first 2 episodes rushed through a lot and we didn't get a chance to get the characters at all. Yuni seems like a push-over with no real personality other than he's a good guy and tall. While Hajima is just...unlikable. I'm all about angsty guys, but he's just too much with no good qualities. I don't even get the ""cool"" vibe from him that usually makes his type of character decent. - -I usually like slice of life, and absolutely adore characters with flaws, but this series seems to think we should just like them despite only showing off their bad side. I would have totally been done for Yuni ""abandoning"" his team if I knew who his team was, or even knew Yuni a little better. - -As pointed out by others, I feel they are rushing everything and because of that, I can't connect with the corrects. I want to like this series, but I'm really not feeling it.";False;False;;;;1610667614;;False;{};gjabko0;False;t3_kxaa94;False;False;t1_gj9j3ov;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjabko0/;1610755464;6;True;False;anime;t5_2qh22;;0;[]; -[];;;F0LEY;;;[];;;;text;t2_6zrlb;False;False;[];;I mean, there is a very different level to eating something with similar sentience to your own and eating a bird. None of the demons NEED to eat humans, as shown by these two with religious exception. It's just something they like a lot... A closer parallel would be humans making Dolphin Foe Gras?;False;False;;;;1610667621;;False;{};gjabl4f;False;t3_kxayvb;False;False;t1_gj9pekx;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjabl4f/;1610755471;75;True;False;anime;t5_2qh22;;0;[]; -[];;;Trotterswithatwist;;;[];;;;text;t2_dv6e1;False;False;[];;Kinda wasn’t the point of my comment though? I did say *trying* to tackle bigger issues. I never said it was done spectacularly well, it’s too early to make that assumption either way. I was merely pointing out that volleyball was not the main focus.;False;False;;;;1610667699;;False;{};gjabqj8;False;t3_kxaa94;False;False;t1_gjabals;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjabqj8/;1610755568;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;"How do you notice these details and make a connection to everything that’s happening on-screen? Like I can make a connection between some obvious directing and dialogues, but not throughout the episode. - -Do you try to make a connection (like, deliberately) ? Does the connection click in your mind on its own (subconsciously) ? Or do you go out of your way to focus on scenes that you feel like there’s a connection ?";False;False;;;;1610667720;;False;{};gjabrz0;False;t3_kxayvb;False;False;t1_gj98ypw;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjabrz0/;1610755595;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zoolinz;;;[];;;;text;t2_j38iz;False;False;[];;Yeah I bet that will be a future plot point if their current plan of get to safety, get allies, save em stays on track. They’ll get to safety, look for allies, but everyone will be like “Uh so you want all out war against the demons? No thanks”;False;False;;;;1610667830;;False;{};gjabzi4;False;t3_kxayvb;False;True;t1_gj9958s;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjabzi4/;1610755732;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Madao16;;;[];;;;text;t2_txqdwdz;False;False;[];;I’ve seen it happen many times too it takes much more than 5-6 seconds. Just because they don't move it doesn't mean they are death. Next time check their vitals you would see. Also scientifically 5 second isn't possible either. And unfortunately wrong doing makes it worse which is pretty common because many muslims want to do that themselfs despite they don't how to do it.;False;False;;;;1610667877;;False;{};gjac2ry;False;t3_kxayvb;False;False;t1_gjaaejs;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjac2ry/;1610755800;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;"Another pretty good episode. Was a pleasant surprise to hear the demon's reasoning for not killing humans. Was half-expecting a ""we don't kill humans because they saved us 10 years ago"" so the religious angle was a refreshing change.";False;False;;;;1610667907;;False;{};gjac4vy;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjac4vy/;1610755843;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zoolinz;;;[];;;;text;t2_j38iz;False;False;[];;I used to just give it up on Fridays tbh;False;False;;;;1610667907;;False;{};gjac4xc;False;t3_kxayvb;False;True;t1_gja5uax;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjac4xc/;1610755844;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610667961;;False;{};gjac8mm;False;t3_kxayvb;False;True;t1_gjabl4f;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjac8mm/;1610755925;6;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;They pulled off a pipe at 1st tempo and ridiculously fast jump serves, the volleyball is actually more advanced than Haikyuu was at the same level which doesn't bode too well from a representation of the sport side of things.;False;False;;;;1610668021;;False;{};gjaccxa;False;t3_kxaa94;False;False;t1_gja54p6;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjaccxa/;1610756007;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeph-Shoir;;MAL;[];;http://myanimelist.net/profile/Zephex;dark;text;t2_q31mw;False;False;[];;It was a great way to end the episode imo.;False;False;;;;1610668113;;False;{};gjacjft;False;t3_kxayvb;False;False;t1_gj9wd3r;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjacjft/;1610756130;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeph-Shoir;;MAL;[];;http://myanimelist.net/profile/Zephex;dark;text;t2_q31mw;False;False;[];;Culture and customs is a part of it. If you grew up in a society that ate dogs but not chickens our world would seem crazy.;False;False;;;;1610668232;;False;{};gjacrjs;False;t3_kxayvb;False;False;t1_gjac8mm;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjacrjs/;1610756275;9;True;False;anime;t5_2qh22;;0;[]; -[];;;emilio2710;;;[];;;;text;t2_4sgdoh0z;False;False;[];;Very good episode. So “nice” to see Emma realising that sacrifices have to be made in order to survive in their world. She’s growing up fast, and that fake smile at the end proves it, which also reminds me of Isabella when she always smiled at the children. In such a cruel world, you must sacrifice innocent beings to survive. The ancient humans left some children as a gift for the demons so that the war could stop. Isabella and the mothers of the farm dedicate their lives to raising and giving birth to innocent children just to be killed an eaten. All that in order to survive in this cruel world;False;False;;;;1610668237;;False;{};gjacrxb;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjacrxb/;1610756281;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;">Kinda wasn’t the point of my comment though? - -Yes because your comment is in relation to people being disappointed with the series, and saying its because they expected Haikyuu 2.0, whereas my point is the execution of its attempt to tackle those themes is reason enough to be disappointed. - -I feel like Stars Align just did a much better job playing with a similar concept, building in heavy themes of bullying, abuse and lgbt around a sport without it ever feeling forced or over the top. Whereas on the other (heavy) hand you have Hanebado which tried so hard to be about the drama it forgot to create characters in the process, this show is pushing closer to the latter in execution and that's absolutely reason for disappointment.";False;False;;;;1610668281;;False;{};gjacuxv;False;t3_kxaa94;False;True;t1_gjabqj8;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjacuxv/;1610756336;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;annoying_know-it-all;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Dub is an abomination.;dark;text;t2_y28hp;False;False;[];;That Gilda moment was so unexpected and so hilarious!;False;False;;;;1610668332;;False;{};gjacyj5;False;t3_kxayvb;False;True;t1_gj9hl4p;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjacyj5/;1610756406;1;True;False;anime;t5_2qh22;;0;[]; -[];;;emilio2710;;;[];;;;text;t2_4sgdoh0z;False;False;[];;Great analysis. So “nice” to see Emma realising that sacrifices have to be made in order to survive in their world. She’s growing up fast, and that fake smile at the end proves it, which also reminds me of Isabella when she always smiled at the children. In such a cruel world, you must sacrifice innocent beings to survive. The ancient humans left some children as a gift for the demons so that the war could stop. Isabella and the mothers of the farm dedicate their lives to raising and giving birth to innocent children just to be killed an eaten. All that in order to survive in this cruel world;False;False;;;;1610668342;;False;{};gjacz7h;False;t3_kxayvb;False;False;t1_gja3871;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjacz7h/;1610756420;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeph-Shoir;;MAL;[];;http://myanimelist.net/profile/Zephex;dark;text;t2_q31mw;False;False;[];;Yeah, I thought Mujika was a half-breed and Sonju is her father, which would explain why they were protecting the kids. The religious angle is certainly unexpected and seems that it is going to be important going forward.;False;False;;;;1610668433;;False;{};gjad5os;False;t3_kxayvb;False;False;t1_gj9wiod;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjad5os/;1610756539;14;True;False;anime;t5_2qh22;;0;[]; -[];;;OingoBoingo-;;;[];;;;text;t2_8cbjydnf;False;False;[];;yeah I think Haijima has some resting bitch face going on and his unwillingness to open up probably has to do with his past, I think you're suppose to warm up to him eventually. Yuni is more the asshole for talking behind Haijima's back because he lost a game. That was just middle school bully stuff.;False;False;;;;1610668494;;False;{};gjad9vy;False;t3_kxaa94;False;False;t1_gja9si1;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjad9vy/;1610756619;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Trotterswithatwist;;;[];;;;text;t2_dv6e1;False;False;[];;I’m kinda confused because I never mentioned Haikyuu, I’ve never even seen it so to make comparisons with something I haven’t watched would be weird. I feel like we’ve crossed wires somewhere. I was only expressing an opinion on an anime I like, that’s it. I just think it’s neat. I don’t really have a deep opinion on it!;False;False;;;;1610668549;;False;{};gjaddqy;False;t3_kxaa94;False;False;t1_gjacuxv;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjaddqy/;1610756689;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Existential_Owl;;;[];;;;text;t2_ff7ph;False;False;[];;IIRC, he only starts using the word demon after hearing it from the kids.;False;False;;;;1610668573;;False;{};gjadff9;False;t3_kxayvb;False;False;t1_gja1ivi;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjadff9/;1610756720;6;True;False;anime;t5_2qh22;;0;[]; -[];;;mikeykt;;;[];;;;text;t2_b4o0h;False;False;[];;Yes, it's called an [attenuated vaccine](https://en.m.wikipedia.org/wiki/Attenuated_vaccine). There are other methods, like rna (where only some parts of the virus are introduced), or some where they put genetic material from a more serious virus into a less serious one.;False;False;;;;1610668669;;False;{};gjadm2i;False;t3_kx9qo8;False;False;t1_gja7639;/r/anime/comments/kx9qo8/hataraku_saibou_episode_2_discussion/gjadm2i/;1610756837;31;True;False;anime;t5_2qh22;;0;[]; -[];;;ErBaut;;;[];;;;text;t2_w10av;False;False;[];;"Considering how fast the series is advancing, how do tou this season will end? I'm guessing next chapter the group will reach b-06-32 and probably will end with emma and ray leaving towards goldy pond I was thinking about s2 ending with the W.M. ""phone call"" near the elevator but but I'm nor sure anymore, how do you guys think will be the end if this season?";False;False;;;;1610668669;;False;{};gjadm40;False;t3_kxayvb;False;True;t1_gj92dyj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjadm40/;1610756838;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Agreeable-Highlight;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/STARFLIGHT1111/;light;text;t2_2xajbknh;False;False;[];;"This is only me speaking from my own experience, but there’s a pretty huge difference in skill between middle school volleyball and high school volleyball. The volleyball in Haikyuu is definitely advanced, but I mean, when you’re playing at those high level tournaments, it would have to be. - -I’m not an expert or anything though, just someone who’s played volleyball since they were little.";False;False;;;;1610668704;;False;{};gjadojf;False;t3_kxaa94;False;False;t1_gjabasj;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjadojf/;1610756881;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ErBaut;;;[];;;;text;t2_w10av;False;False;[];;Ray is the Kenny of this series;False;False;;;;1610668742;;False;{};gjadr6y;False;t3_kxayvb;False;False;t1_gj9893h;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjadr6y/;1610756929;19;True;False;anime;t5_2qh22;;0;[]; -[];;;ErBaut;;;[];;;;text;t2_w10av;False;False;[];;Anna and Gilda best girls;False;False;;;;1610668777;;False;{};gjadtrk;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjadtrk/;1610756976;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Soap646464;;;[];;;;text;t2_2nr0birw;False;False;[];;Gotcha thank you for the information;False;False;;;;1610668796;;False;{};gjadv01;False;t3_kxaa94;False;True;t1_gjadojf;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjadv01/;1610756998;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OingoBoingo-;;;[];;;;text;t2_8cbjydnf;False;False;[];;I had the same thoughts while watching. I am fine with a drama and light on the sports. I can easily not compare it to anything while watching. What I dislike is the pacing, which might need some time as the season moves forward, so that will get a pass. I also dislike how things are barely touched on that could have given the story heart. I don't like a character yet, I am not invested in anything going on. The end credits rolled and I was fucking confused, then Yuni shows up and cries and wants to play with Haijima again? nani.;False;False;;;;1610668797;;False;{};gjadv3x;False;t3_kxaa94;False;True;t1_gjabals;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjadv3x/;1610757000;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mrtheliger;;;[];;;;text;t2_11ghbg;False;False;[];;"I'm really curious to see if this ""religion"" thing gets expanded on further, because you don't see a lot of stuff like this in anime";False;False;;;;1610668833;;False;{};gjadxp5;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjadxp5/;1610757048;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeadingPlayer;;;[];;;;text;t2_c0osog1;False;False;[];;Emma and Ray are amazing! I’m so happy we got some one on one time with Emma and Shinji this episode too! The entire hunting scene was just beautiful! The forest atmosphere and music are simply gorgeous to look at as well! I’m so so happy this series is back! :D;False;False;;;;1610668868;;False;{};gjae080;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjae080/;1610757092;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tearorize55;;;[];;;;text;t2_61ijlzsy;False;False;[];;"I'm not sure if ""nice"" is the right word. Hajima will ""do anything to win"", and he needs a team to play. Him training them could be just to fulfill his goal. He can't yell at them because they'd leave, and he knows that. Up to this point, we haven't seen him do anything for anyone that doesn't benefit him first. - -With that said, I wouldn't say Hajima is mean either. His demeanor does come off cold but that could just be his personality or a lack of social skills. - -Finally to support the first comment, I wouldn't want to play with someone like Hajima either. I'm competitive and would absolutely work my butt of to win every match, but not at the expense of my teammates. Hajima didn't have to say ""you're useless"" to his team, he did it with his actions by ""playing by himself"". There's nothing worse than a teammate who communicates through petty passive-aggressive actions rather than being up front. Hajima could have told his team that he was going all out, and this situation would not have happened, but instead he thought only of winning and discarded their feelings. This behavior destroys teams as we obviously saw, and makes for a horrible teammate.";False;False;;;;1610668893;;False;{};gjae1zs;False;t3_kxaa94;False;False;t1_gja9si1;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjae1zs/;1610757126;4;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;"Fair enough got a few comments crossed but my point still stands, people aren't disappointed because it's more drama than sports, we've had tons of those before, it's nothing new, heck Run with the Wind is beloved on this sub (for very good reason), its that up to this point it just isn't very good, for drama and thematic value to land most people need an investment in the characters that it pertains to, and that investment is achieved by allowing us to actually see these characters for who they are and appreciate them, which this pacing has completely failed to achieve. - -You can say it's not a sports anime but there's been more sports action in these 2 episodes than most sports anime have in the same timeframe, and time spent on the sport is time spent away from seeing characters interact and allowing us to get invested in them, drama should always be secondary to that.";False;True;;comment score below threshold;;1610669017;;False;{};gjaeaf0;False;t3_kxaa94;False;False;t1_gjaddqy;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjaeaf0/;1610757282;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;ErBaut;;;[];;;;text;t2_w10av;False;False;[];;"> I fear for Emma's mental state - -Why though? She just feels bad physically cuz of her wound. Just remember how she reacted when Sonju said how the world in which they're living has been for ages. If she had some mental issues that revelation definitely would had been the breakpoint.";False;False;;;;1610669071;;False;{};gjaedzq;False;t3_kxayvb;False;True;t1_gj982ge;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjaedzq/;1610757344;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dogboy_F;;;[];;;;text;t2_4l8mghau;False;False;[];;Man that scene at the end with sonju and Emma made me feel so sad for her I really like sonju though he has good vibes and I have a feeling this nice clam episode with turn into an absolute shit show next week;False;False;;;;1610669167;;False;{};gjaekr6;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjaekr6/;1610757465;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeph-Shoir;;MAL;[];;http://myanimelist.net/profile/Zephex;dark;text;t2_q31mw;False;False;[];;"Took a quick look to the coordinates in both episodes. - -They are going to B06-32, but what Ray left seems to read ""106-32"" or ""I06-32"", either case, he definitely didn't write the B.";False;False;;;;1610669253;;False;{};gjaeqmn;False;t3_kxayvb;False;False;t1_gja06rf;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjaeqmn/;1610757570;25;True;False;anime;t5_2qh22;;0;[]; -[];;;NoraaTheExploraa;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/NoraaTheExploraa/;light;text;t2_hx789;False;False;[];;"He was genuinely happy last episode when people joined the team. If he would do ""anything to win"" he'd not have wasted times on 'weaklings' like a generic sports anime bad guy. He immediately got to training with everyone, never focussed too much attention on MC who is likely the most talented. I don't see how that's anything but nice. - ->Hajima didn't have to say ""you're useless"" to his team - -On that, I'm not sure we know the full story. All we actually see is his glare and then a fade to black. I don't see why they wouldn't show his mouth actually saying it. I feel like it might be a case of Yuni incorrectly reading between the lines. If he did say it, it was definitely rude and uncalled for. But the show seems to have made a point that whatever Haijima was in the past, he's trying to move past. That remark goes against that characterization. - -At that point in the game there was nothing he could do if they wanted to win. He knew he could pull a few surprises off and win a some points by playing solo but it was very clearly never his desire to do so. He wanted to finish the game so his teammates could recover afterwards. It's not his fault that instead they all fell apart.";False;False;;;;1610669297;;False;{};gjaeto5;False;t3_kxaa94;False;False;t1_gjae1zs;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjaeto5/;1610757624;9;True;False;anime;t5_2qh22;;0;[]; -[];;;KorekaBii;;skip7;[];;;dark;text;t2_66h9fxxk;False;False;[];;"The ""Blush Volume"" is even more absurd in that Surfing anime Wave that just released as well. I guess it's just as someone said ""Fujo-bait"". I've not seen so much blushing from what are non-embarrassing or romantic scenarios before.";False;False;;;;1610669334;;False;{};gjaew9l;False;t3_kxaa94;False;True;t1_gj9dsl6;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjaew9l/;1610757671;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;"Yeah the absolute worst thing a show can do is create an emotional moment and my reaction just being ""what am I supposed to be invested in this moment"". - -I see this mistake too often, shows just try to force the drama early because that's the plot but forget that without characters a plot has no foundations. Like Run with the Wind introduces the a tease of the drama early but by the time it properly appears we're already in love with everyone that lives in the house. Whereas Hanebado I got through 3 episodes before I dropped it because it came barrelling in full drama and left all the characterisation in a drawer at home somewhere. Drama isn't a character trait, it's a result of character traits mixing with an opposing force, you can't establish the drama without first properly establishing the traits.";False;False;;;;1610669374;;False;{};gjaeyzr;False;t3_kxaa94;False;True;t1_gjadv3x;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjaeyzr/;1610757722;1;True;False;anime;t5_2qh22;;0;[]; -[];;;F0LEY;;;[];;;;text;t2_6zrlb;False;False;[];;"Fair, that said I also thought it was weird no one even asked if there was any high protein plant life in the forest but went straight to ""We're all gonna have to eat animals, even if we don't like it"".";False;False;;;;1610669383;;False;{};gjaeznh;False;t3_kxayvb;False;True;t1_gjac8mm;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjaeznh/;1610757734;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610669399;;False;{};gjaf0qo;False;t3_kxayvb;False;True;t1_gj95sjg;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjaf0qo/;1610757754;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;dogboy_F;;;[];;;;text;t2_4l8mghau;False;False;[];;Probably because horses and dogs are working animals and might just not taste all that good, and some places do still eat dogs (not sure about horses) for religious or some other reasons;False;False;;;;1610669407;;False;{};gjaf1a3;False;t3_kxayvb;False;True;t1_gjac8mm;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjaf1a3/;1610757764;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ErBaut;;;[];;;;text;t2_w10av;False;False;[];;It's pretty clear from S1 that Isabella knows Ray is alive, she literally said it;False;False;;;;1610669503;;False;{};gjaf7w1;False;t3_kxayvb;False;False;t1_gj99lvm;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjaf7w1/;1610757886;6;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;True;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610669530;moderator;False;{};gjaf9tg;False;t3_kxayvb;False;False;t1_gj9fbg7;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjaf9tg/;1610757920;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dogboy_F;;;[];;;;text;t2_4l8mghau;False;False;[];;Yeah she’s like 12, her and the word realistic simply do not exist on the same continent until she’s faced with the fact that her idea is impossible;False;False;;;;1610669561;;False;{};gjafbyb;False;t3_kxayvb;False;False;t1_gj9958s;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjafbyb/;1610757957;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Eckish;;;[];;;;text;t2_6b8ao;False;False;[];;"> My own rebuke for this theory is that they lived like medieval people in the orphanage, - -It was a farm. There was tech where it was needed for the product. They had trackers in the kids and their testing facilities were high-tech. Everything else would be overhead.";False;False;;;;1610669639;;False;{};gjafhav;False;t3_kxayvb;False;False;t1_gj9y8ju;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjafhav/;1610758056;11;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610669687;;False;{};gjafkou;False;t3_kxayvb;False;True;t1_gj99v8l;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjafkou/;1610758113;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Tiger951;;;[];;;;text;t2_gqe8am6;False;False;[];;"Another good episode. The pacing was a bit better than the last episode. - -Looking forward to seeing a certain character animated.";False;False;;;;1610669696;;False;{};gjafl9d;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjafl9d/;1610758123;2;True;False;anime;t5_2qh22;;0;[]; -[];;;is_it_marcs_or_alice;;;[];;;;text;t2_9lrlg5v8;False;False;[];;I'm kinda new to watching anime, what platform do you use/follow to watch these anime or the new episodes? Like is there one site that has all of them?;False;False;;;;1610669731;;False;{};gjafnmp;False;t3_kxayvb;False;False;t1_gj9b0b3;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjafnmp/;1610758166;1;True;False;anime;t5_2qh22;;0;[]; -[];;;parkerestes;;;[];;;;text;t2_iblyv;False;False;[];;This episode was exceptionally well directed even though they reused a lot of frames;False;False;;;;1610669967;;False;{};gjag3xv;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjag3xv/;1610758453;1;True;False;anime;t5_2qh22;;0;[]; -[];;;supicasupica;;;[];;;;text;t2_casna;False;False;[];;"> the focus among the different groups of children and how their individual skills are prioritized is something that's stood out to me - -Yeah this has been a big change from S1 to S2 and reinforces that they're all in this together and will need to rely on each other/share information. Where most of S1 was just Emma/Norman/Ray close-ups and later Don/Gilda as well as a few cuts to Phil/Isabella/Krone this season has been all about them as a group until that Emma scene that you mentioned (which made it really impactful).";False;False;;;;1610670072;;False;{};gjagb9b;False;t3_kxayvb;False;False;t1_gja6mlw;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjagb9b/;1610758583;6;True;False;anime;t5_2qh22;;0;[]; -[];;;dogboy_F;;;[];;;;text;t2_4l8mghau;False;False;[];;They’re closer to Muslims than vegans;False;False;;;;1610670074;;False;{};gjagbdy;False;t3_kxayvb;False;False;t1_gj9ecoa;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjagbdy/;1610758585;4;True;False;anime;t5_2qh22;;0;[]; -[];;;dogboy_F;;;[];;;;text;t2_4l8mghau;False;False;[];;It could just be that the flower does that anyway and sonju just told Emma his interpretation of the flower in his religion;False;False;;;;1610670220;;False;{};gjagli5;False;t3_kxayvb;False;True;t1_gj9blon;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjagli5/;1610758766;2;True;False;anime;t5_2qh22;;0;[]; -[];;;supicasupica;;;[];;;;text;t2_casna;False;False;[];;This is going to sound really dumb but it just comes with practice. TPN in particular has been consistent with visual direction to the point where once you start seeing it, it's difficult to stop imo. I just see it as I watch. That being said, I'm just a visual person and I guess my education also helps since I was an art student and had to learn a lot about things like framing, color theory, lighting, etc. I'd say it's less of that and more of just watching a lot of anime, haha.;False;False;;;;1610670225;;False;{};gjaglua;False;t3_kxayvb;False;True;t1_gjabrz0;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjaglua/;1610758771;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dogboy_F;;;[];;;;text;t2_4l8mghau;False;False;[];;I wouldn’t say they’re vegan cuz most vegans don’t do it for religious reasons and avoid all animals not just one, they’re more related to the Muslim faith;False;False;;;;1610670404;;False;{};gjagyks;False;t3_kxayvb;False;True;t1_gj9n35h;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjagyks/;1610759000;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610670450;;False;{};gjah1qk;False;t3_kxayvb;False;False;t1_gj9iiyx;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjah1qk/;1610759056;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dio5000;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gundam336;light;text;t2_5czjwh85;False;False;[];;">ITS AN ISEKAI !!!! - -Everything is isekai these days";False;False;;;;1610670469;;False;{};gjah347;False;t3_kxayvb;False;True;t1_gj9fft4;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjah347/;1610759080;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hxnterrr;;;[];;;;text;t2_mtql9;False;False;[];;trying to die again eh?;False;False;;;;1610670494;;False;{};gjah4v1;False;t3_kxayvb;False;False;t1_gj9893h;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjah4v1/;1610759109;16;True;False;anime;t5_2qh22;;0;[]; -[];;;dogboy_F;;;[];;;;text;t2_4l8mghau;False;False;[];;"Maybe but it could just be someone going like “hey what’s a pescatarian?” -“Oh it means I’ll eat anything except fish”";False;False;;;;1610670515;;False;{};gjah6bi;False;t3_kxayvb;False;False;t1_gj9nq62;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjah6bi/;1610759136;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Dio5000;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gundam336;light;text;t2_5czjwh85;False;False;[];;"This.....this is how you do character development folks...... - -P.s as someone who went through the manga I was very pleased with this episode";False;False;;;;1610670517;;False;{};gjah6ht;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjah6ht/;1610759139;4;True;False;anime;t5_2qh22;;0;[]; -[];;;OingoBoingo-;;;[];;;;text;t2_8cbjydnf;False;False;[];;I thought of Somali too! This show always goes by so fast for me and I attribute to it just being well written. God this season is so packed but Neverland just keeps peacocking all over everything.;False;False;;;;1610670530;;False;{};gjah7db;False;t3_kxayvb;False;False;t1_gj96o7a;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjah7db/;1610759155;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;"Well, I can say it’s a skill that doesn’t necessary comes with watching more anime. I have 500+ entries on MAL, but as I said above, I can usually just spot the obvious ones now. - -You’re a pretty talented person, and I’m looking forward to more of these ! Thanks !";False;False;;;;1610670638;;False;{};gjahes7;False;t3_kxayvb;False;True;t1_gjaglua;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjahes7/;1610759295;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mynameiscem;;;[];;;;text;t2_smd61rc;False;False;[];;I mean, in China is rn a literal genocide and the whole world kinda ignores it, so it’s not unbelievable to think, that the other humans just don’t give a fuck.;False;False;;;;1610670692;;False;{};gjahij6;False;t3_kxayvb;False;True;t1_gj9pbox;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjahij6/;1610759364;1;True;False;anime;t5_2qh22;;0;[]; -[];;;supicasupica;;;[];;;;text;t2_casna;False;False;[];;Ah thank you so much! My job deals a lot in visual pattern recognition too, so that could also be it, idk.;False;False;;;;1610670765;;False;{};gjahnkx;False;t3_kxayvb;False;False;t1_gjahes7;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjahnkx/;1610759462;2;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;If there are enough humans they probably split up into different factions and it wouldn't be feasible for them to work together to do so. And then to avoid conflicts between factions about who gets what share of the demon land, or just to avoid conflicts with the demons caused by other factions, they might have an agreement not to invade. Or maybe there's some other reason they might not want the demon's land or some kind of barrier that makes it difficult.;False;False;;;;1610670785;;False;{};gjahoyo;False;t3_kxayvb;False;True;t1_gja00vh;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjahoyo/;1610759489;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeke-Freek;;HB;[];;ZekeFreek;dark;text;t2_10s78i;False;False;[];;Gotta watch this show with only one headphone cuff on for the most authentic experience.;False;False;;;;1610670890;;False;{};gjahw6m;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjahw6m/;1610759627;10;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;Nah that's just normal Fukui-ben. Arata from Chihayafuru and all characters from Fukui speaks like that.;False;False;;;;1610670917;;False;{};gjahxzs;False;t3_kxaa94;False;False;t1_gjabh14;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjahxzs/;1610759659;6;True;False;anime;t5_2qh22;;0;[]; -[];;;four-lokos;;;[];;;;text;t2_2lmsysym;False;False;[];;"okay thank you! maybe i’ll wait a little longer to see if I want to watch it or not! - -hahaha I dont think so! i’m at in college and working so i’m spread thin. but I can’t help it, there are so many great animes this season!";False;False;;;;1610670984;;False;{};gjai2nj;False;t3_kxaa94;False;True;t1_gja3gdf;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjai2nj/;1610759742;3;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;Not really? It's just baked into some of the character designs there.;False;False;;;;1610671004;;False;{};gjai413;False;t3_kxaa94;False;True;t1_gjaew9l;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjai413/;1610759768;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jk3sd;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Jk3sd?;light;text;t2_6e7jktbe;False;False;[];;“Please don’t give me hope”;False;False;;;;1610671037;;False;{};gjai6am;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjai6am/;1610759807;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Eckish;;;[];;;;text;t2_6b8ao;False;False;[];;He wrote that when he was pretty much cornered. I think he knew that he was going to die as bait.;False;False;;;;1610671061;;False;{};gjai7zk;False;t3_kxayvb;False;True;t1_gja3jni;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjai7zk/;1610759837;3;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;That's why I said almost. I never got it from any of the other characters or from Arata though, obviously I can hear the accent but with her, especially the scene on the phone it just at moments sounded more Chinese than Japanese to my untrained ears.;False;True;;comment score below threshold;;1610671234;;False;{};gjaijyg;False;t3_kxaa94;False;True;t1_gjahxzs;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjaijyg/;1610760044;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;Agreeable-Highlight;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/STARFLIGHT1111/;light;text;t2_2xajbknh;False;False;[];;Going through my list I realized I’m just bordering on 20 anime this season so yeah, I know what mean!;False;False;;;;1610671382;;False;{};gjaiucr;False;t3_kxaa94;False;True;t1_gjai2nj;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjaiucr/;1610760226;1;True;False;anime;t5_2qh22;;0;[]; -[];;;grimm_starr;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;StarLace;dark;text;t2_12h8nf;False;False;[];;Then where did the high tech pen come from? The demons said their world really hadn't changed much in 1000 years. And I don't remember any evidence of technology like that while they were at the orphanage.;False;False;;;;1610671543;;False;{};gjaj5wy;False;t3_kxayvb;False;False;t1_gj9w7cj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjaj5wy/;1610760429;1;True;False;anime;t5_2qh22;;0;[]; -[];;;the22sinatra;;;[];;;;text;t2_1plc2ja9;False;False;[];;Where did you get that she’s a princess?;False;False;;;;1610671721;;False;{};gjajijk;False;t3_kxayvb;False;True;t1_gj9wiod;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjajijk/;1610760654;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kkfvjk;;;[];;;;text;t2_jmsh8;False;False;[];;I'm surprised they put a big emotional scene after the credits. When the ending song started, the episode felt unfinished and I dont see why they didn't include the last scene with the rest of the episode.;False;False;;;;1610671723;;False;{};gjajiop;False;t3_kxaa94;False;False;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjajiop/;1610760658;7;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;"[Everything was going so well](https://i.imgur.com/8kHOwLl.png) until Yuni started having his performance anxiety attacks. I genuinely felt bad for the kid [the entire time he was struggling.](https://i.imgur.com/EGDHWCJ.png) I wasn't in any sports teams back in highschool but when we would compete during sports festivals I myself have experienced something similar while playing badminton and volleyball. - -What makes that even worse for Yuni is that [Chika is a terrible at supporting his teammate.](https://i.imgur.com/PlMl4u4.png) I understand he can only help them when it comes to the game but clicking his tongue and whispering ""useless"" which Yuni absolutely heard is not gonna help. Although going back to that scene, I'm not even sure if Chika even actually said that or if that's just Yuni hearing things. - -Anyway at the same time Yuni isn't at all blameless. Instead of Yuni trying to pick himself back up and concentrate on the game he instead [started calling his other teammates](https://i.imgur.com/w0W9E8b.png) to trash talk Chika behind his back when he was nothing but nice to them during training and then try to run away from the game. What Yuni did was so wrong that [even Yuni was silent during that](https://i.imgur.com/56yLbOr.png)! And I was expecting him to jump on the Chika hate wagon! - -I guess the volleyball team is disbanded now and we're finally going to see the boys from the OP? I guess we'll see next week.";False;False;;;;1610671792;;False;{};gjajnid;False;t3_kxaa94;False;False;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjajnid/;1610760739;8;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheRantMan321;light;text;t2_efp1aj;False;False;[];;I assumed she was a princess because she looks like one.;False;False;;;;1610671957;;False;{};gjajz0s;False;t3_kxayvb;False;False;t1_gjajijk;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjajz0s/;1610760941;4;True;False;anime;t5_2qh22;;0;[]; -[];;;adragondil;;;[];;;;text;t2_93ytd;False;False;[];;"So. - -I loved the first episode. It showed that this wouldn't take it slow with the plot, it wouldn't shy away from drama, and it would still take its sports seriously. This episode continues that, but almost pushed it too far. Some would probably say it does push it too far. The pace is lightning fast, the scenes are single-purpose and not very deep, and the drama is thick as molasses with little setup. But I have hope. - -These two episodes have set up the two main characters, set up their dynamic, and now we're gonna see how that develops from here. The rest of the team has zero setup, because they aren't relevant for the rest of the story. The coach has minimal setup, he's there to play a role. This waa basically funneling everything into setting up the leads' dynamic in a short time, with high impact. I'd have preferred if it got an extra episode, develop them a bit more as characters, but I can kind of see where they wanna go with this. - -Episode 3 is make or break for me. It really has to set a tone, introduce the rest of the cast, set a stage, and make us care about the leads. Because even though I understand their dynamic, neither character engages me. That's a lot to ask, but given how much episode 2 sacrificed to bring the plot forward, it's a fair expectation to have. I'll keep watching to the end anyway, for the volleyball, but I don't think I'll be able to recommend this show to anyone if episode 3 *also* has these issues. - -I must say though, the volleyball we did see in this episode makes me optimistic about future matches. Whoever is plotting out the matches seems to know their volleyball. I have a feeling that the eventual matches we'll get will be fast, but entertaining. The focus on how players feel during a match should give the matches some depth too, even if it really didn't today.";False;False;;;;1610671977;;False;{};gjak0gs;False;t3_kxaa94;False;True;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjak0gs/;1610760965;2;True;False;anime;t5_2qh22;;0;[]; -[];;;danny18wrx;;;[];;;;text;t2_74zifzz5;False;False;[];;I wouldn’t mind it I’m out of shows I want to watch anyways (in reality I have several anime’s in my watchlist yet idk why I can’t bring myself to watch them);False;False;;;;1610672539;;False;{};gjal3w5;True;t3_kxbdlq;False;True;t1_gja1m2y;/r/anime/comments/kxbdlq/any_baseball_anime_recommendations/gjal3w5/;1610761673;1;True;False;anime;t5_2qh22;;0;[]; -[];;;danny18wrx;;;[];;;;text;t2_74zifzz5;False;False;[];;Thanks! I appreciate the recommendation!;False;False;;;;1610672591;;False;{};gjal7ef;True;t3_kxbdlq;False;True;t1_gj9pg5h;/r/anime/comments/kxbdlq/any_baseball_anime_recommendations/gjal7ef/;1610761735;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Darkjetson01;;;[];;;;text;t2_cia6mw7;False;False;[];;Thank you, Armin;False;False;;;;1610672838;;False;{};gjalody;False;t3_kxayvb;False;False;t1_gj9mxlh;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjalody/;1610762071;31;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiro_Kai;;;[];;;;text;t2_bevm2wi;False;False;[];;Usually with a CR and funimation account you can watch a lot of them already. Also they usually post the places where the shows are streaming here on the [reddit threads](https://www.reddit.com/r/anime/wiki/legal_streams). Other than that if you really need them all together in the same place, you can always try the high seas.;False;False;;;;1610672926;;False;{};gjaluep;False;t3_kxayvb;False;True;t1_gjafnmp;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjaluep/;1610762179;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cojoB_;;;[];;;;text;t2_27b35u6d;False;False;[];;I think it's a little ironic that emma cares so much about killing a bird but demon people feasting on them, nah;False;False;;;;1610672953;;False;{};gjalwa0;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjalwa0/;1610762211;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;the22sinatra;;;[];;;;text;t2_1plc2ja9;False;False;[];;"Wanted to point out Sonju’s reaction to the kids calling them demons, it was something like “Demon.. I haven’t been called that in a while”. (I need to go back and watch it again to double check) this potentially means 2 things: - -They might not actually be demons, maybe aliens or something? Or they just simply don’t refer to themselves as demons which is entirely possible. Either way it’s interesting he didn’t correct the kids when they called him a demon and then continued to refer to other demons as such. - -It also likely means he has met at least one human in the past. I’m hoping we’ll get a flashback or something to expand on this.";False;False;;;;1610673395;;False;{};gjamqb8;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjamqb8/;1610762761;1;True;False;anime;t5_2qh22;;0;[]; -[];;;taotakeo;;;[];;;;text;t2_1hyt4ppt;False;False;[];;whose kenny;False;False;;;;1610673427;;False;{};gjamsju;False;t3_kxayvb;False;False;t1_gjadr6y;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjamsju/;1610762799;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Electric_Bagpipes;;;[];;;;text;t2_8gvtqvq4;False;False;[];;Assuming that happens the stopping point for next episode would probably be setting out for GP. Or at least the ah.. *Toy room.*;False;False;;;;1610673465;;False;{};gjamv3t;False;t3_kxayvb;False;True;t1_gja72e3;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjamv3t/;1610762847;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wuskers;;;[];;;;text;t2_pase4;False;False;[];;"I just assumed he left that for the other children if they came back they would see it and it was Ray's way of saying ""don't worry about me, keep moving"" and it just backfired because the demons found it now";False;False;;;;1610673515;;False;{};gjamyhi;False;t3_kxayvb;False;False;t1_gja3jni;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjamyhi/;1610762909;32;True;False;anime;t5_2qh22;;0;[]; -[];;;Nazenn;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Nazenn;light;text;t2_n4ozd;False;False;[];;"> later Don/Gilda as well as a few cuts to Phil/Isabella/Krone - -And a lot of those scenes were still painted as one characters perspective of another, usually the core five showing their view point of the others. Even in scenes where they were together there was usually a clear characters viewpoint for the audience, specifically thinking of the initial tag training where it was often Emma or Norman observing the younger kids hiding spots or reviewing them after the games, or more prominent examples like all the shots around Phil etc. It helped to create that sense of unease of everyone always being watched, as well as more easily slip into each characters individual perspective of what was going on. - -Now that we're addressing the situation through the group of children, rather than individual agents, we've lost a lot of that very prominent direction which I think is why on initial view the first episode in particular can feel a little bland until you realize what they tried to do with the sense of scale, as you mentioned in your blog. We've exchanged very intimate perspectives for ones looking at the group as a whole and the world around them. The final shot today of Emma goes back to that initial style, giving us Ray's view of Emma's pain and the way he sees her which reveals her lie specifically after hiding the way the younger children were seeing her before she turned around. Similarly, we were denied seeing her own view of the flower the same way she tried to bury her personal pain and memories about the flower. - -As we go I think it'll be interesting to see how these two approaches are mixed up as we get more of the world and the characters and as each child gets caught up in what's going on.";False;False;;;;1610673577;;False;{};gjan2rp;False;t3_kxayvb;False;True;t1_gjagb9b;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjan2rp/;1610762995;1;True;False;anime;t5_2qh22;;0;[]; -[];;;the22sinatra;;;[];;;;text;t2_1plc2ja9;False;False;[];;I like that haha, I’m gonna call her that now;False;False;;;;1610673676;;False;{};gjan9br;False;t3_kxayvb;False;True;t1_gjajz0s;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjan9br/;1610763113;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Quorwyf;;;[];;;;text;t2_blx2l;False;False;[];;also Dorohedoro;False;False;;;;1610673982;;False;{};gjanu7v;False;t3_kxbdlq;False;True;t1_gj9pnsq;/r/anime/comments/kxbdlq/any_baseball_anime_recommendations/gjanu7v/;1610763482;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mindieexc;;;[];;;;text;t2_9i4tjsz9;False;False;[];;"I don't think he left it for Emma because he wrote ""pursuers"" after the coordinates which could mean the demons that are going after Emma and the others.";False;False;;;;1610674526;;False;{};gjaovz4;False;t3_kxayvb;False;False;t1_gja8q4g;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjaovz4/;1610764189;5;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;Yeah, but that's the demon's technology right?;False;False;;;;1610674534;;False;{};gjaowi7;False;t3_kxayvb;False;True;t1_gjafhav;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjaowi7/;1610764198;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CenturionRower;;;[];;;;text;t2_aq6uh;False;False;[];;"If the demons tried to pin their inability to control the farms on the mass human population that would be absurd. The humans would probably laugh and tell them to f off. - -Definitely an internal issue, but I agree the kids have a HARD decision to make, especially since theres a high likelihood that they will not have any help. - -This is a really interesting world since it features two Apex predators where one eats the other.";False;False;;;;1610674595;;False;{};gjap0tt;False;t3_kxayvb;False;False;t1_gja3871;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjap0tt/;1610764283;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Lost-NotFound;;;[];;;;text;t2_57xayenq;False;False;[];;probably for plot stuff, but youd figure ray would be the first one to figure out they going to need to learn how to hunt live game. im glad it was emma though since it hits harder.;False;False;;;;1610674736;;False;{};gjapaha;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjapaha/;1610764466;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wuskers;;;[];;;;text;t2_pase4;False;False;[];;"Yay Kosher demons! I'm really curious about what the human world is like, it seems like there's extremely minimal interaction between both worlds so it could be really fucked up and dystopian, or it could be great, honestly do we even know if human civilization is even alive? with so little contact is it possible something happened on the human side that resulted in the total collapse of humanity? would be pretty tragic if they finally get to the ""human world"" and it's a barren wasteland. It's also pretty bizarre but the kids have probably never seen an old person or even an adult man, I was just thinking about if they finally are free/safe and they can live their lives in peace what that would be like, they have no frame of reference at least yet of what being an adult is like aside from mother and even less of an impression of romance and love and relationships. Also I've been kinda skeptical about the Minerva thing like could you reasonably expect kids under the age of 12 to pick up on these clues, but it did occur to me that they specifically like intelligent humans, it seems the mothers are chosen from the girls who are smart enough to figure it out and try to escape, and if they have children presumably there are fathers and maybe they want intelligent fathers too, could they have taken Norman to be a father? Towards the end he seemed compliant yet still intelligent, sounds like the perfect traits they'd want to breed selectively. The question of fathers is tricky though because they could uh harvest sperm pretty damn early for boys, not to mention a single male could fertilize plenty of females so they wouldn't need tons of boys, but they may want to ensure genetic diversity, but even then they could have a variety of fathers and just harvest a bunch of sperm and freeze it and eat them after, unlike the mothers who care for the children they clearly don't have any obvious use for fathers aside from genetic material. I do wonder though if selective breeding for higher intelligence has been happening and has resulted in more clever than normal children and I wonder if Minerva even knows this and his clues are in hopes that eventually with increasingly smart generations of kids, someone would figure everything out and escape.";False;False;;;;1610674907;;False;{};gjapm91;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjapm91/;1610764668;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Eckish;;;[];;;;text;t2_6b8ao;False;False;[];;Yes. I assume all of the tech, including the pen is demon tech. I think I read your post incorrectly, though. Since we now know that there was a 1000 year split and the date is 'close' to a modern date, I don't really think a tech progression discussion matters. I'm inclined to think that everything should be considered alternate timeline stuff and anything goes.;False;False;;;;1610675051;;False;{};gjapw5f;False;t3_kxayvb;False;False;t1_gjaowi7;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjapw5f/;1610764850;5;True;False;anime;t5_2qh22;;0;[]; -[];;;testthrowawayzz;;;[];;;;text;t2_5vm4oot4;False;False;[];;The other characters on the key visual hasn’t showed up yet. Since they’re not in high school yet I can see why they skipped covering other characters for now.;False;False;;;;1610675640;;False;{};gjar00m;False;t3_kxaa94;False;False;t1_gjabals;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjar00m/;1610765545;4;True;False;anime;t5_2qh22;;0;[]; -[];;;CatSezWoof;;;[];;;;text;t2_ddlau;False;False;[];;Every time I hear Ray talk all I can think about is that we’re never gonna hear Killua again or have new hunter x hunter episodes;False;False;;;;1610675787;;False;{};gjara0l;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjara0l/;1610765722;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DrewbieWanKenobie;;;[];;;;text;t2_8lei7;False;False;[];;"how about you don't say anything, including that, fucker - -Edit: Removed the quote with spoilers";False;False;;;;1610675836;;1610680169.0;{};gjardd1;False;t3_kxayvb;False;False;t1_gjac8mm;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjardd1/;1610765781;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Purest_Prodigy;;MAL;[];;"http://myanimelist.net/animelist/Purest_Prodigy?&order=4";dark;text;t2_bt3t9;False;False;[];;I mean I wouldn't be surprised. It was surprisingly good mystery meat that the kids never had before and it seemed like Sonjo *really* emphasized that they ate *everything* except human meat.;False;False;;;;1610675994;;False;{};gjaro3z;False;t3_kxayvb;False;False;t1_gj96o5d;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjaro3z/;1610765988;10;True;False;anime;t5_2qh22;;0;[]; -[];;;CatSezWoof;;;[];;;;text;t2_ddlau;False;False;[];;I really hate the flower thing;False;False;;;;1610676050;;False;{};gjarrzy;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjarrzy/;1610766064;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nazenn;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Nazenn;light;text;t2_n4ozd;False;False;[];;I still have some strong memories of it myself. The visuals of Conny and the flower and also the demons from the first episode of s1 are surprisingly embedded in my head despite having not rewatched it. Speaking of that, I like the decision to just stick with Emma and her pain in that scene without resorting to flashbacks of it;False;False;;;;1610676516;;False;{};gjasnwh;False;t3_kxayvb;False;True;t1_gjaao4p;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjasnwh/;1610766620;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nazenn;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Nazenn;light;text;t2_n4ozd;False;False;[];;"[](#azusalaugh) - -Do we count Ray's hair as effectively only having one eye as well?";False;False;;;;1610676565;;False;{};gjasr8o;False;t3_kxayvb;False;False;t1_gjahw6m;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjasr8o/;1610766677;4;True;False;anime;t5_2qh22;;0;[]; -[];;;beancodybean;;;[];;;;text;t2_2ang5yeb;False;False;[];;makes me think that cows and other animals could also be working animals if trained the same way dogs and horses are. as a society we just chose that dogs and horses will be domestic animals and that cows and pigs won’t;False;False;;;;1610676595;;False;{};gjastcw;False;t3_kxayvb;False;True;t1_gjaf1a3;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjastcw/;1610766712;2;True;False;anime;t5_2qh22;;0;[]; -[];;;saucyboi65;;;[];;;;text;t2_41t0fy7q;False;False;[];;the pacing was a lot better then the last episode, my guess is the season would end right as Emma reaches goldy pond;False;False;;;;1610676873;;False;{};gjatckr;False;t3_kxayvb;False;True;t1_gj92dyj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjatckr/;1610767039;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shwin12345;;;[];;;;text;t2_wm9bgaz;False;False;[];;Check out my first reaction/impressions of the latest episode on my new channel: [https://youtu.be/rlA2afABr1E](https://youtu.be/rlA2afABr1E);False;False;;;;1610676980;;False;{};gjatjrx;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjatjrx/;1610767172;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;I think these are fair points, but I feel like the characters aren't supposed to be super likable maybe even unlikable this early. They're supposed to develop into likable characters. All the dirty griminess of their characters is what is shown and needs to be cleaned off which will happen in high school as this show has high school in the name. So the two episodes we got were more foundation and a starting point for their growth. You don't want someone who's a bully or anything to be likable on the get go, but show them repenting and growing.;False;False;;;;1610677165;;False;{};gjatw41;False;t3_kxaa94;False;True;t1_gjabko0;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjatw41/;1610767389;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CyberMyba;;;[];;;;text;t2_4fzdeiia;False;False;[];;Hooded-Archer Emma is so damn cool;False;False;;;;1610677202;;False;{};gjatymc;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjatymc/;1610767430;1;True;False;anime;t5_2qh22;;0;[]; -[];;;How-Cool;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Blooooo;light;text;t2_3fmx3jnc;False;True;[];;I know it’s just episode 2, but this is promised neverland, I want my emotions to be all over the place, just feels like a slow start so far.;False;False;;;;1610677398;;False;{};gjaubnz;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjaubnz/;1610767665;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;All those other characters aren't in the opening and they are in middle school, so I doubt most if any go to the volleyball highschool the main 2 go to. Kageyama's middle school teammates aren't really remembered by name same with Hinata mostly cause they don't show up or do anything in highschool besides maybe Kageyama's being on Oikawa's team. This is just a prologue to the highschool stuff which will have characters focused on if the opening has anything to say about that;False;False;;;;1610677440;;False;{};gjaueig;False;t3_kxaa94;False;False;t1_gjabals;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjaueig/;1610767718;9;True;False;anime;t5_2qh22;;0;[]; -[];;;KamazoQueen;;;[];;;;text;t2_45yt1s34;False;False;[];;Drama, not slice of life at all.;False;False;;;;1610677503;;False;{};gjauite;False;t3_kxaa94;False;True;t1_gj9czki;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjauite/;1610767797;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KamazoQueen;;;[];;;;text;t2_45yt1s34;False;False;[];;It's nothing like Haikyuu, don't go into it expecting it to be. This is far more drama focused and the volleyball is just a setting.;False;False;;;;1610677538;;False;{};gjaul7r;False;t3_kxaa94;False;True;t1_gj97ofk;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjaul7r/;1610767843;2;True;False;anime;t5_2qh22;;0;[]; -[];;;derpface360;;;[];;;;text;t2_ejsvy;False;False;[];;"> It's not entirely like the deamons said. Won't say the details. - -Just saying that, you're already spoiling...";False;False;;;;1610677784;;False;{};gjav1t5;False;t3_kxayvb;False;False;t1_gjac8mm;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjav1t5/;1610768134;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;Tbf this is the prologue to the actual high school team. Haikyuu didn't have a ton of middle school episodes. I think it was just one and done;False;False;;;;1610677891;;False;{};gjav929;False;t3_kxaa94;False;False;t1_gj9zcm7;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjav929/;1610768264;7;True;False;anime;t5_2qh22;;0;[]; -[];;;julivino29;;;[];;;;text;t2_5rjjtagb;False;False;[];;"I think I am one of the minority who is LOVING this show. The characters are being very interesting and extremely real with flaws and everything. When the MC had that moment in the second match and then he didn't want to play, it felt super real and accurate. -I am very curious to see what happens between the characters and I love the fact that they seem to have a little tension, like they are not just friends, so I really want to see how that turns out. -People should stop expecting an only sports anime like haikyuu was, and start appreciating this new anime with new drama which for me is kind of unique. -Though it is true that it is going a little too fast and it would have been nice to see more insight (like the other team players talking shit about Haijima), but I am still enjoying it very much. -Great OP and ending too.";False;False;;;;1610678065;;False;{};gjavko0;False;t3_kxaa94;False;False;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjavko0/;1610768461;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Anon199760;;;[];;;;text;t2_49baaa9v;False;False;[];;It always happens in sports dramas and never fails to piss me off. I know it's for development and all but it's just painful to watch.;False;False;;;;1610678086;;False;{};gjavlzd;False;t3_kxaa94;False;False;t1_gja4tz5;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjavlzd/;1610768483;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610678281;;False;{};gjavyxi;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjavyxi/;1610768699;0;True;False;anime;t5_2qh22;;0;[]; -[];;;whalehome;;;[];;;;text;t2_albkj;False;False;[];;Chill bro.;False;False;;;;1610679162;;False;{};gjaxluk;False;t3_kxayvb;False;True;t1_gjardd1;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjaxluk/;1610769692;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;gmatuella;;;[];;;;text;t2_175dal;False;False;[];;"Just an off-topic, but imagine if they arrive at the “human part” of the world and they are doing the same with demon kids, meaning that the demons ancestors also left some demons with the humans? (I thought ablut this possibility when I saw Mujika and Sonju human-like appearances and behaviors). - -I think this anime has the potential to give us some nasty plot twists, and that’s why I am so anxious to see what’s coming next!";False;False;;;;1610679717;;False;{};gjaym6n;False;t3_kxayvb;False;True;t1_gj9hfaj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjaym6n/;1610770305;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hundvd7;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Hundvd7/;light;text;t2_j2uil;False;False;[];;"Reminds me of No Game No Life: - -""We fought and survived because we are weak! In every time, in every world, the strong polish their fangs while the weak polish their wisdom. Why are we in such danger now? Because the ten pledges have broken the fangs of the strong, and they have learned to polish their wisdom..."" - -God I love that scene so much";False;False;;;;1610680189;;False;{};gjazha3;False;t3_kxayvb;False;False;t1_gj9k6zc;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjazha3/;1610770833;15;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;Seems like he doesn't like farm raised cattle and wants to hunt like his ancestors pre promise did. So even if they are free I guess they are tainted idk;False;False;;;;1610680199;;False;{};gjazhwe;False;t3_kxayvb;False;True;t1_gj97bh4;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjazhwe/;1610770842;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610680334;;False;{};gjazqpc;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjazqpc/;1610770994;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;Assuming they might be referencing a South Park character called Kenny who gets himself killed every episode, but comes back in the next without anyone noticing. Idk why that would be the comparison, but it's the only Kenny I know associated with dying;False;False;;;;1610680364;;False;{};gjazsnl;False;t3_kxayvb;False;False;t1_gjamsju;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjazsnl/;1610771026;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Hundvd7;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Hundvd7/;light;text;t2_j2uil;False;False;[];;That was my first thought, too, but that seems uncharacteristically stupid for Ray.;False;False;;;;1610680538;;False;{};gjb0448;False;t3_kxayvb;False;False;t1_gjamyhi;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjb0448/;1610771210;25;True;False;anime;t5_2qh22;;0;[]; -[];;;AStartingPoint;;;[];;;;text;t2_74e7pgty;False;False;[];;Does Emma have a sister? Or was she referring to the children of the grace field house?;False;False;;;;1610680659;;False;{};gjb0c71;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjb0c71/;1610771343;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cire101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cire101;light;text;t2_oryv2;False;False;[];;I agree. It's a shame too because it's really good on that front. Not so much on the sports front.;False;False;;;;1610681076;;False;{};gjb1476;False;t3_kxaa94;False;True;t1_gj9j3ov;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjb1476/;1610771822;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PM_ME_YOUR_RIDGES;;;[];;;;text;t2_130p6z;False;False;[];;So great.;False;False;;;;1610681142;;False;{};gjb18jb;False;t3_kxayvb;False;True;t1_gj9f8se;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjb18jb/;1610771897;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cire101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cire101;light;text;t2_oryv2;False;False;[];;Also considering it's only 2 episodes in right now. Could improve on how it's tackling these issues.;False;False;;;;1610681154;;False;{};gjb19ec;False;t3_kxaa94;False;True;t1_gjabqj8;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjb19ec/;1610771913;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PM_ME_YOUR_RIDGES;;;[];;;;text;t2_130p6z;False;False;[];;Hell nah shes fwooshing arrows right through their demon brains as revenge for sure.;False;False;;;;1610681230;;False;{};gjb1ees;False;t3_kxayvb;False;False;t1_gj9ph8c;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjb1ees/;1610771996;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610681586;;False;{};gjb225r;False;t3_kxayvb;False;True;t1_gja0mvv;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjb225r/;1610772397;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cognitive_Dissonant;;;[];;;;text;t2_50imw;False;False;[];;"I found this super jarring as well. Especially with how they highlight the parallel between what happened to Emma's siblings and what's happening to the bird, even with the same flower ritual. And Emma (and the proverbial writer) doesn't stop to consider whether this is even necessary OR why killing the animals might be different than what happened to the children in important ways. - -And I think either of those angles could work too, here it just feels like Emma uncritically accepting the necessity of an act that, superficially at least, is presented as essentially comparable to killing children for food.";False;False;;;;1610681989;;False;{};gjb2sir;False;t3_kxayvb;False;False;t1_gj9pekx;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjb2sir/;1610772845;25;True;False;anime;t5_2qh22;;0;[]; -[];;;JimPadawan;;;[];;;;text;t2_kf1aboy;False;False;[];;The darl humour in this series is crazy good. Love the protagonists emma, ray and norman bunch of good character development;False;False;;;;1610682190;;False;{};gjb35ko;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjb35ko/;1610773057;1;True;False;anime;t5_2qh22;;0;[]; -[];;;boyrune4;;;[];;;;text;t2_5rvph;False;False;[];;AoT, jujutsu, neverland, dr stone. Everything else is not the same quality. They're cringey or corny;False;False;;;;1610682332;;False;{};gjb3exx;False;t3_kxayvb;False;True;t1_gj9wpla;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjb3exx/;1610773203;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Reemys;;;[];;;;text;t2_o0hwpg4;False;False;[];;"Nothing abrupt about it if you consider the implications. Emma lost her innocence and became closer to what demons are - hunting living beings for food. This narrative is well highlighted in the opening, with demons not presented as something absolutely evil or sinister, but just like humans. They might look differently, but they breed humans like humans breed animals to consume. And now Emma is also falling into the religious practice for reasons known only to her. Does it give her strength to go through all these horrors if she believes it matters to something higher? Or she just started mimicking it out of respect for the faithful demons? - -There is more to the story than just a survival. Demon situation mirrors human world too much. Just like humans they eat other living beings and in some cases they adopt a religion (which we know nothing about and it could turn to be something entirely else) that forbids them to eat animals (or humans, in the case for demons). Not sure now, but the way they are presenting it maybe there is a reflection into... well, the whole way humans sustain themselves on life. Or could be just an element for the survival story to progress.";False;False;;;;1610682512;;False;{};gjb3qpg;False;t3_kxayvb;False;False;t1_gj96o7a;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjb3qpg/;1610773399;30;True;False;anime;t5_2qh22;;0;[]; -[];;;MexicanDuck;;;[];;;;text;t2_yosai;False;False;[];;I really hate the people that expect a Haikyuu 2 fr;False;False;;;;1610682573;;False;{};gjb3ukj;False;t3_kxaa94;False;True;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjb3ukj/;1610773467;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Reemys;;;[];;;;text;t2_o0hwpg4;False;False;[];;She is not undergoing mental change, but a values one. That glint in the eyes indicates sharpness she did not posses before. She is more conscious now and has both committed a murder and a religious conversion. Emma is the first to change due to their journey.;False;False;;;;1610682647;;False;{};gjb3zcc;False;t3_kxayvb;False;False;t1_gj982ge;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjb3zcc/;1610773546;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Reemys;;;[];;;;text;t2_o0hwpg4;False;False;[];;"Which is normal because it absolutely mimics how human world outside the story works. Farms for animals and selling animals for food. Were they a bit more intelligent would people eat them? Demons do eat humans, because they can (at least from what we can surmise now). - -This seems like an enlightened reflection on the idea of consuming of life itself, although carefully put into a cover of survival-adventure.";False;False;;;;1610682779;;False;{};gjb47pl;False;t3_kxayvb;False;False;t1_gj9pekx;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjb47pl/;1610773691;17;True;False;anime;t5_2qh22;;0;[]; -[];;;raf-owens;;;[];;;;text;t2_ibkni;False;False;[];;Nah, people like that other guy who spoil stuff for no reason can fuck off, no chill needed.;False;False;;;;1610682797;;False;{};gjb48vn;False;t3_kxayvb;False;False;t1_gjaxluk;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjb48vn/;1610773709;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Reemys;;;[];;;;text;t2_o0hwpg4;False;False;[];;We have no way of knowing all of that yet. Whether demons need brains or if the religious bunch is completely honest as to what their religion entails.;False;False;;;;1610682822;;False;{};gjb4aiv;False;t3_kxayvb;False;False;t1_gjabl4f;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjb4aiv/;1610773736;34;True;False;anime;t5_2qh22;;0;[]; -[];;;potential-log310;;;[];;;;text;t2_4me04s3c;False;False;[];;lol Haikyuu spent an entire season on one match;False;False;;;;1610682987;;False;{};gjb4l11;False;t3_kxaa94;False;False;t1_gj9zcm7;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjb4l11/;1610773907;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Aura1661;;;[];;;;text;t2_15n2vi;False;False;[];;"They answered both of those questions this episode. - -The demons farm the children to eat, humans are the best food to demons. - -The humans abandoned the other humans on the demon side and basically gave the as a gift to the demons as good faith for keeping the promise.";False;False;;;;1610683016;;False;{};gjb4mxy;False;t3_kxayvb;False;False;t1_gja8a0z;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjb4mxy/;1610773938;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Reemys;;;[];;;;text;t2_o0hwpg4;False;False;[];;"That is a good point and one to debate. From the children's standpoint, they are unjustly sacrificed for food (hypocrisy much?) and would rather rebel and escape. But for the humans from the other side they are essential to keep the peace going (supposedly), and maybe the demons themselves do not wish war, so they would rather keep breeding humans. - -Will the humans outside accept them back? They would be a direct violation of a, well, international treaty. Everything is quite complicated and conflicting with each other, as if the story is based on the idea of moral conflict itself.";False;False;;;;1610683027;;False;{};gjb4nm6;False;t3_kxayvb;False;True;t1_gj9958s;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjb4nm6/;1610773948;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Reemys;;;[];;;;text;t2_o0hwpg4;False;False;[];;Or maybe they actually respect that pact they have made 1000 years ago.;False;False;;;;1610683064;;False;{};gjb4pxx;False;t3_kxayvb;False;True;t1_gja93s5;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjb4pxx/;1610773987;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sKyBlazer08;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sKyBlazer08;light;text;t2_17ibsr;False;False;[];;Beautiful and good episode, wow they're going through the forest arc fast. Though it's not a bad idea, I think they're going a little bit too fast. Or I just forgot how the manga went.;False;False;;;;1610683134;;False;{};gjb4uct;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjb4uct/;1610774059;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SinArchbish0p;;;[];;;;text;t2_6d983z49;False;False;[];;damn i was on edge during the whole last part, i thought emma was gonna get jumped while out in the forest;False;False;;;;1610683151;;False;{};gjb4vh0;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjb4vh0/;1610774078;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Reemys;;;[];;;;text;t2_o0hwpg4;False;False;[];;The worst part right now is that these books were kept there and no one thrashed them. It makes no logical sense for the farm to allow children to educated themselves on the world way beyond their own. I hope there is a solid explanation for why they were there/ were not destroyed as a part of censorship (just remembered they wanted their brains to mature, so maybe it has to do with the development of own mind through books).;False;False;;;;1610683204;;False;{};gjb4yuh;False;t3_kxayvb;False;True;t1_gj9jjua;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjb4yuh/;1610774137;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Filldos;;;[];;;;text;t2_q0qbx;False;False;[];;what's with the sound effects? sounds like they're beating vegetables instead of recording actual balls being hit.;False;False;;;;1610683290;;False;{};gjb54c7;False;t3_kxaa94;False;True;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjb54c7/;1610774230;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Darkelementzz;;;[];;;;text;t2_11yf1u;False;False;[];;[WORLDBUILDING!!!](https://www.youtube.com/watch?v=SI5bkZcgvP0);False;False;;;;1610683775;;False;{};gjb5ynz;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjb5ynz/;1610774713;1;True;False;anime;t5_2qh22;;0;[]; -[];;;raf-owens;;;[];;;;text;t2_ibkni;False;False;[];;She's 12 but she's also a super genius, plus it's an anime.;False;False;;;;1610683825;;False;{};gjb61rf;False;t3_kxayvb;False;True;t1_gj9i3c6;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjb61rf/;1610774762;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Satan_su;;;[];;;;text;t2_51jxzsud;False;False;[];;So.....religious vegan demons;False;False;;;;1610683929;;False;{};gjb6839;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjb6839/;1610774865;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xxsenseikillerxx;;;[];;;;text;t2_5808jnxv;False;False;[];;All is good for me but hoping the other team members get their time to shine too;False;False;;;;1610683929;;False;{};gjb684a;False;t3_kxaa94;False;True;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjb684a/;1610774865;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dakkumauji;;;[];;;;text;t2_11e6b3;False;False;[];;"On one hand, its definitely feeling rushed. There's a lot of stuff they could have expanded on or let us digest what happened first. On the other hand, I remember that this is still the prologue so I'm hoping they slow down once they reach high school. - -But besides that, I do feel that this has potential. The ending scene feels like it would set a good tone moving forward of Yuni realizing what he did and how he let rumors get the better of him despite him saying otherwise. While I rather doubt Haijima will ever stop being so cold, there's room for growth. - -So I'm optimistic in this show.";False;False;;;;1610684342;;False;{};gjb6xj1;False;t3_kxaa94;False;False;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjb6xj1/;1610775267;4;False;False;anime;t5_2qh22;;0;[]; -[];;;FlaminScribblenaut;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/flaming_scr;light;text;t2_hx6xr;False;False;[];;"I am just... completely blown away by how unfathomably perfect this is so far, as a show and as a sequel. Just two episodes in and I’m amazed by this season in a way I haven’t felt in a good while. - -Every element of presentation is on-point. It all feels new and fresh and yet still like a proper continuation from Season 1. It’s well beyond what I would have expected this sequel to bring to the table but it’s all just so perfect. It’s immersive, and gripping, and fascinating, and gorgeous, and emotional, and bursting with interesting ideas and concepts that take complete and full advantage of this world and situation, just... god, much as I loved the first season I didn’t even see it coming. - -Emma’s complete determination to save everyone, do everything, and get the best possible ending at all costs, her complete unbound optimism, is something so worthy of respect. That attitude, that attitude of “as long as there is a possibility the future can be made brighter, I will make that future as bright as possible with my own two damn hands” is a running theme in much of my favorite fiction, particularly anime, and to see Emma go about it in the face of a world that is stacked against her and her comrades in basically every way is so heartening. And yet, we also see the darker side of it; her need to overcome the weakness and fear and moral self-disgust she feels at killing another living thing, because she knows there will come times when she will need to do to ensure the survival of her in-all-but-blood family, is such an unbelievably perfect arc for her character it’s downright inspired. - -The bird-hunting scene left me absolutely stunned to an extent I can’t remember the last time I felt from a single scene. Every line of dialogue and new piece of information was a new emotional gut punch that recontextualized everything. I felt all the fear, regret, sadness, and anguish Emma felt right alongside her. It was complete fucking genius from top to bottom. - -Between the three airing sequels I am currently keeping up with, this is currently the MVP. Re:Zero’s off to a decent restart and Yuru Camp is as reliably fun and nice as always, but this... I am watching something *truly* special. This is well on the road to warranting Perfect Sequel status. *Please* be this good all the way through, I beg of you.";False;False;;;;1610685166;;False;{};gjb8c23;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjb8c23/;1610776074;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"Are we talking about humans here? - -Bro people forget a world war after a few generations - -If there is profit to be made or resources to be collected humans would have definitely done that";False;False;;;;1610685308;;False;{};gjb8kjz;False;t3_kxayvb;False;False;t1_gjb4pxx;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjb8kjz/;1610776213;5;True;False;anime;t5_2qh22;;0;[]; -[];;;zero2champion;;;[];;;;text;t2_8hh0kq1;False;False;[];;thinly veiled spoilers annoy me so much. -_-;False;False;;;;1610686361;;False;{};gjbaah0;False;t3_kxayvb;False;True;t1_gj9wiod;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbaah0/;1610777233;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;Emma considers the children of the house as brothers and sisters;False;False;;;;1610686374;;False;{};gjbab7e;False;t3_kxayvb;False;True;t1_gjb0c71;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbab7e/;1610777244;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Golden_Phi;;MAL;[];;http://myanimelist.net/animelist/GoldenPhi;dark;text;t2_imrcw;False;False;[];;She was the only one who saw the Gupta used on Connie. She will probably keep it to herself.;False;False;;;;1610686516;;False;{};gjbajk4;False;t3_kxayvb;False;False;t1_gj9q3r2;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbajk4/;1610777378;37;True;False;anime;t5_2qh22;;0;[]; -[];;;jaesenrosch;;;[];;;;text;t2_2gf4oiwy;False;False;[];;"That's the thing, I only saw a clip of it once on my girlfriends phone while she was watching TikToks, then accidentally refreshed it so I couldn't find it anymore. - - -Downloaded TikTok and tried finding it there but had no luck. - - -Her death was a bit bloody and the bathtub was very bloody, then the husband found out she's dead and he just knelt there. That was the scene after the wedding and all";False;False;;;;1610686673;;False;{};gjbasdz;True;t3_kxcdqa;False;True;t1_gj9fbfl;/r/anime/comments/kxcdqa/help_looking_for_an_anime/gjbasdz/;1610777518;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheRantMan321;light;text;t2_efp1aj;False;False;[];;"This is not a spoiler dude. I'm not a manga reader; I know my ""princess"" comment sounds sus, but I literally know nothing about the manga. - -I couldn't name any chapter or event in the future. - -Pointless to try to prove my validity on the internet but believe what you will";False;False;;;;1610686696;;False;{};gjbatqf;False;t3_kxayvb;False;True;t1_gjbaah0;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbatqf/;1610777539;2;True;False;anime;t5_2qh22;;0;[]; -[];;;drasheed132;;;[];;;;text;t2_39t8myjk;False;False;[];;The anime is ID: Invaded;False;False;;;;1610686714;;False;{};gjbausf;False;t3_kxcdqa;False;True;t1_gjbasdz;/r/anime/comments/kxcdqa/help_looking_for_an_anime/gjbausf/;1610777556;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WatermelonNut;;;[];;;;text;t2_7mveevdu;False;False;[];;If I want to read the manga what chapter should I start on?;False;False;;;;1610687167;;False;{};gjbbk7q;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbbk7q/;1610777960;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rarbnif;;;[];;;;text;t2_5z1ic53;False;False;[];;Until she destory’s her enemies!;False;False;;;;1610687704;;False;{};gjbcded;False;t3_kxayvb;False;False;t1_gja9fr3;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbcded/;1610778416;25;True;False;anime;t5_2qh22;;0;[]; -[];;;verguenzanonima;;;[];;;;text;t2_1bi7ky;False;False;[];;">have to admire their optimism, but freeing all the kids would be incredibly difficult. - -I imagine the farm they were in, being called the best one, made the breeding and growing process special for 'premium organic tastier brains'. However most human farms would probably just breed humans en-masse like animals and not bother with education or anything. - -I wonder if they'll ever show that, if they one day decide to enter another human farm to save more childen. -Like, how do you even manage to convince a huge group of humans that have probably lived in cages since they were born and probably don't even have a common language to escape with you?";False;False;;;;1610687706;;False;{};gjbcdia;False;t3_kxayvb;False;True;t1_gj9pkxl;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbcdia/;1610778418;2;True;False;anime;t5_2qh22;;0;[]; -[];;;verunix;;;[];;;;text;t2_sq689;False;False;[];;I like this wholesome episode but I just know this is the lull before the storm...;False;False;;;;1610687732;;False;{};gjbceww;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbceww/;1610778440;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LethalCS;;;[];;;;text;t2_er74b;False;False;[];;"> the same way you don't bring a tank to a Safari - -Fuck I've been doing it wrong this whole time?";False;False;;;;1610687910;;False;{};gjbcog0;False;t3_kxayvb;False;False;t1_gjaa2g4;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbcog0/;1610778588;16;True;False;anime;t5_2qh22;;0;[]; -[];;;LethalCS;;;[];;;;text;t2_er74b;False;False;[];;This is true but I feel like saying Vegan Demon comes of better than.. Well, the other option lol;False;False;;;;1610688227;;False;{};gjbd5aj;False;t3_kxayvb;False;True;t1_gjagbdy;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbd5aj/;1610778860;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Agreed. Wonder Egg Priority is tackling similar themes, but in the one episode we’ve seen of it I’d say it’s actually been more cohesive than two episodes of this series have been.;False;False;;;;1610688521;;False;{};gjbdkk4;False;t3_kxaa94;False;False;t1_gjabals;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbdkk4/;1610779110;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AStartingPoint;;;[];;;;text;t2_74e7pgty;False;False;[];;Thank you.;False;False;;;;1610688663;;False;{};gjbds09;False;t3_kxayvb;False;True;t1_gjbab7e;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbds09/;1610779234;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Crimson_Shiroe;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CrimsonShiroe/;light;text;t2_ot490;False;False;[];;Sonju specifically said that they were on Earth;False;False;;;;1610688749;;False;{};gjbdwfz;False;t3_kxayvb;False;True;t1_gj9hl4p;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbdwfz/;1610779305;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Yeah, the pacing of this is crazy. Not even the pacing of the matches, I don’t mind that too much since it’s not a priority. The pacing of the character interactions was super whack this episode. Yuni went through a down and up and down all in one episode, without having the time put in for us to feel the impact. It was so rushed that I figured the phone call near the end there was some sort of apology to Kimichika, not Yuni talking shit about Kimichika;False;False;;;;1610688768;;False;{};gjbdxfm;False;t3_kxaa94;False;False;t1_gj9g52y;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbdxfm/;1610779321;5;True;False;anime;t5_2qh22;;0;[]; -[];;;jaesenrosch;;;[];;;;text;t2_2gf4oiwy;False;False;[];;">ID: Invaded - -Sadly I've checked that already but that isn't the anime :/";False;False;;;;1610688796;;False;{};gjbdytq;True;t3_kxcdqa;False;True;t1_gjbausf;/r/anime/comments/kxcdqa/help_looking_for_an_anime/gjbdytq/;1610779343;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Once again bisexuals don’t exist lol;False;False;;;;1610688835;;False;{};gjbe0tc;False;t3_kxaa94;False;True;t1_gj9kcvv;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbe0tc/;1610779381;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Crimson_Shiroe;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CrimsonShiroe/;light;text;t2_ot490;False;False;[];;Sonju and the society demons could both have similar religious beliefs, but different interpretations of those. It wouldn't be that weird if they both had a ritual of using that flower on their food.;False;False;;;;1610688914;;False;{};gjbe4vd;False;t3_kxayvb;False;True;t1_gj9blon;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbe4vd/;1610779442;1;True;False;anime;t5_2qh22;;0;[]; -[];;;drasheed132;;;[];;;;text;t2_39t8myjk;False;False;[];;The way you described it. He knelt down and it was after a wedding. It sounds exactly like a scene from Id invaded.;False;False;;;;1610689385;;False;{};gjbet3u;False;t3_kxcdqa;False;True;t1_gjbdytq;/r/anime/comments/kxcdqa/help_looking_for_an_anime/gjbet3u/;1610779815;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CenturionRower;;;[];;;;text;t2_aq6uh;False;False;[];;"Hmm, maybe they dont eat them, but possibly hunt for sport? Kind of like the most dangerous game? - -Theres definitely a TON about the world we know nothing about and I REALLY wanna know more. Super excited for the rest of the season.";False;False;;;;1610689476;;False;{};gjbexr8;False;t3_kxayvb;False;True;t1_gjaym6n;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbexr8/;1610779883;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jaesenrosch;;;[];;;;text;t2_2gf4oiwy;False;False;[];;Can you let me know what episode it is then? Because I've checked the anime and it wasn't there. Unless if it's in an OVA or something;False;False;;;;1610690290;;False;{};gjbg2ts;True;t3_kxcdqa;False;True;t1_gjbet3u;/r/anime/comments/kxcdqa/help_looking_for_an_anime/gjbg2ts/;1610780515;1;True;False;anime;t5_2qh22;;0;[]; -[];;;drasheed132;;;[];;;;text;t2_39t8myjk;False;False;[];;You watched the whole anime? Because it is in one of the later episodes: 11, 12 or 13;False;False;;;;1610690403;;False;{};gjbg8gq;False;t3_kxcdqa;False;True;t1_gjbg2ts;/r/anime/comments/kxcdqa/help_looking_for_an_anime/gjbg8gq/;1610780601;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BentPixelsLoL;;;[];;;;text;t2_28o1j60d;False;False;[];;I'm not Muslim but I have gone hunting a few times but I've only killed one thing. My stepdad skinned and gutted it in front of me and it is pretty traumatizing. I believe I was 16 at the time and I never had a weak stomach. I didn't puke or anything but I haven't gone hunting since. I always avoid the conversation. I related with Emma so much in this episode.;False;False;;;;1610690622;;False;{};gjbgjm4;False;t3_kxayvb;False;True;t1_gj97cbh;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbgjm4/;1610780770;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jaesenrosch;;;[];;;;text;t2_2gf4oiwy;False;False;[];;It's not there. There's a bathroom scene in Episode 9 but that was only a dream seeing her wife die in a bathtub, but it wasn't real. That's not the show I'm describing since they never got married in the anime, they were already married to begin with and had a daughter already. It's very similar to what I'm describing but sadly it isn't it :/;False;False;;;;1610690810;;False;{};gjbgsqh;True;t3_kxcdqa;False;False;t1_gjbg8gq;/r/anime/comments/kxcdqa/help_looking_for_an_anime/gjbgsqh/;1610780912;1;True;False;anime;t5_2qh22;;0;[]; -[];;;drasheed132;;;[];;;;text;t2_39t8myjk;False;False;[];;My bad then.;False;False;;;;1610690903;;False;{};gjbgxba;False;t3_kxcdqa;False;True;t1_gjbgsqh;/r/anime/comments/kxcdqa/help_looking_for_an_anime/gjbgxba/;1610780981;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Petricality;;;[];;;;text;t2_3ebx5s48;False;False;[];;"I agree entirely. - -It’s a shame that it will likely hurt its reputation since people will be going into it expecting another haikyuu, and ending up disappointed when it doesn’t deliver that. - -Based on the current MAL score and reviews, this is already happening...";False;False;;;;1610691371;;False;{};gjbhjw6;False;t3_kxaa94;False;False;t1_gj9k5rq;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbhjw6/;1610781328;17;True;False;anime;t5_2qh22;;0;[]; -[];;;merickmk;;;[];;;;text;t2_4ujqdaze;False;False;[];;"Her whole ""we'll come back and save all the other kids and I won't let anyone die"" speech is worrying. Realistically, the deal between humans and demons was the best way forward. If the other houses are like theirs, the kids in the farms live good lives and probably don't even know what's going on, it's not like they're being tortured and legitimately farmed. They've learned and they've escaped, but trying to ""save"" the other kids is a mistake that, should they succeed, will be paid by all of humanity. I hope she comes to realize that real life doesn't always mesh with our ideals. Compromises have to be made sometimes.";False;False;;;;1610691567;;False;{};gjbht5w;False;t3_kxayvb;False;False;t1_gja0ehy;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbht5w/;1610781466;17;True;False;anime;t5_2qh22;;0;[]; -[];;;aohige_rd;;;[];;;;text;t2_ttrmj;False;False;[];;"Well, the treaty they had a thousand years ago is still active, so that's what's probably protecting both sides. I agree with you that the ""demons"" probably have much to fear from the human world at this point, as they are likely much more technologically advanced.";False;False;;;;1610691586;;False;{};gjbhu1w;False;t3_kxayvb;False;True;t1_gj9ocbj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbhu1w/;1610781480;2;True;False;anime;t5_2qh22;;0;[];True -[];;;aohige_rd;;;[];;;;text;t2_ttrmj;False;False;[];;There may not be any one crossing, but there's certainly a logistical connection. Objects from the human world definitely is making its ways to the demon world, so there's most likely a trade going on.;False;False;;;;1610691880;;False;{};gjbi7zk;False;t3_kxayvb;False;True;t1_gj9w7cj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbi7zk/;1610781693;1;True;False;anime;t5_2qh22;;0;[];True -[];;;JimmyBoombox;;;[];;;;text;t2_919f4;False;False;[];;"> what is to keep the demons from breaking their agreement and crossing over to find humans to eat again. - -Well if humans from the 1040s could put up an equal fight then modern humans will fare much better.";False;False;;;;1610691963;;1610692169.0;{};gjbibuy;False;t3_kxayvb;False;True;t1_gj9958s;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbibuy/;1610781753;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SingularCheese;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/lonelyCheese;light;text;t2_rgv21;False;False;[];;"Their justification is that they need to live, and she cares more about the survival of her family than the survival of the bird. There are two options to be truthful to one's own conscience is to change our behavior or admit our sins and live with it. The point of this episode is that Emma recognizes the value of a life and yet chose to take it away for what she sees is a greater good. The blood flower was a great plot device to force her to look at the situation seriously and make her decision, and I feel her expression in the last scene reflects her resolve to take the weight. - -I highly recommend the anime Silver Spoon (by the author of FMA) which addresses this topic directly, and the way it doesn't look away from the problem is the largest inspiration to my own life in all fiction I've encountered.";False;False;;;;1610692022;;False;{};gjbiehr;False;t3_kxayvb;False;False;t1_gj9pekx;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbiehr/;1610781794;14;True;False;anime;t5_2qh22;;0;[]; -[];;;aohige_rd;;;[];;;;text;t2_ttrmj;False;False;[];;I'm imagining the human race from the dark ages to be like the superhuman heroes in Fate to fight the demons to stalemate lol;False;False;;;;1610692121;;False;{};gjbiiyz;False;t3_kxayvb;False;False;t1_gja74iq;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbiiyz/;1610781863;2;True;False;anime;t5_2qh22;;0;[];True -[];;;merickmk;;;[];;;;text;t2_4ujqdaze;False;False;[];;"That's how nature works and there's no avoiding that. Living things eat other living things. Now that we're aware of the background, assuming they weren't lied to, I don't think it's a bad arrangement. If the kids in the other houses also live good lives and never really learn the truth, that's for the best. It's certainly better than a constant all out war between humans and demons. - -Their specific situation is particularly shitty, because they're now aware of the truth and so they suffer and struggle. It's a situation where none of the sides are necessarily wrong, but the result isn't good for anyone involved. One side has to ""lose"". Personally I wish the kids would just get over to the human side and lead happy lives, but a more realistic view of it says that it's better for everyone if they're just snuffed out and peace is maintained. - -Man, I really went off topic.";False;False;;;;1610692154;;False;{};gjbikgd;False;t3_kxayvb;False;False;t1_gj9pekx;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbikgd/;1610781885;8;True;False;anime;t5_2qh22;;0;[]; -[];;;merickmk;;;[];;;;text;t2_4ujqdaze;False;False;[];;Yea, not gonna lie, the whole arrangement doesn't seem that bad now that we now some of the details... Unless there's more we haven't been told yet. We haven't seen the human situation on the other side at all and not even a whole lot on the demon side either.;False;False;;;;1610692262;;False;{};gjbipe6;False;t3_kxayvb;False;False;t1_gj9958s;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbipe6/;1610781962;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SingularCheese;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/lonelyCheese;light;text;t2_rgv21;False;False;[];;I also immediately thought of the political consequences when the kids brought up freeing more farms. I think Emma was dodging the problem by saying to first think about meeting up with allies. Her stance in season 1 was an uncompromising rescue of everyone she can reach, so it's interesting to her response to a more complicated world where it seems somebody has to be hurt.;False;False;;;;1610692470;;False;{};gjbiytg;False;t3_kxayvb;False;True;t1_gja3871;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbiytg/;1610782106;2;True;False;anime;t5_2qh22;;0;[]; -[];;;merickmk;;;[];;;;text;t2_4ujqdaze;False;False;[];;I do. Maybe she'll tone down the idealism, that'd be for the best.;False;False;;;;1610692471;;False;{};gjbiyv2;False;t3_kxayvb;False;True;t1_gj95sjg;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbiyv2/;1610782107;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LokamiLa;;;[];;;;text;t2_19dmh38g;False;False;[];;I don't like any of the sound effects used in this show tbh. They all sound wrong to me, like when they are walking or when Yuni's cousin pushed Chika. It doesn't feel real.;False;False;;;;1610692487;;False;{};gjbizl0;False;t3_kxaa94;False;False;t1_gj95bs7;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbizl0/;1610782118;7;True;False;anime;t5_2qh22;;0;[]; -[];;;aohige_rd;;;[];;;;text;t2_ttrmj;False;False;[];;To be fair, pigs are just as smart as dogs if raised in a similar environment. But we assign different value to them according to their usefulness to ourselves.;False;False;;;;1610692584;;False;{};gjbj3z8;False;t3_kxayvb;False;False;t1_gjb47pl;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbj3z8/;1610782186;6;True;False;anime;t5_2qh22;;0;[];True -[];;;merickmk;;;[];;;;text;t2_4ujqdaze;False;False;[];;"I feel like the ""30 years ago"" thing will be important. Could be as simple as leaving the number 30 (or maybe 2046 - 30 = 2016) as a clue or maybe something major happened on the human side 30 years ago that Sonju isn't aware of. Which also reminds me that we only heard the story from the demon's side. While it doesn't seem like it was twisted one way or the other, who knows...";False;False;;;;1610692688;;False;{};gjbj8of;False;t3_kxayvb;False;True;t1_gj9b5t3;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbj8of/;1610782260;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aohige_rd;;;[];;;;text;t2_ttrmj;False;False;[];;Or, two different plane of existence. Quantum physics voodoo.;False;False;;;;1610692846;;False;{};gjbjfsw;False;t3_kxayvb;False;False;t1_gj9fr0k;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbjfsw/;1610782374;2;True;False;anime;t5_2qh22;;0;[];True -[];;;selrein;;;[];;;;text;t2_7by4xf3r;False;False;[];;I wonder if the two demons helping the children are a couple, siblings or just friends;False;False;;;;1610692874;;False;{};gjbjh3k;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbjh3k/;1610782394;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SingularCheese;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/lonelyCheese;light;text;t2_rgv21;False;False;[];;Assuming that humans have superior technology, stopping all of this through a genocide of all the demons (with degrees of sentience) also feels icky at this point.;False;False;;;;1610692926;;False;{};gjbjjed;False;t3_kxayvb;False;False;t1_gj9hnzu;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbjjed/;1610782431;3;True;False;anime;t5_2qh22;;0;[]; -[];;;rotten_riot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RottenOrange/;light;text;t2_20f93nxp;False;False;[];;">can you even name one single other person on the team besides the main 2 characters? - -You're not supposed to. Those were players from middle school, the real main team starts on high school.";False;False;;;;1610693014;;False;{};gjbjn8h;False;t3_kxaa94;False;False;t1_gjabals;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbjn8h/;1610782487;7;True;False;anime;t5_2qh22;;0;[]; -[];;;SingularCheese;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/lonelyCheese;light;text;t2_rgv21;False;False;[];;Emma is not one to think about consequences, but Ray definitely already thought of it, and it will only be a matter of time before this topic comes up. The whole point of why they were able to escape is that Norman, Emma, and Ray are all supposed to be super smart.;False;False;;;;1610693072;;False;{};gjbjpuu;False;t3_kxayvb;False;True;t1_gj9i3c6;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbjpuu/;1610782527;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rotten_riot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RottenOrange/;light;text;t2_20f93nxp;False;False;[];;">I can’t help of Arata Wataya from Chihayafuru - -Lol great I'm not the only one. For some reason I really like that accent (I love how Wataya's VA makes his accent btw) so it was a nice surprise";False;False;;;;1610693150;;False;{};gjbjt9y;False;t3_kxaa94;False;False;t1_gj93dni;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbjt9y/;1610782579;7;True;False;anime;t5_2qh22;;0;[]; -[];;;rotten_riot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RottenOrange/;light;text;t2_20f93nxp;False;False;[];;Yeah, it's sad and a little annoying at the same time cause you know what he's doing wrong, and you want really hard for him to focus again but you know that won't happen.;False;False;;;;1610693263;;False;{};gjbjy9n;False;t3_kxaa94;False;True;t1_gj9d7lz;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbjy9n/;1610782654;3;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;">Kageyama's middle school teammates aren't really remembered by name same with Hinata - -Kumini, Kindaichi and Izumi and Koji. - -In one episode they established 6 different characters with names and personalities, with Izumi and Koji showing up very very rarely going forward. - -The problem is you can say oh it's the prologue, these characters don't matter, but we spent 2 episodes on this timeframe, nearly an hour of our time at which point it begins to matter, it being a prologue is no longer an excuse.";False;False;;;;1610693295;;False;{};gjbjzo4;False;t3_kxaa94;False;True;t1_gjaueig;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbjzo4/;1610782676;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;There's a difference between skipped covering and acknowledging their existence, are they people on the team or cardboard cutouts to fill up the background? If you want cardboard cutouts you better be swiftly moving on, and to me 2 episodes isn't swift.;False;False;;;;1610693397;;False;{};gjbk472;False;t3_kxaa94;False;False;t1_gjar00m;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbk472/;1610782742;0;True;False;anime;t5_2qh22;;0;[]; -[];;;rotten_riot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RottenOrange/;light;text;t2_20f93nxp;False;False;[];;"Yeah, both of them do it for me. - -Haijima because he's an asshole. I hate the ""I'll treat like shit every person who doesn't take the sport as seriously as me"" kind of character. And what he said about Yuni was pretty shitty indeed. - -Yuni, in the other hand, didn't had any reason to get mad besides what I said earlier. It wasn't Haijima's fault that he started playing like shit, after all. He should've been thankful that Haijima saved the team. Also, I understand you don't wanna play because you feel uncomfortable doing so, but by escaping you're just abandoning all your teammates who had nothing to do with your little drama.";False;False;;;;1610693502;;False;{};gjbk8o7;False;t3_kxaa94;False;True;t1_gja4tz5;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbk8o7/;1610782814;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rotten_riot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RottenOrange/;light;text;t2_20f93nxp;False;False;[];;"I personally felt that closing the episode with that scene was better than closing it with the ED. - -After all, EDs aren't supposed to be skipped lol";False;False;;;;1610693604;;False;{};gjbkd27;False;t3_kxaa94;False;True;t1_gjajiop;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbkd27/;1610782883;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;Why should that matter? If we're gonna spend 2 episodes with these characters then they should at least be treated like they exist in the world, just saying they don't matter isn't an excuse if you're gonna linger on this period of time, they are a part of the established drama for this section of the story yet they may as well just be pieces of cardboard pulled around on string to us.;False;False;;;;1610693607;;False;{};gjbkd7i;False;t3_kxaa94;False;True;t1_gjbjn8h;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbkd7i/;1610782885;0;True;False;anime;t5_2qh22;;0;[]; -[];;;rotten_riot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RottenOrange/;light;text;t2_20f93nxp;False;False;[];;I like the idea too, although I don't like the idea of Yuni falling for Haijima lol;False;False;;;;1610693735;;False;{};gjbkim8;False;t3_kxaa94;False;False;t1_gja3597;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbkim8/;1610782971;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Toastylilboat;;;[];;;;text;t2_9e8lbtpj;False;False;[];;Can anyone tell me what ray carved into the tree? It seemed important but I couldn’t understand the significance;False;False;;;;1610693853;;False;{};gjbknp7;False;t3_kxayvb;False;False;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbknp7/;1610783048;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;">Based on the current MAL score and reviews, this is already happening... - -Or maybe its just that the pacing is all over the place and the ability to gives its characters actual character is appalling. - -You can't just blame Haikyuu here, the problem is the show up to this point just isn't very good, Run with the Wind and Stars Align were sports anime focused on the drama more than the sport and they both did a much better job setting up the story, characters and teasing the drama in the first 2 episodes.";False;False;;;;1610693892;;False;{};gjbkpe4;False;t3_kxaa94;False;False;t1_gjbhjw6;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbkpe4/;1610783073;10;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;">Sport anime with character studies are usally pretty good. - -I'd say it's hit or miss for me, for every Run with the Wind and Stars Align there's a Hanebado or Ahiro no Sora that just falls completely flat with me.";False;False;;;;1610694071;;False;{};gjbkwyx;False;t3_kxaa94;False;False;t1_gjab5gp;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbkwyx/;1610783189;6;True;False;anime;t5_2qh22;;0;[]; -[];;;CriticismZestyclose1;;;[];;;;text;t2_896poqr1;False;False;[];;Basically a free range chicken farm;False;False;;;;1610694123;;False;{};gjbkz8m;False;t3_kxayvb;False;True;t1_gjabl4f;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbkz8m/;1610783223;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;The thing is I have no way to know if you actually remember them or not. When most people talk about the characters in the show they have select characters they remember and others that are in the back of their heads. This is mostly cause they have a way of showing up even when the main team isn’t gonna fight them or they may return in a second year. The characters you named do make appearances so them having some characterization matters. But the characters in this show who were in the middle school team clearly aren’t set up to be returning characters in any way. You can either hate it or not, but if you watch a sports anime that progresses through actual years people are dropped for several reasons, and the ones who will have little impact on the characters and story going forward such as a bunch of players who were only in the club because of mandatory school rules and complete amateurs. Seeing them play in the future would be unrealistic unless the team they join has few players. This isn’t the kind of setup we have, and looking at other sports anime that have fodder teammates it makes sense. Why develop any character besides basic friendliness on individuals we won’t see again? You might hate it, but this was only 44 minutes and we don’t even know if the pacing is slow or fast compared to the original source. This is a high school show and we took three episodes to get there. Besides the two teammates on both Hinata and Kageyama’s team the rest were fodder teammates as I said is needed. The teammates that were shown had reasons to be brought up again Hinata’s to see how he’s happy and doing good and Kageyama’s so he can get over his king persona. The teammates for 2.43 have no relationship to Chika and weren’t exactly close to Yuni. It would be strange to have them be the ones Chika has to overcome for his over competitiveness when we have suicide kid. Yuni’s growth wouldn’t be based on those teammates but with him and Chika and him and Yori’s relations. It’s fine if you dislike the characters, but there’s characterization and set up that you don’t want to talk about cause it’s not the same as Haikyuu.;False;False;;;;1610694141;;False;{};gjbkzzu;False;t3_kxaa94;False;False;t1_gjbjzo4;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbkzzu/;1610783234;9;True;False;anime;t5_2qh22;;0;[]; -[];;;SataniaSaturday;;;[];;;;text;t2_3phxs4q9;False;False;[];;sir this is Wendy's;False;False;;;;1610694155;;False;{};gjbl0kf;False;t3_kxayvb;False;True;t1_gj9v81v;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbl0kf/;1610783243;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;">and start appreciating this new anime with new drama which for me is kind of unique. - -This mentality needs to fuck off, is that gonna be how everyone's gripes are gonna be undermined with this show? It's not really that unique, Run with the Wind, Stars Align, Hibike Euphonium, Ahiru no Sora, Hanebado, heck even The Queens Gambit and Ted Lasso fall into that description. - -It's getting shit on because after 2 episodes it just isn't very good, it's put the audience through an emotional rollercoaster before it's even give us characters to appreciate that rollercoaster with.";False;True;;comment score below threshold;;1610694326;;False;{};gjbl7or;False;t3_kxaa94;False;True;t1_gjavko0;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbl7or/;1610783348;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;LakerBlue;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LakerBlue;light;text;t2_afaca;False;False;[];;"Normally I’d put some on hold and wait for the dubs but with how COVID has wrecked dub release schedules, at least for Funi, I’m just going to watch them all subbed. - - Dr Stone is the only one I may end up waiting on the dub for, really enjoyed s1’s dub.";False;False;;;;1610694456;;False;{};gjblcwp;False;t3_kxayvb;False;True;t1_gj9wpla;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjblcwp/;1610783427;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;">The teammates for 2.43 have no relationship to Chika and weren’t exactly close to Yuni. - -And yet they were used to establish a new point of drama with Chika, so they had importance in this rollercoaster of drama yet they still didn't exist as people in the universe to us. Them being fodder doesn't matter, if you're spending 2 episodes with them then at least give a couple of them names and bit of personality, let us see them actually exist in the world. Even the rest of Hinatas team are given that much is less than an episode. - -The more the characters we're shown on screen exist as people in the scene fodder or not, the more we're gonna believe in the scene as something that's happening. If they were hell bent on establishing this drama they should have saved it until High School with established characters or gone the Hibike Euphonium route and use it as the inciting incident for a cold open. - -I'll put it another way, Attack on Titan, fodder central does a better job introducing multiple characters and giving them character to help punctuate the drama in its first 2 episodes than this show, and that was AoTs weak point early on.";False;False;;;;1610694922;;False;{};gjblvsg;False;t3_kxaa94;False;True;t1_gjbkzzu;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjblvsg/;1610783709;0;True;False;anime;t5_2qh22;;0;[]; -[];;;45b16;;MAL;[];;http://myanimelist.net/animelist/45b16;dark;text;t2_msjr9;False;False;[];;I agree with you about Hanebado but I thought Ahiru no Sora was good apart from the crappy animation.;False;False;;;;1610696348;;False;{};gjbng32;False;t3_kxaa94;False;False;t1_gjbkwyx;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbng32/;1610784557;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;And we could just be vegan. As of right now, I don’t really see the demons as an especially evil entity. Like they’re growing the humans ethically(maybe this is not the standard, we’ll see), and they literally HAVE to be respectful to their food for the flower to work;False;False;;;;1610696830;;False;{};gjbnyzm;False;t3_kxayvb;False;False;t1_gjabl4f;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbnyzm/;1610784840;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Yeah, either they continue to get help, some sort of power system is implemented, or they don’t get their goal. Very interested to see what happens;False;False;;;;1610697072;;False;{};gjbo8hz;False;t3_kxayvb;False;True;t1_gj9958s;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbo8hz/;1610784979;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ErenIsNotADevil;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Reiner’s BFF;light;text;t2_9rlvlb8w;False;False;[];;Don’t put them on hold, embrace them. Barring another pandemic or year-long disaster, you’ll never see a season this stacked again. Force yourself to watch everything decent so you have no regrets;False;False;;;;1610697103;;False;{};gjbo9ps;False;t3_kxayvb;False;True;t1_gj9wpla;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbo9ps/;1610784997;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Trotterswithatwist;;;[];;;;text;t2_dv6e1;False;False;[];;Scrolling through this board, You have argued or tried to argue with *every single person* in this comment section who has expressed even a single positive attribute to this anime. You really need to figure out why you are relentlessly posting about something you don’t like? Look at how many comments you have made. Dude, if you don’t like something don’t waste your energy on it. Let other people enjoy it. It’s a really weird mentality you have going on here you need to get fixed ASAP.;False;False;;;;1610697122;;False;{};gjboah0;False;t3_kxaa94;False;False;t1_gjbl7or;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjboah0/;1610785009;10;True;False;anime;t5_2qh22;;0;[]; -[];;;MrPringles23;;;[];;;;text;t2_bjtdc;False;False;[];;"I felt like shit when I she realised that Connie had that flower jammed through her heart while she was alive. - -Kinda cool to see that the flower had a use and wasn't just weird or artistic for the sake of it too.";False;False;;;;1610697133;;False;{};gjboax3;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjboax3/;1610785016;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ErenIsNotADevil;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Reiner’s BFF;light;text;t2_9rlvlb8w;False;False;[];;I’m hoping not a wall. Walls have a tendency to traumatize children. Would probably be better to break them.;False;False;;;;1610697270;;False;{};gjbog7z;False;t3_kxayvb;False;True;t1_gj9hfaj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbog7z/;1610785095;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;Yeah my mate enjoyed it as well I just couldn't bring myself to continue with it, the way it set things up I just found a bit boring.;False;False;;;;1610697358;;False;{};gjbojnv;False;t3_kxaa94;False;False;t1_gjbng32;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbojnv/;1610785147;3;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;">You have argued or tried to argue with *every single person* in this comment section who has expressed even a single positive attribute to this anime. - -No I haven't? I've argued with ~~most~~ (2 people) of those who tried to claim they know why people are disappointed, because I find it ridiculous that people can make that claim on behalf of others. There's already an idea permeating that anyone that doesn't like the show just doesn't like it because they expected Haikyuu, that's such an unhealthy way to try and undermine complaints. - -Anyone who just likes the show fair enough, but anyone going people are just disappointed because they expected something different, I think it's totally fair to bring up the flaws in that mentality.";False;True;;comment score below threshold;;1610697590;;1610697872.0;{};gjboshj;False;t3_kxaa94;False;True;t1_gjboah0;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjboshj/;1610785284;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;Dinoboy6430;;;[];;;;text;t2_qw5py;False;False;[];;I'm pretty sure they'll cover things later, as it seems like they'll be staying in the forest for a few more episodes;False;False;;;;1610697595;;False;{};gjbosny;False;t3_kxayvb;False;True;t1_gj9gz4c;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbosny/;1610785286;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Trotterswithatwist;;;[];;;;text;t2_dv6e1;False;False;[];;Fuck, I really pity you. I really do. To be so insecure that you would spend 8 hours correcting people’s opinions on an anime you claim you don’t like. I really hope you get your head sorted soon.;False;False;;;;1610698012;;False;{};gjbp8do;False;t3_kxaa94;False;False;t1_gjboshj;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbp8do/;1610785532;3;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;">be so insecure that you would spend 8 hours correcting people’s opinions on an anime you claim you don’t like. - -Dude it's 8am, I've been asleep, I woke up reddit messages so I replied to them. How is that insecurity? - -Edit: also I'm not correcting anyone's opinions on the show, I feel like your ignoring everything I'm saying, I'm arguing that people shouldn't make unsubstantiated claims as to why others don't like said show. Or in another comment pointed out a few drama focused sports anime I felt missed the mark as it was in relation to what the comment said. - -I've aired my complaints with the show itself when I finally got to watch it last night, and then I replied to comments on those complaints this morning, should I just not reply?";False;False;;;;1610698132;;1610698544.0;{};gjbpcrw;False;t3_kxaa94;False;True;t1_gjbp8do;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbpcrw/;1610785601;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;xin234;;;[];;;;text;t2_87y7e;False;False;[];;"I wonder how anyone who doesn't watch/read this series would interpret your comment. - -""Demons are Muslims"" is definitely r/nocontext material lol.";False;False;;;;1610698169;;False;{};gjbpe69;False;t3_kxayvb;False;False;t1_gj9uyv0;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbpe69/;1610785622;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ShzMeteor;;;[];;;;text;t2_oj2ee;False;False;[];;"I watched a sheep's slaughter and butchering process once when I was in middle-school if I remember correctly. While I did feel sorry for the poor animal, I was very intrigued also and don't remember it affecting me much afterwards. - -I was about to comment how Emma was overreacting based on my personal experience, but it's clear that the experience largely depends on the person. I realize know that it would certainly make sense for her to be more traumatized given her temperament and circumstances though I can't help but feel the ""I'm a stone cold killer now"" look at the end was a bit much.";False;False;;;;1610698299;;False;{};gjbpj51;False;t3_kxayvb;False;True;t1_gjbgjm4;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbpj51/;1610785694;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kobolR5;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/nexcynicalR5;light;text;t2_s17uonu;False;False;[];;That was really good editing during Emma's hunting sequence;False;False;;;;1610698334;;False;{};gjbpkgj;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbpkgj/;1610785716;1;True;False;anime;t5_2qh22;;0;[]; -[];;;athrun_1;;;[];;;;text;t2_ubnet;False;False;[];;"Emma is now on the path to become a demon slayer! - -Glad to see that there are demons who are not into eating humans because of their beliefs. Makes you think that this demon world is not just some human eating monsters but a working community as well. With just a few radicals.";False;False;;;;1610698841;;False;{};gjbq3iw;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbq3iw/;1610786004;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SJUGRAD13;;;[];;;;text;t2_wnv8smn;False;False;[];;Does anybody know what Ray wrote on the tree and the meaning?;False;False;;;;1610698956;;False;{};gjbq7we;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbq7we/;1610786067;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;Maybe demons are smarter than humans. Humans are smarter than pigs, but not by *that* much, pigs are probably smarter than dogs and if you’ve dealt with dogs you know they do have basic feelings and understanding of the world.;False;False;;;;1610699141;;False;{};gjbqewl;False;t3_kxayvb;False;False;t1_gjabl4f;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbqewl/;1610786172;17;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;Remember the good old free range, organically grown children your ma prepared you? Grace Field Farm remembers.;False;False;;;;1610699264;;False;{};gjbqjhm;False;t3_kxayvb;False;False;t1_gjbnyzm;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbqjhm/;1610786240;4;True;False;anime;t5_2qh22;;0;[]; -[];;;athrun_1;;;[];;;;text;t2_ubnet;False;False;[];;that Somali vibes though... I thought I've seen that before but I can't put what anime it was. Hope to see this two good demons in the long run and be human's comrade in arms.;False;False;;;;1610699388;;False;{};gjbqo34;False;t3_kxayvb;False;True;t1_gj96o7a;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbqo34/;1610786307;2;True;False;anime;t5_2qh22;;0;[]; -[];;;stargunner;;;[];;;;text;t2_4a979;False;False;[];;she has the same energy as Gon from HxH. always looking happy on the outside, but inside carries a borderline psychotic rage if anyone would hurt those close to her.;False;False;;;;1610699413;;False;{};gjbqoyl;False;t3_kxayvb;False;False;t1_gja0mvv;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbqoyl/;1610786320;40;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;Hail Seitan!;False;False;;;;1610700002;;False;{};gjbrank;False;t3_kxayvb;False;False;t1_gjbd5aj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbrank/;1610786638;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;Would watching this after Dr. Strange feel stone?;False;False;;;;1610700053;;False;{};gjbrce0;False;t3_kxayvb;False;False;t1_gja0ouj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbrce0/;1610786664;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Greenthy;;;[];;;;text;t2_7y234;False;False;[];;goodbye persuers or something in those lines;False;False;;;;1610700122;;False;{};gjbrexk;False;t3_kxayvb;False;True;t1_gjbknp7;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbrexk/;1610786705;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BetelgeuseIsBestGirl;;;[];;;;text;t2_44pw1f0;False;False;[];;"How many chapters of [Manga](/s ""Norman"") stuff were there before and during Goldy Pond? I'm not sure how much it would help with pacing the Goldy Pond arc without a lot of rushing, but they could potentially not adapt any of those chapters this season. It'd definitely make all of the foreshadowing much more impactful if they cut it now and moved it to a later season, assuming we even get another one.";False;False;;;;1610700430;;False;{};gjbrpzs;False;t3_kxayvb;False;True;t1_gja42j0;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbrpzs/;1610786871;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Animeproduction13;;;[];;;;text;t2_8hn84kk3;False;False;[];;">The demons farm the children to eat, humans are the best food to demons. - -Did Demons broke the promise? The promise was human and demons have an agreement that they won't fight each other again.";False;False;;;;1610701166;;False;{};gjbsgiv;False;t3_kxayvb;False;True;t1_gjb4mxy;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbsgiv/;1610787272;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Iammonkforlifelol;;;[];;;;text;t2_554va627;False;False;[];;Me also I like this accent.;False;False;;;;1610702208;;False;{};gjbthzw;False;t3_kxaa94;False;True;t1_gjbjt9y;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbthzw/;1610787838;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CallMeHunky;;;[];;;;text;t2_chktry9;False;False;[];;I have zero issues with the pacing. I don’t want it to be at episode 6 and only then getting to high school lol;False;False;;;;1610702970;;False;{};gjbu8xm;False;t3_kxaa94;False;False;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbu8xm/;1610788251;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;"So then, when (if) they reached the border, they're even less likely to be helped by fellow humans. ""For the Greater Good™""";False;False;;;;1610703696;;False;{};gjbuye6;False;t3_kxayvb;False;True;t1_gja3871;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbuye6/;1610788640;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;"More likely that humans lended their innovation to monsters to help in upholding their promise. - -If I've learned one thing, it's to never underestimate human greed.";False;False;;;;1610703885;;False;{};gjbv4x6;False;t3_kxayvb;False;True;t1_gjaa2g4;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbv4x6/;1610788739;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;"I agree. While I've never played volleyball, I've had a similar experience with football, basketball, and any competitive game. At one moment you'll be feeling like a god but once you lose your footing and miss a few shots or make stupid mistakes then it gets really hard to get back into the game, especially when none of your teammates are helping you. You start to doubt yourself and try to figure out what you're doing wrong but nothing works (even if you figure out what's wrong). It's literally exactly what Yuni was going through in this episode. - -While I've never bitched about teammates behind their backs or in front of them in physical sports, I sure as hell have called people out in online games even though I knew that I was at fault too. And I think everyone who has played in a team, whether it be physical or virtual, has experienced this at least once. So even though I really didn't like what Yuni did, I can't say I blame or hate him for it. - -While it is a team game and people should help each other, no one is going to constantly be able to clean up your mess because they too have their own problems to deal with and you need to help yourself up in those times. I feel like Yuni is still too immature to understand that, especially given that he has never played in a proper match before and that was probably the first time in his life he experienced such a shut down.";False;False;;;;1610704037;;1610704307.0;{};gjbva4f;False;t3_kxaa94;False;False;t1_gj9d7lz;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbva4f/;1610788819;1;True;False;anime;t5_2qh22;;0;[]; -[];;;maximus_md;;;[];;;;text;t2_3nhroflm;False;False;[];;The comparison we never knew we needed but is 100% on the money 👌;False;False;;;;1610704045;;False;{};gjbvaf3;False;t3_kxayvb;False;False;t1_gjbqoyl;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbvaf3/;1610788824;18;True;False;anime;t5_2qh22;;0;[]; -[];;;maximus_md;;;[];;;;text;t2_3nhroflm;False;False;[];;Clearly not watched Wonder Egg Priority;False;False;;;;1610704226;;False;{};gjbvgkt;False;t3_kxayvb;False;True;t1_gjb3exx;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbvgkt/;1610788916;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FearlessOverlord_;;;[];;;;text;t2_1haeq1mq;False;False;[];;Sonju got Kawhi Leonard sized hands;False;False;;;;1610704312;;False;{};gjbvjiy;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbvjiy/;1610788962;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phasmy;;;[];;;;text;t2_4aze0;False;False;[];;"There isn't a need for justification. Humans are omnivores and eat meat. The ""demons"" aren't in the wrong either for wanting to eat farmed humans. None of those humans would even exist if not for their farmers.";False;False;;;;1610705018;;False;{};gjbw7p4;False;t3_kxayvb;False;True;t1_gj9pekx;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbw7p4/;1610789327;2;True;False;anime;t5_2qh22;;0;[]; -[];;;maximus_md;;;[];;;;text;t2_3nhroflm;False;False;[];;I could see it being a Senkaimon kind of deal between the two worlds;False;False;;;;1610705206;;False;{};gjbweb5;False;t3_kxayvb;False;True;t1_gj9a790;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbweb5/;1610789426;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610705402;;False;{};gjbwlml;False;t3_kxayvb;False;True;t1_gja7niu;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbwlml/;1610789537;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;and also judging by the tech and the facts it's year 2046, I'm assuming the humans have advanced to the point where physical strength would mean nothing due to technology;False;False;;;;1610705416;;False;{};gjbwm54;False;t3_kxayvb;False;True;t1_gjap0tt;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbwm54/;1610789544;3;True;False;anime;t5_2qh22;;0;[]; -[];;;whalehome;;;[];;;;text;t2_albkj;False;False;[];;Nothing was spoiled, you dont know what's going to happen.;False;False;;;;1610705541;;False;{};gjbwqib;False;t3_kxayvb;False;True;t1_gjb48vn;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbwqib/;1610789607;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerdy314159265;;;[];;;;text;t2_752wc;False;False;[];;"> A closer parallel would be humans making Dolphin Foe Gras? - -I think an example that better shows how horrible it is would be if we were eating little people or people of a certain race. - -The demons we've seen so far may look different but we haven't gotten any indications that they aren't mostly similar mentally/societally.";False;False;;;;1610705715;;False;{};gjbwwkb;False;t3_kxayvb;False;False;t1_gjabl4f;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbwwkb/;1610789698;9;True;False;anime;t5_2qh22;;0;[]; -[];;;OkitaDaishouri;;;[];;;;text;t2_qc3cujv;False;False;[];;"Everyone seems to expecting a Haikyuu clone (while I can understand, as I also had a small shred of expectations with that), but even though it's relatively early, I wanted to give some thoughts. - -To begin, I can say that I'm fine watching any genres of shows, whether they are just pure sports anime like Haikyuu or even last year's Ahiru no Sora, or just genres where they use sports as a medium to convey a bigger story, namely Chihayafuru (which is truly amazing and highly recommend). - -What are some of the good things about 2.43? There are some areas where the animation is great, where I feel like they can be better than Haikyuu, but it also feels lacking in the fluidity. What I mean is that, visually, it can look good in some frames, but it also feels too fast/short and all the spikes are going at mach speed. - -The story feels rushed so far, as we barely got any development or further backstory, which is somewhat fair as it's still junior high. But this episode was going at light speed, but did set a baseline for what to expect going forward. This is essentially a story of redemption for Kimichika, and how he needs to deal with the mistakes he has done in the past. - -What sucks is that we're gonna see more of Yuni. Sure he'll most likely be a better person, but these past two episodes just leaves a bad impression. He just seems fragile, whiny, and childish. Understandable as it's high school, but still. In fact, if he got THAT nervous, why not just bench him for a bit since they have eight players. It's a 3-set match anyways, so a couple minutes shouldn't hurt. - -Also, the sound effects being used for the volleyball sounds weird. It doesn't sound like a volleyball hitting the floor, but something more like a fly swatter slapping the floor. - -I'll try and stick with this a bit longer, but my expectations aren't very high, although high school could be a lot better.";False;False;;;;1610705890;;1610706112.0;{};gjbx2nt;False;t3_kxaa94;False;True;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbx2nt/;1610789789;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerdy314159265;;;[];;;;text;t2_752wc;False;False;[];;"> And we could just be vegan. - -False equivalence. - -They are eating something that by all current evidence is as intelligent as themselves and even value that intelligence in their prey. - -If a cow could verbally tell me it doesn't want to be food, I don't think I'd eat it. - -Flip side, if a cow could definitively tell me it wants to be food, then I'd eat some steak a la Restaurant at the End of the Universe.";False;False;;;;1610706043;;False;{};gjbx84m;False;t3_kxayvb;False;True;t1_gjbnyzm;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbx84m/;1610789870;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerdy314159265;;;[];;;;text;t2_752wc;False;False;[];;Well also we kinda coexisted with dogs as allies for thousands of years.;False;False;;;;1610706125;;False;{};gjbxazx;False;t3_kxayvb;False;True;t1_gjbj3z8;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbxazx/;1610789914;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerdy314159265;;;[];;;;text;t2_752wc;False;False;[];;"> doesn't stop to consider whether this is even necessary OR why killing the animals might be different than what happened to the children in important ways - -I think this is very very important, if they fail to address those ideas and continue along a path of the two acts being equivalent and necessary, things could get really weird and the story might become a mess.";False;False;;;;1610706993;;False;{};gjby5lj;False;t3_kxayvb;False;False;t1_gjb2sir;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjby5lj/;1610790387;12;True;False;anime;t5_2qh22;;0;[]; -[];;;ShemhazaiX;;;[];;;;text;t2_h3spo;False;False;[];;"It definitely feels to me that the human world is essentially just the world as we understand as reality whilst the Demon world is kind of ""beyond the veil"" as it were, with humans not being aware of the Demon world anymore. The setting was essentially 30 years in the future from when the manga started in 2016 so that the reader / watcher infers that its set in our future reality. Its essentially a part of the initial misdirect.";False;False;;;;1610707292;;False;{};gjbyg6m;False;t3_kxayvb;False;True;t1_gj9v81v;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbyg6m/;1610790546;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerdy314159265;;;[];;;;text;t2_752wc;False;False;[];;"I'm worried about it being handled poorly. The demon world may work as some sort of mirror to the human/real world but there are definite differences between the morality of killing an animal and killing a being with intelligence on par with your own/past a certain point. - -If they continue along the line that I'm worried they'll go (bird life = human life) then I might not be able to stay into the show.";False;False;;;;1610707383;;False;{};gjbyjk4;False;t3_kxayvb;False;True;t1_gjb3qpg;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbyjk4/;1610790597;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerdy314159265;;;[];;;;text;t2_752wc;False;False;[];;"> I mean, that camera last season came from somewhere - -It was said that humans actually delivered supplies that the farms need including clothes and technology.";False;False;;;;1610707523;;False;{};gjbyoie;False;t3_kxayvb;False;True;t1_gjaa2g4;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbyoie/;1610790673;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ravek;;;[];;;;text;t2_72i2j;False;False;[];;Cattle have been pulling plows for a long time.;False;False;;;;1610707684;;False;{};gjbyu96;False;t3_kxayvb;False;True;t1_gjastcw;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbyu96/;1610790757;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ShemhazaiX;;;[];;;;text;t2_h3spo;False;False;[];;"The human world is likely just going to be our world, but thirty years into the future. -Which, now I think about it means I wouldn't be surprised if they escape to the real world only to find that everyone wiped themselves out through war or something and the only humans alive are the ones in demon farms.";False;False;;;;1610707694;;False;{};gjbyum1;False;t3_kxayvb;False;True;t1_gj9ocbj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbyum1/;1610790762;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerdy314159265;;;[];;;;text;t2_752wc;False;False;[];;They did mention last season that a lot of items are delivered by humans. That could indicate that they give the demons out of date technology to supply their farms.;False;False;;;;1610707970;;False;{};gjbz4g2;False;t3_kxayvb;False;True;t1_gjapw5f;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbz4g2/;1610790911;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ShemhazaiX;;;[];;;;text;t2_h3spo;False;False;[];;"The human world is probably just supposed to be ""reality"". Demons are probably just the stuff from folk tales passed down through generations and assumed to be made up.";False;False;;;;1610708042;;False;{};gjbz6ze;False;t3_kxayvb;False;True;t1_gj9pbox;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbz6ze/;1610790948;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shining-moon;;;[];;;;text;t2_2vm6qc77;False;False;[];;that exactly what I was thinking. my problem is the character development and i dont know whether it was originally fast paced in the novel or it is done poorly in anime.;False;False;;;;1610708437;;False;{};gjbzlbm;False;t3_kxaa94;False;True;t1_gjbdxfm;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjbzlbm/;1610791164;2;True;False;anime;t5_2qh22;;0;[]; -[];;;braiel;;;[];;;;text;t2_gyvtk;False;False;[];;this episode certainly alleviated some of my fears of how they'd try to pace the anime;False;False;;;;1610708751;;False;{};gjbzwzq;False;t3_kxayvb;False;True;t1_gj9dexb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjbzwzq/;1610791347;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Fudgywaffles;;;[];;;;text;t2_egyvg;False;False;[];;The sound right when they hit the ball is off but I like the rest of them. In haikyuu all of the sound effects are animey but the setting and ball hitting the grounds sound effects in this sound like they do in real life. The slapping sound does sound more like someone is breaking a stick in half or like slapping a piece of meat though.;False;False;;;;1610709016;;False;{};gjc06ti;False;t3_kxaa94;False;True;t1_gj95bs7;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjc06ti/;1610791498;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610710862;;False;{};gjc24m0;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjc24m0/;1610792638;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NiamhHA;;;[];;;;text;t2_4iywrflx;False;False;[];;I didn’t even think of that before. That would be interesting to see.;False;False;;;;1610710908;;False;{};gjc26ch;False;t3_kxayvb;False;True;t1_gjbcdia;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjc26ch/;1610792666;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wiikipedia;;;[];;;;text;t2_9bdem;False;False;[];;I kind of love that we don't know what the other farms are like but it seems very possible to me that those are much much worse. Grace Fields is one of if not the highest quality producers but we don't see anything else. I personally think we see the equivalent of wagyu, but factory farms for the demons probably exist.;False;False;;;;1610711753;;False;{};gjc336u;False;t3_kxayvb;False;False;t1_gjbht5w;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjc336u/;1610793188;15;True;False;anime;t5_2qh22;;0;[]; -[];;;wiikipedia;;;[];;;;text;t2_9bdem;False;False;[];;It isn't a false equivalence, the show explicitly makes that comparison. The opening switches back and forth between the children eating rabbits and the demons eating children. I'm not a vegetarian but I still know that animals don't want to feel pain or die and will do what they can to escape that.;False;False;;;;1610712092;;False;{};gjc3gs1;False;t3_kxayvb;False;True;t1_gjbx84m;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjc3gs1/;1610793396;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jcruz18;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/jcruz13;light;text;t2_qqttp;False;False;[];;"It also sounds completely implausible, at least with their current capabilities. I'm surprised none of the other kids contested that and told her ""that's very heroic of you but nah we need to get the fuck out of the demon world while we have the chance.""";False;False;;;;1610712626;;False;{};gjc42vr;False;t3_kxayvb;False;False;t1_gjbht5w;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjc42vr/;1610793733;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Cognitive_Dissonant;;;[];;;;text;t2_50imw;False;False;[];;Would you think the same of a child farm in the real world where the children are treated equally well? If not, why not?;False;False;;;;1610713047;;False;{};gjc4kc1;False;t3_kxayvb;False;True;t1_gjbw7p4;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjc4kc1/;1610794000;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yoeblue;;;[];;;;text;t2_rbo3n;False;False;[];;Why did people think it was going to be sport focused? It's adapted from a novel, of course it's going to be more drama focused;False;False;;;;1610715094;;False;{};gjc749q;False;t3_kxaa94;False;True;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjc749q/;1610795435;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HitheroNihil;;;[];;;;text;t2_5310iwfe;False;False;[];;Then what are you waiting for, sailor?;False;False;;;;1610715643;;False;{};gjc7v3a;False;t3_kxayvb;False;False;t1_gj9rosg;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjc7v3a/;1610795844;9;True;False;anime;t5_2qh22;;0;[]; -[];;;joe_nard_vee;;;[];;;;text;t2_fdfzx4g;False;False;[];;"I think the only problem here besides some aspects of the anime like handling it's ""serious"" tones, BL kinda moments is the watcher themselves. Just because it's volleyball that does not mean its the next coming of haikyuu.";False;False;;;;1610716158;;False;{};gjc8l8g;False;t3_kxaa94;False;False;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjc8l8g/;1610796249;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Eckish;;;[];;;;text;t2_6b8ao;False;False;[];;"The one demon with them was pretty adamant that no one crosses the border. While it is possible, it seems like it would be a rare event or not a well known one. - -We also have the caretaker humans on the farm. As well as who is birthing these kids? I think all of the adult humans we've met are humans with jobs. And that's the only reason they aren't eaten. They likely aren't that free beyond those jobs.";False;False;;;;1610716750;;False;{};gjc9gft;False;t3_kxayvb;False;True;t1_gjbz4g2;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjc9gft/;1610796725;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Runforsecond;;;[];;;;text;t2_4a5axu2q;False;False;[];;"The question posed makes no sense. A child farm in the real world, where children don’t get eaten, doesn’t have a purpose. - -The justification for Emma learning how to hunt and prepare meat is presented in the episode. There won’t always be the plants and herbs that are bountiful in the forest, especially in the wasteland. - -As for whether the practice of the farms is “wrong,” depends on the context of the viewer. It’s clear that there are different standards of human meat. It’s also clear that demons can survive without human meat, but not without meat entirely. One farm would simply be replacing another from the perspective of the demons, which for all we know, animal farms actually exist. - -What is unclear is the relationship between demons and humans in charge, outside the conditions of the demon half of the Earth. The ultimate question presented is whether the two sides need to be segregated to coexist.";False;False;;;;1610717339;;False;{};gjcac4n;False;t3_kxayvb;False;True;t1_gjc4kc1;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcac4n/;1610797210;1;True;False;anime;t5_2qh22;;0;[]; -[];;;QQforYouToday;;;[];;;;text;t2_60cf943y;False;False;[];;Also, I feel that it’s a very specific message to have left the kids when Emma was the one who knew where to find Minerva. I’m thinking Ray has something up his sleeve;False;False;;;;1610718332;;False;{};gjcbx20;False;t3_kxayvb;False;True;t1_gjb0448;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcbx20/;1610798075;3;True;False;anime;t5_2qh22;;0;[]; -[];;;julivino29;;;[];;;;text;t2_5rjjtagb;False;False;[];;Just so you know, I have never said in my comment that the reason because people were upset was because of the haikyuu comparisons, that was just 1 point of all the other things I said. OF COURSE there are more reasons, like people said the show is going too fast (just as you said with the rollercoaster of emotions) and I also make that a point which I agreed on. Different from you, I got to care about the characters and that is why I am enjoying the show and its drama. But again, NO ONE said that I knew nor assumed why the people were upset, I just gave my opinion on the show :);False;False;;;;1610718430;;False;{};gjcc2rh;False;t3_kxaa94;False;True;t1_gjbpcrw;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjcc2rh/;1610798161;3;True;False;anime;t5_2qh22;;0;[]; -[];;;13beachesz;;;[];;;;text;t2_jfwrzht;False;False;[];;This tanked why? Season 1 was hyped.;False;False;;;;1610718501;;False;{};gjcc74x;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcc74x/;1610798226;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gorghurt;;;[];;;;text;t2_d5mbf;False;False;[];;"It was also normal for thousands of years, to kill old dogs when they weren't useful anymore, and use parts of the corpse for whatever they were still useful for. - -And there are people in this world today that eat dogs. - -I don't say this is good or bad, I just want to point out, that the exceptions we make for pets are relatively new and that those animals also were seen as tools by many people.";False;False;;;;1610718811;;False;{};gjccq1n;False;t3_kxayvb;False;False;t1_gjbxazx;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjccq1n/;1610798520;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Opafin;;;[];;;;text;t2_2e26wawc;False;False;[];;imagine not just waiting for the whole thing to finish;False;False;;;;1610718900;;False;{};gjccvgs;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjccvgs/;1610798605;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;"Maybe I'm just reading this differently to how you meant it but I don't see how - -> People should stop expecting an only sports anime like haikyuu was, and start appreciating this new anime with new drama which for me is kind of unique. - -Is anything other than saying the reason people aren't enjoying it is because they expected something that the series isn't. Even now you're saying, of course there are *more* reasons. - -It just seems undermining of criticism, I'd be more amicable to the statement if it was more of question, like asking if that's why people might be a bit rocky with the show, but that's straight up a declaration and it frustrates me reading it because I play Volleyball, I want to like this show so the fact I'm down on it and not enjoying it and then seeing my opinion boiled down to ""well its just not what you wanted"" is a bit frustrating. - -It's like when someone tells me something I like is objectively bad, or something I like is overrated, tell me your opinion don't try and reframe mine.";False;False;;;;1610719281;;False;{};gjcdizn;False;t3_kxaa94;False;True;t1_gjcc2rh;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjcdizn/;1610798969;0;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;I see the point, but what does that have to do with mine?;False;False;;;;1610719711;;False;{};gjcea26;False;t3_kxaa94;False;True;t1_gjbe0tc;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjcea26/;1610799386;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cognitive_Dissonant;;;[];;;;text;t2_50imw;False;False;[];;"But what if someone wanted to start the practice in the real world. It's not hard to imagine it surely. - -I have no comment on the rest of your post it's not what I asked.";False;False;;;;1610720122;;False;{};gjcf00z;False;t3_kxayvb;False;True;t1_gjcac4n;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcf00z/;1610799786;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kai_-Jay;;;[];;;;text;t2_4a04tx4t;False;False;[];;Wow this episode ended on a depressing note.;False;False;;;;1610720712;;False;{};gjcg26d;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcg26d/;1610800389;2;True;False;anime;t5_2qh22;;0;[]; -[];;;F0LEY;;;[];;;;text;t2_6zrlb;False;False;[];;I think they're calling the show's equivalency false, not arguing whether the show is making that equivalency or not;False;False;;;;1610721040;;False;{};gjcgo0l;False;t3_kxayvb;False;True;t1_gjc3gs1;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcgo0l/;1610800738;2;True;False;anime;t5_2qh22;;0;[]; -[];;;F0LEY;;;[];;;;text;t2_6zrlb;False;False;[];;Good point;False;False;;;;1610721248;;False;{};gjch1lx;False;t3_kxayvb;False;True;t1_gjbwwkb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjch1lx/;1610800952;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Runforsecond;;;[];;;;text;t2_4a5axu2q;False;False;[];;To what end? It would be cannibalism. Two completely different circumstances.;False;False;;;;1610721349;;False;{};gjch88b;False;t3_kxayvb;False;True;t1_gjcf00z;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjch88b/;1610801056;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cognitive_Dissonant;;;[];;;;text;t2_50imw;False;False;[];;What is the moral weight of cannibalism in the scenario? What if it wasn't for humans to eat, it was for big game animals? Or what if it wasn't for the children to be eaten but instead to do labor?;False;False;;;;1610721585;;False;{};gjcho3q;False;t3_kxayvb;False;True;t1_gjch88b;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcho3q/;1610801311;1;True;False;anime;t5_2qh22;;0;[]; -[];;;F0LEY;;;[];;;;text;t2_6zrlb;False;False;[];;I get what you're saying, but a 5 year old human is SIGNIFICANTLY smarter than a pig. Pigs can not learn languages, maths, or how to use advanced tools. So far we haven't seen ANY difference in these two races' intelligence (heck, demons still seem to use spears and swords). This might not be the case later on of course, but it still doesn't seem closer to humans/pigs.;False;False;;;;1610721587;;False;{};gjcho9u;False;t3_kxayvb;False;True;t1_gjbqewl;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcho9u/;1610801315;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;F0LEY;;;[];;;;text;t2_6zrlb;False;False;[];;I mean, we could even just be vegetarian. I doubt the humans would care AS much if the big reveal was just that the demons needed their tears or sweat or something.;False;False;;;;1610721688;;False;{};gjchvax;False;t3_kxayvb;False;False;t1_gjbnyzm;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjchvax/;1610801430;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Reemys;;;[];;;;text;t2_o0hwpg4;False;False;[];;"> If they continue along the line that I'm worried they'll go (bird life = human life) then I might not be able to stay into the show. -That is normal, as you feel this cognitive discord between your own values and what this story might be arguing. I cannot say I appreciate this normalcy, naturally. - -The problem with morality is that... what is morality? There is religious morality, work ethics, code of law, humanist postulates and philosophical approach to the study of good and otherwise. All of these regulate what humans are supposed to do and what is considered beneath them. - -Based on at least one of them you have, at one point of your life, decided that eating animals is not as morally incorrect or acceptable as eating (or hurting) humans because humans posses that quality of higher intelligence. - -In this you inferred that intelligence has some sort of universal value and this value is to be preserved, but this is not an objective value that humans or contemporary machines can calculate. Lighting strikes both smart and stupid people as well as rabbits and deer. If sent to space, huskies will suffocate and astronauts will perish in explosions. - -There is not a single point of reference in material reality that can anchor intelligence as a value that justifies discriminate murder. All of this is based on the moral codification whichever humans decide to believe in today. Whether it suits them or makes them feel better. - -From the standpoint of hard logic, you are correct that there is an inherent value difference between a low-effort bio-construct such as an animal and an intricate, terra-forming bio-construct which will rather soon qualify as a deity. But this is so only because you yourself agree to believe it, based on justification that seems reasonable to you due to long process of identity formation. - -The worst thing you can do when faced with different set of moral values is take a higher moral ground. Instead of doing it you should consider and ponder what and why, how these are different from yours and if they make any more justifiable than those that define your self today. Only then you can tell that this is nonsense or otherwise, as honestly as it is possible for a human to acknowledge their inner self.";False;False;;;;1610721814;;1610722083.0;{};gjci42u;False;t3_kxayvb;False;False;t1_gjbyjk4;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjci42u/;1610801571;7;True;False;anime;t5_2qh22;;0;[]; -[];;;F0LEY;;;[];;;;text;t2_6zrlb;False;False;[];;I mean, closer to a free range gorilla farm, but yea;False;False;;;;1610721853;;False;{};gjci6qr;False;t3_kxayvb;False;True;t1_gjbkz8m;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjci6qr/;1610801615;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Runforsecond;;;[];;;;text;t2_4a5axu2q;False;False;[];;I don’t understand the difference or how putting it into the modern day makes sense as a question. It still relies entirely on the context. Demons eat meat, human meat is one of those things. However they acquired their initial human DNA, for all intents and purposes, humans in the farms are essentially farm animals to demons.;False;False;;;;1610721925;;False;{};gjcibs5;False;t3_kxayvb;False;True;t1_gjcho3q;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcibs5/;1610801701;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cognitive_Dissonant;;;[];;;;text;t2_50imw;False;False;[];;"If you think it makes no difference then I suppose your answer is ""yes if in the current day humans ate human meat as a practice, it would be fine"" in which case I am satisfied though baffled. - -The point of imagining it happening now is to figure out the reason why you (actually the original poster of the statement, but you as well) seem to think it's morally acceptable to raise a human child to kill and eat. From your responses it seems like you don't think it's unilaterally okay to do that but you're unsure why you think it's okay in the demon scenario but not in the human scenario. One way to figure out what the difference is for you is to imagine changing small parts of the scenario and seeing if you still think it's okay. - -As another example, what if it turns out in promised neverland that the demons aren't actually demons, they're humans with suits or modifications that make them appear demonic. All other aspects we have learned about the demon culture are the same. This is perfectly consistent with what we know now (the friendly demons were liars in this scenario) though it would be pretty bad writing. Does this change how you feel about the morality of the human farms?";False;False;;;;1610722421;;False;{};gjcjajy;False;t3_kxayvb;False;True;t1_gjcibs5;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcjajy/;1610802285;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sKyBlazer08;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sKyBlazer08;light;text;t2_17ibsr;False;False;[];;"Well that was fast, a whole tournament in a single episode. Though if it's just the prologue then, I guess it's understandable. - -Damn, they really talked trash about the one that carried their asses. If Haijima was openly arrogant about it, it's understandable but he was just doing his best for the team like damn, boy is trying to change slowly but surely. Hopefully this is a lesson for Yuni.";False;False;;;;1610722731;;False;{};gjcjwb8;False;t3_kxaa94;False;True;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjcjwb8/;1610802656;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Even if it was this fast in the source material, that’s no excuse;False;False;;;;1610723204;;False;{};gjcku8u;False;t3_kxaa94;False;True;t1_gjbzlbm;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjcku8u/;1610803240;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerdy314159265;;;[];;;;text;t2_752wc;False;False;[];;"They also mentioned that they had seen humans that talked to the demons as if they had the same standing. While we don't know the way the demon society works, the current best guess for why they could do that is that they are from the human side. - -That would also explain some things like the pen and book codes, because those would be best inserted by a human from the other side that sympathizes with the farmed humans and wants to help them escape.";False;False;;;;1610723386;;False;{};gjcl7p4;False;t3_kxayvb;False;True;t1_gjc9gft;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcl7p4/;1610803477;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Runforsecond;;;[];;;;text;t2_4a5axu2q;False;False;[];;"It makes no difference in the context of our modern society because there is no mass concept of other. Such a scenario could never exist. Camps of children raised to do labor do exist, but we as a society have evolved and said that such an existence goes against fundamental human rights. Game animals are merely animals. From the demons perspective as a different species, we are animals. - -As I implied from the start, it only morally changes the equation because we are human. From a demon’s perspective, there is no issue with eating a human and raising them on a farm. - -If the demons were actually humans, then yes, it entirely changes the scenario. It also makes no sense and would require leaps and bounds of logic and believability so extreme it would destroy the entire work. - -If however, they have evolved past the point of their original humanity a la Shin Sekai Yori, or body modification, Gargantia, then their origin no longer matters because they are not human. If they are still humans, but in suits, their actions and the farms are morally wrong.";False;False;;;;1610723450;;False;{};gjclcam;False;t3_kxayvb;False;True;t1_gjcjajy;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjclcam/;1610803565;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sygamar;;;[];;;;text;t2_33t81x0x;False;False;[];;Man you know a timeline is messed up when vegans are the good guys.;False;False;;;;1610723496;;False;{};gjclfmq;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjclfmq/;1610803628;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;"You have to consider though that there is an interesting issue here. Pigs can not learn languages or maths or tools, but pigs also *lack the physical capacity* for each of those things. They don't have larynxes as flexible as ours nor prehensile appendages. And when it comes to learning, it's a feedback loop; you need to be able to DO the thing to develop your brain more and more in the direction of understanding HOW the thing works. - -There's a dog on Instagram whose owner trained him to use a large keyboard on the ground to communicate. I'm not sure how legit the whole thing is, but it seems serious enough that actual scientists have wanted to examine him. The dog expresses simple concepts and asks for stuff using the keyboard - more or less the same as a very small human child would. And parrots, who are both very smart and able to speak our language, can certainly do more than just repeat words - though they can't sustain conversation, of course, they can understand the *meaning* of those words. That's not even getting into the vastly more complex brains of chimps and dolphins. - -In short, a gap in understanding and physical capacity can seem like a gap in intelligence to us. I'm not saying dogs or pigs are as smart as us, but they might be closer than we think, and the gap might be also due to the positive, explosive feedback loop we experience between ability to think and ability to turn our thoughts into physical action. Consider a human being raised as an animal, alone, without stimulation - it has happened in the past, sadly. They hardly come out all that smarter than a mere animal.";False;False;;;;1610723609;;False;{};gjclnu2;False;t3_kxayvb;False;False;t1_gjcho9u;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjclnu2/;1610803775;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Eckish;;;[];;;;text;t2_6b8ao;False;False;[];;"We also know that some demons already sympathize with the humans. So, it is completely possible that the William Minerva is a demon and the books and tools are coming from demons. - -My current hypothesis is that the religion mentioned in this episode is going to be a bigger plot element later.";False;False;;;;1610724082;;False;{};gjcmmry;False;t3_kxayvb;False;True;t1_gjcl7p4;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcmmry/;1610804425;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cognitive_Dissonant;;;[];;;;text;t2_50imw;False;False;[];;So your position is that what makes killing humans immoral is that we are the same species?;False;False;;;;1610724253;;False;{};gjcmz9j;False;t3_kxayvb;False;True;t1_gjclcam;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcmz9j/;1610804657;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Runforsecond;;;[];;;;text;t2_4a5axu2q;False;False;[];;What makes eating humans immoral is that we are the species.;False;False;;;;1610724316;;False;{};gjcn3vb;False;t3_kxayvb;False;True;t1_gjcmz9j;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcn3vb/;1610804741;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cognitive_Dissonant;;;[];;;;text;t2_50imw;False;False;[];;So if we had some other use for farming and killing humans it would be fine?;False;False;;;;1610724467;;False;{};gjcnf1o;False;t3_kxayvb;False;False;t1_gjcn3vb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcnf1o/;1610804935;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Runforsecond;;;[];;;;text;t2_4a5axu2q;False;False;[];;It’s not about humans, it’s about the demons.;False;False;;;;1610724554;;False;{};gjcnlda;False;t3_kxayvb;False;True;t1_gjcnf1o;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcnlda/;1610805045;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cognitive_Dissonant;;;[];;;;text;t2_50imw;False;False;[];;Sure we can do it that way, if the demons had demon farms but they didn't eat them they just slaughtered them for religious purposes or used their bodies as industrial ingredients, it would be fine?;False;False;;;;1610724669;;False;{};gjcntu5;False;t3_kxayvb;False;False;t1_gjcnlda;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcntu5/;1610805198;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Runforsecond;;;[];;;;text;t2_4a5axu2q;False;False;[];;"I don’t know because I’m not a demon. - -From a human species morality perspective it wouldn’t be, but their species may feel different.";False;False;;;;1610725135;;False;{};gjcosa1;False;t3_kxayvb;False;True;t1_gjcntu5;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcosa1/;1610805819;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cognitive_Dissonant;;;[];;;;text;t2_50imw;False;False;[];;"But you were comfortable stating what is moral for demons in terms of farming the humans to eat? - -Also it now sounds like you are moving to a moral-relativist position, that morality is just a list of prevailing social norms. If that's the case I'm not sure why you had such a problem with the human farms earlier. There were definitely cultures where the prevailing norms allowed cannibalism in specific circumstances. And of course slavery was acceptable under the prevailing social norms for almost all of human history, so for those people the practice was perfectly moral.";False;False;;;;1610725657;;False;{};gjcpuon;False;t3_kxayvb;False;True;t1_gjcosa1;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcpuon/;1610806514;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shadow_Swap;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4db8be68;False;False;[];;It's Gupna not Gupta lol. I thought she used an Indian on Connie by your comment.;False;False;;;;1610725674;;False;{};gjcpw0l;False;t3_kxayvb;False;False;t1_gjbajk4;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcpw0l/;1610806539;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Runforsecond;;;[];;;;text;t2_4a5axu2q;False;False;[];;"There’s no reason to believe that demon morals cannot evolve, just like human morals evolved. - -Species norms and cultural norms are different, and universal norms are another matter entirely. If we as a species come together and collectively decide something is moral than it must be. As such, I can’t state what is moral for a demon, as they are a different species. I made the assumption that it was moral for demons to eat humans since that is started the conflict. There is however, no reason to believe it is not amoral for demons to eat humans, and that these demons are merely a small faction of an all together larger species.";False;False;;;;1610726094;;False;{};gjcqrk1;False;t3_kxayvb;False;True;t1_gjcpuon;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcqrk1/;1610807131;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cognitive_Dissonant;;;[];;;;text;t2_50imw;False;False;[];;"So your assumption was that because something is done it is moral for that species? How much of a majority does a given act need to be considered moral? - -Also regarding moral change over time, doesn't that mean that moral change is itself amoral? E.g., when slavery was acceptable, slavery was moral. At some point the requisite majority of humans decided no, slavery is immoral. But that's not progress it's just change. We're equally as moral now as we were then. In fact, we could come together and decide as a species to start doing slavery again, and that would also just be our species morality changing. If not, then there must be some universal standard, outside of what is moral for our species, that we are comparing our species morality to. - -And if we are willing to admit that yes, a universal standard for morality exists that we can compare our species morality to (which you sort of allude to in this post) then *that* is what I am asking about when I am asking if something is moral. I don't care what the majority of people think is moral (as that has proven in the past to be wrong, in my opinion, slavery is the easy example) I care about what is actually moral.";False;False;;;;1610726557;;False;{};gjcrqno;False;t3_kxayvb;False;True;t1_gjcqrk1;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcrqno/;1610807847;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Rednetthall;;;[];;;;text;t2_103gpk;False;False;[];;"Okay let me put this out here now - - -Demons don't need to eat humans. - -Demons CHOOSE to eat humans because of taste. - -Demons were put on the back foot because humans fight harder then them. -Humans gave them farm-able people as a MERCY. - - -Do Not Sympathize or use False equivalency for the demons. - -The religious ""Demons"" prove that there can be a world with humans and demons hand in hand but they won't give up their carving.";False;False;;;;1610726855;;False;{};gjcscuc;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcscuc/;1610808294;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Runforsecond;;;[];;;;text;t2_4a5axu2q;False;False;[];;"No way to tell, there’s too many factors to consider and arrogance to assume universal rights from one species exist across different species. Biologically, it’s moral for certain species to cannibalize one another since that is how they survive. - -Whether it’s right or wrong to raise human children to eat is within the same context as whether annihilating a city of thousands to save untold millions. If these demons. are the only specifies of their kind to exist, is it moral to eliminate them so there is no more need for the farms? Is it moral to assume one viewpoint of a minority is the correct choice, or that the ability to not eat human meat makes the demons any less moral than eating any other kind of animal meat?";False;False;;;;1610727395;;False;{};gjctimk;False;t3_kxayvb;False;True;t1_gjcrqno;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjctimk/;1610809099;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Golden_Phi;;MAL;[];;http://myanimelist.net/animelist/GoldenPhi;dark;text;t2_imrcw;False;False;[];;It was autocorrect’s fault. I did not see that until now.;False;False;;;;1610727781;;False;{};gjcucrw;False;t3_kxayvb;False;False;t1_gjcpw0l;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcucrw/;1610809660;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Cognitive_Dissonant;;;[];;;;text;t2_50imw;False;False;[];;"Okay so no universal morality, morality stops at the highest level of species. And morality is what a species consistently does to survive and the majority agrees is acceptable. That's a consistent if unconventional position. But you are committed to the conclusions I mentioned previously, that you think slavery was moral at the time, and could become moral again. And in fact that human children farms could be moral in the future, if it becomes what humanity does to survive and agrees is acceptable. - -Regarding your other questions: - - I don't think killing a city to save many is very similar to raising humans for meat, as raising humans for meat saves no one (unless eating humans is compulsory, which thus far we have been told it is not). - -Regarding eliminating a minority of demons that eat humans, under your framework that is entirely dependent on what the majority of demons think. It could be moral for the demons to wipe them out, it could moral for the majority of demons to enslave them, it could be moral for the majority demons to capture them all and torture them to death. They just need to have a metaphorical vote. So that question is easy. - -Is it moral to assume one minority viewpoint is correct? Under your frame work no, by definition the minority viewpoint is immoral. Being a minority viewpoint is literally the definition of immoral. - -Regarding eating humans versus any other kind of animal meat? I think there are arguments to be made that they are different, some better than others. In the end I do think they are too similar, and take them both to be immoral. But I can respect arguments that point to the difference in cognitive capability and sentience (in the philosophical sense, not in the biological sense where sentience just means able to perceive, more or less). - -In your framework though, again, the answer is easy. Does the majority of the species consider them to be equivalent or not? Humans could actually say that eating humans is moral and eating any other animal is not, and under your framework that would be moral. Maybe we decide that if a human gets the pleasure of eating meat, a human should pay the price, as a kind of interspecies justice. Or maybe we just decide we like human meat better and everyone starts doing it. The explanation itself doesn't actually matter.";False;False;;;;1610728243;;False;{};gjcvcqz;False;t3_kxayvb;False;False;t1_gjctimk;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcvcqz/;1610810366;1;True;False;anime;t5_2qh22;;0;[]; -[];;;F0LEY;;;[];;;;text;t2_6zrlb;False;False;[];;"fair, though yes: Bunny the dog IS a scam. The trainer has already started selling her ""button pack"" and guide so that you too can have a talking dog.";False;False;;;;1610728606;;False;{};gjcw55a;False;t3_kxayvb;False;False;t1_gjclnu2;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcw55a/;1610810916;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Commander70;;;[];;;;text;t2_nzg28;False;False;[];;Those techs might just be from other humans that they keep at their side.;False;False;;;;1610729381;;False;{};gjcxtnx;False;t3_kxayvb;False;True;t1_gjaa2g4;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjcxtnx/;1610812093;1;True;False;anime;t5_2qh22;;0;[]; -[];;;raf-owens;;;[];;;;text;t2_ibkni;False;False;[];;"I read the manga so I already know what happens, but if someone leaves a comment saying ""some information a character gave this episode isn't actually true but I'm not explaining!"" that's basically a spoiler.";False;False;;;;1610730208;;False;{};gjczn3x;False;t3_kxayvb;False;True;t1_gjbwqib;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjczn3x/;1610813373;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;Well, selling the buttons in itself doesn't make it a scam. But certainly I don't think ALL the videos are to be taken at face value, cherry picking and confirmation bias seem to be the obvious sources of error, even in good faith, with these things. We're extremely good at seeing patterns where there are none. Anyway Bunny's not even the only dog that has been trained for this, just the most famous.;False;False;;;;1610730377;;False;{};gjd006g;False;t3_kxayvb;False;True;t1_gjcw55a;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjd006g/;1610813628;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SolizeMusic;;;[];;;;text;t2_wc1bd;False;False;[];;Alternatively, you could leave some shows to watch during the spring season because I doubt this spring will be anything remotely as stacked as this winter.;False;False;;;;1610730512;;False;{};gjd0av8;False;t3_kxayvb;False;True;t1_gj9wpla;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjd0av8/;1610813839;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;">Why did people think it was going to be sport focused? - -Not one person in this thread has said that I swear, people not liking it doesn't automatically mean they thought it was going to be more sports focused.";False;False;;;;1610730587;;False;{};gjd0grr;False;t3_kxaa94;False;True;t1_gjc749q;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjd0grr/;1610813950;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Cire101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cire101;light;text;t2_oryv2;False;False;[];;"That makes me wonder though, does this mean maybe the humans *aren't* the good guys? If you think about it, demons treat humans pretty decently up until their death before eating them(even that flower is ""painless"" too). Humans could've done worse to the demons? - -Idk, maybe I'm 5D chessing my expectations of this show lol";False;False;;;;1610731249;;False;{};gjd1xji;False;t3_kxayvb;False;False;t1_gj9hnzu;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjd1xji/;1610815040;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Optimal_Bit_5600;;;[];;;;text;t2_7grjdzkt;False;False;[];;Likewise, although I wouldn't be at all surprised if she's executed off screen for letting so many kids escape. It'd be a gut punch if Emma and the others return to the Grace Field house to rescue the rest of the kids, only to see a different Mom running the place.;False;False;;;;1610732242;;False;{};gjd44bi;False;t3_kxayvb;False;True;t1_gj9sfxm;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjd44bi/;1610816608;3;True;False;anime;t5_2qh22;;0;[]; -[];;;olivedi;;;[];;;;text;t2_141imi3;False;False;[];;God this scares me, because there’s no way they successfully escape without deaths and I don’t anybody to die 😭;False;False;;;;1610732443;;False;{};gjd4kc3;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjd4kc3/;1610816911;1;True;False;anime;t5_2qh22;;0;[]; -[];;;prrg;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/prrg/;light;text;t2_j0167;False;False;[];;"Yep, I'm surprised so many people apparently didn't get that this is what the scene was going for. - -As a manga reader, I was hoping the entire time they'd finish the episode with this scene, because it basically spits in the face of the rest of the episode's events, and it fits so well. Not only does it destroy the idea that saving the cattle children would be inherently morally good (instead portraying it as a more selfish desire to live even if that means trampling over other living beings), it also immediately puts a barrier between Emma (who has positioned herself to be the one who has to kill to feed her family) and everyone else. It's a huge bummer ending but it perfectly encapsulates the two topics covered in the episode.";False;False;;;;1610733260;;False;{};gjd6cr0;False;t3_kxayvb;False;False;t1_gjbiehr;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjd6cr0/;1610818108;3;True;False;anime;t5_2qh22;;0;[]; -[];;;prrg;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/prrg/;light;text;t2_j0167;False;False;[];;Do the demons know of the pen coordinates though? If they did would they let the pen get in the hands of cattle humans? After all you need the pen to actually follow the coordinates. If they know of the pen, then the children have a bigger problem coming because there's no way they haven't already raided 06-32.;False;False;;;;1610734037;;False;{};gjd82h1;False;t3_kxayvb;False;True;t1_gjamyhi;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjd82h1/;1610819324;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheInventeur;;;[];;;;text;t2_xcjaq;False;False;[];;Pretty sure he made a mistake. He left a message when they separated in case the other kids returned to look for him saying to move on to the location they discussed on the pen map. Now the enemy might have information they should not. That's what I thought happened anyways.;False;False;;;;1610734300;;False;{};gjd8n1z;False;t3_kxayvb;False;False;t1_gjabajd;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjd8n1z/;1610819744;1;True;False;anime;t5_2qh22;;0;[]; -[];;;is_it_marcs_or_alice;;;[];;;;text;t2_9lrlg5v8;False;False;[];;Ok thanks for the help!;False;False;;;;1610741714;;False;{};gjdoj7e;False;t3_kxayvb;False;True;t1_gjaluep;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjdoj7e/;1610830925;2;True;False;anime;t5_2qh22;;0;[]; -[];;;getintheVandell;;;[];;;;text;t2_6pbak;False;True;[];;Blows my mind that people still think this show isn't analogous to eating meat.;False;False;;;;1610742452;;False;{};gjdq39s;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjdq39s/;1610831954;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nanashi-74;;;[];;;;text;t2_5x0k2vam;False;False;[];;"When Sonju finished explaining everything and they looked horrified I was like ""but that's great right? Exactly what they wanted"" and then they proceeded to cheer lol";False;False;;;;1610742611;;False;{};gjdqf9f;False;t3_kxayvb;False;True;t1_gj96o7a;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjdqf9f/;1610832171;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nanashi-74;;;[];;;;text;t2_5x0k2vam;False;False;[];;Tbh it's in basically every shonen. Righteous flamboyant protagonist goes dark when situation demands it. Goku, Luffy, Naruto and that's just the big 3 off the top of my head;False;False;;;;1610742823;;False;{};gjdqvam;False;t3_kxayvb;False;True;t1_gjbvaf3;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjdqvam/;1610832481;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nanashi-74;;;[];;;;text;t2_5x0k2vam;False;False;[];;"They don't have the knowledge that people used to hunt for food right? If so I get how this ""killing animals"" thing is hard on her but I'm still kinda like ""it's animals Emma, not the same as killing humans"" but I get how people may think different.";False;False;;;;1610743011;;False;{};gjdr9aw;False;t3_kxayvb;False;True;t1_gjb3qpg;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjdr9aw/;1610832742;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nanashi-74;;;[];;;;text;t2_5x0k2vam;False;False;[];;"Emma's best call would be to cross the border amd be kind of an activist for change. Because this plan would go to shit if it was ""for real""";False;False;;;;1610743138;;False;{};gjdris7;False;t3_kxayvb;False;True;t1_gj9hnzu;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjdris7/;1610832920;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tearorize55;;;[];;;;text;t2_61ijlzsy;False;False;[];;"""anything to win"" doesn't specifically mean running yourself ragged and working your butt off. Hajima needed people to join. You need 6 players to play volleyball and that's still a bad situation. You need subs in cases of injuries as well as to fill certain required niches and positions. It's true he helped them and didn't focus in one one, but again you could argue that he was doing that because he wanted to win. If he only trained 1 person, it would still be extremely difficult to win. I still don't see it as nice, as him training the others who helping him to achieve his goal. - -I really don't think Hajima actually said ""you're useless"", but his actions did. He took complete control of the game, and did everything himself. He ignored his teammates work and practise all to win that one game. To me that says ""you're useless"" without the words actually coming out of your mouth. - -You're right, it's not his fault they fell apart. But he made no attempt to help. He didn't encourage Yuni or offer advice, he kept giving him the ball and watching him get worse and worse. And I'm not sure what you mean ""it was very clearly never his desire to do so"". We found out after the next match that he didn't enjoy doing that. I don't recall any hints before that. He simply decided he wanted to win the game, starting playing other people's positions, ignored his teammates feelings all while not communicating with them. - -In any case, I do see where you're coming from, I just don't agree. We'll just have to agree to disagree on this one!";False;False;;;;1610748047;;False;{};gje1m46;False;t3_kxaa94;False;True;t1_gjaeto5;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gje1m46/;1610839747;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tearorize55;;;[];;;;text;t2_61ijlzsy;False;False;[];;"You've got a fair point back, but I have to ask the following question: shouldn't every series have likable characters? - -Don't get me wrong, give your characters flaws but I feel like they should have some sort of likable quality. Look at Askeladd from Vinland Saga or Light from Death Note. They were horrible people, but despite their flaws they were somehow likable. - -I completely agree that seeing them grow and learn from their mistakes would be an awesome story, but I can't get invested in that growth if I don't like anything about them in the first place. - - With that said, I have noticed my favorite series to always have characters I adore even if the plot is garbage, so maybe I just think that likable characters = a good story.";False;False;;;;1610748545;;False;{};gje2lza;False;t3_kxaa94;False;True;t1_gjatw41;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gje2lza/;1610840401;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NoraaTheExploraa;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/NoraaTheExploraa/;light;text;t2_hx789;False;False;[];;"Sure, I can agree to disagree. We seem to pretty much agree on what actually went down so it's just personal interpretation of his actions we differ on. - ->""it was very clearly never his desire to do so"" - -What I meant by this was that he didn't *want* to play solo. He didn't want to take control and play everyone's role for them. He was forced into two choices, take control and win or carry on playing as a team and lose. To me personally I feel like it's his responsibility as a member of the team to play his best. They were going to lose. If he knows a way to win I think any understanding teammates would gladly encourage him to do it. I know I would. It's not a sustainable way to play, obviously, but he knows that. It was a one time sneak attack. He should have communicated that to them better, sure, but I really feel it's on them for being trained by this guy for weeks and throwing him completely under the bus just because he... what? Didn't give them a chance to play? He gave them *more* chance to play, if anything. They just moped around and screwed it up.";False;False;;;;1610748970;;False;{};gje3g0r;False;t3_kxaa94;False;False;t1_gje1m46;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gje3g0r/;1610840940;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Shortstop88;;;[];;;;text;t2_b6ar6;False;False;[];;"Reminds me of: - -""We have you surrounded."" -""I like those odds.""";False;False;;;;1610751126;;False;{};gje7nvg;False;t3_kxayvb;False;False;t1_gj9xf7n;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gje7nvg/;1610843728;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SuperWaiter123;;;[];;;;text;t2_5i4rkc2;False;False;[];;And Killua and Ray have the same voice actor. The comparisons get even deeper!;False;False;;;;1610753488;;False;{};gjec47j;False;t3_kxayvb;False;False;t1_gjbqoyl;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjec47j/;1610846551;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ArchadianJudge;;;[];;;;text;t2_dk2pa;False;True;[];;Those two demon friends are so nice. Saved them, took care of them, then now teaching them how to survive. It's nice that there's hope that not everyone out there is evil. I like how we're slowly learning more about this mysterious outside world.;False;False;;;;1610757315;;False;{};gjej807;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjej807/;1610850961;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AussieManny;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Nauran;light;text;t2_13tmtu;False;False;[];;"Situation is still dire, but confirmation of somewhere they can actually go and be safe is definitely good to hear. - -I'm assuming this season is gonna be about getting there... which is likely not gonna be easy.";False;False;;;;1610757547;;False;{};gjejneu;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjejneu/;1610851226;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ckowkay;;;[];;;;text;t2_kgpve;False;False;[];;">The secret to Ray's cooking is MSG. - -yeah I was wondering, do they have access to salt or something?";False;False;;;;1610759978;;False;{};gjeo43l;False;t3_kxayvb;False;True;t1_gj96o7a;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjeo43l/;1610854202;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Webly99;;;[];;;;text;t2_8yrgllpu;False;False;[];;Sadly yes;False;False;;;;1610761435;;False;{};gjeqrdx;False;t3_kxayvb;False;True;t1_gj9ph8c;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjeqrdx/;1610855854;1;True;False;anime;t5_2qh22;;0;[]; -[];;;eio_uwu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/riri_no_lily;light;text;t2_5722m2d2;False;False;[];;"i’m so happy that this anime seems to be more of a drama. at first i was thinking of dropping it because of the pace of the show and how they skipped past all the training, etc ,, something just felt off. but by the end of episode one i realized “oH it’s THIS type of anime” and i decided to give it a shot. - -very interesting for a sports anime since we have not seen something similar to this in a while. just pissed toxic haikyuu fans are shitting on this just because it’s not similar to haikyuu :/";False;False;;;;1610764327;;False;{};gjew1t7;False;t3_kxaa94;False;True;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjew1t7/;1610858982;1;True;False;anime;t5_2qh22;;0;[]; -[];;;eio_uwu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/riri_no_lily;light;text;t2_5722m2d2;False;False;[];;"manga reader here ! - -i’m not gonna lie, yeah the adaptation isn’t perfect (especially episode 1), but i think the pacing this episode was MUCH better. the team behind this series know what they’re doing with the ending of each episode. i’m SO excited for anime-only watchers — y’all are in for a WILD ride, trust me";False;False;;;;1610764435;;False;{};gjew8xi;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjew8xi/;1610859097;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Steve_Gray;;;[];;;;text;t2_57o1dyer;False;False;[];;nice set up episode here is my review [https://www.youtube.com/watch?v=aDH4gZ5BE7I](https://www.youtube.com/watch?v=aDH4gZ5BE7I);False;False;;;;1610764464;;False;{};gjewatr;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjewatr/;1610859127;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerdy314159265;;;[];;;;text;t2_752wc;False;False;[];;The pen we are shown/is heavily implied to be from a human.;False;False;;;;1610766093;;False;{};gjez77r;False;t3_kxayvb;False;True;t1_gjcmmry;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjez77r/;1610860860;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lead_salad;;MAL;[];;http://myanimelist.net/animelist/acharis;dark;text;t2_9vw5a;False;False;[];;Seeing Sonju's reaction to the word *demon*, that was my first thought. It's not going to ruin my enjoyment of the series, but it's something I'm really curious about!;False;False;;;;1610766273;;False;{};gjezicf;False;t3_kxayvb;False;True;t1_gj9ph1p;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjezicf/;1610861045;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuyou_lilienthal_yu;;;[];;;;text;t2_74nij6hu;False;False;[];;"That lore drop felt like something they would hold back for five episodes after teasing it by a post explanation cut so I'm glad to get the answer straight away! - -Reallllly hope nomadic demons don't become blood lusted at the temptation of humans ala sharks from nemo O-o";False;False;;;;1610767575;;False;{};gjf1pyr;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjf1pyr/;1610862345;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lartkma;;;[];;;;text;t2_11w45u;False;False;[];;"I was thinking like you at S1, and while watching this episode I thought it was referring to that ""human half"". - -But now I realized... the human farms are part of the ""promise"" made to the demons... And is not ""Neverland"" a place where children don't grow up?! Holy shit! - -**GRACE FIELD WAS THE PROMISED NEVERLAND ALL THIS TIME.** THEY ARE ESCAPING FROM IT.";False;False;;;;1610767917;;False;{};gjf2aiu;False;t3_kxayvb;False;True;t1_gj9pkxl;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjf2aiu/;1610862674;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sew_chef;;;[];;;;text;t2_7xse4595;False;False;[];;I think it might be a good thing, narratively, for Emma to gloss over it though. It sets up a situation later on when the kids eventually find out (she can't hunt *all* the meat herself) where they justifiably freak out over it. But I do agree that seeing *Emma* just go with it is weird. You'd think that she of all people would see the inherent irony of it.;False;False;;;;1610768926;;False;{};gjf3xq7;False;t3_kxayvb;False;True;t1_gjb2sir;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjf3xq7/;1610863596;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sew_chef;;;[];;;;text;t2_7xse4595;False;False;[];;They for sure know about humans hunting animals since there were adventure books in the library and they've eaten meat on the farm. Killing animals (even for survival) should be obviously different from killing humans but Emma has experience *being the animal* and she definitely has PTSD from watching her friends die. It's probably hard for her to divorce herself from the terror of learning they're seen as nothing more than an animal to the demons.;False;False;;;;1610769354;;False;{};gjf4n4c;False;t3_kxayvb;False;True;t1_gjdr9aw;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjf4n4c/;1610863992;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sew_chef;;;[];;;;text;t2_7xse4595;False;False;[];;Oh my god you're right. There are definitely farms that look like [Matrix style incubator towers](https://cdn-images-1.medium.com/max/1600/1*Hg30RBeTJ2nBvcd1ctWp0g.jpeg) where kids are sedated and fed via tube for low-quality, high-quantity meat.;False;False;;;;1610769647;;False;{};gjf54d7;False;t3_kxayvb;False;False;t1_gjc336u;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjf54d7/;1610864251;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Sew_chef;;;[];;;;text;t2_7xse4595;False;False;[];;Yeah it'd be like judging the military power of the US based on Farmer Larry chasing down a varmint with his 12 gauge.;False;False;;;;1610769851;;False;{};gjf5gee;False;t3_kxayvb;False;True;t1_gjaa2g4;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjf5gee/;1610864428;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sew_chef;;;[];;;;text;t2_7xse4595;False;False;[];;I've begun rewatching Log Horizon S1 and 2 since it's been literally 8 years since I watched them. Every time I get nostalgia from an episode it [brings a tear to my eye](https://cdn.discordapp.com/attachments/537831886370897930/799156921122291762/unknown.png).;False;False;;;;1610770402;;False;{};gjf6cfs;False;t3_kxayvb;False;True;t1_gja02xc;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjf6cfs/;1610864916;3;True;False;anime;t5_2qh22;;0;[]; -[];;;circlebust;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jamais_vu;light;text;t2_dr5zq;False;False;[];;"""It's part of the agreement"" - -The demon used the word ""yakusoku"", if anyone missed it. The quasi-namedrop later was much weaker. - -Obviously you can cross between the two worlds. They all are dressed in circa 1900 attire (with shorter skirts). The adults of demon Earth must consume culture and media of human Earth, and perhaps stay in some other form in contact. - -They want to save the kids from other farms as well? I am not entirely sure if we can pull another Emma, Emma. One total loss of product can be chalked up to bad managment. Multiple ones would be human insurrection, which still would not be that bad if it weren't for them crossing into our world. I could easily see it leading to war between the two worlds. It'd be a diplomatic incident, Emma. Please read more geopolitics. - -That raises the question, would the demons even have a chance? Humanity isn't comparable to us 1000 years ago -- and we stil gave them a good fight back then. The demons still seem to be using bladed weapons as their weapon of choice. But who knows, maybe more advanced weapons for them is the nuclear option to us: they would only use them in situations of extreme desperation, like a liberation invasion by human Earth would be. If not for weapons then I only see the demons having a winning chance (they would still give us one hell of a fight, though, but presumably purely in skirmishes) if they have access to some form of magic.";False;False;;;;1610777850;;1610778128.0;{};gjfh335;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjfh335/;1610870764;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;For all you know humans can be super nutritious. I mean do you see how buff the farm demons are compared to these religious nerds?;False;False;;;;1610778696;;False;{};gjfi4x1;False;t3_kxayvb;False;True;t1_gjabl4f;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjfi4x1/;1610871353;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;When you say they fought the demons to a stalemate, you have to remember that in Attack on Titan the humans of the wall fought the Titans to a stalemate. Cannon fodder is very effective.;False;False;;;;1610778896;;False;{};gjfidql;False;t3_kxayvb;False;True;t1_gj9hnzu;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjfidql/;1610871496;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;Save it for the Hentai buddy;False;False;;;;1610779087;;False;{};gjfim5w;False;t3_kxayvb;False;True;t1_gj9wiod;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjfim5w/;1610871636;0;True;False;anime;t5_2qh22;;0;[]; -[];;;dogboy_F;;;[];;;;text;t2_4l8mghau;False;False;[];;Why? Do you have a problem with Muslims? Lmao;False;False;;;;1610779756;;False;{};gjfjezs;False;t3_kxayvb;False;True;t1_gjbd5aj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjfjezs/;1610872088;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LethalCS;;;[];;;;text;t2_er74b;False;False;[];;Not at all lol. The alternative name to vegan demon just genuinely sounds similar to the islamophobic shit I’d hear from rednecks in a yeeyee ass town I spent a few years in over a decade ago and with no context someone would probably vastly misinterpret the name despite us literally talking about an anime lol;False;False;;;;1610780246;;False;{};gjfjzev;False;t3_kxayvb;False;True;t1_gjfjezs;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjfjzev/;1610872405;1;True;False;anime;t5_2qh22;;0;[]; -[];;;graves44;;;[];;;;text;t2_7lltp;False;False;[];;MSG? Uncle Roger approves;False;False;;;;1610780340;;False;{};gjfk3a2;False;t3_kxayvb;False;True;t1_gj96o7a;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjfk3a2/;1610872465;1;True;False;anime;t5_2qh22;;0;[]; -[];;;F0LEY;;;[];;;;text;t2_6zrlb;False;False;[];;Religious nerds seem faster at the very least;False;False;;;;1610784017;;False;{};gjfo10t;False;t3_kxayvb;False;True;t1_gjfi4x1;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjfo10t/;1610874599;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dogboy_F;;;[];;;;text;t2_4l8mghau;False;False;[];;That’s fair;False;False;;;;1610784764;;False;{};gjforo0;False;t3_kxayvb;False;True;t1_gjfjzev;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjforo0/;1610874993;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lefaid;;;[];;;;text;t2_75ayh;False;False;[];;"That applies to a lot of Jewish people as well. Kosher meat isn't only ""not pig"" and ""not been around milk"" but also has to be from an animal slaughtered in a specific way.";False;False;;;;1610785160;;False;{};gjfp5oj;False;t3_kxayvb;False;True;t1_gj9uyv0;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjfp5oj/;1610875193;2;True;False;anime;t5_2qh22;;0;[]; -[];;;__bacs;;;[];;;;text;t2_1hyovv64;False;False;[];;The world building got me looking forward to this show. Feels like im watching made in Abyss again..;False;False;;;;1610786136;;False;{};gjfq3l7;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjfq3l7/;1610875687;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BandAid-Kun66;;;[];;;;text;t2_9rnwkaud;False;False;[];;Ummnn....idk.. this felt a little bit fast paced~~;False;False;;;;1610786613;;False;{};gjfqkc1;False;t3_kxaa94;False;True;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjfqkc1/;1610875930;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Pitiful-Ad-5247;;;[];;;;text;t2_9iu4p2rj;False;False;[];;already seen;False;False;;;;1610788678;;False;{};gjfskaz;True;t3_kx9wgb;False;True;t1_gj8zjhr;/r/anime/comments/kx9wgb/some_anime_recommendation_please/gjfskaz/;1610876985;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pitiful-Ad-5247;;;[];;;;text;t2_9iu4p2rj;False;False;[];;already seen;False;False;;;;1610788699;;False;{};gjfsl1y;True;t3_kx9wgb;False;True;t1_gj8x2sr;/r/anime/comments/kx9wgb/some_anime_recommendation_please/gjfsl1y/;1610876996;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"Started it yesterday and there really is something special about it. I'm happy I picked it up and can't wait for the new episode today - -[](#scrumptiouslymoe)";False;False;;;;1610788701;;False;{};gjfsl52;False;t3_kxayvb;False;True;t1_gja2c3s;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjfsl52/;1610876997;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pitiful-Ad-5247;;;[];;;;text;t2_9iu4p2rj;False;False;[];;already seen;False;False;;;;1610788727;;False;{};gjfsm05;True;t3_kx9wgb;False;True;t1_gj8vhnx;/r/anime/comments/kx9wgb/some_anime_recommendation_please/gjfsm05/;1610877009;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;Awesome, glad you enjoyed it, really is a great romance.;False;False;;;;1610790273;;False;{};gjfu1wb;False;t3_kxayvb;False;True;t1_gjfsl52;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjfu1wb/;1610877767;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ritchuck;;;[];;;;text;t2_16zv69;False;False;[];;We just don't need to kill old dogs anymore to make tools out of them. If I was in a survival situation I would probably skin my dog when her time was up, and I absolutely love this animal.;False;False;;;;1610794560;;False;{};gjfymwb;False;t3_kxayvb;False;True;t1_gjccq1n;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjfymwb/;1610880109;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Omnibobbia;;;[];;;;text;t2_46m0j88j;False;False;[];;Guys can Someone tell me why the children ears aren't cut off. Don't they all have tracking device or something? It's been so long since S1 I've forgotten some stuff;False;False;;;;1610794870;;False;{};gjfz69r;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjfz69r/;1610880346;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Otter-D-Water-Rat;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_49oh0orc;False;False;[];;I hate klifhangers;False;False;;;;1610795327;;False;{};gjfzz0c;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjfzz0c/;1610880699;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Calfthecow;;;[];;;;text;t2_4ox85eot;False;False;[];;Yeah, but the same goes for livestock animals. We don't have to kill them anymore, but we still do.;False;False;;;;1610799874;;False;{};gjg7wax;False;t3_kxayvb;False;True;t1_gjfymwb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjg7wax/;1610884251;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RDOoM;;;[];;;;text;t2_i9bs4;False;False;[];;"Ema found hope that there are humans out there that can welcome the kids among them... - -And here I am imagining that thanks to the described agreement, even if Ema were to get to the wall AND go beyond it, the humans would rather maintain the peace deal and ship the kids right back to where they came from. Even more, that the monsters will insist upon it if peace were to be maintained. And they would be kind of justified too. - -The kids might end up being nomads in monster-land, like those two monsters helping them.";False;False;;;;1610800168;;False;{};gjg8fbh;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjg8fbh/;1610884499;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kreinster;;;[];;;;text;t2_wb3r6;False;False;[];;"""If we want to live, and have to eat to survive... - -What does that say about demons?""";False;False;;;;1610800658;;False;{};gjg9b8p;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjg9b8p/;1610884908;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kreinster;;;[];;;;text;t2_wb3r6;False;False;[];;I mean, pretty sure that Emma can still hear out of the cavity. Not having an auricle messes with your hearing in several interesting ways, sure, but the ear itself is deeper in the head.;False;False;;;;1610801351;;False;{};gjgakv0;False;t3_kxayvb;False;True;t1_gjahw6m;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjgakv0/;1610885503;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kreinster;;;[];;;;text;t2_wb3r6;False;False;[];;">Sonju says he remembers being called like that in past - -If nobody crossed the wall in a thousand years... I wonder how that happened to him, then.";False;False;;;;1610801438;;False;{};gjgaqh8;False;t3_kxayvb;False;True;t1_gja1ivi;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjgaqh8/;1610885577;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kreinster;;;[];;;;text;t2_wb3r6;False;False;[];;If it turns out that demons HAVE to eat human brains to live, then I wonder if eating a demon's brain accounts for that need.;False;False;;;;1610801539;;False;{};gjgaxl4;False;t3_kxayvb;False;True;t1_gj9nq62;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjgaxl4/;1610885671;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ritchuck;;;[];;;;text;t2_16zv69;False;False;[];;Well, I don't want to go into that because we were talking about dogs.;False;False;;;;1610801987;;False;{};gjgbsef;False;t3_kxayvb;False;True;t1_gjg7wax;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjgbsef/;1610886080;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KaiserNazrin;;;[];;;dark;text;t2_h8zvz;False;False;[];;I'll keep moving forward...until every children is rescued.;False;False;;;;1610809608;;False;{};gjgrk0m;False;t3_kxayvb;False;False;t1_gj95sjg;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjgrk0m/;1610894420;4;True;False;anime;t5_2qh22;;0;[]; -[];;;dreski13;;;[];;;;text;t2_3alwzh7y;False;False;[];;oh my god it's emma yaeger;False;False;;;;1610812631;;False;{};gjgyipm;False;t3_kxayvb;False;True;t1_gjgrk0m;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjgyipm/;1610898757;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JustHereForMemesXD;;;[];;;;text;t2_57e6duk2;False;False;[];;I mean you can't be surprised. Haikyuu is a pretty popular anime and there both volleyball.;False;False;;;;1610819388;;False;{};gjhf2uz;False;t3_kxaa94;False;True;t1_gjb3ukj;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjhf2uz/;1610909276;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wildbee12;;;[];;;;text;t2_2xgka2r;False;False;[];;Eh, I have no problem with it being focused on the drama and characters. The problem is that so far it’s done a pretty shit job with characterization and foundation of the main characters. The pacing and character interactions are all over the place and there’s no investment for these supposed emotional moments in this episode.;False;False;;;;1610820585;;False;{};gjhi1wa;False;t3_kxaa94;False;False;t1_gjab5gp;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjhi1wa/;1610911052;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gibsandgabs;;;[];;;;text;t2_8pok2ukd;False;False;[];;pescatarian actually means that you don’t eat meat but you do eat fish though.;False;False;;;;1610820826;;1610822429.0;{};gjhip32;False;t3_kxayvb;False;True;t1_gjah6bi;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjhip32/;1610911437;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wildbee12;;;[];;;;text;t2_2xgka2r;False;False;[];;I don’t really get this complaint. My main problem is the poor characterization of these characters and the resulting forced drama because of this weak foundation. Idc if “high school” is in the name of the anime if they’re going to rush through tackling heavy themes and character interactions. I’m not going to be invested in these characters when they go to high school if this episode is an indication for how they tackle these issues.;False;False;;;;1610820859;;False;{};gjhis6d;False;t3_kxaa94;False;True;t1_gjbu8xm;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjhis6d/;1610911489;0;True;False;anime;t5_2qh22;;0;[]; -[];;;LordUncleBob;;;[];;;;text;t2_ckedm;False;False;[];;"I'm gonna have to *hard* disagree with basically every point you just made. The deal the humans and demons made may have been the best they could do for *themselves*, but it sure as hell wasn't the best for all the humans left behind to be farmed for the next thousand years and nobody has a right to ask those humans to roll over and accept it. And I sincerely doubt that every Farm is filled with happy kids running around enjoying life like the Grace Field Farm, but even if that were the case, living for a short few years of ignorance before being brutally, traumatically murdered and eaten is not ""a good life."" Your calculations aren't including the *decades* of good life that were stolen from every one of the children these farms murdered. - -For Emma and the group, working to save other kids is the best thing they can do, the ONLY thing they can do when faced with the reality that countless kids are living in the same circumstances they managed to escape. And if saving those kids comes at the cost of reigniting war between demons and humans, well, that's what they fucking get for trying to pay for their own happiness with the suffering of others. If you make a ""compromise"" where all the costs are paid by somebody else, that's not a compromise at all.";False;False;;;;1610823090;;False;{};gjhojgk;False;t3_kxayvb;False;True;t1_gjbht5w;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjhojgk/;1610915070;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dyloniusfunk;;;[];;;;text;t2_smaq7;False;False;[];;"It could be after a 1000 years they forgot about it. To badly quote Galadriel.. - -“And some things that should not have been forgotten were lost. History became legend. Legend became myth. And for ~~two and a half~~ one thousand years, the ~~ring~~ pact between humans and demons passed out of all knowledge.”";False;False;;;;1610826943;;False;{};gjhwmp2;False;t3_kxayvb;False;False;t1_gja00vh;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjhwmp2/;1610920661;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dyloniusfunk;;;[];;;;text;t2_smaq7;False;False;[];;"This show is turning into LOST, the anime. - -I just hope I don't waste six years of my life with this show like I did that one...NOT STILL BITTER OR ANYTHING.";False;False;;;;1610827042;;False;{};gjhwtmw;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjhwtmw/;1610920790;1;True;False;anime;t5_2qh22;;0;[]; -[];;;unepetitecanard;;;[];;;;text;t2_4jp7uukl;False;False;[];;this “prologue” portion is waaay too long. the pacing is literally crazy and i just haven’t been drawn in.;False;False;;;;1610827861;;False;{};gjhyenz;False;t3_kxaa94;False;True;t3_kxaa94;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjhyenz/;1610921859;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Etereke32;;;[];;;;text;t2_11qhl2;False;False;[];;It's not just about intelligence, more about communication. If we found a species that is nutritious but speaks the same language as us and has a similar level of intellect, I'd bet we wouldn't want to eat them.;False;False;;;;1610828140;;False;{};gjhz0pd;False;t3_kxayvb;False;False;t1_gjbqewl;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjhz0pd/;1610922253;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dogboy_F;;;[];;;;text;t2_4l8mghau;False;False;[];;Ohhhhh;False;False;;;;1610828910;;False;{};gji0zsk;False;t3_kxayvb;False;True;t1_gjhip32;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gji0zsk/;1610923474;1;True;False;anime;t5_2qh22;;0;[]; -[];;;qwilliams92;;;[];;;;text;t2_11le5l;False;False;[];;Its basically been a prolouge so far. The story is mainly set in highschool;False;False;;;;1610828948;;False;{};gji137c;False;t3_kxaa94;False;True;t1_gjhi1wa;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gji137c/;1610923534;2;True;False;anime;t5_2qh22;;0;[]; -[];;;wildbee12;;;[];;;;text;t2_2xgka2r;False;False;[];;That’s fine, but imo it’s a pretty bad prologue so far. It being a prologue doesn’t excuse it from the way it’s handling these issues.;False;False;;;;1610829426;;False;{};gji28wr;False;t3_kxaa94;False;True;t1_gji137c;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gji28wr/;1610924235;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Karl_the_stingray;;;[];;;;text;t2_5y6ceb3k;False;False;[];;"I don't play volleyball, but I do karate, and the ""Wait, what do I usually do?"" moment was so painfully relatable. I mostly compete in the kata(Which is kind of pre-scripted order of movements, [Here's](https://youtu.be/UXs5WOmX5DE) one that I would love to learn to do someday) and I try to practice before competitions until I can do the movements without even thinking about what comes next. But sometimes I start, and suddenly... I forget it. What used to come naturally is suddenly gone for a moment. - - -It's really the worst feeling and hit hard.";False;False;;;;1610833151;;False;{};gjib3lw;False;t3_kxaa94;False;True;t1_gja2vmq;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjib3lw/;1610929624;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ufailowell;;;[];;;;text;t2_6axmk;False;False;[];;I'm not sold on the demons they're with just being cool.;False;False;;;;1610833299;;False;{};gjibdmy;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjibdmy/;1610929817;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MikeRoz;;;[];;;;text;t2_ht2fg;False;False;[];;"I didn't stop to compare the coordinate they're heading for with the coordinate he wrote, I just thought it was a warning in the moment. ""I saw pursuers at/coming from this coordinate, beware."" Or maybe ""Beware pursuers, go in this direction instead."" - -The idea that he might have been directing the ""demons"" toward their destination is disturbing... - -I thought the reveal the demons might get out of this is ""Wait, the kids have a map?""";False;False;;;;1610839940;;False;{};gjiobrd;False;t3_kxayvb;False;True;t1_gj9fdbl;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjiobrd/;1610937959;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MikeRoz;;;[];;;;text;t2_ht2fg;False;False;[];;"> Considering the manga began serialization in 2019 - -What? It started in 2016.";False;False;;;;1610840283;;False;{};gjiozcm;False;t3_kxayvb;False;True;t1_gj9v81v;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjiozcm/;1610938356;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EggsPls;;;[];;;;text;t2_n8l37;False;False;[];;"u right. 2019 was anime, my mistake- but the fact that it started in 2016 gives my point even more credence ;)";False;False;;;;1610841754;;False;{};gjirteh;False;t3_kxayvb;False;True;t1_gjiozcm;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjirteh/;1610940173;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610841960;;False;{};gjis7hz;False;t3_kxayvb;False;True;t1_gjalwa0;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjis7hz/;1610940413;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610842159;;False;{};gjisla2;False;t3_kxayvb;False;True;t1_gjdq39s;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjisla2/;1610940653;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RavenWolf1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RavenWolf1;light;text;t2_9rao2;False;False;[];;Judging what we have seen it might be that humans are currently vastly superior in technology. Humans could just nuke whole demon world to get rid of them.;False;False;;;;1610845296;;False;{};gjiyho4;False;t3_kxayvb;False;True;t1_gj9958s;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjiyho4/;1610944326;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RavenWolf1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RavenWolf1;light;text;t2_9rao2;False;False;[];;Why is that?;False;False;;;;1610846517;;False;{};gjj0q0v;False;t3_kxayvb;False;True;t1_gja0ouj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjj0q0v/;1610945671;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RavenWolf1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RavenWolf1;light;text;t2_9rao2;False;False;[];;Yes, you don't want get bad side of her.;False;False;;;;1610846550;;False;{};gjj0s4f;False;t3_kxayvb;False;True;t1_gj99pbr;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjj0s4f/;1610945706;0;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_bbc;;;[];;;;text;t2_iiu6x;False;False;[];;"Sure bvut if they could why wouldn't they have already. Why would they wait for emma to go okay these farms are wrong (which they agreed to) to be like ""k we got nukes we can retake the planet""";False;False;;;;1610848058;;False;{};gjj3nan;False;t3_kxayvb;False;False;t1_gjiyho4;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjj3nan/;1610947464;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OfficialTuxedoMocha;;;[];;;;text;t2_6zg1objs;False;False;[];;Re:Zero's existence proves you wrong;False;False;;;;1610849564;;False;{};gjj6hn4;False;t3_kxayvb;False;True;t1_gjb3exx;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjj6hn4/;1610949181;1;True;False;anime;t5_2qh22;;0;[]; -[];;;balderdash9;;;[];;;;text;t2_cyls0;False;False;[];;I really like the exploration of themes here. Not all the demons are bad, and if you want to survive you have to get your hands dirty. You really see that innocence lost, but Emma is willing to kill a living thing to protect those she loves. I'm sure that will be relevant later.;False;False;;;;1610850410;;False;{};gjj82y1;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjj82y1/;1610950110;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nebula-Lynx;;;[];;;;text;t2_6mruvnzg;False;False;[];;"I feel like I’m the only person who didn’t like the writing in this one. - -It seemed so... unrealistic? - -Like the plot is super interesting but the writing/dialogue itself feels... super B-tier to me. It’s like a very boring form of exposition - -Fantastic animation and development though!";False;False;;;;1610862855;;1610863293.0;{};gjjtf04;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjjtf04/;1610962085;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shewy92;;;[];;;;text;t2_wd13k;False;False;[];;So they don't eat humans because they aren't Kosher? Probably the lamest reason I've ever heard.;False;False;;;;1610866523;;False;{};gjjy8n2;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjjy8n2/;1610964604;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shewy92;;;[];;;;text;t2_wd13k;False;False;[];;"500 comments and 4k upvotes is a ""low amount of comments/engagement""?";False;False;;;;1610866772;;False;{};gjjyjjg;False;t3_kxayvb;False;True;t1_gj9ykm5;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjjyjjg/;1610964764;1;False;False;anime;t5_2qh22;;0;[]; -[];;;MexicanDuck;;;[];;;;text;t2_yosai;False;False;[];;Yeah I’m not surprised of it , that doesn’t mean I can’t be annoyed at people who literally compare everything to it to haikuuu and claim Haikyuu did it better or something.;False;False;;;;1610868178;;False;{};gjk073s;False;t3_kxaa94;False;True;t1_gjhf2uz;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjk073s/;1610965631;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cringecox;;;[];;;;text;t2_1ve8zv0e;False;False;[];;When we get to the high school bit, they're gonna be as tall as the JoJo characters;False;False;;;;1610870918;;False;{};gjk37lx;False;t3_kxaa94;False;True;t1_gja4w9p;/r/anime/comments/kxaa94/243_seiin_koukou_danshi_volleybu_episode_2/gjk37lx/;1610967229;1;True;False;anime;t5_2qh22;;0;[]; -[];;;danniebox;;;[];;;;text;t2_jay0xa6;False;False;[];;I fear they might be doing something worse than that. You know how cute Mujika is? Catch my drift?;False;False;;;;1610877910;;False;{};gjka1w8;False;t3_kxayvb;False;True;t1_gjbexr8;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjka1w8/;1610970957;1;True;False;anime;t5_2qh22;;0;[]; -[];;;danniebox;;;[];;;;text;t2_jay0xa6;False;False;[];;I live in an Asian country and I remember going on a trip to my uncle's farm - I was around 13-14 at the time. He let me slaughter a sheep that was around 2 y.o. Surprisingly, I felt nothing killing the beast. I may be a sociopath lmao.;False;False;;;;1610878634;;False;{};gjkb0an;False;t3_kxayvb;False;False;t1_gj97cbh;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjkb0an/;1610971445;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RavenWolf1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RavenWolf1;light;text;t2_9rao2;False;False;[];;Dunno. Maybe we got explanation before end of this season. Maybe modern humans aren't even aware of demons anymore or something.;False;False;;;;1610890804;;False;{};gjl2xvh;False;t3_kxayvb;False;True;t1_gjj3nan;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjl2xvh/;1610985322;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Stomco;;;[];;;;text;t2_1dalujth;False;False;[];;"A lot of what I think most people consider moral progress, is deciding that treating other kinds of people as beneath you is wrong, because there isn't that much difference. We a least haven't seen anything that makes the demons more different cognitively, than different ethnic groups of humans. - -So, I would think the same rules would apply to treatment of demons. So, killing demons for food or owning a demon would be wrong for the same reasons. - -One of the bigger distinctions between animal and human rights, is the focus on lifespan. With animals, concern is more directed at the average quality of their life over time. I'd be willing to compromise my average up to a point for a longer life. At the very least I'm not inclined to maximize my average at the expense of dying at 30.";False;False;;;;1610906830;;False;{};gjml70b;False;t3_kxayvb;False;False;t1_gjci42u;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjml70b/;1611015850;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;"Every moment you live your body kills things to stay alive by the trillions in a normal life time. We do draw a line at what is acceptable to be killed all of us do this unless we kill ourselves as soon as we learn this fact and even there we are killing the cells that sacrifice for our existence. Even plants kill to live as killing key to survival of multi cell life forms and many single cell life forms. And even the life forms that don't eat other life forms kill other life forms by choking off their food supply. Life is killing. - -I love this story's development the religion demons have decided it wrong to eat another sapient species but fine to kill and eat anything that can't do high level abstract thought. - -The key to the argument is sapience the ability to think complex abstract thoughts, to actually have a religion and worship or reject that idea with logic, the ability to even consider the idea of not eating something that is our prey, the ability to decide on an abstract level right or wrong. One of the requirements for sapience, the ability to consider if one actually exists, the meaning of existence, ability to do high level math. Yes very young children are not sapient, neither are severally retarded, vegetable state, sever brain damage, dementia. I ok with these groups being protected in the way we protect our favorite pets we don't like being killed. - -Ethically the sapient must protect all other sapient beings. Thus we have to wipe out cats, dogs, pigs, chimps, and all other predators if we consider their prey sapient. If we don't want to consider the truly low intelligent herbivores non sapient but the more inelegant predators sapient they we can let them live and both enjoy our cow and chicken and so on. Still probably should kill off our fellow omnivore the pig they will kill and eat human in the wild and maybe same for wolves. - -Who are evil predators after all even humans can't survive without killing without artificial work arounds for no non animal source for B-12 and vitamin K there are vegetarian cultures but limited to places that actually can grow enough broad amount of vegetables to do so but eat seafood and drink dairy but vegan is imposable everywhere before modern times. - -And before agriculture probably imposable to even be vegetarian. Humans are predators and omneiovors why do we not have the right to kill and eat like the other predators? - -People are so used to long shipping distance supply of vegetables from all over the world to be aware this is a very modern thing. Before that you were limited to local growing conditions and only the vegetables available locally and before discovery of the Americas a lot fewer vegetables available on each side of the Oceans. -It easy to show the difference between dogs and pigs and humans the design and size of the brain. They simply lack the higher cortex of a size and function to do abstract thought. Your feedback loop idea logical but missing the facts on brain design those animals lack the hardware to do the things a human can do. Human brain vastly superior in higher intelligence ability by the physical hardware to be able to do it. - -Chimps and Ape have some of what humans have brain wise but way smaller and thus will never get anywhere close to human level upper brain function. - -And the brain has to be used during development if isolated those areas in the higher cortex are not developed correctly so yes those brain stunted people might not be much more intelligent than animals. Although normally they can be normally be taught to a level higher than any animal with lots of work. - -This brain stunting applies to other animals if not exposed to something their brain does that area will not develop fully and they will not be able to function like other of their species in that area. - -Side note why are all other animals except maybe dolphins vastly inferior in brain power? Brain cells take massively more calories to operate than any other cell. So nature limits brains to just enough to thrive and no more. When my very pure diet Sister was staying for her certified financial planner license she started crashing and I correctly told her you need more calories just like Chess Grandmasters do in championships. - -I personally consider sapience starts at the first memories and ends when one cannot learn or develop new memories fully. I compromise at lowering that to birth and consider anyone with permanent dementia the living dead. And anything else to can match or get close to human level abstract thought including inorganic computers sapient.";False;False;;;;1610913966;;False;{};gjn5439;False;t3_kxayvb;False;True;t1_gjclnu2;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjn5439/;1611026735;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;"I fine with the dog doing simple communication I have learned to read a cat's body language of various requests. My standard for sapience are way higher at the ability to do high math and philosophy. So yes very small children are not sapient but they will be and their mother no longer forced to keep them alive thus I have no problems with abortion or euthanasia of those permanently not sapient anymore. Although if the family wants to keep a pet I fine with it as long as my tax dollars don't pay for it. - -My views on killing animals and using them, abortion, euthanasia, war and other issues all combined in view on what is sapient.";False;False;;;;1610920571;;False;{};gjnjel4;False;t3_kxayvb;False;True;t1_gjd006g;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjnjel4/;1611035609;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;And thus these religious demons have decided eating sapient beings is wrong and thus no human but all other animals are fine.;False;False;;;;1610920721;;False;{};gjnjqdm;False;t3_kxayvb;False;True;t1_gjbx84m;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjnjqdm/;1611035788;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;What she almost threw up and was very shaky about doing it and she thought back to the flower being used on her friends and it paused her. I have no idea where the idea she took this uncritically comes from. The point that this has to be done to survive was brought up and Emma accepted it without complaint next as the logic is irrefutable. You can't survive in the wild without meat in almost anywhere on earth and probably same here.;False;False;;;;1610921025;;False;{};gjnkedu;False;t3_kxayvb;False;False;t1_gjf3xq7;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjnkedu/;1611036186;4;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;"Our bodies kill life every second to live into the trillions easy over a lifetime. Life requires killing. Even sun light using plants choke out other plants. -And as the demons mention human is not necessary to survive.";False;False;;;;1610921304;;False;{};gjnl2je;False;t3_kxayvb;False;True;t1_gjb47pl;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjnl2je/;1611036571;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;"We either eat them or make them extinct except maybe zoos they have no place in nature. And if we think it wrong to eat livestock animals we must kill off all their predators. - -That why we divide at sapience. The ability to even come up with thinking about the ethics of killing and eating something.";False;False;;;;1610921553;;False;{};gjnlo0n;False;t3_kxayvb;False;True;t1_gjg7wax;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjnlo0n/;1611036905;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;"Sapience is a logical dividing point in this argument. And we see her some of the Demons have made that logical split. - -We currently on earth are basically ok with Russia, China and many other countries doing all but eating humans and don't really have to consider it as eating your own species is a very very nasty way to die. We don't consider these ok to do just not rising to level of exchanging nuclear weapons over it and at this point not worth cutting off our trade. This does not necessarily mean the actives are accepted as ok just not rising to lets go to war level. - - Human tribes that eat human all limited amount and mainly a response to a animal shortage like the triple canopy jungle has with no ground plants to eat. And those tribes suffer from it. The tribe for religious started to eat their family members on natural death suffers even worse. - -Here we been given the answer, the humans realizing they could not free all the humans in war accepted they could not and separated things. And we have been shown that Demons can come to the realization that eating other sapient beings wrong. -Part of this is golden rule would you want something done to you. And non sapient beings are not able to even ponder the golden rule.";False;False;;;;1610922662;;False;{};gjno86q;False;t3_kxayvb;False;True;t1_gjcvcqz;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjno86q/;1611038333;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Calfthecow;;;[];;;;text;t2_4ox85eot;False;False;[];;I don't see the problem with making them go extinct. They are domesticated animals, they don't fill any function in the eco system and only exit because humans breed them.;False;False;;;;1610923820;;False;{};gjnqs5y;False;t3_kxayvb;False;True;t1_gjnlo0n;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjnqs5y/;1611039815;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;"To exist our bodies kill other microscopic and sometime even larger invaders by the trillions in a lifespan. A cutoff point on intelligence has to be made to justify our own existence. - -The dividing point is sapience the high level abstract thought that other animals don't even have the section of the brain to do that or it very very limited. the division is complex abstract thought. And yes children before 5 or so don't qualify nether do severely retarded, severally brain damaged or incurable dementia. -The start of sapience is hard to fix so I am willing to compromise that we protect at birth and not before that as sapience. - -It blows my mind that many animal rights vegans are ok with abortion. - -If we raise lower animals to the protected status then we must stop them from killing each other. - -I believe someone must have a consistent view on what is sapient life and this covers abortion, euthanasia, meat eating and other issues including other life forms. If the being capable of being able to ponder the question of meat eating and make a choice it's sapient and thus must be protected no mater it's base nature. Of course war with another sapient species is possible just like within the species but you don't fight wars of obliteration with them. - -I do have intelligent non sapient species in my sci fi. Genetically unable to chose a option deviating from that chosen for them despite being able to talk and solve abstract problems. Sort of a tragedy as some actually come to the edge of breaking from the wipe out other intelligent species programing but can't. One question is once humanity (8 different species evolved on 8 different planets who thanks to coevolution after genetic modification done before discovering each other are close enough they chose to genetically merge) finally can fully defeat them should the genetic programing be removed or just kill them all off. - -So the test for sapience is both ability to do abstract thought but to also make significant choices based on that. In some ways if internal war in a species is to possible it not sapient.";False;False;;;;1610925215;;False;{};gjnts20;False;t3_kxayvb;False;True;t1_gjci42u;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjnts20/;1611041530;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;"Well she becoming a full adult mentally way early along with becoming a war veteran. Some war trauma possible for the majority. - - -PSTD should be reserved for those that trauma is so high they cannot function under stress anymore and thus are worthless in combat situations. PSTD used to be called shell shock and people with it were executed for being cowards and sent back into battle to die as they could no longer even take cover under fire. So I prefer PSTD to only be used on those actually suffering it before our society starts thinking those with it are cowards again because heroes in action stories are said to suffer PSTD by fans. Actually PSTD only a fairly small minority get normally. And the insane, unable to get depressed and do well in war people have no traumatic memories.";False;False;;;;1610925708;;False;{};gjnurjr;False;t3_kxayvb;False;True;t1_gja0ehy;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjnurjr/;1611042084;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Reemys;;;[];;;;text;t2_o0hwpg4;False;False;[];;Justifying own existence is an act of egoism and has no place in an elevated human psyche, full to the brim with the grandeur of the macrocosm. Existence itself is violence against true harmony and humans, while subject to endless limitations, are welcome to pursue the highest idea(l)s the concept of universe has to offer.;False;False;;;;1610925897;;False;{};gjnv4ua;False;t3_kxayvb;False;True;t1_gjnts20;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjnv4ua/;1611042291;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;Could be the Demon military is high tech armed but due to authoritarian rule only the military allowed to have it as there is no current high tech threat for the farms to deal with. And with a long period of no war the Demon military to lazy to bother with a few escaped kids.;False;False;;;;1610930238;;False;{};gjo3fej;False;t3_kxayvb;False;False;t1_gjaa2g4;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjo3fej/;1611046888;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FierceAlchemist;;;[];;;;text;t2_fcfw8;False;False;[];;"Great to get more worldbuilding this episode. And the sequence of Emma hunting and using the flower was great. - -Though I think the kids are for a rude awakening when they eventually find the entrance to the human world. I doubt the humans there would want to take them in and risk breaking a 1000 year truce.";False;False;;;;1610930844;;False;{};gjo4mr0;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjo4mr0/;1611047556;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;"demons might be bad at formation fighting wanting to go for individual honor then you get Rome vs Gaul. Modern high heavy muscled body builder Gaul's thanks to their red meet diet vs 5'5"" Roman triathlete build. As Caesar said Gaul warriors defeat Romans with ease one on one but ten Romans fighting together can beat 100 Gauls. Maybe not that good but Romans vastly outnumbered won over and over again to win the greatest win outnumbered six to one trying to contain on Gaul army larger then theirs in a fortified city while a huge force around five to one attacked the Roman tactical donut fortifications. - -Being able to go faster on the ground comes at the cost of speed of long marches. Humans can travel faster over long distances than any other animal. -And of course your build and what you practice. Roman legions after beating a Gaul army marched a long distance North then West and then South coming in front of the retreating Gauls cutting them off.";False;False;;;;1610931074;;False;{};gjo533b;False;t3_kxayvb;False;True;t1_gja74iq;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjo533b/;1611047804;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;"could but historically an escape not going to cause a war just angry talk. War is someone on the human side coming in to rescue kids and then that still a maybe thing. I wonder if humans even remember the separation. -If one escape causes war the Demons were wanting war and just waiting for an incident to justify it.";False;False;;;;1610931891;;False;{};gjo6n23;False;t3_kxayvb;False;True;t1_gj9v6o0;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjo6n23/;1611048654;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fox-and-Sons;;;[];;;;text;t2_7sbwklo;False;False;[];;Yeah but that's a pretty arbitrary distinction;False;False;;;;1610935130;;False;{};gjocosk;False;t3_kxayvb;False;True;t1_gjhz0pd;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjocosk/;1611051948;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fox-and-Sons;;;[];;;;text;t2_7sbwklo;False;False;[];;"Vegetarianism is definitely better than eating animals, but it does involve a certain amount of slaughter. Milk is produced by mothers for babies, we couldn't produce nearly as much if there wasn't a veal or beef industry to deal with the ""extra"" male cows.";False;False;;;;1610935383;;False;{};gjod621;False;t3_kxayvb;False;False;t1_gjchvax;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjod621/;1611052213;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fox-and-Sons;;;[];;;;text;t2_7sbwklo;False;False;[];;">If a cow could verbally tell me it doesn't want to be food, - -That's such an arbitrary line. Are parrots not acceptable food, because they have vocal chords that can mimic human speech? They can learn simple phrases and their meanings, so they could very much learn to ask not to be eaten. Lots of animals are as smart as parrots, but lack those vocal chords, why is it okay to eat them?";False;False;;;;1610935557;;False;{};gjodhun;False;t3_kxayvb;False;True;t1_gjbx84m;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjodhun/;1611052394;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerdy314159265;;;[];;;;text;t2_752wc;False;False;[];;"That's such an emphatic line. - -I'm pointing out an extreme the emphasize how far across the line the demons are. - -We could debate where the line is exactly all day long but I think we'd all say you've crossed it when you are eating something that was fully aware you were farming it, that it was planned to die, then actively attempted to escape that fate and outsmarted you in some instances (not even just by dumb luck).";False;False;;;;1610936519;;False;{};gjofb6u;False;t3_kxayvb;False;True;t1_gjodhun;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjofb6u/;1611053391;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yeoc2;;;[];;;;text;t2_9je0cdy;False;False;[];;Ray built a device that can destroy the tracking devices without it being cut off. The reason Emma did it was to buy time by tricking Isabella to go after it, and also because she didn't have the device with her and didn't want to lead Isabella to the others.;False;False;;;;1610942161;;False;{};gjopjtq;False;t3_kxayvb;False;True;t1_gjfz69r;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjopjtq/;1611059359;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yeoc2;;;[];;;;text;t2_9je0cdy;False;False;[];;No. The humans gave a bunch of other humans to the demons so that they could continue to farm and eat them after the two worlds were separated. The farms were part of the agreement.;False;False;;;;1610942510;;False;{};gjoq4h6;False;t3_kxayvb;False;True;t1_gjbsgiv;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjoq4h6/;1611059725;2;True;False;anime;t5_2qh22;;0;[]; -[];;;yeoc2;;;[];;;;text;t2_9je0cdy;False;False;[];;The 30 years ago thing comes from the books. The most recent books they had were from 30 years ago.;False;False;;;;1610942635;;False;{};gjoqbtm;False;t3_kxayvb;False;True;t1_gj9wal9;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjoqbtm/;1611059856;2;True;False;anime;t5_2qh22;;0;[]; -[];;;daroons;;;[];;;;text;t2_55340;False;False;[];;Honestly, from my experience, it’s usually the idealists who swing too far the other way when reality hits them.;False;False;;;;1610944979;;False;{};gjou23m;False;t3_kxayvb;False;True;t1_gja0ehy;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjou23m/;1611062262;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fdajax;;;[];;;;text;t2_x1adp;False;False;[];;It's fascinating how quickly Emma and the gang hopped onto faith;False;False;;;;1610946580;;False;{};gjowh48;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjowh48/;1611063819;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Animeproduction13;;;[];;;;text;t2_8hn84kk3;False;False;[];;So like an exchange.;False;False;;;;1610952103;;False;{};gjp47bn;False;t3_kxayvb;False;True;t1_gjoq4h6;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjp47bn/;1611069137;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MonaThiccAss;;;[];;;;text;t2_8stg2bwj;False;False;[];;aint this basically the plot of Blood C?;False;False;;;;1610955299;;False;{};gjp82e8;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjp82e8/;1611071769;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;"Religious Group hiding out may also be freedom fighters or not. Being religious neither rules that out or in. - -Although freedom fighters might be fighting to put in a autocratic systems in the case of religious a Theocracy.";False;False;;;;1611007562;;False;{};gjriobg;False;t3_kxayvb;False;True;t1_gj9a790;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjriobg/;1611126187;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;"30 years ago might just be the last time books to fake a human civilization were published based on the history of the US school system I know. Reason they are that old being simply they not worn out enough to reprint yet. -But this being a story it unlikely a mundane unconnected to the plot reason is why they are 30 years old.";False;False;;;;1611007803;;False;{};gjrj57y;False;t3_kxayvb;False;True;t1_gjbj8of;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjrj57y/;1611126440;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;"Dead no unconscious certainly. -It was a reform compared to prior methods of killing animals when the rule was set down. If done right the blood loss probably results in passing out in that amount of time. My experience the one time I used a blood choke on someone and they were out in seconds. - -Not a Muslim just amateur historian. - -Yes there are faster ways to do it now. A bullet to the brain of high enough power or bullet behavior will scramble the brain to the point no pain could be felt. Saw that done in Sicily .";False;False;;;;1611008193;;False;{};gjrjwrs;False;t3_kxayvb;False;True;t1_gjac2ry;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjrjwrs/;1611126855;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;"Shown often and early enough farm kids have no problems killing animals. - -Not a muslim but I do believe all people who eat meat like me be involved in killing something to know what your doing. - -Humans are predators there is no built in anti killing feeling in fact humans naturally lean towards killing and enjoying it and like all predators torture comes natural. I assume reluctance or shocked feelings is because of exposure to cartoon animals and sanitized nature footage from an early age. - -What I just stated is not an argument for or against eating meat. Something being a natural instinct is neither a argument for or against something on a moral ground. Killing or hurting the person who just insulted you is also a natural instinct. Possessiveness and Jealousy also natural instincts.";False;False;;;;1611009031;;False;{};gjrlkcd;False;t3_kxayvb;False;True;t1_gj9o6vd;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjrlkcd/;1611127755;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;"It is necessary if you don't use artificial sources of B12, K and other thing probably including calcium. I know for some they can't absorb iron from non animal sources as it much harder to absorb iron from plant source. - -Lives of animals in the wild also suck hard compared to traditional animal raising on farms or zoo. Lack of vet care, constant attack by predators and insects make living in the wild a short scary time, there are no old animals with very few exceptions in the wild. Factory Farming a different story fine on banning that. - -Climate Change effects is arguable and you just made an argument to kill off all non human animals who give off methane. Reducing the human population by force also could be argued on same point. At least forcing mandatory sterilization on humans by gun point and atomic bomb in developing world, the civilized world is heading for extinction in current trends not a problem for me as long as over population the Current problem just bring in immigrants. It only greater production of meat that is a problem and that a byproduct of increasing human population. And Methane a small part of the problem were CO2 the big one. But I'm fine with eliminating the new factor farming techniques and eating less meat. - -It is arguable because it new sources of methane, CO2 and other green house gasses that cause global warming. Methane or CO2 that are already part of the existing Methane and CO2 cycle are not causes. Methane although way more powerful than CO2 at heating is removed way quicker by Sunlight degrading it while CO2 can stay in atmosphere for centuries. Plants of course need CO2 to live and total lack of Methane would probably cause global cooling.";False;False;;;;1611010043;;False;{};gjrnjvr;False;t3_kxayvb;False;True;t1_gja8i4c;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjrnjvr/;1611128847;0;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;Removing the blood a needed standard practice for all hunting. the Islamic method a reform to make the killing less painful than the current methods of the time. This does not mean it a modern way though.;False;False;;;;1611010164;;False;{};gjrnsg8;False;t3_kxayvb;False;False;t1_gj9urj5;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjrnsg8/;1611128972;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;"US Army in Infantry officer training had chicken killed and processed by hand up close for a small group showing us how and then they had a rabbit killed in front of a large group. Every one wanted a rabbit foot thrown to them. This was survival training part of the living off the land part of light infantry training at the time. - -Of course everyone there was a volunteer willing to kill humans might effect one's mind set. - -Chicken killed by hypnotizing and then neck put under a stick and head ripped off. Rabbit petted till the last moment then rapid bashing of it's head by swinging by feet into solid block item they would take it apart on. - -I had no problem but not my favorite thing to do and I did not look forward to killing people but know I would do it if I had to. I don't freeze up in dangerous situations though so my reactions not exactly normal. Still remember a large full restaurant after a concert were I had to physically remove someone being violent to their girlfriend as the staff and everyone else eating was frozen in place. My martial arts training very useful. - -Everything I read on it natural instinct is to kill but being raised with cartoon animals and not being shown violence makes it shocking to children not raise in household were killing animals done in front of from very early age.";False;False;;;;1611010881;;False;{};gjrp6g7;False;t3_kxayvb;False;True;t1_gjbpj51;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjrp6g7/;1611129725;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;Yep Muslims, Jews and Cristian share the same basic faith. Pagan Roman influence or god talking got the exception to the no pig in the later non word of Jesus new testament. Jews accept Jesus as a prophet just not son of god. Muslims accept all of Jewish religious document and their version of the first half of the New Testament which is all the teachings of Jesus. Jesus being the second most important person in the faith.;False;False;;;;1611011267;;False;{};gjrpwte;False;t3_kxayvb;False;True;t1_gjfp5oj;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjrpwte/;1611130120;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;This probably a we don't eat sapient beings thing and I would hope us humans would not eat aliens who land here for same reason. Sapient meaning wise able to argue the morality of eating meat along with other things.;False;False;;;;1611011390;;False;{};gjrq554;False;t3_kxayvb;False;False;t1_gj9fk12;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjrq554/;1611130245;1;True;False;anime;t5_2qh22;;0;[]; -[];;;akoba15;;;[];;;;text;t2_638rml5e;False;False;[];;Also how this is literally the way kids would act. Felt almost realistic to me. They are always more perceptive than you give them credit for.;False;False;;;;1611018614;;False;{};gjs3ef4;False;t3_kxayvb;False;True;t1_gja5kn0;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjs3ef4/;1611137399;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lefaid;;;[];;;;text;t2_75ayh;False;False;[];;"Jews do not believe Jesus was a prophet. I have heard that Muslims do, however. The story of Jesus is a very not Jewish story, outside of the Messiah claim (which he does not meet, according to Jews). - -Source: Am Jewish.";False;False;;;;1611032897;;False;{};gjstgci;False;t3_kxayvb;False;True;t1_gjrpwte;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjstgci/;1611152983;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MiNdOfMiNdd;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sleepninthegrdn;light;text;t2_3f3bflh2;False;False;[];;Because she was born into this world;False;False;;;;1611036639;;False;{};gjsyt9b;False;t3_kxayvb;False;True;t1_gjbcded;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjsyt9b/;1611156677;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MHaji4;;;[];;;;text;t2_95kp3nk;False;False;[];;Does anyone know what Ray wrote on the tree? What did it say exactly?;False;False;;;;1611102419;;False;{};gjw3qy9;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjw3qy9/;1611228062;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ceyliel;;;[];;;;text;t2_1qa8jzyk;False;False;[];;The demons where ensuring that the children had the best possible lifes before their deaths. In the best case scenario the demons weren't inflicting any harm (other than death) to the children. No fear, no pain, a loving, happy environment, a fast death and a respectful treatment. Idk but this demons are treating their prey much better than we do. And we could also CHOOSE to just not do that.;False;False;;;;1611108283;;1611108720.0;{};gjwescb;False;t3_kxayvb;False;True;t1_gjcscuc;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjwescb/;1611234469;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ceyliel;;;[];;;;text;t2_1qa8jzyk;False;False;[];;Are the other demons really that evil?;False;False;;;;1611108559;;1611108739.0;{};gjwfahr;False;t3_kxayvb;False;True;t1_gjej807;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjwfahr/;1611234780;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThoricMeerkat;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Thoric;light;text;t2_njjo0;False;False;[];;"I didn't realize I was watching Somali and the Forest Spirit, but with slightly more trauma. -I'm gonna go lay down and cry";False;False;;;;1611110101;;False;{};gjwi5ib;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjwi5ib/;1611236536;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shichibukai3000;;;[];;;;text;t2_ffagu;False;False;[];;">The secret to Ray's cooking is MSG. - -Of course it is. MSG is the king of flavour!";False;False;;;;1611122318;;False;{};gjx25u1;False;t3_kxayvb;False;False;t1_gj96o7a;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjx25u1/;1611249674;1;True;False;anime;t5_2qh22;;0;[]; -[];;;No-Boysenberry283;;;[];;;;text;t2_8fftofxi;False;False;[];;But a toddler is significantly less smarter than a pig. Doesn't make it okay to kill a toddler.;False;False;;;;1611123816;;False;{};gjx43p8;False;t3_kxayvb;False;True;t1_gjcho9u;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjx43p8/;1611250976;2;True;False;anime;t5_2qh22;;0;[]; -[];;;No-Boysenberry283;;;[];;;;text;t2_8fftofxi;False;False;[];;or humans eating any animal flesh at all. humans don't need meat. this is the are we the baddies moment.;False;False;;;;1611123901;;False;{};gjx47pp;False;t3_kxayvb;False;True;t1_gjabl4f;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjx47pp/;1611251048;2;True;False;anime;t5_2qh22;;0;[]; -[];;;No-Boysenberry283;;;[];;;;text;t2_8fftofxi;False;False;[];;I think they're setting this up so that eventually they'll be pitted against kids from another farm and they'll use survival as an excuse to murder them.;False;False;;;;1611123999;;False;{};gjx4c75;False;t3_kxayvb;False;True;t1_gj9pekx;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjx4c75/;1611251132;2;True;False;anime;t5_2qh22;;0;[]; -[];;;No-Boysenberry283;;;[];;;;text;t2_8fftofxi;False;False;[];;All of the kids on the farm would have been better off never being born. You can make the argument that those who escaped are better off being born. But the horrors they'll witness and having to constantly live in the fear of being killed and eaten makes their lives net negative too. Extinction is preferable by far!;False;False;;;;1611124188;;False;{};gjx4kq3;False;t3_kxayvb;False;True;t1_gjnlo0n;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjx4kq3/;1611251292;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KorraLover123;;;[];;;;text;t2_j979k;False;False;[];;inb4 TPN is a promotion of veganism.;False;False;;;;1611133512;;False;{};gjxf1oa;False;t3_kxayvb;False;True;t1_gj9pekx;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjxf1oa/;1611258740;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ButtholePasta;;;[];;;;text;t2_h1yde;False;False;[];;I thought the direction of the last episode was kinda whatever, but damn this episode was great. Really reminded me of the last season feeling. Loved the use of sound throughout the episode and obviously with the Emma hunting scene.;False;False;;;;1611137632;;False;{};gjxj53v;False;t3_kxayvb;False;True;t3_kxayvb;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjxj53v/;1611261592;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zzetops;;;[];;;;text;t2_fxvyf;False;False;[];;Same. I was convinced this was a propaganda anime for veganism up until this point.;False;False;;;;1611178185;;False;{};gjznnk3;False;t3_kxayvb;False;True;t1_gj9pekx;/r/anime/comments/kxayvb/yakusoku_no_neverland_season_2_episode_2/gjznnk3/;1611306958;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610613605;moderator;False;{};gj7l7eu;False;t3_kx1ti4;False;True;t3_kx1ti4;/r/anime/comments/kx1ti4/i_need_anime_recommendations/gj7l7eu/;1610691964;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610613761;moderator;False;{};gj7lczz;False;t3_kx1un0;False;True;t3_kx1un0;/r/anime/comments/kx1un0/where_do_i_watch_anime/gj7lczz/;1610692059;1;False;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;Crunchyroll;False;False;;;;1610613817;;False;{};gj7lf09;False;t3_kx1un0;False;True;t3_kx1un0;/r/anime/comments/kx1un0/where_do_i_watch_anime/gj7lf09/;1610692093;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;Crunchyroll;False;False;;;;1610613821;;False;{};gj7lf5k;False;t3_kx1un0;False;True;t3_kx1un0;/r/anime/comments/kx1un0/where_do_i_watch_anime/gj7lf5k/;1610692096;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610613875;;False;{};gj7lh5a;False;t3_kx1un0;False;True;t3_kx1un0;/r/anime/comments/kx1un0/where_do_i_watch_anime/gj7lh5a/;1610692129;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610613956;moderator;False;{};gj7lk6k;False;t3_kx1vz2;False;True;t3_kx1vz2;/r/anime/comments/kx1vz2/organizing_anime_for_plex/gj7lk6k/;1610692181;1;False;False;anime;t5_2qh22;;0;[]; -[];;;iilylight;;;[];;;;text;t2_5s4jibpz;False;False;[];;crunchy roll(app/website, just a ton of ads), Tubi(app, i think there’s ads but they have a good amount of anime there);False;False;;;;1610614083;;False;{};gj7losl;False;t3_kx1un0;False;True;t3_kx1un0;/r/anime/comments/kx1un0/where_do_i_watch_anime/gj7losl/;1610692256;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Dont know what plex is but go to myanimelist or anidb for anime information;False;False;;;;1610614237;;False;{};gj7luba;False;t3_kx1vz2;False;True;t3_kx1vz2;/r/anime/comments/kx1vz2/organizing_anime_for_plex/gj7luba/;1610692353;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"Sorry, your comment has been removed. - -- Direction toward specific sources of pirated content of any type is not allowed. This includes links to unofficial scanlations, streams, uploads, and download sources of any copyrighted content. It also includes direction towards specific sites offering this type of content, and watermarks mentioning such sites in uploaded images/videos. - - Discussion of piracy in general is allowed, **but naming, linking to, or hinting towards specific sources is not. Offering to send links via PM is also not allowed.** For more details, see our [full rules on illegal content](https://www.reddit.com/r/anime/wiki/rules#wiki_do_not_link_to_illegal_content). - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610614265;moderator;False;{};gj7lv9t;False;t3_kx1un0;False;True;t1_gj7lh5a;/r/anime/comments/kx1un0/where_do_i_watch_anime/gj7lv9t/;1610692368;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610614312;;False;{};gj7lwyh;False;t3_kx1un0;False;True;t3_kx1un0;/r/anime/comments/kx1un0/where_do_i_watch_anime/gj7lwyh/;1610692395;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi wilkeyyy, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610614798;moderator;False;{};gj7mecu;False;t3_kx21oe;False;True;t3_kx21oe;/r/anime/comments/kx21oe/pls_help_anime_suggestions_are_needed/gj7mecu/;1610692683;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;" -Sorry OkPhotojournalist758, you've activated my trap card! - -Memes are not allowed on /r/anime and we have implemented this flair to catch people who do in order to make removals quicker for us. Sorry for this inconvenience. - -[**Memes are not allowed on /r/anime, even with the meme flair!**](https://www.reddit.com/r/anime/wiki/rules#wiki_no_memes.2C_image_macros...) You might want to go to /r/animemes, /r/animememes, /r/goodanimemes or /r/anime_irl instead. - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610614950;moderator;False;{};gj7mjwg;False;t3_kx2311;False;True;t3_kx2311;/r/anime/comments/kx2311/my_first_meme/gj7mjwg/;1610692770;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal_Ebb_238;;;[];;;;text;t2_8nmkui77;False;False;[];;Gurren Lagann;False;False;;;;1610614972;;False;{};gj7mkp3;False;t3_kx21oe;False;True;t3_kx21oe;/r/anime/comments/kx21oe/pls_help_anime_suggestions_are_needed/gj7mkp3/;1610692782;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal_Ebb_238;;;[];;;;text;t2_8nmkui77;False;False;[];;From Asia? You can watch for free on muse Asia and ani-one on youtube.;False;False;;;;1610615047;;False;{};gj7mndb;False;t3_kx1un0;False;True;t3_kx1un0;/r/anime/comments/kx1un0/where_do_i_watch_anime/gj7mndb/;1610692827;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Rare-Examination1142;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_7pilbejh;False;False;[];;"Not related to anime that much. - -Stan is stalker+fan, a person who obsesses over celebrities, etc. Got famous from a song by Eminem of the same name. The song was about a fan who was obsessed with Eminem and killed himself when Eminem didn't reply. - -Also, did you even search properly? [This ](https://www.urbandictionary.com/define.php?term=Stan&amp=true&defid=1615996) is what shows up when you search Stan on Google.";False;False;;;;1610615076;;False;{};gj7moev;False;t3_kx22ey;False;True;t3_kx22ey;/r/anime/comments/kx22ey/what_does_stans_mean/gj7moev/;1610692843;6;True;False;anime;t5_2qh22;;0;[]; -[];;;BioChemRS;;ANI a-1milquiz;[];;https://anilist.co/user/BioChemRS/;dark;text;t2_pl221;False;False;[];;"a super-fan of something, stalker/fan. In reference to the Eminem song. - -i.e. ""I stan Asuka"" - -""I'm an Asuka stan""";False;False;;;;1610615114;;False;{};gj7mpty;False;t3_kx22ey;False;True;t3_kx22ey;/r/anime/comments/kx22ey/what_does_stans_mean/gj7mpty/;1610692866;5;True;False;anime;t5_2qh22;;0;[]; -[];;;jicuhrabbitkim;;;[];;;;text;t2_6po9il13;False;False;[];;Its just a more devoted fan of something.;False;False;;;;1610615428;;False;{};gj7n174;False;t3_kx22ey;False;True;t3_kx22ey;/r/anime/comments/kx22ey/what_does_stans_mean/gj7n174/;1610693050;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SocialLoser739;;;[];;;;text;t2_4ttuko0s;False;False;[];;"Oregairu - -Gotoubun no hanayome - -Horimiya - -Chihayafuru";False;False;;;;1610615866;;False;{};gj7ngq8;False;t3_kx27uy;False;True;t3_kx27uy;/r/anime/comments/kx27uy/looking_for_a_new_anime_to_watch/gj7ngq8/;1610693315;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheGreatXazion;;;[];;;;text;t2_3y2clu5h;False;False;[];;Flashback from Kokkoku hype asf;False;False;;;;1610616120;;False;{};gj7npl1;False;t3_kx2avb;False;True;t3_kx2avb;/r/anime/comments/kx2avb/what_anime_songmusic_gets_you_pumped_up_while/gj7npl1/;1610693460;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RockStarZero23;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Animeniac;light;text;t2_42anxyev;False;False;[];;OP for Slamdunk;False;False;;;;1610616128;;False;{};gj7npus;False;t3_kx2avb;False;True;t3_kx2avb;/r/anime/comments/kx2avb/what_anime_songmusic_gets_you_pumped_up_while/gj7npus/;1610693464;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yri4lf12;;;[];;;;text;t2_6bfipjd7;False;False;[];;[Eien no Tomodachi](https://youtu.be/wXX0U4KMXjI);False;False;;;;1610616150;;False;{};gj7nqnt;False;t3_kx2avb;False;True;t3_kx2avb;/r/anime/comments/kx2avb/what_anime_songmusic_gets_you_pumped_up_while/gj7nqnt/;1610693478;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TextMekks;;;[];;;;text;t2_106p67;False;False;[];;"God I feel old. - -Listen and maybe watch the music video to Eminem’s Stan.... - -A Stan is basically an obsessed fan.";False;False;;;;1610616160;;False;{};gj7nr1m;False;t3_kx22ey;False;True;t3_kx22ey;/r/anime/comments/kx22ey/what_does_stans_mean/gj7nr1m/;1610693483;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal_Ebb_238;;;[];;;;text;t2_8nmkui77;False;False;[];;Any kalifana cover;False;False;;;;1610616218;;False;{};gj7nt41;False;t3_kx2avb;False;True;t3_kx2avb;/r/anime/comments/kx2avb/what_anime_songmusic_gets_you_pumped_up_while/gj7nt41/;1610693515;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rdp2004;;;[];;;;text;t2_67yj405m;False;False;[];;Inferno by Mrs green apple;False;False;;;;1610616311;;False;{};gj7nwd7;False;t3_kx2avb;False;True;t3_kx2avb;/r/anime/comments/kx2avb/what_anime_songmusic_gets_you_pumped_up_while/gj7nwd7/;1610693568;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi spacestarsandskylee, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610616378;moderator;False;{};gj7nyqc;False;t3_kx2dfb;False;True;t3_kx2dfb;/r/anime/comments/kx2dfb/on_an_anime_kick_recommend_me_some_stuff_to_watch/gj7nyqc/;1610693607;1;False;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;"For nonlyrical OST, my go tos are - -[Kurogane](https://youtu.be/guQGfbOFHB0) from Fairy Tail - -[You say Run](https://youtu.be/iYZIUtDAFIw) from My Hero Acadmia";False;False;;;;1610616390;;False;{};gj7nz6m;False;t3_kx2avb;False;True;t3_kx2avb;/r/anime/comments/kx2avb/what_anime_songmusic_gets_you_pumped_up_while/gj7nz6m/;1610693614;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi c0ldZer0-, your post has been removed because you're using the Watch This flair on a post that's not a text thread. Check out [this guide](https://www.reddit.com/r/anime/wiki/guidetowatchthis) to making a good post! - -We require all Watch This posts recommending an anime to be text posts at least 1500 characters long. If you're posting an unedited clip of an anime, please repost with the Clip flair instead. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -[**Thank you!**](#blushubot) - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610616397;moderator;False;{};gj7nzfy;False;t3_kx2d4p;False;True;t3_kx2d4p;/r/anime/comments/kx2d4p/i_tried_to_imitate_kanekis_and_rize_dialogue_from/gj7nzfy/;1610693618;1;False;False;anime;t5_2qh22;;0;[]; -[];;;defeatingme;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/defeatingme;light;text;t2_31dwk2wd;False;False;[];;"Touch off - The Promised Neverland OP 1 - -and Blood Circulator - Naruto Shippuden OP 19";False;False;;;;1610616420;;False;{};gj7o0az;False;t3_kx2avb;False;True;t3_kx2avb;/r/anime/comments/kx2avb/what_anime_songmusic_gets_you_pumped_up_while/gj7o0az/;1610693631;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;The ost “Attack on Titan” from Attack on Titan (specifically around 2:25) makes me pumped every time I hear it;False;False;;;;1610616649;;False;{};gj7o88t;False;t3_kx2avb;False;False;t3_kx2avb;/r/anime/comments/kx2avb/what_anime_songmusic_gets_you_pumped_up_while/gj7o88t/;1610693758;4;True;False;anime;t5_2qh22;;0;[]; -[];;;pocokknight;;;[];;;;text;t2_5jjj0155;False;False;[];;all OP and ED of Overlord;False;False;;;;1610616706;;False;{};gj7oaai;False;t3_kx2avb;False;True;t3_kx2avb;/r/anime/comments/kx2avb/what_anime_songmusic_gets_you_pumped_up_while/gj7oaai/;1610693789;1;True;False;anime;t5_2qh22;;0;[]; -[];;;my__alt_;;;[];;;;text;t2_61t6nshf;False;False;[];;one piece;False;False;;;;1610616775;;False;{};gj7ocs5;False;t3_kx2dfb;False;True;t3_kx2dfb;/r/anime/comments/kx2dfb/on_an_anime_kick_recommend_me_some_stuff_to_watch/gj7ocs5/;1610693830;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;Ah fuck that used to be my exam pump up song. The final part with Mika Kobayashi gives me chills to this day.;False;False;;;;1610616809;;False;{};gj7odzf;False;t3_kx2avb;False;True;t1_gj7o88t;/r/anime/comments/kx2avb/what_anime_songmusic_gets_you_pumped_up_while/gj7odzf/;1610693848;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Yri4lf12;;;[];;;;text;t2_6bfipjd7;False;False;[];;Did you mean kalafina?;False;False;;;;1610616902;;False;{};gj7oh7x;False;t3_kx2avb;False;False;t1_gj7nt41;/r/anime/comments/kx2avb/what_anime_songmusic_gets_you_pumped_up_while/gj7oh7x/;1610693900;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610616969;moderator;False;{};gj7ojli;False;t3_kx2hvg;False;True;t3_kx2hvg;/r/anime/comments/kx2hvg/what_is_this_animes_name/gj7ojli/;1610693939;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal_Ebb_238;;;[];;;;text;t2_8nmkui77;False;False;[];;"I am a spider so what?(isekai) and Deca dence(post apocalyptic reverse isekai), ""Fumetsu no anata e"" is also good but will only aired in april 2021.";False;False;;;;1610616986;;False;{};gj7ok6e;False;t3_kx2dfb;False;True;t3_kx2dfb;/r/anime/comments/kx2dfb/on_an_anime_kick_recommend_me_some_stuff_to_watch/gj7ok6e/;1610693950;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RepostPatrol101;;;[];;;;text;t2_7x6eu6me;False;False;[];;Violet Evergarden;False;False;;;;1610616999;;False;{};gj7okmp;False;t3_kx2hvg;False;True;t3_kx2hvg;/r/anime/comments/kx2hvg/what_is_this_animes_name/gj7okmp/;1610693960;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ZealReadit;;;[];;;;text;t2_84wpndie;False;False;[];;"Thanks ;)";False;False;;;;1610617029;;False;{};gj7olm0;True;t3_kx2hvg;False;True;t1_gj7okmp;/r/anime/comments/kx2hvg/what_is_this_animes_name/gj7olm0/;1610693976;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Banimikyu;;;[];;;;text;t2_351j5nac;False;False;[];;Miss Kobayashi's Dragon Maid! Just, trust me on that.;False;False;;;;1610617038;;False;{};gj7olx5;False;t3_kx2dfb;False;True;t3_kx2dfb;/r/anime/comments/kx2dfb/on_an_anime_kick_recommend_me_some_stuff_to_watch/gj7olx5/;1610693981;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Putin-Sama-34;;;[];;;;text;t2_31r8no6r;False;False;[];;Pretty sure it’s Violet Evergarden;False;False;;;;1610617039;;False;{};gj7olxw;False;t3_kx2hvg;False;True;t3_kx2hvg;/r/anime/comments/kx2hvg/what_is_this_animes_name/gj7olxw/;1610693981;0;True;False;anime;t5_2qh22;;0;[]; -[];;;UmarShj;;;[];;;;text;t2_9t039o7k;False;False;[];;hunter X;False;False;;;;1610617218;;False;{};gj7os3g;False;t3_kx2dfb;False;True;t3_kx2dfb;/r/anime/comments/kx2dfb/on_an_anime_kick_recommend_me_some_stuff_to_watch/gj7os3g/;1610694086;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi YourNormallyBoi, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610617286;moderator;False;{};gj7ouf5;False;t3_kx2k0s;False;True;t3_kx2k0s;/r/anime/comments/kx2k0s/i_have_finally_joined_ranime/gj7ouf5/;1610694123;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Easy_Service;;;[];;;;text;t2_80gmiui6;False;False;[];;"I don’t know what you’ve watched so I’ll try my best- - -- Revolutionary Girl Utena -- Azumanga Daioh -- Brand New Animal -- Flip Flappers -- Kyousougiga -- Princess Jellyfish";False;False;;;;1610617553;;False;{};gj7p3p3;False;t3_kx2dfb;False;True;t3_kx2dfb;/r/anime/comments/kx2dfb/on_an_anime_kick_recommend_me_some_stuff_to_watch/gj7p3p3/;1610694271;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jicuhrabbitkim;;;[];;;;text;t2_6po9il13;False;False;[];;We already have Demon slayer on Netflix last year lol.;False;False;;;;1610617567;;False;{};gj7p47a;False;t3_kx2k0s;False;True;t3_kx2k0s;/r/anime/comments/kx2k0s/i_have_finally_joined_ranime/gj7p47a/;1610694278;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vegfarende;;;[];;;;text;t2_64fe1cve;False;False;[];;It's pretty much related to anything in popular culture, cars etc...;False;False;;;;1610617789;;False;{};gj7pbq1;False;t3_kx22ey;False;True;t1_gj7moev;/r/anime/comments/kx22ey/what_does_stans_mean/gj7pbq1/;1610694396;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal_Ebb_238;;;[];;;;text;t2_8nmkui77;False;False;[];;Oh yes sorry😅;False;False;;;;1610617939;;False;{};gj7pgwa;False;t3_kx2avb;False;True;t1_gj7oh7x;/r/anime/comments/kx2avb/what_anime_songmusic_gets_you_pumped_up_while/gj7pgwa/;1610694474;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spacestarsandskylee;;;[];;;;text;t2_49qpfz0z;False;False;[];;I've seen a few things about that one I'll have to try it thank you!;False;False;;;;1610617971;;False;{};gj7pi0x;True;t3_kx2dfb;False;True;t1_gj7olx5;/r/anime/comments/kx2dfb/on_an_anime_kick_recommend_me_some_stuff_to_watch/gj7pi0x/;1610694491;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spacestarsandskylee;;;[];;;;text;t2_49qpfz0z;False;False;[];;Thank you!! I'll try them out ☺️;False;False;;;;1610617997;;False;{};gj7piwr;True;t3_kx2dfb;False;True;t1_gj7p3p3;/r/anime/comments/kx2dfb/on_an_anime_kick_recommend_me_some_stuff_to_watch/gj7piwr/;1610694504;2;True;False;anime;t5_2qh22;;0;[]; -[];;;spacestarsandskylee;;;[];;;;text;t2_49qpfz0z;False;False;[];;Thank you!!;False;False;;;;1610618027;;False;{};gj7pjzn;True;t3_kx2dfb;False;True;t1_gj7ok6e;/r/anime/comments/kx2dfb/on_an_anime_kick_recommend_me_some_stuff_to_watch/gj7pjzn/;1610694519;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;I like most anime endings;False;False;;;;1610618740;;False;{};gj7q8f7;False;t3_kx2t19;False;False;t3_kx2t19;/r/anime/comments/kx2t19/a_discussion_about_anime_endings/gj7q8f7/;1610694903;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"I knew this would happen from the moment the restrictions expanded beyond Tokyo - -God doesn't want us to see this movie";False;False;;;;1610619025;;1610619219.0;{};gj7qi4p;False;t3_kx2uao;False;False;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7qi4p/;1610695060;186;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610619049;moderator;False;{};gj7qiy2;False;t3_kx2x4h;False;True;t3_kx2x4h;/r/anime/comments/kx2x4h/need_help_finding_a_song/gj7qiy2/;1610695073;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Joseki100;;;[];;;;text;t2_fzzy8;False;False;[];;That's it, COVID has gone too far now.;False;False;;;;1610619059;;False;{};gj7qjam;False;t3_kx2uao;False;False;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7qjam/;1610695078;71;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRubyXD;;;[];;;;text;t2_4wfjyllc;False;True;[];;Maybe bcuz the hardened skin is fresh (not like the walls who are 100 years old) and just not so destructible like the walls...;False;False;;;;1610619109;;False;{};gj7ql00;False;t3_kx2twh;False;False;t3_kx2twh;/r/anime/comments/kx2twh/attack_on_titan_question/gj7ql00/;1610695105;11;True;False;anime;t5_2qh22;;0;[]; -[];;;CosmicPenguin_OV103;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cosmic_Penguin;light;text;t2_1ufwqhs7;False;True;[];;~~The end of anime (source: Hideaki Anno, 2015) is postponed again~~;False;False;;;;1610619194;;False;{};gj7qo05;False;t3_kx2uao;False;False;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7qo05/;1610695152;8;True;False;anime;t5_2qh22;;0;[]; -[];;;as1eep;;;[];;;;text;t2_pek5e8i;False;False;[];;Chihayafuru, cant go wrong with this one!;False;False;;;;1610619365;;False;{};gj7qtts;False;t3_kx2dfb;False;True;t3_kx2dfb;/r/anime/comments/kx2dfb/on_an_anime_kick_recommend_me_some_stuff_to_watch/gj7qtts/;1610695240;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Slifer13xx;;MAL;[];;http://myanimelist.net/animelist/Slifer13xx;dark;text;t2_irntz;False;False;[];;"Most anime are just advertisement for the source materials. ""This is some of the story, now go read the manga/LN/VN/WN for more."" It's very common.";False;False;;;;1610619385;;False;{};gj7quik;False;t3_kx2t19;False;False;t3_kx2t19;/r/anime/comments/kx2t19/a_discussion_about_anime_endings/gj7quik/;1610695253;7;True;False;anime;t5_2qh22;;0;[]; -[];;;CryogenicFire;;;[];;;;text;t2_3efloeaa;False;False;[];;"So first of all, even being the same material there are definitely differences in the wall and Annie's shell, as you can see the walls are opaque and rock-like, while Annie's shell is transparent. So it could be a factor of either concentration or time, that makes them different. - -Also it is possible that the reason they don't pierce through it is because that would possibly kill Annie in the process";False;False;;;;1610619681;;False;{};gj7r4wp;False;t3_kx2twh;False;False;t3_kx2twh;/r/anime/comments/kx2twh/attack_on_titan_question/gj7r4wp/;1610695414;57;True;False;anime;t5_2qh22;;0;[]; -[];;;Skylair13;;;[];;;;text;t2_1xfa6ths;False;False;[];;Nuke the COVID;False;False;;;;1610619688;;False;{};gj7r54u;False;t3_kx2uao;False;False;t1_gj7qjam;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7r54u/;1610695417;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Nazenn;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Nazenn;light;text;t2_n4ozd;False;False;[];;Probably due to different levels of density in the materials, the same way that metals can be soft/fragile or hard/sturdy depending on how they're tempered and treated. The Wall is more like Reiner's armor which can be broken or damaged if pressured in the right way and isn't 100% damage resistent, while the Crystal that Annie and Eren uss is a lot more solid and protective;False;False;;;;1610619726;;False;{};gj7r6gd;False;t3_kx2twh;False;False;t3_kx2twh;/r/anime/comments/kx2twh/attack_on_titan_question/gj7r6gd/;1610695436;35;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;"That was my initial thought, but they are at the end of the day inhuman powers. I didn’t know if I should be considering them how real world concrete/skin works. - -Also, it’s AoT, so it doesn’t sit right that something about it wasn’t explained/foreshadowed/hinted. Until well, later on we learn that they are different levels of the power, and Annie’s was stronger or smth.";False;False;;;;1610619758;;False;{};gj7r7kd;True;t3_kx2twh;False;True;t1_gj7ql00;/r/anime/comments/kx2twh/attack_on_titan_question/gj7r7kd/;1610695453;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;Yeah, thought about all these reasons too. Was just thinking if there was something that we don’t have to *consider* since AoT pretty much gives/hints a reason to literally everything lol;False;False;;;;1610619840;;False;{};gj7rae8;True;t3_kx2twh;False;True;t1_gj7r4wp;/r/anime/comments/kx2twh/attack_on_titan_question/gj7rae8/;1610695495;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRubyXD;;;[];;;;text;t2_4wfjyllc;False;True;[];;make sense;False;False;;;;1610619871;;False;{};gj7rbgq;False;t3_kx2twh;False;True;t1_gj7r7kd;/r/anime/comments/kx2twh/attack_on_titan_question/gj7rbgq/;1610695511;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahou_Shoujo_Ramune;;;[];;;;text;t2_4vs4l2r6;False;False;[];;Any anime ost composed by Hiroyuki Sawano makes doing anything, no matter how mundane into pure epicness.;False;False;;;;1610620069;;False;{};gj7rih6;False;t3_kx2avb;False;True;t3_kx2avb;/r/anime/comments/kx2avb/what_anime_songmusic_gets_you_pumped_up_while/gj7rih6/;1610695622;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;When will twitter cancel this mf;False;False;;;;1610620118;;False;{};gj7rk8t;False;t3_kx2uao;False;False;t1_gj7qjam;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7rk8t/;1610695649;50;True;False;anime;t5_2qh22;;0;[]; -[];;;Godprime;;;[];;;;text;t2_dezxafd;False;False;[];;It would take a long time for a single claw to break through the shin of a Titan that’s trying to kill you. Plus those claws have a lot of energy in them, you would need to hit the same spot multiple times on a moving regenerating target trying to kill you. The regeneration alone makes this feasibly impossible to do;False;False;;;;1610620249;;False;{};gj7royy;False;t3_kx2twh;False;False;t3_kx2twh;/r/anime/comments/kx2twh/attack_on_titan_question/gj7royy/;1610695726;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Devin__;;;[];;;;text;t2_hx0lq;False;False;[];;"You forgot the ""(again)"" in the title.";False;False;;;;1610620300;;False;{};gj7rqt0;False;t3_kx2uao;False;False;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7rqt0/;1610695754;116;True;False;anime;t5_2qh22;;0;[]; -[];;;Damarugaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Damarugaki/;light;text;t2_6zyxfkgg;False;False;[];;Third impact the COVID;False;False;;;;1610620401;;False;{};gj7ruf4;False;t3_kx2uao;False;False;t1_gj7r54u;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7ruf4/;1610695811;31;True;False;anime;t5_2qh22;;0;[]; -[];;;kaboos-alt-uwu;;;[];;;;text;t2_4i567lmh;False;False;[];;Different variety’s and hardnesses of the material, think about how different the wall, armoured Titan and the attack Titan’s armour look and are used to one another;False;False;;;;1610620405;;False;{};gj7ruk5;False;t3_kx2twh;False;False;t3_kx2twh;/r/anime/comments/kx2twh/attack_on_titan_question/gj7ruk5/;1610695813;10;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"right, since you didn't specify any genres, I'll do one I'd like you to try, and bomb you with other recommendations. - -Koi Kaze. Try and go into it blind, and stick with it till the end. If you've read the synopsis, still, watch it, and see what you think at the end. You have to pirate it, it isn't anywhere legally.";False;False;;;;1610620685;;False;{};gj7s4nw;False;t3_kx2k0s;False;True;t3_kx2k0s;/r/anime/comments/kx2k0s/i_have_finally_joined_ranime/gj7s4nw/;1610695977;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"and here's the bomb - - - -Slice of Life: - -[The Helpful Fox Senko-San](https://anilist.co/anime/105914/The-Helpful-Fox-Senkosan/) -Comedy, Fantasy, Slice of Life, Supernatural - -[K-ON!](https://anilist.co/anime/5680/KON/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_k-on) -Comedy, Music, Slice of Life - -[Daily Lives of High School Boys](https://anilist.co/anime/11843/Daily-Lives-of-High-School-Boys/) -Comedy, Slice of Life - -Action: - -[Kill la Kill](https://anilist.co/anime/18679/Kill-la-Kill/) -Action, Comedy, Ecchi - -[My Hero Academia](https://anilist.co/anime/21459/My-Hero-Academia/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_my_hero_academia_.2F_boku_no_hero_academia_.2F_bnha) -Action, Adventure, Comedy - -[Code Geass: Lelouch of the Rebellion](https://anilist.co/anime/1575/Code-Geass-Lelouch-of-the-Rebellion/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_code_geass) -Action, Drama, Mecha, Sci-Fi, Thriller - -[Gurren Lagann](https://anilist.co/anime/2001/Gurren-Lagann/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_tengen_toppa_gurren_lagann) -Action, Comedy, Drama, Mecha, Romance, Sci-Fi - -[Attack on Titan](https://anilist.co/anime/16498/Attack-on-Titan/) -[Watch Order](Watch Order of the whole AoT Series: https://www.reddit.com/r/anime/wiki/watch_order#wiki_attack_on_titan) -Action, Drama, Fantasy, Mystery - -[Fullmetal Alchemist: Brotherhood](https://anilist.co/anime/5114/Fullmetal-Alchemist-Brotherhood/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_fullmetal_alchemist) -Action, Adventure, Drama, Fantasy - -[Cowboy Bebop](https://anilist.co/anime/1/Cowboy-Bebop/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_cowboy_bebop) -Action, Adventure, Drama, Sci-Fi - -[Sword Art Online](https://anilist.co/anime/11757/Sword-Art-Online/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_sword_art_online) -Action, Adventure, Fantasy, Romance - -[Fate/stay night: Unlimited Blade Works](https://anilist.co/anime/19603/Fatestay-night-Unlimited-Blade-Works/) -[Watch Order](https://www.reddit.com/r/anime/wiki/seriesfaq/fate) -Action, Fantasy, Supernatural - -[Angel Beats!](https://anilist.co/anime/6547/Angel-Beats/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_angel_beats) -Action, Comedy, Drama, Supernatural - -[Akame ga Kill!](https://anilist.co/anime/20613/Akame-ga-Kill/) -Action, Adventure, Drama, Fantasy, Horror, Psychological - -[Neon Genesis Evangelion](https://anilist.co/anime/30/Neon-Genesis-Evangelion/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_neon_genesis_evangelion_.2F_nge) -Action, Drama, Mecha, Mystery, Psychological, Sci-Fi - -[Demon Slayer: Kimetsu no Yaiba](https://anilist.co/anime/101922/Demon-Slayer-Kimetsu-no-Yaiba/) -Action, Adventure, Drama, Fantasy, Mystery, Supernatural - -[JoJo's Bizarre Adventure](https://anilist.co/anime/14719/JoJos-Bizarre-Adventure/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_jojo.27s_bizarre_adventure) -Action, Adventure, Supernatural - -[Akira](https://anilist.co/anime/47/Akira/) -Action, Adventure, Horror, Psychological, Sci-Fi, Supernatural - -Romantic Comedies: - -[TONIKAWA: Over The Moon For You](https://anilist.co/anime/116267/TONIKAWA-Over-The-Moon-For-You/) -Comedy, Romance, Sci-Fi, Slice of Life - -[Kaguya-sama: Love is War](https://anilist.co/anime/101921/Kaguyasama-Love-is-War/) -Comedy, Psychological, Romance, Slice of Life - -[My Teen Romantic Comedy SNAFU](https://anilist.co/anime/14813/My-Teen-Romantic-Comedy-SNAFU/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_yahari_ore_no_seishun_love_comedy_wa_machigatteiru_.2F_oregairu) -Comedy, Drama, Romance, Slice of Life - -[Clannad](https://anilist.co/anime/2167/Clannad/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_clannad) -Comedy, Drama, Romance, Slice of Life, Supernatural - -[Bakemonogatari](https://anilist.co/anime/5081/Bakemonogatari/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_-monogatari_.2F_bakemonogatari) -Comedy, Drama, Mystery, Psychological, Romance, Supernatural - -[Toradora!](https://anilist.co/anime/4224/Toradora/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_toradora.21) -Comedy, Drama, Romance, Slice of Life - -[Rent-a-Girlfriend](https://anilist.co/anime/113813/RentaGirlfriend/) -Comedy, Drama, Ecchi, Romance - -[Rascal Does Not Dream of Bunny Girl Senpai](https://anilist.co/anime/101291/Rascal-Does-Not-Dream-of-Bunny-Girl-Senpai/) -Comedy, Mystery, Psychological, Romance, Slice of Life, Supernatural - -[Is It Wrong to Try to Pick Up Girls in a Dungeon?](https://anilist.co/anime/20920/Is-It-Wrong-to-Try-to-Pick-Up-Girls-in-a-Dungeon/) -Action, Adventure, Comedy, Fantasy, Romance - -[Saekano: How to Raise a Boring Girlfriend](https://anilist.co/anime/20657/Saekano-How-to-Raise-a-Boring-Girlfriend/) -Comedy, Romance, Slice of Life - -Mystery: - -[When They Cry](https://anilist.co/anime/934/When-They-Cry/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_higurashi_no_naku_no_koro_ni) -Horror, Mystery, Psychological, Supernatural, Thriller - -[Monster](https://anilist.co/anime/19/Monster/) -Drama, Horror, Mystery, Psychological, Thriller - -[Made in Abyss](https://anilist.co/anime/97986/Made-in-Abyss/) -Adventure, Drama, Fantasy, Mystery, Sci-Fi - -Tearjerkers: - -[Violet Evergarden](https://anilist.co/anime/21827/Violet-Evergarden/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_violet_evergarden) -Drama, Fantasy, Slice of Life - -[A Silent Voice](https://anilist.co/anime/20954/A-Silent-Voice/) -Drama, Romance, Slice of Life - -[Your Name](https://anilist.co/anime/21519/Your-Name/) -Drama, Romance, Supernatural - -[I Want to Eat Your Pancreas](https://anilist.co/anime/99750/I-Want-to-Eat-Your-Pancreas/) -Drama, Romance, Slice of Life - -[Your Lie in April](https://anilist.co/anime/20665/Your-Lie-in-April/) -Drama, Music, Romance, Slice of Life - -Psychological anime: - -[Steins;Gate](https://anilist.co/anime/9253/SteinsGate/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_steins.3Bgate) -Drama, Psychological, Sci-Fi, Thriller - -[Death Note](https://anilist.co/anime/1535/Death-Note/) -Mystery, Psychological, Supernatural, Thriller - -[Welcome to the N-H-K](https://anilist.co/anime/1210/Welcome-to-the-NHK/) -Comedy, Drama, Psychological, Romance, Slice of Life - -[Puella Magi Madoka Magica](https://anilist.co/anime/9756/Puella-Magi-Madoka-Magica/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_madoka_magica) -Action, Drama, Fantasy, Mahou Shoujo, Psychological, Thriller - -[Koi Kaze](https://anilist.co/anime/634/Koi-Kaze/) -Drama, Psychological, Romance, Slice of Life - -[Scum's Wish](https://anilist.co/anime/21701/Scums-Wish/) -Drama, Ecchi, Psychological, Romance - -Isekai: - -[Re:ZERO - Starting Life in Another World](https://anilist.co/anime/21355/ReZERO-Starting-Life-in-Another-World/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_re.3Azero_kara_hajimeru_isekai_seikatsu) -Action, Adventure, Drama, Fantasy, Psychological, Thriller - -[That Time I Got Reincarnated as a Slime](https://anilist.co/anime/101280/That-Time-I-Got-Reincarnated-as-a-Slime/) -Adventure, Comedy, Fantasy - -[How Not to Summon a Demon Lord](https://anilist.co/anime/101004/How-Not-to-Summon-a-Demon-Lord/) -Comedy, Ecchi, Fantasy - -[Log Horizon](https://anilist.co/anime/17265/Log-Horizon/) -Action, Adventure, Fantasy - -[The Devil is a Part-Timer!](https://anilist.co/anime/15809/The-Devil-is-a-PartTimer/) -Comedy, Fantasy, Romance, Slice of Life - -[Cautious Hero: The Hero Is Overpowered but Overly Cautious](https://anilist.co/anime/105156/Cautious-Hero-The-Hero-Is-Overpowered-but-Overly-Cautious/) -Action, Adventure, Comedy, Fantasy - -[KONOSUBA -God's blessing on this wonderful world!](https://anilist.co/anime/21202/KONOSUBA-Gods-blessing-on-this-wonderful-world/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_kono_subarashii_sekai_ni_shukufuku_wo.21) -Adventure, Comedy, Fantasy - -Misc: - -[Spirited Away](https://anilist.co/anime/199/Spirited-Away/) -Adventure, Drama, Fantasy, Romance, Supernatural - -[No Game, No Life](https://anilist.co/anime/19815/No-Game-No-Life/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_no_game_no_life) -Adventure, Comedy, Ecchi, Fantasy - -Ecchi: - -[High School DxD](https://anilist.co/anime/11617/High-School-DxD/) -Action, Comedy, Ecchi, Fantasy, Romance - -[Domestic Girlfriend](https://anilist.co/anime/103139/Domestic-Girlfriend/) -Drama, Ecchi, Romance - -[Miru Tights](https://anilist.co/anime/106967/Miru-Tights/) -Ecchi, Slice of Life - -[Ao-chan Can't Study!](https://anilist.co/anime/105989/Aochan-Cant-Study/) -Comedy, Ecchi, Romance - -[Panty & Stocking with Garterbelt](https://anilist.co/anime/8795/Panty--Stocking-with-Garterbelt/) -Action, Comedy, Ecchi, Supernatural - -[Prison School](https://anilist.co/anime/20807/Prison-School/) -Comedy, Ecchi - -[Why the hell are you here, Teacher!?](https://anilist.co/anime/104325/Why-the-hell-are-you-here-Teacher/) -Comedy, Ecchi, Romance - -[To Love Ru](https://www.reddit.com/r/anime/wiki/watch_order#wiki_to_love-ru) -Comedy, Ecchi, Romance, Sci-Fi - -[Chivalry of a Failed Knight](https://anilist.co/anime/21092/Chivalry-of-a-Failed-Knight/) -Action, Ecchi, Fantasy, Romance - -[SHIMONETA: A Boring World Where the Concept of Dirty Jokes Doesn’t Exist](https://anilist.co/anime/20910/SHIMONETA-A-Boring-World-Where-the-Concept-of-Dirty-Jokes-Doesnt-Exist/) -Comedy, Ecchi - -[Interspecies Reviewers](https://anilist.co/anime/110270/Interspecies-Reviewers/) -Comedy, Ecchi, Fantasy";False;False;;;;1610620715;;False;{};gj7s5s8;False;t3_kx2k0s;False;True;t1_gj7s4nw;/r/anime/comments/kx2k0s/i_have_finally_joined_ranime/gj7s5s8/;1610695994;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KHlover;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/KHlover1995;dark;text;t2_g9mq3;False;False;[];;Bad time to finish a trilogy lul. Let's see if the delay is shorter or longer than HF3 last year.;False;False;;;;1610620809;;False;{};gj7s958;False;t3_kx2uao;False;True;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7s958/;1610696050;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;I'd say yes, but not enough to force yourself through if you're not liking it.;False;False;;;;1610620963;;False;{};gj7sep7;False;t3_kx37xt;False;True;t3_kx37xt;/r/anime/comments/kx37xt/does_owari_no_seraph_get_better/gj7sep7/;1610696143;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;magic, like everything in the show;False;True;;comment score below threshold;;1610620966;;False;{};gj7ses1;False;t3_kx2twh;False;False;t3_kx2twh;/r/anime/comments/kx2twh/attack_on_titan_question/gj7ses1/;1610696144;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;keithohara;;;[];;;;text;t2_gbzf7q;False;True;[];;This is the last straw Covid;False;False;;;;1610621012;;False;{};gj7sgf1;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj7sgf1/;1610696169;25;True;False;anime;t5_2qh22;;0;[]; -[];;;HayashiSawaryo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/HayashiSawaryo/;light;text;t2_74ql25l0;False;True;[];;"[Source from official site](https://www.evangelion.co.jp/) - -""Evangelion: 3.0+1.0 Thrice Upon a Time"" has been postponed again, new premiere TBA";False;False;;;;1610621025;;False;{};gj7sgv4;True;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj7sgv4/;1610696176;578;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;Are we sure this movie isn’t fake?;False;False;;;;1610621064;;False;{};gj7si73;False;t3_kx2uao;False;False;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7si73/;1610696196;70;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;People only watched that because of shinoa;False;False;;;;1610621065;;False;{};gj7si9a;False;t3_kx37xt;False;True;t3_kx37xt;/r/anime/comments/kx37xt/does_owari_no_seraph_get_better/gj7si9a/;1610696197;2;True;False;anime;t5_2qh22;;0;[]; -[];;;molly29_;;;[];;;;text;t2_4te50rtc;False;False;[];;I always feel like im not ready to say goodbye to this anime and this news just very convenient lol;False;False;;;;1610621270;;False;{};gj7spkl;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj7spkl/;1610696316;86;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;I am disappointed that it is ending so late but also disappointed that it will end this year.;False;False;;;;1610621427;;False;{};gj7sv34;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj7sv34/;1610696402;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SatouSmith;;;[];;;;text;t2_85ir9527;False;True;[];;Why are movies like Demon Slayer, HF3, Violet Evergarden, Gintana can get a release amid this pandemic but not this? Are they polishing it till it mirror finish?;False;False;;;;1610621450;;False;{};gj7svwu;False;t3_kx2uao;False;False;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7svwu/;1610696416;13;True;False;anime;t5_2qh22;;0;[]; -[];;;bineet111;;;[];;;;text;t2_8xtenvok;False;False;[];;I'm pretty sure the world is gonna end before this movie is gonna release.;False;False;;;;1610621560;;False;{};gj7szyv;False;t3_kx2uao;False;False;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7szyv/;1610696477;17;True;False;anime;t5_2qh22;;0;[]; -[];;;stickdudeseven;;;[];;;;text;t2_5yx41;False;False;[];;"You know those comments that said ""I won't believe it's released until I see the credits""? Well...";False;False;;;;1610621604;;False;{};gj7t1lj;False;t3_kx2uao;False;False;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7t1lj/;1610696502;54;True;False;anime;t5_2qh22;;0;[]; -[];;;Leiothrix;;;[];;;;text;t2_1210nz;False;False;[];;I would hazard a guess at Nero from the Fate franchise.;False;False;;;;1610621694;;False;{};gj7t4pz;False;t3_kx3fab;False;False;t3_kx3fab;/r/anime/comments/kx3fab/whose_sword_is_this/gj7t4pz/;1610696552;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"Japan were doing a decent job with the pandemic during that period. - - -They've had a spike in cases recently so they decided to delay. The movie was confirmed to be fully completed last month";False;False;;;;1610621761;;False;{};gj7t75l;False;t3_kx2uao;False;False;t1_gj7svwu;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7t75l/;1610696589;50;True;False;anime;t5_2qh22;;0;[]; -[];;;--coolboi--;;;[];;;;text;t2_9qjqsuco;False;False;[];;"Evangelion 3.0 + 1.0 (Delayed) Thrice upon a time - -Is Anno a time traveler? I'm pretty sure this is the 3rd time the film has been officially delayed.";False;False;;;;1610621782;;False;{};gj7t7yp;False;t3_kx2uao;False;False;t1_gj7rqt0;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7t7yp/;1610696601;61;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;"This question can be answered based on the ""impurity in the solution"" concept taught in high school Chem. - -But the evidence is a manga spoiler, so I won't write that.";False;False;;;;1610622101;;False;{};gj7tjkc;False;t3_kx2twh;False;False;t3_kx2twh;/r/anime/comments/kx2twh/attack_on_titan_question/gj7tjkc/;1610696781;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"People love to say Code Geass has the best ending in anime. But... - -R2 does, not R1. - -R1 just... ended, nothing was resolved at the end of R1, it was just a huge cliffhanger.";False;False;;;;1610622105;;False;{};gj7tjp4;False;t3_kx2t19;False;True;t3_kx2t19;/r/anime/comments/kx2t19/a_discussion_about_anime_endings/gj7tjp4/;1610696783;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610622116;;False;{};gj7tk3w;False;t3_kx3bdv;False;True;t1_gj7sgv4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj7tk3w/;1610696790;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Magister1991;;;[];;;;text;t2_167c2k;False;False;[];;Kuzu No Honkai;False;False;;;;1610622447;;False;{};gj7tw9n;False;t3_kx27uy;False;True;t3_kx27uy;/r/anime/comments/kx27uy/looking_for_a_new_anime_to_watch/gj7tw9n/;1610696972;1;True;False;anime;t5_2qh22;;0;[]; -[];;;strikeraiser;;MAL;[];;http://myanimelist.net/animelist/kulotsky00;dark;text;t2_d9bml;False;False;[];;"Not surprised, but still saddening. - -At this rate shouldn’t they just consider doing digital releases at this point?";False;False;;;;1610622733;;False;{};gj7u6z9;False;t3_kx2uao;False;False;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7u6z9/;1610697143;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610623208;;False;{};gj7uoxe;False;t3_kx2uao;False;True;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7uoxe/;1610697407;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Melonmans;;;[];;;;text;t2_9kom32s2;False;False;[];; I agree;False;False;;;;1610623215;;False;{};gj7up7e;False;t3_kx2avb;False;True;t1_gj7oaai;/r/anime/comments/kx2avb/what_anime_songmusic_gets_you_pumped_up_while/gj7up7e/;1610697411;1;True;False;anime;t5_2qh22;;0;[]; -[];;;krateloops;;;[];;;;text;t2_2c5kudtp;False;False;[];;Can't wait to be disappointed by Shinji again;False;False;;;;1610623362;;False;{};gj7uuto;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj7uuto/;1610697499;152;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610623519;;False;{};gj7v0tq;False;t3_kx2uao;False;False;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7v0tq/;1610697591;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Babayagagagag;;;[];;;;text;t2_9g25u423;False;False;[];;Finally;False;False;;;;1610623553;;False;{};gj7v24f;False;t3_kx3sga;False;True;t3_kx3sga;/r/anime/comments/kx3sga/he_said_it_rezero_season_2_part_2/gj7v24f/;1610697612;3;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;Yeah;False;False;;;;1610623580;;False;{};gj7v38s;True;t3_kx3sga;False;True;t1_gj7v24f;/r/anime/comments/kx3sga/he_said_it_rezero_season_2_part_2/gj7v38s/;1610697630;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Crisss30;;;[];;;;text;t2_gpzwd;False;False;[];;You Can (not) Release;False;False;;;;1610623598;;False;{};gj7v3y3;False;t3_kx2uao;False;False;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7v3y3/;1610697641;50;True;False;anime;t5_2qh22;;0;[]; -[];;;Star_Lux22;;;[];;;;text;t2_22d262q9;False;False;[];;Damn you COVID;False;False;;;;1610623658;;False;{};gj7v6ch;False;t3_kx2uao;False;False;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7v6ch/;1610697695;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BakugouFuckingKatsu;;;[];;;;text;t2_1gd3hj8w;False;False;[];;Maybe the true evangelion were all the delays we made in the end.;False;False;;;;1610623902;;False;{};gj7vfvq;False;t3_kx2uao;False;False;t1_gj7t7yp;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7vfvq/;1610697842;27;True;False;anime;t5_2qh22;;0;[]; -[];;;EatMePlsDaddy;;;[];;;;text;t2_15sof4;False;False;[];;Oh fuck off lol. 10 years fam. 10 YEARS!!!!;False;False;;;;1610624091;;False;{};gj7vn0v;False;t3_kx2uao;False;False;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7vn0v/;1610697954;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;This movie will never come out it's just a performance art piece;False;False;;;;1610624104;;False;{};gj7vnjm;False;t3_kx2uao;False;False;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7vnjm/;1610697962;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaidsburg100;;;[];;;;text;t2_11q4jiwi;False;False;[];;"Dude those shows really arent that similar...... -Good shows that I think you'd like are parasyte (dark cool story and action), cowboy bebop (great story but dark, also action), and 1000% watch vinland saga. Actually just watch vinland saga first no matter what, its a banger.";False;False;;;;1610624185;;False;{};gj7vqn2;False;t3_kx21oe;False;True;t3_kx21oe;/r/anime/comments/kx21oe/pls_help_anime_suggestions_are_needed/gj7vqn2/;1610698011;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jicuhrabbitkim;;;[];;;;text;t2_6po9il13;False;False;[];;Can this movie be delayed again I don’t want Evangelion to end. 🥲;False;False;;;;1610624291;;False;{};gj7vura;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj7vura/;1610698074;130;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacker9090;;;[];;;;text;t2_4x6ezv3a;False;False;[];;"In other news, water is wet. - -Still though, cant wait.(although it has basically 0 chance of ever getting aired in finnish theaters...)";False;False;;;;1610624468;;False;{};gj7w1nu;False;t3_kx2uao;False;False;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7w1nu/;1610698175;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheGeassWorld;;;[];;;;text;t2_13nieo;False;False;[];;short answer No. Long answer don't look to deep into the writing, it's a fun show. But if you don't like it and don't enjoy the generic writing. Skip it. It stays the same.;False;False;;;;1610624553;;False;{};gj7w4xp;False;t3_kx37xt;False;True;t3_kx37xt;/r/anime/comments/kx37xt/does_owari_no_seraph_get_better/gj7w4xp/;1610698224;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JustAsian555;;;[];;;;text;t2_3nn54bev;False;False;[];;Every single time;False;False;;;;1610624615;;False;{};gj7w7ba;False;t3_kx3bdv;False;True;t1_gj7uuto;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj7w7ba/;1610698260;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"The anime is supposedly based on the Light novel, not in the manga - -They are not holding back in the uncensored version";False;False;;;;1610624687;;False;{};gj7wa4a;False;t3_kx42mk;False;False;t3_kx42mk;/r/anime/comments/kx42mk/how_faithful_to_the_manga_is_redo_of_healer/gj7wa4a/;1610698303;8;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610624819;moderator;False;{};gj7wfb1;False;t3_kx45fz;False;True;t3_kx45fz;/r/anime/comments/kx45fz/i_know_this_is_a_low_quality_image_and_only_one/gj7wfb1/;1610698379;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;Princess Connect! Re:dive;False;False;;;;1610624871;;False;{};gj7whcq;False;t3_kx45fz;False;True;t3_kx45fz;/r/anime/comments/kx45fz/i_know_this_is_a_low_quality_image_and_only_one/gj7whcq/;1610698410;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ExoticPineapple2;;;[];;;;text;t2_2gcx181a;False;False;[];;Thank you;False;False;;;;1610624912;;False;{};gj7wiy5;False;t3_kx45fz;False;True;t1_gj7whcq;/r/anime/comments/kx45fz/i_know_this_is_a_low_quality_image_and_only_one/gj7wiy5/;1610698435;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Smart2805;;;[];;;;text;t2_3mu50axc;False;False;[];;So there wont be scenes missing from the censored version, alright I just need to make sure to see the uncensored version for the true revenge.;False;False;;;;1610624933;;1610668283.0;{};gj7wjs2;True;t3_kx42mk;False;False;t1_gj7wa4a;/r/anime/comments/kx42mk/how_faithful_to_the_manga_is_redo_of_healer/gj7wjs2/;1610698449;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;NP!;False;False;;;;1610624947;;False;{};gj7wkb5;False;t3_kx45fz;False;True;t1_gj7wiy5;/r/anime/comments/kx45fz/i_know_this_is_a_low_quality_image_and_only_one/gj7wkb5/;1610698456;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KK-Hunter;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/K-Khan&view=tile&status=7";light;text;t2_em45rsk;False;False;[];;I just watched the 26 episodes of Neon Genesis Evangelion and The End of Evangelion movie, what's this?;False;False;;;;1610625043;;False;{};gj7wo1k;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj7wo1k/;1610698510;40;True;False;anime;t5_2qh22;;0;[]; -[];;;Khazu_;;;[];;;;text;t2_r0uud3k;False;False;[];;Pretty much everybody thinks that and nothing new is said here. It needs reboot from the ground up. Even season 1 needs to be reworked. It was like 70+ chapter in 12 episodes as far I remember. It was insane and creators were out of their minds. To many details left out in nothingness.;False;False;;;;1610625098;;False;{};gj7wq8f;False;t3_kx45ud;False;False;t3_kx45ud;/r/anime/comments/kx45ud/tokyo_ghoul_should_get_a_reboot/gj7wq8f/;1610698543;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Klemzo69;;;[];;;;text;t2_39b3082r;False;False;[];;Ye im just venting.;False;False;;;;1610625156;;False;{};gj7wsi3;True;t3_kx45ud;False;True;t1_gj7wq8f;/r/anime/comments/kx45ud/tokyo_ghoul_should_get_a_reboot/gj7wsi3/;1610698577;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"The uncensored, ""Complete Recovery"" version comes out later (roughly 5 hours later) than the normal release. - -We'll see if the next episode tones anything down.";False;False;;;;1610625156;;False;{};gj7wsim;False;t3_kx42mk;False;False;t1_gj7wjs2;/r/anime/comments/kx42mk/how_faithful_to_the_manga_is_redo_of_healer/gj7wsim/;1610698577;5;True;False;anime;t5_2qh22;;0;[]; -[];;;YourNormallyBoi;;;[];;;;text;t2_9sst5kur;False;False;[];;england hasnt oof;False;False;;;;1610625254;;False;{};gj7wwgn;True;t3_kx2k0s;False;True;t1_gj7p47a;/r/anime/comments/kx2k0s/i_have_finally_joined_ranime/gj7wwgn/;1610698636;1;True;False;anime;t5_2qh22;;0;[]; -[];;;force_emitter;;;[];;;;text;t2_evn64;False;False;[];;I have no words for this;False;False;;;;1610625266;;False;{};gj7wwy7;False;t3_kx3bdv;False;False;t1_gj7sgv4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj7wwy7/;1610698643;113;True;False;anime;t5_2qh22;;0;[]; -[];;;slimes007;;;[];;;;text;t2_tgoqs;False;False;[];;lol...;False;False;;;;1610625470;;False;{};gj7x53z;False;t3_kx2uao;False;True;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7x53z/;1610698768;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kuddlesworth9419;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kuddlesworth;light;text;t2_btage;False;False;[];;Happy ending I hope.;False;False;;;;1610625483;;False;{};gj7x5mz;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj7x5mz/;1610698776;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kuddlesworth9419;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kuddlesworth;light;text;t2_btage;False;False;[];;You need to watch the Rebuild films now. This is meant to be the last film. https://en.wikipedia.org/wiki/Rebuild_of_Evangelion;False;False;;;;1610625552;;False;{};gj7x8dc;False;t3_kx3bdv;False;False;t1_gj7wo1k;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj7x8dc/;1610698816;83;True;False;anime;t5_2qh22;;0;[]; -[];;;slimes007;;;[];;;;text;t2_tgoqs;False;False;[];;Well, the spike could have been because every Japanese fan went to see the Demon slayer movie and overcrowded the theater. It was so bad they even lifted restrictions to get more people into the theater.;False;True;;comment score below threshold;;1610625586;;False;{};gj7x9nr;False;t3_kx2uao;False;False;t1_gj7t75l;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7x9nr/;1610698836;-21;True;False;anime;t5_2qh22;;0;[]; -[];;;polco-0;;;[];;;;text;t2_1q1ee55g;False;False;[];;Yes i think it will, honestly I have not finished FMAB because i did not like it.;False;False;;;;1610625588;;False;{};gj7x9sn;False;t3_kx4aj1;False;True;t3_kx4aj1;/r/anime/comments/kx4aj1/can_aot_dethrone_fmab/gj7x9sn/;1610698838;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;KK-Hunter;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/K-Khan&view=tile&status=7";light;text;t2_em45rsk;False;False;[];;Cool, thanks.;False;False;;;;1610625647;;False;{};gj7xc4a;False;t3_kx3bdv;False;False;t1_gj7x8dc;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj7xc4a/;1610698875;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Stummer_Schrei;;;[];;;;text;t2_1214bw;False;True;[];;NOO OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO;False;False;;;;1610625731;;False;{};gj7xfi7;False;t3_kx3bdv;False;False;t1_gj7wwy7;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj7xfi7/;1610698927;57;True;False;anime;t5_2qh22;;0;[]; -[];;;Bobathanhigs;;;[];;;;text;t2_w4z4i;False;False;[];;Bruh;False;False;;;;1610625808;;False;{};gj7xiia;False;t3_kx3bdv;False;False;t1_gj7sgv4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj7xiia/;1610698973;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Don't even know why you want to start that shitstorm if you really want opinions i will link you to the last post - -[here](https://www.reddit.com/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/?utm_medium=android_app&utm_source=share)";False;False;;;;1610625932;;False;{};gj7xnkg;False;t3_kx4aj1;False;True;t3_kx4aj1;/r/anime/comments/kx4aj1/can_aot_dethrone_fmab/gj7xnkg/;1610699050;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;3.0+1.0 is now the New Mutants of anime.;False;False;;;;1610626007;;False;{};gj7xqjz;False;t3_kx2uao;False;False;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7xqjz/;1610699093;5;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"Yep, I've watched the first episode of Complete Recovery and it's fully uncensored. Animation is also better than I was expecting. - -If you are going to watch this kind of show, you might as well go in fully with it.";False;False;;;;1610626019;;False;{};gj7xr2b;False;t3_kx42mk;False;False;t1_gj7wjs2;/r/anime/comments/kx42mk/how_faithful_to_the_manga_is_redo_of_healer/gj7xr2b/;1610699100;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;We were so close, I might cry;False;False;;;;1610626059;;False;{};gj7xssd;False;t3_kx3bdv;False;False;t1_gj7sgv4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj7xssd/;1610699127;46;True;False;anime;t5_2qh22;;0;[]; -[];;;Smart2805;;;[];;;;text;t2_3mu50axc;False;False;[];;Yeah the jiggle physics were on point XD;False;False;;;;1610626066;;False;{};gj7xt2r;True;t3_kx42mk;False;False;t1_gj7xr2b;/r/anime/comments/kx42mk/how_faithful_to_the_manga_is_redo_of_healer/gj7xt2r/;1610699131;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Morbid_Fatwad;;;[];;;dark;text;t2_ol3rd;False;False;[];;That was back in October and even then there were no significant spikes. This is most likely the result of holiday travel.;False;False;;;;1610626259;;False;{};gj7y135;False;t3_kx2uao;False;False;t1_gj7x9nr;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7y135/;1610699248;26;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610626392;moderator;False;{};gj7y6mc;False;t3_kx4i6r;False;True;t3_kx4i6r;/r/anime/comments/kx4i6r/heavy_spoiler_omg_i_just_finished_ep_16/gj7y6mc/;1610699329;1;False;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;My guy you gotta put the show in the title, you're going to spoil other people.;False;False;;;;1610626477;;False;{};gj7ya7z;False;t3_kx4i6r;False;False;t3_kx4i6r;/r/anime/comments/kx4i6r/heavy_spoiler_omg_i_just_finished_ep_16/gj7ya7z/;1610699381;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610626494;;False;{};gj7yayp;False;t3_kx4aj1;False;True;t3_kx4aj1;/r/anime/comments/kx4aj1/can_aot_dethrone_fmab/gj7yayp/;1610699393;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ShoveBoomers;;;[];;;;text;t2_rmso3;False;False;[];;Evangelion 3.0+1.0 You Will (Not) Premiere;False;False;;;;1610626592;;False;{};gj7yf3e;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj7yf3e/;1610699455;333;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610626628;;False;{};gj7ygor;False;t3_kx4itz;False;True;t3_kx4itz;/r/anime/comments/kx4itz/covid_is_going_wild_wear_your_masks_right/gj7ygor/;1610699480;-21;False;False;anime;t5_2qh22;;0;[]; -[];;;Tiarnmas;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tiarnnas;light;text;t2_14l0eo;False;False;[];;I use the Absolute Series Scanner and HamaTV agent, and as for separate anime I just have a separate library.;False;False;;;;1610626659;;False;{};gj7yi20;False;t3_kx1vz2;False;True;t3_kx1vz2;/r/anime/comments/kx1vz2/organizing_anime_for_plex/gj7yi20/;1610699500;1;True;False;anime;t5_2qh22;;0;[]; -[];;;flybypost;;;[];;;;text;t2_e4p0i;False;False;[];;"My interpretation is that while the material is similar, it's not 100% the same. The walls have to look like walls to sell the illusion and I think some character mentions going to wall repairs. So it could be that it's just a different configuration that makes it explicitly look like a wall (and also somewhat weaker). - -That's my main theory, just storytelling pixie dust to explain it away. - -The other option would be that the titan walls are the inner layer, support structure, and sheer mass but that the first king used his people add an external layer that makes it look man made. I think even just the area around the gates has to be specifically man made and kinda integrated with the titan hardened ""skin"". That would reduce the workload by a lot but I'm not sure if it would reduce it enough to get it done in the time frame (even if it took like 70 years and multiple mind wipes). - -The most bulletproof version that I can come up with is a combination of those but not an easy sell. It's that the complexity of the walls was something that the king managed to order the titans to create (that they couldn't do on their own, so it's ""paths magic"" or whatever) and that it's hard to see the difference between that and man made walls. Then humans added some stuff on top of that: Gates, portcullises, amenities around the gates, then the rails for the cannons on top later on. Kinda how nature grows over structures that humans leave behind, humans grew over the structures that these titans left behind.";False;False;;;;1610626678;;False;{};gj7yiwk;False;t3_kx2twh;False;False;t3_kx2twh;/r/anime/comments/kx2twh/attack_on_titan_question/gj7yiwk/;1610699513;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610626703;;False;{};gj7yjy4;False;t3_kx4aj1;False;True;t3_kx4aj1;/r/anime/comments/kx4aj1/can_aot_dethrone_fmab/gj7yjy4/;1610699527;1;True;False;anime;t5_2qh22;;0;[]; -[];;;melcarba;;;[];;;;text;t2_ywnzr;False;False;[];;The point of wearing a mask is to reduce transmission, and hence reduce the risk of you and others getting the virus.;False;False;;;;1610626786;;False;{};gj7ynj2;False;t3_kx4itz;False;True;t1_gj7ygor;/r/anime/comments/kx4itz/covid_is_going_wild_wear_your_masks_right/gj7ynj2/;1610699580;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ConfuciusBr0s;;;[];;;;text;t2_10rcz5;False;False;[];;No. The rating will go down as more people finish it. Same thing happened with season 3.;False;False;;;;1610626819;;False;{};gj7yoyz;False;t3_kx4aj1;False;False;t3_kx4aj1;/r/anime/comments/kx4aj1/can_aot_dethrone_fmab/gj7yoyz/;1610699602;6;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;Me too, finished it just yesterday, wth is this now;False;False;;;;1610626824;;False;{};gj7yp6q;False;t3_kx3bdv;False;False;t1_gj7wo1k;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj7yp6q/;1610699605;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610626934;;False;{};gj7ytwn;False;t3_kx2twh;False;True;t3_kx2twh;/r/anime/comments/kx2twh/attack_on_titan_question/gj7ytwn/;1610699678;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Why does it matter and why do you care?;False;False;;;;1610626945;;False;{};gj7yueb;False;t3_kx4aj1;False;True;t3_kx4aj1;/r/anime/comments/kx4aj1/can_aot_dethrone_fmab/gj7yueb/;1610699685;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aryu_redikiz;;;[];;;;text;t2_99qm5c27;False;False;[];;Evangelion **3.0**+1.0, Half-Life 3 confirmed.;False;False;;;;1610626977;;False;{};gj7yvqg;False;t3_kx2uao;False;False;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj7yvqg/;1610699704;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Huntaras;;MAL;[];;https://myanimelist.net/profile/Xabaras47;dark;text;t2_lvwca;False;False;[];;Also, they can bring Eren out of the titan when hardened simply breaking the hardened nape, that doesn't make sense to me. If they can't break it when a titan hardens (see fight vs Annie titan form), why can they break Eren's?;False;False;;;;1610627032;;False;{};gj7yy4a;False;t3_kx2twh;False;True;t3_kx2twh;/r/anime/comments/kx2twh/attack_on_titan_question/gj7yy4a/;1610699740;0;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Tell that to the anti-maskers, who are putting themselves and everyone around them in danger.;False;False;;;;1610627040;;False;{};gj7yyhr;False;t3_kx4itz;False;True;t3_kx4itz;/r/anime/comments/kx4itz/covid_is_going_wild_wear_your_masks_right/gj7yyhr/;1610699744;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610627064;;False;{};gj7yzkb;False;t3_kx4itz;False;True;t1_gj7ygor;/r/anime/comments/kx4itz/covid_is_going_wild_wear_your_masks_right/gj7yzkb/;1610699760;6;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Fuck off.;False;False;;;;1610627085;;False;{};gj7z0i6;False;t3_kx4itz;False;True;t1_gj7ygor;/r/anime/comments/kx4itz/covid_is_going_wild_wear_your_masks_right/gj7z0i6/;1610699775;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ConfuciusBr0s;;;[];;;;text;t2_10rcz5;False;False;[];;Tokyo Ghoul has enough content for around 100 episodes if HxH's 148 to 340 chapters is anything to go by.;False;False;;;;1610627103;;False;{};gj7z1ak;False;t3_kx45ud;False;True;t1_gj7wq8f;/r/anime/comments/kx45ud/tokyo_ghoul_should_get_a_reboot/gj7z1ak/;1610699786;3;True;False;anime;t5_2qh22;;0;[]; -[];;;senpaiking19;;;[];;;;text;t2_4vg5i8gw;False;False;[];;Let it all out the sufferings that you take Subaru.;False;False;;;;1610627109;;False;{};gj7z1k9;False;t3_kx3sga;False;True;t3_kx3sga;/r/anime/comments/kx3sga/he_said_it_rezero_season_2_part_2/gj7z1k9/;1610699791;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Fullmetal alchemist brotherhood;False;False;;;;1610627182;;False;{};gj7z4r5;False;t3_kx21oe;False;True;t3_kx21oe;/r/anime/comments/kx21oe/pls_help_anime_suggestions_are_needed/gj7z4r5/;1610699837;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MoistDitto;;;[];;;;text;t2_zweyr;False;False;[];;Crunchyroll;False;False;;;;1610627197;;False;{};gj7z5fr;False;t3_kx1un0;False;True;t3_kx1un0;/r/anime/comments/kx1un0/where_do_i_watch_anime/gj7z5fr/;1610699848;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610627221;;False;{};gj7z6gp;False;t3_kx2twh;False;False;t3_kx2twh;/r/anime/comments/kx2twh/attack_on_titan_question/gj7z6gp/;1610699864;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pioorek;;;[];;;;text;t2_3c0m2zea;False;False;[];;I expected at least the kiss to be something for like S3/S4 ending, this episode really caught me off guard.;False;False;;;;1610627230;;False;{};gj7z6w0;False;t3_kx3sga;False;True;t3_kx3sga;/r/anime/comments/kx3sga/he_said_it_rezero_season_2_part_2/gj7z6w0/;1610699871;8;True;False;anime;t5_2qh22;;0;[]; -[];;;generator-ali;;;[];;;;text;t2_475nsqt7;False;False;[];;? The walls are mad of rock, not crystal. This is pretty self explanatory;False;False;;;;1610627293;;False;{};gj7z9nw;False;t3_kx2twh;False;True;t1_gj7ses1;/r/anime/comments/kx2twh/attack_on_titan_question/gj7z9nw/;1610699913;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;Steins gate is better imo Steins gate 0 and erased on same level though I'd say.;False;False;;;;1610627477;;False;{};gj7zhqe;False;t3_kx4qhb;False;True;t3_kx4qhb;/r/anime/comments/kx4qhb/steinsgate_is_better_then_erased/gj7zhqe/;1610700035;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MileyDyrus11;;;[];;;;text;t2_140ed0;False;False;[];;I really dont want to be rude but the first thing that popped in my head after reading the title was.........ye, no shit.;False;False;;;;1610627506;;False;{};gj7zj0i;False;t3_kx4qhb;False;True;t3_kx4qhb;/r/anime/comments/kx4qhb/steinsgate_is_better_then_erased/gj7zj0i/;1610700054;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;they are made out of hardened titan skin, the same superpower that Annie uses. As it is magic and does not follow any set rules, you can just handwave it away with the explanation you like the most. Nothing about ODM Gear is realistic in the first place, taking issue with this particular plot hole when everything is based on magic and steampunk logic. Levi's twisted ankle is even more ridiculous, the way the people use their gear and how they land, eveyone should constantly brake their neck, spine and legs;False;False;;;;1610627554;;False;{};gj7zl4p;False;t3_kx2twh;False;True;t1_gj7z9nw;/r/anime/comments/kx2twh/attack_on_titan_question/gj7zl4p/;1610700084;0;True;False;anime;t5_2qh22;;0;[]; -[];;;amiboomer;;;[];;;;text;t2_4xblvzjr;False;False;[];;Yeah no, my point was to find people that think otherwise because there is people out there so i would like to no why they think it’s better.;False;False;;;;1610627567;;False;{};gj7zlpy;True;t3_kx4qhb;False;True;t1_gj7zj0i;/r/anime/comments/kx4qhb/steinsgate_is_better_then_erased/gj7zlpy/;1610700096;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610627654;;1610628224.0;{};gj7zpl5;False;t3_kx2twh;False;True;t3_kx2twh;/r/anime/comments/kx2twh/attack_on_titan_question/gj7zpl5/;1610700155;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi SnooDonuts2285, it looks like you might be interested in hosting a rewatch! [There's a longer guide on the wiki](https://www.reddit.com/r/anime/wiki/successfulrewatchguide) but here's some basic advice on how to make a good rewatch happen: - -* Include **basic information about the anime** such as a description for those that haven't heard of it as well as where it can be watched (if legally available). - -* Specify a **date and time** that rewatch threads will be posted. Consistency is good! - -* Check for **[previous rewatches](https://www.reddit.com/r/anime/wiki/rewatches)**. It's generally advised to wait a year between rewatches of the same anime. - -* If you want to have a rewatch for multiple anime, they should be **thematically connected**. You can also hold multiple unrelated rewatches if they aren't. - -* Ensuring **enough people are interested** is important. If only a few users say they *might* participate, you may end up with no one commenting once it starts. - -[](#bot-chan) - -I hope this helps! You may also want to talk to users that have hosted rewatches before for extra advice, also listed [on the rewatch wiki](https://www.reddit.com/r/anime/wiki/rewatches). - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610627659;moderator;False;{};gj7zpu5;False;t3_kx4stl;False;True;t3_kx4stl;/r/anime/comments/kx4stl/is_the_order_a_rabbit/gj7zpu5/;1610700159;1;False;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;"It's just a matter of taste, don't get too confused about this. - -Steins;Gate is rated higher, but that also just means there are more people that liked it better than people that liked it less.";False;False;;;;1610627673;;False;{};gj7zqfx;False;t3_kx4qhb;False;False;t3_kx4qhb;/r/anime/comments/kx4qhb/steinsgate_is_better_then_erased/gj7zqfx/;1610700169;12;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610627714;moderator;False;{};gj7zs8b;False;t3_kx4t9u;False;True;t3_kx4t9u;/r/anime/comments/kx4t9u/aight_gamers_imma_need_some_source/gj7zs8b/;1610700195;1;False;False;anime;t5_2qh22;;0;[]; -[];;;leave1me1alone;;;[];;;;text;t2_74bvy75;False;False;[];;Its just subjective. They didn't state a fact (only an opinion) and neither did you;False;False;;;;1610627733;;False;{};gj7zt3i;False;t3_kx4qhb;False;False;t3_kx4qhb;/r/anime/comments/kx4qhb/steinsgate_is_better_then_erased/gj7zt3i/;1610700209;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Stummer_Schrei;;;[];;;;text;t2_1214bw;False;True;[];;what went wrong with you;False;False;;;;1610627736;;False;{};gj7zt84;False;t3_kx4itz;False;True;t1_gj7ygor;/r/anime/comments/kx4itz/covid_is_going_wild_wear_your_masks_right/gj7zt84/;1610700211;5;True;False;anime;t5_2qh22;;0;[]; -[];;;TheHaterDebater;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TheHaterDebater/animelist;light;text;t2_2k9yn2w5;False;False;[];;When Hange has a little piece of Annie’s hardened skin, she observes it under a microscope and says that the composition of the skin and the wall are nearly identical. Keyword nearly. Probably has something to do with “nearly”.;False;False;;;;1610627767;;False;{};gj7zumi;False;t3_kx2twh;False;True;t3_kx2twh;/r/anime/comments/kx2twh/attack_on_titan_question/gj7zumi/;1610700231;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheUltimateTeigu;;;[];;;;text;t2_jjzxh;False;False;[];;"I don't think there are many people who would disagree with you. Steins;Gate is one of the most liked and highest rated shows out there with a beloved cast and a great story that finishes up beautifully. Many people did not like the Erased ending and claimed the twist was too easy to see coming. It's also half the length. - -Really though I don't see why the two shows are compared. They both involve time travel but that's it. There isn't really anything else that ties them together.";False;False;;;;1610627787;;False;{};gj7zvkg;False;t3_kx4qhb;False;True;t3_kx4qhb;/r/anime/comments/kx4qhb/steinsgate_is_better_then_erased/gj7zvkg/;1610700245;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MileyDyrus11;;;[];;;;text;t2_140ed0;False;False;[];;Ah fair, I misunderstood;False;False;;;;1610627793;;False;{};gj7zvtt;False;t3_kx4qhb;False;True;t1_gj7zlpy;/r/anime/comments/kx4qhb/steinsgate_is_better_then_erased/gj7zvtt/;1610700249;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gintoki_Sakata-San;;;[];;;;text;t2_15raq7;False;False;[];;She's from Senran Kagura;False;False;;;;1610627803;;False;{};gj7zwb1;False;t3_kx4t9u;False;True;t3_kx4t9u;/r/anime/comments/kx4t9u/aight_gamers_imma_need_some_source/gj7zwb1/;1610700256;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JustWolfram;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Wolfram-san;light;text;t2_mwn5b;False;False;[];;Shouldn't there be 2 different uncensored versions?;False;False;;;;1610627831;;False;{};gj7zxl0;False;t3_kx42mk;False;True;t1_gj7wsim;/r/anime/comments/kx42mk/how_faithful_to_the_manga_is_redo_of_healer/gj7zxl0/;1610700276;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610627838;;False;{};gj7zxuu;False;t3_kx4t9u;False;True;t1_gj7zwb1;/r/anime/comments/kx4t9u/aight_gamers_imma_need_some_source/gj7zxuu/;1610700280;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UltimateAnimeHero;;;[];;;;text;t2_oc4re;False;False;[];;"I don't really care. What do people get out of it other than ""huehuehue my favorite series is popular""?";False;False;;;;1610627903;;False;{};gj800r5;False;t3_kx4aj1;False;True;t3_kx4aj1;/r/anime/comments/kx4aj1/can_aot_dethrone_fmab/gj800r5/;1610700335;3;True;False;anime;t5_2qh22;;0;[]; -[];;;amiboomer;;;[];;;;text;t2_4xblvzjr;False;False;[];;i was just curious as all.;False;False;;;;1610627911;;False;{};gj8013d;True;t3_kx4qhb;False;True;t1_gj7zvkg;/r/anime/comments/kx4qhb/steinsgate_is_better_then_erased/gj8013d/;1610700340;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi TheGaryDoseSalesMan, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610627964;moderator;False;{};gj803h5;False;t3_kx4vfe;False;True;t3_kx4vfe;/r/anime/comments/kx4vfe/ive_watched_all_anime_there_is_ive_seen_all_the/gj803h5/;1610700377;0;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610627968;;False;{};gj803ne;False;t3_kx2uao;False;True;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj803ne/;1610700380;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Chariotwheel;;ANI a-amq;[];;https://anilist.co/user/Chariotwheel/;dark;text;t2_gyytm;False;True;[];;"The surprise is limited. - -Even when the date was given, people were already reluctant to believe: https://www.reddit.com/r/anime/comments/jbzjnm/evangelion_3010_will_be_released_on_january_23rd/";False;False;;;;1610627971;;False;{};gj803so;False;t3_kx2uao;False;False;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj803so/;1610700382;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"I don't know. - -Steins; Gate feels more anime-y which maybe off putting for many. I also never really understood the love for this anime. I enjoyed it and think Okabe and Kurisu are two of the best anime characters but... - ->Ruka's character arc with the whole eating veg [Spoiler](/s ""instead to be a girl was incredibly stupid."") - ->Faris and the maid cat café is annoying. - ->Daru is a creepy perverted character. - ->There is little to nothing enjoyable about Mayuri and Moeka. - ->Okabe and Kurisu hard carried the show. - ->The first 12 episodes are very slow and sometimes often go in places that aren't interesting nor important like their random parties. - -[Also](/s ""A lot of the story just ends up being them reversing what they did."") - -Erased had a good rep until the last two episode; which I think after a rewatch are nowhere near as bad as people say. I get the argument about [Spoiler 1](/s ""Them changing the manga and changing how Satoru wins.""). However I don't get why people think [Spoiler 2](/s ""Kayo owed Satoru romance and should have waited for him for 15yrs, that would defeat the point and also would be creepy."") and think less of it because of that. - -I cared more about several Erased characters: Satoru, Kayo, Airi, Satoru's Mum etc... in 12 episodes than I did in Steins; Gate's 24 episodes + OVA + Movie.";False;False;;;;1610628015;;1610628385.0;{};gj805t3;False;t3_kx4qhb;False;True;t3_kx4qhb;/r/anime/comments/kx4qhb/steinsgate_is_better_then_erased/gj805t3/;1610700412;9;True;False;anime;t5_2qh22;;0;[]; -[];;;gangrainette;;MAL;[];;https://myanimelist.net/profile/bouletos;dark;text;t2_vlti1;False;False;[];;"Like every anime ? - -Link your MAL/Anilist.";False;False;;;;1610628046;;False;{};gj8078v;False;t3_kx4vfe;False;False;t3_kx4vfe;/r/anime/comments/kx4vfe/ive_watched_all_anime_there_is_ive_seen_all_the/gj8078v/;1610700431;11;True;False;anime;t5_2qh22;;0;[]; -[];;;The_ProfessorWolf;;;[];;;;text;t2_9rsvivl8;False;False;[];;I dunno about this for sure, but it could be due to the female titan being better at hardening so they couldn't break it. Also, the only way they could destroy the wall was by blasting it aka pure force so if they attempted that Annie crystal, she might die.;False;False;;;;1610628049;;False;{};gj807dr;False;t3_kx2twh;False;True;t3_kx2twh;/r/anime/comments/kx2twh/attack_on_titan_question/gj807dr/;1610700433;2;True;False;anime;t5_2qh22;;0;[]; -[];;;newtonforyou;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/newtonforyou/;light;text;t2_1qa8kzi7;False;False;[];;both series are awesome and that's all;False;False;;;;1610628054;;False;{};gj807lm;False;t3_kx4aj1;False;True;t1_gj800r5;/r/anime/comments/kx4aj1/can_aot_dethrone_fmab/gj807lm/;1610700436;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheHaterDebater;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TheHaterDebater/animelist;light;text;t2_2k9yn2w5;False;False;[];;“I’ve watched all anime there is” lol;False;False;;;;1610628076;;False;{};gj808mj;False;t3_kx4vfe;False;False;t3_kx4vfe;/r/anime/comments/kx4vfe/ive_watched_all_anime_there_is_ive_seen_all_the/gj808mj/;1610700451;19;True;False;anime;t5_2qh22;;0;[]; -[];;;tomtomm9;;;[];;;;text;t2_3ycvxoo9;False;False;[];;Yeah didn’t after the episode ‘hero’ came out, it reached top 1 on mal but dropped like week later.;False;False;;;;1610628099;;False;{};gj809px;False;t3_kx4aj1;False;True;t1_gj7yoyz;/r/anime/comments/kx4aj1/can_aot_dethrone_fmab/gj809px/;1610700468;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RandomRedditorWithNo;;ANI a-1milquiz;[];;https://anilist.co/user/lafferstyle;dark;text;t2_tt0a1;False;True;[];;"I'm assuming you're talking about [this post](https://www.reddit.com/r/anime/comments/4bjkee/is_the_order_a_rabbit_gochiusa_is_set_in_an/), and... yeah? In one of the first paragraphs it says - -> No this is not meant to be serious, just a fun exercise exploring a what-if scenario. Taking a plunge down the rabbit hole, if you will. - -The author doesn't think their theory is absolute fact, just a what-if, as they said.";False;False;;;;1610628128;;False;{};gj80b4l;False;t3_kx4stl;False;True;t3_kx4stl;/r/anime/comments/kx4stl/is_the_order_a_rabbit/gj80b4l/;1610700488;1;True;False;anime;t5_2qh22;;0;[];True -[];;;NotAlphonae;;;[];;;;text;t2_6im0hgvx;False;False;[];;"""Bye Bye, all of Evangelion."" - -My heart sank when I saw that.";False;False;;;;1610628145;;False;{};gj80bvi;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj80bvi/;1610700499;305;True;False;anime;t5_2qh22;;0;[]; -[];;;MaskOfIce42;;;[];;;;text;t2_gj6onc6;False;False;[];;Let's push it back another year, release it on the 10 year anniversary of 3.0;False;False;;;;1610628191;;False;{};gj80dz2;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj80dz2/;1610700529;18;True;False;anime;t5_2qh22;;0;[]; -[];;;CMDR_Euphoria01;;;[];;;;text;t2_10wye4;False;True;[];;Shinji, don't make me say it;False;True;;comment score below threshold;;1610628195;;False;{};gj80e5u;False;t3_kx3bdv;False;True;t1_gj7uuto;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj80e5u/;1610700531;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;"If you've watched all of these in impressed - - -Mahoutsukai Sally - -Himitsu no Akko-chan - -Yuki no Yoru no Yume - -Mikan Enikki - -Attack No. 1 - -Aikatsu - -Pripara - -Precure - -Pretty Rhythm - -Kiratto Pri☆Chan - -Alps no shoujo Heidi - -Trapp Ikka Monogatari - -Idol Densetsu Eriko - -Watashi no Ashinaga Ojisan - -Makiba no Shoujo Katri - -Candy Candy - -Lady Georgie - -Lady Lady - -Versailles no bara - -Ace wo nerae - -Ashita no Joe - -Ashita no Nadja - -Ashita e Attack - -Hikari no Densetsu - -Mahou no Tenshi Creamy Mami - -Mahou no Stage Fancy Lala - -Oniisama e... - -Mahou Shoujo Lalabel - -Mahou no Star Magical Emi - -Mahou no Mako-chan - -Mahou no Yousei Persia - -Mahou no Idol Pastel Yumi - -Hana no Ko Lunlun - -Hana no Mahoutsukai Mary Bell - -Hana Yori Dango - -Glass no Kamen - -Platonic Chain - -Chibi Maruko-chan - -Mizuiro Jidai - -Saiunkoku Monogatari - -Azuki-chan - -Kodomo no Omocha - -Minami no Niji no Lucy - -Mahou no Princess Minky Momo - -Ie naki ko Remi - -Ie naki ko - -Miracle☆Girls - -Wakakusa no Charlotte - -Esper Mami - -La Seine No Hoshi - -Haikara-san ga Tooru - -Golgo 13 - -Honey Honey no Suteki na Bouken - -Sasurai no Taiyou - -Tori no Uta - -12-sai - -Heart Cocktail";False;False;;;;1610628240;;1610628520.0;{};gj80gad;False;t3_kx4vfe;False;False;t3_kx4vfe;/r/anime/comments/kx4vfe/ive_watched_all_anime_there_is_ive_seen_all_the/gj80gad/;1610700565;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ENKlDU;;;[];;;;text;t2_4scvchzo;False;False;[];;"As a Fate fan who was waiting for HF3 - -My condolences..";False;False;;;;1610628252;;False;{};gj80gv5;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj80gv5/;1610700575;34;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610628254;;1610628658.0;{};gj80gyr;False;t3_kx2twh;False;True;t3_kx2twh;/r/anime/comments/kx2twh/attack_on_titan_question/gj80gyr/;1610700577;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ENKlDU;;;[];;;;text;t2_4scvchzo;False;False;[];;#play despacito;False;False;;;;1610628277;;False;{};gj80i1i;False;t3_kx2uao;False;True;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj80i1i/;1610700594;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Thedot69, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610628317;moderator;False;{};gj80jxt;False;t3_kx4yfc;False;True;t3_kx4yfc;/r/anime/comments/kx4yfc/any_recommendations_based_on_the_animes_ive/gj80jxt/;1610700623;1;False;False;anime;t5_2qh22;;0;[]; -[];;;The_Meemeli;;;[];;;;text;t2_2o1rogl;False;False;[];;"Legend of the Galactic Heroes - -Monogatari series - -Welcome to the N.H.K. - -March Comes In Like a Lion - -Land of the Lustrous - -Beastars - -Bloom Into You";False;False;;;;1610628354;;False;{};gj80lra;False;t3_kx4vfe;False;True;t3_kx4vfe;/r/anime/comments/kx4vfe/ive_watched_all_anime_there_is_ive_seen_all_the/gj80lra/;1610700649;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;My dude I watch 20+ hours of anime every week and still find shows I've never heard of. You're not looking hard enough.;False;False;;;;1610628372;;False;{};gj80mmk;False;t3_kx4vfe;False;False;t3_kx4vfe;/r/anime/comments/kx4vfe/ive_watched_all_anime_there_is_ive_seen_all_the/gj80mmk/;1610700661;5;True;False;anime;t5_2qh22;;0;[]; -[];;;newtonforyou;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/newtonforyou/;light;text;t2_1qa8kzi7;False;False;[];;i liked the first episode and thats all, i was hoping for the first season to get better but that didnt happen for me so i didnt waste my time with s2;False;False;;;;1610628376;;False;{};gj80msg;False;t3_kx37xt;False;True;t3_kx37xt;/r/anime/comments/kx37xt/does_owari_no_seraph_get_better/gj80msg/;1610700664;1;True;False;anime;t5_2qh22;;0;[]; -[];;;superhiro11;;;[];;;;text;t2_48zf81m0;False;False;[];;Boku no pikko;False;False;;;;1610628398;;False;{};gj80nte;False;t3_kx4vfe;False;False;t3_kx4vfe;/r/anime/comments/kx4vfe/ive_watched_all_anime_there_is_ive_seen_all_the/gj80nte/;1610700678;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Gintoki_Sakata-San;;;[];;;;text;t2_15raq7;False;False;[];;"I've been watching anime since I was 5 and have clocked in *thousands* and thousands of hours.. I still wouldn't ever say I've seen everything there is. - -It sometimes feels like I've seen all of a certain genre maybe but even then it feels like a stretch. - -I'm positive you're missing things and just haven't seen them.";False;False;;;;1610628399;;False;{};gj80nu9;False;t3_kx4vfe;False;False;t3_kx4vfe;/r/anime/comments/kx4vfe/ive_watched_all_anime_there_is_ive_seen_all_the/gj80nu9/;1610700678;9;True;False;anime;t5_2qh22;;0;[]; -[];;;TheUltimateTeigu;;;[];;;;text;t2_jjzxh;False;False;[];;I'm just letting you you're unlikely to find someone that disagrees with your title is all.;False;False;;;;1610628467;;False;{};gj80r2o;False;t3_kx4qhb;False;True;t1_gj8013d;/r/anime/comments/kx4qhb/steinsgate_is_better_then_erased/gj80r2o/;1610700726;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NotAlphonae;;;[];;;;text;t2_6im0hgvx;False;False;[];;"S3P2's rating went down cuz FMAB fanboys scorebombed it. - -Granted. Ratings of most series go down once they're finished airing. But S3's fall also had score bombers innvolved.";False;False;;;;1610628475;;False;{};gj80rgq;False;t3_kx4aj1;False;False;t1_gj7yoyz;/r/anime/comments/kx4aj1/can_aot_dethrone_fmab/gj80rgq/;1610700733;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Tasthar;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tasthar;light;text;t2_1fhlyiyc;False;False;[];;How much have you seen exactly? Do you have a list on MAL or somewhere else?;False;False;;;;1610628485;;False;{};gj80rxl;False;t3_kx4vfe;False;False;t3_kx4vfe;/r/anime/comments/kx4vfe/ive_watched_all_anime_there_is_ive_seen_all_the/gj80rxl/;1610700739;5;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 125, 'coin_reward': 0, 'count': 2, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'When you come across a feel-good thing.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'icon_width': 2048, 'id': 'award_5f123e3d-4f48-42f4-9c11-e98b566d5897', 'is_enabled': True, 'is_new': False, 'name': 'Wholesome', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}, {'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Shows the Silver Award... and that's it."", 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'icon_width': 512, 'id': 'gid_1', 'is_enabled': True, 'is_new': False, 'name': 'Silver', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;Prince-Dizzytoon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/princedizzytoon;light;text;t2_mu0df;False;False;[];;You Can (Not) See This Movie;False;False;;;;1610628498;;False;{'gid_1': 1};gj80sjz;False;t3_kx3bdv;False;False;t1_gj7sgv4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj80sjz/;1610700747;793;True;False;anime;t5_2qh22;;3;[]; -[];;;Ring_kun;;;[];;;;text;t2_8ww7t4t1;False;False;[];;I'm starting to think that the movie will never air and it's very existence is meant to be some philosophical thing that I will never understand fully;False;False;;;;1610628530;;False;{};gj80u1s;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj80u1s/;1610700770;1791;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610628679;;False;{};gj8118d;False;t3_kx4qhb;False;True;t3_kx4qhb;/r/anime/comments/kx4qhb/steinsgate_is_better_then_erased/gj8118d/;1610700883;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;Perfect blue of Satoshi Kon. I don't care if you already watched it. Just see it again this piece of art.;False;False;;;;1610628684;;False;{};gj811h6;False;t3_kx4vfe;False;True;t3_kx4vfe;/r/anime/comments/kx4vfe/ive_watched_all_anime_there_is_ive_seen_all_the/gj811h6/;1610700886;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"Kill la Kill - -Log Horizon - -That time I got reincarnated as a slime and that new spider one. - -Code Geass as well - -I’ll add Horimiya as a rom-com. - -Then Redo of Healer, if you okay with near sex scenes. Make sure to watch it uncensored, if you do.";False;False;;;;1610628709;;False;{};gj812p2;False;t3_kx4yfc;False;True;t3_kx4yfc;/r/anime/comments/kx4yfc/any_recommendations_based_on_the_animes_ive/gj812p2/;1610700907;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kemorsky;;;[];;;;text;t2_10quzm;False;False;[];;"There are 3 kinds of hardening in AoT. - -1. The hardening the walls are made out of. - -2. The crystal like hardening Eren, Annie, Beast Titan and [manga spoiler](/s ""Warhammer have, although the WHT is slightly different since its hardening it a mix of crystal and Reiner's"") - -3. Reiner's armor hardening. - -The 1st one is the most brittle, that is why 3dmg anchprs can catch onto it.";False;False;;;;1610628713;;1610629033.0;{};gj812wh;False;t3_kx2twh;False;False;t3_kx2twh;/r/anime/comments/kx2twh/attack_on_titan_question/gj812wh/;1610700911;72;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Remark84, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610628731;moderator;False;{};gj813r0;False;t3_kx51vw;False;False;t3_kx51vw;/r/anime/comments/kx51vw/what_should_i_watch/gj813r0/;1610700924;1;False;False;anime;t5_2qh22;;0;[]; -[];;;amiboomer;;;[];;;;text;t2_4xblvzjr;False;False;[];;"yeah, i do agree with your points here but i first watched steinsgate when i was still not watching much anime and from personal experience, the slow episodes didn’t put me off and even if it does have slow pacing i believe that the pay off was worth it. -And i similarly watched erased around the same time i watched steinsgate and yes, i did enjoy it. but nowhere near the same as steinsgate. For me steinsgate just feels far better, i am not throwing shade at all though as i throughly enjoyed erased, but for me the ending didn’t really sit right. I might rewatch it though to see if the ending really was as annoying as i remember it.";False;False;;;;1610628736;;False;{};gj81410;True;t3_kx4qhb;False;True;t1_gj805t3;/r/anime/comments/kx4qhb/steinsgate_is_better_then_erased/gj81410/;1610700928;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tearfulfriend18;;;[];;;;text;t2_mgwph;False;False;[];;"I know the virus is unpredictable and all, but man I mean... Japan was doing well enough in combating COVID-19 that *Fate/stay night [Heaven’s Feel] III. spring song* went on to become the most profitable of the trilogy, and *Demon Slayer: Mugen Train* became the highest grossing film in Japanese history! IN THE MIDDLE OF A GLOBAL PANDEMIC. - -And now, after *Demon Slayer* stays atop the box office for... what was it 10 weeks, NOW before *Evangelion 3.0+1.0* is released, a film we’ve been waiting for for just shy of a decade, NOW COVID decides to spike again... - -Ugh. Hopefully Japan gets it under control as vaccines start being spread.";False;False;;;;1610628745;;False;{};gj814gb;False;t3_kx2uao;False;False;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj814gb/;1610700934;9;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;Koi Kaze. There’s no way you’ve watched everything, that’s a lie.;False;False;;;;1610628746;;False;{};gj814if;False;t3_kx4vfe;False;False;t3_kx4vfe;/r/anime/comments/kx4vfe/ive_watched_all_anime_there_is_ive_seen_all_the/gj814if/;1610700935;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aarthbhardwaj;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Aarth_Bhardwaj;light;text;t2_5kdsi0g;False;False;[];;These guys just haven't made this movie and are bullshitting us.;False;False;;;;1610628820;;1610636369.0;{};gj81855;False;t3_kx3bdv;False;False;t1_gj7sgv4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj81855/;1610700987;56;True;False;anime;t5_2qh22;;0;[]; -[];;;JohnCarterofAres;;MAL;[];;https://myanimelist.net/animelist/Morpheus1035;dark;text;t2_iictn;False;False;[];;I mean, it’s not like I was gonna see it any time soon anyways, since I doubt it will get a release in the US any time soon, so this doesn’t really change anything for me.;False;False;;;;1610628832;;False;{};gj818qe;False;t3_kx3bdv;False;False;t1_gj7sgv4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj818qe/;1610700995;39;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;"Madoka Magica. -Psycho Pass. - -I guess these will fit in what you are looking for.";False;False;;;;1610628859;;False;{};gj81a2p;False;t3_kx4yfc;False;True;t3_kx4yfc;/r/anime/comments/kx4yfc/any_recommendations_based_on_the_animes_ive/gj81a2p/;1610701016;1;True;False;anime;t5_2qh22;;0;[]; -[];;;leave1me1alone;;;[];;;;text;t2_74bvy75;False;False;[];;Even the manga had a rushed/forced ending. The pacing after the island arc increased drastically.;False;False;;;;1610628884;;False;{};gj81ba0;False;t3_kx45ud;False;True;t3_kx45ud;/r/anime/comments/kx45ud/tokyo_ghoul_should_get_a_reboot/gj81ba0/;1610701034;3;True;False;anime;t5_2qh22;;0;[]; -[];;;N1T0_W1T0;;;[];;;;text;t2_2dy9meos;False;False;[];;"{Jujutsu Kaisen} - -{Dr. Stone} - -{Overlord} - -{Itai no wa Iya nano de Bougyoryoku ni Kyokufuri Shitai to Omoimasu} - -{Tate no Yuusha no Nariagari} - -{Tatoeba Last Dungeon Mae no Mura no Shounen ga Joban no Machi de Kurasu Youna Monogatari} - -{Ore dake Haireru Kakushi Dungeon} - -{Kumo desu ga, Nani ka?} - -{Goblin Slayer} - -{Mushoku Tensei: Isekai Ittara Honki Dasu} - -Mix of old and new anime";False;False;;;;1610628917;;False;{};gj81cwa;False;t3_kx4yfc;False;True;t3_kx4yfc;/r/anime/comments/kx4yfc/any_recommendations_based_on_the_animes_ive/gj81cwa/;1610701058;1;True;False;anime;t5_2qh22;;0;[]; -[];;;littledickjohnwick;;;[];;;;text;t2_8btov13b;False;False;[];;"You've watched a lot of shonen but not any greats. -Like FMAB and HxH. - -And some of my must watch anime that you haven't seen- -Code Geass -Death Note -Monster";False;False;;;;1610628940;;False;{};gj81e13;False;t3_kx4yfc;False;False;t3_kx4yfc;/r/anime/comments/kx4yfc/any_recommendations_based_on_the_animes_ive/gj81e13/;1610701076;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahou_Shoujo_Ramune;;;[];;;;text;t2_4vs4l2r6;False;False;[];;Hey, My hero academia One punch man 7 deadly sins Toradora Soul eater Cells at work Naruto The promise neverland JoJo's bizzard adventure Kayuga-sama love is war Darling in the franxx Akame ga kill Sword art online Fire force Attack on titan Beaststars Chunibyo,love and other delusions Black clover Uzukichan wants to hang out Demon slayer Assassination classroom Is it wrong to pick up girls in a dungeon Re:Zero Starting life in another world Konosuba Kill la kill Blue exorcist Highschool of the dead Gurren lagann is my favorite anime too!;False;False;;;;1610628940;;False;{};gj81e1u;False;t3_kx4yfc;False;True;t3_kx4yfc;/r/anime/comments/kx4yfc/any_recommendations_based_on_the_animes_ive/gj81e1u/;1610701076;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GDW312;;;[];;;;text;t2_7mclpp14;False;False;[];;The Mobile Suit Gundam Franchise, Legend of the Galactic Heroes, Area 88, Golgo 13, ACCA 13: Territory Inspection Dept, Azumanga Daioh, After School Dice Club, Cardfight Vanguard, Hellsing, Hellsing Ultimate, My Hero Academia, Ghost Hunt, Jormungand, Bungou Stray Dogs, Golden Kamuy, Astra Lost in Space, Special 7: Special Crime Investigation Unit, Arc the Lad, Yona of the Dawn, Zoids, Kekkaishi.;False;False;;;;1610628942;;False;{};gj81e5y;False;t3_kx51vw;False;False;t3_kx51vw;/r/anime/comments/kx51vw/what_should_i_watch/gj81e5y/;1610701078;3;True;False;anime;t5_2qh22;;0;[]; -[];;;littledickjohnwick;;;[];;;;text;t2_8btov13b;False;False;[];;Pico*;False;False;;;;1610629018;;False;{};gj81hxa;False;t3_kx4vfe;False;False;t1_gj80nte;/r/anime/comments/kx4vfe/ive_watched_all_anime_there_is_ive_seen_all_the/gj81hxa/;1610701134;4;True;False;anime;t5_2qh22;;0;[]; -[];;;superhiro11;;;[];;;;text;t2_48zf81m0;False;False;[];;Thanks good sir!;False;False;;;;1610629070;;False;{};gj81kh9;False;t3_kx4vfe;False;True;t1_gj81hxa;/r/anime/comments/kx4vfe/ive_watched_all_anime_there_is_ive_seen_all_the/gj81kh9/;1610701171;2;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;Please use accurate and descriptive post titles. If you’re looking for recommendations, indicate so in the title. I’d encourage you to list down some of your preferences too, so that other users will be able to suggest shows that suit your taste.;False;False;;;;1610629144;moderator;False;{};gj81o7a;False;t3_kx2k0s;False;True;t3_kx2k0s;/r/anime/comments/kx2k0s/i_have_finally_joined_ranime/gj81o7a/;1610701227;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Thedot69;;;[];;;;text;t2_5bo6le2w;False;False;[];;I'm in the middle of watching FMA and death note and plan on seeing FMAB next :);False;False;;;;1610629151;;False;{};gj81oit;True;t3_kx4yfc;False;True;t1_gj81e13;/r/anime/comments/kx4yfc/any_recommendations_based_on_the_animes_ive/gj81oit/;1610701232;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JohnCarterofAres;;MAL;[];;https://myanimelist.net/animelist/Morpheus1035;dark;text;t2_iictn;False;False;[];;To explain further since the other person didn’t, Rebuild of Evangelion is a set of four films which essentially act as an alternative way the story of the original series could have played out. However, it’s not a conventional remake or reboot either, and most fans believe that it is somewhat esoterically connected to the original storyline due to certain details in the films, but we won’t know the details of this until we see the final film. And assuming Anno decides to explain it (lol).;False;False;;;;1610629198;;False;{};gj81qwq;False;t3_kx3bdv;False;False;t1_gj7xc4a;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj81qwq/;1610701269;68;True;False;anime;t5_2qh22;;0;[]; -[];;;Ferbguy42;;;[];;;;text;t2_36134xho;False;False;[];;"Watching The Promised Neverland reminded me this is what I thought Owari no Seraph was gonna be about based on the first episode. And then it became something totally different. - -There are some really good action scenes and episodes in there, but as a whole, I'd say if you don't like the first few episodes of season 1, nothing really changes so you probably wouldn't like the rest .";False;False;;;;1610629350;;False;{};gj81yid;False;t3_kx37xt;False;True;t3_kx37xt;/r/anime/comments/kx37xt/does_owari_no_seraph_get_better/gj81yid/;1610701391;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TrashOfMultifandoms;;;[];;;;text;t2_2mv3ysu1;False;False;[];;How bold of you to claim that you've watched all anime.;False;False;;;;1610629441;;False;{};gj8234l;False;t3_kx4vfe;False;False;t3_kx4vfe;/r/anime/comments/kx4vfe/ive_watched_all_anime_there_is_ive_seen_all_the/gj8234l/;1610701460;5;True;False;anime;t5_2qh22;;0;[]; -[];;;kuddlesworth9419;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kuddlesworth;light;text;t2_btage;False;False;[];;I was going to let him discover that for himself.;False;False;;;;1610629451;;False;{};gj823mi;False;t3_kx3bdv;False;False;t1_gj81qwq;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj823mi/;1610701469;34;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;">throughly enjoyed erased, but for me the ending didn’t really sit right. I mig - -You could try the live-action adaptation the ending is better there although basically the same thing but with better pacing. - -It is a matter of prefence in the end. Steins; Gate wasn't all that great for me but Erased was incredible, to me personally and something I can watch with others without if feeling awkward or weird. - -Daru, Ruka and some scenes made that difficult to attempt with Steins; Gate.";False;False;;;;1610629465;;False;{};gj824b2;False;t3_kx4qhb;False;False;t1_gj81410;/r/anime/comments/kx4qhb/steinsgate_is_better_then_erased/gj824b2/;1610701480;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JohnCarterofAres;;MAL;[];;https://myanimelist.net/animelist/Morpheus1035;dark;text;t2_iictn;False;False;[];;Digital releases make no where near as much money as theatrical ones, and vaccines are being distributed now. It makes more economic sense to just wait a few months.;False;False;;;;1610629490;;False;{};gj825ko;False;t3_kx2uao;False;False;t1_gj7u6z9;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj825ko/;1610701498;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Vinsi107;;;[];;;;text;t2_7jht0k5i;False;False;[];;There is a cool thing. When you really like an anime, you can rewatch it after some time, especially if it’s long or you watched it a long time ago and forgot the most what happened;False;False;;;;1610629514;;False;{};gj826ta;False;t3_kx4vfe;False;True;t3_kx4vfe;/r/anime/comments/kx4vfe/ive_watched_all_anime_there_is_ive_seen_all_the/gj826ta/;1610701516;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Falsus;;;[];;;;text;t2_c6qmw;False;False;[];;"No. - -1. The FMAB fanbase is kinda shit and will review bomb it. They have done it in the past. - -2. A large portion of people will just rate it once it is finished, typically with a lot more nuanced ratings than when it is being aired. - -3. It might not actually stick the landing you know.";False;False;;;;1610629536;;False;{};gj827w8;False;t3_kx4aj1;False;False;t3_kx4aj1;/r/anime/comments/kx4aj1/can_aot_dethrone_fmab/gj827w8/;1610701532;1;True;False;anime;t5_2qh22;;0;[]; -[];;;weebu4laifu;;;[];;;;text;t2_7nij0alj;False;True;[];;He did say *anything*;False;False;;;;1610629578;;False;{};gj82a09;False;t3_kx4vfe;False;True;t1_gj81hxa;/r/anime/comments/kx4vfe/ive_watched_all_anime_there_is_ive_seen_all_the/gj82a09/;1610701561;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Homura_no_Yuutsu;;;[];;;;text;t2_3f6ese44;False;False;[];;Oh I will cum alright...;False;False;;;;1610629613;;False;{};gj82bs7;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj82bs7/;1610701588;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MisogynistFurry;;;[];;;;text;t2_95pvntru;False;False;[];;If jotaro loses to Kenshiro I don't see how he'd stand a chance against Goku;False;False;;;;1610629624;;False;{};gj82cdp;False;t3_kx4agx;False;False;t3_kx4agx;/r/anime/comments/kx4agx/goku_vs_jotaro_kujo/gj82cdp/;1610701597;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Rum_Hamtaro;;;[];;;;text;t2_1gmonsfk;False;False;[];;"Saying Steins; Gate is better than (insert anime) on this sub isn't exactly a hot take. It's held a top 5 spot on MAL forever and has its own very active subreddit with 87K members. Erased would be more popular with the IG crowd since it is more of a straight forward story, less episodes and things escalate quickly. I personally like S;G better but I can see why people not so entrenched in the anime community would like erased more.";False;False;;;;1610629760;;False;{};gj82jcb;False;t3_kx4qhb;False;True;t3_kx4qhb;/r/anime/comments/kx4qhb/steinsgate_is_better_then_erased/gj82jcb/;1610701701;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Miidas-92;;MAL;[];;https://myanimelist.net/profile/Miidas;dark;text;t2_ja1jx;False;False;[];;"I have no idea what you've seen or not, but here is my top 200 anime list. You'll probably find something here, that you haven't seen yet: - -«Favorite Season if big difference in quality» = Example: Clannad «After Story» - -‘Favorite Season, but not big different in quality’ = Example: Monogatari Series ‘Second Season’ - -If close in quality, I won’t list which season = Example: 3-Gatsu no Lion - -If earlier seasons isn’t necessary to watch other entries, I will consider each entry seperately = Example: Lupin III and Precure. - -1. Cardcaptor Sakura «OG» - -2. Monogatari Series ‘Second Season’ - -3. Ojamajo Doremi «Dokkaan!» - -4. Heartcatch Precure - -5. The Tatami Galaxy - -6. Mawaru Penguindrum - -7. Princess Tutu - -8. Chibi Maruko-chan «OG» - -9. Humanity has Declined - -10. Mahou Shoujo Madoka Magica - -11. Mahoujin Guru Guru 2017 - -12. Lupin III: The woman called Fujiko Mine - -13. Clannad «After Story» - -14. Revolutionary Girl Utena - -15. Ping Pong the Animation - -16. Rose of Versailles - -17. Legend of the Galactic Heroes «OVA» - -18. Millennium Actress - -19. Sayonara Zetsubou Sensei - -20. Monster - -21. Jojo's Bizarre Adventure «Part 4: DiU» - -22. Shinsekai Yori - -23. 3-Gatsu no Lion - -24. Ashita no Joe ‘S2’ - -25. Baccano! - -26. Hayate no Gotoku - -27. Dennou Coil - -28. Lupin III: Part V - -29. Spirited Away - -30. Hanasaku Iroha - -31. Lupin III: The castle of Cagliostro - -32. Katanagatari - -33. Haruhi Series «Disappearance» - -34. Teekyuu «Nasuno Spin-off» - -35. Lucky Star - -36. Hunter x Hunter 2011 - -37. FLCL - - -38. K-On ‘!!’ - -39. Go! Princess Precure - -40. Hajime no Ippo ‘S1’ - -41. Shirobako - -42. Perfect Blue - -43. Welcome to the NHK - -44. Shouwa Genroku Rakugo Shinjuu ‘S2’ - -45. Fullmetal Alchemist: Brotherhood - -46. Steins;Gate «S1» - -47. The case of Hana & Alice - -48. Girls Last Tour - -49. Hugtto Precure - -50. Keep your hands off Eizouken! - - - -51. Wolf Children - -52. Neon Genesis Evangelion ‘EoE’ - -53. Crayon Shin-chan - -54. The night is short, walk on girl - -55. Usagi Drop - -56. Space Dandy ‘S2’ - -57. Chihayafuru ‘S3’ - -58. Haibane Renmei - -59. Gotcha - -60. Natsume’s book of Friends ‘Roku’ - -61. Haikyuu ‘S2’ - -62. Gurren Lagann - -63. Hibike Euphonium «Liz & the Blue Bird» - -64. Re: Cutey Honey - -65. Casshern Sins - -66. Wandering Son - -67. The Eccentric Family ‘S1’ - - -68. Kare Karo - -69. Azumanga Daioh - -70. Great Teacher Onizuka - -71. Minami-ke «S1» - -72. Lupin III: Part II - -73. Harmonia feat. Makoto - -74. Serial Experiments Lain - -75. Kiki’s Delivery Service - -76. Nana - -77. Mitsudomoe ‘S2’ - -78. Angel’s Egg - -79. CLAMP in Wonderland 2 - -80. Patlabor ‘Movie 2’ - -81. Nichijou - -82. Golden Kamuy ‘S3’ - -83. The Tale of Princess Kaguya - -84. Lupin III: Nostradamus - -85. Kill la Kill - -86. Kotobadori (July 2019) - -87. Attack on Titan «S3P2» - -88. Mob Psycho 100 «II» - -89. Kaiji ‘S1’ - -90. One Piece «Before Timeskip» - -91. Osomatsu-san ‘S1’ - -92. There she is!! - -93. Gintama ‘’’ - -94. Vinland Saga - -95. Yuri Kuma Arashi - -96. Panty & Stocking with Garterbelt - -97. Smile Precure - -98. Sword of the Stranger - -99. Mononoke - -100. Pig: The Dam Keeper Poems - -101. Abenobashi - -102. Cowboy Bebop - -103. Kuragehime - -104. Kaitou Saint Tail - -105. Higurashi no naku Koro ni ‘Kai’ - -106. Toradora - -107. Great Pretender - -108. Lupin III - -109. Last Exile - -110. Kakushigoto - -111. The Girl who leapt through time - -112. Samurai Champloo - -113. Sora Yori - -114. Non Non Biyori ‘Vacation’ - -115. Mahoujin Guru Guru - -116. Kyousou Giga - -117. Okko’s Inn (Movie) - -118. Fate/Zero - -119. Ongaku - -120. Kino’s Journey - -121. Baja no Studio ‘Mita Umi’ - -122. Sailor Moon ‘S’ - -123. Mahou Shoujo Lyrical Nanoha «The movie 2nd A’s» - -124. Psychopass «S1» - -125. Little Witch Academia (Movie) - -126. In this corner of the world - -127. Girls und Panzer «der Film» - -128. Barakamon - -129. Kaguya-sama ‘S2’ - -130. Doukyuusei - -131. Flip Flappers - -132. Saiki Kusuo ‘S1’ - -133. Kubikiri Cycle - -134. Pokemon Sun & Moon - -135. Devilman Crybaby - -136. Houseki no Kuni - -137. Wave, Listen to Me - -138. Kara no Kyoukai «5: Mujun Rasen» - -139. Mobile Suit ‘Zeta’ Gundam - -140. L'œil du cyclone - -141. Ichigo Mashimaro ‘OVA’ - -142. Yes! Precure 5 ‘Gogo’ - -143. Spice & Wolf ‘S2’ - -144. Pokemon: Twilight Wings - -145. Kaiba - -146. Paranoia Agent - -147. Pani Poni Dash - -148. Yama no Susume ‘S2’ - -149. Little Witch Academia (TV) - -150. Maoujou de Oyasumi - -151. Nausicaa of the valley of the wind - -152. Gunslinger Girl «S1» - -153. Dorohedoro - -154. Now and then, here and there - -155. Lupin III: Walther P38 - -156. Fuujin Monogatari - -157. Danshi Nichojou - -158. Hyouka - -159. Yuri Seijin Naoko-san (2012) - -160. Seirei no Moribito - -161. Tsumiki no Ie - -162. Re:Zero ‘S2’ - -163. Bokura Mada Underground - -164. Redline - -165. The wind rises - -166. Star Twinkle Precure ‘Hoshi no Uta ni Omoi wo Komete’ - -167. High Score Girl - -168. Gekkan Shoujo Nozaki-kun - -169. Momokuri - -170. Acca 13 - -171. Vatican Miracle Examiners - -172. Made in Abyss ‘Movie 3’ - -173. Yuru Camp «S1» - -174. Shoujo Kageki Revue Starlight - -175. Promare - -176. Sarazanmai - -177. Akudama Drive - -178. Run with the wind - -179. H’or Cafe - -180. Beastars - - -181. Akira - -182. Chobits - -183. Gankutsuou - -184. Golden Boy - -185. My Neighbor Totoro - -186. Paradise Kiss - -187. Space Brothers - -188. Shelter - -189. Yuu Yuu Hakusho - -190. Mushishi - -191. Trigun - -192. Metropolis - -193. Vampire Hunter D «(2000)» - -194. Kemonozume - -195. Kanon (2006) - -196. Tekkon Kinkreet - -197. Summer Wars - -198. Acchi Kocchi - -199. Omoide no Marnie - -200. Hinamatsuri - -These are not on the list, since I want to rewatch them again, before scoring them, but all of them are great: - -- Aria - -- Ghost in the Shell - -- Hidamari Sketch - -- Ouran Koukou Host Club - -- Planets";False;False;;;;1610629800;;False;{};gj82lgs;False;t3_kx4vfe;False;True;t3_kx4vfe;/r/anime/comments/kx4vfe/ive_watched_all_anime_there_is_ive_seen_all_the/gj82lgs/;1610701732;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;Nice that you mention Kekkaishi.;False;False;;;;1610629826;;False;{};gj82msn;False;t3_kx51vw;False;True;t1_gj81e5y;/r/anime/comments/kx51vw/what_should_i_watch/gj82msn/;1610701752;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PM_JINX_HENTAI;;;[];;;;text;t2_q5m3qyn;False;False;[];;"This is the correct answer. We've all seen they are pretty different, but they are all hardening. - -You will get more info on them throughout this season.";False;False;;;;1610629838;;False;{};gj82nds;False;t3_kx2twh;False;False;t1_gj812wh;/r/anime/comments/kx2twh/attack_on_titan_question/gj82nds/;1610701762;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;Gungrave (skip ep 1);False;False;;;;1610629860;;False;{};gj82oit;False;t3_kx51vw;False;True;t3_kx51vw;/r/anime/comments/kx51vw/what_should_i_watch/gj82oit/;1610701780;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HobnobsTheRed;;;[];;;;text;t2_1ftgjit5;False;False;[];;Pui Pui Molcar;False;False;;;;1610629912;;False;{};gj82r9q;False;t3_kx4vfe;False;True;t3_kx4vfe;/r/anime/comments/kx4vfe/ive_watched_all_anime_there_is_ive_seen_all_the/gj82r9q/;1610701820;1;True;False;anime;t5_2qh22;;0;[]; -[];;;STRWCHERRI_;;;[];;;;text;t2_90iuedld;False;False;[];;Yeah but it pushes you to read the manga. And it works, because now I have too many manga lists to count.;False;False;;;;1610630033;;False;{};gj82xky;False;t3_kx2t19;False;True;t3_kx2t19;/r/anime/comments/kx2t19/a_discussion_about_anime_endings/gj82xky/;1610701917;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chika2chi;;;[];;;;text;t2_4dkz2y8e;False;False;[];;">If anyone disagrees with me could you please tell me why. - -I mean shouldn't you explain your reasons first? that's pretty lazy";False;False;;;;1610630165;;False;{};gj834ih;False;t3_kx4qhb;False;False;t3_kx4qhb;/r/anime/comments/kx4qhb/steinsgate_is_better_then_erased/gj834ih/;1610702023;4;True;False;anime;t5_2qh22;;0;[]; -[];;;FullMetalBiscuit;;;[];;;;text;t2_q7b5n;False;False;[];;The film is done, this is just the smart thing to do with cases rising exponentially.;False;False;;;;1610630289;;False;{};gj83b8c;False;t3_kx2uao;False;True;t1_gj7svwu;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj83b8c/;1610702128;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FullMetalBiscuit;;;[];;;;text;t2_q7b5n;False;False;[];;Bro it already got pushed back from June due to Covid, delay is already longer.;False;False;;;;1610630347;;False;{};gj83efb;False;t3_kx2uao;False;True;t1_gj7s958;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj83efb/;1610702175;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Conbz;;MAL;[];;http://myanimelist.net/profile/conbz;dark;text;t2_5ishy;False;False;[];;I'd say it's like the difference between coal and diamond. Technically, they're exactly the same element but the process of how both are created are different and the results are explosively separate.;False;False;;;;1610630374;;False;{};gj83fun;False;t3_kx2twh;False;False;t3_kx2twh;/r/anime/comments/kx2twh/attack_on_titan_question/gj83fun/;1610702195;2;True;False;anime;t5_2qh22;;0;[]; -[];;;falcon413;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/higgs_boson;light;text;t2_4r7tf;False;False;[];;How can you postpone something that doesn’t exist?;False;False;;;;1610630595;;False;{};gj83rsc;False;t3_kx3bdv;False;False;t1_gj7sgv4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj83rsc/;1610702377;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Tomicida;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Tomicida/;light;text;t2_9gtm6;False;False;[];;">Clips from currently airing shows cannot be posted within a week after the Episode Discussion thread is posted.";False;False;;;;1610630609;;False;{};gj83siw;False;t3_kx3sga;False;True;t3_kx3sga;/r/anime/comments/kx3sga/he_said_it_rezero_season_2_part_2/gj83siw/;1610702388;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610630633;moderator;False;{};gj83tv1;False;t3_kx5jsw;False;True;t3_kx5jsw;/r/anime/comments/kx5jsw/hello_i_need_help_i_will_by_thankfully_if_you/gj83tv1/;1610702411;1;False;False;anime;t5_2qh22;;0;[]; -[];;;jojo_is_trash;;;[];;;;text;t2_595dn1yo;False;False;[];;Not the same vibe as what you gave, but Realize gets me hyped no matter what;False;False;;;;1610630661;;False;{};gj83vcv;False;t3_kx2avb;False;True;t3_kx2avb;/r/anime/comments/kx2avb/what_anime_songmusic_gets_you_pumped_up_while/gj83vcv/;1610702434;1;True;False;anime;t5_2qh22;;0;[]; -[];;;red_star_rising;;;[];;;;text;t2_59v8e5hk;False;False;[];;Can someone tell me in what order should i watch the anime and the movies?;False;False;;;;1610630702;;False;{};gj83xmo;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj83xmo/;1610702466;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PantherX0;;;[];;;;text;t2_63yh6qde;False;False;[];;World trigger. Single most underrated anime, slow start but gets really great after the first few episodes;False;False;;;;1610630710;;False;{};gj83y1k;False;t3_kx2dfb;False;True;t3_kx2dfb;/r/anime/comments/kx2dfb/on_an_anime_kick_recommend_me_some_stuff_to_watch/gj83y1k/;1610702472;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;Hunter X Hunter;False;False;;;;1610630746;;False;{};gj8400l;False;t3_kx51vw;False;True;t3_kx51vw;/r/anime/comments/kx51vw/what_should_i_watch/gj8400l/;1610702503;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GGG100;;;[];;;;text;t2_n30n6;False;False;[];;Agreed. The only good thing about the adaptation is the opening.;False;False;;;;1610630914;;False;{};gj849a7;False;t3_kx45ud;False;True;t3_kx45ud;/r/anime/comments/kx45ud/tokyo_ghoul_should_get_a_reboot/gj849a7/;1610702640;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;My fave is probably Texhnolyze;False;False;;;;1610630978;;False;{};gj84csw;False;t3_kx5ma0;False;True;t3_kx5ma0;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj84csw/;1610702691;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahou_Shoujo_Ramune;;;[];;;;text;t2_4vs4l2r6;False;False;[];;School Live;False;False;;;;1610631016;;False;{};gj84ewp;False;t3_kx5ma0;False;True;t3_kx5ma0;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj84ewp/;1610702722;0;True;False;anime;t5_2qh22;;0;[]; -[];;;gajaczek;;MAL;[];;http://myanimelist.net/profile/gaiacheck;dark;text;t2_7mhng;False;False;[];;50/50;False;False;;;;1610631053;;False;{};gj84gxa;False;t3_kx2uao;False;False;t1_gj7si73;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj84gxa/;1610702752;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Handsome-_-awkward;;;[];;;;text;t2_52f0dxfa;False;False;[];;About halfway through the first season so I shouldn't continue afterwards?;False;False;;;;1610631085;;False;{};gj84ipo;False;t3_kx45ud;False;True;t3_kx45ud;/r/anime/comments/kx45ud/tokyo_ghoul_should_get_a_reboot/gj84ipo/;1610702779;2;True;False;anime;t5_2qh22;;0;[]; -[];;;0Max00;;;[];;;;text;t2_495a5aaj;False;False;[];;"Series > Death and Rebirth > EoE > 1.11 > 2.22 > 3.33";False;False;;;;1610631101;;False;{};gj84jl1;False;t3_kx3bdv;False;True;t1_gj83xmo;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj84jl1/;1610702792;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610631105;;False;{};gj84jt9;False;t3_kx5ma0;False;True;t3_kx5ma0;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj84jt9/;1610702796;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;juances19;;HB;[];;https://kitsu.io/users/juances;dark;text;t2_17a18d;False;False;[];;"Like, he must be imagining they'll marry then they'll move somewhere else and forget about him. - -He's just a kid after all. It doesn't have to make sense, he's just making kid assumptions.";False;False;;;;1610631147;;False;{};gj84m5r;False;t3_kx5g28;False;True;t3_kx5g28;/r/anime/comments/kx5g28/calling_all_horimiya_readers_i_wanted_to_ask/gj84m5r/;1610702832;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Try MaouYuu;False;False;;;;1610631175;;False;{};gj84nnd;False;t3_kx5jsw;False;True;t3_kx5jsw;/r/anime/comments/kx5jsw/hello_i_need_help_i_will_by_thankfully_if_you/gj84nnd/;1610702854;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;"1. Horimiya -2. Attack on Titan -3. Death Note";False;False;;;;1610631176;;False;{};gj84nqf;False;t3_kx5ma0;False;True;t3_kx5ma0;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj84nqf/;1610702855;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;I liked the art/animation of wonder egg priority but the story is walking a fine line between amazing and incoherent and I don’t think that’s a good thing. I can’t judge it off just one episode so will have to wait a bit longer to say for sure but damn it felt like some weird acid trip. Will either come out great or turn into a huge mess.;False;False;;;;1610631190;;1610631310.0;{};gj84ohn;False;t3_kx5ma0;False;False;t3_kx5ma0;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj84ohn/;1610702867;4;True;False;anime;t5_2qh22;;0;[]; -[];;;gangrainette;;MAL;[];;https://myanimelist.net/profile/bouletos;dark;text;t2_vlti1;False;False;[];;"Kill la Kill - -Symphogear. Hibiki first transformation with ""LISTEN TO MY SONG"" in the background was awesome. - -> GUNGNIR DATO !";False;False;;;;1610631241;;False;{};gj84rcg;False;t3_kx5ma0;False;True;t3_kx5ma0;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj84rcg/;1610702911;0;True;False;anime;t5_2qh22;;0;[]; -[];;;poriomaniac;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/htiekgndks?status=7&order=4&or";light;text;t2_o1blr;False;False;[];;So just like the show!;False;False;;;;1610631254;;False;{};gj84s2n;False;t3_kx3bdv;False;False;t1_gj80u1s;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj84s2n/;1610702922;501;True;False;anime;t5_2qh22;;0;[]; -[];;;sirhatsley;;MAL;[];;www.myanimelist.net/animelist/sirhatsley;dark;text;t2_6nj2b;False;False;[];;You don't understand, we've been waiting since 2012;False;False;;;;1610631415;;False;{};gj85135;False;t3_kx3bdv;False;False;t1_gj80gv5;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj85135/;1610703056;60;True;False;anime;t5_2qh22;;0;[]; -[];;;maximus_md;;;[];;;;text;t2_3nhroflm;False;False;[];;"Yeah I get you, it’s definitely one you need to pay attention to otherwise you’ll be confused pretty quickly. - -Loved the trippiness though, feel like it’s not seen often enough in anime.";False;False;;;;1610631424;;False;{};gj851jm;True;t3_kx5ma0;False;True;t1_gj84ohn;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj851jm/;1610703064;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Massaman95;;;[];;;;text;t2_zxb3m;False;False;[];;That's just naming your favorite anime;False;False;;;;1610631470;;False;{};gj8547k;False;t3_kx5ma0;False;True;t1_gj84jt9;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj8547k/;1610703103;1;True;False;anime;t5_2qh22;;0;[]; -[];;;maximus_md;;;[];;;;text;t2_3nhroflm;False;False;[];;"Interesting; I feel like it took me a while to get into S;G";False;False;;;;1610631472;;False;{};gj854cg;True;t3_kx5ma0;False;True;t1_gj84jt9;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj854cg/;1610703105;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;Terror in resonance and the promised neverland. I liked the first episode of terror in resonance because its very interesting and its so good. And I like tpn first episode because in just that episode a lot of stuff happens and it got me hooked instantly;False;False;;;;1610631487;;False;{};gj85565;False;t3_kx5ma0;False;True;t3_kx5ma0;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj85565/;1610703118;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610631537;;False;{};gj85832;False;t3_kx4vfe;False;True;t1_gj80gad;/r/anime/comments/kx4vfe/ive_watched_all_anime_there_is_ive_seen_all_the/gj85832/;1610703160;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tetodafu;;;[];;;;text;t2_9hon60c8;False;False;[];;I don't want it...but I want it;False;False;;;;1610631542;;False;{};gj858f4;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj858f4/;1610703165;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;It's a reboot but arguably a sequel. The first film is just the first 6 episodes in a movie, the second diverges greatly at the end, and the third is completely new plotline, and this is the final installment. I like all of them but they are kinda controversial and lots of people dont like them.;False;False;;;;1610631544;;False;{};gj858iq;False;t3_kx3bdv;False;False;t1_gj7yp6q;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj858iq/;1610703168;24;True;False;anime;t5_2qh22;;0;[]; -[];;;as1eep;;;[];;;;text;t2_pek5e8i;False;False;[];;Kill La Kill gotta be my favourite. Great on ur own and unmatched in a group;False;False;;;;1610631546;;False;{};gj858mp;False;t3_kx5ma0;False;True;t3_kx5ma0;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj858mp/;1610703169;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;The first episode of Yu Yu Hakusho immediately hooked me, because it did such great job making you care about the major characters;False;False;;;;1610631547;;False;{};gj858o3;False;t3_kx5ma0;False;True;t3_kx5ma0;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj858o3/;1610703169;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;?;False;False;;;;1610631579;;False;{};gj85ahf;False;t3_kx4vfe;False;True;t1_gj85832;/r/anime/comments/kx4vfe/ive_watched_all_anime_there_is_ive_seen_all_the/gj85ahf/;1610703197;0;True;False;anime;t5_2qh22;;0;[]; -[];;;maximus_md;;;[];;;;text;t2_3nhroflm;False;False;[];;"Yeah TPN is actually probably the last one that hit me as hard; that’s a great shout. - -Still never got round to watching TiR";False;False;;;;1610631632;;False;{};gj85dju;True;t3_kx5ma0;False;False;t1_gj85565;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj85dju/;1610703242;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;Skip death and rebirth its just recap.;False;False;;;;1610631633;;False;{};gj85dm4;False;t3_kx3bdv;False;False;t1_gj84jl1;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj85dm4/;1610703242;19;True;False;anime;t5_2qh22;;0;[]; -[];;;wako70;;;[];;;;text;t2_53jxyxvt;False;False;[];;If you can read the manga;False;False;;;;1610631675;;False;{};gj85fzs;False;t3_kx45ud;False;False;t1_gj84ipo;/r/anime/comments/kx45ud/tokyo_ghoul_should_get_a_reboot/gj85fzs/;1610703278;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610631703;;False;{};gj85hnh;False;t3_kx5ma0;False;True;t1_gj8547k;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj85hnh/;1610703302;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ddaurah;;;[];;;;text;t2_9tcgu1ev;False;False;[];;zankyou no terror, samurai champloo and Psycho pass for me;False;False;;;;1610631714;;False;{};gj85ibd;False;t3_kx5ma0;False;True;t3_kx5ma0;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj85ibd/;1610703312;1;True;False;anime;t5_2qh22;;0;[]; -[];;;0Max00;;;[];;;;text;t2_495a5aaj;False;False;[];;The are re-animated scenes, like Shinji rescuing Rei after defeating ramiel. I think one should watch it at least once.;False;False;;;;1610631741;;False;{};gj85jv5;False;t3_kx3bdv;False;True;t1_gj85dm4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj85jv5/;1610703335;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;hyperactiv3hedgehog;;;[];;;;text;t2_6hn633nc;False;False;[];;"he is right isn't he, people tolerate/suffer tons for the ones that they love (not just romantic and even parental love) - -and you love people inspite of their flaws";False;False;;;;1610631827;;1610700107.0;{};gj85osx;False;t3_kx3sga;False;True;t3_kx3sga;/r/anime/comments/kx3sga/he_said_it_rezero_season_2_part_2/gj85osx/;1610703407;2;True;False;anime;t5_2qh22;;0;[]; -[];;;i_am-a-failure;;;[];;;;text;t2_86bg4kgh;False;False;[];;just like CP2077 ?;False;False;;;;1610631843;;False;{};gj85prj;False;t3_kx3bdv;False;True;t1_gj81855;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj85prj/;1610703422;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;I feel like I went through a whole season worth of content in the first episode alone.;False;False;;;;1610631844;;False;{};gj85psv;False;t3_kx5ma0;False;True;t1_gj858mp;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj85psv/;1610703422;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;i_am-a-failure;;;[];;;;text;t2_86bg4kgh;False;False;[];;"they are puling a CP2077! - -just like how they wanted us to show the greed of corporates evangelion is probably trying to tell us something with these delays.";False;False;;;;1610631899;;False;{};gj85t3r;False;t3_kx3bdv;False;False;t1_gj84s2n;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj85t3r/;1610703471;153;True;False;anime;t5_2qh22;;0;[]; -[];;;MisogynistFurry;;;[];;;;text;t2_95pvntru;False;False;[];;I don't remember it's name but it's the You wa Shock song form Fist of the north star;False;False;;;;1610632028;;False;{};gj860u4;False;t3_kx2avb;False;True;t3_kx2avb;/r/anime/comments/kx2avb/what_anime_songmusic_gets_you_pumped_up_while/gj860u4/;1610703586;1;True;False;anime;t5_2qh22;;0;[]; -[];;;maximus_md;;;[];;;;text;t2_3nhroflm;False;False;[];;"I would’ve never ever thought of it; as much as I liked YYH when I watched it, I don’t feel like it really left any lasting impact on me";False;False;;;;1610632135;;False;{};gj8677w;True;t3_kx5ma0;False;True;t1_gj858o3;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj8677w/;1610703695;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610632232;moderator;False;{};gj86czp;False;t3_kx5ze0;False;True;t3_kx5ze0;/r/anime/comments/kx5ze0/what_anime_is_she_from/gj86czp/;1610703787;1;False;False;anime;t5_2qh22;;0;[]; -[];;;SigfridNorman;;;[];;;;text;t2_9gqdfbly;False;False;[];;"I think it's a complete waste of time unless you're a hardcore fan. No one should rewatch 1h 15 min of content they've just seen just to get like two additional scenes. - - -But it's a nice time if you return to watch it after a few months, or if you love love loved the show so much that you could rewatch it immediately. But otherwise don't waste your time.";False;False;;;;1610632294;;False;{};gj86gra;False;t3_kx3bdv;False;False;t1_gj85jv5;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj86gra/;1610703847;19;True;False;anime;t5_2qh22;;0;[]; -[];;;YTStyle;;;[];;;;text;t2_6ck428bx;False;False;[];;Heavy object;False;False;;;;1610632351;;False;{};gj86k9z;False;t3_kx5ze0;False;True;t3_kx5ze0;/r/anime/comments/kx5ze0/what_anime_is_she_from/gj86k9z/;1610703901;1;True;False;anime;t5_2qh22;;0;[]; -[];;;maximus_md;;;[];;;;text;t2_3nhroflm;False;False;[];;"Never seen it, but sounds interesting; would you recommend the dub? Or am I better off sticking to the sub?";False;False;;;;1610632367;;False;{};gj86la3;True;t3_kx5ma0;False;True;t1_gj84csw;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj86la3/;1610703916;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PranayNighukar;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_lmr6sb5;False;False;[];;Heavy object;False;False;;;;1610632404;;False;{};gj86nk8;False;t3_kx5ze0;False;True;t3_kx5ze0;/r/anime/comments/kx5ze0/what_anime_is_she_from/gj86nk8/;1610703951;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dahSweep;;;[];;;;text;t2_m8mnk;False;False;[];;"God damn the last movie was awful, but I don't blame Shinji. Hear me out.. if anyone actually explained ANYTHING to Shinji, all the stupid shit he does could be avoidable. - -I really hate the third movie, and mostly because of how Shinji is treated. It's so endlessly frustrating watching that film.";False;False;;;;1610632426;;False;{};gj86owp;False;t3_kx3bdv;False;False;t1_gj7uuto;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj86owp/;1610703971;139;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Sorry, your submission has been removed. - -- Clips from shows should use the ""Clip"" flair, be between 10 seconds and 5 minutes long, and include the anime name in the title of the post. If the clip is from a recently aired episode, wait a **week** after the episode's discussion thread is posted before posting the clip. Additionally, we only allow each user to post two clips per month. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610632451;moderator;False;{};gj86qev;False;t3_kx3sga;False;True;t3_kx3sga;/r/anime/comments/kx3sga/he_said_it_rezero_season_2_part_2/gj86qev/;1610703995;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Miidas-92;;MAL;[];;https://myanimelist.net/profile/Miidas;dark;text;t2_ja1jx;False;False;[];;"These 5 had fantastic 1st episodes: - -- Cardcaptor Sakura - -- Kill la Kill - -- Steins Gate - -- Kare Kano - -- Osomatsu-san (the version that was sadly removed from Streaming, BD and DVDs)";False;False;;;;1610632464;;False;{};gj86r80;False;t3_kx5ma0;False;False;t3_kx5ma0;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj86r80/;1610704007;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;Haven't seen the dub but the series relies heavily on it's atmospheric elements that i think are enhanced by the original voice acting of the series which is one reason why I thought the 1st episode was special.;False;False;;;;1610632512;;False;{};gj86u76;False;t3_kx5ma0;False;False;t1_gj86la3;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj86u76/;1610704052;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jumbledcode;;MAL;[];;"http://myanimelist.net/animelist/DeepTime?show=0&order=4";dark;text;t2_irctq;False;False;[];;"*Rokka no Yuusha* was notable for a first episode that really grabbed people. It was pretty much a perfect hook to get viewers interested. - -*Tower of Druaga*'s first episode is one I always remember just for how completely off-the-wall it is. It's very different in tone from the rest of the series, and is just one big over-the-top parody of various anime tropes.";False;False;;;;1610632518;;False;{};gj86uk5;False;t3_kx5ma0;False;True;t3_kx5ma0;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj86uk5/;1610704057;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;For you didn’t have much an effect for me it grabbed me;False;False;;;;1610632521;;False;{};gj86us3;False;t3_kx5ma0;False;True;t1_gj8677w;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj86us3/;1610704061;0;True;False;anime;t5_2qh22;;0;[]; -[];;;nickster182;;;[];;;;text;t2_ei2bc;False;False;[];;How much of the original Eva do I need to see to watch this. I'm about half way through and although good and deep. It drains my soul watching it lol;False;False;;;;1610632566;;False;{};gj86xl8;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj86xl8/;1610704104;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;Why tell a bunch of other people instead of replying to the person making the original statement?;False;False;;;;1610632613;;False;{};gj870i9;False;t3_kx4qhb;False;True;t3_kx4qhb;/r/anime/comments/kx4qhb/steinsgate_is_better_then_erased/gj870i9/;1610704148;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FiammaOfTheRight;;;[];;;;text;t2_8efq2;False;False;[];;Cyberpunk 3.0+1.0;False;False;;;;1610632619;;False;{};gj870uz;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj870uz/;1610704153;1;True;False;anime;t5_2qh22;;0;[]; -[];;;maximus_md;;;[];;;;text;t2_3nhroflm;False;False;[];;"I meant the show as a whole more than the episode; I remember him watching his own funeral now that you brought it up, just feel like on the whole it’s a show that had some great highs but overall isn’t that memorable";False;False;;;;1610632649;;False;{};gj872rt;True;t3_kx5ma0;False;False;t1_gj86us3;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj872rt/;1610704183;2;True;False;anime;t5_2qh22;;0;[]; -[];;;defeatingme;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/defeatingme;light;text;t2_31dwk2wd;False;False;[];;Death Note ep 1 hooked me the most, but I'd say Monster ep 1 is my most favorite.;False;False;;;;1610632682;;False;{};gj874ro;False;t3_kx5ma0;False;False;t3_kx5ma0;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj874ro/;1610704213;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610632705;moderator;False;{};gj8769e;False;t3_kx63zp;False;True;t3_kx63zp;/r/anime/comments/kx63zp/spoiler_clannad_after_story_im_legit_crying_right/gj8769e/;1610704237;1;False;False;anime;t5_2qh22;;0;[]; -[];;;amiboomer;;;[];;;;text;t2_4xblvzjr;False;False;[];;i would but i didn’t really clarify what i saw properly, it was a poll from an anime account so it was multiple people.;False;False;;;;1610632739;;False;{};gj878cc;True;t3_kx4qhb;False;True;t1_gj870i9;/r/anime/comments/kx4qhb/steinsgate_is_better_then_erased/gj878cc/;1610704268;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;The show itself I actually love, but yeah it isn’t a masterpiece or anything like that after all there better shows out there;False;False;;;;1610632770;;False;{};gj87aca;False;t3_kx5ma0;False;True;t1_gj872rt;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj87aca/;1610704299;0;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkSage90;;;[];;;;text;t2_21uou65v;False;False;[];;Just keep going trust me;False;False;;;;1610632791;;False;{};gj87blu;False;t3_kx63zp;False;True;t3_kx63zp;/r/anime/comments/kx63zp/spoiler_clannad_after_story_im_legit_crying_right/gj87blu/;1610704318;6;True;False;anime;t5_2qh22;;0;[]; -[];;;SigfridNorman;;;[];;;;text;t2_9gqdfbly;False;False;[];;"Neon Genesis Evangelion (all 26 episodes) > End of Evangelion. This is the ""real Evangelion"", the others are reboots or recaps. - - -You can then choose to watch the ""rebuilds"", which goes: 1.11>2.22>3.33. They're a reboot of the original show. The first movie is very similar but they become their own thing after that. - - -Death and Rebirth is a recap movie of the original show. Only worth watching if you want to rewatch End of Evangelion (which is the best Eva content) but don't have time for the entire series. There are a couple of new scenes, but they're not worth watching the entire movie to see unless you want to rewatch anyway. Youtube them, imo.";False;False;;;;1610632887;;False;{};gj87hji;False;t3_kx3bdv;False;False;t1_gj83xmo;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj87hji/;1610704408;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazzlike_Razzmatazz;;;[];;;;text;t2_5ybf9h66;False;False;[];;And to prevent them from breaking their body they have to train to death for almost 3 yrs. Wdym odm gear is unrealistic i have seen a real Working ODM gear in reality only proo is that no one can use it.;False;False;;;;1610632909;;False;{};gj87ixr;False;t3_kx2twh;False;True;t1_gj7zl4p;/r/anime/comments/kx2twh/attack_on_titan_question/gj87ixr/;1610704429;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ImperialLump;;;[];;;;text;t2_gw341;False;False;[];;This has to be the most ridiculous naming convention. Like no 4.0 would make too much sense as a sequel we MUST represent the same thing but through addition.;False;False;;;;1610632931;;False;{};gj87k8a;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj87k8a/;1610704448;9;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610633007;moderator;False;{};gj87oxb;False;t3_kx67ce;False;True;t3_kx67ce;/r/anime/comments/kx67ce/could_someone_tell_me_which_anime_shes_from/gj87oxb/;1610704518;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Damarugaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Damarugaki/;light;text;t2_6zyxfkgg;False;False;[];;Chitanda from Hyouka;False;False;;;;1610633035;;False;{};gj87qlw;False;t3_kx67ce;False;True;t3_kx67ce;/r/anime/comments/kx67ce/could_someone_tell_me_which_anime_shes_from/gj87qlw/;1610704544;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610633039;;False;{};gj87qx5;False;t3_kx5ma0;False;True;t3_kx5ma0;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj87qx5/;1610704549;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;CT_BINO;;MAL;[];;https://myanimelist.net/profile/CT_BINO;dark;text;t2_pa5vv;False;False;[];;Hyouka;False;False;;;;1610633042;;False;{};gj87r2r;False;t3_kx67ce;False;True;t3_kx67ce;/r/anime/comments/kx67ce/could_someone_tell_me_which_anime_shes_from/gj87r2r/;1610704551;1;True;False;anime;t5_2qh22;;0;[]; -[];;;breath87;;;[];;;;text;t2_3t06btce;False;False;[];;I am waY way behind on evangelion;False;False;;;;1610633059;;False;{};gj87s4r;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj87s4r/;1610704567;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GullibleBullfrog2020;;;[];;;;text;t2_66p71k1v;False;False;[];;anyone know where i wil be able to see this;False;False;;;;1610633060;;False;{};gj87s8c;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj87s8c/;1610704568;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;True;[];;To me it seems like it could go down the FLCL path, that anime was confusing af and at times just seemed incoherent, but it was still really amazing;False;False;;;;1610633073;;False;{};gj87t15;False;t3_kx5ma0;False;False;t1_gj84ohn;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj87t15/;1610704580;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ironman72706;;;[];;;;text;t2_7ff4vzdm;False;False;[];;So like what is the watch order for the series including all of this new stuff?;False;False;;;;1610633106;;False;{};gj87v24;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj87v24/;1610704610;1;True;False;anime;t5_2qh22;;0;[]; -[];;;argos4_;;;[];;;;text;t2_9slh1za7;False;False;[];;Hyouka! I just started watching it;False;False;;;;1610633152;;False;{};gj87xv7;False;t3_kx67ce;False;True;t3_kx67ce;/r/anime/comments/kx67ce/could_someone_tell_me_which_anime_shes_from/gj87xv7/;1610704651;1;True;False;anime;t5_2qh22;;0;[]; -[];;;eigenscene;;;[];;;;text;t2_13691l;False;False;[];;I wonder if direct streaming is possible for something like this. Like how Warner Bros did with HBO max and Disney with Disney Plus;False;False;;;;1610633196;;False;{};gj880kr;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj880kr/;1610704691;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;True;[];;There are a lot of really good first episodes... Damn. Honestly, I am going to say the first season of sword art online. Even though I ended up not liking the anime, I will always say that SAO had the best pilot episode for an isekai, and one of the best for a series on general.;False;False;;;;1610633232;;False;{};gj882vs;False;t3_kx5ma0;False;True;t3_kx5ma0;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj882vs/;1610704726;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> And to prevent them from breaking their body they have to train to death for almost 3 yrs. - -Training three years and still having stick legs will not prevent you from crushing your knees, ankles and femurs due to the sheer impact of landing. They don't even make a threepoint landing or roll it off, most times they just land stiff-legged. Try jumping from 3 meters stiff-legged on pavement and see how it goes. But ubergod Levi is out of commission at convenient moments when the plot demands it cause his ankle hurts. - -Working ODM Gear? Not only is the mechanism as described steampunk fantasy, but the way the accelerate, they'd get concussed at the very least and most likely just pass out or die while using it. How the hell would ODM Gear work irl the way the manga or anime depict it?";False;False;;;;1610633397;;False;{};gj88dbz;False;t3_kx2twh;False;True;t1_gj87ixr;/r/anime/comments/kx2twh/attack_on_titan_question/gj88dbz/;1610704889;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Sorry, your submission has been removed. - -- This looks like it's - a short video edit. - This is a form of restricted content that isn't allowed as a full post on the sub. You might consider posting about this sort of thing in the [weekly Casual Discussion Fridays megathread](https://www.reddit.com/r/anime/search?q=title%3A%22Casual+Discussion+Fridays%22+subreddit%3Aanime+author%3AAnimeMod&restrict_sr=on&sort=new&t=week) if it applies. See [our rules page](https://www.reddit.com/r/anime/wiki/rules#wiki_restricted_content) for a full list of restricted content categories. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610633401;moderator;False;{};gj88dlj;False;t3_kx68dg;False;True;t3_kx68dg;/r/anime/comments/kx68dg/amv_i_recently_made_flash_warning/gj88dlj/;1610704893;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_nowaves;;;[];;;;text;t2_7q84mx65;False;False;[];;This series 100% broke me. Just wrap it up then watching something light for a while.;False;False;;;;1610633456;;False;{};gj88h33;False;t3_kx63zp;False;True;t3_kx63zp;/r/anime/comments/kx63zp/spoiler_clannad_after_story_im_legit_crying_right/gj88h33/;1610704948;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610633539;moderator;False;{};gj88mbg;False;t3_kx6cvu;False;False;t3_kx6cvu;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj88mbg/;1610705027;0;False;False;anime;t5_2qh22;;0;[]; -[];;;Hilvert55;;;[];;;;text;t2_zz8fm;False;False;[];;Lmao dude it’s 2021 man time to edit something else besides Tokyo ghoul dude;False;False;;;;1610633582;;False;{};gj88p1w;False;t3_kx68dg;False;True;t3_kx68dg;/r/anime/comments/kx68dg/amv_i_recently_made_flash_warning/gj88p1w/;1610705069;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;Constant screaming turned me off so haven't watched more of it after that.;False;False;;;;1610633618;;False;{};gj88rdb;False;t3_kx6cvu;False;True;t3_kx6cvu;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj88rdb/;1610705104;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;blitzbom;;;[];;;;text;t2_6h9w1;False;False;[];;The only issue I see with this theory is that the first time Eren hardens they're able to cut him out of it.;False;False;;;;1610633658;;False;{};gj88tym;False;t3_kx2twh;False;False;t1_gj7ql00;/r/anime/comments/kx2twh/attack_on_titan_question/gj88tym/;1610705143;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Sweetcreems;;;[];;;;text;t2_y1u9kxw;False;False;[];;"Personally I don’t like it, I heard it gets much better but the beginning is quite boring and quite cookie cutter in my opinion. That said, it’s one of the biggest series atm so there’s definitely something there. - -If you’re desperate for a standard shounen I’d say give it a watch. Just don’t expect anything *incredible* imo.";False;False;;;;1610633700;;False;{};gj88wpm;False;t3_kx6cvu;False;True;t3_kx6cvu;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj88wpm/;1610705186;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610633721;;False;{};gj88y1u;False;t3_kx2twh;False;True;t3_kx2twh;/r/anime/comments/kx2twh/attack_on_titan_question/gj88y1u/;1610705207;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;amiboomer;;;[];;;;text;t2_4xblvzjr;False;False;[];;just curious as all.;False;False;;;;1610633740;;False;{};gj88zbi;True;t3_kx4qhb;False;True;t1_gj834ih;/r/anime/comments/kx4qhb/steinsgate_is_better_then_erased/gj88zbi/;1610705226;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WACS_On;;;[];;;;text;t2_notm65o;False;False;[];;You gotta watch the rebuild films at the very least for it to make any sense. The 1st film is pretty much a straight reboot. The second film starts with some mild to moderate differences, and from the end of the second film onward things get very very. Very. Different. The rebuilds are also written under the assumption that the viewer has seen the originals, so a lot of the stuff that was a big reveal in the original is sort of glossed over.;False;False;;;;1610633785;;False;{};gj8927i;False;t3_kx3bdv;False;True;t1_gj86xl8;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8927i/;1610705269;1;True;False;anime;t5_2qh22;;0;[]; -[];;;amiboomer;;;[];;;;text;t2_4xblvzjr;False;False;[];;yeah, at the same time though i wasn’t trying to make a hot take or anything i was just interested on someone else’s pov who disagrees with me.;False;False;;;;1610633840;;False;{};gj895ur;True;t3_kx4qhb;False;False;t1_gj82jcb;/r/anime/comments/kx4qhb/steinsgate_is_better_then_erased/gj895ur/;1610705324;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;I enjoyed it quite a lot. But it's the pure essence of battle shounen, so you must love that genre or else you'll just hate it.;False;False;;;;1610633902;;False;{};gj899vs;False;t3_kx6cvu;False;False;t3_kx6cvu;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj899vs/;1610705386;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WACS_On;;;[];;;;text;t2_notm65o;False;False;[];;"OG series -> End of Evangelion (death and rebirth have a little extra, but they're not necessary) -> Rebuild films 1.11, 2.22, and 3.33";False;False;;;;1610633913;;False;{};gj89akx;False;t3_kx3bdv;False;False;t1_gj87v24;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj89akx/;1610705397;4;True;False;anime;t5_2qh22;;0;[]; -[];;;JeanKB;;;[];;;;text;t2_nudpu;False;False;[];;"The manga was already terrible, and the anime adaptation is even worse since it is - -* long running instead of seasonal -* full of filler arcs -* made by pierrot - -It's trash.";False;True;;comment score below threshold;;1610633921;;False;{};gj89b51;False;t3_kx6cvu;False;True;t3_kx6cvu;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj89b51/;1610705405;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;WACS_On;;;[];;;;text;t2_notm65o;False;False;[];;Happy is relative when you're talking about Eva;False;False;;;;1610633961;;False;{};gj89dqy;False;t3_kx3bdv;False;True;t1_gj7x5mz;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj89dqy/;1610705444;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TrickedKnight;;;[];;;;text;t2_2ljwh3z3;False;False;[];;you should continue imo;False;False;;;;1610633966;;False;{};gj89e3y;False;t3_kx45ud;False;True;t1_gj84ipo;/r/anime/comments/kx45ud/tokyo_ghoul_should_get_a_reboot/gj89e3y/;1610705449;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MelonRaf_44;;;[];;;;text;t2_3a9wliys;False;False;[];;"Elden Ring fan here - -can relate";False;False;;;;1610633987;;False;{};gj89ff1;False;t3_kx3bdv;False;True;t1_gj80gv5;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj89ff1/;1610705469;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;aresZero2;;;[];;;;text;t2_542000fo;False;False;[];;legit im so fkn sad right now im gonna be depresed for the rest of the week;False;False;;;;1610633988;;False;{};gj89fhg;True;t3_kx63zp;False;True;t1_gj88h33;/r/anime/comments/kx63zp/spoiler_clannad_after_story_im_legit_crying_right/gj89fhg/;1610705470;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610633991;;1610634419.0;{};gj89fnb;False;t3_kx6cvu;False;False;t3_kx6cvu;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj89fnb/;1610705472;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;Pathogen188;;;[];;;;text;t2_yd2xt;False;False;[];;"**TL;DR:** Finish watching the original series and then watch End of Evangelion before starting the Rebuilds. Death and Rebirth isn’t necessary and neither is Death^true 2 - -All of it and none of it technically. The Rebuilds currently are a different continuity from the original NGE and are a reboot but also retelling of the series, hence rebuild. But the rebuilds also might be a sequel to the original series. - -The first film is basically episodes 1-6, the second continues retelling the original show before it diverges in a big way and the third film is totally original and this fourth will will continue off of that. - -That being said, finish the original series first. - -*Technically* you can watch the rebuilds without watching the original. - -But it’s better if you do watch NGE and End of Evangelion first. They provide some greater context for the events of the Rebuilds and there are multiple references to events in NGE that lead some to speculate it’s both a retelling and a sequel series to the original Neon Genesis Evangelion. - -The original is also just better as far as story goes.";False;False;;;;1610634007;;False;{};gj89grf;False;t3_kx3bdv;False;False;t1_gj86xl8;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj89grf/;1610705490;4;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;Yeah, the kiss was not expected, I thought Emilia did not love Subaru, I knew she liked him as a friend but this really caught me off guard;False;False;;;;1610634027;;False;{};gj89i3g;True;t3_kx3sga;False;True;t1_gj7z6w0;/r/anime/comments/kx3sga/he_said_it_rezero_season_2_part_2/gj89i3g/;1610705509;1;True;False;anime;t5_2qh22;;0;[]; -[];;;obito_115;;;[];;;;text;t2_8j3713ws;False;False;[];;"If it had good animation i would enjoy it a bit more -its overall really ok for a typical shounen";False;False;;;;1610634029;;False;{};gj89i7u;False;t3_kx6cvu;False;True;t3_kx6cvu;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj89i7u/;1610705511;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;">made by pierrot - -What makes them bad?";False;False;;;;1610634058;;False;{};gj89k4u;False;t3_kx6cvu;False;True;t1_gj89b51;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj89k4u/;1610705540;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pinkywho4884;;;[];;;;text;t2_4lhuoagm;False;False;[];;"I, a Name of the Wind fan, have been waiting patiently for the third book (The second one came out 2011) - -But at least the book isn’t getting delayed like this Eva Movie, I feel you guys but this is a hard OOF";False;False;;;;1610634090;;False;{};gj89m8t;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj89m8t/;1610705571;36;True;False;anime;t5_2qh22;;0;[]; -[];;;oogieogie;;;[];;;;text;t2_607w7;False;False;[];;I am absolutely shocked /s;False;False;;;;1610634151;;False;{};gj89q8n;False;t3_kx3bdv;False;False;t1_gj7sgv4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj89q8n/;1610705631;18;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;Yeah, I heard they are controversial, nobody likes sad alternative storylines.;False;False;;;;1610634169;;False;{};gj89rdj;False;t3_kx3bdv;False;True;t1_gj858iq;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj89rdj/;1610705649;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;10 episodes ?! You really think it's enough for saying it's bad ?;False;False;;;;1610634175;;False;{};gj89rra;False;t3_kx6cvu;False;True;t1_gj89fnb;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj89rra/;1610705655;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ewqdsacxziopjklbnm;;;[];;;;text;t2_55uqoldw;False;False;[];;It’s okay don’t worry!! They’re releasing it with half life 3.;False;False;;;;1610634190;;False;{};gj89so2;False;t3_kx3bdv;False;False;t1_gj7vura;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj89so2/;1610705669;66;True;False;anime;t5_2qh22;;0;[]; -[];;;viky109;;;[];;;;text;t2_piojy;False;False;[];;Watching Death and Rebirth is completely pointless, the extra scenes were later added to the director's cut version of episodes 21-24.;False;False;;;;1610634211;;False;{};gj89u2y;False;t3_kx3bdv;False;False;t1_gj84jl1;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj89u2y/;1610705690;7;True;False;anime;t5_2qh22;;0;[]; -[];;;JeanKB;;;[];;;;text;t2_nudpu;False;False;[];;Pierrot adaptations are very low quality. Just check any BC episode and you will notice how bad the animation is.;False;False;;;;1610634242;;False;{};gj89w3r;False;t3_kx6cvu;False;True;t1_gj89k4u;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj89w3r/;1610705721;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Azrub580;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FpsArena;light;text;t2_661t4twj;False;False;[];;"Series tend to go down once they are finishing airing because that's when a lot of the non-fanboys that give 10 from the first episode start watching it. - -I'm pretty sure that MAL have fixed troll votes being counted so they should not be a problem anymore.";False;False;;;;1610634243;;False;{};gj89w81;False;t3_kx4aj1;False;True;t1_gj80rgq;/r/anime/comments/kx4aj1/can_aot_dethrone_fmab/gj89w81/;1610705723;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PapaFrankuMinion;;HB;[];;https://kitsu.io/users/Supesharisuto;dark;text;t2_ztj5w;False;False;[];;As if a million deaths wasn't already too far...;False;False;;;;1610634320;;False;{};gj8a1cv;False;t3_kx2uao;False;False;t1_gj7qjam;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj8a1cv/;1610705799;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Da_Vinci98;;;[];;;;text;t2_2ut4a6tt;False;False;[];;"*""Coming 2021 Together, we will (not) overcome""";False;False;;;;1610634322;;False;{};gj8a1gf;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8a1gf/;1610705800;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kuddlesworth9419;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kuddlesworth;light;text;t2_btage;False;False;[];;An actual conclusion would be sufficient.;False;False;;;;1610634328;;False;{};gj8a1x0;False;t3_kx3bdv;False;True;t1_gj89dqy;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8a1x0/;1610705807;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;It's fine, it's a good shonen, it's not really fancy or a great anime, but the story is nice and interesting, characters are mostly good, MC is kinda generic which idc, the animation dropes sometimes since it's studio pierrot, good fights, good action.;False;False;;;;1610634360;;1610634994.0;{};gj8a41g;False;t3_kx6cvu;False;True;t3_kx6cvu;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8a41g/;1610705839;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;They're arguably a more positive storyline imo.;False;False;;;;1610634365;;False;{};gj8a4c4;False;t3_kx3bdv;False;False;t1_gj89rdj;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8a4c4/;1610705844;13;True;False;anime;t5_2qh22;;0;[]; -[];;;TheChosen1108;;;[];;;;text;t2_nscpqpc;False;False;[];;"""Ah shit, here we go again""";False;False;;;;1610634400;;False;{};gj8a6ph;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8a6ph/;1610705880;1;True;False;anime;t5_2qh22;;0;[]; -[];;;extraspaghettisauce;;;[];;;;text;t2_47ixyqzn;False;False;[];;"DUDES I FOUND IT! HERE IS THE LINK! (IM NOT RICKROLLING , I SWEAR) - -https://youtu.be/FckkZihQUaU";False;False;;;;1610634401;;False;{};gj8a6ta;False;t3_kx3bdv;False;False;t1_gj7sgv4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8a6ta/;1610705882;21;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610634409;;False;{};gj8a7cx;False;t3_kx6cvu;False;True;t1_gj89rra;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8a7cx/;1610705890;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Hamahimana;;;[];;;;text;t2_10igbd;False;False;[];;"> full of filler arcs - -There was only 1 so far and that was just before this arc started.. so i dont know what you mean, but its far from full of them.";False;False;;;;1610634410;;False;{};gj8a7dz;False;t3_kx6cvu;False;True;t1_gj89b51;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8a7dz/;1610705891;1;True;False;anime;t5_2qh22;;0;[]; -[];;;revmun;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/revmun;light;text;t2_vfv3k;False;False;[];;Is this a finale or something? I'm not familiar with the series, but if someone could let me know the significance of this movie, it would be nice.;False;False;;;;1610634414;;False;{};gj8a7o2;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8a7o2/;1610705895;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Short Answer: No - -Long Answer: It's not that Black Clover is bad, it's that it takes a really long time to get good (40-ish episodes). And even when you get there, it's not to the level of a masterpiece, just a really good battle shounen that rivals the old big three of shounen anime. The godly animation that's posted here every now and then is most likely post-episode 100. - -There are more anime shows and movies worth your time if you don't only watch battle shounens.";False;True;;comment score below threshold;;1610634416;;False;{};gj8a7t6;False;t3_kx6cvu;False;False;t3_kx6cvu;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8a7t6/;1610705897;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"Copying my comment from another thread: - -For me it depends on its use in the show, theres ecchi shows I love and ones I hate. If it generally is pretty comedic or is there on top of already good qualities (writing/dialogue, comedy, animation) I can enjoy it. But if its just there to be there because its the only way to keep the viewer interested then I dont really like it. - -Monogatari and High School DxD are a couple I enjoyed the ecchi because there was more going on than just ecchi scenes (even if DxD has a lot of fan service, it still has a solid plot). - -Then I have seen some like Saekano I hated because it felt completely out of place. I found most of the dialogue pretty dull and unfunny, so it was like the studio was saying “we dont have much going on so here is a shot of Utaha’s thighs to keep you interested”. I mean the MCs cousin was basically only there for fan service in the first season. - -Then theres the “should’ve been a hentai” category of ecchi like Hybrid x Heart and Sister New Devil. These shouldve just been done as a hentai instead of trying to masquerade as an anime with a plot, would’ve given them a lot more freedom.";False;False;;;;1610634429;;False;{};gj8a8o7;False;t3_kx6kaz;False;False;t3_kx6kaz;/r/anime/comments/kx6kaz/horrible_fanservice_in_anime/gj8a8o7/;1610705911;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"> Dont know what plex is - -Generic database sites don't help OP since they're looking for a software solution in this case.";False;False;;;;1610634460;;False;{};gj8aaqs;False;t3_kx1vz2;False;True;t1_gj7luba;/r/anime/comments/kx1vz2/organizing_anime_for_plex/gj8aaqs/;1610705942;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;"If you don't like fanservice in fire force i suggest that you don't watch fire force. - -However some fanservice can be kinda in your face but usually after you get used to it you barely notice it anymore.";False;False;;;;1610634465;;1610636231.0;{};gj8ab2m;False;t3_kx6kaz;False;False;t3_kx6kaz;/r/anime/comments/kx6kaz/horrible_fanservice_in_anime/gj8ab2m/;1610705947;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Phatpharm269;;;[];;;;text;t2_17fhde;False;False;[];;"Advice that I got was: - -Get season one dubbed, you will recognize the VA. Too much screaming JP Asta can be intense early on - -Season 2, I was fine with subs - -The story is pretty good. Some great art. Characters are caricatures until fleshed out a bit. - -Seems like they stretch the content a lot by 'reaction scenes' and an intro, OP, ED and chibi comedy skit";False;False;;;;1610634470;;False;{};gj8abft;False;t3_kx6cvu;False;True;t3_kx6cvu;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8abft/;1610705953;0;True;False;anime;t5_2qh22;;0;[]; -[];;;luckyIrish42;;;[];;;;text;t2_3cvld4ih;False;False;[];;It also makes anime as a genre look like it is only for cringey neckbeards and virgins, a lot of people will miss out on some truly great stories because of the stigma that anime gets. First impressions last and if all anyone sees is tig ol bitties on some cartoons then chances are they won't take the whole scene seriously.;False;True;;comment score below threshold;;1610634472;;False;{};gj8abiv;False;t3_kx6kaz;False;True;t3_kx6kaz;/r/anime/comments/kx6kaz/horrible_fanservice_in_anime/gj8abiv/;1610705954;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;"I know that, but isn't that the moderators job to remove the submission. Are you a Moderator? If you are one, then please remove the submission, but if you aren't then as long as the moderators have no problem with it, neither does anybody - -Thanks For Your Concern,";False;False;;;;1610634476;;False;{};gj8abuj;True;t3_kx3sga;False;True;t1_gj83siw;/r/anime/comments/kx3sga/he_said_it_rezero_season_2_part_2/gj8abuj/;1610705959;0;True;False;anime;t5_2qh22;;0;[]; -[];;;calvinist-batman;;;[];;;;text;t2_5w2u8jc6;False;False;[];;sounds like we got a +1.0 to go.;False;False;;;;1610634489;;False;{};gj8acng;False;t3_kx2uao;False;False;t1_gj7t7yp;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj8acng/;1610705971;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;Ah ok, well it's your opinion .;False;False;;;;1610634492;;False;{};gj8acue;False;t3_kx6cvu;False;False;t1_gj8a7cx;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8acue/;1610705974;2;True;False;anime;t5_2qh22;;0;[]; -[];;;karneheni;;;[];;;;text;t2_4lmei044;False;False;[];;">most ridiculous naming convention - -IGIARI! - -Gintama seasons naming was more ridiculous";False;False;;;;1610634503;;False;{};gj8adke;False;t3_kx3bdv;False;False;t1_gj87k8a;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8adke/;1610705984;12;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;Opinions differ, don't they?;False;False;;;;1610634512;;False;{};gj8ae5v;False;t3_kx3bdv;False;True;t1_gj8a4c4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8ae5v/;1610705994;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;3.0+1.0 is the New Mutants of anime;False;False;;;;1610634530;;False;{};gj8afby;False;t3_kx3bdv;False;False;t1_gj7sgv4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8afby/;1610706011;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;">Pierrot adaptations are very low quality - -I don't remember naruto having bad fights. - -> Just check any BC episode and you will notice how bad the animation is. - -In the beginning but every now and then there's a sakuga clip posted on r/anime.";False;False;;;;1610634539;;False;{};gj8afzu;False;t3_kx6cvu;False;True;t1_gj89w3r;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8afzu/;1610706022;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;Yeah;False;False;;;;1610634544;;False;{};gj8agb6;False;t3_kx3bdv;False;False;t1_gj8ae5v;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8agb6/;1610706026;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610634565;;False;{};gj8ahob;False;t3_kx6kaz;False;False;t3_kx6kaz;/r/anime/comments/kx6kaz/horrible_fanservice_in_anime/gj8ahob/;1610706047;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MajinVegetaTheEvil;;;[];;;;text;t2_8t8hh9x;False;False;[];;I would switch to Emby. PLEX stores it's cataloging files in the system drive and that can get huge, if you have enough videos. Emby stores them in the same folder as the video.;False;False;;;;1610634575;;False;{};gj8aia7;False;t3_kx1vz2;False;True;t3_kx1vz2;/r/anime/comments/kx1vz2/organizing_anime_for_plex/gj8aia7/;1610706056;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rinascimentale;;;[];;;;text;t2_zqupj;False;False;[];;Well it looks like we won't have to worry about this OP falling behind the first one!;False;False;;;;1610634589;;False;{};gj8aj58;True;t3_kx6njt;False;True;t3_kx6njt;/r/anime/comments/kx6njt/jujutsu_kaisen_new_opening_vivid_vice_by_whoya/gj8aj58/;1610706069;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;They are bad in spending their budget, usually they use it for fancy openings, although Yona of the dawn was a good one from them;False;False;;;;1610634611;;False;{};gj8akku;False;t3_kx6cvu;False;True;t1_gj89w3r;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8akku/;1610706091;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AwakenedTraveler;;;[];;;;text;t2_52rrkzsw;False;False;[];;"Cheers, I will try that out! -A separate library seems like a good idea as well indeed.";False;False;;;;1610634620;;False;{};gj8al6f;True;t3_kx1vz2;False;True;t1_gj7yi20;/r/anime/comments/kx1vz2/organizing_anime_for_plex/gj8al6f/;1610706100;1;True;False;anime;t5_2qh22;;0;[]; -[];;;keithohara;;;[];;;;text;t2_gbzf7q;False;True;[];;Unmasked Gojo!!!!;False;False;;;;1610634627;;False;{};gj8almi;False;t3_kx6njt;False;True;t3_kx6njt;/r/anime/comments/kx6njt/jujutsu_kaisen_new_opening_vivid_vice_by_whoya/gj8almi/;1610706106;5;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;Thanks man;False;False;;;;1610634678;;False;{};gj8ap57;False;t3_kx3bdv;False;False;t1_gj8agb6;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8ap57/;1610706160;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;Ah yeah it has a really low amount of filler actually.;False;False;;;;1610634689;;False;{};gj8apwm;False;t3_kx6cvu;False;True;t1_gj89b51;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8apwm/;1610706171;0;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;If I add TPN and ReZero in there too, it becomes my list lol;False;False;;;;1610634700;;False;{};gj8aqpb;False;t3_kx5ma0;False;True;t1_gj84nqf;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj8aqpb/;1610706183;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ImperialLump;;;[];;;;text;t2_gw341;False;False;[];;IGIAR? What is this an acronym?;False;False;;;;1610634704;;False;{};gj8aqvy;False;t3_kx3bdv;False;False;t1_gj8adke;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8aqvy/;1610706186;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Etereke32;;;[];;;;text;t2_11qhl2;False;False;[];;"I'm curious, how do they ""fixed troll votes being counted""? How can they tell that a vote (not a review, just a vote) is troll?";False;False;;;;1610634708;;False;{};gj8ar4x;False;t3_kx4aj1;False;True;t1_gj89w81;/r/anime/comments/kx4aj1/can_aot_dethrone_fmab/gj8ar4x/;1610706190;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"To be fair most anime nowadays are 12 episodes long so it's probably enough to see if it's worth the time for some people. - -But on the other hand if someone judged steins;gate off the first 13 episodes, you'd clown on them because it relies on the slow start to just bombard with you the best time-travelling thriller in anime.";False;False;;;;1610634719;;False;{};gj8arva;False;t3_kx6cvu;False;False;t1_gj89rra;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8arva/;1610706200;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Phatpharm269;;;[];;;;text;t2_17fhde;False;False;[];;Getting S1 dub fixes the initial seiyuu issues imho. I never watch dubs, but was recommended to in this instance;False;False;;;;1610634719;;False;{};gj8arwo;False;t3_kx6cvu;False;True;t1_gj89fnb;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8arwo/;1610706201;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ignore_User_Name;;MAL;[];;https://myanimelist.net/profile/Ignore_User_Name;dark;text;t2_6sox1;False;False;[];;"Probably. - -Basically, rebuild movies are.. a rebuild of the original series (a new version that starts the same but eventually changed into a completely different story). - -This movie should be the conclusion of this new version but [spoilers](/s ""the repeat sign in the promos point to a maybe an endless loop so could not be a completely conclusive ending""). So most likely it is but still up in the air until it is actually released.";False;False;;;;1610634732;;False;{};gj8asrd;False;t3_kx3bdv;False;False;t1_gj8a7o2;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8asrd/;1610706214;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;Naruto had large quality drops, and black clover is very inconsistent. Now, that goes to show that animation isnt everything, and a good story can do a lot.;False;False;;;;1610634739;;False;{};gj8at7x;False;t3_kx6cvu;False;True;t1_gj8afzu;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8at7x/;1610706220;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;As the other user suggested I also put my anime in a separate library that uses [HamaTV](https://github.com/ZeroQI/Hama.bundle), though I have [this MyAnimeList agent](https://fribbtastic.net/projects/myanimelistagent/) as a backup.;False;False;;;;1610634740;;False;{};gj8at9m;False;t3_kx1vz2;False;True;t3_kx1vz2;/r/anime/comments/kx1vz2/organizing_anime_for_plex/gj8at9m/;1610706221;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PeterGriffenttv;;;[];;;;text;t2_5gvxyq1r;False;False;[];;So is this most likely the last of the rebuilds? And is this the end of the evangelion franchise?;False;False;;;;1610634748;;False;{};gj8ats6;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8ats6/;1610706229;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarsUnseen;;HB;[];;https://kitsu.io/users/ScarsUnseen;dark;text;t2_9beoq;False;False;[];;"The Tsukihime remake is also supposed to come out this year. We asked for too much, and the world is saying ""no.""";False;False;;;;1610634756;;False;{};gj8aubb;False;t3_kx2uao;False;False;t1_gj7qi4p;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj8aubb/;1610706237;50;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;He means animation quality, and not only for BC but Naruto also have this problem, just search it.;False;False;;;;1610634759;;False;{};gj8aujj;False;t3_kx6cvu;False;True;t1_gj8afzu;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8aujj/;1610706240;2;True;False;anime;t5_2qh22;;0;[]; -[];;;River_sounds;;;[];;;;text;t2_y4vd1;False;False;[];;"No problem. Wait for the promised time. - -[](#gendo-pls)";False;False;;;;1610634760;;1610635165.0;{};gj8aukk;False;t3_kx2uao;False;False;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj8aukk/;1610706240;9;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;Yeah if my first impression of live action movies was some random porn movie obviously I wouldn't take the whole live action movie scene seriously.;False;False;;;;1610634763;;False;{};gj8aut1;False;t3_kx6kaz;False;False;t1_gj8abiv;/r/anime/comments/kx6kaz/horrible_fanservice_in_anime/gj8aut1/;1610706244;4;True;False;anime;t5_2qh22;;0;[]; -[];;;revmun;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/revmun;light;text;t2_vfv3k;False;False;[];;If I wanted to get into the series how would I go about it?;False;False;;;;1610634777;;False;{};gj8avnw;False;t3_kx3bdv;False;True;t1_gj8asrd;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8avnw/;1610706257;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pamagiclol;;;[];;;;text;t2_5dmvf1ev;False;False;[];;"Some could call it bad writing ;)";False;False;;;;1610634786;;False;{};gj8aw8f;False;t3_kx3bdv;False;True;t1_gj86owp;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8aw8f/;1610706265;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;Ah, I love most fanservice;False;False;;;;1610634844;;False;{};gj8b04q;False;t3_kx6kaz;False;False;t3_kx6kaz;/r/anime/comments/kx6kaz/horrible_fanservice_in_anime/gj8b04q/;1610706324;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinji-_-Ikari;;;[];;;;text;t2_96w1o4eu;False;False;[];;"Girls : He didnt cry in titanic. Do boys even hv feelings. - -**Evangelion 3.0+10 gonna mark the end of the series after 2 decades** - -Boys : 🗿";False;False;;;;1610634851;;False;{};gj8b0of;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8b0of/;1610706332;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"The eternal paradox of people, anime is cartoon for kids or dirty stuff for degenerates - -Some countries are very weird in what they think about anime, depending where you live the opinion is different";False;False;;;;1610634854;;False;{};gj8b0vs;False;t3_kx6kaz;False;False;t1_gj8abiv;/r/anime/comments/kx6kaz/horrible_fanservice_in_anime/gj8b0vs/;1610706335;6;True;False;anime;t5_2qh22;;0;[]; -[];;;needle1;;;[];;;;text;t2_bdfyk;False;False;[];;Igi Ari (異議あり), which is what is shouted in place of “Objection!” in the original Japanese version of the Phoenix Wright games.;False;False;;;;1610634864;;False;{};gj8b1l8;False;t3_kx3bdv;False;False;t1_gj8aqvy;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8b1l8/;1610706346;8;True;False;anime;t5_2qh22;;0;[]; -[];;;keithohara;;;[];;;;text;t2_gbzf7q;False;True;[];;They won't share libraries because that would make one of the sites redundant;False;False;;;;1610634874;;False;{};gj8b29i;False;t3_kx6q54;False;True;t3_kx6q54;/r/anime/comments/kx6q54/crunchyrolls_disappointing_lineup_and_funimations/gj8b29i/;1610706356;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Good-Recommendation1;;;[];;;;text;t2_7cyun0mv;False;False;[];;what I'm asian lol. I'm being critical. Not being western. I don't really need it to work I just like putting my opinions online because this is reddit after all it's where you share your opinions without real backlash.;False;False;;;;1610634878;;False;{};gj8b2jb;True;t3_kx6kaz;False;True;t1_gj8ahob;/r/anime/comments/kx6kaz/horrible_fanservice_in_anime/gj8b2jb/;1610706360;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;">The godly animation that's posted here every now and then is most likely post-episode 100. - -It never had a godly animation, i mean if BC has godly animation what about Fate HF or UBW";False;False;;;;1610634933;;False;{};gj8b67g;False;t3_kx6cvu;False;True;t1_gj8a7t6;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8b67g/;1610706416;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lichlark;;;[];;;;text;t2_3zlt3v9j;False;False;[];;I mean, if they finished it and delayed it...as well as released the poster in English. It seems like a rather polite move from the studio to delay it world a simultaneous release globally;False;False;;;;1610634942;;False;{};gj8b6ul;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8b6ul/;1610706426;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KamikazeMender;;;[];;;;text;t2_aq1gm;False;False;[];;"Black Clover is your standard shounen but it's definitely good. - -- The side characters get development. -- The world building is interesting -- FMC isn't useless if anything she really well develop -- Has the standard cliches for shounen but has a twist for them. -- MC is enjoyable - -There are some cons tho like the MC voice in the beginning but that's cause the VA was extremely new, pacing was a little slow but it picked up quick, and animation was 50/50 cause of the horrible schedule animators had. - -I say you should watch it and form your own opinion. Imo it's definitely worth it and the story is really top notch";False;False;;;;1610634962;;False;{};gj8b875;False;t3_kx6cvu;False;True;t3_kx6cvu;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8b875/;1610706446;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Hellish_Gaming;;;[];;;;text;t2_9hxe2jlv;False;False;[];;That was hilarious;False;False;;;;1610634964;;False;{};gj8b8cr;False;t3_kx3bdv;False;False;t1_gj8a6ta;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8b8cr/;1610706448;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Good-Recommendation1;;;[];;;;text;t2_7cyun0mv;False;False;[];;lmao yeah. But it's just my opinion. I stopped watching it anyway but it's the opposite of what the authors are trying to do. They're not trying to push people away and have devoted fans. But if they can't make us take them seriously then they won't have devoted fans who buy their merchandise and whatnot.;False;False;;;;1610634971;;False;{};gj8b8v0;True;t3_kx6kaz;False;True;t1_gj8ab2m;/r/anime/comments/kx6kaz/horrible_fanservice_in_anime/gj8b8v0/;1610706456;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;Not pierrot adaptatons, 12 episode anime are seasonal, pierrot policy is long running show.;False;False;;;;1610634977;;1610635307.0;{};gj8b98t;False;t3_kx6cvu;False;True;t1_gj8arva;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8b98t/;1610706463;0;True;False;anime;t5_2qh22;;0;[]; -[];;;IncaseAce;;;[];;;;text;t2_bi5xl;False;False;[];;Those PVs are teasers it’s all in CG 😩;False;False;;;;1610634988;;False;{};gj8ba16;False;t3_kx3bdv;False;False;t1_gj81855;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8ba16/;1610706474;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Infamously_Unknown;;;[];;;;text;t2_80m1v;False;False;[];;"> they don't pierce through it is because that would possibly kill Annie in the process - -I don't buy this point. The shell is big enough to target just a part of it and she'd survive if they crushed her legs, maybe even more.";False;False;;;;1610635002;;False;{};gj8baws;False;t3_kx2twh;False;False;t1_gj7r4wp;/r/anime/comments/kx2twh/attack_on_titan_question/gj8baws/;1610706487;3;True;False;anime;t5_2qh22;;0;[]; -[];;;UMPIN;;;[];;;;text;t2_cl9xp;False;False;[];;The original ending was actually a happy ending... Sorta. (Both in the original anime and EoE);False;False;;;;1610635039;;False;{};gj8bdju;False;t3_kx3bdv;False;False;t1_gj7x5mz;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8bdju/;1610706527;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610635052;;False;{};gj8bedd;False;t3_kx6njt;False;True;t3_kx6njt;/r/anime/comments/kx6njt/jujutsu_kaisen_new_opening_vivid_vice_by_whoya/gj8bedd/;1610706539;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KamikazeMender;;;[];;;;text;t2_aq1gm;False;False;[];;That's not how it works. Animation all depends on a good schedule not cause of a budget;False;False;;;;1610635081;;False;{};gj8bgbn;False;t3_kx6cvu;False;True;t1_gj8akku;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8bgbn/;1610706569;3;True;False;anime;t5_2qh22;;0;[]; -[];;;renatocpr;;;[];;;;text;t2_d8c43;False;False;[];;How are they supposed to explain anything to him when he immediately fucks off with Mark.09 as soon as they actually have time to tell him anything?;False;False;;;;1610635087;;False;{};gj8bgou;False;t3_kx3bdv;False;True;t1_gj86owp;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8bgou/;1610706574;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Good-Recommendation1;;;[];;;;text;t2_7cyun0mv;False;False;[];;"Also saying ""If you don't like it don't watch it"" Is pretty dumb. I'm going to criticize it because that's how we get them to change and make anime entertaining. If enough people speak then they might listen. Or at least the ones in the future will. Or we're just having fun writing our opinions.";False;False;;;;1610635111;;False;{};gj8bibi;True;t3_kx6kaz;False;True;t1_gj8b8v0;/r/anime/comments/kx6kaz/horrible_fanservice_in_anime/gj8bibi/;1610706598;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;Wait you're telling me they didn't make Akudama Drive?;False;False;;;;1610635113;;False;{};gj8bigy;False;t3_kx6cvu;False;True;t1_gj8b98t;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8bigy/;1610706601;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fro99ywo99y1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Frat_Snap;light;text;t2_tailh;False;False;[];;"> this is reddit after all it's where you share your opinions without real backlash - -lol";False;False;;;;1610635130;;False;{};gj8bjp6;False;t3_kx6kaz;False;True;t1_gj8b2jb;/r/anime/comments/kx6kaz/horrible_fanservice_in_anime/gj8bjp6/;1610706619;3;True;False;anime;t5_2qh22;;0;[]; -[];;;animefangrant62;;;[];;;;text;t2_f063t;False;False;[];;"NGE was always a series about how people's own emotions prevent them from connecting with others. So it's no surprise those same characters are conflicted in how they should treat Shinji when he willingly started an apocalypse (not that he knew the ramifications of his actions, but in their eyes it's all the same) killing most of their friends and family. Not to mention the fact that he was fused within an Angel for 10 years (thus the discussion of him potentially being corrupted) and they have been stuck inside a tin can the whole time waiting for Shinjis father to try to end the world again. In their eyes, Shinji is one of the direct causes for one of the most traumatic times in their life's. His intent in the matter doesn't negate the fact that his actions lead to so much pain and suffering. - -They have a right to be paranoid, hateful and conflicted about how to treat him. It sucks but if they acted like nothing happened that's just bad writing (in my opinion). - -It's frustrating because we see it entirely from his perspective. It's meant to frustrate and confuse the audience as NGE's main focus is on the feelings and perspective of Shinji.";False;False;;;;1610635132;;False;{};gj8bju8;False;t3_kx3bdv;False;False;t1_gj86owp;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8bju8/;1610706622;103;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;Ah yeah i was mostly joking about that one, but the openings are usually fancier than the actual animation.;False;False;;;;1610635145;;False;{};gj8bkqi;False;t3_kx6cvu;False;True;t1_gj8bgbn;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8bkqi/;1610706635;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ikmal1997;;;[];;;;text;t2_80tamrb;False;False;[];;Wish they would just sell the distribution rights to Netflix or amazon;False;False;;;;1610635164;;False;{};gj8bm3a;False;t3_kx2uao;False;True;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj8bm3a/;1610706656;0;True;False;anime;t5_2qh22;;0;[]; -[];;;JeanKB;;;[];;;;text;t2_nudpu;False;False;[];;"The average Naruto episode had awful quality, what are you talking about? - -Also, what ""sakuga"" are you talking about? [Because even the scenes they try to hype up looks like shit](https://www.youtube.com/watch?v=LlrdREKKeio)";False;False;;;;1610635170;;False;{};gj8bmgf;False;t3_kx6cvu;False;True;t1_gj8afzu;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8bmgf/;1610706662;0;True;False;anime;t5_2qh22;;0;[]; -[];;;MtnMaiden;;;[];;;;text;t2_9tvca;False;False;[];;Over her dead corpse probably;False;False;;;;1610635203;;False;{};gj8boqi;False;t3_kx3bdv;False;False;t1_gj82bs7;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8boqi/;1610706697;1;True;False;anime;t5_2qh22;;0;[]; -[];;;isabella73584;;;[];;;;text;t2_5g6ltoi8;False;False;[];;Yeah it was annoying after the split since the Funimation app was trash. I’m more annoyed by how many good titles are exclusive to other streaming services, none at all, or get altered. (Looking at you, Netflix);False;False;;;;1610635224;;False;{};gj8bq8t;False;t3_kx6q54;False;True;t3_kx6q54;/r/anime/comments/kx6q54/crunchyrolls_disappointing_lineup_and_funimations/gj8bq8t/;1610706719;1;True;False;anime;t5_2qh22;;0;[];True -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;I wish i had a list so small;False;False;;;;1610635227;;False;{};gj8bqif;False;t3_kx6s7r;False;False;t3_kx6s7r;/r/anime/comments/kx6s7r/i_already_know_this_seasons_gonna_be_ac_god_tier/gj8bqif/;1610706723;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Good-Recommendation1;;;[];;;;text;t2_7cyun0mv;False;False;[];;People will always hate you for your opinions so I know to keep my mouth shut in real life but on the internet it's the wild west.;False;False;;;;1610635251;;False;{};gj8bs6z;True;t3_kx6kaz;False;True;t1_gj8bjp6;/r/anime/comments/kx6kaz/horrible_fanservice_in_anime/gj8bs6z/;1610706751;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PotatEXTomatEX;;;[];;;;text;t2_tdgrv;False;False;[];;Assuming the other person is an Anime fan, better not do that. A LOT of people here seem to always try to find reasons not to watch anime. Better not give them more.;False;False;;;;1610635273;;False;{};gj8btp6;False;t3_kx3bdv;False;False;t1_gj823mi;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8btp6/;1610706775;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;Well not all of their shows are like this ( my bad ), but BC and Naruto are both long running shows, not seasonal 12 episode ones, also Akudama is an anime original, it was easier to work on it.;False;False;;;;1610635274;;False;{};gj8btte;False;t3_kx6cvu;False;True;t1_gj8bigy;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8btte/;1610706776;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UGamer81;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/UGamer81;light;text;t2_11brkw;False;False;[];;"A good number of sequels to things that Crunchyroll doesn't have right now mostly seem to be Aniplex titles, and as we know, that joint venture is between Funimation and Aniplex, so I take it that Funi gets first dibs. I'm surprised that CR was able to even get The Misfit of Demon King Academy in that respect. Log Horizon also happened to be Sentai Filmworks as well. - ->Given the recent history of series being available both platforms, I figured that after the acquisition that would be even more common. Much like how Doctor Stone Season 2 (and a lot of the other big series this season) is available on both platforms. - -Seeing as the acquisition was *just* approved, it's going to be a long time for everything to be *finalized*, potentially taking up to a year, or two even. No one really knows what's going to happen with Crunchyroll and Funimation and whether they'll continue to co-exist or if one of the brands dies off or not. Dr. STONE, Quints, Tensura, etc. all happen to be Funimation/Crunchyroll co-licenses, so those preexisting agreements are still in place (where Funi has the dub/CR has the sub). - -But yeah, hopefully we get some kind of news by the end of the year.";False;False;;;;1610635276;;False;{};gj8btx7;False;t3_kx6q54;False;False;t3_kx6q54;/r/anime/comments/kx6q54/crunchyrolls_disappointing_lineup_and_funimations/gj8btx7/;1610706778;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610635286;;False;{};gj8bum6;False;t3_kx6cvu;False;True;t1_gj8a7t6;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8bum6/;1610706789;0;True;False;anime;t5_2qh22;;0;[]; -[];;;OfficialTomCruise;;;[];;;;text;t2_11cv57;False;False;[];;"For previous seasons I barely logged into Funimation, always on Crunchyroll. Now it's like I'm barely logged into Crunchy lol. At least it makes the Funi sub worthwhile. - -Although I feel like they might want to try and double dip. If they put everything on Funimation then there's no need for me to get a Crunchyroll sub. If they put everything on Crunchy then there's no reason for a Funimation sub. I'm surprised they're not distributing them between both services more than they are.";False;False;;;;1610635292;;False;{};gj8bv0s;False;t3_kx6q54;False;True;t3_kx6q54;/r/anime/comments/kx6q54/crunchyrolls_disappointing_lineup_and_funimations/gj8bv0s/;1610706796;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Slifer13xx;;MAL;[];;http://myanimelist.net/animelist/Slifer13xx;dark;text;t2_irntz;False;False;[];;Clannad was the first anime to make me cry and was the only one for the longest time. I remember that summer fondly.;False;False;;;;1610635317;;False;{};gj8bwta;False;t3_kx63zp;False;True;t3_kx63zp;/r/anime/comments/kx63zp/spoiler_clannad_after_story_im_legit_crying_right/gj8bwta/;1610706827;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SunnyWynter;;;[];;;;text;t2_3zxj9jrv;False;False;[];;This feels like some elaborate performance art at this point.;False;False;;;;1610635324;;False;{};gj8bxc6;False;t3_kx3bdv;False;False;t1_gj7sgv4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8bxc6/;1610706835;7;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"https://old.reddit.com/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj3tk9p/ - -[](#juice1)";False;False;;;;1610635361;;False;{};gj8bzys;False;t3_kx6q54;False;True;t3_kx6q54;/r/anime/comments/kx6q54/crunchyrolls_disappointing_lineup_and_funimations/gj8bzys/;1610706878;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;99.99% will never happen;False;False;;;;1610635371;;False;{};gj8c0p6;False;t3_kx6ua5;False;False;t3_kx6ua5;/r/anime/comments/kx6ua5/is_there_any_sign_of_the_devil_is_parttimer/gj8c0p6/;1610706890;11;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610635371;;1610635848.0;{};gj8c0pe;False;t3_kx6njt;False;True;t3_kx6njt;/r/anime/comments/kx6njt/jujutsu_kaisen_new_opening_vivid_vice_by_whoya/gj8c0pe/;1610706890;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Celestial_Fox;;;[];;;;text;t2_z3fru;False;False;[];;I can't want for Evangelion 99.34 + .66: It's Too Deep and Mature For You To Understand We Simply Cannot Stop Milking It.;False;True;;comment score below threshold;;1610635380;;False;{};gj8c1ae;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8c1ae/;1610706899;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;Nope no sign. The LNs ended too so it's even less likely;False;False;;;;1610635384;;False;{};gj8c1kb;False;t3_kx6ua5;False;False;t3_kx6ua5;/r/anime/comments/kx6ua5/is_there_any_sign_of_the_devil_is_parttimer/gj8c1kb/;1610706903;9;True;False;anime;t5_2qh22;;0;[]; -[];;;kuddlesworth9419;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kuddlesworth;light;text;t2_btage;False;False;[];;Did we watch the same show?;False;False;;;;1610635417;;False;{};gj8c3wo;False;t3_kx3bdv;False;True;t1_gj8bdju;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8c3wo/;1610706940;3;True;False;anime;t5_2qh22;;0;[]; -[];;;prrg;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/prrg/;light;text;t2_j0167;False;False;[];;"- Neon Genesis Evangelion (1997 series) -- End of Evangelion (last 2 episodes of the series, frequently packaged as a movie) -- Evangelion 1.11, 2.22, and 3.33 (the rebuild films to which this is a sequel) - -The original series is on Netflix and the rebuild films are on Funimation I think. For the best experience you probably want to pirate though. Netflix especially cuts the ED song out due to licensing issues and has some questionable translation choices.";False;False;;;;1610635427;;1610636680.0;{};gj8c4nf;False;t3_kx3bdv;False;False;t1_gj8avnw;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8c4nf/;1610706952;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MulletPower;;;[];;;;text;t2_54h1r;False;False;[];;"If you read the press release of the acquisition that I linked, that is the eventual idea: - -> Until the deal closes, Crunchyroll and Funimation will continue to operate independently - -So eventually they will not be independent. Which probably means the will merge services. - -Also, like I said in the post, there is already a ton of series that are streamed on both platforms. So I don't think it's too much of a stretch to think that it would be more common after the acquisition.";False;False;;;;1610635471;;False;{};gj8c7qu;True;t3_kx6q54;False;True;t1_gj8b29i;/r/anime/comments/kx6q54/crunchyrolls_disappointing_lineup_and_funimations/gj8c7qu/;1610706999;2;True;False;anime;t5_2qh22;;0;[]; -[];;;revmun;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/revmun;light;text;t2_vfv3k;False;False;[];;I’m an anime pro, being a pirate is the only way I know. Thanks, I appreciate it!;False;False;;;;1610635482;;False;{};gj8c8hm;False;t3_kx3bdv;False;True;t1_gj8c4nf;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8c8hm/;1610707011;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"HOLY SHIT! This is gold, very rare for a anime to nail both ops - -Edit: I am more impressed that none of those shots from PV 4 are there, so we are in for a ride";False;False;;;;1610635498;;1610637735.0;{};gj8c9nx;False;t3_kx6njt;False;True;t3_kx6njt;/r/anime/comments/kx6njt/jujutsu_kaisen_new_opening_vivid_vice_by_whoya/gj8c9nx/;1610707030;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Maurodax;;;[];;;;text;t2_2a8wos3x;False;False;[];;"Wall of text that'd make Trump proud. - - -Having said that, I feel it depends on the situation. -Take Highschool DxD for example, it's entire premise starts out being all about fanservice and then they add tons of lore. - -But yeah if it is a serious action scene ruined by fanservice it's different case (looking at you Fire Force). That's just cringy and ruins my immersion.";False;False;;;;1610635526;;False;{};gj8cbn5;False;t3_kx6kaz;False;True;t3_kx6kaz;/r/anime/comments/kx6kaz/horrible_fanservice_in_anime/gj8cbn5/;1610707061;2;True;False;anime;t5_2qh22;;0;[]; -[];;;shadowdra126;;;[];;;;text;t2_7tb54;False;True;[];;"So when is this coming out -And when I can watch it in the US";False;False;;;;1610635559;;False;{};gj8cdzx;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8cdzx/;1610707099;0;True;False;anime;t5_2qh22;;0;[]; -[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 1800, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 31, 'days_of_premium': 31, 'description': 'Gives 700 Reddit Coins and a month of r/lounge access and ad-free browsing.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/platinum_512.png', 'icon_width': 512, 'id': 'gid_3', 'is_enabled': True, 'is_new': False, 'name': 'Platinum', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/platinum_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/platinum_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/platinum_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/platinum_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/platinum_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/platinum_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/platinum_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/platinum_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/platinum_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/platinum_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/platinum_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}];;;Orgell_Evaan;;;[];;;;text;t2_afg3u;False;True;[];;"""Get in the fucking theater, Shinji.""";False;False;;;;1610635683;;False;{'gid_3': 1};gj8cmyc;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8cmyc/;1610707242;145;True;False;anime;t5_2qh22;;1;[]; -[];;;NewYearDodo;;;[];;;;text;t2_16wkxf;False;False;[];;I don't believe OP ever suggested those shows were similar. Just gave examples of shows they enjoyed!;False;False;;;;1610635689;;False;{};gj8cnbs;False;t3_kx21oe;False;True;t1_gj7vqn2;/r/anime/comments/kx21oe/pls_help_anime_suggestions_are_needed/gj8cnbs/;1610707248;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zadkrod;;;[];;;;text;t2_350owoit;False;False;[];;I should really watch Evangelion. But all the new Anime keeps pushing it back in my schedule.;False;False;;;;1610635704;;False;{};gj8cofu;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8cofu/;1610707265;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;You honestly don’t want a season 2 seeing how it ended in the light novels. Imo, leaving it as another sakurasou situation is the best thing for it.;False;False;;;;1610635710;;1610635953.0;{};gj8cotx;False;t3_kx6ua5;False;False;t3_kx6ua5;/r/anime/comments/kx6ua5/is_there_any_sign_of_the_devil_is_parttimer/gj8cotx/;1610707270;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Garlicbread10;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;ereh;dark;text;t2_8zn7f5o;False;False;[];;What an OP. The visuals are sick too;False;False;;;;1610635712;;False;{};gj8cp0j;False;t3_kx6njt;False;True;t3_kx6njt;/r/anime/comments/kx6njt/jujutsu_kaisen_new_opening_vivid_vice_by_whoya/gj8cp0j/;1610707273;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ctrl_alt-account_del;;;[];;;;text;t2_wnd079s;False;False;[];;After the ending, I'm not so sure I'd want more.;False;False;;;;1610635712;;False;{};gj8cp1z;False;t3_kx6ua5;False;False;t3_kx6ua5;/r/anime/comments/kx6ua5/is_there_any_sign_of_the_devil_is_parttimer/gj8cp1z/;1610707273;10;True;False;anime;t5_2qh22;;0;[]; -[];;;dahSweep;;;[];;;;text;t2_m8mnk;False;False;[];;They literally place him in a cell, he asks what's going on and no one tells him anything. They had PLENTY of time before anyone showed up. Instead Asuka just stands there all edgy with her stupid looking eyepatch.;False;False;;;;1610635750;;False;{};gj8crsq;False;t3_kx3bdv;False;False;t1_gj8bgou;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8crsq/;1610707315;31;True;False;anime;t5_2qh22;;0;[]; -[];;;MulletPower;;;[];;;;text;t2_54h1r;False;False;[];;"Maybe you should read my post before posting this. My complaint isn't ""crunchyroll got nothing"". - -My complaint was 3 series that were on Crunchyroll previously, are not there for their sequel seasons. Which is extremely high and unexpectant given the acquisition .";False;False;;;;1610635757;;False;{};gj8csbc;True;t3_kx6q54;False;True;t1_gj8bzys;/r/anime/comments/kx6q54/crunchyrolls_disappointing_lineup_and_funimations/gj8csbc/;1610707323;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"By far my favourite first episode is from AoT. - -The rest of the standouts I can think of rn - -• Re Zero - -• Shouwa Genroku Rakugo Shinjuu - -• Erased - -• Death Note - -• NGNL - -• Spice and Wolf - -• Bunny Girl Senpai - -• Usagi Drop - -• Zankyou no Terror - -• Mushoku Tensei - -• Wonder Egg Priority - -• Horimiya - -• TPN";False;False;;;;1610635760;;1610637187.0;{};gj8cshu;False;t3_kx5ma0;False;True;t3_kx5ma0;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj8cshu/;1610707326;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kurosaki1990;;MAL;[];;http://myanimelist.net/animelist/afroboy;dark;text;t2_fuh2t;False;False;[];;I mean the last movie i couldn't understand a shit on what is actually happening.;False;False;;;;1610635792;;False;{};gj8cuue;False;t3_kx3bdv;False;False;t1_gj80u1s;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8cuue/;1610707361;113;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"[Reddit post 1](https://www.reddit.com/r/anime/comments/jgls9z/one_of_the_most_epic_anime_scenes_black_clover/) - -[Reddit post 2](https://www.reddit.com/r/anime/comments/jwd23r/an_incredible_cut_by_riooo_a_filipino_animator_on/) - -There's more, but I can't be bothered to find them.";False;False;;;;1610635796;;False;{};gj8cv50;False;t3_kx6cvu;False;True;t1_gj8bmgf;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8cv50/;1610707366;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hyper_Oats;;;[];;;;text;t2_tef85;False;False;[];;"Will we finally know what Mari's role in these movies is? -Because honestly I just feel that for a cumulative 15 minutes each film, she's just..there.";False;False;;;;1610635829;;False;{};gj8cxk2;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8cxk2/;1610707404;62;True;False;anime;t5_2qh22;;0;[]; -[];;;dahSweep;;;[];;;;text;t2_m8mnk;False;False;[];;I get their side of it, but when Shinji literally knows NOTHING (when he started the third impact he was not really aware of anything I would say, just pure emotions took over) they have to fill him in. They can be as mad as they want, but if they don't explain WHY Shinji must not pilot an Eva again, maybe he would understand. Instead, they tell him he can't, don't say why and then get upset when he gets frustrated and leaves. Well no shit, of course he's going to leave when he's treated that way.;False;False;;;;1610635948;;False;{};gj8d6ay;False;t3_kx3bdv;False;False;t1_gj8bju8;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8d6ay/;1610707537;54;True;False;anime;t5_2qh22;;0;[]; -[];;;karneheni;;;[];;;;text;t2_4lmei044;False;False;[];;\*angry downvoters noises\*;False;False;;;;1610636008;;False;{};gj8daoi;False;t3_kx2twh;False;True;t1_gj7ses1;/r/anime/comments/kx2twh/attack_on_titan_question/gj8daoi/;1610707604;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sir-Odin;;;[];;;;text;t2_909yanql;False;False;[];;Goes along the big 3.;False;False;;;;1610636075;;False;{};gj8dfkt;False;t3_kx6cvu;False;True;t3_kx6cvu;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8dfkt/;1610707678;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shoeswireless;;;[];;;;text;t2_7dk8f88j;False;False;[];;It's like we are teased each year that it is coming;False;False;;;;1610636088;;False;{};gj8dgi1;False;t3_kx3bdv;False;False;t1_gj7xssd;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8dgi1/;1610707691;11;True;False;anime;t5_2qh22;;0;[]; -[];;;DominelKira;;;[];;;;text;t2_3s08wif3;False;False;[];;9 fucking years , holy shit.;False;False;;;;1610636098;;False;{};gj8dh74;False;t3_kx3bdv;False;False;t1_gj85135;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8dh74/;1610707701;12;True;False;anime;t5_2qh22;;0;[]; -[];;;crymothy;;;[];;;;text;t2_5wwzo3mb;False;False;[];;What exact date?;False;False;;;;1610636111;;False;{};gj8di6w;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8di6w/;1610707715;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MulletPower;;;[];;;;text;t2_54h1r;False;False;[];;"> Seeing as the acquisition was just approved, it's going to be a long time for everything to be finalized, potentially taking up to a year, or two even. - -Which makes it even more shocking that they would suddenly lose 3 sequel seasons. - -> A good number of sequels to things that Crunchyroll doesn't have right now mostly seem to be Aniplex titles, and as we know, that joint venture is between Funimation and Aniplex, so I take it that Funi gets first dibs. I'm surprised that CR was able to even get The Misfit of Demon King Academy in that respect. Log Horizon also happened to be Sentai Filmworks as well. - -Seems like a stretch to me. I mean even in your post you've already found multiple exceptions.";False;False;;;;1610636129;;False;{};gj8djh7;True;t3_kx6q54;False;True;t1_gj8btx7;/r/anime/comments/kx6q54/crunchyrolls_disappointing_lineup_and_funimations/gj8djh7/;1610707735;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shadebedlam;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Shadebedlam;light;text;t2_fl41u;False;False;[];;"I also used to hate the third movie especially coming after the second one I really liked but then years later I rewatched and thought about it and I actually started to like it. I think because of this: - -In a lot of movies/shows you see these really epic battles of large scale and it is all amazing but very rarely you get to see the consequences of those battles and how does the world look like after that? Is there any animosity or anxiety left in the survivors? Even if the battle is fought with good intentions was it really worth it? - -So I like the third movie because it explores these feelings which I rarely get to see (of course there are some movies/shows that do the same but not that many). Anyone can make an epic story/battle just add music to it and say it threatens the whole world but rarely you get to see what happens after or maybe only very shortly. In terms of the actual story, it is not the greatest of course and if you dislike Shinji because what he does turns out to be wrong and of course he SHOULD have seen that coming, even though at that point he did not know how things would turn out, I mean that is fine I would not say it is the best thing to hate the movie for and I also disliked that in the past, but now I try to see past it. Plus the movie has amazing visuals and music so that's also a plus.";False;False;;;;1610636152;;False;{};gj8dl55;False;t3_kx3bdv;False;False;t1_gj86owp;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8dl55/;1610707761;23;True;False;anime;t5_2qh22;;0;[]; -[];;;nikigreensky;;;[];;;;text;t2_4hnxg22n;False;False;[];;Wow;False;False;;;;1610636162;;False;{};gj8dlxp;False;t3_kx6njt;False;True;t3_kx6njt;/r/anime/comments/kx6njt/jujutsu_kaisen_new_opening_vivid_vice_by_whoya/gj8dlxp/;1610707773;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DominelKira;;;[];;;;text;t2_3s08wif3;False;False;[];;"There hasn't been a new Eva related content for the past 9 years what do you mean ""milking it"".";False;False;;;;1610636186;;False;{};gj8dnp8;False;t3_kx3bdv;False;False;t1_gj8c1ae;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8dnp8/;1610707801;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarRufus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ScarRufus;light;text;t2_2u0vy1pk;False;False;[];;Me too I am watching like 12 this season... Too much sequels. I think I will let the new ones to watch later in one go.;False;False;;;;1610636230;;False;{};gj8dqtp;False;t3_kx6s7r;False;True;t1_gj8bqif;/r/anime/comments/kx6s7r/i_already_know_this_seasons_gonna_be_ac_god_tier/gj8dqtp/;1610707849;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610636264;;1610660131.0;{};gj8dtck;False;t3_kx6q54;False;True;t3_kx6q54;/r/anime/comments/kx6q54/crunchyrolls_disappointing_lineup_and_funimations/gj8dtck/;1610707888;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AnnieLeo;;;[];;;;text;t2_wmes3;False;False;[];;How many times has this been delayed now;False;False;;;;1610636273;;False;{};gj8du01;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8du01/;1610707897;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrSeaSalt;;;[];;;;text;t2_lg73jid;False;False;[];;Shingo Yamashita strikes again.;False;False;;;;1610636303;;False;{};gj8dw7g;False;t3_kx6njt;False;True;t3_kx6njt;/r/anime/comments/kx6njt/jujutsu_kaisen_new_opening_vivid_vice_by_whoya/gj8dw7g/;1610707932;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;It's not even sci-fi, it's just magic with some low tech steampunk fiction thrown in. I wonder why it gets people so mad though, the manga does not explain anything because you can't explain magic;False;False;;;;1610636322;;False;{};gj8dxoc;False;t3_kx2twh;False;True;t1_gj8daoi;/r/anime/comments/kx2twh/attack_on_titan_question/gj8dxoc/;1610707955;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;ConnorLego42069;;;[];;;;text;t2_3jwehee4;False;False;[];;Wait I thought that show i would probably butcher the pronunciation of was already over;False;False;;;;1610636358;;False;{};gj8e08q;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8e08q/;1610707996;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;Im most hyped for Aikatsu Planet and Tropical-Rouge Precure;False;False;;;;1610636372;;False;{};gj8e19z;False;t3_kx6s7r;False;False;t3_kx6s7r;/r/anime/comments/kx6s7r/i_already_know_this_seasons_gonna_be_ac_god_tier/gj8e19z/;1610708012;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EternalWisdomSleeps;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EternalSleep;light;text;t2_1ux1yne;False;False;[];;[](#congratulations);False;False;;;;1610636439;;False;{};gj8e6a4;False;t3_kx2uao;False;True;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj8e6a4/;1610708088;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phoenixwaller;;;[];;;;text;t2_34autsr9;False;False;[];;"I noticed that funimation picked up a number of old sentai titles lately, so I have the feeling some licenses expired and were picked up. Log Horizon being one (since they just announced that they put up S1) - -It happens, license deals expire and get bought up by other companies. Funimation had been making a push on the old Bandai titles in the past few years, but I'm not completely surprised that they're going after newer stuff lately.";False;False;;;;1610636459;;False;{};gj8e7ry;False;t3_kx6q54;False;True;t3_kx6q54;/r/anime/comments/kx6q54/crunchyrolls_disappointing_lineup_and_funimations/gj8e7ry/;1610708111;3;True;False;anime;t5_2qh22;;0;[]; -[];;;nimrag_is_coming;;;[];;;;text;t2_2ty9jhb3;False;False;[];;3.0+1.0? Why don’t they just call it 4.0 then;False;False;;;;1610636489;;False;{};gj8e9ve;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8e9ve/;1610708145;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Damarugaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Damarugaki/;light;text;t2_6zyxfkgg;False;False;[];;Shingo Yamashita out there doing God's work;False;False;;;;1610636522;;False;{};gj8ec9d;False;t3_kx6njt;False;True;t3_kx6njt;/r/anime/comments/kx6njt/jujutsu_kaisen_new_opening_vivid_vice_by_whoya/gj8ec9d/;1610708179;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bigred2989-;;;[];;;;text;t2_137lvar7;False;False;[];;Biggest lie of 2021. Eva is a never-ending cash cow.;False;False;;;;1610636530;;False;{};gj8ecvm;False;t3_kx3bdv;False;False;t1_gj80bvi;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8ecvm/;1610708189;183;True;False;anime;t5_2qh22;;0;[]; -[];;;Saberinbed;;;[];;;;text;t2_p00ls;False;False;[];;I'm calling it right now. Ufotable will make a tsukihime anime to promote the VN.;False;False;;;;1610636589;;False;{};gj8eh3i;False;t3_kx2uao;False;False;t1_gj8aubb;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj8eh3i/;1610708254;37;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;The wall material is probably a weaker version. Maybe Annie is surrounded by a crystalline version of the material that is significantly stronger than all other forms of hardening. She does enter a deep sleep, so maybe she spent all her energy making that shell.;False;False;;;;1610636614;;False;{};gj8eivw;False;t3_kx2twh;False;True;t3_kx2twh;/r/anime/comments/kx2twh/attack_on_titan_question/gj8eivw/;1610708279;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;PANDA DOING THE KING KONG THING;False;False;;;;1610636634;;False;{};gj8ekdh;False;t3_kx6njt;False;True;t3_kx6njt;/r/anime/comments/kx6njt/jujutsu_kaisen_new_opening_vivid_vice_by_whoya/gj8ekdh/;1610708301;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ignore_User_Name;;MAL;[];;https://myanimelist.net/profile/Ignore_User_Name;dark;text;t2_6sox1;False;False;[];;"Original series. Then End of Evangelion movie (alternate version of the ending). Then rebuild. - -Death and rebirth can be skipped.";False;False;;;;1610636634;;False;{};gj8ekdk;False;t3_kx3bdv;False;True;t1_gj8avnw;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8ekdk/;1610708301;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Radioactivee_Samurai;;;[];;;;text;t2_8ebkf9cz;False;False;[];;^(yo im so hyped lets fucking goooooooo);False;False;;;;1610636735;;False;{};gj8err5;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8err5/;1610708414;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;... It's only been 2 years since its was announced.;False;False;;;;1610636761;;False;{};gj8etoi;False;t3_kx3bdv;False;False;t1_gj89ff1;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8etoi/;1610708447;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Chocobean;;;[];;;;text;t2_1v1d;False;False;[];;"Ayanami and Nagisa standing off to the side. Poor angels. - -It's wonderful to see a clean beach and white foamy waves, with happy, smiling, unbroken children looking up into a clear sky. - -I have such ridiculously high hopes for this series, as I am sure many others along this 26 year journey are too.....And yet, my hopes are also really humble: I want the children to be happy. If the series doesn't answer many outstanding questions, if it's just a bunch of text on black for 2 hours, but the end result is that the children are happy and it's real, not some simulated Black Mirror horror show, then I'm happy too.";False;False;;;;1610636886;;False;{};gj8f2uw;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8f2uw/;1610708591;12;True;False;anime;t5_2qh22;;0;[]; -[];;;KamikazeMender;;;[];;;;text;t2_aq1gm;False;False;[];;It's all good lol. But yea true, the bright side is that the animation has been on point so far;False;False;;;;1610636895;;False;{};gj8f3ke;False;t3_kx6cvu;False;True;t1_gj8bkqi;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8f3ke/;1610708603;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gridemann;;;[];;;;text;t2_dhsy2;False;False;[];;you can tag spoilers;False;False;;;;1610636942;;False;{};gj8f728;False;t3_kx2twh;False;True;t1_gj88y1u;/r/anime/comments/kx2twh/attack_on_titan_question/gj8f728/;1610708657;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TBonety;;HB;[];;https://hummingbird.me/users/TBonety;dark;text;t2_d2xri;False;False;[];;Who cares anymore?;False;False;;;;1610636966;;False;{};gj8f8td;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8f8td/;1610708685;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;mattbrvc;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;coffee undertones;light;text;t2_6fere;False;False;[];;Why are they still pretending there is even a movie being made?;False;False;;;;1610636967;;False;{};gj8f8vf;False;t3_kx3bdv;False;False;t1_gj7sgv4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8f8vf/;1610708686;7;True;False;anime;t5_2qh22;;0;[]; -[];;;EasternOtaku1422;;;[];;;;text;t2_2vuogh9i;False;False;[];;Isn't that adaptation the first time?;False;False;;;;1610637018;;False;{};gj8fcq7;False;t3_kx2uao;False;True;t1_gj8aubb;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj8fcq7/;1610708745;1;True;False;anime;t5_2qh22;;0;[]; -[];;;syntheticsylph;;;[];;;;text;t2_ha7fr;False;False;[];;There’s always cam rips. That’s how I’ve always seen them initially. Then I buy the release when it’s in the US.;False;False;;;;1610637026;;False;{};gj8fdan;False;t3_kx3bdv;False;False;t1_gj818qe;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8fdan/;1610708754;11;True;False;anime;t5_2qh22;;0;[]; -[];;;envynav;;MAL;[];;https://myanimelist.net/profile/envynav;dark;text;t2_n0d12;False;False;[];;I believe Anno has said this is the last one he will work on, but he is willing to let other people make new Eva shows.;False;False;;;;1610637068;;False;{};gj8fgfv;False;t3_kx3bdv;False;False;t1_gj8ats6;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8fgfv/;1610708802;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Chocobean;;;[];;;;text;t2_1v1d;False;False;[];;"honestly the Shinji blame in 3.0 is done better and more realistically than how the MCU tries to bring in ""but how do random civilians feel"". They know it's mean and unhelpful but they are doing it because their world literally ended and there's no one else to blame.";False;False;;;;1610637083;;False;{};gj8fhle;False;t3_kx3bdv;False;False;t1_gj8dl55;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8fhle/;1610708820;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Chocobean;;;[];;;;text;t2_1v1d;False;False;[];;You do (not) want it.;False;False;;;;1610637164;;False;{};gj8fnrb;False;t3_kx3bdv;False;False;t1_gj858f4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8fnrb/;1610708922;9;True;False;anime;t5_2qh22;;0;[]; -[];;;ContraCoke;;;[];;;;text;t2_5zr20qzr;False;False;[];;Just after Avatar 2, right?;False;False;;;;1610637167;;False;{};gj8fnzn;False;t3_kx3bdv;False;False;t1_gj89so2;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8fnzn/;1610708926;21;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"I did read it. - -But your title is that CR's lineup is disappointing, when they have over 2/3rds of the airing anime liscensed. Thats not disappointing, thats really damn good. Sure they dont have the 1 or 2 shows you wanted but thats life, they cant have everything. In the end liscense goto the highest bidder. Having a previous season doesnt guarentee you will get a future season. - -So i wouldnt call thier lineup disappointing. Sure they might be missing a couple shows that people want, but that doesnt make the whole lineup dissapointing.";False;False;;;;1610637178;;False;{};gj8fosq;False;t3_kx6q54;False;False;t1_gj8csbc;/r/anime/comments/kx6q54/crunchyrolls_disappointing_lineup_and_funimations/gj8fosq/;1610708938;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gmtom;;;[];;;;text;t2_7vlf2;False;False;[];;End of Eva starts with a happy ending.;False;False;;;;1610637185;;False;{};gj8fpcc;False;t3_kx3bdv;False;True;t1_gj8bdju;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8fpcc/;1610708948;1;True;False;anime;t5_2qh22;;0;[]; -[];;;envynav;;MAL;[];;https://myanimelist.net/profile/envynav;dark;text;t2_n0d12;False;False;[];;"It was over. Neon Genesis Evangelion and the movie End of Evangelion make up the original series. - -This movie is part of a reboot movie series called Rebuild of Evangelion. They start out as a remake of the show, but over time the story diverges completely.";False;False;;;;1610637196;;False;{};gj8fq6p;False;t3_kx3bdv;False;False;t1_gj8e08q;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8fq6p/;1610708963;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ConnorLego42069;;;[];;;;text;t2_3jwehee4;False;False;[];;Ah, I didn’t know that;False;False;;;;1610637232;;False;{};gj8fsyd;False;t3_kx3bdv;False;True;t1_gj8fq6p;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8fsyd/;1610709008;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Steampunkvikng;;;[];;;;text;t2_ghzaj;False;False;[];;It's a remake of the VN;False;False;;;;1610637245;;False;{};gj8fu0l;False;t3_kx2uao;False;False;t1_gj8fcq7;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj8fu0l/;1610709025;7;True;False;anime;t5_2qh22;;0;[]; -[];;;tetodafu;;;[];;;;text;t2_9hon60c8;False;False;[];;Oh no...;False;False;;;;1610637261;;False;{};gj8fv9g;False;t3_kx3bdv;False;False;t1_gj8fnrb;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8fv9g/;1610709045;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MelonRaf_44;;;[];;;;text;t2_3a9wliys;False;False;[];;"j o k e - -no but seriously i'm just circlejerking whatever r/eldenring is doing";False;False;;;;1610637264;;1610637483.0;{};gj8fvhv;False;t3_kx3bdv;False;True;t1_gj8etoi;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8fvhv/;1610709049;5;True;False;anime;t5_2qh22;;0;[]; -[];;;chawklitdsco;;;[];;;;text;t2_btsw1;False;False;[];;bro just watch cross ange;False;False;;;;1610637278;;False;{};gj8fwj9;False;t3_kx6kaz;False;True;t3_kx6kaz;/r/anime/comments/kx6kaz/horrible_fanservice_in_anime/gj8fwj9/;1610709065;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AlAck3;;;[];;;;text;t2_18bpvvg;False;False;[];;It's funny how everybody shit-talk about Shinji and nobody talk about Asuka.;False;False;;;;1610637278;;False;{};gj8fwk9;False;t3_kx3bdv;False;False;t1_gj7uuto;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8fwk9/;1610709065;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Steampunkvikng;;;[];;;;text;t2_ghzaj;False;False;[];;and it'll probably come out before the VN is ever translated.;False;False;;;;1610637322;;False;{};gj8fzy4;False;t3_kx2uao;False;False;t1_gj8eh3i;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj8fzy4/;1610709118;30;True;False;anime;t5_2qh22;;0;[]; -[];;;shadebedlam;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Shadebedlam;light;text;t2_fl41u;False;False;[];;Yes, exactly and it is even better because his intentions were morally good (save Ayanami) so it is this nice balance where you can still sympathize with him but also with everyone else who naturally hates him or blames him to be more precise. And for me, it is much more enjoyable than just here is a big battle with nice music and world-ending stakes. Because at the moment of watching I actually enjoy the battle (or epic moment) more but then in the future after thinking about it and rewatching it I enjoy more the other thing.;False;False;;;;1610637347;;False;{};gj8g1sn;False;t3_kx3bdv;False;False;t1_gj8fhle;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8g1sn/;1610709148;6;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;">it is possible that the reason they don't pierce through it is because that would possibly kill Annie in the process - -Why would this be a problem?";False;False;;;;1610637401;;False;{};gj8g5ym;False;t3_kx2twh;False;True;t1_gj7r4wp;/r/anime/comments/kx2twh/attack_on_titan_question/gj8g5ym/;1610709215;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Enemigo_Poderoso;;;[];;;;text;t2_6nwqvcos;False;False;[];;The animation quality drags it down heavily, I only kept watching because ~~mada mada~~ I'm a manga fan. Honestly, I'm surprised other ppl kept moving forward with the show despite its animation problems.;False;False;;;;1610637409;;False;{};gj8g6k6;False;t3_kx6cvu;False;True;t3_kx6cvu;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8g6k6/;1610709225;0;True;False;anime;t5_2qh22;;0;[]; -[];;;imliterallyfive;;;[];;;;text;t2_oiotg;False;False;[];;I want it to be delayed again so it has a chance of showing in theaters in the US. We've been waiting years for this, as has Anno, and it would be devastating if this movie aired in a pandemic when theaters are closed.;False;False;;;;1610637410;;False;{};gj8g6n3;False;t3_kx3bdv;False;False;t1_gj7vura;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8g6n3/;1610709226;9;True;False;anime;t5_2qh22;;0;[]; -[];;;hirmuolio;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Hirmuolio;light;text;t2_58d9l;False;False;[];;"Texhnolyze - -Haibane Renmei - -Casshern Sins - -Giant Robo the Animation: The Day the Earth Stood Still - -Angel's Egg - -Vampire Hunter D: Bloodlust";False;False;;;;1610637418;;False;{};gj8g79a;False;t3_kx4vfe;False;True;t3_kx4vfe;/r/anime/comments/kx4vfe/ive_watched_all_anime_there_is_ive_seen_all_the/gj8g79a/;1610709235;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JeanKB;;;[];;;;text;t2_nudpu;False;False;[];;Every single anime has fancier animation on their opening compared to the actual episodes though.;False;False;;;;1610637425;;False;{};gj8g7rf;False;t3_kx6cvu;False;True;t1_gj8bkqi;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8g7rf/;1610709244;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ironman72706;;;[];;;;text;t2_7ff4vzdm;False;False;[];;Thank you;False;False;;;;1610637434;;False;{};gj8g8hq;False;t3_kx3bdv;False;False;t1_gj89akx;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8g8hq/;1610709255;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BetaBoy777;;;[];;;;text;t2_m7mqrnm;False;False;[];;At this point, maybe in heaven;False;False;;;;1610637476;;False;{};gj8gbo6;False;t3_kx3bdv;False;False;t1_gj87s8c;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8gbo6/;1610709306;9;True;False;anime;t5_2qh22;;0;[]; -[];;;KamikazeMender;;;[];;;;text;t2_aq1gm;False;False;[];;"This is still good animation tho. The problem with it is that it doesn't fit with Black Clover style in a way. You can also make the case that the trees also look off but tbh this is still good animation. -Animation like this and the Pain vs Naruto fight is that it relies on fast movement, stopping and picking one shot will make the animation look ""bad"".";False;False;;;;1610637495;;False;{};gj8gd3o;False;t3_kx6cvu;False;False;t1_gj8bmgf;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8gd3o/;1610709328;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazzlike_Razzmatazz;;;[];;;;text;t2_5ybf9h66;False;False;[];;"You don't need to consider eldians as same humans as us. What if eldians are different bcz they are childrens of founding Titan...then? I mean it sounds unrealistic... But they need to kill titans and without any ODM gear it will be immpossible and all animes have these type of Humans..they are normal but different Normal form us. - - You can consider it steampunk logic or what not bit it doesn't change fact that they are using ODM gear and its a ANIME. - -And i am talking about working ODM that is immpossible for normal humans to use. - -You can have a functional ODM gear but not with full functionality";False;False;;;;1610637501;;False;{};gj8gdl4;False;t3_kx2twh;False;True;t1_gj88dbz;/r/anime/comments/kx2twh/attack_on_titan_question/gj8gdl4/;1610709337;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BetaBoy777;;;[];;;;text;t2_m7mqrnm;False;False;[];;Impossible. It’s looking more likely the US will end before it releases at this point.;False;False;;;;1610637583;;False;{};gj8gjs0;False;t3_kx3bdv;False;True;t1_gj8cdzx;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8gjs0/;1610709438;3;True;False;anime;t5_2qh22;;0;[]; -[];;;EleventhMS;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EleventhMS;light;text;t2_1ovfek2f;False;False;[];;"Still better than being a Tsukihime fan - -We waited 12 goddamn years";False;False;;;;1610637604;;False;{};gj8gle0;False;t3_kx3bdv;False;False;t1_gj85135;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8gle0/;1610709464;21;True;False;anime;t5_2qh22;;0;[]; -[];;;babydave371;;MAL a-amq;[];;https://myanimelist.net/profile/babydave371;dark;text;t2_sak6n;False;False;[];;Hey, still better than being one of the people waiting from Uru in Blue since about 1992...;False;False;;;;1610637609;;False;{};gj8glqw;False;t3_kx3bdv;False;False;t1_gj8dh74;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8glqw/;1610709469;4;True;False;anime;t5_2qh22;;0;[]; -[];;;FreeSM2014;;;[];;;;text;t2_goss4;False;False;[];;Gojo with the lightning visuals at 1:09 looked like a grown up version of Killua from HxH.;False;False;;;;1610637644;;False;{};gj8goi7;False;t3_kx6njt;False;True;t3_kx6njt;/r/anime/comments/kx6njt/jujutsu_kaisen_new_opening_vivid_vice_by_whoya/gj8goi7/;1610709512;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ewqdsacxziopjklbnm;;;[];;;;text;t2_55uqoldw;False;False;[];;You betcha!! Can’t wait for our new reality to kick in;False;False;;;;1610637661;;False;{};gj8gpw9;False;t3_kx3bdv;False;False;t1_gj8fnzn;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8gpw9/;1610709534;10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610637678;;False;{};gj8gr5u;False;t3_kx6q54;False;True;t1_gj8e7ry;/r/anime/comments/kx6q54/crunchyrolls_disappointing_lineup_and_funimations/gj8gr5u/;1610709555;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"Haven't read it, but my guess would be that Annie being one of the ""special titans"" makes her power a lot stronger, while the ones on the wall are just random titans. - -Same reason why Annie is intelligent and capable of strategy, while the other (non-special) titans are just idiots who run around and try to eat the first thing that comes near them.";False;False;;;;1610637705;;False;{};gj8gtao;False;t3_kx2twh;False;True;t3_kx2twh;/r/anime/comments/kx2twh/attack_on_titan_question/gj8gtao/;1610709589;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IcicleLin;;;[];;;;text;t2_867dltua;False;False;[];;I don't mean like im only gonna watch these anime I mean like the anime that I already watched;False;False;;;;1610637767;;False;{};gj8gy33;True;t3_kx6s7r;False;True;t3_kx6s7r;/r/anime/comments/kx6s7r/i_already_know_this_seasons_gonna_be_ac_god_tier/gj8gy33/;1610709672;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Enemigo_Poderoso;;;[];;;;text;t2_6nwqvcos;False;False;[];;Lmao that arc climax was the drizzling shits...;False;False;;;;1610637780;;False;{};gj8gz62;False;t3_kx6cvu;False;True;t1_gj8bmgf;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8gz62/;1610709688;0;True;False;anime;t5_2qh22;;0;[]; -[];;;animefangrant62;;;[];;;;text;t2_f063t;False;False;[];;"I think that it's equally shortsighted to tell Shinji that his actions directly caused an apocalypse the very first day after he woke up. Telling him simply not to pilot an Eva was the most reasonable thing to do as he's already being faced with just how much has changed in the world. It's likely that Misato herself ordered the crew to withhold this information as she cares deeply for Shinji and feels regret for her own involvement in his actions. - -Again, you can poke holes in the logic but it all comes back to the fact that these are flawed, damaged individuals who are facing a potential apocalypse every single day. They can't make the perfect decision at all times. No human can, especially under those circumstances.";False;False;;;;1610637782;;False;{};gj8gza4;False;t3_kx3bdv;False;False;t1_gj8d6ay;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8gza4/;1610709690;28;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok_Draw_2833;;;[];;;;text;t2_4dha12vu;False;False;[];;"Fire! - -JJK is really killing it right now. Might have to pick up the manga when the anime is done.";False;False;;;;1610637787;;False;{};gj8gzq7;False;t3_kx6njt;False;True;t3_kx6njt;/r/anime/comments/kx6njt/jujutsu_kaisen_new_opening_vivid_vice_by_whoya/gj8gzq7/;1610709698;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;That’s the only benefit of talking on the internet...;False;False;;;;1610637793;;False;{};gj8h05c;False;t3_kx6kaz;False;True;t1_gj8b2jb;/r/anime/comments/kx6kaz/horrible_fanservice_in_anime/gj8h05c/;1610709705;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Chocobean;;;[];;;;text;t2_1v1d;False;False;[];;"In the real life dimension, for a lot of us, we started along this journey when we were Shinji's age, and now we're old farts who are Gendou's age. So we get to see both those perspectives. - -And the fight is still within us even today: selfishly wanting the world to bend to our desires, AND deal with the anger and hopelessness that we live in a world others have had control over and messed up big time.";False;False;;;;1610637803;;False;{};gj8h0y9;False;t3_kx3bdv;False;False;t1_gj8g1sn;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8h0y9/;1610709718;16;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"So you say they are magically different? Yeah, it's anime, it's even manga and it is totally ridiculous that a sprained ankle is actually something that can happen with how everything else happens - -> You can have a functional ODM gear but not with full functionality - -are you shitting me?";False;False;;;;1610637819;;False;{};gj8h26r;False;t3_kx2twh;False;True;t1_gj8gdl4;/r/anime/comments/kx2twh/attack_on_titan_question/gj8h26r/;1610709739;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chawklitdsco;;;[];;;;text;t2_btsw1;False;False;[];;"eh thats just like your opinion man. People love steins gate here and I cant figure out for the life of me why. It's a decent show, but it takes a long time to get going and is kind of all over the place. I just don't understand the amount of praise it gets. Erased was also decent; I enjoyed most of it but the ending falls flat. there are better anime than both of these though";False;False;;;;1610637843;;False;{};gj8h419;False;t3_kx4qhb;False;True;t3_kx4qhb;/r/anime/comments/kx4qhb/steinsgate_is_better_then_erased/gj8h419/;1610709769;2;True;False;anime;t5_2qh22;;0;[]; -[];;;shadebedlam;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Shadebedlam;light;text;t2_fl41u;False;False;[];;Well said and true at least for me too :);False;False;;;;1610637859;;False;{};gj8h5bn;False;t3_kx3bdv;False;True;t1_gj8h0y9;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8h5bn/;1610709789;3;True;False;anime;t5_2qh22;;0;[]; -[];;;iredditfordogpics;;;[];;;;text;t2_87wa1zlj;False;False;[];;I've been watching the rebuilds for the first time lately. Evangelion is my favorite series and I have to say I think the rebuilds are pretty terrible. They rush all character development and the CGI action looks lke shit.;False;False;;;;1610637886;;False;{};gj8h7cw;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8h7cw/;1610709826;7;True;False;anime;t5_2qh22;;0;[]; -[];;;iredditfordogpics;;;[];;;;text;t2_87wa1zlj;False;False;[];;High budget fan ficiton;False;False;;;;1610637928;;False;{};gj8hakp;False;t3_kx3bdv;False;True;t1_gj7wo1k;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8hakp/;1610709878;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;marshallvv;;;[];;;;text;t2_1pnkshnm;False;False;[];;Why;False;False;;;;1610637932;;False;{};gj8hav4;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8hav4/;1610709882;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EasternOtaku1422;;;[];;;;text;t2_2vuogh9i;False;False;[];;Now we have a mutated form that spreads the disease faster and 2M deaths;False;False;;;;1610637957;;False;{};gj8hcpu;False;t3_kx2uao;False;True;t1_gj8a1cv;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj8hcpu/;1610709913;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GunMetalSnail429;;;[];;;;text;t2_9qlkd;False;False;[];;Why must the universe torment me so. I know this movie is going to *break me,* and now I have wait even longer for the inevitable.;False;False;;;;1610637998;;False;{};gj8hfu6;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8hfu6/;1610709968;1;True;False;anime;t5_2qh22;;0;[]; -[];;;botika03;;;[];;;;text;t2_ckakdou;False;False;[];;"Damn why did i read ""together, we will cum""";False;False;;;;1610638028;;False;{};gj8hi1m;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8hi1m/;1610710004;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Achers;;;[];;;;text;t2_1xwjtox;False;False;[];;Kingdom hearts be like;False;False;;;;1610638051;;False;{};gj8hjtk;False;t3_kx3bdv;False;False;t1_gj87k8a;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8hjtk/;1610710030;7;True;False;anime;t5_2qh22;;0;[]; -[];;;MulletPower;;;[];;;;text;t2_54h1r;False;False;[];;"Sure in the future I will title my post differently so you don't respond only to the title of my post. I now know I must explicitly say ""in my opinion"" for every statement I make, no matter how obvious it that I'm stating an opinion. - -I don't know how many anime you watch, but when 3 sequels you wanted to watch don't appear on the platform you watched the previous seasons on, I feel like it's justified to call it disappointing. - -> Sure they dont have the 1 or 2 shows you wanted but thats life, they cant have everything. - -Once again it's not ""1 or 2 shows I wanted"" it's shows that Crunchyroll had the previous seasons of. I feel like it's always a big deal when a streaming site loses 1 sequel series. I can't recall a time when a site has lost 3 high profile sequels.";False;False;;;;1610638186;;1610638460.0;{};gj8hu0u;True;t3_kx6q54;False;True;t1_gj8fosq;/r/anime/comments/kx6q54/crunchyrolls_disappointing_lineup_and_funimations/gj8hu0u/;1610710198;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610638204;;False;{};gj8hvfg;False;t3_kx6njt;False;True;t1_gj8gzq7;/r/anime/comments/kx6njt/jujutsu_kaisen_new_opening_vivid_vice_by_whoya/gj8hvfg/;1610710222;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Solid_Snivy;;;[];;;;text;t2_43885wnx;False;False;[];;The Japanese have a weird superstition about the the number 4 being unlucky, to the point that some buildings don't even have 4th floor or room 4.;False;False;;;;1610638219;;False;{};gj8hwl0;False;t3_kx3bdv;False;True;t1_gj87k8a;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8hwl0/;1610710243;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DMking;;;[];;;;text;t2_8buww;False;False;[];;Good choixe just don't read anything else depressing with it;False;False;;;;1610638238;;False;{};gj8hxzn;False;t3_kx6njt;False;True;t1_gj8gzq7;/r/anime/comments/kx6njt/jujutsu_kaisen_new_opening_vivid_vice_by_whoya/gj8hxzn/;1610710269;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chazmerg;;;[];;;;text;t2_cw1emrm;False;False;[];;I've never failed to regret having watched a camrip when I see a good copy of the movie.;False;False;;;;1610638267;;False;{};gj8i08e;False;t3_kx3bdv;False;False;t1_gj8fdan;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8i08e/;1610710306;39;True;False;anime;t5_2qh22;;0;[]; -[];;;Mr_WizenWheat;;;[];;;;text;t2_mf7j6s8;False;False;[];;"Doesn't mean Anno will touch it ever again, companies will of course continue to plaster Shinji on anything they want, but i sincerely doubt anything Evangelion related will have ""Directed by Hideaki Anno"" attached to it after this";False;False;;;;1610638298;;False;{};gj8i2n7;False;t3_kx3bdv;False;False;t1_gj8ecvm;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8i2n7/;1610710345;131;True;False;anime;t5_2qh22;;0;[]; -[];;;Rendelodon;;;[];;;;text;t2_xxz28;False;False;[];;Feels like vinland saga again where both OPs were nailed;False;False;;;;1610638334;;False;{};gj8i5g6;False;t3_kx6njt;False;True;t1_gj8c9nx;/r/anime/comments/kx6njt/jujutsu_kaisen_new_opening_vivid_vice_by_whoya/gj8i5g6/;1610710391;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kevsfamouschili;;;[];;;;text;t2_17cig1;False;False;[];;I want to watch the first rebuild, but can’t find the right language anywhere? Do you know where I can order a dvd or Blu-ray of Japanese with eng subs?;False;False;;;;1610638358;;False;{};gj8i7b8;False;t3_kx3bdv;False;True;t1_gj7x8dc;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8i7b8/;1610710419;3;True;False;anime;t5_2qh22;;0;[]; -[];;;clazaa;;;[];;;;text;t2_j3umy;False;False;[];;The last paragraph of The Wise Man's Fear still brings chills into my brain. Honestly, if there's updates to that third book, I haven't been following. It will be released when Rothfuss is done - but this? This final film has been announced as in production and to be released multiple times over the last nine years. I think that's the difference. It hurt at first, but this is purely meme now.;False;False;;;;1610638372;;False;{};gj8i8eu;False;t3_kx3bdv;False;False;t1_gj89m8t;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8i8eu/;1610710438;13;True;False;anime;t5_2qh22;;0;[]; -[];;;kurk021;;;[];;;;text;t2_84ly94oy;False;False;[];;Evangelion 3.0+1.0 is literally cyberpunk 2077 the anime;False;False;;;;1610638469;;False;{};gj8ifuo;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8ifuo/;1610710558;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazzlike_Razzmatazz;;;[];;;;text;t2_5ybf9h66;False;False;[];;"Why the hell are you including magic everywhere I am saying their body Constitution can be different for us anyway it is just a theory or a possibility and dude why is that sprained angle bothering you this much when you have lots of ppl die when using ODM gear ( although they are killed by Titan while using gear). - -Sorry..by no means i am shitting you...its possible and i have seen it A ODM gear with basic functionality its just that i can't provide the source as it been long time. - -You can read the theory of ODM gear and can see it is possible bto develop a gear with only hook and pull fucntion";False;False;;;;1610638482;;False;{};gj8igvc;False;t3_kx2twh;False;True;t1_gj8h26r;/r/anime/comments/kx2twh/attack_on_titan_question/gj8igvc/;1610710575;3;True;False;anime;t5_2qh22;;0;[]; -[];;;EasternOtaku1422;;;[];;;;text;t2_2vuogh9i;False;False;[];;">Hopefully Japan gets it under control as vaccines start being spread - -About that... - -I read an article about Japan's vaccination history and thought ""uh oh..."" - ->Japan has one of the lowest rates of vaccine confidence in the world, according to a Lancet study, which found that fewer than 30% of people strongly agreed that vaccines were safe, important and effective, compared with at least 50% of Americans. A recent poll by NHK found 36% said they didn’t want to take a COVID-19 vaccine. ->“Japan is very cautious about vaccines, because historically there have been issues about potential side effects. The government has been involved in several lawsuits related to the issue, which adds to their deep caution."" -Haruka Sakamoto - -[Source](https://www.japantimes.co.jp/news/2020/12/23/national/japan-vaccine-history-coronavirus/) - -Also not helping are the two mutated strains of COVID (B117 and the one originating from Brazil) being detected in Japan.";False;False;;;;1610638483;;False;{};gj8igxx;False;t3_kx2uao;False;False;t1_gj814gb;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj8igxx/;1610710577;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610638493;;False;{};gj8ihq2;False;t3_kx3bdv;False;True;t1_gj8cuue;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8ihq2/;1610710588;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ImperialLump;;;[];;;;text;t2_gw341;False;False;[];;Huh, interesting. Explains why production is so cursed.;False;False;;;;1610638553;;False;{};gj8imex;False;t3_kx3bdv;False;True;t1_gj8hwl0;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8imex/;1610710669;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610638593;;False;{};gj8ipko;False;t3_kx3bdv;False;False;t1_gj8i2n7;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8ipko/;1610710723;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;They have Tropical-Rouge Precure coming so I'm good.;False;False;;;;1610638722;;False;{};gj8izjk;False;t3_kx6q54;False;True;t3_kx6q54;/r/anime/comments/kx6q54/crunchyrolls_disappointing_lineup_and_funimations/gj8izjk/;1610710890;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mattconnorItaly;;;[];;;;text;t2_61bk46hj;False;False;[];;But is always the same story?;False;False;;;;1610638733;;False;{};gj8j0de;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8j0de/;1610710903;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SSJAbh1nav;;;[];;;;text;t2_1rvn0ca9;False;False;[];;Anno is going to remake the whole movie now;False;False;;;;1610638741;;False;{};gj8j0y9;False;t3_kx3bdv;False;False;t1_gj7sgv4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8j0y9/;1610710913;4;True;False;anime;t5_2qh22;;0;[]; -[];;;lammatthew725;;;[];;;;text;t2_n0to8;False;False;[];;"I won't place too much hope on that thought. - -Knowing his premise of the whole rework project is to ""right"" the ""wrong"" of the original tv run which he spectacularly failed at conveying his thesis of telling people to not indulge in escapism.";False;False;;;;1610638836;;False;{};gj8j8bi;False;t3_kx3bdv;False;False;t1_gj8f2uw;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8j8bi/;1610711045;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SeaMonkey1245;;;[];;;;text;t2_7vdudo58;False;False;[];;What is the evangallion 1.0 and stuff like that is it just a remake with different art?;False;False;;;;1610638882;;False;{};gj8jbsd;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8jbsd/;1610711103;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sulfrurz;;;[];;;;text;t2_9dty9445;False;False;[];;"It’s great, it’s just an anime you have to sit down and bear through the first 10 episodes or so. A lot of the characters are great Yami, Noelle, Asta etc. but some of the side characters are simply put stupid; Magna. It’s a solid show with its ups and downs, but the ups make up for the downs. - -Update: the animation when it comes to their eyes weirds me out a little. It’s an odd thing, but it was a little hard to get past.";False;False;;;;1610638965;;1610639421.0;{};gj8ji33;False;t3_kx6cvu;False;True;t3_kx6cvu;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8ji33/;1610711210;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MilitantRabbit;;MAL;[];;http://www.myanimelist.net/profile/MilitantRabbit;dark;text;t2_1sy84;False;True;[];;"I do. - -Get in the robot, Shinji.";False;False;;;;1610638990;;False;{};gj8jk0o;False;t3_kx3bdv;False;False;t1_gj7wwy7;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8jk0o/;1610711248;19;True;False;anime;t5_2qh22;;0;[]; -[];;;lammatthew725;;;[];;;;text;t2_n0to8;False;False;[];;"A textbook example of milking a franchise is.... Typemoon milking Fate. - -9yrs? That's an amateur number. - -fate stay night is 16yo, and tsukihime is 18yo. And new remakes of those are still coming out. And look at F/GO, We get a new Seibah face every fucking year, and people keep paying them. - -Also... Fun fact... In the annual report of Sony last year, they indeed had a whole paragraph in the So-net part of report saying how well the Typemoon collaboration (So-net is the publisher of fgo in japan) did for them.";False;False;;;;1610639012;;1610639364.0;{};gj8jlnn;False;t3_kx3bdv;False;True;t1_gj8dnp8;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8jlnn/;1610711277;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JeanKB;;;[];;;;text;t2_nudpu;False;False;[];;Squiggly lines and yutapon cubes =/= good animation. And aside that, the direction, coreography, soundtrack, sound design and everything else from that scene is equally terrible.;False;False;;;;1610639036;;False;{};gj8jnio;False;t3_kx6cvu;False;False;t1_gj8gd3o;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8jnio/;1610711313;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;devilboy302;;;[];;;;text;t2_q7fk3;False;False;[];;I don't want to watch this movie just because the final movie itself was soo fucking good.. I don't understand why they keep making more movies..;False;False;;;;1610639087;;False;{};gj8jrfj;False;t3_kx3bdv;False;False;t1_gj80u1s;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8jrfj/;1610711379;5;True;False;anime;t5_2qh22;;0;[]; -[];;;0Megabyte;;;[];;;;text;t2_i93up;False;False;[];;Nah. I know it's frustrating, but nah.;False;False;;;;1610639105;;False;{};gj8jsus;False;t3_kx3bdv;False;True;t1_gj81855;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8jsus/;1610711402;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Alukrad;;;[];;;;text;t2_2m3mahp;False;False;[];;"Someone once told me that these movies are completely different from the main series. Is that true? - -I just thought they were a remake.";False;False;;;;1610639106;;False;{};gj8jsyj;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8jsyj/;1610711404;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Solid_Snivy;;;[];;;;text;t2_43885wnx;False;False;[];;Most likely a Japanese superstition about the number 4 being bad luck.;False;False;;;;1610639120;;False;{};gj8jtzs;False;t3_kx3bdv;False;True;t1_gj8e9ve;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8jtzs/;1610711420;0;True;False;anime;t5_2qh22;;0;[]; -[];;;0Megabyte;;;[];;;;text;t2_i93up;False;False;[];;Yeah, after hearing about the Japanese state of emergency, it's completely unsurprising that a movie would decide not to come out in that period.;False;False;;;;1610639141;;False;{};gj8jvnh;False;t3_kx3bdv;False;False;t1_gj89q8n;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8jvnh/;1610711447;7;True;False;anime;t5_2qh22;;0;[]; -[];;;0Megabyte;;;[];;;;text;t2_i93up;False;False;[];;Why are you pretending to believe this?;False;False;;;;1610639154;;False;{};gj8jwkp;False;t3_kx3bdv;False;False;t1_gj8f8vf;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8jwkp/;1610711463;4;True;False;anime;t5_2qh22;;0;[]; -[];;;kuddlesworth9419;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kuddlesworth;light;text;t2_btage;False;False;[];;I'll PM you where to get them.;False;False;;;;1610639183;;False;{};gj8jyug;False;t3_kx3bdv;False;False;t1_gj8i7b8;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8jyug/;1610711499;3;True;False;anime;t5_2qh22;;0;[]; -[];;;syntheticsylph;;;[];;;;text;t2_ha7fr;False;False;[];;"Agreed. 3.0 was more powerful for me because of the original voice actors. When I was it in theaters I didn’t know it was dub only. - -The dub VA’s did their best but it didn’t have the same impact to me even though the screen quality and audio was better. - -Edit: downvoted?";False;False;;;;1610639188;;1610644273.0;{};gj8jz7y;False;t3_kx3bdv;False;False;t1_gj8i08e;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8jz7y/;1610711506;9;True;False;anime;t5_2qh22;;0;[]; -[];;;kevsfamouschili;;;[];;;;text;t2_17cig1;False;False;[];;Thank you 😭;False;False;;;;1610639209;;False;{};gj8k0vi;False;t3_kx3bdv;False;True;t1_gj8jyug;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8k0vi/;1610711534;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dahSweep;;;[];;;;text;t2_m8mnk;False;False;[];;"And you can plug the holes I poke all you want, it still doesn't change the fact that the movie is a frustrating mess to watch, at least for me. I understand their motives, but the way the movie is written just makes it hard to like anyone in it. Hell, I defend Shinji here but he's equally as unlikeable since he's so fucking dumb most of the time, and a coward. - -That's kind of the point of NGE as a whole, though it was much better written and portrayed in the show. The movies, not so much. Not to me anyway.";False;False;;;;1610639232;;False;{};gj8k2q3;False;t3_kx3bdv;False;False;t1_gj8gza4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8k2q3/;1610711567;9;True;False;anime;t5_2qh22;;0;[]; -[];;;0Megabyte;;;[];;;;text;t2_i93up;False;False;[];;"It'll make sense once the film is out. And the second part of the title, ""Thrice Upon a Time"" tells a huge hint if you know of the book Anno is referencing...";False;False;;;;1610639255;;False;{};gj8k4j2;False;t3_kx3bdv;False;False;t1_gj87k8a;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8k4j2/;1610711597;3;True;False;anime;t5_2qh22;;0;[]; -[];;;UMPIN;;;[];;;;text;t2_cl9xp;False;False;[];;"Yes. EoE's ending is ""happy"" because everyone, should they choose to, can have a second chance at life. This includes Misato and all the other people that died before the ending.";False;False;;;;1610639279;;False;{};gj8k6e2;False;t3_kx3bdv;False;False;t1_gj8c3wo;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8k6e2/;1610711630;6;True;False;anime;t5_2qh22;;0;[]; -[];;;syntheticsylph;;;[];;;;text;t2_ha7fr;False;False;[];;"Hopeful but my first thought was “Mari get out of the shot.” - -She hasn’t been there since the beginning. I’m just not a fan of her. I know she has some fans though, but I still can’t seem to care for her.";False;False;;;;1610639296;;1610674202.0;{};gj8k7qz;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8k7qz/;1610711656;5;True;False;anime;t5_2qh22;;0;[]; -[];;;FaehBatsy;;;[];;;;text;t2_131mhfi;False;False;[];;"There is a beta - -Who won't get in the mecha - -God damn it shinji";False;False;;;;1610639354;;False;{};gj8kc8c;False;t3_kx3bdv;False;False;t1_gj8jk0o;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8kc8c/;1610711732;5;True;False;anime;t5_2qh22;;0;[]; -[];;;kuddlesworth9419;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kuddlesworth;light;text;t2_btage;False;False;[];;All I remember was Shinji strangling Asuka in a post apocalyptic world where nothing grows so they will both inevitably starve to death or dehidrate as the water is red and I assume not drinkable.;False;False;;;;1610639382;;False;{};gj8keg1;False;t3_kx3bdv;False;False;t1_gj8k6e2;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8keg1/;1610711767;5;True;False;anime;t5_2qh22;;0;[]; -[];;;deleted-user;;MAL;[];;http://myanimelist.net/animelist/AKC47;dark;text;t2_aj4jy;False;False;[];;">""we will overcome"" - ->Large white puddle in the background - -So it's gonna be 2 hours of Shinji repeatedly masturbating, huh?";False;False;;;;1610639433;;False;{};gj8kifg;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8kifg/;1610711832;6;True;False;anime;t5_2qh22;;0;[]; -[];;;TiAQueen;;;[];;;;text;t2_2drijrvy;False;False;[];;Plz stop it all ready Dead.;False;False;;;;1610639437;;False;{};gj8kiqf;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8kiqf/;1610711837;1;True;False;anime;t5_2qh22;;0;[]; -[];;;0Megabyte;;;[];;;;text;t2_i93up;False;False;[];;"Sadly, Rothfuss's publisher came out and stated, late last year, that they hadn't received word one of Door of Stone, and had gotten quite tired of waiting. - -With Eva, well, it makes sense why this happened. First, the fourth movie didn't start production immediately after 3.0. Everyone had other projects and Anno needed a rest period, due to his emotional state. He finally got the gig of his dreams, and made Shin Godzilla, and it re-invigorated him. Production only actually started after Shin Godzilla came out. - -Now, the original plan was to come out in June last year, yes, but nobody expected COVID, and things like recording voice acting wasn't feasible during the worst of the COVID restrictions, making it impossible to finish the movie at that time. That's why we've heard updates like Shinji's actress finishing recording and things like that. Because a lot of those things had to be delayed. But now the movie is 100% complete... - -...just in time for a major COVID resurgence in Japan, and an actual full-on state of emergency being called by the government. So they decided they would look awful to release it during a state of emergency, you know? - -It sucks. It really sucks. But it makes sense. In the US, a lot of movies are suffering similar delays, it's just those movies aren't emotionally tied to us the same way Evangelion is for many of the people on this subreddit, so we aren't focusing on those the same way.";False;False;;;;1610639496;;False;{};gj8kna6;False;t3_kx3bdv;False;False;t1_gj8i8eu;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8kna6/;1610711910;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Sak63;;;[];;;;text;t2_bq5ihv0;False;False;[];;Bruh this anime didn't end? I've only watched the tv series;False;False;;;;1610639505;;False;{};gj8ko0b;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8ko0b/;1610711923;0;True;False;anime;t5_2qh22;;0;[]; -[];;;0Megabyte;;;[];;;;text;t2_i93up;False;False;[];;Lots of people. Why do you care about the things you like?;False;False;;;;1610639603;;False;{};gj8kvlv;False;t3_kx3bdv;False;False;t1_gj8f8td;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8kvlv/;1610712059;2;True;False;anime;t5_2qh22;;0;[]; -[];;;deleted-user;;MAL;[];;http://myanimelist.net/animelist/AKC47;dark;text;t2_aj4jy;False;False;[];;Still waiting for Fate route;False;False;;;;1610639607;;False;{};gj8kvwj;False;t3_kx3bdv;False;False;t1_gj80gv5;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8kvwj/;1610712064;5;True;False;anime;t5_2qh22;;0;[]; -[];;;0Megabyte;;;[];;;;text;t2_i93up;False;False;[];;Japanese government ordered a state of emergency due to COVID resurgence.;False;False;;;;1610639622;;False;{};gj8kx51;False;t3_kx3bdv;False;True;t1_gj8hav4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8kx51/;1610712087;2;True;False;anime;t5_2qh22;;0;[]; -[];;;animefangrant62;;;[];;;;text;t2_f063t;False;False;[];;"I think the things you're complaining about still happen in the show. One example being that Misato can't find the strength to tell Shinji that the new Eva pilot was his friend Toji and when he finds out, he loses his trust in everyone around him and his mental health spirals further. - -But yeah, it's just opinions. I have mine and you have yours. If anything Evangelion being so polarising is just a result of the creative decisions made. Some will love it and simp for Anno, such as myself, and others just won't vibe with it.";False;False;;;;1610639631;;False;{};gj8kxvs;False;t3_kx3bdv;False;False;t1_gj8k2q3;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8kxvs/;1610712099;24;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610639694;;False;{};gj8l2u6;False;t3_kx3bdv;False;True;t1_gj7sgv4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8l2u6/;1610712185;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dahSweep;;;[];;;;text;t2_m8mnk;False;False;[];;Yeah man, of course. Don't let anyone tell you your opinion is wrong, because it isn't :) NGE is very dear to me, and even though I don't like all the recent stuff, I have respect for those that to.;False;False;;;;1610639801;;False;{};gj8lbbw;False;t3_kx3bdv;False;False;t1_gj8kxvs;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8lbbw/;1610712342;8;True;False;anime;t5_2qh22;;0;[]; -[];;;0Megabyte;;;[];;;;text;t2_i93up;False;False;[];;"Okay so, the original Evangelion tv series and its movie finale, End of Evangelion, was made in the 90's and is totally a complete story. - -In 2005, Anno felt he wanted to do a movie remake using new technology and to tell the story in a different way with new ideas. Thus, the New Theatrical Edition was born. The first of them, Evangelion 1.0: You Are (Not) Alone is mostly a remake of the first 6 episodes, with some important but subtle differences. Evangelion 2.0: You Can (Not) Advance roughly adapts episodes 8-19, but in a completely different way and going mostly in a new direction. Evangelion 3.0: You Can (Not) Redo took that into a direction utterly different from the original series, to the point many were confused. It's the most contentious part of the entire series, due to the narrative choices involved, but then Evangelion has always been a bit obtuse. - -The new film, Evangelion 3.0+1.0: Thrice Upon a Time is the finale to this film series, which has evolved into a very different story than the original. Which is fine. The original still exists, and is unchanged. Don't listen to anyone who calls this a sequel to the original series, though. I'd bet money it's not.";False;False;;;;1610639830;;False;{};gj8ldn7;False;t3_kx3bdv;False;True;t1_gj8jbsd;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8ldn7/;1610712386;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Critical-Film;;;[];;;;text;t2_kexbnai;False;False;[];;I had a friend watch the series for the first time. He hated it. Told me it’s 💩 I said I guess you don’t understand the philosophy behind the show. He said is there? I said yes. He then asked what the shows about. I said 3.0+1.0 forever.;False;False;;;;1610639844;;False;{};gj8lepm;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8lepm/;1610712403;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Little_Hazzy;;;[];;;;text;t2_8o34l;False;False;[];;"It might make more sense once the film comes out based off the little we know of it. The trailer had some interesting tidbits and the last part of the title ""Thrice upon a time"" seems to be a big hint as to where the movie will be going.";False;False;;;;1610639877;;False;{};gj8lhe6;False;t3_kx3bdv;False;False;t1_gj8e9ve;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8lhe6/;1610712448;5;True;False;anime;t5_2qh22;;0;[]; -[];;;giorno_govanni;;;[];;;;text;t2_8kz4pc1z;False;False;[];;i...um....wow....I coudnt finish the first evangelion but im so excited;False;False;;;;1610639885;;False;{};gj8li1d;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8li1d/;1610712457;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> I am saying their body Constitution can be different for us anyway - -They have to have an entirely different physiology and body buildup, bone density and so much else that they would be aliens. Or you know, Isayama just handwaved it away because nobody cares about realism in the magic titan show but gets pissy if people point out that it is completely unrealistic. - -And ODM gear will noever be real, neither the drive, nor the rewind function can work in the capacity depicted in the anime. It's steampunk fantasy and everything else about the world is just fantasy";False;False;;;;1610639888;;False;{};gj8li9j;False;t3_kx2twh;False;True;t1_gj8igvc;/r/anime/comments/kx2twh/attack_on_titan_question/gj8li9j/;1610712461;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SeaMonkey1245;;;[];;;;text;t2_7vdudo58;False;False;[];;Thanks man;False;False;;;;1610639939;;False;{};gj8lmaj;False;t3_kx3bdv;False;True;t1_gj8ldn7;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8lmaj/;1610712526;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;doesnt matter as long as we get more eva doujins;False;False;;;;1610640061;;False;{};gj8lw09;False;t3_kx3bdv;False;False;t1_gj80u1s;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8lw09/;1610712701;14;True;False;anime;t5_2qh22;;0;[]; -[];;;KaptainTZ;;skip7;[];;;dark;text;t2_9fhynbf5;False;False;[];;"Evangelion's true goal is to confuse viewers as much as possible so that they derive some contrived meaning from what's actually just a drug-induced conglomerate of a series put together by its writers. - -That's why this final installment is titled ""3.0 + 1.0""";False;False;;;;1610640124;;False;{};gj8m0va;False;t3_kx3bdv;False;False;t1_gj80u1s;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8m0va/;1610712788;126;True;False;anime;t5_2qh22;;0;[]; -[];;;KaptainTZ;;skip7;[];;;dark;text;t2_9fhynbf5;False;False;[];;This deserves some kinda award;False;False;;;;1610640163;;False;{};gj8m3x5;False;t3_kx3bdv;False;False;t1_gj80sjz;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8m3x5/;1610712841;30;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;It happens all the time. Its not something new. Even Funimation is missing seasons on a lot of shows. Look at log Horizon, Funi has season 1 and 3 but not 2. Meanwhile CR has season2 but not season 1or 3. This is because they lost the rights when Funimation split with them a while ago, but since CR had the rights to s2, they kept that. Thats how the liscensing biz works. Again, having a previous season doesnt guarentee you to get future ones, it still goes to who ever pays the most money.;False;False;;;;1610640206;;False;{};gj8m75r;False;t3_kx6q54;False;True;t1_gj8hu0u;/r/anime/comments/kx6q54/crunchyrolls_disappointing_lineup_and_funimations/gj8m75r/;1610712892;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fice1991;;;[];;;;text;t2_49ybyrev;False;False;[];;Who's the girl to the left of Shinji?;False;False;;;;1610640247;;False;{};gj8maa3;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8maa3/;1610712946;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SSB_GoGeta;;;[];;;;text;t2_768ece;False;False;[];;We got so far to lose it all.;False;False;;;;1610640358;;False;{};gj8mj5k;False;t3_kx3bdv;False;False;t1_gj7xssd;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8mj5k/;1610713096;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NeverGonnaSimp;;;[];;;;text;t2_9pkuih4r;False;False;[];;At least Crunchyroll has Ex Arm this season, so that's something.;False;False;;;;1610640392;;False;{};gj8mlu0;False;t3_kx6q54;False;True;t3_kx6q54;/r/anime/comments/kx6q54/crunchyrolls_disappointing_lineup_and_funimations/gj8mlu0/;1610713143;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Spade-Demon;;;[];;;;text;t2_5tkn0i2y;False;False;[];;Ehh, it’s a mixed bag. I enjoy the show and look forward to it every week but sometimes it can be annoying how predictable and one dimensional some characters can be.;False;False;;;;1610640404;;False;{};gj8mmsp;False;t3_kx6cvu;False;True;t3_kx6cvu;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gj8mmsp/;1610713158;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;They do, but he doesn't listen.;False;False;;;;1610640439;;False;{};gj8mpfq;False;t3_kx3bdv;False;True;t1_gj86owp;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8mpfq/;1610713205;1;True;False;anime;t5_2qh22;;0;[]; -[];;;renatocpr;;;[];;;;text;t2_d8c43;False;False;[];;Watch the movie. They answer everything he asks. Ritsuko explains the DSS Choker and why they're putting it on him. Asuka tells him that 14 years have passed since 2.0 and that Rei is missing. Misato confirms this. Then Mark.09 attacks and Misato calls it the biggest threat. He starts panicking and hears Rei inside his head. He calls out for her and Mark.09 breaks through the cell. And even then, Misato still explains that Wille is opposing Nerv and that Rei Q isn't the Rei from 2.0. Shinji just doesn't like the answers he's getting and leaves.;False;False;;;;1610640552;;False;{};gj8mybg;False;t3_kx3bdv;False;True;t1_gj8crsq;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8mybg/;1610713378;0;True;False;anime;t5_2qh22;;0;[]; -[];;;amildboner;;;[];;;;text;t2_6i4mse48;False;False;[];;Had the same experience with Clannad. I shut down. And went back to watching it again.;False;False;;;;1610640558;;False;{};gj8myse;False;t3_kx63zp;False;True;t3_kx63zp;/r/anime/comments/kx63zp/spoiler_clannad_after_story_im_legit_crying_right/gj8myse/;1610713387;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Saleenseven;;MAL;[];;https://myanimelist.net/animelist/Saleenseven;dark;text;t2_9jdyo;False;False;[];;Because the goal is acquiring information, well atleast was before the events of season 3 part 2;False;False;;;;1610640588;;False;{};gj8n15m;False;t3_kx2twh;False;False;t1_gj8g5ym;/r/anime/comments/kx2twh/attack_on_titan_question/gj8n15m/;1610713431;10;True;False;anime;t5_2qh22;;0;[]; -[];;;DragoCrafterr;;;[];;;;text;t2_hq426;False;False;[];;This film does (not) exist;False;False;;;;1610640604;;False;{};gj8n2ei;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8n2ei/;1610713453;4;True;False;anime;t5_2qh22;;0;[]; -[];;;FatherDotComical;;;[];;;;text;t2_2w4u4081;False;False;[];;"It's discontinued :( - -You'll have to find a digital copy for movie 1.";False;False;;;;1610640661;;False;{};gj8n6x0;False;t3_kx3bdv;False;False;t1_gj8i7b8;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8n6x0/;1610713534;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Speedwagon96;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Speedwagon96/;light;text;t2_12lmdk;False;False;[];;"Same when I saw "" Gintama the Final"" ;-;. -I just started watching Evangelion yesterday so I wonder if I will feel the same about this movie.";False;False;;;;1610640678;;False;{};gj8n87u;False;t3_kx3bdv;False;False;t1_gj80bvi;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8n87u/;1610713556;5;True;False;anime;t5_2qh22;;0;[]; -[];;;IGioGioAmDepressed;;;[];;;;text;t2_2xs9mswf;False;False;[];;It feels always good to see Rei smile;False;False;;;;1610640775;;False;{};gj8nfxl;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8nfxl/;1610713692;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Psycho-Radish;;;[];;;;text;t2_74tplhjd;False;False;[];;"That may be true for rebuild 3.0 and onwards but the original series and end of eva are pretty comprehensible. The original series for the most part is a pretty tight mecha action/police procural esque show and once things get weird, it’s all within an understandable framework. - -From what I’ve heard, rebuild 3.0 simultaneously tried too hard and didn’t try at all.";False;False;;;;1610640930;;False;{};gj8nrzt;False;t3_kx3bdv;False;False;t1_gj8m0va;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8nrzt/;1610713924;52;True;False;anime;t5_2qh22;;0;[]; -[];;;h_hue;;;[];;;;text;t2_965gj878;False;False;[];;As a Haruhi fan, you can do it. As long as you believe.;False;False;;;;1610640943;;False;{};gj8nt0j;False;t3_kx3bdv;False;False;t1_gj80gv5;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8nt0j/;1610713942;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Tofinochris;;;[];;;;text;t2_67shg;False;False;[];;The Endest of Evangelion.;False;False;;;;1610640969;;False;{};gj8nv27;False;t3_kx3bdv;False;True;t1_gj7wo1k;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8nv27/;1610713979;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MulletPower;;;[];;;;text;t2_54h1r;False;False;[];;"> It happens all the time. Its not something new. - -Other already aired seasons (which you've pointed out) I don' think it ""happens all the time"", but I'm open to being proven wrong.";False;False;;;;1610641004;;False;{};gj8nxx5;True;t3_kx6q54;False;True;t1_gj8m75r;/r/anime/comments/kx6q54/crunchyrolls_disappointing_lineup_and_funimations/gj8nxx5/;1610714028;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EmperorAcinonyx;;;[];;;;text;t2_djcr0;False;False;[];;"Mari is the most important, consequential character in the Rebuilds. - -How do I know this? Simple: she makes my peepee tingle.";False;False;;;;1610641115;;False;{};gj8o6j2;False;t3_kx3bdv;False;False;t1_gj8cxk2;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8o6j2/;1610714183;62;True;False;anime;t5_2qh22;;0;[]; -[];;;vtipoman;;;[];;;;text;t2_wevvw;False;False;[];;lmao are we cancelling Third Impact;False;False;;;;1610641181;;False;{};gj8obqb;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8obqb/;1610714278;1;True;False;anime;t5_2qh22;;0;[]; -[];;;onlyforthisair;;;[];;;;text;t2_5m8qz;False;False;[];;If the Rebuilds show it being some sort of time loop thing and show it being broken in 3+1, then future Evangelion properties could take place in earlier loops.;False;False;;;;1610641196;;False;{};gj8ocv7;False;t3_kx3bdv;False;False;t1_gj8ecvm;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8ocv7/;1610714299;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Verbaliskaiser91;;;[];;;;text;t2_qe6dbsn;False;False;[];;Is the next movie gonna be “Evangelion = 4.0”;False;False;;;;1610641286;;False;{};gj8ok62;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8ok62/;1610714434;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Belgand;;MAL;[];;http://myanimelist.net/animelist/Belgand;dark;text;t2_a7cha;False;True;[];;Although that's a little bit like saying George Lucas will never direct anything again. It's more surprising when he actually *does* direct something.;False;False;;;;1610641440;;False;{};gj8owjk;False;t3_kx3bdv;False;False;t1_gj8i2n7;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8owjk/;1610714663;40;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazzlike_Razzmatazz;;;[];;;;text;t2_5ybf9h66;False;False;[];;"Fine if that's what you want to believe... y'know even in the first episode you should know that there's no concept of realism in anime heck even in code geass you can say they are normal human But they perform superhuman task. - -But isayama tried his best to keep AOT somewhat connected to reality atleast it wasn't complete unrealistic like give humans supernatural power and robots and boom! - -You see not every unrealistic thing in anime is magic i admit this show has some unrealistic Elements but by no means it is completely unrealistic.";False;False;;;;1610641485;;False;{};gj8p03h;False;t3_kx2twh;False;True;t1_gj8li9j;/r/anime/comments/kx2twh/attack_on_titan_question/gj8p03h/;1610714729;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610641509;;False;{};gj8p1zl;False;t3_kx2uao;False;False;t1_gj7si73;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj8p1zl/;1610714764;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"There are numerous series where the previous liscense holder doesnt get the sequel. - -Hell with Netflix and Amazon playing the anime game it happens far too much. - -Season 1 - Funimation/CR https://myanimelist.net/anime/35860/Karakai_Jouzu_no_Takagi-san - -Season 2 - No one https://myanimelist.net/anime/38993/Karakai_Jouzu_no_Takagi-san_2 - -Symphogear is another series that had this issue. -Season 1, 3, and 5 were liscened by CR when it aired. -Season 2 and 4 were liscensed by CR 2 years later. -(s2 got liscened when s3 aired, s4 got liscensed when s5 aired) - -Meaning that if you were watching it as it aired, for those 2 seasons you were shit out of luck. S4 was the worst of it because we had multiple week delays in fan subtitles since no one was willing to try to sub it. - -There are tons of examples but ill give you 2 for now because im not spending hours explaining this to you when its quite clear. The only time a liscense is guarenteed to get future seasons is when it is a continueing series meaning they air non stop for years. But if they take a break and have a ""Season 2"" later, that breaks the liscense so they have to bid for a new one when the new season comes out, which means running the risk of not getting it. Thats just how the system works.";False;False;;;;1610641566;;False;{};gj8p6h2;False;t3_kx6q54;False;True;t1_gj8nxx5;/r/anime/comments/kx6q54/crunchyrolls_disappointing_lineup_and_funimations/gj8p6h2/;1610714843;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> like give humans supernatural power and robots and boom! - -The heroes of AoT are literally superhuman and Titans are nothing but flesh mechs. In AoT, the explanation for why is literally magic";False;False;;;;1610641592;;False;{};gj8p8jd;False;t3_kx2twh;False;True;t1_gj8p03h;/r/anime/comments/kx2twh/attack_on_titan_question/gj8p8jd/;1610714878;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Belgand;;MAL;[];;http://myanimelist.net/animelist/Belgand;dark;text;t2_a7cha;False;True;[];;Gendo might be a distant, disinterested father but while Shinji's family life is sad, Asuka's is straight up traumatic. I'm prepared to give her a lot of slack after what she went through.;False;False;;;;1610641615;;False;{};gj8pabh;False;t3_kx3bdv;False;False;t1_gj8fwk9;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8pabh/;1610714912;8;True;False;anime;t5_2qh22;;0;[]; -[];;;elongatedmuskrat777;;;[];;;;text;t2_4so0sm9e;False;False;[];;Great job;False;False;;;;1610641700;;False;{};gj8ph98;False;t3_kx3bdv;False;True;t1_gj7vura;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8ph98/;1610715034;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;They've got about 5 of the 16 currently on my watch list. Usually that's the other way round so Funimation have definitely stepped it up for this season.;False;False;;;;1610641706;;False;{};gj8pho5;False;t3_kx6q54;False;True;t1_gj8dtck;/r/anime/comments/kx6q54/crunchyrolls_disappointing_lineup_and_funimations/gj8pho5/;1610715042;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Belgand;;MAL;[];;http://myanimelist.net/animelist/Belgand;dark;text;t2_a7cha;False;True;[];;"How many more summers do we need to wait until they're out of the time loop? - -At least other series didn't actively troll you. Or *directly* lie to you about whether they were even making a new season.";False;False;;;;1610641712;;False;{};gj8pi7t;False;t3_kx3bdv;False;True;t1_gj8nt0j;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8pi7t/;1610715051;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CrazyBelg;;;[];;;;text;t2_wpiaa;False;False;[];;Can anyone give me a watch order for the evangelion series + movies. I thought there was only 1 series and movies but there are more?;False;False;;;;1610641716;;False;{};gj8pihu;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8pihu/;1610715056;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tankist_boi_WT;;;[];;;;text;t2_4zbz78ni;False;False;[];;love that smol rei smile;False;False;;;;1610641820;;False;{};gj8pqzs;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8pqzs/;1610715208;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kamilia666;;;[];;;;text;t2_3b9mkdu9;False;False;[];;If it ever comes out everyone will be like *clap* *clap* “congratulations.”;False;False;;;;1610641861;;False;{};gj8pu9w;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8pu9w/;1610715266;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Belgand;;MAL;[];;http://myanimelist.net/animelist/Belgand;dark;text;t2_a7cha;False;True;[];;*End of Evangelion* isn't just packaged as a movie, it's literally a theatrically-released film that was never aired on TV. But yes, it does occupy the time frame of the last two episodes of the series and is essentially an expanded ending. I think most people would argue that it's essential.;False;False;;;;1610642017;;False;{};gj8q6qx;False;t3_kx3bdv;False;False;t1_gj8c4nf;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8q6qx/;1610715485;8;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;TBD;False;False;;;;1610642067;;False;{};gj8qas2;False;t3_kx3bdv;False;True;t1_gj8di6w;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8qas2/;1610715565;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;And because Japan refused to take covid seriously up to this point;False;False;;;;1610642107;;False;{};gj8qdwv;False;t3_kx3bdv;False;True;t1_gj8kx51;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8qdwv/;1610715627;0;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;2nd movie diverges, third is different;False;False;;;;1610642157;;False;{};gj8qhx5;False;t3_kx3bdv;False;True;t1_gj8jsyj;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8qhx5/;1610715725;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Belgand;;MAL;[];;http://myanimelist.net/animelist/Belgand;dark;text;t2_a7cha;False;True;[];;"> Death and rebirth can be skipped. - -To expand on why, it's the compilation film combined with part of *End of Evangelion* as a teaser since it was still being worked on at the time. It's very much an ""of its time"" artifact. Even at release it was inessential, but there's pretty much no reason to watch it at present.";False;False;;;;1610642192;;False;{};gj8qkqg;False;t3_kx3bdv;False;True;t1_gj8ekdk;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8qkqg/;1610715784;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;Doubt they want that;False;False;;;;1610642193;;False;{};gj8qkuf;False;t3_kx3bdv;False;True;t1_gj880kr;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8qkuf/;1610715787;1;True;False;anime;t5_2qh22;;0;[]; -[];;;joepanda111;;;[];;;;text;t2_5s5mm;False;False;[];;"I actually preferred 3.0 to to 2.0 because the darker, more depressing tone felt truer to the original series than 2.0’s attempt to make Shinji like Over the top Shonen protagonist like Simon from Gutenberg Lagann. - -That said it still has Mari “Sue” and the films thus far haven’t touch upon the “mother protecting her child” aspect of the Eva’s. - -I just wish the films had stuck with the original concept of reanimating the show with better animation and a new ending. - -But I guess that was probably deemed too predictable for the ‘artist formerly known as Anno.’";False;False;;;;1610642271;;False;{};gj8qr2x;False;t3_kx3bdv;False;False;t1_gj8cuue;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8qr2x/;1610715905;96;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;Mari, new character for the rebuilds.;False;False;;;;1610642278;;False;{};gj8qrln;False;t3_kx3bdv;False;True;t1_gj8maa3;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8qrln/;1610715914;2;True;False;anime;t5_2qh22;;0;[]; -[];;;wondererSkull;;;[];;;;text;t2_82zu3g2y;False;False;[];;Congratulations *clap clap claps*;False;False;;;;1610642297;;False;{};gj8qt85;False;t3_kx3bdv;False;False;t1_gj8m3x5;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8qt85/;1610715944;27;True;False;anime;t5_2qh22;;0;[]; -[];;;Wyrd_Alphonse;;;[];;;;text;t2_6dv8cqn2;False;False;[];;Who's the dark-haired chick?;False;False;;;;1610642347;;False;{};gj8qx71;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8qx71/;1610716018;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RHO-PI;;;[];;;;text;t2_32yngflb;False;False;[];;You're only calling it magic because it doesn't exist in our universe. The difference in hardness can be easily explained through different molecular or lattice structures, similar to coal and diamond.;False;False;;;;1610642386;;False;{};gj8r0j9;False;t3_kx2twh;False;False;t1_gj8dxoc;/r/anime/comments/kx2twh/attack_on_titan_question/gj8r0j9/;1610716080;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610642394;;False;{};gj8r153;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8r153/;1610716090;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Luhood;;;[];;;;text;t2_g0vf4;False;False;[];;">Gutenberg Lagann - -I don't care if this was a typo, I'm keeping it!";False;False;;;;1610642581;;False;{};gj8rg4l;False;t3_kx3bdv;False;False;t1_gj8qr2x;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8rg4l/;1610716365;110;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610642583;;1610660100.0;{};gj8rgbn;False;t3_kx6q54;False;False;t1_gj8pho5;/r/anime/comments/kx6q54/crunchyrolls_disappointing_lineup_and_funimations/gj8rgbn/;1610716369;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Belgand;;MAL;[];;http://myanimelist.net/animelist/Belgand;dark;text;t2_a7cha;False;True;[];;"It's also only part of the official English title. The Japanese one is different and incorporates other kinds of ambiguous wording and references. That's been the case for the entire rebuild series. - -But they also did that weird ""2.22"" stuff with the TV and home video releases that wasn't present in the theatrical versions. So in addition to apparently liking the stylization, they're actually utilizing the version numbering when they make adjustments. Or at least claiming that's the reason why.";False;False;;;;1610642588;;False;{};gj8rgoi;False;t3_kx3bdv;False;True;t1_gj8lhe6;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8rgoi/;1610716375;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;It's not magic, the Flash is just super fast, it's physics! If you have to make up parallel universes for your hypothesis it might just be not possible to happen without the supernatural.;False;False;;;;1610642637;;False;{};gj8rkrd;False;t3_kx2twh;False;True;t1_gj8r0j9;/r/anime/comments/kx2twh/attack_on_titan_question/gj8rkrd/;1610716450;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Belgand;;MAL;[];;http://myanimelist.net/animelist/Belgand;dark;text;t2_a7cha;False;True;[];;Because you're so fucked up.;False;False;;;;1610642638;;False;{};gj8rktt;False;t3_kx3bdv;False;True;t1_gj8hi1m;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8rktt/;1610716451;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ki-Gon;;;[];;;;text;t2_12o5iv;False;False;[];;"That name gives me some serious ""Kingdom Hearts: Bullshit Subtitle"" vibes";False;False;;;;1610642639;;1610643840.0;{};gj8rkx7;False;t3_kx3bdv;False;False;t1_gj8m0va;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8rkx7/;1610716452;43;True;False;anime;t5_2qh22;;0;[]; -[];;;Qweeq13;;;[];;;;text;t2_18fxkmaz;False;False;[];;This series is as dead as the Authors sympathy towards his fans.;False;False;;;;1610642664;;False;{};gj8rmx4;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8rmx4/;1610716489;1;True;False;anime;t5_2qh22;;0;[]; -[];;;THE_XENO_KING;;;[];;;;text;t2_2dj7i5br;False;False;[];;Sad cum 2?;False;False;;;;1610642666;;False;{};gj8rn2r;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8rn2r/;1610716491;4;True;False;anime;t5_2qh22;;0;[]; -[];;;GenericMemesxd;;;[];;;;text;t2_15kk68;False;False;[];;A man of fine taste;False;False;;;;1610642831;;False;{};gj8s0je;False;t3_kx3bdv;False;False;t1_gj8o6j2;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8s0je/;1610716729;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Belgand;;MAL;[];;http://myanimelist.net/animelist/Belgand;dark;text;t2_a7cha;False;True;[];;There's some good evidence that they're more like an in-universe time loop. Divergence started slowly, but has become more significant over time. It really kicks in with the third movie.;False;False;;;;1610642876;;False;{};gj8s45y;False;t3_kx3bdv;False;False;t1_gj8jsyj;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8s45y/;1610716794;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PeterGriffenttv;;;[];;;;text;t2_5gvxyq1r;False;False;[];;That sucks;False;False;;;;1610642876;;False;{};gj8s47h;False;t3_kx3bdv;False;True;t1_gj8fgfv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8s47h/;1610716795;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MejaBersihBanget;;;[];;;;text;t2_4a6wkvny;False;False;[];;How'd it end? English translations are still 3 volumes behind;False;False;;;;1610642880;;False;{};gj8s4jh;False;t3_kx6ua5;False;True;t1_gj8cotx;/r/anime/comments/kx6ua5/is_there_any_sign_of_the_devil_is_parttimer/gj8s4jh/;1610716801;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DominelKira;;;[];;;;text;t2_3s08wif3;False;False;[];;Atleast now they are focusing on something that's NOT fate for a change. So that's good.;False;False;;;;1610642959;;False;{};gj8sava;False;t3_kx3bdv;False;True;t1_gj8jlnn;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8sava/;1610716930;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lmao_Fear;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;xAlviix on Myanimelist and kitsu c:;light;text;t2_3pzdx4rr;False;False;[];;"i Started watching evangelion just because this movie comes out on my birthday lmfao. - - -also its iconic so why not.";False;False;;;;1610643024;;False;{};gj8sgcb;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8sgcb/;1610717044;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UnrealRealityX;;;[];;;;text;t2_s1mzb;False;False;[];;Evangelion 3.0+1.0 You Can (Not) Count To Four;False;False;;;;1610643026;;False;{};gj8sgii;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8sgii/;1610717048;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MulletPower;;;[];;;;text;t2_54h1r;False;False;[];;"Neither of those are examples of other streaming services licensing a show that was on another platform for earlier seasons. - -The only ones I'm aware of is Psycho Pass Season 3 and Rage of Bahamut Virgin Soul. Which went to Amazon instead of Crunchyroll. Which was because Amazon moved into (and I'm assuming at this point, moving away from) Anime simulcast streaming. I remember it being huge deal at the time. - -> But if they take a break and have a ""Season 2"" later, that breaks the liscense so they have to bid for a new one when the new season comes out, which means running the risk of not getting it. Thats just how the system works. - -I know and never claimed that wasn't how the system works. I'm pointing out that it's quite rare (I would say unprecedented for 3 high profile sequels in the same season) and wondering why it is now happening between 2 companies that already share multiple shows and are in the process of acquisition.";False;False;;;;1610643032;;1610643318.0;{};gj8sgya;True;t3_kx6q54;False;True;t1_gj8p6h2;/r/anime/comments/kx6q54/crunchyrolls_disappointing_lineup_and_funimations/gj8sgya/;1610717056;1;True;False;anime;t5_2qh22;;0;[]; -[];;;infamous090;;;[];;;;text;t2_2jh4ncp6;False;False;[];;I’m so confused, I thought certain characters got put on ice after that one movie but now they’re back?;False;False;;;;1610643065;;False;{};gj8sjrw;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8sjrw/;1610717110;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cuentanro3;;;[];;;;text;t2_5u3nobq;False;False;[];;Mista approves this message;False;False;;;;1610643092;;False;{};gj8slym;False;t3_kx3bdv;False;False;t1_gj8sgii;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8slym/;1610717157;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SunstyIe;;;[];;;;text;t2_ha7v6;False;False;[];;Amazing. Lol;False;False;;;;1610643130;;False;{};gj8sp3t;False;t3_kx3bdv;False;False;t1_gj8rg4l;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8sp3t/;1610717225;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazzlike_Razzmatazz;;;[];;;;text;t2_5ybf9h66;False;False;[];;"That's quite the naive and simple way to describe such a masterpiece - - -Also you can say anime is product of people imagination running wild right? And these are those who have nothing better to do.";False;False;;;;1610643144;;False;{};gj8sq86;False;t3_kx2twh;False;True;t1_gj8p8jd;/r/anime/comments/kx2twh/attack_on_titan_question/gj8sq86/;1610717247;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mr-Mister;;;[];;;;text;t2_96djb;False;False;[];;Shinji, fix your fucking belt.;False;False;;;;1610643144;;False;{};gj8sqa3;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8sqa3/;1610717249;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeOfGlory72;;;[];;;;text;t2_uecc5;False;False;[];;Eh, even the creator himself has said a lot of the original series is just nonsense. For example, all the Christian iconography is just there because it looks/sounds cool.;False;True;;comment score below threshold;;1610643168;;False;{};gj8ss5m;False;t3_kx3bdv;False;True;t1_gj8nrzt;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8ss5m/;1610717291;-15;True;False;anime;t5_2qh22;;0;[]; -[];;;Pancake_muncher;;;[];;;;text;t2_gt4zc;False;False;[];;"I still don't understand the point of these new movies. I'll be surprised if it has something new to say besides ""Cause Anno could"".";False;False;;;;1610643211;;False;{};gj8svs2;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8svs2/;1610717376;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dewut;;;[];;;;text;t2_7wa8y;False;False;[];;Do you or anyone else no a good place to watch the rebuilds? I’m not above sailing the high seas but if they’re streaming somewhere I’d rather watch them that way.;False;False;;;;1610643228;;False;{};gj8sx6y;False;t3_kx3bdv;False;True;t1_gj87hji;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8sx6y/;1610717407;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Loid_Node;;;[];;;;text;t2_ea411;False;False;[];;Ahh, so they're like hideo kojima if he made movies?;False;False;;;;1610643307;;False;{};gj8t3pu;False;t3_kx3bdv;False;False;t1_gj8m0va;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8t3pu/;1610717534;5;True;False;anime;t5_2qh22;;0;[]; -[];;;JNunez625;;;[];;;;text;t2_6e1xi;False;False;[];;*don't...*;False;False;;;;1610643338;;False;{};gj8t6f0;False;t3_kx2uao;False;False;t1_gj8fzy4;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj8t6f0/;1610717595;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"Takagi-san was on Amazon or Netflix if im not mistaken. - -It isnt as rare as you think, you just havent noticed it happening.";False;False;;;;1610643386;;False;{};gj8tagm;False;t3_kx6q54;False;True;t1_gj8sgya;/r/anime/comments/kx6q54/crunchyrolls_disappointing_lineup_and_funimations/gj8tagm/;1610717676;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JohnCarterofAres;;MAL;[];;https://myanimelist.net/animelist/Morpheus1035;dark;text;t2_iictn;False;False;[];;I would rather wait a year or more than watch a cam rip. Maybe that makes me a snob but I just can't stand them.;False;False;;;;1610643418;;False;{};gj8td5o;False;t3_kx3bdv;False;False;t1_gj8i08e;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8td5o/;1610717727;16;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheRantMan321;light;text;t2_efp1aj;False;False;[];;"Are the movies aorth watching as of eva fan? - -I loved the anime and the EOE movie. - -However, I heard that the 3.0 movies change the story into a more traditional superhero type of story. Not what I’m looking for when watching eva. - -Are the movies cannon after the original ending, or are they just side content?";False;False;;;;1610643481;;False;{};gj8tiir;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8tiir/;1610717832;1;True;False;anime;t5_2qh22;;0;[]; -[];;;karneheni;;;[];;;;text;t2_4lmei044;False;False;[];;"ive seen some shot video from AoT in which Levi dodges bullets (tens of bullets exactly) - -is it Body Constitution too?";False;False;;;;1610643482;;False;{};gj8tinm;False;t3_kx2twh;False;True;t1_gj8igvc;/r/anime/comments/kx2twh/attack_on_titan_question/gj8tinm/;1610717834;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RHO-PI;;;[];;;;text;t2_32yngflb;False;False;[];;"Which is explained through speed force which exists in the DC universe. There are plenty of things in our own universe that have no explanation yet, such as the existence of charge which causes electromagnetic force or the existence of neutron decay or why -273.15° C is absolute zero, etc. - -I'm not saying it's not magic, but it still follows a set of rules. And the allotrope/isomer explanation for variation in wall hardness is quite feasible.";False;False;;;;1610643498;;False;{};gj8tjxe;False;t3_kx2twh;False;False;t1_gj8rkrd;/r/anime/comments/kx2twh/attack_on_titan_question/gj8tjxe/;1610717857;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Ashteron;;;[];;;;text;t2_10ndkv;False;False;[];;That's Shinji.;False;False;;;;1610643504;;False;{};gj8tkg8;False;t3_kx3bdv;False;False;t1_gj8qx71;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8tkg8/;1610717867;5;True;False;anime;t5_2qh22;;0;[]; -[];;;infamous090;;;[];;;;text;t2_2jh4ncp6;False;False;[];;So this movie takes place after “The End of Evangelion”?;False;False;;;;1610643507;;False;{};gj8tknp;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8tknp/;1610717872;1;True;False;anime;t5_2qh22;;0;[]; -[];;;420gitgudorDIE;;;[];;;;text;t2_hzo2h43;False;False;[];;"i only watch NGE and EoE. its my fav anime of all time. - -im scared to watch the other ones as i am too attached to the original characters and storyline. like i read that older Misato in 3.0 is just like Shinjis father, Ikari used to be. what a way to spoil my memory of a younger her. - -lol. - -imho, all the other movies are just some marketing ripoffs meant to purely suck money from the target audiance. -totally unnecessary. - -am i totally wrong and are missing out on some shit?";False;False;;;;1610643541;;False;{};gj8tnj9;False;t3_kx3bdv;False;True;t1_gj8qr2x;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8tnj9/;1610717927;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;It's post-limiter release right? Going feral is *tight*.;False;False;;;;1610643606;;False;{};gj8tssy;False;t3_kx3bdv;False;False;t1_gj8o6j2;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8tssy/;1610718035;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Psycho-Radish;;;[];;;;text;t2_74tplhjd;False;False;[];;"You have to understand that a lot of artists/creatives tend to downplay the significance of their work and of certain creative choices they take (see David Lynch.) So whenever artists say stuff like that, you kind of have to take it with a grain of salt, especially when it's coming from someone as self deprecating and dry as Anno. - -But even if Anno's statements about the Christian iconography of Eva are 100% true, the most important part of the most experimental bits of Eva *isn't* the Christian iconography, it's still the emotional journey of Shinji (the show makes that abundantly clear), and even as a first time viewer I was able to follow that aspect of the show without trouble.";False;False;;;;1610643619;;False;{};gj8ttx3;False;t3_kx3bdv;False;False;t1_gj8ss5m;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8ttx3/;1610718057;39;True;False;anime;t5_2qh22;;0;[]; -[];;;Lerbyn210;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Lerbyn;light;text;t2_kkmj9;False;False;[];;I think they use titans as a core and then humans built of of them;False;False;;;;1610643673;;False;{};gj8tyfr;False;t3_kx2twh;False;True;t3_kx2twh;/r/anime/comments/kx2twh/attack_on_titan_question/gj8tyfr/;1610718139;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mapatric;;;[];;;;text;t2_15cj29;False;False;[];;I hated the original anime like I didn't know I could hate a tv show. A shocking amount of hate. My SO tells me the movies are better but I'm waiting for this to come out before I watch them.;False;False;;;;1610643702;;False;{};gj8u0ty;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8u0ty/;1610718184;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazzlike_Razzmatazz;;;[];;;;text;t2_5ybf9h66;False;False;[];;"And i have seen video where tons of people die without Titan doing anything. - -Yup Levi body is much different from normal eldians and humans..lol even humans in AOT can't Dodge bullets.";False;False;;;;1610643729;;False;{};gj8u332;False;t3_kx2twh;False;True;t1_gj8tinm;/r/anime/comments/kx2twh/attack_on_titan_question/gj8u332/;1610718224;2;True;False;anime;t5_2qh22;;0;[]; -[];;;420gitgudorDIE;;;[];;;;text;t2_hzo2h43;False;False;[];;money talks! remember?;False;False;;;;1610643773;;False;{};gj8u6pe;False;t3_kx3bdv;False;True;t1_gj8jrfj;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8u6pe/;1610718291;0;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeOfGlory72;;;[];;;;text;t2_uecc5;False;False;[];;When some asks what something is, saying “watch it” isn’t super helpful.;False;False;;;;1610643892;;False;{};gj8ugfz;False;t3_kx3bdv;False;False;t1_gj823mi;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8ugfz/;1610718468;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Im_a_corpse;;;[];;;;text;t2_tl0w2k;False;False;[];;Congratulations clap clap claps;False;False;;;;1610643940;;False;{};gj8ukcd;False;t3_kx3bdv;False;False;t1_gj8qt85;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8ukcd/;1610718539;10;True;False;anime;t5_2qh22;;0;[]; -[];;;BlueDragon101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Xcal1bur?status=7&order=4&orde";light;text;t2_11q4nx;False;False;[];;They probably can, but it’s not deep enough to be useful. They also never tried because by the time they learned it was the same material they never had the chance to try out this theory.;False;False;;;;1610643942;;False;{};gj8ukjl;False;t3_kx2twh;False;True;t3_kx2twh;/r/anime/comments/kx2twh/attack_on_titan_question/gj8ukjl/;1610718543;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal-Year-42;;;[];;;;text;t2_7iey47u6;False;False;[];;Patrick Rothfuss and George R.R. Martin really need to step up their game.;False;False;;;;1610643997;;False;{};gj8uoz9;False;t3_kx3bdv;False;False;t1_gj89m8t;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8uoz9/;1610718627;11;True;False;anime;t5_2qh22;;0;[]; -[];;;h_hue;;;[];;;;text;t2_965gj878;False;False;[];;"Haruhi Hunting was a pretty big troll. All that for a Pachinko... - -At least new LN, right?";False;False;;;;1610644037;;False;{};gj8us8h;False;t3_kx3bdv;False;False;t1_gj8pi7t;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8us8h/;1610718689;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VolqenLewds;;;[];;;;text;t2_7ixvghun;False;True;[];;I prefer the new movies. And I can seperate both stories from one another. Like the new movies doesn't change my opinion on the old series;False;False;;;;1610644149;;False;{};gj8v1bx;False;t3_kx3bdv;False;False;t1_gj8tnj9;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8v1bx/;1610718862;9;True;False;anime;t5_2qh22;;0;[]; -[];;;420gitgudorDIE;;;[];;;;text;t2_hzo2h43;False;False;[];;how do you feel about older Misato in 3.0?;False;False;;;;1610644232;;False;{};gj8v882;False;t3_kx3bdv;False;False;t1_gj8v1bx;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8v882/;1610718993;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;kvbt7;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kvbt;light;text;t2_446n5ucc;False;False;[];;They are still milking this?;False;False;;;;1610644293;;False;{};gj8vdag;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8vdag/;1610719107;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vnaux;;;[];;;;text;t2_14j5c9bo;False;False;[];;Soon™.;False;False;;;;1610644382;;False;{};gj8vkme;False;t3_kx3bdv;False;True;t1_gj8di6w;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8vkme/;1610719257;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeMangaGod;;;[];;;;text;t2_8deiyv1x;False;False;[];;Oh, it's been delayed again. I'm not surprised.;False;False;;;;1610644414;;False;{};gj8vna6;False;t3_kx3bdv;False;True;t1_gj7sgv4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8vna6/;1610719312;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KeimaKatsuragi;;;[];;;;text;t2_9bqm5;False;False;[];;"And here I thought we were going to have a discussion on what anime outros can bring... -I was all hyped up, ready to shake my fist angrily at Un-Go's ending for openly mocking me with a brilliant fucking sneaky move. -It's been years and I'm still mad it dared and pulled it off!";False;False;;;;1610644501;;False;{};gj8vuhz;False;t3_kx2t19;False;True;t3_kx2t19;/r/anime/comments/kx2t19/a_discussion_about_anime_endings/gj8vuhz/;1610719463;2;True;False;anime;t5_2qh22;;0;[]; -[];;;VolqenLewds;;;[];;;;text;t2_7ixvghun;False;True;[];;She's cool. More mature and badass;False;False;;;;1610644560;;False;{};gj8vz9i;False;t3_kx3bdv;False;False;t1_gj8v882;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8vz9i/;1610719554;8;True;False;anime;t5_2qh22;;0;[]; -[];;;itharius;;;[];;;;text;t2_6k1sq;False;False;[];;"I cant tell if your serious or not. But i was under the impression its titled as such because of Japanese culture and surrounding vibes with the number 4. Since 4 is pronounced shi which is the word for death - -Unless the joke flew over my head. Its been a long day";False;False;;;;1610644619;;False;{};gj8w4bs;False;t3_kx3bdv;False;True;t1_gj8m0va;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8w4bs/;1610719653;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GlassCannon642;;;[];;;;text;t2_3nez30e9;False;False;[];;Three months later: New Eva movie announcement;False;False;;;;1610644630;;False;{};gj8w592;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8w592/;1610719671;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeMangaGod;;;[];;;;text;t2_8deiyv1x;False;False;[];;great username;False;False;;;;1610644689;;False;{};gj8wa8v;False;t3_kx3bdv;False;False;t1_gj8n87u;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8wa8v/;1610719764;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MulletPower;;;[];;;;text;t2_54h1r;False;False;[];;"Except I have noticed it happening and given you examples that happened in 2019 and 2017 respectively. That also happened under completely different circumstances than what happened this season. - -I can't find or think of any other recent examples going through what different services have simulcasted over the past year. Something happening once every couple of years isn't something I would consider common or ""happening all the time"". - -I also stand by the fact that it has never happened with 3 series in a single season.";False;False;;;;1610644791;;False;{};gj8wirg;True;t3_kx6q54;False;True;t1_gj8tagm;/r/anime/comments/kx6q54/crunchyrolls_disappointing_lineup_and_funimations/gj8wirg/;1610719945;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KeimaKatsuragi;;;[];;;;text;t2_9bqm5;False;False;[];;"...to this day I've stopped watching Code Geass like 2 or 3 episodes from the end, all those years ago. Not for any particular reason, I got busy, then distracted, then just never went back and finished it. -I never felt like I was missing out since.";False;False;;;;1610644796;;False;{};gj8wj6c;False;t3_kx2t19;False;True;t1_gj7tjp4;/r/anime/comments/kx2t19/a_discussion_about_anime_endings/gj8wj6c/;1610719953;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wyrd_Alphonse;;;[];;;;text;t2_6dv8cqn2;False;False;[];;lol, I meant the one between Shinji and Asuka.;False;False;;;;1610644806;;False;{};gj8wjzg;False;t3_kx3bdv;False;True;t1_gj8tkg8;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8wjzg/;1610719969;1;True;False;anime;t5_2qh22;;0;[]; -[];;;prrg;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/prrg/;light;text;t2_j0167;False;False;[];;It was released in theaters as a movie but it is divided in 2 episodes (25' and 26') and has had many releases separated as such in home video.;False;False;;;;1610644936;;False;{};gj8wuot;False;t3_kx3bdv;False;True;t1_gj8q6qx;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8wuot/;1610720207;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ph0ton;;;[];;;;text;t2_4n25b;False;False;[];;It was so fucking stupid. They went out of their way in the original series to show the scale and logistics of making a giant robot work in the real world. They ultimately had to resort to literally creating a baby god to even have something to fight the angels. The stakes were enormous, and things like power usage had real consequences (like engineering a gigantic substation just to shoot a gun). Then this movie happens where fucking WW2 styled battleships fly around like fucking jet fighters, and everyone is un-aged because REASONS. And the emotional stakes are gone because there is no salvageable relationship in the entire show, everyone is a grimdark version of themselves. And the whole dynamic of Shinji discovering his sexuality, while simultaneously confronted with the biggest existential threat is replaced with dumbshit piano duets. Every character is a dumber version of themselves to suit the dumb fucking plot, and the eye-candy is not even worth the effort to be subjected to such idiocy.;False;False;;;;1610644946;;False;{};gj8wvk8;False;t3_kx3bdv;False;False;t1_gj86owp;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8wvk8/;1610720226;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Im_a_corpse;;;[];;;;text;t2_tl0w2k;False;False;[];;Hello, fellow stand user.;False;False;;;;1610644957;;False;{};gj8wwg0;False;t3_kx3bdv;False;True;t1_gj8slym;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8wwg0/;1610720253;1;True;False;anime;t5_2qh22;;0;[]; -[];;;XNumbers666;;;[];;;;text;t2_nphgc;False;False;[];;Of course it is. I'll never forgive the Chinese!;False;False;;;;1610645345;;False;{};gj8xs7l;False;t3_kx2uao;False;False;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj8xs7l/;1610720839;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MulletPower;;;[];;;;text;t2_54h1r;False;False;[];;"Japan has been steadily increasing in cases per day since November. Which is probably due to them loosening restrictions on public gatherings in the months leading up. - -I don't think the Demon Slayer movie is responsible or anything like that. But, the holidays only exacerbated what was already trending upwards. It wasn't the sole cause.";False;False;;;;1610645361;;1610645587.0;{};gj8xtlm;False;t3_kx2uao;False;False;t1_gj7y135;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj8xtlm/;1610720865;6;True;False;anime;t5_2qh22;;0;[]; -[];;;dabaldeagle;;;[];;;;text;t2_jm1kn;False;False;[];;I'll believe when I see it;False;False;;;;1610645368;;False;{};gj8xu6k;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8xu6k/;1610720877;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NoDespair;;;[];;;;text;t2_11h1e0;False;False;[];;You can (not) watch;False;False;;;;1610645416;;False;{};gj8xy25;False;t3_kx2uao;False;False;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj8xy25/;1610720949;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;Weren’t they able to take Eren out of the hardening ? Couldn’t the same happen with Annie ?;False;False;;;;1610645442;;False;{};gj8y05k;True;t3_kx2twh;False;True;t1_gj812wh;/r/anime/comments/kx2twh/attack_on_titan_question/gj8y05k/;1610720988;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"Roses are red - -Violets are blue - -Evangelion will never come to a theater near you";False;False;;;;1610645551;;False;{};gj8y90f;False;t3_kx2uao;False;False;t1_gj7qi4p;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj8y90f/;1610721156;13;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610645601;;False;{};gj8yd46;False;t3_kx2dfb;False;True;t3_kx2dfb;/r/anime/comments/kx2dfb/on_an_anime_kick_recommend_me_some_stuff_to_watch/gj8yd46/;1610721232;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hot_constellation;;;[];;;;text;t2_4totbimj;False;False;[];;as long as the utada song doesn’t get delayed, i’m good;False;False;;;;1610645703;;False;{};gj8ylhd;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8ylhd/;1610721396;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JuiceInevitable1;;;[];;;;text;t2_7v2fflqw;False;False;[];;My question is why Willy said the walls where made of colossal Titans but the Titian in the wall we saw didn't look like one. Was that a plot inconsistency or intentional?;False;False;;;;1610645724;;False;{};gj8yn6o;False;t3_kx2twh;False;True;t3_kx2twh;/r/anime/comments/kx2twh/attack_on_titan_question/gj8yn6o/;1610721429;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;"Must definitely be intentional. I doubt AoT will have lore inconsistencies. - -Maybe he meant “colossal” as gigantic and huge, and not as in the Colossal Titan (shifter). - -Whatever it is, will probably learn soon.";False;False;;;;1610645914;;1610701696.0;{};gj8z2s5;True;t3_kx2twh;False;False;t1_gj8yn6o;/r/anime/comments/kx2twh/attack_on_titan_question/gj8z2s5/;1610721740;0;True;False;anime;t5_2qh22;;0;[]; -[];;;auron_py;;;[];;;;text;t2_5cvts;False;False;[];;I cannot believe that it's been ***13 years*** since I watched the first movie...;False;False;;;;1610645949;;False;{};gj8z5k5;False;t3_kx3bdv;False;True;t1_gj80u1s;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8z5k5/;1610721794;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Redracerb18;;MAL;[];;https://myanimelist.net/profile/;dark;text;t2_15t6vi;False;False;[];;I mean the gutenberg museum in New York City is one room in a spiral going up the levels showcasing art. Also look at the outside;False;False;;;;1610645964;;False;{};gj8z6tz;False;t3_kx3bdv;False;False;t1_gj8rg4l;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8z6tz/;1610721820;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;"The shock value of the first episode of Goblin Slayer is hard to beat. - -All right, fantasy-adventure anime, let's go! We have our heroes whom we'll soon learn more about and cheer for.... Then one gets chopped up, one is gangraped, one poisoned and one wets herself, and it's just 8 minutes in. 😲 I'm sure I've seen better first episode, but this is the most memorable for me.";False;False;;;;1610645964;;False;{};gj8z6vx;False;t3_kx5ma0;False;True;t3_kx5ma0;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj8z6vx/;1610721822;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Redracerb18;;MAL;[];;https://myanimelist.net/profile/;dark;text;t2_15t6vi;False;False;[];;Kingdom Hearts: 3.54 beats over memory;False;False;;;;1610646030;;False;{};gj8zc7n;False;t3_kx3bdv;False;False;t1_gj8rkx7;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8zc7n/;1610721928;22;True;False;anime;t5_2qh22;;0;[]; -[];;;ThatOtherOneReddit;;;[];;;;text;t2_as880;False;False;[];;It will be translated before the VN is ever translated.;False;False;;;;1610646073;;False;{};gj8zfoa;False;t3_kx2uao;False;True;t1_gj8fzy4;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj8zfoa/;1610721994;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BeniHana-;;;[];;;;text;t2_5kv8aysh;False;False;[];;"As the movies relate to the anime.. what order should I be watching the movies? @.@;";False;False;;;;1610646086;;False;{};gj8zgr3;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8zgr3/;1610722014;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;It's not naive, it's an apt description of a standard watered down mecha story;False;False;;;;1610646093;;False;{};gj8zh98;False;t3_kx2twh;False;True;t1_gj8sq86;/r/anime/comments/kx2twh/attack_on_titan_question/gj8zh98/;1610722024;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Andrex316;;;[];;;;text;t2_8xluv;False;False;[];;Hmmm maybe? I think a lot of the feeling comes from nostalgia of so many of us waiting for this for over a decade lol;False;False;;;;1610646176;;False;{};gj8zo1q;False;t3_kx3bdv;False;True;t1_gj8n87u;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8zo1q/;1610722163;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AlAck3;;;[];;;;text;t2_18bpvvg;False;False;[];;True, but Asuka's behavior towards others is much aggressive. Anyway, the point of the anime is understand others, so doesn't make a lot of sense shit-talk about the characters.;False;False;;;;1610646225;;False;{};gj8zs2o;False;t3_kx3bdv;False;False;t1_gj8pabh;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj8zs2o/;1610722242;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Pet___Shob;;;[];;;;text;t2_8e3zsvx9;False;False;[];;"Yeah -Lets fight titans with fucking robots and some weirdo in the army of robots can kill peoplw writing - - -Yeah";False;False;;;;1610646366;;False;{};gj903on;False;t3_kx21oe;False;False;t3_kx21oe;/r/anime/comments/kx21oe/pls_help_anime_suggestions_are_needed/gj903on/;1610722475;1;True;False;anime;t5_2qh22;;0;[]; -[];;;teamsprocket;;;[];;;;text;t2_5pb8v;False;False;[];;Maybe try to watch the movie in a more abstract, non literal way this time.;False;False;;;;1610646402;;False;{};gj906nh;False;t3_kx3bdv;False;False;t1_gj8keg1;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj906nh/;1610722534;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Silverwarriorin;;;[];;;;text;t2_2gevwg7n;False;False;[];;Damn, it was gonna air like 2 days before my birthday too;False;False;;;;1610646446;;False;{};gj90a6r;False;t3_kx3bdv;False;True;t1_gj7sgv4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj90a6r/;1610722612;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Steampunkvikng;;;[];;;;text;t2_ghzaj;False;False;[];;"ufotable anime are usually subbed on release. Meanwhile their close associates at Type-Moon apparently cannot comprehend the concept of a ""foreign market"".";False;False;;;;1610646547;;False;{};gj90in2;False;t3_kx2uao;False;False;t1_gj8zfoa;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj90in2/;1610722790;11;True;False;anime;t5_2qh22;;0;[]; -[];;;vivianjp02;;;[];;;;text;t2_4ckd9xf4;False;False;[];;Does MGS4 not count?;False;False;;;;1610646760;;False;{};gj910ce;False;t3_kx3bdv;False;True;t1_gj8t3pu;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj910ce/;1610723162;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JaybieFromTheLB;;;[];;;;text;t2_fuxkp;False;False;[];;Evangelion 4 ÷ 2² : No More Evangelion For Real This time.;False;False;;;;1610646877;;False;{};gj919sy;False;t3_kx3bdv;False;False;t1_gj8ecvm;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj919sy/;1610723348;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Toomuchgamin;;;[];;;;text;t2_h2k67;False;False;[];;I am pretty sure they are discontinued, don't feel bad about it.;False;False;;;;1610646970;;False;{};gj91hjq;False;t3_kx3bdv;False;True;t1_gj8sx6y;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj91hjq/;1610723505;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kuddlesworth9419;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kuddlesworth;light;text;t2_btage;False;False;[];;I'm a visual kind of guy I like the visuals more then the symbolism stuff. That thing doesn't interest me much.;False;False;;;;1610647101;;False;{};gj91s8t;False;t3_kx3bdv;False;True;t1_gj906nh;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj91s8t/;1610723717;1;True;False;anime;t5_2qh22;;0;[]; -[];;;neovenator250;;;[];;;;text;t2_920kp;False;False;[];;not a surprise, but disappointing;False;False;;;;1610647299;;False;{};gj928ay;False;t3_kx2uao;False;True;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj928ay/;1610724042;1;True;False;anime;t5_2qh22;;0;[]; -[];;;neovenator250;;;[];;;;text;t2_920kp;False;False;[];;"> And now, after Demon Slayer stays atop the box office for... what was it 10 weeks - -13. I mean, damn. Imagine how huge it would have been without the pandemic";False;False;;;;1610647333;;False;{};gj92b2q;False;t3_kx2uao;False;True;t1_gj814gb;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj92b2q/;1610724093;3;True;False;anime;t5_2qh22;;0;[]; -[];;;panix24;;;[];;;;text;t2_14s1pw;False;False;[];;"“Coming 2021. Together we will overcome... - -...especially Shinji, if you know what I mean.”";False;False;;;;1610647499;;False;{};gj92oc7;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj92oc7/;1610724359;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ej_stephens;;;[];;;;text;t2_3d6h2d18;False;False;[];;I am shock;False;False;;;;1610647573;;False;{};gj92ub4;False;t3_kx2uao;False;True;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj92ub4/;1610724475;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sapo_Pisado;;;[];;;;text;t2_9mi8wmpa;False;False;[];;"Eren's hardening is not crystallizing. - -Since Annie is able to concentrate the hardening, it crystalizes to wherever she concentrates it. - -As such, since the cocoon she's in covers a relatively small area, considering that Annie isn't in Titan form, it's concentrated enough to be crystalized and effectively impenetrable. - -Eren's hardening is more diffuse so that it covers a larger area, so even though it's structurally strong, it's more brittle. - -Now, imagine Eren's hardening, but concentrated in a small area and thus, hyper-dense. That's Annie's hardening.";False;False;;;;1610647770;;False;{};gj939xk;False;t3_kx2twh;False;False;t1_gj8y05k;/r/anime/comments/kx2twh/attack_on_titan_question/gj939xk/;1610724769;14;True;False;anime;t5_2qh22;;0;[]; -[];;;ChumpTori1910;;;[];;;;text;t2_5pgsiym1;False;False;[];;"""Wear your fucking mask as well""";False;False;;;;1610647873;;False;{};gj93i6h;False;t3_kx3bdv;False;False;t1_gj8cmyc;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj93i6h/;1610724924;18;True;False;anime;t5_2qh22;;0;[]; -[];;;GeicoLizardBestGirl;;;[];;;;text;t2_6aix7qlq;False;False;[];;Its become the new cyberpunk 2077 at this point;False;False;;;;1610647879;;False;{};gj93iqp;False;t3_kx2uao;False;True;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj93iqp/;1610724935;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;When Eren used his hardening on his knuckles, it still breaks. Isn’t that a small area ?;False;False;;;;1610648205;;False;{};gj948ny;True;t3_kx2twh;False;True;t1_gj939xk;/r/anime/comments/kx2twh/attack_on_titan_question/gj948ny/;1610725440;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sapo_Pisado;;;[];;;;text;t2_9mi8wmpa;False;False;[];;"Annie's is specific to her Titan. It's literally one of its powers. - -Eren's is acquired. It's more like Reiner's, who also has little control over it.";False;False;;;;1610648318;;False;{};gj94hsy;False;t3_kx2twh;False;True;t1_gj948ny;/r/anime/comments/kx2twh/attack_on_titan_question/gj94hsy/;1610725617;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BladeLigerV;;;[];;;;text;t2_fssmb;False;False;[];;Appropriate;False;False;;;;1610648389;;False;{};gj94nf1;False;t3_kx3bdv;False;True;t1_gj80u1s;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj94nf1/;1610725727;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GreasySmig;;;[];;;;text;t2_5fo1ipld;False;False;[];;That’s exactly what I thought. I watched the show for the first time when I became and adult and understood it completely. All my friends watched it at younger ages and complained that it made no sense. Shinji is a real character that’s why he can be unfavorable to people who use anime as an escape;False;False;;;;1610648403;;False;{};gj94oiu;False;t3_kx3bdv;False;False;t1_gj8ttx3;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj94oiu/;1610725751;12;True;False;anime;t5_2qh22;;0;[]; -[];;;CrashParade;;;[];;;;text;t2_180hxxve;False;False;[];;"We evolve beyond the person we were a minute before! Little by little, we advance a bit further with each turn. That's how a printing press works!! - -And then you have to go back to release the page from the press otherwise it's pretty pointless I guess, but my metaphore still stands!";False;False;;;;1610648472;;False;{};gj94u2y;False;t3_kx3bdv;False;False;t1_gj8rg4l;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj94u2y/;1610725859;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Pinkywho4884;;;[];;;;text;t2_4lhuoagm;False;False;[];;Honestly, I’m not one to call shit on authors, I think they deserve having more stuff going on than finishing a book, but I understand this mood;False;False;;;;1610648532;;False;{};gj94yup;False;t3_kx3bdv;False;False;t1_gj8uoz9;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj94yup/;1610725957;8;True;False;anime;t5_2qh22;;0;[]; -[];;;MCPO_John117;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MCPO_John117;light;text;t2_xx973;False;False;[];;You heard about the remake man??? Finally !!!;False;False;;;;1610648695;;False;{};gj95br2;False;t3_kx3bdv;False;True;t1_gj8gle0;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj95br2/;1610726227;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FoxyRussian;;;[];;;;text;t2_854xq;False;False;[];;Think you might be confused, episodes 25 and 26 are way different than the movie. From budget to how it tells the events that are taking place at that time.;False;False;;;;1610648796;;False;{};gj95ju9;False;t3_kx3bdv;False;True;t1_gj8wuot;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj95ju9/;1610726384;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MyLittleRocketShip;;;[];;;;text;t2_yg6qc;False;False;[];;BRUH WTF JUST RELEASAE ITT ANNOO;False;False;;;;1610648816;;False;{};gj95lf7;False;t3_kx3bdv;False;True;t1_gj7sgv4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj95lf7/;1610726417;1;True;False;anime;t5_2qh22;;0;[]; -[];;;the420muffincake;;;[];;;;text;t2_2884g4t6;False;False;[];;Is this a new plot or like the remixes that they did in the Evangelion afterbirth or whatever it was called.;False;False;;;;1610648898;;False;{};gj95s2a;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj95s2a/;1610726548;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TristanTheta;;;[];;;;text;t2_3snm3xf0;False;False;[];;Coming out on my birthday 😎😎😎;False;False;;;;1610649023;;False;{};gj9624e;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9624e/;1610726749;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Folseit;;;[];;;;text;t2_3oi2e;False;False;[];;And still no Sacchin route. Isn't that sad?;False;False;;;;1610649067;;False;{};gj965lm;False;t3_kx3bdv;False;True;t1_gj8gle0;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj965lm/;1610726813;1;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;My favorites would be Re Zero and AoT.;False;False;;;;1610649101;;False;{};gj968dj;False;t3_kx5ma0;False;True;t3_kx5ma0;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj968dj/;1610726867;1;True;False;anime;t5_2qh22;;0;[]; -[];;;csbsju_guyyy;;;[];;;;text;t2_aiy98;False;False;[];;omedetou たたく たたく たたく;False;False;;;;1610649115;;False;{};gj969hq;False;t3_kx3bdv;False;False;t1_gj8ukcd;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj969hq/;1610726889;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610649172;;False;{};gj96e17;False;t3_kx6kaz;False;True;t1_gj8b2jb;/r/anime/comments/kx6kaz/horrible_fanservice_in_anime/gj96e17/;1610726983;0;True;False;anime;t5_2qh22;;0;[]; -[];;;librarycar;;;[];;;;text;t2_dj0xj;False;False;[];;I think for the first time, i kinda understand this anime.. I just glossed over it as a weird mech fighting genre and completely ignored anything thematic.;False;False;;;;1610649850;;False;{};gj97w1w;False;t3_kx3bdv;False;True;t1_gj8bju8;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj97w1w/;1610728029;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jaehaerys48;;;[];;;;text;t2_h2nmn;False;False;[];;We got that in 2006;False;False;;;;1610650144;;False;{};gj98jh8;False;t3_kx3bdv;False;True;t1_gj8kvwj;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj98jh8/;1610728475;0;True;False;anime;t5_2qh22;;0;[]; -[];;;no_modest_bear;;;[];;;;text;t2_71kmg;False;False;[];;Which final one? End of Evangelion? Or did you think they were only doing three movies?;False;False;;;;1610650372;;False;{};gj991uy;False;t3_kx3bdv;False;True;t1_gj8jrfj;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj991uy/;1610728841;2;True;False;anime;t5_2qh22;;0;[]; -[];;;m00sician_;;;[];;;;text;t2_ruv6oui;False;True;[];;I feel like she was supposed to have her role revealed in movie 3 before it got scrapped and remade. Now she's just along for the ride and I don’t expect that to change in movie 4.;False;False;;;;1610650414;;False;{};gj9959a;False;t3_kx3bdv;False;False;t1_gj8cxk2;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9959a/;1610728907;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Tothoro;;;[];;;;text;t2_o1ms4;False;False;[];;"> assuming Anno decides to explain it - -If anyone's buying this, I also happen to have a bridge for sale.";False;False;;;;1610650509;;False;{};gj99cuc;False;t3_kx3bdv;False;True;t1_gj81qwq;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj99cuc/;1610729061;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaybulge;;;[];;;;text;t2_2x2rgrif;False;False;[];;Evangelion 3.0+1.0: You Can (Not) Release;False;False;;;;1610650886;;False;{};gj9a74a;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9a74a/;1610729656;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kimbolll;;;[];;;;text;t2_4dzc32vx;False;False;[];;The movie exists, but it’s the 6 minute intro we saw months back, and then another 95 minutes consisting of three stills of Shinji crying in the fetal position in Unit 01 on loop. No words, just crying sounds.;False;False;;;;1610651029;;False;{};gj9aibs;False;t3_kx3bdv;False;True;t1_gj80u1s;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9aibs/;1610729885;2;True;False;anime;t5_2qh22;;0;[]; -[];;;phengooo_;;;[];;;;text;t2_7ma3o2fm;False;False;[];;I never saw the 2.0 and 3.0 movies anyone know where I can see them and if there’s a secret newer series tell me.;False;False;;;;1610651437;;False;{};gj9behi;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9behi/;1610730530;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Viron_22;;;[];;;;text;t2_eyjtt;False;False;[];;Just release it so it can be over already, I don't care if it is a pocket universe after EoE or whatever stupid bullshit twist they attach to it to justify Rebuild's existence get it over with and leave Eva in peace.;False;False;;;;1610651561;;False;{};gj9bocz;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9bocz/;1610730724;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610651652;;False;{};gj9bves;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9bves/;1610730857;0;True;False;anime;t5_2qh22;;0;[]; -[];;;GreatSmithanon;;;[];;;;text;t2_wp5mt;False;False;[];;I maintain that Evangelion is the most overrated anime of all time, and I cannot for the life of me understand why there is still shit being made for it decades after End of Evangelion.;False;False;;;;1610651727;;False;{};gj9c1eg;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9c1eg/;1610730972;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Oum-asaiah;;;[];;;;text;t2_wshbn;False;False;[];;No red ocean seems to suggest no Third Impact, so maybe;False;False;;;;1610652135;;False;{};gj9cxnr;False;t3_kx3bdv;False;True;t1_gj7x5mz;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9cxnr/;1610731604;1;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"Tons of famous live action shows are vastly more heavy with sexual content than pretty much any show that actually uses fanservice you have to get to borderline hentai like Reviewers to get close to anything approaching a lot of Western live action shows or series like Castlevania. I would be vastly more uncomfortable watching shows like Game of Thrones or the Expanse with people than My Hero Academia. - -Sure there is an issue with it but it's not the existence of sexual content it's how it's used. Plus is isn't as common as people make it out to be there is so much you can recommend to someone that doesn't have any sexual content.";False;False;;;;1610652171;;False;{};gj9d0hx;False;t3_kx6y1v;False;True;t1_gj8ewdr;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj9d0hx/;1610731665;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CreatineGoblin;;;[];;;;text;t2_9eceos99;False;False;[];;Damn so hyped... last installment in the entire series but I cannot wait to see it. Also I need to buy a poster of that;False;False;;;;1610652213;;False;{};gj9d3s2;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9d3s2/;1610731724;1;True;False;anime;t5_2qh22;;0;[]; -[];;;prrg;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/prrg/;light;text;t2_j0167;False;False;[];;"You should probably check the wiki yourself. End of Eva contains episodes 25' ""Air"" and 26' ""Sincerely Yours"", these are different from episodes 25 ""A World That's Ending"" and 26 ""The Beast That Shouted 'I' at the End of the World"".";False;False;;;;1610652417;;False;{};gj9dk3i;False;t3_kx3bdv;False;True;t1_gj95ju9;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9dk3i/;1610732042;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;">not the existence of sexual content it's how it's used. - -I'm fine with shows that have sexual content like Devilman Crybaby and Inuyashiki. It's how it's used. But this posts was talking about fanservice it's not the same as asking what we think of nudity in anime etc... - - - ->Plus is isn't as common as people make it out to be there is so much you can recommend to someone that doesn't have any sexual content. - -Never said it was common. I am saying if there's a show I enjoy but it has random fanservice that makes it difficult to recommend to others.";False;False;;;;1610652558;;False;{};gj9dvd3;False;t3_kx6y1v;False;True;t1_gj9d0hx;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj9dvd3/;1610732273;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BagFullOfKittenBones;;;[];;;;text;t2_bf3u0z8;False;False;[];;It's more like George Lucas never directing anything Star Wars again. And he hasn't since selling the franchise.;False;False;;;;1610652582;;False;{};gj9dxay;False;t3_kx3bdv;False;False;t1_gj8owjk;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9dxay/;1610732312;11;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"One you need then to define what fanservice is? Often it is just people talking about sexual content at all. Ignoring that you could see well it is any frivolous sexual content that doesn't add anything to the story and I would argue a lot of Western shows do go overboard with scenes that don't add much. - -The only really difference is how it's used and if you eliminated pretty much most of the slapstick all the critiques for anime fanservice is gone for the most part. It can be done well so saying that it's never done well is kinda ridiculous. I am just saying watching any shows with heavy sexual content would be embarrassing with friends personally regardless of the context.";False;False;;;;1610652849;;False;{};gj9eidx;False;t3_kx6y1v;False;True;t1_gj9dvd3;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj9eidx/;1610732736;1;True;False;anime;t5_2qh22;;0;[]; -[];;;svenEsven;;;[];;;;text;t2_b9o0a;False;False;[];;Were the restrictions not in place when the Demon Slayer Movie released?;False;False;;;;1610652891;;False;{};gj9elmp;False;t3_kx2uao;False;True;t1_gj7qi4p;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj9elmp/;1610732805;1;True;False;anime;t5_2qh22;;0;[]; -[];;;stargunner;;;[];;;;text;t2_4a979;False;False;[];;Anno directs live action movies now. I’d like to see him do more animation but at this point finishing the rebuilds just feels like an obligation.;False;False;;;;1610652966;;False;{};gj9erfb;False;t3_kx3bdv;False;False;t1_gj8owjk;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9erfb/;1610732919;6;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;">I would argue a lot of Western shows do go overboard with scenes that don't add much. - -I would agree with you there. Fast and Furious, Dead Pool etc... the list goes on and on. I never denied that. - ->The only really difference is how it's used and if you eliminated pretty much most of the slapstick all the critiques for anime fanservice is gone for the most part. - -Yes but unfortunately the slapstick is there. - ->I am just saying watching any shows with heavy sexual content would be embarrassing with friends personally regardless of the context. - -True. I should make it clear I dislike unnecessary fanservice in both western live-action media and anime too. I can barely watch the music videos to American songs because they are so heavily sexualised.";False;False;;;;1610653005;;False;{};gj9eufn;False;t3_kx6y1v;False;True;t1_gj9eidx;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj9eufn/;1610732976;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The_nickums;;MAL;[];;http://myanimelist.net/profile/Snakpak;dark;text;t2_9gxz1;False;False;[];;"[Manga spoiler](/s ""I don't know if you're answering this as a reader or not, but Annie explicitly states later on that hardening is not one of her abilities. She got it the same way that Eren did."")";False;False;;;;1610653012;;False;{};gj9euyp;False;t3_kx2twh;False;False;t1_gj94hsy;/r/anime/comments/kx2twh/attack_on_titan_question/gj9euyp/;1610732987;12;True;False;anime;t5_2qh22;;0;[]; -[];;;CONCHFACE;;;[];;;;text;t2_42ouljco;False;False;[];;As an adult, I see so much of myself in Shinji and it made Eva so much more visceral and poignant for me. My heart breaks for him every single time, and he always reminds me to give my inner 14 year old more empathy and love.;False;False;;;;1610653039;;False;{};gj9ex2e;False;t3_kx3bdv;False;False;t1_gj94oiu;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9ex2e/;1610733029;4;True;False;anime;t5_2qh22;;0;[]; -[];;;charmslad;;;[];;;;text;t2_tdsdd;False;False;[];;I need a poster of this ASAP;False;False;;;;1610653073;;False;{};gj9ezqq;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9ezqq/;1610733081;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BasroilII;;;[];;;;text;t2_2yjoujdz;False;False;[];;Dude. What would this movie be without at least one more delay? Ain't even mad.;False;False;;;;1610653087;;False;{};gj9f0sd;False;t3_kx2uao;False;True;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj9f0sd/;1610733101;2;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"Well yeah I didn't deny that on the slapstick that's why my reply to this thread is in large I don't like how anime uses fanservice. I just don't think that means all anime fanservice is bad inherently or that you can't use it well. - -Last point okay fair you are consistent at least. - -I just do think sexual content can add to a plot the problem is that it's just often overused and not properly used. Even to something that isn't just legit porn. Even legit porn in hentai can make good content that is removed from it's sexual content because of how it uses it.";False;False;;;;1610653133;;False;{};gj9f4gk;False;t3_kx6y1v;False;True;t1_gj9eufn;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj9f4gk/;1610733171;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The_nickums;;MAL;[];;http://myanimelist.net/profile/Snakpak;dark;text;t2_9gxz1;False;False;[];;"I'm up to date on the manga and I don't remember it ever being mentioned that there was different kinds of hardening. Some things are just strong enough to pierce through it. The swords can't, but the 3DMG can. So can the Thunder Spears. We will be seeing more about how hard the hardening really is soon. - -But to answer your question directly, its never talked about why they dont break her out. If I had to wager a guess, it would be too hard for them to do it and keep her alive for questioning, without also risking her immediately re-crystalizing. - -The issue was never if they could break her out, it was how could they stop her from immediately re-crystalizing.";False;False;;;;1610653278;;False;{};gj9ffxf;False;t3_kx2twh;False;True;t1_gj7r7kd;/r/anime/comments/kx2twh/attack_on_titan_question/gj9ffxf/;1610733401;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Verzwei;;;[];;;;text;t2_cmzqb;False;False;[];;"Two of the three shows you mentioned (Promised Neverland, Cells at Work) are Aniplex titles. Aniplex is owned by Sony. Funimation was bought by Sony a couple years ago, and it took some time for consolidation, cooperation, and content sharing to work its way down the pike. - -So these shows have less to do with CR being bought by Sony, but rather they're the end result of Funimation being bought by Sony a little while back. Aniplex didn't have its own anime streaming service in-house nor via parent or sister companies, so Aniplex would let multiple third-party platforms (like CR or Funi) license the content for streaming. Now that Funi and Aniplex are under the Sony umbrella together, Funi has slowly been getting more exclusivity of Aniplex titles. A notable one about a year ago was the second season of Kaguya-sama, which was Funimation-exclusive and also coincided with the announcement that Funi would be dubbing the series. And Kaguya S2 happened way before the deal was reached for Sony to buy CR. - -In Log Horizon's case, LH is so old that the North American market landscape was vastly different than it is now. CR likely had streaming (and only streaming) license while Sentai Filmworks picked up the home release license. Licening agreements aren't indefinite, and they have to be renewed. It looks like Log Horizon Season 1's time came up sometime last year as it fell off of CR and Sentai's HiDive at the same time last October. HiDive still has season 2 but I'd bet that eventually it will fall off as well.";False;False;;;;1610653337;;1610654066.0;{};gj9fkn7;False;t3_kx6q54;False;True;t1_gj8djh7;/r/anime/comments/kx6q54/crunchyrolls_disappointing_lineup_and_funimations/gj9fkn7/;1610733496;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;">I just do think sexual content can add to a plot - -Like showing the development of romance, brothels etc... I get that. That's usually fine as long as it's handled tastefully. - ->is that it's just often overused and not properly used. - -I agree. Sometimes Game of Thrones used it properly other times it would use it too much and in a tasteless manner.";False;False;;;;1610653342;;False;{};gj9fl01;False;t3_kx6y1v;False;True;t1_gj9f4gk;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj9fl01/;1610733503;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Another_Road;;;[];;;;text;t2_q6ncf;False;False;[];;"With all due respect to Evangelion... - -This franchise is pretentious as fuck.";False;False;;;;1610653438;;False;{};gj9fsmx;False;t3_kx3bdv;False;False;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9fsmx/;1610733660;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_nickums;;MAL;[];;http://myanimelist.net/profile/Snakpak;dark;text;t2_9gxz1;False;False;[];;"> I doubt AoT will have lore inconsistencies. - -It does, but this is not one of them. The titans in the walls are smaller than THE colossal titan, but larger than any other titan. iirc the wall titans are all exactly 50m and the Colossal is 63m";False;False;;;;1610653464;;False;{};gj9fup1;False;t3_kx2twh;False;False;t1_gj8z2s5;/r/anime/comments/kx2twh/attack_on_titan_question/gj9fup1/;1610733700;5;True;False;anime;t5_2qh22;;0;[]; -[];;;maullido;;;[];;;;text;t2_knqi8;False;False;[];;you will (not) be released (?;False;False;;;;1610653707;;False;{};gj9gdqp;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9gdqp/;1610734088;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;...I thought the plot of Wonder Egg Priority was perfectly followable.;False;False;;;;1610654090;;False;{};gj9h7uc;False;t3_kx5ma0;False;True;t1_gj84ohn;/r/anime/comments/kx5ma0/best_favourite_first_episode/gj9h7uc/;1610734710;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bones552;;;[];;;;text;t2_l2y5d;False;False;[];;Nice haiku;False;False;;;;1610654151;;False;{};gj9hcon;False;t3_kx3bdv;False;True;t1_gj8kc8c;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9hcon/;1610734810;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SMA2343;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/HispanicName;light;text;t2_6xzja;False;False;[];;"Bye bye Eva - -Covid: nah";False;False;;;;1610654366;;False;{};gj9htfw;False;t3_kx2uao;False;True;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj9htfw/;1610735165;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DTGG;;;[];;;;text;t2_511wi;False;False;[];;I'd say it's basically 100% guaranteed. Ufotable + Type Moon has been printing money for both, has to be one of the most successful partnerships in anime history.;False;False;;;;1610654382;;False;{};gj9huo0;False;t3_kx2uao;False;False;t1_gj8eh3i;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj9huo0/;1610735190;4;True;False;anime;t5_2qh22;;0;[]; -[];;;QuirrelBug;;;[];;;;text;t2_5oniu080;False;False;[];;"I can sympathize with GRRM's situation more because while he was still actively writing at a decent pace, the popularity of the show completely eclipsed his story he was trying to write in the books. And having the ending be completely turfed and the reputation of your story damaged like that is probably not very motivating for trying to complete it. Sure it was his decision to sell the rights to TV and now he is rich as hell so not saying we should pity him, but at least he still provides updates and is trying to finish it at his own pace. He says he's been writing a lot during COVID. - -With Rothfuss it feels more like he just has no interest in finishing what he started and almost feels spite towards the fans who want it done. Obviously I don't know his psyche on a personal level but this is just the impression he gives to the public, which is a lot more frustrating IMO.";False;False;;;;1610654593;;False;{};gj9ib8k;False;t3_kx3bdv;False;True;t1_gj8uoz9;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9ib8k/;1610735539;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mancko28;;;[];;;;text;t2_ilezm;False;False;[];;I know nothing about the Evangelion franchise. Is it worth watching ? I've heard there are some mixed feelings about the ending and I just can't say I enjoyed show no matter how good it was unless the ending is satisfying.;False;False;;;;1610655231;;False;{};gj9jouc;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9jouc/;1610736575;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610655608;;False;{};gj9kiqu;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9kiqu/;1610737170;1;True;False;anime;t5_2qh22;;0;[]; -[];;;2-15-18-5-4-15-13;;;[];;;;text;t2_1435ebib;False;False;[];;Is 1.11 different enough to be worth watching other than just to remind you of the show then?;False;False;;;;1610655658;;False;{};gj9kmo4;False;t3_kx3bdv;False;False;t1_gj87hji;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9kmo4/;1610737247;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WhichEmailWasIt;;;[];;;;text;t2_3eli5yip;False;False;[];;The Rebuilds were originally just gonna be a retelling of the series but 2.0 mixed things up a bit and 3.0 went completely off the rails into its own thing. End of Eva is still the end of NGE unless you go down the rabbit hole of fan theories.;False;False;;;;1610656024;;False;{};gj9lfnp;False;t3_kx3bdv;False;True;t1_gj8jrfj;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9lfnp/;1610737796;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PhenomsServant;;;[];;;;text;t2_xladq;False;False;[];;Just admit it. This movie doesnt exist;False;False;;;;1610656025;;False;{};gj9lfqw;False;t3_kx2uao;False;False;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj9lfqw/;1610737797;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PhenomsServant;;;[];;;;text;t2_xladq;False;False;[];;Ill believe it when I see it;False;False;;;;1610656071;;False;{};gj9ljsr;False;t3_kx2uao;False;True;t1_gj7t75l;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gj9ljsr/;1610737873;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NostalgicAstronaut;;;[];;;;text;t2_eovpl;False;False;[];;"If I remember correctly, there's only real subtle differences > >";False;False;;;;1610656128;;False;{};gj9loxa;False;t3_kx3bdv;False;True;t1_gj9kmo4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9loxa/;1610737965;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gan-san;;;[];;;;text;t2_163vhy;False;False;[];;">The stakes were enormous, and things like power usage had real consequences (like engineering a gigantic substation just to shoot a gun). - -That was my favorite episode of the whole series.";False;False;;;;1610656226;;False;{};gj9ly4s;False;t3_kx3bdv;False;True;t1_gj8wvk8;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9ly4s/;1610738128;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TwistedPurpose;;;[];;;;text;t2_9cggq;False;False;[];;My fake theory is that the world will end the first second the movie is shown. Our world cannot exist in a timeline that has a completed and viewed Evangalion 3.0+1.0;False;False;;;;1610656450;;False;{};gj9mi95;False;t3_kx3bdv;False;True;t1_gj80u1s;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9mi95/;1610738494;1;True;False;anime;t5_2qh22;;0;[]; -[];;;profmcstabbins;;;[];;;;text;t2_rwhz5;False;False;[];;Is this series any good? I've watched the original series and End of Eva. I know I've seen characters that aren't in the original so how does it relate?;False;False;;;;1610656468;;False;{};gj9mjuv;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9mjuv/;1610738521;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Key_Chain;;;[];;;;text;t2_kn1ek;False;False;[];;Will this be the final?;False;False;;;;1610656499;;False;{};gj9mmuy;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9mmuy/;1610738572;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tinkai;;;[];;;;text;t2_5upv9;False;False;[];;"Pretty ironic people constantly shitting on the Rebuilds because Anno created the Rebuilds for the people who didn't understand the message he was trying do convey in the anime series. - -Once again those people don't understand the message in the Rebuild and are stuck fighting each other over being different from the anime series.";False;False;;;;1610656648;;False;{};gj9n1gp;False;t3_kx3bdv;False;False;t1_gj8nrzt;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9n1gp/;1610738826;5;True;False;anime;t5_2qh22;;0;[]; -[];;;blueypigy;;;[];;;;text;t2_851db7lp;False;False;[];;nice;False;False;;;;1610656675;;False;{};gj9n47c;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9n47c/;1610738873;1;True;False;anime;t5_2qh22;;0;[]; -[];;;couchpotatopotato;;;[];;;;text;t2_67outa3z;False;False;[];;I hope that's how I feel soon too. The last 2 years felt like an Impact;False;False;;;;1610657024;;False;{};gj9o25w;False;t3_kx3bdv;False;True;t1_gj8f2uw;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9o25w/;1610739473;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sabak121;;;[];;;;text;t2_173uva;False;False;[];;go for it and give it a try there are 2 version of ending of the main series. I personally didn't like the series ending but i loved the movie ending one.;False;False;;;;1610657065;;False;{};gj9o64d;False;t3_kx3bdv;False;True;t1_gj9jouc;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9o64d/;1610739548;2;True;False;anime;t5_2qh22;;0;[]; -[];;;couchpotatopotato;;;[];;;;text;t2_67outa3z;False;False;[];;It's because 4.0 sounds like the word for death in Japanese and I think Anno must have wanted a more hopeful sounding title than something that can be seen as 'Evangelion Death.';False;False;;;;1610657192;;False;{};gj9oii0;False;t3_kx3bdv;False;True;t1_gj87k8a;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9oii0/;1610739782;2;False;False;anime;t5_2qh22;;0;[]; -[];;;couchpotatopotato;;;[];;;;text;t2_67outa3z;False;False;[];;What book is it referencing?;False;False;;;;1610657225;;False;{};gj9oll1;False;t3_kx3bdv;False;True;t1_gj8k4j2;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9oll1/;1610739860;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;They are 50m Titans, the actual colossal Titan is 63;False;False;;;;1610657488;;False;{};gj9paln;False;t3_kx2twh;False;True;t1_gj8yn6o;/r/anime/comments/kx2twh/attack_on_titan_question/gj9paln/;1610740322;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;It was supposed to come out in 2015, but Anno got involved in Shin Godzilla and it got delayed, from there we had no release date given until last year, when it was supposed to be out in 2020, delayed to January 2021 because of COVID and delayed again because of COVID.;False;False;;;;1610658184;;False;{};gj9r3sx;False;t3_kx3bdv;False;True;t1_gj8du01;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9r3sx/;1610741490;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;New plot, first movie is a straight up remake, second diverges more, third is brand new.;False;False;;;;1610658242;;False;{};gj9r8zd;False;t3_kx3bdv;False;False;t1_gj95s2a;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9r8zd/;1610741585;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;No, the Rebuilds are their own timeline.;False;False;;;;1610658293;;False;{};gj9rdlo;False;t3_kx3bdv;False;True;t1_gj8tknp;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9rdlo/;1610741678;0;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;They wanted to tell a different story, simple.;False;False;;;;1610658308;;False;{};gj9rezu;False;t3_kx3bdv;False;True;t1_gj8svs2;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9rezu/;1610741700;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;Rebuilds are their own thing.;False;False;;;;1610658324;;False;{};gj9rgg4;False;t3_kx3bdv;False;True;t1_gj8tiir;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9rgg4/;1610741725;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wireless_poptart;;;[];;;;text;t2_6fglrzhw;False;False;[];;What’s it about?;False;False;;;;1610659327;;False;{};gj9u0mw;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9u0mw/;1610743475;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MejaBersihBanget;;;[];;;;text;t2_4a6wkvny;False;False;[];;Not for me. The Konosuba movie camrip was the most fun ever because it captured the audience reaction, plus it was recorded on a tripod mounted at the back of the theater so there was no shaking or movement.;False;False;;;;1610659801;;False;{};gj9v8so;False;t3_kx3bdv;False;False;t1_gj8i08e;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9v8so/;1610744348;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Patrick4356;;;[];;;;text;t2_504ke1hu;False;False;[];;Annie's isn't specific to her titan, the beast, Annie and Eren all obtained the hardening power to make them more effective;False;False;;;;1610659930;;False;{};gj9vksj;False;t3_kx2twh;False;True;t1_gj94hsy;/r/anime/comments/kx2twh/attack_on_titan_question/gj9vksj/;1610744552;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MejaBersihBanget;;;[];;;;text;t2_4a6wkvny;False;False;[];;"> With Rothfuss it feels more like he just has no interest in finishing what he started and almost feels spite towards the fans who want it done. Obviously I don't know his psyche on a personal level but this is just the impression he gives to the public, which is a lot more frustrating IMO. - -His editor called him out [last summer](https://www.kirkusreviews.com/news-and-features/articles/patrick-rothfuss-editor-calls-him-out-on-facebook/) and publicly said she believes he hasn't written a single word of the third book. She was pissed at him enough to say this on the record.";False;False;;;;1610659947;;False;{};gj9vmae;False;t3_kx3bdv;False;False;t1_gj9ib8k;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9vmae/;1610744576;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDudeMR9;;;[];;;;text;t2_11q1isda;False;False;[];;The chick holding her shoes up , she was only in one movie right? No anime or anything , just for fan service they’ve added new female?? What’s her impact on the story??;False;False;;;;1610659952;;False;{};gj9vmnr;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9vmnr/;1610744582;1;True;False;anime;t5_2qh22;;0;[]; -[];;;icantfindadamnname1;;;[];;;;text;t2_1wnr16bp;False;False;[];;I don’t even follow the series but seeing “bye bye all of Evangelion” made me sad;False;False;;;;1610659971;;False;{};gj9voca;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9voca/;1610744611;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tdragon25;;;[];;;;text;t2_11qv7k;False;False;[];;My brain goes immediately to Fire Force on that;False;False;;;;1610660026;;False;{};gj9vt7q;False;t3_kx6y1v;False;True;t1_gj8db2r;/r/anime/comments/kx6y1v/how_fan_service_effects_the_viewers/gj9vt7q/;1610744699;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MejaBersihBanget;;;[];;;;text;t2_4a6wkvny;False;False;[];;"> It's a reboot but arguably a sequel. - -So, Final Fantasy VII Remake then?";False;False;;;;1610660051;;False;{};gj9vva8;False;t3_kx3bdv;False;True;t1_gj858iq;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9vva8/;1610744736;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MejaBersihBanget;;;[];;;;text;t2_4a6wkvny;False;False;[];;"The superstition isn't exclusive to Japan. It originated in China and spread to every country that adopted the Chinese writing system. So Japan, the Koreas, and Vietnam, plus many places in Southeast Asia with a large overseas Chinese community like Singapore and Malaysia. - -There are some hotels in Hong Kong that skip both floor 4 and 13 (thanks to being a British colony for 99 years and having Western superstitions absorbed). They replace the buttons with things like ""F"" and ""12A.""";False;False;;;;1610660154;;False;{};gj9w4qu;False;t3_kx3bdv;False;True;t1_gj8imex;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9w4qu/;1610744924;2;True;False;anime;t5_2qh22;;0;[]; -[];;;joepanda111;;;[];;;;text;t2_5s5mm;False;False;[];;"Fucking autocorrect is a monster at times. - -But just for you I won’t Correct it via a edit - -It’s supposed to be Gurren Lagann for those unaware";False;False;;;;1610660200;;False;{};gj9w91k;False;t3_kx3bdv;False;False;t1_gj8rg4l;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9w91k/;1610744999;3;True;False;anime;t5_2qh22;;0;[]; -[];;;infamous090;;;[];;;;text;t2_2jh4ncp6;False;False;[];;Oh so do I need to watch anything before this to get caught up?;False;False;;;;1610660262;;False;{};gj9weof;False;t3_kx3bdv;False;True;t1_gj9rdlo;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9weof/;1610745094;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UMPIN;;;[];;;;text;t2_cl9xp;False;False;[];;Well they literally explained how Shinji's choice to not go with instrumentality meant that everyone gets to choose a second chance at life. With Shinji and Asuka being the first two people we see who have decided that.;False;False;;;;1610660487;;False;{};gj9wyuj;False;t3_kx3bdv;False;False;t1_gj91s8t;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9wyuj/;1610745447;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KailReed;;;[];;;;text;t2_9cpo2;False;False;[];;Kingdom Hearts 360 noscope soggy bottom boys: Remix;False;False;;;;1610660591;;False;{};gj9x8fy;False;t3_kx3bdv;False;False;t1_gj8zc7n;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9x8fy/;1610745621;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaynin;;;[];;;;text;t2_crtg2;False;False;[];;"its supposed to be, its basically all drugs and mental illness. - -The story is just underlying.";False;False;;;;1610660667;;False;{};gj9xfgm;False;t3_kx3bdv;False;True;t1_gj9fsmx;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9xfgm/;1610745739;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;Watch the other Rebuilds, that's it.;False;False;;;;1610660709;;False;{};gj9xjc9;False;t3_kx3bdv;False;False;t1_gj9weof;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9xjc9/;1610745802;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;I've never played final fantasy, so I'll explain it. Things that changed in the original are present in the rebuild. In the ending of the original, the sea turned red, and a stripe of blood was painted on the moon, in the rebuild they are still there, so its evident that the events of the original happened in this timeline. There are multiple theories that try to explain how any of this makes sense.;False;False;;;;1610660971;;False;{};gj9y6w6;False;t3_kx3bdv;False;True;t1_gj9vva8;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9y6w6/;1610746210;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Broly_;#12679b;ann;[];d01f2890-bcaf-11e4-9b5c-22000b3d83a4;Illegal Streaming Sites;light;text;t2_rrxeu;False;False;[];;Quick someone give me a summary catch-up on what the hell's going on in Evangelion.;False;False;;;;1610661096;;False;{};gj9ygjm;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9ygjm/;1610746386;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wyattknight151;;;[];;;;text;t2_546uv5ep;False;False;[];;Is there actually a new movie/show coming out?!;False;False;;;;1610661275;;False;{};gj9yuhl;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9yuhl/;1610746647;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610661528;;False;{};gj9zdx8;False;t3_kx3bdv;False;True;t1_gj8o6j2;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9zdx8/;1610747027;1;True;False;anime;t5_2qh22;;0;[]; -[];;;amirokia;;;[];;;;text;t2_3innu2wt;False;False;[];;I think she's supposed to be the commom denominator as to why things suddenly become so different;False;False;;;;1610661544;;False;{};gj9zf5r;False;t3_kx3bdv;False;True;t1_gj8cxk2;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gj9zf5r/;1610747052;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheRantMan321;light;text;t2_efp1aj;False;False;[];;"I gave up on haruhi ages ago. - -I'm already suffering waiting for HxH to return. I can't keep my hopes up for other series as well lol - -At least beserk fans are eating, even if slowly";False;False;;;;1610662013;;False;{};gja0dyj;False;t3_kx3bdv;False;True;t1_gj8nt0j;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gja0dyj/;1610747742;1;True;False;anime;t5_2qh22;;0;[]; -[];;;amirokia;;;[];;;;text;t2_3innu2wt;False;False;[];;"It's 90% a recap of the first 6 episodes but the last few minutes completely spoils something that happens in episode 16. So just because of that I recommend watching it. - -Ohh and there's a few changes that can suggest rebuilds are sequels to EoE but it's just speculation for now";False;False;;;;1610662030;;False;{};gja0f6j;False;t3_kx3bdv;False;True;t1_gj9kmo4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gja0f6j/;1610747776;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mythriz;;;[];;;;text;t2_d37v0;False;False;[];;together, we will overcome (covid-19);False;False;;;;1610662122;;False;{};gja0lzl;False;t3_kx3bdv;False;True;t1_gj7sgf1;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gja0lzl/;1610747923;1;True;False;anime;t5_2qh22;;0;[]; -[];;;amirokia;;;[];;;;text;t2_3innu2wt;False;False;[];;Also Death is already used;False;False;;;;1610662486;;False;{};gja1cxe;False;t3_kx3bdv;False;True;t1_gj9oii0;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gja1cxe/;1610748479;1;True;False;anime;t5_2qh22;;0;[]; -[];;;amirokia;;;[];;;;text;t2_3innu2wt;False;False;[];;Happy is not the right word to use. More like hopeful;False;False;;;;1610662670;;False;{};gja1qad;False;t3_kx3bdv;False;True;t1_gj9wyuj;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gja1qad/;1610748746;3;True;False;anime;t5_2qh22;;0;[]; -[];;;poiqwert426;;;[];;;;text;t2_6jgj66n3;False;False;[];;I notice its says updated visual coming 2021. What does that mean? When is the movie coming?;False;False;;;;1610662697;;False;{};gja1s8s;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gja1s8s/;1610748786;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MejaBersihBanget;;;[];;;;text;t2_4a6wkvny;False;False;[];;Let's all take it seriously and weld people in their homes (like China) and shoot anyone who violates the virus curfew (like Colombia).;False;False;;;;1610663096;;False;{};gja2lmb;False;t3_kx3bdv;False;True;t1_gj8qdwv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gja2lmb/;1610749362;0;True;False;anime;t5_2qh22;;0;[]; -[];;;h_hue;;;[];;;;text;t2_965gj878;False;False;[];;Hey a new LN just released last year, at least that is something.;False;False;;;;1610664430;;False;{};gja5alw;False;t3_kx3bdv;False;True;t1_gja0dyj;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gja5alw/;1610751184;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610664523;;False;{};gja5hfc;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gja5hfc/;1610751305;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610664531;;False;{};gja5i1j;False;t3_kx3bdv;False;True;t1_gj8qr2x;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gja5i1j/;1610751315;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610664537;;False;{};gja5ify;False;t3_kx3bdv;False;True;t1_gj8zc7n;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gja5ify/;1610751324;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610664546;;False;{};gja5j2p;False;t3_kx3bdv;False;True;t1_gj8bxc6;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gja5j2p/;1610751336;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;"Where in the fuck did I say that? I said Japan didn't take it seriously and they haven't. - - -Masks and distancing were always optional. This whole narrative of ""Japan handled COVID Fine"" is pretty false from everything I've seen. It didn't ravage them like other countries, but the government has done nothing to actually prevent it. - - -No travel restrictions for nationals(foreigners couldn't enter), quarantine was option for nationals(again, foreigners had to or they would risk losing visa status). - - - -I've followed it enough through Japanese Twitter users to know their Government shrugged it off, because they really don't want to miss the Olympics this year. - - -But sure, pretend I said that.";False;False;;;;1610665237;;False;{};gja6x44;False;t3_kx3bdv;False;True;t1_gja2lmb;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gja6x44/;1610752304;1;False;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;If they actually make an anime, chances of the VN getting an official translation at least increase;False;False;;;;1610665784;;False;{};gja7zs4;False;t3_kx2uao;False;True;t1_gj8fzy4;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gja7zs4/;1610753023;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aperture_Kubi;;;[];;;;text;t2_3n9pj;False;False;[];;"Netflix also uses a different dub cast and script. - -Makes me legit curious about who'll get the 3.0+1.0 dub rights. Hopefully that was a one-off.";False;False;;;;1610666687;;False;{};gja9rml;False;t3_kx3bdv;False;True;t1_gj8c4nf;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gja9rml/;1610754246;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aperture_Kubi;;;[];;;;text;t2_3n9pj;False;False;[];;">Ayanami and Nagisa standing off to the side. Poor angels. - -So then Mari is stock lillim/human then.";False;False;;;;1610666796;;False;{};gja9z57;False;t3_kx3bdv;False;True;t1_gj8f2uw;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gja9z57/;1610754387;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Depends on the prefecture, but was business as usual for the majority of them, that's why it made so much money;False;False;;;;1610667650;;False;{};gjabn7g;False;t3_kx2uao;False;True;t1_gj9elmp;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gjabn7g/;1610755510;3;True;False;anime;t5_2qh22;;0;[]; -[];;;svenEsven;;;[];;;;text;t2_b9o0a;False;False;[];;Thanks, I had no idea.;False;False;;;;1610667675;;False;{};gjabowl;False;t3_kx2uao;False;True;t1_gjabn7g;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gjabowl/;1610755539;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ArmGray;;;[];;;;text;t2_y0dpel2;False;False;[];;"> I said Japan didn't take it seriously and they haven't. - -> It didn't ravage them like other countries, but the government has done nothing to actually prevent it. - -How do you reconcile these two statements?";False;False;;;;1610668102;;False;{};gjacipc;False;t3_kx3bdv;False;True;t1_gja6x44;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjacipc/;1610756115;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TehGuyYouKnow;;;[];;;;text;t2_10oui1gf;False;False;[];;Curious, which movies do I need to watch for this alternate story? I've watched Eva and end of eva but id like to watch this as well.;False;False;;;;1610668694;;False;{};gjadnwo;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjadnwo/;1610756871;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mrtheliger;;;[];;;;text;t2_11ghbg;False;False;[];;Holy fuck Anno it doesn't have to be perfect;False;False;;;;1610669001;;False;{};gjae9ao;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjae9ao/;1610757262;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;"##HAHAHAHAHAHAHAHAHAHAHAHA -You Can (Not) Release";False;False;;;;1610669871;;False;{};gjafx9z;False;t3_kx2uao;False;False;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gjafx9z/;1610758335;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;Ufotable is remaking the VN, they aren't adapting it to anime;False;False;;;;1610669887;;False;{};gjafydz;False;t3_kx2uao;False;True;t1_gj8eh3i;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gjafydz/;1610758354;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;No, but it will come to BDs in April and torrents the week after;False;False;;;;1610669936;;False;{};gjag1sh;False;t3_kx2uao;False;False;t1_gj8y90f;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gjag1sh/;1610758416;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;"I said it wouldn't come out in January, and got downvoted to hell. -I won't believe it's released until I see camrip torrents on ****";False;False;;;;1610670025;;False;{};gjag7zm;False;t3_kx2uao;False;False;t1_gj7t1lj;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gjag7zm/;1610758526;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;"more like, ""Aren't we sure this movie IS fake by now?""";False;False;;;;1610670051;;False;{};gjag9tw;False;t3_kx2uao;False;True;t1_gj7si73;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gjag9tw/;1610758559;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Balmong7;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Balmong7;light;text;t2_10sn5g;False;False;[];;I heard somewhere on the internet that she was basically created as a commentary on what a person who actually wanted to pilot an eva would look like. Something to do with criticism anno received over how all his characters in eva are depressed.;False;False;;;;1610670965;;False;{};gjai1an;False;t3_kx3bdv;False;True;t1_gj8cxk2;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjai1an/;1610759718;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Balmong7;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Balmong7;light;text;t2_10sn5g;False;False;[];;Worse they tell him that they don't NEED him to pilot an Eva. His literally worst fear is to not be needed and they outright tell him its come true.;False;False;;;;1610671164;;False;{};gjaif1v;False;t3_kx3bdv;False;True;t1_gj8d6ay;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjaif1v/;1610759960;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610671751;;False;{};gjajkm6;False;t3_kx3bdv;False;False;t1_gj8pihu;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjajkm6/;1610760690;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xiavex;;;[];;;;text;t2_14uco8;False;False;[];;"First two movies were awesome and IMO were on the right track. Third movie was an incomprehensible shit show, with a lot of stuff going on that no one cared to explain and I fear this movie will go the same route which is going to be a shame. - -Now watch as this comment gets downvoted to hell.";False;False;;;;1610672393;;False;{};gjaktog;False;t3_kx3bdv;False;False;t1_gj9ygjm;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjaktog/;1610761493;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ghostkill221;;;[];;;;text;t2_bfzkl;False;False;[];;"Me too, I also liked how weird that one girl felt. Like ""Why is there a regular person among all these worthless rejects?""";False;False;;;;1610672414;;False;{};gjakv93;False;t3_kx3bdv;False;True;t1_gj8qr2x;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjakv93/;1610761521;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ghostkill221;;;[];;;;text;t2_bfzkl;False;False;[];;I'm pretty sure KH took notes on writing a well structured storyline.;False;False;;;;1610672555;;False;{};gjal4xe;False;t3_kx3bdv;False;True;t1_gj8rkx7;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjal4xe/;1610761691;2;True;False;anime;t5_2qh22;;0;[]; -[];;;A_Certain_Observer;;;[];;;;text;t2_rhut5;False;False;[];;Nah corporate wants none of lewd Eva shit, things will be taken down from internet.;False;False;;;;1610673350;;False;{};gjamn8z;False;t3_kx3bdv;False;True;t1_gj8lw09;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjamn8z/;1610762707;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bingox2;;;[];;;;text;t2_6rsw4;False;False;[];;It's getting a new one soon;False;False;;;;1610673447;;False;{};gjamtve;False;t3_kx3bdv;False;True;t1_gj8glqw;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjamtve/;1610762825;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;"Have you looked at their recent numbers? This is the result of their government doing nothing until it was needed. They tried to blame the foreigners and night clubs and everything else under the sun, besides nationals for so long. - -They got lucky that it didn't get bad until now.";False;False;;;;1610674251;;False;{};gjaocuc;False;t3_kx3bdv;False;True;t1_gjacipc;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjaocuc/;1610763838;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Alukrad;;;[];;;;text;t2_2m3mahp;False;False;[];;"Someone suggested me to watch this long ass video explaining different dimensions to the series. I didn't realize that the show actually had this level of complexity to it... - -There are games, mangas, even the anime all tell a different story. - -So, where does this OVA go? Is this different timeline theory true? Why is this show is so confusing. What's the true time line?";False;False;;;;1610675180;;False;{};gjaq4we;False;t3_kx3bdv;False;True;t1_gj8s45y;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjaq4we/;1610765005;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Belgand;;MAL;[];;http://myanimelist.net/animelist/Belgand;dark;text;t2_a7cha;False;True;[];;Even before then his actual directing output was minimal. *THX* in 1971, *American Graffiti* in 1973, *A New Hope* in 1977, and then... nothing until *The Phantom Menace* in 1999. He was certainly *involved* in a number of projects but had basically ceased to be a director. I see Anno as going in the same direction. More of a producer than anything.;False;False;;;;1610675295;;False;{};gjaqcob;False;t3_kx3bdv;False;True;t1_gj9dxay;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjaqcob/;1610765138;3;True;False;anime;t5_2qh22;;0;[]; -[];;;janoDX;;;[];;;;text;t2_bowtb;False;False;[];;Netflix should just pay the millions and put it there. They can pull off 150-200 million for the movie, and I believe it can shatter records on streaming.;False;False;;;;1610675600;;False;{};gjaqxap;False;t3_kx2uao;False;True;t1_gj7t75l;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gjaqxap/;1610765494;0;True;False;anime;t5_2qh22;;0;[]; -[];;;janoDX;;;[];;;;text;t2_bowtb;False;False;[];;Only that it will be better than that dumpster fire of a movie.;False;False;;;;1610675821;;False;{};gjarcbp;False;t3_kx2uao;False;True;t1_gj7xqjz;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gjarcbp/;1610765763;1;True;False;anime;t5_2qh22;;0;[]; -[];;;janoDX;;;[];;;;text;t2_bowtb;False;False;[];;Netflix can throw the money if they negotiate. I can almost assure it will shatter records on Netflix if released there.;False;False;;;;1610675892;;False;{};gjarh60;False;t3_kx2uao;False;True;t1_gj825ko;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gjarh60/;1610765851;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610676269;;False;{};gjas6u4;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjas6u4/;1610766320;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mockingbirdguy;;;[];;;;text;t2_6096n672;False;False;[];;It’s a generic Shonen but a very well executed one;False;False;;;;1610676463;;False;{};gjask8v;False;t3_kx6cvu;False;True;t3_kx6cvu;/r/anime/comments/kx6cvu/your_opinion_on_black_clover/gjask8v/;1610766557;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JohnCarterofAres;;MAL;[];;https://myanimelist.net/animelist/Morpheus1035;dark;text;t2_iictn;False;False;[];;">I can almost assure it will shatter records on Netflix if released there. - -You think that *Rebuild of Evangelion* is more popular than *Stranger Things*, *The Crown*, *Orange is the New Black*, or *The Witcher*? Seriously? - -Anime is becoming mainstream, but *Evangelion* is nowhere near a household name, except in Japan where its insanely popular. There's no way a deal with Netflix would net Studio Khara more money than a Japanese box office run.";False;False;;;;1610676468;;False;{};gjaskmn;False;t3_kx2uao;False;False;t1_gjarh60;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gjaskmn/;1610766563;6;True;False;anime;t5_2qh22;;0;[]; -[];;;aimglitchz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/aimglitchz;light;text;t2_14zzu5;False;True;[];;I said a while ago this film ain't coming out, those who didn't believe me can reap their own sorrow.;False;False;;;;1610677603;;False;{};gjaupo1;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjaupo1/;1610767919;1;True;False;anime;t5_2qh22;;0;[]; -[];;;matdragon;;;[];;;;text;t2_912dn;False;False;[];;Says who and where? Most of the money comes from the popcorn and drinks in the US. The only ones really pushing for theatrical release are the theaters themselves as they're hurting;False;False;;;;1610677693;;False;{};gjauvr7;False;t3_kx2uao;False;True;t1_gj825ko;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gjauvr7/;1610768027;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Maakurai;;;[];;;;text;t2_iwufd;False;False;[];;It probably will. I'm convinced the universe is conspiring against this movie ever being released.;False;False;;;;1610678037;;False;{};gjavit8;False;t3_kx3bdv;False;True;t1_gj7vura;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjavit8/;1610768427;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aimglitchz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/aimglitchz;light;text;t2_14zzu5;False;True;[];;I said a while ago this film ain't coming out, those who didn't believe me can reap their own sorrow.;False;False;;;;1610678631;;False;{};gjawlzc;False;t3_kx2uao;False;True;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gjawlzc/;1610769085;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JohnCarterofAres;;MAL;[];;https://myanimelist.net/animelist/Morpheus1035;dark;text;t2_iictn;False;False;[];;">Says who and where? Most of the money comes from the popcorn and drinks in the US. - -Most of the money *for the theaters* comes from the popcorn and drinks. Where do you think all the ticket money goes? Its mostly to the studios. If theater releases weren't profitable for movie studios they would have stopped doing them long ago.";False;False;;;;1610678657;;False;{};gjawnrd;False;t3_kx2uao;False;True;t1_gjauvr7;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gjawnrd/;1610769113;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KasualKat;;;[];;;;text;t2_9o05bb6f;False;False;[];;The point of 3.0+1.0 is to teach us that waiting for anime is futile;False;False;;;;1610679040;;False;{};gjaxdkq;False;t3_kx3bdv;False;True;t1_gj80u1s;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjaxdkq/;1610769551;1;True;False;anime;t5_2qh22;;0;[]; -[];;;matdragon;;;[];;;;text;t2_912dn;False;False;[];;"Again ... What makes you say that, because it sounds like you're just pulling it out of your butt. You know stuff like anime makes most of it's money from merchandise right? - -Look at 2020, movies switched over to streaming services and it's gotten so popular that disney straight up is saying fuck the theaters. Movies make money from many other sources and is very rarely it's sole source of income (selling movie rights to other countries is another big one)";False;False;;;;1610679074;;1610679559.0;{};gjaxfvc;False;t3_kx2uao;False;True;t1_gjawnrd;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gjaxfvc/;1610769589;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;sliversniper;;;[];;;;text;t2_fxd43;False;False;[];;"Mari: take off the (sandy) shoes and wave the shoes at the camera. - -Interesting choice. - -I (don't) think the illustrator deliberated that.";False;False;;;;1610680760;;False;{};gjb0iup;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjb0iup/;1610771462;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Comander-07;;;[];;;;text;t2_6qc7kgv;False;False;[];;also delayed again;False;False;;;;1610682375;;False;{};gjb3hq5;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjb3hq5/;1610773249;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Chimken_Nuggs;;;[];;;;text;t2_4u9g5sfv;False;False;[];;Who is the purple haired chick;False;False;;;;1610683974;;False;{};gjb6avz;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjb6avz/;1610774910;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kenruyoh;;;[];;;;text;t2_9jbjz8if;False;False;[];;I vaguely remember that they announced 3 and 4 to be released back to back in 2013 or something when I still frequently visit ANN over 10 years ago;False;False;;;;1610684093;;False;{};gjb6i86;False;t3_kx3bdv;False;True;t1_gj80sjz;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjb6i86/;1610775026;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MontyTheBrave;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AstonMonty;light;text;t2_dxs2e;False;False;[];;"Funnily enough, I thought that 2.0 was pretty brilliant in that it ""fixes"" a lot of complaints/ wants many had with the original (Lack of romantic development, Shinji was an awful human being, etc.). - - -In a way, it's kinda like Anno saying ""Is this not what you wanted?"" as he creates a movie where Asuka and Rei have obvious feelings for Shinji, and Shinji is kinda badass and more like a typical shonen protagonist. In general, characters are much tougher mentally, and are able to quickly get over a lot of mental issues they struggled with in the OG series. And yet, despite these characters being stronger than they were, they are no better off in 3.0 where it has become apparent that the world is still FUBAR. - - -While I still prefer the OG series, I think the rebuild movies are pretty interesting, and I'm honestly glad I wasn't spoonfed the exact same series but with updated animation.";False;False;;;;1610685059;;False;{};gjb85ef;False;t3_kx3bdv;False;False;t1_gj8qr2x;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjb85ef/;1610775966;10;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;"It's song ""One Last Kiss"" is so beautiful";False;False;;;;1610685210;;False;{};gjb8emo;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjb8emo/;1610776116;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pamelm;;MAL;[];;https://myanimelist.net/profile/Dustborn;dark;text;t2_dgoml;False;False;[];;Its the Cyberpunk of anime movies. Hopefully it doesnt have Cyberpunk's release issues though;False;False;;;;1610687349;;False;{};gjbbu9i;False;t3_kx2uao;False;True;t1_gj7si73;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gjbbu9i/;1610778115;1;True;False;anime;t5_2qh22;;0;[]; -[];;;oranges-in-general;;;[];;;;text;t2_8geeu9g;False;False;[];;It’s actually the Guggenheim but close enough haha;False;False;;;;1610687862;;False;{};gjbcluw;False;t3_kx3bdv;False;False;t1_gj8z6tz;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjbcluw/;1610778550;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Alekseyev;;;[];;;;text;t2_4uoy5;False;False;[];;">he willingly started an apocalypse killing most of their friends and family - -Well, sure. If you put it THAT way.";False;False;;;;1610688955;;False;{};gjbe6yw;False;t3_kx3bdv;False;True;t1_gj8bju8;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjbe6yw/;1610779473;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yeetyboi03;;;[];;;;text;t2_4chyqnin;False;False;[];;Watch Eva 1.0,2.0 and 3.0;False;False;;;;1610690699;;False;{};gjbgndn;False;t3_kx3bdv;False;True;t1_gjb6avz;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjbgndn/;1610780828;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ArmGray;;;[];;;;text;t2_y0dpel2;False;False;[];;"Still not seeing how that tracks. So all we know is that for some *mystery* reason, despite the government not taking it ""seriously"" (whatever that means) covid numbers have remained low for the past 8 months, which is the complete opposite of what one would expect. That mirrors the experience of other countries with lenient restrictions such as what Cambodia and Switzerland have also experienced. - -Another thing to note about Japanese restrictions is that due to the history of tyrannical rule in the country during the first half of the 20th century, the Japanese Constitution [prohibits enforcement of such restrictions](https://www.reuters.com/article/us-health-coronavirus-japan-emergency-ex-idUSKBN21O08J). So masks and distancing must remain optional without a constitutional amendment. And we all how hard it is to amend a constitution.";False;False;;;;1610690710;;False;{};gjbgnx2;False;t3_kx3bdv;False;True;t1_gjaocuc;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjbgnx2/;1610780836;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yolotheunwisewolf;;;[];;;;text;t2_n1mzt;False;False;[];;"Part of how I felt with 2.0 was that the movie was both expanding on the original series with a bit of worldbuilding but also it essentially became a harem comedy around Shinji in a happy way that Eva is NOT that was a throwback to some of the final episode from the original series as one “possibility” and the ending/preview of the 3.0 makes me wonder if they either decided to move to a new direction OR if it was all simply a setup in a sort of Gainax-like twist. - -2.0 reminded me a bit of the Final Fantasy remake as it were—I thought 3.0 dealt less with the plot and more told story through familiar and unfamiliar imagery to put people in Shinji’s shoes.";False;False;;;;1610691447;;False;{};gjbhng2;False;t3_kx3bdv;False;True;t1_gj8qr2x;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjbhng2/;1610781382;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pokefreaker-san;;;[];;;;text;t2_15zitqtk;False;False;[];;does that mean they will stop milking the series?;False;False;;;;1610691787;;False;{};gjbi3ki;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjbi3ki/;1610781626;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Chimken_Nuggs;;;[];;;;text;t2_4u9g5sfv;False;False;[];;Oh, is she only in the movies?;False;False;;;;1610692726;;False;{};gjbjaeu;False;t3_kx3bdv;False;True;t1_gjbgndn;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjbjaeu/;1610782290;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yeetyboi03;;;[];;;;text;t2_4chyqnin;False;False;[];;Yea;False;False;;;;1610692744;;False;{};gjbjb86;False;t3_kx3bdv;False;True;t1_gjbjaeu;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjbjb86/;1610782303;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sergiocamjur;;;[];;;;text;t2_ywsx9wt;False;False;[];;I thought asuka represented that, until she saw shinji being a blast (thanks to mom);False;False;;;;1610696522;;False;{};gjbnmsv;False;t3_kx3bdv;False;True;t1_gjai1an;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjbnmsv/;1610784660;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LegendaryRQA;;;[];;;;text;t2_hszyq;False;False;[];;"This is by far the most baffling thing to me. How do these marketers and executives manage to not realize that the western market exists? The only reason NA got Fate/GO was basically by _accident_... A bunch of execs were at Anime Expo and saw lots of Fate CosPlayers and thought ""Wait... Fate/ is popular here?"" It's like: ""Mother fucker, this would have taken you 2 minutes to google"" you don't need a marketing degree to figure this stuff out...";False;False;;;;1610700794;;False;{};gjbs2tm;False;t3_kx2uao;False;True;t1_gj90in2;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gjbs2tm/;1610787064;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LegendaryRQA;;;[];;;;text;t2_hszyq;False;False;[];;Type-Moon is remaking the VN, UFOtable just made the PV, like they do for a lot of games.;False;False;;;;1610700905;;False;{};gjbs6tx;False;t3_kx2uao;False;True;t1_gjafydz;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gjbs6tx/;1610787126;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LegendaryRQA;;;[];;;;text;t2_hszyq;False;False;[];;"I wouldn't say 100%. - -They have options: - -On the Fate/ side of things they could still make a Hollow Ataraxia adaptation, and a remake of the Fate route (Pretty likely imo), or they could make a Mahotsukai no Yoru adaptation (Less likely, since the VNs aren't finished). Also Tsukihime would be a little more difficult to do since all the routes are far more similar to each other and they'd basically be repeating themselves.";False;False;;;;1610701312;;False;{};gjbsluc;False;t3_kx2uao;False;True;t1_gj9huo0;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gjbsluc/;1610787351;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gamebond89;;;[];;;;text;t2_1g3oy5ey;False;False;[];;Imo shinji's decisions literally felt like what should happen instead of a character being bounded by writer's own motives and depression. He finally stepped up and there's nothing wrong with that. I admire rebuild series because they really fixed many characters specially in case of Shinji. He does not feel like a character bound by plot but actually like a kid with his own feelings and motives which drives him. Because of more screen timing the movies feels more character driven rather than plot driven like series.;False;False;;;;1610702254;;False;{};gjbtjn8;False;t3_kx3bdv;False;True;t1_gj8qr2x;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjbtjn8/;1610787862;1;True;False;anime;t5_2qh22;;0;[]; -[];;;scalyblue;;;[];;;;text;t2_7chj5;False;False;[];;You are supposed to be as confused as Shinzo is thrust into that situation with zero explanation;False;False;;;;1610707527;;False;{};gjbyooj;False;t3_kx3bdv;False;True;t1_gj8cuue;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjbyooj/;1610790674;1;True;False;anime;t5_2qh22;;0;[]; -[];;;maximus_md;;;[];;;;text;t2_3nhroflm;False;False;[];;"Just watched it based off your summary; it’s definitely pretty fucking savage 😂";False;False;;;;1610711832;;False;{};gjc36a1;True;t3_kx5ma0;False;True;t1_gj8z6vx;/r/anime/comments/kx5ma0/best_favourite_first_episode/gjc36a1/;1610793235;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;R1 or R2?;False;False;;;;1610714554;;False;{};gjc6f19;False;t3_kx2t19;False;True;t1_gj8wj6c;/r/anime/comments/kx2t19/a_discussion_about_anime_endings/gjc6f19/;1610795044;1;True;False;anime;t5_2qh22;;0;[]; -[];;;anonymous_anime_guy;;;[];;;;text;t2_9e42jcfj;False;False;[];;im new on reddit idk how to ill delete this;False;False;;;;1610718793;;False;{};gjccoy5;False;t3_kx2twh;False;True;t1_gj8f728;/r/anime/comments/kx2twh/attack_on_titan_question/gjccoy5/;1610798503;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gridemann;;;[];;;;text;t2_dhsy2;False;False;[];;"Edit/Delete message options are at the bottom of your post but you can just hide spoilery content by using the format explained at the side of the subreddit. - - -> All spoilers must be tagged. The code to make a spoiler in a comment or text post body is: -> -> -> -> [Spoiler source](/s ""Spoiler goes here"")";False;False;;;;1610721512;;False;{};gjchj8f;False;t3_kx2twh;False;True;t1_gjccoy5;/r/anime/comments/kx2twh/attack_on_titan_question/gjchj8f/;1610801231;1;True;False;anime;t5_2qh22;;0;[]; -[];;;albmrbo;;;[];;;;text;t2_5ppqs;False;False;[];;RELEASE IT ONLINE GOD DAMMIT;False;False;;;;1610722954;;False;{};gjckc92;False;t3_kx2uao;False;True;t3_kx2uao;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gjckc92/;1610802929;1;True;False;anime;t5_2qh22;;0;[]; -[];;;River_sounds;;;[];;;;text;t2_y4vd1;False;False;[];;We will overcome.;False;False;;;;1610727648;;False;{};gjcu2bt;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjcu2bt/;1610809458;1;True;False;anime;t5_2qh22;;0;[]; -[];;;legwkio2;;;[];;;;text;t2_3winxodf;False;False;[];;Yeah. My stance with the EVA movies is until I see it released in theaters, I just assume that it ain't gonna air. You don't get disappointed that way.;False;False;;;;1610728634;;False;{};gjcw79l;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjcw79l/;1610810967;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Steampunkvikng;;;[];;;;text;t2_ghzaj;False;False;[];;If I had to guess, they're probably wary of the cost/return, since localizing a VN is a much larger undertaking than your average anime. Given that F/SN is one of the highest-selling VNs ever, though, they can probably make that money back.;False;False;;;;1610728948;;False;{};gjcwvws;False;t3_kx2uao;False;True;t1_gjbs2tm;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gjcwvws/;1610811443;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Psycho-Radish;;;[];;;;text;t2_74tplhjd;False;False;[];;"Just because Anno made the Rebuilds with the intention to clarify Eva, doesn't mean we can't criticize his efforts to do so. Also, even though Anno's the creator of the original Eva, that doesn't mean he's right that the original series needs clarifying. - -Artists can be wrong about their own work. If that weren't true, then Virgil wouldn't have wanted to burn the Aeneid, and George Lucas wouldn't be as much of a meme as he is. - -I'm also pretty sure a lot of O.G. eva fans like Rebuilds 1.0 and 2.0. The latter diverges more freely from the source material, but it's largely agreed upon that 2.0's the better movie. Therefore, if O.G. Eva fans criticize Rebuild 3.0, it's not just because it's different from the source material. The main criticisms I've heard mostly have to do with the movie not working as its own thing.";False;False;;;;1610736564;;False;{};gjddlib;False;t3_kx3bdv;False;True;t1_gj9n1gp;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjddlib/;1610823216;1;True;False;anime;t5_2qh22;;0;[]; -[];;;contraptionfour;;;[];;;;text;t2_fs4ki;False;False;[];;I kind of liked the string quartet scenes, if I'm remembering the right thing.;False;False;;;;1610737539;;False;{};gjdfpd0;False;t3_kx3bdv;False;True;t1_gj85jv5;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjdfpd0/;1610824692;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LegendaryRQA;;;[];;;;text;t2_hszyq;False;False;[];;"That’s part of what I meant. There is no way it’s not worth it for them. Muv-Luv made 1 million dollars on kickstarter, and I’m reasonably sure Fate/ is more popular by several orders of magnitude... It doesn’t take a genius to figure this stuff out, especially when things like Steins;Gate, Clannad, and DDLC are all on steam.";False;False;;;;1610737900;;False;{};gjdgh8t;False;t3_kx2uao;False;True;t1_gjcwvws;/r/anime/comments/kx2uao/the_theatrical_release_of_evangelion_3010_thrice/gjdgh8t/;1610825193;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BasroilII;;;[];;;;text;t2_2yjoujdz;False;False;[];;Man they keep teasing a happy ending and that has me so suspicious....;False;False;;;;1610737904;;False;{};gjdghlf;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjdghlf/;1610825199;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BasroilII;;;[];;;;text;t2_2yjoujdz;False;False;[];;At this point I think Martin is terrified to release the finale because HBO wrote something along the lines of what he planned and now he's afraid everyone will rage.;False;False;;;;1610738016;;False;{};gjdgq9y;False;t3_kx3bdv;False;True;t1_gj9ib8k;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjdgq9y/;1610825357;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BasroilII;;;[];;;;text;t2_2yjoujdz;False;False;[];;"Shinji's life isn't traumatic? - -He's the product of a self-obsessed scientist mom and a sociopathic thug of a dad. When he was just a few years old his mom intentionally brought him to work to see her be absorbed into Unit-01 and believed dead. His father more or less abandoned him at that point. - -He lived a decade in near isolation, relative peace but also relative stagnation wherein he drew further in on himself. Then the series happens. - -Gendo turns out to be worse than anyone thought as he manipulated everyone including Shinji and risks the entire world to get his wife back. - -Asuka manipulates and teases him, using him as a plaything while she throws herself at Kaji. - -Misato isn't much better, using him out of a misplaced sense of motherly affection and because he's a 'safe' man (as opposed to the danger Kaji presents her mentally). - -He gets all but forced to get in the robot, beaten up for it, gets to feel what it's like to have limbs crushed and ripped off, 'dies' multiple times, is forced to murder his best friend (remember he feels what the Eva does), then his next best friend betrays him and tries to kill everyone. And I probably missed a few points. - -The fact Shinji doesn't want to pilot is the most sensible action of any human being in Evangelion and he constantly gets shit on for it. And his life is at least as screwed up as Asuka's if not worse.";False;False;;;;1610738421;;1610738724.0;{};gjdhlh4;False;t3_kx3bdv;False;True;t1_gj8pabh;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjdhlh4/;1610825917;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BasroilII;;;[];;;;text;t2_2yjoujdz;False;False;[];;Part of me hopes that the world of the 3rd movie is another Instrumentality vision. It would go a long way to explain why everything is amped up ridiculously.;False;False;;;;1610738538;;False;{};gjdhuao;False;t3_kx3bdv;False;True;t1_gj8wvk8;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjdhuao/;1610826082;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BasroilII;;;[];;;;text;t2_2yjoujdz;False;False;[];;You will wait forever. At least one of the Fate VAs has gone on record that they will not do any more work as their Fate characters.;False;False;;;;1610738606;;False;{};gjdhzi0;False;t3_kx3bdv;False;True;t1_gj8kvwj;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjdhzi0/;1610826175;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BasroilII;;;[];;;;text;t2_2yjoujdz;False;False;[];;Yes. Even from the first few minutes there are subtle differences that hint that it might just not be a simple remake/reboot.;False;False;;;;1610738651;;False;{};gjdi31z;False;t3_kx3bdv;False;True;t1_gj9kmo4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjdi31z/;1610826236;2;True;False;anime;t5_2qh22;;0;[]; -[];;;weaver900;;;[];;;;text;t2_eap5w;False;False;[];;"They have multiple ways of saying 4 to account for this, the taboo one is し/Shi, which is pronounced the same way as death. よん/Yone is ok. - -9 and 7 also have some quirks with them too.";False;False;;;;1610743998;;False;{};gjdtbwm;False;t3_kx3bdv;False;False;t1_gj8hwl0;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjdtbwm/;1610834102;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ph0ton;;;[];;;;text;t2_4n25b;False;False;[];;"I can see how you can take that interpretation. Basically what if instrumentality caused weaboo visions of Eva to become real. The biggest flaw however is it being a joyless movie, which can't even lean on the fun of anime to see it through. It was the biggest waste of time in my life. - -Maybe you know, but I remember watching the theatrical cut of Eva 2.0 and it ending up VERY different than what I watched again. I see differences noted in the visuals between 2.0 and 2.22 but no one has confirmed if the plot changed. I remember things like the scene with Asuka in Eva unit 4, when the angel takes over she becomes surrounded by miniature Reis. It feels like a fever dream now, but most of Eva did for me. When I watched it recently, I saw they were little crosses instead and it trips me out that I could mis-remember something so visually striking (and terrifying).";False;False;;;;1610746401;;False;{};gjdyaif;False;t3_kx3bdv;False;True;t1_gjdhuao;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjdyaif/;1610837514;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lverson;;;[];;;;text;t2_ihwnz;False;False;[];;I've always wondered but was worried it was a dumb question.;False;False;;;;1610752120;;False;{};gje9k6g;False;t3_kx3bdv;False;True;t1_gj8cxk2;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gje9k6g/;1610844930;1;True;False;anime;t5_2qh22;;0;[]; -[];;;telosucciona;;;[];;;;text;t2_bfrejsn;False;False;[];;Wtf is up with all the erased ending hate? I didnt qatch it for tears due to ppl saying the ending was trash, finally watched this year after some irl recommendations and it was a great show, with a great ending. Care to explain whats so wrong with it?;False;False;;;;1610755227;;False;{};gjefcf9;False;t3_kx4qhb;False;True;t1_gj8h419;/r/anime/comments/kx4qhb/steinsgate_is_better_then_erased/gjefcf9/;1610848592;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AwakenedTraveler;;;[];;;;text;t2_52rrkzsw;False;False;[];;Just set this up, super easy and works like a charm. Thanks a lot!;False;False;;;;1610841028;;False;{};gjiqecp;True;t3_kx1vz2;False;True;t1_gj7yi20;/r/anime/comments/kx1vz2/organizing_anime_for_plex/gjiqecp/;1610939287;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AwakenedTraveler;;;[];;;;text;t2_52rrkzsw;False;False;[];;I've noticed that indeed. So far it hasn't really become too much of an issue, but I appreciate the advice. I will take a look at this, thank you.;False;False;;;;1610841097;;False;{};gjiqj0j;True;t3_kx1vz2;False;True;t1_gj8aia7;/r/anime/comments/kx1vz2/organizing_anime_for_plex/gjiqj0j/;1610939369;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ambimunch;;;[];;;;text;t2_e9rdklm;False;False;[];;See ya'll in 2022;False;False;;;;1610910065;;False;{};gjmvpwc;False;t3_kx3bdv;False;True;t3_kx3bdv;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjmvpwc/;1611021303;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Loid_Node;;;[];;;;text;t2_ea411;False;False;[];;I never played it so idek lmao;False;False;;;;1610971474;;False;{};gjpotrk;False;t3_kx3bdv;False;True;t1_gj910ce;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjpotrk/;1611083794;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SnooDonuts2285;;;[];;;;text;t2_7nkykqt1;False;False;[];;YEA FOR SURE!;False;False;;;;1610989834;;False;{};gjqidug;True;t3_kx4stl;False;True;t1_gj80b4l;/r/anime/comments/kx4stl/is_the_order_a_rabbit/gjqidug/;1611104327;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LeaderSheeper;;;[];;;;text;t2_rcrj8hj;False;False;[];;Fr. I know I'm late, but people miss the point of Evangelion's characters is to challenge archetypes and present people who behave in a far more real way. Shinji isn't living out an incredible power fantasy. Hes essentially an orphan doing anything he can to be noticed. Its not meant to be watching DBZ in which unrealistically have overflowing amounts of resolve and an inspiring willingness to fight for good. Its about people who reflect often the worst parts of us that we don't even like about ourselves.;False;False;;;;1611065081;;False;{};gjtwq85;False;t3_kx3bdv;False;True;t1_gjdhlh4;/r/anime/comments/kx3bdv/the_evangelion_3010_thrice_upon_a_time_updated/gjtwq85/;1611180842;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;And they were clever with that hoax,[ even having the music of the not existing OP produced.](https://www.youtube.com/watch?v=p8X5hG51jbA);False;False;;;;1610557309;;False;{};gj4o3pq;False;t3_kwisv4;False;False;t1_gj4g4c6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4o3pq/;1610621928;79;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610557310;;False;{};gj4o3t4;False;t3_kwisv4;False;True;t1_gj4lkgh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4o3t4/;1610621931;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CruschSenpai;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Wampeman;light;text;t2_10qtf2;False;False;[];;"I'm really glad that Re:Zero is not one of the many series that only show the ""cutesy"" parts of a relationship or have the only conflict be meaningless tsundere bullshit. - -This was a proper argument between two people with shit being thrown on either side and it made the kiss and decleration of love even more powerful and meaningful. - -I rarely care about ships in any series but if these interactions between Subaru and Emilia are what we can expect going forward then I'm going to captian this ship.";False;False;;;;1610557318;;False;{};gj4o4hp;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4o4hp/;1610621940;327;True;False;anime;t5_2qh22;;0;[]; -[];;;Artogirus;;;[];;;;text;t2_46r3rdzg;False;False;[];;At this rate, they'd have a kid anytime soon;False;False;;;;1610557325;;False;{};gj4o545;False;t3_kwisv4;False;False;t1_gj4k26f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4o545/;1610621949;10;True;False;anime;t5_2qh22;;0;[]; -[];;;jebbush1212;;;[];;;;text;t2_y3f8v1y;False;False;[];;The entire time we could see Emilia's reflection in Subaru's eyes and at the end Emilia finally accepts Subaru and we see him in her eyes!;False;False;;;;1610557335;;False;{};gj4o5x6;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4o5x6/;1610621963;1369;True;False;anime;t5_2qh22;;0;[]; -[];;;Oulak;;;[];;;;text;t2_h2nzy;False;False;[];;Please, delete;False;False;;;;1610557336;;False;{};gj4o5zr;False;t3_kwisv4;False;False;t1_gj4kwp3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4o5zr/;1610621964;292;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;To buy time and there's another reason, which is going to be explained next episode;False;False;;;;1610557337;;False;{};gj4o60j;False;t3_kwisv4;False;False;t1_gj4lrb3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4o60j/;1610621965;4;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;The rabbit would probably just attack him regardless, but maybe.;False;False;;;;1610557353;;False;{};gj4o7d0;False;t3_kwisv4;False;True;t1_gj4kuut;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4o7d0/;1610621986;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lorik_Bot;;;[];;;;text;t2_1x988uja;False;False;[];; Well the bad kiss of crazy emilia already happened.;False;False;;;;1610557358;;False;{};gj4o7ou;False;t3_kwisv4;False;False;t1_gj4dh5h;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4o7ou/;1610621990;4;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;''what matters isnt how you start,its how it ends'' i have a very odd feeling that this will bite subaru in the ass real hard, especially when u remember the roswaal conversation from last part;False;False;;;;1610557369;;1610557719.0;{};gj4o8os;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4o8os/;1610622005;3;True;False;anime;t5_2qh22;;0;[]; -[];;;garmonthenightmare;;;[];;;;text;t2_tpz2o;False;False;[];; They were punching the air since ep 1 of s2 or ep 18.;False;False;;;;1610557396;;False;{};gj4oatw;False;t3_kwisv4;False;False;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4oatw/;1610622039;4;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Isn't Re:Zero 1080p?;False;False;;;;1610557402;;False;{};gj4obaz;False;t3_kwisv4;False;True;t1_gj4m0vt;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4obaz/;1610622047;2;True;False;anime;t5_2qh22;;0;[]; -[];;;genasugelan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Genasugelan;light;text;t2_15kv3y;False;False;[];;I will not give you the lassagna this time.;False;False;;;;1610557412;;False;{};gj4oc24;False;t3_kwisv4;False;False;t1_gj4jx8s;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4oc24/;1610622059;210;True;False;anime;t5_2qh22;;0;[]; -[];;;SinisterPibe;;;[];;;;text;t2_6hw4j4d4;False;False;[];;I was thinking it was going to be weird when after all the times Subaru said that he like her she will just forget because things or ignore it like other times but the mad lad finally did it omg it was so unexpected, great episode;False;False;;;;1610557424;;False;{};gj4od1q;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4od1q/;1610622075;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Zonca;;;[];;;;text;t2_11odu8;False;False;[];;"Rem fans: ""It's okay, he didn't save over that one yet...""";False;False;;;;1610557432;;False;{};gj4odnq;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4odnq/;1610622085;2;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;"Ram: When it comes to 'do or die' situation Barusu has perfect timing. - -Every viewer watching this: Little did she know that guy has been using extra lives to make that situation better.";False;False;;;;1610557442;;False;{};gj4oeh7;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4oeh7/;1610622098;91;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;thank you gigguk for making me understand in a sub 20 min form how insane domestic girlfriend was;False;False;;;;1610557463;;False;{};gj4og7h;False;t3_kwisv4;False;False;t1_gj4m98g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4og7h/;1610622125;216;True;False;anime;t5_2qh22;;0;[]; -[];;;SuYue0909;;;[];;;;text;t2_1ca0n7;False;False;[];;"I love the effect they do with Otto's flashback, really put you in Otto perspective when you barely make out the other characters voices. - -The second half conversation is beautiful, I jaw dropped through the whole scene, didn't expect either Subaru or Emilia to talk like that, it also went full circle back to season 1 ep 18 even lines by lines with how Rem cheered up Subaru. - -Definitely my favourite episode for the whole anime until now.";False;False;;;;1610557467;;False;{};gj4ogiy;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ogiy/;1610622130;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Aliensinnoh;;;[];;;;text;t2_x0aq3c;False;False;[];;To Subaru, 2000 deaths from now;False;False;;;;1610557485;;False;{};gj4oi08;False;t3_kwisv4;False;False;t1_gj4denl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4oi08/;1610622156;348;True;False;anime;t5_2qh22;;0;[]; -[];;;discuss-not-concuss;;;[];;;;text;t2_4szhiuz1;False;False;[];;"“I’m weak, pathetic and useless...” - - -“You are a *pain in the ass* too! I love you(*r ass too*)”";False;False;;;;1610557499;;1610557865.0;{};gj4oj2g;False;t3_kwisv4;False;False;t1_gj4fe4g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4oj2g/;1610622172;481;True;False;anime;t5_2qh22;;0;[]; -[];;;lookw;;;[];;;;text;t2_floum;False;False;[];;i dont think it was about subaru specifically. Due to the whales origins i wouldnt be surprised if their voice was distorted and terrifying due to their singleminded lust to devour.;False;False;;;;1610557508;;False;{};gj4ojsk;False;t3_kwisv4;False;True;t1_gj4my3o;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ojsk/;1610622185;2;True;False;anime;t5_2qh22;;0;[]; -[];;;watglaf;;;[];;;;text;t2_1enca6fo;False;False;[];;And to think that Rem, the only person that came close to somewhat understanding because she could see and smell the miasma after a failed retry, the brightest beacon of hope and support, is gone. Pain. Even if it was to further develop Subaru, it still hurts.;False;False;;;;1610557513;;False;{};gj4ok6c;False;t3_kwisv4;False;False;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ok6c/;1610622190;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Tylerx_432;;;[];;;;text;t2_5258e3bx;False;False;[];;Totally agree;False;False;;;;1610557523;;False;{};gj4ol1e;False;t3_kwisv4;False;False;t1_gj4o4hp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ol1e/;1610622205;36;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610557528;;False;{};gj4oleg;False;t3_kwisv4;False;True;t1_gj4la2d;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4oleg/;1610622211;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Azure_chan;;MAL;[];;https://myanimelist.net/animelist/TheAzure256;dark;text;t2_yfzbw;False;False;[];;r/nba is leaking, oh no.;False;False;;;;1610557536;;False;{};gj4om30;False;t3_kwisv4;False;False;t1_gj4jzbq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4om30/;1610622221;28;True;False;anime;t5_2qh22;;0;[]; -[];;;Jestingraptor39;;;[];;;;text;t2_3l9nlxqs;False;False;[];;He did it, that crazy sob finally did it.;False;False;;;;1610557546;;False;{};gj4omtf;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4omtf/;1610622233;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;Chad Mega Attack Abs Eren vs Beast Whisperer Otto Thundercock;False;False;;;;1610557555;;1610559425.0;{};gj4onl0;False;t3_kwisv4;False;False;t1_gj4k7cr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4onl0/;1610622245;491;True;False;anime;t5_2qh22;;0;[]; -[];;;garmonthenightmare;;;[];;;;text;t2_tpz2o;False;False;[];;Rem keeps losing even when she isn't even in the race.;False;False;;;;1610557559;;False;{};gj4ont8;False;t3_kwisv4;False;False;t1_gj4jzbq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ont8/;1610622248;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Pitiful_Alps_6246;;;[];;;;text;t2_7xhshv1s;False;False;[];;I never saw Ram as a waifu, she's more like the ultimate bro. Even Otto can't rival her imo.;False;False;;;;1610557566;;False;{};gj4oof0;False;t3_kwisv4;False;False;t1_gj4gnxo;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4oof0/;1610622258;11;True;False;anime;t5_2qh22;;0;[]; -[];;;infinity_craft;;;[];;;;text;t2_3y07aiyd;False;False;[];;Would have been perfect if we got Al dona ( T_T)...;False;False;;;;1610557572;;False;{};gj4ootq;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ootq/;1610622264;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PopPunkTeacher;;;[];;;;text;t2_3q70c5ad;False;False;[];;"OH MY FUCKING GOD WHAT AN EPISODE. - -Listen I love ram and I’ve always liked Emilia - -But man, Emilia x Subaru is just so great and Emilia is getting much needed growth. Great to see";False;False;;;;1610557575;;False;{};gj4op3h;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4op3h/;1610622268;5;True;False;anime;t5_2qh22;;0;[]; -[];;;genasugelan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Genasugelan;light;text;t2_15kv3y;False;False;[];;">Might be the best episode of the show yet - -It's amazing how we said that like every second episode of season 2.";False;False;;;;1610557584;;False;{};gj4opvd;False;t3_kwisv4;False;True;t1_gj4cxiy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4opvd/;1610622280;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Orito-S;;;[];;;;text;t2_151r47;False;False;[];;Otto cockblocked by a cat, Emilia and Subaru proper first kiss and otto being a fucking badass for half the episode. This is the best Rezero episode of all time;False;False;;;;1610557586;;False;{};gj4opzx;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4opzx/;1610622282;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;i didnt get that otto didnt get pussy, thanks.;False;False;;;;1610557593;;1610558092.0;{};gj4oqll;False;t3_kwisv4;False;False;t1_gj4fb40;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4oqll/;1610622291;95;True;False;anime;t5_2qh22;;0;[]; -[];;;Aliensinnoh;;;[];;;;text;t2_x0aq3c;False;False;[];;Last Christmas, I gave you my heart. But the very next day, you gave it away.;False;False;;;;1610557613;;False;{};gj4os4y;False;t3_kwisv4;False;False;t1_gj4h4ae;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4os4y/;1610622315;4;True;False;anime;t5_2qh22;;0;[]; -[];;;genasugelan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Genasugelan;light;text;t2_15kv3y;False;False;[];;Re:Zero fans are blessed with an amazing and passionate adaptation.;False;False;;;;1610557618;;False;{};gj4osig;False;t3_kwisv4;False;False;t1_gj4dc14;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4osig/;1610622320;8;True;False;anime;t5_2qh22;;0;[]; -[];;;TyphoonSG3;;;[];;;;text;t2_w597u;False;False;[];;I'm guessing the same thing happened except last time, Otto wasn't around to distract Garfiel. Ram probably messed with Garfiel last time as well but once again bled out and then Garfiel took care of her.;False;False;;;;1610557620;;False;{};gj4oso2;False;t3_kwisv4;False;False;t1_gj4kd12;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4oso2/;1610622323;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Sometimes I wonder why Emilia and Satella look so similar to each other, even have the same voice and is interested in the same guy. I think some kind of wacky time-travel stuff or something similar may be in play here because I can't think of a proper explanation for it.;False;False;;;;1610557628;;1610558265.0;{};gj4ot8r;False;t3_kwisv4;False;False;t1_gj4nxh4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ot8r/;1610622331;597;True;False;anime;t5_2qh22;;0;[]; -[];;;jdaev;;;[];;;;text;t2_7idau2c0;False;False;[];;"[Konosuba LN Spoiler](/s ""He gets Megumin eventually."")";False;False;;;;1610557628;;False;{};gj4ota6;False;t3_kwisv4;False;True;t1_gj4h364;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ota6/;1610622333;6;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;IT AINT OVER TILL THE EGG IS FERTILIZED;False;False;;;;1610557641;;False;{};gj4oua6;False;t3_kwisv4;False;False;t1_gj4djlk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4oua6/;1610622348;23;True;False;anime;t5_2qh22;;0;[]; -[];;;BatmanRises;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/Yuuki_Ame;light;text;t2_8jpez;False;False;[];;Thank you, essay-kun. I will link you if ~~Rem~~ fan comes and bully Emilia + Subaru's relationship.;False;False;;;;1610557652;;False;{};gj4ov72;False;t3_kwisv4;False;False;t1_gj4eeoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ov72/;1610622363;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Combo33;;MAL a-1milquiz;[];;http://myanimelist.net/animelist/bcom33;dark;text;t2_a15ep;False;False;[];;He certainly has a type, haha.;False;False;;;;1610557655;;False;{};gj4ovfg;False;t3_kwisv4;False;True;t1_gj4ltkv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ovfg/;1610622366;3;True;False;anime;t5_2qh22;;0;[]; -[];;;genasugelan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Genasugelan;light;text;t2_15kv3y;False;False;[];;This whole anime season is a wild ride. So fucking many high-quality anime to watch.;False;False;;;;1610557673;;False;{};gj4owu4;False;t3_kwisv4;False;True;t1_gj4ddzb;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4owu4/;1610622389;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ClawofBeta;;;[];;;;text;t2_9p5i2;False;False;[];;I wouldn't break up with a SO if they got amnesia, but I might break up if it turns out he was actually Hitler in diguise.;False;False;;;;1610557674;;False;{};gj4oww1;False;t3_kwisv4;False;False;t1_gj4if1l;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4oww1/;1610622390;13;True;False;anime;t5_2qh22;;0;[]; -[];;;MauledCharcoal;;;[];;;;text;t2_1uu3nanq;False;False;[];;Ram didn't get stronger. Garfiel got weaker, presumably his manas nearly depleted. Ram is powerful so it would make sense she could toy with a near powerless person.;False;False;;;;1610557677;;False;{};gj4ox54;False;t3_kwisv4;False;True;t1_gj4kd12;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ox54/;1610622394;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;Opening and endings? Zero;False;False;;;;1610557680;;False;{};gj4oxe6;False;t3_kwisv4;False;False;t1_gj4fwpl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4oxe6/;1610622398;1388;True;False;anime;t5_2qh22;;0;[]; -[];;;kundara_thahab;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sharshabeel_67;light;text;t2_cpimqb2;False;False;[];;"u saw garf at the end of the ep. - -she probably got rekt. getting a few hits at the start maybe means garf wasnt fully serious yet";False;False;;;;1610557681;;False;{};gj4oxh1;False;t3_kwisv4;False;False;t1_gj4kd12;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4oxh1/;1610622399;10;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> really put you in Otto perspective when you barely make out the other characters voices. - -I think Otto now as better control over his ability, but for the first 10 years of his life he's practically deaf.";False;False;;;;1610557690;;False;{};gj4oy73;False;t3_kwisv4;False;True;t1_gj4ogiy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4oy73/;1610622410;2;True;False;anime;t5_2qh22;;0;[]; -[];;;YgJb1691;;;[];;;;text;t2_k8dbo5z;False;False;[];;I think I actually prefer Realize as an insert song than as an OP, on that topic, how many weeks will they make me wait to see the new one. Two whole 28 minute episodes back to back without a proper OP or ED.;False;False;;;;1610557690;;False;{};gj4oy82;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4oy82/;1610622410;2;True;False;anime;t5_2qh22;;0;[]; -[];;;atk_i;;;[];;;;text;t2_2pxgnfbx;False;False;[];;Why can I see the GIF only on old.reddit?;False;False;;;;1610557694;;False;{};gj4oyjq;False;t3_kwisv4;False;True;t1_gj4dvoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4oyjq/;1610622416;1;True;False;anime;t5_2qh22;;0;[]; -[];;;watglaf;;;[];;;;text;t2_1enca6fo;False;False;[];;">and this episode has already cemented itself as my favorite - -Truer words have never been spoken. It‘s not even that some are bad, it’s just that they’re all so goddamn good";False;False;;;;1610557702;;False;{};gj4oz5h;False;t3_kwisv4;False;False;t1_gj4eeoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4oz5h/;1610622425;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ezorethyk2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/catalin_sara;light;text;t2_1vlmn3cp;False;False;[];;I WAS HERE;False;False;;;;1610557712;;False;{};gj4ozza;False;t3_kwisv4;False;False;t1_gj4dtps;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ozza/;1610622439;9;True;False;anime;t5_2qh22;;0;[]; -[];;;rofpo;;;[];;;;text;t2_7m979;False;False;[];;I pictured him saying that as TFS's Piccolo and couldnt' stop laughing;False;False;;;;1610557715;;False;{};gj4p09p;False;t3_kwisv4;False;False;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4p09p/;1610622443;141;True;False;anime;t5_2qh22;;0;[]; -[];;;jebbush1212;;;[];;;;text;t2_y3f8v1y;False;False;[];;No, Subaru, WE LOVE EMILIA!;False;False;;;;1610557731;;False;{};gj4p1ib;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4p1ib/;1610622461;6;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;Her smirking before beating the shit out of Garfiel was incredible;False;False;;;;1610557740;;False;{};gj4p273;False;t3_kwisv4;False;False;t1_gj4e8xe;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4p273/;1610622474;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;I know.;False;False;;;;1610557754;;False;{};gj4p399;False;t3_kwisv4;False;True;t1_gj4ota6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4p399/;1610622491;3;True;False;anime;t5_2qh22;;0;[]; -[];;;YukiTennouboshi;;;[];;;;text;t2_1az1qw11;False;False;[];;Everyone during the kiss scene was the critikal meme and you can't prove me wrong!;False;False;;;;1610557760;;False;{};gj4p3q2;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4p3q2/;1610622498;3;True;False;anime;t5_2qh22;;0;[]; -[];;;genasugelan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Genasugelan;light;text;t2_15kv3y;False;False;[];;"Chadbaru is back and Otto was fucking amazing. - -Subaru made such progress in these two episodes, this has to be the last leap, otherwise I'll be heartbroken if he has to redo it again.";False;False;;;;1610557772;;False;{};gj4p4qw;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4p4qw/;1610622514;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GoldenDude;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GoldenBoy808;light;text;t2_ay8d1;False;False;[];;This is a reference I didn’t think I’d see but it’s a welcome one;False;False;;;;1610557785;;False;{};gj4p5sz;False;t3_kwisv4;False;False;t1_gj4jzbq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4p5sz/;1610622531;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Pitiful_Alps_6246;;;[];;;;text;t2_7xhshv1s;False;False;[];; Only 2? Ram for sure, but who's second? I can't choose between Subaru and the chad cat.;False;False;;;;1610557829;;False;{};gj4p9b5;False;t3_kwisv4;False;False;t1_gj4fwpl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4p9b5/;1610622587;6;True;False;anime;t5_2qh22;;0;[]; -[];;;J_Eldridge;;;[];;;;text;t2_aicta;False;False;[];;I dont know but that kiss feels so much more fulfilling than all the romance anime ive seen. There was just something about it that feels just right.;False;False;;;;1610557835;;False;{};gj4p9q0;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4p9q0/;1610622593;17;True;False;anime;t5_2qh22;;0;[]; -[];;;blue_no_kenshi;;;[];;;;text;t2_2j1pq0;False;False;[];;Now it's Emilia's turn to be the simp!;False;False;;;;1610557837;;False;{};gj4p9wt;False;t3_kwisv4;False;False;t1_gj4d6is;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4p9wt/;1610622596;6;True;False;anime;t5_2qh22;;0;[]; -[];;;bnichols924;;;[];;;;text;t2_15y03a;False;False;[];;Is crunchyroll refusing to play the episode for anyone else?;False;False;;;;1610557841;;False;{};gj4pa8x;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4pa8x/;1610622602;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kundara_thahab;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sharshabeel_67;light;text;t2_cpimqb2;False;False;[];;">long shot! - -the song is hype as fuck. we'll probably get it at some cool as shit moment, this studio is great at that";False;False;;;;1610557876;;False;{};gj4pcyg;False;t3_kwisv4;False;False;t1_gj4lchy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4pcyg/;1610622644;27;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Probably not, but it would be sweet if love could at least contest violence.;False;False;;;;1610557886;;False;{};gj4pdr2;False;t3_kwisv4;False;False;t1_gj4o1gm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4pdr2/;1610622657;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"*And later being chased by and getting beaten up by another cat.* - -I guess cats can bring a really bad day for Otto.";False;False;;;;1610557886;;False;{};gj4pdti;False;t3_kwisv4;False;False;t1_gj4ggdc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4pdti/;1610622658;83;True;False;anime;t5_2qh22;;0;[]; -[];;;Kitsunes_Rest;;;[];;;;text;t2_2n7gl3t4;False;False;[];;"Ahhh here is this season's ""Twister"" joke moment. - -Savage.";False;False;;;;1610557890;;False;{};gj4pe39;False;t3_kwisv4;False;False;t1_gj4ja3z;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4pe39/;1610622662;14;True;False;anime;t5_2qh22;;0;[]; -[];;;ezorethyk2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/catalin_sara;light;text;t2_1vlmn3cp;False;False;[];;I was also a Rem shipper during the time the anime aired. Then i rewatched the first season and it just didn't felt right. Like Rem's confession hits WAY less when few hours prior she killed Subaru in pretty horific ways just because he was a little suspicious.;False;False;;;;1610557906;;False;{};gj4pffn;False;t3_kwisv4;False;False;t1_gj4djlk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4pffn/;1610622683;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;And this season is just staring to climax.;False;False;;;;1610557917;;False;{};gj4pgd8;False;t3_kwisv4;False;False;t1_gj4o031;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4pgd8/;1610622698;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Orihime00sama;;;[];;;;text;t2_gv3ls;False;False;[];;"The way you could see Emilia's reflection in Subaru's eyes when he confessed his love hit me so hard. Especially with how throughout the conversation you couldn't see Subaru in her eyes until the very end. - -I love the amount of emotion both sides threw at each other, all the pent up stuff they had and the way it ended in a kiss. - -Also Otto is the fucking strong and deserves all the hugs and cats.";False;False;;;;1610557932;;1610558287.0;{};gj4phl5;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4phl5/;1610622717;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jebbush1212;;;[];;;;text;t2_y3f8v1y;False;False;[];;Let's go!;False;False;;;;1610557936;;False;{};gj4phuo;False;t3_kwisv4;False;False;t1_gj4dg6g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4phuo/;1610622721;37;True;False;anime;t5_2qh22;;0;[]; -[];;;Redmon425;;;[];;;;text;t2_15ro6h;False;False;[];;"I just can't believe I am sitting here, being on the winning side of a best girl war. - -Emilia is best girl and the ship has sailed!!!";False;False;;;;1610557972;;False;{};gj4pktf;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4pktf/;1610622769;25;True;False;anime;t5_2qh22;;0;[]; -[];;;BatmanRises;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/Yuuki_Ame;light;text;t2_8jpez;False;False;[];;SO MUCH BETTER THAN THE KISS OF DEATH.;False;False;;;;1610557975;;False;{};gj4pl10;False;t3_kwisv4;False;True;t1_gj4czz6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4pl10/;1610622772;2;True;False;anime;t5_2qh22;;0;[]; -[];;;biryaniwala;;;[];;;;text;t2_so237;False;False;[];;Dang. Did Subaru just use Rem's speech to confess to Emilia?;False;False;;;;1610557975;;False;{};gj4pl1d;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4pl1d/;1610622773;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SilverShark307;;;[];;;;text;t2_6g9zhmot;False;False;[];;cucked;False;False;;;;1610557979;;False;{};gj4plf5;False;t3_kwisv4;False;False;t1_gj4o06o;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4plf5/;1610622779;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ezorethyk2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/catalin_sara;light;text;t2_1vlmn3cp;False;False;[];;This has serious meme potential. My soldiers, i give you my permission to unleash it into the internet! SHINZO WA SASAGEYO;False;False;;;;1610557981;;False;{};gj4pll7;False;t3_kwisv4;False;False;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4pll7/;1610622782;423;True;False;anime;t5_2qh22;;0;[]; -[];;;jebbush1212;;;[];;;;text;t2_y3f8v1y;False;False;[];;Hotel? Trivago.;False;False;;;;1610557986;;False;{};gj4plyh;False;t3_kwisv4;False;False;t1_gj4oxe6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4plyh/;1610622787;113;True;False;anime;t5_2qh22;;0;[]; -[];;;BatmanRises;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/Yuuki_Ame;light;text;t2_8jpez;False;False;[];;"At least Emilia didn't go ""I love Puck"".";False;False;;;;1610557999;;False;{};gj4pn1t;False;t3_kwisv4;False;False;t1_gj4h4ae;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4pn1t/;1610622805;20;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;*But I don't want to believe it!*;False;False;;;;1610558006;;False;{};gj4pnlf;False;t3_kwisv4;False;False;t1_gj4nt00;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4pnlf/;1610622813;26;True;False;anime;t5_2qh22;;0;[]; -[];;;SilverShark307;;;[];;;;text;t2_6g9zhmot;False;False;[];;time travel is like the most popular but the most baseless theory;False;False;;;;1610558014;;False;{};gj4po8f;False;t3_kwisv4;False;False;t1_gj4ot8r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4po8f/;1610622824;17;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610558027;;False;{};gj4pp7o;False;t3_kwisv4;False;True;t1_gj4o3t4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4pp7o/;1610622838;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610558030;;False;{};gj4pph4;False;t3_kwisv4;False;True;t1_gj4oxe6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4pph4/;1610622842;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YgJb1691;;;[];;;;text;t2_k8dbo5z;False;False;[];;A DECLARATION OF LOVE;False;False;;;;1610558038;;False;{};gj4pq48;False;t3_kwisv4;False;False;t1_gj4dv2d;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4pq48/;1610622852;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Artogirus;;;[];;;;text;t2_46r3rdzg;False;False;[];;Then did his review make you view this episode in a much better light? XD;False;False;;;;1610558038;;False;{};gj4pq5k;False;t3_kwisv4;False;False;t1_gj4ma12;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4pq5k/;1610622852;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;Im not sponsored by em, so theyre not getting a comment from me for free;False;False;;;;1610558045;;False;{};gj4pqmg;False;t3_kwisv4;False;False;t1_gj4plyh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4pqmg/;1610622861;49;True;False;anime;t5_2qh22;;0;[]; -[];;;Rambo7112;;MAL;[];;Rambo7112;dark;text;t2_b2qi9;False;False;[];;I just love that phrasing;False;False;;;;1610558056;;False;{};gj4prl8;False;t3_kwisv4;False;False;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4prl8/;1610622877;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;"I don’t even know why he said things like “who would suffer so much for a **pain in the ass like you**?”. - -I’m just fucking happy right now. I [commented this](https://www.reddit.com/r/anime/comments/krq3pe/rezero_kara_hajimeru_isekai_seikatsu_season_2/gicvlls/?utm_source=share&utm_medium=ios_app&utm_name=iossmf&context=3) last week, and wow, this was quicker than I accepted. I was in tears while watching the ep. I’m so happy !!!";False;False;;;;1610558063;;False;{};gj4ps5w;False;t3_kwisv4;False;False;t1_gj4fe4g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ps5w/;1610622885;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Pollsmor;;;[];;;;text;t2_pvhag;False;False;[];;For what reason though? As far as this loop is concerned I don't think he's ever had to exert himself. Maybe the blue stone Otto stole is the source of his full power?;False;False;;;;1610558069;;False;{};gj4psnz;False;t3_kwisv4;False;False;t1_gj4ox54;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4psnz/;1610622895;10;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;youre 1 sec too late for this joke.;False;False;;;;1610558070;;False;{};gj4pss1;False;t3_kwisv4;False;False;t1_gj4pph4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4pss1/;1610622897;9;True;False;anime;t5_2qh22;;0;[]; -[];;;carKyy;;;[];;;;text;t2_ucoza;False;False;[];;Thank you for this!;False;False;;;;1610558077;;False;{};gj4pt9h;False;t3_kwisv4;False;True;t1_gj4eeoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4pt9h/;1610622904;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"AoT - Declaration of War - -Re:Zero - Declaration of Love";False;False;;;;1610558078;;False;{};gj4ptek;False;t3_kwisv4;False;False;t1_gj4nnqi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ptek/;1610622907;38;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;HERE'S HOPING FOR A THOUSAND MORE!;False;False;;;;1610558082;;False;{};gj4ptn0;False;t3_kwisv4;False;True;t1_gj4cvol;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ptn0/;1610622910;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BatmanRises;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/Yuuki_Ame;light;text;t2_8jpez;False;False;[];;"> a pathetic display of simpery - -That's literature right there. Our Shakespeare.";False;False;;;;1610558136;;False;{};gj4pxyz;False;t3_kwisv4;False;False;t1_gj4jmyo;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4pxyz/;1610622979;13;True;False;anime;t5_2qh22;;0;[]; -[];;;bananeeek;;MAL;[];;https://myanimelist.net/animelist/bananek;dark;text;t2_m3u6b;False;False;[];;T-They held hands..? I only saw a kiss...;False;False;;;;1610558137;;False;{};gj4py1u;False;t3_kwisv4;False;False;t1_gj4hwds;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4py1u/;1610622980;238;True;False;anime;t5_2qh22;;0;[]; -[];;;ThyHoffbringer;;;[];;;;text;t2_38indet5;False;False;[];;I do admit I was a bit liberal in my interpretation of who's a chad in the episode, but Ram has always been chad so she's not counted.;False;False;;;;1610558145;;False;{};gj4pyna;False;t3_kwisv4;False;False;t1_gj4p9b5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4pyna/;1610622991;17;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;**Love is blind**.. ^^and ^^there's ^^that ^^Satella ^^thing..;False;False;;;;1610558168;;False;{};gj4q0jm;False;t3_kwisv4;False;True;t1_gj4nghb;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4q0jm/;1610623022;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Earthborn92;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EarthB;light;text;t2_al1wj;False;False;[];;I wish Otto, a traveling merchant who dreams of opening his own shop, finds himself a wolf goddess.;False;False;;;;1610558179;;False;{};gj4q1fi;False;t3_kwisv4;False;False;t1_gj4ggdc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4q1fi/;1610623035;392;True;False;anime;t5_2qh22;;0;[]; -[];;;heavenspiercing;;;[];;;;text;t2_12wzz4;False;False;[];;My guess is that, even without her horn, Ram can still increase her power as if she did, but it puts tremendous physical strain on her body. Hence the severe backlash after only a few seconds. Presumably her having a horn would prevent that.;False;False;;;;1610558195;;False;{};gj4q2ml;False;t3_kwisv4;False;False;t1_gj4kd12;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4q2ml/;1610623054;39;True;False;anime;t5_2qh22;;0;[]; -[];;;dxing2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/dxing;light;text;t2_sbxd9;False;False;[];;"[are the pitchforks we left in the shed still there?](https://www.reddit.com/r/anime/comments/4vi2mg/spoilers_rezero_kara_hajimeru_isekai_seikatsu/d5yitd4/?utm_source=share&utm_medium=ios_app&utm_name=iossmf&context=3)";False;False;;;;1610558198;;1610558820.0;{};gj4q2w5;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4q2w5/;1610623058;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Zonca;;;[];;;;text;t2_11odu8;False;False;[];;"""Ain't like I was waiting for you b..baka."" - - -Maaan, blonde tsunderes are the best, of course Re:Zero would have at least 2 or 3 :D";False;False;;;;1610558209;;False;{};gj4q3tv;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4q3tv/;1610623072;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BatmanRises;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/Yuuki_Ame;light;text;t2_8jpez;False;False;[];;Was looking for this one. No hands-holding in this episode though. That's for later right?;False;False;;;;1610558211;;False;{};gj4q3yq;False;t3_kwisv4;False;False;t1_gj4hwds;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4q3yq/;1610623074;103;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Very very difficult, that episode has got more than 23.8K upvotes but it would be great if the difference between their karma will be less than 8K.;False;False;;;;1610558213;;False;{};gj4q45e;False;t3_kwisv4;False;False;t1_gj4o1gm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4q45e/;1610623077;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Takamaru0;;;[];;;;text;t2_6iqy2mhp;False;False;[];;"Fun fact [Not a major spoiler or anything but just to be safe](/s ""Emilia thinks kids are born by kissing. So what she did during kiss of death was because she didn't knew about sex, if she had known then it we would have seen necrophilia"")";False;False;;;;1610558237;;1610570161.0;{};gj4q61a;False;t3_kwisv4;False;False;t1_gj4o545;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4q61a/;1610623107;11;True;False;anime;t5_2qh22;;0;[]; -[];;;bananeeek;;MAL;[];;https://myanimelist.net/animelist/bananek;dark;text;t2_m3u6b;False;False;[];;"Of all the things he could've said that time he went for ""dodge""? I laughed so hard I barely composed myself in time for the kiss.";False;False;;;;1610558257;;False;{};gj4q7jo;False;t3_kwisv4;False;False;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4q7jo/;1610623129;675;True;False;anime;t5_2qh22;;0;[]; -[];;;waifutabae;;;[];;;;text;t2_2x4ujgtz;False;False;[];;Amen brother;False;False;;;;1610558268;;False;{};gj4q8gd;False;t3_kwisv4;False;True;t1_gj4djlk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4q8gd/;1610623142;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Artogirus;;;[];;;;text;t2_46r3rdzg;False;False;[];;I'm one of the ten people who like Re:Zero for its fluff moment tho;False;False;;;;1610558272;;False;{};gj4q8qg;False;t3_kwisv4;False;False;t1_gj4ipdp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4q8qg/;1610623147;13;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610558285;;False;{};gj4q9sd;False;t3_kwisv4;False;True;t1_gj4ot8r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4q9sd/;1610623163;3;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;That's the real reason his family didn't want him using his powers too much. They didn't want him falling for some random animal lol.;False;False;;;;1610558285;;False;{};gj4q9sz;False;t3_kwisv4;False;False;t1_gj4ggdc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4q9sz/;1610623163;106;True;False;anime;t5_2qh22;;0;[]; -[];;;Jdogg0130Ems;;;[];;;;text;t2_p9b52p0;False;False;[];;it is;False;False;;;;1610558312;;False;{};gj4qc0f;False;t3_kwisv4;False;False;t1_gj4obaz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4qc0f/;1610623197;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BRONsexualToLA;;;[];;;;text;t2_1os94ode;False;False;[];;The anti Hina...ohh wait;False;False;;;;1610558324;;False;{};gj4qcxu;False;t3_kwisv4;False;False;t1_gj4ont8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4qcxu/;1610623212;8;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Re:Zero'philes: Oh no what could this mean?!?! Is 15 the name of a star??;False;False;;;;1610558333;;False;{};gj4qdm7;False;t3_kwisv4;False;False;t1_gj4n9xh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4qdm7/;1610623224;15;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Subaru X Suffering.;False;False;;;;1610558334;;False;{};gj4qdni;False;t3_kwisv4;False;False;t1_gj4n9xh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4qdni/;1610623225;30;True;False;anime;t5_2qh22;;0;[]; -[];;;bananeeek;;MAL;[];;https://myanimelist.net/animelist/bananek;dark;text;t2_m3u6b;False;False;[];;I'd love to see an edit when she dodges the kiss. That would be hilarious.;False;False;;;;1610558353;;False;{};gj4qf6w;False;t3_kwisv4;False;False;t1_gj4focm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4qf6w/;1610623249;7;True;False;anime;t5_2qh22;;0;[]; -[];;;BatmanRises;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/Yuuki_Ame;light;text;t2_8jpez;False;False;[];;"Emilia flag is flying now. - -Rem flag is waving at half-staff. - -Satella flag is somewhere in between.";False;False;;;;1610558373;;False;{};gj4qguf;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4qguf/;1610623275;2;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;"Emilia being reflected in Subaru's eyes but Subaru not being reflected in Emilia's eyes until the very end is such a beautiful touch! - -^(This was pointed out by MY MOM who doesn't watch anime and walked into the room when there were 5 minutes left lol. Thanks mom.)";False;False;;;;1610558389;;False;{};gj4qi5c;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4qi5c/;1610623296;101;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610558396;;False;{};gj4qipn;False;t3_kwisv4;False;True;t1_gj4q9sd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4qipn/;1610623304;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Pollsmor;;;[];;;;text;t2_pvhag;False;False;[];;"I need to rewatch but I think it's implied that Garfiel was able to damage Ram as he went past her. Then there's the usual anime trope where the effects of the damage don't show up until 5 seconds later (DBZ Trunks vs. Frieza's soldiers, DBS MUI Goku vs Jiren). - -I think that's what happened to Otto though.";False;False;;;;1610558404;;False;{};gj4qjcj;False;t3_kwisv4;False;False;t1_gj4q2ml;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4qjcj/;1610623315;11;True;False;anime;t5_2qh22;;0;[]; -[];;;BRONsexualToLA;;;[];;;;text;t2_1os94ode;False;False;[];;Need to ask Hina for some tips;False;False;;;;1610558406;;False;{};gj4qjhx;False;t3_kwisv4;False;False;t1_gj4igik;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4qjhx/;1610623317;9;True;False;anime;t5_2qh22;;0;[]; -[];;;megaZX1234;;;[];;;;text;t2_4r2r5es2;False;False;[];;No one want to. Only insane people like Roswaal would say that. But if I was him, I would pretty much do the same, go through hell to help the woman I fell in love to.;False;False;;;;1610558423;;False;{};gj4qkv4;False;t3_kwisv4;False;False;t1_gj4kxmn;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4qkv4/;1610623337;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;Most anime is produced natively at 720p then upscaled to 1080p by studios;False;False;;;;1610558445;;False;{};gj4qmne;False;t3_kwisv4;False;False;t1_gj4obaz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4qmne/;1610623366;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;">Heaven’s Feel flashbacks - ->Otto revealed bugs - -No. Don’t put weird stuff in my mind please. This is cursed";False;False;;;;1610558453;;False;{};gj4qn9q;False;t3_kwisv4;False;True;t1_gj4g5pd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4qn9q/;1610623375;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610558455;;False;{};gj4qngh;False;t3_kwisv4;False;True;t1_gj4l7xw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4qngh/;1610623378;11;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;I think the whale was just curious of the witches stench, that's why she didn't even bother to kill Subaru after she took a good look at him.;False;False;;;;1610558457;;False;{};gj4qnk5;False;t3_kwisv4;False;True;t1_gj4my3o;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4qnk5/;1610623379;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aetherdraw;;;[];;;;text;t2_yjc39;False;False;[];;"This is it guys. Subaru raising Emilia up from her lowest, much like Rem did for him back in S1E18. - -True Rem fans: FINALLY! YES! YES! YES! - -Rem ships Subaru and Emilia. Remember that folks. She's ok with being second, as long as these two end up together. She would be crying tears of joy at seeing her hero's wish fulfilled. - -Little does she know that while congratulating them, Subaru will definitely bring her to the fold. They are the two most important women of his new life after all. His old life being of course, Natsuki-mama, the woman he respects the most. - -So say it with me: EMT! EMT! EMT! - -Also, with how many times Ram's lost her life, we tend to forget that this is the girl that protected her sister when they were very little from a whole witch cult attack that wiped her village. Had she not lost her horn, she's pretty much second to Reinhard in power.";False;False;;;;1610558499;;1610558960.0;{};gj4qqwr;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4qqwr/;1610623431;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Artogirus;;;[];;;;text;t2_46r3rdzg;False;False;[];;Is this a spoiler!? XD;False;False;;;;1610558511;;False;{};gj4qrta;False;t3_kwisv4;False;False;t1_gj4hwds;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4qrta/;1610623447;16;True;False;anime;t5_2qh22;;0;[]; -[];;;DokiDokiDoIt;;;[];;;;text;t2_4rshs03i;False;False;[];;Reminds me of that one thing from Overlord...;False;False;;;;1610558577;;False;{};gj4qx3m;False;t3_kwisv4;False;False;t1_gj4gx5f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4qx3m/;1610623532;17;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Cyberpunk 2077 plot in a nutshell.;False;False;;;;1610558577;;False;{};gj4qx3w;False;t3_kwisv4;False;True;t1_gj4lhas;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4qx3w/;1610623532;1;True;False;anime;t5_2qh22;;0;[]; -[];;;akis_mamalis;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_6fo3djt9;False;False;[];;What in the fuck;False;False;;;;1610558599;;False;{};gj4qyvu;False;t3_kwisv4;False;False;t1_gj4kwp3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4qyvu/;1610623560;282;True;False;anime;t5_2qh22;;0;[]; -[];;;DokiDokiDoIt;;;[];;;;text;t2_4rshs03i;False;False;[];;My reaction exactly;False;False;;;;1610558600;;False;{};gj4qyy2;False;t3_kwisv4;False;False;t1_gj4f2yx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4qyy2/;1610623561;5;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;The madlad, he gone and done it!;False;False;;;;1610558610;;False;{};gj4qzsh;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4qzsh/;1610623576;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Iraho;;;[];;;;text;t2_xca0q;False;False;[];;"Are we still even able to reset at this point? I feel like the progress has been far too much but I’m worried about the timeline and what’s happened to the mansion? Or has that been called off due to the events from last weeks episode. I don’t want to get to attached to this timeline and all the major developments given the nature of the show. - -Also that fucking kiss as a die hard Rem supremacist I have to admit that shit was great and well deserved. Our girl is currently on break so...";False;False;;;;1610558674;;False;{};gj4r515;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4r515/;1610623657;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dropshield;;;[];;;;text;t2_f3yc1;False;False;[];;Hotel? Trivago;False;False;;;;1610558674;;False;{};gj4r53e;False;t3_kwisv4;False;False;t1_gj4fwpl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4r53e/;1610623658;11;True;False;anime;t5_2qh22;;0;[]; -[];;;SparklessSoul;;;[];;;;text;t2_7akjl1jb;False;False;[];;That was some chad shit from Subaru;False;False;;;;1610558687;;False;{};gj4r66r;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4r66r/;1610623675;0;True;False;anime;t5_2qh22;;0;[]; -[];;;GGG100;;;[];;;;text;t2_n30n6;False;False;[];;This episode feels like a spiritual successor to the first season's episode 18;False;False;;;;1610558691;;False;{};gj4r6hp;False;t3_kwisv4;False;False;t1_gj4kqz7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4r6hp/;1610623680;6;True;False;anime;t5_2qh22;;0;[]; -[];;;XenWeasel;;;[];;;;text;t2_2rak0z6h;False;False;[];;I don’t like how Garfiel looked at the end, I hope nothing bad happened to Ram and Otto;False;False;;;;1610558722;;False;{};gj4r8wx;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4r8wx/;1610623718;2;True;False;anime;t5_2qh22;;0;[]; -[];;;123475899573;;;[];;;;text;t2_9p0vjg3z;False;False;[];;Welp there is another person that has forgot the definition of simp.......does this word even mean anything anymore ?;False;False;;;;1610558729;;False;{};gj4r9i5;False;t3_kwisv4;False;False;t1_gj4llmd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4r9i5/;1610623727;17;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Picollo would be proud;False;False;;;;1610558753;;False;{};gj4rbdm;False;t3_kwisv4;False;False;t1_gj4q7jo;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4rbdm/;1610623757;385;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;Roswaal said last episode that the attack will occur in 3 days, 2 days left since 1 day has passed since then.;False;False;;;;1610558754;;False;{};gj4rbi5;False;t3_kwisv4;False;True;t1_gj4r515;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4rbi5/;1610623758;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dxing2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/dxing;light;text;t2_sbxd9;False;False;[];;her speech was literally a cut/copy/paste template for him;False;False;;;;1610558772;;False;{};gj4rd04;False;t3_kwisv4;False;False;t1_gj4k9vc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4rd04/;1610623782;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BabyPanda420;;;[];;;;text;t2_2p2qvbc5;False;False;[];;Yea, Subaru and Puck gave the push that Emilia really needed. After watching re:zero for so long, I could tell that Emilia was extremely scared of her past and facing her past memories was a straight No from her. But to give the firm hand to Emilia, Subaru and puck really did what needed to be done. Re:zero has always been one of the most unpredictable anime, I can't wait to see what mistakes Subaru commits and how he will make his towards a perfect victory.;False;False;;;;1610558773;;1610558957.0;{};gj4rd1d;False;t3_kwisv4;False;False;t1_gj4eeoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4rd1d/;1610623782;4;True;False;anime;t5_2qh22;;0;[]; -[];;;GoldenDude;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GoldenBoy808;light;text;t2_ay8d1;False;False;[];;When Otto started crying that just hit me man;False;False;;;;1610558816;;False;{};gj4rggz;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4rggz/;1610623836;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ElSanju;;;[];;;;text;t2_gcz6h;False;False;[];;"Emilia: I never asked you to do that, you're just being selfish. You're not thinking about my feelings at all! - -Subaru: I love you lol - -Emilia: Fuck it lets kiss - -&#x200B; - -Ah yes classic toxic Subaru getting the W once again";False;False;;;;1610558822;;1610569853.0;{};gj4rgzh;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4rgzh/;1610623844;28;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Probably all the verbal fighting got her attention :3;False;False;;;;1610558827;;False;{};gj4rhbu;False;t3_kwisv4;False;False;t1_gj4qi5c;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4rhbu/;1610623850;16;True;False;anime;t5_2qh22;;0;[]; -[];;;lord_ne;;;[];;;;text;t2_lh1o5;False;False;[];;Aren't we supposed to have a new OP this cour?;False;False;;;;1610558831;;False;{};gj4rhov;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4rhov/;1610623855;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BRONsexualToLA;;;[];;;;text;t2_1os94ode;False;False;[];;Dont celebrate too early boys... DomeKano teaches me that vegetables can still win;False;False;;;;1610558858;;False;{};gj4rjsf;False;t3_kwisv4;False;False;t1_gj4djlk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4rjsf/;1610623891;12;True;False;anime;t5_2qh22;;0;[]; -[];;;GaleWulf;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Arachnophobic;light;text;t2_2mv8micg;False;False;[];;Spending a fair bit of time around Satella and Echidna really warps one's measure of propriety.. honestly, I'm feeling a little surprised Emilia didn't get creeped out by the aggressiveness!;False;False;;;;1610558859;;False;{};gj4rjv4;False;t3_kwisv4;False;False;t1_gj4fe4g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4rjv4/;1610623892;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Iraho;;;[];;;;text;t2_xca0q;False;False;[];;Oh for real? I could’ve sworn the last time Subaru went straight to the mansion either the intestine girl or the rabbits were also there quite soon after.;False;False;;;;1610558860;;False;{};gj4rjzr;False;t3_kwisv4;False;True;t1_gj4rbi5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4rjzr/;1610623894;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MaksimShadow;;;[];;;;text;t2_h92eaka;False;False;[];;Season 5 will be just a collection of previous OPs and EDs.;False;False;;;;1610558865;;False;{};gj4rkf0;False;t3_kwisv4;False;False;t1_gj4h5s8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4rkf0/;1610623901;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;"Waittt, WHAT? - -Please explain, when did Otto develop feelings for a cat?";False;False;;;;1610558872;;False;{};gj4rkxr;False;t3_kwisv4;False;False;t1_gj4fb40;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4rkxr/;1610623909;214;True;False;anime;t5_2qh22;;0;[]; -[];;;EpsilonNu;;;[];;;;text;t2_cb42sfr;False;False;[];;"Well, not much to say, especially with some extremely well thought out comments out there. I'm a tad sad that most of the highest comments are memes about \[not-Emilia\] ""losing"", but in the end they are mostly ironic/comedic, plus I can't be angry at people having fun. - -Even then, this episode is now my favorite in my favorite anime of all time, and the love I feel for it and the series increase by the second without me even thinking about it. Some other discussions/moments had a greater impact, or were more dramatic/heartfelt on their own, like Subaru crying on Emilia's lap, them fighting at the capital or, of course, Ram's confession. But this argument and its resolution rely heavily on those moments and are the culmination of such wonderful character progression (for *ALL* characters) that I can't judge it on its own, and for this it takes first place in my heart (doesn't help that EMT is #1 for me). - -My only doubt: I have gained a decent amount of karma thanks to a relatively successfull post years ago, and I have enough to award a platinum (and a gold, that I gave to last week's episode), and I don't know if I should give it now, or to the season finale/closing episodes, since it would have a more significant impact due to those episodes being more likely to score high (not that I expect AoT to be beatable, and I'm not even angry about it because I *adore* AoT)... decisions, decisions.";False;False;;;;1610558878;;False;{};gj4rl8k;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4rl8k/;1610623913;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;How do we “understand” this ? To me, it wasn’t apparent in the anime at all. Can someone tell me where this was implied/said in the anime?;False;False;;;;1610558895;;False;{};gj4rm2q;False;t3_kwisv4;False;False;t1_gj4ibt7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4rm2q/;1610623926;8;True;False;anime;t5_2qh22;;0;[]; -[];;;GroundbreakingBake2;;;[];;;;text;t2_262xgjg4;False;False;[];;Fucking hell, I love this series so much.;False;False;;;;1610558898;;False;{};gj4rmer;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4rmer/;1610623931;8;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;^Satella ^^just ^^^wants ^^^him ^^^to ^^^be ^^^^happy?;False;False;;;;1610558904;;False;{};gj4rmyz;False;t3_kwisv4;False;False;t1_gj4qguf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4rmyz/;1610623939;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Oh__Billy;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Oh_Billy;light;text;t2_30zjzcvz;False;False;[];;No, how dare you say that you love someone and will support them no matter what happens you simp. /s;False;False;;;;1610558926;;False;{};gj4rp3g;False;t3_kwisv4;False;False;t1_gj4r9i5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4rp3g/;1610623974;11;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Learned from the best.;False;False;;;;1610558931;;False;{};gj4rpgy;False;t3_kwisv4;False;False;t1_gj4pl1d;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4rpgy/;1610623980;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AlberS16;;;[];;;;text;t2_z2x7i46;False;False;[];;At this point it wouldn’t even be funny if Subaru gets killed and wastes the most anticipated scene of all Re:zero.;False;False;;;;1610558944;;False;{};gj4rqkg;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4rqkg/;1610623997;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Grouchio;;;[];;;;text;t2_1wrg32;False;False;[];;Jokes on you Emilia thinks kissing made her pregnant.;False;False;;;;1610558950;;False;{};gj4rr2f;False;t3_kwisv4;False;False;t1_gj4oua6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4rr2f/;1610624006;26;True;False;anime;t5_2qh22;;0;[]; -[];;;BRONsexualToLA;;;[];;;;text;t2_1os94ode;False;False;[];;Arifureta died for this...definitely worth it;False;False;;;;1610558965;;False;{};gj4rs8h;False;t3_kwisv4;False;False;t1_gj4dc14;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4rs8h/;1610624025;4;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;The servers are probably on fire.;False;False;;;;1610558966;;False;{};gj4rsbd;False;t3_kwisv4;False;True;t1_gj4pa8x;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4rsbd/;1610624027;2;True;False;anime;t5_2qh22;;0;[]; -[];;;the_3rdist;;;[];;;;text;t2_8q31eg56;False;False;[];;"Best bro Otto. Holding off a literal Beast whilst your man can go kiss the Princess. - -(But really I'm internally chuckling through the whole Emila/Subaru scene knowing that Otto and Ram are fighting for their lives on the other side of the forest)";False;False;;;;1610558978;;False;{};gj4rtc2;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4rtc2/;1610624044;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;Oh, so that’s what the scene meant. WHAT THE FUCK ?!;False;False;;;;1610558998;;False;{};gj4ruw3;False;t3_kwisv4;False;False;t1_gj4ggdc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ruw3/;1610624069;231;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;That's hilarious!;False;False;;;;1610558998;;False;{};gj4ruww;False;t3_kwisv4;False;False;t1_gj4q61a;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ruww/;1610624069;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;All these hints for the people who don’t watch the *other* anime lol;False;False;;;;1610559070;;False;{};gj4s0n1;False;t3_kwisv4;False;False;t1_gj4denl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4s0n1/;1610624162;20;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Thunder what now?;False;False;;;;1610559105;;False;{};gj4s3jk;False;t3_kwisv4;False;False;t1_gj4onl0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4s3jk/;1610624210;166;True;False;anime;t5_2qh22;;0;[]; -[];;;Bigbossbro08;;;[];;;;text;t2_1qsu6xfg;False;False;[];;Ottowagon becoming top tier waifu as series progress.;False;False;;;;1610559106;;False;{};gj4s3lq;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4s3lq/;1610624211;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chennyalan;;MAL;[];;https://myanimelist.net/animelist/chennyalan;dark;text;t2_7mhef;False;False;[];;based name;False;False;;;;1610559127;;False;{};gj4s5ae;False;t3_kwisv4;False;False;t1_gj4jfdp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4s5ae/;1610624238;7;True;False;anime;t5_2qh22;;0;[]; -[];;;i-have-severe-stupid;;;[];;;;text;t2_5glau57a;False;False;[];;"in the words of prozd: - -“fucking finally”";False;False;;;;1610559156;;False;{};gj4s7pf;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4s7pf/;1610624277;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;I'm a Rem fan through and through but I still loved the scene for what it was. Best we can hope for at this point is polygamy.;False;False;;;;1610559171;;False;{};gj4s8uh;False;t3_kwisv4;False;False;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4s8uh/;1610624295;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610559185;;False;{};gj4sa0d;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4sa0d/;1610624315;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MaksimShadow;;;[];;;;text;t2_h92eaka;False;False;[];;"Previous season: I love Emilia. - -This season: I love you, Emilia. - -Not a big difference in wording, but big difference in meaning.";False;False;;;;1610559193;;False;{};gj4sanz;False;t3_kwisv4;False;False;t1_gj4d6is;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4sanz/;1610624325;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Ziprrow;;;[];;;;text;t2_i93d9;False;False;[];;"Really good read :) - -I'm curious though, and without being specific to details, do we find out why subaru left her in the middle of the night? - -Obviously, I'm not asking for you to tell me why he left. I just really want to know if the reason is brought up at a later date?";False;False;;;;1610559240;;False;{};gj4sejy;False;t3_kwisv4;False;False;t1_gj4eeoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4sejy/;1610624387;6;True;False;anime;t5_2qh22;;0;[]; -[];;;RadTicTacs;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RadTicTacs;light;text;t2_13qua81i;False;False;[];;Subaru's such an absolute champion, holy shit;False;False;;;;1610559255;;False;{};gj4sfou;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4sfou/;1610624405;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MaksimShadow;;;[];;;;text;t2_h92eaka;False;False;[];;Subaru entered the winner route.;False;False;;;;1610559260;;False;{};gj4sg2m;False;t3_kwisv4;False;False;t1_gj4ig4n;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4sg2m/;1610624411;58;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;It was organic, especially the final line is so corny and dumb and sweet, it showed that Subaru was pretty nervous.;False;False;;;;1610559266;;False;{};gj4sgkx;False;t3_kwisv4;False;False;t1_gj4p9q0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4sgkx/;1610624419;6;True;False;anime;t5_2qh22;;0;[]; -[];;;DannoVaz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/DaniloVaz;light;text;t2_6fmbrj8z;False;False;[];;"I love how Subaru and Emilia's relationship feels so real to me - -Otto is surely now in my favourite characters now";False;False;;;;1610559281;;False;{};gj4shrl;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4shrl/;1610624438;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Yourfriendlychemist-;;;[];;;;text;t2_86k8eir5;False;False;[];;Haha;False;False;;;;1610559282;;False;{};gj4shsc;False;t3_kwisv4;False;False;t1_gj4ehq8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4shsc/;1610624439;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexNae;;;[];;;;text;t2_13yqvf;False;False;[];;OMG that is a confession, it would have been funny if Emilia actually dodged him lol;False;False;;;;1610559283;;1610559655.0;{};gj4shxs;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4shxs/;1610624441;7;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;Subaru is up for polygamy. Rem probably too. I'm not certain on Emilia though.;False;False;;;;1610559283;;False;{};gj4shxx;False;t3_kwisv4;False;False;t1_gj4hwze;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4shxx/;1610624441;13;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;Time travel in general is a very popular but very baseless theory. Especially traveling to the past.;False;False;;;;1610559314;;False;{};gj4skd0;False;t3_kwisv4;False;False;t1_gj4po8f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4skd0/;1610624481;41;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomXxZ;;;[];;;;text;t2_37lbelym;False;False;[];;That was probably the best episode since Parent and Child!;False;False;;;;1610559329;;False;{};gj4slmg;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4slmg/;1610624501;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610559338;;False;{};gj4smcz;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4smcz/;1610624513;0;True;False;anime;t5_2qh22;;0;[]; -[];;;discuss-not-concuss;;;[];;;;text;t2_4szhiuz1;False;False;[];;How about predicting that you sent a blank letter and knowing where and how to intercept Ram-*sama* to fix that mistake?;False;False;;;;1610559349;;False;{};gj4sn5b;False;t3_kwisv4;False;False;t1_gj4n68e;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4sn5b/;1610624524;32;True;False;anime;t5_2qh22;;0;[]; -[];;;Assmeet123;;;[];;;;text;t2_4z85sldu;False;True;[];;Don't worry, the full reason is revealed later on.;False;False;;;;1610559352;;False;{};gj4snfb;False;t3_kwisv4;False;False;t1_gj4sejy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4snfb/;1610624529;11;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Probably like part 1, 3 times for each.;False;False;;;;1610559364;;False;{};gj4sof0;False;t3_kwisv4;False;True;t1_gj4oy82;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4sof0/;1610624545;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GaleWulf;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Arachnophobic;light;text;t2_2mv8micg;False;False;[];;"So, uh, why _did_ he leave? - -Shit's killing me. Can't wait to see what else Barusu's cooked up.";False;False;;;;1610559378;;False;{};gj4spjc;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4spjc/;1610624563;9;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;wrong role ,lad;False;False;;;;1610559397;;False;{};gj4sr2w;False;t3_kwisv4;False;False;t1_gj4rr2f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4sr2w/;1610624588;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Katzuhiki;;;[];;;;text;t2_hjlt4;False;False;[];;What a beautiful analysis.;False;False;;;;1610559403;;False;{};gj4srlg;False;t3_kwisv4;False;False;t1_gj4eeoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4srlg/;1610624597;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;You can always ship Ram x Otto? maybe?;False;False;;;;1610559410;;False;{};gj4ss45;False;t3_kwisv4;False;True;t1_gj4op3h;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ss45/;1610624604;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ziprrow;;;[];;;;text;t2_i93d9;False;False;[];;Perfect!! Thank you!!;False;False;;;;1610559418;;False;{};gj4sss2;False;t3_kwisv4;False;False;t1_gj4snfb;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4sss2/;1610624615;4;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;Young man, delete this;False;False;;;;1610559447;;False;{};gj4sv3c;False;t3_kwisv4;False;False;t1_gj4kwp3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4sv3c/;1610624652;107;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;That's nothing comapared to Greed If where Subaru dies over 100 million times.;False;False;;;;1610559460;;False;{};gj4sw3z;False;t3_kwisv4;False;False;t1_gj4kp5z;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4sw3z/;1610624668;12;True;False;anime;t5_2qh22;;0;[]; -[];;;version15;;;[];;;;text;t2_zjfgo;False;False;[];;This episode has me very curious to see how they present Subaru when he refers to Rem in the future lol.;False;False;;;;1610559468;;False;{};gj4swse;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4swse/;1610624679;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fredthefishlord;;;[];;;;text;t2_ba5at3b;False;False;[];;Offscreen? He can talk to them so it isn't out of the question;False;False;;;;1610559504;;False;{};gj4szoz;False;t3_kwisv4;False;False;t1_gj4rkxr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4szoz/;1610624725;303;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;It's alright, also it still might come up in the rest of the cour.;False;False;;;;1610559506;;False;{};gj4szsz;False;t3_kwisv4;False;False;t1_gj4ootq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4szsz/;1610624726;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ARS47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_59zt951e;False;False;[];;Until his enemies are destroyed!;False;False;;;;1610559506;;False;{};gj4szve;False;t3_kwisv4;False;False;t1_gj4k7cr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4szve/;1610624727;119;True;False;anime;t5_2qh22;;0;[]; -[];;;Yuwenn8;;;[];;;;text;t2_13irok;False;False;[];;First Base has been reached. I repeat, this is not a drill.;False;False;;;;1610559536;;False;{};gj4t2bx;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4t2bx/;1610624768;3;True;False;anime;t5_2qh22;;0;[]; -[];;;x3tan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Koshiba;light;text;t2_6shxr;False;False;[];;"Otto is 100% best boi and my favorite now. Lol. He already was but his power and backstory solidifies it for me. I need an Otto figure or something in my life now. :( - -Subaru and Emilia really needed to have this ""talk"" though. I'm glad they hashed all of that out but Subaru still has a problem of being selfish/making it about him lol.. though I at least liked that he acknowledged her more for who she is and not just putting her on a pedestal/seeing what he wants to see since that has been my biggest issue with his pursuit of her.";False;False;;;;1610559537;;False;{};gj4t2eu;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4t2eu/;1610624769;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;Then gave him an uppercut;False;False;;;;1610559558;;False;{};gj4t43h;False;t3_kwisv4;False;True;t1_gj4shxs;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4t43h/;1610624798;1;True;False;anime;t5_2qh22;;0;[]; -[];;;imaforgetthis;;;[];;;;text;t2_2d7gcwde;False;False;[];;"[Dodge this.](https://i.pinimg.com/originals/2b/e7/8e/2be78e0c8dcf9ff7ef311e0468e8cde7.gif) - -All I could think of at that moment.";False;False;;;;1610559571;;False;{};gj4t56x;False;t3_kwisv4;False;False;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4t56x/;1610624815;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Lum_ow;;;[];;;;text;t2_3cjuziwo;False;False;[];;Unironically tho for a sec very poggers of him to ensure consent what a chad;False;False;;;;1610559577;;False;{};gj4t5o9;False;t3_kwisv4;False;False;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4t5o9/;1610624823;1211;True;False;anime;t5_2qh22;;0;[]; -[];;;mattman456;;;[];;;;text;t2_4oscr;False;False;[];;Was coming to say that that convo was the realest shit I’ve ever heard on tv. At the beginning when no matter what Subaru said, Emilia wouldn’t let him be right cause she was mad. That’s some teenage couple shit.;False;False;;;;1610559603;;False;{};gj4t8ab;False;t3_kwisv4;False;False;t1_gj4jfdp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4t8ab/;1610624865;264;True;False;anime;t5_2qh22;;0;[]; -[];;;Pollsmor;;;[];;;;text;t2_pvhag;False;False;[];;"https://www.reddit.com/r/Re_Zero/comments/4z5tsq/wnsynopsis_funny_story_of_emilia_near_the_end_of/?utm_source=amp&utm_medium=&utm_content=post_body - -Referencing this, minor spoilers";False;False;;;;1610559612;;False;{};gj4t92j;False;t3_kwisv4;False;False;t1_gj4qrta;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4t92j/;1610624879;48;True;False;anime;t5_2qh22;;0;[]; -[];;;__Aishi__;;;[];;;;text;t2_8y05hl20;False;False;[];;I either missed it, or was it not revealed why he didn't stay the night? Was he wrapping up things at the mansion?;False;False;;;;1610559615;;False;{};gj4t9df;False;t3_kwisv4;False;False;t1_gj4gco8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4t9df/;1610624884;19;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;">why is the romance in this better than 90% of the romance anime’s I watch - -Maybe because of the characters' development throughout the series which made the confession better than other romance series.";False;False;;;;1610559618;;False;{};gj4t9l1;False;t3_kwisv4;False;False;t1_gj4smcz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4t9l1/;1610624887;6;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Yea, Subaru as two days, probably less.;False;False;;;;1610559623;;False;{};gj4ta0p;False;t3_kwisv4;False;True;t1_gj4rjzr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ta0p/;1610624894;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lord_ne;;;[];;;;text;t2_lh1o5;False;False;[];;"Here's a running OP/ED count - -||OP?|ED?| -|:-|:-|:-| -|**Part 1**| | | -|Episode 1|No|No| -|Episode 2|**End of episode**|No| -|Episode 3|No|***Without visuals***| -|Episode 4|No|**Yes**| -|Episode 5|**Yes**|No| -|Episode 6|No|***Without visuals***| -|Episode 7|No|**Yes**| -|Episode 8|**Yes**|No| -|Episode 9|No|**Yes**| -|Episode 10|No|***Without visuals***| -|Episode 11|No|***Without visuals***| -|Episode 12|No|No| -|Episode 13|No|***Without visuals***| -|**Part 2**| | | -|Episode 14|No|*Without visuals*\*| -|Episode 15|*Without visuals*\*|No\*\*| - -\*Part 1 OP/ED played in Part 2 - -\*\*The song they played during that kiss scene sounded kind of like an ED, but since I can't find any actual information on what the ED is, I'll assume that isn't it for now.";False;False;;;;1610559661;;1610560760.0;{};gj4tdbf;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4tdbf/;1610624946;27;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkStrawhat;;MAL;[];;https://myanimelist.net/animelist/DarkStrawhat;dark;text;t2_12njm1;False;False;[];;"Amazing episode! EMT <3 - -Hopefully we get the OP next week...i already know the song and it's fucking fire!";False;False;;;;1610559690;;False;{};gj4tfrr;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4tfrr/;1610624984;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SilverShark307;;;[];;;;text;t2_6g9zhmot;False;False;[];;g-guys no shaded ears amirite?;False;False;;;;1610559693;;False;{};gj4tg24;False;t3_kwisv4;False;True;t1_gj4jloq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4tg24/;1610624989;5;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Subaru?;False;False;;;;1610559712;;False;{};gj4thqc;False;t3_kwisv4;False;True;t1_gj4djlk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4thqc/;1610625015;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Are we?;False;False;;;;1610559726;;False;{};gj4tix8;False;t3_kwisv4;False;True;t1_gj4rhov;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4tix8/;1610625033;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;I suppose;False;False;;;;1610559729;;False;{};gj4tj60;False;t3_kwisv4;False;False;t1_gj4iml9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4tj60/;1610625038;12;True;False;anime;t5_2qh22;;0;[]; -[];;;FireFistYamaan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4uscna3;False;False;[];;"I'm talking about things that'll make you understand that in future episodes - -That's why I spoiler marked it";False;False;;;;1610559732;;False;{};gj4tjfb;False;t3_kwisv4;False;False;t1_gj4rm2q;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4tjfb/;1610625042;9;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"Yeah and? - -She was able to give him a few punches but she still couldn't keep up. - -the end result was still the same, However, how did Garfiel lose then? - -Watch out for the next episode";False;False;;;;1610559749;;False;{};gj4tkxg;False;t3_kwisv4;False;False;t1_gj4kd12;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4tkxg/;1610625066;10;True;False;anime;t5_2qh22;;0;[]; -[];;;cornpenguin01;;;[];;;;text;t2_147sgq;False;False;[];;BOYS WE DID IT god this is such a good episode. I’ve been waiting since the beginning to see an episode like this for Emilia. A From Zero episode for her and it delivered. This may Be ironically be the happiest episode in the history of the series. I couldn’t stop smiling and that’s a first considering how dark the show has been.;False;False;;;;1610559752;;False;{};gj4tl5d;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4tl5d/;1610625069;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MrJammin;;;[];;;;text;t2_phdju;False;False;[];;3* you're forgetting the black cat.;False;False;;;;1610559766;;False;{};gj4tmbb;False;t3_kwisv4;False;False;t1_gj4fwpl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4tmbb/;1610625089;309;True;False;anime;t5_2qh22;;0;[]; -[];;;x3tan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Koshiba;light;text;t2_6shxr;False;False;[];;Yes, he has been solidified in my best boi spot for sure now after this episode! I really want an Otto figure!;False;False;;;;1610559772;;False;{};gj4tmrs;False;t3_kwisv4;False;False;t1_gj4i5a6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4tmrs/;1610625096;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;Oh. FML. Well, I’m looking forward to it, then. Thanks !;False;False;;;;1610559773;;False;{};gj4tmur;False;t3_kwisv4;False;True;t1_gj4tjfb;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4tmur/;1610625098;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;"That would suck so FUCKING HARD for me. I HATE flying bugs ><";False;False;;;;1610559832;;False;{};gj4tros;False;t3_kwisv4;False;False;t1_gj4gx5f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4tros/;1610625182;8;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Let AoT celebrate their final season with well deserved bang. Re:Zero is practically in its infancy.;False;False;;;;1610559843;;1610579998.0;{};gj4tsl0;False;t3_kwisv4;False;False;t1_gj4rl8k;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4tsl0/;1610625196;9;True;False;anime;t5_2qh22;;0;[]; -[];;;jenza;;;[];;;;text;t2_96cbi;False;False;[];;"This is all quite insightful but why didnt Subaru just stay til morning? it was a kinda dick move to not do so when shes effectively grieving for Puck right now. - -Also was that goodbye forever from puck?";False;False;;;;1610559843;;False;{};gj4tsl1;False;t3_kwisv4;False;False;t1_gj4eeoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4tsl1/;1610625196;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Phoenyck;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://anilist.co/user/Phoenyck/;light;text;t2_1113kj;False;False;[];;"I'm someone who read the web novel after season 1. And since this season started I think there have been aspects they've rushed through which I think would confuse me as anime-only. I get the fast-pace, they have a lot of content to cover, but it does feel to me like it doesn't give time for stuff to sink in. - -But this episode I think was perfect. It felt like a really well needed breather. And the slower pace was perfect for what happened. This is probably my favourite episode of Re:Zero to date.";False;False;;;;1610559870;;False;{};gj4tuqc;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4tuqc/;1610625231;5;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"You do realize looks play a huge part in falling in love with someone? - -Not to mention him mentioning her usual traits of kindness and empathy";False;False;;;;1610559882;;False;{};gj4tvrs;False;t3_kwisv4;False;True;t1_gj4ltkv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4tvrs/;1610625248;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;That's pretty sudden though but yeah I guess;False;False;;;;1610559899;;False;{};gj4tx7h;False;t3_kwisv4;False;False;t1_gj4szoz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4tx7h/;1610625271;85;True;False;anime;t5_2qh22;;0;[]; -[];;;Grilled_Beats420;;;[];;;;text;t2_7whpgi1q;False;False;[];;Oh it’s an absolute perfect dumpster fire;False;False;;;;1610559903;;False;{};gj4txjc;False;t3_kwisv4;False;False;t1_gj4og7h;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4txjc/;1610625277;77;True;False;anime;t5_2qh22;;0;[]; -[];;;LeynaSepKim;;;[];;;;text;t2_2ay7grv6;False;False;[];;"I mean, I get why Rem did that. But I really think Rem and Subaru just don't fit too well as a couple in my opinion. Rem got major character development due to Subaru, but like she's a tad bit too dependent or obsessive to him at this point. That whole speech, in retrospect, was pretty creepy. Since she's basically telling him a detailed fantasy of their life together. Rem is a good character but don't think this ship will really hold well. - -The relationship could work once things are sorted out but I feel like Subaru and Emilia both have more chemistry like how this episode shows.";False;False;;;;1610559906;;False;{};gj4txsw;False;t3_kwisv4;False;False;t1_gj4pffn;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4txsw/;1610625282;5;True;False;anime;t5_2qh22;;0;[]; -[];;;x3tan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Koshiba;light;text;t2_6shxr;False;False;[];;">#OTTO IS BEST BOY AND I WOULD DIE FOR HIM - -Saaaaame. So happy for this back story! I was already loving him for being such a good friend but this really cemented his position as best boi for me. I really want a figure of him. I love him so much. <3";False;False;;;;1610559907;;False;{};gj4txwr;False;t3_kwisv4;False;False;t1_gj4fqpg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4txwr/;1610625283;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Assmeet123;;;[];;;;text;t2_4z85sldu;False;True;[];;Well, answering your questions would be spoilers. Subaru's reason will be revealed later on and as for the second question... Who knows?;False;False;;;;1610559910;;False;{};gj4ty3r;False;t3_kwisv4;False;False;t1_gj4tsl1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ty3r/;1610625286;9;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;To even Emilia can know, poor Emilia.;False;False;;;;1610559926;;False;{};gj4tzgk;False;t3_kwisv4;False;True;t1_gj4spjc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4tzgk/;1610625308;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GGG100;;;[];;;;text;t2_n30n6;False;False;[];;"*Dodges kiss* - -Emilia: I love Puck";False;False;;;;1610559940;;False;{};gj4u0m8;False;t3_kwisv4;False;False;t1_gj4qf6w;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4u0m8/;1610625325;13;True;False;anime;t5_2qh22;;0;[]; -[];;;I_Am_Foo1ish;;;[];;;;text;t2_12gccf;False;False;[];;"[AoT Season 3 Pt 2 spoilers](/s ""Beast titan be like: If you don't want this just dodge"")";False;False;;;;1610559967;;1610565220.0;{};gj4u2ua;False;t3_kwisv4;False;False;t1_gj4pll7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4u2ua/;1610625361;32;True;False;anime;t5_2qh22;;0;[]; -[];;;plinywaves;;;[];;;;text;t2_xeius;False;False;[];;"Okay I just want to make sure that I didn't miss anything but do we know why puck just left Emilia? -Is there something that foreshadows it earlier that I missed of is it a mystery? Puck alludes to these ""selfish reasons"" but unless he's somehow connected to the freezing of Emilia's family then I'm confused.";False;False;;;;1610559968;;False;{};gj4u2wj;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4u2wj/;1610625362;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;Realize was used 2 or 3 times. They can still use Long Shot for 10 episodes;False;False;;;;1610559980;;False;{};gj4u3vq;False;t3_kwisv4;False;False;t1_gj4ko0q;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4u3vq/;1610625378;10;True;False;anime;t5_2qh22;;0;[]; -[];;;hell-schwarz;;;[];;;;text;t2_z247q;False;False;[];;"I'm a little lost here, when did Subaru break his Promise? What Promise? - -There have been so many loops I got confused.";False;False;;;;1610559989;;False;{};gj4u4og;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4u4og/;1610625390;2;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"??? -is believing in someone with your whole heart is an alien concept to you";False;False;;;;1610560000;;1610563868.0;{};gj4u5lr;False;t3_kwisv4;False;False;t1_gj4l7xw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4u5lr/;1610625404;13;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Probably the same way, Subaru didn't told anyone but Emilia of the *affection* Subaru as for Rem.;False;False;;;;1610560001;;False;{};gj4u5ot;False;t3_kwisv4;False;True;t1_gj4swse;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4u5ot/;1610625406;2;True;False;anime;t5_2qh22;;0;[]; -[];;;imaforgetthis;;;[];;;;text;t2_2d7gcwde;False;False;[];;Maybe that's just the way he is, but for me it definitely feels... off? Suspicious? It's still very much like puppy love at this point, especially when he's so emphatic about announcing his love for her but doesn't really know a whole lot about her motivations (only learning about her reason for participating in the royal selection last episode) or past (which was obviously very traumatic).;False;False;;;;1610560012;;False;{};gj4u6lk;False;t3_kwisv4;False;False;t1_gj4nxh4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4u6lk/;1610625421;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Kyubeu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Qbeus;light;text;t2_4b5qgox9;False;False;[];;"Late so I'll be short: - -Huh, a wonderful Otto's backstory (great direction and effects) finished with Ram/Garf fight. Wait, we still have 11 minutes to go? Oh my Re:Zero - -Subaru pulling reverse Rem was something else. Both sides were very emotional as Emilia may have been very difficult but torment she's going through excuses it a bit. And the kiss, wow. Misery may strike soon but it's time to finish this arc at last";False;False;;;;1610560026;;False;{};gj4u7rg;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4u7rg/;1610625441;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FireRifle64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FireRifle64;light;text;t2_29fr8mww;False;False;[];;He did it, awesome. So ecstatic he went for the kiss.;False;False;;;;1610560036;;False;{};gj4u8ll;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4u8ll/;1610625454;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Romance maybe needs more than romance to be believable?;False;False;;;;1610560043;;False;{};gj4u97y;False;t3_kwisv4;False;True;t1_gj4smcz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4u97y/;1610625464;1;True;False;anime;t5_2qh22;;0;[]; -[];;;x3tan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Koshiba;light;text;t2_6shxr;False;False;[];;">Oh and I love Otto, but seriously : fuck Garfiel, that dude is just a massive brat who cant control his anger and goes into Hulk Mode immediately and doesnt care who or what he kills in his rampage. I hope he gets some sense beaten in to him. - -Lol, I was just thinking this episode about how they're really making me dislike Garfiel. Him punching Otto certainly didn't help his case. :P";False;False;;;;1610560065;;False;{};gj4ub06;False;t3_kwisv4;False;False;t1_gj4heoy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ub06/;1610625492;17;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;"Fantastic episode, no kidding I'm here after replaying few scenes for a couple of times lol - -[My boi Subaru did, that suffering lad finally did it, heck yeah.](https://i.giphy.com/media/3oFzmrN89MdYqb8u7C/giphy.webp) The whole conversation between Emilia and Subaru was so... idk what to say, but damn, that was so great, great work by VAs - -Obligatory Best Boi Otto comment. Unfortunately I was spoiled about Otto's past to an extent a while ago, but it's great to have a great backstory behind a already good character";False;False;;;;1610560065;;1610560673.0;{};gj4ub0i;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ub0i/;1610625493;3;True;False;anime;t5_2qh22;;0;[]; -[];;;B3GG;;;[];;;;text;t2_ww0b1;False;False;[];;A better translation would be to look away but oh well;False;False;;;;1610560065;;False;{};gj4ub0v;False;t3_kwisv4;False;False;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ub0v/;1610625493;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Asriel-SIU;;;[];;;;text;t2_15bomb;False;False;[];;"Subaru has officially become a chad. - -*The secret OST playing in the back* [https://www.youtube.com/watch?v=jxGZK6gt4l8](https://www.youtube.com/watch?v=jxGZK6gt4l8)";False;False;;;;1610560077;;False;{};gj4uc01;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4uc01/;1610625509;1;True;False;anime;t5_2qh22;;0;[]; -[];;;and1927;;MAL;[];;;dark;text;t2_gvxyp;False;False;[];;The anime follows the LN, which has rearranged a lost of stuff. It will diverge a lot more from here on out compared to the WN. The plot is the same, but the journey is slightly different.;False;False;;;;1610560091;;False;{};gj4ud2u;False;t3_kwisv4;False;False;t1_gj4tuqc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ud2u/;1610625526;7;True;False;anime;t5_2qh22;;0;[]; -[];;;VortechsTG;;;[];;;;text;t2_2hyzevmv;False;False;[];;Need to remove the space my guy;False;False;;;;1610560091;;False;{};gj4ud32;False;t3_kwisv4;False;False;t1_gj4u2ua;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ud32/;1610625526;19;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Roswaal would have won the bet, Subaru needs Emilia's support, if he can't hes fucked.;False;False;;;;1610560110;;False;{};gj4uenk;False;t3_kwisv4;False;True;t1_gj4shxs;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4uenk/;1610625551;1;True;False;anime;t5_2qh22;;0;[]; -[];;;I-Love-Emilia;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;I love Emilia;dark;text;t2_3yu81k8x;False;True;[];;This is good. I like this. I like this a lot;False;False;;;;1610560118;;False;{};gj4ufdg;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ufdg/;1610625562;6;True;False;anime;t5_2qh22;;0;[]; -[];;;falcon413;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/higgs_boson;light;text;t2_4r7tf;False;False;[];;I was part of the Rem ship during season 1, but in all honesty the reason was a lack of Emilia. Choosing a ship back then wasn’t really fair since we barely got to see Emilia at all. I love Rem and I think she’s a great character, but getting to know Emilia has really changed my perspective. For me the “turning point” was The Frozen Bond OVA. That’s when I knew... Emilia is best girl.;False;False;;;;1610560120;;False;{};gj4ufhu;False;t3_kwisv4;False;False;t1_gj4djlk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ufhu/;1610625564;15;True;False;anime;t5_2qh22;;0;[]; -[];;;rayquazaisthebest;;;[];;;;text;t2_3q2rn825;False;False;[];;As a teenager that hasn’t been in a single relationship, I can’t say the same;False;False;;;;1610560160;;False;{};gj4uirw;False;t3_kwisv4;False;False;t1_gj4klsd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4uirw/;1610625617;54;True;False;anime;t5_2qh22;;0;[]; -[];;;x3tan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Koshiba;light;text;t2_6shxr;False;False;[];;">Poor Otto...tries to do something nice for his little brother and ends up calling forth a plague of locusts, basically. - - -When you're attack is super effective but you were really just trying to catch the Pokémon. :( - -I saw him do that though and I was like ""uhhhhh that was wayyy too effective Otto lol..""";False;False;;;;1610560165;;False;{};gj4uj8d;False;t3_kwisv4;False;False;t1_gj4h5vr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4uj8d/;1610625625;7;True;False;anime;t5_2qh22;;0;[]; -[];;;I-Love-Emilia;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;I love Emilia;dark;text;t2_3yu81k8x;False;True;[];;I fully intend to make use of whatever meme template comes out of this;False;False;;;;1610560196;;False;{};gj4ulph;False;t3_kwisv4;False;False;t1_gj4pll7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ulph/;1610625669;106;True;False;anime;t5_2qh22;;0;[]; -[];;;ThetrueLaw;;;[];;;;text;t2_ehleb6m;False;False;[];;i still don't understand what happened with the cat did i miss something;False;False;;;;1610560204;;False;{};gj4umez;False;t3_kwisv4;False;False;t1_gj4ggdc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4umez/;1610625680;57;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;I believe Satella is Emilia from the future who used Return by Death. Now Subaru has saved Emilia and by extension Satella;False;False;;;;1610560248;;False;{};gj4uq0j;False;t3_kwisv4;False;False;t1_gj4ot8r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4uq0j/;1610625741;495;True;False;anime;t5_2qh22;;0;[]; -[];;;BigPussyHunter42069;;;[];;;;text;t2_37qpbyre;False;False;[];;Yea FBI, this man right here;False;False;;;;1610560257;;False;{};gj4uqrw;False;t3_kwisv4;False;False;t1_gj4kwp3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4uqrw/;1610625754;19;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Subaru is also fighting for all their lives if Emilia doesn't trust him they all fucked and Roswaal automatically wins.;False;False;;;;1610560261;;False;{};gj4ur2t;False;t3_kwisv4;False;True;t1_gj4rtc2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ur2t/;1610625759;1;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;It was literally last episode haha, the promise of being with her all night after Puck left.;False;False;;;;1610560293;;False;{};gj4uto8;False;t3_kwisv4;False;False;t1_gj4u4og;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4uto8/;1610625801;8;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;Return by Death might very well be time travel. In which case there is a basis for time travel. Especially when some believe Return by Death is an authority and therefore Satella would have RbD aswell.;False;False;;;;1610560357;;False;{};gj4uyxw;False;t3_kwisv4;False;False;t1_gj4po8f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4uyxw/;1610625886;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Zonca;;;[];;;;text;t2_11odu8;False;False;[];;"I feel you a lot. - - -I absolutely adored when S1E13 hit and we had an ""isekai protagonist"" argue with his waifu, more anime should do that. Especially since it was precisely about Subaru being called out about treating Emilia like a waifu/doll back then.";False;False;;;;1610560362;;False;{};gj4uz9g;False;t3_kwisv4;False;False;t1_gj4jfdp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4uz9g/;1610625892;121;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Heartbeat, heartbeat;False;False;;;;1610560381;;False;{};gj4v0tv;False;t3_kwisv4;False;True;t1_gj4uc01;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4v0tv/;1610625919;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"Subaru in last week's episode promised emilia that he would stay with her throughout the night but he ended up leaving her for some unknown reason - -Breaking her promise hence she calls him liar";False;False;;;;1610560386;;False;{};gj4v183;False;t3_kwisv4;False;False;t1_gj4u4og;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4v183/;1610625925;4;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;Haha, it's Love vs War but as a fan of both, we're the victors;False;False;;;;1610560393;;False;{};gj4v1ux;False;t3_kwisv4;False;False;t1_gj4o1gm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4v1ux/;1610625935;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Exphyre;;;[];;;;text;t2_ic47l;False;False;[];;"Notice how during their entire conversation, Subaru's eyes were reflecting Emilia. But the opposite was not true for Emilia, until the very end after she started thinking about her ""reason to believe"". - -What an amazing touch by the animators.";False;False;;;;1610560396;;False;{};gj4v23r;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4v23r/;1610625939;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Bigbossbro08;;;[];;;;text;t2_1qsu6xfg;False;False;[];;hopefully he'll make a big business like Speedwagon and continue supporting Subaru's family.;False;False;;;;1610560397;;False;{};gj4v270;False;t3_kwisv4;False;False;t1_gj4q1fi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4v270/;1610625940;88;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;Puck left because Emilia needed her memories and the contract sealed those memories, basically Puck was not letting Emilia to remember so she did not suffer, but after Subaru talked with him, he decided to let her remember and break the contract.;False;False;;;;1610560409;;False;{};gj4v364;False;t3_kwisv4;False;True;t1_gj4u2wj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4v364/;1610625955;2;True;False;anime;t5_2qh22;;0;[]; -[];;;imaforgetthis;;;[];;;;text;t2_2d7gcwde;False;False;[];;That was literally the last thing I was expecting from an episode that was set up to be focused on action. That was definitely on no one's radar. Maybe even more unexpected than episode 15 of S1.;False;False;;;;1610560418;;False;{};gj4v3yn;False;t3_kwisv4;False;False;t1_gj4cvol;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4v3yn/;1610625969;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Jonahwizar;;;[];;;;text;t2_p9xam;False;False;[];;This feels like episode 18 but for Emilia;False;False;;;;1610560420;;False;{};gj4v45b;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4v45b/;1610625972;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MrTzatzik;;;[];;;;text;t2_3y4il31;False;False;[];;You would be surprised how many isekais use time travel as plot device.;False;False;;;;1610560429;;False;{};gj4v4x7;False;t3_kwisv4;False;False;t1_gj4po8f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4v4x7/;1610625984;5;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;He didn't stay with Emilia, last episode, after he promised to stay all night.;False;False;;;;1610560430;;False;{};gj4v50w;False;t3_kwisv4;False;False;t1_gj4u4og;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4v50w/;1610625986;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Theleux;;MAL a-1milquiz;[];;https://myanimelist.net/profile/Theleux;dark;text;t2_am615;False;False;[];;The subreddit comment faces only work with old.reddit's CSS unfortunately. Miss out on a lot of them.;False;False;;;;1610560445;;False;{};gj4v67m;False;t3_kwisv4;False;True;t1_gj4oyjq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4v67m/;1610626005;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;It felt messy as fuck, and I would have scoffed hard had I not be on both ends of said conversation.;False;False;;;;1610560447;;False;{};gj4v6df;False;t3_kwisv4;False;False;t1_gj4heoy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4v6df/;1610626008;8;True;False;anime;t5_2qh22;;0;[]; -[];;;mike_2797;;;[];;;;text;t2_8qbcq38;False;False;[];;Madlad finally did it.;False;False;;;;1610560452;;False;{};gj4v6u8;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4v6u8/;1610626015;3;True;False;anime;t5_2qh22;;0;[]; -[];;;IC2Flier;;;[];;;;text;t2_wnxu2v6;False;False;[];;Rem then said she wanted to add Emilia to the list of girls she'll smash as soon as she wakes up and everyone remembers her.;False;False;;;;1610560457;;False;{};gj4v79t;False;t3_kwisv4;False;False;t1_gj4n20h;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4v79t/;1610626021;198;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;That's progress right there!;False;False;;;;1610560463;;False;{};gj4v7sa;False;t3_kwisv4;False;False;t1_gj4dg6g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4v7sa/;1610626030;170;True;False;anime;t5_2qh22;;0;[]; -[];;;Yuriy116;;;[];;;;text;t2_4zw79dsa;False;False;[];;*You're lying, Morgan*;False;False;;;;1610560464;;False;{};gj4v7tu;False;t3_kwisv4;False;False;t1_gj4oj2g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4v7tu/;1610626031;16;True;False;anime;t5_2qh22;;0;[]; -[];;;bakowh;;;[];;;;text;t2_xmmg9;False;False;[];;"First off, Otto is the GOAT. - -Second, RIP Rem - -Third, I was not expecting that but I'll take it";False;False;;;;1610560469;;False;{};gj4v8aw;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4v8aw/;1610626039;2;True;False;anime;t5_2qh22;;0;[]; -[];;;plinywaves;;;[];;;;text;t2_xeius;False;False;[];;So I suppose the question would be then why did puck and Emilia have that contract in the first place? Did Emilia want to escape the memories of her past maybe?;False;False;;;;1610560475;;False;{};gj4v8uv;False;t3_kwisv4;False;True;t1_gj4v364;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4v8uv/;1610626048;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VortechsTG;;;[];;;;text;t2_2hyzevmv;False;False;[];;I mean subaru was about to kiss Rem in season 1 until Ferris interrupted them. Then the battle started and he never really got a chance to.;False;False;;;;1610560487;;False;{};gj4v9tz;False;t3_kwisv4;False;False;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4v9tz/;1610626063;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ImabitchAndIDC;;;[];;;;text;t2_8pxfuq36;False;False;[];;I'm the same as you;False;False;;;;1610560500;;False;{};gj4vavk;False;t3_kwisv4;False;False;t1_gj4jx8s;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vavk/;1610626079;174;True;False;anime;t5_2qh22;;0;[]; -[];;;J3wFro8332;;;[];;;;text;t2_55992ei;False;False;[];;I read the manga and God damn what a dumpster fire (plus some... Lewdness added in);False;False;;;;1610560514;;False;{};gj4vbzy;False;t3_kwisv4;False;False;t1_gj4txjc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vbzy/;1610626097;23;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;The full song is already out but no signs of the OP in the show haha.;False;False;;;;1610560523;;False;{};gj4vcqk;False;t3_kwisv4;False;True;t1_gj4rhov;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vcqk/;1610626109;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Archensix;;MAL;[];;http://myanimelist.net/animelist/Ahuru;dark;text;t2_9f5hv;False;False;[];;By the fact that she says she was frozen at around age 6 or 7, and we know she was only unfrozen in recent few years.;False;False;;;;1610560529;;False;{};gj4vdab;False;t3_kwisv4;False;True;t1_gj4rm2q;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vdab/;1610626117;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"Have you watched the Frozen bonds OVA? - -Puck has a contract with Emilia which apparently locks away her memories - -So in order to give her memories back so she could pass the trial he broke the contract and disappeared";False;False;;;;1610560545;;False;{};gj4velh;False;t3_kwisv4;False;True;t1_gj4u2wj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4velh/;1610626139;2;True;False;anime;t5_2qh22;;0;[]; -[];;;airparrot;;;[];;;;text;t2_a14f89i;False;False;[];;"Holy shit I’m speechless. This is peak Re:Zero ladies and gentlemen. Let’s be thankful that we get to experience such a masterpiece. - -Also, Otto best boy and Emilia is and always has been best girl";False;True;;comment score below threshold;;1610560566;;False;{};gj4vgdj;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vgdj/;1610626168;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;Joselu2001;;;[];;;;text;t2_vxt464l;False;False;[];;"Oh boy why is it that every episode 15 in Re:Zero is a staple of the series? Certainly one of the [best moments](https://twitter.com/emiIiasupremacy/status/1349392206805692424) -of the series!";False;False;;;;1610560578;;False;{};gj4vhfo;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vhfo/;1610626186;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kam_E_luck;;;[];;;;text;t2_3i5m4uwq;False;False;[];;">Really pained seeing anime only (rightfully so at the time) calling him out after what happened in S1 without the full context - -Tbf tho, Otto was justified/understandable to do that to Subaru in that situation. - -He and Subaru only met like a few hours in that loop, they weren't even acquaintances to begin. Then Otto got chased by a fucking whale that went after Subaru, who also assaulted him when he tried to save both their asses. - -Like who really want to die cuz of some stranger. Otto did regret kicking Subaru out of the carriage tho, that's why the Dragon came back to pick Subaru up by Otto's command";False;False;;;;1610560589;;False;{};gj4vib5;False;t3_kwisv4;False;False;t1_gj4i5a6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vib5/;1610626199;16;True;False;anime;t5_2qh22;;0;[]; -[];;;IC2Flier;;;[];;;;text;t2_wnxu2v6;False;False;[];;OH YES;False;False;;;;1610560616;;False;{};gj4vkml;False;t3_kwisv4;False;False;t1_gj4om30;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vkml/;1610626238;16;True;False;anime;t5_2qh22;;0;[]; -[];;;justmeshane;;;[];;;;text;t2_wrlat;False;False;[];;"This was the shortest 27 minutes of my life. - -Favourite episode of the entirety of season 2 so far.";False;False;;;;1610560618;;False;{};gj4vksm;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vksm/;1610626240;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Zonca;;;[];;;;text;t2_11odu8;False;False;[];;[Menacing even](https://pm1.narvii.com/7142/a0264e43735c5ee678c81361fffac500c43d7f3er1-686-540v2_hq.jpg);False;False;;;;1610560621;;False;{};gj4vl1v;False;t3_kwisv4;False;False;t1_gj4h1qd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vl1v/;1610626244;35;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"The kiss was to prove he was not lying when he said he loves her... Not that it will erase those things. - -Besides judging last episode flashback it seems everyone lies to Emilia to protect her, what she hates is Subaru getting hurt for those actions, not the actions themselves.";False;False;;;;1610560641;;False;{};gj4vmqe;False;t3_kwisv4;False;False;t1_gj4rgzh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vmqe/;1610626271;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;It feels good doesn't it?;False;False;;;;1610560642;;False;{};gj4vmu0;False;t3_kwisv4;False;True;t1_gj4pktf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vmu0/;1610626272;2;True;False;anime;t5_2qh22;;0;[]; -[];;;VortechsTG;;;[];;;;text;t2_2hyzevmv;False;False;[];;Rem probably? She's the one who suggested it.;False;False;;;;1610560652;;False;{};gj4vnmk;False;t3_kwisv4;False;False;t1_gj4shxx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vnmk/;1610626285;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Oh, so does the naming inspiration for Otto come from the Ottoman Empire? His upbringing area gives off huge “well-off people from the Ottoman Empire” vibes;False;False;;;;1610560666;;False;{};gj4vos4;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vos4/;1610626303;7;True;False;anime;t5_2qh22;;0;[]; -[];;;CarioGod;;;[];;;;text;t2_ktg8q;False;False;[];;Subaru and Emilia weren't even a full fledged couple yet and already had a fight like a married couple;False;False;;;;1610560670;;False;{};gj4vp55;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vp55/;1610626310;27;True;False;anime;t5_2qh22;;0;[]; -[];;;goosegotguts;;;[];;;;text;t2_6fhk8402;False;False;[];;LET’s FREAKING GOOOOOOOOOO;False;False;;;;1610560672;;False;{};gj4vpbw;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vpbw/;1610626312;3;True;False;anime;t5_2qh22;;0;[]; -[];;;one-eyed-02;;;[];;;;text;t2_783k5oi0;False;False;[];;"OTTO'S BACKSTORY WAS ADAPTED AS IS!!!! - -MEGA POOOOOGGGGG!!! - -Edit : WAIT [ANTI-GARF ATTACK](/s ""AL DONA"") WAS CUT I FORGOT IT WAS CUT. Can someone confirm whether it was cut between WN and LN, or the LN and the anime? Surely, Tappei wouldn't cut it from the LN.";False;False;;;;1610560675;;1610562967.0;{};gj4vpkd;False;t3_kwisv4;False;False;t1_gj4cva1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vpkd/;1610626316;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Yuriy116;;;[];;;;text;t2_4zw79dsa;False;False;[];;"""No one can dodge the Emerald Splash!""";False;False;;;;1610560692;;False;{};gj4vr0d;False;t3_kwisv4;False;False;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vr0d/;1610626341;15;True;False;anime;t5_2qh22;;0;[]; -[];;;FlaminScribblenaut;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/flaming_scr;light;text;t2_hx6xr;False;False;[];;Join me in rooting for the polyamory ending!;False;False;;;;1610560711;;False;{};gj4vsmg;False;t3_kwisv4;False;False;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vsmg/;1610626368;6;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;This is a declaration of LOVE!;False;False;;;;1610560714;;False;{};gj4vsx9;False;t3_kwisv4;False;False;t1_gj4nmd8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vsx9/;1610626373;183;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> do we know why puck just left Emilia? - -Yes, Puck said that it would remove the seal on Emilia's memories. -The movie Frozen Bonds as plenty of clues about Puck and Emilia. Puck in the movie ""saved"" Emilia from the ice, but he's crying in that scene, there's clear more than meets the eye.";False;False;;;;1610560715;;False;{};gj4vt0i;False;t3_kwisv4;False;True;t1_gj4u2wj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vt0i/;1610626376;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDarkCrusader_;;;[];;;;text;t2_yvhrr;False;False;[];;Honestly, like it was a beautiful scene but he liked kinda psycho at times with Emilias reflection in his eyes.;False;False;;;;1610560717;;False;{};gj4vt5n;False;t3_kwisv4;False;False;t1_gj4fe4g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vt5n/;1610626378;8;True;False;anime;t5_2qh22;;0;[]; -[];;;PopPunkTeacher;;;[];;;;text;t2_3q70c5ad;False;False;[];;"Oh no I didn’t ship ram x Subaru, I just love ram as a character haha - -If anything I’d still ship ram x Garfield haha";False;False;;;;1610560718;;False;{};gj4vtav;False;t3_kwisv4;False;True;t1_gj4ss45;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vtav/;1610626381;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UncontrollableSeb;;;[];;;;text;t2_2zekijl4;False;False;[];;inb4 this timeline gets reset which causes Subaru to go on a downwards spiral for another 15 episodes;False;False;;;;1610560743;;False;{};gj4vv9u;False;t3_kwisv4;False;True;t1_gj4jfdp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vv9u/;1610626416;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bawbrosss;;;[];;;;text;t2_mho8a;False;False;[];;In the past I've been too nervous to just go for a kiss, I usually pathetically ask if it's okay, next time I'm gonna use this line lmao;False;False;;;;1610560757;;False;{};gj4vwfn;False;t3_kwisv4;False;False;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vwfn/;1610626435;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"**Love is War** - -There you get r/anime 's the big three in one";False;False;;;;1610560766;;False;{};gj4vx59;False;t3_kwisv4;False;False;t1_gj4v1ux;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vx59/;1610626447;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;I mean, until Subaru explains to us why he left in the middle of the night he is not entirely wrong. But still, the ambiguity of their arguments definitely makes it interesting;False;False;;;;1610560773;;False;{};gj4vxr1;False;t3_kwisv4;False;False;t1_gj4jfdp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vxr1/;1610626458;14;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"Yes but she said she acted because Subaru got there early, so if Subaru does not go before the third day she won't attack. - -And the bunnies being early was because Subaru left the Sanctuary so Roswall took the opportunity to summon the snow to isolate Emilia.";False;False;;;;1610560776;;False;{};gj4vy1g;False;t3_kwisv4;False;True;t1_gj4rjzr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vy1g/;1610626463;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;THat's some Kaguya shit XD;False;False;;;;1610560792;;False;{};gj4vzaj;False;t3_kwisv4;False;True;t1_gj4v1ux;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4vzaj/;1610626484;3;True;False;anime;t5_2qh22;;0;[]; -[];;;goosegotguts;;;[];;;;text;t2_6fhk8402;False;False;[];;"All those loops where the people showed him kindness, gone forever :( - -Emilia saving him from thugs - -Beatrice protecting him from dying in the mansion - -Otto telling Subaru he was his friend";False;False;;;;1610560807;;False;{};gj4w0je;False;t3_kwisv4;False;False;t1_gj4gjsm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4w0je/;1610626504;68;True;False;anime;t5_2qh22;;0;[]; -[];;;Aetherdraw;;;[];;;;text;t2_yjc39;False;False;[];;Kazuma's gonna be pipin' mad in Isekai Quartet season 3, isn't he?;False;False;;;;1610560820;;False;{};gj4w1me;False;t3_kwisv4;False;False;t1_gj4h364;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4w1me/;1610626523;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Kam_E_luck;;;[];;;;text;t2_3i5m4uwq;False;False;[];;"I will be honest here tho, everytime i hear Rieri's voice. I always flashback to her shotacon mode in FGO radio. Rieri is a hardcore shotacon - -Cuz of that, i have to remove that image out of my head to fully enjoy the episode";False;False;;;;1610560832;;False;{};gj4w2ly;False;t3_kwisv4;False;False;t1_gj4hka3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4w2ly/;1610626539;6;True;False;anime;t5_2qh22;;0;[]; -[];;;imaforgetthis;;;[];;;;text;t2_2d7gcwde;False;False;[];;I wish that scene was a little more clear somehow. There are definitely a lot of people that missed it, including me.;False;False;;;;1610560847;;False;{};gj4w3wr;False;t3_kwisv4;False;False;t1_gj4ruw3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4w3wr/;1610626560;165;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;The Web Novel is more like a draft for the Light Novel and the anime follows the LN.;False;False;;;;1610560850;;False;{};gj4w43o;False;t3_kwisv4;False;True;t1_gj4tuqc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4w43o/;1610626564;3;True;False;anime;t5_2qh22;;0;[]; -[];;;goosegotguts;;;[];;;;text;t2_6fhk8402;False;False;[];;Best bro and best boy really showing off this episode;False;False;;;;1610560856;;False;{};gj4w4lp;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4w4lp/;1610626573;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cornpenguin01;;;[];;;;text;t2_147sgq;False;False;[];;Yes we had a kiss but let’s not forget Otto is a THOT SLAYER. He exposed that girl for being with 8 guys before;False;False;;;;1610560863;;False;{};gj4w56s;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4w56s/;1610626583;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610560866;moderator;False;{};gj4w5gu;False;t3_kwisv4;False;True;t1_gj4q9sd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4w5gu/;1610626588;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Symphonixz;;;[];;;;text;t2_t85tg;False;False;[];;"Everyone and Me: ""Hyped to the highest extent."" - -Also Me: ""Realizing that Subaru still has to deal with Assassins and Demon Bunnies still...""";False;False;;;;1610560867;;False;{};gj4w5ke;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4w5ke/;1610626589;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;"I read ""amount of titties? 2"". I was like ""ouch that was a nasty burn on Ram.""";False;False;;;;1610560874;;False;{};gj4w61q;False;t3_kwisv4;False;False;t1_gj4fwpl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4w61q/;1610626597;20;True;False;anime;t5_2qh22;;0;[]; -[];;;tekkenjin;;;[];;;;text;t2_ymz1t;False;False;[];;And then they even made up with a kiss. I hope we get more arguments in the future.;False;False;;;;1610560899;;False;{};gj4w829;False;t3_kwisv4;False;False;t1_gj4jrh0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4w829/;1610626630;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;Well yeah, comparatively, [traveling to the future is easy.](https://xkcd.com/209/) But maybe not for Subaru.;False;False;;;;1610560947;;False;{};gj4wbwc;False;t3_kwisv4;False;False;t1_gj4skd0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4wbwc/;1610626694;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Yuriy116;;;[];;;;text;t2_4zw79dsa;False;False;[];;"\- Last episode, Subaru called Emilia slothful - -\- This episode, we got a cameo from the Archbishop himself - -Betelgeuse might have died, but his legacy lives on";False;False;;;;1610560958;;False;{};gj4wct5;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4wct5/;1610626708;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Keith_Marlow;;;[];;;;text;t2_3eyqgrl3;False;False;[];;If you've read the LN/WN, you already know the plot and dialogue, so you're watching the anime for the animation, direction, voice acting, music etc.;False;False;;;;1610560962;;False;{};gj4wd4u;False;t3_kwisv4;False;False;t1_gj4i7op;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4wd4u/;1610626714;5;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;The contract specifications are a secret even to this day, but as seen in Frozen Bonds, Puck had some connection with Echidna as well, so it's mean to be a secret for now, I mean the contract even has Puck destroying the world and I doubt Emilia would agree to that.;False;False;;;;1610560972;;1610561210.0;{};gj4wdvv;False;t3_kwisv4;False;False;t1_gj4v8uv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4wdvv/;1610626727;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndecisiveDude;;;[];;;;text;t2_143lab;False;False;[];;I haven’t watched it yet, but I am so so excited;False;False;;;;1610560975;;False;{};gj4we4w;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4we4w/;1610626730;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;"""Otto has given you the truth, do what you will""";False;False;;;;1610560979;;1610562155.0;{};gj4weg3;False;t3_kwisv4;False;False;t1_gj4w56s;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4weg3/;1610626736;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Simp4Satella;;;[];;;;text;t2_95im9vat;False;False;[];;Well I’ve got at least a decade of life experience on you my guy. Don’t fret, it’ll happen eventually. I didn’t even properly kiss a girl until I was older than Subaru.;False;False;;;;1610560979;;False;{};gj4weh4;False;t3_kwisv4;False;False;t1_gj4uirw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4weh4/;1610626736;66;True;False;anime;t5_2qh22;;0;[]; -[];;;hell-schwarz;;;[];;;;text;t2_z247q;False;False;[];;oh god, I thought it was something different lol;False;False;;;;1610560984;;False;{};gj4wevf;False;t3_kwisv4;False;False;t1_gj4uto8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4wevf/;1610626743;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;~~I’d much rather it stay this way, cuz I really didn’t need to know that...~~;False;False;;;;1610561010;;False;{};gj4wh1x;False;t3_kwisv4;False;False;t1_gj4w3wr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4wh1x/;1610626778;100;True;False;anime;t5_2qh22;;0;[]; -[];;;GenericUsername935;;;[];;;;text;t2_2me1cihr;False;False;[];;Maybe Frederica can be his new cat gf;False;False;;;;1610561013;;False;{};gj4wh88;False;t3_kwisv4;False;False;t1_gj4fe4g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4wh88/;1610626781;8;True;False;anime;t5_2qh22;;0;[]; -[];;;hell-schwarz;;;[];;;;text;t2_z247q;False;False;[];;Oh, I somehow thought she had been angry/disappointed for a longer time;False;False;;;;1610561017;;False;{};gj4whmp;False;t3_kwisv4;False;False;t1_gj4v50w;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4whmp/;1610626787;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Zerglinghunter;;;[];;;;text;t2_by2m8;False;False;[];;Man Otto is a beast! This dude's been holding out this hold time. Taking on Garfiel like that. Mad respect!;False;False;;;;1610561060;;False;{};gj4wl2g;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4wl2g/;1610626843;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hell-schwarz;;;[];;;;text;t2_z247q;False;False;[];;I somehow thought she had been angry with him for breaking his promise for longer;False;False;;;;1610561078;;False;{};gj4wmkj;False;t3_kwisv4;False;False;t1_gj4v183;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4wmkj/;1610626868;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;She did? I don't remember that;False;False;;;;1610561120;;False;{};gj4wpv2;False;t3_kwisv4;False;False;t1_gj4vnmk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4wpv2/;1610626920;6;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDarkCrusader_;;;[];;;;text;t2_yvhrr;False;False;[];;Well now I’m horrified he’s gonna die again and all this progress will be erased.;False;False;;;;1610561124;;False;{};gj4wq68;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4wq68/;1610626926;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hetchmed;;;[];;;;text;t2_1ovv8j73;False;False;[];;Number of deaths? 2 (probably);False;False;;;;1610561141;;False;{};gj4wrlj;False;t3_kwisv4;False;False;t1_gj4fwpl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4wrlj/;1610626950;6;True;False;anime;t5_2qh22;;0;[]; -[];;;prophetofgreed;;;[];;;;text;t2_7ibdz;False;False;[];;"Seeing how sad and broken Emilia was there... - -[](#manly-tears) - -Damn, this was a packed episode. We get Otto's backstory (which was really interesting, especially seeing Petelgeuse again) and his time to shine. Another classic bit of Re;Zero having two characters talking to each other in one place and the writing on its own carrying the scene (similar to season 1 episode 18), seeing both Subaru and Emilia reflected in each other's eyes was really great touch. - -And Subaru really went for it, proving how much he loved Emilia with that kiss.";False;False;;;;1610561141;;False;{};gj4wrlt;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4wrlt/;1610626950;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610561155;;False;{};gj4wsqs;False;t3_kwisv4;False;True;t1_gj4ot8r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4wsqs/;1610626970;58;True;False;anime;t5_2qh22;;0;[]; -[];;;johnmichsenpai;;;[];;;;text;t2_5txsweic;False;False;[];;Subaru became the best MC in just one season. Btw they did justice to the animation on the kiss. I completely understand Otto now and why he did what he did. Imagine the voice of the white whake screaming in your ears I understand why he kicked Subaru in season 1. I can safely say I want to call him Brotto.Mark my words Rem is gonna wake up and see Subaru and Emilia kissing in the garden and immediately go back to sleep.;False;False;;;;1610561163;;False;{};gj4wtco;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4wtco/;1610626980;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;What a great episode! Otto now officially becomes one of my best boys! And lmao subaru, you go tell her boy!;False;False;;;;1610561173;;False;{};gj4wu5o;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4wu5o/;1610626995;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Grilled_Beats420;;;[];;;;text;t2_7whpgi1q;False;False;[];;I just couldn’t turn away but at the same time I felt gross all over lol;False;False;;;;1610561184;;False;{};gj4wv2w;False;t3_kwisv4;False;False;t1_gj4vbzy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4wv2w/;1610627011;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Bobcam7;;;[];;;;text;t2_1xr1f5w7;False;False;[];;Shane Dawson moment;False;False;;;;1610561200;;False;{};gj4wwdc;False;t3_kwisv4;False;False;t1_gj4fb40;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4wwdc/;1610627033;115;True;False;anime;t5_2qh22;;0;[]; -[];;;Ned218;;;[];;;;text;t2_9ngtdyg4;False;False;[];;Fucking Legend.;False;False;;;;1610561204;;False;{};gj4wwo3;False;t3_kwisv4;False;False;t1_gj4oi08;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4wwo3/;1610627037;47;True;False;anime;t5_2qh22;;0;[]; -[];;;discuss-not-concuss;;;[];;;;text;t2_4szhiuz1;False;False;[];;You have been suffering all this time, right?;False;False;;;;1610561225;;False;{};gj4wyb6;False;t3_kwisv4;False;False;t1_gj4vavk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4wyb6/;1610627063;125;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;[I hope that doesn't happens](https://i.giphy.com/media/yr2qSstSRwTug/giphy.webp);False;False;;;;1610561250;;False;{};gj4x0dz;False;t3_kwisv4;False;True;t1_gj4wq68;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4x0dz/;1610627098;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kam_E_luck;;;[];;;;text;t2_3i5m4uwq;False;False;[];;"The way i classifieds this anime as 10% romance, 40% suffering, 30% mystery and 20% horror - -Sound right";False;False;;;;1610561253;;1610564192.0;{};gj4x0l9;False;t3_kwisv4;False;False;t1_gj4k16z;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4x0l9/;1610627102;26;True;False;anime;t5_2qh22;;0;[]; -[];;;johndrake666;;;[];;;;text;t2_178xlw;False;False;[];;All I can say is Wooooooooooooooo first base!;False;False;;;;1610561254;;False;{};gj4x0os;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4x0os/;1610627103;2;True;False;anime;t5_2qh22;;0;[]; -[];;;prophetofgreed;;;[];;;;text;t2_7ibdz;False;False;[];;Always zero;False;False;;;;1610561271;;False;{};gj4x225;False;t3_kwisv4;False;False;t1_gj4oxe6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4x225/;1610627125;327;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;Legends never die;False;False;;;;1610561295;;False;{};gj4x40z;False;t3_kwisv4;False;False;t1_gj4wct5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4x40z/;1610627157;11;True;False;anime;t5_2qh22;;0;[]; -[];;;gubenlo;;;[];;;;text;t2_bv77d;False;False;[];;It's been four hours;False;False;;;;1610561310;;False;{};gj4x5ac;False;t3_kwisv4;False;False;t1_gj4jx8s;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4x5ac/;1610627179;22;True;False;anime;t5_2qh22;;0;[]; -[];;;ninjablade46;;;[];;;;text;t2_kzh0b;False;False;[];;Gohan DODGE!;False;False;;;;1610561322;;False;{};gj4x69p;False;t3_kwisv4;False;False;t1_gj4p09p;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4x69p/;1610627196;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;I mean, if the love is mutual and understanding, you don’t really argue. It’s not necessary.;False;True;;comment score below threshold;;1610561336;;False;{};gj4x7cz;False;t3_kwisv4;False;True;t1_gj4uz9g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4x7cz/;1610627214;-20;True;False;anime;t5_2qh22;;0;[]; -[];;;Wellen66;;;[];;;;text;t2_2ptb3p62;False;False;[];;With Subaru, it's more 'do and die';False;False;;;;1610561344;;False;{};gj4x7zv;False;t3_kwisv4;False;False;t1_gj4oeh7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4x7zv/;1610627225;27;True;False;anime;t5_2qh22;;0;[]; -[];;;subaruxjuliusFTW;;;[];;;;text;t2_12yz2q;False;False;[];;"Because Otto can talk to all kind of animals, he doesn't view them as ""animals"" but as real people. And the white cat was Otto's first crush, sadly he got cucked by another cat that had a slick hairstyle";False;False;;;;1610561357;;False;{};gj4x90g;False;t3_kwisv4;False;False;t1_gj4umez;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4x90g/;1610627242;156;True;False;anime;t5_2qh22;;0;[]; -[];;;prophetofgreed;;;[];;;;text;t2_7ibdz;False;False;[];;She was voted best girl for a reason!;False;False;;;;1610561388;;False;{};gj4xbhy;False;t3_kwisv4;False;False;t1_gj4hwze;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4xbhy/;1610627282;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;"Wow, nice essay! - -On another note tho, where did we see how Subaru “felt like to be guided out of it”? Did I miss something last season? Was it what Otto said last episode? If it the latter, then didn’t they spent way to little time on that moment?";False;False;;;;1610561398;;False;{};gj4xc91;False;t3_kwisv4;False;False;t1_gj4eeoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4xc91/;1610627296;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Acturio;;MAL;[];;http://myanimelist.net/animelist/Acturio01;dark;text;t2_c1azh;False;False;[];;so basically Rem is a simp as well?;False;False;;;;1610561401;;False;{};gj4xciz;False;t3_kwisv4;False;False;t1_gj4jddt;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4xciz/;1610627300;8;True;False;anime;t5_2qh22;;0;[]; -[];;;SuddenFellow;;;[];;;;text;t2_acaw1;False;False;[];;The confession went as well as I thought it was going to go. Great episode, can we just end it now before the suffering begins again haha;False;False;;;;1610561414;;False;{};gj4xdjj;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4xdjj/;1610627317;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ninjablade46;;;[];;;;text;t2_kzh0b;False;False;[];;honestly it was one of the best scenes, especially because emilia's VA does such a good job with it, the way her voice cracks there just makes it so believable.;False;False;;;;1610561419;;False;{};gj4xdxm;False;t3_kwisv4;False;False;t1_gj4jfdp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4xdxm/;1610627323;9;True;False;anime;t5_2qh22;;0;[]; -[];;;VortechsTG;;;[];;;;text;t2_2hyzevmv;False;False;[];;Well it happened off camera in the anime so if you're an anime only you most likely wouldn't know.;False;False;;;;1610561422;;False;{};gj4xe8r;False;t3_kwisv4;False;False;t1_gj4wpv2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4xe8r/;1610627329;6;True;False;anime;t5_2qh22;;0;[]; -[];;;tekkenjin;;;[];;;;text;t2_ymz1t;False;False;[];;I wonder if that’ll be in the anime or if it was in the light novels.;False;False;;;;1610561434;;False;{};gj4xf5v;False;t3_kwisv4;False;False;t1_gj4t92j;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4xf5v/;1610627344;11;True;False;anime;t5_2qh22;;0;[]; -[];;;bluepsycho65;;;[];;;;text;t2_3exex6qy;False;False;[];;"otto is the 🐐 - - -Everything about this episode is perfect and emilia and subaru Love confession was awesome they finally kiss more progression in the average isekai - -I teared up a little bit this episode";False;False;;;;1610561452;;False;{};gj4xglt;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4xglt/;1610627370;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;Do die repeat;False;False;;;;1610561471;;False;{};gj4xi80;False;t3_kwisv4;False;False;t1_gj4x7zv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4xi80/;1610627397;13;True;False;anime;t5_2qh22;;0;[]; -[];;;unaviable;;;[];;;;text;t2_1o4qd3;False;True;[];;"Still. I could easily watch aot raw every Sunday since it get online hours before the sub comes out and I am up to date with the manga . But I don't watch it even though I could. Why? Because I still want to understand what I watch. Maybe they are changing something from the manga with the approval of isayama like they did in the first episode. Not to mention that I don't feel the goose bumbs from watching it raw since I don't exactly know what exactly is talked about in the specific moment. - -Okay now that aside. Isn't Re zero a more complicated case with the source material since it has like seven different story's each focusing on a deadly sin. Also since its the anime isn't it a bit more made all around to appeal the casual audience more or does it follow the greed route exactly as the LN? idk since I don't read it. - -Sorry but if you are someone that doesn't speak Japanese and still watch it raw without understanding the exact dialogue you are IMO yourself ruining the experience even though you don't have a problem with it. I don't get it to watch it raw sorry folks";False;False;;;;1610561494;;False;{};gj4xk31;False;t3_kwisv4;False;True;t1_gj4wd4u;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4xk31/;1610627430;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ViniCaian;;;[];;;;text;t2_moiwx5o;False;False;[];;">Oh and I love Otto, but seriously : fuck Garfiel, that dude is just a massive brat who cant control his anger and goes into Hulk Mode immediately and doesnt care who or what he kills in his rampage. I hope he gets some sense beaten in to him. - -Garfiel is a really good guy, the only reason everyone there isn't dead yet is because of how good of a person he is. Also, he was waiting outside of the Sanctuary for Emilia and Subaru to end their talk.";False;False;;;;1610561496;;False;{};gj4xk7q;False;t3_kwisv4;False;False;t1_gj4heoy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4xk7q/;1610627432;30;True;False;anime;t5_2qh22;;0;[]; -[];;;EpsilonNu;;;[];;;;text;t2_cb42sfr;False;False;[];;Oh yeah deserved is the right word, I even read the manga and I know for sure it’s going out as one of the greatest of all time (and this, of course, without knowing the ending still). My “doubt” isn’t a serious one: as I said, there’s no way ReZero or anyone else is beating AoT, maybe not even once in this entire season. I just don’t have a use for this Reddit “premium currency”, and given what ReZero is doing for me I’ve pretty much decided I’ll give it to one of its episodes. I was just wondering if I’d rather go all out now or when it “counts” more (and I don’t even know when that will be, since I’m anime only);False;False;;;;1610561499;;False;{};gj4xkj9;False;t3_kwisv4;False;False;t1_gj4tsl0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4xkj9/;1610627437;3;True;False;anime;t5_2qh22;;0;[]; -[];;;prophetofgreed;;;[];;;;text;t2_7ibdz;False;False;[];;[](#shock);False;False;;;;1610561500;;False;{};gj4xkkl;False;t3_kwisv4;False;False;t1_gj4kwp3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4xkkl/;1610627438;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Checkpoint after this moment pleeeeeeease;False;False;;;;1610561518;;False;{};gj4xm14;False;t3_kwisv4;False;False;t1_gj4gco8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4xm14/;1610627463;180;True;False;anime;t5_2qh22;;0;[]; -[];;;imaforgetthis;;;[];;;;text;t2_2d7gcwde;False;False;[];;That was some nail in the coffin shit.;False;False;;;;1610561541;;False;{};gj4xnxx;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4xnxx/;1610627495;3;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;Does Garfield also have a canon simp squad that rides him?;False;False;;;;1610561552;;False;{};gj4xosu;False;t3_kwisv4;False;False;t1_gj4denl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4xosu/;1610627509;11;True;False;anime;t5_2qh22;;0;[]; -[];;;one-eyed-02;;;[];;;;text;t2_783k5oi0;False;False;[];;I just went searched through the web novels, and dear god there is drought of 'EMT' up ahead.;False;False;;;;1610561568;;False;{};gj4xq21;False;t3_kwisv4;False;False;t1_gj4jf6d;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4xq21/;1610627529;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;U LIAR!;False;False;;;;1610561569;;False;{};gj4xq44;False;t3_kwisv4;False;False;t1_gj4nmd8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4xq44/;1610627531;30;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;"This is the ultimate continuation of their argument in S1 episode 13. That time she definitely had the upper hand and his argument was based on him putting her on a pedestal and treating her like a doll. This time he acknowledges that she's a normal girl who is scared and in a bad situation, but he's going to stick by her side because he loves her. Not for being an idealized doll, and despite her being a pain in the ass sometimes he loves her all the same. THIS IS WHAT REAL LOVE LOOKS LIKE. You can be aware of that person's shortcomings, but that doesn't matter because you love them. This time around Subaru is the one in the right because she's failed to see or acknowledge that he's been fighting for her this whole time, and has petty reasons to not believe that he loves her. All she has seen is him getting hurt which she hates, but she couldn't grasp why he was doing it until now. This is a major turning point, and with Puck's bullshit memory blocking out of the way and her heart filled with love from a certain boy, she's ready to move forward. - -Sorry for the wall of text, I've been pants-pissingly ecstatic to see this finally get animated, and I'm super satisfied. What a great episode.";False;False;;;;1610561580;;False;{};gj4xr0p;False;t3_kwisv4;False;False;t1_gj4jfdp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4xr0p/;1610627546;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Khronify;;;[];;;;text;t2_41zknosc;False;False;[];;So we get a masterpiece of an episode from AOT in a declaration of war now we get a masterpiece of an episode from Re:Zero in a declaration of love? I can’t tell which episode I love more (probably this one), the ship has finally sailed!;False;False;;;;1610561587;;False;{};gj4xrl8;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4xrl8/;1610627555;7;True;False;anime;t5_2qh22;;0;[]; -[];;;SpaceMarine_CR;;;[];;;;text;t2_1la1dh3q;False;False;[];;#HE DID IT;False;False;;;;1610561618;;False;{};gj4xu67;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4xu67/;1610627597;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackdiamond2;;;[];;;;text;t2_c8m3y;False;False;[];;*Aw shit, here we go again*;False;False;;;;1610561656;;False;{};gj4xx9f;False;t3_kwisv4;False;False;t1_gj4ig4n;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4xx9f/;1610627650;17;True;False;anime;t5_2qh22;;0;[]; -[];;;SpaceMarine_CR;;;[];;;;text;t2_1la1dh3q;False;False;[];;"""Im gonna swing my arms like this, and if I hit you its going to be your fault""";False;False;;;;1610561667;;False;{};gj4xy8g;False;t3_kwisv4;False;False;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4xy8g/;1610627667;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Zoriba99;;;[];;;;text;t2_4r8l3ebw;False;False;[];;soo Garfiel killed Ram and Otto?;False;False;;;;1610561698;;False;{};gj4y0px;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4y0px/;1610627710;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NearWinner;;;[];;;;text;t2_68jzmig0;False;False;[];;Ohhh yeah, I didn't expect to see a kiss so soon, that was a beautiful moment.;False;False;;;;1610561721;;False;{};gj4y2kq;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4y2kq/;1610627742;3;True;False;anime;t5_2qh22;;0;[]; -[];;;koto_hanabi17;;;[];;;;text;t2_3dqbwbfq;False;False;[];;It's like a soap opera. You know it's trash but you keep tuning in to see what happens next.;False;False;;;;1610561738;;False;{};gj4y3yd;False;t3_kwisv4;False;False;t1_gj4wv2w;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4y3yd/;1610627769;25;True;False;anime;t5_2qh22;;0;[]; -[];;;SpaceMarine_CR;;;[];;;;text;t2_1la1dh3q;False;False;[];;Its that a NBA copypasta?;False;False;;;;1610561759;;False;{};gj4y5p7;False;t3_kwisv4;False;False;t1_gj4jzbq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4y5p7/;1610627825;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Assmeet123;;;[];;;;text;t2_4z85sldu;False;True;[];;Back in season one, when Subaru was about to run off with Rem, he was about to abandon everything and run away but even when he was at his lowest, Rem still pressurised him to be her 'Hero'. The fact that Rem acknowledges that Subaru can be and is a hero to her and puts expectations on him means that Rem still has hope for Subaru. Being a hero is just symbolic of being a better person, not giving up and always knowing that to someone out there, Subaru is a real hero.;False;False;;;;1610561761;;False;{};gj4y5uu;False;t3_kwisv4;False;False;t1_gj4xc91;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4y5uu/;1610627828;9;True;False;anime;t5_2qh22;;0;[]; -[];;;shadebedlam;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Shadebedlam;light;text;t2_fl41u;False;False;[];;So in the next episode, Garf is gonna say he killed Otto and Subaru is gonna be really mad since he really doesn't wanna kill himself but then he realized he gets to kiss Emillia again and that's worth it. Just to be sure I am joking of course.;False;False;;;;1610561793;;False;{};gj4y8iz;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4y8iz/;1610627888;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GenericUsername935;;;[];;;;text;t2_2me1cihr;False;False;[];;What was the yen press line?;False;False;;;;1610561800;;False;{};gj4y91b;False;t3_kwisv4;False;False;t1_gj4h93u;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4y91b/;1610627903;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Acturio;;MAL;[];;http://myanimelist.net/animelist/Acturio01;dark;text;t2_c1azh;False;False;[];;so is Subaru completly over it that now or is he reticent still about it, first time he seen her after being traumatized i think he was pretty shook, or am i misremembering?;False;False;;;;1610561828;;False;{};gj4ybeu;False;t3_kwisv4;False;False;t1_gj4iart;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ybeu/;1610627947;13;True;False;anime;t5_2qh22;;0;[]; -[];;;mrnicegy26;;;[];;;;text;t2_qy9e8;False;False;[];;The funniest part is that I am not even sure which Shinji you are talking about .;False;False;;;;1610561836;;False;{};gj4yc3e;False;t3_kwisv4;False;False;t1_gj4ky6v;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4yc3e/;1610627958;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"Nobody needs to think about going all out if the episode touches your heart they just do it - -If you have doubts then this ain't it";False;False;;;;1610561855;;False;{};gj4ydkh;False;t3_kwisv4;False;False;t1_gj4xkj9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ydkh/;1610627984;5;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;A lot of the dialogue in this show often feels weeby or stylized, but these big climactic arguments and confessions always feel somehow quite real. I like them all lot for that.;False;False;;;;1610561869;;False;{};gj4yeqg;False;t3_kwisv4;False;False;t1_gj4jfdp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4yeqg/;1610628007;10;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;Oh fuck;False;False;;;;1610561886;;False;{};gj4yg31;False;t3_kwisv4;False;False;t1_gj4kyz4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4yg31/;1610628033;23;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;She's still disappointed with Subaru, but Subaru gave Emilia **A Reason to Believe** **^^Episode ^^Title**;False;False;;;;1610561903;;False;{};gj4yhg9;False;t3_kwisv4;False;True;t1_gj4whmp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4yhg9/;1610628059;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kam_E_luck;;;[];;;;text;t2_3i5m4uwq;False;False;[];;It's like saying if your dad loves your mom then he is a simp, yikes.;False;False;;;;1610561911;;False;{};gj4yi3h;False;t3_kwisv4;False;False;t1_gj4r9i5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4yi3h/;1610628071;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jojo_is_trash;;;[];;;;text;t2_595dn1yo;False;False;[];;Yes, he was shook right after he reset from the “Kiss of Death” loop, but I think he’s (mostly) over it by now;False;False;;;;1610561923;;False;{};gj4yj2p;False;t3_kwisv4;False;False;t1_gj4ybeu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4yj2p/;1610628088;23;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;You're too much of an idiot to understand what happened.;False;True;;comment score below threshold;;1610561924;;False;{};gj4yj5f;False;t3_kwisv4;False;True;t1_gj4llmd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4yj5f/;1610628089;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Ohhh episode 18, ok;False;False;;;;1610561939;;False;{};gj4ykax;False;t3_kwisv4;False;True;t1_gj4y5uu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ykax/;1610628109;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BigDaddyZuccc;;;[];;;;text;t2_34mjxh90;False;True;[];;Otto and Laurence Trade and Goods;False;False;;;;1610561943;;False;{};gj4yklx;False;t3_kwisv4;False;False;t1_gj4q1fi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4yklx/;1610628114;27;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;All those fuckers that have been calling him a simp and whiny crybaby for years now can suck it. Subaru is the god damn man.;False;False;;;;1610561959;;False;{};gj4ylyn;False;t3_kwisv4;False;True;t1_gj4f2u9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ylyn/;1610628139;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;I don't think he was even alive at that point.;False;False;;;;1610561972;;False;{};gj4ymyv;False;t3_kwisv4;False;False;t1_gj4iart;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ymyv/;1610628156;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Bearpuff4;;;[];;;;text;t2_4orng3tj;False;False;[];;It was more of a rhetorical why in the sense of “romance anime needs to step up its game because it’s been outbeat by a Psychological thriller” but yes definitely a valid reason because I’m super attached to both of them LOL;False;False;;;;1610561980;;False;{};gj4ynji;False;t3_kwisv4;False;True;t1_gj4t9l1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ynji/;1610628166;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;Me too.;False;False;;;;1610561982;;False;{};gj4ynpm;False;t3_kwisv4;False;False;t1_gj4o06f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ynpm/;1610628169;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;I thought he was asking for info and she just ditched the convo to go with her BF;False;False;;;;1610562003;;1610577084.0;{};gj4ypfa;False;t3_kwisv4;False;False;t1_gj4fb40;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ypfa/;1610628201;152;True;False;anime;t5_2qh22;;0;[]; -[];;;kartikgsniderj;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_xiq8m64;False;False;[];;What a great episode, just makes me wonder how awesome writer Tappei Nagatsuki-Sama is.;False;False;;;;1610562006;;False;{};gj4ypll;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ypll/;1610628205;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Esper17;;;[];;;;text;t2_5katy;False;False;[];;Time travel is used so much and so recklessly in media that it’s hard not to just discount it. “Some time travel bullshit” happening in a show with checkpoints for when the MC dies can likely be explained in universe later, so it seems plausible.;False;False;;;;1610562038;;False;{};gj4ys7n;False;t3_kwisv4;False;False;t1_gj4skd0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ys7n/;1610628252;12;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;So strawman then? This is just precious.;False;False;;;;1610562062;;False;{};gj4yu6d;False;t3_kwisv4;False;True;t1_gj4oww1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4yu6d/;1610628290;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;I'd watch that.;False;False;;;;1610562062;;False;{};gj4yu6z;False;t3_kwisv4;False;False;t1_gj4jti6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4yu6z/;1610628290;15;True;False;anime;t5_2qh22;;0;[]; -[];;;BakemonoNeko;;;[];;;;text;t2_1q0ykmez;False;False;[];;"Our love with Echinda ended - -Now Otto is our queen";False;False;;;;1610562068;;False;{};gj4yura;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4yura/;1610628300;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mana_Croissant;;;[];;;;text;t2_30m68690;False;False;[];;That is LITERALLY Romance at its finest. A Relationship cannot work If you don't accept How much your love interest can suck at things and make your life a literal hell at times;False;False;;;;1610562081;;1610579409.0;{};gj4yvtp;False;t3_kwisv4;False;False;t1_gj4oj2g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4yvtp/;1610628321;283;True;False;anime;t5_2qh22;;0;[]; -[];;;hideyuke;;;[];;;;text;t2_i19uh;False;False;[];;Looks like we will have to wait a while for the opening, like part 1.;False;False;;;;1610562082;;False;{};gj4yvve;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4yvve/;1610628322;2;True;False;anime;t5_2qh22;;0;[]; -[];;;translucentsphere;;;[];;;;text;t2_7cwnbgfl;False;False;[];;"\*Subaru not getting angry at Emilia\* - -Emilia: Why are you not angry at me? Do you not have any expectation of me at all? - -\*Subary getting angry at Emilia\* - -Emilia: You're so unreasonable! You broke our promise!";False;False;;;;1610562102;;False;{};gj4yxkg;False;t3_kwisv4;False;False;t1_gj4t8ab;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4yxkg/;1610628354;267;True;False;anime;t5_2qh22;;0;[]; -[];;;tekkenjin;;;[];;;;text;t2_ymz1t;False;False;[];;Didn’t yenpress translate it as troublesome girl?;False;False;;;;1610562123;;1610570025.0;{};gj4yzdz;False;t3_kwisv4;False;False;t1_gj4h93u;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4yzdz/;1610628387;12;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;Ever notice how Ram's eyes are sharper than Rem's?;False;False;;;;1610562131;;False;{};gj4yzyw;False;t3_kwisv4;False;False;t1_gj4ipdp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4yzyw/;1610628398;13;True;False;anime;t5_2qh22;;0;[]; -[];;;RandomRon005;;;[];;;;text;t2_2mk4myep;False;False;[];;"At this point, we have a new rule of anime. - -""If your an anime girl with short & blue hair, odds are you're not getting the guy, no matter the circumstances."" - -Hinata Hyuga is the exception since she grew her hair.";False;False;;;;1610562132;;False;{};gj4z04i;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4z04i/;1610628400;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BluestarDolphin;;;[];;;;text;t2_okm0w;False;False;[];;Otto part was better than Subaru x Emilia part. Also No matter I put myself in Emilia's shoes, she's damn annoying. She's a teenager, yet acts too much like kid sometimes. It's a characterization, but not one I like.;False;False;;;;1610562140;;False;{};gj4z0so;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4z0so/;1610628411;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;You can say the studio is being...slothful.;False;False;;;;1610562142;;False;{};gj4z0xb;False;t3_kwisv4;False;False;t1_gj4ekqk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4z0xb/;1610628414;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Props to the VA's for making it look like a real couple fight. Felt like I was watching some kind of romantic drama. It was really well done. Both Emilia and Subaru came a long way from how they were like back in S1.;False;False;;;;1610562146;;1610563385.0;{};gj4z1ax;False;t3_kwisv4;False;False;t1_gj4jrh0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4z1ax/;1610628421;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Crowbar76;;;[];;;;text;t2_11xae3;False;False;[];;Emilia: \*proceeds to dodge roll away\*;False;False;;;;1610562148;;False;{};gj4z1ht;False;t3_kwisv4;False;False;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4z1ht/;1610628424;35;True;False;anime;t5_2qh22;;0;[]; -[];;;BlackSCrow;;;[];;;;text;t2_837fn80k;False;False;[];;"I don't understand - -1. Why was Otto punched by the man? What did he mean by ""You were with her at the time""? - -2. What promise did Subaru break to Emilia?";False;False;;;;1610562158;;False;{};gj4z2ba;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4z2ba/;1610628437;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mattman456;;;[];;;;text;t2_4oscr;False;False;[];;Lollll it was so good!!! My favorite episode in a long time!;False;False;;;;1610562159;;False;{};gj4z2em;False;t3_kwisv4;False;False;t1_gj4yxkg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4z2em/;1610628439;34;True;False;anime;t5_2qh22;;0;[]; -[];;;Fleepwn;;;[];;;;text;t2_1vkkfrbq;False;False;[];;Am I the only one who's noticed, and really appreciates, how Emilia's reflection was shown in Subaru's eyes the whole time, while her own eyes were empty until the very end, and then she blinked and saw Subaru's reflection?;False;False;;;;1610562190;;False;{};gj4z4yh;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4z4yh/;1610628483;12;True;False;anime;t5_2qh22;;0;[]; -[];;;jojo_is_trash;;;[];;;;text;t2_595dn1yo;False;False;[];;"Pretty sure it’s still the same. - -Lmao imagine if Subaru gets so close to tackling all the problems of arc 4 but gets killed right before the end and he needs to do that shit again. He’d lose the bet as well, which is even worse";False;False;;;;1610562197;;False;{};gj4z5ju;False;t3_kwisv4;False;False;t1_gj4kah8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4z5ju/;1610628494;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Gas4078;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gas4078;light;text;t2_12wmrf;False;False;[];;"A pretty great episode but, - -This episode had poor presentation during some scenes (like the first scene where Garfiel punches Otto and runs away)";False;False;;;;1610562197;;False;{};gj4z5kj;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4z5kj/;1610628494;9;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;It is a love story at it's core. Tappei himself said when you boil everything down to a teaspoon Re:Zero is about an incompetent hero trying to save a silver-haired heroine.;False;False;;;;1610562219;;False;{};gj4z7ax;False;t3_kwisv4;False;False;t1_gj4j0q8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4z7ax/;1610628533;222;True;False;anime;t5_2qh22;;0;[]; -[];;;Jumpy_Psychology;;;[];;;;text;t2_6g6bluw8;False;False;[];;Who wants an ova for Otto, because best friend deserved one.;False;False;;;;1610562222;;False;{};gj4z7jl;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4z7jl/;1610628537;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"[Not sure if she'll still want to wake up after this](https://i.imgur.com/9BHbVfc.png) - -[](#slowgrin)";False;False;;;;1610562226;;False;{};gj4z7wi;False;t3_kwisv4;False;False;t1_gj4v79t;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4z7wi/;1610628543;35;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkChaplain;;;[];;;;text;t2_3zc84;False;False;[];;Ottosode! Ottosode!;False;False;;;;1610562226;;False;{};gj4z7xx;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4z7xx/;1610628544;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkRainbow24;;;[];;;;text;t2_osw2q;False;False;[];;Well I hope so. I would hate it if the Puck and Emelia moment and the Subaru and Emelia moment would be deletet.;False;False;;;;1610562252;;False;{};gj4za5p;False;t3_kwisv4;False;True;t1_gj4mhq2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4za5p/;1610628583;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;">Amount of people being chad in the episode? 2 - -Actually its 3: CHADbaru, Otto and Ram. Never forget the Eternal Chad and Smug Queen that is Ram.";False;False;;;;1610562267;;False;{};gj4zbca;False;t3_kwisv4;False;False;t1_gj4fwpl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4zbca/;1610628603;26;True;False;anime;t5_2qh22;;0;[]; -[];;;translucentsphere;;;[];;;;text;t2_7cwnbgfl;False;False;[];;I enjoyed their convo depicted on the WN. It's more intense, but the anime version is also good as well.;False;False;;;;1610562269;;False;{};gj4zbhr;False;t3_kwisv4;False;False;t1_gj4z2em;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4zbhr/;1610628606;16;True;False;anime;t5_2qh22;;0;[]; -[];;;RandomRon005;;;[];;;;text;t2_2mk4myep;False;False;[];;"After so many deaths & months of ptsd, Subaru's finally entered the Way of the Chad.";False;False;;;;1610562303;;False;{};gj4zeeh;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4zeeh/;1610628670;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610562308;;False;{};gj4zetf;False;t3_kwisv4;False;True;t1_gj4ruw3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4zetf/;1610628677;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Otto is the youngest son of a family of merchants.;False;False;;;;1610562323;;False;{};gj4zfzs;False;t3_kwisv4;False;True;t1_gj4vos4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4zfzs/;1610628698;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BakemonoNeko;;;[];;;;text;t2_1q0ykmez;False;False;[];;Never thought Ram oraoraing a giant tiger is a thing i needed to see. Guess i was wrong...;False;False;;;;1610562326;;False;{};gj4zgad;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4zgad/;1610628704;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiro_Kai;;;[];;;;text;t2_bevm2wi;False;False;[];;"Dragon waifus are always the best! - -[](#eheheh) - -^Also, ^I ^finally ^understand [^why ^his ^dragon ^was ^doing ^this ^face ^to ^Patrasche](https://i.imgur.com/U7Ccyo2.png) ^at ^season ^one";False;False;;;;1610562331;;False;{};gj4zgpw;False;t3_kwisv4;False;False;t1_gj4i7s7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4zgpw/;1610628710;103;True;False;anime;t5_2qh22;;0;[]; -[];;;Mana_Croissant;;;[];;;;text;t2_30m68690;False;False;[];;That Cat would be a NTR fck.r in a doujin;False;False;;;;1610562334;;False;{};gj4zgy5;False;t3_kwisv4;False;False;t1_gj4lcwu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4zgy5/;1610628715;255;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;He's respectful towards his girl like how a Chad should be.;False;False;;;;1610562358;;False;{};gj4ziwf;False;t3_kwisv4;False;False;t1_gj4t5o9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ziwf/;1610628751;500;True;False;anime;t5_2qh22;;0;[]; -[];;;goobypls7;;;[];;;;text;t2_dtuq9;False;False;[];;Peko peko peko HA⬆️HA⬇️HA⬆️HA⬇️HA;False;False;;;;1610562370;;False;{};gj4zjuf;False;t3_kwisv4;False;False;t1_gj4kyz4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4zjuf/;1610628767;102;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;Emilia is gonna win best girl this summer. Mark my words.;False;False;;;;1610562389;;False;{};gj4zlep;False;t3_kwisv4;False;False;t1_gj4pktf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4zlep/;1610628795;8;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;**Petelguese:** I'll be back ~desu!;False;False;;;;1610562395;;False;{};gj4zlw3;False;t3_kwisv4;False;True;t1_gj4wct5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4zlw3/;1610628805;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Querez;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Querez8504;light;text;t2_7a3kzvl;False;False;[];;This will definitely go down in Re:ZERO history. I never thought this would happen.;False;False;;;;1610562413;;False;{};gj4znb7;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4znb7/;1610628827;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;Always has been;False;False;;;;1610562437;;False;{};gj4zp8v;False;t3_kwisv4;False;False;t1_gj4xciz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4zp8v/;1610628857;9;True;False;anime;t5_2qh22;;0;[]; -[];;;AzzyIzzy;;;[];;;;text;t2_8di9u;False;False;[];;"As always go up vote the real person u/WintryOne who translated this, I only copy paste since it never makes it to this subreddit/thread which I feel is a bit sad given some of the clarity and information that adds context to various episodes at times. The link to the original thread will be at the bottom. - -Source: starting from https://twitter.com/nezumiironyanko/status/1349363062248140804 - -Nagatsuki-sensei's tweets for this week's episode. May contain minor spoilers. - -Rough translation: - -Alright! A week has passed, and it's time for Re: Zero ! Last time, the situation started with Otto and ended with Otto; what will the content be this time!? Otto dies! Nah, let's see the results first! Please enjoy this week, too! - -And with that, this week starts with Otto as well! - -You can say that he forecast that ""I probably won't be killed."", and you could also say he was reading his opponent's opening moves. He was prepared to take a shot to the gut, but on the other hand, that was preparation for taking a valuable stone from his neck. - -Incidentally, about the pit trap, not only did Otto dig at it himself, he likely also asked the bugs to help. It depends on what he offers in return, but he's able to get quite a bit of help. Also, Otto's speciality is earth magic. - -Otto's hometown is a city called Piktat in the south of Lugunica. It's one of the bigger cities in Lugunica, and has a bit of an Arabian flair. A background song with that style was used, too. - -Otto is the middle child of three brothers, and has good parents, so for one who has the ""Blessing of the Soul of Language"", it was a very fortunate environment. Most people who have the ""Blessing of the Soul of Language"" are unable to endure the hell of being trapped in the countless voices that surround them, and die before reaching adulthood. Aside from Otto, only one person in history has managed to develop normally. - -""Hide the power of your blessing."" is sensible advice from big brother Oslo, and the normal way of thinking for those with blessings. It's easy to become ostrasized when you're different from other people. Of course, there's people like Reinhard with no way to hide it... - -The cute white girl that showed up partway through was Otto's first love. Otto, who sees no difference between conversations with people or animals, chose a white cat as his first love. Just as you can see, he only looked and never did anything, so she was carried off by a handsome cat. - -Being unlucky is just business as usual for Otto by now, but his chance encounter with Petelgeuse was probably the worst of it. - -It's been a while since Ricardo has had a chance to appear; this is a hidden event that occurred during the correct route of arc three. After being captured by Petelgeuse, it developed that Otto was saved during the 'Sloth' finger hunting that was part of Subaru's strategy. - -Mimi and Tivey standing behind Otto with ropes is the answer to how he ended up being carried around tied to a pole. Due to Ricardo's lack of communication with his underlings, he ended up being captured again as a suspicious individual. - -Hey hey, having the OP running during his actions makes him look like a main character, doesn't it...... - -In arc three, it did also happen that Otto pushed Subaru off the cart to get away from the White Whale, but at that point in time, he was simply a client, and on top of that, Otto was terribly confused by the White Whale's voice. Now he's indebted to Subaru, and knows him as a friend. Relationships change as the situation changes; that's looping. - -Incidentally, he's using the red magic stones freely, but that's a part of Otto's self-defense strategy in case of emergency. But, I think they're probably pretty expensive. It's difficult to think that he'd be stingy with this sort of investment. - -Ram joins the battle! - -The background music for Ram's appearance really has a boss music style. In truth, with the conditions set up properly, Ram is in the strongest class in the story, so it wouldn't be strange for her to have music like the White Whale did. - -""A man who simply has good timing"" is the simplest form of trust in Subaru, who can't talk about ""Return by Death"". After arc two, nee-sama holds him in that sort of regard; well, she really does know how to look at people. - -As he was until just before now, if Garfiel had been hit by Ram's rush attack, he'd have been knocked out. Having said that, Ram and Garfiel having the sort of training where they'd be punching each other hasn't happened for years. As you'd expect, they haven't done it while they've both progressed to this point. Garfiel was probably holding back, at least a little. - -And even then, that's the sort of nee-sama she is... - -Oh I see, this was Otto's named chapter, was it? Huh, then what are we doing for the second half? (foreshadowing!) - -The true continuation of last round's ending. Inside the tomb, Subaru runs towards Emilia as she sits on the ground, but just as even he says himself, his qualification to enter the tomb has been taken away, and after suffering that leaves his face dirtied, he's finally managed to make it here. - -The same as with Puck disappearing, Subaru once again not keeping a promise is having an effect. Setting aside what Subaru was doing after breaking his promise, disappearing without an excuse or note just won't do. No, it won't do at all. - -From the point of view of Emilia, who hasn't been able to pass a single trial, she's been unable to respond to Subaru, who's always been helping from arc one through three, and she wanted to believe in the word ""love"" that Subaru used, but that was betrayed by a broken promise... The result of that is ""You never expected anything from me, did you?"". - -Up until now, Subaru and Emilia arguing is something that has only occurred once, when Subaru was trying to withdraw, and Emilia was showing consideration for him, at their fight in the castle in season one, episode 13. Maybe the one-sided one in episode 17 would apply, too? This is their first fight since then. - -""Why do I have to go through all these painful things just to help a troublesome woman like you!?"" is Subaru's real feelings, and his heartfelt confession. - -Partway through, even the background music disappears, and it's entirely the two of them laid bare; that's neat, isn't it. - -The flow of things here, where Emilia's inner feelings are overflowing out, contrasts with the part where Subaru shouted out ""I don't want to lose anyone else like I did Rem!""; as the author, that's the image I have of it. - -Moms are awesome! - -This depiction of the one you're speaking with showing up in your eyes, is the sort of thing you can't do in a novel, but you can here since it's an anime. How dare you, that's cheating, how dare you......! - -Look look, it's the second episode title!! (the foreshadowing came true!) - -Well, now that Subaru and Emilia's first clumsy argument is over and they head outside, Garfiel is waiting for them, covered in blood. Otto died! Nah, watch the next episode first! - -Otto's past, and Subaru and Emilia's argument is a collection of important moments in the view of the author, so we asked too much of the episode titles. While wondering ""Is that the sort of thing you do with titles......?"", that's one of the specialities of Re: Zero, using titles as part of the performance! - -And with that, thanks for joining us again this week! After making our way through this fight, how will Subaru and the others deal with Garfiel next week? Look forward to it! And for what happened to Otto! - -Further, as a result of this, Otto's younger brother Regin holds a strong feeling of guilt towards his older brother. As a result of many different efforts to try and become able to speak with animals, he wasn't able to hear them, but in the end, he'll become a veterinarian. - -Now that you mention it, the design for zodda bugs came first in Break Time. ""Big! Gross!"" is the sort of playful conversation I had with Ashina-san several times in the design phase. (lol) - -https://www.reddit.com/r/Re_Zero/comments/kwm84e/translation_authors_twitter_comments_on_season_2/";False;False;;;;1610562442;;False;{};gj4zpp1;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4zpp1/;1610628865;79;True;False;anime;t5_2qh22;;0;[]; -[];;;Nhadala;;;[];;;;text;t2_gnpcu;False;False;[];;"If Garfiel is fine at the end then did he kill Ram and Otto? He looks beat up tho... - -Well, either way, amazing episode!";False;False;;;;1610562447;;False;{};gj4zq3e;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4zq3e/;1610628872;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Zonca;;;[];;;;text;t2_11odu8;False;False;[];;"I get where you are coming from, but here's the thing. Such love wouldn't be as interesting on screen (or in book) as love where there is some friction. - - -Subaru and Emilia's relationship was written from the start in such a way, that they definitely aren't on the same page on a lot of things and issues. Therefore the logical next step are some confrontations, usually talking it out would be fine too, but we are in a story so a bit more dramatic flair and shouting than *necessary* are in order, I think. - - -(sry if I misunderstood your comment and this is out of place, I just wanted to put this out there)";False;False;;;;1610562454;;False;{};gj4zqm6;False;t3_kwisv4;False;False;t1_gj4x7cz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4zqm6/;1610628881;25;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;Man/woman of culture;False;False;;;;1610562474;;False;{};gj4zs82;False;t3_kwisv4;False;True;t1_gj4tmrs;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4zs82/;1610628908;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Don't spoil yourself and enjoy!;False;False;;;;1610562504;;False;{};gj4zut3;False;t3_kwisv4;False;True;t1_gj4we4w;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4zut3/;1610628951;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PigeonMagique;;;[];;;;text;t2_105f2r;False;False;[];;Yeah the kiss is fine alright, BUT IS MY BOY OTTO FINE? WHY IS NO ONE TALKING ABOUT THIS???;False;False;;;;1610562507;;False;{};gj4zuzd;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4zuzd/;1610628954;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The_last_melon_98;;;[];;;;text;t2_5qmmdyhv;False;False;[];;Am very much not understanding why people thought the end of the episode between Subaru and Emelia was so romantic? They fought for 10+ minutes, she was crying almost the entire time, and Subaru had just broke a promise and left her in a time of need with no explanation. To me it felt more like they were going to part ways by the end of it than kiss. Just my opinion, was weird;False;False;;;;1610562510;;False;{};gj4zval;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4zval/;1610628959;28;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"[TFW no love for Fulfew](https://i.imgur.com/6J8qG4m.jpg) - -[](#wipetears)";False;False;;;;1610562515;;False;{};gj4zvna;False;t3_kwisv4;False;False;t1_gj4i7s7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4zvna/;1610628966;21;True;False;anime;t5_2qh22;;0;[]; -[];;;reprogramally;;;[];;;;text;t2_5pj2bpdf;False;True;[];;When this happened? As I recall they just put their noses together it was cute but I don't think they were going to kiss;False;False;;;;1610562521;;False;{};gj4zw5a;False;t3_kwisv4;False;True;t1_gj4v9tz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4zw5a/;1610628973;1;True;False;anime;t5_2qh22;;0;[]; -[];;;the_grandprize;;;[];;;;text;t2_cdjxb;False;False;[];;O fuc;False;False;;;;1610562535;;False;{};gj4zx8w;False;t3_kwisv4;False;False;t1_gj4uq0j;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4zx8w/;1610628993;160;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;True but people early this season still had reservations for Otto because of what happened in S1. I'm just happy that this episode will erase any doubt that might have been left about him and his intentions for Subaru.;False;False;;;;1610562542;;False;{};gj4zxrn;False;t3_kwisv4;False;True;t1_gj4vib5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4zxrn/;1610629003;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IXajll;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ixajii;light;text;t2_ob6j8;False;False;[];;In what way do they have the same voice tho?;False;False;;;;1610562592;;False;{};gj501si;False;t3_kwisv4;False;True;t1_gj4ot8r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj501si/;1610629072;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> Rem is gonna wake up and see Subaru and Emilia - -Rem: Wake me up for the divorce.";False;False;;;;1610562598;;False;{};gj502a6;False;t3_kwisv4;False;True;t1_gj4wtco;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj502a6/;1610629090;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ClawofBeta;;;[];;;;text;t2_9p5i2;False;False;[];;I'll admit it's a strawman in relation to /u/thexelijah's argument, but he also misrepresented OP's take. Subaru is not staying together with Emilia because she suddenly got Amnesia. Subaru is staying together with Emilia when she gets her memories back.;False;False;;;;1610562602;;False;{};gj502m7;False;t3_kwisv4;False;False;t1_gj4yu6d;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj502m7/;1610629096;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Crowbar76;;;[];;;;text;t2_11xae3;False;False;[];;The joke is that the songs that have played already are just insert songs, not the actual OP and ED. I've seen the names of the actual OP and ED and they don't match up to these. Also, both of the songs played once, the old OP and ED also played once. So technically we didn't hear the ones from the first half more times;False;False;;;;1610562609;;1610562895.0;{};gj50382;False;t3_kwisv4;False;True;t1_gj4dvoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj50382/;1610629113;3;True;False;anime;t5_2qh22;;0;[]; -[];;;szeto326;;;[];;;;text;t2_mot3x;False;False;[];;UHHHHHHHH, dare I say this is possibly the best episode of the show ever?!;False;False;;;;1610562614;;False;{};gj503km;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj503km/;1610629121;2;True;False;anime;t5_2qh22;;0;[]; -[];;;stiggy92;;;[];;;;text;t2_qgfi4;False;False;[];;a true lover quarrel right there;False;False;;;;1610562620;;False;{};gj5043v;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5043v/;1610629130;2;True;False;anime;t5_2qh22;;0;[]; -[];;;i_love_rem;;;[];;;;text;t2_yb6o5zf;False;False;[];;Fate/Stay Night Flashbacks;False;False;;;;1610562621;;False;{};gj5045e;False;t3_kwisv4;False;False;t1_gj4gx5f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5045e/;1610629132;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Fur-vus;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Saber is My One and Only Waifu!!!;dark;text;t2_13gltk;False;False;[];;since he can understand them, he can't see them as animals but rather, people that can talk, is what i'm getting from other comments;False;False;;;;1610562622;;1610573631.0;{};gj504ak;False;t3_kwisv4;False;False;t1_gj4rkxr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj504ak/;1610629134;97;True;False;anime;t5_2qh22;;0;[]; -[];;;Serpentine812;;;[];;;;text;t2_4kcit4gk;False;False;[];;As a Emilia fan from the beginning, woo baby, that’s what I’ve been waiting for!!;False;False;;;;1610562651;;False;{};gj506kb;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj506kb/;1610629175;3;True;False;anime;t5_2qh22;;0;[]; -[];;;username500500;;;[];;;;text;t2_5gcp6o36;False;False;[];;I didnt know Picollo kissed Gohan;False;False;;;;1610562670;;False;{};gj5083c;False;t3_kwisv4;False;False;t1_gj4rbdm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5083c/;1610629200;23;True;False;anime;t5_2qh22;;0;[]; -[];;;StudyGuidex;;;[];;;;text;t2_2ohu2zxy;False;False;[];;Did anyone notice the eyes on subaru and emilia?? The whole time emilia was reflecting off subarus eyes while emilia has nothing reflecting until the end with the kiss. The attention to detail is on point. My mans whole world was emilia;False;False;;;;1610562724;;False;{};gj50cgh;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj50cgh/;1610629277;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;They are both great like and their episodes are like ☯ Yin and Yang ☯;False;False;;;;1610562730;;False;{};gj50cze;False;t3_kwisv4;False;True;t1_gj4xrl8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj50cze/;1610629287;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HyperdriveUK;;;[];;;;text;t2_wrzlj;False;False;[];;Shhh, Ram best gurl.;False;False;;;;1610562775;;False;{};gj50gld;False;t3_kwisv4;False;True;t1_gj4kjrh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj50gld/;1610629348;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;Subaru's mom best girl.;False;False;;;;1610562791;;False;{};gj50huy;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj50huy/;1610629368;5;True;False;anime;t5_2qh22;;0;[]; -[];;;GenericMemesxd;;;[];;;;text;t2_15kk68;False;False;[];;"That crazy son of a bitch. Subaru's an absolute chad. - -10/10 episode. Truly amazing";False;False;;;;1610562826;;False;{};gj50kpc;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj50kpc/;1610629419;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ej_stephens;;;[];;;;text;t2_3d6h2d18;False;False;[];;Subaru still has a lot of growing to do. The fact that he said he doesn't even think about her feelings and pretty much feeling entitled to her love because of how much he suffers for her. He's done a lot for her and he also gives her some really good advice on this scene, but Emilia is still an idol to Subaru. He doesn't see her as perfect anymore, but he doesn't really understand her as a person. He has the best intentions and I think Emilia sees that, but he still needs to change before he can really be worthy of being that person for her.;False;False;;;;1610562835;;False;{};gj50ldy;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj50ldy/;1610629431;12;True;False;anime;t5_2qh22;;0;[]; -[];;;BlueDragon101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Xcal1bur?status=7&order=4&orde";light;text;t2_11q4nx;False;False;[];;"*Subaru ""Gigachad"" Natsuki has entered the chat*";False;False;;;;1610562837;;False;{};gj50lld;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj50lld/;1610629434;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Both are voiced by Rie Takahashi.;False;False;;;;1610562854;;False;{};gj50mvm;False;t3_kwisv4;False;False;t1_gj501si;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj50mvm/;1610629458;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Roxima;;;[];;;;text;t2_dz49h;False;False;[];;"Now that we know more about Otto, it made sense how far he’s willing to go for Subaru. He lost friends, or never had any real friends except animals. - -The real game changer was the first time Otto saved Subaru at the dungeon cell(?), where even we we’re questioning Otto’s intentions, but it was because Otto was helping a friend. - -If it wasn’t for him at that moment, Subaru would never have seen Otto as a friend this timeline and things could’ve gone differently.";False;False;;;;1610562855;;False;{};gj50mzz;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj50mzz/;1610629460;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JBard_;;;[];;;;text;t2_13nafyqg;False;False;[];;How funny would it be if they just never played the op;False;False;;;;1610562874;;False;{};gj50ojk;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj50ojk/;1610629488;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SSB_GoGeta;;;[];;;;text;t2_768ece;False;False;[];;"WHYYYY DIDNT YOU DOOOOOOOODGE!?!?!?!?!?!? - -\-The part of Subaru that loves Rem";False;False;;;;1610562880;;False;{};gj50oyg;False;t3_kwisv4;False;False;t1_gj4rbdm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj50oyg/;1610629496;106;True;False;anime;t5_2qh22;;0;[]; -[];;;Silverkira;;;[];;;;text;t2_13ihl1;False;False;[];;Yes, Yes fuck yes, this was so good. subaru keeps moving forward for Emilia.;False;False;;;;1610562889;;False;{};gj50ppj;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj50ppj/;1610629509;4;True;False;anime;t5_2qh22;;0;[]; -[];;;RokmalSerala;;;[];;;;text;t2_oqzk4;False;False;[];;I bursted out laughing at that part and am now confused with the feelings. I want to keep laughing, I want to cry because of the heartfelt moment. And then comes the anxious feeling because of Garfield at the end with no Otto and Ram around.;False;False;;;;1610562892;;False;{};gj50pzs;False;t3_kwisv4;False;False;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj50pzs/;1610629514;15;True;False;anime;t5_2qh22;;0;[]; -[];;;EffectLive97;;;[];;;;text;t2_748d914w;False;False;[];;I’m sure there was a lot of cut content, but as an anime only If these first 2 episodes are examples of what the season is in store for, I’m hyped af right now.;False;False;;;;1610562893;;False;{};gj50q2m;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj50q2m/;1610629516;1;True;False;anime;t5_2qh22;;0;[]; -[];;;notwoodenshoes;;;[];;;;text;t2_4pptblgz;False;False;[];;How can anyone even attempt to compete with Otto for bestest boy? He has it all;False;False;;;;1610562910;;False;{};gj50rgr;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj50rgr/;1610629541;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Roxima;;;[];;;;text;t2_dz49h;False;False;[];;“Emilia...why didn’t...you...DODGE!”;False;False;;;;1610562912;;False;{};gj50rkf;False;t3_kwisv4;False;False;t1_gj4p09p;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj50rkf/;1610629543;26;True;False;anime;t5_2qh22;;0;[]; -[];;;ej_stephens;;;[];;;;text;t2_3d6h2d18;False;False;[];;He's still treating her like that to an extent though. He's gotten better for sure, but he still expects her love just because he's giving his all for what he thinks of best for her;False;False;;;;1610562927;;False;{};gj50sun;False;t3_kwisv4;False;True;t1_gj4uz9g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj50sun/;1610629564;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"[](#maxshock) - -I AM SCREAMING - -THIS IS EVERYTHING I'VE EVER WANTED - -[](#uwaa) - -[](#comfortfood) - -AND THEN THERE'S OTTO BEING THE BESTEST OF BEST BOIS - -[](#yuitears)";False;False;;;;1610562948;;False;{};gj50ulv;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj50ulv/;1610629598;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HyperdriveUK;;;[];;;;text;t2_wrzlj;False;False;[];;"I had to scroll down a lot just to find a downvoted comment LOL! Agreed 100%. I break promises because I love you. Here's a list of shallow physical reasons why I love you (aka I think you're hot). Lets kiss..... eye roll. - -One of the LEAST romantic scenes I've seen in an anime lol. It was so awkward. This is coming from someone who has loved the show up to this point.";False;False;;;;1610562968;;False;{};gj50w90;False;t3_kwisv4;False;False;t1_gj4rgzh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj50w90/;1610629626;43;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"The point was to make a wake up call to Emilia that she has someone on her side not matter what, not to say ""they are a couple now"".";False;False;;;;1610562976;;False;{};gj50wwy;False;t3_kwisv4;False;False;t1_gj4zval;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj50wwy/;1610629637;30;True;False;anime;t5_2qh22;;0;[]; -[];;;sipwarriper;;MAL;[];;http://myanimelist.net/animelist/sipwarriper;dark;text;t2_wcm8s;False;False;[];;NO, DELETE THIS;False;False;;;;1610562979;;False;{};gj50x6d;False;t3_kwisv4;False;False;t1_gj4kwp3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj50x6d/;1610629642;12;True;False;anime;t5_2qh22;;0;[]; -[];;;SSB_GoGeta;;;[];;;;text;t2_768ece;False;False;[];;I mean there is probably and sadly a hentai of that somewhere in the vast sewage facility that is the Internet...;False;False;;;;1610562985;;False;{};gj50xnh;False;t3_kwisv4;False;False;t1_gj5083c;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj50xnh/;1610629651;30;True;False;anime;t5_2qh22;;0;[]; -[];;;HyperdriveUK;;;[];;;;text;t2_wrzlj;False;False;[];;This comment makes no sense.;False;False;;;;1610563004;;False;{};gj50zai;False;t3_kwisv4;False;False;t1_gj4vmqe;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj50zai/;1610629680;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Pickled_Kagura;;;[];;;;text;t2_w2rdj;False;False;[];;I hate Wednesdays;False;False;;;;1610563014;;False;{};gj5102m;False;t3_kwisv4;False;False;t1_gj4oc24;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5102m/;1610629696;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Birdway98;;;[];;;;text;t2_6aprmyl1;False;False;[];;I'm just happy to see our lord and savior Dogman and Geuse this episode!;False;False;;;;1610563051;;False;{};gj51348;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj51348/;1610629752;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ofthevalleyofthewind;;;[];;;;text;t2_3nfbsnbw;False;False;[];;It means penis, if memory serves;False;False;;;;1610563079;;False;{};gj515f0;False;t3_kwisv4;False;False;t1_gj4s3jk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj515f0/;1610629797;29;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Come on, Garfiel clearly spilled 🩸strawberry jam🩸 all over himself.;False;False;;;;1610563090;;False;{};gj516cj;False;t3_kwisv4;False;True;t1_gj4y0px;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj516cj/;1610629813;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DrNecrow21;;;[];;;;text;t2_4l0sd34d;False;False;[];;"We finally got it it boys; ""I love Emilia"" turned into ""I love you, Emilia"" and it was beautiful! - -(Also, Otto is best boy, I've been saying it for years!)";False;False;;;;1610563098;;False;{};gj5170j;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5170j/;1610629826;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ChornoyeSontse;;;[];;;;text;t2_8vjfuk9d;False;False;[];;"Seems like some decent adv- - ->Simp4Satella - -yabai";False;False;;;;1610563101;;False;{};gj517ap;False;t3_kwisv4;False;False;t1_gj4weh4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj517ap/;1610629831;80;True;False;anime;t5_2qh22;;0;[]; -[];;;Silverkira;;;[];;;;text;t2_13ihl1;False;False;[];;wow, subaru also used his mother words too on emilia, Moms are best, lol;False;False;;;;1610563122;;False;{};gj518we;False;t3_kwisv4;False;False;t1_gj4qi5c;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj518we/;1610629859;29;True;False;anime;t5_2qh22;;0;[]; -[];;;ej_stephens;;;[];;;;text;t2_3d6h2d18;False;False;[];;He's more in the right than the first fight, but still not all the way. He said out loud he doesn't think of her feelings at all and acts as if he's earned her love by doing what he thinks is best for her.;False;False;;;;1610563143;;False;{};gj51akv;False;t3_kwisv4;False;False;t1_gj4jfdp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj51akv/;1610629889;5;True;False;anime;t5_2qh22;;0;[]; -[];;;IndecisiveDude;;;[];;;;text;t2_143lab;False;False;[];;"Garfiel: - -Ram: Bad kitty. - -Garfiel: - -Otto: Look! Shiny stone! - -Ram: Bad kitty.";False;False;;;;1610563162;;False;{};gj51c37;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj51c37/;1610629914;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AincradResident;;;[];;;;text;t2_56j9w0a3;False;False;[];;I thought Tonikaku Kawaii was ended.;False;False;;;;1610563164;;False;{};gj51c79;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj51c79/;1610629917;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;Oh that was a novel only thing?;False;False;;;;1610563172;;False;{};gj51cuk;False;t3_kwisv4;False;True;t1_gj4xe8r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj51cuk/;1610629928;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;[Otto came to the wrong neighbourhood](https://i.imgur.com/SS52o0J.png);False;False;;;;1610563173;;False;{};gj51cyi;False;t3_kwisv4;False;False;t1_gj4jihl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj51cyi/;1610629931;32;True;False;anime;t5_2qh22;;0;[]; -[];;;f3exthegamer;;;[];;;;text;t2_12jsgm;False;False;[];;You heard him;False;False;;;;1610563174;;False;{};gj51d14;False;t3_kwisv4;False;False;t1_gj4s3jk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj51d14/;1610629932;100;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610563221;;False;{};gj51gsz;False;t3_kwisv4;False;True;t1_gj4h364;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj51gsz/;1610629997;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChornoyeSontse;;;[];;;;text;t2_8vjfuk9d;False;False;[];;IMO there's zero chance the timeline resets now lol. You know how many big moments there've been? It would be cruel beyond any other reset so far to the point of cheapness.;False;False;;;;1610563248;;False;{};gj51j2e;False;t3_kwisv4;False;False;t1_gj4gco8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj51j2e/;1610630040;183;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuSan1234;;;[];;;;text;t2_vah0t3a;False;False;[];;Fuck yeah my brotha!!!!;False;False;;;;1610563256;;False;{};gj51jp5;False;t3_kwisv4;False;True;t1_gj4djlk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj51jp5/;1610630051;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;All the roll-play he does with KonoSuba's author really pays off.;False;False;;;;1610563261;;False;{};gj51k6j;False;t3_kwisv4;False;True;t1_gj4ypll;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj51k6j/;1610630060;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sipwarriper;;MAL;[];;http://myanimelist.net/animelist/sipwarriper;dark;text;t2_wcm8s;False;False;[];;~~Watch Garfield kill Subaru now~~;False;False;;;;1610563263;;False;{};gj51kc3;False;t3_kwisv4;False;True;t1_gj4f2u9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj51kc3/;1610630063;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610563277;;False;{};gj51lk8;False;t3_kwisv4;False;False;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj51lk8/;1610630083;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ChornoyeSontse;;;[];;;;text;t2_8vjfuk9d;False;False;[];;I watched raw because the subbed version wasn't up yet, I wanted to watch it with my morning coffee, and I'm trying to improve my Japanese.;False;False;;;;1610563346;;False;{};gj51rcu;False;t3_kwisv4;False;True;t1_gj4i7op;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj51rcu/;1610630184;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"He doesn't ""expect"" her love. Rather, since then, he has changed and moved from ""I want her to love me"" to ""I love her"". He has been acting on his love and now expressed it, and obviously he hoped that she would love him back, but he stopped acting as if he was entitled to said love.";False;False;;;;1610563367;;False;{};gj51t3r;False;t3_kwisv4;False;False;t1_gj50sun;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj51t3r/;1610630214;51;True;False;anime;t5_2qh22;;0;[]; -[];;;DrNecrow21;;;[];;;;text;t2_4l0sd34d;False;False;[];;I guess some people just don't know what love is.... SMH;False;False;;;;1610563384;;False;{};gj51udy;False;t3_kwisv4;False;True;t1_gj4llmd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj51udy/;1610630238;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;VortechsTG;;;[];;;;text;t2_2hyzevmv;False;False;[];;I sometimes forget that there are anime onlies who haven't been told about the cut content. But yes.;False;False;;;;1610563388;;1610564271.0;{};gj51upm;False;t3_kwisv4;False;True;t1_gj51cuk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj51upm/;1610630243;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DrNecrow21;;;[];;;;text;t2_4l0sd34d;False;False;[];;Your quality is getting worse! BAKA;False;False;;;;1610563412;;False;{};gj51wp7;False;t3_kwisv4;False;True;t1_gj4jloq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj51wp7/;1610630277;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xcelentei;;;[];;;;text;t2_ckd9d;False;False;[];;"I remember thinking this conversation was messy as hell in the novel, but my god these rednecks look toxic in the anime lmao. Not that that's bad, I think it's believable and good that the characters are talking past each other a bit before getting to a greater understanding of each other. Subaru was a bit too aggressive with his support and affections imo but I appreciate that as one of his flaws. - -Subaru tried to get consent first but he kind of fucked it up, which is realistic here but damn. [Re:zero next few episodes](/s ""Emilia really just let him impregnate her huh. I know the power dynamics are weird since she can canonically punch his nuts off but damn girl."")";False;False;;;;1610563443;;False;{};gj51z59;False;t3_kwisv4;False;False;t1_gj4cva1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj51z59/;1610630319;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Hiyasc;;;[];;;;text;t2_61tx0;False;False;[];;">It would be cruel beyond any other reset so far to the point of cheapness - -That's why I'm terrified, that's kind of Re:zero's thing. It lulls you into a false sense of security and then pulls the rug out from under you.";False;False;;;;1610563448;;False;{};gj51zk8;False;t3_kwisv4;False;False;t1_gj51j2e;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj51zk8/;1610630326;221;True;False;anime;t5_2qh22;;0;[]; -[];;;makinoatorie;;;[];;;;text;t2_3t724jkr;False;False;[];;"it wasn't cut in the LN iirc, I'm guessing the next chapter will explain why Garf is covered in blood. Still hopeful to see it. - -Edit: It seems I may be right, check the [author comments](https://www.reddit.com/r/Re_Zero/comments/kwm84e/translation_authors_twitter_comments_on_season_2/)";False;False;;;;1610563461;;1610564597.0;{};gj520lq;False;t3_kwisv4;False;False;t1_gj4vpkd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj520lq/;1610630346;5;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;">Why was Otto punched by the man? What did he mean by ""You were with her at the time""? - -He mistook Otto for one of the another 7 guys. - ->What promise did Subaru break to Emilia? - -Last episode, Subaru promised he would stay with Emilia all night, but he left and it's not the first time Subaru promises things and them doesn't follow them, remember S1 episode 13?";False;False;;;;1610563512;;False;{};gj524uu;False;t3_kwisv4;False;True;t1_gj4z2ba;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj524uu/;1610630419;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"Funniest shit I've ever seen - -[](#laughter)";False;False;;;;1610563524;;False;{};gj525un;False;t3_kwisv4;False;False;t1_gj4og7h;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj525un/;1610630438;7;True;False;anime;t5_2qh22;;0;[]; -[];;;mrauls;;;[];;;;text;t2_soa1n;False;False;[];;It's crazy how good a show is when you have the right animators;False;False;;;;1610563525;;False;{};gj525y3;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj525y3/;1610630440;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Snoo-70063;;;[];;;;text;t2_4smcvcva;False;False;[];;"After aot is over the next big thing is re zero -Just wait for the other arcs getting animated. -Really happy to see it getting the amount of love it should and people proudly saying that only completion to Aot now is re zero. - -I hope re zero to be 1st isekai to cross 9 on mal";False;False;;;;1610563551;;False;{};gj5280h;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5280h/;1610630477;3;True;False;anime;t5_2qh22;;0;[]; -[];;;princetacotuesday;;;[];;;;text;t2_8k2fb346;False;False;[];;"Yea they really nailed how it actually is instead of some fantasy crap where one just gives up and takes a side immediatally. - -IRL people always wanna be right and will fight tooth and nail, and as any man knows, when a woman is upset it's damn hard to try and please them sometimes with your words, were the majority of us just shut up and and pray we don't say anything stupid, ha!";False;False;;;;1610563609;;False;{};gj52cui;False;t3_kwisv4;False;False;t1_gj4t8ab;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj52cui/;1610630573;19;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;They tend to address animation issues in the BD release, they already fix many from the first cour.;False;False;;;;1610563660;;False;{};gj52h1g;False;t3_kwisv4;False;False;t1_gj4z5kj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj52h1g/;1610630650;6;True;False;anime;t5_2qh22;;0;[]; -[];;;TheSkipRow;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheSkipRow;light;text;t2_sitr3;False;False;[];;r/imsorryjon;False;False;;;;1610563672;;False;{};gj52i2h;False;t3_kwisv4;False;False;t1_gj4oc24;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj52i2h/;1610630669;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Green_pine;;;[];;;;text;t2_20f1wefn;False;False;[];;You were just a kid. You couldn't have done anything.;False;False;;;;1610563691;;False;{};gj52jmb;False;t3_kwisv4;False;False;t1_gj4vavk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj52jmb/;1610630697;40;True;False;anime;t5_2qh22;;0;[]; -[];;;Magnus-Artifex;;;[];;;;text;t2_3xwuipbe;False;False;[];;No way this is going to end well. This is the biggest death flag since the second before it happened and all of Re:Zero is a death flag.;False;False;;;;1610563702;;False;{};gj52kgt;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj52kgt/;1610630713;2;True;False;anime;t5_2qh22;;0;[]; -[];;;princetacotuesday;;;[];;;;text;t2_8k2fb346;False;False;[];;Lol the first words that came out of my mouth when I saw this. XD;False;False;;;;1610563705;;False;{};gj52kpv;False;t3_kwisv4;False;False;t1_gj4qyvu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj52kpv/;1610630717;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Mitesh98;;;[];;;;text;t2_1c4wemfu;False;False;[];;"My man Otto is risking his life out there for Subaru and Emilia to get busy. - -Give that man some awards.";False;False;;;;1610563725;;False;{};gj52mcu;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj52mcu/;1610630747;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BlackSCrow;;;[];;;;text;t2_837fn80k;False;False;[];;">Subaru promised he would stay with Emilia all night, but he left - -Wait, you're talking about what happened in the bedroom right? Wasn't Emilia the one who left Subaru there? - ->S1 episode 13 - -Was it the audience with the other King candidates?";False;False;;;;1610563727;;False;{};gj52mhw;False;t3_kwisv4;False;True;t1_gj524uu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj52mhw/;1610630749;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HotestGrillNA;;;[];;;;text;t2_q39nh;False;False;[];;Honestly the biggest W in subaru's career so far. W's in the chat;False;False;;;;1610563790;;1610563975.0;{};gj52rnz;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj52rnz/;1610630845;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"I'm so proud of him - -[](#not-raining) - -I'm not crying, you're crying";False;False;;;;1610563801;;False;{};gj52skz;False;t3_kwisv4;False;False;t1_gj4dtps;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj52skz/;1610630863;5;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Maybe your personal relationships are different, but *to me* it felt really real.;False;False;;;;1610563816;;False;{};gj52u36;False;t3_kwisv4;False;False;t1_gj4zval;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj52u36/;1610630893;20;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Maybe your personal relationships are different, but *to me* it felt really real.;False;False;;;;1610563816;;False;{};gj52u4j;False;t3_kwisv4;False;True;t1_gj4zval;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj52u4j/;1610630895;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Orange5151;;;[];;;;text;t2_grs4v;False;False;[];;Chad best boy Otto finally gets a backstory and it's a damn good one. Let's FUCKING GOOOOOO!!!!!!!;False;False;;;;1610563836;;False;{};gj52vr0;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj52vr0/;1610630927;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OrudoCato;;;[];;;;text;t2_12zxts;False;False;[];;C L O A C A;False;False;;;;1610563841;;False;{};gj52w63;False;t3_kwisv4;False;False;t1_gj4lgb8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj52w63/;1610630935;167;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;Finding out what content was cut is a sure fire way to get hit with spoilers.;False;False;;;;1610563849;;False;{};gj52wv4;False;t3_kwisv4;False;True;t1_gj51upm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj52wv4/;1610630947;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610563863;;False;{};gj52y3l;False;t3_kwisv4;False;True;t1_gj4t9df;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj52y3l/;1610630970;36;True;False;anime;t5_2qh22;;0;[]; -[];;;VortechsTG;;;[];;;;text;t2_2hyzevmv;False;False;[];;Make with [this](http://imgur.com/a/jTeDjwo) what you will.;False;False;;;;1610563871;;False;{};gj52yox;False;t3_kwisv4;False;False;t1_gj4zw5a;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj52yox/;1610630980;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Green_pine;;;[];;;;text;t2_20f1wefn;False;False;[];;Maybe he will die next episode and have to refrain himself from kissing in order to succeed. That would be true Suffaru energy;False;False;;;;1610563922;;False;{};gj532pu;False;t3_kwisv4;False;True;t1_gj4j0q8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj532pu/;1610631061;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndecisiveDude;;;[];;;;text;t2_143lab;False;False;[];;This episode made me laugh so so many times. I mean it was super dramatic but like still. Subaru is just saying “I LOVE YOU” and Emilia is saying “But you left??” and then Subaru is saying “I LOVE YOU” hahaha;False;False;;;;1610563945;;False;{};gj534j1;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj534j1/;1610631095;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Green_pine;;;[];;;;text;t2_20f1wefn;False;False;[];;Maybe he will die next episode and have to refrain himself from kissing in order to succeed. That would be true Suffaru energy;False;False;;;;1610563952;;False;{};gj5353i;False;t3_kwisv4;False;True;t1_gj4j0q8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5353i/;1610631107;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mihrasen;;;[];;;;text;t2_nj6vw;False;False;[];;Not been revealed yet. But if you think about it, he only has 3 days to fix this loop so he couldn't really afford to just sit there and wait the whole night.;False;False;;;;1610563954;;False;{};gj5357q;False;t3_kwisv4;False;False;t1_gj4t9df;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5357q/;1610631110;26;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Do you know everything before entering a relationship with another person? It's a jump of faith for the most part, that's why most people break up.;False;False;;;;1610563978;;False;{};gj5372x;False;t3_kwisv4;False;False;t1_gj50ldy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5372x/;1610631148;4;True;False;anime;t5_2qh22;;0;[]; -[];;;VortechsTG;;;[];;;;text;t2_2hyzevmv;False;False;[];;I can literally only think of one cut where that could be considered to be the case. Also I never said I had anything against you for not hearing about the cut content. It's just that most anime onlies have.;False;False;;;;1610563980;;False;{};gj53776;False;t3_kwisv4;False;True;t1_gj52wv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53776/;1610631150;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Marston_vc;;;[];;;;text;t2_zergo;False;False;[];;"I think Emelia will become obsessed with Subaru and will eventually evolve into Satella out of jealousy. - -Or maybe satella is what I described but from a different world line and Subaru is there to try and prevent it. - -I agree that there’s gotta be some time traveling going on though.";False;False;;;;1610563991;;False;{};gj5382s;False;t3_kwisv4;False;False;t1_gj4ot8r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5382s/;1610631168;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dodood4;;;[];;;;text;t2_1ul0nkkb;False;False;[];;Can’t wait till Subaru dies and has all of this progress reversed lol;False;False;;;;1610564001;;False;{};gj538sy;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj538sy/;1610631183;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AconexOfficial;;;[];;;;text;t2_ybela;False;False;[];;It was at this moment I was nearby;False;False;;;;1610564010;;False;{};gj539ja;False;t3_kwisv4;False;True;t1_gj4ynpm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj539ja/;1610631196;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Officialvedantbansod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_51ayijoa;False;False;[];;This is one of my most favourite re:zero episode....so good.... I don't need anything in life now....I'm statisfied...;False;False;;;;1610564015;;False;{};gj539x8;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj539x8/;1610631204;1;True;False;anime;t5_2qh22;;0;[]; -[];;;prophetofgreed;;;[];;;;text;t2_7ibdz;False;False;[];;He had one before, just not the way he may have wanted.;False;False;;;;1610564020;;False;{};gj53acj;False;t3_kwisv4;False;True;t1_gj4focm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53acj/;1610631211;2;True;False;anime;t5_2qh22;;0;[]; -[];;;reprogramally;;;[];;;;text;t2_5pj2bpdf;False;True;[];;"Ohh I was talking about the anime - - -They cut a lot in that arc";False;False;;;;1610564027;;False;{};gj53avt;False;t3_kwisv4;False;True;t1_gj52yox;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53avt/;1610631220;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610564031;moderator;False;{};gj53baa;False;t3_kwisv4;False;True;t1_gj4iupa;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53baa/;1610631228;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cooljizz;;;[];;;;text;t2_ipjf2;False;False;[];;felt like that was a much needed argument between emilia and subaru. excited for the rest of this loop;False;False;;;;1610564059;;False;{};gj53dlb;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53dlb/;1610631281;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VortechsTG;;;[];;;;text;t2_2hyzevmv;False;False;[];;That wasn't a cut they just didn't really make it super clear that he was about to kiss her.;False;False;;;;1610564076;;False;{};gj53exe;False;t3_kwisv4;False;True;t1_gj53avt;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53exe/;1610631309;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Suitable_Ad_8540;;;[];;;;text;t2_6x3cpn2f;False;False;[];;"The production and drawing are terrible because the character's face is just up. -I'm not impressed like the 1st season REM. -whitefox is clearly focused on mushoku tensei. - whitefox subcontracted various processes to South Korea.";False;True;;comment score below threshold;;1610564081;;False;{};gj53fcn;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53fcn/;1610631319;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;princetacotuesday;;;[];;;;text;t2_8k2fb346;False;False;[];;"I don't get it. So she can get pregnant from a kiss? - -FYI I don't know how elfs work.";False;False;;;;1610564081;;False;{};gj53fd2;False;t3_kwisv4;False;False;t1_gj4t92j;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53fd2/;1610631319;16;True;False;anime;t5_2qh22;;0;[]; -[];;;plinywaves;;;[];;;;text;t2_xeius;False;False;[];;I didn't watch it so thats probably why I was a tad confused;False;False;;;;1610564111;;False;{};gj53hs6;False;t3_kwisv4;False;True;t1_gj4velh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53hs6/;1610631373;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Djinni_Flint;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DjinniFlint;light;text;t2_1s8gtosf;False;False;[];;Well... technically it's the second time Subaru has kissed Emilia, just the first time she's in her right mind lol;False;False;;;;1610564145;;False;{};gj53kqy;False;t3_kwisv4;False;False;t1_gj4j0q8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53kqy/;1610631439;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Nordrive;;;[];;;;text;t2_8zslola1;False;False;[];;Yeah, it was messy as hell. But it made it even more believeable because of it. Subaru and Emilia are both messed up and they really just vented and let all their feelings go in that moment.;False;False;;;;1610564151;;False;{};gj53l64;False;t3_kwisv4;False;False;t1_gj4v6df;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53l64/;1610631447;15;True;False;anime;t5_2qh22;;0;[]; -[];;;IndecisiveDude;;;[];;;;text;t2_143lab;False;False;[];;Otto is best boy for clearing the way of Subaru’s confession.;False;False;;;;1610564184;;False;{};gj53nz7;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53nz7/;1610631513;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ej_stephens;;;[];;;;text;t2_3d6h2d18;False;False;[];;"He's acting on his love which is admirable, but he's doing it without regard to how she feels, then he throws out a line like, ""I'm suffering for you here, at least try to look as cute as I hoped you would."" he honestly does treat her like a doll. He takes really good care of her, but when she tells him to think about how she feels he acts as if that's none of his concern. He may not ask her for anything in return, but he refuses to give her what she does ask of him.";False;False;;;;1610564193;;False;{};gj53orf;False;t3_kwisv4;False;False;t1_gj51t3r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53orf/;1610631529;11;True;False;anime;t5_2qh22;;0;[]; -[];;;SnowDan07;;;[];;;;text;t2_f3uog;False;False;[];;It's not in the light novels. :( One of my favorite Emilia moments too.;False;False;;;;1610564214;;False;{};gj53qgc;False;t3_kwisv4;False;False;t1_gj4xf5v;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53qgc/;1610631577;10;True;False;anime;t5_2qh22;;0;[]; -[];;;IndecisiveDude;;;[];;;;text;t2_143lab;False;False;[];;I most definitely did enjoy :);False;False;;;;1610564220;;False;{};gj53r02;False;t3_kwisv4;False;True;t1_gj4zut3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53r02/;1610631596;3;True;False;anime;t5_2qh22;;0;[]; -[];;;princetacotuesday;;;[];;;;text;t2_8k2fb346;False;False;[];;"Gonna be honest but I love it tremendously! - -I honestly despise most anime openings as I see them as nothing more than a waste of precious show time; some of them being like 3 minutes long! - -All that time wasted on a stupid song and dance could give me way more story, and here with RE:zero I can totally appreciate that to the max!";False;False;;;;1610564224;;False;{};gj53r9b;False;t3_kwisv4;False;False;t1_gj4gufd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53r9b/;1610631605;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Spectral2020;;;[];;;;text;t2_84n70o3g;False;False;[];;I think Fred counts as a wolf.;False;False;;;;1610564234;;False;{};gj53s3n;False;t3_kwisv4;False;False;t1_gj4q1fi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53s3n/;1610631619;9;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;">Wait, you're talking about what happened in the bedroom right? Wasn't Emilia the one who left Subaru there? - -No, Emilia wakes up from a nightmare about her past and Subaru's nowhere to be found. - ->Was it the audience with the other King candidates? - -Yes, the infamous episode 13.";False;False;;;;1610564240;;False;{};gj53sl2;False;t3_kwisv4;False;True;t1_gj52mhw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53sl2/;1610631628;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LookingGlassInsect;;;[];;;;text;t2_95i54764;False;False;[];;"Otto proving he's best supporting character, Ram being epic as usual, Subaru being a chad, and Emilia getting her very own From Zero-style kick in the proverbial butt. Hopefully that gets her to stop unilaterally depending on Subaru and Puck to support her when the mental strain accumulated from her many years of being treated as a tumour by the world gets her down, and gives her the strength to stand on her own feet. - -Get your snacks and sodas and strap it in folks. This train has no brakes, and the next stop is at the season's finale. It's all hype from here on out!";False;False;;;;1610564256;;False;{};gj53two;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53two/;1610631652;1;True;False;anime;t5_2qh22;;0;[]; -[];;;waleyard;;;[];;;;text;t2_3wss7inn;False;False;[];;When Subaru was talking, we saw Emilia in his [eyes](https://i.imgur.com/HOTR4BV.jpg) all the time but we didn't see Subaru in Emilia's [eye](https://i.imgur.com/SVLW1A1.jpg). But in the final scene we saw. In my opinion that means emila found that '[feeling](https://i.imgur.com/oQUTvaQ.jpg)' to keep forward.;False;False;;;;1610564262;;False;{};gj53uf2;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53uf2/;1610631661;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bakowh;;;[];;;;text;t2_xmmg9;False;False;[];;Bro whoever your friend is, thank him for me because your explanation elevated the second half of this episode and perfectly complemented it. Thank you for the great read;False;False;;;;1610564269;;False;{};gj53uzx;False;t3_kwisv4;False;False;t1_gj4k2i9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53uzx/;1610631673;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Iwant2learnthings;;;[];;;;text;t2_88f375j6;False;False;[];;">I love you"" a dozen times isn't exactly the elegant language that would amplify this message - - -For real, I loved (ba dum tss) the scene to no end but 10 or 13 *suki* less would've been okay. I feel like the writer could've also replaced a couple of them with a fitting ""I'm cheering for you"" (*Ouen shiteiru yo*) or ""I'll be by your side"". - - -And that's leaving aside the real L bomb (*Aishiteiru*) which I'm hoping they're saving for some future scene.";False;False;;;;1610564284;;1610565228.0;{};gj53w8m;False;t3_kwisv4;False;False;t1_gj4evu8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53w8m/;1610631696;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610564298;;False;{};gj53xd4;False;t3_kwisv4;False;True;t1_gj52w63;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53xd4/;1610631716;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610564299;;False;{};gj53xgx;False;t3_kwisv4;False;True;t1_gj4ir2r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53xgx/;1610631718;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Granito_Rey;;;[];;;;text;t2_ag4o8;False;False;[];;Was waiting the entire conversation for it, and the last moment where Emilia actually starts seeing Subaru is just, mmm *chef's kiss*.;False;False;;;;1610564300;;False;{};gj53xk8;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53xk8/;1610631719;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheSkipRow;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheSkipRow;light;text;t2_sitr3;False;False;[];;If we beat AoT then we can officially say that r/anime makes love, not war.;False;False;;;;1610564305;;False;{};gj53xwx;False;t3_kwisv4;False;True;t1_gj4o1gm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53xwx/;1610631725;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_bbc;;;[];;;;text;t2_iiu6x;False;False;[];;"Rem fam here. Can't confirm. - -I thinks he deserves way better than Subaru, so he can keep chasing Emilia all he wants, lol";False;False;;;;1610564305;;False;{};gj53xyv;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj53xyv/;1610631726;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;zaretball;;;[];;;;text;t2_eb3su;False;False;[];;I doubt it, since I think Subaru is going to make things work this time. Gar must have left them both unconscious in the forest.;False;False;;;;1610564335;;False;{};gj540dk;False;t3_kwisv4;False;True;t1_gj4y0px;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj540dk/;1610631771;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610564339;;False;{};gj540n4;False;t3_kwisv4;False;True;t1_gj4kp5z;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj540n4/;1610631776;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610564339;;False;{};gj540pk;False;t3_kwisv4;False;True;t1_gj50lld;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj540pk/;1610631777;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"> Best we can hope for at this point is polygamy. - -I can't see how Rem fans would see this as win. It's pretty clear that Subaru wouldn't be okay with sharing Rem if he had chosen her, so imagining that she on the other hand would be okay with sharing him would just reinforce the idea that her sense of self-worth is lacking. - -To be clear, I can imagine that Rem would be okay with that, because her sense of self-worth is indeed lacking. I just can't see why her *fans* would like this.";False;False;;;;1610564343;;False;{};gj540yv;False;t3_kwisv4;False;True;t1_gj4s8uh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj540yv/;1610631781;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_bbc;;;[];;;;text;t2_iiu6x;False;False;[];;So did they ever say why he broke his promise?;False;False;;;;1610564361;;False;{};gj542hd;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj542hd/;1610631808;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;The poor artists getting the Re:Zero despair too.;False;False;;;;1610564363;;False;{};gj542ow;False;t3_kwisv4;False;True;t1_gj50ojk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj542ow/;1610631813;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ej_stephens;;;[];;;;text;t2_3d6h2d18;False;False;[];;Yeah I'm with you. I think they're relationship is destined to fail if he doesn't grow in this way though. He gives her everything he can except what she asks of him, which can't go on forever. But I think he'll eventually start to get it if things would calm down for even a moment;False;False;;;;1610564365;;False;{};gj542tf;False;t3_kwisv4;False;False;t1_gj5372x;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj542tf/;1610631815;7;True;False;anime;t5_2qh22;;0;[]; -[];;;princetacotuesday;;;[];;;;text;t2_8k2fb346;False;False;[];;"Yea, pretty much people will do anything, a lot of stupid shit too, for love. - -We're dumb creatures driven by chemicals, but at least it's nice most of the time...";False;False;;;;1610564374;;False;{};gj543ix;False;t3_kwisv4;False;True;t1_gj4d2u1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj543ix/;1610631827;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;The climax is just starting my friend.;False;False;;;;1610564387;;False;{};gj544lj;False;t3_kwisv4;False;True;t1_gj50q2m;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj544lj/;1610631846;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Seiterno;;;[];;;;text;t2_jf1fl7;False;False;[];;Why?;False;False;;;;1610564399;;False;{};gj545ko;False;t3_kwisv4;False;False;t1_gj4zgpw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj545ko/;1610631862;19;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;"15 minutes for Otto and 10 for Emilia. - -Thank you White Fox, at least you know who really matters.";False;False;;;;1610564402;;False;{};gj545u9;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj545u9/;1610631868;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;He was drowning in pussy;False;False;;;;1610564404;;False;{};gj545zh;False;t3_kwisv4;False;False;t1_gj4tmbb;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj545zh/;1610631870;176;True;False;anime;t5_2qh22;;0;[]; -[];;;Prodigy0928;;;[];;;;text;t2_3kg2qhzg;False;False;[];;Im not the only one who was screaming, right? I mean, finally... after 40 episodes... its a good day today! ***Lets gooooooo!***;False;False;;;;1610564418;;False;{};gj5477w;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5477w/;1610631891;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;We couldn't go a season without Ricardo ~~Milos~~ Dogman;False;False;;;;1610564452;;False;{};gj54a1q;False;t3_kwisv4;False;True;t1_gj51348;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj54a1q/;1610631944;2;True;False;anime;t5_2qh22;;0;[]; -[];;;princetacotuesday;;;[];;;;text;t2_8k2fb346;False;False;[];;Now there's the Garfiel I know!;False;False;;;;1610564463;;False;{};gj54ay8;False;t3_kwisv4;False;True;t1_gj4vl1v;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj54ay8/;1610631961;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Seiterno;;;[];;;;text;t2_jf1fl7;False;False;[];;Don't worry ,i'm 23 this year , still nothing;False;False;;;;1610564505;;False;{};gj54edg;False;t3_kwisv4;False;False;t1_gj4uirw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj54edg/;1610632023;17;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;I hope they are fairly compensated for all the extra work.;False;False;;;;1610564508;;False;{};gj54emj;False;t3_kwisv4;False;True;t1_gj525y3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj54emj/;1610632028;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;Nah, the scene was way too long and spectacular. He definitely made that his new checkpoint.;False;False;;;;1610564532;;False;{};gj54gls;False;t3_kwisv4;False;False;t1_gj4j0q8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj54gls/;1610632063;6;True;False;anime;t5_2qh22;;0;[]; -[];;;KinAsukira;;;[];;;;text;t2_elfps;False;False;[];;Am I the only one with a terrible sinking feeling near the ending of the episode when the romantic dramatic tensions between subaru and emilia were building up, legit had a feeling subaru was going to die by garfiel or get last second betrayed by roswaal or something. Rem fans on suicide watch this episode;False;False;;;;1610564541;;False;{};gj54hbj;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj54hbj/;1610632075;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zizwe01;;;[];;;;text;t2_54jgvg69;False;False;[];;"Finally. Some happiness in Subarus Isekai life. Our protagonist finally scored. All that suffering!! - -*me sweating nervously* it's not going to last is it....";False;False;;;;1610564566;;False;{};gj54jdl;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj54jdl/;1610632112;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WiseassWolfOfYoitsu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/WiseassWolf;light;text;t2_2gc1i7f;False;False;[];;At least these weren't rape bugs...;False;False;;;;1610564569;;False;{};gj54jnm;False;t3_kwisv4;False;False;t1_gj5045e;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj54jnm/;1610632117;14;True;False;anime;t5_2qh22;;0;[]; -[];;;rayquazaisthebest;;;[];;;;text;t2_3q2rn825;False;False;[];;Oi oi oi! Thanks bro, that really makes me feel better;False;False;;;;1610564572;;False;{};gj54jv1;False;t3_kwisv4;False;False;t1_gj4weh4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj54jv1/;1610632120;7;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Even if its not in our hearts it is.;False;False;;;;1610564574;;False;{};gj54k1p;False;t3_kwisv4;False;True;t1_gj5280h;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj54k1p/;1610632124;3;True;False;anime;t5_2qh22;;0;[]; -[];;;rayquazaisthebest;;;[];;;;text;t2_3q2rn825;False;False;[];;Lol;False;False;;;;1610564579;;False;{};gj54kgc;False;t3_kwisv4;False;False;t1_gj517ap;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj54kgc/;1610632132;14;True;False;anime;t5_2qh22;;0;[]; -[];;;zero2champion;;;[];;;;text;t2_8hh0kq1;False;False;[];;Because he was born into this world!;False;False;;;;1610564601;;False;{};gj54ma0;False;t3_kwisv4;False;False;t1_gj4k7cr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj54ma0/;1610632166;22;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;Emilia's not a half vampire.;False;False;;;;1610564631;;False;{};gj54opc;False;t3_kwisv4;False;False;t1_gj4hwds;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj54opc/;1610632211;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"Officially dethroned it for me as the best episode of the entire series. Two 10/10s, one full of trauma, the other full of joy. Perfectly balanced, as all things should be. - -[](#anko)";False;False;;;;1610564632;;False;{};gj54oqv;False;t3_kwisv4;False;False;t1_gj4fro6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj54oqv/;1610632211;5;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Well, if Subaru doesn't convince Emilia to trust him they are probably all fucked and Roswaal wins the bet.;False;False;;;;1610564651;;False;{};gj54q9e;False;t3_kwisv4;False;True;t1_gj52mcu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj54q9e/;1610632241;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pulsai86;;;[];;;;text;t2_11vw5n;False;False;[];;Not in this episode, but you should find out soon, probably in the next episode or two;False;False;;;;1610564692;;False;{};gj54tjj;False;t3_kwisv4;False;True;t1_gj542hd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj54tjj/;1610632301;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DerpyJY;;;[];;;;text;t2_tbydy;False;False;[];;"Tis a bad day to be on team Rem. -That said, Subaru and Otto are radiating Gigachad energy right now.";False;False;;;;1610564695;;False;{};gj54ts0;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj54ts0/;1610632306;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;They are already married and don't even know it.;False;False;;;;1610564696;;False;{};gj54ttt;False;t3_kwisv4;False;False;t1_gj534j1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj54ttt/;1610632307;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"I can't believe the day has actually come - -[](#not-raining)";False;False;;;;1610564719;;False;{};gj54voa;False;t3_kwisv4;False;True;t1_gj4djlk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj54voa/;1610632341;1;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;I would hate it if both Otto and Subaru went through this awesome development just for them to die again.;False;False;;;;1610564721;;1610574128.0;{};gj54vua;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj54vua/;1610632345;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610564742;;False;{};gj54xha;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj54xha/;1610632376;1;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;My boi Subaru got promoted from Simp to a Chad.;False;False;;;;1610564747;;False;{};gj54xvq;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj54xvq/;1610632383;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Firestarness;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/firestarness;light;text;t2_15356k;False;False;[];;Yup this is it. They did it lads. The moment to believe in.;False;False;;;;1610564751;;False;{};gj54y77;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj54y77/;1610632390;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ElSanju;;;[];;;;text;t2_gcz6h;False;False;[];;"IIRC, Emilia already reprimanded him in season 1 for a similar reason. - -I think she asked him to wait with Rem while she was at the queen candidate meeting or whatever the fuck that was, but then Subaru proceeds to embarrasse her and get's beaten by Julius.";False;False;;;;1610564752;;False;{};gj54yat;False;t3_kwisv4;False;False;t1_gj50w90;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj54yat/;1610632391;12;True;False;anime;t5_2qh22;;0;[]; -[];;;13steinj;;MAL;[];;;dark;text;t2_i487l;False;True;[];;Nah 90% suffering. Yes I know that adds up to 150%. It's just a testament to the amount of suffering.;False;False;;;;1610564773;;False;{};gj54zzr;False;t3_kwisv4;False;False;t1_gj4x0l9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj54zzr/;1610632424;16;True;False;anime;t5_2qh22;;0;[]; -[];;;WiseassWolfOfYoitsu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/WiseassWolf;light;text;t2_2gc1i7f;False;False;[];;I mean, if they can talk, you don't run in to those thorny consent issues!;False;False;;;;1610564775;;False;{};gj5506d;False;t3_kwisv4;False;False;t1_gj4kwp3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5506d/;1610632428;9;True;False;anime;t5_2qh22;;0;[]; -[];;;AetherPrismriv;;;[];;;;text;t2_q9s30;False;False;[];;The Otto backstory now explains how he was capable of speaking to Patrasche last season. Now it makes perfect sense!;False;False;;;;1610564790;;False;{};gj551e1;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj551e1/;1610632451;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DesolatumDeus;;;[];;;;text;t2_dsalx;False;False;[];;No. She lived in a forest with puck and in the villages no one would interact with her. So she literally just didn't know any better;False;False;;;;1610564793;;False;{};gj551nh;False;t3_kwisv4;False;False;t1_gj53fd2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj551nh/;1610632456;36;True;False;anime;t5_2qh22;;0;[]; -[];;;violetdevil172;;;[];;;;text;t2_2kljga0k;False;False;[];;That was the most selfish confession I have ever heard.;False;False;;;;1610564795;;False;{};gj551qt;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj551qt/;1610632458;3;True;False;anime;t5_2qh22;;0;[]; -[];;;hoilori;;;[];;;;text;t2_e1gyv;False;False;[];;"Otto: ... - -Subaru: I love Emilia";False;False;;;;1610564804;;False;{};gj552ks;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj552ks/;1610632475;1;True;False;anime;t5_2qh22;;0;[]; -[];;;edgyboi1704;;;[];;;;text;t2_3y3dxsmg;False;False;[];;Ah what a terrible time to have eyes;False;False;;;;1610564810;;False;{};gj5532n;False;t3_kwisv4;False;False;t1_gj4kwp3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5532n/;1610632484;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;The joke is that she's childish and thinks kisses make you pregnant.;False;False;;;;1610564816;;False;{};gj553jh;False;t3_kwisv4;False;False;t1_gj53fd2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj553jh/;1610632493;50;True;False;anime;t5_2qh22;;0;[]; -[];;;zero2champion;;;[];;;;text;t2_8hh0kq1;False;False;[];;Last Time On Re:Zero : What part of we dont do that did you not understand! Go back and watch the last episode if your brain is that small.;False;False;;;;1610564828;;False;{};gj554fd;False;t3_kwisv4;False;False;t1_gj4j9ln;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj554fd/;1610632511;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Final-Solid;;;[];;;;text;t2_yw0ryp5;False;False;[];;"First half of the episode was beautiful man. Otto is one of the best characters in this show definitely. - -Second half was kinda 50-50 for me. That entire conversation kept reeling me out and pulling me back in. My favorite part about Subaru and Emilia’s relationship was when there’s some good friction to make it feel sort of legitimate you know? It felt like it went there but went back into cheesy anime romance. My main problem is I don’t find their relationship to be particularly nuance (maybe it doesn’t need to be or isn’t meant to be). - -The rest of the conversation was good (loved the callback to his mother and stuff). Just personally, the kiss wasn’t that great, because it really feels like a generic romance. It’s weird coz Re:Zero has had a similar pep talk between Rem and Subaru in S1 which landed way harder for me personally (and this isn’t a waifu preference or something). - -The tease for next episode is cool so I can’t wait.";False;False;;;;1610564831;;False;{};gj554qd;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj554qd/;1610632518;9;True;False;anime;t5_2qh22;;0;[]; -[];;;AvatarAarow1;;;[];;;;text;t2_3ve7o5xz;False;False;[];;A crossover of subs I subscribe to that I never expected to see, but I’m all for it;False;False;;;;1610564861;;False;{};gj5574k;False;t3_kwisv4;False;False;t1_gj52i2h;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5574k/;1610632560;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeta_Crossfire;;;[];;;;text;t2_xye7v;False;False;[];;This is an absolute incredible write up. Keep up the great work, definitely deserve all the awards. It's great to have folks like you in the community to help break episodes down.;False;False;;;;1610564874;;False;{};gj5586o;False;t3_kwisv4;False;True;t1_gj4eeoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5586o/;1610632581;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Green_pine;;;[];;;;text;t2_20f1wefn;False;False;[];;From what I know it's not in the LN and hopefully not in the anime as well. It's a bit too weird of a joke to show how childish Emilia is;False;False;;;;1610564883;;False;{};gj558vi;False;t3_kwisv4;False;False;t1_gj4t92j;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj558vi/;1610632592;9;True;False;anime;t5_2qh22;;0;[]; -[];;;TheBiggestNose;;;[];;;;text;t2_10a5jv;False;False;[];;Omg that shot of Emilia's eyes reflecting Subaru was genius;False;False;;;;1610564940;;False;{};gj55dj9;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55dj9/;1610632679;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zeldris69q;;;[];;;;text;t2_3uvnroy2;False;False;[];;Who is REM?;False;False;;;;1610564954;;False;{};gj55eoj;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55eoj/;1610632699;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Voxel_exe;;;[];;;;text;t2_90hsbkcv;False;False;[];;"I think that’s up to emilia to decide if she dosent want tho? From what the series has shown despite Subaru not listening to her it’s still been helpful in someway. And from what we seen she isn’t rejecting him out of some creepiness but rather fear of seeing him being hurt for her. - -So while your saying matters in a general situation, for this context I think that the persistence Subaru has is fine, not all relationships need to be perfect after all";False;False;;;;1610564963;;1610569773.0;{};gj55fc6;False;t3_kwisv4;False;False;t1_gj53orf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55fc6/;1610632709;36;True;False;anime;t5_2qh22;;0;[]; -[];;;Dmalikhammer4;;;[];;;;text;t2_12csac;False;False;[];;YOOOOOO! AT 19:21 the ost sounds eerily similar to the end-theme of 5 cm a sec. Just wanted to see if anyone caught that.;False;False;;;;1610564969;;False;{};gj55fwb;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55fwb/;1610632720;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeanderN;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/aLeegatou;light;text;t2_16k2bzww;False;False;[];;I kinda forgot season 2 part 1, but I thought subaru could no longer enter the trial building? I think I'm missing something here, is it even the trial building? 😅;False;False;;;;1610565005;;False;{};gj55iq1;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55iq1/;1610632773;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610565022;moderator;False;{};gj55k2p;False;t3_kwisv4;False;True;t1_gj4qngh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55k2p/;1610632796;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lfaruqui;;;[];;;;text;t2_5xs806u;False;False;[];;They do have a resemblance though👀;False;False;;;;1610565031;;False;{};gj55kuy;False;t3_kwisv4;False;False;t1_gj4q1fi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55kuy/;1610632812;8;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;True and besides I believe Subaru realizes that his form of love is probably not the best for a long relationship but its the love that we got for now.;False;False;;;;1610565034;;False;{};gj55l4p;False;t3_kwisv4;False;True;t1_gj542tf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55l4p/;1610632817;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlackSCrow;;;[];;;;text;t2_837fn80k;False;False;[];;">No, Emilia wakes up from a nightmare about her past and Subaru's nowhere to be found. - -Ah yeah... I don't know why I remember otherwise... - -Where and why did Subaru go then...?";False;False;;;;1610565042;;False;{};gj55lp9;False;t3_kwisv4;False;True;t1_gj53sl2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55lp9/;1610632828;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Strict_Kick;;;[];;;;text;t2_7bngg2id;False;False;[];;Heyy wtf happened to Otto and Ram in that fight? Why's Garfiel the only one reaching them in the end. Pls don't do this 😥;False;False;;;;1610565053;;False;{};gj55mlq;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55mlq/;1610632844;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CraftEssenceEssence;;;[];;;;text;t2_3866gha;False;False;[];;When Garfiel fell into the pit with bugs it reminded me of Shikamaru Vs. Hidan.;False;False;;;;1610565073;;False;{};gj55o86;False;t3_kwisv4;False;False;t1_gj4ehq8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55o86/;1610632875;12;True;False;anime;t5_2qh22;;0;[]; -[];;;WiseassWolfOfYoitsu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/WiseassWolf;light;text;t2_2gc1i7f;False;False;[];;Given Garf's size, he appears to have a lot of fluff;False;False;;;;1610565079;;False;{};gj55oqx;False;t3_kwisv4;False;True;t1_gj4flhp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55oqx/;1610632884;3;True;False;anime;t5_2qh22;;0;[]; -[];;;haidere36;;;[];;;;text;t2_ya46y;False;False;[];;">Seriously though, not only did Subaru not die once in two episodes, he even get to kiss the woman he loves most! After all the suffering in the first cour, is karma finally smiles upon him? Or is something worse gonna come to counterbalance all this good fortune? - -I haven't read the LN or WN but it seems the story's arcs follow a pattern where once Subaru has sufficiently grown as a person and gained the right amount of confidence, the series pulls back on its deaths and suffering. IIRC Subaru didn't die again in the second arc after he jumped off a cliff to save everyone, and after From Zero in Arc 3 he only died once, and with a new save point to save him the trouble of fighting the White Whale again. - -Basically I won't be surprised if Subaru only dies once or twice in the rest of the season, and gets to have a new save point so that he doesn't lose things like his ""true"" first kiss with Emilia or his epic team up with Otto. That said I would be *very* surprised if he doesn't die again this season, there has to be something he can't perfectly predict or prevent even after all these loops.";False;False;;;;1610565096;;False;{};gj55q4t;False;t3_kwisv4;False;False;t1_gj4j0q8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55q4t/;1610632913;16;True;False;anime;t5_2qh22;;0;[]; -[];;;GoldenDude;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GoldenBoy808;light;text;t2_ay8d1;False;False;[];;No you’re right. He lost the qualification so he has to force himself to enter, which makes him psychically sick a little;False;False;;;;1610565100;;False;{};gj55qeu;False;t3_kwisv4;False;True;t1_gj55iq1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55qeu/;1610632918;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CraftEssenceEssence;;;[];;;;text;t2_3866gha;False;False;[];;I would have laughed if she punched him.;False;False;;;;1610565101;;False;{};gj55qhd;False;t3_kwisv4;False;False;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55qhd/;1610632919;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610565101;moderator;False;{};gj55qj7;False;t3_kwisv4;False;True;t1_gj4ma87;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55qj7/;1610632920;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;Kinda the point;False;False;;;;1610565110;;False;{};gj55r5f;False;t3_kwisv4;False;True;t1_gj551qt;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55r5f/;1610632932;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Voxel_exe;;;[];;;;text;t2_90hsbkcv;False;False;[];;At first I thought it was gonna be hella cheesy, and maybe some parts were, but my god if it wasn’t real all the way through. Here’a to hoping to see Subaru and Emilia as parents in a time skip.;False;False;;;;1610565111;;False;{};gj55r7o;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55r7o/;1610632933;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiro_Kai;;;[];;;;text;t2_bevm2wi;False;False;[];;You telling me that if a sexy dark skinned gal from one of the most powerful noble families approached your man you wouldn't be worried? ಠ_ಠ;False;False;;;;1610565113;;1610566207.0;{};gj55rf7;False;t3_kwisv4;False;False;t1_gj545ko;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55rf7/;1610632937;47;True;False;anime;t5_2qh22;;0;[]; -[];;;SSR_Majinken;;;[];;;;text;t2_152dcz;False;False;[];;we're talking about someone who went white knight the entire season 1 and talks about love and not someone tells me if I don't know what true love is. Stupid.;False;True;;comment score below threshold;;1610565114;;False;{};gj55rh5;False;t3_kwisv4;False;True;t1_gj4rp3g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55rh5/;1610632938;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;lost_cause4222;;;[];;;;text;t2_2yukdoi5;False;False;[];;I think I felt a bit uncomfortable watching it cause it just felt so fucking real;False;False;;;;1610565127;;False;{};gj55shv;False;t3_kwisv4;False;False;t1_gj4jrh0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55shv/;1610632958;13;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Spoilers my friend, he didn't even tell Emilia, probably something to do with the plan, Subaru only has 2 days left.;False;False;;;;1610565131;;False;{};gj55stx;False;t3_kwisv4;False;True;t1_gj55lp9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55stx/;1610632964;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sammuelbrown;;;[];;;;text;t2_13ifj2;False;False;[];;"[AoT Season 3 Part 2](/s ""Levi reply be like: Even if you don't want this, you can't dodge"")";False;False;;;;1610565147;;False;{};gj55u4n;False;t3_kwisv4;False;False;t1_gj4u2ua;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55u4n/;1610632990;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;Ore wa, RE:ZERO ga suki da.;False;False;;;;1610565169;;False;{};gj55w19;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55w19/;1610633029;2;True;False;anime;t5_2qh22;;0;[]; -[];;;J0HN__L0CKE;;MAL;[];;http://myanimelist.net/animelist/J0HN_L0CKE;dark;text;t2_caftb;False;False;[];;Otto the goat wingman;False;False;;;;1610565177;;False;{};gj55wn3;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55wn3/;1610633041;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bulbasaur_is_bae;;;[];;;;text;t2_9ecj7vfc;False;False;[];;The whole episode, you could see Emilia's reflection in Subaru's eyes, because Subaru is so obsessed with Emilia. Emilia, on the other hand, had normal eyes, right up until the very end, after they kissed, where you could see Subaru reflected in her eyes too. The production quality and the attention to detail in this anime is crazy.;False;False;;;;1610565185;;False;{};gj55xaj;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55xaj/;1610633054;1;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"He said in this episode that he was pushing himself the whole time he was inside, he wanted to throw up because the tomb was rejecting him. - -The rejection is less severe than with Roswall because Roswall has WAY more mana than Subaru who can barely use magic.";False;False;;;;1610565198;;False;{};gj55yd5;False;t3_kwisv4;False;True;t1_gj55iq1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55yd5/;1610633076;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Like the S1 episode 13?;False;False;;;;1610565198;;False;{};gj55yde;False;t3_kwisv4;False;False;t1_gj55shv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55yde/;1610633076;9;True;False;anime;t5_2qh22;;0;[]; -[];;;BlackSCrow;;;[];;;;text;t2_837fn80k;False;False;[];;Ah okay then. Thanks anyway!;False;False;;;;1610565203;;False;{};gj55ys1;False;t3_kwisv4;False;True;t1_gj55stx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55ys1/;1610633083;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zonca;;;[];;;;text;t2_11odu8;False;False;[];;I understood it as Otto looking for a guy who actualy cheated on that girl (since Otto was acused of that) and animals pointing him to a love between two cats instead.;False;False;;;;1610565203;;False;{};gj55ysk;False;t3_kwisv4;False;False;t1_gj4rkxr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj55ysk/;1610633084;269;True;False;anime;t5_2qh22;;0;[]; -[];;;REAL_CONSENT_MATTERS;;;[];;;;text;t2_ftyr6;False;False;[];;"it kinda still happened though. emilia helped him out a bunch of times (like giving him mana berry or whatever that was, getting his gate healed, etc), beatrice saved his life by curing a curse and doesn't try as hard as she could to stop him from entering the library, otto angrily told suburu to rely on his friends and then said something like ""I don't remember you asking me,"" ram assisting suburu even though it would be more pro-roswaal to not assist suburu, and so forth. - -a lot of people didn't experience the watershed moments for suburu, but most of the bonds he's made are nonetheless persisting at this point. in that sense he's much better off than he used to be when he was a near stranger to the people he cared most about.";False;False;;;;1610565265;;False;{};gj563v0;False;t3_kwisv4;False;False;t1_gj4w0je;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj563v0/;1610633179;19;True;False;anime;t5_2qh22;;0;[]; -[];;;LeanderN;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/aLeegatou;light;text;t2_16k2bzww;False;False;[];;Got it. Thanks for clearing it up.;False;False;;;;1610565271;;False;{};gj564d4;False;t3_kwisv4;False;True;t1_gj55yd5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj564d4/;1610633188;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shinypurplerocks;;;[];;;;text;t2_nzuld;False;False;[];;It's not pathetic. Both not being asked and being asked are good in my eyes (I've been in both situations). Personally being asked is so cute and gentle it makes me want to just answer with the kiss haha;False;False;;;;1610565274;;False;{};gj564l6;False;t3_kwisv4;False;False;t1_gj4vwfn;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj564l6/;1610633193;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Zonca;;;[];;;;text;t2_11odu8;False;False;[];;I though that Otto was looking for a guy who actualy cheated on that girl (since Otto was acused of that) and animals pointing him to a love between two cats instead.;False;False;;;;1610565280;;False;{};gj56525;False;t3_kwisv4;False;False;t1_gj4ruw3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56525/;1610633201;184;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;They are still not a couple or anything, Subaru just wanted Emilia to believe in him and herself as well.;False;False;;;;1610565284;;False;{};gj565g5;False;t3_kwisv4;False;True;t1_gj554qd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj565g5/;1610633209;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Spectral2020;;;[];;;;text;t2_84n70o3g;False;False;[];;Rem is the biggest simp in the entire series after Ros.;False;False;;;;1610565289;;False;{};gj565ti;False;t3_kwisv4;False;False;t1_gj4xciz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj565ti/;1610633214;11;True;False;anime;t5_2qh22;;0;[]; -[];;;TheMightyOrca;;;[];;;;text;t2_ibwjj;False;False;[];;Tough luck enjoy this mountain of peas;False;False;;;;1610565299;;False;{};gj566pe;False;t3_kwisv4;False;False;t1_gj4jtgn;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj566pe/;1610633232;30;True;False;anime;t5_2qh22;;0;[]; -[];;;LeanderN;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/aLeegatou;light;text;t2_16k2bzww;False;False;[];;I see. Got confused because last time he got pushed away after entering. Thanks!;False;False;;;;1610565305;;False;{};gj5675m;False;t3_kwisv4;False;False;t1_gj55qeu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5675m/;1610633242;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nervous-Structure843;;;[];;;;text;t2_7gs66i1t;False;False;[];;who is rem?;False;False;;;;1610565307;;False;{};gj567d4;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj567d4/;1610633245;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;No problem, untill next week my friend~!;False;False;;;;1610565316;;False;{};gj5683x;False;t3_kwisv4;False;False;t1_gj55ys1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5683x/;1610633258;1;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 150, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Thank you stranger. Shows the award.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'icon_width': 2048, 'id': 'award_f44611f1-b89e-46dc-97fe-892280b13b82', 'is_enabled': True, 'is_new': False, 'name': 'Helpful', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}, {'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Shows the Silver Award... and that's it."", 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'icon_width': 512, 'id': 'gid_1', 'is_enabled': True, 'is_new': False, 'name': 'Silver', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;shinypurplerocks;;;[];;;;text;t2_nzuld;False;False;[];;OP:Zero;False;False;;;;1610565325;;False;{'gid_1': 1};gj568wm;False;t3_kwisv4;False;False;t1_gj4oxe6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj568wm/;1610633275;295;True;False;anime;t5_2qh22;;2;[]; -[];;;ej_stephens;;;[];;;;text;t2_3d6h2d18;False;False;[];;Yeah you're right that it doesn't have to be perfect. I think Emilia does want to love Subaru back and has begun to do so, but if she is going to love him the way he loves her, he'll need to grow. I hope we get to that as the story goes on because I want to see them have a great relationship, but I know it can't always be that way.;False;False;;;;1610565333;;False;{};gj569j4;False;t3_kwisv4;False;False;t1_gj55fc6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj569j4/;1610633287;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;That's what I understood from it as well but apparently not? I am still a little confused lol;False;False;;;;1610565340;;False;{};gj56a2h;False;t3_kwisv4;False;False;t1_gj55ysk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56a2h/;1610633297;107;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"Otto being more badass than I'd ever have given him credit for. What I don't understand is what the purpose of them buying all this time for Subaru to speak to Emilia is for. Why would Garfield even get in the way of that in the first place? - -Why DID Subaru break his promise to stay with Emilia till morning? Will we learn in a future episode? - -Surely no person would ever kiss someone they didn't love! - -Wonder if Ram and Otto are dead now in this loop.";False;False;;;;1610565344;;False;{};gj56ag6;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56ag6/;1610633307;1;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;He already said what power he had in season 1 tho.;False;False;;;;1610565360;;False;{};gj56brb;False;t3_kwisv4;False;True;t1_gj551e1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56brb/;1610633330;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wurzelrenner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Wurzeldieb;light;text;t2_9wr93;False;False;[];;"and even there it was bullshit, ""just"" a love triangle";False;False;;;;1610565367;;False;{};gj56cau;False;t3_kwisv4;False;True;t1_gj4ix1b;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56cau/;1610633341;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ltholland;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/LtHolland;light;text;t2_dib1k;False;False;[];;Emilia are fans pretty happy right now.;False;False;;;;1610565402;;False;{};gj56f5l;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56f5l/;1610633392;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PwnBuddy;;;[];;;;text;t2_6ycfi;False;True;[];;Don't let Subaru/Emilia romance distract from the fact that Otto is the best character in the show.;False;False;;;;1610565403;;False;{};gj56f99;False;t3_kwisv4;False;True;t1_gj4czz6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56f99/;1610633394;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;I hope not, because if rem and otto are dead, then that means subaru is gonna have to return by death to save them, and then that means the kiss will have never hapeened😭;False;False;;;;1610565429;;False;{};gj56hes;False;t3_kwisv4;False;True;t1_gj4zq3e;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56hes/;1610633435;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sammuelbrown;;;[];;;;text;t2_13ifj2;False;False;[];;">Seriously though, not only did Subaru not die once in two episodes, - -Be careful, remember what happened the last time we were celebrating Subaru not dying for some amount of episodes.";False;False;;;;1610565431;;False;{};gj56hkc;False;t3_kwisv4;False;False;t1_gj4j0q8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56hkc/;1610633437;23;True;False;anime;t5_2qh22;;0;[]; -[];;;cheese-101;;;[];;;;text;t2_6ejkq6qs;False;False;[];;*passes it back to you*;False;False;;;;1610565442;;False;{};gj56ij0;False;t3_kwisv4;False;False;t1_gj566pe;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56ij0/;1610633456;22;True;False;anime;t5_2qh22;;0;[]; -[];;;princetacotuesday;;;[];;;;text;t2_8k2fb346;False;False;[];;"That's what I was thinking too as it's a trope in japanese media to depict naive girls as thinking that will get them pregnant, ha. - -I wasn't exactly sure here hence why I asked (cause we aren't really dealing with a human here so I have no idea, lol).";False;False;;;;1610565443;;False;{};gj56ikh;False;t3_kwisv4;False;False;t1_gj553jh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56ikh/;1610633457;19;True;False;anime;t5_2qh22;;0;[]; -[];;;NecroPamyuPamyu;;;[];;;;text;t2_3h5v7kme;False;False;[];;">Oh, so does the naming inspiration for Otto come from the Ottoman Empire? - -Dad points to Tappei Nagatsuki!";False;False;;;;1610565446;;False;{};gj56itx;False;t3_kwisv4;False;True;t1_gj4vos4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56itx/;1610633462;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FlaminScribblenaut;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/flaming_scr;light;text;t2_hx6xr;False;False;[];;shoulda rolled;False;False;;;;1610565465;;False;{};gj56kc7;False;t3_kwisv4;False;False;t1_gj50oyg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56kc7/;1610633489;19;True;False;anime;t5_2qh22;;0;[]; -[];;;KratsoThelsamar;;;[];;;;text;t2_9yfhq;False;False;[];;That moment is in the LNs, near the end of volume 13;False;False;;;;1610565468;;False;{};gj56knh;False;t3_kwisv4;False;False;t1_gj53qgc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56knh/;1610633495;8;True;False;anime;t5_2qh22;;0;[]; -[];;;South25;;;[];;;;text;t2_5sxj9aoq;False;False;[];;its a popular joke answer the author gave to a question in a QNA so Whitefox added it in there as a nod to it.;False;False;;;;1610565489;;False;{};gj56mby;False;t3_kwisv4;False;False;t1_gj4ruw3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56mby/;1610633525;55;True;False;anime;t5_2qh22;;0;[]; -[];;;zwillnas;;;[];;;;text;t2_ytdlf;False;False;[];;AKA The Coma Strat Kek;False;False;;;;1610565504;;False;{};gj56njn;False;t3_kwisv4;False;False;t1_gj4m98g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56njn/;1610633547;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Kdog122025;;;[];;;;text;t2_8dop174;False;False;[];;Simparu’s evolving;False;False;;;;1610565510;;False;{};gj56o0e;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56o0e/;1610633556;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Theblade12;;;[];;;;text;t2_prr3l;False;False;[];;"> He’d lose the bet as well - -Just make it again, not like Roswaal would know any better";False;False;;;;1610565517;;False;{};gj56oka;False;t3_kwisv4;False;False;t1_gj4z5ju;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56oka/;1610633566;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;It was the unexpected shock, this time Subaru knew so was more prepared mentally for the fact that it would suck ass.;False;False;;;;1610565521;;False;{};gj56ow1;False;t3_kwisv4;False;True;t1_gj5675m;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56ow1/;1610633573;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Final-Solid;;;[];;;;text;t2_yw0ryp5;False;False;[];;Sure. Just the general confession and kiss was a tad too cheesy for me. I do really like the stuff outside it tho (the connection between his conversation to characters like Subaru’s mom, Satella etc). It’s just that there are way more interesting and nuanced “I’m in love but we’re not a couple yet” relationships in anime.;False;False;;;;1610565559;;False;{};gj56s0n;False;t3_kwisv4;False;True;t1_gj565g5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56s0n/;1610633630;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;It's 🩸strawberry jam🩸 don't worry!;False;False;;;;1610565563;;False;{};gj56sc5;False;t3_kwisv4;False;True;t1_gj55mlq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56sc5/;1610633635;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CraftEssenceEssence;;;[];;;;text;t2_3866gha;False;False;[];;Ram just went full ATATATATATATATA...;False;False;;;;1610565569;;False;{};gj56ssl;False;t3_kwisv4;False;False;t1_gj4flhp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56ssl/;1610633644;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Nanashi-74;;;[];;;;text;t2_5x0k2vam;False;False;[];;"Take a shot everytime Subaru says ""suki"" - -Sometimes I forget Re Zero is just the ultimate simp simulation. This episode was hard to watch, Subaru wore Emilia down for two seasons, at least he got a kiss out of it. I still kinda can't stand Emilia, such a whiny character. - -I enjoy re zero when Subaru is doing everything in his power to save everyone, but when this shit goes down to him simping for Emilia I'm not a fan. Even if he's doing this to motivate her or whatever it's such a weird conversation they had.";False;True;;comment score below threshold;;1610565570;;False;{};gj56sx6;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56sx6/;1610633647;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;IlyDenferno;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Denferno_C;light;text;t2_1617zfor;False;False;[];;"This confession is probably my favourite confession in anime imo. It was aggresive and honest but also wholesome. - -Also Otto being a boss again together with Ram.";False;False;;;;1610565593;;False;{};gj56upu;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56upu/;1610633682;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;The studio is really going the extra mile.;False;False;;;;1610565616;;False;{};gj56wor;False;t3_kwisv4;False;True;t1_gj55xaj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56wor/;1610633717;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkChaplain;;;[];;;;text;t2_3zc84;False;False;[];;"The story even implies that Subaru is merely hopping worldlines, when he goes for the Trials. It's certainly a question that is posed to him - whether things actually reset or it's just him hopping in search for his own Steins;Gate worldline. - -Now whether that's going to relate to Satella at all is pretty much a moot point right now. We'll find out if so, or not if not. Right now, there's not much of a basis to support fan theories - though it might happen in the future. We'll have to see.";False;False;;;;1610565641;;False;{};gj56ypy;False;t3_kwisv4;False;False;t1_gj4uyxw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj56ypy/;1610633760;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Gas4078;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gas4078;light;text;t2_12wmrf;False;False;[];;Oh, that's quite nice.;False;False;;;;1610565693;;False;{};gj57304;False;t3_kwisv4;False;False;t1_gj52h1g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj57304/;1610633846;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Donimyc;;MAL;[];;The one true snark;dark;text;t2_idkcg;False;False;[];;The small details of Subaru having only Emilia in his eyes for most of the conversation compared to Emilia's lack of him in her eyes were a nice touch. Then she blinks and he's in her eyes, finally. Gave me chills.;False;False;;;;1610565704;;False;{};gj573y9;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj573y9/;1610633863;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nanashi-74;;;[];;;;text;t2_5x0k2vam;False;False;[];;"The only good thing about this confession was ""I don't love you because I believe in you, I believe you because I love you"" or something like that. The rest is just incel simping";False;True;;comment score below threshold;;1610565705;;False;{};gj5741e;False;t3_kwisv4;False;True;t1_gj4j0q8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5741e/;1610633866;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;Nhadala;;;[];;;;text;t2_gnpcu;False;False;[];;"Well, we now know what re:zero has done to us in the past. - -I certainly hope not tho LOL";False;False;;;;1610565722;;False;{};gj575fs;False;t3_kwisv4;False;True;t1_gj56hes;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj575fs/;1610633891;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkNxss66;;;[];;;;text;t2_4dmqhwtt;False;False;[];;does someone the title of the song at the ending scene?;False;False;;;;1610565724;;False;{};gj575kl;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj575kl/;1610633894;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KERRdude;;;[];;;;text;t2_bh32y;False;False;[];;Not enough pain and suffering 2/10;False;False;;;;1610565754;;False;{};gj57815;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj57815/;1610633939;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;">the next stop is at the season's finale. - -Still 10 episodes left!";False;False;;;;1610565768;;False;{};gj5794a;False;t3_kwisv4;False;True;t1_gj53two;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5794a/;1610633959;1;True;False;anime;t5_2qh22;;0;[]; -[];;;goodcharactersonly;;;[];;;;text;t2_9sxqb0at;False;False;[];;"im cheering to this ""plant"" to die faster.";False;False;;;;1610565771;;False;{};gj579dq;False;t3_kwisv4;False;True;t1_gj4g2k2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj579dq/;1610633965;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;She's already in love and doesn't even know it.;False;False;;;;1610565805;;False;{};gj57c3k;False;t3_kwisv4;False;True;t1_gj53uf2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj57c3k/;1610634016;2;True;False;anime;t5_2qh22;;0;[]; -[];;;goodcharactersonly;;;[];;;;text;t2_9sxqb0at;False;False;[];;to be fair at this point Rem is overrated as fck. Hopefully this plant wll die after waking up in future seasons.;False;False;;;;1610565843;;False;{};gj57fdi;False;t3_kwisv4;False;True;t1_gj4hwze;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj57fdi/;1610634079;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;lost_cause4222;;;[];;;;text;t2_2yukdoi5;False;False;[];;"Yeah. Subaru picking up Rem's speech and using it on Emilia, the absolute frenzy Emilia was in, and the overall fight was pretty visceral - -Edit: Thought he said episode 15";False;False;;;;1610565847;;False;{};gj57fnz;False;t3_kwisv4;False;False;t1_gj55yde;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj57fnz/;1610634085;10;True;False;anime;t5_2qh22;;0;[]; -[];;;IndecisiveDude;;;[];;;;text;t2_143lab;False;False;[];;Haha yes. I fell a bit in love with Subaru and I wasn’t even the one he was talking to.;False;False;;;;1610565850;;False;{};gj57fz6;False;t3_kwisv4;False;False;t1_gj54ttt;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj57fz6/;1610634092;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fehervari;;;[];;;;text;t2_4wj5c6;False;False;[];;"> he used ""tsuki"" - -Tsuki is the Moon. He said ""suki"".";False;False;;;;1610565878;;False;{};gj57ibq;False;t3_kwisv4;False;False;t1_gj4klyd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj57ibq/;1610634137;26;True;False;anime;t5_2qh22;;0;[]; -[];;;zero2champion;;;[];;;;text;t2_8hh0kq1;False;False;[];;It could be Obsession.;False;False;;;;1610565922;;False;{};gj57m0m;False;t3_kwisv4;False;False;t1_gj4kfil;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj57m0m/;1610634210;11;True;False;anime;t5_2qh22;;0;[]; -[];;;REAL_CONSENT_MATTERS;;;[];;;;text;t2_ftyr6;False;False;[];;"re: the whale driving otto crazy, i've been thinking about how noisy it must be for otto even under normal circumstances. you'd expect someone like that to become a hermit in a desert or something like that, not a traveling merchant. it seems like he has some ability to filter or limit it now, though apparently he couldn't with the whale? the whale itself had some kind of special voice that could impact people without his ability though. - -it's kind of funny to imagine this from garfiel's perspective. being dropped in the hole and then swarmed by insects must have been an ""oh shit"" moment, but the insects appear to harmless like locusts and he must have figured out pretty quickly that otto never put him in any real danger. he was clearly holding back until his transformation after ram's entrance. - -the extent garfiel doesn't hold back after transforming makes me wonder if my earlier theory about him not having full control over the transformation is right. kinda seems like it, but it could also be that transforming is itself a sign he's no longer holding back. it seems very different than his sister's ""don't be scared"" weaker transformation compared to his angry raging the moment he transforms.";False;False;;;;1610565928;;False;{};gj57miv;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj57miv/;1610634219;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;They already do extend episodes it also puts strain on production.;False;False;;;;1610565933;;False;{};gj57muu;False;t3_kwisv4;False;False;t1_gj57304;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj57muu/;1610634225;6;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;Got ntr'd by a fucking cat well props for being a cool wing man tho;False;False;;;;1610565938;;False;{};gj57naz;False;t3_kwisv4;False;False;t1_gj4x90g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj57naz/;1610634234;43;True;False;anime;t5_2qh22;;0;[]; -[];;;Aaqrus;;;[];;;;text;t2_3plagd4o;False;False;[];;"I have a question, please tell me subaru wont die untill he reached the new checked point, i want both of Emilia and Subaru to remember this wholesome scene we all appreciated. -Edit : i don't care being spoiled about that i just wanna know if he'll die or if they will forget that moment.";False;False;;;;1610565941;;False;{};gj57njd;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj57njd/;1610634240;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;Imagine you're an artist and you're working a brand new song with the potential to play for an anime an OP or ED, and of all the anime it will be used, it's Re:Zero;False;False;;;;1610565972;;False;{};gj57q36;False;t3_kwisv4;False;False;t1_gj4dvoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj57q36/;1610634290;9;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;And yet he is the best wing man you need;False;False;;;;1610565974;;False;{};gj57q7o;False;t3_kwisv4;False;False;t1_gj4lvkm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj57q7o/;1610634291;11;True;False;anime;t5_2qh22;;0;[]; -[];;;synmotopompy;;;[];;;;text;t2_oykbw;False;False;[];;"Yeaaaah, suuuuure. Imagine being in Emilia's place and some guy keeps telling you he loves you without providing any advice while you reminisce about whatever horrible things happened to your family in the past. And you dare even say it's remotely close to being ""real""? Holy shit, go ahead and try this in real life, anyone with two brain cells would get extremely mad at you.";False;True;;comment score below threshold;;1610565990;;False;{};gj57rl8;False;t3_kwisv4;False;True;t1_gj4jfdp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj57rl8/;1610634315;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610565991;;False;{};gj57rn4;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj57rn4/;1610634315;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The_last_melon_98;;;[];;;;text;t2_5qmmdyhv;False;False;[];;Hey, as long as it felt real and impactful the majority of people, then it was well done and they did right by it;False;False;;;;1610565994;;False;{};gj57ryh;False;t3_kwisv4;False;True;t1_gj52u36;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj57ryh/;1610634321;3;True;False;anime;t5_2qh22;;0;[]; -[];;;rambonenix;;;[];;;;text;t2_wo7lr;False;False;[];;AHHHHHH THAT ENDING!!! Butterflies!!!;False;False;;;;1610566011;;False;{};gj57t9h;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj57t9h/;1610634350;2;True;False;anime;t5_2qh22;;0;[]; -[];;;one-eyed-02;;;[];;;;text;t2_783k5oi0;False;False;[];;"With Otto's backstory and his fight presented, I thought that we were done with the episode, but nope only 15 minutes have passed. Sasuga White Fox! - - -Wait, so Patrasche was there when the doctor visited the Suwen Family for Otto?! Not mentioned in the WN at least, this is huge! - - -BTW, what Otto said to his family in the note is ""Thank you, for everything"". No you are crying! -BTWW, that white cat was Otto's first love! The guy never catches a break!";False;False;;;;1610566030;;False;{};gj57uss;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj57uss/;1610634377;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Amacar123;;MAL;[];;https://myanimelist.net/animelist/amacar123?status=2;dark;text;t2_btvou;False;False;[];;REEEEEEEEEIIIIIIIIIIIIIIIWAAAAAAAAAAAAAAA POWWWWEEEEEEEEEEERRRRRR!!!;False;False;;;;1610566040;;False;{};gj57vmb;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj57vmb/;1610634391;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;....God damn It, even If there wasn't, there is one now 😭;False;False;;;;1610566076;;False;{};gj57yii;False;t3_kwisv4;False;False;t1_gj50xnh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj57yii/;1610634453;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Tom-Pendragon;;;[];;;;text;t2_mnv6q;False;False;[];;Rem died for this. HAHAH;False;False;;;;1610566084;;False;{};gj57z6v;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj57z6v/;1610634470;1;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;Yeah is it asshole made to be hated Shinji or hated yet misunderstood relatable yet whiny Shinji;False;False;;;;1610566087;;False;{};gj57zg1;False;t3_kwisv4;False;False;t1_gj4yc3e;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj57zg1/;1610634475;23;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Far Rolling to The Blue Oni;False;False;;;;1610566108;;False;{};gj5817y;False;t3_kwisv4;False;False;t1_gj56kc7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5817y/;1610634522;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Zonca;;;[];;;;text;t2_11odu8;False;False;[];;"For me it felt like the insert song Wishing, sung by Inori Minase, in S1E18 but here we got another song sung by Rie Takahashi instead, for that sweet sweet and bitter parallel, if my ears don't fail me. - - -ED is announced as ""I believe in you"" by nonoc, there's a snippet of it I found and I think it's a different song.";False;False;;;;1610566112;;False;{};gj581gv;False;t3_kwisv4;False;False;t1_gj4tdbf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj581gv/;1610634527;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Erw11n;;;[];;;;text;t2_126a3u;False;False;[];;Wait, are you for real or just messing with us? lol;False;False;;;;1610566122;;False;{};gj582dv;False;t3_kwisv4;False;False;t1_gj4fb40;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj582dv/;1610634542;23;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;🤣;False;False;;;;1610566130;;False;{};gj58325;False;t3_kwisv4;False;False;t1_gj515f0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj58325/;1610634553;6;True;False;anime;t5_2qh22;;0;[]; -[];;;DimmuHS;;MAL;[];;https://myanimelist.net/profile/DimmuOli;dark;text;t2_p8kik;False;False;[];;Godlike essay, I don't have Gold but you deserve every bit of attention for this epic reading.;False;False;;;;1610566163;;False;{};gj585zq;False;t3_kwisv4;False;True;t1_gj4eeoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj585zq/;1610634610;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NoobFade;;;[];;;;text;t2_6y40gv40;False;False;[];;The Subaru and Emilia scene was so good I almost stopped shipping the OTP, but I have faith that Subaru x Suffering will win in the end.;False;False;;;;1610566168;;False;{};gj586du;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj586du/;1610634617;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dmalikhammer4;;;[];;;;text;t2_12csac;False;False;[];;*gf acquired*;False;False;;;;1610566175;;False;{};gj586y5;False;t3_kwisv4;False;True;t1_gj4md8f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj586y5/;1610634631;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;[Perfection](https://i.redd.it/aqi4gqy71zm31.png);False;False;;;;1610566178;;False;{};gj5878p;False;t3_kwisv4;False;True;t1_gj53xk8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5878p/;1610634637;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jojo_is_trash;;;[];;;;text;t2_595dn1yo;False;False;[];;Your essay gave me life;False;False;;;;1610566193;;False;{};gj588ji;False;t3_kwisv4;False;True;t1_gj4eeoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj588ji/;1610634662;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Toast_Grillman;;;[];;;;text;t2_p6ckq;False;False;[];;"“I love you Emilia!” - -“I love Ram”";False;False;;;;1610566198;;False;{};gj588y6;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj588y6/;1610634668;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Firex_;;;[];;;;text;t2_ypcig;False;False;[];;Yeah I was really hoping the entire time he'd eventually appear in her eyes. So glad it happened right at the end;False;False;;;;1610566232;;1610573650.0;{};gj58bs6;False;t3_kwisv4;False;False;t1_gj4o5x6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj58bs6/;1610634729;438;True;False;anime;t5_2qh22;;0;[]; -[];;;synmotopompy;;;[];;;;text;t2_oykbw;False;False;[];;Yeah let's go boys! Karma whoring for the win! Except you had 4 years to think this through, we didn't even have 1 hour...;False;True;;comment score below threshold;;1610566275;;False;{};gj58fda;False;t3_kwisv4;False;True;t1_gj4eeoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj58fda/;1610634808;-12;True;False;anime;t5_2qh22;;0;[]; -[];;;REAL_CONSENT_MATTERS;;;[];;;;text;t2_ftyr6;False;False;[];;simping is the purest form of love /s ^^this ^^is ^^a ^^joke, ^^not ^^criticizing ^^you;False;False;;;;1610566308;;False;{};gj58hz3;False;t3_kwisv4;False;False;t1_gj4idqs;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj58hz3/;1610634864;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Keith_Marlow;;;[];;;;text;t2_3eyqgrl3;False;False;[];;We're just going to have to agree to disagree on watching RAWs, but regarding the source material: no, the anime directly follows the LN. The LN only has one main story. The six IF routes you are referring to, one for each sin other than envy (which is the main route) are one chapter side/spin-off stories released by the author every April fools day, covering what would happen if various events went differently, such as what if Reinhard never found Subaru in the capital (Pride), what if Subaru ran away with Rem (Sloth), or what if Subaru accepted Echidna's deal (Greed).;False;False;;;;1610566335;;False;{};gj58k55;False;t3_kwisv4;False;True;t1_gj4xk31;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj58k55/;1610634902;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dmalikhammer4;;;[];;;;text;t2_12csac;False;False;[];;Yes sir. One of the few times I caught on a subtlety before reading the comments.;False;False;;;;1610566336;;False;{};gj58k9u;False;t3_kwisv4;False;False;t1_gj4v23r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj58k9u/;1610634904;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Lenslucid;;;[];;;;text;t2_6htp7f1o;False;False;[];;I remember as a kid I accidentally typed dragonballx. Com instead of z;False;False;;;;1610566357;;False;{};gj58lz0;False;t3_kwisv4;False;False;t1_gj50xnh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj58lz0/;1610634934;19;True;False;anime;t5_2qh22;;0;[]; -[];;;totally-not-hikigaya;;;[];;;;text;t2_y13kb;False;False;[];;bros before hoes, or in this case, zoophilia;False;False;;;;1610566365;;False;{};gj58mm2;False;t3_kwisv4;False;False;t1_gj4jk48;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj58mm2/;1610634949;25;True;False;anime;t5_2qh22;;0;[]; -[];;;OmegonAlphariusXX;;;[];;;;text;t2_cmkgc75;False;False;[];;^(great tip, if you surround what you want to minimise in brackets and put the symbol before the first bracket is makes it all smol:D);False;False;;;;1610566368;;False;{};gj58mwz;False;t3_kwisv4;False;True;t1_gj58hz3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj58mwz/;1610634954;3;True;False;anime;t5_2qh22;;0;[]; -[];;;unknown537;;;[];;;;text;t2_20519zb3;False;False;[];;It's officially confirmed by author of Re Zero.;False;False;;;;1610566410;;False;{};gj58qg3;False;t3_kwisv4;False;False;t1_gj582dv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj58qg3/;1610635023;21;True;False;anime;t5_2qh22;;0;[]; -[];;;NecroCannon;;;[];;;;text;t2_6bdn7sx;False;False;[];;I got spoiled literally a few minutes before I watched the episode but man this was sweet;False;False;;;;1610566463;;False;{};gj58uvf;False;t3_kwisv4;False;True;t1_gj4cvol;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj58uvf/;1610635108;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cynadiir;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cyn50;light;text;t2_zs3sh;False;False;[];;Same;False;False;;;;1610566470;;False;{};gj58vd9;False;t3_kwisv4;False;False;t1_gj4ypfa;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj58vd9/;1610635118;17;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> What I don't understand is what the purpose of them buying all this time for Subaru to speak to Emilia is for - -Well Subaru needs Emilia to trust him or it probably would complicate things further. - ->hy would Garfield even get in the way of that in the first place? - -He would never let Subaru enter the crypt, because we thinks he's part of the witches cult because of the witches scent. - ->Surely no person would ever kiss someone they didn't love! - -Of course not, she clearly loves him.";False;False;;;;1610566471;;False;{};gj58vh3;False;t3_kwisv4;False;True;t1_gj56ag6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj58vh3/;1610635120;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Falmung;;;[];;;;text;t2_adetc;False;False;[];;And a lot of confessing if the checkpoint doesn't get updated.;False;False;;;;1610566480;;False;{};gj58w7f;False;t3_kwisv4;False;True;t1_gj4kp5z;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj58w7f/;1610635133;3;True;False;anime;t5_2qh22;;0;[]; -[];;;IsTom;;;[];;;;text;t2_75ltx;False;False;[];;Kazuma would've followed it with a knuckle sandwitch.;False;False;;;;1610566503;;False;{};gj58y2z;False;t3_kwisv4;False;False;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj58y2z/;1610635169;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Baerlatsch;;;[];;;;text;t2_238e9db6;False;False;[];;Ah, now I can finally cast my vote to make re:zero the highest voted second place ever;False;False;;;;1610566549;;False;{};gj591rj;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj591rj/;1610635237;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Oscar_435;;;[];;;;text;t2_7o0jy1ev;False;False;[];;Is this the best episode so far?;False;False;;;;1610566554;;False;{};gj5925x;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5925x/;1610635244;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DiktoLays;;;[];;;;text;t2_1yrbkkon;False;False;[];;The argument is so good and feels so real that I consider it as ASMR;False;False;;;;1610566570;;False;{};gj593hr;False;t3_kwisv4;False;True;t1_gj4jfdp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj593hr/;1610635269;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-Relevant_Username;;;[];;;;text;t2_hfadw;False;False;[];;The sun is setting, last time it was that kind of lighting Subaru got his guts sliced open in the mansion. My hopes are not high this next episode T-T;False;False;;;;1610566571;;False;{};gj593l9;False;t3_kwisv4;False;False;t1_gj56hkc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj593l9/;1610635273;10;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Re:Zero was always about love not suffering.;False;False;;;;1610566572;;False;{};gj593n8;False;t3_kwisv4;False;True;t1_gj57815;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj593n8/;1610635274;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mishael1;;;[];;;;text;t2_okjhp;False;False;[];;This is what I am gonna choose to believe, thanks for that!;False;False;;;;1610566578;;False;{};gj5944t;False;t3_kwisv4;False;False;t1_gj56525;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5944t/;1610635283;45;True;False;anime;t5_2qh22;;0;[]; -[];;;Zonca;;;[];;;;text;t2_11odu8;False;False;[];;"To add on the other guy, everyone has their own distorted versions of everyone they know in their minds, that's pretty normal. - - -And about the doll thing ... yeah that's Subaru from S1E13, he's been through quite a journey since then, if you still think that he hasn't changed in that regard and side with that one Emilia line she had when weakend and in heated argument then ... I can't say much more man.";False;False;;;;1610566633;;False;{};gj598hm;False;t3_kwisv4;False;False;t1_gj4lpqx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj598hm/;1610635370;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"[Spoiler ](/s ""Subaru is going to win the bet."")";False;False;;;;1610566635;;False;{};gj598qc;False;t3_kwisv4;False;True;t1_gj57njd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj598qc/;1610635373;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Blue_Storm11;;;[];;;;text;t2_2v5lcrru;False;False;[];;This rem didn't kill subaru she was only suspicious of him. ever since emilia told rem subaru was a good person her perspective of him started to change positively rather then negeativly.;False;False;;;;1610566646;;False;{};gj599jc;False;t3_kwisv4;False;False;t1_gj4pffn;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj599jc/;1610635393;4;True;False;anime;t5_2qh22;;0;[]; -[];;;HahaVince;;;[];;;;text;t2_6pkh7e8o;False;False;[];;I would assume and hope we are out of the woods, no pun intended, soon. I loved season 1 because of the change in scenery once a checkpoint was completed. Feel like we have been here forever 😒;False;False;;;;1610566687;;False;{};gj59cry;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj59cry/;1610635458;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BryanLoeher;;MAL;[];;http://myanimelist.net/animelist/BryanLoeher;dark;text;t2_114w94;False;False;[];;I mean my cats always get me all uwu by their cuteness alone, I can't even imagine if I could hear them talk;False;False;;;;1610566696;;False;{};gj59di0;False;t3_kwisv4;False;False;t1_gj4k0st;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj59di0/;1610635472;107;True;False;anime;t5_2qh22;;0;[]; -[];;;Gas4078;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gas4078;light;text;t2_12wmrf;False;False;[];;"I'm not really blaming the animators, I know that anime in general have terrible schedules (which is quite sad). I also appreciate how far the show goes to get extra time (skipping OPs/EDs, extending the episode time). - -I'm just nitpicking/pointing out some flaws which I noticed.";False;False;;;;1610566701;;False;{};gj59dum;False;t3_kwisv4;False;False;t1_gj57muu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj59dum/;1610635478;4;True;False;anime;t5_2qh22;;0;[]; -[];;;KERRdude;;;[];;;;text;t2_bh32y;False;False;[];;To much love 1/10;False;False;;;;1610566714;;False;{};gj59ev3;False;t3_kwisv4;False;False;t1_gj593n8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj59ev3/;1610635496;8;True;False;anime;t5_2qh22;;0;[]; -[];;;John-Otaku;;;[];;;;text;t2_3kii6k54;False;False;[];;"\*Otto can control and talk to bugs\* - -Shino: Our Battle will be legendary";False;False;;;;1610566790;;False;{};gj59l3f;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj59l3f/;1610635614;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BryanLoeher;;MAL;[];;http://myanimelist.net/animelist/BryanLoeher;dark;text;t2_114w94;False;False;[];;And something tells me this kiss didn't taste like death;False;False;;;;1610566791;;False;{};gj59l5i;False;t3_kwisv4;False;True;t1_gj4j0q8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj59l5i/;1610635615;3;True;False;anime;t5_2qh22;;0;[]; -[];;;username6232;;;[];;;;text;t2_6a1wm24w;False;False;[];;nah the rest of the season is going to be in the sanctuary and at the mansion;False;False;;;;1610566797;;False;{};gj59llh;False;t3_kwisv4;False;True;t1_gj59cry;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj59llh/;1610635623;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TempestoLord;;;[];;;;text;t2_36iuel06;False;False;[];;It’s not like he loved Emilia since day one or something.;False;False;;;;1610566804;;False;{};gj59m7t;False;t3_kwisv4;False;False;t1_gj4i7t8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj59m7t/;1610635634;13;True;False;anime;t5_2qh22;;0;[]; -[];;;FlaminScribblenaut;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/flaming_scr;light;text;t2_hx6xr;False;False;[];;"OK so, who else is actually, completely unironically rooting for the poly ending for real - -Like, it would be cool to see actual polyamory represented in such a massive show as this, and the whole “Emilia being the thing that keeps me moving forward while Rem supports me from behind” speech Subaru gave before is honestly such a fantastically eloquent expression of the beauty of what a polyamorous relationship would be like, it’s pretty much already primed the pump for it - -Imagine after the story is all said and done Subaru runs off to the countryside with Emilia and Rem like he proposed in Episode 18, that’d be so nice";False;False;;;;1610566812;;False;{};gj59mvs;False;t3_kwisv4;False;False;t1_gj4h8dk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj59mvs/;1610635647;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Black_Cracker_FK;;;[];;;;text;t2_hqzslb4;False;False;[];;I mean we did get one this time. An old one but I don't mind.;False;False;;;;1610566836;;False;{};gj59ovq;False;t3_kwisv4;False;False;t1_gj4oxe6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj59ovq/;1610635685;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Zonca;;;[];;;;text;t2_11odu8;False;False;[];;There definitely was a bit of war in the declaration of love,... let's .... hope? .... that there was a bit of love in the declaration of war as well,... I guess?;False;False;;;;1610566839;;False;{};gj59p3x;False;t3_kwisv4;False;True;t1_gj50cze;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj59p3x/;1610635688;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OniiChanStopNotThere;;;[];;;;text;t2_rn5xr;False;False;[];;Bros before hoes always. Otto did the right thing by telling that man that she was with 7 men prior to him.;False;False;;;;1610566841;;False;{};gj59p82;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj59p82/;1610635691;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hope_left_the_chat;;;[];;;;text;t2_5zbpffyy;False;False;[];;"I always praise the ost of rezero and this time is no different again, it was simply beautiful. - -Subaru Emilia ship has finally sailed.";False;False;;;;1610566893;;False;{};gj59tgs;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj59tgs/;1610635785;1;True;False;anime;t5_2qh22;;0;[]; -[];;;charliwea;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Charliwea;light;text;t2_yr99z;False;False;[];;"> I thought it was just about pain and suffering! - -Just like a genuine romance!";False;False;;;;1610566895;;False;{};gj59tlo;False;t3_kwisv4;False;False;t1_gj4j0q8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj59tlo/;1610635788;4;True;False;anime;t5_2qh22;;0;[]; -[];;;indiewolf117;;;[];;;;text;t2_kh48x;False;False;[];;She actually said that again in this episode when Subaru told her to at least look cute for him. I may have just misunderstood his intentions tho, so sorry in advance.;False;False;;;;1610566925;;False;{};gj59w00;False;t3_kwisv4;False;False;t1_gj598hm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj59w00/;1610635834;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> i've been thinking about how noisy it must be for otto even under normal circumstances - -I think Otto got better with age at controlling is ability, and he probably used is ability to try and escape the whale which clearly backfired.";False;False;;;;1610566971;;False;{};gj59zqm;False;t3_kwisv4;False;True;t1_gj57miv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj59zqm/;1610635912;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fadasd1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/fadasd;light;text;t2_jbsu6;False;False;[];;Well except a future in which Emilia lives would not have been possible without Subaru, meaning this is impossible.;False;False;;;;1610566982;;False;{};gj5a0m8;False;t3_kwisv4;False;True;t1_gj4uq0j;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5a0m8/;1610635928;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Flymsi;;;[];;;;text;t2_nm33k;False;False;[];;I think so too. But i wonder why she chose him in the first place?(i mean she had to teleport him into ehr world?) Was it by chance? Was it because she saw herself in him?;False;False;;;;1610566990;;False;{};gj5a18q;False;t3_kwisv4;False;True;t1_gj4uq0j;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5a18q/;1610635939;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;She's not even cold or dead.;False;False;;;;1610567009;;False;{};gj5a2sa;False;t3_kwisv4;False;True;t1_gj57z6v;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5a2sa/;1610635970;1;True;False;anime;t5_2qh22;;0;[]; -[];;;swodaem;;;[];;;;text;t2_6dlxr;False;False;[];;Oh lord;False;False;;;;1610567009;;False;{};gj5a2u2;False;t3_kwisv4;False;False;t1_gj4o5zr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5a2u2/;1610635971;8;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;"Hey don't judge people who want to be in polygamous relationships. - -It's clear Subaru loves Rem too. Maybe not as much as Emilia, but he certainly loves her and he's romantically interested for sure. Same the other way.";False;False;;;;1610567047;;1610571754.0;{};gj5a5wr;False;t3_kwisv4;False;True;t1_gj540yv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5a5wr/;1610636034;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ezorethyk2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/catalin_sara;light;text;t2_1vlmn3cp;False;False;[];;">This rem didn't kill subaru she was only suspicious of him - -It's the same Rem and same Emilia. The only difference is how Subaru played his cards. When she treated Rem nice it still wasn't enough to survive, being killed for the smallest suspicious. He had to buy time and then go through imense pain of saving Rem until she started to really have a better view on him.";False;False;;;;1610567047;;False;{};gj5a5wx;False;t3_kwisv4;False;False;t1_gj599jc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5a5wx/;1610636034;4;True;False;anime;t5_2qh22;;0;[]; -[];;;woilmm;;;[];;;;text;t2_8ffdheic;False;False;[];;Is the author actually being nice to Subaru here? Or is it a foreshadowment of even more suffering? We will have to wait and see;False;False;;;;1610567054;;False;{};gj5a6ev;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5a6ev/;1610636043;2;True;False;anime;t5_2qh22;;0;[]; -[];;;polite_turtle;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/politeturtle;light;text;t2_1wnnjr;False;False;[];;That confession was amazing! Find someone who looks at you the way Subaru looks at Emilia.;False;False;;;;1610567068;;False;{};gj5a7kr;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5a7kr/;1610636067;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PurposeDevoid;;MAL;[];;http://myanimelist.net/animelist/PurposeDevoid;dark;text;t2_cuvx4;False;False;[];;"I suppose the mods... -forgot";False;False;;;;1610567079;;False;{};gj5a8fh;False;t3_kwisv4;False;True;t1_gj4jgyi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5a8fh/;1610636084;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;Unless time is a flat circle where everything has already happened;False;False;;;;1610567142;;False;{};gj5adjk;False;t3_kwisv4;False;False;t1_gj5a0m8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5adjk/;1610636182;26;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610567180;;False;{};gj5aggo;False;t3_kwisv4;False;True;t1_gj517ap;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5aggo/;1610636241;1;True;False;anime;t5_2qh22;;0;[]; -[];;;killerpk;;;[];;;;text;t2_1y6lo0d1;False;False;[];;Rem fans: YA-BE~;False;False;;;;1610567203;;False;{};gj5aiap;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5aiap/;1610636278;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hotaru1;;;[];;;;text;t2_7x9zaygm;False;False;[];;I just love what they Dane with the eyes. That is just great symbolism right there.;False;False;;;;1610567215;;False;{};gj5ajan;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ajan/;1610636298;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cerberus6320;;;[];;;;text;t2_fibli;False;False;[];;"What if the reason she has ""the witch's scent"" is because of the return by death power, instead of just something inherent to her? like, working up a sweat or something";False;False;;;;1610567217;;False;{};gj5ajgh;False;t3_kwisv4;False;False;t1_gj4zx8w;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ajgh/;1610636301;33;True;False;anime;t5_2qh22;;0;[]; -[];;;Flairtor;;;[];;;;text;t2_wb0u6;False;False;[];;I LOVE EMILIA.;False;False;;;;1610567246;;False;{};gj5altp;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5altp/;1610636346;3;True;False;anime;t5_2qh22;;0;[]; -[];;;I_Have_EYES;;;[];;;;text;t2_ascl2;False;False;[];;"Somewhat unrelated question, but still kinda relevant to the love/relationship in the episode; - -Did Emilia giving Subaru the lap pillow comfort scene actually happen in this timeline? Or did it get looped away? I always struggle figuring out what is/isn't canon as it were haha - -Edit: also, is Otto's ground dragon still alive? :( I hope so. I know it died at some point";False;False;;;;1610567276;;1610567642.0;{};gj5ao9f;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ao9f/;1610636397;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610567277;;False;{};gj5aob2;False;t3_kwisv4;False;True;t1_gj57fdi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5aob2/;1610636397;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RebelQuad;;;[];;;;text;t2_h9dpnsm;False;False;[];;The purple/pink hues at that moment were beautiful.;False;False;;;;1610567313;;False;{};gj5ar7r;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ar7r/;1610636456;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aaqrus;;;[];;;;text;t2_3plagd4o;False;False;[];;I loads me to nowhere :(;False;False;;;;1610567322;;False;{};gj5arz2;False;t3_kwisv4;False;True;t1_gj598qc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5arz2/;1610636475;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"> He would never let Subaru enter the crypt, because we thinks he's part of the witches cult because of the witches scent. - -I mean would he go searching for Emilia in the crypt and pull Subaru away from her if he finds them together? - -> Of course not, she clearly loves him. - -I meant how does Subaru kissing Emilia prove to Emilia that Subaru loves her? - -Also, I don't know that Emilia loves him either, but that's beside the point.";False;False;;;;1610567350;;1610568096.0;{};gj5aua9;False;t3_kwisv4;False;True;t1_gj58vh3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5aua9/;1610636521;1;True;False;anime;t5_2qh22;;0;[]; -[];;;atk_i;;;[];;;;text;t2_2pxgnfbx;False;False;[];;">subreddit comment faces only - -I see, didn't even know it was a special reddit feature. Explains why I see so many links ending in /#facecode on r/anime! -Thank you!";False;False;;;;1610567362;;False;{};gj5av8x;False;t3_kwisv4;False;True;t1_gj4v67m;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5av8x/;1610636539;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;"Can’t wait for the next step - ->If you don’t want to get pregnant, dodge this";False;False;;;;1610567388;;False;{};gj5axce;False;t3_kwisv4;False;False;t1_gj4kg7x;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5axce/;1610636581;734;True;False;anime;t5_2qh22;;0;[]; -[];;;uflbufl;;;[];;;;text;t2_1ofuc6en;False;False;[];;"I don't know what will happen next in story, but I hope that this is the real root, at least until the next point save.. - -Already, too many top moments happened to just leave or redo them - -Only the disappearance of Pak is upsetting(";False;False;;;;1610567393;;False;{};gj5axrf;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5axrf/;1610636589;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JohnatanWills;;;[];;;;text;t2_1mndigvh;False;False;[];;"Damn this season really is going to be just one banger episode after another huh? - -I really liked the moment at the end where Emilia blinks and you can finally see Subaru's reflection in her eyes. The symbolism here is very obvious but I like it like this since I don't want to spend hours deciphering every frame of an anime to get something like that. So it's a nice touch. - -But even aside from that the whole confession scene is absolutely amazing. And of course we can't forget the best bro/wingman Otto. His backstory kind of got overshadowed by everything else but it was still pretty good.";False;False;;;;1610567398;;False;{};gj5ay96;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ay96/;1610636600;3;True;False;anime;t5_2qh22;;0;[]; -[];;;claudiohp;;;[];;;;text;t2_hrdl1;False;False;[];;[Someone needs to edit the last scene into this video](https://www.youtube.com/watch?v=DuZP37qwzAE);False;False;;;;1610567408;;False;{};gj5az3b;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5az3b/;1610636621;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atonomic69;;;[];;;;text;t2_2mljfnkt;False;False;[];;cock;False;False;;;;1610567429;;False;{};gj5b0rx;False;t3_kwisv4;False;True;t1_gj4s3jk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5b0rx/;1610636660;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NachoForce;;;[];;;;text;t2_qpou1;False;False;[];;I love that subaru's eyes were reflecting emilia's face the whole time, and then emilia's eyes reflected subaru's face at the very end.;False;False;;;;1610567436;;False;{};gj5b1e3;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5b1e3/;1610636673;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fadasd1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/fadasd;light;text;t2_jbsu6;False;False;[];;How is this supposed to be possible? lol;False;False;;;;1610567436;;False;{};gj5b1eu;False;t3_kwisv4;False;True;t1_gj5adjk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5b1eu/;1610636674;1;True;False;anime;t5_2qh22;;0;[]; -[];;;killerpk;;;[];;;;text;t2_1y6lo0d1;False;False;[];;Ore mo;False;False;;;;1610567497;;False;{};gj5b6ij;False;t3_kwisv4;False;True;t1_gj55w19;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5b6ij/;1610636776;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tidoux;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Please watch 3-gatsu no Lion!;light;text;t2_d8vej;False;False;[];;Anime only here, wtf is that spoiler lmao. I don't want more details, this seems so out of context it's hilarious;False;False;;;;1610567499;;False;{};gj5b6no;False;t3_kwisv4;False;False;t1_gj51z59;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5b6no/;1610636779;9;True;False;anime;t5_2qh22;;0;[]; -[];;;MK_Meerkat;;;[];;;;text;t2_418evdun;False;False;[];;Why do I get the feeling there will be a reset next episode and this whole b/romance will mean nothing?;False;False;;;;1610567580;;False;{};gj5bdhm;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5bdhm/;1610636913;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DaREY297;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Marin_Karin;light;text;t2_130drh;False;False;[];;"We always knew we were the winner. - -Always knew it.";False;False;;;;1610567585;;False;{};gj5bdxh;False;t3_kwisv4;False;False;t1_gj4djlk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5bdxh/;1610636921;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Blue_Storm11;;;[];;;;text;t2_2v5lcrru;False;False;[];;">It's the same Rem and same Emilia. The only difference is how Subaru played his cards. When she treated Rem nice it still wasn't enough to survive, - -When i say its not the same Rem i am talking about from her perspective and how her feelings developed differently throughout the loops.";False;False;;;;1610567665;;False;{};gj5bki2;False;t3_kwisv4;False;False;t1_gj5a5wx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5bki2/;1610637055;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> Wait, so Patrasche was there when the doctor - -It also looked to me like him.. hmmn..";False;False;;;;1610567672;;False;{};gj5bl1p;False;t3_kwisv4;False;True;t1_gj57uss;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5bl1p/;1610637067;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Degenerate-Sama;;;[];;;;text;t2_8dx3sg9i;False;False;[];;"Read up a bit about Predestination Paradox. I'm kinda busy rn but I'll be sure to leave a detailed response when I'm free. - -In a nutshell if you travel to the past to save a friend from being killed , you see that your actions were what led to them being killed. Future is a consequence of past and past is a consequence of the future. There was never a timeline where you didn't travel to the past and hence never a timeline where your friend didn't die.";False;False;;;;1610567672;;1610567953.0;{};gj5bl24;False;t3_kwisv4;False;False;t1_gj5b1eu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5bl24/;1610637068;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Silver_1_Dont_Judge;;;[];;;;text;t2_6oi4lw4m;False;False;[];;Alright I'm sorry but I fucking loved that they threw the old OP in there, that was such a badass sequence;False;False;;;;1610567673;;False;{};gj5bl3e;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5bl3e/;1610637069;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610567723;;False;{};gj5bp6q;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5bp6q/;1610637148;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nercif;;;[];;;;text;t2_druhh;False;False;[];;ayyy hahahaha;False;False;;;;1610567726;;False;{};gj5bpf0;False;t3_kwisv4;False;False;t1_gj4kwp3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5bpf0/;1610637152;6;True;False;anime;t5_2qh22;;0;[]; -[];;;EmbarrassedLock;;;[];;;;text;t2_nxt2vze;False;False;[];;God, the fucking ending.;False;False;;;;1610567729;;False;{};gj5bpnp;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5bpnp/;1610637157;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SoMuchHatred;;;[];;;;text;t2_o15bh;False;False;[];;"The lap pillow did happen in the ""canon"" timeline, and I'm pretty sure Otto's ground dragon is alright too.";False;False;;;;1610567750;;False;{};gj5brfl;False;t3_kwisv4;False;True;t1_gj5ao9f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5brfl/;1610637191;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Riviresh;;;[];;;;text;t2_32yny6vd;False;False;[];;Honestly, same. Maybe need to rewatch the first part to get back in the feels.;False;False;;;;1610567751;;False;{};gj5brhc;False;t3_kwisv4;False;True;t1_gj4llmd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5brhc/;1610637193;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;It's a spoiler link, might not work on mobile, I'll message you.;False;False;;;;1610567802;;False;{};gj5bvo1;False;t3_kwisv4;False;True;t1_gj5arz2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5bvo1/;1610637274;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mr_Zaroc;;MAL;[];;http://myanimelist.net/animelist/mr_zaroc;dark;text;t2_d2p0j;False;False;[];;"I mean I love my cat too (not in that way though), but I am sure that he is cussing me out 99% of the time -""Fucking idiot, why did you disturbe my sleep"" -""The fuck is this cheap ass food? What do you mean you wont buy the good stuff cause I am not finishing my food? I am just looking out for you and leaving you some scraps so you may keep on living to feed me!"" -""Yo my litter box is full AGAIN, better clean this up or I will to shit on the carpte"" -""It took you way too long to let me in, I was nearly freezing to death""";False;False;;;;1610567830;;False;{};gj5bxyv;False;t3_kwisv4;False;False;t1_gj59di0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5bxyv/;1610637321;86;True;False;anime;t5_2qh22;;0;[]; -[];;;SoMuchHatred;;;[];;;;text;t2_o15bh;False;False;[];;Personally I'd be shocked if we reset at this point. The author basically never resets the really, really big moments away, like Emilia's lap pillow in Arc 2 and Rem's starting from zero in Arc 3. And it'd probably be narratively damaging to reset at this point, between Roswaal's bet and Subaru's promise to Satella to find a value to his life beyond Return from Death. I think he basically has to solve the Sanctuary situation this loop, so at most he'd run into trouble at the mansion but after his reset point has changed, like moving from the White Whale to the Witch Cult.;False;False;;;;1610567883;;False;{};gj5c2ia;False;t3_kwisv4;False;False;t1_gj5bdhm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5c2ia/;1610637407;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Aaqrus;;;[];;;;text;t2_3plagd4o;False;False;[];;yep it loads me on my pc but there is an empty page (not found) poping;False;False;;;;1610567896;;False;{};gj5c3lf;False;t3_kwisv4;False;True;t1_gj5bvo1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5c3lf/;1610637427;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OniiChanStopNotThere;;;[];;;;text;t2_rn5xr;False;False;[];;I forget, why did they want to delay Garfiel from speaking to Subaru in the first place?;False;False;;;;1610567927;;1610570523.0;{};gj5c64p;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5c64p/;1610637476;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptainCfo;;;[];;;;text;t2_l1kpi;False;False;[];;"He did say “when you wake up” after finally catching Otto in the forest. - -Plus this feels like *the* loop to fix things. At the very least, a checkpoint.";False;False;;;;1610567960;;False;{};gj5c8uy;False;t3_kwisv4;False;False;t1_gj540dk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5c8uy/;1610637525;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MadaraUzu;;;[];;;;text;t2_3ix08uvm;False;False;[];;"Satella used ""Aisheturu"" though which is the strongest form of love in japanese. Something which you'd say on a deathbed(like Gilbert said to Violet)";False;False;;;;1610567961;;False;{};gj5c8x7;False;t3_kwisv4;False;True;t1_gj4fe4g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5c8x7/;1610637526;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mr_Zaroc;;MAL;[];;http://myanimelist.net/animelist/mr_zaroc;dark;text;t2_d2p0j;False;False;[];;Maybe we can bribe Garfield with some ~~apples~~ **pears**?;False;False;;;;1610567967;;False;{};gj5c9do;False;t3_kwisv4;False;False;t1_gj4jihl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5c9do/;1610637535;17;True;False;anime;t5_2qh22;;0;[]; -[];;;TPRetro;;;[];;;;text;t2_rnr5i;False;False;[];;"Maybe i'm missing something but it feels like Subaru was sortof weird? He basically said ""I love you"" over and over instead of actually addressing anything Emilia actually said for 10 minutes and then it worked. Maybe I just don't get it since people are saying they found it great.";False;False;;;;1610568003;;False;{};gj5cccu;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5cccu/;1610637593;30;True;False;anime;t5_2qh22;;0;[]; -[];;;MadaraUzu;;;[];;;;text;t2_3ix08uvm;False;False;[];;Hotel? Trivago;False;False;;;;1610568008;;False;{};gj5ccto;False;t3_kwisv4;False;True;t1_gj4fwpl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ccto/;1610637602;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BeckQuillion89;;;[];;;;text;t2_11czx8;False;False;[];;It was a damn phoenix of a fire inside that dumpster;False;False;;;;1610568023;;False;{};gj5ce33;False;t3_kwisv4;False;False;t1_gj4txjc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ce33/;1610637625;3;True;False;anime;t5_2qh22;;0;[]; -[];;;battler624;;;[];;;;text;t2_dcvad;False;False;[];;I feel personally attacked -league players;False;False;;;;1610568064;;False;{};gj5chcf;False;t3_kwisv4;False;False;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5chcf/;1610637689;6;True;False;anime;t5_2qh22;;0;[]; -[];;;SuperUnhappyman;;;[];;;;text;t2_wab92;False;False;[];;"i was so scared dude was gonna die - -he might be dead but im worried about on screen deaths with the op playing";False;False;;;;1610568086;;False;{};gj5cj53;False;t3_kwisv4;False;False;t1_gj4ehq8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5cj53/;1610637726;10;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;"Yes under some physics concepts I been reading and viewing flat circle or other descriptions along those lines. Or time does not exist in some new ideas on Quantum Mechanics. - -Want to reduce your brain to mush go watch some PBS Space Time on Relativity and Quantum Mechanics or same subjects on any reliable source. -Recommend the black and white 1960 video on Frames of Reference first though. I had to watch that several times they do it in a cool way. [Link](https://www.youtube.com/watch?v=bJMYoj4hHqU)";False;False;;;;1610568092;;False;{};gj5cjn9;False;t3_kwisv4;False;True;t1_gj5adjk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5cjn9/;1610637734;1;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;No only love but love and friendship 0/10;False;False;;;;1610568102;;False;{};gj5ckfv;False;t3_kwisv4;False;False;t1_gj59ev3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ckfv/;1610637751;3;True;False;anime;t5_2qh22;;0;[]; -[];;;whimhammer;;;[];;;;text;t2_2wmb9wel;False;False;[];;This episode really reminded me of the episode where Rem made her heartfelt speech, only this time both Emilia and Subaru poured out their hearts to each other. I wonder we go next in the story after this;False;False;;;;1610568119;;False;{};gj5cltq;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5cltq/;1610637779;1;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;it's his past lol, they are just not explicit about it like a lot of other things, i don't blame you;False;False;;;;1610568121;;False;{};gj5cm0t;False;t3_kwisv4;False;False;t1_gj4tx7h;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5cm0t/;1610637782;21;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;I sometimes forget that people don't know what simp means as well.;False;False;;;;1610568130;;False;{};gj5cmr8;False;t3_kwisv4;False;False;t1_gj56sx6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5cmr8/;1610637795;16;True;False;anime;t5_2qh22;;0;[]; -[];;;REMERALDX;;;[];;;;text;t2_6meodlg5;False;False;[];;Amount of songs 2;False;False;;;;1610568140;;False;{};gj5cnk2;False;t3_kwisv4;False;False;t1_gj4oxe6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5cnk2/;1610637811;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zonca;;;[];;;;text;t2_11odu8;False;False;[];;"I thought that particular line from Subaru was him trying to be ""angry"" since that's what she said she wanted earlier. I don't think he was very serious with that.";False;False;;;;1610568159;;False;{};gj5cp4v;False;t3_kwisv4;False;False;t1_gj59w00;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5cp4v/;1610637841;4;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> I mean would he go searching for Emilia in the crypt and pull Subaru away from her if he finds them together? - -Don't forget Garfiel uses the Ryuzu clones as inter gathers so he could find out pretty quick where Emilia went, and Garfiel in a previous loop told Subaru that he wouldn't let him inside the crypt because of the miasma, the witch of envy smell. - ->I meant how does Subaru kissing Emilia prove to Emilia that Subaru loves her? - -It doesn't Subaru just took a leap of faith, that Emilia would like him enough/trust him even if Subaru lied to her, to kiss represents that. - ->I don't know that Emilia loves him either - -Do you have a reason for the people you fall in love with? For the most part I don't.";False;False;;;;1610568181;;False;{};gj5cqum;False;t3_kwisv4;False;True;t1_gj5aua9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5cqum/;1610637877;1;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"The user is wrong, Emilia does not ""love"" him that way yet, but she took the kiss as the ultimate proof that she can trust Subaru. - -But I mean come on, you don't need to be fully in love to kiss a person, not even in real life.";False;False;;;;1610568189;;False;{};gj5crk5;False;t3_kwisv4;False;True;t1_gj5aua9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5crk5/;1610637901;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JND1444;;;[];;;;text;t2_qyqcmgb;False;False;[];;Ahem.... LETS F*CKING GOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO Thats what I'm talking about l, thats what I've been waiting for WOOOOOO...;False;False;;;;1610568238;;False;{};gj5cvca;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5cvca/;1610637973;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hamzaice9;;;[];;;;text;t2_7mmi4z76;False;False;[];;"Otto more like Brotto -everyone needs one otto in life -subaru leveled up from virgin to chad im so proud of him";False;False;;;;1610568266;;False;{};gj5cxlp;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5cxlp/;1610638020;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"> Do you have a reason for the people you fall in love with? For the most part I don't. - -I'm not saying she shouldn't be in love with him, I'm saying that there's been no real indication that she *is* in love with him.";False;False;;;;1610568354;;False;{};gj5d4hr;False;t3_kwisv4;False;True;t1_gj5cqum;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5d4hr/;1610638149;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;This has the potential to be the worst reset ever, hopefully he doesn't die.;False;False;;;;1610568400;;False;{};gj5d89r;False;t3_kwisv4;False;False;t1_gj4xm14;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5d89r/;1610638222;97;True;False;anime;t5_2qh22;;0;[]; -[];;;hamzaice9;;;[];;;;text;t2_7mmi4z76;False;False;[];;Wow, thank goodness he didn’t pick up an NTR fetish;False;False;;;;1610568408;;False;{};gj5d8zl;False;t3_kwisv4;False;True;t1_gj4fb40;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5d8zl/;1610638236;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Omnibobbia;;;[];;;;text;t2_46m0j88j;False;False;[];;This was his first kiss . I know nothing else;False;False;;;;1610568516;;False;{};gj5dhic;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5dhic/;1610638399;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;This season when talking about Rem, Emilia made it pretty clear that she wanted to be Subaru's support, also on episode 2 she's talking about how great Subaru is to Frederica and Otto, so much so that Frederica and Otto jests and Emilia blushes.;False;False;;;;1610568548;;False;{};gj5dk18;False;t3_kwisv4;False;True;t1_gj5d4hr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5dk18/;1610638447;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MABfan11;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MABfan11;light;text;t2_xdlmc;False;False;[];;"> Rem fans punching in the air right now - -like Miyuki Shirogane?";False;False;;;;1610568596;;False;{};gj5dnsu;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5dnsu/;1610638521;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gamebond89;;;[];;;;text;t2_1g3oy5ey;False;False;[];;Nah that black cat had a Yee yee ass haircut. *NEG..*;False;False;;;;1610568624;;False;{};gj5dq0f;False;t3_kwisv4;False;False;t1_gj4x90g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5dq0f/;1610638562;28;True;False;anime;t5_2qh22;;0;[]; -[];;;hero_roman;;;[];;;;text;t2_4mpcxxba;False;False;[];;"Overheard near Sanctuary that same episode: - -“He got me,” Otto said referring to Chad Cat. “That f***ing Cat boomed me.” - -Otto added Chad cat to the list of people he’s training with this summer.";False;False;;;;1610568655;;False;{};gj5dsgj;False;t3_kwisv4;False;False;t1_gj4jzbq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5dsgj/;1610638609;15;True;False;anime;t5_2qh22;;0;[]; -[];;;gsdrgdgdg;;;[];;;;text;t2_98dcihnl;False;False;[];;He's confessed like 50 times now lol;False;False;;;;1610568660;;False;{};gj5dsw0;False;t3_kwisv4;False;False;t1_gj4fe4g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5dsw0/;1610638617;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MABfan11;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MABfan11;light;text;t2_xdlmc;False;False;[];;Rem coming in with those coma strats for a coma%;False;False;;;;1610568692;;False;{};gj5dvgu;False;t3_kwisv4;False;True;t1_gj4m98g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5dvgu/;1610638665;3;True;False;anime;t5_2qh22;;0;[]; -[];;;REAL_CONSENT_MATTERS;;;[];;;;text;t2_ftyr6;False;False;[];;"that actually makes sense. he would think ""i can't fight this animal. can i communicate with it?"", but then he heard the whalely voice of insanity.";False;False;;;;1610568735;;False;{};gj5dysj;False;t3_kwisv4;False;True;t1_gj59zqm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5dysj/;1610638730;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;If it resets Roswaal wins, so its not going to be the same, its win or lose.;False;False;;;;1610568839;;False;{};gj5e6x2;False;t3_kwisv4;False;True;t1_gj5bdhm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5e6x2/;1610638887;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AUO_Castoff;;;[];;;;text;t2_qjl21;False;False;[];;Poor Garf got swarmed;False;False;;;;1610568862;;False;{};gj5e8vi;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5e8vi/;1610638923;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Namisaur;;;[];;;;text;t2_gqk9r;False;False;[];;LMAO I honestly can't tell if that spoiler is real or you're messing with us. Please don't confirm.;False;False;;;;1610568878;;False;{};gj5ea79;False;t3_kwisv4;False;False;t1_gj51z59;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ea79/;1610638948;15;True;False;anime;t5_2qh22;;0;[]; -[];;;BlueRamWaifu;;;[];;;;text;t2_1bqjgtaa;False;False;[];;Best episode. Period.;False;False;;;;1610568881;;False;{};gj5eagh;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5eagh/;1610638953;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Probably not happening but I hope people appreciate the episode either way.;False;False;;;;1610568914;;False;{};gj5ed0m;False;t3_kwisv4;False;True;t1_gj591rj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ed0m/;1610639011;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;Still though, there are 10 episodes left and to finish the loop there are 2-3 days left? Something doesn't feel right;False;False;;;;1610568935;;False;{};gj5eepp;False;t3_kwisv4;False;True;t1_gj4mhq2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5eepp/;1610639040;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Izanaginookami10;;MAL;[];;http://myanimelist.net/profile/Izanaginookami;dark;text;t2_opbh3;False;False;[];;"I don't even know how to describe the feeling within me. Either mere words are unable to properly express them, or my vocabulary is lacking. I think it's the latter, but really, saying it simply felt amazing in how breath taking it was is totally not enough. - -I even think it broke my brain or something: usually things seem to last like 2 minutes when you're so into it, but for some blessed reasons the opposite happened and I can swear I loved every bit of it. It's like my brain fucking accelerated or something in order to enjoy every bit of the episode as much as I could. Thank you dear brain, now if you could do this more often I'll give you some fischl. - -Lastly, gotta fucking admire our fucking best wingman Otto really, risking his life to make our boy confess. And man if that initial rejection and unwillingness from Emilia felt... really real, fresh even. Making me only more and more entranced by how Subaru continued and properly conveyed his feelings.";False;False;;;;1610568979;;False;{};gj5ei7k;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ei7k/;1610639107;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AwsomeTheGreat;;;[];;;;text;t2_3sikia78;False;False;[];;"_*Size of tiger Garfield < Size of Subaru’s balls this episode*_";False;False;;;;1610569092;;False;{};gj5er4q;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5er4q/;1610639281;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dylangillian;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/dylangillian;light;text;t2_14buwl;False;False;[];;I love how Emillia's eyes were constantly kind of clouded over until the last shot of her eyes where you can see subaru as a reflection in her eyes just like Subaru's eyes constantly had the reflection of Emillia in them as they looked at eachother.;False;False;;;;1610569127;;False;{};gj5ettg;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ettg/;1610639332;4;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;That's not enough indication of romantic love. She could easily just be liking him as a friend and impressed by his actions.;False;False;;;;1610569146;;False;{};gj5evf3;False;t3_kwisv4;False;True;t1_gj5dk18;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5evf3/;1610639364;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VincentOfEngland;;;[];;;;text;t2_alo8i;False;False;[];;I also agree, this was really bizzare and has kind of ruined subaru's development for me.;False;False;;;;1610569162;;1610570065.0;{};gj5ewpt;False;t3_kwisv4;False;False;t1_gj4rgzh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ewpt/;1610639389;25;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;The friend is a die hard Re Zero fan who's consuming anything he can get from every reaction video, review video or written review. He pushed him to write this review for quite a while before he did it;False;False;;;;1610569169;;1610569519.0;{};gj5ex9z;False;t3_kwisv4;False;False;t1_gj53uzx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ex9z/;1610639400;5;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> Feel like we have been here forever - -It's a trap, literally a trap meant to put Subaru -through the grinder and lose hope and do Roswaal's biding, it even takes into account Subaru's RBD abililty, its to be expected that Subaru is stucked, like a mouse on glue.";False;False;;;;1610569181;;1610579825.0;{};gj5ey76;False;t3_kwisv4;False;True;t1_gj59cry;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ey76/;1610639416;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The_nickums;;MAL;[];;http://myanimelist.net/profile/Snakpak;dark;text;t2_9gxz1;False;False;[];;"As soon as you enter the realm of Time Travel you create a handful of paradoxes, depending on how you look at it. The moment you travel back in time, the notion of free will basically disappears for others. Since you already know what will happen, until you interact with the past which changes how they behave and causes another paradox which makes the future change. - -This only gets complicated further if you go back to a past in which you are alive. At that point you've created an infinite time loop where you never stop existing. Then if you interact with that past you create a massive paradox that removes *your own* free will. No matter what you do, it will only serve as a catalyst for your own actions as you've created an endless cycle which rapidly hits an equilibrium. - -To put it more simply, by interacting with your past self you create an infinite loop where you have no control over your actions. To someone watching it from the outside it would seem like they are watching the same movie on repeat.";False;False;;;;1610569196;;False;{};gj5ezhc;False;t3_kwisv4;False;False;t1_gj5b1eu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ezhc/;1610639439;9;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;That man will thank him latter.;False;False;;;;1610569221;;False;{};gj5f1g6;False;t3_kwisv4;False;True;t1_gj59p82;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5f1g6/;1610639477;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sheelpe;;ANI;[];;Elsas's best girl and no one can say otherwise;dark;text;t2_p91iv;False;False;[];;Hard disagree. Even people in mutual and understanding relationships will argue sometimes, it's just one of those things that are guaranteed to happen when you spend enough time with someone.;False;False;;;;1610569234;;False;{};gj5f2jl;False;t3_kwisv4;False;False;t1_gj4x7cz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5f2jl/;1610639498;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Namisaur;;;[];;;;text;t2_gqk9r;False;False;[];;Ugh. I'm preparing myself for the potential death and that every development so far gets reset again...RE:ZERO relief, but plenty of suffering.;False;False;;;;1610569273;;False;{};gj5f5p9;False;t3_kwisv4;False;True;t1_gj4j0q8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5f5p9/;1610639559;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;">Otto's ground dragon still alive? - -I'm pretty sure he's fine.";False;False;;;;1610569297;;False;{};gj5f7lu;False;t3_kwisv4;False;True;t1_gj5ao9f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5f7lu/;1610639595;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UgyCauseWhyNot;;;[];;;;text;t2_68ue75z3;False;False;[];;if he dies I swear;False;False;;;;1610569368;;False;{};gj5fdg3;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5fdg3/;1610639713;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Blue_Storm11;;;[];;;;text;t2_2v5lcrru;False;False;[];;Subaru definitely poured his heart out to Rem in from zero.;False;False;;;;1610569369;;False;{};gj5fdir;False;t3_kwisv4;False;True;t1_gj5cltq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5fdir/;1610639714;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> Only the disappearance of Pak is upsetting( - -I was necessary for this moment, if Puck was around Subaru would be a popsicle by now.";False;False;;;;1610569373;;False;{};gj5fdwq;False;t3_kwisv4;False;True;t1_gj5axrf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5fdwq/;1610639722;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;Subaru calling emilia slothful is one of the funniest things ever;False;False;;;;1610569415;;False;{};gj5fhd4;False;t3_kwisv4;False;True;t1_gj4wct5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5fhd4/;1610639789;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610569420;;False;{};gj5fhsr;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5fhsr/;1610639798;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610569425;;1610569618.0;{};gj5fi64;False;t3_kwisv4;False;True;t1_gj58fda;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5fi64/;1610639804;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nikobans;;;[];;;;text;t2_23vu0oel;False;False;[];;**ABSOLUTE BEST BOY OTTO**;False;False;;;;1610569439;;False;{};gj5fjci;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5fjci/;1610639827;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Imtiredandiwanttodie;;;[];;;;text;t2_3hfp5tsx;False;False;[];;"Alpha Chadbaru already putting Emilia in her place - - -""I'm suffering for you here! At least try to look as cute as I hoped you would!"" - - -""Don't talk to me like I'm just some doll!""";False;False;;;;1610569451;;False;{};gj5fkbh;False;t3_kwisv4;False;False;t1_gj4ziwf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5fkbh/;1610639844;111;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;It's like they are slowing the old so they can bring in the new.;False;False;;;;1610569454;;False;{};gj5fkj2;False;t3_kwisv4;False;True;t1_gj5bl3e;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5fkj2/;1610639851;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Chotto_Mate;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Czoko_Moko;light;text;t2_3k3z4pl2;False;False;[];;No opening or ending this time again, huh? Guess I’ll get it in the next week, or the week after that, or never...;False;False;;;;1610569469;;False;{};gj5fls1;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5fls1/;1610639880;2;True;False;anime;t5_2qh22;;0;[]; -[];;;toutoune134;;;[];;;;text;t2_fokbo;False;False;[];;This re:zero episode is already behind the lowest ranking AoT TFS episode in term of karma after the same amount of time has passed, it's going to be difficult haha;False;False;;;;1610569495;;False;{};gj5fntk;False;t3_kwisv4;False;False;t1_gj4o1gm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5fntk/;1610639920;5;True;False;anime;t5_2qh22;;0;[]; -[];;;angramenyu;;;[];;;;text;t2_fvlydzd;False;False;[];;Huh? I believe the lap pillow (with the kiss of death) looped out as Subaru died and reset that moment. This is basically Subaru and Emilia's first kiss.;False;False;;;;1610569526;;False;{};gj5fqc2;False;t3_kwisv4;False;True;t1_gj5brfl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5fqc2/;1610639968;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;">delay Otto from speaking to Subaru in the first place? - -You mean Garfiel? So he wouldn't try to stop Subaru from entering the crypt. Since Garfiel find out about the witches smell on Subaru he doesn't want Subaru to go inside the crypt as a precaution.";False;False;;;;1610569579;;False;{};gj5fujh;False;t3_kwisv4;False;True;t1_gj5c64p;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5fujh/;1610640058;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;Ngl that was kinda weird I thought that my screen was messed up or something;False;False;;;;1610569606;;False;{};gj5fwou;False;t3_kwisv4;False;True;t1_gj4ewyy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5fwou/;1610640098;5;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;I mean she did kiss Subaru so I guess so;False;False;;;;1610569653;;False;{};gj5g0gy;False;t3_kwisv4;False;True;t1_gj4gb40;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5g0gy/;1610640170;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Indra_VS;;;[];;;;text;t2_2l67pae3;False;False;[];;Anyone knows which OST was playing during the kiss?;False;False;;;;1610569663;;False;{};gj5g1c9;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5g1c9/;1610640186;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SlapMak;;;[];;;;text;t2_ah7ueb2;False;False;[];;Can't call someone a simp if they get the girl;False;False;;;;1610569705;;False;{};gj5g4l4;False;t3_kwisv4;False;False;t1_gj4md8f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5g4l4/;1610640252;14;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;Oh boy satella will be salty af after seeing this;False;False;;;;1610569716;;False;{};gj5g5hw;False;t3_kwisv4;False;True;t1_gj4q0jm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5g5hw/;1610640268;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;It's all that he had to give to her, he needs Emilia to believe in him so they can discuss other stuff like her past, etc.;False;False;;;;1610569726;;False;{};gj5g69q;False;t3_kwisv4;False;False;t1_gj5cccu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5g69q/;1610640282;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Yuriy116;;;[];;;;text;t2_4zw79dsa;False;False;[];;"""Be wary of any man who keeps a pig farm.""";False;False;;;;1610569741;;False;{};gj5g7es;False;t3_kwisv4;False;False;t1_gj4in3u;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5g7es/;1610640303;10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610569764;;False;{};gj5g98h;False;t3_kwisv4;False;True;t1_gj5cltq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5g98h/;1610640340;1;True;False;anime;t5_2qh22;;0;[]; -[];;;goodname2203;;;[];;;;text;t2_ayyxqy6;False;False;[];;Absolutely incredible episode. One thing I'm confused on though: Why exactly do they need to keep Garfiel distracted? I'm sure it was said and I'm just dumb and missed it, but that much has had me lost.;False;False;;;;1610569788;;False;{};gj5gb23;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5gb23/;1610640378;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Norehea;;;[];;;;text;t2_a6ms8;False;False;[];;Good thing I invested when it wasn't worth much.;False;False;;;;1610569800;;False;{};gj5gbz5;False;t3_kwisv4;False;False;t1_gj4g28e;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5gbz5/;1610640395;86;False;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;I'd be sad, the song is awesome;False;False;;;;1610569815;;False;{};gj5gd6f;False;t3_kwisv4;False;True;t1_gj50ojk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5gd6f/;1610640421;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yuriy116;;;[];;;;text;t2_4zw79dsa;False;False;[];;"""No, Raphtalia, she isn't."" - -""B-but Naofumi-sama!""";False;False;;;;1610569836;;False;{};gj5gevd;False;t3_kwisv4;False;False;t1_gj4hwds;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5gevd/;1610640454;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Riviresh;;;[];;;;text;t2_32yny6vd;False;False;[];;This episode was pretty cringe ngl. Maybe I need to re-watch some part 1 , just felt out of place, made it hard to watch;False;False;;;;1610569852;;False;{};gj5gg5h;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5gg5h/;1610640478;12;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;The ability may also have a more passive state, and a focused one.;False;False;;;;1610569860;;False;{};gj5ggsi;False;t3_kwisv4;False;True;t1_gj5dysj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ggsi/;1610640492;1;True;False;anime;t5_2qh22;;0;[]; -[];;;angramenyu;;;[];;;;text;t2_fvlydzd;False;False;[];;Probably not Patrache but another ground dragon? I think Crusch gave Patrache to Subaru after they beat the white whale. I might be wrong. Don't quite remember.;False;False;;;;1610569870;;False;{};gj5ghig;False;t3_kwisv4;False;True;t1_gj5bl1p;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ghig/;1610640507;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;"I'm still a bit mad though, he better have a good reason for leaving her (probably because he doesn't have time to ""waste"" but I'm not sure)";False;False;;;;1610569902;;False;{};gj5gk1u;False;t3_kwisv4;False;True;t1_gj4h57o;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5gk1u/;1610640556;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SoMuchHatred;;;[];;;;text;t2_o15bh;False;False;[];;I believe we're actually talking about a different lap pillow scene - the one back from Arc 2 when Subaru was cracking under the pressure of trying to be perfect at the mansion. But yes, that one was reset away.;False;False;;;;1610569930;;False;{};gj5gmao;False;t3_kwisv4;False;False;t1_gj5fqc2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5gmao/;1610640599;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChornoyeSontse;;;[];;;;text;t2_8vjfuk9d;False;False;[];;But not in a cheap way.;False;False;;;;1610569991;;False;{};gj5gr8w;False;t3_kwisv4;False;False;t1_gj51zk8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5gr8w/;1610640700;86;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;That's why Subaru kinda dummy says, *If you don't want this, then dodge.* Subaru made a leap of faith, sometimes that's all it takes.;False;False;;;;1610570035;;False;{};gj5gut1;False;t3_kwisv4;False;True;t1_gj5evf3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5gut1/;1610640773;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GodOfWarNuggets64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_rmiap;False;False;[];;Otto showing how it's done. That's my boy.;False;False;;;;1610570055;;False;{};gj5gwe4;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5gwe4/;1610640804;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IXajll;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ixajii;light;text;t2_ob6j8;False;False;[];;My bad I brain farted and mixed up Satella and Echidna lol.;False;False;;;;1610570078;;False;{};gj5gy7y;False;t3_kwisv4;False;False;t1_gj50mvm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5gy7y/;1610640839;5;True;False;anime;t5_2qh22;;0;[]; -[];;;nikobans;;;[];;;;text;t2_23vu0oel;False;False;[];;THANK YOU FOR THE MEAL RE ZERO SEASON 2 PART 2 EPISODE 15 😭💕💕💕💖💖💖;False;False;;;;1610570091;;False;{};gj5gz8j;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5gz8j/;1610640857;3;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"> I break promises because I love you. Here's a list of shallow physical reasons why I love you (aka I think you're hot). Lets kiss..... eye roll. - -Did you conveniently forget him mentioning her usual traits of kindness and empathy for others? - -Rem did the same thing, aside from mentioning his positive qualities, she talked about his physical features as well.";False;True;;comment score below threshold;;1610570113;;False;{};gj5h113;False;t3_kwisv4;False;True;t1_gj50w90;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5h113/;1610640894;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;There's something more to Patrasche mark my words.;False;False;;;;1610570127;;False;{};gj5h26m;False;t3_kwisv4;False;False;t1_gj5ghig;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5h26m/;1610640919;2;True;False;anime;t5_2qh22;;0;[]; -[];;;angramenyu;;;[];;;;text;t2_fvlydzd;False;False;[];;Oh. Ok. My bad.;False;False;;;;1610570162;;False;{};gj5h4xj;False;t3_kwisv4;False;True;t1_gj5gmao;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5h4xj/;1610640970;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> I'll give you some fischl. - -wait wat?";False;False;;;;1610570182;;False;{};gj5h6im;False;t3_kwisv4;False;True;t1_gj5ei7k;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5h6im/;1610640999;1;True;False;anime;t5_2qh22;;0;[]; -[];;;D4nt3_1;;;[];;;;text;t2_5eyj249g;False;False;[];;"And that's why I love it, it doesn't become instantly full on romance, nor is it absolutely idealistic, Emilia has been really useless all through Season 1 and half of Season 2, and Subaru has to work his ass out to give her a chance to succeed but she has been waiting every chance all throughout the many loops in sanctuary, but even with all those bad things he still puts up with her; the reason why he loves her in the first place still isn't completely clear, but oh man, that relationship is getting really good";False;False;;;;1610570210;;False;{};gj5h8oj;False;t3_kwisv4;False;False;t1_gj4yvtp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5h8oj/;1610641043;29;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"[Spoiler](/s ""Rem us not coming back my friend."")";False;False;;;;1610570255;;False;{};gj5hceg;False;t3_kwisv4;False;True;t1_gj5fhsr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5hceg/;1610641112;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Probably next week.;False;False;;;;1610570278;;False;{};gj5he9s;False;t3_kwisv4;False;False;t1_gj5fls1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5he9s/;1610641150;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;People are starting to think that loving someone is the same as simping lol.;False;False;;;;1610570280;;False;{};gj5hehg;False;t3_kwisv4;False;False;t1_gj5cmr8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5hehg/;1610641154;14;True;False;anime;t5_2qh22;;0;[]; -[];;;KombatWithTheWombat;;;[];;;;text;t2_21jyfcli;False;False;[];;"i was hoping for an ""aishiteru""";False;False;;;;1610570323;;False;{};gj5hhz4;False;t3_kwisv4;False;False;t1_gj4klyd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5hhz4/;1610641219;14;True;False;anime;t5_2qh22;;0;[]; -[];;;-ValcrosS-;;;[];;;;text;t2_5j76eleg;False;False;[];;Her characterisation will make sense to you, and probably a lot more people going forward with the season. That's all I can say without spoilers from the WN;False;False;;;;1610570335;;False;{};gj5hix8;False;t3_kwisv4;False;False;t1_gj4z0so;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5hix8/;1610641236;5;True;False;anime;t5_2qh22;;0;[]; -[];;;D4nt3_1;;;[];;;;text;t2_5eyj249g;False;False;[];;Ah yes, the greatest criminal humanity has seen, suspect of human experimentation, slavery, mass murder and relationship with the Yakuza, truly a terrifying creature;False;False;;;;1610570367;;False;{};gj5hlk6;False;t3_kwisv4;False;False;t1_gj4zjuf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5hlk6/;1610641289;30;True;False;anime;t5_2qh22;;0;[]; -[];;;KombatWithTheWombat;;;[];;;;text;t2_21jyfcli;False;False;[];;it could be.... jealousy;False;False;;;;1610570375;;False;{};gj5hm5y;False;t3_kwisv4;False;False;t1_gj57m0m;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5hm5y/;1610641300;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Ambitious-Sugar6826;;;[];;;;text;t2_72kvjp6p;False;False;[];;How much karma do top animes get usually? Can someone please tell me I joined just this season. Thanks in advance;False;False;;;;1610570388;;False;{};gj5hn8o;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5hn8o/;1610641319;1;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"it shouldn't. - -Subaru's character development was perfect in this. - -He simply told her his reasoning for going so far was because he loved her, and that wasn't going to change.";False;False;;;;1610570431;;False;{};gj5hqsh;False;t3_kwisv4;False;True;t1_gj5ewpt;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5hqsh/;1610641387;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610570440;;False;{};gj5hrio;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5hrio/;1610641401;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> Why exactly do they need to keep Garfiel distracted? - -Garfiel last cour made it pretty clear that wouldn't let Subaru inside the crypt in case Subaru has ties with the Witches Cult, because of the Witch of Envy miasma.";False;False;;;;1610570443;;False;{};gj5hrqh;False;t3_kwisv4;False;True;t1_gj5gb23;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5hrqh/;1610641407;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ryuota;;;[];;;;text;t2_msrpp;False;False;[];;"Re zero is honestly at it's peak when characters just do emotional talks, it's crazy. The famous ep 18 Rem confession, when Emilia leaves Subaru in the mansion bed, the ""I return by death"" to Echidna, the entire Subaru parents episode, the Echidna reveal, the friend talk with Otto and now the re-confession. Even though I do appreciate the action, the conversations and character development is where this anime shines far brighter than any other anime imo.";False;False;;;;1610570446;;1610570687.0;{};gj5hryx;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5hryx/;1610641411;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;What made you say that?;False;False;;;;1610570462;;False;{};gj5htck;False;t3_kwisv4;False;False;t1_gj5gg5h;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5htck/;1610641437;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazerionX;;;[];;;;text;t2_d15hvpw;False;False;[];;Reminiscing season 1 ep 1;False;False;;;;1610570508;;False;{};gj5hx24;False;t3_kwisv4;False;False;t1_gj4o5x6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5hx24/;1610641507;17;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;The biggest one is AoT with 20k+ karma, Re:Zero Second with 12k+ karma;False;False;;;;1610570528;;False;{};gj5hyr1;False;t3_kwisv4;False;False;t1_gj5hn8o;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5hyr1/;1610641538;5;True;False;anime;t5_2qh22;;0;[]; -[];;;OniiChanStopNotThere;;;[];;;;text;t2_rn5xr;False;False;[];;Ah, yes, thank you.;False;False;;;;1610570539;;False;{};gj5hznc;False;t3_kwisv4;False;False;t1_gj5fujh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5hznc/;1610641554;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomXxZ;;;[];;;;text;t2_37lbelym;False;False;[];;Love is War?;False;False;;;;1610570580;;False;{};gj5i2ws;False;t3_kwisv4;False;False;t1_gj4ptek;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5i2ws/;1610641617;15;True;False;anime;t5_2qh22;;0;[]; -[];;;SpiritofSummer;;;[];;;;text;t2_yc1dn;False;False;[];;Does anyone know what the songs in this episode are?;False;False;;;;1610570606;;False;{};gj5i505;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5i505/;1610641664;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610570608;;False;{};gj5i56h;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5i56h/;1610641668;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Iwant2learnthings;;;[];;;;text;t2_88f375j6;False;False;[];;Just make sure you don't say it in Japanese;False;False;;;;1610570620;;False;{};gj5i65i;False;t3_kwisv4;False;False;t1_gj4vwfn;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5i65i/;1610641688;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Adizcool;;;[];;;;text;t2_2npt5teh;False;False;[];;"Who could have guessed that we would get to see such a messy and real, but still a great confession, and that too in Re:Zero? This episode is quite possibly my favourite of the series so far, and the confession stands head to head with Oregairu's for the best confession I have seen in anime. - -I would have been fine if the series ended here (that's a lie) but I'm so happy we actually get to see a couple after the kiss. And given by the comments of novel readers, it looks like its only uphill from here, and I cannot be more excited about it!";False;False;;;;1610570633;;False;{};gj5i761;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5i761/;1610641709;2;True;False;anime;t5_2qh22;;0;[]; -[];;;turkishmonk9;;;[];;;;text;t2_iqkx9oz;False;False;[];;this show feels 2 times better with earphones.;False;False;;;;1610570685;;False;{};gj5ib7h;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ib7h/;1610641800;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Woodypl;;;[];;;;text;t2_hz5xg;False;False;[];;"What a banger of an episode WOW. The whole sequence when the OP kicked was amazing. I also loved when Otto said ""I was given a really exciting role to play for once""";False;False;;;;1610570703;;False;{};gj5icn7;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5icn7/;1610641831;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610570777;;False;{};gj5iioy;False;t3_kwisv4;False;True;t1_gj4t5o9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5iioy/;1610641944;-37;True;False;anime;t5_2qh22;;0;[]; -[];;;Ryuota;;;[];;;;text;t2_msrpp;False;False;[];;I forgot about that, thanks for reminding me...;False;False;;;;1610570788;;False;{};gj5ijnk;False;t3_kwisv4;False;False;t1_gj4iart;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ijnk/;1610641963;3;True;False;anime;t5_2qh22;;0;[]; -[];;;turkishmonk9;;;[];;;;text;t2_iqkx9oz;False;False;[];;5k+ones are quite watchable.;False;False;;;;1610570821;;False;{};gj5ima2;False;t3_kwisv4;False;True;t1_gj5hn8o;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ima2/;1610642014;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lum_ow;;;[];;;;text;t2_3cjuziwo;False;False;[];;literally only virgins ask for consent .-. lmao u a funny guy;False;False;;;;1610570823;;False;{};gj5imgs;False;t3_kwisv4;False;False;t1_gj5iioy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5imgs/;1610642018;27;True;False;anime;t5_2qh22;;0;[]; -[];;;Accidentallygolden;;;[];;;;text;t2_5hmn2f1r;False;False;[];;So it is a new savepoint?;False;False;;;;1610570834;;False;{};gj5ind9;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ind9/;1610642035;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KyosukeAyana;;;[];;;;text;t2_839ms4z6;False;False;[];;holy shit what the fuck;False;False;;;;1610570864;;False;{};gj5ipqj;False;t3_kwisv4;False;False;t1_gj4fb40;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ipqj/;1610642080;4;True;False;anime;t5_2qh22;;0;[]; -[];;;goodname2203;;;[];;;;text;t2_ayyxqy6;False;False;[];;Ah, that makes sense. Thanks!;False;False;;;;1610570903;;False;{};gj5isw8;False;t3_kwisv4;False;True;t1_gj5hrqh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5isw8/;1610642144;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Solomon_Black;;;[];;;;text;t2_zf8hk;False;False;[];;Tbh, I really haven’t enjoyed their relationship until now. Subaru outing Emilia on a pedestal always bothered me but I just went with it. I still think he has an unhealthy obsession with her but now it’s much better cause they realize how much the other sucks in addition to loving them;False;False;;;;1610571012;;False;{};gj5j1t1;False;t3_kwisv4;False;False;t1_gj5h8oj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5j1t1/;1610642321;17;True;False;anime;t5_2qh22;;0;[]; -[];;;KyosukeAyana;;;[];;;;text;t2_839ms4z6;False;False;[];;"it's said that the sound of thunder is otto's cock getting hard - -&#x200B; - -(EDIT) yes I do regret writing this";False;False;;;;1610571029;;False;{};gj5j35h;False;t3_kwisv4;False;False;t1_gj4s3jk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5j35h/;1610642347;30;True;False;anime;t5_2qh22;;0;[]; -[];;;VincentOfEngland;;;[];;;;text;t2_alo8i;False;False;[];;"It just feels like the mutual love wasn't earned. I liked that Emilia accepted Subaru's feelings at the end of the 1st season but she still doesn't really know who Subaru *is*. Echindna and Rem have both seen Subaru at his pure and most vulnerable. - -I agree that this was a great parallel to the ""From Zero"" episode with Rem but I thought Rem was actually a parallel to Subaru's toxic love for Emilia. Rem fell in love because she had nothing else in her life, anyone could've been her hero, which makes sense for her character. But now it feels like Emilia is like that as well. - -We make such a push for her own agency through the entire season but when she addresses some valid points about the state of their relationship and how she feels about how Subaru treats her - he doesn't respond to them and he just repeats ""I love you"" repeatedly. - -I literally thought Subaru was being framed as the one in the wrong, which was so jarring as Emilia's complaints were just silenced and she willingly kissed him back. - -Up until this point Subaru had been my favourite character of all time, but the entire crux of his character relies on how he forms relationships with people. To jeapordize that by progressing his relationship with Emilia too soon just feels like a great mis-step.";False;False;;;;1610571043;;False;{};gj5j4av;False;t3_kwisv4;False;False;t1_gj5hqsh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5j4av/;1610642368;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Social_Knight;;;[];;;;text;t2_z9w1n;False;False;[];;"I mean I love Beatrice, I suppose. - -But Emilia's pretty swank I guess.";False;False;;;;1610571063;;False;{};gj5j5v9;False;t3_kwisv4;False;True;t1_gj4djlk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5j5v9/;1610642400;1;True;False;anime;t5_2qh22;;0;[]; -[];;;1raindrop;;;[];;;;text;t2_4myzszj5;False;False;[];;I still doubt my memory of this episode. Anime in general never reaches such a point midway when it comes to the relationship between the protagonist and the main love interest. I wonder if it will keep going like this or we are going to have to endure another .. reset.;False;False;;;;1610571081;;False;{};gj5j7d6;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5j7d6/;1610642430;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lum_ow;;;[];;;;text;t2_3cjuziwo;False;False;[];;based subaru;False;False;;;;1610571116;;False;{};gj5ja8x;False;t3_kwisv4;False;False;t1_gj5fkbh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ja8x/;1610642491;36;True;False;anime;t5_2qh22;;0;[]; -[];;;Riviresh;;;[];;;;text;t2_32yny6vd;False;False;[];;Like I said I need to re-watch , the conversation was unbearable maybe I'm not in the feels yet. Otto was awesome tho;False;False;;;;1610571132;;False;{};gj5jbll;False;t3_kwisv4;False;False;t1_gj5htck;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5jbll/;1610642517;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Solomon_Black;;;[];;;;text;t2_zf8hk;False;False;[];;I still vastly prefer Rem but I’ve long since accepted that she’s never going to be the main waifu. Lol;False;False;;;;1610571137;;False;{};gj5jc0b;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5jc0b/;1610642524;0;True;False;anime;t5_2qh22;;0;[]; -[];;;KyosukeAyana;;;[];;;;text;t2_839ms4z6;False;False;[];;oh yeah if you snort the mayo it's even better btw 10/10 would snort again;False;False;;;;1610571157;;False;{};gj5jdi5;False;t3_kwisv4;False;False;t1_gj4hs9r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5jdi5/;1610642552;5;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;The climax is just starting!;False;False;;;;1610571161;;False;{};gj5jdv8;False;t3_kwisv4;False;True;t1_gj5i761;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5jdv8/;1610642559;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bakakubi;;MAL;[];;http://myanimelist.net/animelist/bakakubi;dark;text;t2_a17az;False;False;[];;"Man, Otto's town is full of shit people. - -Also, I know what his little brother did when revealing his secret was not meant to be negative towards him, but damn, did I see it coming a mile away when he whined about it.";False;False;;;;1610571186;;False;{};gj5jfwe;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5jfwe/;1610642596;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ElSanju;;;[];;;;text;t2_gcz6h;False;False;[];;Emilia asked him why he doesnt listen to her and all Subaru said was he loves her and traits he likes, which, at least to me, further confirms he doesnt listen to her.;False;False;;;;1610571203;;False;{};gj5jh9b;False;t3_kwisv4;False;False;t1_gj5h113;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5jh9b/;1610642625;28;True;False;anime;t5_2qh22;;0;[]; -[];;;Stewylouis;;;[];;;;text;t2_hdkm3;False;False;[];;Pure unadulterated wholesomeness. Can Emilia please get some love now? I know she didn’t have much character development in season 1 but please give her a chance.;False;False;;;;1610571215;;False;{};gj5ji6l;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ji6l/;1610642658;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Volcalic;;;[];;;;text;t2_13r3v8;False;False;[];;How was it cringe? Lmao;False;True;;comment score below threshold;;1610571216;;1610576554.0;{};gj5ji7l;False;t3_kwisv4;False;True;t1_gj5gg5h;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ji7l/;1610642660;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Otto is a bit like a chad Subaru.;False;False;;;;1610571216;;False;{};gj5ji83;False;t3_kwisv4;False;True;t1_gj5icn7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ji83/;1610642660;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ByonKun;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_16umub;False;False;[];;Loved Otto's backstory;False;False;;;;1610571219;;False;{};gj5jihr;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5jihr/;1610642665;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NiamhHA;;;[];;;;text;t2_4iywrflx;False;False;[];;"Aww:) - -That episode went by really fast (especially by the end). I can’t believe how high quality every episode of this show is (and it’s only getting better). I’m so used to shows I like getting screwed over after the first Season. - -I’m not sure how to properly describe it, but I liked the little details in Otto’s backstory, such as the “filter” and the unclear sounds at the start. - -I was one of those people who was annoyed at the “I love Emilia” scene in Season 1 (in hindsight, after watching the Directors Cut, I’m not bothered by it now). The part with Subaru and Emilia had me feeling really emotional anyways. It was so sweet. Has anyone else noticed how likeable Subaru is now? Some people apparently didn’t like him at the start (tbf, he was acting like a “nice guy”). I always liked him, which was mostly because he was an unconventional isekai protagonist, but now I really care about him. Hehe. - -Episode 15’s are extra special in this show.";False;False;;;;1610571277;;1610576062.0;{};gj5jn4h;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5jn4h/;1610642757;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Iwant2learnthings;;;[];;;;text;t2_88f375j6;False;False;[];;"What if the animals told him that they saw the girl with *one* guy and he was going to call case closed? But then he saw the cats who aren't really ""monogamous"" and continued investigating because he realised the girl could also have multiple partners too?";False;False;;;;1610571278;;False;{};gj5jn71;False;t3_kwisv4;False;False;t1_gj55ysk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5jn71/;1610642759;22;True;False;anime;t5_2qh22;;0;[]; -[];;;KyosukeAyana;;;[];;;;text;t2_839ms4z6;False;False;[];;waaaah I wanna see my girl rem again...;False;False;;;;1610571281;;False;{};gj5jng4;False;t3_kwisv4;False;True;t1_gj4ja3z;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5jng4/;1610642764;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KyosukeAyana;;;[];;;;text;t2_839ms4z6;False;False;[];;"goddammit - -I even still laughed...";False;False;;;;1610571312;;False;{};gj5jpzh;False;t3_kwisv4;False;False;t1_gj4pe39;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5jpzh/;1610642815;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610571326;;False;{};gj5jr5z;False;t3_kwisv4;False;True;t1_gj5ind9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5jr5z/;1610642836;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KyosukeAyana;;;[];;;;text;t2_839ms4z6;False;False;[];;emphasis on incompetent.;False;False;;;;1610571355;;False;{};gj5jtc6;False;t3_kwisv4;False;False;t1_gj4z7ax;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5jtc6/;1610642880;37;True;False;anime;t5_2qh22;;0;[]; -[];;;420weedeskeetitt;;;[];;;;text;t2_3qi30g2d;False;False;[];;can anyone explain me how Ram went all super saiyan mode against garfiel all of a sudden? she dodged all of his attacks, and managed to use Al Fula instead of El Fula, how could she pull this off al of a sudden?;False;False;;;;1610571366;;1610571714.0;{};gj5ju9b;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ju9b/;1610642897;1;True;False;anime;t5_2qh22;;0;[]; -[];;;strappingyoungdad;;;[];;;;text;t2_4ljji30j;False;False;[];;"How did Garfield manage to fall into a 6 foot wide trap in the middle of a 30 foot clearing? - -I'm not getting the gist of that talk between the two too. How did Subaru address the fact that he broke a promise, that's why Emilia can't believe her?";False;False;;;;1610571405;;False;{};gj5jxfr;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5jxfr/;1610642956;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gmuni;;;[];;;;text;t2_8chs1;False;False;[];;Y'all still have an upcoming battle with Choose Me coming later this season.;False;False;;;;1610571436;;False;{};gj5jzw2;False;t3_kwisv4;False;False;t1_gj4djlk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5jzw2/;1610643000;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Stewylouis;;;[];;;;text;t2_hdkm3;False;False;[];;I want Rie and Yusuke to be together in real life.;False;False;;;;1610571465;;False;{};gj5k29l;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5k29l/;1610643042;1;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"No, your confusing yourself. - -The point was, he broke the promise he made to Emilia, he could provide various reasons for that, his entire plan to pull off to accomplish this loop in one try, etc but he can't tell her that. - -When Emilia questioned his feelings, he was completely honest to her, He loves her that's why he went out of his way to protect her multiple times.";False;True;;comment score below threshold;;1610571466;;False;{};gj5k2by;False;t3_kwisv4;False;True;t1_gj5jh9b;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5k2by/;1610643043;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> Otto's town is full of shit people - -The people seemed ok, the rich cunt is the one that fucked him.";False;False;;;;1610571475;;False;{};gj5k31g;False;t3_kwisv4;False;False;t1_gj5jfwe;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5k31g/;1610643056;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NiamhHA;;;[];;;;text;t2_4iywrflx;False;False;[];;It would look wrong out of context😂. Some guy in a tracksuit repeatedly yelling “I LOVE YOU” at a crying girl.;False;False;;;;1610571535;;False;{};gj5k7vx;False;t3_kwisv4;False;True;t1_gj4fe4g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5k7vx/;1610643147;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> but now I really care about him - -Subaru has come a long way.";False;False;;;;1610571579;;False;{};gj5kbc7;False;t3_kwisv4;False;True;t1_gj5jn4h;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5kbc7/;1610643212;2;True;False;anime;t5_2qh22;;0;[]; -[];;;coin_shot;;;[];;;;text;t2_17bh7m;False;False;[];;"Someone with such deep trauma and self worth issues is gonna take a long time to realize that love is not a calculus and it often happens for no reason at all. - -One minute you think ""oh this person is pleasant"" the next you think ""my life would be made irrevocably different without this person in it"". - -That's how Subaru sees it and why Emilia is going to have a lot of trouble seeing it.";False;False;;;;1610571637;;False;{};gj5kfx7;False;t3_kwisv4;False;False;t1_gj4gco8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5kfx7/;1610643299;5;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;And she paid the price, she start to bleed from her horn pretty bad.;False;False;;;;1610571643;;False;{};gj5kgfh;False;t3_kwisv4;False;True;t1_gj5ju9b;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5kgfh/;1610643308;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ChiggaOG;;;[];;;;text;t2_3hcondt;False;True;[];;What did it say in the Japanese novel? I'm just guessing dodge is the convenient translation regarding the context.;False;False;;;;1610571652;;False;{};gj5kh3x;False;t3_kwisv4;False;False;t1_gj4q7jo;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5kh3x/;1610643320;7;True;False;anime;t5_2qh22;;0;[]; -[];;;420weedeskeetitt;;;[];;;;text;t2_3qi30g2d;False;False;[];;the lyrics of the song are like really fitting for part 2, trying to change fate and loving yourself, hope they’ll use it at sometime!;False;False;;;;1610571668;;False;{};gj5kifp;False;t3_kwisv4;False;False;t1_gj4pcyg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5kifp/;1610643345;10;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkMasterDP;;;[];;;;text;t2_san27nz;False;False;[];;Rem got nothing on the absolutely adorable and useless piece of human/elf being that is Emilia;False;False;;;;1610571696;;False;{};gj5kkos;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5kkos/;1610643386;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KrizenWave;;;[];;;;text;t2_12vnh3;False;False;[];;Could someone please remind about what promise Subaru didn’t keep and why didn’t he do it?;False;False;;;;1610571717;;False;{};gj5kmey;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5kmey/;1610643417;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NiamhHA;;;[];;;;text;t2_4iywrflx;False;False;[];;True:);False;False;;;;1610571724;;False;{};gj5kn0w;False;t3_kwisv4;False;True;t1_gj5kbc7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5kn0w/;1610643428;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> How did Garfield manage to fall into a 6 foot wide trap in the middle of a 30 foot clearing? - -There's probably more than one trap, Otto probably asked the insects/animals for many around that area.";False;False;;;;1610571725;;False;{};gj5kn2b;False;t3_kwisv4;False;True;t1_gj5jxfr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5kn2b/;1610643428;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;Holy shit, you just killed a man here, me, after having laughted so much reading this.;False;False;;;;1610571760;;False;{};gj5kpxo;False;t3_kwisv4;False;False;t1_gj4rjsf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5kpxo/;1610643484;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Iron_Maw;;ann;[];;;dark;text;t2_xkd2v;False;False;[];;Subaru didn't say that becasue he actually thought she was useless. If she was he wouldn't have felt indebt to her multiple time and end up falling in love her. He speaking about the her now and the point he know she better than this. Subaru see himself in her and has an idea of what she going through that why say;False;False;;;;1610571789;;False;{};gj5ks8c;False;t3_kwisv4;False;False;t1_gj5h8oj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ks8c/;1610643528;23;True;False;anime;t5_2qh22;;0;[]; -[];;;ireallywantolearn;;;[];;;;text;t2_63lbxxow;False;False;[];;I´m just happy rn.;False;False;;;;1610571792;;False;{};gj5ksgp;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ksgp/;1610643531;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Arsh36160;;;[];;;;text;t2_4e6hj6ao;False;False;[];;💀;False;False;;;;1610571795;;False;{};gj5ksmy;False;t3_kwisv4;False;False;t1_gj4tmbb;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ksmy/;1610643535;9;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;They are probably already in relationships, from before Re:Zero.;False;False;;;;1610571803;;False;{};gj5ktb8;False;t3_kwisv4;False;False;t1_gj5k29l;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ktb8/;1610643549;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JusKen;;;[];;;;text;t2_9vjkj;False;False;[];;[All the Subaru/Rem shippers be like](https://i.imgur.com/5kQ2SDg.jpg);False;False;;;;1610571824;;False;{};gj5kuyk;False;t3_kwisv4;False;False;t1_gj4rbdm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5kuyk/;1610643581;16;True;False;anime;t5_2qh22;;0;[]; -[];;;KrizenWave;;;[];;;;text;t2_12vnh3;False;False;[];;Omg. I said out loud “I’m so glad Rem isn’t around to see this”. Rem deserves so much better;False;False;;;;1610571864;;False;{};gj5ky7j;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ky7j/;1610643645;0;True;False;anime;t5_2qh22;;0;[]; -[];;;coin_shot;;;[];;;;text;t2_17bh7m;False;False;[];;More like Rem fans. Rem knows full well and she'd be a second wife in a heartbeat.;False;False;;;;1610571865;;False;{};gj5ky8v;False;t3_kwisv4;False;False;t1_gj4jgyi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ky8v/;1610643646;4;True;False;anime;t5_2qh22;;0;[]; -[];;;chaotic_oz;;;[];;;;text;t2_2gif6smh;False;False;[];;So the whole part where the girl wanted to kill him, it was a misunderstanding?;False;False;;;;1610571915;;False;{};gj5l275;False;t3_kwisv4;False;True;t1_gj4ggdc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5l275/;1610643720;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Famousnr7;;;[];;;;text;t2_ted0cjk;False;False;[];;The first half of the episode was really great but the latter half with Emilia and Subaru just felt so weak. Hopefully I’ll enjoy it more after a rewatch;False;False;;;;1610571933;;1610573929.0;{};gj5l3lp;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5l3lp/;1610643746;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Swofff;;;[];;;;text;t2_2rnl5gxg;False;False;[];;Its just an insert song, the ending sounds different;False;False;;;;1610571950;;False;{};gj5l4x4;False;t3_kwisv4;False;False;t1_gj4tdbf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5l4x4/;1610643771;5;True;False;anime;t5_2qh22;;0;[]; -[];;;NapaSinitro;;;[];;;;text;t2_1ncuzeer;False;False;[];;Bruh they cut 80% of ottos fight god dammit they didn't even keep the mana pools and the monkey shit;False;False;;;;1610571984;;False;{};gj5l7ng;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5l7ng/;1610643823;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Manny but the last one was last episode when Emilia asked Subaru to stay the night and he left.;False;False;;;;1610572027;;False;{};gj5lazs;False;t3_kwisv4;False;True;t1_gj5kmey;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5lazs/;1610643888;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Randomobscurity;;;[];;;;text;t2_135fya;False;False;[];;Wow. Now you make me wonder if Otto can understand the mabeast rabbits too. Was it stated in canon if he could understand the White Whale?;False;False;;;;1610572030;;False;{};gj5lb8h;False;t3_kwisv4;False;False;t1_gj4in3u;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5lb8h/;1610643891;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Rickyaura;;;[];;;;text;t2_10p64e;False;False;[];;a pit of spiders;False;False;;;;1610572038;;False;{};gj5lbu8;False;t3_kwisv4;False;True;t1_gj4gx5f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5lbu8/;1610643903;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hollowXvictory;;MAL;[];;http://myanimelist.net/animelist/h0ll0wxvict0ry;dark;text;t2_6hn3t;False;False;[];;"Ok, the whole ""what happens in the beginning and middle doesn't matter, only the ending does"" is pretty scary right? It wouldn't surprise me if this phrase pushed Emilia into becoming Satella somehow down the line.";False;False;;;;1610572042;;False;{};gj5lc53;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5lc53/;1610643909;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NiamhHA;;;[];;;;text;t2_4iywrflx;False;False;[];;I nearly blocked those damn rabbits from my memory.;False;False;;;;1610572047;;1610572388.0;{};gj5lcjf;False;t3_kwisv4;False;False;t1_gj4in3u;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5lcjf/;1610643916;2;True;False;anime;t5_2qh22;;0;[]; -[];;;coin_shot;;;[];;;;text;t2_17bh7m;False;False;[];;Harem ending means we all win.;False;False;;;;1610572055;;False;{};gj5ld65;False;t3_kwisv4;False;True;t1_gj4djlk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ld65/;1610643928;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610572093;;False;{};gj5lg8b;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5lg8b/;1610643985;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Al-Pharazon;;;[];;;;text;t2_1s32gw1x;False;False;[];;Last episode she asked him to spent the night at her side, he said that she wasn't asking much but then went to other place leaving her alone.;False;False;;;;1610572111;;False;{};gj5lhm0;False;t3_kwisv4;False;True;t1_gj5kmey;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5lhm0/;1610644010;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Spectral2020;;;[];;;;text;t2_84n70o3g;False;False;[];;That pretty much is the correct translation with nothing intentionally meme'd.;False;False;;;;1610572131;;False;{};gj5lj8k;False;t3_kwisv4;False;False;t1_gj5kh3x;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5lj8k/;1610644042;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Puddles1103;;;[];;;;text;t2_5h356b79;False;False;[];;Holy fuck. I don't understand the characters in this show whatsoever. Is there some magical reason that later explains why Subaru cares this much about Emilia?;False;False;;;;1610572147;;False;{};gj5lkig;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5lkig/;1610644067;4;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;">It just feels like the mutual love wasn't earned - -They haven't even started being in an official relationship yet, there are a lot of feelings that need to be completely sorted out before that. - - ->I liked that Emilia accepted Subaru's feelings at the end of the 1st season but she still doesn't really know who Subaru is. Echidna and Rem have both seen Subaru at his pure and most vulnerable - -She does though, this episode is where Subaru has been the most honest he ever has been aside from episode 18 of S1. - -if you're talking about his failed loops, then that's something only echidna knows about. - ->I agree that this was a great parallel to the ""From Zero"" episode with Rem but I thought Rem was actually a parallel to Subaru's toxic love for Emilia - -not really - -Rem's obsession is unhealthy, more of that is explored in the novels, but she still accepted his shortcomings and believed in him. - - ->We make such a push for her own agency through the entire season but when she addresses some valid points about the state of their relationship and how she feels about how Subaru treats her - he doesn't respond to them and he just repeats ""I love you"" repeatedly. - -He can't tell her about the reasoning behind WHY he broke the promise because then he would have to explain everything, at the worst possible moment. - -Because of that reason too, she questioned his love for her - -and he replied honestly, that's it. - -and when she still doubted Subaru, he then told her he would make her believe it by kissing her.";False;False;;;;1610572172;;False;{};gj5lmji;False;t3_kwisv4;False;True;t1_gj5j4av;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5lmji/;1610644107;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phiwes;;;[];;;;text;t2_8dtu6;False;False;[];;I'm a dumb dumb and can't remember. What promise did subaru break?;False;False;;;;1610572224;;False;{};gj5lqpy;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5lqpy/;1610644187;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;I understand that it might not be your *cup of tea* but its an important stepping stone for what comes next;False;False;;;;1610572246;;False;{};gj5lsha;False;t3_kwisv4;False;False;t1_gj5l3lp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5lsha/;1610644221;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Volcalic;;;[];;;;text;t2_13r3v8;False;False;[];;Emilia was essentially telling Subaru that she believes he actually hates her, instead of loving her, and she couldn't understand how he never gets angry at her for everything she puts him through. So, Subaru tells her all the things wrong with her, and also everything he loves about her, so she will understand that the reason he goes through all of this suffering and believes in her is because he truly loves her.;False;False;;;;1610572269;;False;{};gj5ludg;False;t3_kwisv4;False;False;t1_gj4zval;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ludg/;1610644258;8;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Many but the last one was last episode when Emilia asked Subaru to stay the night and he left.;False;False;;;;1610572295;;False;{};gj5lwks;False;t3_kwisv4;False;True;t1_gj5lqpy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5lwks/;1610644298;3;True;False;anime;t5_2qh22;;0;[]; -[];;;J3wFro8332;;;[];;;;text;t2_55992ei;False;False;[];;"This is basically it lol it's so trashy that you just want to keep seeing how bad it can fuck up. Then the ending comes and you're like ""wow that was awful""";False;False;;;;1610572367;;False;{};gj5m2r1;False;t3_kwisv4;False;True;t1_gj4y3yd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5m2r1/;1610644415;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BrisingrSenpai;;;[];;;;text;t2_2eq629ii;False;False;[];;This is the main thing that doesnt make sense to me either. He meets her once, he sees she is a kind person, and 4 hours later, he's already fallen in love with her and is ready to die for her....? Thank god the rest of the anime makes up for it but every time the love story comes back, I just roll my eyes at how stupid it is.;False;False;;;;1610572373;;1610572645.0;{};gj5m3e0;False;t3_kwisv4;False;False;t1_gj5lkig;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5m3e0/;1610644427;24;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;He got cucked by a feckin' cat. NTR truly knows no bounds.;False;False;;;;1610572388;;False;{};gj5m4oi;False;t3_kwisv4;False;False;t1_gj4fb40;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5m4oi/;1610644455;8;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Love makes us fools ^besides ^she ^does ^look ^like ^Satella..;False;False;;;;1610572399;;False;{};gj5m5in;False;t3_kwisv4;False;True;t1_gj5lkig;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5m5in/;1610644472;1;True;False;anime;t5_2qh22;;0;[]; -[];;;senipeniytbg22;;;[];;;;text;t2_4vp3l9kt;False;False;[];;Best boy DES;False;False;;;;1610572403;;False;{};gj5m5v5;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5m5v5/;1610644479;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;I'm pretty sure that was the ED playing during the kiss.;False;False;;;;1610572427;;False;{};gj5m7tl;False;t3_kwisv4;False;False;t1_gj4oxe6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5m7tl/;1610644517;3;True;False;anime;t5_2qh22;;0;[]; -[];;;stiveooo;;;[];;;;text;t2_9amaa;False;False;[];;or FATE bugs;False;False;;;;1610572484;;False;{};gj5mcq5;False;t3_kwisv4;False;False;t1_gj4in3u;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5mcq5/;1610644615;7;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"She saved him the first loop, she is the first person that showed kindness to him in this world, when he was about to break in the mansion she was there for him to put him together, when everyone thought he knew who killed Rem in the mansion she was the only with Beatrice that trusted him, he saw her kindness to people since the first meeting episode and how she put always others over her. - -Let alone that weird connection with Satella who loves Subaru that much. - -But hey I guess that is nothing for most of you.";False;False;;;;1610572485;;False;{};gj5mcr3;False;t3_kwisv4;False;False;t1_gj5lkig;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5mcr3/;1610644615;11;True;False;anime;t5_2qh22;;0;[]; -[];;;DerivativeOfProgWeeb;;;[];;;;text;t2_3xxa36ek;False;False;[];;"no, i thought it was just him not being able to understand animals anymore cuz they were saying ""miauw""";False;False;;;;1610572504;;False;{};gj5med2;False;t3_kwisv4;False;True;t1_gj4fb40;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5med2/;1610644647;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;">""what happens in the beginning and middle doesn't matter, only the ending does"" - -If Subaru takes it literally, is mother said to remember that but don't take it literally.";False;False;;;;1610572533;;False;{};gj5mgw3;False;t3_kwisv4;False;True;t1_gj5lc53;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5mgw3/;1610644697;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phiwes;;;[];;;;text;t2_8dtu6;False;False;[];;I literally watched that like two days ago and totally missed it. Thanks!;False;False;;;;1610572544;;False;{};gj5mhpv;False;t3_kwisv4;False;True;t1_gj5lwks;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5mhpv/;1610644715;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jass624;;;[];;;;text;t2_92fxpzxf;False;False;[];;Best I can do is a clunky fighting game from bandai;False;False;;;;1610558090;;False;{};gj4pudd;False;t3_kwkwvk;False;True;t3_kwkwvk;/r/anime/comments/kwkwvk/demon_slayer_video_game/gj4pudd/;1610622921;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;There's already one in development, will be out later this year;False;False;;;;1610558143;;1610558606.0;{};gj4pyj1;False;t3_kwkwvk;False;True;t3_kwkwvk;/r/anime/comments/kwkwvk/demon_slayer_video_game/gj4pyj1/;1610622988;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Taikan_0;;;[];;;;text;t2_8h1lfels;False;False;[];;Someone made the “kill la kill” game, I think a Demon Slayer game it’s very plausible;False;False;;;;1610558313;;False;{};gj4qc2i;False;t3_kwkwvk;False;True;t3_kwkwvk;/r/anime/comments/kwkwvk/demon_slayer_video_game/gj4qc2i/;1610623197;2;True;False;anime;t5_2qh22;;0;[]; -[];;;keithohara;;;[];;;;text;t2_gbzf7q;False;True;[];;It's alot of fun that's the only way I can describe it;False;False;;;;1610558326;;False;{};gj4qd3e;False;t3_kwktdz;False;False;t3_kwktdz;/r/anime/comments/kwktdz/is_dragon_quest_the_great_adventure_of_dai_any/gj4qd3e/;1610623215;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;I'll make a decision once the ODM scenes start happening.;False;False;;;;1610558474;;False;{};gj4qow7;False;t3_kwl0tz;False;True;t3_kwl0tz;/r/anime/comments/kwl0tz/for_all_my_attack_on_titan_fans/gj4qow7/;1610623399;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610558575;moderator;False;{};gj4qwza;False;t3_kwl448;False;True;t3_kwl448;/r/anime/comments/kwl448/do_you_know_from_which_anime_this_guy_is/gj4qwza/;1610623530;1;False;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;"Stop this comparison, the fandom has reached to some top tier toxicity because of comparisons like this. Yesterday, some ""fans"" harassed ep 5 director because their choice of ost wasn't played and so many people were shitting on MAPPA just because WIT is not doing S4. - -But as an answer to your question, in my opinion MAPPA is doing a great job and so far their work is tremendous with character design looking phenomenal especially Reiner and Zeke.";False;False;;;;1610558659;;False;{};gj4r3se;False;t3_kwl0tz;False;False;t3_kwl0tz;/r/anime/comments/kwl0tz/for_all_my_attack_on_titan_fans/gj4r3se/;1610623637;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Ishuzoku-Connoisseur;;;[];;;;text;t2_65qsew7y;False;False;[];;I like both;False;False;;;;1610558748;;False;{};gj4raz2;False;t3_kwl0tz;False;True;t3_kwl0tz;/r/anime/comments/kwl0tz/for_all_my_attack_on_titan_fans/gj4raz2/;1610623750;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"A general rule of thumb for most video games based on anime is that the majority of them will probably be underwhelming asf. So, don't set your expectations too high. There are definitely some exceptions (i.e. Dragon Ball Fighterz, the ninja storm games, etc.) but for every 1 good anime game, there's 5 bad/uninspired ones like Jump Force. - -So think of something super cool like an open-world game and all the features you put in your post, scale it back a lot, and make it an area fighter/naruto ninja storm clone or a gacha game. That's probably what you're gonna end up with.";False;False;;;;1610558801;;False;{};gj4rfa3;False;t3_kwkwvk;False;True;t3_kwkwvk;/r/anime/comments/kwkwvk/demon_slayer_video_game/gj4rfa3/;1610623817;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RockoDyne;;MAL;[];;https://myanimelist.net/profile/RockoDyne;dark;text;t2_g4ooj;False;False;[];;"Eh, it was pretty flat. It wasn't terrible, but it wasn't great either. - -\*edit\* lol, downvoted for being neutral. GG guys.";False;False;;;;1610558846;;1610563631.0;{};gj4riup;False;t3_kwktdz;False;True;t3_kwktdz;/r/anime/comments/kwktdz/is_dragon_quest_the_great_adventure_of_dai_any/gj4riup/;1610623875;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Massaman95;;;[];;;;text;t2_zxb3m;False;False;[];;As a 25yo male I say its very underrated. I don't think I could binge it, but I always look forward to the next weekly episode.;False;False;;;;1610558857;;False;{};gj4rjra;False;t3_kwktdz;False;False;t3_kwktdz;/r/anime/comments/kwktdz/is_dragon_quest_the_great_adventure_of_dai_any/gj4rjra/;1610623890;5;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;"#STOOOOOOOP - -THEM BOTH ARE GOOD";False;False;;;;1610558918;;False;{};gj4rodr;False;t3_kwl0tz;False;False;t3_kwl0tz;/r/anime/comments/kwl0tz/for_all_my_attack_on_titan_fans/gj4rodr/;1610623963;5;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"I like both. I think MAPPA is great but WIT is one of my favourite studios ever and their work on Attack on Titan is incredible especially considering how demanding of a manga it is to adapt, the terrible schedules they had and the fact their a small studio. - -I think more fans need to realise how hard something like Attack on Titan is to actually animate due to the scale of everything. - -I think MAPPA has done a better job than most other anime studios could do, but to answer your question I prefer WIT by a lot.";False;False;;;;1610558973;;False;{};gj4rsw6;False;t3_kwl0tz;False;True;t3_kwl0tz;/r/anime/comments/kwl0tz/for_all_my_attack_on_titan_fans/gj4rsw6/;1610624036;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Efficent_Tomato, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610558984;moderator;False;{};gj4rtsj;False;t3_kwl9za;False;True;t3_kwl9za;/r/anime/comments/kwl9za/help_needed_suggest_me_some_easytofollow_anime/gj4rtsj/;1610624052;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Zylda;;;[];;https://myanimelist.net/profile/Zylda;;text;t2_xbww7;False;False;[];;"Sorry, your submission has been removed. - -- This doesn't appear to be about [anime per our definition](https://www.reddit.com/r/anime/wiki/rules#wiki_everything_posted_here_must_be_anime_specific). - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610559013;moderator;False;{};gj4rw29;False;t3_kwkwvk;False;True;t3_kwkwvk;/r/anime/comments/kwkwvk/demon_slayer_video_game/gj4rw29/;1610624089;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fusion_vet;;;[];;;;text;t2_5bslnqnw;False;False;[];;Yeah i was so hyped ab jump force i bought it right away but it got so boring after playing a while;False;False;;;;1610559034;;False;{};gj4rxs9;True;t3_kwkwvk;False;True;t1_gj4rfa3;/r/anime/comments/kwkwvk/demon_slayer_video_game/gj4rxs9/;1610624117;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fun-Ad-1145;;;[];;;;text;t2_7pwzgaqz;False;False;[];;"I mean, even if wit did do season 4 it'd still feel weird since it has a completely different setting and characters. - -And tbh, im a really big fan of the rough lines compared to the clean and thick outlines of wit, so im already loving Mappa's take on the visuals. - -But oh boy, I'll surely miss WIT's odm gear scenes. - -And the cgi isn't actually bad, so far i don't have that much doubts. - -Also im glad wit isn't producing aot anymore, cause if they did, then we wouldn't have gotten the absolute kino that is Great Pretender. - -Anyway, BOTH ARE GOOD!!!";False;False;;;;1610559140;;False;{};gj4s6dh;False;t3_kwl0tz;False;True;t3_kwl0tz;/r/anime/comments/kwl0tz/for_all_my_attack_on_titan_fans/gj4s6dh/;1610624255;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"For starters, find the raws of the shows you're using rather than downloading them off of the usual non-legal sites. The watermarks don't look very good and you won't be able to post any AMVs here if the watermarks remain. - -Tbh, this AMV was the equivalent of watching a PowerPoint slideshow with music in the background. Additionally, the transitions were jarring and felt like they were added for the sake of adding a transition. - -I very rarely like AMVs at all but the ones that I do like feel somewhat original. They sync up the video with the song so it feels like they belong together. Also, they utilize really good after effects to make it more than just ""an anime being played over a song.""";False;False;;;;1610559150;;False;{};gj4s76x;False;t3_kwl147;False;True;t3_kwl147;/r/anime/comments/kwl147/please_tell_me_how_can_i_improve_this_amv/gj4s76x/;1610624269;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;Can't post that link here;False;False;;;;1610559168;;False;{};gj4s8nc;False;t3_kwlamc;False;True;t3_kwlamc;/r/anime/comments/kwlamc/dragon_ball_z_movie_18_battle_of_gods/gj4s8nc/;1610624292;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gundalorian;;;[];;;;text;t2_73oujqt9;False;False;[];;Baka to test is a great one;False;False;;;;1610559206;;False;{};gj4sbrc;False;t3_kwl9za;False;True;t3_kwl9za;/r/anime/comments/kwl9za/help_needed_suggest_me_some_easytofollow_anime/gj4sbrc/;1610624342;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fun-Ad-1145;;;[];;;;text;t2_7pwzgaqz;False;False;[];;EXACTLY!!!;False;False;;;;1610559246;;False;{};gj4sex1;False;t3_kwl0tz;False;True;t1_gj4rodr;/r/anime/comments/kwl0tz/for_all_my_attack_on_titan_fans/gj4sex1/;1610624393;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dom4157;;;[];;;;text;t2_8iie87ll;False;False;[];;Have you read the manga;False;False;;;;1610559278;;False;{};gj4shgt;True;t3_kwktdz;False;True;t1_gj4rjra;/r/anime/comments/kwktdz/is_dragon_quest_the_great_adventure_of_dai_any/gj4shgt/;1610624434;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrBananaSenpai_;;;[];;;;text;t2_9fhpjb5e;False;False;[];;Thanks man i will try to improve it!;False;False;;;;1610559323;;False;{};gj4sl4k;True;t3_kwl147;False;True;t1_gj4s76x;/r/anime/comments/kwl147/please_tell_me_how_can_i_improve_this_amv/gj4sl4k/;1610624493;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Roketsu86;;;[];;;;text;t2_hwze9;False;False;[];;Looking at your post history, I think it's time for you to go away...;False;False;;;;1610559339;;False;{};gj4smfd;False;t3_kwlamc;False;True;t3_kwlamc;/r/anime/comments/kwlamc/dragon_ball_z_movie_18_battle_of_gods/gj4smfd/;1610624514;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;" -Sorry darktankz, you've activated my trap card! - -Memes are not allowed on /r/anime and we have implemented this flair to catch people who do in order to make removals quicker for us. Sorry for this inconvenience. - -[**Memes are not allowed on /r/anime, even with the meme flair!**](https://www.reddit.com/r/anime/wiki/rules#wiki_no_memes.2C_image_macros...) You might want to go to /r/animemes, /r/animememes, /r/goodanimemes or /r/anime_irl instead. - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610559426;moderator;False;{};gj4stek;False;t3_kwlfht;False;True;t3_kwlfht;/r/anime/comments/kwlfht/goku_kid_vs_mom/gj4stek/;1610624625;1;False;False;anime;t5_2qh22;;0;[]; -[];;;darktankz;;;[];;;;text;t2_9epbt0yo;False;False;[];;Aww man and I’m a real anime fan and to me this video was funny;False;False;;;;1610559486;;False;{};gj4sy8i;True;t3_kwlfht;False;True;t1_gj4stek;/r/anime/comments/kwlfht/goku_kid_vs_mom/gj4sy8i/;1610624702;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahdii-;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Mahdi89;light;text;t2_1r1bjoie;False;False;[];;Yes, and the beginning is really misleading. It gets better with each arc. Characters and Villains both get nice development through out the series.;False;False;;;;1610559655;;False;{};gj4tcv1;False;t3_kwktdz;False;True;t3_kwktdz;/r/anime/comments/kwktdz/is_dragon_quest_the_great_adventure_of_dai_any/gj4tcv1/;1610624940;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lenny_Levito;;;[];;;;text;t2_51nnms8r;False;False;[];;What anime is that from...;False;False;;;;1610559687;;False;{};gj4tfk6;False;t3_kwl147;False;True;t3_kwl147;/r/anime/comments/kwl147/please_tell_me_how_can_i_improve_this_amv/gj4tfk6/;1610624980;2;True;False;anime;t5_2qh22;;0;[]; -[];;;phillysilip;;;[];;;;text;t2_5q0btgws;False;False;[];;The movie A Silent Voice;False;False;;;;1610559865;;False;{};gj4tuca;False;t3_kwl147;False;True;t1_gj4tfk6;/r/anime/comments/kwl147/please_tell_me_how_can_i_improve_this_amv/gj4tuca/;1610625225;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Massaman95;;;[];;;;text;t2_zxb3m;False;False;[];;No;False;False;;;;1610559900;;False;{};gj4txbv;False;t3_kwktdz;False;False;t1_gj4shgt;/r/anime/comments/kwktdz/is_dragon_quest_the_great_adventure_of_dai_any/gj4txbv/;1610625273;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Sorry, your submission has been removed. - -- Direction toward specific sources of pirated content of any type is not allowed. This includes links to unofficial scanlations, streams, uploads, and download sources of any copyrighted content. It also includes direction towards specific sites offering this type of content, and watermarks mentioning such sites in uploaded images/videos. - - Discussion of piracy in general is allowed, **but naming, linking to, or hinting towards specific sources is not. Offering to send links via PM is also not allowed.** For more details, see our [full rules on illegal content](https://www.reddit.com/r/anime/wiki/rules#wiki_do_not_link_to_illegal_content). - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610559931;moderator;False;{};gj4tzx6;False;t3_kwl147;False;True;t3_kwl147;/r/anime/comments/kwl147/please_tell_me_how_can_i_improve_this_amv/gj4tzx6/;1610625315;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;I'm tired of pretty much everything that other anime fans talk about. I used to come to this sub and write for hours but I pretty much just skim it once and a while for news and any meaningful discussion and go back to actually watching anime that make me happy.;False;False;;;;1610559955;;False;{};gj4u1uq;False;t3_kwll6d;False;True;t3_kwll6d;/r/anime/comments/kwll6d/anyone_else_getting_tired_of_karma_discussion/gj4u1uq/;1610625346;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;Most of the karma discussions, popularity polls, and MAL favorites/scores talk winds up not being particularly interesting to me, but r/anime tends to love it. Such is life.;False;False;;;;1610560323;;False;{};gj4uw2q;False;t3_kwll6d;False;True;t3_kwll6d;/r/anime/comments/kwll6d/anyone_else_getting_tired_of_karma_discussion/gj4uw2q/;1610625840;2;True;False;anime;t5_2qh22;;0;[]; -[];;;danzgeturmanz;;;[];;;;text;t2_246yhsd3;False;False;[];;Isekais do better with male protagonists;False;True;;comment score below threshold;;1610560425;;False;{};gj4v4jv;False;t3_kwlscs;False;True;t3_kwlscs;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj4v4jv/;1610625979;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your submission has been removed. - -- This looks like meta content. Comments about the sub itself should be posted in the [monthly Meta Megathread](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year), which we keep an eye on all month long. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610560438;moderator;False;{};gj4v5nn;False;t3_kwll6d;False;True;t3_kwll6d;/r/anime/comments/kwll6d/anyone_else_getting_tired_of_karma_discussion/gj4v5nn/;1610625996;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;It’s just classified under isekai now.;False;False;;;;1610560442;;False;{};gj4v60b;False;t3_kwlscs;False;False;t3_kwlscs;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj4v60b/;1610626002;40;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"Funny enough most of my top isekai have been with female leads. - -Kuma Kuma Kuma Bear, Bookworm and Juuni Kokuki are all really good for me.";False;False;;;;1610560635;;False;{};gj4vm8z;False;t3_kwlscs;False;False;t1_gj4v4jv;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj4vm8z/;1610626263;5;True;False;anime;t5_2qh22;;0;[]; -[];;;punkbearrr;;;[];;;;text;t2_3yvqvguk;False;False;[];;there's a fairly new one called Kumo Desu ga, Nani Ka? pretty sure it's getting animated soon too.;False;False;;;;1610560750;;False;{};gj4vvu5;False;t3_kwlscs;False;False;t3_kwlscs;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj4vvu5/;1610626425;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"Mostly absorbed by isekai that sell better when they have a self-insert ""god I wish that were me"" male protagonist. Conveniently, this season *actually does* have one isekai where a female character is the one getting sent to another world, [LBX Girls](https://myanimelist.net/anime/36458/Soukou_Musume_Senki). - -Also [that one spider isekai](https://myanimelist.net/anime/37984/Kumo_Desu_ga_Nani_ka) since technically the character was female before being reincarnated as a spider.";False;False;;;;1610560778;;False;{};gj4vy7e;False;t3_kwlscs;False;False;t3_kwlscs;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj4vy7e/;1610626465;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal_Ebb_238;;;[];;;;text;t2_8nmkui77;False;False;[];;Spider counts?;False;False;;;;1610560786;;False;{};gj4vytd;False;t3_kwlscs;False;False;t3_kwlscs;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj4vytd/;1610626476;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Falsus;;;[];;;;text;t2_c6qmw;False;False;[];;"The best Isekai story I have red, I am a Spider, So What? also got a female lead. - -I don't really think it matters if the MC male or female but that doesn't change that many of the best ones have female MC.";False;False;;;;1610560793;;False;{};gj4vzdt;False;t3_kwlscs;False;True;t1_gj4vm8z;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj4vzdt/;1610626486;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RoyalBardoftheSun;;;[];;;;text;t2_9j68gweu;False;False;[];;Thanks, I'll check it out.;False;False;;;;1610560876;;False;{};gj4w67u;True;t3_kwlscs;False;True;t1_gj4vvu5;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj4w67u/;1610626600;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RoyalBardoftheSun;;;[];;;;text;t2_9j68gweu;False;False;[];;I had no idea there was a name for it.;False;False;;;;1610560889;;False;{};gj4w795;True;t3_kwlscs;False;True;t1_gj4v60b;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj4w795/;1610626617;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MusubiKazesaru;;;[];;;;text;t2_oh8ti;False;False;[];;"It's the same portal fantasy that we call ""isekai"" now, it's just less common that the one being sent is a girl now.";False;False;;;;1610560966;;False;{};gj4wdg7;False;t3_kwlscs;False;True;t3_kwlscs;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj4wdg7/;1610626720;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal_Ebb_238;;;[];;;;text;t2_8nmkui77;False;False;[];;It's ok for old school anime, knowing the manga, it do have few surprises here and there.;False;False;;;;1610561403;;False;{};gj4xco8;False;t3_kwktdz;False;True;t3_kwktdz;/r/anime/comments/kwktdz/is_dragon_quest_the_great_adventure_of_dai_any/gj4xco8/;1610627302;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Royal_Heritage;;;[];;;;text;t2_8wglzuge;False;False;[];;"I didn't read the manga, but watched the 90s adaptation. It adapted 10 volumes out of 37 volumes of the manga in 46 anime episodes (acording to the wiki). It was pretty good, but in hindsight it stretch out the story by quite a bit. - -The new 2020 adaptation trims all the fat and it's already adapted around half of what the 90s adaptation did in only 14 episodes so far, and it doesn't feel that it leaves any important information out. - -The series overall it's pretty great for vanilla adventure series with a demon lord that causes havoc in their world and a hero must rise in order to defeat him and his commanders. - -I have already posted several clips of the 2020 adaptation, so here's a sample of what the series looks like: - -https://streamable.com/pbgw5i - -https://streamable.com/sfbhns - -https://streamable.com/qz8il0 - -https://streamable.com/v1029k - - -These 2 are more of spoiler territory, but it also happens within the first 4 episodes of the series - -https://streamable.com/3pbdwx - -https://streamable.com/3vua6f";False;False;;;;1610561407;;False;{};gj4xczc;False;t3_kwktdz;False;True;t1_gj4shgt;/r/anime/comments/kwktdz/is_dragon_quest_the_great_adventure_of_dai_any/gj4xczc/;1610627308;2;False;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;"I think Picasso and Vermeer are both great painters, but I prefer Vermeer's classical style. - -However MAPPA and WIT are both easy on the eye and there are no cubist Titans so I have no preferences.";False;False;;;;1610561424;;False;{};gj4xeeo;False;t3_kwl0tz;False;True;t3_kwl0tz;/r/anime/comments/kwl0tz/for_all_my_attack_on_titan_fans/gj4xeeo/;1610627332;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NenBE4ST;;;[];;;;text;t2_57p0ycnd;False;False;[];;"nice way to bury discussion! no one clicks on megathreads - -edit: also cmon this doesnt even have a place in the meta thread. Its discussion aimed at users not the mods. what good will that do in a meta thread?";False;False;;;;1610561425;;False;{};gj4xehc;True;t3_kwll6d;False;True;t1_gj4v5nn;/r/anime/comments/kwll6d/anyone_else_getting_tired_of_karma_discussion/gj4xehc/;1610627333;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Common-Somewhere-746;;;[];;;;text;t2_2omnv4zf;False;False;[];;YES!;False;False;;;;1610561548;;False;{};gj4xohw;False;t3_kwm76g;False;False;t3_kwm76g;/r/anime/comments/kwm76g/is_gintama_worth_watching/gj4xohw/;1610627505;5;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;Just because you don't, doesn't mean no one does, and all meta discussion goes into that thread, this helps us keep the focus on anime. The meta thread is also the one we mods regularly check, so you're much more likely to get our attention that way.;False;False;;;;1610561551;moderator;False;{};gj4xoqp;False;t3_kwll6d;False;True;t1_gj4xehc;/r/anime/comments/kwll6d/anyone_else_getting_tired_of_karma_discussion/gj4xoqp/;1610627508;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Svenke5, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610561639;moderator;False;{};gj4xvzp;False;t3_kwm98h;False;True;t3_kwm98h;/r/anime/comments/kwm98h/what_anime_blurays_would_you_recommend_people_get/gj4xvzp/;1610627629;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610561640;moderator;False;{};gj4xw0z;False;t3_kwm98w;False;True;t3_kwm98w;/r/anime/comments/kwm98w/hi_there_i_got_a_question_for_you_all/gj4xw0z/;1610627629;0;False;False;anime;t5_2qh22;;0;[]; -[];;;Svenke5;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SvensBirds;light;text;t2_597u9;False;False;[];;Essentially I'm looking to start buying some blu rays and wonder what I could start with or any tips on avoiding bad releases.;False;False;;;;1610561694;;False;{};gj4y0cj;True;t3_kwm98h;False;True;t3_kwm98h;/r/anime/comments/kwm98h/what_anime_blurays_would_you_recommend_people_get/gj4y0cj/;1610627704;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;5th season on spring, its seasonal and a battle shonen from jump, they will finish it Dont worry;False;False;;;;1610561708;;False;{};gj4y1iu;False;t3_kwm98w;False;True;t3_kwm98w;/r/anime/comments/kwm98w/hi_there_i_got_a_question_for_you_all/gj4y1iu/;1610627724;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheVVumpus;;;[];;;;text;t2_l3u32;False;False;[];;Watching it now. It definitely gets better as it goes. On episode 25 now but I hear it doesn’t really hit its stride until 100 or so but then it’s smooth sailing.;False;False;;;;1610561708;;False;{};gj4y1jb;False;t3_kwm76g;False;True;t3_kwm76g;/r/anime/comments/kwm76g/is_gintama_worth_watching/gj4y1jb/;1610627725;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;So they turned the Danball Senki mechas into isekai title.... interesting. Might try watching it because I liked the Danball Senki series;False;False;;;;1610561748;;False;{};gj4y4sw;False;t3_kwlscs;False;True;t1_gj4vy7e;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj4y4sw/;1610627805;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Andreas260899;;;[];;;;text;t2_oonk8ga;False;False;[];;Okay thank you very much.;False;False;;;;1610561759;;False;{};gj4y5n9;True;t3_kwm98w;False;True;t1_gj4y1iu;/r/anime/comments/kwm98w/hi_there_i_got_a_question_for_you_all/gj4y5n9/;1610627824;0;True;False;anime;t5_2qh22;;0;[]; -[];;;epiccuwu;;;[];;;;text;t2_28vvtr64;False;False;[];;it has a new season coming in march i believe;False;False;;;;1610561759;;False;{};gj4y5ng;False;t3_kwm98w;False;True;t3_kwm98w;/r/anime/comments/kwm98w/hi_there_i_got_a_question_for_you_all/gj4y5ng/;1610627824;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Agreeable-Highlight;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/STARFLIGHT1111/;light;text;t2_2xajbknh;False;False;[];;"Season 5 is supposed to come out spring 2021. - -Edit: wow, i was beaten to punch.";False;False;;;;1610561769;;False;{};gj4y6h6;False;t3_kwm98w;False;True;t3_kwm98w;/r/anime/comments/kwm98w/hi_there_i_got_a_question_for_you_all/gj4y6h6/;1610627845;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Who is Deidara?;False;False;;;;1610561816;;1610562048.0;{};gj4yaft;False;t3_kwlub8;False;True;t3_kwlub8;/r/anime/comments/kwlub8/i_just_had_a_strange_idea/gj4yaft/;1610627929;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610561941;;False;{};gj4ykgp;False;t3_kwm98w;False;True;t1_gj4y6h6;/r/anime/comments/kwm98w/hi_there_i_got_a_question_for_you_all/gj4ykgp/;1610628112;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Gintama's a long journey, for most people it gets better over time but it's understandable if you aren't enjoying it early on. The first two episodes were created as a celebration for manga readers and aren't the best introduction to the series as a result, while the proper introductions begin with the third episode. - -A more serious tone gradually shows up with story arcs popping up but it always has a comedic bent even in those. - -That said, comedy's heavily subjective and if you don't find it funny, it's not going to be good for you. It took me a while to get used to the show's sense of humor but once I did, I loved it.";False;False;;;;1610561951;;False;{};gj4yl96;False;t3_kwm76g;False;False;t3_kwm76g;/r/anime/comments/kwm76g/is_gintama_worth_watching/gj4yl96/;1610628125;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Eren_Gag-Her;;;[];;;;text;t2_5aqazl1n;False;False;[];;Member of the akatsuki from naruto, he likes to blow shit up;False;False;;;;1610561952;;False;{};gj4yld6;False;t3_kwlub8;False;True;t1_gj4yaft;/r/anime/comments/kwlub8/i_just_had_a_strange_idea/gj4yld6/;1610628128;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MusubiKazesaru;;;[];;;;text;t2_oh8ti;False;False;[];;I'd say it's not worth it, considering the episode investment (I say this having seen every episode), but there's still good to be found if you get far enough in. I personally don't think it was a very funny series despite it being so heavy on the comedy and that's probably part of the issue.;False;False;;;;1610561966;;False;{};gj4ymgg;False;t3_kwm76g;False;True;t3_kwm76g;/r/anime/comments/kwm76g/is_gintama_worth_watching/gj4ymgg/;1610628148;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MusubiKazesaru;;;[];;;;text;t2_oh8ti;False;False;[];;It's curious that you have the likes of Kuma in with those two.;False;False;;;;1610562013;;False;{};gj4yq73;False;t3_kwlscs;False;False;t1_gj4vm8z;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj4yq73/;1610628215;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;That's a rather broad question and I think you'd probably be better off asking about specific series/releases if you had any in mind considering there are thousands of anime and no one's going to be able to list everything at once to get or avoid.;False;False;;;;1610562033;;False;{};gj4yrru;False;t3_kwm98h;False;False;t3_kwm98h;/r/anime/comments/kwm98h/what_anime_blurays_would_you_recommend_people_get/gj4yrru/;1610628245;5;True;False;anime;t5_2qh22;;0;[]; -[];;;TimetoDDDuel;;;[];;;;text;t2_2ljjuma0;False;False;[];;Absolutely.;False;False;;;;1610562097;;False;{};gj4yx54;False;t3_kwm76g;False;True;t3_kwm76g;/r/anime/comments/kwm76g/is_gintama_worth_watching/gj4yx54/;1610628346;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Andreas260899;;;[];;;;text;t2_oonk8ga;False;False;[];;Thank you all for answering so quickly.;False;False;;;;1610562196;;False;{};gj4z5hb;True;t3_kwm98w;False;True;t3_kwm98w;/r/anime/comments/kwm98w/hi_there_i_got_a_question_for_you_all/gj4z5hb/;1610628493;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RockoDyne;;MAL;[];;https://myanimelist.net/profile/RockoDyne;dark;text;t2_g4ooj;False;False;[];;Your actual Alice in Wonderland type stories are pretty much dead. Modern isekai really isn't the same kind of story. Most of it is either about living in an RPG world (with very little interest in escaping), or it's about subverting the terrible writing of otome games. You're not going to find a lot of the same kinds of character motivations or developments in modern isekai.;False;False;;;;1610562425;;False;{};gj4zoab;False;t3_kwlscs;False;False;t3_kwlscs;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj4zoab/;1610628842;31;True;False;anime;t5_2qh22;;0;[]; -[];;;juances19;;HB;[];;https://kitsu.io/users/juances;dark;text;t2_17a18d;False;False;[];;"Don't we have that otherworld picnic and the spider show this season? - -And last season there was kuma kuma bear, and before that haifuri or didn't I see to make my abilites average, etc. - -I feel like we got at least 1 per season just like male isekai now.";False;False;;;;1610562438;;False;{};gj4zpbc;False;t3_kwlscs;False;False;t3_kwlscs;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj4zpbc/;1610628858;7;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;It is a bit lower but I had a lot of fun with and a big part of that is due to the MC.;False;False;;;;1610562470;;False;{};gj4zrwj;False;t3_kwlscs;False;True;t1_gj4yq73;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj4zrwj/;1610628903;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610562703;;1610574903.0;{};gj50aqz;False;t3_kwl9za;False;True;t1_gj4sbrc;/r/anime/comments/kwl9za/help_needed_suggest_me_some_easytofollow_anime/gj50aqz/;1610629247;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;Ascendance of a Bookworm has a female protagonist that is sent to another World.;False;False;;;;1610562776;;False;{};gj50gph;False;t3_kwlscs;False;False;t3_kwlscs;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj50gph/;1610629349;19;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610562863;moderator;False;{};gj50no2;False;t3_kwmp0w;False;True;t3_kwmp0w;/r/anime/comments/kwmp0w/i_really_do_hate_netflix/gj50no2/;1610629472;1;False;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;The protagonist of it doesn't matter. It's fine having a preference, but you can enjoy male or female protagonist. Often times male protagonists are self inserts, whereas female characters the author actually has to make them more interesting.;False;False;;;;1610562885;;False;{};gj50pdq;False;t3_kwlscs;False;False;t1_gj4v4jv;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj50pdq/;1610629503;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;Blame licensing.;False;False;;;;1610562899;;False;{};gj50qkv;False;t3_kwmp0w;False;False;t3_kwmp0w;/r/anime/comments/kwmp0w/i_really_do_hate_netflix/gj50qkv/;1610629526;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;Even if they were real, they still wouldn’t date me;False;False;;;;1610562915;;False;{};gj50rv8;False;t3_kwmoso;False;False;t3_kwmoso;/r/anime/comments/kwmoso/serious_what_female_or_male_character_would_you/gj50rv8/;1610629548;12;True;False;anime;t5_2qh22;;0;[]; -[];;;princB612;;;[];;;;text;t2_luwcpu;False;False;[];;"Short answer: yes. - -Long answer: absofuckinglutely yes!!!";False;False;;;;1610562928;;False;{};gj50sxl;False;t3_kwm76g;False;True;t3_kwm76g;/r/anime/comments/kwm76g/is_gintama_worth_watching/gj50sxl/;1610629567;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DaScottishSkater;;;[];;;;text;t2_81ps8wi4;False;False;[];;Fuck licensing;False;False;;;;1610562929;;False;{};gj50t0m;True;t3_kwmp0w;False;False;t1_gj50qkv;/r/anime/comments/kwmp0w/i_really_do_hate_netflix/gj50t0m/;1610629568;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Though having said that, speaking broadly: - -* In my experience, a lot of companies that are Japanese-owned (e.g. Aniplex and Pony Canyon) tend to be more expensive and have limited release runs, so once something's out of print, good luck getting it. - -* [Discotek](https://www.discotekmedia.com/) puts a lot of care into their releases and focuses on older or niche anime. - -* [Sentai's](https://www.sentaifilmworks.com/) a smaller US distributor (along with Discotek) that tends to have a few new shows from each season. They also have periodic sales with great discounts. - -* In the US, [Right Stuf](https://www.rightstufanime.com/) is a good place to look in general. Like Sentai they have sale periods as well.";False;False;;;;1610563047;;False;{};gj512t8;False;t3_kwm98h;False;True;t3_kwm98h;/r/anime/comments/kwm98h/what_anime_blurays_would_you_recommend_people_get/gj512t8/;1610629745;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"You can add your url to your Anilist on here, choose this by going to the sidebar and clicking (edit) next to your username on old reddit, or under community options in new reddit. - -Sakamichi no Apollon - -ReLife - -Love Live School Idol Project - -Given (If you're okay with LGBT) - -Is The Order a Rabbit? - -Hakumei to Mikochi - -Barakamon - -Silver Spoon - -Usagi Drop - -Amaama to Inazuma";False;False;;;;1610563203;;False;{};gj51fcb;False;t3_kwl9za;False;True;t3_kwl9za;/r/anime/comments/kwl9za/help_needed_suggest_me_some_easytofollow_anime/gj51fcb/;1610629972;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610563279;;False;{};gj51lpt;False;t3_kwmoso;False;True;t3_kwmoso;/r/anime/comments/kwmoso/serious_what_female_or_male_character_would_you/gj51lpt/;1610630086;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Oldnoobman, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610563282;moderator;False;{};gj51m12;False;t3_kwmuf0;False;False;t3_kwmuf0;/r/anime/comments/kwmuf0/can_someone_recommend_something/gj51m12/;1610630091;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Agreeable-Highlight;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/STARFLIGHT1111/;light;text;t2_2xajbknh;False;False;[];;Yukihira Souma. He’s *very pretty,* has an easy going personality, and can cook? Count me in!;False;False;;;;1610563363;;False;{};gj51sqs;False;t3_kwmoso;False;False;t3_kwmoso;/r/anime/comments/kwmoso/serious_what_female_or_male_character_would_you/gj51sqs/;1610630209;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Death Note - -The Promised Neverland - -Banana Fish - -Vinland Saga - -Psycho-Pass - -Black Lagoon - -Gurren Lagann - -Re Zero Starting Life in Another World - -Mahou Shoujo Madoka Magica - -Haikyuu";False;False;;;;1610563376;;False;{};gj51tt0;False;t3_kwmuf0;False;True;t3_kwmuf0;/r/anime/comments/kwmuf0/can_someone_recommend_something/gj51tt0/;1610630227;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PopularExtreme2406;;;[];;;;text;t2_4u8hhju8;False;False;[];;Fairy Tail;False;False;;;;1610563414;;False;{};gj51wt2;False;t3_kwmuf0;False;True;t3_kwmuf0;/r/anime/comments/kwmuf0/can_someone_recommend_something/gj51wt2/;1610630280;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sremcanin;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/mrkvaa;light;text;t2_4xt3dgl2;False;False;[];;I tried getting into Gintama so many times and I always get bored, 1 episode a day is my absolute limit (im on episode 12). But the episode where they were making manga with shoulder pads had me dying;False;False;;;;1610563496;;False;{};gj523k7;False;t3_kwm76g;False;True;t3_kwm76g;/r/anime/comments/kwm76g/is_gintama_worth_watching/gj523k7/;1610630395;3;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;That's under isekai now we have had some notable recent ones like Bofuri and My Next Life as a Villainess. Male protags used to be more the standard for isekai stories but more female MCs are starting to make their way in.;False;False;;;;1610563524;;False;{};gj525tr;False;t3_kwlscs;False;True;t3_kwlscs;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj525tr/;1610630438;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610563565;;1610574884.0;{};gj52953;False;t3_kwl9za;False;True;t1_gj51fcb;/r/anime/comments/kwl9za/help_needed_suggest_me_some_easytofollow_anime/gj52953/;1610630504;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ComKom854;;;[];;;;text;t2_k7vht;False;False;[];;Dororo;False;False;;;;1610563620;;False;{};gj52dq0;False;t3_kwmuf0;False;True;t3_kwmuf0;/r/anime/comments/kwmuf0/can_someone_recommend_something/gj52dq0/;1610630589;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mobilegamegod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Aochhi;light;text;t2_pkuqf;False;False;[];;Definitely can’t agree on that. He’s probably not even in my top 500 protags.;False;False;;;;1610563766;;False;{};gj52po9;False;t3_kwmzrm;False;True;t3_kwmzrm;/r/anime/comments/kwmzrm/can_we_all_agree_on_one_thing_i_may_be_overrated/gj52po9/;1610630809;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mobilegamegod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Aochhi;light;text;t2_pkuqf;False;False;[];;"Cringe. - -Edit: I was referring to the title of the post, not the clip. Although Oregairu is plenty cringe in and of itself.";False;True;;comment score below threshold;;1610563811;;1610571689.0;{};gj52tew;False;t3_kwmp0m;False;True;t3_kwmp0m;/r/anime/comments/kwmp0m/yukinon_is_so_kkawaaiiiiii_oregairumy_youth/gj52tew/;1610630879;-25;True;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;Eh... No;False;False;;;;1610563932;;False;{};gj533ch;False;t3_kwmzrm;False;True;t3_kwmzrm;/r/anime/comments/kwmzrm/can_we_all_agree_on_one_thing_i_may_be_overrated/gj533ch/;1610631071;2;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;">Subaru as a character is probably the best Anime protagonist of all time. - -Sorry buddy, as much as I like Subaru he isn't the best protagonist of all time.";False;False;;;;1610564029;;False;{};gj53b43;False;t3_kwmzrm;False;True;t3_kwmzrm;/r/anime/comments/kwmzrm/can_we_all_agree_on_one_thing_i_may_be_overrated/gj53b43/;1610631225;2;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your submission has been removed. - -- It looks like you want to talk about anime, but don't have much to say. We don't allow short, low-effort discussion posts here, but feel free to take some time to think more about what made your watching experience stand out, and make another post when you have some more thoughts down. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610564056;moderator;False;{};gj53dag;False;t3_kwmzrm;False;True;t3_kwmzrm;/r/anime/comments/kwmzrm/can_we_all_agree_on_one_thing_i_may_be_overrated/gj53dag/;1610631272;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Megamoncha;;;[];;;;text;t2_eyueb;False;False;[];;The difference honestly does not take away from the show...;False;False;;;;1610564269;;False;{};gj53uz8;False;t3_kwl0tz;False;True;t3_kwl0tz;/r/anime/comments/kwl0tz/for_all_my_attack_on_titan_fans/gj53uz8/;1610631672;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;"non-answer but these questions come up fairly often around here, personally I'd have to doctor/mess with the source material of a series I'm looking at quite a bit to make that ship and not have it be cringe. I have to wonder if other people are the same, or maybe this ends at ""oh she's cute, I wish I was [male protagonist]!""";False;False;;;;1610564495;;False;{};gj54djg;False;t3_kwmoso;False;True;t3_kwmoso;/r/anime/comments/kwmoso/serious_what_female_or_male_character_would_you/gj54djg/;1610632008;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610564540;;False;{};gj54hac;False;t3_kwmoso;False;True;t3_kwmoso;/r/anime/comments/kwmoso/serious_what_female_or_male_character_would_you/gj54hac/;1610632074;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;It's isekai + mecha musume (AKA the robots from the original franchise turned into cute girls) which is a pretty odd combo, but I've really enjoyed the first two episodes so far.;False;False;;;;1610564634;;False;{};gj54ow6;False;t3_kwlscs;False;True;t1_gj4y4sw;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj54ow6/;1610632216;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;">Yes, I've added it in the body of text of the message. Was there any problem with the link? - -I'm sorry for the misunderstanding. I mean that's how you can add your anilist next to your reddit username. (Like how mine is for example).";False;False;;;;1610564656;;False;{};gj54qlk;False;t3_kwl9za;False;True;t1_gj52953;/r/anime/comments/kwl9za/help_needed_suggest_me_some_easytofollow_anime/gj54qlk/;1610632247;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi voos07, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610564749;moderator;False;{};gj54y3e;False;t3_kwnd8r;False;True;t3_kwnd8r;/r/anime/comments/kwnd8r/recomend_me_smth_based_of_my_mal/gj54y3e/;1610632387;1;False;False;anime;t5_2qh22;;0;[]; -[];;;abbeazale;;;[];;;;text;t2_onqaoza;False;False;[];;yuno from Mirai Nikki cus i love a crazy bitch 🥺;False;False;;;;1610564821;;False;{};gj553wt;False;t3_kwmoso;False;True;t3_kwmoso;/r/anime/comments/kwmoso/serious_what_female_or_male_character_would_you/gj553wt/;1610632498;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;OM3G466;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4ix96s6j;False;False;[];;"Yuru camp -Toradora";False;False;;;;1610564930;;False;{};gj55cpi;False;t3_kwnd8r;False;True;t3_kwnd8r;/r/anime/comments/kwnd8r/recomend_me_smth_based_of_my_mal/gj55cpi/;1610632663;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crixx93;;;[];;;;text;t2_twrpm1;False;False;[];;I recommend Chihayafuru and 3 Gatsu No Lion because you liked Fruits Basket 2019 and Haikyu;False;False;;;;1610565098;;False;{};gj55q8s;False;t3_kwnd8r;False;True;t3_kwnd8r;/r/anime/comments/kwnd8r/recomend_me_smth_based_of_my_mal/gj55q8s/;1610632914;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];; MiraJane from Fairy Tail;False;False;;;;1610565153;;False;{};gj55umf;False;t3_kwmoso;False;True;t3_kwmoso;/r/anime/comments/kwmoso/serious_what_female_or_male_character_would_you/gj55umf/;1610633001;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Gringham;;;[];;;;text;t2_2m7zq1xy;False;False;[];;Shinsekai Yori ^^;False;False;;;;1610565220;;False;{};gj5605j;False;t3_kwnd8r;False;True;t3_kwnd8r;/r/anime/comments/kwnd8r/recomend_me_smth_based_of_my_mal/gj5605j/;1610633108;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi CommissionLonely, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610565252;moderator;False;{};gj562t8;False;t3_kwnjp1;False;True;t3_kwnjp1;/r/anime/comments/kwnjp1/some_good_horrorthriller_anime_recommendations/gj562t8/;1610633158;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Gringham;;;[];;;;text;t2_2m7zq1xy;False;False;[];;Shinsekai Yori ^^;False;False;;;;1610565338;;False;{};gj569y9;False;t3_kwnd8r;False;False;t3_kwnd8r;/r/anime/comments/kwnd8r/recomend_me_smth_based_of_my_mal/gj569y9/;1610633294;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610565361;moderator;False;{};gj56bu5;False;t3_kwnl4n;False;True;t3_kwnl4n;/r/anime/comments/kwnl4n/need_help_regarding_hyouka_anime/gj56bu5/;1610633332;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Verzwei;;;[];;;;text;t2_cmzqb;False;False;[];;"In addition to what others have said, there's also: - -Kamisama Kiss (Naname ends up in the spirit realm a lot) - -Kakuriyo: Bed & Breakfast for Spirits";False;False;;;;1610565417;;False;{};gj56geb;False;t3_kwlscs;False;True;t3_kwlscs;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj56geb/;1610633416;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610565569;;1610574866.0;{};gj56suc;False;t3_kwl9za;False;True;t1_gj54qlk;/r/anime/comments/kwl9za/help_needed_suggest_me_some_easytofollow_anime/gj56suc/;1610633645;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Miidas-92;;MAL;[];;https://myanimelist.net/profile/Miidas;dark;text;t2_ja1jx;False;False;[];;"Here is 5 anime you may enjoy: - -- Monster - -- Shinsekai Yori - -- Serial Experiments Lain - -- Mononoke - -- Higurashi no naku koro ni";False;False;;;;1610565670;;False;{};gj5714f;False;t3_kwnjp1;False;True;t3_kwnjp1;/r/anime/comments/kwnjp1/some_good_horrorthriller_anime_recommendations/gj5714f/;1610633805;3;True;False;anime;t5_2qh22;;0;[]; -[];;;nosolovro;;;[];;;;text;t2_yeh3e;False;False;[];;Mnemosyne;False;False;;;;1610565763;;False;{};gj578r1;False;t3_kwnjp1;False;True;t3_kwnjp1;/r/anime/comments/kwnjp1/some_good_horrorthriller_anime_recommendations/gj578r1/;1610633953;2;True;False;anime;t5_2qh22;;0;[]; -[];;;therealchutton;;;[];;;;text;t2_fkiu1;False;False;[];;Bakemonogatari is fantastic, I saw you liked Bunny Girl Senpai and that drew inspiration from Monogatari. I will warn that on a scale of 1 to 10 Monogatari is turned up to like 13 compared to the wildness of Bunny Girl Senpai.;False;False;;;;1610565937;;False;{};gj57n9i;False;t3_kwnd8r;False;True;t3_kwnd8r;/r/anime/comments/kwnd8r/recomend_me_smth_based_of_my_mal/gj57n9i/;1610634234;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HirokoKueh;;;[];;;;text;t2_tx88sbd;False;False;[];;"also there is the ""Villainess reincarnation"" sub-genera recent years, [Hamefura](https://myanimelist.net/anime/38555/Otome_Game_no_Hametsu_Flag_shika_Nai_Akuyaku_Reijou_ni_Tensei_shiteshimatta?q=hamefura&cat=anime) is the only one got anime adaptation for now on";False;False;;;;1610565970;;False;{};gj57px1;False;t3_kwlscs;False;False;t1_gj4vy7e;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj57px1/;1610634287;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Verzwei;;;[];;;;text;t2_cmzqb;False;False;[];;"If we're talking about North American releases: - -I avoid shows distributed by Aniplex USA as they are massively overpriced for our market. While companies like Funimation and Sentai typically release ~12 episode shows for ~$46 new release and routinely go on sale, the same amount of content in an Aniplex release will often be priced at $100 or more and almost never go on any kind of appreciable sale. - -Funimation puts out a shitload of discs, and a very small percentage of them have problems. The only ones I personally know about are: - -* Sankarea - original BD used the heavily censored broadcast footage - Funi recalled this release put out a new one, so it's no longer a problem. -* Kamisama Kiss season 2 - bad encode, very low resolution - Funi never addressed it. -* Re:Zero season 1 part 1 - bad encode, banding and artifacting - Funi had a mail-in replacement program that was a total disaster. Customers had to send in their old discs, Funi mismanaged and fucked up at literally every possible step in the process, and it took some customers more than half a year to get replacements. To this day I'm not entirely sure if all the customers ever did get theirs. -* Akira remaster (new release) - apparently doesn't have HDR or something - Funi has a replacement program that at least doesn't require the customer to mail their discs back, but I have no idea if they learned anything else about improving the process from the Re:Zero farce. - -Additionally, there are a small handful of shows (Tsugumomo comes to mind) where the Funi release included mixed episodes - some of the content was from the uncensored JP BD release, while other episodes were still the censored broadcast episodes. Looking at the content, the reason why this happened is obvious - episodes that showed characters nude ""child form"" were censored broadcast, and episodes that did not contain ""child form"" nudity were the uncensored JP BD. Now, _if_ this is something that bothers you, it's worth noting that it's hard to place the blame for this. Funi's official statement is always ""we release the materials that Japan gives us."" - -While this is a very small number of releases when weighed against the multitude that Funimation pumps out every year, it's enough of a hassle that I don't bother pre-ordering Funimation BDs any more. I wait for other ~~suckers~~ customers to buy and review things and make sure there are no problems before I put an order in. And a nice side-benefit is that prices on discs tend to fall pretty fast in themed or seasonal sales, so it's fairly easy to get something marked down 25% or more from its original price even relatively soon after the release date. - -I'd also say that Funimation ""Limited Editions"" aren't worth it unless you get them on a massive sale when retailers are trying to blow out old stock. Funi LE's just... aren't very good? They had some older ones that were big and fancy and nice, but nearly all of their recent LEs (and many of their older ones) all use exactly the same size and shape of glossy chipboard box, the extras are usually inconsequential. A few art cards, or some lenticular cards, or an ""art book"" that is just thumbnail-sized versions of the eyecatches that appear in Zombie Land Saga, seriously fuck Zombie Land Saga's LE release. The on-disc content (episodes, video quality, commentary, bonus materials) will always be the same between Standard and Limited releases. - -""Premium Editions"" that come from Sentai Filmworks, on the other hand, usually _are_ worth it if you want to spend the extra cash or spot one on a good sale. With very rare exception, Sentai's Premiums are hefty, look great in a collection, come in a variety of styles, and _usually_ come with some meaningful extras. Princess Principal comes with two different full-color booklets, totaling something like 200 pages, and they're filled with lore, background info, and Japanese cast and staff interviews about the series. Even the packaging can stand out for some releases. Here's a bad quality (I didn't have my flash set correctly) [photo of Himouto Umaru-chan's ridiculously large premium box with a normal Pet Girl of Sakurasou for scale.](https://i.imgur.com/ofj6iEo.jpg) - -I've only ever bought one Sentai Premium set that I genuinely regretted, and that was Chihayafuru season 2. The extras were very few and next to worthless, and the package itself wasn't even special because it was designed to fit inside the box for the season 1 premium edition, but the standard edition of season 2 wouldn't fit into the premium edition of season 1. I got it close to new because I figured a second season of a niche show might not have a large production run and I wanted to ""complete"" the set (season 3 hadn't been announced at the time) so I overspent on the damn thing and now RightStuf and Sentai themselves mark it down to like $18 in every sale they have. - -Maiden Japan, technically a sister label to Sentai, has some nice bare-bones cheap releases. They tend to specialize in older licenses or shows that fell through the cracks. I got Joshiraku for $10 and it's easily one of the best BD purchases I've ever made. The subtitles are really well done such that virtually all the jokes (even the puns and language-heavy ones) got translated into something that still makes sense and ""works"" as a gag in English. - -TL;DR: - -* Aniplex is too expensive, they're overpriced for our market, so I don't buy any of their releases. -* Funimation Limited Editions generally aren't worth the extra cost. -* Funimation Standard Editions are good purchases, but check reviews to make sure they didn't slip out a botched or defective disc. -* Sentai Premium Editions are usually great collector's items. -* Sentai Standard Editions are perfectly fine.";False;False;;;;1610565996;;1610566263.0;{};gj57s26;False;t3_kwm98h;False;True;t3_kwm98h;/r/anime/comments/kwm98h/what_anime_blurays_would_you_recommend_people_get/gj57s26/;1610634329;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Lolololol, there are literally two “girls travel to another world” anime airing right now. Urusekai Picnic and Wonder Egg Priority;False;False;;;;1610566088;;False;{};gj57zhu;False;t3_kwlscs;False;False;t3_kwlscs;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj57zhu/;1610634476;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610566122;;False;{};gj582bc;False;t3_kwmp0m;False;True;t3_kwmp0m;/r/anime/comments/kwmp0m/yukinon_is_so_kkawaaiiiiii_oregairumy_youth/gj582bc/;1610634541;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sleepy_eyed;;;[];;;;text;t2_1coezi1s;False;False;[];;Devil my cry has an anime already.;False;False;;;;1610566461;;False;{};gj58unp;False;t3_kwnwud;False;True;t3_kwnwud;/r/anime/comments/kwnwud/to_the_gamers_what_game_deserveswould_be_a_cool_a/gj58unp/;1610635103;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;Devil may cry already has anime;False;False;;;;1610566492;;False;{};gj58x7u;False;t3_kwnwud;False;True;t3_kwnwud;/r/anime/comments/kwnwud/to_the_gamers_what_game_deserveswould_be_a_cool_a/gj58x7u/;1610635153;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;The legend of Zelda;False;False;;;;1610566502;;False;{};gj58xyb;False;t3_kwnwud;False;True;t3_kwnwud;/r/anime/comments/kwnwud/to_the_gamers_what_game_deserveswould_be_a_cool_a/gj58xyb/;1610635167;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;"Titanfall - -Legend Of Zelda - -Darkest Dungeon - -Also there is an DMC anime its just not good";False;False;;;;1610566506;;1610566693.0;{};gj58yaj;False;t3_kwnwud;False;True;t3_kwnwud;/r/anime/comments/kwnwud/to_the_gamers_what_game_deserveswould_be_a_cool_a/gj58yaj/;1610635173;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610566702;moderator;False;{};gj59dx1;False;t3_kwo1wz;False;True;t3_kwo1wz;/r/anime/comments/kwo1wz/what_is_that_one_anime_called/gj59dx1/;1610635479;1;False;False;anime;t5_2qh22;;0;[]; -[];;;EdgyWeeb69;;;[];;;;text;t2_1kqnvvzx;False;False;[];;Mass effect or the witcher i think. Those games were narrative and action rpg games.;False;False;;;;1610566721;;False;{};gj59fel;False;t3_kwnwud;False;True;t3_kwnwud;/r/anime/comments/kwnwud/to_the_gamers_what_game_deserveswould_be_a_cool_a/gj59fel/;1610635506;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610566737;moderator;False;{};gj59gse;False;t3_kwo2dg;False;True;t3_kwo2dg;/r/anime/comments/kwo2dg/does_ps4_crunchyroll_in_usa_have_hxh/gj59gse/;1610635533;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"I don't consider Otherside Picnic an isekai because the girls are able to travel between their world and the Otherside at will. Same with some VR game anime like BOFURI and (outside of the Aincrad and Alicization arcs) Sword Art Online, since they can log in and out at any time. - -To me, being an isekai anime means the character being taken to or trapped in another world *outside of their control.* Dying/reincarnating like in Konosuba or Tanya The Evil, being taken/summoned to another world like in Shield Hero or Space Jam, being trapped in a video game world and unable to log out like Overlord or the aforementioned Aincrad and Alicization arcs of SAO, being flung into a distant past/future and unable to get back to your own time like in Inuyasha or Samurai Jack, stuff like that.";False;False;;;;1610566744;;1610566992.0;{};gj59hc6;False;t3_kwlscs;False;False;t1_gj4zpbc;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj59hc6/;1610635543;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MysteriousForeteller;;;[];;;;text;t2_laeagid;False;False;[];;Kingdom Hearts with every episode being a world and ending with boss battles.;False;False;;;;1610566760;;False;{};gj59imu;False;t3_kwnwud;False;True;t3_kwnwud;/r/anime/comments/kwnwud/to_the_gamers_what_game_deserveswould_be_a_cool_a/gj59imu/;1610635567;3;True;False;anime;t5_2qh22;;0;[]; -[];;;tangoguy23;;;[];;;;text;t2_4n76yu4l;False;False;[];;Bro a legend of zelda anime would be awesome;False;False;;;;1610566781;;False;{};gj59kbv;False;t3_kwnwud;False;True;t1_gj58xyb;/r/anime/comments/kwnwud/to_the_gamers_what_game_deserveswould_be_a_cool_a/gj59kbv/;1610635599;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlitzSolwind;;;[];;;;text;t2_oetla;False;False;[];;Death Note?;False;False;;;;1610566787;;False;{};gj59kry;False;t3_kwo1wz;False;False;t3_kwo1wz;/r/anime/comments/kwo1wz/what_is_that_one_anime_called/gj59kry/;1610635609;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;[WataMote](https://myanimelist.net/anime/16742/Watashi_ga_Motenai_no_wa_Dou_Kangaetemo_Omaera_ga_Warui)'s main character has huge eyebags ig but that character's a female.;False;False;;;;1610566861;;False;{};gj59qva;False;t3_kwo1wz;False;True;t3_kwo1wz;/r/anime/comments/kwo1wz/what_is_that_one_anime_called/gj59qva/;1610635726;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610566917;;False;{};gj59vcr;False;t3_kwnwud;False;True;t3_kwnwud;/r/anime/comments/kwnwud/to_the_gamers_what_game_deserveswould_be_a_cool_a/gj59vcr/;1610635821;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"Not all VR game anime are isekai. - -BOFURI isn't an isekai since the girls can log in and out of the game at any time, and it regularly shows the characters back in the real world. But Villainess is one because Bakarina was taken to (and trapped in) the game world outside of her control and it's her new life in every way.";False;False;;;;1610566942;;False;{};gj59xf9;False;t3_kwlscs;False;False;t1_gj525tr;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj59xf9/;1610635860;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Fighttini;;;[];;;;text;t2_28bzmk06;False;False;[];;kagome travels between the world tho;False;False;;;;1610566956;;False;{};gj59yjq;False;t3_kwlscs;False;True;t1_gj59hc6;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj59yjq/;1610635887;3;True;False;anime;t5_2qh22;;0;[]; -[];;;leave1me1alone;;;[];;;;text;t2_74bvy75;False;False;[];;Theres one with a girl in a mecha airing this season but the name eludes me. 1 ep is out so far;False;False;;;;1610567003;;False;{};gj5a2b3;False;t3_kwlscs;False;True;t3_kwlscs;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj5a2b3/;1610635960;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;Himoto Umaru-Chan;False;False;;;;1610567009;;False;{};gj5a2t9;False;t3_kwl9za;False;True;t3_kwl9za;/r/anime/comments/kwl9za/help_needed_suggest_me_some_easytofollow_anime/gj5a2t9/;1610635970;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bella-09;;;[];;;;text;t2_9doc0tu1;False;False;[];;Tokyo Ghoul Season 1;False;False;;;;1610567044;;False;{};gj5a5ok;False;t3_kwo0mn;False;True;t3_kwo0mn;/r/anime/comments/kwo0mn/which_anime_end_the_final_episode_with_the_first/gj5a5ok/;1610636028;3;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Meemeli;;;[];;;;text;t2_2o1rogl;False;False;[];;That's a shame, my region has both seasons on Netflix. Have you checked other streaming services, Crunchyroll, Funimation, etc?;False;False;;;;1610567080;;False;{};gj5a8hx;False;t3_kwmp0w;False;True;t3_kwmp0w;/r/anime/comments/kwmp0w/i_really_do_hate_netflix/gj5a8hx/;1610636085;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tailor31415;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/tailor31415;light;text;t2_zr3cx;False;False;[];;Ghost of Tsushima is already a marvelous cinematic experience, it doesn't need an anime. there is Angolmois, which covers the same historical events.;False;False;;;;1610567084;;False;{};gj5a8sx;False;t3_kwnwud;False;True;t3_kwnwud;/r/anime/comments/kwnwud/to_the_gamers_what_game_deserveswould_be_a_cool_a/gj5a8sx/;1610636091;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DaScottishSkater;;;[];;;;text;t2_81ps8wi4;False;False;[];;I don’t have crunchy roll and I find the ads too annoying;False;False;;;;1610567124;;False;{};gj5ac07;True;t3_kwmp0w;False;True;t1_gj5a8hx;/r/anime/comments/kwmp0w/i_really_do_hate_netflix/gj5ac07/;1610636154;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Meemeli;;;[];;;;text;t2_2o1rogl;False;False;[];;Use an Adblocker. Ublock Origin is great.;False;False;;;;1610567173;;False;{};gj5afy4;False;t3_kwmp0w;False;True;t1_gj5ac07;/r/anime/comments/kwmp0w/i_really_do_hate_netflix/gj5afy4/;1610636230;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PikaN3rd98;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Pikanari98;light;text;t2_2avqde56;False;False;[];;I use VRV, which has all of CR's library and those shows are on there, so they should be;False;False;;;;1610567196;;False;{};gj5aht1;False;t3_kwo2dg;False;True;t3_kwo2dg;/r/anime/comments/kwo2dg/does_ps4_crunchyroll_in_usa_have_hxh/gj5aht1/;1610636269;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;But her *first* trip to the feudal era by falling into the well was outside of her control (similar to the other isekai methods I mentioned) and it took her a decent amount of time after that to figure out the way to travel back. So I still consider it an isekai.;False;False;;;;1610567199;;False;{};gj5ahzc;False;t3_kwlscs;False;True;t1_gj59yjq;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj5ahzc/;1610636272;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NightCupcake;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/NoodleGalaxy;light;text;t2_77fhp1wn;False;False;[];;It's annoying when netflix (or any other streaming service) has the first season of something and doesn't have the second. Or even more annoying, the opposite (looking at you, funimation);False;False;;;;1610567199;;False;{};gj5ai06;False;t3_kwmp0w;False;True;t3_kwmp0w;/r/anime/comments/kwmp0w/i_really_do_hate_netflix/gj5ai06/;1610636272;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RevaniteAnime;;MAL;[];;https://myanimelist.net/profile/RevaniteAnime;dark;text;t2_epon4p;False;False;[];;"If by Fullmetal Alchemist, you mean the 2003 series, then no, because Crunchyroll does not have that, if you mean Brotherhood, then yes, because Crunchyroll has that. And yes, it has HxH 2011. - -If the Crunchyroll website has the show, it'll have it on PS4.";False;False;;;;1610567231;;False;{};gj5akmv;False;t3_kwo2dg;False;True;t3_kwo2dg;/r/anime/comments/kwo2dg/does_ps4_crunchyroll_in_usa_have_hxh/gj5akmv/;1610636325;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DaScottishSkater;;;[];;;;text;t2_81ps8wi4;False;False;[];;On iOS idk if we have it :(;False;False;;;;1610567255;;False;{};gj5amio;True;t3_kwmp0w;False;True;t1_gj5afy4;/r/anime/comments/kwmp0w/i_really_do_hate_netflix/gj5amio/;1610636361;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;"Serial Experiments Lain - -Texhnolyze - -Ergo Proxy - -Boogiepop Phantom - -Haibane Renmei";False;False;;;;1610567273;;False;{};gj5ao0k;False;t3_kwnjp1;False;True;t3_kwnjp1;/r/anime/comments/kwnjp1/some_good_horrorthriller_anime_recommendations/gj5ao0k/;1610636392;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Meemeli;;;[];;;;text;t2_2o1rogl;False;False;[];;"Oh, are you watching on your phone? Then just search for ""Adblock browser"" in the app store.";False;False;;;;1610567389;;False;{};gj5axga;False;t3_kwmp0w;False;True;t1_gj5amio;/r/anime/comments/kwmp0w/i_really_do_hate_netflix/gj5axga/;1610636582;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi IcicleLin, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610567428;moderator;False;{};gj5b0qh;False;t3_kwob1u;False;True;t3_kwob1u;/r/anime/comments/kwob1u/good_romantic_comedy_anime/gj5b0qh/;1610636660;1;False;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;"AT-X ep 1 RAW is out, gotta wait for subs now. - -**Edit:** now with subs";False;False;;;;1610567461;;1610573183.0;{};gj5b3hf;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj5b3hf/;1610636711;10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610567485;;False;{};gj5b5hs;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj5b5hs/;1610636753;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi chopinanopolis, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610567531;moderator;False;{};gj5b9dj;False;t3_kwoca8;False;True;t3_kwoca8;/r/anime/comments/kwoca8/which_websiteapp_do_you_guys_recommend/gj5b9dj/;1610636835;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"Crunchyroll for subs - -Funimation for dubs";False;False;;;;1610567597;;False;{};gj5bexj;False;t3_kwoca8;False;True;t3_kwoca8;/r/anime/comments/kwoca8/which_websiteapp_do_you_guys_recommend/gj5bexj/;1610636939;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;Crunchyroll;False;False;;;;1610567629;;False;{};gj5bhj7;False;t3_kwoca8;False;False;t3_kwoca8;/r/anime/comments/kwoca8/which_websiteapp_do_you_guys_recommend/gj5bhj7/;1610636989;4;True;False;anime;t5_2qh22;;0;[]; -[];;;khalednegm777;;;[];;;;text;t2_5pabf2w6;False;False;[];;Yeah I meant brotherhood and thank you for the help;False;False;;;;1610567672;;False;{};gj5bl2a;True;t3_kwo2dg;False;True;t1_gj5akmv;/r/anime/comments/kwo2dg/does_ps4_crunchyroll_in_usa_have_hxh/gj5bl2a/;1610637068;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bobius_the_builder;;;[];;;;text;t2_3n6dcl5g;False;False;[];;Xenoblade chronicles;False;False;;;;1610567678;;False;{};gj5bli6;False;t3_kwnwud;False;True;t3_kwnwud;/r/anime/comments/kwnwud/to_the_gamers_what_game_deserveswould_be_a_cool_a/gj5bli6/;1610637075;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Etereke32;;;[];;;;text;t2_11qhl2;False;False;[];;chrono trigger and zelda pls;False;False;;;;1610567678;;False;{};gj5blkm;False;t3_kwnwud;False;True;t3_kwnwud;/r/anime/comments/kwnwud/to_the_gamers_what_game_deserveswould_be_a_cool_a/gj5blkm/;1610637077;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LittlebitofMarmalad3;;;[];;;;text;t2_58qhqbqb;False;False;[];;'Tanaka-kun is always listless' is primarily comedy, but there are crushes between characters. There are cute scenes relating to those crushes, but mostly humor, so idk if that'd count, but its out there. Haha;False;False;;;;1610567706;;False;{};gj5bnso;False;t3_kwob1u;False;True;t3_kwob1u;/r/anime/comments/kwob1u/good_romantic_comedy_anime/gj5bnso/;1610637118;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TaiChiTyree;;;[];;;;text;t2_64jvhmzv;False;False;[];;I think so, I thought season 3 took a better overall turn;False;False;;;;1610567785;;False;{};gj5bubm;False;t3_kwobhl;False;False;t3_kwobhl;/r/anime/comments/kwobhl/is_season_3_of_is_it_wrong_to_try_to_pick_up/gj5bubm/;1610637250;4;True;False;anime;t5_2qh22;;0;[]; -[];;;gsenjou;;;[];;;;text;t2_5ns6dyc;False;False;[];;Tales of Berseria. I'm actually surprised Zestiria received an adaptation when Bers is just so much better.;False;False;;;;1610567905;;False;{};gj5c4a8;False;t3_kwnwud;False;True;t3_kwnwud;/r/anime/comments/kwnwud/to_the_gamers_what_game_deserveswould_be_a_cool_a/gj5c4a8/;1610637441;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610567980;moderator;False;{};gj5cafr;False;t3_kwohvn;False;True;t3_kwohvn;/r/anime/comments/kwohvn/lgbtq_anime_suggestions/gj5cafr/;1610637556;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi moms_spaghetti1204, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610567980;moderator;False;{};gj5cahc;False;t3_kwohvn;False;True;t3_kwohvn;/r/anime/comments/kwohvn/lgbtq_anime_suggestions/gj5cahc/;1610637556;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Killerbee442;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/OGCrown_Clown;light;text;t2_i16jl;False;False;[];;"Finna pull a Uno Reverse card. - -Jump Force.";False;False;;;;1610567987;;False;{};gj5cb0t;False;t3_kwnwud;False;True;t3_kwnwud;/r/anime/comments/kwnwud/to_the_gamers_what_game_deserveswould_be_a_cool_a/gj5cb0t/;1610637567;1;True;False;anime;t5_2qh22;;0;[]; -[];;;davidyang366;;;[];;;;text;t2_11534b;False;False;[];;re:zero season 1 ep 25 ends with styx helix;False;False;;;;1610567987;;False;{};gj5cb18;False;t3_kwo0mn;False;True;t3_kwo0mn;/r/anime/comments/kwo0mn/which_anime_end_the_final_episode_with_the_first/gj5cb18/;1610637567;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Brinner17, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610568018;moderator;False;{};gj5cdoh;False;t3_kwoigl;False;False;t3_kwoigl;/r/anime/comments/kwoigl/looking_for_some_good_anime/gj5cdoh/;1610637618;1;False;False;anime;t5_2qh22;;0;[]; -[];;;ThisNameFeelsBetter;;;[];;;;text;t2_5vtxho8z;False;False;[];;I like Funimation for dubs and VRV.co for getting Crunchyroll (subs) and HIDIVE (more dubs) plus some others in one package.;False;False;;;;1610568065;;False;{};gj5chi5;False;t3_kwoca8;False;True;t3_kwoca8;/r/anime/comments/kwoca8/which_websiteapp_do_you_guys_recommend/gj5chi5/;1610637693;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;Speaking for the US only as things vary by country: I use both as they tend to split the new shows each season. Crunchyroll has most things for free a week after they become available for premium users so you don't necessarily *need* a paid subscription there.;False;False;;;;1610568069;;False;{};gj5cht9;False;t3_kwoca8;False;False;t3_kwoca8;/r/anime/comments/kwoca8/which_websiteapp_do_you_guys_recommend/gj5cht9/;1610637700;2;True;False;anime;t5_2qh22;;0;[]; -[];;;critians5;;;[];;;;text;t2_218lkj09;False;False;[];;i think season 3 is by far the best season;False;False;;;;1610568091;;False;{};gj5cjlx;False;t3_kwobhl;False;True;t3_kwobhl;/r/anime/comments/kwobhl/is_season_3_of_is_it_wrong_to_try_to_pick_up/gj5cjlx/;1610637734;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;Borderlands franchise needs an animated series anime or not. I've heard they're going to make a live action and im certain it's going to suck.;False;False;;;;1610568111;;False;{};gj5cl6f;False;t3_kwnwud;False;True;t3_kwnwud;/r/anime/comments/kwnwud/to_the_gamers_what_game_deserveswould_be_a_cool_a/gj5cl6f/;1610637764;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iamastud;;;[];;;;text;t2_7oknq6v4;False;False;[];;funi;False;False;;;;1610568158;;False;{};gj5cp1h;False;t3_kwoca8;False;True;t3_kwoca8;/r/anime/comments/kwoca8/which_websiteapp_do_you_guys_recommend/gj5cp1h/;1610637840;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PeepAndCreep;;;[];;;;text;t2_50tmyvc;False;False;[];;Vinland Saga;False;False;;;;1610568321;;False;{};gj5d1y2;False;t3_kwoigl;False;True;t3_kwoigl;/r/anime/comments/kwoigl/looking_for_some_good_anime/gj5d1y2/;1610638102;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610568472;moderator;False;{};gj5de1t;False;t3_kwooc1;False;True;t3_kwooc1;/r/anime/comments/kwooc1/is_the_fate_series_worth_watchingwhat_is_the/gj5de1t/;1610638332;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Aadi-K;;;[];;;;text;t2_4klu6o3e;False;False;[];;Monster;False;False;;;;1610568478;;False;{};gj5deiq;False;t3_kwoigl;False;True;t3_kwoigl;/r/anime/comments/kwoigl/looking_for_some_good_anime/gj5deiq/;1610638342;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rattpack18;;;[];;;;text;t2_2uahjdtr;False;False;[];;It’s not that good imo.;False;False;;;;1610568499;;False;{};gj5dg6l;False;t3_kwooc1;False;True;t3_kwooc1;/r/anime/comments/kwooc1/is_the_fate_series_worth_watchingwhat_is_the/gj5dg6l/;1610638374;1;True;False;anime;t5_2qh22;;0;[]; -[];;;padperascha;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/swappong;light;text;t2_pjclzwj;False;False;[];;Otherside Picnic and Wonder Egg Priority are airing this season.;False;False;;;;1610568517;;False;{};gj5dhjg;False;t3_kwlscs;False;True;t3_kwlscs;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj5dhjg/;1610638399;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MusubiKazesaru;;;[];;;;text;t2_oh8ti;False;False;[];;"It drags out one arc all season and I'm not sure I like that. It's basically shit that goes down as a result of sentient monsters appearing. Some of it I like, some stuff I was mixed about, some I really didn't care about. - -There were parts I didn't like about S2 as well. I still think S1 despite its own problems was the most solid season.";False;False;;;;1610568564;;False;{};gj5dlbp;False;t3_kwobhl;False;False;t3_kwobhl;/r/anime/comments/kwobhl/is_season_3_of_is_it_wrong_to_try_to_pick_up/gj5dlbp/;1610638473;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kai_texans;;;[];;;;text;t2_3a1d9qzv;False;False;[];;"you should try Death Parade - -[https://myanimelist.net/anime/28223/Death\_Parade](https://myanimelist.net/anime/28223/Death_Parade)";False;False;;;;1610568590;;False;{};gj5dnah;False;t3_kwoigl;False;True;t3_kwoigl;/r/anime/comments/kwoigl/looking_for_some_good_anime/gj5dnah/;1610638511;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;"[Fate/ series wiki entry.](https://www.reddit.com/r/anime/wiki/seriesfaq/fate) - -[/r/fatestaynight](https://www.reddit.com/r/fatestaynight/comments/df8rvo/rfatestaynights_official_viewing_order_guide_v2/)";False;False;;;;1610568590;;False;{};gj5dnb4;False;t3_kwooc1;False;True;t3_kwooc1;/r/anime/comments/kwooc1/is_the_fate_series_worth_watchingwhat_is_the/gj5dnb4/;1610638511;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;Some are pretty good.;False;False;;;;1610568602;;False;{};gj5do9l;False;t3_kwooc1;False;True;t3_kwooc1;/r/anime/comments/kwooc1/is_the_fate_series_worth_watchingwhat_is_the/gj5do9l/;1610638530;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_dsmith23;;;[];;;;text;t2_q9zbacg;False;False;[];;Shakugan No Shana. Pretty underrated series imo. Nobody talks about it these days;False;False;;;;1610568653;;1610569191.0;{};gj5dsdd;False;t3_kwo0mn;False;False;t3_kwo0mn;/r/anime/comments/kwo0mn/which_anime_end_the_final_episode_with_the_first/gj5dsdd/;1610638608;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DurumHalo;;;[];;;;text;t2_3s82a96z;False;False;[];;there are other sites you should use if you know what i mean...;False;False;;;;1610568876;;False;{};gj5e9yo;False;t3_kwoca8;False;True;t3_kwoca8;/r/anime/comments/kwoca8/which_websiteapp_do_you_guys_recommend/gj5e9yo/;1610638943;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;FireRifle64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FireRifle64;light;text;t2_29fr8mww;False;False;[];;I agree, S1 was pretty best season of the franchise. Season 2, I thought the Apollo War games would have been, I don't know, better I guess. I didn't mind the wamen trying to go after bell but I really wasn't a fan of the Ares thing towards the end.And then Season 3 got dragged so much by this one arc, with barely any emotional impact. One of the few things that I found great was the little stuff near the end of the season.;False;False;;;;1610568964;;1610569298.0;{};gj5eh15;False;t3_kwobhl;False;True;t1_gj5dlbp;/r/anime/comments/kwobhl/is_season_3_of_is_it_wrong_to_try_to_pick_up/gj5eh15/;1610639084;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"The Promised Neverland - -Death Parade - -A Silent Voice - -Anohana - -Vinland Saga - -Fullmetal Alchemist Brotherhood - -Sora yori mo Tooi Basho - -Hunter x Hunter 2011 - -Akatsuki no Yona - -Seirei no Moribito - -Spirited Away - -Howl's Moving Castle - -Wolf Children - -K-On - -Gekkan Shoujo Nozaki-kun - -Silver Spoon - -Amaama to Inazuma - -Haikyuu - -Chihayafuru - -For some different choices.";False;False;;;;1610568975;;False;{};gj5ehwj;False;t3_kwoigl;False;True;t3_kwoigl;/r/anime/comments/kwoigl/looking_for_some_good_anime/gj5ehwj/;1610639101;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Gekkan Shoujo Nozaki-kun - -I Can't Understand What My Husband is Saying - -Ore Monogatari (Not part of the Monogatari Series)";False;False;;;;1610569072;;False;{};gj5epku;False;t3_kwob1u;False;True;t3_kwob1u;/r/anime/comments/kwob1u/good_romantic_comedy_anime/gj5epku/;1610639251;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Death Note - -Death Parade - -Erased - -Shinsekai Yori - -Banana Fish - -Psycho-Pass - -Casshern Sins - -Gakkou-Gurashi - -Talentless Nana - -Please create an anime list. You can create one at either: Myanimelist.net, anilist.co, kitsu or anime-planet. All 4 are free and easy to use. - -Helps you remember what you've seen and helps us so we aren't suggesting you what you've seen already.";False;False;;;;1610569201;;False;{};gj5eztg;False;t3_kwnjp1;False;True;t3_kwnjp1;/r/anime/comments/kwnjp1/some_good_horrorthriller_anime_recommendations/gj5eztg/;1610639447;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MysticBeast1;;;[];;;;text;t2_5d22c344;False;False;[];;yes i would recommend it i liked it.;False;False;;;;1610569201;;False;{};gj5eztx;False;t3_kwovzt;False;True;t3_kwovzt;/r/anime/comments/kwovzt/is_world_trigger_worth_it/gj5eztx/;1610639447;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheStranger333;;;[];;;;text;t2_3iha7lmc;False;False;[];;I read the manga for a long time and while I like it, I will say that there’s a lot of build up for little pay off. However, I keep wanting to go back and catch up. That’s my take anyhow;False;False;;;;1610569213;;False;{};gj5f0ts;False;t3_kwovzt;False;True;t3_kwovzt;/r/anime/comments/kwovzt/is_world_trigger_worth_it/gj5f0ts/;1610639465;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MusubiKazesaru;;;[];;;;text;t2_oh8ti;False;False;[];;"There was something off about the Apollo games. They wanted it to seem really desperate and then it resolved in one quick episode. - -Likewise the second arc with the prostitutes was actually rather good but they totally backed out of the theming for the sake of keeping the new waifu pure. - -Yeah there were bits of good stuff at the end with the minotaur and for a bit we had Bell vs Ais. The stuff with that familia was awful though and they focused on the less interesting bits more than the more interesting parts. - -I think something else I don't like is that S2 quickly jumped into them having a huge house and more and more companions. I barely know who the samuai chick is and I would've been happier if it was just Hestia plus the three who got attention in S1 maybe improving their lives but not THAT much. The show is usually at its best when Bell is backed into a corner and trying to rise up and manages to do so by the skin of his teeth being a determinator. - -The big issue with adventurer vs adventurer stuff is that the level stuff maybe it obvious who has the edge and its artificial advantage. They should do away with numbers and just have them be stronger.";False;False;;;;1610569237;;1610569432.0;{};gj5f2ro;False;t3_kwobhl;False;False;t1_gj5eh15;/r/anime/comments/kwobhl/is_season_3_of_is_it_wrong_to_try_to_pick_up/gj5f2ro/;1610639502;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Equivalent_Bear_3082;;;[];;;;text;t2_948d7iwa;False;False;[];;Crunchyroll has overall the best app and video streaming site thingy but funi has a great website and it's for dubs. It's your choise, but imo if you'd go watch on your pc, do not try funi. It's not worth it;False;False;;;;1610569282;;False;{};gj5f6gu;False;t3_kwoca8;False;True;t3_kwoca8;/r/anime/comments/kwoca8/which_websiteapp_do_you_guys_recommend/gj5f6gu/;1610639573;1;True;False;anime;t5_2qh22;;0;[]; -[];;;senpai-soldier;;;[];;;;text;t2_58lmk9al;False;False;[];;I really liked it and wanted to rewatch s1 but just don't have the time. Its more than 73 eps btw;False;False;;;;1610569285;;False;{};gj5f6pa;False;t3_kwovzt;False;True;t3_kwovzt;/r/anime/comments/kwovzt/is_world_trigger_worth_it/gj5f6pa/;1610639578;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FireRifle64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FireRifle64;light;text;t2_29fr8mww;False;False;[];;Yea, I read some of the synopsis of the LNs off of wiki and managed to piece together some sort of plot a Season 4 might cover. So, here's to hoping if they do a season 4, it will be good.;False;False;;;;1610569412;;False;{};gj5fh5l;False;t3_kwobhl;False;True;t1_gj5f2ro;/r/anime/comments/kwobhl/is_season_3_of_is_it_wrong_to_try_to_pick_up/gj5fh5l/;1610639784;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MusubiKazesaru;;;[];;;;text;t2_oh8ti;False;False;[];;"I heard something about a future LN once and it sounded interesting even if I think that Ryu (who was involved with it) is a weird character. - -I'm fine with getting more Danmachi, but there's so many other anime to be made and get sequels too.";False;False;;;;1610569499;;False;{};gj5fo8g;False;t3_kwobhl;False;True;t1_gj5fh5l;/r/anime/comments/kwobhl/is_season_3_of_is_it_wrong_to_try_to_pick_up/gj5fo8g/;1610639928;0;True;False;anime;t5_2qh22;;0;[]; -[];;;EXTRA370H55V;;;[];;;;text;t2_1mlz54nl;False;False;[];;1/10;False;False;;;;1610569509;;False;{};gj5fp17;False;t3_kwozgy;False;True;t3_kwozgy;/r/anime/comments/kwozgy/exarm_cooking_fried_rice_and_brotherly_talk/gj5fp17/;1610639942;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Death Note - -Death Parade - -Erased - -Anohana - -Your Lie in April - -Seirei no Moribito - -Banana Fish - -Vinland Saga - -One Punch Man - -Cowboy Bebop - -Gurren Lagann - -Re Zero Starting Life in Another World - -Steins; Gate - -Fullmetal Alchemist Brotherhood - -Assassination Classroom - -My Hero Academia - -Made in Abyss - -Psycho-Pass - -Yuri on Ice - -Dororo - -A Silent Voice - -Wolf Children - -Spirited Away - -Howl's Moving Castle - -Yuru Camp - -Barakamon - -Silver Spoon - -Daily Lives of High School Boys - -Usagi Drop - -Grand Blue - -Gekkan Shoujo Nozaki-kun - -Toradora - -Hibike Euphonium - -Sakamichi no Apollon - -ReLife";False;False;;;;1610569510;;False;{};gj5fp3i;False;t3_kwnd8r;False;True;t3_kwnd8r;/r/anime/comments/kwnd8r/recomend_me_smth_based_of_my_mal/gj5fp3i/;1610639943;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;"This garbage animation amuses me. - - -Maybe they'll fix it in the BD? /s";False;False;;;;1610569532;;False;{};gj5fqsn;False;t3_kwozgy;False;True;t3_kwozgy;/r/anime/comments/kwozgy/exarm_cooking_fried_rice_and_brotherly_talk/gj5fqsn/;1610639982;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jazzygiraffes;;;[];;;;text;t2_5iqjpn5g;False;False;[];;"Full Metal Alchemist : Brotherhood , Steins Gate , Hunter x Hunter , Baccano! . All are pretty good ""darker"" anime's and all besides Hunter are on the shorter side so it'd be easier to finish .";False;False;;;;1610569537;;False;{};gj5fr5t;False;t3_kwoigl;False;True;t3_kwoigl;/r/anime/comments/kwoigl/looking_for_some_good_anime/gj5fr5t/;1610639990;1;True;False;anime;t5_2qh22;;0;[]; -[];;;calvinist-batman;;;[];;;;text;t2_5w2u8jc6;False;False;[];;oof;False;False;;;;1610569539;;False;{};gj5frdu;True;t3_kwovzt;False;True;t1_gj5f6pa;/r/anime/comments/kwovzt/is_world_trigger_worth_it/gj5frdu/;1610639994;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ishuzoku-Connoisseur;;;[];;;;text;t2_65qsew7y;False;False;[];;We have reached the peak in animation.;False;False;;;;1610569551;;False;{};gj5fsa3;False;t3_kwozgy;False;True;t3_kwozgy;/r/anime/comments/kwozgy/exarm_cooking_fried_rice_and_brotherly_talk/gj5fsa3/;1610640014;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610569616;;False;{};gj5fxit;False;t3_kwo0mn;False;True;t3_kwo0mn;/r/anime/comments/kwo0mn/which_anime_end_the_final_episode_with_the_first/gj5fxit/;1610640114;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Alexander-mci;;;[];;;;text;t2_4bw7x5ut;False;False;[];;I really enjoyed zero and stay night;False;False;;;;1610569719;;False;{};gj5g5pg;False;t3_kwooc1;False;True;t3_kwooc1;/r/anime/comments/kwooc1/is_the_fate_series_worth_watchingwhat_is_the/gj5g5pg/;1610640272;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MusubiKazesaru;;;[];;;;text;t2_oh8ti;False;False;[];;There's an AT-X release now, but I can't say where. I don't know how uncensored it is yet. I remember that with Ishuzoku Reviewers and that Sensei show it still wasn't all that uncensored.;False;False;;;;1610569766;;False;{};gj5g9da;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj5g9da/;1610640342;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;I actually want to watch it, for it's contents.;False;False;;;;1610569784;;False;{};gj5gaqq;False;t3_kwp48q;False;True;t3_kwp48q;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5gaqq/;1610640372;13;True;False;anime;t5_2qh22;;0;[]; -[];;;FireRifle64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FireRifle64;light;text;t2_29fr8mww;False;False;[];;"Yes, for its ""contents""";False;False;;;;1610569849;;False;{};gj5gfw4;False;t3_kwp48q;False;True;t1_gj5gaqq;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5gfw4/;1610640473;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;"I could be wrong but the order may be: - -fate / zero - -fate / stay night - -fate / stay night unlimited bladeworks - -fate / stay night heaven's feel - -&#x200B; - -I believe it's worth watching. The animation is pretty good.";False;False;;;;1610569874;;False;{};gj5ghuq;False;t3_kwooc1;False;True;t3_kwooc1;/r/anime/comments/kwooc1/is_the_fate_series_worth_watchingwhat_is_the/gj5ghuq/;1610640513;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;"Main story: - -* Fate/stay night (2006) **(DISCLAIMER: primarily follows the Fate Route, but incorporates some elements from the other two. I like it enough to recommend it, so I will. However, I do concede that a better alternative would be to watch/read/play the Fate Route of the VN.)** -* Unlimited Blade Works (2014) -* Heaven's Feel Trilogy - -Prequel: - -* Fate/Zero **(DISCLAIMER: if you just want to watch one great show and then dip from the franchise, it's a perfectly fine standalone (not gonna gatekeep). However, don't start with it if you plan to commit)** - -Spinoffs: - -* Fate/kaleid liner Prisma Illya -* Carnival Phantasm (needs some knowledge from Tsukihime as well, but there's no anime of that 😎) -* Fate/Apocrypha -* Today's Menu for the Emiya Family (jokingly referred to as ""Fate/Cooking"") -* Fate/Extra: Last Encore -* Lord El-Melloi II Case Files: Rail Zeppelin Grace Note (needs Fate/Zero for context) -* Fate/Grand Order **(which is a whole different can of worms with enough in-depth lore and story to surpass the Main Story)** - - First Order - - Moonlight/Lostroom **(DISCLAIMER: should be watched last out of the ones currently listed here)** - - Absolute Demonic Front - Babylonia - - Divine Realm of the Round Table - Camelot - - The Grand Temple of Time - Solomon";False;False;;;;1610569911;;False;{};gj5gkru;False;t3_kwooc1;False;False;t3_kwooc1;/r/anime/comments/kwooc1/is_the_fate_series_worth_watchingwhat_is_the/gj5gkru/;1610640569;8;True;False;anime;t5_2qh22;;0;[]; -[];;;voos07;;;[];;;;text;t2_2nrpxm3w;False;False;[];;since ya so enthuastic ima watch this one 1st;False;False;;;;1610569953;;False;{};gj5go3u;True;t3_kwnd8r;False;True;t1_gj5605j;/r/anime/comments/kwnd8r/recomend_me_smth_based_of_my_mal/gj5go3u/;1610640637;1;True;False;anime;t5_2qh22;;0;[]; -[];;;theHypatia;;;[];;;;text;t2_3gdbi72k;False;False;[];;"That's a bit tough. There aren't many shows that forego drama altogether, especially in anime, especially in the romance genre, but these three seem like a pretty good fit. - -I can't understand what my husband is saying is the most underrated anime I've ever seen and I love it so much. It's a short series, so you can watch both seasons in an hour and a half (and that's if you don't skip the ending theme). What drama there is isn't over-the-top, it's just mushy and cute and the show can be laugh-out-loud hilarious at times. - -Kaguya sama love is war is a good pick. There isn't too much genuine drama, most of it is played for laughs. The characters have good chemistry and I think it has that ""cute"" feel you were talking about, especially in the second season. - -This one is a bit more dramatic, but I consider ToraDora to be a masterpiece. I think all the characters are likable, so hopefully it won't fall into that trap for you. It's my favorite love story, anime or otherwise, so if you're in the mood for a romcom that develops into more of a drama, give it a shot.";False;False;;;;1610569958;;False;{};gj5gohv;False;t3_kwob1u;False;False;t3_kwob1u;/r/anime/comments/kwob1u/good_romantic_comedy_anime/gj5gohv/;1610640646;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Mouzspirit;;;[];;;;text;t2_5axmbhi5;False;False;[];;black clover plays opening 1 on some fights;False;False;;;;1610570025;;False;{};gj5gtzo;False;t3_kwo0mn;False;True;t3_kwo0mn;/r/anime/comments/kwo0mn/which_anime_end_the_final_episode_with_the_first/gj5gtzo/;1610640756;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610570030;;False;{};gj5gud6;False;t3_kwp4us;False;True;t3_kwp4us;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj5gud6/;1610640765;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dick_Dynamo;;;[];;;;text;t2_6ab6i;False;False;[];;If not for people like you screeching and flinging insults at people you don't know, I wouldn't have even noticed this shows existence. I'm gonna give it a shot, and if I like it, I'll keep watching.;False;True;;comment score below threshold;;1610570052;;False;{};gj5gw65;False;t3_kwp48q;False;True;t3_kwp48q;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5gw65/;1610640800;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;MysteriousForeteller;;;[];;;;text;t2_laeagid;False;False;[];;"I'm not gonna lie, when I was in mood to read ecchi/adult manga, I came across this and read a bit to see where the plot would go. Felt too slow or it wasn't moving along so I dropped it. - -Having seen the anime yet.";False;False;;;;1610570141;;False;{};gj5h3bj;False;t3_kwp48q;False;True;t3_kwp48q;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5h3bj/;1610640941;1;True;False;anime;t5_2qh22;;0;[]; -[];;;animeprocrastinator;;;[];;;;text;t2_7euumnv6;False;False;[];;You might like Tonikaku kawaii;False;False;;;;1610570157;;False;{};gj5h4j4;False;t3_kwob1u;False;False;t3_kwob1u;/r/anime/comments/kwob1u/good_romantic_comedy_anime/gj5h4j4/;1610640964;5;True;False;anime;t5_2qh22;;0;[]; -[];;;NathanTPS;;;[];;;;text;t2_tt2rz;False;False;[];;"I'm gonna be honest, I'm a big fan of come-up'ns story driven plot. Revenge shows as a central tenant are few and far between. Usually the revenge element gets dropped half way through the series because.... ""Character growth."" Since this series seems to be more of a dumpster fire driven revenge plot, I have high hopes that it will succeed, that character ""growth"" will remain where it should..... - -Will this be a good anime? probably not, but we gotta have those guilty pleasures to.... cleanse the palate.";False;False;;;;1610570172;;False;{};gj5h5qf;False;t3_kwp48q;False;True;t3_kwp48q;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5h5qf/;1610640985;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610570195;;False;{};gj5h7gk;False;t3_kwp48q;False;True;t3_kwp48q;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5h7gk/;1610641018;5;True;False;anime;t5_2qh22;;0;[]; -[];;;christian_agu57;;;[];;;;text;t2_80c94vzz;False;False;[];;"If you haven't already watch Love, Chunibyo & Other Delusions or toradora. -Both are really good";False;False;;;;1610570209;;False;{};gj5h8o8;False;t3_kwob1u;False;True;t3_kwob1u;/r/anime/comments/kwob1u/good_romantic_comedy_anime/gj5h8o8/;1610641043;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610570216;;False;{};gj5h96x;False;t3_kwp48q;False;True;t3_kwp48q;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5h96x/;1610641052;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;"It's funny you say that bc I'd not have known it existed had it not been for the edgelords screaming ""I can wait to see people upset by the frequent rape in this show,"" which was frequent far before anyone was actually critical of the show.";False;False;;;;1610570220;;False;{};gj5h9l6;False;t3_kwp48q;False;True;t1_gj5gw65;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5h9l6/;1610641059;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Meraboo459;;;[];;;;text;t2_81a2ggaq;False;False;[];;A mistake of mine sorry ,will edit.;False;False;;;;1610570223;;False;{};gj5h9s3;True;t3_kwp4us;False;True;t1_gj5gud6;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj5h9s3/;1610641063;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Phantomskyler;;;[];;;;text;t2_rx0g8;False;False;[];;"Where was I screeching? I was pointing out my only contact with this show were assholes (as in full on half their posts were them being incredibly sexist/homophobic or crying about western fans destroying anime somehow) and the fact they were more excited about the controversy over it instead of if it was any good. - -But I mean if you wanna watch it nobody's stopping you. Same as nobody's stopping you from being so irrationally hostile. Lol";False;False;;;;1610570250;;False;{};gj5hbzy;True;t3_kwp48q;False;True;t1_gj5gw65;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5hbzy/;1610641103;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610570366;;False;{};gj5hlft;False;t3_kwp48q;False;True;t1_gj5gfw4;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5hlft/;1610641287;0;True;False;anime;t5_2qh22;;0;[]; -[];;;YouJustGotDabbedOn;;;[];;;;text;t2_9idi21mg;False;False;[];;It had actual fans before the anime, now it's just a bunch of dramatards 🤣;False;True;;comment score below threshold;;1610570434;;False;{};gj5hr29;False;t3_kwp48q;False;True;t3_kwp48q;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5hr29/;1610641392;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;EXTRA370H55V;;;[];;;;text;t2_1mlz54nl;False;False;[];;I like any realism in my anime stories, people get mad and say fuckit then go fuck shit up. That's something not normally done well in anime. So I'm interested.;False;True;;comment score below threshold;;1610570440;;False;{};gj5hri9;False;t3_kwp48q;False;True;t3_kwp48q;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5hri9/;1610641401;-14;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarRufus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ScarRufus;light;text;t2_2u0vy1pk;False;False;[];;"Yes* - -It takes a long time to get good. Also the way Toei made the anime with a lot of recaps is kinda boring. BUT S2 started great feels like a totally different anime. - -It is good because how different is the battles it is all about who have a better strategy.";False;False;;;;1610570538;;False;{};gj5hzk6;False;t3_kwovzt;False;True;t3_kwovzt;/r/anime/comments/kwovzt/is_world_trigger_worth_it/gj5hzk6/;1610641553;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;"According to anime graph my favorite ""genre"" is shoujo least favorite kids - -Top 3 shoujo - -1. Oniisama e... -2. Ace wo nerae 2 -3. Hikari no Densetsu - -Top 3 kids - -1. Chibi Maruko-chan -2. Heartcatch Precure -3. Mewkledreamy - -Those aren't really genres so I add 2nd best which is drama and 2nd worst which is comedy also - -Top 3 drama - -1. Ginga Eiyuu Densetsu -2. Oniisama e... -3. Ace wo nerae 2 - -Top 3 comedy - -1. Mahoutsukai Sally 2 -2. Mahou Shoujo Lalabel -3. Cardcaptor Sakura";False;False;;;;1610570541;;False;{};gj5hzsq;False;t3_kwp4us;False;True;t3_kwp4us;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj5hzsq/;1610641557;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Phantomskyler;;;[];;;;text;t2_rx0g8;False;False;[];;"Except, as far as TV tropes says...he doesn't redeem himself? Like he chills a bit but he's still the same guy thats MO is magically drugging and raping people & its only justification is that the people he targets are like..50% worse than him? - -Shield Hero this is not. Lol";False;False;;;;1610570585;;False;{};gj5i3bx;True;t3_kwp48q;False;True;t1_gj5h7gk;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5i3bx/;1610641624;6;True;False;anime;t5_2qh22;;0;[]; -[];;;FireRifle64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FireRifle64;light;text;t2_29fr8mww;False;False;[];;"Im talking about the fan service. Similar to how people refer to watching Highschool DxD for the plot or the ""plot"" a.k.a Boobs. I was making a joke";False;False;;;;1610570606;;False;{};gj5i4zr;False;t3_kwp48q;False;True;t1_gj5hlft;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5i4zr/;1610641664;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610570704;moderator;False;{};gj5icrs;False;t3_kwpgv5;False;True;t3_kwpgv5;/r/anime/comments/kwpgv5/looking_for_anime_with_femboys/gj5icrs/;1610641834;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi DieSam, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610570705;moderator;False;{};gj5icsz;False;t3_kwpgv5;False;True;t3_kwpgv5;/r/anime/comments/kwpgv5/looking_for_anime_with_femboys/gj5icsz/;1610641834;1;False;False;anime;t5_2qh22;;0;[]; -[];;;PopularExtreme2406;;;[];;;;text;t2_4u8hhju8;False;False;[];;"Top 3 Romance - -1. Blue Spring Ride -2. Darling in the Franxx -3. 5 Centimeters Per Second - -Top 3 Shonen - -1. One Piece -2. Beserk -3. Gintama - -Top 3 Sports - -1. Kuroko No Basket -2. Slam Dunk -3. Diamond No Ace - -Top 3 Slice of Life - -1. Toradora -2. Natsume's Book of Friends -3. We never learn Bokuben!";False;False;;;;1610570705;;False;{};gj5ictw;False;t3_kwp4us;False;True;t3_kwp4us;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj5ictw/;1610641834;0;True;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;"Favorite: mecha - -* Giant Robo the Animation - -* Patlabor 2 - -* Tie: GaoGaiGar/Getter Robo Armageddon - -Least favorite: Shounen (yes it's not a genre but I can't think of a better name for it than shounen action adventure) - -* Fist of the North Star - -* Devilman Crybaby - -* Yu Yu Hakusho";False;False;;;;1610570739;;False;{};gj5iflp;False;t3_kwp4us;False;False;t3_kwp4us;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj5iflp/;1610641886;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610570788;moderator;False;{};gj5ijm6;False;t3_kwphxl;False;True;t3_kwphxl;/r/anime/comments/kwphxl/will_anthy_get_any_development_in_revolutionary/gj5ijm6/;1610641963;1;False;False;anime;t5_2qh22;;0;[]; -[];;;ScarRufus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ScarRufus;light;text;t2_2u0vy1pk;False;False;[];;"Steins;Gate - -Re: Zero S1";False;False;;;;1610570790;;False;{};gj5ijrh;False;t3_kwpgv5;False;False;t3_kwpgv5;/r/anime/comments/kwpgv5/looking_for_anime_with_femboys/gj5ijrh/;1610641965;8;True;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;Berserk is a seinen manga, not shounen btw.;False;False;;;;1610570926;;False;{};gj5iuqx;False;t3_kwp4us;False;True;t1_gj5ictw;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj5iuqx/;1610642181;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;Yeah;False;False;;;;1610570929;;False;{};gj5iv0o;False;t3_kwphxl;False;False;t3_kwphxl;/r/anime/comments/kwphxl/will_anthy_get_any_development_in_revolutionary/gj5iv0o/;1610642186;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;Himegoto;False;False;;;;1610570977;;False;{};gj5iywv;False;t3_kwpgv5;False;False;t3_kwpgv5;/r/anime/comments/kwpgv5/looking_for_anime_with_femboys/gj5iywv/;1610642265;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Etereke32;;;[];;;;text;t2_11qhl2;False;False;[];;I don't think it's like season 1 at all, but it's not like season 2 either. It's probably the darkest season yet, with some really emotionally-heavy plot. IMO it's the best season so far. I can get behind the darker themes it tries to tackle.;False;False;;;;1610570997;;False;{};gj5j0k5;False;t3_kwobhl;False;True;t3_kwobhl;/r/anime/comments/kwobhl/is_season_3_of_is_it_wrong_to_try_to_pick_up/gj5j0k5/;1610642297;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;"Least favourite: romance - -1. Monthly girls Nozaki-kun -2. Vampire knight -3. Given - -Favourite: mystery - -1. Terror in resonance -2. Steins gate -3. Bungo stray dogs";False;False;;;;1610571005;;False;{};gj5j18u;False;t3_kwp4us;False;True;t3_kwp4us;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj5j18u/;1610642310;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610571065;;False;{};gj5j61j;False;t3_kwpgv5;False;True;t3_kwpgv5;/r/anime/comments/kwpgv5/looking_for_anime_with_femboys/gj5j61j/;1610642403;3;True;False;anime;t5_2qh22;;0;[]; -[];;;UnlikeSpace3858;;;[];;;;text;t2_hc4ar;False;False;[];;[Princess Jellyfish](https://www.funimation.com/shows/princess-jellyfish/) has a crossdressing character, as well as [Moyashimon](https://myanimelist.net/anime/3001/Moyashimon) and [Fruits Basket](https://www.crunchyroll.com/fruits-basket) - although if you blink you'll miss the character entirely, first season mainly. Not sure any involve a romance with these characters.;False;False;;;;1610571088;;False;{};gj5j7xi;False;t3_kwpgv5;False;False;t3_kwpgv5;/r/anime/comments/kwpgv5/looking_for_anime_with_femboys/gj5j7xi/;1610642442;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ohaimike;;;[];;;;text;t2_5ovb2;False;False;[];;Blend S;False;False;;;;1610571125;;False;{};gj5jb0j;False;t3_kwpgv5;False;False;t3_kwpgv5;/r/anime/comments/kwpgv5/looking_for_anime_with_femboys/gj5jb0j/;1610642506;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;If you do crossdressing the opposite way, then Ouran High School Host Club.;False;False;;;;1610571210;;False;{};gj5jhsx;False;t3_kwpgv5;False;True;t3_kwpgv5;/r/anime/comments/kwpgv5/looking_for_anime_with_femboys/gj5jhsx/;1610642643;2;True;False;anime;t5_2qh22;;0;[]; -[];;;xKira159;;;[];;;;text;t2_32a8hma5;False;False;[];;"Least Favorite : Romance - -1. Maison Ikkoku -2. Cross Game -3. Nana - -Favorite : Military - -1. Legend of the Galactic Heroes -2. Mobile Suit Gundam -3. Full Metal Alchemist Brotherhood";False;False;;;;1610571224;;False;{};gj5jiuz;False;t3_kwp4us;False;True;t3_kwp4us;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj5jiuz/;1610642675;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ambermareep;;;[];;;;text;t2_vxoe4l1;False;False;[];;I prefer funimation, but I pay for both and crunchyroll seems better for free stuff;False;False;;;;1610571229;;False;{};gj5jj8d;False;t3_kwoca8;False;True;t3_kwoca8;/r/anime/comments/kwoca8/which_websiteapp_do_you_guys_recommend/gj5jj8d/;1610642682;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DoctorWhoops;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DoctorWhoops/;light;text;t2_ip5wv;False;False;[];;"**Slice of Life (Favorite)** - -1. Hidamari Sketch -2. Girls' Last Tour -3. Usagi Drop - -**Action (Least Favorite)** - -1. Neon Genesis Evangelion -2. Kizumonogatari -3. One Punch Man";False;False;;;;1610571233;;False;{};gj5jjkf;False;t3_kwp4us;False;True;t3_kwp4us;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj5jjkf/;1610642691;1;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;I'm only going by the conversations I've seen here on the property, I personally can't handle that sort of subject matter, so it's not something I've sought out on my own, and a decent number of people seem to think that's how the story goes.;False;False;;;;1610571306;;False;{};gj5jpix;False;t3_kwp48q;False;True;t1_gj5i3bx;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5jpix/;1610642805;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Just watch Zero then unlimited blade works then heavens feel movies, some say watch Zero after heavens feel but I don't recommend it personally, if you like those 3 then watch the rest of the other spin offs, that's all you really need to know;False;False;;;;1610571326;;False;{};gj5jr3s;False;t3_kwooc1;False;False;t3_kwooc1;/r/anime/comments/kwooc1/is_the_fate_series_worth_watchingwhat_is_the/gj5jr3s/;1610642835;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;Yes;False;False;;;;1610571334;;False;{};gj5jrqq;False;t3_kwphxl;False;True;t3_kwphxl;/r/anime/comments/kwphxl/will_anthy_get_any_development_in_revolutionary/gj5jrqq/;1610642847;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Meraboo459;;;[];;;;text;t2_81a2ggaq;False;False;[];;Seems interesting, Mecha is my least ,But hey people are different , I will try to check out some of these shows.;False;False;;;;1610571370;;False;{};gj5jumg;True;t3_kwp4us;False;True;t1_gj5iflp;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj5jumg/;1610642903;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Attack on titan for sure;False;False;;;;1610571380;;False;{};gj5jvek;False;t3_kwoigl;False;True;t3_kwoigl;/r/anime/comments/kwoigl/looking_for_some_good_anime/gj5jvek/;1610642918;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Meraboo459;;;[];;;;text;t2_81a2ggaq;False;False;[];;Can I ask what made you dislike Romance ? Curious since it's my favorite.;False;False;;;;1610571399;;False;{};gj5jwxv;True;t3_kwp4us;False;True;t1_gj5j18u;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj5jwxv/;1610642946;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ambermareep;;;[];;;;text;t2_vxoe4l1;False;False;[];;Adding in: I have never had funimation issues on my PC or phone, but have had a few on my PlayStation. One weird one where I could not watch episode 8 of promised Neverland on the app on PS. Tried for 3 days until switching to the computer and it worked fine. Tried again on the app and it did not work, but every other episode did;False;False;;;;1610571408;;False;{};gj5jxov;False;t3_kwoca8;False;True;t1_gj5f6gu;/r/anime/comments/kwoca8/which_websiteapp_do_you_guys_recommend/gj5jxov/;1610642960;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Phantomskyler;;;[];;;;text;t2_rx0g8;False;False;[];;"Uh..pretty sure there's a huge difference between ""going to fuck shit up"" and ""I'm gonna become a serial rapist.""";False;False;;;;1610571419;;False;{};gj5jymn;True;t3_kwp48q;False;True;t1_gj5hri9;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5jymn/;1610642978;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Meraboo459;;;[];;;;text;t2_81a2ggaq;False;False;[];;Can I ask what made you dislike Romance , Curious since it's my favorite.;False;False;;;;1610571437;;False;{};gj5jzxd;True;t3_kwp4us;False;True;t1_gj5jiuz;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj5jzxd/;1610643001;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;Since you liked Gurren Lagann you will probably like GGG and Getter Robo;False;False;;;;1610571484;;False;{};gj5k3sq;False;t3_kwp4us;False;False;t1_gj5jumg;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj5k3sq/;1610643069;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;Oh I dislike romance because it feels like they use the same plot over and over again and it makes romance seem boring to me.;False;False;;;;1610571511;;False;{};gj5k5y2;False;t3_kwp4us;False;False;t1_gj5jwxv;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj5k5y2/;1610643111;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Meraboo459;;;[];;;;text;t2_81a2ggaq;False;False;[];;I literally haven't watched any of these but I'll try to check out some of them.;False;False;;;;1610571514;;False;{};gj5k65c;True;t3_kwp4us;False;True;t1_gj5hzsq;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj5k65c/;1610643114;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610571533;;False;{};gj5k7oz;False;t3_kwphxl;False;False;t3_kwphxl;/r/anime/comments/kwphxl/will_anthy_get_any_development_in_revolutionary/gj5k7oz/;1610643144;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;Yes;False;False;;;;1610571540;;False;{};gj5k8b1;False;t3_kwphxl;False;True;t3_kwphxl;/r/anime/comments/kwphxl/will_anthy_get_any_development_in_revolutionary/gj5k8b1/;1610643155;3;True;False;anime;t5_2qh22;;0;[]; -[];;;xKira159;;;[];;;;text;t2_32a8hma5;False;False;[];;I didn't come to watch anime to see a stupid love story that I don't care about.;False;False;;;;1610571600;;1610574259.0;{};gj5kcy7;False;t3_kwp4us;False;True;t1_gj5jzxd;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj5kcy7/;1610643243;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610571603;;False;{};gj5kd7l;False;t3_kwphxl;False;True;t3_kwphxl;/r/anime/comments/kwphxl/will_anthy_get_any_development_in_revolutionary/gj5kd7l/;1610643248;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Maaxxiim;;;[];;;;text;t2_t6br6ge;False;False;[];;link?;False;False;;;;1610571644;;False;{};gj5kgj6;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj5kgj6/;1610643310;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Magical_Griffin;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SpikyTurtle;light;text;t2_ii5jh1;False;False;[];;"I don’t really have favourite/least favourite genres so I’ll just list a few: - -Top 3 Action - -1. Haikyuu -2. Hunter x Hunter (2011) -3. Attack on Titan - -Top 3 Comedy - -1. Konosuba -2. JoJo (Part 3) -3. Food Wars - -Top 3 Slice of Life - -1. Violet Evergarden -2. Natsume Yuujinchou -3. Mushishi - -Top 3 Romance (haven’t really seen a lot) - -1. Your Lie In April -2. Your Name -3. Bunny Girl Senpai";False;False;;;;1610571676;;False;{};gj5kj3e;False;t3_kwp4us;False;True;t3_kwp4us;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj5kj3e/;1610643357;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Magister1991;;;[];;;;text;t2_167c2k;False;False;[];;The manga is pretty mediocre, so I doubt the anime will be any better. That said, it's plain to see what you're trying to accomplish here, which is to rile people up for no good reason.;False;False;;;;1610571685;;False;{};gj5kjum;False;t3_kwp48q;False;True;t3_kwp48q;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5kjum/;1610643371;18;True;False;anime;t5_2qh22;;0;[]; -[];;;KrispyKrist;;;[];;;;text;t2_3pqzmxq0;False;False;[];;Wonder Egg Priority fits quite well to your criteria. It just released yesterday.;False;False;;;;1610571700;;False;{};gj5kl1c;False;t3_kwoigl;False;True;t3_kwoigl;/r/anime/comments/kwoigl/looking_for_some_good_anime/gj5kl1c/;1610643391;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Eazydoesit88;;;[];;;;text;t2_507pyn1j;False;False;[];;I’m excited to add another trash anime notch to this seasons watch belt. Love em don’t care if people get bothered by them if it’s funny entertaining and trasy sometimes you need trash to enjoy the masterpieces. Sometimes you watch trash because you don’t wanna remember real life is trash.;False;False;;;;1610571731;;False;{};gj5knlb;False;t3_kwp48q;False;True;t3_kwp48q;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5knlb/;1610643440;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Equivalent_Bear_3082;;;[];;;;text;t2_948d7iwa;False;False;[];;On the pc it's honestly quite annoying and that's why. You can't just press the screen and boom done. No, you have to press that corner play/pause. Way too annoying for something you pay to use. I would understand if it's free, but...;False;False;;;;1610571759;;False;{};gj5kpwb;False;t3_kwoca8;False;True;t1_gj5jxov;/r/anime/comments/kwoca8/which_websiteapp_do_you_guys_recommend/gj5kpwb/;1610643484;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ry-O-Ken;;;[];;;;text;t2_2lrnusrf;False;False;[];;I think they’re mistaking it for mushoku tensei (also airing this season) lol;False;False;;;;1610571785;;False;{};gj5krvo;False;t3_kwp48q;False;True;t1_gj5i3bx;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5krvo/;1610643520;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Byakko168;;;[];;;;text;t2_5b903zap;False;False;[];;Code:Breaker;False;False;;;;1610571793;;False;{};gj5ksj0;False;t3_kwpsg1;False;True;t3_kwpsg1;/r/anime/comments/kwpsg1/wat_anime_is_this_can_someone_tell_me/gj5ksj0/;1610643533;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Eazydoesit88;;;[];;;;text;t2_507pyn1j;False;False;[];;I find high school dxd to be hilarious. The thought of halfing stuff always makes me remember the scene you know the scene where the MC loses his shit over everything being reduced by half.;False;False;;;;1610571794;;False;{};gj5ksl3;False;t3_kwp48q;False;True;t1_gj5i4zr;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5ksl3/;1610643534;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tasthar;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tasthar;light;text;t2_1fhlyiyc;False;False;[];;"Favourite: Mystery - -1. ef: a Tale of Memories -2. Mawaru Penguindrum -3. Hyouka - -Least Favourite: Harem - -1. Seitokai no Ichizon -2. Outbreak Company -3. NouCome";False;False;;;;1610571809;;False;{};gj5ktpr;False;t3_kwp4us;False;True;t3_kwp4us;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj5ktpr/;1610643558;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RockoDyne;;MAL;[];;https://myanimelist.net/profile/RockoDyne;dark;text;t2_g4ooj;False;False;[];;"> it's about a flawed character that slowly redeems themselves over the course of the story. - -What? Where was that? The only way I can see people being crazy enough to call this being about redemption is that it's about the villains being redeemed by the protagonist getting revenge.";False;False;;;;1610571840;;False;{};gj5kw82;False;t3_kwp48q;False;True;t1_gj5h7gk;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5kw82/;1610643605;3;True;False;anime;t5_2qh22;;0;[]; -[];;;deathnate4;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/deathnate4;light;text;t2_djj9g;False;False;[];;PET does as far as I can remember. Also one of the best endings to an anime I've ever seen.;False;False;;;;1610571944;;False;{};gj5l4hp;False;t3_kwo0mn;False;True;t3_kwo0mn;/r/anime/comments/kwo0mn/which_anime_end_the_final_episode_with_the_first/gj5l4hp/;1610643764;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xkrowcitats;;;[];;;;text;t2_6fpg7;False;False;[];;Jojos bizarre adventure;False;False;;;;1610571961;;False;{};gj5l5sz;False;t3_kwpgv5;False;True;t3_kwpgv5;/r/anime/comments/kwpgv5/looking_for_anime_with_femboys/gj5l5sz/;1610643786;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;calvinist-batman;;;[];;;;text;t2_5w2u8jc6;False;False;[];;are there eps listed somewhere that I don't need to watch?;False;False;;;;1610572080;;False;{};gj5lf7d;True;t3_kwovzt;False;True;t1_gj5hzk6;/r/anime/comments/kwovzt/is_world_trigger_worth_it/gj5lf7d/;1610643966;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ydontwe69;;;[];;;;text;t2_563yrxen;False;False;[];;i heard the uncensored one comes out later tonight i think;False;False;;;;1610572112;;False;{};gj5lhr4;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj5lhr4/;1610644013;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarRufus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ScarRufus;light;text;t2_2u0vy1pk;False;False;[];;"Not exactly, you should watch all. There is actually a filler arc, but I don't think it was that bad that you should skip, it brings some world building. - -The recaps happen almost every first 3 minutes in some episodes. You know when it happens.";False;False;;;;1610572189;;False;{};gj5lnum;False;t3_kwovzt;False;False;t1_gj5lf7d;/r/anime/comments/kwovzt/is_world_trigger_worth_it/gj5lnum/;1610644133;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610572276;moderator;False;{};gj5luzr;False;t3_kwq0x0;False;True;t3_kwq0x0;/r/anime/comments/kwq0x0/is_there_an_app_like_mangarock/gj5luzr/;1610644269;1;False;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;See /r/manga;False;False;;;;1610572310;;False;{};gj5lxsl;False;t3_kwq0x0;False;True;t3_kwq0x0;/r/anime/comments/kwq0x0/is_there_an_app_like_mangarock/gj5lxsl/;1610644322;2;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;Fair point.;False;False;;;;1610572431;;False;{};gj5m85m;False;t3_kwlscs;False;False;t1_gj59xf9;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj5m85m/;1610644523;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;"Can't give you options, cause it's not legal. - -Look at r/manga or /r/mangarockapp";False;False;;;;1610572495;;False;{};gj5mdo6;False;t3_kwq0x0;False;True;t3_kwq0x0;/r/anime/comments/kwq0x0/is_there_an_app_like_mangarock/gj5mdo6/;1610644635;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AyyyLMAO407;;;[];;;;text;t2_8scx60wc;False;False;[];;"Please just read the visual novel ! As a lifelong anime watcher, honestly its probably my favorite piece of Japanese media period. Start with the fate route, and get excited because the next two routes are even better. I know it is a big commitment, but I do think it's worth it. (very much so, I kinda prefer the VN format to normal anime...) - -If thats too much of an ask, just watch Deen stay night 2006, that was my first foray into the fate franchise and I was instantly hooked. Don't start with Zero IMO.";False;False;;;;1610572710;;False;{};gj5mvnf;False;t3_kwooc1;False;True;t3_kwooc1;/r/anime/comments/kwooc1/is_the_fate_series_worth_watchingwhat_is_the/gj5mvnf/;1610645003;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ctrl_alt-account_del;;;[];;;;text;t2_wnd079s;False;False;[];;Shout out to the only 2020 anime I watched being show of the year.;False;False;;;;1610572711;;False;{};gj5mvsa;False;t3_kwptq6;False;False;t3_kwptq6;/r/anime/comments/kwptq6/the_best_anime_of_2020_ranked_glass_reflection/gj5mvsa/;1610645005;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Roketsu86;;;[];;;;text;t2_hwze9;False;False;[];;No. Read the rules.;False;False;;;;1610572842;;False;{};gj5n6yi;False;t3_kwq5yd;False;True;t3_kwq5yd;/r/anime/comments/kwq5yd/if_you_like_gacha_games_and_memes_hit_this_up/gj5n6yi/;1610645216;1;True;False;anime;t5_2qh22;;0;[]; -[];;;theHypatia;;;[];;;;text;t2_3gdbi72k;False;False;[];;"I loved season 1 because it focused so much on Bell's character and his struggles. Season 2 strayed into more of an ensemble cast with Bell pretty solidly out of the limelight, and couldn't find its footing because of that imo. Season 3 still isn't like season 1. Rather, I'd say season 3 is what season 2 wanted to be. It expands the ensemble cast even more, but instead of the heroes trying to save a cute girl from an evil guild, season 3 has the heroes trying to save a cute girl from literally the entire world. The conflict is interesting and there are really points to be made for both sides (especially if you've seen Sword Oratoria). It also focuses on Bell a bit more than season 2 did. I didn't like it quite as much as season 1, but that's really just down to personal preference. I would recommend it. - -Btw the light novels are just consistently much better than the anime. I recommend them, too.";False;False;;;;1610573040;;False;{};gj5nniy;False;t3_kwobhl;False;True;t3_kwobhl;/r/anime/comments/kwobhl/is_season_3_of_is_it_wrong_to_try_to_pick_up/gj5nniy/;1610645532;1;True;False;anime;t5_2qh22;;0;[]; -[];;;theHypatia;;;[];;;;text;t2_3gdbi72k;False;False;[];;Welcome to the NHK?;False;False;;;;1610573095;;False;{};gj5ns4n;False;t3_kwo1wz;False;True;t3_kwo1wz;/r/anime/comments/kwo1wz/what_is_that_one_anime_called/gj5ns4n/;1610645624;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ambermareep;;;[];;;;text;t2_vxoe4l1;False;False;[];;I click the screen to pause and unpause... or use spacebar.;False;False;;;;1610573161;;False;{};gj5nxvi;False;t3_kwoca8;False;True;t1_gj5kpwb;/r/anime/comments/kwoca8/which_websiteapp_do_you_guys_recommend/gj5nxvi/;1610645738;1;True;False;anime;t5_2qh22;;0;[]; -[];;;supertinu;;;[];;;;text;t2_11a20b;False;False;[];;Haven’t heard of that, is it the one made last year?;False;False;;;;1610573285;;False;{};gj5o8ch;True;t3_kwo0mn;False;True;t1_gj5l4hp;/r/anime/comments/kwo0mn/which_anime_end_the_final_episode_with_the_first/gj5o8ch/;1610645941;1;True;False;anime;t5_2qh22;;0;[]; -[];;;supertinu;;;[];;;;text;t2_11a20b;False;False;[];;Oh that’s probably hype, never seen it but I want to;False;False;;;;1610573299;;False;{};gj5o9jo;True;t3_kwo0mn;False;True;t1_gj5gtzo;/r/anime/comments/kwo0mn/which_anime_end_the_final_episode_with_the_first/gj5o9jo/;1610645967;1;True;False;anime;t5_2qh22;;0;[]; -[];;;supertinu;;;[];;;;text;t2_11a20b;False;False;[];;Ah true I’d forgotten, that’s another anime that made me think of this questions;False;False;;;;1610573317;;False;{};gj5ob08;True;t3_kwo0mn;False;True;t1_gj5cb18;/r/anime/comments/kwo0mn/which_anime_end_the_final_episode_with_the_first/gj5ob08/;1610645996;1;True;False;anime;t5_2qh22;;0;[]; -[];;;babydave371;;MAL a-amq;[];;https://myanimelist.net/profile/babydave371;dark;text;t2_sak6n;False;False;[];;"So the manga is kinda the same thing. It's starts off as this Rance thriller thing but the Kazuo Koike got bored halfway through and seems to have gone ""but what if he was the best Chinese mafia...and there was reverse blackface...and a Chinese mafia island...and shoes that are rockets?"". But that is your standard Koike work: chapters 1 to maybe 3 are some pretty cool and sane stuff but then he takes a hard turn to crazy town. It's kinda great in its ludicrousness and there is a reason why he is one of the most respected manga writers of all time, of not the most respected.";False;False;;;;1610573387;;False;{};gj5ogyy;False;t3_kwppoa;False;False;t3_kwppoa;/r/anime/comments/kwppoa/crying_freeman_discussion_and_questions/gj5ogyy/;1610646112;1;True;False;anime;t5_2qh22;;0;[]; -[];;;k4r6000;;;[];;;;text;t2_3q0qar7q;False;False;[];;Definitely.;False;False;;;;1610573414;;False;{};gj5oj5r;False;t3_kwphxl;False;True;t3_kwphxl;/r/anime/comments/kwphxl/will_anthy_get_any_development_in_revolutionary/gj5oj5r/;1610646154;1;True;False;anime;t5_2qh22;;0;[]; -[];;;deathnate4;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/deathnate4;light;text;t2_djj9g;False;False;[];;Yeah it is. Definitely the most underrated show I've watched.;False;False;;;;1610573467;;False;{};gj5onnl;False;t3_kwo0mn;False;True;t1_gj5o8ch;/r/anime/comments/kwo0mn/which_anime_end_the_final_episode_with_the_first/gj5onnl/;1610646243;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610573469;;False;{};gj5onrp;False;t3_kwp48q;False;True;t3_kwp48q;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5onrp/;1610646245;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;"Favorite genre : Super Power - -Top 3 : - -1. A Certain Scientific Railgun -2. My Hero Academia -3. Attack on Titan (yes its listed under that genre) - -&#x200B; - -Least favorite genre : Horror (according to malgraph it's Fantasy but that's not true at all, there's just lots of bad seasonal shows from that genre I end up picking up and regretting it) - -Top 3 : - -1. The Promised Neverland -2. Jujutsu Kaisen -3. Highschool of the Dead";False;False;;;;1610573486;;False;{};gj5op8f;False;t3_kwp4us;False;True;t3_kwp4us;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj5op8f/;1610646273;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610573491;moderator;False;{};gj5opn2;False;t3_kwqgb3;False;True;t3_kwqgb3;/r/anime/comments/kwqgb3/did_i_spoil_myself_a_bit_too_much_legend_of_the/gj5opn2/;1610646282;1;False;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;"> if this happens late in the show - -No. - -It sucks you got spoiled, but it won't ruin it. That event is a big changer in the series.";False;False;;;;1610573571;;False;{};gj5owgz;False;t3_kwqgb3;False;False;t3_kwqgb3;/r/anime/comments/kwqgb3/did_i_spoil_myself_a_bit_too_much_legend_of_the/gj5owgz/;1610646418;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;[LBX Girls](https://myanimelist.net/anime/36458/Soukou_Musume_Senki). I mentioned it in another comment and episode 2 came out today.;False;False;;;;1610573636;;False;{};gj5p1xq;False;t3_kwlscs;False;False;t1_gj5a2b3;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj5p1xq/;1610646523;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarRufus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ScarRufus;light;text;t2_2u0vy1pk;False;False;[];;What I get in all this complain is *my favorite character die so this anime sucks...*;False;False;;;;1610573644;;False;{};gj5p2kz;False;t3_kwqgkg;False;False;t3_kwqgkg;/r/anime/comments/kwqgkg/episode_12_of_rainbow_and_im_dropping_the_show/gj5p2kz/;1610646534;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"> Because the girls are able to travel between their world and the Otherside at will - -Those count as isekai though. It's a different kind of isekai--the [tenii (transference) category](https://youtu.be/NCJesuBHR-g?t=11), as opposed to shoukan (summoning) or tensei (reincarnation)--but it still counts. GATE, Isekai Izakaya, Restaurant to Another World, Plus Sized Elf, Outbreak Company etc. are all tenii isekai stories that count as isekai. - - -What matters with isekai is simply the physical, bodily transfer into the other world. Thus, SAO is not an isekai, because Kirito's actual body never moves from the real world. But Otherside Picnic is, because it is not just their minds that are moving into another world, but their bodies.";False;False;;;;1610573656;;1610574870.0;{};gj5p3oy;False;t3_kwlscs;False;False;t1_gj59hc6;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj5p3oy/;1610646556;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Ghost_Reaper0225;;;[];;;;text;t2_45uaigia;False;False;[];;Chuunibyou has drama tho;False;False;;;;1610573665;;False;{};gj5p4eg;False;t3_kwob1u;False;False;t1_gj5h8o8;/r/anime/comments/kwob1u/good_romantic_comedy_anime/gj5p4eg/;1610646569;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;It's a big event but it's still relatively early in the series so I wouldn't say that the experience is ruined.;False;False;;;;1610573680;;False;{};gj5p5nv;False;t3_kwqgb3;False;False;t3_kwqgb3;/r/anime/comments/kwqgb3/did_i_spoil_myself_a_bit_too_much_legend_of_the/gj5p5nv/;1610646596;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610573704;moderator;False;{};gj5p7rw;False;t3_kwqizo;False;True;t3_kwqizo;/r/anime/comments/kwqizo/what_anime_is_this_from/gj5p7rw/;1610646641;1;False;False;anime;t5_2qh22;;0;[]; -[];;;KarlMihel;;;[];;;;text;t2_3ktxpt07;False;False;[];;If I remember right shin uchiha is only shown in boruto;False;False;;;;1610573720;;False;{};gj5p92k;False;t3_kwqfpm;False;True;t3_kwqfpm;/r/anime/comments/kwqfpm/shin_uchiha_in_naruto_shippuden/gj5p92k/;1610646667;1;True;False;anime;t5_2qh22;;0;[]; -[];;;djacobsln;;;[];;;;text;t2_4oyb698c;False;False;[];;ok, thanks for answering. I will keep watching the series.;False;False;;;;1610573727;;False;{};gj5p9q4;True;t3_kwqgb3;False;True;t1_gj5owgz;/r/anime/comments/kwqgb3/did_i_spoil_myself_a_bit_too_much_legend_of_the/gj5p9q4/;1610646681;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarRufus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ScarRufus;light;text;t2_2u0vy1pk;False;False;[];;This spoiler sucks for sure. But believe me this not even a half of the story. It becomes a fact to continue the story and characters development.;False;False;;;;1610573748;;False;{};gj5pbjz;False;t3_kwqgb3;False;False;t3_kwqgb3;/r/anime/comments/kwqgb3/did_i_spoil_myself_a_bit_too_much_legend_of_the/gj5pbjz/;1610646716;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarRufus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ScarRufus;light;text;t2_2u0vy1pk;False;False;[];;Viland Saga;False;False;;;;1610573794;;False;{};gj5pfds;False;t3_kwqjjd;False;False;t3_kwqjjd;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5pfds/;1610646794;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Byakko168;;;[];;;;text;t2_5b903zap;False;False;[];;Code:Breaker;False;False;;;;1610573916;;False;{};gj5ppms;False;t3_kwqizo;False;True;t3_kwqizo;/r/anime/comments/kwqizo/what_anime_is_this_from/gj5ppms/;1610646999;2;True;False;anime;t5_2qh22;;0;[]; -[];;;djacobsln;;;[];;;;text;t2_4oyb698c;False;False;[];;Thanks I needed to know this;False;False;;;;1610573924;;False;{};gj5pqc4;True;t3_kwqgb3;False;True;t1_gj5pbjz;/r/anime/comments/kwqgb3/did_i_spoil_myself_a_bit_too_much_legend_of_the/gj5pqc4/;1610647013;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ghost_Reaper0225;;;[];;;;text;t2_45uaigia;False;False;[];;Fate/zero;False;False;;;;1610573986;;False;{};gj5pvjd;False;t3_kwqjjd;False;False;t3_kwqjjd;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5pvjd/;1610647121;5;True;False;anime;t5_2qh22;;0;[]; -[];;;dekalabia;;;[];;;;text;t2_qqkbdrk;False;False;[];;"Monster - -Fullmetal Alchemist Brotherhood - -Legend of Galactic Heroes - -Mushishi - -Lupin the 3rd Castle of Cagliostro - -The Great Pretenders";False;False;;;;1610574008;;False;{};gj5pxb5;False;t3_kwqjjd;False;False;t3_kwqjjd;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5pxb5/;1610647158;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610574022;;False;{};gj5pyig;False;t3_kwqgkg;False;True;t1_gj5p2kz;/r/anime/comments/kwqgkg/episode_12_of_rainbow_and_im_dropping_the_show/gj5pyig/;1610647187;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610574067;moderator;False;{};gj5q29p;False;t3_kwqnlo;False;True;t3_kwqnlo;/r/anime/comments/kwqnlo/is_there_a_way_to_purchase_anime_series_directly/gj5q29p/;1610647272;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610574118;;False;{};gj5q6k6;False;t3_kwqgkg;False;True;t1_gj5p2kz;/r/anime/comments/kwqgkg/episode_12_of_rainbow_and_im_dropping_the_show/gj5q6k6/;1610647365;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;"Ginga Eiyuu Densetsu - -Macross - -Uchuu Senkan Yamato";False;False;;;;1610574147;;False;{};gj5q92t;False;t3_kwqm29;False;False;t3_kwqm29;/r/anime/comments/kwqm29/whats_a_good_galactic_wars_aliens_and_gaint/gj5q92t/;1610647421;7;True;False;anime;t5_2qh22;;0;[]; -[];;;NathanTPS;;;[];;;;text;t2_tt2rz;False;False;[];;"LMAO I was gonna say: a feral neck beard has appeared, it uses ""leer"" and feints";False;False;;;;1610574154;;False;{};gj5q9nn;False;t3_kwp48q;False;True;t1_gj5h9l6;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5q9nn/;1610647433;0;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;"These: - -* Akudama Drive -* Charlotte -* Sing ""Yesterday"" -* Franxx -* Plastic Memories";False;False;;;;1610574161;;1610574447.0;{};gj5qa8d;False;t3_kwqmyd;False;True;t3_kwqmyd;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj5qa8d/;1610647445;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SaadsIQ;;;[];;;;text;t2_4xjem7pk;False;False;[];;"Vinland saga - -Fate zero";False;False;;;;1610574198;;False;{};gj5qd9y;False;t3_kwqjjd;False;False;t3_kwqjjd;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5qd9y/;1610647515;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Terranshadow;;;[];;;;text;t2_1030xg;False;False;[];;"That's like asking for a movie that doesn't have a romance scene. Will be hard but I think I have a short one. - -Gundam 08th MS Team. - -It's a kinda Romeo and Juliet story. 13 episodes I think. Note in episode 2 or 3 there is a belief nude scene of a girl in a lake.";False;False;;;;1610574199;;False;{};gj5qdby;False;t3_kwqjjd;False;False;t3_kwqjjd;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5qdby/;1610647516;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SaadsIQ;;;[];;;;text;t2_4xjem7pk;False;False;[];;Death note;False;False;;;;1610574209;;False;{};gj5qe64;False;t3_kwqjjd;False;False;t3_kwqjjd;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5qe64/;1610647545;5;True;False;anime;t5_2qh22;;0;[]; -[];;;BethanRuby1321;;;[];;;;text;t2_76xm11t1;False;False;[];;ooh ive seen that. it’s one of my faves;False;False;;;;1610574249;;False;{};gj5qhol;True;t3_kwqjjd;False;True;t1_gj5qe64;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5qhol/;1610647614;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Allteir;;;[];;;;text;t2_9yhxelv;False;False;[];;Redemption? What kind of anime are you talking about? Cause clearly it aint this one.;False;False;;;;1610574272;;False;{};gj5qjkb;False;t3_kwp48q;False;True;t1_gj5h7gk;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5qjkb/;1610647649;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610574274;moderator;False;{};gj5qjqe;False;t3_kwqqck;False;True;t3_kwqqck;/r/anime/comments/kwqqck/any_way_to_get_cells_at_work_season_2_to_help/gj5qjqe/;1610647652;1;False;False;anime;t5_2qh22;;0;[]; -[];;;ScarRufus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ScarRufus;light;text;t2_2u0vy1pk;False;False;[];;"Of course there is reason. And J**** is a example of this. - -Th big bro was important for them so need to move forward. The next part of rainbow is about what they learn with him and continue their lives. He even had that much back ground it is a pure plot device.";False;False;;;;1610574281;;False;{};gj5qkd5;False;t3_kwqgkg;False;False;t1_gj5q6k6;/r/anime/comments/kwqgkg/episode_12_of_rainbow_and_im_dropping_the_show/gj5qkd5/;1610647665;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dekalabia;;;[];;;;text;t2_qqkbdrk;False;False;[];;"Legend of Galactic Heroes - - -Gunbuster and Diebuster - - -Macross franchise - - -Gargantua on the Verdurous Planet - - -Titania";False;False;;;;1610574289;;False;{};gj5ql24;False;t3_kwqm29;False;False;t3_kwqm29;/r/anime/comments/kwqm29/whats_a_good_galactic_wars_aliens_and_gaint/gj5ql24/;1610647677;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SaadsIQ;;;[];;;;text;t2_4xjem7pk;False;False;[];;A man of culture. Its my all time fav anime;False;False;;;;1610574290;;False;{};gj5ql5k;False;t3_kwqjjd;False;True;t1_gj5pvjd;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5ql5k/;1610647679;2;True;False;anime;t5_2qh22;;0;[]; -[];;;elibean3;;;[];;;;text;t2_5kz7hgzp;False;False;[];;oh Charlotte is a good one. I followed that one weekly and it had a strong start and then just....Wasn't Great;False;False;;;;1610574297;;False;{};gj5qlp1;True;t3_kwqmyd;False;True;t1_gj5qa8d;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj5qlp1/;1610647688;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Imaccqq;;;[];;;;text;t2_8yoti5vm;False;False;[];;"Bruh these absurd lists don't help anyone get into Fate. Just list a single show that you consider a good start and maybe what to watch immediately after that. - -If they enjoy the show *then* they'll come back and worry about where Fate/#35463 fits into the rest of the timeline.";False;False;;;;1610574299;;False;{};gj5qlwi;False;t3_kwooc1;False;False;t1_gj5gkru;/r/anime/comments/kwooc1/is_the_fate_series_worth_watchingwhat_is_the/gj5qlwi/;1610647693;-2;False;False;anime;t5_2qh22;;0;[]; -[];;;ElegantPregnantMan;;;[];;;;text;t2_1f1ldy8h;False;False;[];;"Erased had a really good start, but then the anime did _that_ ending and it just shit the bed in my honest opinion. Enjoyed it regardless but I wish the ending was a lot better, the show deserved more. - -Gintama's first ~20 episodes were quite boring and a drag to get over, but once I got past those, I got something really special and just downright funny. Definitely deserves top 5 anime ever for me.";False;False;;;;1610574343;;False;{};gj5qpjy;False;t3_kwqmyd;False;True;t3_kwqmyd;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj5qpjy/;1610647762;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SaadsIQ;;;[];;;;text;t2_4xjem7pk;False;False;[];;One of my favs aswell;False;False;;;;1610574355;;False;{};gj5qqk2;False;t3_kwqjjd;False;True;t1_gj5qhol;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5qqk2/;1610647786;2;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;I might be, it's rare to get more than one controversial show in a season, which one has people complaining about pedo grooming?;False;False;;;;1610574451;;False;{};gj5qyv1;False;t3_kwp48q;False;True;t1_gj5krvo;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5qyv1/;1610647965;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610574587;;False;{};gj5raac;False;t3_kwqmyd;False;True;t1_gj5qlp1;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj5raac/;1610648198;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrDonkuss;;;[];;;;text;t2_9jhggjef;False;False;[];;if you find it could you give me the link?;False;False;;;;1610574598;;False;{};gj5rb7e;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj5rb7e/;1610648216;0;True;False;anime;t5_2qh22;;0;[]; -[];;;NekoWafers;;;[];;;;text;t2_iau18;False;False;[];;Kabaneri of the Iron Fortress, although the sequel movie was good.;False;False;;;;1610574643;;False;{};gj5reww;False;t3_kwqmyd;False;False;t3_kwqmyd;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj5reww/;1610648288;8;True;False;anime;t5_2qh22;;0;[]; -[];;;DroogMuster;;;[];;;;text;t2_2jnnt6el;False;False;[];;The difference is that Re:Zero is better than SAO;False;False;;;;1610574665;;False;{};gj5rgro;False;t3_kwqu2m;False;True;t3_kwqu2m;/r/anime/comments/kwqu2m/rezero_sword_art_online_s_a_very_similar_kisss/gj5rgro/;1610648325;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Low effort much?;False;False;;;;1610574696;;False;{};gj5rjcg;False;t3_kwqu2m;False;True;t3_kwqu2m;/r/anime/comments/kwqu2m/rezero_sword_art_online_s_a_very_similar_kisss/gj5rjcg/;1610648383;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;"It's not that bad. It's just main story, then prequel, then the spinoffs. And if you're starting out, you can just ignore the spinoffs for now and just focus on the main story and prequel. - -Easy";False;False;;;;1610574713;;False;{};gj5rkr3;False;t3_kwooc1;False;True;t1_gj5qlwi;/r/anime/comments/kwooc1/is_the_fate_series_worth_watchingwhat_is_the/gj5rkr3/;1610648410;2;True;False;anime;t5_2qh22;;0;[]; -[];;;StanleyBaccano;;;[];;;;text;t2_7lg0cwam;False;False;[];;As a big fan of oreigaru: yeah, but it’s all in good fun;False;False;;;;1610574722;;False;{};gj5rlj2;False;t3_kwmp0m;False;False;t1_gj52tew;/r/anime/comments/kwmp0m/yukinon_is_so_kkawaaiiiiii_oregairumy_youth/gj5rlj2/;1610648428;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Ghost_Reaper0225;;;[];;;;text;t2_45uaigia;False;False;[];;"Masterpiece level - -Unlimited budget works man, they never disappoint";False;False;;;;1610574765;;False;{};gj5rp3t;False;t3_kwqjjd;False;True;t1_gj5ql5k;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5rp3t/;1610648502;3;True;False;anime;t5_2qh22;;0;[]; -[];;;basuga_BFE;;;[];;;;text;t2_l8vzif1;False;True;[];;"Tokyo Godfathers (movie) - -The Promised Neverland - shounen and thriller";False;False;;;;1610574788;;False;{};gj5rr0m;False;t3_kwqjjd;False;True;t3_kwqjjd;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5rr0m/;1610648540;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Imaccqq;;;[];;;;text;t2_8yoti5vm;False;False;[];;"You will NEVER find a consensus on what the proper place to start Fate anime is. - -Try Fate Stay/Night Unlimited Blade Works (2014). If you think it sucks try Fate/Zero instead. - -If either show hooks you, check out the Fate subreddit when you're done and look at their watch order guide. By that point you'll actually have a reason to care and not be pushed away by the noise.";False;False;;;;1610574828;;False;{};gj5ru94;False;t3_kwooc1;False;True;t3_kwooc1;/r/anime/comments/kwooc1/is_the_fate_series_worth_watchingwhat_is_the/gj5ru94/;1610648605;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Etereke32;;;[];;;;text;t2_11qhl2;False;False;[];;I haven't seen it, but I legit want to watch it after the things I've heard about it. Not even for the drama, I don't really care about that, but because sometimes I just like to see some genuinely fucked up stuff. Like, IRL gore/rape and stuff like that disgusts me to no end. Fantasy gore/rape though? It just doesn't hit the same as the real deal. Somehow the knowledge that it's not real takes the edge away for me, and makes it intriguing rather than disgusting. Something like a forbidden curiosity.;False;False;;;;1610574888;;False;{};gj5rz8f;False;t3_kwp48q;False;True;t3_kwp48q;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5rz8f/;1610648705;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hi laitineeww_, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610574962;moderator;False;{};gj5s5ae;False;t3_kwqyvm;False;True;t3_kwqyvm;/r/anime/comments/kwqyvm/looking_for_some_recommendations/gj5s5ae/;1610648829;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Ainine9;;;[];;;;text;t2_kwrcn;False;False;[];;"Mushoku Tensei is the one that I think people complaining about pedo grooming, it's the one that redeems itself overtime. - -Redo of Healer is the one where it should have been a hentai doujinshi.";False;False;;;;1610574988;;False;{};gj5s7kg;False;t3_kwp48q;False;True;t1_gj5qyv1;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5s7kg/;1610648873;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SliderGamer55;;;[];;;;text;t2_xu233;False;False;[];;The internet has made me really sick of controversial shows and movies and games, especially since half the time the controversy is largely imagined.;False;False;;;;1610575004;;False;{};gj5s8ud;False;t3_kwp48q;False;True;t3_kwp48q;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5s8ud/;1610648898;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ultimatemegax;;;[];;;;text;t2_6g6sj;False;False;[];;"Japanese animation is usually, though not always, funded by a group of companies that are called a ""production committee."" These companies fund the production of a show including providing a set amount of money to produce the animation, another amount for audio production, and so forth. The companies on that committee recoup their money by various ways to get revenue. One such form is through selling international rights. The committee sold Aniplex of America at least the simulcast, digital distribution, and home video for North America and Funimation bought simulcast rights from Aniplex. - -So by watching it on Funimation, you're supporting the people who created it. The committee for the main Cells at Work series include the company who produced the animation, david animation, so they'll get some of the amount that Funimation paid (depending on how contracts were set up). So if you want to support them, the easiest way is to simply watch via Funimation.";False;False;;;;1610575011;;False;{};gj5s9de;False;t3_kwqqck;False;True;t3_kwqqck;/r/anime/comments/kwqqck/any_way_to_get_cells_at_work_season_2_to_help/gj5s9de/;1610648908;2;False;False;anime;t5_2qh22;;0;[]; -[];;;milpicv2;;;[];;;;text;t2_6hpoqg5i;False;False;[];;Violet evergarden? Pretty cool and it's really original + you'll both cry like babies;False;False;;;;1610575145;;False;{};gj5skgf;False;t3_kwqjjd;False;True;t3_kwqjjd;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5skgf/;1610649135;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610575148;;False;{};gj5skp2;False;t3_kwqyvm;False;True;t3_kwqyvm;/r/anime/comments/kwqyvm/looking_for_some_recommendations/gj5skp2/;1610649141;1;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;Gotcha, that's my bad then. Apologies for the misunderstanding, I'll pull my original comment.;False;False;;;;1610575168;;False;{};gj5smf6;False;t3_kwp48q;False;True;t1_gj5s7kg;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5smf6/;1610649180;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Stedy13;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Stedy13;light;text;t2_3xex17mi;False;False;[];;"You have a bunch of options, I’ll list some here that I’ve watched recently that are short but pretty good: - -Mob Psycho 100 - -91 Days - -Promised Neverland - -Death Parade - -FLCL (it’s pretty wild)";False;False;;;;1610575180;;False;{};gj5snh2;False;t3_kwqyvm;False;True;t3_kwqyvm;/r/anime/comments/kwqyvm/looking_for_some_recommendations/gj5snh2/;1610649204;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cynderaquil;;;[];;;;text;t2_3hyccqum;False;False;[];;Deadman Wonderland. It is really good with the story at the start following the manga but it strays from the manga and the story fizzled and ended with a BS ending. It was truly a let down especially for those who never read the manga because none of the questions were answered. If you stray from the manga source, please don’t leave everyone in the dark especially the own MC;False;False;;;;1610575196;;False;{};gj5sopp;False;t3_kwqmyd;False;False;t3_kwqmyd;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj5sopp/;1610649234;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BethanRuby1321;;;[];;;;text;t2_76xm11t1;False;False;[];;that isn’t the type of thing he likes but i wanna watch it. i don’t cry at anything so i’m trying to find an anime to make me cry 😂😂😂;False;False;;;;1610575214;;False;{};gj5sq7s;True;t3_kwqjjd;False;False;t1_gj5skgf;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5sq7s/;1610649268;2;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;False;[];;"**Rewatcher** - -I am not exaggerating when I say that this episode is absolutely incredible. A real shift occurs… everything that’s happened so far hasn’t made Haruka confront her own fears, her own problems, and she hasn’t been forced to take any real action herself. For the most part, it’s as if she’s been just along for the ride. - -Here, however, she is finally starting to understand her role and importance in this whole scheme. And Karasu in danger, she must finally step up to the plate. She must begin to confront everything that has happened. - -Presentation-wise, episode 12 hits it out of the park. Not only the animation within the fights, but also when the focus is on Haruka – and when the torque appears. Finally, it feels like we’re getting the pay-off to which all of the tension has built. - -RIP Fukuro… - -On all fronts this episode is highly impressive (at least in my opinion)!";False;False;;;;1610575252;;False;{};gj5stbx;True;t3_kwr2mu;False;False;t3_kwr2mu;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5stbx/;1610649328;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;"**to your other first-timer, subbed** - -- I… do not like that dream that Haruka had at the start of the episode… - -- [](#thinkingtoohard) So who *is* Kosagi the La’cryma version of? The only person I can think of who would be close to Fukuro and the others is Miho, but I *really* can’t see that goofball acting like this in the future, especially since Lily exists and is totally Miho 2.0. I guess Kosagi *could* be completely unrelated since Tobi, Atori, and Kuina don’t have obvious Earth versions, though. - -- [This is how it goes in *other* anime…](https://i.imgur.com/H5vpHZi.png) - -- Karasu is still a very touchy subject around Yuu, huh. - -- \*whistles\* Hello there sakuga. And Casshern Sins vibes once again. - -- [~aesthetic black bars~](https://i.imgur.com/cX8AlWU.png) - -- Weird old guy is… just wandering around time… and “reality” becomes reality by Haruka seeing it. - -- [Oh no no no I do not like this.](https://i.imgur.com/A48J2lj.png) - -- [We’re back at Haruka’s dream and it’s actually happening…](#panic) - -- And now Atori’s shown up, *fuck*. - -- [Sound??? Where did you go???](#dontgetit) - -- Okay apparently it was a known issue and the person behind the release provided a download V2 with sound, acquired that. - -- [Good lord Atori!](#terror) But he’s gone now, this time *probably* for good. - -- [NOEIN!](https://i.imgur.com/3U9BDln.png) - -- [](#howcouldyou) - -- [](#trynottocry)";False;False;;;;1610575263;;False;{};gj5su7j;False;t3_kwr2mu;False;False;t3_kwr2mu;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5su7j/;1610649346;10;True;False;anime;t5_2qh22;;0;[]; -[];;;BurningFredrick;;MAL;[];;https://myanimelist.net/profile/BurningFredrick;dark;text;t2_74w5s;False;False;[];;"First timer - sub  - - -~~19:50 lost sound…. Well that's a great way to ruin the climax of an episode….~~ - - -~~Atori shows up, throws Fukuro across the room, all sound is lost no matter if I go dub or sub, also tried a few different players, god damn release…~~ - - -~~So Karasu & Fukuro team up to kill him, then Noein shows up and kills Fukuro. I assuming we had an appropriate soundtrack as the OST hasn’t disappointed of the tracks I have noticed so far.~~ - - -Wait i’m an idiot, I had completely forgotten there was a separate file for episode 12… still ruins any impact it could have had watching without sound the first time around. I clipped the final 5ish mins [here](https://streamable.com/d3a1qr) for anyone else who forgot or is missing the audio. - - -So Noein believes the future is fixed and unchangeable however I'm fairly sure this would be in complete contraction to the Multiverse theory where all possibilities exist.  - - -I had been debating if Karasu would die in this episode, but it didn’t feel like the right time so him still being around isn’t that much of a surprise, however Fukuro going out was unexpected.  - - -I enjoyed the rougher art style they used for the fight scenes, but don’t think too much left to comment on, Atori gone so now Noein is going to steep out of the shadows, also apparently does have arms and isn’t just a floating mask. ";False;False;;;;1610575287;;False;{};gj5sw6q;False;t3_kwr2mu;False;False;t3_kwr2mu;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5sw6q/;1610649382;7;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;"**Episode 12 (rewatcher)** - -* What is the opposite of a cliff-hanger called? We have it here. -* Haruka’s phonecall with her dad shows us something in the subtext: She trusts her dad enough to ask him for advice and he has a good enough relationship with her that answering comes naturally to him. -* Yuu is still envious of himself. -* Haruka is using the Dragon Torque again and lands in the dimension of different screen resolution. -* Everybody is showing up for the duel. - -The fight animation still looks rather good. Not much to say about the plot, though.";False;False;;;;1610575295;;False;{};gj5swuh;False;t3_kwr2mu;False;False;t3_kwr2mu;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5swuh/;1610649395;11;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"They probably will release the blu ray but considering Aniplex got it they are pricing it closer to how JP blu rays are which basically are like collectors items. S1 costs like $140 for a 12 episode show. If you want more physical content that is cheaper the manga is an option. - -Regardless of the issues that people do have with them Funimation and CR do support the production of shows so you watching does support the continuation of content. Same with Netflix. The issue was more how supporting animators got brought up into discussion which Funi and CR aren't making major changes to the industry itself. That is a whole different issue and something that isn't going to change without internal change. Something we can't really effect.";False;False;;;;1610575307;;False;{};gj5sxqt;False;t3_kwqqck;False;True;t3_kwqqck;/r/anime/comments/kwqqck/any_way_to_get_cells_at_work_season_2_to_help/gj5sxqt/;1610649412;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;[Re:Zero](https://myanimelist.net/anime/31240/Re_Zero_kara_Hajimeru_Isekai_Seikatsu);False;False;;;;1610575323;;False;{};gj5sz2k;False;t3_kwqyvm;False;True;t3_kwqyvm;/r/anime/comments/kwqyvm/looking_for_some_recommendations/gj5sz2k/;1610649438;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;Code geass. The first few episodes were really interesting but towards the end it became boring and it's one of my least favourite anime.;False;False;;;;1610575331;;False;{};gj5szqr;False;t3_kwqmyd;False;False;t3_kwqmyd;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj5szqr/;1610649451;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;"First timer - -Sub - -Haruka dreams of a future she doesn't like. Baron notices. As Fukuro ponders the upcoming fight, Kosagi comes in and, for lack of a better way of saying it, has not met her developmental markers. This version is still acting like a heartbroken thirteen year old. - -Haruka is on the phone with her dad and we get some characterization for him. She asks how to stop the fight and her father says the exact same thing I would in that context: In adolescence, you sometimes let two boys fight it out. However, she is trying to separate two adults that have come to the sad conclusion they need to fight to the death so that wouldn't really apply. Fujiwara earns bro points, assuming this is not an idle chat. Yuu is again a bit more self aware than expected but it might explain his own edginess. Haruka shows up looking for Karusu and Yuu immediately becomes a dick because he is jealous of his future self which does not bode well for his wardrobe. - -Jump to Karasu and Fukuro ready to fight. The change in OST and animation style is jarring here and I don't particularly like it. The beam spam part of the fight is a bit better but man, they are messing up our dimension. Haruka is trying to use the DT to limited effect, at first I thought this nuked her senses until she dimension jumps. Also, with the bars, we are literally RahXephon now. Oh, and Haruka is totally the Absolute Observer, the fuck that ultimately means. - -Fight continues, Atori wants in on it, Haruka calls in her friends. Yuu mopes. Uchida and Koriyama talk in a scene that is kind of...there. More fighting, and then people talking about what lets them sleep at night versus Karasu's Haruka conservation campaign. - -Tobi teleports in on Yuu, who shows decent self-control. Looks like, Haruka is teleporting to the ending action. She wills...something and the action slows down. Oh hai Noein. This dimension is now different than her dream since Fukuro isn't dead. And Atori shows up and is a squid. Eww. He bolts Karasu and fights Fukuro for a while, having the advantage until Karasu gets back up. Also, did anyone else's sound cut out after this? Anyways, we see Atori get vaporized. He was interesting but he pretty much has been ready to drop. - -And Noein does something...in killing Fukuro. F. This scene was probably pretty good if it had sound. Anyways, now everyone can see the blue snow so shit is probably getting real. (I got the version with sound after writing this and it actually strikes me as well done) - -QotD: 1 Baron's. The world will be covered in bacon. - -2 Its Yuu's the whole way down - -3 I am surprisingly positive on it. The setting itself gives you obvious speed bumps but they adapted those in to the story itself.";False;False;;;;1610575354;;False;{};gj5t1je;False;t3_kwr2mu;False;False;t3_kwr2mu;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5t1je/;1610649485;10;True;False;anime;t5_2qh22;;0;[]; -[];;;hawtestkitty_art;;;[];;;;text;t2_7cnt4m15;False;False;[];;maybe inuyashiki or parasyte: the maxim...tho maybe too sci fi? i do think they have horror and shounen elements;False;False;;;;1610575364;;False;{};gj5t2fe;False;t3_kwqjjd;False;False;t3_kwqjjd;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5t2fe/;1610649501;3;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;False;[];;"> This is how it goes in other anime… - -It's ironic how they've made light of this trope twice - here and also back in episode 4 or 5 when Haruka and Ai got into that slap fight with the jovial music playing in the background.";False;False;;;;1610575371;;False;{};gj5t2zx;True;t3_kwr2mu;False;False;t1_gj5su7j;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5t2zx/;1610649511;8;True;False;anime;t5_2qh22;;0;[]; -[];;;BethanRuby1321;;;[];;;;text;t2_76xm11t1;False;False;[];;ooh he loves sci fi so maybe tyyy;False;False;;;;1610575403;;False;{};gj5t5l4;True;t3_kwqjjd;False;True;t1_gj5t2fe;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5t5l4/;1610649560;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Seizure warning much?;False;False;;;;1610575417;;False;{};gj5t6qm;False;t3_kwr1wh;False;True;t3_kwr1wh;/r/anime/comments/kwr1wh/is_this_cool_it_was_very_hard_to_make/gj5t6qm/;1610649582;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CubeStuffs;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/onjario;light;text;t2_eh59b;False;False;[];;"**1st time** - -the arm that the Eva regenerates is looking oddly human now that the restraints have been broken. - -It also seems that gendo finally got what he was looking for, but what could an unchained Eva be for?";False;False;;;;1610575438;;False;{};gj5t8hp;False;t3_kwr188;False;False;t3_kwr188;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj5t8hp/;1610649616;11;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your submission has been removed. - -- This doesn't appear to be about [anime per our definition](https://www.reddit.com/r/anime/wiki/rules#wiki_everything_posted_here_must_be_anime_specific). - - -- This looks like it's - a short video edit. - This is a form of restricted content that isn't allowed as a full post on the sub. You might consider posting about this sort of thing in the [weekly Casual Discussion Fridays megathread](https://www.reddit.com/r/anime/search?q=title%3A%22Casual+Discussion+Fridays%22+subreddit%3Aanime+author%3AAnimeMod&restrict_sr=on&sort=new&t=week) if it applies. See [our rules page](https://www.reddit.com/r/anime/wiki/rules#wiki_restricted_content) for a full list of restricted content categories. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610575451;moderator;False;{};gj5t9gf;False;t3_kwr1wh;False;True;t3_kwr1wh;/r/anime/comments/kwr1wh/is_this_cool_it_was_very_hard_to_make/gj5t9gf/;1610649635;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ElSanju;;;[];;;;text;t2_gcz6h;False;False;[];;Fairy tail (finale series) uses the first opening (from Fairy tail 2009) in the middle of the last episode;False;False;;;;1610575465;;False;{};gj5takr;False;t3_kwo0mn;False;True;t3_kwo0mn;/r/anime/comments/kwo0mn/which_anime_end_the_final_episode_with_the_first/gj5takr/;1610649657;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hawtestkitty_art;;;[];;;;text;t2_7cnt4m15;False;False;[];;oh nice! you might try some classic movies like akira or ghost in the shell. it's awesome you're gonna watch with your dad : );False;False;;;;1610575467;;False;{};gj5tas5;False;t3_kwqjjd;False;True;t1_gj5t5l4;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5tas5/;1610649661;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tyrant454;;;[];;;;text;t2_55cphhks;False;False;[];;"* Cowboy bebop -* Hellsing -* Black lagoon -* phantom requiem for the phantom -* Trigun -* Plastic memory -* Fullmetal Alchemist -* Honobono Log -* Mirai Nikki -* Steins gate";False;False;;;;1610575468;;False;{};gj5tav1;False;t3_kwqjjd;False;True;t3_kwqjjd;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5tav1/;1610649664;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CommissionLonely;;;[];;;;text;t2_6xynxt8o;False;False;[];;Thank you so much!;False;False;;;;1610575475;;False;{};gj5tbdh;True;t3_kwnjp1;False;True;t1_gj5714f;/r/anime/comments/kwnjp1/some_good_horrorthriller_anime_recommendations/gj5tbdh/;1610649674;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;False;[];;"###First Timer -I'm sad I missed yesterday, as it's possibly the best episode so far. Now that the mom's out of the way, we got actually interesting character drama. It was nice seeing how Isami cared and how he decided to deal with that situation. We also got far more interesting scenes with the birds than we usually get. I'm looking forward to what the next episode brings. Onto episode 12. - -Wait, how did we get to this [building](https://i.imgur.com/BZ1YFRs.png)? It's a vision, right? - -All the technoblabble around their magic is a weird contrast with them wanting us to take what they're doing seriously. Apparently him wavering his reizu is bad, but since I have no fuckin' clue what any of that means, I can't really judge it. - -From [his perspective](https://i.imgur.com/HmUXRTs.png), you all are betraying your friendship towards Haruka. - -Wow, that's [harsh](https://i.imgur.com/ap7E9Jj.png). I guess she's not normally the type, and this is just an excuse to vent her rage? - -The birds are such a dysfunctional group. If you can even call them a group with their lack of cohesion. - -Some real nice [animation](https://files.catbox.moe/rlbj1d.mp4) with a soccerball. - -[Even](https://i.imgur.com/t6PH3pj.png) if they weren't trying to kill each other, that doesn't sound right. Just trusting stuff to fizzle out is very questionable. - -He's [tellin' you](https://i.imgur.com/1KRpHnB.png) it ain't what you wanna do. Suggesting out of solidarity to a friend is nice, but it's not the best choice for you own life. - -So you have to [make it yourself](https://i.imgur.com/XxqJoBZ.png), no? You've got a universe of possibilities in front of you, what shall you choose? - -Yuu feels like she rejected him for Karasu. He doesn't realize her giving him more attention at the moment doesn't mean she likes him more. Eh, that's just kids for you. - -I love the sketchy animation in the fight. - -What did [Haruka do](https://i.imgur.com/f3piGMH.png), create a world without problems? - -Ah, a [world](https://i.imgur.com/6YcQ5LP.png) where nothing went wrong, where her parents never broke up. - -The [key word](https://i.imgur.com/YaYyLC1.png) here is ""your."" If she was the absolute observer, it would simply become reality. However, she currently can just choose what path she takes. - -Not if you [stop it](https://i.imgur.com/w6yPN03.png). Choose something else, believe something else, and it shall be so. - -[wwwwwwwwwwwwwwwwwwww](https://i.imgur.com/eJcno41.png). These two work so well together. - -Not the [worst pickup line](https://i.imgur.com/6qyTi0v.png) I guess. - -Every [possibility](https://i.imgur.com/AZuaWRh.png) is real. Or at least real enough to matter. - -His mom's [far more terrifying](https://i.imgur.com/Rs9MwBT.png). - -[Of course.](https://i.imgur.com/7YDT8St.png) He just called it real you numbskull. - -Now [Haruka](https://i.imgur.com/3EffWDL.png), what shall you do? Will you accept it? Or will you reject this reality and replace it with your own? - -But doesn't Noein want to [protect her](https://i.imgur.com/HMrwEXq.png)? - -Ah, [Noein is the victor](https://i.imgur.com/dyEsSIN.png) and it's preserving it's victory. It helps whichever accomplishes that. - -The different realities are seeping closer together. At least that's what I think everyone seeing the blue snow means. - -####Thoughts -Ah, the show's coming through properly at last. I've doubted 'till now weather it'd manage to pull through properly, but after seeing this episode I'm confident. Sorry I doubted 'till now u/phiraeth. - -1. Haruka's wish -2. Haruka becomes the absolute observer -3. It has had some rough spots, but it seems to have done a good job setting up potential for the second half in the end.";False;False;;;;1610575477;;1610575736.0;{};gj5tbks;False;t3_kwr2mu;False;False;t3_kwr2mu;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5tbks/;1610649677;9;True;False;anime;t5_2qh22;;0;[]; -[];;;CommissionLonely;;;[];;;;text;t2_6xynxt8o;False;False;[];;Thanks!;False;False;;;;1610575487;;False;{};gj5tcfy;True;t3_kwnjp1;False;True;t1_gj578r1;/r/anime/comments/kwnjp1/some_good_horrorthriller_anime_recommendations/gj5tcfy/;1610649694;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610575488;;False;{};gj5tcja;False;t3_kwqxey;False;True;t3_kwqxey;/r/anime/comments/kwqxey/do_you_have_an_anime_that_has_characters_facial/gj5tcja/;1610649695;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Massaman95;;;[];;;;text;t2_zxb3m;False;False;[];;To be fair, Edward makes a lot of noise. I don't think fathers can handle that.;False;False;;;;1610575494;;False;{};gj5td0w;False;t3_kwqjjd;False;False;t1_gj5pxb5;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5td0w/;1610649705;4;True;False;anime;t5_2qh22;;0;[]; -[];;;CommissionLonely;;;[];;;;text;t2_6xynxt8o;False;False;[];;Thank you!;False;False;;;;1610575499;;False;{};gj5tdf9;True;t3_kwnjp1;False;True;t1_gj5ao0k;/r/anime/comments/kwnjp1/some_good_horrorthriller_anime_recommendations/gj5tdf9/;1610649712;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BethanRuby1321;;;[];;;;text;t2_76xm11t1;False;False;[];;ooh ive heard loads of good things abt akira and tyyyyy;False;False;;;;1610575516;;False;{};gj5tet2;True;t3_kwqjjd;False;True;t1_gj5tas5;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5tet2/;1610649738;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CommissionLonely;;;[];;;;text;t2_6xynxt8o;False;False;[];;I will! Thank you for the suggestions!;False;False;;;;1610575518;;False;{};gj5teyd;True;t3_kwnjp1;False;True;t1_gj5eztg;/r/anime/comments/kwnjp1/some_good_horrorthriller_anime_recommendations/gj5teyd/;1610649741;1;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"As people have said Legend of the Galactic Heroes is pretty much the big space opera anime out there. Start with the films My Conquest is A Sea of Stars and Overture to a New War and skip to episode 3. Overture covers the plot of the first two episodes much better with way more detail and it introduces the world building and characters much more slowly instead of throwing it at you like the first two episodes do. After you finish the OVA there is the Gaiden prequels and the remake which while I like the original more the remake isn't bad. - -Space Battleship Yamato is great too. Classic humanity vs aliens. Both the remake and original are worth watching. - -Crest of the Stars and Armored Trooper Votoms are others you might want to look at. - -Mobile Suit Gundam also is a great franchise to get into. I would try a standalone AU series like Iron Blood Orphans to see if it's for you. If you want to get into the main UC timeline the only one you need a watch order for just respond.";False;False;;;;1610575527;;False;{};gj5tfog;False;t3_kwqm29;False;True;t3_kwqm29;/r/anime/comments/kwqm29/whats_a_good_galactic_wars_aliens_and_gaint/gj5tfog/;1610649755;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tasthar;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tasthar;light;text;t2_1fhlyiyc;False;False;[];;Dororo. Amazing first half, incredibly mediocre second half.;False;False;;;;1610575529;;False;{};gj5tftm;False;t3_kwqmyd;False;False;t3_kwqmyd;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj5tftm/;1610649759;13;True;False;anime;t5_2qh22;;0;[]; -[];;;dekalabia;;;[];;;;text;t2_qqkbdrk;False;False;[];;That is true, though for the subject matter FMA depicts. That’s a worthwhile sacrifice.;False;False;;;;1610575542;;False;{};gj5tgvl;False;t3_kwqjjd;False;True;t1_gj5td0w;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5tgvl/;1610649779;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;"**First Timer** - -Mostly a fight this episode. I'm not a fan of the sketchy animation style for it — it looked like a rough draft or storyboard. I've seen that style used really well in fights (e.g. God of High School), but used for a climatic moment and with a lot more detailed linework. I think the lack of detail and overuse here washed out the excitement that style can bring. What's more is that it felt arbitrary when they used it. They used it for the first clash, but the standard animation for the second one later in the episode. The arbitrary use leaves me confused as to what purpose it's meant to serve. The fight itself didn't excite me much as I'm still not very invested in the characters or the world. If they both died I wouldn't even be upset. I want the show to do more to make these characters real and interesting, because at the moment they feel disposable. - -Haruka's dad seems like an alright bloke. Friendly over the phone, but pretty absent if he's only comibg every three months. - -Is it just me or is Yuu suddenly several shades paler? Also please just talk to Haruka, Yuu, it will honestly solve all your problems. - -Explanation of Haruka's power: She sees it and it becomes reality. Okay. That's not exactly how it's worked in the past, by I guess I'll roll with it. - -Ai crying at the end of the episode felt really cheap. I know it's because Fukurou's dead, but what space-time Tom-foolery would make her sad because of that? She doesn't know he's dead or that he's future alternate dimension Fujiwara (even if a future alternate dimension version of the boy you have a crush on dying would make you sad). La'cryma Ai doesn't know he's dead either so there's no way there could be some convoluted link there either. I think they just wanted it to be a symbolic, emotional moment, but didn't think at all how it would logically make sense. - -*** - -**Episode Discussion Questions** - ->Next episode is titled ""The Wish"". Whose wish will this be, and what will it be? - -Haruka's wish to stop the fighting, maybe to bring Fukurou back. - ->Now that we're halfway through, any thoughts on how this might end? - -Haruka saves the day with the Dragon Torque somehow. - ->What are your general thoughts on the first cour of Noein - what did you think of it? - -Its not great. The animation is often bad, it has weird switches between genres and the story and characters are more confusing than engaging. I'm still holding out to see what makes this show a 9, because at the moment I'd probably give it a 4.";False;False;;;;1610575557;;False;{};gj5ti3k;False;t3_kwr2mu;False;False;t3_kwr2mu;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5ti3k/;1610649803;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Svenke5;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SvensBirds;light;text;t2_597u9;False;False;[];;Yeah, that's fair but sometimes there's notorious ones I could find out about or little gems here and there I may not considered before. Not looking necessarily for a comprehensive list, just some advice on what to look into :);False;False;;;;1610575575;;False;{};gj5tjjd;True;t3_kwm98h;False;False;t1_gj4yrru;/r/anime/comments/kwm98h/what_anime_blurays_would_you_recommend_people_get/gj5tjjd/;1610649831;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hawtestkitty_art;;;[];;;;text;t2_7cnt4m15;False;False;[];;yee it's kinda out there but influential/a classic for a reason. no prob!;False;False;;;;1610575582;;False;{};gj5tk2s;False;t3_kwqjjd;False;True;t1_gj5tet2;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5tk2s/;1610649841;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;"**First-Timer, Dubbed** - -Well, that was certainly an episode. Karasu and Fukuro finally stop teasing it and spend most of the episode duking it out. I’m trying to remember if we have seen blood before, but we definitely got some this episode. The weird, extra-sketchy style for the first part of the fight was.. interesting. Was it because someone thought it was a good idea? Or some artsy, “ooooh things are getting weeeiiird!” thing? - -Also, Atori briefly interferes and has gone even deeper into the body horror world; I’m here for it. Unfortunately, the big goober seems to have finally met his end. - -Haruka’s powers continue to defy expectation - so powerful is the Dragon Torc, it can even alter the aspect ratio! Joking aside, I think that’s actually a clever way to keep the audience from being confused by the sudden location change. - -We do finally get a bit of explanation on how it works - it isn’t quite that Haruka’s desires are made manifest. It turns out that Haruka’s spiel to Amamiku several episodes was more accurate than any of us thought - she can make things real by observing them in an alternate dimension. - -[Speculation](/s ""This, I think, leads into Noein’s comment about the future never changing. Haruka can’t change the future because she creates the future, effectively."") - -At the end of the episode Noein makes their move and gives Fukuro a friendly hug of death. He also seemed to be able to force the flow of time to resume after it stops. - -I’m not ruling out the possibility of a large time skip yet, but it certainly isn’t at the cour split like I thought it would be. We still have to meet Haruka’s dad! - -I liked Ai crying at Fukuro’s death without knowing it until I thought some more about it. I think it would have made sense if Isami felt some pain and she tried to help him or something. - -Only three birds are left - and Tobi likely doesn’t have much time. The pendulum swings towards darkness.. - -Questions - -1. Haruka wishes to go back to the beginning and we get our time loop. - -2. Two characters ride off into the sunset romantically. Which two? Who knows! - -3. On the one hand, we have had stuff like the “Yuu’s mom” subplot which sucked. On the other, the action scenes have been pretty good, and the various mechanisms the plot uses to keep itself going lend themselves to the variety of nonsensical theorizing that I enjoy.";False;False;;;;1610575592;;1610577620.0;{};gj5tkv7;False;t3_kwr2mu;False;False;t3_kwr2mu;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5tkv7/;1610649856;8;True;False;anime;t5_2qh22;;0;[]; -[];;;alimakki659;;;[];;;;text;t2_5hmljwo4;False;False;[];;Original and remake in a sense of hxh original and remake?;False;False;;;;1610575605;;False;{};gj5tlz4;True;t3_kwqm29;False;True;t1_gj5tfog;/r/anime/comments/kwqm29/whats_a_good_galactic_wars_aliens_and_gaint/gj5tlz4/;1610649877;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;False;[];;">I… do not like that dream that Haruka had at the start of the episode… - -Does it remind you of dreams you've had? - ->Karasu is still a very touchy subject around Yuu, huh. - -A version of yourself that's both a terrible human being and better than you isn't exactly a nice topic to think about.";False;False;;;;1610575616;;False;{};gj5tmud;False;t3_kwr2mu;False;False;t1_gj5su7j;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5tmud/;1610649893;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazzlike-Horror-5508;;;[];;;;text;t2_8xtnal4g;False;False;[];;link pls;False;False;;;;1610575618;;False;{};gj5tn0n;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj5tn0n/;1610649897;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;zsmg;;;[];;;;text;t2_ivuw5;False;False;[];;"**Rewatcher** - -Koji is missing an arm and leg. :( Honestly class rep this is the perfect time to be a bit more honest about why you're there. I'm not saying she should confess but at least saying 'I care about as a friend' would be better. - -The best way to describe the fight that it's brutal. It wipes the floor with Asuka, in the Angel's first attack she loses both her arms and in the second her head poor girl. [spoiler](/s ""Asuka's suffering doesn't end here sadly enough :( "") Rei's kamikaze run is futile. It also feels like the Angel was playing with the deactivated 01. Just casually hitting the chest/plug over and over again surely it could have destroyed it in a single hit? -But the way the berserking 01 destroys the angel like some sort of animal eating the prey was very uncomfortable to watch. I guess seeing a human, or human-form in this case, act like an animal does that.";False;False;;;;1610575643;;False;{};gj5tp0g;False;t3_kwr188;False;False;t3_kwr188;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj5tp0g/;1610649933;6;True;False;anime;t5_2qh22;;0;[]; -[];;;JustAnswerAQuestion;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JAaQ/;light;text;t2_66xzcvc;False;False;[];;"**First Timer** - -Okay, I was warned ahead of time that episode 12 was broken. I could fall back onto Shinsen-Subs but they did miss old-man's / Noein's dialog back in episode 2. So now I have a dvd-rip from a different, well regarded group. (the subs are the same, though, so it's the official translation's fault) - -In the new subs, Shnohara's chat session is translated. It basically says that science consults are just looking for a paycheck and that women are the worst. - -The question left from yesterday is the ridiculous coincidence that Haruka's father is also the former head of the Magic Circle Project. Either somehow he knew of the upcoming event in Hakodate, and made Haruka the Dragon Torque, or he knew in hindsight and went back in time to make Haruka the Dragon Torque. - -* Okay, I'm assuming this is a premonition and not a missing episode.... -* Maybe Haruka can get Yuu and Isami to get Fukuo and Karasu to stop fighting -* This battle music is reminding me of something, I'm pretty sure it's Escaflowne -* 18 minutes in, I'm asking, why Karasu hasn't gone super seiyan yet -* [Noein's face moved](https://www.youtube.com/watch?v=ShnhH3PxGGg) -* Haruka should just delete Atori ^(but he's actually Gollum!) -* So Noein is working against Haruka now, keeping the timeline on track - -I didn't understand what the Ender's Game reference was supposed to be, but I guess it was the Ansible? That was borrowed from Le Guin, btw. - -Nothing in quantum mechanics allows FTL communication, so no matter how much they lecture on physics, it's all still just made up sci-fi in the end.";False;False;;;;1610575659;;False;{};gj5tqdq;False;t3_kwr2mu;False;False;t3_kwr2mu;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5tqdq/;1610649960;10;True;False;anime;t5_2qh22;;0;[]; -[];;;BossandKings;;;[];;;;text;t2_5ifr53k7;False;False;[];;"Haruka starts the episode dreaming, in her dream Furuko and Karasu fight, they clash. I think that this could be foreshadowing their next encounter which will probably be a fight. - -Oh Yuu is so cute getting jealous about Haruka, the latter is worried because she thinks that what she experienced in her dream is something that will happen and so she is looking for Karasu who isn't anywhere to be seen, she asks Isami and Yuu to help her and Yuu's reaction is that of someone who is seemingly in love with the person asking and shows jealousy which is baseless because he doesn't have to worry about Karasu since he won't compete with him for her attention. This is inmature on his part but he's a kid anyway. - -Finally it happens, Karasu and Fukuro encounter. -It's a good give and take of fists. Their weapon arms remind me of Edward's automail. Seemingly karasu's fault, that's apparently why Furuko holds a grudge against him. Atori arrives to join the fight because he wanted to fight them, okay that was amazing, Atori gets defeated after a combined attack by them. - -Seeing Haruka's experience reminds me how i have thought that although impossible it would be cool for multiple selfs of me to exist in different dimensions. - -It happens, Haruka's dream becomes reality, the exact same sequence of Furuko's and Karasu's fight. - -This is some crazy stuff, shit, this is sad - -Answers - -1. I hope it's Isami's wish - -2. The future episodes are uncertain for me, it's difficult to predict where this will go - -3. It was great, 8/10 material";False;False;;;;1610575668;;1610575985.0;{};gj5tr2c;False;t3_kwr2mu;False;False;t3_kwr2mu;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5tr2c/;1610649972;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;"**First Timer** - -Despite tackling the harsh reality of the pressure and trauma a child would face fighting giant apocalyptic threats —the fear, isolation and metal instability— we reach the same conclusion: if you are the only one who can fight, you must fight. Much like many other stories it is when Shinji is confronted with the horror and destruction of the enemy and given wisdom by a sage (Kaji) that he stops running away and selflessly faces his fear. At once it is and is not Shinji's duty to fight this battle. As Kaji said, no one is forcing him to fight; he must come to a conclusion of his own accord, but is it okay to stand idly by when you have the ability to fight? There is nothing Kaji can do, so he tends to his watermelons, fanticising of his love, eerily ready to die, but Kaji says Shinji can do something, so he must decide: will he? It's a classic situation for a protagonist to be put in and they always decide to fight. Maybe that's because even though we talk about such situations as though there is a choice, that there is no judgement (like what Toji said when Shinji ran away the first time), when it's this extreme we view not fighting as weak and wrong. The hero, who is meant to be the agent of morality and good, can't say no. - -So despite Shinji being far from an ordinary hero, he comes to the ordinary conclusion. The intermediary steps of trauma and fear and just far more fleshed out. And it looks like that's not going to stop any time soon. This has got to be the most traumatic episode yet for Shinji. His father refuses to give him an explanation for forcing him to attack his friend, detains him and lets him go with only disappointment. He's then isolated from everyone around him (Asuka doesn't even show up, and note the large empty spaces between Shinji and Misato/Gendo as well as when he's in a shot alone), then he sees his friends brutally torn apart only to realise he has to go back to what he swore he wouldn't never return to. - -After that he breaks down again in the Eva, losing himself entirely to rage. Moving and behaving like a savage primate. We see the red spherical core hidden in the Eva, confirming what we already knew, the Evas are angels and when the Eva attaches the angel's arm and it re-grows it is that of a human. Then are the angels human? What caused their birth and why? To Gendo it seems like this is all part of his plan and 'It has begun.' - -When Unit 01 rejects Rei, Gendo says it's rejecting him. I think how Gendo treated Shinji caused the Eva (Shinji's mother) to refuse to co-operate. - -*** - -**QOTD** - -*What has been the most emotionally impactful moment in the series for you up till now?* - -I think seeing Shinji breakdown when be finds out the fourth pilot was Toji.";False;False;;;;1610575700;;False;{};gj5tto0;False;t3_kwr188;False;False;t3_kwr188;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj5tto0/;1610650020;35;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;False;[];;" - -Seems like a lot of people had the version with missing audio... that sucks. - -> I am surprisingly positive on it. The setting itself gives you obvious speed bumps but they adapted those in to the story itself. - -[](#helmetbro) - -You don't know how excited I am to read this! I was unsure near the beginning considering it appeared you were apprehensive, but I'm glad you're liking how it's turned out thus far. - -> 1 Baron's. The world will be covered in bacon. - -[](#yorokobe)";False;False;;;;1610575704;;False;{};gj5ttyn;True;t3_kwr2mu;False;False;t1_gj5t1je;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5ttyn/;1610650027;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;Death note is a good one. My dad loves that anime and I heard most dads like it too.;False;False;;;;1610575712;;False;{};gj5tulx;False;t3_kwqjjd;False;True;t3_kwqjjd;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5tulx/;1610650038;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;"> Does it remind you of dreams you've had? - -[](#godisdead)";False;False;;;;1610575731;;False;{};gj5tw43;False;t3_kwr2mu;False;False;t1_gj5tmud;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5tw43/;1610650066;6;True;False;anime;t5_2qh22;;0;[]; -[];;;IXajll;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ixajii;light;text;t2_ob6j8;False;False;[];;Personally I would say Akudama was pretty good consistently throughout its entire run.;False;False;;;;1610575736;;False;{};gj5twir;False;t3_kwqmyd;False;True;t1_gj5qa8d;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj5twir/;1610650073;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pixelsaber;;;[];;;;text;t2_ofuxw;False;False;[];;"**First-timer - Sub** - -Audio kept crapping out on me all throughout the episode. Tried MPV as well and it was still an issue. Something must’ve gone wrong with my copy of the episode. - -Thought I had queued up the wrong episode there… several times. Anyways, another vision of the future that Haruka must prevent from coming to pass. Will Torque ojiisan come along to tell her what to do again? - -All the birds seem to love this one spot. Waiting for them to pull a gag where Atori and Tobi come across another bird just standing there and run off before they notice them. - -Dad’s coming into the picture! Shit must be about to get real. Also slightly surprised to see Haruka ask him for advice, since fiction has taught us absentee father also means estranged. - -The animation on that first portion of the fight between Fukuro and Karasu is good but sticks out like a sore thumb over the change in style and coloring. The second half of it, after Haruka has her conversation with Torque Ojiisan, looks more in line with the series’ visuals, but looks amateurish by comparison. - -Interspersing shots of Haruka running into the fight might’ve been a good idea, if these shots weren’t directed as they were. I don’t feel Haruka’s agency at all in how the scenes were framed, and taken out of context the whole scene would seem almost comedic in its contrast. - -Noein shows up and does things, and we are still no more privy as to who he is or what his intentions are. Atori and Fukuro are down, good riddance to the former and RIP to the latter. Oh, and Karasu’s down an arm. Don’t know how much that will slow him down given he can’t get one of chef hat’s prosthetics here. - -**Questions:** - -1) Karasu's, I would suspect. - -2) They're going to fix the quantum decoherence. - -3) It's alright. It desperately needs to really form a coherent set of rules as to the Dragon Torque's power and not use it as an easy way out of more difficult to pull off bur far more interesting narrative threads.";False;False;;;;1610575763;;False;{};gj5typl;False;t3_kwr2mu;False;False;t3_kwr2mu;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5typl/;1610650116;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Webemperor;;MAL;[];;http://myanimelist.net/animelist/Webemperor;dark;text;t2_e60oh;False;False;[];;"First Timer – Sub - -- For a brief moment I thought I started the wrong episode, but I guess that’s a dream, or perhaps a vision of things to come? I do wonder why the dragon knights spawn at the place they do. It was mound-like place where their underground base is located at? - -- It still kinda bothers, or perhaps is just funny to me that the entire human existence is at stake and we are still having a conflict about Yuu going to Tokyo. I feel like it was a mistake to raise the stakes this high, at the very least this early. - -- The chorus is going, so you know the shit’s real. The way the fight scenes are animated reminds me of that (in)famous fight scene from Naruto Shippuden, I feel like it does look better than that though, with a certain fluidity to it. - -- Oh shit, things are getting weird. You especially know it’s real when aspect ratio changes. I think this means Haruka has the ability to switch from different universes/timelines? I feel like this is going to be the episode everything will break apart in some way. - -- That looks rough, Fukurou piercing Karasu like that. Guess Atori can hear them fight like that too. And he even calls him by his name too. I’m also liking the weird, industrial sound effects they are using here. - -- Funny how Tobi just appears next to Yuu like that. I was just about to ask what had happened to Noein when she got to those warehouses, but I guess it’s his turn to appear. The mask looks cool though. - -- Atori just phases through the wall like a fucking slug, I feel like he is going to die here and get replaced by Noein as the main antagonist. And thus just as he attacks Fukurou, my fucking version just loses sound. Great. - -- Wait, did he actually die, or just disappear, the way they talked about it makes me feel like- Oh shit there is Noein, wow, he is actually, or more so he just fucking killed Fukurou. Meanwhile bells toll for him, how cheeky.";False;False;;;;1610575781;;False;{};gj5u079;False;t3_kwr2mu;False;False;t3_kwr2mu;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5u079/;1610650143;12;True;False;anime;t5_2qh22;;0;[]; -[];;;chiffen_n_wackles;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/SlammyHammy;light;text;t2_4291vt7n;False;False;[];;"The Third: The Girl With The Blue Eye - -Was enjoying it a lot until halfway and it started getting boring. - -On the opposite end was Flag, starts off really slow and jumpy with all the perspective changing but kept me intrigued, and by the end it was really powerful experience.";False;False;;;;1610575787;;1610576023.0;{};gj5u0o2;False;t3_kwqmyd;False;True;t3_kwqmyd;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj5u0o2/;1610650152;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BethanRuby1321;;;[];;;;text;t2_76xm11t1;False;False;[];;i’ve seen that and it’s one of my faves. i am thinking abt rewatching it so maybe i can watch it with my dad;False;False;;;;1610575787;;False;{};gj5u0oo;True;t3_kwqjjd;False;True;t1_gj5tulx;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5u0oo/;1610650152;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;False;[];;"[](#eheheh) -Sorry, I can't resist.";False;False;;;;1610575790;;False;{};gj5u0wk;False;t3_kwr2mu;False;False;t1_gj5tw43;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5u0wk/;1610650157;4;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"For which series? Sorry added on a bit more. Yamato's remake is just a really good new take on it at least for the first arc. I have heard mixed opinions on 2202 but I haven't watched it yet. I tend to find people are fans of both the original and remake. I personally think both are worth watching. - -LOTGH's remake is more divided upon and I would argue the original is the superior adaption just because the remake feels more rushed and I wasn't a fan of some of the subtle changes to one character in the writing and the designs while aren't bad they missed an opportunity to adapt the really good old fashion LOTGH designs to modern animation which franchises like Gundam, Lupin and City Hunter have done. There was only two designs I liked over the original. - -I can't say if that comparison is comparable I have only seen the 2011 version of HxH.";False;False;;;;1610575820;;False;{};gj5u3em;False;t3_kwqm29;False;True;t1_gj5tlz4;/r/anime/comments/kwqm29/whats_a_good_galactic_wars_aliens_and_gaint/gj5u3em/;1610650202;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;Akudama Drive was good all the way through imo;False;False;;;;1610575834;;False;{};gj5u4ij;False;t3_kwqmyd;False;False;t1_gj5qa8d;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj5u4ij/;1610650224;11;True;False;anime;t5_2qh22;;0;[]; -[];;;zsmg;;;[];;;;text;t2_ivuw5;False;False;[];;"**Rewatcher** - -I admit had to check whether or not I missed an episode in the beginning. - -It's a bit weird to see Fukuro turning his head left while he has no left eye. - -The music placement can be pretty bad, using the Shangri-la tracks during Karasu-Fukuro fight doesn't fit well. The same applies when Haruka calls Ai and you hear the upbeat SoL tune. That tune has no place in this episode. - -RIP Atori and Fukuro. - -Noein taking Fukuro's life, man that guy is twisted. This moment reminded me of a German series but revealing the name would spoil both Noein and the German series. - -[spoiler for future stuff](/s ""I'm ready for Miho taking care of Atori :D"")";False;False;;;;1610575846;;False;{};gj5u5h4;False;t3_kwr2mu;False;False;t3_kwr2mu;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5u5h4/;1610650243;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610575857;;False;{};gj5u6ds;False;t3_kwqmyd;False;False;t1_gj5twir;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj5u6ds/;1610650260;0;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;"Babylon - -Probably the strongest fall from beginning to the end I've ever experienced.";False;False;;;;1610575866;;False;{};gj5u741;False;t3_kwqmyd;False;True;t3_kwqmyd;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj5u741/;1610650276;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;False;[];;"> Ah, the show's coming through properly at last. I've doubted 'till now weather it'd manage to pull through properly, but after seeing this episode I'm confident. Sorry I doubted 'till now u/phiraeth. - -[](#fuukothumbsup) - -Like I said to Vaadwaur, I'm mainly just super relieved that it's coming together for y'all. The beginning I suppose was a lot rockier for others than it was for me! - - -Also - the animation this entire episode definitely was on point. I didn't even realize how well-animated the soccer ball was until you pointed it out!";False;False;;;;1610575881;;False;{};gj5u8ay;True;t3_kwr2mu;False;False;t1_gj5tbks;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5u8ay/;1610650298;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;~~Inb4 Vaad makes some reference to cats or time being a flat circle.~~;False;False;;;;1610575881;;False;{};gj5u8bf;False;t3_kwr2mu;False;False;t1_gj5u0wk;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5u8bf/;1610650298;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610575887;;False;{};gj5u8s1;False;t3_kwqmyd;False;True;t1_gj5u4ij;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj5u8s1/;1610650307;0;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Death Note - -Death Parade - -The Promised Neverland - -Psycho-Pass - -Seirei no Moribito - -Houseki no Kuni - -Black Lagoon - -Akatsuki no Yona - -Banana Fish - -Vinland Saga - -One Punch Man - -Assassination Classroom - -My Hero Academia - -Cowboy Bebop - -Gurren Lagann - -Re Zero Starting Life in Another World - -Steins; Gate - -Haikyuu - -Yuri on Ice - -Made in Abyss - -Fullmetal Alchemist Brotherhood - -Hunter x Hunter 2011";False;False;;;;1610575927;;False;{};gj5uby7;False;t3_kwqyvm;False;True;t3_kwqyvm;/r/anime/comments/kwqyvm/looking_for_some_recommendations/gj5uby7/;1610650371;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;It's Different;False;False;;;;1610575942;;False;{};gj5ud4t;False;t3_kwr9sk;False;True;t3_kwr9sk;/r/anime/comments/kwr9sk/log_horizon_s3_op_opinions/gj5ud4t/;1610650393;3;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;"> I admit had to check whether or not I missed an episode in the beginning. - -I feel less of a rewatcher failure now: I went back to check whether I skipped an episode, too.";False;False;;;;1610575943;;False;{};gj5ud6d;False;t3_kwr2mu;False;False;t1_gj5u5h4;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5ud6d/;1610650394;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;False;[];;">What's more is that it felt arbitrary when they used it. They used it for the first clash, but the standard animation for the second one later in the episode. - -In the first half, they were enraged, but in the second it was just continuing because neither knew how to end it. In a sense, it was a far more dramatic version of the fistfight her dad was talking about. - ->but pretty absent if he's only comi[n]g every three months - -Probably a part of the divorce.";False;False;;;;1610575952;;False;{};gj5udw4;False;t3_kwr2mu;False;False;t1_gj5ti3k;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5udw4/;1610650408;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;"> So who is Kosagi the La’cryma version of? - -Probably the biggest twist they have left for us. - -> ~aesthetic black bars~ - -As I said, we are just RahXephon now. - -> Weird old guy is… just wandering around time… and “reality” becomes reality by Haruka seeing it. - -The Copenhagen interpretation makes that insignificant but multiverse theory makes it big.";False;False;;;;1610575957;;False;{};gj5uebu;False;t3_kwr2mu;False;True;t1_gj5su7j;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5uebu/;1610650417;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Svenke5;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SvensBirds;light;text;t2_597u9;False;False;[];;WOW! Thank you for the massive reply! That's a lot of great info and definitely helps me out a lot. I'll definitely have to look into Sentai and Maiden. Thanks again!;False;False;;;;1610576024;;False;{};gj5ujr9;True;t3_kwm98h;False;True;t1_gj57s26;/r/anime/comments/kwm98h/what_anime_blurays_would_you_recommend_people_get/gj5ujr9/;1610650521;2;True;False;anime;t5_2qh22;;0;[]; -[];;;alimakki659;;;[];;;;text;t2_5hmljwo4;False;False;[];;Same here, I haven't watched the old hxh either but the 2011 hxh has a better animation/drawing and it sticks more to the manga;False;False;;;;1610576026;;False;{};gj5ujx2;True;t3_kwqm29;False;True;t1_gj5u3em;/r/anime/comments/kwqm29/whats_a_good_galactic_wars_aliens_and_gaint/gj5ujx2/;1610650524;1;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;Sexual assault and rape are generally on a different level than gore. Gore is a by product of an event, and not always the product of malicious intent. Rape on the other hand is always intended, no one accidently rapes someone. Torture would be a better comparison, it's a similar concept of personal violation and done with intent (and sexual assault has been used as a torture method as well).;False;False;;;;1610576043;;False;{};gj5ulaz;False;t3_kwp48q;False;True;t1_gj5onrp;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5ulaz/;1610650549;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SYZekrom;;;[];;;;text;t2_i5y6z;False;False;[];;"**First Timer** - -Oh, an angel with cross attacks again - -> Why are you here - -- Admit you're a shit ass commander who can't even keep three children loyal to you - -- Draw 25 - -Ikari looking real 5Head right now - -Also I'm kinda getting annoyed with how Asuka never fucking manages to accomplish everything - -Like Rei usually gets assigned to do backup or something stupid but Asuka just ??? always loses by plot convenience - -Like do their guns just get weaker when she holds them - -Fuckin hell - -Ahhhh so is daddy ikari the galaxy brain chessmaster that needed Shinji to go through all that shit to make 01 awaken like this - -Doesn't seem like he expected Rei to kamikaze the angel though lol";False;False;;;;1610576047;;False;{};gj5ulnd;False;t3_kwr188;False;False;t3_kwr188;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj5ulnd/;1610650556;17;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;False;[];;">The beginning I suppose was a lot rockier for others than it was for me! - -I think part of that is inevitable with rewatches. When I'm in one, I'm generally thinking harder about everything, so it's easier to find something to poke at.";False;False;;;;1610576113;;False;{};gj5uqvr;False;t3_kwr2mu;False;False;t1_gj5u8ay;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5uqvr/;1610650655;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Svenke5;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SvensBirds;light;text;t2_597u9;False;False;[];;Oh cool I haven't heard of two of them. (Though I just learned about Sentai a second ago haha). I'll definitely check out Discotek and Right Stuf though!;False;False;;;;1610576117;;False;{};gj5ur97;True;t3_kwm98h;False;True;t1_gj512t8;/r/anime/comments/kwm98h/what_anime_blurays_would_you_recommend_people_get/gj5ur97/;1610650662;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pinicking;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Orpleat;light;text;t2_60dqakv0;False;False;[];;After looking at your mal i reckon you would enjoy The Promised Neverland;False;False;;;;1610576123;;False;{};gj5urrf;False;t3_kwqyvm;False;True;t3_kwqyvm;/r/anime/comments/kwqyvm/looking_for_some_recommendations/gj5urrf/;1610650671;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EXTRA370H55V;;;[];;;;text;t2_1mlz54nl;False;False;[];;Who said I know about the source material? I saw the preview and read the mal listing.;False;False;;;;1610576139;;False;{};gj5ut1c;False;t3_kwp48q;False;True;t1_gj5jymn;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5ut1c/;1610650697;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;It had a sharp rolloff at episode 11 and it also came off overly preachy and I didn't necessarily agree with said message.;False;False;;;;1610576156;;False;{};gj5uufc;False;t3_kwqmyd;False;True;t1_gj5twir;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj5uufc/;1610650724;0;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"Well this thread is just loaded so IDK what kinda of response you were hoping to get from it. Fans of stuff like Rance probably? Honestly the plotline basically seems to me if you are interested in basically a borderline hentai and at that point might as well read the manga since less censorship. - -Though personally I would have liked a more darker morally ambiguous take on something like Shield Hero that properly addressed some of the darker subject matter it just tacked on without properly fleshing out.";False;False;;;;1610576166;;False;{};gj5uv7o;False;t3_kwp48q;False;True;t3_kwp48q;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5uv7o/;1610650741;5;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;It had a sharp rolloff at episode 11 and it also came off overly preachy and I didn't necessarily agree with said message.;False;False;;;;1610576184;;False;{};gj5uwk7;False;t3_kwqmyd;False;True;t1_gj5u4ij;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj5uwk7/;1610650766;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;Terror in resonance or B: The beginning;False;False;;;;1610576233;;False;{};gj5v0iz;False;t3_kwqyvm;False;True;t3_kwqyvm;/r/anime/comments/kwqyvm/looking_for_some_recommendations/gj5v0iz/;1610650842;2;True;False;anime;t5_2qh22;;0;[]; -[];;;zsmg;;;[];;;;text;t2_ivuw5;False;False;[];;"Thanks for sharing that. Now I, too, feel less of a rewatcher failure. - -[](#helmetbro)";False;False;;;;1610576250;;False;{};gj5v1w3;False;t3_kwr2mu;False;True;t1_gj5ud6d;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5v1w3/;1610650867;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;"> Seems like a lot of people had the version with missing audio... that sucks. - -Cerberus had both the smallest release and the easiest to run one, Sky straightened me out in CDF. - -> You don't know how excited I am to read this! I was unsure near the beginning considering it appeared you were apprehensive, but I'm glad you're liking how it's turned out thus far. - -In general, shows aimed at adolescents have a terrible habit of treating the audience like they are idiots. So far, this show has not done that. I mean, yesterday's thirst run is actually a really good way to acknowledge that sexuality is entering the casts lives before they are quite ready for that. - -[](#yorokobe) - -Baron thinks mapo tofu is too spicy...";False;False;;;;1610576252;;False;{};gj5v217;False;t3_kwr2mu;False;False;t1_gj5ttyn;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5v217/;1610650870;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Phantomskyler;;;[];;;;text;t2_rx0g8;False;False;[];;Eh, Berserk is still the gold standard of that imo.;False;False;;;;1610576255;;False;{};gj5v2aj;True;t3_kwp48q;False;True;t1_gj5uv7o;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5v2aj/;1610650875;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;"Favorite genre: Romance - -1. Toradora! - -2. High Score Girl - -3. Gamers! - -Least favorite genre: Fantasy - -1. Made In Abyss - -2. Re:Zero - -3. Hunter-X-Hunter";False;False;;;;1610576261;;False;{};gj5v2qa;False;t3_kwp4us;False;True;t3_kwp4us;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj5v2qa/;1610650883;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610576274;;False;{};gj5v3t3;False;t3_kwqxey;False;True;t3_kwqxey;/r/anime/comments/kwqxey/do_you_have_an_anime_that_has_characters_facial/gj5v3t3/;1610650902;0;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;False;[];;"> I admit had to check whether or not I missed an episode in the beginning. - -Looks like a bunch of us did (including me, haha oops)!";False;False;;;;1610576289;;False;{};gj5v4xr;True;t3_kwr2mu;False;False;t1_gj5u5h4;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5v4xr/;1610650924;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BabyChubbs2019;;;[];;;;text;t2_3w6b2hej;False;False;[];;"My hero academia -Assassination classroom -Death note -Re zero -Fire force -Jujutsu kaisen -Dr stone -One piece ? -Naruto -Promised never land -Vinland saga";False;False;;;;1610576295;;False;{};gj5v5ef;False;t3_kwqyvm;False;True;t3_kwqyvm;/r/anime/comments/kwqyvm/looking_for_some_recommendations/gj5v5ef/;1610650934;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;">This dimension is now different than her dream since Fukuro isn't dead. And Atori shows up and is a squid. - -I wonder if that's because when she saw it she could now change it? The same thing she did with Ai earlier in the series, but that doesn't make sense with 'when you see it, it becomes reality.' - ->Also, did anyone else's sound cut out after this? - -Apparently it's a problem with Cerberus. I've just been watching on AnimeLab, so no problems. It's also on Funimation for those not in AU/NZ.";False;False;;;;1610576352;;False;{};gj5v9xo;False;t3_kwr2mu;False;False;t1_gj5t1je;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5v9xo/;1610651020;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Denpants;;;[];;;;text;t2_ry9v0w1;False;False;[];;Uzaki-chan wants to hang out;False;False;;;;1610576384;;False;{};gj5vceh;False;t3_kwqjjd;False;True;t3_kwqjjd;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5vceh/;1610651065;2;True;False;anime;t5_2qh22;;0;[];True -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;"> Yuu is still envious of himself. - -He has to be emo about something, fucking paradoxes. -> Haruka is using the Dragon Torque again and lands in the dimension of different screen resolution. - -As I've said, we are RahXephon now.";False;False;;;;1610576386;;False;{};gj5vcku;False;t3_kwr2mu;False;False;t1_gj5swuh;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5vcku/;1610651068;4;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;False;[];;"The two things almost everyone seemingly experienced this episode: - -- randomly losing sound - -- thinking they started the wrong episode";False;False;;;;1610576389;;False;{};gj5vct3;True;t3_kwr2mu;False;False;t1_gj5u079;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5vct3/;1610651074;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;False;[];;">Interspersing shots of Haruka running into the fight might’ve been a good idea, if these shots weren’t directed as they were. I don’t feel Haruka’s agency at all in how the scenes were framed, and taken out of context the whole scene would seem almost comedic in its contrast. - -They certainly could have done those better. It felt more like pointless running than searching to me, and that was further exemplified through Haruka just teleporting there in the end.";False;False;;;;1610576391;;False;{};gj5vd05;False;t3_kwr2mu;False;False;t1_gj5typl;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5vd05/;1610651077;4;True;False;anime;t5_2qh22;;0;[]; -[];;;FuriousGeorge7;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FuriousGeorge7;light;text;t2_16m1yi;False;False;[];;I went into Bofuri thinking it was an isekai and was confused as fuck when, at the end of the first episode, she took the headset off and went to bed.;False;False;;;;1610576400;;False;{};gj5vdog;False;t3_kwlscs;False;True;t1_gj59xf9;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj5vdog/;1610651091;2;True;False;anime;t5_2qh22;;0;[]; -[];;;beatthebeet;;;[];;;;text;t2_25f0nhvf;False;False;[];;Link plz;False;False;;;;1610576403;;False;{};gj5vdwi;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj5vdwi/;1610651095;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"This is the weakest part. - -Isayama wrote the manga which was better than S3P1 of the anime. However, he wasn't satisfied with what he wrote and so they changed it in the anime. It ended up worse than the manga's equivalent chapters unfortunately.";False;False;;;;1610576419;;False;{};gj5vf5y;False;t3_kwr7hn;False;True;t3_kwr7hn;/r/anime/comments/kwr7hn/my_thoughts_on_aot_s3_p1_havent_watched_the_rest/gj5vf5y/;1610651121;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Raptor12225;;;[];;;;text;t2_1174as;False;False;[];;Attack on titan;False;False;;;;1610576441;;False;{};gj5vgzf;False;t3_kwqjjd;False;False;t3_kwqjjd;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5vgzf/;1610651154;5;True;False;anime;t5_2qh22;;0;[]; -[];;;BethanRuby1321;;;[];;;;text;t2_76xm11t1;False;False;[];;ooh ive seen that and watched a few episodes with him. he really liked it;False;False;;;;1610576481;;False;{};gj5vk8f;True;t3_kwqjjd;False;True;t1_gj5vgzf;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5vk8f/;1610651219;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BethanRuby1321;;;[];;;;text;t2_76xm11t1;False;False;[];;that’s not the type of thing he likes but ty;False;False;;;;1610576490;;False;{};gj5vkwp;True;t3_kwqjjd;False;True;t1_gj5vceh;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj5vkwp/;1610651232;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hylian_Girl;;;[];;;;text;t2_5g31zugv;False;False;[];;Magical girl ore;False;False;;;;1610576523;;False;{};gj5vnfq;False;t3_kwqmyd;False;True;t3_kwqmyd;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj5vnfq/;1610651283;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;"> I wonder if that's because when she saw it she could now change it? The same thing she did with Ai earlier in the series, but that doesn't make sense with 'when you see it, it becomes reality.' - -Yes, she 'sees'(senses?) possible futures but can alter them. I am hoping Ixtli is simply incorrect this ep.";False;False;;;;1610576546;;False;{};gj5vpat;False;t3_kwr2mu;False;False;t1_gj5v9xo;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5vpat/;1610651320;4;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"Well I like old school Leiji designs also the original has more story. Remake only adapted the original series and some of the Farewell to Yamato film again I haven't seen 2202 yet. They have a new film sequel in production though. - -LOTGH is apparently more true to the novels but honestly at times that feels more detrimental since they cut out good OVA additions and the series only has adapted the first two books of ten while the original has adapted everything plus the Gaiden prequel stories. - -You can go on youtube to see the differences in plot/animation if are curious what changed.";False;False;;;;1610576555;;False;{};gj5vq0u;False;t3_kwqm29;False;True;t1_gj5ujx2;/r/anime/comments/kwqm29/whats_a_good_galactic_wars_aliens_and_gaint/gj5vq0u/;1610651333;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;">Here, however, she is finally starting to understand her role and importance in this whole scheme. And Karasu in danger, she must finally step up to the plate. - -It looks to me more like she just wants to stop Karasu and Fukurou from fighting and hadn't realised anything of her greater importance. I think she still very much has a narrow focus. Though maybe seeing Noein again will tip her off.";False;False;;;;1610576606;;False;{};gj5vu08;False;t3_kwr2mu;False;False;t1_gj5stbx;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5vu08/;1610651409;5;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;False;[];;"> Audio kept crapping out on me all throughout the episode. Tried MPV as well and it was still an issue. Something must’ve gone wrong with my copy of the episode. - -Apparently this was a problem with nearly everyone's sound! - -I have the Cerberus version and luckily had no issues. - -> Thought I had queued up the wrong episode there… several times. - -Considering every single person so far has said this, I feel like they coulda done a better job showing that it was a dream - but actually, now that I think about it, it kinda works the way it did because it felt as real to us as it did to Haruka. - -> The animation on that first portion of the fight between Fukuro and Karasu is good but sticks out like a sore thumb over the change in style and coloring. - -I actually kinda enjoyed the change in art style during that fight - I think it gives it a rustic, unpoloshed feel. - -> It desperately needs to really form a coherent set of rules as to the Dragon Torque's power and not use it as an easy way out of more difficult to pull off bur far more interesting narrative threads. - -Well, this is something on which I am in agreeance.";False;False;;;;1610576608;;False;{};gj5vu4v;True;t3_kwr2mu;False;False;t1_gj5typl;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5vu4v/;1610651412;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610576689;;False;{};gj5w0fk;False;t3_kwp48q;False;True;t1_gj5ulaz;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5w0fk/;1610651534;1;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;Just because there are highly acclaimed series doesn't mean anyone else can't do it.;False;False;;;;1610576691;;False;{};gj5w0n2;False;t3_kwp48q;False;True;t1_gj5v2aj;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5w0n2/;1610651540;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610576705;;False;{};gj5w1p1;False;t3_kwp48q;False;True;t1_gj5ulaz;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5w1p1/;1610651561;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;False;[];;"> I didn't understand what the Ender's Game reference was supposed to be, but I guess it was the Ansible? That was borrowed from Le Guin, btw. - -Asking about Ender's Game in yesterday's questions? /u/Vaadwaur actually requested that as a question, lmao. I personally don't have any idea.";False;False;;;;1610576712;;False;{};gj5w27h;True;t3_kwr2mu;False;True;t1_gj5tqdq;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5w27h/;1610651571;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Night79mare;;;[];;;;text;t2_4dr3kneg;False;False;[];;Yes but only a small one because most of them are from light novel readers.;False;False;;;;1610576724;;False;{};gj5w37q;False;t3_kwp48q;False;True;t3_kwp48q;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5w37q/;1610651590;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Phantomskyler;;;[];;;;text;t2_rx0g8;False;False;[];;Where...did I say that in any way?;False;False;;;;1610576742;;False;{};gj5w4nn;True;t3_kwp48q;False;True;t1_gj5w0n2;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5w4nn/;1610651616;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610576765;;False;{};gj5w6k7;False;t3_kwo0mn;False;True;t3_kwo0mn;/r/anime/comments/kwo0mn/which_anime_end_the_final_episode_with_the_first/gj5w6k7/;1610651651;1;True;False;anime;t5_2qh22;;0;[]; -[];;;elibean3;;;[];;;;text;t2_5kz7hgzp;False;False;[];;Oh this is a good example, though i thought its ending was cute!;False;False;;;;1610576777;;False;{};gj5w7g1;True;t3_kwqmyd;False;False;t1_gj5vnfq;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj5w7g1/;1610651668;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok_Faithlessness378;;;[];;;;text;t2_93yb195j;False;False;[];;Could you dm me a link?;False;False;;;;1610576782;;False;{};gj5w7x6;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj5w7x6/;1610651678;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;I can only listen to the youtube version which sounds really low quality (like the instruments totally disturbing the vocals), but otherwise good song. But it's no DATABASE DATABASE.;False;False;;;;1610576785;;False;{};gj5w85a;False;t3_kwr9sk;False;True;t3_kwr9sk;/r/anime/comments/kwr9sk/log_horizon_s3_op_opinions/gj5w85a/;1610651682;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiffen_n_wackles;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/SlammyHammy;light;text;t2_4291vt7n;False;False;[];;"The manga was one of the first series I ever read and I thought it was awesome. - -The anime, on the other hand, not so much. It cut out too much backstory and tension, jumps around with little setup, and like you said, felt pointless. - -I recommend the manga as you get a better feel for Freeman as a person and his predicament.";False;False;;;;1610576802;;False;{};gj5w9fj;False;t3_kwppoa;False;True;t3_kwppoa;/r/anime/comments/kwppoa/crying_freeman_discussion_and_questions/gj5w9fj/;1610651706;1;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"What was the point of the reply then? The fact Berserk is the gold standard of Dark Fantasy doesn't make sense outside of it being a rebuttal. - -Like fair maybe I wasn't clear in what I was saying I just thought it would have been nice to see Shield Hero handle it's content in a different way. That is all.";False;False;;;;1610576873;;1610577480.0;{};gj5wf3k;False;t3_kwp48q;False;True;t1_gj5w4nn;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5wf3k/;1610651812;3;True;False;anime;t5_2qh22;;0;[]; -[];;;elibean3;;;[];;;;text;t2_5kz7hgzp;False;False;[];;"Oh big agree with Erased. Another one that had a phenomal first ep. - -Interesting about gintama, because I tried to watch that series too and think I gave up before the 20 episode mark for the same reason, haha";False;False;;;;1610576883;;False;{};gj5wfu5;True;t3_kwqmyd;False;True;t1_gj5qpjy;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj5wfu5/;1610651827;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610576891;moderator;False;{};gj5wgiz;False;t3_kwrn1s;False;True;t3_kwrn1s;/r/anime/comments/kwrn1s/does_anyone_got_a_anime_playlist_on_spotify_that/gj5wgiz/;1610651839;1;False;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;False;[];;"> I'm still holding out to see what makes this show a 9, because at the moment I'd probably give it a 4. - -Welp. I can guarantee you it won't be anywhere near a 9 for you, because it was at least an 8 for me after the first half the first time I watched it. - -I personally enjoyed and still do enjoy the flip flop in the narratives between action and slice of life. It reminds me of Fate/Stay night in that sense, which I also loved (the visual novel, not the adaptation). - -> The animation is often bad - -Not sure if I necessarily agree with this. I've found the animation to be stellar and this episode it really was pretty fantastic. I can maybe get behind this sentiment if you were referring to the weird CG or the inconsistent art, but the animation itself has not been bad in my eyes.";False;False;;;;1610576895;;False;{};gj5wgt6;True;t3_kwr2mu;False;False;t1_gj5ti3k;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5wgt6/;1610651844;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;">Either somehow he knew of the upcoming event in Hakodate, and made Haruka the Dragon Torque, or he knew in hindsight and went back in time to make Haruka the Dragon Torque. - -My guess is it's just a coincidence.";False;False;;;;1610576924;;False;{};gj5wj6a;False;t3_kwr2mu;False;False;t1_gj5tqdq;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5wj6a/;1610651890;4;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;"> Its not great. The animation is often bad, it has weird switches between genres and the story and characters are more confusing than engaging. I'm still holding out to see what makes this show a 9, because at the moment I'd probably give it a 4. - -That is a surprisingly low score. I checked out your MAL and it seems that you watched a ton of anime made post 2010 and very few shows made earlier. I wonder what the big turn-off is: the older animation style or the older type of story telling.";False;False;;;;1610576946;;False;{};gj5wkwi;False;t3_kwr2mu;False;False;t1_gj5ti3k;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5wkwi/;1610651923;5;True;False;anime;t5_2qh22;;0;[]; -[];;;HeavenPiercingMan;;;[];;;;text;t2_j1vxe;False;False;[];;The Eva was rejecting the Dummy Plug, more specifically. A fake Rei.;False;False;;;;1610576951;;False;{};gj5wlal;False;t3_kwr188;False;False;t1_gj5tto0;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj5wlal/;1610651932;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;"> Here, however, she is finally starting to understand her role and importance in this whole scheme. And Karasu in danger, she must finally step up to the plate. She must begin to confront everything that has happened. - -Free will, right? Time to step up to the plate and takes whats yours. -> -> -> Presentation-wise, episode 12 hits it out of the park - - -[](#ptsd) - -Anime and ep 12s, right>";False;False;;;;1610576967;;False;{};gj5wmjv;False;t3_kwr2mu;False;False;t1_gj5stbx;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5wmjv/;1610651956;5;True;False;anime;t5_2qh22;;0;[]; -[];;;alimakki659;;;[];;;;text;t2_5hmljwo4;False;False;[];;Ginga eiyuu is also ranked as the 4th best anime of all time can you tell me more about it?;False;False;;;;1610576986;;False;{};gj5wo17;True;t3_kwqm29;False;True;t1_gj5vq0u;/r/anime/comments/kwqm29/whats_a_good_galactic_wars_aliens_and_gaint/gj5wo17/;1610651988;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;"> I didn't understand what the Ender's Game reference was supposed to be, but I guess it was the Ansible? That was borrowed from Le Guin, btw. - -So Card would flat out re-use the ansible for the Ender's Game series.";False;False;;;;1610577085;;False;{};gj5wvsl;False;t3_kwr2mu;False;False;t1_gj5tqdq;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5wvsl/;1610652139;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chris10023;;;[];;;;text;t2_6mgro;False;False;[];;"**Rewatcher** - -* Oh boy, I can not wait to read the reactions of the first timers this episode! - -* Oh boy, Shinji's pissed at what his dick bag of a father made him and refuses to get out of Unit 01. - -* Maya, Gendo could have told him how to take on the Angel, Misato really is the best when it comes to handling the pilots, she'd have told him what he needed to do. - -* ""I don't have time for childish tantrums."" I hope, one of these days you get that 1800's beard bitch slapped off your face. - -* Misato doesn't have time to rest. - -* Probably the most pleasant conversation between Rei and Asuka so far (that I can remember.) - -* Toji is next to Shinji and is listening in to the conversation between Rei and Shinji? But 3 days? Wasn't Shinji out that long his first time out? - -* Shinji doesn't want to pilot again, and leaves Nerv, probably the right choice after watching Toji nearly get murdered by Gendo. - -* Shut up Kensuke, Toji nearly died. - -* Misato is the closest thing to the best parent he had. - -* Oh boy an Angel is coming, Zeruel is here to make Nerv his bitch. - -* Unit 01 is rejecting Rei, and what does Rei mean by ""Even if I die, I can be replaced?"" - -* Zeruel doesn't care Asuka. Ouch. Thank god Asuka is still alive after that. But Shinji saw Unit 02's severed head... - -* Unit 01 is refusing the dummy plug too, I told you it wasn't going take what you did to Shinji laying down, you broke his trust and made him witness something terrible, well that, and there's one other reason why. - -* Re runs out there with an N2* mine, she's insane! Zeruel shrugged it off and took Unit 00 out with ease. - -* Kaji with some great advice to Shinji, so he runs to do whatever he can. - -* Zeruel is in the main area, only to get bodied by Unit 01, with Shinji inside. But it severs his left arm, Zeruel is one tough bastard, but Shiji is furious, he's almost enjoying ripping Zeruel's face off... - -* Ran out of battery? Not good, he's a sitting duck. - -* But Unit 01 has an S2 drive? What's going on? - -* Zeruel, you better stop, or Unit 01 will get pissed, she's not going to let her kid die so easily. - -* Great, you woke Mother, you're in for it now. - -* The roar Unit 01 is apparently a females voice slowed down. - -* Oh god it's consuming Zeruel, I'm going to be sick... - -* Consume it's S2 drive? It wouldn't need the power cord anymore though. - -* So wait, that armor was only there to restrain their power? Just how powerful are these Eva's? - -* This has bad news written all over it... - - - **Question of the day!** - -> What has been the most emotionally impactful moment in the series for you up till now? - -Probably watching Shinj have to witness Unit 01 almost murdering Toji honestly, that was brutal.";False;False;;;;1610577112;;1610581742.0;{};gj5wxv0;False;t3_kwr188;False;False;t3_kwr188;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj5wxv0/;1610652178;8;True;False;anime;t5_2qh22;;0;[]; -[];;;HeavenPiercingMan;;;[];;;;text;t2_j1vxe;False;False;[];;"Gendo is reaching some Keikaku level of 4D chess. - -I think he didn't care about Rei's N2 kamikaze charge. She did say ""If I die, I can be replaced"", 🤔";False;False;;;;1610577123;;False;{};gj5wyq3;False;t3_kwr188;False;False;t1_gj5ulnd;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj5wyq3/;1610652194;4;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;"Shakugan no Shana - -The Familiar of Zero - -Toradora!";False;False;;;;1610577133;;False;{};gj5wzjq;False;t3_kwrpjw;False;True;t3_kwrpjw;/r/anime/comments/kwrpjw/looking_for_cute_tsundere_romances/gj5wzjq/;1610652211;1;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"Two states have been fighting over the galaxy for over 150 years. The Empire an Authoritarian state and the Free Peoples Alliance or FPA a democratic country made of people who fled the Empire to build a new home far away. - -Series focuses on two major military leaders in each country Yang Wen-li of the FPA and Reinhard von Lohengramm of the Empire. While the series has a focus on the military and strategic side a lot of the actual focus is on how each form of government can have it's various ideals and benefits but also various down sides.";False;False;;;;1610577209;;False;{};gj5x5gm;False;t3_kwqm29;False;True;t1_gj5wo17;/r/anime/comments/kwqm29/whats_a_good_galactic_wars_aliens_and_gaint/gj5x5gm/;1610652321;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;"> So Noein believes the future is fixed and unchangeable however I'm fairly sure this would be in complete contraction to the Multiverse theory where all possibilities exist. - -Noein is representing the Copenhagen interpretation of quantum mechanics, despite a ton of evidence that it is incorrect in this show.";False;False;;;;1610577371;;False;{};gj5xi2q;False;t3_kwr2mu;False;False;t1_gj5sw6q;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5xi2q/;1610652570;4;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;[](#brofist);False;False;;;;1610577396;;False;{};gj5xjza;False;t3_kwr2mu;False;True;t1_gj5v1w3;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5xjza/;1610652604;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;">Welp. I can guarantee you it won't be anywhere near a 9 for you, because it was at least an 8 for me after the first half the first time I watched it. - -That's disappointing, but maybe I'll enjoy the second half more. - ->I can maybe get behind this sentiment if you were referring to the weird CG or the inconsistent art, but the animation itself has not been bad in my eyes. - -Yeah I should have been more specific there. My issue is with the inconsistent art. The actual animation is usually very good and smooth. I was using a general word and that was confusing.";False;False;;;;1610577469;;False;{};gj5xpo8;False;t3_kwr2mu;False;False;t1_gj5wgt6;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5xpo8/;1610652711;3;True;False;anime;t5_2qh22;;0;[]; -[];;;affnn;;;[];;;;text;t2_2pk33t;False;False;[];;"**Rewatcher** - -Toji gets a ride to train-imagery town today. During episode 16, I suggested that perhaps the train imagery is a metaphor for suicide. At this point, it seems that if it's not that, its definitely associated with death, or near-death experiences. It still could be suicide - Toji and Shinji could each be suicidal after that last battle, but Toji (whose perspective we're seeing) has definitely had a near-death experience. - -As early as episode 2, we see Unit 01 rip through an angel's AT field so that it's able to destroy the angel's core. In this episode, Rei and Unit 00 are able to rip through this angel's AT field to plant an N2 mine only for the angel to throw up a physical armor plate to stop the blast. But before that, Asuka and Unit 02 are shooting ineffectually at the angel, and she yells ""I'm neutralizing its AT field, aren't I?"" which... shouldn't she know? Does Asuka even know how to neutralize an AT field? I forget who did what exactly during episodes 11 and 12, but I don't think that was her in either case. - -This would of course connect to [series spoilers](/s ""Kaworu's reveal that AT fields are what keep people apart, keeping individuals separate from each other. If Asuka doesn't know how to break those down, is it in part because she doesn't know how to relate to others? Conversely, is Shinji the best pilot in part because he's more empathetic than his peers?"") - -I forgot how much of an adrenaline rush that last battle is. I finished the episode at midnight last night and wanted to run through a wall.";False;False;;;;1610577517;;False;{};gj5xthb;False;t3_kwr188;False;False;t3_kwr188;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj5xthb/;1610652784;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Tircle;;;[];;;;text;t2_ktt80;False;False;[];;"**Rewatcher** - -Last episode was what made me realize how invested I was into the characters of this show, this one made me realize just how genius Anno is. There are so many amazing sequences in this episode and once it started rolling, it never really stopped. Probably one of my favorite scenes in this entire series is the discussion between Shinji and Kaji, as we see Unit 00 run into the angel as a last attempt at killing it with a N2 mine. Directly after this we see Shinji run back to the Nerv facility and face his father, mirroring the shots from the first episode, but this time it’s different. For the first time this entire series, we see Shinji acting on his own accord, juxtaposing his previous self from episode one. This time he is confident and aggressive, not a single sign of doubt in his voice. This is such a powerful episode and I still get chills during it.";False;False;;;;1610577570;;False;{};gj5xxiz;False;t3_kwr188;False;False;t3_kwr188;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj5xxiz/;1610652858;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Hollowember1;;;[];;;;text;t2_8m04dz0f;False;False;[];;Link?;False;False;;;;1610577573;;False;{};gj5xxpk;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj5xxpk/;1610652862;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Slowmotion_ii;;;[];;;;text;t2_34fne6jp;False;False;[];;I agree. It wasn’t bad but the hype my friends put into it made me excited but it was a very average anime for me;False;False;;;;1610577593;;False;{};gj5xzed;False;t3_kwqmyd;False;False;t1_gj5szqr;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj5xzed/;1610652894;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BossandKings;;;[];;;;text;t2_5ifr53k7;False;False;[];;I experienced those two things as well, at the start i thought that i had skipped an episode and it was a brief recap and near the end i lost sound(i acquired the one with sound though), very weird and heartbreaking episode for sure;False;False;;;;1610577669;;False;{};gj5y571;False;t3_kwr2mu;False;False;t1_gj5vct3;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5y571/;1610653009;5;True;False;anime;t5_2qh22;;0;[]; -[];;;LogicalAwareness220;;;[];;;;text;t2_318ilcrd;False;False;[];;Baka test;False;False;;;;1610577687;;False;{};gj5y6o7;False;t3_kwpgv5;False;True;t3_kwpgv5;/r/anime/comments/kwpgv5/looking_for_anime_with_femboys/gj5y6o7/;1610653041;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;"Neither. I just only started watching anime in 2014 and only started watching a lot of anime in 2018. I mostly watch the big and recent shows because that's what my friends watch and talk about. So I've just not watched many older shows. - -A 4 for me, as you may have seen on my MAL, is 'poor', so I'm not saying it's bad, it's better than that.";False;False;;;;1610577763;;False;{};gj5ycnx;False;t3_kwr2mu;False;True;t1_gj5wkwi;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5ycnx/;1610653159;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;"> Yuu feels like she rejected him for Karasu. He doesn't realize her giving him more attention at the moment doesn't mean she likes him more. Eh, that's just kids for you. - -Yuu is being both annoying and yet incredibly age appropriate. - -> -What did Haruka do -, create a world without problems? - -It all comes tumbling down, tumbling down, tumbling down... - -> But doesn't Noein want to protect her? - -Noein's motivations, as stated, do not make sense right now. The show has given me reason to believe they will fix that.";False;False;;;;1610577767;;False;{};gj5yd0s;False;t3_kwr2mu;False;False;t1_gj5tbks;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5yd0s/;1610653166;4;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;False;[];;Gotcha, that makes more sense!!!;False;False;;;;1610577808;;False;{};gj5yg73;True;t3_kwr2mu;False;False;t1_gj5xpo8;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5yg73/;1610653226;3;True;False;anime;t5_2qh22;;0;[]; -[];;;South_Moose9966;;;[];;;;text;t2_95e44i7c;False;False;[];;Link?;False;False;;;;1610577830;;False;{};gj5yhvr;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj5yhvr/;1610653260;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610577899;moderator;False;{};gj5yn6r;False;t3_kwrze4;False;True;t3_kwrze4;/r/anime/comments/kwrze4/could_someone_pls_tell_me_who_this_is_i_remember/gj5yn6r/;1610653371;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;r/makenewfriendshere;False;False;;;;1610577930;;False;{};gj5ypkq;False;t3_kwrz36;False;True;t3_kwrz36;/r/anime/comments/kwrz36/19_m_looking_for_a_friend/gj5ypkq/;1610653421;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NetromAkA;;;[];;;;text;t2_q2vjn;False;False;[];;My good sir. Please provide me with a link i can follow.;False;False;;;;1610577968;;False;{};gj5yslm;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj5yslm/;1610653481;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;"> The Copenhagen interpretation makes that insignificant but multiverse theory makes it big. - -That was one of the realizations of the rewatch I really enjoyed early on. The last time I watched Noein, I had no idea about either of those.";False;False;;;;1610577987;;False;{};gj5ytzz;False;t3_kwr2mu;False;False;t1_gj5uebu;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5ytzz/;1610653508;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;"The season 3 part 1 is the ""worse"" season imo. -The others are on another level imo";False;False;;;;1610578002;;False;{};gj5yv2p;False;t3_kwr7hn;False;False;t3_kwr7hn;/r/anime/comments/kwr7hn/my_thoughts_on_aot_s3_p1_havent_watched_the_rest/gj5yv2p/;1610653533;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;"> The arbitrary use leaves me confused as to what purpose it's meant to serve. - -It was supposed to illustrate how incorrect the fight was. I didn't like it either. - -> I want the show to do more to make these characters real and interesting, because at the moment they feel disposable. - -The show needed a prologue in La'cryma so we understood that part of the setting better. - -> Also please just talk to Haruka, Yuu, it will honestly solve all your problems. - -Taking the Edge trait means you can't talk things out, unfortunately. He needs to brood on a rooftop somewhere.";False;False;;;;1610578004;;False;{};gj5yv86;False;t3_kwr2mu;False;False;t1_gj5ti3k;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5yv86/;1610653535;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Will-I-Am-Nani;;;[];;;;text;t2_5bajzx2v;False;False;[];;I don’t know the character’s name but i think she’s from Dr. Stone;False;False;;;;1610578015;;False;{};gj5yw4v;False;t3_kwrze4;False;True;t3_kwrze4;/r/anime/comments/kwrze4/could_someone_pls_tell_me_who_this_is_i_remember/gj5yw4v/;1610653555;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NOiD94;;;[];;;;text;t2_t23ffpd;False;False;[];;Homura Momiji from Dr. Stone.;False;False;;;;1610578021;;False;{};gj5ywl8;False;t3_kwrze4;False;True;t3_kwrze4;/r/anime/comments/kwrze4/could_someone_pls_tell_me_who_this_is_i_remember/gj5ywl8/;1610653568;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Joe-Exotic-oi;;;[];;;;text;t2_6hoymw69;False;False;[];;I’m pretty sure she’s from Dr.stone the 2nd season;False;False;;;;1610578031;;False;{};gj5yxd5;False;t3_kwrze4;False;True;t3_kwrze4;/r/anime/comments/kwrze4/could_someone_pls_tell_me_who_this_is_i_remember/gj5yxd5/;1610653586;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chris10023;;;[];;;;text;t2_6mgro;False;False;[];;"> Also I'm kinda getting annoyed with how Asuka never fucking manages to accomplish everything -> -> -> -> Like Rei usually gets assigned to do backup or something stupid but Asuka just ??? always loses by plot convenience - -Well, Zeruel isn't exactly a pushover, you saw just how easily it broke the armor plating under Tokyo 03 and entered the Geofront. Zeruel is one of the stronger angels in the show thus far, an N2 mine got through, but he just put armor up. His defense is insane.* - - -> Ahhhh so is daddy ikari the galaxy brain chessmaster that needed Shinji to go through all that shit to make 01 awaken like this - -No, he tried Rei and the dummy system, but Unit 01 was refusing them, it wasn't daddy Ikari's plan to use Shinji. Unit 01 would only accept Shinji, nothing else. - -EDIT: re wrote some things.";False;False;;;;1610578065;;1610579131.0;{};gj5yzvw;False;t3_kwr188;False;False;t1_gj5ulnd;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj5yzvw/;1610653638;12;True;False;anime;t5_2qh22;;0;[]; -[];;;avxxnx;;;[];;;;text;t2_9iepl72n;False;False;[];;thank u so much;False;False;;;;1610578066;;False;{};gj5yzz2;False;t3_kwrze4;False;True;t1_gj5yw4v;/r/anime/comments/kwrze4/could_someone_pls_tell_me_who_this_is_i_remember/gj5yzz2/;1610653640;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuTacos;;;[];;;;text;t2_n7e06jr;False;False;[];;"This is mine. Not a lot but it’s a start. - -Edit: I add to it every few weeks when I find something that I really like. - -https://open.spotify.com/playlist/2DIwBPb5ouCva3VMPHOdXK?si=xQa0uTnXSjqAM4a4GD7kVQ";False;False;;;;1610578071;;1610579148.0;{};gj5z0f3;False;t3_kwrn1s;False;True;t3_kwrn1s;/r/anime/comments/kwrn1s/does_anyone_got_a_anime_playlist_on_spotify_that/gj5z0f3/;1610653650;2;True;False;anime;t5_2qh22;;0;[]; -[];;;avxxnx;;;[];;;;text;t2_9iepl72n;False;False;[];;thank u;False;False;;;;1610578075;;False;{};gj5z0pi;False;t3_kwrze4;False;True;t1_gj5ywl8;/r/anime/comments/kwrze4/could_someone_pls_tell_me_who_this_is_i_remember/gj5z0pi/;1610653655;1;True;False;anime;t5_2qh22;;0;[]; -[];;;avxxnx;;;[];;;;text;t2_9iepl72n;False;False;[];;tysm;False;False;;;;1610578079;;False;{};gj5z11b;False;t3_kwrze4;False;True;t1_gj5yxd5;/r/anime/comments/kwrze4/could_someone_pls_tell_me_who_this_is_i_remember/gj5z11b/;1610653662;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;Ao-chan Can't Study is a short (12x12 min), light weight, hilarious little rom com. Enjoy! (I did, and I'm not into romance in general.);False;False;;;;1610578116;;False;{};gj5z3vg;False;t3_kwob1u;False;True;t3_kwob1u;/r/anime/comments/kwob1u/good_romantic_comedy_anime/gj5z3vg/;1610653725;1;True;False;anime;t5_2qh22;;0;[]; -[];;;withinyouandwithout;;;[];;;;text;t2_2ooe2mu9;False;False;[];;just look up “anime playlist” or “anime themes” and a ton come up;False;False;;;;1610578132;;False;{};gj5z52l;False;t3_kwrn1s;False;True;t3_kwrn1s;/r/anime/comments/kwrn1s/does_anyone_got_a_anime_playlist_on_spotify_that/gj5z52l/;1610653754;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;How crass. I was merely going to point out that your endless dreamscape is all according to keikakku.;False;False;;;;1610578132;;False;{};gj5z546;False;t3_kwr2mu;False;False;t1_gj5u8bf;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5z546/;1610653755;4;True;False;anime;t5_2qh22;;0;[]; -[];;;FalconPunchInDaFace;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FalconPunchFace;light;text;t2_4fi02812;False;True;[];;"Since you like Fate/Zero and watched Madoka Magica, perhaps try Psycho Pass which are all written by Gen Urobuchi. - -Steins;Gate is an awesome thriller/time travel series. - -Vinland Saga is a pretty good revenge story set in the time of Vikings in 1000AD. - -Death Note and Cowboy Bebop are some great shows as well.";False;False;;;;1610578146;;False;{};gj5z66l;False;t3_kwqyvm;False;False;t3_kwqyvm;/r/anime/comments/kwqyvm/looking_for_some_recommendations/gj5z66l/;1610653778;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610578157;;False;{};gj5z71v;False;t3_kwp48q;False;True;t1_gj5h5qf;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5z71v/;1610653794;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Strickout;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Strickout?status=2;light;text;t2_1szolp7k;False;False;[];;"The fact that Gekkan Shoujo Nozaki-kun is your favourite romance tells me you haven't watched very many. - -Would that be a correct assumption?";False;False;;;;1610578234;;False;{};gj5zcxf;False;t3_kwp4us;False;False;t1_gj5j18u;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj5zcxf/;1610653918;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;"> The beginning I suppose was a lot rockier for others than it was for me! - -Well, Dennou Coil reminded me of how terrible TV for tweens can be and the fact that I can relate to Karusu made his being an utter dumbass an issue.";False;False;;;;1610578272;;False;{};gj5zfuh;False;t3_kwr2mu;False;True;t1_gj5u8ay;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5zfuh/;1610653980;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;Yeah. I've watched only 5 romance anime;False;False;;;;1610578294;;False;{};gj5zhjk;False;t3_kwp4us;False;True;t1_gj5zcxf;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj5zhjk/;1610654017;1;True;False;anime;t5_2qh22;;0;[]; -[];;;affnn;;;[];;;;text;t2_2pk33t;False;False;[];;">Also I'm kinda getting annoyed with how Asuka never fucking manages to accomplish everything - -It gets glossed over a bit because they keep winning, but Asuka is actually kind of bad at being a pilot. She thinks she's the best, she tells everyone she's the best, but most of the time it's Shinji that does the heavy lifting. - -It actually makes me like her as a character - I can relate to thinking I was good at something, only to later find out I actually was never that good at it at all.";False;False;;;;1610578354;;False;{};gj5zm22;False;t3_kwr188;False;False;t1_gj5ulnd;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj5zm22/;1610654104;14;True;False;anime;t5_2qh22;;0;[]; -[];;;CorbenikTheRebirth;;;[];;;;text;t2_g98wg;False;False;[];;It's usually half a dozen or so people on twitter making a mild critique of something and everybody jumps on it like it's some huge controversy. It's beyond stupid.;False;False;;;;1610578355;;False;{};gj5zm50;False;t3_kwp48q;False;True;t1_gj5s8ud;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj5zm50/;1610654105;0;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;"""relatively"" poor, as in: You have several shows at 7, 8, or 9 that I rank similar to Noein. - -Looking for a reason, I noticed how few older shows you have rated. I think that both animation and storytelling underwent major changed in each of the last 3 decades, therefore my question.";False;False;;;;1610578367;;False;{};gj5zn2p;False;t3_kwr2mu;False;False;t1_gj5ycnx;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5zn2p/;1610654123;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;There it is.;False;False;;;;1610578383;;False;{};gj5zob1;False;t3_kwr2mu;False;False;t1_gj5z546;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj5zob1/;1610654147;4;True;False;anime;t5_2qh22;;0;[]; -[];;;RockLee69;;;[];;;;text;t2_4lhux8z4;False;False;[];;would love a link;False;False;;;;1610578402;;False;{};gj5zps9;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj5zps9/;1610654174;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;TWllTtS;;;[];;;;text;t2_4hd9yo4p;False;False;[];;Seen all 3 unfortunately;False;False;;;;1610578419;;False;{};gj5zr2c;True;t3_kwrpjw;False;True;t1_gj5wzjq;/r/anime/comments/kwrpjw/looking_for_cute_tsundere_romances/gj5zr2c/;1610654198;1;True;False;anime;t5_2qh22;;0;[]; -[];;;matthewnguyennnn;;;[];;;;text;t2_627q6i2x;False;False;[];;link?;False;False;;;;1610578420;;False;{};gj5zr5p;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj5zr5p/;1610654200;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Strickout;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Strickout?status=2;light;text;t2_1szolp7k;False;False;[];;"Fair enough, the 3 you listed are actually some of my bottom ranked Romances with Nozaki-kun literally being the worst one I've ever seen. - -If you want some good romances I'd recommend Toradora, Nagi no Asukara and Sakurasou no Pet na Kanojo";False;False;;;;1610578434;;False;{};gj5zsa1;False;t3_kwp4us;False;True;t1_gj5zhjk;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj5zsa1/;1610654221;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;I've seen Toradora. I didn't understand why people like it I found it boring so I dropped the series at episode 5;False;False;;;;1610578530;;False;{};gj5zzkv;False;t3_kwp4us;False;True;t1_gj5zsa1;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj5zzkv/;1610654359;2;True;False;anime;t5_2qh22;;0;[]; -[];;;emulator-king;;;[];;;;text;t2_2u8ctavk;False;False;[];;Can dm me link please?;False;False;;;;1610578544;;False;{};gj600o7;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj600o7/;1610654379;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;">Taking the Edge trait means you can't talk things out, unfortunately. He needs to brood on a rooftop somewhere. - -For every edgy male protagonist there's a female capable of literally slapping some sense into him. Get onto it Haruka.";False;False;;;;1610578591;;False;{};gj6045e;False;t3_kwr2mu;False;False;t1_gj5yv86;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj6045e/;1610654445;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;I believe it is known that I am nothing if not consistent.;False;False;;;;1610578625;;False;{};gj606rb;False;t3_kwr2mu;False;False;t1_gj5zob1;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj606rb/;1610654494;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;"A Certain Scientific Accelerator started really well, but then it went kinda... meh. - -&#x200B; - -Goblin Slayer started very generic, but around 6-7 minutes in things started to change. A lot!";False;False;;;;1610578635;;False;{};gj607j0;False;t3_kwqmyd;False;True;t3_kwqmyd;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj607j0/;1610654509;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VandaGrey;;;[];;;;text;t2_lzm4a;False;False;[];;Are you ok? Who hurt you?;False;False;;;;1610578640;;False;{};gj607y1;False;t3_kwp48q;False;True;t3_kwp48q;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj607y1/;1610654517;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;Why do you think their Haruka sacrificed herself? She was breaking her hand on Karasu's dumb face trying to get some sense into him.;False;False;;;;1610578683;;False;{};gj60b8n;False;t3_kwr2mu;False;False;t1_gj6045e;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj60b8n/;1610654580;4;True;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;"_Toradora_, for sure. - -_Infinite Stratos_, it's a harem, but if I remember correctly the main girl is a Tsundere. Actually, i dare to say it's the most complete harem in terms of character personalities. - -_Nisekoi_, another harem, but the MC actually chooses someone (in the manga, but still) - -_Ore no Nounai Sentakushi ga, Gakuen Love Comedy wo Zenryoku de Jama Shiteiru_ or just Noucome the Tsundere isn't the main girl, but you might still like it - -_Saenai Heroine no Sodatekata_, another harem and i have to say that the second season is way better than the first";False;False;;;;1610578703;;False;{};gj60ctg;False;t3_kwrpjw;False;False;t3_kwrpjw;/r/anime/comments/kwrpjw/looking_for_cute_tsundere_romances/gj60ctg/;1610654609;1;True;False;anime;t5_2qh22;;0;[]; -[];;;123JohnnyD;;;[];;;;text;t2_55x13ifx;False;False;[];;could I get a link too please? If not at least a dm saying where i can find it? Thanks.;False;False;;;;1610578745;;False;{};gj60g17;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj60g17/;1610654670;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;And I am nothing if not predictable.;False;False;;;;1610578753;;False;{};gj60gm0;False;t3_kwr2mu;False;False;t1_gj606rb;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj60gm0/;1610654682;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;It's a good question, sorry if I sounded rude, I was only trying to give an honest answer.;False;False;;;;1610578761;;False;{};gj60h74;False;t3_kwr2mu;False;False;t1_gj5zn2p;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj60h74/;1610654692;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Meltedsteelbeam;;;[];;;;text;t2_p89mw;False;False;[];;"I don't know if u realize this but your post is exactly what those ""edgy neckbeards"" were anticipating";False;False;;;;1610578809;;False;{};gj60ky5;False;t3_kwp48q;False;True;t3_kwp48q;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj60ky5/;1610654765;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;Yes, but Gendo said it was rejecting him. I wondered if that had any connection to watch he did earlier in the episode, because we've seen Rei and the Dummy Plug be accepted by Unit 01 before.;False;False;;;;1610578886;;False;{};gj60qq7;False;t3_kwr188;False;False;t1_gj5wlal;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj60qq7/;1610654875;5;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;No worries, sometimes a story just works for some people and doesn't for others.;False;False;;;;1610578909;;False;{};gj60sg2;False;t3_kwr2mu;False;False;t1_gj60h74;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj60sg2/;1610654909;4;True;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;"Here's mine, it's mixed with games and movies oats, but it's mainly anime. Some versions are covers tho, maybe you will find something useful - - -https://open.spotify.com/playlist/0B9j2KmDhE3ZufNTy5GU1C?si=oUVod0MKQOiJqZT-mH6o2Q";False;False;;;;1610579006;;False;{};gj60zkd;False;t3_kwrn1s;False;False;t3_kwrn1s;/r/anime/comments/kwrn1s/does_anyone_got_a_anime_playlist_on_spotify_that/gj60zkd/;1610655069;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Strickout;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Strickout?status=2;light;text;t2_1szolp7k;False;False;[];;"My least favourite is also mecha but the only Mecha I've seen any significant part of(Anything I watch less than 3 Episodes of I don't even consider a drop, I just pretend I never watched it) is Gurren Lagann and I never even finished it. But here's a few of my top 3s: - -Romance(Favourite) - -1. Toradora! -2. Chuunibyou demo koi ga shitai -3. Mayo Chiki! - -Slice of Life - -1. Oregairu -2. Sakurasou no Pet na Kanojo -3. Nekopara - -Isekai - -1. Slime Tensei -2. KonoSuba -3. Kamitachi ni Hirowareta Otoko - -Battle Shounen(Smallest Sample Size other than Mecha) - -1. Fairy Tail -2. Nanatsu no Taizai -3. High School DxD - -Harem - -1. High School DxD -2. Monster Musume -3. Shinmai Maou no Testament - -Fantasy(Non Isekai) - -1. The Misfit of Demon Academy -2. Is it Wrong to Try to Pick up Girls in a Dungeon -3. Suppose a Kid from the Last Dungeon Boonies Moved to a Starter Town(Airing)";False;False;;;;1610579050;;False;{};gj612u8;False;t3_kwp4us;False;True;t3_kwp4us;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj612u8/;1610655134;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TWllTtS;;;[];;;;text;t2_4hd9yo4p;False;False;[];;I tried infinite stratos but it felt very harem-y from the start with the all girls school thing but if you say it's good I'll give it another go thanks for the help;False;False;;;;1610579083;;False;{};gj615bo;True;t3_kwrpjw;False;True;t1_gj60ctg;/r/anime/comments/kwrpjw/looking_for_cute_tsundere_romances/gj615bo/;1610655184;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;"**First-time watcher** - -I guess that dream-battle is some sort of premonition. The woman with Fukuro (?) can't be alter-Ai, can it, she was only too happy to let Karasu go in Lacryma but now she wants to take care of him herself... or not? Them ladies and their silly feelings, eh, they better let the men settle this the real way. And just to drive the point home Haruka's dad comes in with the ""boys throwing hands is totally fine because they're just so different"", I guess there could still be a subversion coming and also Karasu has been something of one but ehhh... Indeed the Big Boy Fight (tm) swiftly commences, and while the choreography, background and effects work is proper the characters mostly look little better than preliminary storyboard sketches, really I have never seen anything this sloppy and given the quality of the rest of the show I don't buy that it was an intentional stylistic move. - -Happily Young Yuu is actually aware that just ""studying"" isn't a proper decision for the future, but whether this mini-plotline will actually go somewhere remains to be seen. - -Haruka does... something... that displaces her into a dimension where she's living with her father (?), who I'm glad she has a good relationship with, and confirms that everything she ""sees"" will become real. Which would need to mean ""real in her dimension"" because if it's all infinite realities anyway it's all already real anyhow, but clarification is lacking. And am I seeing things, or did her outfit change colors between scenes? - -Second part of the fight (yes, Karasu, we know why you're fighting, no need to repeat it) at least has somewhat better character art, but on the other hand Tobi is once again irrelevant. And I'm getting real tired of Atori's shit... ah there he goes, and will not be missed; I really hope he won't come back somehow, but this felt inconclusive enough I wouldn't dismiss the possibility. And of course before Fukuro is wiped out as well (shrug) and we get the cliffhanger about the REAL REAL truth of ""Noein"" the show makes sure to confirm that these silly boys really just needed a little battle to understand each other. Sigh... - -Another quite underwhelming episode for me in more than one way. First cour overall too (like 5/10 for me), so many forgettable or poor characters and too many plotlines with mostly poor explanations or resolutions. It seems the story will now take an entirely new turn so I'm not comfortable making any significant predictions, but if we're talking just about the very end I would say Haruka rewrites reality to prove Noein wrong and avert the bad end.";False;False;;;;1610579115;;1610593137.0;{};gj617mm;False;t3_kwr2mu;False;False;t3_kwr2mu;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj617mm/;1610655230;4;True;False;anime;t5_2qh22;;0;[]; -[];;;HeavenPiercingMan;;;[];;;;text;t2_j1vxe;False;False;[];;If the Eva has some sentience, it would seem it's doing it on purpose after what Gendo did...;False;False;;;;1610579140;;False;{};gj619fi;False;t3_kwr188;False;True;t1_gj60qq7;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj619fi/;1610655265;3;True;False;anime;t5_2qh22;;0;[]; -[];;;official_utoshka;;;[];;;;text;t2_49kqgvu3;False;False;[];;Link please;False;False;;;;1610579258;;False;{};gj61i57;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj61i57/;1610655435;0;True;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;It's good as a harem, I think you'll have that feel for the whole saga, because they're a ton of girls and all of them get some attention. So better watch it when you feel like watching one.;False;False;;;;1610579262;;False;{};gj61ii8;False;t3_kwrpjw;False;True;t1_gj615bo;/r/anime/comments/kwrpjw/looking_for_cute_tsundere_romances/gj61ii8/;1610655443;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WhyYouMadBroo;;;[];;;;text;t2_2kz98moi;False;False;[];;"Sharp rolloff and ""fizzled out"" aren't the same though. The former is a sudden, steep decline, while the latter implies a gradual decline in quality. I assume you thought the first 10 episodes at least were great?";False;False;;;;1610579304;;False;{};gj61lk3;False;t3_kwqmyd;False;True;t1_gj5uwk7;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj61lk3/;1610655501;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hylian_Girl;;;[];;;;text;t2_5g31zugv;False;False;[];;Yes! I really liked the idea and the beginning, but towards the end it became kind of boring. I stilled enjoyed it though.;False;False;;;;1610579306;;False;{};gj61lr5;False;t3_kwqmyd;False;True;t1_gj5w7g1;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj61lr5/;1610655505;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;">Koji is missing an arm and leg. - -Wow, that's easy to miss, but he really is. Poor guy...";False;False;;;;1610579329;;False;{};gj61ngc;False;t3_kwr188;False;False;t1_gj5tp0g;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj61ngc/;1610655539;5;True;False;anime;t5_2qh22;;0;[]; -[];;;woilmm;;;[];;;;text;t2_8ffdheic;False;False;[];;The Day I became a God. The comedy was gold, but the shift to tragedy was icky.;False;False;;;;1610579365;;False;{};gj61q5r;False;t3_kwqmyd;False;True;t3_kwqmyd;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj61q5r/;1610655595;2;True;False;anime;t5_2qh22;;0;[]; -[];;;snowy2347;;;[];;;;text;t2_78yxd68z;False;False;[];;Happy Sugar Life its just awesome;False;False;;;;1610579442;;False;{};gj61vx6;False;t3_kwnjp1;False;True;t3_kwnjp1;/r/anime/comments/kwnjp1/some_good_horrorthriller_anime_recommendations/gj61vx6/;1610655709;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Yes.;False;False;;;;1610579443;;False;{};gj61vzx;False;t3_kwqmyd;False;True;t1_gj61lk3;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj61vzx/;1610655710;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kags123ger;;;[];;;;text;t2_38pfk2t5;False;False;[];;Link please! thank you so much;False;False;;;;1610579514;;False;{};gj6217v;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6217v/;1610655811;0;True;False;anime;t5_2qh22;;0;[]; -[];;;HeavenPiercingMan;;;[];;;;text;t2_j1vxe;False;False;[];;If you're wondering, EVA-01 is voiced by Megumi Hayashibara, with the pitch lowered down to Hell.;False;False;;;;1610579573;;False;{};gj625m6;False;t3_kwr188;False;False;t3_kwr188;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj625m6/;1610655897;7;True;False;anime;t5_2qh22;;0;[]; -[];;;SatanFearsCHAD;;;[];;;;text;t2_o6oka;False;False;[];;Lots of em from what I've seen, first OP at the end of Working! Made me tear up a good bit;False;False;;;;1610579645;;False;{};gj62av7;False;t3_kwo0mn;False;False;t3_kwo0mn;/r/anime/comments/kwo0mn/which_anime_end_the_final_episode_with_the_first/gj62av7/;1610655997;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TWllTtS;;;[];;;;text;t2_4hd9yo4p;False;False;[];;Ye sure just in the mood for some cute romance at the moment lol;False;False;;;;1610579691;;False;{};gj62e99;True;t3_kwrpjw;False;True;t1_gj61ii8;/r/anime/comments/kwrpjw/looking_for_cute_tsundere_romances/gj62e99/;1610656064;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JustAnswerAQuestion;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JAaQ/;light;text;t2_66xzcvc;False;False;[];;"[speculation](/s ""Noein looks like an antagonist but perhaps he's still on the side of Right; maybe Fukuro had to die at this moment to get the Good End. Haruka stopped Karasu from killing him, so Noein set things straight."")";False;False;;;;1610579737;;False;{};gj62hmt;False;t3_kwr2mu;False;True;t1_gj5tkv7;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj62hmt/;1610656148;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TrueFly;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/SuperShulk;light;text;t2_pvix3qg;False;False;[];;https://aniplaylist.com;False;False;;;;1610579856;;False;{};gj62qhr;False;t3_kwrn1s;False;True;t3_kwrn1s;/r/anime/comments/kwrn1s/does_anyone_got_a_anime_playlist_on_spotify_that/gj62qhr/;1610656325;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610579859;;False;{};gj62qrm;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj62qrm/;1610656331;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;Image taken at 22:51 local time. However he's asking for an anime with similar facial expression as hers.;False;False;;;;1610579860;;False;{};gj62qsl;False;t3_kwqxey;False;True;t1_gj5tcja;/r/anime/comments/kwqxey/do_you_have_an_anime_that_has_characters_facial/gj62qsl/;1610656331;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Hollowember1, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610579861;moderator;False;{};gj62qw7;False;t3_kwo9a6;False;True;t1_gj62qrm;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj62qw7/;1610656334;-1;False;False;anime;t5_2qh22;;0;[]; -[];;;EverythingsRed2;;;[];;;;text;t2_75royj7g;False;False;[];;"first timer (subbed) - -Big sad for my boy Atori, you will probably not be missed. :( That moment when he started to ""slither"" out of the wall really surprised me. So he basically sacrificed a remainder of his stability in the dimension for a big power boost just so he could end his grudge I think. He had this way of adding chaotic madness into the mix, and I think I'll miss that in the next cour. RIP. Also that other dude died too so RIP him as well. - -Noein is back and seems to be prepared to fill in the antagonist shoes left by Atori. But, how did Noein know what Haruka had seen? Is it that he sees what Haruka sees or can he see it by himself? Haruka proved that she could change the future by altering the fight, so why must Fukaro die? Maybe Noein isn't a being but more like a fundamental law, some cosmic force that seeks to rid dimensions of any variation from its prescribed future. That of course would put it at odds with Haruka, it's complete opposite. Just what will he do to the dragon torque, and what role does the ""time drifter"" play into all of this? - -Other things of note: Purple hair dude is now all alone. Will he gain more plot importance or is he going to die next episode? In the fight, Fukaro turned his hand into a blade and white hair shot electric thingys out, implying that all the dragon knights have functionally the same powers. I'm guessing the variations come down to what each individual is more adept at. Also the animation at the beginning of the fight was... interesting. - -Qs. - -1. There are certainly a lot of people here who have a wish they'd like to make, but going off of the preview, it could very well be related to pink-haired knight, as we see her walking with her back organs out. The wish itself may either relate to Fukaro's death or Noein and his unchangeable future. -2. Anytime I have been like ""100% this happens"" it doesn't happen, so I'm scared to make any guesses. Uhm we still know so little about Noein so he's probably going to grow in importance and in appearances. That and we'll learn more about the plan that the scientists have been planning. -3. I am pretty thoroughly enjoying it, even with all of its flaws. It feels normal, like just some average show, but it's difficult to even begin describing exactly what it is. It seems predictable, then throws another curve ball. It feels pretty slow but each episode is paced in such a way that it feels complete. So far 7-8/10";False;False;;;;1610579892;;False;{};gj62t7g;False;t3_kwr2mu;False;False;t3_kwr2mu;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj62t7g/;1610656379;7;True;False;anime;t5_2qh22;;0;[]; -[];;;affnn;;;[];;;;text;t2_2pk33t;False;False;[];;"I feel like if Ritsuko can reattach an Evangelion arm or [spoiler](/s ""grow an entire tank full of Reis"") she should be able to reattach Toji's limbs, too.";False;False;;;;1610579898;;False;{};gj62to9;False;t3_kwr188;False;False;t1_gj5tp0g;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj62to9/;1610656387;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Front_Lettuce;;;[];;;;text;t2_50ij6zhb;False;False;[];;U got a link homie;False;False;;;;1610579912;;False;{};gj62uoe;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj62uoe/;1610656406;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;KiwiBennydudez;;MAL;[];;https://myanimelist.net/animelist/KiwiBen;dark;text;t2_889a6;False;False;[];;"Sorry, your comment has been removed. - -- Direction toward specific sources of pirated content of any type is not allowed. This includes links to unofficial scanlations, streams, uploads, and download sources of any copyrighted content. It also includes direction towards specific sites offering this type of content, and watermarks mentioning such sites in uploaded images/videos. - - Discussion of piracy in general is allowed, **but naming, linking to, or hinting towards specific sources is not. Offering to send links via PM is also not allowed.** For more details, see our [full rules on illegal content](https://www.reddit.com/r/anime/wiki/rules#wiki_do_not_link_to_illegal_content). - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610579921;moderator;False;{};gj62vck;False;t3_kwo9a6;False;True;t1_gj62qrm;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj62vck/;1610656418;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FuneralThrowAway14;;;[];;;;text;t2_2ry4anu9;False;False;[];;Don't forget Wonder Egg Priority!;False;False;;;;1610579962;;False;{};gj62ybk;False;t3_kwlscs;False;True;t1_gj4zpbc;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj62ybk/;1610656476;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610580001;;False;{};gj631af;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj631af/;1610656536;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WhyYouMadBroo;;;[];;;;text;t2_2kz98moi;False;False;[];;Ironically, I thought it did start fizzling out. My favourite characters were rhe Akudama, and I started disliking the MC because of how overprotective she was about halfway (I liked Cutthroat's character). I thought the final episode was great though.;False;False;;;;1610580016;;False;{};gj632cw;False;t3_kwqmyd;False;True;t1_gj61vzx;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj632cw/;1610656559;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Penguinman077;;;[];;;;text;t2_17z1u0yr;False;False;[];;Konosuba;False;False;;;;1610580032;;False;{};gj633gw;False;t3_kwqjjd;False;True;t3_kwqjjd;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj633gw/;1610656579;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;"[Speculation](/s ""Yea, my jury is still out on which 'side' he is on. I can see it going any number of ways. Noein the timeline cop sounds kinda interesting."")";False;False;;;;1610580034;;False;{};gj633n8;False;t3_kwr2mu;False;True;t1_gj62hmt;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj633n8/;1610656582;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Grouzerr;;;[];;;;text;t2_8smyq914;False;False;[];;link please;False;False;;;;1610580173;;False;{};gj63e1c;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj63e1c/;1610656797;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Penguinman077;;;[];;;;text;t2_17z1u0yr;False;False;[];;"91 Days is an underrated one. It’s got a dub and it’s about the mafia during prohibition in America. Dads love that shit. - -Akame Ga Kill! Is cool too. A lot of cool fight scenes and a lot of death.";False;False;;;;1610580198;;False;{};gj63fxr;False;t3_kwqjjd;False;True;t3_kwqjjd;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj63fxr/;1610656837;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;That and catless.;False;False;;;;1610580210;;False;{};gj63gts;False;t3_kwr2mu;False;True;t1_gj60gm0;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj63gts/;1610656854;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WiqidBritt;;;[];;;;text;t2_lzz12;False;False;[];;"Asuka has/had the highest sync ratio out of all 3 pilots but she didn't have any real combat experience until she transferred to Japan. There is still a bit of plot convenience here, as there are a few battles that Shinji ""won"" because Unit 01 went berserk and Asuka's never given that kind of chance.";False;False;;;;1610580246;;False;{};gj63jgr;False;t3_kwr188;False;False;t1_gj5zm22;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj63jgr/;1610656906;11;True;False;anime;t5_2qh22;;0;[]; -[];;;lwqyt;;;[];;;;text;t2_qsw46;False;False;[];;Link pls :) edit: nvm found it;False;False;;;;1610580280;;1610582077.0;{};gj63lzc;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj63lzc/;1610656958;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;WebWarrior420;;;[];;;;text;t2_xbhhx;False;False;[];;"**FIRST TIMER** - -Ummmmm . . . WTF!? - -OK ok. Let’s rewind a bit. I was not expecting that reaction from Shinji. Holding NERV hostage and threatening to destroy it all? Damn that kid’s got balls. Gendo however, has not time for any of this and knocks him unconscious. - -When he comes to, Shinji makes the determined decision to run away. Run from the pain. Run from his father’s manipulations. I can’t believe Gendo had the audacity to claim Shinji was running away again. Like seriously? Does Gendo have no self-awareness or empathy? - -It was nice to see that Toji was alive. Also, that Hikari had come to see him. - -Right on cue, another angel attacks. NERV aren’t in the best place and have to make they with what they have. Asuka and Rei both get wiped out. - -Also. Unit 01 was rejecting both Rei and the Dummy Plug. Or as NERV put it, rejecting Ikari. How much of Shinji’s influence and personality was imparted onto that? - -Shinji watches everything that goes on and is conflicted with himself and the promise he made to himself. He runs into Kaji, again! Boy I was not expecting all these Shinji-Kaji interactions, but I am loving them. So NERV found out about his spying and offed him. Classic. Pretty cool of him to be watering his plants while close to death. I like his principle for wanting to die doing what he does happiest. - -Adam comes up again. Apparently if an angel meets Adam it would cause the Third Impact. Damn. What’s the link there. - -Kaji also motivates Shinji towards making the choice to pilot again. Nice use of words there. Shinji demands to be put back into Unit 01. - -I like how raw and angry Shinji is. Probably feeling many things at once and is putting all his frustration onto the angel. - -Of course, in a moment of dramatic irony, his EVA runs out of power. - -Prop’s to Shinji’s voice actor. I could hear the anger and frustration switch to panic and stress. What was the point of going all out if it meant that he would just die there? - -In his frustration, Shinji apparently activates the EVA’s zen mode. Last seen allll the way back in episode 2. At least I think that’s what it is. - -And the EVA grows an arm?! Like that is actually a human arm. And acts way more animalistic than before. Is this the EVA’s true form? What does that mean for Shinji who’s inside? - -Ritsuko says that she’s awakened. Who? The spirit of Shinji’s mother? Why is she like this? - -Are EVAs and angels just humans that have been genetically modified to the umpteenth degree or something? - -Also apparently this was Gendo’s 5-D chess move? What an asshole. So it begins now apparently. Whatever it may be. - -So many questions! - - *What has been the most emotionally impactful moment in the series for you up till now?* - -Probably Shinji and his EVA being forced to beat up the EVA with Toji inside";False;False;;;;1610580295;;False;{};gj63n16;False;t3_kwr188;False;False;t3_kwr188;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj63n16/;1610656978;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Octalion1;;;[];;;;text;t2_3uxxzx0n;False;False;[];;I'd like to get it in pm too if possible;False;False;;;;1610580297;;False;{};gj63n89;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj63n89/;1610656982;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Fro99ywo99y1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Frat_Snap;light;text;t2_tailh;False;False;[];;lmao you're getting swarmed;False;False;;;;1610580346;;False;{};gj63qyo;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj63qyo/;1610657058;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Dawnstorm111;;;[];;;;text;t2_4g8vg5x9;False;False;[];;"Kaguya-sama, Tonikawa, Nozaki-kun, Rikekoi (the last episodes are ""dramatic"" but much less than your average romantic drama), Bakarina";False;False;;;;1610580373;;False;{};gj63sws;False;t3_kwob1u;False;True;t3_kwob1u;/r/anime/comments/kwob1u/good_romantic_comedy_anime/gj63sws/;1610657095;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HeavenPiercingMan;;;[];;;;text;t2_j1vxe;False;False;[];;That link has spoilers in the comments.;False;False;;;;1610580441;;False;{};gj63xxk;False;t3_kwr188;False;True;t1_gj5wxv0;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj63xxk/;1610657192;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Pokolorujmnie;;;[];;;;text;t2_7zwknvdx;False;False;[];;Can someone pm me the link or give the site name? 💓;False;False;;;;1610580445;;False;{};gj63yar;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj63yar/;1610657199;0;True;False;anime;t5_2qh22;;0;[]; -[];;;WebWarrior420;;;[];;;;text;t2_xbhhx;False;False;[];;"Shinji is not in an enviable position. He doesn't want to fight but he has to. And he just goes all out. Giving into rage and all the series of emotions that's been experiencing. - -All the shots do a clever job of showing how apart he is from everyone else. - -I did like Kaji and his words of wisdom. I hope this isn't the last of him we see. - -The EVA/angel/human mystery is very interesting. Are the angels part human? And how did NERV get the angels onto their side as EVAs? I'm guessing the answers will come in the next couple of episdes. This will be a wild ride for sure!";False;False;;;;1610580538;;False;{};gj6454k;False;t3_kwr188;False;False;t1_gj5tto0;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj6454k/;1610657337;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;I didn't want to bring this up but the Japanese believe that after a divorce one parent basically exits the kid's life. I think it is terrible but this is 100% bog standard for them.;False;False;;;;1610580560;;False;{};gj646qu;False;t3_kwr2mu;False;False;t1_gj5udw4;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj646qu/;1610657371;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HeavenPiercingMan;;;[];;;;text;t2_j1vxe;False;False;[];;I'm pretty sure it's just a leg, the lighting makes you think he lost the arm.;False;False;;;;1610580663;;False;{};gj64e6b;False;t3_kwr188;False;False;t1_gj61ngc;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj64e6b/;1610657518;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Operipecia;;;[];;;;text;t2_933el0n9;False;False;[];;link no chat?;False;False;;;;1610580675;;False;{};gj64f4j;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj64f4j/;1610657536;0;True;False;anime;t5_2qh22;;0;[]; -[];;;JustWolfram;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Wolfram-san;light;text;t2_mwn5b;False;False;[];;Oh boy, 13 more weeks of this?;False;False;;;;1610580826;;False;{};gj64q53;False;t3_kwp48q;False;True;t3_kwp48q;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj64q53/;1610657757;0;True;False;anime;t5_2qh22;;0;[]; -[];;;eric23white;;;[];;;;text;t2_6p62ynu3;False;False;[];;One punch man watched with my dad who could care less about anime but he loved it;False;False;;;;1610580871;;False;{};gj64tc1;False;t3_kwqjjd;False;True;t3_kwqjjd;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj64tc1/;1610657820;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BethanRuby1321;;;[];;;;text;t2_76xm11t1;False;False;[];;i’m torn between that and fate/zero;False;False;;;;1610580941;;False;{};gj64yev;True;t3_kwqjjd;False;True;t1_gj64tc1;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj64yev/;1610657916;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Strickout;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Strickout?status=2;light;text;t2_1szolp7k;False;False;[];;Its an unpopular show and an Isekai Harem but In Another World with my Smartphone has 2 love interests that are like TEXTBOOK Tsundere;False;False;;;;1610581071;;False;{};gj657yg;False;t3_kwrpjw;False;True;t3_kwrpjw;/r/anime/comments/kwrpjw/looking_for_cute_tsundere_romances/gj657yg/;1610658092;2;True;False;anime;t5_2qh22;;0;[]; -[];;;knokaka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/knokaka?order=4;light;text;t2_ytri4;False;False;[];;i read first chapter of manga... idk why but I find it gonna be an edge-fest. i don't think it worth my time.;False;False;;;;1610581122;;False;{};gj65bmh;False;t3_kwp48q;False;True;t3_kwp48q;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj65bmh/;1610658159;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Tshade01;;;[];;;;text;t2_8khtau8w;False;False;[];;same here pls lol;False;False;;;;1610581190;;False;{};gj65ght;False;t3_kwo9a6;False;True;t1_gj631af;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj65ght/;1610658248;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JabroKing;;;[];;;;text;t2_8xzwj54g;False;False;[];;can someone pm me the link pls ty;False;False;;;;1610581274;;False;{};gj65mq1;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj65mq1/;1610658360;0;True;False;anime;t5_2qh22;;0;[]; -[];;;knokaka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/knokaka?order=4;light;text;t2_ytri4;False;False;[];;ascendance of bookworm literally the best isekai for me... the writing is above any other gimmicky isekai.;False;False;;;;1610581391;;False;{};gj65v86;False;t3_kwlscs;False;True;t3_kwlscs;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj65v86/;1610658518;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;Heroic Age;False;False;;;;1610581461;;False;{};gj660bd;False;t3_kwqm29;False;True;t3_kwqm29;/r/anime/comments/kwqm29/whats_a_good_galactic_wars_aliens_and_gaint/gj660bd/;1610658615;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Meltedsteelbeam;;;[];;;;text;t2_p89mw;False;False;[];;Lmao this post is so unnecessarily aggressive;False;False;;;;1610581528;;False;{};gj6654b;False;t3_kwp48q;False;True;t1_gj607y1;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj6654b/;1610658705;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Remillya;;;[];;;;text;t2_84j7iwaz;False;False;[];;Someone give link;False;False;;;;1610581570;;False;{};gj6685k;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6685k/;1610658760;0;True;False;anime;t5_2qh22;;0;[]; -[];;;DvLsoulz;;;[];;;;text;t2_9mqcw46j;False;False;[];; can someone pm me the link;False;False;;;;1610581589;;False;{};gj669iy;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj669iy/;1610658786;0;True;False;anime;t5_2qh22;;0;[]; -[];;;chris10023;;;[];;;;text;t2_6mgro;False;False;[];;Removed the link.;False;False;;;;1610581773;;False;{};gj66muj;False;t3_kwr188;False;True;t1_gj63xxk;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj66muj/;1610659035;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sSli3nt;;;[];;;;text;t2_7xzbgza7;False;False;[];;Link?;False;False;;;;1610581914;;False;{};gj66wxv;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj66wxv/;1610659227;0;True;False;anime;t5_2qh22;;0;[]; -[];;;venitienne;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/venitienne;light;text;t2_1d3p12up;False;False;[];;Both of the heaven's feel songs got knocked out? Come on...;False;False;;;;1610582290;;False;{};gj67np6;False;t3_kwsa2a;False;False;t1_gj60ko9;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj67np6/;1610659742;19;True;False;anime;t5_2qh22;;0;[]; -[];;;SorcererOfTheLake;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RiverSorcerer;light;text;t2_1pmzlf0y;False;True;[];;No. That one ended up being 280-something. If it did get in, it would have been eliminated due to the limit.;False;False;;;;1610582367;;False;{};gj67t7t;True;t3_kwsa2a;False;False;t1_gj66rwq;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj67t7t/;1610659853;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SorcererOfTheLake;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RiverSorcerer;light;text;t2_1pmzlf0y;False;True;[];;Thank you, kind user.;False;False;;;;1610582401;;False;{};gj67vo2;True;t3_kwsa2a;False;False;t1_gj67l1k;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj67vo2/;1610659900;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Illustrious-Bat7548;;;[];;;;text;t2_7vr5xbpk;False;False;[];;Pls pm th elink to me too;False;False;;;;1610582434;;False;{};gj67y3l;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj67y3l/;1610659946;0;True;False;anime;t5_2qh22;;0;[]; -[];;;venitienne;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/venitienne;light;text;t2_1d3p12up;False;False;[];;Didn't see any that did, though I haven't watched everything. In general ending songs tend to be more vague symbolic spoiling which you wouldn't notice unless you were familiar with the show.;False;False;;;;1610582460;;False;{};gj6801z;False;t3_kwsa2a;False;True;t1_gj620he;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6801z/;1610659981;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CringeKage222;;;[];;;;text;t2_2v8v29g9;False;False;[];;Just hear me out, naruto is basically that but with 3 people naruto sasuke and kurama;False;False;;;;1610582484;;False;{};gj681q4;False;t3_kwrpjw;False;True;t3_kwrpjw;/r/anime/comments/kwrpjw/looking_for_cute_tsundere_romances/gj681q4/;1610660013;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;MVP THANK YOU THANK YOU THANK YOU;False;False;;;;1610582491;;False;{};gj6827d;False;t3_kwsa2a;False;True;t1_gj67l1k;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6827d/;1610660021;2;True;False;anime;t5_2qh22;;0;[]; -[];;;trumonster;;;[];;;;text;t2_3ln80m49;False;False;[];;Link;False;False;;;;1610582507;;False;{};gj683dn;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj683dn/;1610660044;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Pixelsaber;;;[];;;;text;t2_ofuxw;False;False;[];;"> I have the Cerberus version and luckily had no issues. - -I have Cerberus too. - -[](#hardthink) - -> but actually, now that I think about it, it kinda works the way it did because it felt as real to us as it did to Haruka. - -Yeah, it's perfect like that. My statements speak to its effectiveness.";False;False;;;;1610582630;;False;{};gj68c1b;False;t3_kwr2mu;False;True;t1_gj5vu4v;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj68c1b/;1610660212;3;True;False;anime;t5_2qh22;;0;[]; -[];;;presto9134;;;[];;;;text;t2_7vls6wmx;False;False;[];;the link please;False;False;;;;1610582670;;False;{};gj68ezd;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj68ezd/;1610660267;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;I say Death Note that was not a very satisfying ending, the last arc wasn't as interesting as L vs Light. I thought episode 7 was terrible but there wasn't an episode as bad as that one at least. And the premise itself was interesting;False;False;;;;1610582939;;False;{};gj68y2i;False;t3_kwqmyd;False;True;t3_kwqmyd;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj68y2i/;1610660655;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YaboiRimjob;;;[];;;;text;t2_30n1u6pl;False;False;[];;i also would like a pm with the uncensored version please;False;False;;;;1610583192;;False;{};gj69g32;False;t3_kwo9a6;False;True;t1_gj631af;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj69g32/;1610661007;1;True;False;anime;t5_2qh22;;0;[]; -[];;;degenerate-edgelord;;;[];;;;text;t2_1hbjff8i;False;False;[];;"> I honestly wouldn't be mad if the Chika dance won the whole thing. - -I would. It's great but I don't wanna see another shitpost/meme winner after Renai Circulation somehow beat AoT, Mob and Noragami OPs. Fuck that, there's many amazing EDs waiting to win, more so now that K-On is less of a competitior.";False;False;;;;1610583399;;False;{};gj69uwq;False;t3_kwsa2a;False;False;t1_gj6438r;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj69uwq/;1610661310;6;True;False;anime;t5_2qh22;;0;[]; -[];;;BobTheSkrull;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/BobTheSkrull;light;text;t2_134dmb;False;False;[];;Wait, hold up, Shirushi got knocked out? How in the fuck in one of LiSA's best get knocked out in favor of *checks list* Overfly?;False;False;;;;1610583409;;False;{};gj69vki;False;t3_kwsa2a;False;False;t1_gj60ko9;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj69vki/;1610661323;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BobTheSkrull;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/BobTheSkrull;light;text;t2_134dmb;False;False;[];;Yeah. In retrospect it's not the greatest ED, but it was probably the first one I didn't skip when I was growing up watching battle shounens.;False;False;;;;1610583491;;False;{};gj6a1hq;False;t3_kwsa2a;False;False;t1_gj665q7;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6a1hq/;1610661437;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Isai579;;MAL;[];;http://myanimelist.net/animelist/Isai579;dark;text;t2_mg0km;False;False;[];;"*First Timer* - -Damn... - -That was a good episode. A bit too visceral and emotional at times. Hopefully we'll get something less emotionally taxing next episode. - -So, Shinjis' journey through the last two episodes boils down to a simple question. Is it worth to sacrifice a life in order to save the world? Even at the beginning , Shinji thinks its not (even by menacing to destroy the headquarters, which I loved even if he was a bit impulsive). But after realizing the stakes from his conversation with Kaji, he decides it is, and the life sacrificed through that decision ends up being his own in a certain way. - -Let's take a quick look at the status of our piltots. The Eva 02 has been basically rendered useless, and I'm not sure how Asuka will be after that. Toji is still in the hospital with no signal of a quick recovery. And the Eva 00 is MIA after that N2 bomb (which kinda doesn't make sense to me, as it appears to be less damaging than the orbital drop and Misato said they could survive that inside the Eva). Rei status is still unknown, but it's very sad to see how she considers herself disposable. Whether because of the simulation capsule, or because she knows that the school is basically a slaughterhouse to harvest new pilots, she shouldn't think like that. - -Finally, the Evas. This episode made it completely clear that Evas are both conscious and intelligent, as they must allow the pilot to connect with them, and will sometimes flat out refuse. I wonder if the connection between Eva and pilot means they start to share personality traits, as the Eva 01 refused to sync with anyone that wasn't Shinji. - -And something more scary than the Eva being awakened is that it seems Gendo was waiting for it all along. I'm reminded of what Misato said in the previous episode: *with the Evas, you could take over the world*. I don't think that is what Gendo is going for, but I'm honestly worried it might be something worse. - -Also, my mind was blown when I realized the blue flame we see at the beginning of the OP everyday symbolizes the Eva awakening. Like, right under our noses the entire time. Wow. - -*** - -*Question of the Day* - -Most impactful, definitely the ending of episode 18. The way the previous episodes build up to that moment where we get hit by all the emotional impact at the same time Shinji does is masterful. - -*** - -*In the next episode...* - -[Evangelion speculation](/s ""So, is Shinji lost completely now. The preview kind of makes it clear that by merging with the Eva, the original Shinji is no more. I hope we don't lose those small bits of story outside of NERV. They are a small break from the intensity of the rest of the series. After all that's happened, I expect a calmer episode, but I thought that yesterday too and we got this."")";False;False;;;;1610583536;;False;{};gj6a4sx;False;t3_kwr188;False;False;t3_kwr188;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj6a4sx/;1610661511;11;True;False;anime;t5_2qh22;;0;[]; -[];;;arcusford;;;[];;;;text;t2_936ju799;False;False;[];;Can you send that to me?;False;False;;;;1610583702;;False;{};gj6agqx;False;t3_kwo9a6;False;True;t1_gj6217v;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6agqx/;1610661736;0;True;False;anime;t5_2qh22;;0;[]; -[];;;BobTheSkrull;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/BobTheSkrull;light;text;t2_134dmb;False;False;[];;"Hey look, Orange got a [free pass](https://i.imgur.com/wf9jGy5.png) into Round 2! - -Anyways, recommendation of the day goes to the fairly NSFW High School DxD opening, [Study x Study](https://www.youtube.com/watch?v=CebPvjuvY80). It's where the budget for the show went.";False;False;;;;1610583726;;False;{};gj6aie9;False;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6aie9/;1610661767;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610583793;;False;{};gj6an7a;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6an7a/;1610661856;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Kalaziel1;;;[];;;;text;t2_6n0pcitt;False;False;[];;Same here pls, also need a new anime site as one i use crashes often, cheers;False;False;;;;1610583794;;False;{};gj6an9l;False;t3_kwo9a6;False;True;t1_gj631af;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6an9l/;1610661857;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Flyingturk3y;;;[];;;;text;t2_3b2zep35;False;False;[];;Link plz;False;False;;;;1610583799;;False;{};gj6anjw;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6anjw/;1610661861;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Koyo1996;;;[];;;;text;t2_721e4kwm;False;False;[];;pm it here as well please;False;False;;;;1610583825;;False;{};gj6apdl;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6apdl/;1610661893;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610583864;;1610590908.0;{};gj6asao;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6asao/;1610661947;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;"**Third watch-through** - -For once, Shinji is genuinely out-of-control angry, but even that won't give him any more agency than he had last episode. As the other NERV personnel reiterate, there really wasn't much of a choice, though you can hardly fault him for being unreasonable. Misato has already returned to duty, diligent as ever, but Shinji will at least be out for a while - I like the fakeout where at first we see Toji in bed and only then does he turn towards Shinji. Rei and Asuka at least are fine and ready to see him as soon as they can; not sure whether a lack of dreams might be considered an indicator for a genuine medical issue but the symbolic implication for Rei is clear. - -Brief train scene and one of the weirder/unexplained ones, also in that maybe it's true that it all comes back to his father and his ""betrayal"" too much for Shinji but that doesn't mean there's much in Gendo's feelings for him to understand. Is Rei actually a stand-in for Gendo here? - -Hikari gets another little scene, she's been more present than I remembered, that also shows Toji has lost his left leg near-entirely. - -Shinji finally turning his back on his father, realizing that whether he is a pilot or not, he will never be more to him than a tool to be overridden and discarded if defective, is a great scene, and quite the opposite of the ""running away"" Gendo accuses him of. Particularly, now we know there are plenty other candidates besides Shinji, so there's really no need for him specifically to save the world. He can count himself lucky that he didn't see any further consequences, though, maybe Gendo did pull some strings there. Footnote, it also confirms his initial living agreement around a teacher. - -Unfortunately, the Angels have other ideas - yes, in this series in the end there's no escape from the horror. Shinji can't even leave the city before another attack happens, and this one is seriously dangerous. Remember when Ramiel took hours to drill through the protection layers of the Geofront? How about seconds? Also more strangeness with Gendo and Rei as her rejection in Unit 1 is apparently also a rejection of Gendo, and Rei says that even in death she can be replaced. With Asuka again quickly neutralized by a casual dismemberment and decapitation, it's not looking good, and the fight quickly comes to Shinji quite directly. - -Another nice scene between Shinji and Kaji too, besides reaffirming Kaij's nature confirming that some of Kaji's clandestine activities have been discovered, and more importantly the fact that an Angel breaching NERV headquarters means curtains for humanity. Knowing that, with the previous two scenes of disaster in mind, there's no way he won't try to help even not knowing about the unusable Dummy Plug. The scene between him and Gendo is an obvious mirror of when they first meet in Episode 1, with Gendo asking why Shinji is here and Shinji introducing himself as the pilot. Now, though, he finally knows what he's really fighting for; one wonders what would have happened if not for Kaji's intervention, would Shinji have changed his mind anyway or would everything have been over? There's also a minor reversal of his relationship with Misato as he comes up with a quick plan to use the Evavators and Misato carries it out. - -Then finally the fight, as ugly as ever, reminiscent of Shinji's desperate second battle (also in how the timer runs out!) but this time not even that will help. The controls not working is also a callback to just last time, I guess. The berserk cannibalism scene that forms the conclusion is downright infamous and at any rate horrifying, poor Maya freaking out for the second time in two episodes and losing her lunch too, and finally confirms beyond all doubt what kind of power humanity is trying to control here. If *this* is part of the plan Gendo has in mind, what could his goal even be? And what about SEELE disagreeing with all this? - -As for why the Rei and the dummy are rejected: [unsure spoilers](/s ""hm, if we don't go with the 'supervillain Yui' theory i.e. that Eva-01's actions are being consciously mediated by her, I guess it could really be an extension/reflection of Shinji's own unwillingness?"")";False;False;;;;1610583873;;1610584878.0;{};gj6asy1;False;t3_kwr188;False;False;t3_kwr188;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj6asy1/;1610661960;3;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;Are things not allowed to be popular anymore? If Hare Hare Yukai is allowed to be beloved because people all over the world danced to it, so is the Chika dance. It has beautiful animation and an adorable song. It is catchy and I like it. So i will vote for it this round :) thank you for your concern;False;False;;;;1610583898;;False;{};gj6auqb;False;t3_kwsa2a;False;False;t1_gj69uwq;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6auqb/;1610661994;21;True;False;anime;t5_2qh22;;0;[]; -[];;;trumonster;;;[];;;;text;t2_3ln80m49;False;False;[];;Can you pm me the link?;False;False;;;;1610583937;;False;{};gj6axf7;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6axf7/;1610662044;0;True;False;anime;t5_2qh22;;0;[]; -[];;;soupmiso58;;;[];;;;text;t2_6qb2lgjw;False;False;[];;Everything before L dies was great, after it was just shit. 'I outsmarted you' 'but I outsmarted your out smarting 'but I realised you were out smarting me so I outsmarted you';False;False;;;;1610584017;;False;{};gj6b37v;False;t3_kwqmyd;False;True;t1_gj68y2i;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj6b37v/;1610662150;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610584107;;False;{};gj6b9lo;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6b9lo/;1610662267;4;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;">Study x Study - -Educational";False;False;;;;1610584121;;False;{};gj6bam3;False;t3_kwsa2a;False;False;t1_gj6aie9;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6bam3/;1610662285;5;True;False;anime;t5_2qh22;;0;[]; -[];;;SliderGamer55;;;[];;;;text;t2_xu233;False;False;[];;"Me on Twitter: Man I'm not really into cinnamon donuts. - -Some crazy person on Twitter: WHY ARE U CANCELLING DONUTS, YOU BASTARD?!!?11?!11?";False;False;;;;1610584122;;False;{};gj6bap1;False;t3_kwp48q;False;True;t1_gj5zm50;/r/anime/comments/kwp48q/so_is_there_anyone_thatsactually_fans_of_redo_of/gj6bap1/;1610662286;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">Shut up Kensuke - -He really takes every single opportunity to look like a fool.";False;False;;;;1610584320;;False;{};gj6boxe;False;t3_kwr188;False;True;t1_gj5wxv0;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj6boxe/;1610662549;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cire101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cire101;light;text;t2_oryv2;False;False;[];;"When that OP hits - -**YEAHHH**";False;False;;;;1610584365;;False;{};gj6bs3w;False;t3_kwmp0m;False;False;t3_kwmp0m;/r/anime/comments/kwmp0m/yukinon_is_so_kkawaaiiiiii_oregairumy_youth/gj6bs3w/;1610662614;16;True;False;anime;t5_2qh22;;0;[]; -[];;;MrLukeBr;;;[];;;;text;t2_3i64wtit;False;False;[];;Link please;False;False;;;;1610584587;;False;{};gj6c7mj;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6c7mj/;1610662924;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Pixelpeter88;;;[];;;;text;t2_51thjtdo;False;False;[];;link please? :);False;False;;;;1610584693;;False;{};gj6cezo;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6cezo/;1610663070;0;True;False;anime;t5_2qh22;;0;[]; -[];;;warmturtle5758;;;[];;;;text;t2_ajt27;False;True;[];;"Man how'd I miss this rewatch. I watched this show 11 years ago now :' ) - -Ok I'll marathon and catch up for Friday's ep";False;False;;;;1610584717;;False;{};gj6cgos;False;t3_kwr2mu;False;False;t3_kwr2mu;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj6cgos/;1610663102;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;It wasn't even worth seeing Lights smugness being shattered. I'm not sure if I'd personally call it great but first half was at least an interesting game of cat and mouse and I liked seeing Ryuk and L whenever they were on screen and was disappointed whenever they weren't. I get why people love the show at least most of the show I guess;False;False;;;;1610584748;;False;{};gj6cirg;False;t3_kwqmyd;False;True;t1_gj6b37v;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj6cirg/;1610663140;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pqowieuryt1819;;;[];;;;text;t2_48w57w1;False;False;[];;can you send to me?;False;False;;;;1610584786;;False;{};gj6cliu;False;t3_kwo9a6;False;True;t1_gj63lzc;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6cliu/;1610663189;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Upset_Complaint19;;;[];;;;text;t2_7mfukjts;False;False;[];;Can you please give me link;False;False;;;;1610585048;;False;{};gj6d4i1;False;t3_kwo9a6;False;True;t1_gj6b9lo;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6d4i1/;1610663545;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;Fair enough. I guess we have different definitions for the term.;False;False;;;;1610585084;;False;{};gj6d70v;False;t3_kwlscs;False;False;t1_gj5p3oy;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj6d70v/;1610663591;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tailor31415;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/tailor31415;light;text;t2_zr3cx;False;False;[];;"Irresponsible Captain Tylor - -seconding Space Battleship and Heroic Age - -maybe Infinite Ryvius, but it's one v one battles vs full scale galactic war";False;False;;;;1610585188;;False;{};gj6deau;False;t3_kwqm29;False;True;t3_kwqm29;/r/anime/comments/kwqm29/whats_a_good_galactic_wars_aliens_and_gaint/gj6deau/;1610663727;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SpaghettiPunch;;;[];;;;text;t2_8u4po52;False;False;[];;RIP to every Hidamari Sketch ED;False;False;;;;1610585220;;False;{};gj6dgm1;False;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6dgm1/;1610663772;9;True;False;anime;t5_2qh22;;0;[]; -[];;;HelloMagikarphowRyou;;;[];;;;text;t2_11jn0d9;False;False;[];;"Sweet Hurt didn't make it AND Study X Study got a SUPER low seed for some reason. - -It at least deserves 160+ c'mon guys";False;False;;;;1610585340;;False;{};gj6dp15;False;t3_kwsa2a;False;True;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6dp15/;1610663942;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HelloMagikarphowRyou;;;[];;;;text;t2_11jn0d9;False;False;[];;Study X Study is awesome mate. So sad it got seeded so low;False;False;;;;1610585382;;False;{};gj6ds26;False;t3_kwsa2a;False;False;t1_gj6aie9;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6ds26/;1610664005;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Verzwei;;;[];;;;text;t2_cmzqb;False;False;[];;"In/Spectre. - -It had what I would consider a perfect first episode. It did a good job introducing its leading characters, it had some really good banter between them that also served to fill in background lore at the same time, it had a bit of humor to keep it from being too heavy, it had just a hint of action and an excellent final scene. It knew exactly what cards to play and when to play them to create a perfect hook into the rest of the series. - -And then the rest of the series was ten-minute-long conversations that say the same things over and over and over and over and over and over and over and over and over again while hand-holding the audience through every overindulgent point it tries to make about collective thought.";False;False;;;;1610585409;;False;{};gj6dtxq;False;t3_kwqmyd;False;False;t3_kwqmyd;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj6dtxq/;1610664038;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;If you're okay with a male being the tsundere, you should definitely check out Fruits Basket (2019). Hell, watch it anyways. It's really good.;False;False;;;;1610585432;;False;{};gj6dvil;False;t3_kwrpjw;False;True;t3_kwrpjw;/r/anime/comments/kwrpjw/looking_for_cute_tsundere_romances/gj6dvil/;1610664069;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Im-in-line;;;[];;;;text;t2_a8tms;False;False;[];;"Going to try to keep with the ending contest this year. I assume this will just add more salt to my life, but it's fine. - -QOTD1: Can someone explain to me why Reason is higher than both Hunting for a dream and Hyori Ittai? As much as I like the Hunter x Hunter openings, I don't see why Reason would be above both of those. - -QOTD2: So glad Last Game and Drown made it into the top 100. I know they are both from popular shows, but I didn't see much discussion for both of these ends when their shows aired. My deeper pick would be Haruka Kanata both because it's a good song, the compilations were nice, and it was so emotional watching the journey come to an ""end"" (pause now I guess).";False;False;;;;1610585461;;1610585668.0;{};gj6dxmv;False;t3_kwsa2a;False;True;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6dxmv/;1610664110;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nick_BOI;;;[];;;;text;t2_x2i42xd;False;False;[];;I nominated all 3 of those JoJo ones :'3.;False;False;;;;1610585466;;False;{};gj6dxxy;False;t3_kwsa2a;False;True;t1_gj60ko9;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6dxxy/;1610664118;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;"Yeah... what the hell - -I Beg You is one of the hypest and perfect songs for a film like Heaven’s Feel, and even on its own. It’s so good ! - -Hibari also got out, when it’s such a goddam beautiful song ...";False;False;;;;1610585479;;False;{};gj6dywb;False;t3_kwsa2a;False;False;t1_gj67np6;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6dywb/;1610664137;13;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Nectarine_9395;;;[];;;;text;t2_8mg1intm;False;False;[];;link please;False;False;;;;1610585484;;False;{};gj6dz70;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6dz70/;1610664142;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AbyssalVoidML;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/AbyssalVoid/;light;text;t2_1z2wgav8;False;False;[];;link?;False;False;;;;1610585521;;False;{};gj6e1pq;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6e1pq/;1610664194;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610585538;;False;{};gj6e2z4;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6e2z4/;1610664217;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;"> Saenai Heroine no Sodatekata, another harem and i have to say that the second season is way better than the first - -I like that I agree with someone on this. The first season was fun, but the second season was just all around quality anime. Still waiting on an official English release of the movie.";False;False;;;;1610585549;;False;{};gj6e3r1;False;t3_kwrpjw;False;True;t1_gj60ctg;/r/anime/comments/kwrpjw/looking_for_cute_tsundere_romances/gj6e3r1/;1610664234;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok_Perception9687;;;[];;;;text;t2_9t5nolpk;False;False;[];;You got the link?;False;False;;;;1610585581;;False;{};gj6e60p;False;t3_kwo9a6;False;True;t1_gj6anjw;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6e60p/;1610664277;0;True;False;anime;t5_2qh22;;0;[]; -[];;;grannskapet;;MAL;[];;http://myanimelist.net/animelist/Grannskapet;dark;text;t2_g7zlk;False;False;[];;Only song here that literary spreads salty tears is 'And I'm home';False;False;;;;1610585705;;False;{};gj6eetf;False;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6eetf/;1610664439;4;True;False;anime;t5_2qh22;;0;[]; -[];;;aNinjaWithAIDS;;MAL;[];;;dark;text;t2_gd2lr;False;False;[];;"Here are the examples of recent female MC isekai that I know of. - -* *Didn't I Say to Make My Abilities Average in the Next Life?!* (Fall 2019) - -* *Ascendance of a Bookworm* (1st season Fall 2019; 2nd season Spring 2020; 3rd season confirmed, release date TBA) - -* *While Killing Slimes for 300 Years, I Unknowingly Became the Max Level* (Anime confirmed, release date TBA) - -* *My Next Life as a Villainess; All Routes Lead to Doom!* (Spring 2020) - -Suffice to say that the ladies have been getting some nice, well-respected protagonist spotlights within the isekai subgenre. I expect the trend to continue.";False;False;;;;1610585717;;False;{};gj6efpv;False;t3_kwlscs;False;True;t3_kwlscs;/r/anime/comments/kwlscs/what_ever_happened_to_the_girl_travels_to_another/gj6efpv/;1610664455;2;True;False;anime;t5_2qh22;;0;[]; -[];;;monsieurvampy;;;[];;;;text;t2_453ax;False;False;[];;"**First Timer, subbed** - -Oh fudge. The change in animation style for Fukuro and Karasu was different at first. It was well done. - - -Question: - -I wish Haruka won't be so dense and learn how to use her massive powers to slap Noein in the face. - - -I hope it ends with Haruka a little less dense. I also hope to learn the name of the cat! - - -I'm a bit disappointed that I didn't watch this while it was airing. If I did, I probably wouldn't be here today. I enjoy the animals though not a fan of the CG house at all. The windows, especially in this episode don't seem to have the proper muntins. (Muntins are a part of the component of a window that holds each glass pane into place.)";False;False;;;;1610585776;;False;{};gj6ejyu;False;t3_kwr2mu;False;False;t3_kwr2mu;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj6ejyu/;1610664536;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kiritouzumaki116;;;[];;;;text;t2_9t5qipmx;False;False;[];;Can you send me the link please;False;False;;;;1610585842;;False;{};gj6eojk;False;t3_kwo9a6;False;True;t1_gj6b9lo;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6eojk/;1610664620;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GrandConception;;;[];;;;text;t2_3birfpk8;False;False;[];;Could you please send me the link?;False;False;;;;1610585891;;False;{};gj6erw6;False;t3_kwo9a6;False;True;t1_gj6b9lo;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6erw6/;1610664683;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Verzwei;;;[];;;;text;t2_cmzqb;False;False;[];;"Funimation's website, player, and app are notoriously bad (or at least clunky) but I still use them because I tend to prefer dubs and Funi has more (and usually better) dubs than what Crunchyroll offers. - -COVID has hampered their workflow recently, so they aren't pumping them out like they did in 2019, but there's still a decent amount of new stuff and a massive back-catalogue of dubbed content on Funi. - -If you prefer subtitles then it's really going to come down which platform has more exclusives you care about. If you were going to go month-to-month, there's nothing stopping you from alternating which service you subscribe to. You could do a month or two of CR, binge what you want, then ""change teams"" and go through another catalog. - -There's also HiDive to consider, as they have most of Sentai Filmworks' active licenses in both sub and dub, and uncut BD releases when available. Their broadcast content does overlap a bit with Crunchyroll, though. And, on that note, VRV offers HiDive and Crunchyroll in a single subscription, though now with the Sony acquisition of CR (and VRV) on the horizon, nobody exactly knows how the streaming services will settle.";False;False;;;;1610586003;;False;{};gj6ezrk;False;t3_kwoca8;False;True;t3_kwoca8;/r/anime/comments/kwoca8/which_websiteapp_do_you_guys_recommend/gj6ezrk/;1610664844;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DavTheSauce;;;[];;;;text;t2_4bhkm01w;False;False;[];;I would very much appreciate the link please.;False;False;;;;1610586026;;False;{};gj6f1cw;False;t3_kwo9a6;False;True;t1_gj631af;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6f1cw/;1610664878;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dblitzer;;MAL;[];;https://myanimelist.net/profile/Dblitzer;dark;text;t2_anlci;False;False;[];;"It will never not be funny seeing people complain about how so and so OP/ED should be a winner because of how iconic and memorable it is and then see comments disparaging other works as a meme shitpost for basically the same thing. - -It's a positive trait to appear in a bunch of derivative youtube videos and be widely known.... unless you're Renai Circulation apparently.";False;False;;;;1610586120;;False;{};gj6f7z7;False;t3_kwsa2a;False;False;t1_gj6auqb;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6f7z7/;1610665002;14;True;False;anime;t5_2qh22;;0;[]; -[];;;degenerate-edgelord;;;[];;;;text;t2_1hbjff8i;False;False;[];;I mean, this round has it opposite a rather weak Bleach ED. But there's other EDs with much better music, good visuals and some of them convey the themes of their show very well. Those are higher on my list than a random cute dance.;False;False;;;;1610586132;;False;{};gj6f8q7;False;t3_kwsa2a;False;False;t1_gj6auqb;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6f8q7/;1610665016;10;True;False;anime;t5_2qh22;;0;[]; -[];;;JDantesInferno;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/BigBodyBepis;light;text;t2_20ieunh;False;False;[];;"Cute Romance/Comedy anime that are mostly light on drama (or at least lack dislikeable characters) - -**Wotakoi**: Nerdy, wholesome, and fun to watch mature romance. - -**Science Fell in Love, So I Tried to Prove it**: Cute with lots of science humor, and delivers a great conclusion. - -**Amagami SS**: Multiple routes! Everybody’s best girl wins! - -**Monthly Girls’ Nozaki-kun**: Shoujo rom-com that tends to subvert the genre in hilarious ways - -**Kimi ni Todoke**: Has just about the sweetest and most wholesome cast ever. There’s a little rivalry, but it’s almost never frustrating. - -**Kaguya-sama Love is War**: Probably one of my favorite romcoms ever. Great writing, characters, comedy, and everything else. I’m told that the material in season three (which has been announced) has potential to be earth-shatteringly good.";False;False;;;;1610586161;;False;{};gj6farv;False;t3_kwob1u;False;True;t3_kwob1u;/r/anime/comments/kwob1u/good_romantic_comedy_anime/gj6farv/;1610665055;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SilkySnagel;;;[];;;;text;t2_och08;False;False;[];;Link;False;False;;;;1610586203;;False;{};gj6fdq3;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6fdq3/;1610665110;0;True;False;anime;t5_2qh22;;0;[]; -[];;;YeetusDragonzuz;;;[];;;;text;t2_3qck47rv;False;False;[];;yo you got a link?;False;False;;;;1610586300;;False;{};gj6fkga;False;t3_kwo9a6;False;True;t1_gj6b9lo;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6fkga/;1610665242;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaselekim;;;[];;;;text;t2_8dnne27o;False;False;[];;yo homie would really appreciate that link so please send it across;False;False;;;;1610586320;;False;{};gj6flte;False;t3_kwo9a6;False;True;t1_gj63lzc;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6flte/;1610665268;0;True;False;anime;t5_2qh22;;0;[]; -[];;;massgenoside;;;[];;;;text;t2_47t33sa4;False;False;[];;Where can i read it ive been looking for a while now and i cant find it;False;False;;;;1610586365;;False;{};gj6fosl;True;t3_kwooc1;False;True;t1_gj5mvnf;/r/anime/comments/kwooc1/is_the_fate_series_worth_watchingwhat_is_the/gj6fosl/;1610665319;3;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;"> Haruka proved that she could change the future by altering the fight, so why must Fukaro die? - -If the ""Dragon Torque reacts to Haruka's wishes"" theory is right, maybe she didn't want it enough. After all, she doesn't know the dude and he just almost killed Karasu, whom Haruka likes. Or, if Noein is right, maybe she could not prevent it because she *saw* that future before.";False;False;;;;1610586472;;False;{};gj6fw2a;False;t3_kwr2mu;False;False;t1_gj62t7g;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj6fw2a/;1610665457;4;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;Atta ~~boy~~ turtle!;False;False;;;;1610586643;;False;{};gj6g7po;False;t3_kwr2mu;False;False;t1_gj6cgos;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj6g7po/;1610665683;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SherbertOk276;;;[];;;;text;t2_86fy9l62;False;False;[];;link pls;False;False;;;;1610586672;;False;{};gj6g9sf;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6g9sf/;1610665722;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Apprehensive_Job2759;;;[];;;;text;t2_9t5wuwt5;False;False;[];;can you send link?;False;False;;;;1610586696;;False;{};gj6gbgj;False;t3_kwo9a6;False;True;t1_gj63lzc;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6gbgj/;1610665753;0;True;False;anime;t5_2qh22;;0;[]; -[];;;PomegranateHelpful21;;;[];;;;text;t2_9t60676b;False;False;[];;Can u send link;False;False;;;;1610586768;;False;{};gj6ggcd;False;t3_kwo9a6;False;True;t1_gj6b9lo;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6ggcd/;1610665844;2;True;False;anime;t5_2qh22;;0;[]; -[];;;magas1908;;;[];;;;text;t2_4bjcvg;False;False;[];;can i have a link too pls?;False;False;;;;1610586892;;False;{};gj6gouy;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6gouy/;1610666001;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigtownchickenman;;;[];;;;text;t2_54eq6259;False;False;[];;Can I get a link?;False;False;;;;1610587032;;False;{};gj6gyrc;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6gyrc/;1610666175;0;True;False;anime;t5_2qh22;;0;[]; -[];;;breesy720;;;[];;;;text;t2_57iut9x6;False;False;[];;">Kaifuku Jutsushi no Yarinaoshi - -Link please";False;False;;;;1610587193;;False;{};gj6ha9u;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6ha9u/;1610666396;0;True;False;anime;t5_2qh22;;0;[]; -[];;;youmsmaa;;;[];;;;text;t2_3b8rzk49;False;False;[];;Link plz;False;False;;;;1610587230;;False;{};gj6hctj;False;t3_kwo9a6;False;True;t1_gj6b9lo;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6hctj/;1610666443;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Flyingturk3y;;;[];;;;text;t2_3b2zep35;False;False;[];;No;False;False;;;;1610587259;;False;{};gj6heur;False;t3_kwo9a6;False;True;t1_gj6e60p;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6heur/;1610666478;0;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;"[LINK](https://www.reddit.com/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj67l1k?utm_medium=android_app&utm_source=share&context=3) - -These songs are labeled if they have spoilers! Super convenient!";False;False;;;;1610587373;;False;{};gj6hmxs;False;t3_kwsa2a;False;False;t1_gj620he;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6hmxs/;1610666627;8;True;False;anime;t5_2qh22;;0;[]; -[];;;a_johnny123;;;[];;;;text;t2_5gm8sup4;False;False;[];;Link plz;False;False;;;;1610587416;;False;{};gj6hptg;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6hptg/;1610666681;0;True;False;anime;t5_2qh22;;0;[]; -[];;;anonymooossee;;;[];;;;text;t2_86sf7qd;False;False;[];;Link thanks;False;False;;;;1610587601;;False;{};gj6i2oy;False;t3_kwo9a6;False;True;t1_gj6b9lo;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6i2oy/;1610666927;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ultragamer666;;;[];;;;text;t2_2minnr09;False;False;[];;Please pm link;False;False;;;;1610587778;;False;{};gj6iezk;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6iezk/;1610667142;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Outrageous_Seaweed67;;;[];;;;text;t2_73rxyrto;False;False;[];;link pls;False;False;;;;1610587847;;False;{};gj6ijqv;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6ijqv/;1610667226;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SocialLoser739;;;[];;;;text;t2_4ttuko0s;False;False;[];;Vinland saga;False;False;;;;1610587919;;False;{};gj6iop1;False;t3_kwqjjd;False;True;t3_kwqjjd;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj6iop1/;1610667311;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RADIANTTEAMIX1;;;[];;;;text;t2_6k897gof;False;False;[];;Can I get link please?;False;False;;;;1610587923;;False;{};gj6ioxa;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6ioxa/;1610667315;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AvatarAarow1;;;[];;;;text;t2_3ve7o5xz;False;False;[];;For the love of all the is good and holy please let this be the year sugar song to bitter step finally wins;False;False;;;;1610587989;;False;{};gj6ithe;False;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6ithe/;1610667394;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;True;[];;">Akatsuki no Chinkonka and Yuugure no Tori 4th and 5th highest AOT EDs - -smh my head you guys ranked the two best EDs from that show lowest. On the other hand I'm really happy to see Zettai Zetsume ranked 14th, I thought it would have been lower";False;False;;;;1610587994;;False;{};gj6itud;False;t3_kwsa2a;False;True;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6itud/;1610667401;3;True;False;anime;t5_2qh22;;0;[]; -[];;;im-mostly-bored;;;[];;;;text;t2_4cxpg6ej;False;False;[];;Can I get the link;False;False;;;;1610588048;;False;{};gj6ixlo;False;t3_kwo9a6;False;True;t1_gj6b9lo;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6ixlo/;1610667466;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SocialLoser739;;;[];;;;text;t2_4ttuko0s;False;False;[];;"Boogiepop - -Kara no kyoukai - -Higurashi";False;False;;;;1610588049;;False;{};gj6ixnq;False;t3_kwnjp1;False;True;t3_kwnjp1;/r/anime/comments/kwnjp1/some_good_horrorthriller_anime_recommendations/gj6ixnq/;1610667467;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Harpr33t-Singh;;;[];;;;text;t2_2xgwk401;False;False;[];;" ->When Unit 01 rejects Rei, Gendo says it's rejecting him. I think how Gendo treated Shinji caused the Eva (Shinji's mother) to refuse to co-operate. - -Wow, you mean how Gendo increased the pressure of LCL and forcibly removed Shinji from his plug caused Eva to reject dummy plug and Rei. Hadn't thought of that! - -Also, Ritsuko in today's episode said""she has awakened"". Did she mean Shinji's mother when she said that. Is Shinji's mother somehow incorporated in the Eva? Because earlier we saw when Shinji was in the sea of dirac, he saw a ghost of a woman. Could it be his mother's? Also, Eva starting up on its own accord after Shinji pleaded it to do so could imply the same.";False;False;;;;1610588104;;False;{};gj6j1d5;False;t3_kwr188;False;False;t1_gj5tto0;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj6j1d5/;1610667536;4;True;False;anime;t5_2qh22;;0;[]; -[];;;leds_ghost;;;[];;;;text;t2_2ulexczj;False;False;[];;Link pls;False;False;;;;1610588127;;False;{};gj6j2zx;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6j2zx/;1610667564;0;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;"I nominated all of them and fully expected this - -[](#frustration)";False;False;;;;1610588154;;False;{};gj6j4v8;False;t3_kwsa2a;False;False;t1_gj6dgm1;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6j4v8/;1610667596;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dillon-fury;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/DillonEP?status=2;light;text;t2_zl5ueq5;False;False;[];;can someone pm the link please;False;False;;;;1610588207;;False;{};gj6j8np;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6j8np/;1610667663;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Zxcker;;;[];;;;text;t2_57m2g1b;False;False;[];;Can I get the link?;False;False;;;;1610588226;;False;{};gj6j9w8;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6j9w8/;1610667685;0;True;False;anime;t5_2qh22;;0;[]; -[];;;trixareforkids_;;;[];;;;text;t2_cldi7;False;False;[];;Someone recommended Wotakoi and I will second this! I’m caught up with the manga and the anime was just so wholesome.;False;False;;;;1610588351;;False;{};gj6jilb;False;t3_kwob1u;False;True;t3_kwob1u;/r/anime/comments/kwob1u/good_romantic_comedy_anime/gj6jilb/;1610667837;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;"And so it begins. Guess I'll be hopping on the Chika train this year once Secret Base goes out. - -QOTD : - -* Really surprised to see Hello, shooting star in seed 22. I remember getting salty over it getting eliminated in early rounds in the previous years. -* Singing! is seed 54...eh, Biribiri won Best Girl 3 with a similar seed, we can still do it. -* The WA HA HA song is only at 166? You are all expelled from the Bocchi School of Laughs. -* I love how Hyouka's first ED is like 100 seeds below the second one.";False;False;;;;1610588435;;False;{};gj6joeb;False;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6joeb/;1610667939;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Realistic_Cunt69;;;[];;;;text;t2_8ur5njrw;False;False;[];;Link please!!;False;False;;;;1610588439;;False;{};gj6joqg;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6joqg/;1610667944;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610588592;;False;{};gj6jz7s;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6jz7s/;1610668130;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lol20080;;MAL;[];;https://myanimelist.net/profile/Illi;dark;text;t2_evkef;False;False;[];;how is clannads dango daikazoku only seeded at 36?! It will have a pretty hard path starting in round 4 possibly against bunny girl ed, round 5 against cowboy bebop ed and quarterfinals against roundabout, before meeting chika dance in semis and styx helix/stay alive in finals :/;False;False;;;;1610588960;;False;{};gj6kpev;False;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6kpev/;1610668611;11;True;False;anime;t5_2qh22;;0;[]; -[];;;meowingLexi;;;[];;;;text;t2_23n97ec6;False;False;[];;If it's not too much trouble can I get a link as well?;False;False;;;;1610588978;;False;{};gj6kqni;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6kqni/;1610668632;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610589074;;False;{};gj6kxcr;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6kxcr/;1610668748;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi DarkDragen, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610589074;moderator;False;{};gj6kxds;False;t3_kwo9a6;False;True;t1_gj6kxcr;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6kxds/;1610668749;1;False;False;anime;t5_2qh22;;0;[]; -[];;;NienTailsG;;;[];;;;text;t2_40hkx6mp;False;False;[];;Can I get the link;False;False;;;;1610589122;;False;{};gj6l0rr;False;t3_kwo9a6;False;True;t1_gj6b9lo;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6l0rr/;1610668807;2;True;False;anime;t5_2qh22;;0;[]; -[];;;41ph4;;;[];;;;text;t2_a0ahj;False;False;[];;link please;False;False;;;;1610589245;;False;{};gj6l9hg;False;t3_kwo9a6;False;True;t1_gj6b9lo;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6l9hg/;1610668959;2;True;False;anime;t5_2qh22;;0;[]; -[];;;yomaikeru;;;[];;;;text;t2_9t6lg75e;False;False;[];;someone dm me the link as well please;False;False;;;;1610589265;;False;{};gj6las8;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6las8/;1610668981;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AkatamaButa;;;[];;;;text;t2_4omudul;False;False;[];;Sauce please;False;False;;;;1610589357;;False;{};gj6lh8a;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6lh8a/;1610669095;0;True;False;anime;t5_2qh22;;0;[]; -[];;;That-Ebb6474;;;[];;;;text;t2_9t6mwaza;False;False;[];;Can you pm me a link too thanks;False;False;;;;1610589398;;False;{};gj6ljyx;False;t3_kwo9a6;False;True;t1_gj6b9lo;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6ljyx/;1610669142;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610589452;;False;{};gj6lnqf;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6lnqf/;1610669205;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi DarkDragen, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610589452;moderator;False;{};gj6lnrp;False;t3_kwo9a6;False;True;t1_gj6lnqf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6lnrp/;1610669206;0;False;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;">Boy I was not expecting all these Shinji-Kaji interactions, but I am loving them. - -Shinji and Kaji are great together. Especially since they mirror the Shinji-Misato dynamic so well. Kaji is like an older-brother or a father to Shinji in these situations. - ->Prop’s to Shinji’s voice actor. - -The voice acting has been phenomenal across the board, but Shinji has knocked it out of the park these last two episodes.";False;False;;;;1610589589;;False;{};gj6lxa9;False;t3_kwr188;False;False;t1_gj63n16;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj6lxa9/;1610669370;6;True;False;anime;t5_2qh22;;0;[]; -[];;;UnderWhatSuspicious;;;[];;;;text;t2_5q6clf8i;False;False;[];;Give link pls :);False;False;;;;1610589614;;False;{};gj6lz19;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6lz19/;1610669398;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Colegatered;;;[];;;;text;t2_9dybeki7;False;False;[];;Link pls💜;False;False;;;;1610589626;;False;{};gj6lztb;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6lztb/;1610669411;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Colegatered;;;[];;;;text;t2_9dybeki7;False;False;[];;Can u pm me pls?;False;False;;;;1610589669;;False;{};gj6m2xm;False;t3_kwo9a6;False;True;t1_gj6asao;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6m2xm/;1610669465;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AClifsandwich;;;[];;;;text;t2_6eopc;False;False;[];;Hectopascal gets straight murdered due to seeding again. I cri evry tim;False;False;;;;1610589681;;False;{};gj6m3sd;False;t3_kwsa2a;False;False;t1_gj61cu0;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6m3sd/;1610669478;16;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610589688;;False;{};gj6m484;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6m484/;1610669486;5;True;False;anime;t5_2qh22;;0;[]; -[];;;knipsy;;;[];;;;text;t2_e4pi3pf;False;False;[];;link?;False;False;;;;1610589718;;False;{};gj6m6a3;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6m6a3/;1610669521;0;True;False;anime;t5_2qh22;;0;[]; -[];;;knipsy;;;[];;;;text;t2_e4pi3pf;False;False;[];;Link?;False;False;;;;1610589795;;False;{};gj6mbnt;False;t3_kwo9a6;False;True;t1_gj6b9lo;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6mbnt/;1610669617;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jgrunt;;;[];;;;text;t2_4hzul80j;False;False;[];;Anyone got link?;False;False;;;;1610589798;;False;{};gj6mbvb;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6mbvb/;1610669620;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;"[Re Speculation](/s ""I'm worried too that we might lose Shinji after this. I hope he can be extracted from the Eva, but it could be that he's stuck for good."")";False;False;;;;1610589853;;False;{};gj6mfma;False;t3_kwr188;False;True;t1_gj6a4sx;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj6mfma/;1610669689;3;True;False;anime;t5_2qh22;;0;[]; -[];;;EggoMonika;;;[];;;;text;t2_9mtatn5w;False;False;[];;Can someone pm me the link too?;False;False;;;;1610589860;;False;{};gj6mg4e;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6mg4e/;1610669697;0;True;False;anime;t5_2qh22;;0;[]; -[];;;contraptionfour;;;[];;;;text;t2_fs4ki;False;False;[];;"> any releases you would say to avoid? - -It's a downer to be only negative, but it is the simpler approach in this case! - -> bad restoration - -The most recent blu-rays of Perfect Blue in the US, UK, France etc were generally considered to be worse than older releases, and if I recall, so too was the first (c.2015) US blu-ray of Venus Wars. Bad restorations are rarer than a lot less common than poor encoding jobs though, for which Funimation is probably the most notorious among English-language distributors. Sometimes that's down to mistakes or bad QC, and sometimes it's simply because they've squeezed too many episodes onto each disc. Best to do a background check on their titles to find any known issues that have been highlighted in reviews or on message boards. - -> poor quality extras - -This is more a matter of opinion (which itself makes it tougher for companies to please everyone with extras), so it sort of depends what you'd like to have? For example, one thing that comes to mind is that in recent years, a lot of US releases have chosen to create their own video extras based around the dub actors rather than paying to license or subtitle Japanese extras. But I'm sure there are some buyers who love that stuff, and yet more who won't even watch extras at all.";False;False;;;;1610589888;;1610590500.0;{};gj6mi2z;False;t3_kwm98h;False;True;t3_kwm98h;/r/anime/comments/kwm98h/what_anime_blurays_would_you_recommend_people_get/gj6mi2z/;1610669731;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610589999;;False;{};gj6mpqk;False;t3_kwr188;False;True;t1_gj5wxv0;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj6mpqk/;1610669859;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610590033;;False;{};gj6ms24;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6ms24/;1610669898;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nothing_toholdonto;;;[];;;;text;t2_yltnd;False;False;[];;Link?;False;False;;;;1610590085;;False;{};gj6mvl6;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6mvl6/;1610669955;0;True;False;anime;t5_2qh22;;0;[]; -[];;;chris10023;;;[];;;;text;t2_6mgro;False;False;[];;What was the spoiler?;False;False;;;;1610590090;;False;{};gj6mvwy;False;t3_kwr188;False;True;t1_gj6mpqk;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj6mvwy/;1610669960;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CakeBoss16;;;[];;;;text;t2_9kc33;False;False;[];;Cringe in the show is kind of the spice. It would not be as good without it.;False;False;;;;1610590137;;False;{};gj6mz60;False;t3_kwmp0m;False;False;t1_gj52tew;/r/anime/comments/kwmp0m/yukinon_is_so_kkawaaiiiiii_oregairumy_youth/gj6mz60/;1610670014;5;True;False;anime;t5_2qh22;;0;[]; -[];;;RandomPost416;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_pez84vq;False;False;[];;dude can you give me the link as well?;False;False;;;;1610590172;;False;{};gj6n1mi;False;t3_kwo9a6;False;True;t1_gj6b9lo;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6n1mi/;1610670053;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wehtaw;;;[];;;;text;t2_nmdzr;False;False;[];;Haven't got a link yet but will do once I get it.;False;False;;;;1610590204;;False;{};gj6n3xm;False;t3_kwo9a6;False;True;t1_gj6m2xm;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6n3xm/;1610670090;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;"Why does everyone just gloss over the fact that Shinji held thousands of innocent people hostage for the issues that were brought about by ANGELS? I was so pissed off when I saw that and I can’t take Shinji seriously. I’ve read the 2018 discussion too, for this episode, and I was shocked to see everyone was actually calling Shinji ""badass"" and saying “GO TELL GENDO THAT ASSHOLE HE DESERVES IT” while ignoring this dude was about to commit a bigger crime that all the angels that came before him (excluding the second impact) combined, all because a man like GENDO is utterly struggling to keep humanity alive by asking little kids to pilot dangerous weapons for NERV. And I want to argue with anyone that GENDO is not at fault for trying to save humanity. We should not let humanity perish because there’s a chance that a VOLUNTEERED SOLDIER could... die..? - -I HATED that toji nearly died, he’s the only kid I didn’t dislike. But honestly all my sadness is gone. Does Shinji seriously think HE’s being done an injustice, when it was Toji’s CHOICE to pilot the EVA. He was selected, but could’ve rejected and his friend Kensuke was GLADLY going to pilot it. And if you’re going to argue HARMONICS levels, well then take a look at what just happened after Toji piloted that Eva, it went berserk and Shinji fucking ate him. So there’s no argument to KEEP toji as an Eva pilot for that particular Eva. Oh BUT THEY DIDNT KNOW..? THEN THEY CANT KNOW FOR ANYONE UNLESS THEY FUCKING TRY, ID LIKE TO HEAR YOURE “my god... why didn’t I think of that” solution for saving humanity. - -And now Shinji, was about to inflict his own pain 1000-fold on innocent people LITERALLY fighting the enemies that caused his mental stress, depression and his longing for happiness. Yes GENDO is also responsible for Tojis danger. Maybe after they fight the angels, Shinji could use his grounds to take him to court or fight out justice the right way. But we get a hostage situation where IF he went through with it, he would’ve killed all of humanity along with him. Yeah, Shinjis a super fucking hero, right, big badass mf. - -He’s a victim. But, he’s a criminal too. - -EDIT:And instead of looking at the downvotes of rabid NGE fans, reply to me in honesty why I should think Shinji isn't a worse than his father.";False;True;;comment score below threshold;;1610590228;;1610631564.0;{};gj6n5n7;False;t3_kwr188;False;False;t1_gj63n16;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj6n5n7/;1610670118;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;The_OG_Chubby;;;[];;;;text;t2_1wt1hxwo;False;False;[];;pls send me the link;False;False;;;;1610590236;;False;{};gj6n66w;False;t3_kwo9a6;False;True;t1_gj6b9lo;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6n66w/;1610670127;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dropcake1;;;[];;;;text;t2_1ml3u72p;False;False;[];;link?;False;False;;;;1610590266;;False;{};gj6n898;False;t3_kwo9a6;False;True;t1_gj6b9lo;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6n898/;1610670161;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SSJ5Gogetenks;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/SoundwaveAU;light;text;t2_5rycz;False;False;[];;STUDY x STUDY is such a fucking banger of a song. They need to put that shit on Spotify. Everyone knows the animation is real good but there's actually some nice little blink and you'll miss it details too, like the members of Sona's peerage being on the cards in the middle.;False;False;;;;1610590294;;False;{};gj6na7d;False;t3_kwsa2a;False;False;t1_gj6aie9;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6na7d/;1610670194;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Watered_Oxgn;;;[];;;;text;t2_833jcl3i;False;False;[];;link please;False;False;;;;1610590339;;False;{};gj6ndf3;False;t3_kwo9a6;False;True;t1_gj6b9lo;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6ndf3/;1610670246;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SSJ5Gogetenks;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/SoundwaveAU;light;text;t2_5rycz;False;False;[];;IMO the stand-outs for this part of the bracket are I Want You, STUDY x STUDY, Uso and Zetsubou Billy. I admit that animation-wise Zetsubou Billy doesn't offer as much as the other three (although it does have the most badass looking elevator ride ever), but it still has some nice details and most importantly the song is fucking great.;False;False;;;;1610590398;;False;{};gj6nhfo;False;t3_kwsa2a;False;True;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6nhfo/;1610670312;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;">not sure whether a lack of dreams might be considered an indicator for a genuine medical issue - -It's not. Plenty of people don't dream. One of my best mates has never dreamt in his life. It just works that way for some people. - ->Rei says that even in death she can be replaced. - -This makes me wonder, is it because there are other candidates who can fill her role or is she some the result of some cloning experiment. I hope not, but everything about her is mysterious. - ->one wonders what would have happened if not for Kaji's intervention, would Shinji have changed his mind anyway or would everything have been over? - -I think he probably would've just collapsed and not gone back. I think Kaji was the only thing grounding him to the reality of the situation and what he can do to help.";False;False;;;;1610590438;;False;{};gj6nk7b;False;t3_kwr188;False;False;t1_gj6asy1;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj6nk7b/;1610670356;3;True;False;anime;t5_2qh22;;0;[]; -[];;;xSpree_;;;[];;;;text;t2_7n7l56zr;False;False;[];;Link pls;False;False;;;;1610590571;;False;{};gj6ntd9;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6ntd9/;1610670510;0;True;False;anime;t5_2qh22;;0;[]; -[];;;xSpree_;;;[];;;;text;t2_7n7l56zr;False;False;[];;Can i have the link?;False;False;;;;1610590592;;False;{};gj6nuv0;False;t3_kwo9a6;False;True;t1_gj63lzc;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6nuv0/;1610670534;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ManyTurnover;;;[];;;;text;t2_4qpdnwwe;False;False;[];;eyy Can you help a guy out with a link?;False;False;;;;1610590737;;False;{};gj6o4v8;False;t3_kwo9a6;False;True;t1_gj6b9lo;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6o4v8/;1610670703;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kiyotaka9;;;[];;;;text;t2_9o3mihub;False;False;[];;link? please pm me.;False;False;;;;1610590763;;False;{};gj6o6l9;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6o6l9/;1610670733;0;True;False;anime;t5_2qh22;;0;[]; -[];;;kiyotaka9;;;[];;;;text;t2_9o3mihub;False;False;[];;link pls;False;False;;;;1610590819;;False;{};gj6oaao;False;t3_kwo9a6;False;True;t1_gj6b9lo;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6oaao/;1610670799;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GreedyPantsu;;;[];;;;text;t2_59qwry1x;False;False;[];;Link please;False;False;;;;1610590847;;False;{};gj6oc6h;False;t3_kwo9a6;False;True;t1_gj6n3xm;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6oc6h/;1610670831;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Komposed;;;[];;;;text;t2_5kfhb;False;False;[];;link please!;False;False;;;;1610590903;;False;{};gj6ofwc;False;t3_kwo9a6;False;True;t1_gj6b9lo;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6ofwc/;1610670897;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kiyotaka9;;;[];;;;text;t2_9o3mihub;False;False;[];;thank you a lot !;False;False;;;;1610591056;;False;{};gj6oq7t;False;t3_kwo9a6;False;True;t1_gj6m484;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6oq7t/;1610671071;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkDragen;;;[];;;;text;t2_15z1ma;False;False;[];;Please upvote it so that other's can see this...;False;False;;;;1610591158;;False;{};gj6ox2t;True;t3_kwo9a6;False;True;t1_gj6oq7t;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6ox2t/;1610671188;3;True;False;anime;t5_2qh22;;0;[]; -[];;;albrioz;;;[];;;;text;t2_4crhwhhq;False;False;[];;"* Danshi Koukousei no Nichijou -* Nichijou -* Kobayashi-san Chi no Maid Dragon -* Azumanga Daioh -* Flying Witch -* Hinamatsuri";False;False;;;;1610591235;;False;{};gj6p2ei;False;t3_kwl9za;False;True;t3_kwl9za;/r/anime/comments/kwl9za/help_needed_suggest_me_some_easytofollow_anime/gj6p2ei/;1610671279;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;It was reported but after discussing with other mods it may have been a mistake, reapproved.;False;False;;;;1610591368;moderator;False;{};gj6pbd2;False;t3_kwr188;False;False;t1_gj6mvwy;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj6pbd2/;1610671429;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SaerDeQuincy;;;[];;;;text;t2_fvilj;False;False;[];;Saekano. So satisfying.;False;False;;;;1610591428;;False;{};gj6pfhq;False;t3_kwob1u;False;True;t3_kwob1u;/r/anime/comments/kwob1u/good_romantic_comedy_anime/gj6pfhq/;1610671498;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nghtmare-Moon;;;[];;;;text;t2_jsig9;False;False;[];;"**REWATCHER** -First time watching the new Netflix Spanish Dub. So I'm mostly comparing between the original ADV (Art Sound Mexico) and the new Netflix cast. -This is probably my favorite episode. This is where shit gets really real. -[Spoiler From the Manga which came after](/s ""The Manga was written after the anime, in the manga Toji dies when Eva-01 crushed the capsule. It's actually worst cause shinji is listening on the rescue team and all"") -Now that shit's getting more dramatic I'm appreciating the new dub more (however it's still not as good as the original). The VA's sound really emotional -The conversation between shinji and Misato is narrated fairly different in the original, it felt different and I can't really say which one is better, both express the tension and situation fairly well: -**Old Dub**: -Misato: I was projecting myself onto you, pushing my hopes and dreams onto you. -. . .All of Nerv hasnt had a choice but to leave our fate in your hands -Shinji: Then for you the ends justify the means. -Misato: Yes -. . . -Misato: This is the first time I've seen him act so determined and mature -**New Dub**: -Misato: I put my hopes and my life's purpose in you. -. . .All of Nerv put their futures in you. -Shinji: That's very selfish of you. -Misato: I know. -. . . -Misato: This is the first time I've had a mature conversation with him. - -Big difference with Asuka this one since she says ""Scheisse"" (Shit! In german) when she runs out of bulletts while the new dub she just grunts (this is one of those little details that I really loved about the original Asuka) -Another small detail with Kaji: -Shinji (again) calling him ""Young Kaji"" in the new dub sounds hella weird, is he flirting with him? -Old Dub Kaji: I'd rather die in Misato's arms but this place would be my second choice. -New Dub Kaji: I'd rather rest my head in Misato's chest but I want to die here. (here it sounds more like he WANTS to die with his watermelons rather than with Misato, the resting sounds more like ""resting"" than ""RIP-resting"") - -We finally see shinji fully engaged in battle, he commits to this battle 100% and the Eva repays in kind not long after. -That desperation scene inside the powerless Eva, the original dub sounds more desperate since shinji starts cursing a little more ""Move you stupid piece of machinery!"" in the new dub its only ""move dammit move!"" -Ooof this Berserker scene is *Chef's Kiss* Kanpeki - -**TODAY WE MEET ZERUEL**: -Similar to Sachiel, Zeruel engages in physical mano-a-mano combat: Zeruel, also called Cirviel, is the Angel ""set over strength"", and had been sent by God to help David slay Goliath.The name Zeruel literally means ""arm of God""—probably no coincidence, and is an intentional allusion to its strength and its ultimate fate of being used by Unit 01 to regrow a new arm.";False;False;;;;1610591436;;False;{};gj6pg2f;False;t3_kwr188;False;False;t3_kwr188;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj6pg2f/;1610671508;6;True;False;anime;t5_2qh22;;0;[]; -[];;;AyyyLMAO407;;;[];;;;text;t2_8scx60wc;False;False;[];;"I found readthroughs on youtube with no commentary. I am watching hollow ataraxia on youtube even now. Just type in ""fate VN playthrough fate route"" or something. Make sure to specify which route youre reading through. Start with the fate route, then Unlimited Blade works, then Heaven's feel. It should be a long playlist with every chapter.";False;False;;;;1610591455;;False;{};gj6phbj;False;t3_kwooc1;False;False;t1_gj6fosl;/r/anime/comments/kwooc1/is_the_fate_series_worth_watchingwhat_is_the/gj6phbj/;1610671529;2;True;False;anime;t5_2qh22;;0;[]; -[];;;flowertimer77;;;[];;;;text;t2_1l262w0b;False;False;[];;"Favourite: Mahou Shoujo (aka magical girl) -1)Cardcaptor Sakura -2)Princess Tutu -3)Sailor Moon";False;False;;;;1610591905;;False;{};gj6qbqd;False;t3_kwp4us;False;True;t3_kwp4us;/r/anime/comments/kwp4us/whats_your_top_3_shows_in_your_favorite_genre_and/gj6qbqd/;1610672057;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Amndeep7;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/asmLANG;light;text;t2_7vr17;False;False;[];;"> qotd1 - -seeding can get weird cause of how votes get weighted depending on how many people were voting on that day so while a given ed might be less popular than its peers, if that particular day had fewer total votes and the ed still remained popular, it basically gets a boost in comparison to its peers";False;False;;;;1610591933;;False;{};gj6qdj0;False;t3_kwsa2a;False;False;t1_gj6dxmv;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6qdj0/;1610672087;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Fallen_God_Gilgamesh;;;[];;;;text;t2_16vzzc;False;False;[];;PLEASE SEND ME LINK T\_T;False;False;;;;1610592036;;False;{};gj6qkeh;False;t3_kwo9a6;False;True;t1_gj6b9lo;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6qkeh/;1610672202;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">adolescents - -Maybe slightly younger than that, the kid characters couldn't be older than 12.";False;False;;;;1610592123;;False;{};gj6qq8p;False;t3_kwr2mu;False;True;t1_gj5v217;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj6qq8p/;1610672301;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;There've been times in my life were young adult stuff would not work for me for any reason at all.;False;False;;;;1610592137;;False;{};gj6qr65;False;t3_kwr2mu;False;True;t1_gj60sg2;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj6qr65/;1610672316;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jolly-Basket614;;;[];;;;text;t2_88jh8amv;False;False;[];;can you send me the link pls?;False;False;;;;1610592172;;False;{};gj6qtk7;False;t3_kwo9a6;False;True;t1_gj63lzc;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6qtk7/;1610672356;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">the entire human existence is at stake and we are still having a conflict about Yuu going to Tokyo - -I've been saying there are at least two different shows stuck in here.";False;False;;;;1610592247;;False;{};gj6qyl3;False;t3_kwr2mu;False;True;t1_gj5u079;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj6qyl3/;1610672444;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Enough_Intention_647;;;[];;;;text;t2_7r4qqzzy;False;False;[];;Link pls;False;False;;;;1610592253;;False;{};gj6qyzw;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6qyzw/;1610672452;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Enough_Intention_647;;;[];;;;text;t2_7r4qqzzy;False;False;[];;Link pls;False;False;;;;1610592274;;False;{};gj6r0ey;False;t3_kwo9a6;False;True;t1_gj6b9lo;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6r0ey/;1610672477;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iwannadie7776;;;[];;;;text;t2_6f471h39;False;False;[];;I’d like a link as well;False;False;;;;1610592347;;False;{};gj6r5dx;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6r5dx/;1610672560;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610592364;;False;{};gj6r6k6;False;t3_kwo9a6;False;True;t1_gj6o6l9;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6r6k6/;1610672580;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">she is finally starting to understand her role and importance in this whole scheme - -Well... she's heard plenty already and seems little more concerned than before. - -Animation was also little different in my view and the style in the fights mostly unappealing. - -The ""pay-off"" of killing off Atori and Fukuro out of the blue was very meager, but if it finally makes Noein come out of his hole it's worth it I guess?";False;False;;;;1610592472;;False;{};gj6rdr4;False;t3_kwr2mu;False;True;t1_gj5stbx;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj6rdr4/;1610672703;2;True;False;anime;t5_2qh22;;0;[]; -[];;;luismaggi;;;[];;;;text;t2_13xvxg;False;False;[];;Anyone with a link, I would greatly appreciate it;False;False;;;;1610592545;;False;{};gj6rin7;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6rin7/;1610672787;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;They are in 6th grade so tweens, 12-13 and that is indeed adolescence. I am assuming the target audience is the same.;False;False;;;;1610592606;;False;{};gj6rmth;False;t3_kwr2mu;False;True;t1_gj6qq8p;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj6rmth/;1610672859;3;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">what purpose it's meant to serve - -Conjecture: None, it's a sign of budget issues, whether time or money. - ->I'm still not very invested in the characters or the world. If they both died I wouldn't even be upset - -same. Also we even *had* two deaths to which I was just like ""huh, that happened"". Even Karasu is a really boring character, the only ones I actually like that have had something of a presence are Haruka and Yuu. - ->Ai crying at the end of the episode felt really cheap. - -It's all arbitrary magic. - -I would only rate it slightly better at 5, up to now. It's astonishing just how dull a show you can make out of such a cool premise, the awful art doesn't help, and the soundtrack is technically not bad but rarely used effectively.";False;False;;;;1610592651;;False;{};gj6rpyk;False;t3_kwr2mu;False;False;t1_gj5ti3k;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj6rpyk/;1610672912;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ElmekiaLance;;;[];;;;text;t2_yvmud2z;False;False;[];;Ouch. I'm sorry to see Modern Crusaders, Kesenai Tsumi, I Beg You, and Prover go.;False;False;;;;1610592689;;False;{};gj6rsj1;False;t3_kwsa2a;False;True;t1_gj60ko9;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6rsj1/;1610672957;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dippy_bear;;;[];;;;text;t2_1xao82vs;False;False;[];;"**Galilei Donna** is still my biggest anime disappointment. It had a cool premise and the characters looked they were going to be interesting. However, the low episode count killed it. Things were rushed and the plot macguffin never actually got explained. - -**Planet With** started out as WTF, but by the end it was my favorite show from 2018.";False;False;;;;1610592778;;False;{};gj6ryjo;False;t3_kwqmyd;False;False;t3_kwqmyd;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj6ryjo/;1610673059;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">The show needed a prologue in La'cryma so we understood that part of the setting better. - -Yeah, also from a ""cool factor"" perspective I really don't get why there hasn't been more focus on these weird alternate dimensions instead of boring old Earth. Particularly lacking is alt-Haruka's background so we can maybe actually understand Karasu and the others.";False;False;;;;1610592929;;False;{};gj6s8mr;False;t3_kwr2mu;False;False;t1_gj5yv86;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj6s8mr/;1610673240;3;True;False;anime;t5_2qh22;;0;[]; -[];;;preciousleo;;;[];;;;text;t2_14n9vb;False;False;[];;Can you send me the link pls;False;False;;;;1610592944;;False;{};gj6s9mv;False;t3_kwo9a6;False;True;t1_gj63lzc;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6s9mv/;1610673257;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;"> she can make things real by observing them in an alternate dimension - -That would make sense but at least in dub it wasn't all that obvious.";False;False;;;;1610592979;;False;{};gj6sc2q;False;t3_kwr2mu;False;True;t1_gj5tkv7;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj6sc2q/;1610673302;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">The music placement can be pretty bad - -As I wrote, the music itself is good but the way it's utilized it can be barely better than none at all.";False;False;;;;1610593058;;False;{};gj6shbf;False;t3_kwr2mu;False;True;t1_gj5u5h4;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj6shbf/;1610673393;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cthellis;;;[];;;;text;t2_4fhj0;False;False;[];;"THIS IS THE YEAR WE MAKE FLIP FLAP FLIP FLAP HAPPEN - -MAKE FLIP FLAPPEN - -DO NOT FAIL ME, r/ANIME";False;False;;;;1610593116;;False;{};gj6slbo;False;t3_kwsa2a;False;True;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6slbo/;1610673461;3;True;False;anime;t5_2qh22;;0;[]; -[];;;natoluv;;;[];;;;text;t2_9jt2fjmf;False;False;[];;Can you slide me the user?;False;False;;;;1610593281;;False;{};gj6sw8m;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6sw8m/;1610673647;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610593477;;False;{};gj6t8z7;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6t8z7/;1610673864;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi karencynn, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610593477;moderator;False;{};gj6t919;False;t3_kwo9a6;False;True;t1_gj6t8z7;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6t919/;1610673866;2;False;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;Watch it;False;False;;;;1610593486;;False;{};gj6t9m7;False;t3_kwktdz;False;True;t3_kwktdz;/r/anime/comments/kwktdz/is_dragon_quest_the_great_adventure_of_dai_any/gj6t9m7/;1610673875;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;"> Particularly lacking is alt-Haruka's background so we can maybe actually understand Karasu and the others. - -Yeah if there is one thing I don't like is them taking so long to explain how things ended in their realm.";False;False;;;;1610593783;;False;{};gj6tt0x;False;t3_kwr2mu;False;True;t1_gj6s8mr;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj6tt0x/;1610674206;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Raye87;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Raye87;light;text;t2_61u3e;False;False;[];;can i have the link pls?;False;False;;;;1610594005;;False;{};gj6u78j;False;t3_kwo9a6;False;True;t1_gj63lzc;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6u78j/;1610674446;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akum713;;;[];;;;text;t2_44k8xsup;False;False;[];;Can i get link?;False;False;;;;1610594241;;False;{};gj6umqx;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6umqx/;1610674713;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Intelligent-Habit956;;;[];;;;text;t2_847gnp04;False;False;[];;Link?;False;False;;;;1610594260;;False;{};gj6uo1k;False;t3_kwo9a6;False;True;t3_kwo9a6;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6uo1k/;1610674736;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HugeKaleidoscope9751;;;[];;;;text;t2_4n9kivru;False;False;[];;dm me link plz??;False;False;;;;1610594296;;False;{};gj6uqh5;False;t3_kwo9a6;False;True;t1_gj5b3hf;/r/anime/comments/kwo9a6/kaifuku_jutsushi_no_yarinaoshi_uncensored/gj6uqh5/;1610674777;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Ramzilla95;;;[];;;;text;t2_xn9v7;False;False;[];;"My Votes (**Bolded** EDs are from shows I have watched, while *Italicized* EDs are from shows I haven't): - -ED | ED | Comments ---|--|-------- -[**Chikatto Chika Chika♡**](https://animethemes.moe/video/KaguyaSamaWaKokurasetai-ED2.webm)| [~~*Life is Like a Boat*~~](https://animethemes.moe/video/Bleach-ED1.webm) | I can only imagine how Bleach fans feel seeing this matchup. -[**Perfect World**](https://animethemes.moe/video/OokamiToKoushinryouS2-ED1.webm) | [~~*Silent Solitude*~~](https://animethemes.moe/video/OverlordS3-ED1.webm) | Neither is the best ED of their respective series, but I think **Perfect World** is the more unique of the two. Also, I really need to watch Overlord III already... -[**~~Gray~~**](https://animethemes.moe/video/MobPsycho100S2-ED1.webm) | [*It's the Right Time*](https://animethemes.moe/video/Kiseijuu-ED1.webm) | I've never been all that crazy about Mob's EDs like I am with its OPs. So, I'mma just give the vote to what sounds like the Japanese Backstreet Boys. -[**~~Sora wa Takaku Kaze wa Utau~~**](https://animethemes.moe/video/FateZeroS2-ED1.webm) | [*Bakusou Yumeuta*](https://animethemes.moe/video/SoulEater-ED3.webm) | Genuinely conflicted on this one. While I absolutely love **SwTKwU**, I think *Bakusou Yumeuta* just oozes personality. Hate to see either of these go out so early, but both are great. -[*~~Orange~~*](https://animethemes.moe/video/KimiUso-ED2.webm) | [*Step Up LOVE*](https://animethemes.moe/video/KekkaiSensenAndBeyond-ED1-NCBD1080.webm) | Not too crazy about either of these, but I think *Step Up LOVE* is a bit of a bop. -[*Climber*](https://animethemes.moe/video/HaikyuuS2-ED1-NCBD1080.webm) | [*~~Beautiful World~~*](https://animethemes.moe/video/DarlingInTheFranXX-ED3-NCBD1080.webm) | One has impressive animation while the other is a slideshow... pretty easy decision here. -[**Torches**](https://animethemes.moe/video/VinlandSaga-ED1-NCBD1080.webm) | [*~~NEVER SAY NEVER~~*](https://animethemes.moe/video/DurararaX2Shou-ED1.webm) | *insert joke about ""NEVER SAY NEVER"" here* -[**~~White White Snow~~**](https://animethemes.moe/video/ReZeroMemorySnow-ED1.webm) | [**Ikeru Hitobito**](https://animethemes.moe/video/MobPsycho100S2-ED4-NCBD1080.webm) | **Ikeru Hitobito** gets the edge here because I just adore the scene. -[**Uso**](https://animethemes.moe/video/FullmetalAlchemistBrotherhood-ED1.webm) | [*~~Orphans no Namida~~*](https://animethemes.moe/video/GundamIBO-ED1.webm) | Not gonna lie, really like *Orphans no Namida* as well. -[**Zzz**](https://animethemes.moe/video/Nichijou-ED1.webm) | [*~~Mashi Mashi~~*](https://animethemes.moe/video/HaikyuuS3-ED1-NCBD1080.webm) | **Zzz** might just be one of my favorite EDs of all time; so, no offense to *Mashi Mashi*, but it lost before the contest even began. -[*~~Kirameki~~*](https://animethemes.moe/video/KimiUso-ED1.webm) | [*STUDY x STUDY*](https://animethemes.moe/video/HighSchoolDxD-ED1.webm) | I'm voting for PLOT. Sue me. [Also, *Kirameki* is ED1 not ED2]. -[*Shinsekai Koukyougaku*](https://animethemes.moe/video/KillLaKill-ED2.webm) | [*~~Tsuki ga Kirei~~*](https://animethemes.moe/video/TsukiGaKirei-ED1.webm) | Eh... The first one was cute. -[**~~Kamado Tanjiro no Uta~~**](https://animethemes.moe/video/KimetsuNoYaiba-ED2.webm) | [*Star overhead*](https://animethemes.moe/video/FLCLAlternative-ED1.webm) | *Star overhead* might be my favorite discovery so far, and it is gonna be annihilated... RIP -[**Yamiyo**](https://animethemes.moe/video/Dororo2019-ED2.webm) | [*~~Darling~~*](https://animethemes.moe/video/DarlingInTheFranXX-ED6.webm) | -[**I Want You**](https://animethemes.moe/video/JojoNoKimyouNaBoukenS4-ED1.webm) | [*~~Be Your Girl~~*](https://animethemes.moe/video/ElfenLied-ED1.webm) | JoJo EDs just hit different. -[**~~Sayonara Gokko~~**](https://animethemes.moe/video/Dororo2019-ED1-NCBD1080.webm) | [*Gotta Knock a Little Harder*](https://animethemes.moe/video/CowboyBebopMovie-ED1.webm) | Goddamn you Cowboy Bebop and your amazing music. -[**Ouchi ni Kaeritai**](https://animethemes.moe/video/KonosubaS2-ED1.webm) | [*~~Dare ka, Umi wo.~~*](https://animethemes.moe/video/ZankyouNoTerror-ED1.webm) | I love those goofballs. -[**THERE IS A REASON**](https://animethemes.moe/video/NoGameNoLifeZero-ED1.webm) | [*~~Yuukyou Seishunka~~*](https://animethemes.moe/video/CodeGeass-ED1.webm) | **THERE IS A REASON** is a great song, but the visuals merely being credits really hurts it. As soon as it faces against a song of comparable quality with actual visuals, it's gonna lose. -[**~~Toki Tsukasadoru Juuni no Meiyaku~~**](https://animethemes.moe/video/SteinsGate-ED1.webm) | [*Ano Hero to' Bokura ni Tsuite*](https://animethemes.moe/video/PingPong-ED1.webm) | Genuinely forgot about that Steins;Gate ED. Really like the style of Ping Pong's ED, though. -[**Drown**](https://animethemes.moe/video/VinlandSaga-ED2-NCBD1080.webm) | [*~~Nirvana~~*](https://animethemes.moe/video/NoragamiAragoto-ED1.webm) | I like *Nirvana*, but I'm too biased to not vote for **Drown**. -[**Tomorrow**](https://animethemes.moe/video/MadeInAbyss-ED3.webm) | [*~~Pipo Password~~*](https://animethemes.moe/video/UchuuPatrolLuluco-ED1-Lyrics.webm) | **Tomorrow** is such a perfect ending to the season. The music combined with the visuals is just... **chef's kiss** -[**Datte Atashi no Hero.**](https://animethemes.moe/video/BokuNoHeroAcademiaS2-ED2-NCBD1080.webm) | [*~~hectopascal~~*](https://animethemes.moe/video/YagateKimiNiNaru-ED1.webm) | I don't think everything Lisa makes is the best thing ever, but **Datte Atashi no Hero** is pretty good. Visuals really make the ED. -[*~~and I'm home~~*](https://animethemes.moe/video/MadokaMagica-ED3.webm) | [*~~Michi~~*](https://animethemes.moe/video/KazeGaTsuyokuFuiteiru-ED2-NCBD1080.webm) | -[**Zetsubou Billy**](https://animethemes.moe/video/DeathNote-ED2.webm) | [**~~Nounai~~**](https://animethemes.moe/video/EnenNoShouboutai-ED2-NCBD1080.webm) | I like both of these EDs a lot, but Death Note has a style and just rocks it. -[**great escape**](https://animethemes.moe/video/ShingekiNoKyojin-ED2.webm) | [**~~Heart Pattern~~**](https://animethemes.moe/video/Nisekoi-ED1.webm) | It has been about 7 years since I watched season 1 of Attack on Titan, and back then I didn't really pay attention to EDs. Happy to finally get to appreciate this ED. -[*~~forget-me-not~~*](https://animethemes.moe/video/SwordArtOnlineAlicization-ED2-NCBD1080.webm) | [*More One Night*](https://animethemes.moe/video/ShoujoShuumatsuRyokou-ED1-NCBD1080.webm) | I REALLY need to watch Girls' Last Tour. -[**~~Koi no Shita no wa~~**](https://animethemes.moe/video/KoeNoKatachi-ED1.webm) | [*Inkya Impulse*](https://animethemes.moe/video/AsobiAsobase-ED1.webm) | Metal? ✓ Girls? ✓ Cool animation? ✓ -[**Freek'n You**](https://animethemes.moe/video/JojoNoKimyouNaBoukenS5-ED1.webm) | [*~~Manatsu no Setsuna~~*](https://animethemes.moe/video/DarlingInTheFranXX-ED2-NCBD1080.webm) | EVERY TIME I CLOSE MY EYES! I WAKE FEELING SO HOOOOOORNY! -[*Hare Hare Yukai*](https://animethemes.moe/video/SuzumiyaHaruhiNoYuuutsu-ED1.webm) | [*~~Hibana~~*](https://animethemes.moe/video/GoldenKamuy-ED1-NCBD1080.webm) | I mean, how do you not vote for that dance?!? -[*~~Fighter~~*](https://animethemes.moe/video/SangatsuNoLion-ED1.webm) | [*~~DAYS of DASH~~*](https://animethemes.moe/video/Sakurasou-ED1.webm) | -[**~~RAY OF LIGHT~~**](https://animethemes.moe/video/FullmetalAlchemistBrotherhood-ED5.webm) | [*Kyokyojitsujitsu*](https://animethemes.moe/video/ShokugekiNoSoumaSanNoSara-ED1.webm) | Dat bass doe -[*~~Lamp~~*](https://animethemes.moe/video/YakusokuNoNeverland-ED2-NCBD1080.webm) | [*Your song**](https://animethemes.moe/video/LogHorizon-ED1.webm) | I just REALLY like the girl's voice in *Your song**. It's cute and relaxing.";False;False;;;;1610594363;;False;{};gj6uuty;False;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6uuty/;1610674849;14;True;False;anime;t5_2qh22;;0;[]; -[];;;randyripoff;;;[];;;;text;t2_pg4m04;False;False;[];;Kado the Right Answer;False;False;;;;1610595005;;False;{};gj6w0fa;False;t3_kwqmyd;False;True;t3_kwqmyd;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj6w0fa/;1610675556;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Harpr33t-Singh;;;[];;;;text;t2_2xgwk401;False;False;[];;"> Shinji makes the determined decision to run away. Run from the pain. Run from his father’s manipulations - -I read a good discussion in the 2018 rewatch thread where someone pointed out that one of the reasons Shinji continuied to pilot the Eva was to garner his father's approval. But after the events of last episode, he just decided that all this wasn't worth it. He wasn't going to have a meaningful relationship with his father so there was no reason to continue piloting the Eva - -&#x200B; - -> Kaji also motivates Shinji towards making the choice to pilot again. Nice use of words there. - -Pretty great words there. Instead of outright telling Shinji to go pilot the Eva which might have made Shinji push back and outright refuse to do so, him saying that it was his choice was a great move. - -&#x200B; - -> Ritsuko says that she’s awakened. Who? The spirit of Shinji’s mother? Why is she like this? - -\*YES!!!!!\* That line got me too. There is a possibility that Unit 01 somehow has some connection to Shinji's mother. We saw a woman's ghost when Shinji was stuck in the Sea of Dirac. Could be his mother's ghost. Then, in this episode also Unit 01 won't accept Rei or the Dummy plug either buy worked fine with Shinji. Also, when Eva ran out of power, on Shinji's continual assisstance it came to life. All these things point out that there may be a connection between Unit 01 and Shinji's mother.";False;False;;;;1610595483;;False;{};gj6wv4d;False;t3_kwr188;False;False;t1_gj63n16;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj6wv4d/;1610676087;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Im-in-line;;;[];;;;text;t2_a8tms;False;False;[];;That sounds right to me. Glad they are all still seeded high anyway.;False;False;;;;1610595904;;False;{};gj6xm06;False;t3_kwsa2a;False;True;t1_gj6qdj0;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6xm06/;1610676588;2;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;YEAHH;False;False;;;;1610596472;;False;{};gj6ylsc;True;t3_kwmp0m;False;True;t1_gj6bs3w;/r/anime/comments/kwmp0m/yukinon_is_so_kkawaaiiiiii_oregairumy_youth/gj6ylsc/;1610677214;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SorcererOfTheLake;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RiverSorcerer;light;text;t2_1pmzlf0y;False;True;[];;"> I REALLY need to watch Girls' Last Tour. - -You should.";False;False;;;;1610596831;;False;{};gj6z8ng;True;t3_kwsa2a;False;False;t1_gj6uuty;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6z8ng/;1610677617;10;True;False;anime;t5_2qh22;;0;[]; -[];;;LordTrinity;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/LordTrinity;light;text;t2_muxil3i;False;False;[];;I'm really disappointed by the Charlotte and Gabriel Dropout endings seeds, I think both deserved better :/;False;False;;;;1610596923;;False;{};gj6zed2;False;t3_kwsa2a;False;True;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6zed2/;1610677713;2;True;False;anime;t5_2qh22;;0;[]; -[];;;massgenoside;;;[];;;;text;t2_47t33sa4;False;False;[];;https://youtube.com/playlist?list=PLbfg5uWgGzLt_xTi7mp0-IVD6l8O19adI is this what you are talking about;False;False;;;;1610597216;;False;{};gj6zwfh;True;t3_kwooc1;False;True;t1_gj6phbj;/r/anime/comments/kwooc1/is_the_fate_series_worth_watchingwhat_is_the/gj6zwfh/;1610678023;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AyyyLMAO407;;;[];;;;text;t2_8scx60wc;False;False;[];;Yes I believe that may be the exact one I watched last year;False;False;;;;1610597286;;False;{};gj700sa;False;t3_kwooc1;False;True;t1_gj6zwfh;/r/anime/comments/kwooc1/is_the_fate_series_worth_watchingwhat_is_the/gj700sa/;1610678098;3;True;False;anime;t5_2qh22;;0;[]; -[];;;massgenoside;;;[];;;;text;t2_47t33sa4;False;False;[];;Thank you very much mr man;False;False;;;;1610597312;;False;{};gj702eu;True;t3_kwooc1;False;True;t1_gj700sa;/r/anime/comments/kwooc1/is_the_fate_series_worth_watchingwhat_is_the/gj702eu/;1610678127;3;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;The first two seasons of Oregairu were cringe, but in the third season, the anime got serious and everything became complicated, at that time I really missed how cringy the show was;False;False;;;;1610597440;;False;{};gj70a7h;True;t3_kwmp0m;False;True;t1_gj52tew;/r/anime/comments/kwmp0m/yukinon_is_so_kkawaaiiiiii_oregairumy_youth/gj70a7h/;1610678270;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AyyyLMAO407;;;[];;;;text;t2_8scx60wc;False;False;[];;No problem, I hope you like it because I loved it. Watch out for spoilers ! I wouldn't read the comment sections if I were you and I would watch out for youtube recommended vids that may spoil stuff too.;False;False;;;;1610597720;;False;{};gj70rhk;False;t3_kwooc1;False;True;t1_gj702eu;/r/anime/comments/kwooc1/is_the_fate_series_worth_watchingwhat_is_the/gj70rhk/;1610678600;3;True;False;anime;t5_2qh22;;0;[]; -[];;;massgenoside;;;[];;;;text;t2_47t33sa4;False;False;[];;Ok thank you very much I’ve heard good thing;False;False;;;;1610597756;;False;{};gj70tsc;True;t3_kwooc1;False;True;t1_gj70rhk;/r/anime/comments/kwooc1/is_the_fate_series_worth_watchingwhat_is_the/gj70tsc/;1610678653;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Enemigo_Poderoso;;;[];;;;text;t2_6nwqvcos;False;False;[];;What the fuck Iris was eliminated? It was the only ED from SAO I actually cared lol (also the only good thing to come from the 1st season of Alicization);False;False;;;;1610598445;;False;{};gj71ztt;False;t3_kwsa2a;False;True;t1_gj60ko9;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj71ztt/;1610679461;1;True;False;anime;t5_2qh22;;0;[]; -[];;;co-DMs;;;[];;;;text;t2_5fd3y62d;False;False;[];;"It sucks that Life is Like a Boat is gonna get crushed right out of the gate like that. Damn. - -Edit: I do at least wanna point out how awesome it is that this many years later, Bleach still gets 5 entries in the 2021 Best ED contest. That's a testament to just how good its music was, IMO.";False;False;;;;1610598445;;1610599028.0;{};gj71zu8;False;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj71zu8/;1610679461;5;True;False;anime;t5_2qh22;;0;[]; -[];;;mobilegamegod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Aochhi;light;text;t2_pkuqf;False;False;[];;The fact that it became so melodramatic and self-serious was the most cringe part.;False;False;;;;1610598513;;False;{};gj723y5;False;t3_kwmp0m;False;True;t1_gj70a7h;/r/anime/comments/kwmp0m/yukinon_is_so_kkawaaiiiiii_oregairumy_youth/gj723y5/;1610679532;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Enemigo_Poderoso;;;[];;;;text;t2_6nwqvcos;False;False;[];;">QOTD1: Can someone explain to me why Reason is higher than both Hunting for a dream and Hyori Ittai? As much as I like the Hunter x Hunter openings, I don't see why Reason would be above both of those. - -Because Reason meshed incredibly well with the feeling of the Greed Island arc, meanwhile Hunting for Your Dream is just some Krauser-sama headbanging material. - - -Hyouri Ittai seems a little bit underappreciated, though. If I were to especulate, I'd say some people stopped watching after seeing how dark and ¿edgy? the Chimera ant arc was going to be.";False;False;;;;1610599158;;1610599416.0;{};gj7365u;False;t3_kwsa2a;False;True;t1_gj6dxmv;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj7365u/;1610680263;2;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;"Yeah, it was cringy, but cringy is necessary isn't it, - -RomComs need cringe";False;False;;;;1610599398;;1610599655.0;{};gj73kd7;True;t3_kwmp0m;False;True;t1_gj723y5;/r/anime/comments/kwmp0m/yukinon_is_so_kkawaaiiiiii_oregairumy_youth/gj73kd7/;1610680521;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeralyos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Zeralyos;light;text;t2_dphmj32;False;False;[];;Damn, I just realized I forgot to nominate Liquescimus.;False;False;;;;1610599829;;False;{};gj7493o;False;t3_kwsa2a;False;True;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj7493o/;1610680957;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Caynze;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Caynze;light;text;t2_jrhhg;False;False;[];;It's The Right Time from Parasyte is actually the best entry as a standalone song here;False;False;;;;1610600764;;False;{};gj75p84;False;t3_kwsa2a;False;True;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj75p84/;1610681853;3;True;False;anime;t5_2qh22;;0;[]; -[];;;itsadoubledion;;;[];;;;text;t2_6t4ce;False;False;[];;Ouran High School Host Club;False;False;;;;1610600877;;False;{};gj75vgn;False;t3_kwob1u;False;True;t3_kwob1u;/r/anime/comments/kwob1u/good_romantic_comedy_anime/gj75vgn/;1610681959;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kingofthered;;MAL;[];;http://myanimelist.net/animelist/LDmockingbird;dark;text;t2_5vtn9;False;False;[];;"I'll third Wotakoi as a fantastic romcom. - -I agree with the previous poster in that I've found it surprisingly rare to have pure romcom. Like, Love Lab and Ouran High School Host Club are more comedies about romance, than romcoms. And stuff like Chiunibyo or Working!! are romcoms but still have a deep scoop of drama added on.";False;False;;;;1610601016;;False;{};gj7636y;False;t3_kwob1u;False;True;t3_kwob1u;/r/anime/comments/kwob1u/good_romantic_comedy_anime/gj7636y/;1610682093;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ej_stephens;;;[];;;;text;t2_3d6h2d18;False;False;[];;Life is like a boat really had to face the Chika dance round 1... That's rough;False;False;;;;1610601211;;False;{};gj76dwc;False;t3_kwsa2a;False;True;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj76dwc/;1610682283;3;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;Ending was good though. Final arc was really great, but the lead up to it is strongly mediocre.;False;False;;;;1610601264;;False;{};gj76gxt;False;t3_kwqmyd;False;True;t1_gj5tftm;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj76gxt/;1610682337;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ej_stephens;;;[];;;;text;t2_3d6h2d18;False;False;[];;How on earth is Drown below Torches? I mean I like both but Drown is such a banger!;False;False;;;;1610601302;;False;{};gj76j0a;False;t3_kwsa2a;False;True;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj76j0a/;1610682372;2;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;How is this even a bad thing? You’re just explaining a plot thing... how is this a flaw of death note? They spent episodes explaining on and on how Light fell from god-level power.;False;False;;;;1610601371;;False;{};gj76mru;False;t3_kwqmyd;False;True;t1_gj6b37v;/r/anime/comments/kwqmyd/what_anime_had_an_amazing_start_but_fizzled_out/gj76mru/;1610682438;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TimIsDingus;;;[];;;;text;t2_5fahpuq;False;False;[];;Lost in paradise?;False;False;;;;1610601678;;False;{};gj77350;False;t3_kwsa2a;False;True;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj77350/;1610682786;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Harpr33t-Singh;;;[];;;;text;t2_2xgwk401;False;False;[];;" ->The name Zeruel literally means ""arm of God""—probably no coincidence, and is an intentional allusion to its strength and its ultimate fate of being used by Unit 01 to regrow a new arm. - -:0 that was really good!! Thanks";False;False;;;;1610602839;;False;{};gj78sa5;False;t3_kwr188;False;False;t1_gj6pg2f;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj78sa5/;1610683886;4;True;False;anime;t5_2qh22;;0;[]; -[];;;three_firstnames;;;[];;;;text;t2_2asj14;False;False;[];;Let's hope for a miracle;False;False;;;;1610603150;;False;{};gj797um;False;t3_kwsa2a;False;False;t1_gj61cu0;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj797um/;1610684149;5;True;False;anime;t5_2qh22;;0;[]; -[];;;UzEE;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/UzEEInc;light;text;t2_45t2z;False;False;[];;"> No. 87: T-KT (Attack on Titan) - -> No. 119: Lyra (Steins;Gate) - -> No. 161: Song played by the Stars (Steins;Gate) - -Damn it, these were among my absolute favorites and I was hoping one of them would make a deep run.";False;False;;;;1610603478;;False;{};gj79o3l;False;t3_kwsa2a;False;False;t1_gj60ko9;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj79o3l/;1610684421;4;True;False;anime;t5_2qh22;;0;[]; -[];;;three_firstnames;;;[];;;;text;t2_2asj14;False;False;[];;HECTOPASCAL;False;False;;;;1610603558;;False;{};gj79s3y;False;t3_kwsa2a;False;True;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj79s3y/;1610684489;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Harpr33t-Singh;;;[];;;;text;t2_2xgwk401;False;False;[];;"> shows Toji has lost his left leg near-entirely. - -WHAT THE FUCK!!!! I didn't notice that! - -&#x200B; - -> Also more strangeness with Gendo and Rei as her rejection in Unit 1 is apparently also a rejection of Gendo, and Rei says that even in death she can be replaced - -Yup, these two things really puzzled me. Why rejection of the dummy plug and Rei implies rejection of Gendo by the Eva. And what did Rei mean when she said she can be replaced? Did she refer to the other Eva pilots or somenthing cryptic? Leaning more towards the latter. - -&#x200B; - ->The berserk cannibalism scene that forms the conclusion is downright infamous and at any rate horrifying - -That was an amazing scene. When the Eva got on all fours, the sound it made was horrifying. Then after dealing the final blow, IT FUCKING STARTED TO EAT IT!!! Also the animation of this scene was pretty fluid. Great stuff.";False;False;;;;1610604014;;False;{};gj7ae7i;False;t3_kwr188;False;True;t1_gj6asy1;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj7ae7i/;1610684859;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SaadsIQ;;;[];;;;text;t2_4xjem7pk;False;False;[];;Yes. It also has my best waifu saber;False;False;;;;1610604995;;False;{};gj7bofk;False;t3_kwqjjd;False;True;t1_gj5rp3t;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj7bofk/;1610685640;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SaadsIQ;;;[];;;;text;t2_4xjem7pk;False;False;[];;Fate zero;False;False;;;;1610605041;;False;{};gj7bql5;False;t3_kwqjjd;False;True;t1_gj64yev;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj7bql5/;1610685676;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WeeabooVoid;;;[];;;;text;t2_6hwibewj;False;False;[];;I was thinking the same thing! Don't get me wrong both EDs are good but I bop to Hectopascal when I'm bored.;False;False;;;;1610605283;;False;{};gj7c1su;False;t3_kwsa2a;False;True;t1_gj61cu0;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj7c1su/;1610685863;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Pythoner6;;;[];;;;text;t2_n4og0;False;False;[];;"I guess I knew this would happen, but I am very sad that some of the best endings didn't make it like Marutsuke and Kago no Naka no Bokura wa (these were almost certainly my favorite two EDs from 2019 and easily shot up to the top of my list overall as well). At least a few of the other best ones did make it like Fighter and Daijoubu. And it looks like Niji no Kanata ni somehow didn't get nominated at all (I was meaning to do that actually but forgot about that one in particular until too late). - -Given the above it's probably not surprising that in the matchups today I care the most about Fighter. Days of Dash is fine, but nothing special IMO - definitely not something I remembered even though I watched the show not that long ago. Outside of that, Tomorrow definitely gets my vote, Kevin Penkin's work is just amazing and it's just used so well at the end of the season. Then there's the two Vinland Saga endings which are both incredible in their own ways; Aimer is pretty much always amazing and Torches is no different, and Milet really nails Drown as well. Both of them have such distinctive voices which I love and they manage to fit those respective songs so well - I remember being so happy when watching Vinland Saga getting so much good music out of it (I wasn't much a fan of the second OP, but the first, Mukanjyo was really good as well). - -With regards to things that surprised me, well I can't say I'm surprised, but I'll never understand how on Earth Dango Daikazoku is so popular - I can't exactly explain why I hate it with so much passion but I really cannot stand it at all. IMO, if Marutsuke and Kago no Naka no Bokura wa can't even make it past eliminations then I can't see how Dango Daikazoku deserves to either, let alone being all the way up at 36th seed.";False;False;;;;1610605486;;1610605834.0;{};gj7cb47;False;t3_kwsa2a;False;True;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj7cb47/;1610686022;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BurningFredrick;;MAL;[];;https://myanimelist.net/profile/BurningFredrick;dark;text;t2_74w5s;False;False;[];;I hadn't considered that but does make a lot of sense.;False;False;;;;1610605486;;False;{};gj7cb4e;False;t3_kwr2mu;False;True;t1_gj5xi2q;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj7cb4e/;1610686022;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TwistedMemer;;;[];;;;text;t2_35jeoctg;False;False;[];;The quintessential quintuplets is pretty good. There’s a tiny bit of drama but nothing serious and is overall pretty light and good.;False;False;;;;1610605740;;False;{};gj7cmma;False;t3_kwob1u;False;True;t3_kwob1u;/r/anime/comments/kwob1u/good_romantic_comedy_anime/gj7cmma/;1610686211;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;This show is definitely connecting things that I would not necessarily put together.;False;False;;;;1610605964;;False;{};gj7cwhx;False;t3_kwr2mu;False;True;t1_gj7cb4e;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj7cwhx/;1610686380;3;True;False;anime;t5_2qh22;;0;[]; -[];;;redshirtengineer;;null a-amq;[];;;dark;text;t2_30v9ef;False;False;[];;"First timer - -Been missing for a couple of eps, which may ~~or may not~~ have anything to do with /u/No_Rex suggesting a Noein drinking game. But somewhere in those eps I really got into this anime more than just for the ~~excess~~ beverages. Sucker for the old multiverse plot. - -QOTD1: The obvious guess is Haruka trying to save everybody, but that kind of thinking gets us Yuu's mom very special redemption episode, and nobody wants more of that. So let's go with purple haired chick wishing for it all to be over cause she's just had enough. - -QOTD2: How this might end. IN FIRE - -QOTD3: Slow start but I am ALL IN";False;False;;;;1610606637;;False;{};gj7dptx;False;t3_kwr2mu;False;False;t3_kwr2mu;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj7dptx/;1610686882;5;True;False;anime;t5_2qh22;;0;[]; -[];;;redshirtengineer;;null a-amq;[];;;dark;text;t2_30v9ef;False;False;[];;randomly, in a quantum sort of way ... now that's meta;False;False;;;;1610606735;;False;{};gj7du2g;False;t3_kwr2mu;False;True;t1_gj5vct3;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj7du2g/;1610686953;2;True;False;anime;t5_2qh22;;0;[]; -[];;;redshirtengineer;;null a-amq;[];;;dark;text;t2_30v9ef;False;False;[];;I forgot about the conveniently offscreen Dad. Wonder who he will end up being.;False;False;;;;1610606852;;False;{};gj7dz30;False;t3_kwr2mu;False;True;t1_gj5swuh;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj7dz30/;1610687040;2;True;False;anime;t5_2qh22;;0;[]; -[];;;redshirtengineer;;null a-amq;[];;;dark;text;t2_30v9ef;False;False;[];;Baron best dog;False;False;;;;1610607062;;False;{};gj7e82s;False;t3_kwr2mu;False;True;t1_gj5t1je;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj7e82s/;1610687194;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;This is the Way.;False;False;;;;1610607331;;False;{};gj7ej9e;False;t3_kwr2mu;False;True;t1_gj7e82s;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj7ej9e/;1610687385;2;True;False;anime;t5_2qh22;;0;[]; -[];;;redshirtengineer;;null a-amq;[];;;dark;text;t2_30v9ef;False;False;[];;"re: Yuu being lighter, many of the characters seemed off-model to me at times in this ep - -and I don't trust Haruka's Dad";False;False;;;;1610607385;;False;{};gj7eljq;False;t3_kwr2mu;False;True;t1_gj5ti3k;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj7eljq/;1610687429;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ENKlDU;;;[];;;;text;t2_4scvchzo;False;False;[];;"I beg you is so good and dark, I’m sad it’s gone - -The lyrics are literally like “kick me with the toe of ur boot if u would please”";False;False;;;;1610607450;;False;{};gj7eo71;False;t3_kwsa2a;False;True;t1_gj6dywb;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj7eo71/;1610687475;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ENKlDU;;;[];;;;text;t2_4scvchzo;False;False;[];;"I beg u from Fate Heavens Feel 2 is gone? - -#i sleep";False;False;;;;1610607499;;False;{};gj7eq60;False;t3_kwsa2a;False;True;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj7eq60/;1610687510;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeralyos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Zeralyos;light;text;t2_dphmj32;False;False;[];;Too recent.;False;False;;;;1610607538;;False;{};gj7erqy;False;t3_kwsa2a;False;True;t1_gj77350;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj7erqy/;1610687538;3;True;False;anime;t5_2qh22;;0;[]; -[];;;th3plague;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/th3plague;light;text;t2_3erjrvx2;False;False;[];;Today's recommendation is vote for [More One Night](https://animethemes.moe/video/ShoujoShuumatsuRyokou-ED1.webm), then watch Girls' Last Tour.;False;False;;;;1610607873;;False;{};gj7f5h5;False;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj7f5h5/;1610687778;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Pythoner6;;;[];;;;text;t2_n4og0;False;False;[];;"I find it so amusing that Funimation is the only place to watch Log Horizon season 3 that just started up today, but they only have season 1, and not season 2. Then both HiDive and Crunchyroll both only have season 2. It's just like why. Why do you do this to us? Granted I'm paying for both VRV and Funimation anyway so it's not like it really affects me, but still. - -What's way worse though IMO is Netflix's absolute insistence that everyone must be forced to binge-watch everything (unless you specifically live in Japan) which I just absolutely hate.";False;False;;;;1610607915;;False;{};gj7f74c;False;t3_kwmp0w;False;True;t1_gj5ai06;/r/anime/comments/kwmp0w/i_really_do_hate_netflix/gj7f74c/;1610687806;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Pythoner6;;;[];;;;text;t2_n4og0;False;False;[];;"I have typically found that the movies are the best value for me in terms of the blu-rays because they actually take advantage of my surround sound (which can be really amazing). But I still try to grab my favorite shows on blu-ray if I can get them for a not too unreasonable price. I have found Aniplex shows though tend to be insanely expensive - which is unfortunate because I've got a few from them I'd really like to get like March Comes in Like a Lion, but I just can't justify spending >$500 just for both seasons of that. It's just absolutely insane - and its not like its out of print or anything.";False;False;;;;1610608434;;False;{};gj7fs09;False;t3_kwm98h;False;True;t3_kwm98h;/r/anime/comments/kwm98h/what_anime_blurays_would_you_recommend_people_get/gj7fs09/;1610688170;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ihileath;;MAL;[];;http://myanimelist.net/animelist/Ihileath;dark;text;t2_rsvva;False;False;[];;"> (but mildly annoyed - -It's catchy and very well coreographed. So much so that it went properly viral. I'll probably end up voting against it at some point, but it wouldn't exactly be the most unfair thing in the world if it did win.";False;False;;;;1610608444;;False;{};gj7fsdz;False;t3_kwsa2a;False;False;t1_gj62d5j;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj7fsdz/;1610688176;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ihileath;;MAL;[];;http://myanimelist.net/animelist/Ihileath;dark;text;t2_rsvva;False;False;[];;Not exactly shocked Prover couldn't hold its own in the polls against the other Fate EDs, since Babylonia is a lot less accessible, but it *is* a shame.;False;False;;;;1610609063;;False;{};gj7ggou;False;t3_kwsa2a;False;True;t1_gj60ko9;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj7ggou/;1610688621;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ihileath;;MAL;[];;http://myanimelist.net/animelist/Ihileath;dark;text;t2_rsvva;False;False;[];;Oho, another chance to judge the community by their music tastes. Smashing.;False;False;;;;1610609438;;False;{};gj7gvl1;False;t3_kwsa2a;False;True;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj7gvl1/;1610688894;2;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;Jesus, 8-man has the deadest eyes in anime history.;False;False;;;;1610610262;;False;{};gj7hru5;False;t3_kwmp0m;False;True;t3_kwmp0m;/r/anime/comments/kwmp0m/yukinon_is_so_kkawaaiiiiii_oregairumy_youth/gj7hru5/;1610689669;3;True;False;anime;t5_2qh22;;0;[]; -[];;;b0bba_Fett;;;[];;;;text;t2_12yifh;False;False;[];;"Stealing the format from /u/Ramzilla95 because it looks nice - -My Votes (**Bolded** EDs are from shows I have watched, while *Italicized* EDs are from shows I haven't): - -ED | ED | Comments ---|--|-------- -[Chikatto Chika Chika♡](https://animethemes.moe/video/KaguyaSamaWaKokurasetai-ED2.webm)| [~~**Life is Like a Boat**~~](https://animethemes.moe/video/Bleach-ED1.webm) |First time seeing the dance proper. Not bad, gotta say, also, this is a fairly weak Bleach ED. -[~~*Perfect World*~~](https://animethemes.moe/video/OokamiToKoushinryouS2-ED1.webm) | [**Silent Solitude**](https://animethemes.moe/video/OverlordS3-ED1.webm) | No particularly good reason for one over the other beyond simple music taste, wouldn't be voting for either of them over Chika next round anyway. -[**Gray**](https://animethemes.moe/video/MobPsycho100S2-ED1.webm) | [*~~It's the Right Time~~*](https://animethemes.moe/video/Kiseijuu-ED1.webm) | The way they use Gray [the second time](https://youtu.be/VWR_hTC4A98) is mostly why I chose it. That scene really kinda defines that season. -[*~~Sora wa Takaku Kaze wa Utau~~*](https://animethemes.moe/video/FateZeroS2-ED1.webm) | [**Bakusou Yumeuta**](https://animethemes.moe/video/SoulEater-ED3.webm) | Probably the reason I became obsessed with EDs, Bakusou Yumeuta is a kickass Sakugafest and just oozes [Style](https://files.catbox.moe/h0lv0i.webm)... I'll see myself out. -[*~~Orange~~*](https://animethemes.moe/video/KimiUso-ED2.webm) | [*Step Up LOVE*](https://animethemes.moe/video/KekkaiSensenAndBeyond-ED1-NCBD1080.webm) | Being largely unfamiliar with both shows, I found Orange largely unremarkable, not bad, not amazing, fine. Step Up LOVE on the other hand, is a trip, and was entertaining regardless of my familiarity, and while it almost lost me in the middle where it seemed to be veering towards directionlessness, it got itself back on track at the end. -[*Climber*](https://animethemes.moe/video/HaikyuuS2-ED1-NCBD1080.webm) | [*~~Beautiful World~~*](https://animethemes.moe/video/DarlingInTheFranXX-ED3-NCBD1080.webm) | ""One has impressive animation while the other is a slideshow... pretty easy decision here."" -/u/Ramzilla95 And I couldn't have said it better myself. -[**Torches**](https://animethemes.moe/video/VinlandSaga-ED1-NCBD1080.webm) | [**~~NEVER SAY NEVER~~**](https://animethemes.moe/video/DurararaX2Shou-ED1.webm) | Not a big fan of either one tbh, but there's actual animation in Torches. -[**~~White White Snow~~**](https://animethemes.moe/video/ReZeroMemorySnow-ED1.webm) | [**Ikeru Hitobito**](https://animethemes.moe/video/MobPsycho100S2-ED4-NCBD1080.webm) | Ikeru Hitobito wins purely on being animated throughout, while something that could have easily been animated in the Re:Zero one is instead relegated to [Pachinko duty](https://www.youtube.com/watch?v=CcfrahkdGmM) -[**~~Uso~~**](https://animethemes.moe/video/FullmetalAlchemistBrotherhood-ED1.webm) | [**Orphans no Namida**](https://animethemes.moe/video/GundamIBO-ED1.webm) | Orphans No Namida might be better done in its [Music Video](https://youtu.be/_pyfH3oj_eg) than in the ED, but it still wins because while Uso is a nice ED, that's all it is, while Orphans is also a storytelling tool used beyond its standard ED run. It's also not like it wasn't also a really nice ED. -[**Zzz**](https://animethemes.moe/video/Nichijou-ED1.webm) | [*~~Mashi Mashi~~*](https://animethemes.moe/video/HaikyuuS3-ED1-NCBD1080.webm) | **Zzz** is comfy, well animated, and cute, Mashi Mashi isn't even a slide show. No Contest. -[*~~Kirameki~~*](https://animethemes.moe/video/KimiUso-ED1.webm) | [**STUDY x STUDY**](https://animethemes.moe/video/HighSchoolDxD-ED1.webm) | Even disregarding the PLOT, Study X Study is just straight up beautifully animated and very well directed with a super catchy and fun song on top, it is straight up just a fantastic ED. It even loops visually! -[**Shinsekai Koukyougaku**](https://animethemes.moe/video/KillLaKill-ED2.webm) | [*~~Tsuki ga Kirei~~*](https://animethemes.moe/video/TsukiGaKirei-ED1.webm) | Kill La Kill's second ED definitely ain't the first, but it's no slouch either, just plain absurdly cute, catchy, and when [Nui joins in, also terrifying! \(MAJOR KILL LA KILL SPOILERS!\)](https://www.youtube.com/watch?v=HRT_SlkPS84) -[*~~Kamado Tanjiro no Uta~~*](https://animethemes.moe/video/KimetsuNoYaiba-ED2.webm) | [**Star Overhead**](https://animethemes.moe/video/FLCLAlternative-ED1.webm) | Star Overhead might be my favorite Pillows song, and even if Alternative wasn't actually good(it gets more hate than it deserves because Progressive was disappointing) this song would justify its existence. Also the stop motion being a sorta callback in a way to Ride on Shooting Star is a really nice touch. -[**Yamiyo**](https://animethemes.moe/video/Dororo2019-ED2.webm) | [*~~Darling~~*](https://animethemes.moe/video/DarlingInTheFranXX-ED6.webm) | Just. No. -[**I Want You**](https://animethemes.moe/video/JojoNoKimyouNaBoukenS4-ED1.webm) | [*~~Be Your Girl~~*](https://animethemes.moe/video/ElfenLied-ED1.webm) | Possibly the best JoJo ED, I Want You honestly deserves even more love than it already gets(So does Roundabout for that matter but I'll get to that when it's proper.) The way it depicts a fluid and changing Morioh throughout Part 4's run is something special even disregarding the brilliant implementation of Savage Garden. -[**Sayonara Gokko**](https://animethemes.moe/video/Dororo2019-ED1-NCBD1080.webm) | [*~~Gotta Knock a Little Harder~~*](https://animethemes.moe/video/CowboyBebopMovie-ED1.webm) | Sorry Space Cowboy, Dororo's stylish first ED just barely beats out your movie's ending for my personal tastes. -[**Ouchi ni Kaeritai**](https://animethemes.moe/video/KonosubaS2-ED1.webm) | [*~~Dare ka, Umi wo.~~*](https://animethemes.moe/video/ZankyouNoTerror-ED1.webm) | Konosuba's EDs don't get enough credit. First of all, they're both filled with wonderful character gags and are a nice slice of their lives, second of all, the absolutely gorgeous time-lapse shot of the Town of Beginning as it goes from Day to Dusk is nothing short of a feat of animation. I'm also a really big fan of the comfy, folkish music. -[*~~THERE IS A REASON~~*](https://animethemes.moe/video/NoGameNoLifeZero-ED1.webm) | [*Yuukyou Seishunka*](https://animethemes.moe/video/CodeGeass-ED1.webm) | THERE IS A REASON isn't a bad song, but the visuals merely being credits really, *really* hurts it. It's not even on the level of [Megalo Box's ED](https://youtu.be/SoC4YbEoZMQ), which didn't make bracket. -[**Toki Tsukasadoru Juuni no Meiyaku**](https://animethemes.moe/video/SteinsGate-ED1.webm) | [*~~Ano Hero to' Bokura ni Tsuite~~*](https://animethemes.moe/video/PingPong-ED1.webm) | Really like the style of Ping Pong's ED, but there's just something about The Steins;Gate ED that grabs me. -[**Drown**](https://animethemes.moe/video/VinlandSaga-ED2-NCBD1080.webm) | [*~~Nirvana~~*](https://animethemes.moe/video/NoragamiAragoto-ED1.webm) | It feels sacrilegious for me to vote for a Clip Show ED, but I genuinely think Drown is quite possibly the greatest of its kind ever made. -[*~~Tomorrow~~*](https://animethemes.moe/video/MadeInAbyss-ED3.webm) | [**Pipo Password**](https://animethemes.moe/video/UchuuPatrolLuluco-ED1-Lyrics.webm) | I suppose I'd need more context to enjoy that Made in Abyss ED. -[*~~Datte Atashi no Hero.~~*](https://animethemes.moe/video/BokuNoHeroAcademiaS2-ED2-NCBD1080.webm) | [*hectopascal*](https://animethemes.moe/video/YagateKimiNiNaru-ED1.webm) | A close one for me, Ultimately what decided it in favor of Hectopascal was I think it executed its goal better, a lot of the gags in the HeroAca ED didn't land for me, even if the concept for it is brilliant. -[**and I'm home**](https://animethemes.moe/video/MadokaMagica-ED3.webm) | [*~~Michi~~*](https://animethemes.moe/video/KazeGaTsuyokuFuiteiru-ED2-NCBD1080.webm) | [](#torrentialdownpour ""It's been more than 8 years since I watched Madoka and I still teared up just listening to that."") -[*Zetsubou Billy*](https://animethemes.moe/video/DeathNote-ED2.webm) | [*~~Nounai~~*](https://animethemes.moe/video/EnenNoShouboutai-ED2-NCBD1080.webm) | The Fire Force ED just ain't doing it for me. At all. -[**~~Great Escape~~**](https://animethemes.moe/video/ShingekiNoKyojin-ED2.webm) | [*Heart Pattern*](https://animethemes.moe/video/Nisekoi-ED1.webm) | Despite the killer foreshadowing and some nice touches in the Attack on Titan ED, I just really find myself drawn more to the Nisekoi one, even not having seen the show. -[*~~forget-me-not~~*](https://animethemes.moe/video/SwordArtOnlineAlicization-ED2-NCBD1080.webm) | [*More One Night*](https://animethemes.moe/video/ShoujoShuumatsuRyokou-ED1-NCBD1080.webm) | I should probably get to watching Girls' Last Tour, the animation in this ED is astounding. Just worried I might somehow get some depression from the bleakness. -[**~~Koi no Shita no wa~~**](https://animethemes.moe/video/KoeNoKatachi-ED1.webm) | [*Inkya Impulse*](https://animethemes.moe/video/AsobiAsobase-ED1.webm) | Black Screen ED vs Some seriously impressive animation, that the black screen will almost certainly win this round speaks more to r/anime's shit taste than perhaps any other potential matchup or Chika dance possibly taking it all. -[**Freek'n You**](https://animethemes.moe/video/JojoNoKimyouNaBoukenS5-ED1.webm) | [*~~Manatsu no Setsuna~~*](https://animethemes.moe/video/DarlingInTheFranXX-ED2-NCBD1080.webm) | The worst JoJo Ed, a memey song can't save an otherwise unremarkable ED from mediocrity... still somehow better than the swimsuit slideshow. It's dead to me next round though.";False;False;;;;1610610794;;1610613970.0;{};gj7ibym;False;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj7ibym/;1610690036;7;True;False;anime;t5_2qh22;;0;[]; -[];;;b0bba_Fett;;;[];;;;text;t2_12yifh;False;False;[];;"ED | ED | Comments ---|--|-------- -[*Hare Hare Yukai*](https://animethemes.moe/video/SuzumiyaHaruhiNoYuuutsu-ED1.webm) | [*~~Hibana~~*](https://animethemes.moe/video/GoldenKamuy-ED1-NCBD1080.webm) | The Chika dance of the 00's, or rather the other way around, is still great to this day. Despite the power creep in dancing budget over the years, I think this is still the better of the two, and soundly outdoes its opponent this round -[*~~Fighter~~*](https://animethemes.moe/video/SangatsuNoLion-ED1.webm) | [*DAYS of DASH*](https://animethemes.moe/video/Sakurasou-ED1.webm) | Every time I see the Sangatsu ED, I'm blown away and consider picking the show up, but this year I was blown away harder by its competition, it wasn't as pretty, but the creativity Sakurasou's ED expressed kept catching me off guard. -[**RAY OF LIGHT**](https://animethemes.moe/video/FullmetalAlchemistBrotherhood-ED5.webm) | [*~~Kyokyojitsujitsu~~*](https://animethemes.moe/video/ShokugekiNoSoumaSanNoSara-ED1.webm) | Ray of Light takes it almost entirely because of the shot of the Nationwide Transmutation Circle. Probably won't make it *too* much farther, but for now it gets my vote. -[**~~Lamp~~**](https://animethemes.moe/video/YakusokuNoNeverland-ED2-NCBD1080.webm) | [*Your song*](https://animethemes.moe/video/LogHorizon-ED1.webm) | This one came down to musical taste.";False;False;;;;1610610909;;False;{};gj7igcj;False;t3_kwsa2a;False;False;t1_gj7ibym;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj7igcj/;1610690111;4;True;False;anime;t5_2qh22;;0;[]; -[];;;b0bba_Fett;;;[];;;;text;t2_12yifh;False;False;[];;"[](#therethere) - -Preach. Also I imagine the most feasible answer to get some proper results would be to less do a contest and more an awards kinda thing, with a jury comprised of people both dedicated and with enough free time to sort through the sea of OPs and EDs(probably would be a good idea to separate by decade).";False;False;;;;1610611295;;1610611528.0;{};gj7iuve;False;t3_kwsa2a;False;False;t1_gj64hjd;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj7iuve/;1610690353;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ZapsZzz;;;[];;;;text;t2_g2hnymx;False;False;[];;Chuunibyou is perfect for the request - there is no-one you can hate in that show. The drama is relatively light, although it can get emotional it's is not because of relationship hardship. If Toradora is 8 on drama, chuunibyou is like a 3 or 4.;False;False;;;;1610611879;;False;{};gj7jgcc;False;t3_kwob1u;False;True;t1_gj5p4eg;/r/anime/comments/kwob1u/good_romantic_comedy_anime/gj7jgcc/;1610690778;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zsmg;;;[];;;;text;t2_ivuw5;False;False;[];;"> Wow, that's easy to miss, but he really is. Poor guy... - -I'll be honest I've rewatched this series multiple but this was the first time I've really noticed it. It's very easy to miss.";False;False;;;;1610612169;;1610612916.0;{};gj7jr3c;False;t3_kwr188;False;False;t1_gj61ngc;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj7jr3c/;1610690990;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Dartrook;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Dartrook;light;text;t2_zkpev;False;False;[];;It's popular so it's bad. Only anime that nobody actually watches should win the polls;False;False;;;;1610612608;;False;{};gj7k73m;False;t3_kwsa2a;False;False;t1_gj7fsdz;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj7k73m/;1610691292;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Dartrook;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Dartrook;light;text;t2_zkpev;False;False;[];;My personal favourite is Asobi Asobase but I don't think it's popular enough to win;False;False;;;;1610612726;;False;{};gj7kbft;False;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj7kbft/;1610691372;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ihileath;;MAL;[];;http://myanimelist.net/animelist/Ihileath;dark;text;t2_rsvva;False;False;[];;"Too right. - -Admittedly I will cry when it beats Sora Wa Takaku Kaze Wa Utau. I think that song is one of the most beautiful songs out there, and watching it lose will hurt. But still. Popular things are typically popular for a reason. And in this case the popularity is deserved.";False;False;;;;1610613065;;False;{};gj7knnh;False;t3_kwsa2a;False;True;t1_gj7k73m;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj7knnh/;1610691596;1;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;But, that's what makes him special isn't it ^_^;False;False;;;;1610613093;;False;{};gj7komq;True;t3_kwmp0m;False;True;t1_gj7hru5;/r/anime/comments/kwmp0m/yukinon_is_so_kkawaaiiiiii_oregairumy_youth/gj7komq/;1610691613;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AshenOwn;;MAL;[];;https://myanimelist.net/profile/Lazysunflower;dark;text;t2_xtici;False;False;[];;Hectopascal is easily one of the best endings i have ever heard. It's a shame these contests are only determined by popularity though. Sure MHA is a good show, but that ending doesnt come even close to Hectopascal's greatness.;False;False;;;;1610614755;;False;{};gj7mcu2;False;t3_kwsa2a;False;True;t1_gj61cu0;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj7mcu2/;1610692658;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"Taichi Mukai is a god. Had been listening to It's the Right Time for quite a while since I searched him up on Spotify after Run with the wind. - -Found out only today that song belong to Parasyte lol";False;False;;;;1610615111;;False;{};gj7mpqb;False;t3_kwsa2a;False;False;t1_gj64k14;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj7mpqb/;1610692864;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;Hoping STUDY X STUDY makes it far into the contest. The song alone is good and the visuals just elevate it to another level;False;False;;;;1610615216;;False;{};gj7mtjc;False;t3_kwsa2a;False;True;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj7mtjc/;1610692927;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"Oh. ~~Kuchidzuke Diamond from Yamada kun and the seven witches didn't even get nominated sadly.~~ - -Also High Score Girl eds deserve more recognition smh - -Edit: I'm retarded";False;False;;;;1610616043;;1610657729.0;{};gj7nmvi;False;t3_kwsa2a;False;True;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj7nmvi/;1610693419;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Each season of WIT's AoT looks drastically different, MAPPA even has better backgrounds;False;False;;;;1610617686;;False;{};gj7p88a;False;t3_kwl0tz;False;True;t3_kwl0tz;/r/anime/comments/kwl0tz/for_all_my_attack_on_titan_fans/gj7p88a/;1610694339;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;TV version of Bakemonogatari and most follow up seasons;False;False;;;;1610617802;;False;{};gj7pc6m;False;t3_kwo0mn;False;True;t3_kwo0mn;/r/anime/comments/kwo0mn/which_anime_end_the_final_episode_with_the_first/gj7pc6m/;1610694402;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CommissionLonely;;;[];;;;text;t2_6xynxt8o;False;False;[];;Thanks!;False;False;;;;1610618317;;False;{};gj7ptwr;True;t3_kwnjp1;False;False;t1_gj61vx6;/r/anime/comments/kwnjp1/some_good_horrorthriller_anime_recommendations/gj7ptwr/;1610694672;1;True;False;anime;t5_2qh22;;0;[]; -[];;;alimakki659;;;[];;;;text;t2_5hmljwo4;False;False;[];;Does it have any aliens?;False;False;;;;1610618590;;False;{};gj7q3be;True;t3_kwqm29;False;True;t1_gj5x5gm;/r/anime/comments/kwqm29/whats_a_good_galactic_wars_aliens_and_gaint/gj7q3be/;1610694822;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HalfAssedSetting;;MAL;[];;https://myanimelist.net/profile/Germs_N_Spices;dark;text;t2_stu9a;False;False;[];;You said you're on episode 12, but the manga with shoulder pads is from episode 243?;False;False;;;;1610619727;;False;{};gj7r6h5;False;t3_kwm76g;False;True;t1_gj523k7;/r/anime/comments/kwm76g/is_gintama_worth_watching/gj7r6h5/;1610695436;1;True;False;anime;t5_2qh22;;0;[]; -[];;;milpicv2;;;[];;;;text;t2_6hpoqg5i;False;False;[];;Oh then you can watch your lie in April it should do the work;False;False;;;;1610621221;;False;{};gj7snro;False;t3_kwqjjd;False;True;t1_gj5sq7s;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj7snro/;1610696287;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dio5000;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gundam336;light;text;t2_5czjwh85;False;False;[];;">FIRST TIMER -> ->Ummmmm . . . WTF!? - -Typical reaction for a first time Its ok brother";False;False;;;;1610621920;;False;{};gj7tcwg;False;t3_kwr188;False;True;t1_gj63n16;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj7tcwg/;1610696677;3;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;No classic human on human conflict.;False;False;;;;1610622006;;False;{};gj7tg0j;False;t3_kwqm29;False;True;t1_gj7q3be;/r/anime/comments/kwqm29/whats_a_good_galactic_wars_aliens_and_gaint/gj7tg0j/;1610696725;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BethanRuby1321;;;[];;;;text;t2_76xm11t1;False;False;[];;ooh i’m in the middle of watching that rn;False;False;;;;1610622410;;False;{};gj7tuz4;True;t3_kwqjjd;False;True;t1_gj7snro;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj7tuz4/;1610696952;2;True;False;anime;t5_2qh22;;0;[]; -[];;;milpicv2;;;[];;;;text;t2_6hpoqg5i;False;False;[];;Cool hope you like it;False;False;;;;1610622455;;False;{};gj7twjy;False;t3_kwqjjd;False;True;t1_gj7tuz4;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj7twjy/;1610696976;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TWllTtS;;;[];;;;text;t2_4hd9yo4p;False;False;[];;Cheers how does the female view the Male is it just indifference or what;False;False;;;;1610622547;;False;{};gj7tzw1;True;t3_kwrpjw;False;True;t1_gj6dvil;/r/anime/comments/kwrpjw/looking_for_cute_tsundere_romances/gj7tzw1/;1610697030;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;"Don't mind me, I'm still salty™ that Chika beat Historia in the best character contest. - -It's a great ED, sure, but its victory (if it wins) will be largely due to its meme appeal and mainstreamness. Some good and arguably better EDs could lose because people mass-vote for le funny meme dance.";False;False;;;;1610622984;;False;{};gj7ugfv;False;t3_kwsa2a;False;False;t1_gj7fsdz;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj7ugfv/;1610697284;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;"Copied from another comment: - ->It's a great ED, sure, but its victory (if it wins) will be largely due to its meme appeal and mainstreamness. Some good and arguably better EDs could lose because people mass-vote for le funny meme dance.";False;False;;;;1610623067;;False;{};gj7ujmf;False;t3_kwsa2a;False;True;t1_gj7k73m;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj7ujmf/;1610697330;3;True;False;anime;t5_2qh22;;0;[]; -[];;;senpaiking19;;;[];;;;text;t2_4vg5i8gw;False;False;[];;Hikigaya's expression is much cuter. lol;False;False;;;;1610624623;;False;{};gj7w7op;False;t3_kwmp0m;False;True;t3_kwmp0m;/r/anime/comments/kwmp0m/yukinon_is_so_kkawaaiiiiii_oregairumy_youth/gj7w7op/;1610698266;2;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;Lol;False;False;;;;1610626030;;False;{};gj7xrkj;True;t3_kwmp0m;False;True;t1_gj7w7op;/r/anime/comments/kwmp0m/yukinon_is_so_kkawaaiiiiii_oregairumy_youth/gj7xrkj/;1610699108;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheUltimateTeigu;;;[];;;;text;t2_jjzxh;False;False;[];;">QOTD: -> -* What are your thoughts on the seeding? Any unexpected seedings? - -The number 1 seed surprised me...and then I realized what sub I was on. The number 2 seed being Styx Helix was amazing to see though, I didn't actually expect that. - ->* What songs are you surprised made it into the bracket? What songs are you surprised didn't make it into the bracket? - -I was pleasantly surprised to see Study x Study as an option to vote. It's my guilty pleasure feel good ending I used to go back and watch every so often. I'm sure it won't go far but I certainly voting for it. As for the things that didn't make it in, well, r/anime has trash taste so nothing surprised me there.";False;False;;;;1610627383;;False;{};gj7zdm9;False;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj7zdm9/;1610699974;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">Is it that he sees what Haruka sees or can he see it by himself? - -Maybe he is in fact the current ""Absolute Observer""? - ->Purple hair dude - -Female... it's more obvious in the dub maybe?";False;False;;;;1610627427;;False;{};gj7zfip;False;t3_kwr2mu;False;True;t1_gj62t7g;/r/anime/comments/kwr2mu/mid2000s_rewatch_noein_episode_12/gj7zfip/;1610700002;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TaqPCR;;;[];;;;text;t2_3jynpl5m;False;False;[];;"> Konosuba's EDs don't get enough credit. - -... it got 8th seed";False;False;;;;1610628065;;False;{};gj8084q;False;t3_kwsa2a;False;False;t1_gj7ibym;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj8084q/;1610700444;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Retromorpher;;;[];;;;text;t2_3x42wxsp;False;False;[];;"Blood Lad? - - -Death Note? - - -Golden Kamuy?";False;False;;;;1610628318;;False;{};gj80k0a;False;t3_kwo1wz;False;True;t3_kwo1wz;/r/anime/comments/kwo1wz/what_is_that_one_anime_called/gj80k0a/;1610700624;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TimIsDingus;;;[];;;;text;t2_5fahpuq;False;False;[];;Ah I see;False;False;;;;1610635426;;False;{};gj8c4jq;False;t3_kwsa2a;False;True;t1_gj7erqy;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj8c4jq/;1610706951;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Waterblue22;;;[];;;;text;t2_fr24hkq;False;False;[];;"The movie ""Sword of the Stranger"". - -Story and action is good. Believable and doesn't seem childish? - -In my experience, boomers think anime is too childish. - -Edit - Also ""Baccano!"" for tv show. This show basically fits your description perfectly. Only issue is if your dad can follow the story since the story is told out of order. Setting is in prohibition era, so that should tell you about the violence. Also the English dub is very good, but it makes the feeling of the show different.";False;False;;;;1610637237;;1610637518.0;{};gj8ftd1;False;t3_kwqjjd;False;True;t3_kwqjjd;/r/anime/comments/kwqjjd/whats_an_anime_i_can_watch_with_my_dad/gj8ftd1/;1610709015;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Quantanamo-Bae;;;[];;;;text;t2_dne4hks;False;False;[];;Where is Strange Meat Pie........;False;False;;;;1610638433;;False;{};gj8id3b;False;t3_kwsa2a;False;True;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj8id3b/;1610710514;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aes110;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aes110;light;text;t2_jj27q;False;True;[];;"> No. 218: Hitori (Darling in the Franxx) -Is out due to the franchise limit - - -What :(, not only is it my favorite DtF ed, it's my favorite ed overall. - -Well time to push DtF ed6 then, as it's my second favorite, though damn the seed is bad - -btw if chikatto chika chika is seed 1, does it mean it got the most votes in the elimination round?";False;False;;;;1610639287;;False;{};gj8k704;False;t3_kwsa2a;False;True;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj8k704/;1610711643;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aes110;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aes110;light;text;t2_jj27q;False;True;[];;Honestly, that ED is the only reason I even started Kaguya, now I'm caught up with the manga and have it all on my shelf. Its definitely special;False;False;;;;1610639515;;False;{};gj8korx;False;t3_kwsa2a;False;True;t1_gj7fsdz;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj8korx/;1610711935;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aes110;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aes110;light;text;t2_jj27q;False;True;[];;I never heard it before but I wanted to at least try to listen to all of the EDs i was going to vote against, and wow it is good, thought i still voted for chika;False;False;;;;1610639579;;False;{};gj8ktpe;False;t3_kwsa2a;False;True;t1_gj665q7;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj8ktpe/;1610712021;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Beng-senpai;;;[];;;;text;t2_8mt35yy6;False;False;[];;none of those...he had these HUGE eye bags under his eyes;False;False;;;;1610640174;;False;{};gj8m4rp;True;t3_kwo1wz;False;True;t1_gj80k0a;/r/anime/comments/kwo1wz/what_is_that_one_anime_called/gj8m4rp/;1610712855;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Beng-senpai;;;[];;;;text;t2_8mt35yy6;False;False;[];;nah;False;False;;;;1610640181;;False;{};gj8m5aq;True;t3_kwo1wz;False;True;t1_gj5ns4n;/r/anime/comments/kwo1wz/what_is_that_one_anime_called/gj8m5aq/;1610712864;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Beng-senpai;;;[];;;;text;t2_8mt35yy6;False;False;[];;nahh...;False;False;;;;1610640196;;False;{};gj8m6ez;True;t3_kwo1wz;False;True;t1_gj59kry;/r/anime/comments/kwo1wz/what_is_that_one_anime_called/gj8m6ez/;1610712880;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Beng-senpai;;;[];;;;text;t2_8mt35yy6;False;False;[];;nahh, but the anime looks cool, I'll check it out;False;False;;;;1610640255;;False;{};gj8maxc;True;t3_kwo1wz;False;True;t1_gj59qva;/r/anime/comments/kwo1wz/what_is_that_one_anime_called/gj8maxc/;1610712957;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;Tohru sees the best in every one.;False;False;;;;1610640858;;False;{};gj8nme2;False;t3_kwrpjw;False;True;t1_gj7tzw1;/r/anime/comments/kwrpjw/looking_for_cute_tsundere_romances/gj8nme2/;1610713823;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TWllTtS;;;[];;;;text;t2_4hd9yo4p;False;False;[];;Ight I'll give it a go;False;False;;;;1610641106;;False;{};gj8o5s6;True;t3_kwrpjw;False;True;t1_gj8nme2;/r/anime/comments/kwrpjw/looking_for_cute_tsundere_romances/gj8o5s6/;1610714171;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kerem_0o;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kerembayy;light;text;t2_170aneee;False;False;[];;Garbage. Yui should've won;False;False;;;;1610641795;;False;{};gj8powt;False;t3_kwmp0m;False;False;t3_kwmp0m;/r/anime/comments/kwmp0m/yukinon_is_so_kkawaaiiiiii_oregairumy_youth/gj8powt/;1610715174;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HardHittingKappas;;;[];;;;text;t2_ph80k;False;False;[];;Here is the official watch order taken from the FateStayNight subreddit: https://old.reddit.com/r/fatestaynight/comments/df8rvo/rfatestaynights_official_viewing_order_guide_v2/;False;False;;;;1610642124;;False;{};gj8qf85;False;t3_kwooc1;False;True;t3_kwooc1;/r/anime/comments/kwooc1/is_the_fate_series_worth_watchingwhat_is_the/gj8qf85/;1610715654;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SorcererOfTheLake;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RiverSorcerer;light;text;t2_1pmzlf0y;False;True;[];;Yes. It got around 240 votes.;False;False;;;;1610642443;;False;{};gj8r54w;True;t3_kwsa2a;False;True;t1_gj8k704;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj8r54w/;1610716162;2;True;False;anime;t5_2qh22;;0;[]; -[];;;wtfduud;;;[];;;;text;t2_bv3xi;False;False;[];;I forgot to nominate Boruto Ed 2... again.;False;False;;;;1610642715;;False;{};gj8rr35;False;t3_kwsa2a;False;True;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj8rr35/;1610716562;1;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;I am not a fan of 8man X Yukinon either, I am a Irohasu X 8man fan, Yui fans are lucky enough to hear her confession, but what about Irohasu fans we didn't even get a confession, For me both Yukinon and Yui are Kawaii, this post doesn't mean that I am a Yukinon fan, it's just about me saying that she is kawaii, but Irohasu will always be the best girl for me, for me she is super Kkawaaiiiiii;False;False;;;;1610644219;;False;{};gj8v763;True;t3_kwmp0m;False;True;t1_gj8powt;/r/anime/comments/kwmp0m/yukinon_is_so_kkawaaiiiiii_oregairumy_youth/gj8v763/;1610718972;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PixelPenguins;;MAL;[];;http://myanimelist.net/profile/PixelPenguin;dark;text;t2_6pp4e;False;False;[];;Surprised EDs with static images or plain credit scrolls made it in. Is this best ED or best ED song?;False;False;;;;1610645073;;False;{};gj8x627;False;t3_kwsa2a;False;True;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj8x627/;1610720431;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Quiddity131;;MAL;[];;http://myanimelist.net/profile/Quiddity131;dark;text;t2_f3bdc;False;False;[];;"> And the Eva 00 is MIA after that N2 bomb (which kinda doesn't make sense to me, as it appears to be less damaging than the orbital drop and Misato said they could survive that inside the Eva). - -Unit 00 isn't MIA, it survived the N2 blast and immediately took an Angel attack in the face (although it was more fortunate than Unit 02, no decapitation). Rei's status being unknown is correct.";False;False;;;;1610645398;;False;{};gj8xwnj;False;t3_kwr188;False;True;t1_gj6a4sx;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj8xwnj/;1610720924;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kerem_0o;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kerembayy;light;text;t2_170aneee;False;False;[];;Yeah im just being salty for the sake of it lol. Iroha is really cute but i never felt like she needed more romance. I hate yukinom because she wants hachiman to save him and proceeds to avoid him for the majority of s3. In real life no one is going to save you but yourself, especially if you are avoiding the person who is supposed ro save you. Also I COULDNT CARE LESS ABOUT HER STUPIDASS FAMILY. Yui does absolutely everything right and still loses.;False;False;;;;1610646217;;False;{};gj8zre5;False;t3_kwmp0m;False;True;t1_gj8v763;/r/anime/comments/kwmp0m/yukinon_is_so_kkawaaiiiiii_oregairumy_youth/gj8zre5/;1610722230;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;Just know that the show gets very serious at times. You might cry. Romance is also not a heavy focus. However, the relationship between Tohru and the two main guys in the show is pretty cute, and you'll definitely get invested in them.;False;False;;;;1610650603;;False;{};gj99kgh;False;t3_kwrpjw;False;False;t1_gj8o5s6;/r/anime/comments/kwrpjw/looking_for_cute_tsundere_romances/gj99kgh/;1610729212;1;True;False;anime;t5_2qh22;;0;[]; -[];;;b0bba_Fett;;;[];;;;text;t2_12yifh;False;False;[];;Because this is a popularity contest. Maybe it'll be different this year, but in the past the high seeds of the Konosuba EDs have been a point of contention, kinda like how people are apprehensive of the Chika dance this year.;False;False;;;;1610651930;;False;{};gj9chgo;False;t3_kwsa2a;False;True;t1_gj8084q;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj9chgo/;1610731275;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;I haven't seen it myself but I've heard good things about it. Take care!;False;False;;;;1610652663;;False;{};gj9e3tb;False;t3_kwo1wz;False;True;t1_gj8maxc;/r/anime/comments/kwo1wz/what_is_that_one_anime_called/gj9e3tb/;1610732456;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fucuasshole2;;;[];;;;text;t2_1zc0i1qx;False;False;[];;He’s 14 tho, I wouldn’t charge a kid for thousands of deaths. Wasn’t his fault that EVAs are built to only be piloted by kids (until the dummy system was just created);False;False;;;;1610655019;;False;{};gj9j85w;False;t3_kwr188;False;False;t1_gj6n5n7;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gj9j85w/;1610736229;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Retromorpher;;;[];;;;text;t2_3x42wxsp;False;False;[];;Could it be [Shirogane Miyuki](https://cdn.suruga-ya.jp/database/pics_light/game/859032310.jpg) from Kaguya Wants to Be Confessed To or [Kannonzako Doppo](https://dthezntil550i.cloudfront.net/ta/latest/ta1808050207105090002527197/7506b1a3-eccf-44f2-bf50-d1f89730eecf.jpg) From Hypnosis Microphone?;False;False;;;;1610657389;;False;{};gj9p122;False;t3_kwo1wz;False;True;t1_gj8m4rp;/r/anime/comments/kwo1wz/what_is_that_one_anime_called/gj9p122/;1610740155;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TaqPCR;;;[];;;;text;t2_3jynpl5m;False;False;[];;">Oh. Kuchidzuke Diamond from Yamada kun and the seven witches didn't even get nominated sadly. - -Well I mean it would be rather strange to have an opening appear in a best ED contest.";False;False;;;;1610657525;;False;{};gj9pe4s;False;t3_kwsa2a;False;False;t1_gj7nmvi;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj9pe4s/;1610740383;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;Oh wait I just realized I'm fucking dumb;False;False;;;;1610657699;;False;{};gj9puld;False;t3_kwsa2a;False;True;t1_gj9pe4s;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj9puld/;1610740682;2;True;False;anime;t5_2qh22;;0;[]; -[];;;pssht07070707;;;[];;;;text;t2_3z2wiolr;False;False;[];;Yeah it was kind of strange, but it was really pretty;False;False;;;;1610659978;;False;{};gj9voze;True;t3_kwppoa;False;True;t1_gj5ogyy;/r/anime/comments/kwppoa/crying_freeman_discussion_and_questions/gj9voze/;1610744622;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeralyos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Zeralyos;light;text;t2_dphmj32;False;False;[];;Not aired before Winter 2020, that's where.;False;False;;;;1610664746;;False;{};gja5xoc;False;t3_kwsa2a;False;False;t1_gj8id3b;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gja5xoc/;1610751634;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gringham;;;[];;;;text;t2_2m7zq1xy;False;False;[];;have fun :);False;False;;;;1610725400;;False;{};gjcpbrb;False;t3_kwnd8r;False;True;t1_gj5go3u;/r/anime/comments/kwnd8r/recomend_me_smth_based_of_my_mal/gjcpbrb/;1610806173;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Beng-senpai;;;[];;;;text;t2_8mt35yy6;False;False;[];;no, the dude had black hair;False;False;;;;1610745184;;False;{};gjdvsli;True;t3_kwo1wz;False;True;t1_gj9p122;/r/anime/comments/kwo1wz/what_is_that_one_anime_called/gjdvsli/;1610835773;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Retromorpher;;;[];;;;text;t2_3x42wxsp;False;False;[];;"Probably should've mentioned that in the first place. You've ruled out every main character from anime that I can think of that has semi-perpetual bags under their eyes AND black hair. - -One last shot - is it Lee Hoon from Suicide Boy, Levi from Attack on Titan or Simon Blackquill from Ace Attorney?";False;False;;;;1610749690;;False;{};gje4v4n;False;t3_kwo1wz;False;True;t1_gjdvsli;/r/anime/comments/kwo1wz/what_is_that_one_anime_called/gje4v4n/;1610841863;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Svenke5;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SvensBirds;light;text;t2_597u9;False;False;[];;Thank you for the heads up on Perfect Blue. That one is super high on my list and I almost bought it yesterday without looking into it. Also thank you for commenting!;False;False;;;;1610758747;;False;{};gjelv3e;True;t3_kwm98h;False;True;t1_gj6mi2z;/r/anime/comments/kwm98h/what_anime_blurays_would_you_recommend_people_get/gjelv3e/;1610852725;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Svenke5;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SvensBirds;light;text;t2_597u9;False;False;[];;Oh wow, surround sound wasn't something I had taken into account. I plan on setting some up once I get my bonus at work. Damn, how can two seasons of anything be that much haha;False;False;;;;1610758916;;False;{};gjem68l;True;t3_kwm98h;False;True;t1_gj7fs09;/r/anime/comments/kwm98h/what_anime_blurays_would_you_recommend_people_get/gjem68l/;1610852947;1;True;False;anime;t5_2qh22;;0;[]; -[];;;redditfejs;;;[];;;;text;t2_9buebtcf;False;False;[];;"I'm too late for this rewatch, but I agree with you on this. - -Even Rei says something similar in Toji's dream at the beginning and condemns Shinji. And while Kaji doesn't openly condemn him (this could have backfired anyway), at the end of his speech he does imply that Shinji refusing to fight would be something shameful. - -So far we have concentrated on how Shinji's emotional problems and the resulting mentality and behavior hurt him, but in this episode we see that their ugly effects spread outside and cause suffering not only to Shinji, but to all the other people that have contact with him as well. [EoE](/s ""In End of Evangelion, this theme gets ramped up to 11 with Shinji choosing Instrumentality, choking Asuka and the hospital scene. The short dialogue between Yui and Gendo, which shows Shinji's father and the cause of his problems to be essentially an older, more jaded Shinji, is relevant here."") - -Not that Gendo is without fault, his actions with using the Dummy Plug and increasing the LCL pressure were ultimately necessary, but the *way* he went through it, without any empathy for his son, shows the treatment that caused Shinji to turn out the way he did in the first place.";False;False;;;;1610860124;;1610861785.0;{};gjjpdl4;False;t3_kwr188;False;True;t1_gj6n5n7;/r/anime/comments/kwr188/rewatchspoilers_neon_genesis_evangelion_episode/gjjpdl4/;1610959911;1;True;False;anime;t5_2qh22;;0;[]; -[];;;voos07;;;[];;;;text;t2_2nrpxm3w;False;False;[];;"Aight i got bored around episode 10 but damn the story got me hella confused - -and also i cant remember shit so thats fun. i can remember that they was with these rats and had to fight other rats that were invading so that was strange and also that every person horny levels went to 10000 that was a weird turn. overall 4/10 - -idk why im reviewing stuff its kinda fun.";False;False;;;;1611233281;;False;{};gk20jl3;True;t3_kwnd8r;False;True;t1_gjcpbrb;/r/anime/comments/kwnd8r/recomend_me_smth_based_of_my_mal/gk20jl3/;1611360048;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gringham;;;[];;;;text;t2_2m7zq1xy;False;False;[];;aww, I thought you might be into its mystery tension kind of feeling ^^. Anyways your review is not wrong, though for me it was 10/10 somehow. What would be a recommendation on your side? I can pm you my list.;False;False;;;;1611253520;;False;{};gk353td;False;t3_kwnd8r;False;True;t1_gk20jl3;/r/anime/comments/kwnd8r/recomend_me_smth_based_of_my_mal/gk353td/;1611383997;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"# Source Material Corner - -Reply to this comment for any source-related discussion, future spoilers (including future characters, events and general hype about future content), comparison of the anime adaptation to the original, or just general talk about the source material. **You are still required to tag all spoilers.** Discussions about the source outside of this comment tree will be removed, and replying with spoilers outside of the source corner will lead to bans. - -The spoiler syntax is: -`[Spoiler source](/s ""Spoiler goes here"")` - -# **All untagged spoilers and hints in this thread will receive immediate 8-day bans (minimum).** - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610552120;moderator;False;{};gj4cva1;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4cva1/;1610615725;1;False;True;anime;t5_2qh22;;0;[]; -[];;;Garlicbread10;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;ereh;dark;text;t2_8zn7f5o;False;False;[];;"Born too late to explore Earth - -Born too early to explore Space - -Born just in time for Emilia and Subaru’s ~~first~~ kiss";False;False;;;;1610552126;;False;{};gj4cvol;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4cvol/;1610615731;1180;True;False;anime;t5_2qh22;;0;[]; -[];;;xPlasma10;;;[];;;;text;t2_7u9f40e0;False;False;[];;This episode was so beautiful. From the voice acting to the animation. Might be the best episode of the show yet;False;False;;;;1610552150;;False;{};gj4cxiy;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4cxiy/;1610615758;40;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610552151;;1610552932.0;{};gj4cxli;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4cxli/;1610615759;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;THEY DID IT! THEY FUCKING DID IT! PERFECT EPISODE! THANK YOU WHITEFOX!;False;False;;;;1610552173;;False;{};gj4cz8q;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4cz8q/;1610615784;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MagnoBurakku;;;[];;;;text;t2_u37ay;False;False;[];;"Otto best boy, best girl, best bro. - -Is there a thing he won't become best at? Maybe he'll play a part in stopping the mabeast tamer too, hearing animals and all. - -Edit: IT HAPPENED!! The ''first'' kiss!!!! Subaru died and CHADbaru has taken control of the train.";False;False;;;;1610552183;;1610554231.0;{};gj4czz6;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4czz6/;1610615796;148;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610552220;;False;{};gj4d2p5;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4d2p5/;1610615835;17;True;False;anime;t5_2qh22;;0;[]; -[];;;FlappyLyST;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;You don't know anything about Suffering!;dark;text;t2_7vw1iw4f;False;False;[];;"People : ""Why does he always help her anyway? She's troublesome for him."" - -Me : ""If that’s what you’re asking, then he's already told you countless times already. IT’S BECAUSE HE LOVES HER!"" - -Finally, the scene we've all been waiting for has come!";False;False;;;;1610552221;;False;{};gj4d2u1;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4d2u1/;1610615837;233;True;False;anime;t5_2qh22;;0;[]; -[];;;Theleux;;MAL a-1milquiz;[];;https://myanimelist.net/profile/Theleux;dark;text;t2_am615;False;False;[];;"This episode... Otto's backstory was great and damn is he ever one tough cookie! Then right as things are looking intense between Otto, Ram and Garfiel, we are reminded that this isn't the only battle being fought! - -Back on over to Subaru and Emilia, the tension is even higher and you can almost see the sparks flying as they let all their emotions out at each other, with Subaru pushing through with the only remaining option he has... and my god was it ever beautiful. My vision is still blurry from all the... onions, of course. All the vocal performances this week were fantastic, and the insert songs were exactly what I wanted to hear! - -[*Aaaaaaaawww!!!* ***IT'S TOO GOOD!***](#frustrated) - -###Absolutely brilliant episode. - -One of the ***actual best and top moments in the series*** which lived up to all my expectations, and we are only TWO EPISODES into this season!";False;False;;;;1610552222;;1610555099.0;{};gj4d2ww;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4d2ww/;1610615838;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Assmeet123;;;[];;;;text;t2_4z85sldu;False;True;[];;An extended episode with 2 title drops and OP skipped... man, we don't deserve WhiteFox.;False;False;;;;1610552260;;False;{};gj4d5qd;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4d5qd/;1610615883;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Kitsunes_Rest;;;[];;;;text;t2_2n7gl3t4;False;False;[];;"Luck when trading? - -I do hope it all pays off for him.";False;False;;;;1610552262;;False;{};gj4d5ui;False;t3_kwisv4;False;False;t1_gj4czz6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4d5ui/;1610615885;23;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;"Last week: - -*Chad-Baru has entered the chat* - -This week: - -*Chad-Baru has DEMOLISHED the chat*. - -Huge shoutout to the attention they gave to ~~best boy of the entire series~~ Otto. I love how they adapted his backstory which gives the viewer more of an idea just why he’s so committed to Subaru. Also gives a bit of insight to just how badly the Whales noise would have affected him, eventually leading him to throwing Subaru off his carriage in S1. He’s so precious, everyone deserves a friend like Otto. Apart from Roswaal, fuck Roswaal. - -How much did you guys like *A Reason To Believe*? -This has always been in my top 3 scenes of arc 4 (season 2) and I really felt like they did the scene absolute justice. The animation here was outstanding. I’ve been saying in the lead up to this chapter that it’ll be the animes most important episode in its entire run, it fucking delivered. Emilia’s and Subaru’s VA performance was *perfection*, just wow. - -I wonder if anime-only will still label Subaru as a “simp” after this episode? Considering he’s just called out the woman he loves for being *a pain in the ass of a woman* and got the kiss! - -The S2 P2 train is now officially in full force, cannot wait for the next episode! Bravo, Whitefox.";False;False;;;;1610552271;;1610553623.0;{};gj4d6is;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4d6is/;1610615895;654;True;False;anime;t5_2qh22;;0;[]; -[];;;nafissyed;;;[];;;;text;t2_3axlgtoe;False;False;[];;Now this is what you call justice! Thank you White Fox Studios for making this 4-5 year wait worth it to finally see this beautiful episode animated.;False;False;;;;1610552345;;False;{};gj4dc14;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4dc14/;1610615977;83;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;OH MY GOD IT'S HAPPENING. HE'S DONE IT!;False;False;;;;1610552368;;False;{};gj4ddot;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ddot/;1610616001;9;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 300, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'ARGH!', 'end_date': None, 'giver_coin_reward': 0, 'icon_format': 'PNG', 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/a05z7bb9v7i51_TableFlip.png', 'icon_width': 2048, 'id': 'award_3e000ecb-c1a4-49dc-af14-c8ac2029ca97', 'is_enabled': True, 'is_new': False, 'name': 'Table Flip', 'penny_donate': 0, 'penny_price': 0, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/a05z7bb9v7i51_TableFlip.png?width=16&height=16&auto=webp&s=3580dc2a3e7fbc57a18c6305f80378a0d9ac9a5a', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/a05z7bb9v7i51_TableFlip.png?width=32&height=32&auto=webp&s=1cedcdcac344c8ecacb05ecfffa82dbf9c83a302', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/a05z7bb9v7i51_TableFlip.png?width=48&height=48&auto=webp&s=980829d9fab5d2684c719d332321f00e0774ee58', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/a05z7bb9v7i51_TableFlip.png?width=64&height=64&auto=webp&s=a7c8f34bcb80ffa4ba37eb14494a6e83f528255c', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/a05z7bb9v7i51_TableFlip.png?width=128&height=128&auto=webp&s=f93579029005b0d9daa3e556d5a13755b25cff3d', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/a05z7bb9v7i51_TableFlip.png?width=16&height=16&auto=webp&s=3580dc2a3e7fbc57a18c6305f80378a0d9ac9a5a', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/a05z7bb9v7i51_TableFlip.png?width=32&height=32&auto=webp&s=1cedcdcac344c8ecacb05ecfffa82dbf9c83a302', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/a05z7bb9v7i51_TableFlip.png?width=48&height=48&auto=webp&s=980829d9fab5d2684c719d332321f00e0774ee58', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/a05z7bb9v7i51_TableFlip.png?width=64&height=64&auto=webp&s=a7c8f34bcb80ffa4ba37eb14494a6e83f528255c', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/a05z7bb9v7i51_TableFlip.png?width=128&height=128&auto=webp&s=f93579029005b0d9daa3e556d5a13755b25cff3d', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/a05z7bb9v7i51_TableFlip.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}, {'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 80, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Everything is better with a good hug', 'end_date': None, 'giver_coin_reward': 0, 'icon_format': 'PNG', 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png', 'icon_width': 2048, 'id': 'award_8352bdff-3e03-4189-8a08-82501dd8f835', 'is_enabled': True, 'is_new': False, 'name': 'Hugz', 'penny_donate': 0, 'penny_price': 0, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16&height=16&auto=webp&s=69997ace3ef4ffc099b81d774c2c8f1530602875', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32&height=32&auto=webp&s=e9519d1999ef9dce5c8a9f59369cb92f52d95319', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48&height=48&auto=webp&s=f076c6434fb2d2f9075991810fd845c40fa73fc6', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64&height=64&auto=webp&s=85527145e0c4b754306a30df29e584fd16187636', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128&height=128&auto=webp&s=b8843cdf82c3b741d7af057c14076dcd2621e811', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16&height=16&auto=webp&s=69997ace3ef4ffc099b81d774c2c8f1530602875', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32&height=32&auto=webp&s=e9519d1999ef9dce5c8a9f59369cb92f52d95319', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48&height=48&auto=webp&s=f076c6434fb2d2f9075991810fd845c40fa73fc6', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64&height=64&auto=webp&s=85527145e0c4b754306a30df29e584fd16187636', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128&height=128&auto=webp&s=b8843cdf82c3b741d7af057c14076dcd2621e811', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;DerMusti-63;;;[];;;;text;t2_b2lkpy2;False;False;[];;Rem fans punching in the air right now;False;False;;;;1610552369;;False;{};gj4ddrd;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ddrd/;1610616001;1883;True;False;anime;t5_2qh22;;2;[]; -[];;;Taurus24Silver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Taurus-Silver;light;text;t2_826uaxw;False;False;[];;"Just watched the raw version - - -I will just say one thing - - -You anime onlies are in for a wild ride - - -Best ep of Re:Zero for me";False;False;;;;1610552372;;False;{};gj4ddzb;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ddzb/;1610616004;33;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 150, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Thank you stranger. Shows the award.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'icon_width': 2048, 'id': 'award_f44611f1-b89e-46dc-97fe-892280b13b82', 'is_enabled': True, 'is_new': False, 'name': 'Helpful', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;False;[];;It was a smart move to trap Garfiel inside the hole so he couldn't transform into his giant tiger form. I guess this is an official declaration of war.;False;False;;;;1610552381;;False;{};gj4denl;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4denl/;1610616015;1987;True;False;anime;t5_2qh22;;1;[]; -[];;;aXygnus;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Send Vanilla Satella doujins ;dark;text;t2_ws5bk;False;False;[];;"Enter: Thor Slayer Otto. - -&#x200B; - -The best bro anyone could ever ask.";False;False;;;;1610552389;;False;{};gj4dfcq;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4dfcq/;1610616026;31;True;False;anime;t5_2qh22;;0;[]; -[];;;unknown537;;;[];;;;text;t2_20519zb3;False;False;[];;And this is one of the reasons why Subaru is one of the best MCs out there. And Otto is one of the best bros.;False;False;;;;1610552391;;False;{};gj4dfig;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4dfig/;1610616028;56;True;False;anime;t5_2qh22;;0;[]; -[];;;Bobcam7;;;[];;;;text;t2_1xr1f5w7;False;False;[];;First kiss where both parties are not dying/dead or mentally broken!;False;False;;;;1610552401;;False;{};gj4dg6g;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4dg6g/;1610616038;736;True;False;anime;t5_2qh22;;0;[]; -[];;;myrmonden;;;[];;;;text;t2_f0rs6;False;False;[];;" OMG THEY FINALLY KISSED Man I am crying, emelia is crying, he finally got the girl - - IF suburu dies now and this is kiss scene does not happen I am freaking dropping the anime - - Like Kissing Emelia like this and finally saying he likes her to her like 1000 times has to make him god immune to death for this scenario. - -&#x200B; - -Also Otto can talk to and control animals or something but that was all overshadowed by Emelia Kissing Subaru. (and if she is Satella this is surely the moment when she was like OH you love me no matter what FOREVER) - -AND RAM LOOKED BADASS";False;False;;;;1610552418;;False;{};gj4dh5h;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4dh5h/;1610616052;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Joker8471;;;[];;;;text;t2_8nkk6db4;False;False;[];;I was almost crying when I watched Otto's background story.;False;False;;;;1610552447;;False;{};gj4djjz;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4djjz/;1610616088;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Grouchio;;;[];;;;text;t2_1wrg32;False;False;[];;"Here's to all of you Emilia shippers who pulled through 4 years of Rem supremacy bullshit. We have triumphed. - -We love Emilia.";False;False;;;;1610552447;;False;{};gj4djlk;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4djlk/;1610616089;505;True;False;anime;t5_2qh22;;0;[]; -[];;;nafissyed;;;[];;;;text;t2_3axlgtoe;False;False;[];;This episode most certainly gave me ‘A Reason to Believe’ to see the anime emulate the series true potential. Overall this is most certainly one of the best episodes of the anime series and it’s my favourite season 2 episode thus far.;False;False;;;;1610552537;;False;{};gj4dq8o;False;t3_kwisv4;False;False;t1_gj4d6is;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4dq8o/;1610616189;42;True;False;anime;t5_2qh22;;0;[]; -[];;;stevethebandit;;;[];;;;text;t2_8zmld;False;False;[];;"Otto is my main man, really like how so many Re:Zero characters have good parents too - -Also, great cameo by The Geuse";False;False;;;;1610552545;;False;{};gj4dqud;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4dqud/;1610616198;8;True;False;anime;t5_2qh22;;0;[]; -[];;;KittenBuns1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KittenBuns1;light;text;t2_5j04zssx;False;False;[];;Subaru, you did it. You crazy son of a bitch, you dit it.;False;False;;;;1610552583;;1610554448.0;{};gj4dtps;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4dtps/;1610616241;1237;True;False;anime;t5_2qh22;;0;[]; -[];;;Taurus24Silver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Taurus-Silver;light;text;t2_826uaxw;False;False;[];;"Take a bow Takahashi Rie san( Emilia's VA) - - -And Kobayashi Yuusuke san(Natsuki's VA) - - -THAT WAS THE BEST VOICE ACTING I HAVE EVER HEARD IN MY LIFE - - -ONE OF THE GREATEST ANIME CONFESSIONS OF ALL TIME - - -THIS IS RE:ZERO'S ANSWER TO THE DECLARATION OF WAR FROM ATTACK ON TITAN - - -LETS FCKINNNN GOOOOOOO";False;False;;;;1610552601;;1610553106.0;{};gj4dv2d;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4dv2d/;1610616261;73;True;False;anime;t5_2qh22;;0;[]; -[];;;Theleux;;MAL a-1milquiz;[];;https://myanimelist.net/profile/Theleux;dark;text;t2_am615;False;False;[];;"I find it hilarious that we are *two episodes* in and we have heard the previous season's OP and ED *more times* than the new ones... *which we haven't seen yet!* - -[Classic Re:Zero](#azusalaugh)";False;False;;;;1610552610;;False;{};gj4dvoi;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4dvoi/;1610616269;1041;True;False;anime;t5_2qh22;;0;[]; -[];;;Bobcam7;;;[];;;;text;t2_1xr1f5w7;False;False;[];;Let’s go Ottotototo gang!;False;False;;;;1610552619;;False;{};gj4dwdh;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4dwdh/;1610616280;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"*My reactions in this episode be like:* - ->Garfiel comes chasing after Otto - -Oh no...*Run Otto Run* - ->Realize starts playing - -**HOLY SHIT** - ->Otto getting rekd by Garf - -Please don't hurt the best boi...pls...pls. We just learned his backstory and saw how much he suffered. - ->Ram makes her appearance and being a badass against Tiger Garf - -**LETS FUCKING GOOO....** - ->Subaru confesses to Emilia and has a *proper* kiss - -***This truly is the best day ever. May this day never end.*** - -All the argument and finally when Subaru said he decided to love and be with Emilia forever. It made me so emotional. It wouldn't have happened if not for the VA's. Props to Rie Takahashi and Yusuke Kobayashi. They killed it with their amazing voice-acting.";False;False;;;;1610552631;;1610557146.0;{};gj4dx84;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4dx84/;1610616293;178;True;False;anime;t5_2qh22;;0;[]; -[];;;dgam02;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/dgam02;light;text;t2_13gmsx;False;False;[];;Ram went fucking Goku mode lmfao;False;False;;;;1610552787;;False;{};gj4e8xe;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4e8xe/;1610616469;147;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"We've waited for so long for their relationship to progress but [it finally happened and it was beautiful.](https://i.imgur.com/NSFOW0v.jpg) - -[](#womanlytears)";False;False;;;;1610552811;;False;{};gj4eaqt;False;t3_kwisv4;False;False;t1_gj4cvol;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4eaqt/;1610616497;309;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 1800, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 31, 'days_of_premium': 31, 'description': 'Gives 700 Reddit Coins and a month of r/lounge access and ad-free browsing.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/platinum_512.png', 'icon_width': 512, 'id': 'gid_3', 'is_enabled': True, 'is_new': False, 'name': 'Platinum', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/platinum_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/platinum_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/platinum_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/platinum_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/platinum_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/platinum_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/platinum_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/platinum_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/platinum_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/platinum_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/platinum_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}, {'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 500, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Use the Starry Award to highlight comments that deserve to stand out from the crowd.', 'end_date': None, 'giver_coin_reward': 0, 'icon_format': 'APNG', 'icon_height': 2048, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/Starry_512.png', 'icon_width': 2048, 'id': 'award_0e957fb0-c8f1-4ba1-a8ef-e1e524b60d7d', 'is_enabled': True, 'is_new': False, 'name': 'Starry', 'penny_donate': 0, 'penny_price': 0, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/Starry_512.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/Starry_512.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/Starry_512.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/Starry_512.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/Starry_512.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/bv82snw6r6i51_ShootingStar.png?width=16&height=16&auto=webp&s=0b9b96c6e8522652001b8806723eef42284a213a', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/bv82snw6r6i51_ShootingStar.png?width=32&height=32&auto=webp&s=ed31d025864a064edea1e2bcb96f4c0040c0d1d2', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/bv82snw6r6i51_ShootingStar.png?width=48&height=48&auto=webp&s=b3e8f9437c877610c7b997f472440d9b92000b9b', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/bv82snw6r6i51_ShootingStar.png?width=64&height=64&auto=webp&s=1a8d924ca401f162b4d7a4d9f155bada63477cc5', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/bv82snw6r6i51_ShootingStar.png?width=128&height=128&auto=webp&s=6191433430dbd6fa04a24eeb066a072797b649fb', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/bv82snw6r6i51_ShootingStar.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}, {'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 500, 'coin_reward': 100, 'count': 2, 'days_of_drip_extension': 0, 'days_of_premium': 7, 'description': 'Gives 100 Reddit Coins and a week of r/lounge access and ad-free browsing.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/gold_512.png', 'icon_width': 512, 'id': 'gid_2', 'is_enabled': True, 'is_new': False, 'name': 'Gold', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/gold_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}, {'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 150, 'coin_reward': 0, 'count': 3, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Thank you stranger. Shows the award.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'icon_width': 2048, 'id': 'award_f44611f1-b89e-46dc-97fe-892280b13b82', 'is_enabled': True, 'is_new': False, 'name': 'Helpful', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}, {'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 125, 'coin_reward': 0, 'count': 2, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'When you come across a feel-good thing.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'icon_width': 2048, 'id': 'award_5f123e3d-4f48-42f4-9c11-e98b566d5897', 'is_enabled': True, 'is_new': False, 'name': 'Wholesome', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}, {'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 4, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Shows the Silver Award... and that's it."", 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'icon_width': 512, 'id': 'gid_1', 'is_enabled': True, 'is_new': False, 'name': 'Silver', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}, {'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 80, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Everything is better with a good hug', 'end_date': None, 'giver_coin_reward': 0, 'icon_format': 'PNG', 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png', 'icon_width': 2048, 'id': 'award_8352bdff-3e03-4189-8a08-82501dd8f835', 'is_enabled': True, 'is_new': False, 'name': 'Hugz', 'penny_donate': 0, 'penny_price': 0, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16&height=16&auto=webp&s=69997ace3ef4ffc099b81d774c2c8f1530602875', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32&height=32&auto=webp&s=e9519d1999ef9dce5c8a9f59369cb92f52d95319', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48&height=48&auto=webp&s=f076c6434fb2d2f9075991810fd845c40fa73fc6', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64&height=64&auto=webp&s=85527145e0c4b754306a30df29e584fd16187636', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128&height=128&auto=webp&s=b8843cdf82c3b741d7af057c14076dcd2621e811', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16&height=16&auto=webp&s=69997ace3ef4ffc099b81d774c2c8f1530602875', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32&height=32&auto=webp&s=e9519d1999ef9dce5c8a9f59369cb92f52d95319', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48&height=48&auto=webp&s=f076c6434fb2d2f9075991810fd845c40fa73fc6', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64&height=64&auto=webp&s=85527145e0c4b754306a30df29e584fd16187636', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128&height=128&auto=webp&s=b8843cdf82c3b741d7af057c14076dcd2621e811', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;Assmeet123;;;[];;;;text;t2_4z85sldu;False;True;[];;"As always, Re:Zero delivers and this episode has already cemented itself as my favorite episode in the series. I want to talk a bit about my overall thoughts on specifically the second half of the episode, which is my favorite moment in the anime so far. - -Emilia’s state of mind is a clash of negative feelings. Desperation, disbelief, paranoia, anxiety, and fear. Desperation because of not having someone to lean on, disbelief that puck broke the contract, paranoia because of her unsealed memories, anxiety from having to face the trials again, fear from all the high expectations around her, and finally, panic as a result of everything above. And even then, it’s undermining her current mental situation quite a bit. - -Puck said Emilia would have someone to lean on, that certain someone being Subaru, and Emilia, being pushed to be selfish, tried to test Subaru as per Puck’s word. Emilia tested Subaru’s faith and love with the criteria she herself put up. This doesn’t go all too well and Subaru leaves in the middle of the night. There were cruel memories of the people around her breaking a promise or a contract and another one being added to the list was just too much to bear for one little girl’s heart. Every one of them was a filthy Liar. - -Emilia hesitatingly retracts to her shell but Subaru finds her. Emilia makes a certain remark at Subaru’s words in the web novel. **\[You won’t fool me even if you say that. ――When I don’t even properly know myself, how could you possibly know?\]** and Subaru retorts with **\[It’s surprising how little people can see of themselves. Even when others around them can see all the way to their bootsoles\].** - -The one who knows you the best is yourself. While this may be true to some extent, as already demonstrated in From Zero, the “you” you know the best is the “you” you see and the “you” you see isn’t necessarily always the “you” that’s apparent. For instance, your judgment of yourself might not be as accurate as you think it is. It’s easy for your perception of yourself to be clouded with negative emotions and exaggerations of negative qualities about yourself, and downplays of positive aspects about yourself and certainly even vice versa. And not to say that an outsider knows more about yourself than you do, but they certainly know something you don’t. - -Emilia was irritated at Subaru for not being mad at her because to her, it’s as if Subaru hadn’t expected anything from her. Where there is expectation, there is disappointment and anger, but instead of disappointment and anger, Subaru was filled with relief. Emilia’s narrow-minded perception of expectations made her judgment a bit clouded. Subaru *did* have expectations, but does that mean he would lash out at a mentally unstable girl he loved? Of course not. People’s emotions aren’t as black-and-white as Emilia makes it out to be, and it’s also partially because of her immaturity, her not knowing what romantic unconditional love really means. To Emilia, this was a completely foreign emotion that was bombarded upon her. - -Emilia is also completely self-aware of the problems she caused. What she did, what negative impacts it would have on other people and herself. She knew all of it. But instead of it being like Subaru’s self-awareness and self-loathing, she’s desperately crying for help in the midst of all of this. She’s emphasizing and shouting out the bad parts of her character in hopes that someone, namely Subaru, would say that it isn’t true and prove her wrong. But that doesn’t play out how she wanted it to. Instead of consoling Emilia that was wallowing in self-pity, Subaru showers her with reaffirmations of her judgments and additions of Subaru’s own. - -Emilia doesn’t understand. If Subaru knows about all her shortcomings and is able to shout it out, why does he love her? Back in EP 13, Emilia said, “The version of me you love must be amazing.” She always thought that Subaru viewed her differently so she was able to rationalize his love for her, but that wasn’t the case at this given moment. And so, she didn’t understand. Why? Why did this man have so much blind faith in her even after seeing how much she failed, why did he believe in her even though he knew all of her shortcomings? - -**“I love you- Emilia.”** - -These words. They were reason enough. It’s not because Subaru believes in Emilia that he loves her, but it’s *because* Subaru loves Emilia that he believes in her. Subaru loves Emilia despite her flaws because, at this given moment, he’s in love with a real person, not an idealization of a heroine. He didn’t fall in love with a goddess nor an angel, he fell in love with a broken girl who despite all the suffering, is able to put up a genuine smile. Love isn’t about idealization nor ignorance, it’s about acceptance and appreciation. They say love is blind, but in order to truly love someone, you have to open your eyes to their ugliest parts, their darkest secrets, their worst behaviors, but still be able to look past them, help them through it, and admire their good parts. - -Emilia is weak. Subaru and Emilia herself know that. When Emilia felt like everyone abandoned all hope for her, that she was beyond saving, that, was precisely the moment where she felt saved. And that was because she was released from the shackles known as expectations. When you’re free of expectations, you have nothing to worry about and you can be as care-free and weak as you want and no one would bat an eye. But- is that really a good way to live? Dragging along your deadbeat corpse that has been stained and bloodied by your own weakness and inability to move forward, is that really a good way to live? Subaru knew it wasn’t. For he himself was on this close to falling in it. Being released from the chains of expectations feels like all the weight of the entire world has been lifted off of your shoulders, but it is only fanning the flames of a far greater spiral into darkness. Subaru knew how it was like to be on the verge of it, but he also knew how it felt like to be guided out of it. And this time, it was Subaru’s turn to guide the one he loved away from the darkness and into the light. - -Expectations are what keep a person moving forward. Where there is expectation, there is faith and hope. Faith and hope mean that there is a reason to move forward for. **“It isn’t wrong to be weak, but it’s wrong to want to stay weak.”** Being weak and pathetic is fine, it happens to everyone, but wanting to stay weak so you can get all the sympathy and reassurance? wanting to stay weak because you can easily rely on others? wanting to stay weak because you can just run around without having to change your cowardly self? *That* is what’s pathetic. - -Emilia is also really really scared. Scared of what would happen if she were to lose this ‘Emilia’ that was built upon false memories, scared that she would no longer be herself. Scared that the people she built relationships with would be distanced from her. But Subaru reassures her, he says that no matter what happens to her, he’d always love her. That might have seemed a bit far-fetched and too good to be true but that was what gave Emilia a sense of relief and comfort. That Subaru, despite what happens to her, would have faith, would set expectations on her, would cherish her, and would love her, gave her the courage to move forward. - -**{――What’s important isn’t the beginning or the middle, it’s the end.}** - -A seemingly insignificant remark thrown by Naoko at Subaru. What it completely means, Subaru has yet to decipher, but he does know what his mother is trying to tell him. No matter how it began, regardless of which path you took until you reach the end of the end of the end, who has the right to say whether or not it’d all been a mistake? - -It’s only natural that Emilia would be anxious when unknown memories start flowing back. And the fear that comes with turning into someone who might not be as you are now is definitely something scary. But that doesn’t mean the path Emilia has walked will vanish, or that her feelings will change, or that Subaru’s own feelings will change. - -Puck and Subaru both lied to her. To give her strength to become a stronger person and to give her a heartfelt push for the most important moment of her life. Every one of them was a filthy liar, but they lied because they deeply cared about Emilia. - -And just as Subaru has relationships, connections, and bonds that let him move forward despite the fear and suffering, he wishes that Emilia can find her own. - -\-That Emilia can find her own **‘Reason to Believe.’**";False;False;;;;1610552864;;False;{'gid_1': 4, 'gid_2': 2, 'gid_3': 1};gj4eeoi;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4eeoi/;1610616556;862;True;False;anime;t5_2qh22;;14;['econ:render:lottie:redstar']; -[];;;Vpeyjilji57;;;[];;;;text;t2_15ti6p1p;False;False;[];;Remind me to never piss off Otto.;False;False;;;;1610552904;;False;{};gj4ehq8;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ehq8/;1610616603;1503;False;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;I think OP and ED were trapped by the witch cult, that is the only reason.;False;False;;;;1610552944;;False;{};gj4ekqk;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ekqk/;1610616649;158;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;With backlash and everything haha.;False;False;;;;1610552986;;False;{};gj4enxf;False;t3_kwisv4;False;False;t1_gj4e8xe;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4enxf/;1610616695;57;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandwich-External;;;[];;;;text;t2_7i1tg5z9;False;False;[];;More character development and romantic progression than ~~rent a girlfriend~~ most romance anime;False;False;;;;1610553010;;False;{};gj4epn8;False;t3_kwisv4;False;False;t1_gj4cvol;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4epn8/;1610616721;144;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarRufus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ScarRufus;light;text;t2_2u0vy1pk;False;False;[];;**EMT**;False;False;;;;1610553062;;1610553309.0;{};gj4etlx;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4etlx/;1610616781;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MagnoBurakku;;;[];;;;text;t2_u37ay;False;False;[];;"Thank you Tappei for creating, this, thank you WhiteFox for the perfect adaptation and Subaru and Emilia for finally letting every emotion out!!! - -Masterfully crafted episode and scene.";False;False;;;;1610553085;;False;{};gj4eveg;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4eveg/;1610616810;183;True;False;anime;t5_2qh22;;0;[]; -[];;;CosmicPenguin_OV103;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cosmic_Penguin;light;text;t2_1ufwqhs7;False;False;[];;"What a lovely episode. - -Firstly Otto's back story has solidify him as one of the top side kicks in the anime world's recent history - being kicked out of his home town like that due to his own abilities, yet without much hate to this world and become one of the heroes of this rescue action. ~~And his remark that he has never saw anyone liking such a cold maid like Ram out there is spot on! Well done pal, you will be forever remembered for your boldness!~~ - -And then comes one of the more memorable ~~husband and wife~~ \- sorry Rem fans - arguments I have seen in anime, neither Subaru nor Emilia willing to back down from their stubborn stances. Yet for all the sometimes stupid, sometimes ill-tempered stubbornness we have seen from him, this is one that he really shines. For I and certainly him definitely sees that Emilia is in danger of forever stuck inside her emotional scars of the past that threatens to cocoon her for possibly ever since Puck left. Her repeated refusal for help and crying (Rie Takahashi has done her most memorable performance to me here) are signs that she desperately need external assistance to get through this life obstacle - something that is currently reflecting in my own heart as I currently go through my own cycle of throwing out psychological baggage of the past. - -Despite Subaru's raw skills in that (""I love you"" a dozen times isn't exactly the elegant language that would amplify this message, though at least his mentioning of his love of the height differences gave me a big chuckle), he truly stick to his true gentleman side today with a performance that, as I really hope, would finally help Emilia to make her independent side shines - a moment that I have waited for a long time. - -Way to go boy! ~~And no as someone who has Beatrice as Re:Zero Best Girl, I've no horses in this race.~~";False;False;;;;1610553090;;False;{};gj4evu8;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4evu8/;1610616817;114;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;"OK, it usually is very hard to find any major fault with this series but I was not a fan at all of that lazy texture overlay during the flashbacks. - -Looked really cheap. - -A shame, cus otherwise I really enjoyed Otto's backstory.";False;False;;;;1610553106;;1610553696.0;{};gj4ewyy;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ewyy/;1610616833;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Ambitious-Sugar6826;;;[];;;;text;t2_72kvjp6p;False;False;[];;How good was the episode? Haven't watched it yet. Hoping it was a top tier episode;False;False;;;;1610553120;;False;{};gj4ey1u;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ey1u/;1610616850;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cornpenguin01;;;[];;;;text;t2_147sgq;False;False;[];;Wow what an incredible episode;False;False;;;;1610553136;;False;{};gj4ezce;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ezce/;1610616870;12;True;False;anime;t5_2qh22;;0;[]; -[];;;armagetroit;;;[];;;;text;t2_4drs3y6u;False;False;[];;And thus begins the Rise of Chadbaru;False;False;;;;1610553182;;False;{};gj4f2u9;False;t3_kwisv4;False;False;t1_gj4cvol;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4f2u9/;1610616922;176;True;False;anime;t5_2qh22;;0;[]; -[];;;Prince-Dizzytoon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/princedizzytoon;light;text;t2_mu0df;False;False;[];;"HOLY SHIT THEY DID IT! THEY FUCKING DID IT! - -#LETS FUCKING GOOOOOOOOOOOO";False;False;;;;1610553183;;False;{};gj4f2yx;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4f2yx/;1610616924;213;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"The ship has finally sailed!!!. Seriously this was a S-tier voice acting by the VA's. - -Emilia is really *a pain in the ass woman* but that's not going to stop **CHAD-baru**. He really, truly loves her.";False;False;;;;1610553207;;1610554303.0;{};gj4f4th;False;t3_kwisv4;False;False;t1_gj4eaqt;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4f4th/;1610616951;329;True;False;anime;t5_2qh22;;0;[]; -[];;;unknown537;;;[];;;;text;t2_20519zb3;False;False;[];;For those who didn't get it. Otto's first love is a cat. And the cat dumped him. Poor guy.;False;False;;;;1610553288;;False;{};gj4fb40;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4fb40/;1610617049;1720;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;False;[];;Subaru's confession to Emilia is somehow even more aggressive than Satella's confession to Subaru.;False;False;;;;1610553326;;False;{};gj4fe4g;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4fe4g/;1610617094;2097;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 150, 'coin_reward': 0, 'count': 2, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Thank you stranger. Shows the award.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'icon_width': 2048, 'id': 'award_f44611f1-b89e-46dc-97fe-892280b13b82', 'is_enabled': True, 'is_new': False, 'name': 'Helpful', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}, {'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 125, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'When you come across a feel-good thing.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'icon_width': 2048, 'id': 'award_5f123e3d-4f48-42f4-9c11-e98b566d5897', 'is_enabled': True, 'is_new': False, 'name': 'Wholesome', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;Acrzyguy;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Honbunsha is life;light;text;t2_24t4nd3s;False;True;[];;Grand Theft Otto;False;False;;;;1610553362;;False;{};gj4fgsp;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4fgsp/;1610617134;1344;True;False;anime;t5_2qh22;;3;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610553414;;1610554178.0;{};gj4fktc;False;t3_kwisv4;False;True;t1_gj4dvoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4fktc/;1610617195;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"[*Oram Oram Oram Oram!*](https://i.imgur.com/VAXydBV.jpg) - -[](#SPORTS) - - -[Ram](https://i.imgur.com/IRh7J3h.jpg) and [Otto](https://i.imgur.com/rdMWKAz.jpg) were badass. [That kiss](https://i.imgur.com/sSNQpfh.jpg) though. Who would have expected fluff in Re: Zero?";False;False;;;;1610553423;;False;{};gj4flhp;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4flhp/;1610617204;301;True;False;anime;t5_2qh22;;0;[]; -[];;;Aodirjames;;;[];;;;text;t2_56pe0abq;False;False;[];;Otto's mom is pretty, all moms in this anime are the best;False;False;;;;1610553433;;False;{};gj4fma3;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4fma3/;1610617216;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GreenHooDini;;;[];;;;text;t2_149f8ldg;False;False;[];;#FUCK YEEEEEAAAAHHHH!!!!;False;False;;;;1610553456;;False;{};gj4fnxx;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4fnxx/;1610617241;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NemuNemuChan;;;[];;;;text;t2_36u9ttad;False;False;[];;My man finally got a kiss!;False;False;;;;1610553462;;False;{};gj4focm;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4focm/;1610617248;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Yuriy116;;;[];;;;text;t2_4zw79dsa;False;False;[];;Damn, that bug scene reminded me of Overlord;False;False;;;;1610553468;;1610555484.0;{};gj4fov2;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4fov2/;1610617257;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"#OTTO IS BEST BOY AND I WOULD DIE FOR HIM - -[](#makicry) - -HOLY FUCK OTTO IS SAVAGE! Otto is a bold boy to take on Garfield like this... fuck. - -Oh wow its Otto backstory? Oh man i never expected this! - -Smoltto is precious. So hes from some desert nation? Neat. - -So it wasnt until he was 10 that he was able to understand the voices he was hearing? Wow imagine growing up like that, that for 10 years you just hear noise and cant figure it out. Acctually anyone with Tinnitus would know. Ive always heard static even when in places with no sound, but i did have a pen stabbed into my right eat when i was 18, so thats probably why. - -SMOLTTO SUMMONING THE LOCAST PLAGUE! HAHHAHA I LOVE IT! - -Otto is really a good boy, man he has been through a lot. - -Ahhhhh so this is how he was captured in this timeline! We finally get to see it. DESS~ - -OTTO WAS SO HAPPY SUBARU SAVED HIM! MY HEART~ HES SUCH A GOOD BOY~ - -OTTO STOP BLEEDING! YOU CANT DIE LIKE THIS! BE A GOOD BOY TO THE END AND LIVE! - -MAN THIS INSERT SONG IS SO GOOD! OTTO GETTING HIS TIME TO SHINE! - -RAM WITH THE SAVE! AW WERE ONTO PHASE 2! GOOD WORK OTTO! - -OTTO STILL FAWNING OVER SUBARU~ THIS IS TOO WHOLESOM! - -""He has bizzarly good timing"" so thats how it seems to people who only see the 1 timeline. I guess thats fitting. - -Tony the Tiger is back, how will Ram handle him? - -PERFECTLY FINE! OH SHIT! GARFIELDS NEVER BEATTEN HER!? JESUS! SHES A BEAST TOO! - -If Garfield is a beastman doesnt that mean Otto who can talk to animals might be able to do something with him? - -Wow Title Drop mid ep. Now its EMT time. - -Aw EMT just scared Subaru would be mad at her... - -EMT's self hatred might rival Subaru's. Man seeing her breakdown like this is rough... - -Subaru giving EMT the tough love and declaration of love Rem gave him? Wow. - -AI DESU~ LOVE IS ALL THAT MATTERS! - -You know its good for Subaru and EMT to put thier feelings out in the open like this and clear things up. - -OH SHIT SUBARU GOIN IN FOR THE SMOOCH!? HOW IS THIS LEGAL!? OH DAMN HE DID IT! DIDNT EXPECT THAT! - -Subaru busting out Mama Basaru lines in the end, oh damn. - -WHAT AN AMAZING EP FULL OF SO MANY EMOTIONS! DAMN! - -Now its Garfield time.";False;False;;;;1610553493;;1610553894.0;{};gj4fqpg;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4fqpg/;1610617285;92;True;False;anime;t5_2qh22;;0;[]; -[];;;armagetroit;;;[];;;;text;t2_4drs3y6u;False;False;[];;Voice actor of Subaru was right when he said this episode would be on par with episode 15 from season 1;False;False;;;;1610553505;;False;{};gj4fro6;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4fro6/;1610617300;309;True;False;anime;t5_2qh22;;0;[]; -[];;;HayashiSawaryo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/HayashiSawaryo/;light;text;t2_74ql25l0;False;True;[];;Ottototoception;False;False;;;;1610553528;;False;{};gj4ftge;False;t3_kwisv4;False;False;t1_gj4dwdh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ftge/;1610617326;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YoCodingJosh;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/CodingJosh;light;text;t2_4oan1u9a;False;True;[];;"Otto best boi - so glad we got an origin story - -but holy shit Subaru and Emilia finally kissed. 10/10 AOTS";False;False;;;;1610553529;;False;{};gj4ftih;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ftih/;1610617327;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Turbostrider27;;;[];;;;text;t2_t27vp;False;True;[];;"> A wonderful adaptation, one of the actual best and top moments in the series which lived up to all my expectations, and we are only TWO EPISODES into this season! - -I couldn't agree more. - -2021 just getting started too!";False;False;;;;1610553530;;False;{};gj4ftl5;False;t3_kwisv4;False;True;t1_gj4d2ww;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ftl5/;1610617328;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;*So by going along this way*, 2nd half's OP and ED will be used more often in S3 then.;False;False;;;;1610553533;;1610555661.0;{};gj4ftrh;False;t3_kwisv4;False;False;t1_gj4dvoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ftrh/;1610617330;84;True;False;anime;t5_2qh22;;0;[]; -[];;;MaksimShadow;;;[];;;;text;t2_h92eaka;False;False;[];;"I like when anime changes art style to show something. Although, sometimes I thought that my screen is dirty. - -Animals sounded nice in headphones.";False;False;;;;1610553551;;False;{};gj4fv6t;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4fv6t/;1610617352;1;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 150, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Thank you stranger. Shows the award.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'icon_width': 2048, 'id': 'award_f44611f1-b89e-46dc-97fe-892280b13b82', 'is_enabled': True, 'is_new': False, 'name': 'Helpful', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;ThyHoffbringer;;;[];;;;text;t2_38indet5;False;False;[];;"Season? 2 - -Part? 2 - -Episode? 2 - -Amount of titles? 2 - -Amount of people being chad in the episode? 2";False;False;;;;1610553571;;False;{};gj4fwpl;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4fwpl/;1610617374;1759;True;False;anime;t5_2qh22;;1;[]; -[];;;NecronLord_Europe;;;[];;;;text;t2_6u218uk;False;False;[];;"""Pain in the ass woman"" was a more liberal WN translation. - -Glad to see it made it into the subs of the anime.";False;False;;;;1610553589;;False;{};gj4fy0g;False;t3_kwisv4;False;False;t1_gj4cva1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4fy0g/;1610617394;42;True;False;anime;t5_2qh22;;0;[]; -[];;;CynicalTree;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/tukimoshi;light;text;t2_a3hrm;False;False;[];;"Otto continues to age like fine wine and proves he's the ultimate wing-man - -Also very nice to see some romantic development between Subaru and Emilia. It's been a long time comin - -It was a bit sad to see how much Otto's family cared for him and he just had to up and leave it all behind. Also the cats omg";False;False;;;;1610553591;;1610554141.0;{};gj4fy66;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4fy66/;1610617397;9;True;False;anime;t5_2qh22;;0;[]; -[];;;toga9000;;;[];;;;text;t2_rklwt;False;False;[];;[Damn Subaru really called Emilia a pain in the ass](https://gyazo.com/ae83022b786bbb74d5f24ec51ea423a3);False;False;;;;1610553592;;False;{};gj4fy71;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4fy71/;1610617397;8;True;False;anime;t5_2qh22;;0;[]; -[];;;aclockworktomato;;;[];;;;text;t2_xgfcj;False;False;[];;Hot damn, what an episode. Otto giving his mother his note, Ram and Otto going toe to toe with Garf, that kiss!!! And Emilia and Subaru showing down against Garf at the end. Crazy hyped to see what comes next;False;False;;;;1610553595;;False;{};gj4fyfv;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4fyfv/;1610617401;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yankee1nation101;;;[];;;;text;t2_82gal;False;False;[];;"Finally A Reason To Believe animated, I cried. I expect it to be one of 3 or 4 instances where I cry this 2nd cour. - -Episode was executed beautifully. I love White Fox.";False;False;;;;1610553607;;False;{};gj4fzf1;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4fzf1/;1610617415;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yjggy;;;[];;;;text;t2_3n59dfhh;False;False;[];;" *~~And they lived~~* ~~happily~~ *~~ever after~~* - -Well, it's Re:Zero soooo....";False;False;;;;1610553611;;False;{};gj4fzs8;False;t3_kwisv4;False;False;t1_gj4cvol;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4fzs8/;1610617420;19;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkStrawhat;;MAL;[];;https://myanimelist.net/animelist/DarkStrawhat;dark;text;t2_12njm1;False;False;[];;OTTO OUR BOY :(;False;False;;;;1610553618;;False;{};gj4g04a;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4g04a/;1610617425;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mynameiscem;;;[];;;;text;t2_smd61rc;False;False;[];;I am Team Emilia now.;False;False;;;;1610553638;;False;{};gj4g1t3;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4g1t3/;1610617450;5;True;False;anime;t5_2qh22;;0;[]; -[];;;GoldenDude;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GoldenBoy808;light;text;t2_ay8d1;False;False;[];;BREAKING NEWS: SUBARU X EMILIA STOCKS ARE THROUGH THE ROOF! INVEST NOW;False;False;;;;1610553644;;False;{};gj4g28e;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4g28e/;1610617458;449;True;False;anime;t5_2qh22;;0;[]; -[];;;JadeDragon56;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/JadeDragon56;light;text;t2_ee93o;False;False;[];;As a long time Rem fan, I somehow found myself cheering for them. Guess that's what happens when they sideline best girl for an entire season;False;False;;;;1610553648;;False;{};gj4g2k2;False;t3_kwisv4;False;False;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4g2k2/;1610617462;145;True;False;anime;t5_2qh22;;0;[]; -[];;;spshiu;;;[];;;;text;t2_3xe1fna1;False;False;[];;we've really been waited for so long for the kiss!!;False;False;;;;1610553653;;False;{};gj4g2xp;False;t3_kwisv4;False;False;t1_gj4cvol;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4g2xp/;1610617467;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"Subaru is a man of focus, commitment, and sheer fucking will. He managed to [melt](https://i.imgur.com/xRp8Hgd.jpg) our ice elf's [frozen heart.](https://i.imgur.com/HuL6xve.jpg) - -[](#ilovethiskindofshit)";False;False;;;;1610553671;;False;{};gj4g4as;False;t3_kwisv4;False;False;t1_gj4f4th;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4g4as/;1610617489;60;True;False;anime;t5_2qh22;;0;[]; -[];;;thecomicguybook;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Comicman;light;text;t2_cfb58;False;False;[];;"S2 Part 2 doesn't have an OP or an ED it is just a hoax that White Fox made up like crop circles. - -[](#hikariactually)";False;False;;;;1610553672;;False;{};gj4g4c6;False;t3_kwisv4;False;False;t1_gj4dvoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4g4c6/;1610617489;253;True;False;anime;t5_2qh22;;0;[]; -[];;;Mage_of_Shadows;;;[];;;;text;t2_n8o12;False;False;[];;"Got some Heaven's Feel flashbacks when Otto revealed the bugs. - -Was really thrown off by the kiss though. Would have thought the series would have shown some explicit reciprocal feelings from Emilia instead of just a despairing state of mind.";False;False;;;;1610553690;;False;{};gj4g5pd;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4g5pd/;1610617511;5;True;False;anime;t5_2qh22;;0;[]; -[];;;thecomicguybook;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Comicman;light;text;t2_cfb58;False;False;[];;"~~Who is Rem?~~ - -[](#emiliaohdear)";False;False;;;;1610553706;;False;{};gj4g6ww;False;t3_kwisv4;False;False;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4g6ww/;1610617529;107;True;False;anime;t5_2qh22;;0;[]; -[];;;AFF123456;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/aff123456;light;text;t2_p9097;False;False;[];;Ram fans: “I have waited for 4— No, 5000 years for this”;False;False;;;;1610553719;;False;{};gj4g7xa;False;t3_kwisv4;False;False;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4g7xa/;1610617544;199;True;False;anime;t5_2qh22;;0;[]; -[];;;JadeDragon56;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/JadeDragon56;light;text;t2_ee93o;False;False;[];;HE DID IT!! HE DID THE THING!!!;False;False;;;;1610553725;;False;{};gj4g8bb;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4g8bb/;1610617549;1;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"> I wonder if anime-only will still label Subaru as a “simp” after this episode? Considering he’s just called out the woman he loves for being a pain in the ass of a woman and got the kiss! - - -they should've stopped by the end of S1, clown asses lol";False;False;;;;1610553761;;False;{};gj4gb22;False;t3_kwisv4;False;False;t1_gj4d6is;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gb22/;1610617591;239;True;False;anime;t5_2qh22;;0;[]; -[];;;James_316;;;[];;;;text;t2_b1kgz;False;False;[];;"That kiss scene was so rewarding, our guy earned it - -Does Subaru appearing in Emilia's eyes after the kiss mean she loves him too?";False;False;;;;1610553761;;1610554110.0;{};gj4gb40;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gb40/;1610617591;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;mr_sto0pid;;;[];;;dark;text;t2_13ckn3;False;True;[];;The ship has sailed. Hope Ram and Otto are ok though.;False;False;;;;1610553764;;False;{};gj4gbbm;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gbbm/;1610617595;28;True;False;anime;t5_2qh22;;0;[]; -[];;;Hiyasc;;;[];;;;text;t2_61tx0;False;False;[];;"Holy shit an actual good kiss in an anime that's not in the final episode, I'm shook. If this timeline resets I'm going to cry. - -Emilia does have a point though. She is someone who has been shown to have trust issues to begin with, and from her point of view Subaru has no reason to be in love with her. As far as she is concerned she does nothing but cause him problems and he seems to break promises at the worst times. I can easily see why she would think he hates her just based on her interactions with people in the past.";False;False;;;;1610553782;;1610554496.0;{};gj4gco8;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gco8/;1610617616;515;True;False;anime;t5_2qh22;;0;[]; -[];;;Mage_of_Shadows;;;[];;;;text;t2_n8o12;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610553786;moderator;False;{};gj4gczd;False;t3_kwisv4;False;True;t1_gj4cxli;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gczd/;1610617620;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Jumpkiller;;;[];;;;text;t2_14weph;False;False;[];;Wow, just wow. That was incredible. Otto is the man and Subaru just giga-chaded the remaining episode.;False;False;;;;1610553797;;False;{};gj4gdro;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gdro/;1610617632;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NecronLord_Europe;;;[];;;;text;t2_6u218uk;False;False;[];;"https://twitter.com/Tresskzilla/status/1347053279386198018 some old art of the climax of this episode (not the source) - -https://twitter.com/natsuki_iori/status/1349371446695391234 art that was just posted";False;False;;;;1610553812;;False;{};gj4gexx;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gexx/;1610617651;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MagicalKyleMoments;;;[];;;;text;t2_qfzsk;False;False;[];;"Not enough suffering 0/10 - -Really though, it was a really heartfelt episode. Getting some best boy backstory was nice. And the whole conversation between Emilia and Subaru was really sweet. Good episode.";False;False;;;;1610553825;;False;{};gj4gfzh;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gfzh/;1610617665;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Otto-Is-Eternal;;;[];;;;text;t2_96oge6mh;False;False;[];;This episode was super good! I can't wait for next week's!;False;False;;;;1610553826;;False;{};gj4gg2a;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gg2a/;1610617666;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Earthborn92;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EarthB;light;text;t2_al1wj;False;False;[];;I was NOT expecting that to happen at this point.;False;False;;;;1610553829;;False;{};gj4gg94;False;t3_kwisv4;False;False;t1_gj4cvol;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gg94/;1610617669;8;True;False;anime;t5_2qh22;;0;[]; -[];;;subaruxjuliusFTW;;;[];;;;text;t2_12yz2q;False;False;[];;Otto got NTR'd by a fking cat;False;False;;;;1610553831;;False;{};gj4ggdc;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ggdc/;1610617671;1454;True;False;anime;t5_2qh22;;0;[]; -[];;;Aito_SAKO;;;[];;;;text;t2_3dycv044;False;False;[];;oH;False;False;;;;1610553842;;False;{};gj4gh8d;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gh8d/;1610617683;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;"In the Japanese, Polish and Portuguese versions it translates to this. - -The English version was just Yenpress being idiots but there's nothing new there. Glad the anime went with the original route in any case.";False;False;;;;1610553862;;False;{};gj4gitq;False;t3_kwisv4;False;False;t1_gj4fy0g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gitq/;1610617708;22;True;False;anime;t5_2qh22;;0;[]; -[];;;thecomicguybook;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Comicman;light;text;t2_cfb58;False;False;[];;Poor Subaru though, that first loop being lost and not being able to explain how he fell in love with her still hangs over the series.;False;False;;;;1610553875;;False;{};gj4gjsm;False;t3_kwisv4;False;False;t1_gj4d2u1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gjsm/;1610617723;138;True;False;anime;t5_2qh22;;0;[]; -[];;;carlll2b2t;;;[];;;;text;t2_8w4a5ad5;False;False;[];;Arguably best one so far;False;False;;;;1610553878;;False;{};gj4gjyg;False;t3_kwisv4;False;True;t1_gj4ey1u;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gjyg/;1610617725;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;redmage311;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/redmage311;light;text;t2_d0jp4;False;False;[];;"That was *not* the backstory I was expecting for ~~Best Boy~~ Otto, but we've definitely seen him talk to Patrasche before, so I guess I can't say his blessing wasn't foreshadowed. - -I can't imagine how shitty it would have been to hear *everything* like Otto did as a kid.";False;False;;;;1610553879;;False;{};gj4gk2q;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gk2q/;1610617727;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;False;[];;This is the definition of blind love. Subaru fell in love with an imperfect version of Emilia, somebody who didn't have access to their full memories. Yet he's so certain he will still love her even if she's a completely different person once she regains them. He really put her on the spot with their first kiss by making it a game of chicken.;False;False;;;;1610553886;;False;{};gj4gkjy;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gkjy/;1610617734;7;True;False;anime;t5_2qh22;;0;[]; -[];;;thecomicguybook;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Comicman;light;text;t2_cfb58;False;False;[];;"I have been saying since S1 that she is best girl! - -[](#concealedexcitement) - -~~Other than Ram of course, I mean let's not be animals here.~~";False;False;;;;1610553930;;False;{};gj4gnxo;False;t3_kwisv4;False;False;t1_gj4djlk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gnxo/;1610617784;131;True;False;anime;t5_2qh22;;0;[]; -[];;;RongoFTW;;;[];;;;text;t2_kgih9p8;False;False;[];;Need a link for that song at the end;False;False;;;;1610553939;;False;{};gj4gomz;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gomz/;1610617796;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zxcv91095;;;[];;;;text;t2_3bv1oneo;False;False;[];;i already watched this ep 2 times and its not enough!;False;False;;;;1610553944;;False;{};gj4gozo;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gozo/;1610617801;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FeebleBacon;;;[];;;;text;t2_dato5;False;False;[];;At this point I just want Subaru to be happy with whomever he ends up with in the end.;False;False;;;;1610553946;;False;{};gj4gp6r;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gp6r/;1610617804;1;True;False;anime;t5_2qh22;;0;[]; -[];;;neemzter;;;[];;;;text;t2_422zq7wg;False;False;[];;All men in the chat shaking from PTSD after listening to that argument;False;False;;;;1610553948;;False;{};gj4gpar;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gpar/;1610617806;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VorAtreides;;;[];;;;text;t2_y87hi;False;False;[];;"Oh snap!! THEY KISS! Not crazy Emilia or Subaru, just full on consenting good kiss. Yay! - -That argument was interesting and can just feel how immature both of them still are, yet the weight of their past experiences being pressed down upon them. Ahh, good. - -I do wonder what happened with Otto. Garf sure is bloody atm and wonder how that happened (hopefully it's not Otto's or Ram's). - -Otto's backstory was interesting, a pity he got chased outta town cause of a loose noble woman/girl, but oh well. He is best boi :D";False;False;;;;1610553955;;False;{};gj4gpt4;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gpt4/;1610617813;2;True;False;anime;t5_2qh22;;0;[]; -[];;;spshiu;;;[];;;;text;t2_3xe1fna1;False;False;[];;"we've been waited for so long, and the kiss scene is really beautiful!! - -&#x200B; - -but beside subaru, emilia and otto, - -we also need to give a clap to fighting mode Ram XD";False;False;;;;1610553956;;False;{};gj4gpxh;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gpxh/;1610617815;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KennyMcKiller;;;[];;;;text;t2_pm9liu9;False;False;[];;I knew it would happen and was hyped for a voiced version;False;False;;;;1610553959;;False;{};gj4gq5k;False;t3_kwisv4;False;False;t1_gj4cvol;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gq5k/;1610617818;14;True;False;anime;t5_2qh22;;0;[]; -[];;;MaksimShadow;;;[];;;;text;t2_h92eaka;False;False;[];;[Protect this smile.](https://i.imgur.com/lr9hoL9.jpg);False;False;;;;1610553960;;False;{};gj4gq99;False;t3_kwisv4;False;False;t1_gj4d5ui;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gq99/;1610617820;32;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;[](#cokemasterrace);False;False;;;;1610553965;;False;{};gj4gqlt;False;t3_kwisv4;False;False;t1_gj4fgsp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gqlt/;1610617825;63;True;False;anime;t5_2qh22;;0;[]; -[];;;layzer3;;;[];;;;text;t2_qvia3s3;False;False;[];;Ram's line was what I was waiting for the most this ep;False;False;;;;1610553968;;False;{};gj4gqtd;False;t3_kwisv4;False;False;t1_gj4g7xa;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gqtd/;1610617828;104;True;False;anime;t5_2qh22;;0;[]; -[];;;gillesregis;;;[];;;;text;t2_1567ey;False;False;[];;Wow, I didn't expect Subaru to be such an absolute chad! He even says to keep moving forward, seems to be a recurrent theme this week.;False;False;;;;1610553979;;False;{};gj4grm8;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4grm8/;1610617841;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MagnoBurakku;;;[];;;;text;t2_u37ay;False;False;[];;Some Rem fans: I didn't hear any bell.;False;False;;;;1610553981;;1610557155.0;{};gj4grrr;False;t3_kwisv4;False;False;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4grrr/;1610617842;420;True;False;anime;t5_2qh22;;0;[]; -[];;;VengarTheRedditor;;;[];;;;text;t2_zyokm;False;False;[];;AFTER SO LONG;False;False;;;;1610553992;;False;{};gj4gsk3;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gsk3/;1610617854;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;"Yeah I agree. He's said certain things to her before now that should show that the dynamic has changed but this episode makes it loud and fucking clear for everyone to see. - -You love to see it.";False;False;;;;1610554006;;False;{};gj4gtqx;False;t3_kwisv4;False;False;t1_gj4gb22;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gtqx/;1610617871;140;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;False;[];;The Zero in the title actually refers to the OP and ED count.;False;False;;;;1610554015;;False;{};gj4gufd;False;t3_kwisv4;False;False;t1_gj4dvoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gufd/;1610617882;647;True;False;anime;t5_2qh22;;0;[]; -[];;;VengarTheRedditor;;;[];;;;text;t2_zyokm;False;False;[];;So true it hurts;False;False;;;;1610554020;;False;{};gj4gura;False;t3_kwisv4;False;False;t1_gj4g2k2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gura/;1610617887;7;True;False;anime;t5_2qh22;;0;[]; -[];;;9hokagefanboi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/nofanserviceplss;light;text;t2_tvo85;False;False;[];;imagine if subaru dies and has to do this shit again;False;False;;;;1610554027;;False;{};gj4gvar;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gvar/;1610617895;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HeadPatsAraAra;;;[];;;;text;t2_5dbalggu;False;False;[];;"As someone who loves Emilia and Subaru: - - -“AAAAAAAAAAAAAHHHHHHHHHHHH!!!!!”";False;False;;;;1610554029;;False;{};gj4gvh9;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gvh9/;1610617898;15;True;False;anime;t5_2qh22;;0;[]; -[];;;thecomicguybook;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Comicman;light;text;t2_cfb58;False;False;[];;"> than most romance anime - -It really is a shame that a lot of them just end on the first kiss (imagine if this was the final episode of Re:Zero lol that would be a prank and a half). There is so much further you can go from here, and I look forward to what Re:Zero does with it in this and the subsequent arcs. - -[](#wow)";False;False;;;;1610554044;;False;{};gj4gwlu;False;t3_kwisv4;False;False;t1_gj4epn8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gwlu/;1610617915;91;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"He will drop you in a pit full of bugs... - -[](#terror)";False;False;;;;1610554051;;False;{};gj4gx5f;False;t3_kwisv4;False;False;t1_gj4ehq8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gx5f/;1610617923;739;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;"Otto's backstory was great. And I honestly glad that he didn't have a past filled with tragedy. - -I will be honest just before [Subaru kissed Emilia](https://imgur.com/3vtNZV5) I was so sure that he was going to give her a headbutt.";False;False;;;;1610554057;;False;{};gj4gxn5;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gxn5/;1610617930;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Oh__Billy;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Oh_Billy;light;text;t2_30zjzcvz;False;False;[];;Goddamn, Subaru has really come a long way since arc 3, I literally screamed when they kissed, I'm happy for the *first* (The other one doesn't count) kiss of these fictional characters. Amazing episode.;False;False;;;;1610554073;;False;{};gj4gyvo;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gyvo/;1610617948;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;False;[];;I always knew he was a Disney princess. His backstory was better than the entire new Dr. Dolittle movie.;False;False;;;;1610554089;;False;{};gj4h02q;False;t3_kwisv4;False;False;t1_gj4czz6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4h02q/;1610617966;72;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610554102;;False;{};gj4h10x;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4h10x/;1610617980;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LunarGhost00;;;[];;;;text;t2_17rsmi;False;True;[];;"Garfiel: I've got you now, Otto! - -*OP starts playing* - -Garfiel: Why do I hear boss music?";False;False;;;;1610554111;;False;{};gj4h1pw;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4h1pw/;1610617991;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zipstream7;;;[];;;;text;t2_hj1pl;False;False;[];;[Garfiel's stance](https://i.imgur.com/JOZAccW.png) at the end of the episode is [too powerful.](https://www.youtube.com/watch?v=tZYt4tKNTP0);False;False;;;;1610554111;;False;{};gj4h1qd;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4h1qd/;1610617991;30;True;False;anime;t5_2qh22;;0;[]; -[];;;DaruniaMage;;;[];;;;text;t2_82b9jml8;False;False;[];;Holy fucking shit. The story is beyond amazing. The animation is gorgeous. The characters are absolutely fantastic. The music is hype as fuck. Otto and Subaru are fucking chads. Goddamn what an astonishing show and a 10/10 episode. If Whitefox somehow took form as a damn human being, fuck it, I'd marry them.;False;False;;;;1610554117;;1610555387.0;{};gj4h277;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4h277/;1610617999;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Darkblazy;;;[];;;;text;t2_1b1rbqcw;False;False;[];;BEST GIRL PETEL CHAN APPEARED SASUGA PETEL CHAN;False;False;;;;1610554121;;False;{};gj4h2jt;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4h2jt/;1610618004;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KennyMcKiller;;;[];;;;text;t2_pm9liu9;False;False;[];;#LETS FUCKING GOOOOOO;False;False;;;;1610554129;;False;{};gj4h34e;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4h34e/;1610618013;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;He should be glad that Kazuma didn't hear a word of this.;False;False;;;;1610554130;;False;{};gj4h364;False;t3_kwisv4;False;False;t1_gj4f2u9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4h364/;1610618013;114;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"Subaru literally gave Rem's speech to another girl... - -[](#ptsd)";False;False;;;;1610554144;;False;{};gj4h4ae;False;t3_kwisv4;False;False;t1_gj4fro6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4h4ae/;1610618031;448;True;False;anime;t5_2qh22;;0;[]; -[];;;RoyalDirection;;;[];;;;text;t2_71sk6any;False;False;[];;Last week I wanted to punch Subaru in the face for leaving her. Now I’m less mad at him.;False;False;;;;1610554156;;1610554532.0;{};gj4h57o;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4h57o/;1610618046;3;True;False;anime;t5_2qh22;;0;[]; -[];;;gillesregis;;;[];;;;text;t2_1567ey;False;False;[];;I guess they realized (no pun intended) how little they used the op last half-season, so they are catching up for it.;False;False;;;;1610554163;;False;{};gj4h5s8;False;t3_kwisv4;False;False;t1_gj4dvoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4h5s8/;1610618056;53;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexxxandreS;;;[];;;;text;t2_25oteqzx;False;False;[];;"Everyone will talk about the kiss, but anyone kept count of how many ""I love you"" was said?";False;False;;;;1610554164;;False;{};gj4h5u3;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4h5u3/;1610618056;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Frontier246;;;[];;;;text;t2_an8rjvo;False;False;[];;"I legitimately thought we were going to get Emilia's true backstory in this episode, but it turns out it's time for best boi Otto's origin. - -Otto can't take Garfiel in a straight fight, so he has to rely on his wits and his animal buddies to keep Garfiel off his back and distract him long enough for Subaru to do whatever it is he has to do. All things considered, I think Otto did a pretty great job. - -Did you miss Realize during season 2? Well, we may not have the proper Opening for this cour yet, but here's Realize as an insert song for Otto's finest hour! - -So Otto grew up with the ability to hear animals and insects, but it pretty much drowned everything else out so he couldn't properly connect with anyone. But he had a loving family and a big brother who was there to understand him when he needed him most, a role Otto sees himself fulfilling for Subaru in the present-day. - -Otto grew up in...anime Saudi Arabia? Or at least a village with a very similar culture. It seems like he comes from a mixed marriage, although he and his siblings seem to take after their very beautiful mom moreso than their dad. - -Poor Otto...tries to do something nice for his little brother and ends up calling forth a plague of locusts, basically. - -Doubly poor Otto...tries to clear his name when he's accused of being involved in an affair with a noble girl, only to then accuse said noble girl of being a serial cheater and get exiled from the village. I can only imagine how long it's been since Otto saw his family. - -I wasn't expecting to see a surprise Petelgeuse cameo, but we then learn part of where Otto's dedication to Subaru comes from to where he feels indebted to Subaru for saving Otto's life (however indirectly) and giving him another ""rebirth."" And thus was a friendship born! - -Otto tags out Ram who comes in to back him up against Garfiel (who for him this must feel like a top 10 anime betrayal), because in their own way they both believe in Subaru and the man he can be, and Ram is even willing to go out of her way to fulfill Roswaal's wishes in a way so she can help Subaru. It's pretty sweet when you think about it. - -So Ram punches out Garfiel in his animal form, and it sounds like this isn't the first time they've fought (is that partially why he's attracted to her?), but unfortunately Ram hits her limit while Garfiel is still raring to go...I hope they're okay. - -Meanwhile Subaru and Emilia are having their much needed conversation, with Emilia's self-confidence in herself and her identity at an all time low and she's not even willing to believe Subaru because he left her for a reason he's not sharing yet (probably to do with the missing Ryuzu?). - -Subaru feels like it's time to finally use tough love on Emilia, pointing out her faults and issues, while at the same time declaring how he loves and believes in her in-spite of all that. Honestly this argument between the two felt vaguely reminiscent of their argument in season 1, except the resolution ended up being much more positive for the pair (thanks in small part to some wise words from Subaru's mom). - -Subaru and Emilia finally have their first, real, kiss together and it was a joy to behold. Subaru gave Emilia the chance to dodge to refuse the kiss, but she accepted it, which is probably as indicative as to her current feelings for Subaru as an outright confession. Things seem to be looking up for these two right now and I couldn't be happier. - -It's time for Emilia to find her true conviction and path forward, whether that be through her feelings for Subaru or in accepting and realizing the truth of her past. - -Of course, it also looks like it's time for Subaru and Garfiel to have their long-awaited confrontation...";False;False;;;;1610554165;;False;{};gj4h5vr;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4h5vr/;1610618057;74;True;False;anime;t5_2qh22;;0;[]; -[];;;F00dbAby;;;[];;;;text;t2_rt6uy;False;False;[];;"I honestly can't believe it. Might be my favoruite romance in anime now which is crazy. As someone whose number one wish for this season was more Emilia I'm so satisfied. - -I can't believe this is only the second episode. This anime season is so insane .";False;False;;;;1610554188;;1610555206.0;{};gj4h7q3;False;t3_kwisv4;False;False;t1_gj4dtps;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4h7q3/;1610618085;311;True;False;anime;t5_2qh22;;0;[]; -[];;;LunarGhost00;;;[];;;;text;t2_17rsmi;False;True;[];;Rem is fine with polygamy.;False;False;;;;1610554196;;False;{};gj4h8dk;False;t3_kwisv4;False;False;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4h8dk/;1610618095;263;True;False;anime;t5_2qh22;;0;[]; -[];;;thecomicguybook;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Comicman;light;text;t2_cfb58;False;False;[];;I feel like it is going to fly under the radar because of the second half of the episode, but let's give it up for best boy Otto. He really is a great supporting character and a standout of S2 for me.;False;False;;;;1610554198;;False;{};gj4h8i7;False;t3_kwisv4;False;False;t1_gj4d6is;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4h8i7/;1610618097;252;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"TFW she was so OP, they had to get her into a coma for a whole season for the main pair to progress. On the bright side, [her defeat finally has meaning.](https://i.imgur.com/WHAkrBR.jpg) Even if it's not with her, Subaru being happy is what matters the most to Rem. - -[](#shatteredsaten)";False;False;;;;1610554200;;False;{};gj4h8o7;False;t3_kwisv4;False;False;t1_gj4g2k2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4h8o7/;1610618099;161;True;False;anime;t5_2qh22;;0;[]; -[];;;Bosseffs;;MAL;[];;http://myanimelist.net/profile/Zynapse;dark;text;t2_6pa52;False;False;[];;Long have we waited;False;False;;;;1610554203;;False;{};gj4h8wh;False;t3_kwisv4;False;False;t1_gj4cvol;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4h8wh/;1610618103;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Methode_Type004;;;[];;;;text;t2_xz0a0y7;False;False;[];;"Emilia you pain in the ass woman! - -Thanks to god they used WN line here instead of yenpress translation line. It affects how impactful its quite a lot";False;False;;;;1610554206;;False;{};gj4h93u;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4h93u/;1610618106;250;True;False;anime;t5_2qh22;;0;[]; -[];;;Setowi;;;[];;;;text;t2_7noo1d;False;False;[];;I was here;False;False;;;;1610554213;;False;{};gj4h9mi;False;t3_kwisv4;False;False;t1_gj4cvol;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4h9mi/;1610618114;63;True;False;anime;t5_2qh22;;0;[]; -[];;;TiedDegenerate;;;[];;;;text;t2_81erhbuh;False;False;[];;"**Still no op & ending!!** - -I did like how they used Realize with Otto's battle, the chorus really struckasemotional. Great use of music! - -and 28 minutes of pure content. We truly don't deserve Whitefox. - -Otto's backstory really made me realise how much of a optimistic guy he is, and it's surprising how much he trusts Barusu even after being neglected by his peers from a young age. Maybe we should thank his brother for making Otto the true best boy we know today. - -I just love Ram, her personality is just so appealing to me. Sad to see that she gets so little screen time and development, unlike blue Ram. We need more Ram! - -It's quite a relief to hear that the characters noticed how Barusu has 'perfect timing' every time, somehow going through everything,somehow doing things when it all seems impossible. - -Chad Barusu confessing during Emilia's darkest moments. He put an end to 'Emilia:The Suffering' in just one episode. True chad, love ya Barusu. - -Great episode, I don't feel good about what Garfield did to our precious boy and Ram";False;False;;;;1610554226;;False;{};gj4hakp;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4hakp/;1610618128;313;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;False;[];;But isn't that codependency?;False;True;;comment score below threshold;;1610554258;;False;{};gj4hd0p;False;t3_kwisv4;False;True;t1_gj4d2u1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4hd0p/;1610618165;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;And had a proper kiss this time, *unlike the previous one which tasted of death.*;False;False;;;;1610554266;;1610555541.0;{};gj4hdll;False;t3_kwisv4;False;False;t1_gj4g4as;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4hdll/;1610618174;37;True;False;anime;t5_2qh22;;0;[]; -[];;;thecomicguybook;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Comicman;light;text;t2_cfb58;False;False;[];;"> That son of a bitch - -[What did you say about best girl](https://i.imgur.com/e6lOaC1.png)? - -[](#holdback)";False;False;;;;1610554270;;False;{};gj4hdwp;False;t3_kwisv4;False;False;t1_gj4dtps;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4hdwp/;1610618179;631;True;False;anime;t5_2qh22;;0;[]; -[];;;Nordrive;;;[];;;;text;t2_8zslola1;False;False;[];;"""I love you !"" - ""You actually hate me, right ?!"" - ""No ! I Love you !"" - ""Liar!"" - ""No, i love actually love you !"" - -I am not gonna lie, that whole conversation was pretty intense but that made me chuckle. Poor Emilia, that girl just has a massive inferiority complex and you cannot really blame her getting into such a state of distress when put before such an insane challenge while Puck just left her without any reason given out of nowhere. - -Subaru's confession felt really awesome, he finally put into words why he loves her. And Emilia's reaction is so authentic. I was really surprised when the scene went dark and we just hear her screaming in a mix of confusion and anger. - -I do agree that Subaru's love and actions are super selfish, on the one hand you have to give him massive respect for going through hell for everyone he likes, but damn, that boy always does it without talking to others and always by himself. - -Really like where this going at, hopefully Subaru finally learns that he has allies and friends to rely on and that people find him genuinely likeable, maybe not for his ""competency"" but because he is just a great guy all along. While Emilia hopefully finds more worth in her person instead of seeing herself as a useless girl who just tags-along while everyone is carrying her. - -Oh and I love Otto, but seriously : fuck Garfiel, that dude is just a massive brat who cant control his anger and goes into Hulk Mode immediately and doesnt care who or what he kills in his rampage. I hope he gets some sense beaten in to him.";False;False;;;;1610554280;;1610554483.0;{};gj4heoy;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4heoy/;1610618191;141;True;False;anime;t5_2qh22;;0;[]; -[];;;VengarTheRedditor;;;[];;;;text;t2_zyokm;False;False;[];;I hope Subaru gets a checkpoint right *before* he kisses Emilia, so that he can start a new life with a smooch;False;False;;;;1610554290;;False;{};gj4hfhb;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4hfhb/;1610618202;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610554303;;False;{};gj4hggg;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4hggg/;1610618217;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thecomicguybook;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Comicman;light;text;t2_cfb58;False;False;[];;[](#smugpoint);False;False;;;;1610554307;;False;{};gj4hgrf;False;t3_kwisv4;False;False;t1_gj4denl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4hgrf/;1610618221;43;True;False;anime;t5_2qh22;;0;[]; -[];;;LunarGhost00;;;[];;;;text;t2_17rsmi;False;True;[];;He learned from the best.;False;False;;;;1610554322;;False;{};gj4hhym;False;t3_kwisv4;False;False;t1_gj4h4ae;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4hhym/;1610618239;217;True;False;anime;t5_2qh22;;0;[]; -[];;;jk3sd;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Jk3sd?;light;text;t2_6e7jktbe;False;False;[];;When did Otto turn into a chad;False;False;;;;1610554328;;False;{};gj4hidc;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4hidc/;1610618246;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WhoiusBarrel;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/darubarrel/animelist;light;text;t2_pdj0b;False;False;[];;Honestly probably Rieri's best performance to date IMO.;False;False;;;;1610554352;;False;{};gj4hka3;False;t3_kwisv4;False;False;t1_gj4f4th;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4hka3/;1610618274;175;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610554360;;False;{};gj4hkv1;False;t3_kwisv4;False;True;t1_gj4hakp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4hkv1/;1610618283;0;True;False;anime;t5_2qh22;;0;[]; -[];;;PleaseConsumeYourPP;;;[];;;;text;t2_9jfedpz6;False;False;[];;This pretty much sums up everyones reaction to the ending lol;False;False;;;;1610554382;;False;{};gj4hmnw;False;t3_kwisv4;False;True;t1_gj4fnxx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4hmnw/;1610618311;1;True;False;anime;t5_2qh22;;0;[]; -[];;;destroyah19;;;[];;;;text;t2_jzxyt;False;False;[];;Everything about that scene was beautiful! great work by all involved;False;False;;;;1610554388;;False;{};gj4hn2v;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4hn2v/;1610618317;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thecomicguybook;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Comicman;light;text;t2_cfb58;False;False;[];;It's a close call, I really like S1 episode 18 as well as The Frozen Bond still, but this one is definitely up there!;False;False;;;;1610554436;;False;{};gj4hqtd;False;t3_kwisv4;False;False;t1_gj4ddzb;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4hqtd/;1610618372;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;[Top 10 anime betrayals](https://i.imgur.com/qDWB3DA.png);False;False;;;;1610554439;;False;{};gj4hr2t;False;t3_kwisv4;False;False;t1_gj4h364;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4hr2t/;1610618376;86;True;False;anime;t5_2qh22;;0;[]; -[];;;Bosseffs;;MAL;[];;http://myanimelist.net/profile/Zynapse;dark;text;t2_6pa52;False;False;[];;I feel complete and happy now.;False;False;;;;1610554450;;False;{};gj4hs0y;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4hs0y/;1610618390;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;Calm down, calm down. He didn't mean it literally. Think of something good, think of mayo.;False;False;;;;1610554453;;1610556847.0;{};gj4hs9r;False;t3_kwisv4;False;False;t1_gj4hdwp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4hs9r/;1610618393;265;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"Also, He wasn't blindly in love now as compared to the past. He accepted all her pros and cons. If you truly love someone, you have to accept their entire being and that's what Subaru did. I am soo happy with this. - -***May this bond never be broken***";False;False;;;;1610554489;;False;{};gj4hv89;False;t3_kwisv4;False;False;t1_gj4gtqx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4hv89/;1610618437;157;True;False;anime;t5_2qh22;;0;[]; -[];;;thecomicguybook;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Comicman;light;text;t2_cfb58;False;False;[];;Unrelated, but is your username a reference to D. Gray Man by any chance?;False;False;;;;1610554494;;False;{};gj4hvmd;False;t3_kwisv4;False;False;t1_gj4gqlt;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4hvmd/;1610618443;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PureVII;;;[];;;;text;t2_146w6f;False;False;[];;"[Ram vs Garf ](https://imgur.com/a/WBDCH05) - -[The Kiss ](https://imgur.com/a/ye3PyXY) - -Both from Volume 13.";False;False;;;;1610554502;;1610556535.0;{};gj4hw7y;False;t3_kwisv4;False;False;t1_gj4cva1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4hw7y/;1610618453;17;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;Less than an episode with Satella for sure.;False;False;;;;1610554502;;False;{};gj4hw9x;False;t3_kwisv4;False;True;t1_gj4h57o;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4hw9x/;1610618455;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HeadPatsAraAra;;;[];;;;text;t2_5dbalggu;False;False;[];;Oh no, Emilia’s pregnant.;False;False;;;;1610554504;;False;{};gj4hwds;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4hwds/;1610618456;1248;True;False;anime;t5_2qh22;;0;[]; -[];;;WhoiusBarrel;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/darubarrel/animelist;light;text;t2_pdj0b;False;False;[];;"I can rest easy knowing Rem's ship has sunken for the greater good that is seeing CHADBARU SUCCEED. - -Speaking of OP, Rem merch is still being pumped out despite being absent the entire season that just goes to show her staying power.";False;False;;;;1610554511;;False;{};gj4hwze;False;t3_kwisv4;False;False;t1_gj4h8o7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4hwze/;1610618466;86;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaiReq;;;[];;;;text;t2_1mcjam23;False;False;[];;"I JUST WANT TO SEE THE OPENING ALREADY - -Anyways, this episode was beautiful. There were many onions cut.";False;False;;;;1610554529;;False;{};gj4hyg0;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4hyg0/;1610618488;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;There is still hope. She is alright with the harem route.;False;False;;;;1610554534;;False;{};gj4hyux;False;t3_kwisv4;False;False;t1_gj4h8o7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4hyux/;1610618495;20;True;False;anime;t5_2qh22;;0;[]; -[];;;justendmeffs;;;[];;;;text;t2_616awwfq;False;False;[];;Was Otto's backstory foreshadowed? It felt kinda out of nowhere but I don't remember the previous seasons well.;False;False;;;;1610554550;;False;{};gj4i023;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4i023/;1610618512;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jojo_is_trash;;;[];;;;text;t2_595dn1yo;False;False;[];;"JESUS WHAT WAS THIS EPISODE!? - -where tf do I begin? I guess I can start with Otto proving once and for all that he is the best boy of this show - -And we even got the short but very sweet return of best girl petelguese - -But best of all...REALISE IS BACK!!! Hell goddamn yes! - -That was one hell of a love confession, gotta say. - -Subaru is apparently so in love with Emilias voice. I mean, who can blame him, it’s Rie Takahashi - -Wait, I’m confused by something. Before entering the sanctuary, Subarus face looked normal, but when he’s talking to Emilia, marks have appeared on his face. Did something happen between those two events or was it just an oversight?";False;False;;;;1610554586;;1610554780.0;{};gj4i2v0;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4i2v0/;1610618558;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;"Otto is my second favourite character in the entire series, period. I could talk about best boy all day long. - -Really pained seeing anime only (rightfully so at the time) calling him out after what happened in S1 without the full context. Now it overjoys me to see everyone getting on the Otto hype train. - -Best boy and it's no contest.";False;False;;;;1610554617;;False;{};gj4i5a6;False;t3_kwisv4;False;False;t1_gj4h8i7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4i5a6/;1610618597;92;True;False;anime;t5_2qh22;;0;[]; -[];;;WhoiusBarrel;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/darubarrel/animelist;light;text;t2_pdj0b;False;False;[];;With the amount of plot going on and suffering that happened before this, this was the last thing I expected to happen and am so glad I never got spoiled on this.;False;False;;;;1610554619;;False;{};gj4i5gp;False;t3_kwisv4;False;False;t1_gj4dtps;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4i5gp/;1610618600;137;True;False;anime;t5_2qh22;;0;[]; -[];;;Zemahem;;;[];;;;text;t2_2i7j9c90;False;False;[];;"Best boy Otto right there. Guy deserves to own an entire enterprise rather than just a single shop. - -And Subaru's out here telling it straight to Emilia. The overall scene was good and I know how much of a mess her emotions must be at that moment, but my god did her ""pain in the ass"" side really shine here. In spite of myself, I got so annoyed half way through that I wish Subaru would just shut her up with a kiss already.";False;False;;;;1610554626;;False;{};gj4i61b;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4i61b/;1610618610;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;That was a great episode much better than the last episode. Never in my wildest dream, I thought that Petelgeuse will return, I hate that guy with a passion I hope he will not appear in any episode from now on. Otto happens to be very useful and his power is amazing, his character development is great as well. Last but not least Congratulations Subaru for getting your first kiss, that was a great scene and the execution was perfect.;False;False;;;;1610554647;;False;{};gj4i7ny;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4i7ny/;1610618635;5;True;False;anime;t5_2qh22;;0;[]; -[];;;unaviable;;;[];;;;text;t2_1o4qd3;False;True;[];;Why watch raw? Do you understand Japanese? If yes then cool but when not then why? So you have a head start and can make comments like this?;False;False;;;;1610554647;;False;{};gj4i7op;False;t3_kwisv4;False;False;t1_gj4ddzb;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4i7op/;1610618635;7;True;False;anime;t5_2qh22;;0;[]; -[];;;thecomicguybook;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Comicman;light;text;t2_cfb58;False;False;[];;It's OK that cat was nothing, no quality best girl animal such as Patrasche or anything.;False;False;;;;1610554649;;False;{};gj4i7s7;False;t3_kwisv4;False;False;t1_gj4fb40;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4i7s7/;1610618637;484;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;I mean they had to pull the coma card for Emilia to have a chance;False;False;;;;1610554649;;False;{};gj4i7t8;False;t3_kwisv4;False;False;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4i7t8/;1610618637;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Presillience_fr;;;[];;;;text;t2_7rrw73sc;False;False;[];;I can't stand this anime. Not enough pain and suffering.;False;False;;;;1610554659;;False;{};gj4i8kg;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4i8kg/;1610618648;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GoldenDude;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GoldenBoy808;light;text;t2_ay8d1;False;False;[];;Because he lost the qualification, he has to force his way into the tomb. It makes him sick even while he’s standing there. The marks are likely from him forcing his way in;False;False;;;;1610554672;;False;{};gj4i9lr;False;t3_kwisv4;False;False;t1_gj4i2v0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4i9lr/;1610618664;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"Most likely yeah. She cried her soul out in this episode. - -People who used to say that Emilia is bland and isn't expressive have to eat their words now.";False;False;;;;1610554685;;False;{};gj4iam8;False;t3_kwisv4;False;False;t1_gj4hka3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4iam8/;1610618680;194;True;False;anime;t5_2qh22;;0;[]; -[];;;jojo_is_trash;;;[];;;;text;t2_595dn1yo;False;False;[];;A proper kiss this time, not Subarus very traumatising first kiss;False;False;;;;1610554687;;False;{};gj4iart;False;t3_kwisv4;False;False;t1_gj4cvol;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4iart/;1610618682;522;True;False;anime;t5_2qh22;;0;[]; -[];;;FireFistYamaan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4uscna3;False;False;[];;"EMT Banzai! - -Hopefully people will understand that [Light Novel](/s ""Emilia and Subaru don't get together because of Emilias mental state and how she's 13 ""mentally""."")";False;False;;;;1610554700;;False;{};gj4ibt7;False;t3_kwisv4;False;False;t1_gj4cva1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ibt7/;1610618700;11;True;False;anime;t5_2qh22;;0;[]; -[];;;OmegonAlphariusXX;;;[];;;;text;t2_cmkgc75;False;False;[];;People never seem to realise that *true* love is wanting the person you love to be happy, whether that is with you or not;False;False;;;;1610554726;;False;{};gj4idqs;False;t3_kwisv4;False;False;t1_gj4h8o7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4idqs/;1610618731;58;True;False;anime;t5_2qh22;;0;[]; -[];;;WhoiusBarrel;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/darubarrel/animelist;light;text;t2_pdj0b;False;False;[];;As if their VA's putting on a spectacular performance wasn't enough, that insert song being played at the background just made the entire thing 10x better.;False;False;;;;1610554728;;False;{};gj4idvx;False;t3_kwisv4;False;False;t1_gj4d6is;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4idvx/;1610618733;82;True;False;anime;t5_2qh22;;0;[]; -[];;;BeastPompanoHUN;;;[];;;;text;t2_102yh0;False;False;[];;THE MADLAD DID IT. SUBAMILIA FTW 🔥🔥🔥🔥🔥;False;False;;;;1610554731;;False;{};gj4ie3m;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ie3m/;1610618737;3;True;False;anime;t5_2qh22;;0;[]; -[];;;unaviable;;;[];;;;text;t2_1o4qd3;False;True;[];;This isn't ntr but cock blocking. Ntr is cheating when you have a boyfriend/girlfriend.;False;False;;;;1610554735;;False;{};gj4ieeb;False;t3_kwisv4;False;False;t1_gj4ggdc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ieeb/;1610618742;92;True;False;anime;t5_2qh22;;0;[]; -[];;;thxelijah;;;[];;;;text;t2_2ef9uta8;False;False;[];;Would you break up with a SO if they unexpectedly got amnesia? Or would you try your best to keep loving and supporting them?;False;False;;;;1610554743;;False;{};gj4if1l;False;t3_kwisv4;False;False;t1_gj4gkjy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4if1l/;1610618751;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;I'm glad to know that Otto also watches Attack on Titan.;False;False;;;;1610554743;;False;{};gj4if2v;False;t3_kwisv4;False;False;t1_gj4denl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4if2v/;1610618752;1671;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;Many fans will tell you this but honestly this is just the start of the madness which is the tornado of content of S2 Part 2 of Re:Zero.;False;False;;;;1610554757;;False;{};gj4ig4n;False;t3_kwisv4;False;False;t1_gj4h7q3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ig4n/;1610618768;190;True;False;anime;t5_2qh22;;0;[]; -[];;;NittanyEagles55;;;[];;;;text;t2_kaj1s;False;False;[];;I didn’t think we would see flashbacks of best boy Otto. That was a nice surprise;False;False;;;;1610554757;;False;{};gj4ig4q;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ig4q/;1610618768;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Aerohed;;;[];;;;text;t2_xjmyo;False;False;[];;Rem should’ve utilized coma strats. She’d have been unstoppable.;False;False;;;;1610554762;;False;{};gj4igik;False;t3_kwisv4;False;False;t1_gj4h8o7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4igik/;1610618774;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Electronic___Ad;;;[];;;;text;t2_9bq0qsy6;False;False;[];;This felt like 2 separate 10/10 episodes;False;False;;;;1610554775;;False;{};gj4ihkv;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ihkv/;1610618790;1;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"Sadly... Second kiss. - -The first one was from crazy Emilia.";False;False;;;;1610554778;;False;{};gj4ihrk;False;t3_kwisv4;False;False;t1_gj4i7ny;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ihrk/;1610618793;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610554778;;False;{};gj4iht2;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4iht2/;1610618793;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;False;[];;I'll admit I'm pretty salty right now. Subaru and Emilia's first kiss was a literal game of chicken. The Emilia he fell in love with doesn't even have all her memories. So he just has blind faith that he will still love her once she regains them. And the way he described their relationship sounded like codependency. Like real codependency, not the fake one from Oregairu. Don't mind me, just choking on my copium I suppose.;False;True;;comment score below threshold;;1610554828;;1610556941.0;{};gj4ils5;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ils5/;1610618855;-22;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;I'm getting PTSD from the ugly ass texture overlay.;False;False;;;;1610554833;;False;{};gj4im57;False;t3_kwisv4;False;True;t1_gj4gq99;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4im57/;1610618860;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610554836;;False;{};gj4imer;False;t3_kwisv4;False;True;t1_gj4fro6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4imer/;1610618864;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yabo1here;;;[];;;;text;t2_4ep05rni;False;False;[];;Beatrice best girl dnc yeah but Emilia is going up my list of re zero girls;False;False;;;;1610554839;;False;{};gj4iml9;False;t3_kwisv4;False;False;t1_gj4gnxo;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4iml9/;1610618867;44;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;At least it wasn't filled with hungry pigs. Or worse, rabbits...;False;False;;;;1610554846;;False;{};gj4in3u;False;t3_kwisv4;False;False;t1_gj4gx5f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4in3u/;1610618874;466;True;False;anime;t5_2qh22;;0;[]; -[];;;jojo_is_trash;;;[];;;;text;t2_595dn1yo;False;False;[];;Subaru has achieved the perfect balance between simp and Chad;False;False;;;;1610554846;;False;{};gj4in5m;False;t3_kwisv4;False;False;t1_gj4d6is;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4in5m/;1610618875;8;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;"Subaru says he loves Emilia more than 10 times. - -Rem fans: Okay Subaru we all know and for god's sake please shut the fuck up. It hurts our sentiments.";False;False;;;;1610554853;;False;{};gj4inq4;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4inq4/;1610618883;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;Yeah we are eating our words now;False;False;;;;1610554863;;False;{};gj4iofw;False;t3_kwisv4;False;False;t1_gj4iam8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4iofw/;1610618896;42;True;False;anime;t5_2qh22;;0;[]; -[];;;Aerohed;;;[];;;;text;t2_xjmyo;False;False;[];;"Imagine having a brand new OP and not only not playing it, but playing the previous OP which you also barely played when it was the main opening. - -I can’t wait to hear “long shot” in season 3.5!";False;False;;;;1610554867;;False;{};gj4iorm;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4iorm/;1610618902;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Combo33;;MAL a-1milquiz;[];;http://myanimelist.net/animelist/bcom33;dark;text;t2_a15ep;False;False;[];;"Subaru: I love you, Emilia - -Emilia: I love Rem. - -Subaru: I should've seen this coming...";False;False;;;;1610554869;;False;{};gj4iox2;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4iox2/;1610618904;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sweaty-Plan8630;;;[];;;;text;t2_5f8gom8k;False;False;[];;“If you don't want to just dodge.” Lol;False;False;;;;1610554872;;False;{};gj4ip3y;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ip3y/;1610618907;2784;True;False;anime;t5_2qh22;;0;[]; -[];;;thecomicguybook;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Comicman;light;text;t2_cfb58;False;False;[];;"> Who would have expected fluff in Re: Zero? - -Hey now, this anime is only 90% suffering the rest of it is pretty cute! Mostly just the artstyle I guess... - -[](#laughter) - -Seriously though Re:Zero has a really amazing artstyle [Rem and Ram's hair](https://i.imgur.com/UVHkU5M.png) makes them seem totally adorable, I like how the color fades out near their face.";False;False;;;;1610554875;;False;{};gj4ipdp;False;t3_kwisv4;False;False;t1_gj4flhp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ipdp/;1610618911;143;True;False;anime;t5_2qh22;;0;[]; -[];;;Notmerere;;;[];;;;text;t2_5i4dwthm;False;False;[];;"WHAT A BEAUTIFUL EPISODE -Seeing Subaru now treat Emilia as someone who he wants to stand beside rather than keeping her on a pedestal and allowing her to develop wow true character development here plus I have to give big props to studio white fox giving us two 28 minute episodes and absolutely nailing the direction especially in the Otto backstory. Straight 10/10 episode (Otto best boy btw)";False;False;;;;1610554876;;False;{};gj4ipf0;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ipf0/;1610618911;23;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;">Also, He wasn't blindly in love now as compared to the past. He accepted all her pros and cons. If you truly love someone, you have to accept their entire being and that's what Subaru did. - -Couldn't have put it better myself.";False;False;;;;1610554885;;False;{};gj4iq6x;False;t3_kwisv4;False;False;t1_gj4hv89;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4iq6x/;1610618923;44;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;False;[];;"Some animes have an opening, a recap of the previous episode, an ending, a preview. - -Re:Zero: *We don't do that here.*";False;False;;;;1610554896;;1610556155.0;{};gj4ir2r;False;t3_kwisv4;False;False;t1_gj4gufd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ir2r/;1610618936;357;True;False;anime;t5_2qh22;;0;[]; -[];;;aXygnus;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Send Vanilla Satella doujins ;dark;text;t2_ws5bk;False;False;[];;"Just here to add something: technically, ""troublesome"" is more accurate than ""pain in the ass"", considering the kanji used (it's the same in WN and LN). - -But I sure as hell don't mind ""pain in the ass "" being used.";False;False;;;;1610554905;;False;{};gj4irq0;False;t3_kwisv4;False;False;t1_gj4gitq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4irq0/;1610618947;10;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"> It felt kinda out of nowhere but I don't remember the previous seasons well. - -It was already said his powers and that he was trapped by the witch cult and rescued by Ricardo in season 1. - -But I don't know why you need to ""foreshadow"" a backstory, let alone tha the was a minor character in season 1.";False;False;;;;1610554908;;False;{};gj4is0c;False;t3_kwisv4;False;False;t1_gj4i023;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4is0c/;1610618950;7;True;False;anime;t5_2qh22;;0;[]; -[];;;legwkio2;;;[];;;;text;t2_3winxodf;False;False;[];;"you know an anime is amazing when you were absolutely hyped about the MC kissing the heroine which is not your ""best girl"". - -i'm sorry rem my queen, but I get it. Subaru really truly does love Emilia, she's reflected on his eyes. And Emilia loves Subaru now.";False;False;;;;1610554937;;False;{};gj4iu90;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4iu90/;1610618985;16;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Emilia wasn't conscious at that moment, so let's not count it. Please this moment was perfect as hell for his first kiss.;False;False;;;;1610554940;;1610555200.0;{};gj4iui0;False;t3_kwisv4;False;True;t1_gj4ihrk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4iui0/;1610618989;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610554942;;False;{};gj4iupa;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4iupa/;1610618992;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kuronohachi;;;[];;;;text;t2_50iphujy;False;False;[];;this is not oregairu;False;False;;;;1610554973;;False;{};gj4ix1b;False;t3_kwisv4;False;False;t1_gj4hd0p;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ix1b/;1610619030;18;True;False;anime;t5_2qh22;;0;[]; -[];;;WhoiusBarrel;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/darubarrel/animelist;light;text;t2_pdj0b;False;False;[];;"Otto was a fellow sufferer like Subaru, dude can't catch a break before he became a merchant and even after becoming one when he got kidnapped by Betelgeuse. - - Just makes this bromance even more touching";False;False;;;;1610554976;;False;{};gj4ixaf;False;t3_kwisv4;False;False;t1_gj4czz6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ixaf/;1610619033;23;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;"If there's anything that Re:Zero is the undisputed GOAT of, it's the selection of insert songs. - -Just look at Straight Bet & Theatre D as other prime examples.";False;False;;;;1610554977;;False;{};gj4ixcy;False;t3_kwisv4;False;False;t1_gj4idvx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ixcy/;1610619034;56;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"Nope, and its not a Yu-gi-oh reference either. - -I do like D Gray Man but ived used this name way before that. - -Its mostly from me wanting a more personal username i can continue to use for long into the future. King is my middle name and the name i go by, and i always have liked time and clocks and time stories like time travel, and my favorite unit of time was a Millennia. - -If there is any correlation between my name and another, its [Millennia from Grandia II.](https://static.wikia.nocookie.net/grandia/images/1/17/Millenia_front.jpg/revision/latest?cb=20090621104831) Grandia II is one of my fav RPGs and i really loved the character designs and general art style of the game. Millennia was my fav character from the game. But that isnt exactly where my name came from, just a happy coincidence or maybe faint inspiration. But again, the core relation is to the unit of time. - -So no, sorry im not the Millennium Earl, i am Millennium King. - -[](#juice1)";False;False;;;;1610554995;;False;{};gj4iysg;False;t3_kwisv4;False;False;t1_gj4hvmd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4iysg/;1610619056;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Theleux;;MAL a-1milquiz;[];;https://myanimelist.net/profile/Theleux;dark;text;t2_am615;False;False;[];;"[](#gintamathispleasesme) - -It really is one of the best moments in the series, and you did a wonderful job of explaining why. So happy with the production staff's efforts perfecting this.";False;False;;;;1610554997;;False;{};gj4iyzx;False;t3_kwisv4;False;False;t1_gj4eeoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4iyzx/;1610619059;68;True;False;anime;t5_2qh22;;0;[]; -[];;;DankDestroy;;;[];;;;text;t2_yb4bz;False;False;[];;LETS FUCKING GOOOOOOOOO!!!!!!!!!!!!!!! HOLY CRAP I DID NOT EXPECT THAT THIS EPISODE.;False;False;;;;1610554999;;False;{};gj4iz5f;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4iz5f/;1610619062;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThyHoffbringer;;;[];;;;text;t2_38indet5;False;False;[];;The images doesn't load for me;False;False;;;;1610555000;;False;{};gj4iz7f;False;t3_kwisv4;False;False;t1_gj4hw7y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4iz7f/;1610619063;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Maximilian_Sinigr;;;[];;;;text;t2_4jzmr6hm;False;False;[];;Otto can be a main protagonist on his own at this point.;False;False;;;;1610555005;;False;{};gj4izj1;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4izj1/;1610619067;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Torchperish;;;[];;;;text;t2_6zo3b6hv;False;False;[];;Amazing VA work all around, amazing backstory for best boy Otto, and an amazing kiss scene that's been long overdue. 10/10 episode!;False;False;;;;1610555018;;False;{};gj4j0jl;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4j0jl/;1610619083;9;True;False;anime;t5_2qh22;;0;[]; -[];;;lapislegit;;;[];;;;text;t2_o6nzs;False;False;[];;"Holy shit an actual romantic development? Is this actually a romance anime? I thought it was just about pain and suffering! - -But seriously, that's probably one of the best romantic confession I've seen in an anime. Not because it's sweet or romantic or anything like that, but precisely because of how messy and selfish and just awful the confession is. And yet it's through the shouting and fighting that the two are able to tell each other their most honest feeling, and accept each other through it. Even as a Rem fan that's really well done, haha. - -Oh, and let's not forget the absolute MVP that allows the confession to happen in the first place - Mr Otto Sewen himself. His spotlight episode is kinda overshadowed unfortunately, but it really shows how he's truly the best bro Subaru can ever hope for. I kinda wish they show more about his merchant days though, seems like there's some more interesting stories there. - -Seriously though, not only did Subaru not die once in two episodes, he even get to kiss the woman he loves most! After all the suffering in the first cour, is karma finally smiles upon him? Or is something worse gonna come to counterbalance all this good fortune?";False;False;;;;1610555020;;False;{};gj4j0q8;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4j0q8/;1610619086;713;True;False;anime;t5_2qh22;;0;[]; -[];;;Takamaru0;;;[];;;;text;t2_6iqy2mhp;False;False;[];;"#Ma bois, he fucking did it. - -And thus begins the rise of chadbaru. - -Also Otto's adaptation was so good, it felt knew even tho I had read it.";False;False;;;;1610555025;;False;{};gj4j159;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4j159/;1610619093;18;True;False;anime;t5_2qh22;;0;[]; -[];;;MaksimShadow;;;[];;;;text;t2_h92eaka;False;False;[];;Well, Kazuma also can tell interesting stories about his interactions with the opposite gender. Like with Sylvia, for example.;False;False;;;;1610555026;;False;{};gj4j18c;False;t3_kwisv4;False;False;t1_gj4h364;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4j18c/;1610619095;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Matterfied;;;[];;;;text;t2_w702e;False;False;[];;"I think they cut way too much out regarding Subaru's part of the conversation, he was extremely harsh to her compared to the anime, and that's specifically why I love this chapter. They also cut out a bit from Emilia, with her being a bit petty toward Subaru, testing him to keep his promises, etc.. - -Other than that, I liked the adaptation.";False;False;;;;1610555044;;False;{};gj4j2kb;False;t3_kwisv4;False;False;t1_gj4d6is;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4j2kb/;1610619115;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;He said in season 1 that he was the younger son of a merchants family .;False;False;;;;1610555046;;False;{};gj4j2rl;False;t3_kwisv4;False;True;t1_gj4i023;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4j2rl/;1610619118;1;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;And the worst part is, that by popular definition, he is not a simp to begin with, Simps go out of their way to meet the demands the person they're into, Episode 13 was the exact opposite, it was Subaru's selfish desire that got in the way of things.;False;False;;;;1610555050;;False;{};gj4j338;False;t3_kwisv4;False;False;t1_gj4gtqx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4j338/;1610619123;38;True;False;anime;t5_2qh22;;0;[]; -[];;;legwkio2;;;[];;;;text;t2_3winxodf;False;False;[];;I mean, she was written that way until this arc. Genius writing by Tappei btw, she was bland because she her memories were gone.;False;False;;;;1610555058;;False;{};gj4j3rw;False;t3_kwisv4;False;False;t1_gj4iam8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4j3rw/;1610619133;185;True;False;anime;t5_2qh22;;0;[]; -[];;;Smudy;;MAL a-amq;[];;https://myanimelist.net/animelist/Smudy;dark;text;t2_nrmt6;False;False;[];;Otto is so epic, i can't.;False;False;;;;1610555075;;False;{};gj4j52o;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4j52o/;1610619153;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lapislegit;;;[];;;;text;t2_o6nzs;False;False;[];;Let them live somewhere nice with Subaru as husband, Emilia as wife and Rem as Maid/Mistress, I'm pretty sure some noble household in the past has exactly this same setup even.;False;False;;;;1610555086;;False;{};gj4j5z9;False;t3_kwisv4;False;False;t1_gj4hyux;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4j5z9/;1610619167;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;False;[];;Try to explain that to the yandere out there.;False;False;;;;1610555125;;False;{};gj4j91a;False;t3_kwisv4;False;False;t1_gj4idqs;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4j91a/;1610619216;46;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"*Runtime for an anime is 24mins* - -Re:Zero: still nope";False;False;;;;1610555132;;False;{};gj4j9ln;False;t3_kwisv4;False;False;t1_gj4ir2r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4j9ln/;1610619224;257;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;As a Rem fan, I was extremely happy for both of them but deep inside it hurts a lot.;False;False;;;;1610555136;;False;{};gj4j9x9;False;t3_kwisv4;False;False;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4j9x9/;1610619229;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;[*''Guys, I had a really weird dream while I was comatose...''*](https://i.imgur.com/uQQxpea.png);False;False;;;;1610555138;;False;{};gj4ja3z;False;t3_kwisv4;False;False;t1_gj4g6ww;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ja3z/;1610619232;172;True;False;anime;t5_2qh22;;0;[]; -[];;;GonvVasq;;;[];;;;text;t2_c4mzn;False;False;[];;If something happens to Otto, I'll kill everyone and then myself;False;False;;;;1610555165;;False;{};gj4jc84;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jc84/;1610619265;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;"The key part that debunks this is that a simp is someone who does everything for a girl because of his feelings but she doesn't reciprocate and they still do everything for them. Escanor from Seven Deadly Sins is a prime example in anime of this. Emilia has reciprocated Subaru so everything else is null&void.";False;False;;;;1610555180;;1610555936.0;{};gj4jddt;False;t3_kwisv4;False;False;t1_gj4j338;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jddt/;1610619283;28;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610555193;;False;{};gj4jehu;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jehu/;1610619300;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Izanagi___;;;[];;;;text;t2_6wmop5vl;False;False;[];;Who is that?;False;False;;;;1610555196;;False;{};gj4jerk;False;t3_kwisv4;False;False;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jerk/;1610619305;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Miliuk;;;[];;;;text;t2_el6ov;False;False;[];;One Punch Maid;False;False;;;;1610555201;;False;{};gj4jf41;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jf41/;1610619310;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lapislegit;;;[];;;;text;t2_o6nzs;False;False;[];;He literally says that she's not an angel, just a normal girl - a far cry from Emilia Maji Tenshi in the beginning. Seriously, once this season is over I wanna rewatch the first season again and watch in wonder how much character development Subaru went through.;False;False;;;;1610555202;;False;{};gj4jf6d;False;t3_kwisv4;False;False;t1_gj4hv89;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jf6d/;1610619311;123;True;False;anime;t5_2qh22;;0;[]; -[];;;Simp4Satella;;;[];;;;text;t2_95im9vat;False;False;[];;"As horrible as it sounds, I love when Subaru and Emilia argue like this. Their arguments always feel so real. This time he was more in the right though and was able to turn it around on her. - -Ultimately we got some great character backstory/worldbuilding , some neat action, some beautiful animation, all topped off with a very genuine romance scene. 10/10 episode for me.";False;False;;;;1610555204;;1610559954.0;{};gj4jfdp;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jfdp/;1610619314;924;True;False;anime;t5_2qh22;;0;[]; -[];;;thecomicguybook;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Comicman;light;text;t2_cfb58;False;False;[];;"[Rem right now](https://i.pinimg.com/originals/87/c3/90/87c3900630d02179c751ad6b9f4de618.gif). - -[If she was awake](#sadholo) - -How isn't there a Rem edit of that meme yet by the way? They both have blue hair as well!";False;False;;;;1610555224;;False;{};gj4jgyi;False;t3_kwisv4;False;False;t1_gj4h4ae;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jgyi/;1610619338;87;True;False;anime;t5_2qh22;;0;[]; -[];;;MauledCharcoal;;;[];;;;text;t2_1uu3nanq;False;False;[];;And so the fandom will now collectively forget how much it hated Subaru X Emilia. And all was well once more.;False;False;;;;1610555225;;False;{};gj4jh07;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jh07/;1610619339;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;You know pretty damn well that that's not remotely the same thing. Also, I doubt that Kazuma will want to talk about that...;False;False;;;;1610555226;;False;{};gj4jh32;False;t3_kwisv4;False;False;t1_gj4j18c;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jh32/;1610619340;5;True;False;anime;t5_2qh22;;0;[]; -[];;;HyperSonic6325;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;I don’t simp for Kaguya girls.;dark;text;t2_40y5x1xp;False;False;[];;*The* scene was nailed perfectly and I love it.;False;False;;;;1610555234;;False;{};gj4jhqy;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jhqy/;1610619351;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Izanagi___;;;[];;;;text;t2_6wmop5vl;False;False;[];;White Fox is doing the Lord's work giving us nearly 30 minute episodes;False;False;;;;1610555237;;False;{};gj4ji0j;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ji0j/;1610619355;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;False;[];;Alternative title for this episode: *Spice and Tiger*;False;False;;;;1610555243;;False;{};gj4jihl;False;t3_kwisv4;False;False;t1_gj4fgsp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jihl/;1610619362;412;True;False;anime;t5_2qh22;;0;[]; -[];;;dkaran_0102;;;[];;;;text;t2_7u3nnrtm;False;False;[];;"""I was here""";False;False;;;;1610555253;;False;{};gj4jj9m;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jj9m/;1610619375;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Hitenma;;;[];;;;text;t2_2d3ojr;False;False;[];;Whose fans?;False;False;;;;1610555257;;False;{};gj4jjki;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jjki/;1610619381;1;True;False;anime;t5_2qh22;;0;[]; -[];;;justabandit026;;;[];;;;text;t2_4q04qypm;False;False;[];;LETTSSSSSSSSSSSSSS FUUUUUUUUCKIIINNGGGGGGGGGGGG GOOOOOOOOOOOOOOOOOO BOIIIISSSSSSSSSSSSSSSSSSSS;False;False;;;;1610555263;;False;{};gj4jk1a;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jk1a/;1610619388;4;True;False;anime;t5_2qh22;;0;[]; -[];;;lapislegit;;;[];;;;text;t2_o6nzs;False;False;[];;Who needs pussy when you got Subaru anyway;False;False;;;;1610555264;;False;{};gj4jk48;False;t3_kwisv4;False;False;t1_gj4fb40;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jk48/;1610619389;238;True;False;anime;t5_2qh22;;0;[]; -[];;;runningtoda;;;[];;;;text;t2_4a3jav8z;False;True;[];;"Onwards! - -Subaru x Emilia is now the undisputed ship in the anime!";False;False;;;;1610555270;;False;{};gj4jkjd;False;t3_kwisv4;False;False;t1_gj4cva1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jkjd/;1610619395;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Suitable_Ad_8540;;;[];;;;text;t2_6x3cpn2f;False;False;[];;"Obviously the quality of the anime is getting worse. -Whitefox is focusing on mushoku tensei. - Looking at the mushoku tensei staff, some of them participated in the Rezero 1st season.";False;True;;comment score below threshold;;1610555284;;False;{};gj4jloq;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jloq/;1610619413;-19;True;False;anime;t5_2qh22;;0;[]; -[];;;Vulprex;;;[];;;;text;t2_1qb8kl7w;False;False;[];;Feels good to be a winner;False;False;;;;1610555299;;False;{};gj4jmw2;False;t3_kwisv4;False;False;t1_gj4djlk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jmw2/;1610619432;56;True;False;anime;t5_2qh22;;0;[]; -[];;;Chem_chem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Throwawaybathtow;light;text;t2_f8b00;False;False;[];;"No, in fact the bulk of this conversation was a refutation of that. - -The friction of the argument was on Emilia's hang up & trust issues: she is ashamed how she falls short in confidence & competence, thus feels she deserves scorn and rejection as the consequence of her failures. Subaru was trying to reinforce that he wants to help her in spite of those failures, which clashes so hard against her worldview of being so easily abandoned. - -Subaru *could* do everything for Emilia, he *could* save the day for her every time because its easier in the short term but they decided instead that the trial is something Emilia has to conquer on her own. Codependency would be if Emilia *needs* Subaru to solve her shit every time for her because he *needs* her to stay attached. - -Here, Subaru wants to help Emilia gain confidence to complete the trial on her own. Ergo, he wants her to *not* be dependent on him saving her every time. He offers to support, advice, a dose of reality and a pathetic display of simpery but all in the name of helping Emilia help herself. Its not codependency, its cooperation.";False;False;;;;1610555300;;False;{};gj4jmyo;False;t3_kwisv4;False;False;t1_gj4hd0p;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jmyo/;1610619434;53;True;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;"she's pretty fine with everything right now - -LMAO gottem";False;False;;;;1610555302;;False;{};gj4jn6v;False;t3_kwisv4;False;False;t1_gj4h8dk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jn6v/;1610619438;269;True;False;anime;t5_2qh22;;0;[]; -[];;;lapislegit;;;[];;;;text;t2_o6nzs;False;False;[];;Yukinoshita Haruno pls go and stay go;False;False;;;;1610555304;;False;{};gj4jnc2;False;t3_kwisv4;False;False;t1_gj4hd0p;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jnc2/;1610619440;13;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Not all hated them they just preferred other ship.;False;False;;;;1610555336;;False;{};gj4jpuz;False;t3_kwisv4;False;False;t1_gj4jh07;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jpuz/;1610619478;4;True;False;anime;t5_2qh22;;0;[]; -[];;;thecomicguybook;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Comicman;light;text;t2_cfb58;False;False;[];;Ok, I was just curious!;False;False;;;;1610555339;;False;{};gj4jq3v;False;t3_kwisv4;False;True;t1_gj4iysg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jq3v/;1610619481;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Like a real couple fight.;False;False;;;;1610555356;;False;{};gj4jrh0;False;t3_kwisv4;False;False;t1_gj4jfdp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jrh0/;1610619505;489;True;False;anime;t5_2qh22;;0;[]; -[];;;lapislegit;;;[];;;;text;t2_o6nzs;False;False;[];;Rem is in for an absolute rude awakening when (if?) she wakes up;False;False;;;;1610555356;;False;{};gj4jrhp;False;t3_kwisv4;False;True;t1_gj4h4ae;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jrhp/;1610619505;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;Mayo is good;False;False;;;;1610555382;;False;{};gj4jtgn;False;t3_kwisv4;False;False;t1_gj4hs9r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jtgn/;1610619535;36;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;That is just...;False;False;;;;1610555382;;False;{};gj4jthg;False;t3_kwisv4;False;False;t1_gj4ja3z;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jthg/;1610619535;16;True;False;anime;t5_2qh22;;0;[]; -[];;;patap0nacct;;;[];;;;text;t2_1gsn7nb7;False;False;[];;They're going to use most of season 1's soundtrack for the 3rd season, and use the 3rd's music for the 5th. The 4th season will be just one continuous 600-minute episode that covers the whole fifth arc so it will only use one OP and ED.;False;False;;;;1610555382;;False;{};gj4jti6;False;t3_kwisv4;False;False;t1_gj4ftrh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jti6/;1610619535;80;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;False;[];;Sure but Subaru never knew the version of Emilia with her full memories.;False;False;;;;1610555384;;False;{};gj4jtnq;False;t3_kwisv4;False;False;t1_gj4if1l;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jtnq/;1610619538;9;True;False;anime;t5_2qh22;;0;[]; -[];;;PM_ME_UR_GCC_ERRORS;;;[];;;;text;t2_kj1nh;False;False;[];;How do you already have all this written out? Did you get to watch the episode early?;False;False;;;;1610555397;;False;{};gj4juo4;False;t3_kwisv4;False;False;t1_gj4eeoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4juo4/;1610619553;178;True;False;anime;t5_2qh22;;0;[]; -[];;;Charizard-X;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/CharizardX;light;text;t2_13s3vf;False;False;[];;Intense episode in every way, best episode of season 2 till now for sure.;False;False;;;;1610555398;;False;{};gj4juoi;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4juoi/;1610619553;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Yuriy116;;;[];;;;text;t2_4zw79dsa;False;False;[];;Sit down, Garfiel.;False;False;;;;1610555430;;False;{};gj4jx8s;False;t3_kwisv4;False;False;t1_gj4denl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jx8s/;1610619591;408;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"Yeah, I like Rem but I won't deny that Emilia and Subaru's moment was amazing and I want to see where they go from here. - -Though I still want Rem to atleast wake up and talk but I guess it won't happen :(";False;False;;;;1610555435;;False;{};gj4jxod;False;t3_kwisv4;False;False;t1_gj4g2k2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jxod/;1610619598;12;True;False;anime;t5_2qh22;;0;[]; -[];;;lapislegit;;;[];;;;text;t2_o6nzs;False;False;[];;To be fair, it took Subaru many, many deaths and suffering to finally give him his development - don't think many romance MC wants to go through what he did at all;False;False;;;;1610555444;;False;{};gj4jybq;False;t3_kwisv4;False;False;t1_gj4epn8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jybq/;1610619607;56;True;False;anime;t5_2qh22;;0;[]; -[];;;thecomicguybook;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Comicman;light;text;t2_cfb58;False;False;[];;"Oof, that does actually make me sad. - -[](#spacetears)";False;False;;;;1610555447;;False;{};gj4jyj4;False;t3_kwisv4;False;False;t1_gj4ja3z;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jyj4/;1610619611;19;True;False;anime;t5_2qh22;;0;[]; -[];;;MarikaBestGirl;;;[];;;;text;t2_116oz6;False;False;[];;"Overheard outside the Sanctuary after Episode 15: - -“She got me,” Rem said of Emilia's kiss with Subaru. ""That f***ing Emilia boomed me.""";False;False;;;;1610555456;;False;{};gj4jzbq;False;t3_kwisv4;False;False;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4jzbq/;1610619622;913;True;False;anime;t5_2qh22;;0;[]; -[];;;magical-grill;;;[];;;;text;t2_box4k85;False;False;[];;I was so confused there, like I didn't want to believe that he got all uwu over a cat;False;False;;;;1610555475;;False;{};gj4k0st;False;t3_kwisv4;False;False;t1_gj4ggdc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4k0st/;1610619645;492;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> Is this actually a romance anime? - -***It always has been.***";False;False;;;;1610555480;;False;{};gj4k16z;False;t3_kwisv4;False;False;t1_gj4j0q8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4k16z/;1610619650;316;True;False;anime;t5_2qh22;;0;[]; -[];;;dkaran_0102;;;[];;;;text;t2_7u3nnrtm;False;False;[];;"Anime onlys:wait emillia is best girl - -Me:always has been";False;False;;;;1610555487;;False;{};gj4k1r4;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4k1r4/;1610619660;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheZrial;;;[];;;;text;t2_7c41y;False;False;[];;I love the blink in the end, changing from her purple eyes to seeing Subaru in the reflection, mimicing his.;False;False;;;;1610555488;;False;{};gj4k1tr;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4k1tr/;1610619660;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Takamaru0;;;[];;;;text;t2_6iqy2mhp;False;False;[];;This is just arc 4. There will be a total of 11 arcs with probably each coming arc having it's own season.;False;False;;;;1610555492;;False;{};gj4k26f;False;t3_kwisv4;False;False;t1_gj4gwlu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4k26f/;1610619666;55;True;False;anime;t5_2qh22;;0;[]; -[];;;Assmeet123;;;[];;;;text;t2_4z85sldu;False;True;[];;"A friend asked me to write a review on the Web Novel chapter for this a few days ago so I was like ""Perfect timing, might as well post it on reddit after the episode's out.""";False;False;;;;1610555497;;False;{};gj4k2i9;False;t3_kwisv4;False;False;t1_gj4juo4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4k2i9/;1610619671;254;True;False;anime;t5_2qh22;;0;[]; -[];;;michalekemt;;;[];;;;text;t2_8ajebb3x;False;False;[];;suicide ratio of rem fans is out of scale;False;False;;;;1610555504;;False;{};gj4k31z;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4k31z/;1610619679;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Takamaru0;;;[];;;;text;t2_6iqy2mhp;False;False;[];;Not kono dio da;False;False;;;;1610555512;;False;{};gj4k3od;False;t3_kwisv4;False;False;t1_gj4iart;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4k3od/;1610619690;135;True;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;that's a lot of progression for a one episode;False;False;;;;1610555517;;False;{};gj4k44m;False;t3_kwisv4;False;False;t1_gj4dx84;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4k44m/;1610619697;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"I imagine he's smirking at us now. - -*""You thought Emilia was bland...well now you get the reason why""*";False;False;;;;1610555530;;False;{};gj4k54e;False;t3_kwisv4;False;False;t1_gj4j3rw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4k54e/;1610619713;112;True;False;anime;t5_2qh22;;0;[]; -[];;;SolubilityRules;;;[];;;;text;t2_2lolx4d;False;False;[];;"> Subaru: If you don't want to, dodge. - -Me: **DAMN**. - -Rem would have exploded from this.";False;False;;;;1610555550;;False;{};gj4k6oj;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4k6oj/;1610619736;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;False;[];;Otto will keep moving forward.;False;False;;;;1610555558;;False;{};gj4k7cr;False;t3_kwisv4;False;False;t1_gj4if2v;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4k7cr/;1610619747;1009;True;False;anime;t5_2qh22;;0;[]; -[];;;michalekemt;;;[];;;;text;t2_8ajebb3x;False;False;[];;who want to marry a plant ? Lmaooo;False;False;;;;1610555568;;False;{};gj4k85l;False;t3_kwisv4;False;True;t1_gj4h8dk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4k85l/;1610619760;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Even the other NPCs think Otto stealing their girls.;False;False;;;;1610555569;;False;{};gj4k86l;False;t3_kwisv4;False;False;t1_gj4izj1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4k86l/;1610619761;16;True;False;anime;t5_2qh22;;0;[]; -[];;;AstroZex;;;[];;;;text;t2_t3bn1;False;False;[];;Man, seeing Subaru finally have his first kiss with Emilia made me scream like a little girl. I always was a #TeamEmilia guy and after almost 5 years of being a supporter, it melts my heart the kiss and the passionate talk he and Emilia had. 10/10;False;False;;;;1610555569;;False;{};gj4k88b;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4k88b/;1610619761;6;True;False;anime;t5_2qh22;;0;[]; -[];;;HarryPlopper94;;;[];;;;text;t2_x7fsj;False;False;[];;HELL YES!;False;False;;;;1610555583;;False;{};gj4k9c5;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4k9c5/;1610619780;1;True;False;anime;t5_2qh22;;0;[]; -[];;;magical-grill;;;[];;;;text;t2_box4k85;False;False;[];;Subaru straight up copied Rem's confession format as well I feel;False;False;;;;1610555590;;False;{};gj4k9vc;False;t3_kwisv4;False;False;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4k9vc/;1610619788;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Charizard-X;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/CharizardX;light;text;t2_13s3vf;False;False;[];;You had a chance to not look like an idiot before posting this comment, but here we are now;False;False;;;;1610555597;;False;{};gj4kado;False;t3_kwisv4;False;False;t1_gj4jloq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kado/;1610619795;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Lj_theoneandonly;;;[];;;;text;t2_397ii7v4;False;False;[];;Does anyone know what Otto wrote on his letter to his mom? (The streaming service I watched didn’t translate it);False;False;;;;1610555598;;False;{};gj4kag6;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kag6/;1610619796;1;True;False;anime;t5_2qh22;;0;[]; -[];;;8andahalfby11;;MAL;[];;https://myanimelist.net/animelist/thereIwasnt;dark;text;t2_kvyfg;False;False;[];;"I want to believe, but we're on Episode 15 of 25. Has the save point been moved up yet? - -I'd feel safer once we get this moved into non-volatile memory.";False;False;;;;1610555598;;1610562356.0;{};gj4kah8;False;t3_kwisv4;False;False;t1_gj4cvol;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kah8/;1610619797;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610555599;;False;{};gj4kajm;False;t3_kwisv4;False;False;t1_gj4dc14;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kajm/;1610619798;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Yuriy116;;;[];;;;text;t2_4zw79dsa;False;False;[];;[My reaction as a Dona fan](https://i.ytimg.com/vi/ShA3HW76rj4/maxresdefault.jpg);False;False;;;;1610555626;;False;{};gj4kcpx;False;t3_kwisv4;False;False;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kcpx/;1610619831;96;True;False;anime;t5_2qh22;;0;[]; -[];;;magical-grill;;;[];;;;text;t2_box4k85;False;False;[];;But what a pleasant surprise;False;False;;;;1610555626;;False;{};gj4kcqg;False;t3_kwisv4;False;True;t1_gj4gg94;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kcqg/;1610619832;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Pollsmor;;;[];;;;text;t2_pvhag;False;False;[];;I'm curious what made Ram so much more powerful this time around. Last thing she fought Garf we didn't see how it went but presumably Ram met a horrible end. This time around she's basically toying with Garf.;False;False;;;;1610555630;;False;{};gj4kd12;False;t3_kwisv4;False;False;t1_gj4e8xe;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kd12/;1610619837;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Redo-Master;;;[];;;;text;t2_7yfxxyjj;False;False;[];;Okay this is one of my favourite episodes so far and I absolutely loved it...!! Otto you madlad...!! Took on freaking Garfiel..! My respect for him is now grown even more and he's the best boy of the season. Sad to hear about his backstory but their is more to his character than met the eye...unlike Subaru he has always cherished his life and was bound by the same rule which Subaru has to follow and that is to control his powers so that others can't misuse him as a tool. The confession scene was so wholesome and full of emotions I never expected that he will make the move..! He has become the Chad..! Looks like next episode will finally settle the conflict between Subaru and Garfiel...man Re:Zero being Re:Zero and evolving with each episode and I'm sooo hyped for the next one...!!!;False;False;;;;1610555635;;False;{};gj4kddk;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kddk/;1610619841;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Chid_London-6550;;;[];;;;text;t2_7nr5tp3s;False;False;[];;"Subaru's love for Emilia scares me, it is so intense and sometimes intimidating. It fascinates me to love someone so much it physically hurt, that you are willing to die for them, to accept their flaws and still love them. It is truly fascinating, for lack of a better word it is true love. - -Subaru and Emilia's VA did an amazing job, you could feel the pain and the emotion in this scene, it was so engaging to watch. Finally, Subaru was able to redo his kiss with Emilia. - -Otto better survives, he is becoming one of my favourite characters in this show. -**Re:zero never fails to impress**";False;False;;;;1610555662;;False;{};gj4kfil;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kfil/;1610619876;58;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Not very eloquent but its nice of Subaru.;False;False;;;;1610555672;;False;{};gj4kg7x;False;t3_kwisv4;False;False;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kg7x/;1610619886;988;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610555683;;False;{};gj4kh42;False;t3_kwisv4;False;True;t1_gj4epn8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kh42/;1610619900;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610555687;;False;{};gj4khg0;False;t3_kwisv4;False;True;t1_gj4denl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4khg0/;1610619905;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610555698;;False;{};gj4kid4;False;t3_kwisv4;False;True;t1_gj4fgsp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kid4/;1610619920;1;True;False;anime;t5_2qh22;;0;[]; -[];;;michalekemt;;;[];;;;text;t2_8ajebb3x;False;False;[];;Emilia and Subaru kiss was precious. Best couple for sure.;False;False;;;;1610555716;;False;{};gj4kjrh;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kjrh/;1610619942;9;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;I was expecting a hype episode. This was a good episode, just very different to what I was expecting lol.;False;False;;;;1610555719;;False;{};gj4kjzp;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kjzp/;1610619946;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Pollsmor;;;[];;;;text;t2_pvhag;False;False;[];;"He did say earlier in the season that he loves Emilia and Rem equally. It's not all doom and gloom for Rem fans. - -*sukisukisukisukisukisukisuki* - -edit: may I also point out the poetry here. - -S1E15 Rem shows her unconditional love for Subaru by telling him ""I love you"" with her dying breath. - -S2E15, Subaru shows her unconditional love for Emilia by telling her ""I love you"" multiple times. Too many to count.";False;False;;;;1610555724;;1610556815.0;{};gj4kkez;False;t3_kwisv4;False;False;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kkez/;1610619952;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Any-Nothing;;;[];;;;text;t2_4h46mqdo;False;False;[];;'Cause they haven't appeared enough time;False;False;;;;1610555740;;False;{};gj4klp2;False;t3_kwisv4;False;False;t1_gj4dvoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4klp2/;1610619973;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Simp4Satella;;;[];;;;text;t2_95im9vat;False;False;[];;Exactly. I’ve definitely had a few of Emilia’s lines (or variations on them) thrown at me in the past lol.;False;False;;;;1610555741;;False;{};gj4klsd;False;t3_kwisv4;False;False;t1_gj4jrh0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4klsd/;1610619974;274;True;False;anime;t5_2qh22;;0;[]; -[];;;Schlemmes;;;[];;;;text;t2_3fc31txe;False;False;[];;"Okay Re:Zero was always my favourite anime but this really prove it to me again. Also I am a madlad and counted how often Subaru told Emilia he loves her - -I love you - Count: 18 (Counted all times he used ""suki"")";False;False;;;;1610555743;;1610576285.0;{};gj4klyd;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4klyd/;1610619978;126;True;False;anime;t5_2qh22;;0;[]; -[];;;GonvVasq;;;[];;;;text;t2_c4mzn;False;False;[];;They're gonna have to do the same for the OP for this part too lmao;False;False;;;;1610555769;;False;{};gj4ko0q;False;t3_kwisv4;False;False;t1_gj4h5s8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ko0q/;1610620011;13;True;False;anime;t5_2qh22;;0;[]; -[];;;thxelijah;;;[];;;;text;t2_2ef9uta8;False;False;[];;He will, which is why he promises to her that he’ll still love her. He’s not going to give up on his love because she has her old memories back, and her having her memories back doesn’t make her into a completely different person. In a way it’s kind of backwards. People grow and learn from experiences, and sometimes it makes relationships fall out, sometimes it makes relationships even closer than before. Subaru being confident that he will still lover her is something anyone would say. Because he loves her right now, he thinks he will lover her no matter what.;False;False;;;;1610555774;;False;{};gj4koej;False;t3_kwisv4;False;False;t1_gj4jtnq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4koej/;1610620017;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610555780;;False;{};gj4kox8;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kox8/;1610620026;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thecomicguybook;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Comicman;light;text;t2_cfb58;False;False;[];;"That's a lot of deaths that Subaru still has to look forward to. - -[](#ptsd)";False;False;;;;1610555783;;False;{};gj4kp5z;False;t3_kwisv4;False;False;t1_gj4k26f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kp5z/;1610620029;75;True;False;anime;t5_2qh22;;0;[]; -[];;;Combo33;;MAL a-1milquiz;[];;http://myanimelist.net/animelist/bcom33;dark;text;t2_a15ep;False;False;[];;To be fair, like the first 10 reasons he said he's in love with her all involved her physical appearance, so unless that changes, it's fair of him to think he'll continue loving her.;False;False;;;;1610555795;;False;{};gj4kq2b;False;t3_kwisv4;False;False;t1_gj4gkjy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kq2b/;1610620042;10;True;False;anime;t5_2qh22;;0;[]; -[];;;nsa_official2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Ginsan2802;light;text;t2_6f0bmz9o;False;False;[];;Man what a time to watch this episode, just got a brand new 55 inches 4k TV today and this was the first episode I watched in it after years of watching animes in my laptop and phone.;False;False;;;;1610555801;;False;{};gj4kqld;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kqld/;1610620049;2;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;Tbh hype for the fanbase of Re:Zero can be something like episode 15 or something like episode 18, they are so different from each other lol.;False;False;;;;1610555805;;False;{};gj4kqz7;False;t3_kwisv4;False;False;t1_gj4kjzp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kqz7/;1610620055;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Yuriy116;;;[];;;;text;t2_4zw79dsa;False;False;[];;"Just had a thought... - -*What if Otto meets the Rabbit?*";False;False;;;;1610555852;;False;{};gj4kuut;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kuut/;1610620115;14;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610555856;;False;{};gj4kv6c;False;t3_kwisv4;False;True;t1_gj4kp5z;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kv6c/;1610620120;15;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;That Otto could ear noise everywhere and couldn't escape it.;False;False;;;;1610555857;;False;{};gj4kv7x;False;t3_kwisv4;False;True;t1_gj4kag6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kv7x/;1610620121;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;"So this is the beginning of chadbaru... - -Seriously though, never thought I'd like subaru back in season 1, his development has been very good!";False;False;;;;1610555859;;False;{};gj4kvev;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kvev/;1610620123;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Any-Nothing;;;[];;;;text;t2_4h46mqdo;False;False;[];;Hope Otto and Ram are fine;False;False;;;;1610555873;;False;{};gj4kwif;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kwif/;1610620141;2;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Shows the Silver Award... and that's it."", 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'icon_width': 512, 'id': 'gid_1', 'is_enabled': True, 'is_new': False, 'name': 'Silver', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}, {'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Staring into the abyss and it's staring right back"", 'end_date': None, 'giver_coin_reward': 0, 'icon_format': 'PNG', 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/nvfe4gyawnf51_Dread.png', 'icon_width': 2048, 'id': 'award_81cf5c92-8500-498c-9c94-3e4034cece0a', 'is_enabled': True, 'is_new': False, 'name': 'Dread', 'penny_donate': 0, 'penny_price': 0, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/nvfe4gyawnf51_Dread.png?width=16&height=16&auto=webp&s=5ef2e0d3bc325a7e1fb2d22c1fec1e6b4b6fc745', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/nvfe4gyawnf51_Dread.png?width=32&height=32&auto=webp&s=4932a768430215109c262c88950bcba46e9e1b23', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/nvfe4gyawnf51_Dread.png?width=48&height=48&auto=webp&s=287f90bae451c50dfa5076e5e70c30f7396421b2', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/nvfe4gyawnf51_Dread.png?width=64&height=64&auto=webp&s=4313a1836086f33447b60d11d3d16cf2c57d20de', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/nvfe4gyawnf51_Dread.png?width=128&height=128&auto=webp&s=b32edce435e22d111c10cdebeefd2e49ece8b6e4', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/nvfe4gyawnf51_Dread.png?width=16&height=16&auto=webp&s=5ef2e0d3bc325a7e1fb2d22c1fec1e6b4b6fc745', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/nvfe4gyawnf51_Dread.png?width=32&height=32&auto=webp&s=4932a768430215109c262c88950bcba46e9e1b23', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/nvfe4gyawnf51_Dread.png?width=48&height=48&auto=webp&s=287f90bae451c50dfa5076e5e70c30f7396421b2', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/nvfe4gyawnf51_Dread.png?width=64&height=64&auto=webp&s=4313a1836086f33447b60d11d3d16cf2c57d20de', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/nvfe4gyawnf51_Dread.png?width=128&height=128&auto=webp&s=b32edce435e22d111c10cdebeefd2e49ece8b6e4', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/nvfe4gyawnf51_Dread.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;anti_spiral;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/spiral;light;text;t2_olevi;False;False;[];;[:)](https://i.imgur.com/m0YXV3p.jpg);False;False;;;;1610555875;;False;{'gid_1': 1};gj4kwp3;False;t3_kwisv4;False;False;t1_gj4ggdc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kwp3/;1610620144;699;True;False;anime;t5_2qh22;;2;[]; -[];;;MidnightShout;;;[];;;;text;t2_d1c34;False;False;[];;Please don't let him die and return to a useless checkpoint. Please.;False;False;;;;1610555877;;False;{};gj4kwv1;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kwv1/;1610620147;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BasicallyMogar;;;[];;;;text;t2_m46r2;False;False;[];;"""A man with extremely good timing"" is such a perfect way to think of Suburu in-universe.";False;False;;;;1610555884;;False;{};gj4kxf9;False;t3_kwisv4;False;False;t1_gj4gqtd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kxf9/;1610620155;193;True;False;anime;t5_2qh22;;0;[]; -[];;;123475899573;;;[];;;;text;t2_9p0vjg3z;False;False;[];;He said it himself in this episodes he himself also don’t want all this suffering but he can’t help but help her;False;False;;;;1610555886;;False;{};gj4kxmn;False;t3_kwisv4;False;False;t1_gj4jybq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kxmn/;1610620158;41;True;False;anime;t5_2qh22;;0;[]; -[];;;Yuriy116;;;[];;;;text;t2_4zw79dsa;False;False;[];;Sure thing, Shinji;False;False;;;;1610555893;;False;{};gj4ky6v;False;t3_kwisv4;False;False;t1_gj4jn6v;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ky6v/;1610620168;179;True;False;anime;t5_2qh22;;0;[]; -[];;;Takamaru0;;;[];;;;text;t2_6iqy2mhp;False;False;[];;">rabbits - -Oh shit";False;False;;;;1610555903;;False;{};gj4kyz4;False;t3_kwisv4;False;False;t1_gj4in3u;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4kyz4/;1610620181;420;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackcore8;;;[];;;;text;t2_xusnp;False;False;[];;Subaru vs Garf next episode!? OMG this is gonna be even more hype!!;False;False;;;;1610555923;;False;{};gj4l0ml;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4l0ml/;1610620205;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Megamoncha;;;[];;;;text;t2_eyueb;False;False;[];;"Ram: ""He has surprisingly good timing."" - -Suburu: ""Thus begins my chad phase.""";False;False;;;;1610555931;;False;{};gj4l18g;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4l18g/;1610620215;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lj_theoneandonly;;;[];;;;text;t2_397ii7v4;False;False;[];;Thank you!;False;False;;;;1610555935;;False;{};gj4l1jv;False;t3_kwisv4;False;True;t1_gj4kv7x;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4l1jv/;1610620219;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Takamaru0;;;[];;;;text;t2_6iqy2mhp;False;False;[];;If they sasageo, then we return by de-;False;False;;;;1610555948;;False;{};gj4l2kw;False;t3_kwisv4;False;False;t1_gj4dv2d;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4l2kw/;1610620236;16;True;False;anime;t5_2qh22;;0;[]; -[];;;SpaceStuff;;;[];;;;text;t2_9fv41;False;False;[];;"That ""yeah"" from Emilia towards the end... made my heart melt.";False;False;;;;1610555956;;False;{};gj4l36v;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4l36v/;1610620245;4;True;False;anime;t5_2qh22;;0;[]; -[];;;PM_ME_UR_GCC_ERRORS;;;[];;;;text;t2_kj1nh;False;False;[];;Ah, so each episode adapts exactly one chapter.;False;False;;;;1610556002;;False;{};gj4l6s4;False;t3_kwisv4;False;False;t1_gj4k2i9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4l6s4/;1610620303;56;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;False;[];;"Maybe my opinion will change as the season progresses but their current relationship feels really one sided. Subaru's response to Emilia calling herself useless and what if she changes once her memories come back is ""Because I love you and love conquers all"".";False;False;;;;1610556016;;False;{};gj4l7xw;False;t3_kwisv4;False;False;t1_gj4jmyo;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4l7xw/;1610620321;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610556026;;False;{};gj4l8sj;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4l8sj/;1610620334;4;True;False;anime;t5_2qh22;;0;[];True -[];;;Pitiful_Alps_6246;;;[];;;;text;t2_7xhshv1s;False;False;[];; They weren't kidding when they called him Chadbaru didn't they...;False;False;;;;1610556027;;False;{};gj4l8uv;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4l8uv/;1610620335;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610556033;;False;{};gj4l9c3;False;t3_kwisv4;False;True;t1_gj4kag6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4l9c3/;1610620342;0;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Otto aka Mr. Steal Your Girl;False;False;;;;1610556038;;False;{};gj4l9pn;False;t3_kwisv4;False;True;t1_gj4j52o;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4l9pn/;1610620349;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;False;[];;*Oh no, what a nightmare!*;False;False;;;;1610556042;;False;{};gj4la2d;False;t3_kwisv4;False;False;t1_gj4grrr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4la2d/;1610620354;35;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;"[Otto's friends really made my skin crawl.](https://i.imgur.com/bDgf9T3.png) it's probably not a big deal for Garf but I definitely would've just collapsed after being swarmed by that many insects. - -Finally we're getting some backstory for our best bro! [Just look at how cute smol Otto is!](https://i.imgur.com/z2gkN9l.png) Also we know already about his ability to speak with animals right from the previous season right? Or am I mistaking this knowledge with something LN readers have spoiled me with? - - -Anyone knows what [that letter Otto wrote for his mom](https://i.imgur.com/RKkXVul.png) means? The impact of that scene was a bit lessened without knowing what that note was about. - - -[So it wasn't until he was 10](https://i.imgur.com/mK3k6vH.png) when he finally actually started to know what the animals and insects were saying. Looks like that power has brought him nothing but problems from [bringing in a plague of Zodda bugs](https://i.imgur.com/AQgG1z3.png) to outing the daughter of the most powerful person [in town as a floozie.](https://i.imgur.com/SizjlkE.png) - -[And we actually finally got to see how Otto was captured by Petelgeuse](https://i.imgur.com/diS5Msg.png) and the rest of the Witch Cultists up until [he was rescued by Ricardo](https://i.imgur.com/RzfwkWG.png) during Subaru's operation against Petelgeuse. - -[Hearing Realize play with Otto's nose bleeding](https://i.imgur.com/dYZjxvO.png) and him clearly at his limit had me scared. He put up a decent fight [using those bombs](https://i.imgur.com/mcYC1Da.png) against Garf but thank fucking god [Ram arrived when she did.](https://i.imgur.com/FgsmP5J.png) And holy fuck even with Garf transformed, Ram put up on hell of a fight [and gave Garf the good ol' **ORA ORA ORA ORA ORA**!](https://i.imgur.com/gfqIxpx.png) - - -And I was just absolutely speechless the entire time during Subaru and Emilia's argument. At first, with the way things were going and how Subaru was saying [how much he loves Emilia](https://i.imgur.com/6c4m9wV.png), it was clearly heading the direction of Rem's speech in season 1. [Then Emilia got angry](https://i.imgur.com/otZe7pL.png) and this is where the Rem speech comparisons stopped in my head. - -Emilia who's very much clouded in all sorts of negative feelings with Puck leaving, her memories coming back, Subaru breaking his promise and leaving in the middle of the night, and all sorts of responsibilities that she can't seem to fulfill is getting angry and pushing that Subaru can't love someone like her while Subaru keeps on insisting just because she's a mess doesn't mean he can't love her. The entire thing explodes into a full blown argument where neither side backs down. - -And then, it finally fucking happened. Subaru tells Emilia if she really doesn't believe that he loves her she can dodge it, [then we see what Subaru was talking about!](https://i.imgur.com/DqikBrV.png) Goddamn Subaru! I was just stunned during that scene! It finally happened! A genuine kiss between Emilia and Subaru happened! - - -[](#akyuusqueel) - - I'm definitely one of the biggest Rem fanboys in this sub but even I know how great that scene was. It's just absolutely brilliant! With Emilia now back up thanks to the kiss and [wise words from Naoko as said by Subaru](https://i.imgur.com/udWow4J.png), where do we go next? I guess we start confronting [a bloodied Garf waiting for them outside](https://i.imgur.com/oEUOJlo.png). Can't wait for next week!";False;False;;;;1610556058;;False;{};gj4lbc3;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4lbc3/;1610620375;10;True;False;anime;t5_2qh22;;0;[]; -[];;;goodcharactersonly;;;[];;;;text;t2_9sxqb0at;False;False;[];;who wants marry a plant ? Lmaoo;False;False;;;;1610556059;;False;{};gj4lbce;False;t3_kwisv4;False;False;t1_gj4h8dk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4lbce/;1610620375;5;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;I guess he will hear the rabbit repeating it's hungry. I don't think the rabbit has anything other than hunger in its personality.;False;False;;;;1610556068;;False;{};gj4lc2y;False;t3_kwisv4;False;False;t1_gj4kuut;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4lc2y/;1610620386;18;True;False;anime;t5_2qh22;;0;[]; -[];;;RobotiSC;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RobotiSC;light;text;t2_ln04nnp;False;False;[];;"White fox be like: - -Fans in part 1: we want realise! -White fox: ... - -Fans in part 2: we want long shot! -White fox: Did you say realise?";False;False;;;;1610556073;;False;{};gj4lchy;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4lchy/;1610620393;161;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;False;[];;I don't blame her. The cat she left him for had big Chad energy.;False;False;;;;1610556078;;False;{};gj4lcwu;False;t3_kwisv4;False;False;t1_gj4fb40;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4lcwu/;1610620399;915;True;False;anime;t5_2qh22;;0;[]; -[];;;MauledCharcoal;;;[];;;;text;t2_1uu3nanq;False;False;[];;The vocal minority in 2016 was pretty vocal and pretty big for a minority. They either outright detested Emilia or they would argue that she had no chemistry at all with Subaru.;False;False;;;;1610556079;;False;{};gj4lczj;False;t3_kwisv4;False;True;t1_gj4jpuz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4lczj/;1610620401;3;True;False;anime;t5_2qh22;;0;[]; -[];;;inuttet123;;;[];;;;text;t2_3wsc6fnl;False;False;[];;Shhhh they don't know how elves work;False;False;;;;1610556120;;False;{};gj4lgb8;False;t3_kwisv4;False;False;t1_gj4hwds;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4lgb8/;1610620454;531;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerfi29;;;[];;;;text;t2_1ticrp4w;False;False;[];;She don't k'ow what love means,;False;False;;;;1610556124;;False;{};gj4lgla;False;t3_kwisv4;False;True;t1_gj4gb40;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4lgla/;1610620458;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;False;[];;Talk about being regifted.;False;False;;;;1610556127;;False;{};gj4lgw6;False;t3_kwisv4;False;False;t1_gj4h4ae;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4lgw6/;1610620463;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"The dilemma that Emilia was concerned over was interesting reminded me of Golden time and Bunny girl senpai - -If a person looses her memories are they the same person? If Emilia's memories started resurfacing would that mean her personality would change accordingly or would the new memories add on the current self - -The constant fear of your consciousness or personality being overwritten by the past memories is real scary stuff as it blur the concept of ""I""";False;False;;;;1610556132;;False;{};gj4lhas;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4lhas/;1610620469;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610556135;;False;{};gj4lhi7;False;t3_kwisv4;False;True;t1_gj4kv6c;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4lhi7/;1610620472;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LeCoastGames;;;[];;;;text;t2_2lohctgx;False;False;[];;LETS GOOOOO;False;False;;;;1610556155;;False;{};gj4lj2w;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4lj2w/;1610620498;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610556171;;False;{};gj4lkgh;False;t3_kwisv4;False;True;t1_gj4lhi7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4lkgh/;1610620520;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SSR_Majinken;;;[];;;;text;t2_152dcz;False;False;[];;"This conversation between emilia and subaru felt like a perfect example of a simp. - It made me cringe not gonna lie.";False;True;;comment score below threshold;;1610556186;;False;{};gj4llmd;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4llmd/;1610620537;-24;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;They drop the new song on youtube tho, [Long Shot](https://www.youtube.com/watch?v=p8X5hG51jbA).;False;False;;;;1610556186;;False;{};gj4llnt;False;t3_kwisv4;False;False;t1_gj4iorm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4llnt/;1610620538;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;Fans realising WF is toying with them;False;False;;;;1610556192;;False;{};gj4lm3f;False;t3_kwisv4;False;False;t1_gj4lchy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4lm3f/;1610620544;14;True;False;anime;t5_2qh22;;0;[]; -[];;;indiewolf117;;;[];;;;text;t2_kh48x;False;False;[];;"I can't believe they glossed over the fact that Subaru has his own version of Emilia in his mind, even she said that she's not a doll. - -i don't know man, i'm just kind of put off with that";False;False;;;;1610556237;;False;{};gj4lpqx;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4lpqx/;1610620603;9;True;False;anime;t5_2qh22;;0;[]; -[];;;mrhades113;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/mrhades113;light;text;t2_1gn3pp;False;False;[];;Finally somebody said Emillia is a pain in the ass.;False;False;;;;1610556242;;False;{};gj4lq4q;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4lq4q/;1610620609;54;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"[It's patblocking](https://i.imgur.com/yrpldmz.jpg) - -[](#headpat)";False;False;;;;1610556250;;False;{};gj4lqqu;False;t3_kwisv4;False;False;t1_gj4ieeb;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4lqqu/;1610620618;68;True;False;anime;t5_2qh22;;0;[]; -[];;;heswet;;;[];;;;text;t2_delfs;False;False;[];;Wait so why are they fighting garf?;False;False;;;;1610556256;;False;{};gj4lrb3;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4lrb3/;1610620628;2;True;False;anime;t5_2qh22;;0;[]; -[];;;King_tiger2000;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Suffering Enthusiast ;dark;text;t2_31z7ch14;False;False;[];;"Otto. The boy makes me full of pride. - -I wonder what was written in that paper he gave his mom";False;False;;;;1610556267;;False;{};gj4ls6u;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ls6u/;1610620641;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;He always was.;False;False;;;;1610556277;;False;{};gj4lsyj;False;t3_kwisv4;False;True;t1_gj4hidc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4lsyj/;1610620652;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;False;[];;Yeah, you're right. It sounds superficial, he seems to like her appearance the most. Remember the scene of his room with all the figurines of characters with silver hair?;False;False;;;;1610556285;;False;{};gj4ltkv;False;t3_kwisv4;False;False;t1_gj4kq2b;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ltkv/;1610620661;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;False;[];;Put into practice the lesson, that seems fair.;False;False;;;;1610556286;;1610556497.0;{};gj4ltlw;False;t3_kwisv4;False;False;t1_gj4hhym;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ltlw/;1610620662;43;True;False;anime;t5_2qh22;;0;[]; -[];;;MauledCharcoal;;;[];;;;text;t2_1uu3nanq;False;False;[];;Otto is the true sufferer of this series.;False;False;;;;1610556310;;False;{};gj4lvkm;False;t3_kwisv4;False;False;t1_gj4ggdc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4lvkm/;1610620691;16;True;False;anime;t5_2qh22;;0;[]; -[];;;reprogramally;;;[];;;;text;t2_5pj2bpdf;False;True;[];;After a long battle, we finally win;False;False;;;;1610556315;;False;{};gj4lvza;False;t3_kwisv4;False;True;t1_gj4djlk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4lvza/;1610620697;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Assmeet123;;;[];;;;text;t2_4z85sldu;False;True;[];;Well, this was only for the second half of the episode which was roughly 10minutes and the anime is adapted from the Light Novel instead of the Web Novel so not quite.;False;False;;;;1610556316;;False;{};gj4lw20;False;t3_kwisv4;False;False;t1_gj4l6s4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4lw20/;1610620698;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"How is it compared to your laptop is it as sharp as your laptop? - -I always thought up scaling wouldn't be good as anime is usually produced at 720p";False;False;;;;1610556375;;False;{};gj4m0vt;False;t3_kwisv4;False;True;t1_gj4kqld;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4m0vt/;1610620772;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SolubilityRules;;;[];;;;text;t2_2lolx4d;False;False;[];;Inb4 Subaru accepts death willingly so he could french kiss Emilia next time;False;False;;;;1610556375;;False;{};gj4m0wt;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4m0wt/;1610620773;4;True;False;anime;t5_2qh22;;0;[]; -[];;;inuttet123;;;[];;;;text;t2_3wsc6fnl;False;False;[];;Well if this loop stays then it will be the first kiss physically;False;False;;;;1610556385;;False;{};gj4m1n0;False;t3_kwisv4;False;True;t1_gj4ihrk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4m1n0/;1610620783;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;The episode adapts multiple chapters since we see Otto's backstory here. LN and WN readers already knew where this moment would be so reviews were ready;False;False;;;;1610556401;;False;{};gj4m2xv;False;t3_kwisv4;False;False;t1_gj4l6s4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4m2xv/;1610620804;87;True;False;anime;t5_2qh22;;0;[]; -[];;;reprogramally;;;[];;;;text;t2_5pj2bpdf;False;True;[];;"You finally did, Subaru. You finally did.... awesome - - -And Otto best boy";False;False;;;;1610556471;;False;{};gj4m8bm;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4m8bm/;1610620887;2;True;False;anime;t5_2qh22;;0;[]; -[];;;oogieogie;;;[];;;;text;t2_607w7;False;False;[];;you're the best..around! nothing going to ever keep you down!;False;False;;;;1610556474;;False;{};gj4m8k3;False;t3_kwisv4;False;False;t1_gj4grrr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4m8k3/;1610620890;20;True;False;anime;t5_2qh22;;0;[]; -[];;;mattphatt98;;;[];;;;text;t2_2ozr0vhl;False;False;[];;what an amazing way to put things into words, thank you for this.;False;False;;;;1610556475;;False;{};gj4m8nv;False;t3_kwisv4;False;False;t1_gj4eeoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4m8nv/;1610620892;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;False;[];;"[Domestic Girlfriend](/s ""You can still win while being in a coma."")";False;False;;;;1610556481;;False;{};gj4m98g;False;t3_kwisv4;False;False;t1_gj4grrr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4m98g/;1610620902;328;True;False;anime;t5_2qh22;;0;[]; -[];;;herrkamink;;MAL;[];;http://myanimelist.net/animelist/herrkamink;dark;text;t2_dylpz;False;False;[];;I feel like for people who can/feel see all this what you wrote while watching/reading it is really amazing and one of the high points of the series - but for me personally I felt kind of weird watching it to be honest and made the latter half of the episode very contentless for me. Not saying that I think it was bad, just kind of weird to me personally - maybe it's because it feels like such an unrelatable and alien concept/relationship thing to me.;False;False;;;;1610556491;;False;{};gj4ma12;False;t3_kwisv4;False;False;t1_gj4eeoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ma12/;1610620915;13;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610556494;;False;{};gj4ma87;False;t3_kwisv4;False;True;t1_gj4lc2y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4ma87/;1610620918;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ahegao_Double_Peace;;;[];;;;text;t2_2ix6z8u2;False;False;[];;I am ashamed to say I paused the fight scenes to stare at Ram's armpits and slender legs. Truly, she is the superior Oni.;False;False;;;;1610556507;;False;{};gj4mb88;False;t3_kwisv4;False;False;t1_gj4flhp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4mb88/;1610620933;12;True;False;anime;t5_2qh22;;0;[]; -[];;;shakeniki;;;[];;;;text;t2_44co5dol;False;False;[];;"Looks like Subaru found the way to cheering up people from Rem. -Telling every parts of Emilia he likes just like Rem did in S1. -What a Chad 🤣";False;False;;;;1610556507;;False;{};gj4mb9f;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4mb9f/;1610620934;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Quantam-Law;;;[];;;;text;t2_2ghiedjn;False;False;[];;If anybody says Subaru is still a simp then they have problems with reading comprehension.;False;False;;;;1610556533;;False;{};gj4md8f;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4md8f/;1610620964;51;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"It's the same as Rem saying that Subaru cannot see the Subaru that Rem can see. - -It was not meant to put her in a pedestal, he is aware of her flaws.";False;False;;;;1610556541;;False;{};gj4mduu;False;t3_kwisv4;False;False;t1_gj4lpqx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4mduu/;1610620973;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Idoma_Sas_Ptolemy;;;[];;;;text;t2_u4qfz;False;False;[];;"seeing ottos power in action is really interesting. - -That begs one question, though. During the loop where he kicked subaru off the wagon, did he hear the whales voice and freaked out because of what it said? - -On another note, the confessargument felt a lot like rems speech, just that emilias walls were even harder to break than subarus self-deprecation. Quite the beautiful scene, quite the beautiful kiss. And it's great to see that subarus perception of emilia has become much more healthy and realistic compared to season one. - -He finally see's **her** and not the idolized version of hers he was chasing after.";False;False;;;;1610556546;;False;{};gj4me93;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4me93/;1610620980;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610556549;;False;{};gj4megw;False;t3_kwisv4;False;True;t1_gj4ja3z;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4megw/;1610620983;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FlappyLyST;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;You don't know anything about Suffering!;dark;text;t2_7vw1iw4f;False;False;[];;They don't know the truth about him...;False;False;;;;1610556558;;False;{};gj4mf5k;False;t3_kwisv4;False;False;t1_gj4kxf9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4mf5k/;1610620993;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Jackson_Simmons;;;[];;;;text;t2_wyrsw;False;False;[];;From the way these 2 episodes this season have gone so far, I think that this is finally the loop that will settle this current arc;False;False;;;;1610556591;;False;{};gj4mhq2;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4mhq2/;1610621034;10;True;False;anime;t5_2qh22;;0;[]; -[];;;psshpsshpuff;;;[];;;;text;t2_74gxnhfp;False;False;[];;that's the only reason he was given this power;False;False;;;;1610556596;;False;{};gj4mi5b;False;t3_kwisv4;False;True;t1_gj4gvar;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4mi5b/;1610621041;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NemuNemuChan;;;[];;;;text;t2_36u9ttad;False;False;[];;Dude we're in a pandemic.;False;False;;;;1610556602;;False;{};gj4mim2;False;t3_kwisv4;False;True;t1_gj4jloq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4mim2/;1610621049;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;FlappyLyST;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;You don't know anything about Suffering!;dark;text;t2_7vw1iw4f;False;False;[];;"Rem: ""This is fine...""";False;False;;;;1610556643;;False;{};gj4mlt7;False;t3_kwisv4;False;False;t1_gj4ja3z;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4mlt7/;1610621099;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Aerohed;;;[];;;;text;t2_xjmyo;False;False;[];;"I know, I mean ""hear it in the show"".";False;False;;;;1610556644;;False;{};gj4mlw9;False;t3_kwisv4;False;True;t1_gj4llnt;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4mlw9/;1610621101;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerfi29;;;[];;;;text;t2_1ticrp4w;False;False;[];;What lol;False;False;;;;1610556647;;False;{};gj4mm53;False;t3_kwisv4;False;True;t1_gj4i8kg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4mm53/;1610621104;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rogue_user0826;;;[];;;;text;t2_9no159c7;False;False;[];;Man it was a glorious episode, from our best boy Otto's back story to Subaru and EMT's first kiss. It was all PERFECT;False;False;;;;1610556663;;False;{};gj4mngs;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4mngs/;1610621126;14;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;That Otto heard noise everywhere and couldn't escape it.;False;False;;;;1610556665;;False;{};gj4mnl0;False;t3_kwisv4;False;False;t1_gj4ls6u;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4mnl0/;1610621128;5;True;False;anime;t5_2qh22;;0;[]; -[];;;nsa_official2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Ginsan2802;light;text;t2_6f0bmz9o;False;False;[];;It looked gorgeous and was sharp enough for me;False;False;;;;1610556673;;False;{};gj4mo7o;False;t3_kwisv4;False;True;t1_gj4m0vt;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4mo7o/;1610621138;2;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;Because he is against getting the sanctuary free and Subaru has no time to convince him to help him like the first loop ( it took 3 days ), so taking him out is the fastest way.;False;False;;;;1610556703;;False;{};gj4mqmc;False;t3_kwisv4;False;False;t1_gj4lrb3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4mqmc/;1610621174;10;True;False;anime;t5_2qh22;;0;[]; -[];;;lookw;;;[];;;;text;t2_floum;False;False;[];;">That begs one question, though. During the loop where he kicked subaru off the wagon, did he hear the whales voice and freaked out because of what it said? - -pretty much. once he did he also felt considerable guilt and told his ground dragon to go back for subaru but was taken out by the witches cult before he returned.";False;False;;;;1610556732;;False;{};gj4mszg;False;t3_kwisv4;False;False;t1_gj4me93;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4mszg/;1610621209;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;Hence the Sloth IF is my headcanon;False;True;;comment score below threshold;;1610556734;;False;{};gj4mt6p;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4mt6p/;1610621212;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;shiroharu_aoi;;;[];;;;text;t2_zkuhf;False;False;[];;I think this might be the run bois;False;False;;;;1610556754;;False;{};gj4muq7;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4muq7/;1610621236;2;True;False;anime;t5_2qh22;;0;[]; -[];;;goodcharactersonly;;;[];;;;text;t2_9sxqb0at;False;False;[];;Subaru and Emilia kiss was precious.The best couple in anime for sure.;False;False;;;;1610556755;;False;{};gj4mus8;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4mus8/;1610621237;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Idoma_Sas_Ptolemy;;;[];;;;text;t2_u4qfz;False;False;[];;Is it known what the whale said about subaru? In the LN, I mean.;False;False;;;;1610556796;;False;{};gj4my3o;False;t3_kwisv4;False;True;t1_gj4mszg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4my3o/;1610621289;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Seiterno;;;[];;;;text;t2_jf1fl7;False;False;[];;Me, Rem fan, beaten to pulp, barley standing, bleeding from every hole in my body : I DIDN'T HEAR THE BELL;False;False;;;;1610556815;;1610557039.0;{};gj4mzjj;False;t3_kwisv4;False;False;t1_gj4djlk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4mzjj/;1610621312;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;This is basically Season 2's Ep18 this loop gotta be it;False;False;;;;1610556834;;False;{};gj4n12r;False;t3_kwisv4;False;False;t1_gj4mhq2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4n12r/;1610621334;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610556836;;False;{};gj4n18q;False;t3_kwisv4;False;True;t1_gj4lrb3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4n18q/;1610621337;1;True;False;anime;t5_2qh22;;0;[]; -[];;;King_tiger2000;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Suffering Enthusiast ;dark;text;t2_31z7ch14;False;False;[];;Thank you o kind soul for the answer;False;False;;;;1610556841;;False;{};gj4n1o8;False;t3_kwisv4;False;True;t1_gj4mnl0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4n1o8/;1610621343;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jtpaynter18;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/jtpaynter18;light;text;t2_14nqhv;False;False;[];;Rem added, “She’s so good,” repeating it four times.;False;False;;;;1610556845;;False;{};gj4n20h;False;t3_kwisv4;False;False;t1_gj4jzbq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4n20h/;1610621348;462;True;False;anime;t5_2qh22;;0;[]; -[];;;newreddituserlul;;;[];;;;text;t2_67rj4t75;False;False;[];;I agree, maybe the checkpoint will get updated or something but I’m leaning more towards this being a successful loop.;False;False;;;;1610556865;;False;{};gj4n3lo;False;t3_kwisv4;False;False;t1_gj4mhq2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4n3lo/;1610621372;4;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;But ~~we~~ Subaru still *love* her.;False;False;;;;1610556874;;False;{};gj4n4at;False;t3_kwisv4;False;False;t1_gj4lq4q;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4n4at/;1610621382;36;True;False;anime;t5_2qh22;;0;[]; -[];;;BasicallyMogar;;;[];;;;text;t2_m46r2;False;False;[];;Yep. Even still, it's right on the money. If you only see the results of his work, the man seems to just always be exactly where he needs to be, pushing the right buttons and figuring out the right things to get the best results despite being the least impressive person in any given room. Dude was kicked from the mansion and came back with having finagled an alliance with two other candidates, used them to slay the whale, and was ready to save everyone from the witch cult. If that's not impressively good timing I don't know what is.;False;False;;;;1610556897;;False;{};gj4n68e;False;t3_kwisv4;False;False;t1_gj4mf5k;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4n68e/;1610621413;79;True;False;anime;t5_2qh22;;0;[]; -[];;;DokiDokiDoIt;;;[];;;;text;t2_4rshs03i;False;False;[];;Must be a Monday cause Garfiel ain't looking so happy;False;False;;;;1610556934;;False;{};gj4n95g;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4n95g/;1610621455;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;True;[];;Re Zero and episode 15, name a more iconic duo;False;False;;;;1610556944;;False;{};gj4n9xh;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4n9xh/;1610621467;318;True;False;anime;t5_2qh22;;0;[]; -[];;;blue_no_kenshi;;;[];;;;text;t2_2j1pq0;False;False;[];;Can't wait for Emilia to start simping subaru!!!;False;False;;;;1610556983;;False;{};gj4nd08;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4nd08/;1610621514;2;True;False;anime;t5_2qh22;;0;[]; -[];;;noodlesandrice1;;;[];;;;text;t2_bt8zh;False;False;[];;"Gotta love the contrast between Subaru's speech here and Rem's in S1 ep 18. - -Nowhere near the amount of rationalization and introspection that went into From Zero. All we got was just pure raw emotion being hurled left and right. There was barely anything resembling a coherent conversation, but there didn't need to be one. - -Subaru had absolutely no reason to have faith in Emilia. For days on end he's only ever seen her fail, break down, and run away. The only thing keeping him with her was his feelings, but that alone was enough to fill in for everything else that was missing. - -Emilia was being crushed by the trial and years of emotions that had been repressed. She was trying to find a reason to push forward, but nothing so convenient was going to appear magically. She had to push forward herself to find that reason. So all she really needed was the reassurance that someone would unconditionally stay with her regardless of all her faults, and without needing any reason to.";False;False;;;;1610556985;;False;{};gj4nd8h;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4nd8h/;1610621517;9;True;False;anime;t5_2qh22;;0;[]; -[];;;SkywardQuill;;MAL;[];;http://myanimelist.net/animelist/SkywardQuill;dark;text;t2_fp41n;False;False;[];;I will never understand Subaru. But that's okay.;False;False;;;;1610557025;;False;{};gj4nghb;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4nghb/;1610621568;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Redmon425;;;[];;;;text;t2_15ro6h;False;False;[];;"OH MY GOD!! It happened. A real confession and then a kiss! I had no idea this was coming. - -Emilia is best girl, and that whole confession scene was done perfectly. Plus I love the end when she's thinking about her most precious feeling, and then Subaru appears in her eyes. - -But let's not sleep on Otto this episode as well. He really is the real MVP. Plus he is basically the first person to call out Ram about her tsundere-ish feelings for Subaru. That was super cute as well. - -Just another great episode. Feels good to see some romantic development for my fav girl and boy!!";False;False;;;;1610557034;;False;{};gj4nh8c;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4nh8c/;1610621580;5;True;False;anime;t5_2qh22;;0;[]; -[];;;oogieogie;;;[];;;;text;t2_607w7;False;False;[];;and god bless white fox for doing all this;False;False;;;;1610557042;;False;{};gj4nhss;False;t3_kwisv4;False;False;t1_gj4j9ln;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4nhss/;1610621589;116;True;False;anime;t5_2qh22;;0;[]; -[];;;Zonca;;;[];;;;text;t2_11odu8;False;False;[];;ARE WE DOING THIS!? RIGHT HERE, RIGHT NOW!!!!?;False;False;;;;1610557098;;False;{};gj4nmd8;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4nmd8/;1610621661;304;True;False;anime;t5_2qh22;;0;[]; -[];;;dxing2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/dxing;light;text;t2_sbxd9;False;False;[];;Re:Zero - where every character has their moment of potentially being the main character;False;False;;;;1610557098;;1610571883.0;{};gj4nmdz;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4nmdz/;1610621661;24;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;">Subaru has his own version of Emilia in his mind - -You always have a distort version of the people you love, it doesn't even have to be romantic love, the same goes for hatred.";False;False;;;;1610557099;;False;{};gj4nmhy;False;t3_kwisv4;False;False;t1_gj4lpqx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4nmhy/;1610621662;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Indeed. I was on the edge of my seat the whole time.;False;False;;;;1610557114;;False;{};gj4nnpz;False;t3_kwisv4;False;False;t1_gj4k44m;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4nnpz/;1610621681;7;True;False;anime;t5_2qh22;;0;[]; -[];;;mapoztofu;;;[];;;;text;t2_ig4auzn;False;False;[];;"Aot's episode : Declaration of War - -Rezero's ep : The War is Over";False;False;;;;1610557114;;False;{};gj4nnqi;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4nnqi/;1610621682;20;True;False;anime;t5_2qh22;;0;[]; -[];;;ZackDB201;;;[];;;;text;t2_1sxfbwvn;False;False;[];;This episode is way better than the first one an easy 8.5/10;False;False;;;;1610557121;;False;{};gj4noa3;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4noa3/;1610621690;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610557146;;False;{};gj4nqcc;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4nqcc/;1610621722;1;True;False;anime;t5_2qh22;;0;[]; -[];;;edwinvi;;;[];;;;text;t2_61hvsyte;False;True;[];;guys just a hunch but I think subaru loves emilia;False;False;;;;1610557178;;False;{};gj4nt00;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4nt00/;1610621762;214;True;False;anime;t5_2qh22;;0;[]; -[];;;waifutabae;;;[];;;;text;t2_2x4ujgtz;False;False;[];;"We didn't get an OP or ED but we got what us Emilia fans have wanted - - - -My mans Subaru finally kissed Emilia properly.";False;False;;;;1610557190;;False;{};gj4nu1p;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4nu1p/;1610621777;6;True;False;anime;t5_2qh22;;0;[]; -[];;;mattphatt98;;;[];;;;text;t2_2ozr0vhl;False;False;[];;"I'm speechless man I can't its too emotional ;-; now that true love folks!";False;False;;;;1610557191;;False;{};gj4nu4o;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4nu4o/;1610621779;6;True;False;anime;t5_2qh22;;0;[]; -[];;;KK-Hunter;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/K-Khan&view=tile&status=7";light;text;t2_em45rsk;False;False;[];;Ahhh just watched that yesterday lmao;False;False;;;;1610557207;;False;{};gj4nvf9;False;t3_kwisv4;False;False;t1_gj4ky6v;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4nvf9/;1610621799;3;True;False;anime;t5_2qh22;;0;[]; -[];;;genasugelan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Genasugelan;light;text;t2_15kv3y;False;False;[];;[Live footage of a Rem fan right now.](https://youtu.be/hlnpkrJs6wM?t=188);False;False;;;;1610557224;;False;{};gj4nwrw;False;t3_kwisv4;False;False;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4nwrw/;1610621819;10;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"One of the best speeches ever tbh. Rem's confession was so well done. One of my favourite moments in any anime. The colours, the direction, and of course the words themselves, - -The only speech I could consider equal or better than Rem's in anywhere would be Erwin's in AoT.";False;False;;;;1610557226;;1610557815.0;{};gj4nwwt;False;t3_kwisv4;False;False;t1_gj4hhym;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4nwwt/;1610621821;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Artogirus;;;[];;;;text;t2_46r3rdzg;False;False;[];;He just got his popular phase;False;False;;;;1610557226;;False;{};gj4nwxm;False;t3_kwisv4;False;True;t1_gj4f2u9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4nwxm/;1610621821;2;True;False;anime;t5_2qh22;;0;[]; -[];;;K0kkuri;;;[];;;;text;t2_q134e;False;False;[];;Well yes he’s as much obsessed about Emilia as much as Satella’s about Subaru;False;False;;;;1610557232;;False;{};gj4nxh4;False;t3_kwisv4;False;False;t1_gj4fe4g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4nxh4/;1610621830;1068;True;False;anime;t5_2qh22;;0;[]; -[];;;lookw;;;[];;;;text;t2_floum;False;False;[];;">Emilia who's very much clouded in all sorts of negative feelings with Puck leaving, her memories coming back, Subaru breaking his promise and leaving in the middle of the night, and all sorts of responsibilities that she can't seem to fulfill is getting angry and pushing that Subaru can't love someone like her while Subaru keeps on insisting just because she's a mess doesn't mean he can't love her. The entire thing explodes into a full blown argument where neither side backs down. - -im glad she finally called him out on how he keeps breaking promises to her (this is twice now (in this timeline from her POV) that he said he would do something and then went explicitly against it without good reason). That really hurt her perception of his declaration of love and made it much harder for her to believe his feelings would remain the same. She definitely believed him but due to puck breaking his promise and subaru also breaking his promise it definitely made her believe that he didnt love her as much as he claimed. Its not surprising that they had to argue about it since the reasons he actually broke both promises has little to do with RbD and therefore arent something hes explicitly forbidden from disclosing and it was his decision to break those promises.";False;False;;;;1610557257;;False;{};gj4nzgz;False;t3_kwisv4;False;False;t1_gj4lbc3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4nzgz/;1610621863;5;True;False;anime;t5_2qh22;;0;[]; -[];;;STAZEZ;;;[];;;;text;t2_28j9ullc;False;False;[];;Yooo Subaru finally got that kiss lets gooooo;False;False;;;;1610557259;;False;{};gj4nzn6;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4nzn6/;1610621865;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lorik_Bot;;;[];;;;text;t2_1x988uja;False;False;[];;Well we do see Garf still standing bloody and all.;False;False;;;;1610557262;;False;{};gj4nzwt;False;t3_kwisv4;False;False;t1_gj4kd12;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4nzwt/;1610621869;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Stian1308;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Stian1308;dark;text;t2_mvqaa;False;False;[];;"Best episode of the season? The series? An all-time anime moment for sure, and I'm here for it. -We now live in a world where attack on titan and re:zero are airing at the same time. As if anime of the year wasn't hard enough, and we're not even half-way through January.";False;False;;;;1610557264;;False;{};gj4o031;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4o031/;1610621872;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Artogirus;;;[];;;;text;t2_46r3rdzg;False;False;[];;I'm here too;False;False;;;;1610557265;;False;{};gj4o06f;False;t3_kwisv4;False;False;t1_gj4h9mi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4o06f/;1610621874;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Fryes;;;[];;;;text;t2_99bnm;False;False;[];;ntr?;False;False;;;;1610557265;;False;{};gj4o06o;False;t3_kwisv4;False;False;t1_gj4ggdc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4o06o/;1610621874;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Zonca;;;[];;;;text;t2_11odu8;False;False;[];;"Can a *kiss* get more upvotes than war!??? - - -The chances are so low, nobody not demonicaly possesed would even consider such straight bet. but I BELIEVE IN YOU Re:Zero, because I love you...";False;False;;;;1610557281;;False;{};gj4o1gm;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4o1gm/;1610621892;46;True;False;anime;t5_2qh22;;0;[]; -[];;;NoobyHydra;;;[];;;;text;t2_16nynt;False;False;[];;"Overall great episode! Thought there were some pretty meaningful parallels between Subaru's confession and Rem's confession to be seen. Super proud of Subaru tho; that line acknowledging that Emilia is just an ordinary girl with her own flaws is huge and is a huge development from where he was in season 1. Excited for the next episode! Well done White Fox!";False;False;;;;1610557286;;False;{};gj4o1tz;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4o1tz/;1610621899;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Reinhardplznerf;;;[];;;;text;t2_1ga1ry;False;False;[];;"Arguably the best episode in the entire series so far. - -This was definitely one of my top 3 moments of arc 4, and the anime delivered.";False;False;;;;1610557305;;False;{};gj4o3ff;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4o3ff/;1610621924;7;True;False;anime;t5_2qh22;;0;[]; -[];;;jamjamreeree;;;[];;;;text;t2_12etho;False;False;[];;same;False;False;;;;1610593915;;False;{};gj6u1fd;False;t3_kwisyw;False;True;t1_gj5ryd0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6u1fd/;1610674347;0;True;False;anime;t5_2qh22;;0;[]; -[];;;spyder616;;;[];;;;text;t2_152u9aq2;False;False;[];;yes that one is interesting too imo;False;False;;;;1610594100;;False;{};gj6udgk;False;t3_kwisyw;False;False;t1_gj5xm5n;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6udgk/;1610674552;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Stillyoungboy;;;[];;;;text;t2_g4lij;False;False;[];;Why? This seems great.;False;False;;;;1610594497;;False;{};gj6v3e2;False;t3_kwisyw;False;False;t1_gj4j9xx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6v3e2/;1610674994;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610594572;;False;{};gj6v895;False;t3_kwisyw;False;True;t1_gj6amd1;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6v895/;1610675077;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Flyers429, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610594573;moderator;False;{};gj6v8aj;False;t3_kwisyw;False;True;t1_gj6v895;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6v8aj/;1610675078;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Neo_Techni;;;[];;;;text;t2_k9xvc;False;False;[];;Gees bitch, he's only level 1 and he healed an entire arm. Cut him some slack.;False;False;;;;1610594790;;False;{};gj6vmey;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6vmey/;1610675320;23;True;False;anime;t5_2qh22;;0;[]; -[];;;J3lli;;;[];;;;text;t2_n4hy7;False;False;[];;">k - -Wheres my Parallel Paradise Anime at";False;False;;;;1610594827;;False;{};gj6voyf;False;t3_kwisyw;False;False;t1_gj4tq2x;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6voyf/;1610675362;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gg_Messy;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/GgMese;light;text;t2_16xgzd;False;False;[];;Just like Overhaul from mha;False;False;;;;1610594909;;False;{};gj6vu9e;False;t3_kwisyw;False;True;t1_gj55rf6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6vu9e/;1610675450;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dagudzucc;;;[];;;;text;t2_1rhinj75;False;False;[];;its more like because his healing allows him to experience other people's experiences, as a side effect he can gain their skills;False;False;;;;1610594925;;False;{};gj6vvb8;False;t3_kwisyw;False;True;t1_gj55rf6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6vvb8/;1610675468;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Works for Saint Seiya;False;False;;;;1610594955;;False;{};gj6vx8h;False;t3_kwisyw;False;False;t1_gj5logu;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6vx8h/;1610675501;16;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;The culture is strong with this one!;False;False;;;;1610595036;;False;{};gj6w2dr;False;t3_kwisyw;False;True;t1_gj5vx6t;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6w2dr/;1610675591;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Freacking math!;False;False;;;;1610595084;;False;{};gj6w5fz;False;t3_kwisyw;False;False;t1_gj5zaxe;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6w5fz/;1610675645;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Neo_Techni;;;[];;;;text;t2_k9xvc;False;False;[];;I was surprised too;False;False;;;;1610595165;;False;{};gj6war9;False;t3_kwisyw;False;False;t1_gj4xqjz;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6war9/;1610675735;36;True;False;anime;t5_2qh22;;0;[]; -[];;;Addertongue;;;[];;;;text;t2_2j3epgg3;False;False;[];;"It's not that much of a stretch. Instant death is basically just a reverse full healing. Reminds me of final fantasy, using healing spells on undead enemies. The skill copying part is a side-effect of him learning the memories when healing someone, it itself is not a healing power. - -That said he literally just got his revenge and then proclaims that he will start it all over to get his revenge...so I guess we shouldn't expect top-tier writing and logic in this show lol.";False;False;;;;1610595216;;False;{};gj6we0j;False;t3_kwisyw;False;False;t1_gj55rf6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6we0j/;1610675790;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610595250;;False;{};gj6wg4i;False;t3_kwisyw;False;True;t1_gj52hou;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6wg4i/;1610675825;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;No irony here bud.;False;False;;;;1610595341;;False;{};gj6wlyc;False;t3_kwisyw;False;False;t1_gj6mtmc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6wlyc/;1610675923;27;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"If he doesn't want to see it then fine - -There was no need to proclaim it others in the episode discussion thread";False;False;;;;1610595345;;False;{};gj6wm82;False;t3_kwisyw;False;True;t1_gj6ah3w;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6wm82/;1610675928;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;random_throwaway0001;;;[];;;;text;t2_9lx2xvpv;False;False;[];;"> two keyframes were censored. - -Yeah... Trust me, it wasn't just 2 keyframes. It was a minute of full-blown uncensored sex.";False;False;;;;1610595371;;False;{};gj6wnxr;False;t3_kwisyw;False;True;t1_gj4lhvo;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6wnxr/;1610675957;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610595381;;False;{};gj6wokp;False;t3_kwisyw;False;True;t1_gj5fl5o;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6wokp/;1610675968;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;A true hero.;False;False;;;;1610595394;;False;{};gj6wpdv;False;t3_kwisyw;False;False;t1_gj5fjam;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6wpdv/;1610675982;10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;"> dem SJWs - -There’s an awful lot of people here getting “triggered” on their behalf here for some reason.";False;False;;;;1610595456;;False;{};gj6wtc0;False;t3_kwisyw;False;True;t1_gj5y9ju;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6wtc0/;1610676055;2;True;False;anime;t5_2qh22;;0;[]; -[];;;random_throwaway0001;;;[];;;;text;t2_9lx2xvpv;False;False;[];;I'm not sure calling it incel is right. It's about a guy who's been raped and abused going back and doing that to his rapers and abusers. If the MC was a girl, I'm sure people would be going on about how empowering it is.;False;False;;;;1610595498;;False;{};gj6ww3t;False;t3_kwisyw;False;True;t1_gj65vnp;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6ww3t/;1610676104;3;False;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Then you need to start reading that actually won't get adaptations. Spirit Circle, Bride's story, Sekito Elegy, Will You Marry Me Again If You Are Reborn? And Nana to Kaoru!;False;False;;;;1610595566;;False;{};gj6x0by;False;t3_kwisyw;False;True;t1_gj50hzh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6x0by/;1610676183;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;It's like those idiots complaining about SJW's when those barelly do anything these days. Throwing rocks at a pond, will disturb your own reflection more then the pond itself.;False;False;;;;1610595628;;False;{};gj6x4bh;False;t3_kwisyw;False;True;t1_gj4jgwc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6x4bh/;1610676265;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Neo_Techni;;;[];;;;text;t2_k9xvc;False;False;[];;"> That bitch who got her name changed to slut as her punishment for murder, attempted murder and perjury? - -That's more than women who do those things in this world get. See Zoe Quinn and Amber Heard the Turd.";False;False;;;;1610595685;;False;{};gj6x80c;False;t3_kwisyw;False;True;t1_gj5a1sp;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6x80c/;1610676337;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;dribblesnshits;;;[];;;;text;t2_1o8zefuy;False;True;[];;I asumed it worked like some kind of like an HP modifyer, i giveth the hp and i can taketh away.;False;False;;;;1610595757;;False;{};gj6xcns;False;t3_kwisyw;False;True;t1_gj5i1bf;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6xcns/;1610676422;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dribblesnshits;;;[];;;;text;t2_1o8zefuy;False;True;[];;Similar to irregular at magical high;False;False;;;;1610595814;;False;{};gj6xgbh;False;t3_kwisyw;False;False;t1_gj56vg6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6xgbh/;1610676487;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610595857;;1610598943.0;{};gj6xj32;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6xj32/;1610676537;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dribblesnshits;;;[];;;;text;t2_1o8zefuy;False;True;[];;Irregular at magical high does it when he heals ppl, granted he dont get their skills but it is plausible to learn from it *I suppose*;False;False;;;;1610595906;;False;{};gj6xm3i;False;t3_kwisyw;False;True;t1_gj55rf6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6xm3i/;1610676590;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610595993;;False;{};gj6xrm6;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6xrm6/;1610676687;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;nichecopywriter;;;[];;;;text;t2_12qnfo;False;False;[];;Just watched the uncensored version. It wasn’t even that bad, hoping it can eventually make me feel a little ill like Goblin Slayer did.;False;False;;;;1610596008;;False;{};gj6xskc;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6xskc/;1610676704;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Mentos13371;;;[];;;;text;t2_96mtzjj;False;False;[];;Next episode is one to look out for. With the current pacing i expect the most infamous part (that i know of) to be in episode 5. Maybe episode 4?;False;False;;;;1610596326;;False;{};gj6ycob;False;t3_kwisyw;False;False;t1_gj52hou;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6ycob/;1610677055;5;True;False;anime;t5_2qh22;;0;[]; -[];;;littlebro15;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/littlebro15;dark;text;t2_x7l2e;False;False;[];;I still can't believe that this got an adaptation, god this is going to be a wonderful shitstorm.;False;False;;;;1610596458;;False;{};gj6ykw7;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6ykw7/;1610677199;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mentos13371;;;[];;;;text;t2_96mtzjj;False;False;[];;Next episode will set the tone and ep 4 or 5 depending on the pacing will be the most infamous one if they adapt it fully.;False;False;;;;1610596759;;False;{};gj6z42o;False;t3_kwisyw;False;False;t1_gj6q7pr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6z42o/;1610677538;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Mentos13371;;;[];;;;text;t2_96mtzjj;False;False;[];;There are pretty much almost no redeemable main characters in this. I'm watching this one purely to see people lose their shit.;False;False;;;;1610596940;;False;{};gj6zfga;False;t3_kwisyw;False;False;t1_gj5diip;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6zfga/;1610677731;23;True;False;anime;t5_2qh22;;0;[]; -[];;;DaLoverBoii;;;[];;;;text;t2_cc2ss3;False;False;[];;TBF, the other person also had a lot of suffering inflicted on him, before he inflicted the suffering on others.;False;False;;;;1610597205;;False;{};gj6zvqc;False;t3_kwisyw;False;False;t1_gj5gbrg;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6zvqc/;1610678011;5;True;False;anime;t5_2qh22;;0;[]; -[];;;coolgaara;;;[];;;;text;t2_7nslb;False;False;[];;Yo ho ho;False;False;;;;1610597220;;False;{};gj6zwoe;False;t3_kwisyw;False;True;t1_gj4rpel;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6zwoe/;1610678027;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610597246;;1610597447.0;{};gj6zy9v;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj6zy9v/;1610678054;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Crowtamer1;;;[];;;;text;t2_12usuv;False;False;[];;Just wait;False;False;;;;1610597430;;False;{};gj709ls;False;t3_kwisyw;False;False;t1_gj6xrm6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj709ls/;1610678258;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;The anime did not explain it, but the green mark she got was because she can detect the presence of new heroes. That’s another reason why he couldn’t try to run away.;False;False;;;;1610598040;;False;{};gj71b5i;False;t3_kwisyw;False;True;t1_gj4tusc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj71b5i/;1610679000;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tand33;;;[];;;;text;t2_4918l;False;False;[];;Where can I watch the uncensored version?;False;False;;;;1610598141;;False;{};gj71hcp;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj71hcp/;1610679118;4;True;False;anime;t5_2qh22;;0;[]; -[];;;WeissBahr;;;[];;;;text;t2_7iweb8;False;False;[];;I see what you did there;False;False;;;;1610598220;;False;{};gj71m54;False;t3_kwisyw;False;False;t1_gj69kzh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj71m54/;1610679205;9;True;False;anime;t5_2qh22;;0;[]; -[];;;DaLoverBoii;;;[];;;;text;t2_cc2ss3;False;False;[];;ANN already has actually, even before the episode aired. And they did it in their review of this episode.;False;False;;;;1610598380;;False;{};gj71vwl;False;t3_kwisyw;False;True;t1_gj51gux;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj71vwl/;1610679390;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Iliansic;;;[];;;;text;t2_oaano;False;False;[];;Not gonna lie, was expecting trash tier production comparable to entertaining trash nature of the original. But it looks surprisingly decently animated.;False;False;;;;1610598401;;False;{};gj71x6j;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj71x6j/;1610679412;3;True;False;anime;t5_2qh22;;0;[]; -[];;;soudaivm;;;[];;;;text;t2_683f3l6x;False;False;[];;"The show just give me a different impression from what I know about the manga. Is it even the same novel? It's so colorful, even the ending. Mixed feelings. - -The uncensored version is okay but I will wait for the actual """"dark"""" scenes on the following episodes.";False;False;;;;1610598695;;False;{};gj72et1;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj72et1/;1610679735;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WeissBahr;;;[];;;;text;t2_7iweb8;False;False;[];;Goblin Slayer isn't an incel revenge fantasy, tho...;False;False;;;;1610598719;;False;{};gj72g7t;False;t3_kwisyw;False;False;t1_gj6xrm6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj72g7t/;1610679757;7;True;False;anime;t5_2qh22;;0;[]; -[];;;DaLoverBoii;;;[];;;;text;t2_cc2ss3;False;False;[];;"Zoe Quinn actually got more rewarded the more she got with her antics. Seriously, money, simps/shills (& massive ones at that too), job opportunities (which she performed very badly in). She got it all. - -Life's unfair.";False;False;;;;1610598820;;False;{};gj72m8z;False;t3_kwisyw;False;True;t1_gj6x80c;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj72m8z/;1610679864;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Leaves_Swype_Typos;;;[];;;;text;t2_arcs5;False;False;[];;Right? Who upvotes this stupid buzzword diarrhea, I ask rhetorically.;False;False;;;;1610598976;;False;{};gj72vkh;False;t3_kwisyw;False;True;t1_gj5tb47;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj72vkh/;1610680041;1;True;False;anime;t5_2qh22;;0;[]; -[];;;0ppaiHero;;;[];;;;text;t2_9jxb9fbr;False;False;[];;Actually he got 4 maids;False;False;;;;1610598994;;False;{};gj72wmf;False;t3_kwisyw;False;False;t1_gj6mygi;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj72wmf/;1610680064;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Aschentei;;;[];;;;text;t2_z1t0l;False;False;[];;I only saw 3 in the anime;False;False;;;;1610599027;;False;{};gj72ykb;False;t3_kwisyw;False;True;t1_gj72wmf;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj72ykb/;1610680113;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;It’s not so much that healers are looked down upon, but that he tried running away and not ‘doing his duties’. I forgot if the episode explained it, but everytime he heals someone he feels everything they went through.;False;False;;;;1610599029;;False;{};gj72ynq;False;t3_kwisyw;False;True;t1_gj5sx48;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj72ynq/;1610680117;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YunYunForever;;;[];;;;text;t2_78oor7zc;False;False;[];;"You should spend less time jumping onto the bandwagon of people that whine after only one episode has aired and more time actually watching stuff before you chime in with an opinion about it. Seriously, it only took you one sentence to make it ***extremely*** obvious that you didn't actually watch Goblin Slayer or Shield Hero. It's embarrassing. - -Edit: The downvotes are fine, I'm not sorry. Anyone that complains about a series that they obviously haven't watched has an opinion that's objectively worthless. Same goes for anyone that can't accept that.";False;False;;;;1610599039;;1610600801.0;{};gj72z7q;False;t3_kwisyw;False;False;t1_gj6xrm6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj72z7q/;1610680129;7;True;False;anime;t5_2qh22;;0;[]; -[];;;DaLoverBoii;;;[];;;;text;t2_cc2ss3;False;False;[];;Because hating on popular thing just for the sake of it is the new fad. Also, double-standards.;False;False;;;;1610599371;;False;{};gj73isj;False;t3_kwisyw;False;True;t1_gj5qvff;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj73isj/;1610680493;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NotAGingerMidget;;;[];;;;text;t2_gud76;False;False;[];;"This is more of a ""fight fire with a cannon"" situation than it is a redemption arc.";False;False;;;;1610599408;;False;{};gj73kwa;False;t3_kwisyw;False;False;t1_gj5flya;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj73kwa/;1610680531;8;True;False;anime;t5_2qh22;;0;[]; -[];;;kriosken12;;;[];;;;text;t2_3zpju4rz;False;False;[];;"Im pretty sure the MC is enjoying his life too much to want a ""redemption"".";False;False;;;;1610599459;;False;{};gj73nrx;False;t3_kwisyw;False;False;t1_gj73kwa;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj73nrx/;1610680583;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Raul's creepy smile is the best part of it.;False;False;;;;1610599729;;False;{};gj743c1;False;t3_kwisyw;False;True;t1_gj4s05c;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj743c1/;1610680856;3;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;difference is, Nozoki Ana is actually good;False;False;;;;1610599739;;False;{};gj743ye;False;t3_kwisyw;False;False;t1_gj5gfbr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj743ye/;1610680867;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Fiery1ce;;MAL;[];;http://myanimelist.net/profile/Fiery1ce;dark;text;t2_7h121;False;False;[];;Officer, this person right here.;False;False;;;;1610599740;;False;{};gj743yr;False;t3_kwisyw;False;False;t1_gj5u08s;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj743yr/;1610680867;17;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;IDK what kind of incel you'd need to be to unironically like this shit lol;False;False;;;;1610599830;;False;{};gj7494s;False;t3_kwisyw;False;True;t1_gj5gbe7;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7494s/;1610680957;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Etheo;;;[];;;;text;t2_3ctfo;False;False;[];;"He rapes. - -But he saves.";False;False;;;;1610599869;;False;{};gj74bei;False;t3_kwisyw;False;False;t1_gj4l5of;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj74bei/;1610680995;4;True;False;anime;t5_2qh22;;0;[]; -[];;;rwhitisissle;;;[];;;;text;t2_59umy;False;False;[];;He said, without a trace of irony.;False;False;;;;1610599899;;False;{};gj74d40;False;t3_kwisyw;False;False;t1_gj6wm82;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj74d40/;1610681025;6;False;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;Do people actually like this self insert edgefest?;False;False;;;;1610599931;;False;{};gj74ezu;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj74ezu/;1610681057;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;kriosken12;;;[];;;;text;t2_3zpju4rz;False;False;[];;Ikr? The only reason Healer got so popular is because of the artificial Twittee outrage that was created around it by sites like reddit and through anitubers.;False;False;;;;1610599955;;False;{};gj74gcb;False;t3_kwisyw;False;False;t1_gj7494s;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj74gcb/;1610681082;7;True;False;anime;t5_2qh22;;0;[]; -[];;;LeoGiacometti;;;[];;;;text;t2_13n8qv;False;False;[];;so, what's the point of this one? being edgy?;False;False;;;;1610600201;;False;{};gj74u31;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj74u31/;1610681316;0;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;goblin slayer may not be an incel fantasy but redo healer definitely is lmao;False;False;;;;1610600374;;False;{};gj753re;False;t3_kwisyw;False;True;t1_gj4l0ja;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj753re/;1610681484;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;"> I'm guessing Norn is the only good person in the Royal Family. - -Based on what he said in the screenshot that you took, I think that she is the contrary of what you are thinking and that she is the worse of them all.";False;False;;;;1610600649;;False;{};gj75j02;False;t3_kwisyw;False;False;t1_gj4tshh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj75j02/;1610681745;3;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;self insert edgefest, but this time for incels;False;False;;;;1610600653;;False;{};gj75j7a;False;t3_kwisyw;False;True;t1_gj74u31;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj75j7a/;1610681749;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;Goblin slayer isn't an incel revenge fantasy, but you can't really say the same about shield hero.;False;False;;;;1610600748;;False;{};gj75ofj;False;t3_kwisyw;False;True;t1_gj72z7q;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj75ofj/;1610681840;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GlassKayak;;;[];;;;text;t2_9idktgby;False;False;[];;For better or worse.;False;False;;;;1610600873;;False;{};gj75v8h;False;t3_kwisyw;False;False;t1_gj5lxsk;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj75v8h/;1610681955;7;True;False;anime;t5_2qh22;;0;[]; -[];;;YunYunForever;;;[];;;;text;t2_78oor7zc;False;False;[];;"You really can. Naofumi stayed salty for a long time, but for the most part that was it. It wasn't some story that 100% revolved around the whole ""revenge"" thing. Likewise, the ""incel"" label really doesn't apply to it in the long run. Like, at all lol.";False;False;;;;1610600988;;False;{};gj761lh;False;t3_kwisyw;False;False;t1_gj75ofj;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj761lh/;1610682065;5;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;There's gotta be a government watchlist for people who actually like this shit;False;True;;comment score below threshold;;1610601001;;False;{};gj762ct;False;t3_kwisyw;False;False;t1_gj5cly8;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj762ct/;1610682078;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;I'm assuming the people that downvoted your comment happily consume other shitty self insert isekai/power fantasies;False;False;;;;1610601079;;False;{};gj766q4;False;t3_kwisyw;False;True;t1_gj4ux2f;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj766q4/;1610682153;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;what kind of incel shit is this;False;False;;;;1610601096;;False;{};gj767o2;False;t3_kwisyw;False;True;t1_gj6v3e2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj767o2/;1610682171;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;Goblin slayer a revenge fantasy? Lol;False;False;;;;1610601221;;False;{};gj76ehf;False;t3_kwisyw;False;False;t1_gj6xrm6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj76ehf/;1610682293;6;True;False;anime;t5_2qh22;;0;[]; -[];;;rwhitisissle;;;[];;;;text;t2_59umy;False;False;[];;"Everybody's talking about the edginess of the show, but nobody's talking about how this show seems to discard almost any pretense of ""show, don't tell"" around the eight minute mark. I can deal with edgy nonsense, but at least structure your narrative competently. That out of the way, the animation is kind of janky, the character designs are uninteresting, and the voice acting is passable, given that the voice actors just have the most uninteresting fucking dialogue to work with. Pretty much everything anyone says is to serve no greater creative purpose than to provide the audience with information. In fact, the writing in general could be charitably described as lazy. Especially the character writing. They could at least try to make one character somewhat interesting, but I guess this show isn't what you would call ""character driven."" I mean, the main antagonist is basically an evil pair of boobs. - -At this point, you might as well just watch actual hentai.";False;False;;;;1610601289;;False;{};gj76i9t;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj76i9t/;1610682360;5;False;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;"The premise and the whole first season centered around revenge, so ofc it's gonna be labeled as a revenge show. - The incel label definitely applies to the short run, and that's all it takes to be labeled as an incel show.";False;False;;;;1610601528;;False;{};gj76v2z;False;t3_kwisyw;False;False;t1_gj761lh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj76v2z/;1610682604;1;True;False;anime;t5_2qh22;;0;[]; -[];;;joe4553;;MAL;[];;https://myanimelist.net/animelist/EmiyaRin;dark;text;t2_nujxw;False;False;[];;What they actually adapted this...;False;False;;;;1610601630;;False;{};gj770k8;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj770k8/;1610682737;0;True;False;anime;t5_2qh22;;0;[]; -[];;;LeoGiacometti;;;[];;;;text;t2_13n8qv;False;False;[];;waste of time then, thanks;False;False;;;;1610601700;;False;{};gj7748q;False;t3_kwisyw;False;True;t1_gj75j7a;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7748q/;1610682808;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HayakuEon;;;[];;;;text;t2_hwuazl5;False;False;[];;"I whole-heartedly agree that a lot of it due to double standards. Like, the MC literally suffered his entire life the moment he became a hero. And they're turned off because he's ''kinda rapey''? - -Miss me with that shit.";False;False;;;;1610601741;;False;{};gj776ge;False;t3_kwisyw;False;False;t1_gj73isj;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj776ge/;1610682852;6;True;False;anime;t5_2qh22;;0;[]; -[];;;DaLoverBoii;;;[];;;;text;t2_cc2ss3;False;False;[];;"This is reddit bruh, soyboys who call anyone/anything they don't like is for incels/made by & for incels are very normal here.";False;False;;;;1610601753;;1610603015.0;{};gj7774q;False;t3_kwisyw;False;True;t1_gj6ww3t;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7774q/;1610682865;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;rwhitisissle;;;[];;;;text;t2_59umy;False;False;[];;"To quote Maude Lebowski, ""the story is ludicrous.""";False;False;;;;1610601779;;False;{};gj778hl;False;t3_kwisyw;False;True;t1_gj5diip;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj778hl/;1610682888;1;False;False;anime;t5_2qh22;;0;[]; -[];;;scot911;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/scot911;light;text;t2_e6v5y;False;False;[];;"If we're talking theatrics I want ""The Eminence in Shadow"" animated pronto. It isn't a revenge fantasy but it has to be one of the most hilarious isekai's I've ever read due to the chunni MC going full chunni, actually being right in his chunniness and thinking everyone else is just playing along with said chunniness.";False;False;;;;1610601838;;False;{};gj77bo0;False;t3_kwisyw;False;False;t1_gj5dee2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj77bo0/;1610682942;9;True;False;anime;t5_2qh22;;0;[]; -[];;;DaLoverBoii;;;[];;;;text;t2_cc2ss3;False;False;[];;This one actually lacks LN translation.;False;False;;;;1610601893;;False;{};gj77elc;False;t3_kwisyw;False;True;t1_gj4lhdo;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj77elc/;1610682993;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeoGiacometti;;;[];;;;text;t2_13n8qv;False;False;[];;This reminds me of Ousama Game, pure garbage that at most makes you laugh at it's mediocrity;False;False;;;;1610601894;;False;{};gj77ep0;False;t3_kwisyw;False;True;t1_gj5wm1p;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj77ep0/;1610682994;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rwhitisissle;;;[];;;;text;t2_59umy;False;False;[];;If you want an actually decent Monte Cristo story, there's literally a sci-fi adaptation anime called *Gankutsuo*.;False;False;;;;1610601921;;False;{};gj77g5j;False;t3_kwisyw;False;True;t1_gj53d4g;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj77g5j/;1610683018;2;False;False;anime;t5_2qh22;;0;[]; -[];;;DaLoverBoii;;;[];;;;text;t2_cc2ss3;False;False;[];;"To gain experience. This isn't an isekai, but basically he gained their knowledge & experience & shit.";False;False;;;;1610602065;;False;{};gj77nx9;False;t3_kwisyw;False;False;t1_gj6pchh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj77nx9/;1610683162;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610602067;;1610606283.0;{};gj77o0z;False;t3_kwisyw;False;True;t1_gj5k516;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj77o0z/;1610683163;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DaLoverBoii;;;[];;;;text;t2_cc2ss3;False;False;[];;The subreddit is somehow more bitchy than twitter is lol.;False;False;;;;1610602154;;False;{};gj77spp;False;t3_kwisyw;False;False;t1_gj6hlqo;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj77spp/;1610683246;7;True;False;anime;t5_2qh22;;0;[]; -[];;;DaLoverBoii;;;[];;;;text;t2_cc2ss3;False;False;[];;It's only 5 hrs after the censored version.;False;False;;;;1610602240;;False;{};gj77x88;False;t3_kwisyw;False;True;t1_gj4shll;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj77x88/;1610683331;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nxl_jayska;;;[];;;;text;t2_511129jm;False;False;[];;My fucking dyslexic ass read the title as Jujutsu Kaisen I'm going to go scream in a hole;False;False;;;;1610602250;;False;{};gj77xsg;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj77xsg/;1610683339;19;True;False;anime;t5_2qh22;;0;[]; -[];;;ChornoyeSontse;;;[];;;;text;t2_8vjfuk9d;False;False;[];;To be fair, twitter did have a bit of a mini-meltdown over Goblin Slayer, I also expected something to happen over this show.;False;False;;;;1610602301;;False;{};gj780ec;False;t3_kwisyw;False;False;t1_gj74gcb;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj780ec/;1610683384;9;True;False;anime;t5_2qh22;;0;[]; -[];;;DaLoverBoii;;;[];;;;text;t2_cc2ss3;False;False;[];;The comments are being removed unnecessarily, so lets say he's doing the latter.;False;False;;;;1610602347;;False;{};gj782s3;False;t3_kwisyw;False;True;t1_gj4u91t;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj782s3/;1610683428;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kriosken12;;;[];;;;text;t2_3zpju4rz;False;False;[];;Same, but people were trying to fabricate controversies where they didn't exist yet.;False;False;;;;1610602353;;False;{};gj7834b;False;t3_kwisyw;False;True;t1_gj780ec;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7834b/;1610683436;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DaLoverBoii;;;[];;;;text;t2_cc2ss3;False;False;[];;It's only good when watched uncensored.;False;False;;;;1610602382;;False;{};gj784jh;False;t3_kwisyw;False;True;t1_gj54wap;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj784jh/;1610683466;0;True;False;anime;t5_2qh22;;0;[]; -[];;;DaLoverBoii;;;[];;;;text;t2_cc2ss3;False;False;[];;In simple words, yes, he only goes for ones who wronged him.;False;False;;;;1610602439;;False;{};gj787jw;False;t3_kwisyw;False;True;t1_gj5gqd8;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj787jw/;1610683520;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DaLoverBoii;;;[];;;;text;t2_cc2ss3;False;False;[];;People are pussies.;False;False;;;;1610602476;;False;{};gj789f5;False;t3_kwisyw;False;True;t1_gj5r0sh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj789f5/;1610683553;0;True;False;anime;t5_2qh22;;0;[]; -[];;;DaLoverBoii;;;[];;;;text;t2_cc2ss3;False;False;[];;It's out.;False;False;;;;1610602491;;False;{};gj78a7p;False;t3_kwisyw;False;True;t1_gj4o831;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj78a7p/;1610683566;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610602522;;False;{};gj78bui;False;t3_kwisyw;False;True;t1_gj6qahu;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj78bui/;1610683595;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CareerSMN;;;[];;;;text;t2_dlsik;False;False;[];;"His Healing powers force him to relive the pain of the wounds he's healing so he kinda develops PTSD after his first few healings and gets a phobia of using his powers. - -In fact, it's far more practical to drink an Elixir instead, so he gets abused and drugged to become a heal-bot. - -He's not entirely killed because there are other benefits to his Hero status.";False;False;;;;1610602530;;False;{};gj78cbe;False;t3_kwisyw;False;True;t1_gj5sx48;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj78cbe/;1610683604;1;True;False;anime;t5_2qh22;;0;[]; -[];;;seneschal_;;;[];;;;text;t2_6axknnf1;False;False;[];;That series is way better than Redo of Healer.;False;False;;;;1610602630;;False;{};gj78hio;False;t3_kwisyw;False;True;t1_gj4s05c;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj78hio/;1610683692;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610602659;;False;{};gj78j0m;False;t3_kwisyw;False;True;t1_gj6qahu;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj78j0m/;1610683718;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Leaves_Swype_Typos;;;[];;;;text;t2_arcs5;False;False;[];;Having tons of women abusing you for their own ends, especially sexually, and then getting your revenge on them, especially sexually, is kind of an incel fantasy in a nutshell.;False;False;;;;1610602710;;False;{};gj78loh;False;t3_kwisyw;False;False;t1_gj4l8ey;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj78loh/;1610683767;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ChornoyeSontse;;;[];;;;text;t2_8vjfuk9d;False;False;[];;Lel. Happens every time people are anticipating fallout. Too much time on their hands. Good thing I don't use any social media apart from like three subreddits I check daily.;False;False;;;;1610602737;;False;{};gj78n30;False;t3_kwisyw;False;False;t1_gj7834b;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj78n30/;1610683793;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DaLoverBoii;;;[];;;;text;t2_cc2ss3;False;False;[];;"As per some manga & LN reader, Around 4-5th episode shit truly hits the fan at it's peak. Tho the 2nd episode will show the darkness of it all.";False;False;;;;1610602745;;False;{};gj78nhf;False;t3_kwisyw;False;True;t1_gj61sf0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj78nhf/;1610683802;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610602856;;False;{};gj78t3y;False;t3_kwisyw;False;True;t1_gj5eobz;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj78t3y/;1610683901;18;True;False;anime;t5_2qh22;;0;[]; -[];;;DaLoverBoii;;;[];;;;text;t2_cc2ss3;False;False;[];;"Some people here actually admit that they're not even gonna watch the show, just here to be ""part of the discussion"" which anyone knows how it actually turns out.";False;False;;;;1610602875;;False;{};gj78u4u;False;t3_kwisyw;False;False;t1_gj72z7q;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj78u4u/;1610683918;4;True;False;anime;t5_2qh22;;0;[]; -[];;;DaLoverBoii;;;[];;;;text;t2_cc2ss3;False;False;[];;"Same, the white-knighting in some redditors are high & biased.";False;False;;;;1610602950;;False;{};gj78y1a;False;t3_kwisyw;False;False;t1_gj776ge;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj78y1a/;1610683982;6;True;False;anime;t5_2qh22;;0;[]; -[];;;FEV_Reject;;MAL;[];;http://myanimelist.net/animelist/FEV_Reject;dark;text;t2_dsyg3;False;False;[];;Stop, we've gone too far.;False;False;;;;1610602960;;False;{};gj78yjs;False;t3_kwisyw;False;True;t1_gj60p6a;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj78yjs/;1610683990;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BigBat6;;;[];;;;text;t2_5kzs0gd2;False;False;[];;Is this an anime?;False;False;;;;1610603429;;False;{};gj79loi;False;t3_kwisyw;False;True;t1_gj4pavb;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj79loi/;1610684382;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FEV_Reject;;MAL;[];;http://myanimelist.net/animelist/FEV_Reject;dark;text;t2_dsyg3;False;False;[];;Sometimes they don't even wear pants;False;False;;;;1610603484;;False;{};gj79oev;False;t3_kwisyw;False;False;t1_gj5v6u2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj79oev/;1610684426;38;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610603559;;False;{};gj79s4o;False;t3_kwisyw;False;True;t1_gj5idgl;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj79s4o/;1610684489;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Unasked_for_advice;;;[];;;;text;t2_k95aw;False;False;[];;He is taking a FLAW , where when he heals he absorbs all the pain an hurt they suffered and turning it into a useful ability. Taking in the mental damage is something that could and would destroy most people which is the price of healing.;False;False;;;;1610603589;;False;{};gj79tly;False;t3_kwisyw;False;False;t1_gj55rf6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj79tly/;1610684516;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DC15seek;;;[];;;;text;t2_3tajqb7n;False;False;[];;Not related to this topic but I know some of you could help me I'm looking for the name of this manga that has a weak man in love with this strong buff women with short hair like a tomboy and has a face with no emotion and I think she does construction and he make a cake for her within the 3 chapter also I think the female hair is pink plz help me;False;False;;;;1610603878;;False;{};gj7a7mi;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7a7mi/;1610684748;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Leaves_Swype_Typos;;;[];;;;text;t2_arcs5;False;False;[];;"You know what I hated about this? - -*Not the edgy rape shit*, or the victim narrative, I expected that. What made me roll my eyes back into my head was the main character getting the Supreme Eye of the Gamer. It didn't serve ANY purpose in this first episode, and would've made it feel more like a real fantasy setting rather than a video game if it just wasn't there. This isn't a good story in many regards, but that element in particular just reeks of laziness. Could you imagine Lord of the Rings if they prattled on about experience points and levels? - -If not for that, this could've been a fantasy show instead of *another* Native Isekai.";False;False;;;;1610603883;;False;{};gj7a7vw;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7a7vw/;1610684752;3;True;False;anime;t5_2qh22;;0;[]; -[];;;itzxzac;;;[];;;;text;t2_9rs87;False;False;[];;"Just started reading the manga after watching the first episode given all the reactions, and I'm only on chapter 7 so far, but, wow, this show will be interesting. Next episode will also be very interesting. - -It also reminds me why I usually never touch fucked up genres like this. But my curiosity got the best of me.";False;False;;;;1610604513;;1610637848.0;{};gj7b20b;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7b20b/;1610685263;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;I did lol at the part where he delayed saving hostages because he needed to get on top of a roof like on Assassin's Creed or something;False;False;;;;1610604585;;False;{};gj7b5cq;False;t3_kwisyw;False;False;t1_gj77bo0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7b5cq/;1610685319;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;Yeah just checked;False;False;;;;1610604657;;False;{};gj7b8p3;False;t3_kwisyw;False;True;t1_gj77x88;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7b8p3/;1610685372;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PST-Dipsy;;;[];;;;text;t2_4ejbdwi;False;False;[];;"Looked pretty generic at the start; I assume this is just gonna be one power tripping rape fest in an episode or two?";False;False;;;;1610604677;;False;{};gj7b9oo;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7b9oo/;1610685389;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610604809;;False;{};gj7bfvg;False;t3_kwisyw;False;True;t1_gj77o0z;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7bfvg/;1610685494;8;False;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"How the fuck are they going to be part of the discussion without watching the damn show or even the uncensored version - -I get spectating the discussions but being part of the discussion without watching it WTF";False;False;;;;1610604842;;False;{};gj7bhg5;False;t3_kwisyw;False;False;t1_gj78u4u;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7bhg5/;1610685520;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DaLoverBoii;;;[];;;;text;t2_cc2ss3;False;False;[];;"By being sheeps & parroting the most upvoted opinion someone has on this.";False;False;;;;1610605113;;False;{};gj7btyg;False;t3_kwisyw;False;True;t1_gj7bhg5;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7btyg/;1610685733;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bonvantius;;;[];;;;text;t2_10dvn3;False;False;[];;"Judging this purely as an introductory episode it was rather dull and unremarkable, but at least it's clear about what kind of show it wants to be and shouldn't be taken too seriously. - -There's a lot to nitpick over that's probably best not to think to hard on. Like how Healing can apparently do anything that is needed. - -Maybe a dark, cathartic, revenge plot is just what people want right now, but I had my fill with Shield Hero and that had Kevin Penkin scoring it, so I don't have much of a reason to watch this unless it does more to grab my attention without resorting to cheap shock value. - -Much with HxEros the censorship is a deal-breaker since it's far too frequent and distracting. - -''Hidden Dungeon only I can Enter'' from this season also had better animation than this. - -I know more will happen in coming episodes, but as an episode 1 it kind of failed to leave a lasting impression.";False;False;;;;1610605162;;1610605455.0;{};gj7bw9a;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7bw9a/;1610685773;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Cire101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cire101;light;text;t2_oryv2;False;False;[];;I’m specifically asking about Goblin slayer on how they could come up with that lol.;False;False;;;;1610605281;;False;{};gj7c1os;False;t3_kwisyw;False;True;t1_gj78loh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7c1os/;1610685860;2;True;False;anime;t5_2qh22;;0;[]; -[];;;THEGUYINTHEPICT;;;[];;;;text;t2_4059sf4r;False;False;[];;Let the edgy as shit full of bullshit show begin;False;False;;;;1610605456;;False;{};gj7c9sw;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7c9sw/;1610685999;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HattoriSaizoII;;;[];;;;text;t2_72680hhu;False;False;[];;What a batter way to start 2021 than airing an anime that will literally trigger the entire fandom in more ways than one.;False;False;;;;1610605711;;False;{};gj7cldq;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7cldq/;1610686189;2;True;False;anime;t5_2qh22;;0;[]; -[];;;acllive;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ACLlive;light;text;t2_a9bvp;False;True;[];;The only person I don’t hear bitching on twitter is trump these days 😂;False;False;;;;1610606028;;False;{};gj7czch;False;t3_kwisyw;False;True;t1_gj4jgwc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7czch/;1610686429;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChiggaOG;;;[];;;;text;t2_3hcondt;False;True;[];;"As much as I wanna watch this anime and went through the manga to see how it goes.... - -I got standards and watching sadistic and rapey anime like hentai is not my thing. This is too much for me. - -It's not at bad as 177013.";False;False;;;;1610606368;;1610606662.0;{};gj7de60;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7de60/;1610686689;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;"Cmon, you watching anime - -Relax your brain, will you";False;False;;;;1610606507;;False;{};gj7dk8x;False;t3_kwisyw;False;True;t1_gj6peru;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7dk8x/;1610686788;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"If you are not going to watch the uncensored version you may as well as drop it - -I wonder how much they can censor the later episodes until it is literally unwatchable";False;False;;;;1610606535;;False;{};gj7dlfv;False;t3_kwisyw;False;True;t1_gj7bw9a;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7dlfv/;1610686808;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;Didnt nozoki ana already have anime?;False;False;;;;1610606566;;False;{};gj7dms2;False;t3_kwisyw;False;True;t1_gj743ye;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7dms2/;1610686830;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;"You clearly not read domestic kanojo - -What a shitshow";False;False;;;;1610606618;;False;{};gj7dp1c;False;t3_kwisyw;False;False;t1_gj5qlr8;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7dp1c/;1610686868;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;i think it got 1 or 2 episodes, but it definitely wasn't a full adaptation;False;False;;;;1610606828;;False;{};gj7dy36;False;t3_kwisyw;False;True;t1_gj7dms2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7dy36/;1610687022;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610607007;;False;{};gj7e5qs;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7e5qs/;1610687153;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JosephHitlerUn;;;[];;;;text;t2_3oi5qdpj;False;False;[];;The way I see it is that his magic power goes in there body effectively allowing him to control them how he wants, say your skills are in your brain, imagine it live him copying the skills imprinted in their brain and pasting it into his. Atleast that’s my interpretation;False;False;;;;1610607363;;False;{};gj7ekn9;False;t3_kwisyw;False;True;t1_gj55rf6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7ekn9/;1610687408;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lockonreaper;;;[];;;;text;t2_eqynh;False;False;[];;"instantly hook at the premise, i was reading a certain manhwa, cant remember the top of my head, - -both had a chance of a redo, both retain their memories and events that follows, - -tho the manhwa has a different path since he change a few stuff, - -both wants a different outcome from their ""previous life"" - -manhwa side on being good protecting the world - -this anime took the chaotic good? - -i like the powers tho, - -super op power but has a drawback, - -similar to our resident siscon overlord godsuya, - -able to regen the body but has to suffer all the pain that body went through.";False;False;;;;1610607666;;False;{};gj7ex23;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7ex23/;1610687627;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaperius;;;[];;;;text;t2_m3d68;False;True;[];;"""Healing"" isn't really ""healing""; its magical manipulation of biological materials. Occasionally you'll find the odd magic system that acknowledges this fact. - -Anyway ""healing"" or really ""bio-manipulation"" effectively translates here to ""manipulating cells to self destruct"", ""body enhancement through the manipulation of muscle cells and other tissues"" or ""reading memories stored in brain cells and copying those memories by creating identical copies within your own mind's structures"" - -Healing is basically just RPG short hand for manipulating, accelerating, or changing how biology works.";False;False;;;;1610607739;;False;{};gj7f00p;False;t3_kwisyw;False;False;t1_gj55rf6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7f00p/;1610687679;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610607758;;False;{};gj7f0sc;False;t3_kwisyw;False;True;t1_gj6zfga;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7f0sc/;1610687692;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JosephHitlerUn;;;[];;;;text;t2_3oi5qdpj;False;False;[];;"Calling an anime edgy or insulting the people watching it is just childish, grow up - -This anime has elements of goblin slayer, shield hero, and its ecchi of course it’s gonna attract people. I think you just underestimate how much people love revenge anime’s like attack on Titan and such. - -Point being if you don’t like it that’s fine. But don’t trash talk the community for liking it or your just a scumbag forcing his opinions onto others";False;False;;;;1610607816;;False;{};gj7f353;False;t3_kwisyw;False;False;t1_gj5gbe7;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7f353/;1610687737;4;True;False;anime;t5_2qh22;;0;[]; -[];;;shimapanlover;;;[];;;;text;t2_qm7g5;False;False;[];;"All characters in this are the worst and corrupted someone who was ""normal"" into being even worse.";False;False;;;;1610607832;;False;{};gj7f3rg;False;t3_kwisyw;False;True;t1_gj5diip;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7f3rg/;1610687748;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610607863;;False;{};gj7f506;False;t3_kwisyw;False;True;t1_gj6qahu;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7f506/;1610687769;26;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610608041;;False;{};gj7fccj;False;t3_kwisyw;False;True;t1_gj74bei;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7fccj/;1610687899;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaperius;;;[];;;;text;t2_m3d68;False;True;[];;"The real show isn't this anime; its the reactions to it as time goes on.";False;False;;;;1610608057;;False;{};gj7fd0b;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7fd0b/;1610687921;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Spoon_Elemental;;;[];;;;text;t2_ft38m;False;False;[];;You know how you can look at pictures of really fucked up shit and be revulsed but then you keep flipping through the images anyways even though you know you'll hate yourself for it? Yeah, it's like that. There's definitely a big market for incels with this, and there is clearly something wrong with the writer, but you don't have to be an incel to have a weird primal fascination with fucked up shit. [Simpsons puts it best.](https://youtu.be/eMKIqpxWQ7k?t=308);False;False;;;;1610608206;;False;{};gj7fj0m;False;t3_kwisyw;False;False;t1_gj7494s;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7fj0m/;1610688024;0;True;False;anime;t5_2qh22;;0;[]; -[];;;mhaaad;;;[];;;;text;t2_k24v2;False;False;[];;Thanks dude.;False;False;;;;1610608812;;False;{};gj7g6s9;False;t3_kwisyw;False;True;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7g6s9/;1610688444;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610608851;;False;{};gj7g8br;False;t3_kwisyw;False;True;t1_gj52hou;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7g8br/;1610688475;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Leaves_Swype_Typos;;;[];;;;text;t2_arcs5;False;False;[];;Ohhhh whoops my bad. Yeah it's a lot of things but you'd have to stretch a bit to call it that. If I had to guess, that idea would come out of how the world was built around women being raped, and the implication that there's a TON of unseen rape because of how many goblins exist in it and that that's the only way they're born. Given that men in that world are just killed while the women are made to endure all kinds of obscene torture (before inevitably dying), it does seem like the kind of concept an incel that hates women might find joy in, even before you get to what else goblins do with women.;False;False;;;;1610609298;;False;{};gj7gpzw;False;t3_kwisyw;False;False;t1_gj7c1os;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7gpzw/;1610688783;2;True;False;anime;t5_2qh22;;0;[]; -[];;;saga999;;;[];;;;text;t2_9ppe9;False;False;[];;Well I'm convinced.;False;False;;;;1610610122;;False;{};gj7hmf5;False;t3_kwisyw;False;False;t1_gj6neag;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7hmf5/;1610689576;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ikmal1997;;;[];;;;text;t2_80tamrb;False;False;[];;Since this is an ecchi, I have no doubt they'll sexualise children to bait in pedos in the next episode.;False;True;;comment score below threshold;;1610610125;;False;{};gj7hmj5;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7hmj5/;1610689578;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;saga999;;;[];;;;text;t2_9ppe9;False;False;[];;Look, I enjoy the show. But come on, when you are stealing experience, you aren't healing anymore! There's stretching the limit of an ability, and then there's straight bullshit.;False;False;;;;1610610861;;False;{};gj7ieic;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7ieic/;1610690078;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sKyBlazer08;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sKyBlazer08;light;text;t2_17ibsr;False;False;[];;"They didn't show much of his suffering but, from the little we've seen I really think they made him suffer a lot to the point of rewinding time and then get his revenge lmao. Still don't justify the horrible shit he will do. This must be School Shooters: The Show. - -The type of show I am definitely not going to take seriously cause, Jesus Christ lmao. I am just in here for the ride and for that juicy controversy.";False;False;;;;1610610902;;False;{};gj7ig3c;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7ig3c/;1610690106;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;MidnightShout;;;[];;;;text;t2_d1c34;False;False;[];;"I'm more shocked at the princess' name in translation than the production quality this show got. About what you would expect from a typical adaptation of an isekai. - -&#x200B; - -Also my man got a freakin fivesome at the end, goddamn.";False;False;;;;1610610957;;1610611202.0;{};gj7ii7f;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7ii7f/;1610690142;2;True;False;anime;t5_2qh22;;0;[]; -[];;;manny082;;;[];;;;text;t2_7dyic;False;False;[];;I dont use twitter all that much so how long until the outrage begins?;False;False;;;;1610610958;;False;{};gj7ii88;False;t3_kwisyw;False;True;t1_gj4j9xx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7ii88/;1610690142;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MidnightShout;;;[];;;;text;t2_d1c34;False;False;[];;Is that saying a lot though...;False;False;;;;1610611067;;False;{};gj7imbj;False;t3_kwisyw;False;True;t1_gj4ecfv;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7imbj/;1610690208;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saga999;;;[];;;;text;t2_9ppe9;False;False;[];;They forcefully turned him into a drug addict. I say everything is fair game. People call this show edgy. Honestly if they hold back on the revenge, I say it's not worth watching. I hope this is what Shield Hero isn't.;False;False;;;;1610611278;;False;{};gj7iu85;False;t3_kwisyw;False;True;t1_gj776ge;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7iu85/;1610690342;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Better_MixMaster;;;[];;;;text;t2_8ie7j;False;False;[];;"This has been my most anticipated anime for a while now. Not because it's particularly good, but just for the shitstorm it would make online. Read the WN btw. - -If you ignore the giant mountain of plot convenience that is the power system then it isn't actually that bad of a ""man-made psychopath"" story. Everyone is a terrible person, let's just push them together to see what happens.";False;False;;;;1610611356;;False;{};gj7ix6b;False;t3_kwisyw;False;True;t1_gj4cvpu;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7ix6b/;1610690392;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;"well, I heard a lot of people saying that this is only ecchi manga because it's in published next to ""normal"" manga";False;False;;;;1610611836;;False;{};gj7jeqy;False;t3_kwisyw;False;True;t1_gj6mqh0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7jeqy/;1610690748;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ultraman9513;;;[];;;;text;t2_5b2pn87v;False;False;[];;So do we know when the Complete recovery version comes out? With the DVDs or hopefully sooner;False;False;;;;1610611993;;False;{};gj7jkmp;False;t3_kwisyw;False;True;t1_gj4zuyq;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7jkmp/;1610690855;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Neeralazra;;;[];;;;text;t2_jzb6q;False;False;[];;uncensored?;False;False;;;;1610612158;;False;{};gj7jqou;False;t3_kwisyw;False;False;t1_gj72ykb;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7jqou/;1610690981;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;If we're doing a strict ecchi-hentai distinction, then it depends on *what* magazine it's released in. Is the magazine R18? Then it's hentai. Is it not? Then it's ecchi.;False;False;;;;1610612236;;False;{};gj7jtmm;False;t3_kwisyw;False;True;t1_gj7jeqy;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7jtmm/;1610691037;2;True;False;anime;t5_2qh22;;0;[]; -[];;;manny082;;;[];;;;text;t2_7dyic;False;False;[];;It makes me wonder of the demons of that manga/anime is less evil than the humans, given how they treat anyone of lower standing.;False;False;;;;1610612296;;False;{};gj7jvu1;False;t3_kwisyw;False;True;t1_gj5onvl;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7jvu1/;1610691082;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PokeMikey1234;;;[];;;;text;t2_14c263wr;False;False;[];;"Look at this bounty we've been blessed with today, brothers! 😤 - -I'm surprised more of y'all don't already sail the cultured waters, tap in.";False;False;;;;1610613708;;False;{};gj7lb3z;False;t3_kwisyw;False;False;t1_gj4tshh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7lb3z/;1610692027;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aschentei;;;[];;;;text;t2_z1t0l;False;False;[];;U got a link?;False;False;;;;1610613721;;False;{};gj7lbky;False;t3_kwisyw;False;True;t1_gj7jqou;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7lbky/;1610692034;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;Raul best boy. He definitely knows how to put on a good show!;False;False;;;;1610613786;;False;{};gj7ldw5;False;t3_kwisyw;False;True;t1_gj4s5np;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7ldw5/;1610692074;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IUTLK;;;[];;;;text;t2_12uux3;False;False;[];;"I mean, this shit is pretty incel-y - - -Like think about it, it’s about a dude who get abused by women’s so he reincarnates to get revenge against them and In the process gets to fuck lots of girls - - - -IMO it’s obviously a incel fantasy";False;False;;;;1610613802;;False;{};gj7legl;False;t3_kwisyw;False;True;t1_gj7f353;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7legl/;1610692083;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;The non legal sites have it. Just look up the title + uncensored on google and it’ll be the first one that pops up;False;False;;;;1610614059;;False;{};gj7lnwv;False;t3_kwisyw;False;True;t1_gj53mdd;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7lnwv/;1610692240;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TranClan67;;;[];;;;text;t2_5b6qw;False;False;[];;I've been reading it since release and it's pretty fucking garbage. So warning to those wanting to read it. Just read it if you've run out of things;False;False;;;;1610614123;;False;{};gj7lq6b;False;t3_kwisyw;False;True;t1_gj5100z;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7lq6b/;1610692282;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TangledPellicles;;;[];;;;text;t2_15k1ya;False;False;[];;This is some of the uglier looking animation I've seen this season -- not the worst by any means, my god no, but it's certainly offputting. It reminds me of 20 year old hentai. Which really makes me think, why not just download some hentai to watch instead of watching this? The story really isn't anything to write home about. Everyone just seems to be giggling about uncensored versions which uncover some tits for a few seconds. If you're wanting something to beat off to, man up and grab some Bible Black. It looks the same and there's more bang for your buck, so to speak.;False;False;;;;1610614144;;False;{};gj7lqyl;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7lqyl/;1610692297;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;PokeMikey1234;;;[];;;;text;t2_14c263wr;False;False;[];;People are weirdos, especially the ones coming from that cesspool site. Guess they didn't pay attention at the start about this being for cultured MATURE AUDIENCES smh;False;False;;;;1610614306;;False;{};gj7lwq3;False;t3_kwisyw;False;True;t1_gj4jgwc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7lwq3/;1610692391;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Martinik29;;;[];;;;text;t2_ujpqt;False;False;[];;He was forced to experience the pain of lost limbs multiple times, drugged on a highly addictive substance, regularly beaten, raped and treated like a dog in a Chinese food market.;False;False;;;;1610614651;;False;{};gj7m91h;False;t3_kwisyw;False;False;t1_gj7ig3c;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7m91h/;1610692595;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610614689;;False;{};gj7mag6;False;t3_kwisyw;False;True;t1_gj5c4xm;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7mag6/;1610692619;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610614938;;False;{};gj7mjhc;False;t3_kwisyw;False;True;t1_gj5gmtq;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7mjhc/;1610692764;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LeadingPlayer;;;[];;;;text;t2_c0osog1;False;False;[];;Honestly I think next episode is gonna be where it gets bad if the manga is anything to say. Hell, if that title is anything to go by. I honestly was expecting worse but I’m still cautious of what this is gonna look like. Let’s hope it’s not complete trash by the end..;False;False;;;;1610615006;;False;{};gj7mlw9;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7mlw9/;1610692801;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"Sorry, your comment has been removed. - -- Direction toward specific sources of pirated content of any type is not allowed. This includes links to unofficial scanlations, streams, uploads, and download sources of any copyrighted content. It also includes direction towards specific sites offering this type of content, and watermarks mentioning such sites in uploaded images/videos. - - Discussion of piracy in general is allowed, **but naming, linking to, or hinting towards specific sources is not. Offering to send links via PM is also not allowed.** For more details, see our [full rules on illegal content](https://www.reddit.com/r/anime/wiki/rules#wiki_do_not_link_to_illegal_content). - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610615021;moderator;False;{};gj7mmf5;False;t3_kwisyw;False;True;t1_gj6xj32;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7mmf5/;1610692809;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SolomonOf47704;;;[];;;dark;text;t2_748lfvhj;False;False;[];;"https://www.youtube.com/watch?v=dKmaAZuKyKw&feature=emb_logo";False;False;;;;1610615472;;False;{};gj7n2pz;False;t3_kwisyw;False;True;t1_gj5wu1d;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7n2pz/;1610693076;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SolomonOf47704;;;[];;;dark;text;t2_748lfvhj;False;False;[];;"https://www.youtube.com/watch?v=dKmaAZuKyKw&feature=emb_logo";False;False;;;;1610615476;;False;{};gj7n2wd;False;t3_kwisyw;False;True;t1_gj6smkc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7n2wd/;1610693079;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SolomonOf47704;;;[];;;dark;text;t2_748lfvhj;False;False;[];;"https://www.youtube.com/watch?v=dKmaAZuKyKw&feature=emb_logo";False;False;;;;1610615480;;False;{};gj7n30p;False;t3_kwisyw;False;True;t1_gj5vz1a;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7n30p/;1610693081;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SolomonOf47704;;;[];;;dark;text;t2_748lfvhj;False;False;[];;"https://www.youtube.com/watch?v=dKmaAZuKyKw&feature=emb_logo";False;False;;;;1610615487;;False;{};gj7n39e;False;t3_kwisyw;False;False;t1_gj5jzo6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7n39e/;1610693084;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SolomonOf47704;;;[];;;dark;text;t2_748lfvhj;False;False;[];;"https://www.youtube.com/watch?v=dKmaAZuKyKw&feature=emb_logo";False;False;;;;1610615491;;False;{};gj7n3f1;False;t3_kwisyw;False;True;t1_gj5llrx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7n3f1/;1610693086;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SolomonOf47704;;;[];;;dark;text;t2_748lfvhj;False;False;[];;"https://www.youtube.com/watch?v=dKmaAZuKyKw&feature=emb_logo";False;False;;;;1610615494;;False;{};gj7n3jh;False;t3_kwisyw;False;True;t1_gj63cjq;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7n3jh/;1610693088;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SolomonOf47704;;;[];;;dark;text;t2_748lfvhj;False;False;[];;"https://www.youtube.com/watch?v=dKmaAZuKyKw&feature=emb_logo";False;False;;;;1610615498;;False;{};gj7n3nd;False;t3_kwisyw;False;True;t1_gj63ovl;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7n3nd/;1610693089;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SolomonOf47704;;;[];;;dark;text;t2_748lfvhj;False;False;[];;"https://www.youtube.com/watch?v=dKmaAZuKyKw&feature=emb_logo";False;False;;;;1610615502;;False;{};gj7n3sq;False;t3_kwisyw;False;True;t1_gj5nzoh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7n3sq/;1610693092;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SolomonOf47704;;;[];;;dark;text;t2_748lfvhj;False;False;[];;"https://www.youtube.com/watch?v=dKmaAZuKyKw&feature=emb_logo";False;False;;;;1610615505;;False;{};gj7n3xe;False;t3_kwisyw;False;True;t1_gj5vbvj;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7n3xe/;1610693094;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SolomonOf47704;;;[];;;dark;text;t2_748lfvhj;False;False;[];;"https://www.youtube.com/watch?v=dKmaAZuKyKw&feature=emb_logo";False;False;;;;1610615508;;False;{};gj7n40x;False;t3_kwisyw;False;False;t1_gj5qzm9;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7n40x/;1610693096;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SolomonOf47704;;;[];;;dark;text;t2_748lfvhj;False;False;[];;"https://www.youtube.com/watch?v=dKmaAZuKyKw&feature=emb_logo";False;False;;;;1610615516;;False;{};gj7n4a9;False;t3_kwisyw;False;True;t1_gj5wh67;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7n4a9/;1610693100;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SolomonOf47704;;;[];;;dark;text;t2_748lfvhj;False;False;[];;"https://www.youtube.com/watch?v=dKmaAZuKyKw&feature=emb_logo";False;False;;;;1610615520;;False;{};gj7n4ge;False;t3_kwisyw;False;True;t1_gj6n8i4;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7n4ge/;1610693102;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WeNTuS;;;[];;;;text;t2_btiic;False;False;[];;"This is what I really hated about Shield Hero. They were literally ready to kill him yet he ""forgave"" them like it was nothing";False;False;;;;1610615579;;False;{};gj7n6ka;False;t3_kwisyw;False;True;t1_gj5amdd;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7n6ka/;1610693137;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610615608;;False;{};gj7n7jd;False;t3_kwisyw;False;True;t1_gj4sxy0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7n7jd/;1610693154;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sKyBlazer08;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sKyBlazer08;light;text;t2_17ibsr;False;False;[];;Damn, I understand his motives for revenge and it's reasonable but it's still fucked up. Well both sides are fucked up.;False;False;;;;1610615655;;False;{};gj7n97g;False;t3_kwisyw;False;True;t1_gj7m91h;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7n97g/;1610693183;0;True;False;anime;t5_2qh22;;0;[]; -[];;;pa-sama3;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_6ffle8jt;False;False;[];;Done hahahhaa;False;False;;;;1610615669;;False;{};gj7n9pm;False;t3_kwisyw;False;True;t1_gj4nxw3;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7n9pm/;1610693191;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pa-sama3;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_6ffle8jt;False;False;[];;Nice;False;False;;;;1610615695;;False;{};gj7nao2;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7nao2/;1610693206;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610616336;;False;{};gj7nxa5;False;t3_kwisyw;False;True;t1_gj73nrx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7nxa5/;1610693584;0;True;False;anime;t5_2qh22;;0;[]; -[];;;GeorgeRRZimmerman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CoupleOWeebs;light;text;t2_gunkt;False;False;[];;"As someone who absolutely loved Nozoki Ana: no, it's not really good. It's mostly crap. - -But god, that manga hit me the way Toradora hit your average anime subredditor. I can't quantify it. - -But was it good? Nah. It was just good *to me.* - -Edit: Sorry guys, but Tsundere Pervert Love Interest and Wet Paper Napkin Protagonist don't exactly make for particularly good leads. And the story was literally ""Look how horny I am despite my best intentions."" - -I couldn't put it down because I'm gross inside, but trying to sell it to anyone as a ""good read"" is bullshit.";False;False;;;;1610617013;;1610680249.0;{};gj7ol37;False;t3_kwisyw;False;True;t1_gj743ye;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7ol37/;1610693967;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;GeorgeRRZimmerman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CoupleOWeebs;light;text;t2_gunkt;False;False;[];;"""I'm not crying, *you're crying!*""";False;False;;;;1610617145;;False;{};gj7opl7;False;t3_kwisyw;False;False;t1_gj62wsh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7opl7/;1610694045;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Orsonius2;;;[];;;;text;t2_204y9owl;False;True;[];;"I went ahead and started reading the manga - -HOW THE FUCK WILL THEY ANIMATE THIS WITHOUT GETTING INTO SERIOUS TROUBLE?! - -like I remember the Goblin Slayer rape episode but this is like goblin slayer rape every other episode";False;False;;;;1610617253;;False;{};gj7ot9q;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7ot9q/;1610694106;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610617379;;False;{};gj7oxm6;False;t3_kwisyw;False;True;t1_gj7mag6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7oxm6/;1610694172;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610617441;;False;{};gj7ozse;False;t3_kwisyw;False;True;t1_gj7mjhc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7ozse/;1610694205;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Orsonius2;;;[];;;;text;t2_204y9owl;False;True;[];;"OMG these are some exceptionally well drawn nipples - -holy fucking shit I hope they go full balls to the walls with this show and say fuck it all. the glorious degeneracy at this level of production will be better than most hentai";False;False;;;;1610617517;;False;{};gj7p2gh;False;t3_kwisyw;False;False;t1_gj5fjam;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7p2gh/;1610694253;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610617904;;False;{};gj7pfr3;False;t3_kwisyw;False;True;t1_gj4l5r2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7pfr3/;1610694457;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mocha_Delicious;;;[];;;;text;t2_7r9knxg;False;False;[];;"i didnt know anything before the anime but from what i gathered its (literal?) revenge porn - -but theres a lot of revenge anime, what makes this one shitty?";False;False;;;;1610618289;;False;{};gj7psy5;False;t3_kwisyw;False;False;t1_gj7494s;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7psy5/;1610694657;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Mocha_Delicious;;;[];;;;text;t2_7r9knxg;False;False;[];;"dont know anything before watching the anime, but isnt he abused by everyone (not just females) ? - -Also, isnt having sex with a lot of females kinda anti-incel?";False;False;;;;1610618434;;False;{};gj7pxwx;False;t3_kwisyw;False;False;t1_gj7legl;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7pxwx/;1610694733;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Corviasbir;;;[];;;;text;t2_96ehmwh6;False;False;[];;Rape, torture, over-edgy MC, etc. It’s an incel’s wet dream. The only reason this caught the attention of anime viewers is because oh how shitty it is.;False;False;;;;1610618460;;False;{};gj7pyuv;False;t3_kwisyw;False;True;t1_gj7psy5;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7pyuv/;1610694747;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Corviasbir;;;[];;;;text;t2_96ehmwh6;False;False;[];;People are downvoting you because they actually agree that revenge rape is ok.;False;False;;;;1610618515;;1610646274.0;{};gj7q0pv;False;t3_kwisyw;False;True;t1_gj7legl;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7q0pv/;1610694776;0;True;False;anime;t5_2qh22;;0;[]; -[];;;anonttt;;;[];;;;text;t2_hlt0n;False;False;[];;Except Komi-san.;False;False;;;;1610619016;;False;{};gj7qhtu;False;t3_kwisyw;False;True;t1_gj4tq2x;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7qhtu/;1610695054;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610619075;;False;{};gj7qjuk;False;t3_kwisyw;False;True;t1_gj7pxwx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7qjuk/;1610695086;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610619075;;False;{};gj7qjux;False;t3_kwisyw;False;True;t1_gj590lz;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7qjux/;1610695086;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610619769;;False;{};gj7r7y1;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7r7y1/;1610695458;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Funkyryoma;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_jb5poxm;False;False;[];;Pretty bad first impression for this anime ngl;False;False;;;;1610620813;;False;{};gj7s99y;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7s99y/;1610696053;0;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;fair point.;False;False;;;;1610620965;;False;{};gj7sequ;False;t3_kwisyw;False;False;t1_gj5b478;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7sequ/;1610696144;1;True;False;anime;t5_2qh22;;0;[]; -[];;;consolefreakedorigin;;;[];;;;text;t2_2baqt95w;False;False;[];;We are in for a treat;False;False;;;;1610621266;;False;{};gj7spfq;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7spfq/;1610696314;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hecklers_veto;;;[];;;;text;t2_6hx3xnvh;False;False;[];;that's called copying;False;False;;;;1610621284;;False;{};gj7sq3g;False;t3_kwisyw;False;False;t1_gj56vg6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7sq3g/;1610696323;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaishin1999;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Hakaishin99;light;text;t2_5tlrzbr7;False;False;[];;I didn't plan to see it right away, but I was curious and watched the episode. Well, I like it and I'm sure I'll continue watching it on simulcast. The story seems really good and interesting, the only problem is the presence of intense and uncensored scenes(I have nothing against ecchi or fanservice, but it's cringe for me to see such uncensored and hentai-like scenes XD). But in 24 minutes of anime there was a single 2 minutes scene, so if they won't exaggerate and will keep low quantity of H scenes, then there's no peoblem at all;False;False;;;;1610621290;;False;{};gj7sqah;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7sqah/;1610696327;0;True;False;anime;t5_2qh22;;0;[]; -[];;;JosephHitlerUn;;;[];;;;text;t2_3oi5qdpj;False;False;[];;"That’s the stupidest thing I’ve read all day. There’s a couple problems with that - -One the writer is female so she can’t be a incel - -Two it’s a revenge anime, just like attack on Titan or goblin slayer - -Three he is abused by everyone, not only did they do shit to him but they did shit to people close to him (men and women) and if I remember closely I think he was also raped by a man as well but I’m not entirely sure - -Four he doesn’t reincarnate he goes back in time to get his revenge. It’s pretty much if humans did what the goblins did to goblin slayer. As for the sex part it’s an ecchi anime like ishuzoku reviewer or yosuga no sora, though it’s not like everyone watches for the ecchi scenes, I personally love revenge anime so that’s the only reason I need";False;False;;;;1610621319;;False;{};gj7srb7;False;t3_kwisyw;False;True;t1_gj7legl;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7srb7/;1610696342;4;True;False;anime;t5_2qh22;;0;[]; -[];;;consolefreakedorigin;;;[];;;;text;t2_2baqt95w;False;False;[];;"I has two options -Censored -Uncensored -We all know what I picked";False;False;;;;1610621340;;False;{};gj7ss1q;False;t3_kwisyw;False;True;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7ss1q/;1610696354;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OneHappyMelon;;;[];;;;text;t2_ll14b;False;False;[];;"I could deal with this as a popcorn show. The more you try to make sense of it, the stupider and cringier it appears, but if you turn your brain off and just enjoy the animation, violence, and copious amounts of sex a la Game of Thrones style, then you can actually get enjoyment out of it. - -Also as a mainly support/healer player in mmos and mobas, seeing a healer steal the spotlight for once has a somewhat soothing effect";False;False;;;;1610621535;;False;{};gj7sz0h;False;t3_kwisyw;False;False;t1_gj5gbe7;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7sz0h/;1610696463;22;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610621605;;False;{};gj7t1n7;False;t3_kwisyw;False;True;t1_gj55xf2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7t1n7/;1610696502;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HayakuEon;;;[];;;;text;t2_hwuazl5;False;False;[];;Yeah, I'd say the whole draw of the show(based on the 1st episode) is basically the MC can do anything and it's justified. His previous life fucked him up, to the point of probably being worse off than a slave.;False;False;;;;1610621987;;False;{};gj7tfck;False;t3_kwisyw;False;True;t1_gj7iu85;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7tfck/;1610696715;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;god i wish we get a rance anime, the hentai was solid but not enough comedy to be rance;False;False;;;;1610623076;;False;{};gj7ujyo;False;t3_kwisyw;False;True;t1_gj4k0kj;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7ujyo/;1610697335;1;True;False;anime;t5_2qh22;;0;[]; -[];;;C-tierboi;;;[];;;;text;t2_16y414;False;False;[];;i guess its healing in the same way josuke is technically a healer;False;False;;;;1610623363;;False;{};gj7uuun;False;t3_kwisyw;False;True;t1_gj55rf6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7uuun/;1610697499;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;Or just the ultimate autoimmune disease;False;False;;;;1610623759;;False;{};gj7va9r;False;t3_kwisyw;False;False;t1_gj5i1bf;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7va9r/;1610697755;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;Be careful what you wish for;False;False;;;;1610623809;;False;{};gj7vc71;False;t3_kwisyw;False;False;t1_gj6pxvo;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7vc71/;1610697784;13;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610623882;;False;{};gj7vf2j;False;t3_kwisyw;False;True;t1_gj6qahu;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7vf2j/;1610697829;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610624375;;False;{};gj7vy1t;False;t3_kwisyw;False;True;t1_gj4s5np;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7vy1t/;1610698122;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Guaaaamole;;;[];;;;text;t2_12hpljhk;False;False;[];;"So, I haven't read it but as far as I understood he got it to see his past, or am I mistaken? Otherwise he would have never known about the reset. It serving purpose beyond that (like seeing other peoples names and ""stats"") is still a question mark to me.";False;False;;;;1610624723;;False;{};gj7wbhf;False;t3_kwisyw;False;True;t1_gj7a7vw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7wbhf/;1610698323;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;^^\(Psst, ^^you ^^have ^^a ^^dupe ^^image);False;False;;;;1610624816;;False;{};gj7wf67;False;t3_kwisyw;False;True;t1_gj4tn2w;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7wf67/;1610698377;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;"Looks like ""hey let's fuck right now""? Because anything less would be a shameful display on his part.";False;False;;;;1610624889;;False;{};gj7wi3c;False;t3_kwisyw;False;False;t1_gj5edkf;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7wi3c/;1610698421;6;True;False;anime;t5_2qh22;;0;[]; -[];;;0ppaiHero;;;[];;;;text;t2_9jxb9fbr;False;False;[];;Lol try to anime this sht your self! Stoo complaining try to watch ex arm;False;False;;;;1610624956;;False;{};gj7wkov;False;t3_kwisyw;False;False;t1_gj7lqyl;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7wkov/;1610698461;6;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;"That's not too weird, if healing is power over the human body. For example in the web novel ""Worm"" (which is basically a superhero story), there's one character who is a healer, but she can also use her powers to harm; all she has to do is alter one organ's functionality or accelerate too much the growth of cells and boom, person's dead. She's also utterly terrified of ever trying to fix brain damage because she thinks she might just ""kill"" the person and replace them with a different one, since she needs a pattern to go with to reconstruct stuff, and filling in holes *in a brain* with just what she makes up means creating a different personality.";False;False;;;;1610625242;;False;{};gj7ww08;False;t3_kwisyw;False;True;t1_gj55rf6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7ww08/;1610698630;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;Wouldn't that be leukemia, which is also cancer?;False;False;;;;1610625288;;False;{};gj7wxtz;False;t3_kwisyw;False;False;t1_gj7va9r;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7wxtz/;1610698656;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;From what I've heard about this, Ishuzoku Reviewers was significantly more wholesome. Lots of sex but all consensual. Even the sex workers don't seem to have a particularly bad time, and in some cases look like they're just doing it as a fun side job themselves.;False;False;;;;1610625351;;False;{};gj7x0av;False;t3_kwisyw;False;False;t1_gj4tq2x;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7x0av/;1610698694;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"For a second, I thought you were referring to ""Nidome no Yuusha"", Second Time Hero on the Path of Vengeance, or something like that.";False;False;;;;1610625429;;False;{};gj7x3f0;False;t3_kwisyw;False;True;t1_gj4s05c;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7x3f0/;1610698742;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610625742;;False;{};gj7xfz9;False;t3_kwisyw;False;True;t1_gj5gmtq;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7xfz9/;1610698934;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;Wow, so the stupider the thing said on Twitter is, the more widespread the reaction? What a stunning revelation.;False;False;;;;1610625919;;False;{};gj7xn1p;False;t3_kwisyw;False;True;t1_gj4snxg;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7xn1p/;1610699042;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;Lel. Moralist crusaders;False;False;;;;1610626635;;False;{};gj7ygzb;False;t3_kwisyw;False;True;t1_gj4jgh2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7ygzb/;1610699484;1;True;False;anime;t5_2qh22;;0;[]; -[];;;luigi1er;;;[];;;;text;t2_1dl1yixh;False;False;[];;Maybe it's because I read the manga, but it felt kinda rushed. I was expecting the whole episode to end when the MC heals the world, not when he collapsed later. Not only you don't really establish how much he suffered, but the episode ends in a not interesting place which is a bummer for a first episode. I hope it will the pacing will be better next time.;False;False;;;;1610626701;;False;{};gj7yjur;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7yjur/;1610699526;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610627179;;False;{};gj7z4lk;False;t3_kwisyw;False;True;t1_gj7ozse;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7z4lk/;1610699835;1;True;False;anime;t5_2qh22;;0;[]; -[];;;meDeadly1990;;;[];;;;text;t2_8swbe;False;False;[];;Nonononono;False;False;;;;1610627190;;False;{};gj7z54c;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7z54c/;1610699843;0;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 150, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Thank you stranger. Shows the award.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'icon_width': 2048, 'id': 'award_f44611f1-b89e-46dc-97fe-892280b13b82', 'is_enabled': True, 'is_new': False, 'name': 'Helpful', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610627268;;False;{};gj7z8ib;False;t3_kwisyw;False;True;t1_gj7oxm6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7z8ib/;1610699896;1;True;False;anime;t5_2qh22;;1;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610627300;;False;{};gj7z9y6;False;t3_kwisyw;False;True;t1_gj53vce;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7z9y6/;1610699917;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Game2015;;;[];;;;text;t2_poe9a;False;False;[];;"Ushiro no Shoumen Kamui-san - -That's totally going to happen a couple of years later!";False;False;;;;1610627467;;False;{};gj7zh9v;False;t3_kwisyw;False;True;t1_gj4tq2x;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7zh9v/;1610700028;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610627481;;False;{};gj7zhx4;False;t3_kwisyw;False;True;t1_gj7fccj;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7zhx4/;1610700038;3;True;False;anime;t5_2qh22;;0;[]; -[];;;meDeadly1990;;;[];;;;text;t2_8swbe;False;False;[];;This show is MUCH worse, trust me.;False;False;;;;1610627564;;False;{};gj7zllf;False;t3_kwisyw;False;False;t1_gj6xskc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7zllf/;1610700092;6;True;False;anime;t5_2qh22;;0;[]; -[];;;arms98;;;[];;;;text;t2_rkxkj;False;False;[];;Haven seen anything wrong with girl #3;False;False;;;;1610627584;;False;{};gj7zmgl;False;t3_kwisyw;False;True;t1_gj6zfga;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj7zmgl/;1610700108;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DoctorLolicon;;;[];;;;text;t2_9sla5hey;False;False;[];;I love how the very existence of this show makes loser moral busybodies seethe. I wouldn't have even known about this show or Goblin Slayer if it wasn't for the whiners, keep it up.;False;False;;;;1610627941;;False;{};gj802ge;False;t3_kwisyw;False;True;t1_gj762ct;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj802ge/;1610700362;4;False;False;anime;t5_2qh22;;0;[]; -[];;;psychsucks;;;[];;;;text;t2_7pinf0kz;False;False;[];;"My biggest question right now is what exactly does the MC remember? - -Does he remember his entire past life? His experiences from healing other people? - -Or does he remember only the pain inflicted upon him? Does the awful experiences he gain from other people considered pain so he remembers it?";False;False;;;;1610628180;;False;{};gj80dii;False;t3_kwisyw;False;True;t1_gj4mlkk;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj80dii/;1610700523;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610628207;;1610628441.0;{};gj80eqc;False;t3_kwisyw;False;True;t1_gj7srb7;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj80eqc/;1610700540;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;psychsucks;;;[];;;;text;t2_7pinf0kz;False;False;[];;I dunno I just like seeing justice being dealt;False;False;;;;1610628474;;False;{};gj80rf5;False;t3_kwisyw;False;False;t1_gj7494s;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj80rf5/;1610700732;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610628761;;False;{};gj815ap;False;t3_kwisyw;False;True;t1_gj51pfw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj815ap/;1610700946;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Chiyousagi;;MAL;[];;https://myanimelist.net/animelist/Chiyousagi;dark;text;t2_14d80t;False;False;[];;"Well depending on context(not referring to this anime since not a source reader myself but in general) it is possible for healing magic to cause harm to living being. It boils down to whether the magic is ""technical"" or not. ie Does the magic system requires understanding and individual manipulation to achieve the result or is it just fire and forget. If it is the former, then ""magic"" in that universe is just another form of science and I am sure you can see now how heal can be used to decompose a human on a molecular level, aka onii sama lol. - -tl:dr If magic is technical, mage/healer can simply cast reverse healing literally.";False;False;;;;1610628796;;False;{};gj816yg;False;t3_kwisyw;False;True;t1_gj55rf6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj816yg/;1610700970;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610628861;;False;{};gj81a5l;False;t3_kwisyw;False;True;t1_gj5aury;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj81a5l/;1610701017;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610629004;;False;{};gj81h5w;False;t3_kwisyw;False;True;t1_gj5iu1t;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj81h5w/;1610701123;3;True;False;anime;t5_2qh22;;0;[]; -[];;;R3pN1xC;;;[];;;;text;t2_36jvxgl5;False;False;[];;90% of this thread is people complaining about a non existent twitter outrage.;False;False;;;;1610629038;;False;{};gj81iz9;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj81iz9/;1610701150;8;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"This post has been removed. - -- Links to or other obvious direction toward pirate, illegal, or unofficial anime content are not allowed. - - This includes links to unofficial translations/scanlations of light novels, visual novels, and manga, unofficial anime streams, torrent sites, unofficially uploaded full OSTs, and images and video containing watermarks from any of the previously mentioned websites. -Leading others to illegal streams or torrents includes **explicitly mentioning specific streaming/torrenting sites**, offers to send users illegal content, and leading to proxy services to circumvent licensing. In addition, proxy services are also forbidden. - - Additionally, images and videos containing watermarks of the previously mentioned website are also forbidden. - - Repeated violations of this rule will result in a ban. - ---- -^(Have a question or think this removal was an error?) **[^(Message the mods.)](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)** -^(Don't know the rules? Read them )**[^(here)](/r/anime/wiki/rules)**^.";False;False;;;;1610629216;moderator;False;{};gj81rve;False;t3_kwisyw;False;True;t1_gj7pfr3;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj81rve/;1610701285;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;"[The semi-dazed staggering here is pretty nicely animated](https://i.imgur.com/fBXTF9M.jpeg) - -[Here's where huge anime eyes come in handy!](https://i.imgur.com/sCceOJL.jpg) - -[""Or *what.*""](https://i.imgur.com/7vbwmQj.jpeg) - -[Aw, not you too, Bullet! You were the cool-looking one!](https://i.imgur.com/P1v2eLh.jpg) - -[Noel ain't gonna like that](https://i.imgur.com/3N2o4IC.jpg) - -[Now he, on the other hand, is clearly playing to type](https://i.imgur.com/sceYGTn.jpeg) - -[Is he taking XP or cleaning skills?](https://i.imgur.com/gvJEpST.jpg)";False;False;;;;1610629223;;False;{};gj81s7s;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj81s7s/;1610701290;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Leaves_Swype_Typos;;;[];;;;text;t2_arcs5;False;False;[];;"I just read the first volume of the manga, and it's explained poorly in both, but together I now understand. Apparently when he gained the Gamer Sight, it made him regain his pre-timewarp memories ***somehow***, and the reason he went to get the Gamer Sight is because he found out about the Spirit Covenant from a memory of someone he'd healed and ***somehow*** told his post-timewarp younger self to get it. Also never explained how he used his heal to steal experience points from the maids. - -By god though, the amount of video game stuff in the manga at this point was even worse. I can believe someone writing the rape fantasy, but I can't believe people who write worlds to function unironically identical to a video game in mechanics as if it makes any god damn sense.";False;False;;;;1610629272;;1610630088.0;{};gj81unf;False;t3_kwisyw;False;True;t1_gj7wbhf;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj81unf/;1610701330;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ENKlDU;;;[];;;;text;t2_4scvchzo;False;False;[];;Redditor’s are something huh;False;False;;;;1610629406;;False;{};gj821ah;False;t3_kwisyw;False;True;t1_gj6ah3w;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj821ah/;1610701433;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610629588;;False;{};gj82aj9;False;t3_kwisyw;False;True;t1_gj4l0ja;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj82aj9/;1610701569;0;True;False;anime;t5_2qh22;;0;[]; -[];;;R3pN1xC;;;[];;;;text;t2_36jvxgl5;False;False;[];;SJW OWNED IN LE EPIC STYLE.;False;False;;;;1610630265;;False;{};gj839y8;False;t3_kwisyw;False;True;t1_gj6hlqo;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj839y8/;1610702109;1;True;False;anime;t5_2qh22;;0;[]; -[];;;manept;;;[];;;;text;t2_utpsw;False;False;[];;"I don't think he saw what happened after the demon lord battle as his ""full"" revenge though. I mean sure, he beat the demon lord, but the princess was still alive and well, and the impression I get is that he wants to break her and everyone of her team like they broke him, while also getting a better status for himself instead of just being the ""healing slave trash"".";False;False;;;;1610631310;;False;{};gj84v3r;False;t3_kwisyw;False;True;t1_gj6we0j;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj84v3r/;1610702968;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Orsonius2;;;[];;;;text;t2_204y9owl;False;True;[];;"someone explain to me why Flare or Freya (depending on translation) looks sooooo different in the anime poster than she does in the anime (blue eye on poster, green right now) - -is this because of the memory loss? Why does she look so much more round though? Like her face is all round and cuddly, also as I said her eye color changes";False;False;;;;1610631483;;False;{};gj854xm;False;t3_kwisyw;False;True;t1_gj4cvpu;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj854xm/;1610703114;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rogojinen;;;[];;;;text;t2_pagk4;False;False;[];;I can't believe this is what annoyed me the most with the start, but I really didn't get too how his party didn't see how op is healing was, especially Flare with the wizard dude explaining to her how it want beyond what is usually possible.;False;False;;;;1610631493;;False;{};gj855k8;False;t3_kwisyw;False;False;t1_gj6vmey;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj855k8/;1610703123;8;True;False;anime;t5_2qh22;;0;[]; -[];;;kriosken12;;;[];;;;text;t2_3zpju4rz;False;False;[];;No, I don't think I will.;False;False;;;;1610632259;;False;{};gj86enk;False;t3_kwisyw;False;False;t1_gj7nxa5;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj86enk/;1610703815;6;True;False;anime;t5_2qh22;;0;[]; -[];;;zhznzjsjxnnss;;;[];;;;text;t2_5n6kvued;False;False;[];;It's not an isekai though.;False;False;;;;1610632662;;False;{};gj873ip;False;t3_kwisyw;False;True;t1_gj4t0uy;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj873ip/;1610704194;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JosephHitlerUn;;;[];;;;text;t2_3oi5qdpj;False;False;[];;"Have you ever heard of the code of hammurabi’s - -It’s and eye for an eye, in this case rape for rape, exactly what scum like them deserve (you’ll see later on)";False;False;;;;1610632741;;False;{};gj878h6;False;t3_kwisyw;False;True;t1_gj7legl;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj878h6/;1610704270;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;JosephHitlerUn;;;[];;;;text;t2_3oi5qdpj;False;False;[];;Anime is evolving past our expectations;False;False;;;;1610632876;;False;{};gj87gum;False;t3_kwisyw;False;False;t1_gj4xqjz;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj87gum/;1610704398;4;True;False;anime;t5_2qh22;;0;[]; -[];;;itzxzac;;;[];;;;text;t2_9rs87;False;False;[];;I think they ended it there because the script completely flips in the next episode, hell slightly after the next scene.;False;False;;;;1610633128;;False;{};gj87weu;False;t3_kwisyw;False;True;t1_gj7yjur;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj87weu/;1610704630;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vcdm;;;[];;;;text;t2_fup8p;False;False;[];;Sorry to inflate your inbox but could you send me the link you found the uncensored version at?;False;False;;;;1610633410;;False;{};gj88e6t;False;t3_kwisyw;False;True;t1_gj5q4sr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj88e6t/;1610704902;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610633484;;False;{};gj88itu;False;t3_kwisyw;False;True;t1_gj6ww3t;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj88itu/;1610704974;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610634692;;False;{};gj8aq43;False;t3_kwisyw;False;True;t1_gj7fccj;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8aq43/;1610706174;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;Oh I am going to love this. The entire story will just be a disgusting power-fantasy, but it will be unapolegetic which is amazing. If you are gonna be disgusting then at least be honest about it.;False;False;;;;1610634877;;False;{};gj8b2hr;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8b2hr/;1610706359;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Quackening;;MAL;[];;https://myanimelist.net/profile/mattymck;dark;text;t2_yk3i6;False;False;[];;After some research, I can't believe it's not hentai;False;False;;;;1610635718;;False;{};gj8cpib;False;t3_kwisyw;False;False;t1_gj4n9ea;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8cpib/;1610707280;4;True;False;anime;t5_2qh22;;0;[]; -[];;;shingg919;;;[];;;;text;t2_bm88ybb;False;False;[];;I like crazy anime. love it.;False;False;;;;1610635727;;False;{};gj8cq3u;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8cq3u/;1610707289;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Addertongue;;;[];;;;text;t2_2j3epgg3;False;False;[];;Well it didn't need to end there. He didn't just beat the demon lord and tricked his team, he obtained infinite power. He could've used that power to improve his status and destroy everything the princess had and do whatever he wants to her. Instead he decided to restart the server. Doesn't make a lot of sense to me if his goal is revenge.;False;False;;;;1610635948;;False;{};gj8d6bt;False;t3_kwisyw;False;True;t1_gj84v3r;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8d6bt/;1610707537;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JosephHitlerUn;;;[];;;;text;t2_3oi5qdpj;False;False;[];;Why won’t will you marry me again if you are reborn get an adaptation, it looks interesting enough;False;False;;;;1610636060;;False;{};gj8deez;False;t3_kwisyw;False;False;t1_gj6x0by;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8deez/;1610707660;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JosephHitlerUn;;;[];;;;text;t2_3oi5qdpj;False;False;[];;Enjoy that 69th upvote friend;False;False;;;;1610636103;;False;{};gj8dhm9;False;t3_kwisyw;False;True;t1_gj4sy26;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8dhm9/;1610707708;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JosephHitlerUn;;;[];;;;text;t2_3oi5qdpj;False;False;[];;Yes it is;False;False;;;;1610636185;;False;{};gj8dnmg;False;t3_kwisyw;False;False;t1_gj4w311;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8dnmg/;1610707799;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610636190;;False;{};gj8dnzh;False;t3_kwisyw;False;True;t1_gj878h6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8dnzh/;1610707805;0;True;False;anime;t5_2qh22;;0;[]; -[];;;JosephHitlerUn;;;[];;;;text;t2_3oi5qdpj;False;False;[];;The voice acting is one of my favorites, you can tell the VA put in a ton of effort in (more than the luffy English dub VA ever could);False;False;;;;1610636308;;False;{};gj8dwl2;False;t3_kwisyw;False;True;t1_gj4t0uy;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8dwl2/;1610707938;3;True;False;anime;t5_2qh22;;0;[]; -[];;;manept;;;[];;;;text;t2_utpsw;False;False;[];;"My guess is his logic was ""Why go through the trouble of fixing what's broken right now when I can go back in time and just never let it be broken in the first place?"" -I'm assuming that, since both the princess, her group, the king, and probably the kingdom in general, are rotten humans, atrocities were probably committed (stuff like demon genocide, or his adoptive mom being killed), so better to make it so those things never happened in the first place. - - -On the other hand, I might be completely wrong here and all he wanted was to go back and bang those maids. Let's be honest here, MC doesn't seem to be all there.";False;False;;;;1610636402;;False;{};gj8e3im;False;t3_kwisyw;False;True;t1_gj8d6bt;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8e3im/;1610708047;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610636405;;False;{};gj8e3sq;False;t3_kwisyw;False;True;t1_gj5a1sp;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8e3sq/;1610708051;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JosephHitlerUn;;;[];;;;text;t2_3oi5qdpj;False;False;[];;In the good way;False;False;;;;1610636574;;False;{};gj8eg0u;False;t3_kwisyw;False;False;t1_gj7zllf;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8eg0u/;1610708237;4;True;False;anime;t5_2qh22;;0;[]; -[];;;JosephHitlerUn;;;[];;;;text;t2_3oi5qdpj;False;False;[];;To be fair this is what happens when you experience all of someone’s pain and emotion from healing, the only reason tatsuya from irregular is even slight sane is because he can’t even feel emotion any more;False;False;;;;1610636650;;False;{};gj8elkt;False;t3_kwisyw;False;True;t1_gj4v2pl;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8elkt/;1610708319;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JosephHitlerUn;;;[];;;;text;t2_3oi5qdpj;False;False;[];;Lol I love how repaying someone for what they did to you is considered incel, and your reply is to threaten my mother. Grow the fuck up kid. These bitches deserve it, they raped him, they rape his only friend, they are the lowest of the low;False;False;;;;1610637144;;False;{};gj8fm57;False;t3_kwisyw;False;True;t1_gj8dnzh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8fm57/;1610708895;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wjodendor;;;[];;;;text;t2_f2f741;False;False;[];;Neat. Thanks for the info.;False;False;;;;1610637772;;False;{};gj8gyjr;False;t3_kwisyw;False;True;t1_gj6qgiq;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8gyjr/;1610709680;1;True;False;anime;t5_2qh22;;0;[]; -[];;;itzxzac;;;[];;;;text;t2_9rs87;False;False;[];;Agreed. It's definitely poorly explained, I would highly recommend to anyone confused on the small details to read the manga.;False;False;;;;1610637936;;False;{};gj8hb64;False;t3_kwisyw;False;True;t1_gj81unf;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8hb64/;1610709887;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZestycloseAd2042;;;[];;;;text;t2_7usnu9j8;False;False;[];;Where do I watch the uncensored version?;False;False;;;;1610638200;;False;{};gj8hv3t;False;t3_kwisyw;False;False;t1_gj5fjam;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8hv3t/;1610710217;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeGirlMariam;;;[];;;;text;t2_5k8efnfk;False;False;[];;Edgy;False;False;;;;1610638486;;False;{};gj8ih87;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8ih87/;1610710581;0;True;False;anime;t5_2qh22;;0;[]; -[];;;KnightKal;;;[];;;;text;t2_pwr4duc;False;False;[];;"he is the healing hero, so it is not assumed he can help with DPS. Then you make a heroes party financed by the kingdom, which means they can buy all the elixirs they want. That makes a healing hero useless. Cant help with DPS. They do not need his healing either. He is baggage for the journey. - -each hero gives a team buff for XP, so they will still carry him around. - -if they had time they would just kill him and force another hero to be born next year, they go pick that one up. - -that is what you saw in the flashback/future scene of they fighting the demon lord. They lost the battle and ran out of potions, but as they never paid attention to the team healer ... they died. - -there are a bunch of nasty stuff too, like how that old mage wanted to experiment with his healing spell (that is not the same as normal healers) to try to hack how it works. Which means drugging, torturing, etc the hero. And a lot more nasty stuff done to him. - -&#x200B; - -to make things clear: healing mage is awesome. If he was by himself. He would be like a saint doing miracles, could be super rich by healing people, or just a nice dude and going around healing the poor. But he was taken by the king and put to work, no way to say no, and that is why he suffered that fate.";False;False;;;;1610638622;;False;{};gj8irt1;False;t3_kwisyw;False;True;t1_gj5sx48;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8irt1/;1610710760;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KnightKal;;;[];;;;text;t2_pwr4duc;False;False;[];;each hero is worst than the next lol, the king is crazy, the nobles are corrupted, the world should just burn down haha.;False;False;;;;1610638828;;False;{};gj8j7nm;False;t3_kwisyw;False;True;t1_gj7ix6b;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8j7nm/;1610711034;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KnightKal;;;[];;;;text;t2_pwr4duc;False;False;[];;that will be covered on episode 2 I think, there is a good reason for that.;False;False;;;;1610638872;;False;{};gj8jazn;False;t3_kwisyw;False;True;t1_gj854xm;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8jazn/;1610711090;3;True;False;anime;t5_2qh22;;0;[]; -[];;;onthoserainydays;;;[];;;;text;t2_8zyswoyn;False;False;[];;Ah yes, the very worst Japan has to offer;False;True;;comment score below threshold;;1610638927;;False;{};gj8jf8j;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8jf8j/;1610711159;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610640508;;False;{};gj8muue;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8muue/;1610713313;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610640626;;1610652307.0;{};gj8n448;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8n448/;1610713483;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;preciousleo;;;[];;;;text;t2_14n9vb;False;False;[];;thank you;False;False;;;;1610641227;;False;{};gj8ofdu;False;t3_kwisyw;False;True;t1_gj7n2wd;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8ofdu/;1610714343;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LightswornMagi;;;[];;;;text;t2_bgdkdk0;False;False;[];;"At the end of the day, it don't really matter *why* someone became an evil person. - -Knowing what lead him to that point doesn't make him likeable, -and being able to understand or pity him doesn't make him less of a gleeful little goblin who basks in the suffering of others and sees everything around him only as tools for his benefit. - -And any good that results indirectly from his selfish actions doesn't justify them.";False;False;;;;1610641786;;False;{};gj8po8o;False;t3_kwisyw;False;True;t1_gj4zvnl;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8po8o/;1610715162;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IUTLK;;;[];;;;text;t2_12uux3;False;False;[];;"Yeah that’s pretty much what I mean. - - - -It’s like, the typical edgy incel fantasy wish fulfilment. I really don’t know how else to see this";False;False;;;;1610642327;;False;{};gj8qvn8;False;t3_kwisyw;False;True;t1_gj7qjuk;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8qvn8/;1610715989;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yaboinigel;;;[];;;;text;t2_rvzmabo;False;False;[];;If the industry can adapt interspicies, they can adapt anything;False;False;;;;1610642475;;False;{};gj8r7so;False;t3_kwisyw;False;True;t1_gj50hzh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8r7so/;1610716211;1;True;False;anime;t5_2qh22;;0;[]; -[];;;evildoerz;;;[];;;;text;t2_11rvwm;False;False;[];;Link plz;False;False;;;;1610642573;;False;{};gj8rfk5;False;t3_kwisyw;False;True;t1_gj5ryd0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8rfk5/;1610716354;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yaboinigel;;;[];;;;text;t2_rvzmabo;False;False;[];;I was afraid they would tone it down allot when i heard it was being animated, but when i saw the “good stuff~” i knew they will show EVERYTHING;False;False;;;;1610642587;;False;{};gj8rgm4;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8rgm4/;1610716374;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IUTLK;;;[];;;;text;t2_12uux3;False;False;[];;" -One: Just because the writer is female doesn’t mean she can’t write incel wish fantasy. - - -Two: I don’t know what the fact that this is a revenge story has to do with my argument. If you could explain further it’d be appreciated - - -Three: Ok sure he gets abused by everyone. - - - -But notice how his “revenge” focus sorely on a girl? I don’t know if they had more context on the LN or manga but so far from what I’m seeing in the anime, he seems pretty fixed on only that one girl. - - -Four: How does that excuse my argument? Oh it’s not an incel fantasy cus the sex was intentional! Is just part of the genre! - - -I mean, it’s fine if you enjoy that type of show. But I’ll just say that it’s like a show that I could see a sad dude write.";False;False;;;;1610642791;;False;{};gj8rx6v;False;t3_kwisyw;False;True;t1_gj7srb7;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8rx6v/;1610716670;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;IUTLK;;;[];;;;text;t2_12uux3;False;False;[];;I mean I did call this show incel shit so I guess I understand why people wouldn’t like my comment lol;False;False;;;;1610642867;;False;{};gj8s3f8;False;t3_kwisyw;False;True;t1_gj7q0pv;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8s3f8/;1610716779;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;hoseja;;;[];;;;text;t2_3t2v4;False;False;[];;Isekai is wish-fulfillment after all.;False;False;;;;1610643010;;False;{};gj8sf3c;False;t3_kwisyw;False;True;t1_gj6x80c;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8sf3c/;1610717019;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kreinster;;;[];;;;text;t2_wb3r6;False;False;[];;I appreciate the spoiler. Thank you.;False;False;;;;1610643951;;False;{};gj8ul9u;False;t3_kwisyw;False;True;t1_gj65xqs;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8ul9u/;1610718556;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sagar21268;;;[];;;;text;t2_45iv7z53;False;False;[];;"I like such shows where a person displays what normally a person wants to do when exploited, people go on saying on the internet (to show their angelic side) that revenge is bad and shit but if someone punches you on your face or do something awful to your Nakama (friends), this is what most people want to do, they keep on thinking that if things were in their favor, then they will teach that bastard a lesson or if they were in a world that they could return the kind gesture of that shithole - -Definitely taking revenge just makes the situation worse but I feel people advocating that such shows are bad are not angels themselves - -What is the harm in watching, if you don't like then either stop watching or if you are watching then stop complaining";False;False;;;;1610644266;;False;{};gj8vb2k;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8vb2k/;1610719065;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610644942;;False;{};gj8wv82;False;t3_kwisyw;False;True;t1_gj5gfbr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8wv82/;1610720216;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Purest_Prodigy;;MAL;[];;"http://myanimelist.net/animelist/Purest_Prodigy?&order=4";dark;text;t2_bt3t9;False;False;[];;Can confirm this is the case.;False;False;;;;1610645599;;False;{};gj8yd04;False;t3_kwisyw;False;True;t1_gj4jp7v;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8yd04/;1610721231;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"There almost as much comments as upvotes - -I am disappointed that we won't reach the top 15 this Saturday, man how funny that would be, next time don't just comment for a link upvote the discussion";False;False;;;;1610645782;;False;{};gj8yrxh;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8yrxh/;1610721521;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Purest_Prodigy;;MAL;[];;"http://myanimelist.net/animelist/Purest_Prodigy?&order=4";dark;text;t2_bt3t9;False;False;[];;"Late to the party, so I'm hoping people are sorting by new, and if not I guess I'll ask in next episode's thread, but I've got questions: - -This guy's motivation is to use the Philospher's Stone to reverse time and get his revenge. But it seemed like a pretty powerful object.... Couldn't he just have gotten his revenge and lived out his power fantasy without the need for time travel? - -Secondly, I'm guessing he's using his healing power to heal the maids after penetrating them? Is that enough to level up? Is this some purity circlejerking where he's restoring their hymens or something?";False;False;;;;1610645876;;False;{};gj8yzov;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8yzov/;1610721681;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;It won't because I love it to death so like all titles on there, I will never get one. Or worst, get a horribly done one.;False;False;;;;1610646093;;False;{};gj8zhaz;False;t3_kwisyw;False;True;t1_gj8deez;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8zhaz/;1610722024;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Barangat;;;[];;;;text;t2_1399lj;False;False;[];;"yeah, that was the first thing I thought, as they explained the healing. Needed a moment for the eye-comparison. - -He is like Tatsuyas shrewd twin brother who was kept in the attic for one lifetime to come haunt them now";False;False;;;;1610646238;;False;{};gj8zt4i;False;t3_kwisyw;False;True;t1_gj5zdmr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj8zt4i/;1610722263;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;They feel like they are mostly inspired by this sub, using the same humor as this sub and essentially being an extension of this sub, which is why I just rather browse this sub sometimes than watch an animetuber do the same kinds of jokes and share the same kinds of opinions on the same kinds of shows.;False;False;;;;1610646970;;False;{};gj91hk1;False;t3_kwisyw;False;True;t1_gj75v8h;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj91hk1/;1610723507;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610647095;;False;{};gj91rpi;False;t3_kwisyw;False;True;t1_gj78t3y;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj91rpi/;1610723707;6;True;False;anime;t5_2qh22;;0;[]; -[];;;lukeuntld072;;;[];;;;text;t2_y8pgd;False;False;[];;I dont understand why its that big of a deal. Alot of non anime shows like game of thrones for example also have sex and rape stuff in it.;False;False;;;;1610647574;;False;{};gj92ud4;False;t3_kwisyw;False;True;t1_gj4jkr7;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj92ud4/;1610724476;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610647645;;False;{};gj92zwi;False;t3_kwisyw;False;True;t1_gj4j9xx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj92zwi/;1610724580;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;yeah this mc isn't chaotic good, more like chaotic neutral with a sadistic streak.;False;False;;;;1610647738;;False;{};gj937d0;False;t3_kwisyw;False;True;t1_gj7ex23;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj937d0/;1610724720;1;True;False;anime;t5_2qh22;;0;[]; -[];;;echykr4;;;[];;;;text;t2_k4xht;False;False;[];;I've already watched that years ago.;False;False;;;;1610647778;;False;{};gj93aly;False;t3_kwisyw;False;True;t1_gj77g5j;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj93aly/;1610724781;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610647892;;False;{};gj93jqz;False;t3_kwisyw;False;True;t1_gj7r7y1;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj93jqz/;1610724955;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GlassKayak;;;[];;;;text;t2_9idktgby;False;False;[];;Or even better than that stop listening to cum brains like giggacuck.;False;False;;;;1610648165;;False;{};gj945gh;False;t3_kwisyw;False;True;t1_gj91hk1;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj945gh/;1610725376;0;True;False;anime;t5_2qh22;;0;[]; -[];;;aaa1e2r3;;;[];;;;text;t2_pckox;False;False;[];;I believe there was a live action adaptation, never seen it myself;False;False;;;;1610648454;;False;{};gj94snw;False;t3_kwisyw;False;True;t1_gj5vx6t;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj94snw/;1610725831;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aaa1e2r3;;;[];;;;text;t2_pckox;False;False;[];;Yes, it's on the high seas;False;False;;;;1610648780;;False;{};gj95ijc;False;t3_kwisyw;False;True;t1_gj6hmx8;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj95ijc/;1610726360;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Frozenkex;;;[];;;;text;t2_66clq;False;False;[];;entertainment.;False;False;;;;1610649533;;False;{};gj976p1;False;t3_kwisyw;False;False;t1_gj7494s;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj976p1/;1610727533;0;True;False;anime;t5_2qh22;;0;[]; -[];;;MABfan11;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MABfan11;light;text;t2_xdlmc;False;False;[];;177013 adaptation when?;False;False;;;;1610649777;;False;{};gj97q7s;False;t3_kwisyw;False;True;t1_gj4tq2x;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj97q7s/;1610727914;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Frozenkex;;;[];;;;text;t2_66clq;False;False;[];;"> it’s like a show that I could see a sad dude write. - -at the end of the day it doesnt matter. Its not something worth being outraged about. It may or may not be what you say it is, but it can be other things for other people and be entertainment. Regular people dont think about incels, dont research them, so they wouldnt even know what you mean.";False;False;;;;1610649858;;False;{};gj97wnl;False;t3_kwisyw;False;True;t1_gj8rx6v;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj97wnl/;1610728040;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkChaplain;;;[];;;;text;t2_3zc84;False;False;[];;I never stopped hoping for that one. Been 10 years since I started reading that one, then re-read when it finished, and it's been a periodic re-read ever since.;False;False;;;;1610649942;;False;{};gj9838a;False;t3_kwisyw;False;True;t1_gj5gfbr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9838a/;1610728165;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610650017;;False;{};gj989bb;False;t3_kwisyw;False;True;t1_gj7z8ib;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj989bb/;1610728281;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkChaplain;;;[];;;;text;t2_3zc84;False;False;[];;"A single OVA, which later got a ""director's cut"" edition with a bit of additional content. Sadly, it was with a largely irrelevant character in the spotlight, rather than Emiru or even Madoka. Really disappointing.";False;False;;;;1610650043;;False;{};gj98be4;False;t3_kwisyw;False;True;t1_gj7dy36;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj98be4/;1610728321;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610650087;;False;{};gj98eza;False;t3_kwisyw;False;True;t1_gj7xfz9;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj98eza/;1610728390;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610650153;;False;{};gj98k7i;False;t3_kwisyw;False;True;t1_gj51pfw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj98k7i/;1610728490;0;True;False;anime;t5_2qh22;;0;[]; -[];;;notathrowaway75;;MAL;[];;https://myanimelist.net/profile/notathrowaway75;dark;text;t2_fomut;False;False;[];;The reaction was way more extreme than the reaction yes.;False;False;;;;1610650165;;False;{};gj98l45;False;t3_kwisyw;False;True;t1_gj7xn1p;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj98l45/;1610728507;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkChaplain;;;[];;;;text;t2_3zc84;False;False;[];;I think that novel is too down to earth, for lack of a better term, to join the ranks of these adaptations anytime soon. It's too self-aware with more direct commentary on prostitution in general.;False;False;;;;1610650209;;False;{};gj98onk;False;t3_kwisyw;False;True;t1_gj5xm5n;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj98onk/;1610728576;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610650222;;False;{};gj98pre;False;t3_kwisyw;False;True;t1_gj7z4lk;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj98pre/;1610728597;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kazewatch;;;[];;;;text;t2_mqdki;False;False;[];;Yeah but live action adaptions are almost exclusively garbage. There was an OVA with near-hentai animation quality and it was an alright adaption of 2 chapters. But I’d really kill for a full adaptation and some OVA’s for Black Label. Nana to Kaoru is such a phenomenal series and a real stand-out in romcom manga that I’d love to see a high-quality adaption.;False;False;;;;1610650387;;False;{};gj9933r;False;t3_kwisyw;False;True;t1_gj94snw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9933r/;1610728864;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Redmon425;;;[];;;;text;t2_15ro6h;False;False;[];;"Just saw the uncensored version. MY GOD THE MAID SCENE WAS SO MUCH BETTER. - -I originally saw that there was supposed to be 3 versions though? Anyone know about the 3rd?";False;False;;;;1610650424;;False;{};gj9961j;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9961j/;1610728924;2;True;False;anime;t5_2qh22;;0;[]; -[];;;L0G1C_lolilover;;;[];;;;text;t2_1mn4jph1;False;False;[];;Raoul is truly next level i love that glorious bastard;False;False;;;;1610650791;;False;{};gj99zjj;False;t3_kwisyw;False;True;t1_gj4tshh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj99zjj/;1610729506;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OneHappyMelon;;;[];;;;text;t2_ll14b;False;False;[];;Yes I know, it just felt like I was watching one cause of the Shield Hero vibe the animation and music gave off.;False;False;;;;1610651041;;False;{};gj9ajal;False;t3_kwisyw;False;True;t1_gj873ip;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9ajal/;1610729905;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Frozenkex;;;[];;;;text;t2_66clq;False;False;[];;You made 16 posts in this thread about this anime. So we can expect to see more of that for next 12 weeks with you telling people how bad people are for still watching it?;False;False;;;;1610651054;;False;{};gj9akal;False;t3_kwisyw;False;True;t1_gj4snxg;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9akal/;1610729924;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;OneHappyMelon;;;[];;;;text;t2_ll14b;False;False;[];;"Same. Also I dont really get all of the hate on the source material. Sure its fucked up and there's alot of edgy rape and sex shit going on but people watch the much more mainstream Game of Thrones for fucks sake and I never saw GoT getting huge amounts of hate for the copious amounts of sex and rape they showed on cam. - -My only real criticism is that almost everyone in the story is a murdery/rapey asshole for no good reason whatsoever";False;False;;;;1610651239;;False;{};gj9ayyp;False;t3_kwisyw;False;True;t1_gj8dwl2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9ayyp/;1610730217;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610651459;;False;{};gj9bg8b;False;t3_kwisyw;False;True;t1_gj98k7i;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9bg8b/;1610730565;2;True;False;anime;t5_2qh22;;0;[]; -[];;;notathrowaway75;;MAL;[];;https://myanimelist.net/profile/notathrowaway75;dark;text;t2_fomut;False;False;[];;"You ever heard of the concept of dropping a show? - -Can we expect you telling people how bad people are and that ""its not something worth being outraged about"" in response to people disliking the show?";False;False;;;;1610651561;;False;{};gj9boet;False;t3_kwisyw;False;False;t1_gj9akal;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9boet/;1610730726;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610651776;;False;{};gj9c58w;False;t3_kwisyw;False;True;t1_gj9bg8b;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9c58w/;1610731042;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Addertongue;;;[];;;;text;t2_2j3epgg3;False;False;[];;But all of these things are already broken after the restart. He didnt reset any of that. This might be the dumbest MC I have ever seen.;False;False;;;;1610651813;;False;{};gj9c87e;False;t3_kwisyw;False;True;t1_gj8e3im;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9c87e/;1610731098;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Frozenkex;;;[];;;;text;t2_66clq;False;False;[];;"> people disliking the show - -well you arent someone who just ""dislikes a show"" are you? You are here armed and prepared and never intended to enjoy or like the show. So dont pretend that you genuinely just started watching it and dropped after somehow finding out its all going to be edgy rape in FUTURE episodes. No im sure youll be back for the spiciest episodes...";False;False;;;;1610651933;;False;{};gj9choa;False;t3_kwisyw;False;True;t1_gj9boet;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9choa/;1610731278;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Saint_Genghis;;;[];;;;text;t2_5kghjrdp;False;False;[];;Next week probably;False;False;;;;1610652150;;False;{};gj9cytv;False;t3_kwisyw;False;True;t1_gj7ii88;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9cytv/;1610731630;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610652249;;False;{};gj9d6pv;False;t3_kwisyw;False;True;t1_gj9c58w;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9d6pv/;1610731782;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kenjasama;;;[];;;;text;t2_9q2aelyc;False;False;[];;" -1.He had already lost too much of what was irreparably important and had to start over - -2. That is not healing, but looting \[recovery << heel >>\] that robs and absorbs power.";False;False;;;;1610652449;;False;{};gj9dml0;False;t3_kwisyw;False;True;t1_gj8yzov;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9dml0/;1610732095;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SHCreeper;;MAL;[];;https://myanimelist.net/animelist/SHCreeper I'm a Lolicon;dark;text;t2_fokyv;False;False;[];;[Basically this, lol](https://i.imgur.com/ItMY0jQ.png);False;False;;;;1610652569;;False;{};gj9dw7m;False;t3_kwisyw;False;True;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9dw7m/;1610732289;1;True;False;anime;t5_2qh22;;0;[]; -[];;;notathrowaway75;;MAL;[];;https://myanimelist.net/profile/notathrowaway75;dark;text;t2_fomut;False;False;[];;"The fuck are you even talking about. - ->So dont pretend that you genuinely just started watching it and dropped after somehow finding out its all going to be edgy rape in FUTURE episodes. - -I'm not pretending anything. You are aware that this show has source material and that people who read the source material can share what the series is about beforehand right? That happened with me, and then I read some of the manga and watched part of the episode to verify for myself.";False;False;;;;1610652687;;False;{};gj9e5os;False;t3_kwisyw;False;True;t1_gj9choa;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9e5os/;1610732492;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nadineHerrera;;;[];;;;text;t2_9235pvdr;False;False;[];;no one asked;False;False;;;;1610653462;;False;{};gj9fui0;False;t3_kwisyw;False;True;t1_gj5i2dq;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9fui0/;1610733697;0;True;False;anime;t5_2qh22;;0;[]; -[];;;IUTLK;;;[];;;;text;t2_12uux3;False;False;[];;"Oh yeah for sure. I never said that this anime needs to be banned and stuff, but I just wanted to express my sentiment about what I feel about this anime. - - - -If people like it good for them, It’s personally not my type of anime";False;False;;;;1610654577;;False;{};gj9ia1x;False;t3_kwisyw;False;True;t1_gj97wnl;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9ia1x/;1610735516;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chowder-san;;;[];;;;text;t2_jn9p3;False;False;[];;eh, not exactly. Adaptation is simply more lighthearted than the source, where Raphtalia has to hold his reins on more than one occasion, and it's not limited to the moments when he utilises shield of wrath;False;False;;;;1610655566;;False;{};gj9kfdt;False;t3_kwisyw;False;True;t1_gj4v2pl;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9kfdt/;1610737106;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chowder-san;;;[];;;;text;t2_jn9p3;False;False;[];;considering that Uzaki's Sugoi Dekai was enough to trigger the twitter mob, healer is going to cause delicious tears;False;False;;;;1610655715;;False;{};gj9kr9a;False;t3_kwisyw;False;False;t1_gj6zfga;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9kr9a/;1610737331;4;True;False;anime;t5_2qh22;;0;[]; -[];;;chowder-san;;;[];;;;text;t2_jn9p3;False;False;[];;I came here to rise the shield hero and fuck bitches and I'm all out of shield heroes;False;False;;;;1610655841;;False;{};gj9l17t;False;t3_kwisyw;False;True;t1_gj5jhwv;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9l17t/;1610737521;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610656502;;False;{};gj9mn90;False;t3_kwisyw;False;True;t1_gj541cf;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9mn90/;1610738579;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chowder-san;;;[];;;;text;t2_jn9p3;False;False;[];;you greatly underestimate the number of angry uzaki posts, and the angry fanarts redrawing her either very slim or morbidly obese still plague my mind, that season i swore to myself to never visit deviantart again;False;False;;;;1610656554;;False;{};gj9msa1;False;t3_kwisyw;False;True;t1_gj4klfb;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9msa1/;1610738665;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Panophobia_senpai;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3nqizk;False;False;[];;"Makes me remember another VN with a pretty similar premise. Euphoria. -Only difference that it is not fantasy, and he rapes his teacher and classmates to escape.";False;False;;;;1610660108;;False;{};gj9w0h2;False;t3_kwisyw;False;True;t1_gj62wsh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9w0h2/;1610744848;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Potatolantern;;;[];;;;text;t2_2muaukp;False;False;[];;Oh fuck it’s finally out? Looking forward to watching this when I get home, I loved the WNs.;False;False;;;;1610661086;;False;{};gj9yfue;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9yfue/;1610746373;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kori228;;;[];;;;text;t2_a4ij7;False;False;[];;"So his eye is called the Halcyon Eye? Kinda weird name. Judging from the audio, it would be the 翡翠眼. My first reaction is ""Jade Eye"", but wiktionary says Halcyon is a a mythological fish that calms the waters, and also an adjective meaning ""Calm, undisturbed, peaceful, serene"". I guess it kinda works then?";False;False;;;;1610661525;;False;{};gj9zdmy;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gj9zdmy/;1610747022;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Marik-X-Bakura;;;[];;;;text;t2_4acyt2bo;False;False;[];;4 chapters? Damn this went fast;False;False;;;;1610662294;;False;{};gja0ymp;False;t3_kwisyw;False;True;t1_gj4pz3z;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gja0ymp/;1610748197;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fehervari;;;[];;;;text;t2_4wj5c6;False;False;[];;Complaining? More like eagerly anticipating!;False;False;;;;1610662889;;False;{};gja26d2;False;t3_kwisyw;False;True;t1_gj81iz9;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gja26d2/;1610749071;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JosephHitlerUn;;;[];;;;text;t2_3oi5qdpj;False;False;[];;Agreed, they there are some good people I think, for example the demon lord, and I’m not sure but I think the swords woman is nice;False;False;;;;1610663687;;False;{};gja3sx6;False;t3_kwisyw;False;False;t1_gj9ayyp;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gja3sx6/;1610750182;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JosephHitlerUn;;;[];;;;text;t2_3oi5qdpj;False;False;[];;That’s the most true depressing shit I’ve heard today;False;False;;;;1610663738;;False;{};gja3wi9;False;t3_kwisyw;False;True;t1_gj8zhaz;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gja3wi9/;1610750248;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JosephHitlerUn;;;[];;;;text;t2_3oi5qdpj;False;False;[];;Why did you comment get removed and then reposted;False;False;;;;1610664831;;False;{};gja63vg;False;t3_kwisyw;False;True;t1_gj8rx6v;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gja63vg/;1610751751;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Sorry 😣;False;False;;;;1610665066;;False;{};gja6ky2;False;t3_kwisyw;False;True;t1_gja3wi9;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gja6ky2/;1610752070;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Treeman1642;;;[];;;;text;t2_5iw34cw;False;False;[];;what detail you talking about?;False;False;;;;1610667655;;False;{};gjabnj6;False;t3_kwisyw;False;True;t1_gj4l5r2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjabnj6/;1610755515;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zenoob;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/zenoob/;light;text;t2_7hfmn;False;False;[];;"Except Nozoki Ana would be actually palatable and have interesting stuff to say. - -If you want Shiokonbu, in good quality, you can just read his porn manga.";False;False;;;;1610667816;;False;{};gjabyks;False;t3_kwisyw;False;True;t1_gj5gfbr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjabyks/;1610755715;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610667871;;False;{};gjac2ds;False;t3_kwisyw;False;True;t1_gj78j0m;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjac2ds/;1610755794;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nescau_Fernando;;;[];;;;text;t2_1m6og0;False;False;[];;"[Uncensored ep. 1 answer](/s ""At 00:18, a naked Keyaru is holding something...;)"")";False;False;;;;1610668465;;False;{};gjad7xc;False;t3_kwisyw;False;True;t1_gjabnj6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjad7xc/;1610756581;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610668913;;False;{};gjae3da;False;t3_kwisyw;False;True;t1_gj5iu1t;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjae3da/;1610757153;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610668991;;False;{};gjae8l8;False;t3_kwisyw;False;True;t1_gj5vv4y;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjae8l8/;1610757249;1;True;False;anime;t5_2qh22;;0;[]; -[];;;psychsucks;;;[];;;;text;t2_7pinf0kz;False;False;[];;Actually, if there is a shitstorm on Twitter about this, then it’s a badge of honor and a proof of quality for me;False;False;;;;1610669073;;False;{};gjaee4y;False;t3_kwisyw;False;True;t1_gj4mhpc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjaee4y/;1610757346;1;True;False;anime;t5_2qh22;;0;[]; -[];;;psychsucks;;;[];;;;text;t2_7pinf0kz;False;False;[];;I use it for art and salt mining;False;False;;;;1610669095;;False;{};gjaefof;False;t3_kwisyw;False;True;t1_gj4sy26;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjaefof/;1610757375;1;True;False;anime;t5_2qh22;;0;[]; -[];;;psychsucks;;;[];;;;text;t2_7pinf0kz;False;False;[];;This is quote-worthy;False;False;;;;1610669174;;False;{};gjael7g;False;t3_kwisyw;False;True;t1_gj4wojb;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjael7g/;1610757473;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610669498;;False;{};gjaf7jv;False;t3_kwisyw;False;True;t1_gj4uh64;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjaf7jv/;1610757880;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi psychsucks, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610669498;moderator;False;{};gjaf7lj;False;t3_kwisyw;False;True;t1_gjaf7jv;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjaf7lj/;1610757881;1;False;False;anime;t5_2qh22;;0;[]; -[];;;psychsucks;;;[];;;;text;t2_7pinf0kz;False;False;[];;I dunno I kinda like shows where the MC gets justice;False;False;;;;1610669531;;False;{};gjaf9ug;False;t3_kwisyw;False;True;t1_gj5mj1b;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjaf9ug/;1610757921;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610669580;;False;{};gjafd8f;False;t3_kwisyw;False;True;t1_gj6m8d3;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjafd8f/;1610757980;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi psychsucks, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610669580;moderator;False;{};gjafd9t;False;t3_kwisyw;False;True;t1_gjafd8f;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjafd9t/;1610757981;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;curse you I wanted to post that!;False;False;;;;1610670081;;False;{};gjagbvl;False;t3_kwisyw;False;True;t1_gj69kzh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjagbvl/;1610758594;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;"There is no crime I would not commit to see a full Nana to Kaoru adaption, holy shit. The arcs line up perfectly with anime cours - -It's u/CheesyCanada's favorite manga too, he'd be thrilled.";False;False;;;;1610670177;;False;{};gjagigt;False;t3_kwisyw;False;True;t1_gj5vx6t;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjagigt/;1610758710;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CheesyCanada;;;[];;;;text;t2_q7n0a;False;False;[];;Since when is it my favourite? Kaoru is toi much of a gremlin, not a fan;False;False;;;;1610670275;;False;{};gjagpe0;False;t3_kwisyw;False;True;t1_gjagigt;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjagpe0/;1610758836;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;Seven seas;False;False;;;;1610670345;;False;{};gjagudp;False;t3_kwisyw;False;False;t1_gj5wb27;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjagudp/;1610758925;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;"Never understood the fury about gobbers gobbering. That premiere and the premiere of Shield Hero probably got the most people mad. - -t.loved Goblin Slayer";False;False;;;;1610670443;;False;{};gjah1ae;False;t3_kwisyw;False;False;t1_gj780ec;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjah1ae/;1610759048;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ergheis;;;[];;;;text;t2_99qyf;False;False;[];;Justice is nice and stories about revenge are fun. But this is part of a very specific genre of revenge fetish that appears every so often in manga, and it is very different.;False;False;;;;1610670865;;False;{};gjahueu;False;t3_kwisyw;False;False;t1_gjaf9ug;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjahueu/;1610759596;4;True;False;anime;t5_2qh22;;0;[]; -[];;;CheesyCanada;;;[];;;;text;t2_q7n0a;False;False;[];;"I'd say my favourite manga of that nature would probably be Kimi wa Midara na Boku no Joou, it's by the guy who wrote elfen lied - -Besides that I'd say Minamoto-kun Monogatari would be my favourite";False;False;;;;1610670994;;False;{};gjai3ci;False;t3_kwisyw;False;True;t1_gjagigt;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjai3ci/;1610759754;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610671309;;1610671671.0;{};gjaipau;False;t3_kwisyw;False;True;t1_gj6qgyz;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjaipau/;1610760137;0;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;justice being rape? Plus how shitty must your life be to crave fictional revenge;False;False;;;;1610672825;;False;{};gjalnhd;False;t3_kwisyw;False;True;t1_gj80rf5;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjalnhd/;1610762050;2;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;Who's the bigger loser- loser moral busyboy or loser self inserter incel?;False;False;;;;1610672937;;False;{};gjalv6q;False;t3_kwisyw;False;True;t1_gj802ge;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjalv6q/;1610762192;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;It's a self insert isekai show, but you'd need to be particularly incelly to self insert to this. Other revenge shows aren't really self insert bait, so they're fine.;False;False;;;;1610673041;;False;{};gjam25x;False;t3_kwisyw;False;False;t1_gj7psy5;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjam25x/;1610762317;5;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;primal fascination is definitely different from straightup enjoying this kind of content.;False;False;;;;1610673142;;False;{};gjam90w;False;t3_kwisyw;False;True;t1_gj7fj0m;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjam90w/;1610762447;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;" - -Also, isnt having sex with a lot of females kinda anti-incel? - - No, that just makes it an incel fantasy";False;False;;;;1610673366;;False;{};gjamobe;False;t3_kwisyw;False;True;t1_gj7pxwx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjamobe/;1610762725;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mxdxxx1;;;[];;;;text;t2_5vdth9rj;False;False;[];;Okay but who's the voice actress of the maid tho?;False;False;;;;1610673673;;False;{};gjan94c;False;t3_kwisyw;False;False;t1_gj5fjam;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjan94c/;1610763110;3;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;"> Calling an anime edgy or insulting the people watching it is just childish - -That'd be the case if I were insulting pineapple on pizza fans, but this is clearly self insert incel fantasy trash. You'd have to be incredibly not self aware and one of them to defend this kind of thing. - -> This anime has elements of goblin slayer, shield hero, and its ecchi of course it’s gonna attract people - -What makes you think these animes are above the incel self insert fantasy label? (Goblin Slayer gets the pass) - -> I think you just underestimate how much people love revenge anime’s like attack on Titan and such - -I understand the appeal of having revenge as a component in a story (I doubt anybody watched Aot for Eren's revenge on titans btw), but it's obvious what certain shows are trying to do and who they're appealing to. Redo healer is clearly just trying to be revenge porn and it's clearly appealing to incels that self insert.";False;False;;;;1610673772;;False;{};gjanfux;False;t3_kwisyw;False;True;t1_gj7f353;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjanfux/;1610763228;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;"I think you mean - -#filtered - -I don't think this will provoke as much rage as the Used Goods anime that's coming out later though. -EDIT - No I'm wrong, chapter 5 a shitstorm will create";False;False;;;;1610673820;;1610676081.0;{};gjanj2j;False;t3_kwisyw;False;True;t1_gj5avdj;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjanj2j/;1610763282;1;True;False;anime;t5_2qh22;;0;[]; -[];;;psychsucks;;;[];;;;text;t2_7pinf0kz;False;False;[];;At least it’s more lenient than killing people outright;False;False;;;;1610674293;;False;{};gjaofr3;False;t3_kwisyw;False;True;t1_gjalnhd;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjaofr3/;1610763896;3;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;I'm no debate expert, but I'm pretty sure justifying something by presenting a(n arguably) worse option is a logical fallacy.;False;False;;;;1610674512;;False;{};gjaov12;False;t3_kwisyw;False;True;t1_gjaofr3;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjaov12/;1610764172;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;">Four he doesn’t reincarnate he goes back in time to get his revenge - -The fact that you think this does anything to counter his main argument is so sad lmao. Nothing you wrote in reply did anything to counter his argument. - -> One the writer is female so she can’t be a incel - -Nobody said the writer was an incel. - -> Two it’s a revenge anime, just like attack on Titan or goblin slayer - -doesn't stop that from being an incel fantasy - -> Three he is abused by everyone - -This may be true, but the main target of hatred is clearly the main girl. The fact that everybody abuses does not change the fact that the show appeals to incels. It's not like incels are only abused by women";False;False;;;;1610675027;;False;{};gjapuiy;False;t3_kwisyw;False;True;t1_gj7srb7;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjapuiy/;1610764821;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;"I was trolling lol -Like you spamming my name whenever The Cursed Manga gets mentioned by She Who Must Not Be Named";False;False;;;;1610675282;;False;{};gjaqbuc;False;t3_kwisyw;False;True;t1_gjagpe0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjaqbuc/;1610765124;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JosephHitlerUn;;;[];;;;text;t2_3oi5qdpj;False;False;[];;First of redo of healer is written by a women, secondly it’s a sadistic revenge plot, almost like an alternate shield hero. They literally raped him and he’s returning the favor, eye for an eye, don’t shit on an anime just because it doesn’t agree with your view;False;False;;;;1610675368;;False;{};gjaqhkh;False;t3_kwisyw;False;True;t1_gjanfux;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjaqhkh/;1610765219;3;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;">First of redo of healer is written by a women - -How dumb do you have to be to think that the gender of the author changes the qualities of the work? - -> it’s a sadistic revenge plot - -Medal of honor to captain obvious. Pointing this out does not counter my argument at all. It can be a sadistic revenge plot, revenge porn, and appeal to incels all at the same time. - -> don’t shit on an anime just because it doesn’t agree with your view - -At this point, I'm shitting on the people that enjoy this show. If you don't shit on people for differing views, why would anybody shit on anybody at all? If your rebuttal to that is ""People can like what they like"", you must be incredibly dumb to think that what a person enjoys doesn't tell something about how they are as a person.";False;False;;;;1610675726;;False;{};gjar5yb;False;t3_kwisyw;False;True;t1_gjaqhkh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjar5yb/;1610765648;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"There are 3 versions - -The first version is broadcasted on Japanese TV - -Second is what the streaming services get which is ~~semi~~ mostly censored - -Third is the fully uncensored version aka AT-X version which is already out after 5 hrs";False;False;;;;1610675899;;False;{};gjarhop;False;t3_kwisyw;False;True;t1_gj9961j;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjarhop/;1610765861;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Redmon425;;;[];;;;text;t2_15ro6h;False;False;[];;"So the best version is the AT-X one. Is that the one that had all the maid scenes? It showed him smashing all of them. - -Just want to make sure I saw the best one lol.";False;False;;;;1610676659;;False;{};gjasxs7;False;t3_kwisyw;False;True;t1_gjarhop;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjasxs7/;1610766787;1;True;False;anime;t5_2qh22;;0;[]; -[];;;togenshi;;;[];;;;text;t2_4mmop;False;False;[];;I think people under-estimate the impact that Game of Thrones had on the media in general.;False;False;;;;1610677230;;False;{};gjau0gl;False;t3_kwisyw;False;True;t1_gj4j9xx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjau0gl/;1610767464;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;Yes the best one is the AT-X one with the maid which you saw;False;False;;;;1610677383;;False;{};gjauano;False;t3_kwisyw;False;True;t1_gjasxs7;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjauano/;1610767649;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dreadvirus69;;;[];;;;text;t2_e7cwk;False;False;[];;"geezes, i didnt realise this anime was off the charts \[goin by the amount of comments\].. - -this animes explains succinctly why i never play a healer class in games haha";False;False;;;;1610677510;;False;{};gjauj9h;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjauj9h/;1610767806;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dreadvirus69;;;[];;;;text;t2_e7cwk;False;False;[];;i just read some comments, there's an uncensored ver in the plans?!?!? so we're talking about female nudity?;False;False;;;;1610677703;;False;{};gjauwdy;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjauwdy/;1610768038;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ChornoyeSontse;;;[];;;;text;t2_8vjfuk9d;False;False;[];;"To put it bluntly, tons of normies were getting into anime around that time and it was the first slap-in-the-face reminder in a while that Japanese media doesn't care about the sensibilities surrounding some topics as much as Western media does. Another portion of it was the usual yellow journals trying to generate outrage for profit and gaslighting purposes as well. I'd say the rage was about 70% ""authentic"". - -Also (IMO), it was a very real, graphic depiction of rape, whereas rape depictions in Western media in general tend to have much more indirect camerawork and such so it was more shocking to the Western viewer. - -TL;DR NORMIES GET OUT REEEEEEEE";False;False;;;;1610678718;;1610726164.0;{};gjawrvx;False;t3_kwisyw;False;False;t1_gjah1ae;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjawrvx/;1610769182;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610679718;moderator;False;{};gjaym9n;False;t3_kwisyw;False;True;t1_gj7nxa5;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjaym9n/;1610770307;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610679733;moderator;False;{};gjayn8t;False;t3_kwisyw;False;True;t1_gj78j0m;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjayn8t/;1610770322;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610679747;moderator;False;{};gjayo5e;False;t3_kwisyw;False;True;t1_gj68bqy;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjayo5e/;1610770336;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CheesyCanada;;;[];;;;text;t2_q7n0a;False;False;[];;Read the other manga I mentionned though, heure both great, but really horny LOL;False;False;;;;1610680307;;False;{};gjazoyv;False;t3_kwisyw;False;True;t1_gjaqbuc;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjazoyv/;1610770964;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xCairus;;;[];;;;text;t2_j265f;False;False;[];;"Because you're using your English understanding of the English word ""heal"". The Japanese words for it are 「回復」or Kaifuku in Romaji and 「治す」or Naosu in Romaji. Kaifuku means recovery, restoration, return, etc. It can be used to describe the economy recovering or order being restored so it's not a 1:1 translation with the word ""heal"". Similarly, while Naosu means to heal, to correct, to fix or to cure, it also means to do something over again, to put things back to its place, to replace, to convert or to transform something. - - - -As for copying skill, he doesn't actually copy ""skills"" like say a Fireball or some random skill you see from other shows or games, the word he uses is 「技術」or Gijutsu as in technique. So what he was saying here was that he was imitating their techniques as in how they move, how they fight, etc. It's related to his healing magic because when he heals someone, he literally experiences the same things that that person experienced. which is a side effect of his ability basically. - - - - -This is the reason why turning back time is described as being achieved with healing magic in the show. The word used is 「やり直し」or yarinaosu, to do something over again. Technically, you can return or restore something's state of being back into non-existence, this is probably why it can be used as ""instant death magic"".";False;False;;;;1610681223;;False;{};gjb1dzm;False;t3_kwisyw;False;True;t1_gj55rf6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjb1dzm/;1610771990;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xCairus;;;[];;;;text;t2_j265f;False;False;[];;"Because you're using your English understanding of the English word ""heal"". The Japanese words for it are 「回復」or Kaifuku in Romaji and 「治す」or Naosu in Romaji. Kaifuku means recovery, restoration, return, etc. It can be used to describe the economy recovering or order being restored so it's not a 1:1 translation with the word ""heal"". Similarly, while Naosu means to heal, to correct, to fix or to cure, it also means to do something over again, to put things back to its place, to replace, to convert or to transform something. - -As for copying skill, he doesn't actually copy ""skills"" like say a Fireball or some random skill you see from other shows or games, the word he uses is 「技術」or Gijutsu as in technique. So what he was saying here was that he was imitating their techniques as in how they move, how they fight, etc. It's related to his healing magic because when he heals someone, he literally experiences the same things that that person experienced. which is a side effect of his ability basically. - -This is the reason why turning back time is described as being achieved with healing magic in the show. The word used is 「やり直し」or yarinaosu, to do something over again. Technically, you can return or restore something's state of being back into non-existence, this is probably why it can be used as ""instant death magic"".";False;False;;;;1610681295;;False;{};gjb1it5;False;t3_kwisyw;False;False;t1_gj6peru;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjb1it5/;1610772068;8;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;True;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610681490;moderator;False;{};gjb1vp8;False;t3_kwisyw;False;True;t1_gj69zos;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjb1vp8/;1610772287;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;True;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610681547;moderator;False;{};gjb1zi0;False;t3_kwisyw;False;False;t1_gj5gqg8;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjb1zi0/;1610772351;1;True;False;anime;t5_2qh22;;0;[]; -[];;;degenerated_weeb;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Can’t escape the peko hole;dark;text;t2_3cku6n8b;False;False;[];;Where is the spoiler?;False;False;;;;1610681557;;False;{};gjb205h;False;t3_kwisyw;False;True;t1_gjb1vp8;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjb205h/;1610772362;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;True;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610682176;moderator;False;{};gjb34op;False;t3_kwisyw;False;True;t1_gj7z9y6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjb34op/;1610773043;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;True;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610682196;moderator;False;{};gjb35zr;False;t3_kwisyw;False;True;t1_gj7g8br;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjb35zr/;1610773063;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610682380;;False;{};gjb3i12;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjb3i12/;1610773254;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;True;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610682472;moderator;False;{};gjb3o53;False;t3_kwisyw;False;True;t1_gj7r7y1;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjb3o53/;1610773356;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;True;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610682482;moderator;False;{};gjb3oqb;False;t3_kwisyw;False;True;t1_gj93jqz;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjb3oqb/;1610773365;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vashstampede20;;;[];;;;text;t2_yk3tqou;False;False;[];;Ngl I'm looking forward to the rape scenes. The mc gets it bad in the beginning.;False;False;;;;1610682538;;False;{};gjb3see;False;t3_kwisyw;False;True;t1_gj4tshh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjb3see/;1610773429;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Lost_Sin_;;;[];;;;text;t2_6q7mby4d;False;False;[];;"I wonder how shitty of a life you have to lead to waste your time skimming through comments to personally insult people who say they enjoyed a cartoon you didn't like. - -Jesus what a fucking loser lmao.";False;False;;;;1610682748;;False;{};gjb45u5;False;t3_kwisyw;False;True;t1_gjalnhd;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjb45u5/;1610773660;4;False;False;anime;t5_2qh22;;0;[]; -[];;;Rusted_muramasa;;;[];;;;text;t2_12r9iq;False;False;[];;"> Fucking **Euphoria** - -That's just hentai. Also the premises aren't similar at all.";False;False;;;;1610682764;;False;{};gjb46ue;False;t3_kwisyw;False;True;t1_gj9w0h2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjb46ue/;1610773676;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;True;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610682836;moderator;False;{};gjb4beh;False;t3_kwisyw;False;True;t1_gj65xqs;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjb4beh/;1610773751;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PockysLight;;;[];;;;text;t2_n5h7zo3;False;False;[];;I don't understand how my comment included spoilers. I merely hinted/assumed at what the anime community's reaction to what the next episodes would be. I in no way mentioned any details regarding the story.;False;False;;;;1610684749;;False;{};gjb7mlv;False;t3_kwisyw;False;False;t1_gjayn8t;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjb7mlv/;1610775665;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;You are hinting at what's gonna happen and what tone the next episode will have.;False;False;;;;1610684866;;False;{};gjb7tqd;False;t3_kwisyw;False;True;t1_gjb7mlv;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjb7tqd/;1610775778;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PockysLight;;;[];;;;text;t2_n5h7zo3;False;False;[];;Given how the episode ended it seemes next week's episode will be obvious, but very well. If that's enough to require a spoiler tag, I'll attempt to apply one.;False;False;;;;1610685052;;False;{};gjb84zm;False;t3_kwisyw;False;True;t1_gjb7tqd;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjb84zm/;1610775959;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mxgarbage;;;[];;;;text;t2_64xb6a0a;False;False;[];;Just started reading Nozoki Ana today. This shit is gonna end up breaking me lmao;False;False;;;;1610685625;;False;{};gjb937d;False;t3_kwisyw;False;False;t1_gj5gfbr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjb937d/;1610776519;5;True;False;anime;t5_2qh22;;0;[]; -[];;;CytoPlasm129;;;[];;;;text;t2_3c4ctvpa;False;False;[];;"i waited for the uncensored version to air lol - -it truly is for the men of culture like us";False;False;;;;1610685655;;False;{};gjb94xb;False;t3_kwisyw;False;True;t1_gj4d4ex;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjb94xb/;1610776551;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Lost_Sin_;;;[];;;;text;t2_6q7mby4d;False;False;[];;">it don't really matter why someone became an evil person - -To you maybe. Most people I know love when evil characters have backstories that explain their beliefs and start to root for them. If you're with a character for a long period of time, you can sympathize with their motivations and forget what they're like out of context. Hence the reason why Walter White had so many people rooting for him at the end of Breaking Bad. - -I think the reason it won't work as well here is because they didn't put in the work of actually showing his tragic backstory for more than 3 seconds. - ->And any good that results indirectly from his selfish actions doesn't justify them. - -To you.";False;False;;;;1610686063;;False;{};gjb9t2p;False;t3_kwisyw;False;True;t1_gj8po8o;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjb9t2p/;1610776943;1;False;False;anime;t5_2qh22;;0;[]; -[];;;mrfatso111;;;[];;;;text;t2_fn9fc;False;False;[];;"> Nana to Kaoru - -Hold up, there's a live action film, is it under porn or under ero?";False;False;;;;1610688260;;False;{};gjbd6yw;False;t3_kwisyw;False;True;t1_gj5vx6t;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjbd6yw/;1610778887;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mrfatso111;;;[];;;;text;t2_fn9fc;False;False;[];;">Nozoki Ana - -and this has a live action film too? - - -Today is a strange day for me to find out that these manga with such an ero theme have live adapations . - -&#x200B; - -and now... someone is gonna tell me that Ishuzoku Reviewers has a live adaption now... anytime soon.";False;False;;;;1610688420;;False;{};gjbdfbp;False;t3_kwisyw;False;True;t1_gj5gfbr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjbdfbp/;1610779027;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OneHappyMelon;;;[];;;;text;t2_ll14b;False;False;[];;"Eminence is unironically genius-tier parody. There are scenes where he parodies Lelouch from Code Geass, Overlord (with Ainz and his bullshit planning and the subordinate misunderstanding gag), and Mob Psycho with his ""The Arts of Mob-fu"". I was tearing up from laughter when a scene from Re:Zero (Satella asking Subaru to kill her) was straight up parodied in the manga when the witch Aurora asked Cid to kill her before disappearing a la Satella style.";False;False;;;;1610688650;;False;{};gjbdraw;False;t3_kwisyw;False;True;t1_gj77bo0;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjbdraw/;1610779224;1;True;False;anime;t5_2qh22;;0;[]; -[];;;satoukazumadesu-;;;[];;;;text;t2_3ohrjpev;False;False;[];;Peephole, yeah;False;False;;;;1610688769;;False;{};gjbdxhc;False;t3_kwisyw;False;True;t1_gj5gfbr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjbdxhc/;1610779322;1;True;False;anime;t5_2qh22;;0;[]; -[];;;satoukazumadesu-;;;[];;;;text;t2_3ohrjpev;False;False;[];;"Welcome to another anime called ""I can't believe it's not hentai""";False;False;;;;1610688876;;False;{};gjbe2vu;False;t3_kwisyw;False;True;t1_gj4k0kj;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjbe2vu/;1610779412;2;True;False;anime;t5_2qh22;;0;[]; -[];;;satoukazumadesu-;;;[];;;;text;t2_3ohrjpev;False;False;[];;"Sorry, I cant wait for him to reunite with his ""Mom"". And by all means, you know what kind of reuniting I want.";False;False;;;;1610688964;;False;{};gjbe7fp;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjbe7fp/;1610779480;2;True;False;anime;t5_2qh22;;0;[]; -[];;;csbsju_guyyy;;;[];;;;text;t2_aiy98;False;False;[];;Art was solid, VA was also solid, storyline is seemingly kind of goofy but at the same time somewhat unique. Little bit too much edginess for my taste but I'm gonna let it ride. I've stomached all of Arifureta, and Hachi-nan tte, Sore wa Nai deshou just to name a few recent ones, and those didn't even have the 'plus' of ecchi like this does....unless this show takes an incredibly sharp nosedive, it's piqued my interest and once that happens I hardly ever drop a show hah;False;False;;;;1610689264;;False;{};gjbemse;False;t3_kwisyw;False;False;t1_gj6jm6r;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjbemse/;1610779719;9;True;False;anime;t5_2qh22;;0;[]; -[];;;csbsju_guyyy;;;[];;;;text;t2_aiy98;False;False;[];;I thought wizard dude would be the evil one at first and perhaps would convince Flare or something. Nope wiz seemed pretty solid and Flare is immediately off chasing the bitch crown held by shield hero bitch!;False;False;;;;1610689457;;False;{};gjbewri;False;t3_kwisyw;False;True;t1_gj855k8;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjbewri/;1610779868;2;True;False;anime;t5_2qh22;;0;[]; -[];;;csbsju_guyyy;;;[];;;;text;t2_aiy98;False;False;[];;*may I interest you in some castle maids?*;False;False;;;;1610689511;;False;{};gjbezjm;False;t3_kwisyw;False;True;t1_gj9l17t;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjbezjm/;1610779911;1;True;False;anime;t5_2qh22;;0;[]; -[];;;csbsju_guyyy;;;[];;;;text;t2_aiy98;False;False;[];;"Just saw the uncensored version, was subbed but there was some dialogue missing from one scene and they misspelled Flares name at one point. - -Otherwise it was.....*acceptable*";False;False;;;;1610689603;;False;{};gjbf48v;False;t3_kwisyw;False;False;t1_gj4w311;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjbf48v/;1610779983;1;True;False;anime;t5_2qh22;;0;[]; -[];;;csbsju_guyyy;;;[];;;;text;t2_aiy98;False;False;[];;Ari hit some sort of a stride after they FINALLY gave us some inkling of backstory. Iirc, the anime decided to switch things up and instead of giving us a backstory like the manga, it went ahead and confused the everloving crap out of anime-only watchers.;False;False;;;;1610689810;;False;{};gjbfez0;False;t3_kwisyw;False;True;t1_gj5ztkw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjbfez0/;1610780149;1;True;False;anime;t5_2qh22;;0;[]; -[];;;csbsju_guyyy;;;[];;;;text;t2_aiy98;False;False;[];;Apparently nowhere legit. You'd have to set sail if you really wanted to see it;False;False;;;;1610689875;;False;{};gjbfi9f;False;t3_kwisyw;False;True;t1_gj71hcp;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjbfi9f/;1610780201;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chowder-san;;;[];;;;text;t2_jn9p3;False;False;[];;YES YES YES YES;False;False;;;;1610691597;;False;{};gjbhujv;False;t3_kwisyw;False;False;t1_gjbezjm;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjbhujv/;1610781487;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RememberMeAndMe;;;[];;;;text;t2_2d9sngq5;False;False;[];;Rance Light, same taste, less filling;False;False;;;;1610692647;;False;{};gjbj6ue;False;t3_kwisyw;False;True;t1_gj6ob28;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjbj6ue/;1610782231;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;"I read Minamoto-kun -well kinda. I had degenerate tendencies and wanted to know if a very specific taste of mine was catered to. So I speedread the manga and found out it was. -BUT ONLY AT THE VERY END OF THE GODDAMN MANGA HOLY SHIT - -also 'gremlin' is the perfect name for Kaoru, top kek";False;False;;;;1610694277;;False;{};gjbl5m4;False;t3_kwisyw;False;True;t1_gjazoyv;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjbl5m4/;1610783316;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Capt253;;;[];;;;text;t2_qj82e;False;False;[];;In my opinion, there is an interesting premise trapped under all the other stuff, though from what I've read, that premise is abandoned practically immediately. The MC's powers apparently take a heavy physical/spiritual toll on him and make him see the entire life and sufferings of the person he is using them on, in other words, having perfect empathy for them. Thus, in order to inflict suffering, he must suffer in an equal measure, quite literally doing unto others as he would do unto himself. If the story focused on the balancing act of his insatiable hunger for revenge and a desire to not be in pain and not...well, revenge rape power fantasy... I'd think it would be the darling of this subreddit.;False;False;;;;1610695339;;False;{};gjbmcgt;False;t3_kwisyw;False;True;t1_gj53lvo;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjbmcgt/;1610783966;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ergzay;;;[];;;;text;t2_6ig22;False;False;[];;Well that's against the rules to say. But I'm sure a cat could tell you.;False;False;;;;1610697313;;False;{};gjbohwa;False;t3_kwisyw;False;True;t1_gj5wcf9;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjbohwa/;1610785120;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ergzay;;;[];;;;text;t2_6ig22;False;False;[];;Maybe a cat can tell you.;False;False;;;;1610697487;;False;{};gjboojs;False;t3_kwisyw;False;True;t1_gj8hv3t;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjboojs/;1610785221;3;True;False;anime;t5_2qh22;;0;[]; -[];;;hahahahastayingalive;;;[];;;;text;t2_8mubj;False;False;[];;"> flaming garbage - -So that’s what they were aiming for that crunchyroll anime. I get it now.";False;False;;;;1610700157;;False;{};gjbrg8q;False;t3_kwisyw;False;False;t1_gj4wojb;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjbrg8q/;1610786725;3;True;False;anime;t5_2qh22;;0;[]; -[];;;acathode;;;[];;;;text;t2_e35lj;False;False;[];;"Don't forget the pretty vocal minority that think rape should simply never be depicted in entertainment. Showing gore and brutal murders in minute detail is ok - but depicting rape is simply not something that's allowed due to a bunch of ideological reasons. - -These people go bananas and get very loud on social media, but they are hardly representatives of ""normies"".";False;False;;;;1610701115;;False;{};gjbsem5;False;t3_kwisyw;False;False;t1_gjawrvx;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjbsem5/;1610787243;4;True;False;anime;t5_2qh22;;0;[]; -[];;;acathode;;;[];;;;text;t2_e35lj;False;False;[];;"Goblin Slayer just got a lot of flack because western audiences considers rape taboo to depict (Graphic gore and murders? yes please! Rape? OMFG WTF YOU'RE NOT ALLOWED TO SHOW THAT!). - -The same taboo doesn't really exist in Japan, or at least no in the same way, and they had the first episode depicting the goblins raping the captured females to establish how evil the goblins are, and that they are a parasitic species that's pretty much evil by nature. From a non-western pov it was barely remarkable - since the show already from the outset featured adult levels of gore and violence, showing pretty graphic stuff already, nudity and rape was hardly out of place. - -The key difference is that those parts of the first episode was there to help set the world, but they were not the focus of the story - it was just there to establish just how horrible goblins are and why they are a unreedamable enemy of humankind. After the first episode, it's there as a fact of the world, but not something that's particularly focused on. - -This show on the other hand had a tame ep 1 where pretty much nothing happens - but it will take a sharp nosedive. The whole point of this show is pretty much to show the MC being as evil and vile as possible, which will include plenty of rape and all manners of sick shit, sprinkled with some flashbacks showing why the people the MC fucks up deserve it. - -That's the whole focus of the show - it's literally revenge *porn* - and it's not very good. This show will likely blow up because unlike Goblin Slayer, this show actually do show rape pretty much solely to show rape. This show is *everything* the twitter busybodies falsely accused Goblin Slayer of being, cranked to 11...";False;False;;;;1610703037;;False;{};gjbub99;False;t3_kwisyw;False;True;t1_gj52hou;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjbub99/;1610788287;3;True;False;anime;t5_2qh22;;0;[]; -[];;;frzned;;MAL;[];;https://myanimelist.net/profile/frzned;dark;text;t2_hs5yy;False;False;[];;"Hey remember raphtalia entire first arc about how she's going to be his sword and he's to be her shield. - -Then she got shafted harder than sakura from naruto did and he just use dark fire ball/dark haze/spell casting and solo bosses anyway? - -Im legit convinced shield hero has 2 different authors writing the first arc than the later ones.";False;False;;;;1610705851;;False;{};gjbx1at;False;t3_kwisyw;False;True;t1_gj7n6ka;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjbx1at/;1610789768;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Goingdownforever;;;[];;;;text;t2_3t8dcl89;False;False;[];;And Flare radiates Malty Energy;False;False;;;;1610707594;;False;{};gjbyr1q;False;t3_kwisyw;False;True;t1_gj9ajal;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjbyr1q/;1610790710;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Goingdownforever;;;[];;;;text;t2_3t8dcl89;False;False;[];;It came if you didn't know;False;False;;;;1610707737;;False;{};gjbyw7m;False;t3_kwisyw;False;True;t1_gj51rvu;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjbyw7m/;1610790785;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Goingdownforever;;;[];;;;text;t2_3t8dcl89;False;False;[];;Well Keyaru was drugged so technically correct;False;False;;;;1610707844;;False;{};gjbz01q;False;t3_kwisyw;False;True;t1_gj502m4;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjbz01q/;1610790844;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheOneAboveGod;;;[];;;;text;t2_grcpz;False;False;[];;That first maid he fucked looked like Rita Rossweise from Honkai.;False;False;;;;1610708984;;False;{};gjc05m8;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjc05m8/;1610791480;2;True;False;anime;t5_2qh22;;0;[]; -[];;;S_A52;;;[];;;;text;t2_5vrorhq5;False;False;[];;Guys, the ED is a bop;False;False;;;;1610710087;;False;{};gjc1b34;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjc1b34/;1610792147;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610712080;;False;{};gjc3gb3;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjc3gb3/;1610793389;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610712312;;1610712559.0;{};gjc3puo;False;t3_kwisyw;False;True;t1_gjalv6q;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjc3puo/;1610793533;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Rachel_U;;;[];;;;text;t2_1i4r23w;False;False;[];;I just remembered World's End Harem is still in production. It'll feature male lead's voice of Bam (Tower of God) surprisingly.;False;False;;;;1610713414;;False;{};gjc501e;False;t3_kwisyw;False;True;t1_gj4tq2x;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjc501e/;1610794246;1;True;False;anime;t5_2qh22;;0;[]; -[];;;myrrh69;;;[];;;;text;t2_4vhi0qg0;False;False;[];;Uncensored version is already out;False;False;;;;1610715584;;False;{};gjc7s4w;False;t3_kwisyw;False;True;t1_gjauwdy;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjc7s4w/;1610795801;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Etereke32;;;[];;;;text;t2_11qhl2;False;False;[];;"You know, this would have been way better if the MC's suffering is not a short montage, but a whole episode. That way, the hatred towards the other heroes would have been more deep-rooted, and it would be easier to sympathize with the MC. Showing a few minutes summary of his suffering is not enough. Imagine if shield hero started with a 3 minutes summary of how he was falsely accused. It would have been way less impactful. - -&#x200B; - -Also, that bitch heroine is basically Malty's trashiness and the other three heroes' stupidity from shield hero combined. Dude is completely new to this and collapses after healing a wound that would physically be impossible to heal with magic and basically revives the greatest swordswoman of the kingdom? Omg, he is a hindrance, obviously the only way he'll be useful is if we drug him and treat him like dirt. Seriously, just no one can be that stupid. - -&#x200B; - -Honestly, it's about what I expected. A shield-hero with less shounen and more edginess. Also, porn. So I'm going to enjoy this way more than shield hero. If the story is completely honed for revenge and sacrifices the characters' intellect for that end, at least go all the way and make it a full-blown revenge porn and not cop out like shield hero. I can't wait to see how far did the author dare to go.";False;False;;;;1610722061;;False;{};gjcil9m;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjcil9m/;1610801856;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Etereke32;;;[];;;;text;t2_11qhl2;False;False;[];;You speak my mind. In shield hero, he is fucked over so irrationally that I just cannot take it seriously after that, so I expected it to double down on the edge. Instead, it cops out completely and turns full shounen. The punishment was a joke, and it was so hyped by source material readers. Seriously, they lose their status technically and I guess they have to be called by derogatory names, but other than that, nothing changes for bitch. She even tries to poison Naofumi after that and it is brushed off. I expected her to be either tortured, publicly humiliated, thrown into prison for life or any combination of those. So far it seems redo would deliver on the edge.;False;False;;;;1610722494;;False;{};gjcjfm9;False;t3_kwisyw;False;True;t1_gj5a1sp;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjcjfm9/;1610802370;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Etereke32;;;[];;;;text;t2_11qhl2;False;False;[];;I kinda agree with you, but I have to add, if they didn't skip over his tragic backstory and maybe dedicated one full episode to it, it would have been way better. That way at least his suffering would be more deeply understood by the audience, and it would be way more fulfilling as a revenge-porn to watch. This way, as you said, the revenge part is missing, and all that is left is rape. ~~I'm not gonna mention that I'll still enjoy the hell out of it because I'm a sick fuck~~;False;False;;;;1610722887;;False;{};gjck7hz;False;t3_kwisyw;False;True;t1_gj53lvo;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjck7hz/;1610802844;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MailCivil5493;;;[];;;;text;t2_9sdf2ojb;False;False;[];;What is the difference between the original and uncensored?;False;False;;;;1610723301;;False;{};gjcl1dk;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjcl1dk/;1610803362;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LightswornMagi;;;[];;;;text;t2_bgdkdk0;False;False;[];;"No, no, no, I like evil characters. What I don't like is someone trying to justify an evil character's actions as not evil because "" "" made him do it or "" "" good thing happened as a result of it. - -It's a matter of taking responsibility and owning a character's actions. A story needs to admit that it's character is evil and selfish, not make excuses to frame him as being in the right.";False;False;;;;1610725800;;False;{};gjcq5f8;False;t3_kwisyw;False;True;t1_gjb9t2p;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjcq5f8/;1610806721;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ViperiousTheRedPanda;;;[];;;;text;t2_2z45q33v;False;False;[];;"I hear the castle maids are great at giving ""Head""";False;False;;;;1610733625;;False;{};gjd75vp;False;t3_kwisyw;False;True;t1_gjbezjm;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjd75vp/;1610818680;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Eiennai;;;[];;;;text;t2_ybujg;False;False;[];;sex scenes;False;False;;;;1610733640;;False;{};gjd774d;False;t3_kwisyw;False;True;t1_gjcl1dk;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjd774d/;1610818704;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Eiennai;;;[];;;;text;t2_ybujg;False;False;[];;The manga is better in that regard, you should check it if you want, is a short read tbh, the art is nice too ( ͡° ͜ʖ ͡°);False;False;;;;1610734095;;False;{};gjd86tl;False;t3_kwisyw;False;True;t1_gjcil9m;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjd86tl/;1610819406;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ClemCa1;;;[];;;;text;t2_1mq70li;False;False;[];;">Nana to Kaoru - -It was explained though that when healing he lives all the past experiences of the person healed at once, which is both extremely painful and a huge dump of information for his brain to handle, but it also means that as long as he memorizes how they learned their skills, he can copy them.";False;False;;;;1610737876;;False;{};gjdgfe8;False;t3_kwisyw;False;True;t1_gj55rf6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjdgfe8/;1610825161;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ClemCa1;;;[];;;;text;t2_1mq70li;False;False;[];;I didn't expect this show to get such a good anime adaptation despite its content being hard to adapt. However, the only downside to the adaptation I found was the explanations of his power are lacking. In the manga, everything was already only explained once so a lot of readers didn't get it, but here, the only thing explained once is basic healing forcing a lot of memories at once in your brain, without explaining the abilities he theorized into existence from basic healing, so I hope the anime readers will be able to find the answers of the manga readers about this.;False;False;;;;1610738225;;False;{};gjdh6bx;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjdh6bx/;1610825645;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Viewland;;;[];;;;text;t2_sghto92;False;False;[];;As a support player, i can relate to MC getting thrashed by his own party, F;False;False;;;;1610740654;;False;{};gjdmb34;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjdmb34/;1610829263;3;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;Whose a bigger loser: a loser insulting people that like incel bait or a loser defending the incel bait lol;False;False;;;;1610757381;;False;{};gjejceh;False;t3_kwisyw;False;True;t1_gjb45u5;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjejceh/;1610851034;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KTOfficial_On_YT;;;[];;;;text;t2_85jris50;False;False;[];;"They story intrigues me so far? I was caught off guard by the explicit scenes though lol - -&#x200B; - -Why is it unadaptable? Too much nudity / explicitness? Or bad story?";False;False;;;;1610760652;;False;{};gjepbuz;False;t3_kwisyw;False;False;t1_gj50hzh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjepbuz/;1610854967;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shewy92;;;[];;;;text;t2_wd13k;False;False;[];;This is Shield Hero if he had balls and no morals. I love it.;False;False;;;;1610761764;;False;{};gjercxg;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjercxg/;1610856220;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shewy92;;;[];;;;text;t2_wd13k;False;False;[];;That's the dream. The OVAs don't scratch the same itch as a full adaptation. Like Horimya. It had a couple OVAs but finally got a full adaptation;False;False;;;;1610761888;;False;{};gjerl25;False;t3_kwisyw;False;True;t1_gj5vx6t;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjerl25/;1610856356;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shewy92;;;[];;;;text;t2_wd13k;False;False;[];;It's like The Hidden Dungeon Only I Can Enter. Except that so far only has kissing and [orgasmic ear nibbling](https://youtu.be/9d_xA9qRUAA);False;False;;;;1610762062;;False;{};gjerwh9;False;t3_kwisyw;False;False;t1_gj4o6yn;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjerwh9/;1610856548;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Apperation;;;[];;;;text;t2_6wjb1;False;False;[];;that was really cool, thank you for sharing;False;False;;;;1610765235;;False;{};gjexokt;False;t3_kwisyw;False;True;t1_gj6neag;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjexokt/;1610859941;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kapua420;;MAL;[];;http://myanimelist.net/profile/Hawaiian420;dark;text;t2_786d0;False;False;[];;I'm all for these trash meta, keep them all coming!;False;False;;;;1610776108;;False;{};gjfesyj;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjfesyj/;1610869549;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aiorax;;MAL;[];;;dark;text;t2_fbl0e;False;False;[];;"Massacre of the vengeful hero is the isekai version of <<Uramichi Oniisan>>";False;False;;;;1610776763;;False;{};gjffoh7;False;t3_kwisyw;False;False;t1_gj5dzk2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjffoh7/;1610870011;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dreadvirus69;;;[];;;;text;t2_e7cwk;False;False;[];;remember the first 10mins of ep 1 of goblin slayer ?? hope this anime continues down that path..;False;False;;;;1610777918;;False;{};gjfh659;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjfh659/;1610870816;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dreadvirus69;;;[];;;;text;t2_e7cwk;False;False;[];;thx!;False;False;;;;1610777969;;False;{};gjfh8hv;False;t3_kwisyw;False;True;t1_gjc7s4w;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjfh8hv/;1610870851;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dreadvirus69;;;[];;;;text;t2_e7cwk;False;False;[];;awesome..thats what the perverted side of me wants haha;False;False;;;;1610778246;;False;{};gjfhl0p;False;t3_kwisyw;False;False;t1_gj7ot9q;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjfhl0p/;1610871041;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dreadvirus69;;;[];;;;text;t2_e7cwk;False;False;[];;"just hit me...i call bs on this> unicorns are pure hearted creatures it wouldnt let a twisted soul like that princess ride it haha \[unless she drugged the unicorn too\]";False;False;;;;1610779572;;False;{};gjfj778;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjfj778/;1610871963;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Phoenix__Wwrong;;;[];;;;text;t2_6z4tcv1o;False;False;[];;Damn I love revenge stories, and I love this.;False;False;;;;1610780930;;False;{};gjfkrac;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjfkrac/;1610872825;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IUTLK;;;[];;;;text;t2_12uux3;False;False;[];;Did it? I see only one comment, maybe my Reddit bugged or something;False;False;;;;1610781406;;False;{};gjfla3r;False;t3_kwisyw;False;True;t1_gja63vg;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjfla3r/;1610873112;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LivefromPhoenix;;MAL;[];;http://myanimelist.net/profile/LiveFromPhoenix;dark;text;t2_6r8wx;False;True;[];;I'm 100% positive a single *episode* of Reviewers had more effort put into it than this entire series.;False;False;;;;1610788770;;False;{};gjfsngq;False;t3_kwisyw;False;True;t1_gj4tq2x;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjfsngq/;1610877031;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LivefromPhoenix;;MAL;[];;http://myanimelist.net/profile/LiveFromPhoenix;dark;text;t2_6r8wx;False;True;[];;"> Grow the fuck up kid. - -https://i.pinimg.com/originals/0e/8b/7d/0e8b7d2c53195177a326670609fcb7ea.jpg - - -Comments like yours make me remember the average age of this sub is pretty low. This is some super cringey edgelord nonsense.";False;False;;;;1610789227;;False;{};gjft2qd;False;t3_kwisyw;False;True;t1_gj8fm57;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjft2qd/;1610877251;0;True;False;anime;t5_2qh22;;0;[]; -[];;;LivefromPhoenix;;MAL;[];;http://myanimelist.net/profile/LiveFromPhoenix;dark;text;t2_6r8wx;False;True;[];;"> You know, this would have been way better if the MC's suffering is not a short montage, but a whole episode. That way, the hatred towards the other heroes would have been more deep-rooted, and it would be easier to sympathize with the MC. Showing a few minutes summary of his suffering is not enough. - -That was all I could think of during this episode (well, that and how lazy the writing was). Even if the writing was *good* it's really hard to care about characters or plot if the show just glosses over major story beats.";False;False;;;;1610789581;;False;{};gjftens;False;t3_kwisyw;False;True;t1_gjcil9m;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjftens/;1610877421;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mutei777;;;[];;;;text;t2_1042o4;False;False;[];;"Holy shit this is more disgusting than Kaifuku...it's just a guy using magic to ACTUALLY rape & gaslight people...this is why hentai plots should stay in hentai..";False;False;;;;1610794689;;False;{};gjfyuhe;False;t3_kwisyw;False;True;t1_gj5100z;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjfyuhe/;1610880204;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610795804;;False;{};gjg0sen;False;t3_kwisyw;False;True;t1_gjfyuhe;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjg0sen/;1610881057;1;True;False;anime;t5_2qh22;;0;[];True -[];;;C3real101;;;[];;;;text;t2_4flbq6n6;False;False;[];;"Your whole argument is ""I don't like this so that means this show is for incels'.";False;False;;;;1610799595;;False;{};gjg7ei7;False;t3_kwisyw;False;True;t1_gjar5yb;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjg7ei7/;1610884028;1;True;False;anime;t5_2qh22;;0;[]; -[];;;C3real101;;;[];;;;text;t2_4flbq6n6;False;False;[];;I don't get the argument for this to be an incel-y anime, just because he was abused by a girl and the fact that he wants to take revenge against the girl who made his life hell it makes him an incel? It's like you think women can't abuse people.This is just a normal revenge fantasy story but the only reason you're calling it incel-y is because the girl is the villain ?;False;False;;;;1610800080;;False;{};gjg89ii;False;t3_kwisyw;False;True;t1_gj7legl;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjg89ii/;1610884424;0;True;False;anime;t5_2qh22;;0;[]; -[];;;FullMetalField4;;;[];;;;text;t2_hfipc;False;False;[];;You, uh, know it's not an really an isekai right?;False;False;;;;1610803481;;False;{};gjgemsg;False;t3_kwisyw;False;True;t1_gjam25x;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjgemsg/;1610887471;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Enan84;;;[];;;;text;t2_okx0v;False;False;[];;I total ship MC and Demon Lord.;False;False;;;;1610805215;;False;{};gjgi7vh;False;t3_kwisyw;False;True;t1_gj55xf2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjgi7vh/;1610889291;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RDOoM;;;[];;;;text;t2_i9bs4;False;False;[];;"The concept is kind of interesting, but it looks like crap, the sex scenes serve no useful purpose, nor do the female characters being as endowed as humanly possible. At least the hedonist power-up anime has some purpose for it's ecchi. - -It's pretty much garbage, and from the looks of it, not enjoyable garbage. Pass. - -I might visit the comment section for printscreens tho, seems spicy, riddled with controversy.";False;False;;;;1610806988;;False;{};gjglwld;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjglwld/;1610891242;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JosephHitlerUn;;;[];;;;text;t2_3oi5qdpj;False;False;[];;Listen kid just because people don’t get triggered over anime as easily as you doesn’t make them an edge lord, if you see what they did to him you’d understand why exactly he’s sadistic and why he wants revenge;False;False;;;;1610809148;;False;{};gjgqj1g;False;t3_kwisyw;False;True;t1_gjft2qd;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjgqj1g/;1610893815;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Pull_towards;;;[];;;;text;t2_1477p1o;False;False;[];;I give it 5 tops.;False;False;;;;1610814196;;False;{};gjh25h8;False;t3_kwisyw;False;True;t1_gj5dmit;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjh25h8/;1610900996;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"That's a ship I can get behind! - -And to be honest, I think it may even be something that happens; Maybe not them being a couple, but joining together. - -The Demon Lord really didn't look like the bad guy (well, girl) during the fight. - -Looked more like just a different species, and the ""heroes"" were committing genocide against them.";False;False;;;;1610816394;;False;{};gjh7jy0;False;t3_kwisyw;False;True;t1_gjgi7vh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjh7jy0/;1610904375;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610818686;;False;{};gjhdc5b;False;t3_kwisyw;False;True;t1_gj4pavb;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjhdc5b/;1610908246;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LivefromPhoenix;;MAL;[];;http://myanimelist.net/profile/LiveFromPhoenix;dark;text;t2_6r8wx;False;True;[];;">Listen kid just because people don’t get triggered over anime - -There it is again. I guess you're too immature to understand talking like this automatically outs you as a teenager. - ->if you see what they did to him you’d understand why exactly he’s sadistic and why he wants revenge - -You're acting as if the entire plot is contrived to justify his ""revenge"". Everything in the episode exists to set up rationalizations for the MC wanting to be a rapist, from the comically evil morality of the soon-to-be victims to the 10 second abuse montage the show lazily glossed over.";False;False;;;;1610821813;;False;{};gjhlcll;False;t3_kwisyw;False;True;t1_gjgqj1g;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjhlcll/;1610913033;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JosephHitlerUn;;;[];;;;text;t2_3oi5qdpj;False;False;[];;That’s because this first episode is setting it up for the next episode where you’ll understand why he wants revenge, I haven’t read the manga but I watched a video so I can see why, and why do these bitches not deserve it, they raped him, drugged him, they’ve hurt others it’s karma if you don’t like them don’t watch it, pretty fucking simple;False;False;;;;1610822296;;False;{};gjhmitp;False;t3_kwisyw;False;True;t1_gjhlcll;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjhmitp/;1610913792;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Panophobia_senpai;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3nqizk;False;False;[];;"> Also the premises aren't similar at all. - -Yeah i know. I just like to make ppl remember it. :D";False;False;;;;1610823823;;False;{};gjhq98p;False;t3_kwisyw;False;True;t1_gjb46ue;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjhq98p/;1610916171;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Kingsole111;;;[];;;;text;t2_wrp7j;False;False;[];;Okay. Dumb question. Er. Pervy question. Er. Well. Is the crunchyroll version uncut? Or is this like interspecies reviewers where to watch it in its glory i have to sail the seas?;False;False;;;;1610839444;;False;{};gjinddw;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjinddw/;1610937352;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nickonoodle;;;[];;;;text;t2_14e5nq;False;False;[];;Best explanation of how his powers work. Take my upvote.;False;False;;;;1610841047;;False;{};gjiqfls;False;t3_kwisyw;False;True;t1_gjb1it5;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjiqfls/;1610939312;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nickonoodle;;;[];;;;text;t2_14e5nq;False;False;[];;Not just women......;False;False;;;;1610841320;;False;{};gjiqyit;False;t3_kwisyw;False;True;t1_gj4pavb;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjiqyit/;1610939635;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nemt;;;[];;;;text;t2_59bfz;False;False;[];;why would gigguk watch this? i was under the impression this is like incel fantasy rape show, i thought gigguk is better than that;False;False;;;;1610842556;;False;{};gjitdhf;False;t3_kwisyw;False;True;t1_gj4jkr7;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjitdhf/;1610941188;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Gigguk is one of the biggest degenerates out there, I don't know why would otherwise;False;False;;;;1610843196;;False;{};gjiulhs;False;t3_kwisyw;False;True;t1_gjitdhf;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjiulhs/;1610941934;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nemt;;;[];;;;text;t2_59bfz;False;False;[];;oh lol i thought hes a pretty chill cool guy from his season anime recomendations .. :S;False;False;;;;1610843267;;False;{};gjiuqfw;False;t3_kwisyw;False;True;t1_gjiulhs;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjiuqfw/;1610942017;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Popinguj;;;[];;;;text;t2_173gna;False;False;[];;Introduce him to anime and slowly corrupt to degeneracy.;False;False;;;;1610847161;;False;{};gjj1xp7;False;t3_kwisyw;False;False;t1_gj5edkf;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjj1xp7/;1610946437;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_Lost_Sin_;;;[];;;;text;t2_6q7mby4d;False;False;[];;Look in the mirror for a bit that should give you the answer.;False;False;;;;1610853291;;False;{};gjjdb5n;False;t3_kwisyw;False;True;t1_gjejceh;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjjdb5n/;1610953160;1;False;False;anime;t5_2qh22;;0;[]; -[];;;luigi1er;;;[];;;;text;t2_1dl1yixh;False;False;[];;I mean, it's bad when compared to most of the other animes, but I agree it's ridiculous to call it bad just because there is rape (cough GS). Personally, I think it will be more interesting to talk about flaws that aren't inherent to this type of stories (like many girls falling in love with a harem MC). For example, what lacks or stop it to make it a better porn-revenge story? Even if I consider it a guilty pleasure, there are things I can't talk yet that disappointed me and that I think would have made the story better without changing its nature.;False;False;;;;1610865423;;False;{};gjjwvaq;False;t3_kwisyw;False;True;t1_gj8vb2k;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjjwvaq/;1610963882;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BatmanRises;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/Yuuki_Ame;light;text;t2_8jpez;False;False;[];;Ooh can't wait. Is it 13 episode or 2-cour?;False;False;;;;1610866323;;False;{};gjjxztt;False;t3_kwisyw;False;True;t1_gj7zllf;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjjxztt/;1610964474;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HappyLampJacker;;;[];;;;text;t2_10fcvn;False;False;[];;Man, I sincerely hope not of that argument was projecting cause wooooh, your one passionate person.;False;False;;;;1610870859;;False;{};gjk35bq;False;t3_kwisyw;False;True;t1_gjam90w;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjk35bq/;1610967196;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PsychedelicOptimist;;;[];;;;text;t2_3a9eeg5s;False;False;[];;Sail the seas, matey!;False;False;;;;1610883561;;False;{};gjkk888;False;t3_kwisyw;False;True;t1_gj8hv3t;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjkk888/;1610975834;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SpectreAmazing;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DreamEnd;light;text;t2_j6g2g;False;False;[];;"3 of Rance's illegitimate sons - -Kazuma, the one that inherited his Luck and Stealth skills - -Naofumi, the one that inherited his Durability and Defenses - -And.. Keyaru, the one that inherited his Regeneration powers and most important of all.. his sex drive and rape tendencies - -Joke aside, as Anime-only viewer (yet), i'm looking forward to the next episode. So far it has been really interesting";False;False;;;;1610906415;;False;{};gjmjibd;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjmjibd/;1611014978;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lookingforsublet5760;;;[];;;;text;t2_6yxg8jd0;False;False;[];;oof;False;False;;;;1610911947;;False;{};gjn0isu;False;t3_kwisyw;False;True;t1_gj5u08s;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjn0isu/;1611023923;1;True;False;anime;t5_2qh22;;0;[]; -[];;;M_Drekinn;;;[];;;;text;t2_ze5k7ow;False;False;[];;And I want a twitter outrage of some salty snowflakes...;False;False;;;;1610914760;;False;{};gjn6pj1;False;t3_kwisyw;False;False;t1_gj81iz9;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjn6pj1/;1611027843;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Funkyryoma;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_jb5poxm;False;False;[];;The gamer sight kinda ruined the fantasy setting if i were to br homest;False;False;;;;1610916145;;False;{};gjn9j02;False;t3_kwisyw;False;True;t1_gj7a7vw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjn9j02/;1611029638;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;mb it's not an isekai, but TBF the modern use of isekai is just a tool to get people to more easily self insert.;False;False;;;;1610923931;;False;{};gjnr053;False;t3_kwisyw;False;True;t1_gjgemsg;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjnr053/;1611039956;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;The show is literally about a guy who redoes life to get revenge on people who abused him. Perfect self insert dummy for people who think they've been abused by society. The real incel-ness comes from the fact that it plays to sexual fantasies in combination with the revenge shit. Hell, the first episode literally has a whole sequence of the kid fucking a bunch of maids.;False;False;;;;1610924197;;False;{};gjnrk4e;False;t3_kwisyw;False;True;t1_gjg7ei7;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjnrk4e/;1611040292;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;The MC himself is not the incel. Fans of the series are. You'd have to be a pretty big incel to willingly project onto a guy that gets abused by others and wants to take revenge by rape;False;False;;;;1610924496;;False;{};gjns67v;False;t3_kwisyw;False;False;t1_gjg89ii;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjns67v/;1611040643;1;True;False;anime;t5_2qh22;;0;[]; -[];;;C3real101;;;[];;;;text;t2_4flbq6n6;False;False;[];;Ah yes, because normal people don't have sexual fantasies, only incels have sexual fantasies.;False;False;;;;1610924882;;False;{};gjnt293;False;t3_kwisyw;False;True;t1_gjnrk4e;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjnt293/;1611041128;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;Did you not read the part where I said it was because it was combined with the revenge stuff.;False;False;;;;1610925460;;False;{};gjnu9xq;False;t3_kwisyw;False;True;t1_gjnt293;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjnu9xq/;1611041811;1;True;False;anime;t5_2qh22;;0;[]; -[];;;C3real101;;;[];;;;text;t2_4flbq6n6;False;False;[];;I think you're the one who isn't reading it, basically revenge + sexual fantasies= incel ? This is so stupid smh.;False;False;;;;1610925932;;False;{};gjnv794;False;t3_kwisyw;False;True;t1_gjnu9xq;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjnv794/;1611042329;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Serventdraco;;;[];;;;text;t2_cmdw0;False;False;[];;"You fucking gamergaters still exist? - -Jesus christ.";False;False;;;;1610927970;;False;{};gjnz3nz;False;t3_kwisyw;False;True;t1_gj6x80c;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjnz3nz/;1611044503;0;True;False;anime;t5_2qh22;;0;[]; -[];;;C3real101;;;[];;;;text;t2_4flbq6n6;False;False;[];;You can enjoy and shows without self inserting or projecting yourself onto the characters.You're the only one who comes off as an idiot for thinking like this.;False;False;;;;1610928014;;False;{};gjnz6pu;False;t3_kwisyw;False;True;t1_gjns67v;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjnz6pu/;1611044549;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DittoTheDitto;;;[];;;;text;t2_16ps4e;False;False;[];;kinda rushed compared to the manga, still ok.;False;False;;;;1610928574;;False;{};gjo096k;False;t3_kwisyw;False;False;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjo096k/;1611045133;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SpecialChain;;;[];;;;text;t2_7tv0lefo;False;False;[];;Thanks for the explanation.;False;False;;;;1610937723;;False;{};gjohngd;False;t3_kwisyw;False;True;t1_gjb1it5;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjohngd/;1611054723;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Holygamer99;;;[];;;;text;t2_g6e4f;False;False;[];;Rape. Lots and lots of rape.;False;False;;;;1610940641;;False;{};gjomzxl;False;t3_kwisyw;False;True;t1_gj6q7pr;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjomzxl/;1611057779;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Neo_Techni;;;[];;;;text;t2_k9xvc;False;False;[];;You don't have to be a Gamergater to hate someone responsible for a death, you just have to be a decent person.;False;False;;;;1610944318;;False;{};gjot1m2;False;t3_kwisyw;False;True;t1_gjnz3nz;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjot1m2/;1611061623;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Serventdraco;;;[];;;;text;t2_cmdw0;False;False;[];;Lol, you've really drank the Koolaid.;False;False;;;;1610945426;;False;{};gjouqu0;False;t3_kwisyw;False;True;t1_gjot1m2;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjouqu0/;1611062702;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kcanimegod;;;[];;;;text;t2_3ux15mq1;False;False;[];;Nah if anything is garbage it's attack on titan and rezero;False;False;;;;1610949438;;False;{};gjp0m4g;False;t3_kwisyw;False;True;t1_gjglwld;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjp0m4g/;1611066641;0;True;False;anime;t5_2qh22;;0;[]; -[];;;RDOoM;;;[];;;;text;t2_i9bs4;False;False;[];;Oooh, edgy.;False;False;;;;1610967416;;False;{};gjpklyh;False;t3_kwisyw;False;True;t1_gjp0m4g;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjpklyh/;1611080702;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Heigou;;;[];;;;text;t2_c23wx;False;False;[];;probably the one who joins discussion threads just to piss off people who seek entertainment;False;False;;;;1610980474;;False;{};gjq0uk9;False;t3_kwisyw;False;True;t1_gjalv6q;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjq0uk9/;1611092464;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Heigou;;;[];;;;text;t2_c23wx;False;False;[];;"I often watch anime with a canadian guy over teamspeak and you can often hear his girlfriend in the background laughing at giant anime tiddies. Her reactions were really funny when we used to watch ishuzoku reviewers every week. Man, I seldom had as much fun as I had while watching reviewers with the boys. - -Now this show is pretty different, albeit equally questionable. Personally, these over the top edgy shows are very entertaining to watch, similar to how I sometimes enjoy watching bad movies/series. In the end it's all about you having fun while consuming I guess ;p";False;False;;;;1610981175;;False;{};gjq20m5;False;t3_kwisyw;False;True;t1_gj5edkf;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjq20m5/;1611093270;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610988874;;1610990451.0;{};gjqgevb;False;t3_kwisyw;False;True;t1_gj55rf6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjqgevb/;1611103011;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Sorry /u/Djinnfor, this comment has been removed because some spoiler tags did not include a description of the spoiler content inside the brackets. Please make sure to label all your spoilers so that other users know what is being spoiled and to ensure the visibility of the spoilers with mobile applications. - -[](#yanderebot) - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610988875;moderator;False;{};gjqgewg;False;t3_kwisyw;False;True;t1_gjqgevb;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjqgewg/;1611103013;0;False;False;anime;t5_2qh22;;0;[]; -[];;;DamedaGuru;;;[];;;;text;t2_5yvojml0;False;False;[];;Waiting on the uncensored version;False;False;;;;1610990099;;False;{};gjqix8m;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjqix8m/;1611104658;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Djinnfor;;MAL;[];;https://myanimelist.net/animelist/DjinnFor;dark;text;t2_luz8c;False;False;[];;Fuck off.;False;False;;;;1610990463;;False;{};gjqjod1;False;t3_kwisyw;False;True;t1_gjqgewg;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjqjod1/;1611105131;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Djinnfor;;MAL;[];;https://myanimelist.net/animelist/DjinnFor;dark;text;t2_luz8c;False;False;[];;"> Still blown away ""instant death magic"" is considered healing in this world. I GUESS you can make the argument that it's like negative healing, but how the hell is ""skill copying"" considered healing magic. - -I haven't read the manga but here's my two cents. - -If you think about it logically, how are you supposed to do a ""full restoration back to perfect health"" of someone if you don't have a definition of ""perfect health"" to restore it to? [Mahouka Koukou no Rettousei](https://myanimelist.net/anime/20785/Mahouka_Koukou_no_Rettousei) had a similar plot point where one of its characters could heal another character by [minor MKnR character power spoilers](/s ""storing a copy of their body to recreate it later atom by atom."") This process is said to be extremely mentally taxing on the user in that show as well. - -So let's construct a model here based on that premise. - -From what I can see, Heroes have the ""ultimate mastery"" of their respective ability domain, in his case ""perfect healing"". - -So what does perfect healing look like? - -If you're trying to ""perfectly"" heal physical wounds, you need a perfect understanding of what their body should look like at ""perfect health"" so you can restore it from whatever state its currently in back to a state of perfect health. If you're trying to heal mental wounds, or restore lost memories, or what have you, you'll need a perfect understanding of their mind or memories to recreate it. If some curse has robbed them of their ability to walk, or made them forget how to swing a sword, you need to perfectly recreate that competency. So if you have a spell of ""ultimate healing"" that can do all of the above simultaneously, you need a perfect understanding of everything about them to recreate. This causes intense mental overload and suffering. - -Similarly, for perfect healing, you need to have the power over creation and destruction. You obviously need to be able to create a fully functioning arm if it had been chopped off, but you would also need to destroy or remove things. If someones broken bones had set improperly, you need to erase that and replace it with a healthy bone. If someone's tissue had scarred over, you need to remove the scar and replace it with healthy skin. If someone had an arrow tip imbedded inside them, you would need to erase it. - -So ultimately, the power of ""ultimate healing"" is comprised of five steps: - -1. define a target -2. understand everything about the target -3. envision a desired state for the target based on that understanding -4. deconstruct the target in its current state -5. reconstruct the target in the desired state from step 2 - -Now at first he could probably only do the entire process in the beginning, but over time he probably got used to controlling his power somewhat. This allowed him to skip certain steps or modify them slightly, and he developed his variation spells as a result: - -The ability to instantly destroy something can thus be accomplished by performing step #4 by itself and skipping the others. - -The ability to copy something can be accomplished by performing step #1 and #2 and skipping steps #3 through #5. Likewise you can copy just a small part of something by narrowly defining the target in step #1, so you can for instance copy a maids knowledge of palace politics (or whatever he was doing with the girls who kept showing up to his room). - -The ability to rewind the entire planet is comprised of steps #1-5, but with the entire planet as its target in #1 and a specific time period in the past in step #3. And for step #2 you probably don't need to understand the entire history of the planet, just enough to go back however far you need. Obviously without fuck tons of mana (or whatever energy source this entails) this would be impossible, but let's say the power of the Philosopher's Stone gives him enough juice in the battery or whatever. - -If there's any other powers that he has that don't fit within this model, feel free to point them out. But I think you could probably create almost any effect you want through variations of those steps. I was spoiled of one other power he has, namely [the subreddit rule where you have to put the name of the show you're currently discussing in this tag is fucking braindead retarded, figure it out for yourself by using your eyes and brain](/s ""what he does to the pink haired girl"") and I think that's easy to explain via just fiddling around with step #3.";False;False;;;;1610990496;;False;{};gjqjque;False;t3_kwisyw;False;True;t1_gj55rf6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjqjque/;1611105174;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;"I definitely agree, but does this series (along with a majority of isekais and the like) seem like one? There is a reason why the genre ""self insert power fantasy"" exists";False;False;;;;1610995704;;False;{};gjqukha;False;t3_kwisyw;False;True;t1_gjnz6pu;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjqukha/;1611112050;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;idk how you can't see the correlation between being abused by society, wanting revenge, and fucking willing (and unwilling) girls as not incelly;False;False;;;;1610995781;;False;{};gjquq7c;False;t3_kwisyw;False;False;t1_gjnv794;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjquq7c/;1611112150;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wrappingu87;;;[];;;;text;t2_4n2lt5bp;False;False;[];;I mean when the entertainment they seek appeals to incels?;False;False;;;;1610995811;;False;{};gjquseb;False;t3_kwisyw;False;True;t1_gjq0uk9;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjquseb/;1611112190;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NinokuNANI;;;[];;;;text;t2_65tpsjrl;False;False;[];;Husband and I watched Interspecies Reviewers together, but didn't finish the series. I did, he lost interest after several eps;False;False;;;;1611012879;;False;{};gjrsy73;False;t3_kwisyw;False;True;t1_gjq20m5;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjrsy73/;1611131772;1;True;False;anime;t5_2qh22;;0;[]; -[];;;XtremeReDdiTZ69;;;[];;;;text;t2_3ya1da0k;False;False;[];;I cannot fucking believe this is getting an anime. Twitter is about to throw a fit;False;False;;;;1611016587;;False;{};gjrzqdy;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjrzqdy/;1611135441;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GosuGian;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GosuDRM;light;text;t2_mu7ij;False;False;[];;"FULL HENTAI. - -I like it. - -It's like Shield Hero + Code Geass";False;False;;;;1611029418;;False;{};gjsnrsl;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjsnrsl/;1611149147;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SogePrinceSama;;MAL;[];;http://myanimelist.net/animelist/teacake911;dark;text;t2_p55wn;False;False;[];;I'm guessing things go south after he left the starting town in the original timeline, maybe his foster mom gets Goblin Slayered by the Princess's group and that's how he became a druggy slave healer... would make sense to want to avoid that timeline by restarting from zero;False;False;;;;1611036097;;False;{};gjsy3en;False;t3_kwisyw;False;True;t1_gj9c87e;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjsy3en/;1611156207;1;True;False;anime;t5_2qh22;;0;[]; -[];;;merickmk;;;[];;;;text;t2_4ujqdaze;False;False;[];;"Ishuzoku was unironically a great show. Very well produced and paced, it's the first time you can actually watch something like that for the legit plot. - -I've only seen this one episode of this show, but it doesn't seem particularly high quality lol Comparing Ishuzoku to this is an insult to Ishuzoku.";False;False;;;;1611038446;;False;{};gjt141u;False;t3_kwisyw;False;True;t1_gj4tq2x;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjt141u/;1611158306;1;True;False;anime;t5_2qh22;;0;[]; -[];;;merickmk;;;[];;;;text;t2_4ujqdaze;False;False;[];;Yea, not gonna lie this completely flew under my radar. Just wrote it off as some generic power fantasy ecchi shit. Then I saw how upset people were in an unrelated thread and got curious. I'm just here for the shitshow lol;False;False;;;;1611038560;;False;{};gjt1960;False;t3_kwisyw;False;True;t1_gj802ge;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjt1960/;1611158400;1;True;False;anime;t5_2qh22;;0;[]; -[];;;merickmk;;;[];;;;text;t2_4ujqdaze;False;False;[];;A mexican one, at that;False;False;;;;1611038777;;False;{};gjt1iv8;False;t3_kwisyw;False;True;t1_gjboojs;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjt1iv8/;1611158582;1;True;False;anime;t5_2qh22;;0;[]; -[];;;killingspeerx;;;[];;;;text;t2_ne11c;False;False;[];;Didn't know if I should watch the show or not, now I am sold;False;False;;;;1611082437;;False;{};gjuxckd;False;t3_kwisyw;False;True;t1_gj5fjam;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjuxckd/;1611204839;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1611106723;;False;{};gjwbvdq;False;t3_kwisyw;False;True;t1_gj60kfd;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjwbvdq/;1611232669;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hailgod;;;[];;;;text;t2_86po8;False;False;[];;yeh no. its not on the same level. healer hero isnt comparable to izhuzoku reviewer at all. fucked up is not enough to describe it.;False;False;;;;1611107377;;False;{};gjwd3kt;False;t3_kwisyw;False;True;t1_gj4tq2x;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjwd3kt/;1611233414;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hailgod;;;[];;;;text;t2_86po8;False;False;[];;yep there is some kind of plot. but its mostly just fucked up.;False;False;;;;1611107705;;False;{};gjwdpim;False;t3_kwisyw;False;True;t1_gj4jkta;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjwdpim/;1611233781;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1611126542;;False;{};gjx7fxb;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjx7fxb/;1611253411;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Anni01;;;[];;;;text;t2_yc4lp;False;False;[];;yes and she is cute as fuck;False;False;;;;1611154676;;False;{};gjy6qv1;False;t3_kwisyw;False;True;t1_gj4jeqn;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjy6qv1/;1611276495;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1611154735;;False;{};gjy6v0d;False;t3_kwisyw;False;True;t1_gj4mlww;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjy6v0d/;1611276564;0;True;False;anime;t5_2qh22;;0;[]; -[];;;N1gHtMaRe99;;;[];;;;text;t2_4hm66djz;False;False;[];;Just tell me the site;False;False;;;;1611167027;;False;{};gjyy2um;False;t3_kwisyw;False;True;t1_gjt1iv8;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gjyy2um/;1611292770;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;merickmk;;;[];;;;text;t2_4ujqdaze;False;False;[];;Can't, it's against the rules;False;False;;;;1611185714;;False;{};gk03ibr;False;t3_kwisyw;False;True;t1_gjyy2um;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gk03ibr/;1611315748;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bluepsycho65;;;[];;;;text;t2_3exex6qy;False;False;[];;Just like the manga this shit is a shit show but I can’t look away;False;False;;;;1611197102;;False;{};gk0ptqr;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gk0ptqr/;1611329657;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mee8Ti6Eit;;;[];;;;text;t2_2ziafqy7;False;False;[];;Healing is classified as necromancy in a lot of fantasy systems like in DnD. Both of them are power over life and death. If you can give life to the living, why can't you can give life to the dead and take it away from the living?;False;False;;;;1611219036;;False;{};gk1led3;False;t3_kwisyw;False;True;t1_gj55rf6;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gk1led3/;1611350412;1;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;I swear ost gives those old school Hentai vibes;False;False;;;;1611230405;;False;{};gk1wztg;False;t3_kwisyw;False;True;t3_kwisyw;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gk1wztg/;1611357833;1;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;Well in Rance's case the women he rapes are not mind controlled and they join his harem afterwards for some reason;False;False;;;;1611230567;;False;{};gk1x6om;False;t3_kwisyw;False;True;t1_gj6ob28;/r/anime/comments/kwisyw/kaifuku_jutsushi_no_yarinaoshi_episode_1/gk1x6om/;1611357954;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SorcererOfTheLake;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RiverSorcerer;light;text;t2_1pmzlf0y;False;True;[];;"Here lie the endings that were eliminated due to the franchise limit: - -No. 87: T-KT (Attack on Titan) -No. 101: Fake Verthandi (Steins;Gate) -No. 114: Modern Crusaders (Jojo) -No. 115: This Illusion (Fate franchise) -No. 119: Lyra (Steins;Gate) -No. 130: Hana no Uta (Fate franchise) -No. 142: Iris (Sword Art Online) -No. 147: Oingo to Boingo (Jojo) -No. 161: Song played by the Stars (Steins;Gate) -No. 162: Whiz (Monogatari) -No. 163: Border (Monogatari) -No. 168: I Beg You (Fate franchise) -No. 169: Hol Horse to Boingo (Jojo) -No. 175: Kesenai Tsumi (Fullmetal Alchemist) -No. 184: Kieru daydream (Monogatari) -No. 185: Call Your Name (Attack on Titan) -No. 191: Shirushi (Sword Art Online) -No. 195: Niji no Kanata ni (Sword Art Online) -No. 199: Prover (Fate franchise) -No. 214: Barricades (Attack on Titan) -No. 216: Hibari (Fate franchise) -No. 218: Hitori (Darling in the Franxx) -No. 240: Fellows (Fate franchise) -No. 242: Kimi to no Ashita (Fate franchise) -No. 264: Collage (Fate franchise) -No. 286: Hoshi ga furu yume (Fate franchise)";False;False;;;;1610578806;;1610580329.0;{};gj60ko9;True;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj60ko9/;1610654759;33;True;False;anime;t5_2qh22;;0;[]; -[];;;far219;;;[];;;;text;t2_qirtt;False;False;[];;"You gotta be kidding me, Lyra always fails to make the cut. It's the best Steins;Gate song and no one votes for it. I guess that's what happens to insert songs.";False;False;;;;1610579038;;False;{};gj611xf;False;t3_kwsa2a;False;False;t1_gj60ko9;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj611xf/;1610655115;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Pollsmor;;;[];;;;text;t2_pvhag;False;False;[];;"Kiseki getting eliminated but Kanade didn't, damn I would've thought the former would be the more popular song. - -Also I'm kinda sad that the Chika Dance is higher seeded than Sentimental Crisis...";False;False;;;;1610579105;;False;{};gj616x6;False;t3_kwsa2a;False;True;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj616x6/;1610655214;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SorcererOfTheLake;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RiverSorcerer;light;text;t2_1pmzlf0y;False;True;[];;Blame memes.;False;False;;;;1610579157;;False;{};gj61am7;True;t3_kwsa2a;False;True;t1_gj616x6;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj61am7/;1610655290;2;True;False;anime;t5_2qh22;;0;[]; -[];;;far219;;;[];;;;text;t2_qirtt;False;False;[];;Fuck, Hectopascal's gonna be destroyed by that MHA ed, isn't it?;False;False;;;;1610579186;;False;{};gj61cu0;False;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj61cu0/;1610655333;26;True;False;anime;t5_2qh22;;0;[]; -[];;;far219;;;[];;;;text;t2_qirtt;False;False;[];;Can I ask, I was late to this contest, was Shout Baby ineligible because the second cour of MHA S4 aired during Winter 2020? Because it wasn't even nominated and that's a damn shame.;False;False;;;;1610579278;;False;{};gj61jp8;False;t3_kwsa2a;False;True;t1_gj61am7;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj61jp8/;1610655467;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SorcererOfTheLake;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RiverSorcerer;light;text;t2_1pmzlf0y;False;True;[];;I don't think it got nominated, but if it did, it would have been disqualified.;False;False;;;;1610579349;;False;{};gj61oyo;True;t3_kwsa2a;False;True;t1_gj61jp8;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj61oyo/;1610655572;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610579464;moderator;False;{};gj61xks;False;t3_kwsihx;False;False;t3_kwsihx;/r/anime/comments/kwsihx/trying_to_find_the_song_from_the_ending_of_todays/gj61xks/;1610655741;1;False;False;anime;t5_2qh22;;0;[]; -[];;;LordTrinity;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/LordTrinity;light;text;t2_muxil3i;False;False;[];;I'm not even joking, I think I'll list to all of the ops before voting (this year I have a lot of free time). But before I start, for today, does any of them have spoilers about its history (so I can't watch it)?;False;False;;;;1610579504;;False;{};gj620he;False;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj620he/;1610655797;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610579649;;False;{};gj62b4i;False;t3_kwsa2a;False;True;t1_gj60ko9;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj62b4i/;1610656001;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;">T-KT removed - -This is a dark day indeed...to see my favorite Attack on Titan ED massacred like this... - -Of course Chika Dance is 1 seed. Wouldn't be surprised (but mildly annoyed) if it won due to the massive amount of Kaguya fans on this sub. Anyways, I'm glad to see some of the EDs I shilled made it onto the list, even though Eien no Amuro didn't make it. - -Damn, Pipo Password is going to get destroyed by Tomorrow in the first round, such an unlucky matchup.";False;False;;;;1610579675;;False;{};gj62d5j;False;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj62d5j/;1610656043;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Servicename123;;;[];;;;text;t2_7rvapcum;False;False;[];;I thought it was hella good;False;False;;;;1610579800;;False;{};gj62mf6;False;t3_kwskru;False;False;t3_kwskru;/r/anime/comments/kwskru/is_akudama_drive_the_dumbest_anime_of_the_last/gj62mf6/;1610656241;8;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;"So the 54 seed is really going to win the contest this year, interesting... - -[](#yuishrug)";False;False;;;;1610579830;;False;{};gj62oiy;False;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj62oiy/;1610656281;31;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610579875;moderator;False;{};gj62rwr;False;t3_kwsnpd;False;True;t3_kwsnpd;/r/anime/comments/kwsnpd/where_to_watch_new_season_of_log_horizon/gj62rwr/;1610656354;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi basmand, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610579876;moderator;False;{};gj62rya;False;t3_kwsnpd;False;True;t3_kwsnpd;/r/anime/comments/kwsnpd/where_to_watch_new_season_of_log_horizon/gj62rya/;1610656355;1;False;False;anime;t5_2qh22;;0;[]; -[];;;far219;;;[];;;;text;t2_qirtt;False;False;[];;Nobody nominated the Magi EDs? Only one of them and it didn't even make it through elimination... that sucks.;False;False;;;;1610579879;;False;{};gj62s7a;False;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj62s7a/;1610656361;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610579940;;False;{};gj62wpf;False;t3_kwsnpd;False;True;t3_kwsnpd;/r/anime/comments/kwsnpd/where_to_watch_new_season_of_log_horizon/gj62wpf/;1610656443;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi SolGod, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610579941;moderator;False;{};gj62wru;False;t3_kwsnpd;False;True;t1_gj62wpf;/r/anime/comments/kwsnpd/where_to_watch_new_season_of_log_horizon/gj62wru/;1610656444;1;False;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;"It really maximizes the ""punk"" of cyberpunk and I dig that.";False;False;;;;1610579982;;False;{};gj62ztw;False;t3_kwskru;False;False;t3_kwskru;/r/anime/comments/kwskru/is_akudama_drive_the_dumbest_anime_of_the_last/gj62ztw/;1610656508;6;True;False;anime;t5_2qh22;;0;[]; -[];;;AromatheraphyRoseV;;;[];;;;text;t2_858jrnfy;False;False;[];;"Sorry I don’t know but: - -I suggest let Siri or Google listen to the song to identify it. That’s what I usually do if I like the song in the anime.";False;False;;;;1610580048;;False;{};gj634o1;False;t3_kwsihx;False;True;t3_kwsihx;/r/anime/comments/kwsihx/trying_to_find_the_song_from_the_ending_of_todays/gj634o1/;1610656601;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;I loved Akudama Drive, I think it's mainly experiential enjoyment. I enjoyed the setting and the characters a lot and just liked seeing them live in the world. The animation was phenomenal. The story was alright, I didnt have any problems with it personally;False;False;;;;1610580156;;False;{};gj63ct1;False;t3_kwskru;False;False;t3_kwskru;/r/anime/comments/kwskru/is_akudama_drive_the_dumbest_anime_of_the_last/gj63ct1/;1610656771;5;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;True;[];;Voting for all the FMA EDs, also I gotta vote for the Log Horizon, Cowboy Bebop, and ESPECIALLY the Jojo's part 5 first ED. My mind was blown when I first witnessed that ED in my binge of Jojo's back in October, I could not believe that used Freek'n You by Jodeci.;False;False;;;;1610580192;;False;{};gj63fi9;False;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj63fi9/;1610656829;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;They are two totally different things. Quit trying to compare everything and just watch something to enjoy it;False;False;;;;1610580212;;False;{};gj63gyg;False;t3_kwsq0g;False;False;t3_kwsq0g;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj63gyg/;1610656857;6;True;False;anime;t5_2qh22;;0;[]; -[];;;far219;;;[];;;;text;t2_qirtt;False;False;[];;Gotta keep the winning streak alive;False;False;;;;1610580222;;False;{};gj63hp7;False;t3_kwsa2a;False;False;t1_gj62oiy;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj63hp7/;1610656871;11;True;False;anime;t5_2qh22;;0;[]; -[];;;MusubiKazesaru;;;[];;;;text;t2_oh8ti;False;False;[];;I'm not sure what you're used to watching but not every show is LotGH. Akudama's writing was well above average.;False;False;;;;1610580255;;False;{};gj63k6z;False;t3_kwskru;False;False;t3_kwskru;/r/anime/comments/kwskru/is_akudama_drive_the_dumbest_anime_of_the_last/gj63k6z/;1610656919;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Our_Lord_Bauer;;;[];;;;text;t2_502zwb6g;False;False;[];;Talk about two very different series, trying to judge power scaling between them is a fruitless venture imo.;False;False;;;;1610580309;;False;{};gj63o21;False;t3_kwsq0g;False;True;t3_kwsq0g;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj63o21/;1610657000;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hi Raoga, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610580412;moderator;False;{};gj63vs4;False;t3_kwsugv;False;True;t3_kwsugv;/r/anime/comments/kwsugv/looking_for_new_slice_of_life_to_watch/gj63vs4/;1610657151;1;False;False;anime;t5_2qh22;;0;[]; -[];;;1jopii;;;[];;;;text;t2_6di5vmzx;False;False;[];;kono oto tomare is super underrated;False;False;;;;1610580469;;False;{};gj64014;False;t3_kwsugv;False;True;t3_kwsugv;/r/anime/comments/kwsugv/looking_for_new_slice_of_life_to_watch/gj64014/;1610657234;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Raoga;;;[];;;;text;t2_xxuvvtv;False;False;[];;Whats it about? Might check it out;False;False;;;;1610580497;;False;{};gj6421s;True;t3_kwsugv;False;True;t1_gj64014;/r/anime/comments/kwsugv/looking_for_new_slice_of_life_to_watch/gj6421s/;1610657277;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NintendoMasterNo1;;MAL;[];;http://myanimelist.net/animelist/NintendoMaster1;dark;text;t2_eg21m;False;False;[];;Let's see how many better songs the Chika Dance beats. Life is Like a Boat will no doubt be the first one.;False;False;;;;1610580512;;False;{};gj6435f;False;t3_kwsa2a;False;False;t1_gj616x6;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6435f/;1610657299;5;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;"I honestly wouldn't be mad if the Chika dance won the whole thing. It's beautiful and expanded outside the anime community. - ->Uso vs Orphans no Namida - -NOOOOOOOOOO my baby ending from Iron Blooded Orphans is going to get crushed! Even if you vote Uso, listen to [Orphans no Namida](https://youtu.be/YbTsghxSGgU) please. The vocals in this song are breathtaking, and it's in my top 10. I'm so sad right now... - -SUPER surprised [Pipo Password](https://youtu.be/n9MSnK6doSg) made it in! I don't think EDM is big here. - -Another underdog favourite is the lovely [Days of Dash](https://youtu.be/_T18BogSUpU), that gets stuck in my head even to this day. Plus it has giant mecha cats fighting. What more could you ask for - -Also to all of you who didn't vote for [This World is Yours](https://youtu.be/4VOTL1BnpHg), I hope you are satisfied. You made [Kagura cry](https://images.app.goo.gl/BU9Hodu5ovmFtvbi9)";False;False;;;;1610580513;;1610581746.0;{};gj6438r;False;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6438r/;1610657300;27;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610580582;;False;{};gj648bb;False;t3_kwskru;False;True;t3_kwskru;/r/anime/comments/kwskru/is_akudama_drive_the_dumbest_anime_of_the_last/gj648bb/;1610657403;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;"Sorry. [Datte Atashi no Hero](https://youtu.be/hXdCTFmfwOo) is my favourite ending of all time, so I can't vote hectopascal this time - -:(";False;False;;;;1610580601;;False;{};gj649oo;False;t3_kwsa2a;False;False;t1_gj61cu0;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj649oo/;1610657429;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SwampyBogbeard;;;[];;;;text;t2_6na87;False;False;[];;"Aaaaaand almost none of my lesser known recommendations got through. (And those that did were significantly more well known than the rest on my lists and STILL ended up among the bottom 25 seeds) -Not even Witch Activity or Toki no Kawa wo Koete... - -Apparently most people participating ignore the comments in the elimination rounds as well. -I guess I shouldn't really be surprised. - -This is why the ED contest is my least liked one by far. Great characters can often make their shows popular enough on their own to cruise through the elimination round to easy seeds, but the same is definitely not true for OPs and EDs. -And show-popularity matters WAAAAAAY too much. I know this is to be expected in a popularity contest, but still, WAAAAAAAAY too much. - -Maybe it would be fairer if the elimination round lasted a whole month, or if there was be a separate contest for OPs/EDs from older/less popular shows, but I doubt there's enough interest for either or those options, and I also doubt anyone would have the time and patience to organize it either way.";False;False;;;;1610580709;;False;{};gj64hjd;False;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj64hjd/;1610657585;12;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Please create an anime list. You can create one at either: Myanimelist.net, anilist.co, kitsu or anime-planet. All 4 are free and easy to use. - -Helps you remember what you've seen and helps us so we aren't suggesting you what you've seen already. - -Amaama to Inazuma - -K-On - -Flying Witch - -Hibike Euphonium - -Gekkan Shoujo Nozaki-kun - -Toradora - -Usagi Drop - -Hakumei to Mikochi";False;False;;;;1610580718;;False;{};gj64i8t;False;t3_kwsugv;False;True;t3_kwsugv;/r/anime/comments/kwsugv/looking_for_new_slice_of_life_to_watch/gj64i8t/;1610657599;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NintendoMasterNo1;;MAL;[];;http://myanimelist.net/animelist/NintendoMaster1;dark;text;t2_eg21m;False;False;[];;Please vote for Road from Run with the Wind. I've been listening to it on repeat for the last week and it's so fucking good. Same with the other Run with the Wind ED (Reset) which is actually 1 seed higher than Road lmao.;False;False;;;;1610580742;;False;{};gj64k14;False;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj64k14/;1610657635;12;True;False;anime;t5_2qh22;;0;[]; -[];;;far219;;;[];;;;text;t2_qirtt;False;False;[];;Yeah I understand, it's not a bad one but it's not even my favorite MHA ending so... I gotta go with Hectpascal;False;False;;;;1610580747;;False;{};gj64kdv;False;t3_kwsa2a;False;False;t1_gj649oo;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj64kdv/;1610657641;11;True;False;anime;t5_2qh22;;0;[]; -[];;;GhostOfLight;;;[];;;;text;t2_go8xe;False;False;[];;Hibana goes unbelievably hard, please give it a listen if you haven't.;False;False;;;;1610580754;;False;{};gj64kuk;False;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj64kuk/;1610657652;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Benthekarateboy;;;[];;;;text;t2_1thpf4i2;False;False;[];;I’m not. I enjoy both of them so much! I finished Berserk, and hopefully they continue the series. I don’t care about the animation;False;False;;;;1610580788;;False;{};gj64ne3;True;t3_kwsq0g;False;True;t1_gj63gyg;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj64ne3/;1610657701;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;What's your fav ending? I like to imagine they're all playing DnD during this one, and LISA has amazing vocals;False;False;;;;1610580801;;1610581806.0;{};gj64odi;False;t3_kwsa2a;False;False;t1_gj64kdv;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj64odi/;1610657723;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Benthekarateboy;;;[];;;;text;t2_1thpf4i2;False;False;[];;I know, but the more I look at Guts, the more I wonder if he was in their universe, would he fit with Black Bulls. Now I regret even asking. :(;False;False;;;;1610580841;;False;{};gj64r7r;True;t3_kwsq0g;False;True;t1_gj63o21;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj64r7r/;1610657779;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BassSquared;;;[];;;;text;t2_3kz305nd;False;False;[];;"Damn, knew the Chika dance was popular, but I didn't know it was \*that\* popular. Probably overseeded by a fair bit (I can't see it beating anything else in the top eight) but with the power of memes on its side, who knows? - -Going to shill for [Inkya Impulse](https://www.youtube.com/watch?v=hkL4hW4eniI) today- the song absolutely shreds and is perhaps the only ED capable of reflecting the pure chaotic energy that is Asobi Asobase.";False;False;;;;1610580853;;False;{};gj64s1j;False;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj64s1j/;1610657796;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610580926;moderator;False;{};gj64xan;False;t3_kwt12g;False;True;t3_kwt12g;/r/anime/comments/kwt12g/attack_on_titan_dub_uk_where_to_watch/gj64xan/;1610657894;1;False;False;anime;t5_2qh22;;0;[]; -[];;;far219;;;[];;;;text;t2_qirtt;False;False;[];;Well I absolutely looove Long Hope Philia, I know it's not the best visually and Deku's arms are a bit wonky, but it gets me in the feels everytime, especially when All Might fades away and when Deku starts running.;False;False;;;;1610580933;;False;{};gj64xs7;False;t3_kwsa2a;False;True;t1_gj64odi;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj64xs7/;1610657904;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PazMan8472;;;[];;;;text;t2_cjhdv;False;False;[];;Funimation streams all and season 4 Dub has just started;False;False;;;;1610581110;;False;{};gj65apt;False;t3_kwt12g;False;True;t3_kwt12g;/r/anime/comments/kwt12g/attack_on_titan_dub_uk_where_to_watch/gj65apt/;1610658143;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hkraze;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/evangelion18;light;text;t2_34kdmj06;False;False;[];;its covered by subaru talking😔;False;False;;;;1610581112;;False;{};gj65aua;True;t3_kwsihx;False;True;t1_gj634o1;/r/anime/comments/kwsihx/trying_to_find_the_song_from_the_ending_of_todays/gj65aua/;1610658145;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;Funimation should have all of the dub and it just started doing the dub for season 4. If it doesn’t pop up in your region, try using a VPN;False;False;;;;1610581192;;False;{};gj65gn6;False;t3_kwt12g;False;True;t3_kwt12g;/r/anime/comments/kwt12g/attack_on_titan_dub_uk_where_to_watch/gj65gn6/;1610658250;1;True;False;anime;t5_2qh22;;0;[]; -[];;;1jopii;;;[];;;;text;t2_6di5vmzx;False;False;[];;it’s about a japanese instrument club, it has a delinquent who is completely misunderstood and a prodigy. there is small romance and it may sound kinda boring and i wouldn’t usually go for an anime like this but it’s surprisingly really good.;False;False;;;;1610581251;;False;{};gj65l0d;False;t3_kwsugv;False;True;t1_gj6421s;/r/anime/comments/kwsugv/looking_for_new_slice_of_life_to_watch/gj65l0d/;1610658327;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Osmunda_Regalis;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/OsmundaRegalis;light;text;t2_hh53o;False;False;[];;kono michi mo~;False;False;;;;1610581291;;False;{};gj65nx2;False;t3_kwsa2a;False;False;t1_gj64k14;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj65nx2/;1610658383;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Swanki24;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Defunctional/animelist;light;text;t2_c1nzj;False;False;[];;"Going to be really sad if *Ray of Light* wins vs *Kyokyo Jitsujitsu*. Honestly they both aren't that great considering Ray of Light's rather boring visuals and mostly reused scenes from the anime for Kyokyo Jitsujitsu, but the song diff is big. - -Hanakotoba, behind not making it makes me depressed..";False;False;;;;1610581313;;1610582147.0;{};gj65pkq;False;t3_kwsa2a;False;True;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj65pkq/;1610658413;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Raoga;;;[];;;;text;t2_xxuvvtv;False;False;[];;Ooh I love music stuff as a musician so ill definitely take a look;False;False;;;;1610581333;;False;{};gj65qz4;True;t3_kwsugv;False;True;t1_gj65l0d;/r/anime/comments/kwsugv/looking_for_new_slice_of_life_to_watch/gj65qz4/;1610658438;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Raoga;;;[];;;;text;t2_xxuvvtv;False;False;[];;Thank you!;False;False;;;;1610581351;;False;{};gj65scq;True;t3_kwsugv;False;True;t1_gj64i8t;/r/anime/comments/kwsugv/looking_for_new_slice_of_life_to_watch/gj65scq/;1610658464;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cill_Bipher;;;[];;;;text;t2_rz165;False;False;[];;It's called Door by Rie Takahashi, afaik. I don't think it's been released yet.;False;False;;;;1610581363;;False;{};gj65t7n;False;t3_kwsihx;False;False;t3_kwsihx;/r/anime/comments/kwsihx/trying_to_find_the_song_from_the_ending_of_todays/gj65t7n/;1610658480;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LaqOfInterest;;MAL a-amq;[];;https://myanimelist.net/animelist/LaqOfInterest;dark;text;t2_6s32u;False;False;[];;According to the credits it's called [Door](https://i.imgur.com/0DCvqJF.png) and if you couldn't tell from the voice, it's by Emilia's VA, Rie Takahashi. It's very likely not been released yet.;False;False;;;;1610581374;;False;{};gj65u0j;False;t3_kwsihx;False;True;t3_kwsihx;/r/anime/comments/kwsihx/trying_to_find_the_song_from_the_ending_of_todays/gj65u0j/;1610658495;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hikaru6;;;[];;;;text;t2_fzxayg;False;False;[];;Sad Life is like a boat will just immediately lose, given the absolute meme that is the Chika ed.;False;False;;;;1610581537;;False;{};gj665q7;False;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj665q7/;1610658717;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Swanki24;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Defunctional/animelist;light;text;t2_c1nzj;False;False;[];;Wouldn't be surprised if it steamrolls through the competition tbh. Maybe in later rounds it'll get tougher because of the spite votes xd;False;False;;;;1610581615;;False;{};gj66bem;False;t3_kwsa2a;False;False;t1_gj6435f;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj66bem/;1610658821;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Fourier-Mukai;;;[];;;;text;t2_2ne28mnn;False;True;[];;"Thanks. - -Annoyed I can’t ask a question like this without someone downvoting it straight away. The information isn’t easy to find.";False;False;;;;1610581788;;False;{};gj66nxy;False;t3_kwt12g;False;True;t1_gj65gn6;/r/anime/comments/kwt12g/attack_on_titan_dub_uk_where_to_watch/gj66nxy/;1610659056;1;True;False;anime;t5_2qh22;;0;[]; -[];;;13rahma;;;[];;;;text;t2_1wqu8d41;False;True;[];;Comes out on Fridays I think. Just started early last week.;False;False;;;;1610581819;;False;{};gj66q49;False;t3_kwtaz3;False;True;t3_kwtaz3;/r/anime/comments/kwtaz3/is_promised_neverland_skipping_a_week/gj66q49/;1610659099;3;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;His arms ARE wonky in that ending! Did it make it to the bracket?;False;False;;;;1610581845;;False;{};gj66rwq;False;t3_kwsa2a;False;True;t1_gj64xs7;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj66rwq/;1610659131;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FireRifle64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FireRifle64;light;text;t2_29fr8mww;False;False;[];;It airs tomorrow.;False;False;;;;1610581930;;False;{};gj66y0l;False;t3_kwtaz3;False;True;t3_kwtaz3;/r/anime/comments/kwtaz3/is_promised_neverland_skipping_a_week/gj66y0l/;1610659249;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;"Amurooooo - -Too good for this contest. Voting for Pipo Password to give it a fighting chance! The song is beautiful. So dreamy";False;False;;;;1610581974;;False;{};gj6715p;False;t3_kwsa2a;False;False;t1_gj62d5j;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj6715p/;1610659309;5;True;False;anime;t5_2qh22;;0;[]; -[];;;wolfguardian72;;MAL;[];;;dark;text;t2_71wn5;False;True;[];;Oh okay!! Thanks!;False;False;;;;1610582002;;False;{};gj6738m;False;t3_kwtaz3;False;True;t1_gj66q49;/r/anime/comments/kwtaz3/is_promised_neverland_skipping_a_week/gj6738m/;1610659350;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;Life is like a Boat isn't even my favourite bleach ED. My vote goes to Chika Chika;False;False;;;;1610582061;;False;{};gj677er;False;t3_kwsa2a;False;False;t1_gj6435f;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj677er/;1610659429;4;True;False;anime;t5_2qh22;;0;[]; -[];;;FireRifle64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FireRifle64;light;text;t2_29fr8mww;False;False;[];;Asta is just guts but without suffering from loss or getting 'messed' with as a kid.;False;False;;;;1610582086;;False;{};gj6795d;False;t3_kwsq0g;False;True;t1_gj64r7r;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj6795d/;1610659464;2;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;I love how the Log Horizon EDs are all about Akatsuki [Your song*](https://youtu.be/CZQ1d1SFVX0);False;False;;;;1610582162;;False;{};gj67emu;False;t3_kwsa2a;False;False;t1_gj63fi9;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj67emu/;1610659572;5;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;Don't worry about the downvotes, it always happens around here and I've never found a rhyme or reason for it.;False;False;;;;1610582227;;False;{};gj67j98;False;t3_kwt12g;False;True;t1_gj66nxy;/r/anime/comments/kwt12g/attack_on_titan_dub_uk_where_to_watch/gj67j98/;1610659656;1;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your submission has been removed. - -- It looks like your questions have been answered, so we're taking it off the list of new posts to make room for other content. For future reference, here are some additional resources that may help you find an answer even faster: - - - [To ask any random question you may have, visit our Weekly Miscellaneous Anime Questions thread!](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Weekly+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) - - [For finding an anime based off of a single image, reverse image searching typically works instantly](http://www.reddit.com/r/anime/wiki/reverse_image_searching) - - [r/anime has a large number of watch orders available](http://www.reddit.com/r/anime/wiki/watch_order) - - [You can find all of your recommendation needs here](http://www.reddit.com/r/anime/wiki/recommendations) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610582235;moderator;False;{};gj67jtw;False;t3_kwt12g;False;True;t3_kwt12g;/r/anime/comments/kwt12g/attack_on_titan_dub_uk_where_to_watch/gj67jtw/;1610659667;2;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;Do you know if someone is going to do a table like last year with links to the competing songs? That was super useful;False;False;;;;1610582251;;False;{};gj67kzo;False;t3_kwsa2a;False;False;t1_gj60ko9;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj67kzo/;1610659689;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeralyos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Zeralyos;light;text;t2_dphmj32;False;False;[];;Group A is up on the /r/AnimeThemes wiki [here](https://old.reddit.com/r/AnimeThemes/wiki/event/best_ending_vi)! Feel free to check it for links and or catch errors that I might've made. The rest of the groups will be up soon.;False;False;;;;1610582252;;False;{};gj67l1k;False;t3_kwsa2a;False;False;t3_kwsa2a;/r/anime/comments/kwsa2a/best_ending_6_listen_to_salt_round_1_bracket_a/gj67l1k/;1610659690;54;True;False;anime;t5_2qh22;;0;[]; -[];;;FireRifle64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FireRifle64;light;text;t2_29fr8mww;False;False;[];;To answer your question, no its not. It very creative especially as an anime original. As someone said, it feels like a love letter towards Western films as each episode is titled after a Western movie with scenes/traits pulling from each movie. Was it the best? No. Was it the dumbest? Also no. That title would go towards either Ninja Collection or Gibiate.;False;False;;;;1610582325;;False;{};gj67q5f;False;t3_kwskru;False;False;t3_kwskru;/r/anime/comments/kwskru/is_akudama_drive_the_dumbest_anime_of_the_last/gj67q5f/;1610659791;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610582353;;False;{};gj67s7o;False;t3_kwt12g;False;True;t1_gj67jtw;/r/anime/comments/kwt12g/attack_on_titan_dub_uk_where_to_watch/gj67s7o/;1610659831;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610582371;;False;{};gj67tgn;False;t3_kwt12g;False;True;t1_gj67j98;/r/anime/comments/kwt12g/attack_on_titan_dub_uk_where_to_watch/gj67tgn/;1610659857;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CringeKage222;;;[];;;;text;t2_2v8v29g9;False;False;[];;I would say that currently he is at least a captain lvl but he is probably a lot stronger, he also will probably become at least as broken as griffith so F for the black clover universe I guess;False;False;;;;1610582406;;False;{};gj67w0w;False;t3_kwsq0g;False;True;t3_kwsq0g;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj67w0w/;1610659907;1;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;Sub gets a lot of traffic with over 2 million subscribers, so we clean things up where we can. Your question was answered to the best of our ability so there's no reason to just leave it hanging around.;False;False;;;;1610582460;moderator;False;{};gj6800x;False;t3_kwt12g;False;True;t1_gj67s7o;/r/anime/comments/kwt12g/attack_on_titan_dub_uk_where_to_watch/gj6800x/;1610659981;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Drennkeeg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KothoS;light;text;t2_3rcbfvna;False;False;[];;Gin no Saji;False;False;;;;1610582470;;False;{};gj680oh;False;t3_kwsugv;False;True;t3_kwsugv;/r/anime/comments/kwsugv/looking_for_new_slice_of_life_to_watch/gj680oh/;1610659993;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi spudz1203, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610582494;moderator;False;{};gj682e2;False;t3_kwtkex;False;True;t3_kwtkex;/r/anime/comments/kwtkex/i_wholeheartedly_recommend_shinryaku_ika_musume/gj682e2/;1610660025;1;False;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;Yes, as I said, we remove answered question posts. It's not any reflection on the post or on you, it's just a clean up process.;False;False;;;;1610582558;moderator;False;{};gj6870h;False;t3_kwt12g;False;True;t1_gj67tgn;/r/anime/comments/kwt12g/attack_on_titan_dub_uk_where_to_watch/gj6870h/;1610660113;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi aidanderson, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610582602;moderator;False;{};gj68a2f;False;t3_kwtlov;False;True;t3_kwtlov;/r/anime/comments/kwtlov/what_are_anime_similar_to_code_geass_and_death/gj68a2f/;1610660174;0;False;False;anime;t5_2qh22;;0;[]; -[];;;1jopii;;;[];;;;text;t2_6di5vmzx;False;False;[];;oh then you will definitely like it. quite a peaceful anime in terms of music;False;False;;;;1610582650;;False;{};gj68dh0;False;t3_kwsugv;False;True;t1_gj65qz4;/r/anime/comments/kwsugv/looking_for_new_slice_of_life_to_watch/gj68dh0/;1610660238;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SquidQuilt;;;[];;;;text;t2_3wmmxsjw;False;False;[];;Kaiji ultimate survivor, it is gambling related but still has a lot of the qualities you are looking for. Battle of wits, anti hero etc;False;False;;;;1610582788;;False;{};gj68nbl;False;t3_kwtlov;False;True;t3_kwtlov;/r/anime/comments/kwtlov/what_are_anime_similar_to_code_geass_and_death/gj68nbl/;1610660431;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610582846;;False;{};gj68rdn;False;t3_kwt12g;False;True;t1_gj6870h;/r/anime/comments/kwt12g/attack_on_titan_dub_uk_where_to_watch/gj68rdn/;1610660519;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"> Might post under watch this tag - -Watch This! posts need to be at least 1500 characters long as you're supposed to put some effort into them.";False;False;;;;1610582951;;False;{};gj68ywl;False;t3_kwtkex;False;False;t3_kwtkex;/r/anime/comments/kwtkex/i_wholeheartedly_recommend_shinryaku_ika_musume/gj68ywl/;1610660672;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Natgeo1201;;;[];;;;text;t2_360176ba;False;False;[];;That description basically fits 91 Days perfectly, great show, highly recommend.;False;False;;;;1610583056;;False;{};gj696bp;False;t3_kwtlov;False;False;t3_kwtlov;/r/anime/comments/kwtlov/what_are_anime_similar_to_code_geass_and_death/gj696bp/;1610660813;4;True;False;anime;t5_2qh22;;0;[]; -[];;;aidanderson;;;[];;;;text;t2_c7qbu;False;False;[];;Thanks for the reply, added it to my queue on crunchyroll.;False;False;;;;1610583112;;False;{};gj69abx;True;t3_kwtlov;False;False;t1_gj68nbl;/r/anime/comments/kwtlov/what_are_anime_similar_to_code_geass_and_death/gj69abx/;1610660891;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Nick_BOI, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610583167;moderator;False;{};gj69e8q;False;t3_kwts5k;False;True;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj69e8q/;1610660969;-3;False;False;anime;t5_2qh22;;0;[]; -[];;;aidanderson;;;[];;;;text;t2_c7qbu;False;False;[];;Thanks for the recommendation. Just added it to my queue can't wait to dive into it.;False;False;;;;1610583389;;False;{};gj69u6e;True;t3_kwtlov;False;True;t1_gj696bp;/r/anime/comments/kwtlov/what_are_anime_similar_to_code_geass_and_death/gj69u6e/;1610661293;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Julimex;;;[];;;;text;t2_228tdpw3;False;False;[];;Psycho Pass might be something you’re looking for;False;False;;;;1610583419;;False;{};gj69wap;False;t3_kwtlov;False;False;t3_kwtlov;/r/anime/comments/kwtlov/what_are_anime_similar_to_code_geass_and_death/gj69wap/;1610661336;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;"1) **Love Live! Nijigasaki High School Idol Club** - Nowhere near as good as the first two series', but better than any other 2020 anime I watched. - -2) **22/7** - Pretty art, terrible plot - -3) **Interspecies Reviewers** - Trash ecchi, as I expected before I watched it. Unfortunately, I let the meme-popularity influence me into watching it.";False;False;;;;1610583490;;1610604328.0;{};gj6a1g4;False;t3_kwts5k;False;False;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj6a1g4/;1610661436;6;True;False;anime;t5_2qh22;;0;[]; -[];;;spudz1203;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_38t77leo;False;False;[];;I cant really extend this without spoiling;False;False;;;;1610583538;;False;{};gj6a4wo;True;t3_kwtkex;False;True;t1_gj68ywl;/r/anime/comments/kwtkex/i_wholeheartedly_recommend_shinryaku_ika_musume/gj6a4wo/;1610661512;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nick_BOI;;;[];;;;text;t2_x2i42xd;False;False;[];;Your reason for reviewers was mine for rent a girlfriend. I hate harems usually, but I got curious and welp. Can't win em all.;False;False;;;;1610583657;;False;{};gj6adja;True;t3_kwts5k;False;True;t1_gj6a1g4;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj6adja/;1610661676;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610583749;moderator;False;{};gj6ak0q;False;t3_kwtyon;False;True;t3_kwtyon;/r/anime/comments/kwtyon/music_similar_to_liz_and_the_blue_bird/gj6ak0q/;1610661798;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi hell_o1234, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610583749;moderator;False;{};gj6ak1z;False;t3_kwtyon;False;True;t3_kwtyon;/r/anime/comments/kwtyon/music_similar_to_liz_and_the_blue_bird/gj6ak1z/;1610661799;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AnimeMod;;;[];;;;text;t2_6wrl6;False;False;[];;1) How appealing does Yuru Camp make camping and outdoor activities seem?;False;False;;;;1610583818;;False;{};gj6aowz;True;t3_kwtjkl;False;False;t3_kwtjkl;/r/anime/comments/kwtjkl/yuru_camp_thursday_anime_discussion_thread_ft/gj6aowz/;1610661885;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610583828;moderator;False;{};gj6apju;False;t3_kwtznd;False;True;t3_kwtznd;/r/anime/comments/kwtznd/wait_for_new_episodes_or_read_manga/gj6apju/;1610661896;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AnimeMod;;;[];;;;text;t2_6wrl6;False;False;[];;2) Rin and Nadeshiko differ not only in personality, but also in how they approach the hobby of camping. How do you feel about the show's depiction of this dichotomy, and whose style do you personally identify with more?;False;False;;;;1610583834;;False;{};gj6aq18;True;t3_kwtjkl;False;True;t3_kwtjkl;/r/anime/comments/kwtjkl/yuru_camp_thursday_anime_discussion_thread_ft/gj6aq18/;1610661906;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeMod;;;[];;;;text;t2_6wrl6;False;False;[];;3) How does Yuru Camp differ from other slice of life/iyashikei series?;False;False;;;;1610583850;;False;{};gj6ara4;True;t3_kwtjkl;False;True;t3_kwtjkl;/r/anime/comments/kwtjkl/yuru_camp_thursday_anime_discussion_thread_ft/gj6ara4/;1610661930;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeMod;;;[];;;;text;t2_6wrl6;False;False;[];;4) What kind of feelings do you get from the soundtrack?;False;False;;;;1610583864;;False;{};gj6as9u;True;t3_kwtjkl;False;True;t3_kwtjkl;/r/anime/comments/kwtjkl/yuru_camp_thursday_anime_discussion_thread_ft/gj6as9u/;1610661947;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeMod;;;[];;;;text;t2_6wrl6;False;False;[];;5) Which Yuru Camp character was your favourite and why?;False;False;;;;1610583879;;False;{};gj6atcv;True;t3_kwtjkl;False;True;t3_kwtjkl;/r/anime/comments/kwtjkl/yuru_camp_thursday_anime_discussion_thread_ft/gj6atcv/;1610661966;3;True;False;anime;t5_2qh22;;0;[]; -[];;;aidanderson;;;[];;;;text;t2_c7qbu;False;False;[];;Thank you for the recommendation, I will add it to my queue.;False;False;;;;1610583892;;False;{};gj6aubt;True;t3_kwtlov;False;True;t1_gj69wap;/r/anime/comments/kwtlov/what_are_anime_similar_to_code_geass_and_death/gj6aubt/;1610661986;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TotallyBrandNewName;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Siimoes;light;text;t2_64wlph5b;False;False;[];;"As someone who did this twice. I'm going to be honest, if you really like the anime/manga, for me, at least 2 days after I finish it, it will suck because no new content for a big while - -But damn was it worth it";False;False;;;;1610583939;;False;{};gj6axk0;False;t3_kwtznd;False;False;t3_kwtznd;/r/anime/comments/kwtznd/wait_for_new_episodes_or_read_manga/gj6axk0/;1610662046;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rigoku;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Elitar;light;text;t2_2j07de1;False;False;[];;In 99% cases manga is better, so yea go for it. Unless you dislike manga then don't.;False;False;;;;1610583966;;False;{};gj6azi0;False;t3_kwtznd;False;False;t3_kwtznd;/r/anime/comments/kwtznd/wait_for_new_episodes_or_read_manga/gj6azi0/;1610662080;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610584018;moderator;False;{};gj6b3bn;False;t3_kwu1na;False;True;t3_kwu1na;/r/anime/comments/kwu1na/re_zero_question_whats_is_the_connections_between/gj6b3bn/;1610662152;0;False;False;anime;t5_2qh22;;0;[]; -[];;;Longjumping-Green-78;;;[];;;;text;t2_85ou8m52;False;False;[];;So basically I should if I just can’t wait any longer;False;False;;;;1610584038;;False;{};gj6b4rw;True;t3_kwtznd;False;True;t1_gj6axk0;/r/anime/comments/kwtznd/wait_for_new_episodes_or_read_manga/gj6b4rw/;1610662180;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Longjumping-Green-78;;;[];;;;text;t2_85ou8m52;False;False;[];;I haven’t really gotten into reading manga but I also haven’t tried getting into it yet so I’m going to try it;False;False;;;;1610584081;;False;{};gj6b7r0;True;t3_kwtznd;False;True;t1_gj6azi0;/r/anime/comments/kwtznd/wait_for_new_episodes_or_read_manga/gj6b7r0/;1610662233;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;Maybe it's just me, but I feel like reading the manga for an ongoing series (unless it's something like One Piece that has been going on for ages) risks ruining potential surprises. I get some people like seeing their favorite scenes in mangas get animated, but knowing exactly what's coming would kinda ruin the fun a bit.;False;False;;;;1610584169;;False;{};gj6be5i;False;t3_kwtznd;False;False;t3_kwtznd;/r/anime/comments/kwtznd/wait_for_new_episodes_or_read_manga/gj6be5i/;1610662351;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"My favorites were (no order) Jujutsu, Misfit Demon King, maoujou oyasumi, Talentless nana, rent a girlfriend, kaguya, tower of God, bakarina and fire force s2 - -Don't have a least favorite that i can think of";False;False;;;;1610584280;;False;{};gj6bm3n;False;t3_kwts5k;False;False;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj6bm3n/;1610662497;16;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;There's none that even the latest episode has divulged.;False;False;;;;1610584296;;False;{};gj6bn9k;False;t3_kwu1na;False;True;t3_kwu1na;/r/anime/comments/kwu1na/re_zero_question_whats_is_the_connections_between/gj6bn9k/;1610662518;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;I don't believe the LNs have gotten that far yet either.;False;False;;;;1610584362;;False;{};gj6brwc;False;t3_kwu1na;False;True;t1_gj6bn9k;/r/anime/comments/kwu1na/re_zero_question_whats_is_the_connections_between/gj6brwc/;1610662608;5;True;False;anime;t5_2qh22;;0;[]; -[];;;TotallyBrandNewName;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Siimoes;light;text;t2_64wlph5b;False;False;[];;"Yeh. Think about it like being drunk, you'll be on the ""happy mood"" but sadly it will end, the hangover will last a while but it's manageable.";False;False;;;;1610584374;;False;{};gj6bsqn;False;t3_kwtznd;False;True;t1_gj6b4rw;/r/anime/comments/kwtznd/wait_for_new_episodes_or_read_manga/gj6bsqn/;1610662626;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;I believe all we have right now is speculation.;False;False;;;;1610584400;;False;{};gj6buhs;False;t3_kwu1na;False;True;t3_kwu1na;/r/anime/comments/kwu1na/re_zero_question_whats_is_the_connections_between/gj6buhs/;1610662660;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;What about the WN?;False;False;;;;1610584416;;False;{};gj6bvmg;False;t3_kwu1na;False;True;t1_gj6brwc;/r/anime/comments/kwu1na/re_zero_question_whats_is_the_connections_between/gj6bvmg/;1610662681;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Longjumping-Green-78;;;[];;;;text;t2_85ou8m52;False;False;[];;So for big shows like one piece or long shows I shouldn’t but for new ones I should basically;False;False;;;;1610584438;;False;{};gj6bx6l;True;t3_kwtznd;False;True;t1_gj6be5i;/r/anime/comments/kwtznd/wait_for_new_episodes_or_read_manga/gj6bx6l/;1610662710;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blueandgoldilocks;;;[];;;;text;t2_259qs82k;False;False;[];;The Promised Neverland;False;False;;;;1610584496;;False;{};gj6c1a8;False;t3_kwtlov;False;True;t3_kwtlov;/r/anime/comments/kwtlov/what_are_anime_similar_to_code_geass_and_death/gj6c1a8/;1610662791;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;"**Favorite:** Sleepy Princess in the Demon Castle and My Next Life as Villainess. Both are delightfully fun shows. - -**Least Favorite:** Rail Romanesque, Ookami-san wa Taberaretai, and Peter Grill.";False;False;;;;1610584641;;False;{};gj6cbdf;False;t3_kwts5k;False;False;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj6cbdf/;1610663002;5;True;False;anime;t5_2qh22;;0;[]; -[];;;phoenix8107;;;[];;;;text;t2_65kab3aq;False;False;[];;"Ghost in the Shell: Stand Alone Complex - lots of cat and mouse type intrigue in a cyberpunk setting; Ergo Proxy - dark setting with plenty of intrigue and mystery; Steins;Gate - lots of twists and turns";False;False;;;;1610584666;;False;{};gj6cd42;False;t3_kwtlov;False;True;t3_kwtlov;/r/anime/comments/kwtlov/what_are_anime_similar_to_code_geass_and_death/gj6cd42/;1610663036;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nick_BOI;;;[];;;;text;t2_x2i42xd;False;False;[];;I started watching Jujutsu earlier this week, it's pretty good!! Talentless Nana is actually next on my list.;False;False;;;;1610584741;;False;{};gj6ci9v;True;t3_kwts5k;False;True;t1_gj6bm3n;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj6ci9v/;1610663132;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nick_BOI;;;[];;;;text;t2_x2i42xd;False;False;[];;"Damn a lot of people really love Villianess, Bakarina is treasure! - -Peter Grill was one show that I am *really* glad I didn't watch, just...what the hell was that show.";False;False;;;;1610584886;;False;{};gj6csnq;True;t3_kwts5k;False;True;t1_gj6cbdf;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj6csnq/;1610663324;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;You're welcome.;False;False;;;;1610584893;;False;{};gj6ct56;False;t3_kwsugv;False;True;t1_gj65scq;/r/anime/comments/kwsugv/looking_for_new_slice_of_life_to_watch/gj6ct56/;1610663331;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;I don't actually know where either the WN or LN stands as I haven't read them, just what I've seen others who have read them say.;False;False;;;;1610584899;;False;{};gj6ctix;False;t3_kwu1na;False;True;t1_gj6bvmg;/r/anime/comments/kwu1na/re_zero_question_whats_is_the_connections_between/gj6ctix/;1610663340;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610584924;;False;{};gj6cvct;False;t3_kwtjkl;False;True;t3_kwtjkl;/r/anime/comments/kwtjkl/yuru_camp_thursday_anime_discussion_thread_ft/gj6cvct/;1610663374;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;I'm not saying you should or shouldn't. That's all up to you.;False;False;;;;1610585073;;False;{};gj6d67o;False;t3_kwtznd;False;True;t1_gj6bx6l;/r/anime/comments/kwtznd/wait_for_new_episodes_or_read_manga/gj6d67o/;1610663576;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;"> Peter Grill was one show that I am really glad I didn't watch, just...what the hell was that show. - -""Rape, but It's Females Doing the Raping, So It's Okay, Right?: The Series""";False;False;;;;1610585179;;False;{};gj6ddpb;False;t3_kwts5k;False;False;t1_gj6csnq;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj6ddpb/;1610663716;5;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;Its a fair assumption to make they are connected in some way. There isnt confirmation as far as I know, but with all the references to the similarities between them I would find it hard to believe there isnt some connection;False;False;;;;1610585199;;False;{};gj6df1i;False;t3_kwu1na;False;True;t3_kwu1na;/r/anime/comments/kwu1na/re_zero_question_whats_is_the_connections_between/gj6df1i/;1610663742;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aidanderson;;;[];;;;text;t2_c7qbu;False;False;[];;Where can I watch ghost in the shell? The other two are on funimation and I was able to add to my queue but I didn't see ghost in the shell on funimation or crunchyroll will I have to go through other means to watch it...yo ho...if you catch my drift?;False;False;;;;1610585261;;False;{};gj6djha;True;t3_kwtlov;False;True;t1_gj6cd42;/r/anime/comments/kwtlov/what_are_anime_similar_to_code_geass_and_death/gj6djha/;1610663827;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"[Watch it](#morecomfy) - -Answer to Question 1: It makes camping and outdoor activities very fun, like something I want to try. Even though I'm not an outdoor person. (Realistically, trying it out. I don't think I'd like the actual activity as much). Though it'd be nice to try it at least once, to say that I have. - -Answer to Question 2: Mhm... I relate to Rin on a more personal level. Both of their ways of camping is a lot of fun, though I'd probably prefer Rin's way of camping, myself. - -Answer to Question 3: I love how Nadeshiko gets into camping because of Rin, she wants to duo camp with her. But she is okay with camping solo. She doesn't get upset when Rin wants to camp solo. The anime accepts the fact that Rin is an introvert, and as an introvert myself, that makes me happy. Especially since shows/movies/etc tend to (though not always), tries to tell us that it's better to do things with people, than by yourself. - -Answer to Question 4: I often feel relaxed and very happy with the soundtracks, they often fit with the tone that the anime is going for. - -Answer to Question 5: Rin is my favorite character. I'm an introvert in real life. Often preferring to do things solo than with other people, but I don't hate being around people occasionally, and that's how Rin acts.";False;False;;;;1610585371;;False;{};gj6dr8b;False;t3_kwtjkl;False;False;t3_kwtjkl;/r/anime/comments/kwtjkl/yuru_camp_thursday_anime_discussion_thread_ft/gj6dr8b/;1610663989;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"First of all, have you seen Hibike! Euphonium, the series of which Liz is a spin-off? That, and especially the piece [Crescent Moon Dance](https://www.youtube.com/watch?v=cHQJX8a8CWc), is a good place to start. - -So...the genre you are looking for doesn't really have a good concise name, but I would call it ""contemporary wind ensemble music"" (or replace ""wind ensemble"" with ""concert band,"" ""wind orchestra,"" etc.) - -There are a *lot* of fantastic pieces in the genre; I'll list off a variety of examples, and you can explore from there in the Youtube recommendation rabbithole. - -* First up: Holst's [First](https://www.youtube.com/watch?v=RrRwoD1Yx8A) and [Second](https://www.youtube.com/watch?v=yXRSFUC1xGo) Suites for Military Band. These are absolute *classics* and permanent fixtures in wind ensemble repertoire. - -* [Noah's Ark](https://www.youtube.com/watch?v=VlZi_4By0cM) (one of my favorites, and a programmatic suite like Liz and the Blue Bird. Also uses a wind machine like Liz and the Blue Bird.) - -* [Cape Breton Postcard](https://www.youtube.com/watch?v=Mi_RrDrzbxo) (Like Liz and the Blue Bird, this is a feature on the woodwind section. Also a favorite of mine.) - -* Eric Whitacre: [Equus](https://www.youtube.com/watch?v=2ilQaKuWWBs) - -* [Vesuvius](https://www.youtube.com/watch?v=uznUeuhngkE) - -* [Variations on a Korean Folk Song](https://www.youtube.com/watch?v=w-AEzxkRWBA) - -* [Fate of the Gods](https://www.youtube.com/watch?v=gcozRYY1KoI) - -* [Incantation and Dance](https://www.youtube.com/watch?v=uw2s3Y6NZwg) - -* [Arabesque](https://www.youtube.com/watch?v=u9VDlFEUgnw) - -* [English Folk Song Suite](https://www.youtube.com/watch?v=X9a0ym35R6I) - -* [Elsa's Procession](https://www.youtube.com/watch?v=F6mYZo90xx0) - -* [Pines of Rome](https://www.youtube.com/watch?v=2_8OT2tQHNA) - -* [Appalachian Spring](https://www.youtube.com/watch?v=OrX23TkgZcw) (technically composed for chamber orchestra first) - -* [Angels in the Architecture](https://www.youtube.com/watch?v=zVW_GQFGQUs) - -* [An American Elegy](https://www.youtube.com/watch?v=YIIKdBYfmlo) - -* [Danzon No. 2](https://www.youtube.com/watch?v=FeFiOnbKYcc) - -* [Melodius Thunk](https://www.youtube.com/watch?v=nXVXPlzcVLI) - -* [Signature](https://www.youtube.com/watch?v=h5B49HdoQaQ) - -* [Ammerland](https://www.youtube.com/watch?v=y5GQ0we6dOc) - -* [Ignition](https://www.youtube.com/watch?v=rAVgRlj5rww) - -* [Acrostic Song](https://www.youtube.com/watch?v=AvJls0d6jsw) - -* [Scenes from the Louvre](https://www.youtube.com/watch?v=3n3WNzw_oIA)";False;False;;;;1610585413;;1610594162.0;{};gj6du7d;False;t3_kwtyon;False;False;t3_kwtyon;/r/anime/comments/kwtyon/music_similar_to_liz_and_the_blue_bird/gj6du7d/;1610664043;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Nick_BOI;;;[];;;;text;t2_x2i42xd;False;False;[];;I'm glad it went mostly unnoticed, the less people see it the better.;False;False;;;;1610585520;;False;{};gj6e1n1;True;t3_kwts5k;False;True;t1_gj6ddpb;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj6e1n1/;1610664193;3;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;It was one of my first shows too but I don't remember it particularly standing out much. The only parts I remembered really liking were the episodes with the Ika fangirl and the puking gag. If it ever came up in a rewatch or I needed reading material for a trip I'd definitely check it out again.;False;False;;;;1610585582;;False;{};gj6e64j;False;t3_kwtkex;False;True;t3_kwtkex;/r/anime/comments/kwtkex/i_wholeheartedly_recommend_shinryaku_ika_musume/gj6e64j/;1610664280;1;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"Madoka Magica, AoT are two big ones for me - -Both are shows that upon initial viewing are still great, but rewatching them gives so much more perspective for the events that take place because of how cohesive the stories are. I remember completing Madoka for the first time and thinking damn, everything before it made so much more sense in context to how it built up towards the ending - -Also Code Geass for the ending. Sticking a landing for a series, especially as well done as Code Geass, is a difficult task (see Game of Thrones) but Code Geass cemented itself as an all time great with its build up and conclusion";False;False;;;;1610585620;;False;{};gj6e8px;False;t3_kwug43;False;False;t3_kwug43;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj6e8px/;1610664326;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;School days;False;False;;;;1610585765;;False;{};gj6ej6n;False;t3_kwug43;False;False;t3_kwug43;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj6ej6n/;1610664521;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;"Deca-Dence and Steins;Gate.";False;False;;;;1610585799;;False;{};gj6elm6;False;t3_kwug43;False;True;t3_kwug43;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj6elm6/;1610664565;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;Gakkou-Gurashi. Has some stuff in the anime that you wouldn't really catch the first time around.;False;False;;;;1610586038;;False;{};gj6f29i;False;t3_kwug43;False;True;t3_kwug43;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj6f29i/;1610664896;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;"That's what the spoiler tag is for, as long as you don't put any spoilers in the title and make sure to include the anime title in the thread title. - -That said, Squid Girl isn't something you write a 1500 word essay on and doesn't require in-depth analysis. It's a goofy slice of life comedy with barely a plot. It's a show you watch because you want to relax, laugh, and not give a shit about the plot. The show is like an animated comic strip.";False;False;;;;1610586203;;False;{};gj6fdph;False;t3_kwtkex;False;True;t1_gj6a4wo;/r/anime/comments/kwtkex/i_wholeheartedly_recommend_shinryaku_ika_musume/gj6fdph/;1610665110;3;True;False;anime;t5_2qh22;;0;[]; -[];;;phoenix8107;;;[];;;;text;t2_65kab3aq;False;False;[];;I think Adult Swim has it for free.;False;False;;;;1610586283;;False;{};gj6fjbg;False;t3_kwtlov;False;True;t1_gj6djha;/r/anime/comments/kwtlov/what_are_anime_similar_to_code_geass_and_death/gj6fjbg/;1610665222;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;"**Favorite sequel** : Railgun T - -**Favorite non-sequel** : Adachi to Shimamura - -**Least favorite** : Listeners ^((actually Gibiate but that shouldn't even count))";False;False;;;;1610586431;;False;{};gj6ftc8;False;t3_kwts5k;False;False;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj6ftc8/;1610665410;45;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;Durarara!! It's a slow start and takes time for everyone's storylines to properly converge;False;False;;;;1610586433;;False;{};gj6fth3;False;t3_kwug43;False;False;t3_kwug43;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj6fth3/;1610665412;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nick_BOI;;;[];;;;text;t2_x2i42xd;False;False;[];;I started watching Adachi to Shimamura a couple days ago: THIER SO AAAA I LOVE THEM!! Animation is breathtaking as well!!;False;False;;;;1610586493;;False;{};gj6fxga;True;t3_kwts5k;False;False;t1_gj6ftc8;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj6fxga/;1610665483;15;True;False;anime;t5_2qh22;;0;[]; -[];;;aidanderson;;;[];;;;text;t2_c7qbu;False;False;[];;Thanks for the info;False;False;;;;1610586613;;False;{};gj6g5nq;True;t3_kwtlov;False;True;t1_gj6fjbg;/r/anime/comments/kwtlov/what_are_anime_similar_to_code_geass_and_death/gj6g5nq/;1610665645;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phoenix8107;;;[];;;;text;t2_65kab3aq;False;False;[];;You're welcome - enjoy!;False;False;;;;1610586647;;False;{};gj6g80e;False;t3_kwtlov;False;True;t1_gj6g5nq;/r/anime/comments/kwtlov/what_are_anime_similar_to_code_geass_and_death/gj6g80e/;1610665689;1;True;False;anime;t5_2qh22;;0;[]; -[];;;professorMaDLib;;;[];;;;text;t2_hgwvg;False;False;[];;"My three: - -1) **Dorohedoro**. I've been anticipating this for a long time. It's far and away one of the most original fantasies out there, both in terms of setting and characters. It's brutal, unpredictable, batshit insane and absolutely hilarious. - -2) **Golden Kamuy Season 3**. Golden Kamuy's an automatic 10/10 as long as the studio doesn't fuck it up, and this season's the best adapted out of the three. A genre buster and a complete wild ride. - -3) **Interspecies Reviewers**. This is probably the anime that I had the most fun with. Not only did I have a smile on my face when I watched it, but there's enough worldbuilding in this series for a genuinely interesting watch. One of the best things about the interspecies reviewer threads was all the theories on species preferences and kinks, since the series was full of that. My favourite thing about the series is that it's not afraid to show us things that are completely niche to a human, in fact it's those very scenes that are the funniest and most intriguing to me. But yeah I had a blast with this one and no shame recommending it.";False;False;;;;1610586750;;False;{};gj6gf18;False;t3_kwts5k;False;False;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj6gf18/;1610665820;20;True;False;anime;t5_2qh22;;0;[]; -[];;;SocialLoser739;;;[];;;;text;t2_4ttuko0s;False;False;[];;Higurashi;False;False;;;;1610586967;;False;{};gj6gu5x;False;t3_kwug43;False;False;t3_kwug43;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj6gu5x/;1610666097;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Nick_BOI;;;[];;;;text;t2_x2i42xd;False;False;[];;Golden Kamuy is absolutely amazing, I hope it gets even more seasons!!!;False;False;;;;1610586989;;False;{};gj6gvsw;True;t3_kwts5k;False;False;t1_gj6gf18;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj6gvsw/;1610666125;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi EggyTheWise, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610587268;moderator;False;{};gj6hfi5;False;t3_kwv0py;False;False;t3_kwv0py;/r/anime/comments/kwv0py/i_need_suggestions_before_i_die/gj6hfi5/;1610666490;0;False;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;Best answer. The second season has all the explanations in it. You can't just watch the first or else it literally makes no sense.;False;False;;;;1610587576;;False;{};gj6i0we;False;t3_kwug43;False;True;t1_gj6gu5x;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj6i0we/;1610666894;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SocialLoser739;;;[];;;;text;t2_4ttuko0s;False;False;[];;"Rezero - -Rokka no yuusha - -Golden kamuy - -Vinland saga";False;False;;;;1610587607;;False;{};gj6i338;False;t3_kwv0py;False;True;t3_kwv0py;/r/anime/comments/kwv0py/i_need_suggestions_before_i_die/gj6i338/;1610666933;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lman89607;;;[];;;;text;t2_e5hy0;False;False;[];;Still have no idea what this anime is about, but I am interested.;False;False;;;;1610587643;;False;{};gj6i5kc;False;t3_kwuoou;False;False;t3_kwuoou;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj6i5kc/;1610666979;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Benthekarateboy;;;[];;;;text;t2_1thpf4i2;False;False;[];;Does that mean if he was in their universe, he would also get that type of grimoire?;False;False;;;;1610587697;;False;{};gj6i9ad;True;t3_kwsq0g;False;True;t1_gj6795d;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj6i9ad/;1610667042;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Benthekarateboy;;;[];;;;text;t2_1thpf4i2;False;False;[];;Thank you for answering. I might as well not compare anymore since I feel dumb, and I feel like I am being told I am dumb :);False;False;;;;1610587746;;False;{};gj6icqx;True;t3_kwsq0g;False;True;t1_gj67w0w;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj6icqx/;1610667105;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SocialLoser739;;;[];;;;text;t2_4ttuko0s;False;False;[];;Yuru camp;False;False;;;;1610587774;;False;{};gj6ieo7;False;t3_kwsugv;False;True;t3_kwsugv;/r/anime/comments/kwsugv/looking_for_new_slice_of_life_to_watch/gj6ieo7/;1610667138;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Already out for hours;False;False;;;;1610587792;;False;{};gj6ify0;False;t3_kwv61q;False;True;t3_kwv61q;/r/anime/comments/kwv61q/redò_of_a_healer_uncensored/gj6ify0/;1610667160;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;"Berserk 1997 - -Black Lagoon - -Samurai Champloo - -Space Dandy - -Higurashi - -Grave of The Fireflies movie - -Also you should use myanimelist.net to keep track of what you’ve watched";False;False;;;;1610587853;;False;{};gj6ik43;False;t3_kwv0py;False;True;t3_kwv0py;/r/anime/comments/kwv0py/i_need_suggestions_before_i_die/gj6ik43/;1610667232;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;There's a discussion thread about the episode, and I am sure a lot of people there also like the series, you may want to check that out;False;False;;;;1610587878;;False;{};gj6ilv8;False;t3_kwv4ee;False;True;t3_kwv4ee;/r/anime/comments/kwv4ee/world_trigger_season_2/gj6ilv8/;1610667263;3;True;False;anime;t5_2qh22;;0;[]; -[];;;professorMaDLib;;;[];;;;text;t2_hgwvg;False;False;[];;The greatest disservice to Golden Kamuy is that the studio fucked up the first season. It's so much harder to recommend because of that but more and more people are finally coming around to it after a fantastic third season. The shitty thing is the manga is nowhere near as inconsistent in quality, it's great from the get go but bc of the anime the first two seasons seem lesser than they actually are.;False;False;;;;1610587907;;False;{};gj6inx7;False;t3_kwts5k;False;True;t1_gj6gvsw;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj6inx7/;1610667298;1;True;False;anime;t5_2qh22;;0;[]; -[];;;naruto_D_mokey;;;[];;;;text;t2_32ot4eh6;False;True;[];;Yes Code Geass ending made the show 10 times more of a masterpiece than it already was;False;False;;;;1610588003;;False;{};gj6iuh2;True;t3_kwug43;False;True;t1_gj6e8px;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj6iuh2/;1610667411;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hell_o1234;;;[];;;;text;t2_89e7ozsn;False;False;[];;Thank you so much!! I'll listen to all of these : );False;False;;;;1610588155;;False;{};gj6j4xr;True;t3_kwtyon;False;True;t1_gj6du7d;/r/anime/comments/kwtyon/music_similar_to_liz_and_the_blue_bird/gj6j4xr/;1610667598;2;True;False;anime;t5_2qh22;;0;[]; -[];;;k4r6000;;;[];;;;text;t2_3q0qar7q;False;False;[];;Revolutionary Girl Utena. It builds up to the revelations of the final episodes that showcase what the story is actually about and changes the context of the stuff you've already seen. Actually, I think it should be watched at least twice to really get it.;False;False;;;;1610588480;;False;{};gj6jrl9;False;t3_kwug43;False;True;t3_kwug43;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj6jrl9/;1610667994;1;True;False;anime;t5_2qh22;;0;[]; -[];;;babydave371;;MAL a-amq;[];;https://myanimelist.net/profile/babydave371;dark;text;t2_sak6n;False;False;[];;Punchline - That is a series that very deliberately and methodically misleads you in almost every way before pulling the rug out from under you and revealing its true intentions. It is fucking great.;False;False;;;;1610588500;;False;{};gj6jsvz;False;t3_kwug43;False;True;t3_kwug43;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj6jsvz/;1610668017;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Bromeek, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610588603;moderator;False;{};gj6jzyt;False;t3_kwven6;False;True;t3_kwven6;/r/anime/comments/kwven6/i_need_an_anime_recommendation_based_on_my_list/gj6jzyt/;1610668143;0;False;False;anime;t5_2qh22;;0;[]; -[];;;chinatownjon;;;[];;;;text;t2_2llv7rko;False;False;[];;I enjoyed ika musume for a bit, but it didn't have quite enough to hold my attention and make me want to come back for more idk why :/;False;False;;;;1610588615;;False;{};gj6k0t5;False;t3_kwtkex;False;True;t3_kwtkex;/r/anime/comments/kwtkex/i_wholeheartedly_recommend_shinryaku_ika_musume/gj6k0t5/;1610668160;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"First time I hear about this, but it's right up my alley! Really like the premise, and the trailer looks interesting. - -Will definitely check this out. - -Given it's Netflix, are we expecting a full dump of all episodes at once? I would prefer a weekly basis, but we'll see.";False;False;;;;1610588753;;False;{};gj6kard;False;t3_kwuoou;False;False;t3_kwuoou;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj6kard/;1610668356;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Yri4lf12;;;[];;;;text;t2_6bfipjd7;False;False;[];;"Steins Gate including the movies. IDC if it's not canon it ties everything with nice bow. - -Haibane Renmei - -Fullmetal Alchemist Brotherhood. All their allies and former enemies were needed to defeat that thing. - -Princess Tutu. Drosselmeyer, nuff said";False;False;;;;1610588754;;1610588952.0;{};gj6kasr;False;t3_kwug43;False;True;t3_kwug43;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj6kasr/;1610668357;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610588784;moderator;False;{};gj6kd2g;False;t3_kwvgos;False;True;t3_kwvgos;/r/anime/comments/kwvgos/whats_some_good_sites_to_watch_anime_on/gj6kd2g/;1610668398;2;False;False;anime;t5_2qh22;;0;[]; -[];;;Ishuzoku-Connoisseur;;;[];;;;text;t2_65qsew7y;False;False;[];;Drink;False;False;;;;1610588805;;False;{};gj6keh3;False;t3_kwv61q;False;False;t3_kwv61q;/r/anime/comments/kwv61q/redò_of_a_healer_uncensored/gj6keh3/;1610668423;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;https://www.reddit.com/r/anime/wiki/legal_streams;False;False;;;;1610588856;;False;{};gj6ki1z;False;t3_kwvgos;False;True;t3_kwvgos;/r/anime/comments/kwvgos/whats_some_good_sites_to_watch_anime_on/gj6ki1z/;1610668485;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Piracy;False;False;;;;1610588870;;False;{};gj6kj34;False;t3_kwv61q;False;True;t3_kwv61q;/r/anime/comments/kwv61q/redò_of_a_healer_uncensored/gj6kj34/;1610668503;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"As the bot mentioned, [here's a list of streaming/download sites.](https://www.reddit.com/r/anime/wiki/legal_streams) Pirate sites aren't allowed to be mentioned by the rules so that's about all you'll get here. You can also find where specific shows are streaming on [livechart.me](https://www.livechart.me/search). - -Depends on where you live, but in the US at least Crunchyroll and Funimation get most of the new shows each season. Funimation tends to have more English dubs in general. HIDIVE is a smaller operation but they're independent and have a few things that the others don't; VRV has the libraries of both Crunchryoll and HIDIVE. I also like Retrocrush for some older things and apparently Tubi has a decent-sized library for free as well.";False;False;;;;1610588873;;False;{};gj6kjav;False;t3_kwvgos;False;True;t3_kwvgos;/r/anime/comments/kwvgos/whats_some_good_sites_to_watch_anime_on/gj6kjav/;1610668507;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheYeehawBoy;;;[];;;;text;t2_82krv98w;False;False;[];;"Seems like we have a few in common, i didn’t look through it all so if I recommend something you’ve seen let me know, I like things that have action and drama and thrills while not being overly kiddish or aimed at younger viewers. - -Some I’d recommend are Golden Kamuy (still airing, has about 30 episodes out but is totally worth it), Black Lagoon, Psycho Pass, Parasyte, blue exorcist is good and might get a season 3 but it’s not currently ongoing.";False;False;;;;1610588916;;False;{};gj6kmc7;False;t3_kwven6;False;True;t3_kwven6;/r/anime/comments/kwven6/i_need_an_anime_recommendation_based_on_my_list/gj6kmc7/;1610668559;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Chloe_d97;;;[];;;;text;t2_7hvwxz3j;False;False;[];;Thanks!;False;False;;;;1610588917;;False;{};gj6kmhg;True;t3_kwvgos;False;True;t1_gj6kjav;/r/anime/comments/kwvgos/whats_some_good_sites_to_watch_anime_on/gj6kmhg/;1610668562;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TesticularBacon;;;[];;;;text;t2_9oikp96b;False;False;[];;Ever seen Mitsuboshi Colors? It's funny and cute.;False;False;;;;1610588926;;False;{};gj6kn28;False;t3_kwsugv;False;True;t3_kwsugv;/r/anime/comments/kwsugv/looking_for_new_slice_of_life_to_watch/gj6kn28/;1610668571;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ShaadowLord;;MAL a-amq;[];;https://myanimelist.net/profile/Shaadow;dark;text;t2_wgmef;False;False;[];;"> Steins Gate including the movies. IDC if it's not canon it ties everything with nice bow. - -I would argue the OVA does this and the movie makes a mess of it.";False;False;;;;1610588928;;False;{};gj6kn8u;False;t3_kwug43;False;True;t1_gj6kasr;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj6kn8u/;1610668574;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Foreverest2000;;;[];;;;text;t2_2zzjb0o5;False;False;[];;OHHHHHHHH. I remember this manga from wayyy back! This is awesome. Looking forward to it.;False;False;;;;1610588937;;False;{};gj6knuh;False;t3_kwuoou;False;False;t3_kwuoou;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj6knuh/;1610668584;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Yri4lf12;;;[];;;;text;t2_6bfipjd7;False;False;[];;The movie makes a full circle.;False;False;;;;1610588984;;False;{};gj6kr23;False;t3_kwug43;False;True;t1_gj6kn8u;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj6kr23/;1610668639;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610589049;;False;{};gj6kvlp;False;t3_kwvgos;False;True;t3_kwvgos;/r/anime/comments/kwvgos/whats_some_good_sites_to_watch_anime_on/gj6kvlp/;1610668717;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ShaadowLord;;MAL a-amq;[];;https://myanimelist.net/profile/Shaadow;dark;text;t2_wgmef;False;False;[];;...That makes an unnecessary mess of an already complete story.;False;False;;;;1610589085;;False;{};gj6ky3u;False;t3_kwug43;False;True;t1_gj6kr23;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj6ky3u/;1610668761;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"Haikyuu is the obvious one. - -Less obvious ones will be the Major series, Cross Game, Chihayafuru and Taishou Baseball Girls.";False;False;;;;1610589100;;False;{};gj6kz7n;False;t3_kwvjbc;False;True;t3_kwvjbc;/r/anime/comments/kwvjbc/drop_the_sport_anime_you_love/gj6kz7n/;1610668778;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AceMaximum;;;[];;;;text;t2_n416n;False;False;[];;Oh shit... They're adapting Tenkuu Shinpan. That's awesome.;False;False;;;;1610589119;;False;{};gj6l0jn;False;t3_kwuoou;False;False;t3_kwuoou;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj6l0jn/;1610668802;24;True;False;anime;t5_2qh22;;0;[]; -[];;;spudz1203;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_38t77leo;False;False;[];;That is a accurate description;False;False;;;;1610589171;;False;{};gj6l48l;True;t3_kwtkex;False;True;t1_gj6fdph;/r/anime/comments/kwtkex/i_wholeheartedly_recommend_shinryaku_ika_musume/gj6l48l/;1610668867;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spudz1203;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_38t77leo;False;False;[];;There isn't really a plot and it really plays into its genre and tropes but this doesn't hold it back for me. But hey its your personal opinion;False;False;;;;1610589271;;False;{};gj6lb8n;True;t3_kwtkex;False;True;t1_gj6k0t5;/r/anime/comments/kwtkex/i_wholeheartedly_recommend_shinryaku_ika_musume/gj6lb8n/;1610668988;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yri4lf12;;;[];;;;text;t2_6bfipjd7;False;False;[];;"[Okabe](/s ""messed up the timeline so he got messed up. He was living different timelines. In this Kurisu also properly confesses to him. In the ova she forgot everything about the incident."")";False;False;;;;1610589298;;False;{};gj6ld1t;False;t3_kwug43;False;True;t1_gj6ky3u;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj6ld1t/;1610669024;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Julimex;;;[];;;;text;t2_228tdpw3;False;False;[];;Monster;False;False;;;;1610589319;;False;{};gj6leiq;False;t3_kwug43;False;True;t3_kwug43;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj6leiq/;1610669048;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;Was this supposed to be an AMV?;False;False;;;;1610589437;;False;{};gj6lmrk;False;t3_kwvmhc;False;True;t3_kwvmhc;/r/anime/comments/kwvmhc/naruto_vs_boruto_full_fight/gj6lmrk/;1610669189;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bromeek;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Bromek/;light;text;t2_qmc60;False;False;[];;"I've heard a lot of good things about Golden Kamuy, It's impressive that kinda niche show has this dedicated fanbase. Might give it a shot. - -Black Lagoon esthetics and artstyle isn't really my type. - -I've watched Parasyte, and it was great. - -I gave Blue exorcist one episode, but I don't remember why I didn't drop it. Instead I've put it on pause, so I might revisit this one. - -Thanks for the suggestions!";False;False;;;;1610589467;;False;{};gj6lou0;True;t3_kwven6;False;True;t1_gj6kmc7;/r/anime/comments/kwven6/i_need_an_anime_recommendation_based_on_my_list/gj6lou0/;1610669223;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mrparanormalguy;;;[];;;;text;t2_7krinkyr;False;False;[];;For copyright issue....;False;False;;;;1610589473;;False;{};gj6lp7t;True;t3_kwvmhc;False;True;t1_gj6lmrk;/r/anime/comments/kwvmhc/naruto_vs_boruto_full_fight/gj6lp7t/;1610669229;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;Ahh OK.;False;False;;;;1610589532;;False;{};gj6lta7;False;t3_kwvmhc;False;True;t1_gj6lp7t;/r/anime/comments/kwvmhc/naruto_vs_boruto_full_fight/gj6lta7/;1610669301;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610589536;;False;{};gj6ltl4;False;t3_kwts5k;False;True;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj6ltl4/;1610669306;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;Bungo stray dogs;False;False;;;;1610589550;;False;{};gj6luk0;False;t3_kwven6;False;True;t3_kwven6;/r/anime/comments/kwven6/i_need_an_anime_recommendation_based_on_my_list/gj6luk0/;1610669323;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mrparanormalguy;;;[];;;;text;t2_7krinkyr;False;False;[];;Please like and sub for more bro....;False;False;;;;1610589572;;False;{};gj6lw3t;True;t3_kwvmhc;False;True;t1_gj6lta7;/r/anime/comments/kwvmhc/naruto_vs_boruto_full_fight/gj6lw3t/;1610669349;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"If I made a ranking like you, it'd look something like... - -1. Kaguya S2 -2. Talentless Nana -3. ID:Invaded -4. Higurashi -5. Adashima -6. Ishuzoku Reviewers -7. Gleipnir -8. Rikekoi -9. Uzaki-chan -10. Murenase -11. Dogeza -12. Darwin's game -13. Kyokou Suiri -14. Oshi Ga Budokan -15. Monstergirl Doctor -16. Iwa Kakeru -17. Peter Grill -18. Tonikawa -19. One Room -20. Tower of God -21. Nekopara -22. Bofuri -23. Kakushigoto -24. Arte";False;False;;;;1610589586;;False;{};gj6lx15;False;t3_kwts5k;False;False;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj6lx15/;1610669366;19;True;False;anime;t5_2qh22;;0;[]; -[];;;ShaadowLord;;MAL a-amq;[];;https://myanimelist.net/profile/Shaadow;dark;text;t2_wgmef;False;False;[];;"[S;G Movie](/s ""That's a plot point introduced by the movie, though. Doesn't even make that much sense, honestly. I don't know how long it's been since you watched the show, but she did not forget. The show already shows, and this is also expanded on Zero, that everyone has some level of Reading Steiner and recollection of stuff that happens on other world lines. The OVA of course also mentions this. It's not a perfect memory like Okabe, but it's not like she forgot. The OVA literally ends with what's pretty much a confession as well, just not verbalized, and in my opinion an even better one considering it's a really cool callback to when they first kiss."")_";False;False;;;;1610589608;;False;{};gj6lyjn;False;t3_kwug43;False;True;t1_gj6ld1t;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj6lyjn/;1610669390;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;Sure! Just got a new sub. Hope you post videos of other animes too;False;False;;;;1610589662;;False;{};gj6m2g1;False;t3_kwvmhc;False;True;t1_gj6lw3t;/r/anime/comments/kwvmhc/naruto_vs_boruto_full_fight/gj6m2g1/;1610669457;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mrparanormalguy;;;[];;;;text;t2_7krinkyr;False;False;[];;You can give me some suggestions....;False;False;;;;1610589696;;False;{};gj6m4r5;True;t3_kwvmhc;False;True;t1_gj6m2g1;/r/anime/comments/kwvmhc/naruto_vs_boruto_full_fight/gj6m4r5/;1610669495;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sapienBob;;;[];;;;text;t2_23lyjwe6;False;False;[];;give Bungo Stray Dogs a chance. it seems right up your alley.;False;False;;;;1610589703;;False;{};gj6m58d;False;t3_kwv0py;False;True;t3_kwv0py;/r/anime/comments/kwv0py/i_need_suggestions_before_i_die/gj6m58d/;1610669504;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CringeKage222;;;[];;;;text;t2_2v8v29g9;False;False;[];;I don't think it's that dumb given the similarities between both of the seireses;False;False;;;;1610589776;;False;{};gj6macu;False;t3_kwsq0g;False;True;t1_gj6icqx;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj6macu/;1610669593;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CringeKage222;;;[];;;;text;t2_2v8v29g9;False;False;[];;Oh boy that makes it sounds like you watched berserk 2016;False;False;;;;1610589822;;False;{};gj6mdic;False;t3_kwsq0g;False;False;t1_gj64ne3;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj6mdic/;1610669649;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610589840;;False;{};gj6mepp;False;t3_kwug43;False;True;t1_gj6lyjn;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj6mepp/;1610669670;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bromeek;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Bromek/;light;text;t2_qmc60;False;False;[];;I've put it on my planning list.;False;False;;;;1610589843;;False;{};gj6meyr;True;t3_kwven6;False;True;t1_gj6luk0;/r/anime/comments/kwven6/i_need_an_anime_recommendation_based_on_my_list/gj6meyr/;1610669677;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;False;[];;"God, these bring back some memories. I haven't listened to concert band music (other than stuff from Hibike) since I was in concert band myself, but these are all classics and I'm pretty sure my school played almost all of them at some point during my time there. I will never forget the time my senior year where we had Arabesque in the marching show and then played it again for the Spring concert, only to then go to college and play it for a third time there in the University band. I could not escape the desert, lol. All pretty great pieces. - -Also, Incantation and Dance is listed there twice ~~maybe because it slaps twice as hard.~~";False;False;;;;1610589858;;1610590156.0;{};gj6mfz5;False;t3_kwtyon;False;True;t1_gj6du7d;/r/anime/comments/kwtyon/music_similar_to_liz_and_the_blue_bird/gj6mfz5/;1610669694;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610589864;moderator;False;{};gj6mggf;False;t3_kwvsaq;False;True;t3_kwvsaq;/r/anime/comments/kwvsaq/what_should_i_watch_from_my_anime_list_linked/gj6mggf/;1610669702;0;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi 101stgec_, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610589865;moderator;False;{};gj6mghs;False;t3_kwvsaq;False;True;t3_kwvsaq;/r/anime/comments/kwvsaq/what_should_i_watch_from_my_anime_list_linked/gj6mghs/;1610669703;0;False;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"NGE and Madoka Magica for me. - -Pretty sure I won't like either of them so no plans to try them.";False;False;;;;1610589869;;False;{};gj6mgs3;False;t3_kwvq37;False;True;t3_kwvq37;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6mgs3/;1610669708;0;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;I definitely wanna get around to Madoka myself at some point. I've heard it's good and it's short;False;False;;;;1610589906;;False;{};gj6mjbp;True;t3_kwvq37;False;True;t1_gj6mgs3;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6mjbp/;1610669751;3;True;False;anime;t5_2qh22;;0;[]; -[];;;EggyTheWise;;;[];;;;text;t2_4k5pymxv;False;False;[];;I will thanks;False;False;;;;1610589910;;False;{};gj6mjmh;True;t3_kwv0py;False;True;t1_gj6m58d;/r/anime/comments/kwv0py/i_need_suggestions_before_i_die/gj6mjmh/;1610669756;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EggyTheWise;;;[];;;;text;t2_4k5pymxv;False;False;[];;I’ll search them all up thanks a lot;False;False;;;;1610589931;;False;{};gj6ml1d;True;t3_kwv0py;False;False;t1_gj6ik43;/r/anime/comments/kwv0py/i_need_suggestions_before_i_die/gj6ml1d/;1610669779;2;True;False;anime;t5_2qh22;;0;[]; -[];;;UnboxingLifePodcast;;;[];;;;text;t2_9n3kj22u;False;False;[];;I know it only came out in October but I have heard a lot of good things about Jujutsu Kaisen, its on my list but I haven't gotten around to it just yet.;False;False;;;;1610589936;;False;{};gj6mleg;False;t3_kwvq37;False;True;t3_kwvq37;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6mleg/;1610669785;1;True;False;anime;t5_2qh22;;0;[]; -[];;;infinite_lyy;;;[];;;;text;t2_9lftz77s;False;False;[];;Depends on what you're in the mood for but I'd suggest Attack on Titan so you can join in the hype. Stay away from social media tho bc spoilers;False;False;;;;1610589987;;False;{};gj6movi;False;t3_kwvsaq;False;True;t3_kwvsaq;/r/anime/comments/kwvsaq/what_should_i_watch_from_my_anime_list_linked/gj6movi/;1610669845;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;That's definitely a good one. It's definitely super popular atm, I think it's pretty good myself. Very similar to other shounens like MHA or Demon Slayer, so if you liked those two you'll probably like it;False;False;;;;1610590012;;False;{};gj6mqlj;True;t3_kwvq37;False;True;t1_gj6mleg;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6mqlj/;1610669873;2;True;False;anime;t5_2qh22;;0;[]; -[];;;its_woke;;;[];;;;text;t2_8q969pta;False;False;[];;I wanna say this is from the OVA called No Regrets. I could be wrong tho;False;False;;;;1610590090;;False;{};gj6mvy4;False;t3_kwvsiq;False;True;t3_kwvsiq;/r/anime/comments/kwvsiq/can_someone_please_tell_me_the_episode_number/gj6mvy4/;1610669961;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your submission has been removed. - -- Clips from shows should use the ""Clip"" flair, be between 10 seconds and 5 minutes long, and include the anime name in the title of the post. If the clip is from a recently aired episode, wait a **week** after the episode's discussion thread is posted before posting the clip. Additionally, we only allow each user to post two clips per month. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610590090;moderator;False;{};gj6mvy5;False;t3_kwvmhc;False;True;t3_kwvmhc;/r/anime/comments/kwvmhc/naruto_vs_boruto_full_fight/gj6mvy5/;1610669961;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Yeah, very good, the first season is not over yet, so don't need to watch now if you like to binge;False;False;;;;1610590096;;False;{};gj6mwcq;False;t3_kwvq37;False;True;t1_gj6mleg;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6mwcq/;1610669968;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;"You can two between two paths -1- Post popular fights from popular animes -2- Rarer fights from not so popular animes - -You can mix both and develop your youtube audience. - -For example: - -1- Jujutsu Kaisen, Fire Force, Aot epic moments -2 - Trigun, Samurai 7, K, SK8 epic moments";False;False;;;;1610590105;;False;{};gj6mwyz;False;t3_kwvmhc;False;True;t1_gj6m4r5;/r/anime/comments/kwvmhc/naruto_vs_boruto_full_fight/gj6mwyz/;1610669979;2;True;False;anime;t5_2qh22;;0;[]; -[];;;UnboxingLifePodcast;;;[];;;;text;t2_9n3kj22u;False;False;[];;I would say watch Erased or Boku dake ga Inai Machi. I really enjoyed it and its only 12 episodes;False;False;;;;1610590142;;False;{};gj6mzjr;False;t3_kwvsaq;False;True;t3_kwvsaq;/r/anime/comments/kwvsaq/what_should_i_watch_from_my_anime_list_linked/gj6mzjr/;1610670020;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Burnedsauce445;;;[];;;;text;t2_3wiksx30;False;False;[];;I’ve seen about half of the ones on that list, I’m halfway through food wars. But I’ve only really watched about 100 less popular anime in my 1 1/2 years of anime watching;False;False;;;;1610590144;;False;{};gj6mzo1;False;t3_kwvq37;False;True;t3_kwvq37;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6mzo1/;1610670022;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yri4lf12;;;[];;;;text;t2_6bfipjd7;False;False;[];;"The movie solidifies it and gives a proper conclusion to entitling instead of the guessing game. - -Won't watch Zero because it is just a spin off of a timeline I don't want.";False;False;;;;1610590167;;False;{};gj6n18o;False;t3_kwug43;False;True;t1_gj6lyjn;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj6n18o/;1610670047;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KendotsX;;;[];;;;text;t2_j6nbtko;False;False;[];;"Angel Beats - -Code Geass - -Anohana - -Madoka - -Toradora - -Clannad - -Mirai Nikki - -Gurren Lagann - -Another - -Elfen Lied - -Shokugeki no Soma";False;False;;;;1610590205;;False;{};gj6n3zj;False;t3_kwvq37;False;True;t3_kwvq37;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6n3zj/;1610670092;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WhatAreRoads;;;[];;;;text;t2_7bf5t1gl;False;False;[];;"Black clover -Jujutsu Kaisen -Attack on titan -Bleach -One piece -Blue exorcist -Those are all of them I can think of";False;False;;;;1610590218;;False;{};gj6n4y3;False;t3_kwvq37;False;True;t3_kwvq37;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6n4y3/;1610670107;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;"Death Note - -Steins;Gate - -Monster - -Gintama - -Evangelion - -Gurren Lagann - -Clannad: After Story";False;False;;;;1610590224;;False;{};gj6n5c0;False;t3_kwvq37;False;True;t3_kwvq37;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6n5c0/;1610670114;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;I've seen all those except the ones that overlap with my list haha. If I had to pick one for you to watch I'd say Code Geass, one of my favorites;False;False;;;;1610590270;;False;{};gj6n8hp;True;t3_kwvq37;False;True;t1_gj6n3zj;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6n8hp/;1610670164;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Animetthighs;;;[];;;;text;t2_874mc8b4;False;False;[];;Code duck and life book;False;False;;;;1610590300;;False;{};gj6nalj;False;t3_kwtlov;False;False;t3_kwtlov;/r/anime/comments/kwtlov/what_are_anime_similar_to_code_geass_and_death/gj6nalj/;1610670200;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610590303;;False;{};gj6nat0;False;t3_kwts5k;False;False;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj6nat0/;1610670203;0;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Attack On Titan is definitely a big one. Most of yours seem to be shounen which is interesting;False;False;;;;1610590309;;False;{};gj6nbb2;True;t3_kwvq37;False;True;t1_gj6n4y3;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6nbb2/;1610670212;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mrparanormalguy;;;[];;;;text;t2_7krinkyr;False;False;[];;Thanks;False;False;;;;1610590326;;False;{};gj6ncj1;True;t3_kwvmhc;False;True;t1_gj6mwyz;/r/anime/comments/kwvmhc/naruto_vs_boruto_full_fight/gj6ncj1/;1610670232;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Really surprised at Death Note! I feel like that's one of the main gateway anime for a lot of people, myself included;False;False;;;;1610590370;;False;{};gj6nfie;True;t3_kwvq37;False;False;t1_gj6n5c0;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6nfie/;1610670282;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CursedEgyptianAmulet;;MAL;[];;https://myanimelist.net/profile/Spectrospecs;dark;text;t2_fzwzh;False;False;[];;Death Note is the big one for me but it’s been so thoroughly spoiled by this point that I don’t think I will;False;False;;;;1610590402;;False;{};gj6nhr0;False;t3_kwvq37;False;True;t3_kwvq37;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6nhr0/;1610670318;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610590435;moderator;False;{};gj6nk09;False;t3_kwvye1;False;True;t3_kwvye1;/r/anime/comments/kwvye1/what_show_should_i_watch_to_get_into_slice_of/gj6nk09/;1610670353;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi JangusKing69, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610590435;moderator;False;{};gj6nk0w;False;t3_kwvye1;False;True;t3_kwvye1;/r/anime/comments/kwvye1/what_show_should_i_watch_to_get_into_slice_of/gj6nk0w/;1610670354;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610590448;;False;{};gj6nkwy;False;t3_kwvq37;False;True;t1_gj6nbb2;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6nkwy/;1610670368;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610590449;moderator;False;{};gj6nl0h;False;t3_kwvyk6;False;True;t3_kwvyk6;/r/anime/comments/kwvyk6/hi_guys_can_u_guys_help_me_find_this_anime_i_cant/gj6nl0h/;1610670370;1;False;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Damn thats a shame. That definitely would take away form the enjoyment from watching it I imagine, it is a really great story though;False;False;;;;1610590451;;False;{};gj6nl3g;True;t3_kwvq37;False;True;t1_gj6nhr0;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6nl3g/;1610670371;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ShaadowLord;;MAL a-amq;[];;https://myanimelist.net/profile/Shaadow;dark;text;t2_wgmef;False;False;[];;Not really a guessing game. It doesn't really get more obvious. I do like the scene in the movie where she cheekrapes Okabe, though.;False;False;;;;1610590492;;False;{};gj6nnzw;False;t3_kwug43;False;True;t1_gj6n18o;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj6nnzw/;1610670419;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"* Attack On Titan - -* Fullmetal Alchemist - -* Gintama - -* Naruto - -* Bleach - -* One Piece - -* Jujutsu Kaisen - -* Hunter X Hunter - -* Monogatari Series - -Aside from FMA (I do want to watch Brotherhood eventually) all of them are shows that I *will never ever watch*, either because they're way too long or they're too gory for me to handle.";False;False;;;;1610590495;;False;{};gj6no6y;False;t3_kwvq37;False;True;t3_kwvq37;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6no6y/;1610670422;0;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Yeah I know, I can see why it may seem like I didn't though based on the reply;False;False;;;;1610590500;;False;{};gj6nokc;True;t3_kwvq37;False;True;t1_gj6nkwy;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6nokc/;1610670428;2;True;False;anime;t5_2qh22;;0;[]; -[];;;xX_BRUH360_Xx;;;[];;;;text;t2_4u79rr72;False;False;[];;Akira;False;False;;;;1610590526;;False;{};gj6nqc2;False;t3_kwvyk6;False;True;t3_kwvyk6;/r/anime/comments/kwvyk6/hi_guys_can_u_guys_help_me_find_this_anime_i_cant/gj6nqc2/;1610670457;2;True;False;anime;t5_2qh22;;0;[]; -[];;;muuhfi;;;[];;;;text;t2_12eocb;False;False;[];;One Piece. The fact that it has so many episodes is why it's so good. The latest episodes are damn good. Even the manga is crazy right now.;False;False;;;;1610590579;;False;{};gj6ntx2;False;t3_kwv0py;False;True;t3_kwv0py;/r/anime/comments/kwv0py/i_need_suggestions_before_i_die/gj6ntx2/;1610670519;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Halfblood_Prince-;;;[];;;;text;t2_42ifjymh;False;False;[];;how about kaguya sama . It's great;False;False;;;;1610590641;;False;{};gj6ny71;False;t3_kwvye1;False;True;t3_kwvye1;/r/anime/comments/kwvye1/what_show_should_i_watch_to_get_into_slice_of/gj6ny71/;1610670590;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;"If you're not a fan of gore then that's understandable as to why you haven't seen some shows. I read the One Piece manga a year and a half ago and loved it, I'm glad I chose not to watch the anime. - -I also don't have plans to watch Gintama or Naruto, neither really seemed to appeal to me. - -I think the one thing here you may be missing out on is HxH, 148 episodes may seem like a lot, but if you just watch arc by arc with breaks in between it won't feel that long. I think it's worth a watch.";False;False;;;;1610590651;;False;{};gj6nyxh;True;t3_kwvq37;False;True;t1_gj6no6y;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6nyxh/;1610670603;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;Yep! Never got around to it, and I'm not particularly interested in it (plenty of other series I'd rather watch at the moment).;False;False;;;;1610590716;;False;{};gj6o3e7;False;t3_kwvq37;False;True;t1_gj6nfie;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6o3e7/;1610670678;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;That's fair. I've definitely reached that point where I'm selective about my series. I've been wanting to watch some old school stuff recently like Lain, Bebop, Trigun, etc.;False;False;;;;1610590777;;False;{};gj6o7jn;True;t3_kwvq37;False;True;t1_gj6o3e7;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6o7jn/;1610670751;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DirtyJannaMain;;;[];;;;text;t2_jns58wg;False;False;[];;The manga doesn't make that much more sense so its ok. It's pretty entertaining though;False;False;;;;1610590825;;False;{};gj6oaq9;False;t3_kwuoou;False;False;t1_gj6i5kc;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj6oaq9/;1610670807;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Yri4lf12;;;[];;;;text;t2_6bfipjd7;False;False;[];;"* Sailor Moon & Hunter X Hunter -* Symohogear -* Death Note -* Gintana -* Attack on Titan -* Demon Slayer -* NGE -* One piece after Nami Island -* Dragon Ball after Saiyan Saga -* Bleach after Soul city Saga -* MHA -* Black Clover -* Aikatsu -* Idolmaster -* Gundum (only Amuro and Kamil season. Hated mecha even since. ) -* A Silent Voice. -* San Gatsu - -And some more. Mostly new ones since I watcher many of the older ones in cable TV. What I'm interested in watching nowadays is not exactly popular. - -I may have seen one or two episodes but never actually gone beyond it.";False;False;;;;1610590855;;False;{};gj6ocpr;False;t3_kwvq37;False;True;t3_kwvq37;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6ocpr/;1610670840;2;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"I would say Attack on Titan like someone else suggested so you could watch along as this season airs. - -Other great options on your list are Code Geass (my favorite) and Kill la Kill. Code Geass gets a lot of comparisons to Death Note due to the MCs, and Kill la Kill is a action packed show with great visuals. - -I would also recommend checking out Tengen Toppa Gurren Lagann. A lot of the people who made it went on to make Kill la Kill, and its probably one of the defining anime of the last 15 years";False;False;;;;1610590868;;False;{};gj6odkm;False;t3_kwvsaq;False;True;t3_kwvsaq;/r/anime/comments/kwvsaq/what_should_i_watch_from_my_anime_list_linked/gj6odkm/;1610670857;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Benthekarateboy;;;[];;;;text;t2_1thpf4i2;False;False;[];;Exactly. Is it the way I asked? Or, am I frowned upon for being not famous for having less karma;False;False;;;;1610590950;;False;{};gj6oj1v;True;t3_kwsq0g;False;True;t1_gj6macu;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj6oj1v/;1610670952;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ShaadowLord;;MAL a-amq;[];;https://myanimelist.net/profile/Shaadow;dark;text;t2_wgmef;False;False;[];;"According to the MAL popularity rankings, the highest ones I haven't seen are One Piece (watched 12 episodes) and Fairy Tail. - -Aside from the ultra long shounens, I haven't seen from the top 100 most popular entries: Parasyte, haven't finish Cowboy Bebop, haven't seen Psycho-Pass, Elfen Lied, the og FMA, HoTD, Danmachi, Devil is Part Timer, Overlord, Oregairu, Deadman Wonderland, Sakurasou, Dr. Stone, Samurai Champloo, Owari no Seraph, Shield Hero, Log Horizon, Black Butler, Kaichou wa Maid-sama, Nisekoi, Haikyuu, Ouran Koukou Host Club, haven't finished NGE and haven't seen any of the Ghibli movies. - -Honestly, can't say I'm too interested in trying too many of them out.";False;False;;;;1610590964;;False;{};gj6ojz6;False;t3_kwvq37;False;True;t3_kwvq37;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6ojz6/;1610670967;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Of your list, I've seen a few but definitely not all. I'm most surprised you managed to avoid the MHA craze! I'd probably say that and Demon Slayse are the two most popular anime in the past few years;False;False;;;;1610590971;;False;{};gj6oke6;True;t3_kwvq37;False;True;t1_gj6ocpr;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6oke6/;1610670974;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Benthekarateboy;;;[];;;;text;t2_1thpf4i2;False;False;[];;Of course I have. I enjoyed the plot of it. The animation, I was able to fight through it :);False;False;;;;1610590981;;False;{};gj6ol2v;True;t3_kwsq0g;False;True;t1_gj6mdic;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj6ol2v/;1610670986;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"The longest anime I've been able to watch that I didn't watch week-by-week as it aired was 76 episodes, so there's no way I'd have the patience for 148. And even if it wasn't the length, HxH also falls under the ""too gory for me"" category based on what I've heard from my friends who have watched the show.";False;False;;;;1610590983;;False;{};gj6ol7i;False;t3_kwvq37;False;True;t1_gj6nyxh;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6ol7i/;1610670988;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;"> some of them look cool - -If you see something and it looks interesting, that's probably the best place to start.";False;False;;;;1610591035;;False;{};gj6oorx;False;t3_kwvye1;False;True;t3_kwvye1;/r/anime/comments/kwvye1/what_show_should_i_watch_to_get_into_slice_of/gj6oorx/;1610671047;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610591061;;False;{};gj6oqj2;False;t3_kwug43;False;False;t3_kwug43;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj6oqj2/;1610671077;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yri4lf12;;;[];;;;text;t2_6bfipjd7;False;False;[];;Not a fan of long shows. Knew they were going to be long from the first episode so skipped it.;False;False;;;;1610591075;;False;{};gj6ori6;False;t3_kwvq37;False;True;t1_gj6oke6;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6ori6/;1610671092;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CringeKage222;;;[];;;;text;t2_2v8v29g9;False;False;[];;They are probably tierd from those kinds of posts;False;False;;;;1610591081;;False;{};gj6orwt;False;t3_kwsq0g;False;True;t1_gj6oj1v;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj6orwt/;1610671099;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;There are a bunch of those I haven't seen as well. I think if I had to recommend a couple, I think Haikyuu and Ouran High School Host Club would be my picks. I didnt expect to enjoy either of them and I was pleasantly surprised;False;False;;;;1610591092;;False;{};gj6oso6;True;t3_kwvq37;False;False;t1_gj6ojz6;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6oso6/;1610671112;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610591111;moderator;False;{};gj6otwm;False;t3_kww5oc;False;True;t3_kww5oc;/r/anime/comments/kww5oc/whos_the_girl_on_the_right_and_what_anime_is_she/gj6otwm/;1610671133;1;False;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;I think long shows are so interesting because the extra time they have to flesh out characters can make certain moments hit a lot harder. However, there are also 12 episodes shows that can do the same thing.;False;False;;;;1610591158;;False;{};gj6ox2v;True;t3_kwvq37;False;True;t1_gj6ori6;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6ox2v/;1610671188;2;True;False;anime;t5_2qh22;;0;[]; -[];;;YaBoiHunter2;;;[];;;;text;t2_3r65f3o3;False;False;[];;"Maybe idk I’d need to know what it is for “research purposes” - -Edit: plz sauce for left";False;False;;;;1610591184;;False;{};gj6oyte;False;t3_kww5oc;False;True;t3_kww5oc;/r/anime/comments/kww5oc/whos_the_girl_on_the_right_and_what_anime_is_she/gj6oyte/;1610671218;1;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"Bunny Girl Senpai is a great one to get into those genres, it even has a supernatural theme to it as well which makes it a little pretty interesting. The MC is pretty likable, and the main girl is one of my favorites in all of anime. My brother generally only watches battle shounen but he loved it after I recommended he watch it. - -If you like that Oregairu would be a good follow up. The MCs have a lot of similarities, and it has a really good supporting cast. - -Your Lie in April and Anohana are a lot more drama heavy but both are good options as well. Personally liked YLiA a lot more than Anohana (didnt really like the characters and felt it became way too melodramatic), but a lot of people love it";False;False;;;;1610591186;;False;{};gj6oyxi;False;t3_kwvye1;False;True;t3_kwvye1;/r/anime/comments/kwvye1/what_show_should_i_watch_to_get_into_slice_of/gj6oyxi/;1610671221;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TheAnimeSyndicate;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;I Post Completed Anime;dark;text;t2_43nqhnqw;False;False;[];;You don’t know if the outlines of genitalia is considered nsfw?;False;False;;;;1610591197;;False;{};gj6ozq7;False;t3_kww5oc;False;True;t3_kww5oc;/r/anime/comments/kww5oc/whos_the_girl_on_the_right_and_what_anime_is_she/gj6ozq7/;1610671234;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;"Since you liked: -- The Promised Neverland, try Made in Abyss -- Death Note, try Terror in Resonance -- Hunter x Hunter, try Yu Yu Hakusho -- Tokyo Ghoul, try Parasyte";False;False;;;;1610591210;;1610591439.0;{};gj6p0mt;False;t3_kwvsaq;False;True;t3_kwvsaq;/r/anime/comments/kwvsaq/what_should_i_watch_from_my_anime_list_linked/gj6p0mt/;1610671249;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Thats fair, i don't typically associate HxH with gore but it's definitely there. What was the 76 episode anime by the way? I don't know one with that count;False;False;;;;1610591224;;False;{};gj6p1lr;True;t3_kwvq37;False;True;t1_gj6ol7i;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6p1lr/;1610671265;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"The girl on the right is [Kuina](https://myanimelist.net/character/145982/Kuina_Natsukawa) from [Hinako Note](https://myanimelist.net/anime/33948/Hinako_Note) - -*damn typos";False;False;;;;1610591237;;1610591463.0;{};gj6p2hy;False;t3_kww5oc;False;True;t3_kww5oc;/r/anime/comments/kww5oc/whos_the_girl_on_the_right_and_what_anime_is_she/gj6p2hy/;1610671280;2;True;False;anime;t5_2qh22;;0;[]; -[];;;YoungTDude23;;;[];;;;text;t2_6nu5pj74;False;False;[];;What chapter is at currently in anime;False;False;;;;1610591242;;False;{};gj6p2uk;False;t3_kwv4ee;False;True;t3_kwv4ee;/r/anime/comments/kwv4ee/world_trigger_season_2/gj6p2uk/;1610671287;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CringeKage222;;;[];;;;text;t2_2v8v29g9;False;False;[];;Ehhhhh the plot holes made me want to commit griffth;False;False;;;;1610591273;;False;{};gj6p4ym;False;t3_kwsq0g;False;False;t1_gj6ol2v;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj6p4ym/;1610671322;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ShaadowLord;;MAL a-amq;[];;https://myanimelist.net/profile/Shaadow;dark;text;t2_wgmef;False;False;[];;Yeah, Haikyuu is one I've been meaning to check out. I'll watch it... eventually.;False;False;;;;1610591347;;False;{};gj6p9x7;False;t3_kwvq37;False;True;t1_gj6oso6;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6p9x7/;1610671403;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;I know that feeling lmao;False;False;;;;1610591377;;False;{};gj6pbyt;True;t3_kwvq37;False;True;t1_gj6p9x7;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6pbyt/;1610671438;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PlaybaiCarti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_1aon6ve3;False;False;[];;the only Netflix original I'm looking forward to;False;False;;;;1610591393;;False;{};gj6pd1o;False;t3_kwuoou;False;False;t3_kwuoou;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj6pd1o/;1610671457;11;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610591426;moderator;False;{};gj6pfb2;False;t3_kww91r;False;True;t3_kww91r;/r/anime/comments/kww91r/need_help_remembering_an_anime_about_a_thai/gj6pfb2/;1610671495;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610591514;moderator;False;{};gj6plfc;False;t3_kwwa1q;False;True;t3_kwwa1q;/r/anime/comments/kwwa1q/cant_remember_the_name_of_a_movie/gj6plfc/;1610671601;1;False;False;anime;t5_2qh22;;0;[]; -[];;;FlaminScribblenaut;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/flaming_scr;light;text;t2_hx6xr;False;False;[];;"Yuru Camp! A lovely show, such a pure little delight. - -I’m conflicted on whether or not I’d list it as among my *favorite* anime outright; just in terms of the iyashikei I’ve seen, Flying Witch spoke to me and truly calmed my soul on a much deeper level, this show is like a fun sorely-needed vacation whereas that show actively made me reconsider the future course of my life and made a truly carefree and content existence feel so in reach; also I’m a cat person and not a dog person so that’s a major advantage it has; and if we’re counting it under the genre label there’s also Girls’ Last Tour which is just something else entirely; but that’s getting into the weeds, I still love this show a whole, whole lot and cherish the time I’ve spent with it greatly. - -I’ll answer a few questions. - -> **How appealing does Yuru Camp make camping and outdoor activities seem?** - -Very. I’ve been a staunchly indoors-y person for most of my life but I’ve become more and more attracted to nature and the great wide open as of late, and I think this show was a step in getting me towards that point. It just makes camping seem like one of the most comfortable, fulfilling and pure experiences out there. Also helped by the fact that this show is simply *gorgeous* and makes the wide expanses of nature, the warmth of a huddle around the fire, and the *food* such a sight to behold. - -I like the idea of it, a show that’s just all about a given hobby, expressing why it’s great and trying to get more people to give it a chance. As long as it’s done with genuine love for the activity, which Yuru Camp very much radiates, I think it’s a really good idea and a great tool for broadening peoples’ horizons. True love for the outdoors and camping with friends drips from every aspect of this show, and it made me see it in a way I never had before, made me genuinely consider trying something I’d staunchly never wanted to do as a kid. Also really made me want to try making hot pot. - -> **What kind of feelings do you get from the soundtrack?** - -Yuru Camp has one of my favorite soundtracks of all time. It’s grand and expansive when it needs to express the stunning beauty of nature, soothing and calm when it needs to give the viewer a sense of warmth, simplicity and comfort, and, often, both at once. I adore celtic music, acoustic guitars, and mountain atmosphere and this OST just hits a very specific spot in my wide menagerie of musical loves. - -The ED is in my all-time top 5. No other piece of music soothes my soul quite like it. OP’s pretty fun even if it’s nowhere near as good as Everything’s Better With Perry from Phineas and Ferb: Across The 2nd Dimension, the song it is *[claps hands] very* obviously ripping off - -> **Which Yuru Camp character was your favourite and why?** - -Nadeshiko is precious and perfect and I will defend her from any and all haters, *with* a broadsword - -Anyway shoutouts to that 4Chan guy who started a forest fire while camping because of this show";False;False;;;;1610591531;;1610592418.0;{};gj6pmh4;False;t3_kwtjkl;False;False;t3_kwtjkl;/r/anime/comments/kwtjkl/yuru_camp_thursday_anime_discussion_thread_ft/gj6pmh4/;1610671619;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Playful_Soup;;;[];;;;text;t2_9oi8v2ho;False;False;[];;"Way of the house husband too... - -maybe i only care lol";False;False;;;;1610591596;;False;{};gj6pqy7;False;t3_kwuoou;False;False;t1_gj6pd1o;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj6pqy7/;1610671693;22;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610591610;moderator;False;{};gj6prxl;False;t3_kwwb2n;False;True;t3_kwwb2n;/r/anime/comments/kwwb2n/i_need_da_le_title_tt_i_just_saw_those_on_discord/gj6prxl/;1610671710;1;False;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;"It's not ~~*Heaven's Memo Pad*~~ is it? - -Edit: Wait, looks like *Seven Days War*.";False;False;;;;1610591642;;False;{};gj6ptz4;False;t3_kww91r;False;False;t3_kww91r;/r/anime/comments/kww91r/need_help_remembering_an_anime_about_a_thai/gj6ptz4/;1610671746;1;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;I suggest not watching the show at all;False;True;;comment score below threshold;;1610591654;;False;{};gj6purv;False;t3_kwwakl;False;False;t3_kwwakl;/r/anime/comments/kwwakl/redo_of_healer_censored_vs_uncensored/gj6purv/;1610671761;-12;True;False;anime;t5_2qh22;;0;[]; -[];;;mobilegamegod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Aochhi;light;text;t2_pkuqf;False;False;[];;I’ve seen upwards of a thousand anime and I’ve still never watched the big three, Dragon Ball, Yu-Gi-Oh, or Fairy Tail.;False;False;;;;1610591659;;False;{};gj6pv43;False;t3_kwvq37;False;False;t3_kwvq37;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6pv43/;1610671767;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EggyTheWise;;;[];;;;text;t2_4k5pymxv;False;False;[];;Thanks a buddy recommended it I’ll have to give it a try at some point;False;False;;;;1610591687;;False;{};gj6px32;True;t3_kwv0py;False;True;t1_gj6ntx2;/r/anime/comments/kwv0py/i_need_suggestions_before_i_die/gj6px32/;1610671803;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EggyTheWise;;;[];;;;text;t2_4k5pymxv;False;False;[];;Thanks a lot for the recommendations I’ll look into them;False;False;;;;1610591720;;False;{};gj6pzbv;True;t3_kwv0py;False;True;t1_gj6i338;/r/anime/comments/kwv0py/i_need_suggestions_before_i_die/gj6pzbv/;1610671842;1;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;Snow White with the Red Hair?;False;False;;;;1610591739;;False;{};gj6q0mr;False;t3_kwwb2n;False;True;t3_kwwb2n;/r/anime/comments/kwwb2n/i_need_da_le_title_tt_i_just_saw_those_on_discord/gj6q0mr/;1610671863;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;2nd one is Akagami no Shirayuki-hime;False;False;;;;1610591756;;False;{};gj6q1r0;False;t3_kwwb2n;False;False;t3_kwwb2n;/r/anime/comments/kwwb2n/i_need_da_le_title_tt_i_just_saw_those_on_discord/gj6q1r0/;1610671883;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Natrist4;;;[];;;;text;t2_5oa7c2oz;False;False;[];;snow white with the red hair;False;False;;;;1610591763;;False;{};gj6q298;False;t3_kwwb2n;False;True;t3_kwwb2n;/r/anime/comments/kwwb2n/i_need_da_le_title_tt_i_just_saw_those_on_discord/gj6q298/;1610671893;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;"Out of all the ones you’ve listed, I’ve only seen -- Yu Yu Hakusho -- Demon Slayer -- Angel Beats! -- Madoka Magica -- Some Ghibli";False;False;;;;1610591870;;False;{};gj6q9c6;False;t3_kwvq37;False;True;t3_kwvq37;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6q9c6/;1610672018;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KendotsX;;;[];;;;text;t2_j6nbtko;False;False;[];;125;False;False;;;;1610591898;;False;{};gj6qb8s;False;t3_kwv4ee;False;False;t1_gj6p2uk;/r/anime/comments/kwv4ee/world_trigger_season_2/gj6qb8s/;1610672049;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"For the first episode, the only thing censored is the first image and a 1 min scene - -That said the censoring is weird and the uncensored version is better, even for story purposes";False;False;;;;1610591950;;False;{};gj6qeo6;False;t3_kwwakl;False;False;t3_kwwakl;/r/anime/comments/kwwakl/redo_of_healer_censored_vs_uncensored/gj6qeo6/;1610672107;9;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;"""somebody"" posted something really similar a few minutes ago. Maybe you should check [this thread](https://www.reddit.com/r/anime/comments/kww6mr/romance_gaming_good_anime/).";False;False;;;;1610591950;;False;{};gj6qeoj;False;t3_kwwd8w;False;True;t3_kwwd8w;/r/anime/comments/kwwd8w/romance_anime_where_characters_meet_from_a_game/gj6qeoj/;1610672107;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Spireheist;;;[];;;;text;t2_3r738pe;False;False;[];;"Yes!! That's the one! - -And it was released in 2019? Wow, no idea it was so recent -- or that I'd watched it so recently. - -Thanks so much :)";False;False;;;;1610591953;;False;{};gj6qevk;False;t3_kww91r;False;True;t1_gj6ptz4;/r/anime/comments/kww91r/need_help_remembering_an_anime_about_a_thai/gj6qevk/;1610672110;1;True;False;anime;t5_2qh22;;0;[]; -[];;;whittleseys;;;[];;;;text;t2_2jvujxyt;False;False;[];;Okay thank you!;False;False;;;;1610591982;;False;{};gj6qgvk;True;t3_kwwakl;False;True;t1_gj6qeo6;/r/anime/comments/kwwakl/redo_of_healer_censored_vs_uncensored/gj6qgvk/;1610672144;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;I second this!!!;False;False;;;;1610592003;;False;{};gj6qi91;False;t3_kwven6;False;True;t1_gj6luk0;/r/anime/comments/kwven6/i_need_an_anime_recommendation_based_on_my_list/gj6qi91/;1610672167;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IcicleLin;;;[];;;;text;t2_867dltua;False;False;[];;Oh that was me;False;False;;;;1610592043;;False;{};gj6qkx1;True;t3_kwwd8w;False;True;t1_gj6qeoj;/r/anime/comments/kwwd8w/romance_anime_where_characters_meet_from_a_game/gj6qkx1/;1610672210;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;"Oh yeah no problem. All I did was search ""anime thai immigrant"" and there it was.";False;False;;;;1610592052;;False;{};gj6qljr;False;t3_kww91r;False;True;t1_gj6qevk;/r/anime/comments/kww91r/need_help_remembering_an_anime_about_a_thai/gj6qljr/;1610672221;1;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;Its the same person;False;False;;;;1610592052;;False;{};gj6qlkk;False;t3_kwwd8w;False;True;t1_gj6qeoj;/r/anime/comments/kwwd8w/romance_anime_where_characters_meet_from_a_game/gj6qlkk/;1610672221;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IcicleLin;;;[];;;;text;t2_867dltua;False;False;[];;I posted that earlier 😂;False;False;;;;1610592059;;False;{};gj6qm0j;True;t3_kwwd8w;False;True;t1_gj6qeoj;/r/anime/comments/kwwd8w/romance_anime_where_characters_meet_from_a_game/gj6qm0j/;1610672230;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"> What was the 76 episode anime by the way? I don't know one with that count - -[Shakugan No Shana](https://myanimelist.net/anime/355/Shakugan_no_Shana). It was 3 seasons of 24 episodes, plus 4 canon OVA episodes that were released (and take place) between seasons 2 and 3. So counting those OVA episodes, it's 76 episodes in total.";False;False;;;;1610592076;;False;{};gj6qn5y;False;t3_kwvq37;False;True;t1_gj6p1lr;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6qn5y/;1610672250;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chinatownjon;;;[];;;;text;t2_2llv7rko;False;False;[];;I definitely enjoyed it's quirks and found it entertaining, like I can't really think of anything bad to say about it, but I just wasn't compelled to come back and watch more if that makes sense;False;False;;;;1610592079;;False;{};gj6qnbv;False;t3_kwtkex;False;True;t1_gj6lb8n;/r/anime/comments/kwtkex/i_wholeheartedly_recommend_shinryaku_ika_musume/gj6qnbv/;1610672252;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IcicleLin;;;[];;;;text;t2_867dltua;False;False;[];;If you check out who posted that thread it says iciclelin same as this post;False;False;;;;1610592089;;False;{};gj6qo0c;True;t3_kwwd8w;False;True;t1_gj6qeoj;/r/anime/comments/kwwd8w/romance_anime_where_characters_meet_from_a_game/gj6qo0c/;1610672264;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Huh, I don't think I've ever seen or heard of the series before, thanks for sharing!;False;False;;;;1610592127;;False;{};gj6qqia;True;t3_kwvq37;False;True;t1_gj6qn5y;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6qqia/;1610672305;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nick_BOI;;;[];;;;text;t2_x2i42xd;False;False;[];;I need to get to watching Talentless Nana already.;False;False;;;;1610592189;;False;{};gj6qupy;True;t3_kwts5k;False;False;t1_gj6lx15;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj6qupy/;1610672377;10;True;False;anime;t5_2qh22;;0;[]; -[];;;TheWrittenLore;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Traynjos000;light;text;t2_ouc2a;False;False;[];;Yes, it will all be at once. It is a complete netflix original.;False;False;;;;1610592191;;False;{};gj6qutk;False;t3_kwuoou;False;False;t1_gj6kard;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj6qutk/;1610672379;7;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;Gee, you're right. I can't believe I didn't notice.;False;False;;;;1610592281;;False;{};gj6r0xx;False;t3_kwwd8w;False;True;t1_gj6qo0c;/r/anime/comments/kwwd8w/romance_anime_where_characters_meet_from_a_game/gj6r0xx/;1610672486;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;I watched Dragon Ball Z when I was a kid and Fairy Tail was one of the first anime I was introduced to, so that's how I ended up watching those two. I've read the One Piece manga (way better than the anime) but the big three never really caught my interest either;False;False;;;;1610592305;;False;{};gj6r2k9;True;t3_kwvq37;False;True;t1_gj6pv43;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6r2k9/;1610672513;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dippy_bear;;;[];;;;text;t2_1xao82vs;False;False;[];;"My Top 3: - -1. **Deca-Dence**\-Best anime of the year imo. It was a blast from start to finish. Plus, it's been ages since a plot twist surprised me so much. -2. **Appare-Ranman!**\-What made this show was the characters. I also enjoyed the comedy. -3. **ID: Invaded**\-Interesting premise with likable leads and an amazing OST. - -Least Favorite/Biggest Disappointment: -**My Next Life As A Villianess**\-Katarina is now one of my favorite characters ever. However, despite my love of reverse harem/otome I couldn't love this show like I wanted because I honestly didn't like most of the harem.";False;False;;;;1610592338;;False;{};gj6r4t7;False;t3_kwts5k;False;False;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj6r4t7/;1610672550;17;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610592441;;False;{};gj6rbp5;False;t3_kwv61q;False;True;t3_kwv61q;/r/anime/comments/kwv61q/redò_of_a_healer_uncensored/gj6rbp5/;1610672670;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;"Toradora is a good one to begin with!:) - -Other suggestions: - -Love chunibyo and other delusions - -Oregairu - -Fruits baskets";False;False;;;;1610592548;;False;{};gj6rity;False;t3_kwvye1;False;False;t3_kwvye1;/r/anime/comments/kwvye1/what_show_should_i_watch_to_get_into_slice_of/gj6rity/;1610672790;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Step_in_step_out;;;[];;;;text;t2_bey79;False;False;[];;Is it straight jacket?;False;False;;;;1610592643;;False;{};gj6rpe0;False;t3_kwwa1q;False;True;t3_kwwa1q;/r/anime/comments/kwwa1q/cant_remember_the_name_of_a_movie/gj6rpe0/;1610672902;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi intromane! This post was removed because fanart is only allowed as a self (text) post. - -To read the full fanart rules on /r/anime, check [our rules page](https://www.reddit.com/r/anime/wiki/rules#wiki_fanart). - -[Fanart rules were changed recently and announced here.](https://www.reddit.com/r/anime/comments/hq4u9y/) - -[**Thank you!**](#blushubot) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610592648;moderator;False;{};gj6rppm;False;t3_kwwm8l;False;True;t3_kwwm8l;/r/anime/comments/kwwm8l/made_some_promare_charms_theyre_up_on_my_etsy/gj6rppm/;1610672908;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Quartandoff;;;[];;;;text;t2_62zr8;False;False;[];;[Strait Jacket](https://myanimelist.net/anime/3086/Strait_Jacket);False;False;;;;1610592653;;False;{};gj6rq2m;False;t3_kwwa1q;False;True;t3_kwwa1q;/r/anime/comments/kwwa1q/cant_remember_the_name_of_a_movie/gj6rq2m/;1610672914;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DrakeGryphon;;;[];;;;text;t2_8d0z836;False;False;[];;That's it, thank you;False;False;;;;1610592741;;False;{};gj6rw0g;True;t3_kwwa1q;False;True;t1_gj6rpe0;/r/anime/comments/kwwa1q/cant_remember_the_name_of_a_movie/gj6rw0g/;1610673016;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JangusKing69;;;[];;;;text;t2_969zjry0;False;False;[];;Thanks for the suggestions!;False;False;;;;1610592809;;False;{};gj6s0k5;True;t3_kwvye1;False;True;t1_gj6oyxi;/r/anime/comments/kwvye1/what_show_should_i_watch_to_get_into_slice_of/gj6s0k5/;1610673095;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;Sao possibly?;False;False;;;;1610592834;;False;{};gj6s290;False;t3_kwwd8w;False;True;t3_kwwd8w;/r/anime/comments/kwwd8w/romance_anime_where_characters_meet_from_a_game/gj6s290/;1610673125;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JangusKing69;;;[];;;;text;t2_969zjry0;False;False;[];;Thank you :);False;False;;;;1610592852;;False;{};gj6s3g9;True;t3_kwvye1;False;True;t1_gj6rity;/r/anime/comments/kwvye1/what_show_should_i_watch_to_get_into_slice_of/gj6s3g9/;1610673147;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;I second this so much!!!;False;False;;;;1610593017;;False;{};gj6seoi;False;t3_kwv0py;False;True;t1_gj6m58d;/r/anime/comments/kwv0py/i_need_suggestions_before_i_die/gj6seoi/;1610673347;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KendotsX;;;[];;;;text;t2_j6nbtko;False;False;[];;"1. Jujutsu Kaisen - -2. Osomatsu-san s3 - -3. Dorohedoro - -4. Akudama Drive - -5. Higurashi Gou - -I enjoyed a lot more shows of course, but these were my favourites.";False;False;;;;1610593153;;False;{};gj6snns;False;t3_kwts5k;False;False;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj6snns/;1610673502;11;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610593265;moderator;False;{};gj6sv6i;False;t3_kwwsq2;False;True;t3_kwwsq2;/r/anime/comments/kwwsq2/which_is_the_better_streaming_service_for_anime/gj6sv6i/;1610673629;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Depends on where you live and what you're trying to watch. - -Crunchyroll has a lot of stuff for free. Funimation has more dubs in general.";False;False;;;;1610593353;;False;{};gj6t0xg;False;t3_kwwsq2;False;False;t3_kwwsq2;/r/anime/comments/kwwsq2/which_is_the_better_streaming_service_for_anime/gj6t0xg/;1610673725;3;True;False;anime;t5_2qh22;;0;[]; -[];;;endusdecadus;;;[];;;;text;t2_2z9x99wr;False;False;[];;Probably crunchy roll they soon gonna be the same but for I would say crunchyroll due to the lack of censorship and dub jokez;False;False;;;;1610593368;;False;{};gj6t1w2;False;t3_kwwsq2;False;True;t3_kwwsq2;/r/anime/comments/kwwsq2/which_is_the_better_streaming_service_for_anime/gj6t1w2/;1610673742;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Turk1911;;;[];;;;text;t2_3c0y5cze;False;False;[];;Both are good depending if u want dub/sub. Can also get VRV which has chrunchyroll and hidive;False;False;;;;1610593386;;False;{};gj6t31c;False;t3_kwwsq2;False;True;t3_kwwsq2;/r/anime/comments/kwwsq2/which_is_the_better_streaming_service_for_anime/gj6t31c/;1610673762;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"If you're in the United States, look into VRV. VRV is a combo service that combines the anime libraries of Crunchyroll and HiDive in one place, for a price much better than the two separately. There's absolutely no reason to get Crunchyroll (or HiDive) separately if VRV is available. - -If VRV isn't available to you, then the answer is ""Funimation if you prefer dubbed anime and Crunchyroll if you prefer subbed anime"". Getting Funimation *alongside* VRV for maximum anime coverage is also an option if you have the money for it.";False;False;;;;1610593545;;False;{};gj6tdh5;False;t3_kwwsq2;False;False;t3_kwwsq2;/r/anime/comments/kwwsq2/which_is_the_better_streaming_service_for_anime/gj6tdh5/;1610673941;5;True;False;anime;t5_2qh22;;0;[]; -[];;;xXxXx_Edgelord_xXxXx;;;[];;;;text;t2_5eqttswx;False;False;[];;"Why do they even adapt it when it was such a cluster fuck. - -And why does the trailer literally spoil everything? The most interesting point of the manga was the ""what the fuck is happening""-stage.";False;True;;comment score below threshold;;1610593592;;1610595655.0;{};gj6tglm;False;t3_kwuoou;False;True;t3_kwuoou;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj6tglm/;1610673996;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;"My top 3: -1. Kare Kano -2. Gamers! -3. Chobits - -Check out Kare Kano if you want something kinda like a more serious take on Kaguya-sama";False;False;;;;1610593638;;False;{};gj6tjkm;False;t3_kwwup5;False;True;t3_kwwup5;/r/anime/comments/kwwup5/good_rom_com_anime/gj6tjkm/;1610674043;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DaFoopyHobo;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/LordChungle;light;text;t2_zfseb;False;False;[];;I would say Bunny Girl Senpai or Kaguya-Sama: Love is War;False;False;;;;1610593712;;False;{};gj6tod8;False;t3_kwvye1;False;True;t3_kwvye1;/r/anime/comments/kwvye1/what_show_should_i_watch_to_get_into_slice_of/gj6tod8/;1610674126;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"> due to the lack of censorship - -Baseless fearmongering. Funimation doesn't censor anything that isn't already censored in the original Japanese broadcast, and they carry plenty of fully uncensored ecchi anime (like High School DxD, Senran Kagura, and Valkyrie Drive) because they go back and add the fully uncensored versions once the Blu-Rays release. - -> and dub jokez - -That's entirely subjective. I think most of Funimation's dubs handle joke localization really well, and I can recommend several of their comedy anime like D-Frag, Endro, Nichijou, and Zombie Land Saga that are absolutely hilarious.";False;False;;;;1610593904;;False;{};gj6u0r7;False;t3_kwwsq2;False;False;t1_gj6t1w2;/r/anime/comments/kwwsq2/which_is_the_better_streaming_service_for_anime/gj6u0r7/;1610674336;4;True;False;anime;t5_2qh22;;0;[]; -[];;;weebu4laifu;;;[];;;;text;t2_7nij0alj;False;True;[];;Just read the manga;False;False;;;;1610593913;;False;{};gj6u1b8;False;t3_kwwakl;False;False;t3_kwwakl;/r/anime/comments/kwwakl/redo_of_healer_censored_vs_uncensored/gj6u1b8/;1610674344;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610593921;;False;{};gj6u1t6;False;t3_kwuoou;False;True;t3_kwuoou;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj6u1t6/;1610674353;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Benthekarateboy;;;[];;;;text;t2_1thpf4i2;False;False;[];;Maybe. Still, makes me wonder if I should even posts these then. I tried googling and all, but sometimes they won’t answer it, or there isn’t that type of question being asked, so I figured, might as well ask myself;False;False;;;;1610593968;;False;{};gj6u4ut;True;t3_kwsq0g;False;True;t1_gj6orwt;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj6u4ut/;1610674404;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"That is was for kids and perverts. - -The jury is still out on that one...";False;False;;;;1610593989;;False;{};gj6u67x;False;t3_kwwz6c;False;False;t3_kwwz6c;/r/anime/comments/kwwz6c/what_did_you_think_of_anime_before_you_starting/gj6u67x/;1610674429;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Benthekarateboy;;;[];;;;text;t2_1thpf4i2;False;False;[];;I am not too sure. My brain was able to accustom to it, to where I actually like it;False;False;;;;1610594015;;False;{};gj6u7wk;True;t3_kwsq0g;False;True;t1_gj6p4ym;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj6u7wk/;1610674457;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Draxen342;;;[];;;;text;t2_3frb903i;False;False;[];;I started watching anime when i was really young, so to me it just seemed like a regular cartoon, but Japanese;False;False;;;;1610594034;;False;{};gj6u965;False;t3_kwwz6c;False;False;t3_kwwz6c;/r/anime/comments/kwwz6c/what_did_you_think_of_anime_before_you_starting/gj6u965/;1610674479;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Johnny__69;;;[];;;;text;t2_8ov3g4v5;False;False;[];;Thought of em like they were just normal cartoons cuz I was like 8 at the time lmaoo;False;False;;;;1610594069;;False;{};gj6ubf7;False;t3_kwwz6c;False;False;t3_kwwz6c;/r/anime/comments/kwwz6c/what_did_you_think_of_anime_before_you_starting/gj6ubf7/;1610674517;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;False;[];;"I think Sandtalon listed most of the big contemporary ""concert band"" pieces, but since their post sent me back down this rabbit hole for the first time in years I'll go ahead and post a few of my favorite pieces that I remember as well (or have played when I was in concert band). - -- [October](https://www.youtube.com/watch?v=7j9zmHPTUvw) -- I'll just go ahead and post the entirety of [The Planets](https://www.youtube.com/watch?v=Isic2Z2e2xs) which is an 8 movement suite featuring all the planets. Mars and Jupiter are the ones everyone loves (rightfully so imo) so if you don't listen to all of it definitely check out those two. -- [Aurora Awakes](https://www.youtube.com/watch?v=TL9D7HfGWCo) (I remember being a big fan of John Mackey's stuff in general when I was in band but this was always one of my favorite pieces in general, and listening to it again it's still absolutely gorgeous and evocative)";False;False;;;;1610594119;;False;{};gj6uemv;False;t3_kwtyon;False;True;t3_kwtyon;/r/anime/comments/kwtyon/music_similar_to_liz_and_the_blue_bird/gj6uemv/;1610674571;2;True;False;anime;t5_2qh22;;0;[]; -[];;;r0ykun;;;[];;;;text;t2_167c9p;False;False;[];;"I’ll try to keep it to one sentence max since this is the most seasonal anime I’ve watched in a long time: - -Favorites: - -1) Fruits Basket S2 - A dream come true <3 amazing adaption of one of my favorite stories. - -2) Re:Zero S2 P1: ECHIDNA!! - -3) Tonikawa - I didn’t expect to enjoy this as much as I did. - -4) Kaguya-sama S2 - An awesome sequel, took what I liked about season S1 and made it even better. - -5) Dorehedoro - The best Netflix original so far!! Really want to read the manga now. - -Runner ups - -1) Great Pretender - Wow, I want more :( - -2) Sing Yesterday for Me - same as above. Kinda just... ended. If the story kept going, probably would’ve been in my top 5. - -3) Higurashi Gou - HUGE fan of the original. This new entity does things I like a little better here, but doesn’t do some things as well as the original (ex: atmosphere). I really am enjoying it, and it isn’t top 5 cause I have no idea where the second half will take us yet! - -Least favorites: - -1) Kamisama ni Natta Hi - biggest disappointment I’ve seen in a while. Probably the second worst Key anime behind Rewrite. - -2) Darwin’s Game - I LOVE campy stuff like this, but it was kinda boring. - -3) Madoka Magica Side Story - wasn’t as invested in these new characters.";False;False;;;;1610594148;;False;{};gj6ugks;False;t3_kwts5k;False;False;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj6ugks/;1610674605;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok_Surround3881;;;[];;;;text;t2_9t7vld3w;False;False;[];;"> and a 1 min scene - -Oh, so is that why there were no subs for a couple of lines?";False;False;;;;1610594168;;False;{};gj6uhvq;False;t3_kwwakl;False;False;t1_gj6qeo6;/r/anime/comments/kwwakl/redo_of_healer_censored_vs_uncensored/gj6uhvq/;1610674627;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610594246;moderator;False;{};gj6un3c;False;t3_kwx37b;False;True;t3_kwx37b;/r/anime/comments/kwx37b/josse_the_tiger_and_the_fish/gj6un3c/;1610674720;1;False;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;"[Text](url) - -[Like so.](https://www.reddit.com/r/anime/)";False;False;;;;1610594261;;False;{};gj6uo45;False;t3_kwx2b4;False;True;t3_kwx2b4;/r/anime/comments/kwx2b4/genuine_question_out_of_context_of_anime_because/gj6uo45/;1610674737;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Both in the new reddit and on the mobile there's a ""link"" icon that will help you with that - -On the mobile is above your keyboard, at least on the android version";False;False;;;;1610594267;;False;{};gj6uohm;False;t3_kwx2b4;False;True;t3_kwx2b4;/r/anime/comments/kwx2b4/genuine_question_out_of_context_of_anime_because/gj6uohm/;1610674742;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Johnny__69;;;[];;;;text;t2_8ov3g4v5;False;False;[];;"The pet girl of sakurosou - -White album and white album2 - -Masamune kuns revenge it ends bad tho - -My little monster";False;False;;;;1610594285;;False;{};gj6upqh;False;t3_kwwup5;False;True;t3_kwwup5;/r/anime/comments/kwwup5/good_rom_com_anime/gj6upqh/;1610674764;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;It's called a hyper link. I know you can do it on Google docs by highlighting whatever piece of text you want to hyperlink, then in the top bar of Google Docs there should be a little chain icon which is hyperlink. Click that and it should prompt you to past the website link. Then the highlighted text should turn blue and it will be linked. I assume it works the same on Word;False;False;;;;1610594304;;False;{};gj6ur0c;False;t3_kwx2b4;False;True;t3_kwx2b4;/r/anime/comments/kwx2b4/genuine_question_out_of_context_of_anime_because/gj6ur0c/;1610674785;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Darkace081;;;[];;;;text;t2_2s11jnti;False;False;[];;Yea but the anything goes version isn’t on the piracy sites;False;False;;;;1610594318;;False;{};gj6uruy;True;t3_kwv61q;False;True;t1_gj6kj34;/r/anime/comments/kwv61q/redò_of_a_healer_uncensored/gj6uruy/;1610674799;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Darkace081;;;[];;;;text;t2_2s11jnti;False;False;[];;Ok buddy;False;False;;;;1610594329;;False;{};gj6usml;True;t3_kwv61q;False;True;t1_gj6rbp5;/r/anime/comments/kwv61q/redò_of_a_healer_uncensored/gj6usml/;1610674812;0;True;False;anime;t5_2qh22;;0;[]; -[];;;randyripoff;;;[];;;;text;t2_pg4m04;False;False;[];;Recovery of an MMO Junkie;False;False;;;;1610594365;;False;{};gj6uuyc;False;t3_kwwd8w;False;True;t3_kwwd8w;/r/anime/comments/kwwd8w/romance_anime_where_characters_meet_from_a_game/gj6uuyc/;1610674852;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Darkace081;;;[];;;;text;t2_2s11jnti;False;False;[];;Yea but where;False;False;;;;1610594366;;False;{};gj6uuzr;True;t3_kwv61q;False;True;t1_gj6ify0;/r/anime/comments/kwv61q/redò_of_a_healer_uncensored/gj6uuzr/;1610674852;0;True;False;anime;t5_2qh22;;0;[]; -[];;;emiyacross;;;[];;;;text;t2_n3cv3dx;False;False;[];;Made in Abyss.;False;False;;;;1610594368;;False;{};gj6uv49;False;t3_kwvq37;False;False;t3_kwvq37;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6uv49/;1610674854;1;True;False;anime;t5_2qh22;;0;[]; -[];;;4deicide25;;;[];;;;text;t2_irf0i7g;False;False;[];;"TRASH!!! -Jk, it's your list, if that's what you like, that's what you like.";False;False;;;;1610594469;;False;{};gj6v1ol;False;t3_kwx0pv;False;False;t3_kwx0pv;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj6v1ol/;1610674965;21;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;"1. Code Geass - mostly really boring but the great parts make it stand out more than most other shows -2. Attack on Titan - not a masterpiece, but one of the most exciting and intriguing shounen -3. Re: Zero - haven't seen yet -4. Naruto - haven't seen -5. Rent-A-Girlfriend - haven't seen -6. Parasyte - haven't seen -7. Oregairu - 1/10, one of the worst shows I've seen in my life -8. Death Note - this one also has a lot of boring parts, but not as often as Code Geass and is overall really good -9. Iron Blooded Orphans - haven't seen -10. Violet Evergarden - haven't seen yet - -> Rate it if you want lol - -There's no such thing as bad taste or objectively good/bad, but if I were to rate it based on my own taste then 6/10";False;True;;comment score below threshold;;1610594492;;False;{};gj6v338;False;t3_kwx0pv;False;True;t3_kwx0pv;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj6v338/;1610674989;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;"Same Top 2! I also have Re:Zero in my top 10. - -Mine goes something like this but some spots can go up or down some. - -1. Code Geass -2. Attack On Titan (will be 1 if it sticks the landing) -3. Steins;Gate -4. FMAB -5. Your Lie In April -6. JoJo's Bizarre Adventure -7. Mob Psycho 100 -8. Gurren Laggan -9. Re:Zero -10. HxH - -HM: Run With The Wind and Rakugo";False;False;;;;1610594495;;False;{};gj6v39k;False;t3_kwx0pv;False;True;t3_kwx0pv;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj6v39k/;1610674992;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Yeah, because they did a slide show for the censored version and animated the uncensored with more dialogue;False;False;;;;1610594555;;False;{};gj6v765;False;t3_kwwakl;False;False;t1_gj6uhvq;/r/anime/comments/kwwakl/redo_of_healer_censored_vs_uncensored/gj6v765/;1610675057;1;True;False;anime;t5_2qh22;;0;[]; -[];;;1darklight1;;;[];;;;text;t2_prrvn;False;False;[];;Its 12 episodes, so pretty much as short as anything can be. I did end up starting halfway through episode 3, so i can't say much about how the first 2.5 episodes are, but at least from where I started it was pretty good the whole time, not a lot of filler, which I guess is necessary for something that short. Would recommend actually starting at the beginning, though, even though I had people to ask questions about a few things it still took about an episode and a half for it all to make sense.;False;False;;;;1610594567;;False;{};gj6v7x4;False;t3_kwvq37;False;True;t1_gj6mjbp;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6v7x4/;1610675071;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"Make sure to watch the full first episode (at least)! - -By the end of it, you'll probably know whether you'll like the show or not.";False;False;;;;1610594592;;False;{};gj6v9iv;False;t3_kwts5k;False;False;t1_gj6qupy;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj6v9iv/;1610675099;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;You have to find the One Piece;False;False;;;;1610594631;;False;{};gj6vc35;False;t3_kwv61q;False;False;t1_gj6uuzr;/r/anime/comments/kwv61q/redò_of_a_healer_uncensored/gj6vc35/;1610675143;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SatouSmith;;;[];;;;text;t2_85ir9527;False;True;[];;Yes and No. Anime is just a medium;False;False;;;;1610594698;;False;{};gj6vgg2;False;t3_kwwz6c;False;True;t1_gj6u67x;/r/anime/comments/kwwz6c/what_did_you_think_of_anime_before_you_starting/gj6vgg2/;1610675220;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lakelandgodo;;;[];;;;text;t2_487lzfrh;False;False;[];;Didn't know it was not cartoons for like 5 year cuz the internet wasn't a massive thing yet;False;False;;;;1610594702;;False;{};gj6vgnq;False;t3_kwwz6c;False;False;t3_kwwz6c;/r/anime/comments/kwwz6c/what_did_you_think_of_anime_before_you_starting/gj6vgnq/;1610675223;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Eracer45;;;[];;;;text;t2_4yvfgqf7;False;False;[];;I was young and thought something along the lines of “wow, weird artstyle but this is pretty funny” my first anime was One Punch Man;False;False;;;;1610594733;;False;{};gj6vioc;False;t3_kwwz6c;False;True;t3_kwwz6c;/r/anime/comments/kwwz6c/what_did_you_think_of_anime_before_you_starting/gj6vioc/;1610675258;1;True;False;anime;t5_2qh22;;0;[]; -[];;;supagramm;;;[];;;;text;t2_7rfatdzr;False;False;[];;Ushio to Tora;False;False;;;;1610594954;;False;{};gj6vx3z;False;t3_kwv0py;False;True;t3_kwv0py;/r/anime/comments/kwv0py/i_need_suggestions_before_i_die/gj6vx3z/;1610675499;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;I thought it's more of a family friendly thing, so fan service surprised me;False;False;;;;1610595213;;False;{};gj6wdso;False;t3_kwwz6c;False;True;t3_kwwz6c;/r/anime/comments/kwwz6c/what_did_you_think_of_anime_before_you_starting/gj6wdso/;1610675785;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Zig;;;[];;;;text;t2_r3byl;False;False;[];;"Firstly, it’s not a samurai village, it’s the whole of Japan. It’s like an alternate timeline where instead of American ships invading and forcing the country out of isolationism, it’s an alien race. And similar with to foreign occupation stories, politics is a complex theme that’s explored in depth. - -Secondly, premise =! plot.";False;False;;;;1610595237;;False;{};gj6wfao;False;t3_kwug43;False;True;t1_gj6oqj2;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj6wfao/;1610675811;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shikigane;;;[];;;;text;t2_5kwxk73u;False;False;[];;I agree with 3 of your shows that should be in top 10: AoT, Death Note, Re:Zero, so 3/10. Sorry man.;False;False;;;;1610595307;;False;{};gj6wjr2;False;t3_kwx0pv;False;True;t3_kwx0pv;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj6wjr2/;1610675886;3;True;False;anime;t5_2qh22;;0;[]; -[];;;baquea;;;[];;;;text;t2_j3k0u;False;True;[];;Don't think I really knew anything about it.;False;False;;;;1610595315;;False;{};gj6wk91;False;t3_kwwz6c;False;True;t3_kwwz6c;/r/anime/comments/kwwz6c/what_did_you_think_of_anime_before_you_starting/gj6wk91/;1610675895;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;False;[];;"- Literally any of the big 3 -- Dragon Ball -- Death Note -- Attack on Titan -- Code Geass -- Sailor Moon -- Literally any Gundam -- Most of Miyazaki's filmography -- Yu Yu Hakusho -- Haikyuu";False;False;;;;1610595318;;False;{};gj6wkgo;False;t3_kwvq37;False;True;t3_kwvq37;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6wkgo/;1610675898;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Zig;;;[];;;;text;t2_r3byl;False;False;[];;"Guts is never going to get close to as strong as Griffith. - -This isn’t a shounen title.";False;False;;;;1610595404;;False;{};gj6wq2m;False;t3_kwsq0g;False;True;t1_gj67w0w;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj6wq2m/;1610675994;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kuramhan;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Kuramhan/;light;text;t2_esa7n;False;False;[];;"My top 25 from last year. I actually like all these shows. My total watched is closer to 50. My worst show is some boring light novel adaptation not worth talking about. - -1. Akudama Drive -2. Re:Zero 2 -3. Oregairu 3 -4. Haikyuu!! 4 -5. Adachi to Shimamura -6. Chihayafuru 3 -7. Kaguya-sama wa Kokuraseta 2 -8. Yesterday wo Utatte -9. ID: INVADED -10. Magia Record -11. Tower of God -12. Tonikawa -13. 100 Man -14. Senyoku no Sigrdrifa -15. Rental Girlfriend -16. Deca Dence -17. Munou na Nana -18. Eizouken ni wa Te wo Dasu na! -19. Haikyu!! Land VS Air -20. Fruits Basket 2 -21. Nami yo Kiitekure -22. Blade of the Immortal -23. Kakushigoto -24. 22/7 -25. Kuma Kuma Bear - -Akudama Drive is the real standout for me. It's been quite a few years since an anime original has delivered on its premise that completely. Such a fantastic finale. My favorite anime original since Concrete Revolutio aired in 2016. - -ID Invaded, Magia Record, and Sigrdrifta were the other standout original shows. ID Invaded was the most impressive and would have been a worthy candidate for best animated original if Akudama hadn't come along. Magia Record was really good, but left us on a cliffhanger with season 2 potentially not even in production yet. Sigrdrifta had a super impressive start, but I ended up digging the second half a bit less. Still had a solid ending though, so all in all good shows. - -Adachi to Shinamura and Yesterday wo Utatte offered some excellent adaptations of stellar manga. Really hoping for another season of Adachi or else things will feel a little unresolved. Yesterday was complete, but with an unfortunately rushed ending. Both ended up as great romances. - -Kaguya Sama and Chihayafuru both offered the rare sequel which surpasses the original season. Looking forward to more seasons of both of them. - -100 man surprised with much chemistry the cast ended up having. It didn't strike me as though it would be a particular worthwhile isekai, but the cast and comedy really carry the show while it gradually expands on its worldbuilding.";False;False;;;;1610595561;;False;{};gj6x01a;False;t3_kwts5k;False;False;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj6x01a/;1610676177;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;"Code geass- The first season was good, the second season was below average overall but the ending was good. I can see why you love it - -Attack on Titan- good but I still don’t see it as masterpiece. But I can understand why you loved it - -Rezero- Decent show , personally I don’t see it as a masterpiece but if you loved it good for you - -Naurto- the first 4 major arcs were great after that it slowly went downhill and became a train wreck. But I can see why you loved it - -Rent a girlfriend- personally I despise this show. If you liked it more power to you - -Parasyte- I actually I like this show a lot while not my personal top ten it’s definitely in my top 35 - -Oregairu- haven’t seen - -Death note- I loved this show, while not in my personal top ten it’s totally in my top 35 - -Iron blooded orphans- Haven’t seen it yet - -Violet Evergarden- I haven’t seen it - -So I would give your list a 5/10 but that’s my opinion on your opinions.";False;False;;;;1610595746;;False;{};gj6xbwd;False;t3_kwx0pv;False;True;t3_kwx0pv;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj6xbwd/;1610676407;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Unkown_User;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MHDA;light;text;t2_lh8u7ww;False;False;[];;ReLife, tonikawa (amazing), toradora. There’s some more I know but there’s not as much romance, mostly drama or comedy based;False;False;;;;1610595769;;False;{};gj6xdfg;False;t3_kwwup5;False;True;t3_kwwup5;/r/anime/comments/kwwup5/good_rom_com_anime/gj6xdfg/;1610676438;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;"Iron blooded Orphans is such a wonderful show. It's just outside my top 10. The ending Orphans no Namida is in my top 10 ending songs though. I agree with Attack on Titan as well! - -It's so awesome how different people have such different top 10s";False;False;;;;1610595969;;False;{};gj6xq35;False;t3_kwx0pv;False;True;t3_kwx0pv;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj6xq35/;1610676657;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silverfox0006;;;[];;;;text;t2_5m4pnyd3;False;False;[];;I expect this to be taken down. so we will see.;False;False;;;;1610596394;;False;{};gj6ygwc;True;t3_kwxopf;False;True;t3_kwxopf;/r/anime/comments/kwxopf/acid_chunibyo_other_delusions_there_was_nowhere/gj6ygwc/;1610677127;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610596481;;False;{};gj6ymbb;False;t3_kwug43;False;True;t1_gj6wfao;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj6ymbb/;1610677224;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;sonic isn't an anime but at least in America, Sonic. if for nothing else it's had more aggressive marketing;False;False;;;;1610596639;;False;{};gj6ywiu;False;t3_kwxq61;False;True;t3_kwxq61;/r/anime/comments/kwxq61/what_do_you_think_is_more_well_known_and_why/gj6ywiu/;1610677403;5;True;False;anime;t5_2qh22;;0;[]; -[];;;xero_art;;;[];;;;text;t2_9xpvu;False;False;[];;Code Geass is also my number one so that's all that matters. Haven't really seen most of your list unfortunately.;False;False;;;;1610596642;;False;{};gj6ywpy;False;t3_kwx0pv;False;False;t3_kwx0pv;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj6ywpy/;1610677408;4;True;False;anime;t5_2qh22;;0;[]; -[];;;xero_art;;;[];;;;text;t2_9xpvu;False;False;[];;Code Geass has the best ending of any anime really.;False;False;;;;1610596682;;False;{};gj6yzah;False;t3_kwx0pv;False;False;t1_gj6xbwd;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj6yzah/;1610677455;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Yotsuba_alt;;;[];;;;text;t2_4890isp8;False;False;[];;All of this means jack shit to me as someone who hasn’t read the manga. Literally nothing seems like a spoiler to me, in fact the only thing that seems spoilery is you saying these are spoilers...so thanks 😑;False;False;;;;1610596738;;False;{};gj6z2qy;False;t3_kwuoou;False;False;t1_gj6tglm;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj6z2qy/;1610677516;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Job_sucks_hard_help;;;[];;;;text;t2_7agtofv4;False;False;[];;I liked rent a girlfriend but no way is it gonna be in the top 5 of all the anime I watched haha. I'd put 6-10 higher than that show for sure.;False;False;;;;1610596744;;False;{};gj6z33b;False;t3_kwx0pv;False;False;t3_kwx0pv;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj6z33b/;1610677522;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;" -> Code Geass has the best ending of any anime really - - -I don’t really agree with that statement but it was a damn good finale";False;False;;;;1610596812;;False;{};gj6z7ei;False;t3_kwx0pv;False;True;t1_gj6yzah;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj6z7ei/;1610677597;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sharkbait735;;;[];;;;text;t2_9fak24y4;False;False;[];;Toradora was pretty great. Love, chinbyo, and other delusions was pretty good too.;False;False;;;;1610596863;;False;{};gj6zapd;False;t3_kwwup5;False;True;t3_kwwup5;/r/anime/comments/kwwup5/good_rom_com_anime/gj6zapd/;1610677652;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WhatAreRoads;;;[];;;;text;t2_7bf5t1gl;False;False;[];;They’re all just conveniently that age lol;False;False;;;;1610596864;;False;{};gj6zas3;False;t3_kwvq37;False;True;t1_gj6nbb2;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj6zas3/;1610677653;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZacNotEfron;;;[];;;;text;t2_9lx10439;False;False;[];;I’d say promare bit explain to your friend how over the top anime can be than go to the simple ghibli movies or anime movies from your favorite series. They love action if they’re new haha;False;False;;;;1610596888;;False;{};gj6zc76;False;t3_kwxtcr;False;False;t3_kwxtcr;/r/anime/comments/kwxtcr/anime_movie_to_watch_newcomer/gj6zc76/;1610677677;4;True;False;anime;t5_2qh22;;0;[]; -[];;;xero_art;;;[];;;;text;t2_9xpvu;False;False;[];;I should say I think this because I accept the ending. Like with FMA brotherhood which I think is one of the best endings, I still have so many questions.;False;False;;;;1610597017;;False;{};gj6zkaw;False;t3_kwx0pv;False;True;t1_gj6z7ei;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj6zkaw/;1610677813;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_shrinkingviolet_;;;[];;;;text;t2_85y4c9bp;False;False;[];;"What do you agree with then? -You don't see AOT as good, Naruto as good, now you say code geass doesn't have the best ending. Just wtf?";False;False;;;;1610597028;;False;{};gj6zkwn;False;t3_kwx0pv;False;False;t1_gj6z7ei;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj6zkwn/;1610677824;4;True;False;anime;t5_2qh22;;0;[]; -[];;;wow-very-cool;;;[];;;;text;t2_2hkzaokh;False;False;[];;"Here are some movies I really enjoyed: - -Ninja Scroll, -Vampire Hunter D, -Tokyo Godfathers";False;False;;;;1610597042;;False;{};gj6zltd;False;t3_kwxtcr;False;True;t3_kwxtcr;/r/anime/comments/kwxtcr/anime_movie_to_watch_newcomer/gj6zltd/;1610677840;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WhyNoClosure;;;[];;;;text;t2_449be22a;False;False;[];;I just watched my first anime movie tonight and it was Tenki No Ko. Absolutely loved it. Might be a good one for someone to start with but don't take my word for it :s;False;False;;;;1610597043;;False;{};gj6zlwb;False;t3_kwxtcr;False;True;t3_kwxtcr;/r/anime/comments/kwxtcr/anime_movie_to_watch_newcomer/gj6zlwb/;1610677842;3;True;False;anime;t5_2qh22;;0;[]; -[];;;_Zig;;;[];;;;text;t2_r3byl;False;False;[];;Lmao I never said the premise was deep;False;False;;;;1610597056;;False;{};gj6zmpw;False;t3_kwug43;False;True;t1_gj6ymbb;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj6zmpw/;1610677856;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610597067;;False;{};gj6zndr;False;t3_kwuoou;False;True;t1_gj6z2qy;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj6zndr/;1610677867;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Eam1221;;;[];;;;text;t2_9hb61qvv;False;False;[];;Depends what they like if they like action head I’d recommend Akira, ghost in a shell or the cowboy bebop movie but if they like dramas I’d do your name, weathering with you, and many.;False;False;;;;1610597131;;False;{};gj6zr5f;False;t3_kwxtcr;False;True;t3_kwxtcr;/r/anime/comments/kwxtcr/anime_movie_to_watch_newcomer/gj6zr5f/;1610677930;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;"- A Silent Voice -- Hotarubi no Mori e -- Wolf Children -- Tokyo Godfathers -- Redline -- Promare -- Kimi no Na wa -- Akira -- Paprika -- Perfect Blue -- Grave of the Fireflies -- Howl’s Moving Castle -- Ghost in the Shell -- Maquia -- the Garden of sinners series";False;False;;;;1610597131;;1610597349.0;{};gj6zr6i;False;t3_kwxtcr;False;False;t3_kwxtcr;/r/anime/comments/kwxtcr/anime_movie_to_watch_newcomer/gj6zr6i/;1610677930;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;Yea this is the anime i enjoy that most ppl dislike lol. I can definitely see why ppl dislike it, i just think having such a pathetic mc is kinda refreshing in an anime, and it's what makes it funny. Chizuru and Kazuya's characters were also pretty well written imo as they're like the exact opposite.;False;False;;;;1610597185;;False;{};gj6zuhm;False;t3_kwx0pv;False;True;t1_gj6z33b;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj6zuhm/;1610677988;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610597232;;False;{};gj6zxdt;False;t3_kwug43;False;True;t1_gj6ymbb;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj6zxdt/;1610678038;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610597247;;False;{};gj6zybu;False;t3_kwuoou;False;True;t1_gj6zndr;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj6zybu/;1610678055;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610597250;;False;{};gj6zyh5;False;t3_kwuoou;False;True;t1_gj6zndr;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj6zyh5/;1610678057;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mockingbirdguy;;;[];;;;text;t2_6096n672;False;False;[];;Good take. I'll ask if he wants something action or drama. Ty;False;False;;;;1610597272;;False;{};gj6zzwl;True;t3_kwxtcr;False;False;t1_gj6zr5f;/r/anime/comments/kwxtcr/anime_movie_to_watch_newcomer/gj6zzwl/;1610678084;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mexicanime86;;;[];;;;text;t2_1pgqwyi1;False;False;[];;"Your name, princess mononoke, and the 2 Gurren Lagann movies. These are good gateway movies. - -If you want to really get into the deep end, then yes Promare, Akira, and the 2 original Ghost in the shell movies are others to consider.";False;False;;;;1610597274;;False;{};gj7001v;False;t3_kwxtcr;False;True;t3_kwxtcr;/r/anime/comments/kwxtcr/anime_movie_to_watch_newcomer/gj7001v/;1610678086;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;All hail Lelouch 😤 He's by far the main reason i like the show tbh;False;False;;;;1610597289;;False;{};gj700xu;False;t3_kwx0pv;False;True;t1_gj6ywpy;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj700xu/;1610678102;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Btw_kek;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SouvlakiSpace7;light;text;t2_i0pj6;False;False;[];;listen to [Percy Grainger's In A Nutshell Suite](https://www.youtube.com/watch?v=nZxMHMx4X1o) *especially* [movement 3](https://youtu.be/nZxMHMx4X1o?t=361) which is absolutely bonkers in the same dreamy way that the main movement in the film is;False;False;;;;1610597369;;False;{};gj705xe;False;t3_kwtyon;False;True;t3_kwtyon;/r/anime/comments/kwtyon/music_similar_to_liz_and_the_blue_bird/gj705xe/;1610678191;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"Ngl, I also got some serious nostalgia looking for some of these. 11th and 12th grade high school All County memories... - -I was going to say that I've played some of these more recently...but then I realized the most recent time I've been in a concert band was in the spring of 2018. I was playing in my university's orchestra in 2019, though, and started 2020...but then COVID happened. - -> I'm pretty sure my school played almost all of them at some point during my time there - -That's impressive. Some of these I haven't played, some only in university or All County. - -> Also, Incantation and Dance is listed there twice - -Whoops! Fixed that.";False;False;;;;1610597371;;False;{};gj7061f;False;t3_kwtyon;False;True;t1_gj6mfz5;/r/anime/comments/kwtyon/music_similar_to_liz_and_the_blue_bird/gj7061f/;1610678193;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_shrinkingviolet_;;;[];;;;text;t2_85y4c9bp;False;False;[];;"*Code Geass - mostly really boring, Attack on Titan - not a masterpiece,Oregairu -1/10*??? - - Re: Zero - haven't seen yet -Naruto - haven't seen -Rent-A-Girlfriend - haven't seen -Parasyte - haven't seen -Violet Evergarden - haven't seen yet - -You don't even have the right to vote, dude!";False;False;;;;1610597380;;False;{};gj706lo;False;t3_kwx0pv;False;True;t1_gj6v338;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj706lo/;1610678203;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mockingbirdguy;;;[];;;;text;t2_6096n672;False;False;[];;Just checked out the trailer. Looks really good. Gives me that Kill la Kill over the top vibe. Thanks going to def recommend this one;False;False;;;;1610597405;;False;{};gj7083c;True;t3_kwxtcr;False;True;t1_gj6zc76;/r/anime/comments/kwxtcr/anime_movie_to_watch_newcomer/gj7083c/;1610678230;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;Sonic. Not for the anime, but for the video games. Anyone who has played Smash or a similar Nintendo game knows Sonic.;False;False;;;;1610597546;;False;{};gj70gs9;False;t3_kwxq61;False;True;t3_kwxq61;/r/anime/comments/kwxq61/what_do_you_think_is_more_well_known_and_why/gj70gs9/;1610678400;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;"It’s calling have an opinion and I think you misunderstood what I said - -> You don’t see AOT as good, Naurto as good, code geass doesn’t have the best ending. - -- I never said AOT was bad I think it’s a good show I just see don’t it as perfect masterpiece - -- I said Naurto started off a great series (well specifically I’m talking about the main story not the fillers) and SLOWLY went downhill in terms writing quality. What that means is that I felt show was most a solid series until later arcs - -- Code Geass had a good ending I just don’t it’s best ending to an anime I’ve seen in my life. It’s my honest personal opinion it just didn’t hit me as hard some other finales from some other shows";False;False;;;;1610597645;;1610598841.0;{};gj70mwe;False;t3_kwx0pv;False;True;t1_gj6zkwn;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj70mwe/;1610678514;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;Ok that quite mature way to look at. And for the ending Code Geass itself it’s a good ending just not the one blew me away which is how you toward FMAB clearly;False;False;;;;1610597753;;False;{};gj70tmp;False;t3_kwx0pv;False;True;t1_gj6zkaw;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj70tmp/;1610678649;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZacNotEfron;;;[];;;;text;t2_9lx10439;False;False;[];;"Yeah man! As someone who is the only who who is a hardcore anime fan out of real life friends, explain how overtop action supplements the surprisingly deep storytelling! Most non-anime people just like cool visual with story second. I thin promare is a perfect modern marriage of the two. The action is superb, the story is ok but the action will at least hook them for future anime -Viewing! Trust me, I’ve mastered it at this point ha";False;False;;;;1610597790;;False;{};gj70vwo;False;t3_kwxtcr;False;True;t1_gj7083c;/r/anime/comments/kwxtcr/anime_movie_to_watch_newcomer/gj70vwo/;1610678705;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mockingbirdguy;;;[];;;;text;t2_6096n672;False;False;[];;Love the list. Going to check out the trailers and narrow if down to about 5, thanks;False;False;;;;1610597942;;False;{};gj7152q;True;t3_kwxtcr;False;True;t1_gj6zr6i;/r/anime/comments/kwxtcr/anime_movie_to_watch_newcomer/gj7152q/;1610678880;3;True;False;anime;t5_2qh22;;0;[]; -[];;;_shrinkingviolet_;;;[];;;;text;t2_85y4c9bp;False;False;[];;What are the animes that you like then?;False;False;;;;1610598063;;False;{};gj71cj8;False;t3_kwx0pv;False;True;t1_gj70mwe;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj71cj8/;1610679026;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Legendaryskitlz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Legendaryskitlz;light;text;t2_447xje46;False;False;[];;"Some super popular anime I haven't seen yet are: Bleach, Haikyuu, One Piece, Dragon Ball, Naruto, One Punch Man, Hunter x Hunter, and Gintama. Mostly because they are all either long anime or I just don't want to watch them with commercials like One Punch Man s2. Other than those I would say I have seen just about a majority of the popular well known anime out there at the moment. - - -Here's my mal so if I'm missing any super popular anime that I didn't mention please let me know! -[https://myanimelist.net/profile/Legendaryskitlz](https://myanimelist.net/profile/Legendaryskitlz)";False;False;;;;1610598082;;False;{};gj71doh;False;t3_kwvq37;False;True;t3_kwvq37;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj71doh/;1610679047;1;True;False;anime;t5_2qh22;;0;[]; -[];;;endusdecadus;;;[];;;;text;t2_2z9x99wr;False;False;[];; also take two seconds to look up the censorship I'm not baseless fear mongering. Plus he asked for my opinion so I stated mine for dub jokes if op doesn't mind them then he can enjoy them its subjective like an opinion which op asked for.;False;False;;;;1610598231;;False;{};gj71mum;False;t3_kwwsq2;False;True;t1_gj6u0r7;/r/anime/comments/kwwsq2/which_is_the_better_streaming_service_for_anime/gj71mum/;1610679218;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mockingbirdguy;;;[];;;;text;t2_6096n672;False;False;[];;You're helping me alot. When someone comes and ask what anime to watch, it feels like a such a huge responsibility. Failure means the lost of a new anime fan and a friend to talk about anime with. Big stakes;False;False;;;;1610598297;;False;{};gj71qui;True;t3_kwxtcr;False;True;t1_gj70vwo;/r/anime/comments/kwxtcr/anime_movie_to_watch_newcomer/gj71qui/;1610679289;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610598329;moderator;False;{};gj71srb;False;t3_kwy9fy;False;True;t3_kwy9fy;/r/anime/comments/kwy9fy/i_saw_this_image_on_discord_and_i_just_wanted_to/gj71srb/;1610679325;1;False;False;anime;t5_2qh22;;0;[]; -[];;;CombatPunk88;;;[];;;;text;t2_832eyjgl;False;False;[];;Wow. Its not bad but definitely not good. You can pm me for my discord tag and we can have a constructive chat;False;False;;;;1610598333;;False;{};gj71t0s;False;t3_kwy61u;False;True;t3_kwy61u;/r/anime/comments/kwy61u/writing_a_manga_need_feedback/gj71t0s/;1610679332;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;"Well you can always look at [My anime list](https://myanimelist.net/profile/Jacktwelve17) for that. But I’ll just list a few of my personal all time favorite shows: - -Cowboy bebop - -Kaiji - -Hunter x hunter (2011) - -Legend of the galactic heroes (1988) - -Vinland Saga - -Yu yu Hakusho - -Neon genesis Evangelion - -Kill la kill - -Serial experiments lain - -Welcome To The Nhk";False;False;;;;1610598388;;False;{};gj71wex;False;t3_kwx0pv;False;True;t1_gj71cj8;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj71wex/;1610679399;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Public_Elderberry;;;[];;;;text;t2_5vzmbv8e;False;False;[];;Ok cool thanks;False;False;;;;1610598396;;False;{};gj71wvr;True;t3_kwy61u;False;True;t1_gj71t0s;/r/anime/comments/kwy61u/writing_a_manga_need_feedback/gj71wvr/;1610679406;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Shimoneta;False;False;;;;1610598407;;False;{};gj71xlg;False;t3_kwy9fy;False;True;t3_kwy9fy;/r/anime/comments/kwy9fy/i_saw_this_image_on_discord_and_i_just_wanted_to/gj71xlg/;1610679418;2;True;False;anime;t5_2qh22;;0;[]; -[];;;antfucker99;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Will reccomend Grimgar;dark;text;t2_qxnhhfy;False;False;[];;"Shimoneta - -Edit: obligatory watch Grimgar";False;False;;;;1610598412;;False;{};gj71xvs;False;t3_kwy9fy;False;True;t3_kwy9fy;/r/anime/comments/kwy9fy/i_saw_this_image_on_discord_and_i_just_wanted_to/gj71xvs/;1610679422;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610598472;moderator;False;{};gj721gs;False;t3_kwyaui;False;True;t3_kwyaui;/r/anime/comments/kwyaui/i_cant_remember_an_old_tv_chanmel/gj721gs/;1610679489;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Maur2;;;[];;;;text;t2_spp5k;False;False;[];;"Sounds like Toonami? Or the Fox Box? - -Don't know if Canada has those...";False;False;;;;1610598584;;False;{};gj72880;False;t3_kwyaui;False;False;t3_kwyaui;/r/anime/comments/kwyaui/i_cant_remember_an_old_tv_chanmel/gj72880/;1610679610;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sharkbait735;;;[];;;;text;t2_9fak24y4;False;False;[];;A silent voice is pretty good;False;False;;;;1610598605;;False;{};gj729i5;False;t3_kwxtcr;False;True;t3_kwxtcr;/r/anime/comments/kwxtcr/anime_movie_to_watch_newcomer/gj729i5/;1610679633;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610598621;;False;{};gj72ag3;False;t3_kwxwla;False;True;t3_kwxwla;/r/anime/comments/kwxwla/i_want_too_eat_your_pancreas/gj72ag3/;1610679650;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wise_Understanding27;;;[];;;;text;t2_90aslt5y;False;False;[];;I can agree, thank you for answering.;False;False;;;;1610598700;;False;{};gj72f3z;True;t3_kwxq61;False;True;t1_gj70gs9;/r/anime/comments/kwxq61/what_do_you_think_is_more_well_known_and_why/gj72f3z/;1610679739;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wise_Understanding27;;;[];;;;text;t2_90aslt5y;False;False;[];;I can agree, thank you for answering.;False;False;;;;1610598713;;False;{};gj72fvr;True;t3_kwxq61;False;True;t1_gj6ywiu;/r/anime/comments/kwxq61/what_do_you_think_is_more_well_known_and_why/gj72fvr/;1610679752;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lute142000;;;[];;;;text;t2_53kdcq0t;False;False;[];;They all fit for corona, safer with 9n high ass building with mask and min people;False;False;;;;1610598744;;False;{};gj72hp5;False;t3_kwuoou;False;False;t3_kwuoou;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj72hp5/;1610679783;7;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610598757;moderator;False;{};gj72ihd;False;t3_kwydnp;False;True;t3_kwydnp;/r/anime/comments/kwydnp/help_finding_anime_huge_wall_painted_like_the_sky/gj72ihd/;1610679798;1;False;False;anime;t5_2qh22;;0;[]; -[];;;uspnuts;;;[];;;;text;t2_3xc0j59i;False;False;[];;me too i wanna know;False;False;;;;1610598758;;False;{};gj72ikb;False;t3_kwyden;False;True;t3_kwyden;/r/anime/comments/kwyden/is_noblesse_a_good_anime/gj72ikb/;1610679799;0;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;"For the ones that I haven't seen? maybe. I do plan on watching Re: Zero and Violet Evergarden, so my opinion might change after watching those. -And even though I said bad things about Code Geass and Attack on Titan, I still think both of them are really good. - -but Oregairu sucks 1/10 would not recommend";False;False;;;;1610598768;;False;{};gj72j5w;False;t3_kwx0pv;False;False;t1_gj706lo;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj72j5w/;1610679810;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SnooBunnies4763;;;[];;;;text;t2_7pw3cig6;False;False;[];;I'm new to world trigger but I must say It definitely caught my interest especially that sci-fi isn't something that I'm usually interested in. I tried to catch up with the manga and the anime at the moment 😅. Plus, I don't mind the animation in season 1. I think I'm used to watch old animes plus I've seen far more worst animation in my whole life ngl so it didn't really bother me.;False;False;;;;1610598772;;False;{};gj72jdr;False;t3_kwv4ee;False;True;t3_kwv4ee;/r/anime/comments/kwv4ee/world_trigger_season_2/gj72jdr/;1610679814;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lute142000;;;[];;;;text;t2_53kdcq0t;False;False;[];;Survival on high building, with peole with mask as the killer;False;False;;;;1610598794;;False;{};gj72ko9;False;t3_kwuoou;False;False;t1_gj6i5kc;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj72ko9/;1610679836;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;watch one outs;False;False;;;;1610598805;;False;{};gj72lb3;False;t3_kwyden;False;False;t3_kwyden;/r/anime/comments/kwyden/is_noblesse_a_good_anime/gj72lb3/;1610679849;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;sure thing, have a good night 🙂;False;False;;;;1610598831;;False;{};gj72mwv;False;t3_kwxq61;False;True;t1_gj72fvr;/r/anime/comments/kwxq61/what_do_you_think_is_more_well_known_and_why/gj72mwv/;1610679877;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;"Vampire Hunter D, Perfect Blue, Shoujo Tsubaki, Redline, Ninja Scroll, & Grave of The Fireflies";False;False;;;;1610598852;;False;{};gj72o59;False;t3_kwxtcr;False;True;t3_kwxtcr;/r/anime/comments/kwxtcr/anime_movie_to_watch_newcomer/gj72o59/;1610679899;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Maur2;;;[];;;;text;t2_spp5k;False;False;[];;The wall thing sounds like one of the countries from Kino's Journey;False;False;;;;1610598863;;False;{};gj72osa;False;t3_kwydnp;False;True;t3_kwydnp;/r/anime/comments/kwydnp/help_finding_anime_huge_wall_painted_like_the_sky/gj72osa/;1610679910;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ExplicitNuM5;;;[];;;;text;t2_nd4dj;False;False;[];;"Typical/generic. I see these talked about in this subreddit on a daily basis. Why are you looking for validation? - -Oh, and Kanojo, Okaerishimasu and OreGairu on the list? Edgy.";False;False;;;;1610598881;;False;{};gj72py8;False;t3_kwx0pv;False;True;t3_kwx0pv;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj72py8/;1610679931;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;IIEarlGreyII;;MAL;[];;http://myanimelist.net/profile/IIEarlGreyII;dark;text;t2_6yklq;False;False;[];;Not in my opinion;False;False;;;;1610598930;;False;{};gj72ss4;False;t3_kwyden;False;True;t3_kwyden;/r/anime/comments/kwyden/is_noblesse_a_good_anime/gj72ss4/;1610679983;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AromatheraphyRoseV;;;[];;;;text;t2_858jrnfy;False;False;[];;"Yes. For a non-reader, I don’t know what to expect. So when I started watching it, I have low expectations. I like the flow of the story as well as the animation esp on the action scenes. That’s for me. - -Just watch the OVA first then decide if you want to continue watching the episodes.";False;False;;;;1610598955;;False;{};gj72ud9;False;t3_kwyden;False;True;t3_kwyden;/r/anime/comments/kwyden/is_noblesse_a_good_anime/gj72ud9/;1610680017;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AmazingPatatas;;;[];;;;text;t2_7m9g7m5v;False;False;[];;What's good is subjective. But, this anime is widely disliked. Never seen it myself, but I guess not.;False;False;;;;1610598963;;False;{};gj72uun;False;t3_kwyden;False;True;t3_kwyden;/r/anime/comments/kwyden/is_noblesse_a_good_anime/gj72uun/;1610680028;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ZacNotEfron;;;[];;;;text;t2_9lx10439;False;False;[];;"I’m lowkey a nerdy jock who thrives in gateway anime addiction. Typically my go it’s are death note, followed by my hero academia, then YouTube videos of cool fights in naruto shippuxen. -Has worked on all my non-anime viewing friends. One punch man is also very safe to show as well as its comedic, extremely well done, and the animation did superb for season one which is available ok Netflix, season 2 on Hulu for all the non anime weebs haha";False;False;;;;1610598964;;False;{};gj72uwv;False;t3_kwxtcr;False;False;t1_gj71qui;/r/anime/comments/kwxtcr/anime_movie_to_watch_newcomer/gj72uwv/;1610680029;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610598967;;False;{};gj72v0w;False;t3_kwxwla;False;True;t1_gj72ag3;/r/anime/comments/kwxwla/i_want_too_eat_your_pancreas/gj72v0w/;1610680032;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Chasemanhattan6556, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610598968;moderator;False;{};gj72v37;False;t3_kwxwla;False;False;t1_gj72v0w;/r/anime/comments/kwxwla/i_want_too_eat_your_pancreas/gj72v37/;1610680033;1;False;False;anime;t5_2qh22;;0;[]; -[];;;stegosauruswithadick;;;[];;;;text;t2_6o45i4q2;False;False;[];;i do remember fox box! but unfortunately neither is what were looking for. thank you though!;False;False;;;;1610598977;;False;{};gj72vnd;True;t3_kwyaui;False;True;t1_gj72880;/r/anime/comments/kwyaui/i_cant_remember_an_old_tv_chanmel/gj72vnd/;1610680043;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bluecomments;;;[];;;;text;t2_67kvqila;False;False;[];;Can't remember about anime in general. But for shonen fantasy action, I though the fandom cocky and did not wish to get into it. However, after watching Fullmetal Alchemist Brotherhood, my opinion on it changed and I have been looking for more good ones to watch since.;False;False;;;;1610599043;;False;{};gj72zek;False;t3_kwwz6c;False;True;t3_kwwz6c;/r/anime/comments/kwwz6c/what_did_you_think_of_anime_before_you_starting/gj72zek/;1610680135;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Maur2;;;[];;;;text;t2_spp5k;False;False;[];;You are welcome. Sorry I wasn't more help.;False;False;;;;1610599050;;False;{};gj72zut;False;t3_kwyaui;False;True;t1_gj72vnd;/r/anime/comments/kwyaui/i_cant_remember_an_old_tv_chanmel/gj72zut/;1610680143;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;"> I also kind of remember a group of folks that had this small girl that followed them around and helped. The small girl would put some marbles on a map, and they would all roll in circles until she “tracked them” or something and then they would all snap to a point on the map, and presumably find who they were looking for. - -Sounds like K-Project";False;False;;;;1610599060;;False;{};gj730fw;False;t3_kwydnp;False;True;t3_kwydnp;/r/anime/comments/kwydnp/help_finding_anime_huge_wall_painted_like_the_sky/gj730fw/;1610680153;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610599065;;False;{};gj730q2;False;t3_kwxwla;False;True;t1_gj72ag3;/r/anime/comments/kwxwla/i_want_too_eat_your_pancreas/gj730q2/;1610680159;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EggyTheWise;;;[];;;;text;t2_4k5pymxv;False;False;[];;I’ll give it a check out thanks so much!;False;False;;;;1610599172;;False;{};gj736xz;True;t3_kwv0py;False;True;t1_gj6vx3z;/r/anime/comments/kwv0py/i_need_suggestions_before_i_die/gj736xz/;1610680281;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ballinwalund;;;[];;;;text;t2_t5gxj;False;False;[];;"Hmm, I looked it up and it doesn’t have the same art style I’m imagining or beginning. - -But thank you so much for trying to help!!!!";False;False;;;;1610599328;;False;{};gj73g9m;True;t3_kwydnp;False;True;t1_gj72osa;/r/anime/comments/kwydnp/help_finding_anime_huge_wall_painted_like_the_sky/gj73g9m/;1610680449;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazziee__;;;[];;;;text;t2_4p77nkzj;False;False;[];;Bruh you posted spoilers;False;False;;;;1610599342;;False;{};gj73h4d;False;t3_kwxwla;False;True;t1_gj730q2;/r/anime/comments/kwxwla/i_want_too_eat_your_pancreas/gj73h4d/;1610680465;0;True;False;anime;t5_2qh22;;0;[]; -[];;;FireRifle64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FireRifle64;light;text;t2_29fr8mww;False;False;[];;The music in the OP and ED are really good and the animation is cool. But, Noblesse skips a good bit of info, you have to rely on an OVA made few years back to understand the beginning parts. The characters aren't really interesting nor is the story. Does it have cute moments? Sure, but it doesn't make it for the rest of the series imo.;False;False;;;;1610599349;;False;{};gj73hj2;False;t3_kwyden;False;False;t3_kwyden;/r/anime/comments/kwyden/is_noblesse_a_good_anime/gj73hj2/;1610680472;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"> also take two seconds to look up the censorship I'm not baseless fear mongering. - -You're the one trying to claim it, so the burden of proof is on you and you need to provide evidence. I already gave you several examples of shows that they kept fully uncensored. So show me a few examples of Funimation censoring something that wasn't censored the exact same way as in Japan or on other streaming services that carried the exact same show.";False;False;;;;1610599364;;False;{};gj73if8;False;t3_kwwsq2;False;True;t1_gj71mum;/r/anime/comments/kwwsq2/which_is_the_better_streaming_service_for_anime/gj73if8/;1610680486;3;True;False;anime;t5_2qh22;;0;[]; -[];;;reddadz;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MysticEyes/;light;text;t2_oek5m;False;True;[];;"Sorry, your submission has been removed. - -- This doesn't appear to be about [anime per our definition](https://www.reddit.com/r/anime/wiki/rules#wiki_everything_posted_here_must_be_anime_specific). - - -- You might consider posting this to - /r/Manga - instead. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610599366;moderator;False;{};gj73ijb;False;t3_kwy61u;False;True;t3_kwy61u;/r/anime/comments/kwy61u/writing_a_manga_need_feedback/gj73ijb/;1610680488;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Maur2;;;[];;;;text;t2_spp5k;False;False;[];;You are welcome, sorry about that.;False;False;;;;1610599385;;False;{};gj73jkz;False;t3_kwydnp;False;True;t1_gj73g9m;/r/anime/comments/kwydnp/help_finding_anime_huge_wall_painted_like_the_sky/gj73jkz/;1610680506;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Chasemanhattan6556;;;[];;;;text;t2_1289rmz9;False;False;[];;I was only adding to what somebody already said so I was adding on to something someone else already spoiled;False;False;;;;1610599404;;False;{};gj73ko7;False;t3_kwxwla;False;True;t1_gj73h4d;/r/anime/comments/kwxwla/i_want_too_eat_your_pancreas/gj73ko7/;1610680526;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazziee__;;;[];;;;text;t2_4p77nkzj;False;False;[];;I don’t see it;False;False;;;;1610599426;;False;{};gj73lwa;False;t3_kwxwla;False;True;t1_gj73ko7;/r/anime/comments/kwxwla/i_want_too_eat_your_pancreas/gj73lwa/;1610680549;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazziee__;;;[];;;;text;t2_4p77nkzj;False;False;[];;Now the movie is ruined thank you;False;False;;;;1610599438;;False;{};gj73mlu;False;t3_kwxwla;False;True;t1_gj73ko7;/r/anime/comments/kwxwla/i_want_too_eat_your_pancreas/gj73mlu/;1610680560;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610599443;moderator;False;{};gj73mve;False;t3_kwykch;False;True;t3_kwykch;/r/anime/comments/kwykch/name_of_anime_help/gj73mve/;1610680566;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AvatarAarow1;;;[];;;;text;t2_3ve7o5xz;False;False;[];;"MONSTER!! - -Seriously it’s so underwatched and so good. Just watched it last year and holy shit it lived up to the hype. - -Also space dandy, blood blockade battlefront, and cowboy bebop";False;False;;;;1610599453;;False;{};gj73nf8;False;t3_kwv0py;False;True;t3_kwv0py;/r/anime/comments/kwv0py/i_need_suggestions_before_i_die/gj73nf8/;1610680576;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;"not bad although that sounds like mostly a concept, and trying to weave a mystery around that would be tricky. if the impact of the mystery falls flat then there's a good chance the entertainment value of your series overall is sunk as well. Might make for a better one-shot to mitigate that risk. - -""the town and mystery/conspiracy over what goes on outside"" has been done before ([Shinsekai Yori](https://myanimelist.net/anime/13125), [The Promised Neverland](https://myanimelist.net/anime/37779/Yakusoku_no_Neverland), [Attack on Titan](https://myanimelist.net/anime/16498/Shingeki_no_Kyojin) I guess, others), the biggest thing you'd need to watch for when writing this is figuring out how to tell this story where the pieces are there but it's not too obvious either. You don't want to cheat your audience, and you also can't bore them either. also, no shame in writing this out as a ""light novel"" I guess if you can't draw (although learning to draw well for something like this wouldn't be a bad goal either.) These are just my initial thoughts though, best of luck";False;False;;;;1610599484;;False;{};gj73p9c;False;t3_kwy61u;False;True;t3_kwy61u;/r/anime/comments/kwy61u/writing_a_manga_need_feedback/gj73p9c/;1610680608;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ballinwalund;;;[];;;;text;t2_t5gxj;False;False;[];;"This is the girl! https://k-project.fandom.com/wiki/Anna_Kushina - -I’ll look into it more but I think maybe I was combining K- Project with another anime, because as soon as I saw this I know I remember a lot different plot (and no wall) - -I’ll edit my post to say it was separate! Thank you so much!";False;False;;;;1610599493;;False;{};gj73pqv;True;t3_kwydnp;False;True;t1_gj730fw;/r/anime/comments/kwydnp/help_finding_anime_huge_wall_painted_like_the_sky/gj73pqv/;1610680617;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Chasemanhattan6556;;;[];;;;text;t2_1289rmz9;False;False;[];;They deleted their post that had spoilers in it so I deleted mine that expanded on theirs;False;False;;;;1610599510;;False;{};gj73qqi;False;t3_kwxwla;False;True;t1_gj73mlu;/r/anime/comments/kwxwla/i_want_too_eat_your_pancreas/gj73qqi/;1610680635;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnInsaneMoose;;;[];;;;text;t2_4qv6ivbn;False;False;[];;"Everyone wants season 2 - -Unfortunately it does not exist";False;False;;;;1610599534;;False;{};gj73s4i;False;t3_kwyku8;False;True;t3_kwyku8;/r/anime/comments/kwyku8/no_game_no_life_season_2/gj73s4i/;1610680659;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazziee__;;;[];;;;text;t2_4p77nkzj;False;False;[];;I didn’t particularly enjoy it;False;False;;;;1610599554;;False;{};gj73t9g;False;t3_kwyden;False;True;t3_kwyden;/r/anime/comments/kwyden/is_noblesse_a_good_anime/gj73t9g/;1610680679;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;Read the series;False;False;;;;1610599565;;False;{};gj73tx6;False;t3_kwyku8;False;True;t3_kwyku8;/r/anime/comments/kwyku8/no_game_no_life_season_2/gj73tx6/;1610680691;2;True;False;anime;t5_2qh22;;0;[]; -[];;;weebu4laifu;;;[];;;;text;t2_7nij0alj;False;True;[];;The only thing we've gotten is a prequel move NGNL Zero.;False;False;;;;1610599580;;False;{};gj73urv;False;t3_kwyku8;False;True;t3_kwyku8;/r/anime/comments/kwyku8/no_game_no_life_season_2/gj73urv/;1610680705;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Public_Elderberry;;;[];;;;text;t2_5vzmbv8e;False;False;[];;Wow thanks your right;False;False;;;;1610599591;;False;{};gj73ve7;True;t3_kwy61u;False;True;t1_gj73p9c;/r/anime/comments/kwy61u/writing_a_manga_need_feedback/gj73ve7/;1610680716;2;True;False;anime;t5_2qh22;;0;[]; -[];;;__REDMAN__;;;[];;;;text;t2_2ltxp6gq;False;False;[];;Didn’t the creator get sued for copyright? There may never be a season 2 if so;False;False;;;;1610599680;;False;{};gj740jc;False;t3_kwyku8;False;True;t3_kwyku8;/r/anime/comments/kwyku8/no_game_no_life_season_2/gj740jc/;1610680808;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;"> The music in the OP and ED are really good - -I've never wanted to punch a singer more than the Noblesse OP. Dude sounds like a whiny bitch. ""So why does everybody hurt each other?""";False;False;;;;1610599698;;False;{};gj741jl;False;t3_kwyden;False;True;t1_gj73hj2;/r/anime/comments/kwyden/is_noblesse_a_good_anime/gj741jl/;1610680825;1;True;False;anime;t5_2qh22;;0;[]; -[];;;endusdecadus;;;[];;;;text;t2_2z9x99wr;False;False;[];;https://www.themix.net/2020/03/funimation-censors-mild-butt-pun-joke-in-nekopara/ here you go theres the most recent example I could find;False;False;;;;1610599764;;False;{};gj745d3;False;t3_kwwsq2;False;True;t1_gj73if8;/r/anime/comments/kwwsq2/which_is_the_better_streaming_service_for_anime/gj745d3/;1610680890;0;True;False;anime;t5_2qh22;;0;[]; -[];;;theguys5497;;;[];;;;text;t2_12d1dc;False;False;[];;I think there is a movie;False;False;;;;1610599862;;False;{};gj74az5;False;t3_kwyku8;False;True;t3_kwyku8;/r/anime/comments/kwyku8/no_game_no_life_season_2/gj74az5/;1610680988;1;True;False;anime;t5_2qh22;;0;[]; -[];;;albrioz;;;[];;;;text;t2_4crhwhhq;False;False;[];;I know something similar but it doesn’t happen at school. Servant x Service - [confession clip](https://youtu.be/BFHbBaUYQlc);False;False;;;;1610599864;;False;{};gj74b3y;False;t3_kwykch;False;True;t3_kwykch;/r/anime/comments/kwykch/name_of_anime_help/gj74b3y/;1610680991;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rick_rolled_you;;;[];;;;text;t2_6dai2;False;False;[];;If I don't see Golden Kamuy on a list I automatically assume the poster hasn't watched it because it is an 11/10 anime. I can't stress this enough, if you haven't watched it, PLEASE WATCH IT! You absolutely won't regret it;False;False;;;;1610599908;;False;{};gj74dn2;False;t3_kwts5k;False;False;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj74dn2/;1610681033;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Nick_BOI;;;[];;;;text;t2_x2i42xd;False;False;[];;YESSSSS;False;False;;;;1610599952;;False;{};gj74g74;True;t3_kwts5k;False;True;t1_gj74dn2;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj74g74/;1610681078;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ambsase;;;[];;;;text;t2_5q2uk;False;False;[];;No, pretty sure there was a bit of a scandal about the art being traced from other stuff, but I'm unaware of any lawsuits. The LNs are still coming out just fine.;False;False;;;;1610599963;;False;{};gj74gtn;False;t3_kwyku8;False;True;t1_gj740jc;/r/anime/comments/kwyku8/no_game_no_life_season_2/gj74gtn/;1610681090;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nwe888;;;[];;;;text;t2_25ne87qr;False;False;[];;I was hooked first episode join the club;False;False;;;;1610599990;;False;{};gj74i94;False;t3_kwyoqn;False;False;t3_kwyoqn;/r/anime/comments/kwyoqn/just_got_around_to_finally_watching_rezero_and_i/gj74i94/;1610681116;9;True;False;anime;t5_2qh22;;0;[]; -[];;;rattpack18;;;[];;;;text;t2_2uahjdtr;False;False;[];;It’s the most popular anime this season too!!;False;False;;;;1610600004;;False;{};gj74j2i;False;t3_kwyoqn;False;False;t3_kwyoqn;/r/anime/comments/kwyoqn/just_got_around_to_finally_watching_rezero_and_i/gj74j2i/;1610681130;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;Sure thing, feel free to comment/tag/DM me if you want to spin other thoughts for something like this off your head or if something comes up, but yeah, thanks for sharing, take care 🙂;False;False;;;;1610600009;;False;{};gj74jdy;False;t3_kwy61u;False;True;t1_gj73ve7;/r/anime/comments/kwy61u/writing_a_manga_need_feedback/gj74jdy/;1610681136;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;"It was weird cartoons for gay people (go figure, A friend showed me a random JoJo p5 episode) if my best friend didn't recommed me my hero academia under the title of ""it's like the pokemon anime but mature and good"". I wouldn't be here";False;False;;;;1610600109;;False;{};gj74oyp;False;t3_kwwz6c;False;True;t3_kwwz6c;/r/anime/comments/kwwz6c/what_did_you_think_of_anime_before_you_starting/gj74oyp/;1610681230;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;__REDMAN__;;;[];;;;text;t2_2ltxp6gq;False;False;[];;That’s good to hear! I was hoping for a season 2 myself and was bummed out to hear the creator was potentially being sued.;False;False;;;;1610600122;;False;{};gj74pqk;False;t3_kwyku8;False;True;t1_gj74gtn;/r/anime/comments/kwyku8/no_game_no_life_season_2/gj74pqk/;1610681243;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Taltibalti;;;[];;;;text;t2_srbia13;False;False;[];;It sure is!!!!;False;False;;;;1610600372;;False;{};gj753n8;False;t3_kwyoqn;False;True;t1_gj74j2i;/r/anime/comments/kwyoqn/just_got_around_to_finally_watching_rezero_and_i/gj753n8/;1610681482;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;Ok;False;False;;;;1610600396;;False;{};gj7551b;False;t3_kwyqnf;False;False;t3_kwyqnf;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj7551b/;1610681505;10;True;False;anime;t5_2qh22;;0;[]; -[];;;endusdecadus;;;[];;;;text;t2_2z9x99wr;False;False;[];;"Also I know you probably wont watch the vid cos it's long but I toward the start just stop brings up some relevant points towards this https://youtu.be/70z_xshvKDg -Edit: he talks about it starting at about 4:30 in";False;False;;;;1610600441;;1610600880.0;{};gj757lt;False;t3_kwwsq2;False;True;t1_gj73if8;/r/anime/comments/kwwsq2/which_is_the_better_streaming_service_for_anime/gj757lt/;1610681549;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Legendaryskitlz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Legendaryskitlz;light;text;t2_447xje46;False;False;[];;If this was reposted then does that mean it's finally working on Funimation?;False;False;;;;1610600838;;False;{};gj75tbg;False;t3_kwywxu;False;True;t3_kwywxu;/r/anime/comments/kwywxu/gekidol_episode_2_discussion/gj75tbg/;1610681923;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kuddlesworth9419;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kuddlesworth;light;text;t2_btage;False;False;[];;"I think it's because I just uploaded the episode to ""cat noises"".";False;False;;;;1610600932;;False;{};gj75yi2;False;t3_kwywxu;False;True;t1_gj75tbg;/r/anime/comments/kwywxu/gekidol_episode_2_discussion/gj75yi2/;1610682010;3;True;False;anime;t5_2qh22;;0;[]; -[];;;EggyTheWise;;;[];;;;text;t2_4k5pymxv;False;False;[];;I’m down I’ll keep it in mind are they dubbed?;False;False;;;;1610601001;;False;{};gj762bv;True;t3_kwv0py;False;True;t1_gj73nf8;/r/anime/comments/kwv0py/i_need_suggestions_before_i_die/gj762bv/;1610682077;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VyperMusic;;;[];;;;text;t2_13gwpm;False;False;[];;It was boring, though the end wasn't too bad;False;False;;;;1610601029;;False;{};gj763w3;False;t3_kwyden;False;True;t3_kwyden;/r/anime/comments/kwyden/is_noblesse_a_good_anime/gj763w3/;1610682104;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"That's not censorship at all. That's simply replacing a pun that only works in the Japanese language with a very similar pun that works in English, which is one of the most basic aspects of anime localization. It's the exact same joke and has the exact same effect, and the change is completely harmless. - -And before you bring up the BOFURI ""example"" also cited in the same article: The ""mild sexual joke"" in the subtitled version was a mistranslation, because the original source material the show is based on and the original Japanese dialogue in that scene *never had that sexual joke in the first place.* The English dub for that scene was actually *more accurate* to the original than the subtitles were, because it was fixing a mistake that the first translator made. - -So you still have no good examples.";False;False;;;;1610601038;;False;{};gj764eg;False;t3_kwwsq2;False;False;t1_gj745d3;/r/anime/comments/kwwsq2/which_is_the_better_streaming_service_for_anime/gj764eg/;1610682113;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SocialLoser739;;;[];;;;text;t2_4ttuko0s;False;False;[];;Welcome;False;False;;;;1610601211;;False;{};gj76dvk;False;t3_kwyoqn;False;True;t3_kwyoqn;/r/anime/comments/kwyoqn/just_got_around_to_finally_watching_rezero_and_i/gj76dvk/;1610682283;2;True;False;anime;t5_2qh22;;0;[]; -[];;;endusdecadus;;;[];;;;text;t2_2z9x99wr;False;False;[];;How can you say changing ass-quaintaces to hip-ster isnt censorship it would still make sense you read the article like come on that's ignorance at its finest;False;False;;;;1610601254;;False;{};gj76gck;False;t3_kwwsq2;False;True;t1_gj764eg;/r/anime/comments/kwwsq2/which_is_the_better_streaming_service_for_anime/gj76gck/;1610682326;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi -Faydflowright-, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610601260;moderator;False;{};gj76gpg;False;t3_kwz1o0;False;True;t3_kwz1o0;/r/anime/comments/kwz1o0/im_so_out_of_the_anime_loop_for_years_now_and_i/gj76gpg/;1610682332;1;False;False;anime;t5_2qh22;;0;[]; -[];;;OperatorERROR0919;;;[];;;;text;t2_6g1zxhwa;False;False;[];;[Madoka Magica](https://myanimelist.net/anime/9756/Mahou_Shoujo_Madoka%E2%98%85Magica?q=%20madoka), [Monogatari](https://myanimelist.net/anime/5081/Bakemonogatari?q=bake), [Mawaru Penguindrum](https://myanimelist.net/anime/10721/Mawaru_Penguindrum?q=mawar), [Tatami Galaxy](https://myanimelist.net/anime/7785/Yojouhan_Shinwa_Taikei), [Shinsekai Yori](https://myanimelist.net/anime/13125/Shinsekai_yori?q=shinsek), [Revue Starlight](https://myanimelist.net/anime/35503/Shoujo%E2%98%86Kageki_Revue_Starlight?q=starlight), and [Gakkougurashi](https://myanimelist.net/anime/24765/Gakkougurashi?q=gakk) are all ones that come to mind.;False;False;;;;1610601430;;False;{};gj76puh;False;t3_kwug43;False;True;t3_kwug43;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj76puh/;1610682498;1;True;False;anime;t5_2qh22;;0;[]; -[];;;endusdecadus;;;[];;;;text;t2_2z9x99wr;False;False;[];;Also I looked up the bofuri example and it's the same case you're just ignoring the fact that changing the pounding to happy and hoppy makes no sense and is censoring a joke that is on levels of that's what she says middle school jokes;False;False;;;;1610601430;;False;{};gj76pvv;False;t3_kwwsq2;False;True;t1_gj764eg;/r/anime/comments/kwwsq2/which_is_the_better_streaming_service_for_anime/gj76pvv/;1610682498;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ellefied;;;[];;;;text;t2_me4rp;False;False;[];;It's a popcorn manga. Art was pretty good and the premise was intriguing. Didn't stick the landing though, which is a shame.;False;False;;;;1610601520;;False;{};gj76unh;False;t3_kwuoou;False;False;t1_gj6oaq9;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj76unh/;1610682595;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Wonderllama5;;;[];;;;text;t2_jqsfu;False;False;[];;"10 anime I think you should watch: - -Cowboy Bebop (dub), Samurai Champloo (dub), Steins Gate, Railgun, Re:Zero (Director's Cut), Erased, Saiki K, Darling in the Franxx, Demon Slayer, Fate/Zero - -Available on Netflix, Crunchyroll, Funimation, and/or Hulu - -Make a list at http://myanimelist.net and keep track of everything. Great way to find more recommendations too!";False;False;;;;1610601529;;False;{};gj76v50;False;t3_kwz1o0;False;True;t3_kwz1o0;/r/anime/comments/kwz1o0/im_so_out_of_the_anime_loop_for_years_now_and_i/gj76v50/;1610682606;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;"The fate series is pretty good too. - -Fate UBW (S1 and S2) > Fate heaven's feel movies (1, 2, 3,) (3rd just released iirc)> Fate zero - - -Optional- - -Fate stay night by Studio Deen (painfully mediocre but good music) - -Emiya san chi no kyo no gohan (best fate cooking show) - -The rest at your discretion (like Apocrypha, etc) - -P.S If you enjoyed the story (after UBW and HF) give the VN a try.";False;False;;;;1610601557;;False;{};gj76wn2;False;t3_kwv0py;False;True;t3_kwv0py;/r/anime/comments/kwv0py/i_need_suggestions_before_i_die/gj76wn2/;1610682633;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Phinaeus;;;[];;;;text;t2_3jbc6;False;True;[];;If you liked Kamuy, you'll love Dorohedoro. Completely different setting but similar adventure, characters and comedy style.;False;False;;;;1610601613;;False;{};gj76zks;False;t3_kwts5k;False;True;t1_gj6gvsw;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj76zks/;1610682714;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EggyTheWise;;;[];;;;text;t2_4k5pymxv;False;False;[];;"A lot to process in this one lol what would -I type into YouTube to find a trailer?";False;False;;;;1610601664;;False;{};gj772dt;True;t3_kwv0py;False;True;t1_gj76wn2;/r/anime/comments/kwv0py/i_need_suggestions_before_i_die/gj772dt/;1610682772;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KearLoL;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/vollizie;light;text;t2_46k87az;False;False;[];;Only questionable thing on your list is Rent-A-Girlfriend being in the top 5. Other than that, it's solid.;False;False;;;;1610601841;;False;{};gj77bsw;False;t3_kwx0pv;False;True;t3_kwx0pv;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj77bsw/;1610682945;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;"Tbh I went in blind from the Deen Stay night (the shit one) and loved it (strong YMMV). Then the others blew my mind. - -In any case, you can search the name + ""PV"" in youtube to check out their trailers. - -Eg. Fate UBW PV, Heaven's Feel PV, etc";False;False;;;;1610601902;;False;{};gj77f36;False;t3_kwv0py;False;True;t1_gj772dt;/r/anime/comments/kwv0py/i_need_suggestions_before_i_die/gj77f36/;1610683001;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610601960;moderator;False;{};gj77iac;False;t3_kwz7xr;False;True;t3_kwz7xr;/r/anime/comments/kwz7xr/if_i_watch_your_lie_in_april_and_violet/gj77iac/;1610683055;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Ninjakillzu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Ninjakillzu;light;text;t2_h0wum;False;True;[];;"A lot of them! I have only fully seen 1 of MAL's top 100 (Cowboy Bebop) and am currently watching Gintama. - -I guess I'd rather watch what personally interests me first rather than what's popular.";False;False;;;;1610601989;;False;{};gj77jtj;False;t3_kwvq37;False;True;t3_kwvq37;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj77jtj/;1610683084;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610602085;moderator;False;{};gj77ozt;False;t3_kwz92w;False;True;t3_kwz92w;/r/anime/comments/kwz92w/love_at_first_sight/gj77ozt/;1610683181;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi LilBigJP, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610602085;moderator;False;{};gj77p0x;False;t3_kwz92w;False;True;t3_kwz92w;/r/anime/comments/kwz92w/love_at_first_sight/gj77p0x/;1610683182;1;False;False;anime;t5_2qh22;;0;[]; -[];;;haanberry;;;[];;;;text;t2_isbosj;False;False;[];;u/kafukator has your opinion changed ?;False;False;;;;1610602188;;False;{};gj77uiw;False;t3_kwyqnf;False;False;t3_kwyqnf;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj77uiw/;1610683280;43;True;False;anime;t5_2qh22;;0;[]; -[];;;ej_stephens;;;[];;;;text;t2_3d6h2d18;False;False;[];;Maybe one of the best takes I've seen on Rent a Girlfriend. I liked the show personally, but I can easily see many wouldn't. The characters feel a little exaggerated, but very real;False;False;;;;1610602217;;False;{};gj77w13;False;t3_kwts5k;False;False;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj77w13/;1610683308;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ballinwalund;;;[];;;;text;t2_t5gxj;False;False;[];;They’re both really good! I don’t regret watching either of them :);False;False;;;;1610602287;;False;{};gj77znc;False;t3_kwz7xr;False;True;t3_kwz7xr;/r/anime/comments/kwz7xr/if_i_watch_your_lie_in_april_and_violet/gj77znc/;1610683372;20;True;False;anime;t5_2qh22;;0;[]; -[];;;EggyTheWise;;;[];;;;text;t2_4k5pymxv;False;False;[];;"Sounds good I’ll -Give them a look thank you";False;False;;;;1610602314;;False;{};gj78133;True;t3_kwv0py;False;True;t1_gj77f36;/r/anime/comments/kwv0py/i_need_suggestions_before_i_die/gj78133/;1610683398;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;I thought anime was only Hatsune Miku. Like just music videos and stuff.;False;False;;;;1610602321;;False;{};gj781fo;False;t3_kwwz6c;False;True;t3_kwwz6c;/r/anime/comments/kwwz6c/what_did_you_think_of_anime_before_you_starting/gj781fo/;1610683404;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YuriAddict7;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/R1seKujikawa/;light;text;t2_3zn8celm;False;False;[];;this is some death game anime? im always into one fo those. and lmao i recognized at least yu narukami and adachi from persona 4 VA there;False;False;;;;1610602363;;False;{};gj783l0;False;t3_kwuoou;False;True;t3_kwuoou;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj783l0/;1610683447;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ryban;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/ryban/;light;text;t2_4xd0c;False;False;[];;"I actually got 6 minutes into the episode then it died. This is my yearly attempt to try funimation's service again and it was going okay-ish until now. The webplayer was throwing exceptions, so its good to know that funimation's webplayer is still garbage despite working better then before. It somehow ran out of localStorage space and after inspecting it there was a massive list called ""kaneHistory"" that was nothing but `null`s and inspecting it crashed firefox on me. Clearing the localStorage didn't fix anything unfortunately.";False;False;;;;1610602403;;False;{};gj785mw;False;t3_kwywxu;False;True;t1_gj75tbg;/r/anime/comments/kwywxu/gekidol_episode_2_discussion/gj785mw/;1610683484;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Its an adaptation, they have to make some changes - -And what Promised Neverland did (8 chapters 1 episode) is the exception, the majority of the shows don't do that - -If you want a ultra detailed adaptation you have to watch long running shows, go ask the One Piece fans what they think about the pace of the series";False;False;;;;1610602494;;False;{};gj78adb;False;t3_kwz6fe;False;False;t3_kwz6fe;/r/anime/comments/kwz6fe/why_do_so_many_seasonal_animes_cut_scenes/gj78adb/;1610683569;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;How the hell is mha like Pokémon;False;False;;;;1610602519;;False;{};gj78bq4;False;t3_kwwz6c;False;True;t1_gj74oyp;/r/anime/comments/kwwz6c/what_did_you_think_of_anime_before_you_starting/gj78bq4/;1610683594;2;True;False;anime;t5_2qh22;;0;[]; -[];;;crixx93;;;[];;;;text;t2_twrpm1;False;False;[];;Anime has many constraints. They are only allotted X number of episodes that will be released weekly during seasonal intervals. Each episode has ~25 mins minus opening and ending sequences that leaves you with ~22 mins and they also need to take into account how to schedule the commercial break. So as you see, they need to take a lot of things into consideration, so it's not uncommon for content to be cut, rearrange, or even stretch in order to comply. Remember that adaptations are rarely one to one translations from one medium to another.;False;False;;;;1610602522;;False;{};gj78bur;False;t3_kwz6fe;False;False;t3_kwz6fe;/r/anime/comments/kwz6fe/why_do_so_many_seasonal_animes_cut_scenes/gj78bur/;1610683595;9;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610602524;moderator;False;{};gj78bzm;False;t3_kwzd0o;False;True;t3_kwzd0o;/r/anime/comments/kwzd0o/i_just_finished_watching_rainbow_days_absolutely/gj78bzm/;1610683597;1;False;False;anime;t5_2qh22;;0;[]; -[];;;purplemarbles48;;;[];;;;text;t2_7cqu508a;False;False;[];;"I'm not good with action-type animes, but I have watched a decent amount of ""feel-good"" shows. Here's some that I would personally recommend - -\-A Place Further Than the Universe (13 eps): a show about 4 girls going to Antartica. I know the plot sounds strange, but the show itself is full of emotion and very inspirational. My top recommendation. - -\-ID: Invaded (13 eps): a show about a world in which technology can be used to enter the minds of killers in order to solve a murder mystery. It's lesser-known since it's pretty new but I found it interesting (not ""feel-good"" but I just liked it) - -\- Kakushigoto (12 eps): a single father with a daughter tries to keep his job as a manga artist a secret from his daughter. Very cute and feel-good - -\- Rilakkuma and Kaoru (13 eps): I'm not sure if this counts as an anime, but I found it on MAL so I'm gonna consider it as one. A girl lives with two bears and a bird. It's on Netflix and I would recommend it if you just want to relax. Super cute - -hope you take some of these into consideration :)";False;False;;;;1610602617;;False;{};gj78gv6;False;t3_kwz1o0;False;False;t3_kwz1o0;/r/anime/comments/kwz1o0/im_so_out_of_the_anime_loop_for_years_now_and_i/gj78gv6/;1610683682;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610602642;;False;{};gj78i5j;False;t3_kwz6fe;False;False;t3_kwz6fe;/r/anime/comments/kwz6fe/why_do_so_many_seasonal_animes_cut_scenes/gj78i5j/;1610683703;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Legendaryskitlz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Legendaryskitlz;light;text;t2_447xje46;False;False;[];;I've never had a problem with Funimation's service really till recently with some of the sub uncut versions not working(not a huge loss because they didn't have any censors). The other being Gekidol which isn't a huge problem for me because there's much better seasonals to watch. Though I don't like it when I get behind seasonals because they pile up pretty quickly.;False;False;;;;1610602657;;False;{};gj78iw3;False;t3_kwywxu;False;True;t1_gj785mw;/r/anime/comments/kwywxu/gekidol_episode_2_discussion/gj78iw3/;1610683716;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610602664;moderator;False;{};gj78j9m;False;t3_kwzed3;False;True;t3_kwzed3;/r/anime/comments/kwzed3/what_drama_romantic_anime_should_i_watch/gj78j9m/;1610683722;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;Give Nana a look.;False;False;;;;1610602706;;False;{};gj78lhr;False;t3_kwzed3;False;True;t3_kwzed3;/r/anime/comments/kwzed3/what_drama_romantic_anime_should_i_watch/gj78lhr/;1610683763;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Permanoxx;;;[];;;;text;t2_3hwherkr;False;False;[];;I have not seen Fmab;False;False;;;;1610602707;;False;{};gj78lkf;False;t3_kwvq37;False;True;t3_kwvq37;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj78lkf/;1610683764;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nick_BOI;;;[];;;;text;t2_x2i42xd;False;False;[];;I'll have to check it out sometime for sure!! my backlog is pretty big though, but better late then never I suppose.;False;False;;;;1610602717;;False;{};gj78m2i;True;t3_kwts5k;False;True;t1_gj76zks;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj78m2i/;1610683773;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pythoner6;;;[];;;;text;t2_n4og0;False;False;[];;I don't think I had any knowledge of anime specifically - but in terms of animated shows in general I dont think I had anything in particular against them, but I did tend to assume that I wouldn't be interested. But then one day I came into the common room of my suite (college dorm) to do some homework while my roommates happened to be watching anime and at first I wasn't paying that much attention, but eventually I wasn't getting much homework done :P;False;False;;;;1610602757;;False;{};gj78o4k;False;t3_kwwz6c;False;True;t3_kwwz6c;/r/anime/comments/kwwz6c/what_did_you_think_of_anime_before_you_starting/gj78o4k/;1610683814;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dotaproffessional;;;[];;;;text;t2_as5anqx;False;False;[];;I there no middle ground? on one extreme, you have naruto jumping to a filler flashback arc in the middle of another arc, and then on the other, a seasonal anime with like 12 episodes skipping entire scenes from its short manga run. Surely there's a middle ground;False;True;;comment score below threshold;;1610602843;;False;{};gj78shb;True;t3_kwz6fe;False;True;t1_gj78adb;/r/anime/comments/kwz6fe/why_do_so_many_seasonal_animes_cut_scenes/gj78shb/;1610683890;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;Nick_BOI;;;[];;;;text;t2_x2i42xd;False;False;[];;"Rent a Girlfriend makes me feel so conflicted. The characters are some of the most belivable I have seen in a loong time, and various aspects of the story are genuienly sad. Kazuya genuienly feels lonely, and has always been that way-his whole family knows it. using a freaing girlfriend rental service no doubt would be seen as shameful, but he is just loneley. - -This is what I mean, a large part of the story and characters are well written, and make a lot of sense. - -It's just not enjoyable. - -Yes Kazuya feels very real, and his actions make a lot of sense, but it doesn't make his hesitation, lies, and lingering attatchment to Mami any less frustrating. - -A stories job is to entertain, and as a consumer, I want my entertainment to be enjoyable. If I felt like I wasn't having fun watching it, I can't say I enjoyed the experience. - -Was I enganged in the story and characters? Hell yes, like I said they are genuenly well done!! Did I also want to throw my phone across the room half the time? also yes. - -I did not like it, but honestly, I cannot bring myself to call it bad-and I can see why i has such a large following.";False;False;;;;1610603167;;False;{};gj798p4;True;t3_kwts5k;False;False;t1_gj77w13;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj798p4/;1610684163;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"I watched the section of the video about the changes you were talking about (and skimmed through the rest but that's different topics) and the main thing I've noticed is that you seemed to be very confused on the difference between ""censorship"" and ""localization"". - -* Prison School and Dragon Maid each had one very bad line that I admit was a horrible reference to throw in. Adding political stuff into a dub is unacceptable and should never happen. But again, that's bad localization and not censorship, and even then, that's only two lines in two shows out of *hundreds and hundreds* of dubs they've made over the years. - -* The other examples like Hetalia and Shin-Chan are, again, about localization and not censorship. Including pop culture references in dubs of comedy anime is standard fare for any dubbing company and not just Funimation, and chances are they were replacing Japanese pop culture references that would have completely flown over the heads of western audiences. That's not censorship, that's good localization. - -* The only example that was about actual ""censorship"" was the part about Interspecies Reviewers. But the truth is that the anime *really did* add more explicit scenes to the anime that weren't in the manga and that Funimation *really did* have no idea what kind of show it really was before they licensed it. The fact that Amazon Video and multiple TV channels *in Japan* also removed the show is a clear indicator that Funimation weren't the only ones caught off guard by this. The person who made this video even admitted down in the comments that the part of the video about Interspecies Reviewers was misinformed.";False;False;;;;1610603283;;False;{};gj79ed1;False;t3_kwwsq2;False;False;t1_gj757lt;/r/anime/comments/kwwsq2/which_is_the_better_streaming_service_for_anime/gj79ed1/;1610684257;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Aevio11;;;[];;;;text;t2_5dgofayv;False;False;[];;Even though I like death game anime, the premise on this one feels like a stretch. I'd have much rather they brought back Alice in Borderland for a proper showing.;False;False;;;;1610603293;;False;{};gj79etx;False;t3_kwuoou;False;True;t3_kwuoou;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj79etx/;1610684265;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;You're welcome 😁. We hope you'll enjoy your stay in Nasuverse.;False;False;;;;1610603301;;False;{};gj79f8y;False;t3_kwv0py;False;True;t1_gj78133;/r/anime/comments/kwv0py/i_need_suggestions_before_i_die/gj79f8y/;1610684272;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Itspoodie;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;"https://myanimelist.net/animelist/Itspoodie&view=tile&status=7";dark;text;t2_7qq4dkmg;False;False;[];;If you haven’t watched it already rent a girlfriend is pretty good;False;False;;;;1610603403;;False;{};gj79kcr;False;t3_kwzed3;False;True;t3_kwzed3;/r/anime/comments/kwzed3/what_drama_romantic_anime_should_i_watch/gj79kcr/;1610684360;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;That joke *did not exist in the original dialogue*. It was a mistranslation and a mistake in the first place, plain and simple. The change for the dub was purely for fixing that mistake, and like I said, it was *more accurate* to the original source material than the subtitles were.;False;False;;;;1610603426;;False;{};gj79lir;False;t3_kwwsq2;False;False;t1_gj76pvv;/r/anime/comments/kwwsq2/which_is_the_better_streaming_service_for_anime/gj79lir/;1610684378;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;RahXephon;False;False;;;;1610603434;;False;{};gj79lx8;False;t3_kwydnp;False;True;t3_kwydnp;/r/anime/comments/kwydnp/help_finding_anime_huge_wall_painted_like_the_sky/gj79lx8/;1610684386;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Its clear that you don't watch a lot of anime - -Since you like shounen go and watch Jujutsu Kaisen, perfect adaptation without cutting stuff - -If you want more let me know - -People don't care about long running shows and they are pretty stupid to begin with, imagine wasting resources to animate dozen and dozens of filler episodes, waste of money and time - -That's why after world trigger and Black Clover underperformed Shueisha will never do that again outside of the classic shows";False;False;;;;1610603454;;False;{};gj79mxh;False;t3_kwz6fe;False;False;t1_gj78shb;/r/anime/comments/kwz6fe/why_do_so_many_seasonal_animes_cut_scenes/gj79mxh/;1610684402;6;True;False;anime;t5_2qh22;;0;[]; -[];;;endusdecadus;;;[];;;;text;t2_2z9x99wr;False;False;[];;Ight hold your end of what you told me and show me evidence of this;False;False;;;;1610603559;;False;{};gj79s4f;False;t3_kwwsq2;False;True;t1_gj79lir;/r/anime/comments/kwwsq2/which_is_the_better_streaming_service_for_anime/gj79s4f/;1610684489;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gnomezero;;;[];;;;text;t2_14wp67;False;False;[];;It doesn’t match your description perfectly, but I think Darker Than Black had a wall in the city that was painted to look like the sky. Hell’s Gate is what they called it I believe.;False;False;;;;1610603646;;False;{};gj79we4;False;t3_kwydnp;False;True;t3_kwydnp;/r/anime/comments/kwydnp/help_finding_anime_huge_wall_painted_like_the_sky/gj79we4/;1610684562;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;Fruits Basket (2019) is amazing! Spice and Wolf too.;False;False;;;;1610603660;;False;{};gj79x1t;False;t3_kwzed3;False;True;t3_kwzed3;/r/anime/comments/kwzed3/what_drama_romantic_anime_should_i_watch/gj79x1t/;1610684572;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610603799;;False;{};gj7a3v1;False;t3_kwywxu;False;True;t1_gj78iw3;/r/anime/comments/kwywxu/gekidol_episode_2_discussion/gj7a3v1/;1610684685;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Legendaryskitlz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Legendaryskitlz;light;text;t2_447xje46;False;False;[];;Thursdays honestly have the best anime airing with Friday in second.;False;False;;;;1610603839;;False;{};gj7a5qn;False;t3_kwywxu;False;True;t1_gj7a3v1;/r/anime/comments/kwywxu/gekidol_episode_2_discussion/gj7a5qn/;1610684717;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EggyTheWise;;;[];;;;text;t2_4k5pymxv;False;False;[];;We shall see :P If I get an anime I enjoy I’ll finish it very fast like 12 episodes in 2 days fast and then be sad that’s it’s over 😅;False;False;;;;1610603854;;False;{};gj7a6hp;True;t3_kwv0py;False;True;t1_gj79f8y;/r/anime/comments/kwv0py/i_need_suggestions_before_i_die/gj7a6hp/;1610684728;2;True;False;anime;t5_2qh22;;0;[]; -[];;;endusdecadus;;;[];;;;text;t2_2z9x99wr;False;False;[];;I mean I understand where you're coming from but localisation that brings in politics and pandering might aswell be censorship at least censorship is pushing an agenda but overall it's still disgusting on funi's part. And honestly I understand interspecies reviewers getting cancelled and shit because it's a I cant believe it's not hentai thing and all tho I personally havnt watched it the clips I've seen have made me actually lmao I understand its removal and stuff;False;False;;;;1610603855;;False;{};gj7a6ix;False;t3_kwwsq2;False;True;t1_gj79ed1;/r/anime/comments/kwwsq2/which_is_the_better_streaming_service_for_anime/gj7a6ix/;1610684730;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ballinwalund;;;[];;;;text;t2_t5gxj;False;False;[];;"OH MY GOD YESSSSSSSS THANK YOU!!! - -https://www.ganriki.org/media/2014/darker-than-black-06.jpg - -This is what I was thinking of! Thanks for helping my brain move past this lol.";False;False;;;;1610603900;;False;{};gj7a8pt;True;t3_kwydnp;False;True;t1_gj79we4;/r/anime/comments/kwydnp/help_finding_anime_huge_wall_painted_like_the_sky/gj7a8pt/;1610684767;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kuddlesworth9419;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kuddlesworth;light;text;t2_btage;False;False;[];;Yea it's bloody great for me. When I'm working I like to get a big backlog for the whole week and then binge watch everything in two days.;False;False;;;;1610603932;;False;{};gj7aa8c;False;t3_kwywxu;False;True;t1_gj7a5qn;/r/anime/comments/kwywxu/gekidol_episode_2_discussion/gj7aa8c/;1610684791;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;It's not but, I was familiar with it and me and my friend became friends cox of it. We had grown out of it but the reason was mainly cox they both have tournament arcs. Where as pokemon always had a bad unsatisfying arc, mha delivered with a really good tournament.;False;False;;;;1610603954;;False;{};gj7abds;False;t3_kwwz6c;False;True;t1_gj78bq4;/r/anime/comments/kwwz6c/what_did_you_think_of_anime_before_you_starting/gj7abds/;1610684813;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ballinwalund;;;[];;;;text;t2_t5gxj;False;False;[];;Thank you for your help! It was actually Darker Than Black :);False;False;;;;1610604024;;False;{};gj7aeq3;True;t3_kwydnp;False;True;t1_gj79lx8;/r/anime/comments/kwydnp/help_finding_anime_huge_wall_painted_like_the_sky/gj7aeq3/;1610684867;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dotaproffessional;;;[];;;;text;t2_as5anqx;False;False;[];;I only used naruto and dbz since they're famous examples of long-format anime with lots of filler. I wouldn't say i'm partial to shounen necessarily.;False;False;;;;1610604099;;False;{};gj7aidc;True;t3_kwz6fe;False;True;t1_gj79mxh;/r/anime/comments/kwz6fe/why_do_so_many_seasonal_animes_cut_scenes/gj7aidc/;1610684928;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-rika_;;;[];;;;text;t2_9paon043;False;False;[];;"Gosick - -Sakurasou no Pet na Kanojo - -Irozuku Sekai no Ashita kara>beutiful fantastic anime,not enough people talk about it - -Plastic Memories";False;False;;;;1610604202;;False;{};gj7anco;False;t3_kwzed3;False;True;t3_kwzed3;/r/anime/comments/kwzed3/what_drama_romantic_anime_should_i_watch/gj7anco/;1610685011;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610604282;moderator;False;{};gj7ar5q;False;t3_kwzsqh;False;True;t3_kwzsqh;/r/anime/comments/kwzsqh/please_help_me_remember_the_name_of_this_anime/gj7ar5q/;1610685078;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Massaman95;;;[];;;;text;t2_zxb3m;False;False;[];;"Seen: 8/10 - -Liked: 2/8";False;False;;;;1610604508;;False;{};gj7b1sh;False;t3_kwx0pv;False;True;t3_kwx0pv;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj7b1sh/;1610685260;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VideoAffectionate806;;;[];;;;text;t2_9t9p0tf9;False;False;[];;">I don’t really like rom com anime";False;False;;;;1610604518;;False;{};gj7b28u;False;t3_kwzed3;False;True;t1_gj79kcr;/r/anime/comments/kwzed3/what_drama_romantic_anime_should_i_watch/gj7b28u/;1610685268;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MasterRedStar;;;[];;;;text;t2_koy72;False;False;[];;Sniper Mask Best Boi;False;False;;;;1610604539;;False;{};gj7b38v;False;t3_kwuoou;False;True;t3_kwuoou;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj7b38v/;1610685285;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jeremi1805;;;[];;;;text;t2_9syq5vr4;False;False;[];;Invaders of the rokujouma;False;False;;;;1610604636;;False;{};gj7b7qi;False;t3_kwzsqh;False;True;t3_kwzsqh;/r/anime/comments/kwzsqh/please_help_me_remember_the_name_of_this_anime/gj7b7qi/;1610685357;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KTang17;;;[];;;;text;t2_11z8y2;False;False;[];;Rokujouma no shinryakusha?;False;False;;;;1610604657;;False;{};gj7b8q6;False;t3_kwzsqh;False;True;t3_kwzsqh;/r/anime/comments/kwzsqh/please_help_me_remember_the_name_of_this_anime/gj7b8q6/;1610685373;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kmattmebro;;;[];;;;text;t2_gvxts;False;False;[];;Sounds like Invaders of the Rokujouma.;False;False;;;;1610604716;;False;{};gj7bbh0;False;t3_kwzsqh;False;True;t3_kwzsqh;/r/anime/comments/kwzsqh/please_help_me_remember_the_name_of_this_anime/gj7bbh0/;1610685419;2;True;False;anime;t5_2qh22;;0;[]; -[];;;malejo3555;;;[];;;;text;t2_4jiq8obe;False;False;[];;I don't think this question applies to me because I watched anime since it aired on Toonami in the early 2000s I just didn't know it was different from normal cartoons until later on.;False;False;;;;1610604723;;False;{};gj7bbsp;False;t3_kwwz6c;False;True;t3_kwwz6c;/r/anime/comments/kwwz6c/what_did_you_think_of_anime_before_you_starting/gj7bbsp/;1610685425;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok_Opinion_7678;;;[];;;;text;t2_9h5h93ip;False;False;[];;YOO tysm I was tryna remember the name of this anime for like a year lmao I don't even remember the op song anymore I just barely remember the animation but how did u guys remember it? Do u have like super good memory or did u really like this so u didn't forget it?;False;False;;;;1610604949;;False;{};gj7bmcl;True;t3_kwzsqh;False;True;t3_kwzsqh;/r/anime/comments/kwzsqh/please_help_me_remember_the_name_of_this_anime/gj7bmcl/;1610685606;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dablackbird;;;[];;;;text;t2_sqp04;False;False;[];;They are depressing as hell. But they are great, my friend who don't watch anime loved them! Great stories;False;False;;;;1610605261;;False;{};gj7c0sb;False;t3_kwz7xr;False;True;t3_kwz7xr;/r/anime/comments/kwz7xr/if_i_watch_your_lie_in_april_and_violet/gj7c0sb/;1610685845;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aluminum-Chair;;;[];;;;text;t2_63qs0yl8;False;False;[];;"There is a canon movie that takes place thousands of years before the series starts called *No Game No Life: Zero*. It's really good. - -Season 1 adapts Volumes 1-3, Zero adapts Volume 6. It would be kind of hard to fit in a second season now but it isn't impossible and I hope for it every day.";False;False;;;;1610605302;;False;{};gj7c2mw;False;t3_kwyku8;False;True;t3_kwyku8;/r/anime/comments/kwyku8/no_game_no_life_season_2/gj7c2mw/;1610685877;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610605375;moderator;False;{};gj7c622;False;t3_kx0268;False;True;t3_kx0268;/r/anime/comments/kx0268/what_anime_is_this_guy_from/gj7c622/;1610685936;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"Read the comments in [this thread](https://www.reddit.com/r/Animedubs/comments/f6i6xh/bofuri_line_change/), specifically the one by tasuketeJESUS. The original joke in the Japanese dialogue was about how Maple basically tripped over her tongue because she was nervous and her words slurred a bit (her ""desu"" and ""gozaimasu"" at the end of her sentences sound more like ""deshu"" and ""gozaimashu""). The crowd laughed because she messed up in her speaking, not specifically because of what she said. - -The subtitle translator decided to make it so she accidentally said a sexual innuendo (saying that she ""took a pounding"" but liked it) and have the crowd laugh at her accidentally making that joke instead of laughing at her messing up the way she was speaking. *This was completely wrong, a mistranslation, and nowhere close to the original intent of the scene.* - -Then when the dubbed version of the episode came out, the dub script writer instead had Maple simply mispronounce a word (""happy"" as ""hoppy"") at the end of her sentence and the crowd laughing at her messing up. While that's not 100% exactly the same, it's still very close to the original intent of the scene. The crowd laughed at her messing up a word, not because of what she said... but the subtitle translator messed that up, and the dub script writer fixed that mistake for the dub.";False;False;;;;1610605409;;False;{};gj7c7la;False;t3_kwwsq2;False;False;t1_gj79s4f;/r/anime/comments/kwwsq2/which_is_the_better_streaming_service_for_anime/gj7c7la/;1610685961;3;True;False;anime;t5_2qh22;;0;[]; -[];;;_dsmith23;;;[];;;;text;t2_q9zbacg;False;False;[];;Wotakoi;False;False;;;;1610605482;;False;{};gj7caws;False;t3_kx0268;False;True;t3_kx0268;/r/anime/comments/kx0268/what_anime_is_this_guy_from/gj7caws/;1610686019;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Yougotmai1;;;[];;;;text;t2_6cq8u;False;False;[];;Wotakoi: Love is hard for an Otaku;False;False;;;;1610605513;;False;{};gj7ccbp;False;t3_kx0268;False;True;t3_kx0268;/r/anime/comments/kx0268/what_anime_is_this_guy_from/gj7ccbp/;1610686043;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yougotmai1;;;[];;;;text;t2_6cq8u;False;False;[];;Violet Evergarden is probably up your alley.;False;False;;;;1610605606;;False;{};gj7cglw;False;t3_kwyzsi;False;True;t3_kwyzsi;/r/anime/comments/kwyzsi/looking_for_sad_anime/gj7cglw/;1610686113;1;True;False;anime;t5_2qh22;;0;[]; -[];;;plasmaticD;;;[];;;;text;t2_nisan0p;False;False;[];;"Intense feelings, for sure...can you cope? - -YLiA Ranks as one of my faves. I don't in any way regret watching. Both MCs attitudes and reactions are inspiring. I'll stop short of spoilers, go experience it.";False;False;;;;1610605636;;False;{};gj7chyw;False;t3_kwz7xr;False;True;t3_kwz7xr;/r/anime/comments/kwz7xr/if_i_watch_your_lie_in_april_and_violet/gj7chyw/;1610686135;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Sakamichi no Apollon - -Relife - -Your Lie in April - -Given (If you're okay with LGBT) - -Orange";False;False;;;;1610605695;;False;{};gj7ckl7;False;t3_kwzed3;False;True;t3_kwzed3;/r/anime/comments/kwzed3/what_drama_romantic_anime_should_i_watch/gj7ckl7/;1610686177;2;True;False;anime;t5_2qh22;;0;[]; -[];;;endusdecadus;;;[];;;;text;t2_2z9x99wr;False;False;[];;I can't find this guys comment. But your quoting reddit and the only other place I could find this information is a single tweet this is a confusing situation to say the least;False;False;;;;1610605835;;False;{};gj7cqum;False;t3_kwwsq2;False;True;t1_gj7c7la;/r/anime/comments/kwwsq2/which_is_the_better_streaming_service_for_anime/gj7cqum/;1610686285;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Verzwei;;;[];;;;text;t2_cmzqb;False;False;[];;Wolf Girl and Black Prince;False;False;;;;1610605892;;False;{};gj7ctd3;False;t3_kwzed3;False;True;t3_kwzed3;/r/anime/comments/kwzed3/what_drama_romantic_anime_should_i_watch/gj7ctd3/;1610686328;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Sora yori mo Tooi Basho - -A Silent Voice - -Yuru Camp - -Your Name - -Your Lie in April - -Haikyuu - -Chihayafuru - -Yuri on Ice";False;False;;;;1610605915;;False;{};gj7cuda;False;t3_kwz1o0;False;False;t3_kwz1o0;/r/anime/comments/kwz1o0/im_so_out_of_the_anime_loop_for_years_now_and_i/gj7cuda/;1610686344;5;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Anohana - -A Silent Voice";False;False;;;;1610605937;;False;{};gj7cvc0;False;t3_kwyzsi;False;True;t3_kwyzsi;/r/anime/comments/kwyzsi/looking_for_sad_anime/gj7cvc0/;1610686359;3;True;False;anime;t5_2qh22;;0;[]; -[];;;endusdecadus;;;[];;;;text;t2_2z9x99wr;False;False;[];;Ight you might be right that tweet was a translator like a professional one. However I've explained the nekopara one would make sense so that's a example anyway;False;False;;;;1610606067;;False;{};gj7d10a;False;t3_kwwsq2;False;True;t1_gj7c7la;/r/anime/comments/kwwsq2/which_is_the_better_streaming_service_for_anime/gj7d10a/;1610686458;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KendotsX;;;[];;;;text;t2_j6nbtko;False;False;[];;"5 years later and they still haven't made Dreaming Machine... - -Mappa used to be a very hit or miss studio for me, with a very small backlog of stuff I like, but it has started a big jump recently by adapting a lot of heavy titles, three of which are favourite manga of mine. So while I'm sure the workload is literal hell right now, I hope they can pull through it.";False;False;;;;1610606120;;False;{};gj7d3dp;False;t3_kwyqnf;False;False;t3_kwyqnf;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj7d3dp/;1610686508;119;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;So basically they were on the money, cool;False;False;;;;1610606121;;False;{};gj7d3fs;False;t3_kwyqnf;False;False;t3_kwyqnf;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj7d3fs/;1610686508;20;True;False;anime;t5_2qh22;;0;[]; -[];;;baquea;;;[];;;;text;t2_j3k0u;False;True;[];;If you think that's bad, just wait until you learn about VN adaptations!;False;False;;;;1610606173;;False;{};gj7d5p8;False;t3_kwz6fe;False;True;t3_kwz6fe;/r/anime/comments/kwz6fe/why_do_so_many_seasonal_animes_cut_scenes/gj7d5p8/;1610686547;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610606571;;False;{};gj7dn06;False;t3_kx08ob;False;True;t3_kx08ob;/r/anime/comments/kx08ob/i_tried_to_revoice_act_kanekis_and_rize_dialogue/gj7dn06/;1610686833;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dcazzy;;;[];;;;text;t2_7fgfrv73;False;False;[];;I see, thank you for the answer!;False;False;;;;1610606621;;False;{};gj7dp63;True;t3_kwyku8;False;True;t1_gj7c2mw;/r/anime/comments/kwyku8/no_game_no_life_season_2/gj7dp63/;1610686870;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SadoneYukki;;;[];;;;text;t2_10j1zo;False;False;[];;The recent episode ended off on like, half of the first page of 126;False;False;;;;1610606728;;False;{};gj7dtrb;False;t3_kwv4ee;False;True;t1_gj6p2uk;/r/anime/comments/kwv4ee/world_trigger_season_2/gj7dtrb/;1610686947;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ZapsZzz;;;[];;;;text;t2_g2hnymx;False;False;[];;"I was like you a few years ago, having had no time to watch anime for a decade+. So I feel you. - -When you were last watching anime, what were you up to? Haruhi movie (Disappearance of Suzumiya Haruhi)? Or before that? - -Shortish stories hovering around 1 season are: - -- Bunny girl senpai (really good rom and a little com, not ecchi don't be fooled by the title); there's a movie to tie up the final arc of the tv. -- Devil is a part timer - funny reverse Isekai, where the demon king fell to the human world and had to make a mundane living -- Maoyuu (maybe you watched it, 2009) - quite a fun and intelligent show, what if the demon king is actually a pretty girl who wants to work secretly with the hero to bring peace to both races without getting sabotaged by both sides fanatic / greedy factions? -- Kaguya-sama love is war - highschool rom com with a twist - both MC's are clearly attracted to each other but both thinks confessing first would be a loss of face so both try to manipulate the other to confess first. -- freshly finished a month ago, Akudama Drive, a cyberpunk show that's really good and entertaining. Does end, no cliffhangers. - -- Ground control to psychoelectric girl, beautifully made semi SoL semi rom com / mystery. - -Something a little longer, more than 1 season: - -- Love, Chuunibyou and other delusions, 2 seasons, 1 movie (discounting the compilation movie between the 2 seasons), lots of mini specials, but the story does fully end after the movie. A good, comfy, slightly dramatic but not quite Toradora rollercoaster of emotions. Best magic fight scenes for a non fighting show. - -- Space Battleship Yamato 2199 (and 2202 if of have extra time), a beautiful remake of the classic. - -If you had been following the franchise, these are continuations - - -- Full Metal Panic had a new season (Invisible Victory), a lot more actions and drama but there still humorous moments - -- Haruhi has a spin off made, not by KyoAni, but still same voices; the Disappearance of Nagato Yuki-chan. Very nice call backs to the main show, very nice atmospheric music, but purely rom com. - -- Railgun had the 3rd season made, very good show, acing all departments of comedy, drama, actions. - -And then there are the movies which will be good for you for time investment - you probably already know them: - -Your name - -Weathering with you - -Fate stay night heavens feels - -Kimetsu no Yaiba if you have watched this recent show 26 EPs.";False;False;;;;1610606810;;False;{};gj7dxam;False;t3_kwz1o0;False;False;t3_kwz1o0;/r/anime/comments/kwz1o0/im_so_out_of_the_anime_loop_for_years_now_and_i/gj7dxam/;1610687007;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;Bunny girl senpai;False;False;;;;1610606871;;False;{};gj7dzxw;False;t3_kwzed3;False;False;t3_kwzed3;/r/anime/comments/kwzed3/what_drama_romantic_anime_should_i_watch/gj7dzxw/;1610687054;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;Orange;False;False;;;;1610606925;;False;{};gj7e28v;False;t3_kwyzsi;False;False;t3_kwyzsi;/r/anime/comments/kwyzsi/looking_for_sad_anime/gj7e28v/;1610687093;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;She was my best girl from episode one. The smoking is a problem, but everything else about her is perfection.;False;False;;;;1610606988;;False;{};gj7e4vd;False;t3_kx0avk;False;True;t3_kx0avk;/r/anime/comments/kx0avk/i_would_take_her_in_a_heartbeat_no_questions/gj7e4vd/;1610687135;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;I didn’t like season one that much mainly bc of episodes 16 and onwards. I enjoyed season 2 a lot though;False;False;;;;1610607007;;False;{};gj7e5qe;False;t3_kwyoqn;False;True;t3_kwyoqn;/r/anime/comments/kwyoqn/just_got_around_to_finally_watching_rezero_and_i/gj7e5qe/;1610687153;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610607023;moderator;False;{};gj7e6ex;False;t3_kx0fps;False;False;t3_kx0fps;/r/anime/comments/kx0fps/i_need_a_downloadable_shonen_anime_to_watch_on/gj7e6ex/;1610687163;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Bluelandya, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610607023;moderator;False;{};gj7e6fp;False;t3_kx0fps;False;False;t3_kx0fps;/r/anime/comments/kx0fps/i_need_a_downloadable_shonen_anime_to_watch_on/gj7e6fp/;1610687163;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Mystic_bodui;;;[];;;;text;t2_3ndrmxhp;False;False;[];;Plastic Memories;False;False;;;;1610607177;;False;{};gj7ecsw;False;t3_kwyzsi;False;True;t3_kwyzsi;/r/anime/comments/kwyzsi/looking_for_sad_anime/gj7ecsw/;1610687273;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dotaproffessional;;;[];;;;text;t2_as5anqx;False;False;[];;Vn?;False;False;;;;1610607193;;False;{};gj7edg8;True;t3_kwz6fe;False;True;t1_gj7d5p8;/r/anime/comments/kwz6fe/why_do_so_many_seasonal_animes_cut_scenes/gj7edg8/;1610687285;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610607228;;False;{};gj7eexq;False;t3_kx0fps;False;True;t3_kx0fps;/r/anime/comments/kx0fps/i_need_a_downloadable_shonen_anime_to_watch_on/gj7eexq/;1610687308;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Krypto404;;;[];;;;text;t2_2zgcc2jz;False;False;[];;I dont mind the smoking that much but i can see where you're coming from. Ill take her ANY DAY no bs;False;False;;;;1610607235;;False;{};gj7ef8m;False;t3_kx0avk;False;True;t1_gj7e4vd;/r/anime/comments/kx0avk/i_would_take_her_in_a_heartbeat_no_questions/gj7ef8m/;1610687313;2;True;False;anime;t5_2qh22;;0;[]; -[];;;VendromLethys;;;[];;;;text;t2_1jrbg8;False;False;[];;For me the smoking is a selling point lol;False;False;;;;1610607364;;False;{};gj7eknu;False;t3_kx0avk;False;True;t1_gj7e4vd;/r/anime/comments/kx0avk/i_would_take_her_in_a_heartbeat_no_questions/gj7eknu/;1610687409;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"I didn't even know ""anime"" was a thing before I watched it; - -Meaning, there's American cartoons, French cartoons, Canadian cartoons, etc... and none of them are ""special"" in any way... Then I watched a ""Japanese cartoons"", and at some point learned that Japanese cartoons are kind of unique for some reason.";False;False;;;;1610607431;;False;{};gj7enf7;False;t3_kwwz6c;False;True;t3_kwwz6c;/r/anime/comments/kwwz6c/what_did_you_think_of_anime_before_you_starting/gj7enf7/;1610687462;1;True;False;anime;t5_2qh22;;0;[]; -[];;;baquea;;;[];;;;text;t2_j3k0u;False;True;[];;Visual novel. As in the source material for series like Fate, Clannad, Higurashi, Grisaia, etc. Because they can get absurdly long, the anime adaptations can cut out as much as 90% or so of the content.;False;False;;;;1610607439;;False;{};gj7enqf;False;t3_kwz6fe;False;False;t1_gj7edg8;/r/anime/comments/kwz6fe/why_do_so_many_seasonal_animes_cut_scenes/gj7enqf/;1610687468;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Haikyu, food wars, death Note, One Piece, seven deadly sins, saiki - -Don't know if all of them are available to download";False;False;;;;1610607576;;False;{};gj7etbw;False;t3_kx0fps;False;True;t3_kx0fps;/r/anime/comments/kx0fps/i_need_a_downloadable_shonen_anime_to_watch_on/gj7etbw/;1610687564;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610607589;moderator;False;{};gj7etvx;False;t3_kx0k4c;False;True;t3_kx0k4c;/r/anime/comments/kx0k4c/anyone_know_this_anime/gj7etvx/;1610687573;1;False;False;anime;t5_2qh22;;0;[]; -[];;;retroboomin7;;;[];;;;text;t2_2obx0vd8;False;False;[];;Redo of healer. Just started today;False;False;;;;1610607625;;False;{};gj7evdx;False;t3_kx0k4c;False;True;t3_kx0k4c;/r/anime/comments/kx0k4c/anyone_know_this_anime/gj7evdx/;1610687600;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KendotsX;;;[];;;;text;t2_j6nbtko;False;False;[];;"I think that'd be 124, however I'd recommend going back to 104, since the anime skips an arc. - -Edit: Yeah, I somehow missed the ""days"", forgrt about this comment.";False;False;;;;1610607763;;1610656693.0;{};gj7f0zk;False;t3_kwzd0o;False;False;t3_kwzd0o;/r/anime/comments/kwzd0o/i_just_finished_watching_rainbow_days_absolutely/gj7f0zk/;1610687695;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jward;;;[];;;;text;t2_3ct0;False;False;[];;"Both shows are full of feels, but I don't know if I'd call them depressing. They're not suffer porn. If they were just hitting the sad notes all the time they wouldn't be nearly as good as they are. The low points hit hard because they contrast with the highs. - -They'll likely make you cry. But they won't make you hate life. Quite the opposite.";False;False;;;;1610608031;;False;{};gj7fbyv;False;t3_kwz7xr;False;True;t3_kwz7xr;/r/anime/comments/kwz7xr/if_i_watch_your_lie_in_april_and_violet/gj7fbyv/;1610687891;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Megamoncha;;;[];;;;text;t2_eyueb;False;False;[];;More the MC than the show but Eren from AoT.;False;False;;;;1610608139;;False;{};gj7fg88;False;t3_kwug43;False;True;t3_kwug43;/r/anime/comments/kwug43/what_shows_do_you_think_need_fully_watching_in/gj7fg88/;1610687977;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlankHeroineFluff;;;[];;;;text;t2_11lqj3;False;False;[];;"Didn't think of them as anything but regular cartoons since I was a kid when I first watched anime, though that was because the ones I watched then were mostly the accessible, debatably ""kid-safe"" types (ie, Pokemon, Digimon Tamers, Voltes V, Speed Racer, Cardcaptor Sakura, Yu Yu Hakusho, and Slam Dunk).";False;False;;;;1610608181;;False;{};gj7fhxl;False;t3_kwwz6c;False;True;t3_kwwz6c;/r/anime/comments/kwwz6c/what_did_you_think_of_anime_before_you_starting/gj7fhxl/;1610688004;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Star_Trekkie;;;[];;;;text;t2_jms350l;False;False;[];;I would highly recommend “Beyond the Boundary,” as it is a beautiful anime with some mild romance included.;False;False;;;;1610608673;;False;{};gj7g1bf;False;t3_kx0sdv;False;True;t3_kx0sdv;/r/anime/comments/kx0sdv/anime_with_romance_sub_plot/gj7g1bf/;1610688333;3;True;False;anime;t5_2qh22;;0;[]; -[];;;rinmperdinck;;;[];;;;text;t2_6zv5a5ul;False;False;[];;How big is MAPPA? Are they big enough to have separate teams for each project or is there like one OP elite team doing everything?;False;False;;;;1610608708;;False;{};gj7g2px;False;t3_kwyqnf;False;False;t1_gj7d3dp;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj7g2px/;1610688358;24;True;False;anime;t5_2qh22;;0;[]; -[];;;W1ndow_Watcher;;;[];;;;text;t2_7c95bu0k;False;False;[];;Akudama drive finally some that has it in there list. That show is fucking amazing it’s probably my favorite show for the fall season;False;False;;;;1610608779;;False;{};gj7g5gp;False;t3_kwts5k;False;False;t1_gj6snns;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj7g5gp/;1610688420;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Boujoulo;;;[];;;;text;t2_6iczsif5;False;False;[];;I grew up watching pokemon but I honestly didn’t think of it as anime but just a cartoon since I watched it in dubbed. Honestly until I was 12-ish I didn’t even know it was made in Japan. I didn’t really have any negative thoughts about anime, I simply thought of it as another art medium though.;False;False;;;;1610608834;;False;{};gj7g7ox;False;t3_kwwz6c;False;True;t3_kwwz6c;/r/anime/comments/kwwz6c/what_did_you_think_of_anime_before_you_starting/gj7g7ox/;1610688465;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;FMA 2003 or FMA:B;False;False;;;;1610608850;;False;{};gj7g8ay;False;t3_kx0fps;False;False;t3_kx0fps;/r/anime/comments/kx0fps/i_need_a_downloadable_shonen_anime_to_watch_on/gj7g8ay/;1610688475;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Klutzy_Dimension_926;;;[];;;;text;t2_8kd6p8yj;False;False;[];;your lie in april;False;False;;;;1610608883;;False;{};gj7g9ln;False;t3_kwyzsi;False;True;t3_kwyzsi;/r/anime/comments/kwyzsi/looking_for_sad_anime/gj7g9ln/;1610688501;0;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;I don’t really want to know how much space One Piece in its entirety would take up.;False;False;;;;1610608929;;False;{};gj7gber;False;t3_kx0fps;False;False;t1_gj7etbw;/r/anime/comments/kx0fps/i_need_a_downloadable_shonen_anime_to_watch_on/gj7gber/;1610688532;2;True;False;anime;t5_2qh22;;0;[]; -[];;;taotakeo;;;[];;;;text;t2_1hyt4ppt;False;False;[];;"I've read this one. survival anime and pretty good but it does get stale after a while but since the adaptation won't get to the point so its all fine. idk why they've choosen such an old looking art style for anime though. - -p.s.its written by the author who wrote first few chapters of Ajin manga (roughly corresponding to first 4 Ajin episodes)";False;False;;;;1610609189;;False;{};gj7glmi;False;t3_kwuoou;False;True;t3_kwuoou;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj7glmi/;1610688703;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RazorReviews;;;[];;;;text;t2_q3427;False;False;[];;"**Top 3 favorite:** - -1) Ishuzoku Reviewers- initally watched for memes but unironically became a favorite of mine. To me this is something that *only* anime could do which is why I appreciate it so much. It's also a great adaptation with it deviating from the manga a lot but all of the new content added to the experience. - -2) Fruits Basket S2- I already loved Kyo but now Yuki is on my favorite characters list he is pretty goated and his development is absolutely some of my favorite in anime. - -3) Dorohedoro- having now read the manga I can't believe they were somehow able to adapt it but they did. And the unique mixture of 2D and 3D has finally broken the curse to me and I can handle cg in anime MUCH better than I used to. It's hard to describe the show succintly, it is simply unique and in that way divine. - -**Biggest disappointment:** Japan Sinks 2020-Seeing Yuasa's name in the credits drew many in such as myself but after 3 episodes of watching aliens survive an apocalyptic scenario I was done and watched a recap on youtube, Definetly glad I missed out.";False;False;;;;1610609318;;False;{};gj7gqu4;False;t3_kwts5k;False;True;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj7gqu4/;1610688797;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Joker-Perplexer;;;[];;;;text;t2_1qtm0358;False;False;[];;get a load of this rem fan;False;False;;;;1610609577;;False;{};gj7h15s;False;t3_kwyoqn;False;True;t1_gj7e5qe;/r/anime/comments/kwyoqn/just_got_around_to_finally_watching_rezero_and_i/gj7h15s/;1610688992;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KendotsX;;;[];;;;text;t2_j6nbtko;False;False;[];;"Well we know for a fact that Jujutsu and AoT have sperate teams. I don't know if they have other teams though, because in 2020 they've had two shows running at the same time during each season. That's not something that can be done with two teams alone. - -Then again, Mappa are known for relying heavily on outsourcing, so a good director (with the good connections) can create the team they need even if Mappa didn't have it.";False;False;;;;1610609590;;1610611210.0;{};gj7h1nt;False;t3_kwyqnf;False;False;t1_gj7g2px;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj7h1nt/;1610689001;63;True;False;anime;t5_2qh22;;0;[]; -[];;;Fluffy9345;;;[];;;;text;t2_2od0d93r;False;False;[];;Aren't there only 57 chapters?;False;False;;;;1610609850;;False;{};gj7hbvd;True;t3_kwzd0o;False;True;t1_gj7f0zk;/r/anime/comments/kwzd0o/i_just_finished_watching_rainbow_days_absolutely/gj7hbvd/;1610689351;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BigBoulderingBalls;;;[];;;;text;t2_60iscmi7;False;False;[];;I feel like they weren't that sad... especially violet evergarden.;False;False;;;;1610609882;;False;{};gj7hd70;False;t3_kwz7xr;False;True;t3_kwz7xr;/r/anime/comments/kwz7xr/if_i_watch_your_lie_in_april_and_violet/gj7hd70/;1610689375;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;KendotsX;;;[];;;;text;t2_j6nbtko;False;False;[];;No. It's complete with 235 chapters, 172 of which have been translated.;False;False;;;;1610609992;;False;{};gj7hhdd;False;t3_kwzd0o;False;True;t1_gj7hbvd;/r/anime/comments/kwzd0o/i_just_finished_watching_rainbow_days_absolutely/gj7hhdd/;1610689458;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610610144;moderator;False;{};gj7hn9q;False;t3_kx14c7;False;True;t3_kx14c7;/r/anime/comments/kx14c7/what_is_the_difference_between_the_two_beyond_the/gj7hn9q/;1610689591;1;False;False;anime;t5_2qh22;;0;[]; -[];;;PrimaryMarrow44;;;[];;;;text;t2_9a52q0ud;False;False;[];;Based on your list I recomend a few anime: Steins Gate, Bunny girl sempai, and Full Metal Alchemist Brotherhood.;False;False;;;;1610610182;;False;{};gj7hoqa;False;t3_kwx0pv;False;True;t3_kwx0pv;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj7hoqa/;1610689617;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AmGeiii;;;[];;;;text;t2_333d5xtn;False;False;[];;One is a recap and the other is a sequel;False;False;;;;1610610524;;False;{};gj7i1qi;False;t3_kx14c7;False;True;t3_kx14c7;/r/anime/comments/kx14c7/what_is_the_difference_between_the_two_beyond_the/gj7i1qi/;1610689864;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;The first movie is a recap,with just an extended ending plot twist. on the other hand the 2nd movie is a direct sequel to the series and gives a conclusive ending to it. You can skipp the first movie if you completely remember the series;False;False;;;;1610610574;;False;{};gj7i3o6;False;t3_kx14c7;False;False;t3_kx14c7;/r/anime/comments/kx14c7/what_is_the_difference_between_the_two_beyond_the/gj7i3o6/;1610689897;4;True;False;anime;t5_2qh22;;0;[]; -[];;;CringeKage222;;;[];;;;text;t2_2v8v29g9;False;False;[];;Miura Sayed that there are gonna be two more guts vs griffith in an interview a couple of years ago;False;False;;;;1610610761;;False;{};gj7iaqc;False;t3_kwsq0g;False;True;t1_gj6wq2m;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj7iaqc/;1610690015;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Nice sarcasm;False;False;;;;1610611101;;False;{};gj7inl4;False;t3_kx0fps;False;True;t1_gj7eexq;/r/anime/comments/kx0fps/i_need_a_downloadable_shonen_anime_to_watch_on/gj7inl4/;1610690230;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"Seems like the general consensus was that mappa is too young, and they're above average. - -Seems like Mappa was destined to be a hit studio";False;False;;;;1610611139;;False;{};gj7ioyq;False;t3_kwyqnf;False;False;t3_kwyqnf;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj7ioyq/;1610690254;42;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;Ugh, i'll come back to this post tomorrow. I don't remember all the anime I watched last season, but the webtoons would be near the end.;False;False;;;;1610611183;;False;{};gj7iql5;False;t3_kwts5k;False;True;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj7iql5/;1610690281;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;Oh damn, I remember Kids On The Slope. It's really good, you should check it out if you haven't yet.;False;False;;;;1610611339;;False;{};gj7iwic;False;t3_kwyqnf;False;False;t3_kwyqnf;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj7iwic/;1610690381;38;True;False;anime;t5_2qh22;;0;[]; -[];;;CringeKage222;;;[];;;;text;t2_2v8v29g9;False;False;[];;You could have just read the manga you know, that way your brain wouldn't have melted;False;False;;;;1610611448;;False;{};gj7j0nb;False;t3_kwsq0g;False;True;t1_gj6u7wk;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj7j0nb/;1610690467;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mjrbks;;;[];;;;text;t2_11rslemr;False;False;[];;Enjoyed the manga a while back, can’t wait to see this. Granted it isn’t the best trailer I’ve ever seen, but I know the content should drive enough interest by itself.;False;False;;;;1610611603;;False;{};gj7j6aj;False;t3_kwuoou;False;True;t3_kwuoou;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj7j6aj/;1610690594;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Pretty sure thats aot, or tpn as the 2nd spot;False;False;;;;1610611671;;False;{};gj7j8sm;False;t3_kwyoqn;False;True;t1_gj74j2i;/r/anime/comments/kwyoqn/just_got_around_to_finally_watching_rezero_and_i/gj7j8sm/;1610690639;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZapsZzz;;;[];;;;text;t2_g2hnymx;False;False;[];;Didn't you just answered yourself? To include those it's take longer, which for seasonal shows they don't have an infinite amount of runtime. So trimming becomes necessary.;False;False;;;;1610611990;;False;{};gj7jkio;False;t3_kwz6fe;False;False;t3_kwz6fe;/r/anime/comments/kwz6fe/why_do_so_many_seasonal_animes_cut_scenes/gj7jkio/;1610690853;4;True;False;anime;t5_2qh22;;0;[]; -[];;;knokaka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/knokaka?order=4;light;text;t2_ytri4;False;False;[];;"Favorite : Bofuri -Least favorite : God of Highschool - -That strictly to my little anime list i watch in 2020. I'm sure there are better/worse for it tho";False;False;;;;1610612052;;False;{};gj7jmsx;False;t3_kwts5k;False;False;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj7jmsx/;1610690894;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;Showing some love to uzaki, honestly was a highlight of the year while it was airing;False;False;;;;1610612055;;False;{};gj7jmxj;False;t3_kwts5k;False;True;t1_gj6lx15;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj7jmxj/;1610690896;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;I think it comes down to the preference of the creator. The general assumption is that AMV are longer, while edits are shorter, but I wouldn't say that it's set in stone.;False;False;;;;1610612122;;False;{};gj7jpdx;False;t3_kx1dyc;False;False;t3_kx1dyc;/r/anime/comments/kx1dyc/difference_between_anime_edits_and_amv/gj7jpdx/;1610690961;6;True;False;anime;t5_2qh22;;0;[]; -[];;;holdUp-_-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/holdUp-_-;light;text;t2_2e45c0xz;False;False;[];;Yo I didn't see a single person mentioning Oregairu season 3. It provided a very satisfying and sweet ending to the franchise;False;False;;;;1610612302;;False;{};gj7jw0v;False;t3_kwts5k;False;False;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj7jw0v/;1610691086;2;True;False;anime;t5_2qh22;;0;[];True -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;wdym, it's a good show if you want a revenge story.;False;False;;;;1610612448;;False;{};gj7k1e2;False;t3_kwwakl;False;True;t1_gj6purv;/r/anime/comments/kwwakl/redo_of_healer_censored_vs_uncensored/gj7k1e2/;1610691182;0;True;False;anime;t5_2qh22;;0;[]; -[];;;BurritoBread;;;[];;;;text;t2_5m9sd3gt;False;False;[];;thx;False;False;;;;1610612569;;False;{};gj7k5ov;True;t3_kx1dyc;False;False;t1_gj7jpdx;/r/anime/comments/kx1dyc/difference_between_anime_edits_and_amv/gj7k5ov/;1610691263;2;True;False;anime;t5_2qh22;;0;[]; -[];;;xCASTERx;;;[];;;;text;t2_2xmu5ifi;False;False;[];;I know precisely how you feel. 👍;False;False;;;;1610612592;;False;{};gj7k6iz;False;t3_kx1lqr;False;False;t3_kx1lqr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj7k6iz/;1610691281;9;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610612664;moderator;False;{};gj7k96v;False;t3_kx1mt4;False;True;t3_kx1mt4;/r/anime/comments/kx1mt4/which_software_to_use_in_editing_picture/gj7k96v/;1610691328;1;False;False;anime;t5_2qh22;;0;[]; -[];;;SpecialChain;;;[];;;;text;t2_7tv0lefo;False;False;[];;"Hmm, it's hard to categorize it. It's not technically a ""game"" (although there *is* an objective in that other world).";False;False;;;;1610612848;;False;{};gj7kfvh;False;t3_kwuoou;False;False;t1_gj783l0;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj7kfvh/;1610691452;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SpecialChain;;;[];;;;text;t2_7tv0lefo;False;False;[];;People get transported into a world full of skyscrapers, with masked killers running around. What is this world? Why are they here? Who are the masked killers? What's the objective to get out of here? Those will be some of the main story aspects.;False;False;;;;1610612972;;False;{};gj7kkcl;False;t3_kwuoou;False;True;t1_gj6i5kc;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj7kkcl/;1610691541;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fribbtastic;;;[];;;;text;t2_o1ar0;False;False;[];;"That really depends on how ""deep"" you want to get into this. - -Paint, a standard software on Windows, can do this already in which you can add pictures, resize and add text. Then there are other, more advanced software like Gimp (free) or Photoshop (paid) and many others that have a lot more tools for picture manipulation. - -Using those applications, there is no ""one button"" you click to do this though. - -Maybe there are Meme Generators that do this for you online in which you can upload different pictures, put them where you want, add some text and it generates a whole picture from it. But I don't know any of those.";False;False;;;;1610613078;;False;{};gj7ko4x;False;t3_kx1mt4;False;True;t3_kx1mt4;/r/anime/comments/kx1mt4/which_software_to_use_in_editing_picture/gj7ko4x/;1610691604;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Yukihimeee;;;[];;;;text;t2_twjga;False;False;[];;The manga’s current arc is even more awesome and mind blowing!!;False;False;;;;1610613084;;False;{};gj7kobo;False;t3_kx1lqr;False;False;t3_kx1lqr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj7kobo/;1610691608;31;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;PIXLR which is a free smartphone app that I have for some reason seems to do the job for me (with its collage option), this is more of a picture editing question as opposed to an anime question though;False;False;;;;1610613214;;False;{};gj7ksyu;False;t3_kx1mt4;False;True;t3_kx1mt4;/r/anime/comments/kx1mt4/which_software_to_use_in_editing_picture/gj7ksyu/;1610691694;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Marugado;;;[];;;;text;t2_56v5eqdk;False;False;[];;FINALLY SOMEONE SAID APPARE-RANMAN! good this show was so unique;False;False;;;;1610613229;;False;{};gj7ktlc;False;t3_kwts5k;False;True;t1_gj6r4t7;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj7ktlc/;1610691705;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi mikeyous, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610613606;moderator;False;{};gj7l7fb;False;t3_kx1ti4;False;True;t3_kx1ti4;/r/anime/comments/kx1ti4/i_need_anime_recommendations/gj7l7fb/;1610691964;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Hells7rom;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Hells7rom;light;text;t2_3jumls03;False;False;[];;First is recap except few minutes of new scenes at the end and 2nd movie is continuation of series and first movie;False;False;;;;1610613638;;False;{};gj7l8l6;False;t3_kx14c7;False;True;t3_kx14c7;/r/anime/comments/kx14c7/what_is_the_difference_between_the_two_beyond_the/gj7l8l6/;1610691984;1;True;False;anime;t5_2qh22;;0;[]; -[];;;something_Ac3;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Something_Ac3?q=Something_Ac3;light;text;t2_rw3xfwo;False;False;[];;I hope it gets an adaption someday;False;False;;;;1610613880;;False;{};gj7lhbx;False;t3_kx1lqr;False;False;t1_gj7kobo;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj7lhbx/;1610692132;4;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"They have like 150 or 160 employees, roughly 130 or so work on anime and most of them have executive or supervising roles because they hire legions of freelancers (probably also the cheapest) for their projects. Their size demands to churn out a couple of shows per season or they will implode and their creative leads get worked to the bone. - -Maruyama Masao has since left Mappa, the studio he founded, to found another studio, resembling the fate of Madhouse. And MAPPA is starting to lose their identity, even their original anime largely do not really belong to them. - -I just hope that ZLS Revenge will be great before they slowly become late Madhouse 2.0 after burning their creative staff. Edit: I also hope for more Dorohedoro";False;False;;;;1610613980;;1610629653.0;{};gj7ll0w;False;t3_kwyqnf;False;False;t1_gj7g2px;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj7ll0w/;1610692194;25;True;False;anime;t5_2qh22;;0;[]; -[];;;shockwave1211;;;[];;;;text;t2_buqu1;False;False;[];;hxh was quite the ride, I remember going into it people hyped up the chimera ant arc so hard i didn't think it could possibly be that good, but at the end of it I was speechless, its a damn shame the series will never get a real conclusion due to the health of the artist;False;False;;;;1610614249;;False;{};gj7luq7;False;t3_kx1lqr;False;False;t3_kx1lqr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj7luq7/;1610692359;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"Sorry, your submission has been removed. - -- This doesn't appear to be about [anime per our definition](https://www.reddit.com/r/anime/wiki/rules#wiki_everything_posted_here_must_be_anime_specific). - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610614301;moderator;False;{};gj7lwjy;False;t3_kx1mt4;False;True;t3_kx1mt4;/r/anime/comments/kx1mt4/which_software_to_use_in_editing_picture/gj7lwjy/;1610692388;1;True;False;anime;t5_2qh22;;0;[]; -[];;;piegon_;;;[];;;;text;t2_53xiijpq;False;False;[];;A top tier anime (imo) is that time I got reincarnated as a slime;False;False;;;;1610614317;;False;{};gj7lx4s;False;t3_kx1ti4;False;True;t3_kx1ti4;/r/anime/comments/kx1ti4/i_need_anime_recommendations/gj7lx4s/;1610692398;1;True;False;anime;t5_2qh22;;0;[]; -[];;;justsome_stranger;;;[];;;;text;t2_9jtprb0w;False;False;[];;Assassination classroom, fate series, claymore, great teacher onizuka, I want to eat your pancreas, silent voice, parasite, mushishi, natsume yuujinchou, overlord, samurai champloo, gurren lagann, violet evergarden, vinland saga and terror in resonance. There they should keep you busy for a while;False;False;;;;1610614330;;1610614737.0;{};gj7lxmv;False;t3_kx1ti4;False;True;t3_kx1ti4;/r/anime/comments/kx1ti4/i_need_anime_recommendations/gj7lxmv/;1610692405;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Asentum;;;[];;;;text;t2_hj5oo;False;False;[];;Now catch up to the manga and be depressed with the rest of us.;False;False;;;;1610614359;;False;{};gj7lyoh;False;t3_kx1lqr;False;False;t3_kx1lqr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj7lyoh/;1610692422;110;True;False;anime;t5_2qh22;;0;[]; -[];;;Virtuous__Treaty;;;[];;;;text;t2_7cfjjgl7;False;False;[];;i read this manga several years ago, glad it got an anime now;False;False;;;;1610614641;;False;{};gj7m8pu;False;t3_kwuoou;False;True;t3_kwuoou;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj7m8pu/;1610692588;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fribbtastic;;;[];;;;text;t2_o1ar0;False;False;[];;"IMO it depends on how you interpret what an AMV is. - -A 30-second clip with music could be considered an AMV. But not every AMV also has a full song or even a continuing song. - -For example, two different AMVs with the same Anime and same song - -* https://www.youtube.com/watch?v=LciLTWIk_HE is more of a continues song but also not the full song either -* https://www.youtube.com/watch?v=T1mqVGlAOXg is using the same song more as a support element - -In fact, the 2nd one actually reminds me more of a Trailer than an AMV but it can still be labelled an AMV. - -In the end, AMV means Anime Music Video, so an Anime with Music can be considered an AMV.";False;False;;;;1610615008;;False;{};gj7mlyq;False;t3_kx1dyc;False;True;t3_kx1dyc;/r/anime/comments/kx1dyc/difference_between_anime_edits_and_amv/gj7mlyq/;1610692802;3;True;False;anime;t5_2qh22;;0;[]; -[];;;timojenbin;;;[];;;;text;t2_3lseg1m;False;False;[];;I binged the whole season in one night. I never do that.;False;False;;;;1610615037;;False;{};gj7mmzx;False;t3_kwts5k;False;True;t1_gj6v9iv;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj7mmzx/;1610692819;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"Was definitely a highlight for me as well; - -The season when it aired was the worst season ever for me (only watched 3 shows, when I usually watch 8-10 shows). But Uzaki was really fun, so there's that!";False;False;;;;1610615146;;False;{};gj7mqzq;False;t3_kwts5k;False;True;t1_gj7jmxj;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj7mqzq/;1610692885;1;True;False;anime;t5_2qh22;;0;[]; -[];;;2lesslonelypeople;;;[];;;;text;t2_y4gdnlc;False;False;[];;"I started 2020 watching plenty of anime but as the year went on schoolworks got in the way so I didn't watch that much that being said - -My top 3 fave would be (in no order I just like them) - -1. Interspecies Reviewer- Fun show, Pushed the boundaries of what is considered to be ecchi, simple plot (guys have sex with other beings to earn money by reviewing them) yet somehow it doesn't wear off quickly plus the creativity of each being means every episode is different from the rest. -2. Rent a girlfriend- Oh boi this gonna be a controversial one, I hate/like Kazuya as a character on one side he's this horny yet kind dude (who reminds me of a lot of people including myself) then on the other he's a dumbass who thinks with his emotions not his mind. Kazuya and Mami are two character archetypes we see in real life, of course the two of them are extreme versions with Kazuya being your average horny teen and Mami being this slutty/bitch under a good girl image. -3. Majo no Tabitabi- It's a nice breath of fresh air to have this kind of show, unlike other fantasy shows this one is a chill (for the most part) show showcasing the journey of Elaina. I liked that each episode is just random snippets of Elaina roaming around meeting various people and being part of their lives but my fave one is the final episode where we get to see some of the possible ""endings"" Elaina might have if she chose a different path. It made me realize that you can't turn back your life once you choose something that's it so you have to make the most of it. - -Shoutout to: Sing Yesterday for Me and Higurashi, Sing yesterday for me would've been in the the top 3 if the ending was handled properly";False;False;;;;1610615377;;False;{};gj7mzbk;False;t3_kwts5k;False;True;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj7mzbk/;1610693017;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeGirlMariam;;;[];;;;text;t2_5k8efnfk;False;False;[];;"Favourite sequel : Haikyuu to the top 2nd cour, Fruits basket - -Favourite non sequel : Talentless nana, Jujutsu kaisen 1st cour - -Least favourite anime : The day I became god, Love live nijisaki";False;False;;;;1610615444;;False;{};gj7n1pg;False;t3_kwts5k;False;False;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj7n1pg/;1610693058;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FearlessOverlord_;;;[];;;;text;t2_1haeq1mq;False;False;[];;I thought I wouldn’t be interested in anime and I didn’t know where to watch it.;False;False;;;;1610615466;;False;{};gj7n2hh;False;t3_kwwz6c;False;True;t3_kwwz6c;/r/anime/comments/kwwz6c/what_did_you_think_of_anime_before_you_starting/gj7n2hh/;1610693071;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Egavans;#ffaa55;anidb;[];d2715212-bcaf-11e4-bce0-22000b36913c;"https://anidb.net/perl-bin/animedb.pl?show=mylist&uid=784403";light;text;t2_v8xtq;False;False;[];;"Violet Evergarden is melancholic and has some crushingly sad scenes and episodes, but is ultimately hopeful. - -YLiA is written with the specific intent of inflicting the most gut-wrenching misery possible. I watched it five years ago and still haven't fully recovered.";False;False;;;;1610615505;;False;{};gj7n3wx;False;t3_kwz7xr;False;True;t3_kwz7xr;/r/anime/comments/kwz7xr/if_i_watch_your_lie_in_april_and_violet/gj7n3wx/;1610693094;1;True;False;anime;t5_2qh22;;0;[]; -[];;;stephenthatfoste;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Rexagonal;light;text;t2_kqk1f;False;False;[];;In/Spectre is good I thought. Kinda limps across the finish line, but it's got romance subplot.;False;False;;;;1610616001;;False;{};gj7nlf3;False;t3_kx0sdv;False;True;t3_kx0sdv;/r/anime/comments/kx0sdv/anime_with_romance_sub_plot/gj7nlf3/;1610693395;1;True;False;anime;t5_2qh22;;0;[];True -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610616422;;False;{};gj7o0db;False;t3_kwzsqh;False;True;t3_kwzsqh;/r/anime/comments/kwzsqh/please_help_me_remember_the_name_of_this_anime/gj7o0db/;1610693632;1;True;False;anime;t5_2qh22;;0;[];True -[];;;knokaka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/knokaka?order=4;light;text;t2_ytri4;False;False;[];;"your lie on april a sad - -violet evergarden is a big sad - -violet evergarden at a certain episode is very big sad.";False;False;;;;1610616426;;False;{};gj7o0ik;False;t3_kwz7xr;False;True;t3_kwz7xr;/r/anime/comments/kwz7xr/if_i_watch_your_lie_in_april_and_violet/gj7o0ik/;1610693636;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Necrosaynt;;;[];;;;text;t2_jxl9k;False;False;[];;Your lie in April made me cry like a bitch;False;False;;;;1610616648;;False;{};gj7o885;False;t3_kwz7xr;False;True;t3_kwz7xr;/r/anime/comments/kwz7xr/if_i_watch_your_lie_in_april_and_violet/gj7o885/;1610693757;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;check the resources in r/animewallpaper;False;False;;;;1610616741;;False;{};gj7obkv;False;t3_kx1mt4;False;True;t3_kx1mt4;/r/anime/comments/kx1mt4/which_software_to_use_in_editing_picture/gj7obkv/;1610693811;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WaltzComprehensive13;;;[];;;;text;t2_8verq9jp;False;False;[];;Thanks! I want an easier method than using Paint and more efficient way. Is Gimp good?;False;False;;;;1610617278;;False;{};gj7ou49;True;t3_kx1mt4;False;True;t1_gj7ko4x;/r/anime/comments/kx1mt4/which_software_to_use_in_editing_picture/gj7ou49/;1610694118;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AsuraDeo;;;[];;;;text;t2_905i8ltp;False;False;[];;Pretty much applies now. They are doing amazingly with AOT;False;False;;;;1610617349;;False;{};gj7owky;False;t3_kwyqnf;False;False;t3_kwyqnf;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj7owky/;1610694156;29;True;False;anime;t5_2qh22;;0;[]; -[];;;WaltzComprehensive13;;;[];;;;text;t2_8verq9jp;False;False;[];;I don't have a phone, I'm borrowing my father's PC. Sorry, I found this reddit after typing questions in google.;False;False;;;;1610617413;;False;{};gj7oyut;True;t3_kx1mt4;False;True;t1_gj7ksyu;/r/anime/comments/kx1mt4/which_software_to_use_in_editing_picture/gj7oyut/;1610694191;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fribbtastic;;;[];;;;text;t2_o1ar0;False;False;[];;Gimp is a free and very good editor for pictures. I do not know if it makes this easier or more efficient though.;False;False;;;;1610617431;;False;{};gj7ozg7;False;t3_kx1mt4;False;True;t1_gj7ou49;/r/anime/comments/kx1mt4/which_software_to_use_in_editing_picture/gj7ozg7/;1610694199;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaluyra;;;[];;;;text;t2_15zi88;False;False;[];;this manga is like good mcdonalds, its not that great but its still enjoyable lol it should be pretty fun to watch;False;False;;;;1610617740;;1610618298.0;{};gj7pa0k;False;t3_kwuoou;False;True;t3_kwuoou;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj7pa0k/;1610694368;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sremcanin;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/mrkvaa;light;text;t2_4xt3dgl2;False;False;[];;"I watched the first 12 eps and when she stood up and shouted ""Aaah an eleven!"" she pissed me off reeeally hard";False;False;;;;1610617775;;False;{};gj7pb7o;False;t3_kx1dyc;False;True;t3_kx1dyc;/r/anime/comments/kx1dyc/difference_between_anime_edits_and_amv/gj7pb7o/;1610694385;0;True;False;anime;t5_2qh22;;0;[]; -[];;;CringeKage222;;;[];;;;text;t2_2v8v29g9;False;False;[];;I hope it gets finished someday LMAO;False;False;;;;1610617924;;False;{};gj7pgfe;False;t3_kx1lqr;False;False;t1_gj7lhbx;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj7pgfe/;1610694467;26;True;False;anime;t5_2qh22;;0;[]; -[];;;acllive;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ACLlive;light;text;t2_a9bvp;False;True;[];;As someone who legit loved mappa first few shows my love hasn’t changed they basically hard carried 2020;False;False;;;;1610618171;;False;{};gj7povk;False;t3_kwyqnf;False;False;t1_gj77uiw;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj7povk/;1610694594;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Orsonius2;;;[];;;;text;t2_204y9owl;False;True;[];;">Plunderer - -absolutely atrocious";False;False;;;;1610618175;;False;{};gj7pp0m;False;t3_kwts5k;False;False;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj7pp0m/;1610694596;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WaltzComprehensive13;;;[];;;;text;t2_8verq9jp;False;False;[];;what is resources?;False;False;;;;1610618220;;False;{};gj7pqk5;True;t3_kx1mt4;False;True;t1_gj7obkv;/r/anime/comments/kx1mt4/which_software_to_use_in_editing_picture/gj7pqk5/;1610694620;1;True;False;anime;t5_2qh22;;0;[]; -[];;;acllive;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ACLlive;light;text;t2_a9bvp;False;True;[];;I also recommend Ushio to Tora as well personally, particularly for the JJK watchers that haven’t seen it yet;False;False;;;;1610618230;;False;{};gj7pqva;False;t3_kwyqnf;False;False;t1_gj7iwic;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj7pqva/;1610694625;10;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;means of doing stuff with pictures dude, cmon at least look at the link before asking what resources are if you ask about resources in you damn post;False;False;;;;1610618339;;False;{};gj7pumt;False;t3_kx1mt4;False;True;t1_gj7pqk5;/r/anime/comments/kx1mt4/which_software_to_use_in_editing_picture/gj7pumt/;1610694683;2;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;if you have any questions regarding the content of S2, don't forget the ReZero subreddit is always available.;False;False;;;;1610618386;;False;{};gj7pw97;False;t3_kwyoqn;False;False;t3_kwyoqn;/r/anime/comments/kwyoqn/just_got_around_to_finally_watching_rezero_and_i/gj7pw97/;1610694709;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;"**Favorite**: Kaguya-Sama Season 2 - -**Favorite non-sequel**: Misfit of the Demon Academy - -**Most Dissapointing**: God of Highschool - -**Least favorite anime**: Gibiate";False;False;;;;1610618495;;False;{};gj7q00t;False;t3_kwts5k;False;False;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj7q00t/;1610694765;6;True;False;anime;t5_2qh22;;0;[]; -[];;;WaltzComprehensive13;;;[];;;;text;t2_8verq9jp;False;False;[];;I'm sorry sir;False;False;;;;1610618502;;False;{};gj7q0a0;True;t3_kx1mt4;False;True;t1_gj7pumt;/r/anime/comments/kx1mt4/which_software_to_use_in_editing_picture/gj7q0a0/;1610694769;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"It's ok: https://www.reddit.com/r/Animewallpaper/wiki/index#wiki_guides - -these folks there are also happy to help if you ask at the appropriate place";False;False;;;;1610618657;;False;{};gj7q5k5;False;t3_kx1mt4;False;True;t1_gj7q0a0;/r/anime/comments/kx1mt4/which_software_to_use_in_editing_picture/gj7q5k5/;1610694858;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;I like that your wrote three with three e even if it's just sloppiness on your part;False;False;;;;1610618900;;False;{};gj7qdss;False;t3_kwv61q;False;True;t3_kwv61q;/r/anime/comments/kwv61q/redò_of_a_healer_uncensored/gj7qdss/;1610694988;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HeyYouWhoMe3;;;[];;;;text;t2_9n7tp6ab;False;False;[];;"It’s hard to get excited when you’ve been waiting for over a year for a chapter. - -It’s hard being a HxH and Berserk fan.";False;False;;;;1610618961;;False;{};gj7qfxg;False;t3_kx1lqr;False;False;t1_gj7kobo;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj7qfxg/;1610695025;54;True;False;anime;t5_2qh22;;0;[]; -[];;;EzdePaz;;;[];;;;text;t2_u2xzi;False;False;[];;Punchline was what cemented them as a promising studio to me.;False;False;;;;1610619734;;False;{};gj7r6pw;False;t3_kwyqnf;False;False;t3_kwyqnf;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj7r6pw/;1610695440;12;True;False;anime;t5_2qh22;;0;[]; -[];;;whitetealily;;;[];;;;text;t2_pkcyc;False;False;[];;How and why is **That Time I Got Re-incarnated As A Slime** not on this list? I loved it :D;False;False;;;;1610620172;;False;{};gj7rm6t;False;t3_kwts5k;False;True;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj7rm6t/;1610695680;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Chlorofynn;;;[];;;;text;t2_9cf4rx6m;False;False;[];;I somehow liked the old one way better as I thought it had this specific atmosphere I can't really describe. But it is an awesome anime nevertheless. It caught me really off guard as it starts all cute and innocent and then suddenly gets brutal pretty fast.;False;False;;;;1610620204;;False;{};gj7rncc;False;t3_kx1lqr;False;False;t3_kx1lqr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj7rncc/;1610695701;3;True;False;anime;t5_2qh22;;0;[]; -[];;;pacotacobell;;MAL;[];;http://myanimelist.net/animelist/pacotacobell;dark;text;t2_7gvtd;False;False;[];;Ever since they released Sakamichi no Apollon they were always on my radar. Such a good anime.;False;False;;;;1610620229;;False;{};gj7ro8y;False;t3_kwyqnf;False;True;t1_gj7povk;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj7ro8y/;1610695714;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pacotacobell;;MAL;[];;http://myanimelist.net/animelist/pacotacobell;dark;text;t2_7gvtd;False;False;[];;Sakamichi no Apollon was one of their very first anime, and that was amazing. Once they kept releasing anime in that quality it was easy to see that they could do big things.;False;False;;;;1610620413;;False;{};gj7ruu2;False;t3_kwyqnf;False;False;t1_gj7ioyq;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj7ruu2/;1610695818;14;True;False;anime;t5_2qh22;;0;[]; -[];;;irisverse;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/usernamesarehard;light;text;t2_1dzbqjh4;False;False;[];;"That it was weird shit for weird people. - -My opinion still hasn't changed in that regard, I just no longer automatically conflate ""weird"" with ""bad.""";False;False;;;;1610620597;;False;{};gj7s1kg;False;t3_kwwz6c;False;False;t3_kwwz6c;/r/anime/comments/kwwz6c/what_did_you_think_of_anime_before_you_starting/gj7s1kg/;1610695927;5;True;False;anime;t5_2qh22;;0;[]; -[];;;boredtodeathxx;;;[];;;;text;t2_128mef;False;False;[];;is the manga also unfinished?;False;False;;;;1610620813;;False;{};gj7s99c;False;t3_kx1lqr;False;False;t1_gj7lyoh;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj7s99c/;1610696051;30;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"I'll do some: - -[Welcome to the N-H-K](https://anilist.co/anime/1210/Welcome-to-the-NHK/) Comedy, Drama, Psychological, Romance, Slice of Life - -[Kill la Kill](https://anilist.co/anime/18679/Kill-la-Kill/) Action, Comedy, Ecchi - -[My Teen Romantic Comedy SNAFU](https://anilist.co/anime/14813/My-Teen-Romantic-Comedy-SNAFU/) [Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_yahari_ore_no_seishun_love_comedy_wa_machigatteiru_.2F_oregairu) Comedy, Drama, Romance, Slice of Life - -[Violet Evergarden](https://anilist.co/anime/21827/Violet-Evergarden/) [Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_violet_evergarden) Drama, Fantasy, Slice of Life - -[Re:ZERO - Starting Life in Another World](https://anilist.co/anime/21355/ReZERO-Starting-Life-in-Another-World/) [Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_re.3Azero_kara_hajimeru_isekai_seikatsu) Action, Adventure, Drama, Fantasy, Psychological, Thriller - -[No Game, No Life](https://anilist.co/anime/19815/No-Game-No-Life/) [Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_no_game_no_life) Adventure, Comedy, Ecchi, Fantasy - -[High School DxD](https://anilist.co/anime/11617/High-School-DxD/) Action, Comedy, Ecchi, Fantasy, Romance - -bonus... [Koi Kaze](https://anilist.co/anime/634/Koi-Kaze/) Drama, Psychological, Romance, Slice of Life (you have to pirate this one).";False;False;;;;1610620957;;False;{};gj7seh2;False;t3_kx1ti4;False;True;t3_kx1ti4;/r/anime/comments/kx1ti4/i_need_anime_recommendations/gj7seh2/;1610696139;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kafukator;;MAL;[];;https://myanimelist.net/profile/Piippo;dark;text;t2_mm7y0;False;False;[];;"Well I had completely forgotten about this lol. - -I maintain that the original Garo is still the best thing they've made to date, so in that sense they've only gone downhill for me. Funny how both Garo and Bahamut that I mentioned got absolutely horrendous second seasons later down the line. Mappa seems to have profiled themselves as going for high-profile adaptations of action and other similar stuff, which I don't generally have much interest in, though they've put out some occasional great curveball originals here and there, Zombieland Saga and Taisou Zamurai for example (with a bunch of bad ones mixed in too). So very uneven output, can't say they ""kept the quality up"". - -Of course there's also the fact that in 5 years I've grown a lot less naive about the realities of anime production (hell, Shirobako had just finished airing like a week before that thread was made, and I only watched it a bit later) and Mappa in particular has turned out to be a shining example of pretty much every terrible practice in the industry, from insane workloads and scheduling to poor treatment of their workers. - -So yeah, my opinion's changed, for the worse. I still love Garo and Bahamut, though.";False;False;;;;1610621519;;False;{};gj7syfo;False;t3_kwyqnf;False;False;t1_gj77uiw;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj7syfo/;1610696455;48;True;False;anime;t5_2qh22;;0;[]; -[];;;Kuramhan;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Kuramhan/;light;text;t2_esa7n;False;False;[];;"> I just hope that ZLS Revenge will be great before they slowly become late Madhouse 2.0 after burning their creative staff - -Worth mentioning Madhouse's fate is more tied to it's bankruptcy and and acquisition than just Maruyama leaving. Maruyama left in large part because the new parent company would not give him the freedom the tackle projects like he had been. - -Just because Mappa's business model is toxic doesn't mean they will collapse. Only a few studios have a healthy model to begin with. I certainly don't expect them to become like the late Madhouse, but they may very well continue on at their current output for many years to come.";False;False;;;;1610621624;;False;{};gj7t2bs;False;t3_kwyqnf;False;False;t1_gj7ll0w;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj7t2bs/;1610696512;20;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Thing is, most of their originals aren't even written and produced in-house anymore, they only have a small part in Taiso Samurai for example and they really do their directors dirty, I would not be surprised to see them jump ship and sail to greener pastures;False;False;;;;1610621738;;False;{};gj7t6c9;False;t3_kwyqnf;False;False;t1_gj7t2bs;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj7t6c9/;1610696577;7;True;False;anime;t5_2qh22;;0;[]; -[];;;jameslm12321;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/jameslm12321;light;text;t2_5op481y;False;False;[];;Unfortunately, it is still unfinished.;False;False;;;;1610621746;;False;{};gj7t6mb;False;t3_kx1lqr;False;True;t1_gj7s99c;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj7t6mb/;1610696581;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SkyKoli;;;[];;;;text;t2_bgyva;False;False;[];;Survival Horror Isekai, about the best I can do.;False;False;;;;1610621747;;False;{};gj7t6nn;False;t3_kwuoou;False;False;t1_gj7kfvh;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj7t6nn/;1610696582;5;True;False;anime;t5_2qh22;;0;[]; -[];;;blueorange2601;;;[];;;;text;t2_8jfm92pt;False;False;[];;Yeah, iirc it's almost 2 years now since the last chapter release;False;False;;;;1610621758;;False;{};gj7t72b;False;t3_kx1lqr;False;False;t1_gj7s99c;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj7t72b/;1610696588;81;True;False;anime;t5_2qh22;;0;[]; -[];;;AceOfSerberit;;;[];;;;text;t2_1jfw6dhg;False;False;[];;It's an incredible ride for sure;False;False;;;;1610621856;;False;{};gj7talr;False;t3_kx1lqr;False;True;t3_kx1lqr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj7talr/;1610696643;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dio5000;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gundam336;light;text;t2_5czjwh85;False;False;[];;Time to hit the manga get caught up and be left on boat.......again......;False;False;;;;1610621884;;False;{};gj7tbmz;False;t3_kx1lqr;False;True;t3_kx1lqr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj7tbmz/;1610696658;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;Instead of a long list it's easier for me to say of the Top 100 anime on [MAL](https://myanimelist.net/topanime.php) I've only seen Your Lie In April, Violet Evergarden, A place further than the universe, KonoSuba and Evangelion, plus Demon Slayer that I didn't like, and am waiting for Yuru Camp S2 to finish so I can binge it.;False;False;;;;1610621923;;False;{};gj7td0x;False;t3_kwvq37;False;True;t3_kwvq37;/r/anime/comments/kwvq37/what_are_some_super_popular_anime_that_you_sill/gj7td0x/;1610696679;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;Ch 7.1 at the moment. It's interesting for sure.;False;False;;;;1610622004;;False;{};gj7tfxy;False;t3_kwwakl;False;True;t1_gj6u1b8;/r/anime/comments/kwwakl/redo_of_healer_censored_vs_uncensored/gj7tfxy/;1610696724;0;True;False;anime;t5_2qh22;;0;[]; -[];;;s0ulf000d;;;[];;;;text;t2_8ip1ogav;False;False;[];;Why would you prefer weekly?;False;False;;;;1610622098;;False;{};gj7tjgy;False;t3_kwuoou;False;False;t1_gj6kard;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj7tjgy/;1610696779;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Miridinia;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Carochinha;dark;text;t2_s1gar;False;False;[];;"Two years* - -It's been over two years. Technically it's also been over a year but... two years. Damn.";False;False;;;;1610622257;;False;{};gj7tpds;False;t3_kx1lqr;False;False;t1_gj7qfxg;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj7tpds/;1610696871;31;True;False;anime;t5_2qh22;;0;[]; -[];;;boredtodeathxx;;;[];;;;text;t2_128mef;False;False;[];;oh man, i guess i'll give up on ever seeing the anime continue;False;False;;;;1610622304;;False;{};gj7tr4c;False;t3_kx1lqr;False;False;t1_gj7t72b;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj7tr4c/;1610696896;22;True;False;anime;t5_2qh22;;0;[]; -[];;;W1ndow_Watcher;;;[];;;;text;t2_7c95bu0k;False;False;[];;"My favorite has got to be akudama drive. I fell in love with it from episode one and I still haven’t got back up. Man all likable characters, interesting plot and the show is believable and please don’t compare to Akame ga kill because it’s completely different. - -Number two has to be Danmachi really enjoyed the series from season one and this latest season really hit different and had a nice surprisingly good fight at the end - -I just do three, shout up to all the people who can list more than three. You the real MVPs - -Number three is Gleipnir, to be honest there are a lot of show that I enjoyed more than this one like Tonikawa: over the moon, smile down the runway, love is war season two, kakushigoto, dorohedoro, and damn third season of Kingdom was hype asf. But I decided to place third because it was done good in my opinion and I appreciated the ecchi horror anime. Also I believe it’s Darwin’s game but just better.";False;False;;;;1610622574;;False;{};gj7u0wp;False;t3_kwts5k;False;False;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj7u0wp/;1610697046;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KittenBuns1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KittenBuns1;light;text;t2_5j04zssx;False;False;[];;"**Favorite Sequel:** Re:ZERO S2 - -**Favorite Non-Sequel:** Love Live! Nijigasaki School Idol Club! - -**Least Favorite:** Lapis Re:LIGHTS";False;False;;;;1610622786;;False;{};gj7u906;False;t3_kwts5k;False;False;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj7u906/;1610697173;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Yukihimeee;;;[];;;;text;t2_twjga;False;False;[];;A year!? It’s been 2 years!!!!!!!!! :(;False;False;;;;1610622879;;False;{};gj7ucho;False;t3_kx1lqr;False;True;t1_gj7qfxg;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj7ucho/;1610697224;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HeyYouWhoMe3;;;[];;;;text;t2_9n7tp6ab;False;False;[];;The years kind of just blend together after a while;False;False;;;;1610623680;;False;{};gj7v774;False;t3_kx1lqr;False;False;t1_gj7tpds;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj7v774/;1610697707;6;True;False;anime;t5_2qh22;;0;[]; -[];;;fadasd1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/fadasd;light;text;t2_jbsu6;False;False;[];;I'm sure we'll get a continuation of the anime in about 15 years.;False;False;;;;1610623853;;False;{};gj7vdwy;False;t3_kx1lqr;False;False;t1_gj7tr4c;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj7vdwy/;1610697811;40;True;False;anime;t5_2qh22;;0;[]; -[];;;DamianWinters;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DamianWinters/animelist/Completed;light;text;t2_ju8p3;False;False;[];;wish the main girl had more going on, but the bromance was strong.;False;False;;;;1610624119;;False;{};gj7vo4u;False;t3_kwyqnf;False;False;t1_gj7iwic;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj7vo4u/;1610697972;5;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;"Honestly your list is incomplete until you watch GREAT PRETENDER. Which is the IMO the best original anime in 2020. - -Edit: oops I think I have a wrong opinion";False;False;;;;1610624418;;1610698101.0;{};gj7vzqe;False;t3_kwts5k;False;True;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj7vzqe/;1610698146;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;ayamgoreng39;;;[];;;;text;t2_4ro7hd8m;False;False;[];;its true that its good, but i feel sad that you started from 2011 ver. should have started from the old version of HxH and then continue to 2011 from the greed island arc. itsssss way more intense;False;False;;;;1610624476;;False;{};gj7w1ze;False;t3_kx1lqr;False;True;t3_kx1lqr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj7w1ze/;1610698180;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TheGeassWorld;;;[];;;;text;t2_13nieo;False;False;[];;Micheal Jackson once said: You're not alone, i am here with you - i'm also excited for House Husband;False;False;;;;1610624692;;False;{};gj7waad;False;t3_kwuoou;False;False;t1_gj6pqy7;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj7waad/;1610698305;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610624935;;False;{};gj7wjur;False;t3_kx1lqr;False;True;t3_kx1lqr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj7wjur/;1610698450;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Arrys;;;[];;;;text;t2_bhca6;False;False;[];;"So I tried to watch HXH, and i made it several episodes in. - -But there was this one early stretch of episodes where i swear for what felt like 5 straight episodes they were just taking a test, and the test was “just walk down this tunnel forever”. - -I had a hard time getting invested enough in a small child with a fishing rod to make it any farther. - -Does it really get that good?";False;False;;;;1610625045;;False;{};gj7wo4o;False;t3_kx1lqr;False;False;t3_kx1lqr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj7wo4o/;1610698511;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Hellthrower;;MAL;[];;https://myanimelist.net/profile/Hellthrower;dark;text;t2_kguh4;False;False;[];;what;False;True;;comment score below threshold;;1610625548;;False;{};gj7x87h;False;t3_kwyqnf;False;True;t1_gj7syfo;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj7x87h/;1610698814;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;Kafukator;;MAL;[];;https://myanimelist.net/profile/Piippo;dark;text;t2_mm7y0;False;False;[];;It's a re-evaluation of [what I said 5 years ago](https://www.reddit.com/r/anime/comments/31j5d3/whats_ranime_opinion_on_mappa_studio/cq21jp5/) in the thread OP linked.;False;False;;;;1610625871;;False;{};gj7xl3j;False;t3_kwyqnf;False;False;t1_gj7x87h;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj7xl3j/;1610699015;12;True;False;anime;t5_2qh22;;0;[]; -[];;;WeNTuS;;;[];;;;text;t2_btiic;False;False;[];;"I think he questioned your pretty controversial opinion about Garo being better than any other Mappa's show. Did you watch JJK or new AoT season? - -If you didnt watch their top shows for 2020 you just cannot say they went downhill even if it's just your biased opinion.";False;True;;comment score below threshold;;1610627023;;False;{};gj7yxqw;False;t3_kwyqnf;False;True;t1_gj7xl3j;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj7yxqw/;1610699734;-12;True;False;anime;t5_2qh22;;0;[]; -[];;;AconexOfficial;;;[];;;;text;t2_ybela;False;False;[];;pain;False;False;;;;1610627170;;False;{};gj7z482;False;t3_kwyku8;False;True;t3_kwyku8;/r/anime/comments/kwyku8/no_game_no_life_season_2/gj7z482/;1610699830;1;True;False;anime;t5_2qh22;;0;[]; -[];;;unHolyKnightofBihar;;;[];;;;text;t2_9a23lkt;False;False;[];;"I like the chill atmosphere - -The music - -The visuals - -The fact that the girls go to part time job to support their hobby, instead of having a rich friend . - -Seeing Rin cycle all the way to campsites makes me wanna be more active too.";False;False;;;;1610627171;;False;{};gj7z492;False;t3_kwtjkl;False;True;t3_kwtjkl;/r/anime/comments/kwtjkl/yuru_camp_thursday_anime_discussion_thread_ft/gj7z492/;1610699830;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Re:zero so you can join the current weekly discussions about it;False;False;;;;1610627333;;False;{};gj7zbed;False;t3_kx1ti4;False;True;t3_kx1ti4;/r/anime/comments/kx1ti4/i_need_anime_recommendations/gj7zbed/;1610699939;1;True;False;anime;t5_2qh22;;0;[]; -[];;;maximus_md;;;[];;;;text;t2_3nhroflm;False;False;[];;"It’s honestly amazing, but like any shounen there will always be points where things are stretched out; definitely worth sticking with though";False;False;;;;1610627579;;False;{};gj7zm9v;False;t3_kx1lqr;False;True;t1_gj7wo4o;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj7zm9v/;1610700104;3;True;False;anime;t5_2qh22;;0;[]; -[];;;YKSVOTRUGOY;;;[];;;;text;t2_7n5cxgqa;False;False;[];;First Garo anime is easily better than JJK. So is Bahamut Genesis.;False;False;;;;1610627597;;False;{};gj7zn1v;False;t3_kwyqnf;False;False;t1_gj7yxqw;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj7zn1v/;1610700117;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Hellknightx;;;[];;;;text;t2_46s38;False;True;[];;I don't think it's for everyone. I made it to season 2 or 3 before giving up, but I never really got hooked by it. Just went through the motions, hoping I'd suddenly start loving it like everyone else.;False;False;;;;1610627675;;False;{};gj7zqko;False;t3_kx1lqr;False;False;t1_gj7wo4o;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj7zqko/;1610700171;6;True;False;anime;t5_2qh22;;0;[]; -[];;;maximus_md;;;[];;;;text;t2_3nhroflm;False;False;[];;Looks sick, no clue what it’s about but it gives me Darwin’s Game vibes;False;False;;;;1610627699;;False;{};gj7zrlz;False;t3_kwuoou;False;True;t3_kwuoou;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj7zrlz/;1610700185;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mcchickenngget;;;[];;;;text;t2_38tfo3j2;False;False;[];;Ew;False;False;;;;1610627977;;False;{};gj8042g;False;t3_kwts5k;False;True;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj8042g/;1610700386;0;True;False;anime;t5_2qh22;;0;[]; -[];;;MiLiLeFa;;;[];;;;text;t2_9rxbw;False;False;[];;"Having done a bit of mucking about in nature, I spent a few episodes getting over the internal resistance that Yuru Camp isn't ""proper"" camping. It's all too easy, too comfortable, and with far too many amenities. Where I grew up, while the concept of camping did exist, it was strictly associated with rental cabins, motor homes, and caravans. Sleeping in tents or under the open sky was an activity much more similar to the word ""hiking"". Or in anime terms, think a tiny bit closer to Yama no Susume. - - -And so I watched in disbelief what the characters were presenting as *The Real Nature Experience©*. No walking for several kilometers at a time? No rain? No mud? No mosquitoes? Prepared tenting spots? Buying firewood on location? Toilets available? Jeans? Down jackets? Bringing in supplies with a car? **A suitcase**??? -Their meals are so fancy! They don't shit in holes! -&nbsp; - -Of course, Yuru Camp isn't about hiking, it's about camping. Camping like I know it, though with tents instead of caravans. -While Rins roadtrips are something more familiar to me, by and large the series deals with a completely different hobby. And when it comes to presenting camping, this light and pleasant outdoor activity, the series is quite well done. Yuru Camp emphasizes the positive sides of it, whether a group sharing the moment after a good meal, or being alone far from the hustle and bustle of anyone else. The relatable amateurishness of the Outdoor Activities Club is combined with segments of the seasoned Rin, intertwining both the first step and the thousandth into an overall look at camping. For those with experience, the series is both an endearing look back at your first few times and also an acknowledgment of the quiet confidence which builds up with time. - -All in all Yuru Camp is a realistically idealistic portrayal of the outdoors, a place many of its viewers and readers may have only limited experience with. Sure, the weather's somehow always conveniently pleasant and the ground comfortably dry, but there's no need to scare anyone away. Showing a few cold fingers and some trouble with firewood is perhaps just the sort of challenge to overcome on your first time outside. After all, even the title admits what the series is going for, if only I had bothered to read it. -&nbsp; - -As a sidenote, I own the exact same model of chair that Rin has, bought in Japan, on a camping trip. You'd think it would be a clue not to expect mountaineering.";False;False;;;;1610628158;;False;{};gj80cg4;False;t3_kwtjkl;False;False;t1_gj6aowz;/r/anime/comments/kwtjkl/yuru_camp_thursday_anime_discussion_thread_ft/gj80cg4/;1610700506;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Kafukator;;MAL;[];;https://myanimelist.net/profile/Piippo;dark;text;t2_mm7y0;False;False;[];;I'm watching AoT yes, but I wouldn't consider myself a *huge* fan of it. It's okay, I suppose, but I found Garo's cast and story far more engaging. JJK I didn't bother with, I have no interest whatsoever in action adaptations of long ongoing manga, Shounen Jump especially, and what clips and discussions I've seen makes me confident that I don't like it. I feel the same way towards many of their big adaptations like Kakegurui or Dorohedoro or God of High School, I just don't find them interesting at all. So they've definitely made far less things I like over time.;False;False;;;;1610628369;;False;{};gj80mha;False;t3_kwyqnf;False;False;t1_gj7yxqw;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj80mha/;1610700659;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Darkjetson01;;;[];;;;text;t2_cia6mw7;False;False;[];;"Favorite Anime: Jujutsu Kaisen - -Favorite Sequel: Haikyuu TO THE TOP - -Least Favorite Anime: Kamisama ni Natta hi";False;False;;;;1610628744;;False;{};gj814f5;False;t3_kwts5k;False;True;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj814f5/;1610700934;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Arrys;;;[];;;;text;t2_bhca6;False;False;[];;Okay yeah that sounds a lot like me. And im all for a slow burn start, having seen all of Naruto and similar shows. But in those cases, i felt invested in the MC enough to make the grind worth it.;False;False;;;;1610629151;;False;{};gj81oi8;False;t3_kx1lqr;False;True;t1_gj7zqko;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj81oi8/;1610701232;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Never forget: https://hiatus-hiatus.github.io/;False;False;;;;1610629715;;False;{};gj82h1t;False;t3_kx1lqr;False;False;t1_gj7qfxg;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj82h1t/;1610701667;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Massaman95;;;[];;;;text;t2_zxb3m;False;False;[];;He is right though.;False;False;;;;1610630081;;False;{};gj83042;False;t3_kwx0pv;False;True;t1_gj706lo;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj83042/;1610701956;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fair_Cause_1166;;;[];;;;text;t2_8tj1k0eq;False;False;[];;">I don't think it's for everyone. - -I'm tired of this saying. No game/show/book/movie is for everyone. Turns out people are allowed to have different opinions and tastes. Just like tasty meat is nothing to a vegan. - -Furthermore, people get into HxH expecting Naruto/DBZ battles but HxH is different and that's why it's beloved. And the ONE arc that touches Naruto levels does it for one of the most self-reflective messages that can be delivered, and it ends up being praised not for the fights but for the meaning. - -And no, it's not a unique message, and it doesn't have to be for it to have good delivery.";False;False;;;;1610630389;;False;{};gj83gmo;False;t3_kx1lqr;False;True;t1_gj7zqko;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj83gmo/;1610702206;2;True;False;anime;t5_2qh22;;0;[]; -[];;;er0h;;;[];;;;text;t2_14hv7k;False;False;[];;Sit down. I have news to share;False;False;;;;1610630391;;False;{};gj83gs9;False;t3_kx1lqr;False;True;t3_kx1lqr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj83gs9/;1610702208;1;True;False;anime;t5_2qh22;;0;[]; -[];;;InsomniacAndroid;;;[];;;;text;t2_6jg6u;False;False;[];;The main author has really deliberating health issues with his back, to the point there's weeks where he can't even get out of bed.;False;False;;;;1610630523;;False;{};gj83nym;False;t3_kx1lqr;False;False;t1_gj7s99c;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj83nym/;1610702318;13;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610630587;;1610631676.0;{};gj83rc8;False;t3_kwyqnf;False;True;t1_gj80mha;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj83rc8/;1610702370;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610630841;;False;{};gj8459w;False;t3_kwyqnf;False;True;t1_gj7zn1v;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj8459w/;1610702581;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Hellthrower;;MAL;[];;https://myanimelist.net/profile/Hellthrower;dark;text;t2_kguh4;False;False;[];;"He just wants to appear special. Never heard anyone call aot ""ok"" after season 3.";False;True;;comment score below threshold;;1610631087;;False;{};gj84isn;False;t3_kwyqnf;False;True;t1_gj83rc8;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj84isn/;1610702780;-15;True;False;anime;t5_2qh22;;0;[]; -[];;;8_Pixels;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/8_Pixels;light;text;t2_ufnbx;False;False;[];;"I'll just give my fave for a couple of different catagories. - -***Original show*** - -* Akudama Drive - -***New adaption*** - -* Fate Grand Order Babylonia - -***Sequel*** - -* Kaguya S2 -* ReZero S2 -* Haikyuu TTT -* Railgun T";False;False;;;;1610631334;;False;{};gj84whs;False;t3_kwts5k;False;True;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj84whs/;1610702988;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Florac;;;[];;;;text;t2_vy0sf;False;False;[];;For a while, it felt like MAPPA took on more projects than they could handle at once. This always resulted in their non main projects being sub par. By now however, they are doing much better;False;False;;;;1610632431;;False;{};gj86p8n;False;t3_kwyqnf;False;False;t1_gj7d3dp;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj86p8n/;1610703977;5;True;False;anime;t5_2qh22;;0;[]; -[];;;3htthe;;;[];;;;text;t2_6zrco;False;False;[];;"Or, like he already said, he doesn't have much interest in action adaptations of long ongoing manga. God help you if you think someone not being a huge fan of aot and liking other shows more means that they're trying to be special, lmao. I, too, believe the existence of these ""opinions"" in this world are a myth";False;False;;;;1610632774;;1610632986.0;{};gj87aji;False;t3_kwyqnf;False;False;t1_gj84isn;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj87aji/;1610704302;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Nome_de_utilizador;;;[];;;;text;t2_5z33g;False;False;[];;You had HxH 1999. Then HxH 2011 remake. Fingers crossed for the HxH 2023 re-remake.;False;False;;;;1610633098;;False;{};gj87ujr;False;t3_kx1lqr;False;False;t1_gj7tr4c;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj87ujr/;1610704602;26;True;False;anime;t5_2qh22;;0;[]; -[];;;nthai;;;[];;;;text;t2_b51xw;False;False;[];;The animation in that one feels so real.;False;False;;;;1610633145;;False;{};gj87xfh;False;t3_kwyqnf;False;True;t1_gj7iwic;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj87xfh/;1610704645;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;And an excellent youtube channel called echidnut, who does spoiler free episode breakdowns, and after I've been confused, his videos clear that away.;False;False;;;;1610633192;;False;{};gj880dr;False;t3_kwyoqn;False;True;t1_gj7pw97;/r/anime/comments/kwyoqn/just_got_around_to_finally_watching_rezero_and_i/gj880dr/;1610704688;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cryzzalis;;MAL a-amq;[];;http://myanimelist.net/animelist/Charaxify;dark;text;t2_7j04d;False;False;[];;"I'd list off everything I watched last year, but I can't given that the list is over 100 anime long. I'll just drop my top and bottom 10. - -**Top 10 (from best to worst)** - -1. Gochuumon wa Usagi Desu ka? BLOOM -2. Made in Abyss: Fukaki Tamashii no Reimei -3. Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season -4. Chihayafuru 3 -5. Toaru Kagaku no Railgun T -6. Somali to Mori no Kamisama -7. Yahari Ore no Seishun Love Comedy wa Machigatteiru. Kan -8. Fruits Basket: 2nd Season -9. Quanzhi Gaoshou 2 -10. Haikyuu!! TO THE TOP - -**Bottom 10 (from worst to best)** - -1. ARP: Backstage Pass -2. Shachou, Battle no Jikan desu! -3. Kandagawa Jet Girls OVA -4. Kanojo, Okarishimasu -5. Kamisama ni Natta Hi -6. Tsukiuta. THE ANIMATION 2 -7. Ongaku -8. Shokugeki no Soma: Go no Sara -9. Nü Wushen de Canzhuo 2 -10. Arte";False;False;;;;1610633391;;False;{};gj88cz4;False;t3_kwts5k;False;True;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj88cz4/;1610704884;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nick_BOI;;;[];;;;text;t2_x2i42xd;False;False;[];;It's on my list, though I haven't watched the show at all yet. I need to get to it all;False;False;;;;1610633454;;False;{};gj88gwe;True;t3_kwts5k;False;True;t1_gj7jw0v;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj88gwe/;1610704944;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cryzzalis;;MAL a-amq;[];;http://myanimelist.net/animelist/Charaxify;dark;text;t2_7j04d;False;False;[];;Only the OVA was a 2020 show, the show itself is from an earlier year.;False;False;;;;1610633511;;False;{};gj88kjb;False;t3_kwts5k;False;True;t1_gj7rm6t;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj88kjb/;1610705001;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610633630;;False;{};gj88s4g;False;t3_kwuoou;False;True;t3_kwuoou;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj88s4g/;1610705115;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nick_BOI;;;[];;;;text;t2_x2i42xd;False;False;[];;Completely agree-that's why it's at the bottom.;False;False;;;;1610633631;;False;{};gj88s68;True;t3_kwts5k;False;True;t1_gj7pp0m;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj88s68/;1610705116;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CruisinCinnamon;;;[];;;;text;t2_45sei6q;False;False;[];;The dub trailer has plenty recognizable actors. I wonder if that’s to help people get onboard.;False;False;;;;1610633681;;False;{};gj88vf7;False;t3_kwuoou;False;True;t3_kwuoou;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj88vf7/;1610705165;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Constant_Borborygmus;;;[];;;;text;t2_kz3fvly;False;False;[];;Haha, the tunnel is only for part of one episode. I will always maintain that hxh is a masterpiece, and so I’m biased in saying that you should give it another shot, it truly does reach some astronomical highs. But, if it’s not for you that’s just the truth and so there isn’t much point slogging through something that you’re not interested in!;False;False;;;;1610633693;;False;{};gj88w9c;False;t3_kx1lqr;False;False;t1_gj7wo4o;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj88w9c/;1610705179;29;True;False;anime;t5_2qh22;;0;[]; -[];;;Dotaproffessional;;;[];;;;text;t2_as5anqx;False;False;[];;It won't take a season longer to produce, it would just make a season end in an earlier place. More seasons. But they would have the same runtime;False;False;;;;1610634114;;False;{};gj89nqh;True;t3_kwz6fe;False;True;t1_gj7jkio;/r/anime/comments/kwz6fe/why_do_so_many_seasonal_animes_cut_scenes/gj89nqh/;1610705594;0;True;False;anime;t5_2qh22;;0;[]; -[];;;jojoismyreligion;;;[];;;;text;t2_5j56wzq4;False;False;[];;What's Garo about ?;False;False;;;;1610634250;;False;{};gj89wns;False;t3_kwyqnf;False;True;t1_gj80mha;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj89wns/;1610705729;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bhupeshpr25;;;[];;;;text;t2_78m9sk7m;False;False;[];;Just here to mention Toilet bound Hanako-kun;False;False;;;;1610634386;;False;{};gj8a5sf;False;t3_kwts5k;False;True;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj8a5sf/;1610705868;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Aureus23;;;[];;;;text;t2_lnlscw0;False;False;[];;Sniper Mask FTW!!!!!!;False;False;;;;1610634393;;False;{};gj8a68n;False;t3_kwuoou;False;True;t3_kwuoou;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj8a68n/;1610705873;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kafukator;;MAL;[];;https://myanimelist.net/profile/Piippo;dark;text;t2_mm7y0;False;False;[];;It's a dark fantasy Hero's Journey kind of thing. Based on a tokusatsu series.;False;False;;;;1610634494;;False;{};gj8acyc;False;t3_kwyqnf;False;False;t1_gj89wns;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj8acyc/;1610705975;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WhySoSaltySeriously;;;[];;;;text;t2_jnqistt;False;False;[];;Holy fuck they made Zankyou no terror? AND Bahamut? god damn;False;False;;;;1610634683;;False;{};gj8aphl;False;t3_kwyqnf;False;False;t3_kwyqnf;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj8aphl/;1610706165;7;True;False;anime;t5_2qh22;;0;[]; -[];;;evermuzik;;;[];;;;text;t2_7c3eb;False;False;[];;one can only hope. i would take a straight remake honestly. adding on the next arc would add maybe 12 episodes? lol not much but i'll take it;False;False;;;;1610634861;;False;{};gj8b1bc;False;t3_kx1lqr;False;False;t1_gj87ujr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj8b1bc/;1610706342;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;Attack on titan;False;False;;;;1610634998;;False;{};gj8ban6;False;t3_kwz1o0;False;True;t3_kwz1o0;/r/anime/comments/kwz1o0/im_so_out_of_the_anime_loop_for_years_now_and_i/gj8ban6/;1610706483;1;True;False;anime;t5_2qh22;;0;[]; -[];;;teambald12007;;;[];;;;text;t2_4inj1jtd;False;False;[];;I stopped around Chimera Arc with those boring episodes focusing on the phantom troupe in that cave. I then restarted it, it's really good a solid 9/10 and my 4th favourite anime;False;False;;;;1610635045;;False;{};gj8bdxo;False;t3_kx1lqr;False;True;t3_kx1lqr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj8bdxo/;1610706532;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cryomanco;;;[];;;;text;t2_4et4cky3;False;False;[];;"Crunchy roll has a dub but It varies across regions so a VPN may be needed. -Other than that you have to do something else that I cant mention here.";False;False;;;;1610635216;;False;{};gj8bpox;False;t3_kwz92w;False;True;t3_kwz92w;/r/anime/comments/kwz92w/love_at_first_sight/gj8bpox/;1610706711;1;True;False;anime;t5_2qh22;;0;[]; -[];;;evermuzik;;;[];;;;text;t2_7c3eb;False;False;[];;"The tunnel thing was barely 1 episode? The early arcs deserve criticism but this aint it. - -Admittedly, I wanted to drop the show I think twice during the beginning. Luckily I was able to watch it with a an experienced otaku friend, so he was able to get me to push through the boring bits. - -I'll say this though. Its very interesting how most of the characters you see during that tunnel sections end up being relevant or important later on in the show. Some of the characters end up being fan favorites. Watching this show a second time was a treat and it made the beginning arc much more enjoyable. - -I didnt begin to like the show until the second arc and by that point I was sold entirely. I love how the show takes so many shonen tropes and slyly turns them on its head. - -Back to where you left off in the anime, you are about to meet some awesome villians, no spoilers, but a couple of them are some of the best characters in anime and are fan favorites. You'll notice some characters will remind you of characters from other animes, like DBZ and Naruto, but this is entirely intentional. Unlike those animes, these characters, especially the side characters, have much much more agency in the plot. You might see someone who reminds you of Goku, or Sasuke, but this is only initial impression and they grow into their own fairly quickly. Pretty much every character is interesting and decently fleshed out.";False;False;;;;1610635626;;False;{};gj8ciup;False;t3_kx1lqr;False;False;t1_gj7wo4o;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj8ciup/;1610707179;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Nome_de_utilizador;;;[];;;;text;t2_5z33g;False;False;[];;There is enough content for way more. The last run of chapters were very exhaustive information wise and felt like LN rather than a manga. But just with the first big fight + preparation for the main arc that followed the end of the anime would be enough for a 21 episode show. The problem is that you really can't begin the current arc without it being finished, precisely because you can't dump the amount of characters and information that is introduced on the viewers with no payoff or clear cliffhanger, even if the current arc is shaping to be the best in the series;False;False;;;;1610635685;;False;{};gj8cn3n;False;t3_kx1lqr;False;False;t1_gj8b1bc;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj8cn3n/;1610707244;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Tinkai;;;[];;;;text;t2_5upv9;False;False;[];;"Before watching it I didn't think much of it, thought it was another friendship power anime from looking at the characters, but it gets really, really good. - -One of my favourite animes from recent times.";False;False;;;;1610635759;;False;{};gj8cshe;False;t3_kx1lqr;False;False;t1_gj7wo4o;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj8cshe/;1610707326;4;True;False;anime;t5_2qh22;;0;[]; -[];;;tinadibrani;;;[];;;;text;t2_2lqvzom4;False;False;[];;"Wow. I didn't realize it was that extreme. Poor guy. -And the fact that some people actually think that he's not continuing the series because he's playing Dragon Quest...";False;False;;;;1610635761;;False;{};gj8csjl;False;t3_kx1lqr;False;False;t1_gj83nym;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj8csjl/;1610707327;10;True;False;anime;t5_2qh22;;0;[]; -[];;;evermuzik;;;[];;;;text;t2_7c3eb;False;False;[];;Just finished a 2011 rewatch. I might have to watch the 99 version soon.;False;False;;;;1610635821;;False;{};gj8cwys;False;t3_kx1lqr;False;True;t1_gj7w1ze;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj8cwys/;1610707394;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tinadibrani;;;[];;;;text;t2_2lqvzom4;False;False;[];;I felt so empty when I finished it. I had to distract myself after finishing it so I wouldn't start crying. I did cry though.;False;False;;;;1610635879;;False;{};gj8d15h;False;t3_kx1lqr;False;False;t3_kx1lqr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj8d15h/;1610707460;1;True;False;anime;t5_2qh22;;0;[]; -[];;;evermuzik;;;[];;;;text;t2_7c3eb;False;False;[];;Just finished a rewatch of HxH the other day. Honestly I loved it the first time but it was even better the second time around. I dont understand how Togashi can write so many interesting characters, all with a decent amount of agency, for a story that keeps building on itself. Its rare to find a shonen where I feel like I actually learned some life lessons from and I can walk away from it feeling like a better, more balanced individual.;False;False;;;;1610635934;;False;{};gj8d59p;False;t3_kx1lqr;False;False;t3_kx1lqr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj8d59p/;1610707522;13;True;False;anime;t5_2qh22;;0;[]; -[];;;SerialExperimentAoba;;;[];;;;text;t2_7iykuss6;False;False;[];;"One thing that I *love* about Yuru Camp is the fact that it does not present any character or style as ""correct."" Many shows will depict the Loner (Rin) and introduce them to the Extrovert (Nadeshiko) who shows them the *magical power of friendship*. By the end of the season, the Loner will have learned that being alone is bad and friends are good. Yay. - -Yuru Camp doesn't do that. - -Well, it sort of does. However, I think it's important to note that it also portrays the Loner showing the Extrovert the joys of solo camping, and by the end, Nadeshiko actually goes on her own solo camping trip. In this way, Yuru Camp breaks from the mold of portraying one character as correct and the other as wrong, and shows a much more realistic interpersonal growth towards the middle. Rin *does* go on a group trip, and likes it. **But** Nadeshiko also learns from Rin that being alone is great, too. It portrays camping itself as the ideal of the show, rather than an intangible and preachy concept, such as ""friendship.""";False;False;;;;1610635979;;False;{};gj8d8i3;False;t3_kwtjkl;False;False;t1_gj6aq18;/r/anime/comments/kwtjkl/yuru_camp_thursday_anime_discussion_thread_ft/gj8d8i3/;1610707570;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Xsaderr;;;[];;;;text;t2_62fn42oe;False;False;[];;"my top 10 - -1.Fate/Stay Night Heaven's Feel 3 - -2.Railgun T - -[3](https://3.Re). Golden Kamuy s3 - -[4.Re](https://4.Re) zero s2 first cour - -5.Dorohedoro - -6.Higurashi Gou - -7.Jujutsu Kaisen - -8.Tower of God - -9.Bookworm s2 - -10.A Will Eternal";False;False;;;;1610635995;;False;{};gj8d9nj;False;t3_kwts5k;False;True;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj8d9nj/;1610707587;3;True;False;anime;t5_2qh22;;0;[]; -[];;;evermuzik;;;[];;;;text;t2_7c3eb;False;False;[];;Pretty cool. Im gonna read the manga soon, it sounds dope. I first watched HxH 2 years ago and I was aware of the hiatus thing with Togashi so ive been waiting for new chapters before diving in. Well, 2 years later, and it seems if we dont get a chapter this year then this might be the end =/;False;False;;;;1610636087;;False;{};gj8dgf8;False;t3_kx1lqr;False;True;t1_gj8cn3n;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj8dgf8/;1610707689;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Xsaderr;;;[];;;;text;t2_62fn42oe;False;False;[];;Rewrite anime still makes me wonder how they ruined an amazing VN like that;False;False;;;;1610636269;;False;{};gj8dtqj;False;t3_kwts5k;False;True;t1_gj6ugks;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj8dtqj/;1610707893;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Heigou;;;[];;;;text;t2_c23wx;False;False;[];;punchline was amazing. I watched it twice and it's sitting at a 7.01 on mal. It used to be in the 6.xx range.;False;False;;;;1610636448;;False;{};gj8e6xi;False;t3_kwyqnf;False;False;t1_gj7r6pw;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj8e6xi/;1610708098;6;True;False;anime;t5_2qh22;;0;[]; -[];;;BaduChan;;;[];;;;text;t2_6ev891nm;False;False;[];;Haikyuu are the best and fruit basket both season too;False;False;;;;1610636666;;False;{};gj8emo8;False;t3_kwts5k;False;True;t1_gj7n1pg;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj8emo8/;1610708335;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"Not sure why people are downvoting that question, but to answer it anyway: I'm not a fan of binge watching shows. - -I like weekly watches and discussions that come with it. And it looks like the kind of show that could have good discussions too. - -When the shows are released all at once, people watch them right away, talk about them for a couple days, then that's it, it's forgotten.";False;False;;;;1610636669;;False;{};gj8emv2;False;t3_kwuoou;False;False;t1_gj7tjgy;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj8emv2/;1610708338;10;True;False;anime;t5_2qh22;;0;[]; -[];;;BaduChan;;;[];;;;text;t2_6ev891nm;False;False;[];;Why ew mcchick?;False;False;;;;1610636696;;False;{};gj8eoww;False;t3_kwts5k;False;True;t1_gj8042g;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj8eoww/;1610708370;1;True;False;anime;t5_2qh22;;0;[]; -[];;;s0ulf000d;;;[];;;;text;t2_8ip1ogav;False;False;[];;Okay makes sense;False;False;;;;1610637067;;False;{};gj8fge5;False;t3_kwuoou;False;False;t1_gj8emv2;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj8fge5/;1610708801;2;True;False;anime;t5_2qh22;;0;[]; -[];;;royaldocks;;;[];;;;text;t2_gb8kz;False;False;[];;"I remember Garo it was overshadowed by Fate/Unlimited blade Works that year and many gave it up on the first half but Im glad I sticked to it in the end its probably one of the best examples of how everything pays off in the second half in animes. - -Haven't seen the movie sequel though.";False;False;;;;1610637105;;False;{};gj8fj84;True;t3_kwyqnf;False;True;t1_gj7syfo;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj8fj84/;1610708845;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nome_de_utilizador;;;[];;;;text;t2_5z33g;False;False;[];;Its the longest hiatus to date so even that has been odd even for hiatusxhiatus standards. But the manga will be back for sure, the problem is that usually when it does it runs for about 3 months before resuming its hiatus status. A shame, because I am really loving the current arc (which in itself is a prelude to an even bigger one) but have to accept, that much like berserk, I will just need to keep them at the back of my mind and re-read the last 40 or so chapters everytime a new one is realease after a long hiatus;False;False;;;;1610637336;;False;{};gj8g10a;False;t3_kx1lqr;False;True;t1_gj8dgf8;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj8g10a/;1610709136;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Wuju_Kindly;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/WujuKindly/;light;text;t2_wi5xl;False;False;[];;"People sure love downvoting honest questions, huh? - -Anyways, some of the reason *I* like weekly releases are because it gives me something to look forward to and think about throughout the week and it's less of a commitment to watch something when it has only one or two episodes released. - -Additionally, moods can drastically affect how much enjoyment you get out a series, and by watching it over several months that mood is more averaged. So you're much more unlikely to have a great show ruined because you couldn't get into it due being in a mood that just doesn't suit the show. - -In the same vein, if you're binging multiple shows at a time, you can quickly get burnt out from watching TV. Especially go from something amazing and to something mediocre. Likewise, it lets me more easily compare it with other shows. If I'm watching 10 different shows each week, it's pretty easy to tell which ones are the cream of the crop simply by thinking about which show I'm most looking forward to each week. But binging show after show, if I go from something amazing to something mediocre, that mediocre show is going to feel a lot worse than it actually is. And the opposite is true too. - -But my biggest reason is it gives cliffhangers actual tension. If the episode ends on a cliffhanger but the next episode is out, there's very little tension. You just press play and watch the next one to see where that cliffhanger goes. (Season cliffhangers can go die in a hole though. Especially if there's no sequel confirmed.) - -Lastly, I believe others like the social aspect of weekly shows too. It gives you time to talk to your friends or strangers on the internet and discuss each episode. Whereas if the entire show is released all at once, then there's not really any way to do this and most discussion is limited to the season finale. And worse, if you don't have the time to watch the entire show in a couple days, people might have already grown bored with that discussion and moved on to something else by the time you finish it. - -I mean, just look at the [discussion for the second half Great Pretender](https://www.reddit.com/r/anime/comments/iy1zcl/great_pretender_episode_1523_discussion_megathread/), one of the shows that was regarded as one of the best shows from last year. But the entire thread doesn't even have 300 comments for 9 episodes. Compare that a with something like [SK∞'s discussion for episode 1](https://www.reddit.com/r/anime/comments/ktxcly/sk_episode_1_discussion/), and it's just kind of sad.";False;False;;;;1610637397;;1610637666.0;{};gj8g5li;False;t3_kwuoou;False;True;t1_gj7tjgy;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj8g5li/;1610709209;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Thebubumc;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Bub;light;text;t2_hrym7;False;False;[];;"> I think I like MAPPA, they're like the most ""okay"" studio. - -> They still haven't worked on anything better than Sakamichi though.";False;False;;;;1610637988;;False;{};gj8hf1f;False;t3_kwyqnf;False;False;t1_gj7r6pw;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj8hf1f/;1610709955;8;True;False;anime;t5_2qh22;;0;[]; -[];;;AvatarAarow1;;;[];;;;text;t2_3ve7o5xz;False;False;[];;All of them have dubs and all of them are good. Cowboy bebop and space dandy especially are excellent in dub, but all have non-Japanese settings so dub fits the setting really well;False;False;;;;1610638157;;False;{};gj8hrv1;False;t3_kwv0py;False;True;t1_gj762bv;/r/anime/comments/kwv0py/i_need_suggestions_before_i_die/gj8hrv1/;1610710164;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"Haven't watched Garo but Kids on the Slope is pretty much MAPPA's peak in terms of animation and visuals. - -JJK has had great animation but the art sometimes feels a bit too bland. - -There isn't much special about AoT's production. I haven't been a fan of of how they use the blur way too heavily. Art would've stood out so much more if they changed just a few things";False;False;;;;1610638385;;False;{};gj8i9ef;False;t3_kwyqnf;False;True;t1_gj7yxqw;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj8i9ef/;1610710455;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WatchDude22;;;[];;;;text;t2_jhmn0p3;False;False;[];;Depends on whats in your local area I suppose, I have the pick from “glamping” all the way down to hiking and pitching a tent in the middle of nowhere. Also, although it has been portrayed as idealistic so far, I heard there may be an episode that highlights some of the things that may go wrong with poor planning coming this season.;False;False;;;;1610638418;;False;{};gj8ibwf;False;t3_kwtjkl;False;True;t1_gj80cg4;/r/anime/comments/kwtjkl/yuru_camp_thursday_anime_discussion_thread_ft/gj8ibwf/;1610710494;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Saleenseven;;MAL;[];;https://myanimelist.net/animelist/Saleenseven;dark;text;t2_9jdyo;False;False;[];;As someone said in that post, whats there to dislike? That applies even today;False;False;;;;1610638555;;False;{};gj8iml2;False;t3_kwyqnf;False;True;t3_kwyqnf;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj8iml2/;1610710672;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Arillow;;;[];;;;text;t2_am3zq7;False;False;[];;"Mm last year I didn't really watch much anime, but if I were to make a list it'd go like... - -1. Sword Art Online Alicization: I know this sub has allergy to SAO but I can't help it, I really loved this arc so much. Eugeo still best boy - -2. IDOLiSH7: I binged the entire first season in the start of the year and when second season aired I was already super in love with it. - -3. Haikyuu: I honestly had forgotten about the match from this arc (I read it like ages ago lol), but I guess that's good because I got to experience it all over again and it was so GREAT - -4. Kakushigoto: It was so cute and funny :') - -5. Re:Zero: I finally watched all of it last year just in time to catch up with the last episodes of the first cour, gotta admit it's way better than I expected - -6. Kaguya-sama: I think I liked the first season better but this was still good enough, and I loved Ishigami's arc so much..... - -7. Bandori: Chu2 was still annoying but at least the rest of the season was good. I still think these two seasons were made mostly for the game fans and wish they would have adapted some of the game stories but oh welp.... - -8. Love Live: Nijigasaki: It was good and I loved the songs, although I didn't like the animation that much.... But it's ok because at least they broke away from the ""save the school"" formula lol - -9. Argonavis: The story could get super boring at some points, but I still liked it somehow, especially because Ren and Banri are cuties.... 🥺 - -10. A3!: The animation was Awful, but the story was interesting enough to get me hooked and make me download the game lol - - -So.... yeah most of these are kinda niche and I'll admit I'm too much into idol animes for my own good lmao. I still think SAO was my favorite though, idc how much people dislike it. - - -As for the ones I disliked, idk since I usually drop them as soon as I get bored, but I guess Kamisama ni Natta Hi takes the cake because of how awful the last three or so episodes were.";False;False;;;;1610639012;;1610639193.0;{};gj8jlns;False;t3_kwts5k;False;True;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj8jlns/;1610711277;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bruhmanch;;;[];;;;text;t2_8xkriy11;False;False;[];;Yeah this show was my all-time favorite and based on how much I loved it I cannot really see anything taking it's place for a long time. This show is a beauty and something I will truly never forget, Gon and Killua have such great chemistry and work together so well to form the crazy friendship they have and the show is just amazing all the way through.;False;False;;;;1610639891;;False;{};gj8lij7;False;t3_kx1lqr;False;True;t3_kx1lqr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj8lij7/;1610712465;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Benthekarateboy;;;[];;;;text;t2_1thpf4i2;False;False;[];;I know, but I lost interest in reading because of school. Okay, more like because of me for not able to comprehend to the story and answer questions. Now I can do it, but you hear them ask questions that’s like DEEEP.;False;False;;;;1610640525;;False;{};gj8mw8x;True;t3_kwsq0g;False;False;t1_gj7j0nb;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj8mw8x/;1610713337;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kuddlesworth9419;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kuddlesworth;light;text;t2_btage;False;False;[];;What do you mean used to be, they are still very hit and miss.;False;False;;;;1610640695;;False;{};gj8n9jo;False;t3_kwyqnf;False;True;t1_gj7d3dp;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj8n9jo/;1610713578;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;ElegantTea122;;;[];;;;text;t2_7t0hf3es;False;False;[];;"My favorite's from 2020 in order. - -&#x200B; - -Kakushigoto (9.9) - -Kaguya-sama (9.8) - -Id: Invaded (9.7) - -Talentless Nana (9.5) - -Re: Dive (9.3) - -The Day I Became A God (9.3) - -Science fell in love (8.9) - -&#x200B; - -My favorites made from the year not my favorites that I watched in 2020 considering I started watching in 2020.";False;False;;;;1610640731;;False;{};gj8ncgd;False;t3_kwts5k;False;True;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj8ncgd/;1610713630;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CringeKage222;;;[];;;;text;t2_2v8v29g9;False;False;[];;Manga is not that much reading tho and berserk is pretty infamous for it's visual storytelling and amazing art so you won't find tons of words in there, also you will find the actual plot because non of the anime adaptations actually covered it;False;False;;;;1610640821;;False;{};gj8nji7;False;t3_kwsq0g;False;True;t1_gj8mw8x;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj8nji7/;1610713767;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ElegantTea122;;;[];;;;text;t2_7t0hf3es;False;False;[];;Why is Monstergirl Doctor above Kakushigoto? I put Kakushigoto at the top of my list. Probably just our preferences but I agree that Id: Invaded should be at the top. I would of rated it higher if the ending was better.;False;False;;;;1610640882;;False;{};gj8no7n;False;t3_kwts5k;False;True;t1_gj6lx15;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj8no7n/;1610713854;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ElegantTea122;;;[];;;;text;t2_7t0hf3es;False;False;[];;I had probably a month-long gap while watching the show which kind of affected my rating of it but in that month I started Death Note (still watching it but having trouble continuing). Anyway, when I came back to finish Talentless Nana I realized that it was really really similar to Death Note.;False;False;;;;1610641073;;False;{};gj8o3bg;False;t3_kwts5k;False;True;t1_gj6ci9v;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj8o3bg/;1610714124;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mcchickenngget;;;[];;;;text;t2_38tfo3j2;False;False;[];;Mcchick hahahahahahahha;False;False;;;;1610641136;;False;{};gj8o84t;False;t3_kwts5k;False;True;t1_gj8eoww;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj8o84t/;1610714214;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MannyFresh1982;;;[];;;;text;t2_9nnqkzfo;False;False;[];;"You can smile again.... Probably - -*cries in Departure*";False;False;;;;1610641177;;False;{};gj8obde;False;t3_kx1lqr;False;True;t1_gj7lyoh;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj8obde/;1610714272;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Neronoah;;;[];;;;text;t2_igav3;False;False;[];;It takes a bit. I'd say towards the end of the Hunter Exam arc, during the Zoldyick manor arc or during the colosseum arc you may get hooked. After that is just awesome.;False;False;;;;1610641393;;False;{};gj8osqf;False;t3_kx1lqr;False;True;t1_gj7wo4o;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj8osqf/;1610714596;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Slifer13xx;;MAL;[];;http://myanimelist.net/animelist/Slifer13xx;dark;text;t2_irntz;False;False;[];;"Yuru camp is one of the most comfiest show I've ever seen. -I'm no stranger to camping, at least with a bunch of people. I did some camping with the boy scouts back when I was a boy. My family did some rv camping for a few summers. And I've done some random shit with friends here and there. - -This summer I did a solo* [road trip](https://i.imgur.com/3a0LimU.jpg). Just [me and my cat](https://i.imgur.com/uXsDzle.jpg) driving around southern Norway. One major reason for this was Yuru Camp. It was great! -**Not really solo. I drove alone but I met up with some of my friends and family who was doing the same* - -###1) How appealing does Yuru Camp make camping and outdoor activities seem? -Very, very appealing. I do love outdoor stuff like camping, hiking and all that. But most of the time I'm inside because I can't be bothered to go out and do it. I'm just really fucking lazy. Which is why I enjoy living vicariously through shows like Yuru Camp. It made me really romanticize solo camping though. Which is what I tried to do this summer. - -###2) Rin and Nadeshiko differ not only in personality, but also in how they approach the hobby of camping. How do you feel about the show's depiction of this dichotomy, and whose style do you personally identify with more? - -Like the others has said, it's great. I enjoy both style but I probably prefer Nadeshiko's style. -I've not done solo camping yet. I tried but it was not really solo. But I very much enjoy doing it with friends. Just drinking and having fun. - -###3) How does Yuru Camp differ from other slice of life/iyashikei series? - -It's much more specific. I find that those that are more specific about something are more enjoyable. - -###4) What kind of feelings do you get from the soundtrack? - -Warm and comfy. All around good time. - -###5) Which Yuru Camp character was your favourite and why? - -Rin and Nadeshiko's sister. -Rin because I like her vibe. Just drive out and camp. Read a book and just relax. I envy her. It's something I really want to do myself. - -Sister because much like Rin, I like her vibe. Just drive Nadeshiko around because she loves driving and just chill. Drink a coffee and relax. This is just something that I romanticize.";False;False;;;;1610641761;;False;{};gj8pm9i;False;t3_kwtjkl;False;True;t3_kwtjkl;/r/anime/comments/kwtjkl/yuru_camp_thursday_anime_discussion_thread_ft/gj8pm9i/;1610715126;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lelYaCed;;;[];;;;text;t2_v7hbr;False;False;[];;"If you never got further in than the hunter exam, yes. It gets so, so, so much better. It surpasses what I thought Shonen could do personally and it is definitely a slow burner. - -If you're going to drop it anywhere and say with confidence ""Hunter x Hunter is not for me"", the earliest I would say is finish the Heavens Arena arc (Ep 27-36). You're introduced to the power system which is used for the rest of the show (which doesn't even get near it's peak in Heaven's Arena) and you get the conclusion to a plot set up in the Hunter Exam, which is a fine ending point for someone that isn't invested.";False;False;;;;1610641906;;1610642207.0;{};gj8pxvc;False;t3_kx1lqr;False;True;t1_gj7wo4o;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj8pxvc/;1610715329;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BaduChan;;;[];;;;text;t2_6ev891nm;False;False;[];;Mcchick looks more interesting, what say?;False;False;;;;1610642040;;False;{};gj8q8js;False;t3_kwts5k;False;True;t1_gj8o84t;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj8q8js/;1610715518;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nick_BOI;;;[];;;;text;t2_x2i42xd;False;False;[];;Love that show!;False;False;;;;1610642144;;False;{};gj8qgvt;True;t3_kwts5k;False;True;t1_gj8a5sf;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj8qgvt/;1610715691;1;True;False;anime;t5_2qh22;;0;[]; -[];;;texanresurrection44;;;[];;;;text;t2_8tia6ca5;False;False;[];;Now comes the depression. No other anime will ever compare. It will take a while before you can watch other shows again;False;False;;;;1610642803;;False;{};gj8ry5a;False;t3_kx1lqr;False;False;t3_kx1lqr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj8ry5a/;1610716688;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ddd4175;;;[];;;;text;t2_dd7oy;False;False;[];;Damn I loved Zankyou no Terror, this is even more promising.;False;False;;;;1610642845;;False;{};gj8s1ml;False;t3_kwyqnf;False;False;t1_gj8aphl;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj8s1ml/;1610716748;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Apprehensive_Noise88;;;[];;;;text;t2_9kvau1rb;False;False;[];;So does this mean that the uncensored version episodes would be released later or at the same time?;False;False;;;;1610642864;;False;{};gj8s35s;False;t3_kwwakl;False;False;t3_kwwakl;/r/anime/comments/kwwakl/redo_of_healer_censored_vs_uncensored/gj8s35s/;1610716775;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Benthekarateboy;;;[];;;;text;t2_1thpf4i2;False;False;[];;I figured. Something felt missing in there. Then again, they did skip what happened, or how they got back into the world;False;False;;;;1610642973;;False;{};gj8sc0d;True;t3_kwsq0g;False;True;t1_gj8nji7;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj8sc0d/;1610716954;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SingleMagician3397;;;[];;;;text;t2_7r75lhkm;False;False;[];;considering this uncensored version was released the day after of censored version... yes;False;False;;;;1610643049;;False;{};gj8sieb;False;t3_kwwakl;False;True;t1_gj8s35s;/r/anime/comments/kwwakl/redo_of_healer_censored_vs_uncensored/gj8sieb/;1610717084;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hieillua;;;[];;;;text;t2_hrcwx;False;False;[];;There were still a lot of threads left open, but I did think that where the 2011 anime ended was a really good spot and can be satisfying enough. Imagine if it ended in the middle of an arc and the anime had to come up with a filler ending. That would've been terrible.;False;False;;;;1610643418;;False;{};gj8td6c;False;t3_kx1lqr;False;False;t1_gj7luq7;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj8td6c/;1610717727;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Hieillua;;;[];;;;text;t2_hrcwx;False;False;[];;If you don't like it, just don't watch it. If an anime doesn't grab you at the beginning, just drop it. I personally liked it from the start and it only became better and better. Maybe it's just not for you and that's fine.;False;False;;;;1610643510;;False;{};gj8tkz2;False;t3_kx1lqr;False;False;t1_gj7wo4o;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj8tkz2/;1610717876;9;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Godless_Writer;;;[];;;;text;t2_40zf7m6m;False;False;[];;Is it just me or does it feel like people forgot they made Dororo;False;False;;;;1610643549;;False;{};gj8to63;False;t3_kwyqnf;False;False;t3_kwyqnf;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj8to63/;1610717944;6;True;False;anime;t5_2qh22;;0;[]; -[];;;nerdboner;;;[];;;;text;t2_6r6ly;False;False;[];;Remembering about the potential of dreaming machine hurts;False;False;;;;1610643624;;False;{};gj8tues;False;t3_kwyqnf;False;True;t1_gj7d3dp;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj8tues/;1610718067;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hieillua;;;[];;;;text;t2_hrcwx;False;False;[];;"If you haven't yet, check out Yu Yu Hakusho. It's also made by Togashi (HxH's mangaka). It will help you detox from a lack of HxH, it's also really good 90s shounen that stands above many other shounen. It was the direct inspiration for Bleach, and it's imo far better than Bleach. - -You'll also see where Togashi got a lot of his own HxH characters from and how certain ideas were already in YYH but got executed differently in HxH.";False;False;;;;1610643790;;False;{};gj8u82h;False;t3_kx1lqr;False;False;t3_kx1lqr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj8u82h/;1610718315;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Arrys;;;[];;;;text;t2_bhca6;False;False;[];;Yeah, so far that’s the road ive taken. Not every anime is for everyone.;False;False;;;;1610643832;;False;{};gj8ubha;False;t3_kx1lqr;False;True;t1_gj8tkz2;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj8ubha/;1610718378;0;True;False;anime;t5_2qh22;;0;[]; -[];;;MiLiLeFa;;;[];;;;text;t2_9rxbw;False;False;[];;"> Also, although it has been portrayed as idealistic so far, I heard there may be an episode that highlights some of the things that may go wrong with poor planning coming this season. - -Ah, I only saw the first season and its specials. Sounds like a natural progression for the series to push the boundary a bit after having introduced the basics. - ->Depends on whats in your local area I suppose, I have the pick from “glamping” all the way down to hiking and pitching a tent in the middle of nowhere. - -Absolutely. A lot Japanese live in one of the major metropolitan areas, and their contact with nature is mostly limited to parks, resorts, or cultivated lands. While I haven't looked into it, I don't get the impression it's common to go camping with schools or families. My trip there was relatively short, but while getting out of cities was simple, getting onto trails and paths without amenities was quite a bit harder. - -Where I grew up even the most urban person would associate ""going into nature"" with at least an hour or two of walking with backpacks. If not due to direct experience, then through cultural osmosis, as such activity was and still remains incredibly common, whether it be short day trips or longer hikes. -Though it helps that there are no big urban areas over there, at the very worst you would be only an hour away from mostly untouched forests and hills.";False;False;;;;1610643963;;False;{};gj8um6c;False;t3_kwtjkl;False;True;t1_gj8ibwf;/r/anime/comments/kwtjkl/yuru_camp_thursday_anime_discussion_thread_ft/gj8um6c/;1610718572;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hieillua;;;[];;;;text;t2_hrcwx;False;False;[];;"Yup. For me personally there were certain themes and ways characters were presented that got me invested immediately. Gon felt a bit ''off'' with his mindset towards finding his father and discovering whats so great about being a Hunter, that just made me curious about that world. It gave me the sense of adventure and I love that, while it seemed like the world was going to get slowly built up with new things added each episode. That kept me watching until I reached certain points in the show that really made me love it because the pay off was so good after a very solid build-up. - -If those things don't grab you and you have no emotional investment, it's better to just watch something else. I did the same with My Hero, which I dropped after the second season. It just didn't grab me.";False;False;;;;1610644073;;False;{};gj8uv7k;False;t3_kx1lqr;False;True;t1_gj8ubha;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj8uv7k/;1610718748;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Arrys;;;[];;;;text;t2_bhca6;False;False;[];;"Whaaaaaat? That’s crazy how we’re almost two sides of the same coin, because My Hero is literally my favorite anime. - -To each their own, truly.";False;False;;;;1610644449;;False;{};gj8vq73;False;t3_kx1lqr;False;True;t1_gj8uv7k;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj8vq73/;1610719374;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Critical-Film;;;[];;;;text;t2_kexbnai;False;False;[];;I miss Satoshi Kon.;False;False;;;;1610644535;;False;{};gj8vx7n;False;t3_kwyqnf;False;False;t3_kwyqnf;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj8vx7n/;1610719515;5;True;False;anime;t5_2qh22;;0;[]; -[];;;2ndgenerationtrash;;;[];;;;text;t2_7nr0ud9a;False;False;[];;Same.;False;False;;;;1610644631;;False;{};gj8w5d2;False;t3_kx1lqr;False;True;t1_gj8cwys;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj8w5d2/;1610719673;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sAmdong71;;;[];;;;text;t2_31awvfb3;False;False;[];;"My absolute favorite anime was Great Pretender. Although the end was less than expected, The ride itself was so entertaining and the aesthetic and characters stood out to me. The locations and the jazz make it seem like a western tv series. Idk why I am so attached it but It’ll remember it as a classic(at least for me). The amount of mentions GP has in this thread is sad though... - - - -My least favorite anime last year was They Day I Became A God. The ending itself was overhyped and the mc was unlikable at the last episodes . What stood out to me was the pacing too. It still has really good SOL moments that got a good laugh out of me but safe to say, it’s my least favorite. - - - -Now why am I making an exception for GP instead of TDIBAG? Well, GP had amazing characters, good and unexpected plot. Absolutely beautiful ost and visuals? While the ending episodes were lackluster, the rest of the series were still finely crafted. Kamisama still has good comedy and slice of life episodes however the actual plot itself didn’t progress that very well and the only good character arc that made me invested with Izanamis.";False;False;;;;1610644758;;False;{};gj8wg0t;False;t3_kwts5k;False;True;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj8wg0t/;1610719887;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CringeKage222;;;[];;;;text;t2_2v8v29g9;False;False;[];;They skipped the first arc, large chunks of the second arc (the golden age) including most of guts backstory, the third arc, and large chunks of both the 4th and 5th arcs. They also merged elements from the 1st 4th and 5th arcs in the first episode of 2016. Btw they can't continue the seires no matter what because they completely removed a few things which are extremely important and without them it's practically impossible to continue it. Oh and the 5 arc which is what berserk 2017 covered in 12 episodes is a lot longer than the golden age just throwing it out there.;False;False;;;;1610645021;;False;{};gj8x1ue;False;t3_kwsq0g;False;True;t1_gj8sc0d;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj8x1ue/;1610720353;2;True;False;anime;t5_2qh22;;0;[]; -[];;;THE_REAL_RAKIM;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/midoriya04;light;text;t2_2t8d53up;False;False;[];;"Is your name anyway related to Kafuka Fuura from Sayonara Zetsubou Sensei? Or something completely different? -I started that series recently so ig that's your username stood out a bit for me.";False;False;;;;1610646100;;False;{};gj8zhvm;False;t3_kwyqnf;False;True;t1_gj8acyc;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj8zhvm/;1610722035;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hoovile;;;[];;;;text;t2_3w317ead;False;False;[];;Ohh ok. I watched the 2nd movie right after I finished the series so I’m going to skip the first movie. Thank you very much!;False;False;;;;1610646463;;False;{};gj90bl0;False;t3_kx14c7;False;True;t1_gj7i3o6;/r/anime/comments/kx14c7/what_is_the_difference_between_the_two_beyond_the/gj90bl0/;1610722641;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hoovile;;;[];;;;text;t2_3w317ead;False;False;[];;That helped a lot. Thanks!;False;False;;;;1610646545;;False;{};gj90iib;False;t3_kx14c7;False;True;t1_gj7i1qi;/r/anime/comments/kx14c7/what_is_the_difference_between_the_two_beyond_the/gj90iib/;1610722786;1;True;False;anime;t5_2qh22;;0;[]; -[];;;veilsofrealitydotcom;;skip7;[];;;dark;text;t2_xnuyosb;False;False;[];;"Damn I really need to make myself watch this. I hate the art style, which is normally not a big deal for me in shows or games, but my thumbnail senses are usually reliable. - -I saw a few episodes and could see that it was definitely more than what I would expect but the way people talk about it I really need to get into it soon.";False;False;;;;1610647272;;False;{};gj9266n;False;t3_kx1lqr;False;True;t3_kx1lqr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj9266n/;1610724004;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610647276;;False;{};gj926j6;False;t3_kwyqnf;False;True;t1_gj8hf1f;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj926j6/;1610724010;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;One that rarely gets mentioned due to being short (12 x 12 minutes) is Ao-chan Can't Study, a recent (spring '19), funny little rom com.;False;False;;;;1610647306;;False;{};gj928x0;False;t3_kwwup5;False;True;t3_kwwup5;/r/anime/comments/kwwup5/good_rom_com_anime/gj928x0/;1610724053;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Benthekarateboy;;;[];;;;text;t2_1thpf4i2;False;False;[];;Got it! Sucks how anime series do that sometimes. They either skip so many things, or just leave it at a cliffhanger. Reading may be an option, but seeing it visually in animation mode is awesome!;False;False;;;;1610647564;;False;{};gj92tm4;True;t3_kwsq0g;False;True;t1_gj8x1ue;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj92tm4/;1610724462;1;True;False;anime;t5_2qh22;;0;[]; -[];;;veilsofrealitydotcom;;skip7;[];;;dark;text;t2_xnuyosb;False;False;[];;We have very different taste:);False;False;;;;1610647827;;False;{};gj93ehx;False;t3_kwts5k;False;True;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj93ehx/;1610724854;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CringeKage222;;;[];;;;text;t2_2v8v29g9;False;False;[];;">Sucks how anime series do that sometimes. - -The thing is that most anime don't do it that badly I can barely name 5 other anime that did it that badly (tokyo ghoul, the god of highschool, nobless, tower of god and probably the promised neverland season 2) - ->Reading may be an option, but seeing it visually in animation mode is awesome! - -Not as awesome as looking at things like [that](https://www.reddit.com/r/Berserk/comments/595gvt/the_amazing_artwork_of_berserk/)";False;False;;;;1610647992;;False;{};gj93rpc;False;t3_kwsq0g;False;True;t1_gj92tm4;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj93rpc/;1610725108;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thesanmich;;;[];;;;text;t2_de43k;False;False;[];;MAPPA is what Madhouse was 5+ years ago.;False;False;;;;1610648268;;False;{};gj94dsf;False;t3_kwyqnf;False;True;t3_kwyqnf;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj94dsf/;1610725537;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jojoismyreligion;;;[];;;;text;t2_5j56wzq4;False;False;[];;Damn. Now I'm curious to know your top 10.;False;False;;;;1610648363;;False;{};gj94lew;False;t3_kwx0pv;False;False;t1_gj6xbwd;/r/anime/comments/kwx0pv/what_do_you_think_of_my_top_10_anime/gj94lew/;1610725688;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Meowthlife;;;[];;;;text;t2_9hrdi3dr;False;False;[];;Thankyou im going to watch that next!;False;False;;;;1610649577;;False;{};gj97a49;True;t3_kx1lqr;False;True;t1_gj8u82h;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj97a49/;1610727604;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nanashi-74;;;[];;;;text;t2_5x0k2vam;False;False;[];;"That's not a good idea I think. The anime has a nice ""conclusion"" so why get on in an unfinished journey?";False;False;;;;1610649582;;False;{};gj97ai4;False;t3_kx1lqr;False;True;t1_gj7lyoh;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj97ai4/;1610727612;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cbot12;;;[];;;;text;t2_18iru7dt;False;False;[];;Glad to see Fruits Basket getting some love :);False;False;;;;1610649758;;False;{};gj97on4;False;t3_kwts5k;False;True;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj97on4/;1610727885;2;True;False;anime;t5_2qh22;;0;[]; -[];;;shampoofaeryyy;;;[];;;;text;t2_6myheq9t;False;False;[];;i didnt expected that this will get an adaptation lol;False;False;;;;1610649824;;False;{};gj97tyx;False;t3_kwuoou;False;False;t3_kwuoou;/r/anime/comments/kwuoou/high_rise_invasion_official_trailer_netflix/gj97tyx/;1610727989;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ben99ny22;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ben99ny;light;text;t2_14rmpidg;False;False;[];;"fuck that guy who said NGNL was shit. - -Also, just because you didn't like them (and i really hate HOTD) they were amazingly animated shows. It would be the source material that you didn't like, not because madhouse made them.";False;False;;;;1610650086;;False;{};gj98eun;False;t3_kwyqnf;False;True;t3_kwyqnf;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj98eun/;1610728388;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Baguy21;;;[];;;;text;t2_53ou3uu1;False;False;[];;And killing it with Jujutsu;False;False;;;;1610650106;;False;{};gj98ght;False;t3_kwyqnf;False;False;t1_gj7owky;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj98ght/;1610728420;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Benthekarateboy;;;[];;;;text;t2_1thpf4i2;False;False;[];;"You win :) - -That does look cool. Still, I prefer visually though. But art style in manga do look REALLY cool";False;False;;;;1610650524;;False;{};gj99e5d;True;t3_kwsq0g;False;True;t1_gj93rpc;/r/anime/comments/kwsq0g/berserk_and_black_clover_how_strong_is_guts/gj99e5d/;1610729086;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kafukator;;MAL;[];;https://myanimelist.net/profile/Piippo;dark;text;t2_mm7y0;False;False;[];;Yup, this account is named after Kafuka. SZS has been my favorite series for many many years.;False;False;;;;1610650531;;False;{};gj99epd;False;t3_kwyqnf;False;True;t1_gj8zhvm;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj99epd/;1610729097;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NeuroPalooza;;;[];;;;text;t2_xpy9h;False;False;[];;"I don't think I'll ever get over the fact that this didn't get finished >< Maybe one day... but I suspect it will remain undone";False;False;;;;1610650790;;False;{};gj99zie;False;t3_kx1lqr;False;True;t3_kx1lqr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj99zie/;1610729506;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thefztv;;;[];;;;text;t2_6dzql;False;False;[];;"I wasn't really ""hooked"" until the Heaven's Arena arc where the power system was introduced (which is a major reason people love the show as well), which is like episode 27 I believe? I felt the same as you up until that point. - -But from there it really only ups in quality in terms of story/writing. If you are someone who generally dislikes watching longer running shows, like myself, I would atleast give HxH a shot as it's definitely one of the highest quality longer running anime.";False;False;;;;1610652533;;False;{};gj9dtbb;False;t3_kx1lqr;False;True;t1_gj7wo4o;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj9dtbb/;1610732231;1;True;False;anime;t5_2qh22;;0;[]; -[];;;reddit_is_tarded;;;[];;;;text;t2_mfhc6;False;False;[];;Those boring episodes with the phantom troupe in a cave? You mean my favorite two episodes out of all 148 that I probably rewatched like 30 times?;False;False;;;;1610653191;;False;{};gj9f92a;False;t3_kx1lqr;False;False;t1_gj8bdxo;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj9f92a/;1610733264;5;False;False;anime;t5_2qh22;;0;[]; -[];;;pay019;;;[];;;;text;t2_7q6rf;False;False;[];;I always figured he didn't continue the series since his wife is the Sailor Moon creator so he doesn't need the money to shorten his QoL. Especially considering I didn't know his health was that bad.;False;False;;;;1610653321;;False;{};gj9fjec;False;t3_kx1lqr;False;True;t1_gj8csjl;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj9fjec/;1610733470;1;True;False;anime;t5_2qh22;;0;[]; -[];;;katsu045;;;[];;;;text;t2_2s28oigd;False;False;[];;"1 Toaru Kagaku no Railgun T - -2Fruits Basket - -3Golden Kamuy - -4Kaguya-sama - -5Re:Zero - -6Haikyuu!! - -7Jujutsu Kaisen (TV) - -8princess connect - -9Deca-Dence - -10 Smile Down The Runway.";False;False;;;;1610653330;;False;{};gj9fk2n;False;t3_kwts5k;False;True;t3_kwts5k;/r/anime/comments/kwts5k/what_were_your_favorate_and_least_favorate_anime/gj9fk2n/;1610733484;2;True;False;anime;t5_2qh22;;0;[]; -[];;;richdoughnutOG;;;[];;;;text;t2_4icy5ow;False;False;[];;[Remembers me of the words of a certain fat man from 5 year ago](https://youtu.be/Fib4-S9ENpE?t=549);False;False;;;;1610653434;;False;{};gj9fsan;False;t3_kwyqnf;False;True;t3_kwyqnf;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj9fsan/;1610733651;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jsmith4567;;;[];;;;text;t2_mw9uj;False;False;[];;Luffy has a great chance of finding the One Piece before HxH gets off the book.;False;False;;;;1610654398;;False;{};gj9hvxc;False;t3_kx1lqr;False;True;t1_gj7t72b;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj9hvxc/;1610735216;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Marvelous-otaku;;;[];;;;text;t2_4raa90zi;False;False;[];;So is the uncensored version on hi dive or no?;False;False;;;;1610656857;;False;{};gj9nm1j;False;t3_kwwakl;False;False;t3_kwwakl;/r/anime/comments/kwwakl/redo_of_healer_censored_vs_uncensored/gj9nm1j/;1610739186;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;"One thing that I find interesting about Yuru Camp is it's use of technology. Maybe I'm just tipping the hand about how much I like watching old slice-of-life series, but this is the only one I've seen that integrates stuff like group chats and sharing pictures into the core of its narrative. - -It's something that's become more relevant in quarantine times is this ability for technology to bridge physical gaps between friends and family, like the way Nadeshiko was able to experience two different sunrises with two separate groups of friends despite not being able to see it herself because she was busy working. Rin's out solo-camping, but she's keeping in contact with friends and family, uploading pictures, sending texts, etc., so she's not just a lone wolf disconnected from society. I think it's a more modern take on how people experience the world nowadays, like it's a thing to be shared with others rather than something you just keep to yourself. - -(I posted this in the S2E2 discussion thread, but I think it applies to the series as a whole.)";False;False;;;;1610657084;;False;{};gj9o7vl;False;t3_kwtjkl;False;False;t1_gj6ara4;/r/anime/comments/kwtjkl/yuru_camp_thursday_anime_discussion_thread_ft/gj9o7vl/;1610739579;6;True;False;anime;t5_2qh22;;0;[]; -[];;;spevoz;;;[];;;;text;t2_32xw7bnw;False;False;[];;Somehow it is far more unfinished.;False;False;;;;1610659850;;False;{};gj9vdbw;False;t3_kx1lqr;False;True;t1_gj7s99c;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj9vdbw/;1610744425;1;True;False;anime;t5_2qh22;;0;[]; -[];;;whittleseys;;;[];;;;text;t2_2jvujxyt;False;False;[];;It is not on HIDIVE;False;False;;;;1610660217;;False;{};gj9wajp;True;t3_kwwakl;False;True;t1_gj9nm1j;/r/anime/comments/kwwakl/redo_of_healer_censored_vs_uncensored/gj9wajp/;1610745023;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Compugeki;;;[];;;;text;t2_3rln75n4;False;False;[];;"I felt the same way. Part of what made HxH so interesting to me is that [it has a sense of organicness](https://old.reddit.com/r/anime/comments/krpays/i_want_to_hear_your_honest_opinion_of_hxh/gidal4q/) that I don't get with other shows, particularly other shounen. Something about them feels so railroaded and predictable and ""been there done that"". And it's not because of the tropes considering HxH is chock full of shounen tropes. I guess it's more to do with execution of those tropes. - -HxH feels like it just smacks me out of nowhere with awesome moments that feel retroactively earned. I don't see anything surpassing it as my favorite because no one seems to write like Togashi.";False;False;;;;1610660600;;False;{};gj9x99z;False;t3_kx1lqr;False;True;t3_kx1lqr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj9x99z/;1610745634;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kuramhan;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Kuramhan/;light;text;t2_esa7n;False;False;[];;"There's a lot more to a studio than originals. Some director spend their entire careers working on adaptations. Not that I would be surprised if some of their director's left, but I think ""greener pastures"" are harder to find in the anime industry than you're implying.";False;False;;;;1610660855;;False;{};gj9xwnw;False;t3_kwyqnf;False;False;t1_gj7t6c9;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj9xwnw/;1610746035;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Compugeki;;;[];;;;text;t2_3rln75n4;False;False;[];;"I think it reaches highs that every other shounen and the majority of action/adventure series can only dream of reaching. But to get to those moments you'll have to sit through admittedly low lows. It's why I wouldn't recommend HxH to most people even though it's by far my favorite anime. - -I explain a bit more [here](https://old.reddit.com/r/anime/comments/krpays/i_want_to_hear_your_honest_opinion_of_hxh/gidal4q/) what makes HxH stand out to me if you're curious.";False;False;;;;1610660877;;False;{};gj9xyox;False;t3_kx1lqr;False;False;t1_gj7wo4o;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj9xyox/;1610746071;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sahithkiller;;;[];;;;text;t2_5zd0pjy5;False;False;[];;The endless chimera ant arc hype backfired in my case. Really loved both yorknew and greed island arc and was hyped to see something even better. For me atleast after kites death the arc was really slow and during the final battle nothing basically happened for like 5-6 episodes. Due to that I personally rank it under the likes of other shonen like yyh and one piece.;False;False;;;;1610661448;;False;{};gj9z7qr;False;t3_kx1lqr;False;False;t1_gj7luq7;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gj9z7qr/;1610746904;7;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"They could always just join back with Maruyama Masao. Or co-found a new studio, they have enough big names under their belt now. - -For Mappa their appeal in my eyes has been their originals for a big part, their adaptations are a mixed big even though the trend is positive at least for first seasons. Still, if they keep their practices up as they are, it will end in the Madhouse situation where they are just a shell and have no identity left and just have to hope to find the right freelancers for every key role";False;False;;;;1610661734;;False;{};gj9zt9q;False;t3_kwyqnf;False;True;t1_gj9xwnw;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gj9zt9q/;1610747327;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheRantMan321;light;text;t2_efp1aj;False;False;[];;"HxH will probably always be my favorite piece of fiction ever! - -It's such masterclass writing, everything blew me away. The characters feel authentic and every character has great development. - -The villains are insanely well written. Very few authors come close to writing villains as compelling as togashi. - -I highly recommend watching YYH now that you finished HxH. - -YYH is togashis first series, and it's basically HxH light. - -It has a lot of the same elements as HxH, and it's just as fantastic! - -However, it's clearly worse than HxH in many ways but it's still a strong 9/10.";False;False;;;;1610662218;;False;{};gja0t35;False;t3_kx1lqr;False;True;t3_kx1lqr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gja0t35/;1610748075;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HeyYouWhoMe3;;;[];;;;text;t2_9n7tp6ab;False;False;[];;Wow. As a developer myself, this is awesome.;False;False;;;;1610662927;;False;{};gja298z;False;t3_kx1lqr;False;True;t1_gj82h1t;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gja298z/;1610749125;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SquishedMemoryFoam;;;[];;;;text;t2_yihfqlf;False;False;[];;Same. I enjoyed Yorknew much more.;False;False;;;;1610665545;;False;{};gja7iuq;False;t3_kx1lqr;False;True;t1_gj9z7qr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gja7iuq/;1610752703;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SquishedMemoryFoam;;;[];;;;text;t2_yihfqlf;False;False;[];;"I'm at the 22nd episode (right after they defeat the 7-copy-of-him bug flute guy and his 3 underlings), and it's been a very basic shounen so far. Does it get better later or does it remain the same level? The only interesting thing I've gotten so far is that *""Wow, the writer improved a DAMN lot between the two series.""*";False;False;;;;1610665845;;False;{};gja843d;False;t3_kx1lqr;False;True;t1_gj8u82h;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gja843d/;1610753104;1;True;False;anime;t5_2qh22;;0;[]; -[];;;teambald12007;;;[];;;;text;t2_4inj1jtd;False;False;[];;Yeah, bored me to death, stopped watching and watched all of Jojo, then tried to start again and didn't know what was happening and stopped, then finally got into it again and loved HxH. It's just those two HxH eps with the Phantom Troupe VS those Ants that bored me for some reason;False;False;;;;1610666291;;False;{};gja8zr1;False;t3_kx1lqr;False;True;t1_gj9f92a;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gja8zr1/;1610753704;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610666528;;False;{};gja9gha;False;t3_kwyqnf;False;True;t1_gj7zn1v;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gja9gha/;1610754031;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JDantesInferno;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/BigBodyBepis;light;text;t2_20ieunh;False;False;[];;Yeah honestly JJK has been blowing me away stylistically;False;False;;;;1610670574;;False;{};gjahab3;False;t3_kwyqnf;False;True;t1_gj98ght;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gjahab3/;1610759211;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lunardose;;;[];;;;text;t2_16cvzb;False;False;[];;"Funnily enough that Arc was more or less reviled for a long time by many people in the fandom. If you think it's pacing is slow imagine waiting many months for a chapter release. - -Opinion on it flipped at some point once it was already released and people could appreciate it as a whole. And thats steadily risen to the hype levels we have today. Now I feel we are on a backslide where people have been hyped up so hard it inevitably fails to live up to expectation. Idk just my personal observations. - -I for one really like the Chimera Ant Arc, but I don't think it's even the best arc in HxH.";False;False;;;;1610672149;;False;{};gjakcle;False;t3_kx1lqr;False;True;t1_gj9z7qr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gjakcle/;1610761183;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shirokakuroka;;;[];;;;text;t2_5s4rzo49;False;False;[];;i had the same impression tbh. on rewatch i liked the first ~3 episodes, but thought basic shonen after that and stopped around ep 15;False;False;;;;1610677139;;False;{};gjatudo;False;t3_kx1lqr;False;True;t1_gja843d;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gjatudo/;1610767360;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kuramhan;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Kuramhan/;light;text;t2_esa7n;False;False;[];;"I think you're approaching this too much from the perspective of a fan and not from the perspectives of producers and licensers. As long as their works continue to receive praise and drive sales, work will continue to come. If you look at their popular shows over the last couple years, 90% of them have been adaptations. Originals haven't been the focus of the studio ever since Maruyama left. That will likely continue to be the case. - -If you're not aware, studios which focus on originals and adaptations have very different approaches to marketing. Trigger has said in the past that they don't do adaptations because they wouldn't be as profitable for the studio. Trigger focuses on designing IPs and makes their profit not just on anime sales, but on the merchandise associated with the IPs. A big part of the success of their business plan is to market the company itself and its creators as much as each individual work. They've developed a pool of fans who will follow them from original to original, regardless of which IP it is. Maintaining the ""Trigger feel"" of each work they put out is essential for the success of this approach. - -A studio that focuses primarily on adaptation doesn't need to build a dedicated fan base like that. Each new adaptation will come with a new bastion of source material fans who will help spread word of the anime through word of mouth. The publisher of the source material will also help in marketing the anime. Their success depends on getting enough adaptations out the door for their studio to stay profitable while receiving a warm enough reception that lucrative contracts keep coming to them. Some studios, Shaft for example, have developed a very iconic style to try to attract a certain kind of creators would like their works adapted in that style. - -This isn't to stay there aren't studios who do both, there's plenty. Every studio has an internal philosophy on this balance and how lucrative they expect their originals to be. Mappa seems to be treading towards being an adaptation factory, which doesn't have to be a bad thing. - ->They could always just join back with Maruyama Masao. Or co-found a new studio - -Both of these things are easier said than done. Maruyama's new studio, M3, does not seem to be doing very well. These days new studios end up folding more often than not, even with good talent attached to them. These director's depend on anime for their livelihood. Giving up their secure positions for a studio that might fold in a few years is very risky. Of course they could get recruited by another stable studio, but that happens far less often.";False;False;;;;1610677863;;False;{};gjav78c;False;t3_kwyqnf;False;True;t1_gj9zt9q;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gjav78c/;1610768228;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;"Not almost , it has been two years, the last was released in December 2018(•‿•). - -On the bright side, though, new Berserk chapter this month letsgo";False;False;;;;1610680061;;False;{};gjaz8rx;False;t3_kx1lqr;False;True;t1_gj7t72b;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gjaz8rx/;1610770685;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Oskarvlc;;;[];;;;text;t2_r7rwz;False;False;[];;Nah, I watched like 32 episodes and I just gave up. I don't get what people likes about it.;False;False;;;;1610680284;;False;{};gjazned;False;t3_kx1lqr;False;True;t1_gj7wo4o;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gjazned/;1610770937;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SquishedMemoryFoam;;;[];;;;text;t2_yihfqlf;False;False;[];;Exactly, it was fun and well written when he helped Kuwabara study and such, but as soon as it went into special powers and such it suddenly got so bad. I'm still waiting to see if anyone says it'll improve or not.;False;False;;;;1610680982;;False;{};gjb0xu7;False;t3_kx1lqr;False;False;t1_gjatudo;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gjb0xu7/;1610771717;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gingenhagen;;;[];;;;text;t2_3fo3s;False;False;[];;It just keeps on getting better every arc. If you want, you can start watching it from episode 27. That starts a more traditional shounen training arc, so maybe easier to get into then, and then go back and watch the first two arcs later on.;False;False;;;;1610681854;;False;{};gjb2jtf;False;t3_kx1lqr;False;True;t1_gj7wo4o;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gjb2jtf/;1610772699;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Oyster-Tomato-Potato;;;[];;;;text;t2_juaj4u4;False;False;[];;It gets pretty good at around the 26th episode, where it’s dark tournament arc starts. Yu Yu Hakusho is regarded as having one of, if not the best, tournament arcs in all of anime, and it managed to keep me interested the entire time. There wasn’t a single fight that didn’t have me engaged, and I highly recommend continuing to watch, even if you stop after the dark tournament ends.;False;False;;;;1610683770;;False;{};gjb5ycb;False;t3_kx1lqr;False;True;t1_gjb0xu7;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gjb5ycb/;1610774709;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chartingyou;;;[];;;;text;t2_1pzf12n2;False;False;[];;this was really well written! I feel like as more of a newbie, write-ups like this are super helpful to understanding how the industry works;False;False;;;;1610684257;;False;{};gjb6sck;False;t3_kwyqnf;False;False;t1_gjav78c;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gjb6sck/;1610775185;2;True;False;anime;t5_2qh22;;0;[]; -[];;;laudalehsunesh;;;[];;;;text;t2_64bh5fo8;False;False;[];;">Due to that I personally rank it under the likes of other shonen like yyh and one piece - -Ranking it under YYH, I understand but ranking it under Onepiece?? Seriously even the overzealous manga readers of Onepiece hate the anime with a passion but even if you say about manga, even then Hunter x Hunter as a manga is better than Onepiece, the only thing Onepiece has going for it is it's massive worldbuilding, no character development, no layered character, the character interactions are the same in 1000 chapters while in HxH, even the side character has more development & layers than all of the Onepiece main cast combined (eg. Morel, Knucle, Shoot, Palm, Pakunoda etc). Hell the villains of Onepiece are one dimensional with shallow motivation. I consider Naruto, a far better shounen than Onepiece.";False;False;;;;1610684887;;False;{};gjb7v1e;False;t3_kx1lqr;False;True;t1_gj9z7qr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gjb7v1e/;1610775800;0;True;False;anime;t5_2qh22;;0;[]; -[];;;imTenshu;;;[];;;;text;t2_4ca781ej;False;False;[];;I'm always so happy to hear people say they enjoyed it this much. It really left a huge impact on me too. 😄;False;False;;;;1610685018;;False;{};gjb82x4;False;t3_kx1lqr;False;True;t3_kx1lqr;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gjb82x4/;1610775926;1;True;False;anime;t5_2qh22;;0;[]; -[];;;laudalehsunesh;;;[];;;;text;t2_64bh5fo8;False;False;[];;Well then I'm the opposite of you, I hated MHA lol, for me MHA was the most cliched shonen ever.;False;False;;;;1610685213;;False;{};gjb8et1;False;t3_kx1lqr;False;True;t1_gj8vq73;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gjb8et1/;1610776119;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Isrozzis;;MAL;[];;http://myanimelist.net/animelist/isrozzis;dark;text;t2_dbem0;False;False;[];;"Rin is absolutely my favorite in the show. She's introverted and quietly determined about her hobby, solo camping, which is something I can relate to a lot. Not so much the solo camping part since it's been years since i've been camping, but the quite determination and willingness to just go off on her own and do her thing. Over the course of the show she grows to enjoy having people camp with her, but even then she still goes off on her solo camp adventures from time to time. SoL/Iyashiki anime typically revolve around a cast that is almost always together in some way or another so it's a big change of pace in Yuru Camp to focus on one character who will go off on her own and still have all the comfiness work out just fine. Typically if there is a character that is by themselves the narrative is that they ought to be brought into the group and make friends. Rin does do this when she joins the club and grows closer to the other girls, but she still retains her individual identity too. That's the part that's a rarity in these sorts of shows. I really enjoy that as part of her character writing. - -Also her scarf is wonderful.";False;False;;;;1610685324;;False;{};gjb8lhx;False;t3_kwtjkl;False;True;t1_gj6atcv;/r/anime/comments/kwtjkl/yuru_camp_thursday_anime_discussion_thread_ft/gjb8lhx/;1610776228;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Isrozzis;;MAL;[];;http://myanimelist.net/animelist/isrozzis;dark;text;t2_dbem0;False;False;[];;"As far as portraying camping and any or all struggles that might come along with it I think Rin's solo camp adventures are pretty realistic. It's idealistic of course, but she has plenty of moments where there is some annoyance at the camp ground that she has to deal with like not being able to find firewood or something. Now as a group, remarkably little goes wrong with their adventures haha. The girls that were originally in the club and Rin all have camping experience so it's reasonable that they don't make simple mistakes. Nadeshiko however is completely clueless so it would have been a good touch to have her make some rookie mistakes on the first camping trip or so. It's also reasonable to handwave that and say she has other experienced campers helping her prepare. All in all, definitely idealistic but I don't think unrealistic. - -I would like to see them have an episode where they get to their camp grounds and then get rained out for the entire duration or something. It would be interesting to see what they do with a situation like that.";False;False;;;;1610685610;;False;{};gjb92ab;False;t3_kwtjkl;False;True;t1_gj80cg4;/r/anime/comments/kwtjkl/yuru_camp_thursday_anime_discussion_thread_ft/gjb92ab/;1610776504;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Isrozzis;;MAL;[];;http://myanimelist.net/animelist/isrozzis;dark;text;t2_dbem0;False;False;[];;"The main difference I noticed with Yuru Camp compared to other series is how Rin is treated as the resident loner character. The loner character is often presented as unhappy or upset that they don't have a dedicated friend group and the narrative with their character is that loner = bad, and friends = good. Rin does join the club and make friends with the other girls and go on merry adventures with them etc. etc. But at the end of the day Rin's individual identity is preserved. - -She is a functional person by herself with a hobby that she is perfectly content to do by herself and she is able to find happiness by herself. Rin doesn't need to find other people to be happy and when she does make friends the show doesn't erase Rin's previous identity. Rin still goes on solo camping trips and for the most part is an introverted person. She learns that being with other people can be good and fun, but not that that is correct. Thankfully, Yuru Camp presents this part of itself well and Rin ends up as a much more nuanced and developed character than I am used to seeing in SolL/Iyashikei shows.";False;False;;;;1610686011;;False;{};gjb9q3w;False;t3_kwtjkl;False;True;t1_gj6ara4;/r/anime/comments/kwtjkl/yuru_camp_thursday_anime_discussion_thread_ft/gjb9q3w/;1610776896;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BlaxeFrost;;;[];;;;text;t2_tva2b;False;False;[];;Then i'll add another question, is the series going to be censored like that AGAIN? if so, How often?;False;False;;;;1610687530;;False;{};gjbc42y;False;t3_kwwakl;False;True;t1_gj6v765;/r/anime/comments/kwwakl/redo_of_healer_censored_vs_uncensored/gjbc42y/;1610778270;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Every episode basically, there's no way around it;False;False;;;;1610689512;;False;{};gjbezl8;False;t3_kwwakl;False;True;t1_gjbc42y;/r/anime/comments/kwwakl/redo_of_healer_censored_vs_uncensored/gjbezl8/;1610779911;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sahithkiller;;;[];;;;text;t2_5zd0pjy5;False;False;[];;For real? Imo one piece character Design is one of the best there is and the Dynamics of the world are just as great. I only read the manga now as the anime is indeed getting worse and worse. I also equally love villians and their Motivations like blackbeard who is the one true pirate in the show and doflamingos whole story. Might also be subjective but Narutos final arcs bored the shit out of me and the final war except for the madara fights were underwhelming imo;False;False;;;;1610692500;;False;{};gjbj05u;False;t3_kx1lqr;False;False;t1_gjb7v1e;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gjbj05u/;1610782126;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kuramhan;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Kuramhan/;light;text;t2_esa7n;False;False;[];;Glad it was helpful.;False;False;;;;1610693305;;False;{};gjbk045;False;t3_kwyqnf;False;True;t1_gjb6sck;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gjbk045/;1610782683;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> I think you're approaching this too much from the perspective of a fan and not from the perspectives of producers and licensers. - -well duh. I consume anime, I don't produce it. And MAPPA is not worth keeping around if they don't make good stuff, their working conditions are not great. - -> If you're not aware, studios which focus on originals and adaptations have very different approaches to marketing. Trigger has said in the past that they don't do adaptations because they wouldn't be as profitable for the studio. - -That's not true at all. KyoAni does no originals at all but profits handsomely from adaptations because they are in good spots of the production committee, sometimes alone and sometimes own the properties they adapt because they invested in a publishing department. - -> Maintaining the ""Trigger feel"" - -The same for MAPPA originals, just that they are starting to lose the identity - -I really don't get your point beyond just wanting to tell me this, my whole comment is obviously subjective and about the quality output, not if they will continue to adapt WSJ and Bessatsu Shonen properties";False;False;;;;1610696108;;1610696598.0;{};gjbn6mb;False;t3_kwyqnf;False;True;t1_gjav78c;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gjbn6mb/;1610784416;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Arrys;;;[];;;;text;t2_bhca6;False;False;[];;It for sure is cliche, no denying that.;False;False;;;;1610718929;;False;{};gjccx9q;False;t3_kx1lqr;False;False;t1_gjb8et1;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gjccx9q/;1610798633;1;True;False;anime;t5_2qh22;;0;[]; -[];;;splice42;;;[];;;;text;t2_48bmy;False;False;[];;It is so chronically unfinished that there's a web domain dedicated to tracking how bad it is: [Hiatus x Hiatus](https://hiatus-hiatus.github.io/). We've now passed two years without a new chapter.;False;False;;;;1610724328;;False;{};gjcn4pm;False;t3_kx1lqr;False;True;t1_gj7s99c;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gjcn4pm/;1610804756;1;True;False;anime;t5_2qh22;;0;[]; -[];;;splice42;;;[];;;;text;t2_48bmy;False;False;[];;"> felt like LN rather than a manga - -I mean, shit art and way too much exposition are the Togashi brand at this point.";False;False;;;;1610724446;;False;{};gjcndh0;False;t3_kx1lqr;False;True;t1_gj8cn3n;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gjcndh0/;1610804909;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SquishedMemoryFoam;;;[];;;;text;t2_yihfqlf;False;False;[];;Thanks for the tip! My reason for starting the series was to see the arc about the guy named Sensui, so if I manage to get through the tournament you talked about, I'll probably stay until that as well.;False;False;;;;1610745681;;False;{};gjdwthe;False;t3_kx1lqr;False;True;t1_gjb5ycb;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gjdwthe/;1610836464;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Seastone13;;;[];;;;text;t2_pivrj;False;False;[];;"For me the Chimera Arc also was really bad. I think it was because of the pacing, and the fact that I got pretty annoyed at the ""voice-guy"" that kept describring what happened half of the episodes... lol -But im still glad I watched through it, it had some pretty awesome moments :)";False;False;;;;1610748180;;False;{};gje1vq3;False;t3_kx1lqr;False;True;t1_gja8zr1;/r/anime/comments/kx1lqr/just_finished_hunter_x_hunter_2011_wow/gje1vq3/;1610839920;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pacotacobell;;MAL;[];;http://myanimelist.net/animelist/pacotacobell;dark;text;t2_7gvtd;False;False;[];;Honestly almost a perfect adaptation if not for the manga ending being much, much better than the anime ending.;False;False;;;;1610760405;;False;{};gjeovoq;False;t3_kwyqnf;False;True;t1_gj7iwic;/r/anime/comments/kwyqnf/5_years_ago_i_asked_ranime_what_they_think_of/gjeovoq/;1610854689;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HollowSword;;;[];;;;text;t2_5dry4e4y;False;False;[];;Do you know where to watch the uncensored version;False;False;;;;1610840964;;False;{};gjiqa3f;False;t3_kwwakl;False;True;t1_gj6v765;/r/anime/comments/kwwakl/redo_of_healer_censored_vs_uncensored/gjiqa3f/;1610939211;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610853693;;False;{};gjje1c9;False;t3_kwwakl;False;True;t3_kwwakl;/r/anime/comments/kwwakl/redo_of_healer_censored_vs_uncensored/gjje1c9/;1610953597;1;True;False;anime;t5_2qh22;;0;[]; -[];;;edward19972015;;;[];;;;text;t2_4aux4tlx;False;False;[];;What sites do/will have the uncensored versions;False;False;;;;1610898364;;False;{};gjlq5f7;False;t3_kwwakl;False;False;t3_kwwakl;/r/anime/comments/kwwakl/redo_of_healer_censored_vs_uncensored/gjlq5f7/;1610998394;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlaxeFrost;;;[];;;;text;t2_tva2b;False;False;[];;Mhh... i see, i'll watch the censored version... starting from episode 2... depending on how often, how relevant and such, i'll drop it or keep watching... Thanks;False;False;;;;1610913543;;False;{};gjn49fe;False;t3_kwwakl;False;True;t1_gjbezl8;/r/anime/comments/kwwakl/redo_of_healer_censored_vs_uncensored/gjn49fe/;1611026168;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;"I last went camping when my children (now in their 30s) were (beginner) Boy Scouts. By then, camping was a little more convenient than it was when I was a Scouit (early 1960s). I didn't dislike camping -- even when ""inconvenient"" but it's not anything I could ever imagine doing by myself, only with a group of friends. This show almost makes me want to try camping -- albeit modern-style, with a lot more conveniences than I had available long ago. Not sure my wife would agree, however. Still, I would love to go to some of the kind of places the girls visit in the show -- both in Japan and here in the USA.";False;False;;;;1610983770;;False;{};gjq6lho;False;t3_kwtjkl;False;False;t1_gj6aowz;/r/anime/comments/kwtjkl/yuru_camp_thursday_anime_discussion_thread_ft/gjq6lho/;1611096513;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1611099708;;False;{};gjvyjfs;False;t3_kwwakl;False;True;t1_gjlq5f7;/r/anime/comments/kwwakl/redo_of_healer_censored_vs_uncensored/gjvyjfs/;1611225236;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1611099709;moderator;False;{};gjvyjig;False;t3_kwwakl;False;False;t1_gjvyjfs;/r/anime/comments/kwwakl/redo_of_healer_censored_vs_uncensored/gjvyjig/;1611225238;1;False;False;anime;t5_2qh22;;0;[]; -[];;;cxcmeloj;;;[];;;;text;t2_3x76m1fc;False;False;[];;oki i will ty;False;False;;;;1611102311;;False;{};gjw3jhq;True;t3_kwv4ee;False;True;t1_gj6ilv8;/r/anime/comments/kwv4ee/world_trigger_season_2/gjw3jhq/;1611227948;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cxcmeloj;;;[];;;;text;t2_3x76m1fc;False;False;[];;"Honestly I’ve not noticed anything bad about the animation in season 1 and I haven’t watched much old anime! I think the anime is so unparalleled compared to the majority of anime when you look at the world building and the detail in the different strategies and the painfully realistic development of our protagonist! It’s so painful yet I still enjoy it! Of course WT has its faults but I’m not here to talk about them hehe. - -I literally binged the anime and manga so bad when I discovered it hehe";False;False;;;;1611102490;;1611155915.0;{};gjw3vud;True;t3_kwv4ee;False;True;t1_gj72jdr;/r/anime/comments/kwv4ee/world_trigger_season_2/gjw3vud/;1611228137;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Anni01;;;[];;;;text;t2_yc4lp;False;False;[];;9;False;False;;;;1611154260;;False;{};gjy5xp4;False;t3_kwwakl;False;True;t1_gjlq5f7;/r/anime/comments/kwwakl/redo_of_healer_censored_vs_uncensored/gjy5xp4/;1611275995;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1611296023;;False;{};gk5f70x;False;t3_kwwakl;False;True;t1_gjy5xp4;/r/anime/comments/kwwakl/redo_of_healer_censored_vs_uncensored/gk5f70x/;1611432464;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lemonade__728;;;[];;;;text;t2_10spap;False;False;[];;Psycho Pass is pretty dark and very cyberpunk;False;False;;;;1610381955;;False;{};giw9n7e;False;t3_kv5us6;False;False;t3_kv5us6;/r/anime/comments/kv5us6/series_similiar_to_fatezero_series_with_dark/giw9n7e/;1610431168;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610382112;moderator;False;{};giwa1z1;False;t3_kv5x9e;False;True;t3_kv5x9e;/r/anime/comments/kv5x9e/where_can_i_watch_junji_itos_uzumaki/giwa1z1/;1610431387;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Self_discovery_me, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610382113;moderator;False;{};giwa21u;False;t3_kv5xaf;False;True;t3_kv5xaf;/r/anime/comments/kv5xaf/recommendations_for_animemanga_pls/giwa21u/;1610431388;1;False;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;I don't think it's out yet, looking at the MAL listing. Is [this](https://www.adultswim.com/videos/uzumaki) trailer what you were thinking of?;False;False;;;;1610382262;;False;{};giwafum;False;t3_kv5x9e;False;False;t3_kv5x9e;/r/anime/comments/kv5x9e/where_can_i_watch_junji_itos_uzumaki/giwafum/;1610431591;5;True;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;It hasn't aired yet;False;False;;;;1610382407;;False;{};giwathc;False;t3_kv5x9e;False;True;t3_kv5x9e;/r/anime/comments/kv5x9e/where_can_i_watch_junji_itos_uzumaki/giwathc/;1610431806;1;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;Monster;False;False;;;;1610382463;;False;{};giwaypd;False;t3_kv5us6;False;True;t3_kv5us6;/r/anime/comments/kv5us6/series_similiar_to_fatezero_series_with_dark/giwaypd/;1610431904;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;No, none of them are related to each other.;False;False;;;;1610382624;;False;{};giwbdj7;False;t3_kv62wb;False;True;t3_kv62wb;/r/anime/comments/kv62wb/whats_up_with_all_the_re_stuff_are_they_related/giwbdj7/;1610432147;6;True;False;anime;t5_2qh22;;0;[]; -[];;;cabbagecakeandtea;;;[];;;;text;t2_8cfy5rzy;False;False;[];;which one would be a good start, does the re mean something?;False;False;;;;1610382691;;False;{};giwbjk7;True;t3_kv62wb;False;True;t1_giwbdj7;/r/anime/comments/kv62wb/whats_up_with_all_the_re_stuff_are_they_related/giwbjk7/;1610432266;2;True;False;anime;t5_2qh22;;0;[]; -[];;;edm4un;;;[];;;;text;t2_116kfw;False;False;[];;It's hard to recommend something in the same atmosphere as fate zero (mages, assassins, dark animation) but you might like Phantom Requiem if you have not seen it. It's a great story about assassins. Another series that's mildly dark is darker than black which is superpowers and assassins. Both series the main character has love interest.;False;False;;;;1610382748;;False;{};giwbos1;False;t3_kv5us6;False;True;t3_kv5us6;/r/anime/comments/kv5us6/series_similiar_to_fatezero_series_with_dark/giwbos1/;1610432343;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ABigSnek;;;[];;;;text;t2_13rgeb;False;False;[];;"They're not connected ""Re."" Is used in place of the word again in manga to show its an isekai thats about it. As far as good ones I'd say Re:Zero is probably the most popular, another good one is Re:Creators which is a reverse isekai.";False;False;;;;1610382879;;False;{};giwc1a6;False;t3_kv62wb;False;True;t3_kv62wb;/r/anime/comments/kv62wb/whats_up_with_all_the_re_stuff_are_they_related/giwc1a6/;1610432528;0;True;False;anime;t5_2qh22;;0;[]; -[];;;swaggest_b1tc;;;[];;;;text;t2_9ai7v6vi;False;False;[];;well death note is also really good, a classic, which everyone should see. if ur not into that kind of anime, then the promised neverland and erased are good options;False;False;;;;1610382904;;False;{};giwc3lq;False;t3_kv658t;False;False;t3_kv658t;/r/anime/comments/kv658t/which_anime_should_i_watch_next/giwc3lq/;1610432588;6;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;"It can mean a variety of things, like restart, redo, or reply. It's exactly like using the prefix re- in a normal word. - -Re:Zero is my favorite.";False;False;;;;1610382909;;False;{};giwc429;False;t3_kv62wb;False;True;t1_giwbjk7;/r/anime/comments/kv62wb/whats_up_with_all_the_re_stuff_are_they_related/giwc429/;1610432595;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Flufficidal_Maniac;;;[];;;;text;t2_80wgsy0q;False;False;[];;It aint out yet chief.;False;False;;;;1610382932;;False;{};giwc65c;False;t3_kv5x9e;False;True;t3_kv5x9e;/r/anime/comments/kv5x9e/where_can_i_watch_junji_itos_uzumaki/giwc65c/;1610432627;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Why authors put ""re:"" in front of something. - -As a prefix re- usually means again, anew. Some - -Re:Zero is a story where the main character starts a life again. - -The naming behind Re:Creators is [spoilers for the show](/s ""reply to the creators"")";False;False;;;;1610382952;;False;{};giwc7yn;False;t3_kv62wb;False;True;t1_giwbjk7;/r/anime/comments/kv62wb/whats_up_with_all_the_re_stuff_are_they_related/giwc7yn/;1610432656;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pixidee;;;[];;;;text;t2_3d8bvqaj;False;False;[];;"Yes, that's the one! :) -I don't suppose you might new where it will be airing?";False;False;;;;1610382972;;False;{};giwc9p5;True;t3_kv5x9e;False;True;t1_giwafum;/r/anime/comments/kv5x9e/where_can_i_watch_junji_itos_uzumaki/giwc9p5/;1610432712;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sphak12;;;[];;;;text;t2_4qfth3c4;False;False;[];;I think you'll enjoy watching Fullmetal Alchemist: Brotherhood;False;False;;;;1610383144;;False;{};giwcppg;False;t3_kv658t;False;False;t3_kv658t;/r/anime/comments/kv658t/which_anime_should_i_watch_next/giwcppg/;1610432972;5;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;That's just a coincidence. [Lapis Re:Lights](https://myanimelist.net/anime/37587/Lapis_Re_LiGHTs) is not an isekai, and neither are [Re:Cutie Honey](https://myanimelist.net/anime/151/Re__Cutey_Honey) or [Re:_Hamatora](https://myanimelist.net/anime/23421/Re_%E2%90%A3Hamatora).;False;False;;;;1610383252;;False;{};giwczyf;False;t3_kv62wb;False;True;t1_giwc1a6;/r/anime/comments/kv62wb/whats_up_with_all_the_re_stuff_are_they_related/giwczyf/;1610433137;2;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 150, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Thank you stranger. Shows the award.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'icon_width': 2048, 'id': 'award_f44611f1-b89e-46dc-97fe-892280b13b82', 'is_enabled': True, 'is_new': False, 'name': 'Helpful', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;Our_Lord_Bauer;;;[];;;;text;t2_502zwb6g;False;False;[];;Gintama is long, but make that your next big watch-through.;False;False;;;;1610383253;;False;{};giwd02c;False;t3_kv658t;False;True;t3_kv658t;/r/anime/comments/kv658t/which_anime_should_i_watch_next/giwd02c/;1610433138;2;True;False;anime;t5_2qh22;;1;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;If you liked Hunter x Hunter then you should try Yu Yu Hakusho which is by the same author. If you liked Attack on Titan then you should check out Fullmetal Alchemist;False;False;;;;1610383367;;False;{};giwdaxp;False;t3_kv658t;False;True;t3_kv658t;/r/anime/comments/kv658t/which_anime_should_i_watch_next/giwdaxp/;1610433322;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GDW312;;;[];;;;text;t2_7mclpp14;False;False;[];;The Mobile Suit Gundam Franchise, Legend of the Galactic Heroes, Area 88, Golgo 13, ACCA 13: Territory Inspection Dept, Azumanga Daioh, After School Dice Club, Cardfight Vanguard, Hellsing, Hellsing Ultimate, My Hero Academia, Ghost Hunt, Jormungand, Bungou Stray Dogs, Golden Kamuy, Astra Lost in Space, Special 7: Special Crime Investigation Unit, Arc the Lad, Yona of the Dawn, Zoids,;False;False;;;;1610383506;;1610384356.0;{};giwdnp7;False;t3_kv658t;False;True;t3_kv658t;/r/anime/comments/kv658t/which_anime_should_i_watch_next/giwdnp7/;1610433555;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Here to plug in **the Garden of sinners**, it is this urban fantasy movie series mixed with romance, murder-mystery, action, and philosophy. I recommend watching it in the series in the order of 1, 2, 3, 4, 6, 5, recap, 7, 8 to maximize your enjoyment of this series. - -It's set in the same universe as the fate franchise.";False;False;;;;1610383579;;False;{};giwduh4;False;t3_kv5us6;False;True;t3_kv5us6;/r/anime/comments/kv5us6/series_similiar_to_fatezero_series_with_dark/giwduh4/;1610433651;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi belanc27, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610383632;moderator;False;{};giwdzfu;False;t3_kv6gdj;False;True;t3_kv6gdj;/r/anime/comments/kv6gdj/5_for_your_opinion_at_what_age_did_you_get_your/giwdzfu/;1610433721;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;Go away spammer;False;False;;;;1610383682;;False;{};giwe49c;False;t3_kv6gdj;False;True;t3_kv6gdj;/r/anime/comments/kv6gdj/5_for_your_opinion_at_what_age_did_you_get_your/giwe49c/;1610433787;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"From the New World, it's a dystopian world like Attack on Titan and is only 25 episodes long with plot twists (in my opinion) as good as Attack on Titan. - -[This is the very first scene (reddit post)](https://www.reddit.com/r/anime/comments/hzd5sb/the_very_first_scene_of_shinsekai_yori/)";False;False;;;;1610383690;;False;{};giwe4z2;False;t3_kv658t;False;False;t3_kv658t;/r/anime/comments/kv658t/which_anime_should_i_watch_next/giwe4z2/;1610433797;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;"Apparently JoJo somehow even though the seasons are literally numbered. - -Monogatari";False;False;;;;1610383740;;False;{};giwe9qu;False;t3_kv6gpi;False;False;t3_kv6gpi;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/giwe9qu/;1610433865;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ChiefKaduku;;;[];;;;text;t2_9l85qa15;False;False;[];;Some one posted a ranking of best anime some where in the anime forums you should check it out. I recomend jujitsu kaisen or That Time I Got Reincarnated as a Slime. JK is pretty fast paced but it leaves you wanting more. Slime is a good distraction and different then the other gamer type of genre.;False;False;;;;1610383769;;False;{};giwecln;False;t3_kv658t;False;True;t3_kv658t;/r/anime/comments/kv658t/which_anime_should_i_watch_next/giwecln/;1610433905;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jungnur;;;[];;;;text;t2_1062nj;False;False;[];;Monogatari;False;False;;;;1610383777;;False;{};giwedcu;False;t3_kv6gpi;False;False;t3_kv6gpi;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/giwedcu/;1610433916;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;"> a lot of newcomers don’t know where to start - -The Monogatari Series";False;False;;;;1610383798;;False;{};giwefdr;False;t3_kv6gpi;False;False;t3_kv6gpi;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/giwefdr/;1610433945;6;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610383806;moderator;False;{};giweg6o;False;t3_kv6ik3;False;True;t3_kv6ik3;/r/anime/comments/kv6ik3/saw_this_on_twitter_anyone_know_what_its_from/giweg6o/;1610433956;1;False;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;"Gundam - -The difference between UC and AU series is often not clear for people new to Gundam.";False;False;;;;1610383866;;False;{};giwelre;False;t3_kv6gpi;False;False;t3_kv6gpi;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/giwelre/;1610434039;10;True;False;anime;t5_2qh22;;0;[]; -[];;;blackmagemasta;;MAL;[];;https://myanimelist.net/profile/blackmagemasta;dark;text;t2_aceb1;False;False;[];;Gundam;False;False;;;;1610383885;;False;{};giwenib;False;t3_kv6gpi;False;True;t3_kv6gpi;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/giwenib/;1610434062;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;Apparently Dragon Ball and Naruto based on the non zero number of times people have asked for watch orders;False;False;;;;1610384020;;False;{};giwf05a;False;t3_kv6gpi;False;False;t3_kv6gpi;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/giwf05a/;1610434238;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610384035;moderator;False;{};giwf1jl;False;t3_kv6lm2;False;True;t3_kv6lm2;/r/anime/comments/kv6lm2/very_new_to_anime/giwf1jl/;1610434259;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi monotoniia, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610384036;moderator;False;{};giwf1lq;False;t3_kv6lm2;False;True;t3_kv6lm2;/r/anime/comments/kv6lm2/very_new_to_anime/giwf1lq/;1610434259;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi NSFWbroughtMe, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610384082;moderator;False;{};giwf5tu;False;t3_kv6m47;False;True;t3_kv6m47;/r/anime/comments/kv6m47/anything_similar_to_highschool_dxd_thats_any_good/giwf5tu/;1610434320;0;False;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;"> recommendations for a badass woman fronted anime - -Try Symphogear: - -1. [Senki Zesshou Symphogear](https://myanimelist.net/anime/11751) -2. [Senki Zesshou Symphogear G](https://myanimelist.net/anime/15793) -3. [Senki Zesshou Symphogear GX](https://myanimelist.net/anime/21573) -4. [Senki Zesshou Symphogear AXZ](https://myanimelist.net/anime/32836) -5. [Senki Zesshou Symphogear XV](https://myanimelist.net/anime/32843) - - -Also have a look at these: - -* [Black Lagoon](http://myanimelist.net/anime/889) -* [Cardcaptor Sakura](https://myanimelist.net/anime/232) -* [Ergo Proxy](http://myanimelist.net/anime/790) -* [Futari wa Precure](https://myanimelist.net/anime/603) -* [Ghost in the Shell: Stand Alone Complex](http://myanimelist.net/anime/467) -* [Kill la Kill](http://myanimelist.net/anime/18679) -* [Mahou Shoujo Lyrical Nanoha](http://myanimelist.net/anime/76) -* [Psycho Pass](http://myanimelist.net/anime/13601) -* [Revolutionary Girl Utena](http://myanimelist.net/anime/440) -* [Top wo Nerae! Gunbuster](http://myanimelist.net/anime/949)";False;False;;;;1610384181;;False;{};giwffba;False;t3_kv6lm2;False;True;t3_kv6lm2;/r/anime/comments/kv6lm2/very_new_to_anime/giwffba/;1610434451;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Forsaken_Box6348;;;[];;;;text;t2_9m7oxx8x;False;False;[];;Black lagoon;False;False;;;;1610384200;;False;{};giwfh0t;False;t3_kv6lm2;False;True;t3_kv6lm2;/r/anime/comments/kv6lm2/very_new_to_anime/giwfh0t/;1610434474;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DarknessImmemorial;;;[];;;;text;t2_7yy04kj;False;False;[];;Claymore;False;False;;;;1610384244;;False;{};giwfl8r;False;t3_kv6lm2;False;False;t3_kv6lm2;/r/anime/comments/kv6lm2/very_new_to_anime/giwfl8r/;1610434541;2;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"welcome to the dark side - -The Fruit of Grisaia - -[Kill la Kill](https://anilist.co/anime/18679/Kill-la-Kill/) -Action, Comedy, Ecchi - -[Chivalry of a Failed Knight](https://anilist.co/anime/21092/Chivalry-of-a-Failed-Knight/) -Action, Ecchi, Fantasy, Romance";False;False;;;;1610384271;;False;{};giwfnrf;False;t3_kv6m47;False;True;t3_kv6m47;/r/anime/comments/kv6m47/anything_similar_to_highschool_dxd_thats_any_good/giwfnrf/;1610434578;5;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;Jojo is hard to get into because most people don't like part 1 and Stands (the main fighting system) are only introduced in part 3.;False;False;;;;1610384323;;False;{};giwfskc;False;t3_kv6gpi;False;False;t1_giwe9qu;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/giwfskc/;1610434655;9;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;If you ever sort by new on this subreddit there's someone asking for the Fate series watch order almost every day.;False;False;;;;1610384362;;False;{};giwfw2x;False;t3_kv6gpi;False;False;t3_kv6gpi;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/giwfw2x/;1610434704;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;Have you seen the sequel Naruto Shippuden and the sequel Boruto?;False;False;;;;1610384362;;False;{};giwfw3c;False;t3_kv6lm2;False;True;t3_kv6lm2;/r/anime/comments/kv6lm2/very_new_to_anime/giwfw3c/;1610434704;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;Posts/questions asking for the watchorder are also pretty common.;False;False;;;;1610384391;;False;{};giwfywr;False;t3_kv6gpi;False;True;t1_giwfskc;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/giwfywr/;1610434741;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"[**Henneko / Hentai Ouji to Warawanai Neko**](https://myanimelist.net/anime/15225/Hentai_Ouji_to_Warawanai_Neko) - [Trailer](https://www.youtube.com/watch?v=JGZlakYXvng&ab_channel=TheHardcoreManga) - -Its name is its biggest hurdle because people usually are not gonna look into a show with ""Hentai"" in the name. - -You wouldnt expect a Romance / Comedy / Drama / Supernatural to come out of that name. - -Unfortunately ""Hentai"" just means ""pervert"" in this case and people are just misassociating the word. The english title is ""The Pervert Prince and the Stoney Cat"" which represents the 2 main characters of the story, a guy who cant filter his words and a girl who cant show her emotion. - -Everyone should watch it though because it really is a massively under appreciated series. - -[](#lolipolice)";False;False;;;;1610384456;;False;{};giwg4qi;False;t3_kv6gpi;False;False;t3_kv6gpi;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/giwg4qi/;1610434824;2;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"Kill la Kill fits this one better than any other, and got me into anime. - -[Kill la Kill](https://anilist.co/anime/18679/Kill-la-Kill/) Action, Comedy, Ecchi - -[Where you can watch it](https://www.livechart.me/anime/94) - -[The amazing opening](https://www.youtube.com/watch?v=8dKFxu-_oIE) - -&#x200B; - -&#x200B; - -&#x200B; - -^(I had no idea channel 4 had kill la kill, you learn something new every day)";False;False;;;;1610384458;;False;{};giwg508;False;t3_kv6lm2;False;True;t3_kv6lm2;/r/anime/comments/kv6lm2/very_new_to_anime/giwg508/;1610434827;2;True;False;anime;t5_2qh22;;0;[]; -[];;;juances19;;HB;[];;https://kitsu.io/users/juances;dark;text;t2_17a18d;False;False;[];;I would say Fate. Like not really, you just decide Zero or UBW, but there are at least 3 posts about it per day and everyone suggest a different order.;False;False;;;;1610384677;;False;{};giwgpob;False;t3_kv6gpi;False;False;t3_kv6gpi;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/giwgpob/;1610435117;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;tiinyhawk;;;[];;;;text;t2_6ktxxolb;False;False;[];;The Fate series, Blood series, Attack on Titan has some badass female characters, Mumei from Kabaneri of the Iron Fortress is one of the coolest female characters imo and she’s a main in the series!;False;False;;;;1610384745;;False;{};giwgvwl;False;t3_kv6lm2;False;False;t3_kv6lm2;/r/anime/comments/kv6lm2/very_new_to_anime/giwgvwl/;1610435202;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;Well you see, the best way to watch Jojo is to skip part 1 and part 2.;False;True;;comment score below threshold;;1610385038;;False;{};giwhndh;False;t3_kv6gpi;False;True;t1_giwe9qu;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/giwhndh/;1610435609;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;Knightslayer048;;;[];;;;text;t2_1mw7gyq5;False;False;[];;Gintama;False;False;;;;1610385080;;False;{};giwhrdg;False;t3_kv6gpi;False;True;t3_kv6gpi;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/giwhrdg/;1610435663;2;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;I'm not strictly against part-skipping, but skipping part 2 is a crime.;False;False;;;;1610385168;;False;{};giwhzzw;False;t3_kv6gpi;False;True;t1_giwhndh;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/giwhzzw/;1610435783;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610385200;moderator;False;{};giwi31e;False;t3_kv715j;False;True;t3_kv715j;/r/anime/comments/kv715j/where_can_i_find_this_anime_to_watch_in_sub/giwi31e/;1610435825;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello ThatBlueBassist, your post has been removed because it looks like you might be posting about one of these shows: - -* Avatar: The Last Airbender / The Legend of Korra -* RWBY -* Arcane -* Castlevania -* Bee and Puppycat -* Adventure Time -* The Amazing World of Gumball -* The King's Avatar -* Onyx Equinox -* Blood of Zeus - -Whilst some of these shows might look anime style, /r/anime does not classify them as anime because they are not produced in Japan. - -For more information on how we define anime-specificness, please visit [the rules page](https://www.reddit.com/r/anime/wiki/rules#wiki_everything_posted_here_must_be_anime_related). - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610385229;moderator;False;{};giwi5v2;False;t3_kv71gy;False;True;t3_kv71gy;/r/anime/comments/kv71gy/is_avatar_the_last_air_bender_worth_watching/giwi5v2/;1610435863;1;False;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;My very basic take is that you should watch 0079, Zeta, ZZ, and Char's Counterattack and then you can basically watch any show in any order just by looking at [this chart](https://3.bp.blogspot.com/-9DlC6Nbqtig/WGTM-AkK0EI/AAAAAAAAA1I/1ThPX9ez8Wsn65v0K3eOfxox4UK3gmNtQCLcB/s1600/timelines.png).;False;False;;;;1610385230;;False;{};giwi5vt;False;t3_kv6gpi;False;True;t1_giwelre;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/giwi5vt/;1610435863;3;True;False;anime;t5_2qh22;;0;[]; -[];;;YouCanNotHitMe;;;[];;;;text;t2_3k24qyos;False;False;[];;"Vinland Saga - -It's just beautiful (but compared to the other two slower paced)";False;False;;;;1610385249;;False;{};giwi7pp;False;t3_kv658t;False;True;t3_kv658t;/r/anime/comments/kv658t/which_anime_should_i_watch_next/giwi7pp/;1610435888;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;Haha, definitely give it a try. I would almost suggest universally skipping part 1, but I disliked part 1 and part 2 that I gave up on Jojo for three years.;False;False;;;;1610385316;;False;{};giwidz0;False;t3_kv6gpi;False;True;t1_giwhzzw;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/giwidz0/;1610435973;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RedsonOfKyrypton;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RedsonofMelomarc;light;text;t2_5d1b60l;False;False;[];;"[Funimation](https://www.funimation.com/shows/uzaki-chan-wants-to-hang-out/) - -The show is called uzaki-chan wants to hang out.";False;False;;;;1610385371;;False;{};giwij77;False;t3_kv715j;False;True;t3_kv715j;/r/anime/comments/kv715j/where_can_i_find_this_anime_to_watch_in_sub/giwij77/;1610436042;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KarlMihel;;;[];;;;text;t2_3ktxpt07;False;False;[];;The testament of sister new devil;False;False;;;;1610385412;;False;{};giwin3v;False;t3_kv6m47;False;True;t3_kv6m47;/r/anime/comments/kv6m47/anything_similar_to_highschool_dxd_thats_any_good/giwin3v/;1610436097;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;That's Uzaki-Chan wants to hang out, not Perfect Couple!;False;False;;;;1610385480;;False;{};giwitgj;False;t3_kv715j;False;True;t3_kv715j;/r/anime/comments/kv715j/where_can_i_find_this_anime_to_watch_in_sub/giwitgj/;1610436185;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DarknessImmemorial;;;[];;;;text;t2_7yy04kj;False;False;[];;"Princess Mononoke - -Bubblegum Crisis";False;False;;;;1610385501;;False;{};giwiven;False;t3_kv6lm2;False;True;t1_giwfl8r;/r/anime/comments/kv6lm2/very_new_to_anime/giwiven/;1610436214;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DarknessImmemorial;;;[];;;;text;t2_7yy04kj;False;False;[];;Gunsmith Cats;False;False;;;;1610385552;;False;{};giwj0af;False;t3_kv6lm2;False;True;t1_giwiven;/r/anime/comments/kv6lm2/very_new_to_anime/giwj0af/;1610436287;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cire101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cire101;light;text;t2_oryv2;False;False;[];;That's because some disgusting part skippers started suggesting skipping around and fuck that part 1 is 9 episodes lol. Plus even if people think it's the worst(it's not, part 3 part 1 is lol) it's pretty damn good regardless;False;False;;;;1610385627;;False;{};giwj7iy;False;t3_kv6gpi;False;False;t1_giwfskc;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/giwj7iy/;1610436398;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Shojomango;;;[];;;;text;t2_58ox8ukc;False;False;[];;The Kagerou Project multi-media series.;False;False;;;;1610385644;;False;{};giwj90o;False;t3_kv6gpi;False;False;t3_kv6gpi;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/giwj90o/;1610436420;4;True;False;anime;t5_2qh22;;0;[]; -[];;;DrJWilson;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/drjwilson/animelist;light;text;t2_6zykq;False;False;[];;"Sorry, your submission has been removed. - -- This doesn't appear to be about [anime per our definition](https://www.reddit.com/r/anime/wiki/rules#wiki_everything_posted_here_must_be_anime_specific). - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610385747;moderator;False;{};giwjisx;False;t3_kv71gy;False;True;t3_kv71gy;/r/anime/comments/kv71gy/is_avatar_the_last_air_bender_worth_watching/giwjisx/;1610436557;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DrJWilson;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/drjwilson/animelist;light;text;t2_6zykq;False;False;[];;"Sorry, your submission has been removed. - -- It looks like your questions have been answered, so we're taking it off the list of new posts to make room for other content. For future reference, here are some additional resources that may help you find an answer even faster: - - - [To ask any random question you may have, visit our Weekly Miscellaneous Anime Questions thread!](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Weekly+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) - - [For finding an anime based off of a single image, reverse image searching typically works instantly](http://www.reddit.com/r/anime/wiki/reverse_image_searching) - - [r/anime has a large number of watch orders available](http://www.reddit.com/r/anime/wiki/watch_order) - - [You can find all of your recommendation needs here](http://www.reddit.com/r/anime/wiki/recommendations) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610385766;moderator;False;{};giwjkj4;False;t3_kv62wb;False;True;t3_kv62wb;/r/anime/comments/kv62wb/whats_up_with_all_the_re_stuff_are_they_related/giwjkj4/;1610436595;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610385854;moderator;False;{};giwjsz3;False;t3_kv79ig;False;True;t3_kv79ig;/r/anime/comments/kv79ig/please_help_me_remember_the_title_of_this_anime/giwjsz3/;1610436752;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610385985;;False;{};giwk5j3;False;t3_kv79ig;False;True;t3_kv79ig;/r/anime/comments/kv79ig/please_help_me_remember_the_title_of_this_anime/giwk5j3/;1610436941;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Hajimeri;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Montrachet;light;text;t2_ap99cz2;False;False;[];;Watching UBW first is objectively better tho.;False;False;;;;1610386058;;False;{};giwkchh;False;t3_kv6gpi;False;True;t1_giwgpob;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/giwkchh/;1610437045;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Risky_on_keyboard;;;[];;;;text;t2_4r8u6y4r;False;False;[];;Ah THANK YOU!;False;False;;;;1610386140;;False;{};giwkk8i;True;t3_kv715j;False;True;t1_giwitgj;/r/anime/comments/kv715j/where_can_i_find_this_anime_to_watch_in_sub/giwkk8i/;1610437152;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Risky_on_keyboard;;;[];;;;text;t2_4r8u6y4r;False;False;[];;Ah THANK YOU!;False;False;;;;1610386143;;False;{};giwkkgo;True;t3_kv715j;False;True;t1_giwij77;/r/anime/comments/kv715j/where_can_i_find_this_anime_to_watch_in_sub/giwkkgo/;1610437155;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DamnMitch69;;;[];;;;text;t2_50784s2o;False;False;[];;Jujutsu kaisen;False;False;;;;1610386158;;False;{};giwklts;False;t3_kv6m47;False;True;t3_kv6m47;/r/anime/comments/kv6m47/anything_similar_to_highschool_dxd_thats_any_good/giwklts/;1610437174;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DaddySpotify;;;[];;;;text;t2_9543szn;False;False;[];;"I felt the same after watching attack on titan, so I get that. On that note I think you might like some of my favorite anime. - -Devilman crybaby (12 episodes). A boy who gained the power to transform into a devil nad he uses that power to slaughter other devils. Sounds familiar? It'll also hit you right in the feels. - -Parasyte the maxim (24 episodes). I don't wanna say anything about it, just watch the first episode to see what it's all about. But it's a really really solid show in every way. - -Netflix's Castlevania (22 episodes + ongoing). While it's technically not an anime, it looks like an anime with beautiful aesthetics and animation with uncensored action. It's got a good story, great characters, fun and exciting action as well as emotional moments. It's great - -Death Note. Just watch it, it's amazing";False;False;;;;1610386264;;False;{};giwkund;False;t3_kv658t;False;True;t3_kv658t;/r/anime/comments/kv658t/which_anime_should_i_watch_next/giwkund/;1610437304;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hajimeri;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Montrachet;light;text;t2_ap99cz2;False;False;[];;Not particularly a tic/tourette but theres [Komi-san](https://myanimelist.net/manga/99007/Komi-san_wa_Comyushou_desu) ,a girl with communication disorder? (im not sure if its the right word but hopefully it didnt offend you or anyone with a real diagnosed disorder);False;False;;;;1610386277;;False;{};giwkvqo;False;t3_kv5xaf;False;True;t3_kv5xaf;/r/anime/comments/kv5xaf/recommendations_for_animemanga_pls/giwkvqo/;1610437321;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RedsonOfKyrypton;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RedsonofMelomarc;light;text;t2_5d1b60l;False;False;[];;You're welcome.;False;False;;;;1610386321;;False;{};giwkza2;False;t3_kv715j;False;True;t1_giwkkgo;/r/anime/comments/kv715j/where_can_i_find_this_anime_to_watch_in_sub/giwkza2/;1610437381;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;I think u/RedsonOfKyrypton knows where to watch it legally.;False;False;;;;1610386355;;False;{};giwl1wm;False;t3_kv715j;False;True;t1_giwkk8i;/r/anime/comments/kv715j/where_can_i_find_this_anime_to_watch_in_sub/giwl1wm/;1610437423;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thesaltylameon;;;[];;;;text;t2_946eao0g;False;False;[];;"The starting part of the story sounds a lot like ""another""";False;False;;;;1610386507;;False;{};giwldvc;False;t3_kv79ig;False;True;t3_kv79ig;/r/anime/comments/kv79ig/please_help_me_remember_the_title_of_this_anime/giwldvc/;1610437602;0;True;False;anime;t5_2qh22;;0;[]; -[];;;N0TS4FEOfficial;;;[];;;;text;t2_5bfva4t4;False;False;[];;"Can only think of 2 with female mcs that are somewhat badass. - -Kyoukai no kanata and The promised neverland";False;False;;;;1610386753;;False;{};giwlxqb;False;t3_kv6lm2;False;True;t3_kv6lm2;/r/anime/comments/kv6lm2/very_new_to_anime/giwlxqb/;1610437933;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sky-Roshy;;;[];;;;text;t2_2w0f5enk;False;False;[];;Nope. Haven’t watched it;False;False;;;;1610387061;;False;{};giwmm7h;True;t3_kv79ig;False;True;t1_giwldvc;/r/anime/comments/kv79ig/please_help_me_remember_the_title_of_this_anime/giwmm7h/;1610438333;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Regulus1947;;;[];;;;text;t2_8t8i9s3y;False;False;[];;Yep, while there are differences, it does ring bells. And while you are at it try Hyouka and Erased (Boku dake ga inai machi);False;False;;;;1610387101;;False;{};giwmpf7;False;t3_kv79ig;False;True;t1_giwldvc;/r/anime/comments/kv79ig/please_help_me_remember_the_title_of_this_anime/giwmpf7/;1610438380;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sky-Roshy;;;[];;;;text;t2_2w0f5enk;False;False;[];;I thought it was Clannad too at first. But the closest character there I could think of was the girl who made star fish carvings. But she is in fact a spirit and not someone who is taking up someone else’s identity;False;False;;;;1610387219;;False;{};giwmysv;True;t3_kv79ig;False;True;t1_giwk5j3;/r/anime/comments/kv79ig/please_help_me_remember_the_title_of_this_anime/giwmysv/;1610438527;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi swaggest_b1tc, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610387225;moderator;False;{};giwmzac;False;t3_kv7rex;False;True;t3_kv7rex;/r/anime/comments/kv7rex/which_anime_should_i_watch_next/giwmzac/;1610438534;1;False;False;anime;t5_2qh22;;0;[]; -[];;;PrimaryMarrow44;;;[];;;;text;t2_9a52q0ud;False;False;[];;"If you have not watched any of this ones I thoroughly recomend them: -Steins Gate, -Code Geass, -Overflow, -Kyouku no Kanata, -Tokyo Ghoul.";False;False;;;;1610387298;;False;{};giwn592;False;t3_kv658t;False;False;t3_kv658t;/r/anime/comments/kv658t/which_anime_should_i_watch_next/giwn592/;1610438639;1;True;False;anime;t5_2qh22;;0;[]; -[];;;20thcbnow;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/20thcbnow;light;text;t2_34qcg2qp;False;False;[];;No, F/SN 2006 first is best;False;False;;;;1610387500;;False;{};giwnlg8;False;t3_kv6gpi;False;False;t1_giwkchh;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/giwnlg8/;1610438884;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Zayed_khalid;;;[];;;;text;t2_7f1hqahz;False;False;[];;Imma save this post , so tell me once you find the anime . (Sounds good );False;False;;;;1610387593;;False;{};giwnsza;False;t3_kv79ig;False;True;t3_kv79ig;/r/anime/comments/kv79ig/please_help_me_remember_the_title_of_this_anime/giwnsza/;1610438998;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi ComplaintWeird7959, your post has been removed because your title is below our minimum length requirement of 4 words. Feel free to repost with a more descriptive title. - -If you're looking to get a quick question answered, like asking for [recommendations](https://www.reddit.com/r/anime/wiki/recommendations), [the source of a picture](https://www.reddit.com/r/anime/wiki/reverse_image_searching), a [watch order](https://www.reddit.com/r/anime/wiki/watch_order) or any other [general question](https://www.reddit.com/r/anime/wiki/faaq), please check our sidebar too, it might help you faster. - -[**Thank you!**](#blushubot) - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610387603;moderator;False;{};giwntw4;False;t3_kv7w6d;False;True;t3_kv7w6d;/r/anime/comments/kv7w6d/anime_recommendations/giwntw4/;1610439012;1;False;False;anime;t5_2qh22;;0;[]; -[];;;RedsonOfKyrypton;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RedsonofMelomarc;light;text;t2_5d1b60l;False;False;[];;Kimetsu no Yaiba followed by Yuri on ice.;False;False;;;;1610387643;;False;{};giwnx2p;False;t3_kv7rex;False;True;t3_kv7rex;/r/anime/comments/kv7rex/which_anime_should_i_watch_next/giwnx2p/;1610439059;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sky-Roshy;;;[];;;;text;t2_2w0f5enk;False;False;[];;Haha will do, tho it sounds like I already spoiled it a bit for you;False;False;;;;1610387674;;False;{};giwnzlp;True;t3_kv79ig;False;True;t1_giwnsza;/r/anime/comments/kv79ig/please_help_me_remember_the_title_of_this_anime/giwnzlp/;1610439097;0;True;False;anime;t5_2qh22;;0;[]; -[];;;N1k74s;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/;light;text;t2_4keqd81e;False;False;[];;As I see Demon Slayer is on your List, I can definetly recommend that one. Jujutsu Kaisen is also amazing (I think new episodes come this week). It's an anime that has some serious parts like Tokyo Ghoul but also some comedy and the fights are amazing. They have some Gore but not too much. Classroom of the Elite is also great! I won't say much about that but there are some twists and it's pretty unpredictable. It's also very dark in Psychological terms (not much fighting more like mind games).;False;False;;;;1610387679;;False;{};giwo00l;False;t3_kv7rex;False;True;t3_kv7rex;/r/anime/comments/kv7rex/which_anime_should_i_watch_next/giwo00l/;1610439103;3;True;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;"From that list, definitely HxH - -Other than that, I would suggest Zankyou no terror";False;False;;;;1610387752;;False;{};giwo5z6;False;t3_kv7rex;False;True;t3_kv7rex;/r/anime/comments/kv7rex/which_anime_should_i_watch_next/giwo5z6/;1610439189;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zayed_khalid;;;[];;;;text;t2_7f1hqahz;False;False;[];;Nah I won’t call it a spoiler + I didn’t read the whole thing;False;False;;;;1610387809;;False;{};giwoalu;False;t3_kv79ig;False;True;t1_giwnzlp;/r/anime/comments/kv79ig/please_help_me_remember_the_title_of_this_anime/giwoalu/;1610439257;0;True;False;anime;t5_2qh22;;0;[]; -[];;;NenBE4ST;;;[];;;;text;t2_57p0ycnd;False;False;[];;You lost when you said objectively;False;False;;;;1610387967;;False;{};giwong1;False;t3_kv6gpi;False;False;t1_giwkchh;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/giwong1/;1610439444;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi saintrotation, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610388069;moderator;False;{};giwovsv;False;t3_kv823r;False;True;t3_kv823r;/r/anime/comments/kv823r/recommend_me_a_show_but_with_a_spin_d/giwovsv/;1610439567;2;False;False;anime;t5_2qh22;;0;[]; -[];;;mindiBobo;;;[];;;;text;t2_7gwhxrkv;False;False;[];;Demon slayer. It’s so good and beautifully animated.;False;False;;;;1610388072;;False;{};giwow0b;False;t3_kv7rex;False;True;t3_kv7rex;/r/anime/comments/kv7rex/which_anime_should_i_watch_next/giwow0b/;1610439570;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;"Yes Hunter x Hunter and Attack on Titan are fantastic and have insanely high scores on anime database websites and all that, but keep in mind that you shouldn’t compare everything to them. No shit almost nothing is going to be as good as Attack on Titan in terms of the storytelling strengths AoT has(suspense/mystery/thriller in an action-heavy setting with a blurry history), nor the way aerial combat is animated with the 3DMG, but that doesn’t make all the numerous other types of storytelling bad by comparison. - -It doesn’t make the deep dive into asking what means to be alive in Ghost in the Shell any less good, nor does it make the interactions in a nice romance series any less good, nor does it make the hilarity and sexiness of Ishuzoku Reviewers any less good. - -So in summary, check our Ping Pong the Animation. It’s totally different from HxH and AoT, only 11 episodes, and fucking fantastic.";False;False;;;;1610388181;;False;{};giwp4n7;False;t3_kv658t;False;True;t3_kv658t;/r/anime/comments/kv658t/which_anime_should_i_watch_next/giwp4n7/;1610439697;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mcchickenngget;;;[];;;;text;t2_38tfo3j2;False;False;[];;Looks great!;False;False;;;;1610388279;;False;{};giwpces;False;t3_kv74lk;False;False;t3_kv74lk;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/giwpces/;1610439814;72;True;False;anime;t5_2qh22;;0;[]; -[];;;RajaatTheWarbringer;;;[];;;;text;t2_2ssfh8e5;False;False;[];;"Steins;Gate.";False;False;;;;1610388348;;False;{};giwphuo;False;t3_kv7rex;False;True;t3_kv7rex;/r/anime/comments/kv7rex/which_anime_should_i_watch_next/giwphuo/;1610439893;1;True;False;anime;t5_2qh22;;0;[]; -[];;;juances19;;HB;[];;https://kitsu.io/users/juances;dark;text;t2_17a18d;False;False;[];;"It's GoHands, all their anime lately have these... experimental effects that 9 out of 10 look like crap. - -Watch HandShakers, that's when they derailed the most.";False;False;;;;1610388403;;False;{};giwpm79;False;t3_kv7l8x;False;False;t3_kv7l8x;/r/anime/comments/kv7l8x/praeter_no_kizu_who_though_that_this_absurd_blend/giwpm79/;1610439956;4;True;False;anime;t5_2qh22;;0;[]; -[];;;swaggest_b1tc;;;[];;;;text;t2_9ai7v6vi;False;False;[];;ive seen it and id rather say it was boring for me. i didnt really like the waiting for it to actually start getting entertaining;False;False;;;;1610388486;;False;{};giwpsrd;True;t3_kv7rex;False;True;t1_giwphuo;/r/anime/comments/kv7rex/which_anime_should_i_watch_next/giwpsrd/;1610440053;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;pweavd;;;[];;;;text;t2_zkkwu;False;False;[];;thanks man! :);False;False;;;;1610389011;;False;{};giwqyvn;True;t3_kv74lk;False;False;t1_giwpces;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/giwqyvn/;1610440677;20;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;"I'll keep it short - -Mahoutsukai Sally (1966-1968) - -First shoujo anime, first Mahou Shoujo anime, a legendary classic. - -Sazae-san (1969-current) - -Longest still running animated TV-series ever and after watching couple hundred episodes I can see why it's still airing. Truly a phenomenal series and experience. - - -Chibi Maruko-chan (1995-current) - -Wholesome and cute family slice of life.";False;False;;;;1610389046;;False;{};giwr1nz;False;t3_kv823r;False;True;t3_kv823r;/r/anime/comments/kv823r/recommend_me_a_show_but_with_a_spin_d/giwr1nz/;1610440718;2;True;False;anime;t5_2qh22;;0;[]; -[];;;juances19;;HB;[];;https://kitsu.io/users/juances;dark;text;t2_17a18d;False;False;[];;"Maybe people are more lenient depending on the artstyle, but quality still plays an important factor. - -I can see an ""ok"" dub being bumped to ""great"" status because of this effect, but an awful voice acting would still sound awful regardless of the art.";False;False;;;;1610389090;;False;{};giwr57n;False;t3_kv89sq;False;True;t3_kv89sq;/r/anime/comments/kv89sq/why_these_dubs_are_favorites_of_many/giwr57n/;1610440770;1;True;False;anime;t5_2qh22;;0;[]; -[];;;brucebananaray;;;[];;;;text;t2_15bpgp5p;False;True;[];;It is subjective to a lot of people. Some folks like the performance of the dub than the sub.;False;False;;;;1610389491;;False;{};giws14a;False;t3_kv89sq;False;False;t3_kv89sq;/r/anime/comments/kv89sq/why_these_dubs_are_favorites_of_many/giws14a/;1610441259;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;I mean, user ratings have always been worthless popularity contests. Why is this surprising?;False;False;;;;1610389606;;False;{};giwsalv;False;t3_kv8knd;False;True;t3_kv8knd;/r/anime/comments/kv8knd/am_i_or_this_subreddit_is_very_toxic/giwsalv/;1610441401;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610389626;;False;{};giwsc6c;False;t3_kv8knd;False;False;t3_kv8knd;/r/anime/comments/kv8knd/am_i_or_this_subreddit_is_very_toxic/giwsc6c/;1610441424;5;True;False;anime;t5_2qh22;;0;[]; -[];;;cbumpa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cbumpa;light;text;t2_4uaglc4u;False;False;[];;Let me just tell you, you have only scratched the surface lmao;False;False;;;;1610389645;;False;{};giwsdql;False;t3_kv658t;False;True;t3_kv658t;/r/anime/comments/kv658t/which_anime_should_i_watch_next/giwsdql/;1610441449;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OnlyAnEssenceThief;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ShinodaChan;light;text;t2_tiqmd;False;True;[];;This, life is too short to care about stuff like subreddit drama or who likes what unless you're really interested in them.;False;False;;;;1610389701;;False;{};giwsic1;False;t3_kv8knd;False;False;t1_giwsc6c;/r/anime/comments/kv8knd/am_i_or_this_subreddit_is_very_toxic/giwsic1/;1610441519;2;False;False;anime;t5_2qh22;;0;[]; -[];;;Penguinos007;;;[];;;;text;t2_jd4l7sd;False;False;[];;I don’t think so. Everyone has their own tastes and not liking an anime doesn’t mean you have good or bad taste. I feel that people who really like an anime and will defend it by calling people who don’t like their favorite anime trash or that they have bad taste. Don’t let it bother you.;False;False;;;;1610389835;;False;{};giwst3v;False;t3_kv8n0c;False;False;t3_kv8n0c;/r/anime/comments/kv8n0c/liking_monster_musume_determines_your_taste_in/giwst3v/;1610441688;6;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Amazing;False;False;;;;1610389851;;False;{};giwsud0;False;t3_kv8mf6;False;True;t3_kv8mf6;/r/anime/comments/kv8mf6/attack_on_titan_season_4/giwsud0/;1610441706;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;There currently is a discussion thread on the front page and each episode prior has their own designated subreddit wide discussion thread.;False;False;;;;1610389880;;False;{};giwswo9;False;t3_kv8mf6;False;True;t3_kv8mf6;/r/anime/comments/kv8mf6/attack_on_titan_season_4/giwswo9/;1610441740;14;True;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;"Have a look at the discussion thread: - -https://old.reddit.com/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/";False;False;;;;1610389887;;False;{};giwsx6s;False;t3_kv8mf6;False;True;t3_kv8mf6;/r/anime/comments/kv8mf6/attack_on_titan_season_4/giwsx6s/;1610441748;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwerti100;;;[];;;;text;t2_32gvcgrq;False;False;[];;The music near the end of the speech was underwhelming for the new episode;False;False;;;;1610389899;;False;{};giwsy7j;False;t3_kv8mf6;False;True;t3_kv8mf6;/r/anime/comments/kv8mf6/attack_on_titan_season_4/giwsy7j/;1610441763;0;True;False;anime;t5_2qh22;;0;[]; -[];;;squid-diddy;;;[];;;;text;t2_94e1dhom;False;False;[];;Thank you! I agree. :);False;False;;;;1610389932;;False;{};giwt0vu;True;t3_kv8n0c;False;True;t1_giwst3v;/r/anime/comments/kv8n0c/liking_monster_musume_determines_your_taste_in/giwt0vu/;1610441804;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OnlyAnEssenceThief;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ShinodaChan;light;text;t2_tiqmd;False;True;[];;"It's possible that he said it as a joke, but if we're being serious taste is entirely subjective and only applies to oneself; telling someone they have 'bad taste' is simply saying that you disagree with their personal preferences and believe they should follow yours in order to have 'good taste'.";False;False;;;;1610389950;;False;{};giwt29e;False;t3_kv8n0c;False;False;t3_kv8n0c;/r/anime/comments/kv8n0c/liking_monster_musume_determines_your_taste_in/giwt29e/;1610441825;11;False;False;anime;t5_2qh22;;0;[]; -[];;;Penguinos007;;;[];;;;text;t2_jd4l7sd;False;False;[];;I literally just watched all three seasons a week ago and got caught up with the newest episode. And I can say that I can see why there is all the hype for this series. I fucking lost it with Eren turned into his titan. It was also great to see him confront Reiner and to see Reiner in absolute terror.;False;False;;;;1610389957;;False;{};giwt2wx;False;t3_kv8mf6;False;True;t3_kv8mf6;/r/anime/comments/kv8mf6/attack_on_titan_season_4/giwt2wx/;1610441833;6;True;False;anime;t5_2qh22;;0;[]; -[];;;squid-diddy;;;[];;;;text;t2_94e1dhom;False;False;[];;He was being serious lol, at first we thought he was teasing but it’s evident he’s being legit. Thank you for responding!;False;False;;;;1610390027;;False;{};giwt8ax;True;t3_kv8n0c;False;False;t1_giwt29e;/r/anime/comments/kv8n0c/liking_monster_musume_determines_your_taste_in/giwt8ax/;1610441919;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610390060;;False;{};giwtayi;False;t3_kv8mf6;False;True;t3_kv8mf6;/r/anime/comments/kv8mf6/attack_on_titan_season_4/giwtayi/;1610441957;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Miidas-92;;MAL;[];;https://myanimelist.net/profile/Miidas;dark;text;t2_ja1jx;False;False;[];;Liking/Disliking a single anime, will never determine your taste in the entire medium.;False;False;;;;1610390180;;False;{};giwtkg3;False;t3_kv8n0c;False;False;t3_kv8n0c;/r/anime/comments/kv8n0c/liking_monster_musume_determines_your_taste_in/giwtkg3/;1610442097;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;Hana Yori Dango;False;False;;;;1610390514;;False;{};giwub6d;False;t3_kv8wep;False;True;t3_kv8wep;/r/anime/comments/kv8wep/any_good_romance_animes/giwub6d/;1610442485;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Agreeable-Highlight;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/STARFLIGHT1111/;light;text;t2_2xajbknh;False;False;[];;That’s kind of ironic because Monster Musume is one of those series that’s come to represent the trashy fanservice type of anime. Usually liking it means the opposite, that you have horrible taste.;False;False;;;;1610390593;;False;{};giwuhg1;False;t3_kv8n0c;False;False;t3_kv8n0c;/r/anime/comments/kv8n0c/liking_monster_musume_determines_your_taste_in/giwuhg1/;1610442578;6;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;"Chobits -It's hard to appreciate Chobits if you take it for face value, but as a whole it's one of my favorites and probably the most interesting show I've seen. It's a robot romance series, kinda like Plastic Memories (but more slice-of-life). At face value, Chobits is a slice-of-life ecchi romance with a tacked-on plot at the end. Beyond face-value, Chobits is a cautious look at the future from the point of view of 2002 that questions whether humans forming affection for machines can really be a good thing. There's [this great video](https://www.youtube.com/watch?v=H8X7FHrq278) on YouTube about Chobits which is where I first heard of it from. There might be light spoilers, but the story of Chobits isn't the important part anyway. Also, the soundtrack of Chobits is one of the best and the voice acting is also great (Sugita Tomokazu).";False;False;;;;1610390613;;False;{};giwuj48;False;t3_kv823r;False;False;t3_kv823r;/r/anime/comments/kv823r/recommend_me_a_show_but_with_a_spin_d/giwuj48/;1610442603;3;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;Toradora, Kare Kano;False;False;;;;1610390655;;False;{};giwumeb;False;t3_kv8ylf;False;True;t3_kv8ylf;/r/anime/comments/kv8ylf/im_looking_for_a_romance_anime/giwumeb/;1610442652;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Beckymetal;;;[];;;;text;t2_10wmi0;False;False;[];;"Dubs do tend to be more popular when they are based in a Western country or Western ideas. Yeah. - -But there are some genuinely good dubs out there. You can often tell because of the cast, with certain voice actors being more prominent in lauded dubs eg Crispin Freeman.";False;False;;;;1610390663;;False;{};giwun33;False;t3_kv89sq;False;True;t3_kv89sq;/r/anime/comments/kv89sq/why_these_dubs_are_favorites_of_many/giwun33/;1610442661;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;"Azuki-chan - -Hana Yori Dango - -Hikari no Densetsu";False;False;;;;1610390671;;False;{};giwunse;False;t3_kv8ylf;False;True;t3_kv8ylf;/r/anime/comments/kv8ylf/im_looking_for_a_romance_anime/giwunse/;1610442672;1;True;False;anime;t5_2qh22;;0;[]; -[];;;banana4lifesquad;;;[];;;;text;t2_73vgcfb5;False;False;[];;Kaguya sama: love is war;False;False;;;;1610390703;;False;{};giwuqc5;False;t3_kv8wep;False;True;t3_kv8wep;/r/anime/comments/kv8wep/any_good_romance_animes/giwuqc5/;1610442710;1;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;If you haven't already seen Toradora then check that one out. Kare Kano is one of the best romance as well.;False;False;;;;1610390706;;False;{};giwuql4;False;t3_kv8wep;False;True;t3_kv8wep;/r/anime/comments/kv8wep/any_good_romance_animes/giwuql4/;1610442714;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Strickout;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Strickout?status=2;light;text;t2_1szolp7k;False;False;[];;"I don't think liking or disliking any one single anime shows ones entire taste. Not everyone likes the same stuff, there are some animes that are universally disliked that I have in my Top 10 All-Time. Does that mean I have bad taste? No I don't think so, I just look for and enjoy different things from the people who don't like it. - -Not to mention peoples tastes stretch over so many genres that equating liking or disliking one single anime to their ENTIRE taste would be tantamount to saying ""Oh you don't like Friends? You must hate all TV shows then."" - -At least that's my opinion, also since Monster Musume is a pure fanservice anime it's not uncommon for women to dislike it since those kinds of shows are almost entirely and unapologetically geared towards guys";False;False;;;;1610390738;;False;{};giwut65;False;t3_kv8n0c;False;True;t3_kv8n0c;/r/anime/comments/kv8n0c/liking_monster_musume_determines_your_taste_in/giwut65/;1610442751;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PuzzySlayer69xdPL;;;[];;;;text;t2_3rz62akk;False;False;[];;Those two look great, thanks for recommendation i will watch it for sure!;False;False;;;;1610390754;;False;{};giwuuh0;True;t3_kv5us6;False;True;t1_giwbos1;/r/anime/comments/kv5us6/series_similiar_to_fatezero_series_with_dark/giwuuh0/;1610442768;1;True;False;anime;t5_2qh22;;0;[]; -[];;;deltadeath05;;;[];;;;text;t2_p27758d;False;False;[];;Toradora;False;False;;;;1610390768;;False;{};giwuvko;False;t3_kv8ylf;False;True;t3_kv8ylf;/r/anime/comments/kv8ylf/im_looking_for_a_romance_anime/giwuvko/;1610442784;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PuzzySlayer69xdPL;;;[];;;;text;t2_3rz62akk;False;False;[];;Looks nice, haven't heard of it, thanks for recommendation!;False;False;;;;1610390769;;False;{};giwuvn7;True;t3_kv5us6;False;False;t1_giwduh4;/r/anime/comments/kv5us6/series_similiar_to_fatezero_series_with_dark/giwuvn7/;1610442784;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PuzzySlayer69xdPL;;;[];;;;text;t2_3rz62akk;False;False;[];;Why this order tho? without spoilers;False;False;;;;1610390789;;False;{};giwuxa5;True;t3_kv5us6;False;True;t1_giwduh4;/r/anime/comments/kv5us6/series_similiar_to_fatezero_series_with_dark/giwuxa5/;1610442808;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Most of the time it's Gundam, Toaru, Monogatari, and Fate. - -Most anime watch order is release order, most anime, not all. - -Gundam: - -UC or AU is fine. UC = start from the beginning (1979 series) and AU is the new starting point by the Gundam producers. If you're fine with slow pacing and old animation, go with UC, if you're accustomed to 16:9 anime and would like new shows, then AU is for you. - -Toaru: - -Index or Railgun is fine, but I prefer railgun. If someone likes worldbuilding over emotion, then they should watch Index first. If someone prefers emotional kick in their story, railgun first. - -Monogatari: - -Novel release order, always. Some people watched it in release order and are telling people in release order are just coping for the fact that Kizumonogatari was in development hell. Also because monogatari doesn't have a season number next to it, people don't know what's next - -Fate: - -I'm not going to say it here. To misquote George Orwell: ""All watch orders are wrong, but some watch orders are more wrong than others"". Y'know when a fan who's seen all the one tells you to ~~read the visual novel~~ watch it in a specific order and you ignore it, asking UBW or Zero, you're either ignorant or angry. - -&#x200B; - -And other shows that'll get asked are shows that don't have a definitive season number (e.g. Gintama, Symphogear, Violet Evergarden, etc) - -Obviously there's other ones, including Multimedia franchises which can't be enjoyed just by watching the anime alone. - -Also there's some other shows like jojo and higurashi where some people want to watch the ""good ones"" and nothing will convince them otherwise because they're mostly ignorant. (they just want to get to the good stuff)";False;False;;;;1610390808;;False;{};giwuytw;False;t3_kv6gpi;False;True;t3_kv6gpi;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/giwuytw/;1610442831;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nakorurukami;;;[];;;;text;t2_4t03x4n9;False;False;[];;"Pet girl of Sakurasou - -Rent a Girlfriend - -Nozoki Ana - -Koi Kaze - -Yosuga no Sora - -Domestic Girlfriend";False;False;;;;1610390869;;False;{};giwv3t6;False;t3_kv8ylf;False;True;t3_kv8ylf;/r/anime/comments/kv8ylf/im_looking_for_a_romance_anime/giwv3t6/;1610442904;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Strongerhouseplants;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/whatthehell_;light;text;t2_8ihhjlp3;False;True;[];;and bunny girl senpai;False;False;;;;1610390892;;False;{};giwv5o2;False;t3_kv6gpi;False;True;t1_giwf05a;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/giwv5o2/;1610442929;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KimJongMilhouse;;;[];;;;text;t2_n9w83;False;False;[];;Sekaiichi Hatsukoi.;False;False;;;;1610390911;;False;{};giwv75i;False;t3_kv8ylf;False;True;t3_kv8ylf;/r/anime/comments/kv8ylf/im_looking_for_a_romance_anime/giwv75i/;1610442950;2;True;False;anime;t5_2qh22;;0;[]; -[];;;daedricelf;;;[];;;;text;t2_33sdusju;False;False;[];;Have you given Demon Slayer a shot?;False;False;;;;1610390948;;False;{};giwva6m;False;t3_kv92fd;False;False;t3_kv92fd;/r/anime/comments/kv92fd/animes_like_my_hero_academia/giwva6m/;1610442995;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;I can't understand what my husband is saying.;False;False;;;;1610390983;;False;{};giwvcwy;False;t3_kv8ylf;False;True;t3_kv8ylf;/r/anime/comments/kv8ylf/im_looking_for_a_romance_anime/giwvcwy/;1610443035;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi redsnenny, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610390998;moderator;False;{};giwve49;False;t3_kv93r7;False;True;t3_kv93r7;/r/anime/comments/kv93r7/anime_suggestions_for_me_to_watch_after_romance/giwve49/;1610443053;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610391019;;False;{};giwvfsr;False;t3_kv92fd;False;True;t1_giwva6m;/r/anime/comments/kv92fd/animes_like_my_hero_academia/giwvfsr/;1610443076;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okbuddybutbruh;;;[];;;;text;t2_9ow7haip;False;False;[];;One Punch Man and Mob Psyco if you want to go for the superhero route. Assassination Classroom if you want in depth students in high school;False;False;;;;1610391031;;False;{};giwvgwk;False;t3_kv92fd;False;True;t3_kv92fd;/r/anime/comments/kv92fd/animes_like_my_hero_academia/giwvgwk/;1610443093;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheAnimeSyndicate;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;I Post Completed Anime;dark;text;t2_43nqhnqw;False;False;[];;r/CompletedRomanceAnime that’s apart of the [completed anime list by genres](https://www.reddit.com/user/theanimesyndicate/m/completedanimecollection_can/) that I update monthly on reddit. Give it a skim if you’re interested;False;False;;;;1610391115;;False;{};giwvnl0;False;t3_kv8wep;False;True;t3_kv8wep;/r/anime/comments/kv8wep/any_good_romance_animes/giwvnl0/;1610443189;1;True;False;anime;t5_2qh22;;0;[]; -[];;;deltadeath05;;;[];;;;text;t2_p27758d;False;False;[];;Toradora;False;False;;;;1610391189;;False;{};giwvtkr;False;t3_kv8wep;False;True;t3_kv8wep;/r/anime/comments/kv8wep/any_good_romance_animes/giwvtkr/;1610443280;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Animetthighs;;;[];;;;text;t2_874mc8b4;False;False;[];;If you think he's an incel because of mm you truly don't know the weeb community;False;False;;;;1610391209;;False;{};giwvv74;False;t3_kv8n0c;False;True;t3_kv8n0c;/r/anime/comments/kv8n0c/liking_monster_musume_determines_your_taste_in/giwvv74/;1610443303;2;True;False;anime;t5_2qh22;;0;[]; -[];;;juances19;;HB;[];;https://kitsu.io/users/juances;dark;text;t2_17a18d;False;False;[];;MM is aimed mostly at males (or bi/lesbians?) as it's an ecchi comedy about monster girls having the hots for the main dude. It should come to no surprise that a girl is not super into it tbh, as they are not the targeted audience.;False;False;;;;1610391213;;False;{};giwvvkh;False;t3_kv8n0c;False;True;t3_kv8n0c;/r/anime/comments/kv8n0c/liking_monster_musume_determines_your_taste_in/giwvvkh/;1610443309;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Some people like their humans that aren't humans. - -Some people like their humans unmodified.";False;False;;;;1610391246;;False;{};giwvy4z;False;t3_kv8n0c;False;True;t3_kv8n0c;/r/anime/comments/kv8n0c/liking_monster_musume_determines_your_taste_in/giwvy4z/;1610443346;2;True;False;anime;t5_2qh22;;0;[]; -[];;;squid-diddy;;;[];;;;text;t2_94e1dhom;False;False;[];;I think he’s an incel for saying we don’t have taste Bc we don’t care for MM. :);False;False;;;;1610391260;;False;{};giwvzba;True;t3_kv8n0c;False;True;t1_giwvv74;/r/anime/comments/kv8n0c/liking_monster_musume_determines_your_taste_in/giwvzba/;1610443363;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;How much time did it take?;False;False;;;;1610391296;;False;{};giww28o;False;t3_kv74lk;False;False;t3_kv74lk;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/giww28o/;1610443406;48;True;False;anime;t5_2qh22;;0;[]; -[];;;Agreeable-Highlight;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/STARFLIGHT1111/;light;text;t2_2xajbknh;False;False;[];;Let me get this straight. You want a romance anime...that gives you chills...like Escanor? What does that even mean? Can I get some clarification?;False;False;;;;1610391334;;False;{};giww5bc;False;t3_kv93r7;False;True;t3_kv93r7;/r/anime/comments/kv93r7/anime_suggestions_for_me_to_watch_after_romance/giww5bc/;1610443449;2;True;False;anime;t5_2qh22;;0;[]; -[];;;okbuddybutbruh;;;[];;;;text;t2_9ow7haip;False;False;[];;My guy has given Erased a 10 and Steins Gate a 7 lmao. But anyway, Demon Slayer is the best choice;False;False;;;;1610391363;;False;{};giww7km;False;t3_kv7rex;False;True;t3_kv7rex;/r/anime/comments/kv7rex/which_anime_should_i_watch_next/giww7km/;1610443481;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610391386;;False;{};giww9em;False;t3_kv8n0c;False;True;t1_giwuhg1;/r/anime/comments/kv8n0c/liking_monster_musume_determines_your_taste_in/giww9em/;1610443508;1;True;False;anime;t5_2qh22;;0;[]; -[];;;redsnenny;;;[];;;;text;t2_2m5jsoef;False;False;[];;I fixed my post, my apologies.;False;False;;;;1610391405;;False;{};giwwaux;True;t3_kv93r7;False;True;t1_giww5bc;/r/anime/comments/kv93r7/anime_suggestions_for_me_to_watch_after_romance/giwwaux/;1610443530;1;True;False;anime;t5_2qh22;;0;[]; -[];;;squid-diddy;;;[];;;;text;t2_94e1dhom;False;False;[];;I like your thinking, magic human.;False;False;;;;1610391421;;False;{};giwwc7p;True;t3_kv8n0c;False;True;t1_giwuhg1;/r/anime/comments/kv8n0c/liking_monster_musume_determines_your_taste_in/giwwc7p/;1610443550;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;"You should watch - -- Oregairu - -- Your lie in april - -- bunny girl senpai - -- Your name - -- Clannad - -- Pet girl if Sakurosa";False;False;;;;1610391458;;False;{};giwwf56;False;t3_kv8wep;False;True;t3_kv8wep;/r/anime/comments/kv8wep/any_good_romance_animes/giwwf56/;1610443592;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"> But now I want some action again. Any ideas of anime that’ll give me the chills like Escanor has?";False;False;;;;1610391473;;False;{};giwwgdj;False;t3_kv93r7;False;True;t1_giww5bc;/r/anime/comments/kv93r7/anime_suggestions_for_me_to_watch_after_romance/giwwgdj/;1610443610;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;Here to plug in **the Garden of sinners**, it is this urban fantasy movie series mixed with romance, murder-mystery, action, and philosophy. I recommend watching it in the series in the order of 1, 2, 3, 4, 6, 5, recap, 7, 8 to maximize your enjoyment of this series.;False;False;;;;1610391511;;False;{};giwwjgg;False;t3_kv93r7;False;True;t3_kv93r7;/r/anime/comments/kv93r7/anime_suggestions_for_me_to_watch_after_romance/giwwjgg/;1610443655;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;There may be something to that. I've heard people on here say before that they'll watch the dub for animes set in a more English-style environment and for animes set in Japan, they'll opt for subs (there might have been flexibility in that, I can't remember the exact phrasing atm... supposedly there's some clues in Bebop, for example, to indicate Japanese origins, but I think that may have been one of those person's dub examples.) There's probably enough consensus on those shows to spare them from controversy.;False;False;;;;1610391515;;False;{};giwwjsk;False;t3_kv89sq;False;False;t3_kv89sq;/r/anime/comments/kv89sq/why_these_dubs_are_favorites_of_many/giwwjsk/;1610443660;2;True;False;anime;t5_2qh22;;0;[]; -[];;;squid-diddy;;;[];;;;text;t2_94e1dhom;False;False;[];;I completely agree. 🤍;False;False;;;;1610391525;;False;{};giwwkme;True;t3_kv8n0c;False;True;t1_giwut65;/r/anime/comments/kv8n0c/liking_monster_musume_determines_your_taste_in/giwwkme/;1610443672;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Agreeable-Highlight;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/STARFLIGHT1111/;light;text;t2_2xajbknh;False;False;[];;...magic human? Can I take that as a compliment?;False;False;;;;1610391535;;False;{};giwwlfp;False;t3_kv8n0c;False;True;t1_giwwc7p;/r/anime/comments/kv8n0c/liking_monster_musume_determines_your_taste_in/giwwlfp/;1610443683;3;True;False;anime;t5_2qh22;;0;[]; -[];;;squid-diddy;;;[];;;;text;t2_94e1dhom;False;False;[];;Exactly;False;False;;;;1610391537;;False;{};giwwlmp;True;t3_kv8n0c;False;True;t1_giwtkg3;/r/anime/comments/kv8n0c/liking_monster_musume_determines_your_taste_in/giwwlmp/;1610443685;1;True;False;anime;t5_2qh22;;0;[]; -[];;;squid-diddy;;;[];;;;text;t2_94e1dhom;False;False;[];;Please do, it’s intended to be the ultimate compliment. 🤍;False;False;;;;1610391574;;False;{};giwwonx;True;t3_kv8n0c;False;False;t1_giwwlfp;/r/anime/comments/kv8n0c/liking_monster_musume_determines_your_taste_in/giwwonx/;1610443728;3;True;False;anime;t5_2qh22;;0;[]; -[];;;swaggest_b1tc;;;[];;;;text;t2_9ai7v6vi;False;False;[];;"because half of s;g was boring lmao? with erased you can get hooked on to the story with first episode unlike s;g where you have to wait 12 episodes for it to get entertaining.";False;False;;;;1610391597;;False;{};giwwqge;True;t3_kv7rex;False;True;t1_giww7km;/r/anime/comments/kv7rex/which_anime_should_i_watch_next/giwwqge/;1610443754;0;True;False;anime;t5_2qh22;;0;[]; -[];;;yeereekid9000;;;[];;;;text;t2_8y09jsx5;False;False;[];;Wow... That looks amazing!!;False;False;;;;1610391597;;False;{};giwwqhd;False;t3_kv74lk;False;False;t3_kv74lk;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/giwwqhd/;1610443754;4;True;False;anime;t5_2qh22;;0;[]; -[];;;okbuddybutbruh;;;[];;;;text;t2_9ow7haip;False;False;[];;Steins gate is like a fine wine. It gets better after awhile. It's isn't ranked No.3 for nothing, Personal preference I guess;False;False;;;;1610391664;;False;{};giwwvuo;False;t3_kv7rex;False;True;t1_giwwqge;/r/anime/comments/kv7rex/which_anime_should_i_watch_next/giwwvuo/;1610443832;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Agreeable-Highlight;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/STARFLIGHT1111/;light;text;t2_2xajbknh;False;False;[];;Well, thanks very much then!;False;False;;;;1610391731;;False;{};giwx12g;False;t3_kv8n0c;False;True;t1_giwwonx;/r/anime/comments/kv8n0c/liking_monster_musume_determines_your_taste_in/giwx12g/;1610443907;2;True;False;anime;t5_2qh22;;0;[]; -[];;;smiley-rell;;;[];;;;text;t2_9iaznvjw;False;False;[];;bloom into you;False;False;;;;1610391838;;False;{};giwx9ge;False;t3_kv8ylf;False;False;t3_kv8ylf;/r/anime/comments/kv8ylf/im_looking_for_a_romance_anime/giwx9ge/;1610444039;6;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610391902;moderator;False;{};giwxej9;False;t3_kv9fvg;False;True;t3_kv9fvg;/r/anime/comments/kv9fvg/tell_me_your_fav_anime/giwxej9/;1610444114;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;How is that any similar?;False;False;;;;1610391981;;False;{};giwxkxf;False;t3_kv6m47;False;True;t1_giwklts;/r/anime/comments/kv6m47/anything_similar_to_highschool_dxd_thats_any_good/giwxkxf/;1610444206;0;True;False;anime;t5_2qh22;;0;[]; -[];;;GonAkira;;;[];;;;text;t2_7znggpqv;False;False;[];;Jojos Bizarre Adventure;False;False;;;;1610391986;;False;{};giwxl9n;False;t3_kv9fvg;False;True;t3_kv9fvg;/r/anime/comments/kv9fvg/tell_me_your_fav_anime/giwxl9n/;1610444211;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The-Supreme-Leader;;;[];;;;text;t2_2748vpwj;False;False;[];;Original dragon ball;False;False;;;;1610391990;;False;{};giwxllx;False;t3_kv9fvg;False;True;t3_kv9fvg;/r/anime/comments/kv9fvg/tell_me_your_fav_anime/giwxllx/;1610444215;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;If your in for the PLOT then Masou gakuen hxh;False;False;;;;1610392008;;False;{};giwxmyf;False;t3_kv6m47;False;False;t3_kv6m47;/r/anime/comments/kv6m47/anything_similar_to_highschool_dxd_thats_any_good/giwxmyf/;1610444235;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Agreeable-Highlight;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/STARFLIGHT1111/;light;text;t2_2xajbknh;False;False;[];;Ok, Gotcha. That makes much more sense now.;False;False;;;;1610392009;;False;{};giwxn1d;False;t3_kv93r7;False;True;t1_giwwaux;/r/anime/comments/kv93r7/anime_suggestions_for_me_to_watch_after_romance/giwxn1d/;1610444236;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Please create an anime list. You can create one at either: Myanimelist.net, anilist.co, kitsu or anime-planet. All 4 are free and easy to use. Helps you remember what you've seen and helps us so we aren't suggesting you what you've seen already. - -Some action or hype anime at least - -Death Note - -Black Lagoon - -Gurren Lagann - -The Promised Neverland - -Haikyuu - -Psycho-Pass - -Mahou Shoujo Madoka Magica";False;False;;;;1610392112;;False;{};giwxv6g;False;t3_kv93r7;False;True;t3_kv93r7;/r/anime/comments/kv93r7/anime_suggestions_for_me_to_watch_after_romance/giwxv6g/;1610444358;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ErenIsNotADevil;;;[];;;;text;t2_9rlvlb8w;False;False;[];;"Wolf’s Rain - -It’s an underappreciated work of art with an amazing OST by Yoko Kanno. I highly recommend it";False;False;;;;1610392121;;False;{};giwxvy0;False;t3_kv9fvg;False;True;t3_kv9fvg;/r/anime/comments/kv9fvg/tell_me_your_fav_anime/giwxvy0/;1610444369;0;True;False;anime;t5_2qh22;;0;[]; -[];;;okbuddybutbruh;;;[];;;;text;t2_9ow7haip;False;False;[];;Steins Gate or Attack On Titan. Haven't really watched alot of anime but these are the 2 MVPs;False;False;;;;1610392143;;False;{};giwxxou;False;t3_kv9fvg;False;True;t3_kv9fvg;/r/anime/comments/kv9fvg/tell_me_your_fav_anime/giwxxou/;1610444393;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okbuddybutbruh;;;[];;;;text;t2_9ow7haip;False;False;[];;Which Part?;False;False;;;;1610392164;;False;{};giwxzbr;False;t3_kv9fvg;False;True;t1_giwxl9n;/r/anime/comments/kv9fvg/tell_me_your_fav_anime/giwxzbr/;1610444417;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pweavd;;;[];;;;text;t2_zkkwu;False;False;[];;never really kept track of the time but i'd say not longer than two hours.;False;False;;;;1610392176;;False;{};giwy08b;True;t3_kv74lk;False;False;t1_giww28o;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/giwy08b/;1610444432;51;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Please create an anime list. You can create one at either: Myanimelist.net, anilist.co, kitsu or anime-planet. All 4 are free and easy to use. Helps you remember what you've seen and helps us so we aren't suggesting you what you've seen already. - -Akagami no Shirayuki-hime - -Toradora - -Gekkan Shoujo Nozaki-kun - -I Can't Understand What My Husband is Saying - -Ore Monogatari (Not part of the Monogatari Series).";False;False;;;;1610392184;;False;{};giwy0x1;False;t3_kv8ylf;False;False;t3_kv8ylf;/r/anime/comments/kv8ylf/im_looking_for_a_romance_anime/giwy0x1/;1610444441;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;pweavd;;;[];;;;text;t2_zkkwu;False;False;[];;thank you so much! :);False;False;;;;1610392198;;False;{};giwy1ys;True;t3_kv74lk;False;True;t1_giwwqhd;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/giwy1ys/;1610444455;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GonAkira;;;[];;;;text;t2_7znggpqv;False;False;[];;Part 4 is my favorite for sure tho part 5 is amazing part 4 hits home for me;False;False;;;;1610392210;;False;{};giwy2w8;False;t3_kv9fvg;False;True;t1_giwxzbr;/r/anime/comments/kv9fvg/tell_me_your_fav_anime/giwy2w8/;1610444469;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;It's used to save time, and it's not being used much more than before, you're just noticing it now.;False;False;;;;1610392222;;False;{};giwy3um;False;t3_kv9id4;False;True;t3_kv9id4;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/giwy3um/;1610444484;2;True;False;anime;t5_2qh22;;0;[]; -[];;;okbuddybutbruh;;;[];;;;text;t2_9ow7haip;False;False;[];;I don't like it. Maybe few exceptions here and there but I don't like CGI as a whole in Anime;False;False;;;;1610392237;;False;{};giwy50v;False;t3_kv9id4;False;True;t3_kv9id4;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/giwy50v/;1610444501;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi charleslol888, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610392244;moderator;False;{};giwy5ly;False;t3_kv9ki3;False;True;t3_kv9ki3;/r/anime/comments/kv9ki3/what_animes_are_like_a_silent_voice_that_i_can/giwy5ly/;1610444510;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;"The Love Live! Series - ->Why - -I love the characters and the interactions between them, as well as the OSTs and outside (of the anime) music.";False;False;;;;1610392252;;False;{};giwy69i;False;t3_kv9fvg;False;True;t3_kv9fvg;/r/anime/comments/kv9fvg/tell_me_your_fav_anime/giwy69i/;1610444519;3;True;False;anime;t5_2qh22;;0;[]; -[];;;netdoppler;;;[];;;;text;t2_1rn056xj;False;False;[];;"{Tsuki ga kirei} - -{Tenki no Ko} - -{Kimi no na wa} - -{Tsurezure Children} - -{Oregairu} - -{Kokoro Connect} - -{Kimi no Suizou wo Tabetai} pain - -{Shuumatsu Nani Shitemasu ka? Isogashii Desu ka? Sukutte Moratte Ii Desu ka?} more pain - -{Plastic Memories} even more pain - -{Shigatsu wa Kimi no Uso} pain - i think im starting to see a trend here";False;False;;;;1610392301;;False;{};giwya7e;False;t3_kv8ylf;False;True;t3_kv8ylf;/r/anime/comments/kv8ylf/im_looking_for_a_romance_anime/giwya7e/;1610444576;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610392331;;1610393368.0;{};giwycm3;False;t3_kv9ki3;False;True;t3_kv9ki3;/r/anime/comments/kv9ki3/what_animes_are_like_a_silent_voice_that_i_can/giwycm3/;1610444612;2;True;False;anime;t5_2qh22;;0;[]; -[];;;redsnenny;;;[];;;;text;t2_2m5jsoef;False;False;[];;Interesting, okay I’ll have to look into that;False;False;;;;1610392332;;False;{};giwycpy;True;t3_kv93r7;False;True;t1_giwwjgg;/r/anime/comments/kv93r7/anime_suggestions_for_me_to_watch_after_romance/giwycpy/;1610444613;2;True;False;anime;t5_2qh22;;0;[]; -[];;;redsnenny;;;[];;;;text;t2_2m5jsoef;False;False;[];;Forsure I’ll make a list, thanks!;False;False;;;;1610392345;;False;{};giwydru;True;t3_kv93r7;False;True;t1_giwxv6g;/r/anime/comments/kv93r7/anime_suggestions_for_me_to_watch_after_romance/giwydru/;1610444629;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;Nah it doesn't matter your taste or mine. Everyone's is different.;False;False;;;;1610392351;;False;{};giwye9o;False;t3_kv8n0c;False;True;t3_kv8n0c;/r/anime/comments/kv8n0c/liking_monster_musume_determines_your_taste_in/giwye9o/;1610444636;1;True;False;anime;t5_2qh22;;0;[]; -[];;;charleslol888;;;[];;;;text;t2_8n0k36az;False;False;[];;Whats it about and how long is it?;False;False;;;;1610392369;;False;{};giwyfpk;True;t3_kv9ki3;False;True;t1_giwycm3;/r/anime/comments/kv9ki3/what_animes_are_like_a_silent_voice_that_i_can/giwyfpk/;1610444657;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;You're welcome.;False;False;;;;1610392411;;False;{};giwyiyu;False;t3_kv93r7;False;True;t1_giwydru;/r/anime/comments/kv93r7/anime_suggestions_for_me_to_watch_after_romance/giwyiyu/;1610444702;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610392415;moderator;False;{};giwyjbp;False;t3_kv9mqt;False;True;t3_kv9mqt;/r/anime/comments/kv9mqt/where_to_buy_acrylic_lamps/giwyjbp/;1610444707;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Agreeable-Highlight;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/STARFLIGHT1111/;light;text;t2_2xajbknh;False;False;[];;"Actually answering your question now. - -Because I have no way to known what you’ve already seen, here’s a few: - -{Vinland Saga} - -{D.gray-man} - -{Kaze no Stigma}";False;False;;;;1610392416;;False;{};giwyjdt;False;t3_kv93r7;False;True;t3_kv93r7;/r/anime/comments/kv93r7/anime_suggestions_for_me_to_watch_after_romance/giwyjdt/;1610444708;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610392423;;1610392642.0;{};giwyjvq;False;t3_kv9ki3;False;True;t1_giwyfpk;/r/anime/comments/kv9ki3/what_animes_are_like_a_silent_voice_that_i_can/giwyjvq/;1610444715;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"I love CGI, when handled well. - -If studios don't innovate we're not going to get new stuff. This is how ufotable went from being unknown to *everyone*'s favorite studio. Their SFX is simply incredible. - -But... For every Beastars out there, there's 10 Ex-Arms. CGI is still in their infancy and is starting to mature. - -Making 3D anime is expensive because of the talent, but it is generally faster than 2D traditional animation. I hope this means we get more shows produced each season.";False;False;;;;1610392457;;False;{};giwymoi;False;t3_kv9id4;False;True;t3_kv9id4;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/giwymoi/;1610444754;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NekoWafers;;;[];;;;text;t2_iau18;False;False;[];;Nyanpasu~;False;False;;;;1610392483;;False;{};giwyorq;False;t3_kv9cd7;False;False;t3_kv9cd7;/r/anime/comments/kv9cd7/dynamite_non_non_biyori_episode_07/giwyorq/;1610444785;27;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Please create an anime list. You can create one at either: Myanimelist.net, anilist.co, kitsu or anime-planet. All 4 are free and easy to use. Helps you remember what you've seen and helps us so we aren't suggesting you what you've seen already. - -Your Lie in April - -My Roommate is a Cat - -Orange";False;False;;;;1610392491;;False;{};giwypef;False;t3_kv9ki3;False;True;t3_kv9ki3;/r/anime/comments/kv9ki3/what_animes_are_like_a_silent_voice_that_i_can/giwypef/;1610444794;1;True;False;anime;t5_2qh22;;0;[]; -[];;;juances19;;HB;[];;https://kitsu.io/users/juances;dark;text;t2_17a18d;False;False;[];;Last season had plenty of CGI too, I don't think there's any difference this season other than maybe CGI getting more attention because of what crunchyroll did with ex-arm.;False;False;;;;1610392507;;False;{};giwyqmj;False;t3_kv9id4;False;True;t3_kv9id4;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/giwyqmj/;1610444812;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;I'd say it's pretty fast for such detailed drawing;False;False;;;;1610392541;;False;{};giwytal;False;t3_kv74lk;False;False;t1_giwy08b;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/giwytal/;1610444851;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"I can't understand what my husband is saying. - -Shorts about a woman that can't understand what her husband is saying.";False;False;;;;1610392552;;False;{};giwyu6q;False;t3_kv9ki3;False;True;t3_kv9ki3;/r/anime/comments/kv9ki3/what_animes_are_like_a_silent_voice_that_i_can/giwyu6q/;1610444863;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Please create an anime list. You can create one at either: Myanimelist.net, anilist.co, kitsu or anime-planet. All 4 are free and easy to use. Helps you remember what you've seen and helps us so we aren't suggesting you what you've seen already. - -My MAL: https://myanimelist.net/profile/Book_Lover";False;False;;;;1610392554;;False;{};giwyuds;False;t3_kv9fvg;False;True;t3_kv9fvg;/r/anime/comments/kv9fvg/tell_me_your_fav_anime/giwyuds/;1610444866;0;True;False;anime;t5_2qh22;;0;[]; -[];;;RustedBeef;;;[];;;;text;t2_d8sx9;False;False;[];;"Dude, I watched Ouran Highschool Host Club when I was in high school. Hilarious and kawaii. Lol - -Trust me man, give it 2 eps.";False;False;;;;1610392566;;False;{};giwyvbd;False;t3_kv8wep;False;True;t3_kv8wep;/r/anime/comments/kv8wep/any_good_romance_animes/giwyvbd/;1610444879;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610392572;;1610400898.0;{};giwyvvs;False;t3_kv9id4;False;False;t3_kv9id4;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/giwyvvs/;1610444887;9;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;Horimiya is airing;False;False;;;;1610392597;;False;{};giwyxrh;False;t3_kv8wep;False;True;t3_kv8wep;/r/anime/comments/kv8wep/any_good_romance_animes/giwyxrh/;1610444915;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SnowLocke;;;[];;;;text;t2_wx2pc;False;False;[];;"It's not anime, but I think it's relevant. - -https://www.youtube.com/watch?v=inbjhcMu46g&vl=en&ab_channel=CorridorCrew";False;False;;;;1610392610;;False;{};giwyytk;False;t3_kv9id4;False;True;t3_kv9id4;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/giwyytk/;1610444930;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;This season's ex-arm looks worse than RWBY, and RWBY was made by a single person.;False;False;;;;1610392656;;False;{};giwz2i4;False;t3_kv9id4;False;False;t1_giwyvvs;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/giwz2i4/;1610444982;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarRufus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ScarRufus;light;text;t2_2u0vy1pk;False;False;[];;Idc to tell the truth. If all the others things are good enough I just continue to watch.;False;False;;;;1610392714;;False;{};giwz75a;False;t3_kv9id4;False;True;t3_kv9id4;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/giwz75a/;1610445049;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;I was planning to buy some off there at some point, they're very cheap so it's not a huge investment;False;False;;;;1610392757;;False;{};giwzaoj;False;t3_kv9mqt;False;True;t3_kv9mqt;/r/anime/comments/kv9mqt/where_to_buy_acrylic_lamps/giwzaoj/;1610445099;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610392796;;False;{};giwzdvv;False;t3_kv9fvg;False;True;t3_kv9fvg;/r/anime/comments/kv9fvg/tell_me_your_fav_anime/giwzdvv/;1610445147;0;True;False;anime;t5_2qh22;;0;[]; -[];;;hello47758;;;[];;;;text;t2_9qel0tvo;False;False;[];;Try I want to eat your pancreas and erased;False;False;;;;1610392852;;False;{};giwzids;False;t3_kv9ki3;False;False;t3_kv9ki3;/r/anime/comments/kv9ki3/what_animes_are_like_a_silent_voice_that_i_can/giwzids/;1610445212;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"[Remember how a lot of people complained about CG in AoT S4?. Just read this post (translated by Hinako from MAL) about what a Chinese animator working on it said (if you haven't already).](https://myanimelist.net/forum/?topicid=1881878) - ->**Q3 : Why do you use 3D?** -> ->A: Simple, because there's no one there to draw! A lot of content from the manga are beyond the existing manpower to work with! Animators who can draw and perform the character acting well is too rare. Even if you pay them a lot of money, there is a limit on human physical strength, and therefore amount of work that can be digested by a man has a constraint too. So it's not that we don't want to hand draw it, it's about using the provided resources efficiently and rationally by choosing which content to use with 3D or 2D. Drawing requires physical strength. The standard unit for animation is know as 'cut', and there may only be one frame for a cut, but there may also be hundreds frames for a cut. No matter how fast a person can draw, it is impossible to draw hundreds of frames in a short time. Yet, this can be done efficiently by using 3D, and then rendered it with 2D drawings or use digital program to correct the 3D designs. This way you can have both efficiency and quality done. So this is a very reasonable approach in current industry. - -He also added some more thoughts into it that saddened me after learning the true reality of the whole situation: - -> Many people ask for traditional 2D drawings, but unfortunately there are fewer and fewer mature (skilled) 2D animators in current industry. The desire of 'I want to do it this way' and actually able to do it well in real life is different....in fact it is very difficult under current conditions in this industry. If only every animation show has enough talents to participate in its production, there wouldn't be a problem for the options of 2D or 3D cause you have enough resources and support. - -> The current status of this industry is: low pay and very few would wanna work for it. Even if a studio only managed to come out with ONE high-quality product, it is already a bless. This is the harsh reality we face and if any of you is really interested with this work and have ideas for the animation production, we welcome your participations, join us and support us to perfect the work. - -I hope this can explain everything much better and it can include every other anime besides AoT. With the current COVID situation it makes sense why they would use CG a bit more. Its used to save time. - -If CG is good enough, you won't even notice that its there (like in Spider Isekai, Railgun T and many others).......but if it isn't used correctly then abominations like Ex-Arm will happen.";False;False;;;;1610392866;;1610394474.0;{};giwzjlq;False;t3_kv9id4;False;False;t3_kv9id4;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/giwzjlq/;1610445229;20;True;False;anime;t5_2qh22;;0;[]; -[];;;charleslol888;;;[];;;;text;t2_8n0k36az;False;False;[];;I watched them both thanks though;False;False;;;;1610392896;;False;{};giwzm0t;True;t3_kv9ki3;False;True;t1_giwzids;/r/anime/comments/kv9ki3/what_animes_are_like_a_silent_voice_that_i_can/giwzm0t/;1610445264;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;"> CGI is still in their infancy and is starting to mature. - -CG has been in anime for at least 20 years now. It's not exactly new tech.";False;False;;;;1610392897;;False;{};giwzm4s;False;t3_kv9id4;False;True;t1_giwymoi;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/giwzm4s/;1610445266;2;True;False;anime;t5_2qh22;;0;[]; -[];;;pweavd;;;[];;;;text;t2_zkkwu;False;False;[];;well the drawing is relatively small (4.5in x 7in) plus the details are actually just hatch marks in different directions. oh, thanks for looking! :);False;False;;;;1610392910;;False;{};giwzn5l;True;t3_kv74lk;False;False;t1_giwytal;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/giwzn5l/;1610445280;14;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610392916;;False;{};giwznns;False;t3_kv9pzr;False;True;t3_kv9pzr;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/giwznns/;1610445286;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;"[To LOVE-Ru](https://myanimelist.net/manga/671/To_LOVE-Ru) - - -[Rito](https://myanimelist.net/character/5510/Rito_Yuuki) has both his parents. His [mom](https://myanimelist.net/character/17033) is a fashsion desinger, and his [dad](https://myanimelist.net/character/24715/Saibai_Yuuki) is a mangaka.";False;False;;;;1610392935;;False;{};giwzp6p;False;t3_kv9pzr;False;False;t3_kv9pzr;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/giwzp6p/;1610445309;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610392941;;False;{};giwzpoo;False;t3_kv9pzr;False;True;t3_kv9pzr;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/giwzpoo/;1610445316;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SnowLocke;;;[];;;;text;t2_wx2pc;False;False;[];;You're missing the obvious reason. They're considered to be good dubs because a large number of vocal people liked the voice acting.;False;False;;;;1610392959;;False;{};giwzr3n;False;t3_kv89sq;False;True;t3_kv89sq;/r/anime/comments/kv89sq/why_these_dubs_are_favorites_of_many/giwzr3n/;1610445336;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;He isn't. We know that Deku's dad can breathe fire for his quirk and is gone on business trips.;False;False;;;;1610393007;;False;{};giwzuxo;False;t3_kv9pzr;False;True;t1_giwznns;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/giwzuxo/;1610445393;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;Old show but Reborn! has both parents alive and well.;False;False;;;;1610393026;;False;{};giwzwi6;False;t3_kv9pzr;False;True;t3_kv9pzr;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/giwzwi6/;1610445420;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Patrick19374;;;[];;;;text;t2_1utlabfw;False;False;[];;Have you tried Kawai Complex?;False;False;;;;1610393027;;False;{};giwzwlz;False;t3_kv8ylf;False;True;t3_kv8ylf;/r/anime/comments/kv8ylf/im_looking_for_a_romance_anime/giwzwlz/;1610445421;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cannedbeaned;;;[];;;;text;t2_7t0p77vu;False;False;[];;My favorite is Ranma 1/2. It’s not objectively the best anime I’ve ever seen, but it has a special something to it that makes me come back to rewatch it time and time again. The characters are all endearing and it’s absolutely a hilarious time.;False;False;;;;1610393091;;False;{};gix01vd;False;t3_kv9fvg;False;True;t3_kv9fvg;/r/anime/comments/kv9fvg/tell_me_your_fav_anime/gix01vd/;1610445500;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610393147;;1610400893.0;{};gix06bf;False;t3_kv9id4;False;True;t1_giwz2i4;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/gix06bf/;1610445570;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;Also want to ask how's manga afterwards (no spoiler);False;False;;;;1610393180;;False;{};gix08xm;True;t3_kv9wd2;False;True;t3_kv9wd2;/r/anime/comments/kv9wd2/aku_no_hana_the_creepiest_unsettling_depressing/gix08xm/;1610445610;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Demon slayer . I love everything about the series my favourite protagonist tanjiro to the art work;False;False;;;;1610393226;;False;{};gix0co4;False;t3_kv9fvg;False;True;t3_kv9fvg;/r/anime/comments/kv9fvg/tell_me_your_fav_anime/gix0co4/;1610445668;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Midian-Scarecrow;;;[];;;;text;t2_1874pifa;False;False;[];;Monster. The story itself is fascinating, but it's the way it's told through the perspectives of many different characters and the strength of the character writing that really cinches it for me.;False;False;;;;1610393246;;False;{};gix0e9u;False;t3_kv9fvg;False;True;t3_kv9fvg;/r/anime/comments/kv9fvg/tell_me_your_fav_anime/gix0e9u/;1610445693;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Aadi-K;;;[];;;;text;t2_4klu6o3e;False;False;[];;##YES YES YES YES YES YES;False;False;;;;1610393279;;False;{};gix0gzf;False;t3_kv9pzr;False;True;t1_giwzwi6;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/gix0gzf/;1610445733;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dcresistance;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/dcresistance/;light;text;t2_fskcw;False;False;[];;The first trailer was (I don't remember about the other 3), but the first 3 seasons were also made in Poser, which is a *significant* step down from 3DS Max or Maya (which RWBY has been made in for the last 5 season) in every single way;False;False;;;;1610393311;;False;{};gix0jn0;False;t3_kv9id4;False;True;t1_giwz2i4;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/gix0jn0/;1610445773;2;True;False;anime;t5_2qh22;;0;[]; -[];;;minezum;;;[];;;;text;t2_o0xti;False;False;[];;"Death Note [Spoilers](/s ""Although the dad dies during the series, but for most of the show he is alive"")";False;False;;;;1610393365;;False;{};gix0nxi;False;t3_kv9pzr;False;False;t3_kv9pzr;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/gix0nxi/;1610445836;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ElectricPikachu;;;[];;;;text;t2_ho0pr;False;False;[];;Ep 1 of EX-ARM is era-defining in how horrific the animation is. It’s 2021 and it still looks that bad... like how;False;False;;;;1610393391;;False;{};gix0q12;True;t3_kv9id4;False;True;t1_giwz2i4;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/gix0q12/;1610445868;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Sorry, your submission has been removed. - -- This looks like it's - a single image. - This is a form of restricted content that isn't allowed as a full post on the sub. You might consider posting about this sort of thing in the [weekly Casual Discussion Fridays megathread](https://www.reddit.com/r/anime/search?q=title%3A%22Casual+Discussion+Fridays%22+subreddit%3Aanime+author%3AAnimeMod&restrict_sr=on&sort=new&t=week) if it applies. See [our rules page](https://www.reddit.com/r/anime/wiki/rules#wiki_restricted_content) for a full list of restricted content categories. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610393411;moderator;False;{};gix0rm8;False;t3_kv9z42;False;True;t3_kv9z42;/r/anime/comments/kv9z42/4_random_animes_i_absolutely_loved_and_wish_they/gix0rm8/;1610445890;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Renn_Renn23;;;[];;;;text;t2_5316qeyo;False;False;[];;"The anime was fine, I personally thought the rotoscoping wasn't that great, and there was a lot of needless pauses and slow pacing that made certain parts drag for longer than they needed to be. But the manga is one of my absolute favourites and I highly recommend reading that, especially the second half, Is one of the most beautiful things I've read. - -Anime 7/10 for me, manga a 10/10. - -Edit: I completely forgot about that ending song though, that was crazy good, so damn creepy. I'm glad to hear that there are people who actually are interested in the series through the anime though, even if I thought it wasn't the greatest, as the story the author wanted to tell, really is special.";False;False;;;;1610393446;;1610393776.0;{};gix0ufu;False;t3_kv9wd2;False;True;t3_kv9wd2;/r/anime/comments/kv9wd2/aku_no_hana_the_creepiest_unsettling_depressing/gix0ufu/;1610445930;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePizzaPunk;;;[];;;;text;t2_2vol7jvt;False;False;[];;JoJo’s Bizarre Adventure part 4 (technically anyway);False;False;;;;1610393481;;False;{};gix0xan;False;t3_kv9pzr;False;False;t3_kv9pzr;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/gix0xan/;1610445971;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Nashetania;;;[];;;;text;t2_104mrn;False;True;[];;Can I post this under any other flair?;False;False;;;;1610393520;;False;{};gix10dz;False;t3_kv9z42;False;True;t1_gix0rm8;/r/anime/comments/kv9z42/4_random_animes_i_absolutely_loved_and_wish_they/gix10dz/;1610446015;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ElectricPikachu;;;[];;;;text;t2_ho0pr;False;False;[];;Fair. Right now I’m watching Urasekai Picnic and the cg is pretty prevalent, but not offensive. I guess time and manpower will always be a limiting factor :/;False;False;;;;1610393530;;False;{};gix1174;True;t3_kv9id4;False;True;t1_giwzjlq;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/gix1174/;1610446027;3;True;False;anime;t5_2qh22;;0;[]; -[];;;billclinton7;;;[];;;;text;t2_11v1ax;False;False;[];;Instead they’d rather make us watch episode 80 of world trigger.;False;False;;;;1610393536;;False;{};gix11ov;False;t3_kv9z42;False;True;t3_kv9z42;/r/anime/comments/kv9z42/4_random_animes_i_absolutely_loved_and_wish_they/gix11ov/;1610446034;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ElectricPikachu;;;[];;;;text;t2_ho0pr;False;False;[];;I’m my brain, winter and fall blended together into one season, but my point remains the same. Just recent anime. And yeah ex arm is.........;False;False;;;;1610393595;;False;{};gix16j3;True;t3_kv9id4;False;True;t1_giwyqmj;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/gix16j3/;1610446106;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spacesongfossilfight;;;[];;;;text;t2_5wnj598k;False;False;[];;Awesome;False;False;;;;1610393619;;False;{};gix18gr;False;t3_kv74lk;False;True;t3_kv74lk;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gix18gr/;1610446134;2;True;False;anime;t5_2qh22;;0;[]; -[];;;loomnoo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/loomnoo;light;text;t2_5ev8pklg;False;False;[];;Well it ain't Pixar but it's pretty good lately and it's been getting better and better. The titans in SnK look really good so far, and stuff like Beastars is obviously fantastic. Spider show has great cg too. It's a little jarring in Ura Sekai Picnic but those scenes aren't as important. Obviously there's a ton of shitty cgi out there like EXARM but well integrated cg looks great these days.;False;False;;;;1610393749;;False;{};gix1iug;False;t3_kv9id4;False;True;t3_kv9id4;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/gix1iug/;1610446285;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Anime_Cuck;;;[];;;;text;t2_70sbgk61;False;False;[];;"Mob psycho 100 - -Tonikawa";False;False;;;;1610393797;;False;{};gix1mlv;False;t3_kv9pzr;False;False;t3_kv9pzr;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/gix1mlv/;1610446342;14;True;False;anime;t5_2qh22;;0;[]; -[];;;pweavd;;;[];;;;text;t2_zkkwu;False;False;[];;thanks!;False;False;;;;1610394063;;False;{};gix27na;True;t3_kv74lk;False;True;t1_gix18gr;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gix27na/;1610446651;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gmarvin;;;[];;;;text;t2_7p5g7;False;False;[];;"As someone who only watches the Crunchyroll sub, I'm just wondering why does everyone on this sub spell it ""Yeager"" instead of ""Jaeger""? Is that how it's spelled in other subs? - -Thanks.";False;False;;;;1610394091;;False;{};gix29uy;False;t3_kv74lk;False;False;t3_kv74lk;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gix29uy/;1610446685;19;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"Maybe, while there isn't enough content to do an S2 right now, I see it happening in 4-5 years, if the demand is still there. - -Also, have you read the light novels? The fan translations go further, and the official ones are slowly catching up.";False;False;;;;1610394107;;False;{};gix2b5l;False;t3_kva3lt;False;True;t3_kva3lt;/r/anime/comments/kva3lt/will_there_be_a_bunny_girl_senpai_season_2/gix2b5l/;1610446702;1;True;False;anime;t5_2qh22;;0;[]; -[];;;enderboi99;;;[];;;;text;t2_7v2vh7qf;False;False;[];;that was ADORABLE;False;False;;;;1610394110;;False;{};gix2bfd;False;t3_kv9cd7;False;False;t3_kv9cd7;/r/anime/comments/kv9cd7/dynamite_non_non_biyori_episode_07/gix2bfd/;1610446706;9;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;Koi Kaze, deals with a difficult topic perfectly.;False;False;;;;1610394215;;False;{};gix2jnx;False;t3_kv9fvg;False;True;t3_kv9fvg;/r/anime/comments/kv9fvg/tell_me_your_fav_anime/gix2jnx/;1610446824;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Ditr231;;;[];;;;text;t2_3u5rgz2e;False;False;[];;Nah I haven't, Idk Light Novels have never captured the charm the same way Manga has for me. I'm sure the fan translations are great and I've tried sitting down to read a bit of it but it is hard to get into.;False;False;;;;1610394242;;False;{};gix2lr4;True;t3_kva3lt;False;True;t1_gix2b5l;/r/anime/comments/kva3lt/will_there_be_a_bunny_girl_senpai_season_2/gix2lr4/;1610446856;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;You should not contribute to this being posted this every 5 minutes for a start.;False;False;;;;1610394268;;False;{};gix2nur;False;t3_kvaaas;False;True;t3_kvaaas;/r/anime/comments/kvaaas/what_should_i_do_help/gix2nur/;1610446887;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NewRevenue3;;;[];;;;text;t2_6h89t4ih;False;False;[];;There’s still not enough material for another season, the anime and movie covered 6 volumes and part of the 7th. Volume 11 just released last month so maybe they’ll be enough material by the end of this year.;False;False;;;;1610394340;;False;{};gix2tme;False;t3_kva3lt;False;True;t3_kva3lt;/r/anime/comments/kva3lt/will_there_be_a_bunny_girl_senpai_season_2/gix2tme/;1610446976;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SatouSmith;;;[];;;;text;t2_85ir9527;False;True;[];;They are trying something different for a change. It's rough around the edges but seeing judge until I see it myself;False;False;;;;1610394390;;1610408855.0;{};gix2xjp;False;t3_kv961x;False;True;t3_kv961x;/r/anime/comments/kv961x/i_know_theres_lots_of_criticism_towards_this/gix2xjp/;1610447035;2;True;False;anime;t5_2qh22;;0;[]; -[];;;pweavd;;;[];;;;text;t2_zkkwu;False;False;[];;"It's ""Yeager"" in the manga, so i think that's the reason. :)";False;False;;;;1610394406;;False;{};gix2yqm;True;t3_kv74lk;False;False;t1_gix29uy;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gix2yqm/;1610447054;29;True;False;anime;t5_2qh22;;0;[]; -[];;;Ditr231;;;[];;;;text;t2_3u5rgz2e;False;False;[];;Oh alright, yah, I heard a friend say 2022ish but hey the sooner the better ya know?;False;False;;;;1610394412;;False;{};gix2z9e;True;t3_kva3lt;False;True;t1_gix2tme;/r/anime/comments/kva3lt/will_there_be_a_bunny_girl_senpai_season_2/gix2z9e/;1610447062;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Anime_Cuck;;;[];;;;text;t2_70sbgk61;False;False;[];;Space dandy, every episode is a new hilarious journey with stunning visuals and an interesting plot;False;False;;;;1610394424;;False;{};gix306z;False;t3_kv9fvg;False;True;t3_kv9fvg;/r/anime/comments/kv9fvg/tell_me_your_fav_anime/gix306z/;1610447076;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"# Source Material Corner - -Reply to this comment for any source-related discussion, future spoilers (including future characters, events and general hype about future content), comparison of the anime adaptation to the original, or just general talk about the source material. **You are still required to tag all spoilers.** Discussions about the source outside of this comment tree will be removed, and replying with spoilers outside of the source corner will lead to bans. - -The spoiler syntax is: -`[Spoiler source](/s ""Spoiler goes here"")` - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610394428;moderator;False;{};gix30ib;False;t3_kvadt9;False;True;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gix30ib/;1610447081;1;False;True;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;"###Stitches! - -* [Pajama Javelin](https://i.imgur.com/nw5G84h.jpg) - -* [Shower Javelin](https://i.imgur.com/hBkzOVl.jpg) - -* [Toothbrush Javelin](https://i.imgur.com/psrvCVN.jpg) - -* [Pillow Laffey](https://i.imgur.com/oLOOlky.jpg) - -[Starting already with some Javelin fanservice?](https://i.imgur.com/0940m5T.png) Clearly the people in-charge knew what we want. ( ͡° ͜ʖ ͡°) - -[YES!](https://i.imgur.com/2OD90oC.png) SHIKIKAN EXISTS IN THIS ANIME! Javelin fantasizing [about Shikikan complementing her is just adorable <3](https://i.imgur.com/UJAyxqr.png) - -[Laffey confirms that her bunny ears aren't real!](https://i.imgur.com/jtdnrA2.png) And that she even has [spares that anyone can borrow!](https://i.imgur.com/YjoxI6N.png) - - -[USAMIMI! USAMIMI! USAMIMI!](https://i.imgur.com/eeMEHxh.png) That entire sequence is just too cute! And I love that you can see [Javelin wearing the bunny ears!](https://i.imgur.com/rNak6z9.png) - -[Niimi finally gets her much deserved screen time!](https://i.imgur.com/nEZiKa0.png) A bit disappointed that she didn't came in wearing her Sensei skin though considering she's teaching the class today. - -[They actually showed Laffey hiding a ~~wine~~ coolant bottle](https://i.imgur.com/l5HL2Yk.png) instead of carrying around and drinking cola in the other AL anime. [And have some pouting Laffey!](https://i.imgur.com/mJoInHc.png) - - -[Oh my god.](https://i.imgur.com/uxBgRDe.png) Watching the girls [feed each other is just absolutely wholesome <3](https://i.imgur.com/vMa8FIP.png) - - [Ayanami getting serious](https://i.imgur.com/qRuaj1e.png) in that pillow fight while [Laffey using her first skill to increase her evasion](https://i.imgur.com/jQ4p5FC.png) was pretty fun! [And poor Niimi gets sunk by a stray pillow!](https://i.imgur.com/K8Lt81P.png) - - -It's only an 8 minute short but this is already the superior Azur Lane anime for me! I can;t wait to see more silly shenanigans with the other ship girls and hopefully we'll see Shikikan even if they don't show us his face. - -[End Card by Hori](https://i.imgur.com/lzjEbyc.png)";False;False;;;;1610394465;;False;{};gix33e0;False;t3_kvadt9;False;False;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gix33e0/;1610447124;56;True;False;anime;t5_2qh22;;0;[]; -[];;;Cyle_099;;;[];;;;text;t2_86m2a;False;False;[];;Kodomo no Omocha: A story following the life of an 11 year old girl that was abandoned on a park bench shortly after being born. At school she is bullied relentlessly by a boy who’s mother died during his birth. And, one of her friends is physically abused by his father. It’s a comedy and is one of the funniest shows I have ever seen. The first 19 episodes make a good complete story and are magic.;False;False;;;;1610394475;;False;{};gix3496;False;t3_kv823r;False;True;t3_kv823r;/r/anime/comments/kv823r/recommend_me_a_show_but_with_a_spin_d/gix3496/;1610447136;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gmarvin;;;[];;;;text;t2_7p5g7;False;False;[];;Ah, that makes sense! Thank you! 😊;False;False;;;;1610394558;;False;{};gix3awr;False;t3_kv74lk;False;False;t1_gix2yqm;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gix3awr/;1610447235;5;True;False;anime;t5_2qh22;;0;[]; -[];;;el_guera;;;[];;;;text;t2_7wqnstnn;False;False;[];;Madoka Magica 😏;False;False;;;;1610394564;;False;{};gix3bfp;False;t3_kv6lm2;False;True;t3_kv6lm2;/r/anime/comments/kv6lm2/very_new_to_anime/gix3bfp/;1610447244;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;False;[];;"We do not know if there will be a season 2, the contract for the last adaptation was only for 1 season and 1 movie. Season 1 covered 5 novels, and the movie covered 2, and in total there are 11 LN in the series. So if it were to have a similar pacing as the season 1 we would need at least 1 more novel. - -There is technically enough source material for another season, since 4 LN is enough for a season, but it would end up having some weird pacing and wouldn't be able to be tied up nicely due to where the two most recent novels have left us. In order to leave the series off in a good spot they would either need to do a season 2 dedicated to only the next 2 light novels, or make one or two movies for LN 8 and 9, then wait for the current ""arc"" to finish before making a proper season 2.";False;False;;;;1610394624;;False;{};gix3g5l;False;t3_kva3lt;False;True;t3_kva3lt;/r/anime/comments/kva3lt/will_there_be_a_bunny_girl_senpai_season_2/gix3g5l/;1610447314;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"1. Beelzebub -2. Death Note -3. Saiki-K -4. Angel Densetsu - -Quite a few others like Haikyuu where their parents are probably there just not important to the story.";False;False;;;;1610394626;;False;{};gix3gbx;False;t3_kv9pzr;False;False;t3_kv9pzr;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/gix3gbx/;1610447317;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NewRevenue3;;;[];;;;text;t2_6h89t4ih;False;False;[];;If I were you I’d give the manga/light novels a try, I saw on the other comment that you can’t get into light novels, but I was in the same boat until I gave Oregairu a try and haven’t regretted it. The anime skips out on a lot of stuff tbh since it’ll always be harder to adapt novels or mangas.;False;False;;;;1610394642;;False;{};gix3hlf;False;t3_kva3lt;False;True;t1_gix2z9e;/r/anime/comments/kva3lt/will_there_be_a_bunny_girl_senpai_season_2/gix3hlf/;1610447336;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kirito11400;;;[];;;;text;t2_14e2rl4;False;False;[];;phenomenal;False;False;;;;1610394705;;False;{};gix3mko;False;t3_kv74lk;False;True;t3_kv74lk;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gix3mko/;1610447411;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ditr231;;;[];;;;text;t2_3u5rgz2e;False;False;[];;Ah I see;False;False;;;;1610394707;;False;{};gix3mpg;True;t3_kva3lt;False;True;t1_gix3g5l;/r/anime/comments/kva3lt/will_there_be_a_bunny_girl_senpai_season_2/gix3mpg/;1610447413;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hajimeri;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Montrachet;light;text;t2_ap99cz2;False;False;[];;that was quick, do you prewrite these?;False;False;;;;1610394719;;False;{};gix3no7;False;t3_kvadt9;False;False;t1_gix33e0;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gix3no7/;1610447428;5;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;Yep. The episode was released like 2 hours ago on Crunchyroll so I already had it written after the premiere.;False;False;;;;1610394782;;False;{};gix3soa;False;t3_kvadt9;False;False;t1_gix3no7;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gix3soa/;1610447502;8;True;False;anime;t5_2qh22;;0;[]; -[];;;pweavd;;;[];;;;text;t2_zkkwu;False;False;[];;appreciate the compliment! thanks! :);False;False;;;;1610394788;;False;{};gix3t4j;True;t3_kv74lk;False;True;t1_gix3mko;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gix3t4j/;1610447509;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ditr231;;;[];;;;text;t2_3u5rgz2e;False;False;[];;Huh, yeah, maybe I'll give it another go when I have the time.;False;False;;;;1610394818;;False;{};gix3vjf;True;t3_kva3lt;False;True;t1_gix3hlf;/r/anime/comments/kva3lt/will_there_be_a_bunny_girl_senpai_season_2/gix3vjf/;1610447545;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OnlyAnEssenceThief;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ShinodaChan;light;text;t2_tiqmd;False;True;[];;"The first two episodes of Slow Ahead were part of a bundle with one of the manga volumes, so that & the fact that AutoLovepon posted this thread a few hours late probably gave OP plenty of time to write things up.";False;False;;;;1610394852;;False;{};gix3yah;False;t3_kvadt9;False;False;t1_gix3no7;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gix3yah/;1610447588;11;False;False;anime;t5_2qh22;;0;[]; -[];;;unaviable;;;[];;;;text;t2_1o4qd3;False;True;[];;you should share it with r/ShingekiNoKyojin;False;False;;;;1610394863;;False;{};gix3z4q;False;t3_kv74lk;False;False;t3_kv74lk;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gix3z4q/;1610447601;5;True;False;anime;t5_2qh22;;0;[]; -[];;;qba19;;;[];;;;text;t2_fnhtp;False;False;[];;"Oregairu -Bloom Into You -Kokoro Connect -Bunny Girl Senpai (a bit more psychological but there's still romance between main protagonists and don't worry, the title is missleading, it's not some ecchi stuff)";False;False;;;;1610394871;;False;{};gix3ztm;False;t3_kv8ylf;False;True;t3_kv8ylf;/r/anime/comments/kv8ylf/im_looking_for_a_romance_anime/gix3ztm/;1610447613;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;Yeah a speacial off the flow story;False;False;;;;1610394894;;False;{};gix41ns;True;t3_kv9wd2;False;True;t1_gix0ufu;/r/anime/comments/kv9wd2/aku_no_hana_the_creepiest_unsettling_depressing/gix41ns/;1610447640;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Snazzy3DPrints;;;[];;;;text;t2_6gfm4mkk;False;True;[];;Totally agree! I'm keeping an open mind. Plus, I know it's highly likely they will get me with the characters and story regardless.;False;False;;;;1610394909;;False;{};gix42tc;True;t3_kv961x;False;False;t1_gix2xjp;/r/anime/comments/kv961x/i_know_theres_lots_of_criticism_towards_this/gix42tc/;1610447657;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Anime_Cuck;;;[];;;;text;t2_70sbgk61;False;False;[];;"Dororo, Devilman crybaby, Gleipnir and Dorohedoro -Are all really good dark action series";False;False;;;;1610394940;;False;{};gix45cw;False;t3_kv93r7;False;True;t3_kv93r7;/r/anime/comments/kv93r7/anime_suggestions_for_me_to_watch_after_romance/gix45cw/;1610447693;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HobnobsTheRed;;;[];;;;text;t2_1ftgjit5;False;False;[];;Saiki K, My Bride is a Mermaid (both sets of parents in that one), and Barakamon.;False;False;;;;1610394964;;False;{};gix47bx;False;t3_kv9pzr;False;False;t3_kv9pzr;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/gix47bx/;1610447724;4;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your submission has been removed. - -- This looks like it's - a short discussion thread. - This is a form of restricted content that isn't allowed as a full post on the sub. You might consider posting about this sort of thing in the [weekly Casual Discussion Fridays megathread](https://www.reddit.com/r/anime/search?q=title%3A%22Casual+Discussion+Fridays%22+subreddit%3Aanime+author%3AAnimeMod&restrict_sr=on&sort=new&t=week) if it applies. See [our rules page](https://www.reddit.com/r/anime/wiki/rules#wiki_restricted_content) for a full list of restricted content categories. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610394976;moderator;False;{};gix48a6;False;t3_kv9fvg;False;True;t3_kv9fvg;/r/anime/comments/kv9fvg/tell_me_your_fav_anime/gix48a6/;1610447738;1;True;True;anime;t5_2qh22;;0;[]; -[];;;realrimurutempest;;;[];;;;text;t2_4bauklbm;False;False;[];;The bunny ears scene was cute af;False;False;;;;1610395013;;False;{};gix4b7u;False;t3_kvadt9;False;False;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gix4b7u/;1610447782;25;True;False;anime;t5_2qh22;;0;[]; -[];;;OnlyAnEssenceThief;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ShinodaChan;light;text;t2_tiqmd;False;True;[];;"It's only eight minutes of decently-animated CGDCT that doesn't do anything special, but damn if Slow Ahead isn't already on track to outclass the first adaptation by sheer virtue of not being an inconsistent mess. Plus, Nimi finally gets the screentime she deserves! Looking forward to the rest of the season. - -For context, [the first adaptation](https://myanimelist.net/anime/38328/Azur_Lane) sucked because: - -* It had horrible direction. The pacing was awful, Enterprise (the MC for the first adaptation) was OOC, and the story went nowhere. -* The animation was inconsistent, partly because Bibury was doing it ([Azur Lane was only their second main production job](https://www.animenewsnetwork.com/encyclopedia/company.php?id=16426)) and partly because some of the animators didn't enjoy working on the project. -* It largely excluded the fourth major faction of the game (Ironblood) by sidelining them and having their starter get next to no screentime relative to the others (three minutes, [she didn't even get THREE minutes of screentime in the first adaptation](https://www.youtube.com/watch?v=-7QWV4BIpuU)). -* The dub was...yeah... - -By comparison, Slow Ahead is: - -* Being directed and produced by [Yostar themselves.](https://www.youtube.com/watch?v=EzWNBmjyv7Y) -* Working off the manga's source material which frequently uses all four starters and includes all of the game's factions (major or minor). -* Hopefully not going to get a dub! - -Will the animation by Yostar Pictures be as good as the original at its peak? No, but it'll hopefully be far more consistent and much easier to watch now that a poorly executed story isn't being rammed into the narrative.";False;False;;;;1610395059;;1610396426.0;{};gix4eyt;False;t3_kvadt9;False;False;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gix4eyt/;1610447840;35;False;False;anime;t5_2qh22;;0;[]; -[];;;Noriakikukyoin;;;[];;;;text;t2_3nu5xp1t;False;False;[];;"Oh yeah bringing the fan service early, they really do know how to grab our attention! - -Also that out was god-tier adorable.";False;False;;;;1610395069;;False;{};gix4fq5;False;t3_kvadt9;False;False;t1_gix33e0;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gix4fq5/;1610447853;22;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;I like MM because I enjoy harem comedies in general. And someones tastes are personal, I wouldn't ever say someone has poor taste due to the shows they like just because those aren't shows I like for the most part.;False;False;;;;1610395120;;False;{};gix4jqh;False;t3_kv8n0c;False;True;t3_kv8n0c;/r/anime/comments/kv8n0c/liking_monster_musume_determines_your_taste_in/gix4jqh/;1610447916;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Insecticide;;;[];;;;text;t2_a6x2b;False;False;[];;"I am one of those who believes that as long as you know the reasonings for different watchorders and why certain events happen at the order they happen you usually can watch in any order and organize things in your head after. - -I didn't follow any conventions for fate or index and it never ruined it for me. Just watch whatever sounds good and untangle it after.";False;False;;;;1610395154;;False;{};gix4mef;False;t3_kv6gpi;False;True;t3_kv6gpi;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/gix4mef/;1610447959;2;True;False;anime;t5_2qh22;;0;[];True -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"Hombre 1: *I don't want to die!* - -Hombre 2: *And I took that personally...*";False;False;;;;1610395190;;False;{};gix4p9t;False;t3_kv74lk;False;False;t3_kv74lk;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gix4p9t/;1610448001;13;True;False;anime;t5_2qh22;;0;[]; -[];;;ArchadianJudge;;;[];;;;text;t2_dk2pa;False;True;[];;"Lots of great CGDCT / moe anime lately! Gochiusa, Yuru Camp, Non non Biyori, and now Slow Ahead. Feels good. - -*(I just wish these episodes were full length...)*";False;False;;;;1610395191;;False;{};gix4pb9;False;t3_kvadt9;False;False;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gix4pb9/;1610448001;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Aadi-K;;;[];;;;text;t2_4klu6o3e;False;False;[];;"> IN A NUTSHELL - -Video is 6 minutes long";False;False;;;;1610395202;;False;{};gix4q7x;False;t3_kvaiex;False;False;t3_kvaiex;/r/anime/comments/kvaiex/rent_a_girlfriend_in_a_nutshell/gix4q7x/;1610448015;3;True;False;anime;t5_2qh22;;0;[]; -[];;;pweavd;;;[];;;;text;t2_zkkwu;False;False;[];;yep, i actually have this drawing posted on that subreddit as a separate post because of me being a complete noob, not knowing how to cross-post (just found out a little while ago) 😅;False;False;;;;1610395440;;False;{};gix58rj;True;t3_kv74lk;False;True;t1_gix3z4q;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gix58rj/;1610448298;2;True;False;anime;t5_2qh22;;0;[]; -[];;;501st_legion;;;[];;;;text;t2_c1fkq;False;False;[];;This is pretty much exactly what I wanted from slow ahead;False;False;;;;1610395485;;False;{};gix5can;False;t3_kvadt9;False;False;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gix5can/;1610448354;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Yoh1612;;;[];;;;text;t2_ger9z;False;False;[];;Alright boys AOTY is here.;False;False;;;;1610395613;;False;{};gix5m9g;False;t3_kvadt9;False;False;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gix5m9g/;1610448502;26;True;False;anime;t5_2qh22;;0;[]; -[];;;pweavd;;;[];;;;text;t2_zkkwu;False;False;[];;NO U moment.;False;False;;;;1610395623;;False;{};gix5n0f;True;t3_kv74lk;False;False;t1_gix4p9t;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gix5n0f/;1610448514;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Petroshen;;;[];;;;text;t2_3vjq1qp3;False;True;[];;Nyanpasu~;False;False;;;;1610395641;;False;{};gix5og6;False;t3_kv9cd7;False;False;t1_giwyorq;/r/anime/comments/kv9cd7/dynamite_non_non_biyori_episode_07/gix5og6/;1610448536;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610395746;;False;{};gix5wjp;False;t3_kv9id4;False;True;t1_giwzm4s;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/gix5wjp/;1610448656;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610395934;moderator;False;{};gix6b3b;False;t3_kvaxr7;False;True;t3_kvaxr7;/r/anime/comments/kvaxr7/anyone_know_whats_this_from/gix6b3b/;1610448871;1;False;False;anime;t5_2qh22;;0;[]; -[];;;big_fella672;;;[];;;;text;t2_asaob52;False;False;[];;Renge is a badass;False;False;;;;1610396051;;False;{};gix6kdt;False;t3_kv9cd7;False;False;t3_kv9cd7;/r/anime/comments/kv9cd7/dynamite_non_non_biyori_episode_07/gix6kdt/;1610449011;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Im_a_postednote;;;[];;;;text;t2_ztn2b;False;False;[];;Survived 2020 for this !;False;False;;;;1610396055;;False;{};gix6kp5;False;t3_kvadt9;False;False;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gix6kp5/;1610449016;13;True;False;anime;t5_2qh22;;0;[]; -[];;;GMorelli;;;[];;;;text;t2_13n5gj;False;False;[];;Just original art - https://www.pixiv.net/en/artworks/74017219;False;False;;;;1610396253;;False;{};gix70bx;False;t3_kvaxr7;False;True;t3_kvaxr7;/r/anime/comments/kvaxr7/anyone_know_whats_this_from/gix70bx/;1610449253;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;Why pick those three?;False;False;;;;1610396262;;False;{};gix7128;False;t3_kvay6t;False;True;t3_kvay6t;/r/anime/comments/kvay6t/do_you_think_about_the_new_gen_big_3/gix7128/;1610449264;1;True;False;anime;t5_2qh22;;0;[]; -[];;;A-Random-Baby-Tiger;;;[];;;;text;t2_6gtn7uxk;False;False;[];;Because that’s the new gen big three that everybody says;False;False;;;;1610396312;;False;{};gix7501;False;t3_kvay6t;False;True;t1_gix7128;/r/anime/comments/kvay6t/do_you_think_about_the_new_gen_big_3/gix7501/;1610449322;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Very-THIOCC-Cat;;;[];;;;text;t2_2rskv4ag;False;False;[];;Bro they removed the thighs man... THEY MALNUTRIONED BRO :,(;False;False;;;;1610396475;;False;{};gix7hyw;False;t3_kvaxav;False;False;t3_kvaxav;/r/anime/comments/kvaxav/quintessential_quintuplets_is_massively_dragged/gix7hyw/;1610449521;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610396518;moderator;False;{};gix7l8u;False;t3_kvb57i;False;True;t3_kvb57i;/r/anime/comments/kvb57i/guys_i_need_new_mangas_to_read_any_suggestions/gix7l8u/;1610449568;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi jhonwinchester, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610396519;moderator;False;{};gix7lar;False;t3_kvb57i;False;True;t3_kvb57i;/r/anime/comments/kvb57i/guys_i_need_new_mangas_to_read_any_suggestions/gix7lar/;1610449570;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Why not Jujutsu Kaisen or Dr. Stone in place of one of the others? Those are also published in Weekly Shounen Jump. - -If you aren't locked into that one magazine I imagine a lot of people would pick Attack on Titan instead.";False;False;;;;1610396525;;1610396839.0;{};gix7lsw;False;t3_kvay6t;False;True;t1_gix7501;/r/anime/comments/kvay6t/do_you_think_about_the_new_gen_big_3/gix7lsw/;1610449578;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"> The dub was...yeah... - -Hot take: The accents in the dub took the first anime from ""mediocre"" to ""so bad it's hilarious"" territory and made it way more enjoyable. I need more angry German midget Z-23 in my life, so hopefully Funi can find a way to dub Slow Ahead too.";False;False;;;;1610396550;;False;{};gix7nti;False;t3_kvadt9;False;False;t1_gix4eyt;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gix7nti/;1610449606;28;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi ilariad92, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610396562;moderator;False;{};gix7ouc;False;t3_kvb5qo;False;True;t3_kvb5qo;/r/anime/comments/kvb5qo/attention_to_all_anime_lovers/gix7ouc/;1610449621;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610396589;;False;{};gix7qxx;False;t3_kvay6t;False;True;t3_kvay6t;/r/anime/comments/kvay6t/do_you_think_about_the_new_gen_big_3/gix7qxx/;1610449656;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;"Big three was about the popularization of anime in the english speaking world. Naruto, OP, and Bleach caused a pretty huge boom. It has nothing to do with quality or western popularity. - -And one of the original big 3 is still massively popular.";False;False;;;;1610396591;;False;{};gix7r3v;False;t3_kvay6t;False;True;t1_gix7501;/r/anime/comments/kvay6t/do_you_think_about_the_new_gen_big_3/gix7r3v/;1610449658;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610396629;moderator;False;{};gix7u76;False;t3_kvb6mm;False;False;t3_kvb6mm;/r/anime/comments/kvb6mm/higurashi_when_they_cry_watch_order/gix7u76/;1610449703;0;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi NJBuoy, it seems like you might be looking for a show's watch order! - -On our [watch order wiki](https://www.reddit.com/r/anime/wiki/watch_order) you can find suggested orders for a ton of shows (hopefully including the one you're looking for), as well as information that will help you decide on what to watch for the more complicated series <cough> Gundam <cough>. - -[](#heartbot) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610396630;moderator;False;{};gix7u8c;False;t3_kvb6mm;False;True;t3_kvb6mm;/r/anime/comments/kvb6mm/higurashi_when_they_cry_watch_order/gix7u8c/;1610449704;1;False;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;"People will probably dogpile on you for this in a second but there's no such thing as a ""new gen big 3,"" you can try and pick out the top 3 influential animes of this decade or whatever but the reason we have a ""Big 3"" is because Shonen Jump was publishing all three of those series at about the same time (and they're of a similar genre, and all skyrocketed in popularity)--others could phrase this better than me but the anime community's far too fickle and ""new big three"" selections are far too common for one of these to catch on";False;False;;;;1610396654;;False;{};gix7w48;False;t3_kvay6t;False;False;t3_kvay6t;/r/anime/comments/kvay6t/do_you_think_about_the_new_gen_big_3/gix7w48/;1610449732;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DogusEUW;;;[];;;;text;t2_dtzoc;False;False;[];;Plastic Memories. The end of plastic memories man. I still think about it often;False;False;;;;1610396681;;False;{};gix7y79;False;t3_kv93r7;False;True;t3_kv93r7;/r/anime/comments/kv93r7/anime_suggestions_for_me_to_watch_after_romance/gix7y79/;1610449765;2;True;False;anime;t5_2qh22;;0;[]; -[];;;A-Random-Baby-Tiger;;;[];;;;text;t2_6gtn7uxk;False;False;[];;A lot of people say DS, Black clover, Mha are the big 3 Tbh I didn’t like the idea of the new big 3 to begin with;False;False;;;;1610396738;;False;{};gix82qd;False;t3_kvay6t;False;True;t1_gix7lsw;/r/anime/comments/kvay6t/do_you_think_about_the_new_gen_big_3/gix82qd/;1610449835;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DamnMitch69;;;[];;;;text;t2_50784s2o;False;False;[];;He also said he watched MHA and TG and if he liked those he’s gonna like Jujutsu. Hop off my dick;False;False;;;;1610396749;;False;{};gix83kx;False;t3_kv6m47;False;True;t1_giwxkxf;/r/anime/comments/kv6m47/anything_similar_to_highschool_dxd_thats_any_good/gix83kx/;1610449848;2;True;False;anime;t5_2qh22;;0;[]; -[];;;A-Random-Baby-Tiger;;;[];;;;text;t2_6gtn7uxk;False;False;[];;I don’t like the idea of the new big 3 to begin with but everybody is saying it so I decided to go with the flow;False;False;;;;1610396799;;False;{};gix87ml;False;t3_kvay6t;False;True;t1_gix7r3v;/r/anime/comments/kvay6t/do_you_think_about_the_new_gen_big_3/gix87ml/;1610449908;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HobnobsTheRed;;;[];;;;text;t2_1ftgjit5;False;False;[];;"Using CG isn't a problem itself. Quite a few shows blend it with 2D very well - ufotable are masters at this - and some shows use it superbly as the primary format - Houseki no Kuni, or Infini-T Force for example. The problem is when it's either badly blended with 2D - the car in the first episode of Alice to Zouroku, for example - or attempt to achieve more than the animation is capable of. - -To provide counter examples of the latter; - -The 3D in Ex-Arm doesn't have the required quality to properly portray the scenes/action the show is aiming for. It's not helped by some composition/direction choices, but overall the animation needs to be a few notches higher to match the story being told. - -Kemono Friends, on the other hand, has animation that is just as ""bad"" (and far more basic) but because the story is far less complicated it doesn't ask more than the CG is capable of. That, combined with far better direction/composition overall, means the show fares better than the more complex animation of Ex-Arm. - -TL;DR. 3D is fine, just use it properly.";False;False;;;;1610396813;;False;{};gix88rx;False;t3_kv9id4;False;True;t3_kv9id4;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/gix88rx/;1610449926;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610396830;moderator;False;{};gix8a4w;False;t3_kvb9d3;False;True;t3_kvb9d3;/r/anime/comments/kvb9d3/toradora_psp_game_in_english/gix8a4w/;1610449946;1;False;False;anime;t5_2qh22;;0;[]; -[];;;OnlyAnEssenceThief;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ShinodaChan;light;text;t2_tiqmd;False;True;[];;"> angry German midget Z-23 - -[Okay, I'll give you that.](https://www.youtube.com/watch?v=CmegeTcL4Cc)";False;False;;;;1610396840;;False;{};gix8auc;False;t3_kvadt9;False;False;t1_gix7nti;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gix8auc/;1610449958;13;False;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;"[Quoting myself from here](https://www.reddit.com/r/Higurashinonakakoroni/comments/j01c4j/should_i_watch_the_original_anime_or_wait_for_the/g6u2oub?utm_medium=): - ->Season 1: [Higurashi](https://myanimelist.net/anime/934/Higurashi_no_Naku_Koro_ni) (26 Episodes) - ->Season 2: [Higurashi Kai](https://myanimelist.net/anime/1889/Higurashi_no_Naku_Koro_ni_Kai) (Don't read the MAL description on this page because spoilers.) (24 Episodes) - ->OPTIONAL, OVA: [Higurashi Nekogoroshi-hen](https://myanimelist.net/anime/2899/Higurashi_no_Naku_Koro_ni_Special__Nekogoroshi-hen), watch this either before S2 Episode 1, after S2 Episode 5, or anywhere in between. - ->(Don't click on the MAL links for anything below, they're full of spoilers) - ->Season 3, Optional: [Higurashi Rei](https://myanimelist.net/anime/3652/Higurashi_no_Naku_Koro_ni_Rei) (5 Episodes) - ->Season 4, Optional: [Higurashi Kira](https://myanimelist.net/anime/10491/Higurashi_no_Naku_Koro_ni_Kira) (4 Episodes) - ->Also [Higurashi has a 2nd OVA/Spinoff Movie](https://myanimelist.net/anime/16700/Higurashi_no_Naku_Koro_ni_Kaku__Outbreak) which is the only Higurashi-thing that I chose not to watch. Ignore this entirely until you finish Season 2 and you can probably watch that at any point afterword. - ->Season 3 (Rei) features an additional story arc and is 5 episodes long. Season 4 (Kira) is 4 episodes long and features a lot of fanservice (some but not all of it sexualized and out of character.) Keep in mind, however, that the show writers are always careful to include elements in these episodes to ensure that they cannot be canon. - -This is the watch order for the old anime. It's recommended that you either watch this, or play the visual novels, or else read the manga before checking out [Higurashi Gou](https://myanimelist.net/anime/41006/Higurashi_no_Naku_Koro_ni_Gou) as that show is a type of sequel/spinoff show as opposed to a ""pure remake.""";False;False;;;;1610396881;;1610397101.0;{};gix8e54;False;t3_kvb6mm;False;True;t3_kvb6mm;/r/anime/comments/kvb6mm/higurashi_when_they_cry_watch_order/gix8e54/;1610450007;2;True;False;anime;t5_2qh22;;0;[]; -[];;;A-Random-Baby-Tiger;;;[];;;;text;t2_6gtn7uxk;False;False;[];;I guess I’ll just delete this post, I listed these 3 because everybody is saying these are the big three;False;False;;;;1610396884;;False;{};gix8edz;False;t3_kvay6t;False;True;t1_gix7w48;/r/anime/comments/kvay6t/do_you_think_about_the_new_gen_big_3/gix8edz/;1610450011;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610396985;;False;{};gix8mdw;False;t3_kvay6t;False;True;t3_kvay6t;/r/anime/comments/kvay6t/do_you_think_about_the_new_gen_big_3/gix8mdw/;1610450134;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"The first adaptation wasn't great, but in its defense it made the girls look actually badass. Be it Eugen taunting the Azur Lane, the fights between Zuikaku and Enterprise, or the destroyer group... All those were really a treat to watch. - -Seeing Javelin fantasizing about the commander is... well, not exactly awful, but if I could have chosen which of the two would have the smoother production, I would have swapped them.";False;False;;;;1610397009;;False;{};gix8o9d;False;t3_kvadt9;False;False;t1_gix4eyt;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gix8o9d/;1610450163;5;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;it's alright, and feel free to do whatever, I would have offered something constructive alongside of that but I haven't seen any of those 3 shows myself;False;False;;;;1610397013;;False;{};gix8olm;False;t3_kvay6t;False;True;t1_gix8edz;/r/anime/comments/kvay6t/do_you_think_about_the_new_gen_big_3/gix8olm/;1610450168;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"Higurashi 2006 > Higurashi Kai - -There are a bunch of optional OVAs so I’d recommend looking at the watch order wiki to see where they fit. - -The 2020 version serves as both a remake for everyone and a sequel to people who watched the original. If you have absolutely no intention of watching the 2006 version, then you can totally watch the 2020 version as it is. It spoils a few things in the beginning but the director says it’s intentional and it’s totally fine. - -However, I’d recommend watching the 2006 version first if you have the time. Things are revealed a lot better IMO.";False;False;;;;1610397051;;False;{};gix8rlf;False;t3_kvb6mm;False;True;t3_kvb6mm;/r/anime/comments/kvb6mm/higurashi_when_they_cry_watch_order/gix8rlf/;1610450213;2;True;False;anime;t5_2qh22;;0;[]; -[];;;voornaam1;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://www.anime-planet.com/users/Max4444;dark;text;t2_3yiwp1ue;False;False;[];;I don't really care about the animation, if the story/characters are good.;False;False;;;;1610397072;;False;{};gix8t5h;False;t3_kv9id4;False;True;t3_kv9id4;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/gix8t5h/;1610450236;1;True;False;anime;t5_2qh22;;0;[]; -[];;;0GreySilence0;;;[];;;;text;t2_nvjya;False;False;[];;"""Hotarubi no mori e"" is a good short one";False;False;;;;1610397099;;False;{};gix8vb3;False;t3_kv9ki3;False;True;t3_kv9ki3;/r/anime/comments/kv9ki3/what_animes_are_like_a_silent_voice_that_i_can/gix8vb3/;1610450267;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"> If it's a fully 3D anime that works well, like Houseki no Kuni, - -Houseki no Kuni was also a blend of 2D and 3D. There was more 3D *than* 2D, but the 2D animation was still there.";False;False;;;;1610397138;;False;{};gix8ybe;False;t3_kv9id4;False;True;t1_giwyvvs;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/gix8ybe/;1610450315;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RB12Gaming;;;[];;;;text;t2_4noobefr;False;False;[];;i liked my hero academia too, i also like kill la kill if you havent watched it;False;False;;;;1610397165;;False;{};gix90eb;False;t3_kvb5qo;False;True;t3_kvb5qo;/r/anime/comments/kvb5qo/attention_to_all_anime_lovers/gix90eb/;1610450347;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gratifiedlonging;;;[];;;;text;t2_93iwn0o7;False;False;[];;"The watch wiki linked by Automod below has your answer. I'll give you suggestions: - -- **Option 1:** Higurashi 2006 -> Kai -> Rei -> Gou - -- **Option 2:** Higurashi visual novel -> Rei -> Gou - -- **Option 3:** Gou - --- - -**Option 1** is pure anime; I guess this is what most people do by default. Kira and Outbreak can be skipped. - -**Option 2** is the best option if you have the time for it; 2006 + Kai don't cover everything that the VN does, but it takes much more time to read the VN (even if 2006 + Kai are 50+ eps). Lots of scenes are much better in the VN. - -**Option 3** is not recommended since Gou is technically a sequel. The author said that Gou can be enjoyed by newcomers (which is true), but certain things might confuse you and some parts are much less impactful. This option is the best if you're short on time.";False;False;;;;1610397193;;1610400688.0;{};gix92js;False;t3_kvb6mm;False;False;t3_kvb6mm;/r/anime/comments/kvb6mm/higurashi_when_they_cry_watch_order/gix92js/;1610450378;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ilariad92;;;[];;;;text;t2_11fhfv;False;True;[];;I have not. But I’ve seen it recommended on Netflix or Hulu or something. Can’t remember which streaming service it was exactly.;False;False;;;;1610397218;;False;{};gix94k1;True;t3_kvb5qo;False;True;t1_gix90eb;/r/anime/comments/kvb5qo/attention_to_all_anime_lovers/gix94k1/;1610450408;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi nodabest65, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610397221;moderator;False;{};gix94td;False;t3_kvbey2;False;True;t3_kvbey2;/r/anime/comments/kvbey2/any_animes_where_mc_has_badass_awakening_and_also/gix94td/;1610450412;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610397241;;False;{};gix96ei;False;t3_kv9pzr;False;True;t3_kv9pzr;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/gix96ei/;1610450435;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;RB12Gaming;;;[];;;;text;t2_4noobefr;False;False;[];;its really good;False;False;;;;1610397241;;False;{};gix96et;False;t3_kvb5qo;False;True;t1_gix94k1;/r/anime/comments/kvb5qo/attention_to_all_anime_lovers/gix96et/;1610450435;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Anime_Cuck;;;[];;;;text;t2_70sbgk61;False;False;[];;This season or in general?;False;False;;;;1610397249;;False;{};gix96z9;False;t3_kvbbi1;False;True;t3_kvbbi1;/r/anime/comments/kvbbi1/before_the_seasons_really_kicks_off_what_are_some/gix96z9/;1610450444;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OnlyAnEssenceThief;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ShinodaChan;light;text;t2_tiqmd;False;True;[];;">Be it Eugen taunting the Azur Lane, the fights between Zuikaku and Enterprise, or the destroyer group... All those were really a treat to watch. - -That's the worst thing about the first adaptation: It had solid moments that were brought down by the bigger picture. You'd have moments like [Zuikaku and Enterprise](https://www.youtube.com/watch?v=JSzNKm2Hc-0) in one episode and the [horrendous suicide boat](https://youtu.be/oaCD-2hYoN0?t=1158) in another. It made the whole thing unwatchable IMO because it highlighted how disappointing the bad moments of the show were since you could tell that the potential was there. I'm not surprised things played out as they did, though; Azur Lane's story is still a vague WIP with little to work with.";False;False;;;;1610397250;;1610397634.0;{};gix9731;False;t3_kvadt9;False;False;t1_gix8o9d;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gix9731/;1610450445;15;False;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;AoT 4 and Slime 2 are what I'm most excited for. I haven't really dug into all the shows coming out this season as I'm not in a position to be able to watch anything. Been stuck on the side of a mountain with data capped hot spot on my phone being my only internet since August, so I've missed Fall and winter seasons so far. I'm going to have a ton of catching up to do.;False;False;;;;1610397260;;False;{};gix97v7;False;t3_kvbbi1;False;True;t3_kvbbi1;/r/anime/comments/kvbbi1/before_the_seasons_really_kicks_off_what_are_some/gix97v7/;1610450457;0;True;False;anime;t5_2qh22;;0;[]; -[];;;n080dy123;;;[];;;;text;t2_139f6y;False;False;[];;I loved that dub, it wasn't great but it had a certain charm.;False;False;;;;1610397301;;False;{};gix9b0w;False;t3_kvadt9;False;False;t1_gix7nti;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gix9b0w/;1610450504;8;True;False;anime;t5_2qh22;;0;[]; -[];;;NJBuoy;;skip7;[];;;dark;text;t2_9i9ekg0o;False;False;[];;If i watch Higurashi(2006) and Higurashi kai(2007) then is there any need to watch the 2020 version ? I mean is it the season 3 ?;False;False;;;;1610397307;;False;{};gix9bhb;True;t3_kvb6mm;False;True;t1_gix8e54;/r/anime/comments/kvb6mm/higurashi_when_they_cry_watch_order/gix9bhb/;1610450511;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;If you're in Region 1, you can watch it on Hidive or buy the Blu-rays.;False;False;;;;1610397333;;False;{};gix9djy;False;t3_kv8fcu;False;True;t3_kv8fcu;/r/anime/comments/kv8fcu/where_can_i_find_koichoco/gix9djy/;1610450545;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NJBuoy;;skip7;[];;;dark;text;t2_9i9ekg0o;False;False;[];;So if i finish 2006 and 2007 then is there any need to watch the 2020 one ?;False;False;;;;1610397339;;False;{};gix9e0a;True;t3_kvb6mm;False;True;t1_gix8rlf;/r/anime/comments/kvb6mm/higurashi_when_they_cry_watch_order/gix9e0a/;1610450552;0;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"Kemono Jihen - -Tomozaki-Kun - I get why people are overlooking it but it seems like something that has the potential to be good.";False;False;;;;1610397394;;False;{};gix9ibo;False;t3_kvbbi1;False;False;t3_kvbbi1;/r/anime/comments/kvbbi1/before_the_seasons_really_kicks_off_what_are_some/gix9ibo/;1610450620;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Kirbyeggs;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;http://myanimelist.net/profile/kirbybasu;light;text;t2_3hj70;False;False;[];;Seeing vehicles such as planes or tanks in trash cgi is very disheartening. I should be glad that stuff like that isn't very popular. the CGI in yukikaze and the new macross shows is pretty good, but for most tv productions it looks like garbage.;False;False;;;;1610397434;;False;{};gix9lky;False;t3_kv9id4;False;True;t3_kv9id4;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/gix9lky/;1610450669;1;True;False;anime;t5_2qh22;;0;[]; -[];;;voornaam1;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://www.anime-planet.com/users/Max4444;dark;text;t2_3yiwp1ue;False;False;[];;"Everyone's anime taste is shit except mine /s - -Just because you don't like a supposedly good anime (haven't watched MonsterMusume myself but it doesn't look like something I'd like) doesn't mean your taste is shit. - -And even if your taste is shit, if you enjoy watching it really doesn't matter.";False;False;;;;1610397463;;False;{};gix9nw5;False;t3_kv8n0c;False;True;t3_kv8n0c;/r/anime/comments/kv8n0c/liking_monster_musume_determines_your_taste_in/gix9nw5/;1610450704;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gsenjou;;;[];;;;text;t2_5ns6dyc;False;False;[];;No, dude just ends up in prison.;False;False;;;;1610397492;;False;{};gix9q6j;False;t3_kvbfdy;False;True;t3_kvbfdy;/r/anime/comments/kvbfdy/aldnoah_zero_does_slain/gix9q6j/;1610450741;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;Only if you want to and want more higurashi content. The 2020 version’s subtle differences are nice to pick up on and it’s nice to see the visual upgrade from the old 2006 version to the new 2020 version.;False;False;;;;1610397504;;False;{};gix9r3f;False;t3_kvb6mm;False;True;t1_gix9e0a;/r/anime/comments/kvb6mm/higurashi_when_they_cry_watch_order/gix9r3f/;1610450754;0;True;False;anime;t5_2qh22;;0;[]; -[];;;gratifiedlonging;;;[];;;;text;t2_93iwn0o7;False;False;[];;"The 2020 version (Gou) is **not** a remake; the most recent episode (14) confirms this. It can be enjoyed by newcomers though, but not fully.";False;False;;;;1610397521;;False;{};gix9sfr;False;t3_kvb6mm;False;True;t1_gix8rlf;/r/anime/comments/kvb6mm/higurashi_when_they_cry_watch_order/gix9sfr/;1610450775;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610397535;moderator;False;{};gix9ti7;False;t3_kvbfdy;False;True;t3_kvbfdy;/r/anime/comments/kvbfdy/aldnoah_zero_does_slain/gix9ti7/;1610450791;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610397545;moderator;False;{};gix9ubt;False;t3_kvbj5u;False;True;t3_kvbj5u;/r/anime/comments/kvbj5u/for_the_fate_series_is_it_even_worth_if_i_only/gix9ubt/;1610450803;1;False;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;I've said it before, the only way to make a good mobile game adaptation is to stick to SoL comedy shenanigans;False;False;;;;1610397565;;False;{};gix9vvq;False;t3_kvadt9;False;False;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gix9vvq/;1610450827;12;True;False;anime;t5_2qh22;;0;[]; -[];;;nerdshark;;;[];;;;text;t2_45e8k;False;False;[];;Fuck Slaine.;False;False;;;;1610397586;;False;{};gix9xjl;False;t3_kvbfdy;False;True;t3_kvbfdy;/r/anime/comments/kvbfdy/aldnoah_zero_does_slain/gix9xjl/;1610450852;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jotakujo2;;;[];;;;text;t2_4r71apoa;False;False;[];;"It's a german name, it should be ""Jäger""";False;False;;;;1610397618;;False;{};gixa013;False;t3_kv74lk;False;False;t1_gix29uy;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gixa013/;1610450891;35;True;False;anime;t5_2qh22;;0;[]; -[];;;Headcap;;;[];;;;text;t2_5vejt;False;True;[];;Working!! is one of the few ones i liked.;False;False;;;;1610397694;;False;{};gixa5zd;False;t3_kv8wep;False;True;t3_kv8wep;/r/anime/comments/kv8wep/any_good_romance_animes/gixa5zd/;1610450982;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Garsnikk;;;[];;;;text;t2_23jwwe5u;False;False;[];;"Yuru Camp: Hold my cup ramen - - -That being said, this is still a strong contender, and, together with yuru camp and non non biyori, will heal the eff out of our 'rona tortured souls.";False;False;;;;1610397725;;False;{};gixa8hi;False;t3_kvadt9;False;False;t1_gix5m9g;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gixa8hi/;1610451020;8;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;"It depends, it's up to you. The 2020 version is ""treading new ground,"" we were told that it'd be a remake but it's going completely off the rails. I'm waiting until more of it is out before watching through all of that myself but I'm aware of some of the major things it does. Basically we don't know. If it sucks or if you hate it, you can tell yourself that it isn't canon, the old anime is effectively a ""complete"" (albeit it makes some understandable cuts along the way) adaptation of the story from the visual novel. - -I've heard that something within Rei is kind of referenced or at least nodded towards within Gou (and I haven't heard anything comparable with Kira.) Honestly people like to give Kira a bad rap, if you make it all the way through Rei (which is just 5 episodes, one of the arcs within it is ""canon"" but it's nestled within some uncanon stuff... if that makes any sense) then at the very least Kira's 4th episode ends the old anime on a better emotional capstone than Rei does. - -The main mystery is in some way resolved by the end of Kai, so you wouldn't be doing any *enormous* disservice to yourself if you decided to stop or do something else after that (at least where spoilers are concerned.) If that helps any. - -Edit: I wouldn't call Higurashi Gou ""season 3"" though, it's simply the new anime. It's basically a sequel or a spinoff. You can take the old anime as far as you want (and that other list I posted breaks its releases down into seasons), this new anime is in more ways its own thing.";False;False;;;;1610397748;;1610398173.0;{};gixaabb;False;t3_kvb6mm;False;False;t1_gix9bhb;/r/anime/comments/kvb6mm/higurashi_when_they_cry_watch_order/gixaabb/;1610451049;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Doodies1234;;;[];;;;text;t2_8se7r4xg;False;False;[];;Honestly fate zero and stay night can be watched in either order. Chronologically, zero comes before stay night. However, stay night was made before zero. It’s honestly up to you. Haven’t seen any other fate properties, they don’t seem that good. Watched the first few episodes of apocrypha and it was dog shit. Definitely watch zero and stay night tho.;False;False;;;;1610397784;;False;{};gixad6p;False;t3_kvbj5u;False;True;t3_kvbj5u;/r/anime/comments/kvbj5u/for_the_fate_series_is_it_even_worth_if_i_only/gixad6p/;1610451096;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Icy-Travel;;;[];;;;text;t2_5xyq17lx;False;False;[];;Damn...so literally both of them just...don’t end up with her? I remember beginning of second season there was more romance so I assumed one of them would be with Asseylum;False;False;;;;1610397808;;False;{};gixaf4x;True;t3_kvbfdy;False;True;t1_gix9q6j;/r/anime/comments/kvbfdy/aldnoah_zero_does_slain/gixaf4x/;1610451129;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bdb_318;;;[];;;;text;t2_3qqkw3a0;False;False;[];;I'd say watch Fate:Zero and call it a day.;False;True;;comment score below threshold;;1610397812;;False;{};gixaffw;False;t3_kvbj5u;False;True;t3_kvbj5u;/r/anime/comments/kvbj5u/for_the_fate_series_is_it_even_worth_if_i_only/gixaffw/;1610451134;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;Yeah, you can start at Zero or Unlimited Blade Works (the series not the movie) and everything will make sense to you, and they're good.;False;False;;;;1610397828;;False;{};gixagmf;False;t3_kvbj5u;False;True;t3_kvbj5u;/r/anime/comments/kvbj5u/for_the_fate_series_is_it_even_worth_if_i_only/gixagmf/;1610451152;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610397859;;False;{};gixaj1i;False;t3_kv9pzr;False;True;t3_kv9pzr;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/gixaj1i/;1610451189;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fetus_Flytrap;;;[];;;;text;t2_400f9vf1;False;False;[];;Who tf is yeager;False;True;;comment score below threshold;;1610397882;;False;{};gixakrk;False;t3_kv74lk;False;True;t3_kv74lk;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gixakrk/;1610451217;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;Koo__;;;[];;;;text;t2_25ekfv4h;False;False;[];;Your Lie in April has romance, comedy and drama.;False;False;;;;1610397895;;False;{};gixalu9;False;t3_kvb5qo;False;True;t3_kvb5qo;/r/anime/comments/kvb5qo/attention_to_all_anime_lovers/gixalu9/;1610451233;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fetus_Flytrap;;;[];;;;text;t2_400f9vf1;False;False;[];;*good drawing tho*;False;False;;;;1610397895;;False;{};gixaluu;False;t3_kv74lk;False;True;t1_gixakrk;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gixaluu/;1610451233;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ilariad92;;;[];;;;text;t2_11fhfv;False;True;[];;Well thank you! I will check it out.;False;False;;;;1610397897;;False;{};gixalzn;True;t3_kvb5qo;False;True;t1_gix96et;/r/anime/comments/kvb5qo/attention_to_all_anime_lovers/gixalzn/;1610451234;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ilariad92;;;[];;;;text;t2_11fhfv;False;True;[];;I’ll check it out! Sounds like it’s right up my alley then;False;False;;;;1610397924;;False;{};gixao6c;True;t3_kvb5qo;False;True;t1_gixalu9;/r/anime/comments/kvb5qo/attention_to_all_anime_lovers/gixao6c/;1610451274;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Koo__;;;[];;;;text;t2_25ekfv4h;False;False;[];;"Trust me it's great. It's my all time favourite. Another that is great is A Silent Voice. It's a movie and is also one the best. - -EDIT: Also Violet Evergarden. It's beautiful and by the same studio as A Silent Voice.";False;False;;;;1610398030;;False;{};gixawh1;False;t3_kvb5qo;False;True;t1_gixao6c;/r/anime/comments/kvb5qo/attention_to_all_anime_lovers/gixawh1/;1610451409;2;True;False;anime;t5_2qh22;;0;[]; -[];;;blackmagemasta;;MAL;[];;https://myanimelist.net/profile/blackmagemasta;dark;text;t2_aceb1;False;False;[];;It's not very good, but there's some good present.;False;False;;;;1610398030;;False;{};gixawhd;False;t3_kvbo00;False;True;t3_kvbo00;/r/anime/comments/kvbo00/do_you_guys_think_seven_deadly_sins_is_any_good/gixawhd/;1610451409;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FeaturedSpace39;;;[];;;;text;t2_38t70gug;False;False;[];;What is region one? I live in the states;False;False;;;;1610398048;;False;{};gixaxve;True;t3_kv8fcu;False;False;t1_gix9djy;/r/anime/comments/kv8fcu/where_can_i_find_koichoco/gixaxve/;1610451433;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;False;[];;I think it is boring and unremarkable;False;False;;;;1610398052;;False;{};gixay8j;False;t3_kvbo00;False;True;t3_kvbo00;/r/anime/comments/kvbo00/do_you_guys_think_seven_deadly_sins_is_any_good/gixay8j/;1610451438;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Pixelify_;;;[];;;;text;t2_8s9wd0ol;False;False;[];;Personally I think it's really good. I was a tad disappointed when the sins turned out to be the good guys as they were always portrayed as the bad guys in the first season.;False;False;;;;1610398052;;False;{};gixay98;False;t3_kvbo00;False;True;t3_kvbo00;/r/anime/comments/kvbo00/do_you_guys_think_seven_deadly_sins_is_any_good/gixay98/;1610451438;1;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your submission has been removed. - -- It looks like you want to talk about anime, but don't have much to say. We don't allow short, low-effort discussion posts here, but feel free to take some time to think more about what made your watching experience stand out, and make another post when you have some more thoughts down. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610398055;moderator;False;{};gixaygx;False;t3_kvbo00;False;True;t3_kvbo00;/r/anime/comments/kvbo00/do_you_guys_think_seven_deadly_sins_is_any_good/gixaygx/;1610451442;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;I think [Back Arrow](https://myanimelist.net/anime/40964/Back_Arrow) has the potential to be a lot of fun. Original mecha anime are always a crapshoot on whether they turn out really good (Granbelm), are really boring (Listeners), or completely fall apart at the end (Darling In The Franxx), so we'll have to wait and see which outcome happens... but I really liked what I saw from the first episode.;False;False;;;;1610398069;;False;{};gixazl2;False;t3_kvbbi1;False;True;t3_kvbbi1;/r/anime/comments/kvbbi1/before_the_seasons_really_kicks_off_what_are_some/gixazl2/;1610451460;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;I'm not giving your website traffic for ad revenue, Spammy.;False;False;;;;1610398110;;False;{};gixb2ph;False;t3_kvbl7x;False;True;t3_kvbl7x;/r/anime/comments/kvbl7x/9_anime_sex_comedies_absolutely_worth_watching/gixb2ph/;1610451510;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;"Main story: - -* Fate/stay night (2006) **(DISCLAIMER: primarily follows the Fate Route, but incorporates some elements from the other two. I like it enough to recommend it, so I will. However, I do concede that a better alternative would be to watch/read/play the Fate Route of the VN.)** -* Unlimited Blade Works (2014) -* Heaven's Feel Trilogy - -Prequel: - -* Fate/Zero **(DISCLAIMER: if you just want to watch one great show and then dip from the franchise, it's a perfectly fine standalone (not gonna gatekeep). However, don't start with it if you plan to commit)** - -Spinoffs: - -* Fate/kaleid liner Prisma Illya -* Carnival Phantasm (needs some knowledge from Tsukihime as well, but there's no anime of that 😎) -* Fate/Apocrypha -* Today's Menu for the Emiya Family (jokingly referred to as ""Fate/Cooking"") -* Fate/Extra: Last Encore -* Lord El-Melloi II Case Files: Rail Zeppelin Grace Note (needs Fate/Zero for context) -* Fate/Grand Order **(which is a whole different can of worms with enough in-depth lore and story to surpass the Main Story)** - - First Order - - Moonlight/Lostroom **(DISCLAIMER: should be watched last out of the ones currently listed here)** - - Absolute Demonic Front - Babylonia - - Divine Realm of the Round Table - Camelot - - The Grand Temple of Time - Solomon";False;False;;;;1610398119;;False;{};gixb3f8;False;t3_kvbj5u;False;True;t3_kvbj5u;/r/anime/comments/kvbj5u/for_the_fate_series_is_it_even_worth_if_i_only/gixb3f8/;1610451521;4;True;False;anime;t5_2qh22;;0;[]; -[];;;blackmagemasta;;MAL;[];;https://myanimelist.net/profile/blackmagemasta;dark;text;t2_aceb1;False;False;[];;I have no way of knowing if it'll make sense to you, but the watch order is Fate/stay Night fan edit from 2006, Unlimited Blade Works from 2014, the three Heaven's Feel movies from 2017, 2019, and 2020, and lastly Fate/Zero from 2011.;False;False;;;;1610398120;;False;{};gixb3jc;False;t3_kvbj5u;False;True;t3_kvbj5u;/r/anime/comments/kvbj5u/for_the_fate_series_is_it_even_worth_if_i_only/gixb3jc/;1610451523;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;wise mans grand child;False;False;;;;1610398129;;False;{};gixb48l;False;t3_kvbey2;False;True;t3_kvbey2;/r/anime/comments/kvbey2/any_animes_where_mc_has_badass_awakening_and_also/gixb48l/;1610451534;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;The US + Canada. So you should be good.;False;False;;;;1610398194;;False;{};gixb9ej;False;t3_kv8fcu;False;True;t1_gixaxve;/r/anime/comments/kv8fcu/where_can_i_find_koichoco/gixb9ej/;1610451615;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FeaturedSpace39;;;[];;;;text;t2_38t70gug;False;False;[];;I’m pretty sure I tried HIDIVE. I will try again I suppose.;False;False;;;;1610398223;;False;{};gixbbrv;True;t3_kv8fcu;False;False;t1_gixb9ej;/r/anime/comments/kv8fcu/where_can_i_find_koichoco/gixbbrv/;1610451651;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;"keep in mind what we are seeing is ""TV broadcast"" quality for CGI, and not their Blu-ray release which is often noticeably better.";False;False;;;;1610398258;;False;{};gixbek6;False;t3_kv9id4;False;True;t3_kv9id4;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/gixbek6/;1610451694;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarRufus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ScarRufus;light;text;t2_2u0vy1pk;False;False;[];;"Start with Fate / Zero or Fate UBW it doesn't matter. - -Or release order with you want to add old stuff. - - -And yes, it is worth (and great) to stay with anime only.";False;False;;;;1610398284;;False;{};gixbgls;False;t3_kvbj5u;False;True;t3_kvbj5u;/r/anime/comments/kvbj5u/for_the_fate_series_is_it_even_worth_if_i_only/gixbgls/;1610451726;0;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;[https://myanimelist.net/anime/38409/Cike\_Wu\_Liuqi](https://myanimelist.net/anime/38409/Cike_Wu_Liuqi);False;False;;;;1610398320;;False;{};gixbjhb;False;t3_kv93r7;False;True;t3_kv93r7;/r/anime/comments/kv93r7/anime_suggestions_for_me_to_watch_after_romance/gixbjhb/;1610451771;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarRufus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ScarRufus;light;text;t2_2u0vy1pk;False;False;[];;The end was a trainwreck. Asseylum finish with a random new character and the others 2 boys... One in prison and the other become Terminator.;False;False;;;;1610398368;;False;{};gixbnd8;False;t3_kvbfdy;False;True;t3_kvbfdy;/r/anime/comments/kvbfdy/aldnoah_zero_does_slain/gixbnd8/;1610451831;2;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your submission has been removed. - -- It looks like your questions have been answered, so we're taking it off the list of new posts to make room for other content. For future reference, here are some additional resources that may help you find an answer even faster: - - - [To ask any random question you may have, visit our Weekly Miscellaneous Anime Questions thread!](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Weekly+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) - - [For finding an anime based off of a single image, reverse image searching typically works instantly](http://www.reddit.com/r/anime/wiki/reverse_image_searching) - - [r/anime has a large number of watch orders available](http://www.reddit.com/r/anime/wiki/watch_order) - - [You can find all of your recommendation needs here](http://www.reddit.com/r/anime/wiki/recommendations) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610398370;moderator;False;{};gixbnix;False;t3_kvbj5u;False;True;t3_kvbj5u;/r/anime/comments/kvbj5u/for_the_fate_series_is_it_even_worth_if_i_only/gixbnix/;1610451834;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ptlg225;;;[];;;;text;t2_573wpm4g;False;False;[];;Sacred seven;False;False;;;;1610398394;;False;{};gixbpg3;False;t3_kvbey2;False;False;t3_kvbey2;/r/anime/comments/kvbey2/any_animes_where_mc_has_badass_awakening_and_also/gixbpg3/;1610451864;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Verzwei;;;[];;;;text;t2_cmzqb;False;False;[];;"It probably depends on the tone it was said in. - -""Trash taste"" or ""shit taste"" kind of an in-joke in anime communities. It's the same way that ""man of culture"" gets thrown around when someone talks about liking pandering shows or fetish bait. - -I'm not necessarily defending the guys in your situation, but I'd take what they said with a grain of salt. Their _words_ might be condescending, but there's a _chance_ that it's the kind of self-aware or self-deprecating condescension that the fandom sometimes uses on itself and they might not mean any actual harm by it. - -**If I had to guess** I'd say that they probably didn't mean it as seriously as you ended up taking it. But, again, I don't know them, I don't know you, I'm not trying to take sides, and I'm just trying to assume the guys aren't being assholes on purpose. It's really easy to say things that get taken as excessively blunt or curt when you are passionate or obsessive about something, I know that first-hand. - -In the future, if it comes up again, what I would do is try playing it as a joke and maybe chide back at them (and their shit taste) and see how they take it. If they act genuinely insulted, then maybe they were more serious than I thought, but if they just roll with it, then they probably didn't mean any harm in the first place. - -Unrelated, but, for what it's worth, Monster Musume usually gets abbreviated as MonMusu. [MM](https://anilist.co/anime/8424/MM) is actually the title of another show, this one about a masochist getting abused by a couple girls at his school and loving it, so that's an entirely new can of worms, and one you could recommend to your guy friends since they enjoy trash like MonMusu.";False;False;;;;1610398491;;False;{};gixbx4y;False;t3_kv8n0c;False;True;t3_kv8n0c;/r/anime/comments/kv8n0c/liking_monster_musume_determines_your_taste_in/gixbx4y/;1610451988;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gmarvin;;;[];;;;text;t2_7p5g7;False;False;[];;"I know that, but it's often anglicized as ""Jaeger"", which is what is shown in the Crunchyroll sub. Examples include Frank Jaeger from MGS, the Jaeger mechs from Pacific Rim, and apparently many real-life people also spell it that way too.";False;False;;;;1610398505;;False;{};gixby7u;False;t3_kv74lk;False;False;t1_gixa013;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gixby7u/;1610452005;9;True;False;anime;t5_2qh22;;0;[]; -[];;;gangrainette;;MAL;[];;https://myanimelist.net/profile/bouletos;dark;text;t2_vlti1;False;False;[];;Cross Ange.;False;False;;;;1610398534;;False;{};gixc0kk;False;t3_kvbey2;False;False;t3_kvbey2;/r/anime/comments/kvbey2/any_animes_where_mc_has_badass_awakening_and_also/gixc0kk/;1610452042;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;"""woah, is that [Madoka Magica](https://myanimelist.net/anime/9756/Mahou_Shoujo_Madoka%E2%98%85Magica) in the thumbnail? Madoka isn't a sex comedy, I better go click on that link to figure out what's going on!"" this is dumb, you're dumb, dumb website";False;False;;;;1610398547;;False;{};gixc1yh;False;t3_kvbl7x;False;True;t3_kvbl7x;/r/anime/comments/kvbl7x/9_anime_sex_comedies_absolutely_worth_watching/gixc1yh/;1610452061;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;I mean, it's right here: https://www.hidive.com/tv/love-election-chocolate;False;False;;;;1610398561;;False;{};gixc3gg;False;t3_kv8fcu;False;False;t1_gixbbrv;/r/anime/comments/kv8fcu/where_can_i_find_koichoco/gixc3gg/;1610452080;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ADelicateOrange;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ADelicateOrange not updated;light;text;t2_h8xom;False;False;[];;"I follow this sub sparsely, but SK 8 is a good deal of fun. Original anime by Bones and Directed by Hiroko Utsumi (Banana Fish), so I have a good deal of expectations. - -This is definitely cheating, but Aria the Crepuscolo. It's a movie that is coming out in March. I love all the Aria stuff and don't expect this to be anything less than 8/10.";False;False;;;;1610398644;;False;{};gixcb8n;False;t3_kvbbi1;False;False;t3_kvbbi1;/r/anime/comments/kvbbi1/before_the_seasons_really_kicks_off_what_are_some/gixcb8n/;1610452194;4;True;False;anime;t5_2qh22;;0;[]; -[];;;gsenjou;;;[];;;;text;t2_5ns6dyc;False;False;[];;Sadly, no. Asseylum ends up marrying Cruhteo's son, who literally only shows up in the last couple of episodes. I believe it was for political reasons, but it's still shitty writing.;False;False;;;;1610398659;;False;{};gixccec;False;t3_kvbfdy;False;True;t1_gixaf4x;/r/anime/comments/kvbfdy/aldnoah_zero_does_slain/gixccec/;1610452212;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PotatoKaboose;;;[];;;;text;t2_47iz2hsb;False;False;[];;I was mostly referring to this season, but if you have shows from before, this season that you'd like to rep, go right ahead;False;False;;;;1610398665;;False;{};gixccv2;True;t3_kvbbi1;False;False;t1_gix96z9;/r/anime/comments/kvbbi1/before_the_seasons_really_kicks_off_what_are_some/gixccv2/;1610452220;1;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;*every hour;False;False;;;;1610398673;;False;{};gixcdi6;False;t3_kv6gpi;False;True;t1_giwfw2x;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/gixcdi6/;1610452230;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ZiulDeArgon;;;[];;;;text;t2_inunv;False;False;[];;"I think the anime made everything feel even more unsettling than the manga with the rotoscoping, so I liked what they did there. - -The second part of the manga, had some memorable scenes but it felt a lot less unique than the first half so I would personally rate the first part better. - -Still, amazing manga overall.";False;False;;;;1610398698;;1610403191.0;{};gixcfhs;False;t3_kv9wd2;False;True;t1_gix0ufu;/r/anime/comments/kv9wd2/aku_no_hana_the_creepiest_unsettling_depressing/gixcfhs/;1610452264;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AxtheCool;;;[];;;;text;t2_y2vk9;False;False;[];;Thats like the same problem with the manga. Fuutarou is an idiot with an attention span of a dog that forgets 100% of anything related to distinguishing the sisters.;False;False;;;;1610398705;;False;{};gixcg10;False;t3_kvaxav;False;True;t3_kvaxav;/r/anime/comments/kvaxav/quintessential_quintuplets_is_massively_dragged/gixcg10/;1610452273;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Stefan474;;MAL;[];;http://myanimelist.net/animelist/Stefan474;dark;text;t2_9ffp8;False;False;[];;"Absolutely. - -The confusion that it is a remake comes from the creators trolling us basically. The anime is fully, 100% a sequel. I don't want to spoil it, but it was known from episode 2 if you played Umineko, and if you still weren't sure episode 14 erases any doubt about it. - -Best order is Visual novels 1-8 > Rei > Gou, but anime order is fine as well if you don't have much time or don't like to read, which is the 2007 anime > Kai > Rei > Gou.";False;False;;;;1610398778;;False;{};gixcltt;False;t3_kvb6mm;False;True;t1_gix9bhb;/r/anime/comments/kvb6mm/higurashi_when_they_cry_watch_order/gixcltt/;1610452371;2;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;"**Episode 6 (first timer)** - -* *Seeing her wiggle around* - kill the camerawoman! -* The regularly scheduled Umi-bullying occurs. -* Honoka: “Please help me Nozomi!” – Nozomi: ”Though luck, get gud!” -* Nico not only has a persona, but a second, back-up, real-life persona. -* “gives sort of the wrong impression” – not really. -* They have a tripod? WHY DID YOU NOT USE THAT BEFORE?!? -* A male appears! -* And disappears after we see 1 second of his back … -* “Why are you the leader?” - *because she made it happen*. -* Karaoke contest? An obvious plot by Nico and a terrible way to chose a leader. Of course, they will all fall for it. -* Three contests, but no winner. -* The depth perspective it totally off on the stairs shot of Hanayo. - -Nothing changed about the leader and nobody took Nico’s contest seriously, so it is mostly a slice-of-life episode. - -> What do you think about μ's decision for the leader/ center position? Was this a good decision? Who do you prefer as center? - -Center and leader are two completely different decisions, why would you ever bundle the two? Honoka is extremely good at the motivation part of being a leader and extremely bad at the planning&executing part. Implying that she should be a figurehead with somebody more reliable but without ambitions (Umi? Kotori?) does the actual work. - -Center: Why even have a pre-defined one? Just go with whatever looks good after the previous part of the choreography.";False;False;;;;1610398846;;1610399141.0;{};gixcr6j;False;t3_kvbyuf;False;False;t3_kvbyuf;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixcr6j/;1610452461;17;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;True;[];;"###First Timer -So this is the episode we choose and practice a new song, right? Other than that, I'm just hoping to see best girl Alpaca again. -Onto episode 6. - -[Flustered Umi](https://i.imgur.com/NNO3OEn.png) is cute. - -Well, I guess the [answer](https://i.imgur.com/JYCXmuH.png) is VP since she has the camera and mic. - -Isn't that implied by the [school](https://i.imgur.com/IIDHrjJ.png) in school idol? - -What is this, [an expose](https://i.imgur.com/K4pdg1S.png)? - -You are perfectly capable of making Honoka look better, you just [like doing this](https://i.imgur.com/WJKsSQ2.png). - -Why does she look like a [drowned rat](https://i.imgur.com/eZHfG3E.png)? - -[The Nico in her natural habitat](https://i.imgur.com/KVpkTos.png): truly a terrifying concept. - -Nico [overinterprets](https://i.imgur.com/1B939uT.png) everything, doesn't she? -Also, she looks like a different character without the ribbons. - -The [trap](https://i.imgur.com/ovIgG50.png) has been baited. - -[Fuckin' Honoka.](https://i.imgur.com/BimHk9S.png) -[](#facepalm2) - -I don't think Honoka [knows what that means](https://i.imgur.com/EPg7Ujy.png). - -It looks like the [leader's leading](https://i.imgur.com/KOU0fii.png) to me. - -Honoka's the [mascot](https://i.imgur.com/Pz42IEI.png). - -But Honoka's in the center, so it has to [still be her](https://i.imgur.com/YIYQHQq.png). Wonder how she pulls that off? - -They really pulled the rug out from under Nico there. Nico's not cut out for it though, she'd run 'em into the ground. - -Nico thinks there's [no way she'll lose](https://i.imgur.com/2Wa9rZU.png). Greater the pride, greater the fall. - -This is perhaps the [best argument](https://i.imgur.com/Dswnp6B.png) for Honoka. - -Nico tries too hard at everything. - -And this is why Honoka's the leader. She's the one who makes all of them work togehter. - -And she [pulls](https://i.imgur.com/fN7fXIP.png) all of you along behind her. - -We never really see them working on the song. It's SoL drama right into the full performance with nothing in between. I'd like to see a bit more of that. - -Just for the sake of it, the ED: -Honoka's the one [chasing after it](https://i.imgur.com/uKOM9zd.png) the most. She wants to pull this off more than anyone else, and she won't let anything get in her way. -Umi has to [overcome](https://i.imgur.com/iUrENGV.png) more fears than anyone else in the group to perform. -The [VP wishes](https://i.imgur.com/ah5oHWz.png) to save the school, but can't really act on it, so she does everything indirectly instead of taking big actions. -Each of these three wanted to become an idol, but they need [each other's support](https://i.imgur.com/grOU9BE.png) to go through with it. -Nico's [constantly working](https://i.imgur.com/hCS1mtH.png) to be the perfect idol she sees in her dreams, even though it doesn't match well with who she is naturally. -The pres [lost hope](https://i.imgur.com/smsoNWq.png) in the school continuing to exist, but she'll regain it later. -Honestly, all of that was fairly obvious, I just never bothered to write it before. - -####Thoughts -Someone really needs to teach Nico how to chill out a little bit. Aside from that, I'd like a little more of the idol side, please. Aside from when we get a performance, it's the School Idol part has a very minor effect on what's happening. - -1. Honoka is the center of the group, so she should be the center.";False;False;;;;1610398887;;False;{};gixcuf2;False;t3_kvbyuf;False;False;t3_kvbyuf;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixcuf2/;1610452514;9;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkFuzz;;MAL;[];;http://myanimelist.net/profile/DarkFuzz;dark;text;t2_dvv5i;False;True;[];;"[**Take today’s survey here!**](https://docs.google.com/forms/d/e/1FAIpQLSeTuEbO1e9YSUQT9TaZdFUaG_ey3B2tCa2ycJ_O1QVq11ENrw/viewform?usp=sf_link) - -Something about hair down Nico is extremely charming. Can’t put my finger on it. [Is it the hair swish? It’s the hair swish.](https://i.imgur.com/hN9F26h.gif) God, it looks beautiful.";False;False;;;;1610398898;;False;{};gixcv8y;False;t3_kvbyuf;False;False;t3_kvbyuf;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixcv8y/;1610452527;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;"**7th SIP rewatch** - -Cool, we get to see some candid insight on the day-to-day lives of the Idol Study Club! - -I always love to see [hair-down Nico!](http://imgur.com/a/uGqCBhf) - -Hm, I wonder what that picture inside of Kotori's bag could be? - -[Another moment](https://imgur.com/a/p43YUTJ) that originally caught me off guard and made me laugh. - -[Yukiho continues to fill out in all of the wrong places...](https://imgur.com/a/t0Tueyd) - -All of this candid video has made it obvious that μ's has a big slacker for a leader. We can't have that, so it's time for a new one! **I love how Honoka [doesn't care](http://imgur.com/a/DkCfZWQ) that she's going to lose her leader position, and is just happy to be in μ's. She's so humble.** - -**Nico's failed scheme to win the leader competition shows how much their practicing has been paying off.** The only thing left to do is have a flier handout contest... **Now that I think about it, I'm pretty sure [this](http://imgur.com/a/ovKFC8S) is the only physical contact between a school idol and a male in the entire LL! Series.** - -All of that competition was pointless, because there was only [one person](https://imgur.com/a/BP5gs8y) fit to lead μ's all along. - -**Kore Kara no Someday is another one my lesser favorite μ's songs. The Wonderland-esque costumes are alright. It was cool that they used the whole school as a stage, but the dance itself didn't really stand out to me.** - -I wonder what Nozomi meant when she told the president the she was the one μ's needs? And why is she represented by the [Star tarot card?](http://imgur.com/a/XeidY1k) - ->What do you think about μ's decision for the leader/ center position? Was this a good decision? Who do you prefer as center? - -I'll always think Honoka should be the leader. μ's never would've existed if not for her. - ->Do you have a go to song for karaoke or a rhythm/ dancing game you like to play? - -To be honest, the only music games I play are the LL! gacha games. - -In SIF, I like playing the beatmap in Mogyutto ""love"" de Sekkin Chuu! - -I'm not really partial to any song in SIFAS, but watching the other girls dance in Karin's songs is always nice. - -P.S. [Rewatch Meta, Not Relevant to Love Live!](/s ""I'll probably switch to lurking and/or less-effort comments from now on. Having to analyze the show so much to come up with comments is effectively making this my most bitter re-watch. I don't know how first timers in Rewatches can do that. It's like they're setting themselves up to not like the show. But since this is the first time I'm in a Rewatch in which I'm actually re-watching, I didn't realize that's what I've been doing."")";False;False;;;;1610398899;;1610401826.0;{};gixcvcw;False;t3_kvbyuf;False;False;t3_kvbyuf;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixcvcw/;1610452529;8;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hi 1Fallen_angel, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610398915;moderator;False;{};gixcwkv;False;t3_kvc0mb;False;True;t3_kvc0mb;/r/anime/comments/kvc0mb/can_ppl_recommend_me_good_romance_animesmangas/gixcwkv/;1610452548;1;False;False;anime;t5_2qh22;;0;[]; -[];;;florgisj;;;[];;;;text;t2_37h1kili;False;False;[];;Horimiya;False;False;;;;1610398976;;False;{};gixd18p;False;t3_kvc0mb;False;True;t3_kvc0mb;/r/anime/comments/kvc0mb/can_ppl_recommend_me_good_romance_animesmangas/gixd18p/;1610452621;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ADelicateOrange;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ADelicateOrange not updated;light;text;t2_h8xom;False;False;[];;"I guess it really depends on what you would want. They are identical quintuplets, so it would be seeing 5 girls who are 95% similar. The only real differentiating factor would be their individual hairpieces and behaviors. That's not really fun, imo. - -What you suggest will also not help later in the series, since Negi uses this purposefully in the manga in, what I believe is, one of the worst and most important arcs of this show.";False;False;;;;1610398988;;False;{};gixd26z;False;t3_kvaxav;False;True;t3_kvaxav;/r/anime/comments/kvaxav/quintessential_quintuplets_is_massively_dragged/gixd26z/;1610452637;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;Horimiya;False;False;;;;1610399032;;False;{};gixd5hi;False;t3_kvc0mb;False;False;t3_kvc0mb;/r/anime/comments/kvc0mb/can_ppl_recommend_me_good_romance_animesmangas/gixd5hi/;1610452689;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;[Here's a romance recommendation thread from a little bit ago.](https://www.reddit.com/r/anime/comments/kvahtd/what_are_some_of_the_must_watch_romance_animes/);False;False;;;;1610399044;;False;{};gixd6eh;False;t3_kvc0mb;False;False;t3_kvc0mb;/r/anime/comments/kvc0mb/can_ppl_recommend_me_good_romance_animesmangas/gixd6eh/;1610452703;1;True;False;anime;t5_2qh22;;0;[]; -[];;;reliweeb;;;[];;;;text;t2_9ai93fa8;False;False;[];;You are too fast, I was going to write it and boom you appeared;False;False;;;;1610399048;;False;{};gixd6qi;False;t3_kvc0mb;False;True;t1_gixd18p;/r/anime/comments/kvc0mb/can_ppl_recommend_me_good_romance_animesmangas/gixd6qi/;1610452709;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WhatsThisRedButtonDo;;;[];;;;text;t2_2usavrbl;False;False;[];;I wish it was longer than one season because the characters are great, but World Conquest Zvezda Plot has plenty of badass women.;False;False;;;;1610399095;;False;{};gixdab1;False;t3_kv6lm2;False;False;t3_kv6lm2;/r/anime/comments/kv6lm2/very_new_to_anime/gixdab1/;1610452766;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hannyy101;;;[];;;;text;t2_4qdl7lpy;False;False;[];;"My love story- it’s not complicated anime, it’s just really sweet and funny. -Kamisama kiss - it’s not all romance but it’s here and intense. -Toradora - it’s just intense and really beautiful build up of love.";False;False;;;;1610399103;;False;{};gixdavs;False;t3_kvc0mb;False;True;t3_kvc0mb;/r/anime/comments/kvc0mb/can_ppl_recommend_me_good_romance_animesmangas/gixdavs/;1610452776;1;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;"**First-Timer Who Was Just Here for the Ships** - -David Attenborough voice: *And here we find the Honoka in her natural habitat. Normally quite saucy, after obtaining too much bread, she finds herself in a deep slumber. What is this? Her mortal enemy the Sensei approaches! This doesn’t look good. But no worries; the Honoka is still young. She’ll survive, for now.* - -[Umi multitasks.](https://i.imgur.com/2TSSRbH.png) What a girl! - -[Oneupsmanship](https://i.imgur.com/WhrnfKo.png) does not lead to healthy relationships, Honoka. - -To get [sternly reprimanded by Best Girl](https://i.imgur.com/ZifpXUq.png), make funny faces. Good to know… - -Should have mentioned it last episode, but [Best Girl is the only one who wears a hat during practice.](https://i.imgur.com/H8JmYwV.png) [](#indexsmugshrug) Guess she’s just that much cooler than the rest of them. - -So [men do exist in this world](https://i.imgur.com/eeahe8s.png), but we now know how unimportant they are. With that out of the way, back to the cute girls! - -[That’s a good blush, Umi.](https://i.imgur.com/vZEHESN.png) - -[Is that “something” boobs?](https://i.imgur.com/MNNVDYr.png) - -[Actually Nico]( https://i.imgur.com/sNkYEUr.png), the Greek word from which we get the English word “anarchy” translates to “without a leader,” and there is a rich philosophical tradition there. So perhaps Honoka is just more high-brow than you expected, and is a student of Kropotkin, Nozick, Bakunin, Rothbard, or some other such thinker. Or maybe she’s just a naïve anime girl. - -[Hanayo’s got some good blush game, too.](https://i.imgur.com/nPFVHWC.png) - -That was a nice PV. But am I really supposed to believe they could have that production quality? What budget do they have? The costumes alone must have been pricey. - -[I HATE NEEDLESS CLIFFHANGERS!](#volibearQ) - -QOTD: - -1) I think they should have a center. Maybe not who actually runs things behind the scenes, but someone to choreograph around and use as a visual center. I'd probably go with Umi, since she seems to be the most well-rounded of the girls. - -2) I don't do rhythm games (I suck) and I've never really done karaoke, although I do like to sing. I'd probably sing a Sinatra song or some other standard ([The Quest](https://www.youtube.com/watch?v=k_3GmPmL4X0) from Man of La Mancha, for example), since they fit in my vocal range.";False;False;;;;1610399122;;1610405925.0;{};gixdce9;False;t3_kvbyuf;False;False;t3_kvbyuf;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixdce9/;1610452799;14;True;False;anime;t5_2qh22;;0;[]; -[];;;raichudoggy;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/raichudoggy;light;text;t2_93aur;False;False;[];;"**First Timer** - -[Chart](https://i.imgur.com/sheWIKV.png) - -""Nobody is the Leader"" is kind of cheesy, but I still feel like - -[Honk](#mischievous) - -is the leader, she's like the emotional glue for everyone, it feels like.";False;False;;;;1610399126;;1610399902.0;{};gixdcn3;False;t3_kvbyuf;False;False;t3_kvbyuf;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixdcn3/;1610452802;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610399148;;1610400877.0;{};gixde9t;False;t3_kv9id4;False;True;t1_gix8ybe;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/gixde9t/;1610452829;1;True;False;anime;t5_2qh22;;0;[]; -[];;;professorMaDLib;;;[];;;;text;t2_hgwvg;False;False;[];;"**Golden Kamuy**. It doesn't start off great but there's a point you reach where you realize that it's going to be one of the wildest rides you've ever been on, and once you're on the ride it gets better and better until it becomes one of the greatest adventures. - -There are series out there that specialize in Drama and do it really well, there are those that do comedy really well, same for mystery, etc. Meanwhile Golden Kamuy just decides what if I wanted to do all of them at once, and it blows those specialized series out of the water at their own genre whenever it wants to. And that's not even mentioning the manga, which has none of the weaknesses of the anime and starts off strong only to get better and better.";False;False;;;;1610399174;;False;{};gixdgbh;False;t3_kv823r;False;False;t3_kv823r;/r/anime/comments/kv823r/recommend_me_a_show_but_with_a_spin_d/gixdgbh/;1610452863;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Renn_Renn23;;;[];;;;text;t2_5316qeyo;False;False;[];;To each their own, I agree the second half of the manga wasnt as shockingly dark and was more standard drama type stuff, without going too heavily into spoils, but I still personally loved what he did with it, particularly the final scene on the beach.;False;False;;;;1610399180;;False;{};gixdgpw;False;t3_kv9wd2;False;True;t1_gixcfhs;/r/anime/comments/kv9wd2/aku_no_hana_the_creepiest_unsettling_depressing/gixdgpw/;1610452869;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FrumpY__;;ANI a-1milquiz;[];;https://anilist.co/user/FrumpY/;dark;text;t2_n5qjp;False;False;[];;"> A male appears! - -Ah yes, one of the rarest occurrences in the LL universe. This truly is a momentous occasion.";False;False;;;;1610399184;;False;{};gixdh28;True;t3_kvbyuf;False;False;t1_gixcr6j;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixdh28/;1610452876;12;True;False;anime;t5_2qh22;;0;[]; -[];;;badquestionsarereal;;MAL;[];;https://myanimelist.net/profile/Ihaveshittaste;dark;text;t2_12ifiz;False;False;[];;Gekidol is gonna be heavy slept on. First episode had some great directing choices and the premise and characters seem like they have a lot of potential.;False;False;;;;1610399248;;False;{};gixdm32;False;t3_kvbbi1;False;True;t3_kvbbi1;/r/anime/comments/kvbbi1/before_the_seasons_really_kicks_off_what_are_some/gixdm32/;1610452956;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SliderGamer55;;;[];;;;text;t2_xu233;False;False;[];;"It took close to 50 episodes for Jojo to go from a good to great anime for me, I'll just say that much. - -I mean that is a problem, but MHA has some of my favorite episodes of the genre, and somehow still hasn't become great for me anyway so...oh well.";False;False;;;;1610399249;;False;{};gixdm76;False;t3_kv6gpi;False;True;t1_giwfskc;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/gixdm76/;1610452958;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Royal_Heritage;;;[];;;;text;t2_8wglzuge;False;False;[];;"The title ""Dynamite"" made me think it was a D4DJ clip for a second. - -Still, not disapointed. Nyanpasu content should be the healthy daily dose for this sub prescribed by /u/DrNyanpasu";False;False;;;;1610399316;;False;{};gixdrdp;False;t3_kv9cd7;False;False;t3_kv9cd7;/r/anime/comments/kv9cd7/dynamite_non_non_biyori_episode_07/gixdrdp/;1610453043;5;False;False;anime;t5_2qh22;;0;[]; -[];;;chino-kafu;;;[];;;;text;t2_hgf2eos;False;False;[];;If they are going to do this please at least give it 24 episodes, it is shorter than games like Clannad and Little Busters but still needs atleast that to do a decent job at adapting it, and probably even more if they want to include the reflection blue stories as well.;False;False;;;;1610399331;;False;{};gixdsl3;False;t3_kvbzou;False;False;t3_kvbzou;/r/anime/comments/kvbzou/key_president_teases_plans_for_anime_of_summer/gixdsl3/;1610453062;10;False;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;"generic isekai, generic characters. they'd do better adapting another isekai from the 100000s of isekai manga available than giving it a s2. - -&#x200B; - -that being said i enjoyed it....";False;False;;;;1610399344;;False;{};gixdtme;False;t3_kvc3ys;False;False;t3_kvc3ys;/r/anime/comments/kvc3ys/thoughts_on_in_another_world_with_my_smartphone/gixdtme/;1610453078;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hanr10;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/hanr10;light;text;t2_v93hb;False;False;[];;We've never seen her but I'm pretty sure Oda confirmed that Luffy's mother is alive (but not whether she'll ever be included/relevant to the story of OP) and we know his dad, so he got both parents;False;False;;;;1610399364;;False;{};gixdv9s;False;t3_kv9pzr;False;False;t3_kv9pzr;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/gixdv9s/;1610453106;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;"**First-time watcher** - -In which I finally realize that ""PV"" does not stand for ""preview"". - -Promotional video episode? Natural to have happen but also it's been done. Also I hope it doesn't need saying, but recursive privacy invasions are not the friendly thing to do. - -The club is officially ""usually lazy but great when they actually start practicing"", huh. Familiarities continue. Also Honoka imouto exists but she seems rather... different. That was another body-shaming ""gag"", wasn't it? - -Finally the leadership question and Honoka being useless is officially brought up, and she's reasonable enough to acknowledge it and not mind being replaced. On the other hand, Nico might be pushing a little too hard and that kind of competition (particularly involving subterfuge) isn't a proper way of settling things either. Nor probably getting down to ""auras"" and stuff. - -I see, the solution is IDOL COMMUNISM. Bit of a cop-out but storytelling-wise it could be interesting... eh whatever they're shilling for Honoka again. Not going to make a choice because we've really not seen much of the members generally speaking (seriously, even seven is already more than this show can handle), but I'll say it again, all she's got is enthusiasm. Sorry, what was the point of this episode, now, besides another performance with zero lead-in? The SOL bits were very forgettable too. - -Right, two more members to add, hopefully soon. And a cliffhanger that probably won't have much of a cliff to its name.";False;False;;;;1610399370;;1610400576.0;{};gixdvnu;False;t3_kvbyuf;False;False;t3_kvbyuf;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixdvnu/;1610453113;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610399390;;1610400866.0;{};gixdxa4;False;t3_kvaxav;False;True;t3_kvaxav;/r/anime/comments/kvaxav/quintessential_quintuplets_is_massively_dragged/gixdxa4/;1610453139;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;True;[];;">honk";False;False;;;;1610399445;;False;{};gixe1hz;False;t3_kvbyuf;False;False;t1_gixdcn3;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixe1hz/;1610453210;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Simple404;;;[];;;;text;t2_3g23dgk1;False;False;[];;that seems to be the general consensus from what ive seen elsewhere lol;False;False;;;;1610399458;;False;{};gixe2gz;True;t3_kvc3ys;False;True;t1_gixdtme;/r/anime/comments/kvc3ys/thoughts_on_in_another_world_with_my_smartphone/gixe2gz/;1610453226;1;True;False;anime;t5_2qh22;;0;[]; -[];;;charleslol888;;;[];;;;text;t2_8n0k36az;False;False;[];;It was good but way too short i just watched it now;False;False;;;;1610399553;;False;{};gixe9zw;True;t3_kv9ki3;False;True;t1_gix8vb3;/r/anime/comments/kv9ki3/what_animes_are_like_a_silent_voice_that_i_can/gixe9zw/;1610453347;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610399607;moderator;False;{};gixee8c;False;t3_kvc9rv;False;True;t3_kvc9rv;/r/anime/comments/kvc9rv/the_price_of_bleach_blu_rays/gixee8c/;1610453419;1;False;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your submission has been removed. - -- This doesn't appear to be about [anime per our definition](https://www.reddit.com/r/anime/wiki/rules#wiki_everything_posted_here_must_be_anime_specific). - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610399608;moderator;False;{};gixeeat;False;t3_kvc7tf;False;True;t3_kvc7tf;/r/anime/comments/kvc7tf/how_is_it_possible_for_sites_like_4chan_danbooru/gixeeat/;1610453421;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Taedirk;;;[];;;;text;t2_420zf;False;False;[];;Because the hosting sites don't give a shit if nobody's actively monitoring and complaining about their content being posted. ^^^*butthatsillegal.jpg*;False;False;;;;1610399638;;False;{};gixegmh;False;t3_kvc7tf;False;True;t3_kvc7tf;/r/anime/comments/kvc7tf/how_is_it_possible_for_sites_like_4chan_danbooru/gixegmh/;1610453456;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;'legal', who cares, nothing can be done about it.;False;False;;;;1610399639;;False;{};gixegp3;False;t3_kvc7tf;False;True;t3_kvc7tf;/r/anime/comments/kvc7tf/how_is_it_possible_for_sites_like_4chan_danbooru/gixegp3/;1610453458;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610399667;moderator;False;{};gixeizg;False;t3_kvcai0;False;True;t3_kvcai0;/r/anime/comments/kvcai0/whats_the_best_free_anime_website_that_shows/gixeizg/;1610453495;1;False;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;"> Is that “something” boobs? - -Shhh, don't break the illusion. - -> Actually Nico, the Greek word from which we get the English word “anarchy” translates to “without a leader,” and there is a rich philosophical tradition there. So perhaps Honoka is just more high-brow than you expected, and is a student of Kropotkin, Nozick, Bakunin, Rothbard, or some other such thinker. Or maybe she’s just a naïve anime girl. - -Which of the two could it be, hmmmmm.";False;False;;;;1610399692;;False;{};gixekvg;False;t3_kvbyuf;False;False;t1_gixdce9;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixekvg/;1610453527;3;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;"> WHY DID YOU NOT USE THAT BEFORE?!? - -It's called a stylistic choice. Going for that guerilla journalism look.";False;False;;;;1610399698;;False;{};gixeldi;False;t3_kvbyuf;False;False;t1_gixcr6j;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixeldi/;1610453534;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kenalskii;;;[];;;;text;t2_19yhhygi;False;False;[];;"**REWATCHER** - -Time for a PV (sponsored by Nozomi and the student council) - -[And of course Kotori filming Honoka sleeping](https://i.imgur.com/rD1vmkR.png) - -[Maki being tsundere again](https://i.imgur.com/Ksyzfzr.png) - -[Apply cold water to the burned area](https://i.imgur.com/6Fnz5JV.png) This is by far my favourite moment from the first season in terms of comedy - -[Honoka proves her great character again](https://i.imgur.com/mkSmmOr.png) just by making sure everyone can have fun and no one gets left behind - -[And the others agree](https://i.imgur.com/jBzRSPr.png) - -A leader sometimes does not need to be elected openly. Sometimes a person has an aura that attract other people automatically. Honoka has that and she is making sure everyone can enjoy it - -Question One: I think µ's great quality is that everyone is treated equally. Everyone has their own uniqueness and they all shine with the same brightness. A fixed center simply doesn't fit for our group. - -Question Two: Started the rhythm game Bang Dream like a month ago. Good practice for your eyes, ears and hands - -Edit: Fixed links";False;False;;;;1610399764;;1610405461.0;{};gixeqhe;False;t3_kvbyuf;False;False;t3_kvbyuf;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixeqhe/;1610453617;3;True;False;anime;t5_2qh22;;0;[]; -[];;;theangryeditor;;;[];;;;text;t2_e370y;False;False;[];;"**Discussion Question** - -1. I will always support the Honk as Leader. Honk is Love, Honk is Live.";False;False;;;;1610399817;;False;{};gixeunr;False;t3_kvbyuf;False;False;t3_kvbyuf;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixeunr/;1610453686;8;True;False;anime;t5_2qh22;;0;[]; -[];;;raichudoggy;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/raichudoggy;light;text;t2_93aur;False;False;[];;"Yeah I saw someone else type that as a nickname and copied it - -[](#azusalaugh)";False;False;;;;1610399864;;False;{};gixeyb9;False;t3_kvbyuf;False;False;t1_gixe1hz;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixeyb9/;1610453746;5;True;False;anime;t5_2qh22;;0;[]; -[];;;theangryeditor;;;[];;;;text;t2_e370y;False;False;[];;Yes Honk;False;False;;;;1610399875;;False;{};gixez4o;False;t3_kvbyuf;False;True;t1_gixdcn3;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixez4o/;1610453759;3;True;False;anime;t5_2qh22;;0;[]; -[];;;_LoliLover;;;[];;;;text;t2_9pj076tp;False;False;[];;"> [Starting already with some Javelin fanservice?](https://imgur.com/hBkzOVl) Clearly the people in-charge knew what we want. ( ͡° ͜ʖ ͡°) - -This is my kind of show.";False;False;;;;1610399877;;1610401088.0;{};gixeza3;False;t3_kvadt9;False;False;t1_gix33e0;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gixeza3/;1610453763;14;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;"> I wonder what that picture inside of Kotori's bag could be? - -Porn. - ->I'm pretty sure this is the only physical contact between a school idol and a male in the entire LL! Series. - -Thank goodness! No one wants that.";False;False;;;;1610399889;;False;{};gixf076;False;t3_kvbyuf;False;False;t1_gixcvcw;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixf076/;1610453779;5;True;False;anime;t5_2qh22;;0;[]; -[];;;TheMightyKutKu;;;[];;;;text;t2_z03n2;False;False;[];;"Jaeger is the same as Jäger, the ä originally meant ae in german, and it's still an acceptable alternative spelling when you can't write ä (on say, keyboard or typewriter), same for ü->ue and ö->oe";False;False;;;;1610399894;;False;{};gixf0kk;False;t3_kv74lk;False;False;t1_gixby7u;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gixf0kk/;1610453785;17;True;False;anime;t5_2qh22;;0;[]; -[];;;TheMarkedGamer;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;eternal loner;dark;text;t2_55xq8z5u;False;False;[];;Sing yesterday to me.;False;False;;;;1610399900;;False;{};gixf13b;False;t3_kvc0mb;False;True;t3_kvc0mb;/r/anime/comments/kvc0mb/can_ppl_recommend_me_good_romance_animesmangas/gixf13b/;1610453794;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610399985;moderator;False;{};gixf7pg;False;t3_kvcerz;False;True;t3_kvcerz;/r/anime/comments/kvcerz/avoid_the_void_feeling_in_this_situation/gixf7pg/;1610453901;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Rooben17, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610399985;moderator;False;{};gixf7qw;False;t3_kvcerz;False;True;t3_kvcerz;/r/anime/comments/kvcerz/avoid_the_void_feeling_in_this_situation/gixf7qw/;1610453902;1;False;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;"Re: your spoiler (which does not really need a spoiler tag, imho). - -The critical assessment that writing comments for a rewatch produces works much better with shows that have depth. It is ideal for discussing philosophical topics (check out /u/punching_spaghetti's comment). It works a lot less for ""popcorn entertainment"", where you are wooh'd by the flow, but, when you think about it, it all turns to ash.";False;False;;;;1610400015;;False;{};gixfa4t;False;t3_kvbyuf;False;False;t1_gixcvcw;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixfa4t/;1610453942;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Medium_Adventure;;;[];;;;text;t2_6g4ae5zl;False;False;[];;"This sounds vaguely familiar to me as well. Could it be from ""Kyokai no Rinne""?";False;False;;;;1610400047;;False;{};gixfclz;False;t3_kv79ig;False;False;t3_kv79ig;/r/anime/comments/kv79ig/please_help_me_remember_the_title_of_this_anime/gixfclz/;1610453983;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Verzwei;;;[];;;;text;t2_cmzqb;False;False;[];;"Not quite the same, but there's a fairly strong argument to be made that the main girl of Pet Girl of Sakurasou has autism spectrum disorder of some kind, even though I don't think the series comes right out and says it. And I'm not saying this in some kind of memey internet pejorative way - she demonstrates a lot of traits and quirks that are associated with the condition. - -* She is _incredibly_ socially awkward. -* She has almost zero sense of self-awareness (She routinely has to be dressed by others because she doesn't see the point in dressing herself.) -* She's _incredibly_ talented in very niche and detailed hobbies (drawing and painting) but struggles with many basic tasks. -* She demonstrates remarkable, sometimes dangerous inattentiveness regarding anything that falls outside of her area of expertise. (Leaving showers running, etc.) -* She repeats herself a lot, seemingly because she can't properly elaborate on a point. (""I drew pictures."" ""I drew pictures."" ""I drew pictures."") -* She cannot express herself when confronted with new feelings, which frustrates her and causes her to use word salad in an attempt to explain herself. [Pet Girl mid-series spoiler example](/s ""As it's becoming clear that she's getting romantically attracted to the main character, she can't process the emotion. She thinks about him constantly, gets sad when he gets sad, and she can't understand why, prompting her to angrily say something like 'I need you out from inside of me' because she's confused by her emotional attachment and preoccupation with him."")";False;False;;;;1610400170;;False;{};gixfm86;False;t3_kv5xaf;False;True;t3_kv5xaf;/r/anime/comments/kv5xaf/recommendations_for_animemanga_pls/gixfm86/;1610454140;2;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;Paging stabilizer_bot right now.;False;False;;;;1610400198;;False;{};gixfohw;False;t3_kvbyuf;False;True;t1_gixeldi;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixfohw/;1610454177;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mr_Pogi_In_Space;;;[];;;;text;t2_2kimiqsr;False;False;[];;That title drop at the very start triggered my PTSD of leaving my phone's volume at max while launching the game.;False;False;;;;1610400201;;False;{};gixforu;False;t3_kvadt9;False;False;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gixforu/;1610454183;44;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;"Now I want someone to make a parody poster of the recent film Mank, but as Honk. - -[](#mugiwait)";False;False;;;;1610400204;;False;{};gixfozi;False;t3_kvbyuf;False;False;t1_gixeunr;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixfozi/;1610454187;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;"I liked how they dealt with the MCs powers. Thought that was actually rather interesting. The harem is directly addressed instead of just be an awkward love triangle type thing - -It was pretty generic outside of that though. I'd watch another season if they made it - -EDIT:Also thought the MC was pretty likeable even though he's not that interesting. He's not entirely afraid of women either";False;False;;;;1610400317;;1610400727.0;{};gixfxzf;False;t3_kvc3ys;False;True;t3_kvc3ys;/r/anime/comments/kvc3ys/thoughts_on_in_another_world_with_my_smartphone/gixfxzf/;1610454338;1;True;False;anime;t5_2qh22;;0;[]; -[];;;theangryeditor;;;[];;;;text;t2_e370y;False;False;[];;"[](#mugiwait ""I should have a bunch of old Honk edits saved somewhere"")";False;False;;;;1610400392;;False;{};gixg3vo;False;t3_kvbyuf;False;False;t1_gixfozi;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixg3vo/;1610454434;5;True;False;anime;t5_2qh22;;0;[]; -[];;;FlanThief;;;[];;;;text;t2_7grbjsa;False;False;[];;Yeah, Key anime have seriously gone down hill because their run time was limited to 13 episodes. Also if their projects could include expansions on Angel Beats since the novel seems to have DIED that'd be great. I'm tired of these half baked shows like Charlotte and Kamisama Ni Nata Hi. THEY NEED MORE TIME!!;False;False;;;;1610400530;;False;{};gixgem7;False;t3_kvbzou;False;False;t1_gixdsl3;/r/anime/comments/kvbzou/key_president_teases_plans_for_anime_of_summer/gixgem7/;1610454615;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ZomZike;;;[];;;;text;t2_9mfxiz8t;False;False;[];;"Now hire Maeda as the anime writer & PA works again so you can get another mediocre anime streak lol";False;False;;;;1610400616;;False;{};gixglbu;False;t3_kvbzou;False;True;t3_kvbzou;/r/anime/comments/kvbzou/key_president_teases_plans_for_anime_of_summer/gixglbu/;1610454728;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;problematicgooner;;;[];;;;text;t2_4evxjt3q;False;False;[];;"I'd say SK8. -I wasn't too sure going into it, but Bones is producing it and the director is the same as Banana Fish. -Really liked the first episode and for an original, the animation and art quality was top notch. -Let's see if the story quality keeps up with the animation.";False;False;;;;1610400630;;False;{};gixgmes;False;t3_kvbbi1;False;True;t3_kvbbi1;/r/anime/comments/kvbbi1/before_the_seasons_really_kicks_off_what_are_some/gixgmes/;1610454746;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610400730;;False;{};gixgu1b;False;t3_kvadt9;False;True;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gixgu1b/;1610454874;0;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your submission has been removed. - -- Shitposts, memes, image macros, reaction images, ""fixed"" posts, and rage comics are not allowed. - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610400778;moderator;False;{};gixgxrn;False;t3_kvckwr;False;True;t3_kvckwr;/r/anime/comments/kvckwr/cells_at_work_except_its_red_blood_cell_screaming/gixgxrn/;1610454941;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ariacactus;;;[];;;;text;t2_5t3tp9dv;False;False;[];;that is sick!! :);False;False;;;;1610400785;;False;{};gixgybe;False;t3_kv74lk;False;True;t3_kv74lk;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gixgybe/;1610454951;1;True;False;anime;t5_2qh22;;0;[]; -[];;;monotoniia;;;[];;;;text;t2_4i2gushw;False;False;[];;yes i watched shippuden but haven’t started boruto :);False;False;;;;1610400989;;False;{};gixhe5p;True;t3_kv6lm2;False;True;t1_giwfw3c;/r/anime/comments/kv6lm2/very_new_to_anime/gixhe5p/;1610455232;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ParamountPotato;;;[];;;;text;t2_eua9zhw;False;False;[];;Even though I 100% agree that Kill la Kill is quite an ecchi show and can be enjoyed for solely that if it's something you like, BUT it is also so much more. What I mean is, I have watched KLK, and it's not really the ecchiness I remember, but rather the awesome action. :D;False;False;;;;1610401033;;False;{};gixhhjd;False;t3_kv6m47;False;True;t1_giwfnrf;/r/anime/comments/kv6m47/anything_similar_to_highschool_dxd_thats_any_good/gixhhjd/;1610455290;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZBLongladder;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/zblongladder;dark;text;t2_6tmso;False;False;[];;"> Should have mentioned it last episode, but Best Girl is the only one who wears a hat during practice. - -She;s also the only one who wears boots with her practice outfit, which I've always found a really nice choice.";False;False;;;;1610401294;;False;{};gixi1vq;False;t3_kvbyuf;False;False;t1_gixdce9;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixi1vq/;1610455647;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Frostbite2806;;;[];;;;text;t2_13evjt;False;False;[];;Oh boy, Golden Kamuy. I recently caught up with the manga and holy shit what a ride. The way it jumps between genres is executed flawlessly and creates the most unexpected situations.;False;False;;;;1610401305;;False;{};gixi2rb;False;t3_kv823r;False;True;t1_gixdgbh;/r/anime/comments/kv823r/recommend_me_a_show_but_with_a_spin_d/gixi2rb/;1610455661;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ForlornPenguin;;;[];;;;text;t2_sn7bu;False;False;[];;"Yes, ""Honk"" (and I think also ""Honkers"") is used for her quite often. I don't know why that nickname started, but I find it amusing.";False;False;;;;1610401573;;False;{};gixiney;False;t3_kvbyuf;False;False;t1_gixeyb9;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixiney/;1610456016;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ComfortablyRotten;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Leuwtian;light;text;t2_78zrok5y;False;False;[];;"**Rewatcher** - -Nico with her hair down is truly a sight to behold... - -The first question is pretty much my thoughts, so yeah, might as well skip the paragraph - -**Question of the day** - -1) I think it's a good but ultimately pointless idea. Even after all these talks of ""Everyone is a Leader!"", it's hard to not see Honoka as the real one. She might lack common sense, but she's the heart of the group, the only one with the ambition, the initiative, and the precise goal. Umi and Maki were the least interested, Kotori and Rin went along with their friends, and Nico and Hanayo simply wanted to be idols for its own sake. - -2) I suck at rhythm games, but SIFAS of course. I used to play Crypt of the Necrodancer a lot, if that counts.";False;False;;;;1610401626;;False;{};gixirlt;False;t3_kvbyuf;False;False;t3_kvbyuf;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixirlt/;1610456088;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi knittler3, your post has been removed because your title is below our minimum length requirement of 4 words. Feel free to repost with a more descriptive title. - -If you're looking to get a quick question answered, like asking for [recommendations](https://www.reddit.com/r/anime/wiki/recommendations), [the source of a picture](https://www.reddit.com/r/anime/wiki/reverse_image_searching), a [watch order](https://www.reddit.com/r/anime/wiki/watch_order) or any other [general question](https://www.reddit.com/r/anime/wiki/faaq), please check our sidebar too, it might help you faster. - -[**Thank you!**](#blushubot) - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610401863;moderator;False;{};gixj9tq;False;t3_kvd2m7;False;True;t3_kvd2m7;/r/anime/comments/kvd2m7/_/gixj9tq/;1610456402;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610402002;moderator;False;{};gixjkmf;False;t3_kvd4aj;False;True;t3_kvd4aj;/r/anime/comments/kvd4aj/what_anime_game_should_i_buy_on_my_ps4/gixjkmf/;1610456594;1;False;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your submission has been removed. - -- This doesn't appear to be about [anime per our definition](https://www.reddit.com/r/anime/wiki/rules#wiki_everything_posted_here_must_be_anime_specific). - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610402110;moderator;False;{};gixjsrs;False;t3_kvd4aj;False;True;t3_kvd4aj;/r/anime/comments/kvd4aj/what_anime_game_should_i_buy_on_my_ps4/gixjsrs/;1610456740;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThirtyThree111;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Thirty-three;light;text;t2_72yjoip0;False;False;[];;"**Rewatcher** - -I'm kinda glad that the show itself isn't treating Nico seriously. The characters are [basically](https://i.imgur.com/0CVCIdk.png) [ignoring](https://i.imgur.com/8iT2g57.png) her. She's kinda like the meme girl that you're supposed to laugh at and that's really what made me able to bear her. - -[High quality Kotori](https://i.imgur.com/rE7PQrw.png) - -^[bread](https://i.imgur.com/Qk9bRXq.png) ^[monster](https://i.imgur.com/VPp2gWA.png) - -[Nico, That's harassment!](https://i.imgur.com/CRFtgQJ.png) - -""What makes a leader? First, she's gotta be more passionate than anyone and capable of motivating everyone! Next, she's gotta be compassionate and capable of lifting everyone's spirits! And above all else, she's gotta be someone whom every member respects!"" - -Yeah this kinda sounds like Honoka. And so Honoka officially became the unofficial leader of μ's. That's interesting. - -And there's a new song with a music video along it. I've actually been wondering who programs the music for their songs? Maki writes the songs in piano but we don't see the process of turning that song into the full version with all the other instruments and shit. I'm guessing it must also be Maki since she's the musically literate one. Programming the whole thing is a *whole lottta* work though. That's extremely impressive for a high schooler. I guess that's why they just choose to leave that part out and leave it to your imagination. - -> What do you think about μ's decision for the leader/ center position? Was this a good decision? Who do you prefer as center? ""Who will be the center?"" - -Well Honoka is my favorite so she's definitely the one but honestly the 'compromise' that they made where everyone gets time in the spotlight was a pretty good idea. Different songs/parts can have different leads and that's pretty cool.";False;False;;;;1610402112;;False;{};gixjszm;False;t3_kvbyuf;False;False;t3_kvbyuf;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixjszm/;1610456743;4;True;False;anime;t5_2qh22;;0;[]; -[];;;amhpanther;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/amhpanther;light;text;t2_i19ga;False;False;[];;"honks too stronks - -[](#mugistronk) - ->or a rhythm/ dancing game you like to play? - -Well coincidentally enough the only rhythm game where the layout has ever actually clicked with me is School Idol Festival.";False;False;;;;1610402309;;False;{};gixk81n;False;t3_kvbyuf;False;False;t3_kvbyuf;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixk81n/;1610457012;6;True;False;anime;t5_2qh22;;0;[]; -[];;;PlaybaiCarti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_1aon6ve3;False;False;[];;I've been waiting for this. Need one for Harmonia too;False;False;;;;1610402331;;False;{};gixk9q9;False;t3_kvbzou;False;True;t3_kvbzou;/r/anime/comments/kvbzou/key_president_teases_plans_for_anime_of_summer/gixk9q9/;1610457044;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ForlornPenguin;;;[];;;;text;t2_sn7bu;False;False;[];;"**Rewatcher** - -Not much for me to say about this one. An alright slice of life episode with some fun Nico antics. Hair-down Nico was great of course and it's nice to finally see them do another song, even if I don't think it was particularly great. - -QOTD - -1. I don't pay any attention to real-life idol groups (I don't even pay any attention to Love Live! itself, outside of the anime), so I can't really say for sure. Honoka certainly seems like a good fit, but we're clearly made to think that way anyway. You could say Nico could work as well, since she really knows her stuff. I suppose the same is true of Hanayo, but she's still too timid and inexperienced at this stage to be a competent center, I'd think. Umi does have the leadership skills for it, but she kind of lacks that center vibe to me. - -2. I don't do karaoke or play rhythm games. *Hatsune Miku: Project DIVA Future Tone* is the only rhythm game I ever really played much of. And while I did enjoy it, I was never all that great at it and eventually stopped because it'd hurt my hands after a while. Actually while I'm typing this, I remember that I also played a bit of *Persona 4: Dancing All Night* but, while the music was great, I thought the game itself was pretty weak.";False;False;;;;1610402335;;1610416810.0;{};gixk9z3;False;t3_kvbyuf;False;False;t3_kvbyuf;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixk9z3/;1610457049;4;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;She's just the best!;False;False;;;;1610402439;;False;{};gixkhzl;False;t3_kvbyuf;False;True;t1_gixi1vq;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixkhzl/;1610457205;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610402443;;1610403102.0;{};gixki9c;False;t3_kv89sq;False;True;t3_kv89sq;/r/anime/comments/kv89sq/why_these_dubs_are_favorites_of_many/gixki9c/;1610457210;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shadow_Gabriel;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/shadovv_gb;light;text;t2_gerjp;False;False;[];;Because it's not focused on the combat but on the life at the HQ. The pillow fight was better directed than most of the battles from the first show.;False;False;;;;1610402465;;False;{};gixkjxd;False;t3_kvadt9;False;False;t1_gix8o9d;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gixkjxd/;1610457240;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;"**to your other first-timer, subbed** - -- Yuu’s mom being *completely* plastered is… definitely a sight for the rest of the kids. I’m about as weirded out as they are by this. - -- Karasu basically just went “fuck this shit I’m out” and *vanished* as soon as Ai started hounding him, lol. - -- Oh, no, he just [\*teleports behind you\*](https://i.imgur.com/KBuSw1E.png) at Miho. Which is even more funny. [](#azusalaugh) - -- Okay the looks on Karasu’s face when he saw Isami messing with Yuu and then just when they’re all talking… that’s pretty oof. I’m sure he’s remembering better times and it’s painful for him. - -- Oh no Atori’s planning stuff… - -- Tobi *tried* to stop him, but Atori isn’t giving up. [](#watashiworried) - -- [So that’s *actual* confirmation Fukuro is La’cryma!Isami](https://i.imgur.com/6qdzbM3.png), not that that’s really a surprise. Still, [](#panic) - -- Oh Fukuro saved his present self. Nice. - -- …wait a second [are *these guys* the present versions of the suspicious council from La’cryma](https://i.imgur.com/Yjbtk09.png) - -- [This means that the dimension we’ve been in for the most part is, like, the *main* one that others branch off of, right?](https://i.imgur.com/Dhmq19q.png) If it was a random dimension I doubt that it collapsing would lead to *everything else* collapsing too. Makes sense that it’s the one we’ve been following for most of the show if true… and that if La’cryma actually is straight-up the future instead of a parallel dimension, *it* collapsing because of Shangri-la or whatever is actually a super big deal too. - -- [Haruka’s mom wants grandkids.](#rinkek) - -- [I *really* want to know what it is about this guy in particular that means he keeps losing body parts already.](https://i.imgur.com/7A0CEAE.png) Wasn’t expecting it to be a full-on chunk of his head this time though, just an eye… - -- [Cliffhanger…](#frustration)";False;False;;;;1610402514;;False;{};gixknsk;False;t3_kvdado;False;False;t3_kvdado;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixknsk/;1610457313;11;True;False;anime;t5_2qh22;;0;[]; -[];;;baniRien;;;[];;;;text;t2_wxbyg;False;False;[];;"**Rewatcher/Co-host** - ---- - -- Nothing better to start the arc than a profession of love. Also, naked Showeragi, for those into that. - -- All those clothes strewn about the room as he's preparing for the date. I think it's the only time we see him care about his image. - -- New OP, Dreamy Date Drive. Best Senjougahara OP, though of course it doesn't have the meme factor of Kogarashi Sentiment, which it does sound like in some parts. Visuals wise, nothing groundbreaking, but we do get a lot of cute Senjougahara moments. - -- So, they're going on a full-day date, but not the evening, as Senjougahara still has that Electra Complex. - -- Ononoki is clearly reading [a manga magazine](https://imgur.com/a/5cHnjXB) of some kind, but not one I recognise. - -- [Sleeping Shinobu](https://imgur.com/a/WHSb04N) - -- Whatever Ononoki is reading, it's [shoujo](https://imgur.com/a/Q9uZ1e6). I feel like I know the character. - -- Andy! - -- [This one](https://imgur.com/a/3mEusme) is Ashita no Joe. - -- First we see of one of his sisters' boyfriends being mentioned in his presence. And poor guy is getting rejected. - -- Einstein's birthday is March 14. - -- A great new outfit from Senjougahara. - -- Punaragi spouting out Senjougahara variations. - -- The [red stamp](https://imgur.com/a/eRT8mdg) uses the Koyomi kanji, not sure if there's an extra joke. - -- ""This is a pen"" was used in some of the commentaries, wasn't it? I know it's just the standard generic English sentence. Possibly in the one with Senjougahara and Sodachi, not sure if it was also in one of the ones with Hanekawa. - -- Of course Senjougahara is studying astrophysics (all the more reasons for her to be best girl), as we've known since the first arc that she has an interest in the stars. - -- [Ougi](https://imgur.com/a/3YuWw2S) - ---- - -We're going on a date. Diabetics beware. Of course, nothing bad could ever happen, and Ougi won't interfere.";False;False;;;;1610402517;;False;{};gixknzy;False;t3_kvd9qu;False;False;t3_kvd9qu;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixknzy/;1610457316;10;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;"**Episode 10 (rewatcher)** - -* Having to show up at the regular meeting is an extreme surprise - *office worker dreams.* -* “I wonder what came over her” – You’ll get acquainted with that magical substance soon enough. -* Ghost – you played right into this Yuu&Haruka. -* “I’ll believe you” – 10 seconds later – “How do you expect me to believe that!” - -[](#azusalaugh) - -* Nostalgia for Karasu. -* Playtime is over, Atori is ready to get the main plot rolling again. -* Council is meeting in a normal room, no SEELE this time. They also show a good amount of disrespect towards possible dangers of developing a quantum teleporter. -* *People actively communicating and not keeping critical information to themselves* - am I still watching anime? -* This dimension seems to have personal beef with Kuina. Soon not much of him will be left. -* Action ending. - -In a lesser series, the first 10 minutes of this episode would not exist. Yuu and Haruka would either, impossibly, keep Karasu a secret, or the friends would be informed off-screen. However, spending those 10 minutes of introducing everybody, of proving Karasu’s origin, make the characters more real. Noein does not simply gloss over it. It is these parts that keep me from complaining too much about the occasional time travel plotholes.";False;False;;;;1610402524;;False;{};gixkohv;False;t3_kvdado;False;False;t3_kvdado;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixkohv/;1610457327;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;True;[];;">Honk is Love, Honk is Live. - -Really, Editor? -[](#angrypout)";False;False;;;;1610402539;;False;{};gixkpnx;False;t3_kvbyuf;False;False;t1_gixeunr;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixkpnx/;1610457348;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;True;[];;"###First Timer -I'm just hoping we go in a different direction than the previous episode. Onto episode 10. - -I wonder if she [works](https://i.imgur.com/kIpCpOv.png) for the same group that became the mysterious council in the future? - -I am not a fan of sudden [personality flips](https://i.imgur.com/ZGeM62O.png). That's just not how humans work. I can't even really attribute this one to her being drunk. - -World's [most unconvincing lie](https://i.imgur.com/jF4HB5j.png), round two. - -Never could've seen [this one coming](https://i.imgur.com/WDSWA3o.png). -Also, cute cat. - -And we're right back to [broken clock's right twice a day](https://i.imgur.com/zfLRMAD.png). - -Karasu really does take every opportunity to be edgy. - -I somehow [doubt](https://i.imgur.com/Y0I8G76.png) this. - -Time for Haruka to [rescue Yuu](https://i.imgur.com/8ExdISo.png), I guess. - -Atari shaded pink is a cool cut. - -Tobi [joins](https://i.imgur.com/1AbhU0K.png) the ""can't kill random kids"" camp. - -If it's [impossible to predict](https://i.imgur.com/xOa1mMA.png), what you do once you're here doesn't matter, right? After all, even the slightest change could lead to soemthing completely different. - -[Put him down](https://i.imgur.com/c23ReO6.png) like the dog he is, please. Atori's far outlived being an interesting character. - -This [sounds like](https://i.imgur.com/u4AIW4g.png) how the other dimension got fucked over. - -You can [end it](https://i.imgur.com/r60u5Hp.png) though, if you're willing to help one of them. - -I [wonder](https://i.imgur.com/cRxOQAR.png) if she could fall through the floor if she wanted to? - -I'm still [not ruling out](https://i.imgur.com/Sa24Dcz.png) that Haruka's the cause, but I'm certain she's not the cause in the way you're thinking. They were already deeply fractured, Haruka was just something for them to fight over. - -####Thoughts -I'm still struggling on how to think of this show. Haruka's powers are lacking a common theme beyond doing what Haruka wants, and the two plots manage to intersect yet not be connected. At least the Yuu's mom plotline should be behind us though, I hope she gets minimal time for the rest of the show so I don't have to think about it. -I don't think I've ever struggled so much to understand a show when I know in broad strokes what's it's going to do. I guess it just feels somewhat all over the place to me, like they weren't quite sure what was the best approach to tell their story, so the ended up trying a hybrid of their different ideas.";False;False;;;;1610402559;;False;{};gixkr4v;False;t3_kvdado;False;False;t3_kvdado;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixkr4v/;1610457374;7;True;False;anime;t5_2qh22;;0;[]; -[];;;baniRien;;;[];;;;text;t2_wxbyg;False;False;[];;"###Edit Trivia Box - -For Ononoki's manga, there's two jokes, both identified somewhere in the thread linked below. The first is the name of the magazine, Agajiso, which to my shame also had me confused, that ""so"" katakana. Agajiso is a apparently common play-on-word of Magazine, relying on the resemblance of the katakanas for ""ma"" and ""a"" マ ア and the katakanas for ""n"" and ""so"" ン ソ. (For those practicing their kanas, also pay close attention to tsu and shi ツ シ) - -The second joke is the exact manga reference, which is most definitely the [Pretty Boy Detective Club manga](https://img.mghubcdn.com/file/imghub/bishounen-tanteidan/1/56.jpg), an adaptation of the LN by NisiOisiN that is getting an anime this year.";False;False;;;;1610402565;;1610412298.0;{};gixkrlt;False;t3_kvd9qu;False;False;t1_gixknzy;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixkrlt/;1610457383;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"First timer - -Sub - -So we are with the researchers again. Uchida gets recalled for suspicious reasons and off we go. - -Asuka and Miyuki have kept drinking. Dear Cthulhu, tomorrow is going to be the hell that leads to all the others for them. They debate which guy liked whom, ending with Asuka remembering the confession. The gang comes in and are greeted by drunken mothers...oh boy, Fujiwara is about to become a hentai protagonist, isn't he? I hope this is one of his fetishes. - -Anyways, they go to Haruka's room and questions are rightly asked. Ai has a better sense motive check than Asuka and is concerned. Anyways, Miho goes back to ghosts, her true love. As everyone attempts to avoid cringing to death, Ai wants to know what's up. And then, correctly, does not believe the insane truth Haruka just dropped. - -Ai storms in and now we know Karasu is visible to all. Ai also comments on his stupid coat/cloak thing, so points to her. But Karasu responds by teleporting, by far the most reasonable thing he has done yet. Baron does not have any fucks to give. Miyuki and Asuka have finished two bottles of red and a bottle of sake, damn. Miyuki wants the kids looked after and Asuka actually states they can look after themselves, which we have technically seen her act like this it is actually good to reinforce this is a choice rather than neglect. Karasu is being effected by the memories come to life in front of him. - -Atori and Tobi stuff, apparently they are acclimating to this dimension but will still disappear. Atori's plan is to attack Yuu because sure. Fujiwara and Yuu talk and indeed we are indeed handwaving away the family issues, others have expressed my feelings better. Atori bamfs in with his ""Here's Johnny"" line. Tobi intervenes and they run, the thing that is both correct and what Karasu was whining about yesterday. Unfortunately, Atori is apparently more powerful and catches the kids at the church. As he gets ready to kill Fujiwata. Fukuro shows up with lightning bolts. It is super effective. - -We get...another bureaucratic meeting. I would say Witchblade ruined this for me but they sucked the whole time. We do get what will cause the eventual catastrophe and someone I want to see punched. - -Haruka and Asuka see the incoming storm and there is zero percent a chance that Asuka didn't sleep for 6 hours at noon. Quick cut to Tobi explaining his change of heart, which mostly makes sense. Return to Asuka making it clear she is ready for Haruka's adulthood. - -Atori and Karasu pt 3 comes. ""The weathers great"" is totally Atori's ""It's a beautiful night"" line. Again, the combat is interesting and creative. Then they stop time again. I am beginning to wonder if the world ourobouros is separate from Haruka's. Kuina can't catch a break, I really do think his grandfather died in a different dimension and this one hates him. Fukura ports in to take Haruka, who uses the DT to identify him as Fujiwara. Karasu exhausts Atori and ports in to protect Haruka. Karasu fangirl whines at Haruka, the cat hates her so we know she is evil. Edgy rooftop staring and cliffhanger.";False;False;;;;1610402597;;False;{};gixkty2;False;t3_kvdado;False;False;t3_kvdado;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixkty2/;1610457431;6;True;False;anime;t5_2qh22;;0;[]; -[];;;billclinton7;;;[];;;;text;t2_11v1ax;False;False;[];;"Watch Prison school -And interspecies reviewers";False;False;;;;1610402619;;False;{};gixkvmr;False;t3_kvdaqe;False;True;t3_kvdaqe;/r/anime/comments/kvdaqe/idk_what_anime_to_watch/gixkvmr/;1610457461;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Luukuton;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;Hatchless;light;text;t2_kjwpo;False;False;[];;"## REWATCHER - -### EPISODE - -A new great OP, _dreamy date drive_, filled with Senjougahara. Also new ED visuals! - -I love it how naturally [Ononoki](https://i.imgur.com/UU53gak.jpeg) assumes that she's going with them too. - -She joked that is there something stuck (tsuku / 付く) on her face, _as she's a **tsuku**mogami_ (付喪神). - -lmao, what could have Araragi been doing with [a life-sized doll](https://i.imgur.com/2wyvlcq.png) laying on his bed. - -[The legendary recording room](https://i.imgur.com/r5MmfYH.png) for commentaries. - -[Candle](https://i.imgur.com/Al9yrOn.png) (rousoku / 蝋燭) going out when Rousokuzawa (蝋燭沢 / candle + swamp) got rejected for the date. Genious. - -March 14, the White Day or Einstein's birthday. - -Stitches of Senjougahara: - -- [Hanekawa-style outfit](https://i.imgur.com/w2ykYjq.jpg) (even with the chocolate!) - -- [Drivergahara Hitagi](https://i.imgur.com/5muxZuf.jpg) - -- [Driving](https://i.imgur.com/tVy6XTV.png) - -**Hanekawa during the commentary of Bake EP12: _""Let's see... If it were me, if I were to go on a date, I think I might go to a planetarium.""_** - -SHE FOUND THE PLACE WHERE OSHINO WAS HIDING! So, two possible locations where he is. - -> This is a pen. - -[Inou Tadataka](https://en.wikipedia.org/wiki/In%C5%8D_Tadataka) is known for completing the first map of Japan using modern surveying techniques. - -[Ougi](https://i.imgur.com/TLJhwJE.png) (扇) means ""folding fan"". Also, [that's creepy](https://i.imgur.com/ZfnPGBv.png). - -Some [great faces](https://imgur.com/a/ADFt9r9). - -OST: - -- [""Destination""](https://www.youtube.com/watch?v=9TTduB2xrGw) during the scene with Ononoki. Feels a little like it'd from Tsukimonogatari - -- [""Peaky""](https://www.youtube.com/watch?v=eRExuWtbpmY) during the scene with Tsukihi scene - -- [""Drivergahara Hitagi""](https://www.youtube.com/watch?v=8lIL-byB55c) - - -### COMMENTARY / SUPPLEMENT AUDIO - -**Guide on getting subtitles and the audio for commentaries [here on /r/araragi](https://np.reddit.com/r/araragi/comments/i2balw/monogatari_series_audio_commentaries_masterpost/)** - -Hosts: Ononoki Yotsugi and Oshino Shinobu (full power). - -Clip of the beginning [here](https://streamable.com/2f7yc5). - -Ononoki calls Araragi passive because she hasn't asked Senjougahara out, he's always letting her to invite him: - -> Shinobu: _Just because it wasn't animated, doesn't mean he didn't ask her out._ - -> Ononoki: _Well, even if all of Devilish Big Brother's dates were animated, it'd be difficult to react to them, and we can't possibly explain all the dates in the commentary tracks either._ - -[""Shut up""](https://streamable.com/07815m) - -When you think about it, Shinobu wasn't present during the first date in Bakemonogatari nor during this. - -Karen uses Ononoki as a guinea pig for her pro wrestling techniques. - -> Ononoki: _Come to think of it, Senjougahara Hitagi also had a drive date with Big Brother Kaiki back in Koimonogatari, right? Perhaps she did this drive while thinking of that one._ - -> Shinobu: _There was no drive date back then. It only happened in the opening theme footage. It only happened in Kogarashi Sentiment._ - -> Ononoki: _Really? It wasn't based on the truth?This wasn't a date based on \Nher memory of an old boyfriend?_ - -> Shinobu: _It wasn't an old boyfriend in the first place._";False;False;;;;1610402621;;False;{};gixkvs0;False;t3_kvd9qu;False;False;t3_kvd9qu;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixkvs0/;1610457463;14;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;"**First-Timer** - -How do we show that she’s really drunk? I don’t know, give her two wine glasses. - -Ghost Girl carries seals with her? I wouldn’t mind a Dennou Coil crossover to liven things up. - -My Friend Had a Scary Emo Guy in Her Closet Who Tried to Kidnap Her, but Now We’re Friends with Him Because He Showed Us a Globe. - -So the calamity that happens and causes Karasu et al.’s world is them trying this quantum info transmission thing too early and screwing everything up? - -Not much to say about this episode. More standard stuff. - -QOTD: - -1) I'm assuming ""X bad thing would not have happened."" - -2) I don't know Fate. I really don't want any of them. Nobody seems good at their job.";False;False;;;;1610402637;;False;{};gixkx1c;False;t3_kvdado;False;False;t3_kvdado;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixkx1c/;1610457486;7;True;False;anime;t5_2qh22;;0;[]; -[];;;zsmg;;;[];;;;text;t2_ivuw5;False;False;[];;"**Rewatcher** - -Drunk mothers are funny. - -> Of course I'll believe you you're my best friend. - -Narrator's voice: she didn't believe her best friend. - -Well at least Karasu can use his impressive powers as party tricks to earn a bit of buck. - -I'm glad they revealed Karasu to their friends instead of trying to keep it a secret, although it looks like the identity of Karasu is definitely secret. - -Atori calls the soccer kid Fukuro and Haruka uses her powers to see that Fukuro is the soccer kid so it's now officially confirmed that the one eyed dragon soldier is the soccer kid. One my favourite first timers' theories I've read so far is that Atori is the soccer kid, well that's proven wrong now. - -Tobi switches sides... again. - -Solid episode, we're moving at a nice pace.";False;False;;;;1610402651;;False;{};gixky21;False;t3_kvdado;False;False;t3_kvdado;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixky21/;1610457506;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;True;[];;">People actively communicating and not keeping critical information to themselves - am I still watching anime? - -Don't worry, the people with important information are still managing to hide it.";False;False;;;;1610402667;;False;{};gixkz8z;False;t3_kvdado;False;False;t1_gixkohv;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixkz8z/;1610457527;7;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;"> This means that the dimension we’ve been in for the most part is, like, the main one that others branch off of, right? - -That's what they've said before, in their heavy technobabbly way.";False;False;;;;1610402680;;False;{};gixl09h;False;t3_kvdado;False;False;t1_gixknsk;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixl09h/;1610457546;5;True;False;anime;t5_2qh22;;0;[]; -[];;;JustAnswerAQuestion;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JAaQ/;light;text;t2_66xzcvc;False;False;[];;"**First Timer** - - -* I expected phone-kun to tell ba-san to take Haruka into custody immediately because plot -* Haruka sure has a huge house -* Maybe Haruka brought the WRONG Miyuki back....^(the nice one) -* I expected him to drop through the floor like a ghost -* Atori probably can't compete with somebody still connected up with the machine -* So Fujiwara is definitely Fukuro...although I stil don't know the birds by name -* ""Pre-arranged?"" -* Note to self: check Shinsen Subs for ""a peculiar place-site"" -* So this entire problem, which happens in infinite realities, is a ~~quantum teleportation~~ ~~resonance cascade experiment~~ DOOM PREQUEL -* Storm? Is it Walpurgis Night? -* ah so ~~this is the episode where Atori attacks the house~~ that expected to happen yesterday -* Nobody can spend more than 10 minutes with our Haruka without thinking of their Haruka. -* No, it all started when YOU showed up, lady! - -Okay, so, I got it. Tall, cloaked, female: lady bird is Lily's mom, Miho. - - -sounds like tokui na ba ga hasu? Shinsen calls it a ""special 'field'"" 場 prounounced 'ba' means field. Cerberus subs are terrible, but Shinsen might be off, too. Tokui na ba would be a special field like they say. But so would singular field. Well, Google says that would be tokui-ba. And singularity would be tokuiten, and they shortened it while making up their jargon? Oh, but that is the first character of basho 場所. I dunno. - -Unfun fact: US Renditions translated tokuiten as ""differentiated ideoblast"" in Super Dimension Century Orguss. In a show with space-time bombs, everybody is running around looking for plant cells instead of singularities. [](#kyonfacepalm)";False;False;;;;1610402682;;False;{};gixl0cw;False;t3_kvdado;False;False;t3_kvdado;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixl0cw/;1610457547;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Pixelsaber;;;[];;;;text;t2_ofuxw;False;False;[];;"**First-timer - Sub** - -So I am currently without home internet, so no pictures for the foreseable future. - -Firstly, thet literally fixed Miyuki with magic; she's suddenly a whole different person from what we know, hasn't really appologized or really shown much in the way of self-reflection, and no one seems to have any lingering bitter feelings on the matter... - -[](#drink2) - -That has made the resolution of this subplot awful, retroactively makes last episode worse, and scrubbed clean a lot of the good will the series built with me. It really doesn't bode well for how the show plans to wrap up the rest of its plot threads if it has flubbed so hard on one as important as this. - -Along those lines, the first half of the episode is just the slightest bit too bubbly and cheery for what's been happening, though at least Ai was clever enough to call Haruka out on her nonsense and gets them to explain what the hell's been happening —even if she is disbeliving at first. The contrast of Yuu and Fuijiwara's current, easygoing friendship in the first half of the episode and the confrontation between Karasu and Fukuro was also nice, at least. - -The action was very nicely animated today. - -Tobi suddenly knowing or guessing that the Dragon Torque's death will lead to trouble doesn't really make any sense given he currently has little resources and info to work. It's possible the Birds knew this beforehand, but then his decision to accompany Atori on his foolhardy plan doesn't make much sense, and Fukuro doesn't seem the type to go this far for the plan if he knew. Just dumb all around. - -Oh, and yeah, can't wait for the Dragon Torque to get Haruka out of trouble *again* tomorrow. - -[](#kumikouninterested) - -**Questions:** - -1) Karasu wouldn't be doing what ge is, most likely. - -2) Fukuro seems like the least lousy person among them, to be honest.";False;False;;;;1610402684;;False;{};gixl0h3;False;t3_kvdado;False;False;t3_kvdado;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixl0h3/;1610457549;9;True;False;anime;t5_2qh22;;0;[]; -[];;;theangryeditor;;;[];;;;text;t2_e370y;False;False;[];;[Is there a problem?](https://i.imgur.com/1U57JFw.jpg);False;False;;;;1610402708;;False;{};gixl28r;False;t3_kvbyuf;False;False;t1_gixkpnx;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixl28r/;1610457579;4;True;False;anime;t5_2qh22;;0;[]; -[];;;KarlMihel;;;[];;;;text;t2_3ktxpt07;False;False;[];;Rosario + Vampire;False;False;;;;1610402725;;False;{};gixl3j6;False;t3_kvdaqe;False;True;t3_kvdaqe;/r/anime/comments/kvdaqe/idk_what_anime_to_watch/gixl3j6/;1610457602;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZBLongladder;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/zblongladder;dark;text;t2_6tmso;False;False;[];;"**Rewatcher** - -You know, I'd never noticed before that, after Nico says she's selecting songs that she'll score high on in karaoke, the background music in the karaoke room is an off-vocal version of [Love Novels](https://love-live.fandom.com/wiki/Love_Novels), a song Nico is center for. Nice bit of attention to detail. - -Also, this episode really contributes to my dislike of Nico. She's probably my least favorite character in the franchise, since she's often jealous, petty, selfish, thoughtless, and just plain mean to her friends. I do see why people love her, and I can respect that, but she's the only character in the franchise that has the potential to get me straight-up mad. [Love Live: School Idol Festival All Stars spoilers]( /s ""I haven't gotten far enough in the LLSIFAS story to know if Lanzhu will join Nico in the 'LL characters that make me mad' category, though I suspect she will, from what I've heard."" ) ED: Also, just realized the irony that I'm a NicoMaki shipper, so for some reason I like pairing one of my best girls with my worst girl. I guess if Nico makes Maki happy, she's at least all right. - -Also, we get a rare sighting of a dude! In this case, Honk's dad. I was going to say that maybe this's before the Love Live fanbase would get all up in arms at the suggestion of men even existing around the girls, but then I remembered that [maybe very minor Sunshine spoiler?]( /s ""Mari's dad shows up a little in Sunshine"" ), so I guess the occasional dad is OK, as long as he doesn't get much screentime. - -Discussion Questions: - -1. I like the whole ""have everyone take turns"" approach. Having Honoka be center all the time seems like it'd take away from μ's's charm, in that you'd be promoting one idol over the rest. I think every idol deserves to be someone's best girl (yes, even Nico), and giving one the spotlight over others seems like it'd be prioritizing some fans over others, which doesn't seem fair. - -2. I play Love Live School Idol Festival and LLSIF All Stars, and the closest I have to a go-to is [Mijuku Dreamer](https://love-live.fandom.com/wiki/Mijuku_DREAMER) in SIF, because that's the one Expert song I can reliably full combo. Ironically, it's kinda reduced my appreciation of the song, since I end up grinding it over and over in token matches. Still a good song, though,";False;False;;;;1610402757;;1610403507.0;{};gixl5yi;False;t3_kvbyuf;False;False;t3_kvbyuf;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixl5yi/;1610457644;5;True;False;anime;t5_2qh22;;0;[]; -[];;;JustAnswerAQuestion;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JAaQ/;light;text;t2_66xzcvc;False;False;[];;"> are these guys the present versions of the suspicious council from La’cryma - -Ohhhh. I thought the mean lady was Miho's mom, but with that screen shot, yeah, she could be mean lady.";False;False;;;;1610402799;;False;{};gixl97c;False;t3_kvdado;False;False;t1_gixknsk;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixl97c/;1610457699;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;True;[];;"You and your bad puns, of course. -[](#nicoisdone)";False;False;;;;1610402834;;False;{};gixlbvi;False;t3_kvbyuf;False;False;t1_gixl28r;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixlbvi/;1610457745;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Animetthighs;;;[];;;;text;t2_874mc8b4;False;False;[];;To pure you are. More sauce you need;False;False;;;;1610402846;;False;{};gixlcv2;False;t3_kv8n0c;False;True;t1_giwvzba;/r/anime/comments/kv8n0c/liking_monster_musume_determines_your_taste_in/gixlcv2/;1610457768;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;"**First-Timer, Dubbed** - -The first half or so of this episode was nice. The temporary change from ""supernatural drama"" to ""slice of life"" doesn't bug me as much as I thought it would. Standout moments are Asuka and Miyuki having a bottle of wine each, Ai claiming that she always believe Haruka and then that what she's saying is unbelieveable, and the kids and Karasu all just sitting in a circle, chatting and having a good time. - -It's scenes like this that make the darker ones work for me. Seeing the contrast, the innocence that is so easily destroyed, will make whatever tragedy is hurtling towards the cast so much more poignant. - -Speaking of tragedy, I figured that Atori going after Yuu and Isami would show us where Fukuro's eye injury came from. Luckily for him though, Fukuro intervened and Isami continues to have 3D vision. The pendulum swings both ways though.. fate is coming for that eye. - -So, I think the safe assumption on the group that Uchida gave a speech to is that they are the precursor to The Committee. They probably lose some people, and downsize to a circular table shortly after the dumbass gets his way and many people die. - -Seriously, I'm used to morally bankrupt ominous councils, but that bordered on Saturday Morning Cartoon villainy. ""Let's just put this untested tech in action so that we can be FIRST! Consequences? What're those? Some exotic food?"" - -Dude is such a big asshole that Kooriyama's eyes weren't skin tone for a bit there. - -Karasu and Atori have an excellent duel in the rain, while Fukuro goes to kidnap Haruka. Unfortunately, Haruka's desires are to stay put, and the Torc activates... scaring Fukuro and doing little else. - -Miscellaneous thoughts: - -Process of elimination leads me to think that Kosagi is Miho? She could be no-one though, not 100% sure. - -Kuina keeps losing bits, I hope Lacrima's prosthetic technology is up to snuff of rebuilding his face. - -Atori is starting to fall apart which is a shame. I'll miss his faces when he leaves. - -Questions - -1. Karasu wouldn't have betrayed them due to unresolved feeling and guilt. - -2. I know little about Fate aside from memes. Uhh, Karasu seems to routinely wins fights?";False;False;;;;1610402910;;False;{};gixlhjr;False;t3_kvdado;False;False;t3_kvdado;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixlhjr/;1610457850;6;True;False;anime;t5_2qh22;;0;[]; -[];;;BurningFredrick;;MAL;[];;https://myanimelist.net/profile/BurningFredrick;dark;text;t2_74w5s;False;False;[];;"First Timer - Sub - - -I wonder Atori? Why would they kid you tried to murder remember you? Can’t think of a single reason why he would remember that at all.  - - -So the Otherworld council is totally the same people that Uchida is working for, I didn’t pay to close attention to the member in either version, but 99% sure at least some of them are the same, they are also the cause of the apocalypse by not paying any attention to Uchida warnings / going ahead with their experiment anyway.  - - -Haruka is using dragon torque powers to establish who everyone's older version is, and also allows her to move when time has stopped, which does make sense given she is on the road to some sort of Godhood.  - - -Next few episodes are definitely aiming to expand on the “it’s our past but they aren’t the same people” storyline which was introduced back when Haruka was kidnapped, I also suspect we finally have our end game slowing coming into view, still got some time before it ramps up. - - -Below are some ideas I've come up with for the rest of the show, I have most likely leaned a bit too heavily into troupes for parts of it but how I'm thinking parts are going to go down. - - -[Speculation](/s ""Tipping point is going to have to be Uchida running into Karasu & Co, but I figure that has got to be a few episodes off, maybe 4 or so, we need to get all the friends group on the same side first so mirrored drama between alts & currents is what i’m expecting for new few episodes."") - - -[Speculation](/s ""We also need to establish what Noein goal is going to be in all this, i’m thinking he’s going to try isolate Haruka from everyone else at some stage so can have her for himself (based on him being another Yuuu), Karasu most going to sacrifice himself to stop this, or that's going to be held off longer for our final where Karasu & Co sacrifice themselves to stop quantum experiment at the last moment to avert the apocalypse, or the classic they can’t turn the machine off so they have to sacrifice themselves to do this. Actually second idea will probably be it."") - - -[Speculation](/s ""Back to Noein, he is going to be pushing for the experiment to go ahead from the shadows, as the experiment event will be a key event for different worldlines, I’m just not sure they are going to stick to how multiverse theory it meant to work. But Noein is going to be antagonistic."")  - - -[Final bit of Speculation](/s ""The backdrop to all this, slightly obviously, is that reality is going to start falling apart, with Shangri la & La’cryma bleeding into Earths universe. While this is happening I expect that Haruka is going to start falling apart. She going to try use her Dragon Torque powers to reverse everything but isn’t going to be successfully and probably trapped outside her body and wander “lost” until Yuu able to save her / call her back."") - - -Anyway that is considerably more than I expect to write, now to see how far off the mark I am. ";False;False;;;;1610402940;;False;{};gixljpp;False;t3_kvdado;False;False;t3_kvdado;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixljpp/;1610457889;6;True;False;anime;t5_2qh22;;0;[]; -[];;;theangryeditor;;;[];;;;text;t2_e370y;False;False;[];;[teehee](https://i.imgur.com/lcBWjDG.jpg);False;False;;;;1610402962;;False;{};gixllcd;False;t3_kvbyuf;False;False;t1_gixlbvi;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixllcd/;1610457918;5;True;False;anime;t5_2qh22;;0;[]; -[];;;JustAnswerAQuestion;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JAaQ/;light;text;t2_66xzcvc;False;False;[];;"> You can end it though, if you're willing to help one of them. - -Ditto. Literally my thoughts.";False;False;;;;1610402997;;False;{};gixlnyf;False;t3_kvdado;False;False;t1_gixkr4v;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixlnyf/;1610457962;6;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;The only negative I've found with anime becoming more popular is the gatekeeping from some people in the community. Otherwise I'm just happy to have more people to share in the experience with.;False;False;;;;1610403023;;False;{};gixlptk;False;t3_kvd8vw;False;False;t3_kvd8vw;/r/anime/comments/kvd8vw/what_are_your_genuine_thoughts_at_the_continued/gixlptk/;1610457994;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> Yuu’s mom being completely plastered is… definitely a sight for the rest of the kids. I’m about as weirded out as they are by this. - -Definitely a different experience than they've had with her. - -> Oh, no, he just *teleports behind you* at Miho. Which is even more funny. - -""Nothing personnel, mooncalf."" - -> This means that the dimension we’ve been in for the most part is, like, the main one that others branch off of, right? - -I have a similar interpretation even though that ruins all the quantum stuff. - -> -I really want to know what it is about this guy in particular that means he keeps losing body parts already. - -Universe A hates two faced people so punishes him any time he pops in.";False;False;;;;1610403077;;False;{};gixltqc;False;t3_kvdado;False;False;t1_gixknsk;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixltqc/;1610458060;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Earthborn92;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EarthB;light;text;t2_al1wj;False;False;[];;"Partial Rewatcher here. **First timer** for this episode. - -Finally some [Koyomi fanservice](https://i.imgur.com/BLTJLvk.jpeg). No [fangs](https://i.imgur.com/ecXO9AG.jpeg) anymore because of humanfication? I [wonder](https://i.imgur.com/xSyjiRR.jpg) what this episode is about with all this Senjou talk. - -Nice, a [Senjou opening](https://i.imgur.com/dtzCGBE.jpg) from Araragi’s POV it looks like. Very Shoujo-manga style. I prefer Staple Stable. - -Yeah, you [were missing](https://i.imgur.com/Te0pV7R.jpeg) for a while and didn’t have a proper arc. - -Idk, [I would also](https://i.imgur.com/P5JPoCn.jpeg) be worried if it wasn’t for the fact that the future was revealed in Hana and he got into college. - -[With determination.](https://i.imgur.com/2JIofEy.jpg) - -No! [What about Ougi](https://i.imgur.com/8FcN3Zb.jpg)? - -[Ditched on White Day](https://i.imgur.com/glG3za3.jpg). - -I, too, have been “[very busy](https://i.imgur.com/6Q41jn0.jpeg)” reading manga during the holidays. I got no time to relax. What a busy life. - -Like [fondness](https://i.imgur.com/QM4018k.jpg) for muscles. But strange that she pleads guilty for murder. I guess because she didn’t know, her motivation was still intent to kill. - -[Ahaha…](https://i.imgur.com/PHUPQLe.jpg) Be polite to a loli-vamp in the event that she turns into a MILF. And BTW Ononoki, she beat you up even in the loli form. - -[She’s a cat](https://i.imgur.com/AsSg3iF.jpg) not a sniffer dog. Big difference. - -[Senjou first and Shinobu](https://i.imgur.com/dcHRxZX.jpg) later is my best guess (Hachikuji last, he has already promised her). Hanekawa never ever. - -By one of you [she means him](https://i.imgur.com/PIEyw6y.jpg). - -It’s like [Toy Story](https://i.imgur.com/9kQyNTf.jpeg). - -He [would like nothing better](https://i.imgur.com/dqxpXM5.jpeg). - -We still haven’t seen the imouto’s boyfriends. I don’t think we ever will at this point as Araragi refuses to meet them. - -[You should](https://i.imgur.com/bDhJPTo.jpeg) leave the manga she drew in hospital besides that doll of yours. - -Ok, now [THIS](https://i.imgur.com/PdcaBtM.jpeg) is normal sibling behavior. At last. - -[LONG HAIR.](https://i.imgur.com/Nv9oYZp.jpg) Praise be to the gods. I don’t mind if they’re just extensions. - -[It’s a TRAP!](https://i.imgur.com/JlO3WA9.jpg) Don’t fall for it. - -[Did he](https://i.imgur.com/UbTcCJg.jpg)? They never show the Senjou kisses and I’m ok with that, but at least make it obvious. - -She got her [license](https://i.imgur.com/ZxbZMFW.jpeg) before him, huh? - -I don’t know why Japanese schools have [these kinds](https://i.imgur.com/Bzo8iZP.jpg) of rules tbh. I mean, I know, but I don’t agree. - -[Hahaha](https://i.imgur.com/jppdEfq.jpeg), I didn’t even think about that. - -Minor detail, but it is now confirmed that the Araragis are, in fact, [born with](https://i.imgur.com/FgmbhXK.jpeg) their ahoges. - -Are we going a [daytime revisit](https://i.imgur.com/j9lkGJ3.jpg) of the summer triangle? - -[Very formal.](https://i.imgur.com/lbesMRe.jpg) - -Turns out the cat [can be](https://i.imgur.com/Oj9kVCM.jpg) a sniffer dog when she wants. - -[Feeling bad for](https://i.imgur.com/JRwMgif.jpeg) Hanekawa right now. - -Huh, [this is something](https://i.imgur.com/00YxLPY.jpg) I actually know a bit about. In my previous lab, we used to run earthquake models on our cluster, so I have worked with a few geologists before. - -Shouldn’t it be astronomer [academic] and not astronaut [psychically going into space] [here](https://i.imgur.com/YBVKmaf.jpg)? Don’t know the correct translation. What she is describing as something she wants to study is actually physical cosmology and dark matter. So very much deep into the unsolved problems of physics. - -So this is where [that conversation](https://i.imgur.com/tchxzQR.jpeg) was leading to. - -I think I’d have liked it if they put Kimi no Shiranai monogatari as the ED again for this episode. - -See you tomorrow!";False;False;;;;1610403090;;1610403519.0;{};gixluqg;False;t3_kvd9qu;False;False;t3_kvd9qu;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixluqg/;1610458076;30;True;False;anime;t5_2qh22;;0;[]; -[];;;WhackaWhack;;;[];;;;text;t2_ngxv2;False;False;[];;"**FIRST TIMER** - -*Reactions during episode* - -So Araragi is scared of changing from the person that always puts others before himself and what that change can do to him? - -But I'm busy fighting Ougi tomorrow, can it wait? - -Yeah I agree Ononoki is in hot water now that Kiss Shot is back, let's hope for some kindness from the iron-blooded, cold-blooded, hot-blooded ~~loli~~ grandma. - -Sengoku is out of the Araragi-bowl in Ononokis eyes, probably for the best anyways. - -Nobody believes in Araragi getting accepted... - -Tsukihi feeling sympathy towards the other immortal aberration, Ononoki must be SO HAPPY! /s - -Was there some kind of joke about having plans with Einstein or just a random famous person? (that's dead) - -Wait what, you can't get a driving license and have recommendation?!? I understand that train and the like is very good but is driving that bad? - -Wait again since Araragi have a driving license in Hana does that mean he actually managed to stay human for the rest of monogatari? - -Senjougahara, I think it's you fault that Hanekawa didn't call Araragi... So she didn't forget the Yandere side yet. - -So by ""going in reverse"" Hanekawa tried to find out where Oshino wouldn't be instead and then got down to the 2 places left he could be? - -Ougi, Ougi, Ougi can this be telling us something? -Like Ougi being the point in the middle of the shape and she either takes all in and sends out new or is it more or less the bridge between the sides maybe aberration and human. - -*Questions* - -1. That was a nice OP which was basically a love song towards Araragi about how much Senjougahara loves him and wants him to love her back. -(And if that opening scene is anything to go by her unrequited love might not be unrequired much longer) - -2. No I'm all for a RomCom arc even if I kinda wanted the final arc but I'm used to being cliffhanger baited by now anyways... - -3. Didn't think about it during the episode but maybe Tsukihi have ""bumped"" Nadeko up to a best friend because she understood that Araragi needs/wants to distance himself from her and she then pick up the ""slack"". Also a small part the Hanekawa really wants Senjougahara X Araragi to work by helping Senjougahara and I'm guessing contraction Senjougahara first to not ""scare"" her by how Araragi is very possibly interested in Hanekawa still. - -4. It has been a second since I last saw Ougi but she did have colorless eyes or ""dark black eyes"" and we did learn about the space thingy ""Ougi"" that MUST have some forewarning in it. What this forewarning means is hard I did guess something about her being the middle point in a ougi and whatever that means but I feel something missing with that teori.";False;False;;;;1610403117;;False;{};gixlwrp;False;t3_kvd9qu;False;False;t3_kvd9qu;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixlwrp/;1610458111;27;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;I just wanted to give some ecchi shows with an actual plot, rather than mindless stuff. KLK certainly fits into that.;False;False;;;;1610403150;;False;{};gixlz66;False;t3_kv6m47;False;True;t1_gixhhjd;/r/anime/comments/kv6m47/anything_similar_to_highschool_dxd_thats_any_good/gixlz66/;1610458152;1;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;That is just one person though (Karasu) and only recently. Can't expect them to tell that info the what is essentially their enemy.;False;False;;;;1610403168;;False;{};gixm0lg;False;t3_kvdado;False;False;t1_gixkz8z;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixm0lg/;1610458177;6;True;False;anime;t5_2qh22;;0;[]; -[];;;blackmagemasta;;MAL;[];;https://myanimelist.net/profile/blackmagemasta;dark;text;t2_aceb1;False;False;[];;"**Rewatcher** - -Senjougahara breaking the 4th wall again. - -Does Ononoki feel like a plushie? - -A party with middle school girls? Sounds like Araragi's version of paradise. - -Albert Einstein was born on March 14, 1879. - -Who's faster, Drivergahara or Cararagi? - -Nisioisin [predicted](https://i.imgur.com/8aqOBI2.png) Japan's response to [Covid19](https://twitter.com/rumireports/status/1263352830225551360).";False;False;;;;1610403255;;False;{};gixm758;False;t3_kvd9qu;False;False;t3_kvd9qu;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixm758/;1610458295;9;True;False;anime;t5_2qh22;;0;[]; -[];;;dxing2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/dxing;light;text;t2_sbxd9;False;False;[];;I always thought this episode was kind of pointless since based on the song, they have different centers anyways. Not sure why they kept going with the idea that the center and the leader were the same thing.;False;False;;;;1610403368;;False;{};gixmfm6;False;t3_kvbyuf;False;True;t1_gixdce9;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixmfm6/;1610458445;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DqrkExodus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Seraira;light;text;t2_162r04;False;False;[];;The more people who watch anime the merrier;False;False;;;;1610403370;;False;{};gixmfs6;False;t3_kvd8vw;False;False;t3_kvd8vw;/r/anime/comments/kvd8vw/what_are_your_genuine_thoughts_at_the_continued/gixmfs6/;1610458449;5;True;False;anime;t5_2qh22;;0;[]; -[];;;docaxel;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/thebidoofpope;light;text;t2_87rgx;False;False;[];;"**Rewatcher** - -School Idol Festival All-Stars Spotlight Cards - -[Honoka1](https://i.idol.st/u/card/art/2x/106Kousaka-Honoka-%E4%BB%8A%E6%97%A5%E3%81%AF%E7%9B%AE%E4%B8%80%E6%9D%AF%E6%A5%BD%E3%81%97%E3%82%82%E3%83%BC-UR-dcouYA.png) [Honoka2](https://i.idol.st/u/card/art/2x/106Kousaka-Honoka-%E4%BB%8A%E6%97%A5%E3%81%AF%E7%9B%AE%E4%B8%80%E6%9D%AF%E6%A5%BD%E3%81%97%E3%82%82%E3%83%BC-UR-X42B0N.png)";False;False;;;;1610403373;;False;{};gixmfz3;False;t3_kvbyuf;False;True;t3_kvbyuf;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixmfz3/;1610458452;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;"**First Timer** - -Normally I don't like episodes consisting mostly of banter all that much, but the plot has been pretty heavy lately so I'll allow it. - -Ononoki is reading a manga, looks like a romance one. I can't help but be reminded of Nadeko's little ""project"". - -Hmm. As much as I love braids, I don't think it suits you, Gahara. More importantly, how'd her hair grow long enough for one overnight? Did Araragi wake up in the wrong timeline? - -So after pretty much all the series remaining as a background gf, we finally get to see a date with Gahara. She takes Araragi to the planetarium. Astrophysics and everything space related is kind of an interest of mine, and as a kid I was _really_ into it. There's just something beckoning about the cosmos, while still posing some terrifying queries. - -Fitting for something being not so subtly compared to Ougi, is it not? The dude's really scaring me now. I wonder if the story is implying that she's trying to embody the ""ideals of the universe"", or that she's a manifestation of the universe itself. - -The specialists believe to have tricked Ougi for the time being at least, and given how competent we know them to be, I believe they were somewhat successful at worst. The problem is that Ougi will not sit idle once she finds out she's been lied to, and she doesn't seem like she's above performing acts of revenge.";False;False;;;;1610403410;;False;{};gixmirr;False;t3_kvd9qu;False;False;t3_kvd9qu;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixmirr/;1610458500;24;True;False;anime;t5_2qh22;;0;[]; -[];;;JustAnswerAQuestion;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JAaQ/;light;text;t2_66xzcvc;False;False;[];;"> The contrast of Yuu and Fuijiwara's current, easygoing friendship in the first half of the episode and the confrontation between Karasu and Fukuro was also nice, at least. - -This is the most interesting part of the episode and it's not even in today's episode, it's tomorrow's.";False;False;;;;1610403441;;False;{};gixml3c;False;t3_kvdado;False;True;t1_gixl0h3;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixml3c/;1610458542;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ExpensiveWasabi;;;[];;;;text;t2_1gqfj0gy;False;False;[];;Oh, damn. That looks really good!;False;False;;;;1610403461;;False;{};gixmmlk;False;t3_kv74lk;False;True;t3_kv74lk;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gixmmlk/;1610458567;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> I feel like I know the character. - -Glasses Girl might be ""Readworth"" or whatshername from Read or Die. Maybe NisiOisiN's forgetful detective?";False;False;;;;1610403491;;False;{};gixmoth;True;t3_kvd9qu;False;False;t1_gixknzy;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixmoth/;1610458623;5;True;False;anime;t5_2qh22;;0;[]; -[];;;sisoko2;;;[];;;;text;t2_6f6px6b;False;False;[];;"**Rewatcher** - - - -1. They really put a lot of effort for the Blue Ray release. Nice song and great visuals for Senjougahara fans. - -2. Who wouldn't be excited for a date episode with the best girl in all of anime? - -3. OMG. I just realized. Did Nadeko show Tsukihi the manga? Since Tsukihi already knows that Nadeko loved Koyomi, the only other possible secret is about the apparitions but that doesn't sound as interesting as both of them reading and writing ecchi manga. - -4. Seeing teenagers with actual dreams about their future makes me kinda sad that I didn't have any.";False;False;;;;1610403492;;False;{};gixmoxr;False;t3_kvd9qu;False;False;t3_kvd9qu;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixmoxr/;1610458626;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> I am not a fan of sudden personality flips. That's just not how humans work. I can't even really attribute this one to her being drunk. - -I am choosing to believe that Haruka effectively re-tuned her and this is a less annoying version of her. - -> I guess it just feels somewhat all over the place to me, like they weren't quite sure what was the best approach to tell their story, so the ended up trying a hybrid of their different ideas. - -There are bits of this that feel first draftish.";False;False;;;;1610403531;;False;{};gixmrrq;False;t3_kvdado;False;True;t1_gixkr4v;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixmrrq/;1610458676;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> Did Nadeko show Tsukihi the manga? - -[Meta Spoiler and actual spoiler](/s ""We see them next arc, hanging out together while Nadeko draws manga. So guess it's either this or something that makes Araragi and/or Kaiki look like they assaulted her"")";False;False;;;;1610403607;;False;{};gixmxha;True;t3_kvd9qu;False;False;t1_gixmoxr;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixmxha/;1610458781;4;True;False;anime;t5_2qh22;;0;[]; -[];;;dxing2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/dxing;light;text;t2_sbxd9;False;False;[];;Honk is the leader no doubt. She’s the one that unites them under a single vision, which in my definition, is what being a captain or leader is all about.;False;False;;;;1610403615;;False;{};gixmy5n;False;t3_kvbyuf;False;True;t1_gixdcn3;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixmy5n/;1610458792;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dandeeo;;;[];;;;text;t2_lt3rd;False;False;[];;"**First Timer** - -**New OP, Dreamy Date Drive. It did not air at all on TV and was added for the Blu Ray. What do you think about it?** - -I did not like this one very much. The visuals were cute and romantic and date-y but the song was meh. I actually don't think I've really liked a Senjou OP since staple stable. - -**Senjougahara focused arc and it's a date, are you excited or do you dread a romcom episode?** - -Senjougahara? Date? *A ROM COM EPISODE?* There are not enough exclamation points in the world to emphasize my ""HELL YES!!"" Still haven't forgotten the incredible starry sky scene from Bake so I know this show can do romance well. And they're going to a planetarium, so I'm ready and waiting for starry sky 2.0. This is also so well-timed for me as I've been on a huge romance kick recently. Buuut I also don't think this will be a purely rom com interlude because its Monogatari and we can't have good things all the time. - -**We also learn about a few of the other cast members (Nadeko & Tsukihi, Tsukihi's plushie, Oshino Meme, Hanekawa). What did stick out to you?** - -Tsukihi randomly becoming best friends with Nadeko is weird. I think the ""secret"" there is probably just Nadeko letting Tsukihi know about her art hobby, but otherwise not sure what motivated their closeness so suddenly. - -I hadn't pieced together that Ononoki was playing dead with the Fire Sisters, that is SO funny. Her just ragdolling the second she heard Tsukihi approach had me dying. I feel like Ononoki must hate them. - -I feel like we keep getting teased as though Oshino is going to come back soon – Hanekawa is closer than ever, he's been brought up SO much recently. It's crazy that this dude has such a hold on the viewer (or, at least, this viewer) and he hasn't appeared in the main story since Bake (alternate timeline notwithstanding). The ultimate troll would be if he never showed up again so now I'm just bracing myself for that. - -**The episode ends with talk about universe & infinity and a dark black eye, what could that possibly mean?** - -That black void of an eyeball just screams ""Ougi is watching...""";False;False;;;;1610403644;;False;{};gixn09p;False;t3_kvd9qu;False;False;t3_kvd9qu;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixn09p/;1610458828;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;Kekkaishi;False;False;;;;1610403663;;False;{};gixn1oq;False;t3_kv9pzr;False;True;t3_kv9pzr;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/gixn1oq/;1610458853;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OneMoreDuncanIdaho;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/a_trisolaran;light;text;t2_i31pk;False;False;[];;For a good balance of fantasy, drama, and comedy check out Mob Psycho 100;False;False;;;;1610403721;;False;{};gixn61c;False;t3_kvb5qo;False;True;t3_kvb5qo;/r/anime/comments/kvb5qo/attention_to_all_anime_lovers/gixn61c/;1610458932;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> -> -> -> -> How do we show that she’s really drunk? I don’t know, give her two wine glasses. - -Double fisting the wine gets you drunk faster! - -> -Ghost Girl carries seals with her? I wouldn’t mind a Dennou Coil crossover to liven things up. - -The power of seals compels you! - -> So the calamity that happens and causes Karasu et al.’s world is them trying this quantum info transmission thing too early and screwing everything up? - -Very fitting though it has me concerned about our current experiments.";False;False;;;;1610403733;;False;{};gixn6xd;False;t3_kvdado;False;True;t1_gixkx1c;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixn6xd/;1610458949;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> Nisioisin predicted -> Japan's response to Covid19 -> . - -yeah that made this line really surreal";False;False;;;;1610403734;;False;{};gixn6zf;True;t3_kvd9qu;False;False;t1_gixm758;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixn6zf/;1610458949;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ZBLongladder;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/zblongladder;dark;text;t2_6tmso;False;False;[];;I tend to agree...Nozomi always used to be my best μ's girl, but I think Maki's edging her out these days. And NicoMaki is my favorite μ's ship by far. She's just the right amount of tsundere, when you think about it.;False;False;;;;1610403818;;False;{};gixncx1;False;t3_kvbyuf;False;True;t1_gixkhzl;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixncx1/;1610459056;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> -> -> -> -> Drunk mothers are funny. - -Only in anime. - -> -Narrator's voice: she didn't believe her best friend. - -*Surprised Pikachu face* - -> I'm glad they revealed Karasu to their friends instead of trying to keep it a secret, although it looks like the identity of Karasu is definitely secret. - -Definitely a good move, I was expecting closet Karasu to be like 7 episodes.";False;False;;;;1610403897;;False;{};gixnirt;False;t3_kvdado;False;False;t1_gixky21;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixnirt/;1610459161;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TehNolz;;MAL;[];;http://myanimelist.net/animelist/Nolz;dark;text;t2_brqsb;False;False;[];;"I feel like the new _Show By Rock_ sequel isn't getting the attention that deserves. Sure, it's not as spectacular as Attack on Titan or Re;Zero, but it's a fun show nonetheless. Has some great music too; like [Kimi no Rhapsody](https://www.youtube.com/watch?v=JQ96fubtNUo).";False;False;;;;1610403925;;False;{};gixnkvc;False;t3_kvbbi1;False;True;t3_kvbbi1;/r/anime/comments/kvbbi1/before_the_seasons_really_kicks_off_what_are_some/gixnkvc/;1610459200;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> Was there some kind of joke about having plans with Einstein or just a random famous person? (that's dead) - -March 14th is his birthday. Also space related - -> Wait what, you can't get a driving license and have recommendation?!? I understand that train and the like is very good but is driving that bad? - -HS prohibits you from all kinds of stuff. Working, joining a club, getting a driver's license especially for motorcycles. They can be crazy - -> Wait again since Araragi have a driving license in Hana does that mean he actually managed to stay human for the rest of monogatari? - -he also had a reflection, but he also had one in Bake, Nise etc";False;False;;;;1610404013;;False;{};gixnrgn;True;t3_kvd9qu;False;False;t1_gixlwrp;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixnrgn/;1610459316;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> So this entire problem, which happens in infinite realities, is a ~~quantum teleportation resonance cascade experiment~~ DOOM PREQUEL - -In the first age, in the first battle, when the shadows first lengthened, one stood... -> -> Storm? Is it Walpurgis Night? - -I am sure the cat would make a contract...";False;False;;;;1610404123;;False;{};gixnzqn;False;t3_kvdado;False;True;t1_gixl0cw;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixnzqn/;1610459466;2;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;"> We get...another bureaucratic meeting. I would say Witchblade ruined this for me but they sucked the whole time - -They really did. It is such a cheap trope because we are always supposed to believe that the council is super powerful, but they always turn out to be powerless bystanders.";False;False;;;;1610404128;;False;{};gixo03d;False;t3_kvdado;False;False;t1_gixkty2;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixo03d/;1610459471;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DodzReincarnated;;;[];;;;text;t2_6dnzr3j;False;False;[];;I’ve read the Dorohedoro manga, and I thought the anime does a pretty good job even if it’s has a bunch a CG. Hayashida’s art is insane and I can’t blame MAPPA for using CG. I thought the voice acting, music and background art were fantastic so it was easy to overlook the CG.;False;False;;;;1610404168;;False;{};gixo314;False;t3_kv9id4;False;True;t3_kv9id4;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/gixo314/;1610459548;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610404182;;False;{};gixo441;False;t3_kv9id4;False;True;t3_kv9id4;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/gixo441/;1610459568;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mekazuaquaness;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;mekazuaquaness is true waifu;dark;text;t2_3d9sfw2v;False;False;[];;"I’m glad that people are starting to understand that there are some anime out there that are meant to be taken seriously. I converted my friend into watching anime because I recommended him good ones. The only reason he hated anime was because he was told to watch food wars as a troll recommendation. - -The only bad thing I think could happen would be if companies got extremely greedy regarding the distribution of anime seeing how it’s starting to become a mainstream thing which means there will eventually become a larger audience and more profitable opportunities. - -But in the end I believe anime in general will start to have more unbelievable animation sequences as it gets more popular. Demon slayer ep 19 is definitely a good example of what we could see more of in the future.";False;False;;;;1610404183;;False;{};gixo44i;False;t3_kvd8vw;False;False;t3_kvd8vw;/r/anime/comments/kvd8vw/what_are_your_genuine_thoughts_at_the_continued/gixo44i/;1610459568;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;Trinity Seven;False;False;;;;1610404266;;False;{};gixoadq;False;t3_kvdaqe;False;False;t3_kvdaqe;/r/anime/comments/kvdaqe/idk_what_anime_to_watch/gixoadq/;1610459677;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;I really don't care either way. I have too much self-respect to say that anime should belong to people who watched it before it was cool. Honestly, it's kind of weird to me that you think that way, despite us being almost the same age.;False;False;;;;1610404288;;False;{};gixobzo;False;t3_kvd8vw;False;True;t3_kvd8vw;/r/anime/comments/kvd8vw/what_are_your_genuine_thoughts_at_the_continued/gixobzo/;1610459707;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610404291;;False;{};gixocah;False;t3_kv9id4;False;True;t3_kv9id4;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/gixocah/;1610459713;1;True;False;anime;t5_2qh22;;0;[]; -[];;;degenerate-edgelord;;;[];;;;text;t2_1hbjff8i;False;False;[];;Ik Charlotte being 'rushed' (or the ending at least) is a popular opinion but I don't see how it could be two cours without turning the last bit into a long shounen-like action arc. Dunno how exactly you guys would have preferred it, the story just wasn't very long.;False;False;;;;1610404301;;False;{};gixoczc;False;t3_kvbzou;False;False;t1_gixgem7;/r/anime/comments/kvbzou/key_president_teases_plans_for_anime_of_summer/gixoczc/;1610459725;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Mountain-Anywhere621;;;[];;;;text;t2_9kuj99kp;False;False;[];;Grisaia trilogy watch order kaiju then meikyu then rauken watch on9anime;False;False;;;;1610404331;;False;{};gixof5a;False;t3_kvdaqe;False;True;t3_kvdaqe;/r/anime/comments/kvdaqe/idk_what_anime_to_watch/gixof5a/;1610459765;0;True;False;anime;t5_2qh22;;0;[]; -[];;;DodzReincarnated;;;[];;;;text;t2_6dnzr3j;False;False;[];;Compared to hand drawn animation which has been around for what, like a century now? I think CG is still pretty new.;False;False;;;;1610404374;;False;{};gixoi89;False;t3_kv9id4;False;True;t1_giwzm4s;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/gixoi89/;1610459820;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ragnar4king;;;[];;;;text;t2_1tdy6v1;False;False;[];;"> Shinobu wasn’t present during the first date in Bakemonogatari nor during this. - -At least she was there when they walked home gently ( ͡° ͜ʖ ͡°)";False;False;;;;1610404458;;False;{};gixooed;False;t3_kvd9qu;False;False;t1_gixkvs0;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixooed/;1610459939;6;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> Buuut I also don't think this will be a purely rom com interlude because its Monogatari and we can't have good things all the time. - -It's not like the episode had an ominous ending or anything - -> I feel like Ononoki must hate them. - -what gave it away? - -> The ultimate troll would be if he never showed up again so now I'm just bracing myself for that. - -why would NisiOisiN ever do such a thing to us?";False;False;;;;1610404458;;False;{};gixoofq;True;t3_kvd9qu;False;False;t1_gixn09p;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixoofq/;1610459939;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> Firstly, thet literally fixed Miyuki with magic; she's suddenly a whole different person from what we know, hasn't really appologized or really shown much in the way of self-reflection, and no one seems to have any lingering bitter feelings on the matter... - -So...kids show is my view here. Not that that excuses it. - -> Along those lines, the first half of the episode is just the slightest bit too bubbly and cheery for what's been happening - -I think a better choice in OST could fix this though I can't exactly prove it. - -> The action was very nicely animated today. - -Weird right? Whoever does the combat animation on the show knew what they were doing.";False;False;;;;1610404459;;False;{};gixooji;False;t3_kvdado;False;True;t1_gixl0h3;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixooji/;1610459941;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Luukuton;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;Hatchless;light;text;t2_kjwpo;False;False;[];;Haha, true!;False;False;;;;1610404497;;False;{};gixora6;False;t3_kvd9qu;False;False;t1_gixooed;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixora6/;1610459990;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;Yeah, definitely an annoying facet of being an anime fan.;False;False;;;;1610404549;;False;{};gixova3;False;t3_kvdado;False;True;t1_gixo03d;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixova3/;1610460063;3;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;"**First-time watcher** - -I guess Uchida will be gone for a while. Well, she hasn't done anything besides get a hunch, one can only hope the conference is about the recent dimensional disturbances and she'll come back with more relevance to the plot. Huh, we actually get the meeting itself, with the obvious Earth counterparts to the mysterious Lacryman council plotting some sort of cataclysmic experiment to get ahead in the time machine arms race, if in a comically reckless way. I also sense a dig at Japanese centralization on Tokio. - -Moral of the story, kids: Getting smashed together at home during the daytime is a totally fine way to patch up your personal issues. I'm always perplexed at how casual Japan is about alcohol compared to ""EVIL DRUGS"". It's a semi-reasonable way to defer the final resolution of the Yuu-mother conflict, but as a narrative component that's also not a good idea, really it's more like someone spun the genre roulette ball and for this section of the episode it landed on ""cute kid SOL"". And regarding that, as tradition goes they're completely nonplussed at encountering a genuine dimension traveler and just keep on playing like nothing happened, while Karasu (so out-of-place) is appropriately touched. - -Back to the more *interesting* character of Atori... briefly. I can only see his plan reasonably continuing with a Yuu kidnapping, and that does look like the plan. Are we really going to brush off the resolution of Yuu's family conflict in one sentence and leave him loading responsibility on himself? Japan... Uh anyway, Atori shows himself and only then does Tobi pop up out of the bushes and tell him he can't just kidnap kids because dimensions and stuff, and then the next guy pops out of the aether to counter Atori. Contrivances... - -Then everything else is just a series of more half-hearted confrontations. The silliest was Tobi just saying ""I wish I could prevent this"" but not intervening at all. - -Overall, this was just bad, might be my least favorite episode. Back on a timer of two episodes to not lose me entirely, at least there's the hook of Haruka's existence being the real problem.";False;False;;;;1610404594;;1610404855.0;{};gixoyre;False;t3_kvdado;False;False;t3_kvdado;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixoyre/;1610460125;5;True;False;anime;t5_2qh22;;0;[]; -[];;;HereticalAegis;;;[];;;;text;t2_6xeubalv;False;False;[];;"**Rewatcher** - -**New OP** - Dreamy Date Drive is nice and chill, just like I'd hope for with an arc like this. This is, however, my first time actually seeing the OP. It's kinda like watching those 6 months worth of dates Araragi and Senjougahara didn't get to have. In other words, very fitting for the current arc. It's also very cool how the OP starts and ends by calling back to Araragi and Senjougahara's first date back in Bake. - -**General thoughts about the episode** - Yotsugi just doing Yotsugi things. How many girls have been in Araragi's bed at this point? Off the top of my head, I remembered at least Hanekawa, Karen, Tsukihi, Nadeko, and now Yotsugi. Pretty sure I remember Shinobu having been there a couple times too. Did I miss any? Probably. I feel like Kanbaru has to have been at some point, I just can't remember when she would have joined the Araragi's Bed Club. I also remember Hachikuji was in his house once during Second Season, but can't remember if she made it into his bed. - -As a math person and a known time traveler, I have to imagine Araragi could conceivably have plans with *the* Einstein on 3/14 aka White Day aka Einstein's birthday. - -A proper date between two anime high schoolers in a proper committed relationship without the stupid anime date shenanigans? Just try to convince me this isn't Mongatari's greatest genre subversion so far. - -Okay, actual question: I've heard high schoolers in Japan aren't allowed to get driver's licenses, as Araragi mentioned in the episode. Is this actually true? And if so, why? - -I want a detective Hanekawa spinoff now. She's basically Sherlock with cat powers and without 19th century cultural baggage. In lieu of that, I'd also accept a few stories about her travels in search of Oshino Meme. - -Really, I just wasn't more Hanekawa in general. The best girl of best girls has had devastatingly little screentime in Owari, even if what little she's had has been brilliant.";False;False;;;;1610404596;;False;{};gixoywp;False;t3_kvd9qu;False;False;t3_kvd9qu;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixoywp/;1610460127;6;True;False;anime;t5_2qh22;;0;[]; -[];;;_Zig;;;[];;;;text;t2_r3byl;False;False;[];;"All my homies hate slain - -/r/fuckslaine";False;False;;;;1610404597;;False;{};gixoyzn;False;t3_kvbfdy;False;True;t1_gix9xjl;/r/anime/comments/kvbfdy/aldnoah_zero_does_slain/gixoyzn/;1610460128;0;True;False;anime;t5_2qh22;;0;[]; -[];;;prettydirtyboy;;;[];;;;text;t2_1dnzz13c;False;False;[];;This is so good I’m actually disgusted;False;False;;;;1610404626;;False;{};gixp13p;False;t3_kv74lk;False;True;t3_kv74lk;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gixp13p/;1610460166;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheGenerousNerd;;;[];;;;text;t2_11uc2a4p;False;False;[];;"I think the general reaction of the unsuspecting when anime is brought up has shifted from ""huh, you're weird"" to ""oh, here's something I'm missing and should check out"" so that's got to be a good thing. After all, I wouldn't be here had a certain anime film not hit the popularity jackpot a few years ago; which is a funny thought considering - and thanks for bringing those memories back - that I could have had a lot of exposure to Toonami when I was little, but flicking through the cartoon channels I found this particular one ""ugly"" at the time. - -Lastly, let's not forget that in 2020/2021 people in general are just *watching more stuff*. It was about time they tried something entirely new.";False;False;;;;1610404720;;False;{};gixp80r;False;t3_kvd8vw;False;True;t3_kvd8vw;/r/anime/comments/kvd8vw/what_are_your_genuine_thoughts_at_the_continued/gixp80r/;1610460292;2;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;"> nd there's a new song with a music video along it. I've actually been wondering who programs the music for their songs? Maki writes the songs in piano but we don't see the process of turning that song into the full version with all the other instruments and shit. I'm guessing it must also be Maki since she's the musically literate one. Programming the whole thing is a whole lottta work though. That's extremely impressive for a high schooler. I guess that's why they just choose to leave that part out and leave it to your imagination. - -You could say the exact same thing about Kotori and creating all their outfits.";False;False;;;;1610404746;;False;{};gixp9x3;False;t3_kvbyuf;False;True;t1_gixjszm;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixp9x3/;1610460327;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;I don't understand that shit. I've been watching anime since the mid-90's and feel no urge to gatekeep. Let people watch what they want to ffs.;False;False;;;;1610404780;;False;{};gixpcgz;False;t3_kvd8vw;False;False;t1_gixlptk;/r/anime/comments/kvd8vw/what_are_your_genuine_thoughts_at_the_continued/gixpcgz/;1610460372;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">Saturday Morning Cartoon - -A proposition: That's just what this show is.";False;False;;;;1610404784;;False;{};gixpcpc;False;t3_kvdado;False;True;t1_gixlhjr;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixpcpc/;1610460376;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> Standout moments are Asuka and Miyuki having a bottle of wine each - -Don't forget the empty bottle of sake between them! - -> It's scenes like this that make the darker ones work for me. Seeing the contrast, the innocence that is so easily destroyed, will make whatever tragedy is hurtling towards the cast so much more poignant. - -Karasu managed to strike an emotional chord in me today which has been rare. - -> -Seriously, I'm used to morally bankrupt ominous councils, but that bordered on Saturday Morning Cartoon villainy. - -Corporate boards suck in general but this one stands out.";False;False;;;;1610404820;;False;{};gixpfec;False;t3_kvdado;False;False;t1_gixlhjr;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixpfec/;1610460426;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ItchyPlatypus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ItchyPlatypus;light;text;t2_x6uza5h;False;False;[];;"First timer subbed - -I don’t really have much to say for that last two episodes tbh nothing out of the ordinary for me to write a longer post. I have only one question: - -When time stands still why is it that Haraka can pass through doors and nothing else? Like if that’s the case she should be able to pass through walls but she took the long way around and if it’s just that they have no physical matter when time stands still shouldn’t the upstairs floor and stairs have no matter too? I know it’s nit picky but it’s driving me crazy 😅";False;False;;;;1610404859;;False;{};gixpiai;False;t3_kvdado;False;False;t3_kvdado;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixpiai/;1610460479;3;True;False;anime;t5_2qh22;;0;[]; -[];;;tehsigzorz;;;[];;;;text;t2_gwxqygy;False;False;[];;"First Timer - -Araragi may not be a vampire anymore but he still got that figure god damn. - -A couple weeks ago I saw a video titled dreamy date which I wasnt sure what it meant exactly. I am happy we get another date and that title wasnt really a spoiler in the traditional sense. - -A date that constitutes 6 months of dates? Lets gooo - -Out of the loop on this one. What is white day and why is it important? Is it like the japanese version of valentines day? - -For some reason the first ost fits perfectly well with ononoki's soothing voice. Dont even know why. - -As usual ononoki is cute in whatever she does even when she gives her pledge to live with araragi forever lol. - -Ooo nice an ashita no joe reference. Been a while since I caught a reference. I wonder if the manga ononoki is reading is another one. - -I totally forgot that ononoki is literally a doll to the fire sisters. Possibly due to araragi's wish of leaving the fire sisters out of the supernatural world. - -Poor araragi, no one believes he can get accepted :( - -Nice to see sengoku is doing alright all things considered. That secret definitely has to bee about her drawing manga as a hobby/dream. - -Araragi, my boy, you hit the jackpot. Your girlfriend getting a car is a dream come true so cheer up. - -I dont quite remember the car from hanamonogatari but I think its very similar to this one except for the color. If thats true then they have to be going to the same college! - -Yandere x Tsundere a deadly combo indeed. - -Nice to see senjougahara talk about her career path so passionately and...wow that ending spooked me a bit. - -I cant think of the symbolic reason of having ougi at the end there. This episode had a lot of callbacks to the first date but the biggest one was the same interruptive nature I talked about in bakemonogatari. It shows that his romantic relationship holds a significant priority over other aspects of his life or its simply a way to make us realize hes just a highschool boy. It also confirmed that araragi wont be reciprocating hanekawa's feelings. - -Here the ending may imply otherwise. In the end he isnt just like every highschool boy and has some supernatural problems to face before reaching that level. Ougi is that problem he needs to deal with. - -I love ougi but I have a feeling she will interrupt the fluff tmrw :( - -&#x200B; - -Questions: - -1. Shaft probably felt they could do a better senjougahara montage than the hundreds of fanmade ones out there lol. It also makes its especially easy to rank her looks and reconfirms to me that shorts over leggings is senjougahara's best one. - -&#x200B; - -2. The romance genre is in my top 3 genres so def looking forward to it. Reactions wont be very long as a result but I have a feeling the date will be interrupted by none other than cryptic ougi. - -&#x200B; - -3. The only secret I can think of is that sengoku showed her manga to tsukihi. I dont think she would reveal anything about her medusa past or araragi bizarre adventures as that would introduce tsukihi to the supernatural world and I am confident sengoku doesnt want to harm tsukihi. - -Didnt quite understand what hanekawa meant by the pen part but we got some good old Engrish. There are many chess pieces moving and 2 of them are already in place: Gaen, kiss shot and hachikuji as well as oshino and hanekawa. So far everything generally seems to be working as I predicted beforehand although I am not sure why darkness hasnt shown up yet. I guess there was quite a bit of time in its first appearance. - -Hanekawa helping senjougahara was pretty sweet. I hope that shows shes over araragi cuz its damn painful to see someone you like go out with you friend. - -&#x200B; - -4. This scared me. Not only cuz it was unexpected coming at the end of a very upbeat episode but the implication it may have. Why is ougi mentioned alongside the conversation about the universe? That makes her seem like a much bigger threat than I initially perceived. - -Ougi is watching them probably using her shared connection with araragi. Infinity is significant when it comes to maths and time both of which are heavily linked with araragi and ougi. Dont know why this is important but just wanted to point that out. - -On the other hand they were talking about dreams and passions so maybe thats foreshadowing that ougi has a dream much more grand (universe implying the scale of the dream) than we know.";False;False;;;;1610404887;;False;{};gixpkah;False;t3_kvd9qu;False;False;t3_kvd9qu;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixpkah/;1610460515;18;True;False;anime;t5_2qh22;;0;[]; -[];;;GravelockTV;;;[];;;;text;t2_4zh9xbr6;False;False;[];;"I don’t think it *belongs* to anyone. But if someone is giving me a recommendation and they are a new watcher vs an old watcher, I’ll automatically respect the old watchers opinion more until I see said recommendations. I’m well aware it’s a shitty attitude but I think it just comes from being isolated and treated like shit for liking anime/manga and now it’s the *thing* to be apart of. - -Edit - fixed my main post to clarify better";False;False;;;;1610404958;;1610405712.0;{};gixpphg;True;t3_kvd8vw;False;True;t1_gixobzo;/r/anime/comments/kvd8vw/what_are_your_genuine_thoughts_at_the_continued/gixpphg/;1610460608;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> A proper date between two anime high schoolers in a proper committed relationship without the stupid anime date shenanigans? Just try to convince me this isn't Mongatari's greatest genre subversion so far. - -They also banged before showing a kiss on-screen, I think romance is the most subversive part in the series, he is not even cheating if we discount the one loli kiss that came from his side - -> Is this actually true? And if so, why? - -Schools have a lot of control. Prohibiting part time jobs and the like as well. Can't possibly fall behind in your studies and disgrace the school";False;False;;;;1610404983;;False;{};gixprdv;True;t3_kvd9qu;False;False;t1_gixoywp;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixprdv/;1610460645;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;The core work flow and fundamental processes of traditional animation haven't really changed since the 1930s. Some more advanced tech to provide additional options, and digital technology has changed how cels are painted, but otherwise things are largely the same. Hell, 1940's Fantasia might still be the most impressive work the medium ever produced.;False;False;;;;1610405039;;False;{};gixpvk1;False;t3_kv9id4;False;False;t1_gixoi89;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/gixpvk1/;1610460720;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Webemperor;;MAL;[];;http://myanimelist.net/animelist/Webemperor;dark;text;t2_e60oh;False;True;[];;"First Timer – Sub - -- The scientist(?) lady is being sent back to Tokyo, which means something important is about to happen, which she will miss. Meanwhile the mothers are completely shitfaced and Yuu’s mother did a complete 180 in her personality with a single flashback scene, *sasuga*. - -- I guess “What’s wrong with your mom” is a way of saying “Why is your mom not acting like an insufferable bitch.”. They also seem to be accepting Haruka dematerialized and came back right before their eyes. - -- At this point Miho feels almost caricaturish in her obsession with ghosts. I wonder if they wi- Oh yeah, she just told them. Not gonna lie, at first I thought Karasu teleported away because he got really embarassed when Ai kept on asking questions, but he is just showing off. He does basically sit on the side, petting the cat like a bit of an autist though. - -- Oh yeah, Atori’s still around, were they just feeding on fig leaves to sustain themselves? He keeps with his serial rapist vibes anyway, I do wonder where Karasu is at, doesn’t really seem that he is following them, which he probably should have. I guess it would make sense for Fukurou to follow them though. - -- A lot of technobabble being thrown around, with a character design literally screaming “I’m a piece of shit!”. - -- So was Tobi going together with Atori just so she could stop him? That’s nice of her. Guess it’s time for Atori and Karasu to fight. Animation got pretty good too, compared to yesterday. - -- It kinda amuses me that someone wrote “Dragon Torque” back to back 3 times in the script. The name’s already kinda funny. Meanwhile half of dude’s face is gone, how grisly. - -- Haruka realizes Fukurou is Isami, and claims that Karasu can’t fight him, thought they have to know that already don’t they? Meanwhile Future-Ai talks like she intends to kill Haruka.";False;False;;;;1610405040;;False;{};gixpvmg;False;t3_kvdado;False;False;t3_kvdado;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixpvmg/;1610460722;6;True;False;anime;t5_2qh22;;0;[]; -[];;;smatthew_;;;[];;;;text;t2_13jgn9;False;False;[];;"**Rewatcher** - -1) Besides it being there just to show off every single outfit Senjougahara has ever worn, my head canon about the new opening: We see many moments that show Araragi and Senjougahara doing what couples do. Just day-to-day scenes, that Araragi omits, because they play no part in the story or are simply private. Not much to say about the music. It's there. - - 4) Ougi means handfan. But Ougi doesn't have hands... Everything just got more confusing.";False;False;;;;1610405090;;False;{};gixpzdo;False;t3_kvd9qu;False;False;t3_kvd9qu;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixpzdo/;1610460789;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Dadscope;;;[];;;;text;t2_173u0i;False;False;[];;"Yeah the end of the show was both good and a huge let down. I understand subverting expectations, but the whole show felt like it was about breaking the class structure in place between the Vers Empire and Earth. - -So they lead you on with that, just to re-establish? Doesn't even make sense for the overarching tone of the series.";False;False;;;;1610405127;;False;{};gixq22b;False;t3_kvbfdy;False;True;t3_kvbfdy;/r/anime/comments/kvbfdy/aldnoah_zero_does_slain/gixq22b/;1610460838;1;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;Yeah seems rare for a shounen to start off strong. Only ones I can think of are FMA and AoT.;False;False;;;;1610405185;;False;{};gixq6da;False;t3_kv6gpi;False;True;t1_gixdm76;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/gixq6da/;1610460915;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> Out of the loop on this one. What is white day and why is it important? Is it like the japanese version of valentines day? - -It's a relatively modern [Asian alternative Valentine's Day](https://en.wikipedia.org/wiki/White_Day) - -> I love ougi but I have a feeling she will interrupt the fluff tmrw :( - -​but isn't spooky kouhai just fluffy as well? - -> Why is ougi mentioned alongside the conversation about the universe? - -the universe spreads out like a fan. Ougi means fan. Implications?";False;False;;;;1610405333;;False;{};gixqhb2;True;t3_kvd9qu;False;False;t1_gixpkah;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixqhb2/;1610461125;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ilariad92;;;[];;;;text;t2_11fhfv;False;True;[];;Thank you!;False;False;;;;1610405366;;False;{};gixqjpz;True;t3_kvb5qo;False;True;t1_gixn61c;/r/anime/comments/kvb5qo/attention_to_all_anime_lovers/gixqjpz/;1610461169;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> But Ougi doesn't have hands.. - -we saw the gloves on numerous occasions though";False;False;;;;1610405385;;False;{};gixql60;True;t3_kvd9qu;False;True;t1_gixpzdo;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixql60/;1610461196;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610405394;;False;{};gixqluc;False;t3_kvd8vw;False;True;t3_kvd8vw;/r/anime/comments/kvd8vw/what_are_your_genuine_thoughts_at_the_continued/gixqluc/;1610461207;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;This is a rather weird interpretation of Wacky Races...;False;False;;;;1610405481;;False;{};gixqs92;False;t3_kvdado;False;True;t1_gixpcpc;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixqs92/;1610461322;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DodzReincarnated;;;[];;;;text;t2_6dnzr3j;False;False;[];;good point. if you think traditional animation has long already met it’s peak with your example of Fantasia, when do you think CG will peak? thinking about it seems that it has much more area to grow and improve. as technology improves CG will alongside it.;False;False;;;;1610405491;;False;{};gixqt0k;False;t3_kv9id4;False;True;t1_gixpvk1;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/gixqt0k/;1610461336;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> I'm always perplexed at how casual Japan is about alcohol compared to ""EVIL DRUGS"". - -Sake is intrinsic to Japanese culture. Not even joking. - -> Are we really going to brush off the resolution of Yuu's family conflict in one sentence and leave him loading responsibility on himself? Japan... - -Exactly as I predicted, unfortunately.";False;False;;;;1610405692;;False;{};gixr82d;False;t3_kvdado;False;False;t1_gixoyre;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixr82d/;1610461614;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> I guess because she didn’t know, her motivation was still intent to kill. - -yeah she resolved to kill Teori, just because it was a ruse does not make her decision different - -> they never show the Senjou kisses and I’m ok with that, but at least make it obvious. - -she is already at home so he can't walk her home, a kiss must suffice";False;False;;;;1610405697;;False;{};gixr8hl;True;t3_kvd9qu;False;False;t1_gixluqg;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixr8hl/;1610461623;6;True;False;anime;t5_2qh22;;0;[]; -[];;;chrngfrthnmy;;;[];;;;text;t2_3fyogxaw;False;False;[];;"It's harder to keep up with than I thought it would be! I guess going back to work in-building and buying a house keeps me busier than I expected. - -1. I guess I don't quite understand why there would have to be one specific person in the center all the time bc I've never been involved in idol culture. I think it's nice to share the spotlight. Lots of people in μ's are sort of ""in charge"" of different things, and I think that promotes better teamwork. - -2. I used to karaoke all the time! I loved it. I'd try one of the handful of pop songs that were popular once upon a time - I think ""I Kissed a Girl"" by Katy Perry got heavy rotation bc it was popular, lol. But my favorite karaoke moment was one in Korea, where I lived briefly. It was western-style karaoke hosted by an American bar owner, and for whatever reason The Mars Volta's ""The Widow"" was an option to sing, so I picked it, and he was surprised at how well I did, so I won the ""rotation contest"" and got a free shot of my choosing! Haha. I used to play Guitar Hero and Rock band A LOT. I like that Jubeat game when I go to cons, even though I suck at it. I wait until off-times to play it so I have a chance at hearing it, lol. - -This song didn't hit me as hard as ""START:DASH!!"" but the costumes were extremely cute. - -The episode made me miss singing rooms and arcades, though.";False;False;;;;1610405719;;False;{};gixra10;False;t3_kvbyuf;False;False;t3_kvbyuf;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixra10/;1610461650;4;True;False;anime;t5_2qh22;;0;[]; -[];;;chrngfrthnmy;;;[];;;;text;t2_3fyogxaw;False;False;[];;"> Oneupsmanship does not lead to healthy relationships, Honkoa. - -OH GOSH, that still is kind of creepy!";False;False;;;;1610405826;;False;{};gixri1u;False;t3_kvbyuf;False;True;t1_gixdce9;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixri1u/;1610461802;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HereticalAegis;;;[];;;;text;t2_6xeubalv;False;False;[];;">They also banged before showing a kiss on-screen - -Having seen Domestic Girlfriend and School Days, this part doesn't feel quite as subversive for me as it once did (though the real issue here is probably that those are the first things that come to mind when I think of anime romance and sex, yikes), but I agree with your take overall. The romance is inspired. - ->Can't possibly fall behind in your studies and disgrace the school - -Education is something else in Japan.";False;False;;;;1610405891;;False;{};gixrmqw;False;t3_kvd9qu;False;False;t1_gixprdv;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixrmqw/;1610461888;4;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;On second thought, maybe Honoka is right that she shouldn't be fully leader. Imagine what she would do with that power.;False;False;;;;1610405913;;False;{};gixroca;False;t3_kvbyuf;False;True;t1_gixri1u;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixroca/;1610461919;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> When time stands still why is it that Haraka can pass through doors and nothing else? - -Haruka can only do things she can perceive of doing.";False;False;;;;1610405920;;False;{};gixroui;False;t3_kvdado;False;True;t1_gixpiai;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixroui/;1610461928;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BossandKings;;;[];;;;text;t2_5ifr53k7;False;False;[];;"First Timer - -The group of friends goes to Haruka's house to talk with her and Yuu. She tells them that there's a man from the future in her house, this was nice scene to see because it shows that she confides in them, obviously she had disappeared before so they already knew that there were some abnormality and it was only normal for Haruka to tell them. - -They went to the room Karasu was in and Ai confronted him, not believing at first that he is from the future, he showed her that he is indeed from the future by disappearing voluntarily and reapparing in the same room. The fact that he couldn't tell what's happening fifthteen years from now is very interesting and it might really be because as Haruka says it would interfere with the Past. That Isami and Yuu moment playing was nice to see, they are good friends. - -Atori is unsettling, what is his purpose in antagonizing the kids?, his companion told him that they shouldn't interfere with their actions, that they shouldn't make trouble for the people of that dimension. At least Fukuro appeared to make the guy run away. - -That fight was cool, very nice action. Why did Time stop? - - So many things happened this episode that i'm a bit confused yet very enthusiastic for the following one, , this was a very good episode but i feel like the next one will be much better. - -Answers - -1. I didn't took anything from that, i'll let the show tell me because i have no idea. - -2. My only Fate so far is Extra/Last Encore which i watched around three years ago so i'm not experienced in how the fights work.";False;False;;;;1610405936;;1610406291.0;{};gixrq1b;False;t3_kvdado;False;False;t3_kvdado;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixrq1b/;1610461949;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GravelockTV;;;[];;;;text;t2_4zh9xbr6;False;False;[];;For me, I will give recommendations to new watchers and be completely helpful and supportive to find what they enjoy. What I absolutely hate is when newer watchers get upset with me for not thinking their mid-tier hypebeast anime is the greatest series of all time. I used to follow a lot of anime-meme pages on Instagram but had to unfollow most over the last couple years because my feed was flooded with nothing but rap-music edits and occasionally a good pun.;False;False;;;;1610405937;;False;{};gixrq3c;True;t3_kvd8vw;False;False;t1_gixpcgz;/r/anime/comments/kvd8vw/what_are_your_genuine_thoughts_at_the_continued/gixrq3c/;1610461950;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610405948;;False;{};gixrqvu;False;t3_kvadt9;False;True;t1_gix33e0;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gixrqvu/;1610461965;1;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;I guess they wanted an in-universe explanation for why they have different centers? Definitely not the strongest episode.;False;False;;;;1610405978;;False;{};gixrt2r;False;t3_kvbyuf;False;True;t1_gixmfm6;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixrt2r/;1610462003;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WorldwideDepp;;;[];;;;text;t2_mdp72;False;False;[];;"What was the icing of the Cake for me... - -Why they need to going Secret Weapon V-Rocket!! (again) - -I was all okay, until this point. That thing cut off my neck";False;False;;;;1610406008;;False;{};gixrv6t;False;t3_kvadt9;False;True;t1_gix4eyt;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gixrv6t/;1610462041;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ragnar4king;;;[];;;;text;t2_1tdy6v1;False;False;[];;"Just based on the anime, other than having that bookworm, glasses girl look, doesn't really remind me of her. - -But your comment made me think of something, the Read or Die TV series had both Senjougahara's and Kaiki's VA in it. R.O.D was also referenced in Nisemonogatari, right? - -I don't really have a point here, I just thought it was pretty cool lol - -P.S. It's Yomiko Readman, but I had to look that up";False;False;;;;1610406082;;False;{};gixs0gg;False;t3_kvd9qu;False;False;t1_gixmoth;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixs0gg/;1610462138;5;True;False;anime;t5_2qh22;;0;[]; -[];;;LordTrinity;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/LordTrinity;light;text;t2_muxil3i;False;False;[];;Aoyama is best girl;False;False;;;;1610406106;;False;{};gixs24v;False;t3_kvdbzf;False;False;t3_kvdbzf;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gixs24v/;1610462172;207;True;False;anime;t5_2qh22;;0;[]; -[];;;Conf3tti;;;[];;;;text;t2_x1d3v;False;False;[];;I often see subs refer to Eren as Jaeger, but Zeke and their grandparents as Yeager. Never quite understood that.;False;False;;;;1610406130;;False;{};gixs3ws;False;t3_kv74lk;False;False;t1_gix29uy;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gixs3ws/;1610462206;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SYZekrom;;;[];;;;text;t2_i5y6z;False;False;[];;"**First Timer** - -[This girl is my spirit animal](https://cdn.discordapp.com/attachments/621713361390010378/798283621411979334/image0.jpg) - -[OH MY GOD YOU CAN’T JUST](https://cdn.discordapp.com/attachments/621713361390010378/798283950392606750/image0.jpg) - -[Me when I feel like I’m 50](https://cdn.discordapp.com/attachments/621713361390010378/798286780201173042/image0.jpg)";False;False;;;;1610406199;;False;{};gixs8pv;False;t3_kvbyuf;False;False;t3_kvbyuf;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixs8pv/;1610462310;5;True;False;anime;t5_2qh22;;0;[]; -[];;;tehsigzorz;;;[];;;;text;t2_gwxqygy;False;False;[];;"Ougi fan huh? As I said above I think she might have ambitions larger than we can comprehend but it can also mean that ougi can 'spread' and consume the people around her just like the way the universe spreads out. - -Thats the only thing I can come up with since it seems like turning araragi into a vampire is only step 1 of her plan.";False;False;;;;1610406225;;False;{};gixsakg;False;t3_kvd9qu;False;False;t1_gixqhb2;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixsakg/;1610462345;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;"She listens to reason! No other anime girl I've seen does that in a misunderstanding. Even when she waking up knocked down Sorata in the common room she recognised her mistake. - -Best girl indeed!";False;False;;;;1610406394;;False;{};gixsmqn;False;t3_kvdbzf;False;False;t1_gixs24v;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gixsmqn/;1610462620;132;True;False;anime;t5_2qh22;;0;[]; -[];;;Fun-Ad-1145;;;[];;;;text;t2_7pwzgaqz;False;False;[];;"Rwby definitely wasn't made by one person, the first season was made by a small team with monty doing the fights. - -And season 2 onwards the team kept expanding.";False;False;;;;1610406489;;False;{};gixstpy;False;t3_kv9id4;False;True;t1_giwz2i4;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/gixstpy/;1610462761;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Self_discovery_me;;;[];;;;text;t2_92er7b6r;False;False;[];;Thank you! I'll definitely try it! :);False;False;;;;1610406531;;False;{};gixswsk;True;t3_kv5xaf;False;True;t1_gixfm86;/r/anime/comments/kv5xaf/recommendations_for_animemanga_pls/gixswsk/;1610462842;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tryer1234;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Tryer/animelist;light;text;t2_5r3r5;False;False;[];;Start watching a new anime before you finish the last one. Finish the last one after you're 3 episodes into something new.;False;False;;;;1610406559;;False;{};gixsyus;False;t3_kvcerz;False;True;t3_kvcerz;/r/anime/comments/kvcerz/avoid_the_void_feeling_in_this_situation/gixsyus/;1610462891;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> Ougi fan huh? - -More on a rewatch for sure";False;False;;;;1610406638;;False;{};gixt4ne;True;t3_kvd9qu;False;False;t1_gixsakg;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixt4ne/;1610463017;6;True;False;anime;t5_2qh22;;0;[]; -[];;;BossandKings;;;[];;;;text;t2_5ifr53k7;False;False;[];;"I too think that Kosagi could be Miho, she just striked me as too similar when she told Haruka 'if not for you""";False;False;;;;1610406778;;False;{};gixtewh;False;t3_kvdado;False;True;t1_gixlhjr;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixtewh/;1610463211;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MasterAdventZero;;;[];;;;text;t2_d3qbcic;False;False;[];;"The hell you mean, ""Hopefully not going to a get dub!""? Considering Funimation dubbed first show I'm pretty sure this show will get a dub whether you like it or not.";False;False;;;;1610406793;;False;{};gixtfzr;False;t3_kvadt9;False;False;t1_gix4eyt;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gixtfzr/;1610463232;6;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;So for the manga, [this seems promising](https://anime.stackexchange.com/questions/41849/what-is-yotsugi-ononoki-reading-in-hitagi-rendezvous);False;False;;;;1610406809;;False;{};gixth4r;True;t3_kvd9qu;False;False;t1_gixkrlt;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixth4r/;1610463253;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;"Well, I think that the only thing fundamentally stopping CG in anime from reaching higher heights is that it's limited by available cash. The gaming industry in Japan has been pumping out high quality CG visuals since the 00s, and a few recent anime films like Lupin III The First show that the tech is there. - -Elsewhere in the world we've already seen absolutely incredible works from Disney, Pixar, Sony, and other studios. I don't know if I'd say that right now is the peak, but I don't think that there's likely to be many radical changes in what can be done with the technology (though advances in computer tech will make things easier).";False;False;;;;1610406847;;False;{};gixtjtz;False;t3_kv9id4;False;True;t1_gixqt0k;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/gixtjtz/;1610463309;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610406951;;False;{};gixtr8k;False;t3_kv74lk;False;True;t1_giwzn5l;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gixtr8k/;1610463443;6;True;False;anime;t5_2qh22;;0;[]; -[];;;amhpanther;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/amhpanther;light;text;t2_i19ga;False;False;[];;"Honk, Honks or Honkers yeah. Although funnily enough it took me like 3 years of being a Love Live fan to realise that ""honkers"" was in fact *not* referring to Hanayo's boobs (or that she's nowhere near as busty as I remembered). - -[](#fingertwirl) - -Kotori is birb. Maki is tomato. Hanayo is Rice or Pana. Sometimes Nozomi gets called Nontan, but that's way less common and might just be me because I can't remember where I picked it up from.";False;False;;;;1610406975;;False;{};gixtsy9;False;t3_kvbyuf;False;False;t1_gixiney;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixtsy9/;1610463474;9;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Now I think it is the Pretty Boy Detective Club, [source here](https://anime.stackexchange.com/questions/41849/what-is-yotsugi-ononoki-reading-in-hitagi-rendezvous);False;False;;;;1610407016;;False;{};gixtvwv;True;t3_kvd9qu;False;False;t1_gixs0gg;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixtvwv/;1610463530;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ragnar4king;;;[];;;;text;t2_1tdy6v1;False;False;[];;"> Japan's response to Covid19. - -Haha, the replies are pretty funny";False;False;;;;1610407032;;False;{};gixtx2q;False;t3_kvd9qu;False;False;t1_gixm758;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixtx2q/;1610463550;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;Oh shit! I didn't know this was coming out today! What a nice dose of fluff. That [End Card](https://imgur.com/a/DsXgoyl) sure was beautiful.;False;False;;;;1610407047;;False;{};gixty5o;False;t3_kvadt9;False;False;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gixty5o/;1610463571;7;True;False;anime;t5_2qh22;;0;[]; -[];;;AshenOwn;;MAL;[];;https://myanimelist.net/profile/Lazysunflower;dark;text;t2_xtici;False;False;[];;I started it last night. What do you mean it doesnt starts great? I knew it was going to be a wild ride just from reading the synopsis. I watched like 7 episodes in one sitting. It’s really good.;False;False;;;;1610407055;;False;{};gixtysp;False;t3_kv823r;False;True;t1_gixdgbh;/r/anime/comments/kv823r/recommend_me_a_show_but_with_a_spin_d/gixtysp/;1610463582;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rustic_Professional;;;[];;;;text;t2_pajnr;False;False;[];;"Was Laffey literally drinking herself to sleep every night? That's... Huh... I'm not an Azur Lane fan, but I do play World of Warships, which has had several collaboration events. I only know a handful of the characters, like Hipper, Belfast, and Nelson. Having the loliboat drink to fall asleep seems wildly out of sync with them having a wholesome pillow fight to tire her out. - -In any case, I'm interested in seeing how the AL world works. I know from the Kancolle anime that the girls themselves are the ships, but I don't know if AL operates the same way.";False;False;;;;1610407357;;False;{};gixuk7h;False;t3_kvadt9;False;False;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gixuk7h/;1610463992;7;True;False;anime;t5_2qh22;;0;[]; -[];;;k4r6000;;;[];;;;text;t2_3q0qar7q;False;False;[];;Issei does in High School DxD. So does Rias for that matter.;False;False;;;;1610407499;;False;{};gixuuap;False;t3_kv9pzr;False;True;t3_kv9pzr;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/gixuuap/;1610464191;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ragnar4king;;;[];;;;text;t2_1tdy6v1;False;False;[];;Oh, isn't that the one that's getting an adaptation soon?;False;False;;;;1610407529;;False;{};gixuwey;False;t3_kvd9qu;False;True;t1_gixtvwv;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixuwey/;1610464233;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Damianx5;;;[];;;;text;t2_owd0o;False;False;[];;"no one: - -literally no one: - -Javelin: AZUR LANE!!!!!";False;False;;;;1610407572;;False;{};gixuzgw;False;t3_kvadt9;False;False;t1_gixforu;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gixuzgw/;1610464293;30;True;False;anime;t5_2qh22;;0;[]; -[];;;JustAnswerAQuestion;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JAaQ/;light;text;t2_66xzcvc;False;False;[];;"> Time stop - -Time always stops when the birds fight each other. Back in episode 2? they said it was the dimension destabilizing.";False;False;;;;1610407661;;False;{};gixv5ut;False;t3_kvdado;False;False;t1_gixrq1b;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixv5ut/;1610464425;5;True;False;anime;t5_2qh22;;0;[]; -[];;;LostHero50;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/HooTheOwl/;light;text;t2_hyb88;False;False;[];;I finished watching a couple of days ago and man I was rooting for her the whole time.;False;False;;;;1610407791;;False;{};gixvf4x;True;t3_kvdbzf;False;False;t1_gixs24v;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gixvf4x/;1610464610;61;True;False;anime;t5_2qh22;;0;[]; -[];;;SirQrlBrl;;;[];;;;text;t2_h3twv;False;False;[];;My biggest concerns is that the rising popularity of anime will lead to anime declining in overall quality even more than usual.;False;False;;;;1610407819;;False;{};gixvh4h;False;t3_kvd8vw;False;False;t3_kvd8vw;/r/anime/comments/kvd8vw/what_are_your_genuine_thoughts_at_the_continued/gixvh4h/;1610464653;4;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Yeah, by Shaft and with Shinbo at the helm;False;False;;;;1610407838;;False;{};gixviiy;True;t3_kvd9qu;False;True;t1_gixuwey;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixviiy/;1610464681;2;True;False;anime;t5_2qh22;;0;[]; -[];;;loomnoo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/loomnoo;light;text;t2_5ev8pklg;False;False;[];;"Your mistake was using Instagram for anime stuff. It's a platform full of kids (TikTok as well) so of course you're gonna have that kind of thing. It's leaking into here as well as reddit gets exposed to younger and younger people every year, but you can just ignore it and move on. Yeah the ""hypebeast culture"" is a little annoying but it doesn't really hurt anyone.";False;False;;;;1610407850;;False;{};gixvjhj;False;t3_kvd8vw;False;False;t1_gixrq3c;/r/anime/comments/kvd8vw/what_are_your_genuine_thoughts_at_the_continued/gixvjhj/;1610464699;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hattakiri;;;[];;;;text;t2_wuy07;False;False;[];;"OP's questions: - -1/) What do you think about μ's decision for the leader/ center position? Was this a good decision? Who do you prefer as center? - -Well, this ep showed us Honk is the de facto center cause due to her natural radiance she can bring them all together and make them work together. Trope-wise she's a symbiosis of [Lancer](https://tvtropes.org/pmwiki/pmwiki.php/Main/TheLancer) and [Manic Pixie Dreamgirl](https://tvtropes.org/pmwiki/pmwiki.php/Main/ManicPixieDreamGirl) I'd say. - -De jure Nico still is the chairwoman of the club. And she does remind me of another club leader, Haruhi XD After all, µ's too is meant to be this school's SOS Brigade. - -And as always we get a lot of critical hints and infos: - -* Honk sleeping during class, again like Haruhi and many others. Nijigasaki fans also know about a [certain girl...](/s ""called Kanata who has a scholarship to maintain and housework to fulfil and thus falls asleep all the time during the day"") who also gotta cope with [Inemuri](https://en.wikipedia.org/wiki/Sleeping_while_on_duty), that often grows into [Karoshi.](https://www.youtube.com/watch?v=Qp_KiDqfjGo) -* Honk also has to help out in her mom's bakery, but the personalities of her family members are even more strenouos. We were getting to see both aspects already in ep4 together with Kayo, weren't we. -* And it's again Haruhi who did a filming session of such a kind. She too isn't too good at asking for permission. However it has to do with her [relationship with Kyon...](/s ""...and with the question if he might be the actual center. This would make her a Decoy Protagonist like Madoka Kaname with Homura Akemi as the actual main char and anti-heroine. Two big debates"") -* Their karaoke ""showdown"" tho might refer to another KyoAni gem: Lucky Star. Both Konata and Akira Kogami do karaoke XD However Akira's idol background is being revealed already in ep1... -* Kotori and her schoolbag: Big foreshadowing!! -* Nozomi keeps being around and supporting them. *""Why don't you join them already?""* - *""Well Elicchii - the cards tell me YOU gotta join and help them!!""* ...hard to imagine, ain't it... -* Also Kayo is more and more [defrosting...](/s ""...in the next ep she's gonna tell them about a certain Love Live contest. Another char without whom the story fabric would become a totally different thing"") - -Most of all: They seem to be no suitable at all for a business like the idol business for they're looking and behaving like lazy goofballs in their vid, quote Umi XD However lbh how many RL celebs are [ordinary people as well? And...](/s ""...how often are their lives getting more and more troubled because of that? Yup, another quintessential premise for Love Live and already Akira Kogami..."") - -It however has to do with their decision for a center and whether or not [it was a good decision...](/s ""because there's a third trope covered by Honk's character concept: The already mentioned Decoy Protagonist, thus she's not even the actual center. Nor is Nico. It'll take until S2 however until it's revealed. It's a trope that the first two LL chapters superbly play around with imo. We'll see what the third chapter Nijigaku is going to make of it..."") - -2/) Do you have a go to song for karaoke or a rhythm/ dancing game you like to play? - -Melodic and symphonic rock which is quite exhausting XD And in Sunshine there will be a certain [Riko Sakurauchi...](/s ""...who, according to her composing style, seems to be into symphonic and progressive rock even way more than Maki. Mirai Ticket, Omoi, Kiseki Hikaru and Water Blue New World hint this imo"") - -I'm incapable of Japanese songs or rhythm and dancing XD";False;False;;;;1610407930;;1610443411.0;{};gixvp7o;False;t3_kvbyuf;False;True;t3_kvbyuf;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixvp7o/;1610464816;3;True;False;anime;t5_2qh22;;0;[]; -[];;;S-r-ex;;;[];;;;text;t2_bfvu9;False;False;[];;Ah yes, episode 4. My uneducated guess is the lone animator who also storyboarded and directed that episode on his own ran out of time.;False;False;;;;1610408120;;False;{};gixw2nu;False;t3_kvadt9;False;False;t1_gix9731;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gixw2nu/;1610465063;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;">oh boy, Fujiwara is about to become a hentai protagonist, isn't he? - -[](#nosenpai) - ->I am beginning to wonder if the world ourobouros is separate from Haruka's. - -[](#csikon) - -[Speculation](/s ""I kinda figured that the big ouroboros is Karasu's Haruka's eventual fate. It stops time by observing things."")";False;False;;;;1610408123;;False;{};gixw2y2;False;t3_kvdado;False;False;t1_gixkty2;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixw2y2/;1610465069;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> [](#nosenpai) - -Senpai yes! - -@speculation That works pretty well,";False;False;;;;1610408330;;False;{};gixwhqo;False;t3_kvdado;False;True;t1_gixw2y2;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixwhqo/;1610465475;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;But we established Miho is a mother in the upper strata with Lily...;False;False;;;;1610408517;;False;{};gixwv8t;False;t3_kvdado;False;False;t1_gixtewh;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixwv8t/;1610465840;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BossandKings;;;[];;;;text;t2_5ifr53k7;False;False;[];;I think that you are right;False;False;;;;1610408620;;False;{};gixx2ne;False;t3_kvdado;False;True;t1_gixwv8t;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixx2ne/;1610466002;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chrngfrthnmy;;;[];;;;text;t2_3fyogxaw;False;False;[];;With enough supporters, she could become **too** powerful...;False;False;;;;1610408669;;False;{};gixx68j;False;t3_kvbyuf;False;True;t1_gixroca;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixx68j/;1610466092;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ricmord;;;[];;;;text;t2_ro02t;False;False;[];;">Wait again since Araragi have a driving license in Hana does that mean he actually managed to stay human for the rest of monogatari? - -You guys overstimate how much powers Araragi had, all he had was a bit of regeneration, nothing else. -His reflection showed clearly in the past arcs, that's why in tuski it was such a big deal that he didn't had it.";False;False;;;;1610408740;;False;{};gixxb6n;False;t3_kvd9qu;False;False;t1_gixlwrp;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixxb6n/;1610466199;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> I guess “What’s wrong with your mom” is a way of saying “Why is your mom not acting like an insufferable bitch.”. They also seem to be accepting Haruka dematerialized and came back right before their eyes. - -While this applies to all humans, the Japanese in particular do not like surprise changes in character. - -> He does basically sit on the side, petting the cat like a bit of an autist though. - -Taking the edge trait has...consequences. - -> Oh yeah, Atori’s still around, were they just feeding on fig leaves to sustain themselves? - -Tons of bugs in Japan in the summer, I am sure they feasted.";False;False;;;;1610408852;;False;{};gixxj13;False;t3_kvdado;False;True;t1_gixpvmg;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixxj13/;1610466361;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;After a while, yes.;False;False;;;;1610408998;;False;{};gixxtj4;False;t3_kvdado;False;True;t1_gixv5ut;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixxtj4/;1610466572;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BlackSCrow;;;[];;;;text;t2_837fn80k;False;False;[];;I think most of romcom MCs still have their parents.;False;False;;;;1610409063;;False;{};gixxy85;False;t3_kv9pzr;False;True;t3_kv9pzr;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/gixxy85/;1610466666;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Webemperor;;MAL;[];;http://myanimelist.net/animelist/Webemperor;dark;text;t2_e60oh;False;True;[];;"> Tons of bugs in Japan in the summer, I am sure they feasted. - -With how tasty Haruka mentioned them being when she was inside that underground base, I assume the insects in this dimension are not that edible to them. Or maybe they just season them really, really well.";False;False;;;;1610409159;;False;{};gixy53n;False;t3_kvdado;False;True;t1_gixxj13;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixy53n/;1610466793;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BishItsPranjal;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/kakusuu;light;text;t2_tnss6uh;False;False;[];;"I've heard this show has [spoiler](/s ""NTR""), which I hate. Is it true?";False;False;;;;1610409209;;False;{};gixy8mh;False;t3_kvdcg9;False;True;t1_gixmwz6;/r/anime/comments/kvdcg9/anime_about_territorial_conquests_creating_empire/gixy8mh/;1610466860;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheOneAboveGod;;;[];;;;text;t2_grcpz;False;False;[];;"> Niimi finally gets her much deserved screen time - -Well now I have to watch this.";False;False;;;;1610409210;;False;{};gixy8op;False;t3_kvadt9;False;False;t1_gix33e0;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gixy8op/;1610466861;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;Actually, unfortunate that I know this, but bugs take the flavor of what you feed them. So the grubs in La'cryma are probably raised on tasty flour stock of some kind.;False;False;;;;1610409257;;False;{};gixyc2l;False;t3_kvdado;False;True;t1_gixy53n;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixyc2l/;1610466927;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EverythingsRed2;;;[];;;;text;t2_75royj7g;False;False;[];;"First timer (subbed) - -The best of the best, Atori, is back in action, this time with a loveable plan to kidnap children <3. His purple haired friend is quite interesting. I wonder what plot point he'll play into with his advanced magicy-stuff ability. They are polar opposites of eachother, I wonder if Atori will warm up to his friend before vanishing. - -It seems like my assumptions a few episodes was correct, that the organization that the 2 scientists are in is the same one in the future, just based off of the chairs alone. A quantum teleporter, could that be a precursor to the machine that lets the Dragon knights enter different dimensions? In a previous episode it stated (I think) that they used alternate Harukas' dragon torque to power it, so will it be the same case here? Also square-head man seemed important, I bet he'll reappear. - -In my opinion it was pretty one-sided of Haruka to reveal that she has a time traveler and NOT tell them about how she ended up in the future. Surely just saying that the world will end up in an apocalyptic state would be enough. If that is the future, shouldn't you want that changed? I get that White hairs' existence must be secret and whatnot, but URGH this annoys me. - -Qs. - -1. ""If it hadn't been for you, Haruka, My hair wouldn't be in such a mess today! Do you know how much time it took me to get my hair all straightened out, just for it to come undone in the unraveling's of dimensional shifts?!!"" -Ai. That or maybe she's the reason that Noein and its band of monstrosities visit each dimension? -2. Oh 100% my boy Atori, if nothing else then to play chaotic neutral and wreck havoc to mess with everyone's' plans.";False;False;;;;1610409270;;False;{};gixyczl;False;t3_kvdado;False;False;t3_kvdado;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixyczl/;1610466943;5;True;False;anime;t5_2qh22;;0;[]; -[];;;blackmagemasta;;MAL;[];;https://myanimelist.net/profile/blackmagemasta;dark;text;t2_aceb1;False;False;[];;IDK. Don't remember it.;False;False;;;;1610409392;;False;{};gixylms;False;t3_kvdcg9;False;True;t1_gixy8mh;/r/anime/comments/kvdcg9/anime_about_territorial_conquests_creating_empire/gixylms/;1610467116;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Giroln;;;[];;;;text;t2_2vcvxbnr;False;False;[];;"**Rewatcher** - -Overall a cooldown episode after all the things that happened yesterday. - -Showeragi is very appreciated. Glad he is continuing to move towards a more healthy mindset. - -Approximately 180 days of dates all in 1? Sounds like they got their work cut out for them. Senjou is also really cute this episode. - -Feel bad for Ononoki. Not only is Kiss-Shot going to Bulli her extra hard, but she also has to deal with Tsukihi treating her like a plush toy. Also nobody has confidence that he passed his exam lol. - -You can get in that much trouble in Japan just for driving in High-School? Weird. Also glad Hanekawa almost found Oshino. And it seems like space is mapped out like an Ougi (Fan). And we get a creepy eye to remind us that Ougi hasn't been dealt with and hint to what the future will hold.";False;False;;;;1610409440;;False;{};gixyp33;False;t3_kvd9qu;False;False;t3_kvd9qu;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gixyp33/;1610467185;5;True;False;anime;t5_2qh22;;0;[]; -[];;;monsieurvampy;;;[];;;;text;t2_453ax;False;False;[];;"**First Timer, subbed** - -I see Haruka is back to being dense. - - -Questions: - -Future Haruka probably screwed him over. - - -Zero-Two";False;False;;;;1610409471;;False;{};gixyraz;False;t3_kvdado;False;True;t3_kvdado;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixyraz/;1610467228;3;True;False;anime;t5_2qh22;;0;[]; -[];;;IXajll;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ixajii;light;text;t2_ob6j8;False;False;[];;I just hope that 3d cgi anime don’t push traditional 2d animation out of the market in the upcoming years. I have no idea how likely that is to be fair though.;False;False;;;;1610409605;;False;{};gixz0ky;False;t3_kvd8vw;False;False;t3_kvd8vw;/r/anime/comments/kvd8vw/what_are_your_genuine_thoughts_at_the_continued/gixz0ky/;1610467411;6;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">dumb all around - -I give it until the midpoint to improve, this was definitely a backslide";False;False;;;;1610409659;;False;{};gixz4e6;False;t3_kvdado;False;True;t1_gixl0h3;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/gixz4e6/;1610467491;3;True;False;anime;t5_2qh22;;0;[]; -[];;;blitzen001;;;[];;;;text;t2_3w1yi46g;False;False;[];;Why did u tag it as spoiler?;False;False;;;;1610409779;;False;{};gixzcp4;False;t3_kv74lk;False;True;t3_kv74lk;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gixzcp4/;1610467645;0;True;False;anime;t5_2qh22;;0;[]; -[];;;FarrelMFajar;;;[];;;;text;t2_13bxx0;False;False;[];;"MAL: ""Only 1/3 of the standard air time? I'll give this anime a 3.3 at best.""";False;False;;;;1610409805;;False;{};gixzekc;False;t3_kvadt9;False;False;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gixzekc/;1610467678;10;True;False;anime;t5_2qh22;;0;[]; -[];;;degenerated_weeb;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Can’t escape the peko hole;dark;text;t2_3cku6n8b;False;False;[];;"Finally, a good Azurlane anime, I’m so happy... - -~~Arknights anime when Yostar?~~";False;False;;;;1610409835;;False;{};gixzgl1;False;t3_kvadt9;False;False;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gixzgl1/;1610467715;9;True;False;anime;t5_2qh22;;0;[]; -[];;;ThirtyThree111;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Thirty-three;light;text;t2_72yjoip0;False;False;[];;"Actually on episode 3 Kotori mentioned something about ""some last minute touch-ups at the tailor's"" so I would assume that she had the outfits made by an actual tailor and she only designed them. She's just the fashion designer not the actual person who creates the outfits. Maybe..";False;False;;;;1610410070;;False;{};gixzwp1;False;t3_kvbyuf;False;True;t1_gixp9x3;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/gixzwp1/;1610468018;3;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;She better be living in a mansion like Mako if she has all of them hand-made by a tailor. Of course, this being anime, I would not rule that out.;False;False;;;;1610410179;;False;{};giy043d;False;t3_kvbyuf;False;True;t1_gixzwp1;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/giy043d/;1610468158;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UMR_Doma;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/Wynx/;light;text;t2_53xy08bn;False;False;[];;Shining through the city with a little fucking soul...;False;False;;;;1610410230;;False;{};giy07o1;False;t3_kv9cd7;False;False;t3_kv9cd7;/r/anime/comments/kv9cd7/dynamite_non_non_biyori_episode_07/giy07o1/;1610468225;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Wolfgod_Holo;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;Still waiting for Spice and Wolf Season 3;light;text;t2_xdcy6;False;False;[];;ORA ORA ORA ORA ORA ORA ORA ORA ORA ORA ORA ORA ORA;False;False;;;;1610410272;;False;{};giy0an5;False;t3_kv9cd7;False;True;t3_kv9cd7;/r/anime/comments/kv9cd7/dynamite_non_non_biyori_episode_07/giy0an5/;1610468278;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wolfgod_Holo;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;Still waiting for Spice and Wolf Season 3;light;text;t2_xdcy6;False;False;[];;I still can't believe Hotaru is a 5th grader;False;False;;;;1610410340;;False;{};giy0feh;False;t3_kv9cd7;False;False;t3_kv9cd7;/r/anime/comments/kv9cd7/dynamite_non_non_biyori_episode_07/giy0feh/;1610468365;5;True;False;anime;t5_2qh22;;0;[]; -[];;;pweavd;;;[];;;;text;t2_zkkwu;False;False;[];;it's ereh! thanks! :D;False;False;;;;1610410346;;False;{};giy0fv1;True;t3_kv74lk;False;True;t1_gixaluu;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/giy0fv1/;1610468372;3;True;False;anime;t5_2qh22;;0;[]; -[];;;pweavd;;;[];;;;text;t2_zkkwu;False;False;[];;it's a scene from the latest episode so..;False;False;;;;1610410375;;False;{};giy0hw2;True;t3_kv74lk;False;True;t1_gixzcp4;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/giy0hw2/;1610468409;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ReverieMetherlence;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;http://myanimelist.net/animelist/SrrL;light;text;t2_89mm0;False;False;[];;Yes, in-universe Laffey is a drunkard, for example, check the wedding skin [chibi animation](https://youtu.be/Hiu9lr7_1n8?t=73) (bottom left corner). Also her Juustagram (an in-game parody of Instagram) nickname is Lafite.82, a wine reference.;False;False;;;;1610410442;;False;{};giy0mmr;False;t3_kvadt9;False;False;t1_gixuk7h;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giy0mmr/;1610468495;15;True;False;anime;t5_2qh22;;0;[]; -[];;;pweavd;;;[];;;;text;t2_zkkwu;False;False;[];;thanks a lot!;False;False;;;;1610410505;;False;{};giy0r2q;True;t3_kv74lk;False;True;t1_gixmmlk;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/giy0r2q/;1610468578;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Clean-Parsley-4667;;;[];;;;text;t2_9ppnzj8e;False;False;[];;"Tsukihi has her own unique definition of friendship. To her, ""friends"" are not specific people, ""friends"" is a mode of interaction with everyone. She says that something must be wrong with Araragi if he can only name some finite number of people as his friends.";False;False;;;;1610410632;;False;{};giy0zzm;False;t3_kvd9qu;False;False;t1_gixn09p;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/giy0zzm/;1610468747;8;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">spending those 10 minutes of introducing everybody, of proving Karasu’s origin, make the characters more real - -Idk, it feels if anything less real when nobody really cares.";False;False;;;;1610410718;;False;{};giy15zw;False;t3_kvdado;False;False;t1_gixkohv;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/giy15zw/;1610468855;6;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">closet Karasu - -Hey, as an edgelord he's already out-and-proud.";False;False;;;;1610410918;;False;{};giy1k1v;False;t3_kvdado;False;True;t1_gixnirt;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/giy1k1v/;1610469115;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Wolfgod_Holo;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;Still waiting for Spice and Wolf Season 3;light;text;t2_xdcy6;False;False;[];;Alice and loli basketball girl is giving Kirito all kinds of trouble;False;False;;;;1610410946;;False;{};giy1lzh;False;t3_kvdbzf;False;False;t3_kvdbzf;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giy1lzh/;1610469151;10;True;False;anime;t5_2qh22;;0;[]; -[];;;fortyfivethirtythree;;;[];;;;text;t2_5dlsi2j1;False;False;[];;it looks like someone's interested in shinsekai yori. reaaallly weird show that gets heavy into its internal politics;False;False;;;;1610410950;;False;{};giy1ma4;False;t3_kvdcg9;False;False;t3_kvdcg9;/r/anime/comments/kvdcg9/anime_about_territorial_conquests_creating_empire/giy1ma4/;1610469156;1;True;False;anime;t5_2qh22;;0;[]; -[];;;greatgatsbykevin;;;[];;;;text;t2_2pbgv9cz;False;False;[];;Studio orange is the only one doing it right rn. Others do it to save cost and it looks exactly like that but shows like beastars are actually pushing the possibilities of anime cg to the point where it could eventually become better than 2d;False;False;;;;1610410971;;False;{};giy1npa;False;t3_kv9id4;False;True;t3_kv9id4;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/giy1npa/;1610469185;0;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">So was Tobi going together with Atori just so she could stop him? - -She could and should have easily done that earlier instead of all this nonsense.";False;False;;;;1610411031;;False;{};giy1s2b;False;t3_kvdado;False;True;t1_gixpvmg;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/giy1s2b/;1610469269;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;Proud is not the word, more like angry and out.;False;False;;;;1610411073;;False;{};giy1uzc;False;t3_kvdado;False;True;t1_giy1k1v;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/giy1uzc/;1610469326;3;True;False;anime;t5_2qh22;;0;[]; -[];;;pweavd;;;[];;;;text;t2_zkkwu;False;False;[];;thank you, kind stranger!;False;False;;;;1610411111;;False;{};giy1xsu;True;t3_kv74lk;False;True;t1_gixgybe;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/giy1xsu/;1610469382;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WindMlst;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Fap to shipgirls | https://myanimelist.net/profile/RensouhouKII;light;text;t2_7hwwj;False;False;[];;[USAMIMI USAMIMI USAMIMI!!~](https://gfycat.com/grimyjitteryilsamochadegu);False;False;;;;1610411124;;False;{};giy1ypc;False;t3_kvadt9;False;False;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giy1ypc/;1610469401;9;True;False;anime;t5_2qh22;;0;[]; -[];;;pweavd;;;[];;;;text;t2_zkkwu;False;False;[];;haha it's supposed to be creepy. thanks!;False;False;;;;1610411179;;False;{};giy22ka;True;t3_kv74lk;False;True;t1_gixp13p;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/giy22ka/;1610469476;1;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;Why would they not care?;False;False;;;;1610411227;;False;{};giy25xz;False;t3_kvdado;False;True;t1_giy15zw;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/giy25xz/;1610469545;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lenne18;;;[];;;;text;t2_o2hru;False;False;[];;"*""Everyone will sing, and everyone will get to be the center!""* - -&nbsp; - -[Nobody ever said it has to be balanced among them...](http://i.imgur.com/TFUNR6k.png) - -[](#nicoisdone) - -&nbsp; - -Anyway, this episode marks the first time a subunit is referenced. - -An idol subunit is a smaller group formed using members of the main group. This allows the subunit group to experiment or offer a different style and feel from the main group. - -For μ's, we have three official subunits, each with three members. - -Today, let's introduce one of them: the Eli-Nico-Maki subunit, the fan favorite **BiBi**. - -&nbsp; - -###B-Side Jukebox, Music Start! - -&nbsp; - -[Love Novels - BiBi](https://www.youtube.com/watch?v=osKlSVYbb28) - -* A cute, funny love song with a catchy melody, topped with cute choreography. An instrumental version plays in the episode during the karaoke scene. -* Nico is the center for this song but the line distribution doesn't make it really clear. -* My favorite version is this [live version](https://www.youtube.com/watch?v=dxcRO_bhrCE) with Aina Kusuda/Nozomi. Eli's VA, Yoshino Nanjo, was unable to attend due to scheduling conflicts with her band, [fripSide.](https://myanimelist.net/people/8544/fripSide) - - -[Trouble Busters - BiBi](https://www.youtube.com/watch?v=mQvWniRXXPs) - -* Nico's presence is prominent throughout the song. While Maki and Eli are in the song, their roles are minimal compared to Nico's. I don't even know how Nico managed to make Maki and Eli perform this... -* Nico is the designated rapper for µ's but this is not her first time rapping. That distinction belongs to *Wonderful Rush*, which we'll get to later during the rewatch. -* [4th Live performance.](https://streamable.com/nxv5)";False;False;;;;1610411266;;False;{};giy28q5;False;t3_kvbyuf;False;False;t3_kvbyuf;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/giy28q5/;1610469600;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;That’s the thing with Charlotte imo, the finale could’ve been longer but honestly it didn’t really need to be cause it’s not the point of the show;False;False;;;;1610411284;;False;{};giy29xo;False;t3_kvbzou;False;False;t1_gixoczc;/r/anime/comments/kvbzou/key_president_teases_plans_for_anime_of_summer/giy29xo/;1610469623;4;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;It's more like they show no particular reaction or curiosity about it;False;False;;;;1610411368;;False;{};giy2fwt;False;t3_kvdado;False;True;t1_giy25xz;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/giy2fwt/;1610469746;3;True;False;anime;t5_2qh22;;0;[]; -[];;;pweavd;;;[];;;;text;t2_zkkwu;False;False;[];;i agree, killing is bad.;False;False;;;;1610411375;;False;{};giy2gez;True;t3_kv74lk;False;False;t1_gixtr8k;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/giy2gez/;1610469755;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Asd_89;;;[];;;;text;t2_cb2mz;False;False;[];;Would Gohan count when he was kinda the mc of DBZ?;False;False;;;;1610411469;;False;{};giy2mxr;False;t3_kv9pzr;False;True;t3_kv9pzr;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/giy2mxr/;1610469882;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">the School Idol part has a very minor effect on what's happening - -No room for that in a K-On clone";False;False;;;;1610411494;;False;{};giy2oot;False;t3_kvbyuf;False;True;t1_gixcuf2;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/giy2oot/;1610469914;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;True;[];;The speculation seems likely.;False;False;;;;1610411683;;False;{};giy321n;False;t3_kvdado;False;True;t1_gixw2y2;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/giy321n/;1610470182;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TROPiCALRUBi;;;[];;;;text;t2_852at;False;False;[];;"It's actually a reference to the IRL USS Laffey. Her crew had a reputation for being fond of ""torpedo juice"". - -This was an alcoholic mix of 2 parts 180 proof grain alcohol (the stuff used to power the motors in the mk18 Torpedos) and 3 parts pineapple juice.";False;False;;;;1610411839;;False;{};giy3d0f;False;t3_kvadt9;False;False;t1_gixuk7h;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giy3d0f/;1610470400;19;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"I mean in that way that is gatekeeping in itself because you will have new fans that do feel a need to police what they think should be tolerated same as true with fans already existing. There are always going to be desirable fans and less ones everyone has some ideal. - -It's not a new thing either we got way too much of a zero sum game mentality in the fanbase. I would argue so far we aren't that much of a fanbase in the first place.";False;False;;;;1610411949;;False;{};giy3kqj;False;t3_kvd8vw;False;False;t1_gixpcgz;/r/anime/comments/kvd8vw/what_are_your_genuine_thoughts_at_the_continued/giy3kqj/;1610470557;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lenne18;;;[];;;;text;t2_o2hru;False;False;[];;Typical idol groups from that time have the center and the leader as the same person.;False;False;;;;1610411995;;False;{};giy3nzy;False;t3_kvbyuf;False;True;t1_gixmfm6;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/giy3nzy/;1610470628;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lenne18;;;[];;;;text;t2_o2hru;False;False;[];;Nontan gets used by JP fans, including 3D µ's;False;False;;;;1610412124;;False;{};giy3x8p;False;t3_kvbyuf;False;True;t1_gixtsy9;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/giy3x8p/;1610470826;3;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;There's an old [series](https://myanimelist.net/anime/1442/Alexander_Senki) about Alexander the Great, but apparently it's not much good. Also has a [film version](https://myanimelist.net/anime/5157/Alexander_Senki_Movie) that's rated a little better.;False;False;;;;1610412546;;False;{};giy4qlt;False;t3_kvdcg9;False;True;t3_kvdcg9;/r/anime/comments/kvdcg9/anime_about_territorial_conquests_creating_empire/giy4qlt/;1610471410;1;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;Well for manga technically Spy x Family (granted they are adopted parents). Bakuman as well (though both parents aren't super involved in the plot). It's more common in action adventure titles SOL you probably can find this to be way less common.;False;False;;;;1610412607;;False;{};giy4uvi;False;t3_kv9pzr;False;True;t3_kv9pzr;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/giy4uvi/;1610471497;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fiminate;;;[];;;;text;t2_4so3bll8;False;False;[];;Damn bruv that’s creepier than the original. Good job!;False;False;;;;1610412728;;False;{};giy53cj;False;t3_kv74lk;False;True;t3_kv74lk;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/giy53cj/;1610471679;1;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"How is this season using more CGI than in a single season? Even in visually stunning anime like Violet Evergarden used CGI for effects and water as well the type writers. It's more common than you realize. - -I don't get where the premise of this thread is coming from. Personally I haven't noticed how this season is using it more than say a year ago or even 4 years ago. - -Though yeah the response by silent shadow is correct it's often due to time saving measures or not having the talent but as said before there can be good creative decisions to use it. - - - -In large though CGI is good when it's not the main attraction in anime. It can be helpful for visual effects, backgrounds when doing fast scenes or other elements like rotoscoping so when people say it shouldn't ever be used that is taking it too far. Though even Orange while Beastars designs look good their motion still at times has issues like in action scenes. I will always prefer 2D drawn characters to 3D.";False;False;;;;1610412776;;1610413116.0;{};giy56ph;False;t3_kv9id4;False;True;t3_kv9id4;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/giy56ph/;1610471743;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;Seconding Bottom-tier Character Tomozaki-kun.;False;False;;;;1610412856;;False;{};giy5can;False;t3_kvbbi1;False;True;t1_gix9ibo;/r/anime/comments/kvbbi1/before_the_seasons_really_kicks_off_what_are_some/giy5can/;1610471847;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;There's the overarching community (which really does have some problem members) consisting of individual fandoms which may or may not be toxic.;False;False;;;;1610412908;;False;{};giy5fzu;False;t3_kvd8vw;False;True;t1_giy3kqj;/r/anime/comments/kvd8vw/what_are_your_genuine_thoughts_at_the_continued/giy5fzu/;1610471915;1;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;They question Haruka till she spills the beans and then spent hours talking about it in her room. Even discounting Ai's and Miho's immediate disbelief, that is not no reaction.;False;False;;;;1610413100;;False;{};giy5tca;False;t3_kvdado;False;False;t1_giy2fwt;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/giy5tca/;1610472174;4;True;False;anime;t5_2qh22;;0;[]; -[];;;rlramirez12;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Sailanarmo;light;text;t2_fo8fw;False;False;[];;Funny way of spelling Mashiro.;False;False;;;;1610413196;;False;{};giy602l;False;t3_kvdbzf;False;False;t1_gixs24v;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giy602l/;1610472312;35;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"My point is no one actually hates gatekeeping. People curate what they want both in fans and content and feel often threatened when people challenge that. Someone might shout gatekeeping when those doing said gatekeeping feel like they are just trying to enjoy what they like but other fans are trying to cut them out or marginalize them from the hobby or focus of the hobby. - -That conflict is on a variety issues down to what anime gets put out every season. We just aren't that united of a fandom.";False;False;;;;1610413269;;False;{};giy659y;False;t3_kvd8vw;False;True;t1_giy5fzu;/r/anime/comments/kvd8vw/what_are_your_genuine_thoughts_at_the_continued/giy659y/;1610472426;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> Also nobody has confidence that he passed his exam lol. - -The courage to believe in yourself - -> You can get in that much trouble in Japan just for driving in High-School? - -yeah some prohibit it, or out of school clubs or working part time";False;False;;;;1610413721;;False;{};giy7108;True;t3_kvd9qu;False;True;t1_gixyp33;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/giy7108/;1610473069;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;"I think we have a different idea of what that is then. I feel a lot of gatekeeping is simply people employing the 'No True Scotsman' fallacy. - -""You haven't played the fighting game? You're no true BNHA fan."" - -I could be wrong, I don't know.";False;False;;;;1610413758;;False;{};giy73lw;False;t3_kvd8vw;False;True;t1_giy659y;/r/anime/comments/kvd8vw/what_are_your_genuine_thoughts_at_the_continued/giy73lw/;1610473120;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JustAnswerAQuestion;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JAaQ/;light;text;t2_66xzcvc;False;False;[];;I thought Tobi was a boy with weird hair.;False;False;;;;1610413766;;False;{};giy744v;False;t3_kvdado;False;True;t1_giy1s2b;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/giy744v/;1610473130;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NicDwolfwood;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/NicDwolfwood;light;text;t2_m1pib;False;False;[];;"**Rewatcher** - -**Hitagi Rendezvous pt. 1** - -* ""Well, it's been quite a while since the last time I had a proper appearance like this, so I've forgotten what my character is like"" - Gahara smashing the 4th wall LOL -* LOL, Ononoki worried that payback is coming her way now that Shinobu is in Kiss Shot form -* [LOL best plushie](https://i.imgur.com/9g1AjHn.png) -* [Police?](https://i.imgur.com/ZsWau9d.png) -* So Nadeko is out of the hospital and is resting at home. nice to know from Tsukihi -* Gahara looks cute with the Hanekawa braid -* Planetarium date -* Gahara has a car, a cute red mini -* Too cute, Gahara went and got a license since Araragi couldn't -* Hanekawa found Oshino -* That creepy eye at the end tho - -**Questions:** - -1. It's quite nice, lots of cute Senjougahara in the visuals. -2. No way, Araragi and Gahara are just too cute together. It's always a treat when she makes an appearance is together with Araragi. -3. The most exciting revelation is that Hanekawa found Meme. The man we've all been wanting to see again since he left. Knowing that Nadeko is doing better is nice as well. -4. That talk about the universe and infinity led to Ougi. So that Eye at the end surely is Ougi as well.";False;False;;;;1610413823;;False;{};giy77zq;False;t3_kvd9qu;False;False;t3_kvd9qu;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/giy77zq/;1610473204;6;True;False;anime;t5_2qh22;;0;[]; -[];;;big_fella672;;;[];;;;text;t2_asaob52;False;False;[];;I like Mashiro a lot since I like Kuuderes but Aoyama is indeed a badass;False;False;;;;1610414035;;False;{};giy7mhx;False;t3_kvdbzf;False;False;t1_gixs24v;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giy7mhx/;1610473502;13;True;False;anime;t5_2qh22;;0;[]; -[];;;AuburnTheWolf;;;[];;;;text;t2_2t6f5c;False;False;[];;" Rewatcher - -This episode has always been largely forgettable for me. I couldn’t even remember what song played at the end of it for the life of me until Korekara no Someday started playing. It also doesn’t progress the plot forward much at all. - -“Honoka might not be the best leader” - -“Who is better?” - -“Alright, we’ll follow Honoka anyways” - -Discussion Questions: - -1. I mean, as they discussed through their mini competition, where some girls fall short, they make up for it in other categories. The girls are about equal overall, so why not have the person who started it all (AKA Honk (or Nico thinks herself)) be the leader? I personally think the leader should be the person leading the song. Some girls will be better suited to certain songs than others, however I think the standard ""Idol"" sound is best done with Honoka as the center. -2. In Love Live SIF Omoi yo Hitotsu ni Nare by Aqours is my go to (I *really* wish that song was in all stars), and for SIFAS, my go to is actually Bokura wa ima no naka de (the opening of this first season). I also play a lot of Bang Dream, and my go to song in that is usually either Returns or the Pasu Pare cover of Happy Synthesizer. Any karaoke I've done has all been english songs, so usually I'll try to find something from Queen to sing.";False;False;;;;1610414040;;False;{};giy7muw;False;t3_kvbyuf;False;False;t3_kvbyuf;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/giy7muw/;1610473513;3;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;It's more how I see it get used. I think that is the most traditional definition and is a fair one.;False;False;;;;1610414317;;False;{};giy8619;False;t3_kvd8vw;False;True;t1_giy73lw;/r/anime/comments/kvd8vw/what_are_your_genuine_thoughts_at_the_continued/giy8619/;1610473897;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bloominbloom;;;[];;;;text;t2_84z8q;False;False;[];;creep;False;True;;comment score below threshold;;1610414378;;False;{};giy8ab5;False;t3_kv9cd7;False;True;t1_giy0feh;/r/anime/comments/kv9cd7/dynamite_non_non_biyori_episode_07/giy8ab5/;1610473983;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;ohaimike;;;[];;;;text;t2_5ovb2;False;False;[];;Finally. Cute ship girls do cute ship girl things.;False;False;;;;1610414500;;False;{};giy8itw;False;t3_kvadt9;False;False;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giy8itw/;1610474152;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ShinyMilo;;;[];;;;text;t2_16raer;False;False;[];;That has happened to me more times than I would like to admit.;False;False;;;;1610414725;;False;{};giy8ye2;False;t3_kvadt9;False;False;t1_gixuzgw;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giy8ye2/;1610474452;12;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> Police? - -It's also a running gag, Tsukihi really wants to pimp out her friends it seems";False;False;;;;1610414935;;False;{};giy9dgg;True;t3_kvd9qu;False;True;t1_giy77zq;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/giy9dgg/;1610474752;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Anime_Cuck;;;[];;;;text;t2_70sbgk61;False;False;[];;Space dandy is my all time favorite and it doesn't get nearly as much love as it should;False;False;;;;1610415058;;False;{};giy9m6i;False;t3_kvbbi1;False;True;t1_gixccv2;/r/anime/comments/kvbbi1/before_the_seasons_really_kicks_off_what_are_some/giy9m6i/;1610474910;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610415150;;False;{};giy9ss2;False;t3_kvd9qu;False;True;t3_kvd9qu;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/giy9ss2/;1610475044;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;"**First-time watcher** - -The romantic turn and more Hitagi focus is something that's been sorely missing, and this does deliver. However, I would almost say it is too singularly focused on her, doing little to change my opinion that Koyomi has never been a particularly great character, same with the side stuff that otherwise is fun enough.";False;False;;;;1610415218;;False;{};giy9xku;False;t3_kvd9qu;False;False;t3_kvd9qu;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/giy9xku/;1610475137;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610415273;;False;{};giya1dz;False;t3_kv9id4;False;True;t3_kv9id4;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/giya1dz/;1610475208;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Webemperor;;MAL;[];;http://myanimelist.net/animelist/Webemperor;dark;text;t2_e60oh;False;True;[];;The weather seems to have changed by the time they leave, so it's safe to say they spent some considerable time talking about it, perhaps they are more inclined to believe things like this with all that transpired so far.;False;False;;;;1610415461;;False;{};giyaeqg;False;t3_kvdado;False;False;t1_giy2fwt;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/giyaeqg/;1610475482;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;"It’s good, it’s usually used in situation where it wouldn’t be possible to draw so it’s fine, only exception I think is patrasche in RE:Zero but it’s used very well there - -AOT has CG Titans but honestly makes them loom over the fights ever more imo so I don’t mind it";False;False;;;;1610415568;;False;{};giyamd6;False;t3_kv9id4;False;True;t3_kv9id4;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/giyamd6/;1610475624;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Webemperor;;MAL;[];;http://myanimelist.net/animelist/Webemperor;dark;text;t2_e60oh;False;True;[];;">My Friend Had a Scary Emo Guy in Her Closet Who Tried to Kidnap Her, but Now We’re Friends with Him Because He Showed Us a Globe. - -I do enjoy that they started a bit hostile with him until he gained their trust by showing them a cool, shiny gadget like they are a gang of racoons.";False;False;;;;1610415653;;False;{};giyashv;False;t3_kvdado;False;False;t1_gixkx1c;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/giyashv/;1610475738;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Cody4783;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/Cody48;light;text;t2_860cc;False;False;[];;"It's only one 8-minute episode (less if you crop the OP/ED), and already I want this to run forever and adapt all the crazy nonsense of the Slow Ahead! series. - -The characterization and just showing the daily lives and interactions is already on tract to be more entertaining than the discombobulated attempt at a coherent plot the ""Main"" Anime had.";False;False;;;;1610415672;;False;{};giyatuz;False;t3_kvadt9;False;False;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giyatuz/;1610475765;7;True;False;anime;t5_2qh22;;0;[]; -[];;;_LoliLover;;;[];;;;text;t2_9pj076tp;False;False;[];;Good choice but I like Yuuko.;False;False;;;;1610415710;;False;{};giyawmz;False;t3_kvdbzf;False;False;t1_gixs24v;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giyawmz/;1610475823;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;">We still haven’t seen the imouto’s boyfriends. I don’t think we ever will at this point as Araragi refuses to meet them. - -I hadn't thought about this. I wonder if that's why Tsukihi didn't spend White Day with her boyfriend, i.e. Araragi doesn't approve. - ->Ok, now THIS is normal sibling behavior. At last. - -Could this, perhaps, be our boy growing up and maturing? - ->I don’t know why Japanese schools have [these kinds](https://i.imgur.com/Bzo8iZP.jpg) of rules tbh. I mean, I know, but I don’t agree. - -Wait, this wasn't hyperbole? Is driving seen as something that only hooligans do? (Edit: I found my answer elsewhere in the thread)";False;False;;;;1610415725;;1610416422.0;{};giyaxnh;False;t3_kvd9qu;False;False;t1_gixluqg;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/giyaxnh/;1610475843;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Tartaras1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tartaras;light;text;t2_kwwlu;False;False;[];;"**First-Timer** - -- Senjougahara is right, though. The last time we saw her was back when she was talking to Kaiki. We've had a lot going on in the meantime. - -- >We're going to go on six months' worth of dates in one fell swoop tomorrow, Araragi. - - Either it's going to be one massive date that's worth 6 months of dates, or she's really going to try and cram 6 months worth of dates within the span of 24 hours. - - Regardless, this should be good to see. - -- It seems like it's perfectly within her personality to check on him not only as his girlfriend, but as someone who's going to use all of the information available to her to coordinate something. - -- >I'm always serious. I've never had a conversation that wasn't serious. - - Perhaps it's just her monotone speech, or the fact that she doesn't smile, but I'm pretty sure I believe her. - -- >I thought she was a young girl, merely dregs, so I've been merciless with the insults. But if she's back to her complete self, I have to change that attitude drastically. - - At least she recognized that she's been needlessly harsh, even if it's not a sincere change of personality, but rather a result of her fearing for her own undead life. - -- Correct me if I'm wrong, but didn't Tsukihi know that Yotsugi was alive before, and not just a plushie? I could have sworn that was the case. - -- >Even for you, Araragi, wouldn't you be happier if I made myself more like Ms. Hanekawa? - - She knows he still has feelings for Hanekawa! - -- >Ms. Waitgahara! - - >Hitagi Drivergahara? - - I love the nicknames. - -- >If that happens, I'll break up with you and get chummy with Kanbaru, so I'll be fine. - - She has a backup plan! - - [](#howcouldyou) - -- I didn't know Japan had a desert with cacti. - -Questions: - -- I'm excited for a romcom episode. However, I have a sneaking suspicion that it won't be a traditional romcom. - -- Senjougahara said that Hanekawa's narrowed down where Oshino might be to two locations, but didn't delve deeper on that. I feel like Tsukihi should already know Yotsugi isn't a plushie. - -- The dark black eye belongs to Ougi, and Senjougahara mentioned that the universe is shaped like an Ougi, so there's probably a connection there somewhere.";False;False;;;;1610415854;;False;{};giyb6xl;False;t3_kvd9qu;False;False;t3_kvd9qu;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/giyb6xl/;1610476021;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Cody4783;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/Cody48;light;text;t2_860cc;False;False;[];;"I legit re-watched the main series just to enjoy all the completely over the top stereotypical accents everyone had. The Iron Blood especially. xD - -And I'm sorry if I offend someone saying this, but I legit would have loved some ""*Engrish*"" or exaggerated JP accents for the Sakura Empire over the...kinda out of place preppy/California girl vibe I recall getting from their EN voices. With how ridiculous the *MEIN FUHRER* Germans and *QUEEN'S ENGLISH* the British fleet was, it felt odd the Japanese fleet's accents were oddly ""neutral"".";False;False;;;;1610416002;;1610416654.0;{};giybhe4;False;t3_kvadt9;False;False;t1_gix7nti;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giybhe4/;1610476218;8;True;False;anime;t5_2qh22;;0;[]; -[];;;infinite_lyy;;;[];;;;text;t2_9lftz77s;False;False;[];;Gintama. People are scared to get into the series because they might not get the references/humor, and I guess there are some looking for watch order as well. Others give up a few eps in because /the plot goes nowhere/ but I personally believe it's one of the best long-running series to invest in;False;False;;;;1610416052;;False;{};giybkwp;False;t3_kv6gpi;False;True;t3_kv6gpi;/r/anime/comments/kv6gpi/anime_that_are_tricky_to_get_into/giybkwp/;1610476284;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610416075;moderator;False;{};giybml5;False;t3_kvadt9;False;False;t1_gixrqvu;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giybml5/;1610476315;5;True;False;anime;t5_2qh22;;0;[]; -[];;;infinite_lyy;;;[];;;;text;t2_9lftz77s;False;False;[];;Seconding this, it's a pretty good starter while being good overall;False;False;;;;1610416091;;False;{};giybnp5;False;t3_kv658t;False;True;t1_giwcppg;/r/anime/comments/kv658t/which_anime_should_i_watch_next/giybnp5/;1610476336;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SYZekrom;;;[];;;;text;t2_i5y6z;False;False;[];;"**First Timer** - -[I have beeen so distracted this entire time by her boots and now she’s standing on the bed](https://media.discordapp.net/attachments/621713361390010378/798360250566443078/image0.jpg) - -[Sure looks like an important discussion](https://media.discordapp.net/attachments/621713361390010378/798361357766230046/image0.jpg)";False;False;;;;1610416114;;False;{};giybpba;False;t3_kvd9qu;False;False;t3_kvd9qu;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/giybpba/;1610476366;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;">is it more or less the bridge between the sides maybe aberration and human - -This is definitely what I'm thinking. I think Ougi is a catalyst that helps beings that are in between apparition and human. That's the only way I can that she could be ""defeated"" in this arc and then come back in Hana.";False;False;;;;1610416364;;False;{};giyc6r6;False;t3_kvd9qu;False;False;t1_gixlwrp;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/giyc6r6/;1610476700;3;True;False;anime;t5_2qh22;;0;[]; -[];;;syanda;;;[];;;;text;t2_950t8;False;False;[];;"It's also a visual pun - those are bottles of Lafite wine she's drinking, and the way it's pronounced in CN/JP is the same as ""Laffey"". - -That, and the poor girl has enough bad experiences with nights that it's no surprise she drinks to fall asleep...";False;False;;;;1610416369;;False;{};giyc75q;False;t3_kvadt9;False;False;t1_giy3d0f;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giyc75q/;1610476707;9;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Hmm that's a take for the full series discussion;False;False;;;;1610416468;;False;{};giyce28;True;t3_kvd9qu;False;False;t1_giy9xku;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/giyce28/;1610476846;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;">Working, joining a club, getting a driver's license especially for motorcycles - -Wait , are you saying that working or joining certain clubs could prevent you from getting into college?";False;False;;;;1610416544;;False;{};giycjbt;False;t3_kvd9qu;False;False;t1_gixnrgn;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/giycjbt/;1610476951;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;If you've ever watched Princess Principal's dub, Chise in that series sounds like how you'd expect a Japanese person who learned English as a second language would sound in real life. A similar accent for the Sakura Empire ships in AL would have been great, not too exaggerated but still fitting for their original nationality. If you've never watched Princess Principal's dub, *go watch it* because it's one of the best I've ever heard. It actually handles British accents way better than Azur Lane did, and they fit perfectly considering that the show takes place in London.;False;False;;;;1610416723;;False;{};giycw1x;False;t3_kvadt9;False;False;t1_giybhe4;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giycw1x/;1610477194;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Earthborn92;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EarthB;light;text;t2_al1wj;False;False;[];;"> I didn't know Japan had a desert with cacti. - -While it is obvious that this is all Araragi's imagination, I find it pretty cute. It is like he feels he is going on an adventure with Senjou.";False;False;;;;1610416879;;False;{};giyd723;False;t3_kvd9qu;False;False;t1_giyb6xl;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/giyd723/;1610477397;5;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"Nah Tsukihi won Ononoki in the arcade and took her home as a plushie. - -Ougi means (hand-)fan if your subs did not explain that so that is the literal connection at least. - -Tsukihi has Toy Story syndrome regarding Ononoki and also the phoenix bird in her suppresses noticing the supernatural around her so that she has a normal safe life";False;False;;;;1610416987;;False;{};giydeie;True;t3_kvd9qu;False;False;t1_giyb6xl;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/giydeie/;1610477548;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;">Ononoki is reading a manga, looks like a romance one. I can't help but be reminded of Nadeko's little ""project"". - -I love the idea that Ononoki unironically loving Nadeko's manga. After glancing over that first chapter, I'm not sure many would actually love it. Ononoki is a doll after all, though, so I wouldn't be surprised.";False;False;;;;1610417114;;False;{};giydnke;False;t3_kvd9qu;False;False;t1_gixmirr;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/giydnke/;1610477729;6;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;If the school prohibits it and you do it and anger the administration, you would probably not get the best recommendation letter. Or maybe even suspension or detention. Researching these rules and if joining a school club is mandatory or not is all important for deciding on the high school;False;False;;;;1610417303;;False;{};giye1f1;True;t3_kvd9qu;False;False;t1_giycjbt;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/giye1f1/;1610478009;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Cody4783;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/Cody48;light;text;t2_860cc;False;False;[];;"Never watched the dub, but *god* Princess Principal was such a damn good show. - -Looked up some YT clips including [Sentai's EN cast reveal](https://youtu.be/TB0bddfw_7U?t=37) and it sounds good. The characters all sound fairly true to being 'in-world' and not exaggerated personalities to fit a stereotype. Chise's accent is noticeable in the clips I saw, but not in-your-face which is solid. - -But yeah, that show was fantastic and I'm a bit sad it didn't quite get the exposure and continuation it needed. Although I looked again to see if I missed anything and it seemed the first *Crown Handler* movie is due next month(?), so that's a plus. Though much like the GuP Das Finale, it'll probably be a long long while to continue each segment. >.<";False;False;;;;1610417546;;False;{};giyeizi;False;t3_kvadt9;False;False;t1_giycw1x;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giyeizi/;1610478371;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Prodigy0928;;;[];;;;text;t2_3kg2qhzg;False;False;[];;"""Outbreak Company"" involved creating ties with another nation through anime and manga";False;False;;;;1610417594;;False;{};giyemcy;False;t3_kvdcg9;False;True;t3_kvdcg9;/r/anime/comments/kvdcg9/anime_about_territorial_conquests_creating_empire/giyemcy/;1610478433;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;">Poor araragi, no one believes he can get accepted :( - -All the more motivation to prove them wrong! Go Araragi!";False;False;;;;1610417907;;False;{};giyf8mw;False;t3_kvd9qu;False;False;t1_gixpkah;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/giyf8mw/;1610478851;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;I honestly think that anyone who watched Princess Principal in Japanese but hasn't (re-)watched it in English is doing themselves a disservice. The dub is *just that good* and it greatly enhances the show because of how well it fits the setting and helps the atmosphere.;False;False;;;;1610417940;;False;{};giyfb2v;False;t3_kvadt9;False;True;t1_giyeizi;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giyfb2v/;1610478900;3;True;False;anime;t5_2qh22;;0;[]; -[];;;YuriAddict7;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/R1seKujikawa/;light;text;t2_3zn8celm;False;False;[];;"FIRST TIMER - -its leader descision time!! Maybe its just me but from watching lots of kpop, the leader is usually not the one in the center. They're usually the best singer or the oldest. Center is usually the prettiest of the group aka the visual - -Oh, another flyer handout scene.damn the universe is conspiring against nico lmao - -Wait, how is everyone taking turns singing suddenly a foreign concept for them? Was that not the plan from the start? If they had picked an official leader, would the leader have sang like 90%of the song or something? - -Anyway i feel like one of the members that doesnt have clear stereotype shouldve been a leader. Kotori or Hanayo or rin would have more caharcter than Just hanako's orbiter - -Noo a cliffhanger. I bet its something to do with student council.";False;False;;;;1610418094;;1610418659.0;{};giyfmbj;False;t3_kvbyuf;False;False;t3_kvbyuf;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/giyfmbj/;1610479112;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Tartaras1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tartaras;light;text;t2_kwwlu;False;False;[];;">Nah Tsukihi won Ononoki in the arcade and took her home as a plushie. - -Oh that's right. - ->Ougi means (hand-)fan if your subs did not explain that so that is the literal connection at least. - -Yeah, they did mention that. I was able to put those two together at least. - ->Tsukihi has Toy Story syndrome regarding Ononoki and also the phoenix bird in her suppresses noticing the supernatural around her so that she has a normal safe life - -Makes sense.";False;False;;;;1610418109;;False;{};giyfneb;False;t3_kvd9qu;False;False;t1_giydeie;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/giyfneb/;1610479133;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Tartaras1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tartaras;light;text;t2_kwwlu;False;False;[];;"Yeah it's a good way to represent that. I think it'd lose some of its meaning if they were driving through Tokyo or some other major city like that. It doesn't really work with the word ""adventure"" as much.";False;False;;;;1610418152;;False;{};giyfqhj;False;t3_kvd9qu;False;False;t1_giyd723;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/giyfqhj/;1610479189;4;True;False;anime;t5_2qh22;;0;[]; -[];;;RxMidnight;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/RxMidnight;light;text;t2_77kf70hc;False;False;[];;"**First Timer** - --Senjougaragi date time! Hitagi's casual outfits are always hnggghh. For being as poor as she is she sure knows how to dress fashionably on a budget. - --Ononoki's scenes are always lowkey hilarious. I've completely lost the ability to tell when she's being serious and when she's just trolling. Feel bad for her though that she has to act like Woody whenever ~~Andy~~ Tsukihi is around. - --Sengoku told Tsukihi one of her secrets? Given that Tsukihi already knew about her crush on Koyomi, I'm guessing maybe Sengoku told her about the manga. - --Hanekawa found Meme? Nani?! It's been 84 years since we've seen that dude.";False;False;;;;1610418229;;False;{};giyfw05;False;t3_kvd9qu;False;False;t3_kvd9qu;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/giyfw05/;1610479292;11;True;False;anime;t5_2qh22;;0;[]; -[];;;akkobutnotreally;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/lottevanilla;light;text;t2_18cgajnf;False;False;[];;r/Mashiro representing!;False;False;;;;1610418358;;False;{};giyg51y;False;t3_kvdbzf;False;False;t1_giy602l;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giyg51y/;1610479470;7;True;False;anime;t5_2qh22;;0;[]; -[];;;YuriAddict7;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/R1seKujikawa/;light;text;t2_3zn8celm;False;False;[];;"2013? Theres plenty of jpop and kpop groups that time where the center and leader are different. Snsd and red velvet off the top of my head. - - Its just odd how they kept forcing them to be the same";False;False;;;;1610418391;;False;{};giyg7dc;False;t3_kvbyuf;False;True;t1_giy3nzy;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/giyg7dc/;1610479519;2;True;False;anime;t5_2qh22;;0;[]; -[];;;eddihern7;;;[];;;;text;t2_10a6b4fl;False;False;[];;Pain.;False;False;;;;1610418785;;False;{};giyh06f;False;t3_kvdbzf;False;False;t3_kvdbzf;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giyh06f/;1610480093;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;Ah, I understand. Thanks for clarifying. Always interesting to hear how different cultures do things!;False;False;;;;1610418798;;False;{};giyh16o;False;t3_kvd9qu;False;True;t1_giye1f1;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/giyh16o/;1610480111;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610418832;;False;{};giyh3lk;False;t3_kvdbzf;False;False;t3_kvdbzf;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giyh3lk/;1610480158;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;">Seeing teenagers with actual dreams about their future makes me kinda sad that I didn't have any. - -If it's any consolation, I've never really had dreams about the future. I don't think it's terribly uncommon!";False;False;;;;1610419164;;False;{};giyhs4r;False;t3_kvd9qu;False;True;t1_gixmoxr;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/giyhs4r/;1610480645;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DirtySockz;;;[];;;;text;t2_ehixg;False;False;[];;I am looking forward to this. Love the game;False;False;;;;1610419815;;False;{};giyj5b6;False;t3_kvadt9;False;True;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giyj5b6/;1610481615;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ZBLongladder;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/zblongladder;dark;text;t2_6tmso;False;False;[];;"> The VP wishes -> to save the school, but can't really act on it, so she does everything indirectly instead of taking big actions. - -Bonus neat fact: her name, Nozomi, means ""wish"" in Japanese.";False;False;;;;1610419896;;False;{};giyjbc5;False;t3_kvbyuf;False;True;t1_gixcuf2;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/giyjbc5/;1610481742;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Joo_Ber;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Joo_Ber;light;text;t2_ths85fg;False;False;[];;Should I watch?;False;False;;;;1610419899;;False;{};giyjbkp;False;t3_kvdbzf;False;False;t3_kvdbzf;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giyjbkp/;1610481747;26;True;False;anime;t5_2qh22;;0;[]; -[];;;JMEEKER86;;;[];;;;text;t2_7vvx7;False;True;[];;Making a short series definitely seems to have helped their new studio be able to focus on quality animation, but I feel like this adaptation probably isn’t going to appeal to people who aren’t already Azur Lane fans.;False;False;;;;1610420323;;False;{};giyk6u0;False;t3_kvadt9;False;True;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giyk6u0/;1610482387;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lucacp_ysoz;;MAL;[];;http://myanimelist.net/profile/SoZLuka;dark;text;t2_gch7f;False;False;[];;Cute Ships Doing Cute Things? sign me up;False;False;;;;1610420367;;False;{};giyk9zz;False;t3_kvadt9;False;False;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giyk9zz/;1610482452;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheKujo;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Kujo419;light;text;t2_5jcou;False;False;[];;">Eli's VA, Yoshino Nanjo, was unable to attend due to scheduling conflicts with her band, [fripSide.](https://myanimelist.net/people/8544/fripSide) - -I had no idea Eli's VA was in fripSide! Now I want to see a Love Live x Railgun crossover.";False;False;;;;1610421046;;False;{};giyllxi;False;t3_kvbyuf;False;False;t1_giy28q5;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/giyllxi/;1610483417;5;True;False;anime;t5_2qh22;;0;[]; -[];;;xiavORliab;;;[];;;;text;t2_4dniju7s;False;False;[];;Never saw the anime, but I did read the manga. A lot of people hate the ending(I'm gonna bet you might too once you finish the manga) but I actually like the ending. I like that he actually move on and look for the future. Oh and he also chose a girl at the end. It might not be who people wanted it to be but... just be glad that your not getting a shitty ending with no conclusion to the romance part of the story.;False;False;;;;1610421143;;False;{};giylspm;False;t3_kv9wd2;False;True;t3_kv9wd2;/r/anime/comments/kv9wd2/aku_no_hana_the_creepiest_unsettling_depressing/giylspm/;1610483546;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ArchadianJudge;;;[];;;;text;t2_dk2pa;False;True;[];;"Such a cute episode! I loved everything about it (besides the length). I feel like Laffey stole the show, as she usually does. USAMIMI USAMIMI USAMIMI!...And then she sunk the KMS Nimi lol. - -I need this series to be like 50 episodes long...";False;False;;;;1610421467;;False;{};giymhdk;False;t3_kvadt9;False;True;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giymhdk/;1610483992;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JimmyCWL;;;[];;;;text;t2_16ddjx;False;False;[];;"How do I think Honoka would have answered Nozomi's question if she had been more aware of her role in the group's activities? - -""I decide that we actually hold performances. Without that, all this practicing is just twiddling our thumbs."" - -I daresay, if you didn't like Nico before, this episode isn't going to improve your impression of her.";False;False;;;;1610421487;;False;{};giymir2;False;t3_kvbyuf;False;True;t3_kvbyuf;/r/anime/comments/kvbyuf/love_live_sip_sunshine_rewatch_sip_season_1/giymir2/;1610484022;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zagily;;;[];;;;text;t2_14s4jd;False;False;[];;Surprised to see at the end of Horimiya ep 1 the door closing being 3d;False;False;;;;1610421518;;False;{};giymkyk;False;t3_kv9id4;False;True;t3_kv9id4;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/giymkyk/;1610484067;1;True;False;anime;t5_2qh22;;0;[]; -[];;;8andahalfby11;;MAL;[];;https://myanimelist.net/animelist/thereIwasnt;dark;text;t2_kvyfg;False;False;[];;I'd be down for that new looper story Ryukishi07 wrote?;False;False;;;;1610421616;;False;{};giymrqj;False;t3_kvbzou;False;True;t3_kvbzou;/r/anime/comments/kvbzou/key_president_teases_plans_for_anime_of_summer/giymrqj/;1610484197;2;True;False;anime;t5_2qh22;;0;[]; -[];;;YuriAddict7;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/R1seKujikawa/;light;text;t2_3zn8celm;False;False;[];;"Ayyy this is the REAL azur lane anime. Damn javelin with hair down looks lewd as hell - -Damn ayanami buttcrack - -Huh nice that theyre showing other ships in the class. The manga only shows like the main 4 in the class - -Ranger sensei! One if my favorite retrofit from the game - -Damn that was mega short. Basically like the granblue 4 koma anime";False;False;;;;1610421664;;False;{};giymv31;False;t3_kvadt9;False;False;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giymv31/;1610484261;6;True;False;anime;t5_2qh22;;0;[]; -[];;;gratifiedlonging;;;[];;;;text;t2_93iwn0o7;False;False;[];;"I don't like [how the LN](/s ""threw best girl Nanami in the fucking dumpster"").";False;False;;;;1610421958;;False;{};giynf7p;False;t3_kvdbzf;False;False;t1_gixs24v;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giynf7p/;1610484659;28;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;"How about this? Can we agree that someone trying to ruin another person's enjoyment of something because they themselves don't like it is sort of a scummy thing to do? Assuming of course that it's not something that's harmful to others. - -As an SAO fan this is something that I am quite familiar with experiencing lol.";False;False;;;;1610421979;;False;{};giyngmx;False;t3_kvd8vw;False;False;t1_giy8619;/r/anime/comments/kvd8vw/what_are_your_genuine_thoughts_at_the_continued/giyngmx/;1610484685;2;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;You would have define how they can ruin someone's enjoyment. There isn't anything wrong with expressing issues you have. Honestly I find the community can tend towards hug boxes rather than just being open to hearing other opinions. Granted though yeah that's also because a lot of people express their dissatisfaction by running the person down rather than keeping the discussion impersonal;False;False;;;;1610422251;;False;{};giynz01;False;t3_kvd8vw;False;True;t1_giyngmx;/r/anime/comments/kvd8vw/what_are_your_genuine_thoughts_at_the_continued/giynz01/;1610485067;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZeroMax1;;;[];;;;text;t2_swpaw;False;False;[];;Username checks out;False;False;;;;1610422859;;False;{};giyp3ry;False;t3_kvdbzf;False;False;t1_giyawmz;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giyp3ry/;1610485807;8;True;False;anime;t5_2qh22;;0;[]; -[];;;bigfoot1291;;MAL;[];;http://myanimelist.net/animelist/bigfoot1291;dark;text;t2_7ba1o;False;False;[];;how do people still think this meme format is funny?;False;False;;;;1610423482;;False;{};giyq9il;False;t3_kvadt9;False;True;t1_gixuzgw;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giyq9il/;1610486629;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610423493;;False;{};giyqaav;False;t3_kvdbzf;False;True;t1_gixvf4x;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giyqaav/;1610486643;6;True;False;anime;t5_2qh22;;0;[]; -[];;;venitienne;;;[];;;;text;t2_1d3p12up;False;False;[];;Decent show, excellent cast ruined by a jerk of a MC.;False;False;;;;1610423535;;False;{};giyqd2r;False;t3_kvdbzf;False;False;t1_giyjbkp;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giyqd2r/;1610486699;32;True;False;anime;t5_2qh22;;0;[]; -[];;;theanimegamer-___-;;;[];;;dark;text;t2_3vm3lj8d;False;False;[];;Without a doubt;False;False;;;;1610424107;;False;{};giyrfkz;False;t3_kvdbzf;False;True;t1_gixs24v;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giyrfkz/;1610487493;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SapiMan;;;[];;;;text;t2_5y0iyzwc;False;False;[];;">Tsukihi randomly becoming best friends with Nadeko is weird. I think the ""secret"" there is probably just Nadeko letting Tsukihi know about her art hobby, but otherwise not sure what motivated their closeness so suddenly. - -It's not random though. We already see the progression way back from Nise. We know that they already know each other from childhood. We know they reconnected in Nise. We know Tsukihi understand Nadeko well and Nadeko likes being with Tsukihi and secretly wish to be her sister (one of the reason why she says she loves koyomi in the first place) in Otori. We also know that Tsukihi often visites Nadeko after she came back from her disappearance in Tsuki. It's been months, so I think it is natural for someone with high adaptability like Tsukihi to be close to Nadeko who admires her.";False;False;;;;1610424207;;False;{};giyrm3k;False;t3_kvd9qu;False;False;t1_gixn09p;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/giyrm3k/;1610487628;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mountain-Anywhere621;;;[];;;;text;t2_9kuj99kp;False;False;[];;Reborn fans aye;False;False;;;;1610424786;;False;{};giysojw;False;t3_kv9pzr;False;True;t1_giwzwi6;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/giysojw/;1610488369;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mountain-Anywhere621;;;[];;;;text;t2_9kuj99kp;False;False;[];;Make sure ya check out visual novel for grisaia;False;False;;;;1610425006;;False;{};giyt3bc;False;t3_kv6m47;False;True;t1_giwfnrf;/r/anime/comments/kv6m47/anything_similar_to_highschool_dxd_thats_any_good/giyt3bc/;1610488649;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;"**First Timer** - -Despite a good amount of plot progression this episode, I don't have much to say that wouldn't be repeating myself from previous threads. The show didn't do anything different or exciting this episode and I have the same complaints I've had in previous episodes, which I don't care to write out again, as I'm sure others will. - -I also don't think we really learnt anything new this episode, other than perhaps that we can add Atori and Tobi to the ever growing moron list. Destroying the Dragon Torque has severe interdimensional consequences (this is something we did learn this episode) so bad that it may destroy every dimension. And yet knowing this Tobi (and Isuka) still went along with Atori's plan? Why? And why does Tobi decide to turncoat now — what changed? Atori was always planning on destroying the Dragon Torque — he was very clear about that. Why is Atori trying to destroy the Dragon Torque anyway? I'd believe that he's just so crazy that he thinks it's the only way to save La'cryma, but it would be nice to understand why he thinks this. Crazy illogical actions probably won't be explained and we still have no clue what caused any of this in the first place, when that very much appears to be the focus of the show. - -I probably sounded too harsh and more annoyed above than I really am. I don't hate this show, I'm mostly just unenthused by it. - -Kosagi thinks this is all Haruka's fault. Not sure where she's going there, but she at least has me interested to find out. - -*** - -**Episode Discussion Questions** - ->1. The last line of the episode: ""If it hadn't been for you..."" If it hadn't been for Haruka, then what, and why? - -I think Kosagi is blaming her for the birds falling apart as a group of friends. If it wasn't for Haruka there wouldn't have been all this infighting and conflict. - ->2. If this was Fate and the dragon knights were servants, who would you want fighting for you and why? - -I'd take Fukurou because he's clearly strong and easily the most stable of the lot.";False;False;;;;1610425436;;False;{};giytv9n;False;t3_kvdado;False;True;t3_kvdado;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/giytv9n/;1610489228;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LostHero50;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/HooTheOwl/;light;text;t2_hyb88;False;False;[];;Keeping it spoiler-free I'd are some parts that are definitely a bit unsatisfying but overall it's a good show. Even though humor can be pretty corny I found it hilarious, this scene here might have been my favorite.;False;False;;;;1610425477;;False;{};giytxz2;True;t3_kvdbzf;False;False;t1_giyjbkp;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giytxz2/;1610489277;43;True;False;anime;t5_2qh22;;0;[]; -[];;;l_lawliot;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;myanimelist.net/profile/lawliot;light;text;t2_19q60xi;False;False;[];;Funny you’re getting downvoted for speaking the truth.;False;False;;;;1610425507;;False;{};giytzxc;False;t3_kvdbzf;False;False;t1_giyqd2r;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giytzxc/;1610489315;9;True;False;anime;t5_2qh22;;0;[]; -[];;;scot911;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/scot911;light;text;t2_e6v5y;False;False;[];;F/GO Babylonia says hi. Although that's cheating because the FGO adaptations are only doing the good parts of the story lol.;False;False;;;;1610425641;;False;{};giyu8e0;False;t3_kvadt9;False;False;t1_gix9vvq;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giyu8e0/;1610489479;7;True;False;anime;t5_2qh22;;0;[]; -[];;;tin_foil_hat_x;;;[];;;;text;t2_fijkq;False;False;[];;Its a very good show imo, i havent read the source material however. Its one of my favorites because it really touches on a more realistic level of real struggles people go through in life when growing up and attempting to figure out what theyre good at and what they want to do in life, also goes a pretty decent job of those relationships when at that age too. Its just got a really good mix of some more serious toned things. This anime is definitely slice of life, with some romance, ecchi, but its very good at articulating some of the aforementioned topics.;False;False;;;;1610425672;;False;{};giyuab1;False;t3_kvdbzf;False;False;t1_giyjbkp;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giyuab1/;1610489516;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Ainkrip;;;[];;;;text;t2_9hnoc1s;False;False;[];;Babylonia? The company just needs to give it to a competent studion and have a good director.;False;False;;;;1610425746;;False;{};giyuexy;False;t3_kvadt9;False;False;t1_gix9vvq;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giyuexy/;1610489605;5;True;False;anime;t5_2qh22;;0;[]; -[];;;chris10023;;;[];;;;text;t2_6mgro;False;False;[];;For me, it was the over sexualization of the the characters that made me hate the show, the story was interesting, the characters were alright, but the constant barrage of dumb fanservice killed it for me. That and the fact the show didn't really explain what the cube of doom did to Enterprise.;False;False;;;;1610425929;;False;{};giyuqjz;False;t3_kvadt9;False;False;t1_gix9731;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giyuqjz/;1610489833;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;And part 3;False;False;;;;1610425991;;False;{};giyuuhn;False;t3_kv9pzr;False;False;t1_gix0xan;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/giyuuhn/;1610489906;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;The mc is the father though, so idk of that really counts.;False;False;;;;1610426055;;False;{};giyuyfg;False;t3_kv9pzr;False;True;t1_giy4uvi;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/giyuyfg/;1610489978;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;I don't think they were talking about anything to do with Karasu. It looked like they were just chatting about 11-yea-old things.;False;False;;;;1610426170;;False;{};giyv5md;False;t3_kvdado;False;True;t1_giy5tca;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/giyv5md/;1610490156;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;My subs use male pronouns so I assume so as well.;False;False;;;;1610426292;;False;{};giyvd87;False;t3_kvdado;False;False;t1_giy744v;/r/anime/comments/kvdado/mid2000s_rewatch_noein_episode_10/giyvd87/;1610490310;2;True;False;anime;t5_2qh22;;0;[]; -[];;;atropicalpenguin;;MAL;[];;http://myanimelist.net/animelist/atropicalpenguin;dark;text;t2_vxkvm;False;False;[];;"Bless Yostar giving me a reason to look forward to the BDs. - -Niimi is best starter ship.";False;False;;;;1610427241;;False;{};giywzty;False;t3_kvadt9;False;True;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giywzty/;1610491434;2;True;False;anime;t5_2qh22;;0;[]; -[];;;boywiththethorn;;;[];;;;text;t2_4bveg;False;False;[];;I remember the first few episodes got me hooked but the middle part really bogged down with filler. Fortunately the last few episodes were able to wrap it up nicely.;False;False;;;;1610427364;;False;{};giyx75b;False;t3_kvdbzf;False;False;t1_giytxz2;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giyx75b/;1610491564;17;True;False;anime;t5_2qh22;;0;[]; -[];;;venitienne;;;[];;;;text;t2_1d3p12up;False;False;[];;Lol, honestly. Dude was a complete asshole to both main girls, please go rewatch the show people downvoting me.;False;False;;;;1610427549;;False;{};giyxi92;False;t3_kvdbzf;False;False;t1_giytzxc;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giyxi92/;1610491788;36;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610427722;moderator;False;{};giyxs93;False;t3_kvdbzf;False;False;t1_giyqaav;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giyxs93/;1610491981;5;True;False;anime;t5_2qh22;;0;[]; -[];;;l_lawliot;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;myanimelist.net/profile/lawliot;light;text;t2_19q60xi;False;False;[];;I've heard it gets *much* worse in the LN.;False;False;;;;1610427770;;False;{};giyxuzc;False;t3_kvdbzf;False;False;t1_giyxi92;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giyxuzc/;1610492032;19;True;False;anime;t5_2qh22;;0;[]; -[];;;TheTenguness;;;[];;;;text;t2_oxjs6;False;False;[];;"> And that she even has spares that anyone can borrow! - -*North Carolina noises intensifies*";False;False;;;;1610428487;;False;{};giyyz22;False;t3_kvadt9;False;True;t1_gix33e0;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giyyz22/;1610492824;3;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;I wouldn't agree since a lot of the perspective comes from Anya not not Twilight. I would argue Anya is more the MC.;False;False;;;;1610428683;;False;{};giyza4a;False;t3_kv9pzr;False;True;t1_giyuyfg;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/giyza4a/;1610493045;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ernie2492;;;[];;;;text;t2_s9bqe;False;False;[];;"> Takanori in Enterprise cosplay: AZUR LANE!!!!! - -FTFY.. xD";False;False;;;;1610428798;;False;{};giyzgq7;False;t3_kvadt9;False;False;t1_gixuzgw;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giyzgq7/;1610493162;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ernie2492;;;[];;;;text;t2_s9bqe;False;False;[];;"> Shower Javelin - -[](#takaradasalute)";False;False;;;;1610429015;;False;{};giyzsnq;False;t3_kvadt9;False;False;t1_gix33e0;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giyzsnq/;1610493374;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Dra9onDemon23;;;[];;;;text;t2_5cgmynp6;False;False;[];;Shiina is so precious. Also, convenient bucket is convenient.;False;False;;;;1610429971;;False;{};giz17c6;False;t3_kvdbzf;False;False;t3_kvdbzf;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giz17c6/;1610494313;13;True;False;anime;t5_2qh22;;0;[]; -[];;;wiz_001;;;[];;;;text;t2_8g3l8cc0;False;False;[];;can't decide if it's printed or handmade;False;False;;;;1610430026;;False;{};giz1a78;False;t3_kv74lk;False;True;t3_kv74lk;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/giz1a78/;1610494365;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pweavd;;;[];;;;text;t2_zkkwu;False;False;[];;tried my best to make it as menacing as possible. thanks for noticing that :);False;False;;;;1610430280;;False;{};giz1nkz;True;t3_kv74lk;False;True;t1_giy53cj;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/giz1nkz/;1610494605;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pweavd;;;[];;;;text;t2_zkkwu;False;False;[];;why is that? :);False;False;;;;1610430479;;False;{};giz1xtk;True;t3_kv74lk;False;True;t1_giz1a78;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/giz1xtk/;1610494791;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chino-kafu;;;[];;;;text;t2_hgf2eos;False;False;[];;His only involvement in Summer Pockets though was the original concept and work on the soundtrack, the scenarios were written by others and tbh, I have prefered both this and Rewrite which again he didn't work on the scenarios a lot more than anything they have released for a while.;False;False;;;;1610430601;;1610438761.0;{};giz23zx;False;t3_kvbzou;False;True;t1_gixglbu;/r/anime/comments/kvbzou/key_president_teases_plans_for_anime_of_summer/giz23zx/;1610494904;1;False;False;anime;t5_2qh22;;0;[]; -[];;;N3rdC3ntral;;;[];;;;text;t2_yxmzc;False;False;[];;Yes, I've watched a few dub episodes and those are good also.;False;False;;;;1610430737;;False;{};giz2avt;False;t3_kvdbzf;False;False;t1_giyjbkp;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giz2avt/;1610495034;5;True;False;anime;t5_2qh22;;0;[]; -[];;;cojoB_;;;[];;;;text;t2_27b35u6d;False;False;[];;It's a damn shame that the source for this apparently fell apart;False;False;;;;1610430935;;False;{};giz2kne;False;t3_kvdbzf;False;False;t3_kvdbzf;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giz2kne/;1610495216;86;True;False;anime;t5_2qh22;;0;[]; -[];;;Professional6999;;;[];;;;text;t2_vx9k7r8;False;False;[];;Wazzaaaaaa!;False;False;;;;1610431704;;False;{};giz3mpk;False;t3_kv74lk;False;False;t3_kv74lk;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/giz3mpk/;1610495939;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ernie2492;;;[];;;;text;t2_s9bqe;False;False;[];;They're fellow degenerates, that's for sure..;False;False;;;;1610431993;;False;{};giz411q;False;t3_kvadt9;False;False;t1_gix4fq5;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giz411q/;1610496209;7;True;False;anime;t5_2qh22;;0;[]; -[];;;CapablePerformance;;;[];;;;text;t2_301hogoy;False;False;[];;We'll never get a second season because he's such an unlikable asshole in the source material after the anime ends. Just knowing what happens spoiled this series for me.;False;False;;;;1610432380;;False;{};giz4jgw;False;t3_kvdbzf;False;False;t1_giyxi92;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giz4jgw/;1610496548;14;True;False;anime;t5_2qh22;;0;[]; -[];;;ThrowCarp;;;[];;;;text;t2_79cxz;False;False;[];;At least as a CGDCT we have a consistent story/theme direction and consistent animation for Azur Lane.;False;False;;;;1610432456;;False;{};giz4n3d;False;t3_kvadt9;False;False;t1_gix4pb9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giz4n3d/;1610496611;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerdy314159265;;;[];;;;text;t2_752wc;False;False;[];;What does he do? spoil me please;False;False;;;;1610433080;;False;{};giz5fhp;False;t3_kvdbzf;False;True;t1_giyqd2r;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giz5fhp/;1610497103;2;True;False;anime;t5_2qh22;;0;[]; -[];;;2lesslonelypeople;;;[];;;;text;t2_y4gdnlc;False;False;[];;So the commander actually exists in this universe huh that's a nice touch, while it isn't the best looking show out there considering that the animation was done by the game developer themselves it is quite good.;False;False;;;;1610433250;;False;{};giz5n46;False;t3_kvadt9;False;True;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giz5n46/;1610497245;2;True;False;anime;t5_2qh22;;0;[]; -[];;;venitienne;;;[];;;;text;t2_1d3p12up;False;False;[];;"Basically [Major Sakurasou spoilers](/s ""The show is based the theme of talent vs. hard work, which represents the main girl and him respectively. What ends up happening MULTIPLE times is the talented girl succeeds, and instead of being happy for her, the girl he likes, he just lashes out because of his own failures like a dick, even though she was supportive of him the entire way. Just incredibly frustrating to watch"")";False;False;;;;1610433957;;False;{};giz6i01;False;t3_kvdbzf;False;False;t1_giz5fhp;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giz6i01/;1610497785;16;True;False;anime;t5_2qh22;;0;[]; -[];;;venitienne;;;[];;;;text;t2_1d3p12up;False;False;[];;I actually loved that LN ending post, it justified my negative opinion of him;False;False;;;;1610434085;;False;{};giz6nhr;False;t3_kvdbzf;False;False;t1_giz4jgw;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giz6nhr/;1610497880;4;True;False;anime;t5_2qh22;;0;[]; -[];;;F0r3ver;;;[];;;;text;t2_1gssvu0z;False;False;[];;Finally! No purple haired cv to steal Nimi's spotlight;False;False;;;;1610434393;;False;{};giz70x7;False;t3_kvadt9;False;False;t1_gixy8op;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giz70x7/;1610498110;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;I mean, he's an asshole but I don't think he ruins the show;False;False;;;;1610434532;;False;{};giz76r4;False;t3_kvdbzf;False;False;t1_giyxi92;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giz76r4/;1610498214;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ernie2492;;;[];;;;text;t2_s9bqe;False;False;[];;FYI, Emitsun is singing the OP..;False;False;;;;1610434818;;False;{};giz7iwa;False;t3_kvadt9;False;True;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giz7iwa/;1610498435;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Considered_Dissent;;;[];;;;text;t2_3ri9v346;False;False;[];;Lol gotta respect the Alex the Kidd ring tone!;False;False;;;;1610434991;;False;{};giz7q4z;False;t3_kvdbzf;False;False;t3_kvdbzf;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giz7q4z/;1610498557;6;True;False;anime;t5_2qh22;;0;[]; -[];;;venitienne;;;[];;;;text;t2_1d3p12up;False;False;[];;"That's true, it's still worth a watch, but it really really dampened my enjoyment. I think if he could have been a bit different the show could've been a 9/10 for me, instead it's like a 5. I guess ""ruin"" from my perspective is about the potential of the show, not that its Gibiate tier.";False;False;;;;1610435136;;False;{};giz7w3r;False;t3_kvdbzf;False;True;t1_giz76r4;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giz7w3r/;1610498662;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NSFWbroughtMe;;;[];;;;text;t2_6n57zjqx;False;False;[];;thanks lol. like the feistiness too lmao;False;False;;;;1610435448;;False;{};giz88xm;True;t3_kv6m47;False;True;t1_gix83kx;/r/anime/comments/kv6m47/anything_similar_to_highschool_dxd_thats_any_good/giz88xm/;1610498879;2;True;False;anime;t5_2qh22;;0;[]; -[];;;coolgamer715;;;[];;;;text;t2_4d9ggk6h;False;False;[];;Holy Shit dude. I love it.;False;False;;;;1610435699;;False;{};giz8j50;False;t3_kv74lk;False;True;t3_kv74lk;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/giz8j50/;1610499049;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610436027;;False;{};giz8wj0;False;t3_kv74lk;False;True;t1_gix29uy;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/giz8wj0/;1610499271;0;True;False;anime;t5_2qh22;;0;[]; -[];;;pweavd;;;[];;;;text;t2_zkkwu;False;False;[];;glad you liked it! thank you! :);False;False;;;;1610436475;;False;{};giz9eir;True;t3_kv74lk;False;True;t1_giz8j50;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/giz9eir/;1610499575;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> For being as poor as she is she sure knows how to dress fashionably on a budget. - -Are they really poor? Her father seems to have a good job, it's more like they lost everything rather recently so they are not wealthy but probably not struggling either";False;False;;;;1610436780;;False;{};giz9qja;True;t3_kvd9qu;False;True;t1_giyfw05;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/giz9qja/;1610499788;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610437095;;False;{};giza2tc;False;t3_kv74lk;False;True;t1_giz8wj0;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/giza2tc/;1610500000;3;True;False;anime;t5_2qh22;;0;[]; -[];;;StrayThor;;;[];;;;text;t2_1zluov7t;False;False;[];;This story has such a dumpster fire crash ending.;False;False;;;;1610438119;;False;{};gizb650;False;t3_kvdbzf;False;False;t3_kvdbzf;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizb650/;1610500674;7;True;False;anime;t5_2qh22;;0;[]; -[];;;_dsmith23;;;[];;;;text;t2_q9zbacg;False;False;[];;Damn, i miss this series. Maybe i should read the LN;False;False;;;;1610439010;;False;{};gizc417;False;t3_kvdbzf;False;True;t3_kvdbzf;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizc417/;1610501256;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KinoHiroshino;;;[];;;;text;t2_6x5tw;False;False;[];;#USAMIMI USAMIMI!;False;False;;;;1610439607;;False;{};gizcqe2;False;t3_kvadt9;False;False;t1_gix4b7u;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gizcqe2/;1610501646;9;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;Is this worth watching for someone who hasn't seen the original and never touched the game?;False;False;;;;1610439799;;False;{};gizcxi7;False;t3_kvadt9;False;True;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gizcxi7/;1610501769;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RxMidnight;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/RxMidnight;light;text;t2_77kf70hc;False;False;[];;Well if I'm not mistaken their apartment doesn't even have individual rooms, which is why Senjougahara couldn't let Hanekawa stay over longer during Tsubasa Tiger. That classifies as poor to me even if they aren't struggling with basic necessities.;False;False;;;;1610440481;;False;{};gizdmir;False;t3_kvd9qu;False;True;t1_giz9qja;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gizdmir/;1610502199;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"I'm actually not sure about that, in the anime it sounded more like Senjougahara just made up a reason to get Hanekawa into the Araragi home by saying ""you can't stay here with my dad"". I mean Hitagi made the thousand dollars for Meme by working a bit for her dad";False;False;;;;1610440729;;False;{};gizdvjj;True;t3_kvd9qu;False;True;t1_gizdmir;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gizdvjj/;1610502362;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Manga is still good throughout the whole run, maybe not as awesome as in the beginning;False;False;;;;1610440972;;False;{};gize4co;False;t3_kv9wd2;False;True;t1_gix08xm;/r/anime/comments/kv9wd2/aku_no_hana_the_creepiest_unsettling_depressing/gize4co/;1610502518;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Kill la Kill is full of CGI, did anyone ever really complain about it?;False;False;;;;1610441100;;False;{};gize90d;False;t3_kv9id4;False;True;t1_gix1174;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/gize90d/;1610502602;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610441283;;False;{};gizefnl;False;t3_kvdbzf;False;True;t1_giz6i01;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizefnl/;1610502720;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Social_Knight;;;[];;;;text;t2_z9w1n;False;False;[];;Also Rage of Bahamut is pretty good.;False;False;;;;1610441785;;False;{};gizexo6;False;t3_kvadt9;False;True;t1_gix9vvq;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gizexo6/;1610503055;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610442708;;False;{};gizfunw;False;t3_kvdbzf;False;True;t1_giynf7p;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizfunw/;1610503636;1;True;False;anime;t5_2qh22;;0;[]; -[];;;awsomebro6000;;;[];;;;text;t2_lczv1;False;False;[];;Wait how did it fall apart? I watched the anime but never read the source material. Did it get really bad?;False;False;;;;1610443636;;False;{};gizgrfg;False;t3_kvdbzf;False;False;t1_giz2kne;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizgrfg/;1610504208;18;True;False;anime;t5_2qh22;;0;[]; -[];;;offoy;;MAL;[];;http://myanimelist.net/animelist/oFFoy;dark;text;t2_7a56z;False;False;[];;The anime has a perfect ending, no need to keep reading the source :{;False;False;;;;1610444120;;False;{};gizh8ql;False;t3_kvdbzf;False;False;t1_gizb650;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizh8ql/;1610504503;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610444260;;False;{};gizhdr6;False;t3_kvdbzf;False;True;t1_gizgrfg;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizhdr6/;1610504590;1;True;False;anime;t5_2qh22;;0;[]; -[];;;robotboy199;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;http://myanimelist.net/profile/virtualityy;light;text;t2_687tq;False;False;[];;"I haven't read it myself because of all the negativity surrounding the ending but from what I've read here's a summary of what happens [LN spoilers](/s ""Aoyama gets kicked out of the school and forgotten about. Shiina and Sorata start dating after he had to make a choice between her or Aoyama during a trip. They break up because they were getting in the way of each other's dreams but they get back together in the epilogue. Ryuunosuke never ends up with Rita because he says he's too busy with work and can't be bothered"")";False;False;;;;1610444463;;False;{};gizhkss;False;t3_kvdbzf;False;False;t1_gizgrfg;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizhkss/;1610504712;44;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;">had to make a choice - -Funny part is that he made a choice already in anime but source materials aren't immune to dragging things out with fake drama";False;False;;;;1610444949;;False;{};gizi1tq;False;t3_kvdbzf;False;False;t1_gizhkss;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizi1tq/;1610505008;36;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"Don't - -Apparently it nosedives hard";False;False;;;;1610445084;;False;{};gizi6kj;False;t3_kvdbzf;False;False;t1_gizc417;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizi6kj/;1610505090;13;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePhantomRaven;;;[];;;;text;t2_45tqag6z;False;False;[];;Basically sorata became an abusive sack of shit against mashiro. Then they parted. Then met again, shit happened. Not the most accurate description but I can personally send u a summary I got from another guy;False;False;;;;1610445187;;False;{};gizia5m;False;t3_kvdbzf;False;False;t1_gizfunw;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizia5m/;1610505151;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePhantomRaven;;;[];;;;text;t2_45tqag6z;False;False;[];;Dont. Its literally where the series destroyed itself and sorata became a bigger asshole than he already was;False;False;;;;1610445360;;False;{};gizig2e;False;t3_kvdbzf;False;False;t1_gizc417;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizig2e/;1610505262;6;True;False;anime;t5_2qh22;;0;[]; -[];;;SapiMan;;;[];;;;text;t2_5y0iyzwc;False;False;[];;They are poor. Her father has big salary, but he still hasn't paid all the debt yet.;False;False;;;;1610445397;;False;{};gizihcp;False;t3_kvd9qu;False;True;t1_gizdvjj;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gizihcp/;1610505285;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610445515;;False;{};giziled;False;t3_kvdbzf;False;True;t3_kvdbzf;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giziled/;1610505359;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;that does not make much sense on a surface level imo;False;False;;;;1610445725;;False;{};gizisos;True;t3_kvd9qu;False;True;t1_gizihcp;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gizisos/;1610505490;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aschentei;;;[];;;;text;t2_z1t0l;False;False;[];;Puran shii;False;False;;;;1610445972;;False;{};gizj10y;False;t3_kvdbzf;False;True;t3_kvdbzf;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizj10y/;1610505640;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SapiMan;;;[];;;;text;t2_5y0iyzwc;False;False;[];;Why not? I think living that way because too many of your salary goes to debt is quite realistic.;False;False;;;;1610446028;;False;{};gizj2v4;False;t3_kvd9qu;False;True;t1_gizisos;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gizj2v4/;1610505672;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fakeport;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_soe2k;False;False;[];;"Thats a spoiler tag. They don't work properly on mobile reddit, but if you hit ""reply"" and click on them you can read what they say.";False;False;;;;1610446239;;False;{};gizja8c;False;t3_kvdbzf;False;True;t1_gizfunw;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizja8c/;1610505808;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;But if it is a job that gives your daughter one grand for helping out a bit, how deep into debt do you need to be to have a car but sturggle to afford a two room flat in a small suburban town in Japan?;False;False;;;;1610446240;;False;{};gizja9o;True;t3_kvd9qu;False;True;t1_gizj2v4;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gizja9o/;1610505808;1;True;False;anime;t5_2qh22;;0;[]; -[];;;awsomebro6000;;;[];;;;text;t2_lczv1;False;False;[];;Well thats one big disappointment.;False;False;;;;1610446505;;False;{};gizjjfb;False;t3_kvdbzf;False;False;t1_gizhkss;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizjjfb/;1610505975;15;True;False;anime;t5_2qh22;;0;[]; -[];;;SapiMan;;;[];;;;text;t2_5y0iyzwc;False;False;[];;We already know the debt he has from his wife doing is not to be underestimate with. We just don't know his way of thinking. It is just a guess, but maybe he does need a car for mobility. He still has money left that goes into his saving. I mean, his wife turned him from extremely rich to poor af rather quickly. Maybe he really goes extra mile to get what he used to have back? I am Asian, and I have seen how some people do quite similar thing. Living in a barely standard condition for now, so they live comfortably in the future. I disagree with that kind of living, but I have seen it.;False;False;;;;1610446721;;False;{};gizjr1g;False;t3_kvd9qu;False;True;t1_gizja9o;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gizjr1g/;1610506112;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Proletariat_Justin;;;[];;;;text;t2_3vqsrign;False;False;[];;Ah, Sakurasou. This show really brings back memories, what a great anime. A true pity the author had a seizure or something when writing season 2.;False;False;;;;1610447076;;False;{};gizk3k2;False;t3_kvdbzf;False;False;t3_kvdbzf;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizk3k2/;1610506344;18;True;False;anime;t5_2qh22;;0;[]; -[];;;CosmicPenguin_OV103;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cosmic_Penguin;light;text;t2_1ufwqhs7;False;True;[];;Wow thanks, I didn't know there's a sub-Reddit for her!;False;False;;;;1610447503;;False;{};gizkig5;False;t3_kvdbzf;False;True;t1_giyg51y;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizkig5/;1610506641;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610448036;;False;{};gizl11s;False;t3_kvdbzf;False;False;t1_giyx75b;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizl11s/;1610506993;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Starwind_Amada;;;[];;;;text;t2_2xrw3imb;False;True;[];;Mega64 shoukd swede this;False;False;;;;1610448051;;False;{};gizl1ko;False;t3_kvdbzf;False;True;t3_kvdbzf;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizl1ko/;1610507002;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Stergeary;;;[];;;;text;t2_4zyl8;False;False;[];;Nooo, it's just -- uh -- Oxycola! Yeah, Oxycola, no drinking in a Christian mobile game, no siree~!;False;False;;;;1610448143;;False;{};gizl4r2;False;t3_kvadt9;False;False;t1_giy0mmr;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gizl4r2/;1610507058;5;True;False;anime;t5_2qh22;;0;[]; -[];;;kakatoru;;;[];;;;text;t2_a4s34;False;False;[];;The fucking title;False;False;;;;1610448202;;False;{};gizl6vd;False;t3_kvdbzf;False;False;t1_gizl11s;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizl6vd/;1610507097;6;True;False;anime;t5_2qh22;;0;[]; -[];;;kakatoru;;;[];;;;text;t2_a4s34;False;False;[];;"Is this justified somehow, are ""we"" supposed to agree with the MC or is the purpose of this that we're to dislike him?";False;False;;;;1610448429;;False;{};gizlf0z;False;t3_kvdbzf;False;True;t1_giz6i01;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizlf0z/;1610507241;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ainkrip;;;[];;;;text;t2_9hnoc1s;False;False;[];;First season was amazing, with really cool characters, animation and an interesting plot.;False;False;;;;1610448482;;False;{};gizlgxx;False;t3_kvadt9;False;False;t1_gizexo6;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gizlgxx/;1610507274;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610448829;;False;{};gizltdk;False;t3_kvdbzf;False;True;t1_gizlf0z;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizltdk/;1610507500;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerz905;;;[];;;;text;t2_1yglu2m7;False;False;[];;I keep getting page not found error when I click the link.;False;False;;;;1610448971;;False;{};gizlylb;False;t3_kvdbzf;False;True;t1_gizhkss;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizlylb/;1610507589;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HarishLives;;;[];;;;text;t2_1fhn4ulb;False;False;[];;"Dinners ready got me - -Lmao!";False;False;;;;1610448989;;False;{};gizlz98;False;t3_kvdbzf;False;True;t3_kvdbzf;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizlz98/;1610507600;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PhoenixQueen_Azula;;;[];;;;text;t2_38lvuoiw;False;False;[];;and that's a nice way of putting what happens;False;False;;;;1610449624;;False;{};gizmmuz;False;t3_kvdbzf;False;False;t1_gizhkss;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizmmuz/;1610508010;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Natsuki_Nakagawa;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Jepjur/;light;text;t2_4bb0d1ew;False;False;[];;You gotta use old reddit. Most of r/anime doesn't work properly with the redesign.;False;False;;;;1610449921;;False;{};gizmxyp;False;t3_kvdbzf;False;False;t1_gizlylb;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizmxyp/;1610508199;13;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610449976;;False;{};gizn03w;False;t3_kvdbzf;False;True;t1_gixs24v;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizn03w/;1610508234;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"[Then](/s ""they fuck"") is a nice summary for it's ending";False;False;;;;1610450117;;False;{};gizn5gi;False;t3_kvdbzf;False;True;t1_gizia5m;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizn5gi/;1610508331;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DogzOnFire;;;[];;;;text;t2_57t0t;False;False;[];;"Yep, and it's the same when romanising Japanese words like ""gakkõ"" (""school""), where ""gakkou"" is an acceptable alternative to represent the same thing. - -And another German one would be ß->ss, such as in the name ""Großkreutz"", where ""Grosskreutz"" is an acceptable romanisation. - -As an aside, calling him Yeager would be like calling the drink Yeagermeister. No idea why that spelling came about. Presumably they spelled it wrong in the manga and it stuck.";False;False;;;;1610450282;;1610450762.0;{};giznbju;False;t3_kv74lk;False;True;t1_gixf0kk;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/giznbju/;1610508436;2;True;False;anime;t5_2qh22;;0;[]; -[];;;smol_catto_;;;[];;;;text;t2_4bqtm6w2;False;False;[];;Gunna be honest I loved the entire anime but I hate the little sister with a passion;False;False;;;;1610450494;;False;{};giznjgz;False;t3_kvdbzf;False;False;t1_giytxz2;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/giznjgz/;1610508581;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jonjoy;;;[];;;;text;t2_ob4ey;False;False;[];;"too short.... - -I need MOAR cute ships";False;False;;;;1610450840;;False;{};giznwdy;False;t3_kvadt9;False;True;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/giznwdy/;1610508821;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cool_Ipsita5485;;;[];;;;text;t2_96r6iedb;False;False;[];;"The moment when she said...""Dinner is Ready""....made me laugh....xD";False;False;;;;1610450948;;False;{};gizo0i8;False;t3_kvdbzf;False;False;t3_kvdbzf;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizo0i8/;1610508908;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ChingChongWhiteBoi;;;[];;;;text;t2_1mmmm757;False;False;[];;The protagonist is blind af lmao;False;False;;;;1610450989;;False;{};gizo227;False;t3_kvdbzf;False;True;t1_gixs24v;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizo227/;1610508937;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LVRAAMV;;;[];;;;text;t2_5odelt0h;False;False;[];;God, i hate this type of comedy;False;False;;;;1610451143;;False;{};gizo7ze;False;t3_kvdbzf;False;True;t3_kvdbzf;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizo7ze/;1610509041;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;This episode was pure gold. I found it quite amusing that they censored her panty shots even though she's like only a couple years younger than Shiina who is seen almost completely naked a couple of times earlier in the series. The sister humming the Terminator theme and those transitions never get old. Though it's too bad this was the only episode they use the transitions, even though she appears multiple times throughout the series.;False;False;;;;1610451237;;False;{};gizobl7;False;t3_kvdbzf;False;False;t3_kvdbzf;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizobl7/;1610509108;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Mini_Rhombus2810;;;[];;;;text;t2_6ibwrjpp;False;False;[];;_D4Sheeeee_;False;False;;;;1610451314;;False;{};gizoeh4;False;t3_kv9cd7;False;True;t3_kv9cd7;/r/anime/comments/kv9cd7/dynamite_non_non_biyori_episode_07/gizoeh4/;1610509159;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fowl_Eye;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Fowl_Eye;light;text;t2_8urs6;False;False;[];;Not really, as long you get a grasp of their names and personalities and then you should be good. Don't watch the original show, it's awful. They got two official ongoing manga read those instead.;False;False;;;;1610451515;;False;{};gizom8q;False;t3_kvadt9;False;True;t1_gizcxi7;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gizom8q/;1610509292;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LostHero50;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/HooTheOwl/;light;text;t2_hyb88;False;False;[];;Wow, I heard it was bad but that's worse than I imagined.;False;False;;;;1610451643;;False;{};gizora5;True;t3_kvdbzf;False;False;t1_gizhkss;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizora5/;1610509378;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AmeerFarooq;;;[];;;;text;t2_2aqpeyoj;False;False;[];;Click on the reply button then click on it.;False;False;;;;1610451849;;False;{};gizoz6l;False;t3_kvdbzf;False;False;t1_gizlylb;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizoz6l/;1610509514;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Fowl_Eye;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Fowl_Eye;light;text;t2_8urs6;False;False;[];;It's finally here! I've been waiting to watch this!;False;False;;;;1610452011;;False;{};gizp5g6;False;t3_kvadt9;False;True;t3_kvadt9;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gizp5g6/;1610509625;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CherryNap;;;[];;;;text;t2_10t1dmj;False;False;[];;How's the little twat strong enough to throw her brother around like that with no difficulty. She should try wrestling or smthn in the future.;False;False;;;;1610452502;;False;{};gizpp1q;False;t3_kvdbzf;False;True;t3_kvdbzf;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizpp1q/;1610509969;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tharkaslan;;;[];;;;text;t2_4s53ullo;False;False;[];;Just Hover your mouse on it for hypertext.;False;False;;;;1610453252;;False;{};gizqjf8;False;t3_kvdbzf;False;True;t1_gizlylb;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizqjf8/;1610510505;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Akio_Kizu;;;[];;;;text;t2_645h2ay4;False;False;[];;What how? Kanda is a really solid MC throughout. Helpful, conscious, but also human, making mistakes and learning from them. His obsession with talent makes him relatable, and his growing relationship with Mashiro allowing him to overcome his envy of her talent is just so good. I don’t see how he can be called a bad MC, or worse.;False;False;;;;1610454375;;False;{};gizruws;False;t3_kvdbzf;False;False;t1_giyqd2r;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizruws/;1610511353;6;True;False;anime;t5_2qh22;;0;[]; -[];;;_Tim-;;;[];;;;text;t2_mp5ik;False;False;[];;I'm German and not sure about that. ss and ß have different spellings. Before the ß existed, it was written sz if I recall correctly. So I'd rather recommend that.;False;False;;;;1610454676;;False;{};gizs857;False;t3_kv74lk;False;True;t1_giznbju;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gizs857/;1610511585;2;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610456023;moderator;False;{};gizty33;False;t3_kv74lk;False;True;t1_gixtr8k;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gizty33/;1610512685;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KazuminCanon;;;[];;;;text;t2_7b7dglzy;False;False;[];;So this is where my xbox pfp came from 🤔;False;False;;;;1610458129;;False;{};gizwypp;False;t3_kvdbzf;False;True;t3_kvdbzf;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizwypp/;1610514766;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Flare3500;;;[];;;;text;t2_nsi9q;False;False;[];;Agree MC is insufferable;False;False;;;;1610458592;;False;{};gizxot4;False;t3_kvdbzf;False;True;t1_giz6i01;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizxot4/;1610515192;2;False;False;anime;t5_2qh22;;0;[]; -[];;;verunix;;;[];;;;text;t2_sq689;False;False;[];;I need to rewatch this gem;False;False;;;;1610458754;;False;{};gizxxzv;False;t3_kvdbzf;False;True;t3_kvdbzf;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizxxzv/;1610515353;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lehve;;;[];;;;text;t2_13c3tt;False;False;[];;"came here to say this -love that series";False;False;;;;1610458846;;False;{};gizy38o;False;t3_kv9pzr;False;True;t1_giwzwi6;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/gizy38o/;1610515437;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;I read the manga and I can confidently say the anime ending is better than the manga ending.;False;False;;;;1610458950;;False;{};gizy940;False;t3_kv9pzr;False;True;t1_gizy38o;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/gizy940/;1610515536;1;True;False;anime;t5_2qh22;;0;[]; -[];;;M8gazine;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/M8gazine;light;text;t2_kkdz5;False;False;[];;weeb;False;False;;;;1610459282;;False;{};gizyspu;False;t3_kv9cd7;False;True;t1_giy8ab5;/r/anime/comments/kv9cd7/dynamite_non_non_biyori_episode_07/gizyspu/;1610515863;1;False;False;anime;t5_2qh22;;0;[]; -[];;;syncsns;;;[];;;;text;t2_4727voxc;False;False;[];;OH MY GOD the memories man;False;False;;;;1610459650;;False;{};gizzepu;False;t3_kvdbzf;False;True;t3_kvdbzf;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gizzepu/;1610516226;1;True;False;anime;t5_2qh22;;0;[]; -[];;;garykkl;;;[];;;;text;t2_10tnui;False;False;[];;Sorata Baka!;False;False;;;;1610460019;;False;{};gj001jj;False;t3_kvdbzf;False;True;t3_kvdbzf;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gj001jj/;1610516606;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;"All characters must make the same decisions and have the same reactions you would at every turn or they're bad characters. This is the iron rule of /r/anime ""critical analysis""";False;False;;;;1610460202;;False;{};gj00cqr;False;t3_kvdbzf;False;False;t1_gizruws;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gj00cqr/;1610516807;8;True;False;anime;t5_2qh22;;0;[]; -[];;;OblivionPotato;;;[];;;;text;t2_yc2ew;False;False;[];;"True, he may be an asshole, but he is much more human than most of the other characters, even Mashiro, how could you not be angry as a teen artist when, everytime your work is going to be recognized, shit just goes down over and over? [Spoilers from here](/s ""The guy had to baby Mashiro into society while the world pretty much dotes on her being the next Picasso and his failures piled on, i can understand why such a young guy can mentally fall apart, especially when a fellow artist is beside him"")";False;False;;;;1610461301;;1610461493.0;{};gj02b0e;False;t3_kvdbzf;False;False;t1_giyqd2r;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gj02b0e/;1610517941;7;True;False;anime;t5_2qh22;;0;[]; -[];;;BIGGIECHEZZE;;;[];;;;text;t2_9br4jffr;False;False;[];;it look so great if it would be in a manga keep it up with the drawings;False;False;;;;1610461466;;False;{};gj02lx6;False;t3_kv74lk;False;True;t3_kv74lk;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gj02lx6/;1610518117;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JustAStudent381;;;[];;;;text;t2_5rcv2xhd;False;False;[];;yea that ending is not really cool.;False;False;;;;1610461670;;False;{};gj02zh4;False;t3_kvdbzf;False;True;t1_gizhkss;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gj02zh4/;1610518336;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pweavd;;;[];;;;text;t2_zkkwu;False;False;[];;wow thanks! i'll try to do one again next week :);False;False;;;;1610461806;;False;{};gj038bb;True;t3_kv74lk;False;True;t1_gj02lx6;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gj038bb/;1610518498;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OblivionPotato;;;[];;;;text;t2_yc2ew;False;False;[];;"[Spoilers](/s ""People just expect a teen with big dreams to be suddenly mature when he is confronted with a pile of failures while he has to babysit for Kuudere Picasso and see the world doting on her nonstop, the MC was an asshole, but i dont get what people expected."")";False;False;;;;1610461968;;False;{};gj03iqs;False;t3_kvdbzf;False;False;t1_gizlf0z;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gj03iqs/;1610518674;8;True;False;anime;t5_2qh22;;0;[]; -[];;;_dsmith23;;;[];;;;text;t2_q9zbacg;False;False;[];;Really? I never heard of that but wow, that sucks. If true i'll just keep my good memories of the anime;False;False;;;;1610462516;;False;{};gj04jgf;False;t3_kvdbzf;False;True;t1_gizi6kj;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gj04jgf/;1610519293;3;True;False;anime;t5_2qh22;;0;[]; -[];;;_dsmith23;;;[];;;;text;t2_q9zbacg;False;False;[];;Was it the ending that was bad or was it more than just that ?;False;False;;;;1610462596;;False;{};gj04oyc;False;t3_kvdbzf;False;True;t1_gizig2e;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gj04oyc/;1610519377;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;Ononoki is living the Toy Story experience with Tsukihi;False;False;;;;1610463893;;False;{};gj07868;False;t3_kvd9qu;False;True;t1_gixn09p;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gj07868/;1610520805;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steveyouth112;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Steveyouth112;light;text;t2_4m7p4w6v;False;False;[];;"It all depends on context. - -Having someone go out of their way to send tonnes of negative comments about a show someone else enjoys is horrible. Having a conversation and asking for people's thoughts and sharing a negative one is fine. - -It's like, if i were to post -'Just watched SAO and i don't think I've ever found such a perfect show! Anyone else seen it? Looking to gush to fellow fans' - your negative opinion is not needed. - -'Just watched SAO and really enjoyed it but know it had a bad rep, why was that? What made you guys dislike it' - go for it. - -And the absolute worst one -*-someone uploads fan art of favourite character-* -Then relying saying how much you dislike the show, oof. - -Also, what's wrong with hug boxes? Some times people want to just talk about their favourite shows. Heck, there are shows i hate with a passion, but if someone loved it and is passionate about it, mate, gush all you want.";False;False;;;;1610465807;;False;{};gj0ay3o;False;t3_kvd8vw;False;True;t1_giynz01;/r/anime/comments/kvd8vw/what_are_your_genuine_thoughts_at_the_continued/gj0ay3o/;1610522849;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steveyouth112;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Steveyouth112;light;text;t2_4m7p4w6v;False;False;[];;"Oof but also i hope the market is open to cgi anime. -Houseki No Kuni and Beastars are stunning, and it makes me excited to see the medium evolve.";False;False;;;;1610465969;;False;{};gj0b8t9;False;t3_kvd8vw;False;True;t1_gixz0ky;/r/anime/comments/kvd8vw/what_are_your_genuine_thoughts_at_the_continued/gj0b8t9/;1610523012;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steveyouth112;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Steveyouth112;light;text;t2_4m7p4w6v;False;False;[];;"So, my thoughts are positive. - -My first thought is that I'm hoping working conditions for animators will improve. Underpaid staff is an issue at the moment, but while a greater audience does create a greater demand, it also creates a greater awareness. - -My second thought is that it will create a need for a larger variation of content. This is especially great in making the medium even more accessible to anyone really, which is awesome! - -Honestly I really don't have any negatives. - -Having only a few companies controlling distribution could be seen as a negative, as it could mean that only particular shows they are certain will do well will get attention, but due to the accessibility of netflix and other sites, it's almost a non issue. It's not like 10 years ago when a show had a 30 minute time slot meaning they couldn't afford to play something people might not even like. These days they can afford to take risks, because even the weirdest show at this point will have an audience. And if not, again, the online community is so large, even fan projects have access to a huge community.";False;False;;;;1610467200;;False;{};gj0dmg8;False;t3_kvd8vw;False;True;t3_kvd8vw;/r/anime/comments/kvd8vw/what_are_your_genuine_thoughts_at_the_continued/gj0dmg8/;1610524320;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DogzOnFire;;;[];;;;text;t2_57t0t;False;False;[];;"Seems you're right, although it appears it can be transliterated as either depending on the situation, context and region. - -An excerpt from Wikipedia, the greatest and most reliable source of information: - -> If no 'ß' is available, 'ss' or 'sz' is used instead ('sz' especially in Hungarian-influenced eastern Austria). This applies especially to all-caps or small-caps texts because 'ß' had no generally accepted majuscule form until 2017. Excepted are all-caps names in legal documents; they may retain an 'ß' to prevent ambiguity (for instance: STRAßER, since Straßer and Strasser are both possible names).";False;False;;;;1610468316;;False;{};gj0fxda;False;t3_kv74lk;False;True;t1_gizs857;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gj0fxda/;1610525583;2;True;False;anime;t5_2qh22;;0;[]; -[];;;contraptionfour;;;[];;;;text;t2_fs4ki;False;False;[];;"I believe this is one factor. It's become a knee-jerk line of reasoning that some even extend to works that were intended as having little or nothing to do with English in-universe, such as Bebop or Gankutsuou. Not to mention that by the same logic, anime set in other third countries should surely be viewed in what would be their native tongue. - -Equally though, any reason can also be an justification for pre-existing preference, and stances presented with even a thin rationale behind them seem to spread more effectively among those who either aren't on a side or are looking for positive reinforcement.";False;False;;;;1610468449;;False;{};gj0g7g0;False;t3_kv89sq;False;False;t3_kv89sq;/r/anime/comments/kv89sq/why_these_dubs_are_favorites_of_many/gj0g7g0/;1610525738;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OrikoMikuni;;;[];;;;text;t2_2outhq;False;False;[];;One can't speak Javelin without JAVelin.;False;False;;;;1610468490;;False;{};gj0gahs;False;t3_kvadt9;False;True;t1_gix4fq5;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gj0gahs/;1610525785;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ahegao_Double_Peace;;;[];;;;text;t2_2ix6z8u2;False;False;[];;Holy shit Javelin has a nice body? Why didn't anyone inform me of this before?;False;False;;;;1610470886;;False;{};gj0lh16;False;t3_kvadt9;False;False;t1_gix33e0;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gj0lh16/;1610528589;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Vinpap;;;[];;;;text;t2_g7qem;False;False;[];;"It's pretty much extra side content for the people who like the game. They have a few references to in game interactions, references to outfits and lines in the game and reference to inside jokes and memes inside of the community. - - -So if you don't get those... I'm not sure how fun it'll be for you. - - -But, considering it's only 8 minutes long and is pretty much a sketch comedy show, it could serve as a gateway into the game";False;False;;;;1610471070;;1610474137.0;{};gj0lvgy;False;t3_kvadt9;False;False;t1_gizcxi7;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gj0lvgy/;1610528823;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;"I'm sort of hinting toward the separation between "" I have X issue with this show"" and ""You are dumb/a deviant/etc if you like X show."" Goblin Slayer is a good example.";False;False;;;;1610471489;;False;{};gj0msdr;False;t3_kvd8vw;False;True;t1_giynz01;/r/anime/comments/kvd8vw/what_are_your_genuine_thoughts_at_the_continued/gj0msdr/;1610529328;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610472457;;False;{};gj0oxhd;False;t3_kvdbzf;False;True;t1_gj04oyc;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gj0oxhd/;1610530493;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sky-Roshy;;;[];;;;text;t2_2w0f5enk;False;False;[];;Nope. Haven’t watched it;False;False;;;;1610472643;;False;{};gj0pccz;True;t3_kv79ig;False;True;t1_gixfclz;/r/anime/comments/kv79ig/please_help_me_remember_the_title_of_this_anime/gj0pccz/;1610530719;1;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;Yeah well that's fair. Again I would deem that gatekeeping but also not dealing with kinds of fans also could be a form of gatekeeping as well considering how it's used on the internet.;False;False;;;;1610473191;;False;{};gj0qkd2;False;t3_kvd8vw;False;True;t1_gj0msdr;/r/anime/comments/kvd8vw/what_are_your_genuine_thoughts_at_the_continued/gj0qkd2/;1610531383;1;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"IDK like the first post I think would be fair to respond if you take out looking for fellow fans and even then you can be a fan of something and still be critical of it. - -Like I love Legend of the Galactic Heroes it's my favourite anime but I am not going to act like the last two arcs aren’t a major drop off compared to the rest of the show. If someone asked me as a fan my opinion I would express that too. It just about keeping civility. - -As for the final point when often people stifle any critique that itself can be toxic. Like how dare you not like this show or people dogpilling a negative opinion I would argue that is just as toxic as some ""hater"" who stumbles into any positive thread trying to stir up negativity. For more popular well liked shows I think this is way more an issue honestly.";False;False;;;;1610473400;;1610503761.0;{};gj0r1co;False;t3_kvd8vw;False;True;t1_gj0ay3o;/r/anime/comments/kvd8vw/what_are_your_genuine_thoughts_at_the_continued/gj0r1co/;1610531634;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Seven-Tense;;;[];;;;text;t2_ogeb5;False;False;[];;" **Rewatcher -- First time novel order** - -**A) New OP,** [**Dreamy Date Drive**](https://vimeo.com/329939134)**. It did not air at all on TV and was added for the Blu Ray. What do you think about it?** - -I like it! I think this is the first time I'm seeing it and damn is it pretty. I was worried when it seemed ready to start on some darker tones but seeing cute Senjougahara brightens it up for sure! I'm going to steal another anon's comment from the youtube vid on this and say ""it's amazing how Shaft can take an opening sequence and make it express character growth!"" - -**B) Senjougahara focused arc and it's a date, are you excited or do you dread a romcom episode?** - -Not only do I love Chiwa Saito's performances in all her roles, I rank Senjougahara up there in the top 3 EASILY. I love how carefully she handles her voice and how much control she displays with this character who is at all times extremely **assertive** but also extremely **quiet.** She is soft spoken, but powerful and I love that juxtaposition. I look forward to any and all Senjougahara development. - -**C) We also learn about a few of the other cast members (Nadeko & Tsukihi, Tsukihi's plushie, Oshino Meme, Hanekawa). What did stick out to you?** - -* Tsukihi thinks she's much better friends with Nadeko than Nadeko does -* Ononoko is a cocky little whippersnapper who was only making fun of Shinobo because she had no idea what she was like at full power -* Hanekawa and Senjougahara are adorably close -* Oshinoooooo, come baaaaack! - -**D) The episode ends with talk about universe & infinity and a dark black eye, what could that** ***possibly*** **mean?** - -Legit, I couldn't tell if the ""fan"" formation of the map of universe was supposed to be observed as the darkness or the light, and I suspect that's the point";False;False;;;;1610473770;;False;{};gj0rv7d;False;t3_kvd9qu;False;True;t3_kvd9qu;/r/anime/comments/kvd9qu/monogatari_series_2020_novel_order_rewatch/gj0rv7d/;1610532091;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_dsmith23;;;[];;;;text;t2_q9zbacg;False;False;[];;Glad you told me this. If i had started reading it myself, I surely would've regretted it. It's unfortunate but I'm glad the anime was able to be as good as it was back then by seemingly taking the best parts of the LN;False;False;;;;1610476617;;False;{};gj0y73k;False;t3_kvdbzf;False;True;t1_gj0oxhd;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gj0y73k/;1610535637;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Veeron;;MAL;[];;http://myanimelist.net/animelist/Troglodyte;dark;text;t2_6v4zw;False;True;[];;Holy fuck did reddit shit up the site with the redesign.;False;False;;;;1610477225;;False;{};gj0zjwi;False;t3_kvdbzf;False;False;t1_gizmxyp;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gj0zjwi/;1610536424;4;True;False;anime;t5_2qh22;;0;[]; -[];;;jsheleby;;;[];;;;text;t2_170np8gu;False;False;[];;Ufotable has an amazing CGI department;False;False;;;;1610478110;;False;{};gj11jcj;False;t3_kv9id4;False;True;t1_giy1npa;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/gj11jcj/;1610537564;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Spiderkryptonian;;;[];;;;text;t2_4eu9lc7u;False;False;[];;shaman king, bakuman;False;False;;;;1610482040;;False;{};gj1a63x;False;t3_kv9pzr;False;True;t3_kv9pzr;/r/anime/comments/kv9pzr/is_there_a_shonen_animemanga_where_the_mc_has/gj1a63x/;1610542902;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hot-Ad-7693;;;[];;;;text;t2_5n91632e;False;False;[];;Yes yes! Both are wonderful stories! I love how My love story gives you a “not your average main character”;False;False;;;;1610485984;;False;{};gj1iu59;False;t3_kvc0mb;False;True;t1_gixdavs;/r/anime/comments/kvc0mb/can_ppl_recommend_me_good_romance_animesmangas/gj1iu59/;1610548884;1;True;False;anime;t5_2qh22;;0;[]; -[];;;J3wFro8332;;;[];;;;text;t2_55992ei;False;False;[];;He better not fuck Bunny Girl Senpai up;False;False;;;;1610486872;;False;{};gj1krws;False;t3_kvdbzf;False;False;t1_gizk3k2;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gj1krws/;1610550288;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Killerblade4598;;;[];;;;text;t2_727g4;False;False;[];;In game there is a Dorm you supply with food and snacks to give some passive exp to a few girls. Two of the drinks you can give them are Oxy-Cola and Secret Coolant, Laffey insists she is just drinking secret coolant...;False;False;;;;1610487849;;False;{};gj1mwat;False;t3_kvadt9;False;True;t1_gixuk7h;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gj1mwat/;1610551761;2;True;False;anime;t5_2qh22;;0;[]; -[];;;greatgatsbykevin;;;[];;;;text;t2_2pbgv9cz;False;False;[];;Yeah ufotable cg does not look cheap but I'm referring to more majority cg anime;False;False;;;;1610489304;;False;{};gj1q23o;False;t3_kv9id4;False;True;t1_gj11jcj;/r/anime/comments/kv9id4/how_do_yall_feel_about_cgi_in_anime_this_season/gj1q23o/;1610554020;1;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;Sigh, me too man.;False;False;;;;1610500294;;False;{};gj2bk7p;False;t3_kvadt9;False;True;t1_giy8ye2;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gj2bk7p/;1610569371;2;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;Very cultured.;False;False;;;;1610500317;;False;{};gj2blrb;False;t3_kvadt9;False;True;t1_gixeza3;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gj2blrb/;1610569398;3;True;False;anime;t5_2qh22;;0;[]; -[];;;garthvater111;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Garthvater;light;text;t2_bz434;False;False;[];;"The redesign is a curse upon this world, a festering scar that will never recover. It is amung the greatest sins caused by commited by man, one not even a God could forgive. - -But seriously ""old"" reddit is so much better. I browse reddit 95% on mobile, and the app is so horrific I use reddit in browser in desktop view. Everything just works so well.";False;False;;;;1610517609;;False;{};gj3537g;False;t3_kvdbzf;False;True;t1_gizmxyp;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gj3537g/;1610589609;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Salvo1218;;;[];;;;text;t2_7vqdb;False;False;[];;It's been so long since I've watched it, I might just go back and rewatch it dubbed like you said. I've heard good things about it before this thread too;False;False;;;;1610522438;;False;{};gj3avv0;False;t3_kvadt9;False;True;t1_giyfb2v;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gj3avv0/;1610593413;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Salvo1218;;;[];;;;text;t2_7vqdb;False;False;[];;"Subs ""master race"" and gatekeeping at it again I guess. People apparently aren't allowed to like things that others don't.";False;False;;;;1610522618;;False;{};gj3b35c;False;t3_kvadt9;False;True;t1_gixtfzr;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gj3b35c/;1610593546;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MasterAdventZero;;;[];;;;text;t2_d3qbcic;False;False;[];;It's dumb and annoying is what it is.;False;False;;;;1610522866;;False;{};gj3bcuw;False;t3_kvadt9;False;True;t1_gj3b35c;/r/anime/comments/kvadt9/azur_lane_bisoku_zenshin_episode_1_discussion/gj3bcuw/;1610593721;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mylaur;;MAL;[];;https://myanimelist.net/animelist/Mylaur;dark;text;t2_gtwu7;False;False;[];;Just use Relay it works fine;False;False;;;;1610523944;;False;{};gj3cirb;False;t3_kvdbzf;False;True;t1_gj3537g;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gj3cirb/;1610594505;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;I think everyone knows eren is a Titan lol;False;False;;;;1610534655;;False;{};gj3n3f1;False;t3_kv74lk;False;True;t1_gixzcp4;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gj3n3f1/;1610601109;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akio_Kizu;;;[];;;;text;t2_645h2ay4;False;False;[];;It does seem like it. This is a bit sad, especially when it puts people off watching a fantastic show.;False;False;;;;1610542882;;False;{};gj3wfi9;False;t3_kvdbzf;False;True;t1_gj00cqr;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gj3wfi9/;1610606658;1;True;False;anime;t5_2qh22;;0;[]; -[];;;garthvater111;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Garthvater;light;text;t2_bz434;False;False;[];;I didn't last 5 minutes using it xp;False;False;;;;1610552521;;False;{};gj4dp0k;False;t3_kvdbzf;False;True;t1_gj3cirb;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gj4dp0k/;1610616169;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blitzen001;;;[];;;;text;t2_3w1yi46g;False;False;[];;Yup it's spoiler in the way that death vader is the father but it's so common knowledge at this point that it really isn't a spoiler.;False;False;;;;1610553434;;False;{};gj4fmcx;False;t3_kv74lk;False;True;t1_gj3n3f1;/r/anime/comments/kv74lk/attack_on_titan_eren_yeager/gj4fmcx/;1610617217;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zayed_khalid;;;[];;;;text;t2_7f1hqahz;False;False;[];;So you never found it;False;False;;;;1610557939;;False;{};gj4pi4d;False;t3_kv79ig;False;True;t1_giwnzlp;/r/anime/comments/kv79ig/please_help_me_remember_the_title_of_this_anime/gj4pi4d/;1610622725;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sky-Roshy;;;[];;;;text;t2_2w0f5enk;False;False;[];;Unfortunately, no. And it is still bugging me. If one day I suddenly remember it, I’d still reply to you in this thread to let you know :);False;False;;;;1610563858;;False;{};gj52xkq;True;t3_kv79ig;False;True;t1_gj4pi4d;/r/anime/comments/kv79ig/please_help_me_remember_the_title_of_this_anime/gj52xkq/;1610630960;1;True;False;anime;t5_2qh22;;0;[]; -[];;;oChaoss;;;[];;;;text;t2_10kgxk3n;False;False;[];;the link doesn’t work for me? or is it just my phone? or did it get deleted , actually wanted to read it cuz i loved the anime but prolly won’t ever get around to reading the LN lol;False;False;;;;1610696005;;False;{};gjbn2kw;False;t3_kvdbzf;False;True;t1_gizhkss;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gjbn2kw/;1610784357;1;True;False;anime;t5_2qh22;;0;[]; -[];;;robotboy199;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;http://myanimelist.net/profile/virtualityy;light;text;t2_687tq;False;False;[];;it's not a link, it's a spoiler. honestly you're better off not reading the LN;False;False;;;;1610700020;;False;{};gjbrba3;False;t3_kvdbzf;False;True;t1_gjbn2kw;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gjbrba3/;1610786647;1;True;False;anime;t5_2qh22;;0;[]; -[];;;oChaoss;;;[];;;;text;t2_10kgxk3n;False;False;[];;ya i wanted to see the spoilers cuz ya I’m prolly never going to read it lol;False;False;;;;1610763340;;False;{};gjeu8ft;False;t3_kvdbzf;False;True;t1_gjbrba3;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gjeu8ft/;1610857926;1;True;False;anime;t5_2qh22;;0;[]; -[];;;qba19;;;[];;;;text;t2_fnhtp;False;False;[];;"This clip reminded me I wanted to give this anime a try -I fell in love with the characters -Thank you!";False;False;;;;1610834923;;False;{};gjiegvs;False;t3_kvdbzf;False;True;t3_kvdbzf;/r/anime/comments/kvdbzf/sorata_has_a_lolita_complex_the_pet_girl_of/gjiegvs/;1610931782;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;Code Geass has a lot of this;False;False;;;;1610402749;;False;{};gixl5d1;False;t3_kvdcg9;False;False;t3_kvdcg9;/r/anime/comments/kvdcg9/anime_about_territorial_conquests_creating_empire/gixl5d1/;1610457634;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Massaman95;;;[];;;;text;t2_zxb3m;False;False;[];;"[Kingdom](https://myanimelist.net/anime/12031/Kingdom) - -[https://en.wikipedia.org/wiki/Qin%27s\_wars\_of\_unification](https://en.wikipedia.org/wiki/Qin%27s_wars_of_unification)";False;False;;;;1610402831;;False;{};gixlbp3;False;t3_kvdcg9;False;False;t3_kvdcg9;/r/anime/comments/kvdcg9/anime_about_territorial_conquests_creating_empire/gixlbp3/;1610457742;4;True;False;anime;t5_2qh22;;0;[]; -[];;;vibetothehum;;;[];;;;text;t2_4lmi6fjr;False;False;[];;That one where the dude goes to another world with his smartphone lol. I liked that one and it kinda does those things;False;False;;;;1610402868;;False;{};gixlefr;False;t3_kvdcg9;False;False;t3_kvdcg9;/r/anime/comments/kvdcg9/anime_about_territorial_conquests_creating_empire/gixlefr/;1610457796;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;Yeah tons. A lot of the isekais cover that ([Overlord](https://myanimelist.net/anime/29803/Overlord) which is also in Isekai Quartet with Youjo Senki, [Drifters](https://myanimelist.net/anime/31339/Drifters) is one, [That Time I Got Reincarnated as a Slime](https://myanimelist.net/anime/37430/Tensei_shitara_Slime_Datta_Ken) is a solid town-building isekai from what I can tell), a few medieval/fantasy but non-isekai animes also seem to hit on the genre as well. [Code Geass](https://myanimelist.net/anime/1575/Code_Geass__Hangyaku_no_Lelouch) is of course a famous anime about conflict with an expansive empire.;False;False;;;;1610402873;;False;{};gixleug;False;t3_kvdcg9;False;False;t3_kvdcg9;/r/anime/comments/kvdcg9/anime_about_territorial_conquests_creating_empire/gixleug/;1610457803;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610403024;moderator;False;{};gixlpxf;False;t3_kvdgqz;False;True;t3_kvdgqz;/r/anime/comments/kvdgqz/will_there_be_a_season_2_of_overflow/gixlpxf/;1610457996;1;False;False;anime;t5_2qh22;;0;[]; -[];;;crixx93;;;[];;;;text;t2_twrpm1;False;False;[];;Highly unlikely;False;False;;;;1610403134;;False;{};gixly0i;False;t3_kvdgqz;False;True;t3_kvdgqz;/r/anime/comments/kvdgqz/will_there_be_a_season_2_of_overflow/gixly0i/;1610458133;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AlucardN7;;;[];;;;text;t2_2cscym3c;False;False;[];;GATE is good too;False;False;;;;1610403177;;False;{};gixm18t;False;t3_kvdcg9;False;True;t3_kvdcg9;/r/anime/comments/kvdcg9/anime_about_territorial_conquests_creating_empire/gixm18t/;1610458189;2;True;False;anime;t5_2qh22;;0;[]; -[];;;blackmagemasta;;MAL;[];;https://myanimelist.net/profile/blackmagemasta;dark;text;t2_aceb1;False;False;[];;I'm pretty sure that Grancrest Senki has these elements.;False;False;;;;1610403600;;False;{};gixmwz6;False;t3_kvdcg9;False;False;t3_kvdcg9;/r/anime/comments/kvdcg9/anime_about_territorial_conquests_creating_empire/gixmwz6/;1610458771;3;True;False;anime;t5_2qh22;;0;[]; -[];;;God_Spaghetti;;;[];;;;text;t2_omig0j5;False;False;[];;The best one of this kind I've watched is Code Geass, but if you want something more modern maybe Overlord will do the trick;False;False;;;;1610403721;;False;{};gixn600;False;t3_kvdcg9;False;True;t3_kvdcg9;/r/anime/comments/kvdcg9/anime_about_territorial_conquests_creating_empire/gixn600/;1610458930;2;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;It's not usually explained because that's not really the focus of the story. But it does happen when it does have an effect on the story. The Saga of Tanya the Evil and That time I was reincarnated as a slime show what happened to their MC's, off the top of my head.;False;False;;;;1610403791;;False;{};gixnb28;False;t3_kvdorj;False;True;t3_kvdorj;/r/anime/comments/kvdorj/so_im_a_spider_so_what_question/gixnb28/;1610459023;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Adamaniks;;;[];;;;text;t2_dz41ip;False;False;[];;Yeah. Those were good. I really like Tanya. Good point on those 2. I liked them both.;False;False;;;;1610403875;;False;{};gixnh3a;True;t3_kvdorj;False;True;t1_gixnb28;/r/anime/comments/kvdorj/so_im_a_spider_so_what_question/gixnh3a/;1610459130;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;" -Sorry pewdieapplepie69, you've activated my trap card! - -Memes are not allowed on /r/anime and we have implemented this flair to catch people who do in order to make removals quicker for us. Sorry for this inconvenience. - -[**Memes are not allowed on /r/anime, even with the meme flair!**](https://www.reddit.com/r/anime/wiki/rules#wiki_no_memes.2C_image_macros...) You might want to go to /r/animemes, /r/animememes, /r/goodanimemes or /r/anime_irl instead. - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610404186;moderator;False;{};gixo4du;False;t3_kvdusm;False;True;t3_kvdusm;/r/anime/comments/kvdusm/hello_this_is_my_first_time_posting_hope_you_like/gixo4du/;1610459572;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi DDsalvi, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610404335;moderator;False;{};gixofh9;False;t3_kvdwle;False;True;t3_kvdwle;/r/anime/comments/kvdwle/romance_manga_recommendations_give_me_your_best/gixofh9/;1610459771;1;False;False;anime;t5_2qh22;;0;[]; -[];;;fresh_TP_Forever;;;[];;;;text;t2_68d1ibip;False;False;[];;Read rent a girlfriend;False;False;;;;1610404386;;False;{};gixoj1s;False;t3_kvdwle;False;True;t3_kvdwle;/r/anime/comments/kvdwle/romance_manga_recommendations_give_me_your_best/gixoj1s/;1610459844;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mana-Elixir;;;[];;;;text;t2_15wdlyz9;False;False;[];;Overlord ~;False;False;;;;1610404793;;False;{};gixpde3;False;t3_kvdcg9;False;True;t3_kvdcg9;/r/anime/comments/kvdcg9/anime_about_territorial_conquests_creating_empire/gixpde3/;1610460390;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;Watashi wo namay wa Sakaido;False;False;;;;1610404805;;False;{};gixpe8e;True;t3_kve1u5;False;True;t3_kve1u5;/r/anime/comments/kve1u5/watched_id_invaded_a_good_scifi_anime_of_last_year/gixpe8e/;1610460405;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Notbrunettee;;;[];;;;text;t2_6mfay0tw;False;False;[];;Overlord!;False;False;;;;1610404865;;False;{};gixpiqh;False;t3_kve14g;False;True;t3_kve14g;/r/anime/comments/kve14g/whats_the_best_anime_youve_ever_watched_related/gixpiqh/;1610460486;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dgd8307;;;[];;;;text;t2_5gwnl6g5;False;False;[];;Fate Franchise;False;False;;;;1610404884;;False;{};gixpk3y;False;t3_kve14g;False;False;t3_kve14g;/r/anime/comments/kve14g/whats_the_best_anime_youve_ever_watched_related/gixpk3y/;1610460511;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Notbrunettee;;;[];;;;text;t2_6mfay0tw;False;False;[];;KonoSuba realistically.;False;False;;;;1610404927;;False;{};gixpn93;False;t3_kve14g;False;True;t1_gixpiqh;/r/anime/comments/kve14g/whats_the_best_anime_youve_ever_watched_related/gixpn93/;1610460568;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Worm38;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Worm38;light;text;t2_21wfoc0w;False;False;[];;Fate/Stay Night: Heaven's Feel. One has to watch Fate/Stay Night: UBW or read the visual novel before though.;False;False;;;;1610404968;;False;{};gixpqc8;False;t3_kve14g;False;True;t3_kve14g;/r/anime/comments/kve14g/whats_the_best_anime_youve_ever_watched_related/gixpqc8/;1610460625;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ColeJacks20;;;[];;;;text;t2_8asqqexe;False;False;[];;"Irregular at magic high -*there is some incest tho*";False;False;;;;1610405018;;False;{};gixpu0w;False;t3_kve14g;False;True;t3_kve14g;/r/anime/comments/kve14g/whats_the_best_anime_youve_ever_watched_related/gixpu0w/;1610460693;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;"KonoSuba, but that's not a drama you're looking for. 😁 - -A Certain Magical Index - -Saga of Tanya the evil - -High School DxD, again, not a drama. Sorry!";False;False;;;;1610405076;;False;{};gixpybr;False;t3_kve14g;False;False;t3_kve14g;/r/anime/comments/kve14g/whats_the_best_anime_youve_ever_watched_related/gixpybr/;1610460771;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Buddy_Waters;;;[];;;;text;t2_qkttj;False;False;[];;Yen Press are releasing the manga soon, which is a direct sequel. And extra crazy.;False;False;;;;1610405191;;False;{};gixq6s1;False;t3_kve1u5;False;True;t3_kve1u5;/r/anime/comments/kve1u5/watched_id_invaded_a_good_scifi_anime_of_last_year/gixq6s1/;1610460923;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BlueDragon101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Xcal1bur?status=7&order=4&orde";light;text;t2_11q4nx;False;False;[];;No, don’t start with UBW. If you absolutely have to only watch the ufotable shows, then watch Zero first. Zero isn’t a perfect intro to fate but it’s a lot better than UBW which frankly does not explain shit.;False;False;;;;1610405539;;False;{};gixqwns;False;t3_kve14g;False;True;t1_gixpqc8;/r/anime/comments/kve14g/whats_the_best_anime_youve_ever_watched_related/gixqwns/;1610461404;0;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your submission has been removed. - -- This doesn't appear to be about [anime per our definition](https://www.reddit.com/r/anime/wiki/rules#wiki_everything_posted_here_must_be_anime_specific). - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610405614;moderator;False;{};gixr28l;False;t3_kve6z7;False;True;t3_kve6z7;/r/anime/comments/kve6z7/kadokawa_has_begun_to_send_out_copystrikes_to_all/gixr28l/;1610461507;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MisterYo27;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/RAMYOZI;dark;text;t2_1h4cwgft;False;False;[];;oh really. first time hearing that. Great;False;False;;;;1610405701;;False;{};gixr8st;False;t3_kve1u5;False;True;t1_gixq6s1;/r/anime/comments/kve1u5/watched_id_invaded_a_good_scifi_anime_of_last_year/gixr8st/;1610461628;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;These are all YouTubers that create content that is specifically anime related and involves an anime Production Studio how is this not anime related? It pertains to the industry which is the very first rule of the ones that you provided.;False;False;;;;1610405977;;False;{};gixrsza;True;t3_kve6z7;False;True;t1_gixr28l;/r/anime/comments/kve6z7/kadokawa_has_begun_to_send_out_copystrikes_to_all/gixrsza/;1610462002;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;Yeah hyped for that;False;False;;;;1610406082;;False;{};gixs0hl;True;t3_kve1u5;False;True;t1_gixq6s1;/r/anime/comments/kve1u5/watched_id_invaded_a_good_scifi_anime_of_last_year/gixs0hl/;1610462140;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LordTrinity;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/LordTrinity;light;text;t2_muxil3i;False;False;[];;"**Omg,** [Magia](https://www.youtube.com/watch?v=sj3fy3J5EHI) **(Madoka Magica ed) is here, you know what to do and so do I** - -# VOTE FOR MAGIA";False;False;;;;1610406192;;1610407597.0;{};gixs88f;False;t3_kvegi9;False;False;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/gixs88f/;1610462302;27;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;Yes, it's that bad. It's a drama full of terrible choices and annoying characters. Any sad or emotional moments are completely destroyed by the fact that none of the characters are likeable so why would I be sad when bad things happen to them?;False;False;;;;1610406196;;False;{};gixs8hi;False;t3_kvegzd;False;False;t3_kvegzd;/r/anime/comments/kvegzd/without_spoiling_anything_is_the_day_i_became_a/gixs8hi/;1610462307;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheTruthVeritas;;;[];;;;text;t2_1056nw;False;False;[];;It's explained later on in the story, and in fact is even the synopsis of the web novel. It's a big part of the plot, and the way these elements are going to be revealed throughout the series is going to be great to see.;False;False;;;;1610406332;;False;{};gixsibc;False;t3_kvdorj;False;True;t3_kvdorj;/r/anime/comments/kvdorj/so_im_a_spider_so_what_question/gixsibc/;1610462503;3;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 80, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Everything is better with a good hug', 'end_date': None, 'giver_coin_reward': 0, 'icon_format': 'PNG', 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png', 'icon_width': 2048, 'id': 'award_8352bdff-3e03-4189-8a08-82501dd8f835', 'is_enabled': True, 'is_new': False, 'name': 'Hugz', 'penny_donate': 0, 'penny_price': 0, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16&height=16&auto=webp&s=69997ace3ef4ffc099b81d774c2c8f1530602875', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32&height=32&auto=webp&s=e9519d1999ef9dce5c8a9f59369cb92f52d95319', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48&height=48&auto=webp&s=f076c6434fb2d2f9075991810fd845c40fa73fc6', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64&height=64&auto=webp&s=85527145e0c4b754306a30df29e584fd16187636', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128&height=128&auto=webp&s=b8843cdf82c3b741d7af057c14076dcd2621e811', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16&height=16&auto=webp&s=69997ace3ef4ffc099b81d774c2c8f1530602875', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32&height=32&auto=webp&s=e9519d1999ef9dce5c8a9f59369cb92f52d95319', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48&height=48&auto=webp&s=f076c6434fb2d2f9075991810fd845c40fa73fc6', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64&height=64&auto=webp&s=85527145e0c4b754306a30df29e584fd16187636', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128&height=128&auto=webp&s=b8843cdf82c3b741d7af057c14076dcd2621e811', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;Tryer1234;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Tryer/animelist;light;text;t2_5r3r5;False;False;[];;"I wouldn't say it's terrible. Its just about average. The first 10 episodes are slice of life, which really should have been condensed to 6 to leave room for the rest of the story, which was rushed and crammed into the last three eps. - -Its Jun Maeda's curse, he just can't write a show that fits in 12 episodes. Angel beats was the closest he got to accomplishing that.";False;False;;;;1610406422;;False;{};gixsorx;False;t3_kvegzd;False;False;t3_kvegzd;/r/anime/comments/kvegzd/without_spoiling_anything_is_the_day_i_became_a/gixsorx/;1610462661;5;True;False;anime;t5_2qh22;;1;[]; -[];;;Worm38;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Worm38;light;text;t2_21wfoc0w;False;False;[];;Hard disagree on my part.;False;False;;;;1610406507;;False;{};gixsv0z;False;t3_kve14g;False;True;t1_gixqwns;/r/anime/comments/kve14g/whats_the_best_anime_youve_ever_watched_related/gixsv0z/;1610462798;3;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;I second this. **VOTE FOR MAGIA**;False;False;;;;1610406562;;False;{};gixsz2r;False;t3_kvegi9;False;False;t1_gixs88f;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/gixsz2r/;1610462897;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;"Vote for [Unlasting](https://youtu.be/2gRAkt2Apnk). It’s one of the most beautiful songs I’ve ever heard. LiSA knocked it out of the park. The visuals, on top, of that, have an amazing cinematic feel. Please give it a listen. - -Vote for [Daisy](https://youtu.be/RT0FEFcT54g). Probably the most stylish ending song in anime. Beautiful and an absolute jam ! Also, it starts as the episode’s ending, so it’s already an awesome ending.";False;False;;;;1610406601;;False;{};gixt1yy;False;t3_kvegi9;False;False;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/gixt1yy/;1610462957;20;True;False;anime;t5_2qh22;;0;[]; -[];;;_nowaves;;;[];;;;text;t2_7q84mx65;False;False;[];;Strike Witches for WWII magic girls fighting aliens. 11 out of 10 should watch👌;False;False;;;;1610406693;;1610406889.0;{};gixt8mt;False;t3_kve14g;False;True;t3_kve14g;/r/anime/comments/kve14g/whats_the_best_anime_youve_ever_watched_related/gixt8mt/;1610463090;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dualcalamity;;;[];;;;text;t2_fyzzi;False;False;[];;The first anime adaptation of [Utawarerumono](https://myanimelist.net/anime/856/Utawarerumono) does a good job adapting the source material. I highly recommend the videogames of the second and third game instead of the anime because things were changed and the war elements are very toned down.;False;False;;;;1610407056;;False;{};gixtyui;False;t3_kvdcg9;False;True;t3_kvdcg9;/r/anime/comments/kvdcg9/anime_about_territorial_conquests_creating_empire/gixtyui/;1610463584;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;"Top pick of the day goes to my jam [Kokuhaku](https://youtu.be/12_AiRwyLLQ) from Guilty Crown. Mediocre show, spectacular soundtrack - -Another mediocre show with an awesome ending is Aldnoah.Zero's [aLIEz](https://youtu.be/W3SIX8z3dwg). The good news about these two endings is you never ever have to watch the show, so enjoy these songs regardless. - -[Honey Honey Honey](https://youtu.be/v2cDzNotFH4) comes from a terrific show, Punch Line - -I know people are going to scream recency bias, but [Chikatto Chika Chiko](https://youtu.be/qL4yWQmMCb0) is still a bop - -PS. Dargon Ball Super made me laugh";False;False;;;;1610407094;;False;{};gixu1kk;False;t3_kvegi9;False;True;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/gixu1kk/;1610463636;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;I loved the comedy but the drama just didn't have enough episodes to be as impactful as he wanted to make it so the show started off strong but ended up kind of falling flat on its face towards the end.;False;False;;;;1610407120;;False;{};gixu3hs;False;t3_kvegzd;False;True;t3_kvegzd;/r/anime/comments/kvegzd/without_spoiling_anything_is_the_day_i_became_a/gixu3hs/;1610463670;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarRufus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ScarRufus;light;text;t2_2u0vy1pk;False;False;[];;I saw it was REALLY disappointing... To not say Bad. Really the 3 last episodes were terrible, out of characters. And a lot of sub plots / characters and build up were all put on trash and I hate how the MC become so brainless in that hospital... He keep doing the same mistake again and again. The last time I remember getting this big disappoint with the last episodes was with Kado Right Answer... So much waste potential...;False;False;;;;1610407121;;False;{};gixu3kv;False;t3_kvegzd;False;True;t3_kvegzd;/r/anime/comments/kvegzd/without_spoiling_anything_is_the_day_i_became_a/gixu3kv/;1610463672;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;Ew, tiktok;False;False;;;;1610407134;;False;{};gixu4gp;False;t3_kveivx;False;True;t3_kveivx;/r/anime/comments/kveivx/omegle_death_note_prankhis_reaction_at_the_end/gixu4gp/;1610463688;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MysteriousForeteller;;;[];;;;text;t2_laeagid;False;False;[];;Nooo don't tell me that. I literally just started watching this and quite enjoyed the 1st episode.;False;False;;;;1610407295;;False;{};gixufvw;False;t3_kvegzd;False;True;t3_kvegzd;/r/anime/comments/kvegzd/without_spoiling_anything_is_the_day_i_became_a/gixufvw/;1610463912;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeralyos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Zeralyos;light;text;t2_dphmj32;False;False;[];;"Alright, last time I'm asking for ~~shills~~ recommendations is today! In the bracket I'll be listening to everything but please send me more links for today. - -Here's the stuff I love from today's selection: - -[Connected](https://animethemes.moe/video/CopCraft-ED1.webm) - Cop Craft - -[Akumade Koiwazurai](https://animethemes.moe/video/BeelzebubJouNoOkinimesuMama-ED1.webm) - Beelzebub-jou no Okinimesu mama - -[Tabi no Hidarite, Saihate no Migite](https://animethemes.moe/video/MadeInAbyss-ED1.webm) - Made in Abyss - -[Futurism](https://animethemes.moe/video/SymphogearS4-ED2.webm) - Senki Zesshou Symphogear AXZ (spoilers) - -[Hectopascal](https://animethemes.moe/video/YagateKimiNiNaru-ED1.webm) - Yagate Kimi Ni Naru - -[Michishirube](https://animethemes.moe/video/VioletEvergarden-ED1.webm) - Violet Evergarden - -[Magia](https://animethemes.moe/video/MadokaMagica-ED2.webm) - Mahou Shoujo Madoka Magica - -[Fly Me to the Star](https://animethemes.moe/video/ShoujoKagekiRevueStarlight-ED9.webm) - Shoujo Kageki Revue Starlight (You should also check out all the variants if you have time, there are too many to link but they're all great) - -[Nandemonaiya](https://animethemes.moe/video/KimiNoNaWa-ED1.webm) - Kimi No Na Wa - -Have fun!";False;False;;;;1610407331;;False;{};gixuic4;False;t3_kvegi9;False;False;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/gixuic4/;1610463957;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeralyos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Zeralyos;light;text;t2_dphmj32;False;False;[];;Hell yeah;False;False;;;;1610407389;;False;{};gixumh0;False;t3_kvegi9;False;False;t1_gixs88f;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/gixumh0/;1610464035;4;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;"The phrase, ""Saved the best for last"" gets thrown out a lot, but in these elimination rounds, it just might be true. There's a very high likelihood that the winner of this contest (I'd say around 70%) will come from this group. - -First, you've got [Singing](https://animethemes.moe/video/KOnMovie-ED1.webm) which is looking to wrap up the K-On 4-peat and is every bit as good as the other winners. - -Then, you've got the [Chika Dance](https://animethemes.moe/video/KaguyaSamaWaKokurasetai-ED2.webm) which has the double factors of Kaguya and Meme going for it, not to mention it is extremely good. - -You've got the classic [Fly Me to the Moon](https://animethemes.moe/video/NeonGenesisEvangelion-ED1.webm) which was the Top Seed last contest. - -You've got [Hare Hare Yukai](https://animethemes.moe/video/SuzumiyaHaruhiNoYuuutsu-ED1.webm) from Haruhi which always makes it really far. - -You've got 2 of the better ED's from Full Metal Alchemist in [Uso](https://animethemes.moe/video/FullmetalAlchemistBrotherhood-ED1.webm) and [Let It Out](https://animethemes.moe/video/FullmetalAlchemistBrotherhood-ED2.webm) - -And finally, you've got my personal favorite in [Magia] (https://animethemes.moe/video/MadokaMagica-ED2.webm) which normally gets a Top 10 Seed.";False;False;;;;1610407400;;1610407828.0;{};gixun9u;False;t3_kvegi9;False;False;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/gixun9u/;1610464054;21;True;False;anime;t5_2qh22;;0;[]; -[];;;loomnoo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/loomnoo;light;text;t2_5ev8pklg;False;False;[];;Legend of the Galactic Heroes;False;False;;;;1610407496;;False;{};gixuu1n;False;t3_kvdcg9;False;True;t3_kvdcg9;/r/anime/comments/kvdcg9/anime_about_territorial_conquests_creating_empire/gixuu1n/;1610464186;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ayzuki;;;[];;;;text;t2_znm84;False;False;[];;I liked it personally. It was a fun watch, I don't think it was bad.;False;False;;;;1610407603;;False;{};gixv1rv;False;t3_kvegzd;False;True;t3_kvegzd;/r/anime/comments/kvegzd/without_spoiling_anything_is_the_day_i_became_a/gixv1rv/;1610464341;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LordTrinity;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/LordTrinity;light;text;t2_muxil3i;False;False;[];;"But for real, this ed is fucking amazing. The song is really good (it depends on what you like to listen to tbh), the animation is really interesting and mostly important, the meaning of it is fantastic. And the first moment this ed appears is also truly a genius stuff. Fantastic ed, it literally has everything one should aim for on an ed - -[Here's another link, better quality than the Youtube one](https://animethemes.moe/video/MadokaMagica-ED2.webm)";False;False;;;;1610407754;;False;{};gixvcky;False;t3_kvegi9;False;False;t1_gixs88f;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/gixvcky/;1610464563;12;True;False;anime;t5_2qh22;;0;[]; -[];;;SwampyBogbeard;;;[];;;;text;t2_6na87;False;False;[];;"Personal (lesser known) favourites that I recommend checking out: - -[Yume no Naka no Watashi no Yume](https://www.youtube.com/watch?v=iW9QyCCXUgE) (Very similar to Flip Flappers' ED, not just because it's the same person singing, but last year one got a good seed while the other was ignored.) -[Set Them Free](https://www.youtube.com/watch?v=oIKB7i6fcmk) (One of the most fitting EDs of all time) -[Maware! Setsugetsuka](https://www.youtube.com/watch?v=ferGx_mtHdM) (MAWARE MAWARE MAWARE MAWARE MAWARE MAWARE MAWARE MAWARE MAWARE) - -The other lesser known songs I voted for were 'Iikagen ni Shite, Anata', 'To Be Continued?' and [Anti Clockwise](https://www.youtube.com/watch?v=vkISTgA3DZs) (this one having 10 million views surprised me quite a bit). - -Also, give Magia a high seed so it can actually get to the finals again.";False;False;;;;1610407855;;False;{};gixvjup;False;t3_kvegi9;False;False;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/gixvjup/;1610464705;5;True;False;anime;t5_2qh22;;0;[];True -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610407907;moderator;False;{};gixvnkg;False;t3_kvf2lq;False;True;t3_kvf2lq;/r/anime/comments/kvf2lq/world_trigger_season_2_dub/gixvnkg/;1610464781;1;False;False;anime;t5_2qh22;;0;[]; -[];;;redddditer420;;;[];;;;text;t2_23au3gdw;False;False;[];;Arslan Senki;False;False;;;;1610408003;;False;{};gixvufz;False;t3_kvdcg9;False;True;t3_kvdcg9;/r/anime/comments/kvdcg9/anime_about_territorial_conquests_creating_empire/gixvufz/;1610464912;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WhimsicalVirgo;;;[];;;;text;t2_97s0ahbz;False;False;[];;I really enjoyed how this show was able to tell such a great story with only 12 episodes. The scifi mixed in with the ongoing mystery of each episode was well thought out.;False;False;;;;1610408013;;False;{};gixvv5e;False;t3_kve1u5;False;True;t3_kve1u5;/r/anime/comments/kve1u5/watched_id_invaded_a_good_scifi_anime_of_last_year/gixvv5e/;1610464927;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HobnobsTheRed;;;[];;;;text;t2_1ftgjit5;False;False;[];;Puella Magi Madoka Magica;False;False;;;;1610408123;;False;{};gixw2wn;False;t3_kve14g;False;True;t3_kve14g;/r/anime/comments/kve14g/whats_the_best_anime_youve_ever_watched_related/gixw2wn/;1610465067;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarRufus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ScarRufus;light;text;t2_2u0vy1pk;False;False;[];;It is just tje felling of watching something so good that pass really fast. I feel a lot of times like this;False;False;;;;1610408124;;False;{};gixw30n;False;t3_kvf4bk;False;True;t3_kvf4bk;/r/anime/comments/kvf4bk/genuine_concern_about_episode_length/gixw30n/;1610465070;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;There's an old saying, time flies when you're having fun.;False;False;;;;1610408189;;False;{};gixw7nt;False;t3_kvf4bk;False;True;t3_kvf4bk;/r/anime/comments/kvf4bk/genuine_concern_about_episode_length/gixw7nt/;1610465182;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;"Today is looking stacked again. Let's get right to recommending some ED's that might get overlooked. - -[Set Them Free](https://www.youtube.com/watch?v=oIKB7i6fcmk&ab_channel=nelsonrissorisso) \- This is the best ED I'm recommending, it's a must-listen!! No buts!!! - -[Yume no Naka no Watashi no Yume](https://www.youtube.com/watch?v=MOwSaNwHJUI&ab_channel=michikaio) \- Just as dreamlike as the anime itself. - -[Kamisama no Iutoori](https://www.youtube.com/watch?v=-IcFDwygw-o&ab_channel=littlemobzy) \- Super hypnotic and calming. I could watch those tatami rooms expand and contract forever. - -[Eureka Baby](https://www.youtube.com/watch?v=gpGeoK-n8Qo&ab_channel=AdrianoAugustoSilva) \- I forgot the KKK was in this show? Still a catchy song and fun way to end the series. - -[Border](https://openings.ninja/tsukimonogatari/ed/1) \- Osu fans will definitely know and love it. Great song by ClariS -(edit: thank you u/SwampyBogbeard for pointing out the unbeatable earworm [Maware](https://openings.ninja/machine-doll-wa-kizutsukanai/ed/1), another Osu-core song) - -[To Be Continued?](https://www.youtube.com/watch?v=4QjTngci-60&ab_channel=RyotaMitarai) \- A bomb of fun and it's a crime that this has fallen off the radar. God, take me back to 2014 when this was my jam ;\_; - -&#x200B; - -**But most importantly, don't forget to vote for the GOATs** [**Magia**](https://www.youtube.com/watch?v=sj3fy3J5EHI&ab_channel=Xaldin-III)**,** [**Hunting for your Dream**](https://www.youtube.com/watch?v=cott-MKdHWA&ab_channel=PlayGongTV) **and** [**aLIEz**](https://www.youtube.com/watch?v=W3SIX8z3dwg&ab_channel=Zero)**!**";False;False;;;;1610408206;;1610409764.0;{};gixw8vo;False;t3_kvegi9;False;False;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/gixw8vo/;1610465215;10;True;False;anime;t5_2qh22;;0;[]; -[];;;darkfire621;;;[];;;;text;t2_1h9wwbr8;False;False;[];;Lol you’re right I think that saying can apply so much here I was glued to the screen with this most recent episode that dropped;False;False;;;;1610408250;;False;{};gixwc0p;True;t3_kvf4bk;False;True;t1_gixw7nt;/r/anime/comments/kvf4bk/genuine_concern_about_episode_length/gixwc0p/;1610465295;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mMeister_5;;;[];;;;text;t2_49p4u9ur;False;False;[];;"Maaaan embedding links is too much work on mobile, so I’ll just drop a couple names - -Michishirube from Violet Evergarden always hit different at the end of an episode. So satisfying to listen to. - -Manten from Fate/Zero was the ending used after Kiritsugu’s backstory. By the same people who made Magia, by the way.";False;False;;;;1610408699;;False;{};gixx8a4;False;t3_kvegi9;False;True;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/gixx8a4/;1610466137;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610409106;;False;{};gixy1at;False;t3_kvdcg9;False;True;t1_gixmwz6;/r/anime/comments/kvdcg9/anime_about_territorial_conquests_creating_empire/gixy1at/;1610466722;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610409158;;False;{};gixy52x;False;t3_kvdcg9;False;True;t1_gixmwz6;/r/anime/comments/kvdcg9/anime_about_territorial_conquests_creating_empire/gixy52x/;1610466792;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sendhelp404;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_39x4uqma;False;False;[];;"same here- concept was good but the execution was very poor. None of the characters go through any meaningful development besides the female lead, and even that is a Deus ex Machina. Pacing was really rough, the ending was awful, the side characters weren’t memorable. - -I’ll give it that the comedy in the first 6ish eps was pretty good and the art was consistently good, but IMO it wasn’t enough to make up for what could’ve been a great show but ended up being severely underwhelming";False;False;;;;1610409462;;False;{};gixyqpo;False;t3_kvegzd;False;True;t1_gixu3kv;/r/anime/comments/kvegzd/without_spoiling_anything_is_the_day_i_became_a/gixyqpo/;1610467218;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JediSnow95;;;[];;;;text;t2_457ejck1;False;False;[];;People like work trigger?;False;False;;;;1610409602;;False;{};gixz0fo;False;t3_kvf2lq;False;True;t3_kvf2lq;/r/anime/comments/kvf2lq/world_trigger_season_2_dub/gixz0fo/;1610467409;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;"Look, all I'm saying is that there's no shame about fake mic singing when this op plays. Don't feel embarrassed about outing yourself to the entire rewatch thread. We won't judge you, lol. - -Hey Show. What did you say this land was called again? *Aaaaaaa!* Oh that's right. Poor dude just got a Fairy fever dream. Show, you're looking like a twit. Stop it. He's got such a feminine body when he's crawling to the window. Pink Ranger is unreasonably asking Todd to bail out and become a wanted man in a strange world. Show got dressed so he wouldn't be nude when Pink Ranger-chan came by but instead got a male one... And then he goes running after her XD There's such a thing as too desperate y'know! I think that I unintentionally made this scene a lot funnier for myself. If only everyone were as kind and compassionate as that peace loving Marvel woman who literally shot rockets at a dude with his cockpit open. - -This girl is the worst... She claims to be all for love and peace with all creatures but also smacks and wishes Show would die to terrorists. Brat! Speaking of brats, the Quess fairy is back! ""I'll go hit him!"" Are you guys really pacifists? Drake's staff is a rubber chicken!?!? The Ah knights are more like a really whiny Twitch chat than an army. Bern Bunnings is the funniest name so far and I can't even explain why. Todd seems to be pretty satisfied with his elite status while Show is a bit more conflicted. That horse is grinning at me... Sorry, my heart belongs to Automod. Stop saying your second name Bern! Please! PFFT!! That freeze frame! I guess that's them going on an ad break. 80's anime is hilarious. - -This green haired girl sounds familiar... ""Hey, love and peace Marvel, is this the dweeb with a black eye that you tried to murder?"" Marvel is eying him up like he's the last pack of loo roll... Npc-kun totally practiced that photo throw trick for hours the previous night. I'm a bit confused about that spy fairy. Wait... So the dopey fairy is a recorder? Whatever, it's an excuse to use excessive force against Roman. More nationality stuff... Marvel Frozen shockingly enough isn't Anglo-Saxon, its just silly. Dannae Oshii on the other hand is a pretty rad mecha name. Oof... This suddenly got quite dark. The carriage assassination itself was played pretty straight and then Bern taking pleasure in torching the keep over Roman daring to outwit him was freaky. I thought Bern was gonna be our Camus! Instead the dude just went wild. - -Show chooses hoes before bros and nearly let's Todd get killed. I know that I may be rooting for the empire a little here but frankly Show is being a bit of a brat. Bern forgives him for not covering Todd and losing a Dunbine but Show oversteps his mark earning him yet another smack. Woooah... Bern's seriously intimidating. He's such a stand up bloke until you get on his bad side. Dude's got an ego and a temper to go with it. The fantasy world... Is a bit strange. They don't bat an eye at flying mechanical armoured weapons but still use stuff like bows and javelins. They're a couple steps behind their own technology. I do like the setting though. As for the factions... I'm gonna hold off commenting until they're established properly because I know that Marvel and Drake's daughter will influence my opinion negatively at the moment.";False;False;;;;1610409629;;1610409891.0;{};gixz2a7;False;t3_kvfm0x;False;False;t3_kvfm0x;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/gixz2a7/;1610467448;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;"**Aura Battler First-Timer** - -- Show be having some creepy dreams. - -- [I appreciate Show's **morning exercises.**](#lewdgyaru) - -- [There’s the obligatory Slap!](https://i.imgur.com/VB0om3U.png) - -- Aight so Drake’s daughter is not a fan of what her dad’s doing, wants to free the silkie, and [probably has a crush on Neal](https://i.imgur.com/iy3UhDe.png). - -- Getting a bunch of tiny Gundam Hammers thrown at you, how *fun* of an initiation that must have been. - -- The way his name is pronounced it *sounds* like [“Burn Burnings”](https://i.imgur.com/hn2lVFK.png) and I laughed *so* hard I got a wtf look from my youngest sister. - -- [Oh cool Show still gets to use his bike](https://i.imgur.com/GLwTPP2.png), lol at [that one guy’s face as he’s looking at it](https://i.imgur.com/vew7CZI.png). - -- What… *did* they need gasoline for if they didn’t have engines to power it with? [](#niatilt) - -- [Ohhhhhhhhh so that’s why the narrator keeps mentioning he's a Mi Firario](https://i.imgur.com/4FLHpYA.png)! - -- Roman tried to bribe Bern over to his side, but Bern heard there was a Firario spying on them and that was a big nope. Battle time it is. - -- […sure?](https://i.imgur.com/1DxEzKC.png) - -- [](#harukathink) Bern piloting a red mech just made me want a Char Clone voiced by Sho Hayami… Well, Bern *did* do [the Char Laugh](https://i.imgur.com/1BAoZOd.png) at least. - -- [](#emiliaohdear) [That’s what I was thinking too…](https://i.imgur.com/M5Tcdmh.png) - -- [I mean Show is right, but SLAP!](https://i.imgur.com/GgzA7Xx.png)";False;False;;;;1610409638;;False;{};gixz2zg;False;t3_kvfm0x;False;False;t3_kvfm0x;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/gixz2zg/;1610467461;5;True;False;anime;t5_2qh22;;0;[]; -[];;;dralcax;;MAL;[];;http://myanimelist.net/animelist/Dralcax;dark;text;t2_9zhve;False;False;[];;"**First-timer now headcanons Frozen as part of the MCU** - -[What a nice and friendly and totally not ominous face.](https://i.imgur.com/rmLJVBd.png) - -[Awfully thicc for such a smol girl](https://i.imgur.com/6PkyZgS.png) - -[](#assman) - -[Gee,](https://i.imgur.com/jiZAkFK.png) [what a warm welcome.](https://i.imgur.com/bASW06b.png) Can you imagine if a new recruit just fucking died from this and everyone’s just like “shit what now?” I guess they’d have died in battle anyways, but even cannon fodder at least helps a little. - -[Huh, apparently people have been drilling for oil thousands of years before the internal combustion engine.](https://i.imgur.com/ztYl7Sb.png) TIL. - -[I mean, that sounds like a bunch of pretty normal guys to me](https://i.imgur.com/pVGzBAL.png) - -[That is a *very* unfortunate name.](https://i.imgur.com/fmAXwPe.png) - -[Umm... if you say so?](https://i.imgur.com/fm3c6jG.png) - -[I love this one guy](https://i.imgur.com/dPS3cMc.png) [trying to spear a mecha.](https://i.imgur.com/02uRXZT.png) [But hey, it worked in Moon Gundam!](https://imgur.com/a/ZUBbIRb) - -[“Are we the baddies?”](https://i.imgur.com/dalKXhF.png) - -[Down to one Dunbine already?](https://i.imgur.com/MStUM9K.png) That sure didn’t last long. - -[“I don't understand it, baby. This has never happened to me before, honest.”](https://i.imgur.com/zTGZk0O.png) - -[And there we have the correction!](https://i.imgur.com/x5NA1wv.png) - -Questions of the Day: - -* I like the contrast between the medieval fantasy world that was there and all the technology that's getting brought over from Upper Earth. Things in Byston Well are definitely changing, one machine at a time. - -* It's an interesting bit of political tension that will no doubt escalate further and further. Things are definitely getting heated.";False;False;;;;1610409641;;1610410064.0;{};gixz35l;False;t3_kvfm0x;False;False;t3_kvfm0x;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/gixz35l/;1610467463;5;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"**First timer sub** - -The pacing on this episode felt like it was at a comfortable pace, there was no awkward cuts or feeling of rush that there was in the first episode. - -Interesting worldbuilding tidbits: - -[They have paper money.](https://i.imgur.com/zIWjqEg.png) - -[They also have photos.](https://i.imgur.com/kgiwxyi.png) - -[They have a species of runners used as messangers.](https://i.imgur.com/9A9bXDI.png) - -The Land of Mi seems to be the neighbor of the Land of Ah. Seems like duchies to different lords, still wrapping my head around the names and alliances. - ---- - -1) What are your thoughts on the series’ fantasy setting now that we’ve gotten a better glimpse at it? - - -We are seeing a real mix of medieval-fantasy mixed with bits modern tech. Its a really strange mixture, so many inventions could completely uproot medieval life yet they are getting them introduced in unusual orders. (seriously how can bows and arrows compete with mechs). [Mild speculation](/s ""Makes me wonder if we will see a bit of an arms-race on tech where either side may try pulling more and more tech from upper world to fuel their advancement."")"" - - -2) What do you make of the inter-factional conflict so far? - -I feel like I am playing catchup, not sure if I have my head around it all just yet.";False;False;;;;1610409679;;1610410255.0;{};gixz5td;False;t3_kvfm0x;False;False;t3_kvfm0x;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/gixz5td/;1610467517;4;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;aLIEz is too good for it's show. Hiroyuki Sawano strikes again;False;False;;;;1610409701;;False;{};gixz7ai;False;t3_kvegi9;False;False;t1_gixw8vo;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/gixz7ai/;1610467544;8;True;False;anime;t5_2qh22;;0;[]; -[];;;JustAnswerAQuestion;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JAaQ/;light;text;t2_66xzcvc;False;False;[];;"**First Timer** - -God I hate HiDive's site. It's so slow to do ANYTHING. - -Today on Isekai Mecha Area Hachijuu Hachi - -* We'll know the first arc is over when they finally change the opening narration -* Sho totally sounds like Saint Seiya. Oh, not Seiya, but several antagonists -* Everybody's blaming the upper earthers thinking they have any control over the situations just because they have ""aura"" powers -* This castle is full of traitors -* [Pink](http://www.myyearofstartrek.com/2013/02/pretty-in-pink.html) -* **UNICORN SHEEP** -* Maybe everybody are just racists who hate Sho because he's Japanese. -* Yeah, not following this. Bern's words didn't seem particularly incriminating. At best, it suggests that he ""might"" switch sides. He admitted to nothing. -* Weird cross between White Base and Ideon landing shuttles. Not the Bug Carrier from the OP.";False;False;;;;1610409736;;False;{};gixz9q8;False;t3_kvfm0x;False;False;t3_kvfm0x;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/gixz9q8/;1610467590;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610409788;;False;{};gixzdc6;False;t3_kvfm0x;False;True;t3_kvfm0x;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/gixzdc6/;1610467655;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pixelsaber;;;[];;;;text;t2_ofuxw;False;False;[];;"**Rewatcher - Sub** - -Let it be known that I appreciate the show's decision to depict nipples on men. Their so frequent absence is usually cause for much consternation for me... - -The episode introduces us to Lady Elmelie (Riml in the original Japanese. And yes, that is pronounced ‘Rimuru’, like a certain other isekai character.) who conspires against her father and possibly convinced Marvel to defect to the Givens, which might explain why she expected so much of Show when the two clashed and spoke on the battlefield, since she assumed Elmelie must've spoken to him. In any case, it's interesting to see her so brazenly day what she does to the people from Upper Earth, as if she expects no repercussions for doing so, implying Drake doesn't consider her efforts much of a threat to him. Having a character like her condemning her father's actions seems like an easy way to identify Drake as the villain, but soon afterwards we are shown that she seems to fancy Neal Given, and so it becomes muddled once more. Could it be that Neal Given has her wrapped around his finger, or does she herself believe what she says? No clear answer quote yet. - -Todd and Show undergo quite a bizarre —and dangerous— ritual in order to be welcomed among Drake Luft’s soldiers. I’m guessing this is something only undergone by outsiders or people who join the militia from unusual or questionable circumstances, but it could be something everyone on there went through. If it's the former, then such absurd hazing points to a culture of violence among Drake’s forces, and if it's the latter then it applies to all of Byston Well, which would be quite telling as well. I'm more inclined to believe it's just Drake's forces though, if only because he does seem villainous insofar. - -In the contrast between Todd and Show we see quite different attitudes to the issue of being stuck in another world. Todd, who seems comfortable with his circumstances, treats the situation rather flippantly and is in no rush to return to his old life, and Show, who is patently uncomfortable with things as they are and hopes to find a way back. I also took Todd's comment about what may await Show back home as to motivate him so as an implication that whatever home Todd could return to is less than ideal. - -Watching Show ride his motorcycle out into the world was wonderfully anachronistic; there's just something amusing about it that tickles me just so. It's also nice to see more of the setting, since most of the first episode took place entirely within Drake Luft's holdings, and the trio from Upper Earth were only taken to areas that concerned their suddenly forced upon employment. We also get a lot of exposition which is quite naturally framed from Show's curiosity as to the stuff he sees, and answered from an evidently biased and limited point of view. Care was taken into how such things were presented, and that's always worth praise, particularly when so many shows exposit so transparently. There is some weird stuff too though, such as the fact that they apparently produce gasoline in the setting. I would have to assume that's something they learned from Upper Earth people summoned before this time, since it seems a fruitless and needless task otherwise without proper use for such a resource. There's also paper money in one of the shots of the medieval market, but that's easy enough to chalk up to someone being cheeky with the art. - -Lorne Given seems just as shifty as Drake by this point, once more offering pitiful justification for their attack on the Luft’s lands, seeking to sway Bern Bunnings to his side with money, and using Tsuo the Mi Ferario to facilitate spying. Neither side comes off as particularly forthright or exemplary, though at least Given's stated goal of preventing Luft from taking over the Land of Ah is more admirable than forcefully conquering ~~the warring states~~ all the noble houses and placing the land under a unified rule. - -Espionage is not really something that comes up more than sparingly in mecha shows, so it’s interesting to see it figure so prominently here in just the second episode, not only as something the characters partake in, but also something that they have to be aware of and which informs their decisions. It's refreshing to see this as a constant of war, and not the one-off plots it usually serves. - -Show's small acts of defiance during battle, such as refusing to shoot his missiles and blaming it on a technical malfunction, and the snide remark he delivers as to Bern's ability to wage war, seem to indicate what path he will take quite clearly, and that sly smile he gives Bern at the end of the episode might as well have sealed the deal. - -The direction in this episode is certainly a step up from the last. Some scene transitions are yet too abrupt, but scenes had more time to breathe and there were some really excellently composed shots all throughout. Not much of a surprise given the episode was storyboarded by Tomino and directed by Osamu Sekita, who by now would've been familiar with Tomino's style, but I certainly appreciate how good it looks. - ---- - -Just letting you all know that I will likely not be replying to very many comments for the foreseeable future, owing to my current lack of home internet access. Typing stuff up on a phone is far from ideal… but I will be reading each and every comment regardless!";False;False;;;;1610409795;;False;{};gixzdv0;True;t3_kvfm0x;False;False;t3_kvfm0x;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/gixzdv0/;1610467665;5;True;False;anime;t5_2qh22;;0;[]; -[];;;sjk9000;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JK9000;light;text;t2_goeql;False;False;[];;"I had to rewatch the second half of the episode because I was so confused as to why Given would spy on his own meeting, or why Bern would care. I can only guess that the Mi Ferario has some kind of recording power/magic that the King would trust over simple spoken testimony. Either way I'm not sure assassination and arson are the best way to cover up your sedition conspiracy. I'm curious how Luft plans to explain this. - -Bern [apparently](https://i.imgur.com/FcPOj06.png) doesn't have a high opinion of non-humans. He was trash talking the Mi Ferario earlier too. - -I got a laugh out of Todd of all people scolding Show for just assuming that a white person must be American. Like, ""Geez, could you be less racist, Jap?"" Also I'm not sure if Show is aware that people outside America have Anglo-Saxon names. Although calling ""Marvel Frozen"" a name is being pretty generous. - -So, Show has an attack of conscience and stays his hands. Combined with Todd's dereliction last episode, I wonder when Bern is going to realize that kidnapping people and forcing them to be soldiers under threat of ransom is not a great military strategy. - -I liked the bit between Show and Todd as they argued the pros and cons of going back home to a normal life, versus staying and being a hero in a fantasy world. I feel like you don't see that enough in modern Isekai.";False;False;;;;1610409834;;False;{};gixzgir;False;t3_kvfm0x;False;False;t3_kvfm0x;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/gixzgir/;1610467714;5;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;"**First-Timer Who is Past the Episode He Watched Before** - -Don’t mind me; just groovin’ to the disco-tastic OP. [](#dancewithit) - -Todd’s fucking the princess? That’s not smart. He’s not the MC! - -[SLAP!](#concealedexcitement) - -Princess is into Mr. Given. Maybe she was just visiting Todd? Or maybe I’m just a perv with dirty thoughts. - -That’s some rough hazing. I only was asked to find a circle bit for the screw gun. - -Having oil is one thing, but it needs to be processed into gasoline. Did Shot Weapon teach them to do that, as well? - -The knightly steed Honda. - -Secret recording tech? Just a fairy with a good memory. - -Show is already smitten by Marvel Frozen. - -[SLAP!](#concealedexcitement) - -QOTD: - -1) Given some of the references (mostly the heavy Irish theme) it feels like someone trying almost too hard to make a Western fantasy setting. - -2) Not much. Partly because it's still being revealed, and partly because what we've seen is a little too messy and convoluted.";False;False;;;;1610409874;;False;{};gixzjac;False;t3_kvfm0x;False;False;t3_kvfm0x;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/gixzjac/;1610467766;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"**First time viewer** - -Come on Elmelie, don't assume that everyone from Upper Earth is an ignorant war-happy American. - -Apparently this world has gasoline but no internal combustion engines? That's odd unless there's some other use for it in Byston Well, or maybe Shot figured out to produce that before starting on engines. Bootstrapping technology is an odd process that you generally don't have to think about, but I know I couldn't build an engine from scratch. - -I'm not entirely sure why Tsuo was eavesdropping on the meeting and what use sending him specifically to the king was. Also there's a king? I'm guessing he rules over both Ah (Drake) and Mi (Given) and probably wouldn't approve of one invading the other so telling him of the plans would be bad for Drake. But why Tsuo instead of any other messenger? Maybe the Ferario are more trusted, possibly as a generally neutral party, or maybe there's some magic about them that makes him more useful than a regular person. I was going to suggest maybe they can't lie so could be trusted as an accurate recording of the meeting but don't currently think that's the case with the flattery that Cham was showing Elmelie early on. - -Speaking of messengers, the really fast one that Bern used is interesting and probably another kind of fey. I like the variety and it's nice to see creatures based on European folklore rather than Japanese for once in anime. Of course vampires and succubi are popular and there's the occasional werewolf or dullahan (Interviews with Monster Girls focuses on a few of these) but Earl and Fairy's the only other anime immediately coming to mind that goes fairly deep. - -Is Todd going to be incompetent and downed in every battle? I could get used to this. It would be funny if Show eventually switches sides and fights against Todd who immediately drops out each time. - -> What are your thoughts on the series’ fantasy setting now that we’ve gotten a better glimpse at it? - -I'm digging it and as I mentioned the first episode it's always nice to see the isekai aspect actually have an impact beyond the main character's thoughts. - -> What do you make of the inter-factional conflict so far? - -Seems like they aren't the biggest fish in the pond, would be interesting to see if that's actually the case and there's more to the land beyond these two sides.";False;False;;;;1610409878;;False;{};gixzjky;False;t3_kvfm0x;False;False;t3_kvfm0x;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/gixzjky/;1610467772;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;"**First-Timer, Sub-bine** - -We sure are starting with the brain whammies early, huh? Shou has a nightmare of some sort. [Speculation](/s ""I may be letting this show's status as a Sad!Tomino work color my view, but I feel like Shou is going to end the story a few bananas short of a bunch."") - -After getting out of bed, it's time for cardio! And eavesdropping on Luft's daughter trying to convince Todd to leave. [Speculation](/s ""We seem to have met our pacifist character pretty early. Wonder how she'll fare."") - -Shou runs after Daughter and tries to explain that he is less than thrilled to be here, but she ignores him. Unrelated to Shou, we learn that the people of this world use the tiny sylphs as messengers (and presumably spies). - -Drake basically tells Bern to go kill Lorne Given in a bit of a false flag attack, and the rank and file soldiers meet our Earthlings. Apparently all new soldiers have to dodge spiked bolas for a bit before they are accepted - Todd fairs pretty well here, which makes his insistence on not fighting without a gun last episode a bit perplexing. It's not like he's unskilled. - -I like the plot progession this episode. Bern may have never planned on actually getting bought out by Lorne, but him considering the option within hearing range of Tsuo(sp?) forces his hand in the matter. For Lorne's part, he seemed to not be actually planning on ""purchasing"" Bern since he immediately tried to send word to the King. - -The fight scene this episode felt kinda weird to me, in how it was animated. Everything just seemed.. slow? Maybe it's just the contrast with Noein. - -One pitfall I find the isekai genre sometimes falls into for me is that.. why is the first thought always to return home? Shou is in a brand new world with loads of new and interesting things to see and explore, and he wants to go back home already? He did dodge the question this episode about his home life, so maybe it was pretty good and he didn't want to brag. - -Miscellaneous Thoughts: - -Gasoline is a thing in this world. Wonder if that will be important? - -""Black arts"" are mentioned implying that actual magic is a thing too. - -Random fairies just mill about, which makes them even better as spies. - -Lorne Given also has a stickbug cane, maybe we'll get a cane fight at some point? - -Shou thinks that ""Marvel Frozen"" is a normal Anglo-Saxon name. - -In my raw notes, I typed ""Bern hits Shou again. That's not bright."" unintentionally making a bit of a pun. - -Questions - -1. I like it. The Fae are a favorite of mine when it comes to fantasy creatures, even if so far we haven't seen much of them. The rest of the world is gorgeous, and there seems to be a lot going on that we the audience haven't seen yet. - -2. It's delicious. The politicking and strategizing are great. Lorne may have been a bit naïve in not having troops prepared for a double cross, but I think there was a line about repairs taking too long? The Luft vs Given conflict definitely seems like a classic ""military might vs political savvy"" storyline. Assuming that House Given is still a player after this episode.";False;False;;;;1610410141;;False;{};giy01jn;False;t3_kvfm0x;False;False;t3_kvfm0x;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy01jn/;1610468111;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;"Aldnoah is one of those anime where both the openings and endings are S+ tier but you can't recommend it to anyone because the show itself is a royal trainwreck. - -Kakumeiki Valvrave is in the same boat with a very memorable score but a completely bonkers story featuring a teenager-led space republic and vampire rapists. I forgot to nominate the [Valvrave ED](https://openings.ninja/kakumeiki-valvrave/ed/1) which is a damn shame because it's probably in my top 5 favorite EDs in terms of music.";False;False;;;;1610410194;;False;{};giy055o;False;t3_kvegi9;False;False;t1_gixz7ai;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giy055o/;1610468178;4;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;"Shortstack is the gift that keeps on giving. - -The Dunbine seems ridiculously fragile... I'm assuming that the mech is supposed to be more of a mobile unit than a brawler but that makes me question what the hell they're playing at sending out untrained pilots. - -Tech wise Bison Well is like a min-maxed Civ 6 game.";False;False;;;;1610410246;;False;{};giy08su;False;t3_kvfm0x;False;False;t1_gixz35l;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy08su/;1610468247;5;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Total world annihilation.;False;False;;;;1610410349;;False;{};giy0g23;False;t3_kvft1c;False;True;t3_kvft1c;/r/anime/comments/kvft1c/what_do_you_think_is_the_ending_for_attack_on/giy0g23/;1610468376;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;Everyone loses.;False;False;;;;1610410363;;False;{};giy0h2e;False;t3_kvft1c;False;False;t3_kvft1c;/r/anime/comments/kvft1c/what_do_you_think_is_the_ending_for_attack_on/giy0h2e/;1610468394;8;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;The five kingdoms of Bison Well. Ka, Mi, Ah, Me, Ha.;False;False;;;;1610410370;;False;{};giy0hjq;False;t3_kvfm0x;False;False;t1_gixz5td;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy0hjq/;1610468403;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;I think Magi is a great choice. You should definitely check it out.;False;False;;;;1610410386;;False;{};giy0ioy;False;t3_kve14g;False;True;t3_kve14g;/r/anime/comments/kve14g/whats_the_best_anime_youve_ever_watched_related/giy0ioy/;1610468424;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;">now headcanons Frozen as part of the MCU - -Ahh! There it is. I was trying to make a joke about her name but I couldn't quite get there. Nice! - ->“Are we the baddies?” - -""The good guys normally paint their brand new mecha pitch black, right?"" - ->“I don't understand it, baby. This has never happened to me before, honest.” - -[](#azusalaugh)";False;False;;;;1610410437;;False;{};giy0m9v;False;t3_kvfm0x;False;False;t1_gixz35l;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy0m9v/;1610468489;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Pixelsaber;;;[];;;;text;t2_ofuxw;False;False;[];;"> Yeah, not following this. Bern's words didn't seem particularly incriminating. - -He does confirm the rumors of Drake's plan to conquer the land of Ah by saying the man wouldn't stop his ambitions just because one of his knights defected.";False;False;;;;1610410451;;False;{};giy0nav;True;t3_kvfm0x;False;False;t1_gixz9q8;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy0nav/;1610468507;5;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Same reason as TV episodes come out weekly here in the west.;False;False;;;;1610410509;;False;{};giy0rcr;False;t3_kvfv6l;False;False;t3_kvfv6l;/r/anime/comments/kvfv6l/why_do_anime_episodes_come_out_once_a_week/giy0rcr/;1610468584;6;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;Most TV channels have a set schedule that repeats weekly. They come out weekly because it's a standard that everyone has agreed to work on and around.;False;False;;;;1610410534;;False;{};giy0t1b;False;t3_kvfv6l;False;False;t3_kvfv6l;/r/anime/comments/kvfv6l/why_do_anime_episodes_come_out_once_a_week/giy0t1b/;1610468618;5;True;False;anime;t5_2qh22;;0;[]; -[];;;LadyKuzunoha;;;[];;;;text;t2_15f0ra;False;False;[];;Most anime still air on TV first and have to be scheduled around other programs.;False;False;;;;1610410575;;False;{};giy0vyh;False;t3_kvfv6l;False;True;t3_kvfv6l;/r/anime/comments/kvfv6l/why_do_anime_episodes_come_out_once_a_week/giy0vyh/;1610468673;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;"Oh Show... We don't hate you because of your nationality. It's your personality we dislike~ - -I think the incriminating part would have been Bern talking about Drake's military. Drake is probably wanting to keep his upgraded war machines a secret until the time is right. Once the Dunbine is mass produced he'll put an end to the Empire in no time.";False;False;;;;1610410619;;False;{};giy0z0m;False;t3_kvfm0x;False;False;t1_gixz9q8;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy0z0m/;1610468728;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Sedisrehtac;;;[];;;;text;t2_3bi1x3xy;False;False;[];;"EVERYONE DIES - - -Except Mikasa.";False;False;;;;1610410632;;False;{};giy0zzn;False;t3_kvft1c;False;False;t3_kvft1c;/r/anime/comments/kvft1c/what_do_you_think_is_the_ending_for_attack_on/giy0zzn/;1610468747;2;True;False;anime;t5_2qh22;;0;[]; -[];;;not_powerrogue;;;[];;;;text;t2_435uw384;False;False;[];;Bio luminescent cum;False;False;;;;1610410687;;False;{};giy13ta;False;t3_kvfwlk;False;True;t3_kvfwlk;/r/anime/comments/kvfwlk/real_life_dragon_ball_z_effects/giy13ta/;1610468817;2;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;Most anime still air on TV then get ported to streaming services. You have some direct to streaming shows like Devilman Crybaby where it came out all at once.;False;False;;;;1610410703;;False;{};giy14y8;False;t3_kvfv6l;False;True;t3_kvfv6l;/r/anime/comments/kvfv6l/why_do_anime_episodes_come_out_once_a_week/giy14y8/;1610468837;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610410765;moderator;False;{};giy196r;False;t3_kvfyw4;False;True;t3_kvfyw4;/r/anime/comments/kvfyw4/anime_questions_for_one_piece/giy196r/;1610468912;1;False;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"> Ka, Mi, Ah, Me, Ha - - -Got it: [Ka Mi Ah Me Ha](https://i.imgur.com/NLVoDE2.png) - -That leads to my next question, is Bison Well a single country or area or the lower-earth area.";False;False;;;;1610410773;;False;{};giy19qv;False;t3_kvfm0x;False;False;t1_giy0hjq;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy19qv/;1610468923;4;True;False;anime;t5_2qh22;;0;[]; -[];;;EternalWisdomSleeps;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EternalSleep;light;text;t2_1ux1yne;False;False;[];;"Almost skipped Revue Starlight ed, thanks for mentioning it! - -[Chanto Iwanakya Aisanai](https://animethemes.moe/video/Lupin2015-ED1.webm) - Lupin III: Part IV - -Lupin III stuff never makes it past elimination bracket regardless of contest, but it's great.";False;False;;;;1610410808;;False;{};giy1c75;False;t3_kvegi9;False;False;t1_gixuic4;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giy1c75/;1610468968;5;True;False;anime;t5_2qh22;;0;[]; -[];;;chibijosh;;;[];;;;text;t2_bkmc0;False;False;[];;"**First Timer** - -You know, for a show that’s fairly lengthy at 49 episodes, they don’t seem to be wasting much time at exposition and I am so confused. I’m not entirely sure who Given is. And why that fairy was sitting there looking creepy by just staring and moving it’s mouth. - -I was definitely not expecting Bern to just straight up destroy that carriage. - -I’m doing a little reading on this show, I realized that Tomino also did a Brain Powerd. Another show I own, haven’t seen, but loved the units in an SRW game.";False;False;;;;1610410863;;False;{};giy1g7z;False;t3_kvfm0x;False;False;t3_kvfm0x;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy1g7z/;1610469043;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeralyos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Zeralyos;light;text;t2_dphmj32;False;False;[];;"> Lupin III stuff never makes it past elimination bracket regardless of contest, but it's great. - -Well it's getting my vote now, so thanks for sharing.";False;False;;;;1610410866;;False;{};giy1gbn;False;t3_kvegi9;False;False;t1_giy1c75;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giy1gbn/;1610469044;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Btw_kek;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SouvlakiSpace7;light;text;t2_i0pj6;False;False;[];;"**first timer** - -* [uh, are those babies growing on flowers?](https://imgur.com/PpaXIb7) - -* [wasn’t this a pixiv trend a bit ago?](https://imgur.com/HrvDOmV) - -* [](#punch) - -* so daughter-chan hates her father and is in love with the leader of the secret movement against her father - -* holy shit they’re just gonna throw weapons at them!? [](#azusalaugh) - -* [dang sounds nice](https://imgur.com/kJZlV6J) - -* [oh she WANTS him](https://imgur.com/qYFjATM) - -* [wooooowwwwww](https://imgur.com/Wyaxpuv) - -* [wow RIP](https://imgur.com/qQ5lwDL) [wait, who even were you again?](#sakurathink) - -* [](#punch) - ->What are your thoughts on the series’ fantasy setting now that we’ve gotten a better glimpse at it? - -I like the dreaminess of it. They keep saying ""land between the sea and the shore"" which is a ambiguous and liminal space, and other mystical mumbo jumbo dreamy words. Stuff like babies growing on flowers add to that, but we aren't getting much of it in the ""main plot"" so far... - -I wish the music added to it as well, and in fact, [this is a perfect time to shill Shiro Sagisu's soundtrack to Garzey's Wing](https://www.youtube.com/watch?v=BZWYQqXf480) because I think it encapsulates the dreaminess of Byston Well perfectly even though absolutely nothing else in the OVA matches the same feeling and it's not like you could hear the soundtrack anyway because the OVA's gibberish dialogue keeps getting in the way - ->What do you make of the inter-factional conflict so far? - -~~a convoluted situation~~ I'll get back to you once I make sense of the plot in like 10 episodes - -[](#mugiwait)";False;False;;;;1610410889;;False;{};giy1hz6;False;t3_kvfm0x;False;False;t3_kvfm0x;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy1hz6/;1610469077;5;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;"> I was going to suggest maybe they can't lie so could be trusted as an accurate recording of the meeting but don't currently think that's the case with the flattery that Cham was showing Elmelie early on. - -Fairies being unable to lie is a common trope. But that is a good counterpoint. - ->Is Todd going to be incompetent and downed in every battle? - -The classic Loser ~~Villain~~ Rival who inexplicably keeps getting people to provide him mecha to pilot.";False;False;;;;1610410918;;False;{};giy1k33;False;t3_kvfm0x;False;False;t1_gixzjky;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy1k33/;1610469115;4;True;False;anime;t5_2qh22;;0;[]; -[];;;JustAnswerAQuestion;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JAaQ/;light;text;t2_66xzcvc;False;False;[];;I see, yes, that makes sense.;False;False;;;;1610410940;;False;{};giy1lk5;False;t3_kvfm0x;False;False;t1_giy0z0m;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy1lk5/;1610469143;5;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;">wasn’t this a pixiv trend a bit ago? - -[](#laughter) - -It's amazing how cyclical pop culture is. - ->wow RIP - -The rival lord's.. wife? A plot point to cause a survivor to seek out revenge. - ->this is a perfect time to shill Shiro Sagisu's soundtrack to Garzey's Wing - -[](#comfy)";False;False;;;;1610411215;;False;{};giy2546;False;t3_kvfm0x;False;False;t1_giy1hz6;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy2546/;1610469529;5;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;Todd once again shows off superior American masculinity by refusing to get dressed for the Princess. He just stood there and established dominance while the Japanese lad ran off to get some clothes on before she came. Then the Japanese guy got ladled with all the princess's gripes and complaints along with two smacks. Tldr, be more Murcia!;False;False;;;;1610411232;;False;{};giy26bc;False;t3_kvfm0x;False;False;t1_gixzjac;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy26bc/;1610469552;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ComfortablyRotten;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Leuwtian;light;text;t2_78zrok5y;False;False;[];;"**First timer**, might have been a bit too sleepy when watching - -That was quite the dream Show had at the beginning. Why is it that those girls who clearly oppose Drake's ambitions and are willing to try to get some of his men to at least doubt him, always stop Show whenever he asks for some context? The dude is only there for less than a week, he's confused, explain! - -Looks like the plot is officially getting started already, with what I think might be a war crime? I'm not used with the customs of war though, so it might not be that exactly. I'm starting to think all those girls might be right about Drake and his followers though. - -Are slaps a staple of Tomino's stuff? I know there's some Gundam memes about that. Those were some pretty good ones. Really liked Show's smug face a the end toon - -Side note, that military ritual thing looked pretty ridiculous ngl. The fun kind of ridiculous though. - -**Questions of the day** - -1) The fantasy feels a bit on the generic side of medieval fantasy, not gonna lie... though without monsters as far as I saw. The Mechas and the technology that Show and co. bring makes it better though. - -2) We haven't seen enough of it right now, did we? I guess it's interesting so far, might be convoluted but that's what's good with this kind of conflict.";False;False;;;;1610411303;;False;{};giy2ba3;False;t3_kvfm0x;False;False;t3_kvfm0x;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy2ba3/;1610469652;3;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;I sorta assumed that Bison Well was the name of the world... They haven't really explained the Aura Road or anything yet.;False;False;;;;1610411348;;False;{};giy2eg7;False;t3_kvfm0x;False;False;t1_giy19qv;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy2eg7/;1610469718;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;">Singing! - ->K-On! The Movie - -aahh shit here we go again";False;False;;;;1610411398;;False;{};giy2hze;False;t3_kvegi9;False;False;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giy2hze/;1610469785;5;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;It seems like Drake has already messed up by unintentionally leaking so much of Shot's Weapons to Given. He had all the Aura pilots and futuristic weaponry but blew his advantage due to being careless about his daughter and by refusing to properly train his pilots before sending them out to fight.;False;False;;;;1610411439;;False;{};giy2kuk;False;t3_kvfm0x;False;False;t1_gixzdv0;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy2kuk/;1610469840;5;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;My headcannon was that the Aura Road was the mystical portal of light that the summoned humans from upper-earth fell down, that being the connection between worlds. But it seems unexplained thus far.;False;False;;;;1610411441;;False;{};giy2l1h;False;t3_kvfm0x;False;True;t1_giy2eg7;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy2l1h/;1610469843;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Btw_kek;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SouvlakiSpace7;light;text;t2_i0pj6;False;False;[];;"> A plot point to cause a survivor to seek out revenge. - -I figured. I've learned that even if you don't catch exactly what's going on in a Tomino show in the moment, something will happen that will give you the gist of it later";False;False;;;;1610411505;;False;{};giy2pj8;False;t3_kvfm0x;False;True;t1_giy2546;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy2pj8/;1610469935;3;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;Todd on paper should be one of the more skilled pilots due to being used to flying already. He was giving out a lot of tips to the boys yesterday and the only reason he got shot down today was because he placed his trust in the dishonourable Show who happily abandoned him. Good guy Tod counter anyone?;False;False;;;;1610411670;;False;{};giy313q;False;t3_kvfm0x;False;False;t1_giy1k33;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy313q/;1610470161;4;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;Tsuo seemed totally out of it but I assumed that he was like a Fairy tape player. So he'd have been able to replay the audio of that meeting on front of the King.;False;False;;;;1610411748;;False;{};giy36nb;False;t3_kvfm0x;False;True;t1_gixzjky;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy36nb/;1610470275;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Quiddity131;;MAL;[];;http://myanimelist.net/profile/Quiddity131;dark;text;t2_f3bdc;False;False;[];;"**Rewatcher, Subbed** - -The path to Byston Well is full of seaweed! Eww! Lots of other weird stuff too! - -Aren't you going to put on some clothes before opening the window and going outside Shou? - -Looks like the girl we saw peeking through the window ever so briefly last episode is yet another one trying to get our ""Upper Earthlings"" to not fight for Drake. I was going to call her princess, but then Drake's not the king. What do you call a Lord's daughter? - -Shou seems a little disappointed that it's this guy instead of Riml coming in his room. - -So Marvel is from Upper Earth as well? - -Some of Riml's facial expressions remind me of Elchi from Xabungle, who was essentially the ""princess"" character too. - -Drake's knights aren't too fond of these outsiders, huh? - -That was quite the odd hazing ceremony to welcome them into Drake's forces. - -It seems like Todd doesn't mind being here that much. He'd like some glory for himself. - -LoL, Shou is actually gonna ride his motorcycle over to Given's land. - -Mi Ferario = Drunk Fairies - -Very odd scene here where Chum complains about Shou coming along and helping Bern and Drake, and yet she says it to Bern himself. I think the intent was for her to say this to Nie but it somehow got through this way? - -Roman Given plans on bribing Bern? - -That is a very alluring look on Marvel's face. She wants you Shou... - -Roman and Nie Given fear Drake building up his military force... yet they attacked him first. They also want to recruit Bern and his Aura Battler to their side. What's to say House Given won't try to launch a military campaign in place of Drake? Are they all that altruistic? - -Chum was pretty stupid here; getting spotted enabled that soldier to find the spy. - -In a land without email or cell phones, it is the Garou Ran who must deliver messages. - -Todd's flying another Dunbine? They fixed the version he trashed last episode then? - -So it was all a ruse on Roman's part? Now he's going to rat out Bern and Drake to the king. - -Well, going out by themselves on an undefended carriage sure was dumb. RIP Carlo and Tsuo. - -Shou won't fire, fearing its Marvel piloting. Shou's got a crush! - -LoL, Todd lost yet again. - -Good to see future RahXephon director Yutaka Izubuchi helping out on mecha designs this episode!";False;False;;;;1610411796;;False;{};giy3a0l;False;t3_kvfm0x;False;False;t3_kvfm0x;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy3a0l/;1610470341;4;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;">Mi Ferario has some kind of recording power/magic that the King would trust over simple spoken testimony. - -[Speculation](/s ""Fairys can't tell lies is a common Fey/Fae thing. If that was the case then it would explain why caution would be taken over having a fairy listen to what you have said as their testimonial could be treated as fact. Would also add to their traits of being a good spy."")";False;False;;;;1610411809;;False;{};giy3aw6;False;t3_kvfm0x;False;True;t1_gixzgir;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy3aw6/;1610470360;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Btw_kek;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SouvlakiSpace7;light;text;t2_i0pj6;False;False;[];;I believe Byston Well is the name of the entire world/lower Earth. It has countries, one of them being Ah and whatever else was mentioned. Mi?;False;False;;;;1610411813;;False;{};giy3b6m;False;t3_kvfm0x;False;False;t1_giy19qv;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy3b6m/;1610470366;3;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;"I thought they'd given us too much exposition to be honest... Its just not the type we want. They'll tell you the name and traits of the Dunbine fibers over actually letting you know which kingdom is where. - -The creepy fairy was plonked there beforehand to record the meeting. That's why Lunch had herself a little giggle at Given's ploy and Bern's anger at getting played";False;False;;;;1610411972;;False;{};giy3md9;False;t3_kvfm0x;False;True;t1_giy1g7z;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy3md9/;1610470593;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;I mean, the only Fairies we know right now is Silky who is busy little mermaiding it up and Lunch who keeps trying to beat the snot out of Show. So far I sorta hate them too.;False;False;;;;1610412110;;False;{};giy3w67;False;t3_kvfm0x;False;False;t1_gixzgir;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy3w67/;1610470802;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Quiddity131;;MAL;[];;http://myanimelist.net/profile/Quiddity131;dark;text;t2_f3bdc;False;False;[];;Indeed. I was thinking to myself during this episode about how in the world could House Givens have obtained aura battlers. Then I remembered Drake referenced last episode that he's sold them to rival houses.;False;False;;;;1610412252;;False;{};giy4647;False;t3_kvfm0x;False;False;t1_giy2kuk;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy4647/;1610470991;6;True;False;anime;t5_2qh22;;0;[]; -[];;;_Zig;;;[];;;;text;t2_r3byl;False;False;[];;"1. how would they go backwards? Reverse mountain only goes upwards from the blues but downwards toward the grand line -2. no they can’t be hit from any other anime character unless those characters have a natural advantage against the specific element -3. no Naruto wouldn’t be knocked out because he has strong will power";False;False;;;;1610412252;;False;{};giy465o;False;t3_kvfyw4;False;False;t3_kvfyw4;/r/anime/comments/kvfyw4/anime_questions_for_one_piece/giy465o/;1610470992;4;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;"Overall I found this worth watching -- and while the ending wasn't perfect, it was far less ""bad"" than many people claim. (It was actually considerably better than I had feared it might be).";False;False;;;;1610412261;;False;{};giy46ro;False;t3_kvegzd;False;True;t3_kvegzd;/r/anime/comments/kvegzd/without_spoiling_anything_is_the_day_i_became_a/giy46ro/;1610471003;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bransir;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Shrubbery;light;text;t2_kx3sw;False;False;[];;"Besides some of the greatest being in this group (Unlasting, Singing, Uso, Magia, Hunting for your dream, Michishirube, you know who you are), I'd like to highlight: - -Mitsuboshi Colours ED - [Miracle Colors☆Honjitsu mo Ijou Nashi!](https://animethemes.moe/video/MitsuboshiColors-ED1-BD1080.webm) (so genki!) - -Soul Eater ED4 - [Strength](https://animethemes.moe/video/SoulEater-ED4.webm) (my fav Soul Eater ED)";False;False;;;;1610412295;;1610412688.0;{};giy495z;False;t3_kvegi9;False;False;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giy495z/;1610471064;6;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;Todd is skilled but he's also an opportunist. He didn't fight last episode since he was at a disadvantage without a weapon and without experience in his mech. He's clearly been trying to win over the likes of Show and Shit too being a bit of a suck up. So far I really like him though. He does kind of make me think of Jerod.;False;False;;;;1610412363;;False;{};giy4dv8;False;t3_kvfm0x;False;True;t1_giy01jn;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy4dv8/;1610471151;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610412372;;False;{};giy4egp;False;t3_kvegi9;False;True;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giy4egp/;1610471162;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Btw_kek;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SouvlakiSpace7;light;text;t2_i0pj6;False;False;[];;"> Let it be known that I appreciate the show's decision to depict nipples on men. Their so frequent absence is usually cause for much consternation for me... - -[](#woo) - -that annoys me so much too";False;False;;;;1610412444;;False;{};giy4jgw;False;t3_kvfm0x;False;False;t1_gixzdv0;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy4jgw/;1610471272;4;True;False;anime;t5_2qh22;;0;[]; -[];;;chibijosh;;;[];;;;text;t2_bkmc0;False;False;[];;True. That’s probably a better way to put it. I just confuse who Drake is, who Given is, what they’re relationship was with each other. If they were real enemies, it just seems strange for Bern to stroll down for a meeting and Given to causally attempt to get him to switch sides.;False;False;;;;1610412585;;False;{};giy4te6;False;t3_kvfm0x;False;False;t1_giy3md9;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy4te6/;1610471467;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;The weirdest part about the setting is that the residents actually seem to understand the whole system of importing pilots from this other world without much surprise. I doubt Shot filled them in on everything about Earth but they've discovered a second world and their first plan is to torture a Fairy into pulling over potential mech pilots...who so far haven't done much other than act like jobbers;False;False;;;;1610412600;;False;{};giy4uf3;False;t3_kvfm0x;False;False;t1_giy1hz6;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy4uf3/;1610471487;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;I was thinking about droping after episode 3 but now I'm gonna try until 5 and let's see what happens;False;False;;;;1610412613;;False;{};giy4vb1;False;t3_kvg8ly;False;True;t3_kvg8ly;/r/anime/comments/kvg8ly/attack_on_titan_season_4_is_next_level/giy4vb1/;1610471506;4;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;Nobody likes Show. In his world or Bison Well.;False;False;;;;1610412677;;False;{};giy4zqn;False;t3_kvfm0x;False;True;t1_giy2ba3;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy4zqn/;1610471610;3;True;False;anime;t5_2qh22;;0;[]; -[];;;machopsychologist;;;[];;;;text;t2_1nsz447e;False;False;[];;Definitely a victim of it's own hype. As a story it was average.;False;False;;;;1610412709;;False;{};giy51z3;False;t3_kvegzd;False;True;t3_kvegzd;/r/anime/comments/kvegzd/without_spoiling_anything_is_the_day_i_became_a/giy51z3/;1610471654;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Quiddity131;;MAL;[];;http://myanimelist.net/profile/Quiddity131;dark;text;t2_f3bdc;False;False;[];;"> Also there's a king? I'm guessing he rules over both Ah (Drake) and Mi (Given) and probably wouldn't approve of one invading the other so telling him of the plans would be bad for Drake. - -Not that the show does any good job of explaining this (at least this early), but House Drake and House Given are both in Ah, Mi is a separate kingdom.";False;False;;;;1610412731;;False;{};giy53im;False;t3_kvfm0x;False;True;t1_gixzjky;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy53im/;1610471681;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BlueDragon101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Xcal1bur?status=7&order=4&orde";light;text;t2_11q4nx;False;False;[];;Look, UBW doesn't explain so much stuff because it assumes you know the fate route. Including Saber's identity. That's how it's supposed to work. Heaven's feel is the same way. Zero is meant to be at least a little more standalone. ish.;False;False;;;;1610412761;;False;{};giy55nk;False;t3_kve14g;False;True;t1_gixsv0z;/r/anime/comments/kve14g/whats_the_best_anime_youve_ever_watched_related/giy55nk/;1610471722;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Btw_kek;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SouvlakiSpace7;light;text;t2_i0pj6;False;False;[];;">they've discovered a second world and their first plan is to torture a Fairy into pulling over potential mech pilots - -[something something social commentary](#indexsmugshrug)";False;False;;;;1610412765;;False;{};giy55yv;False;t3_kvfm0x;False;False;t1_giy4uf3;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy55yv/;1610471729;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Quiddity131;;MAL;[];;http://myanimelist.net/profile/Quiddity131;dark;text;t2_f3bdc;False;False;[];;"> I’m doing a little reading on this show, I realized that Tomino also did a Brain Powerd. Another show I own, haven’t seen, but loved the units in an SRW game. - -Brain Powerd is quite the odd one; if you've seen/liked Darling in the Franxx you may like it as they are based on similar subject matters (demographic collapse). Brain Powered has some interesting looking mechs from Mamoru Nagano, but is a total mess of a storyline and considered one of Tomino's weakest works.";False;False;;;;1610412868;;False;{};giy5d5m;False;t3_kvfm0x;False;True;t1_giy1g7z;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy5d5m/;1610471863;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;Meanwhile they give Lunch some Barbie anatomy in the ed just to be jerks.;False;False;;;;1610412986;;False;{};giy5lfn;False;t3_kvfm0x;False;False;t1_giy4jgw;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy5lfn/;1610472020;5;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Draigg;;;[];;;;text;t2_jmliv;False;False;[];;"*A Tomino Fan Rewatches Aura Battler Dunbine Episode 2:* - -- Man, Show’s nightmare is *weird*. Granted, he’s had a rough couple of days so far. Traveling through the Aura Road would be confusing for anyone. - -- Sounds like Lord Drake’s daughter, Emilie, isn’t too happy with her father’s plan to use people from Upper Earth to pilot Aura Battlers for the sake of his ambition. And from the way she talks about Neal Gibbons and knows the fairy Cham Fau, she’s fully on the side of the House of Gibbons, despite being from the House of Luft. - -- So, Todd and Show are knights of House Luft now. And Show already has his mighty steed, his motorcycle. I guess it’s a good thing that Byston Well has gasoline, despite having no internal combustion engines. - -- It’s fun that in the dub, everyone of the House of Gibbons has rather noticeable Irish or English accents. ADV sure did put in some effort in the direction of this dub. - -- Bann is a pretty unscrupulous man, if he’s at least willing to entertain the idea of House Gibbons buying his and his knights’ loyalty, even if he’s still ultimately loyal to House Luft. I’m sure you can see why Roman Gibbons and Drake Luft are rivals, considering all of the back door scheming the both of them are apparently up to. - -- “Marvel Frozen. The name sounds pretty WASP-y to me.” It’s lines like this that make the dub of this series worth it. - -- And to further prove how unscrupulous Bann is, he has no problem killing Lady Gibbons and giving the order to burn down the Gibbons estate, if just to massacre the entire House. It’s quite a contrast to how casual he was talking to Show during his lunch break earlier. - -- Todd actually kinda sucks at combat. His Dunbine got shot down almost immediately and was a complete loss. He has a lot of lip for someone who’s pretty much at the bottom of the rung. And this was after he sounded like he knew how to pilot an aircraft too. - -- At least Show was able to convincingly lie to Bann about not being able to fire his missiles. He certainly is having second thoughts now about working for Lord Drake. Good for him, considering Lord Drake is a rather obvious villain.";False;False;;;;1610413028;;False;{};giy5obz;False;t3_kvfm0x;False;False;t3_kvfm0x;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy5obz/;1610472076;5;True;False;anime;t5_2qh22;;0;[]; -[];;;patricoldo;;;[];;;;text;t2_6kte3k32;False;False;[];;For 1 couldn’t they have started in the new world?;False;False;;;;1610413046;;False;{};giy5pl6;True;t3_kvfyw4;False;True;t1_giy465o;/r/anime/comments/kvfyw4/anime_questions_for_one_piece/giy5pl6/;1610472100;1;True;False;anime;t5_2qh22;;0;[]; -[];;;babydave371;;MAL a-amq;[];;https://myanimelist.net/profile/babydave371;dark;text;t2_sak6n;False;False;[];;They'll decide that the best system of government is to have some sort of [fight every 4 years for the presidency of Earth.](https://youtu.be/kmA5EwF0bVU);False;False;;;;1610413049;;False;{};giy5pt9;False;t3_kvft1c;False;True;t3_kvft1c;/r/anime/comments/kvft1c/what_do_you_think_is_the_ending_for_attack_on/giy5pt9/;1610472103;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;"RIP Pre-2011 anime. So much great ""older"" stuff (though referring to decade old anime as ""old"" feels weird), and tons of it is perfectly accessible.";False;False;;;;1610413105;;False;{};giy5toj;False;t3_kvg3k8;False;False;t3_kvg3k8;/r/anime/comments/kvg3k8/top_10_best_animes_for_beginners/giy5toj/;1610472181;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Worm38;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Worm38;light;text;t2_21wfoc0w;False;False;[];;"UBW explains everything you need to know. - -Fate/Stay Night, unlike Fate/Zero is in large part a mystery story, and Fate/Zero spoils a lot of that. - -While yes, UBW isn't a perfect starting point, because you do not have a proper understanding of Shirou or Saber before going into it, Fate/Zero doesn't solve that as Shirou isn't in it and Saber's character is not the same and not really explored. - -A proper adaptation of the Fate route would change that, but in its absence, Fate/Zero isn't an alternative.";False;False;;;;1610413192;;False;{};giy5ztu;False;t3_kve14g;False;True;t1_giy55nk;/r/anime/comments/kve14g/whats_the_best_anime_youve_ever_watched_related/giy5ztu/;1610472307;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Quiddity131;;MAL;[];;http://myanimelist.net/profile/Quiddity131;dark;text;t2_f3bdc;False;False;[];;"> Are slaps a staple of Tomino's stuff? I know there's some Gundam memes about that. Those were some pretty good ones. Really liked Show's smug face a the end toon - -They are, especially in Zeta Gundam which comes out a couple of years after this.";False;False;;;;1610413216;;False;{};giy61fv;False;t3_kvfm0x;False;True;t1_giy2ba3;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy61fv/;1610472346;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TristenMessier;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_1033y5vc;False;False;[];;What’s your Instagram? (Amazing work btw);False;False;;;;1610413272;;False;{};giy65hk;False;t3_kvgmkz;False;True;t3_kvgmkz;/r/anime/comments/kvgmkz/asuka_fan_art_inspired_by_her_outfit_from_episode/giy65hk/;1610472429;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;" -Sorry Zakurn, you've activated my trap card! - -Memes are not allowed on /r/anime and we have implemented this flair to catch people who do in order to make removals quicker for us. Sorry for this inconvenience. - -[**Memes are not allowed on /r/anime, even with the meme flair!**](https://www.reddit.com/r/anime/wiki/rules#wiki_no_memes.2C_image_macros...) You might want to go to /r/animemes, /r/animememes, /r/goodanimemes or /r/anime_irl instead. - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610413278;moderator;False;{};giy65xn;False;t3_kvgq24;False;True;t3_kvgq24;/r/anime/comments/kvgq24/a_scene_one_cannot_just_forget/giy65xn/;1610472437;1;False;False;anime;t5_2qh22;;0;[]; -[];;;_Zig;;;[];;;;text;t2_r3byl;False;False;[];;There’s no reverse mountain entrance for the new world;False;False;;;;1610413328;;False;{};giy69db;False;t3_kvfyw4;False;True;t1_giy5pl6;/r/anime/comments/kvfyw4/anime_questions_for_one_piece/giy69db/;1610472513;3;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Draigg;;;[];;;;text;t2_jmliv;False;False;[];;"> SLAP! - -It wouldn't be a Tomino show without slapping someone being in there. - -> Having oil is one thing, but it needs to be processed into gasoline. Did Shot Weapon teach them to do that, as well? - -Maybe, although then he'd need to change his name to Oil Baron.";False;False;;;;1610413351;;False;{};giy6b0h;False;t3_kvfm0x;False;False;t1_gixzjac;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy6b0h/;1610472546;4;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your submission has been removed. - -- All fanart must be submitted as a text post (with the proper flair) and **have the source anime in the title somewhere.** If there are multiple anime in your art, you can leave a comment instead. - - All non-OC (original content) fanart must be posted with a link to an album of three or more related images, as described [here](https://www.reddit.com/r/anime/wiki/rules#wiki_fanart). - - If you are sharing something that you found or isn't traditional fanart like a tattoo or a mural, please use the [Fanart] flair, you can post it with just one image. - - [Please read the fanart rules here](https://www.reddit.com/r/anime/wiki/rules#wiki_fanart) to avoid your posts being taken down in the future. - -- This looks like - you're trying to sell something. - Crowdfunding and selling things aren't allowed here, except for specific exceptions for positive industry causes. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610413363;moderator;False;{};giy6bw9;False;t3_kvgmkz;False;True;t3_kvgmkz;/r/anime/comments/kvgmkz/asuka_fan_art_inspired_by_her_outfit_from_episode/giy6bw9/;1610472563;1;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;Baron Shot Weapon sounds pretty good.;False;False;;;;1610413428;;False;{};giy6gfq;False;t3_kvfm0x;False;False;t1_giy6b0h;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy6gfq/;1610472658;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Petricality;;;[];;;;text;t2_3ebx5s48;False;False;[];;"This was the impression i was getting, but it’s hard to tell sometimes given the reaction of basically every platform following the endings release. - -I’ll give it a go and I’m sure I’ll enjoy it for what it is. Someone really needs to give this man at least 24 episodes.";False;False;;;;1610413458;;False;{};giy6ijd;True;t3_kvegzd;False;True;t1_gixsorx;/r/anime/comments/kvegzd/without_spoiling_anything_is_the_day_i_became_a/giy6ijd/;1610472700;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JustAnswerAQuestion;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JAaQ/;light;text;t2_66xzcvc;False;False;[];;I don't think Lord Given is surviving tomorrow's episode, just the two aura battlers and the annoying fairy.;False;False;;;;1610413522;;False;{};giy6n75;False;t3_kvfm0x;False;False;t1_giy2pj8;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy6n75/;1610472792;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Petricality;;;[];;;;text;t2_3ebx5s48;False;False;[];;"Yeah, it wouldn’t be the first time social media exaggerate, tho in this case it’s partially justified given the claims the writer made. - -I’m sure I’ll still enjoy it, there’s something about Maeda’s work that I tend to love despite the inconsistencies of his writing.";False;False;;;;1610413614;;1610414681.0;{};giy6tk9;True;t3_kvegzd;False;True;t1_giy46ro;/r/anime/comments/kvegzd/without_spoiling_anything_is_the_day_i_became_a/giy6tk9/;1610472925;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Draigg;;;[];;;;text;t2_jmliv;False;False;[];;"> oh she WANTS him - -Marvel is positively *rocking* those bedroom eyes there. - -> I wish the music added to it as well, and in fact, this is a perfect time to shill Shiro Sagisu's soundtrack to Garzey's Wing because I think it encapsulates the dreaminess of Byston Well perfectly even though absolutely nothing else in the OVA matches the same feeling and it's not like you could hear the soundtrack anyway because the OVA's gibberish dialogue keeps getting in the way - -It's a shame that a good soundtrack had to be wasted on such a shit fire of a show.";False;False;;;;1610413661;;False;{};giy6wuv;False;t3_kvfm0x;False;False;t1_giy1hz6;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy6wuv/;1610472993;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Btw_kek;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SouvlakiSpace7;light;text;t2_i0pj6;False;False;[];;yeah his chances of surviving anywhere past like episode 5 are indeed very slim;False;False;;;;1610413674;;False;{};giy6xpi;False;t3_kvfm0x;False;False;t1_giy6n75;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy6xpi/;1610473010;3;True;False;anime;t5_2qh22;;0;[]; -[];;;patricoldo;;;[];;;;text;t2_6kte3k32;False;False;[];;Yea but couldn’t they have just went the opposite way that they went;False;False;;;;1610413683;;False;{};giy6ydp;True;t3_kvfyw4;False;True;t1_giy69db;/r/anime/comments/kvfyw4/anime_questions_for_one_piece/giy6ydp/;1610473023;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Btw_kek;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SouvlakiSpace7;light;text;t2_i0pj6;False;False;[];;"all I want is for Sagisu to go back to the dreamy orchestral jazz of End of Eva and Garzey's Wing. how are *those* the only two things he did with that style?? ^^that ^^I ^^know ^^of ^^anyway - -[](#elsieqq)";False;False;;;;1610413925;;False;{};giy7f1i;False;t3_kvfm0x;False;False;t1_giy6wuv;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy7f1i/;1610473345;5;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Draigg;;;[];;;;text;t2_jmliv;False;False;[];;"> Are slaps a staple of Tomino's stuff? I know there's some Gundam memes about that. Those were some pretty good ones. - -Yeah, slapping and punching people is definitely a Tomino thing. Zeta Gundam is just *packed* with characters just beating the shit out of each other over the series, basically.";False;False;;;;1610413946;;False;{};giy7gfz;False;t3_kvfm0x;False;False;t1_giy2ba3;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy7gfz/;1610473372;3;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Draigg;;;[];;;;text;t2_jmliv;False;False;[];;"> There’s the obligatory Slap! - -It wouldn't be a Tomino show without characters slapping the shit out of each other. - -> Bern piloting a red mech just made me want a Char Clone voiced by Sho Hayami… Well, Bern did do the Char Laugh at least. - -I mean, if you think about it, a Burn is close to a Char. All we're missing now is a rival named Broiled.";False;False;;;;1610414151;;False;{};giy7ump;False;t3_kvfm0x;False;False;t1_gixz2zg;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy7ump/;1610473671;5;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;Poor pre-2011 anime, never stood a chance.;False;False;;;;1610414184;;False;{};giy7wvm;False;t3_kvg3k8;False;True;t1_giy5toj;/r/anime/comments/kvg3k8/top_10_best_animes_for_beginners/giy7wvm/;1610473719;3;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Draigg;;;[];;;;text;t2_jmliv;False;False;[];;That's probably going to have to wait until Drake Luft somehow takes over the Land of Ah, though. You just can't hand out titles like candy.;False;False;;;;1610414317;;False;{};giy862x;False;t3_kvfm0x;False;True;t1_giy6gfq;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy862x/;1610473898;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610414384;;False;{};giy8arz;False;t3_kvfwlk;False;True;t3_kvfwlk;/r/anime/comments/kvfwlk/real_life_dragon_ball_z_effects/giy8arz/;1610473992;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thegamer20001;;;[];;;;text;t2_4ha4hoy6;False;False;[];;That looks lowkey dangerous....;False;False;;;;1610414394;;False;{};giy8bg1;False;t3_kvfwlk;False;True;t3_kvfwlk;/r/anime/comments/kvfwlk/real_life_dragon_ball_z_effects/giy8bg1/;1610474004;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Retromorpher;;;[];;;;text;t2_3x42wxsp;False;False;[];;"We've got two great UI/fractal abstraction focused eds in [Nana Hitsuji](https://files.catbox.moe/vy7pxc.webm) and [Kamisama no Iutoori](https://files.catbox.moe/h7jx2g.webm) - - -[Set them Free](https://i.fiery.me/Gwj5T.webm) drumming fun. - - -[I Am Standing](https://files.catbox.moe/vtlscm.webm) more of that Sangatsu no Lion stylized visual ED goodness. Song isn't as strong as some of the others though. - - -Personal favorite with little to no objective backup [Freesia](https://animethemes.moe/video/SakuraQuest-ED1-NCBD1080.webm). - -Good on you for shilling Connected and Heptopascal so I don't have to.";False;False;;;;1610414484;;False;{};giy8hq3;False;t3_kvegi9;False;False;t1_gixuic4;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giy8hq3/;1610474130;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;"> I mean, if you think about it, a Burn is close to a Char. All we're missing now is a rival named Broiled. - -[](#azusalaugh) - -Although now that I think about it, Bern's helmet covers the lower half of his face, which at least two later Gundam series would do for [their](https://static.wikia.nocookie.net/gundam/images/4/4a/Super_Gundam_Royale_Profile_Chronicle_Asher1.png) respective [Char Clone](https://static.wikia.nocookie.net/gundam/images/3/35/MFGG-Schwartz.png)... he's actually totally a Char Clone until proven otherwise.";False;False;;;;1610414489;;False;{};giy8i3p;False;t3_kvfm0x;False;True;t1_giy7ump;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy8i3p/;1610474138;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Aadi-K;;;[];;;;text;t2_4klu6o3e;False;False;[];;I doubt it, extremely difficult to get misunderstandings as often as we see in anime, but then again, haven’t been in too many relationships so idk;False;False;;;;1610414602;;False;{};giy8py4;False;t3_kvh3b7;False;True;t3_kvh3b7;/r/anime/comments/kvh3b7/are_relationships_as_complicated_as_they_are/giy8py4/;1610474292;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;Anime is fiction. Real life relationships are way more complex than anime relationships, because they are simplified to be entertaining in anime;False;False;;;;1610414666;;False;{};giy8udl;False;t3_kvh3b7;False;False;t3_kvh3b7;/r/anime/comments/kvh3b7/are_relationships_as_complicated_as_they_are/giy8udl/;1610474377;15;True;False;anime;t5_2qh22;;0;[]; -[];;;adrianraf;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Alord;light;text;t2_k3qf6;False;False;[];;In Eastern culture, it's somewhat accurate. Although most of it are just exaggerated. But it might be super inaccurate for the Western culture.;False;False;;;;1610414731;;False;{};giy8yw1;False;t3_kvh3b7;False;True;t3_kvh3b7;/r/anime/comments/kvh3b7/are_relationships_as_complicated_as_they_are/giy8yw1/;1610474463;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Draigg;;;[];;;;text;t2_jmliv;False;False;[];;He’s a rival-ish character at the very least, which puts him on the road to becoming a Char Clone.;False;False;;;;1610414745;;False;{};giy8ztm;False;t3_kvfm0x;False;True;t1_giy8i3p;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giy8ztm/;1610474481;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SpiderGay42069;;;[];;;;text;t2_666jmyjr;False;False;[];;It depends on the person you’re with, my first relationship was long lasting and so easy, and we would always have each other, but with someone else was a rollercoaster of emotions, confused, and just general chaos, it felt like I was in it alone, it really depends;False;False;;;;1610414835;;False;{};giy96ar;False;t3_kvh3b7;False;True;t3_kvh3b7;/r/anime/comments/kvh3b7/are_relationships_as_complicated_as_they_are/giy96ar/;1610474610;3;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;No, they're FAR more complicated. Most fictional romance works in general are inaccurate in a way that makes romance more magical than it really is.;False;False;;;;1610414916;;False;{};giy9c3o;False;t3_kvh3b7;False;False;t3_kvh3b7;/r/anime/comments/kvh3b7/are_relationships_as_complicated_as_they_are/giy9c3o/;1610474727;8;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610414962;moderator;False;{};giy9fc0;False;t3_kvh7uc;False;True;t3_kvh7uc;/r/anime/comments/kvh7uc/is_the_rest_of_jojos_bizzate_adventure_going_on/giy9fc0/;1610474786;1;False;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;Anime isn't real. Real-life relationships take a lot of work. Communication is very important in a relationship.;False;False;;;;1610415049;;False;{};giy9lkf;False;t3_kvh3b7;False;False;t3_kvh3b7;/r/anime/comments/kvh3b7/are_relationships_as_complicated_as_they_are/giy9lkf/;1610474899;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Agent_Eclipse;;;[];;;;text;t2_gcvtv;False;False;[];;They are not comparable.;False;False;;;;1610415195;;False;{};giy9vxf;False;t3_kvh3b7;False;False;t3_kvh3b7;/r/anime/comments/kvh3b7/are_relationships_as_complicated_as_they_are/giy9vxf/;1610475104;2;True;False;anime;t5_2qh22;;0;[]; -[];;;professorMaDLib;;;[];;;;text;t2_hgwvg;False;False;[];;My personal favorite is Dorohedoro. I put a lot of value in originality and Dorohedoro's one of the most unique and batshit insane stories I've ever seen, with both a cool and very interest magic system.;False;False;;;;1610415196;;False;{};giy9w0l;False;t3_kve14g;False;True;t3_kve14g;/r/anime/comments/kve14g/whats_the_best_anime_youve_ever_watched_related/giy9w0l/;1610475107;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Sufficient_Ad_9328, it looks like you might be interested in hosting a rewatch! [There's a longer guide on the wiki](https://www.reddit.com/r/anime/wiki/successfulrewatchguide) but here's some basic advice on how to make a good rewatch happen: - -* Include **basic information about the anime** such as a description for those that haven't heard of it as well as where it can be watched (if legally available). - -* Specify a **date and time** that rewatch threads will be posted. Consistency is good! - -* Check for **[previous rewatches](https://www.reddit.com/r/anime/wiki/rewatches)**. It's generally advised to wait a year between rewatches of the same anime. - -* If you want to have a rewatch for multiple anime, they should be **thematically connected**. You can also hold multiple unrelated rewatches if they aren't. - -* Ensuring **enough people are interested** is important. If only a few users say they *might* participate, you may end up with no one commenting once it starts. - -[](#bot-chan) - -I hope this helps! You may also want to talk to users that have hosted rewatches before for extra advice, also listed [on the rewatch wiki](https://www.reddit.com/r/anime/wiki/rewatches). - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610415403;moderator;False;{};giyaami;False;t3_kvhcf4;False;True;t3_kvhcf4;/r/anime/comments/kvhcf4/a_question_about_log_horizon_2/giyaami/;1610475406;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Im-Pico;;;[];;;;text;t2_3vbn11u7;False;False;[];;It's really not comparable real life relationships are so much more complex than anything a television show can portray. and it adds even more layers of complexity and challenges that you have to hash out with your partner when you move in together and stuff like that.;False;False;;;;1610415410;;False;{};giyab39;False;t3_kvh3b7;False;False;t3_kvh3b7;/r/anime/comments/kvh3b7/are_relationships_as_complicated_as_they_are/giyab39/;1610475414;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Cynderaquil;;;[];;;;text;t2_3hyccqum;False;False;[];;"If you’re alright with the subbed version, every animated part (1-5) is on CrunchyRoll but ask you actual question, I wouldn’t know - -And parts 6-8 aren’t animated yet, just in case you didn’t know that :3";False;False;;;;1610415491;;False;{};giyagqv;False;t3_kvh7uc;False;False;t3_kvh7uc;/r/anime/comments/kvh7uc/is_the_rest_of_jojos_bizzate_adventure_going_on/giyagqv/;1610475520;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;According to [livechart](https://www.livechart.me/anime/1956/streams) it’s on amazon prime in the US. If you aren’t in the US then you can use a vpn;False;False;;;;1610415782;;False;{};giyb1sa;False;t3_kvhetf;False;True;t3_kvhetf;/r/anime/comments/kvhetf/does_anyone_know_where_i_can_watch_your_name/giyb1sa/;1610475925;4;True;False;anime;t5_2qh22;;0;[]; -[];;;parameterized;;MAL a-amq;[];;http://myanimelist.net/animelist/parameterized @parameterized;dark;text;t2_95bp0;False;False;[];;Not sure if it's appropriate to post here, but if anyone would like to volunteer doing the tables of entries from /r/AnimeThemes like we've done for past contests, lmk. Our mod team doesn't have the bandwidth for it this year.;False;False;;;;1610415789;;False;{};giyb2a0;False;t3_kvegi9;False;False;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giyb2a0/;1610475934;10;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi spudz1203, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610415959;moderator;False;{};giybebj;False;t3_kvhi6t;False;True;t3_kvhi6t;/r/anime/comments/kvhi6t/recommendations_to_expand_from_shonen/giybebj/;1610476162;2;False;False;anime;t5_2qh22;;0;[]; -[];;;Zeralyos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Zeralyos;light;text;t2_dphmj32;False;False;[];;I can probably handle that. What sort of stuff does it involve?;False;False;;;;1610415976;;False;{};giybfl1;False;t3_kvegi9;False;False;t1_giyb2a0;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giybfl1/;1610476184;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"All 5 parts (that currently have anime adaptations) are on Crunchyroll subbed, while parts 1-3 are on Netflix both subbed and dubbed. Part 5's dub is [on the Adult Swim website](https://www.adultswim.com/videos/jo-jos-bizarre-adventure) because it recently aired on the Toonami TV block, but it requires logging with with a valid account from a US cable provider to access it. - -Unfortunately, part 4's dub is currently stuck in purgatory, where Toonami's rights to it have expired (so it was removed from the Adult Swim website) but Netflix hasn't picked it up yet. The only way to legally watch it right now is to buy the Blu-Ray release, but it'll almost certainly be on Netflix *at some point* if you're patient enough to wait.";False;False;;;;1610416068;;1610416256.0;{};giybm2z;False;t3_kvh7uc;False;False;t3_kvh7uc;/r/anime/comments/kvh7uc/is_the_rest_of_jojos_bizzate_adventure_going_on/giybm2z/;1610476306;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610416080;;False;{};giybmw4;False;t3_kvhcf4;False;True;t3_kvhcf4;/r/anime/comments/kvhcf4/a_question_about_log_horizon_2/giybmw4/;1610476322;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi MaarenBichi_8, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610416143;moderator;False;{};giybrdj;False;t3_kvhk1t;False;True;t3_kvhk1t;/r/anime/comments/kvhk1t/what_should_i_watch_after_bakemonogatari/giybrdj/;1610476407;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Shadowclook21;;;[];;;;text;t2_19zwvbdl;False;False;[];;yeah part of me knew that just wanted to know what you'll say;False;False;;;;1610416182;;False;{};giybu67;True;t3_kvh3b7;False;True;t1_giyab39;/r/anime/comments/kvh3b7/are_relationships_as_complicated_as_they_are/giybu67/;1610476459;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ElmekiaLance;;;[];;;;text;t2_yvmud2z;False;False;[];;"The elimination rounds have been fun, and I'm glad I found a bunch of good new songs from people's recs. Round 5 is stacked. - -These are some of my personal favourites from this round: - -* [Virtual Star Hasseigaku](https://animethemes.moe/video/ShoujoKakumeiUtena-ED2.webm) (Revolutionary Girl Utena) - -* [Mizu no Madoromi](https://animethemes.moe/video/FantasticChildren-ED1.webm) (Fantastic Children) Origa's singing is always brilliant. - -* [Yasashii Yoake](https://animethemes.moe/video/DotHackSign-ED1.webm) (.hack//Sign) - -* [Getsumei Fuuei](https://www.youtube.com/watch?v=JK6W_vgKJfw) (Twelve Kingdoms) - -* [I am Standing](https://animethemes.moe/video/SangatsuNoLionS2-ED2.webm) (March Comes in like a Lion) - -* [Hiru no Tsuki](https://animethemes.moe/video/OutlawStar-ED1.webm) (Outlaw Star) I'm not a big fan of the images, but I love the song. - -* [Kin no Nami Sen no Nami](https://animethemes.moe/video/AriaTheOrigination-ED1.webm) (Aria The Origination)";False;False;;;;1610416201;;1610420166.0;{};giybvhj;False;t3_kvegi9;False;False;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giybvhj/;1610476484;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610416202;;False;{};giybvkf;False;t3_kvhetf;False;True;t3_kvhetf;/r/anime/comments/kvhetf/does_anyone_know_where_i_can_watch_your_name/giybvkf/;1610476486;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Taerusaki, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610416203;moderator;False;{};giybvm2;False;t3_kvhetf;False;True;t1_giybvkf;/r/anime/comments/kvhetf/does_anyone_know_where_i_can_watch_your_name/giybvm2/;1610476487;0;False;False;anime;t5_2qh22;;0;[]; -[];;;RandyMarshReincarnat;;;[];;;;text;t2_6nz6w6pq;False;False;[];;"Sometimes they’re complicated yeah. I once had an ex girlfriend who was my best friend and I had a new gf and my new gf was ok with me being friends with my ex. There was this one guy who liked both of them and he tried to get at both of them and they both rejected him and my ex told him she still had feelings for me. He got mad and started telling my new gf that I was cheating on her with my ex and he told my ex fucked up things about me too. Both girls were mad at me and it fucked up my relationship with my new gf. All because that dude was pissed they didn’t like him back. - -In my new relationship it’s not nearly as complicated but my gf told me she was hungry and told me to choose where to eat, I choose del taco but she said no that’s gross, so I said Carl’s Jr. and she said that’s gross too, so I said KFC or Pollo Loco and she said no those don’t sound good either. So I asked what she wanted and she said McDonald’s. Like if she already knew she wanted McDonalds then why ask me to choose if she knew she was going to say no to everything she brought up... it’s not a big deal but these things short circuit my brain because I don’t understand her logic but these are way relationships get complicated :/";False;False;;;;1610416228;;False;{};giybxdf;False;t3_kvh3b7;False;True;t3_kvh3b7;/r/anime/comments/kvh3b7/are_relationships_as_complicated_as_they_are/giybxdf/;1610476521;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610416254;;False;{};giybz5i;False;t3_kvhetf;False;True;t3_kvhetf;/r/anime/comments/kvhetf/does_anyone_know_where_i_can_watch_your_name/giybz5i/;1610476554;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610416254;moderator;False;{};giybz6v;False;t3_kvhl8a;False;True;t3_kvhl8a;/r/anime/comments/kvhl8a/how_do_i_watch_the_gintama_movies_digitally/giybz6v/;1610476556;1;False;False;anime;t5_2qh22;;0;[]; -[];;;defeatingme;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/defeatingme;light;text;t2_31dwk2wd;False;False;[];;"[this order](https://www.reddit.com/r/anime/comments/hwuntw/the_monogatari_series_2020_watch_order/?utm_medium=android_app&utm_source=share)";False;False;;;;1610416324;;False;{};giyc42u;False;t3_kvhk1t;False;False;t3_kvhk1t;/r/anime/comments/kvhk1t/what_should_i_watch_after_bakemonogatari/giyc42u/;1610476649;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;"Do you have a mal or anilist so people can see what all you watched? - -A couple popular ones I’ll suggest tho are: - -Monster - -Psycho-pass - -Shinsekai yori - -Serial experiments lain - -Bungo stray dogs - -Zankyou no terror";False;False;;;;1610416347;;False;{};giyc5mh;False;t3_kvhi6t;False;False;t3_kvhi6t;/r/anime/comments/kvhi6t/recommendations_to_expand_from_shonen/giyc5mh/;1610476678;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Cynderaquil;;;[];;;;text;t2_3hyccqum;False;False;[];;A lot of anime portrays real life. My friend and her complicated monogamous relationship reminded me of anime lol;False;False;;;;1610416359;;False;{};giyc6fa;False;t3_kvh3b7;False;True;t3_kvh3b7;/r/anime/comments/kvh3b7/are_relationships_as_complicated_as_they_are/giyc6fa/;1610476694;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Shadowclook21;;;[];;;;text;t2_19zwvbdl;False;False;[];;nice story tho especially the one where the guy gets messed up your relationship;False;False;;;;1610416411;;False;{};giyca2t;True;t3_kvh3b7;False;True;t1_giybxdf;/r/anime/comments/kvh3b7/are_relationships_as_complicated_as_they_are/giyca2t/;1610476764;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610416482;;False;{};giycf22;False;t3_kvhi6t;False;True;t3_kvhi6t;/r/anime/comments/kvhi6t/recommendations_to_expand_from_shonen/giycf22/;1610476867;1;True;False;anime;t5_2qh22;;0;[]; -[];;;parameterized;;MAL a-amq;[];;http://myanimelist.net/animelist/parameterized @parameterized;dark;text;t2_95bp0;False;False;[];;"Building and updating the wiki page that contains the markup for these threads, posting the day's matchups when the post goes up. Last year's is here: - -https://old.reddit.com/r/AnimeThemes/wiki/event/best_ending_v";False;False;;;;1610416551;;False;{};giycjxt;False;t3_kvegi9;False;True;t1_giybfl1;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giycjxt/;1610476963;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;"definitely don't watch the movie in place of the arc. It has slight spoilers for later stuff. - -Also personal opinion, but I'm too in love with the directing and pacing of the arc to suggest the movie over it (the movie's final final is great though, so definitely check that out afterwards)";False;False;;;;1610416603;;False;{};giycnk9;False;t3_kvhl8a;False;True;t3_kvhl8a;/r/anime/comments/kvhl8a/how_do_i_watch_the_gintama_movies_digitally/giycnk9/;1610477034;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeralyos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Zeralyos;light;text;t2_dphmj32;False;False;[];;Yeah, I should definitely be able to do this.;False;False;;;;1610416649;;False;{};giycqxb;False;t3_kvegi9;False;True;t1_giycjxt;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giycqxb/;1610477097;2;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;It wont have action in it, but March Comes in like a Lion has some of the best character writing in anime for me. Studio Shaft is the studio behind it, so it has great visuals (assuming you dont hate their style). Both seasons were 10/10 for me, and I dont think that does it justice;False;False;;;;1610416860;;False;{};giyd5pr;False;t3_kvhoxb;False;True;t3_kvhoxb;/r/anime/comments/kvhoxb/need_something_new_to_watch/giyd5pr/;1610477372;3;True;False;anime;t5_2qh22;;0;[]; -[];;;crixx93;;;[];;;;text;t2_twrpm1;False;False;[];;He is a Person Of The Land. I think he is introduced earlier in the episode in the background of a scene. He is part of the security enforcers that prevent Adventurers from fighting within the city;False;False;;;;1610416880;;False;{};giyd73g;False;t3_kvhcf4;False;True;t3_kvhcf4;/r/anime/comments/kvhcf4/a_question_about_log_horizon_2/giyd73g/;1610477397;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fiyah_Crotch;;;[];;;;text;t2_rnsegyc;False;False;[];;Just Google search seinen and you'll get a good mix to start with.;False;False;;;;1610416905;;False;{};giyd8uf;False;t3_kvhi6t;False;False;t3_kvhi6t;/r/anime/comments/kvhi6t/recommendations_to_expand_from_shonen/giyd8uf/;1610477435;5;True;False;anime;t5_2qh22;;0;[];True -[];;;EdoPhantom;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Edo;light;text;t2_4v8gnh0;False;False;[];;[Kizumonogatari](https://edomonogatari.wordpress.com/2020/05/12/monogatari-anime-guide/#order). Nisemonogatari and beyond assume you know what transpired during spring break in regards to Shinobu and Koyomi.;False;False;;;;1610416918;;False;{};giyd9pa;False;t3_kvhk1t;False;True;t3_kvhk1t;/r/anime/comments/kvhk1t/what_should_i_watch_after_bakemonogatari/giyd9pa/;1610477452;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Sufficient_Ad_9328;;;[];;;;text;t2_6xsqwehd;False;False;[];;But why did he kill/ slice the girl?;False;False;;;;1610416961;;False;{};giydcpg;True;t3_kvhcf4;False;True;t1_giyd73g;/r/anime/comments/kvhcf4/a_question_about_log_horizon_2/giydcpg/;1610477511;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aluminum-Chair;;;[];;;;text;t2_63qs0yl8;False;False;[];;"There are all kinds of people, and all kinds of relationships (even *in* anime). Sometimes they can be even more complicated than in Oregairu, and sometimes they can be as refreshingly simple as in Tonikaku Kawaii. - -What part of relationships in particular are you asking about?";False;False;;;;1610416975;;False;{};giyddo3;False;t3_kvh3b7;False;True;t3_kvh3b7;/r/anime/comments/kvh3b7/are_relationships_as_complicated_as_they_are/giyddo3/;1610477530;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Haikyuu - -Yuri on Ice - -Psycho-Pass - -Chihayafuru - -Anohana - -Your Lie in April - -Wolf Children - -Spirited Away - -Seirei no Moribito - -Mahou Shoujo Madoka Magica - -Banana Fish - -Some are action, some aren't.";False;False;;;;1610417010;;False;{};giydg5p;False;t3_kvhoxb;False;True;t3_kvhoxb;/r/anime/comments/kvhoxb/need_something_new_to_watch/giydg5p/;1610477580;3;True;False;anime;t5_2qh22;;0;[]; -[];;;crixx93;;;[];;;;text;t2_twrpm1;False;False;[];;That's explained later in the arc.;False;False;;;;1610417039;;False;{};giydi99;False;t3_kvhcf4;False;True;t1_giydcpg;/r/anime/comments/kvhcf4/a_question_about_log_horizon_2/giydi99/;1610477620;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shadowclook21;;;[];;;;text;t2_19zwvbdl;False;False;[];;"the one in scum's wish -I just been thinking what if i have a relationship like that in the future";False;False;;;;1610417059;;False;{};giydjo5;True;t3_kvh3b7;False;True;t1_giyddo3;/r/anime/comments/kvh3b7/are_relationships_as_complicated_as_they_are/giydjo5/;1610477648;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sleepyrog;;;[];;;;text;t2_698othom;False;False;[];;"Vinland saga has shonen elements but I don’t consider it your typical shonen -Also Durarara!! If action isn’t a high priority. Parasyte, Ajin(cg) and Dororo are really good imo";False;False;;;;1610417070;;1610417268.0;{};giydkf2;False;t3_kvhi6t;False;False;t3_kvhi6t;/r/anime/comments/kvhi6t/recommendations_to_expand_from_shonen/giydkf2/;1610477666;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Sufficient_Ad_9328;;;[];;;;text;t2_6xsqwehd;False;False;[];;Do you know his name by a chance?;False;False;;;;1610417085;;False;{};giydli2;True;t3_kvhcf4;False;True;t1_giydi99;/r/anime/comments/kvhcf4/a_question_about_log_horizon_2/giydli2/;1610477687;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlueDragon101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Xcal1bur?status=7&order=4&orde";light;text;t2_11q4nx;False;False;[];;I never said it was perfect, but at the very least it's better than UBW.;False;False;;;;1610417128;;False;{};giydoks;False;t3_kve14g;False;True;t1_giy5ztu;/r/anime/comments/kve14g/whats_the_best_anime_youve_ever_watched_related/giydoks/;1610477747;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spudz1203;;;[];;;;text;t2_38t77leo;False;False;[];;Psycho pass and bungo stray dogs are the only ones I've seen on this list but no I don't have either of those things;False;False;;;;1610417169;;False;{};giydrib;True;t3_kvhi6t;False;True;t1_giyc5mh;/r/anime/comments/kvhi6t/recommendations_to_expand_from_shonen/giydrib/;1610477809;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610417214;;False;{};giyduq6;False;t3_kvhoxb;False;False;t3_kvhoxb;/r/anime/comments/kvhoxb/need_something_new_to_watch/giyduq6/;1610477883;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;Please create an anime list. You can create one at either: Myanimelist.net, anilist.co, kitsu or anime-planet. All 4 are free and easy to use. Helps you remember what you've seen and helps us so we aren't suggesting you what you've seen already.;False;False;;;;1610417292;;False;{};giye0nf;False;t3_kvhi6t;False;True;t1_giydrib;/r/anime/comments/kvhi6t/recommendations_to_expand_from_shonen/giye0nf/;1610477995;3;True;False;anime;t5_2qh22;;0;[]; -[];;;crixx93;;;[];;;;text;t2_twrpm1;False;False;[];;I don't think he has one;False;False;;;;1610417337;;False;{};giye3wl;False;t3_kvhcf4;False;True;t1_giydli2;/r/anime/comments/kvhcf4/a_question_about_log_horizon_2/giye3wl/;1610478057;2;True;False;anime;t5_2qh22;;0;[]; -[];;;spudz1203;;;[];;;;text;t2_38t77leo;False;False;[];;I have one but don't use it as I never considered it necessary;False;False;;;;1610417358;;False;{};giye5fa;True;t3_kvhi6t;False;True;t1_giye0nf;/r/anime/comments/kvhi6t/recommendations_to_expand_from_shonen/giye5fa/;1610478084;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sufficient_Ad_9328;;;[];;;;text;t2_6xsqwehd;False;False;[];;Mm okay, thanks alot though;False;False;;;;1610417377;;False;{};giye6rr;True;t3_kvhcf4;False;True;t1_giye3wl;/r/anime/comments/kvhcf4/a_question_about_log_horizon_2/giye6rr/;1610478112;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Worm38;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Worm38;light;text;t2_21wfoc0w;False;False;[];;"Well, I disagree. - -[](#yuishrug)";False;False;;;;1610417382;;False;{};giye75w;False;t3_kve14g;False;True;t1_giydoks;/r/anime/comments/kve14g/whats_the_best_anime_youve_ever_watched_related/giye75w/;1610478120;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nidzzzzzzzzzzz;;;[];;;;text;t2_86ry341o;False;False;[];;Yeah... I know the feeling but you'll get used to it after some time btw I recommend you to read the manga for closure and relief;False;False;;;;1610417391;;False;{};giye7qy;False;t3_kvht83;False;True;t3_kvht83;/r/anime/comments/kvht83/how_do_i_not_feel_horrible_while_watching_romance/giye7qy/;1610478130;2;True;False;anime;t5_2qh22;;0;[]; -[];;;spudz1203;;;[];;;;text;t2_38t77leo;False;False;[];;Vinland needs season 2 but the others are new;False;False;;;;1610417404;;False;{};giye8re;True;t3_kvhi6t;False;True;t1_giydkf2;/r/anime/comments/kvhi6t/recommendations_to_expand_from_shonen/giye8re/;1610478149;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"It's nice to keep it updated. Helps you remember what you've seen, and helps us, so we aren't recommending you stuff you've seen. - -You can add your url to your MAL on here, choose this by going to the sidebar and clicking (edit) next to your username on old reddit, or under community options in new reddit. - -I love recommending anime to people, a lot of people do. But it's disappointing when people don't have an anime list.";False;False;;;;1610417423;;False;{};giyea1f;False;t3_kvhi6t;False;True;t1_giye5fa;/r/anime/comments/kvhi6t/recommendations_to_expand_from_shonen/giyea1f/;1610478194;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610417424;moderator;False;{};giyea4n;False;t3_kvhxdb;False;True;t3_kvhxdb;/r/anime/comments/kvhxdb/where_can_i_stream_honey_and_clover/giyea4n/;1610478195;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610417483;moderator;False;{};giyeecr;False;t3_kvhxxj;False;True;t3_kvhxxj;/r/anime/comments/kvhxxj/searching_for_site_with_ready_search_filters/giyeecr/;1610478278;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"If you haven't, check out Kill La Kill and Gurren Lagann. Both of them have similar themes and hot-blooded action to a lot of shonen anime out there, but they're primarily another genre (Kill La Kill is a magical girl anime and Gurren Lagann is a mecha anime) and they help bridge the gap between shonen anime and those genres. - -If you like Kill La Kill, then you can check out other action-packed magical girl anime like Sailor Moon, Puella Magi Madoka Magica, Magical Girl Lyrical Nanoha, Yuki Yuna Is A Hero, or Symphogear. If you like Gurren Lagann, then you can check out other mecha anime like the Gundam franchise, Code Geass, Granbelm, Cross Ange, or Symphogear.";False;False;;;;1610417578;;False;{};giyel70;False;t3_kvhi6t;False;True;t3_kvhi6t;/r/anime/comments/kvhi6t/recommendations_to_expand_from_shonen/giyel70/;1610478412;1;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;"AniList? It allows for a lot of different categories to be selected at once. - -[Example: CGDCT + Magical Girl + TV Show + Aired Between 1989 and 2014](https://anilist.co/search/anime?genres=Cute%20Girls%20Doing%20Cute%20Things&genres=Mahou%20Shoujo&format=TV&year%20range=1989&year%20range=2014)";False;False;;;;1610417758;;False;{};giyexuu;False;t3_kvhxxj;False;True;t3_kvhxxj;/r/anime/comments/kvhxxj/searching_for_site_with_ready_search_filters/giyexuu/;1610478651;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610417775;moderator;False;{};giyez38;False;t3_kvi0z1;False;False;t3_kvi0z1;/r/anime/comments/kvi0z1/movie_i_cant_find/giyez38/;1610478674;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Aluminum-Chair;;;[];;;;text;t2_63qs0yl8;False;False;[];;"I don't think you have to worry about a relationship like that. - -Some people do seek out other people as replacements for who they really want. A more realistic example would probably be Mamimi and Naota in FLCL. But it isn't something that is common to the level that you see in either of those shows. You, fortunately, probably won't have any experiences like that in your life.";False;False;;;;1610417777;;False;{};giyez6g;False;t3_kvh3b7;False;True;t1_giydjo5;/r/anime/comments/kvh3b7/are_relationships_as_complicated_as_they_are/giyez6g/;1610478675;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;Part 3 is on Netflix. Netflix probably won't get streaming rights until after Toonami loses its exclusivity of the dub for Part 4 and 5 and Netflix finally decided to pick it up;False;False;;;;1610417800;;False;{};giyf0vn;False;t3_kvh7uc;False;True;t3_kvh7uc;/r/anime/comments/kvh7uc/is_the_rest_of_jojos_bizzate_adventure_going_on/giyf0vn/;1610478708;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610417802;;False;{};giyf10y;False;t3_kvhxdb;False;True;t3_kvhxdb;/r/anime/comments/kvhxdb/where_can_i_stream_honey_and_clover/giyf10y/;1610478710;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shadowclook21;;;[];;;;text;t2_19zwvbdl;False;False;[];;is it long;False;False;;;;1610417896;;False;{};giyf7us;True;t3_kvht83;False;True;t1_giye7qy;/r/anime/comments/kvht83/how_do_i_not_feel_horrible_while_watching_romance/giyf7us/;1610478836;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Blackwatch193, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610418005;moderator;False;{};giyffv2;False;t3_kvi3ci;False;True;t3_kvi3ci;/r/anime/comments/kvi3ci/looking_for_anime_suggestions/giyffv2/;1610478992;1;False;False;anime;t5_2qh22;;0;[]; -[];;;sugarspice22;;;[];;;;text;t2_797q75k1;False;False;[];;hahahaha perfect then, do you have any specific sites to recommend? I just don’t want to drown my computer in viruses and porn;False;False;;;;1610418121;;False;{};giyfo9y;True;t3_kvhxdb;False;True;t1_giyf10y;/r/anime/comments/kvhxdb/where_can_i_stream_honey_and_clover/giyfo9y/;1610479149;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FalconPunchInDaFace;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FalconPunchFace;light;text;t2_4fi02812;False;True;[];;"Steins;Gate is a good sci-fi/time travel/thriller anime.";False;False;;;;1610418123;;False;{};giyfofk;False;t3_kvhi6t;False;True;t3_kvhi6t;/r/anime/comments/kvhi6t/recommendations_to_expand_from_shonen/giyfofk/;1610479152;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;"Code Geass - -Vinland Saga - -FMAB - -Gurren Laggan - -Anohana";False;False;;;;1610418144;;False;{};giyfpxl;False;t3_kvi3ci;False;True;t3_kvi3ci;/r/anime/comments/kvi3ci/looking_for_anime_suggestions/giyfpxl/;1610479179;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610418230;;False;{};giyfw2r;False;t3_kvhxdb;False;True;t1_giyfo9y;/r/anime/comments/kvhxdb/where_can_i_stream_honey_and_clover/giyfw2r/;1610479293;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SatouSmith;;;[];;;;text;t2_85ir9527;False;True;[];;Demon Slayer because it's more enjoyable.;False;False;;;;1610418318;;False;{};giyg269;False;t3_kvi57q;False;True;t3_kvi57q;/r/anime/comments/kvi57q/comparing_beastars_to_demon_slayer_which_is_better/giyg269/;1610479414;0;True;False;anime;t5_2qh22;;0;[]; -[];;;BlueDragon101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Xcal1bur?status=7&order=4&orde";light;text;t2_11q4nx;False;False;[];;You say that like you disagreeing is a perfect counterargument with zero explanation.;False;False;;;;1610418504;;False;{};giygfau;False;t3_kve14g;False;True;t1_giye75w;/r/anime/comments/kve14g/whats_the_best_anime_youve_ever_watched_related/giygfau/;1610479673;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spudz1203;;;[];;;;text;t2_38t77leo;False;False;[];;Will check out. I was interested in kill la kill and have never seen a mecha anime;False;False;;;;1610418522;;False;{};giyggks;True;t3_kvhi6t;False;True;t1_giyel70;/r/anime/comments/kvhi6t/recommendations_to_expand_from_shonen/giyggks/;1610479702;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your comment has been removed. - -- Direction toward specific sources of pirated content of any type is not allowed. This includes links to unofficial scanlations, streams, uploads, and download sources of any copyrighted content. It also includes direction towards specific sites offering this type of content, and watermarks mentioning such sites in uploaded images/videos. - - Discussion of piracy in general is allowed, **but naming, linking to, or hinting towards specific sources is not. Offering to send links via PM is also not allowed.** For more details, see our [full rules on illegal content](https://www.reddit.com/r/anime/wiki/rules#wiki_do_not_link_to_illegal_content). - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610418533;moderator;False;{};giyghcf;False;t3_kvhetf;False;True;t1_giybz5i;/r/anime/comments/kvhetf/does_anyone_know_where_i_can_watch_your_name/giyghcf/;1610479718;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610418559;moderator;False;{};giygjat;False;t3_kvi95p;False;True;t3_kvi95p;/r/anime/comments/kvi95p/i_wanted_to_watch_this_anime_and_i_was_wondering/giygjat/;1610479753;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Sigma621;;;[];;;;text;t2_8bzbhjen;False;False;[];;"ummmm they're not similar at all I don't know how you'd compare them - -or why";False;False;;;;1610418577;;False;{};giygkl2;False;t3_kvi57q;False;False;t3_kvi57q;/r/anime/comments/kvi57q/comparing_beastars_to_demon_slayer_which_is_better/giygkl2/;1610479777;14;True;False;anime;t5_2qh22;;0;[]; -[];;;will-615;;;[];;;;text;t2_3tuhgdqt;False;False;[];;I have recently watched it on crunchyroll with english subtitles;False;False;;;;1610418587;;False;{};giyglbz;False;t3_kvhxdb;False;True;t3_kvhxdb;/r/anime/comments/kvhxdb/where_can_i_stream_honey_and_clover/giyglbz/;1610479791;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spudz1203;;;[];;;;text;t2_38t77leo;False;False;[];;Don't have the time to add everything I've seen at the moment but should I get back to you when I do?;False;False;;;;1610418621;;False;{};giygnyd;True;t3_kvhi6t;False;True;t1_giyea1f;/r/anime/comments/kvhi6t/recommendations_to_expand_from_shonen/giygnyd/;1610479841;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spudz1203;;;[];;;;text;t2_38t77leo;False;False;[];;I've heard of this;False;False;;;;1610418659;;False;{};giygqtr;True;t3_kvhi6t;False;True;t1_giyfofk;/r/anime/comments/kvhi6t/recommendations_to_expand_from_shonen/giygqtr/;1610479905;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;I have never thought to compare them, since they're so different. It's apples and headphones;False;False;;;;1610418687;;False;{};giygsw0;False;t3_kvi57q;False;False;t3_kvi57q;/r/anime/comments/kvi57q/comparing_beastars_to_demon_slayer_which_is_better/giygsw0/;1610479945;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Bright_Eyes83;;;[];;;;text;t2_435s15rz;False;False;[];;a lot of these aren't that far off already. try K-On. if you like it, you'll know what to do from there;False;False;;;;1610418743;;False;{};giygx2q;False;t3_kvhi6t;False;True;t3_kvhi6t;/r/anime/comments/kvhi6t/recommendations_to_expand_from_shonen/giygx2q/;1610480026;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HelloMagikarphowRyou;;;[];;;;text;t2_11jn0d9;False;False;[];;ADRENALINE AND WITHIN LETS GOOOOOOO;False;False;;;;1610418834;;False;{};giyh3qf;False;t3_kvegi9;False;False;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giyh3qf/;1610480160;5;True;False;anime;t5_2qh22;;0;[]; -[];;;h-ahmad15;;;[];;;;text;t2_9dt3w49l;False;False;[];;Mob Psycho 100 Konosuba Black Clover;False;False;;;;1610418882;;False;{};giyh78w;False;t3_kvi3ci;False;True;t3_kvi3ci;/r/anime/comments/kvi3ci/looking_for_anime_suggestions/giyh78w/;1610480251;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JalasKelm;;;[];;;;text;t2_5oyc8j8r;False;False;[];;"Accept that not every anime has the goal to leave you happy and fulfilled. - -I've been left happy, sad, content, emotionally drained, excited, confused. The list goes on. And in most cases, I'm glad I finished watching, for one reason or another.";False;False;;;;1610418894;;False;{};giyh87q;False;t3_kvht83;False;False;t3_kvht83;/r/anime/comments/kvht83/how_do_i_not_feel_horrible_while_watching_romance/giyh87q/;1610480270;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackwatch193;;;[];;;;text;t2_8xn1h6z0;False;False;[];;My guy we all know Aqua is useless;False;False;;;;1610418910;;False;{};giyh9df;True;t3_kvi3ci;False;False;t1_giyh78w;/r/anime/comments/kvi3ci/looking_for_anime_suggestions/giyh9df/;1610480290;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackwatch193;;;[];;;;text;t2_8xn1h6z0;False;False;[];;Ps my anime log might be outdated;False;False;;;;1610418926;;False;{};giyhalj;True;t3_kvi3ci;False;True;t3_kvi3ci;/r/anime/comments/kvi3ci/looking_for_anime_suggestions/giyhalj/;1610480312;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jotsifo;;;[];;;;text;t2_4hwl7oc3;False;False;[];;VERY, but it's still worth it at the end. Life is like that;False;False;;;;1610418930;;False;{};giyhaw2;False;t3_kvi95p;False;True;t3_kvi95p;/r/anime/comments/kvi95p/i_wanted_to_watch_this_anime_and_i_was_wondering/giyhaw2/;1610480319;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spudz1203;;;[];;;;text;t2_38t77leo;False;False;[];;Very vauge;False;False;;;;1610418967;;False;{};giyhdn6;True;t3_kvhi6t;False;True;t1_giygx2q;/r/anime/comments/kvhi6t/recommendations_to_expand_from_shonen/giyhdn6/;1610480374;1;True;False;anime;t5_2qh22;;0;[]; -[];;;h-ahmad15;;;[];;;;text;t2_9dt3w49l;False;False;[];;Except for when she resurrected kazuma;False;False;;;;1610419002;;False;{};giyhgb5;False;t3_kvi3ci;False;True;t1_giyh9df;/r/anime/comments/kvi3ci/looking_for_anime_suggestions/giyhgb5/;1610480422;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackwatch193;;;[];;;;text;t2_8xn1h6z0;False;False;[];;Besides that;False;False;;;;1610419025;;False;{};giyhhyd;True;t3_kvi3ci;False;True;t1_giyhgb5;/r/anime/comments/kvi3ci/looking_for_anime_suggestions/giyhhyd/;1610480453;1;True;False;anime;t5_2qh22;;0;[]; -[];;;drasheed132;;;[];;;;text;t2_39t8myjk;False;False;[];;Terror no resonance;False;False;;;;1610419069;;False;{};giyhl73;False;t3_kvi3ci;False;True;t3_kvi3ci;/r/anime/comments/kvi3ci/looking_for_anime_suggestions/giyhl73/;1610480519;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FalconPunchInDaFace;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FalconPunchFace;light;text;t2_4fi02812;False;True;[];;"I watched it for the first time a month ago and it became one of my favorite shows. - -If you end up watching it, the first 8 episodes are considered “slow”: establish character baselines, world building. The show starts to really cook from 8-12. From 12 to the end are the most fun I’ve ever had watching anime. - -It’s by far my favorite thriller anime.";False;False;;;;1610419088;;False;{};giyhmlu;False;t3_kvhi6t;False;True;t1_giygqtr;/r/anime/comments/kvhi6t/recommendations_to_expand_from_shonen/giyhmlu/;1610480544;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"The users of this subreddit came up with [a long recommendations flowchart](http://imgur.com/q9Xjv4p) with a lot of common suggestions and popular series. - -You might also find our [Recommendation Wiki](http://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](http://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest as well: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [List of currently airing anime and where you can find streams for specific shows](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites)";False;False;;;;1610419198;;False;{};giyhung;False;t3_kvhzuw;False;True;t3_kvhzuw;/r/anime/comments/kvhzuw/ah_i_need_some_help_i_am_new_thx/giyhung/;1610480696;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;K-Project;False;False;;;;1610419206;;False;{};giyhv7c;False;t3_kvidfb;False;True;t3_kvidfb;/r/anime/comments/kvidfb/looking_for_boujee_street_animes/giyhv7c/;1610480706;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bright_Eyes83;;;[];;;;text;t2_435s15rz;False;False;[];;sorry, K-On basically spawned an entire subgenre of slice of life so if you like it you'll find more similar shows. it's the place to start though, it's really good.;False;False;;;;1610419295;;False;{};giyi1uz;False;t3_kvhi6t;False;True;t1_giyhdn6;/r/anime/comments/kvhi6t/recommendations_to_expand_from_shonen/giyi1uz/;1610480839;2;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;Same with Guilty Crown. Check out the [Kokuhaku ED](https://youtu.be/12_AiRwyLLQ) if you haven't already. It makes me feel like you can run with the wind;False;False;;;;1610419376;;False;{};giyi7tv;False;t3_kvegi9;False;True;t1_giy055o;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giyi7tv/;1610480955;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Worm38;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Worm38;light;text;t2_21wfoc0w;False;False;[];;"> You say that you disagreeing is a perfect counterargument with zero explanation. - -I don't want to be rude, but maybe read what I wrote and if you really insist, give counterarguments against it rather than saying that I gave no arguments : - -> UBW explains everything you need to know. - -> Fate/Stay Night, unlike Fate/Zero is in large part a mystery story, and Fate/Zero spoils a lot of that. - -> While yes, UBW isn't a perfect starting point, because you do not have a proper understanding of Shirou or Saber before going into it, Fate/Zero doesn't solve that as Shirou isn't in it and Saber's character is not the same and not really explored. - -> A proper adaptation of the Fate route would change that, but in its absence, Fate/Zero isn't an alternative. - ---- - -Mind you, I'm not particularly interested in having this debate with you, since I don't think either of us will change our stance. My argumentation only finds value in an newcomer that has yet watch either. - -My last answer, saying that I disagree and with a #yuishrug commentface is just me trying to close the discussion since you just reiterated your initial point rather than providing anything new to discuss.";False;False;;;;1610419378;;False;{};giyi7zz;False;t3_kve14g;False;True;t1_giygfau;/r/anime/comments/kve14g/whats_the_best_anime_youve_ever_watched_related/giyi7zz/;1610480958;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Blabime;;MAL;[];;http://myanimelist.net/animelist/Blabime;dark;text;t2_tzap8;False;False;[];;Your description isn't very much to off of at all but shot in the dark guess: Lu Over the Wall? Otherwise gonna need some more description or you can skim through here and see if you find it: https://myanimelist.net/animelist/AnimeMovieNight;False;False;;;;1610419406;;False;{};giyia2c;False;t3_kvi0z1;False;True;t3_kvi0z1;/r/anime/comments/kvi0z1/movie_i_cant_find/giyia2c/;1610481001;1;True;False;anime;t5_2qh22;;0;[]; -[];;;freegresz;;;[];;;;text;t2_2nue4nv1;False;False;[];;NEVER watch the Apple of my Eye. NEVER;False;False;;;;1610419409;;False;{};giyiaav;False;t3_kvht83;False;True;t1_giyf7us;/r/anime/comments/kvht83/how_do_i_not_feel_horrible_while_watching_romance/giyiaav/;1610481006;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;[Crunchyroll](https://www.crunchyroll.com/honey-and-clover), [VRV](https://vrv.co/series/GYNVWN4GR), and [Retrocrush](https://www.retrocrush.tv/series/017891s/honey-and-clover). First and last are free.;False;False;;;;1610419459;;False;{};giyidzr;False;t3_kvhxdb;False;True;t3_kvhxdb;/r/anime/comments/kvhxdb/where_can_i_stream_honey_and_clover/giyidzr/;1610481080;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Sorry, your comment has been removed. - -- Direction toward specific sources of pirated content of any type is not allowed. This includes links to unofficial scanlations, streams, uploads, and download sources of any copyrighted content. It also includes direction towards specific sites offering this type of content, and watermarks mentioning such sites in uploaded images/videos. - - Discussion of piracy in general is allowed, **but naming, linking to, or hinting towards specific sources is not. Offering to send links via PM is also not allowed.** For more details, see our [full rules on illegal content](https://www.reddit.com/r/anime/wiki/rules#wiki_do_not_link_to_illegal_content). - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610419487;moderator;False;{};giyig19;False;t3_kvhxdb;False;True;t1_giyfw2r;/r/anime/comments/kvhxdb/where_can_i_stream_honey_and_clover/giyig19/;1610481121;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VandaGrey;;;[];;;;text;t2_lzm4a;False;False;[];;like trying to compare how good your mom is in bed with how good your dad is in bed...its not possible, they are both good.;False;False;;;;1610419733;;False;{};giyiz1t;False;t3_kvi57q;False;True;t3_kvi57q;/r/anime/comments/kvi57q/comparing_beastars_to_demon_slayer_which_is_better/giyiz1t/;1610481495;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lakelandgodo;;;[];;;;text;t2_487lzfrh;False;False;[];;I like apples way more than oranges;False;False;;;;1610419838;;False;{};giyj730;False;t3_kvi57q;False;True;t3_kvi57q;/r/anime/comments/kvi57q/comparing_beastars_to_demon_slayer_which_is_better/giyj730/;1610481650;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BenKarnak;;;[];;;;text;t2_24hpv6wg;False;False;[];;Why does this even need to quantified?? They are both very different flavour of anime..😂😂🙄🙄🙄🙄🙄;False;False;;;;1610419853;;False;{};giyj880;False;t3_kvi57q;False;True;t3_kvi57q;/r/anime/comments/kvi57q/comparing_beastars_to_demon_slayer_which_is_better/giyj880/;1610481672;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sparkletopia;;;[];;;;text;t2_3up2k6rl;False;False;[];;"Wanted to show some love to [Freesia](https://www.youtube.com/watch?v=oNL7Y_EjuhI&ab_channel=TOHOanimationチャンネル) from Sakura Quest. Listening to it instantly soothes me.";False;False;;;;1610419866;;False;{};giyj95o;False;t3_kvegi9;False;False;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giyj95o/;1610481691;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Never trust the ratings;False;False;;;;1610419958;;False;{};giyjfxg;False;t3_kvimj5;False;False;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/giyjfxg/;1610481854;58;True;False;anime;t5_2qh22;;0;[]; -[];;;Aesreth;;;[];;;;text;t2_1bzy1hof;False;False;[];;People care because it gives them validation for liking it, but rankings just means it's popular. And whichever has more hype at the moment (or fewer toxic fma fans targeting it) will be rated higher;False;False;;;;1610420036;;False;{};giyjluq;False;t3_kvimj5;False;False;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/giyjluq/;1610481963;18;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;"actually the strongest pokémon is Blue Eyes White Dragon ([and not this guy](/s ""Arceus"")), seems like some good picks though";False;False;;;;1610420049;;False;{};giyjmuo;False;t3_kvico1;False;True;t3_kvico1;/r/anime/comments/kvico1/who_is_the_strongest_pokemon/giyjmuo/;1610481982;1;True;False;anime;t5_2qh22;;0;[]; -[];;;smiley-rell;;;[];;;;text;t2_9iaznvjw;False;False;[];;Bloom into you.;False;False;;;;1610420252;;False;{};giyk1r9;False;t3_kvhi6t;False;True;t3_kvhi6t;/r/anime/comments/kvhi6t/recommendations_to_expand_from_shonen/giyk1r9/;1610482281;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610420338;moderator;False;{};giyk7xs;False;t3_kviroo;False;True;t3_kviroo;/r/anime/comments/kviroo/someone_help_me_find_where_this_is_from/giyk7xs/;1610482410;1;False;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;"If I agree with the rankings they are very important. - -If I disagree with them then they're clearly a joke and can't be trusted. - -But seriously, rankings are kind of neat, but the community tends to obsess over them.";False;False;;;;1610420354;;False;{};giyk92u;False;t3_kvimj5;False;False;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/giyk92u/;1610482435;51;True;False;anime;t5_2qh22;;0;[]; -[];;;StrangerAnime2;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Romance Weeb;dark;text;t2_76ozheyb;False;False;[];;Hello fellow Oresuki fan;False;False;;;;1610420378;;False;{};giykatp;False;t3_kvinqi;False;False;t3_kvinqi;/r/anime/comments/kvinqi/random_anime_series_i_liked/giykatp/;1610482466;4;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;Looks like Tari Tari;False;False;;;;1610420409;;False;{};giykcxp;False;t3_kviroo;False;True;t3_kviroo;/r/anime/comments/kviroo/someone_help_me_find_where_this_is_from/giykcxp/;1610482504;2;True;False;anime;t5_2qh22;;0;[]; -[];;;siklonav;;;[];;;;text;t2_hrxydxz;False;False;[];;Tari Tari.;False;False;;;;1610420421;;False;{};giykdsu;False;t3_kviroo;False;True;t3_kviroo;/r/anime/comments/kviroo/someone_help_me_find_where_this_is_from/giykdsu/;1610482521;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;"Check out the genre ‘Dementia’ & ‘Horror’";False;False;;;;1610420582;;False;{};giykpd2;False;t3_kvhi6t;False;True;t3_kvhi6t;/r/anime/comments/kvhi6t/recommendations_to_expand_from_shonen/giykpd2/;1610482766;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blurvivid;;;[];;;;text;t2_2oopu6p2;False;False;[];;Fire force, danmachi, slime isekai, overlord;False;False;;;;1610420616;;False;{};giykrs5;False;t3_kvi3ci;False;True;t3_kvi3ci;/r/anime/comments/kvi3ci/looking_for_anime_suggestions/giykrs5/;1610482811;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rufangg;;;[];;;;text;t2_76fp1kr2;False;False;[];;thank youuu!!!;False;False;;;;1610420625;;False;{};giyksd4;True;t3_kviroo;False;True;t1_giykdsu;/r/anime/comments/kviroo/someone_help_me_find_where_this_is_from/giyksd4/;1610482823;2;True;False;anime;t5_2qh22;;0;[]; -[];;;needsheed2k;;;[];;;;text;t2_68ew93o8;False;False;[];;"Hi there! I think it’s great that you’re putting in effort to write reviews. I think it’s great to see new writers and reviewers enter the scene. - -I have a few constructive criticisms to give, this is not meant to bash you in any way but lend some advice on how to improve. - -Grammatical and spelling errors- There are many of these throughout your viewing guide, although it’s easy to overlook one, when there are many it becomes distracting to the reader. Your audience will become less likely to finish reading through what you wrote. Use a spell check before you publish. - -Purpose- What are you writing? Who are you writing for? Why? Your article was one part character guide, and show review. But the article is a titled as a Review. As a reader I want to know what your opinions are of the show, is it good, interesting, and why might I like it based on your opinion. I would consider cutting off the character guide, and stick with the review solely. - -Those are my two main concerns, please consider my feedback on this. Otherwise I didn’t really know much about this anime, but I will consider giving it a go based on your enthusiasm for the show.";False;False;;;;1610420679;;False;{};giykw90;False;t3_kvic3q;False;False;t3_kvic3q;/r/anime/comments/kvic3q/my_blog_about_food_wars/giykw90/;1610482893;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;What is Rainbow about;False;False;;;;1610420680;;False;{};giykwa4;False;t3_kvinqi;False;False;t3_kvinqi;/r/anime/comments/kvinqi/random_anime_series_i_liked/giykwa4/;1610482893;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610420751;moderator;False;{};giyl17j;False;t3_kviwdh;False;True;t3_kviwdh;/r/anime/comments/kviwdh/where_do_you_buy_your_anime_merch/giyl17j/;1610482998;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hi Bigman7543, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610420751;moderator;False;{};giyl18q;False;t3_kviwdh;False;True;t3_kviwdh;/r/anime/comments/kviwdh/where_do_you_buy_your_anime_merch/giyl18q/;1610482999;1;False;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;No they don't the ratings on MAL are entirely based on hype trains and popularity for the most part. For older anime or shows that don't have a huge fanbase they are often useless.;False;False;;;;1610420854;;False;{};giyl8a8;False;t3_kvimj5;False;False;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/giyl8a8/;1610483157;5;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;It's interesting to see what people rate things and how they stack up. It's not an end all be all ranking.;False;False;;;;1610420859;;False;{};giyl8m2;False;t3_kvimj5;False;False;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/giyl8m2/;1610483163;11;True;False;anime;t5_2qh22;;0;[]; -[];;;R3d_it;;;[];;;;text;t2_7ttqqfq4;False;False;[];;Genre is Prison. Bout' a group of friends who struggled in prison (disciplinary school) and their hardships outside of prison too. It's situated after world war II think, but it still is fiction. Has a lot of suspense and drama, and the narration scenes were flawless.;False;False;;;;1610420862;;False;{};giyl8t5;True;t3_kvinqi;False;True;t1_giykwa4;/r/anime/comments/kvinqi/random_anime_series_i_liked/giyl8t5/;1610483166;2;True;False;anime;t5_2qh22;;0;[]; -[];;;juances19;;HB;[];;https://kitsu.io/users/juances;dark;text;t2_17a18d;False;False;[];;"IMO rankings give a good idea of the show, but the exact specifics don't matter. - -Like, if a show is in the top 10, then it must be good, but it doesn't really matter if it's 1st or 10th or 5th or whatever.";False;False;;;;1610420875;;False;{};giyl9qi;False;t3_kvimj5;False;False;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/giyl9qi/;1610483182;6;True;False;anime;t5_2qh22;;0;[]; -[];;;chibijosh;;;[];;;;text;t2_bkmc0;False;False;[];;I haven’t seen Darling in the Franxx. I was interested in it, but I remember the ending being a common major complaint when it originally aired.;False;False;;;;1610420906;;False;{};giylbxz;False;t3_kvfm0x;False;True;t1_giy5d5m;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giylbxz/;1610483223;2;True;False;anime;t5_2qh22;;0;[]; -[];;;R3d_it;;;[];;;;text;t2_7ttqqfq4;False;False;[];;Bench-kun bestt villain;False;False;;;;1610420938;;False;{};giyle8a;True;t3_kvinqi;False;True;t1_giykatp;/r/anime/comments/kvinqi/random_anime_series_i_liked/giyle8a/;1610483267;2;True;False;anime;t5_2qh22;;0;[]; -[];;;StrangerAnime2;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Romance Weeb;dark;text;t2_76ozheyb;False;False;[];;Yes he is;False;False;;;;1610420978;;False;{};giylh3j;False;t3_kvinqi;False;False;t1_giyle8a;/r/anime/comments/kvinqi/random_anime_series_i_liked/giylh3j/;1610483326;1;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"Welcome to the Anime Community!! This lengthy but general list seeks to help you find shows that will cater to your needs as well as making you aware of the various titles out there from a variety of genres and eras. - -Genres are marked in bold. Pick one you like and browse through until you find a show you may enjoy. - -Openings/trailers are linked to give you a feel for the show. Legal streams or lack of them will be found after the description in the () as well as any extra info about the show or any other genres it could fit into as some could shows could fit into two. - -If this list still is a bit intimidating for you don’t hesitate to just simply tell me what you enjoy in other media, and I will direct you to something on this list or maybe something I haven’t included. - - - -**Fantasy** (Stories or settings that either take place in entirely different worlds or takes place in our world while having some fantastic quality or aspect such as magic): - -- Attack on Titan (2013) Eren, Armin and Mikasa are three kids trapped behind one of the three outer walls that protects humanity from the monsters outside called Titans. Desperate to see the outside world their dreams are dashed on a fateful day where a new titan is able to breach the once impenetrable walls. This memorable day will challenge their will, beliefs and general perception of humanity as they fight to save it. -(Crunchyroll/VRV, Funimation, Hulu, Netflix S1 only) - -[Attack on Titan OP 1](https://www.youtube.com/watch?v=GvpZHdC80lE) - -- Hunter x Hunter (2011) A boy named Gon embarks on an adventure to become a Hunter an incredibly sought-after profession that is both very lucrative but incredibly dangerous in the hopes of understanding why his father abandoned him as a young child. (There are two versions of HxH the 1999 version you can check out but the 2011 is considered the superior adaption and has adapted more of the story) -(Crunchyroll, Hulu doesn’t have the full show only 76 episodes/Netflix doesn’t have the full show only 76 episodes) - -[Hunter X Hunter OP 1](https://www.youtube.com/watch?v=faqmNf_fZlE) - -- Full Metal Alchemist Brotherhood (2009) Two boys Ed and Alphonse make a Faustian bargain that deeply curse both of them. To revert the consequences, they must go on an adventure to find a mystical stone of alchemy the philosopher stone. The show deals with imperialism, militarism, redemption, forgiveness, the value of human life and the danger of the extremes of pure faith and rationality. (recommend the dub as a sub watcher) - (Crunchyroll/VRV, Hulu, Netflix ) - -[FMAB OP 1](https://www.youtube.com/watch?v=X59yPeVk_70) - -- Spice and Wolf (2008) Kraft Lawrence a merchant makes his living peddling goods as he goes town to town. After making one of these stops, he encounters an old wolf deity by the name of Holo who has not awakened in a very long time. Holo accompanies Lawrence on his travels to see the changes in the world she long forgot while helping Lawrence in his job as a merchant. -(Funimation) (Slice of Life) - -[Spice and Wolf OP](https://www.youtube.com/watch?v=MN_WgwEmRaw) - -- Kimetsu no Yaiba (2019) Action series set during the Taisho Era in Japan about a young demon slayer who after finding his family murdered must find a cure to save his sister from turning into a demon. (Crunchyroll/VRV, Hulu, Funimation) (Historical) - -[Kimetsu no Yaiba OP]( https://www.youtube.com/watch?v=pmanD_s7G3U) - - - -- Re:Zero (2016) Subaru Natsuki a normal Japanese guy is suddenly transported to another world. After various entanglements he realizes he has both a remarkable and horrifying power the ability to return to a certain point of time after dying. Can he use this power to save him and his friends? -(CR/Funimation) - -[Re:Zero OP](https://www.youtube.com/watch?v=0Vwwr3VGsYg) - -- Yona of the Dawn (2014) Yona is a young princess that has lived in luxury most of her life thanks to her benevolent father. This all changes after one day when he is murdered in a palace coup. She is saved by her only loyal retainer Hak and must grow up in a harsh unforgiving world as she looks to take back her kingdom. -(Crunchyroll/VRV, Funimation/Hulu) - -[Yona of the Dawn OP 1](https://www.youtube.com/watch?v=3Tz3vxwJf6I) - -- Mushishi (2005) Ambient supernatural show about a Mushishi a doctor who specializes in healing the afflicted of diseases usually caused by supernatural beings called Mushi. Stories can range from heartwarming to tragic with various messages about family or the relation between humanity and nature. -(Crunchyroll/VRV, Hulu, Funimation) (Slice of Life) - -[Mushishi Trailer](https://www.youtube.com/watch?v=CXhPRWY1L0E) - -- Naruto (2002) After a powerful monster known as the Nine Tailed Fox attacks the Leaf Village the Hokage the greatest ninja and leader of the village seals it into a young boy known as Naruto. As he grows up Naruto hopes to one day become Hokage himself so that one day the villagers that fear him and his teachers, seniors and classmates that look down on him will one day recognize him. (Does have filler just look up a filler guide. That said the filler episode around Kakashi’s mask and the Itachi Shiden arcs you should watch basically canon) -(Crunchyroll/VRV, Netflix all of Part 1 and Part 2 up to Five Kage arc) - -[Naruto OP 1](https://www.youtube.com/watch?v=4t__wczfpRI) - - -- Spirited Away (2001) A girl named Chihiro and her family accidently enter a world dominated by various spirits. After her parents are turned into pigs by the witch Yubaba Chihiro must find a way to turn them back to normal and escape. -(Blu-Ray/Netflix) - -[Spirited Away English Dub trailer]( https://www.youtube.com/watch?v=ByXuk9QqQkk) - - -**Science Fiction** (Stories taking place in the future or near future that don’t feature giant robots) - -- Cowboy Bebop (1998) Spike Spiegel a former syndicate member gangs up with a small crew known as Jet, Faye and Ed as they pursue various criminals around the Solar system while he keeps an eye out for former syndicate member Vicious. Mostly episodic but with an overarching plotline. (recommend the dub as a sub watcher) (Funimation) - -[Cowboy Bebop OP]( https://www.youtube.com/watch?v=NRI_8PUXx2A) - -- Akira (1988) A dark sci fi anime about a bunch of biker kids getting caught up in a government project that firmly tests their bonds and the fragile system that exists in Neo Tokyo. (Hulu/BD) - -[Akira 25th Anniversary English Trailer](https://www.youtube.com/watch?v=-UhLderbuGI) - - -- Steins;Gate (2011) A few nerdy college friends and one genius scientist accidentally create a time machine out of a microwave. This initial sense of achievement is turned to dread as they must avoid the organization SERN and save the world from a devastating fate. (Funimation/Hulu) - -[Steins;Gate OP](https://www.youtube.com/watch?v=dd7BILZcYAY) - -- Legend of the Galactic Heroes (OVA 1988-1997) A great epic space opera with a conflict focused on a corrupt democracy fighting an enlightened despot. Discussions on both the benefits and issues of both systems along with the huge epic space battles. Recent remake not a bad adaptation but it is a bit rushed and only covers the first two books of 10 original has covered all. (Watch the first two prequel films My Conquest is A Sea of Stars and Overture to a New War and skip the first two episodes of the main series after seeing the films. Overture covers the first two episodes better. Extra content you can watch after the fact is the prequel Gaiden and the remake). -(Hidive/VRV) - - [Legend of the Galactic Heroes OP 3]( https://www.youtube.com/watch?v=Hryo6H57y6I) - -- Redline (2009) Every five years one insane race is held called Redline. There is only one rule that there are no rules. Adrenaline the anime with some of the most amazing animation out there. (Amazon Prime) - -[Redline Trailer](https://www.youtube.com/watch?v=2t26m_Q6ENo) - -- Space Battleship Yamato 2199 (2012). After humanity encounters alien life for the first time the Gamilas as they are known destroy Earth’s atmosphere forcing humanity underground. Hope however, manifests after another alien race from the planet Iscandar helps humanity construct a new spaceship capable of FTL to venture to their planet for a possible hope for the dying Earth. (a remake of the classic series and pretty good worth watching the original as well) -(Funimation) - -[Space Battleship Yamato 2199 OP](https://www.youtube.com/watch?v=51PjegTadWU) - -- Ghost in the Shell (Film 1995) (SAC 2002) Set in the mid 21st century in a world that has allowed people to easily modify their bodies with some becoming entirely cybernetic. Matoko Kusanagi is one such cyborg who works for the Public Security Section 9 task force whose main objectives are to deal with crime and counter terrorism. -(Films and the SAC series are independent. Films are more philosophical vs SAC which tends to be more a crime drama) -(Amazon Prime has the official dub release but if you want to watch sub look elsewhere) - - -[Ghost in the Shell: S.A.C. 2nd GIG OP](https://www.youtube.com/watch?v=YQIqgxeNtl0) - - -- Psycho Pass (2012) A cyberpunk detective story in an over monitored state that actively tracks your brain and marks you out as a criminal if your criminality potential goes overboard. Series focuses on Inspector Akane and Kogami an enforcer a controlled agent whose criminal coefficient has gone over as they try to track down a prolific criminal mastermind. -(Funimation/Hulu) - -[Psycho Pass OP 2]( https://www.youtube.com/watch?v=3DSQmBQ9EJk)";False;False;;;;1610420980;;False;{};giylh76;False;t3_kvhzuw;False;True;t3_kvhzuw;/r/anime/comments/kvhzuw/ah_i_need_some_help_i_am_new_thx/giylh76/;1610483327;1;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;No, not at all. They're at best an arbitrary metric of the popular opinion.;False;False;;;;1610420984;;False;{};giylhgf;False;t3_kvimj5;False;False;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/giylhgf/;1610483333;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DragonsBeware;;;[];;;;text;t2_6i5ca0oh;False;False;[];;"About the grammatical error’s I would like to know where so it’ll be easier for me to find. - -If it’s words like colour(color) and whatnot then... well I am English after all but if it’s Japanese words and names I’ll try my best to fix them. - -I’ll try and add the review and other stuff you mentioned so it’ll be better as you mentioned, sorry about the whole thing really I just got excited about the characters and at the time my mother tried to argue with me about unrelated stuff so I did get distracted but I’m always happy to fix my mistakes 😊😊";False;False;;;;1610420996;;False;{};giylicq;True;t3_kvic3q;False;True;t1_giykw90;/r/anime/comments/kvic3q/my_blog_about_food_wars/giylicq/;1610483350;1;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"**Mecha** (Stories that do feature giant robots the plots can be fairly diverse honestly): - -- Neon Genesis Evangelion (1995) Three teens are the only hope for humanity. Synced up to massive robots to fight aliens/monsters known as Angels. Quite a few themes like a look at the writer's ongoing depression play a huge role in the series. (make sure you watch the film End of Evangelion for the ending) (there is also the Rebuild films which is another alternative take on the story) -(Netflix) - -[Neon Genesis Evangelion OP]( https://www.youtube.com/watch?v=nU21rCWkuJw) - - -- Code Geass (2006) Set in an alternate history where the world is divided between three great superpowers the former country of Japan is occupied by the Holy Britannian Empire and is renamed as Area 11. A young Britanian by the name of Lelouch after gaining a power that gives him command over a person’s actions seeks to help the Japanese rebel against the tyrannical state but is faced with difficult decisions as he leads the revolution down a radical path. (Funimation/Hulu/Netflix) - -[Code Geass OP 1](https://www.youtube.com/watch?v=cZ7zQbMxm28) - -- Gurren Lagann (2007) Two boys Kamina and Simon are raised in a deep underground village. One day they discover a massive robot from an ancient war. Along with Yoko a new friend they wander through the wasteland of the surface world as they fight off beastmen and powerful robots called gunmen. (Netflix) - -[Gurren Laggan OP](https://www.youtube.com/watch?v=1Iqd7hhmXMc) - - -- Mobile Suit Gundam Iron Blood Orphans (2015) Child soldiers get wrapped up in a push for Martian indepence against a Sci Fi version of the East Indian Company. (stand-alone Gundam series you need no experience with other Gundam titles) -(Crunchyroll/VRV, Funimation, Netflix) - -[Mobile Suit Gundam Iron Blood Orphans OP](https://www.youtube.com/watch?v=FjXS_lbU2TU) - -**Comedy** (Stories whose main focus is on comedy): - -- Mob Psycho 100 (2016) Action comedy about a psychic boy and his mentor a con artist fighting other psychics and the various spirits that plague their city while he learns to grow as a person. (Crunchyroll/Funimation) (Action/Adventure Other) - -[Mob Psycho 100 OP] (https://www.youtube.com/watch?v=0lpApXzwAP0&index=2&list=FLsNBO_i0YOwmyoaxjB-AZ7g&t=0s) - - -- Kaguya-Sama Love is War (2019) One of the most overdramatic romance anime out there. A battle of the minds where the two love interests try to get the other to confess first in order to save their pride. Pretty humorous and funny if you like very overdramatized comedy. (Crunchyroll/VRV, Hulu, Funimation) (Romance) - -[Kaguya-Sama Love is War OP](https://www.youtube.com/watch?v=_4NjEOtSQww) - - -- Nichijou (2011) Series focuses on the daily antics of three childhood friends and their activities that vary from the normal to the borderline extraordinary. -(Funimation) (Slice of Life) - -[Nichijou OP](https://www.youtube.com/watch?v=qUk1ZoCGqsA) - - -**Action/Adventure (Other)** (Action series that didn’t fit neatly into a genre on my list): - -- My Hero Academia (2016) After a birth of a glowing baby humanity is slowly altered to the point that at the present day most of humanity features some sort of genetic mutation or super-power in a way. Izuku Midoriya is one of those few people in the world that doesn’t possess a superpower but he still desires to be a hero. After impressing the world’s greatest hero All Might he is a given an opportunity to become one. -(Crunchyroll/VRV, Hulu, Funimation ) - -[My Hero Academia OP 1](https://www.youtube.com/watch?v=yu0HjPzFYnY) - -- JoJo's Bizarre Adventure (2012) Generational action series that involves multiple characters throughout time. Has a very unique sense of style with a really creative battle system that makes it standout from many other action titles. Each part is it’s own story in a way but they are connected. -(Would give it until episode 12 to know if it’s for you) (Part 1 is considered the weakest of the 8 but don’t skip parts) -(Crunchyroll/VRV, Hulu (only up to Part 4), Netflix (only up to Part 3)) - -[JoJo's Bizarre Adventure Part 4 OP](https://www.youtube.com/watch?v=wlXqw2_IYzs) - -- Black Lagoon (2006) Rakuro Okajima also known as Rock is a Japanese salaryman who gets involved with a pirate gang in South East Asia on the Black Lagoon after a certain deal goes wrong. (recommend the dub as a sub watcher) (Hulu, Funimation) - -[Black Lagoon OP]( https://www.youtube.com/watch?v=qCPOzUTCb8g) - - -- The Great Pretender (2020) Edamura Masato a Japanese con man gets himself swindled by an infamous French Mafia member and gets pulled into his line of dirty work. -(Netflix) - -[The Great Pretender OP](https://www.youtube.com/watch?v=Yjv_yFgHYc0) - - - -**Slice of Life** (Stories that focus on the mundane aspects of life. Can vary between more dramatic to relaxed content): - - -- Violet Evergarden (2018) Violet Evergarden a child soldier whose emotional growth has been incredibly stunted by the war takes up a job in conveying the emotions of others. Through this profession she hopes that one day she can understand what one man said to her long ago. -(Netflix) - -[Violet Evergarden OP](https://www.youtube.com/watch?v=BGn6WOw6BtA) - - -- March Comes in Like A Lion (2016) Rei Kiriyama a pro shogi player (Shogi is like chess though there are a few differences) is depressed caused by a dysfunctional adopted family and pressure from those that see him as a genius. As he meets others near his home and those in the shogi federation, he starts to gain confidence in himself and begins to maybe have fun with the game he depends so much on. -(Crunchyroll/VRV, Netflix) - -[3-Gatsu No Lion S2 OP](https://www.youtube.com/watch?v=YvOK6DiZw1M) - - -- A Silent Voice (2016) Shouya Ishida has an incredible sense of guilt due to remembering his elementary days where he used to bully a deaf girl named Shouko. After by chance meeting her again, he hopes to redeem himself with the goal of giving her a fun summer. Would also recommend the manga as while the movie is great it does skips over stuff. (Netflix) - -[A Silent Voice Trailer](https://www.youtube.com/watch?v=nfK6UgLra7g) - -- Girls Last Tour (2017) After the world has been destroyed by an apocalyptic war two girls traverse the broken world laid out before them. Both relaxing and wholesome but also can be quite sad. (HiDive/Prime) - -[Girls Last Tour OP](https://www.youtube.com/watch?v=mF5MKNwbRhg) - -- Barakamon(2014) A Pro calligrapher named Handa is exiled to an isolated island away from Tokyo to reflect on his actions after attacking a well-respected calligrapher after critiquing his work. Story is mostly a comedy/slice of life with various antics with the locals and Handa but can also be fairly introspective and heartwarming. (Funimation) - -[Barakamon OP](https://www.youtube.com/watch?v=_vvL3z3pAs0) - - -- Yuru Camp (2018) A bunch of girls enjoying their outdoor hobby of Fall Camping. Soothing show. -(Crunchyroll/VRV) - -[Yuru Camp OP](https://www.youtube.com/watch?v=7-EwChG1WTA) - - - - -**Sports** (anime based around playing sports whether that be the technical/emotional aspect of the sport or the drama around it): - -- Haikyuu! (2014) Shouyou Hinata a small volleyball player must work with his former rival Tobio Kageyama to rebuild a former HS volleyball powerhouse. -(Crunchyroll/VRV/HiDive, Hulu, Netflix) - -[Haikyuu! OP 1](https://www.youtube.com/watch?v=XS-N8KfZ5EU) - - -- Ping Pong the Animation (2014) “Peco” an aspiring Ping Pong pro journeys through the harsh struggle that a pro must face with his friend “Smile” after Wenge “China” Kong a skilled Chinese ping pong player moves to Japan. Sports anime that combines hyper action with an unique art style and a psychological element. -(Funimation) - -[Ping Pong Trailer]( https://www.youtube.com/watch?v=XgPGtZH0EjQ) - -- Major (2004) A baseball anime about one young boy’s entire career from little leaguer to playing in the MLB. - (No official release for the original sail the seas) (Major 2nd is a sequel focusing on MC’s kid) - -[Major S6 OP](https://www.youtube.com/watch?v=l62pw6Is_Ks) - -- Yuri on Ice (2016) Figure skating anime that focuses on an underperforming figure skater Yuuri Katsuki. After wowing the internet with a practice performance famous Russian skater Victor Nikiforov vows to be his coach. As they work together more a friendship and maybe something else forms. -(Crunchyroll/Funimation) - -[Yuri on Ice OP](https://www.youtube.com/watch?v=ORDXWrL5EuQ)";False;False;;;;1610420998;;False;{};giyligz;False;t3_kvhzuw;False;True;t1_giylh76;/r/anime/comments/kvhzuw/ah_i_need_some_help_i_am_new_thx/giyligz/;1610483352;1;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"**Thriller** (Stories that rely on suspense as the MC uncovers more in my list these are mostly crime dramas): - -- Death Note (2006) Light Yagami a normal HS student and son of the Chief of the Police agency one day stumbles on a book that has the power to kill any person in the world. With this and Ryuk a Shiginami (Gods of Death) he aims to create his utopia where no crime exists while the police try to stop him from creating this nightmarish “utopia”. (Funimation, Hulu, Netflix ) - -[Death Note OP 1]( https://www.youtube.com/watch?v=8QE9cmfxx4s) - -- Monster (2004) Kenzo Tenma a Japanese surgeon living in Germany life changes drastically after he saves an incredibly dangerous man known as Johan Liebert. After learning the truth about Johan Kenzo decides no matter what he must find and kill him. - (going to have to sail the seas) - -[Monster OP](https://www.youtube.com/watch?v=msTB5r8nUHU) - - -**Historical** (stories based in any historic time period): - - -- Showa Genroku Rakugo Shinjuu (2016) Period drama that focuses on Rakugo (a form of Japanese theater) actors. Takes place throughout the entire Showa Period (1920’s-80’s) and beyond as these actors attempt to preserve the dying theater art form through interpersonal and historic struggles. -(Crunchyroll/VRV) - -[Shouwa Genroku Rakugo Shinjuu S2 OP](https://www.youtube.com/watch?v=t1HjJfGt_xk) - - -- Sword of the Stranger (2007) A boy Kotarou is on the run stealing from various villagers just to survive while being pursued by Ming assassins. Luckily he meets up with Nanashi a nameless ronin who after being offered a gem decides to join him as a bodyguard. (Funimation) - -[Sword of the Stranger English Dub Trailer](https://www.youtube.com/watch?v=3vUpmcZRkRY) - -- Vinland Saga(2019) Takes place in the early 11th century towards the end of the Viking Age. Thorfinn a young Icelander aims to take the head of Askeladd a leader of a band of Viking pirates to one day avenge his father Thors. - (Amazon Prime) - -[Vinland Saga OP]( https://www.youtube.com/watch?v=7U7BDn-gU18) - -- Rose of Versailes (1979) Oscar François de Jarjeyes is a French noble and head of the Royal guard. There is one secret though he is actually a she. She quickly forms an attachment with the new Queen Marie Antoinette. As France’s political and social state changes, she is forced to decide her loyalty between her queen and the people. (sail the seas) - -[Rose of Versailes OP](https://www.youtube.com/watch?v=eJIeJIqw-J0) - - - - - - - - - -**Romance** (stories where the romantic relationship is the main narrative focus): - - -- Toradora! (2008) A scary looking kind guy and a crass cute girl form a pact to help one another get closer to each other’s crush. -(CR/VRV, Prime, Netflix) - -[Toradora! OP](https://www.youtube.com/watch?v=Y3Xmzu0OtS8) - -- Paradise Kiss (2005) Romance anime that deals with the fashion industry as well as one girl’s desire for independence from her parents and her venture into maturity. -(no official release sail the seas) - -[Paradise Kiss OP](https://www.youtube.com/watch?v=glcG4G2XWsA) - - - -- Nodame Cantabile (2007) A top disciplined perfectionist musician by the name of Shinichi Chiaki comes into contact with an a slobish girl by the name of Meguimi Noda. When he hears her for the first time, he is in awe of the music she creates and slowly a romance is born between the two opposites. (sail the seas) - -[Nodame Cantabile OP](https://www.youtube.com/watch?v=gfZh80kZm3g) - - -- My Love Story (2015) An incredibly macho but kindhearted Takeo Gouda often can’t find love as most girls don’t find him attractive, but he soon finds that he too is deserving of love. (Crunchyroll/HiDive/VRV, Hulu, ) - -[My Love Story OP]( https://www.youtube.com/watch?v=lmznkTDDoS8) - - - -- Your Lie in April (2014) A piano prodigy suffers a serious tragedy and loses the ability to hear his own playing then later vowing to never play on stage again. Through the help of a girl, he meets he soon rediscovers his passion for playing the piano. -(Crunchyroll/VRV, Netflix ) - -[Your Lie In April OP](https://www.youtube.com/watch?v=lkdi6eK05OA) - -- Love, Chunibyo & Other Delusions! (2012) Yuuta Togashi wants to put the embarrassing past of his middle school years behind him when he once operated under the name the “Dark Flame Master”. His hopes are somewhat shattered after he encounters Rikka Takanashi a girl that had once eavesdropped on his delusions claiming to be the “Wielder of the Wicked Eye” and declaring they are attached. A romance anime about maturity and the various things we do to cope with the reality around us. -(watch the film for ending) (Crunchyroll and Neflix have S1/2, the film is on HiDive/VRV or you can buy it on Blu ray) - -[Love, Chunibyo & Other Delusions! OP](https://www.youtube.com/watch?v=GRNhN8et8WE) - - -**Ecchi** (Series that have a heavy focus on fanservice. Series dealing with sexual/lewd imagery/content but not explicit enough to be hentai aka porn): - -- Kill la Kill (2013) Delinquent girl Ryuko Matoi seeks to avenge her father’s killer. Through the power of scissor shaped longsword and a sentient sailor uniform she does battle to find her father’s killer. (Netflix CR/VRV, Hulu) - -[Kill La Kill OP](https://www.youtube.com/watch?v=8dKFxu-_oIE) - - -- Interspecies Reviewers (2020) A bunch of adventures decide to assess the age old question of what species is the most sexy by visiting various brothels around the world. -(heads up the uncensored version kinda just teeters on being a straight hentai rather than ecchi series) (Animelab which is only available in certain countries outside of that will have to sail the seas) - -[Interspecies Reviewers Trailer](https://www.youtube.com/watch?v=5bb4RPbovZ4)";False;False;;;;1610421014;;False;{};giyljmd;False;t3_kvhzuw;False;True;t1_giyligz;/r/anime/comments/kvhzuw/ah_i_need_some_help_i_am_new_thx/giyljmd/;1610483374;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ShinyNinjaYT;;;[];;;;text;t2_61tji27u;False;False;[];;I buy from amazon, that's where I got my precious Ahegao hoodie;False;False;;;;1610421016;;False;{};giyljsr;False;t3_kviwdh;False;True;t3_kviwdh;/r/anime/comments/kviwdh/where_do_you_buy_your_anime_merch/giyljsr/;1610483378;2;True;False;anime;t5_2qh22;;0;[]; -[];;;R3d_it;;;[];;;;text;t2_7ttqqfq4;False;False;[];;Know any good romance, comedy, rom-com, harem, slice of life anime?;False;False;;;;1610421064;;False;{};giyln5h;True;t3_kvinqi;False;True;t1_giylh3j;/r/anime/comments/kvinqi/random_anime_series_i_liked/giyln5h/;1610483440;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DarrylCornejo;;;[];;;;text;t2_6j0ppdfx;False;False;[];;Hot Topic.;False;False;;;;1610421080;;False;{};giylo83;False;t3_kviwdh;False;True;t3_kviwdh;/r/anime/comments/kviwdh/where_do_you_buy_your_anime_merch/giylo83/;1610483460;2;True;False;anime;t5_2qh22;;0;[]; -[];;;StrangerAnime2;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Romance Weeb;dark;text;t2_76ozheyb;False;False;[];;I got nisekoi but other than that I don’t have any that have a harem;False;False;;;;1610421099;;False;{};giylpj4;False;t3_kvinqi;False;True;t1_giyln5h;/r/anime/comments/kvinqi/random_anime_series_i_liked/giylpj4/;1610483484;1;True;False;anime;t5_2qh22;;0;[]; -[];;;StrangerAnime2;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Romance Weeb;dark;text;t2_76ozheyb;False;False;[];;But I have a lot of romcoms and sol romcoms;False;False;;;;1610421114;;False;{};giylqo2;False;t3_kvinqi;False;True;t1_giyln5h;/r/anime/comments/kvinqi/random_anime_series_i_liked/giylqo2/;1610483506;1;True;False;anime;t5_2qh22;;0;[]; -[];;;R3d_it;;;[];;;;text;t2_7ttqqfq4;False;False;[];;I'm fine even if it isn't harem;False;False;;;;1610421143;;False;{};giylspi;True;t3_kvinqi;False;True;t1_giylpj4;/r/anime/comments/kvinqi/random_anime_series_i_liked/giylspi/;1610483546;1;True;False;anime;t5_2qh22;;0;[]; -[];;;StrangerAnime2;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Romance Weeb;dark;text;t2_76ozheyb;False;False;[];;I got a lot in that case jsut copied form my other comment btw;False;False;;;;1610421195;;False;{};giylwe4;False;t3_kvinqi;False;True;t1_giylspi;/r/anime/comments/kvinqi/random_anime_series_i_liked/giylwe4/;1610483613;1;True;False;anime;t5_2qh22;;0;[]; -[];;;StrangerAnime2;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Romance Weeb;dark;text;t2_76ozheyb;False;False;[];;My little monster Hi score girl Gamers Oresuki Horiyama(Ongoing) Bottom Tier Charater Tomozaki(Ongoing) I’ll come back when I remember more Edit1 The pet girl of Sakurasou Kimi ni todoke Uzaki chan This art club has a problem Tsurezure children(Not pedo btw) Akkun to Kanojo Masamune kuns revenge Engaged to the unidentified Welcome to the NHK(Gets very emotional) Blue spring ride Kiss him not me Just because Tamako market Net-juu no susume Saekano Tada kun Nozaki kun Baka and test Bokuben we never learn Quintessential Quintuplets(s2 premiering now) Toradora Relife Honey and clover Edit2 added notes to some;False;False;;;;1610421203;;False;{};giylwvz;False;t3_kvinqi;False;True;t1_giylspi;/r/anime/comments/kvinqi/random_anime_series_i_liked/giylwvz/;1610483622;0;True;False;anime;t5_2qh22;;0;[]; -[];;;R3d_it;;;[];;;;text;t2_7ttqqfq4;False;False;[];;Do u have a MAl Acc? I'd like to take a look at ur list;False;False;;;;1610421286;;False;{};giym3eb;True;t3_kvinqi;False;True;t1_giylwe4;/r/anime/comments/kvinqi/random_anime_series_i_liked/giym3eb/;1610483736;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi 101stgec_, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610421325;moderator;False;{};giym72u;False;t3_kvj2gy;False;True;t3_kvj2gy;/r/anime/comments/kvj2gy/plot_based_anime_recommendations/giym72u/;1610483797;0;False;False;anime;t5_2qh22;;0;[]; -[];;;crypto_261;;;[];;;;text;t2_89gxyqnf;False;False;[];;Code geass;False;False;;;;1610421394;;False;{};giymca0;False;t3_kvj2gy;False;True;t3_kvj2gy;/r/anime/comments/kvj2gy/plot_based_anime_recommendations/giymca0/;1610483890;1;True;False;anime;t5_2qh22;;0;[]; -[];;;101stgec_;;;[];;;;text;t2_7zm1fbj5;False;False;[];;I didn’t know that that was plot based thanks I’ll check it iut;False;False;;;;1610421416;;False;{};giymduw;True;t3_kvj2gy;False;True;t1_giymca0;/r/anime/comments/kvj2gy/plot_based_anime_recommendations/giymduw/;1610483919;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sorryimsobad;;;[];;;;text;t2_miizy95;False;False;[];;for real though, for my money, squirtle is probably the most powerful pokemon of all;False;False;;;;1610421434;;False;{};giymf1q;False;t3_kvico1;False;True;t3_kvico1;/r/anime/comments/kvico1/who_is_the_strongest_pokemon/giymf1q/;1610483942;2;True;False;anime;t5_2qh22;;0;[]; -[];;;StrangerAnime2;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Romance Weeb;dark;text;t2_76ozheyb;False;False;[];;I was thinking abt making one but then I got busy and forgot;False;False;;;;1610421436;;False;{};giymf7j;False;t3_kvinqi;False;False;t1_giym3eb;/r/anime/comments/kvinqi/random_anime_series_i_liked/giymf7j/;1610483946;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crypto_261;;;[];;;;text;t2_89gxyqnf;False;False;[];;U could also try tokyo ghoul;False;False;;;;1610421447;;False;{};giymfyw;False;t3_kvj2gy;False;True;t1_giymduw;/r/anime/comments/kvj2gy/plot_based_anime_recommendations/giymfyw/;1610483962;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Zig;;;[];;;;text;t2_r3byl;False;False;[];;"Lol anime fans are the only ones that argue about rankings and moan their discrediting. You never see it on /r/Television or /r/movies about IMDb. - -Most insecure that their fave animu aren’t on top.";False;False;;;;1610421508;;False;{};giymk9h;False;t3_kvimj5;False;False;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/giymk9h/;1610484053;18;True;False;anime;t5_2qh22;;0;[]; -[];;;FireRifle64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FireRifle64;light;text;t2_29fr8mww;False;False;[];;I would never have thought to compare the two. Probably only thing worth comparing would be they are both shounens. I don't know which is better. Demon slayer was a pretty decent show especially with the visuals. Beastars being mainly CGI really sets it apart. Beastars also made me want to read the manga whereas I never read demon slayer manga.;False;False;;;;1610421537;;False;{};giymma0;False;t3_kvi57q;False;True;t3_kvi57q;/r/anime/comments/kvi57q/comparing_beastars_to_demon_slayer_which_is_better/giymma0/;1610484092;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spudz1203;;;[];;;;text;t2_38t77leo;False;False;[];;Ok makes more sense. Its been on my mean to watch list for a while so... it works out;False;False;;;;1610421572;;1610422047.0;{};giymolg;True;t3_kvhi6t;False;False;t1_giyi1uz;/r/anime/comments/kvhi6t/recommendations_to_expand_from_shonen/giymolg/;1610484135;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bigfrickenorange;;;[];;;;text;t2_60ujz720;False;False;[];;I’m just imagining you sitting there trying to think of something completely different from apples and noticing your headphones sitting on the table and choosing that;False;False;;;;1610421599;;False;{};giymqhy;False;t3_kvi57q;False;False;t1_giygsw0;/r/anime/comments/kvi57q/comparing_beastars_to_demon_slayer_which_is_better/giymqhy/;1610484172;5;True;False;anime;t5_2qh22;;0;[]; -[];;;CM901;;;[];;;;text;t2_3wr9mgvu;False;False;[];;My name is Kuwabara, and I've got a sword;False;False;;;;1610421641;;False;{};giymtgy;False;t3_kvj362;False;True;t3_kvj362;/r/anime/comments/kvj362/yusukes_demon_transformationyu_yu_hakasho/giymtgy/;1610484230;1;True;False;anime;t5_2qh22;;0;[]; -[];;;101stgec_;;;[];;;;text;t2_7zm1fbj5;False;False;[];;I’ve seen that already it’s a good show but the mangas way better;False;False;;;;1610421713;;False;{};giymyh2;True;t3_kvj2gy;False;True;t1_giymfyw;/r/anime/comments/kvj2gy/plot_based_anime_recommendations/giymyh2/;1610484322;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Itadori Yuji 30 years ago;False;False;;;;1610421746;;False;{};giyn0t0;False;t3_kvj362;False;True;t3_kvj362;/r/anime/comments/kvj362/yusukes_demon_transformationyu_yu_hakasho/giyn0t0/;1610484368;3;True;False;anime;t5_2qh22;;0;[]; -[];;;crypto_261;;;[];;;;text;t2_89gxyqnf;False;False;[];;Have u seen aldnoah zero , its protaganist is like yagami light from death note ...;False;False;;;;1610421844;;False;{};giyn7fl;False;t3_kvj2gy;False;False;t1_giymyh2;/r/anime/comments/kvj2gy/plot_based_anime_recommendations/giyn7fl/;1610484500;2;True;False;anime;t5_2qh22;;0;[]; -[];;;101stgec_;;;[];;;;text;t2_7zm1fbj5;False;False;[];;I’ll check it out is it on Funimation or Crunchyroll?;False;False;;;;1610421891;;False;{};giynanz;True;t3_kvj2gy;False;False;t1_giyn7fl;/r/anime/comments/kvj2gy/plot_based_anime_recommendations/giynanz/;1610484564;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;Tbh it’s more character based than plot based but still a masterpiece imo;False;False;;;;1610421954;;False;{};giynexf;False;t3_kvj2gy;False;False;t1_giymduw;/r/anime/comments/kvj2gy/plot_based_anime_recommendations/giynexf/;1610484654;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bright_Eyes83;;;[];;;;text;t2_435s15rz;False;False;[];;if you really want something different, this is it. only time will tell if you like it or not, but it's a great way to expand your horizons;False;False;;;;1610421991;;False;{};giynhdo;False;t3_kvhi6t;False;True;t1_giymolg;/r/anime/comments/kvhi6t/recommendations_to_expand_from_shonen/giynhdo/;1610484701;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BJRibs;;;[];;;;text;t2_uwolspk;False;False;[];;If you want anime gym clothes check out justsaiyan. They have such amazing anime workout clothes!;False;False;;;;1610422043;;False;{};giynkz2;False;t3_kviwdh;False;True;t3_kviwdh;/r/anime/comments/kviwdh/where_do_you_buy_your_anime_merch/giynkz2/;1610484774;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610422114;moderator;False;{};giynps7;False;t3_kvjawg;False;True;t3_kvjawg;/r/anime/comments/kvjawg/when_or_if_i_should_try_one_piece/giynps7/;1610484884;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Mage_of_Shadows;;;[];;;;text;t2_n8o12;False;False;[];;Haven't done a rewatch in a couple years so this might be a good start.;False;False;;;;1610422168;;False;{};giyntea;False;t3_kvfuei;False;False;t3_kvfuei;/r/anime/comments/kvfuei/nagi_no_asukaraa_lull_in_the_sea_rewatch_schedule/giyntea/;1610484961;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi soboi12345, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610422226;moderator;False;{};giynx99;False;t3_kvjc27;False;True;t3_kvjc27;/r/anime/comments/kvjc27/i_just_finished_watching_my_little_monster_tonari/giynx99/;1610485035;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;funny enough, that's exactly what happened;False;False;;;;1610422284;;False;{};giyo15g;False;t3_kvi57q;False;False;t1_giymqhy;/r/anime/comments/kvi57q/comparing_beastars_to_demon_slayer_which_is_better/giyo15g/;1610485107;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ConsolesQuiteAnnoyMe;;;[];;;;text;t2_2o903mmu;False;False;[];;Note - Part 4 also has DVDs if you're a cheapass.;False;False;;;;1610422296;;False;{};giyo1vv;False;t3_kvh7uc;False;True;t1_giybm2z;/r/anime/comments/kvh7uc/is_the_rest_of_jojos_bizzate_adventure_going_on/giyo1vv/;1610485120;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610422371;;False;{};giyo6xo;False;t3_kvj2gy;False;True;t3_kvj2gy;/r/anime/comments/kvj2gy/plot_based_anime_recommendations/giyo6xo/;1610485212;1;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"I havent read it, but I have heard the manga is a better than the anime. I think someone said they changed stuff around for the anime that lost a lot of the charm the manga had - -Hopefully someone who has actually read it can give their thoughts though";False;False;;;;1610422381;;False;{};giyo7n6;False;t3_kvjc27;False;True;t3_kvjc27;/r/anime/comments/kvjc27/i_just_finished_watching_my_little_monster_tonari/giyo7n6/;1610485225;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610422457;moderator;False;{};giyocsi;False;t3_kvjeht;False;True;t3_kvjeht;/r/anime/comments/kvjeht/which_version_of_when_they_cry_is_the_best/giyocsi/;1610485318;1;False;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Please create an anime list. You can create one at either: Myanimelist.net, anilist.co, kitsu or anime-planet. All 4 are free and easy to use. Helps you remember what you've seen and helps us so we aren't suggesting you what you've seen already. - -The Promised Neverland - -Banana Fish - -Vinland Saga - -Akatsuki no Yona - -Seirei no Moribito - -Psycho-Pass - -Mahou Shoujo Madoka Magica";False;False;;;;1610422504;;False;{};giyofw9;False;t3_kvj2gy;False;False;t3_kvj2gy;/r/anime/comments/kvj2gy/plot_based_anime_recommendations/giyofw9/;1610485374;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KiwiBennydudez;;MAL;[];;https://myanimelist.net/animelist/KiwiBen;dark;text;t2_889a6;False;False;[];;"Sorry, your submission has been removed. - -- This looks like a merch post. Show off your loot or ask questions about merch in the [weekly Merch Mondays megathread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+title%3A%22Merch+Mondays%22&restrict_sr=on&sort=new&t=week) instead. - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610422528;moderator;False;{};giyohhy;False;t3_kviwdh;False;True;t3_kviwdh;/r/anime/comments/kviwdh/where_do_you_buy_your_anime_merch/giyohhy/;1610485403;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;You can, if you'd like.;False;False;;;;1610422593;;False;{};giyolxn;False;t3_kvhi6t;False;True;t1_giygnyd;/r/anime/comments/kvhi6t/recommendations_to_expand_from_shonen/giyolxn/;1610485480;1;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"Higurashi? - -The new series is not a remake of the original like it was advertised so I wouldnt compare them for which is best. Personally I would say watch the original first then watch the new version. The original captured the horror of the series better for me (even if the animation didnt always look great), and I think your enjoyment of the new one will increase as you try and see what has changed from the original";False;False;;;;1610422601;;1610422822.0;{};giyomig;False;t3_kvjeht;False;True;t3_kvjeht;/r/anime/comments/kvjeht/which_version_of_when_they_cry_is_the_best/giyomig/;1610485491;1;True;False;anime;t5_2qh22;;0;[]; -[];;;25_Oranges;;;[];;;;text;t2_6k8wiuc1;False;False;[];;I'm looking forward to it!;False;False;;;;1610422669;;False;{};giyor3q;True;t3_kvfuei;False;True;t1_giyntea;/r/anime/comments/kvfuei/nagi_no_asukaraa_lull_in_the_sea_rewatch_schedule/giyor3q/;1610485574;3;True;False;anime;t5_2qh22;;0;[]; -[];;;some314;;;[];;;;text;t2_jxdjh;False;False;[];;"> Jobless reincarnation The dungeon that only I can enter suppose there’s a guy from the dungeon town that goes to the start of town anime other side panic - -man, these anime titles are getting ridiculous";False;False;;;;1610422704;;False;{};giyotcp;False;t3_kvjfp0;False;False;t3_kvjfp0;/r/anime/comments/kvjfp0/all_the_anime_this_year_so_far_has_been_great/giyotcp/;1610485616;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Shadowclook21;;;[];;;;text;t2_19zwvbdl;False;False;[];;thanks but you didn't help me accepting things never really helps anyone it's just a way to soften your problems;False;False;;;;1610422730;;1610422980.0;{};giyov6v;True;t3_kvht83;False;True;t1_giyh87q;/r/anime/comments/kvht83/how_do_i_not_feel_horrible_while_watching_romance/giyov6v/;1610485649;1;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;It's a bit early to make this call. Most shows only have 1 episode lmao.;False;False;;;;1610422738;;False;{};giyovn4;False;t3_kvjfp0;False;False;t3_kvjfp0;/r/anime/comments/kvjfp0/all_the_anime_this_year_so_far_has_been_great/giyovn4/;1610485657;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Benjamin1130;;;[];;;;text;t2_3mstfe7n;False;False;[];;Yeah;False;False;;;;1610422741;;False;{};giyovwt;True;t3_kvjfp0;False;True;t1_giyotcp;/r/anime/comments/kvjfp0/all_the_anime_this_year_so_far_has_been_great/giyovwt/;1610485662;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shadowclook21;;;[];;;;text;t2_19zwvbdl;False;False;[];;don't worry i won't i learnt my lesson from reading the manga metamorphosis by the way don't read this i promise you'll regret it;False;False;;;;1610422803;;False;{};giyp00x;True;t3_kvht83;False;True;t1_giyiaav;/r/anime/comments/kvht83/how_do_i_not_feel_horrible_while_watching_romance/giyp00x/;1610485737;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Benjamin1130;;;[];;;;text;t2_3mstfe7n;False;False;[];;Yeah but maybe I was over doing it for some of the anime but jobless reincarnation OK that could be like the best thing to me this year bet from the first ep I am already in love with it I guess it just depends where the series goes;False;False;;;;1610422813;;False;{};giyp0oh;True;t3_kvjfp0;False;True;t1_giyovn4;/r/anime/comments/kvjfp0/all_the_anime_this_year_so_far_has_been_great/giyp0oh/;1610485749;0;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;There's a set of visual novels, an anime released by Studio Deen starting back from 2006 ([watch order](https://www.reddit.com/r/Higurashinonakakoroni/comments/j01c4j/comment/g6u2oub?utm_medium=) that I jotted elsewhere if that helps), and a manga for Higurashi, and all of those cover the same story. I've only seen the old Studio Deen anime but all of those adaptations have their pros and cons. Then there's the 2020 anime, Higurashi Gou, which is a sequel/spinoff show--not a pure remake, and it helps if you've experienced the story from either the manga, VNs, or Studio Deen anime beforehand. It's recommended that you **don't check out Higurashi Gou before fully experiencing the mystery from one of the three things above.**;False;False;;;;1610422871;;False;{};giyp4l6;False;t3_kvjeht;False;True;t3_kvjeht;/r/anime/comments/kvjeht/which_version_of_when_they_cry_is_the_best/giyp4l6/;1610485824;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akai-AC;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Akai-AC;light;text;t2_3af1hwm4;False;False;[];;Watch the old version first and then the new one. They're different. I personally like the old one a lot more atm.;False;False;;;;1610423090;;False;{};giypja6;False;t3_kvjeht;False;True;t3_kvjeht;/r/anime/comments/kvjeht/which_version_of_when_they_cry_is_the_best/giypja6/;1610486093;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlueDragon101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Xcal1bur?status=7&order=4&orde";light;text;t2_11q4nx;False;False;[];;"Aight fine. I started with UBW and personally I felt like the series expected me to know things that I didn't and it make the whole show feel mildly dissapointing. Then I watched Fate/Zero where the first episode gives you the basic primer of ""aight, these are the players here's the basic premise, if you need to know something we'll either make it easy to pick up via context or explain it"" and I got the distinct feeling that if I had some basic understanding of the world and what the grail war was and what everything the characters were referring to was I would have enjoyed UBW much much better. The BEST solution is to play just the fate route of the VN or watch the stay/night anime but as I said, if you only wanna watch ufotable shows, then as someone who started with UBW and only understood half of it cuz i read the wiki to figure out what the fuck these people were talking about, Fate/Zero is a very flawed starting point, but it's way better than UBW. Personally I would rather know too much about the story and be able to understand what it's trying to do without getting confused even if it means spoilers, than be constantly stumbling around in the dark wondering what the fuck all the characters are talking about despite paying attention. UBW with the context of Zero is a solid story with some of it's major twists revealed in advance, but whose core themes stand on their own in a satisfying way. UBW with zero context is a convoluted confusing mess.";False;False;;;;1610423096;;False;{};giypjpa;False;t3_kve14g;False;False;t1_giyi7zz;/r/anime/comments/kve14g/whats_the_best_anime_youve_ever_watched_related/giypjpa/;1610486102;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;"Well, of the 3 Maeda shows I've seen (this + Angel Beats + Charlotte), it was indeed the most ""heartbreaking"". So, I think he was correct in making THAT claim.";False;False;;;;1610423147;;False;{};giypn41;False;t3_kvegzd;False;True;t1_giy6tk9;/r/anime/comments/kvegzd/without_spoiling_anything_is_the_day_i_became_a/giypn41/;1610486179;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Damn_U_A11;;;[];;;;text;t2_4h4jby3o;False;False;[];;You can do this , watch one piece like very slowly 2 , 3 episodes per day and u can still watch the shorter ones , so tht u won't get bored.;False;False;;;;1610423156;;False;{};giypnqe;False;t3_kvjawg;False;False;t3_kvjawg;/r/anime/comments/kvjawg/when_or_if_i_should_try_one_piece/giypnqe/;1610486200;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Reshyk2;;;[];;;;text;t2_62w63nwq;False;False;[];;"There’s only one rating that’s ever important and that’s your own. I don’t think that mocking someone for their taste is particularly useful. After all if they’re enjoying themselves and I’m not, doesn’t that make me the fool? - -Ratings are useful in order to put your finger on the pulse of what’s popular, but don’t use it as some sort of objective metric of quality. Popularity doesn’t necessarily translate over into mastery over the medium or thought-provoking writing. The two can be correlated, but the only thing a rating will really tell you with any level of consistency is popularity.";False;False;;;;1610423184;;False;{};giyppmg;False;t3_kvimj5;False;False;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/giyppmg/;1610486245;26;True;False;anime;t5_2qh22;;0;[]; -[];;;PopularExtreme2406;;;[];;;;text;t2_4u8hhju8;False;False;[];;Bruh most of them only have 1 episode;False;False;;;;1610423229;;False;{};giypsq9;False;t3_kvjfp0;False;True;t3_kvjfp0;/r/anime/comments/kvjfp0/all_the_anime_this_year_so_far_has_been_great/giypsq9/;1610486308;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Ms-What-If, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610423304;moderator;False;{};giypxtc;False;t3_kvjn32;False;True;t3_kvjn32;/r/anime/comments/kvjn32/alright_heres_the_deal_i_need_anime_names/giypxtc/;1610486401;-1;False;False;anime;t5_2qh22;;0;[]; -[];;;xCASTERx;;;[];;;;text;t2_2xmu5ifi;False;False;[];;As someone who’s watched every episode I highly recommend you do. You don’t have to watch every single episode before you watch another anime, just pace yourself. It’s not a race, you’ll get caught up eventually. But think about it this way, you’ll always have something to watch. 😃;False;False;;;;1610423324;;False;{};giypz6k;False;t3_kvjawg;False;True;t3_kvjawg;/r/anime/comments/kvjawg/when_or_if_i_should_try_one_piece/giypz6k/;1610486425;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;"One Piece is great, you'll have to decide for yourself though whether it's worth your time (I found it worth my time, it's one of my four 10's on MAL.) Generally I copy and paste some variation of [my advice from here](https://www.reddit.com/r/anime/comments/jaranp/need_help_with_new_animes/g8raw3c?utm_medium=) every time the subject comes up: - ->[One Piece](https://myanimelist.net/anime/21/One_Piece) is fantastic, that was my follow-up show after Hunter X Hunter (2011) and IMO that's about the easiest time to get into it. If you decide to check it out, keep in mind that episodes 9-18 (the Syrup Village arc) are kind of bad, most fans usually get ""hooked"" around episodes 19-30 (the Baratie arc), episodes 31-44 (the Arlong Park arc or alternatively [you could watch this great OVA in place of those episodes](https://myanimelist.net/anime/15323/One_Piece__Episode_of_Nami_-_Koukaishi_no_Namida_to_Nakama_no_Kizuna) and that might be better), or around episodes 78-91 (the Drum Island arc.) If you haven't found anything to love after these points it's probably ok to drop it, if you have found stuff you're liking then it gets a lot better from there (and it *really* gets good around episode 196 for the G8 arc.) - -I watched until and have paused at episode 540, which is an excellent place to pause at and makes the length of that anime comparable to something like Naruto. But basically, if/whenever you decide to try One Piece, give it somewhere between 30-90 episodes, if you find it *good* around those points then know it gets fantastic (like 4 times better) around the 200th episode, but you'll have to make an educated guess on if that'll be worth it for you.";False;False;;;;1610423353;;False;{};giyq15k;False;t3_kvjawg;False;True;t3_kvjawg;/r/anime/comments/kvjawg/when_or_if_i_should_try_one_piece/giyq15k/;1610486464;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dasher1802;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Mattawho/;light;text;t2_12ki00;False;False;[];;No one has mentioned [Namae no nai Kaibutsu](https://animethemes.moe/video/PsychoPass-ED1.webm) yet so I guess I will. I’m hoping this one goes far in bracket. I also have a soft spot for Naruto’s 1st ED [Wind](https://animethemes.moe/video/Naruto-ED1.webm).;False;False;;;;1610423356;;False;{};giyq1e3;False;t3_kvegi9;False;False;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giyq1e3/;1610486468;8;True;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;fairy tail is good and the character animation doesn't look much like anime characters worth trying (◠‿◕);False;False;;;;1610423502;;False;{};giyqavl;False;t3_kvjn32;False;True;t3_kvjn32;/r/anime/comments/kvjn32/alright_heres_the_deal_i_need_anime_names/giyqavl/;1610486653;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dasher1802;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Mattawho/;light;text;t2_12ki00;False;False;[];;Yeah this is the most stacked group for sure and it makes me sad cos so many will be knocked out before the top 8.;False;False;;;;1610423515;;False;{};giyqbqs;False;t3_kvegi9;False;True;t1_gixun9u;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giyqbqs/;1610486670;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Addilloo;;;[];;;;text;t2_xaab3;False;False;[];;This is my favourite anime of all time but idk if I'm emotionally ready for a rewatch. I hope rewatchers have a fun time though and first timers see the greatness this show truly is.;False;False;;;;1610423610;;False;{};giyqi62;False;t3_kvfuei;False;False;t3_kvfuei;/r/anime/comments/kvfuei/nagi_no_asukaraa_lull_in_the_sea_rewatch_schedule/giyqi62/;1610486811;4;True;False;anime;t5_2qh22;;0;[]; -[];;;PixelPenguins;;MAL;[];;http://myanimelist.net/profile/PixelPenguin;dark;text;t2_6pp4e;False;False;[];;[Her Blue Sky](https://www.facebook.com/Shadco123/videos/oi-bass-audition-anime-her-blue-sky/400345837778098/)?;False;False;;;;1610423654;;False;{};giyql6c;False;t3_kvi0z1;False;True;t3_kvi0z1;/r/anime/comments/kvi0z1/movie_i_cant_find/giyql6c/;1610486872;1;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;Spike (Spiegel) is the first one that comes to mind;False;False;;;;1610423695;;False;{};giyqnvz;False;t3_kvjn32;False;False;t3_kvjn32;/r/anime/comments/kvjn32/alright_heres_the_deal_i_need_anime_names/giyqnvz/;1610486931;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610423764;;False;{};giyqsfe;False;t3_kvjawg;False;True;t3_kvjawg;/r/anime/comments/kvjawg/when_or_if_i_should_try_one_piece/giyqsfe/;1610487031;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610423828;moderator;False;{};giyqwow;False;t3_kvjseg;False;True;t3_kvjseg;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giyqwow/;1610487115;2;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi mickysaif, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610423828;moderator;False;{};giyqwq0;False;t3_kvjseg;False;True;t3_kvjseg;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giyqwq0/;1610487116;2;False;False;anime;t5_2qh22;;0;[]; -[];;;_vogonpoetry_;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/ThisWasATriumph;dark;text;t2_akt6d;False;False;[];;Great Teacher Onizuka;False;False;;;;1610423929;;False;{};giyr3kc;False;t3_kvjrua;False;False;t3_kvjrua;/r/anime/comments/kvjrua/anime_about_teaching_like_assassination_classroom/giyr3kc/;1610487255;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"That's why they have ""official mini versions"", like Oregairu, Konosuba and TenSura";False;False;;;;1610423982;;False;{};giyr774;False;t3_kvjfp0;False;False;t1_giyotcp;/r/anime/comments/kvjfp0/all_the_anime_this_year_so_far_has_been_great/giyr774/;1610487326;5;True;False;anime;t5_2qh22;;0;[]; -[];;;A_kirE;;;[];;;;text;t2_8mklskhy;False;False;[];;ascendance of a bookworm;False;False;;;;1610424005;;False;{};giyr8rr;False;t3_kvjseg;False;False;t3_kvjseg;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giyr8rr/;1610487357;4;True;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;sure thanks;False;False;;;;1610424035;;False;{};giyrasx;True;t3_kvjseg;False;True;t1_giyr8rr;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giyrasx/;1610487397;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tylerdurden1027;;;[];;;;text;t2_iiha5;False;False;[];;What is your preferred streaming platform to watch? I’m clearing out some heavy hitter titles right now on Hulu and Netflix and am kind of a rookie on where the best place to watch it. I’d prefer not to hop around services.;False;False;;;;1610424069;;False;{};giyrd11;True;t3_kvjawg;False;True;t1_giyq15k;/r/anime/comments/kvjawg/when_or_if_i_should_try_one_piece/giyrd11/;1610487442;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;18, can confirm my friends are annoying about One Piece;False;False;;;;1610424071;;False;{};giyrd71;False;t3_kvjttc;False;True;t3_kvjttc;/r/anime/comments/kvjttc/how_old_do_you_think_those_anime_gatekeeping/giyrd71/;1610487445;4;True;False;anime;t5_2qh22;;0;[]; -[];;;VandaGrey;;;[];;;;text;t2_lzm4a;False;False;[];;"> shit on shows other people enjoy. - -you mean have a different opinion about a show than yourself? People can have different opinions you know...stop gatekeeping opinions. /s";False;False;;;;1610424071;;False;{};giyrd80;False;t3_kvjttc;False;True;t3_kvjttc;/r/anime/comments/kvjttc/how_old_do_you_think_those_anime_gatekeeping/giyrd80/;1610487445;3;True;False;anime;t5_2qh22;;0;[]; -[];;;A_kirE;;;[];;;;text;t2_8mklskhy;False;False;[];;no problem;False;False;;;;1610424109;;False;{};giyrfrx;False;t3_kvjseg;False;True;t1_giyrasx;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giyrfrx/;1610487497;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610424134;;False;{};giyrhcz;False;t3_kvjseg;False;True;t3_kvjseg;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giyrhcz/;1610487527;1;True;False;anime;t5_2qh22;;0;[]; -[];;;playdoughepic12;;;[];;;;text;t2_7okquoqc;False;False;[];;Why does it matter though;False;False;;;;1610424139;;False;{};giyrhnj;False;t3_kvjttc;False;True;t3_kvjttc;/r/anime/comments/kvjttc/how_old_do_you_think_those_anime_gatekeeping/giyrhnj/;1610487533;1;True;False;anime;t5_2qh22;;0;[]; -[];;;firefalcon07;;MAL;[];;http://myanimelist.net/animelist/dsjackso;dark;text;t2_iq3le;False;False;[];;You haven't met many teens lately have you? They would absolutely spend their time shitting on shows that someone else likes. Respect is not a highly taught value these days.;False;False;;;;1610424147;;False;{};giyri6n;False;t3_kvjttc;False;True;t3_kvjttc;/r/anime/comments/kvjttc/how_old_do_you_think_those_anime_gatekeeping/giyri6n/;1610487541;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Glitter_puke;;MAL;[];;https://myanimelist.net/animelist/Gpuke;dark;text;t2_7tnlb;False;False;[];;"Good soundtrack, terrible mixing making it take backseat to voice/sfx that are way too loud relative to it. - -Show's okay. Tropey and the slave stuff is weird but I guess it's ok.";False;False;;;;1610424243;;False;{};giyrok1;False;t3_kvjr0g;False;True;t3_kvjr0g;/r/anime/comments/kvjr0g/what_are_your_guys_thoughts_on_rising_of_the/giyrok1/;1610487672;3;False;False;anime;t5_2qh22;;0;[]; -[];;;BasicallyBasix;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/HeyImBasix;light;text;t2_u0q3d1w;False;False;[];;Agree, I liked that the MC was shit on in the beginning tho. In most isekai the MC comes to the world and instantly becomes one of the most famous/important people in the world. Ofc this happens with shield hero too, but I liked that he was seen as evil and was outcast at the beginning.;False;False;;;;1610424313;;False;{};giyrte4;False;t3_kvjr0g;False;True;t3_kvjr0g;/r/anime/comments/kvjr0g/what_are_your_guys_thoughts_on_rising_of_the/giyrte4/;1610487777;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ur_X;;;[];;;;text;t2_wacvw;False;True;[];;Recommend me one without knowing my taste?;False;False;;;;1610424352;;False;{};giyrvzj;False;t3_kvjfp0;False;True;t3_kvjfp0;/r/anime/comments/kvjfp0/all_the_anime_this_year_so_far_has_been_great/giyrvzj/;1610487827;3;True;False;anime;t5_2qh22;;0;[]; -[];;;THE_CUNT_SHREDDERR;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omanko_Hakaisha;light;text;t2_12mq9k;False;False;[];;"Could be any age. I think most people care less about this kind of stuff as they get older but a few become more extreme. - -I can easily see young people shitting on shows and differing opinions. There would not many senile level old people watching anime and ranting about it.";False;False;;;;1610424382;;False;{};giyrxzp;False;t3_kvjttc;False;True;t3_kvjttc;/r/anime/comments/kvjttc/how_old_do_you_think_those_anime_gatekeeping/giyrxzp/;1610487865;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;Sounds cool, I’ll check it out later this week;False;False;;;;1610424383;;False;{};giyry1m;False;t3_kvinqi;False;True;t1_giyl8t5;/r/anime/comments/kvinqi/random_anime_series_i_liked/giyry1m/;1610487866;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;"I'll respond in-depth to that in a sec, generally VRV is recommended as the ""best"" paid anime streaming service (comes with both Crunchyroll premium and HiDive for $10/month) although if you choose to watch the sub for that you almost may as well download and watch the One Pace cuts which are sub-only and easy to find (albeit unofficial.) Funimation is probably the main service for One Piece although the company cheaped out on their media player online so that part of it kinda sucks. EDIT: also Netflix doesn't have nearly as many episodes of One Piece as it ought to have, it stops at a pretty annoying and bland place IMO. Can't fully recommend that service for One Piece.";False;False;;;;1610424407;;1610424681.0;{};giyrzm1;False;t3_kvjawg;False;True;t1_giyrd11;/r/anime/comments/kvjawg/when_or_if_i_should_try_one_piece/giyrzm1/;1610487897;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Suhkein;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Neichus;light;text;t2_qahwgd;False;False;[];;"> But no the reason I dislike it is because of it's time reversal. The main thing causing conflict in the 2nd half of After Story is Nagisa's death and Tomoya's ensuing character arc is about getting over it and reconnecting with his family. I think the 2nd half of AF was brilliant. It showed an emotionally powerful story that was surprisingly realistic by anime standards. But then the anime decided to undo that character arc by killing off Ushio then reversing time. - -You've basically summed up what I find frustrating about AS. It hits a few ""high notes"" so well it's almost unbelievable given what's come before. The discussions about Tomoya's father, about how Sanae had been holding up this whole time, and the steady maturation of a boy who had just never gotten that chip off his shoulder were genuine themes that had real heart in them... and then just thrown out. As you said, one of my personal least favorite endings in anime.";False;False;;;;1610424419;;False;{};giys0dn;False;t3_kvjq5a;False;True;t3_kvjq5a;/r/anime/comments/kvjq5a/does_anyone_find_the_clannad_ending_really/giys0dn/;1610487912;1;True;False;anime;t5_2qh22;;0;[]; -[];;;victorsantan;;;[];;;;text;t2_39in4zks;False;False;[];;Death Note;False;False;;;;1610424441;;False;{};giys1w3;False;t3_kvjseg;False;True;t3_kvjseg;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giys1w3/;1610487940;1;True;False;anime;t5_2qh22;;0;[]; -[];;;R3d_it;;;[];;;;text;t2_7ttqqfq4;False;False;[];;Try FLCL too, 6 eps only. You don't have to understand it, u just have to enjoy it.;False;False;;;;1610424467;;False;{};giys3l0;True;t3_kvinqi;False;True;t1_giyry1m;/r/anime/comments/kvinqi/random_anime_series_i_liked/giys3l0/;1610487971;2;True;False;anime;t5_2qh22;;0;[]; -[];;;A_SPLIT_IN_THE_ANUS;;;[];;;;text;t2_8w2tm9ox;False;False;[];;"Rankings do not matter at all! Honestly, some of my best experiences with anime was when I first discovered it and had no idea about any of the rankings and just watched whatever I wanted. - -After all, you're watching anime for enjoyment (I assume), so watch whatever you think you'll like.";False;False;;;;1610424474;;False;{};giys43d;False;t3_kvimj5;False;False;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/giys43d/;1610487980;9;True;False;anime;t5_2qh22;;0;[]; -[];;;firefalcon07;;MAL;[];;http://myanimelist.net/animelist/dsjackso;dark;text;t2_iq3le;False;False;[];;"Bofuri - -Madoka Magica - -Symphogear - -Sword Art Online Alternative: GGO - -A Place Further than the Universe - -Yuru Camp - -Black Rock Shooter - -Blend S - -I could go on but this should hold you over for a while.";False;False;;;;1610424512;;False;{};giys6mn;False;t3_kvjseg;False;False;t3_kvjseg;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giys6mn/;1610488027;5;True;False;anime;t5_2qh22;;0;[]; -[];;;EddyBird100;;;[];;;;text;t2_6y9ti8ot;False;False;[];;They give a good idea of what the community thinks of anime. Represent’s the community’s taste in anime as a whole but it shouldn’t stop you from liking what you like and forming your own opinions.;False;False;;;;1610424532;;False;{};giys7z1;False;t3_kvimj5;False;False;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/giys7z1/;1610488051;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;seriously?;False;False;;;;1610424546;;False;{};giys8wr;True;t3_kvjseg;False;True;t1_giys1w3;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giys8wr/;1610488068;1;True;False;anime;t5_2qh22;;0;[]; -[];;;25_Oranges;;;[];;;;text;t2_6k8wiuc1;False;False;[];;It's mine too! I'm glad somebody else shares my love for NagiAsu!! Feel free to drop by the threads sometime if you feel up for it!;False;False;;;;1610424553;;False;{};giys9di;True;t3_kvfuei;False;False;t1_giyqi62;/r/anime/comments/kvfuei/nagi_no_asukaraa_lull_in_the_sea_rewatch_schedule/giys9di/;1610488077;4;True;False;anime;t5_2qh22;;0;[]; -[];;;victorsantan;;;[];;;;text;t2_39in4zks;False;False;[];;yes me serious;False;False;;;;1610424580;;False;{};giysb5f;False;t3_kvjseg;False;True;t1_giys8wr;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giysb5f/;1610488109;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;that's a lot XD thank you;False;False;;;;1610424589;;False;{};giysbra;True;t3_kvjseg;False;True;t1_giys6mn;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giysbra/;1610488124;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Henry_manime;;;[];;;;text;t2_4i97wutl;False;False;[];;My next life as a villianess is a good show.;False;False;;;;1610424589;;False;{};giysbro;False;t3_kvjseg;False;False;t3_kvjseg;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giysbro/;1610488124;5;True;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;thanks I watched it :-);False;False;;;;1610424619;;False;{};giysdmq;True;t3_kvjseg;False;True;t1_giysb5f;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giysdmq/;1610488159;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Addilloo;;;[];;;;text;t2_xaab3;False;False;[];;I'll read some of the responses but I'm not the best at discussion lol. I usually skip analyzing anime and rate them based on my enjoyment.;False;False;;;;1610424629;;False;{};giyse9h;False;t3_kvfuei;False;True;t1_giys9di;/r/anime/comments/kvfuei/nagi_no_asukaraa_lull_in_the_sea_rewatch_schedule/giyse9h/;1610488172;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;sure;False;False;;;;1610424634;;False;{};giysemh;True;t3_kvjseg;False;True;t1_giysbro;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giysemh/;1610488177;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rattpack18;;;[];;;;text;t2_2uahjdtr;False;False;[];;People are too sensitive imo. People get bootie tickled for saying a show they like like isn’t enjoyable.;False;False;;;;1610424664;;False;{};giysgi2;False;t3_kvjttc;False;True;t3_kvjttc;/r/anime/comments/kvjttc/how_old_do_you_think_those_anime_gatekeeping/giysgi2/;1610488214;0;True;False;anime;t5_2qh22;;0;[]; -[];;;THE_CUNT_SHREDDERR;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omanko_Hakaisha;light;text;t2_12mq9k;False;False;[];;"Erin - -Ghost in the Shell - -Seirei no Morbito - -Psycho pass - -Kino no tabi (maybe non-binary gender) - -Violet Evergarden - -Nana - -Rose of Versailles - -Chihayafuru - -Lain - -Revolutionary Girl Utena";False;False;;;;1610424731;;1610424935.0;{};giyskuf;False;t3_kvjseg;False;True;t3_kvjseg;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giyskuf/;1610488296;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ripnicyv;;;[];;;;text;t2_2l8s5g1x;False;False;[];;HXH, I’d love to see another season of beebop aswell;False;False;;;;1610424762;;False;{};giysmyl;False;t3_kvk1m9;False;True;t3_kvk1m9;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giysmyl/;1610488335;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Roketsu86;;;[];;;;text;t2_hwze9;False;False;[];;"Spice and Wolf - -Haruhi Suzumiya";False;False;;;;1610424773;;False;{};giysnp8;False;t3_kvk1m9;False;True;t3_kvk1m9;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giysnp8/;1610488349;2;True;False;anime;t5_2qh22;;0;[]; -[];;;danyelion;;;[];;;;text;t2_83ujopma;False;False;[];;Hensuki.;False;False;;;;1610424849;;False;{};giysst1;False;t3_kvk1m9;False;True;t3_kvk1m9;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giysst1/;1610488448;2;True;False;anime;t5_2qh22;;0;[]; -[];;;YoungRoyalty55;;;[];;;;text;t2_22tgl1g2;False;False;[];;Your right, I like how Naofumi gets treated like shit in the beginning. It adds a new change we don’t really see that much.;False;False;;;;1610424859;;False;{};giystih;True;t3_kvjr0g;False;False;t1_giyrte4;/r/anime/comments/kvjr0g/what_are_your_guys_thoughts_on_rising_of_the/giystih/;1610488460;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hypodermicheronbeak;;;[];;;;text;t2_751lzfal;False;False;[];;Rurouni Kenshin at least catch it up to the manga even if the manga will never be finished.;False;False;;;;1610424865;;False;{};giystuo;False;t3_kvk1m9;False;True;t3_kvk1m9;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giystuo/;1610488467;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheCandyMan36;;;[];;;;text;t2_22i6fs;False;False;[];;Land of The Lustrous, I'm really curious what some of the later stuff would look like in the 3D style of the anime;False;False;;;;1610424891;;False;{};giysvny;False;t3_kvk1m9;False;False;t3_kvk1m9;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giysvny/;1610488502;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Hypodermicheronbeak;;;[];;;;text;t2_751lzfal;False;False;[];;Absolutely I want to see more of haruhi suzumiya;False;False;;;;1610424903;;False;{};giyswg8;False;t3_kvk1m9;False;True;t1_giysnp8;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giyswg8/;1610488517;1;True;False;anime;t5_2qh22;;0;[]; -[];;;some314;;;[];;;;text;t2_jxdjh;False;False;[];;bless Japan's love for abbreviating things;False;False;;;;1610424918;;False;{};giysxf0;False;t3_kvjfp0;False;True;t1_giyr774;/r/anime/comments/kvjfp0/all_the_anime_this_year_so_far_has_been_great/giysxf0/;1610488537;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610424928;moderator;False;{};giysy41;False;t3_kvk3wz;False;True;t3_kvk3wz;/r/anime/comments/kvk3wz/can_anyone_help_explain_kino_no_tabi_2017_to_me/giysy41/;1610488550;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi SuperAlloyBerserker, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610424942;moderator;False;{};giysz15;False;t3_kvk41d;False;True;t3_kvk41d;/r/anime/comments/kvk41d/if_someone_can_only_watch_one_anime_and_never/giysz15/;1610488567;1;False;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;thanks never thought there are these many lol;False;False;;;;1610424960;;False;{};giyt09b;True;t3_kvjseg;False;True;t1_giyskuf;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giyt09b/;1610488589;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YoungRoyalty55;;;[];;;;text;t2_22tgl1g2;False;False;[];;Yeah, the slave stuff is really weird. Almost like a shitty version of Pokémon with human-like characteristics.;False;False;;;;1610424967;;False;{};giyt0q2;True;t3_kvjr0g;False;True;t1_giyrok1;/r/anime/comments/kvjr0g/what_are_your_guys_thoughts_on_rising_of_the/giyt0q2/;1610488597;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;False;[];;"I think you've missed the point a bit. Clannad's ending very much supports and reinforces Tomoya's character arc of overcoming tragedy. In fact, Tomoya is only able to earn his happy ending *because* he is able to prove that he has overcome it. - -Think about the story for a second. At first, Tomoya is so disillusioned with his situation that he becomes desperate for change, while Nagisa is so afraid of losing what little she has that she finds that very change terrifying. After a bit, their positions swap. Nagisa grows a lot as a person and desires a relationship with Tomoya, so she struggles to achieve change, while Tomoya comes to love his position in life and his role with Nagisa so much that he becomes afraid of change. Then Nagisa dies, and Tomoya becomes stagnant for 5 years. He says he wishes that he never met Nagisa, and that wish is not granted because it isn't truly what is in his heart (just like how Misae's wish for a soda isn't granted because she doesn't really care about it). Then Tomoya undergoes his arc, reconciles with his daughter and father, and then Ushio dies, putting him back in the same spot where he was when Nagisa died. But this time, he proves that he has learned his lesson. In the same situation, he doesn't wish to have never met Nagisa and avoid the pain, he runs to hug her and says how much he loves her and how he would regret living a life in which they never met, despite all the horrible tragedy. He decides that he can live with change even if it's horrible, and this time he truly overcomes tragedy. Thus he is rewarded with a happy ending. - -And when you think about it, Tomoya puts himself at risk again with this ending, doesn't he? It's a happy ending, but Clannad tells us many times that life is not fair. Tomoya could go through both tragedies again, but he decides that it's worth it if it means he can be with his family. It is also made obvious that Tomoya remembers everything he's experienced in the passed timeline, so his growth is not written over or undercut. In this way, Clannad's ending reinforces Tomoya's character arc, and all of the series central themes (of which I've only scratched the surface of here).";False;False;;;;1610425022;;False;{};giyt4de;False;t3_kvjq5a;False;False;t3_kvjq5a;/r/anime/comments/kvjq5a/does_anyone_find_the_clannad_ending_really/giyt4de/;1610488677;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Lizardking_10;;;[];;;;text;t2_7qfz1pss;False;False;[];;I mean HxH has be one right?;False;False;;;;1610425029;;False;{};giyt4us;False;t3_kvk1m9;False;False;t3_kvk1m9;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giyt4us/;1610488688;5;True;False;anime;t5_2qh22;;0;[]; -[];;;BTGz;;;[];;;;text;t2_bctmn;False;False;[];;Monster Musume: Everyday Life with Monster Girls and honestly I would also like to see the last 3 volumes of Highschool of the Dead adapted, cliffhanger or original ending, I don't care.;False;False;;;;1610425034;;False;{};giyt56k;False;t3_kvk1m9;False;True;t3_kvk1m9;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giyt56k/;1610488695;2;True;False;anime;t5_2qh22;;0;[]; -[];;;VandaGrey;;;[];;;;text;t2_lzm4a;False;False;[];;filo is my queen;False;False;;;;1610425064;;False;{};giyt75d;False;t3_kvjr0g;False;True;t3_kvjr0g;/r/anime/comments/kvjr0g/what_are_your_guys_thoughts_on_rising_of_the/giyt75d/;1610488739;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;If Filo stayed a chicken instead of turning into a loli I would have given it a 6 instead of a 5;False;False;;;;1610425087;;False;{};giyt8o4;False;t3_kvjr0g;False;False;t3_kvjr0g;/r/anime/comments/kvjr0g/what_are_your_guys_thoughts_on_rising_of_the/giyt8o4/;1610488771;9;True;False;anime;t5_2qh22;;0;[]; -[];;;THE_CUNT_SHREDDERR;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omanko_Hakaisha;light;text;t2_12mq9k;False;False;[];;Heaps out there!;False;False;;;;1610425113;;False;{};giytaep;False;t3_kvjseg;False;True;t1_giyt09b;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giytaep/;1610488805;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;One piece;False;False;;;;1610425129;;False;{};giytbfo;False;t3_kvk41d;False;False;t3_kvk41d;/r/anime/comments/kvk41d/if_someone_can_only_watch_one_anime_and_never/giytbfo/;1610488825;6;True;False;anime;t5_2qh22;;0;[]; -[];;;THE_CUNT_SHREDDERR;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omanko_Hakaisha;light;text;t2_12mq9k;False;False;[];;Yeah, not bad and has a lot of episodes.;False;False;;;;1610425166;;False;{};giytduu;False;t3_kvk41d;False;True;t1_giytbfo;/r/anime/comments/kvk41d/if_someone_can_only_watch_one_anime_and_never/giytduu/;1610488870;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;False;[];;No one's opinion matters but your own. Aggregate rankings don't mean a damn thing.;False;False;;;;1610425184;;False;{};giytf05;False;t3_kvimj5;False;False;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/giytf05/;1610488892;13;True;False;anime;t5_2qh22;;0;[]; -[];;;adrianraf;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Alord;light;text;t2_k3qf6;False;False;[];;I think it story-wise started off really strong, looking like its going to be a good anime but fell off and declining in every episodes.;False;False;;;;1610425246;;False;{};giytizg;False;t3_kvjr0g;False;True;t3_kvjr0g;/r/anime/comments/kvjr0g/what_are_your_guys_thoughts_on_rising_of_the/giytizg/;1610488975;2;True;False;anime;t5_2qh22;;0;[]; -[];;;THE_CUNT_SHREDDERR;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omanko_Hakaisha;light;text;t2_12mq9k;False;False;[];;Stylistic choice is my bet. Pretty sure they are the one colour in original anime and do not think it is mentioned at all in the books.;False;False;;;;1610425281;;False;{};giytlaz;False;t3_kvk3wz;False;True;t3_kvk3wz;/r/anime/comments/kvk3wz/can_anyone_help_explain_kino_no_tabi_2017_to_me/giytlaz/;1610489018;2;True;False;anime;t5_2qh22;;0;[]; -[];;;firefalcon07;;MAL;[];;http://myanimelist.net/animelist/dsjackso;dark;text;t2_iq3le;False;False;[];;"Why would you use Lucy as an example for a male dog? - -Okay here are the ones I came up with pretty quickly. - -Obaro - -Dio - -Genos - -Gungnir - -Don't know if these help or not.";False;False;;;;1610425307;;False;{};giytn13;False;t3_kvjn32;False;True;t3_kvjn32;/r/anime/comments/kvjn32/alright_heres_the_deal_i_need_anime_names/giytn13/;1610489056;1;True;False;anime;t5_2qh22;;0;[]; -[];;;findasafespace;;;[];;;;text;t2_2ay42r1l;False;True;[];;Light;False;False;;;;1610425351;;False;{};giytpsu;False;t3_kvjn32;False;True;t3_kvjn32;/r/anime/comments/kvjn32/alright_heres_the_deal_i_need_anime_names/giytpsu/;1610489112;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ms-What-If;;;[];;;;text;t2_3dcfng0g;False;False;[];;I’ll see if my family likes them. I also included Lucy as just an example of a human name and we were considering the name Lucifer (meaning we would probably call him Luci then, lol) but decided not to;False;False;;;;1610425395;;False;{};giytsm1;True;t3_kvjn32;False;True;t1_giytn13;/r/anime/comments/kvjn32/alright_heres_the_deal_i_need_anime_names/giytsm1/;1610489167;1;True;False;anime;t5_2qh22;;0;[]; -[];;;penguintruth;;;[];;;;text;t2_jxwa7;False;False;[];;The Gokusen;False;False;;;;1610425410;;False;{};giyttm2;False;t3_kvjrua;False;True;t3_kvjrua;/r/anime/comments/kvjrua/anime_about_teaching_like_assassination_classroom/giyttm2/;1610489193;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_lizeyan_;;;[];;;;text;t2_7hut5nkh;False;False;[];;Hunter x hunter, classroom of the elite, noragami, and black buter (the anime is meh but the manga is really good) :');False;False;;;;1610425453;;False;{};giytwes;False;t3_kvk1m9;False;True;t3_kvk1m9;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giytwes/;1610489249;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;"Stories the anime did not adapt: - -* Dissociation - -* Intrigues - -* Surprise - -These are the three *big* stories, while there are smaller ones they also didn't adapt, those could be covered within one episode.";False;False;;;;1610425479;;False;{};giyty3l;False;t3_kvk1m9;False;True;t1_giysnp8;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giyty3l/;1610489279;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BasicallyBasix;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/HeyImBasix;light;text;t2_u0q3d1w;False;False;[];;Assassination Classroom for sure 1000%;False;False;;;;1610425499;;False;{};giytzf1;False;t3_kvk41d;False;True;t3_kvk41d;/r/anime/comments/kvk41d/if_someone_can_only_watch_one_anime_and_never/giytzf1/;1610489306;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;Manga was finished. Hokkaido arc is a random sequel that nobody asked for.;False;False;;;;1610425541;;False;{};giyu224;False;t3_kvk1m9;False;True;t1_giystuo;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giyu224/;1610489356;1;True;False;anime;t5_2qh22;;0;[]; -[];;;THE_CUNT_SHREDDERR;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omanko_Hakaisha;light;text;t2_12mq9k;False;False;[];;People talked about Railgun the same way. There is still hope for those two3;False;False;;;;1610425649;;False;{};giyu8x8;False;t3_kvk1m9;False;True;t1_giysnp8;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giyu8x8/;1610489490;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lizardking_10;;;[];;;;text;t2_7qfz1pss;False;False;[];;Anime just because of the quality of Animation. Plus it doesn’t add stupid fillers like some other Anime.;False;False;;;;1610425705;;False;{};giyucco;False;t3_kvk9yg;False;False;t3_kvk9yg;/r/anime/comments/kvk9yg/demon_slayer_fans_manga_or_anime/giyucco/;1610489555;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610425733;moderator;False;{};giyue4h;False;t3_kvkc6c;False;True;t3_kvkc6c;/r/anime/comments/kvkc6c/levi_neck_handkerchief_thing/giyue4h/;1610489589;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;Berserk 1997;False;False;;;;1610425740;;False;{};giyuejs;False;t3_kvk41d;False;False;t3_kvk41d;/r/anime/comments/kvk41d/if_someone_can_only_watch_one_anime_and_never/giyuejs/;1610489597;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610425790;moderator;False;{};giyuhpa;False;t3_kvkcqk;False;True;t3_kvkcqk;/r/anime/comments/kvkcqk/attack_on_titan_manga/giyuhpa/;1610489661;1;False;False;anime;t5_2qh22;;0;[]; -[];;;THE_CUNT_SHREDDERR;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omanko_Hakaisha;light;text;t2_12mq9k;False;False;[];;"What do you enjoy more — reading manga or watching anime? - -With Demon Slayer, both are good so it comes down to personal preference of the medium.";False;False;;;;1610425808;;False;{};giyuis1;False;t3_kvk9yg;False;False;t3_kvk9yg;/r/anime/comments/kvk9yg/demon_slayer_fans_manga_or_anime/giyuis1/;1610489681;4;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your submission has been removed. - -- Your post looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler tagging posts, make sure you include the name of the show you're spoiling in the title of your post. We can't add it for you after the fact. You can then tag your post as containing spoilers by using the ""spoiler"" button, either when submitting or afterwards. - - If you're submitting a text-based post and need to mark spoilers for multiple series, you should use the same spoiler format as for comments. Use the editor's Markdown mode if you're on new Reddit, and then use the `[Work title](/s ""my favorite character dies"")` format to tag specific parts of your text. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610425825;moderator;False;{};giyujtd;False;t3_kvj362;False;True;t3_kvj362;/r/anime/comments/kvj362/yusukes_demon_transformationyu_yu_hakasho/giyujtd/;1610489699;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;The demon slayer manga is actually quite average. Ufotable have worked their magic and made the anime a lot better... I suggest just waiting for more anime content in future;False;False;;;;1610425841;;False;{};giyukv4;False;t3_kvk9yg;False;True;t3_kvk9yg;/r/anime/comments/kvk9yg/demon_slayer_fans_manga_or_anime/giyukv4/;1610489718;2;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;A neckerchief or an ascot?;False;False;;;;1610425855;;False;{};giyultg;False;t3_kvkc6c;False;True;t3_kvkc6c;/r/anime/comments/kvkc6c/levi_neck_handkerchief_thing/giyultg/;1610489737;2;True;False;anime;t5_2qh22;;0;[]; -[];;;THE_CUNT_SHREDDERR;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omanko_Hakaisha;light;text;t2_12mq9k;False;False;[];;Yes, you can buy physical copies of the manga...;False;False;;;;1610425860;;False;{};giyum56;False;t3_kvkcqk;False;True;t3_kvkcqk;/r/anime/comments/kvkcqk/attack_on_titan_manga/giyum56/;1610489744;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_Pinguino_;;skip7;[];;;dark;text;t2_8rggs9k7;False;False;[];;Mind Game;False;False;;;;1610425867;;False;{};giyumm8;False;t3_kvk41d;False;True;t3_kvk41d;/r/anime/comments/kvk41d/if_someone_can_only_watch_one_anime_and_never/giyumm8/;1610489751;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aresreaper437;;;[];;;;text;t2_4doeeuo2;False;False;[];;yu yu hakusho;False;False;;;;1610425872;;False;{};giyumxu;False;t3_kvk41d;False;True;t3_kvk41d;/r/anime/comments/kvk41d/if_someone_can_only_watch_one_anime_and_never/giyumxu/;1610489758;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Juke127;;;[];;;;text;t2_90o6u0zx;False;False;[];;Yeah I thought so lolol, but wasn’t sure if there were websites that ppl used instead;False;False;;;;1610425897;;False;{};giyuoha;True;t3_kvkcqk;False;True;t1_giyum56;/r/anime/comments/kvkcqk/attack_on_titan_manga/giyuoha/;1610489790;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;A [cravat](https://en.m.wikipedia.org/wiki/Cravat)? Might be that.;False;False;;;;1610425928;;False;{};giyuqi0;False;t3_kvkc6c;False;True;t3_kvkc6c;/r/anime/comments/kvkc6c/levi_neck_handkerchief_thing/giyuqi0/;1610489831;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Juke127;;;[];;;;text;t2_90o6u0zx;False;False;[];;Yeah it seems like it’s an ascot, thanks for the help haha;False;False;;;;1610425968;;False;{};giyut0j;True;t3_kvkc6c;False;True;t1_giyultg;/r/anime/comments/kvkc6c/levi_neck_handkerchief_thing/giyut0j/;1610489878;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;I read the manga on my kindle, they are available through Kindle unlimited, you can actually read everything in the 14-day free trial;False;False;;;;1610425978;;False;{};giyutnk;False;t3_kvkcqk;False;True;t3_kvkcqk;/r/anime/comments/kvkcqk/attack_on_titan_manga/giyutnk/;1610489891;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;False;[];;"I'm not really sure why you would watch Scum's Wish if you didn't want to feel horrible. It's not like a sweet, wholesome romance about characters trying to get together. Hanabi and Mugi's relationship is deeply unhealthy for both of them, as are the affections of the other characters. The show is about what drives them to partake in their unique relationships, why those around them continue to pine for them despite knowing it won't work, and the depths that loneliness can cause people to sink to. Every relationship in this show is unhealthy, and the characters sink deeper and deeper into bad habits throughout the show, and accept things they know are harmful just because they're so deprived of intimacy and emotional stability that it feels like it heals them in the moment. If you're trying to have a feel good romance out of this, you've gone to the wrong show. You're *supposed* to feel bad, it's not a show meant to instill pleasant feelings and you aren't supposed to want Hanabi and Mugi to get together. - -So in other words, if you want to not feel horrible watching a romance anime, I suggest not watching a romance anime that is meant to be depressing and make you feel horrible. Watch something sweet and wholesome like Ore Monogatari or Tsuki ga Kirei.";False;False;;;;1610425999;;False;{};giyuuy6;False;t3_kvht83;False;False;t3_kvht83;/r/anime/comments/kvht83/how_do_i_not_feel_horrible_while_watching_romance/giyuuy6/;1610489913;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Juke127;;;[];;;;text;t2_90o6u0zx;False;False;[];;Yep yep yep, that’s what it is thanks lol;False;False;;;;1610426009;;False;{};giyuvjf;True;t3_kvkc6c;False;True;t1_giyuqi0;/r/anime/comments/kvkc6c/levi_neck_handkerchief_thing/giyuvjf/;1610489923;2;True;False;anime;t5_2qh22;;0;[]; -[];;;phoenixwaller;;;[];;;;text;t2_34autsr9;False;False;[];;"princess jellyfish - -serial experiments lain - -witch hunter robin - -ghost in the shell: stand alone complex - -monthly girls nozaki kun - -tokyo esp - -a certain scientific railgun - -new game! - -amnesia - -ouran high school host club - -ergo proxy - -selector infected/spread wixcross - -Kiss him, not me";False;False;;;;1610426029;;False;{};giyuwrd;False;t3_kvjseg;False;True;t3_kvjseg;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giyuwrd/;1610489946;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Perfect_Clutch;;;[];;;;text;t2_84k36qgq;False;False;[];;Noragami and Classroom of the Elites but I don't think that counts because it's a light novel;False;False;;;;1610426145;;False;{};giyv432;False;t3_kvk1m9;False;True;t3_kvk1m9;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giyv432/;1610490112;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;Check you local library for physical copies, and you can also buy them on basically any book selling site. It is also available digitally on services like comixology, or crunchyroll manga. However, lots of people pirate it, so there's that.;False;False;;;;1610426218;;False;{};giyv8o1;False;t3_kvkcqk;False;True;t3_kvkcqk;/r/anime/comments/kvkcqk/attack_on_titan_manga/giyv8o1/;1610490221;2;True;False;anime;t5_2qh22;;0;[]; -[];;;planningsiti;;;[];;;;text;t2_y3fu5vh;False;False;[];;"Full metal alchemist: brotherhood. - -While its not exactly magic, it can definitely pass as it.";False;False;;;;1610426227;;False;{};giyv98v;False;t3_kve14g;False;False;t3_kve14g;/r/anime/comments/kve14g/whats_the_best_anime_youve_ever_watched_related/giyv98v/;1610490231;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheCandyMan36;;;[];;;;text;t2_22i6fs;False;False;[];;just google read snk;False;False;;;;1610426232;;False;{};giyv9it;False;t3_kvkcqk;False;True;t1_giyuoha;/r/anime/comments/kvkcqk/attack_on_titan_manga/giyv9it/;1610490237;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tylerdurden1027;;;[];;;;text;t2_iiha5;False;False;[];;Thanks. Are both the sub and dub watchable or is the dub voices unbearable?;False;False;;;;1610426255;;False;{};giyvayp;True;t3_kvjawg;False;True;t1_giyrzm1;/r/anime/comments/kvjawg/when_or_if_i_should_try_one_piece/giyvayp/;1610490265;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610426273;moderator;False;{};giyvc1y;False;t3_kvkhpc;False;True;t3_kvkhpc;/r/anime/comments/kvkhpc/whats_the_order_to_watch_the_whole_fate_series/giyvc1y/;1610490287;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi AJDubz21, it seems like you might be looking for a show's watch order! - -On our [watch order wiki](https://www.reddit.com/r/anime/wiki/watch_order) you can find suggested orders for a ton of shows (hopefully including the one you're looking for), as well as information that will help you decide on what to watch for the more complicated series <cough> Gundam <cough>. - -[](#heartbot) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610426274;moderator;False;{};giyvc2q;False;t3_kvkhpc;False;True;t3_kvkhpc;/r/anime/comments/kvkhpc/whats_the_order_to_watch_the_whole_fate_series/giyvc2q/;1610490287;2;False;False;anime;t5_2qh22;;0;[]; -[];;;Bright_Eyes83;;;[];;;;text;t2_435s15rz;False;False;[];;not to me, but if i cared about the crowd i never would have gotten into anime in the first place;False;False;;;;1610426312;;False;{};giyvegn;False;t3_kvimj5;False;True;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/giyvegn/;1610490344;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;"Majo no TabiTabi - -Gakkougurashi! - -Munou na Nana - -Mahou Shoujo Madoka Magica";False;False;;;;1610426314;;False;{};giyvekw;False;t3_kvjseg;False;True;t3_kvjseg;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giyvekw/;1610490347;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;"Fate/Stay Night Unlimited Blade Works - -Fate/Zero - -Fate/Stay Night Heaven's Feel Movies (one still needs to come out) - -Fate/Apocrypha";False;False;;;;1610426338;;False;{};giyvg3p;False;t3_kvkhpc;False;True;t3_kvkhpc;/r/anime/comments/kvkhpc/whats_the_order_to_watch_the_whole_fate_series/giyvg3p/;1610490377;0;True;False;anime;t5_2qh22;;0;[]; -[];;;STiLife656;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/STiLife;light;text;t2_7avunbji;False;False;[];;I still have hope it will come back....some day;False;False;;;;1610426354;;False;{};giyvh5j;False;t3_kvk1m9;False;True;t1_giyt4us;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giyvh5j/;1610490403;2;True;False;anime;t5_2qh22;;0;[]; -[];;;H-Ryougi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DizzyAvocado/animelist;light;text;t2_pr24s;False;False;[];;"UBW (2014) > Heaven's Feel Movies > Zero - -rest is spinoffs";False;False;;;;1610426406;;1610426604.0;{};giyvkfm;False;t3_kvkhpc;False;True;t3_kvkhpc;/r/anime/comments/kvkhpc/whats_the_order_to_watch_the_whole_fate_series/giyvkfm/;1610490473;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Lizardking_10;;;[];;;;text;t2_7qfz1pss;False;False;[];;I’ve been hoping for a long time man.;False;False;;;;1610426426;;False;{};giyvlop;False;t3_kvk1m9;False;True;t1_giyvh5j;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giyvlop/;1610490494;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hypodermicheronbeak;;;[];;;;text;t2_751lzfal;False;False;[];;Good point;False;False;;;;1610426441;;False;{};giyvmla;False;t3_kvk1m9;False;True;t1_giyu224;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giyvmla/;1610490512;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;Watch it whenever you want, don’t force yourself to complete it ASAP. You should enjoy the journey. But you can read the manga for a better paced format.;False;False;;;;1610426485;;False;{};giyvpbx;False;t3_kvjawg;False;True;t3_kvjawg;/r/anime/comments/kvjawg/when_or_if_i_should_try_one_piece/giyvpbx/;1610490563;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610426492;;False;{};giyvprx;False;t3_kvjq5a;False;True;t3_kvjq5a;/r/anime/comments/kvjq5a/does_anyone_find_the_clannad_ending_really/giyvprx/;1610490571;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AJDubz21;;;[];;;;text;t2_4m4p1jv5;False;False;[];;Thank you;False;False;;;;1610426500;;False;{};giyvqae;True;t3_kvkhpc;False;True;t1_giyvg3p;/r/anime/comments/kvkhpc/whats_the_order_to_watch_the_whole_fate_series/giyvqae/;1610490581;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Np;False;False;;;;1610426527;;False;{};giyvrz3;False;t3_kvkhpc;False;True;t1_giyvqae;/r/anime/comments/kvkhpc/whats_the_order_to_watch_the_whole_fate_series/giyvrz3/;1610490612;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AJDubz21;;;[];;;;text;t2_4m4p1jv5;False;False;[];;Oh okay, just looking atthe lists is kinda confusing. Thanks;False;False;;;;1610426544;;False;{};giyvsyy;True;t3_kvkhpc;False;True;t1_giyvkfm;/r/anime/comments/kvkhpc/whats_the_order_to_watch_the_whole_fate_series/giyvsyy/;1610490633;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;"Main story: - -* Fate/stay night (2006) **(DISCLAIMER: primarily follows the Fate Route, but incorporates some elements from the other two. I like it enough to recommend it, so I will. However, I do concede that a better alternative would be to watch/read/play the Fate Route of the VN.)** -* Unlimited Blade Works (2014) -* Heaven's Feel Trilogy - -Prequel: - -* Fate/Zero **(DISCLAIMER: if you just want to watch one great show and then dip from the franchise, it's a perfectly fine standalone (not gonna gatekeep). However, don't start with it if you plan to commit)** - -Spinoffs: - -* Fate/kaleid liner Prisma Illya -* Carnival Phantasm (needs some knowledge from Tsukihime as well, but there's no anime of that 😎) -* Fate/Apocrypha -* Today's Menu for the Emiya Family (jokingly referred to as ""Fate/Cooking"") -* Fate/Extra: Last Encore -* Lord El-Melloi II Case Files: Rail Zeppelin Grace Note (needs Fate/Zero for context) -* Fate/Grand Order **(which is a whole different can of worms with enough in-depth lore and story to surpass the Main Story)** - - First Order - - Moonlight/Lostroom **(DISCLAIMER: should be watched last out of the ones currently listed here)** - - Absolute Demonic Front - Babylonia - - Divine Realm of the Round Table - Camelot - - The Grand Temple of Time - Solomon";False;False;;;;1610426557;;False;{};giyvtr7;False;t3_kvkhpc;False;True;t3_kvkhpc;/r/anime/comments/kvkhpc/whats_the_order_to_watch_the_whole_fate_series/giyvtr7/;1610490648;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MightyGandhi;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/MightyGandhi;dark;text;t2_yfo05;False;False;[];;Bloom into You;False;False;;;;1610426680;;False;{};giyw1gi;False;t3_kvk1m9;False;False;t3_kvk1m9;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giyw1gi/;1610490792;4;True;False;anime;t5_2qh22;;0;[]; -[];;;RaidriC;;;[];;;;text;t2_xk3zy;False;False;[];;Still hoping for that next madoka movie.;False;False;;;;1610426704;;False;{};giyw30a;False;t3_kvk1m9;False;True;t3_kvk1m9;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giyw30a/;1610490820;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;False;[];;You either get a funimation subscription or sail the high seas;False;False;;;;1610426709;;False;{};giyw3ca;False;t3_kvkcdi;False;True;t3_kvkcdi;/r/anime/comments/kvkcdi/where_to_watch_sk8_the_infinity/giyw3ca/;1610490827;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;"I loved the dub and honestly, especially if you plan on watching other dubs, watching the dub for One Piece was especially fun for me because then afterword I sort of had a basis with dubbed voices I'd hear in other things (like I'd hear Chrisopher Sabat do a voice in ""Speed Grapher"" and be like, ""oh, there's Zoro!"") But fwiw, the dub and sub voice actors are pretty similar to each other (save for one voice that comes later on but the decision to deviate was smart, I like the dub performance of that voice better but viewers will have their own preferences) so if you decided to, switching to the other medium later on shouldn't be too difficult should you decide to. If that helps any";False;False;;;;1610426709;;False;{};giyw3cx;False;t3_kvjawg;False;False;t1_giyvayp;/r/anime/comments/kvjawg/when_or_if_i_should_try_one_piece/giyw3cx/;1610490827;2;True;False;anime;t5_2qh22;;0;[]; -[];;;padperascha;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/swappong;light;text;t2_pjclzwj;False;False;[];;Yona of the Dawn;False;False;;;;1610426724;;False;{};giyw49l;False;t3_kvk1m9;False;True;t3_kvk1m9;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giyw49l/;1610490846;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EquivalentGur3072;;;[];;;;text;t2_84bevo8q;False;False;[];;Probably One Piece even though I've never seen it because it's so long. I also love HxH, but 148 episodes on repeat isn't enough imo.;False;False;;;;1610426761;;False;{};giyw6ii;False;t3_kvk41d;False;True;t3_kvk41d;/r/anime/comments/kvk41d/if_someone_can_only_watch_one_anime_and_never/giyw6ii/;1610490892;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Redo-Master;;;[];;;;text;t2_7yfxxyjj;False;False;[];;Definitely AoT..;False;False;;;;1610426765;;False;{};giyw6r1;False;t3_kvk41d;False;True;t3_kvk41d;/r/anime/comments/kvk41d/if_someone_can_only_watch_one_anime_and_never/giyw6r1/;1610490895;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AVrandomusic;;;[];;;;text;t2_747ea0dh;False;False;[];;I always assumed that he wore a napkin in his neck cause he needs to clean the blood from titans off of him, but I guess I was mistakened.;False;False;;;;1610426773;;False;{};giyw76r;False;t3_kvkc6c;False;True;t3_kvkc6c;/r/anime/comments/kvkc6c/levi_neck_handkerchief_thing/giyw76r/;1610490903;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AJDubz21;;;[];;;;text;t2_4m4p1jv5;False;False;[];;Damn, is the spinoff part in any particular order? Or is it just watch in whatever order. Thank you;False;False;;;;1610426827;;False;{};giywakm;True;t3_kvkhpc;False;True;t1_giyvtr7;/r/anime/comments/kvkhpc/whats_the_order_to_watch_the_whole_fate_series/giywakm/;1610490970;0;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Valk;;;[];;;;text;t2_36l47pm7;False;False;[];;What about fate/stay night? I'd watch it before unlimited blade works;False;False;;;;1610426852;;False;{};giywc45;False;t3_kvkhpc;False;True;t1_giyvg3p;/r/anime/comments/kvkhpc/whats_the_order_to_watch_the_whole_fate_series/giywc45/;1610490998;2;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;Kimino Shiranai Monogatari is still my favorite ED. Not only is it a great song, but the lyrics in the context of the show fit perfectly. The outro after the stargazing scene in Bakemonogatari when the song start playing is one of my favorite scenes in anime because of how well it matched up with the scene;False;False;;;;1610426879;;False;{};giywdok;False;t3_kvklz5;False;True;t3_kvklz5;/r/anime/comments/kvklz5/anime_endings_the_long_lost_and_the_forgotten/giywdok/;1610491027;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;False;[];;I think it is entertaining but there isnt anything special about it.;False;False;;;;1610426897;;False;{};giyweu3;False;t3_kvjr0g;False;True;t3_kvjr0g;/r/anime/comments/kvjr0g/what_are_your_guys_thoughts_on_rising_of_the/giyweu3/;1610491049;2;True;False;anime;t5_2qh22;;0;[]; -[];;;masterqif;;;[];;;;text;t2_wm9w2;False;False;[];;Death note;False;False;;;;1610426954;;False;{};giywif7;False;t3_kvkml3;False;True;t3_kvkml3;/r/anime/comments/kvkml3/death_note_or_monster/giywif7/;1610491113;4;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;False;[];;Honestly I was underwhelmed by the whole anime.;False;False;;;;1610426986;;False;{};giywkf7;False;t3_kvjq5a;False;True;t3_kvjq5a;/r/anime/comments/kvjq5a/does_anyone_find_the_clannad_ending_really/giywkf7/;1610491149;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;KariaFelWell;;;[];;;;text;t2_5uc08o6s;False;False;[];;I want to be more like Naruto. Determined to be the very best I can be, to never give up.;False;False;;;;1610427014;;False;{};giywm7e;False;t3_kvkl21;False;False;t3_kvkl21;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/giywm7e/;1610491184;3;True;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;Monster;False;False;;;;1610427022;;False;{};giywmp2;False;t3_kvkml3;False;False;t3_kvkml3;/r/anime/comments/kvkml3/death_note_or_monster/giywmp2/;1610491192;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;Monster, but Death Note is good too;False;False;;;;1610427026;;False;{};giywmyi;False;t3_kvkml3;False;True;t3_kvkml3;/r/anime/comments/kvkml3/death_note_or_monster/giywmyi/;1610491198;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;you can watch the spinoffs anyway you want. They aren't connected;False;False;;;;1610427071;;False;{};giywpnv;False;t3_kvkhpc;False;True;t1_giywakm;/r/anime/comments/kvkhpc/whats_the_order_to_watch_the_whole_fate_series/giywpnv/;1610491249;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;Monster completely blows Death Note out of the park.;False;False;;;;1610427089;;False;{};giywqqe;False;t3_kvkml3;False;False;t3_kvkml3;/r/anime/comments/kvkml3/death_note_or_monster/giywqqe/;1610491269;7;True;False;anime;t5_2qh22;;0;[]; -[];;;poeghostz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Poeghostz;light;text;t2_hp6jo;False;False;[];;"Used to also skip EDs to get to next episode faster. But then at some point I properly realized they were a thing and I was basically missing out on an extra OP per show (I never skip the OP on anything btw). Now I love listening to them after an episode. - -Favorite is probably bunny girl senpai ED (full version) which is vastly superior to the OP imo; despite most people remembering the OP more.";False;False;;;;1610427112;;False;{};giyws6j;False;t3_kvklz5;False;True;t3_kvklz5;/r/anime/comments/kvklz5/anime_endings_the_long_lost_and_the_forgotten/giyws6j/;1610491297;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;"Hinamatsuri - -Grimgar - -Chilvalry Of A Failed Knight - -Tanya The Evil - -KonoSuba - -Amai Brilliant Park - -Magi - -No Game No Life - -Shimoneta - -Monster Monsume - -High School Of The Dead with an anime original ending. I know the mangaka died though so I'm not too upset with them dropping the series";False;False;;;;1610427126;;1610428262.0;{};giywt18;False;t3_kvk1m9;False;True;t3_kvk1m9;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giywt18/;1610491310;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610427132;;False;{};giywtdr;False;t3_kvkml3;False;True;t3_kvkml3;/r/anime/comments/kvkml3/death_note_or_monster/giywtdr/;1610491317;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dreamse11er;;;[];;;;text;t2_7pw9xkkh;False;False;[];;Awesome! What actions have you done and what goals are you aiming for? Big or small.;False;False;;;;1610427133;;False;{};giywtg1;True;t3_kvkl21;False;False;t1_giywm7e;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/giywtg1/;1610491318;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NocandNC;;;[];;;;text;t2_78tcits;False;False;[];;Too many lolis for my taste. If the plot was really good I could have stuck it out, but it’s just ok. Art and music was nice but again, not enough to keep me.;False;False;;;;1610427160;;False;{};giywv1z;False;t3_kvjr0g;False;True;t3_kvjr0g;/r/anime/comments/kvjr0g/what_are_your_guys_thoughts_on_rising_of_the/giywv1z/;1610491347;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AJDubz21;;;[];;;;text;t2_4m4p1jv5;False;False;[];;Okay cool. Thank you for the help :);False;False;;;;1610427161;;False;{};giywv4q;True;t3_kvkhpc;False;True;t1_giywpnv;/r/anime/comments/kvkhpc/whats_the_order_to_watch_the_whole_fate_series/giywv4q/;1610491349;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;"I don't know whether they have the rights for the s2 or not ??? - -It has happened before too, but they usually take the rights of a full series only.";False;False;;;;1610427175;;False;{};giyww0c;False;t3_kvkn3d;False;True;t3_kvkn3d;/r/anime/comments/kvkn3d/muse_asia_on_youtube_have_finally_got_the_rights/giyww0c/;1610491364;2;True;False;anime;t5_2qh22;;0;[]; -[];;;THE_CUNT_SHREDDERR;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omanko_Hakaisha;light;text;t2_12mq9k;False;False;[];;Like Shou Tucker, I will pursue my dreams regardless of my family.;False;False;;;;1610427220;;False;{};giywync;False;t3_kvkl21;False;False;t3_kvkl21;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/giywync/;1610491412;13;True;False;anime;t5_2qh22;;0;[]; -[];;;STiLife656;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/STiLife;light;text;t2_7avunbji;False;False;[];;Technically funi is free as long as you can wait an extra week for new eps;False;False;;;;1610427243;;False;{};giywzzw;False;t3_kvkcdi;False;True;t3_kvkcdi;/r/anime/comments/kvkcdi/where_to_watch_sk8_the_infinity/giywzzw/;1610491437;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Takamaru0;;;[];;;;text;t2_6iqy2mhp;False;False;[];;Yes they are streaming s2 on some other websites like bilibili( i think that was the name?) for free right now, and it will appear on YT after s1 ends;False;False;;;;1610427254;;False;{};giyx0kz;True;t3_kvkn3d;False;True;t1_giyww0c;/r/anime/comments/kvkn3d/muse_asia_on_youtube_have_finally_got_the_rights/giyx0kz/;1610491447;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VandaGrey;;;[];;;;text;t2_lzm4a;False;False;[];;airgear...remake and continuation.;False;False;;;;1610427262;;False;{};giyx13r;False;t3_kvk1m9;False;True;t3_kvk1m9;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giyx13r/;1610491456;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bright_Eyes83;;;[];;;;text;t2_435s15rz;False;False;[];;K-On and thank me later;False;False;;;;1610427305;;False;{};giyx3l2;False;t3_kvjseg;False;True;t3_kvjseg;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giyx3l2/;1610491501;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KariaFelWell;;;[];;;;text;t2_5uc08o6s;False;False;[];;"I recently met my fiance and he's been a huge help in trying to get me to be more independent. In about a week or so, I'll be moving out from my sort of abusive mother's home- starting college. In the last month, I got my driver's license, parallel parked on my first try during the test, and turned 21. - -A big goal I'm working toward is to figure out what I actually want to do in life. I bounce between medicine/psychology(mostly people for this one)for both animals and people, art, and writing.";False;False;;;;1610427364;;False;{};giyx76n;False;t3_kvkl21;False;True;t1_giywtg1;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/giyx76n/;1610491565;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;Fruits Basket 2019 is amazing!;False;False;;;;1610427389;;False;{};giyx8q9;False;t3_kvjseg;False;False;t3_kvjseg;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giyx8q9/;1610491606;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bright_Eyes83;;;[];;;;text;t2_435s15rz;False;False;[];;didn't exactly reinvent the wheel but i liked it. there was something about it that kept me watching whereas if a show is too derivative i lose interest. maybe it was Raphtalia, who knows..;False;False;;;;1610427405;;False;{};giyx9n4;False;t3_kvjr0g;False;True;t3_kvjr0g;/r/anime/comments/kvjr0g/what_are_your_guys_thoughts_on_rising_of_the/giyx9n4/;1610491622;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;"Death Note looks chuunibyou in comparison to Monster, but it is not a bad show. - -I liked the pacing of Death Note. It is better directed and an overall better-produced show, but it has an awful ending, and the Psychological part of Death Note was quickly thrown aside for more of a conspiracy esque writing that is something I hate even about Monster too. - -Soo, Overall - -Death Note - Strong 9 - -Monster - Weak 9";False;False;;;;1610427444;;False;{};giyxbyn;False;t3_kvkml3;False;True;t3_kvkml3;/r/anime/comments/kvkml3/death_note_or_monster/giyxbyn/;1610491668;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;"My top 10 eds - -1. Hello! Lady Lynn -2. Mahoutsukai Sally 2 -2. Yes! Precure 5 -3. Sasurai no Taiyou -4. Lady Georgie -5. Ace wo nerae 2 -6. Honey Honey no Suteki na Bouken -7. Mahou no Tenshi Creamy Mami -8. Himitsu no Akko-chan 2 -9. Ginga Tetsudou 999";False;False;;;;1610427493;;1610427706.0;{};giyxex9;False;t3_kvklz5;False;True;t3_kvklz5;/r/anime/comments/kvklz5/anime_endings_the_long_lost_and_the_forgotten/giyxex9/;1610491727;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;"Johan (Yo-h ah n) - -Johan Leibert is the main antagonist from Naoki Urasawa’s Monster.";False;False;;;;1610427520;;False;{};giyxgiu;False;t3_kvjn32;False;True;t3_kvjn32;/r/anime/comments/kvjn32/alright_heres_the_deal_i_need_anime_names/giyxgiu/;1610491756;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;It's old and dated, not really worth it imo;False;False;;;;1610427536;;False;{};giyxhf0;False;t3_kvkhpc;False;True;t1_giywc45;/r/anime/comments/kvkhpc/whats_the_order_to_watch_the_whole_fate_series/giyxhf0/;1610491773;0;True;False;anime;t5_2qh22;;0;[]; -[];;;karl_w_w;;anidb a-amq;[];;http://anidb.net/u619077;dark;text;t2_9hd6p;False;False;[];;It's not a group, seeding is done after eliminations.;False;False;;;;1610427579;;False;{};giyxjx9;False;t3_kvegi9;False;False;t1_giyqbqs;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giyxjx9/;1610491819;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Agree, its one of my favorite songs period, and i am not a big fan of Monogatari;False;False;;;;1610427597;;False;{};giyxkzi;False;t3_kvklz5;False;True;t1_giywdok;/r/anime/comments/kvklz5/anime_endings_the_long_lost_and_the_forgotten/giyxkzi/;1610491840;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WhimsicalVirgo;;;[];;;;text;t2_97s0ahbz;False;False;[];;"Seraph of the End - -07 Ghost";False;False;;;;1610427604;;False;{};giyxldo;False;t3_kvk1m9;False;True;t3_kvk1m9;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giyxldo/;1610491848;2;True;False;anime;t5_2qh22;;0;[]; -[];;;YoungRoyalty55;;;[];;;;text;t2_22tgl1g2;False;False;[];;Bruh so true, it was good enough to keep me pressing the next episode. Nothing else;False;False;;;;1610427694;;False;{};giyxqn6;True;t3_kvjr0g;False;True;t1_giyx9n4;/r/anime/comments/kvjr0g/what_are_your_guys_thoughts_on_rising_of_the/giyxqn6/;1610491951;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;Definitely recommend Naoki Urasawa’s Monster;False;False;;;;1610427760;;False;{};giyxufi;False;t3_kvj2gy;False;True;t3_kvj2gy;/r/anime/comments/kvj2gy/plot_based_anime_recommendations/giyxufi/;1610492021;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OtherHalfling;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/otherhalfling;light;text;t2_di2cu;False;False;[];;"Yeah, this isn't particularly close... I appreciate Death Note for its legacy and what it has done for anime internationally (at least in the US, where I live). It's undoubtedly iconic, and I even liked the series as a whole, and found it to be a really fun ride for the first... 3/5-ish. - -Still, it's over-the-top, lacking any subtlety, and very much a teen-oriented anime, whereas Monster is a brilliantly written complex narrative, with nuanced characters, far more subdued and believable, and stands up to the great crime thrillers in any medium, in my opinion. - -I'd say both are good, but Monster still dominates.";False;False;;;;1610427838;;False;{};giyxyv8;False;t3_kvkml3;False;True;t3_kvkml3;/r/anime/comments/kvkml3/death_note_or_monster/giyxyv8/;1610492113;4;True;False;anime;t5_2qh22;;0;[]; -[];;;karl_w_w;;anidb a-amq;[];;http://anidb.net/u619077;dark;text;t2_9hd6p;False;False;[];;I'm a big K-On fan but I didn't really remember this ED so I was worried it wasn't going to be worthy, but I rewatched it and it's actually really good. Like seriously, movies aren't supposed to have endings this good.;False;False;;;;1610427919;;False;{};giyy3f5;False;t3_kvegi9;False;False;t1_giy2hze;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giyy3f5/;1610492201;4;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;"Like Hanekawa, - -Having that much Knowledge and still have the guts to say - -# I don't know everything. I just know what I know. - -Hanekawa as a character is the best representation of Encyclopedia that knows everything but tells only important things that matter. - -I want to be like that, But I still don't have enough knowledge to do it.";False;False;;;;1610427927;;False;{};giyy3uf;False;t3_kvkl21;False;False;t3_kvkl21;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/giyy3uf/;1610492209;7;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;A solid yes for Monster, Rainbow, Lain, and FLCL. Durarara!! was pretty good but, Baccano! was better. Mirai Nikki was bad. I haven’t seen the others;False;False;;;;1610427950;;False;{};giyy54u;False;t3_kvinqi;False;True;t3_kvinqi;/r/anime/comments/kvinqi/random_anime_series_i_liked/giyy54u/;1610492233;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blackkittycloud;;;[];;;;text;t2_78lp6nbz;False;False;[];;"I listen to ED once and if they're good I'll just add them to my Spotify playlist and skip them when watching the anime. If they're really good I don't skip them at all lol. - - -My favorites are Kalafina's ending themes for Madoka, Magia and Kimi no Gin no Niwa. Totally captured the overall theme of the series and IMO they're better than the OPs. Another favorite is Shunkan Sentimental by Scandal from FMAB. This feels like a misplaced OP, in a way that it hypes you for the next episode like what OPs are supposed to do.";False;False;;;;1610427979;;False;{};giyy6tf;False;t3_kvklz5;False;True;t3_kvklz5;/r/anime/comments/kvklz5/anime_endings_the_long_lost_and_the_forgotten/giyy6tf/;1610492264;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dreamse11er;;;[];;;;text;t2_7pw9xkkh;False;False;[];;Wow! Meeting someone who encourages you to find your individuality is someone you need to keep in life. Congratulations and I wish you two the best in life :);False;False;;;;1610427991;;False;{};giyy7f8;True;t3_kvkl21;False;False;t1_giyx76n;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/giyy7f8/;1610492274;4;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;"[Ishuzoku Reviewers ED](https://www.youtube.com/watch?v=wK-nnH7FzEw) (better uncensored, but still NSFW) - -[Dragon Maid ED](https://www.youtube.com/watch?v=2bm2WmWiohw) - -[Flip Flappers ED](https://www.youtube.com/watch?v=Wb7cNEpBQPI) - -[Gabriel DropOut ED](https://www.youtube.com/watch?v=sccxGUst9tY) - -Machikado Mazoku ED [(Video)](https://www.youtube.com/watch?v=pp5Res7C2eE) [(Song)](https://www.youtube.com/watch?v=AdrmGyf-3pA) (For some reason couldn't find both combined) - -[Re:Zero S2 ED](https://www.youtube.com/watch?v=CXcEbr1ixEc) (this may be cheating due to how sparingly and seriously its used) - -[Re:Zero S1 ED ""Styx Helix""](https://www.youtube.com/watch?v=HdQCWXh3XXU)";False;False;;;;1610428066;;False;{};giyybkb;False;t3_kvklz5;False;True;t3_kvklz5;/r/anime/comments/kvklz5/anime_endings_the_long_lost_and_the_forgotten/giyybkb/;1610492350;5;True;False;anime;t5_2qh22;;0;[]; -[];;;KariaFelWell;;;[];;;;text;t2_5uc08o6s;False;False;[];;Thank you so much. :);False;False;;;;1610428090;;False;{};giyycwc;False;t3_kvkl21;False;True;t1_giyy7f8;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/giyycwc/;1610492375;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sir_Coffe;;;[];;;;text;t2_pv9fr;False;False;[];;The first episode or two were good just from the premise alone. Eventually the blandness and generic writing become apparent, plus the weird slave dynamic and loli stuff.;False;False;;;;1610428111;;False;{};giyye1w;False;t3_kvjr0g;False;True;t3_kvjr0g;/r/anime/comments/kvjr0g/what_are_your_guys_thoughts_on_rising_of_the/giyye1w/;1610492397;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dreamse11er;;;[];;;;text;t2_7pw9xkkh;False;False;[];;I think it's important to have that mentality! To be humble in every levels of life. That's a really good value to follow.;False;False;;;;1610428157;;False;{};giyygok;True;t3_kvkl21;False;True;t1_giyy3uf;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/giyygok/;1610492449;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;thanks a lot;False;False;;;;1610428162;;False;{};giyygyj;True;t3_kvjseg;False;True;t1_giyuwrd;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giyygyj/;1610492453;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;nice;False;False;;;;1610428180;;False;{};giyyhzk;True;t3_kvjseg;False;True;t1_giyvekw;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giyyhzk/;1610492474;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;Is this a legit question or a bait thread ???;False;False;;;;1610428189;;False;{};giyyiia;False;t3_kvkhpc;False;True;t3_kvkhpc;/r/anime/comments/kvkhpc/whats_the_order_to_watch_the_whole_fate_series/giyyiia/;1610492484;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Archemiya123;;;[];;;;text;t2_2lapmxlt;False;False;[];;Manga is actually above average so its better to wait for anime , as ufotable are really gud as a studio;False;False;;;;1610428199;;False;{};giyyj2i;False;t3_kvk9yg;False;True;t3_kvk9yg;/r/anime/comments/kvk9yg/demon_slayer_fans_manga_or_anime/giyyj2i/;1610492496;4;True;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;looks interesting;False;False;;;;1610428225;;False;{};giyykii;True;t3_kvjseg;False;True;t1_giyx3l2;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giyykii/;1610492537;1;True;False;anime;t5_2qh22;;0;[]; -[];;;joey_joestar1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Joey_Joestar1;light;text;t2_thsqo0;False;False;[];;Ouran host club;False;False;;;;1610428244;;False;{};giyyliz;False;t3_kvk1m9;False;True;t3_kvk1m9;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giyyliz/;1610492556;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;thank you;False;False;;;;1610428245;;False;{};giyylmg;True;t3_kvjseg;False;True;t1_giyx8q9;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giyylmg/;1610492559;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Valk;;;[];;;;text;t2_36l47pm7;False;False;[];;It may not be as good as ubw, but watching it really enhanced my experience with ubw.;False;False;;;;1610428269;;False;{};giyymym;False;t3_kvkhpc;False;True;t1_giyxhf0;/r/anime/comments/kvkhpc/whats_the_order_to_watch_the_whole_fate_series/giyymym/;1610492583;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Froltz;;;[];;;;text;t2_kiqva;False;True;[];;Like MADAO. I'm unemployed and my life is going to shit.;False;False;;;;1610428271;;False;{};giyyn25;False;t3_kvkl21;False;False;t3_kvkl21;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/giyyn25/;1610492585;18;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610428317;;False;{};giyypij;False;t3_kvimj5;False;True;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/giyypij/;1610492634;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;there are two seasons in old one does the new one contain both?;False;False;;;;1610428359;;False;{};giyyrwk;True;t3_kvjseg;False;True;t1_giyx8q9;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giyyrwk/;1610492685;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dreamse11er;;;[];;;;text;t2_7pw9xkkh;False;False;[];;We’re on the same page! I hope you achieve your dreams!;False;False;;;;1610428435;;False;{};giyyw5a;True;t3_kvkl21;False;False;t1_giywync;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/giyyw5a/;1610492770;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dreamse11er;;;[];;;;text;t2_7pw9xkkh;False;False;[];;And what are you gonna do about it!??? COME ON!;False;False;;;;1610428504;;False;{};giyz00q;True;t3_kvkl21;False;True;t1_giyyn25;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/giyz00q/;1610492844;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DireSickFish;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/DireSickFish;light;text;t2_mfrxc;False;False;[];;"Yona of the Dawn -Tokyo ESP";False;False;;;;1610428540;;False;{};giyz21j;False;t3_kvk1m9;False;True;t3_kvk1m9;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giyz21j/;1610492891;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MemeSake;;;[];;;;text;t2_4oxx06km;False;False;[];;91 Days;False;False;;;;1610428587;;False;{};giyz4qq;False;t3_kvl4m6;False;False;t3_kvl4m6;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giyz4qq/;1610492940;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Bright_Eyes83;;;[];;;;text;t2_435s15rz;False;False;[];;yeah it's not action or thriller or drama but it's about girls and super refreshing;False;False;;;;1610428599;;False;{};giyz5em;False;t3_kvjseg;False;True;t1_giyykii;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giyz5em/;1610492952;2;True;False;anime;t5_2qh22;;0;[]; -[];;;qishtah;;;[];;;;text;t2_390lils9;False;False;[];;Nothing, anime is for entertainment not a way of life.;False;True;;comment score below threshold;;1610428636;;False;{};giyz7fi;False;t3_kvkl21;False;True;t3_kvkl21;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/giyz7fi/;1610492997;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;FalconPunchInDaFace;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FalconPunchFace;light;text;t2_4fi02812;False;True;[];;Hitman Reborn;False;False;;;;1610428645;;False;{};giyz7yo;False;t3_kvl4m6;False;False;t3_kvl4m6;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giyz7yo/;1610493007;5;True;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;"I checked it the seasons were too confusing lik season 1 was named ""k-on!"" and season 2 ""k-on!!"" and then ""k-on season 2""";False;False;;;;1610428738;;False;{};giyzdb0;True;t3_kvjseg;False;True;t1_giyz5em;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giyzdb0/;1610493102;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AJDubz21;;;[];;;;text;t2_4m4p1jv5;False;False;[];;Yes it was a genuine question.;False;False;;;;1610428741;;False;{};giyzdh2;True;t3_kvkhpc;False;True;t1_giyyiia;/r/anime/comments/kvkhpc/whats_the_order_to_watch_the_whole_fate_series/giyzdh2/;1610493105;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;"Fruits Basket basically got the Brotherhood treatment. The 2001 anime was incomplete and did not follow the manga. The recent remake though, started over and made for a much more accurate adaptation. - -Start with the 2019 anime. It currently has two seasons. After that, if you like the series, you can go back and watch the original though it’s not necessary. - -Here’s the right one! https://myanimelist.net/anime/38680/Fruits_Basket_1st_Season";False;False;;;;1610428767;;False;{};giyzev5;False;t3_kvjseg;False;True;t1_giyylmg;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giyzev5/;1610493129;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Froltz;;;[];;;;text;t2_kiqva;False;True;[];;I will MADAO even harder and become a Pro in the next Monster Hunter.;False;False;;;;1610428780;;False;{};giyzfo0;False;t3_kvkl21;False;False;t1_giyz00q;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/giyzfo0/;1610493144;11;True;False;anime;t5_2qh22;;0;[]; -[];;;NotAlphonae;;;[];;;;text;t2_6im0hgvx;False;False;[];;"Black Lagoon - Exactly what you're looking for. - -And make sure to check out the English dub.";False;False;;;;1610428847;;False;{};giyzjee;False;t3_kvl4m6;False;False;t3_kvl4m6;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giyzjee/;1610493211;3;True;False;anime;t5_2qh22;;0;[]; -[];;;rufangg;;;[];;;;text;t2_76fp1kr2;False;False;[];;thanks! do you know where i can watch this?;False;False;;;;1610428912;;False;{};giyzn1y;True;t3_kvl4m6;False;True;t1_giyz7yo;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giyzn1y/;1610493276;1;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;Baccano!;False;False;;;;1610428923;;False;{};giyznnl;False;t3_kvl4m6;False;False;t3_kvl4m6;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giyznnl/;1610493287;4;True;False;anime;t5_2qh22;;0;[]; -[];;;rufangg;;;[];;;;text;t2_76fp1kr2;False;False;[];;i was just looking at the trailer! would you recommend i watch half in dub and half in sub?;False;False;;;;1610428939;;False;{};giyzohq;True;t3_kvl4m6;False;False;t1_giyzjee;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giyzohq/;1610493301;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;I just saw the 2nd season was from 2020 will definitely try it :-);False;False;;;;1610428980;;False;{};giyzqq0;True;t3_kvjseg;False;False;t1_giyzev5;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giyzqq0/;1610493342;2;True;False;anime;t5_2qh22;;0;[]; -[];;;crixx93;;;[];;;;text;t2_twrpm1;False;False;[];;"Monster is a 10/10 masterpiece epic psychological thriller. - - Death Note is a 8/10 high pace action thriller.";False;False;;;;1610428993;;False;{};giyzrfx;False;t3_kvkml3;False;False;t3_kvkml3;/r/anime/comments/kvkml3/death_note_or_monster/giyzrfx/;1610493354;6;True;False;anime;t5_2qh22;;0;[]; -[];;;sj_martin13;;;[];;;;text;t2_5m7rq62x;False;False;[];;I thought you needed a sub to watch certain anime?;False;False;;;;1610429065;;False;{};giyzvee;True;t3_kvkcdi;False;True;t1_giywzzw;/r/anime/comments/kvkcdi/where_to_watch_sk8_the_infinity/giyzvee/;1610493422;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dreamse11er;;;[];;;;text;t2_7pw9xkkh;False;False;[];;Anime is a medium writers use to tell their stories. It’s all about which one you’re watching/reading and if you’re really digging deep into the story. What you have extracted from the animes you have consumed are not lessons then, but only the rush of dopamine from the visuals and the sounds. That... is your way of life.;False;False;;;;1610429115;;False;{};giyzy3h;True;t3_kvkl21;False;False;t1_giyz7fi;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/giyzy3h/;1610493469;6;True;False;anime;t5_2qh22;;0;[]; -[];;;NotAlphonae;;;[];;;;text;t2_6im0hgvx;False;False;[];;"The sub isn't bad, but the dub just feels more natural considering the setting and all. - -Plus the raw uncensored cursing...";False;False;;;;1610429123;;False;{};giyzyj8;False;t3_kvl4m6;False;True;t1_giyzohq;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giyzyj8/;1610493477;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;Maybe [check out this thread](https://www.reddit.com/r/Animesuggest/comments/jagh68/any_anime_similar_to_baccano/?utm_medium=), I think all of them got covered there.;False;False;;;;1610429131;;False;{};giyzyya;False;t3_kvl4m6;False;True;t3_kvl4m6;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giyzyya/;1610493484;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tylerdurden1027;;;[];;;;text;t2_iiha5;False;False;[];;Thank you for the advice.;False;False;;;;1610429135;;False;{};giyzz6e;True;t3_kvjawg;False;True;t1_giyw3cx;/r/anime/comments/kvjawg/when_or_if_i_should_try_one_piece/giyzz6e/;1610493488;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rufangg;;;[];;;;text;t2_76fp1kr2;False;False;[];;alright! thank you so much!;False;False;;;;1610429185;;False;{};giz01za;True;t3_kvl4m6;False;True;t1_giyzyj8;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giz01za/;1610493536;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rufangg;;;[];;;;text;t2_76fp1kr2;False;False;[];;Thank you!;False;False;;;;1610429221;;False;{};giz03y5;True;t3_kvl4m6;False;False;t1_giyzyya;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giz03y5/;1610493571;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dreamse11er;;;[];;;;text;t2_7pw9xkkh;False;False;[];;That sounds great ahahaha;False;False;;;;1610429227;;False;{};giz049w;True;t3_kvkl21;False;True;t1_giyzfo0;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/giz049w/;1610493576;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;Sure thing! Hope you find some shows you love!;False;False;;;;1610429244;;False;{};giz056n;False;t3_kvl4m6;False;True;t1_giz03y5;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giz056n/;1610493592;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DireSickFish;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/DireSickFish;light;text;t2_mfrxc;False;False;[];;Really varies arc by arc.;False;False;;;;1610429248;;False;{};giz05fm;False;t3_kvjr0g;False;True;t3_kvjr0g;/r/anime/comments/kvjr0g/what_are_your_guys_thoughts_on_rising_of_the/giz05fm/;1610493597;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rufangg;;;[];;;;text;t2_76fp1kr2;False;False;[];;Thank you!;False;False;;;;1610429259;;False;{};giz05zg;True;t3_kvl4m6;False;True;t1_giyz4qq;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giz05zg/;1610493606;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rufangg;;;[];;;;text;t2_76fp1kr2;False;False;[];;Thanks!;False;False;;;;1610429270;;False;{};giz06jz;True;t3_kvl4m6;False;False;t1_giyznnl;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giz06jz/;1610493617;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Flying-Camel;;;[];;;;text;t2_eukbw;False;False;[];;This, I think, is by far one of the most underrated anime.;False;False;;;;1610429281;;False;{};giz075k;False;t3_kvfuei;False;True;t3_kvfuei;/r/anime/comments/kvfuei/nagi_no_asukaraa_lull_in_the_sea_rewatch_schedule/giz075k/;1610493626;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bright_Eyes83;;;[];;;;text;t2_435s15rz;False;False;[];;yeah it's really not that bad. there are 2 season and they are listed separately. if you're using VRV, you might be seeing season 1 twice. season 1 is 12 or 13 episodes, and season 2 is 24 or 25. just watch season 1, it's worth the confusion.;False;False;;;;1610429331;;False;{};giz09tu;False;t3_kvjseg;False;True;t1_giyzdb0;/r/anime/comments/kvjseg/looking_for_anime_with_female_mc/giz09tu/;1610493677;2;True;False;anime;t5_2qh22;;0;[]; -[];;;25_Oranges;;;[];;;;text;t2_6k8wiuc1;False;False;[];;I agree actually. I do see it crop up on occasion but it's not discussed nearly as often as it should be.;False;False;;;;1610429362;;False;{};giz0bgl;True;t3_kvfuei;False;True;t1_giz075k;/r/anime/comments/kvfuei/nagi_no_asukaraa_lull_in_the_sea_rewatch_schedule/giz0bgl/;1610493707;3;True;False;anime;t5_2qh22;;0;[]; -[];;;arcanine04;;;[];;;;text;t2_4uvymyyb;False;False;[];;Maybe Bungo Stray Dogs? well their enemies are the mafias.. does that count?;False;False;;;;1610429397;;False;{};giz0da8;False;t3_kvl4m6;False;True;t3_kvl4m6;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giz0da8/;1610493743;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rufangg;;;[];;;;text;t2_76fp1kr2;False;False;[];;Yes thank you I’m actually halfway through that!;False;False;;;;1610429423;;False;{};giz0eny;True;t3_kvl4m6;False;False;t1_giz0da8;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giz0eny/;1610493769;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Flying-Camel;;;[];;;;text;t2_eukbw;False;False;[];;Its animation is absolutely top tier, the storyline is beautiful, a good mix of romance, comedy (KANCHO!!!), fluff/scales and mystery.;False;False;;;;1610429504;;False;{};giz0iz0;False;t3_kvfuei;False;True;t1_giz0bgl;/r/anime/comments/kvfuei/nagi_no_asukaraa_lull_in_the_sea_rewatch_schedule/giz0iz0/;1610493864;3;True;False;anime;t5_2qh22;;0;[]; -[];;;b0bba_Fett;;;[];;;;text;t2_12yifh;False;False;[];;"[Style](https://files.catbox.moe/h0lv0i.webm) might be the black sheep of the Soul Eater EDs in that it isn't a sakugafest, but it really shines for being a really good breather during the most intense arc of the show to get animated, as well as its [special version](https://files.catbox.moe/urryfy.webm) featuring Crona really hammering home its episode's resolution. - -Gintama's [Acchi Muite](https://animethemes.moe/video/GintamaS3-ED4.webm) is a wonderful one too, featuring ostensibly the starting point and current point of pretty much the entire main cast's(except Hasegawa's) character arcs. - -[Requiem of Silence\(Major Re:Zero Season 1 Spoilers\)](https://animethemes.moe/video/ReZero-ED5.webm). Episode 15 is is definitely one of the high points of Re:Zero, and this [absolutely haunting ED song\(Spoiler safe\)](https://youtu.be/2-LQqnyNYiQ) is a big part of why it is considered so, its implementation is absurdly cinematic and emotional.";False;False;;;;1610429505;;1610438503.0;{};giz0j16;False;t3_kvegi9;False;False;t1_gixuic4;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giz0j16/;1610493866;6;True;False;anime;t5_2qh22;;0;[]; -[];;;_Zig;;;[];;;;text;t2_r3byl;False;False;[];;Lol;False;False;;;;1610429827;;False;{};giz0zre;False;t3_kvimj5;False;True;t1_giyl8a8;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/giz0zre/;1610494173;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;25_Oranges;;;[];;;;text;t2_6k8wiuc1;False;False;[];;The characters and second half really make the show for me IMO. Music too!;False;False;;;;1610429871;;False;{};giz123n;True;t3_kvfuei;False;True;t1_giz0iz0;/r/anime/comments/kvfuei/nagi_no_asukaraa_lull_in_the_sea_rewatch_schedule/giz123n/;1610494215;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nexuswolfus;;;[];;;;text;t2_1ve3fsv3;False;False;[];;"ACCHI MUITE KOCCHI MUITE - -*clap clap*";False;False;;;;1610429933;;False;{};giz15b6;False;t3_kvegi9;False;True;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giz15b6/;1610494275;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiffen_n_wackles;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/SlammyHammy;light;text;t2_4291vt7n;False;False;[];;"I watch every OP/ED the first time they appear then the ones for the last episode. Usually I find the ED songs better than the OP. - -Some of my top favorites are [Outlaw Star](https://youtu.be/PTquI0qZS1g), [Irresponsible Captain Tylor](https://youtu.be/f9nJ6xHWPtc), [Armored Trooper Votoms](https://youtu.be/jcJoViCuefc), and most recently [Flag](https://youtu.be/zFbzOQWPlpM)";False;False;;;;1610429946;;False;{};giz160g;False;t3_kvklz5;False;True;t3_kvklz5;/r/anime/comments/kvklz5/anime_endings_the_long_lost_and_the_forgotten/giz160g/;1610494288;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;"Black Lagoon - -Gits SAC";False;False;;;;1610430027;;False;{};giz1a8l;False;t3_kvlhdu;False;False;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/giz1a8l/;1610494366;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Star_Lux22;;;[];;;;text;t2_22d262q9;False;False;[];;Maybe ‘Banana Fish’?;False;False;;;;1610430030;;False;{};giz1aee;False;t3_kvl4m6;False;True;t3_kvl4m6;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giz1aee/;1610494370;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;akame ga kill, highschool of the dead;False;False;;;;1610430190;;False;{};giz1ivl;False;t3_kvlhdu;False;True;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/giz1ivl/;1610494521;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;ignore the second one XD;False;False;;;;1610430205;;False;{};giz1jo5;False;t3_kvlhdu;False;False;t1_giz1ivl;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/giz1jo5/;1610494536;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Dendarri;;;[];;;;text;t2_574wo;False;False;[];;Moribito: Guardian of the Spirit, Balsa is badass.;False;False;;;;1610430216;;False;{};giz1k97;False;t3_kvlhdu;False;False;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/giz1k97/;1610494546;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;In before Redo ruins it all.;False;False;;;;1610430228;;False;{};giz1ktv;False;t3_kvjfp0;False;True;t3_kvjfp0;/r/anime/comments/kvjfp0/all_the_anime_this_year_so_far_has_been_great/giz1ktv/;1610494556;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Handsome-_-awkward;;;[];;;;text;t2_52f0dxfa;False;False;[];;Yea paid sub for a lot of them. Like akudama drive the first 2 episodes are free but you cant watch the rest until you pay. Deleted that shit real quick;False;False;;;;1610430331;;False;{};giz1q7p;False;t3_kvkcdi;False;True;t1_giyzvee;/r/anime/comments/kvkcdi/where_to_watch_sk8_the_infinity/giz1q7p/;1610494654;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dasher1802;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Mattawho/;light;text;t2_12ki00;False;False;[];;That makes a lot of sense and it’s how it should work lol. For some reason I thought these rounds would determine seeding within the groups.;False;False;;;;1610430344;;False;{};giz1qwi;False;t3_kvegi9;False;True;t1_giyxjx9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giz1qwi/;1610494667;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Handsome-_-awkward;;;[];;;;text;t2_52f0dxfa;False;False;[];;Both;False;False;;;;1610430360;;False;{};giz1rru;False;t3_kvk9yg;False;False;t3_kvk9yg;/r/anime/comments/kvk9yg/demon_slayer_fans_manga_or_anime/giz1rru/;1610494684;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeowlite;;;[];;;;text;t2_xyzpq;False;False;[];;Jormungand;False;False;;;;1610430389;;False;{};giz1td4;False;t3_kvlhdu;False;False;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/giz1td4/;1610494711;7;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;"I use rating as a blunt instrument for sorting series on my to-watch list. It's not a perfect correlation between popularity ranking and quality, but it's good enough that things that I enjoy generally bubble to at least the middle of the pack. - -The genres that I like are in general not super popular, so I rely more on recommendations and mentions in discussions about series that I know I already like, as well as reading plot synopses and long-form reviews instead of just a number out of ten.";False;False;;;;1610430436;;False;{};giz1vo9;False;t3_kvimj5;False;True;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/giz1vo9/;1610494753;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jbanto17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/jbanto17;light;text;t2_fhuot;False;False;[];;"Special Shout Outs to: - -**Wind** [Naruto](https://animethemes.moe/video/Naruto-ED1.webm) - -**Set Them Free** [Tonari no Seki-kun](https://animethemes.moe/video/TonariNoSekiKun-ED1.webm) - -**Fly Me To the Star** (9 versions) [Revue Starlight](https://animethemes.moe/video/ShoujoKagekiRevueStarlight-ED1-NCBD1080.webm) - -**Spice** [Shokugeki no Souma](https://animethemes.moe/video/ShokugekiNoSouma-ED1.webm) - -**Raspberry Heaven** [Azumanga Daioh](https://animethemes.moe/video/AzumangaDaioh-ED1.webm) - -**Hare Hare Yukai** [Haruhi](https://animethemes.moe/video/SuzumiyaHaruhiNoYuuutsu-ED1.webm) - -**Daisy** [Kyoukai no Kanata](https://animethemes.moe/video/KyoukaiNoKanata-ED1.webm) - -**Snow Halation** [Love Live](https://animethemes.moe/video/LoveLiveS2-ED8-NCBD1080Lyrics.webm) - -Special *Anti* Shout Out to: - -**Nandemonaiya** - My demon, my rival, boring as sin and twice as overrated. Putting this at *seed 5* last year is disgraceful. I am begging you to not vote for this useless black screen just because Your Name is a beautiful and touching movie";False;False;;;;1610430460;;False;{};giz1wwc;False;t3_kvegi9;False;False;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giz1wwc/;1610494774;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Bright_Eyes83;;;[];;;;text;t2_435s15rz;False;False;[];;Psycho Pass;False;False;;;;1610430478;;False;{};giz1xsd;False;t3_kvlhdu;False;False;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/giz1xsd/;1610494790;10;True;False;anime;t5_2qh22;;0;[]; -[];;;MilkToastKing;;;[];;;;text;t2_13tvvu;False;False;[];;Rankings can be useful for gauging general reception and for some light-hearted fun when comparing shows, but otherwise, they shouldn't be taken too seriously. It's not an end all be all, and the people that obsess over it (As well as people who obsessively complain about people being obsessed with it) are not worth your time.;False;False;;;;1610430525;;False;{};giz2054;False;t3_kvimj5;False;True;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/giz2054/;1610494836;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;idk about monster but death note was a disappointment at the ending so I'll try monster;False;False;;;;1610430587;;False;{};giz239d;False;t3_kvkml3;False;True;t3_kvkml3;/r/anime/comments/kvkml3/death_note_or_monster/giz239d/;1610494891;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KingKurai;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;http://myanimelist.net/profile/xspookydarknessx;light;text;t2_4dfy7;False;False;[];;I'll say it again, I thought it was considerably better than Charlotte.;False;False;;;;1610430779;;False;{};giz2cye;False;t3_kvjtk6;False;True;t3_kvjtk6;/r/anime/comments/kvjtk6/so_i_just_got_done_watching_the_day_i_became_a_god/giz2cye/;1610495073;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;"Gungrave. -Just make sure to skip the first episode, since it spoils a few things.";False;False;;;;1610430935;;False;{};giz2ko2;False;t3_kvl4m6;False;True;t3_kvl4m6;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giz2ko2/;1610495216;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ziant1207;;;[];;;;text;t2_11x8jh;False;False;[];;why? it's great tho. XD;False;False;;;;1610431010;;False;{};giz2oet;False;t3_kvlhdu;False;False;t1_giz1jo5;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/giz2oet/;1610495285;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vegfarende;;;[];;;;text;t2_64fe1cve;False;False;[];;I think the dub is better in this case. They really did their job when casting the American voice actors.;False;False;;;;1610431036;;False;{};giz2ppq;False;t3_kvl4m6;False;True;t1_giyzohq;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giz2ppq/;1610495311;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;it's more ecchi and may not be as badass as you expect lol but still it's just 12 episodes so you can try it;False;False;;;;1610431093;;False;{};giz2sk1;False;t3_kvlhdu;False;True;t1_giz2oet;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/giz2sk1/;1610495368;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Seirei no Moribito - -Psycho-Pass - -Black Lagoon - -Revolutionary Girl Utena: Teenager though, not an adult. - -Mahou Shoujo Madoka Magica: Not adult though.";False;False;;;;1610431095;;False;{};giz2snm;False;t3_kvlhdu;False;False;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/giz2snm/;1610495371;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;"Deca-Dence is dope, but the female MC is more focused on becoming independent rather than starting out that way in the story - -Best one where the female MC starts out dope is definitely Ghost in the Shell for me";False;False;;;;1610431113;;False;{};giz2tke;False;t3_kvlhdu;False;False;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/giz2tke/;1610495392;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Vegfarende;;;[];;;;text;t2_64fe1cve;False;False;[];;You can't even compare the two. Monster is a masterpiece.;False;False;;;;1610431197;;False;{};giz2xrq;False;t3_kvkml3;False;True;t3_kvkml3;/r/anime/comments/kvkml3/death_note_or_monster/giz2xrq/;1610495470;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ziant1207;;;[];;;;text;t2_11x8jh;False;False;[];;yeah. i've read the manga and watched the episode. lol;False;False;;;;1610431207;;False;{};giz2y9p;False;t3_kvlhdu;False;True;t1_giz2sk1;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/giz2y9p/;1610495479;3;True;False;anime;t5_2qh22;;0;[]; -[];;;rufangg;;;[];;;;text;t2_76fp1kr2;False;False;[];;Is that the same as puella magi madoka Magic?;False;False;;;;1610431233;;False;{};giz2zmd;True;t3_kvlhdu;False;True;t1_giz2snm;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/giz2zmd/;1610495503;1;True;False;anime;t5_2qh22;;0;[]; -[];;;asharka;;;[];;;;text;t2_12k13z;False;False;[];;"Not to be too obvious, but: Kuro - -Unless he isn't black...";False;False;;;;1610431253;;False;{};giz30ks;False;t3_kvjn32;False;False;t3_kvjn32;/r/anime/comments/kvjn32/alright_heres_the_deal_i_need_anime_names/giz30ks/;1610495521;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;It is, yes.;False;False;;;;1610431258;;False;{};giz30uj;False;t3_kvlhdu;False;False;t1_giz2zmd;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/giz30uj/;1610495525;3;True;False;anime;t5_2qh22;;0;[]; -[];;;rufangg;;;[];;;;text;t2_76fp1kr2;False;False;[];;Thank you! how come they put spoilers in the beginning?;False;False;;;;1610431387;;False;{};giz378z;True;t3_kvl4m6;False;True;t1_giz2ko2;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giz378z/;1610495647;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;[https://myanimelist.net/anime/37496/Double\_Decker\_Doug\_\_\_Kirill](https://myanimelist.net/anime/37496/Double_Decker_Doug___Kirill);False;False;;;;1610431495;;False;{};giz3ciy;False;t3_kvl4m6;False;True;t3_kvl4m6;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giz3ciy/;1610495741;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ComfortablyRotten;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Leuwtian;light;text;t2_78zrok5y;False;False;[];;I can see that, he's been hit in the face, what, four or five times in two episodes already? And he's been on the receiving end of some sort of verbal abuse in a lot of his scenes, too, it's pretty funny.;False;False;;;;1610431498;;False;{};giz3cnh;False;t3_kvfm0x;False;True;t1_giy4zqn;/r/anime/comments/kvfm0x/rewatch_aura_battler_dunbine_episode_2_discussion/giz3cnh/;1610495743;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PerroXX;;;[];;;;text;t2_byqd0;False;False;[];;"That's also my take. Rankings serves as a noble purpose to guide people on who watch if you are interested in ""good shit"", but some people tends to circlejerk on those rankings (especially fans of some famous animes), invalidating the ones that ""your favorite anime"" is lower on the list or don't appear on it (MAL for example). - -Is a nice reference but also if you follow strictly on those lists, surely you will miss a lot of good series because they are not popular among those people who rank them on that list.";False;False;;;;1610431559;;False;{};giz3fnw;False;t3_kvimj5;False;False;t1_giyk92u;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/giz3fnw/;1610495802;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;"It was apparently supposed to be an homage to the source material (the games), but it ended up completely spoiling the anime. -The general consensus is to skip it.";False;False;;;;1610431568;;False;{};giz3g58;False;t3_kvl4m6;False;False;t1_giz378z;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giz3g58/;1610495811;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Philarete;;MAL a-amq;[];;https://myanimelist.net/profile/WizardMcKillin;dark;text;t2_9pgqv;False;False;[];;Possibly going to be overlooked because the show was, uh, *not particularly good*, but [Ijin-tachi no Jikan](https://www.youtube.com/watch?v=B9OT4l4PJUs) from Assassin's Pride is surprisingly good and worth a listen.;False;False;;;;1610431605;;False;{};giz3hut;False;t3_kvegi9;False;False;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giz3hut/;1610495844;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rufangg;;;[];;;;text;t2_76fp1kr2;False;False;[];;Alright thanks!;False;False;;;;1610431663;;False;{};giz3kqe;True;t3_kvl4m6;False;True;t1_giz3g58;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giz3kqe/;1610495903;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;"- Kimi ni Todoke - 30 manga volumes and only like 11 of them were adapted. I cheated to see how it ends, but I'd still love to see how everything goes, and I'm still not 100% sure I want to spend 200 bucks to read the whole series. -- Nisekoi - Despite the second season being filler trash and I'd like to see what they do. -- Spice and Wolf - I'm kinda surprised this never got a 3rd season, TBH. The light novels are still ongoing, so like there's a *chance* more get's made, but it's been over a decade and they stopped the manga adaption in 2017. -- Skip Beat - I loved the show but didn't like the ending that totally screams, ""Now read the manga!"" Like Spice and Wolf, the manga is still ongoing and this series is over a decade old. The show also happened to be the last show the studio made before being absorbed by another studio, so it's unlikely we'll ever see another season. -- Hyouka - Don't think there's enough material for another season... yet. The author is taking their good ol' time with the series. -- Bloom into You - God, I fucking hated how they ended the show. Blatant ""read the manga"" bullshit and they made no attempt to hide it. They could totally squeeze the remaining story into a 4 episode OVA series like ReLIFE and Kokoro Connect did. Manga ended a little under a year after the anime did. Show adapted 5 of the 8 volumes. -- Adachi and Shimamura - I'm having my doubts that we'll get another season. -- Hinamatsuri - I think there might be enough material for a second season now. It's probably on Feel to decide to make another season. -- The Devil is a Part-Timer -- Wotaku: Love is Hard for Otaku - Show was so much fun. Would just have loved to get more. Still have yet to watch the prequel OVAs, though. -- Monthly Girls' Nozaki-kun - Thine balls are blue. - -Not really sure: - -- Girls Last Tour - Mainly because of how the manga ends. I don't know if I could handle that ending. -- Tachibanakan Triangle - I'm kinda torn. I'd like to see more ecchi yuri harem shenanigans, but the show's 3 minute format really ruins what could be an enjoyable series and I just know they'd resort to 3 minute episodes again, instead of 8-12 minute episodes.";False;False;;;;1610431756;;1610440132.0;{};giz3p88;False;t3_kvk1m9;False;True;t3_kvk1m9;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giz3p88/;1610495984;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Philarete;;MAL a-amq;[];;https://myanimelist.net/profile/WizardMcKillin;dark;text;t2_9pgqv;False;False;[];;Good list! And you reminded me to vote for Fly Me to the Star - totally forgot how good it was.;False;False;;;;1610431894;;False;{};giz3w31;False;t3_kvegi9;False;True;t1_gixuic4;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giz3w31/;1610496118;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Bungou stray dogs;False;False;;;;1610431994;;False;{};giz414d;False;t3_kvl4m6;False;True;t3_kvl4m6;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giz414d/;1610496210;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Philarete;;MAL a-amq;[];;https://myanimelist.net/profile/WizardMcKillin;dark;text;t2_9pgqv;False;False;[];;For me, Singing! is in that awkward spot of being really, really good... but not quite as good as the other legendary EDs from the series.;False;False;;;;1610432035;;False;{};giz433m;False;t3_kvegi9;False;True;t1_giyy3f5;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giz433m/;1610496248;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ChingOfTheChongTribe;;;[];;;;text;t2_1kouh2pt;False;False;[];;But I feel like that message of Tomoya accepting change could've been conveyed in a much more grounded way. The show could've had Tomoya reflect on his life with Nagisa and how it had affect himself and given him something to live for in Ushio. And yes I know that Tomoya does need to get go through his arc to get to the ending and that he remembers everything. But I feel like the fact of Tomoya accepting change would've been a more strong theme if he just carried on with his life as the show accepts that the past cant be messed with. The only thing he can do is move on from it. As an anime depicting real life issues like the loss of a loved one it would be proper to not grant him a Fairy Tale ending but for himself to have peace of mind. But this just might be my preference. Thank you for sharing your side.;False;False;;;;1610432082;;False;{};giz45bc;True;t3_kvjq5a;False;True;t1_giyt4de;/r/anime/comments/kvjq5a/does_anyone_find_the_clannad_ending_really/giz45bc/;1610496292;1;True;False;anime;t5_2qh22;;0;[]; -[];;;three_firstnames;;;[];;;;text;t2_2asj14;False;False;[];;Hectopascal and Magia are two of the greatest EDs I've ever seen/heard. VOTE FOR THEM!;False;False;;;;1610432211;;False;{};giz4bi3;False;t3_kvegi9;False;True;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giz4bi3/;1610496405;3;True;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;"Black Lagoon - -Noir - -Black rock shooter (not an adult, but badass) - -Akuma no riddle - -7 seeds";False;False;;;;1610432262;;False;{};giz4dzb;False;t3_kvlhdu;False;False;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/giz4dzb/;1610496450;5;True;False;anime;t5_2qh22;;0;[]; -[];;;conquestaxe;;;[];;;;text;t2_hyg44;False;False;[];;You seem to forget about all the rotten tomatoes, and metacritic score brigading. Still probably no where near the same extent as the anime community though.;False;False;;;;1610432324;;False;{};giz4gul;False;t3_kvimj5;False;False;t1_giymk9h;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/giz4gul/;1610496501;10;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610432363;moderator;False;{};giz4in8;False;t3_kvm2v3;False;True;t3_kvm2v3;/r/anime/comments/kvm2v3/why_is_the_last_season_of_attack_on_titan_airing/giz4in8/;1610496533;1;False;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;"Monster - -I only actually enjoyed about half of death note episodes";False;False;;;;1610432532;;False;{};giz4qjl;False;t3_kvkml3;False;True;t3_kvkml3;/r/anime/comments/kvkml3/death_note_or_monster/giz4qjl/;1610496671;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FalconPunchInDaFace;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FalconPunchFace;light;text;t2_4fi02812;False;True;[];;I found [Reborn!](https://www.crunchyroll.com/reborn) on crunchyroll;False;False;;;;1610432664;;False;{};giz4wl5;False;t3_kvl4m6;False;True;t1_giyzn1y;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giz4wl5/;1610496777;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;The manga ends in April and Isayama works closely with the anime studio. I'm sure he's already told them the ending.;False;False;;;;1610432715;;False;{};giz4ywm;False;t3_kvm2v3;False;True;t3_kvm2v3;/r/anime/comments/kvm2v3/why_is_the_last_season_of_attack_on_titan_airing/giz4ywm/;1610496818;18;True;False;anime;t5_2qh22;;0;[]; -[];;;FalconPunchInDaFace;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FalconPunchFace;light;text;t2_4fi02812;False;True;[];;"I know 2 things about Black Lagoon: - -1. Revy -2. The English lyrics in the OP are fucking awesome";False;False;;;;1610432765;;False;{};giz515u;False;t3_kvl4m6;False;False;t1_giyzjee;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giz515u/;1610496855;3;True;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;"Kita from Haikyuu To the Top mentioned something like: -""You only get nervous because you try to be more powerful than what you are, you don't get nervous with day-to-day things like eating or going to the bathroom, that should apply to volleyball too"" - -Of course if you substitute volleyball with whatever you want, damn is a nice way of thinking";False;False;;;;1610432935;;False;{};giz58t9;False;t3_kvkl21;False;True;t3_kvkl21;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/giz58t9/;1610496987;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610432942;moderator;False;{};giz5940;False;t3_kvm7nd;False;False;t3_kvm7nd;/r/anime/comments/kvm7nd/what_is_the_order_to_watch_to_love_ru/giz5940/;1610496992;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi forgetable1, it seems like you might be looking for a show's watch order! - -On our [watch order wiki](https://www.reddit.com/r/anime/wiki/watch_order) you can find suggested orders for a ton of shows (hopefully including the one you're looking for), as well as information that will help you decide on what to watch for the more complicated series <cough> Gundam <cough>. - -[](#heartbot) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610432942;moderator;False;{};giz594r;False;t3_kvm7nd;False;False;t3_kvm7nd;/r/anime/comments/kvm7nd/what_is_the_order_to_watch_to_love_ru/giz594r/;1610496992;1;False;False;anime;t5_2qh22;;0;[]; -[];;;ResidentThatGuy;;;[];;;;text;t2_1ykr7syw;False;False;[];;"to love ru —> motto to love-ru —> darkness —> darkness s2. you pretty much have to watch them in order else a lot won’t make sense";False;False;;;;1610433019;;False;{};giz5cof;False;t3_kvm7nd;False;True;t3_kvm7nd;/r/anime/comments/kvm7nd/what_is_the_order_to_watch_to_love_ru/giz5cof/;1610497056;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;"To Love Ru - -Motto To Love Ru - -To Love Ru Darkness - -To Love Darkness 2nd";False;False;;;;1610433021;;False;{};giz5cqd;False;t3_kvm7nd;False;True;t3_kvm7nd;/r/anime/comments/kvm7nd/what_is_the_order_to_watch_to_love_ru/giz5cqd/;1610497056;1;True;False;anime;t5_2qh22;;0;[]; -[];;;forgetable1;;;[];;;;text;t2_5bpmacz2;False;False;[];;Alright thanks;False;False;;;;1610433087;;False;{};giz5fs8;False;t3_kvm7nd;False;True;t1_giz5cqd;/r/anime/comments/kvm7nd/what_is_the_order_to_watch_to_love_ru/giz5fs8/;1610497109;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gangrainette;;MAL;[];;https://myanimelist.net/profile/bouletos;dark;text;t2_vlti1;False;False;[];;"Cross Ange - -Symphogear";False;False;;;;1610433147;;False;{};giz5igk;False;t3_kvlhdu;False;False;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/giz5igk/;1610497155;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Because it is not the final season, considering the pace it is going in it probably won't cover the whole manga (unless they go for an original ending) there probably will be a S4 P2 or some movies as continuation. Not only does the manga ends in April but the author probably discussed the later parts with the studio.;False;False;;;;1610433227;;False;{};giz5m1s;False;t3_kvm2v3;False;True;t3_kvm2v3;/r/anime/comments/kvm2v3/why_is_the_last_season_of_attack_on_titan_airing/giz5m1s/;1610497227;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;False;[];;">The show could've had Tomoya reflect on his life with Nagisa and how it had affect himself and given him something to live for in Ushio. - -It does do this though. This is basically the last 4 episodes of the series. Tons of little moments of exactly this happen throughout this time to show how much Tomoya has grown and reflected on Nagisa's place in his life and how he finds purpose in Ushio. Him crying while he describes is wife on the train, him talking to Kyou about everything at the school, him getting emotional while Fuko is over, etc. The happy ending is not mutually exclusive with this, Tomoya has done all of this and thus earns his ""fairy tale"" by proving he's taken the main messages of the series to heart. - -Clannad may be about human issues, but it has never been a wholly grounded show. From the first episodes it establishes itself as a piece of magical realism, and it's had ""fairy tale"" endings to some arcs before it, like with Ibuki-sensei being able to see Fuko at her wedding. And in fact, it directly tells us what the ending is going to be at the end of the first season (go back to when Nagisa describes what the end of her play is, it's literally the ending of the show). I think this is wholly consistent with everything that Clannad has always established itself as. And I also don't think it's quite as ""fairy tale"" as you put it. I don't see this as ""and they lived happily ever after,"" I see it as ""Tomoya thinks it's worth it to risk tragedy yet again if it means he can be with his loved ones."" Basically, I think it's saying that Tomoya would now turn out alright if more tragedy struck, and thus he is able to wish for a position that makes that a possibility again; the exact opposite of ""I wish we never met so I don't have to experience this pain."" At least that's how I view it, and why it resonates with me so deeply. Sorry, I just get a bit defensive about this one, there are a lot of things about what Clannad is going for that it feels like a lot of people don't understand and it grinds my gears, haha.";False;False;;;;1610433251;;1610433553.0;{};giz5n4f;False;t3_kvjq5a;False;True;t1_giz45bc;/r/anime/comments/kvjq5a/does_anyone_find_the_clannad_ending_really/giz5n4f/;1610497245;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;What’s the point in posting this here when the anime hasn’t even aired...;False;False;;;;1610433260;;False;{};giz5nkh;False;t3_kvm8y2;False;True;t3_kvm8y2;/r/anime/comments/kvm8y2/top_20_strongest_characters_in_chainsaw_man/giz5nkh/;1610497253;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Tasthar;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tasthar;light;text;t2_1fhlyiyc;False;False;[];;"Anime is ""A Sister's All You Need"" -I don't remember her name tho.";False;False;;;;1610433450;;False;{};giz5vwr;False;t3_kvmb5e;False;True;t3_kvmb5e;/r/anime/comments/kvmb5e/send_help_who_is_this_anime_girl/giz5vwr/;1610497399;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Besamel;;;[];;;;text;t2_90fp3;False;True;[];;Nayuta Kani from Imouto Sae Ireba II;False;False;;;;1610433469;;False;{};giz5wpy;False;t3_kvmb5e;False;True;t3_kvmb5e;/r/anime/comments/kvmb5e/send_help_who_is_this_anime_girl/giz5wpy/;1610497414;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Stealth_Robot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/StealthRobot/animelist;light;text;t2_14bta3;False;False;[];;Nayuta Kani from A Sister's All You Need.;False;False;;;;1610433555;;False;{};giz60i4;False;t3_kvmb5e;False;True;t3_kvmb5e;/r/anime/comments/kvmb5e/send_help_who_is_this_anime_girl/giz60i4/;1610497485;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Resident_Chemist_619;;;[];;;;text;t2_9993kzaf;False;False;[];;It’s a monthly manga just like Dragon Ball Super or Boruto, if it’s ending in 3-4 months there’s only 3-4 chapters left, that’s what 1-2 episode or maybe 3 episodes.;False;False;;;;1610433586;;False;{};giz61uq;False;t3_kvm2v3;False;True;t3_kvm2v3;/r/anime/comments/kvm2v3/why_is_the_last_season_of_attack_on_titan_airing/giz61uq/;1610497510;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;Black Lagoon for sure;False;False;;;;1610433636;;False;{};giz642f;False;t3_kvlhdu;False;False;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/giz642f/;1610497549;10;True;False;anime;t5_2qh22;;0;[]; -[];;;A_kirE;;;[];;;;text;t2_8mklskhy;False;False;[];;im still wondering about what happened to the dragon of the spear hero when he raced against naofumi and filo.;False;False;;;;1610433663;;False;{};giz6591;False;t3_kvjr0g;False;True;t3_kvjr0g;/r/anime/comments/kvjr0g/what_are_your_guys_thoughts_on_rising_of_the/giz6591/;1610497568;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mMeister_5;;;[];;;;text;t2_49p4u9ur;False;False;[];;Yeahhh it really caught my attention I thought it was well executed. Don’t know where it will go from here, hopefully it’s somewhere good.;False;False;;;;1610433664;;False;{};giz65ac;False;t3_kvmb71;False;False;t3_kvmb71;/r/anime/comments/kvmb71/who_else_liked_kemono_jihen_ep_1/giz65ac/;1610497568;17;True;False;anime;t5_2qh22;;0;[]; -[];;;JadeDragon56;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/JadeDragon56;light;text;t2_ee93o;False;False;[];;This right here. They even did an AoT exhibit a year or 2 again, not sure exactly when, where he talked about his vision for the ending.;False;False;;;;1610433735;;False;{};giz68g3;False;t3_kvm2v3;False;True;t1_giz4ywm;/r/anime/comments/kvm2v3/why_is_the_last_season_of_attack_on_titan_airing/giz68g3/;1610497623;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Strongerhouseplants;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/whatthehell_;light;text;t2_8ihhjlp3;False;True;[];;"The moment I watched the dragon ball ED, [I'll give you romance](https://youtu.be/-i9mUSxq7Kg), I knew instantly that it would be one of my favorites, and I take music very seriously. I don't think I've ever seen this one in this sub either - -Both the visuals and the song give such a warm, joyous, inspiring, and nostalgic feeling, even if dragon ball isn't a part of your past. It works perfectly too since the show is a great adventure. It's a real shame it isn't a full ~4 minute song; it's one of my wishes when it comes to anime.";False;False;;;;1610433832;;1610434166.0;{};giz6ckm;False;t3_kvklz5;False;True;t3_kvklz5;/r/anime/comments/kvklz5/anime_endings_the_long_lost_and_the_forgotten/giz6ckm/;1610497693;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Argengumentum;;;[];;;;text;t2_te9gh;False;False;[];;I don't watch the show but my bet is on everyone dies;False;False;;;;1610433913;;False;{};giz6g49;False;t3_kvft1c;False;True;t3_kvft1c;/r/anime/comments/kvft1c/what_do_you_think_is_the_ending_for_attack_on/giz6g49/;1610497753;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;And I'll say that I thought the complete opposite;False;False;;;;1610433917;;False;{};giz6gc3;False;t3_kvjtk6;False;True;t1_giz2cye;/r/anime/comments/kvjtk6/so_i_just_got_done_watching_the_day_i_became_a_god/giz6gc3/;1610497757;3;True;False;anime;t5_2qh22;;0;[]; -[];;;na0fumi_sama;;;[];;;;text;t2_9nyml263;False;False;[];;Yeah same! I'm definitely intrigued. I'm also watching Quintessential Quintuplets s2, Promised Neverland s2, Suppose a Kid from the last dungeon..., hidden dungeon only I can enter, and Dr Stone s2 this season so i got a busy anime season! I think kemono jihen is gonna be a standout though.;False;False;;;;1610433976;;False;{};giz6iv4;True;t3_kvmb71;False;False;t1_giz65ac;/r/anime/comments/kvmb71/who_else_liked_kemono_jihen_ep_1/giz6iv4/;1610497799;6;True;False;anime;t5_2qh22;;0;[]; -[];;;mMeister_5;;;[];;;;text;t2_49p4u9ur;False;False;[];;The Akudama Drive of the season, maybe. Who knows!;False;False;;;;1610434008;;False;{};giz6k7b;False;t3_kvmb71;False;False;t1_giz6iv4;/r/anime/comments/kvmb71/who_else_liked_kemono_jihen_ep_1/giz6k7b/;1610497822;5;True;False;anime;t5_2qh22;;0;[]; -[];;;KingKurai;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;http://myanimelist.net/profile/xspookydarknessx;light;text;t2_4dfy7;False;False;[];;And I'll say that's fair.;False;False;;;;1610434054;;False;{};giz6m5j;False;t3_kvjtk6;False;True;t1_giz6gc3;/r/anime/comments/kvjtk6/so_i_just_got_done_watching_the_day_i_became_a_god/giz6m5j/;1610497857;2;True;False;anime;t5_2qh22;;0;[]; -[];;;na0fumi_sama;;;[];;;;text;t2_9nyml263;False;False;[];;I wasn't a huge fan of Akudama drive for some reason, but I can definitely see that it was a well written anime!;False;False;;;;1610434135;;False;{};giz6plk;True;t3_kvmb71;False;False;t1_giz6k7b;/r/anime/comments/kvmb71/who_else_liked_kemono_jihen_ep_1/giz6plk/;1610497917;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Firesanwizard;;;[];;;;text;t2_141srq;False;False;[];;Baccano, Durarara , K project;False;False;;;;1610434263;;False;{};giz6v8h;False;t3_kvl4m6;False;False;t3_kvl4m6;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/giz6v8h/;1610498013;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phoenixwaller;;;[];;;;text;t2_34autsr9;False;False;[];;"Ghost in the Shell: Stand Alone Complex - -Ergo Proxy - -Armitage - -Noir";False;False;;;;1610434303;;False;{};giz6wz4;False;t3_kvlhdu;False;False;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/giz6wz4/;1610498042;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JadeDragon56;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/JadeDragon56;light;text;t2_ee93o;False;False;[];;Like Kazuma I believe in true gender equality!;False;False;;;;1610434325;;False;{};giz6xxo;False;t3_kvkl21;False;False;t3_kvkl21;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/giz6xxo/;1610498058;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Game2015;;;[];;;;text;t2_poe9a;False;False;[];;Remember when Interspecies Reviewers became no. 1 after Funimation dropped it?;False;False;;;;1610434388;;False;{};giz70ps;False;t3_kvimj5;False;True;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/giz70ps/;1610498107;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Firesanwizard;;;[];;;;text;t2_141srq;False;False;[];;"Oshino: you must help yourself. -Gurren Lagaan: I believe in the you that believes in me that believes in you";False;False;;;;1610434404;;False;{};giz71ey;False;t3_kvkl21;False;True;t3_kvkl21;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/giz71ey/;1610498120;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610434414;moderator;False;{};giz71t2;False;t3_kvmjmw;False;True;t3_kvmjmw;/r/anime/comments/kvmjmw/what_is_this_anime/giz71t2/;1610498128;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Strongerhouseplants;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/whatthehell_;light;text;t2_8ihhjlp3;False;True;[];;Just wanted to say, I like how you're replying to the comments the way that you are. You're pretty sweet OP;False;False;;;;1610434455;;False;{};giz73k9;False;t3_kvkl21;False;True;t3_kvkl21;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/giz73k9/;1610498158;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mMeister_5;;;[];;;;text;t2_49p4u9ur;False;False;[];;I mean in terms of like growth and popularity;False;False;;;;1610434496;;False;{};giz758v;False;t3_kvmb71;False;True;t1_giz6plk;/r/anime/comments/kvmb71/who_else_liked_kemono_jihen_ep_1/giz758v/;1610498187;3;True;False;anime;t5_2qh22;;0;[]; -[];;;infinite_lyy;;;[];;;;text;t2_9lftz77s;False;False;[];;Read the manga! Most shoujo series such as this one only scratch the surface of the manga. For Tonari no Kaibutsu-kun, the anime reaches only about a third of the manga so it would be nice for you to finish the intended story. You can start at chap 16 but I'd suggest reading from the beginning;False;False;;;;1610434497;;False;{};giz75as;False;t3_kvjc27;False;True;t3_kvjc27;/r/anime/comments/kvjc27/i_just_finished_watching_my_little_monster_tonari/giz75as/;1610498188;2;True;False;anime;t5_2qh22;;0;[]; -[];;;infinite_lyy;;;[];;;;text;t2_9lftz77s;False;False;[];;I think you might enjoy Attack on Titan and maybe Neon Genesis Evangelion;False;False;;;;1610434631;;False;{};giz7ax4;False;t3_kvj2gy;False;True;t3_kvj2gy;/r/anime/comments/kvj2gy/plot_based_anime_recommendations/giz7ax4/;1610498285;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Firesanwizard;;;[];;;;text;t2_141srq;False;False;[];;Jonathan Joestar, Joseph Joestar;False;False;;;;1610434640;;False;{};giz7bbc;False;t3_kvjn32;False;False;t3_kvjn32;/r/anime/comments/kvjn32/alright_heres_the_deal_i_need_anime_names/giz7bbc/;1610498291;1;True;False;anime;t5_2qh22;;0;[]; -[];;;na0fumi_sama;;;[];;;;text;t2_9nyml263;False;False;[];;Yeah totally! I get what you mean. I was surprised at how popular it became.;False;False;;;;1610434641;;False;{};giz7bd4;True;t3_kvmb71;False;True;t1_giz758v;/r/anime/comments/kvmb71/who_else_liked_kemono_jihen_ep_1/giz7bd4/;1610498292;3;True;False;anime;t5_2qh22;;0;[]; -[];;;UzEE;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/UzEEInc;light;text;t2_45t2z;False;False;[];;"I had forgotten ""**[Carry On Wayward Son](https://animethemes.moe/video/Supernatural-ED1.webm)**"" existed as an ED. It actually feels weird because it's almost always played as an OP of sorts in the actual show. Definitely voting it for nostalgia reasons which I know is an odd thing to say since the show ended only a couple of months ago.";False;False;;;;1610434800;;False;{};giz7i4y;False;t3_kvegi9;False;True;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giz7i4y/;1610498422;3;True;False;anime;t5_2qh22;;0;[]; -[];;;hellothere-3000;;;[];;;;text;t2_4ac0esly;False;False;[];;"Most of the characters were just ... unoriginal. They felt like generic tropes to me: the bland MC, the quiet girl, the grumpy sister, the energetic best friend. Compare that to his earlier works CLANNAD or Little Busters where almost every character had very unique personalities and traits that gave me lasting impressions. - - -A question for you though, how do you still like Youta after his EQ dropped to negative numbers after everything he did during the hospital visit? - - -Also on the opening, I liked the first scene with Hina and Youta fading into existence but the next part with them walking was a little cringe.";False;False;;;;1610434968;;False;{};giz7p6w;False;t3_kvjtk6;False;False;t3_kvjtk6;/r/anime/comments/kvjtk6/so_i_just_got_done_watching_the_day_i_became_a_god/giz7p6w/;1610498541;12;True;False;anime;t5_2qh22;;0;[]; -[];;;anarchist158;;;[];;;;text;t2_7f9d6cbl;False;False;[];;the first part will probably end in chapter 122. If they are going to do a part 2, then by the time it's over the manga will probably be over and they just have to animate. Isayama also works really close with the studio he decides how things are done;False;False;;;;1610435020;;False;{};giz7rc1;False;t3_kvm2v3;False;True;t3_kvm2v3;/r/anime/comments/kvm2v3/why_is_the_last_season_of_attack_on_titan_airing/giz7rc1/;1610498578;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Extension-Sign-5150;;;[];;;;text;t2_8cgrfenx;False;False;[];;Thanks;False;False;;;;1610435054;;False;{};giz7sqc;True;t3_kvmb5e;False;True;t1_giz60i4;/r/anime/comments/kvmb5e/send_help_who_is_this_anime_girl/giz7sqc/;1610498603;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChingOfTheChongTribe;;;[];;;;text;t2_1kouh2pt;False;False;[];;Yeah I don't really like the supernatural elements of Clannad and preferred when it didnt delve into that element. A realistic ending would've resonated with me more because it would've portrayed the loss of a loved one and the fact that all you can do is move on. The last few episodes showed the anguish of Tomoya and the permanent nature of death. And with his reflection on his life with Nagisa along with his reconnection with his family isnt that enough to show that he can accept tragedy. The show had already given him a chance to experience tragedy in his life with the people by his side. I feel like the story should've ended without Ushio's death and the subsequent time reversal. But then again it is my personal preference;False;False;;;;1610435079;;False;{};giz7trl;True;t3_kvjq5a;False;True;t1_giz5n4f;/r/anime/comments/kvjq5a/does_anyone_find_the_clannad_ending_really/giz7trl/;1610498621;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FalconPunchInDaFace;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FalconPunchFace;light;text;t2_4fi02812;False;True;[];;*pulls up a chair in the back of the room and waits for someone to answer*;False;False;;;;1610435181;;False;{};giz7xyn;False;t3_kvmjmw;False;False;t3_kvmjmw;/r/anime/comments/kvmjmw/what_is_this_anime/giz7xyn/;1610498693;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Firesanwizard;;;[];;;;text;t2_141srq;False;False;[];;Naruto;False;False;;;;1610435192;;False;{};giz7yew;False;t3_kvk41d;False;True;t3_kvk41d;/r/anime/comments/kvk41d/if_someone_can_only_watch_one_anime_and_never/giz7yew/;1610498701;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RazorNaitor;;;[];;;;text;t2_6iwbpqc3;False;False;[];;Pretty much the same dude, this had me laughing my ass off;False;False;;;;1610435368;;False;{};giz85mk;False;t3_kvmjmw;False;False;t1_giz7xyn;/r/anime/comments/kvmjmw/what_is_this_anime/giz85mk/;1610498824;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ProfessorJackH0ff;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/;light;text;t2_4y844c07;False;False;[];;*Room for one more?*;False;False;;;;1610435459;;False;{};giz89d6;False;t3_kvmjmw;False;False;t1_giz85mk;/r/anime/comments/kvmjmw/what_is_this_anime/giz89d6/;1610498887;4;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;Looking different/better =/= more budget.;False;False;;;;1610435509;;False;{};giz8bfk;False;t3_kvme3d;False;False;t3_kvme3d;/r/anime/comments/kvme3d/if_you_are_watching_horimiya_consider_watching/giz8bfk/;1610498920;5;True;False;anime;t5_2qh22;;0;[]; -[];;;LS1k;;;[];;;;text;t2_4d7f5c2d;False;False;[];;Interesting.;False;False;;;;1610435673;;False;{};giz8i32;False;t3_kvmgoo;False;True;t3_kvmgoo;/r/anime/comments/kvmgoo/couple_anime_rap_bars/giz8i32/;1610499031;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610435713;moderator;False;{};giz8jox;False;t3_kvmtap;False;True;t3_kvmtap;/r/anime/comments/kvmtap/should_i_watch_attack_on_titan_now_or_wait/giz8jox/;1610499059;0;False;False;anime;t5_2qh22;;0;[]; -[];;;FullAcanthocephala70;;;[];;;;text;t2_7wloj4rk;False;False;[];;Start from the beginning bruh 😅;False;False;;;;1610435744;;False;{};giz8kzr;False;t3_kvmtap;False;False;t3_kvmtap;/r/anime/comments/kvmtap/should_i_watch_attack_on_titan_now_or_wait/giz8kzr/;1610499080;45;True;False;anime;t5_2qh22;;0;[]; -[];;;FalconPunchInDaFace;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FalconPunchFace;light;text;t2_4fi02812;False;True;[];;"Yea man we got a few chairs open. - -I brought beer, Razor has a deck of cards. Might be a while until the chosen one knows this show.";False;False;;;;1610435756;;1610436142.0;{};giz8liu;False;t3_kvmjmw;False;True;t1_giz89d6;/r/anime/comments/kvmjmw/what_is_this_anime/giz8liu/;1610499090;2;True;False;anime;t5_2qh22;;0;[]; -[];;;shaggythestoner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/shaggy451;light;text;t2_f289ewn;False;False;[];;Little bit of a stretch but {Dr.Stone};False;False;;;;1610435801;;False;{};giz8ncr;False;t3_kvjrua;False;False;t3_kvjrua;/r/anime/comments/kvjrua/anime_about_teaching_like_assassination_classroom/giz8ncr/;1610499119;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JadeDragon56;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/JadeDragon56;light;text;t2_ee93o;False;False;[];;I know it wasn't the greatest but I personally had a hell of a time watching Btoom!. I'd love another season if just for fun popcorn entertainment;False;False;;;;1610435963;;False;{};giz8tw0;False;t3_kvk1m9;False;True;t3_kvk1m9;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giz8tw0/;1610499227;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chris10023;;;[];;;;text;t2_6mgro;False;False;[];;"I didn't really feel like his sister was that grumpy, maybe a little, but not that much. - -> A question for you though, how do you still like Youta after his EQ dropped to negative numbers after everything he did during the hospital visit? - -EQ? Can you clarify?";False;False;;;;1610436190;;False;{};giz9339;True;t3_kvjtk6;False;False;t1_giz7p6w;/r/anime/comments/kvjtk6/so_i_just_got_done_watching_the_day_i_became_a_god/giz9339/;1610499379;3;True;False;anime;t5_2qh22;;0;[]; -[];;;r3in5;;;[];;;;text;t2_1auh2am2;False;False;[];;The Horimiya anime is based off the Horimiya manga which is a retelling of the original Hori-san to Miyamura-kun webcomic just an fyi;False;False;;;;1610436225;;False;{};giz94i1;False;t3_kvme3d;False;False;t3_kvme3d;/r/anime/comments/kvme3d/if_you_are_watching_horimiya_consider_watching/giz94i1/;1610499403;17;True;False;anime;t5_2qh22;;0;[]; -[];;;CosmicPenguin_OV103;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cosmic_Penguin;light;text;t2_1ufwqhs7;False;True;[];;"The Garden of Sinners - -Fate/Stay Night '06 & Fate/Zero - -A Certain Scientific Railgun (not adult, but just as badass)";False;False;;;;1610436234;;False;{};giz94tt;False;t3_kvlhdu;False;False;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/giz94tt/;1610499409;7;True;False;anime;t5_2qh22;;0;[]; -[];;;JadeDragon56;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/JadeDragon56;light;text;t2_ee93o;False;False;[];;Decent popcorn entertainment. Awesome ost;False;False;;;;1610436257;;False;{};giz95s5;False;t3_kvjr0g;False;False;t3_kvjr0g;/r/anime/comments/kvjr0g/what_are_your_guys_thoughts_on_rising_of_the/giz95s5/;1610499424;1;True;False;anime;t5_2qh22;;0;[]; -[];;;InsomniaEmperor;;;[];;;;text;t2_5x68hmc4;False;False;[];;Well the premise alone tells you it's not gonna be happy and wholesome. It made me feel sad and horrible.;False;False;;;;1610436258;;False;{};giz95u0;False;t3_kvht83;False;True;t3_kvht83;/r/anime/comments/kvht83/how_do_i_not_feel_horrible_while_watching_romance/giz95u0/;1610499424;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi lil_arts, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610436311;moderator;False;{};giz97xk;False;t3_kvmyfz;False;True;t3_kvmyfz;/r/anime/comments/kvmyfz/need_help_for_my_next_video/giz97xk/;1610499460;2;False;False;anime;t5_2qh22;;0;[]; -[];;;hellothere-3000;;;[];;;;text;t2_4ac0esly;False;False;[];;"Emotional intelligence. - - -Yelling at Hina and shaking her shoulders. - -Screaming at her over a video game. - -Etc";False;False;;;;1610436399;;False;{};giz9bdv;False;t3_kvjtk6;False;True;t1_giz9339;/r/anime/comments/kvjtk6/so_i_just_got_done_watching_the_day_i_became_a_god/giz9bdv/;1610499518;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JadeDragon56;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/JadeDragon56;light;text;t2_ee93o;False;False;[];;Inu;False;False;;;;1610436425;;False;{};giz9cg4;False;t3_kvjn32;False;True;t3_kvjn32;/r/anime/comments/kvjn32/alright_heres_the_deal_i_need_anime_names/giz9cg4/;1610499536;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nuaTN;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;r/anime and shit taste;light;text;t2_2jpaolye;False;True;[];;"Many good songs today. - -* Wagamama - Domekano ED -* Ano Yoake Mae no' Bokura ni Tsuite - Ping Pong The Animation ED2 -* Kanade - Isshuukan Friends ED -* Dearest - InuYasha ED3. Fuck I forgot to nominate Every Heart. -* Daisy - Kyoukai no Kanata ED -* Requiem of Silence - Re:Zero ED ep15 -* Call your name - Shingeki no Kyojin: Lost Girls ED1 -* forget-me-not - Sword Art Online: Alicization ED2 -* Manten - Fate/Zero ED ep18,19? -* trust you - Mobile Suit Gundam 00 Second Season ED4 -* Mirror - Mahouka Koukou no Rettousei ED2 -* Nandemonaiya - Kimi no Na wa ED -* Kamisama no Iutoori - The Tatami Galaxy ED -* unlasting - SAO: Alicization - War of Underworld ED -* Hello Alone - Oregairu ED. The ballade version is so much better though.";False;False;;;;1610436469;;False;{};giz9e8k;False;t3_kvegi9;False;True;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/giz9e8k/;1610499570;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JadeDragon56;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/JadeDragon56;light;text;t2_ee93o;False;False;[];;YouTube has it;False;False;;;;1610436863;;False;{};giz9tpo;False;t3_kvhetf;False;True;t3_kvhetf;/r/anime/comments/kvhetf/does_anyone_know_where_i_can_watch_your_name/giz9tpo/;1610499845;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610437021;;False;{};giz9zvd;False;t3_kvmgoo;False;False;t3_kvmgoo;/r/anime/comments/kvmgoo/couple_anime_rap_bars/giz9zvd/;1610499950;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PDbeast11;;;[];;;;text;t2_1pf1o7lp;False;False;[];;No;False;False;;;;1610437040;;False;{};giza0o2;True;t3_kvmgoo;False;False;t1_giz9zvd;/r/anime/comments/kvmgoo/couple_anime_rap_bars/giza0o2/;1610499962;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610437100;;False;{};giza311;False;t3_kvmgoo;False;True;t1_giza0o2;/r/anime/comments/kvmgoo/couple_anime_rap_bars/giza311/;1610500003;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JadeDragon56;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/JadeDragon56;light;text;t2_ee93o;False;False;[];;Hahahah, I wish real life relationships were like animated ones. Would be so much easier. Nah real life is far more complicated. But also so much better, or worse depending on the relationship.;False;False;;;;1610437104;;False;{};giza35y;False;t3_kvh3b7;False;True;t3_kvh3b7;/r/anime/comments/kvh3b7/are_relationships_as_complicated_as_they_are/giza35y/;1610500005;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PDbeast11;;;[];;;;text;t2_1pf1o7lp;False;False;[];;It’s not a spoiler;False;False;;;;1610437128;;False;{};giza43i;True;t3_kvmgoo;False;True;t1_giza311;/r/anime/comments/kvmgoo/couple_anime_rap_bars/giza43i/;1610500022;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sciencebottle;;;[];;;;text;t2_3a8pxec0;False;False;[];;Akatsuki no Yona! I'm sad that it never got picked up again, the art was beautiful. At least the manga is still going strong and I'm glad the anime at least wrapped up a major loose end with the OVAs.;False;False;;;;1610437186;;False;{};giza6dn;False;t3_kvk1m9;False;False;t3_kvk1m9;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/giza6dn/;1610500061;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Crazyboy14081;;;[];;;;text;t2_4f985a6n;False;False;[];;Kill la kill;False;False;;;;1610437319;;False;{};gizabkk;False;t3_kvlhdu;False;False;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/gizabkk/;1610500147;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;"I don't know if watching the OVAs while the series is airing is a good idea if you're an anime only. I feel like it's going to spoil events that might occur during the show. The first half of the first OVA is the same exactly story as the first episode of the anime, and if it's going to be similar enough, then I don't know if watching the OVA is a good idea. - -Also, currently, the OVA series only has 4 episodes. The 5th and 6th episodes are coming in May.";False;False;;;;1610437320;;False;{};gizabli;False;t3_kvme3d;False;False;t3_kvme3d;/r/anime/comments/kvme3d/if_you_are_watching_horimiya_consider_watching/gizabli/;1610500148;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Verzwei;;;[];;;;text;t2_cmzqb;False;False;[];;"**Spice & Wolf.** Inject it directly into my veins. - -I would love to see more **Mayo Chiki.** The manga is an adaptation of the LN series, but the manga abridges the full story, reaching the LN's end-point. The one season of anime got almost exactly half-way through the manga's content, meaning just one more season could do the rest of the manga and conclude the story. - -**Interviews with Monster Girls,** but that would require the author to write more than 90 new pages per year. It's been... 3? 4? Many years since the anime ended and there _still_ isn't enough manga content to fill another season. The author's pace is positively glacial and being a huge fan of this series is suffering. - -Cheating, since it just completed a new season, but I hope **DanMachi** keeps getting made. I really like the world and the cast of the series and I hope to be able to spend as much time with it as possible.";False;False;;;;1610437383;;False;{};gizadzp;False;t3_kvk1m9;False;True;t3_kvk1m9;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/gizadzp/;1610500188;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JadeDragon56;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/JadeDragon56;light;text;t2_ee93o;False;False;[];;Just watch the recap movies if you are short on time. If not then start from the beginning. You can easily watch it all before the next episode comes out. About 6hrs a day 😁;False;False;;;;1610437519;;False;{};gizaj61;False;t3_kvmtap;False;False;t3_kvmtap;/r/anime/comments/kvmtap/should_i_watch_attack_on_titan_now_or_wait/gizaj61/;1610500275;29;True;False;anime;t5_2qh22;;0;[]; -[];;;JadeDragon56;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/JadeDragon56;light;text;t2_ee93o;False;False;[];;I'll be joining you guys if ya don't mind 🤣;False;False;;;;1610437589;;False;{};gizalui;False;t3_kvmjmw;False;True;t1_giz8liu;/r/anime/comments/kvmjmw/what_is_this_anime/gizalui/;1610500320;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JadeDragon56;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/JadeDragon56;light;text;t2_ee93o;False;False;[];;Its certainly something;False;False;;;;1610437624;;False;{};gizan7w;False;t3_kvmgoo;False;True;t3_kvmgoo;/r/anime/comments/kvmgoo/couple_anime_rap_bars/gizan7w/;1610500344;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Froltz;;;[];;;;text;t2_kiqva;False;True;[];;Not bad, kid :');False;False;;;;1610437907;;False;{};gizaxy7;False;t3_kvkl21;False;True;t1_giyzy3h;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/gizaxy7/;1610500536;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Boujoulo;;;[];;;;text;t2_6iczsif5;False;False;[];;Wdym by art videos? Can you expand more on what you are doing and maybe post a link to your channel?;False;False;;;;1610438385;;False;{};gizbgbg;False;t3_kvmyfz;False;True;t3_kvmyfz;/r/anime/comments/kvmyfz/need_help_for_my_next_video/gizbgbg/;1610500848;1;True;False;anime;t5_2qh22;;0;[]; -[];;;axel360;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/axel360;light;text;t2_qbk7n;False;False;[];;Rose of Versailles!!!!!;False;False;;;;1610438591;;False;{};gizbo60;False;t3_kvlhdu;False;True;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/gizbo60/;1610500983;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LadyKuzunoha;;;[];;;;text;t2_15f0ra;False;False;[];;It's a fun show, but man, if there were ever a crystal clear example of why MAL ratings should be taken with a grain of salt, that would be it.;False;False;;;;1610438657;;False;{};gizbqnp;False;t3_kvimj5;False;True;t1_giz70ps;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/gizbqnp/;1610501027;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JakeTheFake8;;;[];;;;text;t2_86j3emld;False;False;[];;"Definitely, I’m watching like 10 original anime this season and this, jobless reincarnation, and horimiya are the only standouts. - -Edit: Sorry forgot Sk8";False;False;;;;1610438683;;1610467081.0;{};gizbrmm;False;t3_kvmb71;False;False;t3_kvmb71;/r/anime/comments/kvmb71/who_else_liked_kemono_jihen_ep_1/gizbrmm/;1610501042;6;True;False;anime;t5_2qh22;;0;[]; -[];;;dietanxiety;;;[];;;;text;t2_3lbnqz88;False;False;[];;I vote start it over from the beginning and pay close attention. I recently rewatched S1-S3 to prepare for S4 and Im glad I did. Refresher on all the goings on and noticed new things. It can be done quickly if you enjoy it. Best.;False;False;;;;1610438804;;False;{};gizbw9b;False;t3_kvmtap;False;False;t3_kvmtap;/r/anime/comments/kvmtap/should_i_watch_attack_on_titan_now_or_wait/gizbw9b/;1610501120;13;True;False;anime;t5_2qh22;;0;[]; -[];;;ChickenCola22;;;[];;;;text;t2_7k6ugx50;False;False;[];;KAMINA IS MY BIGGEST INSPIRATION. DO THE IMPOSSIBLE. BELIEVE IN YOURSELF. Reigens words too I think of often.;False;False;;;;1610438812;;False;{};gizbwkh;False;t3_kvkl21;False;False;t3_kvkl21;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/gizbwkh/;1610501127;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bluecomments;;;[];;;;text;t2_67kvqila;False;False;[];;Hunter x Hunter has an arc featuring such. Not sure if it is what you are looking for though.;False;False;;;;1610438815;;False;{};gizbwok;False;t3_kvl4m6;False;True;t3_kvl4m6;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/gizbwok/;1610501129;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LadyKuzunoha;;;[];;;;text;t2_15f0ra;False;False;[];;Or Jet, if the fur is black. Works on two levels then (Jet Black the character and jet black the color).;False;False;;;;1610438921;;False;{};gizc0oo;False;t3_kvjn32;False;True;t1_giyqnvz;/r/anime/comments/kvjn32/alright_heres_the_deal_i_need_anime_names/gizc0oo/;1610501198;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lil_arts;;;[];;;;text;t2_6eb4wp0c;False;False;[];;Time-lapse [YouTube](https://www.youtube.com/c/lilarts);False;False;;;;1610438935;;False;{};gizc18c;True;t3_kvmyfz;False;False;t1_gizbgbg;/r/anime/comments/kvmyfz/need_help_for_my_next_video/gizc18c/;1610501208;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;">Manga is quite average - -Yet becomes a top selling manga. I’m not even saying it’s a masterpiece, but statements like these baffle me. There’s a reason it achieved that feat, and I’m sure as hell it’s not because it’s “quite average”";False;False;;;;1610439025;;False;{};gizc4kl;False;t3_kvk9yg;False;False;t1_giyukv4;/r/anime/comments/kvk9yg/demon_slayer_fans_manga_or_anime/gizc4kl/;1610501265;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;If I disagree with them they are a popularity poll*, and so they shouldn’t be trusted.;False;False;;;;1610439206;;False;{};gizcbel;False;t3_kvimj5;False;True;t1_giyk92u;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/gizcbel/;1610501384;2;True;False;anime;t5_2qh22;;0;[]; -[];;;m44ever;;;[];;;;text;t2_bbwk4;False;False;[];;to have a ranking assumes an objective parameter to compare with, but wether you like a show is totaly subjective. unless there is some specific asoect being compared, like a historical accuracy, popularity or visual quality, the rating order us irrelevant becayse we all like something else. you need to verbalize what you like and find people who share your taste, then the ranking list any of you create will be relevant.;False;False;;;;1610439373;;False;{};gizchmb;False;t3_kvimj5;False;True;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/gizchmb/;1610501494;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Skyreader13;;;[];;;;text;t2_rixwo;False;False;[];;people like when the thing they love is rated highly;False;False;;;;1610439638;;False;{};gizcrio;False;t3_kvimj5;False;True;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/gizcrio/;1610501667;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Graciaus;;;[];;;;text;t2_vki1t93;False;False;[];;Ratings are only good for seeing what is popular. Many seasonal shows get somewhere in the 6s or low 7s and that doesn't stop me from enjoying them. If I followed MAL ratings those wouldn't even be on my radar.;False;False;;;;1610439825;;False;{};gizcyfi;False;t3_kvimj5;False;True;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/gizcyfi/;1610501784;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chi-sama;;;[];;;;text;t2_12h09p;False;False;[];;No one should give a damn about what MAL thinks, if you looked at their top anime it's blatantly in favor of braindead shonen action. You might as well use a popularity poll to justify why you think Avengers Endgame is the pinnacle of filmmaking.;False;False;;;;1610440141;;False;{};gizda4w;False;t3_kvimj5;False;True;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/gizda4w/;1610501985;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> a girl saves dude by smiling - -what does that even mean? Save how?";False;False;;;;1610440289;;False;{};gizdfkd;False;t3_kvmjmw;False;True;t3_kvmjmw;/r/anime/comments/kvmjmw/what_is_this_anime/gizdfkd/;1610502078;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CosmicPenguin_OV103;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cosmic_Penguin;light;text;t2_1ufwqhs7;False;True;[];;"Had the story been from a new writer it would be judged as a mediocre anime with individual shining moments of comedies that people will forget within a year or two. - -Unfortunately this is from the hands of a writer who really is among the industry's top favorites.";False;False;;;;1610440297;;False;{};gizdfvt;False;t3_kvegzd;False;True;t3_kvegzd;/r/anime/comments/kvegzd/without_spoiling_anything_is_the_day_i_became_a/gizdfvt/;1610502084;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AshenOwn;;MAL;[];;https://myanimelist.net/profile/Lazysunflower;dark;text;t2_xtici;False;False;[];;Oh i just finished rewatching it a couple of weeks ago. This show is definitely one of my favourites. I'm looking forward to the discussions, especially after the opening changes.;False;False;;;;1610440468;;False;{};gizdm1b;False;t3_kvfuei;False;False;t3_kvfuei;/r/anime/comments/kvfuei/nagi_no_asukaraa_lull_in_the_sea_rewatch_schedule/gizdm1b/;1610502190;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chris10023;;;[];;;;text;t2_6mgro;False;False;[];;"Oh that, while it was annoying, he just got too excited, he's not used to being around her in that state. I did go back and check, he doesn't shake her, but he does grab her shoulders to get her to look at him, and she's not used to him yet (and doesn't remember him yet) so she panics. Same with the game, he gets too into it and forgets that she's not as dexterous as she was, though he probably should have gotten her a more simpler game to be honest. - -But yeah, it was a little annoying, but he's just a kid short on time and trying to to get her to remember him before that time is up, He even asks himself if he's doing the right thing after she throws a fit after dying in the game. He does (reluctantly) accept having failed at it and leaves, before Hina yells out to him. - -Then again, that caretaker should have taught him how to act around her rather than just tell him. He had to figure that out himself. She also left out how she fears men due to the surgery until after he touched her and she freaked out, something you probably should have told him before entering the room. - -I can understand where you're coming from though.";False;False;;;;1610440519;;False;{};gizdnvn;True;t3_kvjtk6;False;False;t1_giz9bdv;/r/anime/comments/kvjtk6/so_i_just_got_done_watching_the_day_i_became_a_god/gizdnvn/;1610502222;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Skyreader13;;;[];;;;text;t2_rixwo;False;False;[];;"Funny coincidence, i was a big fan of Luffy back then and i decided to copy some of his aspect, that he never held back on doing whatever he want. I did it probably just because its easy to do (convenience). - -Turns out, this is not a very good thing. There are research done that conclude that people who is very good at holding back (for better reward later) on average is going to be **more successful** that those who cant hold back. Google ""kid marshmallow experiment"" for more info on that. - -And I just realized that now. Lets just say it took me quite a bit of time to finish my university even tho I was considered pretty smart (IQ higher than average is one of the indication). Its just that i took bad decision after bad decision due to me being unable to hold back. - -Pretty sure that, thats not the only reason i kinda ""failed"" in life. but im sure that is one of them.";False;False;;;;1610440596;;False;{};gizdqn9;False;t3_kvkl21;False;True;t3_kvkl21;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/gizdqn9/;1610502269;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Siendra;;;[];;;;text;t2_9z7nk;False;False;[];;Rokka no Yuusha.;False;False;;;;1610440636;;False;{};gizds3r;False;t3_kvk1m9;False;False;t3_kvk1m9;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/gizds3r/;1610502294;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Difficult_Version873;;;[];;;;text;t2_8smewv1g;False;False;[];;Saved him from suicide by smiling at him;False;False;;;;1610440825;;False;{};gizdz1y;True;t3_kvmjmw;False;True;t1_gizdfkd;/r/anime/comments/kvmjmw/what_is_this_anime/gizdz1y/;1610502424;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Retromorpher;;;[];;;;text;t2_3x42wxsp;False;False;[];;"If you mean a child saves an adult by smiling - it's likely Karakuri Circus- but I'm fairly sure that's not on Netflix. - -Tenrou: Sirius the Jaeger has a scene with a girl beating a dude with her luggage and is on Netflix - but I can't remember anything about smiles saving people. - -Sakura Quest has a scene of a girl beating someone with a briefcase in the first episode. - -Edit: With the knowledge that this was a suicidal man saved from depression I doubt any of these shows are correct.";False;False;;;;1610440870;;1610441278.0;{};gize0os;False;t3_kvmjmw;False;True;t3_kvmjmw;/r/anime/comments/kvmjmw/what_is_this_anime/gize0os/;1610502452;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610440945;;False;{};gize3di;False;t3_kvmjmw;False;True;t1_gize0os;/r/anime/comments/kvmjmw/what_is_this_anime/gize3di/;1610502500;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AshenOwn;;MAL;[];;https://myanimelist.net/profile/Lazysunflower;dark;text;t2_xtici;False;False;[];;"I'd say both are pretty much the same. Fun characters, good comedy, but then when it gets serious it's not well executed. Charlotte suffered more from the 12 episode format, but it had a stronger plot. I'd say i prefered the characters, and the earlier episodes of the day when i became a god way more, but the plot was pretty bad. - -I'm not particularly interested in Maeda, but i somehow watched most of his works, since they were animated by P.A. Works, and KyoAni, my favourite studios. My conclusion is that he sould give up on drama, and sadness, and just focus on the comedy, which was in my opinion the strongest aspect of his shows.";False;False;;;;1610440972;;False;{};gize4c5;False;t3_kvjtk6;False;False;t1_giz2cye;/r/anime/comments/kvjtk6/so_i_just_got_done_watching_the_day_i_became_a_god/gize4c5/;1610502518;4;True;False;anime;t5_2qh22;;0;[]; -[];;;25_Oranges;;;[];;;;text;t2_6k8wiuc1;False;False;[];;That part of the show are the discussions I've been looking forward to the most :);False;False;;;;1610441044;;False;{};gize6wg;True;t3_kvfuei;False;True;t1_gizdm1b;/r/anime/comments/kvfuei/nagi_no_asukaraa_lull_in_the_sea_rewatch_schedule/gize6wg/;1610502565;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AshenOwn;;MAL;[];;https://myanimelist.net/profile/Lazysunflower;dark;text;t2_xtici;False;False;[];;I meant more in the sense that the second opening is just beautiful, both the visuals and music, but yes, the second cour is definitely one of the highlights of the show.;False;False;;;;1610441188;;False;{};gizec75;False;t3_kvfuei;False;True;t1_gize6wg;/r/anime/comments/kvfuei/nagi_no_asukaraa_lull_in_the_sea_rewatch_schedule/gizec75/;1610502660;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Al-Pharazon;;;[];;;;text;t2_1s32gw1x;False;False;[];;Definitely Garden of the Sinners,;False;False;;;;1610441379;;False;{};gizej4z;False;t3_kvlhdu;False;False;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/gizej4z/;1610502783;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;"Soul Eater has IMO a badass female mc but she's not an adult. - -Also AOT has lots of strong female characters that many consider badass.";False;False;;;;1610441584;;False;{};gizeqk7;False;t3_kvlhdu;False;True;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/gizeqk7/;1610502924;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sdd264;;;[];;;;text;t2_1g5wqrbo;False;False;[];;I would like to watch this one. Is it really that good?;False;False;;;;1610441941;;False;{};gizf3a8;False;t3_kvlhdu;False;True;t1_gizbo60;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/gizf3a8/;1610503152;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nuelinho;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/nuelinho;light;text;t2_1sdtogm4;False;False;[];;Ikebukuro West Gate Park was about gangs. Dope anime in the last season.;False;False;;;;1610441961;;False;{};gizf41n;False;t3_kvl4m6;False;True;t3_kvl4m6;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/gizf41n/;1610503166;1;True;False;anime;t5_2qh22;;0;[]; -[];;;25_Oranges;;;[];;;;text;t2_6k8wiuc1;False;False;[];;Definitely. It has a lot of symbolsm and really represents the show well.;False;False;;;;1610441981;;False;{};gizf4r0;True;t3_kvfuei;False;True;t1_gizec75;/r/anime/comments/kvfuei/nagi_no_asukaraa_lull_in_the_sea_rewatch_schedule/gizf4r0/;1610503179;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Retromorpher;;;[];;;;text;t2_3x42wxsp;False;False;[];;Is it 'Sing a bit of Harmony'? If so it hasn't actually aired yet and would explain why you couldn't find it.;False;False;;;;1610442082;;False;{};gizf8du;False;t3_kvi0z1;False;True;t3_kvi0z1;/r/anime/comments/kvi0z1/movie_i_cant_find/gizf8du/;1610503240;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KingKurai;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;http://myanimelist.net/profile/xspookydarknessx;light;text;t2_4dfy7;False;False;[];;I had great disdain for Charlotte as it aired, so really any follow up was guaranteed to be better for me. I basically went into The Day I Became God expecting unsalvageable garbage, so I was pleasantly surprised by the 5/10 I ended up giving it.;False;False;;;;1610442114;;False;{};gizf9j3;False;t3_kvjtk6;False;True;t1_gize4c5;/r/anime/comments/kvjtk6/so_i_just_got_done_watching_the_day_i_became_a_god/gizf9j3/;1610503260;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Uffen90;;;[];;;;text;t2_hv323;False;False;[];;Not often I see SYD referred to here. It’s a really great anime. Really looking forward to the new movie this year.;False;False;;;;1610442248;;False;{};gizfebn;False;t3_kvnbhr;False;True;t3_kvnbhr;/r/anime/comments/kvnbhr/little_girl_seitokai_yakuindomo/gizfebn/;1610503348;80;True;False;anime;t5_2qh22;;0;[]; -[];;;ODMAN03;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Protogeist/;light;text;t2_16pj5i;False;False;[];;That Stockholm syndrome shit was already weird as fuck, but the series just kind of turns into a milquetoast isekai with any real character after the first couple of episodes.;False;False;;;;1610442377;;False;{};gizfiux;False;t3_kvjr0g;False;True;t3_kvjr0g;/r/anime/comments/kvjr0g/what_are_your_guys_thoughts_on_rising_of_the/gizfiux/;1610503427;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okokokok1111;;;[];;;;text;t2_5ca3lfb5;False;False;[];;"I personally don't think that something that you find ""pretty good"" is worth a 7.5. For me a 7.5 is quite close to a ""very good"" (which is an 8/10) - -Other than that, i kept on thinking how i couldn't care less about what was happening and how everything seemed weirdly contrived. For example the last few episodes, the one about mahjong, and even the one about Izanami's mother all felt like that. - -The last few episodes made me question Yota's brain more than a few times making it hard to watch every time he screamed to Hina. - -All in all, i definitely didn't enjoy it, but if you did, that's perfectly fine.";False;False;;;;1610442400;;False;{};gizfjo2;False;t3_kvjtk6;False;False;t3_kvjtk6;/r/anime/comments/kvjtk6/so_i_just_got_done_watching_the_day_i_became_a_god/gizfjo2/;1610503440;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;The OVAs are adapting the Webcomic while the new anime is adapting the Manga adaptation of the Webcomic. That's not really the same thing between the two and that's why they look different.;False;False;;;;1610442465;;False;{};gizfm10;False;t3_kvme3d;False;True;t3_kvme3d;/r/anime/comments/kvme3d/if_you_are_watching_horimiya_consider_watching/gizfm10/;1610503482;3;True;False;anime;t5_2qh22;;0;[]; -[];;;nikos_strlkss;;;[];;;;text;t2_5xhq8iu0;False;False;[];;">I don't have time to rewatch the previous episodes right now - -You say that but apparently people can't read 🙄. Anyway, I watched the movie Attack on Titan:Chronicle a little before S4 started. It is a two hour movie that covers most of the plot points and events of the first three seasons. Keep in mind, it is not meant for enjoyment. It is done really quickly and puts about 50 hours of content into a 2 hour movie. So it is only meant to be watched by people who wanted to have a recap of the first three seasons before the final season started. Of course, if you decide to wait and then start the entire series from the beginning you will have way more fun but if you want to start the final season already, then go with this movie.";False;False;;;;1610442578;;False;{};gizfq1v;False;t3_kvmtap;False;False;t3_kvmtap;/r/anime/comments/kvmtap/should_i_watch_attack_on_titan_now_or_wait/gizfq1v/;1610503555;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Dollamlg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Sh0ckwave;light;text;t2_yhm6q;False;False;[];;"Claymore, but preferably read the manga after as the anime has a pretty rough original ending. - -Princess Principal is another one, but not all of them are adults.";False;False;;;;1610442858;;False;{};gizfzzl;False;t3_kvlhdu;False;False;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/gizfzzl/;1610503731;5;True;False;anime;t5_2qh22;;0;[]; -[];;;dreamse11er;;;[];;;;text;t2_7pw9xkkh;False;False;[];;"I think we have different definition of not holding back. For me, it's about not holding back on doing things that would make me closer to my goals. If my short term goal is, say, a fitter body, then of course I need to hold back on unhealthy foods and NOT hold back on gym. So I would just go ape shit in the gym for the fitter body ahaha. - - -I've seen that marshmallow experiment and yeah I agree with what you said. But I think it ties in with the goals too. In real life we have a more down to earth goals unlike One Piece. Wait I'm getting lost with this ahahaa. - - -Anyways LONG STORY SHORT. Luffy does whatever he wants but those wants are, how do I say this, guided (?) by his values. I have my own set of values too and my top 5 values govern my actions, my wants and needs. - - -If you feel as though you've failed, maybe you need to know your values in life first because if your success doesn't fit your values, then yes that's a failure in life. - - -If you're interested my most important values are: -1. Curiosity -2. Freedom -3. Integrity -4. Purpose -5. Connection - - -Right now I kinda feel like a failure too because I'm not as free as I want to be. But I'm still curious in a lot of aspects in my life. I now know my purpose and I'm pursuing it. I try to build connections with people and places (like a feeling, anyways). - - -I know that if I keep on my purpose I will be as free as I can. -Thank you for getting up to this point of my ted talk.";False;False;;;;1610442997;;False;{};gizg4vx;True;t3_kvkl21;False;True;t1_gizdqn9;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/gizg4vx/;1610503815;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dreamse11er;;;[];;;;text;t2_7pw9xkkh;False;False;[];;That's some great words ringing in your head. Be careful tho hahaha you might try to do things that are physically imposible when you're too hyped ahaha;False;False;;;;1610443162;;False;{};gizgaqh;True;t3_kvkl21;False;True;t1_gizbwkh;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/gizgaqh/;1610503916;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BossandKings;;;[];;;;text;t2_5ifr53k7;False;False;[];;I'm happy to be a part of this rewatch, i'll watch this show for the first time.;False;False;;;;1610443187;;False;{};gizgbly;False;t3_kvfuei;False;True;t3_kvfuei;/r/anime/comments/kvfuei/nagi_no_asukaraa_lull_in_the_sea_rewatch_schedule/gizgbly/;1610503932;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dreamse11er;;;[];;;;text;t2_7pw9xkkh;False;False;[];;haha thanks, idk if it's how the reddit algorithm works but I'm trying to engage more people. This is my first post aha;False;False;;;;1610443235;;False;{};gizgdaj;True;t3_kvkl21;False;True;t1_giz73k9;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/gizgdaj/;1610503962;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AayushBhai;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AayushBhai;light;text;t2_25drh9az;False;False;[];;Probably war hammer titan from aot. Seems to be the most relevant.;False;False;;;;1610443644;;False;{};gizgrqr;False;t3_kvmyfz;False;True;t3_kvmyfz;/r/anime/comments/kvmyfz/need_help_for_my_next_video/gizgrqr/;1610504213;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okbuddybutbruh;;;[];;;;text;t2_9ow7haip;False;False;[];;Koe na katachi?;False;False;;;;1610443671;;False;{};gizgsoq;False;t3_kvmjmw;False;True;t1_gizdz1y;/r/anime/comments/kvmjmw/what_is_this_anime/gizgsoq/;1610504230;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Left-Chance-4564;;;[];;;;text;t2_7p92oo57;False;False;[];;AoT has some badass female characters especially in the last season.;False;False;;;;1610443900;;False;{};gizh0xb;False;t3_kvlhdu;False;True;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/gizh0xb/;1610504368;2;True;False;anime;t5_2qh22;;0;[]; -[];;;25_Oranges;;;[];;;;text;t2_6k8wiuc1;False;False;[];;I really hope you enjoy it!;False;False;;;;1610444298;;False;{};gizhf25;True;t3_kvfuei;False;True;t1_gizgbly;/r/anime/comments/kvfuei/nagi_no_asukaraa_lull_in_the_sea_rewatch_schedule/gizhf25/;1610504612;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lil_arts;;;[];;;;text;t2_6eb4wp0c;False;False;[];;"Can't find any good reference pic ;(";False;False;;;;1610444333;;False;{};gizhgc2;True;t3_kvmyfz;False;True;t1_gizgrqr;/r/anime/comments/kvmyfz/need_help_for_my_next_video/gizhgc2/;1610504635;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AayushBhai;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AayushBhai;light;text;t2_25drh9az;False;False;[];;you’d have to look in the manga sides for that unfortunately;False;False;;;;1610444371;;False;{};gizhhn8;False;t3_kvmyfz;False;True;t1_gizhgc2;/r/anime/comments/kvmyfz/need_help_for_my_next_video/gizhhn8/;1610504657;2;True;False;anime;t5_2qh22;;0;[]; -[];;;4twinkie;;;[];;;;text;t2_nek4g;False;False;[];;Monster;False;False;;;;1610444652;;False;{};gizhrei;False;t3_kvkml3;False;True;t3_kvkml3;/r/anime/comments/kvkml3/death_note_or_monster/gizhrei/;1610504830;2;True;False;anime;t5_2qh22;;0;[]; -[];;;4twinkie;;;[];;;;text;t2_nek4g;False;False;[];;I enjoyed it but i got a weakness for isekais lol;False;False;;;;1610444944;;False;{};gizi1n8;False;t3_kvjr0g;False;True;t3_kvjr0g;/r/anime/comments/kvjr0g/what_are_your_guys_thoughts_on_rising_of_the/gizi1n8/;1610505005;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thiosa;;;[];;;;text;t2_44omdoe7;False;False;[];;Claymore, potentially :);False;False;;;;1610445009;;False;{};gizi3y1;False;t3_kvlhdu;False;False;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/gizi3y1/;1610505045;2;True;False;anime;t5_2qh22;;0;[];True -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Generic isekai, clearly not the studio's most inspired work, only relevant because it's the incel power fantasy and anti SJW bait;False;False;;;;1610445090;;False;{};gizi6rv;False;t3_kvjr0g;False;True;t3_kvjr0g;/r/anime/comments/kvjr0g/what_are_your_guys_thoughts_on_rising_of_the/gizi6rv/;1610505094;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;You can't adapt small or unfinished arcs outside of an OVA or anything though;False;False;;;;1610445226;;False;{};gizibhg;False;t3_kvk1m9;False;True;t1_giyt4us;/r/anime/comments/kvk1m9/what_are_some_incomplete_anime_adaptations_you/gizibhg/;1610505174;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gingenhagen;;;[];;;;text;t2_3fo3s;False;False;[];;If you like realistic, the recent show Wave Listen to Me!;False;False;;;;1610445423;;False;{};gizii97;False;t3_kvlhdu;False;True;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/gizii97/;1610505301;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> Jäegar - -That's an interesting butchering of the family name Jäger which Yaeger is derived of - -But Yuri is just a human name? - -call him Hawk, when you walk him together you can be the Band of the Hawk";False;False;;;;1610445455;;False;{};gizijd8;False;t3_kvjn32;False;True;t3_kvjn32;/r/anime/comments/kvjn32/alright_heres_the_deal_i_need_anime_names/gizijd8/;1610505321;2;True;False;anime;t5_2qh22;;0;[]; -[];;;81Ranger;;;[];;;;text;t2_fgx7gw;False;False;[];;It makes me hate the overhyped shows more, whether they are good or not - especially if I think they're not *that* good.;False;False;;;;1610445682;;False;{};gizir6z;False;t3_kvimj5;False;True;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/gizir6z/;1610505464;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"just look at the manga or on pixiv - -You should also think about if you are ok with doxxing yourself through your e-mail address on youtube";False;False;;;;1610445982;;False;{};gizj1cq;False;t3_kvmyfz;False;True;t1_gizhgc2;/r/anime/comments/kvmyfz/need_help_for_my_next_video/gizj1cq/;1610505645;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thiosa;;;[];;;;text;t2_44omdoe7;False;False;[];;"If one wishes to obtain something, something of equal value must be given - life is a constant line-up of trade-offs and it is my responsibility to choose between which things I wish to accomplish and what I need to sacrifice to obtain it. Put differently, nothing breeds nothing. I cannot expect to obtain a result if I’m not willing to invest anything. - -I will never commit suicide as life is about the struggle of passing through it and there’s always a light at the end of the tunnel, even if I can’t see it - not sure which shounen protagonist inspired this (probably almost every one haha). - -If you really put your all into achieving a dream, you can do it (mostly) - this one comes from Naruto, Kamina and many more. That said, it might take too many sacrifices to achieve your goal, meaning you’re not actually willing to achieve it (see point 1). The most obvious sacrifice being time (a lot of time, even decades). - -True friends are precious (probably Fairy Tail). - -“We didn’t have you because we wanted something from you. We had you because we wanted to do something for you.” - Subaru’s mom to her son. Haven’t incorporated this one yet, as I’m not a parent, but I strive to incorporate it as soon as I have kids.";False;False;;;;1610446175;;False;{};gizj7xw;False;t3_kvkl21;False;True;t3_kvkl21;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/gizj7xw/;1610505765;2;True;False;anime;t5_2qh22;;0;[];True -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610446273;;False;{};gizjbfk;False;t3_kvmyfz;False;True;t1_gizj1cq;/r/anime/comments/kvmyfz/need_help_for_my_next_video/gizjbfk/;1610505830;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nolander1;;;[];;;;text;t2_3883fbur;False;False;[];;My shoutout is for black clover Ed New page;False;False;;;;1610446295;;False;{};gizjc5q;False;t3_kvegi9;False;True;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/gizjc5q/;1610505844;2;True;False;anime;t5_2qh22;;0;[]; -[];;;zest88;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/zesty79740555;light;text;t2_5tcnkyer;False;False;[];; [**91 Days**](https://myanimelist.net/anime/32998/91_Days);False;False;;;;1610446655;;False;{};gizjopz;False;t3_kvl4m6;False;True;t3_kvl4m6;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/gizjopz/;1610506069;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ato07;;;[];;;;text;t2_7b17op04;False;False;[];;I've only seen season 1 back when it was airing. I plan to wait for the final season to end and binge it.;False;False;;;;1610447659;;False;{};gizknwr;False;t3_kvmtap;False;False;t3_kvmtap;/r/anime/comments/kvmtap/should_i_watch_attack_on_titan_now_or_wait/gizknwr/;1610506765;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Marciniakoso;;;[];;;;text;t2_ujhx55x;False;False;[];;Kara no kyoukai;False;False;;;;1610447946;;False;{};gizkxyc;False;t3_kvlhdu;False;True;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/gizkxyc/;1610506941;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dreamse11er;;;[];;;;text;t2_7pw9xkkh;False;False;[];;HAHAHHA YES;False;False;;;;1610447957;;False;{};gizkyam;True;t3_kvkl21;False;True;t1_giz6xxo;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/gizkyam/;1610506946;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dreamse11er;;;[];;;;text;t2_7pw9xkkh;False;False;[];;The second one is interesting!;False;False;;;;1610447996;;False;{};gizkzlj;True;t3_kvkl21;False;True;t1_giz71ey;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/gizkzlj/;1610506968;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dreamse11er;;;[];;;;text;t2_7pw9xkkh;False;False;[];;Damn, I forgot about that. I haven't thought about nervousness like that. Thank you for sharing.;False;False;;;;1610448069;;False;{};gizl26m;True;t3_kvkl21;False;True;t1_giz58t9;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/gizl26m/;1610507012;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;"Demon slayer sold a total of 5 million copies when it had 13 volumes to its name. This means 400,000 copies or so of each volume were sold. After volume 13 the anime started and now it has over 102 million with 23 volumes averaging out to about 4.4 million copies of each volume. That’s a 1000% increase after the anime. - -Most anime is made to promote manga and it did its job very well. But something that’s popular and has hype does not necessarily mean it’s good. - -I want to make it clear I mean no disrespect to the series, I would fight someone to the death to show that the demon slayer **anime** is good. I personally love every aspect of it. **But** the manga is filled with a bunch of scuffed drawings, inconsistencies, and other issues. I won’t go into anymore detail about stuff such as ending in order to avoid spoilers but I have hope ufotable could fix it if they adapted the whole series. Overall it’s still an okay manga but the anime is on a completely different scale. - -I assume you haven’t read the manga based on your comment so if that’s case, then keep it that way. You’ll enjoy it much more if you’re an anime only.";False;False;;;;1610448092;;False;{};gizl2ys;False;t3_kvk9yg;False;True;t1_gizc4kl;/r/anime/comments/kvk9yg/demon_slayer_fans_manga_or_anime/gizl2ys/;1610507026;1;True;False;anime;t5_2qh22;;0;[]; -[];;;feffany;;;[];;;;text;t2_t4dxm;False;False;[];;"Fanmade recaps can be helpful if you're just looking to refresh your memory. Like [this](https://www.youtube.com/watch?v=Lw3QgwHQfzA) or [this](https://www.reddit.com/r/ShingekiNoKyojin/comments/ko1jot/anime_season_4_episode_4_spoilers_summary_of_the/). - -The OVAs aren't necessary for understanding the events of the main story, but the ones with Levi and Annie are cool if you get the time to check them out.";False;False;;;;1610448149;;False;{};gizl4zj;False;t3_kvmtap;False;True;t3_kvmtap;/r/anime/comments/kvmtap/should_i_watch_attack_on_titan_now_or_wait/gizl4zj/;1610507063;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tiago97;;MAL;[];;http://myanimelist.net/animelist/Tiago97;dark;text;t2_gmadb;False;False;[];;In this case the recap movies might be ideal. There are 3 that cover the parts that were uninteresting to OP, and then he can rewatch the third season.;False;False;;;;1610448184;;False;{};gizl692;False;t3_kvmtap;False;False;t1_gizaj61;/r/anime/comments/kvmtap/should_i_watch_attack_on_titan_now_or_wait/gizl692/;1610507086;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;It was a good episode. I had zero expectations from it but it surprised me.;False;False;;;;1610448239;;False;{};gizl88h;False;t3_kvmb71;False;False;t3_kvmb71;/r/anime/comments/kvmb71/who_else_liked_kemono_jihen_ep_1/gizl88h/;1610507121;8;True;False;anime;t5_2qh22;;0;[]; -[];;;dreamse11er;;;[];;;;text;t2_7pw9xkkh;False;False;[];;I feel like the first one is from Full Alchemist. Those are great values to live by. Time and energy really are precious, we really need to be careful on where to put them :)) that's awesome. I think, with this values, you will be a great parent.;False;False;;;;1610448334;;False;{};gizlblu;True;t3_kvkl21;False;True;t1_gizj7xw;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/gizlblu/;1610507181;2;True;False;anime;t5_2qh22;;0;[]; -[];;;plopperi;;;[];;;;text;t2_7du1vmy8;False;False;[];;Start from the beginning, also watch the ovas some of them are really good.;False;False;;;;1610448354;;False;{};gizlcbb;False;t3_kvmtap;False;True;t3_kvmtap;/r/anime/comments/kvmtap/should_i_watch_attack_on_titan_now_or_wait/gizlcbb/;1610507194;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thiosa;;;[];;;;text;t2_44omdoe7;False;False;[];;It’s from FMA, yes :) Thank you! Very sweet of you;False;False;;;;1610448423;;False;{};gizleuk;False;t3_kvkl21;False;True;t1_gizlblu;/r/anime/comments/kvkl21/what_anime_character_values_have_you_incorporated/gizleuk/;1610507239;1;True;False;anime;t5_2qh22;;0;[];True -[];;;wtfduud;;;[];;;;text;t2_bv3xi;False;False;[];;"As always, Hunting For Your Dream is a bit disadvantaged, because the ending video doesn't play the sick guitar intro that usually plays before the credits actually start. - -[Here's one that does](https://www.youtube.com/watch?v=cott-MKdHWA)";False;False;;;;1610448950;;False;{};gizlxup;False;t3_kvegi9;False;False;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/gizlxup/;1610507577;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AceOfSerberit;;;[];;;;text;t2_1jfw6dhg;False;False;[];;One of my all time favourite anime!;False;False;;;;1610449238;;False;{};gizm8i1;False;t3_kvnbhr;False;True;t3_kvnbhr;/r/anime/comments/kvnbhr/little_girl_seitokai_yakuindomo/gizm8i1/;1610507763;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Cyclone_96;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CrazyCyclone96;light;text;t2_es52y62;False;False;[];;"Ratings are extremely subjective. - -If I even somewhat enjoy an anime, I’d probably give it around a 7. - -Probably not a great thing and I should probably do something about that,but when people are talking about how they felt about shows you should probably ignore what they rated it and just see what they have to say about t.";False;False;;;;1610449509;;False;{};gizmigv;False;t3_kvjtk6;False;True;t1_gizfjo2;/r/anime/comments/kvjtk6/so_i_just_got_done_watching_the_day_i_became_a_god/gizmigv/;1610507932;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610449556;;False;{};gizmkbm;False;t3_kvjtk6;False;True;t1_gizmigv;/r/anime/comments/kvjtk6/so_i_just_got_done_watching_the_day_i_became_a_god/gizmkbm/;1610507965;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-TribuneAquila;;;[];;;;text;t2_9ntwx789;False;False;[];;Watch the recap movies and Ovas and you should be able to catch up and enjoy it.;False;False;;;;1610450003;;False;{};gizn14k;False;t3_kvmtap;False;True;t3_kvmtap;/r/anime/comments/kvmtap/should_i_watch_attack_on_titan_now_or_wait/gizn14k/;1610508251;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Natsuki_Nakagawa;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Jepjur/;light;text;t2_4bb0d1ew;False;False;[];;Psycho Pass and Claymore;False;False;;;;1610450506;;False;{};giznjwn;False;t3_kvlhdu;False;True;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/giznjwn/;1610508590;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dankest_niBBa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_314yh1er;False;False;[];;I rewatched the whole thing before the final season aired, and i think it's the best choice.;False;False;;;;1610450627;;False;{};giznogr;False;t3_kvmtap;False;True;t3_kvmtap;/r/anime/comments/kvmtap/should_i_watch_attack_on_titan_now_or_wait/giznogr/;1610508678;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xii4obear;;;[];;;;text;t2_6naom;False;False;[];;This is the jackpot.;False;False;;;;1610450810;;False;{};giznv9l;False;t3_kvlhdu;False;True;t1_gizabkk;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/giznv9l/;1610508798;1;True;False;anime;t5_2qh22;;0;[];True -[];;;Epilex__;;;[];;;;text;t2_6dnttkpo;False;False;[];;Black Lagoon;False;False;;;;1610450958;;False;{};gizo0vp;False;t3_kvlhdu;False;False;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/gizo0vp/;1610508915;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nsjdksbwiwnsjwowbs;;;[];;;;text;t2_9s7ceqdt;False;False;[];;Hot;False;False;;;;1610450985;;False;{};gizo1wo;False;t3_kvnbhr;False;True;t3_kvnbhr;/r/anime/comments/kvnbhr/little_girl_seitokai_yakuindomo/gizo1wo/;1610508934;6;True;False;anime;t5_2qh22;;0;[]; -[];;;elmahir;;;[];;;;text;t2_1r0ibyc0;False;False;[];;It’s in my top 10 favorite animes, it’s so underrated !;False;False;;;;1610451122;;False;{};gizo76j;False;t3_kvnbhr;False;True;t3_kvnbhr;/r/anime/comments/kvnbhr/little_girl_seitokai_yakuindomo/gizo76j/;1610509026;14;True;False;anime;t5_2qh22;;0;[]; -[];;;GotAnySugar;;;[];;;;text;t2_781wc6v2;False;False;[];;Finally some people who appreciate SY *wipes tear from eye;False;False;;;;1610451230;;False;{};gizobc4;False;t3_kvnbhr;False;True;t3_kvnbhr;/r/anime/comments/kvnbhr/little_girl_seitokai_yakuindomo/gizobc4/;1610509103;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Tanya852;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tanya852;light;text;t2_14x5gw;False;False;[];;No. 2 is the highest they got. Still impressive.;False;False;;;;1610451274;;False;{};gizod0a;False;t3_kvimj5;False;True;t1_giz70ps;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/gizod0a/;1610509134;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CallMePuzzle;;;[];;;;text;t2_d04geuf;False;False;[];;Same. I hope more people watch and this gem doesn't go under the radar of all the other good shows this season.;False;False;;;;1610451377;;False;{};gizogvn;False;t3_kvmb71;False;False;t3_kvmb71;/r/anime/comments/kvmb71/who_else_liked_kemono_jihen_ep_1/gizogvn/;1610509199;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Game2015;;;[];;;;text;t2_poe9a;False;False;[];;No thanks to review bombing(?) in response to English localization being cancelled...;False;False;;;;1610451641;;False;{};gizor71;False;t3_kvimj5;False;True;t1_gizod0a;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/gizor71/;1610509377;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bick-my-lalls;;;[];;;;text;t2_4ruqqw6d;False;False;[];;How about gangsta;False;False;;;;1610451826;;False;{};gizoy98;False;t3_kvl4m6;False;True;t3_kvl4m6;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/gizoy98/;1610509498;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ShiroiYokai;;;[];;;;text;t2_6wvaeal4;False;False;[];;u/savevideo;False;False;;;;1610452292;;False;{};gizpgn6;False;t3_kvnbhr;False;True;t3_kvnbhr;/r/anime/comments/kvnbhr/little_girl_seitokai_yakuindomo/gizpgn6/;1610509821;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Xmay18;;;[];;;;text;t2_4vy5a25n;False;False;[];;Does this have the same production studio as Grand Blue? The animation style is almost exactly the same...;False;False;;;;1610452298;;False;{};gizpgvh;False;t3_kvnbhr;False;True;t3_kvnbhr;/r/anime/comments/kvnbhr/little_girl_seitokai_yakuindomo/gizpgvh/;1610509826;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RadioMelon;;;[];;;;text;t2_991sdhh;False;False;[];;Genuine mistake, she's like 3 feet tall.;False;False;;;;1610452327;;False;{};gizpi0w;False;t3_kvnbhr;False;True;t3_kvnbhr;/r/anime/comments/kvnbhr/little_girl_seitokai_yakuindomo/gizpi0w/;1610509845;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Tanya852;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tanya852;light;text;t2_14x5gw;False;False;[];;"Yes, it was vote brigaded after Funi removed it from their catalogue. Some youtuber urged his followers to mass vote it on MAL to stick it to Funi, even though MAL has nothing to do with Funi. - -I'm just saying that #2 is the highest they managed to climb before MAL implemented their new system.";False;False;;;;1610452442;;False;{};gizpmmi;False;t3_kvimj5;False;True;t1_gizor71;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/gizpmmi/;1610509925;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lazeran;;MAL;[];;http://myanimelist.net/animelist/Lazeran;dark;text;t2_d0fns;False;False;[];;Shinsekai no yori;False;False;;;;1610452458;;False;{};gizpn95;False;t3_kvlhdu;False;False;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/gizpn95/;1610509936;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AzureBl-st;;;[];;;;text;t2_5jhhz5i9;False;False;[];;"There was also a one hour YouTube video that nicely recapped everything from S1 to S3P2. - -https://youtu.be/Lw3QgwHQfzA";False;False;;;;1610452539;;False;{};gizpqiv;False;t3_kvmtap;False;False;t1_gizfq1v;/r/anime/comments/kvmtap/should_i_watch_attack_on_titan_now_or_wait/gizpqiv/;1610509995;5;True;False;anime;t5_2qh22;;0;[]; -[];;;FurryCrew;;;[];;;;text;t2_6pdwl;False;True;[];;SYD is THE BEST kind of ecchi content!;False;False;;;;1610452561;;False;{};gizprbx;False;t3_kvnbhr;False;True;t3_kvnbhr;/r/anime/comments/kvnbhr/little_girl_seitokai_yakuindomo/gizprbx/;1610510010;3;True;False;anime;t5_2qh22;;0;[]; -[];;;stargunner;;;[];;;;text;t2_4a979;False;False;[];;this clip gets reposted pretty much every week.;False;False;;;;1610452657;;False;{};gizpv42;False;t3_kvnbhr;False;True;t1_gizfebn;/r/anime/comments/kvnbhr/little_girl_seitokai_yakuindomo/gizpv42/;1610510081;20;True;False;anime;t5_2qh22;;0;[]; -[];;;yameteeeeeeeeee;;;[];;;;text;t2_1krlt9oq;False;False;[];;I love SYD. The jokes are childish but I still laugh like an idiot.;False;False;;;;1610452719;;False;{};gizpxn6;False;t3_kvnbhr;False;True;t3_kvnbhr;/r/anime/comments/kvnbhr/little_girl_seitokai_yakuindomo/gizpxn6/;1610510127;10;True;False;anime;t5_2qh22;;0;[]; -[];;;edgyboi1704;;;[];;;;text;t2_3y3dxsmg;False;False;[];;No matter how many times this gets posted, it still cracks me up to see how she straight up goes for motherf*cker;False;False;;;;1610452741;;False;{};gizpyij;False;t3_kvnbhr;False;True;t3_kvnbhr;/r/anime/comments/kvnbhr/little_girl_seitokai_yakuindomo/gizpyij/;1610510142;11;True;False;anime;t5_2qh22;;0;[]; -[];;;begetdie;;;[];;;;text;t2_4ldrbx5s;False;False;[];;She do be speaking English;False;False;;;;1610452786;;False;{};gizq0ba;False;t3_kvnbhr;False;True;t3_kvnbhr;/r/anime/comments/kvnbhr/little_girl_seitokai_yakuindomo/gizq0ba/;1610510172;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Deadmandream;;;[];;;;text;t2_25v21ud8;False;False;[];;Beelzebub it's about school gangs.;False;False;;;;1610452994;;False;{};gizq8o7;False;t3_kvl4m6;False;True;t3_kvl4m6;/r/anime/comments/kvl4m6/looking_for_anime_about_gangs_and_mafias/gizq8o7/;1610510321;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wuju_Kindly;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/WujuKindly/;light;text;t2_wi5xl;False;False;[];;But sadly it's the only SYD clip that ever gets posted here.;False;False;;;;1610453090;;False;{};gizqcnf;False;t3_kvnbhr;False;True;t1_gizpv42;/r/anime/comments/kvnbhr/little_girl_seitokai_yakuindomo/gizqcnf/;1610510391;9;True;False;anime;t5_2qh22;;0;[]; -[];;;arnav1311;;;[];;;;text;t2_81mzmva;False;False;[];;Watch a YouTube video that pens down the important plot points. I would suggest rewatching for best results but everyone is busy in life so it's understandable.;False;False;;;;1610453301;;False;{};gizqlb8;False;t3_kvmtap;False;True;t3_kvmtap;/r/anime/comments/kvmtap/should_i_watch_attack_on_titan_now_or_wait/gizqlb8/;1610510538;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;"I have read the manga, and enjoyed it until the end. So did millions of people. - -There are other amazingly animated shows, like OPM, MHA, and AoT. Being Shounens, they have wide appeal and demographic too. Why is it that only Demon Slayer got popular as much as it did ? - -It’s because a lot more people enjoyed it. Yes, even the manga. - -Ain’t gonna argue about what’s better and what’s not, cause I definitely love AoT from the above examples, just saying how you justify that Demon Slayer did it all thanks to the adaptation. Yes, it played a part, but good adaptation only takes you so far. - -Care to point out “inconsistencies and other issues?”. Even AoT’s manga has scuffed drawings.";False;False;;;;1610453743;;False;{};gizr3j1;False;t3_kvk9yg;False;True;t1_gizl2ys;/r/anime/comments/kvk9yg/demon_slayer_fans_manga_or_anime/gizr3j1/;1610510850;0;True;False;anime;t5_2qh22;;0;[]; -[];;;GlennTheAlienXD;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_4jc0fx2k;False;False;[];;Hmmm;False;False;;;;1610453776;;False;{};gizr4xi;False;t3_kvnbhr;False;True;t1_gizo1wo;/r/anime/comments/kvnbhr/little_girl_seitokai_yakuindomo/gizr4xi/;1610510873;3;True;False;anime;t5_2qh22;;0;[]; -[];;;legwkio2;;;[];;;;text;t2_3winxodf;False;False;[];;Imo, try to catch up before it ends. This show is huge that once it ends, you'll get spoiled everywhere. Not just here but in SocMed and even in casual conversation.;False;False;;;;1610453785;;False;{};gizr5b5;False;t3_kvmtap;False;True;t3_kvmtap;/r/anime/comments/kvmtap/should_i_watch_attack_on_titan_now_or_wait/gizr5b5/;1610510880;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GlennTheAlienXD;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_4jc0fx2k;False;False;[];;u/savevideo;False;False;;;;1610453795;;False;{};gizr5pg;False;t3_kvnbhr;False;True;t3_kvnbhr;/r/anime/comments/kvnbhr/little_girl_seitokai_yakuindomo/gizr5pg/;1610510887;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610453811;;False;{};gizr6f5;False;t3_kvnbhr;False;True;t1_gizfebn;/r/anime/comments/kvnbhr/little_girl_seitokai_yakuindomo/gizr6f5/;1610510900;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;AceOfSerberit;;;[];;;;text;t2_1jfw6dhg;False;False;[];;Breeded propaganda?;False;False;;;;1610454039;;False;{};gizrg8l;False;t3_kvnbhr;False;True;t1_gizr6f5;/r/anime/comments/kvnbhr/little_girl_seitokai_yakuindomo/gizrg8l/;1610511070;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Meapcuteee;;;[];;;;text;t2_1wlio7dc;False;False;[];;You enjoy the hype? The post episode discussion? If you do then just watch some recap then watch season 4, if not watching the show again would be much better cause when you're caught up to s3p2, watching it again will make a 8/10 jump straight up to a 10/10 cause now you know the what's in the mystery box;False;False;;;;1610454141;;False;{};gizrknw;False;t3_kvmtap;False;True;t3_kvmtap;/r/anime/comments/kvmtap/should_i_watch_attack_on_titan_now_or_wait/gizrknw/;1610511163;1;True;False;anime;t5_2qh22;;0;[]; -[];;;j__hoss;;;[];;;;text;t2_55o12iq0;False;False;[];;I mean, it doesn't have the signature grand blue faces;False;False;;;;1610454307;;False;{};gizrrwk;False;t3_kvnbhr;False;True;t1_gizpgvh;/r/anime/comments/kvnbhr/little_girl_seitokai_yakuindomo/gizrrwk/;1610511286;2;True;False;anime;t5_2qh22;;0;[]; -[];;;XTCrispy;;;[];;;;text;t2_7z81c;False;False;[];;the only reason humans reproduce is because they are brainwashed to do so by big money anime executives;False;False;;;;1610454316;;False;{};gizrs8g;False;t3_kvnbhr;False;True;t1_gizrg8l;/r/anime/comments/kvnbhr/little_girl_seitokai_yakuindomo/gizrs8g/;1610511293;13;True;False;anime;t5_2qh22;;0;[]; -[];;;KuroShiroTaka;;;[];;;;text;t2_qs5po;False;False;[];;"Apparently some Japanese shows have a hidden message directed towards the people there that amount to ""the population here is declining so for the love of god will you just fuck already"" or something like that, someone more informed on this whole thing can explain it better than I can.";False;False;;;;1610454435;;False;{};gizrxk5;False;t3_kvnbhr;False;True;t1_gizrg8l;/r/anime/comments/kvnbhr/little_girl_seitokai_yakuindomo/gizrxk5/;1610511400;5;True;False;anime;t5_2qh22;;0;[]; -[];;;sdd264;;;[];;;;text;t2_1g5wqrbo;False;False;[];;Fallometry. That's all;False;False;;;;1610454791;;False;{};gizsd80;False;t3_kvimj5;False;False;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/gizsd80/;1610511673;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Combatmedic2-47;;;[];;;;text;t2_1yuarn47;False;False;[];;"Seitokai was the one anime I look back to remember my teenage years. -Despite all the lewd jokes, this one always makes me laugh.";False;False;;;;1610454902;;False;{};gizsi3p;False;t3_kvnbhr;False;True;t3_kvnbhr;/r/anime/comments/kvnbhr/little_girl_seitokai_yakuindomo/gizsi3p/;1610511762;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your submission has been removed. - -- To avoid confusion, spam, and/or conflict, your post has been removed as it has already been posted recently. https://www.reddit.com/r/anime/comments/k3vauu - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610454929;moderator;False;{};gizsj9u;False;t3_kvnbhr;False;True;t3_kvnbhr;/r/anime/comments/kvnbhr/little_girl_seitokai_yakuindomo/gizsj9u/;1610511784;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AwesomeJR30;;;[];;;;text;t2_1hp7rh85;False;False;[];;sadly anime isn’t going to be fixing the societal problems there anytime soon. also it’s not exactly “hidden” most of the time lol. [here](https://youtu.be/sx3mQftSMSo) is a great explanation of what is going on there, and some animes are just using cute kids to encourage having kids more, as the population is declining.;False;False;;;;1610455085;;False;{};gizsq6q;False;t3_kvnbhr;False;True;t1_gizrxk5;/r/anime/comments/kvnbhr/little_girl_seitokai_yakuindomo/gizsq6q/;1610511904;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shadowclook21;;;[];;;;text;t2_19zwvbdl;False;False;[];;oh thanks for your explanation because i was about to drop scum's wish never was really into from the beginning just wanted to know what it's about;False;False;;;;1610455161;;False;{};gizstn4;True;t3_kvht83;False;True;t1_giyuuy6;/r/anime/comments/kvht83/how_do_i_not_feel_horrible_while_watching_romance/gizstn4/;1610511964;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ClothesOne5164;;;[];;;;text;t2_3w40alr5;False;False;[];;"Konosuba ""Chomusuke"" - -猫だけど";False;False;;;;1610457059;;False;{};gizvdgy;False;t3_kvjn32;False;True;t3_kvjn32;/r/anime/comments/kvjn32/alright_heres_the_deal_i_need_anime_names/gizvdgy/;1610513689;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Marugado;;;[];;;;text;t2_56v5eqdk;False;False;[];;What about sk8?;False;False;;;;1610457262;;False;{};gizvo1n;False;t3_kvmb71;False;False;t1_gizbrmm;/r/anime/comments/kvmb71/who_else_liked_kemono_jihen_ep_1/gizvo1n/;1610513899;6;True;False;anime;t5_2qh22;;0;[]; -[];;;DrBrachio;;;[];;;;text;t2_149oc9v9;False;False;[];;"Princess Mononoke, Elfen Lied, Psycho Pass, Kaze no Tani no Nausicaa (Adult strong female leads) -Hibike! Euphonium, Mahou Shoujo Madoka Magica (Vast female character cast of high school and middle school girls, respectively, with several strong willed or even badass characters)";False;False;;;;1610457917;;False;{};gizwmxz;False;t3_kvlhdu;False;True;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/gizwmxz/;1610514573;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OingoBoingo-;;;[];;;;text;t2_8cbjydnf;False;False;[];;dude Sk8 was fucking great! Did not think it was going to be that good. Studio Bones delivers another one, hopefully!;False;False;;;;1610459763;;False;{};gizzlk0;False;t3_kvmb71;False;False;t1_gizvo1n;/r/anime/comments/kvmb71/who_else_liked_kemono_jihen_ep_1/gizzlk0/;1610516342;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Marugado;;;[];;;;text;t2_56v5eqdk;False;False;[];;Yeah also think so !;False;False;;;;1610459884;;False;{};gizzt26;False;t3_kvmb71;False;False;t1_gizzlk0;/r/anime/comments/kvmb71/who_else_liked_kemono_jihen_ep_1/gizzt26/;1610516464;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;Kara no Kyoukai;False;False;;;;1610460065;;False;{};gj004cw;False;t3_kvlhdu;False;True;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/gj004cw/;1610516651;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ms-What-If;;;[];;;;text;t2_3dcfng0g;False;False;[];;I know, I accidentally told them that Yuri is a first name, lol (they thought it was a last name I think, which is the closest they are willing to go for human names). (And I actually found Jäegar spelled this way on a website, so they might have gotten it wrong).;False;False;;;;1610460345;;False;{};gj00lks;True;t3_kvjn32;False;True;t1_gizijd8;/r/anime/comments/kvjn32/alright_heres_the_deal_i_need_anime_names/gj00lks/;1610516958;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OingoBoingo-;;;[];;;;text;t2_8cbjydnf;False;False;[];;I didn't even read the description of the show, just pushed play and I agree it was a surprise for sure. Looking forward to more.;False;False;;;;1610460657;;False;{};gj015h5;False;t3_kvmb71;False;False;t1_gizl88h;/r/anime/comments/kvmb71/who_else_liked_kemono_jihen_ep_1/gj015h5/;1610517279;4;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"""ae"" stands in for ""ä"" so Jäegar is some fantasy stuff and not Eren's name - -Maybe try Bara, it basically means corn but it also stands for hardcore yaoi";False;False;;;;1610460824;;False;{};gj01g73;False;t3_kvjn32;False;True;t1_gj00lks;/r/anime/comments/kvjn32/alright_heres_the_deal_i_need_anime_names/gj01g73/;1610517447;2;True;False;anime;t5_2qh22;;0;[]; -[];;;randyripoff;;;[];;;;text;t2_pg4m04;False;False;[];;Gunsmith Cats;False;False;;;;1610461256;;False;{};gj0282x;False;t3_kvlhdu;False;True;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/gj0282x/;1610517894;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610462095;;False;{};gj03r7r;False;t3_kvht83;False;True;t3_kvht83;/r/anime/comments/kvht83/how_do_i_not_feel_horrible_while_watching_romance/gj03r7r/;1610518807;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BIGGIECHEZZE;;;[];;;;text;t2_9br4jffr;False;False;[];;WATCH IT NOW!!!! YOU WONT REGRET IT;False;False;;;;1610462206;;False;{};gj03yk4;False;t3_kvmtap;False;True;t3_kvmtap;/r/anime/comments/kvmtap/should_i_watch_attack_on_titan_now_or_wait/gj03yk4/;1610518930;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Peatrex;;;[];;;;text;t2_8jtr7;False;False;[];;If you dont have time, better wait till you have it. And rewatch the whole thing with ovas.;False;False;;;;1610463139;;False;{};gj05quj;False;t3_kvmtap;False;True;t3_kvmtap;/r/anime/comments/kvmtap/should_i_watch_attack_on_titan_now_or_wait/gj05quj/;1610519980;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ralsei_support_squad;;;[];;;;text;t2_2j72jhiw;False;False;[];;You might be pretty confused during S4 if remember a lot of details since the show moves fast. I'd say rewatch earlier seasons first. The current episode discussion posts will still be here, so you can see what people were talking about as you go along, you just won't be able to actively participate in them.;False;False;;;;1610463573;;False;{};gj06lg8;False;t3_kvmtap;False;True;t3_kvmtap;/r/anime/comments/kvmtap/should_i_watch_attack_on_titan_now_or_wait/gj06lg8/;1610520456;1;True;False;anime;t5_2qh22;;0;[]; -[];;;altathing;;;[];;;;text;t2_jfhm5m;False;False;[];;If they are really low, you know it's bad. If they are really high you know they are top tier, if they are in the middle of the scale, whether it's good or bad is really your judgement.;False;False;;;;1610463865;;False;{};gj0766g;False;t3_kvimj5;False;True;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/gj0766g/;1610520774;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ajver19;;;[];;;;text;t2_3haraaue;False;True;[];;"People like to argue and it's something to argue about. - -That's literally it.";False;False;;;;1610464161;;False;{};gj07r43;False;t3_kvimj5;False;True;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/gj07r43/;1610521095;1;True;False;anime;t5_2qh22;;0;[]; -[];;;soboi12345;;;[];;;;text;t2_11nerd;False;False;[];;"Thank you so much for the reply. I will start reading it form today. - -If you don't mind could you suggest me.some other animes too ? - -Something like this and horimiya ? - -I really liked this two animes for some reason lol - -I am sort a novice on anime watching so would appreciate your input.nl";False;False;;;;1610464344;;False;{};gj084eg;True;t3_kvjc27;False;True;t1_giz75as;/r/anime/comments/kvjc27/i_just_finished_watching_my_little_monster_tonari/gj084eg/;1610521298;2;True;False;anime;t5_2qh22;;0;[]; -[];;;soboi12345;;;[];;;;text;t2_11nerd;False;False;[];;Thank you for the reply. Will read the manga too 😄;False;False;;;;1610464372;;False;{};gj086g2;True;t3_kvjc27;False;True;t1_giyo7n6;/r/anime/comments/kvjc27/i_just_finished_watching_my_little_monster_tonari/gj086g2/;1610521330;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Natrist4;;;[];;;;text;t2_5oa7c2oz;False;False;[];;Pretty sure not, I've heard people giving 1 stars for Attack on Titan And FMaB because of fan wars.;False;False;;;;1610464570;;False;{};gj08kwa;False;t3_kvimj5;False;True;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/gj08kwa/;1610521557;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Natrist4;;;[];;;;text;t2_5oa7c2oz;False;False;[];;Would Akame ga Kill be considered a badass female mc?;False;False;;;;1610464606;;False;{};gj08nkx;False;t3_kvlhdu;False;True;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/gj08nkx/;1610521598;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheGenerousNerd;;;[];;;;text;t2_11uc2a4p;False;False;[];;"When you reach the scene where [Scum's Wish](/s ""Hanabi tells Mugi 'I want to try loving you'"") hit pause and imagine a wholesome continuation. - -(A very unhelpful answer, I know, but like others said... it's the wrong show for the purpose.)";False;False;;;;1610465403;;False;{};gj0a78k;False;t3_kvht83;False;False;t3_kvht83;/r/anime/comments/kvht83/how_do_i_not_feel_horrible_while_watching_romance/gj0a78k/;1610522441;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Azrub580;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FpsArena;light;text;t2_661t4twj;False;False;[];;"That's the reason why I don't care about mal average rating that much. - -I personally found this anime horrible and that's why I gave it a 2 (2 = horrible on mal), but even if people find it ""fine"" or ""fairly good"" why just not rating it 6? - -I wish people would use 7 and 8 only for what they think are genuinely good series.";False;False;;;;1610465422;;False;{};gj0a8jh;False;t3_kvjtk6;False;True;t1_gizfjo2;/r/anime/comments/kvjtk6/so_i_just_got_done_watching_the_day_i_became_a_god/gj0a8jh/;1610522459;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MrJelloYT;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Allen23woo;light;text;t2_5sq7ncbm;False;False;[];;Same, definitely top 10 anime of this season.;False;False;;;;1610466142;;False;{};gj0bkd7;False;t3_kvmb71;False;False;t3_kvmb71;/r/anime/comments/kvmb71/who_else_liked_kemono_jihen_ep_1/gj0bkd7/;1610523187;4;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;I watched the OVAs, then read the manga -- in preparation for the new series, I thought the OVAs were worth seeing (their technical quality seemed to improve from episode to episode). But I'd say, at this point, save watching these until after the series ahas finished.;False;False;;;;1610466191;;False;{};gj0bnnq;False;t3_kvme3d;False;True;t3_kvme3d;/r/anime/comments/kvme3d/if_you_are_watching_horimiya_consider_watching/gj0bnnq/;1610523235;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610466415;;False;{};gj0c2v6;False;t3_kvhetf;False;True;t3_kvhetf;/r/anime/comments/kvhetf/does_anyone_know_where_i_can_watch_your_name/gj0c2v6/;1610523461;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Character_Flat, your post has been removed because it links to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610466416;moderator;False;{};gj0c2wj;False;t3_kvhetf;False;False;t1_gj0c2v6;/r/anime/comments/kvhetf/does_anyone_know_where_i_can_watch_your_name/gj0c2wj/;1610523461;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Kiwi195;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3dpynlvn;False;False;[];;I liked the premise so much I caught up on manga yesterday lol 🙌;False;False;;;;1610466580;;False;{};gj0ce3l;False;t3_kvmb71;False;True;t3_kvmb71;/r/anime/comments/kvmb71/who_else_liked_kemono_jihen_ep_1/gj0ce3l/;1610523649;3;True;False;anime;t5_2qh22;;0;[]; -[];;;EstebanIsAGamerWord;;;[];;;;text;t2_4vhvkb76;False;False;[];;You should check out Sk8 too. I didn't know I'd be into it, but first episode seems really dope;False;False;;;;1610469016;;False;{};gj0herw;False;t3_kvmb71;False;True;t1_giz6iv4;/r/anime/comments/kvmb71/who_else_liked_kemono_jihen_ep_1/gj0herw/;1610526383;2;True;False;anime;t5_2qh22;;0;[]; -[];;;0zero0z;;;[];;;;text;t2_75exa77k;False;False;[];;Shiki for from garden of sinners;False;False;;;;1610469264;;False;{};gj0hxnw;False;t3_kvlhdu;False;True;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/gj0hxnw/;1610526663;1;True;False;anime;t5_2qh22;;0;[]; -[];;;metaaltheanimefan;;;[];;;;text;t2_1qdntfx;False;False;[];;"Please for all the precure endings on this list - -As well as the second fma ending";False;False;;;;1610469328;;False;{};gj0i2n6;False;t3_kvegi9;False;True;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/gj0i2n6/;1610526737;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RitaRao;;;[];;;;text;t2_5x25lcdl;False;True;[];;[https://watchfilm.net/movie/your-name-19592](https://watchfilm.net/movie/your-name-19592) the best link;False;False;;;;1610470964;;False;{};gj0ln8i;False;t3_kvhetf;False;True;t3_kvhetf;/r/anime/comments/kvhetf/does_anyone_know_where_i_can_watch_your_name/gj0ln8i/;1610528689;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Buddy_Waters;;;[];;;;text;t2_qkttj;False;False;[];;It is the most low key shonen battle series first episode I've ever seen, and I think that worked in its favor.;False;False;;;;1610472029;;False;{};gj0nz4t;False;t3_kvmb71;False;True;t3_kvmb71;/r/anime/comments/kvmb71/who_else_liked_kemono_jihen_ep_1/gj0nz4t/;1610529975;3;True;False;anime;t5_2qh22;;0;[]; -[];;;xxXMrDarknessXxx;;;[];;;;text;t2_1xjq9ufd;False;False;[];;Considering that the only things Naruto used throughout hsi own series were Rasengans and Shadow clones, whereas Boruto can use lightning, and wind, that's bullshit;False;False;;;;1610473325;;False;{};gj0qv56;True;t3_kvnfl8;False;True;t1_gizqo6a;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gj0qv56/;1610531543;1;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;I mean it is true? Pretty much everything on MAL that was made in the pre 90s that isn't something well known like Bebop scores below a 7 which on MAL is pretty much for meh/bad shows.;False;False;;;;1610473717;;False;{};gj0rqtp;False;t3_kvimj5;False;True;t1_giz0zre;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/gj0rqtp/;1610532021;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;False;[];;Definitely look into the things you watch first, don't just click on stuff because the out of context clip looked like what you want. Scum's Wish is a fantastic show that I would highly recommend, it's just not a feel good show about a cute couple.;False;False;;;;1610474836;;False;{};gj0u8ia;False;t3_kvht83;False;True;t1_gizstn4;/r/anime/comments/kvht83/how_do_i_not_feel_horrible_while_watching_romance/gj0u8ia/;1610533384;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chris10023;;;[];;;;text;t2_6mgro;False;False;[];;"Well I did feel the weakest episode was the Mahjong one, but that's probably because I have no idea how to play Mahjong. - -> The last few episodes made me question Yota's brain more than a few times making it hard to watch every time he screamed to Hina. - -As I explained in another comment, he's a kid with up to 2 weeks to find a way to bring Hina back to her friends and family, and he wasn't dong it to scare her intentionally. He just got too excited, which makes sense, she was kidnapped from him and her friends by mysterious men in suits, he hadn't seen her in 4-5 months and probably thought she was dead considering her Logos Syndrome. I don't think he expected her to be in such a state. - -I also think some of the blame should go to Shiba, that other researcher for not really teaching him how to properly handle Hina, and leaving pretty crucial information from him, like how she fears men due to whatever they did to her. I think she didn't like him from the start, she always had a scowl when she looked at him. All she had to do before entering the room was tell him, ""please don't yell, she startles easily."" and ""Please refrain from touching her at first, let her get more acquainted with you so she can trust you, she has a pretty big fear of men."" Hell Youta even questioned himself if he was doing the right thing, so he's aware that he might be the best choice for her. And it's not like Youta wasn't an easily excited kid throughout the show either, so it's not like it came out of nowhere. - -In how I rate shows, I gave it a 7.5 because my average rating for shows is typically a 7, I enjoyed this show, I didn't find anything that made me annoyed like Anohana did. But to each their own, I just didn't think this show was a dumpster fire, certainly not bad enough to warrant harassing Jun Maeda over, I do hope the guy is safe and just taking a break from social media. I don't think anyone can justify death threats over a show they didn't enjoy.";False;False;;;;1610478948;;False;{};gj13d35;True;t3_kvjtk6;False;True;t1_gizfjo2;/r/anime/comments/kvjtk6/so_i_just_got_done_watching_the_day_i_became_a_god/gj13d35/;1610538612;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FuddyBoi;;;[];;;;text;t2_5u37ks92;False;False;[];;"Calm down mate, no need to cry about it. If you actually read my reply you see I meant the kids seem to easily have skills the parents ( from naruto) took forever to achieve. -Go get a cuddle from some one.";False;False;;;;1610480308;;False;{};gj16dm0;False;t3_kvnfl8;False;True;t1_gj0qv56;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gj16dm0/;1610540405;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xxXMrDarknessXxx;;;[];;;;text;t2_1xjq9ufd;False;False;[];;Naruto learned Kage Bunshin in a day and Rasengan in a week. What are you on about;False;False;;;;1610481055;;False;{};gj180gj;True;t3_kvnfl8;False;True;t1_gj16dm0;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gj180gj/;1610541480;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FuddyBoi;;;[];;;;text;t2_5u37ks92;False;False;[];;"Yeah then spent the rest of his time learning to improve it, adding sage mode and such to it controlling chakra and from what I saw of boruto that was all simple stuff. -I never said anything about how long it took to learn any skill other than it seeming much easier for the boruto cast. -No need to to be a dick because someone has an opinion, going out of your way to be a cunt, you obviously know everything about naruto, boruto and all manga and anime. -Good job";False;False;;;;1610481532;;False;{};gj192c3;False;t3_kvnfl8;False;True;t1_gj180gj;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gj192c3/;1610542171;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Raghav_Singhania;;;[];;;;text;t2_5r7necl3;False;False;[];;"bro aot is my favourite anime and i am telling you once you get in it - -there's no coming back - -i will recommend to watch after season 4 part 1 end to avoid spoiler and waiting";False;False;;;;1610484587;;False;{};gj1fqo8;False;t3_kvmtap;False;True;t3_kvmtap;/r/anime/comments/kvmtap/should_i_watch_attack_on_titan_now_or_wait/gj1fqo8/;1610546687;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SuicidalDepressi0n;;;[];;;;text;t2_6putoa2f;False;False;[];;My God, Full Metal Alchemist BH: [Uso](https://animethemes.moe/video/FullmetalAlchemistBrotherhood-ED1.webm) my man this got my vote hands down. This has probably is one of my favorite OP Since I watched it.;False;False;;;;1610488715;;False;{};gj1ot2x;False;t3_kvegi9;False;True;t3_kvegi9;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/gj1ot2x/;1610553096;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;If there's one thing SAO knocks out of the park every fucking time it's the music. The OP's, ED's and OST are all magnificent.;False;False;;;;1610489651;;False;{};gj1qt23;False;t3_kvegi9;False;True;t1_gixt1yy;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/gj1qt23/;1610554544;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;What show is this?;False;False;;;;1610489839;;False;{};gj1r7fm;False;t3_kvegi9;False;True;t1_giz7i4y;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/gj1r7fm/;1610554851;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UzEE;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/UzEEInc;light;text;t2_45t2z;False;False;[];;Supernatural;False;False;;;;1610490011;;False;{};gj1rkia;False;t3_kvegi9;False;True;t1_gj1r7fm;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/gj1rkia/;1610555143;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;Gonna ask because I literally don't know, any relation to the WB show?;False;False;;;;1610490233;;False;{};gj1s1fm;False;t3_kvegi9;False;True;t1_gj1rkia;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/gj1s1fm/;1610555475;2;True;False;anime;t5_2qh22;;0;[]; -[];;;UzEE;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/UzEEInc;light;text;t2_45t2z;False;False;[];;Yes, I was talking about the live action show on WB/CW. The single season anime was based on the show to promote it in Japan.;False;False;;;;1610490390;;False;{};gj1sdhb;False;t3_kvegi9;False;True;t1_gj1s1fm;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/gj1sdhb/;1610555703;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDazeGoBy;;;[];;;;text;t2_6fufo1so;False;False;[];;"There are two things here. MaL, at least used to, rate shows based on objectivity. The writing is good the animation is good there is a standard for quality and while it isnt absolute there is some small objectivity in each form of art. AoT and FMA are critically and objectivrly well made shows but it also in NO WAY means you shouldnt like your own shows and the things that you enjoy. It doesnt swy anything negative sbout ones taste either hell some people hate shounens so would never watch either. - -This is especially true if you dont want to watcg anime through a critical lense. The point is they matter if you want some absolutely amazing recommendations but they should not matter toward YOUR favorite anime";False;False;;;;1610490394;;False;{};gj1sdqu;False;t3_kvimj5;False;True;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/gj1sdqu/;1610555708;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;How bout that? I never knew that existed.;False;False;;;;1610490523;;False;{};gj1snnt;False;t3_kvegi9;False;False;t1_gj1sdhb;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/gj1snnt/;1610555897;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;SAO. Asuna is rad as fuck.;False;False;;;;1610490953;;False;{};gj1tjrm;False;t3_kvlhdu;False;True;t3_kvlhdu;/r/anime/comments/kvlhdu/animes_with_badass_female_mc/gj1tjrm/;1610556528;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeralyos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Zeralyos;light;text;t2_dphmj32;False;False;[];;I'm voting for Nandemonaiya just for the song and you can't stop me.;False;False;;;;1610492989;;False;{};gj1xo4o;False;t3_kvegi9;False;True;t1_giz1wwc;/r/anime/comments/kvegi9/best_ending_6_listen_to_salt_final_eliminations/gj1xo4o/;1610559518;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Tryer1234;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Tryer/animelist;light;text;t2_5r3r5;False;False;[];;Yeah, Kanon and clannad both worked out and they are 24 eps.;False;False;;;;1610493670;;False;{};gj1z11h;False;t3_kvegzd;False;True;t1_giy6ijd;/r/anime/comments/kvegzd/without_spoiling_anything_is_the_day_i_became_a/gj1z11h/;1610560495;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexCuzYNot;;;[];;;;text;t2_v3u2xlx;False;False;[];;Someone saying something positive about Maeda?? I won't read this post cuz I don't wanna be spoiled but holy shit is that a surprise.;False;False;;;;1610493752;;False;{};gj1z6xf;False;t3_kvjtk6;False;False;t3_kvjtk6;/r/anime/comments/kvjtk6/so_i_just_got_done_watching_the_day_i_became_a_god/gj1z6xf/;1610560620;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexCuzYNot;;;[];;;;text;t2_v3u2xlx;False;False;[];;">Definitely look into the things you watch first, don't just click on stuff because the out of context clip looked like what you want. - -I did exactly this for Bunny Girl Senpai and you can guess the rest";False;False;;;;1610493955;;False;{};gj1zl74;False;t3_kvht83;False;True;t1_gj0u8ia;/r/anime/comments/kvht83/how_do_i_not_feel_horrible_while_watching_romance/gj1zl74/;1610560887;1;True;False;anime;t5_2qh22;;0;[]; -[];;;onthoserainydays;;;[];;;;text;t2_8zyswoyn;False;False;[];;Same reason people want bigger dicks right?;False;False;;;;1610501733;;False;{};gj2e89a;False;t3_kvimj5;False;True;t3_kvimj5;/r/anime/comments/kvimj5/do_anime_rankings_really_matter_that_much/gj2e89a/;1610571202;1;True;False;anime;t5_2qh22;;0;[]; -[];;;na0fumi_sama;;;[];;;;text;t2_9nyml263;False;False;[];;I might, but is it like a typical sports anime?;False;False;;;;1610505168;;False;{};gj2kmw0;True;t3_kvmb71;False;True;t1_gj0herw;/r/anime/comments/kvmb71/who_else_liked_kemono_jihen_ep_1/gj2kmw0/;1610575806;1;True;False;anime;t5_2qh22;;0;[]; -[];;;na0fumi_sama;;;[];;;;text;t2_9nyml263;False;False;[];;Yeah, it didn't try to do anything too flashy or be something it wasn't. I really liked that about it.;False;False;;;;1610505227;;False;{};gj2kqw3;True;t3_kvmb71;False;True;t1_gj0nz4t;/r/anime/comments/kvmb71/who_else_liked_kemono_jihen_ep_1/gj2kqw3/;1610575884;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EstebanIsAGamerWord;;;[];;;;text;t2_4vhvkb76;False;False;[];;Idk what a typical sports anime is, but I would say no;False;False;;;;1610558018;;False;{};gj4poi3;False;t3_kvmb71;False;True;t1_gj2kmw0;/r/anime/comments/kvmb71/who_else_liked_kemono_jihen_ep_1/gj4poi3/;1610622827;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hellothere-3000;;;[];;;;text;t2_4ac0esly;False;False;[];;I mean, it was only with Angel Beats, then Charlotte, and finally this anime that he got worse and became hated. His earlier VNs that were adapted into animes were held in very high regard and people expected a lot from him.;False;False;;;;1610581905;;False;{};gj66w8c;False;t3_kvjtk6;False;True;t1_gj1z6xf;/r/anime/comments/kvjtk6/so_i_just_got_done_watching_the_day_i_became_a_god/gj66w8c/;1610659215;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Minty_MGC;;;[];;;;text;t2_3wtd8csm;False;False;[];;Omg thank you, any idea when it will air?;False;False;;;;1610587515;;False;{};gj6hwo4;True;t3_kvi0z1;False;True;t1_gizf8du;/r/anime/comments/kvi0z1/movie_i_cant_find/gj6hwo4/;1610666806;1;True;False;anime;t5_2qh22;;0;[]; -[];;;justendmeffs;;;[];;;;text;t2_616awwfq;False;False;[];;Social media were a mistake. Telling people their opinion matters was a mistake.;False;False;;;;1610462751;;False;{};gj04zrg;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj04zrg/;1610519546;91;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610462808;;False;{};gj053q6;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj053q6/;1610519608;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;ThatShiny_Hex;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ThatShiny_Hex;light;text;t2_17h49jl2;False;False;[];;I give a shit. I care about the staff working on my favorite anime, hence you're wrong.;False;False;;;;1610462883;;False;{};gj058w0;False;t3_kvsy6n;False;True;t1_gj053q6;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj058w0/;1610519689;15;True;False;anime;t5_2qh22;;0;[]; -[];;;asilvertintedrose;;;[];;;;text;t2_9r6wz3xk;False;False;[];;"1.) The OST choices are mostly up to the guy who arranges music for the show, and that guy's been arranging music since AOT was in WIT's hands. - -2.) Twatter is filled with the most toxic people, I'm not exactly surprised.";False;False;;;;1610462946;;False;{};gj05d7n;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj05d7n/;1610519757;428;True;False;anime;t5_2qh22;;0;[]; -[];;;unknown537;;;[];;;;text;t2_20519zb3;False;False;[];;Thanks for reminding me why I hate Twitter.;False;False;;;;1610462946;;False;{};gj05d88;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj05d88/;1610519757;254;True;False;anime;t5_2qh22;;0;[]; -[];;;Akai-AC;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Akai-AC;light;text;t2_3af1hwm4;False;False;[];;Oh god. I can't even -;False;False;;;;1610462960;;False;{};gj05e7n;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj05e7n/;1610519773;10;True;False;anime;t5_2qh22;;0;[]; -[];;;stud_exe;;;[];;;;text;t2_9ibyi3m3;False;False;[];;I mean the anime has a very different and unique storyline.. I love it.. Just I don't care or their song dont bother me much;False;True;;comment score below threshold;;1610463006;;False;{};gj05hf6;False;t3_kvsy6n;False;True;t1_gj058w0;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj05hf6/;1610519825;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;Absolutely hate that people feel the need to resort of abuse when they don't get their way. Constructive feedback is fine, don't fucking harass the people that make your cherished show possible in the first place.;False;False;;;;1610463150;;False;{};gj05rmk;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj05rmk/;1610519991;77;True;False;anime;t5_2qh22;;0;[]; -[];;;Redo-Master;;;[];;;;text;t2_7yfxxyjj;False;False;[];;The fandom is toxic af...so much negativity since the anime started airing. Fans are mad because THEIR favourite OST was not used and they didn't get THEIR VERSION of the adaptation to the point that they are harassing the director for a fucking OST and now the director has locked his account.;False;False;;;;1610463181;;1610463611.0;{};gj05trd;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj05trd/;1610520024;157;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;The worst part is that I don't think he's even the one responsible for the music choice;False;False;;;;1610463393;;False;{};gj068ij;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj068ij/;1610520258;13;True;False;anime;t5_2qh22;;0;[]; -[];;;ralsei_support_squad;;;[];;;;text;t2_2j72jhiw;False;False;[];;He's on private right now. If you have twitter, please send some nice DMs his way. Someone on titanfolk said he responded thanking them;False;False;;;;1610463815;;False;{};gj072il;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj072il/;1610520718;24;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;It was alright, not outstanding but nothing to get up and arms about;False;False;;;;1610463856;;False;{};gj075j2;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj075j2/;1610520764;3;True;False;anime;t5_2qh22;;0;[]; -[];;;poladasdf;;;[];;;;text;t2_1ugb3pe5;False;False;[];;Does anybody know what that music choice was? I didn't notice anything and thought the entire episode was really fucking hype.;False;False;;;;1610464066;;False;{};gj07kcs;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj07kcs/;1610520991;35;True;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;Days has been since the anime fandom has done something stupid: 0;False;False;;;;1610464157;;False;{};gj07qux;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj07qux/;1610521090;47;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"I love how Gigguk explicitly called manga fans not liking that the anime didn't use the exact music they thought would fit - more than a year ago. And now that's almost exactly what happens to a franchise as big as SnK. - -Can't wait to see the Animemaru article on this.";False;False;;;;1610464158;;False;{};gj07qy1;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj07qy1/;1610521091;118;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"Twitter is awful. - -People spend their time shitting on WIT constantly there. - -On the other side people waste their life shitting on MAPPA. - -I hate twitter it is filled with the most degenerate entitled scum.";False;False;;;;1610464232;;1610473584.0;{};gj07wde;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj07wde/;1610521175;44;True;False;anime;t5_2qh22;;0;[]; -[];;;Neverx_13;;;[];;;;text;t2_8708yf9;False;False;[];;Specific sections of the Manga community are very toxic so this doesn't surprise me but it's super disappointing. Music choice wasn't even that bad.;False;False;;;;1610464239;;False;{};gj07wvz;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj07wvz/;1610521183;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;Please tell me this is the sequel to The Devil Is a Part-Timer!;False;False;;;;1610464366;;False;{};gj085z6;False;t3_kvtfh5;False;True;t3_kvtfh5;/r/anime/comments/kvtfh5/hello_people_of_reddit_currently_a_new_anime_is/gj085z6/;1610521323;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Best_in_Za_Warudo;;;[];;;;text;t2_12b21a;False;False;[];;"I fucking hate twitter and i hate these toxic fuckers that call themselves ""the fans""";False;False;;;;1610464509;;False;{};gj08gea;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj08gea/;1610521483;37;True;False;anime;t5_2qh22;;0;[]; -[];;;Florac;;;[];;;;text;t2_vy0sf;False;False;[];;"In the final scene, they find the song used wasn't ""hype"" enough";False;False;;;;1610464525;;False;{};gj08hk5;False;t3_kvsy6n;False;True;t1_gj07kcs;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj08hk5/;1610521501;1;True;False;anime;t5_2qh22;;0;[]; -[];;;elfaia;;;[];;;;text;t2_3hb8o7;False;False;[];;What music choice btw?;False;False;;;;1610464532;;False;{};gj08i3a;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj08i3a/;1610521509;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeowlite;;;[];;;;text;t2_xyzpq;False;False;[];;Fumetsu no anata e?;False;False;;;;1610464571;;False;{};gj08kzp;False;t3_kvtfh5;False;True;t3_kvtfh5;/r/anime/comments/kvtfh5/hello_people_of_reddit_currently_a_new_anime_is/gj08kzp/;1610521559;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lily-xo;;;[];;;;text;t2_6z6w34pe;False;False;[];;ohh sounds good;False;False;;;;1610464603;;False;{};gj08nd6;False;t3_kvtfh5;False;True;t3_kvtfh5;/r/anime/comments/kvtfh5/hello_people_of_reddit_currently_a_new_anime_is/gj08nd6/;1610521596;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Best_in_Za_Warudo;;;[];;;;text;t2_12b21a;False;False;[];;The one at the very end of the episode, which was completely fine and fitting with the scene;False;False;;;;1610464687;;False;{};gj08tky;False;t3_kvsy6n;False;True;t1_gj07kcs;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj08tky/;1610521690;12;True;False;anime;t5_2qh22;;0;[]; -[];;;FarrelMFajar;;;[];;;;text;t2_13bxx0;False;False;[];;"Look at what you've done, /r/titanfolk. - -edit: sub contains manga spoilers upfront.";False;False;;;;1610464719;;1610466981.0;{};gj08vzs;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj08vzs/;1610521728;65;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeowlite;;;[];;;;text;t2_xyzpq;False;False;[];;Wtf some people need to chill, this the reason why some mangaka and LN writer don't even want to use their real name or show their face.;False;False;;;;1610464767;;False;{};gj08zfw;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj08zfw/;1610521782;19;True;False;anime;t5_2qh22;;0;[]; -[];;;peanut-buttr;;;[];;;;text;t2_76evn7go;False;False;[];;The music’s fine what the hell? Its not soundtrack of the year or anything but its not bad either. Its the most average soundtrack ever you cant really say anything about it. One person hated it and suddenly everyone is on board. God people are dumb.;False;False;;;;1610464948;;False;{};gj09c80;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj09c80/;1610521970;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi AmosArdnach_6152, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610465039;moderator;False;{};gj09ijh;False;t3_kvtp2s;False;True;t3_kvtp2s;/r/anime/comments/kvtp2s/so_today_i_have_watched_a_silent_voice_your_name/gj09ijh/;1610522067;1;False;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;Gundam;False;False;;;;1610465066;;False;{};gj09ke6;False;t3_kvtohs;False;False;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj09ke6/;1610522096;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yulaff2;;;[];;;;text;t2_5da0zumv;False;False;[];;"You watched my all favorites:) -You can try grave of the fireflies if u want to cry. -Tenki no ko, if you want something similar to your name(kimi no na wa)";False;False;;;;1610465116;;False;{};gj09ny0;False;t3_kvtp2s;False;False;t3_kvtp2s;/r/anime/comments/kvtp2s/so_today_i_have_watched_a_silent_voice_your_name/gj09ny0/;1610522149;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;One Piece;False;False;;;;1610465134;;False;{};gj09p60;False;t3_kvtohs;False;False;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj09p60/;1610522167;78;True;False;anime;t5_2qh22;;0;[]; -[];;;VHDSMD123;;;[];;;;text;t2_2y0ei6vu;False;False;[];;F#ck off these dudes .;False;False;;;;1610465135;;False;{};gj09p7x;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj09p7x/;1610522168;0;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"Naruto and Shippuden (720 total episodes) - -Watching it growing up was easy, but I dont think I could do it anymore with all the filler. Its why I have waited to watch One Piece";False;False;;;;1610465135;;False;{};gj09p9s;False;t3_kvtohs;False;False;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj09p9s/;1610522168;30;True;False;anime;t5_2qh22;;0;[]; -[];;;TehNolz;;MAL;[];;http://myanimelist.net/animelist/Nolz;dark;text;t2_brqsb;False;False;[];;"Pokemon, at 1129 episodes. I'm a few weeks behind though; the latest episode is 1135.";False;False;;;;1610465184;;False;{};gj09sk1;False;t3_kvtohs;False;False;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj09sk1/;1610522218;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"For a single continuous series, Gintama at 367 + a couple movies/OVAs. - -Franchises? 400 episodes of Precure, 650+ of Gundam.";False;False;;;;1610465190;;False;{};gj09syq;False;t3_kvtohs;False;False;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj09syq/;1610522225;14;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;"Single series: - -By episode count it's Kaishain with 744 eps - -By time count Chibi Maruko-chan - - -Franchises - -Precure - -Aikatsu - -Pretty series";False;False;;;;1610465191;;False;{};gj09t23;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj09t23/;1610522227;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Magical_Griffin;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SpikyTurtle;light;text;t2_ii5jh1;False;False;[];;Garden of Words;False;False;;;;1610465290;;False;{};gj09zoq;False;t3_kvtp2s;False;False;t3_kvtp2s;/r/anime/comments/kvtp2s/so_today_i_have_watched_a_silent_voice_your_name/gj09zoq/;1610522328;8;True;False;anime;t5_2qh22;;0;[]; -[];;;baquea;;;[];;;;text;t2_j3k0u;False;True;[];;168 episodes (plus a few movies) of Detective Conan. For the most part, long series just don't really appeal to me.;False;False;;;;1610465355;;False;{};gj0a427;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0a427/;1610522393;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"I seriously don't understand what was even wrong with the OST. It was fine IMO. - -Manga readers should know everything won't go exactly like how they imagined it in their headcanon. - -You have every right to complain about something you didn't like but you don't have to be a dick about it.";False;False;;;;1610465375;;1610465680.0;{};gj0a5dp;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0a5dp/;1610522413;65;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610465378;moderator;False;{};gj0a5l6;False;t3_kvtsps;False;True;t3_kvtsps;/r/anime/comments/kvtsps/anyone_know_who_this_is_i_tried_reverse_image/gj0a5l6/;1610522416;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Hrishab_Ksharma;;;[];;;;text;t2_4hfjg1w3;False;False;[];;If u wanna keep it going watch maquia;False;False;;;;1610465405;;False;{};gj0a7gr;False;t3_kvtp2s;False;False;t3_kvtp2s;/r/anime/comments/kvtp2s/so_today_i_have_watched_a_silent_voice_your_name/gj0a7gr/;1610522444;19;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Meemeli;;;[];;;;text;t2_2o1rogl;False;False;[];;Wolf Children;False;False;;;;1610465409;;False;{};gj0a7mr;False;t3_kvtp2s;False;False;t3_kvtp2s;/r/anime/comments/kvtp2s/so_today_i_have_watched_a_silent_voice_your_name/gj0a7mr/;1610522447;14;True;False;anime;t5_2qh22;;0;[]; -[];;;limberwisk;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/limberwisk;light;text;t2_15b7pb77;False;False;[];;5 cms per second;False;False;;;;1610465418;;False;{};gj0a8c2;False;t3_kvtp2s;False;False;t3_kvtp2s;/r/anime/comments/kvtp2s/so_today_i_have_watched_a_silent_voice_your_name/gj0a8c2/;1610522456;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Yri4lf12;;;[];;;;text;t2_6bfipjd7;False;False;[];;"By episode count i think Yu Yu Hakusho. 112 - -By franchise - -Precure. 14 Seasons completed";False;False;;;;1610465524;;False;{};gj0afe7;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0afe7/;1610522565;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Firestarness;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/firestarness;light;text;t2_15356k;False;False;[];;Wtf is wrong with people on Twitter. It baffles me that these are people that exist. Like out of all the problems in your damn life it must he great to go harass someone else. Like fuck off man.;False;False;;;;1610465527;;False;{};gj0afm9;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0afm9/;1610522569;5;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 125, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'When you come across a feel-good thing.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'icon_width': 2048, 'id': 'award_5f123e3d-4f48-42f4-9c11-e98b566d5897', 'is_enabled': True, 'is_new': False, 'name': 'Wholesome', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;Mirabem;;;[];;;;text;t2_7cp40oli;False;False;[];;Opinion matter, otherwise it's censorship. But this is a case of harassment, which is totally bad and wrong.;False;True;;comment score below threshold;;1610465533;;1610467944.0;{};gj0afys;False;t3_kvsy6n;False;True;t1_gj04zrg;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0afys/;1610522573;-41;True;False;anime;t5_2qh22;;1;[]; -[];;;Akai-AC;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Akai-AC;light;text;t2_3af1hwm4;False;False;[];;"Detective Conan - 990+ eps. - -One piece is a close second.";False;False;;;;1610465624;;False;{};gj0alv2;False;t3_kvtohs;False;False;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0alv2/;1610522664;15;True;False;anime;t5_2qh22;;0;[]; -[];;;limberwisk;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/limberwisk;light;text;t2_15b7pb77;False;False;[];;My hero academia up to date. Dragon ball super 75 episodes. Attack on titan 64 . Long shows are dragged out so i am hesitant to commit.;False;False;;;;1610465632;;False;{};gj0amgk;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0amgk/;1610522673;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hegth;;;[];;;;text;t2_9qo6ptxi;False;False;[];;Rakudai kishi no cavalry might be your thing;False;False;;;;1610465642;;False;{};gj0an5j;False;t3_kvtund;False;False;t3_kvtund;/r/anime/comments/kvtund/anime_whith_equally_powerful_and_smart_male_and/gj0an5j/;1610522684;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Black_Reaper_Rap;;;[];;;;text;t2_421ez04j;False;False;[];;JoJos as well.;False;False;;;;1610465652;;False;{};gj0antj;False;t3_kvtohs;False;False;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0antj/;1610522693;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Lmnln314;;;[];;;;text;t2_97hln2y6;False;False;[];;Apparently I didn't know what was happening in behind the scenes within the community. If right now is really worse, what was happening during seasons 2-3, I wonder? Some people really just don't think before they voice out their opinions, do they?;False;False;;;;1610465681;;False;{};gj0apn6;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0apn6/;1610522722;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeowlite;;;[];;;;text;t2_xyzpq;False;False;[];;Kekaishi;False;False;;;;1610465727;;False;{};gj0asov;False;t3_kvtund;False;True;t3_kvtund;/r/anime/comments/kvtund/anime_whith_equally_powerful_and_smart_male_and/gj0asov/;1610522769;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MyDogIsAMaggot;;;[];;;;text;t2_57ek4i6r;False;False;[];;2volt. People wanted Youseebiggirl despite it not fitting the situation;False;False;;;;1610465761;;False;{};gj0auz0;False;t3_kvsy6n;False;True;t1_gj07kcs;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0auz0/;1610522802;25;True;False;anime;t5_2qh22;;0;[]; -[];;;hitogomi911;;;[];;;;text;t2_83ec5qv5;False;False;[];;Mahouka. Miyuki is just as powerful and intelligent as Tatsuya but she doesn't want to overstep him.;False;False;;;;1610465772;;False;{};gj0avs3;False;t3_kvtund;False;True;t3_kvtund;/r/anime/comments/kvtund/anime_whith_equally_powerful_and_smart_male_and/gj0avs3/;1610522814;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MyDogIsAMaggot;;;[];;;;text;t2_57ek4i6r;False;False;[];;2volt;False;False;;;;1610465787;;False;{};gj0awpu;False;t3_kvsy6n;False;True;t1_gj08i3a;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0awpu/;1610522828;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePreciseClimber;;;[];;;;text;t2_kjl4o;False;False;[];;The Internet isn't people, it's a force of nature. :P;False;False;;;;1610465920;;False;{};gj0b5ix;False;t3_kvsy6n;False;True;t1_gj07qy1;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0b5ix/;1610522961;32;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeowlite;;;[];;;;text;t2_xyzpq;False;False;[];;Detective conan and one piece;False;False;;;;1610465950;;False;{};gj0b7hz;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0b7hz/;1610522991;0;True;False;anime;t5_2qh22;;0;[]; -[];;;realrimurutempest;;;[];;;;text;t2_4bauklbm;False;False;[];;Should just be happy we even got a 4th season.;False;False;;;;1610465953;;False;{};gj0b7qc;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0b7qc/;1610522994;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi HahaVince, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610465989;moderator;False;{};gj0ba4z;False;t3_kvtz4q;False;True;t3_kvtz4q;/r/anime/comments/kvtz4q/recommendation_threads_please_help_us_help_you/gj0ba4z/;1610523031;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Sprite_isnt_lemonade;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Sprite_isnt_Holo;light;text;t2_evchy;False;False;[];;"The only complaint I saw was from manga readers, because they didn't think it was hype. The whole issue is they knew exactly what and when something was going to happen, so they want the hype build up, but when you're anime only the high tension is much better imo. - -https://www.reddit.com/r/titanfolk/comments/kugyrh/lack_of_ost_was_disappointing_so_i_added_the - -This fanedit for example was highly upvoted on titanfolk, you've gotten people saying it fits perfectly... Yet as an anime only I think the fanedit would have been a terrible chocie.";False;False;;;;1610466060;;False;{};gj0bex0;False;t3_kvsy6n;False;True;t1_gj07kcs;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0bex0/;1610523102;91;True;False;anime;t5_2qh22;;0;[]; -[];;;kk_213;;;[];;;;text;t2_72ca35r7;False;False;[];;Seen it...but ya its the kinda stuff I'm looking for!;False;False;;;;1610466099;;False;{};gj0bhi6;True;t3_kvtund;False;True;t1_gj0an5j;/r/anime/comments/kvtund/anime_whith_equally_powerful_and_smart_male_and/gj0bhi6/;1610523142;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Flipperblack;;;[];;;;text;t2_4wyib41i;False;False;[];;"Wtf -The episode is amazing,the ost too...some people are never pleased 😓";False;False;;;;1610466125;;False;{};gj0bj7t;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0bj7t/;1610523168;4;False;False;anime;t5_2qh22;;0;[]; -[];;;Clemenx00;;;[];;;;text;t2_i99bz;False;False;[];;"Sucks that such a small percentage of people can ruin stuff. - -Episode was as universally loved as anything can possibly be.";False;False;;;;1610466210;;1610466421.0;{};gj0bp03;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0bp03/;1610523254;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ChornoyeSontse;;;[];;;;text;t2_8vjfuk9d;False;False;[];;A force of human nature.;False;False;;;;1610466241;;False;{};gj0br4p;False;t3_kvsy6n;False;True;t1_gj0b5ix;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0br4p/;1610523286;15;True;False;anime;t5_2qh22;;0;[]; -[];;;RagingTnv;;;[];;;;text;t2_370bbs90;False;False;[];;Devil bloods;False;False;;;;1610466258;;False;{};gj0bs3v;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0bs3v/;1610523300;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChornoyeSontse;;;[];;;;text;t2_8vjfuk9d;False;False;[];;"""Hype"" culture is so obnoxious.";False;False;;;;1610466277;;False;{};gj0bthp;False;t3_kvsy6n;False;True;t1_gj07kcs;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0bthp/;1610523320;12;True;False;anime;t5_2qh22;;0;[]; -[];;;ChornoyeSontse;;;[];;;;text;t2_8vjfuk9d;False;False;[];;"Remember when twitter was a platform for benign posts about what you're doing right now? Like ""cooking dinner with the fam""? How long did that last, 6 months?";False;False;;;;1610466361;;False;{};gj0bz76;False;t3_kvsy6n;False;True;t1_gj07wde;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0bz76/;1610523406;8;True;False;anime;t5_2qh22;;0;[]; -[];;;CT_BINO;;MAL;[];;https://myanimelist.net/profile/CT_BINO;dark;text;t2_pa5vv;False;False;[];;Gintama;False;False;;;;1610466416;;False;{};gj0c2xj;False;t3_kvtohs;False;False;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0c2xj/;1610523462;19;True;False;anime;t5_2qh22;;0;[]; -[];;;leadnail;;;[];;;;text;t2_7tpalvx2;False;False;[];;Dragon ball, dragon ball z, fist of the north star, kenshin;False;False;;;;1610466424;;False;{};gj0c3fk;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0c3fk/;1610523469;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mantisman;;;[];;;;text;t2_6jvk8;False;False;[];;Obligatory warning for anime-onlies not to visit that sub.;False;False;;;;1610466450;;False;{};gj0c598;False;t3_kvsy6n;False;True;t1_gj08vzs;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0c598/;1610523495;51;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Automoderator doing a 200iq move;False;False;;;;1610466451;;False;{};gj0c5a8;False;t3_kvtz4q;False;True;t1_gj0ba4z;/r/anime/comments/kvtz4q/recommendation_threads_please_help_us_help_you/gj0c5a8/;1610523495;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DrySecurity4;;;[];;;;text;t2_69a1axol;False;False;[];;Thats deep bro;False;False;;;;1610466460;;False;{};gj0c5wa;False;t3_kvsy6n;False;True;t1_gj0br4p;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0c5wa/;1610523506;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;His and her circumstances;False;False;;;;1610466511;;False;{};gj0c9fk;False;t3_kvtund;False;False;t3_kvtund;/r/anime/comments/kvtund/anime_whith_equally_powerful_and_smart_male_and/gj0c9fk/;1610523574;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610466517;moderator;False;{};gj0c9u4;False;t3_kvu4sf;False;True;t3_kvu4sf;/r/anime/comments/kvu4sf/what_anime_is_this/gj0c9u4/;1610523581;1;False;False;anime;t5_2qh22;;0;[]; -[];;;UMPIN;;;[];;;;text;t2_cl9xp;False;False;[];;Listening back to it now it did feel a little flaccid but because the scene is literally 20 seconds it's definitely not a huge deal;False;False;;;;1610466521;;False;{};gj0ca3i;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0ca3i/;1610523585;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;">1.) The OST choices are mostly up to the guy who arranges music for the show, and that guy's been arranging music since AOT was in WIT's hands. - -This isn't completely true. It's usually a collaborative effort between the Sound Director and the Episode Director, with episode director who'll likely have the final say but it's a joint effort. - -I've heard however that even Sawano was participating in the process back when S1 aired - -Edit: a word";False;False;;;;1610466528;;False;{};gj0cakr;False;t3_kvsy6n;False;True;t1_gj05d7n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0cakr/;1610523592;92;True;False;anime;t5_2qh22;;0;[]; -[];;;DrySecurity4;;;[];;;;text;t2_69a1axol;False;False;[];;Yeah thats so much worse. How many times can they reuse the trailer OST and expect it to be epic?;False;False;;;;1610466546;;False;{};gj0cbqz;False;t3_kvsy6n;False;True;t1_gj0bex0;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0cbqz/;1610523613;30;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610466560;;False;{};gj0ccqh;False;t3_kvu4sf;False;True;t3_kvu4sf;/r/anime/comments/kvu4sf/what_anime_is_this/gj0ccqh/;1610523629;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610466567;;False;{};gj0cd7m;False;t3_kvu4sf;False;True;t3_kvu4sf;/r/anime/comments/kvu4sf/what_anime_is_this/gj0cd7m/;1610523636;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DirkDasterLurkMaster;;MAL;[];;http://myanimelist.net/profile/Rycluse;dark;text;t2_cmcyf;False;False;[];;Manga readers have been overhyping that scene so much that they forgot the whole lead up is a really slow burn. It's been a couple years since this happened in the manga so all people remember of it now is motion manga videos where they skip straight to the end. Awkwardly slapping YouSeeBigGirl or one of the others on top of it completely ruins the moment.;False;False;;;;1610466582;;False;{};gj0ce94;False;t3_kvsy6n;False;True;t1_gj0bex0;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0ce94/;1610523653;68;True;False;anime;t5_2qh22;;0;[]; -[];;;DrJWilson;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/drjwilson/animelist;light;text;t2_6zykq;False;False;[];;"Sorry, your submission has been removed. - -- This looks like meta content. Comments about the sub itself should be posted in the [monthly Meta Megathread](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year), which we keep an eye on all month long. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610466617;moderator;False;{};gj0cgmy;False;t3_kvtz4q;False;True;t3_kvtz4q;/r/anime/comments/kvtz4q/recommendation_threads_please_help_us_help_you/gj0cgmy/;1610523689;1;True;False;anime;t5_2qh22;;0;[]; -[];;;asilvertintedrose;;;[];;;;text;t2_9r6wz3xk;False;False;[];;"""Mostly"", my bad";False;False;;;;1610466623;;False;{};gj0ch1o;False;t3_kvsy6n;False;True;t1_gj0cakr;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0ch1o/;1610523695;23;True;False;anime;t5_2qh22;;0;[]; -[];;;lovesickflyer18;;;[];;;;text;t2_9cf90m32;False;False;[];;wait i did how i posted a pic;False;False;;;;1610466647;;False;{};gj0ciqu;True;t3_kvu4sf;False;True;t3_kvu4sf;/r/anime/comments/kvu4sf/what_anime_is_this/gj0ciqu/;1610523721;2;True;False;anime;t5_2qh22;;0;[]; -[];;;senkushon;;;[];;;;text;t2_6pwgcpma;False;False;[];;"These ""fans"" need to chill the fuck out man, damn";False;False;;;;1610466742;;False;{};gj0cpb2;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0cpb2/;1610523825;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HarleyFox92;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/HarleyFox92/;light;text;t2_16s322;False;False;[];;Sometimes I wonder how I ended up sharing this fandom/hobby with these people.;False;False;;;;1610466758;;False;{};gj0cqh7;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0cqh7/;1610523843;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610466790;moderator;False;{};gj0cson;False;t3_kvu7w8;False;True;t3_kvu7w8;/r/anime/comments/kvu7w8/how_should_i_start_watching_fate/gj0cson/;1610523877;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Handsome-_-awkward;;;[];;;;text;t2_52f0dxfa;False;False;[];;Sword art online has all of this. I couldn't handle it after 14 episodes and I'm not sure why but a lot of people love it;False;False;;;;1610466801;;False;{};gj0ctg3;False;t3_kvtund;False;False;t3_kvtund;/r/anime/comments/kvtund/anime_whith_equally_powerful_and_smart_male_and/gj0ctg3/;1610523887;4;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;nah, u cant blame a fandom yet, most of us are just silently loving the show, the problem is the real fanatics, the weirdos who ''ship'' and write fanfictions etc.;False;False;;;;1610466819;;1610468169.0;{};gj0cupj;False;t3_kvsy6n;False;True;t1_gj05trd;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0cupj/;1610523906;42;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Semantics;;;[];;;;text;t2_4njm4e48;False;False;[];;"Or sane people. - -4chan neckbeards have taken over that sub";False;False;;;;1610466880;;False;{};gj0cz4y;False;t3_kvsy6n;False;True;t1_gj0c598;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0cz4y/;1610523972;20;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Iron blooded orphans, one of the MC and a female leader MC are really good and have some Romance.;False;False;;;;1610466936;;False;{};gj0d34t;False;t3_kvtund;False;True;t3_kvtund;/r/anime/comments/kvtund/anime_whith_equally_powerful_and_smart_male_and/gj0d34t/;1610524032;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"You never watched any fate and you are interested in grand order? That's it? - -The quicker way is the ufotable route, Zero > Unlimited Blade works > Heavens feel - -Then you watch the First Order Movie and after thar Grand Order Babylonia - -That's it";False;False;;;;1610466947;;False;{};gj0d3w8;False;t3_kvu7w8;False;True;t3_kvu7w8;/r/anime/comments/kvu7w8/how_should_i_start_watching_fate/gj0d3w8/;1610524044;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vashallk;;;[];;;;text;t2_8zdb0y1l;False;False;[];;Was it western fans or japanese fandom too?;False;False;;;;1610466980;;False;{};gj0d6ae;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0d6ae/;1610524079;1;True;False;anime;t5_2qh22;;0;[]; -[];;;16revi;;;[];;;;text;t2_5ifq4q8b;False;False;[];;Just got to the photo post section;False;False;;;;1610466986;;False;{};gj0d6qc;False;t3_kvu4sf;False;True;t1_gj0ciqu;/r/anime/comments/kvu4sf/what_anime_is_this/gj0d6qc/;1610524086;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Legend of the Galactic heroes, and honestly didn't even regret 1 second of it. It's the best this medium has to offer and the only series that I think stands a chance at taking it down is attack on Titan.;False;False;;;;1610466988;;False;{};gj0d6ww;False;t3_kvtohs;False;False;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0d6ww/;1610524088;23;True;False;anime;t5_2qh22;;0;[]; -[];;;16revi;;;[];;;;text;t2_5ifq4q8b;False;False;[];;DM me the photo and I'll see if I can help;False;False;;;;1610467003;;False;{};gj0d7wf;False;t3_kvu4sf;False;True;t1_gj0ciqu;/r/anime/comments/kvu4sf/what_anime_is_this/gj0d7wf/;1610524104;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Left-Chance-4564;;;[];;;;text;t2_7p92oo57;False;False;[];;"Ah yes,the self entitled manga readers at it again. Knew this would happen when people in both twitter & YT started making videos of the transformation scene with their preferred osts as soon as the NHK livestream ended.Some of them didn't even wait for the official release lol. A new low for the fandom for sure even if it was done by a vocal minority.";False;False;;;;1610467025;;1610467205.0;{};gj0d9hd;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0d9hd/;1610524127;17;True;False;anime;t5_2qh22;;0;[]; -[];;;digbicks845;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;god ussop;dark;text;t2_12n6ju;False;False;[];;One piece barely has any filler;False;False;;;;1610467081;;False;{};gj0ddn9;False;t3_kvtohs;False;False;t1_gj09p9s;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0ddn9/;1610524190;12;True;False;anime;t5_2qh22;;0;[]; -[];;;HilariouslyInept;;;[];;;;text;t2_8729mwoy;False;False;[];;"Personally I think this is a little overzealous. The tension in that scene was palpable because of a lack of overbearing OST and it didn't need any ""hype"" music for a slow burn scene";False;False;;;;1610467104;;1610467366.0;{};gj0dfbb;False;t3_kvsy6n;False;True;t1_gj0bex0;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0dfbb/;1610524215;69;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610467120;moderator;False;{};gj0dggi;False;t3_kvubn6;False;True;t3_kvubn6;/r/anime/comments/kvubn6/is_psychic_school_wars_nerawareta_gakuen_in/gj0dggi/;1610524232;1;False;False;anime;t5_2qh22;;0;[]; -[];;;RagingTnv;;;[];;;;text;t2_370bbs90;False;False;[];;Hxh;False;False;;;;1610467139;;False;{};gj0dhwj;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0dhwj/;1610524254;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BFStealer;;;[];;;;text;t2_s7opi;False;False;[];;apparently this is from [Flyable Heart](https://en.wikipedia.org/wiki/Flyable_Heart) which is a VN, not an anime;False;False;;;;1610467148;;False;{};gj0dilg;False;t3_kvu4sf;False;True;t3_kvu4sf;/r/anime/comments/kvu4sf/what_anime_is_this/gj0dilg/;1610524263;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"How tf is r/titanfolk an issue in this? - -They can't complain about things now can they? - -There's been no record of any single one of the @ staff being harassed by them - -Sure it's a shit storm of a subreddit with kneejerk reactions every chapter but I don't how it's included in this";False;False;;;;1610467148;;1610467876.0;{};gj0dim0;False;t3_kvsy6n;False;True;t1_gj08vzs;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0dim0/;1610524263;7;True;False;anime;t5_2qh22;;0;[]; -[];;;pintossbm123;;;[];;;;text;t2_25s6ldw9;False;False;[];;The AoT manga community is actually horrible.;False;False;;;;1610467200;;False;{};gj0dmi5;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0dmi5/;1610524321;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610467287;;1610467858.0;{};gj0dszc;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0dszc/;1610524419;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Egavans;#ffaa55;anidb;[];d2715212-bcaf-11e4-bce0-22000b36913c;"https://anidb.net/perl-bin/animedb.pl?show=mylist&uid=784403";light;text;t2_v8xtq;False;False;[];;It was one of the biggest am-I-taking-crazy-pills moments for me to find out the manga snobs hated the ost, since maybe my single biggest takeaway from the most recent episode (no spoilers) was how much I *loved* the use of music in it.;False;False;;;;1610467288;;False;{};gj0dt28;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0dt28/;1610524420;9;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;">After watching countless reactions, I came to a conclusion: MAPPA's version works best for blind reactions (many people weren't even sure Eren would transform up until the music starts. Some even thought Eren might team up with Reiner and not fight this episode.) Edited versions work best for manga readers and rewatches (since we know what will happen, the buildup makes even more impact) Overall I think MAPPA's lack of OST for the most part is the right choice. (Although maybe a more epic/less heroic OST could've been used instead of 2Volt.) - -A comment from someone who also did a fan edit with a Samuel Kim's version of the leaked OST but improved the audio quality. His comment makes a lot of sense. - -His video https://youtu.be/yCpF48bLXbg don't touch comments though";False;False;;;;1610467302;;1610473876.0;{};gj0du2i;False;t3_kvsy6n;False;True;t1_gj0bex0;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0du2i/;1610524434;46;True;False;anime;t5_2qh22;;0;[]; -[];;;XLightThief;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/frozen_lights;light;text;t2_5o80b;False;False;[];;Our Last Crusade or the Rise of a New World;False;False;;;;1610467330;;False;{};gj0dw1l;False;t3_kvtund;False;False;t3_kvtund;/r/anime/comments/kvtund/anime_whith_equally_powerful_and_smart_male_and/gj0dw1l/;1610524463;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MaiValentineHusband;;;[];;;;text;t2_9ktbpab3;False;False;[];;I watched Yugioh (224 episdoes) but skipped most of the filler arcs and skipped right to the meat of the stories.;False;False;;;;1610467383;;False;{};gj0dzyy;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0dzyy/;1610524523;1;True;False;anime;t5_2qh22;;0;[]; -[];;;usayd2009;;;[];;;;text;t2_4kxp1y52;False;False;[];;Both it seems.;False;False;;;;1610467452;;False;{};gj0e4yz;False;t3_kvsy6n;False;True;t1_gj0d6ae;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0e4yz/;1610524597;4;True;False;anime;t5_2qh22;;0;[]; -[];;;GioMike;;;[];;;;text;t2_90d27;False;False;[];;Imagine thinking that they didn’t try the scene in post production with various soundtracks before the final cut .;False;False;;;;1610467462;;False;{};gj0e5m7;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0e5m7/;1610524607;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Xsaderr;;;[];;;;text;t2_62fn42oe;False;False;[];;Detective Conan, One Piece and Precure;False;False;;;;1610467485;;False;{};gj0e7bi;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0e7bi/;1610524632;2;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;And that has honestly been a detriment as it's caused them to slow down the pacing considerably since the time skip.;False;False;;;;1610467555;;False;{};gj0eci8;False;t3_kvtohs;False;False;t1_gj0ddn9;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0eci8/;1610524710;42;True;False;anime;t5_2qh22;;0;[]; -[];;;GioMike;;;[];;;;text;t2_90d27;False;False;[];;The farthest you stay away from “communities” and “fandoms “ the better your enjoyment of anything .;False;False;;;;1610467618;;False;{};gj0eh5t;False;t3_kvsy6n;False;True;t1_gj0apn6;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0eh5t/;1610524780;14;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610467624;moderator;False;{};gj0ehk4;False;t3_kvuhtw;False;True;t3_kvuhtw;/r/anime/comments/kvuhtw/what_is_this_anime_name_it_i_san_image_from_the/gj0ehk4/;1610524786;1;False;False;anime;t5_2qh22;;0;[]; -[];;;ChornoyeSontse;;;[];;;;text;t2_8vjfuk9d;False;False;[];;"I didn't want it to sound like that, just that I don't find twitter to be ""natural"".";False;False;;;;1610467651;;False;{};gj0ejlf;False;t3_kvsy6n;False;True;t1_gj0c5wa;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0ejlf/;1610524818;4;True;False;anime;t5_2qh22;;0;[]; -[];;;GioMike;;;[];;;;text;t2_90d27;False;False;[];;Sad but true. Realised that by spending some time on that sub.;False;False;;;;1610467709;;False;{};gj0enuj;False;t3_kvsy6n;False;True;t1_gj0cz4y;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0enuj/;1610524882;5;True;False;anime;t5_2qh22;;0;[]; -[];;;FireRifle64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FireRifle64;light;text;t2_29fr8mww;False;False;[];;"There is probably about 99 filler in this 900-1000 episode series. The thing is the staff have been gone and stretched out these chapters by adding more bits of dialogue or stretching out some panels to give Oda more time for the manga. -But yea, Naruto Overall as well for me.";False;False;;;;1610467732;;False;{};gj0epmf;False;t3_kvtohs;False;True;t1_gj09p9s;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0epmf/;1610524910;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gsenjou;;;[];;;;text;t2_5ns6dyc;False;False;[];;Looks like fanart of Bunny Girl Senpai.;False;False;;;;1610467750;;False;{};gj0eqxu;False;t3_kvuhtw;False;True;t3_kvuhtw;/r/anime/comments/kvuhtw/what_is_this_anime_name_it_i_san_image_from_the/gj0eqxu/;1610524929;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;Not 100%, but I am pretty sure it isn't from an anime...;False;False;;;;1610467762;;False;{};gj0ers6;False;t3_kvuhtw;False;True;t3_kvuhtw;/r/anime/comments/kvuhtw/what_is_this_anime_name_it_i_san_image_from_the/gj0ers6/;1610524942;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok-Mud2423;;;[];;;;text;t2_71ibihvi;False;False;[];;Monster op;False;False;;;;1610467774;;False;{};gj0esq0;False;t3_kvuhvx;False;False;t3_kvuhvx;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0esq0/;1610524957;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Lmnln314;;;[];;;;text;t2_97hln2y6;False;False;[];;I'm not really let them affect me too much though, but this is really getting worse.;False;False;;;;1610467781;;False;{};gj0et80;False;t3_kvsy6n;False;True;t1_gj0eh5t;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0et80/;1610524964;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610467786;;False;{};gj0etlx;False;t3_kvuhvx;False;True;t3_kvuhvx;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0etlx/;1610524969;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Sin778;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/Philipp2002;light;text;t2_42jtk419;False;False;[];;"Opening 1 of the Ancient Magus Bride (""Here""). Such an amazing song.";False;False;;;;1610467807;;False;{};gj0ev4y;False;t3_kvuhvx;False;True;t3_kvuhvx;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0ev4y/;1610524992;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DropItShock;;MAL;[];;https://myanimelist.net/animelist/BrinkOfVictory;dark;text;t2_9izpb;False;False;[];;Disagree. Everyone has a right to their opinion, but rarely does someone's opinion matter, especially people who you don't even know.;False;False;;;;1610467840;;False;{};gj0exlj;False;t3_kvsy6n;False;True;t1_gj0afys;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0exlj/;1610525030;43;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;"Cardcaptor Sakura opening 3 - -Selector Infected WIXOSS opening 1";False;False;;;;1610467895;;False;{};gj0f1s1;False;t3_kvuhvx;False;True;t3_kvuhvx;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0f1s1/;1610525094;1;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;My hero academia. Finished 70 episodes.;False;False;;;;1610467939;;False;{};gj0f541;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0f541/;1610525146;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;Saint Tail OP 1;False;False;;;;1610467947;;False;{};gj0f5n0;False;t3_kvuhvx;False;True;t3_kvuhvx;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0f5n0/;1610525153;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;Seriously. The entitlement is insane, worse than brats.;False;False;;;;1610467949;;False;{};gj0f5te;False;t3_kvsy6n;False;True;t1_gj05rmk;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0f5te/;1610525155;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Aedraxis;;;[];;;;text;t2_bc7wi;False;False;[];;Any way of giving the director some positive messages?;False;False;;;;1610467964;;False;{};gj0f6xt;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0f6xt/;1610525172;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Raaf3;;;[];;;;text;t2_7duyvjit;False;False;[];;"ok listen 2volt was a great choice wanna know WHY? - -Because the moment wasn't supposed to be heartfelt or a theme of betrayal that youseebiggirl is, it was a sudden moment filled with excitement and horror, they even made Eren look like a monster. Eren did something he almost hesitated at knowing he couldn't go back. Eren is a monster (and about the leaked ost, they are obviously gonna use it in the next episode don be stoopid)";False;False;;;;1610467966;;False;{};gj0f74k;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0f74k/;1610525176;27;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Attack on titan 2nd opening;False;False;;;;1610467987;;False;{};gj0f8r0;False;t3_kvuhvx;False;True;t3_kvuhvx;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0f8r0/;1610525199;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;PM_ME_STEAM_CODE_PLZ;;;[];;;;text;t2_z6fuh;False;False;[];;"You've posted this like 3 times in like 20 mins, stop spamming geez - -And someone literally [already replied](https://www.reddit.com/r/anime/comments/kvu4sf/-/gj0dilg) in your other thread with the correct answer - -It's the Flyable Heart VN, as mentioned by that user. If you search for it you'll see the CGs have these same characters";False;False;;;;1610468001;;False;{};gj0f9td;False;t3_kvuhtw;False;True;t3_kvuhtw;/r/anime/comments/kvuhtw/what_is_this_anime_name_it_i_san_image_from_the/gj0f9td/;1610525216;2;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"Based on a quick search, One Piece has around 100 filler episodes which is more than most series get fully adapting their story. - -One Piece is still long as hell, and longer than it needs to be. Scenes are extended longer than needed, and flashbacks and recaps take up episode time that isnt needed to get through the story. One Piece currently averages around an episode per chapter which shows how slow the pacing is when compared to most adaptations which are around 2-3 depending on the chapter length.";False;False;;;;1610468016;;False;{};gj0faww;False;t3_kvtohs;False;False;t1_gj0ddn9;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0faww/;1610525232;8;True;False;anime;t5_2qh22;;0;[]; -[];;;anime_mylife;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/anime_mylife/;light;text;t2_149b8ley;False;False;[];;Use twitter only for hentai;False;False;;;;1610468017;;False;{};gj0fb0b;False;t3_kvsy6n;False;True;t1_gj07wde;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0fb0b/;1610525233;26;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;"This is why I always get mad when I see people here talking about ""Oh no, what will TWITTER think about this anime?"" (ex Goblin Slayer) - -Nobody here, or as a matter of fact, ANYWHERE should give a single attosecond of thought about what that cesspool thinks about ANYTHING.";False;False;;;;1610468058;;False;{};gj0fdyz;False;t3_kvsy6n;False;True;t1_gj05d88;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0fdyz/;1610525277;101;True;False;anime;t5_2qh22;;0;[]; -[];;;OK_Computer_1997;;;[];;;;text;t2_93pqabhr;False;False;[];;Two Lives doesn't fit either. It sounds heroic and anthemic at a time when Eren is blowing up a building full of innocent civilians and murdering Willy Tybur while looking like a savage demon. Neither Two Lives nor YSBG fit the scene at all.;False;False;;;;1610468135;;False;{};gj0fjny;False;t3_kvsy6n;False;True;t1_gj0auz0;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0fjny/;1610525375;24;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;"Not sure what you mean by underrated so I just post my top 10 - -1. Ace wo nerae 2 -2. Mahoutsukai Sally 2 -3. Makiba no Shoujo Katri -4. Pretty Rhythm Rainbow Live -5. Honey Honey no Suteki na Bouken -6. Lady Georgie -7. Candy Candy -8. Haikara-san ga Tooru -9. Himitsu no Akko-chan 2 -10. Yume no Crayon Oukoku";False;False;;;;1610468141;;False;{};gj0fk5i;False;t3_kvuhvx;False;True;t3_kvuhvx;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0fk5i/;1610525383;1;True;False;anime;t5_2qh22;;0;[]; -[];;;infinite_lyy;;;[];;;;text;t2_9lftz77s;False;False;[];;That's so cool! How did you achieve that sort of light effect?;False;False;;;;1610468165;;False;{};gj0fm0m;False;t3_kvukpw;False;False;t3_kvukpw;/r/anime/comments/kvukpw/daisuke_kanbe_anime_name_the_millionaire_detective/gj0fm0m/;1610525411;3;True;False;anime;t5_2qh22;;0;[]; -[];;;InsomniaEmperor;;;[];;;;text;t2_5x68hmc4;False;False;[];;"Tokyo Ravens - -Strike the Blood - though the guy starts off as weak and unable to fully control his power with the annoying female mc hogging too much attention";False;False;;;;1610468196;;False;{};gj0foa7;False;t3_kvtund;False;True;t3_kvtund;/r/anime/comments/kvtund/anime_whith_equally_powerful_and_smart_male_and/gj0foa7/;1610525444;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"Both of weebs being extremely toxic isn't nothing new. - -I hope the director is well, because nobody should be harassed over something so stupid. - -It's ok to dislike something, but don't harras anyone for it...";False;False;;;;1610468205;;False;{};gj0foxy;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0foxy/;1610525455;3;True;False;anime;t5_2qh22;;0;[]; -[];;;infinite_lyy;;;[];;;;text;t2_9lftz77s;False;False;[];;Nodame Cantabile's first opening is amazing! A kpop group even covered it in Korean and debuted with it :);False;False;;;;1610468217;;False;{};gj0fpu4;False;t3_kvuhvx;False;True;t3_kvuhvx;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0fpu4/;1610525469;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Acturio;;MAL;[];;http://myanimelist.net/animelist/Acturio01;dark;text;t2_c1azh;False;False;[];;oh man that edit so much worse, the whole point of the scene was not knowing what Eren is actually gonna do, having epic music defeats the purpose of it big time. As a manga reader i think they built the tension of the episode really well, to the point that even i was nervous about whats gonna happen;False;False;;;;1610468222;;False;{};gj0fq6r;False;t3_kvsy6n;False;True;t1_gj0bex0;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0fq6r/;1610525474;58;True;False;anime;t5_2qh22;;0;[]; -[];;;InsomniaEmperor;;;[];;;;text;t2_5x68hmc4;False;False;[];;I remember watching a lot of Detective Conan but at some point I just got burned out from it.;False;False;;;;1610468227;;False;{};gj0fqjm;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0fqjm/;1610525479;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DrJWilson;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/drjwilson/animelist;light;text;t2_6zykq;False;False;[];;"Sorry, your submission has been removed. - -- Not anime, it's just original art. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610468239;moderator;False;{};gj0freg;False;t3_kvuhtw;False;True;t3_kvuhtw;/r/anime/comments/kvuhtw/what_is_this_anime_name_it_i_san_image_from_the/gj0freg/;1610525493;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AnxietyMode;;;[];;;;text;t2_30idps0n;False;False;[];;It’s called “Grain” if anyone cares.;False;False;;;;1610468239;;False;{};gj0frei;False;t3_kvuhvx;False;True;t1_gj0esq0;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0frei/;1610525493;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AnxietyMode;;;[];;;;text;t2_30idps0n;False;False;[];;In what world is anything Attack on Titan “underrated”?;False;False;;;;1610468280;;False;{};gj0funw;False;t3_kvuhvx;False;False;t1_gj0f8r0;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0funw/;1610525544;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Sin778;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/Philipp2002;light;text;t2_42jtk419;False;False;[];;"Naruto + Naruto Shippuden. (720 episodes). Well, like 350 episodes into Shippuden I started skipping filler episodes, so it's probably closer to like 680 for me. - -Second Place would be Hunter x Hunter with 148 episodes - -Third Place would be the Monogatari Series with around 100 episodes and 3 movies.";False;False;;;;1610468312;;False;{};gj0fx0v;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0fx0v/;1610525579;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Raaf3;;;[];;;;text;t2_7duyvjit;False;False;[];;"it was supposed to be a terrifying situation, these kinds of ""fans"" are so hard to deal with";False;False;;;;1610468350;;False;{};gj0fzxb;False;t3_kvsy6n;False;True;t1_gj0auz0;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0fzxb/;1610525623;10;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Well, it is so sad to see this happening just because of a single music choice. I mean criticism is acceptable but harassing someone who worked their ass off isn't acceptable at all. I actually tweeted to one of his tweets and was surprised when he liked my [tweet](https://imgur.com/a/xuS8wzT).;False;False;;;;1610468422;;1610469234.0;{};gj0g5em;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0g5em/;1610525708;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;I meant compared to the rest of AOT's openings it's barley talked about;False;False;;;;1610468463;;False;{};gj0g8hc;False;t3_kvuhvx;False;True;t1_gj0funw;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0g8hc/;1610525754;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Keltoigael;;;[];;;;text;t2_8ryhs;False;False;[];;Which scene? Just caught up on current season.;False;False;;;;1610468510;;False;{};gj0gc0w;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0gc0w/;1610525807;2;True;False;anime;t5_2qh22;;0;[]; -[];;;youssef_azhar;;;[];;;;text;t2_93d2t7kf;False;False;[];;using an app;False;False;;;;1610468546;;False;{};gj0geqw;True;t3_kvukpw;False;True;t1_gj0fm0m;/r/anime/comments/kvukpw/daisuke_kanbe_anime_name_the_millionaire_detective/gj0geqw/;1610525848;4;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Shows the Silver Award... and that's it."", 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'icon_width': 512, 'id': 'gid_1', 'is_enabled': True, 'is_new': False, 'name': 'Silver', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;Mirabem;;;[];;;;text;t2_7cp40oli;False;False;[];;"The fact that you were given a fundamental right to express your opinion means that it matter. - -But since I got so heavily downvoted, I assume some people think an opinion also means threatening an innocent person, which I said was clearly wrong... because it's not an opinion anymore.";False;True;;comment score below threshold;;1610468550;;False;{'gid_1': 1};gj0gf39;False;t3_kvsy6n;False;True;t1_gj0exlj;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0gf39/;1610525854;-6;True;False;anime;t5_2qh22;;1;[]; -[];;;AnxietyMode;;;[];;;;text;t2_30idps0n;False;False;[];;Compared to all anime openings (which this question is referring to) it is well within the top 1% of ones praised and talked about.;False;False;;;;1610468562;;False;{};gj0gg0u;False;t3_kvuhvx;False;True;t1_gj0g8hc;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0gg0u/;1610525866;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Minute_Brush955;;;[];;;;text;t2_6k4ofyvo;False;False;[];;Black catcher- it’s black clovers 10 op;False;False;;;;1610468587;;False;{};gj0ghxr;False;t3_kvuhvx;False;True;t3_kvuhvx;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0ghxr/;1610525895;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610468598;moderator;False;{};gj0gitz;False;t3_kvuteu;False;True;t3_kvuteu;/r/anime/comments/kvuteu/does_anyone_know_what_anime_this_girl_is_in/gj0gitz/;1610525909;1;False;False;anime;t5_2qh22;;0;[]; -[];;;sremcanin;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/mrkvaa;light;text;t2_4xt3dgl2;False;False;[];;"Bakemonogatari OP2 (from the snail arc) - -I don't know why I like it, it's just so funky and messy and I love it so much";False;False;;;;1610468670;;1610474431.0;{};gj0gobn;False;t3_kvuhvx;False;False;t3_kvuhvx;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0gobn/;1610525990;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Saitama058;;;[];;;;text;t2_76sp7df6;False;False;[];;What I mean is that openings you think that should be way more popular than it is now.;False;False;;;;1610468688;;False;{};gj0gpqr;True;t3_kvuhvx;False;True;t1_gj0fk5i;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0gpqr/;1610526011;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FreeK200;;;[];;;;text;t2_743x5;False;False;[];;Spice and Wolf might be up your alley.;False;False;;;;1610468704;;False;{};gj0gqxg;False;t3_kvtund;False;False;t3_kvtund;/r/anime/comments/kvtund/anime_whith_equally_powerful_and_smart_male_and/gj0gqxg/;1610526028;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Zero_GV, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610468715;moderator;False;{};gj0grt4;False;t3_kvuuvc;False;True;t3_kvuuvc;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0grt4/;1610526040;1;False;False;anime;t5_2qh22;;0;[]; -[];;;detective_snowman;;;[];;;;text;t2_44ouk0vf;False;False;[];;I think her name is Doremon;False;False;;;;1610468716;;False;{};gj0grwa;False;t3_kvuteu;False;True;t3_kvuteu;/r/anime/comments/kvuteu/does_anyone_know_what_anime_this_girl_is_in/gj0grwa/;1610526042;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hokoriwa;;;[];;;;text;t2_89aj2n94;False;False;[];;"[""Talking""](https://www.youtube.com/watch?v=BWxX4S42uK0) (Subete Ga F Naru opening)";False;False;;;;1610468735;;False;{};gj0gtc4;False;t3_kvuhvx;False;True;t3_kvuhvx;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0gtc4/;1610526063;1;True;False;anime;t5_2qh22;;0;[]; -[];;;baquea;;;[];;;;text;t2_j3k0u;False;True;[];;[Mikagura Gakuen Kumikyoku](https://myanimelist.net/anime/28817/Mikagura_Gakuen_Kumikyoku_TV);False;False;;;;1610468751;;False;{};gj0gulu;False;t3_kvuteu;False;True;t3_kvuteu;/r/anime/comments/kvuteu/does_anyone_know_what_anime_this_girl_is_in/gj0gulu/;1610526082;1;True;False;anime;t5_2qh22;;0;[]; -[];;;therealpaukars;;;[];;;;text;t2_26fdvlg4;False;False;[];;What it's wrong with writing fanfictions?;False;False;;;;1610468788;;False;{};gj0gxf4;False;t3_kvsy6n;False;True;t1_gj0cupj;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0gxf4/;1610526125;23;True;False;anime;t5_2qh22;;0;[]; -[];;;JaserTheBoss;;;[];;;;text;t2_2wnu25hw;False;False;[];;Toradora, it was a really good rom-com with a beautiful ending;False;False;;;;1610468825;;False;{};gj0h08y;False;t3_kvuuvc;False;True;t3_kvuuvc;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0h08y/;1610526167;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;EstebanIsAGamerWord;;;[];;;;text;t2_4vhvkb76;False;False;[];;Nobody should think about what Twitter, Reddit or people from any site says. Form your own opinions on something. There's been trash I loved, and GOATs I hated. Twitter etc. is not meant for useful discussion in the first place, it's all reactionary. It should only be used as a marketing tool if you're not a private user.;False;False;;;;1610468861;;False;{};gj0h2xo;False;t3_kvsy6n;False;True;t1_gj0fdyz;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0h2xo/;1610526208;75;True;False;anime;t5_2qh22;;0;[]; -[];;;AnxietyMode;;;[];;;;text;t2_30idps0n;False;False;[];;Kaerimichi;False;False;;;;1610468875;;False;{};gj0h3zr;False;t3_kvuhvx;False;True;t1_gj0gobn;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0h3zr/;1610526224;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Squiddy56_;;;[];;;;text;t2_93n2q5lm;False;False;[];;"not sure if these are this is an underrated one but i liked -""if her flag breaks""";False;False;;;;1610468893;;1610473820.0;{};gj0h5cz;False;t3_kvuuvc;False;True;t3_kvuuvc;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0h5cz/;1610526244;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610468934;;False;{};gj0h8iv;False;t3_kvsy6n;False;True;t1_gj0gc0w;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0h8iv/;1610526291;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zero_GV;;;[];;;;text;t2_75w6lc51;False;False;[];;"Was Toradora really ""that"" underrated?";False;False;;;;1610468945;;False;{};gj0h9g6;True;t3_kvuuvc;False;False;t1_gj0h08y;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0h9g6/;1610526305;7;True;False;anime;t5_2qh22;;0;[]; -[];;;SaloniPanchal;;;[];;;;text;t2_3vqlkupf;False;False;[];;Well,by this time we should know that Twitter is filled with toxic people and we should have their opinion with a pinch of salt,it doesn't take any time, money and effort to write one single hate comment but it does takes a lot of time to animated a single page of manga .So,rather than giving these people unnecessary attention we should take our time to appreciate the team behind the animation of AOT. Well, that is just my opinion.;False;False;;;;1610469001;;False;{};gj0hdrf;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0hdrf/;1610526368;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610469072;;False;{};gj0hj56;False;t3_kvuuvc;False;True;t1_gj0h9g6;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0hj56/;1610526448;0;True;False;anime;t5_2qh22;;0;[]; -[];;;skeeedzzz;;;[];;;;text;t2_13iktbvc;False;False;[];;he’s wrong and it’s not really that good. The ending is super but watching the series is a chore imo;False;False;;;;1610469083;;False;{};gj0hjxh;False;t3_kvuuvc;False;True;t1_gj0h9g6;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0hjxh/;1610526459;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Kekkai sensen;False;False;;;;1610469119;;False;{};gj0hmn3;False;t3_kvuuvc;False;True;t3_kvuuvc;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0hmn3/;1610526501;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DeTroyes1;;;[];;;;text;t2_awtnhf;False;False;[];;"""Gravity Wall"" & ""Sh0ut"" - Re:Creators";False;False;;;;1610469134;;False;{};gj0hnuq;False;t3_kvuhvx;False;True;t3_kvuhvx;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0hnuq/;1610526520;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EstebanIsAGamerWord;;;[];;;;text;t2_4vhvkb76;False;False;[];;I would much rather have 50% filler and proper episodes instead of dragging a 1 second punch into 5 seconds. The pacing is disgustingly atrocious. I'm hoping like crazy that it'll get a remake after the manga is over, because it's not been done justice at all.;False;False;;;;1610469169;;False;{};gj0hqgo;False;t3_kvtohs;False;False;t1_gj0eci8;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0hqgo/;1610526557;25;True;False;anime;t5_2qh22;;0;[]; -[];;;steallight;;;[];;;;text;t2_6loku516;False;False;[];;How many harem he built again?;False;False;;;;1610469176;;False;{};gj0hr12;False;t3_kvuuvc;False;True;t1_gj0h5cz;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0hr12/;1610526566;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SuperSceptile2821;;;[];;;;text;t2_t0fs4;False;False;[];;Nothing wrong with shipping or writing fanfiction unless you’re taking them as canon and harassing other people about them.;False;False;;;;1610469177;;False;{};gj0hr3n;False;t3_kvsy6n;False;True;t1_gj0cupj;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0hr3n/;1610526567;71;True;False;anime;t5_2qh22;;0;[]; -[];;;Zero_GV;;;[];;;;text;t2_75w6lc51;False;False;[];;ive already finished it and think the fighting is the best part;False;False;;;;1610469187;;False;{};gj0hrsh;True;t3_kvuuvc;False;True;t1_gj0hj56;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0hrsh/;1610526577;0;True;False;anime;t5_2qh22;;0;[]; -[];;;skeeedzzz;;;[];;;;text;t2_13iktbvc;False;False;[];;I’d say Noragami is one of the most slept on shonen of our time. Its setting is interesting and the characters are really good imo;False;False;;;;1610469188;;False;{};gj0hrvu;False;t3_kvuuvc;False;False;t3_kvuuvc;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0hrvu/;1610526578;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610469206;;False;{};gj0ht8y;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0ht8y/;1610526598;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610469252;;False;{};gj0hwpu;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0hwpu/;1610526649;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;dunno, but always shows with alot of fanfics (mha) have the most toxic of fanbases;False;True;;comment score below threshold;;1610469253;;False;{};gj0hwte;False;t3_kvsy6n;False;True;t1_gj0gxf4;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0hwte/;1610526650;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;Hivesz;;;[];;;;text;t2_8drgthqx;False;False;[];;I disagree I don’t think it’s underrated in a lot of people’s eyes it’s a classic;False;False;;;;1610469260;;False;{};gj0hxdd;False;t3_kvuuvc;False;True;t1_gj0h08y;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0hxdd/;1610526659;4;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;and this is what happend with MHA making it one of the most toxic fandoms ive ever encountered;False;False;;;;1610469279;;False;{};gj0hyvc;False;t3_kvsy6n;False;True;t1_gj0hr3n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0hyvc/;1610526682;5;True;False;anime;t5_2qh22;;0;[]; -[];;;hokoriwa;;;[];;;;text;t2_89aj2n94;False;False;[];;The anthem of the heart;False;False;;;;1610469286;;False;{};gj0hzfe;False;t3_kvtp2s;False;True;t3_kvtp2s;/r/anime/comments/kvtp2s/so_today_i_have_watched_a_silent_voice_your_name/gj0hzfe/;1610526689;1;True;False;anime;t5_2qh22;;0;[]; -[];;;XLightThief;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/frozen_lights;light;text;t2_5o80b;False;False;[];;Naruto + Naruto Shippuden.;False;False;;;;1610469310;;False;{};gj0i1b5;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0i1b5/;1610526718;2;False;False;anime;t5_2qh22;;0;[]; -[];;;hokoriwa;;;[];;;;text;t2_89aj2n94;False;False;[];;Fairy Tail (it was one of the first anime i've seen);False;False;;;;1610469351;;False;{};gj0i4dx;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0i4dx/;1610526763;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lacking-name;;;[];;;;text;t2_hyec8wa;False;False;[];;"- Princess principal (2017) - -- Asobi Asobase (2018) - -- Hinamatsuri (2018) - -- Land of the Lustrous (2017) - -- Penguindrum (2011) - -- Somali and the Forest Spirit (2020) - -- Tamako Market (2013) - -- Gosick (2011) - -- Rainbow (2010) - -- Katanagatari (2010) - -- Kanon (2006) - -- Beck (2004)";False;False;;;;1610469382;;False;{};gj0i6rp;False;t3_kvuuvc;False;True;t3_kvuuvc;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0i6rp/;1610526798;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SuperSceptile2821;;;[];;;;text;t2_t0fs4;False;False;[];;The very vocal shippers are present in every community, it just seems louder in the MHA fandom because it’s extremely popular. It happens with every Shonen. Naruto being a prime example.;False;False;;;;1610469399;;False;{};gj0i81u;False;t3_kvsy6n;False;True;t1_gj0hyvc;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0i81u/;1610526816;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Zero_GV;;;[];;;;text;t2_75w6lc51;False;False;[];;i 100% agree;False;False;;;;1610469444;;False;{};gj0ibkt;True;t3_kvuuvc;False;True;t1_gj0hrvu;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0ibkt/;1610526869;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610469452;moderator;False;{};gj0ic74;False;t3_kvv3u3;False;True;t3_kvv3u3;/r/anime/comments/kvv3u3/where_can_i_watch_inu_x_boku/gj0ic74/;1610526878;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Faera;;MAL;[];;http://myanimelist.net/profile/acmecrazyfool;dark;text;t2_evyei;False;False;[];;"I think you just took one experience and generalised... - -It's not the shipping and fanfics that create toxicity. Popular things will tend to have more shipping and fanfics, and also more toxic fans.";False;False;;;;1610469461;;False;{};gj0icy5;False;t3_kvsy6n;False;True;t1_gj0hyvc;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0icy5/;1610526889;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Ishuzoku-Connoisseur;;;[];;;;text;t2_65qsew7y;False;False;[];;The bigger the fanbase the higher the chance of running into someone “toxic”.;False;False;;;;1610469467;;False;{};gj0ide8;False;t3_kvsy6n;False;True;t1_gj0hyvc;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0ide8/;1610526896;21;True;False;anime;t5_2qh22;;0;[]; -[];;;as1eep;;;[];;;;text;t2_pek5e8i;False;False;[];;"Kaiba - -One Outs - -Doukyusei -classmates-";False;False;;;;1610469471;;False;{};gj0idoz;False;t3_kvuuvc;False;True;t3_kvuuvc;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0idoz/;1610526900;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zero_GV;;;[];;;;text;t2_75w6lc51;False;False;[];;now i gotta go search them all up;False;False;;;;1610469535;;False;{};gj0iim8;True;t3_kvuuvc;False;True;t1_gj0i6rp;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0iim8/;1610526974;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tasthar;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tasthar;light;text;t2_1fhlyiyc;False;False;[];;"In This Life (Deltora Quest OP 3) - -Stray (Wolf's Rain OP) - -Silly-go-Round (.hack//Roots OP) - -euphoric field and ebullient future (ef series OPs) - -Karma (Tales of the Abyss OP) - - Ano hi Time Machine (Zoku Natsume Yuujinchou OP) - -Light My Fire (Shakugan no Shana Final OP 1) - -Buddy ( Last Exile: Ginyoku no Fam OP) - -How to go (Un-Go OP) - -Crowds (Gatchaman Crowds OP) - -Dream Trigger (World Trigger OP 3) - -Braver (Angolmois: Genkou Kassenki OP)";False;False;;;;1610469550;;False;{};gj0iju3;False;t3_kvuhvx;False;True;t3_kvuhvx;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0iju3/;1610526991;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheWorldisFullofWar;;;[];;;;text;t2_77qmq;False;True;[];;I wish Japan would create their own Twitter alternative so they can get off this American-infested shit hole platform.;False;True;;comment score below threshold;;1610469554;;False;{};gj0ik4b;False;t3_kvsy6n;False;True;t1_gj05d88;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0ik4b/;1610526995;-27;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;I think so some manga readers have over-the-top expectations that can't be fulfilled under any circumstances.;False;False;;;;1610469575;;1610471279.0;{};gj0iltc;False;t3_kvsy6n;False;True;t1_gj0a5dp;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0iltc/;1610527020;25;True;False;anime;t5_2qh22;;0;[]; -[];;;as1eep;;;[];;;;text;t2_pek5e8i;False;False;[];;"Kiznaivers opening is great. - -Also initial D's first opening is really really good but everyone ignores it gor the rest of its ost.";False;False;;;;1610469599;;False;{};gj0inmz;False;t3_kvuhvx;False;False;t3_kvuhvx;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0inmz/;1610527049;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LesbianCommander;;;[];;;;text;t2_xkfd3;False;False;[];;I hear that a lot but I don't really notice it...;False;False;;;;1610469608;;False;{};gj0ioc3;False;t3_kvsy6n;False;True;t1_gj0hyvc;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0ioc3/;1610527059;8;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610469618;;False;{};gj0ip2d;False;t3_kvuuvc;False;True;t1_gj0hr12;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0ip2d/;1610527071;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;try going on any social media that aint reddit;False;True;;comment score below threshold;;1610469670;;False;{};gj0it3f;False;t3_kvsy6n;False;True;t1_gj0ioc3;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0it3f/;1610527129;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;infinite_lyy;;;[];;;;text;t2_9lftz77s;False;False;[];;"Chihayafuru -amazing characters and development - -Nodame Cantabile - here for the music - -Bokura ga Ita - underrated teen drama";False;False;;;;1610469707;;False;{};gj0iw1j;False;t3_kvuuvc;False;True;t3_kvuuvc;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0iw1j/;1610527175;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheSoaringDingo;;;[];;;;text;t2_2yc2u07x;False;False;[];;Re:zero is the coolest i have seen;False;False;;;;1610469797;;False;{};gj0j35s;False;t3_kvv3dc;False;True;t3_kvv3dc;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj0j35s/;1610527281;0;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"I have just the series for you if your looking for Male and Female MCs that both have power and intellegence, has romance, and fantasy and magic. - -[**Shakugan no Shana**](https://myanimelist.net/anime/355/Shakugan_no_Shana) - [Trailer](https://www.youtube.com/watch?v=xvrr00CY2_Y&ab_channel=Funimation) - -Shakugan no Shana is a series about the human world and the Crimson world, a world parallel to it full of Crimson Denizens, and about the Flame Haze, beings that maintains the balance between both worlds. - -The story follows a guy who is killed by a crimson denizen and saved by a Flame Haze, but he finds out he already died some time ago and is just the remnants of the human he used to be. We follow him as he learns more about the 2 worlds and the beings that inhabit them. - -This is a Action, Romance, Supernatural, Drama that is 3 season 75 episode series that is a full adaption of the source material, so there is a 100% definate ending to the story, something you really dont see that often. It is my all time fav action romance. - -[](#meguminthumbsup)";False;False;;;;1610469848;;False;{};gj0j74h;False;t3_kvtund;False;True;t3_kvtund;/r/anime/comments/kvtund/anime_whith_equally_powerful_and_smart_male_and/gj0j74h/;1610527343;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;Twin Star exorcist Opening 3;False;False;;;;1610469856;;False;{};gj0j7r9;False;t3_kvuhvx;False;True;t3_kvuhvx;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0j7r9/;1610527353;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheSoaringDingo;;;[];;;;text;t2_2yc2u07x;False;False;[];;I loved the ending to. I wish that it had a little bit more;False;False;;;;1610469922;;False;{};gj0jcw6;False;t3_kvuuvc;False;True;t1_gj0h08y;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0jcw6/;1610527433;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Tasthar;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tasthar;light;text;t2_1fhlyiyc;False;False;[];;Liked it until last 2-3 episodes.;False;False;;;;1610469926;;False;{};gj0jd9x;False;t3_kvuuvc;False;True;t1_gj0h5cz;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0jd9x/;1610527440;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LesbianCommander;;;[];;;;text;t2_xkfd3;False;False;[];;It's one of the biggest moments in the new arc. I get being disappointed, but man, not nearly enough to make an edit or harassing some dude. That shit is crazy.;False;False;;;;1610469944;;False;{};gj0jeoe;False;t3_kvsy6n;False;True;t1_gj0bex0;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0jeoe/;1610527461;3;False;False;anime;t5_2qh22;;0;[]; -[];;;Tasthar;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tasthar;light;text;t2_1fhlyiyc;False;False;[];;It's one of the most popular rom-coms tho.;False;False;;;;1610470016;;False;{};gj0jki3;False;t3_kvuuvc;False;True;t1_gj0h08y;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0jki3/;1610527549;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheSoaringDingo;;;[];;;;text;t2_2yc2u07x;False;False;[];;"your name - -Blend s (definitely underrated) - -Kokoro connect - -Rascal doesn't dream of bunny girl senpai - -terror in resonance";False;False;;;;1610470028;;False;{};gj0jlgj;False;t3_kvuuvc;False;False;t3_kvuuvc;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0jlgj/;1610527563;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;PerroXX;;;[];;;;text;t2_byqd0;False;False;[];;For me is Gintama. I've never been interested on One Piece, I've dropped Naruto before the Pain arc (and changed to manga), and for other long standing animes I only watched a few chapters (i.e. Pokemon, Conan or Doraemon);False;False;;;;1610470034;;False;{};gj0jlyn;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0jlyn/;1610527571;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610470038;moderator;False;{};gj0jmc1;False;t3_kvvb2i;False;True;t3_kvvb2i;/r/anime/comments/kvvb2i/looking_for_sliceofliferomance_anime_with_adult/gj0jmc1/;1610527576;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"# Source Material Corner - -Reply to this comment for any source-related discussion, future spoilers (including future characters, events and general hype about future content), comparison of the anime adaptation to the original, or just general talk about the source material. **You are still required to tag all spoilers.** Discussions about the source outside of this comment tree will be removed, and replying with spoilers outside of the source corner will lead to bans. - -The spoiler syntax is: -`[Spoiler source](/s ""Spoiler goes here"")` - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610470057;moderator;False;{};gj0jnrt;False;t3_kvvbaw;False;True;t3_kvvbaw;/r/anime/comments/kvvbaw/yatogamechan_kansatsu_nikki_sansatsume_episode_1/gj0jnrt/;1610527599;1;False;True;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;Never viewed Rezero as a cool show I view it more as a show about a guy who thinks he’s cool until the world proceeds to beat him down to the ground;False;False;;;;1610470069;;1610478533.0;{};gj0joq9;True;t3_kvv3dc;False;True;t1_gj0j35s;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj0joq9/;1610527613;1;True;False;anime;t5_2qh22;;0;[]; -[];;;psychosynapse;;;[];;;;text;t2_5eq0qzr3;False;False;[];;"As a manga reader, I agree with you. I have never seen the fan edits and had no expectations going into the episode. Sure, I knew what was going to happen but that didn’t take away from the tension or enjoyment for me. - -I am surprised at the level of entitlement around all this.";False;False;;;;1610470099;;False;{};gj0jr1e;False;t3_kvsy6n;False;True;t1_gj0ce94;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0jr1e/;1610527649;24;True;False;anime;t5_2qh22;;0;[];True -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;"The music in that scene sucked ass. If you make something shitty, fans are going to be upset and screech at you on SM. This is not hard. Just like how Sasuga Kei got tons of hate when her series went straight to the shitter (looking at you, DomeKano 215+). - -Artists are used to this though, they have thick skins. Or they should. Idiots on Twitter shrieking at you rolls off like water on oil, and if it doesn't, get more oil, because it's a thunderstorm out there. If that *still* doesn't work, as your doctor I prescribe visiting /a/ daily and getting screamed at by angry anons for having shit taste until it doesn't bother you.";False;True;;comment score below threshold;;1610470114;;1610470500.0;{};gj0js76;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0js76/;1610527666;-17;True;False;anime;t5_2qh22;;0;[]; -[];;;cocaine_enthusiast1;;;[];;;;text;t2_9eyvh4jz;False;False;[];;So he got harassed for directing one of the best episode in the history of tv, just wow... people are never happy.;False;False;;;;1610470174;;False;{};gj0jwu8;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0jwu8/;1610527733;4;True;False;anime;t5_2qh22;;0;[]; -[];;;infinite_lyy;;;[];;;;text;t2_9lftz77s;False;False;[];;"Wotakoi is perfect for this! Office setting, 20+ yr olds :) - -Try The Great Passage as well. Its abt the creation of a dictionary";False;False;;;;1610470198;;False;{};gj0jyra;False;t3_kvvb2i;False;False;t3_kvvb2i;/r/anime/comments/kvvb2i/looking_for_sliceofliferomance_anime_with_adult/gj0jyra/;1610527762;4;True;False;anime;t5_2qh22;;0;[]; -[];;;02Hiro;;;[];;;;text;t2_3q138ptl;False;False;[];;It's definitely not underrepresented. Whenever someone asks for a recommendation for a romance or romcom, it's always the first result you see.;False;False;;;;1610470218;;False;{};gj0k0b9;False;t3_kvuuvc;False;True;t1_gj0hj56;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0k0b9/;1610527785;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crypto_261;;;[];;;;text;t2_89gxyqnf;False;False;[];;Maybe demi chan wa kiritarai;False;False;;;;1610470254;;False;{};gj0k34l;False;t3_kvvb2i;False;True;t3_kvvb2i;/r/anime/comments/kvvb2i/looking_for_sliceofliferomance_anime_with_adult/gj0k34l/;1610527828;0;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Can you elaborate on what's cool anime a little more?;False;False;;;;1610470255;;False;{};gj0k38y;False;t3_kvv3dc;False;False;t3_kvv3dc;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj0k38y/;1610527830;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;Miss kobayashi's dragon maid;False;False;;;;1610470275;;False;{};gj0k4st;False;t3_kvvb2i;False;False;t3_kvvb2i;/r/anime/comments/kvvb2i/looking_for_sliceofliferomance_anime_with_adult/gj0k4st/;1610527853;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Tasthar;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tasthar;light;text;t2_1fhlyiyc;False;False;[];;People like to sleep on Kingdom due to the bad CGI in the first season.;False;False;;;;1610470280;;False;{};gj0k57i;False;t3_kvuuvc;False;True;t3_kvuuvc;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0k57i/;1610527859;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;Oh, I really missed this silly show. I love how Yatogame went [from being all smug](https://i.imgur.com/ToDos4E.png) to [freaking out](https://i.imgur.com/c8bZqLA.png) when Yanna and Mai asked her to pick a side.;False;False;;;;1610470288;;False;{};gj0k5ut;False;t3_kvvbaw;False;False;t3_kvvbaw;/r/anime/comments/kvvbaw/yatogamechan_kansatsu_nikki_sansatsume_episode_1/gj0k5ut/;1610527867;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Handekinho;;;[];;;;text;t2_1v9h4khb;False;False;[];;Samurai champloo definitely;False;False;;;;1610470295;;False;{};gj0k6bg;False;t3_kvv3dc;False;False;t3_kvv3dc;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj0k6bg/;1610527874;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Conti;;;[];;;;text;t2_5bde9ix;False;False;[];;Yeah that moment felt pretty weak in terms, not gonna lie. I don’t think Mappa should be immune to criticism, so this doesn’t really bother me. That being said, I think everyone needs to calm down a bit, because from having read the manga, this shit’s about to go off the rails and crash and burn anyway, so fans shouldn’t care that much since it’s going to be bad no matter what Mappa does.;False;True;;comment score below threshold;;1610470355;;False;{};gj0kb6b;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0kb6b/;1610527944;-15;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Roughly ordered by how much I like them: - -* [Spice and Wolf](https://livechart.me/anime/3481) — A traveling merchant in a medieval land is joined by an ancient wolf spirit and they roam together. - -* [Planetes](https://livechart.me/anime/3761) — A glimpse at the near future of space travel as humanity attempts to reach farther into the cosmos. - -* [NANA](https://livechart.me/anime/3640) — Sex, drugs, and rock and roll: the story of two women that become friends after a chance encounter. - -* [Sing Yesteday for Me](https://www.livechart.me/anime/9412) — Figuring out life and relationships after college. - -* [I Can't Understand What My Husband is Saying](https://livechart.me/anime/610) — Short comedic series about a married couple where the guy's an otaku while his wife is the one supporting them with a job. - -* [Otona Joshi no Anime Time](https://livechart.me/anime/4916) — Four short stories about adult women in different stages of life. - -* [Wotakoi (Love is Hard for Otaku)](https://livechart.me/anime/2800) — A geeky pair of former childhood friends are reunited in the workplace. - -* [Emma: A Victorian Romance](https://livechart.me/anime/4358) — A maid and a member of the gentry meet in Victorian London. - -* [Rec](https://livechart.me/anime/3869) — Young adults trying to find their way in the world, one of them as a voice actress. - -* [Tokyo Marble Chocolate](https://livechart.me/anime/5448) — A two-part OVA about a couple that are both unlucky in love, told from each of their perspectives. - -* [Natsuyuki Rendezvous](https://livechart.me/anime/1035) — Adults working in a flower shop, dealing with a loss and moving on afterward. Has a supernatural/fairy tale aspect as well. - -* [Kimi ga Nozomu Eien](https://livechart.me/anime/3575) — Tragedy strikes in high school (early in the series), young adults deal with the fallout years later.";False;False;;;;1610470403;;False;{};gj0keuc;False;t3_kvvb2i;False;False;t3_kvvb2i;/r/anime/comments/kvvb2i/looking_for_sliceofliferomance_anime_with_adult/gj0keuc/;1610527998;7;True;False;anime;t5_2qh22;;0;[]; -[];;;forbearance;;;[];;;;text;t2_5gs4n;False;False;[];;You mean you don't sometimes admire the sight of a burning trash heap?;False;False;;;;1610470403;;False;{};gj0keug;False;t3_kvsy6n;False;True;t1_gj0fdyz;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0keug/;1610527998;4;True;False;anime;t5_2qh22;;0;[]; -[];;;guysensei1;;;[];;;;text;t2_nqsvg;False;False;[];;Wasteful days of high school girls has an amazing OP;False;False;;;;1610470408;;False;{};gj0kfbb;False;t3_kvuhvx;False;True;t3_kvuhvx;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0kfbb/;1610528005;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;Hamatora;False;False;;;;1610470414;;False;{};gj0kfrh;False;t3_kvv3dc;False;True;t3_kvv3dc;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj0kfrh/;1610528013;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Keltoigael;;;[];;;;text;t2_8ryhs;False;False;[];;Episode 5? Going to have to rewatch.;False;False;;;;1610470424;;False;{};gj0kgi2;False;t3_kvsy6n;False;True;t1_gj0h8iv;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0kgi2/;1610528024;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;Two lives actually they're similar but not the same.;False;False;;;;1610470448;;False;{};gj0kic2;False;t3_kvsy6n;False;True;t1_gj0awpu;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0kic2/;1610528052;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;Agreed;False;False;;;;1610470464;;False;{};gj0kjl8;True;t3_kvv3dc;False;False;t1_gj0k6bg;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj0kjl8/;1610528071;1;True;False;anime;t5_2qh22;;0;[]; -[];;;God_of_Chickens;;;[];;;;text;t2_47ve7gcb;False;False;[];;You were downvoted for telling the truth lmao. Titanfolk does not have a thing to do with this. In fact one of the top posts on Titanfolk right now is calling out this bs and defending the director.;False;False;;;;1610470494;;False;{};gj0klzf;False;t3_kvsy6n;False;True;t1_gj0dim0;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0klzf/;1610528105;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;"A dark blot in Attack on Titan history. - -And it still lives";False;False;;;;1610470507;;False;{};gj0kn37;False;t3_kvsy6n;False;True;t1_gj08vzs;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0kn37/;1610528121;2;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Detective Conan, around 900 episodes but skipped all the fillers, so somewhere around 300-370 episodes.;False;False;;;;1610470511;;False;{};gj0knex;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0knex/;1610528126;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;Hamatora, ultramarine magmell and B: The beginning;False;False;;;;1610470522;;False;{};gj0ko8z;False;t3_kvuuvc;False;True;t3_kvuuvc;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0ko8z/;1610528139;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;"Mushishi - -Sazae-san - -Maison Ikkoku - -Eikoku Koi Monogatari Emma - -Trapp Ikka Monogatari";False;False;;;;1610470523;;False;{};gj0kobx;False;t3_kvvb2i;False;True;t3_kvvb2i;/r/anime/comments/kvvb2i/looking_for_sliceofliferomance_anime_with_adult/gj0kobx/;1610528140;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Falsus;;;[];;;;text;t2_c6qmw;False;False;[];;It is time for the peak of Slime, I hope they don't fuck it up like the end of the 1st season. It will be so good.;False;False;;;;1610470536;;False;{};gj0kpg7;False;t3_kvvec1;False;True;t3_kvvec1;/r/anime/comments/kvvec1/tensura_season_2_thank_goodness_its_finally_out/gj0kpg7/;1610528156;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OGIOuser;;;[];;;;text;t2_764c4m2;False;False;[];;"Exactly, plus weren't we supposed to be listening to the speech being if the song used in s3 played then we would be distracted from what they were saying and and focus on the action - -Example: Brain currently on monkey mode: oh he transforming, people die, oh he appear on stage, people die. And not even see that they just declared war on Paradis.";False;False;;;;1610470540;;False;{};gj0kprf;False;t3_kvsy6n;False;True;t1_gj0f74k;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0kprf/;1610528161;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610470587;;False;{};gj0ktd9;False;t3_kvsy6n;False;True;t1_gj0ik4b;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0ktd9/;1610528214;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;The opening of ultramarine magmell I think it's called 'dash and daaash!' or something like that. It's very cool opening;False;False;;;;1610470640;;False;{};gj0kxmo;False;t3_kvuhvx;False;True;t3_kvuhvx;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0kxmo/;1610528276;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dastrykerblade;;;[];;;;text;t2_if3ui;False;False;[];;Completely agree. I thought the music was great. Just bc something isn’t what you expected doesn’t mean it’s bad.;False;False;;;;1610470642;;False;{};gj0kxpz;False;t3_kvsy6n;False;True;t1_gj0a5dp;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0kxpz/;1610528278;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Aizenchair-sama;;;[];;;;text;t2_1l97otho;False;False;[];;I think something similar to rasetsu from Hunter x Hunter could work very well;False;False;;;;1610470642;;False;{};gj0kxqw;False;t3_kvsy6n;False;True;t1_gj0fjny;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0kxqw/;1610528278;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Hey-Watch;;;[];;;;text;t2_7oeklsbn;False;False;[];;"agreed. - -the most interesting opinions are genuine opinions. I have a friend who I disagree with on almost EVERYTHING when it comes to movies/TV - he dropped attack on titan after one episode, whereas I'm a massive fan. he thought the warcraft movie was great, whereas I thought it was generic and boring. I still love hearing his opinions and discussing stuff with him because they're always his real thoughts and how he actually perceived what he saw. - -form your own opinions and realize that no one thing is for everyone and it's okay to dislike things someone else likes and vice versa";False;False;;;;1610470665;;False;{};gj0kzl6;False;t3_kvsy6n;False;True;t1_gj0h2xo;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0kzl6/;1610528305;10;True;False;anime;t5_2qh22;;0;[]; -[];;;HahaVince;;;[];;;;text;t2_6pkh7e8o;False;False;[];;Issue is, new members don’t go to that mega thread. But alright whatever you say 🤷🏻‍♂️;False;False;;;;1610470669;;False;{};gj0kzwt;True;t3_kvtz4q;False;True;t1_gj0cgmy;/r/anime/comments/kvtz4q/recommendation_threads_please_help_us_help_you/gj0kzwt/;1610528310;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Skylair13;;;[];;;;text;t2_1xfa6ths;False;False;[];;Monogatari series with 100+ episodes;False;False;;;;1610470678;;False;{};gj0l0ks;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0l0ks/;1610528320;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Starwind_Amada;;;[];;;;text;t2_2xrw3imb;False;True;[];;Jack Dorsey is a fascist;False;False;;;;1610470682;;False;{};gj0l0w8;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0l0w8/;1610528324;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;grizzchan;;;[];;;dark;text;t2_nn6d9;False;True;[];;"Bruh, the director of the Konosuba movie completely butchered the story that it adapted and these guys are crying because Vogel im Käfig wasn't used for one particular scene? - -They should be grateful that they're getting a faithful high quality full adaptation, something that only very few select series get.";False;False;;;;1610470685;;False;{};gj0l13j;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0l13j/;1610528327;2;True;False;anime;t5_2qh22;;0;[]; -[];;;javaperson12;;;[];;;;text;t2_1ib0zw59;False;False;[];;ITT : virgin weeb degens;False;False;;;;1610470709;;False;{};gj0l301;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0l301/;1610528356;0;True;False;anime;t5_2qh22;;0;[]; -[];;;dastrykerblade;;;[];;;;text;t2_if3ui;False;False;[];;lol what? we reading the same manga here?;False;False;;;;1610470713;;False;{};gj0l3bk;False;t3_kvsy6n;False;True;t1_gj0kb6b;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0l3bk/;1610528361;6;True;False;anime;t5_2qh22;;0;[]; -[];;;aaftaabsizindagi;;;[];;;;text;t2_900l57fd;False;False;[];;"What happened was horrible, but judging by the timeline, I think there is also a fair possibility that the director locked his account due to the massive influx of positive comments. - -There was a post on r/titanfolk about the director replying with a heartfelt thank you note to a fan after he/she basically said that they loved the latest episode. It was clear the director was in distress because of the hate. - -That post quickly got thousands of upvotes, many comments were saying how to DM basic stuff in japanese. - -Next thing you know, his twitter is locked. - -I think he might just be overwhelmed by the amount of attention he has gotten. - -Logically, it makes more sense for him to lock his account when the hate was at its pieck. The timeline seems to favor this assumption imo. - -Of course, it's only a possibility and I am not denying the fact that he might have locked his account because of the hate. - -I am also not justifying the hate he has received. - -I am simply trying to find a silver lining";False;False;;;;1610470740;;False;{};gj0l5gq;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0l5gq/;1610528392;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Erw11n;;;[];;;;text;t2_126a3u;False;False;[];;Sometimes I think the internet is both a blessing and a curse;False;False;;;;1610470754;;False;{};gj0l6lo;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0l6lo/;1610528412;2;True;False;anime;t5_2qh22;;0;[]; -[];;;asoloras;;;[];;;;text;t2_3ofv6g21;False;False;[];;there’s also an episode where koro shows his collection of manga being one piece while wearing a hat;False;False;;;;1610470783;;False;{};gj0l8wc;False;t3_kvvj7n;False;True;t3_kvvj7n;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj0l8wc/;1610528452;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Leeemon;;;[];;;;text;t2_7en9g;False;False;[];;Lol, it really isn't just twitter. r/shingekinokyojin and r/titanfolk (super spoilery manga sub!) were the same, especially the second one.;False;False;;;;1610470796;;False;{};gj0l9vj;False;t3_kvsy6n;False;True;t1_gj05d7n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0l9vj/;1610528471;43;True;False;anime;t5_2qh22;;0;[]; -[];;;Jojobaginzu;;;[];;;;text;t2_33tdggun;False;False;[];;And this is why Twitter deserves to be deleted.;False;False;;;;1610470823;;False;{};gj0lc4b;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0lc4b/;1610528508;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;Usually dumb action shows that have style;False;False;;;;1610470842;;False;{};gj0ldlg;True;t3_kvv3dc;False;True;t1_gj0k38y;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj0ldlg/;1610528532;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;A whisker away, flavours of youth, colourful and garden of words;False;False;;;;1610470853;;False;{};gj0lefg;False;t3_kvtp2s;False;True;t3_kvtp2s;/r/anime/comments/kvtp2s/so_today_i_have_watched_a_silent_voice_your_name/gj0lefg/;1610528545;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gdixon10;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_5v7rt2af;False;False;[];;My persona favorite is the scene from Jujutsu Kaisen, when Gojou is training Itadori how to do a special move, Itadori says something along the lines of “I just wanted to do a kamehameha or a rasengan (along with other popular shonen attacks)”;False;False;;;;1610470863;;False;{};gj0lf7b;False;t3_kvvj7n;False;False;t3_kvvj7n;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj0lf7b/;1610528559;5;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;"I stand by my word that the best thing that could have happened to the fandom was S2 taking 4 years after the first one. - -The AoT fandom in S1 was completely insane.";False;False;;;;1610470870;;False;{};gj0lfr8;False;t3_kvsy6n;False;True;t1_gj08vzs;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0lfr8/;1610528568;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Miidas-92;;MAL;[];;https://myanimelist.net/profile/Miidas;dark;text;t2_ja1jx;False;False;[];;"Redline is probably the ""coolest"" anime I've seen.";False;False;;;;1610470873;;False;{};gj0lg1d;False;t3_kvv3dc;False;False;t3_kvv3dc;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj0lg1d/;1610528572;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Emey4002;;;[];;;;text;t2_79hyt3wb;False;False;[];;One outs was very good, can confirm;False;False;;;;1610470882;;False;{};gj0lgpv;False;t3_kvuuvc;False;False;t1_gj0idoz;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0lgpv/;1610528583;1;True;False;anime;t5_2qh22;;0;[]; -[];;;grizzchan;;;[];;;dark;text;t2_nn6d9;False;True;[];;Bruh, a Japanese Twitter would be even more toxic than Twitter already is.;False;False;;;;1610470889;;False;{};gj0lhae;False;t3_kvsy6n;False;True;t1_gj0ik4b;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0lhae/;1610528593;33;True;False;anime;t5_2qh22;;0;[]; -[];;;Handekinho;;;[];;;;text;t2_1v9h4khb;False;False;[];;The op 5 of Monogatari seconds season with Kaiki and Senjogahara, probably the best op of the entire show;False;False;;;;1610470890;;False;{};gj0lhcd;False;t3_kvuhvx;False;True;t3_kvuhvx;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0lhcd/;1610528593;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610470910;;False;{};gj0lixm;False;t3_kvsy6n;False;True;t1_gj0l3bk;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0lixm/;1610528619;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;staytrueangel232;;;[];;;;text;t2_5knwsxg9;False;False;[];;Yeah well the anime is full of references from him to wearing the Naruto headband to portraying mr karasuma as titan from AOT;False;False;;;;1610470928;;False;{};gj0lkf8;True;t3_kvvj7n;False;True;t1_gj0l8wc;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj0lkf8/;1610528644;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;"I'm missing the part in the article where the author was ""harassed"". - -Let's not mix up valid criticism with harassment.";False;False;;;;1610470948;;False;{};gj0lm0m;False;t3_kvsy6n;False;True;t1_gj0ktd9;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0lm0m/;1610528670;4;True;False;anime;t5_2qh22;;0;[]; -[];;;DrJWilson;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/drjwilson/animelist;light;text;t2_6zykq;False;False;[];;We're working on a couple of things to address these lower effort threads.;False;False;;;;1610470952;moderator;False;{};gj0lmcm;False;t3_kvtz4q;False;True;t1_gj0kzwt;/r/anime/comments/kvtz4q/recommendation_threads_please_help_us_help_you/gj0lmcm/;1610528675;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;Yes it’s an awesome film and easily the coolest anime film out there;False;False;;;;1610470969;;False;{};gj0lnm8;True;t3_kvv3dc;False;False;t1_gj0lg1d;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj0lnm8/;1610528695;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"[**Good Luck Girl! / Binbougami ga! has hundreds of them.**](https://www.youtube.com/watch?v=JQ5ew_29MYc) - -[](#evilgrin)";False;False;;;;1610470970;;False;{};gj0lnqu;False;t3_kvvj7n;False;True;t3_kvvj7n;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj0lnqu/;1610528697;2;True;False;anime;t5_2qh22;;0;[]; -[];;;goodgrief-;;;[];;;;text;t2_4ugp50hb;False;False;[];;Saint Young Men referenced Death Note. Buddha says how he would be concerned if he heard a child want to be what he is when they grow up, and above the the bubble is Light. One of my favourite references, which was done in a comedic way!;False;False;;;;1610470995;;False;{};gj0lpnq;False;t3_kvvj7n;False;True;t3_kvvj7n;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj0lpnq/;1610528729;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;"Bihada Ichizoku - Many references to Attack No. 1, Glass no Kamen, Haikara-san ga Tooru, Ace wo nerae, Candy Candy and other shoujo classics throughout the series. - -Galaxy Angel - Reference that stood out the most to me was the Attack No. 1 reference in s3 other good one was Mahoutsukai Sally reference. - -Bessatsu Olympia Kyklos - Another Attack No. 1 reference in one of the later eps forgot which ep. - -Chokkyuu Hyoudai Robot Anime Straight Title- Multiple Sazae-san references";False;False;;;;1610471011;;1610471738.0;{};gj0lqm9;False;t3_kvvj7n;False;True;t3_kvvj7n;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj0lqm9/;1610528744;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610471017;moderator;False;{};gj0lr7d;False;t3_kvvncu;False;True;t3_kvvncu;/r/anime/comments/kvvncu/hopefully_you_guys_can_help_me/gj0lr7d/;1610528753;1;False;False;anime;t5_2qh22;;0;[]; -[];;;vetro;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/vetro/;light;text;t2_5ky3g;False;False;[];;This is such a bizarre comment. Jp twitter can be just as toxic.;False;False;;;;1610471019;;False;{};gj0lrel;False;t3_kvsy6n;False;True;t1_gj0ik4b;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0lrel/;1610528756;25;True;False;anime;t5_2qh22;;0;[]; -[];;;39MUsTanGs;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/CGO39/;light;text;t2_3dlzo15z;False;False;[];;Japanese twitter is just as bad, if not worse than american twitter.;False;False;;;;1610471060;;False;{};gj0luns;False;t3_kvsy6n;False;True;t1_gj0ik4b;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0luns/;1610528810;16;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;Japanese fans are definitely toxic however the article you linked are all foreign fans.....;False;False;;;;1610471121;;False;{};gj0lzel;False;t3_kvsy6n;False;True;t1_gj0ktd9;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0lzel/;1610528884;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Handekinho;;;[];;;;text;t2_1v9h4khb;False;False;[];;Uchouten Kazoku;False;False;;;;1610471139;;False;{};gj0m0rq;False;t3_kvuuvc;False;True;t3_kvuuvc;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0m0rq/;1610528905;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dastrykerblade;;;[];;;;text;t2_if3ui;False;False;[];;"Yea, you’re entitled to your opinion but I don’t think you really understood the point when saying what you said in your second point, which I’m not gonna repeat bc spoilers. - -Also, you might want to spoiler tag literally your entire comment bc this isn’t a spoiler thread like wtf.";False;False;;;;1610471150;;False;{};gj0m1lo;False;t3_kvsy6n;False;True;t1_gj0lixm;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0m1lo/;1610528918;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bigtuck54;;;[];;;;text;t2_85luj;False;False;[];;"Wano’s been really good for act 2, and it looks like it will continue through the next section. The last episode was amazing. - -And as someone who was anime only I binged all of one piece through WCI (caught up to the anime in the reverie, only recently caught up to the manga) and it was never a problem. I just skipped flashbacks during dressrosa when they dragged too much but WCI and beyond have been awesome for me.";False;False;;;;1610471170;;False;{};gj0m35l;False;t3_kvtohs;False;False;t1_gj0hqgo;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0m35l/;1610528941;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Mirabem;;;[];;;;text;t2_7cp40oli;False;False;[];;"Redline, although it's a movie. - -Recently, I found Yuukoku no Moriarty pretty cool. The characters were the definition of charisma and the story had a mysteriously cool vibe.";False;False;;;;1610471193;;False;{};gj0m4ye;False;t3_kvv3dc;False;True;t3_kvv3dc;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj0m4ye/;1610528968;3;True;False;anime;t5_2qh22;;0;[]; -[];;;staytrueangel232;;;[];;;;text;t2_5knwsxg9;False;False;[];; Bruh😭;False;False;;;;1610471261;;False;{};gj0macp;True;t3_kvvj7n;False;True;t1_gj0lnqu;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj0macp/;1610529053;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bando-1;;;[];;;;text;t2_5wywgdjc;False;False;[];;im blaming all the money hungry people up top who want aot straight away to be adapted instead of waiting for wit studio.;False;False;;;;1610471272;;False;{};gj0mb7g;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0mb7g/;1610529067;-2;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 150, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Thank you stranger. Shows the award.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'icon_width': 2048, 'id': 'award_f44611f1-b89e-46dc-97fe-892280b13b82', 'is_enabled': True, 'is_new': False, 'name': 'Helpful', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;Handekinho;;;[];;;;text;t2_1v9h4khb;False;False;[];;School days;False;False;;;;1610471276;;False;{};gj0mbi8;False;t3_kvvncu;False;True;t3_kvvncu;/r/anime/comments/kvvncu/hopefully_you_guys_can_help_me/gj0mbi8/;1610529071;5;True;False;anime;t5_2qh22;;1;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;As someone who despises Domekano post 215. Attacking an author or creator isn't anything to be proud of. Is it expected? Of course. Doesn't mean it should be condoned;False;False;;;;1610471330;;False;{};gj0mft7;False;t3_kvsy6n;False;True;t1_gj0js76;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0mft7/;1610529138;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;He also said Bankai(Bleach), reigun (Yu Yu Hakusho) and Dodonpa (Also Dragon ball);False;False;;;;1610471360;;False;{};gj0mi6k;False;t3_kvvj7n;False;True;t1_gj0lf7b;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj0mi6k/;1610529173;2;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;Gintama.;False;False;;;;1610471393;;False;{};gj0mkv9;False;t3_kvvj7n;False;False;t3_kvvj7n;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj0mkv9/;1610529213;6;True;False;anime;t5_2qh22;;0;[]; -[];;;DKDCbye;;;[];;;;text;t2_1qwujco8;False;False;[];;OH MY GOSH YESSS. THANK YOU!;False;False;;;;1610471405;;False;{};gj0mls5;True;t3_kvvncu;False;True;t1_gj0mbi8;/r/anime/comments/kvvncu/hopefully_you_guys_can_help_me/gj0mls5/;1610529227;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Handekinho;;;[];;;;text;t2_1v9h4khb;False;False;[];;Yesterday wo utatte;False;False;;;;1610471445;;False;{};gj0moyl;False;t3_kvvb2i;False;True;t3_kvvb2i;/r/anime/comments/kvvb2i/looking_for_sliceofliferomance_anime_with_adult/gj0moyl/;1610529274;2;True;False;anime;t5_2qh22;;0;[]; -[];;;THE_REAL_RAKIM;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/midoriya04;light;text;t2_2t8d53up;False;False;[];;Link to the post: https://www.reddit.com/r/titanfolk/comments/kvp8md/people_are_going_out_of_their_way_to_harass_mappa/;False;False;;;;1610471448;;False;{};gj0mp7e;False;t3_kvsy6n;False;True;t1_gj0klzf;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0mp7e/;1610529278;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610471451;moderator;False;{};gj0mpe3;False;t3_kvsy6n;False;True;t1_gj0lixm;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0mpe3/;1610529282;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610471480;moderator;False;{};gj0mrp6;False;t3_kvsy6n;False;True;t1_gj0h8iv;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0mrp6/;1610529318;1;True;False;anime;t5_2qh22;;0;[]; -[];;;infinite_lyy;;;[];;;;text;t2_9lftz77s;False;False;[];;"Gintama is just reference after reference! Lol - -Some of my faves are the Bleach ones (Gin's sword Toyako looks like Zangetsu and asks him if he wants to be stronger, and he called Ichigo's silhouette ""Gichigo from Peroxide"") among others - -There was a ninja ep and they replaced the logo with Gintama Shippuden - -A million Dragon Ball references! Lol - -The Densha Otoko episode was funny - -There was a mini Jojo arc too! - -Hedoro -> Hevangelion was so good - -And my personal favorite, the Nabe Shogun episode more intense than any Death Note match (with the Itachi reference too)";False;False;;;;1610471515;;False;{};gj0mueb;False;t3_kvvj7n;False;False;t3_kvvj7n;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj0mueb/;1610529359;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610471522;;False;{};gj0muz9;False;t3_kvsy6n;False;True;t1_gj0m1lo;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0muz9/;1610529367;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;[Sakamoto desu ga](https://giphy.com/gifs/HIDIVE-sakamoto-hidive-havent-you-heard-im-67ThAtqqtRNij7w6Xr);False;False;;;;1610471561;;False;{};gj0my50;False;t3_kvv3dc;False;True;t3_kvv3dc;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj0my50/;1610529416;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Feel really bad for you, i am 30 and still love anime, my favorite entertainment besides games, unfortunately I only play 3 games per year since I only like big Jrpgs, so its always nice having dozens new anime per season, keeps the whole year exciting;False;False;;;;1610471581;;False;{};gj0mzof;False;t3_kvvsse;False;False;t3_kvvsse;/r/anime/comments/kvvsse/has_anyone_else_outgrown_anime_and_gotten_sad/gj0mzof/;1610529439;7;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;I'd say Mob Psycho 100. It looks so cool and the art style really grew on me at the end.;False;False;;;;1610471593;;False;{};gj0n0m6;False;t3_kvv3dc;False;False;t3_kvv3dc;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj0n0m6/;1610529454;10;True;False;anime;t5_2qh22;;0;[]; -[];;;creedroyce;;;[];;;;text;t2_24wmrw21;False;True;[];;Those aren't fans;False;False;;;;1610471615;;False;{};gj0n2ae;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0n2ae/;1610529480;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-V0lD;;;[];;;;text;t2_xapna;False;True;[];;"It's not the whole fandom - -There is a certain subgroup that does this that the rest of us is ashamed of: - -titanfolk";False;False;;;;1610471656;;False;{};gj0n5fw;False;t3_kvsy6n;False;True;t1_gj05trd;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0n5fw/;1610529526;5;True;False;anime;t5_2qh22;;0;[]; -[];;;unaviable;;;[];;;;text;t2_1o4qd3;False;True;[];;Reddit has their issues too..... The Manga subreddit from aot was especially salty.;False;False;;;;1610471660;;False;{};gj0n5qg;False;t3_kvsy6n;False;True;t1_gj05d7n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0n5qg/;1610529530;6;True;False;anime;t5_2qh22;;0;[]; -[];;;MartinaS90;;;[];;;;text;t2_13onma;False;False;[];;"> The fact that you were given a fundamental right to express your opinion means that it matter. - -Not, they're still different concepts. What matters is the fact that you have the right to express your opinion, but the content of it doesn't matter.";False;False;;;;1610471660;;False;{};gj0n5qs;False;t3_kvsy6n;False;True;t1_gj0gf39;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0n5qs/;1610529531;0;True;False;anime;t5_2qh22;;0;[]; -[];;;WeeabooVoid;;;[];;;;text;t2_6hwibewj;False;False;[];;I don't even know what music choice they were even talking about.;False;False;;;;1610471668;;False;{};gj0n6ek;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0n6ek/;1610529541;2;True;False;anime;t5_2qh22;;0;[]; -[];;;H-Ryougi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DizzyAvocado/animelist;light;text;t2_pr24s;False;False;[];;"Do you believe you can outgrow movies? How about music? Video games? Books? - -If you said no to any of those things, anime is no different. Tastes change with time, you might find you don't enjoy some genres you used to as much. But that doesn't mean there isn't stuff out there that can still catch your eye. Anime is a big medium and there's all kinds of shows out there, plenty of them aimed at a more mature audience.";False;False;;;;1610471699;;False;{};gj0n8tj;False;t3_kvvsse;False;False;t3_kvvsse;/r/anime/comments/kvvsse/has_anyone_else_outgrown_anime_and_gotten_sad/gj0n8tj/;1610529578;19;True;False;anime;t5_2qh22;;0;[]; -[];;;jetah;;;[];;;;text;t2_7x3ws;False;False;[];;"At 41, I still love it. Some shows are boring so I don't watch them. But the ones I'm interested in I stick with. - -Sounds like the genre may have changed for you b";False;False;;;;1610471733;;False;{};gj0nbmv;False;t3_kvvsse;False;False;t3_kvvsse;/r/anime/comments/kvvsse/has_anyone_else_outgrown_anime_and_gotten_sad/gj0nbmv/;1610529620;7;True;False;anime;t5_2qh22;;0;[]; -[];;;W33B520;;;[];;;;text;t2_5yrtpqbi;False;False;[];;This might be a new low;False;False;;;;1610471735;;False;{};gj0nbs5;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0nbs5/;1610529622;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi BaconBlock, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610471737;moderator;False;{};gj0nbze;False;t3_kvvwgu;False;False;t3_kvvwgu;/r/anime/comments/kvvwgu/please_recommend_me_an_anime_similar_to_death_note/gj0nbze/;1610529625;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;"yes, it seems like I am misremembering the situation or nobody tried archive those comments - -Well, I deleted my comment to not spread misinformation";False;False;;;;1610471753;;False;{};gj0nd7q;False;t3_kvsy6n;False;True;t1_gj0lzel;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0nd7q/;1610529643;3;True;False;anime;t5_2qh22;;0;[]; -[];;;limbo_2004;;;[];;;;text;t2_3c5fh2zj;False;False;[];;Hotarubi no mori e;False;False;;;;1610471761;;False;{};gj0ndwt;False;t3_kvtp2s;False;False;t3_kvtp2s;/r/anime/comments/kvtp2s/so_today_i_have_watched_a_silent_voice_your_name/gj0ndwt/;1610529655;6;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;I do, that's why I'm on reddit;False;False;;;;1610471764;;False;{};gj0ne4t;False;t3_kvsy6n;False;True;t1_gj0keug;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0ne4t/;1610529658;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Talini;;;[];;;;text;t2_xyg3oev;False;False;[];;In Kiss him, not me one of the characters has an attack on Titan cosplay;False;False;;;;1610471766;;False;{};gj0neae;False;t3_kvvj7n;False;True;t3_kvvj7n;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj0neae/;1610529660;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;That was a fun series;False;False;;;;1610471773;;False;{};gj0neu4;True;t3_kvv3dc;False;False;t1_gj0n0m6;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj0neu4/;1610529668;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi cringylilidiot, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610471774;moderator;False;{};gj0neyn;False;t3_kvvwwu;False;True;t3_kvvwwu;/r/anime/comments/kvvwwu/anime_just_like_your_lie_in_april/gj0neyn/;1610529669;1;False;False;anime;t5_2qh22;;0;[]; -[];;;unaviable;;;[];;;;text;t2_1o4qd3;False;True;[];;With gigguk in the mention, hopefully he drops his aot season 4 video soon.;False;False;;;;1610471784;;False;{};gj0nfri;False;t3_kvsy6n;False;True;t1_gj07qy1;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0nfri/;1610529682;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Failsnail64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/failsnail;light;text;t2_ixw1z;False;False;[];;"Weathering with You is quite similar to Your Name if you want that. - -5 cm per second is also of the same maker of Weathering with You and Your Name, but it's a bit slower, more sad and more down to earth. My favourite of the bunch. - -Grave of the Fireflies is a good emotional movie about war. - -Wolf Children is also a well regarded movie about a family growing up.";False;False;;;;1610471800;;False;{};gj0nh0v;False;t3_kvtp2s;False;False;t3_kvtp2s;/r/anime/comments/kvtp2s/so_today_i_have_watched_a_silent_voice_your_name/gj0nh0v/;1610529700;4;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;[Btooom!](https://youtu.be/CBBLcybQ-DQ) easily my favourite out of all the shows I've seen. But I'm pretty sure I'm the only one I have ever seen suggest it. It doesn't even make the bracket for the best OP contest. Consistently been my most listened to song for 6 years. I never get tired of it.;False;False;;;;1610471802;;False;{};gj0nh7i;False;t3_kvuhvx;False;True;t3_kvuhvx;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0nh7i/;1610529704;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nightlink011;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/nightlink011;light;text;t2_gshqkgk;False;False;[];;"It happens, if you are not enjoying it don't force it you are just going to be watching something without wanting to do ii or having any fun. - -It sucks that you don't enjoy it anymore, but maybe in the future you might enjoy it again, do and watch stuff you like and maybe the fun of watching anime may return in the future.";False;False;;;;1610471852;;False;{};gj0nl6u;False;t3_kvvsse;False;True;t3_kvvsse;/r/anime/comments/kvvsse/has_anyone_else_outgrown_anime_and_gotten_sad/gj0nl6u/;1610529764;2;True;False;anime;t5_2qh22;;0;[]; -[];;;THE_REAL_RAKIM;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/midoriya04;light;text;t2_2t8d53up;False;False;[];;I am pretty sure that people didn't read your entire comment. They just saw the first half and downvoted lol.;False;False;;;;1610471889;;False;{};gj0no2t;False;t3_kvsy6n;False;True;t1_gj0gf39;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0no2t/;1610529806;4;True;False;anime;t5_2qh22;;0;[]; -[];;;drew_galbraith;;;[];;;;text;t2_j7f6w9w;False;False;[];;the opening of Gintama, where gin eats a fruit while sailing, shinpachi is a pokemon, ect;False;False;;;;1610471890;;False;{};gj0no6h;False;t3_kvvj7n;False;True;t3_kvvj7n;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj0no6h/;1610529808;2;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;In the disastrous life of saiki k, there's an entire 5 minute crossover with Gintama, and a Dr Stone reference.;False;False;;;;1610471899;;False;{};gj0novw;False;t3_kvvj7n;False;False;t3_kvvj7n;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj0novw/;1610529819;4;True;False;anime;t5_2qh22;;0;[]; -[];;;KamKKF;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/kamkkf/;light;text;t2_13xmiv;False;False;[];;I'm interested, how was the konosuba movie butchered. I haven't read the source but I liked it a lot.;False;False;;;;1610471929;;False;{};gj0nrcm;False;t3_kvsy6n;False;True;t1_gj0l13j;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0nrcm/;1610529856;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HobnobsTheRed;;;[];;;;text;t2_1ftgjit5;False;False;[];;"At last! More Nekogame. - -Laughed at the infocards. Mai ""Hates exercise, Loves Yatogame"", and Jin ""has no tact."" - -""Gifu has a far larger population, and the Shinkansen stops there."" Oof, almost as harsh as the Nagoya Skip. - -""We oughta shed him, too."" Followed by Jin being stuffed into the trash bag... XD - -ED is fun as well. Much more like the ED to the first season, so I can't wait to hear the full version.";False;False;;;;1610471933;;False;{};gj0nrn9;False;t3_kvvbaw;False;False;t3_kvvbaw;/r/anime/comments/kvvbaw/yatogamechan_kansatsu_nikki_sansatsume_episode_1/gj0nrn9/;1610529861;3;True;False;anime;t5_2qh22;;0;[]; -[];;;gsenjou;;;[];;;;text;t2_5ns6dyc;False;False;[];;Anime is a medium, saying you've outgrown it is like saying you've outgrown TV or Movies in general. It's probably just all in your head. Start judging each anime by its quality, and not the fact that its anime.;False;False;;;;1610471934;;False;{};gj0nrpu;False;t3_kvvsse;False;False;t3_kvvsse;/r/anime/comments/kvvsse/has_anyone_else_outgrown_anime_and_gotten_sad/gj0nrpu/;1610529862;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610471934;;False;{};gj0nrpv;False;t3_kvvwwu;False;True;t3_kvvwwu;/r/anime/comments/kvvwwu/anime_just_like_your_lie_in_april/gj0nrpv/;1610529862;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okbuddybutbruh;;;[];;;;text;t2_9ow7haip;False;False;[];;Code Geass maybe?;False;False;;;;1610471946;;False;{};gj0nsmt;False;t3_kvvwgu;False;True;t3_kvvwgu;/r/anime/comments/kvvwgu/please_recommend_me_an_anime_similar_to_death_note/gj0nsmt/;1610529876;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Beekyyy;;;[];;;;text;t2_6mic7cxa;False;False;[];;"Overall in life things become less interesting overtime or whenever you felt like you “conquered it” you lose interest. To fix this for me with anything in life I just step away from said thing for around 2-5 weeks and then I reintroduce it in a new form / light. It truly feels like most of you hobbies become WAY more boring in adult life. - -A good exam of this I have is I got burnt out on anime about two years back. I stepped away until the new anime season (I think it was winter of previous year, not 2020) was a couple weeks in and I also started watching it with headphones and on my phone instead of on my Tv, the difference in sound and how close the screen was to my face was enough to refresh it for me. - -I live in a legal state (I’m also 22) so I typically smoke(weed) whenever I watch anime now. Actions scenes are way better, episodes flow better, overall colors jump out more. - -So my only advice is to introduce it in a new light / form after stepping away. That form could be viewing, listening, perceiving, how many you watch a day, rewatching etc etc - -Stay safe ! Growing pains happen to everyone !";False;False;;;;1610471977;;False;{};gj0nv2t;False;t3_kvvsse;False;True;t3_kvvsse;/r/anime/comments/kvvsse/has_anyone_else_outgrown_anime_and_gotten_sad/gj0nv2t/;1610529913;3;True;False;anime;t5_2qh22;;0;[]; -[];;;voornaam1;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://www.anime-planet.com/users/Max4444;dark;text;t2_3yiwp1ue;False;False;[];;Watamote has a lot of references to thing but I don't want to rewatch it to point them out.;False;False;;;;1610471984;;False;{};gj0nvm2;False;t3_kvvj7n;False;True;t3_kvvj7n;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj0nvm2/;1610529921;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"Monster - -Inuyashiki - -Erased - -Terror in Resonance";False;False;;;;1610471988;;False;{};gj0nvwf;False;t3_kvvwgu;False;True;t3_kvvwgu;/r/anime/comments/kvvwgu/please_recommend_me_an_anime_similar_to_death_note/gj0nvwf/;1610529926;0;True;False;anime;t5_2qh22;;0;[]; -[];;;dr135ake;;;[];;;;text;t2_567vl5pu;False;False;[];;I say you might like March Comes in Like a Lion. Same kinda vibe imo;False;False;;;;1610472001;;False;{};gj0nwxx;False;t3_kvvwwu;False;True;t3_kvvwwu;/r/anime/comments/kvvwwu/anime_just_like_your_lie_in_april/gj0nwxx/;1610529941;3;True;False;anime;t5_2qh22;;0;[]; -[];;;unaviable;;;[];;;;text;t2_1o4qd3;False;True;[];;"Funny thing is r/titanfolk complained how mappa overused the trailer Ost..... Smh this fandom. Its for the best to stay out of specific fandom community and stay in all around subs like r/anime or r/Manga - -Edit : the subreddit is spoiler heavily. Be aware if you want to check the subreddit out. Sorry for the late warning";False;False;;;;1610472015;;1610474825.0;{};gj0ny17;False;t3_kvsy6n;False;True;t1_gj0cbqz;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0ny17/;1610529958;12;True;False;anime;t5_2qh22;;0;[]; -[];;;ARCHITECTbob;;;[];;;;text;t2_43zyqjmj;False;False;[];;Initial D;False;False;;;;1610472075;;False;{};gj0o2v8;False;t3_kvv3dc;False;True;t3_kvv3dc;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj0o2v8/;1610530031;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hydraxiv;;;[];;;;text;t2_5wvchq00;False;False;[];;Social media in general is toxic. Even this subreddit isnt immune to it;False;False;;;;1610472082;;False;{};gj0o3ec;False;t3_kvsy6n;False;True;t1_gj05d7n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0o3ec/;1610530039;11;True;False;anime;t5_2qh22;;0;[]; -[];;;gangrainette;;MAL;[];;https://myanimelist.net/profile/bouletos;dark;text;t2_vlti1;False;False;[];;"[A Place Further Than The Universe](https://myanimelist.net/anime/35839/Sora_yori_mo_Tooi_Basho). - -Harder to be colder than Antarctica. - -Otherwise Symphogear (but they also go to Antartica)";False;False;;;;1610472086;;1610484842.0;{};gj0o3pt;False;t3_kvv3dc;False;True;t3_kvv3dc;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj0o3pt/;1610530045;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Abyssbringer;;MAL;[];;https://myanimelist.net/profile/Abyssbringer3;dark;text;t2_cphmu;False;False;[];;Try watching anime that are anime original and make good use of the medium. Try watching a show or movie that does something unique that manga/webtoons wouldn't be able to do. Howl's moving castle was a good choice in that department. Most Ghibli films are a good choice and anime films in general can be great for this. You could also try some short OVA series that might catch your attention.;False;False;;;;1610472100;;False;{};gj0o4xo;False;t3_kvvsse;False;True;t3_kvvsse;/r/anime/comments/kvvsse/has_anyone_else_outgrown_anime_and_gotten_sad/gj0o4xo/;1610530062;3;True;False;anime;t5_2qh22;;0;[]; -[];;;okbuddybutbruh;;;[];;;;text;t2_9ow7haip;False;False;[];;I don't really watch isekai alot except few. You haven't watched the konosuba movie? It's isekai and really good imo;False;False;;;;1610472101;;False;{};gj0o4zw;False;t3_kvvg09;False;False;t3_kvvg09;/r/anime/comments/kvvg09/looking_for_a_isekei_anime_that_i_can_really_enjoy/gj0o4zw/;1610530063;1;True;False;anime;t5_2qh22;;0;[]; -[];;;swordsmithing;;;[];;;;text;t2_2o3ft2y1;False;False;[];;"One of the characters in Bamboo Blade is obsessed with Macross if I remember correctly. - -The other one that I can think of off the top of my head is the Melancholy of Haruhi Suzumiya baseball episode where they play an arcade, 8-bit version of the OP for Touch, a really classic baseball anime.";False;False;;;;1610472132;;False;{};gj0o7eu;False;t3_kvvj7n;False;True;t3_kvvj7n;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj0o7eu/;1610530098;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610472140;;False;{};gj0o844;False;t3_kvtp2s;False;True;t3_kvtp2s;/r/anime/comments/kvtp2s/so_today_i_have_watched_a_silent_voice_your_name/gj0o844/;1610530108;1;True;False;anime;t5_2qh22;;0;[]; -[];;;voornaam1;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://www.anime-planet.com/users/Max4444;dark;text;t2_3yiwp1ue;False;False;[];;I really liked Science Fell in Love, So I Tried to Prove it. but it takes olace in a college so that's kind of a school setting.;False;False;;;;1610472174;;False;{};gj0oarp;False;t3_kvvb2i;False;True;t3_kvvb2i;/r/anime/comments/kvvb2i/looking_for_sliceofliferomance_anime_with_adult/gj0oarp/;1610530148;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"In Onanie Master Kurosawa when the boy reveals it's him in the bathroom it is a direct reference to Light's reveal in Death Note. - -In Inuyashiki we see posters of Gantz. The girl the villain is talking to mentions Attack on Titan and One Piece. The villain is also seen crying because ""One Piece was so good this week"". - -In Run with the Wind, Prince lists a bunch of famous characters from sports anime such as Ippo and Hinata. - -Binbougami Ga! Has a scene which spoils one of Death Note's biggest episodes.";False;False;;;;1610472212;;False;{};gj0odxb;False;t3_kvvj7n;False;True;t3_kvvj7n;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj0odxb/;1610530196;3;True;False;anime;t5_2qh22;;0;[]; -[];;;saltysamon;;;[];;;;text;t2_yrh9o;False;False;[];;">but when you're anime only the high tension is much better imo. - -No not really. I'm an anime only and thought it was weak compared to previous anime transformations (like Eren against Annie or Reiner and Bertolt's reveal).";False;False;;;;1610472220;;False;{};gj0oeiw;False;t3_kvsy6n;False;True;t1_gj0bex0;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0oeiw/;1610530205;-1;False;False;anime;t5_2qh22;;0;[]; -[];;;Fartikus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Zachk;light;text;t2_6z5ky;False;False;[];;Why is the director surprised? Of course twitter is going to have toxic people no matter what, and should be prepared for just that if you do.;False;False;;;;1610472270;;False;{};gj0oilh;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0oilh/;1610530267;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;hydraxiv;;;[];;;;text;t2_5wvchq00;False;False;[];;Shippers become super annoying once they really start pushing their fanfics. It always seems inevitable in any fandom;False;True;;comment score below threshold;;1610472294;;False;{};gj0okgv;False;t3_kvsy6n;False;True;t1_gj0cupj;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0okgv/;1610530296;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;cattapstaps;;;[];;;;text;t2_qabhps9;False;False;[];;Ok bubby;False;False;;;;1610472313;;False;{};gj0om1v;False;t3_kvsy6n;False;True;t1_gj0l0w8;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0om1v/;1610530320;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610472340;;False;{};gj0oo6k;False;t3_kvv3u3;False;True;t3_kvv3u3;/r/anime/comments/kvv3u3/where_can_i_watch_inu_x_boku/gj0oo6k/;1610530351;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi ARCHITECTbob, your post has been removed because it links to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610472341;moderator;False;{};gj0oo83;False;t3_kvv3u3;False;True;t1_gj0oo6k;/r/anime/comments/kvv3u3/where_can_i_watch_inu_x_boku/gj0oo83/;1610530352;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Fartikus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Zachk;light;text;t2_6z5ky;False;False;[];;This has been a thing way earlier than when some youtuber mentioned it, that's for sure.;False;False;;;;1610472341;;False;{};gj0oo8r;False;t3_kvsy6n;False;True;t1_gj07qy1;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0oo8r/;1610530352;4;True;False;anime;t5_2qh22;;0;[]; -[];;;swordsmithing;;;[];;;;text;t2_2o3ft2y1;False;False;[];;I feel even more that way about the second CCS opening, but the third is good too.;False;False;;;;1610472345;;False;{};gj0ooju;False;t3_kvuhvx;False;True;t1_gj0f1s1;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0ooju/;1610530357;2;True;False;anime;t5_2qh22;;0;[]; -[];;;skeeedzzz;;;[];;;;text;t2_13iktbvc;False;False;[];;Your name is one of the most prolific and praised animated movie of all time lmao;False;False;;;;1610472357;;False;{};gj0opio;False;t3_kvuuvc;False;False;t1_gj0jlgj;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0opio/;1610530372;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Yorozuya_Yaro;;;[];;;;text;t2_5d93lbxr;False;False;[];;Try different genre. Tastes change. Maybe you'll acquire tastes you lost. Maybe you will not but find something else. Try different anime. Try anime from different generations. Try long ones or short ones. It's not a necessity of life but whoever has regretted watching anime? (whoever but Tokyo ghoul manga readers);False;False;;;;1610472373;;False;{};gj0oqsn;False;t3_kvvsse;False;True;t3_kvvsse;/r/anime/comments/kvvsse/has_anyone_else_outgrown_anime_and_gotten_sad/gj0oqsn/;1610530391;3;True;False;anime;t5_2qh22;;0;[]; -[];;;swordsmithing;;;[];;;;text;t2_2o3ft2y1;False;False;[];;Everything to do with Re:Creators is underrated sadly.;False;False;;;;1610472380;;False;{};gj0orbh;False;t3_kvuhvx;False;True;t1_gj0hnuq;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0orbh/;1610530398;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fartikus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Zachk;light;text;t2_6z5ky;False;False;[];;"Made in Abyss - -Madoka Magica - -Gurren Lagann - -Akira";False;False;;;;1610472434;;False;{};gj0ovme;False;t3_kvtp2s;False;True;t3_kvtp2s;/r/anime/comments/kvtp2s/so_today_i_have_watched_a_silent_voice_your_name/gj0ovme/;1610530463;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;saltysamon;;;[];;;;text;t2_yrh9o;False;False;[];;You do know people have suggested more ost choices than just youseebiggirl right? 2volt was just a weak choice.;False;False;;;;1610472454;;False;{};gj0ox9k;False;t3_kvsy6n;False;True;t1_gj0f74k;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0ox9k/;1610530490;1;False;False;anime;t5_2qh22;;0;[]; -[];;;swordsmithing;;;[];;;;text;t2_2o3ft2y1;False;False;[];;I was under the impression everyone loved Gurren Lagann's opening, including people like me who disliked the show.;False;False;;;;1610472455;;False;{};gj0oxbj;False;t3_kvuhvx;False;True;t3_kvuhvx;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0oxbj/;1610530491;2;True;False;anime;t5_2qh22;;0;[]; -[];;;made-with-jeans;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;http://www.anime-planet.com/forum/members/;light;text;t2_6y5uft6g;False;False;[];;Code geass, phi brain, Kaiji, one outs, Ajin;False;False;;;;1610472471;;False;{};gj0oyma;False;t3_kvvwgu;False;False;t3_kvvwgu;/r/anime/comments/kvvwgu/please_recommend_me_an_anime_similar_to_death_note/gj0oyma/;1610530510;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"Romance: - -1. Wotakoi -2. The Recovery of an MMO Junkie -3. Natsuyuki Rendezvous -4. Nodame Cantabile -5. Nana -6. Sing ""Yesterday"" for Me -7. Wave, Listen To Me! -8. Spice and Wolf -9. Yuri on Ice -10. ReLIFE -11. Science Fell in Love, So I tried to Prove it -12. Howl's Moving Castle - -Slice of Life: - -1. Shouwa Genroku Rakugo -2. Mushishi -3. Space Brothers -4. The Great Passage -5. Wolf Children -6. Poco's Udon World -7. Welcome to the NHK -8. The Case Files of Jeweler Richard -9. My Roomate is a Cat";False;False;;;;1610472472;;False;{};gj0oyps;False;t3_kvvb2i;False;False;t3_kvvb2i;/r/anime/comments/kvvb2i/looking_for_sliceofliferomance_anime_with_adult/gj0oyps/;1610530511;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Roketsu86;;;[];;;;text;t2_hwze9;False;False;[];;Nah;False;False;;;;1610472475;;False;{};gj0oyxf;False;t3_kvw2ui;False;True;t3_kvw2ui;/r/anime/comments/kvw2ui/go_subscribe_to_my_youtube_channel_if_you_like/gj0oyxf/;1610530516;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mirabem;;;[];;;;text;t2_7cp40oli;False;False;[];;Interesting. However, if it doesn't matter, you're indirectly discrediting your own words. I think the content matters, that's why people share opinions, we don't share opinions simply because we had the right to express them.;False;False;;;;1610472517;;False;{};gj0p2cv;False;t3_kvsy6n;False;True;t1_gj0n5qs;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0p2cv/;1610530566;5;True;False;anime;t5_2qh22;;0;[]; -[];;;made-with-jeans;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;http://www.anime-planet.com/forum/members/;light;text;t2_6y5uft6g;False;False;[];;I’m gonna bet that anime can still be enjoyable for you, just try a different genre;False;False;;;;1610472577;;False;{};gj0p73h;False;t3_kvvsse;False;False;t3_kvvsse;/r/anime/comments/kvvsse/has_anyone_else_outgrown_anime_and_gotten_sad/gj0p73h/;1610530639;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaylboo;;skip7;[];;;dark;text;t2_9mx02x1m;False;False;[];;What would u say are your favourite animes?;False;False;;;;1610472596;;False;{};gj0p8n4;True;t3_kvvsse;False;True;t1_gj0mzof;/r/anime/comments/kvvsse/has_anyone_else_outgrown_anime_and_gotten_sad/gj0p8n4/;1610530663;1;True;False;anime;t5_2qh22;;0;[]; -[];;;h00n23;;;[];;;;text;t2_5wbxz569;False;False;[];;Naruto;False;False;;;;1610472640;;False;{};gj0pc57;False;t3_kvtohs;False;False;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0pc57/;1610530716;5;True;False;anime;t5_2qh22;;0;[]; -[];;;tehsigzorz;;;[];;;;text;t2_gwxqygy;False;False;[];;Its only good for shitposts now. I miss the glory days tho :(;False;False;;;;1610472706;;False;{};gj0phex;False;t3_kvsy6n;False;True;t1_gj0cz4y;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0phex/;1610530797;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkConan1412;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/DarkConan1412;light;text;t2_169qp4;False;False;[];;Detective Conan. I caught up 3x. I’ve watched 873 episodes or so. I think it’s coming up on 1000 episodes or it’s already past. I’m not caught up at the moment. I can confirm though, Detective Conan is still good. It’s a great episodic mystery show.;False;False;;;;1610472713;;False;{};gj0phyd;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0phyd/;1610530805;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DeTroyes1;;;[];;;;text;t2_awtnhf;False;False;[];;"Would help if it weren't on Amazon exclusively. - -BR release too.";False;False;;;;1610472749;;False;{};gj0pktm;False;t3_kvuhvx;False;True;t1_gj0orbh;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0pktm/;1610530849;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheWrittenLore;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Traynjos000;light;text;t2_ouc2a;False;False;[];;Classroom of the Elite. Alderamin on the Sky.;False;False;;;;1610472818;;False;{};gj0pqcb;False;t3_kvtund;False;True;t3_kvtund;/r/anime/comments/kvtund/anime_whith_equally_powerful_and_smart_male_and/gj0pqcb/;1610530931;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Somehow forgot there was gonna be a new season so this was a nice surprise! - -[I read that wrong at first...](https://i.imgur.com/MNHYuai.png)";False;False;;;;1610472869;;False;{};gj0pufb;False;t3_kvvbaw;False;False;t3_kvvbaw;/r/anime/comments/kvvbaw/yatogamechan_kansatsu_nikki_sansatsume_episode_1/gj0pufb/;1610530993;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Gurren lagann, Madoka Magica, Steins Gate, Yu Yu Hakusho, attack on titan, Fate Zero and your lie in april - -No particular order, just from the top of my head";False;False;;;;1610472869;;False;{};gj0puhi;False;t3_kvvsse;False;False;t1_gj0p8n4;/r/anime/comments/kvvsse/has_anyone_else_outgrown_anime_and_gotten_sad/gj0puhi/;1610530994;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610472871;;False;{};gj0puo8;False;t3_kvv3u3;False;True;t3_kvv3u3;/r/anime/comments/kvv3u3/where_can_i_watch_inu_x_boku/gj0puo8/;1610530997;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Raito21;;;[];;;;text;t2_gni8t;False;False;[];;"you clearly dont browse r/titanfolk lmao - -Edit: its a manga spoilers sub filled with 4chan users, so beware.";False;False;;;;1610472901;;False;{};gj0pwzk;False;t3_kvsy6n;False;True;t1_gj0cupj;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0pwzk/;1610531033;8;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610472922;moderator;False;{};gj0pypa;False;t3_kvwb2o;False;True;t3_kvwb2o;/r/anime/comments/kvwb2o/where_to_watch_the_promised_neverland_s2/gj0pypa/;1610531059;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610472945;;False;{};gj0q0i8;False;t3_kvwb2o;False;True;t3_kvwb2o;/r/anime/comments/kvwb2o/where_to_watch_the_promised_neverland_s2/gj0q0i8/;1610531087;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HobnobsTheRed;;;[];;;;text;t2_1ftgjit5;False;False;[];;"> I read that wrong at first... - -Same!";False;False;;;;1610472961;;False;{};gj0q1tz;False;t3_kvvbaw;False;False;t1_gj0pufb;/r/anime/comments/kvvbaw/yatogamechan_kansatsu_nikki_sansatsume_episode_1/gj0q1tz/;1610531107;10;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;"at the end when Eren transfrom. They wanted this to play. [https://www.youtube.com/watch?v=pa00z\_Bp2j4&t=166s](https://www.youtube.com/watch?v=pa00z_Bp2j4&t=166s)";False;False;;;;1610472983;;False;{};gj0q3m2;False;t3_kvsy6n;False;True;t1_gj0n6ek;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0q3m2/;1610531134;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kenga123456;;;[];;;;text;t2_49vw1707;False;False;[];;How does vpn work?;False;False;;;;1610473031;;False;{};gj0q7gh;True;t3_kvwb2o;False;True;t1_gj0q0i8;/r/anime/comments/kvwb2o/where_to_watch_the_promised_neverland_s2/gj0q7gh/;1610531193;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mobilegamegod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Aochhi;light;text;t2_pkuqf;False;False;[];;GaoGaiGar;False;False;;;;1610473048;;False;{};gj0q8ux;False;t3_kvv3dc;False;True;t3_kvv3dc;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj0q8ux/;1610531212;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Raptor12225;;;[];;;;text;t2_1174as;False;False;[];;Re:zero;False;False;;;;1610473087;;False;{};gj0qby8;False;t3_kvvg09;False;False;t3_kvvg09;/r/anime/comments/kvvg09/looking_for_a_isekei_anime_that_i_can_really_enjoy/gj0qby8/;1610531258;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;This is clearly a twitter post, what does titanfolk have to do with this?;False;False;;;;1610473106;;False;{};gj0qdif;False;t3_kvsy6n;False;True;t1_gj08vzs;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0qdif/;1610531280;4;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;">I love how Gigguk explicitly called manga fans not liking that the anime didn't use the exact music they thought would fit - - -im not allowed to dislike something in anime? and why this shitty anituber has a sating? anitubers are like the lowest shit in anime discussion";False;True;;comment score below threshold;;1610473120;;False;{};gj0qenc;False;t3_kvsy6n;False;True;t1_gj07qy1;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0qenc/;1610531296;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;">degenerate entitled scum. - -you are calling them horrible shit for disliking an animation studio?";False;False;;;;1610473169;;False;{};gj0qik9;False;t3_kvsy6n;False;True;t1_gj07wde;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0qik9/;1610531357;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;">Fans are mad because THEIR favourite OST was not used and they didn't get THEIR VERSION - -yes, it was shit";False;True;;comment score below threshold;;1610473187;;False;{};gj0qk1n;False;t3_kvsy6n;False;True;t1_gj05trd;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0qk1n/;1610531379;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;It was simple the music choice they complained about also fy the sound director for the final season is the same one from previous season.;False;False;;;;1610473190;;False;{};gj0qkce;False;t3_kvsy6n;False;True;t1_gj0mb7g;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0qkce/;1610531383;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Raptor12225;;;[];;;;text;t2_1174as;False;False;[];;Demon slayer maybe;False;False;;;;1610473230;;False;{};gj0qnkk;False;t3_kvv3dc;False;True;t3_kvv3dc;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj0qnkk/;1610531432;2;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;I thought Titanfolk was pretty open about it. Yeah, some people were complaining in the discussion thread but people just made memes to poke fun at them as a response by changing the OST of random scenes in the show;False;False;;;;1610473233;;False;{};gj0qnr3;False;t3_kvsy6n;False;True;t1_gj0l9vj;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0qnr3/;1610531434;19;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;">most of us are just silently loving the show, the problem is the real fanatics, - -oh yeah because liking a show means that you are a good person and disliking something means that you are a lunatic";False;False;;;;1610473236;;False;{};gj0qo1t;False;t3_kvsy6n;False;True;t1_gj0cupj;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0qo1t/;1610531439;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Asparagun_1;;;[];;;;text;t2_67c377yn;False;False;[];;"You connect to a dedicated server in a different region of your choosing, and it allows you to watch shows available in that region. Connection quality can depend on how good your wifi is, and how good the VPN itself is. They also stop you from being tracked. - -Basically you can trick the Internet into thinking you're in a different country.";False;False;;;;1610473240;;False;{};gj0qocg;False;t3_kvwb2o;False;True;t1_gj0q7gh;/r/anime/comments/kvwb2o/where_to_watch_the_promised_neverland_s2/gj0qocg/;1610531442;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;Keroro Gunso(SGT Frog) is full of Gundam references, some pretty blatant, Keroro even loves to build Gunpla.;False;False;;;;1610473297;;False;{};gj0qsvy;False;t3_kvvj7n;False;False;t3_kvvj7n;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj0qsvy/;1610531510;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610473299;;False;{};gj0qt3r;False;t3_kvsy6n;False;True;t1_gj0n5fw;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0qt3r/;1610531513;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- Direction toward specific sources of pirated content of any type is not allowed. This includes links to unofficial scanlations, streams, uploads, and download sources of any copyrighted content. It also includes direction towards specific sites offering this type of content, and watermarks mentioning such sites in uploaded images/videos. - - Discussion of piracy in general is allowed, **but naming, linking to, or hinting towards specific sources is not. Offering to send links via PM is also not allowed.** For more details, see our [full rules on illegal content](https://www.reddit.com/r/anime/wiki/rules#wiki_do_not_link_to_illegal_content). - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610473343;moderator;False;{};gj0qwn2;False;t3_kvv3u3;False;True;t1_gj0puo8;/r/anime/comments/kvv3u3/where_can_i_watch_inu_x_boku/gj0qwn2/;1610531566;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;It wasn't just the western people too. Apparently lots of locals harrassed him about it, which probably hurt even more.;False;False;;;;1610473349;;False;{};gj0qx43;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0qx43/;1610531573;4;True;False;anime;t5_2qh22;;0;[]; -[];;;grizzchan;;;[];;;dark;text;t2_nn6d9;False;True;[];;"TL;DR scenes are cut out, several of which are very important to the final scene and instead they inserted an extra ~20 minutes fight scene that wasn't in the LN and doesn't add anything to the plot, doesn't represent what Konosuba's ever been about and doesn't even make sense whatsoever. - -Result: many anime only watchers don't even understand what the point was of the final scene.";False;False;;;;1610473351;;False;{};gj0qxar;False;t3_kvsy6n;False;True;t1_gj0nrcm;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0qxar/;1610531575;0;True;False;anime;t5_2qh22;;0;[]; -[];;;lacking-name;;;[];;;;text;t2_hyec8wa;False;False;[];;"Munou na Nana - -Has a similar Light and L dynamic.";False;False;;;;1610473367;;False;{};gj0qyp2;False;t3_kvvwgu;False;True;t3_kvvwgu;/r/anime/comments/kvvwgu/please_recommend_me_an_anime_similar_to_death_note/gj0qyp2/;1610531595;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Raptor12225;;;[];;;;text;t2_1174as;False;False;[];;Re:zero;False;False;;;;1610473370;;False;{};gj0qyx9;False;t3_kvtund;False;True;t3_kvtund;/r/anime/comments/kvtund/anime_whith_equally_powerful_and_smart_male_and/gj0qyx9/;1610531599;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610473372;moderator;False;{};gj0qz3g;False;t3_kvsy6n;False;True;t1_gj0muz9;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0qz3g/;1610531601;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;titanfolk are based;False;False;;;;1610473374;;False;{};gj0qz7k;False;t3_kvsy6n;False;True;t1_gj0pwzk;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0qz7k/;1610531603;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MaiValentineHusband;;;[];;;;text;t2_9ktbpab3;False;False;[];;"The heart of the cards is actually dub nonsense, the sub doesn't have this, it's not a thing. - -Also, there's not really many ""Draw the exact card you need"", it's not as common a thing as it's made out to be.";False;False;;;;1610473397;;False;{};gj0r12l;False;t3_kvvqpw;False;True;t3_kvvqpw;/r/anime/comments/kvvqpw/the_heart_of_the_cards_is_cheating/gj0r12l/;1610531630;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;">it was supposed to be a terrifying situation, - -oh shut up, it played in the sesond two season reveal, it absolutely fits way more than the dogshit they put";False;True;;comment score below threshold;;1610473399;;False;{};gj0r183;False;t3_kvsy6n;False;True;t1_gj0fzxb;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0r183/;1610531633;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;Raptor12225;;;[];;;;text;t2_1174as;False;False;[];;Naruto and naruto shippuden;False;False;;;;1610473402;;False;{};gj0r1hg;False;t3_kvtohs;False;False;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0r1hg/;1610531636;6;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;">Awkwardly slapping YouSeeBigGirl or one of the others on top of it completely ruins the moment. - -it doesnt, the motion manga is actually better than the anime moment";False;True;;comment score below threshold;;1610473446;;False;{};gj0r506;False;t3_kvsy6n;False;True;t1_gj0ce94;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0r506/;1610531688;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;GeneralStop1294;;;[];;;;text;t2_9fofedrn;False;False;[];;SHIT HUMAN;False;False;;;;1610473480;;False;{};gj0r7sv;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0r7sv/;1610531729;1;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;"Depends on what you liked about Death Note. -The large-scale tactics and plot twists? Code Geass -The smart mind-games? No Game No Life -The character development? Monster";False;False;;;;1610473526;;False;{};gj0rbha;False;t3_kvvwgu;False;True;t3_kvvwgu;/r/anime/comments/kvvwgu/please_recommend_me_an_anime_similar_to_death_note/gj0rbha/;1610531787;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiro_Kai;;;[];;;;text;t2_bevm2wi;False;False;[];;"> [freaking out](https://i.imgur.com/c8bZqLA.png) - -God forgive me but troubled Yatogame is always the best XD";False;False;;;;1610473611;;False;{};gj0rida;False;t3_kvvbaw;False;True;t1_gj0k5ut;/r/anime/comments/kvvbaw/yatogamechan_kansatsu_nikki_sansatsume_episode_1/gj0rida/;1610531893;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MaiValentineHusband;;;[];;;;text;t2_9ktbpab3;False;False;[];;"Here's a handful off the top of my head. - -Sailor Moon S has an episode where Usagi sees a kid with a Shin-Chan figure thing (I think a zipper strap) on his bag. She asks him about it and the kid talks like shin chan back at her. - -Naruto's main look is inspired off super saiyan goku. - -Lucky Star has too many references too count. - -Strawberry Marshmallow has an episode where one of the characters dreams they're in hell, and the devil looks like her friend. The devil friend pulls out Excaliborg from Bludgeoning Angel Dokuro.";False;False;;;;1610473617;;False;{};gj0riup;False;t3_kvvj7n;False;True;t3_kvvj7n;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj0riup/;1610531899;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaylboo;;skip7;[];;;dark;text;t2_9mx02x1m;False;False;[];;Thanks. :) I might like some of those especially since you're older like me. 💁🏻‍♀️👻;False;False;;;;1610473622;;False;{};gj0rj8z;True;t3_kvvsse;False;False;t1_gj0puhi;/r/anime/comments/kvvsse/has_anyone_else_outgrown_anime_and_gotten_sad/gj0rj8z/;1610531905;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;"Yaaaaaaaaay! More Yatogame is always good! - -I wonder if [this is legit](https://i.imgur.com/y2us4ka.png) or is it the translators being overly ""creative"" with their translation? - -[Poor Yatogame!](https://i.imgur.com/vm1MELd.png) She's really torn in choosing between Gifu and Mie! - -It's so nice to have this anime back!";False;False;;;;1610473658;;False;{};gj0rm35;False;t3_kvvbaw;False;False;t3_kvvbaw;/r/anime/comments/kvvbaw/yatogamechan_kansatsu_nikki_sansatsume_episode_1/gj0rm35/;1610531948;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;"> I read that wrong at first... -> - -I honestly think that that was intentional.";False;False;;;;1610473790;;False;{};gj0rwsj;False;t3_kvvbaw;False;False;t1_gj0pufb;/r/anime/comments/kvvbaw/yatogamechan_kansatsu_nikki_sansatsume_episode_1/gj0rwsj/;1610532115;11;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Ill_Nefariousness_75, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610473997;moderator;False;{};gj0sddv;False;t3_kvwoo8;False;True;t3_kvwoo8;/r/anime/comments/kvwoo8/what_airing_animes_are_you_watching/gj0sddv/;1610532368;1;False;False;anime;t5_2qh22;;0;[]; -[];;;utakunir;;;[];;;;text;t2_4sur8bq8;False;False;[];;Oregairu S.N.A.F.U you won't regret it;False;False;;;;1610474063;;False;{};gj0sins;False;t3_kvtund;False;True;t3_kvtund;/r/anime/comments/kvtund/anime_whith_equally_powerful_and_smart_male_and/gj0sins/;1610532450;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BossandKings;;;[];;;;text;t2_5ifr53k7;False;False;[];;I started watching Pokemon from the very first episode, it's amazing how many episodes the show has, I'm still at the beginning, like around episode 38.;False;False;;;;1610474147;;False;{};gj0spht;False;t3_kvtohs;False;True;t1_gj09sk1;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0spht/;1610532552;1;True;False;anime;t5_2qh22;;0;[]; -[];;;H-Ryougi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DizzyAvocado/animelist;light;text;t2_pr24s;False;False;[];;">Nothing actually happened - -Not true - ->it was all an experiment - -Not true - ->it was all in their heads - -Only partially true - ->Rei is a clone of Shinji's mom - -Not a big deal and only partially true - ->Shinji kills Asuka - -Not true - -Edit: And I'd like to add, you can't really spoil Evangelion. It doesn't hinge on big plotwists and reveals.";False;False;;;;1610474234;;1610474545.0;{};gj0swgq;False;t3_kvwphm;False;True;t3_kvwphm;/r/anime/comments/kvwphm/spoilers_for_the_entirety_of_neon_gensis/gj0swgq/;1610532657;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Please create an anime list. You can create one at either: Myanimelist.net, anilist.co, kitsu or anime-planet. All 4 are free and easy to use. Helps you remember what you've seen and helps us so we aren't suggesting you what you've seen already. - -Anohana - -A Silent Voice - -3 gatsu no Lion";False;False;;;;1610474234;;False;{};gj0swhw;False;t3_kvvwwu;False;True;t3_kvvwwu;/r/anime/comments/kvvwwu/anime_just_like_your_lie_in_april/gj0swhw/;1610532657;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Please create an anime list. You can create one at either: Myanimelist.net, anilist.co, kitsu or anime-planet. All 4 are free and easy to use. Helps you remember what you've seen and helps us so we aren't suggesting you what you've seen already. - -Death Parade - -Erased - -Banana Fish - -The Promised Neverland - -Psycho-Pass";False;False;;;;1610474275;;False;{};gj0szu1;False;t3_kvvwgu;False;False;t3_kvvwgu;/r/anime/comments/kvvwgu/please_recommend_me_an_anime_similar_to_death_note/gj0szu1/;1610532706;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Btw_kek;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SouvlakiSpace7;light;text;t2_i0pj6;False;False;[];;not sure where you got those spoilers from but literally only one of them is even close to being correct and definitely not the one you're worried about;False;False;;;;1610474325;;False;{};gj0t3uq;False;t3_kvwphm;False;True;t3_kvwphm;/r/anime/comments/kvwphm/spoilers_for_the_entirety_of_neon_gensis/gj0t3uq/;1610532767;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610474327;moderator;False;{};gj0t3zp;False;t3_kvwsq9;False;True;t3_kvwsq9;/r/anime/comments/kvwsq9/where_is_she_from/gj0t3zp/;1610532769;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Slifer13xx;;MAL;[];;http://myanimelist.net/animelist/Slifer13xx;dark;text;t2_irntz;False;False;[];;Lmao, who the fuck gave you those spoilers. Don't think they've watched a single episode of EVA;False;False;;;;1610474329;;False;{};gj0t45q;False;t3_kvwphm;False;True;t3_kvwphm;/r/anime/comments/kvwphm/spoilers_for_the_entirety_of_neon_gensis/gj0t45q/;1610532771;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610474345;;False;{};gj0t5kd;False;t3_kvwphm;False;False;t3_kvwphm;/r/anime/comments/kvwphm/spoilers_for_the_entirety_of_neon_gensis/gj0t5kd/;1610532792;1;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;I won't 100% confirm or deny anything but 2 out of 3 of the spoilers you listed are actually wrong. There's still a lot more to enjoy in Eva that you haven't been spoiled for too, so definitely check it out.;False;False;;;;1610474368;;False;{};gj0t7eq;False;t3_kvwphm;False;False;t3_kvwphm;/r/anime/comments/kvwphm/spoilers_for_the_entirety_of_neon_gensis/gj0t7eq/;1610532820;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"I'm watching 23 this season, you may like Cells At work Black and supposed the kid from the last dungeon moved to the starter town - -There's also Wonder egg, an original, the first episode was today and it looks great, top animation and with an interesting premise";False;False;;;;1610474418;;False;{};gj0tbew;False;t3_kvwoo8;False;True;t3_kvwoo8;/r/anime/comments/kvwoo8/what_airing_animes_are_you_watching/gj0tbew/;1610532879;2;True;False;anime;t5_2qh22;;0;[]; -[];;;000000000111000;;;[];;;;text;t2_81liqvhu;False;True;[];;Mushoku tensei. Will be the best Anime this season!!;False;False;;;;1610474489;;False;{};gj0th5m;False;t3_kvvg09;False;False;t3_kvvg09;/r/anime/comments/kvvg09/looking_for_a_isekei_anime_that_i_can_really_enjoy/gj0th5m/;1610532964;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;Ok.;False;False;;;;1610474501;;False;{};gj0ti4s;False;t3_kvwrpm;False;True;t3_kvwrpm;/r/anime/comments/kvwrpm/non_non_biyori_is_much_better_than_yuru_camp/gj0ti4s/;1610532979;2;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;Gotta say K-On! is best CGDCT but to each their own;False;False;;;;1610474592;;False;{};gj0tp6k;False;t3_kvwrpm;False;False;t3_kvwrpm;/r/anime/comments/kvwrpm/non_non_biyori_is_much_better_than_yuru_camp/gj0tp6k/;1610533086;0;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"I like both a great deal. Both are great and do what they do best. - -Yuru Camp is about camping, they portray that very well. - -Non Non Biyori is about living in the countryside: They portray that very well. - -Each CGDCT does something different and nice.";False;False;;;;1610474658;;False;{};gj0tud5;False;t3_kvwrpm;False;False;t3_kvwrpm;/r/anime/comments/kvwrpm/non_non_biyori_is_much_better_than_yuru_camp/gj0tud5/;1610533165;5;True;False;anime;t5_2qh22;;0;[]; -[];;;CodeMonkeys;;;[];;;;text;t2_c1ikt;False;False;[];;Tourism in Nagoya must either be really great or really bad if we're on season 3;False;False;;;;1610474664;;False;{};gj0tuwy;False;t3_kvvbaw;False;False;t3_kvvbaw;/r/anime/comments/kvvbaw/yatogamechan_kansatsu_nikki_sansatsume_episode_1/gj0tuwy/;1610533173;2;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;Well it helps if you explain what specifically about the character writing is better. I haven't seen Non Non Biyori but I really like Yuru Camp. Honestly atmosphere especially in these CGDCT shows is something I really value and Yuru Camp has that in spades.;False;False;;;;1610474685;;False;{};gj0twk9;False;t3_kvwrpm;False;True;t3_kvwrpm;/r/anime/comments/kvwrpm/non_non_biyori_is_much_better_than_yuru_camp/gj0twk9/;1610533199;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PreludeToHell;;;[];;;;text;t2_yec5f;False;False;[];;I prefer NNB but they're both top tier. They excel at different things and I hope we have more of both in the future.;False;False;;;;1610474686;;False;{};gj0twp1;False;t3_kvwrpm;False;True;t3_kvwrpm;/r/anime/comments/kvwrpm/non_non_biyori_is_much_better_than_yuru_camp/gj0twp1/;1610533201;1;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;My personal favorite is Girls Last Tour.;False;False;;;;1610474700;;False;{};gj0txru;False;t3_kvwrpm;False;False;t1_gj0tp6k;/r/anime/comments/kvwrpm/non_non_biyori_is_much_better_than_yuru_camp/gj0txru/;1610533218;6;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;One piece is about to be 1000 episodes so....;False;False;;;;1610474783;;False;{};gj0u4dl;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0u4dl/;1610533319;1;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;Ah, I forgot about that one. If you count the manga then Girls' Last Tour is by far my favorite.;False;False;;;;1610474790;;False;{};gj0u4vc;False;t3_kvwrpm;False;True;t1_gj0txru;/r/anime/comments/kvwrpm/non_non_biyori_is_much_better_than_yuru_camp/gj0u4vc/;1610533327;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ambermareep;;;[];;;;text;t2_vxoe4l1;False;False;[];;Soul Eater, I think, and I didn’t even finish it lmaooo. If it was more than 24 episodes back in the day, I couldn’t do it. But Soul Eater is the only anime I have proof of that I watched more than 30 episodes.;False;False;;;;1610474835;;False;{};gj0u8fx;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0u8fx/;1610533383;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MonaganX;;;[];;;;text;t2_y3plh;False;False;[];;"Haibane Renmei -Seirei no Moirbito -Hibike! Euphonium, relatively speaking -Aoi Hana -Kare Kano, though it does have some glaring problems";False;False;;;;1610474866;;False;{};gj0uaw0;False;t3_kvuuvc;False;True;t3_kvuuvc;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0uaw0/;1610533419;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OtherHalfling;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/otherhalfling;light;text;t2_di2cu;False;False;[];;"I don't even get what the argument you're making is... - -I mean, I think both shows are great, but I also don't think they're that much alike. I mean they're alike in the sense that they both fall into the same genre/CGDCT subgenre, but within their genre, they're pretty different. They don't even try to be the same thing. - -Still, I think they are two anime this season that I'm most excited about.";False;False;;;;1610474873;;False;{};gj0ube9;False;t3_kvwrpm;False;False;t3_kvwrpm;/r/anime/comments/kvwrpm/non_non_biyori_is_much_better_than_yuru_camp/gj0ube9/;1610533427;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610474915;;1610475540.0;{};gj0uerr;False;t3_kvwrpm;False;True;t1_gj0tud5;/r/anime/comments/kvwrpm/non_non_biyori_is_much_better_than_yuru_camp/gj0uerr/;1610533479;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610474954;;1610487643.0;{};gj0uhsw;False;t3_kvwrpm;False;True;t3_kvwrpm;/r/anime/comments/kvwrpm/non_non_biyori_is_much_better_than_yuru_camp/gj0uhsw/;1610533524;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;contraptionfour;;;[];;;;text;t2_fs4ki;False;False;[];;Aside from the typical cases of a director/studio/voice actor's past works being referenced, FLCL's full pelt Lupin homage is probably the most committed example I've seen. Replete with impressions, costume changes, typography, sound effects and allusions to the red and green jacket eras.;False;False;;;;1610474998;;False;{};gj0ulci;False;t3_kvvj7n;False;True;t3_kvvj7n;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj0ulci/;1610533576;2;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"Thought I did back when I entered high school. Eventually I started to miss it in my last year and I started getting back in. Honestly I am way bigger a fan and more involved than I was say in my preteens and early teens when I first discovered anime and manga. - -In large as for being excited by everything I can understand that. In large there is a lot of good media I appreciate and I probably watch more kinds of stuff as a kid but there was something special about waiting for the new episodes of Naruto Shippuden to come out with Sasuke fighting Itachi. That's true of pretty much all media hobbies though not just anime I guess that is what happens when you experience more stuff. There are just also other shows I have a hard back looking on that I enjoyed as a kid like Familiar Zero. On the flip side there are other genres and shows I like now that I wouldn't have considered at that age like Mushishi or a lot of CGDCT shows like Laidback Camp. - -As for will you enjoy IDK honestly seems like you want to get back into it and you enjoy manga. if it's more an impatience issue maybe not you may still enjoy manga due to the quicker nature of consumption. If it's the content itself maybe? It could just be changing tastes or interests.";False;False;;;;1610475041;;False;{};gj0uoqo;False;t3_kvvsse;False;True;t3_kvvsse;/r/anime/comments/kvvsse/has_anyone_else_outgrown_anime_and_gotten_sad/gj0uoqo/;1610533636;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Akai-AC;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Akai-AC;light;text;t2_3af1hwm4;False;False;[];;Exactly. I think Yuru Camp is more relaxing while NNB is more of a cute comedy. They're different. OP just prefers comedy.;False;False;;;;1610475077;;False;{};gj0urks;False;t3_kvwrpm;False;True;t1_gj0ube9;/r/anime/comments/kvwrpm/non_non_biyori_is_much_better_than_yuru_camp/gj0urks/;1610533679;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Meanwhile I'm even older still and enjoy shows for kids like Precure and Naruto more than I did a decade ago (closer to your current age). Everyone's tastes are different and they can change over time, maybe trying something new can lead to another obsession. - -There's also the [recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) for general suggestions and [this thread of shows featuring adults](https://www.reddit.com/r/anime/comments/kvvb2i/looking_for_sliceofliferomance_anime_with_adult/) for something narrower but still outside of common recommendations.";False;False;;;;1610475118;;False;{};gj0uuvj;False;t3_kvvsse;False;True;t1_gj0rj8z;/r/anime/comments/kvvsse/has_anyone_else_outgrown_anime_and_gotten_sad/gj0uuvj/;1610533730;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;Toaru, 7 seasons, 159 episodes.;False;False;;;;1610475179;;False;{};gj0uzpd;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0uzpd/;1610533803;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BaconBlock;;;[];;;;text;t2_3n52hfiu;False;True;[];;"The smarts and the tactics that light uses when L thinks he is kira. Like when L says that he played in the English tennis team and light says to himself "" if I ask if he is English will he suspect that I'm kira "" probs my favorite moment in the L arc to be honest";False;False;;;;1610475204;;False;{};gj0v1pi;True;t3_kvvwgu;False;False;t1_gj0rbha;/r/anime/comments/kvvwgu/please_recommend_me_an_anime_similar_to_death_note/gj0v1pi/;1610533834;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610475243;moderator;False;{};gj0v4qv;False;t3_kvx4ct;False;True;t3_kvx4ct;/r/anime/comments/kvx4ct/im_confused_whats_a_ln/gj0v4qv/;1610533881;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;~~I see you are a man of culture as well~~;False;False;;;;1610475253;;False;{};gj0v5jh;False;t3_kvx1in;False;True;t3_kvx1in;/r/anime/comments/kvx1in/theres_got_to_be_a_mami_chan_pleasure_doll/gj0v5jh/;1610533893;4;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;Lol.;False;False;;;;1610475257;;False;{};gj0v5xl;False;t3_kvuhvx;False;True;t1_gj0f8r0;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0v5xl/;1610533900;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheBlackGetsuga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Grimmjow-Senpai;light;text;t2_vj5dn6s;False;False;[];;You aren't even old just 2 years older than me, i don't think i will ever stop watching anime, i find most of them better than anything Hollywood ever made(my opinion). I whould try watching slice of life if you feel like you have outgrown shounen.;False;False;;;;1610475261;;False;{};gj0v68w;False;t3_kvvsse;False;True;t3_kvvsse;/r/anime/comments/kvvsse/has_anyone_else_outgrown_anime_and_gotten_sad/gj0v68w/;1610533905;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;Dagashi Kashi.;False;False;;;;1610475267;;False;{};gj0v6nw;False;t3_kvwsq9;False;True;t3_kvwsq9;/r/anime/comments/kvwsq9/where_is_she_from/gj0v6nw/;1610533912;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lyracarina;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Lyracarina;light;text;t2_49pmfkt;False;False;[];;"Horimiya and Wonder Egg Priority - -It seems that Cloverworks is going to be my favorite studio for this season.";False;False;;;;1610475280;;False;{};gj0v7s6;False;t3_kvwoo8;False;True;t3_kvwoo8;/r/anime/comments/kvwoo8/what_airing_animes_are_you_watching/gj0v7s6/;1610533930;2;True;False;anime;t5_2qh22;;0;[]; -[];;;brotato96;;;[];;;;text;t2_16ylw4gr;False;False;[];;why not both?;False;False;;;;1610475283;;False;{};gj0v7zd;False;t3_kvwrpm;False;True;t3_kvwrpm;/r/anime/comments/kvwrpm/non_non_biyori_is_much_better_than_yuru_camp/gj0v7zd/;1610533934;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaeruzen;;;[];;;;text;t2_3aem0xms;False;False;[];;Your profile is amazing;False;False;;;;1610475289;;False;{};gj0v8fs;False;t3_kvx1in;False;True;t3_kvx1in;/r/anime/comments/kvx1in/theres_got_to_be_a_mami_chan_pleasure_doll/gj0v8fs/;1610533940;4;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;Since I just finished it recently Haruhi The Day of Sagittarius references a lot of major old sci fi anime including the orignal Gundam, Legend of the Galactic Heroes and Space Battleship Yamato.;False;False;;;;1610475297;;False;{};gj0v933;False;t3_kvvj7n;False;True;t3_kvvj7n;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj0v933/;1610533951;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LOTRfreak101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LOTRfreak101;light;text;t2_opd6l;False;False;[];;Naruto is mine. I actually really enjoy watching the filler since it fleshes out the characters.;False;False;;;;1610475300;;False;{};gj0v9cb;False;t3_kvtohs;False;True;t1_gj09p9s;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0v9cb/;1610533955;2;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;Contradiction from God of high-school was great. And the millionaire detective op was pretty good as well imo.;False;False;;;;1610475305;;False;{};gj0v9pk;False;t3_kvuhvx;False;True;t3_kvuhvx;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0v9pk/;1610533960;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;LN = light novel. They're regular books, but with the occasional illustration here and there;False;False;;;;1610475317;;False;{};gj0vaom;False;t3_kvx4ct;False;True;t3_kvx4ct;/r/anime/comments/kvx4ct/im_confused_whats_a_ln/gj0vaom/;1610533976;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610475320;;False;{};gj0vaxu;False;t3_kvwrpm;False;True;t1_gj0uhsw;/r/anime/comments/kvwrpm/non_non_biyori_is_much_better_than_yuru_camp/gj0vaxu/;1610533979;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610475331;;False;{};gj0vbqt;False;t3_kvx4ct;False;True;t3_kvx4ct;/r/anime/comments/kvx4ct/im_confused_whats_a_ln/gj0vbqt/;1610533991;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abyssbringer;;MAL;[];;https://myanimelist.net/profile/Abyssbringer3;dark;text;t2_cphmu;False;False;[];;"You can literally type into google ""What is a Light Novel"" and get an answer.";False;False;;;;1610475351;;False;{};gj0vddd;False;t3_kvx4ct;False;True;t3_kvx4ct;/r/anime/comments/kvx4ct/im_confused_whats_a_ln/gj0vddd/;1610534016;4;True;False;anime;t5_2qh22;;0;[]; -[];;;casperpool;;;[];;;;text;t2_8t6bv0te;False;False;[];;If you like romcoms/harems quintessential quintuplets season 2 is airing now;False;False;;;;1610475358;;False;{};gj0vdxf;False;t3_kvwoo8;False;True;t3_kvwoo8;/r/anime/comments/kvwoo8/what_airing_animes_are_you_watching/gj0vdxf/;1610534025;2;True;False;anime;t5_2qh22;;0;[]; -[];;;H-Ryougi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DizzyAvocado/animelist;light;text;t2_pr24s;False;False;[];;Light novels are books, they're 99% text. It's common for them to have some illustrations, usually in chapter breaks or big important scenes but aside from that they're mostly text.;False;False;;;;1610475358;;False;{};gj0vdzp;False;t3_kvx4ct;False;True;t3_kvx4ct;/r/anime/comments/kvx4ct/im_confused_whats_a_ln/gj0vdzp/;1610534026;1;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;I watched One Piece up until the Zou arc where I dropped it and just moved to reading the manga.;False;False;;;;1610475369;;False;{};gj0vev6;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0vev6/;1610534041;1;True;False;anime;t5_2qh22;;0;[]; -[];;;casperpool;;;[];;;;text;t2_8t6bv0te;False;False;[];;It’s a slice of life so not fantasy but still good;False;False;;;;1610475382;;False;{};gj0vfvd;False;t3_kvwoo8;False;True;t1_gj0vdxf;/r/anime/comments/kvwoo8/what_airing_animes_are_you_watching/gj0vfvd/;1610534058;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610475394;;False;{};gj0vguf;False;t3_kvwrpm;False;True;t1_gj0ti4s;/r/anime/comments/kvwrpm/non_non_biyori_is_much_better_than_yuru_camp/gj0vguf/;1610534074;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ill_Nefariousness_75;;;[];;;;text;t2_6p5dz8ba;False;False;[];;Big fan of cloverworks. Bunny girl senpai and saekano one of my favourite romcoms.;False;False;;;;1610475418;;False;{};gj0vinu;True;t3_kvwoo8;False;True;t1_gj0v7s6;/r/anime/comments/kvwoo8/what_airing_animes_are_you_watching/gj0vinu/;1610534103;2;True;False;anime;t5_2qh22;;0;[]; -[];;;crixx93;;;[];;;;text;t2_twrpm1;False;False;[];;A japanese light novel is basically a short novel. They are the equivalent of young adult novels in the west. They are serialized, use a simplified version of japanese, have a few illustrations and are targeted to youths;False;False;;;;1610475431;;False;{};gj0vjqj;False;t3_kvx4ct;False;True;t3_kvx4ct;/r/anime/comments/kvx4ct/im_confused_whats_a_ln/gj0vjqj/;1610534120;2;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;You know what, you would probably like Kaguya-sama: Love is War. It's a rom-com instead of a thriller, but the characters think in the exact same way that the Death Note characters do. It's a little hard to explain exactly how, but if you watch the first episode you'll see what you're in for. It's really funny;False;False;;;;1610475435;;False;{};gj0vk28;False;t3_kvvwgu;False;False;t1_gj0v1pi;/r/anime/comments/kvvwgu/please_recommend_me_an_anime_similar_to_death_note/gj0vk28/;1610534126;5;True;False;anime;t5_2qh22;;0;[]; -[];;;BaconBlock;;;[];;;;text;t2_3n52hfiu;False;True;[];;Thank you mate !!!!;False;False;;;;1610475512;;False;{};gj0vq7n;True;t3_kvvwgu;False;True;t1_gj0vk28;/r/anime/comments/kvvwgu/please_recommend_me_an_anime_similar_to_death_note/gj0vq7n/;1610534226;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ill_Nefariousness_75;;;[];;;;text;t2_6p5dz8ba;False;False;[];;Yeah I'm watching it right now. I mentioned it's Japanese name in my post:');False;False;;;;1610475546;;False;{};gj0vt09;True;t3_kvwoo8;False;True;t1_gj0vdxf;/r/anime/comments/kvwoo8/what_airing_animes_are_you_watching/gj0vt09/;1610534271;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TacoBellIsChipotle;;;[];;;;text;t2_7l9egrg6;False;False;[];;"OP: I can't find Promised Neverland in my region. - -Also OP: Doesn't bother giving their region.";False;False;;;;1610475613;;False;{};gj0vyf7;False;t3_kvwb2o;False;True;t3_kvwb2o;/r/anime/comments/kvwb2o/where_to_watch_the_promised_neverland_s2/gj0vyf7/;1610534355;1;True;False;anime;t5_2qh22;;0;[]; -[];;;casperpool;;;[];;;;text;t2_8t6bv0te;False;False;[];;I don’t see anybody else saying recovery of an mmo junky. Main characters are adults in their late 20s and early 30s;False;False;;;;1610475621;;False;{};gj0vz20;False;t3_kvvb2i;False;True;t3_kvvb2i;/r/anime/comments/kvvb2i/looking_for_sliceofliferomance_anime_with_adult/gj0vz20/;1610534365;1;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;If you like the style of Kaerimichi, you might like Teekyuu. The director of the OP made an entire series of 2 minute episode comedy where everything is as fast-paced and surreal as the visuals in Kaerimichi.;False;False;;;;1610475643;;False;{};gj0w0t3;False;t3_kvuhvx;False;True;t1_gj0gobn;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0w0t3/;1610534391;2;True;False;anime;t5_2qh22;;0;[]; -[];;;H-Ryougi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DizzyAvocado/animelist;light;text;t2_pr24s;False;False;[];;"> They are serialized - -Not necessarily - ->use a simplified version of japanese - -Not true - ->and are targeted to youths - -Not necessarily - -Light novel is a made up distinction, not even Japan has a clear definition for it. If a publisher claims that what they're releasing is a light novel then it is, word count, vocabulary, themes, genres, illustrations, print format, author, etc have nothing to do with it.";False;False;;;;1610475650;;False;{};gj0w1d8;False;t3_kvx4ct;False;True;t1_gj0vjqj;/r/anime/comments/kvx4ct/im_confused_whats_a_ln/gj0w1d8/;1610534399;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610475673;;False;{};gj0w38t;False;t3_kvvrbd;False;True;t3_kvvrbd;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj0w38t/;1610534428;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaylboo;;skip7;[];;;dark;text;t2_9mx02x1m;False;False;[];;Hey thanks !! And it's great u still like anime that's for kids. I always get self conscious if I do because none of my other family members really watch anime or even read fiction, or play games! It's like I'm the only one and they deem it childish haha.;False;False;;;;1610475710;;False;{};gj0w678;True;t3_kvvsse;False;True;t1_gj0uuvj;/r/anime/comments/kvvsse/has_anyone_else_outgrown_anime_and_gotten_sad/gj0w678/;1610534473;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaylboo;;skip7;[];;;dark;text;t2_9mx02x1m;False;False;[];;Thanks I'll try that. I've never watched slice of life genre before. I always thought the genre was centred around highschool students, if that makes sense.;False;False;;;;1610475789;;False;{};gj0wcl0;True;t3_kvvsse;False;True;t1_gj0v68w;/r/anime/comments/kvvsse/has_anyone_else_outgrown_anime_and_gotten_sad/gj0wcl0/;1610534573;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Squiddy56_;;;[];;;;text;t2_93n2q5lm;False;False;[];;"does ""in another world with my smartphone"" count? its a harem tho";False;False;;;;1610475831;;False;{};gj0wfvt;False;t3_kvx63d;False;True;t3_kvx63d;/r/anime/comments/kvx63d/action_anime_where_mc_is_different_from_others/gj0wfvt/;1610534623;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HobnobsTheRed;;;[];;;;text;t2_1ftgjit5;False;False;[];;"> I wonder if this is legit or is it the translators being overly ""creative"" with their translation? - -I suspect it's reasonably accurate, at least in as far as getting across how the word/phrase in question is being contracted. - -As an example, I knew someone from Kent many years ago for whom the words ""turned around"" were almost invariably pronounced ""traand"" - with the most common variation being the loss of the final d. I suspect it's a similar dialect habit that's being shown with ""cov'd"" in that the middle part is missing from the local term, especially given the sentence that Jin starts to say before he's interrupted by Rara-chan.";False;False;;;;1610475874;;False;{};gj0wjcd;False;t3_kvvbaw;False;False;t1_gj0rm35;/r/anime/comments/kvvbaw/yatogamechan_kansatsu_nikki_sansatsume_episode_1/gj0wjcd/;1610534677;5;True;False;anime;t5_2qh22;;0;[]; -[];;;_cjessop18_;;;[];;;;text;t2_2zh548gv;False;False;[];;One Piece - 950+ episodes + all the movies and specials, which equal to around 1000 episodes worth of content.;False;False;;;;1610475900;;False;{};gj0wlh1;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0wlh1/;1610534710;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Endless-Sorcerer;;;[];;;;text;t2_13sj4l;False;False;[];;"Katanagatari may not be exactly what you're asking for but I think you'd enjoy it. Developing and exploring the dynamic between the male and female is the entire point of the series and I'd consider the two to be equals. - -While the female MC is intelligent (but weak) and the male MC is strong (but inexperienced with the world), they need to rely upon one another to overcome the challenges they encounter, learn from one another, and grow as individuals during their experiences. - -Honestly, it's still one of my favourite series so I'd highly recommend watching it. - -Now, for something more along the lines of your request which you may enjoy: - -* The Promised Neverland -* Spice and Wolf -* Tonkaku Kawaii -* Kaguya-sama: Love is War -* Boarding School Juliet";False;False;;;;1610475938;;1610476431.0;{};gj0wogs;False;t3_kvtund;False;True;t3_kvtund;/r/anime/comments/kvtund/anime_whith_equally_powerful_and_smart_male_and/gj0wogs/;1610534756;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bob44321;;;[];;;;text;t2_4uilh3t4;False;False;[];;Some of us make a point of looking into new and unique shows.;False;False;;;;1610475942;;False;{};gj0wov1;False;t3_kvvrbd;False;False;t1_gj0w38t;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj0wov1/;1610534763;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Lankpants;;;[];;;;text;t2_ws3e6;False;False;[];;"I have three answers for this. - -Longest running single series: TTGL at 27 eps (I don't like super long series) - -Longest running continuous series: Monogatari at around 100 eps and three movies. - -Longest running series including spinoffs and side stories: Toaru series at 140 eps.";False;False;;;;1610475943;;False;{};gj0wovz;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0wovz/;1610534763;0;True;False;anime;t5_2qh22;;0;[]; -[];;;crixx93;;;[];;;;text;t2_twrpm1;False;False;[];;"Technically correct. But the overwhelmingly majority of LNs fit my description. My attempt was to provide a ""pragmatic"" definition. The LN term is super vague, the same as ""anime"". Although any type of animation is technically an ""anime"", most people outside of JP think that it means 2D animation from JP.";False;False;;;;1610475944;;False;{};gj0wp05;False;t3_kvx4ct;False;True;t1_gj0w1d8;/r/anime/comments/kvx4ct/im_confused_whats_a_ln/gj0wp05/;1610534765;2;True;False;anime;t5_2qh22;;0;[]; -[];;;brotato96;;;[];;;;text;t2_16ylw4gr;False;False;[];;Sing yesterday for me;False;False;;;;1610475976;;False;{};gj0wrjf;False;t3_kvuuvc;False;True;t3_kvuuvc;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj0wrjf/;1610534805;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"I love Renge from Non Non Biyori. Such a believable child. She's definitely my favorite child, in an anime. But, I also love Rin from Yuru Camp. I see myself with certain personality traits. - -I love how Yuru Camps accept introverts. Instead of Nadeshiko trying to force Rin into the duo camping, she accepts that Rin sometimes likes to camp solo. And the anime also accepts that, instead of saying, no doing anything solo is wrong. - -As an introvert myself, that really speaks to me, on a personal level.";False;False;;;;1610475978;;1610476200.0;{};gj0wrpt;False;t3_kvwrpm;False;True;t1_gj0uerr;/r/anime/comments/kvwrpm/non_non_biyori_is_much_better_than_yuru_camp/gj0wrpt/;1610534807;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610476007;moderator;False;{};gj0wu2f;False;t3_kvxe3m;False;False;t3_kvxe3m;/r/anime/comments/kvxe3m/whats_a_good_shortmedium_anime_to_watch/gj0wu2f/;1610534849;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Risky_on_keyboard, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610476008;moderator;False;{};gj0wu3f;False;t3_kvxe3m;False;False;t3_kvxe3m;/r/anime/comments/kvxe3m/whats_a_good_shortmedium_anime_to_watch/gj0wu3f/;1610534849;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;It seems it's available in chrunchyroll;False;False;;;;1610476025;;False;{};gj0wvhp;False;t3_kvv3u3;False;True;t3_kvv3u3;/r/anime/comments/kvv3u3/where_can_i_watch_inu_x_boku/gj0wvhp/;1610534872;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarRufus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ScarRufus;light;text;t2_2u0vy1pk;False;False;[];;Don't you know? Google is broken everyday for reddit users. Even the FAQ and side info from the page are broken;False;False;;;;1610476027;;False;{};gj0wvm7;False;t3_kvx4ct;False;True;t1_gj0vddd;/r/anime/comments/kvx4ct/im_confused_whats_a_ln/gj0wvm7/;1610534874;3;True;False;anime;t5_2qh22;;0;[]; -[];;;H-Ryougi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DizzyAvocado/animelist;light;text;t2_pr24s;False;False;[];;Gunbuster, Diebuster, and FLCL;False;False;;;;1610476070;;False;{};gj0wz23;False;t3_kvxe3m;False;True;t3_kvxe3m;/r/anime/comments/kvxe3m/whats_a_good_shortmedium_anime_to_watch/gj0wz23/;1610534933;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Best_in_Za_Warudo;;;[];;;;text;t2_12b21a;False;False;[];;So if your favorite show wasn't advertised enough you wouldn't give a fuck about it?;False;False;;;;1610476074;;False;{};gj0wzee;False;t3_kvvrbd;False;False;t1_gj0w38t;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj0wzee/;1610534940;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Hokaze-Junko;;;[];;;;text;t2_6qgcb6g3;False;False;[];;liz to aoi tori, same director as a silent voice;False;False;;;;1610476076;;False;{};gj0wzko;False;t3_kvtp2s;False;True;t3_kvtp2s;/r/anime/comments/kvtp2s/so_today_i_have_watched_a_silent_voice_your_name/gj0wzko/;1610534942;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KiwiBennydudez;;MAL;[];;https://myanimelist.net/animelist/KiwiBen;dark;text;t2_889a6;False;False;[];;"Sorry, your submission has been removed. - -- This looks like a merch post. Show off your loot or ask questions about merch in the [weekly Merch Mondays megathread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+title%3A%22Merch+Mondays%22&restrict_sr=on&sort=new&t=week) instead. - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610476106;moderator;False;{};gj0x1wl;False;t3_kvx1in;False;True;t3_kvx1in;/r/anime/comments/kvx1in/theres_got_to_be_a_mami_chan_pleasure_doll/gj0x1wl/;1610534983;1;True;False;anime;t5_2qh22;;0;[]; -[];;;k4r6000;;;[];;;;text;t2_3q0qar7q;False;False;[];;"Yu-Gi-Oh plays big with the idea of Fate. Characters often win because they are destined by the gods to do so, just as how some are Chosen and can use things like the Millennium Items and God Cards, while normal people suffer horrible deaths of they try to do so. Even further, Atem as pharaoh is a literal god on Earth and is able to bend destiny to his will. He doesn't get lucky. He also is far from an underdog. From the very beginning of the manga the concept was that he would smash sinners and bring down karmic justice on them. Even being an unknown only went as far as his victory at Death-T early on. From then on he's well known as being a champion duelist. - -Jounouchi is an underdog, and indeed loses much of the time. He doesn't beat any of the top duelists.";False;False;;;;1610476109;;1610476309.0;{};gj0x247;False;t3_kvvqpw;False;True;t3_kvvqpw;/r/anime/comments/kvvqpw/the_heart_of_the_cards_is_cheating/gj0x247/;1610534986;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jslice4ever;;;[];;;;text;t2_2wvi51tm;False;False;[];;Wow. What a shitty way to look at things.;False;False;;;;1610476160;;False;{};gj0x67u;False;t3_kvvrbd;False;False;t1_gj0w38t;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj0x67u/;1610535049;8;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610476205;moderator;False;{};gj0x9wv;False;t3_kvxgs9;False;True;t3_kvxgs9;/r/anime/comments/kvxgs9/i_have_been_having_trouble_finding_this_anime/gj0x9wv/;1610535106;0;False;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;"Accelerator in ""Raildex"" is seen many times reading Heavy Object.";False;False;;;;1610476271;;False;{};gj0xf8d;False;t3_kvvj7n;False;True;t3_kvvj7n;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj0xf8d/;1610535186;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Please create an anime list. You can create one at either: Myanimelist.net, anilist.co, kitsu or anime-planet. All 4 are free and easy to use. Helps you remember what you've seen and helps us so we aren't suggesting you what you've seen already. - -Cowboy Bebop - -Gurren Lagann - -Erased - -Death Parade - -Sora yori mo Tooi Basho - -Toradora - -Anohana - -Gekkan Shoujo Nozaki-kun - -Yuri on Ice";False;False;;;;1610476312;;False;{};gj0xijd;False;t3_kvxe3m;False;True;t3_kvxe3m;/r/anime/comments/kvxe3m/whats_a_good_shortmedium_anime_to_watch/gj0xijd/;1610535237;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;"See here: https://www.livechart.me/anime/4603/streams - -Btw it's /r/Donghua, Chinese Animation not anime.";False;False;;;;1610476339;;False;{};gj0xkql;False;t3_kvxgs9;False;True;t3_kvxgs9;/r/anime/comments/kvxgs9/i_have_been_having_trouble_finding_this_anime/gj0xkql/;1610535269;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610476384;;False;{};gj0xoag;False;t3_kvxgs9;False;True;t3_kvxgs9;/r/anime/comments/kvxgs9/i_have_been_having_trouble_finding_this_anime/gj0xoag/;1610535325;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;It's only available on bilibili, don't think it's in any other legal sites, your best bet is to pirate it;False;False;;;;1610476387;;False;{};gj0xohj;False;t3_kvxgs9;False;True;t3_kvxgs9;/r/anime/comments/kvxgs9/i_have_been_having_trouble_finding_this_anime/gj0xohj/;1610535328;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;"Any time I comment something that I think is underrated, anime/OP/ED/whatnot I get massive downvotes and comments like ""that's one of the biggest shit, dude"". So this time no, I won't take the bait! 😁";False;False;;;;1610476423;;False;{};gj0xrh1;False;t3_kvuhvx;False;True;t3_kvuhvx;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj0xrh1/;1610535374;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"[Koi Kaze](https://anilist.co/anime/634/Koi-Kaze/) -Drama, Psychological, Romance, Slice of Life - -[Rascal Does Not Dream of Bunny Girl Senpai](https://anilist.co/anime/101291/Rascal-Does-Not-Dream-of-Bunny-Girl-Senpai/) -Comedy, Mystery, Psychological, Romance, Slice of Life, Supernatural - -[Kill la Kill](https://anilist.co/anime/18679/Kill-la-Kill/) -Action, Comedy, Ecchi - -[Ao-chan Can't Study!](https://anilist.co/anime/105989/Aochan-Cant-Study/) -Comedy, Ecchi, Romance";False;False;;;;1610476434;;False;{};gj0xsds;False;t3_kvxe3m;False;False;t3_kvxe3m;/r/anime/comments/kvxe3m/whats_a_good_shortmedium_anime_to_watch/gj0xsds/;1610535389;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;"I did a deep dive in both these series as part of the rewatch that was happening in prep for S3 of Non Non Biyori and S2 or Yuru Camp. I came away from that with a greater appreciation for just how slow and deliberate Yuru Camp is compared to other slice-of-life series; it just has such a high level of detail about the budding friendship between the two main characters Rin and Nadeshiko, and there are elements of the series which feel really authentic to today's modern sensibilities, such as the use of group chats for communication. Despite its leisurely speed, S1 does make a good character arc for Rin and her greater appreciation for a different kind of camping (group camping) without abandoning her love solo camping. - -I feel like Non Non Biyori is more like a time capsule or a grade school yearbook; it's a snapshot of a ""simpler"" time, when all you had to worry about was getting your chores and homework done and you could spend the rest of your time outdoors with your friends with unstructured play for days on end. Nostalgia does a lot of heavy lifting in this series, and I don't mean that in a bad way. It's an amazing series and it displays its story and characters in a stellar way. - -Anyways, in conclusion, my salty hottake is that Yama no Susume is better than both of those series and I will fight everyone who says otherwise.";False;False;;;;1610476466;;False;{};gj0xuw3;False;t3_kvwrpm;False;True;t3_kvwrpm;/r/anime/comments/kvwrpm/non_non_biyori_is_much_better_than_yuru_camp/gj0xuw3/;1610535429;2;True;False;anime;t5_2qh22;;0;[]; -[];;;casperpool;;;[];;;;text;t2_8t6bv0te;False;False;[];;O frick my bad i didn’t notice;False;False;;;;1610476505;;False;{};gj0xy3r;False;t3_kvwoo8;False;True;t1_gj0vt09;/r/anime/comments/kvwoo8/what_airing_animes_are_you_watching/gj0xy3r/;1610535479;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Re:Zero - [Trailer](https://www.youtube.com/watch?v=ETWPtIfesyA);False;False;;;;1610476505;;False;{};gj0xy52;False;t3_kvvg09;False;True;t3_kvvg09;/r/anime/comments/kvvg09/looking_for_a_isekei_anime_that_i_can_really_enjoy/gj0xy52/;1610535480;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;"I believe the series is on YouTube on an official channel. - -Ep 1: https://youtu.be/m346FShZ5Dc";False;False;;;;1610476557;;False;{};gj0y2al;False;t3_kvxgs9;False;True;t3_kvxgs9;/r/anime/comments/kvxgs9/i_have_been_having_trouble_finding_this_anime/gj0y2al/;1610535545;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;As with a lot of things in anime, often but not always. Off the top of my head there are things like [Servant x Service](https://www.livechart.me/anime/4), [Wotakoi](https://www.livechart.me/anime/2800), [The Great Passage](https://www.livechart.me/anime/2083), and [Recovery of an MMO Junkie](https://www.livechart.me/anime/2820). Going more into comedy there's also [Osomatsu-san](https://www.livechart.me/anime/1707) which is about unemployed adult sextuplets, but I'd still argue that's as much of a slice of life series as the ones about teens that more often get classified as such.;False;False;;;;1610476578;;False;{};gj0y3zt;False;t3_kvvsse;False;True;t1_gj0wcl0;/r/anime/comments/kvvsse/has_anyone_else_outgrown_anime_and_gotten_sad/gj0y3zt/;1610535578;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;"It's on wetv - -Also on youtube";False;False;;;;1610476672;;False;{};gj0ybc2;False;t3_kvxgs9;False;True;t3_kvxgs9;/r/anime/comments/kvxgs9/i_have_been_having_trouble_finding_this_anime/gj0ybc2/;1610535708;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610476689;;False;{};gj0ycot;False;t3_kvwrpm;False;True;t1_gj0wrpt;/r/anime/comments/kvwrpm/non_non_biyori_is_much_better_than_yuru_camp/gj0ycot/;1610535729;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;princB612;;;[];;;;text;t2_luwcpu;False;False;[];;What do you mean you finished black clover? It's... It's an ongoing affair?;False;False;;;;1610476812;;False;{};gj0ymht;False;t3_kvx63d;False;True;t3_kvx63d;/r/anime/comments/kvx63d/action_anime_where_mc_is_different_from_others/gj0ymht/;1610535888;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Toonamigamerrr;;;[];;;;text;t2_ssw2vcw;False;False;[];;During Haikyuu. The translator called it Norovirus or something;False;False;;;;1610476820;;False;{};gj0yn5e;False;t3_kvvbaw;False;False;t1_gj0rm35;/r/anime/comments/kvvbaw/yatogamechan_kansatsu_nikki_sansatsume_episode_1/gj0yn5e/;1610535899;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IcicleLin;;;[];;;;text;t2_867dltua;False;False;[];;I know I mean like up to ep 158;False;False;;;;1610476855;;False;{};gj0ypzw;True;t3_kvx63d;False;True;t1_gj0ymht;/r/anime/comments/kvx63d/action_anime_where_mc_is_different_from_others/gj0ypzw/;1610535945;0;True;False;anime;t5_2qh22;;0;[]; -[];;;IcicleLin;;;[];;;;text;t2_867dltua;False;False;[];;Still waiting 4 next weeks ep;False;False;;;;1610476874;;False;{};gj0yrl9;True;t3_kvx63d;False;True;t1_gj0ymht;/r/anime/comments/kvx63d/action_anime_where_mc_is_different_from_others/gj0yrl9/;1610535969;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610476877;moderator;False;{};gj0yrwi;False;t3_kvxpjg;False;True;t3_kvxpjg;/r/anime/comments/kvxpjg/i_bought_a_sticker_off_etsy_and_these_two/gj0yrwi/;1610535976;1;False;False;anime;t5_2qh22;;0;[]; -[];;;princB612;;;[];;;;text;t2_luwcpu;False;False;[];;You got me sweating a bit there, like you know that they cancelled it in the middle of everything;False;False;;;;1610476952;;False;{};gj0yxta;False;t3_kvx63d;False;True;t1_gj0yrl9;/r/anime/comments/kvx63d/action_anime_where_mc_is_different_from_others/gj0yxta/;1610536075;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"Attack on Titan. - -I really don't watch a lot of long series.";False;False;;;;1610476959;;False;{};gj0yyeu;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0yyeu/;1610536084;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bifflemallow;;;[];;;;text;t2_37myy9ld;False;False;[];;I have been informed that the girl on the left is from Sword Art Online, still looking for the red girl!;False;False;;;;1610476979;;False;{};gj0z020;True;t3_kvxpjg;False;True;t3_kvxpjg;/r/anime/comments/kvxpjg/i_bought_a_sticker_off_etsy_and_these_two/gj0z020/;1610536111;1;True;False;anime;t5_2qh22;;0;[]; -[];;;REDHiiiii5;;;[];;;;text;t2_7f9w5zio;False;False;[];;^;False;False;;;;1610477025;;False;{};gj0z3se;False;t3_kvvwgu;False;False;t1_gj0qyp2;/r/anime/comments/kvvwgu/please_recommend_me_an_anime_similar_to_death_note/gj0z3se/;1610536172;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blueteenight;;;[];;;;text;t2_11kek1;False;False;[];;The first episode was a beautiful mindfuck, I can't wait to see where they'll go with this story!;False;False;;;;1610477047;;False;{};gj0z5id;False;t3_kvvrbd;False;False;t3_kvvrbd;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj0z5id/;1610536198;90;True;False;anime;t5_2qh22;;0;[]; -[];;;casedog8;;;[];;;;text;t2_61aub3lp;False;False;[];;I think the girl on the left is Asuna from Sword Art Online;False;False;;;;1610477123;;False;{};gj0zbjc;False;t3_kvxpjg;False;True;t3_kvxpjg;/r/anime/comments/kvxpjg/i_bought_a_sticker_off_etsy_and_these_two/gj0zbjc/;1610536292;1;True;False;anime;t5_2qh22;;0;[]; -[];;;asslavz;;;[];;;;text;t2_6z9yqdla;False;False;[];;Code geass is definitly the most similar in terms of smarts;False;False;;;;1610477203;;False;{};gj0zi38;False;t3_kvvwgu;False;True;t1_gj0vq7n;/r/anime/comments/kvvwgu/please_recommend_me_an_anime_similar_to_death_note/gj0zi38/;1610536394;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaylboo;;skip7;[];;;dark;text;t2_9mx02x1m;False;False;[];;Thanks I'll try these out! :);False;False;;;;1610477295;;False;{};gj0zpku;True;t3_kvvsse;False;True;t1_gj0y3zt;/r/anime/comments/kvvsse/has_anyone_else_outgrown_anime_and_gotten_sad/gj0zpku/;1610536515;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yusufucar2010;;;[];;;;text;t2_15asf1;False;False;[];;Attack on titan, I'm up to date;False;False;;;;1610477311;;False;{};gj0zqti;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj0zqti/;1610536534;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LetNauruRuleTheWorld;;;[];;;;text;t2_3weucpuk;False;False;[];;Can Killua even damage Korosensei? (unless you theorize this battle with Killua having those anti-sensei bullets);False;False;;;;1610477318;;False;{};gj0zrd9;False;t3_kvxo9f;False;True;t3_kvxo9f;/r/anime/comments/kvxo9f/killua_hunter_x_hunter_vs_korosensei/gj0zrd9/;1610536543;2;True;False;anime;t5_2qh22;;0;[]; -[];;;asslavz;;;[];;;;text;t2_6z9yqdla;False;False;[];;No it's actualy very wholesome it's kinda slice of life isrkai but with a very rich world and great characters;False;False;;;;1610477333;;False;{};gj0zsmz;False;t3_kvv3dc;False;True;t1_gj0joq9;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj0zsmz/;1610536564;0;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;I'm going to try to call Assassination Classroom as assclass from now on :);False;False;;;;1610477390;;False;{};gj0zx6e;False;t3_kvxo9f;False;True;t3_kvxo9f;/r/anime/comments/kvxo9f/killua_hunter_x_hunter_vs_korosensei/gj0zx6e/;1610536638;2;True;False;anime;t5_2qh22;;0;[]; -[];;;pambeeslies;;;[];;;;text;t2_3gtmttll;False;False;[];;Yess, I was theorizing with the anti-sensei weapons!;False;False;;;;1610477406;;False;{};gj0zyg0;True;t3_kvxo9f;False;True;t1_gj0zrd9;/r/anime/comments/kvxo9f/killua_hunter_x_hunter_vs_korosensei/gj0zyg0/;1610536658;2;True;False;anime;t5_2qh22;;0;[]; -[];;;playdoughepic12;;;[];;;;text;t2_7okquoqc;False;False;[];;r/whowouldwin;False;False;;;;1610477484;;False;{};gj104mq;False;t3_kvxo9f;False;True;t3_kvxo9f;/r/anime/comments/kvxo9f/killua_hunter_x_hunter_vs_korosensei/gj104mq/;1610536754;2;True;False;anime;t5_2qh22;;0;[]; -[];;;pambeeslies;;;[];;;;text;t2_3gtmttll;False;False;[];;ooh, smart, thank you !;False;False;;;;1610477511;;False;{};gj106vu;True;t3_kvxo9f;False;True;t1_gj104mq;/r/anime/comments/kvxo9f/killua_hunter_x_hunter_vs_korosensei/gj106vu/;1610536789;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;The disastrous life of Saiki.K;False;False;;;;1610477536;;False;{};gj108xo;False;t3_kvx63d;False;True;t3_kvx63d;/r/anime/comments/kvx63d/action_anime_where_mc_is_different_from_others/gj108xo/;1610536822;1;True;False;anime;t5_2qh22;;0;[]; -[];;;REDHiiiii5;;;[];;;;text;t2_7f9w5zio;False;False;[];;"KUMO DESU GA (spider isekai) but even though it has cgi, its one of the good ones out there. - -If you can read, I HIGLY recommend the Light Novel to experience the full story.";False;False;;;;1610477617;;False;{};gj10ffk;False;t3_kvvg09;False;False;t3_kvvg09;/r/anime/comments/kvvg09/looking_for_a_isekei_anime_that_i_can_really_enjoy/gj10ffk/;1610536927;1;True;False;anime;t5_2qh22;;0;[]; -[];;;qba19;;;[];;;;text;t2_fnhtp;False;False;[];;"Bunny Girl Senpai -Violet Evergarden -The Pet Girl of Sakurasou -Kokoro Connect -Bloom Into You - -Currently getting season 2 (one episode each so far) but I highly recommend: -Yuru Camp -The Promised Neverland";False;False;;;;1610477683;;False;{};gj10kv7;False;t3_kvxe3m;False;True;t3_kvxe3m;/r/anime/comments/kvxe3m/whats_a_good_shortmedium_anime_to_watch/gj10kv7/;1610537016;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;"* Read or Die - -* Black Magic M-66 - -* Patlabor the Early Days OVA + movies";False;False;;;;1610477699;;False;{};gj10m5r;False;t3_kvxe3m;False;False;t3_kvxe3m;/r/anime/comments/kvxe3m/whats_a_good_shortmedium_anime_to_watch/gj10m5r/;1610537036;1;True;False;anime;t5_2qh22;;0;[]; -[];;;qba19;;;[];;;;text;t2_fnhtp;False;False;[];;"First time I watch so many (9) -In order of my recomendations: -Re:Zero S2 -Yuru Camp S2 -Quintesential Quintuplets S2 -Horimiya -The Promised Neverland S2 -Mushoku Tensei -Totoeba Last Dungeon -Jaku-Char - -And still waiting for Dr Stone S2 which would be quite high on the list!";False;False;;;;1610477930;;False;{};gj114vd;False;t3_kvwoo8;False;True;t3_kvwoo8;/r/anime/comments/kvwoo8/what_airing_animes_are_you_watching/gj114vd/;1610537335;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nightlink011;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/nightlink011;light;text;t2_gshqkgk;False;False;[];;Black lagoon fits the description;False;False;;;;1610477957;;False;{};gj116zx;False;t3_kvx63d;False;True;t3_kvx63d;/r/anime/comments/kvx63d/action_anime_where_mc_is_different_from_others/gj116zx/;1610537367;1;True;False;anime;t5_2qh22;;0;[]; -[];;;staytrueangel232;;;[];;;;text;t2_5knwsxg9;False;False;[];;I think I’ve seen that one;False;False;;;;1610478158;;False;{};gj11n48;True;t3_kvvj7n;False;False;t1_gj0neae;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj11n48/;1610537625;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LetNauruRuleTheWorld;;;[];;;;text;t2_3weucpuk;False;False;[];;I guess his reflexes might not be as fast as his maximum travel speed, but he can dodge the bullets fired by 20 people in the classroom with ease, it would be hard to compare them but I still think Korosensei winning would be more probable.;False;False;;;;1610478186;;False;{};gj11p89;False;t3_kvxo9f;False;True;t1_gj0zyg0;/r/anime/comments/kvxo9f/killua_hunter_x_hunter_vs_korosensei/gj11p89/;1610537658;3;True;False;anime;t5_2qh22;;0;[]; -[];;;pambeeslies;;;[];;;;text;t2_3gtmttll;False;False;[];;ooh, good points !;False;False;;;;1610478279;;False;{};gj11wfr;True;t3_kvxo9f;False;True;t1_gj11p89;/r/anime/comments/kvxo9f/killua_hunter_x_hunter_vs_korosensei/gj11wfr/;1610537772;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;So in the anime blood lad there are a bunch of anime references because the main character is an otaku, and when he is in his room you can see a bunch of anime stuff (like a sailor moon figure, dragon ball figures and a dragon ball keying on his phone). Of course there is way more stuff but I'll leave you to find those.;False;False;;;;1610478337;;False;{};gj12118;False;t3_kvvj7n;False;True;t3_kvvj7n;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj12118/;1610537845;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"The daily demon slayer isn't good post - -Edit: - -[monday post](https://www.reddit.com/r/anime/comments/kusl83/demon_slayer_dissapointed_me/?utm_medium=android_app&utm_source=share) - -[sunday post](https://www.reddit.com/r/anime/comments/kuajof/demon_slayer_kimetsu_no_yaiba/?utm_medium=android_app&utm_source=share) - -[Saturday post](https://www.reddit.com/r/anime/comments/ktmgm9/i_need_help_w_demon_slayer/?utm_medium=android_app&utm_source=share)";False;False;;;;1610478354;;1610478906.0;{};gj122bv;False;t3_kvy774;False;True;t3_kvy774;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj122bv/;1610537867;36;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarRufus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ScarRufus;light;text;t2_2u0vy1pk;False;False;[];;">i don't get why people praise this anime so much. it's too overrated. - -And again, and again, and again...";False;False;;;;1610478367;;False;{};gj123cf;False;t3_kvy774;False;False;t3_kvy774;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj123cf/;1610537883;18;True;False;anime;t5_2qh22;;0;[]; -[];;;bunny-nim;;;[];;;;text;t2_1tu392mq;False;False;[];;because it's true;False;True;;comment score below threshold;;1610478379;;False;{};gj124bx;True;t3_kvy774;False;True;t1_gj122bv;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj124bx/;1610537898;-22;True;False;anime;t5_2qh22;;0;[]; -[];;;Dragon20C;;;[];;;;text;t2_52czm0yn;False;False;[];;All I'm saying is your by yourself, what do you actually like?;False;False;;;;1610478388;;False;{};gj1251f;False;t3_kvy774;False;True;t3_kvy774;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj1251f/;1610537909;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Godprime;;;[];;;;text;t2_dezxafd;False;False;[];;You don’t get why someone who lost his entire family would focus on the remaining family he has left? He’s already grieved for his family, it’s been 2 years, he has to focus on saving his sister.;False;False;;;;1610478389;;False;{};gj12556;False;t3_kvy774;False;False;t3_kvy774;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj12556/;1610537911;7;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;It has like next to zero action though.;False;False;;;;1610478400;;False;{};gj125yu;False;t3_kvx63d;False;True;t1_gj108xo;/r/anime/comments/kvx63d/action_anime_where_mc_is_different_from_others/gj125yu/;1610537923;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bunny-nim;;;[];;;;text;t2_1tu392mq;False;False;[];;anime that is not demon slayer;False;False;;;;1610478456;;False;{};gj12abq;True;t3_kvy774;False;False;t1_gj1251f;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj12abq/;1610537993;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"*sigh* - -Got anything original you wanna add or are you just gonna regurgitate the daily post";False;False;;;;1610478460;;False;{};gj12alh;False;t3_kvy774;False;False;t3_kvy774;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj12alh/;1610537997;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Godprime;;;[];;;;text;t2_dezxafd;False;False;[];;People literally say “this anime ain’t good/ is overhyped” for literally every single anime that has ever existed on the planet.;False;False;;;;1610478483;;False;{};gj12cgz;False;t3_kvy774;False;False;t1_gj124bx;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj12cgz/;1610538026;16;True;False;anime;t5_2qh22;;0;[]; -[];;;bunny-nim;;;[];;;;text;t2_1tu392mq;False;False;[];;hey im new here;False;True;;comment score below threshold;;1610478489;;False;{};gj12cxm;True;t3_kvy774;False;True;t1_gj12alh;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj12cxm/;1610538033;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;Dragon20C;;;[];;;;text;t2_52czm0yn;False;False;[];;Like what one piece, toradora? Exactly what?;False;False;;;;1610478491;;False;{};gj12d4n;False;t3_kvy774;False;False;t1_gj12abq;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj12d4n/;1610538036;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TacoBellIsChipotle;;;[];;;;text;t2_7l9egrg6;False;False;[];;"Thanks for the laugh. Yeah, Demon Slayer is a generic battle shounen, but so are Naruto and One Piece. They're all the same bland formula of talk>battle>talk>power up>repeat with different skins.";False;False;;;;1610478500;;False;{};gj12dsd;False;t3_kvy774;False;True;t3_kvy774;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj12dsd/;1610538047;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;One Piece;False;False;;;;1610478501;;False;{};gj12dw7;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj12dw7/;1610538048;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BRINKLEBURG;;;[];;;;text;t2_799xuttr;False;False;[];;I came to say I like Demon Slayer way more than I like your opinion of it!;False;False;;;;1610478507;;False;{};gj12eco;False;t3_kvy774;False;False;t3_kvy774;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj12eco/;1610538056;6;True;False;anime;t5_2qh22;;0;[]; -[];;;bunny-nim;;;[];;;;text;t2_1tu392mq;False;False;[];;oH. maybe i wasn't paying attention. he waited 2 years?;False;False;;;;1610478512;;False;{};gj12et7;True;t3_kvy774;False;True;t1_gj12556;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj12et7/;1610538064;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610478556;;False;{};gj12i8n;False;t3_kvy774;False;True;t3_kvy774;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj12i8n/;1610538121;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;I watches all 8 seasons of Major, plus the movie between seasons 1 and 2 and the ovas set between seasons 6 and Major 2nd. So I guess there is your answer.;False;False;;;;1610478558;;False;{};gj12ie3;False;t3_kvtohs;False;False;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj12ie3/;1610538123;4;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;It's generic, doesn't mean it's not good. You don't have to reinvent the wheel or discover fire all the time.;False;False;;;;1610478563;;False;{};gj12iuo;False;t3_kvy774;False;False;t3_kvy774;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj12iuo/;1610538131;12;True;False;anime;t5_2qh22;;0;[]; -[];;;JediSnow95;;;[];;;;text;t2_457ejck1;False;False;[];;"I don't care for demon slayer solely because of the art style. I didn't make it past 2 episodes. - -However, to say it isn't good is a bit much. The story, from what I see, is excellent and it's clearly resonated.";False;False;;;;1610478567;;False;{};gj12j4s;False;t3_kvy774;False;True;t3_kvy774;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj12j4s/;1610538135;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bunny-nim;;;[];;;;text;t2_1tu392mq;False;False;[];;exactly those. honestly anything else except demon slayer. can't help not liking it, because i really don't;False;False;;;;1610478609;;False;{};gj12mks;True;t3_kvy774;False;True;t1_gj12d4n;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj12mks/;1610538189;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bunny-nim;;;[];;;;text;t2_1tu392mq;False;False;[];;nah, just demon slayer;False;True;;comment score below threshold;;1610478628;;False;{};gj12o0p;True;t3_kvy774;False;True;t1_gj12cgz;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj12o0p/;1610538212;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;bunny-nim;;;[];;;;text;t2_1tu392mq;False;False;[];;as you should since it's your right;False;False;;;;1610478650;;False;{};gj12ptd;True;t3_kvy774;False;True;t1_gj12eco;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj12ptd/;1610538239;2;True;False;anime;t5_2qh22;;0;[]; -[];;;REDHiiiii5;;;[];;;;text;t2_7f9w5zio;False;False;[];;Finished the entire dragon ball series (OG, Z, GT, and Super);False;False;;;;1610478653;;False;{};gj12pzg;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj12pzg/;1610538242;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Godprime;;;[];;;;text;t2_dezxafd;False;False;[];;What I’m getting here is that you don’t focus on the difference in the culture that the author is creating, and that you aren’t paying attention, and therefore you think that it’s just typical.;False;False;;;;1610478666;;False;{};gj12qyl;False;t3_kvy774;False;False;t1_gj12et7;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj12qyl/;1610538258;9;True;False;anime;t5_2qh22;;0;[]; -[];;;bunny-nim;;;[];;;;text;t2_1tu392mq;False;False;[];;i don't do reddit;False;False;;;;1610478680;;False;{};gj12s4v;True;t3_kvy774;False;True;t1_gj12i8n;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj12s4v/;1610538277;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;HyperPunch;;;[];;;;text;t2_110prs;False;False;[];;This person made 4 posts about the same thing;False;False;;;;1610478693;;False;{};gj12t5i;False;t3_kvy774;False;False;t3_kvy774;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj12t5i/;1610538294;5;True;False;anime;t5_2qh22;;0;[]; -[];;;GoldenDude;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GoldenBoy808;light;text;t2_ay8d1;False;False;[];;One piece;False;False;;;;1610478705;;False;{};gj12u29;False;t3_kvtohs;False;False;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj12u29/;1610538309;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;Agreed. It follows the same recipe as many other shounen but it's not necessarily bad. In addition, it has an above the average animation and art style. The characters are also relatable. It's not a bad experience at ll;False;False;;;;1610478734;;False;{};gj12wc3;False;t3_kvy774;False;False;t1_gj12iuo;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj12wc3/;1610538344;9;True;False;anime;t5_2qh22;;0;[]; -[];;;MarshallLeeVampKing;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MarshallLeeee;light;text;t2_ipaq5;False;False;[];;Akudama Drive. Over the top action and violence, cyberpunk, a heist with a group of criminals, that's as cool as it gets.;False;False;;;;1610478757;;False;{};gj12y0e;False;t3_kvv3dc;False;False;t3_kvv3dc;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj12y0e/;1610538372;4;True;False;anime;t5_2qh22;;0;[]; -[];;;bunny-nim;;;[];;;;text;t2_1tu392mq;False;False;[];;sht how did u know;False;False;;;;1610478780;;False;{};gj12zth;True;t3_kvy774;False;True;t1_gj12t5i;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj12zth/;1610538402;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dragon20C;;;[];;;;text;t2_52czm0yn;False;False;[];;Have you watched all of demon slayer the music is above other animes I seen and the fight scenes are very unique never seen such beautiful animation.;False;False;;;;1610478876;;False;{};gj137f4;False;t3_kvy774;False;True;t1_gj12mks;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj137f4/;1610538523;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bunny-nim;;;[];;;;text;t2_1tu392mq;False;False;[];;i wasn't paying because i thought it was boring/bland;False;True;;comment score below threshold;;1610478906;;False;{};gj139pq;True;t3_kvy774;False;True;t1_gj12qyl;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj139pq/;1610538558;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;lov107;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/lov107;light;text;t2_1kjexo;False;False;[];;I adore the second CCS opening, especially since I didn't expect that I would enjoy any of the openings after Catch You, Catch Me.;False;False;;;;1610478916;;False;{};gj13aih;False;t3_kvuhvx;False;True;t1_gj0ooju;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj13aih/;1610538571;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HyperPunch;;;[];;;;text;t2_110prs;False;False;[];;You can look at other users topics and comments.;False;False;;;;1610478940;;False;{};gj13cf1;False;t3_kvy774;False;False;t1_gj12zth;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj13cf1/;1610538601;5;True;False;anime;t5_2qh22;;0;[]; -[];;;HyperPunch;;;[];;;;text;t2_110prs;False;False;[];;Plus, they tend to show up when you post them a minute or two apart;False;False;;;;1610478963;;False;{};gj13ect;False;t3_kvy774;False;False;t1_gj12zth;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj13ect/;1610538633;6;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"I haven't seen Demon Slayer, so I can't say if it's good or not. But Shounen is a very popular demographic. So if people like Shounens, chances are they will like Demon Slayer or other shounen anime. - -It's fine you don't like it, but don't go around saying it's overrated or wrong to like it. This goes for anything.";False;False;;;;1610478971;;False;{};gj13ez5;False;t3_kvy774;False;False;t3_kvy774;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj13ez5/;1610538642;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Falsus;;;[];;;;text;t2_c6qmw;False;False;[];;The currently airing ''I am a Spider, So What?'' fits pretty well since the MC is a spider and the rest aren't.;False;False;;;;1610478984;;False;{};gj13g41;False;t3_kvx63d;False;True;t3_kvx63d;/r/anime/comments/kvx63d/action_anime_where_mc_is_different_from_others/gj13g41/;1610538662;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bunny-nim;;;[];;;;text;t2_1tu392mq;False;False;[];;yeah i've watched five or less. didn't really make me go for 6th;False;False;;;;1610479022;;False;{};gj13j2z;True;t3_kvy774;False;True;t1_gj137f4;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj13j2z/;1610538712;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;Maybe assume you're not the first person to hate on something?;False;False;;;;1610479066;;False;{};gj13mkd;False;t3_kvy774;False;False;t1_gj12cxm;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj13mkd/;1610538766;6;True;False;anime;t5_2qh22;;0;[]; -[];;;BeneathTheDirt;;;[];;;;text;t2_13hi1t;False;False;[];;One piece;False;False;;;;1610479068;;False;{};gj13mqu;False;t3_kvtohs;False;False;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj13mqu/;1610538770;5;True;False;anime;t5_2qh22;;0;[]; -[];;;bunny-nim;;;[];;;;text;t2_1tu392mq;False;False;[];;it is overrated in my opinion;False;False;;;;1610479093;;False;{};gj13ood;True;t3_kvy774;False;True;t1_gj13ez5;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj13ood/;1610538800;0;True;False;anime;t5_2qh22;;0;[]; -[];;;bunny-nim;;;[];;;;text;t2_1tu392mq;False;False;[];;i don't get you;False;False;;;;1610479122;;False;{};gj13r0r;True;t3_kvy774;False;True;t1_gj13mkd;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj13r0r/;1610538836;0;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Other people liking something you happen to hate, isn't the end of the world. - -Feel free to hate the thing, I'm not telling you to like it. But don't go around bringing negativity to those who like it.";False;False;;;;1610479184;;False;{};gj13vuc;False;t3_kvy774;False;False;t1_gj13r0r;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj13vuc/;1610538913;8;True;False;anime;t5_2qh22;;0;[]; -[];;;digbicks845;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;god ussop;dark;text;t2_12n6ju;False;False;[];;The only arc where I felt the pacing was kinda bad was Dressrosa and even then, I still enjoyed the arc a lot;False;False;;;;1610479218;;False;{};gj13yl9;False;t3_kvtohs;False;True;t1_gj0eci8;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj13yl9/;1610538961;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iFlareMC;;;[];;;;text;t2_ayo9w;False;False;[];;One piece;False;False;;;;1610479233;;False;{};gj13zqs;False;t3_kvtohs;False;False;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj13zqs/;1610538981;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"Nope. All these set up episodes have some sort of meaning and I’m fine with it. - -Also, there’s a high chance that they are gonna do another cour or a movie or something";False;False;;;;1610479253;;False;{};gj141d6;False;t3_kvyhns;False;False;t3_kvyhns;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj141d6/;1610539007;15;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610479274;moderator;False;{};gj14309;False;t3_kvyjrf;False;True;t3_kvyjrf;/r/anime/comments/kvyjrf/help_good_and_legal_anime_sites_on_israel/gj14309/;1610539033;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi shachar_2, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610479274;moderator;False;{};gj14322;False;t3_kvyjrf;False;True;t3_kvyjrf;/r/anime/comments/kvyjrf/help_good_and_legal_anime_sites_on_israel/gj14322/;1610539034;1;False;False;anime;t5_2qh22;;0;[]; -[];;;lov107;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/lov107;light;text;t2_1kjexo;False;False;[];;"[""In My World""](https://openings.ninja/ao-no-exorcist/op/2) from Blue Exorcist - -[""Aoi Hana""](https://openings.ninja/casshern-sins/op/1) from Casshern Sins - -[""Koko Dake no Hanashi""](https://openings.ninja/kuragehime/op/1) from Kuragehime";False;False;;;;1610479275;;False;{};gj1434s;False;t3_kvuhvx;False;True;t3_kvuhvx;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj1434s/;1610539035;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"A show can be both good and overrated. I agree that Demon Slayer isn't this amazing, groundbreaking, once-in-a-lifetime series that it's being hyped as and is making money like. But calling it ""not good"" is selling it way short.";False;False;;;;1610479290;;False;{};gj14485;False;t3_kvy774;False;True;t3_kvy774;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj14485/;1610539053;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;"nothing is filler. Everything has been in the manga. - -They are adapting 2 chapters per episode, so the end of ep 16 should bring us at ch.122. We're either getting a part 2 or a movie afterwards.";False;False;;;;1610479291;;False;{};gj144dx;False;t3_kvyhns;False;False;t3_kvyhns;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj144dx/;1610539055;17;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;Saw the one on Attack on Titan yesterday? Last week? What about every show?;False;False;;;;1610479305;;False;{};gj145g1;False;t3_kvy774;False;False;t1_gj12o0p;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj145g1/;1610539072;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;That's fine, but don't act surprised when fans of the show, argues with you.;False;False;;;;1610479331;;False;{};gj147l8;False;t3_kvy774;False;False;t1_gj13ood;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj147l8/;1610539105;4;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;explain why it's bad, using a different reason than what others have said.;False;False;;;;1610479334;;False;{};gj147s4;False;t3_kvy774;False;True;t1_gj12cxm;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj147s4/;1610539108;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;"I dont think that they are 16 episodes. -16 episodes will cover until the Capter 122 if i am not wrong";False;False;;;;1610479339;;False;{};gj1487q;False;t3_kvyhns;False;True;t3_kvyhns;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1487q/;1610539115;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;"Maybe try taking a break every now & again from anime (or other stuff) it helps. - -Almost 50 and have no plans to ever quit watching anime.";False;False;;;;1610479378;;False;{};gj14bce;False;t3_kvvsse;False;True;t3_kvvsse;/r/anime/comments/kvvsse/has_anyone_else_outgrown_anime_and_gotten_sad/gj14bce/;1610539165;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mindiBobo;;;[];;;;text;t2_7gwhxrkv;False;False;[];;One piece is a 900+ episode juggernaut, that’s an unfair comparison for HxH.;False;False;;;;1610479387;;False;{};gj14c2g;False;t3_kvyhpj;False;False;t3_kvyhpj;/r/anime/comments/kvyhpj/one_piece_vs_hxh_what_are_your_guys_opinions/gj14c2g/;1610539178;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;Newsflash: My MAL isn't up to date. I'm literally still adding shows as I go along.;False;False;;;;1610479442;;False;{};gj14gc6;False;t3_kvwrpm;False;True;t1_gj0vguf;/r/anime/comments/kvwrpm/non_non_biyori_is_much_better_than_yuru_camp/gj14gc6/;1610539248;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ishuzoku-Connoisseur;;;[];;;;text;t2_65qsew7y;False;False;[];;So you want them to skip the story for the action?;False;False;;;;1610479445;;False;{};gj14gmh;False;t3_kvyhns;False;False;t3_kvyhns;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj14gmh/;1610539253;7;True;False;anime;t5_2qh22;;0;[]; -[];;;crixx93;;;[];;;;text;t2_twrpm1;False;False;[];;They've actually cut content too tho. I think this season has been adapted quite well, the anime has done a better job at making you care for the warriors and the people on Marley than the manga. And it's necessary for what's to come. Also, I think most people think there's going to be either a second cour or a movie, because as you said there's no way 16 is enough to adapt ~50 manga chapters;False;False;;;;1610479464;;False;{};gj14i3f;False;t3_kvyhns;False;False;t3_kvyhns;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj14i3f/;1610539279;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;"> But regardless, could you imagine at least getting a little irritated by an anime you love constantly being brought up in tandem with another that you dont? - -I adore Yuru Camp and am meh on Non Non Biyori. But if people want to bring them up in tandem then that's cool. They're fairly different shows that do different things, but there's enough similarities that I can see why people would be into one if they like the other and I'm never going to get irritated because someone likes an anime.";False;False;;;;1610479535;;False;{};gj14ntz;False;t3_kvwrpm;False;True;t1_gj0ycot;/r/anime/comments/kvwrpm/non_non_biyori_is_much_better_than_yuru_camp/gj14ntz/;1610539376;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;So you only want fights and explosion, you should maybe look for some AMV in youtube;False;False;;;;1610479577;;False;{};gj14r91;False;t3_kvyhns;False;False;t3_kvyhns;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj14r91/;1610539430;11;True;False;anime;t5_2qh22;;0;[]; -[];;;bunny-nim;;;[];;;;text;t2_1tu392mq;False;False;[];;other people hating something you happen to like, isn't the end of the world. don't go around dictating how other people should feel about a show;False;False;;;;1610479606;;False;{};gj14tg8;True;t3_kvy774;False;True;t1_gj13vuc;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj14tg8/;1610539464;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;"Is that where the whole ""nice boat"" thing came from?";False;False;;;;1610479626;;False;{};gj14v5j;False;t3_kvvncu;False;True;t3_kvvncu;/r/anime/comments/kvvncu/hopefully_you_guys_can_help_me/gj14v5j/;1610539494;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bunny-nim;;;[];;;;text;t2_1tu392mq;False;False;[];;i love snk for all i know;False;False;;;;1610479639;;False;{};gj14w7h;True;t3_kvy774;False;True;t1_gj145g1;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj14w7h/;1610539524;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;nikos_strlkss;;;[];;;;text;t2_5xhq8iu0;False;False;[];;"If we are talking franchises, then it has to be the entire Yu-Gi-Oh franchise that has 6 series and more than 1000 episodes. - - -One Piece is second with 957 episodes and 1000 chapters if we are counting manga, but manga is much easier to consume than anime.";False;False;;;;1610479643;;False;{};gj14wke;False;t3_kvtohs;False;False;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj14wke/;1610539530;7;True;False;anime;t5_2qh22;;0;[]; -[];;;bunny-nim;;;[];;;;text;t2_1tu392mq;False;False;[];;i guess so;False;False;;;;1610479664;;False;{};gj14y9y;True;t3_kvy774;False;True;t1_gj14485;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj14y9y/;1610539559;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Dragon20C;;;[];;;;text;t2_52czm0yn;False;False;[];;Hmm if your on episode 5 and aren't enjoying it, I guess it's not for everyone;False;False;;;;1610479678;;False;{};gj14zdy;False;t3_kvy774;False;True;t1_gj13j2z;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj14zdy/;1610539577;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bunny-nim;;;[];;;;text;t2_1tu392mq;False;False;[];;i'm not;False;False;;;;1610479680;;False;{};gj14zln;True;t3_kvy774;False;True;t1_gj147l8;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj14zln/;1610539582;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610479702;;1610487637.0;{};gj151al;False;t3_kvwrpm;False;True;t1_gj0vaxu;/r/anime/comments/kvwrpm/non_non_biyori_is_much_better_than_yuru_camp/gj151al/;1610539611;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bunny-nim;;;[];;;;text;t2_1tu392mq;False;False;[];;i'm tired. probably just the same as what others said;False;False;;;;1610479704;;False;{};gj151gl;True;t3_kvy774;False;True;t1_gj147s4;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj151gl/;1610539613;0;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;"If you measure their animes in manga-chapters, after chapter 300, Hunter X Hunter is mostly through its crownstone arc (the Chimera Ant arc) while One Piece just finally finishes Skypiea and moves in the anime onto G-8 (and soon afterword, Water 7.) HxH beats One Piece for that length of time, One Piece is just ""good"" up until that point but once you make it past there One Piece overtakes HxH in leaps and bounds. I rated HxH a 9/10 (and honestly it could falter to a 6/10 or a 7/10 on a rewatch), I rated One Piece a 10/10 on my MAL. HxH's 2011 anime ascends its source material but the story from One Piece is simply better planned and more well thought-out.";False;False;;;;1610479711;;False;{};gj1522d;False;t3_kvyhpj;False;True;t3_kvyhpj;/r/anime/comments/kvyhpj/one_piece_vs_hxh_what_are_your_guys_opinions/gj1522d/;1610539623;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Raptor12225;;;[];;;;text;t2_1174as;False;False;[];;I watched all of naruto and naruto shippuden in like a month skipping all fillers;False;False;;;;1610479729;;False;{};gj153j7;False;t3_kvyn9w;False;True;t3_kvyn9w;/r/anime/comments/kvyn9w/what_is_the_shortest_amount_of_time_you_finished/gj153j7/;1610539647;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;I think the story is perfect. Getting to know the enemy is going to make this war so much more impactfuo;False;False;;;;1610479739;;False;{};gj1548v;False;t3_kvyhns;False;False;t3_kvyhns;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1548v/;1610539659;4;True;False;anime;t5_2qh22;;0;[]; -[];;;OtherHalfling;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/otherhalfling;light;text;t2_di2cu;False;False;[];;It's no secret that this anime isn't going to be over in 16 episodes, so I'm fine with it. I'm sure the final arc will be adapted into a film. Maybe another bundle of episodes, but I think a film would be the way to go.;False;False;;;;1610479748;;False;{};gj1550o;False;t3_kvyhns;False;True;t3_kvyhns;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1550o/;1610539671;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;Blue spring ride for a sol romance anime;False;False;;;;1610479764;;False;{};gj156a2;False;t3_kvxe3m;False;True;t3_kvxe3m;/r/anime/comments/kvxe3m/whats_a_good_shortmedium_anime_to_watch/gj156a2/;1610539692;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bunny-nim;;;[];;;;text;t2_1tu392mq;False;False;[];;i guess. many of us think kny is overrated, but that's okay. don't be pressed fans;False;False;;;;1610479767;;False;{};gj156il;True;t3_kvy774;False;True;t1_gj14zdy;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj156il/;1610539695;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;"There are a TON of anime/video game/movie/TV Show references in Pani Poni Dash. - -So many that when ADV released the DVDs, they had the ADVidnotes to tell you about them.";False;False;;;;1610479769;;False;{};gj156q5;False;t3_kvvj7n;False;True;t3_kvvj7n;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj156q5/;1610539699;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Verzwei;;;[];;;;text;t2_cmzqb;False;False;[];;"If you're in North America, odds are there isn't anywhere to watch it legally. - -Sentai Filmworks had the license, produced a dub, and I think it was streaming on HiDive. However, the license expired. It's an Aniplex show from before Aniplex USA made serious attempts to push into our market, and there's a history of sub-licensing companies losing the license to content they dubbed and distributed so that the show ownership reverts to Aniplex. Then Aniplex shoves the show up its own ass, never to see the light of day again.";False;False;;;;1610479789;;False;{};gj158as;False;t3_kvv3u3;False;True;t3_kvv3u3;/r/anime/comments/kvv3u3/where_can_i_watch_inu_x_boku/gj158as/;1610539724;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;"Ristorante Paradisio - -Master Keaton (kinda)";False;False;;;;1610479871;;False;{};gj15ewh;False;t3_kvvb2i;False;True;t3_kvvb2i;/r/anime/comments/kvvb2i/looking_for_sliceofliferomance_anime_with_adult/gj15ewh/;1610539829;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610479886;;False;{};gj15g2x;False;t3_kvyn9w;False;True;t3_kvyn9w;/r/anime/comments/kvyn9w/what_is_the_shortest_amount_of_time_you_finished/gj15g2x/;1610539848;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Raptor12225;;;[];;;;text;t2_1174as;False;False;[];;Bro this show isnt only epic titan duels it has a story too...;False;False;;;;1610479908;;1610480135.0;{};gj15hu2;False;t3_kvyhns;False;False;t3_kvyhns;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj15hu2/;1610539876;7;True;False;anime;t5_2qh22;;0;[]; -[];;;a-breathing-potato;;;[];;;;text;t2_9lrhsixc;False;False;[];;3 months. One Piece (Episode 1 to 940+);False;False;;;;1610479938;;False;{};gj15k8a;False;t3_kvyn9w;False;False;t3_kvyn9w;/r/anime/comments/kvyn9w/what_is_the_shortest_amount_of_time_you_finished/gj15k8a/;1610539916;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Cyclone_96;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CrazyCyclone96;light;text;t2_es52y62;False;False;[];;The fuck? Is it actually 66% filler?;False;False;;;;1610480012;;False;{};gj15q26;False;t3_kvtohs;False;True;t1_gj0knex;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj15q26/;1610540014;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AllTsunAndNoDere;;;[];;;;text;t2_91hut0q;False;False;[];;" -Fune wo Amu - -Saraiya Goyou - -Uchouten Kazoku";False;False;;;;1610480033;;False;{};gj15rot;False;t3_kvuuvc;False;True;t3_kvuuvc;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj15rot/;1610540040;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;I'm not dictating, but bringing negativity isn't good.;False;False;;;;1610480052;;False;{};gj15t8u;False;t3_kvy774;False;False;t1_gj14tg8;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj15t8u/;1610540066;4;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;"Kamichu - -The Third The Girl With The Blue Eye - -Kurau Phantom Memory - -Coyote Ragtime Show";False;False;;;;1610480124;;False;{};gj15yzf;False;t3_kvuuvc;False;True;t3_kvuuvc;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj15yzf/;1610540159;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610480243;;False;{};gj168cm;False;t3_kvyjrf;False;True;t3_kvyjrf;/r/anime/comments/kvyjrf/help_good_and_legal_anime_sites_on_israel/gj168cm/;1610540310;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610480304;moderator;False;{};gj16db4;False;t3_kvywte;False;True;t3_kvywte;/r/anime/comments/kvywte/im_looking_for_something_to_watch/gj16db4/;1610540401;1;False;False;anime;t5_2qh22;;0;[]; -[];;;bunny-nim;;;[];;;;text;t2_1tu392mq;False;False;[];;or are you just mad that someone else doesn't like what u like;False;False;;;;1610480356;;False;{};gj16hcz;True;t3_kvy774;False;True;t1_gj15t8u;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj16hcz/;1610540473;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;PPGN_DM_Exia;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PPGN_DM_Exia;light;text;t2_rzaut;False;False;[];;I've always had a soft spot for this short, despite not really getting all nuances since I've never been to Japan. Still happy to see more of it though!;False;False;;;;1610480378;;False;{};gj16j16;False;t3_kvvbaw;False;True;t3_kvvbaw;/r/anime/comments/kvvbaw/yatogamechan_kansatsu_nikki_sansatsume_episode_1/gj16j16/;1610540506;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610480422;;False;{};gj16ml6;False;t3_kvyjrf;False;True;t3_kvyjrf;/r/anime/comments/kvyjrf/help_good_and_legal_anime_sites_on_israel/gj16ml6/;1610540575;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shachar_2;;;[];;;;text;t2_5c8ywc23;False;False;[];;You dont get ban for using vpn?;False;False;;;;1610480447;;False;{};gj16ojh;True;t3_kvyjrf;False;True;t1_gj168cm;/r/anime/comments/kvyjrf/help_good_and_legal_anime_sites_on_israel/gj16ojh/;1610540607;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"I haven't even watched Demon Slayer, so you can't say I'm a fan of it. - -Why bring negativity to anything? Dislike whatever it is you dislike but don't bring it to other people.";False;False;;;;1610480460;;False;{};gj16po8;False;t3_kvy774;False;False;t1_gj16hcz;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj16po8/;1610540633;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;Decent rule of cool series, yeah its pretty cool;False;False;;;;1610480481;;False;{};gj16rbj;True;t3_kvv3dc;False;True;t1_gj12y0e;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj16rbj/;1610540663;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;"doubtful who knows. - -not like you can access it anyways. so if you're banned, then you are right where you started anyways.";False;False;;;;1610480523;;False;{};gj16uoc;False;t3_kvyjrf;False;True;t1_gj16ojh;/r/anime/comments/kvyjrf/help_good_and_legal_anime_sites_on_israel/gj16uoc/;1610540735;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fanceepance;;;[];;;;text;t2_rfxjd;False;False;[];;"Senki Zesshou Symphogear - -Characters can summon armor and weapons to fight with through a crystal they keep on a necklace, but the MC's crystal is lodged in their chest next to their heart, which causes a variety of changes that nobody else gets, including particularly explosive power. - -In addition, everyone can summon weapons to fight with, but the MC can't, so they use their bare fists and martial arts over actual weaponry.";False;False;;;;1610480581;;False;{};gj16z85;False;t3_kvx63d;False;True;t3_kvx63d;/r/anime/comments/kvx63d/action_anime_where_mc_is_different_from_others/gj16z85/;1610540818;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bunny-nim;;;[];;;;text;t2_1tu392mq;False;False;[];;"if you think i'm bringing negativity then i'm sorry you took it the wrong way,, but i'm just one of those daily ""kny is overrated post"" gosh. i thought reddit was for discussions and such";False;True;;comment score below threshold;;1610480584;;False;{};gj16zh2;True;t3_kvy774;False;True;t1_gj16po8;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj16zh2/;1610540822;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;It is, but not the same thing over and over again. Bring something new to the conversation here. There's a new post like this every week pretty much.;False;False;;;;1610480644;;False;{};gj17423;False;t3_kvy774;False;True;t1_gj16zh2;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj17423/;1610540901;3;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;It has a passable story and decent characters (for the most part) and then you add in great art and animation. The story isn't going to blow anyone away, but added up all together it's a fun show and worth the watch.;False;False;;;;1610480663;;False;{};gj175j3;False;t3_kvy774;False;True;t3_kvy774;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj175j3/;1610540926;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rotten_riot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RottenOrange/;light;text;t2_20f93nxp;False;False;[];;Was it good? I'm thinking of giving this a chance if episode 2 of Gekidol is as boring as episode 1;False;False;;;;1610480683;;False;{};gj17740;False;t3_kvvrbd;False;True;t3_kvvrbd;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj17740/;1610540953;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TurtleKing0505;;;[];;;;text;t2_3ffemzax;False;False;[];;HxH has much better pacing;False;False;;;;1610480703;;False;{};gj178o4;False;t3_kvyhpj;False;True;t3_kvyhpj;/r/anime/comments/kvyhpj/one_piece_vs_hxh_what_are_your_guys_opinions/gj178o4/;1610540980;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TurtleKing0505;;;[];;;;text;t2_3ffemzax;False;False;[];;Killua might win because of how Nen works.;False;False;;;;1610480757;;False;{};gj17cwk;False;t3_kvxo9f;False;True;t3_kvxo9f;/r/anime/comments/kvxo9f/killua_hunter_x_hunter_vs_korosensei/gj17cwk/;1610541060;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Meru-sensei;;;[];;;;text;t2_9rtlid2l;False;False;[];;Is this a new anime or something different ?;False;False;;;;1610480775;;False;{};gj17eda;False;t3_kvy774;False;True;t3_kvy774;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj17eda/;1610541085;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Koozzie;;;[];;;;text;t2_8j92z;False;False;[];;I really wish they had kept up the English dub. I love this show;False;False;;;;1610480855;;False;{};gj17krq;False;t3_kvtohs;False;True;t1_gj0alv2;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj17krq/;1610541204;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;[https://myanimelist.net/anime/37302/Kemurikusa\_TV](https://myanimelist.net/anime/37302/Kemurikusa_TV) not 100, but less than 7000 votes on MAL is pretty low?;False;False;;;;1610480868;;False;{};gj17lrt;False;t3_kvz2s9;False;True;t3_kvz2s9;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj17lrt/;1610541221;5;True;False;anime;t5_2qh22;;0;[]; -[];;;dietanxiety;;;[];;;;text;t2_3lbnqz88;False;False;[];;I also started and finished Hunter x Hunter (2011) in a week and some change. Then immediately rewatched my favorite arcs lmao.;False;False;;;;1610480910;;False;{};gj17p0y;False;t3_kvyn9w;False;True;t3_kvyn9w;/r/anime/comments/kvyn9w/what_is_the_shortest_amount_of_time_you_finished/gj17p0y/;1610541275;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Septaluna;;;[];;;;text;t2_7wai0fs4;False;False;[];;"Oh no why so short, this is already so amazing ;\_\_\_\_\_\_\_\_\_\_;";False;False;;;;1610480921;;False;{};gj17pvt;False;t3_kvvrbd;False;False;t3_kvvrbd;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj17pvt/;1610541290;22;True;False;anime;t5_2qh22;;0;[]; -[];;;shachar_2;;;[];;;;text;t2_5c8ywc23;False;False;[];;I think i will buy crunchy roll premium and watch the shows from pirated sites;False;False;;;;1610480939;;False;{};gj17rd2;True;t3_kvyjrf;False;True;t1_gj16uoc;/r/anime/comments/kvyjrf/help_good_and_legal_anime_sites_on_israel/gj17rd2/;1610541315;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheWrittenLore;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Traynjos000;light;text;t2_ouc2a;False;False;[];;Yes, it is good. Well the first episode was really good. I am enjoying it a lot.;False;False;;;;1610480975;;False;{};gj17u4f;False;t3_kvvrbd;False;False;t1_gj17740;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj17u4f/;1610541364;32;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;"lol why even bother buying CR premium then? - -if you wanna support the community, you're better off buying the manga of shows you like, or other legally trademarked merch than supporting crunchyroll.";False;False;;;;1610481007;;False;{};gj17wp2;False;t3_kvyjrf;False;True;t1_gj17rd2;/r/anime/comments/kvyjrf/help_good_and_legal_anime_sites_on_israel/gj17wp2/;1610541412;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bunny-nim;;;[];;;;text;t2_1tu392mq;False;False;[];;well here's news. i don't know whether it is new or isn't, and i don't care. you can choose to not care. please go along;False;False;;;;1610481011;;False;{};gj17wzf;True;t3_kvy774;False;True;t1_gj17423;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj17wzf/;1610541417;0;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;You should definitely check it out, episode 1 was great.;False;False;;;;1610481016;;1610482586.0;{};gj17xe1;False;t3_kvvrbd;False;False;t1_gj17740;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj17xe1/;1610541427;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ctrl_alt-account_del;;;[];;;;text;t2_wnd079s;False;False;[];;I have no interest in either.;False;False;;;;1610481049;;False;{};gj17zxw;False;t3_kvyhpj;False;True;t3_kvyhpj;/r/anime/comments/kvyhpj/one_piece_vs_hxh_what_are_your_guys_opinions/gj17zxw/;1610541471;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;-milkymallow-;;;[];;;;text;t2_7mla035c;False;False;[];;Definitely! It has one of the strongest first episodes I've seen in a while;False;False;;;;1610481056;;False;{};gj180ir;False;t3_kvvrbd;False;False;t1_gj17740;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj180ir/;1610541481;23;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your submission has been removed. - -- [Here's our list of legal streaming options around the world](https://www.reddit.com/r/anime/wiki/legal_streams?utm_source=reddit&utm_medium=usertext&utm_name=anime&utm_content=t1_gj14322). Hopefully you can find something in your area. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610481058;moderator;False;{};gj180on;False;t3_kvyjrf;False;True;t3_kvyjrf;/r/anime/comments/kvyjrf/help_good_and_legal_anime_sites_on_israel/gj180on/;1610541484;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shachar_2;;;[];;;;text;t2_5c8ywc23;False;False;[];;I dont want to feel like i am stealing;False;False;;;;1610481072;;False;{};gj181sq;True;t3_kvyjrf;False;True;t1_gj17wp2;/r/anime/comments/kvyjrf/help_good_and_legal_anime_sites_on_israel/gj181sq/;1610541502;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheimmortalGuyofDoom;;;[];;;;text;t2_5j4awyff;False;False;[];;Maybe Saekano, How to raise a boring girlfriend. Just because I've never heard of it in the internet, I just got it through the crunchyroll front page;False;False;;;;1610481073;;False;{};gj181v2;False;t3_kvz2s9;False;True;t3_kvz2s9;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj181v2/;1610541503;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;"also, crunchyroll premium only gives you access to what they have license for, while pirate sites generally have everything, so theres a strong chance a lot of the shows you are ""pirating"" arent even on crunchyroll.";False;False;;;;1610481081;;False;{};gj182hj;False;t3_kvyjrf;False;True;t1_gj17rd2;/r/anime/comments/kvyjrf/help_good_and_legal_anime_sites_on_israel/gj182hj/;1610541515;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Raptor12225;;;[];;;;text;t2_1174as;False;False;[];;"Steins;gate first like 8 ish episodes are kinda slow but after that it becomes super good";False;False;;;;1610481135;;False;{};gj186x8;False;t3_kvxe3m;False;True;t3_kvxe3m;/r/anime/comments/kvxe3m/whats_a_good_shortmedium_anime_to_watch/gj186x8/;1610541594;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610481161;moderator;False;{};gj188zz;False;t3_kvz7jx;False;True;t3_kvz7jx;/r/anime/comments/kvz7jx/i_dont_want_to_seem_like_a_creep/gj188zz/;1610541632;1;False;False;anime;t5_2qh22;;0;[]; -[];;;ctrl_alt-account_del;;;[];;;;text;t2_wnd079s;False;False;[];;Drink!;False;False;;;;1610481189;;False;{};gj18b91;False;t3_kvy774;False;False;t3_kvy774;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj18b91/;1610541676;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shachar_2;;;[];;;;text;t2_5c8ywc23;False;False;[];;I know, this is why i am asking for good legal sites but there is not any legal site on israel that is having good library;False;False;;;;1610481224;;False;{};gj18e1u;True;t3_kvyjrf;False;True;t1_gj182hj;/r/anime/comments/kvyjrf/help_good_and_legal_anime_sites_on_israel/gj18e1u/;1610541728;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;Fine then. Don't get upset when people downvote you because they disagree. (Which by the way, I don't like downvoting people, and tend not to).;False;False;;;;1610481235;;False;{};gj18evn;False;t3_kvy774;False;False;t1_gj17wzf;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj18evn/;1610541744;2;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your submission has been removed. - -- It's fictional, so long as you aren't out there actively trying to have sex with children, you're fine. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610481252;moderator;False;{};gj18g9d;False;t3_kvz7jx;False;True;t3_kvz7jx;/r/anime/comments/kvz7jx/i_dont_want_to_seem_like_a_creep/gj18g9d/;1610541770;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;Eternal Family;False;False;;;;1610481296;;False;{};gj18jpm;False;t3_kvz2s9;False;True;t3_kvz2s9;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj18jpm/;1610541831;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Spade-Demon;;;[];;;;text;t2_5tkn0i2y;False;False;[];;I’d take One piece over Hunter X Hunter both in the anime as well as the manga.;False;False;;;;1610481300;;False;{};gj18k0z;False;t3_kvyhpj;False;True;t3_kvyhpj;/r/anime/comments/kvyhpj/one_piece_vs_hxh_what_are_your_guys_opinions/gj18k0z/;1610541836;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GUMBALL064;;;[];;;;text;t2_27szhe1;False;False;[];;Hentai (the anime not hentai in general);False;False;;;;1610481351;;False;{};gj18o5c;False;t3_kvz2s9;False;True;t3_kvz2s9;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj18o5c/;1610541907;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Eazydoesit88;;;[];;;;text;t2_507pyn1j;False;False;[];;Time to the shows I nominate your lie in April currently on Netflix I believe.;False;False;;;;1610481354;;False;{};gj18obf;False;t3_kvtp2s;False;True;t3_kvtp2s;/r/anime/comments/kvtp2s/so_today_i_have_watched_a_silent_voice_your_name/gj18obf/;1610541911;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610481399;;False;{};gj18rtm;False;t3_kvz2s9;False;True;t3_kvz2s9;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj18rtm/;1610541972;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Eazydoesit88;;;[];;;;text;t2_507pyn1j;False;False;[];;Every episode has like 4 minute recaps later on.;False;False;;;;1610481464;;False;{};gj18wwx;False;t3_kvtohs;False;True;t1_gj0ddn9;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj18wwx/;1610542064;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Miidas-92;;MAL;[];;https://myanimelist.net/profile/Miidas;dark;text;t2_ja1jx;False;False;[];;"None. I'm pretty sure that even the most obscure short I've seen, have been seen by more than 100 people. - -""H'or Cafe"" is the most obscure I consider great, with just 167 members on Myanimelist, but it got 1000+ likes on Vimeo, so MAL-members doesn't really say much.";False;False;;;;1610481588;;False;{};gj196ps;False;t3_kvz2s9;False;True;t3_kvz2s9;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj196ps/;1610542252;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;200k votes on MAL;False;False;;;;1610481642;;False;{};gj19b0n;False;t3_kvz2s9;False;False;t1_gj181v2;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj19b0n/;1610542332;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Blabime;;MAL;[];;http://myanimelist.net/animelist/Blabime;dark;text;t2_tzap8;False;False;[];;"At the time of watching Penguin's Memory, it only had 82 ratings, but it's gone up since: https://myanimelist.net/anime/16434/Penguins_Memory__Shiawase_Monogatari - -And just this weekend I watched https://myanimelist.net/anime/33195/Shi_Wan_Ge_Leng_Xiaohua_Movie_1";False;False;;;;1610481649;;False;{};gj19bj2;False;t3_kvz2s9;False;True;t3_kvz2s9;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj19bj2/;1610542342;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dietanxiety;;;[];;;;text;t2_3lbnqz88;False;False;[];;came here to say this;False;False;;;;1610481674;;False;{};gj19dgu;False;t3_kvvj7n;False;True;t1_gj0lf7b;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj19dgu/;1610542376;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;Drink!;False;False;;;;1610481720;;False;{};gj19h1d;False;t3_kvy774;False;True;t3_kvy774;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj19h1d/;1610542438;1;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;"I second Wolf Children. Incredibly touching movie about a perfect mother who tries very hard. - -Weathering With You for more of the Your Name-style romantic directing. - -Sea of Children is bar none the most visually impressive animated *anything* of all time and it's not even close. It'll confuse you about as much as it'll make you cry. While there is sadness, I think you'd be more likely to cry from the beauty of it all.";False;False;;;;1610481761;;False;{};gj19k8u;False;t3_kvtp2s;False;False;t3_kvtp2s;/r/anime/comments/kvtp2s/so_today_i_have_watched_a_silent_voice_your_name/gj19k8u/;1610542495;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;Time is a flat circle. He sees you. You are in Carcosa now.;False;False;;;;1610481777;;False;{};gj19lh4;False;t3_kvy774;False;True;t1_gj123cf;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj19lh4/;1610542515;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rorate_Caeli;;;[];;;;text;t2_qw271;False;False;[];;baby steps;False;False;;;;1610482066;;False;{};gj1a877;False;t3_kvz2s9;False;True;t3_kvz2s9;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1a877/;1610542944;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RIP_Hopscotch;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RiPHopscotch/animelist;light;text;t2_qblus;False;False;[];;"I mean Yuru Camp isn't really the kind of comedy to make you laugh hard, just smile or chuckle. Non Non Biyori has much more conventional jokes with payoffs with the intent to get that kind of laughter. Comparing the two in terms of comedic value doesn't make a whole lot of sense. - -With that being said, I personally think the main difference between the two is the pacing. It feels weird to call Yuru Camp ""fast paced"", because really its anything but that, but compared to NNB it is. Yuru Camp isn't afraid to let a scene go a little long or keep the dialogue sparse, but in basically every scene something is happening. Non Non Biyori, on the other hand, is an *incredibly* slow burn - I mean just the first episode of the most recent season spent several minutes on an opening shot that was literally just the countryside. I can appreciate what NNB is going for, but on the other hand shows like Yuru Camp, and even K-On!, are much better at keeping my level of engagement high. To me thats kind of important, and is why I would put those shows over Non Non Biyori. It also doesn't seem like you finished Yuru Camp, so to be honest I don't get why you're making bold claims about how a show you clearly love is definitively better than a show you dropped - like of course you'd feel that way.";False;False;;;;1610482076;;False;{};gj1a8zs;False;t3_kvwrpm;False;True;t3_kvwrpm;/r/anime/comments/kvwrpm/non_non_biyori_is_much_better_than_yuru_camp/gj1a8zs/;1610542960;1;True;False;anime;t5_2qh22;;0;[]; -[];;;playdoughepic12;;;[];;;;text;t2_7okquoqc;False;False;[];;Welcome to the nhk;False;False;;;;1610482140;;False;{};gj1ae2l;False;t3_kvz2s9;False;True;t3_kvz2s9;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1ae2l/;1610543057;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;aes110;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aes110;light;text;t2_jj27q;False;True;[];;"Dragon ball Z + super + gt = 486 or -Yugioh + gx = 404 -Digimon (so far, as the new one is still running) = 286 - -All of those also have many movies";False;False;;;;1610482145;;False;{};gj1aehw;False;t3_kvtohs;False;False;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1aehw/;1610543066;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rorate_Caeli;;;[];;;;text;t2_qw271;False;False;[];;Not at all;False;False;;;;1610482165;;False;{};gj1ag2o;False;t3_kvyhns;False;True;t3_kvyhns;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1ag2o/;1610543095;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Insane1s;;;[];;;;text;t2_31id7qd;False;False;[];;ep 159 came out today FYI;False;False;;;;1610482299;;False;{};gj1aqk1;False;t3_kvx63d;False;True;t1_gj0yrl9;/r/anime/comments/kvx63d/action_anime_where_mc_is_different_from_others/gj1aqk1/;1610543300;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ShyIock04;;;[];;;;text;t2_6ih6reac;False;False;[];;Kaiji;False;False;;;;1610482352;;False;{};gj1auoc;False;t3_kvz2s9;False;True;t3_kvz2s9;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1auoc/;1610543378;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;KrzyDankus;;;[];;;;text;t2_146zps;False;False;[];;if theres gonna be a film, it would adapt about 17 chapters and i feel like you are gonna have to skip a lot of stuff;False;False;;;;1610482374;;False;{};gj1awbf;False;t3_kvyhns;False;True;t1_gj1550o;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1awbf/;1610543410;2;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Hmm, maybe Freezing? I never really hear/see anyone talking about that anime. Freezing is one of those shows where I got invested in the characters enough to finish it, which is unusual for me given how I have issues handling [Freezing spoilers](/s ""psychological and sexual assault/rape story elements"") but, I liked the two main characters enough to push through the whole thing.";False;False;;;;1610482377;;False;{};gj1awlk;False;t3_kvz2s9;False;False;t3_kvz2s9;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1awlk/;1610543415;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Equivalent_Bear_3082;;;[];;;;text;t2_948d7iwa;False;False;[];;"2 months:one piece -Four days:aot s1-s3p2";False;False;;;;1610482433;;False;{};gj1b0we;False;t3_kvyn9w;False;True;t3_kvyn9w;/r/anime/comments/kvyn9w/what_is_the_shortest_amount_of_time_you_finished/gj1b0we/;1610543495;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pedromentales;;;[];;;;text;t2_3f5bjln6;False;False;[];;I still haven’t met a soul who knows what the hell a “Yurumates” is.;False;False;;;;1610482530;;False;{};gj1b8j7;False;t3_kvz2s9;False;True;t3_kvz2s9;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1b8j7/;1610543644;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aztecaoro10;;;[];;;;text;t2_1oj0my0f;False;False;[];;What's a cour? I'm just hoping the ending is great and doesn't leave us sick like GoT! Also, there's rumors there might be a movie!?? :O;False;True;;comment score below threshold;;1610482559;;False;{};gj1bavx;True;t3_kvyhns;False;True;t1_gj141d6;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1bavx/;1610543685;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;tailor31415;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/tailor31415;light;text;t2_zr3cx;False;False;[];;Silent Service is probably my lowest viewer count one. maybe Locke the Superman or Dan Doh.;False;False;;;;1610482583;;False;{};gj1bcs0;False;t3_kvz2s9;False;True;t3_kvz2s9;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1bcs0/;1610543716;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aztecaoro10;;;[];;;;text;t2_1oj0my0f;False;False;[];;I guess I'm mad bc I want to see our main squad! Fuck the Marley people, idc about them 😂;False;True;;comment score below threshold;;1610482600;;False;{};gj1be2z;True;t3_kvyhns;False;True;t1_gj144dx;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1be2z/;1610543739;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;False;[];;The Legend of Legendary Heroes. I do not think I have ever seen anyone other than myself bring it up here on r/anime or any other forums I occasionally go to. Yet its popularity ranking on MAL would suggest otherwise.;False;False;;;;1610482608;;False;{};gj1berj;False;t3_kvz2s9;False;True;t3_kvz2s9;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1berj/;1610543751;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Rorate_Caeli;;;[];;;;text;t2_qw271;False;False;[];;cool story bro;False;False;;;;1610482614;;False;{};gj1bf66;False;t3_kvy774;False;True;t3_kvy774;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj1bf66/;1610543758;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aztecaoro10;;;[];;;;text;t2_1oj0my0f;False;False;[];;Ofc not. But there's been a lot of pointless scenes.;False;False;;;;1610482624;;False;{};gj1bfye;True;t3_kvyhns;False;True;t1_gj14r91;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1bfye/;1610543773;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;aztecaoro10;;;[];;;;text;t2_1oj0my0f;False;False;[];;No, just a better job at telling the story without wasting epsidoes.;False;False;;;;1610482650;;False;{};gj1bi1p;True;t3_kvyhns;False;False;t1_gj14gmh;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1bi1p/;1610543811;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mrtheliger;;;[];;;;text;t2_11ghbg;False;False;[];;I'm reeeaallly considering getting funimation for the next three months so I don't have to be a week behind on this. Somehow it ended up being my most anticipated Non-Sequel of the season;False;False;;;;1610482666;;False;{};gj1bj76;False;t3_kvvrbd;False;False;t3_kvvrbd;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj1bj76/;1610543831;20;True;False;anime;t5_2qh22;;0;[]; -[];;;illyme;;;[];;;;text;t2_q1b0f;False;False;[];;Should one watch Hibike Euphonium before watching liz to aoi tori?;False;False;;;;1610482679;;False;{};gj1bk95;False;t3_kvtp2s;False;True;t1_gj0wzko;/r/anime/comments/kvtp2s/so_today_i_have_watched_a_silent_voice_your_name/gj1bk95/;1610543851;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tripl35oul;;;[];;;;text;t2_btm7t;False;False;[];;Fairy Tail for however long the anime ran. I also watched One Piece but only up until like episode 200 or so.;False;False;;;;1610482682;;False;{};gj1bkgb;False;t3_kvtohs;False;False;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1bkgb/;1610543855;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aztecaoro10;;;[];;;;text;t2_1oj0my0f;False;False;[];;I'm really hoping they don't blow it like GoT!;False;False;;;;1610482683;;False;{};gj1bki1;True;t3_kvyhns;False;False;t1_gj14i3f;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1bki1/;1610543855;0;True;False;anime;t5_2qh22;;0;[]; -[];;;aztecaoro10;;;[];;;;text;t2_1oj0my0f;False;False;[];;I know that, but it's been hard to watch since it's new people I don't care about. Like where's our squad at :(;False;False;;;;1610482714;;False;{};gj1bmxz;True;t3_kvyhns;False;False;t1_gj15hu2;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1bmxz/;1610543897;1;True;False;anime;t5_2qh22;;0;[]; -[];;;A_kirE;;;[];;;;text;t2_8mklskhy;False;False;[];;keppeki danshi! aoyama-kun;False;False;;;;1610482755;;False;{};gj1bq66;False;t3_kvz2s9;False;True;t3_kvz2s9;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1bq66/;1610543955;1;True;False;anime;t5_2qh22;;0;[]; -[];;;luckystarr;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;made you look;light;text;t2_3ew0g;False;False;[];;Sword Art Online. It had 4 seasons.;False;False;;;;1610482758;;False;{};gj1bqej;False;t3_kvtohs;False;False;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1bqej/;1610543960;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aztecaoro10;;;[];;;;text;t2_1oj0my0f;False;False;[];;They've totally changed the theme of the show. Idk how I feel about it so far!;False;False;;;;1610482760;;False;{};gj1bqkg;True;t3_kvyhns;False;True;t1_gj1548v;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1bqkg/;1610543962;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TheIndianJedi;;;[];;;;text;t2_syeg1;False;False;[];;Check out Redline. Very underrated movie with some of the best animation and art-style.;False;False;;;;1610482778;;False;{};gj1bryu;False;t3_kvtp2s;False;True;t3_kvtp2s;/r/anime/comments/kvtp2s/so_today_i_have_watched_a_silent_voice_your_name/gj1bryu/;1610543989;1;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;"**Longest anime watched at least one episode of:** - -One Piece - watched the first episode - -If franchises count, then Pokémon, which has over a thousand - I watched a few hundred growing up. - -**Most episodes watched of a single anime:** - -If franchises don't count, it's Dragon Ball Z, which has 291 episodes that I watched most of growing up. - -If franchises count, it's either the Dragon Ball franchise or the Pokémon franchise. - -**Longest anime that I'm caught up with:** - -First place is Hajime no Ippo at 76 episodes. - -Second place is Hikaru no Go at 75 episodes. - -Third place is a tie between Fullmetal Alchemist Brotherhood and Attack on Titan at 64 episodes.";False;False;;;;1610482785;;1610491854.0;{};gj1bskp;False;t3_kvtohs;False;False;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1bskp/;1610543999;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aztecaoro10;;;[];;;;text;t2_1oj0my0f;False;False;[];;As long as it has a great ending I'm fine with another season or movie!;False;False;;;;1610482790;;False;{};gj1bsx3;True;t3_kvyhns;False;True;t1_gj1550o;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1bsx3/;1610544005;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;For me, Attack On Titan had gotten better and better with time. I thought season 1 was good but nothing that great. I much prefer the political and philosophical discussion that AoT provides rather than the cool action, although the action is great as well;False;False;;;;1610482826;;False;{};gj1bvqj;False;t3_kvyhns;False;False;t1_gj1bqkg;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1bvqj/;1610544060;3;True;False;anime;t5_2qh22;;0;[]; -[];;;aztecaoro10;;;[];;;;text;t2_1oj0my0f;False;False;[];;So you're loving season 4 so far?;False;False;;;;1610482848;;False;{};gj1bxib;True;t3_kvyhns;False;True;t1_gj1ag2o;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1bxib/;1610544094;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UndeadLite;;;[];;;;text;t2_5sr19u02;False;False;[];;hxh;False;False;;;;1610482873;;False;{};gj1bzfk;False;t3_kvyhpj;False;True;t3_kvyhpj;/r/anime/comments/kvyhpj/one_piece_vs_hxh_what_are_your_guys_opinions/gj1bzfk/;1610544128;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Apptendo;;MAL;[];;http://myanimelist.net/animelist/Apptendo;dark;text;t2_4ct0a;False;False;[];;"Completed - Urusei Yatsura, 195 episodes - -Uncompleted - One Piece currently at 325 episodes";False;False;;;;1610482878;;False;{};gj1bzuz;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1bzuz/;1610544136;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PeRvYSaGe21;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PeRvYSaGe219428;light;text;t2_qnawi;False;False;[];;One Piece;False;False;;;;1610482889;;False;{};gj1c0qi;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1c0qi/;1610544152;1;True;False;anime;t5_2qh22;;0;[]; -[];;;A_kirE;;;[];;;;text;t2_8mklskhy;False;False;[];;2-3 weeks every episodes of gintama which is 350 i guess (i skipped some episodes);False;False;;;;1610482909;;False;{};gj1c2al;False;t3_kvyn9w;False;True;t3_kvyn9w;/r/anime/comments/kvyn9w/what_is_the_shortest_amount_of_time_you_finished/gj1c2al/;1610544180;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;"This is setting up the final arc, it takes a bit of time and is there to show you the other side to this war, their motivations and everything. - - -Showing you that this war isn't as black and white as ""They're all evil"".";False;False;;;;1610482937;;False;{};gj1c4h0;False;t3_kvyhns;False;False;t1_gj1bi1p;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1c4h0/;1610544219;4;True;False;anime;t5_2qh22;;0;[]; -[];;;aztecaoro10;;;[];;;;text;t2_1oj0my0f;False;False;[];;I agree. Each season AoT improved 💯. But this season has incorporated some weird jokes and scenes we've never seen so far. Like in episode 4 when an older random guy was heckling one of the Titan candidates and then a random older women and the guy start yapping. So random and different;False;False;;;;1610482941;;False;{};gj1c4qh;True;t3_kvyhns;False;False;t1_gj1bvqj;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1c4qh/;1610544224;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;MisterYo27;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/RAMYOZI;dark;text;t2_1h4cwgft;False;False;[];;cap;False;False;;;;1610483013;;False;{};gj1cahj;False;t3_kvz2s9;False;True;t1_gj1auoc;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1cahj/;1610544346;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;It may be typical shounen, but it's still more popular than typical shounen.;False;False;;;;1610483034;;False;{};gj1cc4o;False;t3_kvy774;False;True;t3_kvy774;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj1cc4o/;1610544378;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;Which ones ?;False;False;;;;1610483042;;False;{};gj1ccte;False;t3_kvyhns;False;False;t1_gj1bfye;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1ccte/;1610544391;4;True;False;anime;t5_2qh22;;0;[]; -[];;;FineCarpa;;;[];;;;text;t2_1h1h0tt3;False;False;[];;"Phantom: Requiem for the Phantom - -Kinda…";False;False;;;;1610483053;;False;{};gj1cdns;False;t3_kvywte;False;True;t3_kvywte;/r/anime/comments/kvywte/im_looking_for_something_to_watch/gj1cdns/;1610544410;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610483122;;False;{};gj1cj2c;False;t3_kvwrpm;False;True;t1_gj1a8zs;/r/anime/comments/kvwrpm/non_non_biyori_is_much_better_than_yuru_camp/gj1cj2c/;1610544514;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;A cour is a set of around 10-13 episodes usually, We are likely to get another cour for the finale season since they won't be able to adapt what's left in the manga in only 16 episodes so don't worry about it there is still more AOT after the 16 episodes;False;False;;;;1610483151;;False;{};gj1cl9l;False;t3_kvyhns;False;False;t1_gj1bavx;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1cl9l/;1610544554;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NekoWafers;;;[];;;;text;t2_iau18;False;False;[];;Such a hype [OP song](https://www.youtube.com/watch?v=AmA0JxcVFrY) and a really interesting story.;False;False;;;;1610483175;;False;{};gj1cn47;False;t3_kvz2s9;False;True;t1_gj17lrt;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1cn47/;1610544588;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610483219;moderator;False;{};gj1cqn3;False;t3_kvzx8c;False;True;t3_kvzx8c;/r/anime/comments/kvzx8c/what_anime_is_this_from_this_was_posted_in/gj1cqn3/;1610544653;1;False;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;"very good world building. - -creators had something similar I was excited for, but ended up being like 2 minute shorts released on twitter and not real content :(";False;False;;;;1610483279;;False;{};gj1cv96;False;t3_kvz2s9;False;True;t1_gj1cn47;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1cv96/;1610544750;1;True;False;anime;t5_2qh22;;0;[]; -[];;;A_kirE;;;[];;;;text;t2_8mklskhy;False;False;[];;try log horizon its getting a 3rd season and maybe gintama the final movie was released this month in japan;False;False;;;;1610483333;;False;{};gj1czgr;False;t3_kvwoo8;False;False;t3_kvwoo8;/r/anime/comments/kvwoo8/what_airing_animes_are_you_watching/gj1czgr/;1610544831;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Florac;;;[];;;;text;t2_vy0sf;False;False;[];;That's because he is Sugita;False;False;;;;1610483338;;False;{};gj1cztp;False;t3_kvzubb;False;True;t3_kvzubb;/r/anime/comments/kvzubb/mushoku_tensei_jobless_reincarnation/gj1cztp/;1610544837;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;Definitely Sugita. If he continues as a sort of Gintoki/Kyon hybrid I might love the show.;False;False;;;;1610483378;;False;{};gj1d30m;False;t3_kvzubb;False;True;t3_kvzubb;/r/anime/comments/kvzubb/mushoku_tensei_jobless_reincarnation/gj1d30m/;1610544895;1;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;"That's the way to do it. Shows at 1-3 cours are typically best. - -The great ones at over 60 episodes are AoT, FMAB, and Haikyuu. People say One Piece is great but I really do question if it's as good as it is long. The three I mentioned earn their length.";False;False;;;;1610483383;;False;{};gj1d3eq;False;t3_kvtohs;False;False;t1_gj0yyeu;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1d3eq/;1610544903;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610483388;moderator;False;{};gj1d3tz;False;t3_kvzz9j;False;True;t3_kvzz9j;/r/anime/comments/kvzz9j/nanbaka_episode_1_reference/gj1d3tz/;1610544911;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Ill_Nefariousness_75;;;[];;;;text;t2_6p5dz8ba;False;False;[];;Gintama seems too much for me atm. Will check out Log horizon. Thanks.;False;False;;;;1610483401;;False;{};gj1d4sf;True;t3_kvwoo8;False;True;t1_gj1czgr;/r/anime/comments/kvwoo8/what_airing_animes_are_you_watching/gj1d4sf/;1610544930;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610483415;;False;{};gj1d5wf;False;t3_kvwrpm;False;True;t1_gj14gc6;/r/anime/comments/kvwrpm/non_non_biyori_is_much_better_than_yuru_camp/gj1d5wf/;1610544950;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610483474;moderator;False;{};gj1dahk;False;t3_kw00dd;False;False;t3_kw00dd;/r/anime/comments/kw00dd/how_to_start_with_anime/gj1dahk/;1610545036;2;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi indigo-wolf, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610483475;moderator;False;{};gj1daj1;False;t3_kw00dd;False;True;t3_kw00dd;/r/anime/comments/kw00dd/how_to_start_with_anime/gj1daj1/;1610545037;3;False;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;First one is likely Lupin the Third.;False;False;;;;1610483513;;False;{};gj1ddkh;False;t3_kvzz9j;False;True;t3_kvzz9j;/r/anime/comments/kvzz9j/nanbaka_episode_1_reference/gj1ddkh/;1610545094;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheProblemChiled;;;[];;;;text;t2_5icijbp1;False;False;[];;Fr... searched everywhere but his name was not mentioned.;False;False;;;;1610483520;;False;{};gj1de4e;True;t3_kvzubb;False;True;t1_gj1cztp;/r/anime/comments/kvzubb/mushoku_tensei_jobless_reincarnation/gj1de4e/;1610545104;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610483539;;False;{};gj1dfkr;False;t3_kvyhns;False;True;t1_gj1c4qh;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1dfkr/;1610545129;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;False;[];;"https://myanimelist.net/anime/30053 - -Only 443 people have this listed as completed on MAL, and only 654 have it anywhere in their list.";False;False;;;;1610483555;;False;{};gj1dgv9;False;t3_kvz2s9;False;True;t3_kvz2s9;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1dgv9/;1610545155;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheProblemChiled;;;[];;;;text;t2_5icijbp1;False;False;[];;Ya that'd be soo cool.;False;False;;;;1610483562;;False;{};gj1dhgl;True;t3_kvzubb;False;True;t1_gj1d30m;/r/anime/comments/kvzubb/mushoku_tensei_jobless_reincarnation/gj1dhgl/;1610545166;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;How to you pick any show/movie to watch? Do that;False;False;;;;1610483575;;False;{};gj1dig1;False;t3_kw00dd;False;True;t3_kw00dd;/r/anime/comments/kw00dd/how_to_start_with_anime/gj1dig1/;1610545200;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackheart595;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Blackheart595/;light;text;t2_l0756;False;False;[];;Depends on what you're looking for. There's no live action movie and no book that's a good introduction into their respective medium for everyone, and there's no such thing for anime either.;False;False;;;;1610483603;;False;{};gj1dknp;False;t3_kw00dd;False;False;t3_kw00dd;/r/anime/comments/kw00dd/how_to_start_with_anime/gj1dknp/;1610545241;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"There's no ""right way"" to start. Everyone's taste/preference is different. - -What do you like for live action tv shows and movies? That'd really help us out, to suggest you things you might like.";False;False;;;;1610483608;;False;{};gj1dl2q;False;t3_kw00dd;False;False;t3_kw00dd;/r/anime/comments/kw00dd/how_to_start_with_anime/gj1dl2q/;1610545248;2;True;False;anime;t5_2qh22;;0;[]; -[];;;desertedspiter;;;[];;;;text;t2_vap82db;False;False;[];;Sorry I forgot to add context: this was right after they found a laser trap trying to escape a prison.;False;False;;;;1610483609;;False;{};gj1dl60;True;t3_kvzz9j;False;True;t3_kvzz9j;/r/anime/comments/kvzz9j/nanbaka_episode_1_reference/gj1dl60/;1610545250;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610483614;;False;{};gj1dlls;False;t3_kw00dd;False;True;t3_kw00dd;/r/anime/comments/kw00dd/how_to_start_with_anime/gj1dlls/;1610545257;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sunias;;;[];;;;text;t2_318no4vj;False;False;[];;You should probably start with shounen anime which is like dragon ball, naruto,etc because it's the easiest type of anime to get into but a lot of them are really long so be aware of that;False;False;;;;1610483619;;False;{};gj1dlxi;False;t3_kw00dd;False;True;t3_kw00dd;/r/anime/comments/kw00dd/how_to_start_with_anime/gj1dlxi/;1610545262;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610483666;;False;{};gj1dpme;False;t3_kw00dd;False;True;t3_kw00dd;/r/anime/comments/kw00dd/how_to_start_with_anime/gj1dpme/;1610545328;0;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;"> What would you recommend to a complete beginner to anime? - -Depends on what you're interested in. There's no ""one size fits all"" options. [This is my generic set of general recommendations](https://i.redd.it/7toakiswcc961.png). You should be able to find something of interest on there.";False;False;;;;1610483683;;False;{};gj1dqyf;False;t3_kw00dd;False;True;t3_kw00dd;/r/anime/comments/kw00dd/how_to_start_with_anime/gj1dqyf/;1610545354;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CorbenikTheRebirth;;;[];;;;text;t2_g98wg;False;False;[];;I was hoping for 24 (mostly because I'm taken with the premiere already), but if 12 means they can keep up the quality across the episodes, I'm happy.;False;False;;;;1610483709;;False;{};gj1dt16;False;t3_kvvrbd;False;False;t3_kvvrbd;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj1dt16/;1610545392;39;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610483721;;False;{};gj1dtzi;False;t3_kvyhpj;False;True;t3_kvyhpj;/r/anime/comments/kvyhpj/one_piece_vs_hxh_what_are_your_guys_opinions/gj1dtzi/;1610545411;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"/u/indigo-wolf: Listen to the Bot-chan. Look at the ""awesome recommendation flowchart"" for recommendations or the Recommendations Wiki for Recommendations.";False;False;;;;1610483884;;False;{};gj1e6yp;False;t3_kw00dd;False;True;t1_gj1daj1;/r/anime/comments/kw00dd/how_to_start_with_anime/gj1e6yp/;1610545654;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Raghav_Singhania;;;[];;;;text;t2_5r7necl3;False;False;[];;pokemon;False;False;;;;1610483893;;False;{};gj1e7mn;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1e7mn/;1610545667;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Edit: well, leaving my original comment at the bottom. - -> more ridiculous romance plots. - -Ridiculous as in funny, trashy, or intense drama? Because I have all of those. - -Comedic: - -* [Lovely★Complex](https://livechart.me/anime/2979) — High school romantic comedy where a tall girl and a short guy find issues with their heights and like to bicker at each other. - -* [Ouran High School Host Club](https://livechart.me/anime/3628) — A tomboy accidentally gets pulled in to hijinks working as a host for girls at an elite academy. - -Trashy (not exactly my wheelhouse but): - -* [Citrus](https://livechart.me/anime/2413) - -* [Domestic Girlfriend](https://www.livechart.me/anime/3395) - -Drama: - -* [NANA](https://livechart.me/anime/3640) — Sex, drugs, and rock and roll: the story of two women that become friends after a chance encounter. - -* [Kuzu no Honkai (Scum's Wish)](https://livechart.me/anime/2084) — An exploration of various kinds of one-sided relationships where everyone is miserable and horny. (Arguably also fits in trashy but I think this one was done much better.) - -> I think some years ago I saw some anime about boys swimmers team, but I am not sure what that was - -[Free!](https://www.livechart.me/anime/18) maybe? - - ---- -Depends on what you're into and are looking for, it's a broad medium. - -For example, for someone into classical music I'd suggest [Sound! Euphonium](https://www.livechart.me/anime/1267) or [Your Lie in April](https://www.livechart.me/anime/479) while if they're more into mind-benders maybe [Serial Experiments Lain](https://www.livechart.me/anime/3597). - -Giant robots? [Gurren Lagann](https://www.livechart.me/anime/3583) for something over-the-top, or [Mobile Suit Gundam: Iron-Blooded Orphans](https://www.livechart.me/anime/1705) for something more gritty.";False;False;;;;1610483972;;1610484413.0;{};gj1edxx;False;t3_kw00dd;False;True;t3_kw00dd;/r/anime/comments/kw00dd/how_to_start_with_anime/gj1edxx/;1610545784;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nenanda;;;[];;;;text;t2_1tfpghnv;False;False;[];;"If you want to see something where main character is assassin then I have to recomend Noir - - [Noir - MyAnimeList.net](https://myanimelist.net/anime/272/Noir) - -Briliant, quite dark anime with lot of interesting episodes. Also score is made by godess of osts Yuki Kajiura herself";False;False;;;;1610484014;;False;{};gj1eham;False;t3_kvywte;False;True;t3_kvywte;/r/anime/comments/kvywte/im_looking_for_something_to_watch/gj1eham/;1610545849;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;">I am looking for less action/fight, more ridiculous romance plots. I think some years ago I saw some anime about boys swimmers team, but I am not sure what that was :D - -Okay that helps. The anime you saw is called 'Free'. There are many sports anime that have a large cast of guys, one of the most popular being Haikyuu. - -For romance what kind of romance? Do you want the lead to be female or male? - -Here are some recommendations: - -1. Say, 'I Love You' -2. Ao Haru Ride -3. Wotakoi -4. Lovely Complex -5. Fruits Basket -6. ReLIFE";False;False;;;;1610484112;;False;{};gj1eozl;False;t3_kw00dd;False;True;t3_kw00dd;/r/anime/comments/kw00dd/how_to_start_with_anime/gj1eozl/;1610545987;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NekoWafers;;;[];;;;text;t2_iau18;False;False;[];;"Probably [Never Give Up! Magical Girl Kurumi](https://myanimelist.net/anime/35510/Seizei_Ganbare_Mahou_Shoujo_Kurumi) but only the first season is translated I think. [It's kind of great](https://youtu.be/lLcZTr7kqlU?t=69) for being so low budget. - -Something actually fully translated then maybe [Merc Storia](https://myanimelist.net/anime/37232/Merc_Storia__Mukiryoku_no_Shounen_to_Bin_no_Naka_no_Shoujo?q=merc&cat=anime)";False;False;;;;1610484120;;1610484651.0;{};gj1epll;False;t3_kvz2s9;False;True;t3_kvz2s9;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1epll/;1610545998;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610484186;;False;{};gj1eurj;False;t3_kw00dd;False;True;t3_kw00dd;/r/anime/comments/kw00dd/how_to_start_with_anime/gj1eurj/;1610546091;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mobilegamegod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Aochhi;light;text;t2_pkuqf;False;False;[];;I just watched [this](https://anilist.co/anime/127978/) short last night which currently only has 17 people that marked it as completed.;False;False;;;;1610484197;;False;{};gj1evjr;False;t3_kvz2s9;False;True;t3_kvz2s9;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1evjr/;1610546105;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nenanda;;;[];;;;text;t2_1tfpghnv;False;False;[];;BUUUUUUUUUURN! That´s the burn above the burn that´s the second degree burn!;False;False;;;;1610484204;;False;{};gj1ew4i;False;t3_kvy774;False;False;t1_gj122bv;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj1ew4i/;1610546116;2;True;False;anime;t5_2qh22;;0;[]; -[];;;indigo-wolf;;;[];;;;text;t2_pyc6d3m;False;False;[];;oh my, so many resources!!! I feel like there is infinite amount of fun time in front of me right now. I will dive right in, thank you!!;False;False;;;;1610484209;;False;{};gj1ewkd;True;t3_kw00dd;False;False;t1_gj1e6yp;/r/anime/comments/kw00dd/how_to_start_with_anime/gj1ewkd/;1610546123;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Nenanda;;;[];;;;text;t2_1tfpghnv;False;False;[];;That does not say anything about the subject: Are all shows call overrated one way or another? That´s your personal preference.;False;False;;;;1610484252;;False;{};gj1ezyg;False;t3_kvy774;False;True;t1_gj14w7h;/r/anime/comments/kvy774/demon_slayer_isnt_good_just_a_typical_shounen/gj1ezyg/;1610546184;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackheart595;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Blackheart595/;light;text;t2_l0756;False;False;[];;"> I am looking for less action/fight, more ridiculous romance plots. - -The most popular of those should be Kaguya-sama: Love is War, so try that one. I think it's free-to-watch on Crunchyroll if you're in the US.";False;False;;;;1610484276;;False;{};gj1f1r6;False;t3_kw00dd;False;True;t3_kw00dd;/r/anime/comments/kw00dd/how_to_start_with_anime/gj1f1r6/;1610546214;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610484387;;False;{};gj1fakf;False;t3_kvwb2o;False;True;t3_kvwb2o;/r/anime/comments/kvwb2o/where_to_watch_the_promised_neverland_s2/gj1fakf/;1610546383;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;You're very welcome.;False;False;;;;1610484399;;False;{};gj1fbir;False;t3_kw00dd;False;False;t1_gj1ewkd;/r/anime/comments/kw00dd/how_to_start_with_anime/gj1fbir/;1610546402;3;True;False;anime;t5_2qh22;;0;[]; -[];;;A_kirE;;;[];;;;text;t2_8mklskhy;False;False;[];;jobless reincarnation;False;False;;;;1610484406;;False;{};gj1fc4x;False;t3_kw0ar5;False;True;t3_kw0ar5;/r/anime/comments/kw0ar5/title_of_the_anime_please_i_watched_a_few_minutes/gj1fc4x/;1610546415;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nihhrt;;MAL;[];;http://myanimelist.net/animelist/Nihhrt;dark;text;t2_8p0ab;False;False;[];;Mushoku Tensei: Jobless Reincarnation;False;False;;;;1610484414;;False;{};gj1fcsp;False;t3_kw0ar5;False;True;t3_kw0ar5;/r/anime/comments/kw0ar5/title_of_the_anime_please_i_watched_a_few_minutes/gj1fcsp/;1610546426;3;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your submission has been removed. - -- It looks like your questions have been answered, so we're taking it off the list of new posts to make room for other content. For future reference, here are some additional resources that may help you find an answer even faster: - - - [To ask any random question you may have, visit our Weekly Miscellaneous Anime Questions thread!](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Weekly+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) - - [For finding an anime based off of a single image, reverse image searching typically works instantly](http://www.reddit.com/r/anime/wiki/reverse_image_searching) - - [r/anime has a large number of watch orders available](http://www.reddit.com/r/anime/wiki/watch_order) - - [You can find all of your recommendation needs here](http://www.reddit.com/r/anime/wiki/recommendations) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610484431;moderator;False;{};gj1fe48;False;t3_kw0ar5;False;True;t3_kw0ar5;/r/anime/comments/kw0ar5/title_of_the_anime_please_i_watched_a_few_minutes/gj1fe48/;1610546450;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fakeport;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_soe2k;False;False;[];;This wasn't even on my radar in this packed season, but I was encouraged to give it a go by a twitter post, and wow, that was a very, very strong first episode. Really excited for the rest of this now;False;False;;;;1610484681;;False;{};gj1fycc;False;t3_kvvrbd;False;False;t3_kvvrbd;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj1fycc/;1610546839;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Serial_Beef;;;[];;;;text;t2_4ykrk2ac;False;False;[];;Isn't One Piece ridiculously repetitive though? I would argue it's not that amazing to plan things ahead for so long if you just keep using the same formula. Personally I dropped out after around 380 episodes because the pacing was atrocious. Might try the manga one day.;False;False;;;;1610484694;;False;{};gj1fzdh;False;t3_kvyhpj;False;True;t1_gj1522d;/r/anime/comments/kvyhpj/one_piece_vs_hxh_what_are_your_guys_opinions/gj1fzdh/;1610546858;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;m1m1snake;;;[];;;;text;t2_k1azj;False;False;[];;Pokémon, DBZ, and OG Naruto. A little to catch up with Pokémon, but I saw the whole series to the end a few years ago. Haven't caught up after the COVID break though.;False;False;;;;1610484725;;False;{};gj1g1sk;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1g1sk/;1610546901;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610484768;;False;{};gj1g56n;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1g56n/;1610546963;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610484813;;False;{};gj1g8s3;False;t3_kw00dd;False;True;t1_gj1edxx;/r/anime/comments/kw00dd/how_to_start_with_anime/gj1g8s3/;1610547027;1;True;False;anime;t5_2qh22;;0;[]; -[];;;panosk1304;;;[];;;;text;t2_19qvhtzg;False;False;[];;One piece.;False;False;;;;1610484871;;False;{};gj1gdl2;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1gdl2/;1610547116;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;"I think that's just cause AoT is such a serious show for most of it's run. Here in Marley though there's peace, and as we know now that peace is about to be absolutely destroyed. So I think it helps build the ""calm before the storm"" atmosphere";False;False;;;;1610484928;;False;{};gj1gib6;False;t3_kvyhns;False;True;t1_gj1c4qh;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1gib6/;1610547208;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Minisabel;;;[];;;;text;t2_2a3z01mv;False;False;[];;OP anime is nowhere near as good as HxH's one.;False;False;;;;1610485051;;False;{};gj1gs80;False;t3_kvyhpj;False;True;t1_gj18k0z;/r/anime/comments/kvyhpj/one_piece_vs_hxh_what_are_your_guys_opinions/gj1gs80/;1610547403;0;True;False;anime;t5_2qh22;;0;[]; -[];;;RIP_Hopscotch;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RiPHopscotch/animelist;light;text;t2_qblus;False;False;[];;"Obviously there is the overall battle shounen formula that it follows - for example at the end of arcs it will typically be Luffy vs ""Big Bad"" and everyone else fighting some other ""Bad"" - but the actual storylines of the arcs are not really repetitive. Also the pacing of the front end of the One Piece anime really isn't bad or what most people complain about, its the pacing of the backend/most post time-skip stuff. Up until at least Marineford One Piece's anime pacing is solid (with skippable filler), and the pacing of the manga is consistently top tier.";False;False;;;;1610485267;;False;{};gj1h9d9;False;t3_kvyhpj;False;True;t1_gj1fzdh;/r/anime/comments/kvyhpj/one_piece_vs_hxh_what_are_your_guys_opinions/gj1h9d9/;1610547723;3;True;False;anime;t5_2qh22;;0;[]; -[];;;hydraxiv;;;[];;;;text;t2_5wvchq00;False;False;[];;I thought it was gonna be a slice of life series about four friends hahah.;False;False;;;;1610485455;;False;{};gj1ho24;False;t3_kvvrbd;False;False;t3_kvvrbd;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj1ho24/;1610548013;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Brandis_;;;[];;;;text;t2_27oe4p27;False;False;[];;Those are both insanely long, I would recommend something shorter.;False;False;;;;1610485601;;False;{};gj1hzo6;False;t3_kw00dd;False;False;t1_gj1dlxi;/r/anime/comments/kw00dd/how_to_start_with_anime/gj1hzo6/;1610548262;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Siccerian;;;[];;;;text;t2_1rl0duq1;False;False;[];;Monster i think. Cant keep being interest ed in longer stuff.;False;False;;;;1610485891;;False;{};gj1imqu;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1imqu/;1610548742;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ranculos;;;[];;;;text;t2_2dkyj4aj;False;False;[];;"Hi! Welcome to Anime! :) some general tips for starting with anime - get yourself a [MAL](www.myanimelist.com). This allows you to record shows that you’ve watched/want to watch/dropped, but also is a vast database of anime. You can search by genre and sub genre, and also can find user suggestions based on a show you like. - -General genres you probably want to explore to begin with are shoujo (girls anime), josei (women’s anime), romance, drama, maybe even BL (boys love). I’d recommend watching a variety of anime across genres to begin with! - -Some recommendations I have are: - -ReLIFE - a great comedy/romance/emotional drama about a young jobless man who suffers from PTSD. He gets an opportunity to ReLIFE - go back to his 17 year old self and redo high school, with the promise of a job at the end. It’s an outstanding anime, I definitely recommend starting with it. Moving plot, great comedy, heartfelt romance. Has it all! - -2. Domestic Girlfriend - want a trashy but addictive romance? - -3. Rumbling Hearts - want an emotional, more mature romance? - -4. Scums Wish - psychological romance. Addictive. - -5. Fruits Basket - the classic shoujo. Beautiful story. Watch the 2019 remake - it’s even better than the classic. - -6. Kiss Him, Not Me - want a lighthearted comedy? Explores romance and is a cute introduction to BL. - -7. Ouran High School Host Club - more lighthearted comedy, romance and BL. - -8. Koi to Uso - a cute and heartbreaking romance drama. Easy to watch. - -Another subreddit good for anime is r/animesuggest.";False;False;;;;1610486084;;False;{};gj1j22s;False;t3_kw00dd;False;True;t3_kw00dd;/r/anime/comments/kw00dd/how_to_start_with_anime/gj1j22s/;1610549043;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aztecaoro10;;;[];;;;text;t2_1oj0my0f;False;False;[];;Valid point. It has just thrown me off bc we love our main squad , and for them to try and introduce another squad, without showing our main squad so far feels wrong. It's like I'm cheating on the main squad 😂;False;False;;;;1610486099;;False;{};gj1j373;True;t3_kvyhns;False;True;t1_gj1c4h0;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1j373/;1610549065;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;aztecaoro10;;;[];;;;text;t2_1oj0my0f;False;False;[];;Theres been at least 1 in every episode!;False;True;;comment score below threshold;;1610486125;;False;{};gj1j5e1;True;t3_kvyhns;False;True;t1_gj1ccte;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1j5e1/;1610549107;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;aztecaoro10;;;[];;;;text;t2_1oj0my0f;False;False;[];;Why not call a cour another season? lol !;False;False;;;;1610486162;;False;{};gj1j85w;True;t3_kvyhns;False;True;t1_gj1cl9l;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1j85w/;1610549159;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;aztecaoro10;;;[];;;;text;t2_1oj0my0f;False;False;[];;I'm so excited for what's to come! Have you been enjoying the season so far?;False;False;;;;1610486201;;False;{};gj1jb97;True;t3_kvyhns;False;True;t1_gj1gib6;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1jb97/;1610549218;0;True;False;anime;t5_2qh22;;0;[]; -[];;;KearLoL;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/vollizie;light;text;t2_46k87az;False;False;[];;Dragon Ball;False;False;;;;1610486289;;False;{};gj1ji7r;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1ji7r/;1610549377;1;True;False;anime;t5_2qh22;;0;[]; -[];;;voornaam1;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://www.anime-planet.com/users/Max4444;dark;text;t2_3yiwp1ue;False;False;[];;"I haven't watched many long anime, I watched the first 3 seasons of Haikyuu + the first 2 OVAs in 1 weekend. - -I hurt my back so I couldn't go to my volleyball training and the only thing I could do to distract myself from the pain was watch anime so I watched it quite quickly.";False;False;;;;1610486351;;False;{};gj1jn52;False;t3_kvyn9w;False;True;t3_kvyn9w;/r/anime/comments/kvyn9w/what_is_the_shortest_amount_of_time_you_finished/gj1jn52/;1610549479;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aniMayor;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aniMayor/;light;text;t2_oymny;False;True;[];;The music was pretty dope...;False;False;;;;1610486557;;False;{};gj1k3ek;False;t3_kvz2s9;False;True;t1_gj1awlk;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1k3ek/;1610549792;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ecchi-ja-nai;;;[];;;;text;t2_11x3ls2m;False;False;[];;The original series or the remake? I'm only a few episodes into the original, but I finished the more recent remake. Great OPs/EDs from Sawano Hiroyuki.;False;False;;;;1610486675;;False;{};gj1kcg5;False;t3_kvz2s9;False;True;t1_gj1berj;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1kcg5/;1610549972;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gsenjou;;;[];;;;text;t2_5ns6dyc;False;False;[];;"Because they mean different things. - -Cour is the Japanese term used to refer to a 3 month period of television. It quite literally means quarter year, which is enough time for 12-13 episodes (1 per week). - -A season is a single continuous run of episodes, which typically ranges anywhere between 12-26 episodes, sometimes more.";False;False;;;;1610486680;;False;{};gj1kcul;False;t3_kvyhns;False;False;t1_gj1j85w;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1kcul/;1610549979;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Cyd_arts;;;[];;;;text;t2_5hfv3fmw;False;False;[];;Detective Conan and one piece, I'm not sure which one is longer right now;False;False;;;;1610486821;;False;{};gj1knwp;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1knwp/;1610550205;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kenga123456;;;[];;;;text;t2_49vw1707;False;False;[];;Norway;False;False;;;;1610486824;;False;{};gj1ko5q;True;t3_kvwb2o;False;True;t1_gj0vyf7;/r/anime/comments/kvwb2o/where_to_watch_the_promised_neverland_s2/gj1ko5q/;1610550212;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kenga123456;;;[];;;;text;t2_49vw1707;False;False;[];;Ok thanks;False;False;;;;1610486868;;False;{};gj1krkl;True;t3_kvwb2o;False;True;t1_gj0qocg;/r/anime/comments/kvwb2o/where_to_watch_the_promised_neverland_s2/gj1krkl/;1610550281;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;False;[];;Wait wut? There were two different versions? [The only one I know about was the one made by studio Zexcs in 2010](https://myanimelist.net/anime/8086/Densetsu_no_Yuusha_no_Densetsu).;False;False;;;;1610486895;;False;{};gj1ktre;False;t3_kvz2s9;False;True;t1_gj1kcg5;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1ktre/;1610550325;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;"Going by number of members (going by first season if it's a connected story, excluding hentai and all shows I rated below 7/10), the top least watched animes I've watched are: - -1. Queen Millenia (3950 members) - -2. Harlock Saga (5106 members) - -3. Usavich (6052 members) - -4. Captain Harlock Endless Odyssey (6247 members) - -5. Rilakkuma and Kaoru (8930 members) - -6. Iketeru Futari (16214 members) - -7. Di Gi Charat (17248 members) - -8. Duel Masters (19464 members) - -9. Magical Circle GURU-GURU (27447 members) - -10. Shadow Star Narutaru (28669 members) - -11. Jungle wa Itsumo Hale nochi Guu (29436 members) - -12. Requiem From The Darkness (30220 members) - -13. Over Drive (38920 members)";False;False;;;;1610486909;;False;{};gj1kuvj;False;t3_kvz2s9;False;True;t3_kvz2s9;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1kuvj/;1610550345;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aztecaoro10;;;[];;;;text;t2_1oj0my0f;False;False;[];;That makes sense. Thank you for educating me! Let's keep enjoying the beauty of AoT!;False;False;;;;1610486935;;False;{};gj1kww5;True;t3_kvyhns;False;True;t1_gj1kcul;/r/anime/comments/kvyhns/do_you_think_aot_is_wasting_epsiodes/gj1kww5/;1610550384;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610487048;;False;{};gj1l5o2;False;t3_kvyn9w;False;True;t1_gj15k8a;/r/anime/comments/kvyn9w/what_is_the_shortest_amount_of_time_you_finished/gj1l5o2/;1610550551;1;False;False;anime;t5_2qh22;;0;[]; -[];;;D3RPXD;;;[];;;;text;t2_16gt5z;False;False;[];;I'm actually watching Gintama rn, loving it so far (I'm on episode 167);False;False;;;;1610487084;;False;{};gj1l8g7;False;t3_kvtohs;False;False;t1_gj0c2xj;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1l8g7/;1610550601;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePizzaPunk;;;[];;;;text;t2_2vol7jvt;False;False;[];;"Oh yah I’ve heard of Duel Masters - -Aka: discount Yu-Gi-Oh";False;False;;;;1610487469;;False;{};gj1m2kt;True;t3_kvz2s9;False;True;t1_gj1kuvj;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1m2kt/;1610551181;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;Perrine Monogatari;False;False;;;;1610487557;;False;{};gj1m9i8;False;t3_kvz2s9;False;False;t3_kvz2s9;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1m9i8/;1610551314;1;True;False;anime;t5_2qh22;;0;[]; -[];;;simer_cool;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/simer_sahni;light;text;t2_j1kgg;False;False;[];;One Piece 🤘🏻;False;False;;;;1610488063;;False;{};gj1ndgk;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1ndgk/;1610552097;1;True;False;anime;t5_2qh22;;0;[]; -[];;;God_Spaghetti;;;[];;;;text;t2_omig0j5;False;False;[];;"Mahou Shoujotai Arusu, Natsunagu, Ryo, Takahashi Rumiko Gekijou Ningyo no Mori. - -My cutoff point was 10,000 users on MAL. - -The only one of these three I really recommend is the first two.";False;False;;;;1610488237;;False;{};gj1nril;False;t3_kvz2s9;False;True;t3_kvz2s9;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1nril/;1610552365;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;In Germany it's a fucking masterpiece because of the dub.;False;False;;;;1610488461;;False;{};gj1o926;False;t3_kvz2s9;False;True;t1_gj1m2kt;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1o926/;1610552717;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;"Yayyy, it got picked up! [](#urarahype) - -[I'm with you, rain is nice](https://i.imgur.com/LIxfuaW.jpeg) - -[Yatogame quietly burning her tongue :3c](https://i.imgur.com/K4GBXTi.jpg)";False;False;;;;1610488586;;False;{};gj1oixx;False;t3_kvvbaw;False;True;t3_kvvbaw;/r/anime/comments/kvvbaw/yatogamechan_kansatsu_nikki_sansatsume_episode_1/gj1oixx/;1610552906;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610488654;;False;{};gj1oob2;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1oob2/;1610553008;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TackyLawnFlamingoInc;;;[];;;;text;t2_g74l0jl;False;False;[];;Your tastes have changed. That is to be expected. Life is too short to spend watch shows that don’t interest you. Who knows may be the show that will rekindle your interest is yet to be made.;False;False;;;;1610488711;;False;{};gj1osr8;False;t3_kvvsse;False;True;t3_kvvsse;/r/anime/comments/kvvsse/has_anyone_else_outgrown_anime_and_gotten_sad/gj1osr8/;1610553091;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Raptor12225;;;[];;;;text;t2_1174as;False;False;[];;Holy that trailer is so good;False;False;;;;1610488737;;False;{};gj1ourx;False;t3_kvvg09;False;True;t1_gj0xy52;/r/anime/comments/kvvg09/looking_for_a_isekei_anime_that_i_can_really_enjoy/gj1ourx/;1610553127;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NeloSSJ;;;[];;;;text;t2_2wckkndn;False;False;[];;Naruto series. Counting the filler episodes.;False;False;;;;1610488861;;False;{};gj1p4ao;False;t3_kvtohs;False;False;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1p4ao/;1610553315;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChristianGin;;;[];;;;text;t2_uggz7;False;False;[];;I love this show! Plus it helps my first Japan trip was in Nagoya, a place I was laughed at for being a tourist there. Loved it because the food was awesome, no crowds and easy to get around. Anyone else been to Nagoya?;False;False;;;;1610489035;;False;{};gj1phis;False;t3_kvvbaw;False;True;t3_kvvbaw;/r/anime/comments/kvvbaw/yatogamechan_kansatsu_nikki_sansatsume_episode_1/gj1phis/;1610553579;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SuicidalDepressi0n;;;[];;;;text;t2_6putoa2f;False;False;[];;"[Wotaku ni Koi wa Muzukashii](https://myanimelist.net/anime/35968/Wotaku_ni_Koi_wa_Muzukashii?q=Wotaku&cat=anime): this has Wotaku written all over it. It's probably what your looking for.";False;False;;;;1610489152;;False;{};gj1pqeh;False;t3_kvvb2i;False;True;t3_kvvb2i;/r/anime/comments/kvvb2i/looking_for_sliceofliferomance_anime_with_adult/gj1pqeh/;1610553779;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;Dragonball. A little over 500 episodes I believe with the original, Z, and Super.;False;False;;;;1610489191;;False;{};gj1ptey;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1ptey/;1610553840;1;True;False;anime;t5_2qh22;;0;[]; -[];;;swordsmithing;;;[];;;;text;t2_2o3ft2y1;False;False;[];;It has no business being as epic as it is. I liked it so much I used to rewind and listen to it a second time for some episodes lol.;False;False;;;;1610489200;;False;{};gj1pu2c;False;t3_kvuhvx;False;True;t1_gj13aih;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj1pu2c/;1610553853;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shintoho;;;[];;;;text;t2_bpoqikw;False;False;[];;"Dragon Ball - around 150 episodes - -Just finished watching all of Monogatari and that's around 100 episodes when you add everything together";False;False;;;;1610489300;;False;{};gj1q1qu;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1q1qu/;1610554012;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDampGod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheDampGod;light;text;t2_im4vi;False;False;[];;My lowest is [Mewkledreamy](https://myanimelist.net/anime/40327/Mewkledreamy) at 566 on MAL, which is shame as it's a fun little SoL/magical girl show. But being reliant on fan translation on the seven seas, means its never found even a modest audience.;False;False;;;;1610489484;;False;{};gj1qg3r;False;t3_kvz2s9;False;True;t3_kvz2s9;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1qg3r/;1610554283;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rigoku;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Elitar;light;text;t2_2j07de1;False;False;[];;https://myanimelist.net/anime/3008/Time_Bokan_Series__Yatterman/stats;False;False;;;;1610489622;;False;{};gj1qqoy;False;t3_kvz2s9;False;True;t3_kvz2s9;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1qqoy/;1610554495;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ccpossible;;;[];;;;text;t2_h8ytu;False;False;[];;it can be watched as a standalone.. but I feel it's more worth to watch hibike euphonium first. The movie is somewhat of a sequel to some of the characters.;False;False;;;;1610489723;;False;{};gj1qyoj;False;t3_kvtp2s;False;True;t1_gj1bk95;/r/anime/comments/kvtp2s/so_today_i_have_watched_a_silent_voice_your_name/gj1qyoj/;1610554664;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rigoku;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Elitar;light;text;t2_2j07de1;False;False;[];;"you are talking about different anime ;)";False;False;;;;1610489750;;False;{};gj1r0rd;False;t3_kvz2s9;False;True;t1_gj1kcg5;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1r0rd/;1610554703;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ccpossible;;;[];;;;text;t2_h8ytu;False;False;[];;I recommend Time of Eve. It won't really make you cry the same way as the others you've watched but it's definitely a fun watch that will bring out some emotions out of you.;False;False;;;;1610489849;;False;{};gj1r87s;False;t3_kvtp2s;False;True;t3_kvtp2s;/r/anime/comments/kvtp2s/so_today_i_have_watched_a_silent_voice_your_name/gj1r87s/;1610554867;1;True;False;anime;t5_2qh22;;0;[]; -[];;;furyofzion;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/furyofzion;light;text;t2_n5dwu;False;False;[];;"While not a movie, take your time to watch Clannad and Clannad:Afterstory. - -While the first season is ok, emotional but for me at least wasn't too memorable, the second season is something else.";False;False;;;;1610489935;;False;{};gj1reqe;False;t3_kvtp2s;False;True;t3_kvtp2s;/r/anime/comments/kvtp2s/so_today_i_have_watched_a_silent_voice_your_name/gj1reqe/;1610555012;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;"Ridiculous romance? That sounds like ""Ao-chan Can't Study"". Short (12x12 minutes), hilarious little romcom, with some weird things going on in someone's head. 😁";False;False;;;;1610490006;;False;{};gj1rk3p;False;t3_kw00dd;False;True;t3_kw00dd;/r/anime/comments/kw00dd/how_to_start_with_anime/gj1rk3p/;1610555136;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rigoku;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Elitar;light;text;t2_2j07de1;False;False;[];;7 days 291 episodes (yes, fillers too) DBZ;False;False;;;;1610490141;;False;{};gj1rude;False;t3_kvyn9w;False;True;t3_kvyn9w;/r/anime/comments/kvyn9w/what_is_the_shortest_amount_of_time_you_finished/gj1rude/;1610555341;1;True;False;anime;t5_2qh22;;0;[]; -[];;;svenEsven;;;[];;;;text;t2_b9o0a;False;False;[];;Shippuden, ik one piece is longer, but i could never get into it;False;False;;;;1610490191;;False;{};gj1ry5j;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1ry5j/;1610555413;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HobnobsTheRed;;;[];;;;text;t2_1ftgjit5;False;False;[];;"> atogame quietly burning her tongue :3c - -[Chin Chin](https://i.imgur.com/6iNN0Rj.png)";False;False;;;;1610490269;;False;{};gj1s46k;False;t3_kvvbaw;False;True;t1_gj1oixx;/r/anime/comments/kvvbaw/yatogamechan_kansatsu_nikki_sansatsume_episode_1/gj1s46k/;1610555527;1;True;False;anime;t5_2qh22;;0;[]; -[];;;svenEsven;;;[];;;;text;t2_b9o0a;False;False;[];;no filler and after trying to like it for the past 20 years. i still can't stand that show.;False;False;;;;1610490291;;False;{};gj1s5wl;False;t3_kvtohs;False;True;t1_gj0ddn9;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1s5wl/;1610555560;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ben99ny22;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ben99ny;light;text;t2_14rmpidg;False;False;[];;"it wasn't a problem because you binged it. - -The footstep noises still gives me PTSD.";False;False;;;;1610491057;;False;{};gj1tr9l;False;t3_kvtohs;False;True;t1_gj0m35l;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1tr9l/;1610556677;3;True;False;anime;t5_2qh22;;0;[]; -[];;;UzEE;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/UzEEInc;light;text;t2_45t2z;False;False;[];;"Dragon Ball + Z + GT + Super, multiple times over multiple releases. - -Originally started with Z in the mid 90s while it was airing here in Japanese (no subs) and didn't understand a single thing but still watched it. - -Once it actually started getting dubbed, I was immediately interested. Watched all of Z, then Dragon Ball, GT, then Z uncut, followed by Kai and Super. Abridged was also in there somewhere. Still waiting on a Super sequel or whatever a new series is going to be.";False;False;;;;1610491121;;False;{};gj1tvy4;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1tvy4/;1610556770;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;"yeah I basically agree with all of this, I would say the ""filler"" honestly helps with One Piece's pacing (there isn't much of it and the anime goes through some trouble to connect these individual filler arcs with other parts of the anime)... I've heard people compare Alabasta and Dressrosa before, and a couple other arcs are a little similar, but that series does have the benefit of being all thought-out before it even begins. Several foreshadowings to later arcs and episodes can be observed early on, and the series has a ton of small moments that are often more memorable then whatever action is at the forefront. - -HxH burns itself out, it cashes in every ounce of earned emotional payoff in the Chimera Ant arc without laying any new groundwork and then narratively shoots itself in the foot through a ridiculous plot device in its 6th arc (which, regardless on if you enjoyed that plot device, it makes it very difficult to continue the series from there.) And then the manga has basically done a victory tour ever since, relying on old material and setting up fan-requested fights rather than actually progressing things. Maybe I'm a little ""cynical"" about it but the mangaka is overly-zealous IMO, that series would be best off focusing on a new cast somewhere else in HxH's world, its roots are exploring new areas, training, having characters do what they're told is impossible, often coming up short and still impressing everybody--HxH has basically lost that at this point. As a whole it's good, but fwiw, in the amount of time it takes One Piece to go from good to phenomenal, HxH pulls off all its greatest tricks and then railroads itself into a narrative corner";False;False;;;;1610491185;;False;{};gj1u0mv;False;t3_kvyhpj;False;True;t1_gj1h9d9;/r/anime/comments/kvyhpj/one_piece_vs_hxh_what_are_your_guys_opinions/gj1u0mv/;1610556874;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigtuck54;;;[];;;;text;t2_85luj;False;False;[];;Yeah, which is why I’m saying it shouldn’t be a concern for people who watched it after I started. If I had to wait week to week during dressrosa I’m sure it would have driven me mad, but binging one piece post time skip is still just as much fun as the first half, and now that Wano is here it’s not a problem going week to week anymore.;False;False;;;;1610491531;;False;{};gj1uq79;False;t3_kvtohs;False;True;t1_gj1tr9l;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1uq79/;1610557364;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ecchi-ja-nai;;;[];;;;text;t2_11x3ls2m;False;False;[];;You're right. Was reading too fast. I was thinking of Legend of the Galactic Heroes. I guess that other one really isn't well known.;False;False;;;;1610491581;;False;{};gj1utxs;False;t3_kvz2s9;False;True;t1_gj1r0rd;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj1utxs/;1610557436;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Indiicted;;;[];;;;text;t2_2te349w;False;False;[];;Just watched this anime because i bought funimation to watch The promised neverland and honestly loved it. I’m glad i decided to give it a shot!;False;False;;;;1610491610;;False;{};gj1uw47;False;t3_kvukpw;False;True;t3_kvukpw;/r/anime/comments/kvukpw/daisuke_kanbe_anime_name_the_millionaire_detective/gj1uw47/;1610557477;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;"Just gave the first episode a watch and holy hell this is unexpected. Beautiful animation, great character designs, some powerful moments, great symbolism and an absolute mindfuck of a plot. - -This could later completely fall into a ravine but for the first episode this anime is worth keeping an eye on.";False;False;;;;1610492436;;False;{};gj1wkuz;False;t3_kvvrbd;False;False;t3_kvvrbd;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj1wkuz/;1610558655;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Anjunabeast;;;[];;;;text;t2_9n4ff;False;False;[];;Thank the internet for Naruto Kai and One Pace.;False;False;;;;1610492478;;False;{};gj1wnr7;False;t3_kvtohs;False;True;t1_gj09p9s;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1wnr7/;1610558710;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexCuzYNot;;;[];;;;text;t2_v3u2xlx;False;False;[];;Clattanoia underrated? You alright?;False;False;;;;1610493002;;False;{};gj1xp21;False;t3_kvuhvx;False;True;t3_kvuhvx;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj1xp21/;1610559538;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KendotsX;;;[];;;;text;t2_j6nbtko;False;False;[];;"I prefer the One Piece manga over Hunter x Hunter, although I always assumed that Hunter x Hunter had the potential of being as good or better if it had kept going consistently. But that's purely hypothetical. - -As for the anime, it's much clearer. The One Piece anime is bad, just for reference: the current 957 episodes adapt less chapters (956 to be specific), its positives exist, but are quite rare. It was quite better in its first few years, but it kept going down later, when both anime quality in general, and the One Piece manga were going up. - -On the other hand, Hunter x Hunter's anime has some few issues here and there, but it's still a masterpiece for me. I usually prefer manga as a medium, Hunter x Hunter is one of the very few examples where I love the adaptation even more.";False;False;;;;1610493077;;False;{};gj1xudz;False;t3_kvyhpj;False;True;t3_kvyhpj;/r/anime/comments/kvyhpj/one_piece_vs_hxh_what_are_your_guys_opinions/gj1xudz/;1610559651;2;True;False;anime;t5_2qh22;;0;[]; -[];;;badddw0lf;;;[];;;;text;t2_9n0zyltp;False;False;[];;InuYasha. So many bees.;False;False;;;;1610493709;;False;{};gj1z3up;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj1z3up/;1610560554;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Strickout;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Strickout?status=2;light;text;t2_1szolp7k;False;False;[];;"I finished Fairy Tail(All 347 Episodes(Including OVAs)+Dragon Cry) in 20 Days. I started the day after the Subbed *Alvarez Arc* finished airing. - -That's a little over 17 episodes/day every day for 20 days straight xD";False;False;;;;1610494561;;False;{};gj20rsn;False;t3_kvyn9w;False;True;t3_kvyn9w;/r/anime/comments/kvyn9w/what_is_the_shortest_amount_of_time_you_finished/gj20rsn/;1610561704;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Strickout;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Strickout?status=2;light;text;t2_1szolp7k;False;False;[];;Ryuusei - Eir Aoi | Sword Art Online Alternative: Gun Gale Online;False;False;;;;1610495472;;False;{};gj22imo;False;t3_kvuhvx;False;True;t3_kvuhvx;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj22imo/;1610562956;1;True;False;anime;t5_2qh22;;0;[]; -[];;;8andahalfby11;;MAL;[];;https://myanimelist.net/animelist/thereIwasnt;dark;text;t2_kvyfg;False;False;[];;"Does anyone else find it strange that we somehow wound up with **two** shows in one season that feature a dark haired, socially awkward MC with yellow/blue heterochromia and [that](/s ""gets sent to an alternate reality where she fights against strange monsters alongside some other girl"") ? - -EDIT: And to save you a click, the eyes of the Urasekai Picnic MC are the reverse of the MC from Wonder Egg Priority";False;False;;;;1610495487;;1610501052.0;{};gj22jnt;False;t3_kvvrbd;False;False;t3_kvvrbd;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj22jnt/;1610562976;34;True;False;anime;t5_2qh22;;0;[]; -[];;;SpartanSlayer64;;;[];;;;text;t2_r2wgn;False;False;[];;"Probably Gundam? I've seen all of the UC. I don't think any of my other favorite ""long"" franchises (Patlabor, City Hunter, Monogatari etc...) come close in terms of episode count or overall run-time.";False;False;;;;1610496211;;False;{};gj23xpx;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj23xpx/;1610564051;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RMChancellor;;;[];;;;text;t2_pf7000q;False;False;[];;If the remaining 11 episodes match the quality of the first, all other anime this year will be competing for second place.;False;False;;;;1610496454;;False;{};gj24e77;False;t3_kvvrbd;False;False;t3_kvvrbd;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj24e77/;1610564392;7;True;False;anime;t5_2qh22;;0;[]; -[];;;RolloverPollover;;;[];;;;text;t2_3mfned1;False;False;[];;I watched 200 something of Gintama back in the day;False;False;;;;1610496585;;False;{};gj24n3u;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj24n3u/;1610564594;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"Genshiken Nidaime has some great ones--Madoka, the Monogatari Series, K-On... - -You also can't forget all the references in Otaku no Video.";False;False;;;;1610497691;;False;{};gj26q60;False;t3_kvvj7n;False;True;t3_kvvj7n;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj26q60/;1610566089;2;True;False;anime;t5_2qh22;;0;[]; -[];;;albrioz;;;[];;;;text;t2_4crhwhhq;False;False;[];;"I feel like the comedy/parody genre is very underrated in general. Here's my recs for those genres: - -* [**30-sai no Hoken Taiiku**](https://myanimelist.net/anime/9624/30-sai_no_Hoken_Taiiku) -* [**Azumanga Daioh**](https://myanimelist.net/anime/66/Azumanga_Daioh) -* [**Binbougami ga!**](https://myanimelist.net/anime/13535/Binbougami_ga) -* [**Danshi Koukousei no Nichijou**](https://myanimelist.net/anime/11843/Danshi_Koukousei_no_Nichijou) **- I think this is my most rewatched anime** -* [**Hinamatsuri**](https://myanimelist.net/anime/36296/Hinamatsuri) -* [**Nichijou**](https://myanimelist.net/anime/10165/Nichijou) **- this is probably the most well known, but still I think people avoid the genre** -* [**Sabage-bu!**](https://myanimelist.net/anime/20709/Sabage-bu) -* [**Seitokai Yakuindomo**](https://myanimelist.net/anime/8675/Seitokai_Yakuindomo)";False;False;;;;1610497709;;False;{};gj26rdf;False;t3_kvuuvc;False;True;t3_kvuuvc;/r/anime/comments/kvuuvc/underrated_animes_you_can_recommend/gj26rdf/;1610566113;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;Coolest? Probably Lupin III Part 5. That show has *style*. That or maybe FLCL.;False;False;;;;1610497736;;1610506884.0;{};gj26t7t;False;t3_kvv3dc;False;True;t3_kvv3dc;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj26t7t/;1610566147;2;True;False;anime;t5_2qh22;;0;[]; -[];;;crism22;;;[];;;;text;t2_3jsaewqr;False;False;[];;Probably the best first episode of the last 2 years, was incredible;False;False;;;;1610498252;;False;{};gj27s22;False;t3_kvvrbd;False;False;t1_gj17740;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj27s22/;1610566807;5;True;False;anime;t5_2qh22;;0;[]; -[];;;viliml;;MAL;[];;myanimelist.net/animelist/VilimL;dark;text;t2_btyra;False;False;[];;Just watch both bruh;False;False;;;;1610498662;;False;{};gj28jp7;False;t3_kvvrbd;False;True;t1_gj17740;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj28jp7/;1610567337;3;True;False;anime;t5_2qh22;;0;[]; -[];;;nickie305;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/nickie305;light;text;t2_wptka;False;False;[];;Hotarubi no mori e, The Girl Who Leapt Through Time;False;False;;;;1610498844;;False;{};gj28w03;False;t3_kvtp2s;False;True;t3_kvtp2s;/r/anime/comments/kvtp2s/so_today_i_have_watched_a_silent_voice_your_name/gj28w03/;1610567576;1;True;False;anime;t5_2qh22;;0;[]; -[];;;viliml;;MAL;[];;myanimelist.net/animelist/VilimL;dark;text;t2_btyra;False;False;[];;"Pay for what you want, not what you need. The seven seas are always open to everyone. - -The ultimate combination is paying for premium membership and still pirating. That way you get superior service and you support the industry. - -But regardless of when and whether you choose to buy the subscription, definitely do start pirating. You won't regret it.";False;False;;;;1610498934;;False;{};gj2920j;False;t3_kvvrbd;False;False;t1_gj1bj76;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj2920j/;1610567691;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"Shirobako - -If college is okay, then Genshiken. - -> I searched a lot without finding what I'm looking for. - -Did you search this subreddit? [There are threads asking this question every couple weeks or so](https://www.google.com/search?client=safari&rls=en&ei=4UP-X-2gEaau5wKEp4qwAw&q=site%3Areddit.com%2Fr%2Fanime+adult+protagonist&oq=site%3Areddit.com%2Fr%2Fanime+adult+protagonist&gs_lcp=CgZwc3ktYWIQA1CqG1iZKWD8KWgAcAB4AIABNYgB1AKSAQE3mAEAoAEBqgEHZ3dzLXdpesABAQ&sclient=psy-ab&ved=0ahUKEwitlZG62JfuAhUm11kKHYSTAjYQ4dUDCAw&uact=5) (maybe even more frequently).";False;False;;;;1610498954;;False;{};gj293b8;False;t3_kvvb2i;False;True;t3_kvvb2i;/r/anime/comments/kvvb2i/looking_for_sliceofliferomance_anime_with_adult/gj293b8/;1610567715;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mrtheliger;;;[];;;;text;t2_11ghbg;False;False;[];;There was an attempt long ago but shitty internet and just not totally sure if I was doing it properly;False;False;;;;1610499194;;False;{};gj29jba;False;t3_kvvrbd;False;True;t1_gj2920j;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj29jba/;1610568025;3;True;False;anime;t5_2qh22;;0;[]; -[];;;rotten_riot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RottenOrange/;light;text;t2_20f93nxp;False;False;[];;"Nah, if episode 2 isn't good then I won't keep forcing myself lol - -If you mean I should watch both even if Gekidol ep 2 turns out to be good, I wish I could but I don't have the time. In that case I would bing watch the egg one on April.";False;False;;;;1610499267;;1610553213.0;{};gj29o83;False;t3_kvvrbd;False;True;t1_gj28jp7;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj29o83/;1610568117;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"Covid is Covid! - -So when he asked ""which is higher"" did he mean ""which is further up North""?";False;False;;;;1610499399;;False;{};gj29x0m;False;t3_kvvbaw;False;False;t3_kvvbaw;/r/anime/comments/kvvbaw/yatogamechan_kansatsu_nikki_sansatsume_episode_1/gj29x0m/;1610568279;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wtj143;;;[];;;;text;t2_3sjl4wmq;False;False;[];;And I thought Mappa has it rough making 2 major show. This is like Cloverworks' 3rd show this season.;False;False;;;;1610499789;;False;{};gj2amrf;False;t3_kvvrbd;False;False;t3_kvvrbd;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj2amrf/;1610568751;10;True;False;anime;t5_2qh22;;0;[]; -[];;;EstebanIsAGamerWord;;;[];;;;text;t2_4vhvkb76;False;False;[];;"The footsteps noises are funny because they're so bad. But lightning sounds in One Piece literally force me to mute my TV. It's like someone turned screaming rats into a fork and used it to drag against a plate. Flamingo, nails on a chalkboard, etc., none of them are as uncomfortable as lightning in OPOP - -Example: https://youtu.be/K40IwtnVNPY at 2:20";False;False;;;;1610499978;;1610500382.0;{};gj2azii;False;t3_kvtohs;False;True;t1_gj1tr9l;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj2azii/;1610568987;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaziezz;;;[];;;;text;t2_qyqfw;False;False;[];;Yu Yu Hakusho has a pretty cool vibe that’s still pretty time appropriate even though it’s like 25 years old at this point;False;False;;;;1610500914;;False;{};gj2cpqa;False;t3_kvv3dc;False;False;t3_kvv3dc;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj2cpqa/;1610570155;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"Yeah, there's no chance in hell I'm ever watching One Piece hah. - -I'll probably watch FMAB at some point, and I've been wanting to watch Monster for a while, but other than that, I tend to mostly watch seasonals, or older shows with just 1 or 2 seasons.";False;False;;;;1610501007;;False;{};gj2cvxl;False;t3_kvtohs;False;True;t1_gj1d3eq;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj2cvxl/;1610570276;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaziezz;;;[];;;;text;t2_qyqfw;False;False;[];;I watched all of haikyuu (3.5 seasons + OVAs + ‘movies’) and then read about 400 chapters in a week or two during quarantine. Mad at myself for putting it off for so long but I had caught up to everything released at the time.;False;False;;;;1610501052;;False;{};gj2cyuf;False;t3_kvyn9w;False;False;t3_kvyn9w;/r/anime/comments/kvyn9w/what_is_the_shortest_amount_of_time_you_finished/gj2cyuf/;1610570330;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thicccduccc;;;[];;;;text;t2_5a57mf33;False;False;[];;All of them are amazing too!;False;False;;;;1610501060;;False;{};gj2czdu;False;t3_kvvrbd;False;False;t1_gj2amrf;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj2czdu/;1610570340;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;Not really no even remembers it probably and that's unfortunate;False;False;;;;1610501071;;False;{};gj2d03c;False;t3_kvuhvx;False;True;t1_gj0gg0u;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj2d03c/;1610570353;1;True;False;anime;t5_2qh22;;0;[]; -[];;;8andahalfby11;;MAL;[];;https://myanimelist.net/animelist/thereIwasnt;dark;text;t2_kvyfg;False;False;[];;And the Crunchyroll Awards will *still* go to the most-watched shounen on Netflix anyway!;False;False;;;;1610501125;;False;{};gj2d3p9;False;t3_kvvrbd;False;False;t1_gj24e77;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj2d3p9/;1610570419;11;True;False;anime;t5_2qh22;;0;[]; -[];;;iamtheone11111;;;[];;;;text;t2_3esmzro8;False;False;[];;Me too..Although they killed it due to not having enough popularity, I really think some episodes would be really hard to dub..Since a lot of cases have some insane Japanese wordplay involved or some Japanese culture related to the clues which would take alot of effort into dubbing it..;False;False;;;;1610501559;;False;{};gj2dwhq;False;t3_kvtohs;False;True;t1_gj17krq;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj2dwhq/;1610570977;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Frances_Farmer_182;;;[];;;;text;t2_52v2dv7w;False;False;[];;I didn't notice until you pointed out but yeah kinda crazy lol;False;False;;;;1610501755;;False;{};gj2e9nf;False;t3_kvvrbd;False;False;t1_gj22jnt;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj2e9nf/;1610571227;10;True;False;anime;t5_2qh22;;0;[]; -[];;;albrioz;;;[];;;;text;t2_4crhwhhq;False;False;[];;The first episode Osomatsu-san has tons of references. I dropped the series after a few episodes because I expected something along the lines of the first episode for the rest of the season.;False;False;;;;1610501763;;False;{};gj2ea7g;False;t3_kvvj7n;False;True;t3_kvvj7n;/r/anime/comments/kvvj7n/anime_references_in_other_animes/gj2ea7g/;1610571238;2;True;False;anime;t5_2qh22;;0;[]; -[];;;iamtheone11111;;;[];;;;text;t2_3esmzro8;False;False;[];;"You watched all the YuGiOh Series..?? - -I watched the first 3 and felt like it dropped off a cliff after those.. Plus, since each series adds on its own unique summoning method, it got too confusing for me.. - -Are the other 3 worth checking out..?? I watched a couple of Zexal episodes and couldn't stand the main character, he doesn't look as cool as the previous main, he doesn't have that awesome personality either and he also whines too much..";False;False;;;;1610501897;;False;{};gj2eix4;False;t3_kvtohs;False;True;t1_gj14wke;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj2eix4/;1610571402;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;Yu yu Hakusho is a classic;False;False;;;;1610501903;;False;{};gj2ejcd;True;t3_kvv3dc;False;True;t1_gj2cpqa;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj2ejcd/;1610571410;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thicccduccc;;;[];;;;text;t2_5a57mf33;False;False;[];;Tbh, you're prob better off watching this one. Haven't seen Gekidol but judging by the polls, Wonder Egg is much better.;False;False;;;;1610501939;;False;{};gj2elop;False;t3_kvvrbd;False;False;t1_gj29o83;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj2elop/;1610571452;4;True;False;anime;t5_2qh22;;0;[]; -[];;;HobnobsTheRed;;;[];;;;text;t2_1ftgjit5;False;False;[];;"> So when he asked ""which is higher"" did he mean ""which is further up North""? - -Higher in the pyramid. Nagoya is top, so which out of Gifu/Mie was second.";False;False;;;;1610502627;;False;{};gj2fvl7;False;t3_kvvbaw;False;True;t1_gj29x0m;/r/anime/comments/kvvbaw/yatogamechan_kansatsu_nikki_sansatsume_episode_1/gj2fvl7/;1610572340;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaziezz;;;[];;;;text;t2_qyqfw;False;False;[];;It is! I’ve watched it with friends and they were all surprised something so old didn’t feel old.;False;False;;;;1610502725;;False;{};gj2g20w;False;t3_kvv3dc;False;True;t1_gj2ejcd;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj2g20w/;1610572464;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;That’s just a testament to how well written it actually is;False;False;;;;1610502769;;False;{};gj2g4za;True;t3_kvv3dc;False;True;t1_gj2g20w;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj2g4za/;1610572526;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Fairy Tail, a lot of episodes;False;False;;;;1610503292;;False;{};gj2h402;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj2h402/;1610573252;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Taerusaki;;skip7;[];;;dark;text;t2_1jiysgpw;False;False;[];;Just looked at your MAL and w t f that's alot of anime you have watched so far.;False;False;;;;1610503507;;False;{};gj2hid7;False;t3_kvtohs;False;True;t1_gj09p60;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj2hid7/;1610573563;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaziezz;;;[];;;;text;t2_qyqfw;False;False;[];;Yep! I think it also helps that there’s not a lot of technology in it: I find that can age an anime really easily.;False;False;;;;1610503580;;False;{};gj2hnev;False;t3_kvv3dc;False;True;t1_gj2g4za;/r/anime/comments/kvv3dc/what_is_the_coolest_anime_you_ever_seen/gj2hnev/;1610573672;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Taerusaki;;skip7;[];;;dark;text;t2_1jiysgpw;False;False;[];;Only watched Naruto and Naruto Shippuden (not including the fillers);False;False;;;;1610503624;;False;{};gj2hqa2;False;t3_kvtohs;False;False;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj2hqa2/;1610573732;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;So if it was paced properly then you'd expect it to be around 300-450 episodes so far.;False;False;;;;1610503791;;False;{};gj2i1n1;False;t3_kvtohs;False;True;t1_gj0faww;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj2i1n1/;1610573957;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ToxxicDuck;;;[];;;;text;t2_29j9hsmc;False;False;[];;Currently highschool dxd but I’ve started one piece so we’ll see where that goes;False;False;;;;1610504287;;False;{};gj2iz2l;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj2iz2l/;1610574635;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Koozzie;;;[];;;;text;t2_8j92z;False;False;[];;I only noticed one that did, but its hard trying to watch them in sub lol so I haven't watched as many as I could have;False;False;;;;1610504469;;False;{};gj2jb8y;False;t3_kvtohs;False;True;t1_gj2dwhq;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj2jb8y/;1610574876;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Urielvls_007;;;[];;;;text;t2_9siideao;False;False;[];;the longest anime series I've watched.;False;False;;;;1610504531;;False;{};gj2jfex;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj2jfex/;1610574956;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iamtheone11111;;;[];;;;text;t2_3esmzro8;False;False;[];;I watched in Sub till around episode 600 or something..But then some cases seemed to get a bit repetitive in motive so just stopped watching..;False;False;;;;1610504790;;False;{};gj2jx75;False;t3_kvtohs;False;False;t1_gj2jb8y;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj2jx75/;1610575313;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MisogynistFurry;;;[];;;;text;t2_95pvntru;False;False;[];;Dororo to Hyakkimaru and Space Cobra;False;False;;;;1610505252;;False;{};gj2ksn4;False;t3_kvz2s9;False;True;t3_kvz2s9;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj2ksn4/;1610575920;1;True;False;anime;t5_2qh22;;0;[]; -[];;;diivandi;;;[];;;;text;t2_4e0vvsnc;False;False;[];;Violet evergarden, Bunny-senpai. Both have 13 anime episodes before the movies tho;False;False;;;;1610507979;;False;{};gj2pw3g;False;t3_kvtp2s;False;True;t3_kvtp2s;/r/anime/comments/kvtp2s/so_today_i_have_watched_a_silent_voice_your_name/gj2pw3g/;1610579517;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Saitama058;;;[];;;;text;t2_76sp7df6;False;False;[];;I think it deserves more attention.;False;False;;;;1610510491;;False;{};gj2uamw;True;t3_kvuhvx;False;True;t1_gj1xp21;/r/anime/comments/kvuhvx/the_most_underrated_openings_in_your_opinion/gj2uamw/;1610582579;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JungleMamba27;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jungle-Mamba;light;text;t2_2ux1u0oe;False;False;[];;My friend watched all of naruto / shippuden in ~40 days;False;False;;;;1610511041;;False;{};gj2v844;False;t3_kvtohs;False;True;t1_gj09p9s;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj2v844/;1610583207;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;I'm not a fan of long anime, but my two are My hero academia(All OVA and movies) and Symphogear(it beats AOT by literally 1 episode);False;False;;;;1610511850;;False;{};gj2wldu;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj2wldu/;1610584134;1;True;False;anime;t5_2qh22;;0;[]; -[];;;REMAINSkull;;;[];;;;text;t2_2qnbeyrc;False;False;[];;ashita no joe 1 and 2 combined;False;False;;;;1610512390;;False;{};gj2xhd6;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj2xhd6/;1610584708;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FZJavier;;;[];;;;text;t2_10d2ae;False;False;[];;monster. i think is 73 or 74 episodes? cant remember.;False;False;;;;1610513772;;False;{};gj2znq6;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj2znq6/;1610586081;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Soliquidsnake;;;[];;;;text;t2_p7oxc;False;False;[];;Goodness I’ll never forgot that specific feeling I got inside after watching this.;False;False;;;;1610514106;;False;{};gj305w5;False;t3_kvtp2s;False;True;t1_gj0a8c2;/r/anime/comments/kvtp2s/so_today_i_have_watched_a_silent_voice_your_name/gj305w5/;1610586444;2;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;Yeah, I don't say this lightly, but it's got a Madoka-esque start.;False;False;;;;1610515407;;False;{};gj322h8;False;t3_kvvrbd;False;False;t1_gj0z5id;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj322h8/;1610587699;13;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610515890;;False;{};gj32r2l;False;t3_kvtohs;False;True;t1_gj1z3up;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj32r2l/;1610588136;1;True;False;anime;t5_2qh22;;0;[]; -[];;;harakirito;;;[];;;;text;t2_29if8jdg;False;False;[];;"TWENTY-THREE and still watching anime??? Yikes! - -/s - -I've been through a similar phase, what you should know is that there's nothing wrong with taking an extended break from anime. We all eventually get tired of something even if we love it. Go experience other hobbies and let your memories of anime fade. You probably won't even care for it at some point but if anime really is the thing for you there will be plenty of opportunities for you to get back into it down the line with a renewed perspective (there's many ways to enjoy anime other than just pure dopamine hits). Otherwise you probably found something better to do with your time and there's nothing wrong with that. - -I was going to recommend watching more variety, but based on the shows you mentioned it seems that the average female anime fan digs much deeper into the medium than your average redditor.";False;False;;;;1610516868;;False;{};gj34368;False;t3_kvvsse;False;False;t3_kvvsse;/r/anime/comments/kvvsse/has_anyone_else_outgrown_anime_and_gotten_sad/gj34368/;1610588978;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JadeDragon56;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/JadeDragon56;light;text;t2_ee93o;False;False;[];;Naruto, but that's cause I started way back when it was first airing. Ive tried rewatching and can't do it.;False;False;;;;1610516891;;False;{};gj344c6;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj344c6/;1610588997;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;If going by MAL numbers many Minna no Uta entries have under 100 members;False;False;;;;1610517551;;False;{};gj350er;False;t3_kvz2s9;False;True;t3_kvz2s9;/r/anime/comments/kvz2s9/an_anime_you_think_youre_only_one_of_onehundred/gj350er/;1610589559;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RayyanCW;;;[];;;;text;t2_3vk3dciw;False;False;[];;Boring, where's the comedy?;False;False;;;;1610517588;;False;{};gj3526v;False;t3_kvvbaw;False;True;t3_kvvbaw;/r/anime/comments/kvvbaw/yatogamechan_kansatsu_nikki_sansatsume_episode_1/gj3526v/;1610589592;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Harinezumi;;;[];;;;text;t2_4az8h;False;False;[];;With a healthy dose of Flip Flappers thrown in.;False;False;;;;1610517920;;False;{};gj35hpg;False;t3_kvvrbd;False;False;t1_gj322h8;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj35hpg/;1610589887;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Storm137;;;[];;;;text;t2_ogrzx;False;False;[];;Sincerely I think this is the next Madoka and has potential to be the next Lain;False;False;;;;1610518837;;False;{};gj36no6;False;t3_kvvrbd;False;True;t3_kvvrbd;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj36no6/;1610590665;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Storm137;;;[];;;;text;t2_ogrzx;False;False;[];;Get ublock origin, pop up blocker just to be safe then your good.;False;False;;;;1610518893;;False;{};gj36q6w;False;t3_kvvrbd;False;True;t1_gj29jba;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj36q6w/;1610590711;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Storm137;;;[];;;;text;t2_ogrzx;False;False;[];;This is amazing, one of the strongest firsts I've seen since Winter 2019.;False;False;;;;1610518921;;False;{};gj36rhx;False;t3_kvvrbd;False;True;t1_gj17740;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj36rhx/;1610590734;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nikos_strlkss;;;[];;;;text;t2_5xhq8iu0;False;False;[];;"ZeXal is a slow burn. It will not get good until the second half of the series(about 70 episodes in) But trust me, when it gets good it gets DAMN GOOD. It's final arc is phenomenal. But to get there you will have to endure the first half of the series which is kinda garbage. The main character Yuma isn't that good of a character and he doesn't really change much either but there are some other great characters introduced that make up for it. His two rivals in particular are very interesting. The second half of this series is probably the most fun I've had watching Yu-Gi-Oh but it get sooo long to get there so it is up to how much patience you have. Tbh, i watched it in its entirety because I watched it when I was first getting into anime, if I started watching it now I would have probably dropped it by episode 5. Also, don't watch the dub it censors everything. It's summing method isn't confusing at all. - - - - - - - - - - - -Arc-V is in the opposite situation. After a solid introduction and a build up-qualifiers for tournament arc, we get a great tournament arc than spans from around episode 20 to episode 50. After that it is all downhill. The next arc is drawn out way longer than it needed and the final arcs are rushed. Not only that, but the ending is garbage. From my experience I know most Yu-Gi-Oh fans have different series that they like and they never really agree on something. The only thing they agree on is that they all hated Arc-V's ending. In my opinion the MC of this show is even worse than Zexal's MC. The summing method is a little more confusing than Zexal's but you get used to it. - - - - - - - - - - - - -VRains is probably the most consistent with how good it is. Zexal starts garbage and turns great, Arc-V starts great and turns garbage, VRains is kinda alright throughout the entire series. But I liked both the first arc of Arc-V and last arcs of ZeXal more than the best parts of this series. It isn't bad, it's just.. forgettable. The story now is much more serious and it drew me in really quickly because it did some things that have never been done before in Yu-Gi-Oh. What makes it forgettable is that it didn't have really good characters besides one that comes to mind right now. All the side characters where just jobbers existing just to lose to the 3 main characters and were never relevant to the plot. This protagonist doesn't do it either for me. He isn't annoying like in ZeXal, he is actually smart, serious, edgy and kinda savage sometimes. But he doesn't have character development. The summoning method is probably the most confusing out of all 3 but again, if you give it a couple of episodes it will stay with you. - - - - - - - - - - - -Overall, the first trilogy is much more appreciated that the last trilogy. Many people stop after 5Ds. I don't have a problem with that since I know the last three series don't have that many things to offer. I just think that the second half of ZeXal is phenomenal and one of the arcs there is my favourite arc in the entire franchise. But I can totally get why people drop it, it takes too long to get there.";False;False;;;;1610519766;;False;{};gj37spb;False;t3_kvtohs;False;True;t1_gj2eix4;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj37spb/;1610591393;1;True;False;anime;t5_2qh22;;0;[]; -[];;;konart;;;[];;;;text;t2_93kfo;False;False;[];;"> shitty internet - -is one of the main reasons to use torrents actually.";False;False;;;;1610520242;;False;{};gj38dc2;False;t3_kvvrbd;False;False;t1_gj29jba;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj38dc2/;1610591760;4;True;False;anime;t5_2qh22;;0;[]; -[];;;plasmaticD;;;[];;;;text;t2_nisan0p;False;False;[];;Me too, Hunter x Hunter, both complete versions;False;False;;;;1610522313;;False;{};gj3aqub;False;t3_kvtohs;False;False;t1_gj0dhwj;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj3aqub/;1610593321;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610522592;;False;{};gj3b24z;False;t3_kvtp2s;False;True;t3_kvtp2s;/r/anime/comments/kvtp2s/so_today_i_have_watched_a_silent_voice_your_name/gj3b24z/;1610593527;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wonderllama5;;;[];;;;text;t2_jqsfu;False;False;[];;"10 anime I think you should watch: - -Cowboy Bebop (dub), Samurai Champloo (dub), Steins Gate, Railgun, Fullmetal Alchemist: Brotherhood (dub), Re:Zero (Director's Cut), Erased, Darling in the Franxx, Demon Slayer, Fate/Zero - -Available on Netflix, Crunchyroll, Funimation, and/or Hulu - -Make a list at http://myanimelist.net and keep track of everything. Great way to find more recommendations too!";False;False;;;;1610522722;;False;{};gj3b79e;False;t3_kw00dd;False;True;t3_kw00dd;/r/anime/comments/kw00dd/how_to_start_with_anime/gj3b79e/;1610593618;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheePrestigious;;;[];;;;text;t2_4b0u96e2;False;False;[];;Yes, Clannad and the sequel are pretty good as well;False;False;;;;1610522753;;False;{};gj3b8h3;False;t3_kvtp2s;False;True;t1_gj18obf;/r/anime/comments/kvtp2s/so_today_i_have_watched_a_silent_voice_your_name/gj3b8h3/;1610593641;1;True;False;anime;t5_2qh22;;0;[]; -[];;;throwaway20348329;;;[];;;;text;t2_6ph1spwu;False;False;[];;"Near the end of the season, the two anime interact a la Re:Creators and by the end of the interaction both MC's eyes have somehow been ""resolved"".";False;False;;;;1610524183;;False;{};gj3crst;False;t3_kvvrbd;False;True;t1_gj22jnt;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj3crst/;1610594677;1;True;False;anime;t5_2qh22;;0;[]; -[];;;throwaway20348329;;;[];;;;text;t2_6ph1spwu;False;False;[];;"for many anime that's okay, but if you don't know how to practice safe torrenting and you choose an anime that has some kind of US/western licensing where you're threatening their money by DL/seeding, then you will probably be charged. - -Legislators still can't figure out how to competently outlaw streaming sites without knee-capping the entire internet, so stick to that if you can; although, I prefer ScriptSafe over uBlock.";False;False;;;;1610524658;;False;{};gj3d9nf;False;t3_kvvrbd;False;True;t1_gj38dc2;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj3d9nf/;1610595019;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KendotsX;;;[];;;;text;t2_j6nbtko;False;False;[];;Detective Conan;False;False;;;;1610525270;;False;{};gj3dwgn;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj3dwgn/;1610595432;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Espada_6;;;[];;;;text;t2_sb5ghaa;False;False;[];;What did they say?;False;False;;;;1610527893;;False;{};gj3gjps;False;t3_kvvrbd;False;False;t1_gj0wzee;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj3gjps/;1610597107;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRed_Man;;;[];;;;text;t2_5fwpnk59;False;False;[];;Is there a guide on how to practice safe torrenting? asking for a friend;False;False;;;;1610528139;;False;{};gj3gsis;False;t3_kvvrbd;False;True;t1_gj3d9nf;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj3gsis/;1610597263;3;True;False;anime;t5_2qh22;;0;[];True -[];;;BossandKings;;;[];;;;text;t2_5ifr53k7;False;False;[];;It depends on what you like, there are some recommendation charts in the sub that cover basically everything;False;False;;;;1610529463;;False;{};gj3i34f;False;t3_kw00dd;False;True;t3_kw00dd;/r/anime/comments/kw00dd/how_to_start_with_anime/gj3i34f/;1610598071;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AuroraFinem;;;[];;;;text;t2_6q0d1;False;False;[];;"The number of people charged with anything for pirating itself is essentially zero unless they were trying to tack it onto something else to help it stick. - -The most severe thing you might get, very very rarely depending on what site you use, your internet provider, and what you’re watching, you *might* get a cease and desist telling you to stop or it might be reported. The only time I’ve gotten this before was watching fantastic beasts while it was in theaters using the same site I always do for everything else not-anime. - -The FBI and anyone involved isn’t going to care a single ounce about you pirating shows/music/etc... otherwise you’d hear about *a lot* of people being fined or charged. The only time they ever do anything is occasional large scale crackdowns on the companies themselves hosting it and almost exclusively when they *sell* it which breaks more laws and actually proves loss of income which is required for a copywrite case since the person clearly was willing to pay for it just maybe not enough. However someone watching a free stream or download doesn’t necessarily count as loss of income since they might have just not ever watched it instead.";False;False;;;;1610529940;;False;{};gj3ijwk;False;t3_kvvrbd;False;True;t1_gj3d9nf;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj3ijwk/;1610598356;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ChickenCola22;;;[];;;;text;t2_7k6ugx50;False;False;[];;Inuyasha with 200+ eps and 4 movies. It was the first anime I ever watched beginning to end;False;False;;;;1610530065;;False;{};gj3io8w;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj3io8w/;1610598431;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Novelle_1020;;;[];;;;text;t2_3um1vzgu;False;False;[];;"MHA… which has 88 episodes so far. - -Damn I gotta watch more anime.";False;False;;;;1610531676;;False;{};gj3k82k;False;t3_kvtohs;False;True;t3_kvtohs;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj3k82k/;1610599384;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BossandKings;;;[];;;;text;t2_5ifr53k7;False;False;[];;This show is amazing, definitely the one i'm looking forward to the most this season.;False;False;;;;1610540131;;False;{};gj3sx4g;False;t3_kvvrbd;False;False;t3_kvvrbd;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj3sx4g/;1610604584;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iamtheone11111;;;[];;;;text;t2_3esmzro8;False;False;[];;"Ahan..so I might try to get into Zeal again, cause I really want to watch all of YuGiOh because it was one of my favourite series in anime.. - -The confusing aspect of summoning in the sense that my previous decks become sort of irrelevant against these newer decks..And there are just too many moving parts.. - -I loved the Monster Cards in the first 3 series, dont know much about the number cards so they might get to be interesting.. I watched the original trilogy in dub and finished off GX and 5Ds in sub because I really liked the voice actors and the dub wasn't even that bad even after removing the darker aspects.. Lets see tho..Maybe Zexal will win me over..";False;False;;;;1610540550;;False;{};gj3tf32;False;t3_kvtohs;False;True;t1_gj37spb;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj3tf32/;1610604873;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nikos_strlkss;;;[];;;;text;t2_5xhq8iu0;False;False;[];;"My main problem with the dub isn't voice acting, it is the removal or replacement of amazing OST that were on the Japanese version. Just listen at this perfection - -[Yu-Gi-Oh Duel Monsters, God's Anger](https://youtu.be/BGxYef6pmN0 ) - -[Yu-Gi-Oh Duel Monsters, Passionate Duelist](https://youtu.be/b7t6rZUZmfE) - -[Yu-Gi-Oh Duel Monsters, Fang of Critias](https://youtu.be/m9vQ0jwP6ZY) - -[Yu-Gi-Oh GX, Impossible Victory](https://youtu.be/6MR8GPSTwOk) - -[Yu-Gi-Oh GX, Camula's theme](https://youtu.be/IpJxVx9zDKI) - -[Yu-Gi-Oh GX, Judai's theme](https://youtu.be/varwgekenfs) - -[Yu-Gi-Oh 5Ds, Yusei's theme](https://youtu.be/5Jrorstglj0) - -[Yu-Gi-Oh 5Ds, Jack Atlas Battle theme](https://youtu.be/ibHU7K2mnVg) - -I was also kind of annoyed by unnecessary changes but overall I still think the dub is fine. At least the dub for the original series has some great voice actors. But 4kids is a despicable company.";False;False;;;;1610542024;;False;{};gj3v9y4;False;t3_kvtohs;False;False;t1_gj3tf32;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj3v9y4/;1610605964;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SHARK_QUASAR;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/SHARKQUASAR/;light;text;t2_dsr05;False;False;[];;Using a VPN should do the trick, I think.;False;False;;;;1610542134;;False;{};gj3vf8t;False;t3_kvvrbd;False;True;t1_gj3gsis;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj3vf8t/;1610606050;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SHARK_QUASAR;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/SHARKQUASAR/;light;text;t2_dsr05;False;False;[];;It went to Made in Abyss once so there is hope.;False;False;;;;1610542226;;False;{};gj3vjk9;False;t3_kvvrbd;False;False;t1_gj2d3p9;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj3vjk9/;1610606122;3;True;False;anime;t5_2qh22;;0;[]; -[];;;P0lpett0n3;;;[];;;;text;t2_41b4i981;False;False;[];;very helpful list, thanks!;False;False;;;;1610543611;;False;{};gj3xg13;True;t3_kvvb2i;False;True;t1_gj0keuc;/r/anime/comments/kvvb2i/looking_for_sliceofliferomance_anime_with_adult/gj3xg13/;1610607253;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iamtheone11111;;;[];;;;text;t2_3esmzro8;False;False;[];;"These are some amazing soundtracks but I dont think they would have worked with the English dub..Since they wanted the show to have a Cartoon feel rather than an anime dub feel..I despise 4Kids but not for when it comes to YuGiOh, since I watched the Original series when I was 8/9 years old and I wouldn't have gotten into it if it wasn't kidified... - -Also, 4Kids played a big part in popularising dubbed anime and anime in general in the west..";False;False;;;;1610544340;;False;{};gj3yj89;False;t3_kvtohs;False;True;t1_gj3v9y4;/r/anime/comments/kvtohs/what_is_the_longest_anime_series_you_watched/gj3yj89/;1610607884;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jslice4ever;;;[];;;;text;t2_2wvi51tm;False;False;[];;They asked why anyone should care about a series that was barely advertised.;False;False;;;;1610564231;;False;{};gj53rvz;False;t3_kvvrbd;False;True;t1_gj3gjps;/r/anime/comments/kvvrbd/original_tv_anime_wonder_egg_priority_is_listed/gj53rvz/;1610631616;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610698864;;1610699100.0;{};gjbq4ew;False;t3_kvwb2o;False;True;t3_kvwb2o;/r/anime/comments/kvwb2o/where_to_watch_the_promised_neverland_s2/gjbq4ew/;1610786018;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610520811;;False;{};gj3919q;False;t3_kwb5h6;False;True;t3_kwb5h6;/r/anime/comments/kwb5h6/black_doves_founding_stage/gj3919q/;1610592187;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;"Code Geass - -Overlords not not actually finished but it applies";False;False;;;;1610521374;;False;{};gj39oln;False;t3_kwb819;False;False;t3_kwb819;/r/anime/comments/kwb819/animes_where_the_mc_is_sort_of_a_bad_guy_but_they/gj39oln/;1610592619;12;True;False;anime;t5_2qh22;;0;[]; -[];;;baquea;;;[];;;;text;t2_j3k0u;False;True;[];;An hour every day for three years? Well good luck, I guess?;False;False;;;;1610521672;;False;{};gj3a0qi;False;t3_kwb8ig;False;True;t3_kwb8ig;/r/anime/comments/kwb8ig/introducing_anime_hour_my_friends_and_i_are/gj3a0qi/;1610592843;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ABoredCompSciStudent;;MAL;[];;https://myanimelist.net/profile/serendipity;dark;text;t2_zqflo;False;False;[];;"Sorry, your submission has been removed. - -- This looks like it's - a single image. - This is a form of restricted content that isn't allowed as a full post on the sub. You might consider posting about this sort of thing in the [weekly Casual Discussion Fridays megathread](https://www.reddit.com/r/anime/search?q=title%3A%22Casual+Discussion+Fridays%22+subreddit%3Aanime+author%3AAnimeMod&restrict_sr=on&sort=new&t=week) if it applies. See [our rules page](https://www.reddit.com/r/anime/wiki/rules#wiki_restricted_content) for a full list of restricted content categories. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610521728;moderator;False;{};gj3a314;False;t3_kwb8ig;False;True;t3_kwb8ig;/r/anime/comments/kwb8ig/introducing_anime_hour_my_friends_and_i_are/gj3a314/;1610592884;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JinNrkm77;;;[];;;;text;t2_9i6dazn8;False;False;[];;91 Days;False;False;;;;1610521860;;False;{};gj3a8ge;False;t3_kwb819;False;False;t3_kwb819;/r/anime/comments/kwb819/animes_where_the_mc_is_sort_of_a_bad_guy_but_they/gj3a8ge/;1610592983;4;True;False;anime;t5_2qh22;;0;[]; -[];;;mobilegamegod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Aochhi;light;text;t2_pkuqf;False;False;[];;What?;False;False;;;;1610521949;;False;{};gj3ac1x;False;t3_kwbeqs;False;True;t3_kwbeqs;/r/anime/comments/kwbeqs/dear_anime_watcherssub_just_cause_we_watch_anime/gj3ac1x/;1610593047;7;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610521996;moderator;False;{};gj3ae00;False;t3_kwbfjt;False;True;t3_kwbfjt;/r/anime/comments/kwbfjt/can_anybody_help_me_with_my_anime_to_watch_list/gj3ae00/;1610593083;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi MetroidofHyrule, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610521996;moderator;False;{};gj3ae0n;False;t3_kwbfjt;False;True;t3_kwbfjt;/r/anime/comments/kwbfjt/can_anybody_help_me_with_my_anime_to_watch_list/gj3ae0n/;1610593084;1;False;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;What are you trying to say? You don't need to understand Japanese to read English subs;False;False;;;;1610522102;;False;{};gj3ai84;False;t3_kwbeqs;False;True;t3_kwbeqs;/r/anime/comments/kwbeqs/dear_anime_watcherssub_just_cause_we_watch_anime/gj3ai84/;1610593164;3;True;False;anime;t5_2qh22;;0;[]; -[];;;enoesraht;;;[];;;;text;t2_50ftr97e;False;False;[];;Livechart.me is where it's at. It's classified by season.;False;False;;;;1610522123;;False;{};gj3aj1o;False;t3_kwb6rj;False;True;t3_kwb6rj;/r/anime/comments/kwb6rj/reliable_anime_new_sources/gj3aj1o/;1610593178;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lonely-Gin;;;[];;;;text;t2_60yzl3bm;False;False;[];;Naaanniiiii??? Nihongo ga hanasenai???? Ayaaaaaa 😂;False;False;;;;1610522165;;False;{};gj3akte;False;t3_kwbeqs;False;True;t3_kwbeqs;/r/anime/comments/kwbeqs/dear_anime_watcherssub_just_cause_we_watch_anime/gj3akte/;1610593213;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FuruiOnara;;;[];;;;text;t2_477q2pi9;False;False;[];;Ahhh sooo;False;False;;;;1610522248;;False;{};gj3ao8u;False;t3_kwbeqs;False;True;t3_kwbeqs;/r/anime/comments/kwbeqs/dear_anime_watcherssub_just_cause_we_watch_anime/gj3ao8u/;1610593274;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];; myanimelist https://myanimelist.net/topanime.php?type=upcoming;False;False;;;;1610522315;;False;{};gj3aqww;False;t3_kwb6rj;False;True;t3_kwb6rj;/r/anime/comments/kwb6rj/reliable_anime_new_sources/gj3aqww/;1610593322;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BogeyT15;;;[];;;;text;t2_1o0sth3;False;False;[];;One piece, dragon ball, devil may cry, space dandy, trigun,;False;False;;;;1610522536;;False;{};gj3azvq;False;t3_kwbfjt;False;True;t3_kwbfjt;/r/anime/comments/kwbfjt/can_anybody_help_me_with_my_anime_to_watch_list/gj3azvq/;1610593488;0;True;False;anime;t5_2qh22;;0;[]; -[];;;laikalal;;;[];;;;text;t2_8m07qvrz;False;False;[];;Just saying beautiful language don't get confused;False;False;;;;1610522750;;False;{};gj3b8cd;True;t3_kwbeqs;False;True;t3_kwbeqs;/r/anime/comments/kwbeqs/dear_anime_watcherssub_just_cause_we_watch_anime/gj3b8cd/;1610593638;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;KragnothOSRS;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DJGHOSTMODE;light;text;t2_ck00x7i;False;False;[];;So ka;False;False;;;;1610522753;;False;{};gj3b8gn;False;t3_kwbeqs;False;True;t1_gj3ao8u;/r/anime/comments/kwbeqs/dear_anime_watcherssub_just_cause_we_watch_anime/gj3b8gn/;1610593641;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610522775;moderator;False;{};gj3b9bn;False;t3_kwbltc;False;True;t3_kwbltc;/r/anime/comments/kwbltc/has_anybody_seen_angel_densetsu/gj3b9bn/;1610593656;1;False;False;anime;t5_2qh22;;0;[]; -[];;;WhoIsMeredith;;;[];;;;text;t2_7o2vfl40;False;False;[];;Blue Exorcist, Kabaneri of the Iron Fortress, Deadman Wonderland;False;False;;;;1610522792;;False;{};gj3b9y0;False;t3_kwbfjt;False;True;t3_kwbfjt;/r/anime/comments/kwbfjt/can_anybody_help_me_with_my_anime_to_watch_list/gj3b9y0/;1610593667;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SadCapriSonne;;;[];;;;text;t2_yjzzw;False;False;[];;There is an angel densetsu anime?! I only read the manga a few times;False;False;;;;1610522844;;False;{};gj3bbz6;False;t3_kwbltc;False;True;t3_kwbltc;/r/anime/comments/kwbltc/has_anybody_seen_angel_densetsu/gj3bbz6/;1610593703;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"Sorry, your submission has been removed. - -- This looks like it's - a short discussion thread. - This is a form of restricted content that isn't allowed as a full post on the sub. You might consider posting about this sort of thing in the [weekly Casual Discussion Fridays megathread](https://www.reddit.com/r/anime/search?q=title%3A%22Casual+Discussion+Fridays%22+subreddit%3Aanime+author%3AAnimeMod&restrict_sr=on&sort=new&t=week) if it applies. See [our rules page](https://www.reddit.com/r/anime/wiki/rules#wiki_restricted_content) for a full list of restricted content categories. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610522874;moderator;False;{};gj3bd6n;False;t3_kwbeqs;False;True;t3_kwbeqs;/r/anime/comments/kwbeqs/dear_anime_watcherssub_just_cause_we_watch_anime/gj3bd6n/;1610593727;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Please create an anime list. You can create one at either: Myanimelist.net, anilist.co, kitsu or anime-planet. All 4 are free and easy to use. Helps you remember what you've seen and helps us so we aren't suggesting you what you've seen already. - -That'd really help you out so you don't have to write it repeatedly down, would help us too - -Akatsuki no Yona - -Seirei no Moribito - -Houseki no Kuni - -Black Lagoon - -Gurren Lagann - -Haikyuu - -Erased - -Death Note - -Death Parade - -Psycho-Pass - -Anohana - -Re Zero Starting Life in Another World - -Steins; Gate - -A Silent Voice - -Wolf Children - -Your Name - -Gakkou-Gurashi - -Talentless Nana - -Another - -Shinsekai Yori - -Zankyou no Terror";False;False;;;;1610522887;;False;{};gj3bdnw;False;t3_kwbfjt;False;True;t3_kwbfjt;/r/anime/comments/kwbfjt/can_anybody_help_me_with_my_anime_to_watch_list/gj3bdnw/;1610593735;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Yri4lf12;;;[];;;;text;t2_6bfipjd7;False;False;[];;If you have seen enough of it you understand rudimentary version of it.;False;False;;;;1610522897;;False;{};gj3be3a;False;t3_kwbeqs;False;True;t3_kwbeqs;/r/anime/comments/kwbeqs/dear_anime_watcherssub_just_cause_we_watch_anime/gj3be3a/;1610593742;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610522926;;False;{};gj3bf86;False;t3_kwb819;False;True;t3_kwb819;/r/anime/comments/kwb819/animes_where_the_mc_is_sort_of_a_bad_guy_but_they/gj3bf86/;1610593763;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;"Attack on Titan S1 is the literal antithesis of this statement. - -MC is good but not successful.";False;False;;;;1610522995;;False;{};gj3bhv5;False;t3_kwb819;False;False;t3_kwb819;/r/anime/comments/kwb819/animes_where_the_mc_is_sort_of_a_bad_guy_but_they/gj3bhv5/;1610593808;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610523042;;False;{};gj3bjof;False;t3_kwb819;False;True;t1_gj3bhv5;/r/anime/comments/kwb819/animes_where_the_mc_is_sort_of_a_bad_guy_but_they/gj3bjof/;1610593840;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610523084;;False;{};gj3blb6;False;t3_kwb819;False;True;t1_gj3bjof;/r/anime/comments/kwb819/animes_where_the_mc_is_sort_of_a_bad_guy_but_they/gj3blb6/;1610593870;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;i thought it was good tbh. Mappa's doing well imo.;False;False;;;;1610523737;;False;{};gj3caqd;False;t3_kwbpy1;False;True;t3_kwbpy1;/r/anime/comments/kwbpy1/attack_on_titan_the_final_season_episode_1/gj3caqd/;1610594344;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Pretty good, we all prefer 2d of course, but knowing what's coming its expected of them, Wit eventually would have to switch to cg because after some part it'd just be impossible with a tv schedule and budget;False;False;;;;1610523743;;False;{};gj3cay1;False;t3_kwbpy1;False;True;t3_kwbpy1;/r/anime/comments/kwbpy1/attack_on_titan_the_final_season_episode_1/gj3cay1/;1610594347;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MetroidofHyrule;;;[];;;;text;t2_6eu8j63s;False;False;[];;I’m reading the one Piece manga, and I’m currently on the Paramount War arc;False;False;;;;1610523812;;False;{};gj3cdoq;True;t3_kwbfjt;False;True;t1_gj3azvq;/r/anime/comments/kwbfjt/can_anybody_help_me_with_my_anime_to_watch_list/gj3cdoq/;1610594404;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;"The team say that not all the titans will be' in CGI. -Now POSSIBLE SPOILER, in the op 6 prediction the titans dont seems in CGI. -But this CGI is good imo";False;False;;;;1610523815;;False;{};gj3cdsy;False;t3_kwbpy1;False;True;t3_kwbpy1;/r/anime/comments/kwbpy1/attack_on_titan_the_final_season_episode_1/gj3cdsy/;1610594407;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MetroidofHyrule;;;[];;;;text;t2_6eu8j63s;False;False;[];;I have this in Google notes, and will cut out any anime that I’ve watched, but thanks for the recommendations!!;False;False;;;;1610523880;;False;{};gj3cga7;True;t3_kwbfjt;False;True;t1_gj3bdnw;/r/anime/comments/kwbfjt/can_anybody_help_me_with_my_anime_to_watch_list/gj3cga7/;1610594457;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;I liked that episode a lot and was a good start to the season. I think so MAPPA is doing a phenomenal job with the adaptation and those CGI Titans weren't that a problem for me.;False;False;;;;1610524073;;False;{};gj3cno2;False;t3_kwbpy1;False;True;t3_kwbpy1;/r/anime/comments/kwbpy1/attack_on_titan_the_final_season_episode_1/gj3cno2/;1610594593;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610524116;moderator;False;{};gj3cpch;False;t3_kwbvvn;False;True;t3_kwbvvn;/r/anime/comments/kwbvvn/who_is_this_and_which_anime_is_she_from_because_i/gj3cpch/;1610594627;1;False;False;anime;t5_2qh22;;0;[]; -[];;;VedoTheUgly;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/OMK5;light;text;t2_403qoom3;False;False;[];;I'd also like to know;False;False;;;;1610524143;;False;{};gj3cqbj;False;t3_kwbvvn;False;True;t3_kwbvvn;/r/anime/comments/kwbvvn/who_is_this_and_which_anime_is_she_from_because_i/gj3cqbj/;1610594648;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hello47758;;;[];;;;text;t2_9qel0tvo;False;False;[];;Well I haven’t really watched many anime yet maybe like 20. But so far I would have to say rascal does not dream of bunny girl senpai (including movie) because it just had me thinking for most of it. And it actually has a good ending. Contenders are erased but the ending sucked and naruto is too top bit to much filler. What’s urs?;False;False;;;;1610524254;;False;{};gj3cufj;False;t3_kwbvar;False;False;t3_kwbvar;/r/anime/comments/kwbvar/what_is_your_favorite_anime_give_the_genre/gj3cufj/;1610594728;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Eag1eOne;;skip7;[];;;dark;text;t2_9sp9oul3;False;False;[];;I think the anime is qualidea code as i remember it;False;False;;;;1610524259;;False;{};gj3cum8;False;t3_kwbvvn;False;True;t3_kwbvvn;/r/anime/comments/kwbvvn/who_is_this_and_which_anime_is_she_from_because_i/gj3cum8/;1610594731;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi fuckingtwatwaffle, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610524362;moderator;False;{};gj3cyes;False;t3_kwbxot;False;True;t3_kwbxot;/r/anime/comments/kwbxot/5_in_1_two_questions_an_apology_a_statement_and_a/gj3cyes/;1610594809;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Nour_NOOB;;;[];;;;text;t2_6ol5d3s1;False;False;[];;Jojo's bizzare adventure because the memes the fandom makes are just amazing plus the main character changes each part;False;False;;;;1610524544;;False;{};gj3d5fr;False;t3_kwbvar;False;True;t3_kwbvar;/r/anime/comments/kwbvar/what_is_your_favorite_anime_give_the_genre/gj3d5fr/;1610594942;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Due_Armadillo_2572;;;[];;;;text;t2_859xrbbg;False;False;[];;Honestly if you would’ve asked me when I first started it would’ve obviously been Naruto since that’s one of the mainstream introductions to anime. It still has a place in my heart but at this point I can’t choose just one. Erased was a good anime, and I do agree the ending could’ve been better but I haven’t heard of the other one you mentioned. I’ve been watching anime since early middle school days and have 8 pages of alphabetized anime in a Google Doc😅 so for me not to know that one I would appreciate it if you could talk a lil more about it;False;False;;;;1610524551;;False;{};gj3d5pd;True;t3_kwbvar;False;True;t1_gj3cufj;/r/anime/comments/kwbvar/what_is_your_favorite_anime_give_the_genre/gj3d5pd/;1610594946;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Due_Armadillo_2572;;;[];;;;text;t2_859xrbbg;False;False;[];;I haven’t watched it in full but ngl I’ve seen so many memes I feel like I’ve watched a series already😂;False;False;;;;1610524644;;False;{};gj3d94i;True;t3_kwbvar;False;True;t1_gj3d5fr;/r/anime/comments/kwbvar/what_is_your_favorite_anime_give_the_genre/gj3d94i/;1610595010;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Wtf is this HAHA - -I will Answer the number 1, and you could literally just check on Google ""nisekoi s2"" to see that its the same characters.";False;False;;;;1610524681;;False;{};gj3dahb;False;t3_kwbxot;False;True;t3_kwbxot;/r/anime/comments/kwbxot/5_in_1_two_questions_an_apology_a_statement_and_a/gj3dahb/;1610595034;2;True;False;anime;t5_2qh22;;0;[]; -[];;;drowninalcohol;;;[];;;;text;t2_9qabpw8f;False;False;[];;"1. They do if I remember correctly. - -5. Have you watched Your Lie in April/Anohana/Toradora? I love those tbh.";False;False;;;;1610524741;;False;{};gj3dcqm;False;t3_kwbxot;False;True;t3_kwbxot;/r/anime/comments/kwbxot/5_in_1_two_questions_an_apology_a_statement_and_a/gj3dcqm/;1610595074;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Miidas-92;;MAL;[];;https://myanimelist.net/profile/Miidas;dark;text;t2_ja1jx;False;False;[];;"**Favorite =** Cardcaptor Sakura - -**Genre =** Slice of Life, Drama, Adventure, Comedy, Romance (sub-genre = Mahou Shoujo). - -**Synopsis =** Sakura Kinomoto is a normal fourth grader, until one day, she becomes a magical girl. She must learn to balance her new secret duty with the everyday troubles of a young girl involving love, family, and school, all while she takes flight on her magical adventures as Sakura the Cardcaptor. - -**Why it's my favorite =** Many shows have made me reminisce of the past, but Cardcaptor Sakura captured a sense of nostalgia, greater than what I’ve felt from any other medium. There is an abnormal amount of innocence and acceptance, making it capable of tactfully dealing with mature themes through the eyes of a child, while remaining a relaxing and fun watch, as you know everything will be alright. It naturally juggles relaxing, comedic and dramatic moments, and all of these enhance each other to greater highs, making you truly care about its characters and the events unfolding. Both the magic system and world gradually expand on its possibilities, making sure there is always something new around the corner, not growing stale despite its episodic structure. - -CCS also got top notch production values, and is a contender for most gorgeous wardrobe and color palette in all of anime. It was also my gateway into more lighthearted magical girl anime.";False;False;;;;1610524947;;False;{};gj3dkhh;False;t3_kwbvar;False;False;t3_kwbvar;/r/anime/comments/kwbvar/what_is_your_favorite_anime_give_the_genre/gj3dkhh/;1610595213;7;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Hmmm_Interesting_hmm, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610525106;moderator;False;{};gj3dqdr;False;t3_kwc3d7;False;True;t3_kwc3d7;/r/anime/comments/kwc3d7/should_i_watch_reincarnated_as_a_slime_and/gj3dqdr/;1610595320;1;False;False;anime;t5_2qh22;;0;[]; -[];;;FuntasticoReddit;;;[];;;;text;t2_44rgdkne;False;False;[];;Yeah definitely one of the great isekais out there;False;False;;;;1610525255;;False;{};gj3dvwl;False;t3_kwc3d7;False;True;t3_kwc3d7;/r/anime/comments/kwc3d7/should_i_watch_reincarnated_as_a_slime_and/gj3dvwl/;1610595422;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Here_For_Memes_92;;;[];;;;text;t2_3p47rwje;False;False;[];;I really liked reincarnated as a slime its fun to watch and also funny. *Shield hero* is a uncommon yet good anime to watch *fire force* is also really good *jujutsu kaisen* is also a really good one for newer anime to see.;False;False;;;;1610525398;;1610525809.0;{};gj3e18j;False;t3_kwc3d7;False;True;t3_kwc3d7;/r/anime/comments/kwc3d7/should_i_watch_reincarnated_as_a_slime_and/gj3e18j/;1610595519;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hmmm_Interesting_hmm;;;[];;;;text;t2_3hdletla;False;False;[];;Oh really thanks, I've been slacking off anime because I don't want to be seen as a weeb but as of the moment, I'm the only one in my family that isn't an adult that watches anime.;False;False;;;;1610525470;;False;{};gj3e3vm;True;t3_kwc3d7;False;True;t1_gj3e18j;/r/anime/comments/kwc3d7/should_i_watch_reincarnated_as_a_slime_and/gj3e3vm/;1610595567;1;True;False;anime;t5_2qh22;;0;[]; -[];;;poeghostz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Poeghostz;light;text;t2_hp6jo;False;False;[];;"Thought the same. It ranged from pretty great (jaw titan) to horrific (beast titan) but regardless as with all CGI ""characters"" it was distracting for me. CGI aside, the directing and regular character animation is amazing as is the voice acting/ music/ story still killing it. - -I'm just hoping there can be at least 1 great 2D titan fight and that all the survey corps stay 2D while they're zipping about (3D humans in 2D anime kills me).";False;False;;;;1610525649;;False;{};gj3eah7;False;t3_kwbpy1;False;True;t3_kwbpy1;/r/anime/comments/kwbpy1/attack_on_titan_the_final_season_episode_1/gj3eah7/;1610595683;1;True;False;anime;t5_2qh22;;0;[]; -[];;;four-lokos;;;[];;;;text;t2_2lmsysym;False;False;[];;"a couple things before I give my recommendations! -chainsaw man doesn’t have an anime yet, rwby isn’t an anime (it’s American), castlevania isn’t an anime (it’s American), and boruto is mostly filler. These lil comments may help you narrow down what you want to watch next! - -I understand your watch next list has a particular order, but I am going to give you my top ten that I think you should watch next! - -- fmab - -- aot - -- mob psycho - -- the great pretender - -- the promised neverland - -- cowboy bebop - -- monster - -- parasyte - -- dr stone - -- demon slayer or soul eater - -I have only not seen like 2 of these on this list and I really think you have a solid list and some great choices! and I tried to name ones that are shorter! I would just tackle the longer ones later!";False;False;;;;1610525663;;1610525970.0;{};gj3eb0b;False;t3_kwbfjt;False;True;t3_kwbfjt;/r/anime/comments/kwbfjt/can_anybody_help_me_with_my_anime_to_watch_list/gj3eb0b/;1610595692;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MetroidofHyrule;;;[];;;;text;t2_6eu8j63s;False;False;[];;Also, I’d really prefer Shounen style anime and manga, but am open to sienen and other genres;False;False;;;;1610525735;;False;{};gj3edr6;True;t3_kwbfjt;False;True;t1_gj3b9y0;/r/anime/comments/kwbfjt/can_anybody_help_me_with_my_anime_to_watch_list/gj3edr6/;1610595740;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ABoredCompSciStudent;;MAL;[];;https://myanimelist.net/profile/serendipity;dark;text;t2_zqflo;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610525768;moderator;False;{};gj3ef0f;False;t3_kwb819;False;True;t1_gj3bjof;/r/anime/comments/kwb819/animes_where_the_mc_is_sort_of_a_bad_guy_but_they/gj3ef0f/;1610595761;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sendhelp404;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_39x4uqma;False;False;[];;"Hard to pick just one favourite but the first one that comes to mind is: - -xxxHolic (supernatural/comedy/mystery/drama) - -High schooler Watanuki is desperate to get rid of the yokai that are attracted to him and stumbles across a “wish shop” that only appears to those who want something. Mysterious shopkeeper Yuuko offers to remove the yokai in exchange for Watanuki running errands for her, which end up involving granting other people’s wishes. The caveat for granting wishes is that the price is non-negotiable, of equal value, and not necessarily tangible. - -Along with his classmates, the quiet but stubborn Doumeki and bubbly, always-smiling Himawari, Watanuki helps the wishing shop solve its supernatural requests while also uncovering the origins of Yuuko and the shop itself. - -I love it because I’m a sucker for anything with Japanese folklore, and this show balances its drama and comedy really well. The animation is unique, because CLAMP, but I really like how stylized it is and how much detail it can have. All the characters might seem one-dimensional initially but as the show goes on you see different sides of them, and while the show starts pretty episodic the overarching plot is great! This show balances eerie and mundane really well and I think it isn’t talked about as much as it should be nowadays";False;False;;;;1610525790;;False;{};gj3efsh;False;t3_kwbvar;False;True;t3_kwbvar;/r/anime/comments/kwbvar/what_is_your_favorite_anime_give_the_genre/gj3efsh/;1610595774;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MetroidofHyrule;;;[];;;;text;t2_6eu8j63s;False;False;[];;Is full metal alchemist Brotherhood like a sequel to Fullmetal alchemist?;False;False;;;;1610525802;;False;{};gj3eg7w;True;t3_kwbfjt;False;True;t1_gj3eb0b;/r/anime/comments/kwbfjt/can_anybody_help_me_with_my_anime_to_watch_list/gj3eg7w/;1610595781;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MetroidofHyrule;;;[];;;;text;t2_6eu8j63s;False;False;[];;Also castlevania has an anime on Netflix, and I enjoyed the games so I put two and two together lol;False;False;;;;1610525847;;False;{};gj3ehvw;True;t3_kwbfjt;False;True;t1_gj3eb0b;/r/anime/comments/kwbfjt/can_anybody_help_me_with_my_anime_to_watch_list/gj3ehvw/;1610595810;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sendhelp404;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_39x4uqma;False;False;[];;omg I didn’t read the other comments before I posted but glad to see the CLAMP nation rising up!!;False;False;;;;1610525854;;False;{};gj3ei4t;False;t3_kwbvar;False;True;t1_gj3dkhh;/r/anime/comments/kwbvar/what_is_your_favorite_anime_give_the_genre/gj3ei4t/;1610595815;2;True;False;anime;t5_2qh22;;0;[]; -[];;;four-lokos;;;[];;;;text;t2_2lmsysym;False;False;[];;"oh sorry I didn’t realize you put fma, not fmab! my bad!! - -it isn’t a sequel, rather a remake that followed the manga closer. I would say the majority of people recommend watching fmab over fma if you only want to watch one. however, they both are great!";False;False;;;;1610525894;;False;{};gj3ejkm;False;t3_kwbfjt;False;True;t1_gj3eg7w;/r/anime/comments/kwbfjt/can_anybody_help_me_with_my_anime_to_watch_list/gj3ejkm/;1610595841;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fuckingtwatwaffle;;;[];;;;text;t2_9clsh89z;False;False;[];;"Toradora is lying on the shelf on episode 12, gathering dust. -Nope, all of the other ones I haven't watched yet. Will try though. -Your lie in april was *kinda* on the list anyway. -But toradora is one of those anime on my watchlist that will be gathering dust till I have completely nothing else to watch. -It's fun as hell, but it doesn't get a grip with me, it's as if trying to grip a hotrod on ice.";False;False;;;;1610525909;;False;{};gj3ek49;True;t3_kwbxot;False;True;t1_gj3dcqm;/r/anime/comments/kwbxot/5_in_1_two_questions_an_apology_a_statement_and_a/gj3ek49/;1610595850;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fuckingtwatwaffle;;;[];;;;text;t2_9clsh89z;False;False;[];;Thanks for the answer though!;False;False;;;;1610525924;;False;{};gj3ekoh;True;t3_kwbxot;False;True;t1_gj3dcqm;/r/anime/comments/kwbxot/5_in_1_two_questions_an_apology_a_statement_and_a/gj3ekoh/;1610595859;1;True;False;anime;t5_2qh22;;0;[]; -[];;;four-lokos;;;[];;;;text;t2_2lmsysym;False;False;[];;oh mb I didn’t specify! rwby and castlevania are american that’s what I meant, they’re not animes technically! just letting you know if you wanted specifically only watch anime!;False;False;;;;1610525942;;False;{};gj3elbl;False;t3_kwbfjt;False;True;t1_gj3ehvw;/r/anime/comments/kwbfjt/can_anybody_help_me_with_my_anime_to_watch_list/gj3elbl/;1610595871;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Here_For_Memes_92;;;[];;;;text;t2_3p47rwje;False;False;[];;*Become a weeb join us*. well i hope you enjoy those ones.;False;False;;;;1610526020;;False;{};gj3eo1t;False;t3_kwc3d7;False;True;t1_gj3e3vm;/r/anime/comments/kwc3d7/should_i_watch_reincarnated_as_a_slime_and/gj3eo1t/;1610595919;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MetroidofHyrule;;;[];;;;text;t2_6eu8j63s;False;False;[];;Nah, in fact my favorite show is ninja turtles;False;False;;;;1610526036;;False;{};gj3eon0;True;t3_kwbfjt;False;True;t1_gj3elbl;/r/anime/comments/kwbfjt/can_anybody_help_me_with_my_anime_to_watch_list/gj3eon0/;1610595930;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Miidas-92;;MAL;[];;https://myanimelist.net/profile/Miidas;dark;text;t2_ja1jx;False;False;[];;Yeah, CLAMP is great. I enjoyed the xxxHolic anime, but actually found the manga even better. If you haven't already, I'd recommend reading Tsubasa Chronicles and xxxHolic at the same time, since their stories are connected.;False;False;;;;1610526037;;False;{};gj3eoo6;False;t3_kwbvar;False;True;t1_gj3ei4t;/r/anime/comments/kwbvar/what_is_your_favorite_anime_give_the_genre/gj3eoo6/;1610595930;2;True;False;anime;t5_2qh22;;0;[]; -[];;;four-lokos;;;[];;;;text;t2_2lmsysym;False;False;[];;oh nice, I never have seen rwby. i’ve heard it doesn’t have great animation but castlevania is pretty good!;False;False;;;;1610526092;;False;{};gj3eqpa;False;t3_kwbfjt;False;True;t1_gj3eon0;/r/anime/comments/kwbfjt/can_anybody_help_me_with_my_anime_to_watch_list/gj3eqpa/;1610595966;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hmmm_Interesting_hmm;;;[];;;;text;t2_3hdletla;False;False;[];;Don't worry I'm already a weeb because of all the mangas ive started.;False;False;;;;1610526102;;False;{};gj3er2k;True;t3_kwc3d7;False;True;t1_gj3eo1t;/r/anime/comments/kwc3d7/should_i_watch_reincarnated_as_a_slime_and/gj3er2k/;1610595971;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fuckingtwatwaffle;;;[];;;;text;t2_9clsh89z;False;False;[];;"I know. I wasn't asking really about that. -And no need to be *that* rude. -I was just reassuring myself. -Whatever. -Sorry for wasting your time lol. -The Idea is great, however the presentation of the idea... not so much. -Thank you though. I have seen the character cast, and I have seen the description. Both state that there is some new character, but that the events of the first season continue where they left off. - - -**I needed reassurment, not some smartass saying to ""Google it."", if it was urgent, I would have.**";False;False;;;;1610526169;;False;{};gj3eti5;True;t3_kwbxot;False;True;t1_gj3dahb;/r/anime/comments/kwbxot/5_in_1_two_questions_an_apology_a_statement_and_a/gj3eti5/;1610596013;0;True;False;anime;t5_2qh22;;0;[]; -[];;;MetroidofHyrule;;;[];;;;text;t2_6eu8j63s;False;False;[];;Also on the chainsaw man thing, it’s believed to premier in November, and I plan on finishing City Hunter, Rurouni Kenshin, and Yu Yu Hakusho before that, also adding on that I’m gonna put my list on hiatus when Stone Ocean comes out, since I loved the manga;False;False;;;;1610526285;;False;{};gj3exox;True;t3_kwbfjt;False;True;t1_gj3eqpa;/r/anime/comments/kwbfjt/can_anybody_help_me_with_my_anime_to_watch_list/gj3exox/;1610596088;2;True;False;anime;t5_2qh22;;0;[]; -[];;;four-lokos;;;[];;;;text;t2_2lmsysym;False;False;[];;oh I understand! I heard that it had an adaption! I just meant currently it doesn’t have an adaption yet! super pumped for stone ocean too!;False;False;;;;1610526333;;False;{};gj3ezcq;False;t3_kwbfjt;False;False;t1_gj3exox;/r/anime/comments/kwbfjt/can_anybody_help_me_with_my_anime_to_watch_list/gj3ezcq/;1610596117;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GalacticAronn654;;;[];;;;text;t2_7vjoglh2;False;True;[];;I agree with you wholeheartedly;False;False;;;;1610526336;;False;{};gj3ezgw;False;t3_kwcary;False;True;t3_kwcary;/r/anime/comments/kwcary/suppose_a_kid_from_the_last_dungeon_has_bad_pacing/gj3ezgw/;1610596119;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Left-Chance-4564;;;[];;;;text;t2_7p92oo57;False;False;[];;"Just to clarify, WiT dropped AoT. Even if they get better scheduling,they still wouldn’t come back For various reasons,The decision was made way back in 2018. - -About the cgi, I think just like us sub watchers,you just need some to get used to it. I actually preferred the fluid animation style this season is providing due to usage of cgi compared to lots of still images or impact less movement of s3(Reiner vs Eren in p2).";False;False;;;;1610526383;;1610540088.0;{};gj3f15q;False;t3_kwbpy1;False;False;t3_kwbpy1;/r/anime/comments/kwbpy1/attack_on_titan_the_final_season_episode_1/gj3f15q/;1610596149;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Don-Chang;;;[];;;;text;t2_1c16c9fn;False;False;[];;Mikasa hands down;False;False;;;;1610526532;;False;{};gj3f6i4;False;t3_kwccyy;False;False;t3_kwccyy;/r/anime/comments/kwccyy/who_is_the_most_powerful_titan_in_attack_on_titan/gj3f6i4/;1610596244;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamingre10;;;[];;;;text;t2_8uhne15x;False;False;[];;I think it is the armored titan because he is strong fast and big;False;True;;comment score below threshold;;1610526602;;False;{};gj3f920;True;t3_kwccyy;False;True;t3_kwccyy;/r/anime/comments/kwccyy/who_is_the_most_powerful_titan_in_attack_on_titan/gj3f920/;1610596287;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;MetroidofHyrule;;;[];;;;text;t2_6eu8j63s;False;False;[];;Yeah I just looked it up lmao. Stone ocean is my favorite part, and I’d love to see the how DP would incorporate Bohemian Rhapsody considering how harsh copyright is with JJBA.;False;False;;;;1610526667;;False;{};gj3fbd8;True;t3_kwbfjt;False;True;t1_gj3ezcq;/r/anime/comments/kwbfjt/can_anybody_help_me_with_my_anime_to_watch_list/gj3fbd8/;1610596325;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rare-Examination1142;;;[];;;;text;t2_7pilbejh;False;False;[];;The Founding Titan.;False;False;;;;1610526708;;False;{};gj3fct1;False;t3_kwccyy;False;False;t3_kwccyy;/r/anime/comments/kwccyy/who_is_the_most_powerful_titan_in_attack_on_titan/gj3fct1/;1610596350;14;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;The founding titan is said to be the strongest.;False;False;;;;1610526758;;False;{};gj3fel9;False;t3_kwccyy;False;False;t3_kwccyy;/r/anime/comments/kwccyy/who_is_the_most_powerful_titan_in_attack_on_titan/gj3fel9/;1610596380;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FireRifle64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FireRifle64;light;text;t2_29fr8mww;False;False;[];;"...seriously, y'all serious? We literally have a ""COLOSSUS"" titan. Mind you, yes, I do not know the strain of using the colossus nor how many times he can shift to it but it seems to be very powerful -Edit: I retract my statement. We also have the Founding titan which is extremely powerful IF, big IF, royal blood got their hands on it.";False;False;;;;1610526798;;1610527265.0;{};gj3fg1g;False;t3_kwccyy;False;True;t3_kwccyy;/r/anime/comments/kwccyy/who_is_the_most_powerful_titan_in_attack_on_titan/gj3fg1g/;1610596405;3;True;False;anime;t5_2qh22;;0;[]; -[];;;shivamthodge;;;[];;;;text;t2_107v28j5;False;False;[];;"Anime : Steins gate - - - -Genre : Sci-fi - - -Synopsis : A group of friends creates a machine capable of sending messages across time, and cause ripples through the past and present. - - -Personal opinion : There a lot of shows in general which deal with time travel but this show totally nails the butterfly effect which is incorrect or not there at all in other shows. Time travel in this show is pretty consistent with science behind it most of the times and I totally loved that. The plot of the series is not linear so you have to put a little thought into the show to understand a lot of what's happening on the screen so it might be off putting to a lot of people who don't like to think while watching a show. There are very few shows that have healthy amounts of serious and funny content and this show doesn't go overboard with either and nails it. Okabe is good but kyouma is the best and christina is the best girl. The cast is full of likable and relevant characters each of them being very unique and funny. I consider it to be a masterpiece of a work which doesn't feel dull except the first 6 episodes. VN is absolutely amazing maybe give it a try? - -P.S. : el psy congroo";False;False;;;;1610526830;;1610527271.0;{};gj3fh7x;False;t3_kwbvar;False;True;t3_kwbvar;/r/anime/comments/kwbvar/what_is_your_favorite_anime_give_the_genre/gj3fh7x/;1610596426;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FireRifle64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FireRifle64;light;text;t2_29fr8mww;False;False;[];;Nah, pretty alright pacing.;False;False;;;;1610526849;;False;{};gj3fhw5;False;t3_kwcary;False;False;t3_kwcary;/r/anime/comments/kwcary/suppose_a_kid_from_the_last_dungeon_has_bad_pacing/gj3fhw5/;1610596437;7;True;False;anime;t5_2qh22;;0;[]; -[];;;TheBest5217;;;[];;;;text;t2_8c7t1q8j;False;False;[];;Well I think it is kind of bad but ok.;False;False;;;;1610526921;;False;{};gj3fkbt;True;t3_kwcary;False;True;t1_gj3fhw5;/r/anime/comments/kwcary/suppose_a_kid_from_the_last_dungeon_has_bad_pacing/gj3fkbt/;1610596479;0;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"Koi Kaze - -Romance, Slice of Life, Psychological - -Two people fall in love, with multiple roadblocks in the way. Any more than that, and we are delving into spoiler territory. - -&#x200B; - -Why? The portrayal of the roadblocks, and how they deal with them is like nothing else. If you do watch it, you have to pirate it, and if you aren't intrigued by the end of episode 1, drop it.";False;False;;;;1610527013;;False;{};gj3fnms;False;t3_kwbvar;False;False;t3_kwbvar;/r/anime/comments/kwbvar/what_is_your_favorite_anime_give_the_genre/gj3fnms/;1610596537;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;The Founding.;False;False;;;;1610527040;;False;{};gj3foni;False;t3_kwccyy;False;False;t3_kwccyy;/r/anime/comments/kwccyy/who_is_the_most_powerful_titan_in_attack_on_titan/gj3foni/;1610596554;7;True;False;anime;t5_2qh22;;0;[]; -[];;;FireRifle64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FireRifle64;light;text;t2_29fr8mww;False;False;[];;Idk, be different if it was a super serious show but its not. But, thats me, I still find enjoyment and pacing doesn't seem bad. I'm sorry you feel that it is bad.;False;False;;;;1610527105;;False;{};gj3fr23;False;t3_kwcary;False;True;t1_gj3fkbt;/r/anime/comments/kwcary/suppose_a_kid_from_the_last_dungeon_has_bad_pacing/gj3fr23/;1610596597;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;"OP Delete your post - -people will get spoiled - -because every manga reader knows the answer.";False;False;;;;1610527107;;False;{};gj3fr4q;False;t3_kwccyy;False;False;t3_kwccyy;/r/anime/comments/kwccyy/who_is_the_most_powerful_titan_in_attack_on_titan/gj3fr4q/;1610596598;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Dont-Call-Me-Nerd, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610527130;moderator;False;{};gj3frzt;False;t3_kwchum;False;True;t3_kwchum;/r/anime/comments/kwchum/im_a_new_anime_fan_suggest_me_something/gj3frzt/;1610596612;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Yri4lf12;;;[];;;;text;t2_6bfipjd7;False;False;[];;The anime is primarily a comedy anime. The pacing is alright for what it is. If they slowed it down it becomes boring. Let's see the rest of it. It's still too soon to judge it. We only have one piece of exposition for now;False;False;;;;1610527209;;1610527394.0;{};gj3fuuj;False;t3_kwcary;False;False;t3_kwcary;/r/anime/comments/kwcary/suppose_a_kid_from_the_last_dungeon_has_bad_pacing/gj3fuuj/;1610596663;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Steven_the_dipshit;;;[];;;;text;t2_5ap0eyjm;False;True;[];;"Gore... - -Grisia trilogy, Kill la Kill - -And my personal favorite, Darling in the FRANXX.";False;False;;;;1610527210;;False;{};gj3fuw1;False;t3_kwchum;False;False;t3_kwchum;/r/anime/comments/kwchum/im_a_new_anime_fan_suggest_me_something/gj3fuw1/;1610596664;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;River_sounds;;;[];;;;text;t2_y4vd1;False;False;[];;"Black Lagoon. - -ID: Invaded.";False;False;;;;1610527218;;False;{};gj3fv5w;False;t3_kwchum;False;True;t3_kwchum;/r/anime/comments/kwchum/im_a_new_anime_fan_suggest_me_something/gj3fv5w/;1610596669;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mikyas2;;;[];;;;text;t2_18uge985;False;False;[];;Stiens Gate is a good thriller not much gore but it's it's crazy good ride;False;False;;;;1610527225;;False;{};gj3fveb;False;t3_kwchum;False;False;t3_kwchum;/r/anime/comments/kwchum/im_a_new_anime_fan_suggest_me_something/gj3fveb/;1610596673;4;True;False;anime;t5_2qh22;;0;[]; -[];;;16revi;;;[];;;;text;t2_5ifq4q8b;False;False;[];;A new one I'm watching rn is Mirai Nikki, it's seem like you could like it;False;False;;;;1610527248;;False;{};gj3fw9s;False;t3_kwchum;False;True;t3_kwchum;/r/anime/comments/kwchum/im_a_new_anime_fan_suggest_me_something/gj3fw9s/;1610596687;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nick51502;;;[];;;;text;t2_1932320p;False;False;[];;The og higurashi is phenomenal;False;False;;;;1610527258;;False;{};gj3fwma;False;t3_kwchum;False;True;t3_kwchum;/r/anime/comments/kwchum/im_a_new_anime_fan_suggest_me_something/gj3fwma/;1610596693;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;"Code Geass - -Attack On Titan - -Mobile Suit Gundam: Iron Blooded Orphans";False;False;;;;1610527297;;False;{};gj3fy0p;False;t3_kwchum;False;False;t3_kwchum;/r/anime/comments/kwchum/im_a_new_anime_fan_suggest_me_something/gj3fy0p/;1610596717;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;I am loving the show, already hooked its a very funny little fantasy;False;False;;;;1610527360;;False;{};gj3g0am;False;t3_kwcary;False;False;t3_kwcary;/r/anime/comments/kwcary/suppose_a_kid_from_the_last_dungeon_has_bad_pacing/gj3g0am/;1610596758;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shivamthodge;;;[];;;;text;t2_107v28j5;False;False;[];;Man of culture right here officer ^;False;False;;;;1610527366;;False;{};gj3g0iw;False;t3_kwbvar;False;True;t1_gj3fnms;/r/anime/comments/kwbvar/what_is_your_favorite_anime_give_the_genre/gj3g0iw/;1610596763;3;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;He got defeated by Attack Titan twice and Beast Titan once.;False;False;;;;1610527419;;False;{};gj3g2g9;False;t3_kwccyy;False;False;t1_gj3f920;/r/anime/comments/kwccyy/who_is_the_most_powerful_titan_in_attack_on_titan/gj3g2g9/;1610596798;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610527456;;False;{};gj3g3us;False;t3_kwbugd;False;True;t3_kwbugd;/r/anime/comments/kwbugd/astas_arm_and_neros_devil_bringer_from_dmc_4/gj3g3us/;1610596824;1;False;False;anime;t5_2qh22;;0;[]; -[];;;TheBest5217;;;[];;;;text;t2_8c7t1q8j;False;False;[];;Yes I enjoy it very much too I just had one tiny critique about the pacing.;False;False;;;;1610527493;;False;{};gj3g56z;True;t3_kwcary;False;True;t1_gj3g0am;/r/anime/comments/kwcary/suppose_a_kid_from_the_last_dungeon_has_bad_pacing/gj3g56z/;1610596846;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TheBest5217;;;[];;;;text;t2_8c7t1q8j;False;False;[];;I will 100% be keeping up with it.;False;False;;;;1610527512;;False;{};gj3g5wx;True;t3_kwcary;False;False;t1_gj3g0am;/r/anime/comments/kwcary/suppose_a_kid_from_the_last_dungeon_has_bad_pacing/gj3g5wx/;1610596862;1;True;False;anime;t5_2qh22;;0;[]; -[];;;silentstealth1;;;[];;;;text;t2_56h1qxnb;False;False;[];;depends on what kind of genres you're into. What do you like?;False;False;;;;1610528007;;False;{};gj3gnsw;False;t3_kwchum;False;True;t3_kwchum;/r/anime/comments/kwchum/im_a_new_anime_fan_suggest_me_something/gj3gnsw/;1610597183;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yourheroishere;;;[];;;;text;t2_6bvhzck6;False;False;[];;The promised Neverland;False;False;;;;1610528096;;False;{};gj3gqzm;False;t3_kwchum;False;True;t3_kwchum;/r/anime/comments/kwchum/im_a_new_anime_fan_suggest_me_something/gj3gqzm/;1610597237;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WorthyPlanet;;;[];;;;text;t2_61dleh25;False;False;[];;One punch man. I love the simplicity of it, the mc nonchalant attitude during all his fights, and the reactions of all the villains when their ego drops to the floor. The mc is the MOST powerful at all times, no screaming, no flashbacks of friendships, no reason for doing it other then cuz he likes it.;False;False;;;;1610528613;;False;{};gj3h9i7;False;t3_kwbvar;False;False;t3_kwbvar;/r/anime/comments/kwbvar/what_is_your_favorite_anime_give_the_genre/gj3h9i7/;1610597562;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Dont-Call-Me-Nerd;;;[];;;;text;t2_7dc54cfd;False;False;[];;gore, crime, thrill and mindgames;False;False;;;;1610528666;;False;{};gj3hbdr;True;t3_kwchum;False;True;t1_gj3gnsw;/r/anime/comments/kwchum/im_a_new_anime_fan_suggest_me_something/gj3hbdr/;1610597594;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AndreasFedier1998;;;[];;;;text;t2_6dczcoqb;False;False;[];;Re Zero for sure;False;False;;;;1610529035;;False;{};gj3ho87;False;t3_kwchum;False;True;t3_kwchum;/r/anime/comments/kwchum/im_a_new_anime_fan_suggest_me_something/gj3ho87/;1610597817;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackheart595;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Blackheart595/;light;text;t2_l0756;False;False;[];;The CGI was really good, being well-animated and blending easily with the non-CGI stuff. These are the typical problems with CGI and they're no issue here.;False;False;;;;1610529118;;False;{};gj3hr2t;False;t3_kwbpy1;False;True;t3_kwbpy1;/r/anime/comments/kwbpy1/attack_on_titan_the_final_season_episode_1/gj3hr2t/;1610597866;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jarjar4;;;[];;;;text;t2_3ooso9kj;False;False;[];;/thread;False;False;;;;1610529204;;False;{};gj3hu36;False;t3_kwccyy;False;True;t1_gj3fct1;/r/anime/comments/kwccyy/who_is_the_most_powerful_titan_in_attack_on_titan/gj3hu36/;1610597917;3;True;False;anime;t5_2qh22;;0;[]; -[];;;originalGooberstein;;;[];;;;text;t2_11cqo1;False;False;[];;" *Battle Fairy Yukikaze* - -Bit different to what you have watched but I think you will like it. - -[https://en.wikipedia.org/wiki/Yukikaze\_(anime)](https://en.wikipedia.org/wiki/Yukikaze_(anime))";False;False;;;;1610529229;;False;{};gj3huxt;False;t3_kwchum;False;True;t3_kwchum;/r/anime/comments/kwchum/im_a_new_anime_fan_suggest_me_something/gj3huxt/;1610597931;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;"Girls Und Panzer - cute girls and TANKS! - -Goblin Slayer - a different, pragmatic take on combat - -Laid-back Camp - cosy and gentle, perfect remedy for any ache of the soul - -Violet Evergarden - my transition to civilian life wasn't as harsh as hers, thankfully. And is better animated than my life, that's for sure! 😊";False;False;;;;1610529576;;False;{};gj3i72j;False;t3_kwbvar;False;False;t3_kwbvar;/r/anime/comments/kwbvar/what_is_your_favorite_anime_give_the_genre/gj3i72j/;1610598139;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610529680;;False;{};gj3iapk;False;t3_kwczbk;False;True;t3_kwczbk;/r/anime/comments/kwczbk/winter_2020_is_the_best_season_of_anime_ive_seen/gj3iapk/;1610598201;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610529764;moderator;False;{};gj3idnw;False;t3_kwd0xq;False;True;t3_kwd0xq;/r/anime/comments/kwd0xq/does_anyone_remember_an_anime_called_the_red_baron/gj3idnw/;1610598251;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;*2021;False;False;;;;1610529925;;False;{};gj3ijd7;False;t3_kwczbk;False;False;t3_kwczbk;/r/anime/comments/kwczbk/winter_2020_is_the_best_season_of_anime_ive_seen/gj3ijd7/;1610598347;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610530004;moderator;False;{};gj3im4w;False;t3_kwd2r4;False;True;t3_kwd2r4;/r/anime/comments/kwd2r4/so_my_sister_spoiled_mirai_nikki_to_me/gj3im4w/;1610598396;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610530037;;False;{};gj3in95;False;t3_kwczbk;False;True;t3_kwczbk;/r/anime/comments/kwczbk/winter_2020_is_the_best_season_of_anime_ive_seen/gj3in95/;1610598414;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hillanium;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3d47d0sa;False;False;[];;I think you will enjoy watching psycho-pass;False;False;;;;1610530087;;False;{};gj3ip03;False;t3_kwchum;False;True;t3_kwchum;/r/anime/comments/kwchum/im_a_new_anime_fan_suggest_me_something/gj3ip03/;1610598444;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ligglo;;;[];;;;text;t2_ykqnp;False;False;[];;Code Geass!;False;False;;;;1610530122;;False;{};gj3iq99;False;t3_kwb819;False;False;t3_kwb819;/r/anime/comments/kwb819/animes_where_the_mc_is_sort_of_a_bad_guy_but_they/gj3iq99/;1610598466;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hitogomi911;;;[];;;;text;t2_83ec5qv5;False;False;[];;Only the Yuno parts and the final arc. I wish the author remade this from Yuno's POV.;False;False;;;;1610530147;;False;{};gj3ir3d;False;t3_kwd2r4;False;True;t3_kwd2r4;/r/anime/comments/kwd2r4/so_my_sister_spoiled_mirai_nikki_to_me/gj3ir3d/;1610598479;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610530216;moderator;False;{};gj3iti1;False;t3_kwd481;False;True;t3_kwd481;/r/anime/comments/kwd481/anime_movie_about_a_flying_girl/gj3iti1/;1610598521;1;False;False;anime;t5_2qh22;;0;[]; -[];;;QuieroEstar;;;[];;;;text;t2_8tud3fvw;False;False;[];;{Parasyte};False;False;;;;1610530312;;False;{};gj3iwua;False;t3_kwchum;False;True;t3_kwchum;/r/anime/comments/kwchum/im_a_new_anime_fan_suggest_me_something/gj3iwua/;1610598576;2;True;False;anime;t5_2qh22;;0;[]; -[];;;r6fan-1;;;[];;;;text;t2_5qi4t4u8;False;False;[];;I thought Mirai Nikki was great tbh , the horror from yuno, the Acton, the sadness it’s all great tbh;False;False;;;;1610530313;;False;{};gj3iwur;False;t3_kwd2r4;False;False;t3_kwd2r4;/r/anime/comments/kwd2r4/so_my_sister_spoiled_mirai_nikki_to_me/gj3iwur/;1610598576;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610530318;;False;{};gj3ix24;False;t3_kwcqg0;False;True;t3_kwcqg0;/r/anime/comments/kwcqg0/i_made_a_drum_cover_of_the_horimiya_op_song/gj3ix24/;1610598580;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tadabito;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Nephren/;light;text;t2_wa1fmkv;False;False;[];;It may be [Laputa: Castle in the Sky](https://anidb.net/anime/331);False;False;;;;1610530429;;False;{};gj3j0ro;False;t3_kwd481;False;False;t3_kwd481;/r/anime/comments/kwd481/anime_movie_about_a_flying_girl/gj3j0ro/;1610598644;1;True;False;anime;t5_2qh22;;0;[]; -[];;;silentstealth1;;;[];;;;text;t2_56h1qxnb;False;False;[];;"Mindgames: Death note, the promised Neverland - -Thrill: Steins Gate, RE:zero, Code Glass, and Attack on Titan {arguably the best of all time). - -Crime: Psycho pass - -Gore: Parasyte -the maxim- not only is this one gory as fuck but has a phenomenal plot to go with it, and soundtrack that ranges from getting you pumped to making you cry like you got your heart broken. - -Hope I helped you out a bit, enjoy buddy.";False;False;;;;1610530476;;False;{};gj3j2b8;False;t3_kwchum;False;True;t1_gj3hbdr;/r/anime/comments/kwchum/im_a_new_anime_fan_suggest_me_something/gj3j2b8/;1610598670;1;True;False;anime;t5_2qh22;;0;[]; -[];;;M8gazine;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/M8gazine;light;text;t2_kkdz5;False;False;[];;"Favorite: Made in Abyss - -Genres: -Scifi, Adventure, Mystery, Drama, Fantasy - -Synopsis: -Big, mysterious hole in the middle of a city into which two kids, Reg and Riko, then descend in order to go on a journey to find Riko's mom. - -Why it's my favorite: -Everything about the world is interesting, it's just amazingly detailed - even the city is made to be relatively fascinating, despite not being in the show for very long. The background/landscape art can be just astonishing at times, and the main characters' journey itself is a ride and a half to watch for various reasons. - -The soundtrack is absolutely *phenomenal*, and it's possibly even better in the sequel movie. Kevin Penkin shot right up to being one of my favorite composers with it alone, and I've also actively listened to it every now and then on my own time since I first heard it - which isn't very common for me to be doing. - -I've given dozens of shows a 10 (31 to be precise) in the past, but if I had to cull them until only one remained, I think Made in Abyss + the sequel movie would most likely be the last one(s) standing. There are a couple of other contenders which I absolutely adore too, of course, but if I had to name *just* one as my favorite, it'd probably be MiA.";False;False;;;;1610530568;;False;{};gj3j5jx;False;t3_kwbvar;False;True;t3_kwbvar;/r/anime/comments/kwbvar/what_is_your_favorite_anime_give_the_genre/gj3j5jx/;1610598725;2;True;False;anime;t5_2qh22;;0;[]; -[];;;UberDueler;;;[];;;;text;t2_bs1ea;False;False;[];;Captain Levi;False;False;;;;1610530582;;False;{};gj3j61u;False;t3_kwccyy;False;True;t3_kwccyy;/r/anime/comments/kwccyy/who_is_the_most_powerful_titan_in_attack_on_titan/gj3j61u/;1610598733;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610530696;;False;{};gj3j9uv;False;t3_kwd481;False;True;t1_gj3j0ro;/r/anime/comments/kwd481/anime_movie_about_a_flying_girl/gj3j9uv/;1610598799;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackheart595;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Blackheart595/;light;text;t2_l0756;False;False;[];;I don't remember it being that good, but then again whenever I rewatch it it's way better than I remember. So I guess that means I do like it.;False;False;;;;1610530907;;False;{};gj3jha1;False;t3_kwd2r4;False;True;t3_kwd2r4;/r/anime/comments/kwd2r4/so_my_sister_spoiled_mirai_nikki_to_me/gj3jha1/;1610598930;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610530938;;False;{};gj3jie4;False;t3_kwd6vz;False;True;t3_kwd6vz;/r/anime/comments/kwd6vz/winter_2021_is_the_best_anime_season_ive_seen/gj3jie4/;1610598948;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;RajaatTheWarbringer;;;[];;;;text;t2_2ssfh8e5;False;False;[];;Paprika, maybe?;False;False;;;;1610530948;;False;{};gj3jir4;False;t3_kwd481;False;True;t3_kwd481;/r/anime/comments/kwd481/anime_movie_about_a_flying_girl/gj3jir4/;1610598955;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;I closed my list on 23 this season, my record;False;False;;;;1610531154;;False;{};gj3jq0i;False;t3_kwd6vz;False;True;t3_kwd6vz;/r/anime/comments/kwd6vz/winter_2021_is_the_best_anime_season_ive_seen/gj3jq0i/;1610599079;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cringecox;;;[];;;;text;t2_1ve8zv0e;False;False;[];;I'm watching 26. Goodbye free time;False;False;;;;1610531275;;False;{};gj3ju71;False;t3_kwd6vz;False;True;t1_gj3jq0i;/r/anime/comments/kwd6vz/winter_2021_is_the_best_anime_season_ive_seen/gj3ju71/;1610599148;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Massaman95;;;[];;;;text;t2_zxb3m;False;False;[];;"... After 1 episode. - -You could wait one or two months, then post this tbh.";False;False;;;;1610531909;;False;{};gj3kgav;False;t3_kwd6vz;False;True;t1_gj3ju71;/r/anime/comments/kwd6vz/winter_2021_is_the_best_anime_season_ive_seen/gj3kgav/;1610599517;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hamahimana;;;[];;;;text;t2_10igbd;False;False;[];;"I think the ""cliffhanger"" they are trying to make are kind of annoying, since its a comedy and im not really excited to see what's happening next.";False;False;;;;1610532005;;False;{};gj3kjp2;False;t3_kwcary;False;True;t3_kwcary;/r/anime/comments/kwcary/suppose_a_kid_from_the_last_dungeon_has_bad_pacing/gj3kjp2/;1610599573;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610532081;;False;{};gj3kmcd;False;t3_kwcary;False;True;t1_gj3kjp2;/r/anime/comments/kwcary/suppose_a_kid_from_the_last_dungeon_has_bad_pacing/gj3kmcd/;1610599617;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cringecox;;;[];;;;text;t2_1ve8zv0e;False;False;[];;Yeah, but most of the shows I'm watching are sequels or shows that I've read the source material of, so I'm pretty sure that I'm going to be watching them;False;False;;;;1610532546;;False;{};gj3l2gs;False;t3_kwd6vz;False;True;t1_gj3kgav;/r/anime/comments/kwd6vz/winter_2021_is_the_best_anime_season_ive_seen/gj3l2gs/;1610599886;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DoublerZ;;;[];;;;text;t2_to2pt;False;False;[];;It's one of the worst written stories I've ever seen. The character are ridiculously inconsistent and their actions make no fucking sense.;False;False;;;;1610532721;;False;{};gj3l8k8;False;t3_kwd2r4;False;False;t3_kwd2r4;/r/anime/comments/kwd2r4/so_my_sister_spoiled_mirai_nikki_to_me/gj3l8k8/;1610599987;6;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;it's bad, it really mostly hooks people that have not yet developed any standards but the plot is totally irrelevant anyway, everybody just watches for Yuno;False;False;;;;1610532956;;False;{};gj3lgnq;False;t3_kwd2r4;False;True;t3_kwd2r4;/r/anime/comments/kwd2r4/so_my_sister_spoiled_mirai_nikki_to_me/gj3lgnq/;1610600122;3;True;False;anime;t5_2qh22;;0;[]; -[];;;babydave371;;MAL a-amq;[];;https://myanimelist.net/profile/babydave371;dark;text;t2_sak6n;False;False;[];;Yes, it was an adaptation of a tokusatsu series if I remember correctly. The last release I remember of Red Baron was the live action version in the late 2000s so I'm guessing you're probably have to take the less than legal route on this one.;False;False;;;;1610533023;;False;{};gj3lizg;False;t3_kwd0xq;False;True;t3_kwd0xq;/r/anime/comments/kwd0xq/does_anyone_remember_an_anime_called_the_red_baron/gj3lizg/;1610600161;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Elijah-0;;;[];;;;text;t2_4mmlh33z;False;False;[];;Its just a replica of fairy tail.;False;False;;;;1610533061;;False;{};gj3lk9l;False;t3_kwdcu0;False;False;t3_kwdcu0;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj3lk9l/;1610600183;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610533295;;False;{};gj3lsaz;False;t3_kwdowc;False;True;t3_kwdowc;/r/anime/comments/kwdowc/romance_anime_where_the_mc_isnt_as_dense_as_rock/gj3lsaz/;1610600314;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LordCryozus;;;[];;;;text;t2_14t7pr;False;False;[];;Rascal does not dream of a bunny girl senpai;False;False;;;;1610533484;;False;{};gj3lyus;False;t3_kwdowc;False;False;t3_kwdowc;/r/anime/comments/kwdowc/romance_anime_where_the_mc_isnt_as_dense_as_rock/gj3lyus/;1610600422;6;True;False;anime;t5_2qh22;;0;[]; -[];;;RajaatTheWarbringer;;;[];;;;text;t2_2ssfh8e5;False;False;[];;Kaguya-Sama.;False;False;;;;1610533504;;False;{};gj3lzi5;False;t3_kwdowc;False;True;t3_kwdowc;/r/anime/comments/kwdowc/romance_anime_where_the_mc_isnt_as_dense_as_rock/gj3lzi5/;1610600433;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RajaatTheWarbringer;;;[];;;;text;t2_2ssfh8e5;False;False;[];;Been a long time since I saw it, but I thought it was about getting him to play again?;False;False;;;;1610533641;;False;{};gj3m4bi;False;t3_kwdkl1;False;True;t3_kwdkl1;/r/anime/comments/kwdkl1/rant_about_your_lie_in_april_spoilers/gj3m4bi/;1610600515;1;True;False;anime;t5_2qh22;;0;[]; -[];;;asilvertintedrose;;;[];;;;text;t2_9r6wz3xk;False;False;[];;"Not spoiling season 4 onward, but its said in season 3 that the Founding Titan has powers greater than all others including memory erasure. - -Honestly memory erasure is enough to defeat any other titan - - - Just make the enemy titan forget how to breath and watch them suffocate to death.";False;False;;;;1610533842;;False;{};gj3mbah;False;t3_kwccyy;False;True;t3_kwccyy;/r/anime/comments/kwccyy/who_is_the_most_powerful_titan_in_attack_on_titan/gj3mbah/;1610600634;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kk_213;;;[];;;;text;t2_72ca35r7;False;False;[];;Seen it. Loved it. Any other suggestions?;False;False;;;;1610533938;;False;{};gj3melf;True;t3_kwdowc;False;True;t1_gj3lzi5;/r/anime/comments/kwdowc/romance_anime_where_the_mc_isnt_as_dense_as_rock/gj3melf/;1610600688;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kk_213;;;[];;;;text;t2_72ca35r7;False;False;[];;Seen it already...any other suggestions?;False;False;;;;1610533966;;False;{};gj3mfi1;True;t3_kwdowc;False;True;t1_gj3lyus;/r/anime/comments/kwdowc/romance_anime_where_the_mc_isnt_as_dense_as_rock/gj3mfi1/;1610600705;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Meemeli;;;[];;;;text;t2_2o1rogl;False;False;[];;"Clannad + After Story - -Monogatari series";False;False;;;;1610534001;;False;{};gj3mgr3;False;t3_kwdowc;False;False;t3_kwdowc;/r/anime/comments/kwdowc/romance_anime_where_the_mc_isnt_as_dense_as_rock/gj3mgr3/;1610600725;6;True;False;anime;t5_2qh22;;0;[]; -[];;;asilvertintedrose;;;[];;;;text;t2_9r6wz3xk;False;False;[];;Honestly what I didn't like is how the Armored and Beast Titan moved. The Armored Titan in WIT's style felt as if it were heavy, while MAPPA's Armored Titan can do cartwheels and it feels weird to see.;False;False;;;;1610534044;;False;{};gj3mi9g;False;t3_kwbpy1;False;True;t3_kwbpy1;/r/anime/comments/kwbpy1/attack_on_titan_the_final_season_episode_1/gj3mi9g/;1610600749;1;True;False;anime;t5_2qh22;;0;[]; -[];;;InsomniaEmperor;;;[];;;;text;t2_5x68hmc4;False;False;[];;"Boarding School Juliet - -Chivalry of a Failed Knight - -Love, Election, and Chocolate - well okay it LOOKS like the MC is dense but there is a very good explanation why he acts like that.";False;False;;;;1610534104;;False;{};gj3mkae;False;t3_kwdowc;False;False;t3_kwdowc;/r/anime/comments/kwdowc/romance_anime_where_the_mc_isnt_as_dense_as_rock/gj3mkae/;1610600783;4;True;False;anime;t5_2qh22;;0;[]; -[];;;kk_213;;;[];;;;text;t2_72ca35r7;False;False;[];;I've seen the first 2... i'll try love elections and chocolate...thx;False;False;;;;1610534283;;False;{};gj3mqhb;True;t3_kwdowc;False;True;t1_gj3mkae;/r/anime/comments/kwdowc/romance_anime_where_the_mc_isnt_as_dense_as_rock/gj3mqhb/;1610600886;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hold0;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/albyy;light;text;t2_1grbuy20;False;False;[];;I highly recommend great pretender;False;False;;;;1610534460;;False;{};gj3mwk6;False;t3_kwchum;False;True;t1_gj3hbdr;/r/anime/comments/kwchum/im_a_new_anime_fan_suggest_me_something/gj3mwk6/;1610600995;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RajaatTheWarbringer;;;[];;;;text;t2_2ssfh8e5;False;False;[];;"Love, Chuunibyo, & Other Delusions would be my only other suggestion, I'm not too well-versed in the genre.";False;False;;;;1610534582;;False;{};gj3n0th;False;t3_kwdowc;False;True;t1_gj3melf;/r/anime/comments/kwdowc/romance_anime_where_the_mc_isnt_as_dense_as_rock/gj3n0th/;1610601066;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Waleed320COOL;;;[];;;;text;t2_2nr4n8nv;False;False;[];;No frick that man. U dont confess after death and the fact is she liked him throughout the show. It wouldve been no different if she confessed to him directly;False;False;;;;1610534589;;False;{};gj3n116;True;t3_kwdkl1;False;True;t1_gj3m4bi;/r/anime/comments/kwdkl1/rant_about_your_lie_in_april_spoilers/gj3n116/;1610601070;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Dylan16011;;;[];;;;text;t2_9d82mwde;False;False;[];;Rent a girlfriend, oregairu, nisekoi;False;False;;;;1610534672;;False;{};gj3n41d;False;t3_kwdowc;False;True;t3_kwdowc;/r/anime/comments/kwdowc/romance_anime_where_the_mc_isnt_as_dense_as_rock/gj3n41d/;1610601120;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;kk_213;;;[];;;;text;t2_72ca35r7;False;False;[];;K thx;False;False;;;;1610534958;;False;{};gj3ne3j;True;t3_kwdowc;False;True;t1_gj3n0th;/r/anime/comments/kwdowc/romance_anime_where_the_mc_isnt_as_dense_as_rock/gj3ne3j/;1610601286;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610535437;moderator;False;{};gj3nvf0;False;t3_kwe6bl;False;True;t3_kwe6bl;/r/anime/comments/kwe6bl/should_i_watch_the_series_for_gintama_to/gj3nvf0/;1610601573;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Imagine when you discover the decades old mecha genre;False;False;;;;1610535586;;False;{};gj3o0yp;False;t3_kwe6aq;False;False;t3_kwe6aq;/r/anime/comments/kwe6aq/movie_and_anime_things_in_common/gj3o0yp/;1610601662;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Tasthar;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tasthar;light;text;t2_1fhlyiyc;False;False;[];;Yes. No idea how can you understand an adaptation of the last arc of the show you never watched.;False;False;;;;1610536003;;False;{};gj3og8t;False;t3_kwe6bl;False;False;t3_kwe6bl;/r/anime/comments/kwe6bl/should_i_watch_the_series_for_gintama_to/gj3og8t/;1610601908;13;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;"Trinity Seven - Arata is not the most dense harem MC by far. - -Ao-chan Can't Study - sweet little rom com, the MC (a girl) is kinda dense, but not the usual way";False;False;;;;1610536019;;False;{};gj3ogsl;False;t3_kwdowc;False;False;t3_kwdowc;/r/anime/comments/kwdowc/romance_anime_where_the_mc_isnt_as_dense_as_rock/gj3ogsl/;1610601917;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;Every joke is new, if you're young enough.;False;False;;;;1610536113;;False;{};gj3ok5m;False;t3_kwe6aq;False;False;t1_gj3o0yp;/r/anime/comments/kwe6aq/movie_and_anime_things_in_common/gj3ok5m/;1610601971;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"[You're one of today's lucky 10,000!](https://xkcd.com/1053/) - -If you're not aware, Pacific Rim is explicitly inspired by and based on the Japanese genre of mecha, or giant robots! So the similarities between Darling in the Franxx, a mecha series, and Pacific Rim, an American mecha film, are to be expected. There are a lot of great mecha series and a huge diversity of shows. I recommend Mobile Suit Gundam and Neon Genesis Evangelion...";False;False;;;;1610536153;;1610536438.0;{};gj3olkw;False;t3_kwe6aq;False;True;t3_kwe6aq;/r/anime/comments/kwe6aq/movie_and_anime_things_in_common/gj3olkw/;1610601994;5;True;False;anime;t5_2qh22;;0;[]; -[];;;YouHrdKlm;;;[];;;;text;t2_5roxsiz7;False;False;[];;Milf;False;False;;;;1610536320;;False;{};gj3orqg;False;t3_kwecy3;False;True;t3_kwecy3;/r/anime/comments/kwecy3/anyone_know_what_this_character_is_called/gj3orqg/;1610602091;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Tasthar;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tasthar;light;text;t2_1fhlyiyc;False;False;[];;Oosuki Mamako from Okaasan Online;False;False;;;;1610536417;;False;{};gj3ovf5;False;t3_kwecy3;False;True;t3_kwecy3;/r/anime/comments/kwecy3/anyone_know_what_this_character_is_called/gj3ovf5/;1610602149;13;True;False;anime;t5_2qh22;;0;[]; -[];;;trakinasneto;;;[];;;;text;t2_8yqse43;False;False;[];;Yea even that route is proving to be difficult unfortunately. Maybe one day.;False;False;;;;1610536444;;False;{};gj3owg5;True;t3_kwd0xq;False;True;t1_gj3lizg;/r/anime/comments/kwd0xq/does_anyone_remember_an_anime_called_the_red_baron/gj3owg5/;1610602166;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Macabre_Morgy;;;[];;;;text;t2_4xathj8t;False;False;[];;She’s from that shit MILF isekai with the really long title;False;False;;;;1610536556;;False;{};gj3p0nd;False;t3_kwecy3;False;True;t3_kwecy3;/r/anime/comments/kwecy3/anyone_know_what_this_character_is_called/gj3p0nd/;1610602233;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TimetoDDDuel;;;[];;;;text;t2_2ljjuma0;False;False;[];;"Favourite Anime: Gintama - -Synopsis: 20 years before the events of the series, Pre-Meiji-Restauration-Japan was discovered and, due to its abundance of an energy source called Altana (basically oil), turned into a puppet-state to a variety of alien races called Amanto under the Supervision of the Tendoushuu, a council of Elders responsible for the universal administration of Altana. This sparked a civil war lasting 10 years that serves as a background to most of the shounen arcs central conflicts. - -The main character, Gintoki,now operates a Yorozuya shop doing various freelance jobs to make a living after fighting in the war. He loves pachinko gambling and sweets. - -He is joined by Kagura, a young member of an alien warrior race called the Yato, which has a chronic weakness to sunlight. They are basically the Saiyans of Gintama. She came to Earth to look for a job and eventually ended up joining odd jobs. - -Then there's Shinpachi, heir to a rundown dojo,also working alongside them. He usually plays the straight man in comedy. - -Most of gintama is taken up by its comedic episodes,which are some of the best I've seen. The large supporting cast helps here. Some of the normal episodes can also get sad, thrilling, etc. even if the start seems comedic, and it's always worth it. - -The shounen arcs are also incredible, with some of the best fights and antagonists in the medium. - -The fourth wall is also practically nonexistant, which is frequently used for gags, references and parodies,which gintama is possibly most known for.";False;False;;;;1610536580;;False;{};gj3p1jr;False;t3_kwbvar;False;False;t3_kwbvar;/r/anime/comments/kwbvar/what_is_your_favorite_anime_give_the_genre/gj3p1jr/;1610602246;6;True;False;anime;t5_2qh22;;0;[]; -[];;;DiamondTiaraIsBest;;MAL;[];;http://myanimelist.net/profile/marckaizer123;dark;text;t2_kx1q1;False;False;[];;All Araragi does in fights is.get beaten up lol. Except in Kizu;False;False;;;;1610536582;;False;{};gj3p1mi;False;t3_kwdowc;False;True;t1_gj3mgr3;/r/anime/comments/kwdowc/romance_anime_where_the_mc_isnt_as_dense_as_rock/gj3p1mi/;1610602248;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610536634;moderator;False;{};gj3p3lc;False;t3_kwefuq;False;True;t3_kwefuq;/r/anime/comments/kwefuq/jojo_bizarre_adventure_series/gj3p3lc/;1610602279;1;False;False;anime;t5_2qh22;;0;[]; -[];;;peterinjapan;;;[];;;;text;t2_4upnz;False;False;[];;Joe Mama;False;True;;comment score below threshold;;1610536646;;False;{};gj3p40h;False;t3_kwecy3;False;True;t3_kwecy3;/r/anime/comments/kwecy3/anyone_know_what_this_character_is_called/gj3p40h/;1610602287;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;RascalNikov1;;;[];;;;text;t2_7m5cdkxt;False;False;[];;I like it quite a bit. Yuno is my kind of girl.;False;False;;;;1610536657;;False;{};gj3p4gc;False;t3_kwd2r4;False;True;t3_kwd2r4;/r/anime/comments/kwd2r4/so_my_sister_spoiled_mirai_nikki_to_me/gj3p4gc/;1610602294;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;He also lost to a cannon;False;False;;;;1610536665;;False;{};gj3p4qn;False;t3_kwccyy;False;False;t1_gj3g2g9;/r/anime/comments/kwccyy/who_is_the_most_powerful_titan_in_attack_on_titan/gj3p4qn/;1610602299;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;Founding Titan and it’s nowhere near close, I’d recommend you delete the thread before something gets spoiled;False;False;;;;1610536717;;False;{};gj3p6qq;False;t3_kwccyy;False;True;t3_kwccyy;/r/anime/comments/kwccyy/who_is_the_most_powerful_titan_in_attack_on_titan/gj3p6qq/;1610602332;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;"Going by hypotheticals, the founding Titan can control -the other Titans, so if it can use the power it’s the strongest";False;False;;;;1610536774;;False;{};gj3p8td;False;t3_kwccyy;False;True;t1_gj3fg1g;/r/anime/comments/kwccyy/who_is_the_most_powerful_titan_in_attack_on_titan/gj3p8td/;1610602365;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LivingForTheJourney;;;[];;;;text;t2_mhljj;False;False;[];;"It actually took your comment for me to realize this wasn't Fairy Tail. - -Haha May still try it out anyway though. Who knows.";False;False;;;;1610536833;;False;{};gj3pb3n;False;t3_kwdcu0;False;False;t1_gj3lk9l;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj3pb3n/;1610602402;23;True;False;anime;t5_2qh22;;0;[]; -[];;;BLT001;;;[];;;;text;t2_3p4q88ph;False;False;[];;Horny hentai sonof a bitch;False;True;;comment score below threshold;;1610536973;;False;{};gj3pgg8;False;t3_kwecy3;False;True;t3_kwecy3;/r/anime/comments/kwecy3/anyone_know_what_this_character_is_called/gj3pgg8/;1610602489;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi SonAnka, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610536973;moderator;False;{};gj3pggt;False;t3_kweif2;False;True;t3_kweif2;/r/anime/comments/kweif2/i_need_anime_suggestions_harem_with_coolpowerfull/gj3pggt/;1610602490;1;False;False;anime;t5_2qh22;;0;[]; -[];;;kickaboo_;;;[];;;;text;t2_3j0el5fe;False;False;[];;Start with jojo‘s bizarre adventures phantom blood (part 1) and then just follow the chronological order of all parts;False;False;;;;1610537016;;False;{};gj3pi23;False;t3_kwefuq;False;False;t3_kwefuq;/r/anime/comments/kwefuq/jojo_bizarre_adventure_series/gj3pi23/;1610602514;6;True;False;anime;t5_2qh22;;0;[]; -[];;;rizwan325;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/rizwan325;light;text;t2_1fe4qlcl;False;False;[];;Part 1;False;False;;;;1610537031;;False;{};gj3pimr;False;t3_kwefuq;False;True;t3_kwefuq;/r/anime/comments/kwefuq/jojo_bizarre_adventure_series/gj3pimr/;1610602525;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDampGod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheDampGod;light;text;t2_im4vi;False;False;[];;"Snow White With the Red Hair - Fairytale romance between a herbalist and a prince. - -Tsuki ga Kirei - Awkwardly cute middle school romance with great progression.";False;False;;;;1610537131;;False;{};gj3pmc9;False;t3_kwdowc;False;True;t3_kwdowc;/r/anime/comments/kwdowc/romance_anime_where_the_mc_isnt_as_dense_as_rock/gj3pmc9/;1610602584;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Elijah-0;;;[];;;;text;t2_4mmlh33z;False;False;[];;"Well the reason I said its a replica is because the characters are basically the same except for some minor changes. And from what I know the author's best project is fairy tell (correct me if I'm wrong) but it still worth the try (i guess) - - - - -Edit: wow this is the first time I've been down voted this much !!! -Thank you all for this experience -And on the comment I did. Its not like I have read the manga or seen the anime (if there's any). i just stated my opinion nothing else. But its a bit exciting to get down voted XD";False;True;;comment score below threshold;;1610537185;;1610555215.0;{};gj3po7l;False;t3_kwdcu0;False;True;t1_gj3pb3n;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj3po7l/;1610602615;-23;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;Thot;False;True;;comment score below threshold;;1610537251;;False;{};gj3pqnn;False;t3_kwecy3;False;True;t3_kwecy3;/r/anime/comments/kwecy3/anyone_know_what_this_character_is_called/gj3pqnn/;1610602659;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;Potatoaster1;;;[];;;;text;t2_22jl993s;False;False;[];;"Start with Jojos Bizarre Adventure The Animation, then watch Stardust Crusaders, then Diamond is Unbreakable and then Golden Wind. - -They are all on Crunchyroll, so you can watch them there even without a premium account.";False;False;;;;1610537366;;False;{};gj3pv0p;False;t3_kwefuq;False;True;t3_kwefuq;/r/anime/comments/kwefuq/jojo_bizarre_adventure_series/gj3pv0p/;1610602742;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nanz21;;;[];;;;text;t2_5nt8hwwo;False;False;[];;Thanks guys;False;False;;;;1610537400;;False;{};gj3pwam;True;t3_kwefuq;False;True;t3_kwefuq;/r/anime/comments/kwefuq/jojo_bizarre_adventure_series/gj3pwam/;1610602768;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GrimmSleeper97;;;[];;;;text;t2_20du3u1r;False;False;[];;Something about a hit combo ain't it?;False;False;;;;1610537405;;False;{};gj3pwj2;False;t3_kwecy3;False;True;t1_gj3p0nd;/r/anime/comments/kwecy3/anyone_know_what_this_character_is_called/gj3pwj2/;1610602774;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610537565;moderator;False;{};gj3q2pa;False;t3_kwenec;False;True;t3_kwenec;/r/anime/comments/kwenec/are_there_any_apps_or_websites_out_there_that_let/gj3q2pa/;1610602894;0;False;False;anime;t5_2qh22;;0;[]; -[];;;MyLifeIsStrangeLikeM;;;[];;;;text;t2_pi4itna;False;False;[];;From what i know, fairy tail is his worst work. Rave master and Eden zero are far better, though i haven't read/watched them so take it with a grain of salt;False;False;;;;1610537566;;False;{};gj3q2q3;False;t3_kwdcu0;False;False;t1_gj3po7l;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj3q2q3/;1610602895;31;True;False;anime;t5_2qh22;;0;[]; -[];;;AcidEfflux;;;[];;;;text;t2_101qeg;False;False;[];;MyAnimeList.net;False;False;;;;1610537662;;False;{};gj3q6be;False;t3_kwenec;False;True;t3_kwenec;/r/anime/comments/kwenec/are_there_any_apps_or_websites_out_there_that_let/gj3q6be/;1610602956;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Elijah-0;;;[];;;;text;t2_4mmlh33z;False;False;[];;"That surprised me ! -If fairy tail is his worst then the others are way more awesome! -Guess I'll watch it when it comes out.";False;False;;;;1610537807;;False;{};gj3qbxu;False;t3_kwdcu0;False;False;t1_gj3q2q3;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj3qbxu/;1610603063;2;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;There are a few, but the two main ones are MAL and Anilist. MAL works better as a community, Anilist looks a lot better and is easier to navigate, plus has a load more manga. You can export your lists between the two sites, if you want to switch. I switched from MAL to Anilist, and have no regrets.;False;False;;;;1610537811;;False;{};gj3qc2r;False;t3_kwenec;False;True;t3_kwenec;/r/anime/comments/kwenec/are_there_any_apps_or_websites_out_there_that_let/gj3qc2r/;1610603065;3;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;The Fruit of Grisaia would be a good one, especially if you dislike tsunderes.;False;False;;;;1610537890;;False;{};gj3qf4n;False;t3_kweif2;False;True;t3_kweif2;/r/anime/comments/kweif2/i_need_anime_suggestions_harem_with_coolpowerfull/gj3qf4n/;1610603116;3;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"Even so, he spent a lot of time getting beaten up in Kizumonogatari as well. He is a massive punching bag. - -&#x200B; - -It's still amazing to watch, then read.";False;False;;;;1610538270;;False;{};gj3qtrg;False;t3_kwdowc;False;True;t1_gj3p1mi;/r/anime/comments/kwdowc/romance_anime_where_the_mc_isnt_as_dense_as_rock/gj3qtrg/;1610603360;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shnick9996;;;[];;;;text;t2_405jha7v;False;True;[];;High School DxD, Strike the Blood, To Love RU (Technically), Seiken Tsukai no World Break;False;False;;;;1610538279;;False;{};gj3qu4n;False;t3_kweif2;False;False;t3_kweif2;/r/anime/comments/kweif2/i_need_anime_suggestions_harem_with_coolpowerfull/gj3qu4n/;1610603368;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rocket_god_42069;;;[];;;;text;t2_5bwy6z8l;False;False;[];;Thank you!;False;False;;;;1610538322;;False;{};gj3qvsg;True;t3_kwenec;False;True;t1_gj3qc2r;/r/anime/comments/kwenec/are_there_any_apps_or_websites_out_there_that_let/gj3qvsg/;1610603396;2;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;Maid-Sama is a shoujo romance, meaning the MC is the girl, and the love interest is perfect.;False;False;;;;1610538325;;False;{};gj3qvwx;False;t3_kwdowc;False;True;t3_kwdowc;/r/anime/comments/kwdowc/romance_anime_where_the_mc_isnt_as_dense_as_rock/gj3qvwx/;1610603398;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shnick9996;;;[];;;;text;t2_405jha7v;False;True;[];;Upvoted for Grisaia and Michiru;False;False;;;;1610538329;;False;{};gj3qw34;False;t3_kweif2;False;True;t1_gj3qf4n;/r/anime/comments/kweif2/i_need_anime_suggestions_harem_with_coolpowerfull/gj3qw34/;1610603401;2;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;Maybe she was too embarrassed to tell him? Dying moments later after confessing your love would be worse.;False;False;;;;1610538395;;False;{};gj3qyo6;False;t3_kwdkl1;False;True;t3_kwdkl1;/r/anime/comments/kwdkl1/rant_about_your_lie_in_april_spoilers/gj3qyo6/;1610603443;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610538434;;False;{};gj3r083;False;t3_kweth7;False;True;t3_kweth7;/r/anime/comments/kweth7/if_you_could_be_reincarnated_to_any_anime/gj3r083/;1610603469;0;True;False;anime;t5_2qh22;;0;[]; -[];;;nocematt;;;[];;;;text;t2_5dp9b57s;False;False;[];;Attack on Titan bc I like to live life dangerously;False;False;;;;1610538564;;False;{};gj3r5bi;False;t3_kweth7;False;False;t3_kweth7;/r/anime/comments/kweth7/if_you_could_be_reincarnated_to_any_anime/gj3r5bi/;1610603553;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Massaman95;;;[];;;;text;t2_zxb3m;False;False;[];;"Ishuzoku Reviewers. - -I don't think I need to tell you the reasoning";False;False;;;;1610538608;;False;{};gj3r71z;False;t3_kweth7;False;False;t3_kweth7;/r/anime/comments/kweth7/if_you_could_be_reincarnated_to_any_anime/gj3r71z/;1610603580;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;Pokémon;False;False;;;;1610538656;;False;{};gj3r8zq;False;t3_kweth7;False;False;t3_kweth7;/r/anime/comments/kweth7/if_you_could_be_reincarnated_to_any_anime/gj3r8zq/;1610603612;4;True;False;anime;t5_2qh22;;0;[]; -[];;;babydave371;;MAL a-amq;[];;https://myanimelist.net/profile/babydave371;dark;text;t2_sak6n;False;False;[];;As always have to go with Gundam Build Fighters. It is basically our world except there seems to be no serious conflicts, everyone loves Gundam, we have the tech to make our gunpla come to life and battle them, and the organised criminals are all gunpla based rather than actually dangerous things like guns.;False;False;;;;1610538666;;False;{};gj3r9e2;False;t3_kweth7;False;True;t3_kweth7;/r/anime/comments/kweth7/if_you_could_be_reincarnated_to_any_anime/gj3r9e2/;1610603619;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Railgun universe, everything there looks amazing and would be a nice place to live.;False;False;;;;1610538908;;False;{};gj3rj5w;False;t3_kweth7;False;False;t3_kweth7;/r/anime/comments/kweth7/if_you_could_be_reincarnated_to_any_anime/gj3rj5w/;1610603778;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Waleed320COOL;;;[];;;;text;t2_2nr4n8nv;False;False;[];;No it wouldnt, first of all she couldve confessed way before death. And even if she did right before death, it wouldve been same;False;False;;;;1610538926;;False;{};gj3rjv1;True;t3_kwdkl1;False;True;t1_gj3qyo6;/r/anime/comments/kwdkl1/rant_about_your_lie_in_april_spoilers/gj3rjv1/;1610603790;0;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;"I'll go for my usual boring answer to this question. - -> Kobayashi's Dragon Maid - -I choose this as software developers are a thing in that world and that is what I do as my job, so when I go there, at least I'll be able to get a job and won't have to starve to death.";False;False;;;;1610538941;;False;{};gj3rkgm;False;t3_kweth7;False;False;t3_kweth7;/r/anime/comments/kweth7/if_you_could_be_reincarnated_to_any_anime/gj3rkgm/;1610603800;5;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Meemeli;;;[];;;;text;t2_2o1rogl;False;False;[];;He's hardly a wimp, though.;False;False;;;;1610539070;;False;{};gj3rplc;False;t3_kwdowc;False;True;t1_gj3p1mi;/r/anime/comments/kwdowc/romance_anime_where_the_mc_isnt_as_dense_as_rock/gj3rplc/;1610603880;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;Monthly girls Nozaki-kun;False;False;;;;1610539111;;False;{};gj3rr89;False;t3_kwdowc;False;True;t3_kwdowc;/r/anime/comments/kwdowc/romance_anime_where_the_mc_isnt_as_dense_as_rock/gj3rr89/;1610603906;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;Not exactly what you are looking for, but Gundam Iron-Blooded Orphans has a side character that perfectly fits the requirement.;False;False;;;;1610539173;;False;{};gj3rtrq;False;t3_kweif2;False;True;t3_kweif2;/r/anime/comments/kweif2/i_need_anime_suggestions_harem_with_coolpowerfull/gj3rtrq/;1610603946;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mekazuaquaness;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;mekazuaquaness is true waifu;dark;text;t2_3d9sfw2v;False;False;[];;The power of friendship shall prevail in this series as well;False;False;;;;1610539212;;False;{};gj3rvc8;False;t3_kwdcu0;False;True;t3_kwdcu0;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj3rvc8/;1610603971;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Roamer21XX;;;[];;;;text;t2_q9cr1;False;False;[];;Because you are a **man of culture**;False;True;;comment score below threshold;;1610539300;;False;{};gj3ryw5;False;t3_kweth7;False;True;t1_gj3r71z;/r/anime/comments/kweth7/if_you_could_be_reincarnated_to_any_anime/gj3ryw5/;1610604029;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;KrzyDankus;;;[];;;;text;t2_146zps;False;False;[];;That just means that titans that show up once or twice will be 2d and titans that consistently show up throughout the season will be 3d.;False;False;;;;1610539337;;False;{};gj3s0g7;False;t3_kwbpy1;False;True;t1_gj3cdsy;/r/anime/comments/kwbpy1/attack_on_titan_the_final_season_episode_1/gj3s0g7/;1610604055;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DrPhilReddit;;;[];;;;text;t2_3zy18sy3;False;False;[];;Just watch in chronological order. Don’t have to bother with the series from the 90’s though;False;False;;;;1610539380;;False;{};gj3s22j;False;t3_kwefuq;False;False;t3_kwefuq;/r/anime/comments/kwefuq/jojo_bizarre_adventure_series/gj3s22j/;1610604081;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Gringham;;;[];;;;text;t2_2m7zq1xy;False;False;[];;Besides the already mentioned Clannad: Toradora;False;False;;;;1610539496;;False;{};gj3s6oc;False;t3_kwdowc;False;True;t3_kwdowc;/r/anime/comments/kwdowc/romance_anime_where_the_mc_isnt_as_dense_as_rock/gj3s6oc/;1610604159;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;You mentioning Cardcaptor Sakura really gives me a nostalgia, it’s been a long time since I rewatched it but it’s still one of my adored adventure shows to this day;False;False;;;;1610539578;;False;{};gj3s9y8;False;t3_kwbvar;False;True;t1_gj3dkhh;/r/anime/comments/kwbvar/what_is_your_favorite_anime_give_the_genre/gj3s9y8/;1610604211;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;This isn't even the most perverted thing she says I'm the show;False;False;;;;1610539628;;False;{};gj3sc09;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj3sc09/;1610604245;963;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;Girls Und Panzer, so I could watch more Sensha-Do! 😁;False;False;;;;1610539660;;False;{};gj3sdci;False;t3_kweth7;False;True;t3_kweth7;/r/anime/comments/kweth7/if_you_could_be_reincarnated_to_any_anime/gj3sdci/;1610604266;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;I thought it was like a spin off or something. Maybe he'll finally just make porn;False;False;;;;1610539688;;False;{};gj3sei8;False;t3_kwdcu0;False;False;t1_gj3lk9l;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj3sei8/;1610604285;37;True;False;anime;t5_2qh22;;0;[]; -[];;;TheBlackGetsuga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Grimmjow-Senpai;light;text;t2_vj5dn6s;False;False;[];;High School DxD;False;False;;;;1610539717;;False;{};gj3sfps;False;t3_kweth7;False;True;t3_kweth7;/r/anime/comments/kweth7/if_you_could_be_reincarnated_to_any_anime/gj3sfps/;1610604304;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610539761;moderator;False;{};gj3shit;False;t3_kwf6uc;False;True;t3_kwf6uc;/r/anime/comments/kwf6uc/what_anime_are_each_of_these_characters_from/gj3shit/;1610604333;0;False;False;anime;t5_2qh22;;0;[]; -[];;;knokaka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/knokaka?order=4;light;text;t2_ytri4;False;False;[];;"Wow.... Rave 3 looks interestings. - -i hope it didnt too fanservicey & abusing power of friendship like Rave 2. - -gonna finish rave 1 to caught up... i hold it when sieghart fight a certain someone.";False;False;;;;1610539816;;False;{};gj3sjs3;False;t3_kwdcu0;False;False;t3_kwdcu0;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj3sjs3/;1610604369;33;True;False;anime;t5_2qh22;;0;[]; -[];;;lordofdeat;;;[];;;;text;t2_3mg7zuex;False;False;[];;The one just above the bottom left is from Naruto Shippuden;False;False;;;;1610539911;;False;{};gj3snsq;False;t3_kwf6uc;False;True;t3_kwf6uc;/r/anime/comments/kwf6uc/what_anime_are_each_of_these_characters_from/gj3snsq/;1610604434;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Left down two are of sasuke from Naruto and the boss of all alchemist from Full metal Alchemist and second right is from Tokyo ghoul;False;False;;;;1610539915;;False;{};gj3snyj;False;t3_kwf6uc;False;True;t3_kwf6uc;/r/anime/comments/kwf6uc/what_anime_are_each_of_these_characters_from/gj3snyj/;1610604437;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;Yeah;False;False;;;;1610539932;;False;{};gj3soo1;True;t3_kwf0hk;False;True;t1_gj3sc09;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj3soo1/;1610604447;192;True;False;anime;t5_2qh22;;0;[]; -[];;;Turkishairylines;;;[];;;;text;t2_6etwcah0;False;False;[];;I can tell Ciel Phantomhive, Tokyo Ghoul(Forgot his name) and full metal alchemist.;False;False;;;;1610540003;;False;{};gj3srnt;False;t3_kwf6uc;False;True;t3_kwf6uc;/r/anime/comments/kwf6uc/what_anime_are_each_of_these_characters_from/gj3srnt/;1610604495;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;Plot Twist: You live outside academy city so nothing changes.;False;False;;;;1610540010;;False;{};gj3ss01;False;t3_kweth7;False;True;t1_gj3rj5w;/r/anime/comments/kweth7/if_you_could_be_reincarnated_to_any_anime/gj3ss01/;1610604501;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Wtf;False;True;;comment score below threshold;;1610540093;;False;{};gj3svji;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj3svji/;1610604558;-25;True;False;anime;t5_2qh22;;0;[]; -[];;;KarmaOAkabane;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;anilist.co/user/KarmaOAkabane;light;text;t2_8ajupisc;False;False;[];;"right down two - Kaneki - -left down 3 - Lelouch - -left down 3 - sasuke - -left down 4 - some guy from fmab";False;False;;;;1610540115;;False;{};gj3swfu;False;t3_kwf6uc;False;True;t3_kwf6uc;/r/anime/comments/kwf6uc/what_anime_are_each_of_these_characters_from/gj3swfu/;1610604573;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;"[AoT S1 Spoilers](/s ""I just want Annie to step on me and crush me to death"")";False;False;;;;1610540200;;1610540901.0;{};gj3szz7;False;t3_kweth7;False;False;t3_kweth7;/r/anime/comments/kweth7/if_you_could_be_reincarnated_to_any_anime/gj3szz7/;1610604629;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;I’d want a composite fantasy isekai;False;False;;;;1610540236;;False;{};gj3t1h4;False;t3_kweth7;False;True;t3_kweth7;/r/anime/comments/kweth7/if_you_could_be_reincarnated_to_any_anime/gj3t1h4/;1610604653;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KarmaOAkabane;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;anilist.co/user/KarmaOAkabane;light;text;t2_8ajupisc;False;False;[];;"no matter how much i like attack on titan, i aint going there - -that world is fucked";False;False;;;;1610540239;;False;{};gj3t1le;False;t3_kweth7;False;False;t1_gj3r5bi;/r/anime/comments/kweth7/if_you_could_be_reincarnated_to_any_anime/gj3t1le/;1610604655;9;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610540251;moderator;False;{};gj3t258;False;t3_kwfavu;False;True;t3_kwfavu;/r/anime/comments/kwfavu/how_old_is_nomico/gj3t258/;1610604664;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Skylair13;;;[];;;;text;t2_1xfa6ths;False;False;[];;Inaban~;False;False;;;;1610540255;;False;{};gj3t2bb;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj3t2bb/;1610604667;225;True;False;anime;t5_2qh22;;0;[]; -[];;;KarmaOAkabane;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;anilist.co/user/KarmaOAkabane;light;text;t2_8ajupisc;False;False;[];;below kaneki is Riz i guess;False;False;;;;1610540308;;False;{};gj3t4k5;False;t3_kwf6uc;False;True;t1_gj3swfu;/r/anime/comments/kwf6uc/what_anime_are_each_of_these_characters_from/gj3t4k5/;1610604702;1;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;Thank God, I'm not the only one who watched this anime;False;False;;;;1610540350;;False;{};gj3t6bk;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj3t6bk/;1610604731;501;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;They got bought by Sony so there’s probably a funneling of resources somewhere;False;False;;;;1610540458;;False;{};gj3tb29;False;t3_kwfbbg;False;True;t3_kwfbbg;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj3tb29/;1610604809;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Its just that the shows YOU want are not there - -They have jjk, re zero, slime, quints, yuru camp, spider and dr stone - -Plus Black Clover and One Piece simulcast - -Not counting aot since funi also has the simulcast - -So half of the top 15 for this first 3 weeks are there";False;False;;;;1610540517;;False;{};gj3tdna;False;t3_kwfbbg;False;False;t3_kwfbbg;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj3tdna/;1610604849;80;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610540562;moderator;False;{};gj3tfm9;False;t3_kwfdon;False;True;t3_kwfdon;/r/anime/comments/kwfdon/do_i_need_to_watch_fma_before_fmab/gj3tfm9/;1610604881;1;False;False;anime;t5_2qh22;;0;[]; -[];;;EldritchCarver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Pilomotor;light;text;t2_4epcw;False;False;[];;"""Do You Love Your Mom and Her Two-Hit Multi-Target Attacks?"" - -https://myanimelist.net/anime/38573/Tsuujou_Kougeki_ga_Zentai_Kougeki_de_Ni-kai_Kougeki_no_Okaasan_wa_Suki_Desu_ka";False;False;;;;1610540567;;False;{};gj3tftp;False;t3_kwecy3;False;True;t1_gj3pwj2;/r/anime/comments/kwecy3/anyone_know_what_this_character_is_called/gj3tftp/;1610604885;3;True;False;anime;t5_2qh22;;0;[]; -[];;;avg11;;;[];;;;text;t2_3bov13yz;False;False;[];;I hear ya! No idea what's up with that..that's why I had to renew my funimation account again. Last season I dropped them but their winter 2021 lineups are pretty good so I switched back. I'm only waiting for Jujutsu Kaisen 2nd cour that's why I'm keeping crunchyroll.;False;False;;;;1610540599;;False;{};gj3th5s;False;t3_kwfbbg;False;False;t3_kwfbbg;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj3th5s/;1610604907;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;I assume that Crunchyroll might get those series within the next 6 months as they fully merge their company with Funimation.;False;False;;;;1610540613;;False;{};gj3thqm;False;t3_kwfbbg;False;False;t3_kwfbbg;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj3thqm/;1610604918;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Misterdeku;;;[];;;;text;t2_24zadji5;False;False;[];;Yes;False;False;;;;1610540620;;False;{};gj3ti24;False;t3_kwd2r4;False;True;t3_kwd2r4;/r/anime/comments/kwd2r4/so_my_sister_spoiled_mirai_nikki_to_me/gj3ti24/;1610604924;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"https://www.crunchyroll.com/anime-news/2020/12/22-1/crunchyroll-announces-winter-2021-anime-lineup - -Spider -Laid Back Camp 2 -Slime 2 -Titan -Dr Stone 2 -Jujutsu -ReZero 2 -Azure Lane Slow Ahead -Armor shop -Dr Ramune -Heaven's Design Team -Hidden Dungeon -Ichu -Idols -Non No Biyori 2 -Quintuplets 2 -Cooking Master -Umamusume 2 -Wave -World Trigger 2 -Yatogame - -21 Titles not counting continueing series. - -[](#whowouldathunkit)";False;False;;;;1610540670;;False;{};gj3tk9p;False;t3_kwfbbg;False;False;t3_kwfbbg;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj3tk9p/;1610604959;36;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;I watched it two days ago;False;False;;;;1610540705;;False;{};gj3tlt4;False;t3_kwf0hk;False;True;t1_gj3t6bk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj3tlt4/;1610604985;144;True;False;anime;t5_2qh22;;0;[]; -[];;;alvar346;;;[];;;;text;t2_17hsydh3;False;False;[];;"magi,becaeuse i wanna be a magician ( not a magi, to much responsabilities). - -FMA:i love the alchemy of that series - -Atelier of the witch hat: again, a simple magician, maybe a rogue one, those are cool";False;False;;;;1610540719;;False;{};gj3tmex;False;t3_kweth7;False;False;t3_kweth7;/r/anime/comments/kweth7/if_you_could_be_reincarnated_to_any_anime/gj3tmex/;1610604995;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;keithohara;;;[];;;;text;t2_gbzf7q;False;True;[];;It's not necessary, but it's pretty good to watch before or after FMAB because it's really good;False;False;;;;1610540783;;False;{};gj3tp9p;False;t3_kwfdon;False;False;t3_kwfdon;/r/anime/comments/kwfdon/do_i_need_to_watch_fma_before_fmab/gj3tp9p/;1610605040;6;True;False;anime;t5_2qh22;;0;[]; -[];;;luisalfonsotv;;;[];;;;text;t2_2ovfhdu4;False;False;[];;not really, since FMAB is a remake of FMA, but i recomend watching both since I enjoyed both of them, but i cant force you to do stuff you dont want. note: FMAB has some different elements and a different conclusion.;False;False;;;;1610540822;;False;{};gj3tqzz;False;t3_kwfdon;False;False;t3_kwfdon;/r/anime/comments/kwfdon/do_i_need_to_watch_fma_before_fmab/gj3tqzz/;1610605069;4;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;No, the two stories are fundamentally separate. You won't be missing anything if you start with Brotherhood, and there's no assumption that you've seen the 2003 series first.;False;False;;;;1610540834;;False;{};gj3trim;False;t3_kwfdon;False;False;t3_kwfdon;/r/anime/comments/kwfdon/do_i_need_to_watch_fma_before_fmab/gj3trim/;1610605077;6;True;False;anime;t5_2qh22;;0;[]; -[];;;mikemd1;;;[];;;;text;t2_19thyv5q;False;False;[];;This was a really good anime.;False;False;;;;1610540850;;False;{};gj3ts7q;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj3ts7q/;1610605088;205;True;False;anime;t5_2qh22;;0;[]; -[];;;Mekazuaquaness;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;mekazuaquaness is true waifu;dark;text;t2_3d9sfw2v;False;False;[];;Founding titan by far. It can erase memories, control dumb titans, and according to Willy make an army of 10 millions colossal titans. I don’t think any titan shifter can stop all that;False;False;;;;1610540872;;False;{};gj3tt4y;False;t3_kwccyy;False;True;t3_kwccyy;/r/anime/comments/kwccyy/who_is_the_most_powerful_titan_in_attack_on_titan/gj3tt4y/;1610605103;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610540935;;False;{};gj3tvzk;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj3tvzk/;1610605148;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Uniqueusername2222;;;[];;;;text;t2_148ouj;False;False;[];;From what you typed just forget about FMA it’s lower in animation quality and non canon just stick with FMAB you won’t be disappointed one of my favorites;False;False;;;;1610540974;;False;{};gj3txs5;False;t3_kwfdon;False;True;t3_kwfdon;/r/anime/comments/kwfdon/do_i_need_to_watch_fma_before_fmab/gj3txs5/;1610605177;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Short Answer: No. - -Long Answer: The original Fullmetal Alchemist anime ran out of source material and diverged and made an anime only ending. People don't recommend the original because Fullmetal Alchemist: Brotherhood exists, which faithfully adapts the source material. - -This is not to say the original Fullmetal Alchemist is bad, it's that when compared with Fullmetal Alchemist: Brotherhood, it's not as good. It's recommended to watch the original Fullmetal Alchemist before Fullmetal Alchemist: Brotherhood because then you'll both series more but it is absolutely alright to just watch Fullmetal Alchemist: Brotherhood.";False;False;;;;1610541042;;False;{};gj3u0sj;False;t3_kwfdon;False;True;t3_kwfdon;/r/anime/comments/kwfdon/do_i_need_to_watch_fma_before_fmab/gj3u0sj/;1610605230;2;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;I watched it in November 2020 I think;False;False;;;;1610541067;;False;{};gj3u1xy;False;t3_kwf0hk;False;True;t1_gj3tlt4;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj3u1xy/;1610605251;96;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610541125;moderator;False;{};gj3u4i4;False;t3_kwfis7;False;True;t3_kwfis7;/r/anime/comments/kwfis7/need_help_with_finding_a_specific_anime_i_saw_as/gj3u4i4/;1610605296;1;False;False;anime;t5_2qh22;;0;[]; -[];;;wow-very-cool;;;[];;;;text;t2_2hkzaokh;False;False;[];;Cardcaptor Sakura?;False;False;;;;1610541159;;False;{};gj3u5zw;False;t3_kwfis7;False;False;t3_kwfis7;/r/anime/comments/kwfis7/need_help_with_finding_a_specific_anime_i_saw_as/gj3u5zw/;1610605320;6;True;False;anime;t5_2qh22;;0;[]; -[];;;slowsign1;;;[];;;;text;t2_7tqx45n;False;False;[];;Yeah that's it! Quick response cheers ✌️;False;False;;;;1610541224;;False;{};gj3u8vw;True;t3_kwfis7;False;False;t1_gj3u5zw;/r/anime/comments/kwfis7/need_help_with_finding_a_specific_anime_i_saw_as/gj3u8vw/;1610605369;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Uniqueusername2222;;;[];;;;text;t2_148ouj;False;False;[];;Yeah skipping parts isn’t recommended your gonna miss out on a ton of call backs and there will be something you might not understand;False;False;;;;1610541227;;False;{};gj3u917;False;t3_kwefuq;False;False;t3_kwefuq;/r/anime/comments/kwefuq/jojo_bizarre_adventure_series/gj3u917/;1610605372;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;"No, - -But I would prefer to watch like the first 10 eps of FMA then start FMAB from ep 5 because the first 4 eps were rushed and had an utterly fast pace.";False;False;;;;1610541255;;False;{};gj3uaax;False;t3_kwfdon;False;True;t3_kwfdon;/r/anime/comments/kwfdon/do_i_need_to_watch_fma_before_fmab/gj3uaax/;1610605393;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mariam-mk;;;[];;;;text;t2_824gi4av;False;False;[];;Thank you all so much!!! I'm gonna start watching FMAB first and then when I'm finished imma watch FMA too if I'll be interested;False;False;;;;1610541271;;False;{};gj3ub1h;True;t3_kwfdon;False;False;t3_kwfdon;/r/anime/comments/kwfdon/do_i_need_to_watch_fma_before_fmab/gj3ub1h/;1610605405;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;I’m pretty sure every character is in 2D;False;False;;;;1610541435;;False;{};gj3uil2;False;t3_kwfj4x;False;False;t3_kwfj4x;/r/anime/comments/kwfj4x/what_are_some_four_demensional_charecters/gj3uil2/;1610605526;22;True;False;anime;t5_2qh22;;0;[]; -[];;;OrginalRecipe_;;;[];;;;text;t2_4ymtyabh;False;False;[];;bruh WTF is that translation 😭 y’all just let the official channels do their job;False;False;;;;1610541481;;False;{};gj3uknx;False;t3_kwdcu0;False;False;t3_kwdcu0;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj3uknx/;1610605559;11;True;False;anime;t5_2qh22;;0;[]; -[];;;thecrazyrai;;;[];;;;text;t2_djiay1i;False;False;[];;but like even the same voice actor for happy;False;False;;;;1610541588;;False;{};gj3upi2;False;t3_kwdcu0;False;False;t3_kwdcu0;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj3upi2/;1610605634;49;True;False;anime;t5_2qh22;;0;[]; -[];;;Bikerider42;;;[];;;;text;t2_105yc5;False;False;[];;"There are two things that are important to understand why she chose to do what she did. The first reason is that from Kaori’s perspective, he was already close and in a relationship with Tsubaki. She thought it would be a rude thing to be honest when he is already so close to another girl. - -The other thing is that Kaori knew that her time was limited, and she didn’t want him to go through the same thing that he went through as a kid. She thought that it would he best for Kousei if she just played the part of a friend. - -It also seemed like she died a lot sooner than expected- even with the fact that her health was already on a decline. Its possible that she was just waiting for the right time to confess, but didn’t realize how little time she actually had.";False;False;;;;1610541644;;False;{};gj3us3u;False;t3_kwdkl1;False;True;t3_kwdkl1;/r/anime/comments/kwdkl1/rant_about_your_lie_in_april_spoilers/gj3us3u/;1610605674;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal_Ebb_238;;;[];;;;text;t2_8nmkui77;False;False;[];;Fullmetal alchemist, I can only imagine how much machineries and tools I can make from alchemy, even if I have to draw circle and incapable of performing alchemy like the elric brothers, it is still a lot easier and cheaper than our world.;False;False;;;;1610541669;;False;{};gj3ut9e;False;t3_kweth7;False;False;t3_kweth7;/r/anime/comments/kweth7/if_you_could_be_reincarnated_to_any_anime/gj3ut9e/;1610605692;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;rarz;;MAL;[];;http://myanimelist.net/profile/rarz;dark;text;t2_4gtlz;False;False;[];;Mamako!;False;False;;;;1610541733;;False;{};gj3uw6x;False;t3_kwecy3;False;True;t3_kwecy3;/r/anime/comments/kwecy3/anyone_know_what_this_character_is_called/gj3uw6x/;1610605740;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your submission has been removed. - -- It looks like your questions have been answered, so we're taking it off the list of new posts to make room for other content. For future reference, here are some additional resources that may help you find an answer even faster: - - - [To ask any random question you may have, visit our Weekly Miscellaneous Anime Questions thread!](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Weekly+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) - - [For finding an anime based off of a single image, reverse image searching typically works instantly](http://www.reddit.com/r/anime/wiki/reverse_image_searching) - - [r/anime has a large number of watch orders available](http://www.reddit.com/r/anime/wiki/watch_order) - - [You can find all of your recommendation needs here](http://www.reddit.com/r/anime/wiki/recommendations) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610541923;moderator;False;{};gj3v53b;False;t3_kwecy3;False;True;t3_kwecy3;/r/anime/comments/kwecy3/anyone_know_what_this_character_is_called/gj3v53b/;1610605885;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PranayNighukar;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_lmr6sb5;False;False;[];;👍;False;False;;;;1610541943;;False;{};gj3v61q;False;t3_kwfpu9;False;True;t3_kwfpu9;/r/anime/comments/kwfpu9/anime_debate_comment_your_opinions_on_certain/gj3v61q/;1610605900;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610541951;moderator;False;{};gj3v6fw;False;t3_kwfqir;False;True;t3_kwfqir;/r/anime/comments/kwfqir/kyoto_animation_training_school_age_limit/gj3v6fw/;1610605907;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Trojbd;;;[];;;;text;t2_a0lk7;False;False;[];;Its a show where the paraphrase sounds a lot more interesting than the actual show imo.;False;False;;;;1610542014;;False;{};gj3v9hn;False;t3_kwd2r4;False;False;t3_kwd2r4;/r/anime/comments/kwd2r4/so_my_sister_spoiled_mirai_nikki_to_me/gj3v9hn/;1610605956;5;True;False;anime;t5_2qh22;;0;[]; -[];;;steveyouth112;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Steveyouth112;light;text;t2_4m7p4w6v;False;False;[];;"Humanity has declined. - -Life would be great (assuming we'd be able to appease the sugar addicted fairies.)";False;False;;;;1610542017;;False;{};gj3v9mm;False;t3_kweth7;False;False;t3_kweth7;/r/anime/comments/kweth7/if_you_could_be_reincarnated_to_any_anime/gj3v9mm/;1610605959;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;STRWCHERRI_;;;[];;;;text;t2_90iuedld;False;False;[];;"Haikyuu, not gonna lie. - -But for fantasy, probably Yona Of Dawn.";False;False;;;;1610542038;;False;{};gj3vam0;False;t3_kweth7;False;False;t3_kweth7;/r/anime/comments/kweth7/if_you_could_be_reincarnated_to_any_anime/gj3vam0/;1610605974;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Waleed320COOL;;;[];;;;text;t2_2nr4n8nv;False;False;[];;"First of all if she didnt want him to go through what he went through with his mother, she shouldve never told him at all. And if she thought he was close to Tsubaki she shouldnt have told him at all. - -I think ppl are Misunderstanding me. I dont mean to say she shouldve told, I'm saying the thing she did makes no sense, either she shouldve never told or told. Dont tell after dying.";False;False;;;;1610542110;;False;{};gj3ve3w;True;t3_kwdkl1;False;True;t1_gj3us3u;/r/anime/comments/kwdkl1/rant_about_your_lie_in_april_spoilers/gj3ve3w/;1610606030;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;zxHellboyxz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Mattinator95;light;text;t2_27t5u6vk;False;False;[];;Don't recall much of It though apart from the mc saying friends alot and wanting to be friends with everyone;False;False;;;;1610542133;;False;{};gj3vf79;False;t3_kwdcu0;False;False;t1_gj3rvc8;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj3vf79/;1610606049;6;True;False;anime;t5_2qh22;;0;[]; -[];;;zxHellboyxz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Mattinator95;light;text;t2_27t5u6vk;False;False;[];;It would say it's more fanservicy then FT;False;False;;;;1610542179;;False;{};gj3vhck;False;t3_kwdcu0;False;False;t1_gj3sjs3;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj3vhck/;1610606086;21;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;"> Journey of Elaina - -I really like Elaina. - -Elaina's very consistent, actually. She only goes through mild change from the first episode, where she learns to - and this is really important for the narcissism discussion - not look down on others (she's got a big ego but, really, she doesn't put others down like she did in the first episode where she suggested other witches were crap). However, she's got her main tenants of characterisation, with her cautiousness, money-mindedness, pettiness, self-esteem, general reactions to dialogue and such, oh, and naturally with regards to the dark stuff, the way she freezes up and panics and fears and is forced into inactivity from anxiety. - -For a show so varied in tone, I think her character's consistency is actually impressive. I'm quite used to these sorts of big tonal shows having characters go way out for a gag or something. Much more 'revered' anime suffer from this, but then again, Elaina's not that complex.";False;False;;;;1610542191;;False;{};gj3vhxl;False;t3_kwfpu9;False;True;t3_kwfpu9;/r/anime/comments/kwfpu9/anime_debate_comment_your_opinions_on_certain/gj3vhxl/;1610606095;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal_Ebb_238;;;[];;;;text;t2_8nmkui77;False;False;[];;Try sinbad from adventure of sinbad and magi.;False;False;;;;1610542311;;False;{};gj3vnp4;False;t3_kwfj4x;False;True;t3_kwfj4x;/r/anime/comments/kwfj4x/what_are_some_four_demensional_charecters/gj3vnp4/;1610606189;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;Okay since people already answered your question, o will just suggest you to read Naruto's manga, there's no filler there and with manga you can go with 10 episodes in less than an hour;False;True;;comment score below threshold;;1610542400;;False;{};gj3vryz;False;t3_kwfdon;False;True;t3_kwfdon;/r/anime/comments/kwfdon/do_i_need_to_watch_fma_before_fmab/gj3vryz/;1610606259;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;"Shirou Emiya and most of the Fate universe? - -Most of the Fate cast appears throughout several different scenarios and universes. - -Fate, Unlimited Blade Works, Heaven's Feel, Emiya family, and Prisma Illya Shirou are all different characters with some common features.";False;False;;;;1610542422;;False;{};gj3vt2h;False;t3_kwfj4x;False;True;t3_kwfj4x;/r/anime/comments/kwfj4x/what_are_some_four_demensional_charecters/gj3vt2h/;1610606277;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;"I mean it seems like you’re just within the range but considering the fact you haven’t applied yet it’s probably too late and you won’t get accepted. Can’t hurt to try tho. - -Also I should add that you must already have a visa in order to apply as the school cannot get one on your behalf and with the current pandemic, that’ll be really hard to get. Don’t even know if you can tbh.";False;False;;;;1610542428;;1610543007.0;{};gj3vtcl;False;t3_kwfqir;False;True;t3_kwfqir;/r/anime/comments/kwfqir/kyoto_animation_training_school_age_limit/gj3vtcl/;1610606282;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Meemeli;;;[];;;;text;t2_2o1rogl;False;False;[];;" JoJo's Bizarre Adventure, you start with Part 1. - -Every Part features a new cast of characters, a new setting and a new story goal. -Following the lineage of the Joestar family. - -Best subs from \[Some-Stuffs\]. - -[**Part 1**](https://myanimelist.net/manga/1517)**: Phantom Blood** - -* [JoJo's Bizarre Adventure (2012)](https://myanimelist.net/anime/14719) eps 1 - 9 - -[**Part 2**](https://myanimelist.net/manga/1630)**: Battle Tendency** - -* [JoJo's Bizarre Adventure (2012)](https://myanimelist.net/anime/14719) eps 10 - 26 - -[**Part 3**](https://myanimelist.net/manga/872)**: Stardust Crusaders** - -* [JoJo's Bizarre Adventure: Stardust Crusaders ](https://myanimelist.net/anime/20899)\+ [JoJo's Bizarre Adventure: Stardust Crusaders - Egypt Arc](https://myanimelist.net/anime/26055) - -[**Part 4**](https://myanimelist.net/manga/3006)**: Diamond Is Unbreakable** - -* [JoJo's Bizarre Adventure: Diamond Is Unbreakable](https://myanimelist.net/anime/31933) -* OVA: [Thus Spoke Kishibe Rohan](https://myanimelist.net/anime/33191) - -[**Part 5**](https://myanimelist.net/manga/3008)**: Golden Wind / Vento Aureo** - -* [JoJo's Bizarre Adventure: Golden Wind / Vento Aureo](https://myanimelist.net/anime/37991) - -[**Part 6**](https://myanimelist.net/manga/3009)**: Stone Ocean**, - -[**Part 7**](https://myanimelist.net/manga/1706)**: Steel Ball Run** and - -[**Part 8**](https://myanimelist.net/manga/25515)**: JoJolion** have no anime yet. - -Total [JoJo eps](https://jojowiki.com/List_of_JoJo%27s_Bizarre_Adventure_episodes/Episode_151_to_Current): 152 + 4 OVAs - -Also feel free to visit the JoJo sub at [r/StardustCrusaders](https://www.reddit.com/r/StardustCrusaders/) and [JoJo Wiki](https://jojowiki.com/).";False;False;;;;1610542431;;False;{};gj3vthy;False;t3_kwefuq;False;False;t3_kwefuq;/r/anime/comments/kwefuq/jojo_bizarre_adventure_series/gj3vthy/;1610606284;9;True;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;Was it any different before?;False;False;;;;1610542445;;False;{};gj3vu5f;False;t3_kwfbbg;False;True;t3_kwfbbg;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj3vu5f/;1610606295;1;True;False;anime;t5_2qh22;;0;[]; -[];;;STRWCHERRI_;;;[];;;;text;t2_90iuedld;False;False;[];;PFFT good luck with this one.;False;False;;;;1610542461;;False;{};gj3vv04;False;t3_kwdowc;False;True;t1_gj3rr89;/r/anime/comments/kwdowc/romance_anime_where_the_mc_isnt_as_dense_as_rock/gj3vv04/;1610606310;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Allthenumbers;;;[];;;;text;t2_7kroy;False;False;[];;I doubt I'm the only one who wants to watch these shows on Crunchyroll... It sucks having to have 2 subscriptions especially given that Funimation is the weaker streaming service.;False;True;;comment score below threshold;;1610542472;;False;{};gj3vvkr;True;t3_kwfbbg;False;True;t1_gj3tdna;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj3vvkr/;1610606318;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;chika2chi;;;[];;;;text;t2_4dkz2y8e;False;False;[];;you mean like a four dimensional being?;False;False;;;;1610542501;;False;{};gj3vwyk;False;t3_kwfj4x;False;True;t3_kwfj4x;/r/anime/comments/kwfj4x/what_are_some_four_demensional_charecters/gj3vwyk/;1610606340;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;"Most anime fans are into ""late night anime"" which is the seasonal stuff that airs after like 10PM in Japan. Most western fans won't have ever watched Conan and might not even know who he is, and so it doesn't get talked about.";False;False;;;;1610542509;;False;{};gj3vxd0;False;t3_kwfui4;False;False;t3_kwfui4;/r/anime/comments/kwfui4/anime_everyone_knows_but_no_one_talks_about/gj3vxd0/;1610606346;4;True;False;anime;t5_2qh22;;0;[]; -[];;;STRWCHERRI_;;;[];;;;text;t2_90iuedld;False;False;[];;-Say 'I Love You'.;False;False;;;;1610542522;;False;{};gj3vxxh;False;t3_kwdowc;False;True;t3_kwdowc;/r/anime/comments/kwdowc/romance_anime_where_the_mc_isnt_as_dense_as_rock/gj3vxxh/;1610606355;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;*Very* popular in Japan, not so much in the West.;False;False;;;;1610542556;;False;{};gj3vzmc;False;t3_kwfui4;False;True;t3_kwfui4;/r/anime/comments/kwfui4/anime_everyone_knows_but_no_one_talks_about/gj3vzmc/;1610606381;1;True;False;anime;t5_2qh22;;0;[]; -[];;;eggnogseller;;;[];;;;text;t2_3x4l1ngp;False;False;[];;I'm 25 in a few years so its not really a problem yet. Just looking for some info right now.;False;False;;;;1610542557;;False;{};gj3vznz;True;t3_kwfqir;False;True;t1_gj3vtcl;/r/anime/comments/kwfqir/kyoto_animation_training_school_age_limit/gj3vznz/;1610606382;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Head-Extreme-8078;;;[];;;;text;t2_846qc9r8;False;False;[];;oh I see;False;False;;;;1610542564;;False;{};gj3vzz9;True;t3_kwfui4;False;True;t1_gj3vxd0;/r/anime/comments/kwfui4/anime_everyone_knows_but_no_one_talks_about/gj3vzz9/;1610606386;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;Do you know Japanese?;False;False;;;;1610542623;;False;{};gj3w2ut;False;t3_kwfqir;False;True;t1_gj3vznz;/r/anime/comments/kwfqir/kyoto_animation_training_school_age_limit/gj3w2ut/;1610606440;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Allthenumbers;;;[];;;;text;t2_7kroy;False;False;[];;I've never noticed it being bad enough to ask for others opinions on reddit so I'd say yes but then again, I've only been using crunchyroll for 5 years or so.;False;False;;;;1610542632;;False;{};gj3w39m;True;t3_kwfbbg;False;True;t1_gj3vu5f;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj3w39m/;1610606446;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;eggnogseller;;;[];;;;text;t2_3x4l1ngp;False;False;[];;No;False;False;;;;1610542669;;False;{};gj3w510;True;t3_kwfqir;False;True;t1_gj3w2ut;/r/anime/comments/kwfqir/kyoto_animation_training_school_age_limit/gj3w510/;1610606473;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SocialLoser739;;;[];;;;text;t2_4ttuko0s;False;False;[];;Me;False;False;;;;1610542730;;False;{};gj3w80k;False;t3_kwfj4x;False;True;t3_kwfj4x;/r/anime/comments/kwfj4x/what_are_some_four_demensional_charecters/gj3w80k/;1610606524;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610542732;;False;{};gj3w84y;False;t3_kwfui4;False;True;t3_kwfui4;/r/anime/comments/kwfui4/anime_everyone_knows_but_no_one_talks_about/gj3w84y/;1610606528;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;Well, if you're serious about this, then start learning.;False;False;;;;1610542742;;False;{};gj3w8nv;False;t3_kwfqir;False;True;t1_gj3w510;/r/anime/comments/kwfqir/kyoto_animation_training_school_age_limit/gj3w8nv/;1610606538;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Kyubey maybe;False;False;;;;1610542756;;False;{};gj3w9cn;False;t3_kwfj4x;False;True;t3_kwfj4x;/r/anime/comments/kwfj4x/what_are_some_four_demensional_charecters/gj3w9cn/;1610606549;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ReiEnjoyer;;;[];;;;text;t2_9mmu6sjf;False;False;[];;"You either would enjoy and or be really confused about Evangelion. Either way it fits into psychological horror and Gore. - -Assassination Classroom is pretty thrilling but, it can be humorous. - -Jojo's Bizzare Adventure for its ""Bizzare"" Plotline and each parts are different but, it connects one way another. It sometimes can be gory too.";False;False;;;;1610542770;;False;{};gj3wa14;False;t3_kwchum;False;True;t3_kwchum;/r/anime/comments/kwchum/im_a_new_anime_fan_suggest_me_something/gj3wa14/;1610606561;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"Detective Conan is one of the longest running anime out there. It’s currently on its 29th season from what I read and it doesn’t show any signs of stopping. - -Iirc, it’s just not popular in the west or in English speaking countries. Places like Japan, some areas in Europe, and many Spanish speaking countries love it. Due to some localization problems and how it was dubbed, it never really took off in America like it did in other countries.";False;False;;;;1610542797;;False;{};gj3wb9a;False;t3_kwfui4;False;False;t3_kwfui4;/r/anime/comments/kwfui4/anime_everyone_knows_but_no_one_talks_about/gj3wb9a/;1610606582;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Head-Extreme-8078;;;[];;;;text;t2_846qc9r8;False;False;[];;"Yup, I'm Korean and the reason is probably what the guy on the last comment described about late night anime. -I grew up watching anime like cartoons with my parents when I was little and they were more family oriented. -I believe my mother grew up watching Atom (Astro Boy) in black and white :p -I just realized now why stuff like Shin Chan or Doraemon is not particularly known now. Thanks :)";False;False;;;;1610542827;;False;{};gj3wcrj;True;t3_kwfui4;False;True;t1_gj3vzmc;/r/anime/comments/kwfui4/anime_everyone_knows_but_no_one_talks_about/gj3wcrj/;1610606610;1;True;False;anime;t5_2qh22;;0;[]; -[];;;eggnogseller;;;[];;;;text;t2_3x4l1ngp;False;False;[];;Yeah, I known. Just looking around to make sure if it's actually worth investing the time into;False;False;;;;1610542830;;False;{};gj3wcxp;True;t3_kwfqir;False;True;t1_gj3w8nv;/r/anime/comments/kwfqir/kyoto_animation_training_school_age_limit/gj3wcxp/;1610606613;1;True;False;anime;t5_2qh22;;0;[]; -[];;;daniel26112009;;;[];;;;text;t2_3uso6r8t;False;False;[];;No;False;False;;;;1610542833;;False;{};gj3wd30;True;t3_kwfj4x;False;True;t1_gj3vwyk;/r/anime/comments/kwfj4x/what_are_some_four_demensional_charecters/gj3wd30/;1610606616;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal_Ebb_238;;;[];;;;text;t2_8nmkui77;False;False;[];;Even in the east it's popularity have decrease since the actual plot is just too slow and the sub-plot are just too repetitive.;False;False;;;;1610542909;;False;{};gj3wgro;False;t3_kwfui4;False;False;t1_gj3vzmc;/r/anime/comments/kwfui4/anime_everyone_knows_but_no_one_talks_about/gj3wgro/;1610606679;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"> I believe my mother grew up watching Atom (Astro Boy) in black and white - -To be fair, my dad also watched Astro Boy growing up in the US in the '60s.";False;False;;;;1610542922;;False;{};gj3whee;False;t3_kwfui4;False;True;t1_gj3wcrj;/r/anime/comments/kwfui4/anime_everyone_knows_but_no_one_talks_about/gj3whee/;1610606688;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;I have watched the first like 300? episodes as a kid or teen on TV (aired for at least a decade in Germany but lots of repeats there) and the web but fell out of it a long time ago because I saw repeating cases. Never watched any of the movies and I doubt I'll ever again get back into the franchise but watching like 1 episode a day might actually be nice.;False;False;;;;1610542927;;False;{};gj3whn4;False;t3_kwfui4;False;True;t3_kwfui4;/r/anime/comments/kwfui4/anime_everyone_knows_but_no_one_talks_about/gj3whn4/;1610606692;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"You are not, the same way there's people with only Funimation wanting to watch the Crunchyroll shows - -That's how competition works, same thing for games, Xbox fans would like to play God Of war and Playstation fans would like to Play Gears of war - -They will become one service by the end of the year, doesn't mean That's a good thing but hey some people like it";False;False;;;;1610542984;;False;{};gj3wkhv;False;t3_kwfbbg;False;False;t1_gj3vvkr;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj3wkhv/;1610606740;39;True;False;anime;t5_2qh22;;0;[]; -[];;;Phantom_Spark;;;[];;;;text;t2_4itl1rn;False;False;[];;I never watched Conan. But I did enjoy Kaito Kid. Conan had a few guest appearances in the series.;False;False;;;;1610543092;;False;{};gj3wpox;False;t3_kwfui4;False;True;t3_kwfui4;/r/anime/comments/kwfui4/anime_everyone_knows_but_no_one_talks_about/gj3wpox/;1610606824;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ptlg225;;;[];;;;text;t2_573wpm4g;False;False;[];; I love this anime, the mystery is very interesting and it portrays the layered personality of the characters well.;False;False;;;;1610543108;;False;{};gj3wqjr;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj3wqjr/;1610606837;58;True;False;anime;t5_2qh22;;0;[]; -[];;;chika2chi;;;[];;;;text;t2_4dkz2y8e;False;False;[];;then what do you mean by four dimensional characters?;False;False;;;;1610543234;;False;{};gj3wwth;False;t3_kwfj4x;False;False;t1_gj3wd30;/r/anime/comments/kwfj4x/what_are_some_four_demensional_charecters/gj3wwth/;1610606937;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Babayagagagag;;;[];;;;text;t2_9g25u423;False;False;[];;Subaru from reZero is the most op main character ever;False;False;;;;1610543265;;False;{};gj3wyeg;False;t3_kwfpu9;False;False;t3_kwfpu9;/r/anime/comments/kwfpu9/anime_debate_comment_your_opinions_on_certain/gj3wyeg/;1610606963;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ValkyrProper;;;[];;;;text;t2_g0ags94;False;False;[];;Himeko was just the best.;False;False;;;;1610543350;;False;{};gj3x2n2;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj3x2n2/;1610607032;54;True;False;anime;t5_2qh22;;0;[]; -[];;;Allthenumbers;;;[];;;;text;t2_7kroy;False;False;[];;I mean in the end monopoly isn't healthy for any market but the real issue is that a lot of animation companies won't license a show to BOTH platforms just as a lot of game companies won't sell games on both consoles. Crunchyroll may have certain great anime but it seems that Funimation has those titles this year AND exclusives that crunchyroll doesn't. This makes no sense to me, like why wouldn't an anime studio want to have both platforms for more people to see their work? /rant;False;False;;;;1610543382;;False;{};gj3x49k;True;t3_kwfbbg;False;False;t1_gj3wkhv;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj3x49k/;1610607058;0;True;False;anime;t5_2qh22;;0;[]; -[];;;melcarba;;;[];;;;text;t2_ywnzr;False;False;[];;"\> the same way there's people with only Funimation wanting to watch the Crunchyroll shows - -Makes 0 sense when if Funimation is available in your territory, CR is also available. The converse is not true (i.e.: Territories like South Africa or Europe outside the ones covered by Wakanim Nordic in w/c CR is only available). No ones stopping them (the ones with only Funimation) to watch the shows on CR for free with ads (if they don't want to pay for a second subscription).";False;False;;;;1610543450;;False;{};gj3x7oo;False;t3_kwfbbg;False;True;t1_gj3wkhv;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj3x7oo/;1610607112;3;True;False;anime;t5_2qh22;;0;[]; -[];;;melcarba;;;[];;;;text;t2_ywnzr;False;False;[];;CR basically stopped trying after Summer 2020. But hey, you can watch Crunchyroll's original garbage like Gibiate, ~~Noblesse~~ and EX-ARM!;False;True;;comment score below threshold;;1610543529;;1610547033.0;{};gj3xbtw;False;t3_kwfbbg;False;True;t3_kwfbbg;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj3xbtw/;1610607178;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610543537;moderator;False;{};gj3xc79;False;t3_kwg64j;False;True;t3_kwg64j;/r/anime/comments/kwg64j/in_episode_2_or_3_of_is_the_order_a_rabbit_season/gj3xc79/;1610607185;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"They pay more for the exclusivity or in the Crunchyroll case, they are also financing some of those anime - -Funimation also does this through Aniplex - -If you are paying for the production you want the show to be exclusive to your service - -Just like Netflix has their own productions that will be forever exclusive to them";False;False;;;;1610543747;;False;{};gj3xn6q;False;t3_kwfbbg;False;False;t1_gj3x49k;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj3xn6q/;1610607367;13;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610543774;moderator;False;{};gj3xokr;False;t3_kwg89f;False;True;t3_kwg89f;/r/anime/comments/kwg89f/anime_similar_to_sangatsu_no_lion/gj3xokr/;1610607389;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi IllustriousIncident7, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610543774;moderator;False;{};gj3xole;False;t3_kwg89f;False;True;t3_kwg89f;/r/anime/comments/kwg89f/anime_similar_to_sangatsu_no_lion/gj3xole/;1610607390;1;False;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;I'm assuming it's because western fans like stuff that airs inside the watershed instead of the outside.;False;False;;;;1610543800;;False;{};gj3xpxo;False;t3_kwfui4;False;True;t3_kwfui4;/r/anime/comments/kwfui4/anime_everyone_knows_but_no_one_talks_about/gj3xpxo/;1610607412;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarRufus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ScarRufus;light;text;t2_2u0vy1pk;False;False;[];;"Shouwa Rakugo Shinjuu - -Fruit Basket Remake - -I think they are really good drama/sol anime as 3-gatsu no lion.";False;False;;;;1610543871;;False;{};gj3xtqv;False;t3_kwg89f;False;False;t3_kwg89f;/r/anime/comments/kwg89f/anime_similar_to_sangatsu_no_lion/gj3xtqv/;1610607475;14;True;False;anime;t5_2qh22;;0;[]; -[];;;TheUltimateTeigu;;;[];;;;text;t2_jjzxh;False;False;[];;From what I've heard it's very different from Fairy Tail and what that show typically connotates. I wouldn't brush it off simply because the character designs are similar and the author is the same.;False;False;;;;1610543987;;False;{};gj3xzx9;False;t3_kwdcu0;False;False;t1_gj3lk9l;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj3xzx9/;1610607580;11;True;False;anime;t5_2qh22;;0;[]; -[];;;SonAnka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SonAnka;light;text;t2_4bv8n52s;False;False;[];;I was about to watch that anime but i cant find my own languange sub :D I gues im going to watch with english sub then :P;False;False;;;;1610544006;;False;{};gj3y0xv;True;t3_kweif2;False;True;t1_gj3qf4n;/r/anime/comments/kweif2/i_need_anime_suggestions_harem_with_coolpowerfull/gj3y0xv/;1610607595;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DellaDae;;;[];;;;text;t2_8ddji;False;False;[];;A lot of the time its the streaming platform that pays to have exclusive streaming rights for a show instead of an anime studio just not wanting their anime on multiple platforms. I'm sure the creators would want as many people to be able to watch their show as possible, but if the studio will make more money by giving exclusivity rights to one streaming platform, then that's probably the deal they'd go with.;False;False;;;;1610544127;;False;{};gj3y7f6;False;t3_kwfbbg;False;False;t1_gj3x49k;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj3y7f6/;1610607702;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SonAnka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SonAnka;light;text;t2_4bv8n52s;False;False;[];;"High School DxD: I have doubts because of last saeson art style change but its in my list. I'm just not sure because of last saeson :D - -Strike the Blood: I'm waiting last saeson end then im going to start watching. - -To Love RU: If i remember correct MC was coward powerless guy? - - Seiken Tsukai no World Break: I wathed this one but thank you.";False;False;;;;1610544178;;False;{};gj3ya8f;True;t3_kweif2;False;True;t1_gj3qu4n;/r/anime/comments/kweif2/i_need_anime_suggestions_harem_with_coolpowerfull/gj3ya8f/;1610607744;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SonAnka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SonAnka;light;text;t2_4bv8n52s;False;False;[];;Can you explain this more detailed?;False;False;;;;1610544219;;False;{};gj3ycgv;True;t3_kweif2;False;True;t1_gj3rtrq;/r/anime/comments/kweif2/i_need_anime_suggestions_harem_with_coolpowerfull/gj3ycgv/;1610607779;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mohdmustafa771;;;[];;;;text;t2_bleb5z1;False;False;[];;One punch man plays tennis;False;False;;;;1610544625;;False;{};gj3yyrs;False;t3_kwfpu9;False;True;t1_gj3wyeg;/r/anime/comments/kwfpu9/anime_debate_comment_your_opinions_on_certain/gj3yyrs/;1610608124;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aliensinnoh;;;[];;;;text;t2_x0aq3c;False;False;[];;Perfect couple;False;False;;;;1610544662;;False;{};gj3z0r6;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj3z0r6/;1610608154;39;True;False;anime;t5_2qh22;;0;[]; -[];;;Prince-Dizzytoon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/princedizzytoon;light;text;t2_mu0df;False;False;[];;Inaban best girl;False;False;;;;1610544927;;False;{};gj3zfm2;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj3zfm2/;1610608389;181;True;False;anime;t5_2qh22;;0;[]; -[];;;The_ProfessorWolf;;;[];;;;text;t2_9rsvivl8;False;False;[];;Gintama, so I can enjoy gintoki and gang for the 1st time over and over, for all eternity, and attack on titan;False;False;;;;1610544953;;False;{};gj3zh6a;False;t3_kwgf1t;False;False;t3_kwgf1t;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj3zh6a/;1610608412;4;True;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;Ramiel? I really have no clue what you mean by 4D character tbh...;False;False;;;;1610545020;;False;{};gj3zl52;False;t3_kwfj4x;False;False;t3_kwfj4x;/r/anime/comments/kwfj4x/what_are_some_four_demensional_charecters/gj3zl52/;1610608473;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Rdub94;;;[];;;;text;t2_3npsb60h;False;False;[];;Darling In The Franxx or Haikyuu, i loved both of them so much when i first started watching them;False;False;;;;1610545027;;False;{};gj3zll1;False;t3_kwgf1t;False;True;t3_kwgf1t;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj3zll1/;1610608480;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok-Alternative-7424;;;[];;;;text;t2_714aunl0;False;False;[];;"Aight I gotta few: - -* Personally I think anime movies > anime series. I can connect more to studio ghibli films than a series. But I despise live action anime adaption movies. - -* the old gen of anime is the best like naruto,dragonball,Yugioh,gurren lagann, etc. the only new gen anime I can enjoy is deca dence and golden kamuy. Idk maybe just my taste. - -* I agree with ppl that say the demon slayer plot is generic. But you can’t ignore the success it brought to the anime industry. Every time I go shopping at places that have anime merch are 75% demon slayer items. It’s one of the biggest new gen anime and if your on the internet you’ve had to encounter this anime once. The movie(that already came out in Japan) was a box office success. I think one of the best successes of the year in the box office? Idk but my point is if you don’t like demon slayer like me that’s ok but you can’t ignore the attention it’s brought to the anime industry. And I feel like the next seasons will be better. - -That’s all I got rn this just my opinion please don’t hate. - -Edit cuz I gotta few more: - -* 80% I can’t stand the color pallets of animes. Like the grass color is way too bright. Idk maybe my eyes r just sensitive. But they need to dim down the color like demon slayer grass did. - -* the aot fandom is the chillest. Like I never see them get into fan wars. - -* Netflix needs to stop titling stuff anime just bc they think it’ll get more views. Like seriously blood of Zeus was made in Texas I think not Japan. I know anime is an artstyle so maybe blood of Zeus did the artstyle and that’s y they call anime. Personally I don’t think it looks like anime. Not hating on blood of Zeus bc I like it but it’s not anime. - -* ppl need to stop watching anime if they r just watching it bc it’s trendy and makes them look cool. - -* I wanna see anime about dinosaurs other than dinosaur king. Something like primal. -And I wanna see anime about animals. - -* The best live action anime movie adaptation is Alita battle Angel. I don’t think many ppl know that it was an old anime movie. And I think it got some manga? I hope we get sequels.";False;False;;;;1610545060;;1610547058.0;{};gj3znfm;False;t3_kwfpu9;False;True;t3_kwfpu9;/r/anime/comments/kwfpu9/anime_debate_comment_your_opinions_on_certain/gj3znfm/;1610608508;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;VinniTheKabbage;;;[];;;;text;t2_anx1i45;False;False;[];;Kono Oto Tomare. Is probably my favorite anime ever. And its got a perfect emotional balance similar to sangatsu no lion.;False;False;;;;1610545219;;False;{};gj3zwjn;False;t3_kwg89f;False;False;t3_kwg89f;/r/anime/comments/kwg89f/anime_similar_to_sangatsu_no_lion/gj3zwjn/;1610608647;5;True;False;anime;t5_2qh22;;0;[]; -[];;;NynjaHyppy;;;[];;;;text;t2_2koxpqvo;False;False;[];;"One Piece so I could binge watch all 900 episodes again. - -Or Gurren Lagann so I could witness the glory of Team Dai Gurren baby!!";False;False;;;;1610545265;;False;{};gj3zz6w;False;t3_kwgf1t;False;False;t3_kwgf1t;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj3zz6w/;1610608689;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Cheetah357;;;[];;;;text;t2_6h532l18;False;False;[];;Did you like it? If you did, I'd recommend watching The Monogatari Series. The Monogatari Series is what inspired Bunny Girl Senpai. [Here](https://edomonogatari.wordpress.com/2020/05/12/monogatari-anime-guide/) is the guide to watching it.;False;False;;;;1610545314;;False;{};gj4022v;False;t3_kwdowc;False;True;t1_gj3mfi1;/r/anime/comments/kwdowc/romance_anime_where_the_mc_isnt_as_dense_as_rock/gj4022v/;1610608733;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TaiQuanDope1;;;[];;;;text;t2_1h0lczt2;False;False;[];;Just wait until the buyout goes through.;False;False;;;;1610545559;;False;{};gj40gna;False;t3_kwfbbg;False;True;t1_gj3vvkr;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj40gna/;1610608956;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Naothe;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/Naothe/;light;text;t2_djwc54;False;False;[];;\*is, Himeko is the best;False;False;;;;1610545573;;False;{};gj40hgo;False;t3_kwf0hk;False;True;t1_gj3x2n2;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj40hgo/;1610608969;32;True;False;anime;t5_2qh22;;0;[]; -[];;;SonAnka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SonAnka;light;text;t2_4bv8n52s;False;False;[];;" [**Tasogare Otome x Amnesia**](https://myanimelist.net/anime/12445/Tasogare_Otome_x_Amnesia) **- Because it was simply beautiful with every detail, character and story part <3**";False;False;;;;1610545618;;False;{};gj40k3k;False;t3_kwgf1t;False;True;t3_kwgf1t;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj40k3k/;1610609011;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Howdareme9;;;[];;;;text;t2_va9v1;False;False;[];;Brilliant;False;False;;;;1610545653;;False;{};gj40m6m;False;t3_kwdcu0;False;False;t1_gj3vhck;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj40m6m/;1610609043;19;True;False;anime;t5_2qh22;;0;[]; -[];;;AllTsunAndNoDere;;;[];;;;text;t2_91hut0q;False;False;[];;" -Natsume Yuujinchou";False;False;;;;1610545779;;False;{};gj40tpo;False;t3_kwg89f;False;False;t3_kwg89f;/r/anime/comments/kwg89f/anime_similar_to_sangatsu_no_lion/gj40tpo/;1610609161;6;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"For Highschool DxD, the studio change was because they deviated massively from the light novels. It’s a great series otherwise. - -To Love RU: not far off, but then again, a girl literally appeared in his bathtub, and said that she was going to marry him.";False;False;;;;1610545840;;False;{};gj40xgg;False;t3_kweif2;False;True;t1_gj3ya8f;/r/anime/comments/kweif2/i_need_anime_suggestions_harem_with_coolpowerfull/gj40xgg/;1610609217;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Minisabel;;;[];;;;text;t2_2a3z01mv;False;False;[];;Everything from the start of the start of the palace invasion was a huge letdown for me too.;False;False;;;;1610545897;;False;{};gj410w8;False;t3_kwdber;False;True;t3_kwdber;/r/anime/comments/kwdber/hunter_x_hunter_good_or_bad/gj410w8/;1610609269;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Buzz_Inaldae;;;[];;;;text;t2_8cfn0z8j;False;False;[];;I agree on both of those!!;False;False;;;;1610545921;;False;{};gj412b7;False;t3_kwgf1t;False;True;t1_gj3zz6w;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj412b7/;1610609290;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;Bruh, Noblesse is not that bad to put it next to Gibiate and EX-ARM;False;False;;;;1610545964;;False;{};gj414xv;False;t3_kwfbbg;False;False;t1_gj3xbtw;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj414xv/;1610609331;9;True;False;anime;t5_2qh22;;0;[]; -[];;;AishaWater;;;[];;;;text;t2_4hyxtvdb;False;False;[];;Attack on Titan or tower of god, Aot because of how hooked I got on getting answers to the big why questions of the show, and Tower of god because of a certain *ahem* betrayal and how shocked I was.;False;False;;;;1610545988;;False;{};gj416gg;False;t3_kwgf1t;False;True;t3_kwgf1t;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj416gg/;1610609354;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jianthepro;;;[];;;;text;t2_4henx9x1;False;False;[];;Well yes but not really;False;False;;;;1610546034;;False;{};gj4199c;False;t3_kwdowc;False;True;t1_gj3p1mi;/r/anime/comments/kwdowc/romance_anime_where_the_mc_isnt_as_dense_as_rock/gj4199c/;1610609397;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zool714;;;[];;;;text;t2_11y457;False;False;[];;Dereban~;False;False;;;;1610546053;;False;{};gj41ag7;False;t3_kwf0hk;False;True;t1_gj3t2bb;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj41ag7/;1610609414;103;True;False;anime;t5_2qh22;;0;[]; -[];;;Narrovv;;;[];;;;text;t2_2yjywbm4;False;False;[];;I really wish this show didn’t fall apart towards the end;False;False;;;;1610546168;;False;{};gj41hez;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj41hez/;1610609521;6;True;False;anime;t5_2qh22;;0;[]; -[];;;eddihern7;;;[];;;;text;t2_10a6b4fl;False;False;[];;Pain.;False;False;;;;1610546307;;False;{};gj41pxw;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj41pxw/;1610609650;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SonAnka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SonAnka;light;text;t2_4bv8n52s;False;False;[];;">To Love RU - -And MC dont have power, he is not cool and just ordinary guy with shy and cowardly character?";False;False;;;;1610546329;;False;{};gj41rap;True;t3_kweif2;False;False;t1_gj40xgg;/r/anime/comments/kweif2/i_need_anime_suggestions_harem_with_coolpowerfull/gj41rap/;1610609670;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZapsZzz;;;[];;;;text;t2_g2hnymx;False;False;[];;"Generally in describing characters and characterisation, the 4th dimension of a character could mean breaking the 4th wall and ""break character"" by referring to knowing about / acting in a way that shows the character knows this is a show and or interacts with the audience. - -Kyon from Haruhi, who narrates a lot; or actual narrators in shows like the narrator in Kaguya Sama, are examples.";False;False;;;;1610546375;;False;{};gj41u0z;False;t3_kwfj4x;False;True;t3_kwfj4x;/r/anime/comments/kwfj4x/what_are_some_four_demensional_charecters/gj41u0z/;1610609710;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610546400;moderator;False;{};gj41vme;False;t3_kwgxof;False;True;t3_kwgxof;/r/anime/comments/kwgxof/please_help_me_with_monogatari_series_watch_order/gj41vme/;1610609737;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi NJBuoy, it seems like you might be looking for a show's watch order! - -On our [watch order wiki](https://www.reddit.com/r/anime/wiki/watch_order) you can find suggested orders for a ton of shows (hopefully including the one you're looking for), as well as information that will help you decide on what to watch for the more complicated series <cough> Gundam <cough>. - -[](#heartbot) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610546400;moderator;False;{};gj41vn5;False;t3_kwgxof;False;True;t3_kwgxof;/r/anime/comments/kwgxof/please_help_me_with_monogatari_series_watch_order/gj41vn5/;1610609738;1;False;False;anime;t5_2qh22;;0;[]; -[];;;SBGSuperBoyGamer;;;[];;;;text;t2_56b5dj7l;False;False;[];;"I don't like where this is going -(JonTron Reference)";False;False;;;;1610546448;;False;{};gj41ykp;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj41ykp/;1610609781;10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610546755;;1610554690.0;{};gj42hh3;False;t3_kwgf1t;False;True;t3_kwgf1t;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj42hh3/;1610610068;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zeroryoko1974;;AP;[];;http://www.anime-planet.com/users/zeroryoko1974/anime/watching?i;dark;text;t2_j0nr2;False;False;[];;I think their parent company probably cut funding for new licenses when they expected to sell them;False;False;;;;1610546807;;False;{};gj42kns;False;t3_kwfbbg;False;True;t3_kwfbbg;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj42kns/;1610610117;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"https://edomonogatari.wordpress.com/2020/05/12/monogatari-anime-guide/ - -Monogatari just means story so there are either anime by the same author (Katanagatari) or other authors (Ore Monogatari for example) that are completely unrelated to the Monogatari Series";False;False;;;;1610546844;;False;{};gj42mue;False;t3_kwgxof;False;True;t3_kwgxof;/r/anime/comments/kwgxof/please_help_me_with_monogatari_series_watch_order/gj42mue/;1610610151;5;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRealEbad;;;[];;;;text;t2_4bezjw12;False;False;[];;Like 24 and If I close my eyes for about 5 minutes I understand 3-4 words (I've tested this before);False;False;;;;1610546906;;False;{};gj42qp8;False;t3_kwh2fb;False;False;t3_kwh2fb;/r/anime/comments/kwh2fb/after_how_many_animes_youve_watched_that_you/gj42qp8/;1610610210;4;True;False;anime;t5_2qh22;;0;[]; -[];;;-Nivek;;;[];;;;text;t2_4euwu1zg;False;False;[];;"*That last part happens* - -Me: whoa babbbbyy, that’s what I’ve been waiting for, that’s what it’s all about!";False;False;;;;1610546992;;False;{};gj42w1o;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj42w1o/;1610610291;28;True;False;anime;t5_2qh22;;0;[]; -[];;;Dazai53;;;[];;;;text;t2_6bd5oamh;False;False;[];;Damn you a fast learner nice;False;False;;;;1610547007;;False;{};gj42wzy;True;t3_kwh2fb;False;True;t1_gj42qp8;/r/anime/comments/kwh2fb/after_how_many_animes_youve_watched_that_you/gj42wzy/;1610610305;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;You can pick out words but you'll never be able to watch more than like 10 seconds.;False;False;;;;1610547015;;False;{};gj42xiz;False;t3_kwh2fb;False;False;t3_kwh2fb;/r/anime/comments/kwh2fb/after_how_many_animes_youve_watched_that_you/gj42xiz/;1610610313;14;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610547036;;False;{};gj42yuz;False;t3_kwesdt;False;True;t3_kwesdt;/r/anime/comments/kwesdt/anime_like_maoujou_de_oyasumi/gj42yuz/;1610610333;0;True;False;anime;t5_2qh22;;0;[]; -[];;;melcarba;;;[];;;;text;t2_ywnzr;False;False;[];;Okay.;False;False;;;;1610547046;;False;{};gj42zh9;False;t3_kwfbbg;False;True;t1_gj414xv;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj42zh9/;1610610343;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dazai53;;;[];;;;text;t2_6bd5oamh;False;False;[];;I can pick words and guess what they will do in the next 5 sec and if they do it then nice i guess hahaah;False;False;;;;1610547077;;False;{};gj431eg;True;t3_kwh2fb;False;True;t1_gj42xiz;/r/anime/comments/kwh2fb/after_how_many_animes_youve_watched_that_you/gj431eg/;1610610373;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blobster110;;;[];;;;text;t2_6qfiwmls;False;False;[];;Sadly isnt finished though.;False;False;;;;1610547155;;False;{};gj436ci;False;t3_kwf0hk;False;True;t1_gj3ts7q;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj436ci/;1610610449;81;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Kaguya-sama. Binging it caused me to hate it the first time round, so I'd like to pace it out a bit more the second time round.;False;False;;;;1610547209;;False;{};gj439tl;False;t3_kwgf1t;False;True;t3_kwgf1t;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj439tl/;1610610501;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610547274;;False;{};gj43e0b;False;t3_kwgf1t;False;True;t1_gj42hh3;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj43e0b/;1610610565;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Raptor12225;;;[];;;;text;t2_1174as;False;False;[];;dr stone is terrible;False;False;;;;1610547277;;False;{};gj43e60;False;t3_kwfpu9;False;True;t3_kwfpu9;/r/anime/comments/kwfpu9/anime_debate_comment_your_opinions_on_certain/gj43e60/;1610610567;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarRufus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ScarRufus;light;text;t2_2u0vy1pk;False;False;[];;"Idk... I think it depends on the person. I already watched like 500 things and I just know the most common ones or at last know what they are talking in case of a ""no sub"" part.";False;False;;;;1610547306;;False;{};gj43g15;False;t3_kwh2fb;False;True;t3_kwh2fb;/r/anime/comments/kwh2fb/after_how_many_animes_youve_watched_that_you/gj43g15/;1610610595;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Raptor12225;;;[];;;;text;t2_1174as;False;False;[];;On paper he is but you are forgetting about his mentality and his inability too know/place his save points;False;False;;;;1610547329;;False;{};gj43hid;False;t3_kwfpu9;False;True;t1_gj3wyeg;/r/anime/comments/kwfpu9/anime_debate_comment_your_opinions_on_certain/gj43hid/;1610610618;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sildas;;;[];;;;text;t2_bcn82;False;False;[];;"My Japanese isn't nearly good enough to confirm it, but I saw someone say that was incorrectly translated, and that she's actually saying she's masturbated as him as well. - -Less cute, more funny.";False;False;;;;1610547365;;False;{};gj43jum;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj43jum/;1610610652;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Slifer13xx;;MAL;[];;http://myanimelist.net/animelist/Slifer13xx;dark;text;t2_irntz;False;False;[];;Forever and always Pokémon.;False;False;;;;1610547403;;False;{};gj43mbu;False;t3_kweth7;False;True;t1_gj3r8zq;/r/anime/comments/kweth7/if_you_could_be_reincarnated_to_any_anime/gj43mbu/;1610610687;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610547433;moderator;False;{};gj43oaj;False;t3_kwh8tr;False;True;t3_kwh8tr;/r/anime/comments/kwh8tr/who_does_shinra_fall_in_love_with/gj43oaj/;1610610717;1;False;False;anime;t5_2qh22;;0;[]; -[];;;mikemd1;;;[];;;;text;t2_19thyv5q;False;False;[];;"True, I do remember it cut off at an odd point, but definitely more ""conclusive"" than how so many other animes just unceremoniously end in the middle of a story arc. - -Unfinished series and stories are 110% the worst part about anime. For some really really good series I try to finish their Mangas but even still sometimes they don't finish either (Nana/Berserk) or you wish you hadn't bothered because the ending was so f***ing terrible (DomeKano).";False;False;;;;1610547472;;False;{};gj43qrm;False;t3_kwf0hk;False;True;t1_gj436ci;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj43qrm/;1610610755;111;True;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;Celty;False;False;;;;1610547496;;False;{};gj43sb5;False;t3_kwh8tr;False;True;t3_kwh8tr;/r/anime/comments/kwh8tr/who_does_shinra_fall_in_love_with/gj43sb5/;1610610779;0;True;False;anime;t5_2qh22;;0;[]; -[];;;sarcyse;;;[];;;;text;t2_3b9p9loa;False;False;[];;I hope they get married and have lots of kids.;False;False;;;;1610547502;;False;{};gj43spu;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj43spu/;1610610784;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Demoniqal;;;[];;;;text;t2_9kqefbnl;False;False;[];;wish that's how it went irl T.T;False;False;;;;1610547524;;False;{};gj43u3m;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj43u3m/;1610610806;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_-monogatari_.2F_bakemonogatari) - -I prefer the LN release order.";False;False;;;;1610547536;;False;{};gj43uxi;False;t3_kwgxof;False;True;t3_kwgxof;/r/anime/comments/kwgxof/please_help_me_with_monogatari_series_watch_order/gj43uxi/;1610610818;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bape_Dope1235;;;[];;;;text;t2_5gt7fp5p;False;False;[];;What the fuck is this anime called I gotta watch it;False;True;;comment score below threshold;;1610547547;;False;{};gj43vnz;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj43vnz/;1610610831;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Around 20-25, it took me 10 anime to get habitual with the Japanese language. Now after watching around 75 anime I can able to understand what they are trying to say and sometimes even got the words right but still to completely understand without sub will take a lot of time.;False;False;;;;1610547556;;False;{};gj43w8q;False;t3_kwh2fb;False;True;t3_kwh2fb;/r/anime/comments/kwh2fb/after_how_many_animes_youve_watched_that_you/gj43w8q/;1610610838;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;I watched it in the great lockdown;False;False;;;;1610547561;;False;{};gj43wjs;True;t3_kwf0hk;False;True;t1_gj3u1xy;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj43wjs/;1610610843;82;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;It’s stickied to /r/araragi last I checked;False;False;;;;1610547603;;False;{};gj43z8e;False;t3_kwgxof;False;True;t3_kwgxof;/r/anime/comments/kwgxof/please_help_me_with_monogatari_series_watch_order/gj43z8e/;1610610883;2;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;Koi Kaze, so I could go through all of the emotions at once.;False;False;;;;1610547630;;False;{};gj44108;False;t3_kwgf1t;False;True;t3_kwgf1t;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj44108/;1610610910;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;Kokoro Connect;False;False;;;;1610547652;;False;{};gj442gg;True;t3_kwf0hk;False;True;t1_gj43vnz;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj442gg/;1610610931;9;True;False;anime;t5_2qh22;;0;[]; -[];;;its_real_I_swear;;;[];;;;text;t2_emsbs;False;False;[];;The version on CR isn't but there are 4 more episodes that bring it to a conclusion;False;False;;;;1610547661;;False;{};gj4432b;False;t3_kwf0hk;False;True;t1_gj436ci;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4432b/;1610610940;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Rreizero;;MAL;[];;https://myanimelist.net/profile/Rreizero;dark;text;t2_juse6kz;False;False;[];;Rave was good. I didn't like FT. FT's story was going nowhere.;False;False;;;;1610547725;;False;{};gj447a4;False;t3_kwdcu0;False;True;t1_gj3sjs3;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj447a4/;1610611001;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bigboi226922;;;[];;;;text;t2_4lp7pymc;False;False;[];;Attack on titan, I remember shaking from the end of season 3 and that feeling was fire;False;False;;;;1610547790;;False;{};gj44bkz;False;t3_kwgf1t;False;False;t3_kwgf1t;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj44bkz/;1610611065;5;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;I watched 150 animes in the great lockdown;False;False;;;;1610547838;;False;{};gj44en9;False;t3_kwf0hk;False;True;t1_gj43wjs;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj44en9/;1610611110;110;True;False;anime;t5_2qh22;;0;[]; -[];;;nagynorbie;;;[];;;;text;t2_a9jbv;False;False;[];;Why spoil it in the title though ? Lol.;False;False;;;;1610547839;;False;{};gj44ep8;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj44ep8/;1610611111;20;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610547839;;False;{};gj44epl;False;t3_kwh8tr;False;True;t3_kwh8tr;/r/anime/comments/kwh8tr/who_does_shinra_fall_in_love_with/gj44epl/;1610611111;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Raptor12225;;;[];;;;text;t2_1174as;False;False;[];;Lmfaooooooo classic Reddit just down voting opinions;False;False;;;;1610547846;;False;{};gj44f76;False;t3_kwgf1t;False;True;t1_gj43e0b;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj44f76/;1610611118;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sakhi_Osu;;;[];;;;text;t2_4dv3fd9v;False;False;[];;Horni;False;False;;;;1610547850;;False;{};gj44ffc;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj44ffc/;1610611121;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Meemeli;;;[];;;;text;t2_2o1rogl;False;False;[];;Welcome to the N.H.K.;False;False;;;;1610547851;;False;{};gj44fht;False;t3_kwg89f;False;True;t3_kwg89f;/r/anime/comments/kwg89f/anime_similar_to_sangatsu_no_lion/gj44fht/;1610611122;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bape_Dope1235;;;[];;;;text;t2_5gt7fp5p;False;False;[];;Aight bet;False;False;;;;1610547872;;False;{};gj44gwc;False;t3_kwf0hk;False;True;t1_gj442gg;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj44gwc/;1610611143;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bape_Dope1235;;;[];;;;text;t2_5gt7fp5p;False;False;[];;imma start watchin;False;False;;;;1610547892;;False;{};gj44i96;False;t3_kwf0hk;False;True;t1_gj44gwc;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj44i96/;1610611166;1;True;False;anime;t5_2qh22;;0;[]; -[];;;XDUNLIGHT;;;[];;;;text;t2_ozig4sx;False;False;[];;One of the best ships in anime;False;False;;;;1610547900;;False;{};gj44irl;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj44irl/;1610611173;5;True;False;anime;t5_2qh22;;0;[]; -[];;;notclassy_;;;[];;;;text;t2_50ef50wg;False;False;[];;"finally -someone who gets it";False;False;;;;1610547919;;False;{};gj44k07;False;t3_kwf0hk;False;True;t1_gj3zfm2;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj44k07/;1610611191;35;True;False;anime;t5_2qh22;;0;[]; -[];;;Bino64;;;[];;;;text;t2_2xastnu3;False;False;[];;She's best girl. You can't change my opinion;False;False;;;;1610547935;;False;{};gj44l0o;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj44l0o/;1610611206;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610547978;;False;{};gj44nud;False;t3_kwf0hk;False;True;t1_gj43jum;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj44nud/;1610611251;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TacoBellIsChipotle;;;[];;;;text;t2_7l9egrg6;False;False;[];;Shinra falls in love with money and ends up raping the planet to harvest mako for its reactors.;False;False;;;;1610547979;;False;{};gj44nx8;False;t3_kwh8tr;False;True;t3_kwh8tr;/r/anime/comments/kwh8tr/who_does_shinra_fall_in_love_with/gj44nx8/;1610611253;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;How am I supposed to know what you've watched?;False;False;;;;1610548009;;False;{};gj44puy;False;t3_kwfpu9;False;True;t3_kwfpu9;/r/anime/comments/kwfpu9/anime_debate_comment_your_opinions_on_certain/gj44puy/;1610611283;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blackmagemasta;;MAL;[];;https://myanimelist.net/profile/blackmagemasta;dark;text;t2_aceb1;False;False;[];;when you checked the watch order wiki, what did it say?;False;False;;;;1610548011;;False;{};gj44pzi;False;t3_kwgxof;False;True;t3_kwgxof;/r/anime/comments/kwgxof/please_help_me_with_monogatari_series_watch_order/gj44pzi/;1610611285;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;I don't think i can ever do that with Japanese, but i have your experience with Italic;False;False;;;;1610548019;;False;{};gj44qjj;False;t3_kwh2fb;False;True;t3_kwh2fb;/r/anime/comments/kwh2fb/after_how_many_animes_youve_watched_that_you/gj44qjj/;1610611293;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GORUDOEXUPERENCU;;;[];;;;text;t2_3ab6p78p;False;False;[];;Did she call him a wanker?;False;False;;;;1610548020;;False;{};gj44qkp;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj44qkp/;1610611294;0;True;False;anime;t5_2qh22;;0;[]; -[];;;KaoriNeesan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Leoliz;light;text;t2_97i8zug6;False;False;[];;"I have watched like 300 anime already and I understand a lot of words. When I don't look at the subs I can generally understand whats happening. - -There is no threshold for when you understand them. You learn word by word for every few anime you watch.";False;False;;;;1610548054;;False;{};gj44ssv;False;t3_kwh2fb;False;True;t3_kwh2fb;/r/anime/comments/kwh2fb/after_how_many_animes_youve_watched_that_you/gj44ssv/;1610611328;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Aryan1306;;;[];;;;text;t2_67pmult4;False;False;[];;Where do i find someone like this?;False;False;;;;1610548067;;False;{};gj44tmp;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj44tmp/;1610611341;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DandyMax;;;[];;;;text;t2_11w02hw6;False;False;[];;Who says romance is dead?;False;False;;;;1610548090;;False;{};gj44v5o;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj44v5o/;1610611366;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Nezzie_Boo2;;;[];;;;text;t2_6gmobg9q;False;False;[];;Style reminds me of K-on;False;False;;;;1610548202;;False;{};gj452u7;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj452u7/;1610611487;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;Tbh don't get why ppl doing this, since when Shield hero become so hated ? It was really popular a few years ago;False;False;;;;1610548225;;False;{};gj454e1;False;t3_kwgf1t;False;True;t1_gj43e0b;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj454e1/;1610611515;2;True;False;anime;t5_2qh22;;0;[]; -[];;;muhaiminhazmi;;;[];;;;text;t2_2khcbu8n;False;False;[];;There are 4 more episodes / 1 arc i think that gives a proper ending for the anime;False;False;;;;1610548227;;False;{};gj454i9;False;t3_kwf0hk;False;True;t1_gj43qrm;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj454i9/;1610611517;50;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;I watched plenty too but not that many, u r a legend;False;False;;;;1610548267;;False;{};gj45786;True;t3_kwf0hk;False;True;t1_gj44en9;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj45786/;1610611560;67;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610548334;;False;{};gj45bjc;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj45bjc/;1610611628;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Falsus;;;[];;;;text;t2_c6qmw;False;False;[];;"The start of both FMA and FMA:B is the same but it is extremely rushed in FMA:B since the creators assumed people would have watched the original show or the source material first so they wanted to speed up until they diverge. So FMA got the better beginning. - -Overall though I much prefer the story of the first FMA show rather than FMA:B. It is more consistent, it is darker and it is more concise.";False;False;;;;1610548369;;False;{};gj45dsc;False;t3_kwfdon;False;True;t3_kwfdon;/r/anime/comments/kwfdon/do_i_need_to_watch_fma_before_fmab/gj45dsc/;1610611664;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;Its just 48 sec;False;True;;comment score below threshold;;1610548423;;False;{};gj45hcg;True;t3_kwf0hk;False;True;t1_gj44ep8;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj45hcg/;1610611721;-20;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;Was there more to the manga? The OVAs felt like it finished the story to me;False;False;;;;1610548528;;1610548743.0;{};gj45oci;False;t3_kwf0hk;False;True;t1_gj436ci;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj45oci/;1610611831;15;True;False;anime;t5_2qh22;;0;[]; -[];;;eetsumkaus;;MAL;[];;http://myanimelist.net/animelist/kausDC;dark;text;t2_6ntj2;False;False;[];;Sawashiro whispering in your ear that she's masturbated to you is peak weeb fantasy;False;False;;;;1610548563;;False;{};gj45qni;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj45qni/;1610611868;34;True;False;anime;t5_2qh22;;0;[];True -[];;;WACS_On;;;[];;;;text;t2_notm65o;False;False;[];;Alternate universe Lucy be Thicc;False;False;;;;1610548578;;False;{};gj45rn2;False;t3_kwdcu0;False;False;t3_kwdcu0;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj45rn2/;1610611884;51;True;False;anime;t5_2qh22;;0;[]; -[];;;Ordinal43NotFound;;;[];;;;text;t2_1wd4dg6i;False;False;[];;Miyuki Sawashiro's voice is just ***\*chef's kiss\****;False;False;;;;1610548583;;False;{};gj45s02;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj45s02/;1610611889;5;True;False;anime;t5_2qh22;;0;[]; -[];;;pankaj1063;;;[];;;;text;t2_9i9ca5s6;False;False;[];;Pls, which Anime;False;True;;comment score below threshold;;1610548605;;False;{};gj45tej;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj45tej/;1610611911;-12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610548611;;False;{};gj45tsl;False;t3_kwdcu0;False;True;t1_gj3rvc8;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj45tsl/;1610611916;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ivan0226;;;[];;;;text;t2_48wyjcgc;False;False;[];;I really didnt like that 4 episodes;False;False;;;;1610548621;;False;{};gj45ufp;False;t3_kwf0hk;False;True;t1_gj454i9;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj45ufp/;1610611926;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Daviday231231;;;[];;;;text;t2_2xfa0suw;False;False;[];;Is it still worth watching with its current “ending”;False;False;;;;1610548633;;False;{};gj45v9r;False;t3_kwf0hk;False;True;t1_gj436ci;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj45v9r/;1610611937;6;True;False;anime;t5_2qh22;;0;[]; -[];;;WACS_On;;;[];;;;text;t2_notm65o;False;False;[];;The man knows his audience;False;False;;;;1610548647;;False;{};gj45w3y;False;t3_kwdcu0;False;False;t1_gj3vhck;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj45w3y/;1610611949;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;"Attack On Titan but not spoiled on anything - -Dogeza";False;False;;;;1610548661;;False;{};gj45x3f;False;t3_kwgf1t;False;True;t3_kwgf1t;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj45x3f/;1610611963;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ChuckCarmichael;;;[];;;;text;t2_auz0d;False;False;[];;Dude, it's in the title.;False;False;;;;1610548696;;False;{};gj45zht;False;t3_kwf0hk;False;True;t1_gj45tej;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj45zht/;1610612009;9;True;False;anime;t5_2qh22;;0;[]; -[];;;NikamiG;;;[];;;;text;t2_1byiyg60;False;False;[];;"I didnt really like ft and i dont blame people for having low expectations for edens zero. - -I was in the same boat but its pretty surprising to see how its actually decently written and pretty dark too.";False;False;;;;1610548730;;False;{};gj461ry;False;t3_kwdcu0;False;False;t3_kwdcu0;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj461ry/;1610612046;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hylian_Girl;;;[];;;;text;t2_5g31zugv;False;False;[];;Yuri on ice, I have never felt the level of happiness that I felt when I watched it for the first time;False;False;;;;1610548743;;False;{};gj462nz;False;t3_kwgf1t;False;True;t3_kwgf1t;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj462nz/;1610612059;2;True;False;anime;t5_2qh22;;0;[]; -[];;;strongman-;;;[];;;;text;t2_8ndr008t;False;False;[];;Just finished it a couple of hours ago;False;False;;;;1610548793;;False;{};gj4661l;False;t3_kwf0hk;False;True;t1_gj3tlt4;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4661l/;1610612116;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;"I think it depends on how much you're focused on learning Japanese. If you just care about the entertainment, it'll take a lot longer because you're focused on reading subs and experiencing the story rather than thinking about the language. - -That said, Japanese has a whole lot of stock phrases like ittekimasu, tadaima, shouganai, tsukaresama deshita, domo arigato mr roboto, etc., so you can probably pick up on the more common ones just by osmosis. Once people start talking about actual stuff though, it's hard to pick up on things like grammar without doing some sort of active study.";False;False;;;;1610548800;;False;{};gj466hy;False;t3_kwh2fb;False;False;t3_kwh2fb;/r/anime/comments/kwh2fb/after_how_many_animes_youve_watched_that_you/gj466hy/;1610612123;5;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;"Thanks man, I watched like crazy, I completed one anime everyday, the anime with the highest episodes that I completed in one day was ""When they cry season 2"", it has 24 episodes I think";False;False;;;;1610548816;;False;{};gj467j1;False;t3_kwf0hk;False;True;t1_gj45786;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj467j1/;1610612139;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Flash_Jim;;;[];;;;text;t2_11qg8a;False;False;[];;Uhh.. just weird.;False;False;;;;1610548922;;False;{};gj46ev5;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj46ev5/;1610612249;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JK-Network123;;;[];;;;text;t2_2yvv7707;False;False;[];;Except they’re not. If you actually read the manga the characters don’t act the same as ft characters at all. They didn’t even look the exact same. And no his best work is rave master;False;False;;;;1610548951;;False;{};gj46gt2;False;t3_kwdcu0;False;False;t1_gj3po7l;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj46gt2/;1610612278;5;True;False;anime;t5_2qh22;;0;[]; -[];;;CleetusTOES;;;[];;;;text;t2_4bo63r6o;False;False;[];;Inaban is the only reason why i watched it;False;False;;;;1610548956;;False;{};gj46h61;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj46h61/;1610612283;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Jejmaze;;;[];;;;text;t2_6bwf7;False;False;[];;that's more anime than i've seen in my life;False;False;;;;1610549012;;False;{};gj46kxr;False;t3_kwf0hk;False;True;t1_gj44en9;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj46kxr/;1610612340;8;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;"I know people say ""I can't believe i enjoyed this"" all the time... But for real, I can't believe it's this enjoyable.";False;False;;;;1610549046;;False;{};gj46nbi;False;t3_kwgxsv;False;False;t3_kwgxsv;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj46nbi/;1610612376;28;True;False;anime;t5_2qh22;;0;[]; -[];;;-milkymallow-;;;[];;;;text;t2_7mla035c;False;False;[];;The OVAs end at about ~halfway~ through the story, not including the three volumes of side stories;False;False;;;;1610549048;;False;{};gj46nhz;False;t3_kwf0hk;False;True;t1_gj45oci;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj46nhz/;1610612379;13;True;False;anime;t5_2qh22;;0;[]; -[];;;NuclearCandle;;;[];;;;text;t2_425ed9cu;False;False;[];;The most wholesome anime scene of all time.;False;False;;;;1610549050;;False;{};gj46nng;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj46nng/;1610612381;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jejmaze;;;[];;;;text;t2_6bwf7;False;False;[];;Miya;False;False;;;;1610549059;;False;{};gj46o7z;False;t3_kwf0hk;False;True;t1_gj44ffc;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj46o7z/;1610612389;4;True;False;anime;t5_2qh22;;0;[]; -[];;;yumh;;;[];;;;text;t2_xl3q9;False;False;[];;"the manga is like 30 chapters; I haven't watched the anime, but I doubt it has more content";False;False;;;;1610549067;;False;{};gj46otq;False;t3_kwf0hk;False;True;t1_gj45oci;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj46otq/;1610612397;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Ryanmadeleine;;;[];;;;text;t2_16up4a;False;False;[];;It is. These are my two favorite characters and them revealing that they masturbate is peak character development for me. It really opens up new standards and conversations for anime. I'm on Demon Slayer right now and I'm hoping for the characters to have an arc on masturbation.;False;False;;;;1610549095;;False;{};gj46qq2;False;t3_kwf0hk;False;True;t1_gj3ts7q;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj46qq2/;1610612426;19;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;Now it's 160 I think, I have completed a lot in 2021 too;False;False;;;;1610549101;;False;{};gj46r4p;False;t3_kwf0hk;False;True;t1_gj46kxr;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj46r4p/;1610612433;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ApricotLife3808;;;[];;;;text;t2_750042c8;False;False;[];;u/downloadvideo;False;False;;;;1610549108;;False;{};gj46rmc;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj46rmc/;1610612440;1;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;Mahou Sensou's last episode doesn't even feel like a cliffhanger, it's more like the creators forgot to make the other episodes;False;False;;;;1610549150;;1610549362.0;{};gj46uif;False;t3_kwf0hk;False;True;t1_gj43qrm;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj46uif/;1610612483;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610549158;;False;{};gj46v1x;False;t3_kwfpu9;False;True;t3_kwfpu9;/r/anime/comments/kwfpu9/anime_debate_comment_your_opinions_on_certain/gj46v1x/;1610612491;0;True;False;anime;t5_2qh22;;0;[]; -[];;;JARZMcPICKLEZ;;MAL;[];;https://myanimelist.net/profile/RinPickles;dark;text;t2_bcwn4;False;False;[];;"おかず/オカズ (okazu) which usually means ""side dish"" can be slang for ""fap material."" I think the translation's alright.";False;False;;;;1610549198;;False;{};gj46xrn;False;t3_kwf0hk;False;True;t1_gj43jum;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj46xrn/;1610612533;28;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexxxandreS;;;[];;;;text;t2_25oteqzx;False;False;[];;I watched one piece in 16 days;False;False;;;;1610549211;;False;{};gj46ylv;False;t3_kwf0hk;False;True;t1_gj44en9;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj46ylv/;1610612545;16;True;False;anime;t5_2qh22;;0;[]; -[];;;DarthSNAK3388;;;[];;;;text;t2_9m5xpylj;False;False;[];;I’d be in complete shock;False;False;;;;1610549214;;False;{};gj46yu8;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj46yu8/;1610612548;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hiyasc;;;[];;;;text;t2_61tx0;False;False;[];;"They both say Okazu which typically means a side dish or something you think of when masturbating. It sounds like the subs are correct in that they used the thought of each other to masturbate. - -Edit: Just because I saw it mentioned below here's why it's not mistranslated. The full sentence is あたしもお前をオカズにしたことがある . The guy in the clip is clearly marked as the object of the sentence with her being the actual subject, based on that you can see that she was the one who took the action (in this case したことがある) with him being the focus. Basically what she is saying is that she used him as a side dish. The reason I focused on オカズ is because she likely wouldn't have used him as masturbation material at a time when she was in his body.";False;False;;;;1610549221;;1610563255.0;{};gj46zcr;False;t3_kwf0hk;False;True;t1_gj43jum;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj46zcr/;1610612556;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Babayagagagag;;;[];;;;text;t2_9g25u423;False;False;[];;Jk bro y'all know he's weak af😂;False;False;;;;1610549225;;False;{};gj46zlb;False;t3_kwfpu9;False;True;t1_gj43hid;/r/anime/comments/kwfpu9/anime_debate_comment_your_opinions_on_certain/gj46zlb/;1610612559;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;After 2k I switched to raw completely;False;False;;;;1610549244;;False;{};gj470vw;False;t3_kwh2fb;False;True;t3_kwh2fb;/r/anime/comments/kwh2fb/after_how_many_animes_youve_watched_that_you/gj470vw/;1610612578;3;True;False;anime;t5_2qh22;;0;[]; -[];;;INSERT_LATVIAN_JOKE;;;[];;;;text;t2_wnpe5;False;False;[];;"Just because historically anime tends to attract 'socially awkward' teens, I will point out, so that there is no confusion on this subject: No matter how much you like a girl, don't tell her that you've masterbated to her, ever. - -If at some point down the line after you've had sex and she asks you specifically then you can tell her. Even if she's fishing for compliments telling her that you've masterbated to her is a high risk move with very little upside. - -It's not likely to work out well for you.";False;False;;;;1610549345;;False;{};gj4781x;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4781x/;1610612682;615;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;I'd recommend looking up the other series that the studio Dogo Kobo has done. Lately they've been doing a lot of slice-of-life comedy series: https://myanimelist.net/anime/producer/95/Doga_Kobo;False;False;;;;1610549375;;False;{};gj47a5z;False;t3_kwesdt;False;True;t3_kwesdt;/r/anime/comments/kwesdt/anime_like_maoujou_de_oyasumi/gj47a5z/;1610612714;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Spade-Demon;;;[];;;;text;t2_5tkn0i2y;False;False;[];;I don’t wanna say anything negative and will give it a fair chance but I just hope there’s none of that, over the top fan service in this.;False;False;;;;1610549415;;False;{};gj47cyb;False;t3_kwdcu0;False;True;t3_kwdcu0;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj47cyb/;1610612757;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;eh_whatever17;;;[];;;;text;t2_63o5bktw;False;False;[];;After watching this, I'm sad again that this will never have a sequel. Such a gem. Thanks for the nostalgia!;False;False;;;;1610549427;;False;{};gj47dsy;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj47dsy/;1610612769;5;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;Ur the real legend, I don't even have the courage to start One Piece;False;False;;;;1610549433;;False;{};gj47e6j;False;t3_kwf0hk;False;True;t1_gj46ylv;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj47e6j/;1610612775;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Wiki09Wallace;;;[];;;;text;t2_ynsdi;False;False;[];;This was such a fantastic anime, such a shame that it was ruined by the staff;False;False;;;;1610549458;;False;{};gj47fvm;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj47fvm/;1610612800;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Calllum-_-;;;[];;;;text;t2_1o1l0d2n;False;False;[];;I took 25 days. I'll beat you next time. Also, I watched it like 8 years back and it had around 300 episodes lesser, so you won by a lot, wow! Great work!;False;False;;;;1610549459;;False;{};gj47fye;False;t3_kwf0hk;False;True;t1_gj46ylv;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj47fye/;1610612800;13;True;False;anime;t5_2qh22;;0;[]; -[];;;isan10adi;;;[];;;;text;t2_hufuudo;False;False;[];;Your lie in april;False;False;;;;1610549487;;False;{};gj47huh;False;t3_kwg89f;False;True;t3_kwg89f;/r/anime/comments/kwg89f/anime_similar_to_sangatsu_no_lion/gj47huh/;1610612828;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BudKnight7;;;[];;;;text;t2_3jlv8lao;False;False;[];;How the fuck;False;False;;;;1610549489;;False;{};gj47hz2;False;t3_kwf0hk;False;True;t1_gj46ylv;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj47hz2/;1610612830;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hylian_Girl;;;[];;;;text;t2_5g31zugv;False;False;[];;"Sakura isn’t useless. Sure, she’s annoying and not a really good person at first, but she grows a lot as a character. Her personality doesn’t make her useless. Without her, the war would have been lost. Also, she even becomes better than Tsunade. -I feel like people underestimate the role that medics play in a fight. This also happens in video games, people don’t acknowledge healers. -Also, people praise Rock lee a lot for his taijutsu, but they don’t even recognize Sakura, who is one (if not the most) of the strongest (physically) characters in the anime.";False;False;;;;1610549498;;False;{};gj47im7;False;t3_kwfpu9;False;True;t3_kwfpu9;/r/anime/comments/kwfpu9/anime_debate_comment_your_opinions_on_certain/gj47im7/;1610612840;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hylian_Girl;;;[];;;;text;t2_5g31zugv;False;False;[];;Agree, I couldn’t get past episode 6;False;False;;;;1610549533;;False;{};gj47kzt;False;t3_kwfpu9;False;True;t1_gj43e60;/r/anime/comments/kwfpu9/anime_debate_comment_your_opinions_on_certain/gj47kzt/;1610612874;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexxxandreS;;;[];;;;text;t2_25oteqzx;False;False;[];;"Yeah it was the first lockdown and I had watched lots of new animes and a few I've already seen before. - -Always wanted to see what's all the fuss about OP, had the time so I just went straight watching all day hahahaha";False;False;;;;1610549567;;False;{};gj47nho;False;t3_kwf0hk;False;True;t1_gj47fye;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj47nho/;1610612912;10;True;False;anime;t5_2qh22;;0;[]; -[];;;dapoorv;;;[];;;;text;t2_5agi1vfm;False;False;[];;Nah that's cap.;False;False;;;;1610549615;;False;{};gj47quc;False;t3_kwf0hk;False;True;t1_gj46ylv;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj47quc/;1610612963;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Calllum-_-;;;[];;;;text;t2_1o1l0d2n;False;False;[];;That's epic. I'd suggest catching up to the manga, because the 1000th chapter came out last week and its really, really awesome!;False;False;;;;1610549654;;False;{};gj47tmm;False;t3_kwf0hk;False;True;t1_gj47nho;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj47tmm/;1610613005;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Rinx_Tuturuu;;;[];;;;text;t2_10opmcn;False;False;[];;She kinda looks like Kirito in his GGO form 😳;False;False;;;;1610549760;;False;{};gj48187;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj48187/;1610613124;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lost-in-between;;;[];;;;text;t2_5celn8ls;False;False;[];;Definitely, the character development and the interaction/drama of the group is really what drives the show;False;False;;;;1610549761;;False;{};gj481c2;False;t3_kwf0hk;False;True;t1_gj45v9r;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj481c2/;1610613124;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Bikerider42;;;[];;;;text;t2_105yc5;False;False;[];;"A Place Further than the Universe. I want to say that its a perfect show. - -Or at least the closest to perfect as you could get. - -Steins;Gate, Death Parade, and the Ghost Stories dub are also good options too.";False;False;;;;1610549763;;False;{};gj481gb;False;t3_kwgf1t;False;True;t3_kwgf1t;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj481gb/;1610613126;1;True;False;anime;t5_2qh22;;0;[]; -[];;;royaldocks;;;[];;;;text;t2_gb8kz;False;False;[];;"Rave Master was very good especially for its time. - -FT started out a good classic shonen but went off the rails.";False;False;;;;1610549765;;False;{};gj481jt;False;t3_kwdcu0;False;False;t1_gj447a4;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj481jt/;1610613129;8;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexxxandreS;;;[];;;;text;t2_25oteqzx;False;False;[];;"I stopped watching now to get back when there's at least 50 new episodes, tired of waiting a week for just one ep. - -I usually only read a manga when I'm not watching the anime";False;False;;;;1610549777;;False;{};gj482el;False;t3_kwf0hk;False;True;t1_gj47tmm;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj482el/;1610613140;3;True;False;anime;t5_2qh22;;0;[]; -[];;;randyripoff;;;[];;;;text;t2_pg4m04;False;False;[];;Mairimashita Iruma-kun has a similar vibe.;False;False;;;;1610549784;;False;{};gj482vu;False;t3_kwesdt;False;True;t3_kwesdt;/r/anime/comments/kwesdt/anime_like_maoujou_de_oyasumi/gj482vu/;1610613147;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fantasticfabian;;;[];;;;text;t2_lpayd;False;False;[];;yea op is just complaining he cant watch every single show on crunchyroll, as if theres any legal service out there that would do this.;False;False;;;;1610549894;;False;{};gj48aux;False;t3_kwfbbg;False;False;t1_gj3tk9p;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj48aux/;1610613268;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Raptor12225;;;[];;;;text;t2_1174as;False;False;[];;I got too episode 18 and it only gets worse it felt like the plot didn’t move at all. I’m kinda sad I didn’t drop It earlier :/;False;False;;;;1610549905;;False;{};gj48bm4;False;t3_kwfpu9;False;True;t1_gj47kzt;/r/anime/comments/kwfpu9/anime_debate_comment_your_opinions_on_certain/gj48bm4/;1610613280;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AREXSCHMUL;;MAL;[];;arexschmul;dark;text;t2_bfn55;False;False;[];;I guess there are a lot of newer fans here since there was a huge controversy with this show back in 2012. Basically the production staff and some cast members played a “prank” (more like extreme public humiliation) where they made a fake audition for a supporting role. Then they invited the VA, Mitsuhiro Ichiki, to an advanced screening where they announced he didn’t have a role but was actually chosen to be the Head of Public Relations. I really enjoyed this show when I watched it but the fact that it will never get a season 2 is completely understandable.;False;False;;;;1610549980;;False;{};gj48h16;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj48h16/;1610613360;44;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacksoncic;;;[];;;;text;t2_386mmpr4;False;False;[];;Best girl;False;False;;;;1610550139;;False;{};gj48smp;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj48smp/;1610613535;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jendrej;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Jendrej;light;text;t2_r3hh7;False;False;[];;No;False;False;;;;1610550142;;False;{};gj48stz;False;t3_kwf0hk;False;True;t1_gj3ts7q;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj48stz/;1610613538;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Quebec120;;;[];;;;text;t2_2iddjr1c;False;False;[];;I open reddit during the ad break while watching this show only to find a clip from the show appear in my feed, lol;False;False;;;;1610550279;;False;{};gj492td;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj492td/;1610613690;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"It doesn't really matter how many anime you've watched, because if you focus on the subs, you won't focus on the words. Unless you focus on the words they're saying, you're not going to learn anything. - -But when you listen to the same trope-y sentence, i.e. ""aishiteru"", ""baka baka"", ""sou desu ka"", etc. You're bound to remember them. - -Because Japanese is a SOV (Subject-Object-Verb) language, subs can't translate the language. Sometimes there's this problem where the subs and the audio don't match: - -[Re:Zero spoilers for s2p1](/s ""The audio says 'Rem' while the subs say 'who is'"") where you feel like you can predict a second or two into the future. - -Honestly if you want to learn Japanese from anime (and just from anime), try considering re-watching an anime you really. This way, since you already know what's going on, you can probably listen to the scene and roughly learn what they're saying.";False;False;;;;1610550310;;False;{};gj4951f;False;t3_kwh2fb;False;True;t3_kwh2fb;/r/anime/comments/kwh2fb/after_how_many_animes_youve_watched_that_you/gj4951f/;1610613723;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SavageSniperrr;;;[];;;;text;t2_1ec5npws;False;False;[];;I just wanna fill the role of obligatory person who says you need to watch this show because you definitely need to watch this show.;False;False;;;;1610550337;;False;{};gj49711;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj49711/;1610613753;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"[https://medium.com/mos-home-for-treatises-and-hot-takes/you-ever-just-incel-so-hard-you-justify-slavery-on-the-rising-of-the-shield-hero-1-3-f2707605ad47](https://medium.com/mos-home-for-treatises-and-hot-takes/you-ever-just-incel-so-hard-you-justify-slavery-on-the-rising-of-the-shield-hero-1-3-f2707605ad47) - -It's only recently do people realize that Shield Hero was a problematic show.";False;False;;;;1610550395;;False;{};gj49b8k;False;t3_kwgf1t;False;True;t1_gj454e1;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj49b8k/;1610613818;1;True;False;anime;t5_2qh22;;0;[]; -[];;;adamisreallybored;;;[];;;;text;t2_2kcaadpz;False;False;[];;During lockdown I binge watched all 50 episodes of the Magi anime in a day and ordered manga volumes 21-37. It took like 23 hours. I also read the manga volumes that the anime adapted over the next few days illegally. Now its in my top 15 favorite anime of all time.;False;False;;;;1610550477;;False;{};gj49hd4;False;t3_kwf0hk;False;True;t1_gj467j1;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj49hd4/;1610613910;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;Oh god , not this again, someone kill me please;False;False;;;;1610550491;;False;{};gj49ich;False;t3_kwgf1t;False;True;t1_gj49b8k;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj49ich/;1610613925;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bluepsycho65;;;[];;;;text;t2_3exex6qy;False;False;[];;I have never seen this anime before is it any good?;False;False;;;;1610550498;;False;{};gj49iw6;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj49iw6/;1610613933;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;Celty. It’s not really hidden at all. I think they even get married at some point.;False;False;;;;1610550526;;False;{};gj49ky4;False;t3_kwh8tr;False;True;t3_kwh8tr;/r/anime/comments/kwh8tr/who_does_shinra_fall_in_love_with/gj49ky4/;1610613965;0;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;That's epic;False;False;;;;1610550540;;False;{};gj49lzw;False;t3_kwf0hk;False;True;t1_gj49hd4;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj49lzw/;1610613982;6;True;False;anime;t5_2qh22;;0;[]; -[];;;TimetoDDDuel;;;[];;;;text;t2_2ljjuma0;False;False;[];;Please elaborate?;False;False;;;;1610550559;;False;{};gj49net;False;t3_kwfj4x;False;True;t3_kwfj4x;/r/anime/comments/kwfj4x/what_are_some_four_demensional_charecters/gj49net/;1610614004;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kambi28;;;[];;;;text;t2_15nteh;False;False;[];;fairy tail has it's own spin off called 100 years quest;False;False;;;;1610550603;;False;{};gj49qqk;False;t3_kwdcu0;False;False;t1_gj3sei8;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj49qqk/;1610614053;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;The visuals and audio are amazing, the world-building is also pretty nice. But the characters...;False;False;;;;1610550617;;False;{};gj49rq3;False;t3_kwgf1t;False;True;t1_gj49ich;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj49rq3/;1610614068;1;True;False;anime;t5_2qh22;;0;[]; -[];;;adamisreallybored;;;[];;;;text;t2_2kcaadpz;False;False;[];;Did you skip all the openings, recaps, and filler?;False;False;;;;1610550627;;False;{};gj49sfu;False;t3_kwf0hk;False;True;t1_gj46ylv;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj49sfu/;1610614079;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Watson349B;;;[];;;;text;t2_1ep9xh2d;False;False;[];;Did you really?! Swear hahah? I watched 128. So this is cool to hear of true.;False;False;;;;1610550628;;False;{};gj49sjo;False;t3_kwf0hk;False;True;t1_gj44en9;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj49sjo/;1610614080;1;True;False;anime;t5_2qh22;;0;[]; -[];;;STanioFTW;;;[];;;;text;t2_116ui8;False;False;[];;,,,,,,,,,;False;False;;;;1610550671;;False;{};gj49vqg;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj49vqg/;1610614128;1;True;False;anime;t5_2qh22;;0;[]; -[];;;busola_aj;;;[];;;;text;t2_7ch8mwcs;False;False;[];;Name of the anime? ●_●;False;False;;;;1610550721;;False;{};gj49zb3;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj49zb3/;1610614180;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Penguingate;;;[];;;;text;t2_xou8g;False;False;[];;I think at this point everyone should now that what works in anime rarely translates well into real life.;False;False;;;;1610550735;;False;{};gj4a0ch;False;t3_kwf0hk;False;True;t1_gj4781x;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4a0ch/;1610614196;288;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610550782;;False;{};gj4a3yp;False;t3_kwf0hk;False;True;t1_gj3zfm2;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4a3yp/;1610614249;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shadow_boi198387;;;[];;;;text;t2_5gfl5dly;False;False;[];;Where can I find this anime? Seems kinda interesting-;False;False;;;;1610550788;;False;{};gj4a4gf;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4a4gf/;1610614256;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;That slavery thing was the stupidest thing i've ever heard, it's kinda like that controversy over uzaki chan, also i disagree, What made Shield hero popular , is that the MC wasn't a generic MC;False;False;;;;1610550794;;False;{};gj4a4uj;False;t3_kwgf1t;False;True;t1_gj49rq3;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj4a4uj/;1610614261;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Etheo;;;[];;;;text;t2_3ctfo;False;False;[];;I'm not one to judge but god damn how does one spend 23 hours in a day to binge a series? I would have passed out in exhaustion...;False;False;;;;1610550845;;1610551777.0;{};gj4a8p1;False;t3_kwf0hk;False;True;t1_gj49hd4;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4a8p1/;1610614318;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;They had me with the thumbnail.;False;False;;;;1610550874;;False;{};gj4aauh;False;t3_kwdcu0;False;False;t3_kwdcu0;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj4aauh/;1610614349;84;True;False;anime;t5_2qh22;;0;[]; -[];;;mario73760002;;;[];;;;text;t2_2ljym9zk;False;False;[];;"*gasp* wow! You know so much about society that we dumb idiots are too dumb to understand! I was about to parade the street telling every girl I see that I masturbate to them! Wow! Thanks for stopping me! Who knows what my reputation would’ve been like. Everyone! Applaud this genius of a man! - -Edit: I masturbate to every single one of you. - -Mwah - -Edit 2: open all of your mouths";False;True;;comment score below threshold;;1610550911;;1610552088.0;{};gj4adoa;False;t3_kwf0hk;False;True;t1_gj4781x;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4adoa/;1610614392;-43;True;False;anime;t5_2qh22;;0;[]; -[];;;SellaTheChair_;;;[];;;;text;t2_3nv4tqg;False;False;[];;This interaction was the reason I decided to watch this show, admittedly. Ended up being a cool concept and I liked it a lot.;False;False;;;;1610550914;;False;{};gj4aduq;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4aduq/;1610614394;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Freak5_5;;;[];;;;text;t2_9khgmg0;False;False;[];; Comrade, if Holo fans haven't lost hope yet, we shouldn't either. Let's try our best in this year's contest.;False;False;;;;1610550930;;False;{};gj4af14;False;t3_kwf0hk;False;True;t1_gj44k07;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4af14/;1610614411;17;True;False;anime;t5_2qh22;;0;[]; -[];;;adamisreallybored;;;[];;;;text;t2_2kcaadpz;False;False;[];;I had just slept for like 12 hours. Also caffeine;False;False;;;;1610550931;;False;{};gj4af4d;False;t3_kwf0hk;False;True;t1_gj4a8p1;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4af4d/;1610614413;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Etheo;;;[];;;;text;t2_3ctfo;False;False;[];;That's almost like a series a day.;False;False;;;;1610550940;;False;{};gj4aft8;False;t3_kwf0hk;False;True;t1_gj46r4p;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4aft8/;1610614423;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ruisu1;;;[];;;;text;t2_2q0oebfn;False;False;[];;Did you like the ending of the manga? I thought it was kinda stupid tbh;False;False;;;;1610550941;;False;{};gj4afv1;False;t3_kwf0hk;False;True;t1_gj49hd4;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4afv1/;1610614423;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheKeH20;;;[];;;;text;t2_2zsy54t7;False;False;[];;That smile was dope;False;False;;;;1610550987;;False;{};gj4aj9o;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4aj9o/;1610614472;1;True;False;anime;t5_2qh22;;0;[];True -[];;;vozjaevdanil;;;[];;;;text;t2_yf9vcti;False;False;[];;you’re cringe;False;False;;;;1610551006;;False;{};gj4akmz;False;t3_kwf0hk;False;True;t1_gj4adoa;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4akmz/;1610614493;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Milkshakeee1;;;[];;;;text;t2_4xqdh3h3;False;False;[];;kermit caught me off guard;False;False;;;;1610551042;;False;{};gj4ancu;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4ancu/;1610614533;1;True;False;anime;t5_2qh22;;0;[]; -[];;;baquea;;;[];;;;text;t2_j3k0u;False;True;[];;Well I'm at 300 or so and can understand most anime without needing subtitles, but that is because I have studied Japanese alongside it. Watching anime certainly *helped* with learning the language but I can't see myself having ever learnt more than a few basic words and phrases if I didn't use other methods as well.;False;False;;;;1610551079;;False;{};gj4aq2f;False;t3_kwh2fb;False;False;t3_kwh2fb;/r/anime/comments/kwh2fb/after_how_many_animes_youve_watched_that_you/gj4aq2f/;1610614574;6;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexxxandreS;;;[];;;;text;t2_25oteqzx;False;False;[];;Yeah, I usually don't watch those... I did watch some of the fillers tho, like that one where they fall in the something 13 (can't remember)... But I never watch openings/endings or recaps;False;False;;;;1610551081;;False;{};gj4aq8u;False;t3_kwf0hk;False;True;t1_gj49sfu;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4aq8u/;1610614577;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mario73760002;;;[];;;;text;t2_2ljym9zk;False;False;[];;I masturbate to you;False;False;;;;1610551085;;False;{};gj4aqiy;False;t3_kwf0hk;False;True;t1_gj4akmz;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4aqiy/;1610614581;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610551086;;False;{};gj4aqml;False;t3_kwf0hk;False;True;t1_gj47dsy;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4aqml/;1610614582;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610551150;;False;{};gj4av6v;False;t3_kwdcu0;False;False;t3_kwdcu0;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj4av6v/;1610614649;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gundam2024;;;[];;;;text;t2_7v8z1jsb;False;False;[];;"#hopethisendswell - -I wanna see a really mushy ending with them getting married or something";False;False;;;;1610551151;;False;{};gj4av9n;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4av9n/;1610614650;1;True;False;anime;t5_2qh22;;0;[]; -[];;;loscapos5;;;[];;;;text;t2_jbwdm;False;False;[];;As someone who had it worked well, I approve this message;False;False;;;;1610551171;;False;{};gj4awso;False;t3_kwf0hk;False;True;t1_gj4781x;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4awso/;1610614673;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Berserkerion;;;[];;;;text;t2_9svr70ky;False;False;[];;Have fun, bro.;False;False;;;;1610551260;;False;{};gj4b37u;False;t3_kwf0hk;False;True;t1_gj44i96;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4b37u/;1610614766;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IPlay4E;;;[];;;;text;t2_jqnr7;False;False;[];;"The irony here is your comment is the type of comment made by someone who felt personally attacked by the other guys advice. - -Everyone else just read and scrolled by but you just had to reply. - -🤔";False;False;;;;1610551296;;False;{};gj4b5tt;False;t3_kwf0hk;False;True;t1_gj4adoa;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4b5tt/;1610614806;41;True;False;anime;t5_2qh22;;0;[]; -[];;;thatoneidiotwhodied;;;[];;;;text;t2_29dun8xi;False;False;[];;⠀⠀‎‎‎‎‎ ‎‎‎‎‎ ‎‎‎‎‎ ‎‎‎‎‎ ‎‎‎‎‎ ‎‎‎‎‎‎‎ ‎‎‎‎‎ ‎‎‎‎‎ ‎‎‎‎‎ ‎‎‎‎‎⠀⣠⣤⣤⣤⣤⣤⣄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⢰⡿⠋⠁⠀⠀⠈⠉⠙⠻⣷⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⢀⣿⠇⠀⢀⣴⣶⡾⠿⠿⠿⢿⣿⣦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⣀⣀⣸⡿⠀⠀⢸⣿⣇⠀⠀⠀⠀⠀⠀⠙⣷⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⣾⡟⠛⣿⡇⠀⠀⢸⣿⣿⣷⣤⣤⣤⣤⣶⣶⣿⠇⠀⠀⠀⠀⠀⠀⠀⣀⠀⠀ ⢀⣿⠀⢀⣿⡇⠀⠀⠀⠻⢿⣿⣿⣿⣿⣿⠿⣿⡏⠀⠀⠀⠀⢴⣶⣶⣿⣿⣿⣆ ⢸⣿⠀⢸⣿⡇⠀⠀⠀⠀⠀⠈⠉⠁⠀⠀⠀⣿⡇⣀⣠⣴⣾⣮⣝⠿⠿⠿⣻⡟ ⢸⣿⠀⠘⣿⡇⠀⠀⠀⠀⠀⠀⠀⣠⣶⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠁⠉⠀ ⠸⣿⠀⠀⣿⡇⠀⠀⠀⠀⠀⣠⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠟⠉⠀⠀⠀⠀ ⠀⠻⣷⣶⣿⣇⠀⠀⠀⢠⣼⣿⣿⣿⣿⣿⣿⣿⣛⣛⣻⠉⠁⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⢸⣿⠀⠀⠀⢸⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀⠀⠀⠀⠀ ⠀⠀ ⠀⠀⠀⠀⢸⣿⣀⣀⣀⣼⡿⢿⣿⣿⣿⣿⣿⡿⣿⣿⡿⠀;False;False;;;;1610551311;;False;{};gj4b6xq;False;t3_kwf0hk;False;True;t1_gj3svji;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4b6xq/;1610614822;4;True;False;anime;t5_2qh22;;0;[]; -[];;;mario73760002;;;[];;;;text;t2_2ljym9zk;False;False;[];;I also masturbate to you;False;True;;comment score below threshold;;1610551327;;False;{};gj4b80x;False;t3_kwf0hk;False;True;t1_gj4b5tt;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4b80x/;1610614838;-18;True;False;anime;t5_2qh22;;0;[]; -[];;;EquivalentGur3072;;;[];;;;text;t2_84bevo8q;False;False;[];;"CAA isn't intended to be great on the surface level. Instead, it focuses on the subtler aspects of storytelling, resulting in dozens of fully developed themes, amazing character development, and a climax (multiple climaxes) packed with symbolic and narrative value. - -The dialogue is extremely important. Togashi (and the producers of the anime) are good enough writers to where every sentence, even word, is intended and isn't a mistake. None of the words are there by accident, and they wouldn't put anything there that doesn't need to be there to contribute narrative or thematic value.";False;False;;;;1610551339;;False;{};gj4b8xe;False;t3_kwdber;False;True;t3_kwdber;/r/anime/comments/kwdber/hunter_x_hunter_good_or_bad/gj4b8xe/;1610614853;0;True;False;anime;t5_2qh22;;0;[]; -[];;;hello47758;;;[];;;;text;t2_9qel0tvo;False;False;[];;U can watch the anime on crunchy roll, but the movie isn’t on there. Pm me for where u can watch it. It’s an anime that deals with the case of changing the past with by not everyone can see your future self. There a more concepts behind it though;False;False;;;;1610551363;;False;{};gj4baqd;False;t3_kwbvar;False;True;t1_gj3d5pd;/r/anime/comments/kwbvar/what_is_your_favorite_anime_give_the_genre/gj4baqd/;1610614882;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pixelchu25;;;[];;;;text;t2_s0tduwe;False;False;[];;"I finished watching HxH during the great lockdown (probably resumed from episode 4-ish I think since I dropped it during the summer before that). - -I think I watched this anime like during 2019 or something. I dropped it too but rewatched the whole thing since I realized I was missing out on something big.";False;False;;;;1610551364;;False;{};gj4bat0;False;t3_kwf0hk;False;True;t1_gj44en9;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4bat0/;1610614883;1;True;False;anime;t5_2qh22;;0;[];True -[];;;ZZweebmaster69ZZ;;;[];;;;text;t2_8c1cavap;False;False;[];;This isn’t like Fairy tail just to remind y’all it has better writing in fact and power of friendship really isn’t a thing and even if it was it shouldn’t change the fact that it had amazing writing;False;False;;;;1610551370;;False;{};gj4bb9i;False;t3_kwdcu0;False;False;t3_kwdcu0;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj4bb9i/;1610614890;17;True;False;anime;t5_2qh22;;0;[]; -[];;;merabiko1;;;[];;;;text;t2_542oop30;False;False;[];;u/savevideo;False;False;;;;1610551392;;False;{};gj4bcyb;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4bcyb/;1610614917;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DecentlySizedPotato;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/ocha94;light;text;t2_5f0gxk9t;False;False;[];;Well, that's 6 out of 21 I'm watching this season. When it used to have at least 90% of them. But whatever, I just pirate anime now and spend my money on official merch instead.;False;True;;comment score below threshold;;1610551421;;False;{};gj4bey2;False;t3_kwfbbg;False;True;t1_gj3tk9p;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj4bey2/;1610614946;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;dribblesnshits;;;[];;;;text;t2_1o8zefuy;False;True;[];;I thought i was ballin with just under 50, damn;False;False;;;;1610551431;;False;{};gj4bfop;False;t3_kwf0hk;False;True;t1_gj44en9;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4bfop/;1610614957;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Themoneydrawer;;;[];;;;text;t2_146nax;False;False;[];;I, too, whack my willly to your visage;False;False;;;;1610551519;;False;{};gj4bm7v;False;t3_kwf0hk;False;True;t1_gj4b80x;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4bm7v/;1610615055;18;True;False;anime;t5_2qh22;;0;[]; -[];;;sharafi04;;;[];;;;text;t2_4949iljy;False;False;[];;I don't remember anything about it, only that it was so depressing (in a bad way) at one point that I dropped it.;False;False;;;;1610551525;;False;{};gj4bmma;False;t3_kwf0hk;False;True;t1_gj3ts7q;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4bmma/;1610615060;0;True;False;anime;t5_2qh22;;0;[]; -[];;;mario73760002;;;[];;;;text;t2_2ljym9zk;False;False;[];;Anything for a bro;False;True;;comment score below threshold;;1610551555;;False;{};gj4bou3;False;t3_kwf0hk;False;True;t1_gj4bm7v;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4bou3/;1610615094;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;Attack on Titan, Death Note and Fullmetal Alchemist: Brotherhood. The way the mystery of the world in AoT is unraveled is the best I have seen, alongside Fullmetal Alchemist: Brotherhood. And death note because the first time L confronts Kira is just incredible. And the tension just keeps on increasing.;False;False;;;;1610551601;;False;{};gj4bs6s;False;t3_kwgf1t;False;False;t3_kwgf1t;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj4bs6s/;1610615144;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;This show was way better then it had any right to be;False;False;;;;1610551602;;False;{};gj4bs9z;False;t3_kwgxsv;False;False;t1_gj46nbi;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj4bs9z/;1610615146;30;True;False;anime;t5_2qh22;;0;[]; -[];;;zkileer;;;[];;;;text;t2_sux9a;False;False;[];;Yes!;False;False;;;;1610551658;;False;{};gj4bwfs;False;t3_kwf0hk;False;True;t1_gj3zfm2;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4bwfs/;1610615206;4;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;I really did, I started watching anime in 2020 and when I made a list of the animes I watched, it showed 150;False;False;;;;1610551714;;False;{};gj4c0nc;False;t3_kwf0hk;False;True;t1_gj49sjo;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4c0nc/;1610615271;2;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;Clannad was incredible, but also had the laziest art style I have ever seen. I guess this sounds petty and shit, but all girls look so similar smh.;False;False;;;;1610551760;;False;{};gj4c447;False;t3_kwfpu9;False;True;t3_kwfpu9;/r/anime/comments/kwfpu9/anime_debate_comment_your_opinions_on_certain/gj4c447/;1610615323;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Except it's different? - -Uzaki's controversy was regarding her unrealistic body depictions (which most anime have unrealistic body depictions anyways) and was just mostly blown out of proportion (By clickbaiting youtubers). - -Shield Hero has so much more. By having an antagonist falsely accuse the main character of rape, it de-legitimizes actual rape accusations just like how using the t-word on anime characters causes people to use the trans-defense panic. - -Also are you telling me slavery in the world was not wrong. Most people got the message about slavery was: ""Slavery is bad, but if a good person is a slave owner, it's fine"". You could even argue that Raphtalia and Naofumi's relationship draws some parallels to Sally Hemmings and Thomas Jefferson.";False;False;;;;1610551770;;False;{};gj4c4uz;False;t3_kwgf1t;False;True;t1_gj4a4uj;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj4c4uz/;1610615335;1;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;That's good too;False;False;;;;1610551802;;False;{};gj4c7ag;False;t3_kwf0hk;False;True;t1_gj4bfop;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4c7ag/;1610615371;1;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;I haven't watched HxH, I am going too;False;False;;;;1610551864;;False;{};gj4cc0e;False;t3_kwf0hk;False;True;t1_gj4bat0;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4cc0e/;1610615441;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrDick47;;MAL;[];;http://myanimelist.net/animelist/MrDick47;dark;text;t2_6dm0u;False;False;[];;You'd think this is common sense but as soon as they assemble for a convention all rational thinking goes out the window.;False;False;;;;1610551882;;False;{};gj4cdfj;False;t3_kwf0hk;False;True;t1_gj4a0ch;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4cdfj/;1610615462;175;True;False;anime;t5_2qh22;;0;[]; -[];;;SlumpyNuudles;;;[];;;;text;t2_23brqv3t;False;False;[];;And so, we enter bed game.;False;False;;;;1610551901;;False;{};gj4cerk;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4cerk/;1610615481;1;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;That's exactly what I did, A series a day;False;False;;;;1610551906;;False;{};gj4cf74;False;t3_kwf0hk;False;True;t1_gj4aft8;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4cf74/;1610615487;2;True;False;anime;t5_2qh22;;0;[]; -[];;;damnsanta;;;[];;;;text;t2_2alo9dpz;False;False;[];;The LN has 2 more volumes not adapted to anime I think;False;False;;;;1610551937;;False;{};gj4chjt;False;t3_kwf0hk;False;True;t1_gj46otq;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4chjt/;1610615522;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;"Well then let's do this - -- Attack on titan is better then FMA:B - -- Sword art online is pure trash - -- Clannad is really boring and Overrated - -- Your name is overrated also - -- Code geass ending wasn't as amazing as people make it out to be - -- Steins;gate 0 was better then the original - -Fite me";False;False;;;;1610551961;;False;{};gj4cjbm;False;t3_kwfpu9;False;True;t3_kwfpu9;/r/anime/comments/kwfpu9/anime_debate_comment_your_opinions_on_certain/gj4cjbm/;1610615548;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwaidhirnor;;;[];;;;text;t2_178i8a;False;False;[];;series os based off of light novels, the manga is also incomplete.;False;False;;;;1610551965;;False;{};gj4cjmk;False;t3_kwf0hk;False;True;t1_gj46otq;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4cjmk/;1610615553;4;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;A character the two MCs meet later on has a real harem. He has appears often in the anime.;False;False;;;;1610552051;;False;{};gj4cq2z;False;t3_kweif2;False;True;t1_gj3ycgv;/r/anime/comments/kweif2/i_need_anime_suggestions_harem_with_coolpowerfull/gj4cq2z/;1610615648;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DjRone;;MAL;[];;https://myanimelist.net/profile/DjRone;dark;text;t2_14nal0;False;False;[];;MAKE SURE YOU WATCH THE OVAS THEY END THE STORY PERFECTLY IMO;False;False;;;;1610552051;;False;{};gj4cq3s;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4cq3s/;1610615649;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rootkit9208;;;[];;;;text;t2_cap3m;False;False;[];;"*Teleports behind you* - -*gives you pocky* - -Ecks dee - -*Naruto runs away*";False;False;;;;1610552061;;False;{};gj4cqu3;False;t3_kwf0hk;False;True;t1_gj4a0ch;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4cqu3/;1610615659;73;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;Uh there’s more fan service in this than Fairy Tail but the story is still great;False;False;;;;1610552075;;False;{};gj4crvr;False;t3_kwdcu0;False;False;t1_gj47cyb;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj4crvr/;1610615674;18;True;False;anime;t5_2qh22;;0;[]; -[];;;PrestigiousFarmer543;;;[];;;;text;t2_85n8t2ih;False;False;[];;Kakegurui seems like it would be a fun world;False;False;;;;1610552124;;1610552432.0;{};gj4cvjx;False;t3_kweth7;False;True;t3_kweth7;/r/anime/comments/kweth7/if_you_could_be_reincarnated_to_any_anime/gj4cvjx/;1610615729;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;Yes a good watch;False;False;;;;1610552128;;False;{};gj4cvvw;True;t3_kwf0hk;False;True;t1_gj49iw6;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4cvvw/;1610615734;7;True;False;anime;t5_2qh22;;0;[]; -[];;;bluepsycho65;;;[];;;;text;t2_3exex6qy;False;False;[];;Ok I got to watch it now;False;False;;;;1610552153;;False;{};gj4cxpl;False;t3_kwf0hk;False;True;t1_gj4cvvw;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4cxpl/;1610615761;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EgocentricRaptor;;;[];;;;text;t2_15alsa;False;False;[];;I watched One Piece during the lockdown;False;False;;;;1610552164;;False;{};gj4cyii;False;t3_kwf0hk;False;True;t1_gj44en9;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4cyii/;1610615774;1;True;False;anime;t5_2qh22;;0;[]; -[];;;some314;;;[];;;;text;t2_jxdjh;False;False;[];;slapsticky and plays with rpg tropes? check out [Mahoujin Guruguru](https://myanimelist.net/anime/34745/Mahoujin_Guruguru_2017)... the music artist that did the ED for oyasumi did both OPs for Guruguru even;False;False;;;;1610552183;;False;{};gj4d009;False;t3_kwesdt;False;True;t3_kwesdt;/r/anime/comments/kwesdt/anime_like_maoujou_de_oyasumi/gj4d009/;1610615797;2;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;Good job;False;False;;;;1610552220;;False;{};gj4d2p0;False;t3_kwf0hk;False;True;t1_gj4cyii;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4d2p0/;1610615835;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EgocentricRaptor;;;[];;;;text;t2_15alsa;False;False;[];;How tf. If you just watched it nonstop without leaving to go to the bathroom or eat it would still take 13 days.;False;False;;;;1610552227;;False;{};gj4d398;False;t3_kwf0hk;False;True;t1_gj46ylv;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4d398/;1610615844;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SadBabyYoda1212;;;[];;;;text;t2_7nv5bjgp;False;False;[];;There is also an OVA with a more complete ending on VRV/Hidive iirc;False;False;;;;1610552243;;False;{};gj4d4gv;False;t3_kwf0hk;False;True;t1_gj45v9r;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4d4gv/;1610615864;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Arvidex;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Arvidex;light;text;t2_b465d;False;False;[];;Me too around then sometime.;False;False;;;;1610552277;;False;{};gj4d6xw;False;t3_kwf0hk;False;True;t1_gj3u1xy;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4d6xw/;1610615901;3;True;False;anime;t5_2qh22;;0;[]; -[];;;INSERT_LATVIAN_JOKE;;;[];;;;text;t2_wnpe5;False;False;[];;Have you read the comments on fan translated manga or ever taken a peek inside the henti subs? It's an experience.;False;False;;;;1610552286;;False;{};gj4d7lc;False;t3_kwf0hk;False;True;t1_gj4a0ch;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4d7lc/;1610615911;41;True;False;anime;t5_2qh22;;0;[]; -[];;;Daviday231231;;;[];;;;text;t2_2xfa0suw;False;False;[];;"Should I watch that instead of the main anime or after the main anime? -Edit: found the ova and it seems to just be a continuation of the main anime released cinematically after the end of the series in two episode viewings (14+15 & 16+17)";False;False;;;;1610552289;;False;{};gj4d7ss;False;t3_kwf0hk;False;True;t1_gj4d4gv;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4d7ss/;1610615914;3;True;False;anime;t5_2qh22;;0;[]; -[];;;pcechos;;;[];;;;text;t2_73kw7;False;False;[];;But is the story better? I can handle fan service if the story is at least competent lol;False;False;;;;1610552315;;False;{};gj4d9tg;False;t3_kwdcu0;False;True;t1_gj3vhck;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj4d9tg/;1610615944;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CO_ORDINATE;;;[];;;;text;t2_kf9hyuw;False;False;[];;yeh see you in frontpage :);False;False;;;;1610552352;;False;{};gj4dcil;False;t3_kwgxsv;False;False;t3_kwgxsv;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj4dcil/;1610615984;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;"Oh god , this idea is so dumb , idk where to begin with. - ->Shield Hero has so much more. By having an antagonist falsely accuse the main character of rape, it de-legitimizes actual rape accusations just like how using the t-word on anime characters causes people to use the trans-defense panic. - -It's just a story, it's about a psychopathic woman who accuse MC falsely. - - - ->Also are you telling me slavery in the world was not wrong. Most people got the message about slavery was: ""Slavery is bad, but if a good person is a slave owner, it's fine"". You could even argue that Raphtalia and Naofumi's relationship draws some parallels to Sally Hemmings and Thomas Jefferson. - -This is so dumb, first the anime never had the message that it is right to have a slave, MC was a desperate lonly man, he has done something which is not a good act , he was more of an anti hero at first, second despite doing something bad, he actually saved Raphtalia from that horrible place, and he obviously didn't know about eliminating the slave crests.3rd , later he also said to Raphtalia that she doesn't need to have that crest it was Raphtalia who wanted to have it. All of this controversy is bevause some idiots can't use their brains, they are fanatic and too sensitive. I never actually believed in SJW until i saw this.";False;False;;;;1610552357;;False;{};gj4dcvw;False;t3_kwgf1t;False;True;t1_gj4c4uz;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj4dcvw/;1610615989;2;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;Nice;False;False;;;;1610552378;;False;{};gj4defv;False;t3_kwf0hk;False;True;t1_gj4d6xw;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4defv/;1610616012;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ByonKun;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_16umub;False;False;[];;This scene made it my favourite romance/comedy;False;False;;;;1610552382;;False;{};gj4derv;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4derv/;1610616017;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ninjaboi333;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Ninjaboi333;light;text;t2_9fyks;False;False;[];;"Crunchyroll was owned by AT&T up until late last year. Zooming out from CR specifically, AT&T has been in massive debt - over $160 Billion from buying DirectTV in 2015 and the subsequent interest payments. Obviously with the rise of streaming platforms the last few years it hasn't exactly worked out as much as they'd like, hence them wanting to focus on HBO Max, but that's a story for another post/subreddit. - -In any case, AT&T has been looking to lighten that debt however they can. Hence their decision to sell Crunchyroll to Sony/Funimation this past year for about $1B USD. Now put yourself in the shoes of the AT&T exec in charge of setting Crunchyroll's budget. If you know that you will likely be parting with that business asset in the mid to short term, do you want to be investing even more resources in it if in the long term it's only going to boost your competitor's offerings once they acquire it? Probably not. As such, and again this is speculation so grain of salt, you likely will be giving CR a relatively limited budget for their licensing of shows for each season. - -Subjectively, looking at the last year of anime, Winter 2020 you still saw them licensing original shows like Asteroid in Love, Darwin's Game, Hands of Eizouken, InSpectre. Spring they premiered their first Crunchyroll Original (Tower of God) and you see here they start being a bit more limited with licenses - focusing mostly on isekai shows (Hachi-nan tte, Hamefura, PreConne) and Shonen staples (Shokugeki S5, Digimon Adventure 2020), with the occassional original show (Yesterday wo Utatte). Summer there just werent many shows period due to COVID delays, but again you see the same pattern - theri CR originals (God of High School, Gibiate) and popular sequels to Fire Force and SAO (which I believe were not exclusive licenses since Funimation also streamed those). Notably there were some more original shows here (Demon Academy Misfit, Rent A Girlfriend) but it was slim pickings overall. - -Fall is definitely where the trend is most apparent. The only CR licenses this season were - -* Tonikawa - CR Original -* Noblesse - CR Original -* Onyx Equinox - CR Original, if you call it an anime -* Jujutsu Kaisen - Very popular WSJ manga -* Dragon Quest Adventure of Dai - classic Shonen series from WSJ -* Haikyu - continuation of popular WSJ manga they had aired previously -* DanMachi S3 - sequel to popular series they already had first few seasons of -* Golden Kamuy S3 - sequel to popular series they already had the first few seasons of -* Is the Order a Rabbit S3 - sequel to popular series they had the first few seasons of -* Osomatsu-san - niche comedy they already had the first 2 seasons of -* Tsukiuta the Animation 2 - Sequel -* Hanyo no Yashahime - sequel to popular classic series with built in fan base -* Love Live - hugely popular Love Live -* Im Standing on 1M lives - Isekai -* Iwa Kakeru - random cute girls sports show -* D4DJ - nonexclusive license that was literally everywhere -* Attack on Titan - nonexclusive license of literally the biggest show in anime right now -* A bunch of shorts where the licenses likely weren't very high. - -It's almost all sequels to shows they already have on their platform, or shows with a high probability that they will be popular due to a built in fan base / high brand name equity behind it (Jujutsu Kaisen / AOT), or they're shows where the licensing fee likely wasn't high (D4DJ, all the shorts). Compare that to FUnimation who had a lot more varied slate of - -* Journey of Elaina -* Hypnosis Mic -* Warlords of Sigrdrifa -* Talentless Nana -* Sleepy Princess -* Ikebukuro Wset Gate Park -* Kuma KUma Kuma Bear -* Adachi to Shimamura -* AKudama Drive -* The Day I Became a God -* Taiso Samurai -* Moriarty the Patriot -* Dropout Idol Fruit Tart - -Almost no sequels in Funimation slate, which you could consider being a lot more ""risky"" in that there is no guarantee they'll be good and develop an audience. If you're an AT&T/CR exec planning out where you're putting your limited licensing dollars, you likely want to make sure you're getting surefire bets with a proven track record of success - most of the ""risky"" money you're spending is likely already tied up in your CR Originals (hello Ex-ARM) so it needs to be shows that will be a guaranteed hit. Hence sequels and/or brand name shows. - -Hope this long winded explanation helps clear things up";False;False;;;;1610552440;;False;{};gj4dj24;False;t3_kwfbbg;False;False;t3_kwfbbg;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj4dj24/;1610616081;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Fire_Quartz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4mwtkytl;False;False;[];;u/savevideo;False;False;;;;1610552443;;False;{};gj4dj8c;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4dj8c/;1610616084;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Watson349B;;;[];;;;text;t2_1ep9xh2d;False;False;[];;I did the exact same thing but I am barely trailing you haha. I had only seen about four anime’s prior and write reviews for TV and film. I felt like an idiot for holding out so long haha.;False;False;;;;1610552465;;False;{};gj4dkw0;False;t3_kwf0hk;False;True;t1_gj4c0nc;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4dkw0/;1610616107;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SpaceMarauder4953;;;[];;;;text;t2_8giw70r1;False;False;[];;And then the alarm rings and wakes you up;False;False;;;;1610552469;;False;{};gj4dl6s;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4dl6s/;1610616112;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FalloutCenturion;;;[];;;;text;t2_2q6192r4;False;False;[];;Hell yeah;False;False;;;;1610552479;;False;{};gj4dlxl;False;t3_kwf0hk;False;True;t1_gj3zfm2;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4dlxl/;1610616123;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;Make sure to watch ovas in the end;False;False;;;;1610552486;;False;{};gj4dmfi;True;t3_kwf0hk;False;True;t1_gj4cxpl;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4dmfi/;1610616130;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bluepsycho65;;;[];;;;text;t2_3exex6qy;False;False;[];;Will do;False;False;;;;1610552532;;False;{};gj4dpuv;False;t3_kwf0hk;False;True;t1_gj4dmfi;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4dpuv/;1610616183;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TaskMaster130;;;[];;;;text;t2_5bv4qqlx;False;False;[];;u/savevideo;False;False;;;;1610552679;;False;{};gj4e0t7;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4e0t7/;1610616347;0;True;False;anime;t5_2qh22;;0;[]; -[];;;next_door_nicotine;;;[];;;;text;t2_xyq5i;False;False;[];;[https://i.imgur.com/WGsq2Y6.gif](https://i.imgur.com/WGsq2Y6.gif);False;False;;;;1610552719;;False;{};gj4e3q6;False;t3_kwf0hk;False;True;t1_gj46ylv;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4e3q6/;1610616391;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FaZe_PPhard;;;[];;;;text;t2_4zy63yl3;False;False;[];;Well this a good boost to finish watching it;False;False;;;;1610552739;;False;{};gj4e5ah;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4e5ah/;1610616414;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Penguingate;;;[];;;;text;t2_xou8g;False;False;[];;"> peek inside the henti subs? - -That kind of explains why you find weird people";False;False;;;;1610552762;;False;{};gj4e70y;False;t3_kwf0hk;False;True;t1_gj4d7lc;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4e70y/;1610616440;20;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;Man writing reviews is a tough job too, watching animes isn't very hard, it is hard only when the anime's story is shit. Animes with good stories are easy to complete, it will get over before you know it;False;False;;;;1610552842;;False;{};gj4ed36;False;t3_kwf0hk;False;True;t1_gj4dkw0;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4ed36/;1610616531;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Militant_Worm;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/;light;text;t2_6wpo8;False;False;[];;Man, that's pretty much what I was doing too. Only really started watching anime at the end of March and I've now completed 250+ series.;False;False;;;;1610552855;;1610553249.0;{};gj4ee1f;False;t3_kwf0hk;False;True;t1_gj467j1;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4ee1f/;1610616545;4;True;False;anime;t5_2qh22;;0;[]; -[];;;brianort13;;;[];;;;text;t2_1b1d59h5;False;False;[];;Nobody take notes, this is how you get a restraining order;False;False;;;;1610552874;;False;{};gj4efet;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4efet/;1610616566;14;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;That's a lot.;False;False;;;;1610553051;;False;{};gj4estj;False;t3_kwf0hk;False;True;t1_gj4ee1f;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4estj/;1610616769;6;True;False;anime;t5_2qh22;;0;[]; -[];;;redditfanfan00;;;[];;;;text;t2_1mcmdjol;False;False;[];;"only 150? a 26-episode anime or two 13-episode anime can be finished in a day. with aomost a year of lockdown, at least 200-300 is expected. how did you only get 150? i finished roughly 200-250 anime, somewhere in that range. - -it was great.";False;False;;;;1610553147;;False;{};gj4f08a;False;t3_kwf0hk;False;True;t1_gj44en9;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4f08a/;1610616882;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Militant_Worm;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/;light;text;t2_6wpo8;False;False;[];;I prefer to think of it as getting value for money from my Funimation and Crunchyroll subscriptions!;False;False;;;;1610553193;;False;{};gj4f3pj;False;t3_kwf0hk;False;True;t1_gj4estj;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4f3pj/;1610616935;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Zuspected;;;[];;;;text;t2_72h0mr75;False;False;[];;I dropped this a long time ago. It's a good anime. I just couldn't really connect with it...;False;False;;;;1610553202;;False;{};gj4f4fd;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4f4fd/;1610616945;2;True;False;anime;t5_2qh22;;0;[]; -[];;;astupidnerd;;;[];;;;text;t2_142i4u;False;False;[];;Wow, I can't believe the show is commenting on this thread. 😁;False;False;;;;1610553374;;False;{};gj4fhrc;False;t3_kwf0hk;False;True;t1_gj3sc09;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4fhrc/;1610617149;147;True;False;anime;t5_2qh22;;0;[]; -[];;;_animelover1529_;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/animelover1529;light;text;t2_42vqohwr;False;False;[];;I need to watch this anime;False;False;;;;1610553385;;False;{};gj4fiks;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4fiks/;1610617161;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rocky_iwata;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/banninghamma;light;text;t2_i9ys0;False;False;[];;Wobbly Mikasa is cute.;False;False;;;;1610553422;;False;{};gj4flel;False;t3_kwgxsv;False;False;t3_kwgxsv;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj4flel/;1610617203;51;True;False;anime;t5_2qh22;;0;[]; -[];;;TakasuXAisaka;;;[];;;;text;t2_qab5v;False;False;[];;Unfortunately it won't get future seasons because the voice actors fucked it up by playing a prank.;False;False;;;;1610553425;;False;{};gj4flom;False;t3_kwf0hk;False;True;t1_gj4cxpl;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4flom/;1610617207;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ezxlexx;;;[];;;;text;t2_8kxjebz2;False;False;[];;Win wins;False;False;;;;1610553464;;False;{};gj4foj3;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4foj3/;1610617251;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Quplet;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Quplet;light;text;t2_2vl4cv9p;False;False;[];;I agree that the Chimera ant arc is terrible. Almost made me drop the show.;False;False;;;;1610553469;;False;{};gj4foy0;False;t3_kwdber;False;False;t3_kwdber;/r/anime/comments/kwdber/hunter_x_hunter_good_or_bad/gj4foy0/;1610617258;4;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;"Maybe for you man, I can complete animes with only 12 episodes in one day, I can't complete animes with 26 episodes, and moreover some anime storylines were bad, so I didn't feel like continuing them, and I don't like dropping anime halfway, so I bear with it and complete them even if it means taking intervals - -And also I don't only watch animes, I make AMVs too, and on top of that I have many other things to do";False;False;;;;1610553477;;False;{};gj4fpka;False;t3_kwf0hk;False;True;t1_gj4f08a;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4fpka/;1610617267;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610553485;;False;{};gj4fq58;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4fq58/;1610617276;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;I haven't watched much anime without subs -- but have had to watch quite a few Japanese live-action films without subs over the past 20+ years (no subbed release ever came out of these films). Most of these I figured out more or less after 2 or 3 viewings -- but I was left a bit clueless about some specific details.;False;False;;;;1610553511;;False;{};gj4fs34;False;t3_kwh2fb;False;True;t3_kwh2fb;/r/anime/comments/kwh2fb/after_how_many_animes_youve_watched_that_you/gj4fs34/;1610617305;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hatdrop;;;[];;;;text;t2_4cx4g;False;False;[];;Hey man, I worked out in a hyperbolic gravity chamber and lost 20 lbs in 2 hours!;False;False;;;;1610553536;;False;{};gj4fu1k;False;t3_kwf0hk;False;True;t1_gj4a0ch;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4fu1k/;1610617334;2;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;Oh that's what it is, getting value for money is a nice type of motivation.;False;False;;;;1610553571;;False;{};gj4fwnx;False;t3_kwf0hk;False;True;t1_gj4f3pj;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4fwnx/;1610617373;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kingxillty69;;;[];;;;text;t2_87xio1be;False;False;[];;16 wow i did it in like 4;False;False;;;;1610553580;;False;{};gj4fxcg;False;t3_kwf0hk;False;True;t1_gj46ylv;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4fxcg/;1610617384;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"> It's just a story, it's about a psychopathic woman who accuse MC falsely. - -Oh yes, the trans-panic defense isn't a real thing. People don't attack trans-females because they saw the word being related to anime characters. See if there weren't cases of trans-defense panic to attack actual people, your point of ""It's just a story"" is gone. The fact is that the media affects you, no matter how much to try to defend it. - ->This is so dumb, first the anime never had the message that it is right, he was a desperate man, who has done something which is not good itself, he was more of an anti hero at first, - -Except any character who complains about this situation or opposes him in any way is a colossal douchebag, so his choices are validated by omission. - ->second by doing that he actually saved Raphtalia from that horrible place, -> ->and he obviously didn't know about eliminating the slave crests.3rd , later he also said to Raphtalia that she doesn't need to have that crest it was Raphtalia who wanted to have it. - -The idea of ""what if the masters treated their slaves with kindness instead of cruelty"" and ""they are happier as slaves"" was an actual part of anti-abolitionist rhetoric in the history of the United States. - ->All of this controversy is bevause some idiots can't use their brains, they are fanatic and too sensitive. I never actually believed in SJW until i saw this. - -the author still chose to: - -* Create a world where slavery is a thing -* Have the plot tie itself into knots so the only possible solution is for the protagonist to own (exclusively female) slaves, via a false rape accusation no less -* Have said slaves be content with their situation no matter how much abuse he puts them through - -This is a story about slavery. Make no mistake.";False;False;;;;1610553631;;False;{};gj4g1b9;False;t3_kwgf1t;False;False;t1_gj4dcvw;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj4g1b9/;1610617443;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SadBabyYoda1212;;;[];;;;text;t2_7nv5bjgp;False;False;[];;Yep. It takes place after the main anime.;False;False;;;;1610553705;;False;{};gj4g6sz;False;t3_kwf0hk;False;True;t1_gj4d7ss;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4g6sz/;1610617528;3;True;False;anime;t5_2qh22;;0;[]; -[];;;griffeter;;skip7;[];;;dark;text;t2_9roy77t1;False;False;[];;Yeah I almost gave up as well. But stuck it out cos I wanted to see if gon ever met his dad but it was such a hard watch;False;False;;;;1610553712;;False;{};gj4g7bu;True;t3_kwdber;False;True;t1_gj4foy0;/r/anime/comments/kwdber/hunter_x_hunter_good_or_bad/gj4g7bu/;1610617536;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NefariousWatcher;;;[];;;;text;t2_55pc2au1;False;False;[];;I think the only good thing about Mirai Nikki is the opening. It's garbage through and through.;False;False;;;;1610553738;;False;{};gj4g9b9;False;t3_kwd2r4;False;True;t3_kwd2r4;/r/anime/comments/kwd2r4/so_my_sister_spoiled_mirai_nikki_to_me/gj4g9b9/;1610617564;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Daviday231231;;;[];;;;text;t2_2xfa0suw;False;False;[];;Seems like a mini season 2;False;False;;;;1610553753;;False;{};gj4gagd;False;t3_kwf0hk;False;True;t1_gj4g6sz;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4gagd/;1610617581;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mylifeisaonebigmeme;;;[];;;;text;t2_2bjjfrsy;False;False;[];;u/savevideo;False;False;;;;1610553901;;False;{};gj4glqb;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4glqb/;1610617752;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;Kaori loved him -- but it was NOT really romantic love. She loved his ability to play music -- and more than anything else, she wanted to see it restored before she died. Everything she did was aimed at healing him, and bringing back his love of muisic. She also loved him as a friend and confidant. If she had been able to look forward to living longer, she may well have developed actual romantic feelings.;False;False;;;;1610553975;;False;{};gj4grca;False;t3_kwdkl1;False;True;t3_kwdkl1;/r/anime/comments/kwdkl1/rant_about_your_lie_in_april_spoilers/gj4grca/;1610617836;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OTPh1l25;;;[];;;;text;t2_8vsop;False;True;[];;"Considering she showed up in the top 10 of a ranking chart based on number of fans on MAL someone made like 4 months ago, and her show has been off the air *for eight years* at that point, I think it speaks volumes as to how much a breath of fresh air she was for the anime community at the time and just how popular she was. - -A fantastic vocal performance by Miyuki Sawashiro certainly didn't hurt either.";False;False;;;;1610554001;;False;{};gj4gtaj;False;t3_kwf0hk;False;True;t1_gj3zfm2;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4gtaj/;1610617865;50;True;False;anime;t5_2qh22;;0;[]; -[];;;Flubbergaster;;;[];;;;text;t2_3hwpzavx;False;False;[];;bruh I know someone exactly like her, a massive pervert and not at all ashamed about it.;False;False;;;;1610554005;;False;{};gj4gtnv;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4gtnv/;1610617870;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SatsumaComic;;;[];;;;text;t2_11m5mk;False;False;[];;i have watched it 2 times;False;False;;;;1610554010;;False;{};gj4gu07;False;t3_kwf0hk;False;True;t1_gj3t6bk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4gu07/;1610617876;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;So if i like the show i am automatically that bad of a person?;False;False;;;;1610554099;;False;{};gj4h0tl;False;t3_kwgf1t;False;True;t1_gj4g1b9;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj4h0tl/;1610617977;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;i liked the show because the man went from being an underdog to the ultimate hero, mb then i didn't associate the thematics of the show to the problems nowadays;False;False;;;;1610554171;;False;{};gj4h6dj;False;t3_kwgf1t;False;True;t1_gj4h0tl;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj4h6dj/;1610618065;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Melaninkasa;;;[];;;;text;t2_fn682l0;False;False;[];;Idk about that. Inaba saved the whole entire show tho.;False;False;;;;1610554172;;False;{};gj4h6gv;False;t3_kwf0hk;False;True;t1_gj3ts7q;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4h6gv/;1610618066;5;True;False;anime;t5_2qh22;;0;[]; -[];;;SadBabyYoda1212;;;[];;;;text;t2_7nv5bjgp;False;False;[];;Basically. From my understanding it still isn't the end of the show/story but is less of a cliff hanger than season 1 ends on. I guess it's more like an actual season end as opposed to just not finishing something.;False;False;;;;1610554233;;False;{};gj4hb30;False;t3_kwf0hk;False;True;t1_gj4gagd;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4hb30/;1610618137;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;"So unreasonable - ->Oh yes, the trans-panic defense isn't a real thing. People don't attack trans-females because they saw the word being related to anime characters. See if there weren't cases of trans-defense panic to attack actual people, your point of ""It's just a story"" is gone. The fact is that the media affects you, no matter how much to try to defend it. - -Yeah and ppl can be unreasonable, so what you wanna tell me there's no such woman in the world ? - ->Except any character who complains about this situation or opposes him in any way is a colossal douchebag, so his choices are validated by omission. - -Again so what, it's a situation when good and evil are mixed together, and again the only thing that MC want is a companion, he knows that the crazy princess is only doing this to hurt him. - ->The idea of ""what if the masters treated their slaves with kindness instead of cruelty"" and ""they are happier as slaves"" was an actual part of anti-abolitionist rhetoric in the history of the United States. - -When did i say that ? He saved her that's my point, not that slavery is good ,there was no other way, the kingdom was flawed, and he doesn't have any offensive ability, he is alone and everyone hate him. - - -These claimes are so irrationa and stupid that i don't see the point in continueing ( also the author has written the so long ago ) go just read some rational [opinions](https://www.quora.com/What-is-your-take-on-the-controversy-surrounding-the-anime-The-Rising-of-the-Shield-Hero)";False;False;;;;1610554262;;False;{};gj4hdap;False;t3_kwgf1t;False;True;t1_gj4g1b9;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj4hdap/;1610618170;1;True;False;anime;t5_2qh22;;0;[]; -[];;;anixon0212;;;[];;;;text;t2_11m02n;False;False;[];;Is it a good show? Looking for something different to enjoy.;False;False;;;;1610554337;;False;{};gj4hj3i;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4hj3i/;1610618257;1;True;False;anime;t5_2qh22;;0;[]; -[];;;daniel26112009;;;[];;;;text;t2_3uso6r8t;False;False;[];;I mean a relly complex unique detailed personality/mind;False;False;;;;1610554363;;False;{};gj4hl52;True;t3_kwfj4x;False;True;t1_gj3wwth;/r/anime/comments/kwfj4x/what_are_some_four_demensional_charecters/gj4hl52/;1610618288;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mikelorme;;;[];;;;text;t2_28mtie9u;False;False;[];;are the 2 volumes adapted to manga?;False;False;;;;1610554370;;False;{};gj4hloz;False;t3_kwf0hk;False;True;t1_gj4chjt;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4hloz/;1610618296;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UnknownWorldMap;;;[];;;;text;t2_8fa1wnup;False;False;[];;As someone who has only ever read the SNK manga... What the fuck am I watching?;False;False;;;;1610554439;;False;{};gj4hr26;False;t3_kwgxsv;False;False;t3_kwgxsv;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj4hr26/;1610618375;44;True;False;anime;t5_2qh22;;0;[]; -[];;;Senpai498;;;[];;;;text;t2_sw15hg;False;False;[];;This show is so underrated.;False;False;;;;1610554447;;False;{};gj4hrs3;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4hrs3/;1610618386;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"No, as long as you understand that it has problematic issues and you don't enjoy it for their problematic issues. - -The monogatari series is great and I think it's one the best anime franchise out there, but I'll be the first to criticize the amount of fan-service in the show when I'm recommending the show.";False;False;;;;1610554492;;False;{};gj4hvew;False;t3_kwgf1t;False;True;t1_gj4h0tl;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj4hvew/;1610618440;1;True;False;anime;t5_2qh22;;0;[]; -[];;;damnsanta;;;[];;;;text;t2_2alo9dpz;False;False;[];;I don’t even think the whole anime is adapted to manga.;False;False;;;;1610554503;;False;{};gj4hwaz;False;t3_kwf0hk;False;True;t1_gj4hloz;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4hwaz/;1610618455;2;True;False;anime;t5_2qh22;;0;[]; -[];;;smallPP420;;;[];;;;text;t2_5clo9ssi;False;False;[];;Anime?;False;False;;;;1610554516;;False;{};gj4hxfc;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4hxfc/;1610618472;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Executioner3018;;;[];;;;text;t2_8ns6yjik;False;False;[];;in the title lol;False;False;;;;1610554584;;False;{};gj4i2pm;False;t3_kwf0hk;False;True;t1_gj49zb3;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4i2pm/;1610618556;4;True;False;anime;t5_2qh22;;0;[]; -[];;;iamDev_;;;[];;;;text;t2_9l8g0uju;False;False;[];;What's the name of this anime?;False;False;;;;1610554610;;False;{};gj4i4ps;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4i4ps/;1610618588;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vellsii;;;[];;;;text;t2_2tid8dx4;False;False;[];;Why do you expect that? Lots of companies own multiple versions of the same product (such as how Hulu is majority owned by Disney and has NBC as a stakeholder, who both have their own streaming service). If they completely merged the two platforms, they couldn't get away with selling two subscriptions.;False;False;;;;1610554614;;False;{};gj4i529;False;t3_kwfbbg;False;True;t1_gj3thqm;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj4i529/;1610618593;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ItchyPlatypus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ItchyPlatypus;light;text;t2_x6uza5h;False;False;[];;If you enjoyed the Shogi sections, Hikaru No Go is a good recommendation otherwise some others have said some great ones.;False;False;;;;1610554639;;False;{};gj4i708;False;t3_kwg89f;False;True;t3_kwg89f;/r/anime/comments/kwg89f/anime_similar_to_sangatsu_no_lion/gj4i708/;1610618624;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;i don't enjoy it because of the problematic issues. I didn't meant to annoy, i'm sorry if i insulted someone when i said that i liked shield hero. It was my mistake, please let's not discuss more i will delete the comment.;False;False;;;;1610554670;;False;{};gj4i9g8;False;t3_kwgf1t;False;True;t1_gj4hvew;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj4i9g8/;1610618662;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mikelorme;;;[];;;;text;t2_28mtie9u;False;False;[];;"well,that sucks - -thanks!";False;False;;;;1610554678;;False;{};gj4ia24;False;t3_kwf0hk;False;True;t1_gj4hwaz;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4ia24/;1610618672;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnalystStandard;;;[];;;;text;t2_9nhb0jrs;False;False;[];;can he beat goku tho;False;False;;;;1610554715;;False;{};gj4icw0;False;t3_kwfpu9;False;True;t3_kwfpu9;/r/anime/comments/kwfpu9/anime_debate_comment_your_opinions_on_certain/gj4icw0/;1610618717;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;Kokoro Connect;False;False;;;;1610554905;;False;{};gj4irpr;True;t3_kwf0hk;False;True;t1_gj4hxfc;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4irpr/;1610618947;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;Yeah it was a good watch;False;False;;;;1610554950;;False;{};gj4iv9c;True;t3_kwf0hk;False;True;t1_gj4hj3i;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4iv9c/;1610619000;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cbroney;;;[];;;;text;t2_5l5u6sf6;False;False;[];;Right, let’s not forget her describing to Iori the dream she had and what she did after waking up too early from it;False;False;;;;1610555013;;False;{};gj4j05e;False;t3_kwf0hk;False;True;t1_gj3sc09;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4j05e/;1610619078;137;True;False;anime;t5_2qh22;;0;[]; -[];;;vellsii;;;[];;;;text;t2_2tid8dx4;False;False;[];;"FMA has great (if old) animation and a great story, why does it matter if it's not canon? Its biggest issue is its ending, but I honestly preferred it to FMA:B because at least its unique/interesting and [FMA:B spoilers](/s ""it doesn't devolve into basic, boring shonen tropes for its big bad"")";False;False;;;;1610555034;;1610555450.0;{};gj4j1tl;False;t3_kwfdon;False;True;t1_gj3txs5;/r/anime/comments/kwfdon/do_i_need_to_watch_fma_before_fmab/gj4j1tl/;1610619103;0;True;False;anime;t5_2qh22;;0;[]; -[];;;JRavec;;;[];;;;text;t2_64fpcd54;False;False;[];;Fairy Tail i love the world and if i enter the guild i will obtain plot armor.;False;False;;;;1610555041;;False;{};gj4j2bi;False;t3_kweth7;False;True;t3_kweth7;/r/anime/comments/kweth7/if_you_could_be_reincarnated_to_any_anime/gj4j2bi/;1610619112;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NamiRocket;;;[];;;;text;t2_12x5rx;False;False;[];;"This is one of my favorite anime and it kills me that it never had the chance for a second series, because of silly things that went on behind the scenes of the show. - -Inaban for life.";False;False;;;;1610555062;;False;{};gj4j43r;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4j43r/;1610619138;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Skayde5;;;[];;;;text;t2_5br6ignh;False;False;[];;Is it sad cause i am thinking to start it but i wont if it ends bad;False;False;;;;1610555127;;False;{};gj4j95v;False;t3_kwf0hk;False;True;t1_gj454i9;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4j95v/;1610619218;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NamiRocket;;;[];;;;text;t2_12x5rx;False;False;[];;I don't feel that counts then, but that's me.;False;False;;;;1610555134;;False;{};gj4j9q8;False;t3_kwf0hk;False;True;t1_gj4aq8u;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4j9q8/;1610619226;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Beninja_;;;[];;;;text;t2_3b96bqn9;False;False;[];;"You can watch about 72 episodes in a day, if you were to not sleep, or do anything other than watch (+skipping openings). 930 episodes, means it takes just over 13 days. That leaves 3 days to sleep, so if you were to sleep daily, you could only get 5.5 hours. Also, let’s assume you ate while watching, so that’s out of the way. - -But let’s also say you skipped filler. One Piece has 10% filler, so we can shorten the episodes to 830. That means you can finish the series in 11.5 days straight, which significantly increases your extra sleeping/socialising/working time to 10 hours. So while what you did is extreme, it’s definitely not impossible. Congrats for the binge - -TLDR: Sleep is temporary, OP is forever.";False;False;;;;1610555216;;1610561240.0;{};gj4jgcc;False;t3_kwf0hk;False;True;t1_gj46ylv;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4jgcc/;1610619329;5;True;False;anime;t5_2qh22;;0;[]; -[];;;redditfanfan00;;;[];;;;text;t2_1mcmdjol;False;False;[];;"didn't actually mean to post this. oops. - -if there's an anime that i found interesting at first, but later on it starts becoming not as good, i start to skim through the episodes to input the anime more quickly. i don't do this anymore because i always end up going back to watch the entire anime again anyways, but if you watch an anime but you like it less as you watch, maybe you can just start skimming through the episodes to not miss out on too much while going through the anime.";False;False;;;;1610555287;;False;{};gj4jlwe;False;t3_kwf0hk;False;True;t1_gj4fpka;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4jlwe/;1610619417;1;True;False;anime;t5_2qh22;;0;[]; -[];;;theMertFN;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;ara ara;dark;text;t2_yzocn;False;False;[];;Well now i'm watching this show;False;False;;;;1610555317;;False;{};gj4jocz;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4jocz/;1610619455;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Seven-Tense;;;[];;;;text;t2_ogeb5;False;False;[];;"""Anime was a mistake""";False;False;;;;1610555352;;False;{};gj4jr4s;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4jr4s/;1610619499;2;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;Thanks man, gonna keep it in mind the next time I watch an anime.;False;False;;;;1610555365;;False;{};gj4js6b;False;t3_kwf0hk;False;True;t1_gj4jlwe;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4js6b/;1610619514;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ve_rushing;;;[];;;;text;t2_5neck4as;False;False;[];;Kokoro Connect - now that was a fun drama. Usually I don't like such but this here was solid.;False;False;;;;1610555388;;False;{};gj4jtzi;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4jtzi/;1610619543;1;True;False;anime;t5_2qh22;;0;[]; -[];;;redditfanfan00;;;[];;;;text;t2_1mcmdjol;False;False;[];;"you're welcome! it also helps with larger anime that you have a desire to watch but it doesn't quite hit you right. skimming through each episode helps to go through the anime and watch what you want to watch without wasting too much time. - -best of luck! - -remember: moderation is key for consumption.";False;False;;;;1610555481;;False;{};gj4k1bv;False;t3_kwf0hk;False;True;t1_gj4js6b;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4k1bv/;1610619653;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OneSushi;;;[];;;;text;t2_2nf056yi;False;False;[];;Why did I continue watching this clip?!;False;False;;;;1610555566;;False;{};gj4k80e;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4k80e/;1610619758;2;True;False;anime;t5_2qh22;;0;[]; -[];;;INSERT_LATVIAN_JOKE;;;[];;;;text;t2_wnpe5;False;False;[];;I mean if you're a normally adjusted individual you can detect the awkwardness here in the mainstream anime subs too, but more awkward you are yourself the harder it is to detect it in others. So I pointed out the hentai subs and fan translated manga because they are significantly downhill from the mainstream anime subs so it would be easier for you to detect their awkwardness.;False;False;;;;1610555573;;False;{};gj4k8kj;False;t3_kwf0hk;False;True;t1_gj4e70y;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4k8kj/;1610619767;15;True;False;anime;t5_2qh22;;0;[]; -[];;;redlaWw;;;[];;;;text;t2_9wwod;False;False;[];;Exclusive contracts like this are why their video players barely work and why their subs are cancer. They compete on catalogue so they don't need to compete on service quality.;False;False;;;;1610555574;;False;{};gj4k8o0;False;t3_kwfbbg;False;False;t1_gj3wkhv;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj4k8o0/;1610619769;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Allakatter;;;[];;;;text;t2_u36hn;False;False;[];;It didn't though? Best girl won and all characters had pretty good conclusions on their arcs.;False;False;;;;1610555601;;False;{};gj4kapl;False;t3_kwf0hk;False;True;t1_gj41hez;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4kapl/;1610619800;1;True;False;anime;t5_2qh22;;0;[]; -[];;;qwilliams92;;;[];;;;text;t2_11le5l;False;False;[];;Show deserves way more love;False;False;;;;1610555626;;False;{};gj4kcpl;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4kcpl/;1610619831;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NamiRocket;;;[];;;;text;t2_12x5rx;False;False;[];;"You're absolutely right, but I feel like you're also missing the point. - -In the show, Taichi openly likes someone *else* in the group and they've already been randomly swapping in and out of each others bodies by this point. Several of them are breaking down mentally because of it. Inaba is among them, not trusting her friends with her body and feeling like a horrible person for it, because the rest of them seem to trust one another just fine. And, in any way that they don't, there's a legitimate childhood trauma reasoning behind it. In her case, it's just how she's wired and she feels incredibly guilty over it and she starts pushing herself away from the others because of it. - -So he opts to tell her something incredibly embarrassing and that he acknowledges he should never tell her as a way to put himself out there and gain a little more of her trust, specifically *because* it's such an awkward, embarrassing, and you-should-never-do-this kind of thing to admit to someone. It was not intended as a power move to try and get into her pants.";False;False;;;;1610555638;;False;{};gj4kdn8;False;t3_kwf0hk;False;True;t1_gj4781x;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4kdn8/;1610619846;95;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;Good;False;False;;;;1610555671;;False;{};gj4kg5g;True;t3_kwf0hk;False;True;t1_gj4jocz;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4kg5g/;1610619885;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Narrovv;;;[];;;;text;t2_2yjywbm4;False;False;[];;Oh no I mean the production not the show itself. They had more planned but stuff went wrong;False;False;;;;1610555676;;False;{};gj4kgkj;False;t3_kwf0hk;False;True;t1_gj4kapl;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4kgkj/;1610619892;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;">Yeah and ppl can be unreasonable, so what you wanna tell me there's no such woman in the world? - -What I'm saying is that it de-legitimizes rape accusations. Media and entertainment has an effect on people. Just because *you* can realize it's just a story doesn't make it everyone can. - ->Again so what, it's a situation when good and evil are mixed together, and again the only thing that MC want is a companion, he knows that the crazy princess is only doing this to hurt him. - -Except there are no good people in the story. Everyone else in the story is portrayed as morally worse than Naofumi so by default Naofumi is seen as the most morally just person in-universe. Name ONE character outside of Naofumi's party that is morally better than him. - ->When did i say that ? He saved her that's my point, not that slavery is good ,there was no other way, the kingdom was flawed, and he doesn't have any offensive ability, he is alone and everyone hate him. - -Naofumi: ""Slavery bad"", Also Naofumi: ""I use slaves to fight because I can't attack"". -Actions speak louder than word, no matter how much you say you don't like slavery, when you still employ slaves. It's still this double standard where the show indirectly has the message of ""**as long as slaves are happy and are treated well, it's good for slaves**"" which is, once again, is pro-slavery rhetoric. - -The author still chose to: - -* Create a world where slavery is a thing -* **Have the plot tie itself into knots so the only possible solution is for the protagonist to own (exclusively female) slaves,** via a false rape accusation no less -* Have said slaves be content with their situation no matter how much abuse he puts them through - -This is a story about slavery. Make no mistake.";False;False;;;;1610555676;;False;{};gj4kgle;False;t3_kwgf1t;False;True;t1_gj4hdap;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj4kgle/;1610619893;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;Inaba is a special breed of female.;False;False;;;;1610555678;;False;{};gj4kgqk;False;t3_kwf0hk;False;True;t1_gj4781x;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4kgqk/;1610619895;15;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexxxandreS;;;[];;;;text;t2_25oteqzx;False;False;[];;"I also skip every episode recap/stuff that showed in the episode before. I really hate that because it could be some more minutes of new content. - -I always thought OP was overrated and that I'd not even like it, so that and that massive amount of episodes were always a turn off. Then lockdown happened and I had all the time in the world. And OP got me hooked, at least one good thing came out of lockdown, gave me a chance of watching OP";False;False;;;;1610555697;;False;{};gj4kia7;False;t3_kwf0hk;False;True;t1_gj4jgcc;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4kia7/;1610619919;1;True;False;anime;t5_2qh22;;0;[]; -[];;;h00n23;;;[];;;;text;t2_5wbxz569;False;False;[];;Pokemon lol;False;False;;;;1610555718;;False;{};gj4kjxr;False;t3_kweth7;False;True;t3_kweth7;/r/anime/comments/kweth7/if_you_could_be_reincarnated_to_any_anime/gj4kjxr/;1610619945;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KarmaOAkabane;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;anilist.co/user/KarmaOAkabane;light;text;t2_8ajupisc;False;False;[];;but you need friends to survive in Fairy Tail;False;False;;;;1610555780;;False;{};gj4koy7;False;t3_kweth7;False;True;t1_gj4j2bi;/r/anime/comments/kweth7/if_you_could_be_reincarnated_to_any_anime/gj4koy7/;1610620026;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;"Yeah. The ending is very satisfying, IMO. Even if the full story isn't adapted, they were smart enough to at least leave you at a point where you can't possibly be disappointed at how it ends outside of ""I wish there was more"".";False;False;;;;1610555836;;False;{};gj4ktjf;False;t3_kwf0hk;False;True;t1_gj45v9r;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4ktjf/;1610620094;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;Nah I was friends with the Naruto running kids in high school it's not obvious to everyone. Including me partially;False;False;;;;1610555876;;1610556398.0;{};gj4kwto;False;t3_kwf0hk;False;True;t1_gj4a0ch;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4kwto/;1610620147;7;True;False;anime;t5_2qh22;;0;[]; -[];;;NamiRocket;;;[];;;;text;t2_12x5rx;False;False;[];;And my axe!;False;False;;;;1610555894;;False;{};gj4kyae;False;t3_kwf0hk;False;True;t1_gj4af14;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4kyae/;1610620169;1;True;False;anime;t5_2qh22;;0;[]; -[];;;INSERT_LATVIAN_JOKE;;;[];;;;text;t2_wnpe5;False;False;[];;Most people viewing this video will be lacking that context. So my message is to people taking this video out of context.;False;False;;;;1610555912;;False;{};gj4kzor;False;t3_kwf0hk;False;True;t1_gj4kdn8;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4kzor/;1610620191;54;True;False;anime;t5_2qh22;;0;[]; -[];;;Fun-Ad-1145;;;[];;;;text;t2_7pwzgaqz;False;False;[];;Pieck fucking fiction.;False;False;;;;1610555943;;False;{};gj4l285;False;t3_kwgxsv;False;False;t1_gj4hr26;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj4l285/;1610620230;76;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;Crunchyroll/VRV;False;False;;;;1610556018;;False;{};gj4l83t;False;t3_kwf0hk;False;True;t1_gj4a4gf;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4l83t/;1610620323;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NamiRocket;;;[];;;;text;t2_12x5rx;False;False;[];;The manga and anime are both adaptations of the light novels. The manga doesn't go on for as long as the anime does, story-wise.;False;False;;;;1610556047;;False;{};gj4lafm;False;t3_kwf0hk;False;True;t1_gj45oci;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4lafm/;1610620360;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RadioMelon;;;[];;;;text;t2_991sdhh;False;False;[];;Now kiss.;False;False;;;;1610556076;;False;{};gj4lcpd;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4lcpd/;1610620396;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fuckingtwatwaffle;;;[];;;;text;t2_9clsh89z;False;False;[];;"Yeah, it probably is a real thing. -But fuck I dont even care anymore, if someone confirms that this is an actual dialouge in the anime, then I'll put it on my watchlist.";False;False;;;;1610556114;;False;{};gj4lftt;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4lftt/;1610620446;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zayed_khalid;;;[];;;;text;t2_7f1hqahz;False;False;[];;Like I would ever get a chance to chat with a girl;False;False;;;;1610556129;;False;{};gj4lh0z;False;t3_kwf0hk;False;True;t1_gj4781x;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4lh0z/;1610620465;3;True;False;anime;t5_2qh22;;0;[]; -[];;;fuckingtwatwaffle;;;[];;;;text;t2_9clsh89z;False;False;[];;"Bruv tu no latvijas? -Same if yea. -If no then just tell me to fuck off lol.";False;False;;;;1610556212;;False;{};gj4lnp5;False;t3_kwf0hk;False;True;t1_gj4kzor;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4lnp5/;1610620570;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zayed_khalid;;;[];;;;text;t2_7f1hqahz;False;False;[];;Am I the only one who’s satisfied with the ending ?;False;False;;;;1610556225;;False;{};gj4lot8;False;t3_kwf0hk;False;True;t1_gj436ci;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4lot8/;1610620589;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kyeloph_;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/OmegaBlue_;dark;text;t2_5eaors7v;False;False;[];;You actually put thought in what the title says;False;False;;;;1610556262;;False;{};gj4lrse;False;t3_kwf0hk;False;True;t1_gj44ep8;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4lrse/;1610620634;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NamiRocket;;;[];;;;text;t2_12x5rx;False;False;[];;Oh, I know. That's why I typed up the context, just in case you or anyone else might think it's just him trying some unorthodox way of landing a girlfriend.;False;False;;;;1610556272;;False;{};gj4lska;False;t3_kwf0hk;False;True;t1_gj4kzor;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4lska/;1610620646;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Kyeloph_;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/OmegaBlue_;dark;text;t2_5eaors7v;False;False;[];;"u/savevideo -Edit: [link](https://redditsave.com/info?url=/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/)";False;False;;;;1610556277;;1610556522.0;{};gj4lsy1;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4lsy1/;1610620652;3;True;False;anime;t5_2qh22;;0;[]; -[];;;zxHellboyxz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Mattinator95;light;text;t2_27t5u6vk;False;False;[];;Can't say on that didn't read fairy tail and stopped on the On ep 57 of season 2 but and I've put this series on hold due to other mangas/LNs plus gaming but from what I read of it was interesting Despite the mc keep saying he wants to be friends with everyone and given that the series will be in space as well there's some wacky ideas for planets and the powers seemed cool;False;False;;;;1610556299;;False;{};gj4luok;False;t3_kwdcu0;False;True;t1_gj4d9tg;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj4luok/;1610620679;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Oh yeah because if its just one service and there's no competition this will change haha - -You will have the same crap service and with less shows - -If there's no competition there's no reason to bet on random franchises, better to invest only in the popular ones - -I don't have Funimation, its animelab here and its the best streaming service for anime in the world, i hope Funimation just copy them (animelab is also owned by sony)";False;False;;;;1610556317;;False;{};gj4lw4j;False;t3_kwfbbg;False;True;t1_gj4k8o0;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj4lw4j/;1610620700;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Shadow_boi198387;;;[];;;;text;t2_5gfl5dly;False;False;[];;Thanks.;False;False;;;;1610556337;;False;{};gj4lxsm;False;t3_kwf0hk;False;True;t1_gj4l83t;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4lxsm/;1610620726;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Maxplay000;;;[];;;;text;t2_6jqtb99v;False;False;[];;#wtf;False;False;;;;1610556528;;False;{};gj4mcvd;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4mcvd/;1610620958;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kenyanen;;;[];;;;text;t2_3oxc6jc7;False;False;[];;it is. quite the entertaining show as well.;False;False;;;;1610556568;;False;{};gj4mfwf;False;t3_kwf0hk;False;True;t1_gj4lftt;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4mfwf/;1610621005;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fun-Ad-1145;;;[];;;;text;t2_7pwzgaqz;False;False;[];;"Wait a fucken minute, wasn't chapter 82 ""hero"" released in june 2016? - -And this anime was made in 2015 adapting the spin off manga released back in 2012? - -Jesus christ they're even foreshadowing events in the spin offs now.";False;False;;;;1610556577;;False;{};gj4mgna;False;t3_kwgxsv;False;False;t3_kwgxsv;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj4mgna/;1610621017;53;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610556637;;False;{};gj4mleo;False;t3_kwf0hk;False;True;t1_gj3zfm2;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4mleo/;1610621093;4;True;False;anime;t5_2qh22;;0;[]; -[];;;thatguywithawatch;;;[];;;;text;t2_roht2;False;False;[];;"Oh, wow, I should give this show a watch. - -Was about to add it to my mental list of shows to ignore based on this clip";False;False;;;;1610556667;;False;{};gj4mnqo;False;t3_kwf0hk;False;True;t1_gj4kdn8;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4mnqo/;1610621130;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Dare555;;;[];;;;text;t2_6k3zwl8o;False;False;[];;Inaba one of the best anime girls ever !! She and Kokoro connect are just amazing ,watch it if you didn't :D And dont forget OVA episodes that finish series;False;False;;;;1610556686;;False;{};gj4mp94;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4mp94/;1610621153;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Allakatter;;;[];;;;text;t2_u36hn;False;False;[];;Ah ok, my misunderstanding then.;False;False;;;;1610556738;;False;{};gj4mtgp;False;t3_kwf0hk;False;True;t1_gj4kgkj;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4mtgp/;1610621216;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NenBE4ST;;;[];;;;text;t2_57p0ycnd;False;False;[];;sail the high seas;False;False;;;;1610556779;;False;{};gj4mwp4;False;t3_kwfbbg;False;True;t1_gj3vvkr;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj4mwp4/;1610621268;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rainaire;;;[];;;;text;t2_5vkw7;False;False;[];;Bro I love my fellow weebs but I've been to lots of cons and y'all need to fucking shower and use deodorant;False;False;;;;1610556784;;False;{};gj4mx62;False;t3_kwf0hk;False;True;t1_gj4cdfj;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4mx62/;1610621275;59;True;False;anime;t5_2qh22;;0;[]; -[];;;Dare555;;;[];;;;text;t2_6k3zwl8o;False;False;[];;OVA's finished it well i would say. Could have had one more seasons ofc but it was great OVA finish;False;False;;;;1610556804;;False;{};gj4mypr;False;t3_kwf0hk;False;True;t1_gj436ci;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4mypr/;1610621299;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JBHUTT09;;MAL;[];;http://myanimelist.net/animelist/JBHUTT09;dark;text;t2_4a2y9;False;False;[];;Best character AND voiced by Sawashiro Miyuki. A perfect combination!;False;False;;;;1610556827;;False;{};gj4n0in;False;t3_kwf0hk;False;True;t1_gj3t2bb;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4n0in/;1610621326;22;True;False;anime;t5_2qh22;;0;[]; -[];;;redlaWw;;;[];;;;text;t2_9wwod;False;False;[];;Competition between services is fine and good, it's competition on catalogue that is the problem. If you can keep your customers just by getting the winning bid on the hottest new shows, you have no incentive for making your service anything more than barely-watchable.;False;False;;;;1610556827;;False;{};gj4n0kz;False;t3_kwfbbg;False;False;t1_gj4lw4j;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj4n0kz/;1610621327;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Docoda;;MAL a-amq;[];;http://myanimelist.net/animelist/docoda;dark;text;t2_6u6yo;False;False;[];;"Both of the people here are missing the point as your statement doesn't focus on 'okazu' which is the slang for fap material, but on how it's said. - -The translation is correct though. They both say ""I used you as fap material"" (inaba/omae wo okazu ni shita koto ga aru)";False;False;;;;1610556862;;False;{};gj4n3bo;False;t3_kwf0hk;False;True;t1_gj43jum;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4n3bo/;1610621368;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Arickettsf16;;;[];;;;text;t2_wv44j;False;False;[];;It’s not a full adaptation but it leaves off at a satisfying point, assuming you watch the extra 4 episodes that were released.;False;False;;;;1610556895;;False;{};gj4n62l;False;t3_kwf0hk;False;True;t1_gj4j95v;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4n62l/;1610621410;5;True;False;anime;t5_2qh22;;0;[]; -[];;;JBHUTT09;;MAL;[];;http://myanimelist.net/animelist/JBHUTT09;dark;text;t2_4a2y9;False;False;[];;"> fantastic vocal performance by Miyuki Sawashiro - -When it's Sawashiro Miyuki, ""fantastic"" is implied!";False;False;;;;1610556927;;False;{};gj4n8kp;False;t3_kwf0hk;False;True;t1_gj4gtaj;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4n8kp/;1610621447;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Sickhead01;;;[];;;;text;t2_5712ozdz;False;False;[];;Yes it is. Episode 4;False;False;;;;1610557079;;False;{};gj4nksx;False;t3_kwf0hk;False;True;t1_gj4lftt;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4nksx/;1610621636;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TresLeches88;;;[];;;;text;t2_43p0uvla;False;False;[];;I feel like Yoshifumi was kinda shafted. Everything was too Taichi centric. I get he's the protag, but what makes ensemble casts this small work better is when *everyone* has great chemistry with each other. But he never really got a chance to shine.;False;False;;;;1610557123;;False;{};gj4noga;False;t3_kwf0hk;False;True;t1_gj3ts7q;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4noga/;1610621692;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Red___Mist;;;[];;;;text;t2_7d1dymwh;False;False;[];;I gotta admit,saying i mastrub@ted thinking about you sounds kinda discusting but it's kinda hot. Imagine a girl saying that to you, how would you feel being wanted for once.;False;False;;;;1610557132;;False;{};gj4np72;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4np72/;1610621704;2;True;False;anime;t5_2qh22;;0;[]; -[];;;A_Texas_Toaster;;;[];;;;text;t2_5tvja;False;False;[];;Wait shit, I've watched Kokoro Connect before but it's been a while and don't remember this. What happened?;False;False;;;;1610557245;;False;{};gj4nyi7;False;t3_kwf0hk;False;True;t1_gj4j05e;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4nyi7/;1610621848;57;True;False;anime;t5_2qh22;;0;[]; -[];;;arara69;;;[];;;;text;t2_16j57v;False;False;[];;Pirates win again. Thanks Luffy;False;False;;;;1610557334;;False;{};gj4o5tq;False;t3_kwfbbg;False;True;t3_kwfbbg;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj4o5tq/;1610621962;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FateLore;;;[];;;;text;t2_7r7d5s9z;False;False;[];;Bro we are weebs not fucking dumb cunts, most people know that my guy.;False;False;;;;1610557518;;False;{};gj4oklq;False;t3_kwf0hk;False;True;t1_gj4781x;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4oklq/;1610622199;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Coppeh;;;[];;;;text;t2_12asl7;False;False;[];;I've been to exactly 2 cons and I'd say the opposite for balance, good job most of y'all, for taking care of your personal hygiene because me and my nose had a grand pleasant time.;False;False;;;;1610557564;;False;{};gj4oo72;False;t3_kwf0hk;False;True;t1_gj4mx62;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4oo72/;1610622254;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazr55;;;[];;;;text;t2_29xamtbv;False;False;[];;It always surprises me to remember that Kokoro Connect wasn't made by KyoAni. The artstyle is quite similar.;False;False;;;;1610557613;;False;{};gj4os5d;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4os5d/;1610622315;2;True;False;anime;t5_2qh22;;0;[]; -[];;;blueteenight;;;[];;;;text;t2_11kek1;False;False;[];;Didn't they rush the beginning of Brotherhood because they assumed everyone watched 2003? I might actually be thinking of 2003 original content so apologies in advance.;False;False;;;;1610557664;;False;{};gj4ow57;False;t3_kwfdon;False;False;t1_gj3trim;/r/anime/comments/kwfdon/do_i_need_to_watch_fma_before_fmab/gj4ow57/;1610622378;4;True;False;anime;t5_2qh22;;0;[]; -[];;;GreatDemonBaphomet;;;[];;;;text;t2_9xwv7rh;False;False;[];;Inaba is one of my top 3 waifus;False;False;;;;1610557724;;False;{};gj4p105;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4p105/;1610622454;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zipzzo;;;[];;;;text;t2_29gnfyjt;False;False;[];;"Inaban was so top tier a waifu... - -&#x200B; - -(Speaking as someone who watched this anime when it first came out)";False;False;;;;1610557775;;False;{};gj4p51u;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4p51u/;1610622518;1;True;False;anime;t5_2qh22;;0;[]; -[];;;glibnny;;;[];;;;text;t2_5sfi41b6;False;False;[];;I don't know what this show is or even care to watch it. But this shit of a scene made me laugh my ass off! Something so simple and stupid and straightforward! I don't have the balls to say what that guy said!;False;False;;;;1610557794;;False;{};gj4p6mg;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4p6mg/;1610622544;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Specness;;;[];;;;text;t2_4ksb96h;False;False;[];;I watched one piece in the great lockdown;False;False;;;;1610557829;;False;{};gj4p9bs;False;t3_kwf0hk;False;True;t1_gj43wjs;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4p9bs/;1610622587;1;True;False;anime;t5_2qh22;;0;[]; -[];;;INSERT_LATVIAN_JOKE;;;[];;;;text;t2_wnpe5;False;False;[];;"> Bruv tu no latvijas? - -Nē, man vienkārši nav kartupeļu.";False;False;;;;1610557899;;False;{};gj4pewn;False;t3_kwf0hk;False;True;t1_gj4lnp5;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4pewn/;1610622674;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cataclysma;;MAL;[];;https://myanimelist.net/animelist/Cataclysma;dark;text;t2_5zox7;False;False;[];;why am i laughing so hard;False;False;;;;1610558129;;False;{};gj4pxg4;False;t3_kwf0hk;False;True;t1_gj4fhrc;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4pxg4/;1610622971;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Khalku;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://kitsu.io/users/Khalku;light;text;t2_587e6;False;False;[];;I have completed fewer than that in my lifetime. Holy shit...;False;False;;;;1610558280;;False;{};gj4q9er;False;t3_kwf0hk;False;True;t1_gj44en9;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4q9er/;1610623157;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610558333;;False;{};gj4qdm1;False;t3_kwf0hk;False;True;t1_gj4mnqo;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4qdm1/;1610623224;1;True;False;anime;t5_2qh22;;0;[]; -[];;;johnbhs;;;[];;;;text;t2_7r31mtfm;False;False;[];;I lost count of how many I have watched but it was a lot too, well, not as much as you;False;False;;;;1610558382;;False;{};gj4qhko;False;t3_kwf0hk;False;True;t1_gj44en9;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4qhko/;1610623286;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yuzuki_aoi;;;[];;;;text;t2_8421lq4d;False;False;[];;and this... THIS is why Inaban best girl;False;False;;;;1610558388;;False;{};gj4qi3g;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4qi3g/;1610623294;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Khalku;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://kitsu.io/users/Khalku;light;text;t2_587e6;False;False;[];;That would only take ~12-14 hours of watching not 23. Many anime is only about 15 minutes long if you cut out OP/ED and credits;False;False;;;;1610558409;;False;{};gj4qjqg;False;t3_kwf0hk;False;True;t1_gj4a8p1;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4qjqg/;1610623320;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Khalku;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://kitsu.io/users/Khalku;light;text;t2_587e6;False;False;[];;How did it end? I only watched the anime.;False;False;;;;1610558438;;False;{};gj4qm2m;False;t3_kwf0hk;False;True;t1_gj4afv1;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4qm2m/;1610623356;1;True;False;anime;t5_2qh22;;0;[]; -[];;;x_xwolf;;;[];;;;text;t2_kt4ta;False;False;[];;TL DR, told my teacher i wanked to him;False;False;;;;1610558479;;False;{};gj4qpb5;False;t3_kwf0hk;False;True;t1_gj4781x;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4qpb5/;1610623405;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Khalku;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://kitsu.io/users/Khalku;light;text;t2_587e6;False;False;[];;All 1000 episodes? I just got into it, I'm only 17 in and I hope it gets better? I feel its starting kind of slow, lots of filler/wasted time in the episodes.;False;False;;;;1610558485;;False;{};gj4qprk;False;t3_kwf0hk;False;True;t1_gj46ylv;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4qprk/;1610623413;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sen_no_kaze;;MAL;[];;https://myanimelist.net/animelist/Zathorius;dark;text;t2_wfy3y;False;False;[];;"Need, no but I would advise yes. They are both good shows and if you want to watch both then FMA-> FMA:B is better in my opinion because of a longer introduction in FMA and the later parts of FMA might not be such a good experience anymore after seeing FMA:B. - -If you only plan on watching one, then just skip FMA and get into FMA:B right away.";False;False;;;;1610558519;;False;{};gj4qsgp;False;t3_kwfdon;False;True;t3_kwfdon;/r/anime/comments/kwfdon/do_i_need_to_watch_fma_before_fmab/gj4qsgp/;1610623457;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LordValkyrie99;;;[];;;;text;t2_63mgxeog;False;False;[];;Inaban with the UNO reverse card;False;False;;;;1610558549;;False;{};gj4quwd;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4quwd/;1610623498;1;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;I was watching three animes together once, the animes were The Misfit Of Demon King Academy, Re:zero season 2 part 1, and Oregairu: Climax, these three animes animes were ongoing at that time, whenever a new episode came I completed it, it was a nice experience;False;False;;;;1610558566;;False;{};gj4qw7x;False;t3_kwf0hk;False;True;t1_gj4q9er;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4qw7x/;1610623519;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexxxandreS;;;[];;;;text;t2_25oteqzx;False;False;[];;It was about 915 or something when I binged. It does get better, a lot better. It's so incredibly amazing, can't recommend enough, don't give up, keep watching it;False;False;;;;1610558591;;False;{};gj4qy7m;False;t3_kwf0hk;False;True;t1_gj4qprk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4qy7m/;1610623549;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Molomar;;;[];;;;text;t2_7928l;False;False;[];;"It’s a really good show that gets into the character’a heads and how they feel really well because of supernatural situations that are forced onto them, like the forced body switching they mentioned. - -There’s some really down to earth heart wrenching things that happen to them, and most of them are way more complex than let on. - -[Sorta spoilery, but not super bad](/s “A good example is the guy in the video, Taichi. He comes off as a very standard protagonist for these sorts of things, you know someone who wants to help just for the sake of it. Then the show flips it around because it’s something that they go into and address how it’s more of a psychological thing than let on. He has this weird savior complex, because he has very little self worth, and feels like everybody else’s issues outweigh his own every time. It’s a really good twist because he’s shown initially as the least troubled member, when he’s one of the more troubled ones.”) - -I can’t remember the last time an anime has gone into the reasoning why their protag has a savior complex.";False;False;;;;1610558640;;False;{};gj4r271;False;t3_kwf0hk;False;True;t1_gj4mnqo;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4r271/;1610623612;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Nay-the-Cliff;;;[];;;;text;t2_a155o66;False;False;[];;I don’t know why but when I do it all I get are restraining orders;False;False;;;;1610558642;;False;{};gj4r2fc;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4r2fc/;1610623617;1;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;Aye Man, You all are too nice to me, it really isn't that big of a deal.;False;False;;;;1610558662;;False;{};gj4r40l;False;t3_kwf0hk;False;True;t1_gj4qhko;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4r40l/;1610623641;2;True;False;anime;t5_2qh22;;0;[]; -[];;;makinglovebirdss;;;[];;;;text;t2_rqjfigu;False;False;[];;"what a weird way to spell ""guaranteed"".";False;False;;;;1610558683;;False;{};gj4r5vf;False;t3_kwf0hk;False;True;t1_gj4n8kp;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4r5vf/;1610623670;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Khalku;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://kitsu.io/users/Khalku;light;text;t2_587e6;False;False;[];;"> let’s assume you ate while eating - -God I hope that's what happened.";False;False;;;;1610558697;;False;{};gj4r6yo;False;t3_kwf0hk;False;True;t1_gj4jgcc;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4r6yo/;1610623687;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Khalku;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://kitsu.io/users/Khalku;light;text;t2_587e6;False;False;[];;How does that not count?;False;False;;;;1610558749;;False;{};gj4rb25;False;t3_kwf0hk;False;True;t1_gj4j9q8;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4rb25/;1610623752;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YoshiYogurt;;;[];;;;text;t2_eq3v5;False;False;[];;"Probably part 1? They are literally labeled by parts. - -Don’t touch monogateri or fate, you might stroke out";False;False;;;;1610558761;;False;{};gj4rc0j;False;t3_kwefuq;False;True;t3_kwefuq;/r/anime/comments/kwefuq/jojo_bizarre_adventure_series/gj4rc0j/;1610623766;2;True;False;anime;t5_2qh22;;0;[]; -[];;;INSERT_LATVIAN_JOKE;;;[];;;;text;t2_wnpe5;False;False;[];;"Here's some advice: - - * Start small. - * Pay attention to what others around you are doing looking for shared interests or struggles. - * Pick a girl who you are not attracted to at all to chat with. - * Just chat about a shared interest or shared struggle. - * Be honest about your nervousness and mention that you're trying to break out of your shell of shyness and you thought that maybe they would like to chat. - * Plain girls get teased by guys as much as plain guys get teased by girls. She's likely to be wary that you're trying to set her up to be teased. - * If she ignores your or rejects you, then simply say, ""Sorry to bother you then. But if maybe you change your mind later, let me know. I'm still interested in having someone to chat with."" - -Most people refuse to even try to leave their shell until they find someone so enchanting that that they force themselves to do so. The problem with that is that you set your expectations way too high and the penalty for failure is much higher. So start small, don't start with someone you find attractive. Start with someone you could just be friends with and who shares a common interest or struggle. - -If you fail then there's no big loss.";False;False;;;;1610558804;;False;{};gj4rfh2;False;t3_kwf0hk;False;True;t1_gj4lh0z;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4rfh2/;1610623819;17;True;False;anime;t5_2qh22;;0;[]; -[];;;MrDefMono;;;[];;;;text;t2_yitsc5t;False;False;[];;That's the thing right? I think Crunchyroll users got too used to having like 80% of seasonal anime. I have a subscription to everything so it's not inconvenient for me (except that funimation's UI sucks ass) but I definitely noticed I'm watching way more anime on Funi this season then previous years. Anyone else notice that Amazon prime seems to have given up entirely on simulcasts? I've also had less use for HiDive of late. I'm wondering if we're gonna see Funimation take over the majority of market share going into the future. I hope not, they need to do a lot of overhaul on their website and apps, but I am curious.;False;False;;;;1610558889;;False;{};gj4rln6;False;t3_kwfbbg;False;False;t1_gj3tdna;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj4rln6/;1610623919;12;True;False;anime;t5_2qh22;;0;[]; -[];;;INSERT_LATVIAN_JOKE;;;[];;;;text;t2_wnpe5;False;False;[];;Awkward people have a hard time knowing how awkward they are. Or maybe you just haven't met too many weebs. I was in the anime club in school. I know how awkward weebs are.;False;False;;;;1610558932;;False;{};gj4rpjq;False;t3_kwf0hk;False;True;t1_gj4oklq;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4rpjq/;1610623982;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;">Except there are no good people in the story. Everyone else in the story is portrayed as morally worse than Naofumi so by default Naofumi is seen as the most morally just person in-universe. Name ONE character outside of Naofumi's party that is morally better than him. - -The queen, happy now, - ->Naofumi: ""Slavery bad"", Also Naofumi: ""I use slaves to fight because I can't attack"". -Actions speak louder than word, no matter how much you say you don't like slavery, when you still employ slaves. It's still this double standard where the show indirectly has the message of ""as long as slaves are happy and are treated well, it's good for slaves"" which is, once again, is pro-slavery rhetoric. - - -Such delusions god, sometimes i wonder if ppl watched the series correctly, never said i use slaves to do it , he just have one slave which iw there by her own will , she was free , but still returned , Naofumi would free her if he could. Do me a favore and just follow the link, so maybe they can clear things up. - - ->The author still chose to: - ->Create a world where slavery is a thing -Have the plot tie itself into knots so the only possible solution is for the protagonist to own (exclusively female) slaves, via a false rape accusation no less -Have said slaves be content with their situation no matter how much abuse he puts them through - ->This is a story about slavery. Make no mistake. - -Oh god .... you know what ? I'm happy that japan didn't even give shit about this fanetic delusions, these knid of irrational and fanetic thoughts are the new versions of radicalism, i see no difference between them and ppl in the past who said womens shouldn't have a right to vote";False;False;;;;1610559010;;False;{};gj4rvvi;False;t3_kwgf1t;False;True;t1_gj4kgle;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj4rvvi/;1610624086;1;True;False;anime;t5_2qh22;;0;[]; -[];;;INSERT_LATVIAN_JOKE;;;[];;;;text;t2_wnpe5;False;False;[];;I've read enough hentai to know where this is going... You ended up in the school counselor's office to have a chat didn't you?;False;False;;;;1610559133;;False;{};gj4s5tb;False;t3_kwf0hk;False;True;t1_gj4qpb5;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4s5tb/;1610624247;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FateLore;;;[];;;;text;t2_7r7d5s9z;False;False;[];;Hmm maybe ur right cause I'm the only Weeb in my country...;False;False;;;;1610559177;;False;{};gj4s9d7;False;t3_kwf0hk;False;True;t1_gj4rpjq;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4s9d7/;1610624304;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rocky_iwata;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/banninghamma;light;text;t2_i9ys0;False;False;[];;I'm very sure now that Isayama has planned absolutely everything from the start.;False;False;;;;1610559198;;False;{};gj4sb0w;False;t3_kwgxsv;False;False;t1_gj4mgna;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj4sb0w/;1610624331;49;True;False;anime;t5_2qh22;;0;[]; -[];;;BuzakLuzak;;;[];;;;text;t2_34pbc8kk;False;False;[];;21:37 the exact time when John Paul II died;False;False;;;;1610559339;;False;{};gj4smfa;False;t3_kwf0hk;False;True;t1_gj49hd4;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4smfa/;1610624514;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fun-Ad-1145;;;[];;;;text;t2_7pwzgaqz;False;False;[];;As expected of the GOAT himself.;False;False;;;;1610559384;;False;{};gj4sq12;False;t3_kwgxsv;False;False;t1_gj4sb0w;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj4sq12/;1610624571;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Get_screwd;;;[];;;;text;t2_1bpeqpze;False;False;[];;A man of culture;False;False;;;;1610559544;;False;{};gj4t30y;False;t3_kwf0hk;False;True;t1_gj3zfm2;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4t30y/;1610624781;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ztrue25;;;[];;;;text;t2_5640ikft;False;False;[];;I just realized that I've never masturbated to an actual person;False;False;;;;1610559688;;False;{};gj4tfln;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4tfln/;1610624981;6;True;False;anime;t5_2qh22;;0;[]; -[];;;korosake;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/korosake;light;text;t2_15h7cv;False;False;[];;It's in one of the 4 episodes that are ova's after the show, she basically has a fight with Iori over who likes Taichi more and goes into extreme detail. [Here it is](https://www.youtube.com/watch?v=3__rToJrI-o);False;False;;;;1610559771;;False;{};gj4tmqo;False;t3_kwf0hk;False;True;t1_gj4nyi7;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4tmqo/;1610625096;61;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;Vast majority of it is original content. Maes's intro chapter gets skipped (since he's introduced in Episode 1 instead) and Yoki's chapter that's covered in a flashback later gets skipped. Pretty sure that's it.;False;False;;;;1610559773;;False;{};gj4tmvm;False;t3_kwfdon;False;False;t1_gj4ow57;/r/anime/comments/kwfdon/do_i_need_to_watch_fma_before_fmab/gj4tmvm/;1610625098;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Zayed_khalid;;;[];;;;text;t2_7f1hqahz;False;False;[];;Lmao you actually wrote all this . I won’t disappoint you fellow redditor!;False;False;;;;1610559885;;False;{};gj4tvyw;False;t3_kwf0hk;False;True;t1_gj4rfh2;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4tvyw/;1610625252;5;True;False;anime;t5_2qh22;;0;[]; -[];;;mctankles;;;[];;;;text;t2_15zr0l;False;False;[];;He’s in;False;False;;;;1610560055;;False;{};gj4ua79;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4ua79/;1610625479;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sjk9000;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JK9000;light;text;t2_goeql;False;False;[];;I wonder if they're going to get Sayaka Ohara to voice ~~Erza Scarlet~~ Elsie Crimson.;False;False;;;;1610560063;;False;{};gj4uav6;False;t3_kwdcu0;False;False;t1_gj3upi2;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj4uav6/;1610625490;16;True;False;anime;t5_2qh22;;0;[]; -[];;;ve_rushing;;;[];;;;text;t2_5neck4as;False;False;[];;"""Do i need to watch FMA before FMAB?"" - no you don't. FMAB is a second adaptation of the same source. The first one diverts from it because they run out of manga to adapt which was ongoing at the time.";False;False;;;;1610560202;;False;{};gj4um8x;False;t3_kwfdon;False;False;t3_kwfdon;/r/anime/comments/kwfdon/do_i_need_to_watch_fma_before_fmab/gj4um8x/;1610625678;1;True;False;anime;t5_2qh22;;0;[]; -[];;;INSERT_LATVIAN_JOKE;;;[];;;;text;t2_wnpe5;False;False;[];;It's just a piece of advice that I would have liked to have been given when I was still in school. It would have helped me a lot back then.;False;False;;;;1610560318;;False;{};gj4uvqh;False;t3_kwf0hk;False;True;t1_gj4tvyw;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4uvqh/;1610625834;5;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;These deals happened long before the buyout.;False;False;;;;1610560338;;False;{};gj4uxdo;False;t3_kwfbbg;False;True;t1_gj3tb29;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj4uxdo/;1610625860;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;It's still incredibly helpful. You can do it gradually with MAL or one of the other sites.;False;False;;;;1610560426;;False;{};gj4v4mo;False;t3_kwbfjt;False;True;t1_gj3cga7;/r/anime/comments/kwbfjt/can_anybody_help_me_with_my_anime_to_watch_list/gj4v4mo/;1610625980;1;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610560470;moderator;False;{};gj4v8es;False;t3_kwf0hk;False;True;t1_gj4mleo;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4v8es/;1610626040;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Just_tino_lmao;;;[];;;;text;t2_6xppqkug;False;False;[];;That's a cool way to date a chick;False;False;;;;1610560555;;False;{};gj4vffk;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4vffk/;1610626152;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JesterTheZeroSet;;;[];;;;text;t2_o3za1;False;False;[];;"> masterbated - -Masturbated";False;False;;;;1610560603;;False;{};gj4vjk5;False;t3_kwf0hk;False;True;t1_gj4781x;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4vjk5/;1610626220;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AvatarAarow1;;;[];;;;text;t2_3ve7o5xz;False;False;[];;100% endorse this comment as someone who’s #1 anime of all time is Sangatsu;False;False;;;;1610560765;;False;{};gj4vx3z;False;t3_kwg89f;False;True;t1_gj3xtqv;/r/anime/comments/kwg89f/anime_similar_to_sangatsu_no_lion/gj4vx3z/;1610626447;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cumwagon1;;;[];;;;text;t2_42s77sgl;False;False;[];;u/savevideo;False;False;;;;1610560838;;False;{};gj4w34h;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4w34h/;1610626547;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Someone = me, lol - -[here if anyone wants to see](https://www.reddit.com/r/anime/comments/i70r8k/the_ranking_of_the_romance_girls_per_number_of/?utm_medium=android_app&utm_source=share)";False;False;;;;1610560842;;False;{};gj4w3fq;False;t3_kwf0hk;False;True;t1_gj4gtaj;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4w3fq/;1610626553;1;True;False;anime;t5_2qh22;;0;[]; -[];;;QSCFE;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;ahhhhhhhhhhhhhhhhhh;dark;text;t2_uiudw;False;False;[];;"I don't have one anime but all my favorite anime (plural) I want to watch again like the first time. - -If I can chose only one I would chose Haikyuu, no wait I would chose ""Darling In The Franxx"" nooooo it's ""Attack On Titan"". fuck it I can't do that honestly.";False;False;;;;1610560959;;False;{};gj4wcus;False;t3_kwgf1t;False;True;t3_kwgf1t;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj4wcus/;1610626709;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Beninja_;;;[];;;;text;t2_3b96bqn9;False;False;[];;Damn lol I didn’t notice that;False;False;;;;1610561255;;False;{};gj4x0rt;False;t3_kwf0hk;False;True;t1_gj4r6yo;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4x0rt/;1610627104;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"&#x200B; - ->Such delusions god, sometimes i wonder if ppl watched the series correctly, never said i use slaves to do it , he just have one slave which iw there by her own will , she was free , but still returned , Naofumi would free her if he could. Do me a favore and just follow the link, so maybe they can clear things up. - -This is because A: the country treats slaves better than demi-humans. B: She has a psuedo-Stockholm syndrome, she gets from a worse place to a slightly worse place, the only person that's been ""good"" to her in this many years is Naofumi. If you've been treated like hell and someone just gives you basic decency, you're going to get attached to them because who else gives you ""affection"". - ->Oh god .... you know what ? I'm happy that japan didn't even give shit about this fanetic delusions, these knid of irrational and fanetic thoughts are the new versions of radicalism, i see no difference between them and ppl in the past who said womens shouldn't have a right to vote - -What do you even mean by radicalism? Even Japan should know that slaves are bad. Look at Nanking and Korea. - -&#x200B; - -Look at other shows that have problematic media (in parenthesis ) and see what happens if we remove their problematic media: - -* Sword Art Online (Sexual assault): The fundamental story is the same. -* Goblin Slayer (Rape scene): We aren't shown how bad the goblins are but, the overall story is still the same, a show about slaying goblins. -* Oreimo (Incest): It's a completely different show, just a comedy. -* Interspecies Reviewers (Intercourse): Less raunchy scenes, but the overall theme is there. - -Now take Shield Hero and remove slavery, what do we get? That's right, a completely different story. **Slavery is so intrinsically tied to the story of Shield Hero that removing it would become a different story.**";False;False;;;;1610561325;;False;{};gj4x6il;False;t3_kwgf1t;False;False;t1_gj4rvvi;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj4x6il/;1610627199;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fuckingtwatwaffle;;;[];;;;text;t2_9clsh89z;False;False;[];;"AND it's an early thing? -Fuck i've decided to take a break off of SoL's -But I think that i'm getting addicted to SoL's.";False;False;;;;1610561374;;False;{};gj4xab8;False;t3_kwf0hk;False;True;t1_gj4nksx;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4xab8/;1610627264;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fuckingtwatwaffle;;;[];;;;text;t2_9clsh89z;False;False;[];;"Ā bļe jasn. -Nu tad meklē tālāk, esmu pārliecināts ka ja meklēsi pietiekoši ilgi, tad kko atradīsi. -Good luck man.";False;False;;;;1610561507;;False;{};gj4xl63;False;t3_kwf0hk;False;True;t1_gj4pewn;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4xl63/;1610627448;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;Ashamed to admit, but same here.;False;False;;;;1610561541;;False;{};gj4xnx9;False;t3_kwdcu0;False;False;t1_gj4aauh;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj4xnx9/;1610627495;25;True;False;anime;t5_2qh22;;0;[]; -[];;;fuckingtwatwaffle;;;[];;;;text;t2_9clsh89z;False;False;[];;"""It too"" - - -**Poggers moment.**";False;False;;;;1610561553;;False;{};gj4xowa;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4xowa/;1610627511;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bluepsycho65;;;[];;;;text;t2_3exex6qy;False;False;[];;Oh;False;False;;;;1610561651;;False;{};gj4xwwh;False;t3_kwf0hk;False;True;t1_gj4flom;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4xwwh/;1610627644;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NamiRocket;;;[];;;;text;t2_12x5rx;False;False;[];;It's great. The whole weird sci-fi slant of the premise is there pretty much just to put the characters in situations that really make them question who they are. You get to see them become closer or further from one another based on what is happening to them and there is a lot of banter about what makes a person who they are. It's definitely not the show this clip portrays it to be, yeah.;False;False;;;;1610561677;;False;{};gj4xyzn;False;t3_kwf0hk;False;True;t1_gj4mnqo;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4xyzn/;1610627680;2;True;False;anime;t5_2qh22;;0;[]; -[];;;INSERT_LATVIAN_JOKE;;;[];;;;text;t2_wnpe5;False;False;[];;Thanks for the assist spellcheck-kun.;False;False;;;;1610561712;;False;{};gj4y1v6;False;t3_kwf0hk;False;True;t1_gj4vjk5;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4y1v6/;1610627729;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;And they probably haven’t acquired many more since the buyout. Like last minute contracts and stuff to bolster the season.;False;False;;;;1610561804;;False;{};gj4y9ek;False;t3_kwfbbg;False;True;t1_gj4uxdo;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj4y9ek/;1610627909;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JesterTheZeroSet;;;[];;;;text;t2_o3za1;False;False;[];;"This action was performed by a bot - -Bee boo bop";False;False;;;;1610562009;;False;{};gj4ypwo;False;t3_kwf0hk;False;True;t1_gj4y1v6;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4ypwo/;1610628210;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Snook0116;;;[];;;;text;t2_5s4kzka6;False;False;[];;What event is being foreshadowed?;False;False;;;;1610562288;;False;{};gj4zd36;False;t3_kwgxsv;False;False;t1_gj4mgna;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj4zd36/;1610628641;10;True;False;anime;t5_2qh22;;0;[]; -[];;;SkyLETV;;MAL;[];;https://myanimelist.net/profile/SkyLETV;dark;text;t2_bn8y64t;False;False;[];;That thumbnail is definitely doing its job, damn!;False;False;;;;1610562304;;False;{};gj4zefz;False;t3_kwdcu0;False;False;t3_kwdcu0;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj4zefz/;1610628671;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;">Now take Shield Hero and remove slavery, what do we get? That's right, a completely different story. Slavery is so intrinsically tied to the story of Shield Hero that removing it would become a different - -Not at all, you can just transform Raphtalia to an orphan girl who is escaping from some bad ppl. - ->Even Japan should know that slaves are bad. - -They won't consider this as slavery cause they are more openminded than that, unfortunately some ppl think their culture is the chosen one so they will just accuse Japan. But you know what ? Think what you want, idc anymore cause there's no point in talking to irrational ppl, these ppl clearly don't understand how ridiculous these claimes are, Japanese don't care they will make 2 more seasons , and haters can whine as much as they want, and judge the poor author, don't even think these guys are majority, they are just loud. So i will just enjoy this anime before some closeminded idiots try to forbid false accusations in anime. Also check the link, have a good day.";False;False;;;;1610562460;;False;{};gj4zr51;False;t3_kwgf1t;False;True;t1_gj4x6il;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj4zr51/;1610628890;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nik1_for;;;[];;;;text;t2_n1r106n;False;False;[];;My crush accidentally sent me the second clip.;False;False;;;;1610562493;;False;{};gj4ztvt;False;t3_kwf0hk;False;True;t1_gj4781x;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj4ztvt/;1610628936;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blueteenight;;;[];;;;text;t2_11kek1;False;False;[];;I see, thank you for clarifying!;False;False;;;;1610562583;;False;{};gj5013c;False;t3_kwfdon;False;True;t1_gj4tmvm;/r/anime/comments/kwfdon/do_i_need_to_watch_fma_before_fmab/gj5013c/;1610629059;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tomicida;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Tomicida/;light;text;t2_9gtm6;False;False;[];;"I'd Say **Chiayafuru** and **Fune wo Amu**. - -Not exactly the same style, but very enjoyable nonetheless.";False;False;;;;1610562717;;False;{};gj50bwg;False;t3_kwg89f;False;True;t3_kwg89f;/r/anime/comments/kwg89f/anime_similar_to_sangatsu_no_lion/gj50bwg/;1610629268;3;True;False;anime;t5_2qh22;;0;[]; -[];;;whydanny;;;[];;;;text;t2_f53dz;False;False;[];;Honestly I like anime but this specific clip borders on cringe for me and is enough for me to know I won’t watch the anime. The dialogue is inept and it’s just not funny, even after reading an explanation below for context. The amount of people here that seem to think it’s funny is alarming. That’s just my opinion, however - Watch what you like.;False;False;;;;1610562719;;False;{};gj50c2f;False;t3_kwf0hk;False;True;t1_gj4kwto;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj50c2f/;1610629270;0;True;False;anime;t5_2qh22;;0;[]; -[];;;RicoSuave1881;;;[];;;;text;t2_xeg6q;False;False;[];;It was actually really popular when it came out but then the voice actors did something suuuuuuper shitty and the second season got canceled;False;False;;;;1610563086;;False;{};gj51638;False;t3_kwf0hk;False;True;t1_gj3t6bk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj51638/;1610629810;9;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;Damn, didn't know that;False;False;;;;1610563159;;False;{};gj51bvz;False;t3_kwf0hk;False;True;t1_gj51638;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj51bvz/;1610629911;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Taltibalti;;;[];;;;text;t2_srbia13;False;False;[];;Something about a character in this video that happened in s3p2;False;False;;;;1610563218;;False;{};gj51gk7;False;t3_kwgxsv;False;False;t1_gj4zd36;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj51gk7/;1610629994;6;True;False;anime;t5_2qh22;;0;[]; -[];;;LegendaryRQA;;;[];;;;text;t2_hszyq;False;False;[];;"You don’t need to but you probably should. - -The first 25 episodes of 2003 and the first 13 episodes of brotherhood are pretty much the same but because there’s literally twice as much content it follows the manga more closely, Before diverging. Personally I recommend people to watch both because you just get more FMA that way";False;False;;;;1610563295;;False;{};gj51n7m;False;t3_kwfdon;False;False;t3_kwfdon;/r/anime/comments/kwfdon/do_i_need_to_watch_fma_before_fmab/gj51n7m/;1610630113;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Frangin1;;;[];;;;text;t2_1fe9ly4s;False;False;[];;Dude I watched this anime yet I don't even remember its end since it was so disappointing to me… This scene was good although.;False;False;;;;1610563468;;False;{};gj52198;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj52198/;1610630357;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ReeseEseer;;;[];;;;text;t2_16m4jf;False;False;[];;EZ has literally nothing to do with FT. At all.;False;False;;;;1610563496;;False;{};gj523jy;False;t3_kwdcu0;False;False;t1_gj3sei8;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj523jy/;1610630395;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Lyfultruth;;;[];;;;text;t2_hbvnc;False;False;[];;"[Spoiler for Season 3 Ending](/s ""I think it's when Armin is literally burning alive by the Colossal Titan, then Levi wants to give the power to Erwin instead. Essentially stealing the fire that keeps Armin warm/alive."")";False;False;;;;1610563503;;False;{};gj5243i;False;t3_kwgxsv;False;False;t1_gj4zd36;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj5243i/;1610630404;23;True;False;anime;t5_2qh22;;0;[]; -[];;;pedrao_herminio;;;[];;;;text;t2_2ta7ozyt;False;False;[];;"Honestly, that was the reason for watching this anime -I do not regret";False;False;;;;1610563517;;False;{};gj5258t;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5258t/;1610630427;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZeR_o_002;;;[];;;;text;t2_9g72zfxe;False;False;[];;sauce;False;False;;;;1610563605;;False;{};gj52cgt;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj52cgt/;1610630566;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;Kokoro connect;False;False;;;;1610563625;;False;{};gj52e4v;True;t3_kwf0hk;False;True;t1_gj52cgt;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj52e4v/;1610630596;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SMA2343;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/HispanicName;light;text;t2_6xzja;False;False;[];;"Because it’s called exclusives. Just like video games, either Funimation, crunchyroll or even Netflix get those exclusive rights. - -Cells at Work/Code Black are both on Funimation, as well as Kemono Jehin. - -It sucks. But that’s competition";False;False;;;;1610563790;;False;{};gj52rmg;False;t3_kwfbbg;False;True;t3_kwfbbg;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj52rmg/;1610630844;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kiraa_1-1;;;[];;;;text;t2_9sz1zuwm;False;False;[];;Whats the name of this anime ?Looks interesting;False;False;;;;1610564040;;False;{};gj53c0n;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj53c0n/;1610631243;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;Kokoro Connect;False;False;;;;1610564846;;False;{};gj555w4;True;t3_kwf0hk;False;True;t1_gj53c0n;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj555w4/;1610632538;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kiraa_1-1;;;[];;;;text;t2_9sz1zuwm;False;False;[];;can we watch it on netflix?;False;False;;;;1610564916;;False;{};gj55bm6;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj55bm6/;1610632641;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;">Not at all, you can just transform Raphtalia to an orphan girl who is escaping from some bad ppl. - -If only Raphtalia was an orphan. Oh yea she was captured to become a slave, also how would she have gone to the country? - ->They won't consider this as slavery cause they are more openminded than that, unfortunately some ppl think their culture is the chosen one so they will just accuse Japan. But you know what ? Think what you want, idc anymore cause there's no point in talking to irrational ppl, these ppl clearly don't understand how ridiculous these claimes are, Japanese don't care they will make 2 more seasons , and haters can whine as much as they want, and judge the poor author, don't even think these guys are majority, they are just loud. So i will just enjoy this anime before some closeminded idiots try to forbid false accusations in anime. Also check the link, have a good day. - -A: From the original web novel so the author's intent is clear: [https://ncode.syosetu.com/n3009bk/9/](https://ncode.syosetu.com/n3009bk/9/) - ->奴隷とは、人間でありながら所有の客体即ち所有物とされる者を言う。人間としての名誉、権利・自由を認められず、他人の所有物として取り扱われる人。所有者の全的支配に服し、労働を強制され、譲渡・売買の対象とされた。 -> -> 確かウィキペディアにそんな記事が書いてあった覚えがある。 -> -> この世界は奴隷の販売もあるのか。 - -Last time I checked, 奴隷 meant slave, explicitly, in Japanese. Check the other chapters, translate it. It doesn't get more clear than ""these are slaves"". This paragraph explains slavery exists in the world. - -B: I love Japanese culture, which includes their clothing, food, writing, attitude, etc. However some parts of the culture can be problematic. Recreational drugs are part of the rave culture, and performance enhancing drugs are part of the sports culture. It doesn't mean it's totally okay to do it. Just because something is 'part' of a culture does not mean it's accepted. - -C: Why am I close-minded? I went through the history of slavery in america and in japan, I think I have a good perspective of what's good and what's bad. I can back up my sources with history and analysis of the book. Your sources are just from the anime.";False;False;;;;1610565205;;False;{};gj55yxn;False;t3_kwgf1t;False;True;t1_gj4zr51;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj55yxn/;1610633086;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"u/Ssalari - -D: You keep mentioning the link, I've seen it, which I have said before. - -Let me bust the myths: - ->Honestly, everything about it is the standard playbook of the SJW outrage pattern. What disgusts me most about the controversy is that no one goes to the level of actually looking any further than the surface and makes up their mind entirely and because they’re SJWs, that means that even so much as the slightest disagreement, even if to raise a valid point makes you a misogynist. But then, this is nothing new. SJWs and feminists *of this era* aren’t about depth — they’re about the recreational search for things to complain about, then weaving their own ultra-contrived narratives around it and proclaiming by fiat that these are true because they were examined under the “proper” lens. That’s why the SJW has transformed from someone who fought against racial segregation to someone who claims PTSD from micro-agressions because people are too cis-gender normative. It’s why feminism has gone from fighting for the right to vote to fighting against the evil scourge of manspreading. - -Strawman, this whole thing just attacks ""SJWs"" and is filler for the actual post. - -&#x200B; - ->What the absurd outrage leaves out is that Naofumi is not ever interested in treating Raphtalia as a slave. The very first thing he does is nurse her back to health, feed her, buy her equipment, etc. And while he feels the necessity of using the power of that contract for a time, - -As any decent human should, is this supposed to be a good point? Matter of fact is that HE BOUGHT HER. - -> there’s eventually a turning point where he backs away and AFAICT, never uses it again. Beyond a certain point, she never refers to him as “Master”, and calls him Naofumi from that point onward. - -Once again, basic human decency. - ->Beyond a certain point, Raphtalia is the one looking after *him* and protecting *him* and he is the one completely reliant on her strength never forcing anything. Even when she is forcibly freed from her contract, she argues vehemently in Naofumi’s defense, moving him to weep openly in her arms. -> ->In effect, the use of “slavery” becomes nothing more than slavery on paper, and the real nature of their relationship can’t be described as anything other than filial. - -This is still slavery, this is what pro-slave people in america are trying to rewrite history. ""They were treated nicely"" - -> This is still little comfort to those who just recoil at the idea of slavery and the fact that the start of this relationship was a slave+owner dynamic, but in a lot of ways, I suspect that the sole reason why slavery even comes up is because there’s really no other way to write that. The storyline is that Naofumi is disgraced because of the false rape accusation and has to take a less-than-honorable path to gain fighting strength. The storyline continues that Naofumi is later faced with further chastisement from the other heroes and the royals because of his less-than-honorable path… what else can you think of besides slavery that fits that description? - -Or you know, you can write a story that doesn't involve a false rape accusation and no slavery. - ->Getting back to Myne and the false rape accusation… this one might let out quite a few spoilers, so fair warning. It is true that real-life fake accusations of rape are few and far between, and so using it in this way seems rather severe. There is, however, more to it than that. One facet is that a lot of the outrage seemed to think (or, I should say, presumed and proclaimed as an absolute truth) that the depiction of Myne as a manipulative bitch who would go as far as to stage a phony rape charge is a sign that the writer(s) is/are wholly misogynistic and Myne is their archetypal depiction of all women. -> ->This of course, leaves out the very existence of Raphtalia. It leaves out the nature of the Queen and her body doubles. It leaves out Melty, who appears later in the story. It also ignores finer details which I’ll get to in a bit. - -False rape accusations de-legitizes actual rape accusations as said before. - ->One thing that is stated when the rape charge comes out is that within their kingdom, sexual assault of women is the ultimate taboo. Also, it is later revealed in the manga (don’t know if the anime has gotten that far yet as I haven’t seen much of it), that the kingdom is both matriarchal and matrilineal. The queen has more power than the king, but that also means the queen is also more active in diplomacy, thereby leaving the king as acting monarch at home while she is away giving the impression that it’s the usual patriarchal society. This is a place where a woman’s body is considered the highest and most sacred of things. In other words, **the story is set in an environment in which a woman getting away with a false rape charge is** ***incredibly*** **easy.** While that doesn’t really explain away why the author(s) used it so early (which I feel is a valid criticism), it does mean that if you wanted to disgrace a man in this world, a phony rape accusation is a pretty easy way of going about it. - -Or just not write a story with false rape accusations, it's actually really easy, They had to stick in a false rape accusation. - ->Now for all that, I do feel that a legitimate criticism is that there could have been many ways to create that or to disgrace and globally ostracize Naofumi in the eyes of all the citizenry. Why use phony rape? Also, the fact that it reached that point so soon is pretty jarring. Normally, you’d expect a great deal of build-up to get to a measure as extreme as that. My belief on this is that there was just a much larger story that the writers wanted to weave, and setting up Naofumi to be disgraced as he was needed to happen soon so that the larger story could actually be told and the deeper details of that setup could unfold in that style of story-telling wherein you the reader are becoming privy to it at the same time that the protagonist is. Creating a world in which getting away with such charges is easy is just the way they make sense of it slipping through so easily. Yes, you can call it lazy writing if you like, but it’s lazy with a purpose… and it certainly isn’t misogyny. - -There it is, they even admit it's lazy writing, lazy with a purpose is oxymoronic. What's the easiest way to make someone hate a character, have them commit an act of sexual violence (males)/false-rape accusation(females). I've read ahead and the false rape accusation is not major in any way shape or form.";False;False;;;;1610565216;;False;{};gj55zvx;False;t3_kwgf1t;False;True;t1_gj55yxn;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj55zvx/;1610633103;1;True;False;anime;t5_2qh22;;0;[]; -[];;;peppipeps;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_10pi7p;False;False;[];;My favorite is the scene with the kiss from Taichi's sister;False;False;;;;1610565420;;False;{};gj56gol;False;t3_kwf0hk;False;True;t1_gj3sc09;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj56gol/;1610633421;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"That is exactly right 👈🏼 - -(we really need a commentface of that scene lol)";False;False;;;;1610565543;;False;{};gj56qqb;False;t3_kwgxsv;False;False;t1_gj4l285;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj56qqb/;1610633606;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Uniqueusername2222;;;[];;;;text;t2_148ouj;False;False;[];;I never said it wasn’t good he just has no reason to watch it the full and correct story is FMAB not FMA that’s my reasoning a new comer doesn’t need to watch fma unless they have a itch after finishing fmab;False;False;;;;1610566125;;False;{};gj582kd;False;t3_kwfdon;False;True;t1_gj4j1tl;/r/anime/comments/kwfdon/do_i_need_to_watch_fma_before_fmab/gj582kd/;1610634545;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ren_ig;;;[];;;;text;t2_7do00ezn;False;False;[];;To all of you who didn't watch Kokoro connect or the missed the 4 ova eps if you watched as it came out, please do go watch it, it's a treat especially the last 4 eps though during the 1st to eps it does feel like nothing happens.;False;False;;;;1610566235;;False;{};gj58c1i;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj58c1i/;1610634733;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tj4y;;;[];;;;text;t2_3gu2v5jv;False;False;[];;The show itself is a masterpiece, really sad the producers fucked up.;False;False;;;;1610566342;;False;{};gj58kq7;False;t3_kwf0hk;False;True;t1_gj41hez;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj58kq7/;1610634913;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tj4y;;;[];;;;text;t2_3gu2v5jv;False;False;[];;Instantly looked up from my phone at my figma version of him and shit you're right. Time to make this one into a custom inaba figma.;False;False;;;;1610566441;;False;{};gj58t1k;False;t3_kwf0hk;False;True;t1_gj48187;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj58t1k/;1610635074;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ZETH_27;;;[];;;;text;t2_cv5r2aa;False;False;[];;Its, its literally in the name of the post.;False;False;;;;1610566492;;False;{};gj58x7r;False;t3_kwf0hk;False;True;t1_gj53c0n;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj58x7r/;1610635153;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Tj4y;;;[];;;;text;t2_3gu2v5jv;False;False;[];;"hahahahahahahahahahahaha very funny joke you are a comedic genius pleas continue to entertain me with your jokes. - -^please ^read ^in ^the ^most ^monotone ^voice ^possible";False;False;;;;1610566546;;False;{};gj591iw;False;t3_kwf0hk;False;True;t1_gj4f4fd;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj591iw/;1610635231;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PhenomsServant;;;[];;;;text;t2_xladq;False;False;[];;Yes. Yes she is. And shes got a great ass.;False;False;;;;1610566549;;False;{};gj591sn;False;t3_kwdcu0;False;False;t1_gj45rn2;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj591sn/;1610635238;14;True;False;anime;t5_2qh22;;0;[]; -[];;;inception900;;;[];;;;text;t2_6h9lp4z9;False;True;[];;And this is why I love inaba;False;False;;;;1610567037;;False;{};gj5a523;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5a523/;1610636015;1;True;False;anime;t5_2qh22;;0;[]; -[];;;captainAwesomePants;;;[];;;;text;t2_34jj1;False;True;[];;On the other hand, he also attempts to cure her androphobia by kicking her in the nuts.;False;False;;;;1610567207;;False;{};gj5ailv;False;t3_kwf0hk;False;True;t1_gj4mnqo;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5ailv/;1610636284;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;"You know youre actually misunderstanding and ignroing all of my points amn just using the words that it is slavery, you are closeminded cause you consider every thing supporting slavery, you are so seneitive about media's effect like those ppl who wants to ban video games cause they think it makes childrens to have violentic behavior, Japanese ppl doesn't see this as supporting slavery because of all of the things i mentioned and you just ignored or made some poor excuses for it and only foucesing on why Raphtalia still have her crest, ignoring that Naofumi told her there's no need, and it was only her choice, you guys just stick to the name of slave and ignoring that Naofumi doesn't even care that she is slave or not, it's nothing but some formal pact with no meaning for him , i didn't find any rationality in your response to ppl who expressed their opinion in Quora. Like you said don't write a story with false accusation, you are taking the freedom from author, he didn't insulted anyone, it's a story, media has effects but this is not criticising the effects, it's being fanetic about something. - -Also about Raphtalia yes i agree, i was misatken and if she wasn't captured as slave it would change the story alot, but the story is not based on slavery, the author could change the plot in a way that Naofumi try to release the crest, but he didn't and it makes more sense, Naofumi was knid of Anti hero in the start, you saw that when he wanted to help ppl he asked for rewards first, he wasn't genuinely bad but he had some complexes and decided to have that anti hero picture, same logic goes for slavery part. Unfotunately you guy didn't understand his character at all, that he tried to act bad from purpose even though he was better than other heroes, he wanted to have that bad image, it was never in support of slavery it was part of his chracter to do things that aren't good and aren't socialy accepted. I suggest you read the novel or watch the series again, before acting like a SJWs and wasting my time, i won't continue this discussion cause there's no point have a good day.";False;False;;;;1610567229;;1610568287.0;{};gj5akft;False;t3_kwgf1t;False;False;t1_gj55yxn;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj5akft/;1610636321;1;True;False;anime;t5_2qh22;;0;[]; -[];;;teskar2;;;[];;;;text;t2_292gugxe;False;False;[];;It’s a shame this was canceled cause the staff went out there to publicly humiliate an aspiring voice actor trying to make a living.;False;False;;;;1610567240;;1610567446.0;{};gj5alb7;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5alb7/;1610636336;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Stomco;;;[];;;;text;t2_1dalujth;False;False;[];;Are those normal pounds or 10x gravity pounds?;False;False;;;;1610567360;;False;{};gj5av36;False;t3_kwf0hk;False;True;t1_gj4fu1k;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5av36/;1610636536;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Stomco;;;[];;;;text;t2_1dalujth;False;False;[];;You'll have to watch Maidens in your savage season for that.;False;False;;;;1610567624;;False;{};gj5bh4j;False;t3_kwf0hk;False;True;t1_gj46qq2;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5bh4j/;1610636981;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ben99ny22;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ben99ny;light;text;t2_14rmpidg;False;False;[];;i've had disney plus and you can get hulu with it for just 13 dollars altogether.;False;False;;;;1610567669;;False;{};gj5bkti;False;t3_kwfbbg;False;True;t1_gj4i529;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj5bkti/;1610637063;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KitKat1721;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;http://myanimelist.net/animelist/KattEliz;light;text;t2_98x0h;False;False;[];;CR has still been licensing plenty of titles, including a lot under their own production umbrella (from full originals to co-pros), but I think Funimation has also really been stepping up their licensing selection for a few seasons now. The majority of shows I watched the past year were Funi-licensed (Fruits Basket, Akudama Drive, Kakushigoto, Wave Listen to Me, Deca-Dence, Higurashi, Taiso Samurai, a bunch I’m forgetting right now, etc...);False;False;;;;1610567759;;False;{};gj5bs4s;False;t3_kwfbbg;False;True;t3_kwfbbg;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj5bs4s/;1610637207;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;There's a manga version of this;False;False;;;;1610567766;;False;{};gj5bso2;False;t3_kwgxsv;False;False;t1_gj4hr26;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj5bso2/;1610637220;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Clemenx00;;;[];;;;text;t2_i99bz;False;False;[];;"I don't mind about competiton but why the fuck is region locking a thing. - -Funimation is only available in 2 countries in my region whereas Crunchyroll serves the whole of Latin America. I don't understand. - -There is literally no legal way for me to watch Funimation shows.";False;False;;;;1610567948;;False;{};gj5c7v7;False;t3_kwfbbg;False;True;t3_kwfbbg;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj5c7v7/;1610637507;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Silverkira;;;[];;;;text;t2_13ihl1;False;False;[];;damn Armin likes HEAT.;False;False;;;;1610568212;;False;{};gj5ctb0;False;t3_kwgxsv;False;False;t3_kwgxsv;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj5ctb0/;1610637935;16;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610568292;;1610583135.0;{};gj5czpt;False;t3_kwgxsv;False;True;t1_gj5ctb0;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj5czpt/;1610638061;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Silverkira;;;[];;;;text;t2_13ihl1;False;False;[];;Isayama definitely gave advice in this show too, he likes to do this kind of fun stuff.;False;False;;;;1610568316;;False;{};gj5d1ju;False;t3_kwgxsv;False;False;t1_gj4mgna;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj5d1ju/;1610638095;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MinHasNoLife;;;[];;;;text;t2_62fjj3e3;False;False;[];;Only the best spinoff of this millennium.;False;False;;;;1610568400;;False;{};gj5d8b8;True;t3_kwgxsv;False;False;t1_gj4hr26;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj5d8b8/;1610638223;10;True;False;anime;t5_2qh22;;0;[]; -[];;;shadiskeith;;;[];;;;text;t2_7741bk1g;False;False;[];;u/savevideo;False;False;;;;1610568559;;False;{};gj5dkxh;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5dkxh/;1610638465;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Diablo69420;;;[];;;;text;t2_5rnz8jb8;False;False;[];;In the lockdown I somehow lost interest in watching anime...watched like 5 in total including the seasonal animes;False;False;;;;1610568610;;False;{};gj5dowx;False;t3_kwf0hk;False;True;t1_gj45786;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5dowx/;1610638541;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;Adding, Hulu runs 1$ promotions all the time and comes with Spotify so most people pay little to nothing for it;False;False;;;;1610569121;;False;{};gj5etbo;False;t3_kwfbbg;False;True;t1_gj5bkti;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj5etbo/;1610639322;1;True;False;anime;t5_2qh22;;0;[]; -[];;;stevenGtheking;;;[];;;;text;t2_9pu9fyo1;False;False;[];;Jeeez;False;False;;;;1610569139;;False;{};gj5eute;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5eute/;1610639352;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Left-Chance-4564;;;[];;;;text;t2_7p92oo57;False;False;[];;God I wish they will continue the sequels of junior high after the main series ends[.](https://high.It) It was genuinely wholesome and funny.;False;False;;;;1610569315;;False;{};gj5f93x;False;t3_kwgxsv;False;False;t3_kwgxsv;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj5f93x/;1610639626;8;True;False;anime;t5_2qh22;;0;[]; -[];;;IvanTail;;;[];;;;text;t2_72g2sa9;False;False;[];;"Why wouldn't Happy get the same actor? It's like saying Duck Dodgers shouldn't be Daffy Duck. - -Shiki and Rebecca get different actors, of course. It's not like they're carbon copies of Natsu and Lucy.";False;False;;;;1610570012;;False;{};gj5gszp;False;t3_kwdcu0;False;False;t1_gj3upi2;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj5gszp/;1610640736;18;True;False;anime;t5_2qh22;;0;[]; -[];;;IvanTail;;;[];;;;text;t2_72g2sa9;False;False;[];;God, those subs are crap.;False;False;;;;1610570208;;False;{};gj5h8lh;False;t3_kwdcu0;False;True;t3_kwdcu0;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj5h8lh/;1610641042;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610570473;;False;{};gj5hu8h;False;t3_kwgxsv;False;True;t1_gj4sq12;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj5hu8h/;1610641453;2;True;False;anime;t5_2qh22;;0;[]; -[];;;81Ranger;;;[];;;;text;t2_fgx7gw;False;False;[];;Looks like generic isekai number 512 is dropping.;False;True;;comment score below threshold;;1610570667;;False;{};gj5i9ue;False;t3_kwdcu0;False;True;t3_kwdcu0;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj5i9ue/;1610641768;-14;True;False;anime;t5_2qh22;;0;[]; -[];;;mudermarshmallows;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Hazok;light;text;t2_gpemp;False;False;[];;Not absolutely everything was planned, but he's had most of the major beats planned from the start at least.;False;False;;;;1610570786;;False;{};gj5ijfu;False;t3_kwgxsv;False;False;t1_gj4sb0w;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj5ijfu/;1610641959;16;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610570859;;False;{};gj5ipe0;False;t3_kwf0hk;False;True;t1_gj44ep8;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5ipe0/;1610642075;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TenderNibbIes;;;[];;;;text;t2_2wwq78rn;False;False;[];;Yeah I forget what the title says as soon as I open a post;False;False;;;;1610570896;;False;{};gj5is9p;False;t3_kwf0hk;False;True;t1_gj4lrse;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5is9p/;1610642132;2;True;False;anime;t5_2qh22;;0;[]; -[];;;wjodendor;;;[];;;;text;t2_f2f741;False;False;[];;Not an isekai. Its a sci fi series.;False;False;;;;1610570932;;False;{};gj5iv9n;False;t3_kwdcu0;False;False;t1_gj5i9ue;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj5iv9n/;1610642191;14;True;False;anime;t5_2qh22;;0;[]; -[];;;thecrazyrai;;;[];;;;text;t2_djiay1i;False;False;[];;but why is it this similar to begin?;False;False;;;;1610571028;;False;{};gj5j30t;False;t3_kwdcu0;False;True;t1_gj5gszp;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj5j30t/;1610642345;1;True;False;anime;t5_2qh22;;0;[]; -[];;;81Ranger;;;[];;;;text;t2_fgx7gw;False;False;[];;Coulda fooled me.;False;True;;comment score below threshold;;1610571604;;False;{};gj5kdb3;False;t3_kwdcu0;False;True;t1_gj5iv9n;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj5kdb3/;1610643251;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;Ghost_Reaper0225;;;[];;;;text;t2_45uaigia;False;False;[];;I’ve been to 0 cons and I gotta say, you guys don’t have a smell at all.;False;False;;;;1610571813;;False;{};gj5ku1c;False;t3_kwf0hk;False;True;t1_gj4oo72;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5ku1c/;1610643563;0;True;False;anime;t5_2qh22;;0;[]; -[];;;NapaSinitro;;;[];;;;text;t2_1ncuzeer;False;False;[];;Wait didn't she bully that young VA? Or was she one of the few that didn't I don't remember who did it;False;False;;;;1610572178;;False;{};gj5lmyw;False;t3_kwf0hk;False;True;t1_gj4n8kp;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5lmyw/;1610644116;1;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 200, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Call an ambulance, I'm laughing too hard."", 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/2jd92wtn25g41_ImDeceased.png', 'icon_width': 2048, 'id': 'award_b28d9565-4137-433d-bb65-5d4aa82ade4c', 'is_enabled': True, 'is_new': False, 'name': ""I'm Deceased"", 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/2jd92wtn25g41_ImDeceased.png?width=16&height=16&auto=webp&s=3f6534cdb236717698fb32fdac05a0cb8a9d9b80', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/2jd92wtn25g41_ImDeceased.png?width=32&height=32&auto=webp&s=90affa57f358a1bcfb77226ef3ae13e5ae909cd1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/2jd92wtn25g41_ImDeceased.png?width=48&height=48&auto=webp&s=8edd0f4ef9ade0afbf0432c8e94a7dcd3cd1ccf2', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/2jd92wtn25g41_ImDeceased.png?width=64&height=64&auto=webp&s=07c9216b7e1e2c6949431e7fe7a552bb4684201b', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/2jd92wtn25g41_ImDeceased.png?width=128&height=128&auto=webp&s=36a96b04aad18511ecdaf474e4edf7271bad6b07', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/2jd92wtn25g41_ImDeceased.png?width=16&height=16&auto=webp&s=3f6534cdb236717698fb32fdac05a0cb8a9d9b80', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/2jd92wtn25g41_ImDeceased.png?width=32&height=32&auto=webp&s=90affa57f358a1bcfb77226ef3ae13e5ae909cd1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/2jd92wtn25g41_ImDeceased.png?width=48&height=48&auto=webp&s=8edd0f4ef9ade0afbf0432c8e94a7dcd3cd1ccf2', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/2jd92wtn25g41_ImDeceased.png?width=64&height=64&auto=webp&s=07c9216b7e1e2c6949431e7fe7a552bb4684201b', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/2jd92wtn25g41_ImDeceased.png?width=128&height=128&auto=webp&s=36a96b04aad18511ecdaf474e4edf7271bad6b07', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/2jd92wtn25g41_ImDeceased.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}, {'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 2, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Shows the Silver Award... and that's it."", 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'icon_width': 512, 'id': 'gid_1', 'is_enabled': True, 'is_new': False, 'name': 'Silver', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;fightmeinspace;;;[];;;;text;t2_vfo5x;False;False;[];;I imagine a lot of things could fool you;False;False;;;;1610572251;;False;{'gid_1': 2};gj5lsw4;False;t3_kwdcu0;False;False;t1_gj5kdb3;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj5lsw4/;1610644229;15;True;False;anime;t5_2qh22;;3;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610572439;;False;{};gj5m8uo;False;t3_kwf0hk;False;True;t1_gj46uif;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5m8uo/;1610644538;0;True;False;anime;t5_2qh22;;0;[]; -[];;;j9162;;;[];;;;text;t2_rkowu;False;False;[];;">But is the story better? - -Yes, by a lot. Also, to quell any concerns about any potential ""power of friendship"" power ups, they don't exist. In fact, the author kind of makes fun of it in the writing through his MC. The MC definitely wants to make friends with people, but in no way does he power up from that and there's been some pretty good reality checks for when even making friends isn't happening lol. There's also just generally more consequences to actions and the world is darker overall. This is a far cry from the ending of FT that many had issues with. Think instead that it's the best aspects of Rave and FT in one. - -The only thing that some people tend to nitpick on is character designs, but this seems to be a newer trend. FT didn't get those complaints when Rave existed before it, and you didn't used to see Toriyama or Oda getting that type of treatment for recycled designs either. Although, I've read with newer content they have. Maybe it's an internet thing and people are more exposed to similar character designs of long-term mangaka/artists now and are more prone to complaining about artist styles or something, idk. - -At any rate, the characters are all very different. Happy is the only one that you could point to as most similar in character, but that's a deliberate choice as a mascot in Mashima's stories. Similar to Plue in Rave and FT. Happy also isn't as prominent a mascot in this case either. His new original mascot character takes that role and does a really great job of it. Second to that, you'll see ""look it's Erza"" comments from people who know only the designs, but when you read/watch it you'll see it really isn't her. And she's in maybe a tenth of the chapters max so there's that too. Very much a side support character.";False;False;;;;1610572519;;1610602798.0;{};gj5mfmz;False;t3_kwdcu0;False;False;t1_gj4d9tg;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj5mfmz/;1610644671;11;True;False;anime;t5_2qh22;;0;[]; -[];;;81Ranger;;;[];;;;text;t2_fgx7gw;False;False;[];;Ah , I see. OP protagonist wandering around around medieval world, but it’s sci fi. So, basically isekai idea with but no truck accident, instead spaceship. So, sci fi window dressing with same idea.;False;True;;comment score below threshold;;1610572624;;False;{};gj5mog2;False;t3_kwdcu0;False;True;t1_gj5lsw4;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj5mog2/;1610644855;-15;True;False;anime;t5_2qh22;;0;[]; -[];;;lTSyoBOIblainO;;;[];;;;text;t2_7kqr7t69;False;False;[];;For lazy people {kokoro connect};False;False;;;;1610572775;;False;{};gj5n1bt;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5n1bt/;1610645112;1;True;False;anime;t5_2qh22;;0;[]; -[];;;j9162;;;[];;;;text;t2_rkowu;False;False;[];;">Well the reason I said its a replica is because the characters are basically the same except for some minor changes. And from what I know the author's best project is fairy tell (correct me if I'm wrong) but it still worth the try (i guess) - -This here is a baseless statement about multiple series you've never read or watched as you proceed to admit in your edit. - ->Its not like I have read the manga or seen the anime (if there's any). i just stated my opinion nothing else. But its a bit exciting to get down voted XD - -You were downvoted because you claimed knowledge of characters being the same when you actually don't have that knowledge or any knowledge about the topic whatsoever.";False;False;;;;1610572847;;False;{};gj5n7dh;False;t3_kwdcu0;False;False;t1_gj3po7l;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj5n7dh/;1610645224;8;True;False;anime;t5_2qh22;;0;[]; -[];;;absolutelyfat;;;[];;;;text;t2_131qbq;False;False;[];;Amazing;False;False;;;;1610572868;;False;{};gj5n92n;False;t3_kwf0hk;False;True;t1_gj49hd4;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5n92n/;1610645255;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cereal3friend;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/cerealfriend;dark;text;t2_17xqgp98;False;False;[];;The author likes to include references like this to get his fans check out his other series. Is it lazy? Maybe, I guess. But I think it’s kinda cool, like Erza is actually an actor playing to different roles lol. No different than actors in real life tbh. So really hope they all do share the same voice actors.;False;False;;;;1610572976;;False;{};gj5ni5h;False;t3_kwdcu0;False;False;t1_gj5j30t;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj5ni5h/;1610645429;5;True;False;anime;t5_2qh22;;0;[]; -[];;;IvanTail;;;[];;;;text;t2_72g2sa9;False;False;[];;"For one, branding. You take one look at the designs and you know it's by Hiro Mashima. It's a common occurrence among Japanese artists; take a look at Akira Toriyama's works that are unrelated to Dragon Ball, or the works of Rumiko Takahashi (Inuyasha) and Leiji Matsumoto (Captain Harlock). - -As for Happy (and at least two others), certain artists like to use ""star systems"" where they treat their characters like directors would recurring actors across their productions; the most famous example would be Osamu Tezuka, the ""grandfather of manga"" and creator of Astro Boy, Metropolis, and Dororo. - -Mashima was also largely influenced by JRPGs, so there's a good chance that series like Final Fantasy--each game being set in a different world with a different story, but still having recurring characters and elements--rubbed off on him in that regard. - -And for a personal conclusion of mine, he also does it to toy with reader expectations. Fairy Tail has gotten so ingrained in people's minds that they have a firm idea of what Mashima does, which has led this series to give us some great curveballs whenever things seem to go the same way they would in Fairy Tail (one involving those certain two characters I mentioned earlier). - -But to get to exactly *why* Mashima decided to reuse Happy specifically...he was actually thrown in at the last minute because Mashima moved the original mascot of the series to a later chapter and couldn't come up with a new character for a second mascot on such short notice. - -The point is, Mashima is a very self-referential artist, and he has more works under his belt for more decades than anyone realizes. It all started when he put Plue--one of his doodles from junior high--into the very first one-shot manga he drew for a publisher, and then he made him the mascot of Rave Master, his first proper series (which Fairy Tail references just as much as Fairy Tail gets referenced here). And having a long career means having lots of people to pick up on these references. - -This is just how he rolls, and it's something you just gotta roll *with.*";False;False;;;;1610573046;;False;{};gj5no22;False;t3_kwdcu0;False;False;t1_gj5j30t;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj5no22/;1610645543;19;True;False;anime;t5_2qh22;;0;[]; -[];;;j9162;;;[];;;;text;t2_rkowu;False;False;[];;Nah, it's just a standalone new series by the same author.;False;False;;;;1610573049;;False;{};gj5noc1;False;t3_kwdcu0;False;False;t1_gj3sei8;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj5noc1/;1610645548;6;True;False;anime;t5_2qh22;;0;[]; -[];;;isleddedintothorns;;;[];;;;text;t2_9jzekb8x;False;False;[];;is it good? also how long is it? i dont mind if its 14 episodes, quality over quantity;False;False;;;;1610573100;;False;{};gj5nsll;False;t3_kwf0hk;False;True;t1_gj3t6bk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5nsll/;1610645632;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PhenomsServant;;;[];;;;text;t2_xladq;False;False;[];;This is just the first planet. Saying EZ is a medival world because of one planet would be like saying One Piece is an Arabian world because of Alabasta;False;False;;;;1610573141;;False;{};gj5nw7d;False;t3_kwdcu0;False;False;t1_gj5mog2;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj5nw7d/;1610645703;11;True;False;anime;t5_2qh22;;0;[]; -[];;;cereal3friend;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/cerealfriend;dark;text;t2_17xqgp98;False;False;[];;More fanservice than FT but also has a better plot (not that it’s hard to have a better plot than FT lol). As a bonus it’s much darker at times, and while the MC loves making friends, there’s no power of friendship going on, he gets a major reality check at one point.;False;False;;;;1610573161;;False;{};gj5nxw4;False;t3_kwdcu0;False;False;t1_gj3sjs3;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj5nxw4/;1610645739;6;True;False;anime;t5_2qh22;;0;[]; -[];;;IvanTail;;;[];;;;text;t2_72g2sa9;False;False;[];;"TL;DR version: it's 90% art style, 10% quirks of the author.";False;False;;;;1610573171;;False;{};gj5nyri;False;t3_kwdcu0;False;False;t1_gj5j30t;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj5nyri/;1610645756;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Allthenumbers;;;[];;;;text;t2_7kroy;False;False;[];;Most likely my plan. Fuck big businesses. I hate that piracy doesn't support animation studios but exclusives are ridiculous and CR/Funi are both garbage companies in my opinion anyway. They don't deserve our money.;False;False;;;;1610573208;;False;{};gj5o1vo;True;t3_kwfbbg;False;False;t1_gj4mwp4;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj5o1vo/;1610645815;0;True;False;anime;t5_2qh22;;0;[]; -[];;;calvinist-batman;;;[];;;;text;t2_5w2u8jc6;False;False;[];;second question: are there more episodes after the Election Arc? I keep finding conflicting answers.;False;False;;;;1610573452;;False;{};gj5omc3;False;t3_kwdber;False;True;t3_kwdber;/r/anime/comments/kwdber/hunter_x_hunter_good_or_bad/gj5omc3/;1610646216;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PhenomsServant;;;[];;;;text;t2_xladq;False;False;[];;The same reason half the cast of Mob Psycho 100 look like Saitama in assorted wigs, or the majority of women One Piece looks like either Nami or Robin. Hell have you ever seen mangakas draw characters from other series? They more often than not look like someone from their series. Some mangakas tend to have a tendency to take a certain pattern when it comes to character designs. Mashima is just someone who is more obvious than others.;False;False;;;;1610573826;;False;{};gj5pi2o;False;t3_kwdcu0;False;False;t1_gj5j30t;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj5pi2o/;1610646845;13;True;False;anime;t5_2qh22;;0;[]; -[];;;mysistersacretin;;;[];;;;text;t2_6v57c;False;False;[];;"> from the mc saying friends alot - -Iirc that was mostly the original translators using ""friend"" in places where other words would have been more appropriate.";False;False;;;;1610573840;;False;{};gj5pj92;False;t3_kwdcu0;False;False;t1_gj3vf79;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj5pj92/;1610646870;6;True;False;anime;t5_2qh22;;0;[]; -[];;;mysistersacretin;;;[];;;;text;t2_6v57c;False;False;[];;[Or like saying Star Trek is a western because of one episode.](https://media.agonybooth.com/wp-content/uploads/2019/01/23231524/spectreofthegunhd06831.jpg);False;False;;;;1610574119;;False;{};gj5q6nn;False;t3_kwdcu0;False;False;t1_gj5nw7d;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj5q6nn/;1610647367;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Broly_;#12679b;ann;[];d01f2890-bcaf-11e4-9b5c-22000b3d83a4;Illegal Streaming Sites;light;text;t2_rrxeu;False;False;[];;"> i hope it didnt too fanservicey & abusing power of friendship like Rave 2. - -It will absolutely have more fanservice than Fairy Tail. - -It's up in the air about ""Power of Friendship"" stuff but there is a lot of plot convenience.";False;False;;;;1610574269;;False;{};gj5qjbl;False;t3_kwdcu0;False;True;t1_gj3sjs3;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj5qjbl/;1610647645;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Birdperson4President;;;[];;;;text;t2_k9xmy;False;False;[];;Didn’t Sony just buy Funimation? Hope they fix the UI or just abandon it all and bring the content over to Hulu;False;False;;;;1610574584;;False;{};gj5r9yf;False;t3_kwfbbg;False;True;t1_gj4rln6;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj5r9yf/;1610648192;0;True;False;anime;t5_2qh22;;0;[]; -[];;;wankthisway;;;[];;;;text;t2_eljck;False;False;[];;This is the reason why I'm hesitant to say I watch anime. Just so many degenerates that ruin it for everyone else. One my my friends was really put off when they found that I liked anime until they learned not everyone was fucking weird;False;False;;;;1610574993;;False;{};gj5s7y0;False;t3_kwf0hk;False;True;t1_gj4cdfj;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5s7y0/;1610648880;1;False;False;anime;t5_2qh22;;0;[]; -[];;;mikemd1;;;[];;;;text;t2_19thyv5q;False;False;[];;Yes.;False;False;;;;1610575036;;False;{};gj5sbjj;False;t3_kwf0hk;False;True;t1_gj48stz;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5sbjj/;1610648949;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wankthisway;;;[];;;;text;t2_eljck;False;False;[];;The show is good until the last like 4 episodes. Characters change motivations and tons of other stupid shit.;False;False;;;;1610575056;;False;{};gj5sd79;False;t3_kwf0hk;False;True;t1_gj50c2f;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5sd79/;1610648985;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wankthisway;;;[];;;;text;t2_eljck;False;False;[];;What did they do?;False;False;;;;1610575084;;False;{};gj5sfj6;False;t3_kwf0hk;False;True;t1_gj51638;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5sfj6/;1610649032;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Just-Monika-_;;;[];;;;text;t2_4dk4hds3;False;False;[];;I legit just started this anime yesterday.;False;False;;;;1610575370;;False;{};gj5t2vr;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5t2vr/;1610649509;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gulag_For_Brits;;;[];;;;text;t2_t5n03m9;False;False;[];;Yep. I applied to moderate a hentai sub as a joke and ended up getting the position shockingly. I don't do a whole lot of work but the people on there are incredibly fucking strange, and the posts you have to delete whether it be the titles or just the image itself are just beyond weird. A lot of people were genuinely surprised I was against posting fucking Neptunia porn;False;False;;;;1610575553;;False;{};gj5thrt;False;t3_kwf0hk;False;True;t1_gj4k8kj;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5thrt/;1610649796;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Elgato01;;MAL;[];;http://myanimelist.net/animelist/daniel_orozco;dark;text;t2_ieuju;False;False;[];;It literally ain’t;False;False;;;;1610575594;;False;{};gj5tl06;False;t3_kwdcu0;False;True;t1_gj3lk9l;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj5tl06/;1610649859;4;True;False;anime;t5_2qh22;;0;[]; -[];;;RicoSuave1881;;;[];;;;text;t2_xeg6q;False;False;[];;Before the first season aired two of the VA’s (I believe it was the MC’s best friend and the chick he likes) pulled a prank on a lesser known actor by claiming he won a role in the series and had him do a whole bunch of VA work for his supposed character. Then when they told him they’d be announcing is role at a “conference”, they brought him on stage and preceded to flame the shit out of him and showed clips of him voice acting for his fake character. Then after telling him his role was fake they gave him the job of PR director (or something like that) and made him promote the show he had been fooled into thinking he was gonna be a part of.;False;False;;;;1610575636;;False;{};gj5tofn;False;t3_kwf0hk;False;True;t1_gj5sfj6;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5tofn/;1610649921;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dra9onDemon23;;;[];;;;text;t2_5cgmynp6;False;False;[];;Alright, jumped to the top of the watch list. I thought those where fake subs before.;False;False;;;;1610575677;;False;{};gj5trqk;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5trqk/;1610649985;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vellsii;;;[];;;;text;t2_2tid8dx4;False;False;[];;"FMA:B is the manga adaption, sure, but FMA is a ""full and correct story"" all on its own. You can prefer Brotherhood, but you're essentially saying FMA isn't worth watching because it's not an adaption, which is silly reasoning.";False;False;;;;1610575953;;False;{};gj5ue1i;False;t3_kwfdon;False;True;t1_gj582kd;/r/anime/comments/kwfdon/do_i_need_to_watch_fma_before_fmab/gj5ue1i/;1610650412;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SlamSlamOhHotDamn;;;[];;;;text;t2_5krusrv;False;False;[];;"Nah. People forgot because it turned into shit around the timeskip but the first half of Fairy Tail was actually pretty exciting and one of the most popular Shonen at the time for a reason. - -EZ is nowhere near as fun to read as FT was at its peak, it's just an average Shonen. It does nothing eregiously bad but it doesn't stand out in anything either. EZ fans just go around telling people it's better than FT because they are desperate to get people into the series since nobody gives a fuck about it anymore. They also ALWAYS love to cite how the author isn't overusing his typical asspulls and power of friendship tropes like he did in the latter half of FT because that's pretty much the only argument the plot has going for it.";False;True;;comment score below threshold;;1610576007;;1610576273.0;{};gj5uiek;False;t3_kwdcu0;False;True;t1_gj4d9tg;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj5uiek/;1610650495;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;vellsii;;;[];;;;text;t2_2tid8dx4;False;False;[];;Sure, but they're still two distinct services that you buy, Disney didn't just migrate all its content to Hulu and call it a day. I wouldn't be surprised if we see similar bundles for CR/Funi as opposed to a full merger.;False;False;;;;1610576034;;False;{};gj5ukj0;False;t3_kwfbbg;False;True;t1_gj5bkti;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj5ukj0/;1610650535;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Forewarnednight;;;[];;;;text;t2_17gbjv;False;False;[];;Is this fairy tail or its own thing? its kinda confusing;False;False;;;;1610576425;;False;{};gj5vfo7;False;t3_kwdcu0;False;True;t3_kwdcu0;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj5vfo7/;1610651130;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rjvcrisen5;;;[];;;;text;t2_bm00x;False;False;[];;Man I miss Rave Master;False;False;;;;1610576450;;False;{};gj5vhqr;False;t3_kwdcu0;False;True;t1_gj3sjs3;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj5vhqr/;1610651169;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Uniqueusername2222;;;[];;;;text;t2_148ouj;False;False;[];;Listen due to his low anime watch count I can’t justify recommending both series So I’m emphasizing that FMA is not necessary to watch so he doesn’t need to stress about it. but like I said if he has an itch for more full metal than go FMA by all means but since he’s a new comer there is no reason to recommend fma;False;False;;;;1610576492;;False;{};gj5vl2k;False;t3_kwfdon;False;True;t1_gj5ue1i;/r/anime/comments/kwfdon/do_i_need_to_watch_fma_before_fmab/gj5vl2k/;1610651237;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610576493;;False;{};gj5vl5j;False;t3_kwf0hk;False;True;t1_gj4adoa;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5vl5j/;1610651238;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xtraterrestre;;;[];;;;text;t2_15jxg5;False;False;[];;Really the best girl;False;False;;;;1610576843;;False;{};gj5wclt;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5wclt/;1610651765;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wankthisway;;;[];;;;text;t2_eljck;False;False;[];;What the actual fuck? That's cruelty on another level.;False;False;;;;1610577035;;False;{};gj5wrxn;False;t3_kwf0hk;False;True;t1_gj5tofn;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5wrxn/;1610652066;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bay-Sea;;;[];;;;text;t2_23f3kfc3;False;False;[];;"Gintama. - -I watch this series a couple times already, but I do wish that I started watching it when I had more knowledge on anime, media and etc as a whole. - -Some jokes and references went over my head during my first time and have to be explained the joke or reference. - -Looking back the jokes are a lot more clever than I originally assume.";False;False;;;;1610577140;;False;{};gj5x03v;False;t3_kwgf1t;False;True;t3_kwgf1t;/r/anime/comments/kwgf1t/name_a_anime_you_wish_you_could_watch_again_for/gj5x03v/;1610652221;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mysistersacretin;;;[];;;;text;t2_6v57c;False;False;[];;Totally unrelated to Fairy Tail, just the same author. Just like how Fairy Tail was completely unrelated to Rave Master.;False;False;;;;1610577660;;False;{};gj5y4lc;False;t3_kwdcu0;False;False;t1_gj5vfo7;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj5y4lc/;1610652997;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Coorotaku;;;[];;;;text;t2_16hlnxz5;False;False;[];;Unless it's Yuru Camp. That show has genuinely good advice;False;False;;;;1610577897;;False;{};gj5yn0o;False;t3_kwf0hk;False;True;t1_gj4a0ch;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5yn0o/;1610653368;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Viruin;;;[];;;;text;t2_3u0d6vr;False;False;[];;She is best gal for a reason;False;False;;;;1610578221;;False;{};gj5zbxa;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj5zbxa/;1610653892;1;True;False;anime;t5_2qh22;;0;[]; -[];;;griffeter;;skip7;[];;;dark;text;t2_9roy77t1;False;False;[];;I think there is some additional manga but could be wrong but no more episodes;False;False;;;;1610578866;;False;{};gj60p7s;True;t3_kwdber;False;False;t1_gj5omc3;/r/anime/comments/kwdber/hunter_x_hunter_good_or_bad/gj60p7s/;1610654845;2;True;False;anime;t5_2qh22;;0;[]; -[];;;justfordc;;;[];;;;text;t2_6es0rtf;False;False;[];;Sony bought funimation a couple of years ago, but also *just* bought Crunchyroll, so who knows what will happen in the long run.;False;False;;;;1610580752;;False;{};gj64kpn;False;t3_kwfbbg;False;False;t1_gj5r9yf;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj64kpn/;1610657648;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ha_Ha_name_Go_Brrrrr;;;[];;;;text;t2_9hvnygui;False;False;[];;Ahh love a beautiful thing;False;False;;;;1610581022;;False;{};gj654dg;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj654dg/;1610658023;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Birdperson4President;;;[];;;;text;t2_k9xmy;False;False;[];;oh ya that’s what it was! Hope they improve the anime landscape rather than hurt it.;False;False;;;;1610581163;;False;{};gj65eli;False;t3_kwfbbg;False;True;t1_gj64kpn;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj65eli/;1610658214;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yj____099;;;[];;;;text;t2_7f2fghwu;False;False;[];;he definitely seemed strong at times for someone who is very unfortunate...but i wouldn’t say OP lol;False;False;;;;1610581595;;False;{};gj669yk;True;t3_kwfpu9;False;True;t1_gj3wyeg;/r/anime/comments/kwfpu9/anime_debate_comment_your_opinions_on_certain/gj669yk/;1610658794;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yj____099;;;[];;;;text;t2_7f2fghwu;False;False;[];;another case where the manga is better than the anime;False;False;;;;1610581618;;False;{};gj66bmr;True;t3_kwfpu9;False;False;t1_gj43e60;/r/anime/comments/kwfpu9/anime_debate_comment_your_opinions_on_certain/gj66bmr/;1610658824;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yj____099;;;[];;;;text;t2_7f2fghwu;False;False;[];;I agree with clan and being incredibly, but i’m not sure if the art style is lazy tho. The anime is from 2007 so obviously it’s not gonna be up to the same standard as current quality shows. But yes, it did seem a bit sloppy at times, but a lot of shows today still do that;False;False;;;;1610581761;;False;{};gj66lyf;True;t3_kwfpu9;False;True;t1_gj4c447;/r/anime/comments/kwfpu9/anime_debate_comment_your_opinions_on_certain/gj66lyf/;1610659016;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;Nope I assumed it was done after the OVAs;False;False;;;;1610582425;;False;{};gj67xg1;False;t3_kwf0hk;False;True;t1_gj4lot8;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj67xg1/;1610659933;1;True;False;anime;t5_2qh22;;0;[]; -[];;;degenerated_weeb;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Can’t escape the peko hole;dark;text;t2_3cku6n8b;False;False;[];;~~*Any image?*~~;False;False;;;;1610582630;;False;{};gj68c32;False;t3_kwdcu0;False;False;t1_gj591sn;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj68c32/;1610660212;5;True;False;anime;t5_2qh22;;0;[]; -[];;;someguynotnamedsmith;;;[];;;;text;t2_7iwjp39k;False;False;[];;There should be spoiler tag on the last 3 words;False;False;;;;1610582814;;False;{};gj68p6i;False;t3_kwgxsv;False;True;t1_gj5czpt;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj68p6i/;1610660472;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MinHasNoLife;;;[];;;;text;t2_62fjj3e3;False;False;[];;My bad, my mind’s been a bit *burnt* lately.;False;False;;;;1610583055;;False;{};gj696bj;True;t3_kwgxsv;False;False;t1_gj68p6i;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj696bj/;1610660813;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610583858;;False;{};gj6arw5;False;t3_kwgxsv;False;True;t1_gj4l285;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj6arw5/;1610661940;1;True;False;anime;t5_2qh22;;0;[]; -[];;;INSERT_LATVIAN_JOKE;;;[];;;;text;t2_wnpe5;False;False;[];;"If you want a trip check out the comments on mainstream porn websites. - -I was going to say that they make the stuff you see in hentai subs pale in comparison, but that's not really true. But you can tell that the weirdest commenters in hentai subs have never touched a real woman and are too wrapped up in the 2d fantasy to even try. The weirdest commenters in mainstream porn sites make you genuinely worry about random women who live in their neighborhood.";False;False;;;;1610584781;;False;{};gj6cl4h;False;t3_kwf0hk;False;True;t1_gj5thrt;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj6cl4h/;1610663183;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jk3sd;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Jk3sd?;light;text;t2_6e7jktbe;False;False;[];;‘Become friends’ .... here we go again;False;False;;;;1610585184;;False;{};gj6de0e;False;t3_kwdcu0;False;True;t3_kwdcu0;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj6de0e/;1610663722;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SephirothinHD;;;[];;;;text;t2_bzkjv;False;False;[];;I watch/am going to watch most of what you listed and they STILL DONT HAVE SHIT. OPs point still stands as far as I'm concerned.;False;False;;;;1610585446;;False;{};gj6dwkv;False;t3_kwfbbg;False;True;t1_gj3tdna;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj6dwkv/;1610664090;1;False;False;anime;t5_2qh22;;0;[]; -[];;;yworker;;;[];;;;text;t2_12fuax;False;False;[];;The Pan Piano special.;False;False;;;;1610586291;;False;{};gj6fjtv;False;t3_kwdcu0;False;False;t1_gj4aauh;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj6fjtv/;1610665231;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ineedtojackit;;;[];;;;text;t2_loomb;False;False;[];;Expect me to come by every week in discussions threads only to check out the stitches of Lucy 2.0's tits, but that's all I want from this series;False;False;;;;1610586449;;False;{};gj6fuis;False;t3_kwdcu0;False;True;t3_kwdcu0;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj6fuis/;1610665430;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610587053;;False;{};gj6h0b0;False;t3_kwdcu0;False;True;t1_gj5mog2;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj6h0b0/;1610666204;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mario61752;;;[];;;;text;t2_10d49q;False;False;[];;"Not the same case, but Frieda appeared in junior high as a ghost before s3 aired (although she’s in the manga already) - -There’s also that infamous s2 ending theme...";False;False;;;;1610588096;;False;{};gj6j0v5;False;t3_kwgxsv;False;True;t1_gj4mgna;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj6j0v5/;1610667526;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Enerzy78;;;[];;;;text;t2_9i66ce0n;False;False;[];;He says it's been with me since I was a little kid and sometimes I wonder... Ain't he still a kid, even for a comedy chibi series;False;False;;;;1610588454;;False;{};gj6jpry;False;t3_kwgxsv;False;True;t3_kwgxsv;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj6jpry/;1610667962;1;True;False;anime;t5_2qh22;;0;[]; -[];;;muhaiminhazmi;;;[];;;;text;t2_2khcbu8n;False;False;[];;Yeah since that ending ends with vol 4 of the novels, and there’s 11 of em, and they couldn’t continue the anime due to a massive backlash in japan.;False;False;;;;1610588525;;False;{};gj6jumb;False;t3_kwf0hk;False;True;t1_gj4n62l;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj6jumb/;1610668049;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Arickettsf16;;;[];;;;text;t2_wv44j;False;False;[];;Yeah they really screwed the pooch with that one, unfortunately.;False;False;;;;1610588794;;False;{};gj6kdpk;False;t3_kwf0hk;False;True;t1_gj6jumb;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj6kdpk/;1610668409;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610589309;;False;{};gj6ldud;False;t3_kwg89f;False;True;t3_kwg89f;/r/anime/comments/kwg89f/anime_similar_to_sangatsu_no_lion/gj6ldud/;1610669037;1;True;False;anime;t5_2qh22;;0;[]; -[];;;boozbender;;;[];;;;text;t2_7xun8dzs;False;False;[];;Looks like they'd rather hurt it more, I wish they'd just rejoin VRV already. It sucks needing like 3 different subs for anime.;False;False;;;;1610589393;;False;{};gj6ljms;False;t3_kwfbbg;False;True;t1_gj65eli;/r/anime/comments/kwfbbg/crunchyroll_barely_getting_anything_other_than/gj6ljms/;1610669136;2;True;False;anime;t5_2qh22;;0;[]; -[];;;InterstellarBrownies;;;[];;;;text;t2_1py72wkq;False;False;[];;Do I need to watch Fairy Tail to enjoy this? I’m not a big fan at missing out on little callbacks and Easter eggs;False;False;;;;1610591122;;False;{};gj6oum7;False;t3_kwdcu0;False;True;t3_kwdcu0;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj6oum7/;1610671147;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jussnf;;;[];;;;text;t2_6z5ws;False;False;[];;Ah, so this show is all the moe that wasnt allowed to be in the main show?;False;False;;;;1610592753;;False;{};gj6rwvl;False;t3_kwgxsv;False;False;t3_kwgxsv;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj6rwvl/;1610673031;8;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 80, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Everything is better with a good hug', 'end_date': None, 'giver_coin_reward': 0, 'icon_format': 'PNG', 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png', 'icon_width': 2048, 'id': 'award_8352bdff-3e03-4189-8a08-82501dd8f835', 'is_enabled': True, 'is_new': False, 'name': 'Hugz', 'penny_donate': 0, 'penny_price': 0, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16&height=16&auto=webp&s=69997ace3ef4ffc099b81d774c2c8f1530602875', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32&height=32&auto=webp&s=e9519d1999ef9dce5c8a9f59369cb92f52d95319', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48&height=48&auto=webp&s=f076c6434fb2d2f9075991810fd845c40fa73fc6', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64&height=64&auto=webp&s=85527145e0c4b754306a30df29e584fd16187636', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128&height=128&auto=webp&s=b8843cdf82c3b741d7af057c14076dcd2621e811', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16&height=16&auto=webp&s=69997ace3ef4ffc099b81d774c2c8f1530602875', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32&height=32&auto=webp&s=e9519d1999ef9dce5c8a9f59369cb92f52d95319', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48&height=48&auto=webp&s=f076c6434fb2d2f9075991810fd845c40fa73fc6', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64&height=64&auto=webp&s=85527145e0c4b754306a30df29e584fd16187636', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128&height=128&auto=webp&s=b8843cdf82c3b741d7af057c14076dcd2621e811', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;Captain_Harlock;;MAL;[];;http://myanimelist.net/profile/HarlockArcadia;dark;text;t2_334xp;False;False;[];;SubsDeLaRosa is fansubbing it.;False;False;;;;1610593060;;False;{};gj6shg8;False;t3_kwd0xq;False;True;t3_kwd0xq;/r/anime/comments/kwd0xq/does_anyone_remember_an_anime_called_the_red_baron/gj6shg8/;1610673394;2;True;False;anime;t5_2qh22;;1;[]; -[];;;thekillersamurai;;;[];;;;text;t2_148pd9;False;False;[];;">Shouwa Rakugo Shinjuu - -i second this";False;False;;;;1610593338;;False;{};gj6t001;False;t3_kwg89f;False;True;t1_gj4vx3z;/r/anime/comments/kwg89f/anime_similar_to_sangatsu_no_lion/gj6t001/;1610673710;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mysistersacretin;;;[];;;;text;t2_6v57c;False;False;[];;Not at all. They're completely unrelated. I only watched a little bit of Fairy Tail before dropping it but am loving the EZ manga.;False;False;;;;1610593934;;False;{};gj6u2nw;False;t3_kwdcu0;False;True;t1_gj6oum7;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj6u2nw/;1610674367;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChronoDeus;;;[];;;;text;t2_al6sy;False;False;[];;"> But is the story better? - -So far, generally speaking yes. Mashima started Fairy Tail with not much story planned beyond the general idea of a guild of wizards going out on missions. So the story ended up a patchwork that was expanded as the series went on. Edens Zero has more of it's story sketched out from the start. With the result that's it's had more consistent direction thus far with some interesting twists.";False;False;;;;1610596074;;False;{};gj6xwl1;False;t3_kwdcu0;False;True;t1_gj4d9tg;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj6xwl1/;1610676776;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JBHUTT09;;MAL;[];;http://myanimelist.net/animelist/JBHUTT09;dark;text;t2_4a2y9;False;False;[];;I was watching 27 airing anime one season... Fall 2012 was stacked.;False;False;;;;1610596194;;False;{};gj6y47h;False;t3_kwf0hk;False;True;t1_gj4qw7x;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj6y47h/;1610676907;1;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;17 episodes;False;False;;;;1610596503;;False;{};gj6ynsk;False;t3_kwf0hk;False;True;t1_gj5nsll;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj6ynsk/;1610677249;1;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;Watching airing animes is a nice experience, isn't it;False;False;;;;1610596742;;False;{};gj6z2yi;False;t3_kwf0hk;False;True;t1_gj6y47h;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj6z2yi/;1610677520;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotARealNova;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/NotARealNova;light;text;t2_nlvaqhd;False;False;[];;pog more fairytail;False;False;;;;1610598360;;False;{};gj71uqd;False;t3_kwdcu0;False;True;t3_kwdcu0;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj71uqd/;1610679362;0;True;False;anime;t5_2qh22;;0;[]; -[];;;InsomniaEmperor;;;[];;;;text;t2_5x68hmc4;False;False;[];;They know I'm into that shit.;False;False;;;;1610598531;;False;{};gj7252i;False;t3_kwdcu0;False;True;t1_gj4aauh;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj7252i/;1610679552;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;This is my comfort show after what’s happening in the manga right now, hope they make another one of this;False;False;;;;1610599713;;False;{};gj742gv;False;t3_kwgxsv;False;True;t3_kwgxsv;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj742gv/;1610680841;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HijonoYoki;;;[];;;;text;t2_164nsd;False;False;[];;"I think you're raging for no sensible reason, and your reply to others is basically refusing to see the other perspective because you're upset she didn't confess before she died. - -Your distaste basically comes down to a philosophical inquiry: is it better to have loved than to never have loved at all. Kaori chose the latter, because her main goal wasn't to get him to fall in love with her, that just happened, but to get him back to playing the piano. If she were to confess and they got into a relationship, the loss would cause an even greater impact for Kousei. He would have gotten more attached, fallen further in. At least with keeping her confession post mortem, he'll still be hurt, he'll still grieve, and wonder what could have been, yet it still saved him some heartache at the end of the day. You don't have to agree with it, but that doesn't make it wrong.";False;False;;;;1610605818;;False;{};gj7cq3l;False;t3_kwdkl1;False;True;t3_kwdkl1;/r/anime/comments/kwdkl1/rant_about_your_lie_in_april_spoilers/gj7cq3l/;1610686272;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Waleed320COOL;;;[];;;;text;t2_2nr4n8nv;False;False;[];;Now here again u dont understand my point. My point isnt that she shouldve confessed. Its if u werent gonna confess why do it after death. Bcz it will cause him more grief. My view was that either she confess while alive or dont confess at all. Why Confess after death,;False;False;;;;1610606002;;False;{};gj7cy6o;True;t3_kwdkl1;False;True;t1_gj7cq3l;/r/anime/comments/kwdkl1/rant_about_your_lie_in_april_spoilers/gj7cy6o/;1610686410;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HijonoYoki;;;[];;;;text;t2_164nsd;False;False;[];;"I don't think it caused him more grief though. If anything, it feels like he got his own closure out of the truth, which we see in the imaginary back and forth with her in the last episode. He spent the whole series thinking he was ""Friend A"" and that she would never feel the same way towards a guy like him, but it turned out the complete opposite all along. It's cathartic. - -She got to save him from becoming more attached and had him see his intrinsic value.";False;False;;;;1610606335;;False;{};gj7dcqj;False;t3_kwdkl1;False;False;t1_gj7cy6o;/r/anime/comments/kwdkl1/rant_about_your_lie_in_april_spoilers/gj7dcqj/;1610686666;1;True;False;anime;t5_2qh22;;0;[]; -[];;;daft_tyspehirson;;;[];;;;text;t2_4awiope7;False;False;[];;I believe it was supposed to originally end with the Phantom Lord arc, and then Mashima continued it because it was really enjoyed and popular.;False;False;;;;1610606469;;False;{};gj7dilq;False;t3_kwdcu0;False;True;t1_gj6xwl1;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj7dilq/;1610686762;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610606680;;False;{};gj7drq5;False;t3_kwdcu0;False;True;t1_gj5mfmz;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj7drq5/;1610686914;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Waleed320COOL;;;[];;;;text;t2_2nr4n8nv;False;False;[];;Well u could see it like that. Bcz my opinion is quite Biased. It's based completely on my own emotions, how I would feel if it happened to me. So maybe other ppl or MC felt different. So yeh you could be right.;False;False;;;;1610606824;;False;{};gj7dxx1;True;t3_kwdkl1;False;True;t1_gj7dcqj;/r/anime/comments/kwdkl1/rant_about_your_lie_in_april_spoilers/gj7dxx1/;1610687019;1;True;False;anime;t5_2qh22;;0;[]; -[];;;daft_tyspehirson;;;[];;;;text;t2_4awiope7;False;False;[];;It goes off in a completely different direction. Fairy Tail's first half was all about the missions and the dark guilds until the Grand Magic Games. Edens Zero has more depth imo, and it goes without saying considering that Fairy Tail was never supposed to be as long as it was.;False;False;;;;1610607020;;False;{};gj7e6ar;False;t3_kwdcu0;False;False;t1_gj3xzx9;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj7e6ar/;1610687161;5;True;False;anime;t5_2qh22;;0;[]; -[];;;daft_tyspehirson;;;[];;;;text;t2_4awiope7;False;False;[];;I can't believe I said this, but I genuinely believe Edens Zero is more enjoyable than My Hero Academia as a manga.;False;False;;;;1610608817;;False;{};gj7g6yi;False;t3_kwdcu0;False;False;t3_kwdcu0;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj7g6yi/;1610688447;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akash7713;;;[];;;;text;t2_2sd20nu;False;False;[];;Armin is the most precious character in AOT;False;False;;;;1610609648;;False;{};gj7h3z5;False;t3_kwgxsv;False;True;t3_kwgxsv;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj7h3z5/;1610689042;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kazureus;;;[];;;;text;t2_ztfbl;False;False;[];;MC likes to make friends, that's it.;False;False;;;;1610610350;;False;{};gj7hv6n;False;t3_kwdcu0;False;False;t1_gj6de0e;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj7hv6n/;1610689736;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BelizariuszS;;;[];;;;text;t2_1dicu0i;False;False;[];;Even the fuckin cat is the same, come on;False;False;;;;1610610635;;False;{};gj7i5yv;False;t3_kwdcu0;False;True;t3_kwdcu0;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj7i5yv/;1610689937;0;True;False;anime;t5_2qh22;;0;[]; -[];;;spiderknight616;;;[];;;;text;t2_vcau4lw;False;False;[];;I hope they do a sequel with them in high school (Paradis High) competing against a rival Marley High. Oh, and Eren is hardcore emo now.;False;False;;;;1610611021;;False;{};gj7iklm;False;t3_kwgxsv;False;True;t3_kwgxsv;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj7iklm/;1610690179;3;True;False;anime;t5_2qh22;;0;[]; -[];;;spiderknight616;;;[];;;;text;t2_vcau4lw;False;False;[];;Basically what kids their age should've been doing instead of dying.;False;False;;;;1610611057;;False;{};gj7ilza;False;t3_kwgxsv;False;False;t1_gj6rwvl;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj7ilza/;1610690203;8;True;False;anime;t5_2qh22;;0;[]; -[];;;zxHellboyxz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Mattinator95;light;text;t2_27t5u6vk;False;False;[];;It could possibly be the future maybe but no confirmation.;False;False;;;;1610612546;;False;{};gj7k4vq;False;t3_kwdcu0;False;False;t1_gj7drq5;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj7k4vq/;1610691245;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Necrosaynt;;;[];;;;text;t2_jxl9k;False;False;[];;Have we been bamboozled? I am here for the same reason .;False;False;;;;1610617107;;False;{};gj7oo9o;False;t3_kwdcu0;False;True;t1_gj4xnx9;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj7oo9o/;1610694023;2;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610617837;moderator;False;{};gj7pddi;False;t3_kwdcu0;False;False;t1_gj7drq5;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj7pddi/;1610694421;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Elijah-0;;;[];;;;text;t2_4mmlh33z;False;False;[];;Thanks for clarifying :);False;False;;;;1610617855;;False;{};gj7pe11;False;t3_kwdcu0;False;True;t1_gj5n7dh;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj7pe11/;1610694431;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Left-Chance-4564;;;[];;;;text;t2_7p92oo57;False;False;[];;In the fake previews since Marley arc, Eren is literally an emo high school student lol.;False;False;;;;1610620660;;False;{};gj7s3s8;False;t3_kwgxsv;False;True;t1_gj7iklm;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj7s3s8/;1610695963;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ConfuciusBr0s;;;[];;;;text;t2_10rcz5;False;False;[];;"Yeah except someone [gets](/s ""a bullet put through his skull after making a power of friendship speech"")";False;False;;;;1610627693;;False;{};gj7zrbg;False;t3_kwdcu0;False;True;t1_gj3rvc8;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj7zrbg/;1610700182;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Little-xim;;;[];;;;text;t2_o4st2;False;False;[];;"Finally decided to pick this up, the dub is really solid! Really like how the characters are presented, they feel rather “real” in the sense that they aren’t flat, and the writing helps with that too. - -The tone is a little darker then I expected, though, but not to the point of being pessimistic, moreso that they aren’t ignoring the reality of the scenario for cheap hijinks, instead opting to be more of a character analysis. Not that there’s *no* humor, there is certainly some, but it’s not just “slice of life with a dab of supernatural”, there’s definitely some drama too.";False;False;;;;1610632879;;False;{};gj87h1m;False;t3_kwf0hk;False;True;t3_kwf0hk;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gj87h1m/;1610704401;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;Why haven't you seen the anime?;False;False;;;;1610634254;;False;{};gj89ww7;False;t3_kwgxsv;False;True;t1_gj4hr26;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj89ww7/;1610705733;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;He's a teenager;False;False;;;;1610634360;;False;{};gj8a41t;False;t3_kwgxsv;False;True;t1_gj6jpry;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj8a41t/;1610705840;2;True;False;anime;t5_2qh22;;0;[]; -[];;;UnknownWorldMap;;;[];;;;text;t2_8fa1wnup;False;False;[];;I'm not a big fan of the animation in the early seasons, stuff like the cgi titans and how cartoonish the characters look made me choose the manga over the anime;False;False;;;;1610634670;;False;{};gj8aol5;False;t3_kwgxsv;False;True;t1_gj89ww7;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj8aol5/;1610706152;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;The titans are only cgi in s4 except the Colossal that is usually always cgi. I personally liked the character designs but tbh early aot art was really bad but now it's really fucking good. Isayama went through ***C H A R A C T E R D E V E L O P M E N T***;False;False;;;;1610634807;;False;{};gj8axna;False;t3_kwgxsv;False;True;t1_gj8aol5;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj8axna/;1610706287;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Enerzy78;;;[];;;;text;t2_9i66ce0n;False;False;[];;It's just the way he acts;False;False;;;;1610636103;;False;{};gj8dhm0;False;t3_kwgxsv;False;True;t1_gj8a41t;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj8dhm0/;1610707708;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Enerzy78;;;[];;;;text;t2_9i66ce0n;False;False;[];;Ik It's just the way he acts;False;False;;;;1610636118;;False;{};gj8dimz;False;t3_kwgxsv;False;True;t1_gj8a41t;/r/anime/comments/kwgxsv/levi_the_futon_thief_attack_on_titan_junior_high/gj8dimz/;1610707722;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fuxq;;;[];;;;text;t2_1j5l21ng;False;False;[];;I thoroughly have enjoyed this series since the leaks of the first chapter lol, but at the end of the day it’s just another Mashima series so it’s not the wheel reinvented like most fans make it out to be. Also you can enjoy this series without bashing on Fairy Tail it’s weird that people seem to do that.;False;False;;;;1610636307;;False;{};gj8dwjf;False;t3_kwdcu0;False;True;t3_kwdcu0;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj8dwjf/;1610707938;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jayson_2004;;;[];;;;text;t2_3pijy2at;False;False;[];;This isn't about the power of friendship. The MC has never had human friends since he only lived with robots.;False;False;;;;1610659421;;False;{};gj9u9kn;False;t3_kwdcu0;False;True;t1_gj6de0e;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj9u9kn/;1610743680;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jayson_2004;;;[];;;;text;t2_3pijy2at;False;False;[];;Crazy how this series doesn't have any POF in it for the most part.;False;False;;;;1610659508;;False;{};gj9uhra;False;t3_kwdcu0;False;True;t1_gj3rvc8;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gj9uhra/;1610743849;2;True;False;anime;t5_2qh22;;0;[]; -[];;;trakinasneto;;;[];;;;text;t2_8yqse43;False;False;[];;You just made my day! Are they putting it up anywhere?;False;False;;;;1610661883;;False;{};gja0497;True;t3_kwd0xq;False;True;t1_gj6shg8;/r/anime/comments/kwd0xq/does_anyone_remember_an_anime_called_the_red_baron/gja0497/;1610747545;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mekazuaquaness;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;mekazuaquaness is true waifu;dark;text;t2_3d9sfw2v;False;False;[];;Well that does sound pretty interesting;False;False;;;;1610663070;;False;{};gja2joq;False;t3_kwdcu0;False;True;t1_gj7zrbg;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gja2joq/;1610749324;1;True;False;anime;t5_2qh22;;0;[]; -[];;;montarion;;;[];;;;text;t2_lvv27;False;False;[];;considering that most shows are only 12 episodes, that's just 4 hours a day;False;False;;;;1610667612;;False;{};gjabkho;False;t3_kwf0hk;False;True;t1_gj4aft8;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gjabkho/;1610755460;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Captain_Harlock;;MAL;[];;http://myanimelist.net/profile/HarlockArcadia;dark;text;t2_334xp;False;False;[];;I'm afraid giving any more info would break this sub-reddit's rules. Episode 35 just appeared recently.;False;False;;;;1610676636;;False;{};gjasw7c;False;t3_kwd0xq;False;True;t1_gja0497;/r/anime/comments/kwd0xq/does_anyone_remember_an_anime_called_the_red_baron/gjasw7c/;1610766761;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OrginalRecipe_;;;[];;;;text;t2_4ymtyabh;False;False;[];;I mean he never met a single human in his entire life lol + there is no friendship power ups;False;False;;;;1610685986;;False;{};gjb9ont;False;t3_kwdcu0;False;True;t1_gj6de0e;/r/anime/comments/kwdcu0/edens_zero_official_trailer_english_subbed/gjb9ont/;1610776873;1;True;False;anime;t5_2qh22;;0;[]; -[];;;noxnsol;;;[];;;;text;t2_h61rk;False;False;[];;I think you're misunderstanding Kaori's whole thing. Once she realized she doesn't have much time left she starts living life on her own terms. What you're saying isn't incorrect, it was technically selfish but it also gels with who Kaori is as a person the way we knew her (she was chaotic good incarnate). She was all over the place the way anyone in her circumstances would be, I don't think that makes her a bad person though, quite the opposite, I think it makes her very realistic. She didn't want Arima to fall in love with her knowing she was going to die but at the same time she wanted to express her feeling in some way. People can feel conflicted about options and I think she was but she ultimately wanted to be remembered and so in the end she did confess her feelings. Was it wrong to do so? I think that's up for us to decide but I don't personally think it was, it was a very understandable decision.;False;False;;;;1610687185;;False;{};gjbbl8g;False;t3_kwdkl1;False;True;t1_gj3ve3w;/r/anime/comments/kwdkl1/rant_about_your_lie_in_april_spoilers/gjbbl8g/;1610777976;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thatoneidiotwhodied;;;[];;;;text;t2_29dun8xi;False;False;[];;woah...;False;False;;;;1610732792;;False;{};gjd5bsw;False;t3_kwf0hk;False;True;t1_gj4tmqo;/r/anime/comments/kwf0hk/but_then_she_says_it_too_kokoro_connect/gjd5bsw/;1610817422;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mountain-Anywhere621;;;[];;;;text;t2_9kuj99kp;False;False;[];;Rent s girlfriend mc not good example;False;False;;;;1610767972;;False;{};gjf2ds9;False;t3_kwdowc;False;True;t1_gj3n41d;/r/anime/comments/kwdowc/romance_anime_where_the_mc_isnt_as_dense_as_rock/gjf2ds9/;1610862725;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mountain-Anywhere621;;;[];;;;text;t2_9kuj99kp;False;False;[];;Grisaia trilogy has badass mc watch order grisaia no kaiju then meikyu then rauken;False;False;;;;1610768018;;False;{};gjf2gla;False;t3_kwdowc;False;False;t3_kwdowc;/r/anime/comments/kwdowc/romance_anime_where_the_mc_isnt_as_dense_as_rock/gjf2gla/;1610862771;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fuckingtwatwaffle;;;[];;;;text;t2_9clsh89z;False;False;[];;"Finally got a grip with Toradora. -Btw does Toradora have S2? -Or is the ""Toradora SOS"" anime a sequel?";False;False;;;;1610960119;;False;{};gjpdbmr;True;t3_kwbxot;False;True;t1_gj3dcqm;/r/anime/comments/kwbxot/5_in_1_two_questions_an_apology_a_statement_and_a/gjpdbmr/;1611075425;1;True;False;anime;t5_2qh22;;0;[]; -[];;;drowninalcohol;;;[];;;;text;t2_9qabpw8f;False;False;[];;It's only 1 season sadly, with 25 eps. Toradora SOS is a side story! Same with Toradora!: Bentou no Goku.;False;False;;;;1610960329;;False;{};gjpdjha;False;t3_kwbxot;False;True;t1_gjpdbmr;/r/anime/comments/kwbxot/5_in_1_two_questions_an_apology_a_statement_and_a/gjpdjha/;1611075593;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1611082673;;False;{};gjuxvml;False;t3_kwfpu9;False;True;t3_kwfpu9;/r/anime/comments/kwfpu9/anime_debate_comment_your_opinions_on_certain/gjuxvml/;1611205146;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi TheOnlyPinkMan, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610509245;moderator;False;{};gj2s4q4;False;t3_kw8546;False;True;t3_kw8546;/r/anime/comments/kw8546/good_comedy_andor_romance/gj2s4q4/;1610580993;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610509291;;False;{};gj2s7kj;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj2s7kj/;1610581043;7;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610509309;moderator;False;{};gj2s8qp;False;t3_kw85rf;False;True;t3_kw85rf;/r/anime/comments/kw85rf/where_can_i_watch_tokyo_ghoul/gj2s8qp/;1610581063;1;False;False;anime;t5_2qh22;;0;[]; -[];;;jetah;;;[];;;;text;t2_7x3ws;False;False;[];;First one seems interesting. Got a quick link? If not I'll probably search it in a few.;False;False;;;;1610509343;;False;{};gj2saua;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj2saua/;1610581100;43;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;Funimation;False;False;;;;1610509469;;False;{};gj2sist;False;t3_kw85rf;False;True;t3_kw85rf;/r/anime/comments/kw85rf/where_can_i_watch_tokyo_ghoul/gj2sist/;1610581249;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;True;[];;"[https://www.funimation.com/shows/back-arrow/?qid=2e9adc41b9082439](https://www.funimation.com/shows/back-arrow/?qid=2e9adc41b9082439) - -&#x200B; - -[https://myanimelist.net/anime/40964/Back\_Arrow?q=Back%20Arrow&cat=anime](https://myanimelist.net/anime/40964/Back_Arrow?q=Back%20Arrow&cat=anime)";False;False;;;;1610509478;;False;{};gj2sjco;True;t3_kw83at;False;False;t1_gj2saua;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj2sjco/;1610581259;21;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;"I watched the first episode of all three of these and I thought they were all okay. - -I think Back Arrow had lightning fast pacing, but I liked the character of Back Arrow. It could get better but it could get way worse. The CGI looks really good. - -Sk8 was interesting. It gave me a lot of nostalgia in that it felt like something that would air on Cartoon Network at 9am when I was a kid. The art style reminded me a lot of Beyblade for some reason. I think I'm definitely gonna continue watching this but I do worry ill get bored. - -WEG was so strange. It probably looks the best of these three. I think my expectations may get in the way of my enjoyment here because i was really looking forward to a mystery of ""What's in the egg"" but then we found out already. I'm not a huge fan of dream world or surreal stuff like this, it reminds of Fate/Extra Last Encore kinda. I'll probably give it a few more episodes, but may drop it if I'm not entertained";False;False;;;;1610509520;;False;{};gj2sm28;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj2sm28/;1610581310;26;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;True;[];;I mean I think it goes without saying that EX-ARM is AOTY, not even a contest lol;False;False;;;;1610509545;;False;{};gj2snp5;True;t3_kw83at;False;False;t1_gj2s7kj;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj2snp5/;1610581341;9;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;True;[];;Funimation for Tokyo Ghoul. Vinland Saga and Dororo are on Amazon Prime;False;False;;;;1610509678;;False;{};gj2svz8;False;t3_kw85rf;False;True;t3_kw85rf;/r/anime/comments/kw85rf/where_can_i_watch_tokyo_ghoul/gj2svz8/;1610581506;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi DamnMitch69, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610509740;moderator;False;{};gj2szxa;False;t3_kw8a3f;False;True;t3_kw8a3f;/r/anime/comments/kw8a3f/any_horror_anime_you_can_recommend/gj2szxa/;1610581591;1;False;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;Hulu has Tokyo Ghoul;False;False;;;;1610509779;;False;{};gj2t2d2;False;t3_kw85rf;False;True;t3_kw85rf;/r/anime/comments/kw85rf/where_can_i_watch_tokyo_ghoul/gj2t2d2/;1610581643;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kiwixcoke;;;[];;;;text;t2_3oxoatwh;False;False;[];;I would always recommend Konosuba for comedy, If you watched Konosuba then watch Haven’t you heard? I’m Sakamoto. Romance anime isn’t something you can just “recommend” it comes down to what kind of humor you’re into imo.;False;False;;;;1610509866;;False;{};gj2t7vi;False;t3_kw8546;False;True;t3_kw8546;/r/anime/comments/kw8546/good_comedy_andor_romance/gj2t7vi/;1610581755;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sodra;;MAL a-amq;[];;https://myanimelist.net/profile/sodra;dark;text;t2_5o34w;False;False;[];;Ex-Arm is adapted from a [manga](https://myanimelist.net/manga/90014/Ex-Arm);False;False;;;;1610509938;;False;{};gj2tcah;False;t3_kw83at;False;False;t1_gj2s7kj;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj2tcah/;1610581858;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Btw_kek;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SouvlakiSpace7;light;text;t2_i0pj6;False;False;[];;Perfect Blue, Paranoia Agent, and Higurashi;False;False;;;;1610509960;;False;{};gj2tdn2;False;t3_kw8a3f;False;False;t3_kw8a3f;/r/anime/comments/kw8a3f/any_horror_anime_you_can_recommend/gj2tdn2/;1610581886;5;True;False;anime;t5_2qh22;;0;[]; -[];;;NekoWafers;;;[];;;;text;t2_iau18;False;False;[];;Why are we still here? Just to suffer? The Animation;False;False;;;;1610509998;;False;{};gj2tg11;False;t3_kw83at;False;True;t1_gj2s7kj;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj2tg11/;1610581942;2;True;False;anime;t5_2qh22;;0;[]; -[];;;marzydots;;;[];;;;text;t2_6nkopj6x;False;False;[];;Another is my go to horror suggestion. It has a good mystery, likable characters, and great animation. A boy starts a new school and notices a girl wearing an eyepatch that everyone else seems to ignore. Theres a lot of gruesome deaths and gore, but its not just about that (and the gore isn't super graphic, mostly just shocking). I really liked it and think its a decent start to anime horror. Hope you find something you like!;False;False;;;;1610510037;;False;{};gj2tiji;False;t3_kw8a3f;False;False;t3_kw8a3f;/r/anime/comments/kw8a3f/any_horror_anime_you_can_recommend/gj2tiji/;1610581991;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheOnlyPinkMan;;;[];;;;text;t2_7ghcph2l;False;False;[];;By romance, I didn't mean for people to factor in comedy. For example (and these are horrible examples but they work) Domestic Girlfriend, ToraDora, and Bunny Girl. I've seen Konosuba, so ill watch the other you said.;False;False;;;;1610510043;;False;{};gj2tivk;True;t3_kw8546;False;True;t1_gj2t7vi;/r/anime/comments/kw8546/good_comedy_andor_romance/gj2tivk/;1610581996;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;"Shiki - -Another";False;False;;;;1610510088;;False;{};gj2tlp8;False;t3_kw8a3f;False;True;t3_kw8a3f;/r/anime/comments/kw8a3f/any_horror_anime_you_can_recommend/gj2tlp8/;1610582052;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;Depends on the site I guess. Downloading anything comes with a certain amount of risk regardless.;False;False;;;;1610510138;;False;{};gj2toue;False;t3_kw8db8;False;True;t3_kw8db8;/r/anime/comments/kw8db8/is_it_safe_to_download_anime/gj2toue/;1610582114;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;Love chunibyo and other delusions;False;False;;;;1610510203;;False;{};gj2tsvf;False;t3_kw8546;False;False;t3_kw8546;/r/anime/comments/kw8546/good_comedy_andor_romance/gj2tsvf/;1610582195;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kiwixcoke;;;[];;;;text;t2_3oxoatwh;False;False;[];;I’m been watching the Quintessential Quintuples and I’m on S2 right now and I’d say it’s been pretty good and easy to digest episodes. (Romance type anime) and also I’m sure you’d enjoy Sakamoto, hope this helped :);False;False;;;;1610510270;;False;{};gj2tx1j;False;t3_kw8546;False;True;t1_gj2tivk;/r/anime/comments/kw8546/good_comedy_andor_romance/gj2tx1j/;1610582284;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sodra;;MAL a-amq;[];;https://myanimelist.net/profile/sodra;dark;text;t2_5o34w;False;False;[];;"Your ISP can get you if you're not careful. - -I'd just stick with [legal streams](https://www.reddit.com/r/anime/wiki/legal_streams) if you're worried.";False;False;;;;1610510289;;False;{};gj2ty84;False;t3_kw8db8;False;True;t3_kw8db8;/r/anime/comments/kw8db8/is_it_safe_to_download_anime/gj2ty84/;1610582317;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kat_neko;;;[];;;;text;t2_3wuu8z2c;False;False;[];;Shinsekai Yori is my personal favorite, very psychological and good plot;False;False;;;;1610510297;;False;{};gj2tyq0;False;t3_kw8a3f;False;True;t3_kw8a3f;/r/anime/comments/kw8a3f/any_horror_anime_you_can_recommend/gj2tyq0/;1610582326;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Haydenater1;;;[];;;;text;t2_1jq5q8bz;False;False;[];;Don't download anime from ANY website unless they are a site that buys the right to use the anime. If you do download it then the chance of you getting a virus is pretty high.;False;False;;;;1610510349;;False;{};gj2u1x1;False;t3_kw8db8;False;True;t3_kw8db8;/r/anime/comments/kw8db8/is_it_safe_to_download_anime/gj2u1x1/;1610582389;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jetah;;;[];;;;text;t2_7x3ws;False;False;[];;oh. it's on funimation.;False;False;;;;1610510443;;False;{};gj2u7lj;False;t3_kw83at;False;False;t1_gj2sjco;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj2u7lj/;1610582498;50;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610510490;moderator;False;{};gj2ualr;False;t3_kw8hzs;False;True;t3_kw8hzs;/r/anime/comments/kw8hzs/i_need_new_stuff_to_watch/gj2ualr/;1610582578;1;False;False;anime;t5_2qh22;;0;[]; -[];;;TheOnlyPinkMan;;;[];;;;text;t2_7ghcph2l;False;False;[];;"Barely into Sakamoto and I love it - -QQ is a really good anime. Def one of my favorites. The ending to all of it, well, it'll make you scratch your head for a bit.";False;False;;;;1610510494;;False;{};gj2uavl;True;t3_kw8546;False;True;t1_gj2tx1j;/r/anime/comments/kw8546/good_comedy_andor_romance/gj2uavl/;1610582584;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mobilegamegod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Aochhi;light;text;t2_pkuqf;False;False;[];;Not really if you know what you're doing. Although OP evidently doesn't, so he should probably take your advice.;False;False;;;;1610510500;;False;{};gj2ub8n;False;t3_kw8db8;False;True;t1_gj2u1x1;/r/anime/comments/kw8db8/is_it_safe_to_download_anime/gj2ub8n/;1610582590;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kiwixcoke;;;[];;;;text;t2_3oxoatwh;False;False;[];;All anime in a nutshell lol;False;False;;;;1610510580;;False;{};gj2ug3v;False;t3_kw8546;False;True;t1_gj2uavl;/r/anime/comments/kw8546/good_comedy_andor_romance/gj2ug3v/;1610582682;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kat_neko;;;[];;;;text;t2_3wuu8z2c;False;False;[];;definitely horimiya, it's currently airing and my favorite romance series with a shit ton of good laughs in the manga, so hopefully the anime pulls it out just as well;False;False;;;;1610510648;;False;{};gj2uk93;False;t3_kw8546;False;False;t3_kw8546;/r/anime/comments/kw8546/good_comedy_andor_romance/gj2uk93/;1610582761;5;True;False;anime;t5_2qh22;;0;[]; -[];;;mobilegamegod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Aochhi;light;text;t2_pkuqf;False;False;[];;Don't forget Vlad Love! Aikatsu Planet and Idoly Pride are also shaping up to be quite decent.;False;False;;;;1610510668;;False;{};gj2ulh9;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj2ulh9/;1610582786;52;True;False;anime;t5_2qh22;;0;[]; -[];;;Peacemkr45;;;[];;;;text;t2_15b5b7;False;False;[];;certain licensed sites may permit downloading, but the one's you're talking about are cesspools of malware and viruses.;False;False;;;;1610510678;;False;{};gj2um24;False;t3_kw8db8;False;True;t3_kw8db8;/r/anime/comments/kw8db8/is_it_safe_to_download_anime/gj2um24/;1610582796;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tylerz4567;;;[];;;;text;t2_9sj1wyf3;False;False;[];;Yeah it’s ok;False;False;;;;1610510766;;False;{};gj2urfx;False;t3_kw8db8;False;True;t3_kw8db8;/r/anime/comments/kw8db8/is_it_safe_to_download_anime/gj2urfx/;1610582896;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheOnlyPinkMan;;;[];;;;text;t2_7ghcph2l;False;False;[];;I've seen the first episode and I think its already best of the season;False;False;;;;1610510971;;False;{};gj2v3w4;True;t3_kw8546;False;True;t1_gj2uk93;/r/anime/comments/kw8546/good_comedy_andor_romance/gj2v3w4/;1610583131;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kat_neko;;;[];;;;text;t2_3wuu8z2c;False;False;[];;mob psycho;False;False;;;;1610510975;;False;{};gj2v439;False;t3_kw8hzs;False;False;t3_kw8hzs;/r/anime/comments/kw8hzs/i_need_new_stuff_to_watch/gj2v439/;1610583135;8;True;False;anime;t5_2qh22;;0;[]; -[];;;TheOnlyPinkMan;;;[];;;;text;t2_7ghcph2l;False;False;[];;Watched the first season, then something just broke and I started to really hate Rikka. Dropped S2 by episode 4. Might finish, Chunibyo girls been growing on me after Konosuba and Megumin.;False;False;;;;1610511030;;False;{};gj2v7i1;True;t3_kw8546;False;True;t1_gj2tsvf;/r/anime/comments/kw8546/good_comedy_andor_romance/gj2v7i1/;1610583195;1;True;False;anime;t5_2qh22;;0;[]; -[];;;reddadz;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MysticEyes/;light;text;t2_oek5m;False;True;[];;"Sorry, your submission has been removed. - -- It looks like your questions have been answered, so we're taking it off the list of new posts to make room for other content. For future reference, here are some additional resources that may help you find an answer even faster: - - - [To ask any random question you may have, visit our Weekly Miscellaneous Anime Questions thread!](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Weekly+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) - - [For finding an anime based off of a single image, reverse image searching typically works instantly](http://www.reddit.com/r/anime/wiki/reverse_image_searching) - - [r/anime has a large number of watch orders available](http://www.reddit.com/r/anime/wiki/watch_order) - - [You can find all of your recommendation needs here](http://www.reddit.com/r/anime/wiki/recommendations) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610511097;moderator;False;{};gj2vbgz;False;t3_kw8db8;False;True;t3_kw8db8;/r/anime/comments/kw8db8/is_it_safe_to_download_anime/gj2vbgz/;1610583268;1;True;False;anime;t5_2qh22;;0;[]; -[];;;knokaka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/knokaka?order=4;light;text;t2_ytri4;False;False;[];;"in general if you can distinguishes fake advertising links from genuine download links I think it safe. - -i don't think mp4 or mkv container can contains a virus. stay the f out zip or exe format.";False;False;;;;1610511125;;False;{};gj2vd6h;False;t3_kw8db8;False;True;t3_kw8db8;/r/anime/comments/kw8db8/is_it_safe_to_download_anime/gj2vd6h/;1610583302;1;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 150, 'coin_reward': 0, 'count': 2, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Thank you stranger. Shows the award.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'icon_width': 2048, 'id': 'award_f44611f1-b89e-46dc-97fe-892280b13b82', 'is_enabled': True, 'is_new': False, 'name': 'Helpful', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}, {'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 125, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'When you come across a feel-good thing.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'icon_width': 2048, 'id': 'award_5f123e3d-4f48-42f4-9c11-e98b566d5897', 'is_enabled': True, 'is_new': False, 'name': 'Wholesome', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}, {'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 3, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Shows the Silver Award... and that's it."", 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'icon_width': 512, 'id': 'gid_1', 'is_enabled': True, 'is_new': False, 'name': 'Silver', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;JakeTheFake8;;;[];;;;text;t2_86j3emld;False;False;[];;"I don’t even know there names while watching the anime. - -Edit: Thanks for the awards, I just woke up to 25 reddit notifications so thank you, I really appreciate it.";False;False;;;;1610511207;;1610551209.0;{'gid_1': 3};gj2vi7g;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj2vi7g/;1610583396;2096;True;False;anime;t5_2qh22;;6;[]; -[];;;Handsome-_-awkward;;;[];;;;text;t2_52f0dxfa;False;False;[];;I see tokyo ghoul:re on there. Is that the same as the original;False;False;;;;1610511231;;False;{};gj2vjn5;True;t3_kw85rf;False;True;t1_gj2t2d2;/r/anime/comments/kw85rf/where_can_i_watch_tokyo_ghoul/gj2vjn5/;1610583422;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DamnMitch69;;;[];;;;text;t2_50784s2o;False;False;[];;Thank you!;False;False;;;;1610511253;;False;{};gj2vl0g;True;t3_kw8a3f;False;True;t1_gj2tdn2;/r/anime/comments/kw8a3f/any_horror_anime_you_can_recommend/gj2vl0g/;1610583447;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DamnMitch69;;;[];;;;text;t2_50784s2o;False;False;[];;Definitely will check it out!;False;False;;;;1610511261;;False;{};gj2vlha;True;t3_kw8a3f;False;True;t1_gj2tiji;/r/anime/comments/kw8a3f/any_horror_anime_you_can_recommend/gj2vlha/;1610583456;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DamnMitch69;;;[];;;;text;t2_50784s2o;False;False;[];;Love Psychological , will definitely check it out;False;False;;;;1610511291;;False;{};gj2vnd6;True;t3_kw8a3f;False;False;t1_gj2tyq0;/r/anime/comments/kw8a3f/any_horror_anime_you_can_recommend/gj2vnd6/;1610583490;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;Sure, that happens with people I meet in real life too if it's been a while;False;False;;;;1610511306;;False;{};gj2vo9k;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj2vo9k/;1610583507;619;True;False;anime;t5_2qh22;;0;[]; -[];;;CertifiedCoffeeDrunk;;MAL;[];;http://myanimelist.net/profile/CoffeeGourmet;dark;text;t2_wnic3;False;False;[];;I consume a dumb amount of anime while job hunting and yea I can’t be bothered to remember the names unless the series is ridiculously good/memorable.;False;False;;;;1610511323;;False;{};gj2vpdh;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj2vpdh/;1610583527;237;True;False;anime;t5_2qh22;;0;[]; -[];;;BioChemRS;;ANI a-1milquiz;[];;https://anilist.co/user/BioChemRS/;dark;text;t2_pl221;False;False;[];;because emotion transcends language barriers or something;False;False;;;;1610511323;;False;{};gj2vpe8;False;t3_kw8pd1;False;False;t3_kw8pd1;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2vpe8/;1610583527;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"You can feel the emotions a lot of voice actors convey in their roles. It’s hard to explain but good voice acting can help me as the viewer understand whatever emotion the characters are going though. - -For instance, if a character is supposed to be angry, frantic, and stressed, a good voice actor can make me feel what the character is feeling.";False;False;;;;1610511408;;False;{};gj2vujg;False;t3_kw8pd1;False;False;t3_kw8pd1;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2vujg/;1610583627;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610511427;;False;{};gj2vvot;False;t3_kw8pd1;False;True;t3_kw8pd1;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2vvot/;1610583648;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RapidSheep;;;[];;;;text;t2_4ubyf00u;False;False;[];;Not really, just sounds like another language. I think both do the same job really and people who shame others for the language they watch a cartoon in are just sad people.;False;True;;comment score below threshold;;1610511428;;False;{};gj2vvrk;False;t3_kw8pd1;False;True;t1_gj2vpe8;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2vvrk/;1610583649;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;Roketsu86;;;[];;;;text;t2_hwze9;False;False;[];;The meaning of the words is not the only, or even the most important, thing when it comes to acting.;False;False;;;;1610511451;;False;{};gj2vx74;False;t3_kw8pd1;False;False;t3_kw8pd1;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2vx74/;1610583675;6;True;False;anime;t5_2qh22;;0;[]; -[];;;dekalabia;;;[];;;;text;t2_qqkbdrk;False;False;[];;Because you hear tonal difference, nuances of the acting, if there are emotion behind the voice or lack there of.;False;False;;;;1610511478;;False;{};gj2vyuj;False;t3_kw8pd1;False;False;t3_kw8pd1;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2vyuj/;1610583704;13;True;False;anime;t5_2qh22;;0;[]; -[];;;RapidSheep;;;[];;;;text;t2_4ubyf00u;False;False;[];;Again you are not going to always know that.;False;False;;;;1610511495;;False;{};gj2vzv2;False;t3_kw8pd1;False;True;t1_gj2vx74;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2vzv2/;1610583722;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;RapidSheep;;;[];;;;text;t2_4ubyf00u;False;False;[];;Which I also pick up perfectly in dub. The deathnote dub for example is fantastic.;False;False;;;;1610511543;;False;{};gj2w2sp;False;t3_kw8pd1;False;True;t1_gj2vujg;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2w2sp/;1610583777;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;BioChemRS;;ANI a-1milquiz;[];;https://anilist.co/user/BioChemRS/;dark;text;t2_pl221;False;False;[];;I'm not trying to shame anyone for anything. You're welcome to your opinion but I think Japanese voice acting is of generally higher quality and I discern that via the range of emotion I hear in a voice actor. If you can't hear it then just keep watching dubs. Don't let people shame you for enjoying shit in the way you want to enjoy it.;False;False;;;;1610511544;;False;{};gj2w2tr;False;t3_kw8pd1;False;False;t1_gj2vvrk;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2w2tr/;1610583778;16;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610511544;moderator;False;{};gj2w2u8;False;t3_kw8sn4;False;True;t3_kw8sn4;/r/anime/comments/kw8sn4/whats_that_song_that_goes_ladidada_over_and_over/gj2w2u8/;1610583778;1;False;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;"You can still get a good grasp on range and emotion in a performance even if you don't speak the language. - -[Listen to this clip from Princess Connect and you'll see what I mean.](https://youtu.be/1-wsGOBCOXw) - -[Or Celty from Durarara where Sawashiro perfectly conveys emotion for the character without the character even having a face.](https://www.youtube.com/watch?v=fRavGbhFg9E)";False;False;;;;1610511601;;False;{};gj2w6ay;False;t3_kw8pd1;False;True;t3_kw8pd1;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2w6ay/;1610583839;5;True;False;anime;t5_2qh22;;0;[]; -[];;;RapidSheep;;;[];;;;text;t2_4ubyf00u;False;False;[];;Which is also present in dub. So there is no reason to shame others for watching the same thing as you but in a different language.;False;False;;;;1610511605;;False;{};gj2w6hj;False;t3_kw8pd1;False;True;t1_gj2vyuj;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2w6hj/;1610583842;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;wayayoshitaka;;MAL a-amq;[];;https://myanimelist.net/profile/weiss;dark;text;t2_sazyd;False;False;[];;[Here's a Finnish dub of Digimon, can you tell if it's bad or not?](https://youtu.be/1T_TLBZxY4U?t=10);False;False;;;;1610511610;;False;{};gj2w6s6;False;t3_kw8pd1;False;False;t3_kw8pd1;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2w6s6/;1610583847;4;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;Tokyo Ghoul:re is not the original. Maybe different regions? I’m in the US and Hulu has seasons one through three.;False;False;;;;1610511630;;False;{};gj2w821;False;t3_kw85rf;False;True;t1_gj2vjn5;/r/anime/comments/kw85rf/where_can_i_watch_tokyo_ghoul/gj2w821/;1610583886;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Roketsu86;;;[];;;;text;t2_hwze9;False;False;[];;What? I'm not going to know what? I can easily tell the emotion in a character's voice even if I can't understand the *exact* meaning of each word and when coupled with the subtitle translation I can get a perfect understanding of a well-acted scene. Here's a fantastic example of good acting in anime: [https://youtu.be/nHd3xfDzTg8](https://youtu.be/nHd3xfDzTg8);False;False;;;;1610511653;;False;{};gj2w9eb;False;t3_kw8pd1;False;True;t1_gj2vzv2;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2w9eb/;1610583920;6;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;"As others have said in the replies, raw emotion and effort comes through in voice acting the more you listen to it. When I first started watching subbed it was definitely harder to tell but the more I watched the easier it was to distinguish voices. Now I can recognize a voice actor that I've heard before in Japanese the same way I do an English one. - -There are a good hand of English dubs i like better than the Japanese versions, and I don't shame people for watching dubs. But if someone had to ask me which one to watch for a certain show, I will recommend the one I think is better. For example, I recommend the Haikyuu sub but the Death Note sub";False;False;;;;1610511663;;False;{};gj2w9zt;False;t3_kw8pd1;False;False;t3_kw8pd1;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2w9zt/;1610583932;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Blabime;;MAL;[];;http://myanimelist.net/animelist/Blabime;dark;text;t2_tzap8;False;False;[];;Is it literally La di da? https://www.youtube.com/watch?v=JYpqp1hqrPg;False;False;;;;1610511666;;False;{};gj2wa6n;False;t3_kw8sn4;False;True;t3_kw8sn4;/r/anime/comments/kw8sn4/whats_that_song_that_goes_ladidada_over_and_over/gj2wa6n/;1610583935;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GiveMeTheLeaf;;;[];;;;text;t2_56zgb7wi;False;False;[];;"Dororo (2019)- Mystery/Horror (Thriller) Highly recommend, has plenty of fighting. - -Tokyo Ghoul- Graphic Horror. Some action - -The Promised Neverland- Thriller/Horror. Heavy on the thriller, fighting isn't going to happen for a few seasons. (But I think its gonna be good) - -Happy watching! Let me know if you try any and what you think of the shows. I would love to know!";False;False;;;;1610511679;;False;{};gj2wazn;False;t3_kw8a3f;False;True;t3_kw8a3f;/r/anime/comments/kw8a3f/any_horror_anime_you_can_recommend/gj2wazn/;1610583951;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Only if I haven't seen the show for a long time. But names from the past 4 years of shows generally stay with me;False;False;;;;1610511701;;False;{};gj2wcbs;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj2wcbs/;1610583975;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Former_Ad_4533;;;[];;;;text;t2_797an5h7;False;False;[];;Found it it’s bunny girl Senpai opening lol;False;False;;;;1610511728;;False;{};gj2wdz3;True;t3_kw8sn4;False;True;t1_gj2wa6n;/r/anime/comments/kw8sn4/whats_that_song_that_goes_ladidada_over_and_over/gj2wdz3/;1610584004;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;My ears function pretty well.;False;False;;;;1610511774;;False;{};gj2wgso;False;t3_kw8pd1;False;False;t3_kw8pd1;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2wgso/;1610584053;6;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;"I think the Fate series is what you're looking for. Start with Fate/Stay Night Unlimited Blade Works and then watch Fate/Zero - -Another one you could watch is Hunter X Hunter or the first two seasons of Seven Deadly Sins";False;False;;;;1610511788;;False;{};gj2whnu;False;t3_kw8hzs;False;True;t3_kw8hzs;/r/anime/comments/kw8hzs/i_need_new_stuff_to_watch/gj2whnu/;1610584069;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RapidSheep;;;[];;;;text;t2_4ubyf00u;False;False;[];;"Just sounds like a over exaggeration of a Japanese female, Japanese people don't even speak like that. I get the same experience from dub but better because I can connect with what they are saying. - -At the end of the day if someone wants to watch anime in english, Spanish, Italian whatever let them. Japanese people probably watch SpongeBob in Japanese.";False;False;;;;1610511794;;False;{};gj2whzv;False;t3_kw8pd1;False;True;t1_gj2w6ay;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2whzv/;1610584076;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;RapidSheep;;;[];;;;text;t2_4ubyf00u;False;False;[];;I'm sure they do, your point?;False;False;;;;1610511817;;False;{};gj2wjbw;False;t3_kw8pd1;False;True;t1_gj2wgso;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2wjbw/;1610584098;0;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;"""Kimi no sei"" is quite different from ""La di da di da""";False;False;;;;1610511856;;False;{};gj2wlq1;False;t3_kw8sn4;False;False;t1_gj2wdz3;/r/anime/comments/kw8sn4/whats_that_song_that_goes_ladidada_over_and_over/gj2wlq1/;1610584140;5;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;You asked how I could know. Before I really learned Japanese, I used my ears. Now that I know Japanese, I still use my ears.;False;False;;;;1610511863;;False;{};gj2wm48;False;t3_kw8pd1;False;False;t1_gj2wjbw;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2wm48/;1610584146;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"Tokyo Ghoul: re is the continuation of the first season of Tokyo ghoul. - -Tokyo ghoul is widely considered as a bad adaptation for the most part and a disappointing representation of the manga. The only good adapted part is the first season. - -It gets confusing after the first season because the second season, root A, is mainly non canon. Rather than continuing adapting the manga where the first season leaves off, the second season goes on its own anime original path that isn’t very good. - -When :re was adapted, it just continued off of the first season, but very poorly. Iirc, it tried rushing and adapted a lot of chapters per episode.";False;False;;;;1610511877;;False;{};gj2wmyv;False;t3_kw85rf;False;True;t1_gj2vjn5;/r/anime/comments/kw85rf/where_can_i_watch_tokyo_ghoul/gj2wmyv/;1610584161;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kat_neko;;;[];;;;text;t2_3wuu8z2c;False;False;[];;ahh ok, how about akatsuki no yona or fruits basket?;False;False;;;;1610511878;;False;{};gj2wn1e;False;t3_kw8546;False;True;t1_gj2v3w4;/r/anime/comments/kw8546/good_comedy_andor_romance/gj2wn1e/;1610584163;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RapidSheep;;;[];;;;text;t2_4ubyf00u;False;False;[];;I still believe you can get the same experience from both it really doesn't matter. I literally know people who have been sent death threats from watching dub.;False;False;;;;1610511889;;False;{};gj2wnqw;False;t3_kw8pd1;False;True;t1_gj2w9zt;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2wnqw/;1610584177;0;True;False;anime;t5_2qh22;;0;[]; -[];;;RapidSheep;;;[];;;;text;t2_4ubyf00u;False;False;[];;This question wasn't directed at people who speak Japanese obviously so why are you contributing?;False;False;;;;1610511938;;False;{};gj2wqnl;False;t3_kw8pd1;False;False;t1_gj2wm48;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2wqnl/;1610584228;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;"> Japanese people don't even speak like that. - -English dubs aren't how people speak either, what point are you trying to make? - ->At the end of the day if someone wants to watch anime in english, Spanish, Italian whatever let them - -Okay? Feels like that's the real heart of this, not that you're actually curious about what we think about subs. Just another person coming here totally unprovoked to whine about dub haters.";False;False;;;;1610511969;;False;{};gj2wsiq;False;t3_kw8pd1;False;False;t1_gj2whzv;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2wsiq/;1610584259;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Melvin8D2;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Melvin8D;dark;text;t2_17655t;False;False;[];;You might wanna check out Gurren Lagann.;False;False;;;;1610511998;;False;{};gj2wu8m;False;t3_kw8hzs;False;True;t3_kw8hzs;/r/anime/comments/kw8hzs/i_need_new_stuff_to_watch/gj2wu8m/;1610584289;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Handsome-_-awkward;;;[];;;;text;t2_52f0dxfa;False;False;[];;Hmm. I'm in the midwest and I can only find the re version. Oh well I found the others I was looking for. Thanks;False;False;;;;1610512007;;False;{};gj2wutd;True;t3_kw85rf;False;False;t1_gj2w821;/r/anime/comments/kw85rf/where_can_i_watch_tokyo_ghoul/gj2wutd/;1610584300;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Handsome-_-awkward;;;[];;;;text;t2_52f0dxfa;False;False;[];;Thank you;False;False;;;;1610512020;;False;{};gj2wvnb;True;t3_kw85rf;False;False;t1_gj2svz8;/r/anime/comments/kw85rf/where_can_i_watch_tokyo_ghoul/gj2wvnb/;1610584314;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RapidSheep;;;[];;;;text;t2_4ubyf00u;False;False;[];;Again HOW DO YOU KNOW IF YOU DON'T SPEAK JAPANESE!? For all you know you are interpreting a scene completely different from the intention.;False;False;;;;1610512022;;False;{};gj2wvqm;False;t3_kw8pd1;False;True;t1_gj2w9eb;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2wvqm/;1610584315;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Handsome-_-awkward;;;[];;;;text;t2_52f0dxfa;False;False;[];;Thanks;False;False;;;;1610512029;;False;{};gj2ww56;True;t3_kw85rf;False;True;t1_gj2sist;/r/anime/comments/kw85rf/where_can_i_watch_tokyo_ghoul/gj2ww56/;1610584324;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;"Thats obviously awful. I think you may be generalizing those bad instances to the majority of sub supporters, a lot of people like myself prefer subs but would never go that far. - -And you can definitely enjoy and get a great experience from a dub, but I think for some shows the sub offers a better experience if that makes sense";False;False;;;;1610512045;;False;{};gj2wx3w;False;t3_kw8pd1;False;True;t1_gj2wnqw;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2wx3w/;1610584345;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;At no point do they ever say La Di Da Da in that entire song.;False;False;;;;1610512054;;False;{};gj2wxop;False;t3_kw8sn4;False;True;t1_gj2wdz3;/r/anime/comments/kw8sn4/whats_that_song_that_goes_ladidada_over_and_over/gj2wxop/;1610584356;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RapidSheep;;;[];;;;text;t2_4ubyf00u;False;False;[];;I'm sorry can you point out to where I said all dubs are good?;False;False;;;;1610512060;;False;{};gj2wy1c;False;t3_kw8pd1;False;True;t1_gj2w6s6;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2wy1c/;1610584362;0;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;Frankly, even if the Japanese version is bad, the fact that I won't be able to tell is a bonus since it would never bother me, whereas I won't be able to tolerate if the English version is bad. Obviously not all English voice acting is bad, and people are allowed to watch however they want.;False;False;;;;1610512060;;False;{};gj2wy1f;False;t3_kw8pd1;False;True;t3_kw8pd1;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2wy1f/;1610584362;0;True;False;anime;t5_2qh22;;0;[]; -[];;;dekalabia;;;[];;;;text;t2_qqkbdrk;False;False;[];;"Well the stigma of sub vs dub really stems from the early 00's where the dubs were actually far inferior compared to the original japanese. But nowadays with how far the industry has grown, the dubs are up to par with the Japanese and certain cases the English dub ends up being better. - - - Case in point, Fullmetal Alchemist Brotherhood, Alphonse in the English dub shows actual development from sounding youthful and becoming far more mature in how he speaks and his voice. Now mind you I originally watched it in Japanese and far prefer the Japanese, but I can say that the voice actor for Alphonse far exceeds the Japanese actress who voices Al. I actually really enjoy her as a VA, but she was surpassed by the small nuances the English VA was able to pull off. - - -Also I'm both native in Japanese and English, so I can understand the nuances of the acting on both ends. So majority of my opinion is derived from watching international films in their native language. Though majority would be live action, so the actual acting of the original always tends to out way in performance compared to the dub.";False;False;;;;1610512077;;False;{};gj2wz1c;False;t3_kw8pd1;False;True;t1_gj2w6hj;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2wz1c/;1610584379;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Meru-sensei;;;[];;;;text;t2_9rtlid2l;False;False;[];;Because you hear the tone on how they act during the anime sub.;False;False;;;;1610512089;;False;{};gj2wzre;False;t3_kw8pd1;False;True;t3_kw8pd1;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2wzre/;1610584391;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;I often refer to characters by trait, like white haired girl or blue haired guy.;False;False;;;;1610512098;;False;{};gj2x0az;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj2x0az/;1610584401;93;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;I'm speaking for my experiences prior to knowing Japanese.;False;False;;;;1610512109;;False;{};gj2x0wj;False;t3_kw8pd1;False;False;t1_gj2wqnl;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2x0wj/;1610584412;5;True;False;anime;t5_2qh22;;0;[]; -[];;;RapidSheep;;;[];;;;text;t2_4ubyf00u;False;False;[];;Well in that case, my point is proven.;False;False;;;;1610512136;;False;{};gj2x2i9;False;t3_kw8pd1;False;True;t1_gj2wy1f;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2x2i9/;1610584441;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;mobilegamegod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Aochhi;light;text;t2_pkuqf;False;False;[];;">Just sounds like a over exaggeration of a Japanese female, Japanese people don't even speak like that. - -And how would you know? I thought you'd be unable to tell the quality of voice acting if you're not fluent in the language..";False;False;;;;1610512166;;False;{};gj2x4ba;False;t3_kw8pd1;False;False;t1_gj2whzv;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2x4ba/;1610584472;6;True;False;anime;t5_2qh22;;0;[]; -[];;;falkner97;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/falkner99;light;text;t2_6y92q69v;False;False;[];;Subs and translation exist for a reason;False;False;;;;1610512192;;False;{};gj2x5x5;False;t3_kw8pd1;False;False;t1_gj2wvqm;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2x5x5/;1610584500;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Roketsu86;;;[];;;;text;t2_hwze9;False;False;[];;I don't think you even understand what you're saying... How do I know ***what***? ***What are you even asking me?***;False;False;;;;1610512197;;False;{};gj2x67s;False;t3_kw8pd1;False;False;t1_gj2wvqm;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2x67s/;1610584506;4;True;False;anime;t5_2qh22;;0;[]; -[];;;RapidSheep;;;[];;;;text;t2_4ubyf00u;False;False;[];;Finally someone who isn't a dick. Thank you for the ACTUAL EXPLANATION.;False;True;;comment score below threshold;;1610512199;;False;{};gj2x6al;False;t3_kw8pd1;False;True;t1_gj2wz1c;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2x6al/;1610584507;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610512209;;False;{};gj2x6vk;False;t3_kw85rf;False;True;t3_kw85rf;/r/anime/comments/kw85rf/where_can_i_watch_tokyo_ghoul/gj2x6vk/;1610584518;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hi Meru-sensei, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610512209;moderator;False;{};gj2x6xh;False;t3_kw85rf;False;True;t1_gj2x6vk;/r/anime/comments/kw85rf/where_can_i_watch_tokyo_ghoul/gj2x6xh/;1610584518;1;False;False;anime;t5_2qh22;;0;[]; -[];;;BuginoidZ;;;[];;;;text;t2_dv579;False;False;[];;Because I'm not deaf?;False;False;;;;1610512213;;False;{};gj2x75q;False;t3_kw8pd1;False;True;t3_kw8pd1;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2x75q/;1610584522;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"What? Are you seriously not able to see the emotion in her voice? - -You are really stretching there to prove your point for some reason - -[lets see if you can't feel a ara ara voice lol](https://youtu.be/fX82nBUhecw)";False;False;;;;1610512220;;False;{};gj2x7kl;False;t3_kw8pd1;False;False;t1_gj2wvqm;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2x7kl/;1610584531;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610512234;moderator;False;{};gj2x8cr;False;t3_kw8zsk;False;True;t3_kw8zsk;/r/anime/comments/kw8zsk/anybody_know_what_anime_this_is/gj2x8cr/;1610584544;1;False;False;anime;t5_2qh22;;0;[]; -[];;;feurouge;;;[];;;;text;t2_4o84zty;False;False;[];;I primarily watch sub, and I have no idea. It's probably just because I started out watching sub, and enjoyed it, so because I like it I usually just go sub unless it's an anime that I see a lot of people praising the english dub for.;False;False;;;;1610512264;;False;{};gj2xa3e;False;t3_kw8pd1;False;True;t3_kw8pd1;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2xa3e/;1610584575;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RapidSheep;;;[];;;;text;t2_4ubyf00u;False;False;[];;Because I have spoken to many Japanese people... They told me literally no one over there speaks like they're constantly having a never ending orgasm.;False;False;;;;1610512276;;False;{};gj2xat1;False;t3_kw8pd1;False;True;t1_gj2x4ba;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2xat1/;1610584587;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;_-Tokijin-_;;;[];;;;text;t2_18iw7hc0;False;False;[];;Log Horizon;False;False;;;;1610512310;;False;{};gj2xcrj;False;t3_kw8zsk;False;True;t3_kw8zsk;/r/anime/comments/kw8zsk/anybody_know_what_anime_this_is/gj2xcrj/;1610584621;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"Yes but not every English dub and every character in those English dubs can pull it off well. Death note is one of the few really good examples over the years. - -The English dubbing industry has slowly improved over the years, but it still isn’t as big as the Japanese dubbing industry. Thus, the range of dubbed actors they usually pick from aren’t as varied in expertise. One English dubbed show might have a few people still sounding as if they’re just reading lines. - -On the other hand, seeing how selective and stressful a Japanese voice actors training is, usually everyone in a Japanese dub brings their A game.";False;False;;;;1610512319;;False;{};gj2xd9u;False;t3_kw8pd1;False;False;t1_gj2w2sp;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2xd9u/;1610584630;4;True;False;anime;t5_2qh22;;0;[]; -[];;;RapidSheep;;;[];;;;text;t2_4ubyf00u;False;False;[];;Do you speak Japanese fluently?;False;False;;;;1610512322;;False;{};gj2xdgy;False;t3_kw8pd1;False;False;t1_gj2x75q;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2xdgy/;1610584635;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Swiftstrike4;;;[];;;;text;t2_13chrb;False;False;[];;It’s log horizon;False;False;;;;1610512367;;False;{};gj2xg13;False;t3_kw8zsk;False;True;t3_kw8zsk;/r/anime/comments/kw8zsk/anybody_know_what_anime_this_is/gj2xg13/;1610584682;0;True;False;anime;t5_2qh22;;0;[]; -[];;;RapidSheep;;;[];;;;text;t2_4ubyf00u;False;False;[];;Oh there is emotion I'm sure. But I don't speak Japanese. Besides this entire argument is irrelevant.;False;False;;;;1610512393;;False;{};gj2xhkn;False;t3_kw8pd1;False;True;t1_gj2x7kl;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2xhkn/;1610584711;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ShadowthecatXD;;;[];;;;text;t2_lpruw;False;False;[];;I can almost never remember Japanese names outside of the main few characters, I'm not sure if it's just the language barrier or what but it's frustrating.;False;False;;;;1610512449;;False;{};gj2xkr6;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj2xkr6/;1610584768;296;True;False;anime;t5_2qh22;;0;[]; -[];;;DamnMitch69;;;[];;;;text;t2_50784s2o;False;False;[];;"Tokyo ghoul one of my personal favorites👌🏻 -TPN was amazing i just watched that last week -Looking forward to Dororo";False;False;;;;1610512463;;False;{};gj2xlin;True;t3_kw8a3f;False;True;t1_gj2wazn;/r/anime/comments/kw8a3f/any_horror_anime_you_can_recommend/gj2xlin/;1610584781;2;True;False;anime;t5_2qh22;;0;[]; -[];;;wayayoshitaka;;MAL a-amq;[];;https://myanimelist.net/profile/weiss;dark;text;t2_sazyd;False;False;[];;"> However when you watch an anime in sub you really have no idea if something is off, there could be an absolute terrible voice actor in the Japanese version but you're not going to know because you aren't fluent in Japanese. - -I'm sorry but what was the point of your OP again?";False;False;;;;1610512467;;False;{};gj2xlqf;False;t3_kw8pd1;False;False;t1_gj2wy1c;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2xlqf/;1610584785;6;True;False;anime;t5_2qh22;;0;[]; -[];;;RapidSheep;;;[];;;;text;t2_4ubyf00u;False;False;[];;Well considering you blew off topic it seems you don't. there is emotion in literally the worse acting you could possibly think of, but if it's in another language you aren't going to know if it's good or bad.;False;False;;;;1610512481;;False;{};gj2xmj7;False;t3_kw8pd1;False;False;t1_gj2x67s;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2xmj7/;1610584800;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;mobilegamegod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Aochhi;light;text;t2_pkuqf;False;False;[];;His point was that it's easy to tell the quality of voice acting even if it's in a foreign language.;False;False;;;;1610512503;;False;{};gj2xntq;False;t3_kw8pd1;False;True;t1_gj2wy1c;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2xntq/;1610584823;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RapidSheep;;;[];;;;text;t2_4ubyf00u;False;False;[];;Fair enough.;False;False;;;;1610512512;;False;{};gj2xobr;False;t3_kw8pd1;False;True;t1_gj2xa3e;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2xobr/;1610584833;2;True;False;anime;t5_2qh22;;0;[]; -[];;;feurouge;;;[];;;;text;t2_4o84zty;False;False;[];;True. Some shows, I'll be on episode 10 and have to scroll down to the description real quick to remember what the MC's names are.;False;False;;;;1610512522;;False;{};gj2xowe;False;t3_kw8oi3;False;False;t1_gj2vi7g;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj2xowe/;1610584842;483;True;False;anime;t5_2qh22;;0;[]; -[];;;Pr0sthetics;;;[];;;;text;t2_ktqjeyc;False;False;[];;Same here. It took me half way through Psycho-Pass to remember each characters' name and know how to pronounce it correctly.;False;False;;;;1610512556;;False;{};gj2xqx1;False;t3_kw8oi3;False;False;t1_gj2vi7g;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj2xqx1/;1610584878;95;True;False;anime;t5_2qh22;;0;[]; -[];;;RapidSheep;;;[];;;;text;t2_4ubyf00u;False;False;[];;Just like not every Japanese voice actor can pull it off. That is literally my point.;False;False;;;;1610512565;;False;{};gj2xrgn;False;t3_kw8pd1;False;True;t1_gj2xd9u;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2xrgn/;1610584888;0;True;False;anime;t5_2qh22;;0;[]; -[];;;BuginoidZ;;;[];;;;text;t2_dv579;False;False;[];;Not at all. I'm just saying, if you need to understand the language to be able to determine the quality of the voice acting then there's probably something wrong with your ears because that's not how that works.;False;False;;;;1610512586;;False;{};gj2xso5;False;t3_kw8pd1;False;True;t1_gj2xdgy;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2xso5/;1610584909;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Roketsu86;;;[];;;;text;t2_hwze9;False;False;[];;">Finally someone who isn't a dick. - -Do you have some martyrdom agenda or something? No one in any of the responses was a dick to you, we all simply answered your question with our own understanding of how we interpret the emotion. I and a few others even provided examples. The *only* person in this thread who was a dick was you, when you [told someone not to contribute because you didn't like their answer](https://www.reddit.com/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2wqnl?utm_source=share&utm_medium=web2x&context=3).";False;False;;;;1610512586;;False;{};gj2xso8;False;t3_kw8pd1;False;True;t1_gj2x6al;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2xso8/;1610584909;7;True;False;anime;t5_2qh22;;0;[]; -[];;;dekalabia;;;[];;;;text;t2_qqkbdrk;False;False;[];;"I think the best approach is not taking the dub or sub approach and just try and find which acting you prefer. You may come to enjoy certain casting compared another. While find that if only this actor was in this dub or original japanese. - -Hmm might be interesting to test it out, like take the series Shows Genroku Rakugo Shinjuu, where this series asks far more from their cast in performance due to the subject matter being Rakugo, a form of stand-up comedy and one man story telling. So each actor needs to be able to pull off several roles in one ""story"". You may find that each story teller has their own nuances with what they exceed in and not. In this example, you can really find what the core of voicing a character really means.";False;False;;;;1610512594;;False;{};gj2xt49;False;t3_kw8pd1;False;True;t1_gj2x6al;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2xt49/;1610584917;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;"Well, It is like a gradual understanding that you develop over watching many animes. - -But, The pitch and vocal speed are something that can be felt by anyone. - -Look at Levi - When he speaks, he speaks very calmly or (for lack of a better word) emotionlessly. This shows that he is emotionally matured from all the experience that he has gathered. He has a deep voice that shows that he is strong as a person and understands what he is doing in the grand scale of things. - -Look at Araragi - He speaks fast and emotion-filled and sometimes leaves the righteousness and morality in the dump to grab some oppai-service. He is always portrayed as a variable person that can change his pitch, and vocal speed as the other person reacts. He yells shouts because he is a normal person. - -The good thing is that these both are portrayed by the same person. And, that sounds for a good voice acting.";False;False;;;;1610512600;;False;{};gj2xtj8;False;t3_kw8pd1;False;True;t3_kw8pd1;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2xtj8/;1610584924;1;True;False;anime;t5_2qh22;;0;[]; -[];;;uspnuts;;;[];;;;text;t2_3xc0j59i;False;False;[];;why do u ask reddit if you’re just going to get defensive and call everyone wrong? if ur a snowflake keep to yourself;False;False;;;;1610512610;;False;{};gj2xu48;False;t3_kw8pd1;False;True;t1_gj2wvqm;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2xu48/;1610584935;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RapidSheep;;;[];;;;text;t2_4ubyf00u;False;False;[];;Again when did I say every dub is good?;False;False;;;;1610512646;;False;{};gj2xw9g;False;t3_kw8pd1;False;True;t1_gj2xlqf;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2xw9g/;1610584974;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;Go watch Black Clover and tell me Asta's voice acting is good.;False;False;;;;1610512725;;False;{};gj2y0v5;False;t3_kw8pd1;False;True;t1_gj2xmj7;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2y0v5/;1610585054;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"LOL, my man i love movies from many countries as a horror movie fan - -The language of emotion is universal you can feel - -My favorite movie of 2020 was a Guatemalan horror movie called La Llorona and in 2019 was Parasite a Korean movie - -I don't speak spanish or korean, but the acting is god tier same thing when i didn't speak english and loved hollywood movies subbed - -I started watching sub when i learned how to read, not every language is big enough to get dubs, so you have to learn how to deal with it";False;False;;;;1610512778;;False;{};gj2y3wh;False;t3_kw8pd1;False;True;t1_gj2xhkn;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2y3wh/;1610585108;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Roketsu86;;;[];;;;text;t2_hwze9;False;False;[];;Where did I go off topic? You asked how I can know if the acting is good, I answered that I can read the emotion in their voice and when coupled with the subtitles I can understand the scene just as well as if it was in my native language. You simply don't like my answer because it doesn't fit your narrative. You didn't even bother to watch the clip I shared as an example, or you would not have a way to say that because the things *she* is talking about in the clip go so far over most peoples heads that the words essentially mean nothing. That's the whole point of the scene, and something you can completely understand without even watching the animation.;False;False;;;;1610512778;;False;{};gj2y3xm;False;t3_kw8pd1;False;True;t1_gj2xmj7;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2y3xm/;1610585108;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RapidSheep;;;[];;;;text;t2_4ubyf00u;False;False;[];;Did I say the voice acting in sub is bad? No I said you have no way of knowing if it's good or bad no matter how much you want to seem like an elitist.;False;False;;;;1610512793;;False;{};gj2y4tm;False;t3_kw8pd1;False;True;t1_gj2y0v5;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2y4tm/;1610585124;0;True;False;anime;t5_2qh22;;0;[]; -[];;;wayayoshitaka;;MAL a-amq;[];;https://myanimelist.net/profile/weiss;dark;text;t2_sazyd;False;False;[];;beside the point, you said that you can't tell if something is good or not if you're not fluent in the language spoken.;False;False;;;;1610512795;;False;{};gj2y4w0;False;t3_kw8pd1;False;True;t1_gj2xw9g;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2y4w0/;1610585125;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610512847;;False;{};gj2y7xm;False;t3_kw8pd1;False;True;t1_gj2xso8;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2y7xm/;1610585178;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;RapidSheep;;;[];;;;text;t2_4ubyf00u;False;False;[];;Sure champ.;False;False;;;;1610512879;;False;{};gj2y9vj;False;t3_kw8pd1;False;True;t1_gj2x0wj;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2y9vj/;1610585213;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;Your reading comprehension is terrible. I'm saying Asta's voice actor in the sub is bad. I'm not over here praising every performance as being amazing or good, it's just as easy to see when someone is bad.;False;False;;;;1610512886;;False;{};gj2ya9m;False;t3_kw8pd1;False;True;t1_gj2y4tm;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2ya9m/;1610585219;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RapidSheep;;;[];;;;text;t2_4ubyf00u;False;False;[];;As you do with dub.;False;False;;;;1610512901;;False;{};gj2yb5h;False;t3_kw8pd1;False;True;t1_gj2wzre;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2yb5h/;1610585236;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RapidSheep;;;[];;;;text;t2_4ubyf00u;False;False;[];;What a pointless comment.;False;False;;;;1610512944;;False;{};gj2ydic;False;t3_kw8pd1;False;True;t1_gj2x5x5;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2ydic/;1610585276;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"The point I’m trying to prove is that the amount of Japanese actors who can’t pull it off are very low. Almost every Japanese dub of any prominent show I’ve watched has everyone pulling their A game because if they didn’t, they’d be out of a job. - -The English dubbing industry on the other hand has definitely improved from the really bad dubs made over 2 decades ago, but you can still notice the bad acting. It’s becoming less and less over the years, but you can still notice a few bad ones.";False;False;;;;1610512948;;False;{};gj2ydrw;False;t3_kw8pd1;False;False;t1_gj2xrgn;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2ydrw/;1610585280;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-rika_;;;[];;;;text;t2_9paon043;False;False;[];;"Seitokai no Ichizon - -Net-juu no Susume - -The World God Only Knows - -Tsuredure Children - -Rikei ga Koi ni Ochita no de Shoumei Shite Mita.";False;False;;;;1610512981;;False;{};gj2yfo9;False;t3_kw8546;False;False;t3_kw8546;/r/anime/comments/kw8546/good_comedy_andor_romance/gj2yfo9/;1610585314;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RapidSheep;;;[];;;;text;t2_4ubyf00u;False;False;[];;You literally never specified what language to watch it in.;False;False;;;;1610513004;;False;{};gj2ygy2;False;t3_kw8pd1;False;True;t1_gj2ya9m;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2ygy2/;1610585337;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;"What is this ""Food Wars"" with Samurai for boobs?";False;False;;;;1610513027;;False;{};gj2yiaq;False;t3_kw91lg;False;True;t3_kw91lg;/r/anime/comments/kw91lg/bandai_namco_pictures_launches_shinsengumi/gj2yiaq/;1610585360;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;I mean, I disagree that the fact that I don't understand Japanese means that I can't claim that Japanese voice acting is good, if that's your point.;False;False;;;;1610513029;;1610515278.0;{};gj2yien;False;t3_kw8pd1;False;True;t1_gj2x2i9;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2yien/;1610585363;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;The comment of yours I replied to was talking about Japanese voice acting. It was implied.;False;False;;;;1610513088;;False;{};gj2ylss;False;t3_kw8pd1;False;False;t1_gj2ygy2;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2ylss/;1610585433;1;True;False;anime;t5_2qh22;;0;[]; -[];;;falkner97;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/falkner99;light;text;t2_6y92q69v;False;False;[];;"Emotion can be conveyed even without knowing the language - -Also Subs and translation exist so you can still understand the meaning of what the seiyuu say even without knowing the language - -https://youtu.be/nHd3xfDzTg8 very good example of good voice acting, even without knowing the lamguage you can feel the frustration that she have kept up for years before blowing up - -For reference heres the eng dub version https://streamable.com/n5eu - -I bet even if you dont understand the language you can tell how much of a difference there is between the 2 seiyuu - -Of course there are good dubs but how many of them are there? 2/10 anime have good dubs? Or 5/10 anime have good dubs? Or 10/10 anime have good dubs? Thats the problem with watching dubs, you have no idea whether you are getting a good one or bad one until you watched it - -At least you can get a certain quality assurance with japanese seiyuu because they are trained to be voice actors";False;False;;;;1610513145;;False;{};gj2yoz7;False;t3_kw8pd1;False;True;t3_kw8pd1;/r/anime/comments/kw8pd1/question_for_people_who_watch_sub_how_to_do_you/gj2yoz7/;1610585487;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PopularExtreme2406;;;[];;;;text;t2_4u8hhju8;False;False;[];;"Well I watched Uzaki chan and I thought it was pretty good chill show. - -I've never dropped a anime in particular from the first episode. I've never actually dropped an anime but I was having a horrendous time with ""The Severing Crime Edge."" what a terrible anime.";False;False;;;;1610513366;;False;{};gj2z1ew;False;t3_kw97il;False;True;t3_kw97il;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj2z1ew/;1610585700;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;"You're asking for what we dropped in the first episode and your example is something you say you watched all the way through? - -I have a lot. Specifically for boredom though: - -Grancrest Senki - -Ange Vierge - -Hitori no Shita - -Urahara - -Kochouki: Wakaki Nobunaga";False;False;;;;1610513375;;False;{};gj2z1vt;False;t3_kw97il;False;False;t3_kw97il;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj2z1vt/;1610585707;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;"Uhh, that one anime about the guy who writes dictionaries or something. - -Yuki Yuna is a Hero - -Madoka Magica";False;False;;;;1610513397;;1610513604.0;{};gj2z32s;False;t3_kw97il;False;True;t3_kw97il;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj2z32s/;1610585727;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;"Hm... mine would be Konosuba, Asobi Asobase and Miss Kobayashi's Dragon Maid. - -All of which are decently popular, but I just never made it past ep 1.";False;False;;;;1610513437;;False;{};gj2z5ab;False;t3_kw97il;False;True;t3_kw97il;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj2z5ab/;1610585766;1;True;False;anime;t5_2qh22;;0;[]; -[];;;asilvertintedrose;;;[];;;;text;t2_9r6wz3xk;False;False;[];;"I watched it the whole way through because I kept getting pestered about how ""it got better"" but if I had time travel I'd keep myself from watching either way";False;False;;;;1610513488;;False;{};gj2z850;True;t3_kw97il;False;True;t1_gj2z1vt;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj2z850/;1610585814;0;True;False;anime;t5_2qh22;;0;[]; -[];;;k1ritokun;;;[];;;;text;t2_k6vsk;False;False;[];;Darling in the franx,reincarnated as a slime,konosuba,Fullmetal alchemist,one piece,Naruto,hunterxhunter,code geass;False;False;;;;1610513585;;False;{};gj2zdhd;False;t3_kw97il;False;True;t3_kw97il;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj2zdhd/;1610585904;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;Back Arrow seems like it's heavily inspired by Tokusatsu.;False;False;;;;1610513685;;False;{};gj2zivl;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj2zivl/;1610585995;6;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Same for me with Kobayashi, I just realized it wasn't for me;False;False;;;;1610513730;;False;{};gj2zld7;False;t3_kw97il;False;True;t1_gj2z5ab;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj2zld7/;1610586039;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610513779;;False;{};gj2zo4o;False;t3_kw97il;False;True;t1_gj2z32s;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj2zo4o/;1610586089;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;I realized I'm not the biggest fan of moe or CGDCT in general;False;False;;;;1610513863;;False;{};gj2zsrr;False;t3_kw97il;False;True;t1_gj2zld7;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj2zsrr/;1610586181;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610513927;;False;{};gj2zwa4;False;t3_kw97il;False;True;t1_gj2z1vt;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj2zwa4/;1610586248;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Indyjunk;;;[];;;;text;t2_ejz4co;False;False;[];;Are you sure you like anime?;False;False;;;;1610514013;;False;{};gj300w3;False;t3_kw97il;False;True;t1_gj2zdhd;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj300w3/;1610586347;2;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;As someone who hasnt really watched much idol anime, i really liked the first episode of Idoly Pride so i hope it can keep up;False;False;;;;1610514038;;False;{};gj3027v;False;t3_kw83at;False;False;t1_gj2ulh9;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3027v/;1610586378;18;True;False;anime;t5_2qh22;;0;[]; -[];;;mobilegamegod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Aochhi;light;text;t2_pkuqf;False;False;[];;It's definitely not a traditional idol anime. I wasn't expecting it to be so dark but I'm here for it.;False;False;;;;1610514135;;False;{};gj307fn;False;t3_kw83at;False;False;t1_gj3027v;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj307fn/;1610586480;7;True;False;anime;t5_2qh22;;0;[]; -[];;;mobilegamegod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Aochhi;light;text;t2_pkuqf;False;False;[];;Or maybe he just doesn't like shounen?;False;False;;;;1610514203;;False;{};gj30b4c;False;t3_kw97il;False;False;t1_gj300w3;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj30b4c/;1610586549;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Fuckatnames47, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610514218;moderator;False;{};gj30c00;False;t3_kw9jl0;False;True;t3_kw9jl0;/r/anime/comments/kw9jl0/any_suggestion_from_hbo_max/gj30c00/;1610586566;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Zayed_khalid;;;[];;;;text;t2_7f1hqahz;False;False;[];;Lmfao this is me;False;False;;;;1610514222;;False;{};gj30c9g;False;t3_kw8oi3;False;False;t1_gj2vi7g;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj30c9g/;1610586570;23;True;False;anime;t5_2qh22;;0;[]; -[];;;mobilegamegod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Aochhi;light;text;t2_pkuqf;False;False;[];;Uhh, plenty. I try to sample every show that airs and most of them end up getting dropped after the first episode. I don't have time to wait for stuff to get good.;False;False;;;;1610514257;;False;{};gj30dxy;False;t3_kw97il;False;False;t3_kw97il;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj30dxy/;1610586602;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;Check out Wu Shan Wu Xing it has one of the best animation for fights;False;False;;;;1610514314;;False;{};gj30h86;False;t3_kw8hzs;False;True;t3_kw8hzs;/r/anime/comments/kw8hzs/i_need_new_stuff_to_watch/gj30h86/;1610586661;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Dropping madoka is a crime;False;False;;;;1610514440;;False;{};gj30o1a;False;t3_kw97il;False;False;t1_gj2z32s;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj30o1a/;1610586786;6;True;False;anime;t5_2qh22;;0;[]; -[];;;AYAYA_HYPERCLAP;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SadReact;light;text;t2_2f5qwkx7;False;False;[];;Yeah, like multiple times every season, you can tell if an anime is good or bad in one episode.;False;False;;;;1610514470;;False;{};gj30pkw;False;t3_kw97il;False;True;t3_kw97il;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj30pkw/;1610586816;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ENKlDU;;;[];;;;text;t2_4scvchzo;False;False;[];;Some shows there names be way to complex lol;False;False;;;;1610514480;;False;{};gj30q4n;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj30q4n/;1610586826;28;True;False;anime;t5_2qh22;;0;[]; -[];;;mcchubby;;;[];;;;text;t2_433gh;False;False;[];;"His handle is kirito-kun; he doesn't like good anime.";False;True;;comment score below threshold;;1610514550;;False;{};gj30tvc;False;t3_kw97il;False;True;t1_gj30b4c;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj30tvc/;1610586895;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;KendotsX;;;[];;;;text;t2_j6nbtko;False;False;[];;"They even have shorts out on their official youtube channel, including English subs: - -Link for episode one: https://youtu.be/DcuIZ19a7dI - -Currently there are two episodes out with 3 more to come.";False;False;;;;1610514581;;False;{};gj30vg9;False;t3_kw8xur;False;False;t3_kw8xur;/r/anime/comments/kw8xur/reminder_of_wutz_coming_marz_red/gj30vg9/;1610586928;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;I've given magical girls a ton of chances to wow me, but they just never make the cut.;False;False;;;;1610514608;;False;{};gj30wvs;False;t3_kw97il;False;True;t1_gj30o1a;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj30wvs/;1610586955;1;True;False;anime;t5_2qh22;;0;[]; -[];;;farson135;;;[];;;;text;t2_bp6v36d;False;False;[];;"I have started Gurren Lagann three times. Before anyone says it, I've been told that it gets much better, and I plan to try again at some point. - -I also dropped Texhnolyze, not because it was bad, but after one episode I knew this was one of those shows you need to be in a certain mood to watch. - -There are others, but they are all either generally bad/boring, or just not my kind of show.";False;False;;;;1610514726;;False;{};gj3134x;False;t3_kw97il;False;True;t3_kw97il;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj3134x/;1610587067;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;"I dropped Masters Of Ragnarok the first episode because I was bored and also thought I had like missed an entire season or something - -I picked it back up then dropped it again 3 episodes later";False;False;;;;1610514756;;False;{};gj314pv;False;t3_kw97il;False;False;t3_kw97il;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj314pv/;1610587097;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;"It certainly is true that magical girl are aimed at a ""specific"" group of audience and understandable to not like them but madoka is aimed at a wider audiences and has darker themes and a great plot, not only that but is written by the goat urubochi (author of fate zero and psycho pass), if you ever felt like give a last chance to magical girls be sure to pick up madoka";False;False;;;;1610514860;;False;{};gj31a70;False;t3_kw97il;False;True;t1_gj30wvs;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj31a70/;1610587195;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;"Dude I hardly ever know anyone's name even in real life with people I talk to at work every day. Especially since they go by last names instead of first names and then they'll switch between them - -It made watching Kokoro Connect initially difficult but I ignored the names and just went with personalities";False;False;;;;1610514877;;1610515074.0;{};gj31b2e;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj31b2e/;1610587210;20;True;False;anime;t5_2qh22;;0;[]; -[];;;FuruiOnara;;;[];;;;text;t2_477q2pi9;False;False;[];;Scroll down to the Studio Ghibli category for some of the best anime movies there is. They also have a crunchyroll section. There's not a Ghibli movie that I didn't like. For the crunchyroll ones I've liked Death Note, Erased, The Promised Neverland, Puella Magi and Your Lie In April to name a few good ones.;False;False;;;;1610514919;;False;{};gj31d7p;False;t3_kw9jl0;False;True;t3_kw9jl0;/r/anime/comments/kw9jl0/any_suggestion_from_hbo_max/gj31d7p/;1610587246;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Funumation is the best when it comes to wanting dubbed anime;False;False;;;;1610515030;;False;{};gj31j2x;False;t3_kw9q32;False;False;t3_kw9q32;/r/anime/comments/kw9q32/should_i_buy_funimation_or_crunchyroll_or_other/gj31j2x/;1610587349;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuckatnames47;;;[];;;;text;t2_4r8se4kw;False;True;[];;I’ll definitely tilt check these out, I appreciate it my guy 🙏;False;False;;;;1610515068;;False;{};gj31l05;True;t3_kw9jl0;False;True;t1_gj31d7p;/r/anime/comments/kw9jl0/any_suggestion_from_hbo_max/gj31l05/;1610587382;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;I've also started Gurren Lagann multiple times, it just keeps getting added back to my PTW list;False;False;;;;1610515123;;False;{};gj31nvv;False;t3_kw97il;False;True;t1_gj3134x;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj31nvv/;1610587432;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;"Honestly when you come for horror the only options are another and higurashi (shiki and junji Ito mangas if you go deeper), quite a few of the horrors you reccomend are of the ""psychological horror"" which don't contain the same tropes as of what you would consider a ""normal horror""";False;False;;;;1610515147;;False;{};gj31p5r;False;t3_kw8a3f;False;False;t3_kw8a3f;/r/anime/comments/kw8a3f/any_horror_anime_you_can_recommend/gj31p5r/;1610587454;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DeTroyes1;;;[];;;;text;t2_awtnhf;False;False;[];;"If you wait a few months, they'll be the same service. - -Then you can get Funiroll (Crunchymation?) and HiDive, and basically have 95% of all the legal anime streams out there.";False;False;;;;1610515160;;False;{};gj31ps0;False;t3_kw9q32;False;True;t3_kw9q32;/r/anime/comments/kw9q32/should_i_buy_funimation_or_crunchyroll_or_other/gj31ps0/;1610587465;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WhatAreRoads;;;[];;;;text;t2_7bf5t1gl;False;False;[];;But if you want selection I think crunchy is better;False;False;;;;1610515169;;False;{};gj31q95;False;t3_kw9q32;False;True;t1_gj31j2x;/r/anime/comments/kw9q32/should_i_buy_funimation_or_crunchyroll_or_other/gj31q95/;1610587474;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DerI3auer;;;[];;;;text;t2_2r2zzv7k;False;False;[];;Demon Slayer has great Fights ^^;False;False;;;;1610515179;;False;{};gj31qsi;False;t3_kw8hzs;False;True;t3_kw8hzs;/r/anime/comments/kw8hzs/i_need_new_stuff_to_watch/gj31qsi/;1610587483;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Sony already bought both haha - -For dubs always go to Funimation, that's their selling point";False;False;;;;1610515183;;False;{};gj31qyl;False;t3_kw9q32;False;True;t3_kw9q32;/r/anime/comments/kw9q32/should_i_buy_funimation_or_crunchyroll_or_other/gj31qyl/;1610587487;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FuruiOnara;;;[];;;;text;t2_477q2pi9;False;False;[];;No prob 🙂 It seems like all streaming services have at least a dash of anime now. If you don't mind commercials, Tubi has a much larger selection to choose from. Crunchyroll and Funimation also have free with ads anime. I'd watch everything on hbo max first, I hate commercials :);False;False;;;;1610515234;;False;{};gj31tm3;False;t3_kw9jl0;False;True;t1_gj31l05;/r/anime/comments/kw9jl0/any_suggestion_from_hbo_max/gj31tm3/;1610587533;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wondererSkull;;;[];;;;text;t2_82zu3g2y;False;False;[];;^ This. You will meet more anime characters than you will IRL so your brain already reached max capacity for remembering names if you already forgot their names.;False;False;;;;1610515370;;False;{};gj320na;False;t3_kw8oi3;False;False;t1_gj2vo9k;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj320na/;1610587665;124;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;"Basically the mc was sneaking into some old building(or a temple) with his childhood friend, he found a relic, that isekai'd him, then he just literally said ""stuff happend"" and using his knowledge from his smartphone he just straight went and became a king, ||end of the flashback||";False;False;;;;1610515396;;False;{};gj321xd;False;t3_kw9qfz;False;False;t3_kw9qfz;/r/anime/comments/kw9qfz/master_of_ragnarok_and_blessed_of_einjarhowever_u/gj321xd/;1610587688;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610515416;;False;{};gj322xp;False;t3_kw9q32;False;False;t3_kw9q32;/r/anime/comments/kw9q32/should_i_buy_funimation_or_crunchyroll_or_other/gj322xp/;1610587707;0;True;False;anime;t5_2qh22;;0;[]; -[];;;CookTeamE;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_5gvshzdl;False;False;[];;Thank you;False;False;;;;1610515428;;False;{};gj323ke;True;t3_kw9qfz;False;False;t1_gj321xd;/r/anime/comments/kw9qfz/master_of_ragnarok_and_blessed_of_einjarhowever_u/gj323ke/;1610587720;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;Funimation has the most English dubbed anime by far. Crunchyroll has more total anime, but most of theirs is subbed. HiDive and Netflix also have a good amount of dubbed anime that Funimation doesn't carry.;False;False;;;;1610515431;;False;{};gj323p1;False;t3_kw9q32;False;True;t3_kw9q32;/r/anime/comments/kw9q32/should_i_buy_funimation_or_crunchyroll_or_other/gj323p1/;1610587722;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThatGuyAgain777;;;[];;;;text;t2_5jb6i9rc;False;False;[];;Thats really good to know. I had both.;False;False;;;;1610515566;;False;{};gj32ang;False;t3_kw9q32;False;True;t1_gj31ps0;/r/anime/comments/kw9q32/should_i_buy_funimation_or_crunchyroll_or_other/gj32ang/;1610587844;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jianthepro;;;[];;;;text;t2_4henx9x1;False;False;[];;Did u just drop a masterpiece which is madoka?;False;False;;;;1610515645;;False;{};gj32enw;False;t3_kw97il;False;True;t1_gj2z32s;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj32enw/;1610587917;0;True;False;anime;t5_2qh22;;0;[]; -[];;;georgeeeboyy;;;[];;;;text;t2_69sn1nmm;False;False;[];;I use Animelab;False;False;;;;1610515710;;False;{};gj32hw8;False;t3_kw9q32;False;True;t3_kw9q32;/r/anime/comments/kw9q32/should_i_buy_funimation_or_crunchyroll_or_other/gj32hw8/;1610587974;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610515755;moderator;False;{};gj32k7b;False;t3_kw9yb8;False;False;t3_kw9yb8;/r/anime/comments/kw9yb8/demon_slayer_mugen_train/gj32k7b/;1610588015;1;False;False;anime;t5_2qh22;;0;[]; -[];;;EldrichHumanNature;;;[];;;;text;t2_94kdb5zq;False;False;[];;For action, Funimation. For slice of life and some Isekai, Crunchyroll.;False;False;;;;1610515812;;False;{};gj32n52;False;t3_kw9q32;False;True;t3_kw9q32;/r/anime/comments/kw9q32/should_i_buy_funimation_or_crunchyroll_or_other/gj32n52/;1610588066;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thegamer20001;;;[];;;;text;t2_4ha4hoy6;False;False;[];;Bro I used to sometimes forget the name of the main character 300+ chapters in when reading manga. Forgetting after a few months isn't anything bad IMO;False;False;;;;1610515812;;False;{};gj32n5m;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj32n5m/;1610588066;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PaperSauce;;;[];;;;text;t2_rnyhh0i;False;False;[];;The anime is so good it transcends its source material;False;False;;;;1610515831;;False;{};gj32o2c;False;t3_kw83at;False;False;t1_gj2tcah;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj32o2c/;1610588084;7;True;False;anime;t5_2qh22;;0;[]; -[];;;jetah;;;[];;;;text;t2_7x3ws;False;False;[];;I bet price is 14.99 a month for it.;False;False;;;;1610515863;;False;{};gj32po5;False;t3_kw9q32;False;True;t1_gj31ps0;/r/anime/comments/kw9q32/should_i_buy_funimation_or_crunchyroll_or_other/gj32po5/;1610588112;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Im_the_Keymaster;;;[];;;;text;t2_1ww9zab1;False;False;[];;not a fan of the mech designs for Back Arrow, so I'm probably gonna skip that one, but you've piqued my interest in the other two.;False;False;;;;1610515901;;False;{};gj32rm8;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj32rm8/;1610588145;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Roketsu86;;;[];;;;text;t2_hwze9;False;False;[];;It's still in theaters in Japan, so no you cannot find it legally online anywhere yet.;False;False;;;;1610515901;;False;{};gj32rmg;False;t3_kw9yb8;False;False;t3_kw9yb8;/r/anime/comments/kw9yb8/demon_slayer_mugen_train/gj32rmg/;1610588145;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610515920;;False;{};gj32slw;False;t3_kw9yb8;False;True;t3_kw9yb8;/r/anime/comments/kw9yb8/demon_slayer_mugen_train/gj32slw/;1610588163;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thegamer20001;;;[];;;;text;t2_4ha4hoy6;False;False;[];;If I may ask, how long have you been watching anime/reading manga. I used to have trouble with the names up to a year or 2 after I started. But I don't think names have been a problem for me in the last 5+ years.;False;False;;;;1610515967;;False;{};gj32uzv;False;t3_kw8oi3;False;False;t1_gj2xkr6;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj32uzv/;1610588203;25;True;False;anime;t5_2qh22;;0;[]; -[];;;DeTroyes1;;;[];;;;text;t2_awtnhf;False;False;[];;I think the basic tier membership will still stay below $10, but you won't be able to download and run multiple streams.;False;False;;;;1610515987;;False;{};gj32vyb;False;t3_kw9q32;False;True;t1_gj32po5;/r/anime/comments/kw9q32/should_i_buy_funimation_or_crunchyroll_or_other/gj32vyb/;1610588219;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Brian178;;;[];;;;text;t2_sn179;False;False;[];;Not legally, no. But.....;False;False;;;;1610516070;;False;{};gj33022;True;t3_kw9yb8;False;True;t1_gj32rmg;/r/anime/comments/kw9yb8/demon_slayer_mugen_train/gj33022/;1610588288;0;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;"I mean, it tried to adapt like 8/9 volumes in 12 episodes, so it was expected. - -After this, EMT Squared has gotten a bad reputation for giving average isekai bad adaptations.";False;False;;;;1610516108;;False;{};gj331xv;False;t3_kw9qfz;False;False;t3_kw9qfz;/r/anime/comments/kw9qfz/master_of_ragnarok_and_blessed_of_einjarhowever_u/gj331xv/;1610588324;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Roketsu86;;;[];;;;text;t2_hwze9;False;False;[];;First, we can't help you with any illegal streams. Second, anything you *do* find will be an absolutely shit camprip. It's not worth it, you will enjoy the movie much more if you wait for an official stream of some kind or the BDs.;False;False;;;;1610516174;;False;{};gj3357l;False;t3_kw9yb8;False;False;t1_gj33022;/r/anime/comments/kw9yb8/demon_slayer_mugen_train/gj3357l/;1610588381;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Brian178;;;[];;;;text;t2_sn179;False;False;[];;Your right I just hate waiting;False;False;;;;1610516238;;False;{};gj338as;True;t3_kw9yb8;False;True;t1_gj3357l;/r/anime/comments/kw9yb8/demon_slayer_mugen_train/gj338as/;1610588434;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610516568;;False;{};gj33omu;False;t3_kwa34e;False;True;t3_kwa34e;/r/anime/comments/kwa34e/pui_pui_molcar_yes_this_is_an_anime/gj33omu/;1610588719;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Handsome-_-awkward;;;[];;;;text;t2_52f0dxfa;False;False;[];;Sao;False;False;;;;1610516669;;False;{};gj33tgs;False;t3_kw97il;False;True;t3_kw97il;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj33tgs/;1610588812;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MusubiKazesaru;;;[];;;;text;t2_oh8ti;False;False;[];;Try the fairly similar Koutetsujou no Kabaneri. Same studio, same director, and it's even better looking just with more Japan, more steampunk, more trains, and glowing zombies.;False;False;;;;1610516675;;False;{};gj33tr3;False;t3_kw8hzs;False;False;t3_kw8hzs;/r/anime/comments/kw8hzs/i_need_new_stuff_to_watch/gj33tr3/;1610588817;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ShadowthecatXD;;;[];;;;text;t2_lpruw;False;False;[];;"Probably about 5 years of ""serious"" watching and longer than that for manga. That's why it's frustrating not remembering most names even for my favorite shows.";False;False;;;;1610516702;;False;{};gj33v0h;False;t3_kw8oi3;False;False;t1_gj32uzv;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj33v0h/;1610588837;42;True;False;anime;t5_2qh22;;0;[]; -[];;;KendotsX;;;[];;;;text;t2_j6nbtko;False;False;[];;"Don't forget [Vlad Love!](https://youtu.be/q2im3P4AiHc) It's amazing, and I'm looking forward for it to continue next month the most. I love my thirsty vampire girls' yuri, and the comedy is great. - -Aside from that Back Arrow bored me, I'm not into Mecha really, but I thought I'd give it a try, and it was quite boring. Having finished the first episode I couldn't care less about any of the characters or events. Definitely not going back for episode 2. - - I highly enjoyed Egg Priority though, it was a great refresher. Anime that deal with social and personal issues aren't that common, and ones that do it in a metaphorical surreal manner are really rare. I think FLCL did it well, and if this show pulls what the premier promises then it can be even better. - -I'm not interested in pretty boys, or sports, so I never bothered with Skate and the other volley ball anime by David Productions. Although, for anyone who liked Skate, or Run with the Wind from last year, maybe give that volley ball anime a try too.";False;False;;;;1610516765;;1610516948.0;{};gj33y7p;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj33y7p/;1610588894;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Yri4lf12;;;[];;;;text;t2_6bfipjd7;False;False;[];;Tamayura for being too boring.;False;False;;;;1610516792;;False;{};gj33zi4;False;t3_kw97il;False;True;t3_kw97il;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj33zi4/;1610588916;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Just adding with the recent news that the movie [will be out in Australia/new zealand](https://youtu.be/5fyZnbpYh2Y) soon, they didn't announce a date yet but will disclose it soon - -Usually is the same date for the worldwide release";False;False;;;;1610516874;;False;{};gj343hl;False;t3_kw9yb8;False;True;t1_gj338as;/r/anime/comments/kw9yb8/demon_slayer_mugen_train/gj343hl/;1610588983;2;True;False;anime;t5_2qh22;;0;[]; -[];;;extrord;;;[];;;;text;t2_3xbcg18j;False;False;[];;Get both if you want to watch seasonal stuff, a lot of the new animes are only on one. crunchyroll is better for the main franchises (naruto, one piece, etc) because they normally have more episodes for those, funimation has more dub related content.;False;False;;;;1610516909;;False;{};gj34578;False;t3_kw9q32;False;True;t3_kw9q32;/r/anime/comments/kw9q32/should_i_buy_funimation_or_crunchyroll_or_other/gj34578/;1610589012;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Human_Shoganai;;;[];;;;text;t2_6535cww;False;False;[];;Stole the words right out of my fingers.;False;False;;;;1610516918;;False;{};gj345lu;False;t3_kw8oi3;False;False;t1_gj2vi7g;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj345lu/;1610589019;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Here_For_Memes_92;;;[];;;;text;t2_3p47rwje;False;False;[];;Where is this news?;False;False;;;;1610517221;;False;{};gj34kjk;False;t3_kw9q32;False;True;t1_gj31ps0;/r/anime/comments/kw9q32/should_i_buy_funimation_or_crunchyroll_or_other/gj34kjk/;1610589277;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610517417;moderator;False;{};gj34u1n;False;t3_kwad2w;False;True;t3_kwad2w;/r/anime/comments/kwad2w/new_to_anime_and_need_suggestions/gj34u1n/;1610589442;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi icedblend, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610517417;moderator;False;{};gj34u2o;False;t3_kwad2w;False;True;t3_kwad2w;/r/anime/comments/kwad2w/new_to_anime_and_need_suggestions/gj34u2o/;1610589444;1;False;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 150, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Thank you stranger. Shows the award.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'icon_width': 2048, 'id': 'award_f44611f1-b89e-46dc-97fe-892280b13b82', 'is_enabled': True, 'is_new': False, 'name': 'Helpful', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;fearoftheslayer;;;[];;;;text;t2_9rvs6ryh;False;False;[];;Unless you watch Naruto and forget what name the main character is then you should not worry.;False;False;;;;1610517440;;False;{};gj34v4s;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj34v4s/;1610589463;249;True;False;anime;t5_2qh22;;1;[]; -[];;;thegamer20001;;;[];;;;text;t2_4ha4hoy6;False;False;[];;Oh dang. That's actually kinda weird then. I don't know what languages you know (aside from English, of course) but maybe Japanese just has some sounds that don't really exist in your languages. So it could just be a language barrier.;False;False;;;;1610517468;;False;{};gj34wi8;False;t3_kw8oi3;False;False;t1_gj33v0h;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj34wi8/;1610589489;10;True;False;anime;t5_2qh22;;0;[]; -[];;;SirWeebBro;;;[];;;;text;t2_5b7zt1fd;False;False;[];;people forgetting about the most anticipated Ex Arm smh;False;False;;;;1610517515;;False;{};gj34yox;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj34yox/;1610589528;165;True;False;anime;t5_2qh22;;0;[]; -[];;;DeTroyes1;;;[];;;;text;t2_awtnhf;False;False;[];;Sony [bought Crunchyroll in December](https://techcrunch.com/2020/12/10/att-sells-crunchyroll-to-sony/). They already own Funimation. It is highly unlikely Sony will keep the two services seperate, but will instead almost certainly merge them.;False;False;;;;1610517522;;1610517860.0;{};gj34z0g;False;t3_kw9q32;False;True;t1_gj34kjk;/r/anime/comments/kw9q32/should_i_buy_funimation_or_crunchyroll_or_other/gj34z0g/;1610589534;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;Code Geass, Parasyte, Steins Gate, Fullmetal Alchemist Brotherhood;False;False;;;;1610517531;;False;{};gj34zh4;False;t3_kwad2w;False;False;t3_kwad2w;/r/anime/comments/kwad2w/new_to_anime_and_need_suggestions/gj34zh4/;1610589543;6;True;False;anime;t5_2qh22;;0;[]; -[];;;SCHLEEMEECKLEZ;;;[];;;;text;t2_63otqi5t;False;False;[];;One piece;False;False;;;;1610517550;;False;{};gj350d1;False;t3_kwad2w;False;True;t3_kwad2w;/r/anime/comments/kwad2w/new_to_anime_and_need_suggestions/gj350d1/;1610589558;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwakemoliboi256;;;[];;;;text;t2_410j1zxs;False;False;[];;Richard sherwin;False;False;;;;1610517639;;False;{};gj354mn;False;t3_kwae1e;False;True;t3_kwae1e;/r/anime/comments/kwae1e/if_this_guy_was_in_a_manga_or_anime_what_would/gj354mn/;1610589636;1;True;False;anime;t5_2qh22;;0;[]; -[];;;littyliterature;;;[];;;;text;t2_32ja93ps;False;False;[];;Teddy Baldwin;False;False;;;;1610517690;;False;{};gj35710;False;t3_kwae1e;False;True;t3_kwae1e;/r/anime/comments/kwae1e/if_this_guy_was_in_a_manga_or_anime_what_would/gj35710/;1610589677;1;True;False;anime;t5_2qh22;;0;[]; -[];;;georgeeeboyy;;;[];;;;text;t2_69sn1nmm;False;False;[];;"You delve yourself into a deep web of content here. - -There’s a whole range of shows! For someone who is of similar age (and who loves some so much I got tattoos of them), there’s plenty to choose from. If you enjoyed AoT, I could suggest Fire Force, Naruto, Tokyo Ghoul, One Punch Man, My Hero Academia, Blue Exorcist, Goblin Slayer, Hunter x Hunter, Black Clover, Full Metal Alchemist: Brotherhood, Demon Slayer, Death Note.... SO MANY";False;False;;;;1610517717;;False;{};gj3589b;False;t3_kwad2w;False;True;t3_kwad2w;/r/anime/comments/kwad2w/new_to_anime_and_need_suggestions/gj3589b/;1610589705;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zid;;;[];;;;text;t2_3edra;False;False;[];;Same, god knows if she's chihiro, chiiro, hichiro, chikiro if she hasn't been mentioned this month.;False;False;;;;1610517728;;False;{};gj358pm;False;t3_kw8oi3;False;False;t1_gj2xkr6;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj358pm/;1610589714;180;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;True;[];;It was adapted from a manga. But either way, I Want to give a shout to some lesser Anime. I mean we all know Ex-Arm is gonna be AOTY.;False;False;;;;1610517730;;False;{};gj358su;True;t3_kw83at;False;False;t1_gj34yox;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj358su/;1610589716;97;True;False;anime;t5_2qh22;;0;[]; -[];;;aquamarine271;;;[];;;;text;t2_cgtxq;False;True;[];;"I recommend FullMetal Alchemist Brotherhood. - -Also, unpopular opinion- if you’re up for a nonviolent slice of life show and if you want to cry, Clannad season 1 and 2.";False;False;;;;1610517756;;False;{};gj35a08;False;t3_kwad2w;False;True;t1_gj34zh4;/r/anime/comments/kwad2w/new_to_anime_and_need_suggestions/gj35a08/;1610589741;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Seriously, the ceiling for Wonder Egg Priority is the fucking edge of the universe. SK8 Infinity looks really dope, but clearly without much substance to it, that’s fine though ofc when bones is animating it. For Back Arrow, well I haven’t seen it but now I’ll check it out since you have it in such good company.;False;False;;;;1610517783;;False;{};gj35bac;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj35bac/;1610589766;31;True;False;anime;t5_2qh22;;0;[]; -[];;;skeeedzzz;;;[];;;;text;t2_13iktbvc;False;False;[];;"Devilman Crybaby, Parasyte, Code Geass, Death Note, Yuyu Hakusho, Kaguya-sama: Love is war, Full metal alchemist: brotherhood - -here are some of the most praised and popular anime in the recent years. Yuyu hakusho is pretty old, but it’s a solid introduction to battle shonens. You can’t go wrong with any of those series";False;False;;;;1610517790;;False;{};gj35bm4;False;t3_kwad2w;False;True;t3_kwad2w;/r/anime/comments/kwad2w/new_to_anime_and_need_suggestions/gj35bm4/;1610589772;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610517846;moderator;False;{};gj35ebg;False;t3_kwagui;False;True;t3_kwagui;/r/anime/comments/kwagui/wheres_the_unsub_button_how_can_i_unsub_help/gj35ebg/;1610589822;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Here_For_Memes_92;;;[];;;;text;t2_3p47rwje;False;False;[];;Oh thats awesome. Thanks;False;False;;;;1610517859;;False;{};gj35evx;False;t3_kw9q32;False;True;t1_gj34z0g;/r/anime/comments/kw9q32/should_i_buy_funimation_or_crunchyroll_or_other/gj35evx/;1610589833;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GohanmySon;;;[];;;;text;t2_1ybl4y2l;False;False;[];;"Trust me and watch these: - -Gintama, -Monster (Dr.Tenma) and -Pyscho-Pass";False;False;;;;1610517891;;False;{};gj35geg;False;t3_kwad2w;False;False;t3_kwad2w;/r/anime/comments/kwad2w/new_to_anime_and_need_suggestions/gj35geg/;1610589862;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610517905;;False;{};gj35h1h;False;t3_kwagki;False;True;t3_kwagki;/r/anime/comments/kwagki/whats_a_anime_that_will_make_me_cry/gj35h1h/;1610589875;2;True;False;anime;t5_2qh22;;0;[]; -[];;;zugz12;;;[];;;;text;t2_4bv8hkfm;False;False;[];;Huh really never would of thought that;False;False;;;;1610517949;;False;{};gj35j2w;True;t3_kwagki;False;True;t1_gj35h1h;/r/anime/comments/kwagki/whats_a_anime_that_will_make_me_cry/gj35j2w/;1610589912;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BoopTheChicken;;;[];;;;text;t2_82olxgk9;False;False;[];;You an never unsub. One might say you are...trapped.;False;False;;;;1610517961;;False;{};gj35jm7;False;t3_kwagui;False;True;t3_kwagui;/r/anime/comments/kwagui/wheres_the_unsub_button_how_can_i_unsub_help/gj35jm7/;1610589921;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610517982;;False;{};gj35kkp;False;t3_kwagki;False;True;t1_gj35h1h;/r/anime/comments/kwagki/whats_a_anime_that_will_make_me_cry/gj35kkp/;1610589937;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cojoB_;;;[];;;;text;t2_27b35u6d;False;False;[];;Wonder egg I don't think will be slept on, if it is then that's a crime. Sk8 infinity is very cool kinda like beyblade over the top cool (it's similar).;False;False;;;;1610518015;;False;{};gj35m4r;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj35m4r/;1610589967;544;True;False;anime;t5_2qh22;;0;[]; -[];;;jotenha1;;;[];;;;text;t2_10vbg1;False;False;[];;Shield hero;False;False;;;;1610518036;;False;{};gj35n5u;False;t3_kwah37;False;True;t3_kwah37;/r/anime/comments/kwah37/wondering_if_such_anime_exists/gj35n5u/;1610589985;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"[Oregairu](https://myanimelist.net/anime/14813/Yahari_Ore_no_Seishun_Love_Comedy_wa_Machigatteiru) - -But there are tons of anime that deal with that, they just vary in quality and genre";False;False;;;;1610518076;;False;{};gj35p1c;False;t3_kwah37;False;False;t3_kwah37;/r/anime/comments/kwah37/wondering_if_such_anime_exists/gj35p1c/;1610590022;14;True;False;anime;t5_2qh22;;0;[]; -[];;;hexxerman;;;[];;;;text;t2_4pa2r2uw;False;False;[];;"Shield Hero, Goblin Slayer, and Berserk are probably the closest thing you'll get to that. I can't really recommend the Berserk anime though since the pacing is kinda weird. Only the late 90s one holds up well - -Yu Gi Oh 5ds as well I guess. Cuz like, card games are epic.";False;False;;;;1610518124;;False;{};gj35r7b;False;t3_kwah37;False;False;t3_kwah37;/r/anime/comments/kwah37/wondering_if_such_anime_exists/gj35r7b/;1610590066;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sharkbayer1;;;[];;;;text;t2_3x8xbsgs;False;False;[];;Not an anime;False;False;;;;1610518130;;False;{};gj35rh9;False;t3_kwagl1;False;True;t3_kwagl1;/r/anime/comments/kwagl1/primal_by_genndy_tartakovsky_2019/gj35rh9/;1610590073;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ElectronicRhubarb841;;;[];;;;text;t2_850k0mh5;False;True;[];;I’m sorry what would you call it? I’m not an expert. Says Animation on IMDb...;False;False;;;;1610518204;;False;{};gj35ux9;False;t3_kwagl1;False;True;t1_gj35rh9;/r/anime/comments/kwagl1/primal_by_genndy_tartakovsky_2019/gj35ux9/;1610590138;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Environmental-Leg-91;;;[];;;;text;t2_79r0zdjp;False;False;[];;Have you watched rascal does not dream of bunny girl senpai?;False;False;;;;1610518316;;False;{};gj36000;False;t3_kwagki;False;True;t3_kwagki;/r/anime/comments/kwagki/whats_a_anime_that_will_make_me_cry/gj36000/;1610590231;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;True;[];;Rascal does not dream of Bunny Girl Senpai, and especially its sequel movie, Rascal Does Not Dream of a Dreaming Girl;False;False;;;;1610518335;;False;{};gj360tw;False;t3_kwagki;False;True;t3_kwagki;/r/anime/comments/kwagki/whats_a_anime_that_will_make_me_cry/gj360tw/;1610590247;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hexxerman;;;[];;;;text;t2_4pa2r2uw;False;False;[];;"Well it's hard to really recommend anime based off of the emotions they'll make you feel. I know I cried watching Castle in The Sky from Gibli, Redline, Gurren Lagaan, and a few others that are slipping my mind but none of these are inherently sad. - -I guess I would recommend the Chainsaw Man, Berserk, and Fire Punch manga since these all tend to make people feel something but these aren't inherently sad either but some parts of them are and manage to hit pretty hard.";False;False;;;;1610518386;;False;{};gj3635k;False;t3_kwagki;False;True;t3_kwagki;/r/anime/comments/kwagki/whats_a_anime_that_will_make_me_cry/gj3635k/;1610590294;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yeoshua82;;;[];;;;text;t2_1h96g4zg;False;False;[];;Yeah. You should be watching.;False;False;;;;1610518416;;False;{};gj364ir;False;t3_kw83at;False;False;t1_gj2u7lj;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj364ir/;1610590318;59;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610518442;moderator;False;{};gj365p2;False;t3_kwam0a;False;True;t3_kwam0a;/r/anime/comments/kwam0a/where_to_watch_banana_fish_dubbed/gj365p2/;1610590341;1;False;False;anime;t5_2qh22;;0;[]; -[];;;VariousMeet;;;[];;;;text;t2_63veb3s5;False;False;[];;Back arrow and Sk8 seem really generic, only good one IMO is Wonder Egg Priority.;False;False;;;;1610518468;;False;{};gj366xj;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj366xj/;1610590362;11;True;False;anime;t5_2qh22;;0;[]; -[];;;KearLoL;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/vollizie;light;text;t2_46k87az;False;False;[];;I struggle to remember Japanese names a lot, but with anime like AoT and FMA:B. it's much easier to remember names from them since they're so much simpler.;False;False;;;;1610518533;;False;{};gj369ub;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj369ub/;1610590415;76;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;Same! I don't know why psycho pass specifically but I could never remember all the names;False;False;;;;1610518559;;False;{};gj36b2r;False;t3_kw8oi3;False;False;t1_gj2xqx1;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj36b2r/;1610590438;14;True;False;anime;t5_2qh22;;0;[]; -[];;;onefootstout;;;[];;;;text;t2_qyi54;False;False;[];;Pretty sure it was never dubbed, it was an Amazon Prime exclusive and they don't dub shows;False;False;;;;1610518571;;False;{};gj36bmc;False;t3_kwam0a;False;True;t3_kwam0a;/r/anime/comments/kwam0a/where_to_watch_banana_fish_dubbed/gj36bmc/;1610590449;7;True;False;anime;t5_2qh22;;0;[]; -[];;;QuieroEstar;;;[];;;;text;t2_8tud3fvw;False;False;[];;You can't. It was never dubbed;False;False;;;;1610518719;;False;{};gj36iar;False;t3_kwam0a;False;True;t3_kwam0a;/r/anime/comments/kwam0a/where_to_watch_banana_fish_dubbed/gj36iar/;1610590567;6;True;False;anime;t5_2qh22;;0;[]; -[];;;larana1192;;MAL;[];;http://myanimelist.net/animelist/thefrog1192;dark;text;t2_p7lmo;False;False;[];;This anime became popular on Japanese Twitter community even each episode is like 3 minutes;False;False;;;;1610518737;;False;{};gj36j4j;False;t3_kwa34e;False;False;t3_kwa34e;/r/anime/comments/kwa34e/pui_pui_molcar_yes_this_is_an_anime/gj36j4j/;1610590581;22;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610518742;moderator;False;{};gj36jdm;False;t3_kwaoky;False;True;t3_kwaoky;/r/anime/comments/kwaoky/does_anyone_know_the_name_of_this_anime/gj36jdm/;1610590586;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Boerkerino;;;[];;;;text;t2_5dq0lywi;False;False;[];;AOTS no question;False;False;;;;1610518759;;False;{};gj36k45;False;t3_kwa34e;False;False;t3_kwa34e;/r/anime/comments/kwa34e/pui_pui_molcar_yes_this_is_an_anime/gj36k45/;1610590601;15;True;False;anime;t5_2qh22;;0;[]; -[];;;VariousMeet;;;[];;;;text;t2_63veb3s5;False;False;[];;It makes it even worse when you have people calling them different names constantly. I can never instinctually tell what the first or last name of a character is lol.;False;False;;;;1610518784;;False;{};gj36lav;False;t3_kw8oi3;False;False;t1_gj2vi7g;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj36lav/;1610590622;96;True;False;anime;t5_2qh22;;0;[]; -[];;;Solestan;;;[];;;;text;t2_131bw7qm;False;False;[];;Chobits?;False;False;;;;1610518800;;False;{};gj36m1j;False;t3_kwaoky;False;True;t3_kwaoky;/r/anime/comments/kwaoky/does_anyone_know_the_name_of_this_anime/gj36m1j/;1610590636;3;True;False;anime;t5_2qh22;;0;[]; -[];;;skeeedzzz;;;[];;;;text;t2_13iktbvc;False;False;[];;Devilman Crybaby for sure. It goes in depth in many social issues and let’s you on the side-line watching this fictional world crumble to its ruins, knowing damn well ours will be like that too if humanity doesn’t change;False;False;;;;1610518965;;False;{};gj36tga;False;t3_kwagki;False;True;t3_kwagki;/r/anime/comments/kwagki/whats_a_anime_that_will_make_me_cry/gj36tga/;1610590769;0;True;False;anime;t5_2qh22;;0;[]; -[];;;-rika_;;;[];;;;text;t2_9paon043;False;False;[];;"There are some anime i watched and i cried but the one that stuck to me was - -Maquia: When the Promised Flower Blooms - -Wolf Children - -Bunny girl senpai movie - -Irozuku Sekai no Ashita kara - -Plastic memories - -Kono Yuusha ga Ore Tueee Kuse ni Shinchou Sugiru(isnt really drama but it made me tear up in the end)";False;False;;;;1610518994;;False;{};gj36usb;False;t3_kwagki;False;False;t3_kwagki;/r/anime/comments/kwagki/whats_a_anime_that_will_make_me_cry/gj36usb/;1610590793;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sght62;;;[];;;;text;t2_4ztn10y;False;False;[];;OMG THATS IT!!! THANK U I LITERALLY BEEN TRYNA FIGURE IT OUT FOR YEARS;False;False;;;;1610518995;;False;{};gj36uta;True;t3_kwaoky;False;True;t1_gj36m1j;/r/anime/comments/kwaoky/does_anyone_know_the_name_of_this_anime/gj36uta/;1610590793;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AwaySpell;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/awayspell;light;text;t2_ij2p0qc;False;False;[];;"Sk8 and Wonder Egg are both fantastic. As someone who generally only follows airing anime when they're originals, having any one would've been a delight, but both of them at the same time is really setting the bar for 2021 anime high. Watch Sk8 for endearing and entertaining characters and beautiful animation! As for Wonder Egg, it's looking to be a tragic and gorgeous mindfuck. There's so much potential here. - -Back Arrow didn't impress me as much as the other two, but it was still so much more fun than I could've guessed. Genuinely made me laugh. And as the only one of the three with 2 cours instead of 1, it could go to some interesting places.";False;False;;;;1610519002;;False;{};gj36v52;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj36v52/;1610590798;62;True;False;anime;t5_2qh22;;0;[]; -[];;;Storm137;;;[];;;;text;t2_ogrzx;False;False;[];;Don't forget the Surfing anime!;False;False;;;;1610519004;;False;{};gj36v7c;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj36v7c/;1610590799;11;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610519093;moderator;False;{};gj36z60;False;t3_kwarne;False;True;t3_kwarne;/r/anime/comments/kwarne/what_anime_have_good_fight_scenes_where_there_is/gj36z60/;1610590873;1;False;False;anime;t5_2qh22;;0;[]; -[];;;tomytronics;;;[];;;;text;t2_y5py1;False;False;[];;If you forget the names easily, the anime was probably not interesting or fappable enough;False;False;;;;1610519172;;False;{};gj372lr;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj372lr/;1610590933;0;True;False;anime;t5_2qh22;;0;[]; -[];;;KendotsX;;;[];;;;text;t2_j6nbtko;False;False;[];;"Fate/Zero - -Hunter x Hunter - -Monogatari";False;False;;;;1610519255;;False;{};gj3768k;False;t3_kwarne;False;True;t3_kwarne;/r/anime/comments/kwarne/what_anime_have_good_fight_scenes_where_there_is/gj3768k/;1610590998;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sharkbayer1;;;[];;;;text;t2_3x8xbsgs;False;False;[];;An american cartoon;False;False;;;;1610519294;;False;{};gj377x0;False;t3_kwagl1;False;True;t1_gj35ux9;/r/anime/comments/kwagl1/primal_by_genndy_tartakovsky_2019/gj377x0/;1610591029;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kungfuesday;;;[];;;;text;t2_qtjm1;False;False;[];;I saw a preview for Sk8 and immediately got excited. Some of my favorite movies from the 80s/90s were the cheesy skate movies like Thrashin’ and Gleaming the Cube. I was hyped. Then I saw it is only on Funimation and got really sad.;False;False;;;;1610519330;;False;{};gj379io;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj379io/;1610591057;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Bro I don’t remember any of the names of these randos in slime Isekai besides Rimuru, it’s definitely normal;False;False;;;;1610519348;;False;{};gj37abe;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj37abe/;1610591071;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Solestan;;;[];;;;text;t2_131bw7qm;False;False;[];;I swear the single only reason i remember that is because of the location of her power button....;False;False;;;;1610519373;;False;{};gj37bgb;False;t3_kwaoky;False;True;t1_gj36uta;/r/anime/comments/kwaoky/does_anyone_know_the_name_of_this_anime/gj37bgb/;1610591092;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hexxerman;;;[];;;;text;t2_4pa2r2uw;False;False;[];;"Both services honestly aren't worth the money. Their web players blow dick and have pretty sub par features. Obviously you should support the companies working on the anime you like so you get more, but I would honestly just wait for the blurays digitally or physically over anything else. - -If there's a show you really wanna watch I would get a subscription to binge it once it is done and then cancel the subscription to save money or just buy the manga.";False;False;;;;1610519380;;False;{};gj37brf;False;t3_kw9q32;False;True;t3_kw9q32;/r/anime/comments/kw9q32/should_i_buy_funimation_or_crunchyroll_or_other/gj37brf/;1610591097;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"I know all best girls by name. The boys are all MCkun. - -But joking aside: Of course. If you watch just 10 in a season, that's like 50-200 characters (depending on the types of anime), some of whom you see like 5 minutes. - -For a lot of anime I only remember the 1 or 2 most important. - -But it really depends... I looked at my list, for a test of memory, and it seems really weird and random; - -There are anime that I watched a few years ago, for which I remember like 10 characters, while shows I watched last seasons I only remember 3-4, even though I liked them more.";False;False;;;;1610519488;;False;{};gj37gl8;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj37gl8/;1610591179;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;FuruiOnara;;;[];;;;text;t2_477q2pi9;False;False;[];;Grave Of The Fireflies.;False;False;;;;1610519495;;False;{};gj37gvf;False;t3_kwagki;False;True;t3_kwagki;/r/anime/comments/kwagki/whats_a_anime_that_will_make_me_cry/gj37gvf/;1610591185;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lodju;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Lodju;light;text;t2_bl7gcqn;False;True;[];;Are you telling me that the ten sentences the character spews out while throwing a punch feels out of place?;False;False;;;;1610519594;;False;{};gj37l6j;False;t3_kwarne;False;True;t3_kwarne;/r/anime/comments/kwarne/what_anime_have_good_fight_scenes_where_there_is/gj37l6j/;1610591258;3;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;Probably going to be crucified, but Gintama. That said, I might give it another go in the future as there are some funny clips.;False;False;;;;1610519667;;False;{};gj37oef;False;t3_kw97il;False;True;t3_kw97il;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj37oef/;1610591318;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Ryboiii;;;[];;;;text;t2_o0e1a;False;False;[];;Sk8 The Infinity starting off pretty strong, the animation style kinda reminds me of ID:Invaded's a bit;False;False;;;;1610519693;;False;{};gj37piy;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj37piy/;1610591339;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"The Monogatari Series - -Evangelion??? - -Possibly the currently airing Wonder Egg Priority";False;False;;;;1610519726;;False;{};gj37qy7;False;t3_kwah37;False;True;t3_kwah37;/r/anime/comments/kwah37/wondering_if_such_anime_exists/gj37qy7/;1610591364;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rizwan325;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/rizwan325;light;text;t2_1fe4qlcl;False;False;[];;You should try ore monogatari. I enjoyed this and tonikawa too;False;False;;;;1610519879;;False;{};gj37xpb;False;t3_kwavoc;False;True;t3_kwavoc;/r/anime/comments/kwavoc/ive_been_looking_for_an_anime_similar_to_tonikawa/gj37xpb/;1610591480;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;"Cowboy Bebop - -Not anime but trying watching Castlevania on Netflix";False;False;;;;1610519882;;False;{};gj37xty;False;t3_kwarne;False;True;t3_kwarne;/r/anime/comments/kwarne/what_anime_have_good_fight_scenes_where_there_is/gj37xty/;1610591482;1;True;False;anime;t5_2qh22;;0;[]; -[];;;some_ow_weeb;;;[];;;;text;t2_9kmp5jqe;False;False;[];;Black clover has some;False;False;;;;1610519986;;False;{};gj382dl;False;t3_kwarne;False;True;t3_kwarne;/r/anime/comments/kwarne/what_anime_have_good_fight_scenes_where_there_is/gj382dl/;1610591563;1;True;False;anime;t5_2qh22;;0;[]; -[];;;StainedCumSock;;;[];;;;text;t2_2t80m8vz;False;False;[];;That was the first anime where I remember all the times;False;False;;;;1610520040;;False;{};gj384pt;False;t3_kw8oi3;False;False;t1_gj36b2r;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj384pt/;1610591603;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Wonder egg will probably be the most popular of all those here - -Already is from the episode 1 numbers, and still has more than a day to go";False;False;;;;1610520116;;False;{};gj387xy;False;t3_kw83at;False;False;t1_gj35m4r;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj387xy/;1610591662;208;True;False;anime;t5_2qh22;;0;[]; -[];;;MusubiKazesaru;;;[];;;;text;t2_oh8ti;False;False;[];;Fate/Zero has plenty of fight talk tbh, Kiritsugu is the exception.;False;False;;;;1610520196;;False;{};gj38bce;False;t3_kwarne;False;True;t1_gj3768k;/r/anime/comments/kwarne/what_anime_have_good_fight_scenes_where_there_is/gj38bce/;1610591725;3;True;False;anime;t5_2qh22;;0;[]; -[];;;plopperi;;;[];;;;text;t2_7du1vmy8;False;False;[];;I was very very pleasantly surprised with wonder egg, i thought it would be some generic cgdct anime but i was completely wrong. Also the animation is absolutely beautiful.;False;False;;;;1610520273;;1610520568.0;{};gj38emg;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj38emg/;1610591783;9;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610520346;moderator;False;{};gj38hpl;False;t3_kwb24i;False;True;t3_kwb24i;/r/anime/comments/kwb24i/how_many_parts_to_naruto/gj38hpl/;1610591838;1;False;False;anime;t5_2qh22;;0;[]; -[];;;MusubiKazesaru;;;[];;;;text;t2_oh8ti;False;False;[];;"There's two seasons. Naruto and Naruto Shippuden. Any breakdown into seasons is a western release thing. - -Naruto is first, then Shippuuden, then The Last (a movie), then Boruto (which is also a movie or you can do the TV series) - -Boruto is pretty bad overall and is like 90% filler. Just watch the movie.";False;False;;;;1610520475;;False;{};gj38n64;False;t3_kwb24i;False;False;t3_kwb24i;/r/anime/comments/kwb24i/how_many_parts_to_naruto/gj38n64/;1610591935;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Snitchez118;;;[];;;;text;t2_391vrddy;False;False;[];;First two episodes are filler, it was meant as a celebration for the manga readers. So, you can start with episode 3 and be just fine. Most people, even fans of the show, view the first two episodes as pretty bad.;False;False;;;;1610520635;;False;{};gj38tw7;False;t3_kw97il;False;True;t1_gj37oef;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj38tw7/;1610592056;2;True;False;anime;t5_2qh22;;0;[]; -[];;;xNATSUKIx102;;;[];;;;text;t2_3cbuw1yr;False;False;[];;Got it, thanks for the help! Plus I heard about the Boruto thing hence why I asked.;False;False;;;;1610520636;;False;{};gj38twq;True;t3_kwb24i;False;True;t1_gj38n64;/r/anime/comments/kwb24i/how_many_parts_to_naruto/gj38twq/;1610592056;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Alik013;;;[];;;;text;t2_3c8mctnf;False;False;[];;One punch man;False;False;;;;1610520666;;False;{};gj38v6c;False;t3_kwarne;False;True;t3_kwarne;/r/anime/comments/kwarne/what_anime_have_good_fight_scenes_where_there_is/gj38v6c/;1610592079;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dlandzz;;;[];;;;text;t2_3eqfo5ex;False;False;[];;Naruto shippuden is a continuation of naruto (first season). And there are many arcs through each. There are around 700+ episodes in total of both shows, so 26 seasons sounds right.;False;False;;;;1610520749;;False;{};gj38ymn;False;t3_kwb24i;False;True;t3_kwb24i;/r/anime/comments/kwb24i/how_many_parts_to_naruto/gj38ymn/;1610592141;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MusubiKazesaru;;;[];;;;text;t2_oh8ti;False;False;[];;"Yeah, it's kind of mess and it just follows the trend of cash-in sequels not living up to the original series. - -If you're up for it and you want more, they did adapt some stuff Kishimoto did as a short run manga and a one shot within Boruto, and those are like maybe a 5 ep arc and 1 ep in addition to that movie. The Last takes place two years after the main series ends but prior to its final epilogue chapter and is canon. - -Check out filler lists for Naruto and Shippuden. Naruto mostly has its filler after 135 but there's exceptions and Shippuden's is mixed in, though there's some good in both, you might decide you like some of it and think it's worth watching.";False;False;;;;1610520848;;False;{};gj392sh;False;t3_kwb24i;False;True;t1_gj38twq;/r/anime/comments/kwb24i/how_many_parts_to_naruto/gj392sh/;1610592214;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Junior-Cloud4237;;;[];;;;text;t2_7cfwc4tg;False;False;[];;That’s the discord link for the group;False;False;;;;1610520854;;False;{};gj3931b;True;t3_kwb5h6;False;True;t1_gj3919q;/r/anime/comments/kwb5h6/black_doves_founding_stage/gj3931b/;1610592219;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pulioohippo;;;[];;;;text;t2_6441wrlb;False;False;[];;Thanks I’ll definitely check it out!;False;False;;;;1610521043;;False;{};gj39ava;True;t3_kwavoc;False;True;t1_gj37xpb;/r/anime/comments/kwavoc/ive_been_looking_for_an_anime_similar_to_tonikawa/gj39ava/;1610592361;1;True;False;anime;t5_2qh22;;0;[]; -[];;;voornaam1;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://www.anime-planet.com/users/Max4444;dark;text;t2_3yiwp1ue;False;False;[];;"Besides anime I watched 1 episode of when they were airing and anime I couldn't find anything past episode 1 subbed, - -Diabolik Lovers - -Dogs and Scissors";False;False;;;;1610521081;;False;{};gj39chg;False;t3_kw97il;False;True;t3_kw97il;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj39chg/;1610592389;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;I remember Akane, Kogami and Makishima and that's it;False;False;;;;1610521148;;False;{};gj39f89;False;t3_kw8oi3;False;False;t1_gj2xqx1;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj39f89/;1610592440;62;True;False;anime;t5_2qh22;;0;[]; -[];;;Flugelhorngatorade;;;[];;;;text;t2_51mvjj1z;False;False;[];;"Tsuki ga kirei - -Kimi no na wa (movie) - -Tenki no ko (movie) - -Kimi no suizou wo tabetai (movie) - -Shigatsu wa kimi no uso - -Sakurasou no pet na kanojo - -Natsuyuki rendezvous - -Uzaki chan wa asobitai";False;False;;;;1610521242;;False;{};gj39j38;False;t3_kwavoc;False;True;t3_kwavoc;/r/anime/comments/kwavoc/ive_been_looking_for_an_anime_similar_to_tonikawa/gj39j38/;1610592517;2;True;False;anime;t5_2qh22;;0;[]; -[];;;laikalal;;;[];;;;text;t2_8m07qvrz;False;False;[];;Black clover does not care about pacing just shoot straight to the point;False;False;;;;1610521245;;False;{};gj39j84;False;t3_kwarne;False;False;t1_gj382dl;/r/anime/comments/kwarne/what_anime_have_good_fight_scenes_where_there_is/gj39j84/;1610592520;1;True;False;anime;t5_2qh22;;0;[]; -[];;;laikalal;;;[];;;;text;t2_8m07qvrz;False;False;[];;Jujutsu kaisen;False;False;;;;1610521256;;False;{};gj39jol;False;t3_kwarne;False;True;t3_kwarne;/r/anime/comments/kwarne/what_anime_have_good_fight_scenes_where_there_is/gj39jol/;1610592528;1;True;False;anime;t5_2qh22;;0;[]; -[];;;voornaam1;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://www.anime-planet.com/users/Max4444;dark;text;t2_3yiwp1ue;False;False;[];;"Are you my mom? - -She keeps asking me stuff like ""what is the orange hair dude's name?"" and ""Who is Uraraka?""";False;False;;;;1610521370;;False;{};gj39ofr;False;t3_kw8oi3;False;False;t1_gj2vi7g;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj39ofr/;1610592615;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Staytrippy_24;;;[];;;;text;t2_54ldse8l;False;False;[];;I’ll look into it;False;False;;;;1610521417;;False;{};gj39qcx;True;t3_kw8hzs;False;True;t1_gj33tr3;/r/anime/comments/kw8hzs/i_need_new_stuff_to_watch/gj39qcx/;1610592651;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610521442;;False;{};gj39req;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj39req/;1610592670;0;True;False;anime;t5_2qh22;;0;[]; -[];;;pulioohippo;;;[];;;;text;t2_6441wrlb;False;False;[];;Thanks for all the reccomendations!;False;False;;;;1610521582;;False;{};gj39x3b;True;t3_kwavoc;False;True;t1_gj39j38;/r/anime/comments/kwavoc/ive_been_looking_for_an_anime_similar_to_tonikawa/gj39x3b/;1610592775;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MoneyMakerMaster;;;[];;;;text;t2_b7zxtmh;False;False;[];;Yes, please watch all of these. Don't let another Granbelm situation happen.;False;False;;;;1610521587;;False;{};gj39xak;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj39xak/;1610592778;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ABoredCompSciStudent;;MAL;[];;https://myanimelist.net/profile/serendipity;dark;text;t2_zqflo;False;False;[];;"Sorry, your comment has been removed. - -- Advertisements or questions about other communities aren't allowed here. If you'd like, you can join our [/r/anime discord server](https://discord.gg/r-anime) or our [Casual Discussion Friday](https://www.reddit.com/r/anime/search?q=title%3A%22Casual+Discussion+Fridays%22+subreddit%3Aanime&restrict_sr=on&sort=new&t=week) thread. If you mod a **sub** with a sizeable userbase, send us a modmail and we can add your subreddit to our [related subreddits wiki page](https://www.reddit.com/r/anime/wiki/related_subreddits). Other external communities should be promoted elsewhere. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610521603;moderator;False;{};gj39xy1;False;t3_kwb5h6;False;True;t1_gj3919q;/r/anime/comments/kwb5h6/black_doves_founding_stage/gj39xy1/;1610592790;1;True;False;anime;t5_2qh22;;0;[]; -[];;;unagiqueen;;;[];;;;text;t2_yd9tu;False;False;[];;"Kaichou wa Maid-sama - -Gekkan Shoujo Nozaki-kun - -Ouran Koukou Host club - -Kaguya-sama Love is War - -Watashi ga Motete Dousunda - -Vampire Knight - -Kamisama Hajimemashita - -Hamefura - -Wotaku ni Koi wa Muzukashii - -Ore Monogatari - -Ookami Shoujo to Kuro Ouji - -Kakuriyo no Yadomeshi - -Sukitte Ii Na Yo - -Your Lie In April";False;False;;;;1610521607;;1610521810.0;{};gj39y31;False;t3_kw8546;False;False;t3_kw8546;/r/anime/comments/kw8546/good_comedy_andor_romance/gj39y31/;1610592794;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Duskynth;;;[];;;;text;t2_2cfrws6i;False;False;[];;dawg, i forget while WATCHING the show. its not that i dont care or anything its just hard remembering all them weird, long ass japanese names lol;False;False;;;;1610521776;;False;{};gj3a51b;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3a51b/;1610592922;12;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 125, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'When you come across a feel-good thing.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'icon_width': 2048, 'id': 'award_5f123e3d-4f48-42f4-9c11-e98b566d5897', 'is_enabled': True, 'is_new': False, 'name': 'Wholesome', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;"> **DON'T SLEEP ON THIS SEASON'S ORIGINAL ANIME!!!!** - -Watch me do it bruh";False;False;;;;1610521952;;False;{};gj3ac7e;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3ac7e/;1610593050;452;True;False;anime;t5_2qh22;;1;[]; -[];;;pulioohippo;;;[];;;;text;t2_6441wrlb;False;False;[];;Hard to find slice of life anime that really clicks with you I’ve found. For me it was this and rent a girlfriend;False;False;;;;1610522073;;False;{};gj3ah1b;True;t3_kwavoc;False;False;t3_kwavoc;/r/anime/comments/kwavoc/ive_been_looking_for_an_anime_similar_to_tonikawa/gj3ah1b/;1610593141;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lt_crustymuffin;;;[];;;;text;t2_7lhgsmnj;False;False;[];;kinda, but only for unmemorable side characters. i can't remember the name of the sugar dude from bnha, or any of the side characters from one punch man, and don't even get me started on one piece. but i watched attack on titan season one around 7-8 years ago, and still remember sasha blouse (potato girl) like the back of my hand. so i suppose it depends on how interesting the character is.;False;False;;;;1610522079;;False;{};gj3ah9r;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3ah9r/;1610593145;10;True;False;anime;t5_2qh22;;0;[]; -[];;;zellerzium;;;[];;;;text;t2_8m6mk7z5;False;False;[];;Yes;False;False;;;;1610522127;;False;{};gj3aj84;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3aj84/;1610593182;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wonderllama5;;;[];;;;text;t2_jqsfu;False;False;[];;"10 anime I think you should watch: - -Cowboy Bebop (dub), Samurai Champloo (dub), Steins Gate, Railgun, Fullmetal Alchemist: Brotherhood (dub), Re:Zero (Director's Cut), Erased, Darling in the Franxx, Demon Slayer, Fate/Zero - -Available on Netflix, Crunchyroll, Funimation, and/or Hulu - -Make a list at http://myanimelist.net and keep track of everything. Great way to find more recommendations too!";False;False;;;;1610522231;;False;{};gj3anj7;False;t3_kwad2w;False;True;t3_kwad2w;/r/anime/comments/kwad2w/new_to_anime_and_need_suggestions/gj3anj7/;1610593259;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sght62;;;[];;;;text;t2_4ztn10y;False;False;[];; I just looked it up and are you fucking kidding me they really had to put it there lmao;False;False;;;;1610522280;;False;{};gj3apja;True;t3_kwaoky;False;True;t1_gj37bgb;/r/anime/comments/kwaoky/does_anyone_know_the_name_of_this_anime/gj3apja/;1610593298;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nitsua34;;;[];;;;text;t2_86av8j;False;False;[];;i think people would rather stick to their isekais sadly;False;False;;;;1610522400;;False;{};gj3aud3;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3aud3/;1610593386;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;_cats______;;;[];;;;text;t2_y31to;False;False;[];;Nahhh this is me too. I love following seasonal anime so I consume a lot of anime per year, lots of names tend to slip my mind after I'm done. In a way it makes me feel bad, like did I not enjoy the anime enough if I can't even remember the names? But if I completed it then I clearly enjoyed it enough in the moment to keep watching so it is what it is. Can't remember every single Japanese name from every anime ever.;False;False;;;;1610522424;;False;{};gj3avb2;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3avb2/;1610593402;3;True;False;anime;t5_2qh22;;0;[]; -[];;;loomnoo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/loomnoo;light;text;t2_5ev8pklg;False;False;[];;Severely underwatched by this community. A sleeper hit.;False;False;;;;1610522473;;False;{};gj3axat;False;t3_kwa34e;False;False;t3_kwa34e;/r/anime/comments/kwa34e/pui_pui_molcar_yes_this_is_an_anime/gj3axat/;1610593440;15;True;False;anime;t5_2qh22;;0;[]; -[];;;TheePrestigious;;;[];;;;text;t2_4b0u96e2;False;False;[];;Love is War s2 and 2;False;False;;;;1610522836;;False;{};gj3bbom;False;t3_kw8546;False;True;t3_kw8546;/r/anime/comments/kw8546/good_comedy_andor_romance/gj3bbom/;1610593699;2;True;False;anime;t5_2qh22;;0;[]; -[];;;karen_pls;;;[];;;;text;t2_7fslgyoe;False;False;[];;this season is PACKED. if it was any other season I'd agree, but there's only so much time and hype to spread.;False;False;;;;1610522877;;False;{};gj3bdbd;False;t3_kw83at;False;False;t1_gj35m4r;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3bdbd/;1610593730;63;True;False;anime;t5_2qh22;;0;[]; -[];;;karen_pls;;;[];;;;text;t2_7fslgyoe;False;False;[];;no, sleep *on*, not sleep *with*. What you do in your bedroom with consenting adults and pieces of animation is what you do.;False;True;;comment score below threshold;;1610523001;;False;{};gj3bi4m;False;t3_kw83at;False;True;t1_gj3ac7e;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3bi4m/;1610593813;-38;True;False;anime;t5_2qh22;;0;[]; -[];;;saga999;;;[];;;;text;t2_9ppe9;False;False;[];;"The Disastrous Life of Saiki K. - -I'm recommending this every chance I get. It never fails to get me laughing.";False;False;;;;1610523045;;False;{};gj3bjse;False;t3_kw8546;False;True;t3_kw8546;/r/anime/comments/kw8546/good_comedy_andor_romance/gj3bjse/;1610593841;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WhoIsMeredith;;;[];;;;text;t2_7o2vfl40;False;False;[];;"Toradora -Yamato Nadeshiko -Sakurasou no pet na kanojo -Kimi ni todoke -Baka to test -Chihayafuru";False;False;;;;1610523077;;False;{};gj3bl08;False;t3_kwavoc;False;True;t1_gj3ah1b;/r/anime/comments/kwavoc/ive_been_looking_for_an_anime_similar_to_tonikawa/gj3bl08/;1610593864;2;True;False;anime;t5_2qh22;;0;[]; -[];;;karen_pls;;;[];;;;text;t2_7fslgyoe;False;False;[];;nothing wrong with people watching what they like.;False;False;;;;1610523092;;False;{};gj3blmc;False;t3_kw83at;False;False;t1_gj3aud3;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3blmc/;1610593876;19;True;False;anime;t5_2qh22;;0;[]; -[];;;WhoIsMeredith;;;[];;;;text;t2_7o2vfl40;False;False;[];;God Eater;False;False;;;;1610523113;;False;{};gj3bmfs;False;t3_kwarne;False;True;t3_kwarne;/r/anime/comments/kwarne/what_anime_have_good_fight_scenes_where_there_is/gj3bmfs/;1610593891;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;If you want to be even more precise it’s Naruto then Naruto Shippuden to episode 479, then The Last movie, then the last 20 episodes;False;False;;;;1610523114;;False;{};gj3bmht;False;t3_kwb24i;False;True;t1_gj38twq;/r/anime/comments/kwb24i/how_many_parts_to_naruto/gj3bmht/;1610593891;1;True;False;anime;t5_2qh22;;0;[]; -[];;;laikalal;;;[];;;;text;t2_8m07qvrz;False;False;[];;Wtf naruto one piece even death note might do the trick;False;False;;;;1610523194;;False;{};gj3bpmi;False;t3_kwagki;False;True;t3_kwagki;/r/anime/comments/kwagki/whats_a_anime_that_will_make_me_cry/gj3bpmi/;1610593950;1;True;False;anime;t5_2qh22;;0;[]; -[];;;W33B520;;;[];;;;text;t2_5yrtpqbi;False;False;[];;Yes.;False;False;;;;1610523215;;False;{};gj3bqgt;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3bqgt/;1610593965;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;"Does Monogatari have fights ??? - -Yes, it has, but I won't consider it a fighting anime. - -Only Kizu 2 comes out as a fighting anime.";False;False;;;;1610523257;;False;{};gj3bs30;False;t3_kwarne;False;False;t1_gj3768k;/r/anime/comments/kwarne/what_anime_have_good_fight_scenes_where_there_is/gj3bs30/;1610593997;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;Rent A Girlfriend has a similar vibe;False;False;;;;1610523291;;False;{};gj3btf1;False;t3_kwavoc;False;True;t3_kwavoc;/r/anime/comments/kwavoc/ive_been_looking_for_an_anime_similar_to_tonikawa/gj3btf1/;1610594026;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeralyos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Zeralyos;light;text;t2_dphmj32;False;False;[];;Or in my case, it can sometimes happen if it's been 5 minutes.;False;False;;;;1610523424;;False;{};gj3byhv;False;t3_kw8oi3;False;False;t1_gj2vo9k;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3byhv/;1610594120;128;True;False;anime;t5_2qh22;;0;[]; -[];;;Kindly_Pea_4076;;;[];;;;text;t2_7y6wnqtg;False;False;[];;Word for word what I was about to post. I just recognize the look, always awful with names.;False;False;;;;1610523532;;False;{};gj3c2kx;False;t3_kw8oi3;False;False;t1_gj2vi7g;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3c2kx/;1610594192;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ClammyVagikarp;;;[];;;;text;t2_159y05;False;False;[];;Yes. Watch enough anime and it all blends too much together since a lot of it is just standardised factory made stuff with the tropes and fanservice. A huge reduction in anime i watch had made me appreciate the few i take to completion. Value your limited time on this earth and don't be afraid to drop an anime after the third episode if it's not worth it.;False;False;;;;1610523557;;False;{};gj3c3nw;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3c3nw/;1610594212;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Jim_the_E;;;[];;;;text;t2_6cdsqk54;False;False;[];;That Eve’s, from Wall-E, final form?;False;False;;;;1610523637;;False;{};gj3c6ti;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3c6ti/;1610594273;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Vital_Blinks;;;[];;;;text;t2_79acq3hi;False;False;[];;I read all of D. Gray Man and a like a week later I saw that it had an anime and I forgot all their names except Kanda because his name is simple.;False;False;;;;1610523728;;False;{};gj3cad7;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3cad7/;1610594337;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vital_Blinks;;;[];;;;text;t2_79acq3hi;False;False;[];;I read all of D. Gray Man and a like a week later I saw that it had an anime and I forgot all their names except Kanda because his name is simple;False;False;;;;1610523733;;False;{};gj3cak5;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3cak5/;1610594340;0;True;False;anime;t5_2qh22;;0;[]; -[];;;bakowh;;;[];;;;text;t2_xmmg9;False;False;[];;Yes, as a child most of the anime that I watched had simple and easy to memorize names. It was a struggle for me to remember names once I watched shows that had more Japanese names (Tokyo ghoul for example);False;False;;;;1610523882;;False;{};gj3cgda;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3cgda/;1610594458;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SigfridNorman;;;[];;;;text;t2_9gqdfbly;False;False;[];;"Personally I've been watching anime for 10 years. I speak Swedish natively and English secondarily. Japanese has a few sounds that are weird, like the mix between R and L, but otherwise romanized Japanese is close to the Swedish pronunciation the same spelling would have. - -When I started watching anime I had huge problems remembering names, and would watch entire shows without remembering a single one. But nowadays I remember almost all the names I come across. - -I think the biggest problem for me was that the names lacked meaning, not that they look weird or can't be pronounced. I didn't know if I was looking at a male or female name. A surname or a forename. A nickname or a full name. A weird made up name, or a real Japanese name. - -Throughout the years I've picked up on a lot of things - different suffixes, names I've seen before, certain meanings (Sakura comes to mind) which really helps to contextualize the names and that's why I think I remember them much better now.";False;False;;;;1610523909;;False;{};gj3chde;False;t3_kw8oi3;False;False;t1_gj34wi8;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3chde/;1610594479;32;True;False;anime;t5_2qh22;;0;[]; -[];;;Charming-Loquat3702;;;[];;;;text;t2_693xqw5a;False;False;[];;What's even worse is, when the subtitles uses the given and the characters in Japanese use the family name. I hate it. I was close to watching my hero academia in it's German dubbed version because the subtitles kept doing it.;False;False;;;;1610524016;;False;{};gj3clgj;False;t3_kw8oi3;False;False;t1_gj36lav;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3clgj/;1610594553;67;True;False;anime;t5_2qh22;;0;[]; -[];;;prototype_penguin;;;[];;;;text;t2_9juenrdv;False;False;[];;I don't even remember the name of animes I watched;False;False;;;;1610524287;;False;{};gj3cvnb;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3cvnb/;1610594752;111;True;False;anime;t5_2qh22;;0;[]; -[];;;Kimbutso;;;[];;;;text;t2_9n7kfw1m;False;False;[];;Gintama;False;False;;;;1610524600;;False;{};gj3d7hc;False;t3_kwarne;False;True;t3_kwarne;/r/anime/comments/kwarne/what_anime_have_good_fight_scenes_where_there_is/gj3d7hc/;1610594979;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GatorUSMC;;;[];;;;text;t2_oix0w;False;False;[];;If they're watching Ex-Arm or Project Scard, you might want to check on them to make sure there really is nothing wrong...;False;False;;;;1610524931;;False;{};gj3djw7;False;t3_kw83at;False;True;t1_gj3blmc;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3djw7/;1610595201;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Epidemilk;;;[];;;;text;t2_6m9hd;False;False;[];;Ever juggled like 10 seasonals? You'll forget their names *while* watching;False;False;;;;1610525055;;False;{};gj3dogc;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3dogc/;1610595285;21;True;False;anime;t5_2qh22;;0;[]; -[];;;IMprovedMG;;;[];;;;text;t2_46tr155;False;False;[];;All the time. Especially if there not simple names. This one of the reasons I can't get into light novels since I wont remember anybody.;False;False;;;;1610525174;;False;{};gj3dsye;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3dsye/;1610595365;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ryan29081996;;;[];;;;text;t2_3qfsjgan;False;False;[];;Attack on Titans got nothing on Ex-Arm, Ex-Arm is GOAT!! XD;False;False;;;;1610525551;;False;{};gj3e6un;False;t3_kw83at;False;False;t1_gj358su;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3e6un/;1610595619;38;True;False;anime;t5_2qh22;;0;[]; -[];;;L_Flavour;;;[];;;;text;t2_nhn593;False;False;[];;"I feel like it's pretty normal for non-Japanese people to have more difficulties with the names in anime. - -1) The names are usually in Japanese (ofc there are exceptions like AoT) and when you are not speaking the language, it's obviously harder to comprehend the exact names and even distinguish them from eachother. If you speak a language, you probably not only have an ""kinda used to it""-advantage, but you also have an image of that name you hear in your head and are probably able to write it down etc. So names in that language make immediately more ""sense"" to you than for someone who doesn't speak it, and thus have it easier to remember. - -2) In Japan using the word ""you"" is not really polite when speaking to people you are not very close with, instead people adress eachother by their name. So culturally you are more pushed towards having to remember all the names when making new contacts. Maybe that's another reason why anime kinda expects the audience to grasp the names quicker than a lot are used to, but that's all rather a guess. I can't tell for sure if this has a measurably significant effect. - -...but at least from my experience I seem to remember names way quicker and better than my German gf, who -I will never forget- called Ginoza from Psycho-Pass f*ckin ""Gyoza"" the first few times (and similarly hilarious mistakes). - -Edit: spelling";False;False;;;;1610525808;;1610540263.0;{};gj3eggb;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3eggb/;1610595786;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Wahidul-Hauqe;;;[];;;;text;t2_7odl9zcw;False;False;[];;Thank you stranger. Ill try one today;False;False;;;;1610525823;;False;{};gj3egy5;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3egy5/;1610595795;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LandOfHopeAndDream;;;[];;;;text;t2_9s944woy;False;False;[];;Wonder Egg Priority is Oscars or Emmy-level television anime, not only for Japan but also for worldwide. This is pure art that has not clearly genre (and I love it because art doesn't need any genre classification) and giving the most important messages about society and social life. If there are any festivals for them, I think Parasite's Oscar's journey will be held on them ...;False;False;;;;1610525885;;False;{};gj3ej92;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3ej92/;1610595836;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cryzzalis;;MAL a-amq;[];;http://myanimelist.net/animelist/Charaxify;dark;text;t2_7j04d;False;False;[];;It's fairly common, they're in an unfamiliar language and you keep watching a ton of other shows as well. Even someone who's good at names like myself forgets them pretty often.;False;False;;;;1610525923;;False;{};gj3ekn8;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3ekn8/;1610595858;1;True;False;anime;t5_2qh22;;0;[]; -[];;;karen_pls;;;[];;;;text;t2_7fslgyoe;False;False;[];;"ehh, Apparently Ex-arm is so horribly animated that you can get fun form just pokin at how bad it is. It's basically like The Room at that point, so there's an entirely different appeal to what they ""like"" there.";False;False;;;;1610525932;;False;{};gj3eky8;False;t3_kw83at;False;False;t1_gj3djw7;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3eky8/;1610595864;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NotCereal_;;;[];;;;text;t2_6cesagyh;False;False;[];;Yep, i don't remember unless it's anime that i watched over 30 eps. I remember no one from most of the 24 or less eps animes;False;False;;;;1610525936;;False;{};gj3el35;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3el35/;1610595866;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;You don't make much sense dude;False;False;;;;1610525994;;False;{};gj3en44;False;t3_kw83at;False;False;t1_gj3bi4m;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3en44/;1610595902;39;True;False;anime;t5_2qh22;;0;[]; -[];;;joey_joestar1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Joey_Joestar1;light;text;t2_thsqo0;False;False;[];;For me it depends on how memorable the characters are;False;False;;;;1610526117;;False;{};gj3ermw;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3ermw/;1610595982;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dangal_Zero;;;[];;;;text;t2_7m5a07tp;False;False;[];;yes;False;False;;;;1610526177;;False;{};gj3etsy;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3etsy/;1610596018;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rurudo66;;;[];;;;text;t2_1p0ou4hq;False;False;[];;I hope if Sk8 gets popular they'll reboot Air Gear and actually do the full story. That anime was incredible, and I just could not get into it as a manga. I wanna know what happens, dammit!;False;False;;;;1610526178;;False;{};gj3etu0;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3etu0/;1610596018;11;True;False;anime;t5_2qh22;;0;[]; -[];;;georgeeeboyy;;;[];;;;text;t2_69sn1nmm;False;False;[];;I wanna know, how did this cop a down vote?! 🤣;False;False;;;;1610526273;;False;{};gj3ex8r;False;t3_kwad2w;False;True;t1_gj3589b;/r/anime/comments/kwad2w/new_to_anime_and_need_suggestions/gj3ex8r/;1610596080;1;True;False;anime;t5_2qh22;;0;[]; -[];;;melvinlee88;;MAL a-amq;[];;https://myanimelist.net/profile/Ryan_Melvin15;dark;text;t2_156788;False;False;[];;Yeah sure it'll be....;False;False;;;;1610526320;;False;{};gj3eyx4;False;t3_kw83at;False;True;t1_gj35m4r;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3eyx4/;1610596110;2;False;False;anime;t5_2qh22;;0;[]; -[];;;Vrucaon;;;[];;;;text;t2_9n0p174;False;False;[];;SukaSuka, underrated and made me cry a lot;False;False;;;;1610526348;;False;{};gj3ezw1;False;t3_kwagki;False;True;t3_kwagki;/r/anime/comments/kwagki/whats_a_anime_that_will_make_me_cry/gj3ezw1/;1610596128;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IceAsFireYT;;;[];;;;text;t2_52ihbvhj;False;False;[];;Yep. When you watch a lot of animes it's not unusual to not know even the mcs name;False;False;;;;1610526377;;False;{};gj3f0xh;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3f0xh/;1610596146;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Thefatkings;;;[];;;;text;t2_4qayjimn;False;False;[];;"The only ones I know are the ones from re;zero";False;False;;;;1610526383;;False;{};gj3f169;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3f169/;1610596149;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Etereke32;;;[];;;;text;t2_11qhl2;False;False;[];;I only remember anime character's name if they left a super strong impression. I can't even remember people's names irl, let alone anime, especially when I follow more than 30 anime each season;False;False;;;;1610526639;;False;{};gj3fadt;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3fadt/;1610596309;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HellcatGamer123;;;[];;;;text;t2_4ne1xpi6;False;False;[];;I watched that like half a year ago and I don’t remember any names.;False;False;;;;1610526721;;False;{};gj3fdas;False;t3_kw8oi3;False;False;t1_gj2xqx1;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3fdas/;1610596359;7;True;False;anime;t5_2qh22;;0;[]; -[];;;HellcatGamer123;;;[];;;;text;t2_4ne1xpi6;False;False;[];;Yh there’s this one guy at my school who can remember names and if I don’t remember one I’ll just tell him a description of the character and then he tells me the name.;False;False;;;;1610526864;;False;{};gj3fieo;False;t3_kw8oi3;False;False;t1_gj2x0az;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3fieo/;1610596445;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Bananaman9020;;;[];;;;text;t2_4krdg75d;False;False;[];;I forget names of most fictional characters in the stuff I watch and read. Mostly soon after I finish it.;False;False;;;;1610526978;;False;{};gj3fmdm;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3fmdm/;1610596516;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zool714;;;[];;;;text;t2_11y457;False;False;[];;"Ever since I started following seasonals I’ve always given at least one Original a try. Akudama Drive, Deca-dence, Listeners, ID:Invaded. But this season is just so packed. I’m already close to 15 shows from sequels and leftovers this season which is usually how much I try to cap each season (I followed 19 shows last season and it was too hectic for me). - -But if some of these Originals gain traction, I may just slip in another one in my roster.";False;False;;;;1610527001;;False;{};gj3fn75;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3fn75/;1610596529;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexNae;;;[];;;;text;t2_13yqvf;False;False;[];;"lol damn I forget the characters names of the airing shows I'm watching this season even the protags unless I'm really invested in the story. - - -with manga and ongoing shows I really like I sometimes make flash cards with names and important details so I don't get lost. - - -with the shows I really really like, I don't need that crap, I memorize all that because I watch them many times and I become active in their communities";False;False;;;;1610527090;;False;{};gj3fqif;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3fqif/;1610596587;2;True;False;anime;t5_2qh22;;0;[]; -[];;;spicespiegel;;;[];;;;text;t2_4u5bstmr;False;False;[];;Yeah but it's such an unfortunate season for originals. I'm glad to your eternity isn't airing this season. If that show doesn't get enough attention, I'mma be mad;False;False;;;;1610527256;;False;{};gj3fwj0;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3fwj0/;1610596691;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Novelle_1020;;;[];;;;text;t2_3um1vzgu;False;False;[];;As soon as you mentioned “subversion of expectation” I was intrigued by Wonder Egg Priority. Will *definitely* look into it.;False;False;;;;1610527372;;False;{};gj3g0rk;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3g0rk/;1610596769;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Spade-Demon;;;[];;;;text;t2_5tkn0i2y;False;False;[];;There’s very few anime episode if any at all where’s there non-stop action for 25 minutes, there has to some sort of flashback, exposition or dialogue so that you can get 7-15 minutes of action sequences handled by a few key animator’s in the big fight episode.;False;False;;;;1610527486;;False;{};gj3g4wp;False;t3_kwarne;False;True;t3_kwarne;/r/anime/comments/kwarne/what_anime_have_good_fight_scenes_where_there_is/gj3g4wp/;1610596841;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DeletusCleetus;;;[];;;;text;t2_3l31htc1;False;False;[];;Oh I didn't mean non stop action the whole episode. I just meant fights where they don't have a whole conversation in between hits;False;False;;;;1610527578;;False;{};gj3g8ba;True;t3_kwarne;False;True;t1_gj3g4wp;/r/anime/comments/kwarne/what_anime_have_good_fight_scenes_where_there_is/gj3g8ba/;1610596902;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DqrkExodus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Seraira;light;text;t2_162r04;False;False;[];;I really would but I'm already watching 15 or so other airing anime;False;False;;;;1610527651;;False;{};gj3gawz;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3gawz/;1610596947;7;True;False;anime;t5_2qh22;;0;[]; -[];;;I_am_the_Disguyz;;;[];;;;text;t2_46bpkiio;False;False;[];;Unless the anime is memorable, I'm gonna forget their names;False;False;;;;1610527667;;False;{};gj3gbh7;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3gbh7/;1610596956;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Meru-sensei;;;[];;;;text;t2_9rtlid2l;False;False;[];;It took me like quite awhile to remember all the names in naruto;False;False;;;;1610527699;;False;{};gj3gclx;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3gclx/;1610596976;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PaperSonic;;;[];;;;text;t2_yxacc;False;False;[];;Sora Yori is probably my favorite anime, and I still sometimes fuck up Shirase's name. Japanese names fuck me up like nothing else.;False;False;;;;1610527712;;False;{};gj3gd2j;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3gd2j/;1610596984;1;True;False;anime;t5_2qh22;;0;[]; -[];;;generalmillscrunch;;;[];;;;text;t2_zofoh;False;False;[];;No, actually, it’s ok. you can forget the surfing anime.;False;False;;;;1610527870;;False;{};gj3giwt;False;t3_kw83at;False;False;t1_gj36v7c;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3giwt/;1610597092;21;True;False;anime;t5_2qh22;;0;[]; -[];;;pontious984845;;;[];;;;text;t2_9ccoujq0;False;False;[];;This is my wife when we watch Haikyuu. I am good with names, but she struggles so much with it.;False;False;;;;1610527951;;False;{};gj3gls8;False;t3_kw8oi3;False;False;t1_gj2vi7g;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3gls8/;1610597146;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Mangobonbon;;;[];;;;text;t2_4wwr1v6g;False;False;[];;I watch most series in japanese, so I only can recall the most important characters. The more series you watch, the less you will remember characters. I only can recall them for those I give a 9/10 or 10/10.;False;False;;;;1610528033;;False;{};gj3goq1;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3goq1/;1610597200;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Episode_12;;;[];;;;text;t2_5h1b5k47;False;False;[];;It sure is. Though, speaking from experience, the greater the impact a character has on you, the longer you'll remember that character's name, that is if you remember the character's name while watching that anime.;False;False;;;;1610528051;;False;{};gj3gpe9;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3gpe9/;1610597211;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Spade-Demon;;;[];;;;text;t2_5tkn0i2y;False;False;[];;Okay but fights are basically visual storytelling, it would be a pretty weak story if there’s 5-6 minutes of non-stop action sequences and then the villain just dies, just like that. That’s why they don’t do that normally but I guess you can find lengthy action sequences in movies like DBS Broly where the plot isnt the main focus.;False;False;;;;1610528109;;False;{};gj3grft;False;t3_kwarne;False;True;t1_gj3g8ba;/r/anime/comments/kwarne/what_anime_have_good_fight_scenes_where_there_is/gj3grft/;1610597245;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jefersonx14;;;[];;;;text;t2_7darjgtc;False;False;[];;i used to have that problem but now im able to remember most of the names....ig you just have to get used to the japanese names;False;False;;;;1610528136;;False;{};gj3gsee;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3gsee/;1610597261;2;True;False;anime;t5_2qh22;;0;[]; -[];;;2309292701350729;;;[];;;;text;t2_6ke34mn4;False;False;[];;Yes, you can't remember everything.;False;False;;;;1610528138;;False;{};gj3gsgm;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3gsgm/;1610597262;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kartoffelkamm;;;[];;;;text;t2_13bfbfho;False;False;[];;Yeah. I watched Mahou Tsukai Precure recently, and while I do remember most names, Cure Felice's civilian name is not one of them. Most characters just call her Ha-chan, even though she looks like a teenage girl and has a proper name, so yeah.;False;False;;;;1610528150;;False;{};gj3gswq;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3gswq/;1610597269;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Blatheringman;;;[];;;;text;t2_4vm4hjb5;False;False;[];;Yeah, They really missed the mark on that one. I was surprised by how bad it was.;False;False;;;;1610528266;;False;{};gj3gx5f;False;t3_kw83at;False;False;t1_gj34yox;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3gx5f/;1610597343;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Funkyryoma;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_jb5poxm;False;False;[];;If you like character development, try Jaku Chara Tomozaki Kun;False;False;;;;1610528282;;False;{};gj3gxor;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3gxor/;1610597353;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;"Wonder Egg will probably be the anime that the entire anime community is going to shill, from the no lifers on r/anime to the mainstream youtubers like Gigguk. - -I can see this have a rise in popularity like Akudama Drive but then even bigger. I know that this season is absolutely stacked and it is hard to have an anime do well with every other anime getting all the eyes, but I believe in the shilling powers of the anime community with Wonder Egg";False;False;;;;1610528640;;1610530101.0;{};gj3hagf;False;t3_kw83at;False;False;t1_gj387xy;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3hagf/;1610597579;114;True;False;anime;t5_2qh22;;0;[]; -[];;;Android19samus;;;[];;;;text;t2_aqbu1;False;False;[];;"man, I forget the names of characters *while* watching an anime. I go through like 90% of the shows and movies I watch while never once retaining the names of more than one or two characters tops, identifying the rest purely by visuals. It's something you get used to as you get older. And by ""older"" I mean... like... 20.";False;False;;;;1610528668;;False;{};gj3hbfs;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3hbfs/;1610597595;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;On a serious note, Ex-Arm is going to include lots of new material that hasn't been seen in the manga, so it isn't that of a stretch to call this an original.;False;False;;;;1610528724;;False;{};gj3hdfq;False;t3_kw83at;False;True;t1_gj32o2c;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3hdfq/;1610597630;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FireRifle64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FireRifle64;light;text;t2_29fr8mww;False;False;[];;Yes, that is me most of the time;False;False;;;;1610528775;;False;{};gj3hfa9;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3hfa9/;1610597663;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;Wonder Egg gives me major Madoka Magica vibes, with the weird imagery and the suprisingly dark themes. If this anime can get on the same level as Madoka then we have something absolutely special here.;False;False;;;;1610528829;;False;{};gj3hh78;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3hh78/;1610597694;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Cyathene;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cyathene;light;text;t2_hvzxn;False;False;[];;"Im reading through a dance of dragons ( yea yea not anime) And I forget the names of a new charcter within like 4 words. Idk what it is but names just seem to be so much harder to remember than pretty much anthing else. - -Wonder if theres some sort of psychological reason like associating names with an emotion";False;False;;;;1610528933;;False;{};gj3hkpr;False;t3_kw8oi3;False;False;t1_gj2vi7g;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3hkpr/;1610597757;5;True;False;anime;t5_2qh22;;0;[]; -[];;;thatone_high_guy;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;Weeblet;light;text;t2_69adwpyb;False;False;[];;The rating is kinda low though;False;True;;comment score below threshold;;1610528947;;False;{};gj3hl8d;False;t3_kw83at;False;False;t1_gj2sjco;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3hl8d/;1610597765;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;Kuramhan;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Kuramhan/;light;text;t2_esa7n;False;False;[];;"> is Oscars or Emmy-level television anime - -Please don't drag it down to their level.";False;False;;;;1610529092;;False;{};gj3hq7q;False;t3_kw83at;False;False;t1_gj3ej92;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3hq7q/;1610597851;19;True;False;anime;t5_2qh22;;0;[];True -[];;;altair827;;;[];;;;text;t2_6aov97z6;False;False;[];;The first episode was really good and it made me read the Manga. Its really good tbh. You'll find a piece of yourself in the story and I loved it.;False;False;;;;1610529179;;False;{};gj3ht6r;False;t3_kwaybf;False;False;t3_kwaybf;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj3ht6r/;1610597902;73;True;False;anime;t5_2qh22;;0;[]; -[];;;taprik;;;[];;;;text;t2_1rdvdqg5;False;False;[];;Yea Naruto's full name is Naruto Shippuden;False;False;;;;1610529260;;False;{};gj3hvz7;False;t3_kw8oi3;False;False;t1_gj34v4s;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3hvz7/;1610597949;234;True;False;anime;t5_2qh22;;0;[]; -[];;;TheGAMA1;;;[];;;;text;t2_4vi4rcd6;False;False;[];;It is, sometimes i dont even know their names and have to open uo the wiki.;False;False;;;;1610529324;;False;{};gj3hyap;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3hyap/;1610597989;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LOTRfreak101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LOTRfreak101;light;text;t2_opd6l;False;False;[];;Depends how into the series I am and how much I've seen or read recently. While I'm watching the anime itself I'm fine, bit after it ends I pretty often forget names and their faces. When I start watching 4 seasons in a day it gets much much worse.;False;False;;;;1610529390;;False;{};gj3i0jh;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3i0jh/;1610598027;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Chemiczny_Bogdan;;;[];;;;text;t2_4hx94;False;False;[];;That's what I have mal for. Otherwise, at some point I would just forget.;False;False;;;;1610529406;;False;{};gj3i13u;False;t3_kw8oi3;False;False;t1_gj3cvnb;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3i13u/;1610598037;51;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeMangaGod;;;[];;;;text;t2_8deiyv1x;False;True;[];;And my favorite villain is Freezer;False;False;;;;1610529468;;False;{};gj3i3av;False;t3_kw8oi3;False;False;t1_gj3hvz7;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3i3av/;1610598075;57;True;False;anime;t5_2qh22;;0;[]; -[];;;Messerdieb;;;[];;;;text;t2_9ebs1rjd;False;False;[];;"Vlad Love definitely has the potential to become one of the best anime this season. Or one of the worst one. - -In any case it's going to be a fun watch.";False;False;;;;1610529533;;False;{};gj3i5ky;False;t3_kw83at;False;False;t1_gj2ulh9;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3i5ky/;1610598114;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Pottski;;;[];;;;text;t2_da30v;False;False;[];;"If they have more than a handful of characters introduced straight away then I’ll forget most. - -The amount of randoms who come and go from the plot in shonen - code geass, naruto, bleach... so many names.";False;False;;;;1610529760;;False;{};gj3idik;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3idik/;1610598248;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kuramhan;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Kuramhan/;light;text;t2_esa7n;False;False;[];;I really feel the hate for Project Scard is overblown. Yeah it has some pretty rough cg solders, but they're really not all that pervasive throughout the episode. Otherwise the episode looks good to great. Those character designs are fantastic.;False;False;;;;1610529783;;False;{};gj3iebt;False;t3_kw83at;False;True;t1_gj3djw7;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3iebt/;1610598262;1;True;False;anime;t5_2qh22;;0;[];True -[];;;xXxXx_Edgelord_xXxXx;;;[];;;;text;t2_5eqttswx;False;False;[];;Or instantly;False;False;;;;1610529855;;False;{};gj3igvp;False;t3_kw8oi3;False;False;t1_gj3byhv;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3igvp/;1610598305;68;True;False;anime;t5_2qh22;;0;[]; -[];;;Evenstar6132;;;[];;;;text;t2_1387en;False;False;[];;Probably because the characters have full Japanese names instead of names like Luffy, Naruto, Eren.;False;False;;;;1610529880;;False;{};gj3ihrr;False;t3_kw8oi3;False;False;t1_gj36b2r;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3ihrr/;1610598320;44;True;False;anime;t5_2qh22;;0;[]; -[];;;Nosalis2;;;[];;;;text;t2_q038mwc;False;False;[];;"Yup most of these characters are boring, unremarkable & super replaceable anyway. The ones worth remembering are usually unforgettable even for casual watchers. - -Like no one's going to forget an iconic character like Lelouch who absolutely carries his show.";False;False;;;;1610529943;;False;{};gj3ijzx;False;t3_kw8oi3;False;False;t1_gj2vpdh;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3ijzx/;1610598359;61;True;False;anime;t5_2qh22;;0;[]; -[];;;Flummer186;;;[];;;;text;t2_4627j50e;False;False;[];;I have several anime that i’ve enjoyed very much but i can’t for the life of me remember some names even just a season after they’ve aired.;False;False;;;;1610529951;;False;{};gj3ik9n;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3ik9n/;1610598363;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;While you're wondering about what masterpiece to watch you can take a look at **Ao-chan Can't Study**, a short (12x12 minutes) hilarious little rom com.;False;False;;;;1610530000;;False;{};gj3im02;False;t3_kw8546;False;True;t3_kw8546;/r/anime/comments/kw8546/good_comedy_andor_romance/gj3im02/;1610598393;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ISeydouDat;;;[];;;;text;t2_5kmtsa;False;False;[];;I'll make Wonder Egg a priority to watch then :);False;False;;;;1610530004;;False;{};gj3im57;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3im57/;1610598396;21;True;False;anime;t5_2qh22;;0;[]; -[];;;sad_physicist8;;;[];;;;text;t2_5b7l80ym;False;False;[];;not if i like the anime;False;False;;;;1610530032;;False;{};gj3in32;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3in32/;1610598411;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vikker_42;;;[];;;;text;t2_2m0p5b7u;False;False;[];;"I'd like to.. But Funimation said: - - - -## Sorry, but this content isn’t available in your country.";False;False;;;;1610530082;;False;{};gj3iot8;False;t3_kw83at;False;False;t1_gj364ir;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3iot8/;1610598441;105;True;False;anime;t5_2qh22;;0;[]; -[];;;ButtholePasta;;;[];;;;text;t2_h1yde;False;False;[];;Before watching a new episode for a show or picking up a show after a while, I usually try to recap the main developments that happened in each episode to jog my memory. I also repeat character names in my head or make an effort to think of that character's name when they appear on screen if they're ever hard to remember. I care less about remembering names though for some seasonal stuff that I don't expect to get a sequel.;False;False;;;;1610530214;;False;{};gj3itff;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3itff/;1610598520;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Friend-maker;;;[];;;;text;t2_2fn82rr7;False;False;[];;"at first you care, but with time, when you have 200+ series you'd have to remember \~2000 names, it's hard and even harder since those aren't names you're used to, for me it's great if i can recall anime name so i can quickly check names - -for example, around 2-3 months ago i watched psycho pass.... no doubt it's good, but still i can't remember any names without checking";False;False;;;;1610530235;;False;{};gj3iu5y;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3iu5y/;1610598532;2;True;False;anime;t5_2qh22;;0;[]; -[];;;YellowestOne;;;[];;;;text;t2_23ucvkqg;False;False;[];;"Is it supposed to get darker? I thought the backstory with Mana was pretty sad but it brightened up a little later - -But yeah, Idoly Pride has my interest, I really enjoyed it and I’m excited for more";False;False;;;;1610530373;;False;{};gj3iyxd;False;t3_kw83at;False;False;t1_gj307fn;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3iyxd/;1610598612;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LordLamest;;;[];;;;text;t2_5x9amptj;False;False;[];;Just go with misaki or endo 👌;False;False;;;;1610530563;;False;{};gj3j5de;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3j5de/;1610598722;1;True;False;anime;t5_2qh22;;0;[]; -[];;;metaaltheanimefan;;;[];;;;text;t2_1qdntfx;False;False;[];;"The surfing anime does things wrong so im in the dicussion trying to educate its viewers with proper surfing knowledge becuase i know a lot about it via my brother. And im just watching it because its surfing - -But for the rest you dont really have to watch the surfing anime. Its a good starting point if you want to start but id advise you to seek help from a proffesional";False;False;;;;1610530599;;False;{};gj3j6m5;False;t3_kw83at;False;True;t1_gj3giwt;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3j6m5/;1610598744;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610530666;;1610530933.0;{};gj3j8ur;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3j8ur/;1610598782;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Neaeran;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/neaeran;light;text;t2_so94js6;False;False;[];;Stop recommending anime!! Jeez ... now i have to watch Wonder Egg Priority ... guess i'll have to sleep less to watch more anime. :/;False;False;;;;1610530702;;False;{};gj3ja2r;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3ja2r/;1610598802;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sophiabiernat;;;[];;;;text;t2_5lu4qa9w;False;False;[];;I’m already watching Sk8 the infinity and Wonder Egg but I’ll definitely check out Back Arrow too;False;False;;;;1610530716;;False;{};gj3jaje;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3jaje/;1610598809;3;True;False;anime;t5_2qh22;;0;[]; -[];;;verarose929;;;[];;;;text;t2_u5go01;False;False;[];;I mean... for some reason I cannot recall the MC's name from Solo Leveling. Even as I was reading it... but only for Solo Levelling tho;False;False;;;;1610530820;;False;{};gj3je7r;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3je7r/;1610598875;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuck_Shinji;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Fuck Shinji(fate);light;text;t2_7xrbju2m;False;False;[];;Depends on the anime but if im not part of the fanbase then i'll forget it in a month or two;False;False;;;;1610530829;;False;{};gj3jeji;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3jeji/;1610598881;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WardsAniAlt;;;[];;;;text;t2_9o7kxodn;False;False;[];;Bruh fruits basket... Great recommendation but damn does it hit the feels like a brick wall.;False;False;;;;1610530841;;False;{};gj3jeyj;False;t3_kw8546;False;True;t1_gj2wn1e;/r/anime/comments/kw8546/good_comedy_andor_romance/gj3jeyj/;1610598890;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vale-Senpai;;;[];;;;text;t2_q71qsnd;False;False;[];;World egg is weird I didn't like the 1st ep at all, SK8 i never gave a shit about sports especially skate, as for Black Arrow I'll check it out;False;False;;;;1610530879;;False;{};gj3jg9w;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3jg9w/;1610598913;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Careless_Pudding_327;;;[];;;;text;t2_8rj9fyvi;False;False;[];;But translation theory says we must give the viewer as close to the original experience as possible, and this means adapting to the norms of the receiving culture which would be used to seeing people refer to each other by their first names /s;False;False;;;;1610531064;;False;{};gj3jmtp;False;t3_kw8oi3;False;False;t1_gj3clgj;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3jmtp/;1610599026;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Well checking our numbers here Wonder egg is already going to have an opening similar to Deca Dence, the hyped summer original and it will do double than Akudama Drive last season opening.;False;False;;;;1610531111;;False;{};gj3johb;False;t3_kw83at;False;False;t1_gj3bdbd;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3johb/;1610599053;26;True;False;anime;t5_2qh22;;0;[]; -[];;;sadogdogsad;;;[];;;;text;t2_5n1ie57o;False;False;[];;It depends on whether I like the anime or not;False;False;;;;1610531162;;False;{};gj3jqa8;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3jqa8/;1610599083;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610531177;;1610576374.0;{};gj3jqth;False;t3_kw83at;False;False;t1_gj35m4r;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3jqth/;1610599092;21;False;False;anime;t5_2qh22;;0;[]; -[];;;Mureto;;;[];;;;text;t2_25jnipjj;False;False;[];;okay, but where is kumo desu ga nani ka?;False;False;;;;1610531238;;False;{};gj3jsx8;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3jsx8/;1610599127;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fluxzone;;;[];;;;text;t2_3gc9gesq;False;False;[];;I sleep😴💤;False;False;;;;1610531301;;False;{};gj3jv3u;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3jv3u/;1610599162;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ChimChim09;;;[];;;;text;t2_5itqaxar;False;False;[];;I've read the manga , it's definitely top on my list;False;False;;;;1610531366;;False;{};gj3jxe9;False;t3_kwaybf;False;False;t3_kwaybf;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj3jxe9/;1610599201;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Novelle_1020;;;[];;;;text;t2_3um1vzgu;False;False;[];;"Funimation for sure; it has the largest collection of anime dubs.";False;False;;;;1610531484;;False;{};gj3k1h3;False;t3_kw9q32;False;True;t3_kw9q32;/r/anime/comments/kw9q32/should_i_buy_funimation_or_crunchyroll_or_other/gj3k1h3/;1610599270;1;True;False;anime;t5_2qh22;;0;[]; -[];;;somotodsyo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/somotodsyo ;light;text;t2_w1q11;False;False;[];;Might be on Wakanim or Anime Lab. If not, well… There're other places. 🙃;False;False;;;;1610531495;;False;{};gj3k1uy;False;t3_kw83at;False;False;t1_gj3iot8;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3k1uy/;1610599277;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Novelle_1020;;;[];;;;text;t2_3um1vzgu;False;False;[];;Doesn’t that only work in Australia or something? Correct me if I’m wrong;False;False;;;;1610531555;;False;{};gj3k3xh;False;t3_kw9q32;False;True;t1_gj32hw8;/r/anime/comments/kw9q32/should_i_buy_funimation_or_crunchyroll_or_other/gj3k3xh/;1610599312;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610531612;;False;{};gj3k5wl;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3k5wl/;1610599346;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UDani11;;;[];;;;text;t2_3urk0qno;False;False;[];;Exact opposite for me. I could not name more than like ~7 aot characters.;False;False;;;;1610531636;;False;{};gj3k6ok;False;t3_kw8oi3;False;True;t1_gj369ub;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3k6ok/;1610599359;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SpiceAndWolfIsGreat;;;[];;;;text;t2_24o6hifi;False;False;[];;Definitely gonna watch Back arrow;False;False;;;;1610531657;;False;{};gj3k7fn;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3k7fn/;1610599373;3;True;False;anime;t5_2qh22;;0;[]; -[];;;xwing_jockey;;;[];;;;text;t2_dkvzr;False;False;[];;"Yes happens to me all the time. Especially if they are Japanese names (which makes sense lol) but if their name is something that is an English word like Spike or Jett I don’t forget lol. -I feel like I’m not a big enough fan when I forget Tanjiro’s name after I finish watching Demon Slayer.";False;False;;;;1610531697;;False;{};gj3k8te;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3k8te/;1610599395;7;True;False;anime;t5_2qh22;;0;[]; -[];;;THEGUYINTHEPICT;;;[];;;;text;t2_4059sf4r;False;False;[];;"*Me with shit ton of sequels and other adaptations to watch this season that I can barely keep up with* - -Yeah I'll watch these. Also another wall anime this season pog";False;False;;;;1610531726;;False;{};gj3k9uz;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3k9uz/;1610599412;3;True;False;anime;t5_2qh22;;0;[]; -[];;;vikker_42;;;[];;;;text;t2_2m0p5b7u;False;False;[];;I know my way around the other places, but nowadays I'm just too lazy. I just want a decent app like netflix but when it comes to anime there's so much fuckin region lock.;False;False;;;;1610531743;;False;{};gj3kagr;False;t3_kw83at;False;False;t1_gj3k1uy;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3kagr/;1610599422;16;True;False;anime;t5_2qh22;;0;[]; -[];;;UDani11;;;[];;;;text;t2_3urk0qno;False;False;[];;"It happens a lot more when i watch an anime weekly instead of binge. Cuz i constantly forget it over the week. I've watched talentless nana and i fucking loved it and i don't remember more than like 4 names. Especially if it's a short anime it can be easy to forget. - -But i sometimes even forget plot so idk, that might not be good. (Not immediately after watching but maybe like after a few months, i only remember the main events) Anyone else has that problem?";False;False;;;;1610531753;;False;{};gj3kau3;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3kau3/;1610599428;2;True;False;anime;t5_2qh22;;0;[]; -[];;;infohippie;;MAL;[];;https://myanimelist.net/profile/Infohippie;dark;text;t2_2750d7l;False;False;[];;"I remember almost all of them, so long they're characters I find interesting. I can tell you all the primary and secondary characters of K-On or Love Live, and recognise them from as little as a shot of their feet, but the best I can do for a show like MHA, for example, is ""Uhh... blobby hair guy"" or ""explodey dude who's angry a lot.""";False;False;;;;1610531806;;False;{};gj3kcpb;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3kcpb/;1610599458;5;True;False;anime;t5_2qh22;;0;[]; -[];;;BeckQuillion89;;;[];;;;text;t2_11czx8;False;False;[];;"As a skateboarder, I've been waiting for an anime about skateboarding since I started getting into anime 6 years ago. So far it looks great, and captures enough of the skate culture of trying a trick hundreds of times until you finally land it that justifies all the scraps like in the ED. Its still absurd, but I'm enjoying it so far. - -Even if it doesn't stick the landing (pun intended) the fact that it exists make me pray other studios will realize the amazing opportunity for an anime with great sakuga and/or slice of life skater feels.";False;False;;;;1610531973;;1610554118.0;{};gj3kikv;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3kikv/;1610599555;11;True;False;anime;t5_2qh22;;0;[]; -[];;;BeckQuillion89;;;[];;;;text;t2_11czx8;False;False;[];;It hurts, just the OP alone made me unconfortable with the frozen stills of the characters' death stares.;False;False;;;;1610532038;;False;{};gj3kktu;False;t3_kw83at;False;False;t1_gj34yox;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3kktu/;1610599592;24;True;False;anime;t5_2qh22;;0;[]; -[];;;filimaua13;;;[];;;;text;t2_2aq8dlok;False;False;[];;Literally the plot of Oregairu. Cynical loner high schooler grows out of his overly negative edgy phase of assuming the worst out of everyone to avoid getting hurt again due to being rejected (friends/girls) and hurt way too many times in the past. He learns to open up, communicate and accept the genuine relationships around him.;False;False;;;;1610532053;;False;{};gj3kld3;False;t3_kwah37;False;True;t3_kwah37;/r/anime/comments/kwah37/wondering_if_such_anime_exists/gj3kld3/;1610599601;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Heaz4;;;[];;;;text;t2_4u48x8q3;False;False;[];;I dont really get the hype, ive stopped reading manga like a half a year ago i wouldnt say its anything special and ive seen on some sites this having comedy tag... I guess the beginning is fine and all but it doesent really progress after that.;False;False;;;;1610532064;;False;{};gj3klr6;False;t3_kwaybf;False;False;t3_kwaybf;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj3klr6/;1610599607;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Starbreaker07;;;[];;;;text;t2_l6zvgvv;False;False;[];;I wish i could see mire origi als but since i have exames next couple of weeks and also have a lot of sequels this season i'm just gonna limit myself to 2-3 originals. Nice post tho i'll try to try maybe one or two more!;False;False;;;;1610532154;;False;{};gj3koxn;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3koxn/;1610599661;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BeelLeBub;;;[];;;;text;t2_5fdprwla;False;False;[];;I just hope Mushoku Tensei won't be slept on;False;False;;;;1610532178;;False;{};gj3kpqp;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3kpqp/;1610599675;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PopPunkTeacher;;;[];;;;text;t2_3q70c5ad;False;False;[];;Not an anime original. Based off a light novel;False;False;;;;1610532184;;False;{};gj3kpyo;False;t3_kw83at;False;False;t1_gj3jsx8;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3kpyo/;1610599678;7;True;False;anime;t5_2qh22;;0;[]; -[];;;rollin340;;;[];;;;text;t2_cmyef;False;False;[];;I know I heard the name clearly. My brain just deemed it as useless information and chucked it. I guess I won't remember their name today.;False;False;;;;1610532196;;False;{};gj3kqd8;False;t3_kw8oi3;False;False;t1_gj3igvp;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3kqd8/;1610599685;63;True;False;anime;t5_2qh22;;0;[]; -[];;;OneHappyMelon;;;[];;;;text;t2_ll14b;False;False;[];;"Sk8 is fucking fire holy shit. - -Also Wonder Egg might be the next Serial Experiments Lain. Guess ill give it a try.";False;False;;;;1610532253;;False;{};gj3ksca;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3ksca/;1610599720;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Hellknightx;;;[];;;;text;t2_46s38;False;True;[];;That's a pretty weird thing to remember.;False;False;;;;1610532296;;False;{};gj3ktw0;False;t3_kw8oi3;False;False;t1_gj384pt;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3ktw0/;1610599746;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Beat_Saber_Music;;;[];;;;text;t2_3vi9adoi;False;False;[];;Its normal, as you wont think of their names and thus your brain thinks its not important knowledge. I myself only remember like the most prominent characters, like Nana from talentless nana, Kuriyama and Akihito from Beyond the Boundary and Shoko and Shoya from Silent Voice as an example, because their names are the most prominent;False;False;;;;1610532334;;False;{};gj3kv7o;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3kv7o/;1610599767;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UDani11;;;[];;;;text;t2_3urk0qno;False;False;[];;It sucks how some animes can't be judged with just 3 episodes tho. I completely agree, don't watch what you don't like, but for example my sister dropped attack on titan after like 3 episodes, and she will never know what it's actually like cuz she hasn't even seen eren's transformation. That is revealed around ep 8, i checked that. And it's like, at the same time it's not worth it to spend the time on if you don't like it, but you also can't know if you're going to like it, and you can't know how many episodes until you get to what it's actually like. So ye it's very much a bet wether spending the time on it is worth it or no, and i hate that;False;False;;;;1610532371;;False;{};gj3kwfj;False;t3_kw8oi3;False;False;t1_gj3c3nw;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3kwfj/;1610599787;9;True;False;anime;t5_2qh22;;0;[]; -[];;;queensaanvi;;;[];;;;text;t2_80pvobu4;False;False;[];; It happens all the time with me. I remember the name of the characters only if I watch the anime more than once.;False;False;;;;1610532372;;False;{};gj3kwhf;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3kwhf/;1610599788;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mureto;;;[];;;;text;t2_25jnipjj;False;False;[];;Oh, it seems like I interpreted it wrong. I though like new series and not sequels. Thx for correcting me;False;False;;;;1610532385;;False;{};gj3kwwr;False;t3_kw83at;False;True;t1_gj3kpyo;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3kwwr/;1610599795;2;True;False;anime;t5_2qh22;;0;[]; -[];;;UDani11;;;[];;;;text;t2_3urk0qno;False;False;[];;I found it so much harder to remember everything from seasonals you watch weekly than from animes you binged, it makes me forget when i have 1 week gaps between them all the time, and to add onto that i'm watching like 5 at the same time so constantly switching between seasonals fucks my memory up of them even more, eventually names just don't stick.;False;False;;;;1610532597;;False;{};gj3l48u;False;t3_kw8oi3;False;False;t1_gj3avb2;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3l48u/;1610599916;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"Yes, it's perfectly normal - -Good luck remembering them while you watch";False;False;;;;1610532624;;False;{};gj3l582;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3l582/;1610599932;2;True;False;anime;t5_2qh22;;0;[]; -[];;;daeny_on_the_throne;;;[];;;;text;t2_75skkn2;False;False;[];;Wait, there were other characters ?;False;False;;;;1610532672;;False;{};gj3l6wj;False;t3_kw8oi3;False;False;t1_gj39f89;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3l6wj/;1610599961;21;True;False;anime;t5_2qh22;;0;[]; -[];;;CapablePerformance;;;[];;;;text;t2_301hogoy;False;False;[];;"So much the same. I'll be rereading a guilty pleasure series like Wisemans Grandson for the fourth time and still forget peoples any of the characters names an hour after I stop reading. - -The only series I can remember their names are all-time favorites like FMA, Toradora or super engrained into the fandom like Eva, Inuyasha, Ranma, Trigun, and Bebop.";False;False;;;;1610532680;;False;{};gj3l75w;False;t3_kw8oi3;False;True;t1_gj32n5m;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3l75w/;1610599965;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"Like when they alternate between first name, family name, nickname and name-kun thing - -Good luck with that...";False;False;;;;1610532758;;False;{};gj3l9tr;False;t3_kw8oi3;False;False;t1_gj36lav;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3l9tr/;1610600008;16;True;False;anime;t5_2qh22;;0;[]; -[];;;babydave371;;MAL a-amq;[];;https://myanimelist.net/profile/babydave371;dark;text;t2_sak6n;False;False;[];;">because we haven't had a really good mecha anime in a hot minute - -I mean, Gundam Build Divers Re:Rise was arguably the best show of 2020 and then there was more Fafner, Promare, and Gridman (if you count that) but sure. - -Aside from that nitpick, really good write up. I hope more.people watch these shows instead of complaining that everything this season is a sequel!";False;False;;;;1610532861;;False;{};gj3ldd4;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3ldd4/;1610600068;6;True;False;anime;t5_2qh22;;0;[]; -[];;;9HOS7;;;[];;;;text;t2_4h86nd9v;False;False;[];;"Posts like this make me glad for Reddit. There’s so much anime I’ve loved I would have skipped if it wasn’t for Reddit’s suggestions. - -There was no way in hell I’d pick up an anime about volleyball, skating, or an egg. But here we are - I have 15 shows on my PTW this season!";False;False;;;;1610532897;;False;{};gj3lelp;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3lelp/;1610600089;3;True;False;anime;t5_2qh22;;0;[]; -[];;;benjikage;;;[];;;;text;t2_9pvcbcfe;False;False;[];;it always happens to me;False;False;;;;1610533183;;False;{};gj3logx;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3logx/;1610600252;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hero_Kenzan;;;[];;;;text;t2_5ayox6za;False;False;[];;I think you will always remember names in good and memorable animes, meanwhile forgetting names in overhyped anime of the month is not surprising.;False;False;;;;1610533300;;False;{};gj3lsfw;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3lsfw/;1610600316;1;False;False;anime;t5_2qh22;;0;[]; -[];;;plopingbob;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Vegeta_Playz;light;text;t2_50h1b592;False;False;[];;I tend to find it hard when I watch a lot of slice of life anime as in many cases characters have multiple nicknames, many of which are japanese which confuses me when trying to remember their names.;False;False;;;;1610533326;;False;{};gj3ltde;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3ltde/;1610600331;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LostDelver;;;[];;;;text;t2_1o8p0432;False;False;[];;Of course. There are lots of factors to consider but it's normal. Hell I forget people's names IRL although that might be due to my own poor memory.;False;False;;;;1610533363;;False;{};gj3luoc;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3luoc/;1610600352;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Chinbie;;;[];;;;text;t2_12h6erpy;False;False;[];;just finished watching the WONDER EGG and im interested in it;False;False;;;;1610533368;;False;{};gj3luuc;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3luuc/;1610600355;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Desiderius_S;;;[];;;;text;t2_b6hbn;False;False;[];;"Then, in 5 years time, I'll complain about how no one has ever warned me about an original anime from Winter 2021 that I've just discovered. -Works like a charm.";False;False;;;;1610533372;;False;{};gj3luzd;False;t3_kw83at;False;False;t1_gj3ac7e;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3luzd/;1610600357;175;True;False;anime;t5_2qh22;;0;[]; -[];;;UnusualEconomics3;;;[];;;;text;t2_6n02aadc;False;False;[];;Thank you for making this post. The anime industry is in desperate need for anime originals.;False;False;;;;1610533373;;False;{};gj3lv0t;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3lv0t/;1610600358;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rancor1223;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;myanimelist.net/animelist/rancor1223;light;text;t2_e7to2;False;False;[];;"> I think the biggest problem for me was that the names lacked meaning - -Honestly, since I started learning Japanese, I kind of wish they actually didn't have a meaning. Let's just say lot of Japanese LN writers/mangaka are not the most creative when it comes to names. - -E.g. character's main trait is that he studies very hard. So his name is Manabu (まなぶ), which also means ""to study"" (学ぶ). It just sound so cheesy when you start picking up on it.";False;False;;;;1610533431;;False;{};gj3lx07;False;t3_kw8oi3;False;False;t1_gj3chde;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3lx07/;1610600391;28;True;False;anime;t5_2qh22;;0;[]; -[];;;bitfrost41;;;[];;;;text;t2_f9wm3;False;False;[];;Yes, and New Zealand I guess. It’s only carrying Funimation’s library with a little extra from Sentai.;False;False;;;;1610533439;;False;{};gj3lxa8;False;t3_kw9q32;False;True;t1_gj3k3xh;/r/anime/comments/kw9q32/should_i_buy_funimation_or_crunchyroll_or_other/gj3lxa8/;1610600395;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tavioltean1;;;[];;;;text;t2_4dmaq9e5;False;False;[];;"It's normal, i don't remember names in general, only remember them if the person did something ""impactful"" or simply has a cool name worth to remember. Anyway, why would you be bother for not remembering names? Lmao. As long as you remember the story and/or what the characters do, then it's perfect👌🏻";False;False;;;;1610533440;;False;{};gj3lxav;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3lxav/;1610600395;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_OG_upgoat;;;[];;;;text;t2_3pdv4tx5;False;False;[];;"Wonder Egg also has 3 of the Love Live seiyuu in it, Shuka Saito (You), Yano Hinaki (Yuu), and Tomori Kusunoki (Setsuna). - -Nice to see the girls branching out into other anime, though Shuka and Tomoriru already had prior roles.";False;False;;;;1610533480;;False;{};gj3lyp2;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3lyp2/;1610600419;6;True;False;anime;t5_2qh22;;0;[]; -[];;;CHEESEONFlRE;;;[];;;;text;t2_6iytr;False;False;[];;Shame. The story only kept getting better too. But I really hope this leads to a revival all the same!;False;False;;;;1610533480;;False;{};gj3lyp3;False;t3_kw83at;False;True;t1_gj3etu0;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3lyp3/;1610600419;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610533503;;False;{};gj3lzhs;False;t3_kw8oi3;False;True;t1_gj3i3av;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3lzhs/;1610600432;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610533512;;False;{};gj3lzsr;False;t3_kw8oi3;False;False;t1_gj3ijzx;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3lzsr/;1610600437;9;True;False;anime;t5_2qh22;;0;[]; -[];;;airwatersky;;;[];;;;text;t2_gahly;False;False;[];;Well wouldn't it be somewhat annoying to hear to hear the last name being said but with the first name in the subs?;False;False;;;;1610533573;;False;{};gj3m1xn;False;t3_kw8oi3;False;False;t1_gj3jmtp;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3m1xn/;1610600474;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Chinbie;;;[];;;;text;t2_12h6erpy;False;False;[];;agree... there are some animes that you could forget their names if the series ended already. Sometimes even after watching a specific episodes (especially for those weekly viewers), you will already forget some of their names... hahaha.;False;False;;;;1610533577;;False;{};gj3m233;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3m233/;1610600476;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AwkwardOrchid380;;;[];;;;text;t2_7cry8cmt;False;False;[];;These are the kinda posts are come on here for! Thank you my friend 🙏;False;False;;;;1610533582;;False;{};gj3m28w;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3m28w/;1610600479;2;True;False;anime;t5_2qh22;;0;[]; -[];;;iamacat188;;;[];;;;text;t2_2vc87884;False;False;[];;Damn there are too many good anime coming out this season;False;False;;;;1610533609;;False;{};gj3m36j;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3m36j/;1610600496;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jsgjs;;;[];;;;text;t2_yra7d;False;False;[];;Gets hyped by OPs description then looks at MAL ratings;False;False;;;;1610533616;;False;{};gj3m3fo;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3m3fo/;1610600500;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sammyhain;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/arctec-?order=16&order2=4&stat";light;text;t2_at0g9;False;False;[];;masao;False;False;;;;1610533636;;False;{};gj3m444;False;t3_kw8oi3;False;True;t1_gj3l6wj;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3m444/;1610600512;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Isogash;;MAL;[];;https://myanimelist.net/animelist/Isogash;dark;text;t2_b2n8a;False;False;[];;"You're right, it's a fun manga but after about 40 chapters it feels like it regressed into an episodic comedy format, and it's not the same level of comedy you'd get from something like Kaguya. I'd rather it was either better as a slice-of-life or had some more of that classic romance drama spice e.g. Domestic Girlfriend. I expect the anime either won't get to that point or it'll skip most of the inconsequential chapters. - -If it keeps up the pacing that it did from the first episode I think it'll really struggle to stick the landing, they need to take some license with the adaptation and focus on making the main threads of the story within an anime, but I kind of doubt they'll get it right. - -Having said that, it has already made a few changes and I think they're all for the better so far, so there's still hope.";False;True;;comment score below threshold;;1610533641;;1610533907.0;{};gj3m4bo;False;t3_kwaybf;False;True;t1_gj3klr6;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj3m4bo/;1610600515;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;NaveZero;;;[];;;;text;t2_qk057;False;False;[];;"I usually forget them rather quick after watching the show, during the show I usually remember though. - -Shows that I really love I remember the names of the characters in, but most shows that are generic or average is completely gone.";False;False;;;;1610533645;;False;{};gj3m4gx;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3m4gx/;1610600518;1;True;False;anime;t5_2qh22;;0;[]; -[];;;machopsychologist;;;[];;;;text;t2_1nsz447e;False;False;[];;With a name like Wonder Egg I completely skipped over it as there's too many shows to cover. But I always support original anime, so that's gonna be on my watchlist now.;False;False;;;;1610533652;;False;{};gj3m4pt;False;t3_kw83at;False;False;t1_gj35m4r;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3m4pt/;1610600522;16;True;False;anime;t5_2qh22;;0;[]; -[];;;mcmanybucks;;;[];;;;text;t2_7j2zw;False;True;[];;Honestly Japanese to me is such a pattern-based language that I keep forgetting all of it.;False;False;;;;1610533687;;False;{};gj3m5wa;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3m5wa/;1610600542;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nikigreensky;;;[];;;;text;t2_4hnxg22n;False;False;[];;Sk8 is really good;False;False;;;;1610533728;;False;{};gj3m78e;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3m78e/;1610600565;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Guinran;;;[];;;;text;t2_khg8c4z;False;False;[];;I sometimes forget them even while watching;False;False;;;;1610533747;;False;{};gj3m7xt;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3m7xt/;1610600577;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_SHUN;;;[];;;;text;t2_6nop2uv4;False;False;[];;Watched deca fence last year, a neat surprise;False;False;;;;1610533796;;False;{};gj3m9n9;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3m9n9/;1610600607;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rch_wakw;;;[];;;;text;t2_14izfjo8;False;False;[];;Yeah same, I sometimes only remember the appearances. However, I do remember the names of characters from childhood animes like Naruto and One Piece though.;False;False;;;;1610533915;;False;{};gj3mdt6;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3mdt6/;1610600675;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GlitchMachine123;;;[];;;;text;t2_wfw1mq;False;False;[];;Is that pikachu or naruto;False;False;;;;1610533956;;False;{};gj3mf6o;False;t3_kw8oi3;False;False;t1_gj39ofr;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3mf6o/;1610600698;28;True;False;anime;t5_2qh22;;0;[]; -[];;;Bierculles;;;[];;;;text;t2_4p82isz9;False;False;[];;Just watches Sk8 and its amazing, gonna love it;False;False;;;;1610534016;;False;{};gj3mh9l;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3mh9l/;1610600733;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fiztz;;;[];;;;text;t2_241gpdsd;False;False;[];;That's kinda the theme of Log Horizon. One Punch Man and Mob Psycho are very much about the value of community too.;False;False;;;;1610534058;;False;{};gj3miqf;False;t3_kwah37;False;True;t3_kwah37;/r/anime/comments/kwah37/wondering_if_such_anime_exists/gj3miqf/;1610600758;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aschentei;;;[];;;;text;t2_z1t0l;False;False;[];;Ex-arm? 🤣;False;False;;;;1610534072;;False;{};gj3mj61;False;t3_kw83at;False;False;t1_gj3ac7e;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3mj61/;1610600764;25;True;False;anime;t5_2qh22;;0;[]; -[];;;FarrelMFajar;;;[];;;;text;t2_13bxx0;False;False;[];;"The main problem with Back Arrow that prevents it from getting more popular is it doesn't have the name ""TRIGGER"" in its production list.";False;False;;;;1610534097;;False;{};gj3mk1n;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3mk1n/;1610600779;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ZantetsukenX;;;[];;;;text;t2_4yw7r;False;False;[];;Back Arrow has this sort of Wild Arms combined with Xenogears feel to me in it's design. I'm hoping it stays good!;False;False;;;;1610534166;;False;{};gj3mmex;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3mmex/;1610600818;3;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;"Wonder Egg looks very good, but it's not an anime for everyone. The theme is really heavy and dark. I've seen several people commenting that it hits them on personal level which makes it hard to watch. - -Though I don't have personal experience with it, I'm not sure I'll continue watching it if the subsequent episodes become more and more depressing. The pandemic has been depressing enough, so I prefer something fun.";False;False;;;;1610534252;;1610534506.0;{};gj3mpfk;False;t3_kw83at;False;False;t1_gj35m4r;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3mpfk/;1610600870;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Tom-Pendragon;;;[];;;;text;t2_mnv6q;False;False;[];;I'm not reading the wall of text for one anime, give me tl:dr;False;True;;comment score below threshold;;1610534266;;False;{};gj3mpvn;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3mpvn/;1610600877;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;thatfatgamer;;;[];;;;text;t2_5kq6k;False;False;[];;I often forget peoples name IRL, I think its normal in anime.;False;False;;;;1610534413;;False;{};gj3muxi;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3muxi/;1610600963;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ColosalDisappointMan;;;[];;;;text;t2_3u4eak2t;False;False;[];;It happens to me all the time, except for my most favorite Anime's. I can't seem to forget names from those.;False;False;;;;1610534413;;False;{};gj3muxu;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3muxu/;1610600963;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tiniestjazzhands;;;[];;;;text;t2_4n6e8h7n;False;False;[];;I really only remember names from characters that stuck out to me from memorable shows. Everyone else is immediately forgotten. Hell I forget names after finishing an episode.;False;False;;;;1610534445;;False;{};gj3mw32;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3mw32/;1610600986;2;True;False;anime;t5_2qh22;;0;[]; -[];;;iredditfordogpics;;;[];;;;text;t2_87wa1zlj;False;False;[];;Yes. I rarely remember names from movies, books and anime.;False;False;;;;1610534470;;False;{};gj3mwxx;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3mwxx/;1610601000;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Specialpolio;;;[];;;;text;t2_3xuk3szf;False;False;[];;Sk8 infinity and back arrow both look very cool and promising so I hope they'll be alright, did not see the other anime yet tho.;False;False;;;;1610534499;;False;{};gj3my04;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3my04/;1610601019;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Alaniata;;;[];;;;text;t2_42kardzz;False;False;[];;What are you talking about? I’ll never forget John Goku, Jar Jar Ruto or Paul!;False;False;;;;1610534519;;False;{};gj3myoy;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3myoy/;1610601030;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EnoughBake6233;;;[];;;;text;t2_4ygnzl37;False;False;[];;What is this anime and is it any good ? I never forget luffy,naruto since childhood lol;False;False;;;;1610534523;;False;{};gj3myti;False;t3_kw8oi3;False;True;t1_gj3lzsr;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3myti/;1610601032;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Careless_Pudding_327;;;[];;;;text;t2_8rj9fyvi;False;False;[];;"Yes it would! - -In case this is your first time seeing it, the /s at the end of a post indicates sarcasm.";False;False;;;;1610534525;;False;{};gj3myvo;False;t3_kw8oi3;False;False;t1_gj3m1xn;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3myvo/;1610601033;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Swiggy1957;;;[];;;;text;t2_bbysi;False;False;[];;"I think the importance of the character and your interaction with the character helps you recall the names. Once the anime is over, you often forget the characters, but if you are reading the manga/LN and interacting with a group of other fans, those character names come to your mind quickly. Also if you use those names in discussion groups as well, you'll find them easier to remember - -12 episodes is not enough to put those names into your brain unless you sit and rewatch it over and over again. You have to be really proactive. - -Let's go with one that is my favorite: Hinamatsuri. Okay, Hina is easy to remember because the title is a pun of her name. (Hina matsuri translates to Girls/Dolls Festival, a special day celebrated annually in Japan to honor daughters and young girls) If I didn't really LOVE the series, I probably wouldn't have remembered any of the others. But I loved the anime so much I got involved on the Hinamatsuri Discord and Subreddit, then read the scanlated manga series, and started buying the English translations of the manga (volume 11 arrives tomorrow) so I'm not only emotionally invested, I'm financially invested! - -Still, I do forget the names of some of the minor characters once their arc is finished: but I do recall the main characters. Hina, Yoshifuma Nitta, Hitomi, Anzu, Mao, Sabu, Baba, Atsushi and Utako. That's from the anime. From the manga, characters like Haru and Mami come to mind. - -Names that I had to look up in discussions are the Hayashi family (their given names have never been mentioned) Yassan (The homeless guy that helped in the reformation of Anzu) and any of the boys, as they are good characters, but are never the main focus of a story.";False;False;;;;1610534527;;False;{};gj3myxl;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3myxl/;1610601034;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Isayummm;;;[];;;;text;t2_8n4wmq34;False;False;[];;Wonder Egg got me like WHAT THE FUCK;False;False;;;;1610534544;;False;{};gj3mzib;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3mzib/;1610601043;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cookingboy;;;[];;;;text;t2_3x3xs;False;True;[];;I remember Suzaku, CC and table-kun... 🤣;False;False;;;;1610534545;;False;{};gj3mzk3;False;t3_kw8oi3;False;False;t1_gj3lzsr;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3mzk3/;1610601044;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;There's the lesbian one, and the other hotter lesbian one, the old guy...;False;False;;;;1610534648;;False;{};gj3n36q;False;t3_kw8oi3;False;False;t1_gj3l6wj;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3n36q/;1610601106;60;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;Dont forget ex-arm with its billion dollar company funding;False;False;;;;1610534760;;False;{};gj3n75g;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3n75g/;1610601171;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;"You know those first 40 chapters are the whole story right? The rest are extras and it became a SoL. This anime is not going to get even close to that so what's the issue exactly? - -Also, DomeKano? Really?";False;False;;;;1610534760;;False;{};gj3n765;False;t3_kwaybf;False;False;t1_gj3m4bo;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj3n765/;1610601171;24;True;False;anime;t5_2qh22;;0;[]; -[];;;georgeeeboyy;;;[];;;;text;t2_69sn1nmm;False;False;[];;Couldn’t tell you, because I’m from Australia 🤪;False;False;;;;1610534799;;False;{};gj3n8je;False;t3_kw9q32;False;False;t1_gj3k3xh;/r/anime/comments/kw9q32/should_i_buy_funimation_or_crunchyroll_or_other/gj3n8je/;1610601194;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cookingboy;;;[];;;;text;t2_3x3xs;False;True;[];;"Did you really just ask what is Code Geass and is it good? - -Yes, it’s very good and extremely popular/memorable. Not perfect by any means but definitely unique and very influential. Just like Evangelion, it’s a landmark show even if you don’t like mecha.";False;False;;;;1610534811;;False;{};gj3n8y7;False;t3_kw8oi3;False;False;t1_gj3myti;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3n8y7/;1610601202;11;True;False;anime;t5_2qh22;;0;[]; -[];;;I-ce-SCREAM;;;[];;;;text;t2_8r3t4wm8;False;False;[];;I once got a spoiler while doing the same, due to that now I would just keep on watching even if it confuses me a little;False;False;;;;1610534858;;False;{};gj3nake;False;t3_kw8oi3;False;False;t1_gj2xowe;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3nake/;1610601227;93;True;False;anime;t5_2qh22;;0;[]; -[];;;JustTheSaba;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/jojoisbestanime;light;text;t2_2t1d4mm4;False;False;[];;yes it's normal. i usually only remember names of mc, waifu and fav character. thats all i need to know;False;False;;;;1610534895;;False;{};gj3nbul;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3nbul/;1610601249;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Taerusaki;;skip7;[];;;dark;text;t2_1jiysgpw;False;False;[];;Am I the only one who dislike wonder egg priority judging by the first episode? I love the art but maybe I'm just not into weird fantasy stories?;False;False;;;;1610534941;;False;{};gj3ndh6;False;t3_kw83at;False;True;t1_gj35m4r;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3ndh6/;1610601276;0;True;False;anime;t5_2qh22;;0;[]; -[];;;needle1;;;[];;;;text;t2_bdfyk;False;False;[];;Unironically serious AOTS contender, considering the insane amount of attention it's suddenly getting in Japan right now. The official Twitter account went from less than 2,000 to over 117,000 followers in like a week or so. Everyone is talking about it and everyone is drawing fan art of it, it's crazy. Reminds me a bit of how Kemono Friends suddenly blew up in winter 2017.;False;False;;;;1610535023;;1610535943.0;{};gj3ngct;False;t3_kwa34e;False;False;t1_gj36k45;/r/anime/comments/kwa34e/pui_pui_molcar_yes_this_is_an_anime/gj3ngct/;1610601325;9;True;False;anime;t5_2qh22;;0;[]; -[];;;jetlightbeam;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;http://www.anime-planet.com/forum/members/;light;text;t2_16fk5q;False;False;[];;I can only name one, eren Yeager, but that's probably becuase the monkey dude titan scared the shit out of me and I havent been able to watch the show since. First it was the collosal titan then it was monekg titan. I think that anime is the only one that can really creep me out. I've seen some fucked up anime and only AOT put me in cold sweats and forced me to turn off my computer.;False;False;;;;1610535084;;False;{};gj3nikl;False;t3_kw8oi3;False;False;t1_gj3k6ok;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3nikl/;1610601361;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MachoCZ;;;[];;;;text;t2_33umj5z0;False;False;[];;It is absolutely normal. There's one character (Ram) that has twin and I just can't remember the name of her twin. Can anyone help me ?;False;False;;;;1610535169;;False;{};gj3nlnf;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3nlnf/;1610601415;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;I bet you’re gonna edit this comment and say it’s just a joke right?;False;True;;comment score below threshold;;1610535206;;False;{};gj3nmze;False;t3_kw83at;False;True;t1_gj3bi4m;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3nmze/;1610601437;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;thepeciguy;;;[];;;;text;t2_26sj0yx0;False;False;[];;will slept on them and binge later;False;False;;;;1610535211;;False;{};gj3nn6o;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3nn6o/;1610601441;2;True;False;anime;t5_2qh22;;0;[]; -[];;;UDani11;;;[];;;;text;t2_3urk0qno;False;False;[];;Wow really? I kinda didn't think aot was scary at all... To me it was more weird than scary.;False;False;;;;1610535277;;False;{};gj3npj1;False;t3_kw8oi3;False;False;t1_gj3nikl;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3npj1/;1610601479;20;True;False;anime;t5_2qh22;;0;[]; -[];;;rocharox;;;[];;;;text;t2_9e5c3;False;False;[];;Aside from the main protagonist and his/her LI, I dgas for the others names. I just remember their faces;False;False;;;;1610535277;;False;{};gj3npjk;False;t3_kw8oi3;False;True;t1_gj2vi7g;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3npjk/;1610601479;3;True;False;anime;t5_2qh22;;0;[]; -[];;;karen_pls;;;[];;;;text;t2_7fslgyoe;False;False;[];;why would I edit it? If I need to explain it, it failed. Take the L, try again next time. Plenty of comedy in the sea.;False;False;;;;1610535296;;False;{};gj3nq8n;False;t3_kw83at;False;False;t1_gj3nmze;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3nq8n/;1610601492;21;True;False;anime;t5_2qh22;;0;[]; -[];;;ryan29081996;;;[];;;;text;t2_3qfsjgan;False;False;[];;Japan, the only place in the world that can combine car a hamster and make them freaking cute using stop motion animation.;False;False;;;;1610535362;;False;{};gj3nsnw;False;t3_kwa34e;False;False;t3_kwa34e;/r/anime/comments/kwa34e/pui_pui_molcar_yes_this_is_an_anime/gj3nsnw/;1610601531;6;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;Whoa okay, was this intended to be funny?;False;True;;comment score below threshold;;1610535370;;False;{};gj3nsxo;False;t3_kw83at;False;True;t1_gj3nq8n;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3nsxo/;1610601535;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610535378;;False;{};gj3nt7j;False;t3_kw8oi3;False;True;t1_gj3myti;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3nt7j/;1610601539;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;feizhai;;;[];;;;text;t2_fhkd3;False;False;[];;easy to forget when its so badly cgi animated.;False;False;;;;1610535416;;False;{};gj3nuo8;False;t3_kw83at;False;False;t1_gj34yox;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3nuo8/;1610601561;9;True;False;anime;t5_2qh22;;0;[]; -[];;;SMA2343;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/HispanicName;light;text;t2_6xzja;False;False;[];;Yes. Unless I really loved the anime. I will forget names quickly, because I mostly either 1) loved the show and didn’t care about the characters or 2) the entire show was shit;False;False;;;;1610535489;;False;{};gj3nxc1;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3nxc1/;1610601604;1;True;False;anime;t5_2qh22;;0;[]; -[];;;irisverse;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/usernamesarehard;light;text;t2_1dzbqjh4;False;False;[];;"If I drop a show after one episode, it's usually because it pissed me off rather than bored me. A single episode isn't really enough for me to consider a show ""boring."" - -That said, I only made it about fifteen minutes into Akashic Records because there was literally nothing about that show that I found to even be remotely interesting.";False;False;;;;1610535549;;False;{};gj3nzl8;False;t3_kw97il;False;False;t3_kw97il;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj3nzl8/;1610601640;1;True;False;anime;t5_2qh22;;0;[]; -[];;;karen_pls;;;[];;;;text;t2_7fslgyoe;False;False;[];;How else would someone interpret it if not an attempt at humor (regardless of if they think it is funny)? pixels or ink can't give consent;False;False;;;;1610535584;;False;{};gj3o0w3;False;t3_kw83at;False;False;t1_gj3nsxo;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3o0w3/;1610601661;9;True;False;anime;t5_2qh22;;0;[]; -[];;;hey_its_drew;;;[];;;;text;t2_ls3f1;False;False;[];;Good suggestions, but I gotta admit if you’re trying to steer me toward my Funimation subscription. Haha;False;False;;;;1610535587;;False;{};gj3o10j;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3o10j/;1610601663;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ricandroll;;MAL;[];;;dark;text;t2_lyl2n;False;False;[];;Nope. Names are pretty easy.;False;False;;;;1610535680;;False;{};gj3o4f9;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3o4f9/;1610601717;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jackriprip;;;[];;;;text;t2_27l4habh;False;False;[];;"I got really confused with names and characters in Tokyo Ghoul Re. Because I watched the previous seasons months before and forgot about a lot of names and characters. So half of the time of TG:Re I was like ""Wait, what? Who's that?"".";False;False;;;;1610535681;;1610536073.0;{};gj3o4gm;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3o4gm/;1610601718;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abdoson;;;[];;;;text;t2_3dloote3;False;False;[];;Real japanese names are hard to remember. But them luffys and killuas not so much.;False;False;;;;1610535719;;False;{};gj3o5uz;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3o5uz/;1610601740;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;Zetsubou Sensei plays on this and makes all of the character names giant puns on their character quirk. Which in the context of that show, is pretty great, and if you know a bit of Japanese, can be fun to figure out. Like, I'll have a hard time forgetting the moment when I realized that the name of Otonashi, the girl who texts instead of speaks, is punning on 音なし (without sound).;False;False;;;;1610535775;;1610536015.0;{};gj3o7vm;False;t3_kw8oi3;False;False;t1_gj3lx07;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3o7vm/;1610601771;16;True;False;anime;t5_2qh22;;0;[]; -[];;;andoryu123;;;[];;;;text;t2_729dy;False;False;[];;I forgot who but someone made a video explaining that most anime character names are play on tropes or descriptions of characters. Naruto is a good example, his first name is also what are ingredient in ramen that looks like a swirl. His last name is Uzumaki which means whirlpool. His character wears those on his body.;False;False;;;;1610535865;;False;{};gj3ob70;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3ob70/;1610601827;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;Even before it aired, it seems the sakuga community was especially hyped for Wonder Egg because of the quality of the animation;False;False;;;;1610535909;;False;{};gj3ocsj;False;t3_kw83at;False;False;t1_gj35m4r;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3ocsj/;1610601854;12;True;False;anime;t5_2qh22;;0;[]; -[];;;BossandKings;;;[];;;;text;t2_5ifr53k7;False;False;[];;I'll add those three shows to my lineup of the season, Back Arrow seems the most interesting one for me.;False;False;;;;1610535943;;False;{};gj3oe0z;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3oe0z/;1610601874;2;True;False;anime;t5_2qh22;;0;[]; -[];;;XtremeLotus02;;;[];;;;text;t2_6nt4ymsj;False;False;[];;For me, I dont easily forget the names of characters I like. I just saw a Nagi No Asukara rewatch thread and I remembered all the main characters name, well not the full name but my point stand still. And its been years since I've watched it. Probably cause Im asian xD.;False;False;;;;1610535953;;False;{};gj3oed2;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3oed2/;1610601879;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fuzzynavel34;;MAL;[];;http://myanimelist.net/animelist/hoosierdaddy0827;dark;text;t2_fwokc;False;False;[];;This season is absolutely crazy;False;False;;;;1610535972;;False;{};gj3of3m;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3of3m/;1610601891;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Tacsk0;;;[];;;;text;t2_1ghptda;False;False;[];;There was a certain vile anime, where every character's name started with the letter A, so most viewers couldn't even learn the cast to begin with.;False;False;;;;1610536055;;False;{};gj3oi1j;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3oi1j/;1610601938;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Game2015;;;[];;;;text;t2_poe9a;False;False;[];;Japanese names are harder to remember than English names.;False;False;;;;1610536123;;False;{};gj3okif;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3okif/;1610601977;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sphagetti_Dick;;;[];;;;text;t2_npvin3y;False;False;[];;i binged season 1 of that time i got reincarnated as a slime and i keep having to google rimuru’s name. i can remember some of the other characters names but for some reason his always slips my mind;False;False;;;;1610536155;;False;{};gj3olnx;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3olnx/;1610601995;1;True;False;anime;t5_2qh22;;0;[]; -[];;;needle1;;;[];;;;text;t2_bdfyk;False;False;[];;Guinea pig, not hamster. (Guinea pigs are called Molmots in Japan, hence Molmot + Car = Molcar.);False;False;;;;1610536181;;False;{};gj3ommb;False;t3_kwa34e;False;False;t1_gj3nsnw;/r/anime/comments/kwa34e/pui_pui_molcar_yes_this_is_an_anime/gj3ommb/;1610602010;11;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610536215;;False;{};gj3onuc;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3onuc/;1610602029;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sir-Odin;;;[];;;;text;t2_909yanql;False;False;[];;I'm not really a fan of Back Arrow's art style, we'll see.;False;False;;;;1610536240;;False;{};gj3oose;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3oose/;1610602043;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ashutosh29;;;[];;;;text;t2_5w0dob4v;False;False;[];;It's cool dude shit like this happens sometimes.;False;False;;;;1610536373;;False;{};gj3otti;False;t3_kw83at;False;True;t1_gj3o0w3;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3otti/;1610602124;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Smoke_Santa;;;[];;;;text;t2_7irtoh1r;False;False;[];;This is something some of my friends do and I'm so annoyed by this lmao;False;False;;;;1610536502;;False;{};gj3oylw;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3oylw/;1610602201;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LivingForTheJourney;;;[];;;;text;t2_mhljj;False;False;[];;"Right there with ya. I'm a professional skate filmer and have been skating for 22 years. Was hyped to finally get a skate anime, but this feels like some cheap 80's movie producer trying to capitalize on some weird version of skate culture that's not even a close call to what it's like being a skater. - -I get the appeal for non-skaters. Kinda like how Kuroko's Basketball was utterly ridiculous for actual basketball players, but still funny in it's ridiculous nature. I am actually appreciative that someone decided to give it a try. - -But yeah, kinda hard to watch as someone who actually skates. Kinda have to almost think of it as something entirely different than skateboarding to not be a little annoyed by how kitschy it all feels.";False;False;;;;1610536506;;False;{};gj3oyrd;False;t3_kw83at;False;False;t1_gj3jqth;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3oyrd/;1610602203;10;True;False;anime;t5_2qh22;;0;[]; -[];;;SoundDrill;;;[];;;;text;t2_66nthnyz;False;False;[];;Yeah, not just normal but common;False;False;;;;1610536584;;False;{};gj3p1oq;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3p1oq/;1610602249;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;"Blood-C was dogshit - -Princess connect was boring";False;False;;;;1610536639;;False;{};gj3p3s8;False;t3_kw97il;False;True;t3_kw97il;/r/anime/comments/kw97il/what_anime_have_you_dropped_straight_from_the/gj3p3s8/;1610602282;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SpMagier23;;;[];;;;text;t2_128rbs;False;False;[];;Sure is normal, for me it mostly happens when I binge a series or I watched the series a couple months/years ago, for me, it has mostly to do with how much outside of the anime I come across the characters and remember their names (like memes or analysing the series by myself), having more thoughts about a series and/or making more connections seems to help;False;False;;;;1610536656;;False;{};gj3p4e2;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3p4e2/;1610602293;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SoundDrill;;;[];;;;text;t2_66nthnyz;False;False;[];;Yeah, could remember almost all aot characters before s4(the manga i wasn't paying attention to characters);False;False;;;;1610536674;;1610592717.0;{};gj3p53o;False;t3_kw8oi3;False;False;t1_gj3ihrr;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3p53o/;1610602305;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Kindly_Pea_4076;;;[];;;;text;t2_7y6wnqtg;False;False;[];;"> then toilet paper started talking to her - -That's all you had to say,man.";False;False;;;;1610536685;;False;{};gj3p5hw;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3p5hw/;1610602311;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Star_Lux22;;;[];;;;text;t2_22d262q9;False;False;[];;There’s only one episode out, chill lol;False;False;;;;1610536687;;False;{};gj3p5kv;False;t3_kw83at;False;False;t1_gj3ej92;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3p5kv/;1610602312;10;True;False;anime;t5_2qh22;;0;[]; -[];;;NecroPamyuPamyu;;;[];;;;text;t2_3h5v7kme;False;False;[];;**Wonder Egg Priority** is AOTS material, seriously.;False;False;;;;1610536721;;False;{};gj3p6xa;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3p6xa/;1610602334;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Elevator-Mother;;;[];;;;text;t2_6mx3ylzf;False;False;[];;I really only remember the MC’s name if it’s thrown around a lot or if it’s easy to remember. Anything else that isn’t remotely the two I just forget.;False;False;;;;1610536731;;False;{};gj3p7a8;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3p7a8/;1610602340;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Star_Lux22;;;[];;;;text;t2_22d262q9;False;False;[];;I found Wonder Egg Priority to be decent tbh (unpopular opinion). The animation is of course great though. I’ll keep watching it just to see where the story is going;False;False;;;;1610536776;;False;{};gj3p8wq;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3p8wq/;1610602366;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chazmerg;;;[];;;;text;t2_cw1emrm;False;False;[];;Everyone get your cheat sheets ready for World Trigger.;False;False;;;;1610536878;;False;{};gj3pcta;False;t3_kw8oi3;False;False;t1_gj2vi7g;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3pcta/;1610602428;9;True;False;anime;t5_2qh22;;0;[]; -[];;;drowninalcohol;;;[];;;;text;t2_9qabpw8f;False;False;[];;after all, we've been waiting for almost a decade;False;False;;;;1610536909;;False;{};gj3pe0h;False;t3_kwaybf;False;False;t3_kwaybf;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj3pe0h/;1610602450;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Andre_PC;;;[];;;;text;t2_9yn2z;False;False;[];;Why downvote a harmless joke? Smh. I found funny, my friend, so there it goes my upvote.;False;False;;;;1610536950;;False;{};gj3pfkp;False;t3_kw83at;False;True;t1_gj3bi4m;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3pfkp/;1610602475;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rancor1223;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;myanimelist.net/animelist/rancor1223;light;text;t2_e7to2;False;False;[];;"It's definitely interesting quirk. As I said, I don't love it, but on the other hand, it makes it little easier to remember some words when studying. Instead of remembering some mnemonic, I just recall the character with same name and trait. - -Sometimes it can be quite fun though, like in *Dosanko Gyaru* manga, where 3 main heroines (though 4th one is expected to show up) are called after seasons, and MC is called Shiki (しき, 四季, four seasons).";False;False;;;;1610537030;;False;{};gj3pilo;False;t3_kw8oi3;False;False;t1_gj3o7vm;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3pilo/;1610602524;6;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptainLuffy5439;;;[];;;;text;t2_6dzr0se3;False;False;[];;I forgot Goku's name once;False;False;;;;1610537064;;False;{};gj3pjvd;False;t3_kw8oi3;False;False;t1_gj2vi7g;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3pjvd/;1610602545;10;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;Goblin Slayer.;False;False;;;;1610537070;;False;{};gj3pk2y;False;t3_kwah37;False;True;t3_kwah37;/r/anime/comments/kwah37/wondering_if_such_anime_exists/gj3pk2y/;1610602548;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chazmerg;;;[];;;;text;t2_cw1emrm;False;False;[];;"It's 100% about familiarity with names and ""practice"" (as in seeing them many, many times). - -I am still a complete diaster with Chinese, Korean, and Russian/Slavic names when trying to read history books. It's a show of Japan's cultural power that people around the world get more familiar and comfortable with their names every year.";False;False;;;;1610537087;;False;{};gj3pkp9;False;t3_kw8oi3;False;False;t1_gj2xkr6;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3pkp9/;1610602559;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Andre_PC;;;[];;;;text;t2_9yn2z;False;False;[];;I couldn't watch for more than 5 minutes that pos. The animation made me physically ill. And I mean it: I got nauseated and had to stop watching.;False;False;;;;1610537117;;False;{};gj3plt8;False;t3_kw83at;False;False;t1_gj3kktu;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3plt8/;1610602576;18;True;False;anime;t5_2qh22;;0;[]; -[];;;wickedmonkeyking;;;[];;;;text;t2_kzzu0;False;False;[];;Alright, I'll give Back Arrow a shot.;False;False;;;;1610537124;;False;{};gj3pm1o;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3pm1o/;1610602580;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JRavec;;;[];;;;text;t2_64fpcd54;False;False;[];;The movies are in a alternative timeline and are not canon to the anime.;False;False;;;;1610537166;;False;{};gj3pnjn;False;t3_kw8oi3;False;False;t1_gj3nt7j;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3pnjn/;1610602605;5;True;False;anime;t5_2qh22;;0;[]; -[];;;nimrag_is_coming;;;[];;;;text;t2_2ty9jhb3;False;False;[];;Literally couldn’t stand watching for more than 5 minutes. Why is the cgi so bad? Why are some characters in 2D and the rest in 3D? Where is the pacing?;False;False;;;;1610537196;;False;{};gj3poma;False;t3_kw83at;False;False;t1_gj34yox;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3poma/;1610602622;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Careless_Pudding_327;;;[];;;;text;t2_8rj9fyvi;False;False;[];;Here's a gotcha question: name a single character from Goblin Slayer.;False;False;;;;1610537214;;False;{};gj3pp9x;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3pp9x/;1610602633;1;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;Code Geass is widely considered to be one of the best animes of all time. There's just this one major twist in the story that bothers a lot of people including me 😅;False;False;;;;1610537219;;False;{};gj3ppgu;False;t3_kw8oi3;False;True;t1_gj3myti;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3ppgu/;1610602637;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Konpie;;MAL;[];;http://myanimelist.net/profile/Siphis;dark;text;t2_eijk1;False;False;[];;"I just looked up the cast and staff for Vlad Love, and holy crap, that is one juicy cast and staff. - -Now, I have to check it out.";False;False;;;;1610537225;;False;{};gj3ppov;False;t3_kw83at;False;False;t1_gj3i5ky;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3ppov/;1610602641;5;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;I don't remember real life people's names. 😐;False;False;;;;1610537325;;False;{};gj3pthu;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3pthu/;1610602713;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Safetyguy22;;;[];;;;text;t2_85mxuyig;False;False;[];;Thanks, I just torrent the ones I could find.;False;False;;;;1610537338;;False;{};gj3ptyi;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3ptyi/;1610602720;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JoelMahon;;;[];;;;text;t2_ebf9d;False;False;[];;no, weirdo, normal people either never learn the names or forget mid way;False;False;;;;1610537370;;False;{};gj3pv6q;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3pv6q/;1610602744;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TheAughat;;;[];;;;text;t2_w0842;False;False;[];;">the monkey dude titan scared the shit out of me and I havent been able to watch the show since - -LMAO - -I'm sorry for laughing but honestly this is hilarious hahaha xD - -I love the monke, he's one of my favourite characters from the show!";False;False;;;;1610537399;;False;{};gj3pw8v;False;t3_kw8oi3;False;False;t1_gj3nikl;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3pw8v/;1610602768;16;True;False;anime;t5_2qh22;;0;[]; -[];;;JRavec;;;[];;;;text;t2_64fpcd54;False;False;[];;I remember a lot of them but also forget a lot of them but if you give me some context in the character i have a 60% chance of remembering it.;False;False;;;;1610537485;;False;{};gj3pzlu;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3pzlu/;1610602839;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jakad;;;[];;;;text;t2_5drcz;False;False;[];;Reading synopsis I was super down, then watched the PV and saw the antagonists and realized it was gunna be a struggle for me to watch. Wacky/zanny over the top anime villains almost always ruin a show for me. You've got the face paint guy, and the masked man/man who was dancing to the monitors in so 1. Even the Sakura dudes character is a little out there. Like The gourmet and others from Tokyo Ghoul, Bettlejuice from ReZero, ect. Here's to hoping I can enjoy the SoL friendship and sakuga skating despite them.;False;False;;;;1610537486;;False;{};gj3pznv;False;t3_kw83at;False;True;t1_gj3jqth;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3pznv/;1610602839;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DrStein1010;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/DrStein1010;light;text;t2_274huhdp;False;False;[];;Allen and Miranda were hard to remember?;False;False;;;;1610537498;;False;{};gj3q04j;False;t3_kw8oi3;False;True;t1_gj3cad7;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3q04j/;1610602849;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mega_Toast;;;[];;;;text;t2_7ht1i;False;False;[];;"Basically me watching ReZero right (not an original but still) - -I assumed it was just generic over hyped isekai trash, but finally watched and was like huh. - -Ignore this comment if you think ReZero is generic isekai trash.";False;False;;;;1610537506;;False;{};gj3q0eu;False;t3_kw83at;False;False;t1_gj3luzd;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3q0eu/;1610602855;47;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610537524;;False;{};gj3q153;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3q153/;1610602868;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hungryhippos1751;;;[];;;;text;t2_g5466;False;False;[];;"I tend to watch about 4-5 things at once at the moment, but just a bit of of progress on each one each day rather than binging. - -I think I'm fairly good at remembering what the main characters call eachother whilst watching things, but once I've finished then all bets are off and only some will be memorable. - -Without looking anything up, some examples: - -MHA - Deku (AKA Midoriya), Bakugo, Iida, Todoroki -Code Geass - Lelouch, Nunnaly, Susaku, Kallen, Rivalz, Nina, Tohdoh, Ohgi, Viletta, Euphemia -Log Horizon - Shiroe, Minori, Nyanta, Serara, Rudy, Isuzu, Krusty, Marielle, Akatsuki -Miss Kobayashi - Kobayashi, Tohru, Kanna, Fafnir -Dorohedoro - Nikaido, Caiman, Noi, En, Ebisu - -Some I haven't remembered as well, but I do try and at least know who people are whilst I'm watching :)";False;False;;;;1610537603;;False;{};gj3q449;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3q449/;1610602919;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;"That's one of the things I like about **Goblin Slayer.** No chit chat, no long monologues explaining the fine details of one's evil plan in the middle of a fight, ah, what a joy! ""Goblins are more troublesome than you were"" and whack!";False;False;;;;1610537620;;False;{};gj3q4rh;False;t3_kwarne;False;True;t3_kwarne;/r/anime/comments/kwarne/what_anime_have_good_fight_scenes_where_there_is/gj3q4rh/;1610602930;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Chickfizz-eats-memes;;;[];;;;text;t2_4beon265;False;False;[];;!remindme 12h;False;False;;;;1610537883;;False;{};gj3qeuy;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3qeuy/;1610603112;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jakad;;;[];;;;text;t2_5drcz;False;False;[];;Art house-esque anime aren't for everyone. Its usually something new and different though, which many people will value it just for that, which is a big value of anime original. Others draw parallels to other anime that were interesting and new to them when they experienced it. For me I couldn't help but feel Madoka Magica crossed with Paprika vibes, both of which I love immensely.;False;False;;;;1610537900;;False;{};gj3qfi2;False;t3_kw83at;False;False;t1_gj3ndh6;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3qfi2/;1610603123;15;True;False;anime;t5_2qh22;;0;[]; -[];;;z3onn;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://www.imdb.com/list/ls093600574/;dark;text;t2_10aeas;False;True;[];;"Can someone explain to me why the first episode got such a positive reaction? - -For me, the pacing was waaay too fast. Like all of the sudden, they are in their house after meeting. And in a span of one episode, they've already been hanging out a bunch without really seeing any reason for it (besides I guess knowing each other's ""secret""). Or more importantly how the main female lead seems to already have a crush on the guy (without really seeing why). And lastly, I didn't really find it funny. This is a rom-com and I laughed only at the teacher's flat chest comment. - -I'll still watch the next episode, but I really don't get the high praise the first one got... - -Edit: thx for all the replies";False;False;;;;1610537929;;1610543676.0;{};gj3qgoq;False;t3_kwaybf;False;False;t1_gj3ht6r;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj3qgoq/;1610603142;21;True;False;anime;t5_2qh22;;0;[]; -[];;;TheBlackGetsuga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Grimmjow-Senpai;light;text;t2_vj5dn6s;False;False;[];;As we saw from the first episode's thread it won't be, it also was the most hyped non sequel anime for this season.;False;False;;;;1610537974;;False;{};gj3qib3;False;t3_kw83at;False;False;t1_gj3kpqp;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3qib3/;1610603174;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610538008;;False;{};gj3qjoe;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3qjoe/;1610603196;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WardsAniAlt;;;[];;;;text;t2_9o7kxodn;False;False;[];;It's a film but I feel like Kimi no Suizou wo Tabetai/I want to eat your pancreas (Weird title ik, dw about it) fits pretty well;False;False;;;;1610538015;;False;{};gj3qjwn;False;t3_kwah37;False;True;t3_kwah37;/r/anime/comments/kwah37/wondering_if_such_anime_exists/gj3qjwn/;1610603200;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Isogash;;MAL;[];;https://myanimelist.net/animelist/Isogash;dark;text;t2_b2n8a;False;False;[];;"I'd say the DomeKano manga was pretty damn good for a romance manga after it drifted from the premise and up until it got cut short. It branched out very well into other dramatic life events but kept up the romance spice levels to an enjoyable degree. - -The Horimiya anime will likely get through 40 chapters, it's going at a pace of about 3 per episode right now and will more than likely cut or condense inconsequential chapters. Sad to hear that the rest of the chapters are just extras though because that's nearly 2/3rds of them in total, the main characters are not good enough in their current states to justify that IMO.";False;True;;comment score below threshold;;1610538068;;False;{};gj3qlyj;False;t3_kwaybf;False;True;t1_gj3n765;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj3qlyj/;1610603233;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;Ryan-Only;;;[];;;;text;t2_7mkd8in7;False;False;[];;just wait until u see the main protogonist Levi clapping him.;False;False;;;;1610538086;;False;{};gj3qmmh;False;t3_kw8oi3;False;False;t1_gj3i3av;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3qmmh/;1610603244;20;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;Ehh 20 minutes less sleep a week won't kill you.;False;False;;;;1610538149;;False;{};gj3qozd;False;t3_kw83at;False;True;t1_gj3ja2r;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3qozd/;1610603283;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610538215;;False;{};gj3qrkt;False;t3_kw8oi3;False;True;t1_gj3nikl;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3qrkt/;1610603324;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ryan-Only;;;[];;;;text;t2_7mkd8in7;False;False;[];;"aot names are simple? - -me laughs in ~~birthole~~ ~~berthold~~ ~~bortholdt~~ ~~boruto~~ (whatever the fuck it is)";False;False;;;;1610538231;;False;{};gj3qs7t;False;t3_kw8oi3;False;False;t1_gj369ub;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3qs7t/;1610603334;31;True;False;anime;t5_2qh22;;0;[]; -[];;;Nufulini;;;[];;;;text;t2_12lzy7;False;False;[];;This is kinda funny because he will be the one scared shitless because of one character;False;False;;;;1610538284;;False;{};gj3qubi;False;t3_kw8oi3;False;True;t1_gj3nikl;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3qubi/;1610603372;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;FulcrumV2;;;[];;;;text;t2_6hxx6gjk;False;False;[];;I think i reached the phase where i barely watched anime if any, so unless it's already finished or aired atleast 8 episodes, and has decent ratings then seasonal original animes are as good as non-existent for me.;False;False;;;;1610538317;;False;{};gj3qvlo;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3qvlo/;1610603393;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheGamefreak484;;;[];;;;text;t2_kf7fh;False;False;[];;Sometimes I still don't know the characters' names after completing a full season;False;False;;;;1610538324;;False;{};gj3qvw9;False;t3_kw8oi3;False;False;t1_gj2xowe;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3qvw9/;1610603398;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Flam3crash;;;[];;;;text;t2_o3u7u;False;False;[];;Sometimes i remember the main cheracter like Anos Voldigoad , other time i remember the cute girl , but rarely its more then one overall the rest i explain and butcher with directions , personality and hair colour .;False;False;;;;1610538369;;False;{};gj3qxmw;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3qxmw/;1610603426;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xmay18;;;[];;;;text;t2_4vy5a25n;False;False;[];;I used to sleep on anime originals, but that changed after I saw 'A Place Further Than the Universe';False;False;;;;1610538385;;False;{};gj3qy9r;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3qy9r/;1610603437;12;True;False;anime;t5_2qh22;;0;[]; -[];;;DaiKraken;;;[];;;;text;t2_r3xyv;False;False;[];;Miyazaki himself could start participating in the making of these and I still wouldn't watch. Original anime sometimes gets hyped up for no reason and the story still ends up as hot garbage, like Darling in the Franxx.;False;True;;comment score below threshold;;1610538495;;False;{};gj3r2m8;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3r2m8/;1610603508;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;galactic-toast-;;;[];;;;text;t2_11t8p8;False;False;[];;"Bruh, I already have to watch about 14 shows that are just continuations of previous seasons. - -This cour is loaded.";False;False;;;;1610538515;;False;{};gj3r3cv;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3r3cv/;1610603519;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RAMAR713;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RAMAR713;light;text;t2_qxsai;False;False;[];;It's because they're western names which our western brains are more accustomed to. When I started watching anime, japanese names like tsukyiama didn't register in my brain at all, kind of like when you read a mathematical formula you don't understand.;False;False;;;;1610538561;;False;{};gj3r564;False;t3_kw8oi3;False;False;t1_gj369ub;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3r564/;1610603551;49;True;False;anime;t5_2qh22;;0;[]; -[];;;bark415;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/bark415;light;text;t2_cu7gdhw;False;False;[];;All three of these have had super good first episodes in my opinion. I really hope that they all continue with the running start they had.;False;False;;;;1610538598;;False;{};gj3r6nt;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3r6nt/;1610603574;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FulcrumV2;;;[];;;;text;t2_6hxx6gjk;False;False;[];;Well since you mentioned that it has a similar OP to Deca-dence then im sold, i only checked decadence because of the Konomi Suzuki opening. Deca-dence is slightly disappointing for me however, first 8 episodes is a solid 8 or something like upper 7s but went downhill 9 episode upwards. Dunno why, something about the climax or something.;False;False;;;;1610538603;;False;{};gj3r6v6;False;t3_kw83at;False;False;t1_gj3johb;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3r6v6/;1610603577;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Neaeran;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/neaeran;light;text;t2_so94js6;False;False;[];;It started with 8 shows which were managable. Now it went up to 15. This season is crazy.;False;False;;;;1610538610;;False;{};gj3r752;False;t3_kw83at;False;False;t1_gj3qozd;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3r752/;1610603583;4;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 125, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'When you come across a feel-good thing.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'icon_width': 2048, 'id': 'award_5f123e3d-4f48-42f4-9c11-e98b566d5897', 'is_enabled': True, 'is_new': False, 'name': 'Wholesome', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;">(without really seeing why) - -Because he's fucking hot. That's the brunt of it, but feeling like you share something secret between the two of you is the epitome of intimacy, it's what builds relationships. - ->And in a span of one episode, they've already been hanging out a bunch without really seeing any reason for it - -Her little brother likes him so asks for him to come round then she just gets comfortable with that, she's spends all her time after school playing mother, having someone to share that time with and put some her baggage onto regarding that is comfortable, for him it's just having that consistent interaction with people he enjoys being around. The manga is just as fast paced because creating that almost family dynamic is the setup of the story, not the end goal. - -I don't think Horimiya sets out to be consistently hilarious, it bounces between comedy and wholesomeness rather than just trying to be funny all the time. Although I still love some of the jokes in episode 1 so maybe it's just not tuned to your sense of humour.";False;False;;;;1610538654;;False;{};gj3r8x6;False;t3_kwaybf;False;False;t1_gj3qgoq;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj3r8x6/;1610603611;81;True;False;anime;t5_2qh22;;1;[]; -[];;;Fish_Grillson;;;[];;;;text;t2_13q9y6;False;False;[];;"The only shows where i had an easy time remembering names were Naruto, Dragonball and One Piece (only because i have been watching them since ages) lmao - -Edit: Actually Attack on Titan is another show where i had an easy time remembering all names but those were not even really japanese so there is that.";False;False;;;;1610538809;;False;{};gj3rf64;False;t3_kw8oi3;False;False;t1_gj2vi7g;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3rf64/;1610603712;9;True;False;anime;t5_2qh22;;0;[]; -[];;;arjunputhli03;;;[];;;;text;t2_2ceium8z;False;False;[];;Well to be fair a song of Ice and fire has like a thousand characters in the first book alone;False;False;;;;1610538828;;False;{};gj3rfws;False;t3_kw8oi3;False;False;t1_gj3hkpr;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3rfws/;1610603724;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Insullts;;;[];;;;text;t2_3e5zunbo;False;False;[];;"I mean, I feel like that’s something that happens to everyone. If you watch a lot of anime it’s nearly impossible to remember all the names especially since there are so many characters that share names: Fujiwara ( Kaguya & Initial D ) or Megumi ( Konosuba & JJK ) personally stuff like this makes it even harder lol";False;False;;;;1610538876;;False;{};gj3rhto;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3rhto/;1610603756;2;True;False;anime;t5_2qh22;;0;[]; -[];;;2slow4flo;;;[];;;;text;t2_66i10;False;False;[];;"As a German it's easy - -Reiner Berthold Armin Christa";False;False;;;;1610538881;;False;{};gj3ri1g;False;t3_kw8oi3;False;False;t1_gj3nikl;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3ri1g/;1610603759;8;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;Yeah I'm on 17 at the moment, that'll be trimmed down after a few weeks though, 2-3 episodes a night isn't feasible to stay consistent with.;False;False;;;;1610538925;;False;{};gj3rjul;False;t3_kw83at;False;True;t1_gj3r752;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3rjul/;1610603790;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dkpo21;;;[];;;;text;t2_7mxlszcb;False;False;[];;I think's is a normal...;False;False;;;;1610538930;;False;{};gj3rk1p;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3rk1p/;1610603793;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610538934;;False;{};gj3rk6v;False;t3_kw8oi3;False;True;t1_gj3ijzx;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3rk6v/;1610603796;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fish_Grillson;;;[];;;;text;t2_13q9y6;False;False;[];;"> the monkey dude titan scared the shit out of me and I havent been able to watch the show since - -May i ask how old you are? Genuinely curious since this is the first time i hear of such a thing regarding this show.";False;False;;;;1610538936;;False;{};gj3rk8y;False;t3_kw8oi3;False;False;t1_gj3nikl;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3rk8y/;1610603797;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Jrako214;;;[];;;;text;t2_r8g8j;False;False;[];;"As a manga reader, I am also surprised by the overwhelmingly possitive reaction to episode 1, but not that much. - -Without any spoilers, I can tell you that more comedy parts will come later in the show, but the comedy wont be really the main selling point of it. It is more chill/cute anime without any big drama. It has comedy and serious parts with the same ratio, I would say. - -To adress the pacing, it actually adapted chapter 1 and 3 from manga, with part of chapter 2 - the pacing in manga itself is really fast right from the start, so it is not something anime changed.";False;False;;;;1610538942;;False;{};gj3rkhj;False;t3_kwaybf;False;False;t1_gj3qgoq;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj3rkhj/;1610603800;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Speedwagon96;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Speedwagon96/;light;text;t2_12lmdk;False;False;[];;I was kinda looking forward to the mechs you talking about and then opened the link to see them and started wondering if this whole post is satire, those mechs look atrocious. Maybe they are not just my type but I wanna see some screws and some big ass mechanical joints and stuff. I hate when mechs are too clean like a human wearing an armor...;False;False;;;;1610538966;;False;{};gj3rlf7;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3rlf7/;1610603815;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Steelsoul;;;[];;;;text;t2_7pmft;False;False;[];;Absolutely. At one point, I was recognizing the shape and length of the names over what they'd actually sound like.;False;False;;;;1610538980;;False;{};gj3rlzk;False;t3_kw8oi3;False;False;t1_gj3rfws;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3rlzk/;1610603824;8;True;False;anime;t5_2qh22;;0;[]; -[];;;altair827;;;[];;;;text;t2_6aov97z6;False;False;[];;"May be ita because I never knew it was a RomCom and I started it thinking it as a Slice of Life actually. Hori-Chan and Miya-San seem close because they can be thier their real self around the other one. I was be the same too, so I sort of got hooked into it right from there. - -Now I'm into the 45th chapter on Manga, I feel its a bit off from what it started as. But I still like their growth till what I've read. - -If I knew it was a RomCom beforehand, I wouldn't have enjoyed it this much tbh. To me its a Slice of Life. I didn't laugh much till what I've read though, Kaguya-Sama had me laugh like anything. So HoriMiya might be a failure as RomCom but has a fairly strong Slice of Life game. - -And regarding pacing, bruh, Nasa-kun got a wife in second episode :D";False;True;;comment score below threshold;;1610539015;;False;{};gj3rndj;False;t3_kwaybf;False;True;t1_gj3qgoq;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj3rndj/;1610603846;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;NeatCow;;;[];;;;text;t2_xswz3;False;False;[];;I feel like it's not strictly a sports anime about skateboarding, more like an undercover races/fight club kind of thing, leaning towards wrestling as far as stage characters and heels go. I personally adore it, but I can see a genuine skateboarding fan being disappointed by this style.;False;False;;;;1610539027;;False;{};gj3rntr;False;t3_kw83at;False;False;t1_gj3jqth;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3rntr/;1610603853;32;True;False;anime;t5_2qh22;;0;[]; -[];;;knokaka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/knokaka?order=4;light;text;t2_ytri4;False;False;[];;those back arrow lines up is a bit interesting,.. but I'm gonna wait for some review/comment here if it worth to watch.;False;False;;;;1610539032;;False;{};gj3ro1f;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3ro1f/;1610603857;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KarmaOAkabane;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;anilist.co/user/KarmaOAkabane;light;text;t2_8ajupisc;False;False;[];;yeah i have like fucking 15 ongoing anime rn and 3 arent even released yet;False;False;;;;1610539125;;False;{};gj3rrt8;False;t3_kw83at;False;False;t1_gj3bdbd;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3rrt8/;1610603915;8;True;False;anime;t5_2qh22;;0;[]; -[];;;RemuIsMaiWaifu;;;[];;;;text;t2_91smeg32;False;False;[];;"Depends on the anime/character, but yeah. - -Sometimes I just go by characteristics, like bangs, pink hair, oneechan, or by VA, so for example I remember that character X is voiced by the same VA as character Y in series Z, I just call character X as character Y lol";False;False;;;;1610539155;;False;{};gj3rt0r;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3rt0r/;1610603934;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Devin__;;;[];;;;text;t2_hx0lq;False;False;[];;Ex-Arm is a manga adaptation tho...;False;False;;;;1610539285;;False;{};gj3ryad;False;t3_kw83at;False;False;t1_gj3mj61;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3ryad/;1610604019;17;True;False;anime;t5_2qh22;;0;[]; -[];;;WandererTau;;;[];;;;text;t2_exw8x;False;False;[];;">I was close to watching my hero academia in it's German dubbed version - -Wahrhaftige Verzweiflung.";False;False;;;;1610539360;;False;{};gj3s1bv;False;t3_kw8oi3;False;False;t1_gj3clgj;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3s1bv/;1610604070;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;"> we haven't had a really good mecha anime in a hot minute - -Well, Attack on Titan is technically a (flesh) mecha show...";False;False;;;;1610539400;;False;{};gj3s2ux;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3s2ux/;1610604095;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Netoeu;;MAL;[];;https://myanimelist.net/profile/Netoeu;dark;text;t2_mhnw5;False;False;[];;"That mfer has the hardest name I've ever come across ""Berutoruto"" It's the anime version of Benedict Cuamerahgch";False;False;;;;1610539402;;False;{};gj3s2x6;False;t3_kw8oi3;False;False;t1_gj3ri1g;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3s2x6/;1610604096;9;True;False;anime;t5_2qh22;;0;[]; -[];;;knokaka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/knokaka?order=4;light;text;t2_ytri4;False;False;[];;"don't worry it always happen to forgetable anime but when you find an unforgettable anime you will remember each characters. - -there are some wonderful 10/10 anime that I shamefully forgot characters name except the most interesting character in it. - -\- A Place Further Than Universe (didn't remember any character's name literally) - -\- Shirobako (Miyamori Aoi , Friends & other staff) - -\- Shinsekai Yori (Squaler & ""Friends"") - -it generic Japanese name mostly.";False;False;;;;1610539483;;False;{};gj3s64a;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3s64a/;1610604150;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Benskien;;;[];;;;text;t2_bnjg2;False;False;[];;"googles charachter name - -oh, he dies...";False;False;;;;1610539598;;False;{};gj3saqo;False;t3_kw8oi3;False;False;t1_gj2xowe;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3saqo/;1610604224;125;True;False;anime;t5_2qh22;;0;[]; -[];;;Vipertooth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Vipertooth;light;text;t2_edflm;False;False;[];;"Anyone else recently watch Assault Lily, where each character's name appears on screen ***every single episode*** the first time they appear. -I still have no clue what they're called.";False;False;;;;1610539642;;False;{};gj3scky;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3scky/;1610604253;1;True;False;anime;t5_2qh22;;0;[]; -[];;;meimi132;;;[];;;;text;t2_6fwxe;False;False;[];;We have seen and like all three. I agree that things do get skipped over sometimes. I guess cos there's no source material there's less hype to begin with. But these 3 seem damn fine. And it means I can't cheat and skip ahead which I like XD;False;False;;;;1610539664;;False;{};gj3sdhd;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3sdhd/;1610604268;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HobnobsTheRed;;;[];;;;text;t2_1ftgjit5;False;False;[];;"That dogpile at the end... X'D - -That was quality. Was taken back to my youth, and the stop motion stuff that was made back then. - -Thanks OP. Think I'll add this to the list of shorts I'm watching this season.";False;False;;;;1610539669;;False;{};gj3sdpm;False;t3_kwa34e;False;False;t3_kwa34e;/r/anime/comments/kwa34e/pui_pui_molcar_yes_this_is_an_anime/gj3sdpm/;1610604272;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Shisun;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Shisun;light;text;t2_77hmxo;False;False;[];;dude I forgot people name in real life all the time, how do you expect me to remember thousands of anime character name;False;False;;;;1610539728;;False;{};gj3sg4s;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3sg4s/;1610604310;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CrowbarZero08;;;[];;;;text;t2_3c5zf4qn;False;False;[];;I’m bad with remembering names, i can barely even remember the character names from a manga that i just read 3 hours ago;False;False;;;;1610539757;;False;{};gj3shdx;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3shdx/;1610604331;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AraragiHachi;;;[];;;;text;t2_7sjwyopi;False;False;[];;lmao, there's no better description;False;False;;;;1610539905;;False;{};gj3snka;False;t3_kw8oi3;False;False;t1_gj3n36q;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3snka/;1610604430;17;True;False;anime;t5_2qh22;;0;[]; -[];;;0be000;;;[];;;;text;t2_6ybf3v50;False;False;[];;Back Arrow feels generic and SK8 is boring for me, but i'll try it if people praise it after the show ended or have very high score.;False;False;;;;1610539951;;False;{};gj3spha;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3spha/;1610604460;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AraragiHachi;;;[];;;;text;t2_7sjwyopi;False;False;[];;If the characters have foreign names, I'll probably remember. But if they have full on Japanese names, it'll be a struggle.;False;False;;;;1610539997;;False;{};gj3srh5;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3srh5/;1610604491;1;True;False;anime;t5_2qh22;;0;[]; -[];;;__Raxy__;;;[];;;;text;t2_2ei6tsb7;False;False;[];;Horimiya;False;True;;comment score below threshold;;1610540066;;False;{};gj3sud4;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3sud4/;1610604540;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;Damiii33;;HB;[];;https://kitsu.io/users/CinnamonWithPaprika/library;dark;text;t2_jb2ns;False;False;[];;Lazy? We're not even talking about downloading anything.;False;False;;;;1610540084;;False;{};gj3sv4q;False;t3_kw83at;False;True;t1_gj3kagr;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3sv4q/;1610604551;0;False;False;anime;t5_2qh22;;0;[]; -[];;;TheOnlyPinkMan;;;[];;;;text;t2_7ghcph2l;False;False;[];;Alr seen lol. Love is War is really good.;False;False;;;;1610540144;;False;{};gj3sxnv;True;t3_kw8546;False;True;t1_gj3bbom;/r/anime/comments/kw8546/good_comedy_andor_romance/gj3sxnv/;1610604593;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheOnlyPinkMan;;;[];;;;text;t2_7ghcph2l;False;False;[];;Only reason I haven't watched is because I don't like how he looks. Eventually ill watch it though.;False;False;;;;1610540178;;False;{};gj3sz2q;True;t3_kw8546;False;True;t1_gj3bjse;/r/anime/comments/kw8546/good_comedy_andor_romance/gj3sz2q/;1610604614;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jedi168;;;[];;;;text;t2_9hazz;False;False;[];;I'll check out that egg one. Seems more in my lane than the others.;False;False;;;;1610540186;;False;{};gj3szeo;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3szeo/;1610604620;2;True;False;anime;t5_2qh22;;0;[]; -[];;;senefen;;;[];;;;text;t2_75gen;False;False;[];;I find, having watched anime for half my life, I'm quite good with Japanese names now. But anything in another foreign language I'm awful at.;False;False;;;;1610540427;;False;{};gj3t9oa;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3t9oa/;1610604787;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Luxynne;;;[];;;;text;t2_86sl3jx3;False;False;[];;For some reason this happened to me with Bleach and demon slayer. Maybe it’s because a lot of the Characters have “normal” Japanese names as opposed to Naruto where the characters typically have very catchy names;False;False;;;;1610540499;;False;{};gj3tcvn;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3tcvn/;1610604837;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FishOfFishyness;;;[];;;;text;t2_3rd7wvut;False;False;[];;~~Mapajahit~~ ~~Mahapajit~~ ~~Mahajapit~~ Majapahit;False;False;;;;1610540619;;False;{};gj3ti01;False;t3_kw8oi3;False;False;t1_gj358pm;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3ti01/;1610604923;98;True;False;anime;t5_2qh22;;0;[]; -[];;;FishOfFishyness;;;[];;;;text;t2_3rd7wvut;False;False;[];;And then there's Hange/Hanji/???;False;False;;;;1610540738;;False;{};gj3tn8r;False;t3_kw8oi3;False;True;t1_gj3ri1g;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3tn8r/;1610605008;0;True;False;anime;t5_2qh22;;0;[]; -[];;;FishOfFishyness;;;[];;;;text;t2_3rd7wvut;False;False;[];;Bertholt(/d?);False;False;;;;1610540778;;False;{};gj3tp1b;False;t3_kw8oi3;False;False;t1_gj3qs7t;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3tp1b/;1610605037;21;True;False;anime;t5_2qh22;;0;[]; -[];;;HikaruJihi;;;[];;;;text;t2_gzrzx;False;False;[];;Because people hate Kirito. Hate is also a form of obsession, so no wonder people remembers them.;False;False;;;;1610540812;;False;{};gj3tqj1;False;t3_kw8oi3;False;True;t1_gj3rk6v;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3tqj1/;1610605062;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Tslea;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tslee;light;text;t2_1yhl7zac;False;False;[];;I usually forget characters in a modern setting, but in a fantasy setting it’s different;False;False;;;;1610540819;;False;{};gj3tqts;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3tqts/;1610605067;1;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;is this satire;False;False;;;;1610540875;;False;{};gj3tta4;False;t3_kw8oi3;False;False;t1_gj320na;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3tta4/;1610605106;15;True;False;anime;t5_2qh22;;0;[]; -[];;;airwatersky;;;[];;;;text;t2_gahly;False;False;[];;Oh haha, I completely missed the /s at the end;False;False;;;;1610540922;;False;{};gj3tvf8;False;t3_kw8oi3;False;False;t1_gj3myvo;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3tvf8/;1610605140;4;True;False;anime;t5_2qh22;;0;[]; -[];;;FishOfFishyness;;;[];;;;text;t2_3rd7wvut;False;False;[];;How do you talk to someone whose name you don't know/forgot though? Must be awkward;False;False;;;;1610540967;;False;{};gj3txfw;False;t3_kw8oi3;False;True;t1_gj3eggb;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3txfw/;1610605172;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;If you binged them, then you're gonna forget everything anyway. I loved _ReLIFE_ but I have trouble remembering it exists at all because of the binge-release;False;False;;;;1610540969;;False;{};gj3txkh;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3txkh/;1610605174;1;True;False;anime;t5_2qh22;;0;[]; -[];;;No_rgb;;;[];;;;text;t2_14u10q0y;False;True;[];;"Yup 100% relatable. Especially when MC is generic anime protagonist. - -Tends to happen more with standard length 12 ep animes";False;False;;;;1610541068;;False;{};gj3u1zp;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3u1zp/;1610605252;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KayabaSynthesis;;;[];;;;text;t2_3e7s6wiq;False;False;[];;I recently finished Durarara. There are like 40+ different character you need to remember, some characters refer to them by their first names, some by last names, and also most of them have nicknames they use in a group chat. If you want to fully get the story and plots between every character, prepare for having your wiki page open. At least that's what I did. I'm sure that in few months I'm not gonna remember a single name outside some main guys like Mikado or Izaya.;False;False;;;;1610541093;;False;{};gj3u33l;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3u33l/;1610605271;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bringbackdigimon;;;[];;;;text;t2_i5d2hu;False;False;[];;That just means you haven’t paid any attention to the series at all;False;False;;;;1610541138;;False;{};gj3u532;False;t3_kw8oi3;False;True;t1_gj3k6ok;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3u532/;1610605306;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;yyudodis;;;[];;;;text;t2_5z7rssa0;False;False;[];;"Checks in fandom. - -Status: Dead";False;False;;;;1610541217;;False;{};gj3u8ka;False;t3_kw8oi3;False;False;t1_gj3saqo;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3u8ka/;1610605364;77;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;MAL, get on the ball, you're missing this listing;False;False;;;;1610541230;;False;{};gj3u95k;False;t3_kwa34e;False;False;t3_kwa34e;/r/anime/comments/kwa34e/pui_pui_molcar_yes_this_is_an_anime/gj3u95k/;1610605374;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Bringbackdigimon;;;[];;;;text;t2_i5d2hu;False;False;[];;For me it can depend over how long I watched the anime, if I binge watch a season in a day I would remember the characters a month later a lot less than if I watched a show week by week then tried to remember the characters a month after that final episode aired;False;False;;;;1610541277;;False;{};gj3ubbi;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3ubbi/;1610605409;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ayusis123;;;[];;;;text;t2_7fi3pn20;False;False;[];;No;False;False;;;;1610541281;;False;{};gj3ubhz;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3ubhz/;1610605411;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Benskien;;;[];;;;text;t2_bnjg2;False;False;[];;me and following game of thrones in a nutshell;False;False;;;;1610541285;;False;{};gj3ubp9;False;t3_kw8oi3;False;False;t1_gj3u8ka;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3ubp9/;1610605415;12;True;False;anime;t5_2qh22;;0;[]; -[];;;CTbay;;;[];;;;text;t2_4ofz54hy;False;False;[];;S P A C E D U S T;False;False;;;;1610541333;;False;{};gj3udwm;False;t3_kw8oi3;False;False;t1_gj3ti01;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3udwm/;1610605451;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Fair_Cause_1166;;;[];;;;text;t2_8tj1k0eq;False;False;[];;"I find this to be more often true with shows that I watch in one sitting, like Jujutsu Kaisen (I came late to the party). - -And there's a perfectly good reason for that. Normally you would watch one episode per week, meaning you would do a form of spaced repetition for the show's character names and even special terms. - -On the other hand, binge-watching is like cram school: It's a miracle 20% of the stuff stick on the first exposure.";False;False;;;;1610541363;;1610541745.0;{};gj3ufbk;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3ufbk/;1610605474;2;True;False;anime;t5_2qh22;;0;[]; -[];;;heavenparadox;;;[];;;;text;t2_3jphwaej;False;False;[];;"A long long time ago, I bought a DVD set of Naruto episodes off of ebay. The packaging was beautiful, so I thought it was legit. Then I started it. Some of the episodes translated the character names too. It took me two episodes of this to understand that Sesshomaru was being translated into ""the killing pill."" It would say something like, ""I will not fail you the killing pill."" So weird.";False;False;;;;1610541404;;False;{};gj3uh6d;False;t3_kw8oi3;False;False;t1_gj3clgj;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3uh6d/;1610605503;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Charming-Loquat3702;;;[];;;;text;t2_693xqw5a;False;False;[];;Ohne scheiß, Anime on Demand ist ein Scheißverein;False;False;;;;1610541472;;False;{};gj3uk8c;False;t3_kw8oi3;False;False;t1_gj3s1bv;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3uk8c/;1610605552;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Charming-Loquat3702;;;[];;;;text;t2_693xqw5a;False;False;[];;I agree for a dub. But in a sub you'll create confusion this way. In that regard, the translation for a book and subtitles are different because you are actually engaged with the original content;False;False;;;;1610541663;;False;{};gj3ut08;False;t3_kw8oi3;False;False;t1_gj3jmtp;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3ut08/;1610605688;28;True;False;anime;t5_2qh22;;0;[]; -[];;;Ivuska;;;[];;;;text;t2_7k03a8c;False;False;[];;I remember having a lot of difficulties when the language was still new for me. All the words including names were just a group of unfamiliar sounds and therefore hard to remember. I recently realised this is no longer an issue whatsoever just because I'm more comfortable with Japanese and the names make sense to me (similar roots/syllables for meanings I understandand, names I've heard before and I get how all the honorifics or nicknames work);False;False;;;;1610541772;;False;{};gj3uxz2;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3uxz2/;1610605770;1;True;False;anime;t5_2qh22;;0;[]; -[];;;darthcoughcough;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/YeagerBonebone/;light;text;t2_1j75s4ay;False;False;[];;Levi vs Freezer was epic in the manga;False;False;;;;1610541876;;False;{};gj3v2vj;False;t3_kw8oi3;False;False;t1_gj3qmmh;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3v2vj/;1610605849;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Alexandre_Man;;;[];;;;text;t2_4y4lpq1k;False;False;[];;Yes.;False;False;;;;1610542006;;False;{};gj3v91d;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3v91d/;1610605950;1;True;False;anime;t5_2qh22;;0;[]; -[];;;melvinlee88;;MAL a-amq;[];;https://myanimelist.net/profile/Ryan_Melvin15;dark;text;t2_156788;False;False;[];;I'm glad I'm not the only who thought it was paced real fast.;False;False;;;;1610542063;;False;{};gj3vbuy;False;t3_kwaybf;False;True;t1_gj3qgoq;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj3vbuy/;1610605994;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SeeminglyInvisible;;;[];;;;text;t2_8sh4qfg5;False;False;[];;I thought this was going to be a mf Rem post;False;False;;;;1610542136;;False;{};gj3vfc6;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3vfc6/;1610606052;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pausei144;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/pausei144/animelist;light;text;t2_xsvbf;False;False;[];;I have difficulties remembering names in real life, but not so much in anime, interestingly enough. I think the fact that, in anime, I constantly see their names in the subtitles helps a lot.;False;False;;;;1610542176;;False;{};gj3vh8g;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3vh8g/;1610606084;1;True;False;anime;t5_2qh22;;0;[]; -[];;;animelover693;;;[];;;;text;t2_4g0l44lw;False;False;[];;idk if ur memeing lol, i found *Berutoruto Fūbā's* name as easy to remember as the other characters;False;False;;;;1610542237;;False;{};gj3vk3t;False;t3_kw8oi3;False;False;t1_gj3qs7t;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3vk3t/;1610606132;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;That's why I always go through MAL / AniDB's anime page and only those if I ever need to check a character's name. Otherwise, the probability of getting spoiled quickly because high.;False;False;;;;1610542343;;False;{};gj3vp7e;False;t3_kw8oi3;False;False;t1_gj3nake;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3vp7e/;1610606213;44;True;False;anime;t5_2qh22;;0;[]; -[];;;SymianSausage;;;[];;;;text;t2_n1v3ql7;False;False;[];;Happens to me all the time don't sweat it. I usually only commit the characters I really like to memory.;False;False;;;;1610542352;;False;{};gj3vpm9;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3vpm9/;1610606219;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kiyotaka_07;;;[];;;;text;t2_8jgjs9s1;False;False;[];;Honestly I remember only name of character I hate and name that gives me goosebumps like madara uchiha,maya yotsuba.;False;False;;;;1610542409;;False;{};gj3vsf6;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3vsf6/;1610606266;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HorizonBreakerNEXIC;;;[];;;;text;t2_8ay0jqc8;False;False;[];;Yes;False;False;;;;1610542471;;False;{};gj3vvi3;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3vvi3/;1610606317;1;True;False;anime;t5_2qh22;;0;[]; -[];;;L_Flavour;;;[];;;;text;t2_nhn593;False;False;[];;"Usually you would politely ask the person then. And yeah, this is of course kinda awkward. But better just ask them than using ""kimi"" or ""anata"" or whatever. - -I think it is not that much more awkward than when you forget someone's name in a English speaking environment though, because it is way easier to circumvent using something like ""you"" in a conversation in Japanese than in English. (The language just works differently. We don't just swap every ""you"" in a comparable English sentence with a name in Japanese. We just generally use pronouns much less.) - -So if you want to avoid admitting you forgot someone's name that is still possible. I would probably rather ask though, if its very likely that I will talk with this person again in near future (at work for example).";False;False;;;;1610542555;;False;{};gj3vzk8;False;t3_kw8oi3;False;True;t1_gj3txfw;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3vzk8/;1610606380;2;True;False;anime;t5_2qh22;;0;[]; -[];;;animelover693;;;[];;;;text;t2_4g0l44lw;False;False;[];;i have terrible memory so this is relatable, after months/years of having watched a certain anime i forget literally everything and i have to rewatch it everytime, its annoying af;False;False;;;;1610542598;;False;{};gj3w1la;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3w1la/;1610606413;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;Protagonist / main girl / second main girl that is going to lose.;False;False;;;;1610542605;;False;{};gj3w1y7;False;t3_kw8oi3;False;False;t1_gj2x0az;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3w1y7/;1610606422;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Isogash;;MAL;[];;https://myanimelist.net/animelist/Isogash;dark;text;t2_b2n8a;False;False;[];;I used to forget them whilst watching the show but now I have a decent memory for it. Studying some basic Japanese helped the phonetics sink in and that goes a long way to being able to remember distinct words and not have it be a jumbled up Japanese-sounding mess in your head. They don't always stick the first time though, but that's true in English too.;False;False;;;;1610542675;;False;{};gj3w5e0;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3w5e0/;1610606480;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SFHalfling;;;[];;;;text;t2_5jkfi;False;False;[];;"Considered one of the best anime, imo it suffers from being too long and would be better as a shorter, tighter series. - -But then again I think that about basically everything now, 22-24 episode series of most TV shows, not just anime, could be cut down to 10-13 and be better for it.";False;False;;;;1610542710;;False;{};gj3w72u;False;t3_kw8oi3;False;True;t1_gj3myti;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3w72u/;1610606508;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;tyYdraniu;;;[];;;;text;t2_12j48s;False;False;[];;i remember i saw a bad anime about some blue demon dude that cooks, couldnt fucking remember a single name feom that anime;False;False;;;;1610542769;;False;{};gj3w9y8;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3w9y8/;1610606559;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Unryy;;;[];;;;text;t2_2ptu13dz;False;False;[];;If you really like the show, you'll be remembering every single name of every character at the end of it. Otherwise, you'll be just remembering the main characters' names.;False;False;;;;1610542807;;False;{};gj3wbqv;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3wbqv/;1610606592;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AikaSkies;;;[];;;;text;t2_3wbty3ew;False;False;[];;This thread surprised me lol, I remember names very well and just assumed most people did as well from how specific discussions get sometimes.;False;False;;;;1610542899;;False;{};gj3wg9y;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3wg9y/;1610606670;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DinoTsar415;;;[];;;;text;t2_c43jz;False;False;[];;"I usually forget names entirely even in shows I love. For example, Working!!! is a great SoL series with a stellar ending. - -I think the main guy is Takashi? And I know the short one is Popura. The rest are Clumsy Girl, Shy Girl, Sword Girl, Manager, Blonde Cooke, Blue Hair Cook, Drunk Sister, Sad Sister, Business Sister. - -I think the only time I remember a full cast's names is when I watch several seasons of a show with breaks in between. That was just before you forget you see another season and everything gets reinforced and usually sticks. This is why I can name everyone in the Monogatari series, a feat which I will spare you here.";False;False;;;;1610543132;;False;{};gj3wrps;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3wrps/;1610606856;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-taromanius-;;;[];;;;text;t2_8i0mv4ms;False;False;[];;It's a foreign language with at times long names. I do remember my favorite characters but I often forget characters' names for shows I genuinely enjoy;False;False;;;;1610543166;;False;{};gj3wtfc;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3wtfc/;1610606883;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DinoTsar415;;;[];;;;text;t2_c43jz;False;False;[];;"> Shinsekai Yori (Squaler & ""Friends"") - -This is maybe my favorite one-season show ever and yet I can't remember their fifth friend's name at all. Saki, Maria, Shun, Satoru, and.... the other one.";False;False;;;;1610543331;;False;{};gj3x1oe;False;t3_kw8oi3;False;True;t1_gj3s64a;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3x1oe/;1610607016;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Obyri85;;;[];;;;text;t2_ns1m71w;False;False;[];;Depends on the show but I find this with a lot of media. Character names are often quite forgettable. Possibly more so if a foreign (to you) name.;False;False;;;;1610543349;;False;{};gj3x2kn;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3x2kn/;1610607031;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Prisma233;;;[];;;;text;t2_141vug;False;False;[];;I remeber Kana Hanazawa voices the MC, that's about it.;False;False;;;;1610543378;;False;{};gj3x40o;False;t3_kw8oi3;False;False;t1_gj2xqx1;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3x40o/;1610607055;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610543526;;False;{};gj3xbob;False;t3_kw8oi3;False;True;t1_gj3pcta;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3xbob/;1610607176;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lol480p;;;[];;;;text;t2_425c2ljj;False;False;[];;"When I first started watching Anime, I used to remember every character in the shows I watched, even the characters that only appeared only once in a flashback. - -Now, I can't even remember the names while watching/reading, I just compensate by describing the character, lol. - -So yeah, it's totally normal, don't worry.";False;False;;;;1610543536;;False;{};gj3xc5p;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3xc5p/;1610607184;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Careless_Pudding_327;;;[];;;;text;t2_8rj9fyvi;False;False;[];;"Even for a dub this can create problems down the line if you don't know how the series is going to play out. Like if a scene happens where character A says, ""You always call me Last Name-san, but you can just call me First Name"", then you run into an issue if you've been having them use their first name up until that point. - -Also the decision whether to use someone's first or last name gives us insight into their relationships, and you'll often see some people referring to someone by their last name (Ishida usually referred to Ichigo as Kurosaki if I recall correctly) and others by their first name (Chad and Inoue called him Ichigo).";False;False;;;;1610543555;;False;{};gj3xd58;False;t3_kw8oi3;False;False;t1_gj3ut08;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3xd58/;1610607200;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Broccoil;;;[];;;;text;t2_4la93yt;False;False;[];;it means you have other shit to worry about;False;False;;;;1610543572;;False;{};gj3xdzz;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3xdzz/;1610607219;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mythriz;;;[];;;;text;t2_d37v0;False;False;[];;~~gotta clean out *some* room for all the memes and random TIL trivia that reddit fills my brain up with~~;False;False;;;;1610543615;;False;{};gj3xg7b;False;t3_kw8oi3;False;False;t1_gj3kqd8;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3xg7b/;1610607256;8;True;False;anime;t5_2qh22;;0;[]; -[];;;mythriz;;;[];;;;text;t2_d37v0;False;False;[];;"Me while watching S1 of Westworld after it had ended: ""I don't remember who Man in Black in Westworld is"" *googles* ""oh..."" - -I was sad about getting that spoiled since it was a pretty fun reveal tbh.";False;False;;;;1610543762;;False;{};gj3xnxm;False;t3_kw8oi3;False;False;t1_gj3ubp9;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3xnxm/;1610607380;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Benskien;;;[];;;;text;t2_bnjg2;False;False;[];;"definitivly, googling stuff like this is very annoying - -atleast with got, every related search was related to a charahcters death, even if they lived";False;False;;;;1610543871;;False;{};gj3xtqf;False;t3_kw8oi3;False;True;t1_gj3xnxm;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3xtqf/;1610607475;3;True;False;anime;t5_2qh22;;0;[]; -[];;;humansbrainshrink;;;[];;;;text;t2_90w546o6;False;False;[];;Berutoto;False;False;;;;1610543885;;False;{};gj3xugo;False;t3_kw8oi3;False;False;t1_gj3tp1b;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3xugo/;1610607486;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Charming-Loquat3702;;;[];;;;text;t2_693xqw5a;False;False;[];;"Yeah, I mean it is another language. I don't want to be a gatekeeper or elitist, but I guess people need to get a certain understanding of Japanese culture to fully understand it. Maybe crunchyroll should make a course ""Japanese culture 101 for Anime fans"" to equip it's audience with what they need to know to understand Anime properly. -(This would be less of an waste of money than Noblesse as well)";False;False;;;;1610544046;;False;{};gj3y33c;False;t3_kw8oi3;False;False;t1_gj3xd58;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3y33c/;1610607630;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Brex_667;;;[];;;;text;t2_2oml643o;False;False;[];;I don't remember the name of the current(anime) jaws titan but i remember pieck, so it probably depends on the character;False;False;;;;1610544049;;False;{};gj3y38g;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3y38g/;1610607632;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mythriz;;;[];;;;text;t2_d37v0;False;False;[];;"I am reading the manga and when it got to the [manga spoiler](/s ""team selection chapters for the mixed teams"") -I had a hard time remembering who is who lol, I really need a cheatsheet for this preferably with small hints about personality and relationship charts...";False;False;;;;1610544049;;1610547102.0;{};gj3y39f;False;t3_kw8oi3;False;False;t1_gj3pcta;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3y39f/;1610607632;6;True;False;anime;t5_2qh22;;0;[]; -[];;;UDani11;;;[];;;;text;t2_3urk0qno;False;False;[];;"Assuming things you don't (and can't) know about. Classic reddit. - -They could have just been unimportant. They could have just been uninteresting. Or you could simply forget them some time after you've seen it. Not paying attention to the series is just stupid because at that point why would you be watching it? - -I mostly remember season 4 names because it hasn't been long since i've seen it. The same could not be said about s 1-3 side characters.";False;False;;;;1610544053;;False;{};gj3y3fs;False;t3_kw8oi3;False;False;t1_gj3u532;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3y3fs/;1610607636;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Rokusi;;;[];;;;text;t2_4cnt8;False;False;[];;"Don't worry; Vegeta is here to remind you that his name is Kakarot anyway.";False;False;;;;1610544064;;False;{};gj3y42q;False;t3_kw8oi3;False;False;t1_gj3pjvd;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3y42q/;1610607646;18;True;False;anime;t5_2qh22;;0;[]; -[];;;gemmy99;;;[];;;;text;t2_glbki;False;False;[];;"from all animes ive watched from top of the head i can think only few names: Spike, Natsuki Subaru, Kazuma, and ofc DiO. all other puff forgoten - -&#x200B; - -i think its cuz they can them by name all the time and it gets stuck in your head. most time i just remember their hair and eye colour - -##";False;False;;;;1610544118;;False;{};gj3y6xv;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3y6xv/;1610607694;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Duel_Loser;;;[];;;;text;t2_6fynepwy;False;False;[];;"I've been reading the My Hero Academia manga recently and both 13 and Nana Shimura have been referred to as ""he"" because the translators didn't know at the time that both were women. I'm only just starting to learn japanese but as I understand they don't use strictly gendered pronouns like english does.";False;False;;;;1610544138;;False;{};gj3y80c;False;t3_kw8oi3;False;False;t1_gj3xd58;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3y80c/;1610607712;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Izanagi___;;;[];;;;text;t2_6wmop5vl;False;False;[];;"Wish I learned that but I keep doing it. I'll type in their name in google and of course its always \*insert character name\* ""death"". Kinda ruined game of thrones for me";False;False;;;;1610544165;;False;{};gj3y9gv;False;t3_kw8oi3;False;False;t1_gj3saqo;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3y9gv/;1610607733;5;True;False;anime;t5_2qh22;;0;[]; -[];;;humansbrainshrink;;;[];;;;text;t2_90w546o6;False;False;[];;I forget the names of my family but still remember most names of characters in anime.;False;False;;;;1610544211;;False;{};gj3yc12;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3yc12/;1610607772;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacksoncic;;;[];;;;text;t2_386mmpr4;False;False;[];;I still get all the quintuplets names mixed up after watching the anime and read the manga.;False;False;;;;1610544244;;False;{};gj3ydti;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3ydti/;1610607799;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KiLLTriK;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KiLLTriK;light;text;t2_1adwfkcn;False;False;[];;I don't really know. Sometimes i can't remember them, sometimes i can. Don't feel bad about it. You'll remember when you don't need it.;False;False;;;;1610544392;;False;{};gj3ym0m;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3ym0m/;1610607928;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610544401;;False;{};gj3ymi3;False;t3_kw8oi3;False;True;t1_gj2vo9k;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3ymi3/;1610607936;1;True;False;anime;t5_2qh22;;0;[];True -[];;;Careless_Pudding_327;;;[];;;;text;t2_8rj9fyvi;False;False;[];;"They actually just don't generally use pronouns when referring to others. The Japanese words for 'he' (彼 かれ) and 'she' (彼女 かのじょ) were invented to translate European novels, and are generally only used in Japan to refer to someone's boyfriend or girlfriend. You can use *kare* and *kanojo* as 'he' and 'she' but it's not common, and people generally just use their name, or something genderless like ""that person"" (あの人).";False;False;;;;1610544522;;False;{};gj3yt51;False;t3_kw8oi3;False;False;t1_gj3y80c;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3yt51/;1610608038;12;True;False;anime;t5_2qh22;;0;[]; -[];;;FlingFrogs;;;[];;;;text;t2_2tolbmud;False;False;[];;Ich bin ja immer noch davon überzeugt dass es für deutsche Anime-Synchros genau drei VAs gibt die alle Rollen unter sich aufteilen.;False;False;;;;1610544564;;False;{};gj3yvfi;False;t3_kw8oi3;False;False;t1_gj3s1bv;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3yvfi/;1610608072;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Rokusi;;;[];;;;text;t2_4cnt8;False;False;[];;"I just treat it like a superhero comic which has things like the megalomaniacal villain Magneto's real name is Erik (""Eternal Lord"") Lensherr (""Feudal Lord""). - -Honestly, I think we mostly get around it in English because we draw a lot of our names from other languages. So we really only notice when the character's name is in English like how the fire-based Ghost Rider's real name is Johnny Blaze.";False;False;;;;1610544565;;1610544837.0;{};gj3yvho;False;t3_kw8oi3;False;True;t1_gj3lx07;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3yvho/;1610608073;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Benskien;;;[];;;;text;t2_bnjg2;False;False;[];;"> Kinda ruined game of thrones for me - -the good thing is that half of said charahcters actually lives cause everyone expected everyone to die";False;False;;;;1610544672;;False;{};gj3z1cu;False;t3_kw8oi3;False;False;t1_gj3y9gv;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3z1cu/;1610608165;4;True;False;anime;t5_2qh22;;0;[]; -[];;;actuallynotvictoria;;;[];;;;text;t2_539ybrhn;False;False;[];;for me it can be random...like hey *random person i knew for 2 years*... i get on a bus and immediately forget their name and i either have to look it up or ask them again...anime names are there for me fir about few days maximum;False;False;;;;1610544704;;False;{};gj3z339;False;t3_kw8oi3;False;True;t1_gj2vo9k;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3z339/;1610608192;1;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;Why the hell am I downvoted I need karma fuck it Iam deleting this;False;False;;;;1610544802;;False;{};gj3z8ho;False;t3_kw8oi3;False;True;t1_gj3rk6v;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3z8ho/;1610608276;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rokusi;;;[];;;;text;t2_4cnt8;False;False;[];;"...The character's name is actually ""Berutoruto?"" I just thought he was memeing.";False;False;;;;1610544924;;False;{};gj3zffn;False;t3_kw8oi3;False;True;t1_gj3vk3t;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3zffn/;1610608384;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Random_Critic;;;[];;;;text;t2_6e0zrasa;False;False;[];;"i rarely pay attention to names irl or in media. - -names are just words that someone else attributed to a person or thing. rarely does the name fit, especially if its a japanese sounding name that i dont know the meaning of. i tend to just think of people as however i think of them like the church guy from black clover, i just picture his old face and a church behind him, simple as that, i dunno why that was teh first character that came to mind... now more important characters i will remember for 3 reasons: 1: repetition (imagine a hig-pitched voice saying ""sasuke-kun, none of us will ever forget that SOB., 2: some thought has been put into the name like frippy, kira, victor, (n)atsu, these are often more accessible names rather than matsumoki, horadiuchukaka or whatever teh characters are called from shows like ID:Invaded or other seinen, 3. sometimes a characters name is only said a few times, is not very accessible but still is impactful enough that you remember it because... weell. ""don't underestimate the human race, meruem.""";False;False;;;;1610544929;;False;{};gj3zfr1;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3zfr1/;1610608391;1;True;False;anime;t5_2qh22;;0;[]; -[];;;seedyweedy;;;[];;;;text;t2_1k2dlhj6;False;False;[];;KENTAROOOOOO;False;False;;;;1610544931;;False;{};gj3zfve;False;t3_kw8oi3;False;True;t1_gj3k8te;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3zfve/;1610608392;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mr_sto0pid;;;[];;;dark;text;t2_13ckn3;False;True;[];;Sadly my brain doesn't let me forget anything. It's lucky you forget cause then you can rewatch the anime.;False;False;;;;1610545016;;False;{};gj3zkww;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj3zkww/;1610608470;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DireSickFish;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/DireSickFish;light;text;t2_mfrxc;False;False;[];;I usually don't bother to remember names in the first place. Only rarely causes me problems. Like if there's a name heavy conversation, I might have to pause and look up who they're talking about.;False;False;;;;1610545291;;False;{};gj400p6;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj400p6/;1610608712;2;True;False;anime;t5_2qh22;;0;[]; -[];;;seedyweedy;;;[];;;;text;t2_1k2dlhj6;False;False;[];;His name is Korean (Sung Jin-Woo) so Japanese weeb experience doesn't help much.;False;False;;;;1610545429;;False;{};gj408yr;False;t3_kw8oi3;False;True;t1_gj3je7r;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj408yr/;1610608839;1;True;False;anime;t5_2qh22;;0;[]; -[];;;misaka7612;;;[];;;;text;t2_29i3pe8t;False;False;[];;Misaka mikasa misaki masaka;False;False;;;;1610545446;;False;{};gj409ya;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj409ya/;1610608854;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GyunGyun;;;[];;;;text;t2_q3ng4rt;False;False;[];;you will really forget it if they dont interest you (duh xd) i mean i still remembered most characters in KHR which was like my first anime ever;False;False;;;;1610545538;;False;{};gj40fdu;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj40fdu/;1610608935;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Senkrigar;;;[];;;;text;t2_404k6fbv;False;False;[];;I usually remember european names better than japanese names;False;False;;;;1610545553;;False;{};gj40gbf;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj40gbf/;1610608950;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shockabroda;;;[];;;;text;t2_1be56mz4;False;False;[];;All the time I only remember if I really liked the anime like one piece I can remember every characters name even if they weren’t an important character it also had to do with most of the characters in one piece are English names and easy to remember;False;False;;;;1610545678;;False;{};gj40nnr;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj40nnr/;1610609066;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shockabroda;;;[];;;;text;t2_1be56mz4;False;False;[];;I can remember every single detail about a character but not their name;False;False;;;;1610545708;;False;{};gj40pg5;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj40pg5/;1610609094;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lordofboi;;;[];;;;text;t2_2xcch3a3;False;False;[];;r/unexpectedbillwurtz;False;False;;;;1610545958;;False;{};gj414li;False;t3_kw8oi3;False;False;t1_gj3udwm;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj414li/;1610609326;14;True;False;anime;t5_2qh22;;0;[]; -[];;;ZapsZzz;;;[];;;;text;t2_g2hnymx;False;False;[];;Rikei ga Koi is quite good, got a bit overshadowed by Kaguya Sama but actually aiming for different things.;False;False;;;;1610546078;;False;{};gj41by5;False;t3_kw8546;False;True;t3_kw8546;/r/anime/comments/kw8546/good_comedy_andor_romance/gj41by5/;1610609437;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ElegantTea122;;;[];;;;text;t2_7t0hf3es;False;False;[];;"Yes definitely. I'll actually list all the ones I do remember. - -Kaiki, Okabe, Kurisu, Rei, Feris, Daru, Moeka, Light, L, Shu, Hagu, Leskin, Maho, Mayuri, Kagari, Takami, Araragi, Hanakawa, Subarau, Felix, Emilia. - -That's just a few I remember, was there a point to this... no I just wanted to do it.";False;False;;;;1610546124;;False;{};gj41eo7;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj41eo7/;1610609478;1;True;False;anime;t5_2qh22;;0;[]; -[];;;seedyweedy;;;[];;;;text;t2_1k2dlhj6;False;False;[];;It's like the side character's job to call the main character's name all the time so you remember it lmao. 90% of Mikasa's lines is just ERENNNN;False;False;;;;1610546186;;False;{};gj41ikm;False;t3_kw8oi3;False;True;t1_gj3y6xv;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj41ikm/;1610609539;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Minisabel;;;[];;;;text;t2_2a3z01mv;False;False;[];;No fucking way;False;False;;;;1610546204;;False;{};gj41jo9;False;t3_kwarne;False;False;t1_gj37l6j;/r/anime/comments/kwarne/what_anime_have_good_fight_scenes_where_there_is/gj41jo9/;1610609555;2;True;False;anime;t5_2qh22;;0;[]; -[];;;luckysim0n;;;[];;;;text;t2_2esnwh6q;False;False;[];;I struggle whilst watching 😂😂;False;False;;;;1610546215;;False;{};gj41kck;False;t3_kw8oi3;False;True;t1_gj2vo9k;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj41kck/;1610609565;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Radzeer19;;;[];;;;text;t2_3qzyv094;False;False;[];;After watching 500+ shows all I can say is: yeah. It's normal.;False;False;;;;1610546300;;False;{};gj41plh;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj41plh/;1610609644;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TmnDarsh;;;[];;;;text;t2_1occ04ys;False;False;[];;I once was watching durarara n boom spoiler , shame it came so late;False;False;;;;1610546444;;False;{};gj41yck;False;t3_kw8oi3;False;False;t1_gj3u8ka;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj41yck/;1610609778;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Yupadej;;;[];;;;text;t2_21ttoiw5;False;False;[];;Completely normal ,they look similar with different hair colours. Even voices are repeated very often.;False;False;;;;1610546486;;False;{};gj420zh;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj420zh/;1610609817;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dazai53;;;[];;;;text;t2_6bd5oamh;False;False;[];;yep unless its my fav anime;False;False;;;;1610546499;;False;{};gj421rn;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj421rn/;1610609829;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mythriz;;;[];;;;text;t2_d37v0;False;False;[];;"Oh that reminds me that Haikyuu's manga final chapters showed [manga spoilers](/s ""probably all the players from the different teams""), but by then I had forgotten even many of the faces (probably never even learned the names) so the emotional effect was somewhat diminished lol.";False;False;;;;1610546500;;1610551567.0;{};gj421sl;False;t3_kw8oi3;False;True;t1_gj3gls8;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj421sl/;1610609830;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AtelierAndyscout;;;[];;;;text;t2_12jfw70r;False;False;[];;Names? Watching the first episode of Slime S2, I realized I forgot so many plot points.;False;False;;;;1610546764;;False;{};gj42i1b;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj42i1b/;1610610077;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dirtyEye7;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/mctvvish;light;text;t2_3yqzd8uf;False;False;[];;Happens;False;False;;;;1610546779;;False;{};gj42iwb;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj42iwb/;1610610089;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mikeBH28;;;[];;;;text;t2_qbri3;False;False;[];;Very normal, alot of the times for me the character names I do remember are very random. Like I'm watching Blue Exorcist right now and can't name a single character but I could tell you ever Hololive girls name even if I've never watched them.;False;False;;;;1610546831;;False;{};gj42m2r;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj42m2r/;1610610139;1;True;False;anime;t5_2qh22;;0;[]; -[];;;reconman;;;[];;;;text;t2_a8p2j;False;False;[];;"Inoue actually calls him Kurosaki-kun. I can distinctly remember what she says during the Ulquiorra fight because it was so bad: - -[Bleach](/s ""Kurosaki-kun! Kurosaki-kun! Kurosaki-kun! Kurosaki-kun! What should I do? What should I do? What should I do? What should I do, Kurosaki-kun???"")";False;False;;;;1610546904;;False;{};gj42qjd;False;t3_kw8oi3;False;False;t1_gj3xd58;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj42qjd/;1610610207;8;True;False;anime;t5_2qh22;;0;[]; -[];;;J-osh;;;[];;;;text;t2_oiokp;False;False;[];;Dude I forgot Kaneki's name the other day lmao;False;False;;;;1610547065;;False;{};gj430ne;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj430ne/;1610610361;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Suzaw;;;[];;;;text;t2_5ysenij4;False;False;[];;"I feel like part of the reason is the Japanese culture of calling people something different depending how close you are to them. Like in western shows, the characters are either constantly addressed with their first name, or with their last name, but you can usually attach one ""word"" to each character. - -In anime people are last name-san, first name-san, abbreviated first name-kun/chan, or an entirely new nickname unrelated to their real name, and all of these are used simultanously by different characters, it just gets confusing";False;False;;;;1610547075;;False;{};gj431a9;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj431a9/;1610610371;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sirppsauce;;;[];;;;text;t2_3gbm5zgi;False;False;[];;"hi my name is -. -. -. -. -. -. - - -Learning how to ride a bike ̝̯̙̼͚͈͇̩̮̗́͛ͦ̉ͤ̈́̌̑̑ͪ̆̎̈́͑̒ͦ̋̕͞ ͦ͊̽͆ͬ̈́͗̑́ͭͤͦ҉̴̬͚͈̩̼̪̬̘̫̖̘̝̖́ͅ ̢͕̠̲̭̫̬̪̦̂͋ͤ̉ͩ̎̄͊̾ͩ̆̅͝ ̵͕͉͇̗̂ͦͪ̂ͪ̀͝ ͧ̌̑̔̍ͦ͏͏͓͕̺͖͔̞̞̪͍͚͍̩ ̅̀͐̋̏͆̊ͭ҉̫̭͔̙̹̀ ̷͛̓̎ͩ͑͐̓̋̑ͫͪ̑ͬͩ҉҉҉̣̯̗͍̣̗̪̞̹̞̙̪̗̤̰̱̱͖ ͛̀̈́̽͋ͧ̾͐͜͏̯͚͉̬̥̬̲ ̷̵̵̨̠̱̥̮̥̮̠̩͎͙̱͍̮͈͚͎̭̱̬ͯ̇ͭ̊ͨ̓ͬ̉ ͉̣̻̭̗̟̤̥̓̃ͫ͆̒̈̈͛̿́͘͜͞ ̷̣͚̟̪̪̭̪̩̪̦̪̫͉̻̈͗ͧ͌̄̐̂̃̀̕ ̷̵̨͇̻̞̘̦̲͈̲̣̱͓̜͔̦̯̫̺͐͊̿͌̄͌͑́̀͢ ̶̛̱͓͖͓͎̟̙͚̥̻̜̬̹̩̮̩̟͈͂̑ͮͬͮ̇͛ͯ̂̅͒͘͠ ̛͔̩̩͔̳͈̭̪̰̦̱ͮ̆̾́̚ ͐ͧ͐͌ͧͭ̂̇̃͆̇̉ͣ̓҉̵̧̛̜̲̩̪̬̞̞̞̙̜̰̟̠̥͓͍̞͡ͅ ̷̡̟̼͎̩͋̉͐̄ͦ̀̊ͥͤ̔̓ͤ̇̑͑ͣͯ͆̚ ̶̛̭͎͔̞̼̩͈̫̰̱͖̬̟̤̲͍͇̐ͩ̑ͦ͌̋ͦ̎̐ͩ͑̈́̎̌ͤ͟͡ ̸̧̻̣̭̭̹̼̬̫ͥ̀ͨ̉ͣ̓̒̓̚̕͜ ̨͑̐͗̇̎̐̒̉̃̂͠҉̞̻̮̣̗̺͉̼͙͖͕̰̖ ̵̉ͧ̐̄ͥ̏̀̓͏̩̱͈͖͚̜̺̦͍͈͚̞͓̻̥͈̟ͅ ̷̨̡̙͎̯̝̯͚̳̮͔̂ͮ̋ͭ̊̇ͣͥ͆̈ͤ͆̒͛̍ ̶̵͌ͬ͆̍̅͂̕҉̨̳̦͓̱̞̻͇̹̤ ́͋͑ͫ̊͆͋ͩ̋ͫ̅ͥ̃͊̈̈́̑̚̚͏͔͍̗̮̦͔͉̠̦͓͖̖̀͘ ̛̯͖̻̙̀̄̆͌̽̌̌̊̚͝͞ͅ ̶͉͔̖̗̼̲̹͎̙̅ͧ̆̽̃͋́ͮͥ̓̾̑̎ͬ̽̾̔̐́͠͡ ̛̹̭͕̹̭̘̬͑͛ͨ̔ͧ̅͑̃ͤͩ̅͢͡ ̵̢̖̮̹͙̜̹̝̣̼̲͎̰̣̲̦̹͍͑̒ͯͨ̀ͮ ̶̶̢͖̞̳̬̅ͫ͆̊ͪ͐͢ ̯͎̩̣̗̖̋̀ͤ̾͗̅ͥͥ̍̍̆ͩ̃̀ͪ͠͝ ̶̢̝̹̯̆͛ͭ̿ͭͭͬͬͫ̔̔ͅ ̀̀ͨͪ҉̡̡̮͙̜̩̹̣̬̯͙͎̺̹ ̆͊̿̓͆̆ͫ̅ͨ̅͂̂̆͂̌͌ͥͣ͡҉̵͍̳̦͙̘͓̖̘ ̫̼͕̫̬͈̥̜̦̮͇̹͙͔̬̘̥͓ͫ̓̒̈́̋̓ͣͯͤ̑͂̈́͒ͥ̀̃̊̀͟ͅ ̌̆͑ͥ̾̃ͨ͏̶̢͙͚̦̲̗͕̩͎͈̫͇͎̯̮ ̢͙̘̼̙̣͓̪̟̳̞͕̟̋̐̔͂̋̉̇͒ͣͩ̂̓̽̉͂̍̀ ̶̢͓̖̦͍͎̜̫̭̝̝̲̜͊ͨͥ̔͆ͬ̃͢ͅ ̵̜̘̟̪̻̮͓̳̙̺͇̮̹͈̪̤͉̜͑̿̽ͧ͌̎̍͐́̅͐͊́͜ͅ ̧̛̘̞͎͕̤̗̤̥̻͍̞̲̱̖̰̩̖̠̲̈̂͐ͨͩ̊͑ͬ͒ͦ͑̓ͭ̋ͭ͋͘ ̡͔̰̺̫̟̳̙͙͍͉̝̜̺̱̠͍̱͇̗̈́ͬ̈́ͪ̉̆ͯ̃̃ͣ̌͊ͧ̍̌̑̿́͜͝ ͣ̂͛̽̃͆ͬ̑ͬ̃͏̵͟҉̺̩̻ ̶͍̺̲̦͓̙̼̈̑ͨ̈́̾́̓̌ͭ͌̋̌ͣ̓ͤ͆ͫ͝ ̸̸̢͖̥͓̟̦͉͍̈ͬ̇́̆ͯ̾͗͛͊̔ͭ̿̓̐̀̉̿̀̚͡ ̨̗̥͍͉̮̾ͮ̅̄̈́ͫͭ͐ͤͥͫ̐ͫ́͌ͩ̀̕ ̴̛͔̰̙̰͇͙̳̣̔ͪ̿̍ͧ͘͟ ̸̡̭̰͚̦̭̜͉̪̱̐ͨ̍ͩ̅̽ͪ͐̎ͮͪ͗͗ͬ͊́͜͢-̑̽ͣ̆͋̌̂ͭͧͨ̑̽̌̀͏̵̛͉͎̝̰̳͇̻̠̯͕̣͉̜̻̖̰̻̫ͅ ̴̺̳͙̦ͥ̑͒̄͊̿̀̒̌̏͛͒̽̍͂́_̇̃ͤ̍̇̍̊̔̏͋͑́̾͆͛̚҉͠҉̧̭͚͇̮̙̖_̡̖̯͕̣̲̫̼̰̺̝̟̜̺̙͓̈͒͒̒̋͝_̵̢̪̖̜̫̘̝̱͈̰̰̰̝̘̰͔͗̉̋ͦ͢͡_̶̧̳͖͚̙̘̭̘̬̣̘̞̟̥̌ͬ͛͗ͨ͊̓̾ͅ_̡̛͎̣͙̻̳̦͕̦̞̺̗̹͕̽͛̀̽̆ͧͣ̑͒̂̄̽͊̉͑͑̋͌̀͘͜ͅ_̸͎͇͖̝͙͉͔̦̭̹͉̳̒ͧ̔̈͒ͩͮ̐̈ͭ͗̒̆͜͠ ̡̧͙̣͓̮̤͎̮̳̺̣̮͈̪̱̜͈̹̰ͯ̇ͤ̉̀ ̡̢̱͔̰̻̭̱͙ͯͯͯ͋͌ͣ͐͂̓̽̔̄̆̃ͥ͘ ̴̵̴̞̬̮̼̭̫̭̤̮̰͍̞̭̑̒̉ͩ͛ͫ̌͑ͅ ̶̢̩̼͙̱̹ͬ́́̈́̄̿̿ͬ̊̽͐ͧ͝ ̧̺̠̣̤͕̤̗͍̟̣͕̯̯̲ͬ́̔̎̂̃ͨ̎̈̒̀͡ͅ ̵̖̳̩͎̤̫̠͕̯͆̂̄̿ͮ̆̍ͥ̄͜͠ͅ ̷̡̛͈̫̣̫̣̫͇͈̯̩̍ͯͧ̏͒̇ͫ͞ ̸͖̜̺͇̤̳̗̘̠͇̟͍̺̳ͦͪ̔̒̏͂ͣ̀͠ͅ ̢̛̞̭̘̮̳̜̜̣͕ͤ̔̒͊ͦͦͥ̈́͝ ̛̦̱̝͖̲͉̯ͥͧ̒͂̓ͤ̊͗͐ͭͮͬ̑̄͞ͅ ̼̙͕͕͍͔̝̟͖͙̼͍͍̤̥̩͚̓̋͗̀̇̽̃̐̇̄ͥ͌̀͗ͪ͘͞ ̓̊̈̆̑̒̒ͣ̾̎͐̇̐͋̈́҉̯̻̖̥̫ ̛̛̤͙̘̮̭̱̒̉̽̄ͧ̓ͩ͋͗̑ͨ͊̋̊̅̊͂̋́̀̕͜ ̷̶̨̛͔̱̟̮͇͇͉̫͎̟̱̳̲̠ͤ̏̄̇̎͗ͨ́̓̊̐̅̾̄ ̶̵̨̱̰̬̦͉͚̤̰̱̳͔ͭ̒́ͨ̓̏̀ ̴̷̭̹͖̞̭͙̪̤͙̖͙̭̖̍̌̃ͮ͟ ̡̢͖̲̹̟̫̩̓͛͐͘ ̶̨̢̜̗̙̏̃ͦͯ́̾̔̽̐ͩ̅͗̆̊́ ̺̻̯̻̖̫͉̼̖̮͈̫͉̻̰̯͙͇̈͊ͩ̽̋̌̕͢ͅ ̶̙̟̦͎̜̮̘͙̰̣͎̗̻̹̗͖̳̲̆͒̅̓ͩ̔͊̇̓͑ͭ̉͌ͫͤͧͤ̔̚͟5̷̲̦̦̦̮̞̼̥̦̗͓͉̫͔̟͙̣̔ͤ͒͊̀̏͒̌ͬ̍̉̐͑̈́̽ͮ͘͝͡ ̧̆͑͌͐ͥͫ͋̀ͭͯ͏̙̲̰̗͚͉̼͔̹͚̩̮̳͎̜̪̙̭̞ ̹̫̭̼͕̐ͪ̔̄̒̎̓ͮͮ̋̒̈́̀́͟͝͠ ̵̢̫͎͕̉̿͋ͭ́ͮ͛̋ͬ̒ͫ͐̏̐͜ ͓̹̞̲̪̦̝ͤ̔ͪ͒̈́̐̎̑ͯ͆̍̿́͞ ̴̶̧̢̯̜̩̥̖̹̙̪̭̪͚͕̜͙̻͍͂̈̑ͭͥͥ͑ͭͯ̑͒ͥ͗̋ͤ̇̃͛̽̕ͅͅ ̳̬͙̦̩̩̹͖̹͎̘̗̓ͤ͐̃ͨ̎̋ͯ̀͗̂ͭ͢͠͠ ̵̵̧̩̬͚̫̭̗͉ͯ͆̆ͭ̀ͧ̇̇ͯ̓̅͜ ̋̊̓̌̿̄҉̥̼̝̠̺̩̱͔̫̹̝̤͍̯̭̖̦̹ ̡̄̐̔̒̀͟͞҉̙͈͈͙͕̟͜ ̷̸̡̟̦̤̹̖̬̱̟͇̹̱̺͍̠̘͉̙̐̓̉̈̈́͒͂͛̈̆̔̅ͦ͐ ͦͪͧͧ̃̋̆͏͚̳̹͍̦̮͙̼̦̯̕ͅ ̵̛̠͙͚̜̭̔͌̆̔̓̃̇̃̐ͨ̇̕ ̊͛̉͊̉̐̈́͏͎̠̦̭͎̬̼̞̻̫̙͕̟͎̫͈͙̩͘̕͝ ̨̪͈̹̰̝̲ͮ̿ͦ͋ͪͤͭ̇͌̍̈̌͜͞ͅͅ ̱̯͈̟̰̤͉̾͐ͮ̑͐̏̄̅ͨͣ̆̉ͤ̋̔͆̚͟ ̊̎͆ͬ҉̨̟̠͕͚͇̝͕̯͓̤͓̖̠͇̭̺̠͘͢ ̨̼̻͔̰͔̠̖̩̭̃ͩ́ͪ̉͗̍̅ͤͣ͊̀ͧ̆̅͐ͦ̕͠ ̙̟͓̠͖͓̝͓̳̰͉̮͇͇͛̽̏͌ͬ͗̈́̉́̕ͅͅ ̵̦̣͓̮̭̩͈̺͔͈̺̯͙̻́̾̈́̈́̈̈́ͣ̄͒͝͞ ͓̰̘̫̬̰̥͈̗̥ͫ̔̈́ͨ̊ͮͧ͒̕͘͠ͅ ̶̠̹̦̱̩̦͉̙͔͎̦̮̼͖̘̋̃́̉͞͡͡ͅ ̢̩̤̤͉̤͉̪̭̣̼ͯͯ̒̋ͫͤͪ̓ͧͤ̍͑́̚͡ ͙͈̝̤͔̬̻͔̞͖͈̲̎̓̇̇ͥ̓̇̃̍̓̉̃́ͧ̽ͭͭͮ̂͞͝ͅͅ ̸̧͇̳̘̫̜̠͍̲̩̯͍ͬ͋ͣ̌́́͝ͅ ___________ I am 13 and want a older man to abuse me. why I don’t know but seek it god is hopeless to me 3) ̝̯̙̼͚͈͇̩̮̗́͛ͦ̉ͤ̈́̌̑̑ͪ̆̎̈́͑̒ͦ̋̕͞ ____________ ͦ͊̽͆ͬ̈́͗̑́ͭͤͦ҉̴̬͚͈̩̼̪̬̘̫̖̘̝̖́ͅ ̢͕̠̲̭̫̬̪̦̂͋ͤ̉ͩ̎̄͊̾ͩ̆̅͝ ̵͕͉͇̗̂ͦͪ̂ͪ̀͝ ͧ̌̑̔̍ͦ͏͏͓͕̺͖͔̞̞̪͍͚͍̩ ̅̀͐̋̏͆̊ͭ҉̫̭͔̙̹̀ ̷͛̓̎ͩ͑͐̓̋̑ͫͪ̑ͬͩ҉҉҉̣̯̗͍̣̗̪̞̹̞̙̪̗̤̰̱̱͖ ͛̀̈́̽͋ͧ̾͐͜͏̯͚͉̬̥̬̲ ̷̵̵̨̠̱̥̮̥̮̠̩͎͙̱͍̮͈͚͎̭̱̬ͯ̇ͭ̊ͨ̓ͬ̉ ͉̣̻̭̗̟̤̥̓̃ͫ͆̒̈̈͛̿́͘͜͞ ̷̣͚̟̪̪̭̪̩̪̦̪̫͉̻̈͗ͧ͌̄̐̂̃̀̕ ̷̵̨͇̻̞̘̦̲͈̲̣̱͓̜͔̦̯̫̺͐͊̿͌̄͌͑́̀͢ ̶̛̱͓͖͓͎̟̙͚̥̻̜̬̹̩̮̩̟͈͂̑ͮͬͮ̇͛ͯ̂̅͒͘͠ ̛͔̩̩͔̳͈̭̪̰̦̱ͮ̆̾́̚ ͐ͧ͐͌ͧͭ̂̇̃͆̇̉ͣ̓҉̵̧̛̜̲̩̪̬̞̞̞̙̜̰̟̠̥͓͍̞͡ͅ ̷̡̟̼͎̩͋̉͐̄ͦ̀̊ͥͤ̔̓ͤ̇̑͑ͣͯ͆̚ ̶̛̭͎͔̞̼̩͈̫̰̱͖̬̟̤̲͍͇̐ͩ̑ͦ͌̋ͦ̎̐ͩ͑̈́̎̌ͤ͟͡ ̸̧̻̣̭̭̹̼̬̫ͥ̀ͨ̉ͣ̓̒̓̚̕͜ ̨͑̐͗̇̎̐̒̉̃̂͠҉̞̻̮̣̗̺͉̼͙͖͕̰̖ ̵̉ͧ̐̄ͥ̏̀̓͏̩̱͈͖͚̜̺̦͍͈͚̞͓̻̥͈̟ͅ ̷̨̡̙͎̯̝̯͚̳̮͔̂ͮ̋ͭ̊̇ͣͥ͆̈ͤ͆̒͛̍ ̶̵͌ͬ͆̍̅͂̕҉̨̳̦͓̱̞̻͇̹̤ ́͋͑ͫ̊͆͋ͩ̋ͫ̅ͥ̃͊̈̈́̑̚̚͏͔͍̗̮̦͔͉̠̦͓͖̖̀͘ ̛̯͖̻̙̀̄̆͌̽̌̌̊̚͝͞ͅ ̶͉͔̖̗̼̲̹͎̙̅ͧ̆̽̃͋́ͮͥ̓̾̑̎ͬ̽̾̔̐́͠͡ ̛̹̭͕̹̭̘̬͑͛ͨ̔ͧ̅͑̃ͤͩ̅͢͡ ̵̢̖̮̹͙̜̹̝̣̼̲͎̰̣̲̦̹͍͑̒ͯͨ̀ͮ ̶̶̢͖̞̳̬̅ͫ͆̊ͪ͐͢ ̯͎̩̣̗̖̋̀ͤ̾͗̅ͥͥ̍̍̆ͩ̃̀ͪ͠͝ ̶̢̝̹̯̆͛ͭ̿ͭͭͬͬͫ̔̔ͅ ̀̀ͨͪ҉̡̡̮͙̜̩̹̣̬̯͙͎̺̹ ̆͊̿̓͆̆ͫ̅ͨ̅͂̂̆͂̌͌ͥͣ͡҉̵͍̳̦͙̘͓̖̘ ̫̼͕̫̬͈̥̜̦̮͇̹͙͔̬̘̥͓ͫ̓̒̈́̋̓ͣͯͤ̑͂̈́͒ͥ̀̃̊̀͟ͅ ̌̆͑ͥ̾̃ͨ͏̶̢͙͚̦̲̗͕̩͎͈̫͇͎̯̮ ̢͙̘̼̙̣͓̪̟̳̞͕̟̋̐̔͂̋̉̇͒ͣͩ̂̓̽̉͂̍̀ ̶̢͓̖̦͍͎̜̫̭̝̝̲̜͊ͨͥ̔͆ͬ̃͢ͅ ̵̜̘̟̪̻̮͓̳̙̺͇̮̹͈̪̤͉̜͑̿̽ͧ͌̎̍͐́̅͐͊́͜ͅ ̧̛̘̞͎͕̤̗̤̥̻͍̞̲̱̖̰̩̖̠̲̈̂͐ͨͩ̊͑ͬ͒ͦ͑̓ͭ̋ͭ͋͘ ̡͔̰̺̫̟̳̙͙͍͉̝̜̺̱̠͍̱͇̗̈́ͬ̈́ͪ̉̆ͯ̃̃ͣ̌͊ͧ̍̌̑̿́͜͝ ͣ̂͛̽̃͆ͬ̑ͬ̃͏̵͟҉̺̩̻ ̶͍̺̲̦͓̙̼̈̑ͨ̈́̾́̓̌ͭ͌̋̌ͣ̓ͤ͆ͫ͝ ̸̸̢͖̥͓̟̦͉͍̈ͬ̇́̆ͯ̾͗͛͊̔ͭ̿̓̐̀̉̿̀̚͡ ̨̗̥͍͉̮̾ͮ̅̄̈́ͫͭ͐ͤͥͫ̐ͫ́͌ͩ̀̕ ̴̛͔̰̙̰͇͙̳̣̔ͪ̿̍ͧ͘͟ ̸̡̭̰͚̦̭̜͉̪̱̐ͨ̍ͩ̅̽ͪ͐̎ͮͪ͗͗ͬ͊́͜͢-̑̽ͣ̆͋̌̂ͭͧͨ̑̽̌̀͏̵̛͉͎̝̰̳͇̻̠̯͕̣͉̜̻̖̰̻̫ͅ ̴̺̳͙̦ͥ̑͒̄͊̿̀̒̌̏͛͒̽̍͂́_̇̃ͤ̍̇̍̊̔̏͋͑́̾͆͛̚҉͠҉̧̭͚͇̮̙̖_̡̖̯͕̣̲̫̼̰̺̝̟̜̺̙͓̈͒͒̒̋͝_̵̢̪̖̜̫̘̝̱͈̰̰̰̝̘̰͔͗̉̋ͦ͢͡_̶̧̳͖͚̙̘̭̘̬̣̘̞̟̥̌ͬ͛͗ͨ͊̓̾ͅ_̡̛͎̣͙̻̳̦͕̦̞̺̗̹͕̽͛̀̽̆ͧͣ̑͒̂̄̽͊̉͑͑̋͌̀͘͜ͅ_̸͎͇͖̝͙͉͔̦̭̹͉̳̒ͧ̔̈͒ͩͮ̐̈ͭ͗̒̆͜͠ ̡̧͙̣͓̮̤͎̮̳̺̣̮͈̪̱̜͈̹̰ͯ̇ͤ̉̀ ̡̢̱͔̰̻̭̱͙ͯͯͯ͋͌ͣ͐͂̓̽̔̄̆̃ͥ͘ ̴̵̴̞̬̮̼̭̫̭̤̮̰͍̞̭̑̒̉ͩ͛ͫ̌͑ͅ ̶̢̩̼͙̱̹ͬ́́̈́̄̿̿ͬ̊̽͐ͧ͝ ̧̺̠̣̤͕̤̗͍̟̣͕̯̯̲ͬ́̔̎̂̃ͨ̎̈̒̀͡ͅ ̵̖̳̩͎̤̫̠͕̯͆̂̄̿ͮ̆̍ͥ̄͜͠ͅ ̷̡̛͈̫̣̫̣̫͇͈̯̩̍ͯͧ̏͒̇ͫ͞ ̸͖̜̺͇̤̳̗̘̠͇̟͍̺̳ͦͪ̔̒̏͂ͣ̀͠ͅ ̢̛̞̭̘̮̳̜̜̣͕ͤ̔̒͊ͦͦͥ̈́͝ ̛̦̱̝͖̲͉̯ͥͧ̒͂̓ͤ̊͗͐ͭͮͬ̑̄͞ͅ ̼̙͕͕͍͔̝̟͖͙̼͍͍̤̥̩͚̓̋͗̀̇̽̃̐̇̄ͥ͌̀͗ͪ͘͞ ̓̊̈̆̑̒̒ͣ̾̎͐̇̐͋̈́҉̯̻̖̥̫ ̛̛̤͙̘̮̭̱̒̉̽̄ͧ̓ͩ͋͗̑ͨ͊̋̊̅̊͂̋́̀̕͜ ̷̶̨̛͔̱̟̮͇͇͉̫͎̟̱̳̲̠ͤ̏̄̇̎͗ͨ́̓̊̐̅̾̄ ̶̵̨̱̰̬̦͉͚̤̰̱̳͔ͭ̒́ͨ̓̏̀ ̴̷̭̹͖̞̭͙̪̤͙̖͙̭̖̍̌̃ͮ͟ ̡̢͖̲̹̟̫̩̓͛͐͘ ̶̨̢̜̗̙̏̃ͦͯ́̾̔̽̐ͩ̅͗̆̊́ ̺̻̯̻̖̫͉̼̖̮͈̫͉̻̰̯͙͇̈͊ͩ̽̋̌̕͢ͅ ̶̙̟̦͎̜̮̘͙̰̣͎̗̻̹̗͖̳̲̆͒̅̓ͩ̔͊̇̓͑ͭ̉͌ͫͤͧͤ̔̚͟6̷ͭͤ̎͊̿̆̀͏̡̪̹̜̗̹̬̭̰͖̜̖̫̬̰̖͚͘͟1͍͇̙͚̤̬̝̼̩̣̠̯̮̻̹̇̽ͮ̍͗͟͝6̵̏̅̽͒̽̑ͦ̏̓ͨ̚͏̹͇̤̜͓͜͟͜5̷̲̦̦̦̮̞̼̥̦̗͓͉̫͔̟͙̣̔ͤ͒͊̀̏͒̌ͬ̍̉̐͑̈́̽ͮ͘͝͡.̡̛͍̦̳̗͙̦̠̦̩̜̹͈̃̅͊̕͝͡ ̖͙̯͉͇̜͍̲͑̒́̇͌ͣ̇ͯͮͯͯ́͊ͣ̉͑͋̓̽̀4̸͖̗͎̭͚̣̼͍͇̖͓̇̌͂̒̉̾ͩͣ̅̌̋̓̚͘ ͙̫̰͖͍͙͚͕ͫ̓̒̊̊̌ͨͤͨ͐̄̋̀͡͝ͅ ̧̆͑͌͐ͥͫ͋̀ͭͯ͏̙̲̰̗͚͉̼͔̹͚̩̮̳͎̜̪̙̭̞ ̹̫̭̼͕̐ͪ̔̄̒̎̓ͮͮ̋̒̈́̀́͟͝͠ ̵̢̫͎͕̉̿͋ͭ́ͮ͛̋ͬ̒ͫ͐̏̐͜ ͓̹̞̲̪̦̝ͤ̔ͪ͒̈́̐̎̑ͯ͆̍̿́͞ ̴̶̧̢̯̜̩̥̖̹̙̪̭̪͚͕̜͙̻͍͂̈̑ͭͥͥ͑ͭͯ̑͒ͥ͗̋ͤ̇̃͛̽̕ͅͅ ̳̬͙̦̩̩̹͖̹͎̘̗̓ͤ͐̃ͨ̎̋ͯ̀͗̂ͭ͢͠͠ ̵̵̧̩̬͚̫̭̗͉ͯ͆̆ͭ̀ͧ̇̇ͯ̓̅͜ ̋̊̓̌̿̄҉̥̼̝̠̺̩̱͔̫̹̝̤͍̯̭̖̦̹ ̡̄̐̔̒̀͟͞҉̙͈͈͙͕̟͜ ̷̸̡̟̦̤̹̖̬̱̟͇̹̱̺͍̠̘͉̙̐̓̉̈̈́͒͂͛̈̆̔̅ͦ͐ ͦͪͧͧ̃̋̆͏͚̳̹͍̦̮͙̼̦̯̕ͅ ̵̛̠͙͚̜̭̔͌̆̔̓̃̇̃̐ͨ̇̕ ̊͛̉͊̉̐̈́͏͎̠̦̭͎̬̼̞̻̫̙͕̟͎̫͈͙̩͘̕͝ ̨̪͈̹̰̝̲ͮ̿ͦ͋ͪͤͭ̇͌̍̈̌͜͞ͅͅ ̱̯͈̟̰̤͉̾͐ͮ̑͐̏̄̅ͨͣ̆̉ͤ̋̔͆̚͟ ̊̎͆ͬ҉̨̟̠͕͚͇̝͕̯͓̤͓̖̠͇̭̺̠͘͢ ̨̼̻͔̰͔̠̖̩̭̃ͩ́ͪ̉͗̍̅ͤͣ͊̀ͧ̆̅͐ͦ̕͠ ̙̟͓̠͖͓̝͓̳̰͉̮͇͇͛̽̏͌ͬ͗̈́̉́̕ͅͅ ̵̦̣͓̮̭̩͈̺͔͈̺̯͙̻́̾̈́̈́̈̈́ͣ̄͒͝͞ ͓̰̘̫̬̰̥͈̗̥ͫ̔̈́ͨ̊ͮͧ͒̕͘͠ͅ ̶̠̹̦̱̩̦͉̙͔͎̦̮̼͖̘̋̃́̉͞͡͡ͅ ̢̩̤̤͉̤͉̪̭̣̼ͯͯ̒̋ͫͤͪ̓ͧͤ̍͑́̚͡ ͙͈̝̤͔̬̻͔̞͖͈̲̎̓̇̇ͥ̓̇̃̍̓̉̃́ͧ̽ͭͭͮ̂͞͝ͅͅ ̸̧͇̳̘̫̜̠͍̲̩̯͍ͬ͋ͣ̌́́͝ͅ ̡̛̜̞͍͙͔̯̮͎͚̏ͪ̏͂͗̈́̊̃̑ͫͬ̑̔ͯ̾̄͝ ͊̂́͗ͯ̆ͫͩ̌ͭͥ͆̇ͪ̆̚͠҉̠̬̬̞̭͚̫̭͖̗͖̣ͅ ̶͒ͩͨ̽ͨ̂͛ͬ̿ͫͪ҉̙̫̜̘̮͍̥̯ ̸̨̯̯̻̪̺͙̝̅̆̌͌̀́͝ ̷̴̢͈̻̘̲͕̰̱͎͕̱́̔ͤ͂̏ͣ̍̕ ̣̤͖̦̝̦̹̗͎̗̮͇͇̑ͥ̃́̈͐̆̓̌ͩ̈̇͛̓̈̚͘͠ ̶̷̸̲̮̲̺̬̈́ͬ̉̂ͩ̍̕ ̸̋͒̿̆͆̈́ͣͭ̊͑̑̍͋́҉͇̻̻̻̤̜̫ͅ ̸̡̢̲̤̦̭̣͕̬̯͛̆ͬ͘ ͐̈̎͋͊̔͑̍҉̶̶͓̟͙̰̱̦̪̘̻̦̞̰̙̩͇͡ͅ ̢̛͛̄ͤͦ̐̆̈́̇̑ͪͫ̔̽͂ͧ̌ͬͥ҉̵̵̺̩̻̮͎̖̺̳̩͈̻̺̺̩̰ ̷̬̪͖̙̹̝̱̜̫ͣ̈ͫͯ̐̍͂͆̌͒̂͛̓̔́̚͘̕͞ ̵̷̩̲̝̩͇̪̝̠̩͇̮͍̥͇̾̀̄̓ͪͫ͆́̈̈́̌ͭͮ̃̓ͯ̏̿̒͟ͅ ̴̞̲͚ͫ̆̎̓̎̐ͪ̄ͨ̏̑͋ͩ̿̓̑̕̕͟ͅ ̳͔̣̲̼̪̩̳̂̏̐̅̇͘ ̷̡̠͍̙̖̱̳̰͈̲̗ͣͣ̇̌̇͛̃̇͂͌̋ͫ̃̋ͯ͌ ̸̷̨̳͉̘̖͈͙̗̫̭͎̠͚̼̪̭͎̬̱̐͗ͭ̈ͣ̊ͭͬ̐̂ͦͣ̇͐ͧͫͦ́͘ͅ ̨̳͓̰͔̩͓͉͕͓̰̤̞̪͓̖̺̭̪̓ͮ̐ͥ̾ͦͦ̉́ ̡͖̦̻̩̻ͤͫ̅̌̿̏ͥ̏̀͒͛ͧ̈́̎̈́ͬͮ̚͠͠ ̢͈̳͇͍̫̼̰̖̭͔̤̟ͫ̓ͭ̑ͧͭ̾͑ͦͮ͐̕͟͢ ̢͊̓͊͗ͥͤͮ̊̓ͨͪͯ͟͡͏͍̼̘̗̣̮͙͔̙̪̥̖͉̖͇͇̲̭ͅ ̶̮̱̮͈ͧͫ̎ͧ̄̇̈́ͩͩ̓́͞ ̸̡̡͔̤͔͚̲̜̱͚̺͔͔̭̼͈͓̣̙̘ͮ͌̂̀̋͐ͦ͆́ ̲͔͓̣͇̩̳̱ͨͧ̌͗̏ͭ̾̌͋ͨͥͫ̃̕͠ ̶͗̐̉ͩ͂̿͑͏͏̵̣͎̥̘̘̳̠̰͞ ̴̨̻͈̫̱̗̓͐̓ͤ͆́̎́ͦ̓ͨ͌̿̏ͧ͊̚͝ ̴̨̭̖̗̮̜͎̬̺̩̋̂͒̽̾̋̓͛͒̐ͩ̎͗͒̄̆̉͟͜͝ ̷̧͉̰̮̝͔̪̞̟͙͈̭͚͕͂ͩ̍͌ͫ̅̇͌ͬ͊̈́͛̈́͗ͯͦ̾͠͠ͅ ̷̰̮̜̞̲̹͈͙̰̝̰͙̼͔̽̆̓̽ͥͯ͑ͥ͑͛̅͛ͥ͊̓ͫ͟͠͝͠ ̾̋̔͗̿҉̨̨̨̼̭̫̣̼͈͢ ̷̝̭͖͔̭̤̑̄̎ͬͨ̇ͫ̋̉̀̑͗̑̐̉ͩ͠͡ ̶̨̮͕̖͈̩͕̩͉̖̦̗̄̊͌ͦ̿̿ͬ̑ͪͯ̐̂͒ͩͭ̓ͫͬ̚ ̷̛̯̩͓̠͍̦̳̥͈̯̒̒̐͗ͩͧͧ̈́̄ͪͪ͌̉̀͡ͅͅ ̷̡̨̘̜̻̮̗̈̆̎̿́̃̈́͠͝ ̎͑̀ͥ̚͢͏̞̭̝̗̬̟̥̮͎̠ ̸̛͍̹̺͕͈͓̻͉̯͈̻͇̺̜̉̒̆̍̆̍̿̽̍ͩ̈́̆̽̕͟ ̧̑̾ͩͣͭ͆͋ͯ̋̎̋͏̙͎̤͚̻̰͙͞ ̨̨̭̲̯̟͖̞̰̮̙͓̳̄ͫ̅ͧͦ͑ͫͯͭͤ͋̽̄ͭ̈̑̽ͩ̒͝ ̧̦̝̳̗͖̳ͩͨ̽͒͊̆ͯ̓̍ ̿͌͊̓̎̒͗̉̉̽̓ͤ̎̐͗̀͘͞͡͏͖̲̰̪̳͍̦͉̗̟̹̠̠ ̸̵̛̛̰̼͇̺̠͔͔̳͉̲̗͖͍̭͉͉͔̘̦͊̐ͥ̒͐ͬ̏̔͑͗̾̚͢ ̎ͧ͑ͦ͆̀̅͛ͩͣͨͥ̂ͯ͡͏͞͏̦͉͈͔́ ̴̳͉̦̹̝̙̲͎̠̮̱͓̭̲̫̱̎̑͛̓ͫ͑̎ͭͬ͋ͬ̿̔̌̃͐͞_̨̡̝̙̼̻͉͈͈͍̗̞̯͎͓̖̱̲̼͓̣ͯ̆̈́̈́̉ͩ̓͘̕_̵̷̠̫̩͍̼͓͕̟͚͍̤̰͈̟͒̇̍̌͂͑͆͗͋͂̈́͞_̽̓̄ͩ̿̌̈̒̏ͯ͑̅̓̈́ͧ̚҉͏͔͇̯̫̞̼̪̮̬̘̰͎̻̜̱͘ͅ_̽͆̀̑ͫ̎͊̆̉̚͏̰͔͕̦͕̙͉̩͈̣̘͖̹̫̦͚̪͈ ̾̒ͩ̍ͧ̋̚҉̴̭̰̥͓̣̟̲͖̺͎̜͍ ̨̯̣̻̮̻̟̝̹̮̊͌̎ͯ͂̐̑̔͐ͤͬ̑ͧ̀͢͜͟ ̧̺͇̙̝̪̾̑̎ͮ̃͋̈̓̈ͩͩ͗̈́̀͟͡ ̦̲̹͕̘̝̦̯̻̲͔̯̉ͫ͊̀́ͩ͊̚͟ ̸̉̾̍̐ͣ̃ͦ̎̈ͩ̋ͨ̾͋҉̗̺̩͚̫͓̳͖̥̻͘͞͡ ̵͉͍͎̖̱̹̦̬̯̲̀ͭ̊̾̽̉͗̒ͬͩͤ́͠ ̴̨̧̛͍͍̠̝̹̦̹̖̫̳̣̦̬̦͔̜͙ͧ͂͛̂̅̋ͅ ̡̙̳̠͚͚͚͔͔̮̞̻͕̠̘͓̰̩̇̓͂ͧ̆͜͜ͅ ̢̧̘̹̗̪̟͇̗̪͇̲̤̤̯ͮ̿͗̈͛͟ ̷̡̲͕̦̱̟̘̼̱̩͔͓̙̺͂ͧ̓͛ͯ͛̀͑̄̓̽̃ͤͨ̐ͭͬ̓͜ ̸̡͇̦̟̠̠̞̱͙̦ͦͮ͂̂̉̑͑͊̀ͦ̾ͤ̎͐͂͐͜͟ ̡̺͉̖͎̱͐̂̄̀̌̂̋ͫ̎ͫͪ̈́͑͐̀͟ͅ ̫̺͖̓͑̓̈̓ͨͨ́͊̌ͨ͐ͦ͢͢ ̴̮̭͍̰̖̥̟͔̙̣͔̬̦͍̞̼ͪ̐̊͂ͯͬ̒̆ͭͮ̀̋̀̂̆̀͟ ̨͎̫̦̫͖͉̥̻͓̝̺͖̺̜͈̤͔̘̑̒ͯͭ̐͘͠ ̬̥̼͕̤̭̦̳̣̭̤͕̼͙̠͊̉ͫͣ̌̌̀ͭͪ̾̄ͭ̆͒ͤ͐̚̕ ̢̡̢̤͈͚͖̃ͮͥ̓ͩ͆̋̉̌ͤ̂͛ͪ̎̿̾̐ͫ ̨ͣ́ͦ̄͋̋͆ͭ̓͊ͨ͂ͪ̽ͧ͑͏̠̪͕̤̳͍̭̣̲͖͢͢͡ ̡̙̳̬̣̙̫̗͖͖̹͎̥͍͇̟͊ͮ̈́ͤ̀̔̈́ͣ̽̏̽̋͒͜͠ͅͅ ̵̸̬͈̪̮͈̼̫͉̲̤̣̥͖̋̿ͣ͐͊̆ͭͩ̅͗̓̋ͪ͝͞ ̖̭̳̜͐̿̅ͬ̂̂̐ͥ̑̂̒̿ͣ͒͋ͪͣ͗͘͘͝ ̴̶͍͍̪͇͉̠ͯ͆ͦ̅ͣ̉ͬ́̔̉̒͐̂̌͑̈ͦͩ͂̀͢ ̸̷̢͕̣̠͉̺̲͉̠͚̳̤̤̹͙̤̫͈͇̋̽̓̾ͣ̾̒̌̈́̓͘͢ͅ ̸̷̴̰̪̤͙͍̬͈̇̃̾͛̏̌͋͑ͬ̊ͮ͑͡ ̸̢̹̟̰̳̭̩̺̪̲̺̤̯̫ͩ́ͩ̎̉̄ͮ̀̊̑̀̕͡ ͎͓̞̲̟͙̲̤̮̠̞̩͇̳͐́̂ͮ̓̉̀́̕͢͢ ̴̴̛̬͖̝̮͈͔̈ͬ͂͗͊̀̽̄͋̈ͪ̅̽͑ͪ̅̒̐̀̚͘ ̴̵̡͍͓͍͍̗̺̲̩̜̻͓̱̬̦̞̐ͩ̇͐͛̒̆̽͗̕͟ ̴̠̬͎̯̬̮͙̙̺̩̠̳̲͖͓̝̩̳̙́̄̽ͦ̒̈̐ͨͧ̆ͩ ̡̩̙̲͓̦̜͇̙̭ͥͮͬͯͭͪ̌͗̑̌ͥͯ̚̕͜ ̧̒͑̑͌̋̓ͬͧ̃̅ͤ͏҉̝͈͕͈̯͉̦͙͖͖͕̰͍ ̧̓ͥͥ̑̒͛̅ͥ͆ͦ̇̑͗̉̊̾̔҉̴̭̤͓̤̦̜̘͠ ̷̛͖̲̹̹̗͖͔̰̤͔̰̩̤͎͉̭̀ͮ͐ͧ̃́͐̀͢͟ͅ ̛̱̞͙̺̳̜̞̼̗͙̍ͫͬ͌ͥͬ̿̈ͦ͗̎̚͡ ̸̨̞͚͓͇̳͕̘̮̹̣̩͎͚̪̱ͫͦͬ̇͗ͮ͌͝͞͞ ̧̢̱͎͍͍͕̖̝̼͓͉̥̼̰̼̂͋̒ͮ̀͟͝ ͑͐́ͫ̽ͦ̆ͬ͋̉ͤ̚͘͏͓͍̟̻̘̜̦̞͍̫̫͍̫͓̗͕̜̳ ̸̌̍̓͑̀̉҉̮͓̙͖̦̞͈̻͍̜̭̫̫͝ͅ ̷̧̩͈̩̦͚̗͚͔͍̰̩̲̳̑̄ͭ͊̅ͪ̊ͦͥͧͅ ̛͈̗͇̝̲̇ͣ͒ͮ̌̑͂ͮ̌͊̓͒͛ͧ̌̔͠ ̶̲̜̗̗̲̣̹̮͇̲͔͙̥̻̙̈̃ͮ̌ͦ̂ͣ͆ͣͮ͆͂̕ͅ ̨̫͚̺̬̖̞̭̳̜̪̱͙̥̭͓͍͖͇̯͐ͭ̃̀̇̾͐́͑͆͊͆ͥ͐ͬ̀̚͟ ̢̭͎̫̜̱̱̹̮̯͙͔̗͈ͩ̑̋͒̋̓͢͠͞ͅ ̷͎̤͍͖͖̭̻̘̼͎̱ͮͯ͛̂̾̽́͗̇̋̐̀́ ̶̛̪̠̲͕͓̲̤͚͖̒ͩ͊ͪ̾ͫ̌̂ͥ̇ͮ́̚ͅ ̩͓͈̼̗̞̓̌́͂͑͑͋̇̐̀̚͢ ̶̷̬̠̻͕̬̱̞͍̩̤̔̈́ͫ̈̊̌̈́ͤͮ̈ͥͯ̿̊ͯͨͣ̚̚ͅ ̴͗ͬͭ̔̉̓ͫͯ̈҉̴͖͖̜̺̳͇̰̱̹͖͎̯̤̙̗̮̳ͅ ̱̠̟͎̭͉͈̯̄̇͊̍͌ͥ̽̔͑͊̉̇̾̓̇̕ ̶̗̰̟̜̘̭͕̜̐ͤͯ̀ͤ̒̄̒ͮ̔͡ ̃ͧ̉̽͛ͮͯ̿͐̃̽̌̽̄̀͒̆̚҉̻͇̺̯̦̱͎͈͉͍̪̙̲̙͞ ̶͈̰̤̖̝̗̱̮̦̯ͨ̉̐ͨ̂̅̂̉̌̓̔̂̓͛̍̑́̀͟ ̷̻̜̻͉̖̹͇̩͒̉̅͗͆ͪ̿ͯ͂̅̄̒͗̌́̚ ̨̨̀̓̄̇́͏͚̜̻̤̲̥̗͙̰̼̱͝ ̮͉͎͇͕̮͈̻̠͆̾̎͛ͮ̽̓͒́͡ ̳͓͔̳̯͔̳̠̻͙̘̪̌̍̐̏ͧ̏́́͡ͅ ̴͗̀̈ͮ̂̅̐͊̾ͨ́̽ͥ͂ͭͩ͏̡̞͙̠̖̥̩ ̴̷̪̹̺͖̘̮̝̲͓͇̋͛̑͑ͨͧ̒̽̉͋ͮ͌ͪ͞ ̞͚̬̤̖͖̠͕͔̀̔̾͛͗ͭ̚͢͟͜͞͝ ̶͕͚̺̞̳͓̤̖͖̩͔͚̫̻͓̮̒̒̎̃̔̚ͅ ̡̛̝̞̟̱͙̳̟̺͕̠̦̪͓̋̽̅̀̆ͣ̈͌͌͊̄ͩͨ̏̈̂̄̅́͠ͅ ̖͍̥̪͎̜͍͂̎̆ͦ̍̽̑̿́͋̅ͣ̇̽̆́̎͋ͫ̀ ̵̧̅ͤ̑ͩ͑̑҉̻͍̞͟ͅ ̛͙̰̞͚̜̘̮̙̰̦̎̒ͭ̾͂ͯ͒̈́͐͆̇̂̀͜ ͧ͌ͣ̀͜͜҉̰͕͎̟ ̛ͭ̑̊̏̏̑ͭ͏̨͍̟̙͓͎̦͇̥͕̞͇͉͙͙ͅ ̊͐̀̊̆̽̒̿̅ͪ̈̒͒̒͏̗͖̼̠͇͓̲̩̩̥́͘͟ ̶̤̪͓̠̮̪͚̣̲̔̈́͑̅̅̍ͧ̌͌ͦ ̷̅͊͊ͤ́͏̤̣͎̜̳̳̣ͅ ͙̱̠͈͔̜̙̬̖̳͇͍̺̣̩͕̣͙̼̋ͧ̆̍̎͊̔̕͜ ̶̨͙̞͎͔͚̺͖̩̮͈̰̺͖̹̱̿ͧ̈ͤ̋̐ͭͭ͋̇ͦ̔͒̿ͤ͆́̚ ̸̳̰͔̺͙̜͚̘͕̉̂ͥ̒ͦͪͥ̔̀̕ ̠͕͈̼͍̖̪͉̙͎̗͎̝̈́̄͂̃̒ͭͦͩ̌̋͂̒͟͞ ̧̛̹͚̤̥̤̱̜̹̘̻͔͔̟̭̦͇̯̠̽̈ͭͤ͋ͬ͛ͭͨͫ̆ͦ͂̐̏̕͞ ̸̜͕̪̟̭͕̫̌̌͊̓͂̿͟ ̴̪̠̭̯͇̲̫̝̰͚͎͚̺͓͇̱ͬͭ̽ͩ̈ͨ̈͐͗ͩ͑ͦ̈̕͢͟ ̴̸̡̦͉̺̙͎͔̠̟̲̞͕͓̰̮͇ͨ̈̑ͯ̾͌̚ ̷̡̧̼̥͖̘̣͓͔̲̻͖̯͈̲̗͋ͩͪ͒ͣ̇ͭ̉͆͊ͬ̾ͭͯ ̷̵̹̼̖͉̪̝̣̞̀͊ͯ̽͋͞ ̶̶̧̭̯̜̝͔͙̪͍̖̗͈̳̜͍̇̋̈͋ͫ̔͌͛̂̈́ͯ́͒͟͡͞ ̵̫̠̥̘̘͖͗̇͌̒̒͆ͤ̂̆̎̋ͣ̄̂͝͞6̸̜̟͈͈̥͚̙̦ͩͮ̃̀̀͡4̡̨̡̯̹͕̰̲̞̥̺ͨͮ́̃̾̋̾́͝ ̢͕̠̲̭̫̬̪̦̂͋ͤ̉ͩ̎̄͊̾ͩ̆̅͝ ̵͕͉͇̗̂ͦͪ̂ͪ̀͝ ͧ̌̑̔̍ͦ͏͏͓͕̺͖͔̞̞̪͍͚͍̩ ̅̀͐̋̏͆̊ͭ҉̫̭͔̙̹̀ ̷͛̓̎ͩ͑͐̓̋̑ͫͪ̑ͬͩ҉҉҉̣̯̗͍̣̗̪̞̹̞̙̪̗̤̰̱̱͖ ͛̀̈́̽͋ͧ̾͐͜͏̯͚͉̬̥̬̲ ̷̵̵̨̠̱̥̮̥̮̠̩͎͙̱͍̮͈͚͎̭̱̬ͯ̇ͭ̊ͨ̓ͬ̉ ͉̣̻̭̗̟̤̥̓̃ͫ͆̒̈̈͛̿́͘͜͞ ̷̣͚̟̪̪̭̪̩̪̦̪̫͉̻̈͗ͧ͌̄̐̂̃̀̕ ̷̵̨͇̻̞̘̦̲͈̲̣̱͓̜͔̦̯̫̺͐͊̿͌̄͌͑́̀͢ ̶̛̱͓͖͓͎̟̙͚̥̻̜̬̹̩̮̩̟͈͂̑ͮͬͮ̇͛ͯ̂̅͒͘͠ ̛͔̩̩͔̳͈̭̪̰̦̱ͮ̆̾́̚ ͐ͧ͐͌ͧͭ̂̇̃͆̇̉ͣ̓҉̵̧̛̜̲̩̪̬̞̞̞̙̜̰̟̠̥͓͍̞͡ͅ ̷̡̟̼͎̩͋̉͐̄ͦ̀̊ͥͤ̔̓ͤ̇̑͑ͣͯ͆̚ ̶̛̭͎͔̞̼̩͈̫̰̱͖̬̟̤̲͍͇̐ͩ̑ͦ͌̋ͦ̎̐ͩ͑̈́̎̌ͤ͟͡  ̛̦̱̝͖̲͉̯ͥͧ̒͂̓ͤ̊͗͐ͭͮͬ̑̄͞ͅ ̼̙͕͕͍͔̝̟͖͙̼͍͍̤̥̩͚̓̋͗̀̇̽̃̐̇̄ͥ͌̀͗ͪ͘͞ ̓̊̈̆̑̒̒ͣ̾̎͐̇̐͋̈́҉ )̡̰̬̹͉̬̙̼̤͎͕͎̳͍̲ͣ͑͆̽ͨ͗̏̕͢";False;False;;;;1610547077;;False;{};gj431ej;False;t3_kw8oi3;False;False;t1_gj3kqd8;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj431ej/;1610610373;29;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;"> I kind of wish they actually didn't have a meaning. Let's just say lot of Japanese LN writers/mangaka are not the most creative when it comes to names. - -I kind of like it when all the character's names are basically puns. One of the small reasons that I like *Hitori Bocchi no Marumaru Seikatsu* is that all the characters' names are puns (the titular Hitori Bocchi being ""all alone"", Sotoka Rakita ""comes from abroad"", etc.). - -This sort of stuff happens in Western media too, most egregiously in stuff like Hallmark Christmas movies with character names like [""Chris Massey""](https://www.imdb.com/title/tt12997976/characters/nm0000594).";False;False;;;;1610547106;;False;{};gj433a9;False;t3_kw8oi3;False;False;t1_gj3lx07;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj433a9/;1610610402;4;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;gesundheit;False;False;;;;1610547197;;False;{};gj4391b;False;t3_kw8oi3;False;True;t1_gj409ya;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4391b/;1610610488;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Enemigo_Poderoso;;;[];;;;text;t2_6nwqvcos;False;False;[];;" - - ->Tetsutetsu Tetsutetsu";False;False;;;;1610547198;;False;{};gj4394p;False;t3_kw8oi3;False;False;t1_gj3lx07;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4394p/;1610610490;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Decent_Neighborhood3;;;[];;;;text;t2_7v7x6cw1;False;False;[];;In my case, I forgot the name/s while watchimg.;False;False;;;;1610547275;;False;{};gj43e2c;False;t3_kw8oi3;False;True;t1_gj3igvp;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj43e2c/;1610610566;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sexiroth;;;[];;;;text;t2_56lgy;False;False;[];;Everyone gets nicknames.;False;False;;;;1610547299;;False;{};gj43fjl;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj43fjl/;1610610588;1;True;False;anime;t5_2qh22;;0;[]; -[];;;reconman;;;[];;;;text;t2_a8p2j;False;False;[];;It's even worse when you own a figure of the character and don't remember.;False;False;;;;1610547328;;False;{};gj43hfc;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj43hfc/;1610610616;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MightyAMF;;;[];;;;text;t2_hfhbu;False;False;[];;"Those guinea pig noises are wonderfully accurate. Guinea pigs genuinely tend to squeak like they have a squeaky wheel when they run. -AOTS.";False;False;;;;1610547476;;1610547947.0;{};gj43r0o;False;t3_kwa34e;False;False;t3_kwa34e;/r/anime/comments/kwa34e/pui_pui_molcar_yes_this_is_an_anime/gj43r0o/;1610610758;6;True;False;anime;t5_2qh22;;0;[]; -[];;;A_Talking_Shoe;;;[];;;;text;t2_78rnv;False;False;[];;That’s what my wife and I do, especially in shows with a large cast.;False;False;;;;1610547590;;False;{};gj43yg3;False;t3_kw8oi3;False;True;t1_gj2x0az;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj43yg3/;1610610872;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cheerfulKing;;;[];;;;text;t2_1zih9o1;False;False;[];;It may not be just the language barrier. Even when i watch shows in my native language, i can never keep track of names;False;False;;;;1610547665;;False;{};gj443ba;False;t3_kw8oi3;False;True;t1_gj2xkr6;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj443ba/;1610610943;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hatemakingnames1;;;[];;;;text;t2_13l387;False;False;[];;What's the longest you've known a person in real life without knowing their name?;False;False;;;;1610547778;;False;{};gj44arg;False;t3_kw8oi3;False;True;t1_gj2vi7g;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj44arg/;1610611052;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TacoBellIsChipotle;;;[];;;;text;t2_7l9egrg6;False;False;[];;No it is not normal to forget things over time. I REMEMBER EVERYTHING.;False;False;;;;1610547806;;False;{};gj44cm2;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj44cm2/;1610611080;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ksradrik;;;[];;;;text;t2_1wtl783j;False;False;[];;"Plays a part, but length of the series and the amount of times the names get said matters more imo. - -Its not really a problem to remember the names of major characters in shounens, even if its something large and japanese like Yoruichi Shihouin.";False;False;;;;1610547842;;False;{};gj44eyt;False;t3_kw8oi3;False;False;t1_gj3ihrr;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj44eyt/;1610611115;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;It's Bertholdt;False;False;;;;1610547892;;False;{};gj44ibl;False;t3_kw8oi3;False;False;t1_gj3zffn;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj44ibl/;1610611167;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610548052;;False;{};gj44sop;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj44sop/;1610611327;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;I'm currently watching Durarara and I can only remember 2 names: Celty and Izaya ngl. The rest is too hard to remember;False;False;;;;1610548098;;False;{};gj44vqj;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj44vqj/;1610611375;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BiohazardPanzer;;;[];;;;text;t2_3w4lz4iv;False;False;[];;"Depends, in my case, that's the exact opposite and I can remember some names from months ago and years ago -Now, I can tell that the male protagonist of Hajimete no Gal is named Jun'ichi. I watched this anime in January 2020, why do I remember, I don't know. -It can happen that I don't remember what anime I was watching months ago sometimes and it's really weird. For example, I don't remember what was the top chart anime from last spring. But I sure loved Yesterday wo Utatte from the same season.";False;False;;;;1610548135;;False;{};gj44yc9;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj44yc9/;1610611415;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;"I think part of that is the language barrier. One of the key ways to memorize things for recall is having other easily recallable things to connect it with. Foreign names are going to be harder to remember because we lack a lot of context we can attach it to. - -This is something that works if you have to remember any name, e.g. if you meet someone named Dorothy, you can connect to other people named Dorothy that you know, to The Wizard of Oz, or think about doors, etc. Saying the name out loud or writing it down somewhere also helps because now you have some muscle memory of that word sound. - -Once I started getting interested in the language and seeing the same names over and over again, I find it's relatively easy to remember character names. Common names like Sakura or Haruhi are pretty easy to remember because I know a lot of characters with those names and because I know what the meanings of those names are (""cherry blossoms"" and ""spring day""). Other names I can remember based on their meaning or seeing that name used elsewhere. Like in Wonder Egg Priority, I remembered Ai and Koito because they both have ""love"" related sounds in their name (ai 愛 and 恋 koi) (even though Koito (小糸) isn't written using the koi kanji).";False;False;;;;1610548332;;1610551952.0;{};gj45bf1;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj45bf1/;1610611626;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;I already have a difficult time remembering English names as it is. Japanese names are even harder.;False;False;;;;1610548352;;False;{};gj45cow;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj45cow/;1610611647;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lapiz_lasuli;;;[];;;;text;t2_ammk071;False;False;[];;Not many really care about pacing or whatever. It looks good and was good so people liked it.;False;False;;;;1610548361;;False;{};gj45dae;False;t3_kwaybf;False;False;t1_gj3qgoq;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj45dae/;1610611657;9;True;False;anime;t5_2qh22;;0;[]; -[];;;rocksoliddesu;;;[];;;;text;t2_ymeib;False;False;[];;For me its quite the opposite. I used to remember names at the beginning but now almost all of them forgettable to me;False;False;;;;1610548399;;False;{};gj45fts;False;t3_kw8oi3;False;False;t1_gj32uzv;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj45fts/;1610611695;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sparris_guy;;;[];;;;text;t2_31rs5fui;False;False;[];;It happens to me sometimes too. I can still remember quite well when I think of that anime, usually I try to think of scenes where the characters name are said. But I sometimes forget entirely.;False;False;;;;1610548699;;False;{};gj45znt;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj45znt/;1610612013;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KoDa6562;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/NotMyKoDa;light;text;t2_6qf4nn83;False;False;[];;"I literally only remember one name in anime - LeLouch Vi Britannia -If you ask me to remember the other characters from my favourite shows I can remember their last names, and no more than that. That's only for my absolute favourite anime though. Everything else is a complete blur";False;False;;;;1610548784;;False;{};gj465fw;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj465fw/;1610612103;1;True;False;anime;t5_2qh22;;0;[]; -[];;;freezy127;;;[];;;;text;t2_sv6dt;False;False;[];;Buritto;False;False;;;;1610548858;;False;{};gj46afg;False;t3_kw8oi3;False;False;t1_gj3xugo;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj46afg/;1610612185;11;True;False;anime;t5_2qh22;;0;[]; -[];;;palparepa;;;[];;;;text;t2_3frgx;False;False;[];;It may be that there is an epilogue 1000 years into the future.;False;False;;;;1610548967;;False;{};gj46hvr;False;t3_kw8oi3;False;False;t1_gj3u8ka;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj46hvr/;1610612293;5;True;False;anime;t5_2qh22;;0;[]; -[];;;overdue_earbuds;;;[];;;;text;t2_9qx7wllr;False;False;[];;I'm horrible at remembering names, I've watched entire shows where I don't even memorize the main character for 5 episodes;False;False;;;;1610549340;;False;{};gj477o9;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj477o9/;1610612677;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610549361;;False;{};gj47961;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj47961/;1610612699;1;True;False;anime;t5_2qh22;;0;[]; -[];;;raiden55;;;[];;;;text;t2_66kkt;False;False;[];;I regret the times of Color Wars, it was way simpler for people like us who have issues with names...;False;False;;;;1610549396;;False;{};gj47bn3;False;t3_kw8oi3;False;True;t1_gj2vi7g;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj47bn3/;1610612738;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Throwawayforanime321;;skip7;[];;;dark;text;t2_7djzax4t;False;False;[];;I’ve watched 40~ anime I can remember about 10 names. Most from the same series;False;False;;;;1610549588;;False;{};gj47ows;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj47ows/;1610612933;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Amaran345;;;[];;;;text;t2_5t4q8o8;False;False;[];;Anime characters have short lifespans these days;False;False;;;;1610549737;;False;{};gj47zm7;False;t3_kw8oi3;False;True;t1_gj3u8ka;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj47zm7/;1610613098;3;True;False;anime;t5_2qh22;;0;[]; -[];;;n0nen0ne;;;[];;;;text;t2_7fh2i42t;False;False;[];;Lmao Your name vibes right here;False;False;;;;1610549737;;False;{};gj47zmj;False;t3_kw8oi3;False;True;t1_gj2vi7g;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj47zmj/;1610613098;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GodspeedRen;;;[];;;;text;t2_5f7zx4ik;False;False;[];;Blue turtle, black turtle....;False;False;;;;1610549924;;False;{};gj48d0i;False;t3_kw8oi3;False;False;t1_gj2x0az;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj48d0i/;1610613300;40;True;False;anime;t5_2qh22;;0;[]; -[];;;dribblesnshits;;;[];;;;text;t2_1o8zefuy;False;True;[];;Nailed it!;False;False;;;;1610549963;;False;{};gj48frr;False;t3_kwaybf;False;False;t1_gj3r8x6;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj48frr/;1610613341;10;True;False;anime;t5_2qh22;;0;[]; -[];;;MagnoBurakku;;;[];;;;text;t2_u37ay;False;False;[];;Long time fans have been REALLY waiting a long time for this one. Much like Jobless Reincarnation.;False;False;;;;1610550027;;1610553341.0;{};gj48khr;False;t3_kwaybf;False;False;t3_kwaybf;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj48khr/;1610613412;17;True;False;anime;t5_2qh22;;0;[]; -[];;;GodspeedRen;;;[];;;;text;t2_5f7zx4ik;False;False;[];;Glad I’m not the only who can’t remember Jugemu Jugemu Goko no Surikire Kaijarisuigyo no Suigyomatsu Unraimatsu Furaimatsu Ku Neru Tokoto ni Sumu Tokoro Yaburu koji no Bura Koji Paipo-paipo Paipo no Shuringan Shuringan no Gurindai Gurindai no Ponpokopi no Ponpokona no Chokyuemi no Chosuke.;False;False;;;;1610550064;;False;{};gj48n90;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj48n90/;1610613453;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Quebec120;;;[];;;;text;t2_2iddjr1c;False;False;[];;"Dang, I really feel like I'm the odd one out here. When I first started watching anime, I had problems remembering names. I've been watching seriously for about two years now and I have almost no problems remembering names. - -Maybe it's also because I often consume media that contain a massive amount of characters, like Game of Thrones/Witcher books, Gintama, etc. - -I think it's normal to forget over time. Like, I watched Mirai Nikki 5 years ago, and the only names I remember are Yuno Gasai and Deus Ex Machina, but I'd say that's pretty normal considering I haven't thought much about it in 5 years. I really don't get the ""I forget names after 5 mins"" people.";False;False;;;;1610550947;;False;{};gj4agc0;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4agc0/;1610614430;1;True;False;anime;t5_2qh22;;0;[]; -[];;;StanLay281;;;[];;;;text;t2_x5qvm;False;False;[];;Is Horimiya going to cover the entire manga in one season? Or will it be covered in 2 or more?;False;False;;;;1610551088;;False;{};gj4aqp9;False;t3_kwaybf;False;False;t3_kwaybf;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj4aqp9/;1610614583;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Novelle_1020;;;[];;;;text;t2_3um1vzgu;False;False;[];;I think the way he looks is part of the joke.;False;False;;;;1610551146;;False;{};gj4auy6;False;t3_kw8546;False;True;t1_gj3sz2q;/r/anime/comments/kw8546/good_comedy_andor_romance/gj4auy6/;1610614645;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;All the same, I very much enjoyed the material after chapter 40 as well.;False;False;;;;1610551270;;False;{};gj4b3z5;False;t3_kwaybf;False;False;t1_gj3n765;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj4b3z5/;1610614778;3;True;False;anime;t5_2qh22;;0;[]; -[];;;blindedowl;;;[];;;;text;t2_4dyxveey;False;False;[];;No, this is a light novel title.;False;False;;;;1610551724;;False;{};gj4c1da;False;t3_kw8oi3;False;False;t1_gj3tta4;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4c1da/;1610615281;40;False;False;anime;t5_2qh22;;0;[]; -[];;;YoungRoyalty55;;;[];;;;text;t2_22tgl1g2;False;True;[];;I’m so glad a ton of you guys feel the same way! I’m watching FireForce right now and I have no clue what the names are. NAOZUMI FATURO SABURA NUNZI LOLLL;False;False;;;;1610552032;;False;{};gj4comn;True;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4comn/;1610615628;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cbot12;;;[];;;;text;t2_18iru7dt;False;False;[];;"Perhaps this sounds a little racist, but I noticed I only remember character's names when they have an ""English"" sounding name, like Ann or Erica or Mei or something like that. Other than that, if they are MC there is a 50/50 I know the name. For instance, Tatsuya from The Irregular at Magic High I just \*know.\* However, it is my favorite anime so maybe that is to be expected lol";False;False;;;;1610552138;;False;{};gj4cwk7;False;t3_kw8oi3;False;True;t1_gj2vi7g;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4cwk7/;1610615744;3;True;False;anime;t5_2qh22;;0;[]; -[];;;fredthefishlord;;;[];;;;text;t2_ba5at3b;False;False;[];;The pacing was definitely too fast, but everything done was done very well, so that's probably why. Hopefully after a good reaction they could slow down the pacing now that they're pretty much gurenteed a season 2;False;False;;;;1610552612;;False;{};gj4dvur;False;t3_kwaybf;False;False;t1_gj3qgoq;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj4dvur/;1610616272;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;Ya, especially if the anime was average and like 13 episodes. If it was 24 and average I tend to forget most names except like the mc;False;False;;;;1610552622;;False;{};gj4dwlj;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4dwlj/;1610616283;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jon_Anime;;;[];;;;text;t2_1h5qs34h;False;False;[];;">New Record! ->Most-Watched Debut Romantic Comedy! - - - ... - - -That title is so made up and desperate to meant something... - -You can also say that Gibiate was **""The Most-Watched Action Horror Martial Arts Samurai Fantasy Show""** during the day it debuted and maybe all time... See? That's bullshit. - -Also, it's main demographic is ""Shoujo"" and it's far from being the first at anything in that genre.";False;True;;comment score below threshold;;1610552835;;False;{};gj4eciw;False;t3_kwaybf;False;True;t3_kwaybf;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj4eciw/;1610616523;-18;True;False;anime;t5_2qh22;;0;[]; -[];;;renannmhreddit;;;[];;;;text;t2_n50we;False;False;[];;No, I'm sorry, but that is probably terminal;False;False;;;;1610553210;;False;{};gj4f51q;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4f51q/;1610616954;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;You know some us of like the fast pace. A teenage crush doesn't have to need 20 episodes of build up. It's a freaking teenage crush.;False;False;;;;1610554277;;False;{};gj4hehi;False;t3_kwaybf;False;False;t1_gj3qgoq;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj4hehi/;1610618188;16;True;False;anime;t5_2qh22;;0;[]; -[];;;sakqna;;;[];;;;text;t2_8vlsi68y;False;False;[];;I was about to say this word for word! Unless I invest myself in fandom after/while watching I won't remember names. It's the same irl too, it's kind of worrying;False;False;;;;1610554585;;False;{};gj4i2rm;False;t3_kw8oi3;False;True;t1_gj2vi7g;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4i2rm/;1610618557;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;No;False;False;;;;1610554675;;False;{};gj4i9sz;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4i9sz/;1610618668;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Silver_1_Dont_Judge;;;[];;;;text;t2_6oi4lw4m;False;False;[];;Half the time I don't remember them unless they're used in context. Like obviously I remember the names of most people from SnK or Love is War, but if you ask me somebody's name from Science Fell in Love and I Tried to Prove It then I'll have no idea who the hell you're talking about.;False;False;;;;1610554824;;False;{};gj4ilfz;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4ilfz/;1610618850;1;True;False;anime;t5_2qh22;;0;[]; -[];;;olivedi;;;[];;;;text;t2_141imi3;False;False;[];;Yea, I forget even main character names right after finishing an anime lol. It’s pretty normal.;False;False;;;;1610554831;;False;{};gj4ilzf;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4ilzf/;1610618858;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rusted_muramasa;;;[];;;;text;t2_12r9iq;False;False;[];;You say that as a joke, but let's not forget that we have some series like DanMachi or HenSuki that are referred to pretty much *only* by abbreviations because their full titles are such ungodly mouthfuls that they're not *worth* remembering.;False;False;;;;1610554866;;False;{};gj4ionl;False;t3_kw8oi3;False;False;t1_gj3cvnb;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4ionl/;1610618900;14;True;False;anime;t5_2qh22;;0;[]; -[];;;DetectiveJohnDoe;;;[];;;;text;t2_4fg46cmb;False;False;[];;"You shouldn't feel bad. Even Japanese people forget character names. - -Source: https://youtu.be/a4z4O_NGHlI - -Skip to around 3:40";False;False;;;;1610554897;;False;{};gj4ir45;False;t3_kw8oi3;False;True;t1_gj3avb2;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4ir45/;1610618937;1;True;False;anime;t5_2qh22;;0;[]; -[];;;legwkio2;;;[];;;;text;t2_3winxodf;False;False;[];;if the anime is mediocre, then I forget their names. if the anime is good, then I'll remember their names when I rewatch a clip or something. if the anime is amazing, I'll remember their names for the rest of my life.;False;False;;;;1610555312;;False;{};gj4jnyl;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4jnyl/;1610619449;1;True;False;anime;t5_2qh22;;0;[]; -[];;;needle1;;;[];;;;text;t2_bdfyk;False;False;[];;They’re recorded from actual guinea pigs, which makes it one of the rare times when all the main characters’ CV of an anime are by non-humans!;False;False;;;;1610555389;;False;{};gj4ju0w;False;t3_kwa34e;False;False;t1_gj43r0o;/r/anime/comments/kwa34e/pui_pui_molcar_yes_this_is_an_anime/gj4ju0w/;1610619543;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Cire101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cire101;light;text;t2_oryv2;False;False;[];;It’s my biggest issue with one season shows tbh, names become almost irrelevant to me lol. But if I get really invested I’ll remember lmao;False;False;;;;1610555927;;False;{};gj4l0x4;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4l0x4/;1610620209;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GhostOfLight;;;[];;;;text;t2_go8xe;False;False;[];;I spent half of my time watching Durarara googling people’s name because no one is consistent with whether they use first or last name and a bunch of them have nicknames as well.;False;False;;;;1610556000;;False;{};gj4l6ml;False;t3_kw8oi3;False;True;t1_gj2vi7g;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4l6ml/;1610620300;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nikibugs;;;[];;;;text;t2_ghicd;False;False;[];;"Real life names I can’t remember for the life of me. Near 900 Pokémon? Remember all of them immediately. - -Usually I resort to nicknaming all the characters in a game/show as a fall back, one of my online friends just had to learn all my dumb ones for RWBY like dapper man and umbrella girl lol. - -I used to be better at it like in remembering a majority of the Naruto casts names, but having a harder time with My Hero Academia (first name, last name, hero name, nicknames...). But some-bloody-how remembering everyone’s multiple names in 13 Sentinels: Aegis Rim. Visual novels repeat names a ton more plus you’re more invested in characters, likely why. - -Akudama Drive was great, characters were literally only called by their roles such as Hacker, Doctor, Swindler, etc lol. Skipped the nicknaming phase entirely.";False;False;;;;1610556206;;1610556417.0;{};gj4ln9a;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4ln9a/;1610620563;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nebichan;;;[];;;;text;t2_ld50j;False;False;[];;World Trigger, Log Horizon and definitely Danmachi suffer from this. I thoroughly appreciate anime that sub name tags every now and then.;False;False;;;;1610556305;;False;{};gj4lv4q;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4lv4q/;1610620685;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dare555;;;[];;;;text;t2_6k3zwl8o;False;False;[];;when you watching many animes and they are foreign names yeah ofc. But i don't forget the best chars :D;False;False;;;;1610556879;;False;{};gj4n4pq;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4n4pq/;1610621388;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dare555;;;[];;;;text;t2_6k3zwl8o;False;False;[];;SO DESERVED YAY;False;False;;;;1610556938;;False;{};gj4n9gt;False;t3_kwaybf;False;True;t3_kwaybf;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj4n9gt/;1610621460;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AbidingTruth;;MAL a-amq;[];;https://myanimelist.net/profile/AbidingTruth;dark;text;t2_f2z3p;False;False;[];;You consider Mei an english name?;False;False;;;;1610556976;;False;{};gj4nci3;False;t3_kw8oi3;False;False;t1_gj4cwk7;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4nci3/;1610621506;5;True;False;anime;t5_2qh22;;0;[]; -[];;;stiveooo;;;[];;;;text;t2_9amaa;False;False;[];;Japanese names are easy, for example i read many manhwas and i remember 0 names, even with lookism ( i only remember vasco) and solo leveling (yo jing woo? maybe);False;False;;;;1610557076;;False;{};gj4nkke;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4nkke/;1610621633;1;True;False;anime;t5_2qh22;;0;[]; -[];;;stiveooo;;;[];;;;text;t2_9amaa;False;False;[];;who?;False;False;;;;1610557107;;False;{};gj4nn67;False;t3_kw8oi3;False;True;t1_gj39f89;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4nn67/;1610621673;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SeismicWhales;;;[];;;;text;t2_pj644;False;False;[];;I had no idea who anyone was like 6 episodes into Fate/Zero. I thought Kirisugu Emiya and Kirei Kotomine were the same person for a bit.;False;False;;;;1610557153;;False;{};gj4nqw6;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4nqw6/;1610621731;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AbidingTruth;;MAL a-amq;[];;https://myanimelist.net/profile/AbidingTruth;dark;text;t2_f2z3p;False;False;[];;Hitoribocchi is slightly different since they're not even actual names. Theres a character named Oujosa Mayo, as in oujo-sama yo. Thats not a name, thats just a straight up sentence lol. I think most generally try to use real sounding names if its set in our world, even if the meaning is on the nose;False;False;;;;1610557198;;False;{};gj4nuoq;False;t3_kw8oi3;False;False;t1_gj433a9;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4nuoq/;1610621787;2;True;False;anime;t5_2qh22;;0;[]; -[];;;stiveooo;;;[];;;;text;t2_9amaa;False;False;[];;i only remember naruto/one piece names cause it has been 20 years of constant repeat of the names;False;False;;;;1610557211;;False;{};gj4nvru;False;t3_kw8oi3;False;True;t1_gj2xkr6;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4nvru/;1610621804;1;True;False;anime;t5_2qh22;;0;[]; -[];;;stiveooo;;;[];;;;text;t2_9amaa;False;False;[];;it took me 10 years;False;False;;;;1610557312;;False;{};gj4o400;False;t3_kw8oi3;False;True;t1_gj3gclx;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4o400/;1610621934;2;True;False;anime;t5_2qh22;;0;[]; -[];;;x3tan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Koshiba;light;text;t2_6shxr;False;False;[];;I have this problem with non anime too tbh. Sometimes I sort of remember but forget spelling and I don't want to butcher the names.;False;False;;;;1610557659;;False;{};gj4ovra;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4ovra/;1610622372;1;True;False;anime;t5_2qh22;;0;[]; -[];;;x3tan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Koshiba;light;text;t2_6shxr;False;False;[];;"Yeah, dude is very good looking and clearly appeals to her ""type"" when she sees him outside of school lol. But I think the little brother liking him helps a lot. She's very family oriented and if he helped her little brother and he likes him, she probably figures he's not a bad guy.";False;False;;;;1610557772;;False;{};gj4p4si;False;t3_kwaybf;False;False;t1_gj3r8x6;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj4p4si/;1610622515;19;True;False;anime;t5_2qh22;;0;[]; -[];;;M_Drekinn;;;[];;;;text;t2_ze5k7ow;False;False;[];;Same thing happens to me also in real life, so yes;False;False;;;;1610558401;;False;{};gj4qj42;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4qj42/;1610623311;1;True;False;anime;t5_2qh22;;0;[]; -[];;;homie_down;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/sodumblol;light;text;t2_zsyc0;False;False;[];;I think it's pretty common. Especially for most of us where Japanese isn't our native language, the names are so different from what normal names are for us that they aren't particularly easy to remember. On top of that there's the fact that sometimes the same character is referred to by their first name and others by last name makes it all the more difficult to remember.;False;False;;;;1610558584;;False;{};gj4qxoa;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4qxoa/;1610623541;1;True;False;anime;t5_2qh22;;0;[]; -[];;;elmatuga;;;[];;;;text;t2_3vtjlv30;False;False;[];;I have stopped trying to remember the names of characters a long time ago;False;False;;;;1610559004;;False;{};gj4rvda;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4rvda/;1610624077;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThanosChrist5;;;[];;;;text;t2_70gf4spp;False;False;[];;Oh god, you're much better than me. While watching one of the most well-known anime (MHA), it took me about one week, or 10 episodes to remeber the names of the main characters (I had special trouble with Midoriya, Bakugo, Uraraka and Shigaraki). I think it's pretty normal to forget characters' names, especially when the whole cast is forgettable as a whole.;False;False;;;;1610559548;;False;{};gj4t3b6;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4t3b6/;1610624785;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The4thSniper;;;[];;;;text;t2_6zbwh;False;False;[];;"In MHA's case it's kind of unfortunate that a lot of the character names are lost on western audiences because in Japanese they're usually packed with hidden meanings relating to the character's Quirk or characteristics. Deku's surname is Midoriya - featuring 'midori', or green, like his hair and outfit; Bakugo has 'baku', or bomb; Shoto is literally burning (shō) and freezing (to). I guess if there was ever a 4Kids dub of MHA they would have tried to directly translate the names to preserve the references like having Deku's name be Danny Green or something.";False;False;;;;1610560056;;False;{};gj4ua92;False;t3_kw8oi3;False;False;t1_gj3kcpb;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4ua92/;1610625481;4;False;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;Unless you are watching a long running anime, it's totally fine.;False;False;;;;1610560077;;False;{};gj4ubzf;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4ubzf/;1610625509;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RIP_Hopscotch;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RiPHopscotch/animelist;light;text;t2_qblus;False;False;[];;Let's see there's Rimuru, Milim, Gabiru, Gobta easy so far... the goblin village chief... the King of the Mountain kingdom (Gazeff? Or is that an Overlord character?)... the wolf with the star on its head... various horned monsters with tits (some without)... some human adventurers... various annoying children... that's it right? Easy. No idea why how you could possibly struggle.;False;False;;;;1610560279;;False;{};gj4usko;False;t3_kw8oi3;False;False;t1_gj37abe;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4usko/;1610625782;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ChillFactory;;;[];;;;text;t2_bjz66;False;False;[];;Absolutely happens except certain exceptions. I didn't forget Konosuba's characters while watching because they were memorable characters and they literally use Kazuma's name for a joke.;False;False;;;;1610560413;;False;{};gj4v3j8;False;t3_kw8oi3;False;True;t1_gj2vi7g;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4v3j8/;1610625962;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Jealous_one;;;[];;;;text;t2_8xxa4du9;False;False;[];;Except main characters, other are forgettable.. Unless they're unique on other way..;False;False;;;;1610560639;;False;{};gj4vmlj;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4vmlj/;1610626269;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AttemptFailed;;;[];;;;text;t2_48sbjdpk;False;False;[];;Hi my name is chika chika slim shady;False;False;;;;1610561140;;False;{};gj4wri3;False;t3_kw8oi3;False;False;t1_gj431ej;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4wri3/;1610626948;12;True;False;anime;t5_2qh22;;0;[];True -[];;;Butt_Chug_Brother;;;[];;;;text;t2_69wfaxjk;False;False;[];;"I might actually do that. I've been meaning to make YouTube vids anyway. - -What should I include though? Honorifics and names for one, but I'm not sure what else I would include, off the top of my head.";False;False;;;;1610561720;;False;{};gj4y2hz;False;t3_kw8oi3;False;False;t1_gj3y33c;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4y2hz/;1610627741;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PureFlames;;;[];;;;text;t2_136imh;False;False;[];;No;False;False;;;;1610561912;;False;{};gj4yi69;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4yi69/;1610628072;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Butt_Chug_Brother;;;[];;;;text;t2_69wfaxjk;False;False;[];;Virgina is my favorite redeemed villain, except when he acts dimikey.;False;False;;;;1610562029;;False;{};gj4yrgh;False;t3_kw8oi3;False;True;t1_gj3i3av;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4yrgh/;1610628238;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Butt_Chug_Brother;;;[];;;;text;t2_69wfaxjk;False;False;[];;To me it really just depends on how often the character shows up, and how much I like them, and how they're presented. I can name just about every character in Naruto, but fuck if I can remember more than like two names in some other series.;False;False;;;;1610562162;;False;{};gj4z2mu;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj4z2mu/;1610628443;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EphesosX;;null a-amq;[];;;dark;text;t2_x7jmq;False;False;[];;I remember the sugar guy's name is Sato because sato is the Japanese word for sugar. Most of the others I forget though.;False;False;;;;1610562912;;False;{};gj50rlx;False;t3_kw8oi3;False;False;t1_gj3ah9r;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj50rlx/;1610629543;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Rabsram_eater;;;[];;;;text;t2_8gp4n;False;False;[];;hi where did you read it?? Or if you know how I can read it online thx!;False;False;;;;1610562946;;False;{};gj50ug3;False;t3_kwaybf;False;True;t1_gj3jxe9;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj50ug3/;1610629595;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610562973;;False;{};gj50wmz;False;t3_kwaybf;False;True;t1_gj50ug3;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj50wmz/;1610629633;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi ChimChim09, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610562973;moderator;False;{};gj50wow;False;t3_kwaybf;False;True;t1_gj50wmz;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj50wow/;1610629634;-1;False;False;anime;t5_2qh22;;0;[]; -[];;;NaethanC;;;[];;;;text;t2_15o19y;False;False;[];;Unless I absolutely love an anime and have watched it multiple times, I forget most of the characters names.;False;False;;;;1610563219;;False;{};gj51gld;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj51gld/;1610629994;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"Very common, mainly because their names in an entirely different language. - -In English mediums, I rarely forget a characters name. That's why I always give anime characters nicknames so I can remember them.";False;False;;;;1610563310;;False;{};gj51ocr;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj51ocr/;1610630133;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NaethanC;;;[];;;;text;t2_15o19y;False;False;[];;Yeah I can remember western names but I forget most Japanese names as soon as I hear them. I'm currently watching GATE and half the character's names are normal and half are Japanese. I remember most of the non-Japanese names but I can only remember like 2 of the Japanese names.;False;False;;;;1610563317;;False;{};gj51p07;False;t3_kw8oi3;False;True;t1_gj2xkr6;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj51p07/;1610630144;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;I'm positive it's the language barrier. Because I rarely forget english names.;False;False;;;;1610563388;;False;{};gj51urg;False;t3_kw8oi3;False;False;t1_gj2xkr6;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj51urg/;1610630244;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"I usually just give them a easy nickname to remember; usually a play off their name";False;False;;;;1610563418;;False;{};gj51x59;False;t3_kw8oi3;False;True;t1_gj2x0az;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj51x59/;1610630285;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"AOT names are very western sounding; makes since considering it takes place in a german setting IIRC. - -Western names are way easiest to remember. Basically a cultural and language barrier";False;False;;;;1610563473;;False;{};gj521np;False;t3_kw8oi3;False;False;t1_gj3qs7t;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj521np/;1610630364;6;True;False;anime;t5_2qh22;;0;[]; -[];;;KrillinDBZ363;;;[];;;;text;t2_14wqfv;False;False;[];;"Oh Bleach was the worst for me - -I knew the names of the main characters plus a couple others but I could not for the life of me remember most of the Shinigami’s names.";False;False;;;;1610563927;;False;{};gj5330m;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5330m/;1610631065;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xzpyth;;;[];;;;text;t2_6o299dme;False;False;[];;Writing down the characters with a pen and basic characteristics help a lot but it's time consuming... I think you forget the names because japanese is not your native language and names doesn't sound like names to you but rather words you don't understand;False;False;;;;1610564047;;False;{};gj53ckm;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj53ckm/;1610631255;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Toasted_But_T_is_R;;;[];;;;text;t2_8yiddqpe;False;False;[];;Yes if you watch a ton of anime then its normal coz the names are different and there are a ton of names.;False;False;;;;1610564207;;False;{};gj53pwf;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj53pwf/;1610631562;1;True;False;anime;t5_2qh22;;0;[]; -[];;;purduepetenightmare;;;[];;;;text;t2_5l6zmrgd;False;False;[];;Yeah if the Name is in Japanese there is almost no chance of me remembering it.;False;False;;;;1610564219;;False;{};gj53quz;False;t3_kw8oi3;False;True;t1_gj3cvnb;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj53quz/;1610631590;2;True;False;anime;t5_2qh22;;0;[]; -[];;;purduepetenightmare;;;[];;;;text;t2_5l6zmrgd;False;False;[];;I really wish I made a MAL when I first started watching anime. So many shows that I just have a vague impression.;False;False;;;;1610564295;;False;{};gj53x48;False;t3_kw8oi3;False;False;t1_gj3i13u;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj53x48/;1610631711;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Melbuf;;;[];;;;text;t2_j03jl;False;False;[];;rak has truly ascended;False;False;;;;1610564523;;False;{};gj54fu0;False;t3_kw8oi3;False;False;t1_gj48d0i;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj54fu0/;1610632049;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Meru-sensei;;;[];;;;text;t2_9rtlid2l;False;False;[];;And now there's even a new series of naruto where he's son is now here more characters hahaha;False;False;;;;1610564811;;False;{};gj5533h;False;t3_kw8oi3;False;True;t1_gj4o400;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5533h/;1610632485;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;It will almost certainly be a one and done thing imo.;False;False;;;;1610564836;;False;{};gj5554j;False;t3_kwaybf;False;False;t1_gj4aqp9;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj5554j/;1610632525;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Granito_Rey;;;[];;;;text;t2_ag4o8;False;False;[];;I watch a lot of anime, and a character/story needs to be pretty interesting or unique for me to remember their names beyond a basic descriptor.;False;False;;;;1610565053;;False;{};gj55mnr;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj55mnr/;1610632846;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EmoEevee21;;;[];;;;text;t2_69edwbgs;False;False;[];;I literally forget the character’s name 2 seconds after I just learned it;False;False;;;;1610565136;;False;{};gj55t6o;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj55t6o/;1610632970;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thegamer20001;;;[];;;;text;t2_4ha4hoy6;False;False;[];;"> I think the biggest problem for me was that the names lacked meaning, not that they look weird or can't be pronounced - -I think you're totally right. I've been reading some Chinese novels lately and this is something I've seen over there too (I know more Chinese than Japanese which is why I didn't think of this earlier). - -For example, if someone can control wind they'll probably have the last name ""Feng"" (风), or in the case of lightning the last name of ""Lei"" (雷). - -Similarly, if a person can be described as ""extremely passionate"" or ""short tempered"" then having the last name of ""Huo"" (火, meaning fire) isn't uncommon. Same with if a character can be described as ""cold"" or ""having a smile that keeps others a thousand miles away"" then ""Bing"" (冰, meaning ice) is a very possible last name. - -Chinese names, especially in novels, are made to sound a bit poetic so sometimes just reading a character's name can give you a lot of information.";False;False;;;;1610565221;;False;{};gj56086;False;t3_kw8oi3;False;True;t1_gj3chde;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj56086/;1610633110;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ijiolokae;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/corvoatano;light;text;t2_15k31w;False;False;[];;more hilarious when you up to date with a shows source material and google character name only for google to auto finish with Death or Die and you know very well that character is still alive.;False;False;;;;1610565446;;False;{};gj56iti;False;t3_kw8oi3;False;False;t1_gj3saqo;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj56iti/;1610633461;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Lfaruqui;;;[];;;;text;t2_5xs806u;False;False;[];;Atleast for me, it's hard to remember names that are in another language that aren't mine when there are a lot of them.;False;False;;;;1610565452;;False;{};gj56jcs;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj56jcs/;1610633471;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nasrou98;;;[];;;;text;t2_2zn2dp4p;False;False;[];;Most new show are alike with the same generic characters and personality;False;False;;;;1610565516;;False;{};gj56oi1;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj56oi1/;1610633565;1;True;False;anime;t5_2qh22;;0;[]; -[];;;stiveooo;;;[];;;;text;t2_9amaa;False;False;[];;its easier since there is only 1/4 new characters vs in naruto;False;False;;;;1610565632;;False;{};gj56xwh;False;t3_kw8oi3;False;True;t1_gj5533h;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj56xwh/;1610633745;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Meru-sensei;;;[];;;;text;t2_9rtlid2l;False;False;[];;Have you tried one piece and bleach they have TONS of characrers as well 😂;False;False;;;;1610565684;;False;{};gj5729z;False;t3_kw8oi3;False;True;t1_gj56xwh;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5729z/;1610633832;1;True;False;anime;t5_2qh22;;0;[]; -[];;;stiveooo;;;[];;;;text;t2_9amaa;False;False;[];;its easy cause you get 15 years to learn them;False;False;;;;1610565816;;False;{};gj57d2x;False;t3_kw8oi3;False;True;t1_gj5729z;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj57d2x/;1610634037;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;yes;False;False;;;;1610566345;;False;{};gj58l1b;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj58l1b/;1610634918;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vorthod;;;[];;;;text;t2_zqilb;False;False;[];;"Depends on the show. Some shows have characters with really unique and memorable names. I can easily list off the names of all the main characters and a bunch of side characters from shows like Overlord or Reincarnated as a Slime, but if you ask me to remember either the first or last name of any character of the generic romance/slice-of-life show that I watched last week and really did enjoy, I would just give you a blank stare. - -This literally happened with a visual novel I recently completed called Riddle Joker. I powered through all routes in half a week, got all the achievements, and was discussing it with people in the VN subreddit for days after it came out and I still have trouble remembering the main character's name.";False;False;;;;1610566563;;False;{};gj592xs;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj592xs/;1610635260;1;True;False;anime;t5_2qh22;;0;[]; -[];;;osoichan;;MAL;[];;http://myanimelist.net/profile/osoichan;dark;text;t2_qsj0n;False;False;[];;Yeah, I remember back when I started I had to pause to read Japanese names and couldn't remember them at all. The more anime i watched the easier it got to remember and recognise;False;False;;;;1610566874;;False;{};gj59rus;False;t3_kw8oi3;False;False;t1_gj3r564;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj59rus/;1610635753;5;True;False;anime;t5_2qh22;;0;[]; -[];;;LooneyNoons;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Ley0n;light;text;t2_vd54k;False;False;[];;"I don't even know them while actively watching an episode. I mean, when the subtitle reads ""Hanako"" I know which character is meant in that second. But ask me 5 seconds later who Hanako is. I won't know.";False;False;;;;1610567767;;False;{};gj5bsry;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5bsry/;1610637223;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mike9184;;;[];;;;text;t2_ozwt8;False;False;[];;Are you aware that the rom-com genre lives outside of anime as well and it's really fucking HUGE? Or is it a lack of reading comprehension on your part?;False;False;;;;1610568282;;False;{};gj5cywg;False;t3_kwaybf;False;False;t1_gj4eciw;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj5cywg/;1610638045;8;True;False;anime;t5_2qh22;;0;[]; -[];;;heastduhuankind;;;[];;;;text;t2_7q2it6tb;False;False;[];;Well most of the names are German so it's also understandable if people have trouble with them.;False;False;;;;1610568848;;False;{};gj5e7om;False;t3_kw8oi3;False;True;t1_gj3qs7t;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5e7om/;1610638901;2;True;False;anime;t5_2qh22;;0;[]; -[];;;blamethemeta;;MAL;[];;https://myanimelist.net/profile/Blamemeta;dark;text;t2_2yklyxk;False;False;[];;Like the Desu anime with red and green eyed woman. How the fuck do you find that?;False;False;;;;1610568940;;False;{};gj5ef4z;False;t3_kw8oi3;False;False;t1_gj53x48;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5ef4z/;1610639049;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ano1batman;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Raze_;light;text;t2_alf9w;False;False;[];;~3 years.;False;False;;;;1610568998;;False;{};gj5ejp8;False;t3_kw8oi3;False;False;t1_gj44arg;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5ejp8/;1610639136;6;True;False;anime;t5_2qh22;;0;[]; -[];;;foggybass;;;[];;;;text;t2_pvxjj;False;False;[];;Totally normal. Just binged My Hero Academia and DANG that's a lot of names. I have a hard time with names in English too, so it's not just because the names are Japanese.;False;False;;;;1610569010;;False;{};gj5ekmd;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5ekmd/;1610639154;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Meru-sensei;;;[];;;;text;t2_9rtlid2l;False;False;[];;That's 15 years 0f your life 😂 any recommendations for a magic and shounen anime?;False;False;;;;1610569786;;False;{};gj5gawb;False;t3_kw8oi3;False;True;t1_gj57d2x;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5gawb/;1610640374;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yor_Repres;;;[];;;;text;t2_k27lg1p;False;False;[];;It's not that weird or you and I are in this together. I've been almost 10 of serious watching and I'm still terrible.;False;False;;;;1610569882;;False;{};gj5gihz;False;t3_kw8oi3;False;True;t1_gj33v0h;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5gihz/;1610640526;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MomoIsBestLoli;;;[];;;;text;t2_48jhz5mm;False;False;[];;Bruh I forget the name of the anime, the amount of times I’ve gotten 3-4 episodes in and been like “fuck I’ve seen this before” is Unfathomable;False;False;;;;1610570274;;False;{};gj5hdxg;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5hdxg/;1610641143;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zeroryoko1974;;AP;[];;http://www.anime-planet.com/users/zeroryoko1974/anime/watching?i;dark;text;t2_j0nr2;False;False;[];;Weird, its a text to speech reading of the ANN article;False;False;;;;1610570388;;False;{};gj5hna7;False;t3_kwaybf;False;True;t3_kwaybf;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj5hna7/;1610641320;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Inexite;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Inexite;light;text;t2_w1i61;False;False;[];;"I reckon you're referring to Rozen Maiden, but you can Google ""desu anime character"" and it comes up lol.";False;False;;;;1610570511;;False;{};gj5hxb3;False;t3_kw8oi3;False;False;t1_gj5ef4z;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5hxb3/;1610641512;8;True;False;anime;t5_2qh22;;0;[]; -[];;;1darklight1;;;[];;;;text;t2_prrvn;False;False;[];;Try reading the Silmarillion lol. Fin-this, fin-that, it feels like everyone has a Fin somewhere in their name (unless its Finarfin, or Fingolfin, who both get two) and you'll never keep anyone's name or history straight without a chart. And the men are just as bad as the elves with names, they don't have any fins but they do have very similiar names to each other if they're related (Turin and Hurin).;False;False;;;;1610570824;;False;{};gj5imk1;False;t3_kw8oi3;False;True;t1_gj3hkpr;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5imk1/;1610642019;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aigiswave;;;[];;;;text;t2_96mxwoda;False;False;[];;The hotter lesbian one is actually bi as shown when shion flirts with kogami.;False;False;;;;1610570968;;False;{};gj5iy7h;False;t3_kw8oi3;False;True;t1_gj3n36q;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5iy7h/;1610642251;2;True;False;anime;t5_2qh22;;0;[]; -[];;;stiveooo;;;[];;;;text;t2_9amaa;False;False;[];;mushoku tensei;False;False;;;;1610571287;;False;{};gj5jnwt;False;t3_kw8oi3;False;True;t1_gj5gawb;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5jnwt/;1610642772;1;True;False;anime;t5_2qh22;;0;[]; -[];;;1darklight1;;;[];;;;text;t2_prrvn;False;False;[];;Honestly the MC is the one I'm least likely to remember, at least out of the main cast. Unless they have their name in the title;False;False;;;;1610571789;;False;{};gj5ks8w;False;t3_kw8oi3;False;False;t1_gj3f0xh;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5ks8w/;1610643528;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Charming-Loquat3702;;;[];;;;text;t2_693xqw5a;False;False;[];;"-The difference in use of first/last name. -- The fact that Japanese language basically works without pronouns --Watashi/Boku/Ore a guide to the Japanese me -- Levels of politeness. Male and female language -- Japanese school system 101 for Anime fans. (Ok, this might be slightly hard to do) -- Japanese religion. Difference between Shinto and Budism -- Japanese Mythology, or why is there an ameterasu in every second anime -- Japanese history: Sengoku-> Edo -> Meji -> Taisho -> Showa. What was significant about Japanese eras.";False;False;;;;1610571965;;False;{};gj5l66p;False;t3_kw8oi3;False;False;t1_gj4y2hz;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5l66p/;1610643794;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BenDTU;;;[];;;;text;t2_mbfrs;False;False;[];;I’ve read 23 volumes of My Hero Academia and I still couldn’t tell you the non-superhero names of most characters.;False;False;;;;1610572150;;False;{};gj5lkr4;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5lkr4/;1610644073;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerz905;;;[];;;;text;t2_1yglu2m7;False;False;[];;"I forget the names of animes I watched. - -Wanted to do a MAL list so I have everything on paper, but for the life of me I just don't remember the names at all. Watched about 30 series and 10 or so movies.";False;False;;;;1610573946;;False;{};gj5ps4f;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5ps4f/;1610647054;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rabsram_eater;;;[];;;;text;t2_8gp4n;False;False;[];;do u know a legal online way I can read the manga??;False;False;;;;1610574675;;False;{};gj5rhkj;False;t3_kwaybf;False;True;t1_gj3ht6r;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj5rhkj/;1610648341;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TichoSlicer;;;[];;;;text;t2_14tpdf;False;False;[];;"I'm really bad with japanese names, so i never remember almost any names while watching anime... ;/";False;False;;;;1610574701;;False;{};gj5rjpe;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5rjpe/;1610648390;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;I have this problem with Japanese names. If the names get localized to normal first names of my country or they are like that by default, I can remember them.;False;False;;;;1610575181;;False;{};gj5sniq;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5sniq/;1610649204;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SungBlue;;;[];;;;text;t2_4t5s3f;False;False;[];;It's the exact opposite for me. I usedn't to have trouble remembering character's names, even years later, but now I hardly remember any.;False;False;;;;1610575204;;False;{};gj5spds;False;t3_kw8oi3;False;True;t1_gj32uzv;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5spds/;1610649249;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blitzbom;;;[];;;;text;t2_6h9w1;False;False;[];;Same for me, it actually helps if I watch it dubbed. Maybe hearing someone say it in my own language helps it to stick cause it stands out more than if it's mixed in with full Japanese.;False;False;;;;1610575299;;False;{};gj5sx4d;False;t3_kw8oi3;False;False;t1_gj2vi7g;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5sx4d/;1610649400;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CorbenikTheRebirth;;;[];;;;text;t2_g98wg;False;False;[];;Okay damn, I'm sold. This is adorable.;False;False;;;;1610575333;;False;{};gj5szvp;False;t3_kwa34e;False;True;t3_kwa34e;/r/anime/comments/kwa34e/pui_pui_molcar_yes_this_is_an_anime/gj5szvp/;1610649454;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Responsible-Chair-17;;;[];;;;text;t2_8fl2trz7;False;False;[];;Yes but normally one would remember the names of main characters/characters that impacted them in some way;False;False;;;;1610575440;;False;{};gj5t8mc;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5t8mc/;1610649619;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mytre-;;;[];;;;text;t2_ejwqm;False;False;[];;A change of pace ? I am kind of bored of romantic comedies that take a whole season for two characters to finally get together or even start to be honest with their feelings. Which is why I loved horimiya, it was the first of many manga I read that I didnt have to wait for the series to finish to get some development in the romantic side.;False;False;;;;1610575459;;False;{};gj5ta6v;False;t3_kwaybf;False;False;t1_gj3qgoq;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj5ta6v/;1610649650;7;True;False;anime;t5_2qh22;;0;[]; -[];;;pigeondude_;;;[];;;;text;t2_4ujxvfxv;False;False;[];;yeah. i only remember the names of my favorite characters of an anime. ill never ever forget Kazuma.;False;False;;;;1610576159;;False;{};gj5uulz;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5uulz/;1610650728;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jetlightbeam;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;http://www.anime-planet.com/forum/members/;light;text;t2_16fk5q;False;False;[];;I'm 24, something about it just freaks me out. It took me like 3 years to watch the first season becuase when I was a kid I went to a human bodies exhibit, where they put real body on display without skin it honestly traumatized me and so the colossol titan was hard to watch. I think the monkey titan envokes the original movie IT which I saw at the ripe age of 5 so that's probably why, his face is nightmare fuel to me.;False;False;;;;1610576429;;False;{};gj5vg00;False;t3_kw8oi3;False;True;t1_gj3rk8y;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5vg00/;1610651136;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Deathclaw86;;;[];;;;text;t2_8gwjl1yc;False;False;[];;"sometimes when i forget a name in an anime it can be down right silly. - -i still cant understand how i forgot the name ""Ryuk""";False;False;;;;1610576656;;False;{};gj5vxu4;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5vxu4/;1610651484;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NegaLimbo;;;[];;;;text;t2_5g5ph0ab;False;False;[];;Yes. In fact, there's a clip of an unknown anime that I just can't remember no matter how much I try. It was removed from videos years ago, and I've never been able to find it ever since. I'm so upset that I can't find it anywhere because I can't remember what it was!;False;False;;;;1610576956;;False;{};gj5wloo;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5wloo/;1610651939;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Oppai-no-uta;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_khf3h;False;False;[];;Masterful OST, probably the best of this season for sure;False;False;;;;1610577452;;False;{};gj5xoc9;False;t3_kwa34e;False;True;t3_kwa34e;/r/anime/comments/kwa34e/pui_pui_molcar_yes_this_is_an_anime/gj5xoc9/;1610652687;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wrightzlol;;;[];;;;text;t2_1b3hug6;False;False;[];;Blue-hair girl almost universally loses so you can write them off the second they are introduced and spare yourself the exercise of trying to commit them to memory.;False;False;;;;1610577633;;False;{};gj5y2go;False;t3_kw8oi3;False;True;t1_gj2x0az;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5y2go/;1610652955;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pulioohippo;;;[];;;;text;t2_6441wrlb;False;False;[];;Just finished tsuki ga kirei and I actually really liked it. It gave a good ending too. Overall great show imo;False;False;;;;1610577649;;False;{};gj5y3q6;True;t3_kwavoc;False;True;t1_gj39j38;/r/anime/comments/kwavoc/ive_been_looking_for_an_anime_similar_to_tonikawa/gj5y3q6/;1610652982;1;True;False;anime;t5_2qh22;;0;[]; -[];;;qeheeen;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/Pale_Grey;dark;text;t2_2wv6bldk;False;False;[];;Japanese names are super hard to remember even in the middle of a show, it's not like AOT, DBZ, Yu yu hakusho, or majority of pokemon where they have unique names and can recall the entire cast that you never forget even if years pass without watching it;False;False;;;;1610577693;;False;{};gj5y74z;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5y74z/;1610653050;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bringbackdigimon;;;[];;;;text;t2_i5d2hu;False;False;[];;"Reiner -Bertholt -Gabi -Falco -Zeke -Willy -Eren -Mikasa -Armin -Galliard - -That’s already 10 characters made up of season 4 characters you allegedly know as well as Mikasa and armin where if you paid attention to the show you would remember so yeah, if you can apparently name season 4 characters but can’t manage to get to being able to name 10 characters total you just don’t really pay attention to the anime";False;False;;;;1610577782;;False;{};gj5ye99;False;t3_kw8oi3;False;True;t1_gj3y3fs;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5ye99/;1610653189;0;True;False;anime;t5_2qh22;;0;[]; -[];;;archy91;;;[];;;;text;t2_8ar73u7;False;False;[];;I hardly remember the names when I am watching the anime Lmfaooo.;False;False;;;;1610578050;;False;{};gj5yyso;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj5yyso/;1610653615;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;">And in a span of one episode, they've already been hanging out a bunch without really seeing any reason for it - -That's how relationships work - -People either like each other or they don't - -And they know it from the get go - -If one person is not into other there's nothing that other person can do to change that no matter how many ""points"" he/she collects";False;False;;;;1610578093;;False;{};gj5z22f;False;t3_kwaybf;False;False;t1_gj3qgoq;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj5z22f/;1610653685;5;True;False;anime;t5_2qh22;;0;[]; -[];;;melindypants;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/melindypants ;light;text;t2_bb5qq9o;False;False;[];;This was me 100% for Durarara! There were so many names to remember.;False;False;;;;1610579692;;False;{};gj62ecf;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj62ecf/;1610656066;1;True;False;anime;t5_2qh22;;0;[]; -[];;;andreasdagen;;;[];;;;text;t2_z8yy8;False;False;[];;green naruto;False;False;;;;1610580335;;False;{};gj63q1z;False;t3_kw8oi3;False;True;t1_gj2x0az;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj63q1z/;1610657040;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hanede;;;[];;;;text;t2_tmljc;False;False;[];;Google is your friend;False;False;;;;1610580467;;False;{};gj63zu8;False;t3_kwaybf;False;True;t1_gj50ug3;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj63zu8/;1610657230;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Holly_galaxy;;;[];;;;text;t2_773epar9;False;False;[];;Yes;False;False;;;;1610580508;;False;{};gj642uc;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj642uc/;1610657293;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hanede;;;[];;;;text;t2_tmljc;False;False;[];;I wouldn't be so sure, multiple seasons are becoming much more common nowadays. Just look at the currently airing shows, half of them are continuations.;False;False;;;;1610580535;;False;{};gj644wg;False;t3_kwaybf;False;False;t1_gj5554j;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj644wg/;1610657332;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;"No. Especially not if the anime was memorable. -I bet no one who ever saw it will forget the name of the heroine from Darling in the Franxx. -[**FUCKING EVER**](#smugshinobu)";False;False;;;;1610580844;;False;{};gj64rfd;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj64rfd/;1610657783;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Euroversett;;;[];;;;text;t2_6nx21o4f;False;False;[];;Is it normal to not remember the names while you watch the anime? Because that's what happens with me.;False;False;;;;1610581156;;False;{};gj65e1a;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj65e1a/;1610658204;1;True;False;anime;t5_2qh22;;0;[]; -[];;;futureButt;;;[];;;;text;t2_i92favw;False;False;[];;Thank God it’s not just me;False;False;;;;1610584891;;False;{};gj6ct0i;False;t3_kw8oi3;False;True;t1_gj2vi7g;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj6ct0i/;1610663329;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vital_Blinks;;;[];;;;text;t2_79acq3hi;False;False;[];;I don’t know why but I can only assume it’s because I read a ton of manga from everywhere so I forget a lot of names. I also remembered Road;False;False;;;;1610586939;;False;{};gj6gs7p;False;t3_kw8oi3;False;True;t1_gj3q04j;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj6gs7p/;1610666062;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shirasho;;MAL;[];;http://myanimelist.net/animelist/Shirasho;dark;text;t2_10md5i;False;False;[];;Rightfully so. The source is fantastic, and the pilot did justice to the source.;False;False;;;;1610587432;;False;{};gj6hr01;False;t3_kwaybf;False;True;t3_kwaybf;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj6hr01/;1610666701;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thenacho1;;MAL;[];;http://myanimelist.net/animelist/thenacho1;dark;text;t2_7owes;False;False;[];;"It's not super intuitive, but just like in English, Japanese first names and last names have a pretty different ""feel"" to them, that you'll be able to pick up on once you've watched enough anime. By the time that I actually decided to start learning Japanese I was able to tell the difference between Japanese first and last names, as well as male and female names, pretty reliably.";False;False;;;;1610587512;;False;{};gj6hwhq;False;t3_kw8oi3;False;True;t1_gj36lav;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj6hwhq/;1610666804;3;True;False;anime;t5_2qh22;;0;[]; -[];;;thenacho1;;MAL;[];;http://myanimelist.net/animelist/thenacho1;dark;text;t2_7owes;False;False;[];;It's Bertholdt, but Berutoruto is the phonetic transcription of the Japanese way of saying that name.;False;False;;;;1610587675;;False;{};gj6i7pv;False;t3_kw8oi3;False;False;t1_gj3zffn;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj6i7pv/;1610667015;5;True;False;anime;t5_2qh22;;0;[]; -[];;;mario61752;;;[];;;;text;t2_10d49q;False;False;[];;Dead 1, dead 2, dead 3...;False;False;;;;1610587774;;False;{};gj6iepr;False;t3_kw8oi3;False;False;t1_gj2x0az;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj6iepr/;1610667139;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thenacho1;;MAL;[];;http://myanimelist.net/animelist/thenacho1;dark;text;t2_7owes;False;False;[];;Yabura*kouji, not Yaburukouji. Smh. It's like you're not even a real fan of Jugemu Jugemu Gokou no Surikire Kaijari Suigyo no Suigyomatsu Unraimatsu Fuuraimatsu Kuunerutokoro ni Sumutokoro Yaburakouji no Burakouji Paipo Paipo Paipo no Shuringan Shuringan no Guurindai Guurindai no Ponpokopii no Ponpokonaa no Choukyuumei no Chousuke's Bizarre Adventure.;False;False;;;;1610587873;;False;{};gj6iljk;False;t3_kw8oi3;False;True;t1_gj48n90;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj6iljk/;1610667256;2;True;False;anime;t5_2qh22;;0;[]; -[];;;garthvater111;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Garthvater;light;text;t2_bz434;False;False;[];;"> I am 13 and want a older man to abuse me. why I don’t know but seek it god is hopeless to me - -[](#slowgrin)";False;False;;;;1610587942;;False;{};gj6iq9l;False;t3_kw8oi3;False;True;t1_gj431ej;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj6iq9l/;1610667338;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thenacho1;;MAL;[];;http://myanimelist.net/animelist/thenacho1;dark;text;t2_7owes;False;False;[];;Yeah, generally speaking when you're not super familiar with a language you're less likely to remember names from it.;False;False;;;;1610587964;;False;{};gj6irqs;False;t3_kw8oi3;False;True;t1_gj3okif;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj6irqs/;1610667364;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610588167;;False;{};gj6j5uu;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj6j5uu/;1610667613;1;True;False;anime;t5_2qh22;;0;[]; -[];;;orangutan25;;;[];;;;text;t2_14v4u1;False;False;[];;Yeah same. All I remember is like maybe blue hair and a maid uniform or something idk;False;False;;;;1610588385;;False;{};gj6jkzr;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj6jkzr/;1610667880;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NuclearStudent;;;[];;;;text;t2_7841b;False;False;[];;only if I didn't care for it;False;False;;;;1610589049;;False;{};gj6kvm1;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj6kvm1/;1610668717;1;True;False;anime;t5_2qh22;;0;[]; -[];;;20sama02Kuurta;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_1yg4f9l2;False;False;[];;Stupid Hunter x Hunter was an original anime;False;False;;;;1610589173;;False;{};gj6l4dl;False;t3_kw8oi3;False;False;t1_gj3v2vj;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj6l4dl/;1610668869;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610589665;;False;{};gj6m2nj;False;t3_kw8oi3;False;True;t1_gj2xkr6;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj6m2nj/;1610669460;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LordUncleBob;;;[];;;;text;t2_ckedm;False;False;[];;I can't believe you forgot the name of Best Boy Ranga;False;False;;;;1610589831;;False;{};gj6me5c;False;t3_kw8oi3;False;True;t1_gj4usko;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj6me5c/;1610669660;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sirppsauce;;;[];;;;text;t2_3gbm5zgi;False;False;[];;reading this comment has given me irreversible trauma;False;False;;;;1610590872;;False;{};gj6odvp;False;t3_kw8oi3;False;True;t1_gj6iq9l;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj6odvp/;1610670863;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shap2;;;[];;;;text;t2_12jix2;False;False;[];;the same happens to me, i only remember the names when is a anime with 100+ episodes;False;False;;;;1610593548;;False;{};gj6tdnx;False;t3_kw8oi3;False;True;t1_gj3l48u;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj6tdnx/;1610673944;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SirAwesome789;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SirAwesomeness;light;text;t2_ra3np;False;False;[];;Yeah, partially bc they're often common Japanese names. Meaning it's not unique enough to remember but it's also not common in your native language so it's also not something you remember;False;False;;;;1610593667;;False;{};gj6tlhj;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj6tlhj/;1610674075;1;True;False;anime;t5_2qh22;;0;[]; -[];;;boomerangimagine;;;[];;;;text;t2_525409u9;False;False;[];;It is normal as long as you didn't enjoy the anime or the characters didn't leave a huge impact on you.;False;False;;;;1610593890;;False;{};gj6tzsy;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj6tzsy/;1610674321;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sullan08;;;[];;;;text;t2_5go83;False;False;[];;My favorite series might be ToG, but there are so many goddamn characters there's no way I can remember lol. Probably couldn't even if it was regular english names (which some are in ToG to be fair).;False;False;;;;1610594166;;False;{};gj6uhqv;False;t3_kw8oi3;False;True;t1_gj33v0h;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj6uhqv/;1610674624;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blamethemeta;;MAL;[];;https://myanimelist.net/profile/Blamemeta;dark;text;t2_2yklyxk;False;False;[];;That's it. Why the fuck is google mean to me? I tried desu anime character, and it just came up with the seasonal stuff.;False;False;;;;1610594934;;False;{};gj6vvvm;False;t3_kw8oi3;False;False;t1_gj5hxb3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj6vvvm/;1610675478;5;True;False;anime;t5_2qh22;;0;[]; -[];;;gamersfun2595;;;[];;;;text;t2_81tz3vmd;False;False;[];;Yes it happens all the time;False;False;;;;1610595800;;False;{};gj6xfh0;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj6xfh0/;1610676473;1;True;False;anime;t5_2qh22;;0;[]; -[];;;daboiidevin;;;[];;;;text;t2_66dcognd;False;False;[];;Is it bad that I forget the names of the characters right after they introduce themselves? I find myself watching anime not knowing maybe 2/10 characters names in total.;False;False;;;;1610596218;;False;{};gj6y5rd;False;t3_kw8oi3;False;True;t1_gj3igvp;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj6y5rd/;1610676933;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ahsab;;;[];;;;text;t2_8kozd;False;False;[];;"A few people have already said similar but I'll add mine too. - -I rarely remember/know their names when I'm watching it. - -Unless the name is simple or a common name I usually give them a stupid nickname Tomura Shigaraki from Hero Academia was Handsy Mcgee well into season 4 of Hero, I also caught up in the manga before season 3. So he had all the chapters currently out at the time and 3 and a half seasons of the anime version before I remembered his name. - -So I say you're good, 'cause you could be as bad as I am, lol.";False;False;;;;1610597091;;False;{};gj6zouf;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj6zouf/;1610677891;1;True;False;anime;t5_2qh22;;0;[]; -[];;;calvintheguy;;;[];;;;text;t2_6zeojg0g;False;False;[];;For me its if it is a 12 ep anime then i forget;False;False;;;;1610598669;;False;{};gj72d8z;False;t3_kw8oi3;False;True;t1_gj3byhv;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj72d8z/;1610679706;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jiv302;;;[];;;;text;t2_11pbe1;False;False;[];;"> (Ishida usually referred to Ichigo as Kurosaki if I recall correctly) and others by their first name (Chad and Inoue called him Ichigo). - -What's funny about this quote is you using Ichigo and Chad's first names and Orihime and Uryu's last names whlie talking about said characters using first or last names for each other lmao";False;False;;;;1610599084;;False;{};gj731vh;False;t3_kw8oi3;False;True;t1_gj3xd58;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj731vh/;1610680183;3;True;False;anime;t5_2qh22;;0;[]; -[];;;opi098514;;;[];;;;text;t2_51dfdxum;False;False;[];;I remember lelouch. That’s it.;False;False;;;;1610599935;;False;{};gj74f7u;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj74f7u/;1610681061;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Peechez;;;[];;;;text;t2_5linh;False;False;[];;Darth Vader is literally Darth Father..;False;False;;;;1610600442;;False;{};gj757nb;False;t3_kw8oi3;False;True;t1_gj433a9;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj757nb/;1610681550;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Electronic-Feeling63;;;[];;;;text;t2_77o6dhki;False;False;[];;For me it sure is I can't remember after a month or so;False;False;;;;1610600889;;False;{};gj75w3d;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj75w3d/;1610681971;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dartkun;;;[];;;;text;t2_7pg67;False;False;[];;"Rikido Sato - -I only remember because of the Dorms episode when Mina called him out by name.";False;False;;;;1610601058;;False;{};gj765ji;False;t3_kw8oi3;False;True;t1_gj50rlx;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj765ji/;1610682132;1;False;False;anime;t5_2qh22;;0;[]; -[];;;TheBeankun;;;[];;;;text;t2_6hvwgrg;False;False;[];;Please let this be the new thing !;False;False;;;;1610602443;;False;{};gj787rj;False;t3_kwaybf;False;True;t1_gj644wg;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj787rj/;1610683524;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;"> For me, the pacing was waaay too fast. - -hahahaha, you think the pacing was too fast in this... you should watch the first OVA. The first half of that episode is a summarized version of this episode... without all of the humor.";False;False;;;;1610603143;;False;{};gj797ju;False;t3_kwaybf;False;True;t1_gj3qgoq;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj797ju/;1610684143;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;"[Amazon currently has 14 of the 15 books.](https://www.amazon.com/dp/B07JKGN457?searchxofy=true&binding=kindle_edition&ref_=dbs_s_aps_series_rwt_tkin)";False;False;;;;1610603220;;False;{};gj79b97;False;t3_kwaybf;False;True;t1_gj50ug3;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj79b97/;1610684205;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;Um, if it's super popular, I bet it gets a second season.;False;False;;;;1610603316;;False;{};gj79fzs;False;t3_kwaybf;False;True;t1_gj5554j;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj79fzs/;1610684284;1;True;False;anime;t5_2qh22;;0;[]; -[];;;magicfades;;;[];;;;text;t2_bncr5;False;False;[];;The better question would be, Why would it not be normal?;False;False;;;;1610604035;;False;{};gj7af9b;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj7af9b/;1610684877;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thenewwwguy2;;;[];;;;text;t2_49p26v8j;False;False;[];;"the pacing is pretty much the same as the manga, with the exception that the middle chapter was omitted. - - -The next few chapters slow down since they don’t happen over such a long period of time, but the first 3 chapters happen over a span of 3 months. The one flaw of the anime is it doesn’t use transitions, so no effect of passing time ever happened. - -that said, the manga only gets better from here, and so should the anime. You’ll see why it’s so incredibly popular soon enough - -that said, the fact that the series has a confession and romantic progress very early on is why i love it. It’s the anti-Oregairu in that sense, opting to pass on drama in order to develop a realistic and nuanced romance.";False;False;;;;1610605493;;False;{};gj7cbg2;False;t3_kwaybf;False;True;t1_gj3qgoq;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj7cbg2/;1610686028;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thenewwwguy2;;;[];;;;text;t2_49p26v8j;False;False;[];;it’s 122 chapters and ongoing. Not only will this season not even get close to completing the phase of the manga centered on hori and miyamura, there’s 60+ chapters of content surrounding their friend group that probsbly won’t be covered. That said, the overwhelming positive response should put it in a good place to get a season 2;False;False;;;;1610605706;;False;{};gj7cl4a;False;t3_kwaybf;False;True;t1_gj4aqp9;/r/anime/comments/kwaybf/horimiya_sets_new_record/gj7cl4a/;1610686185;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ShadeScar24;;;[];;;;text;t2_ttv3n76;False;False;[];;I watched attack on titan up to this weeks episode for the first time a week ago and forgot Levi’s name so I think it’s ok;False;False;;;;1610610248;;False;{};gj7hrcn;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj7hrcn/;1610689661;1;True;False;anime;t5_2qh22;;0;[]; -[];;;penawii;;;[];;;;text;t2_9z4jq;False;False;[];;That's why you read the LN, can't forget the characters names when they're repeated like a billion times;False;False;;;;1610614878;;False;{};gj7mhd1;False;t3_kw8oi3;False;True;t1_gj37abe;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj7mhd1/;1610692731;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UDani11;;;[];;;;text;t2_3urk0qno;False;False;[];;Ye, i remember like every single (non filler character) name from naruto but i forget many names from short animes.;False;False;;;;1610615647;;False;{};gj7n8x7;False;t3_kw8oi3;False;True;t1_gj6tdnx;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj7n8x7/;1610693179;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UDani11;;;[];;;;text;t2_3urk0qno;False;False;[];;"I meant less than 10 season 1-3 characters... - -But who the hell are willy and galliard?";False;False;;;;1610616609;;False;{};gj7o6w6;False;t3_kw8oi3;False;True;t1_gj5ye99;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj7o6w6/;1610693736;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Bringbackdigimon;;;[];;;;text;t2_i5d2hu;False;False;[];;"You didn’t say that though -Okay yeah you aren’t paying attention if you don’t know who those two season 4 characters are, unless you’ve literally only watched the first episode 5 weeks ago";False;False;;;;1610617080;;False;{};gj7once;False;t3_kw8oi3;False;True;t1_gj7o6w6;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj7once/;1610694005;0;True;False;anime;t5_2qh22;;0;[]; -[];;;UDani11;;;[];;;;text;t2_3urk0qno;False;False;[];;Again assuming shit bro when you stopping with that? I've looked them up now, if you would have said porco i would have recognized him. Willy dude i just forgot his name tbh.;False;False;;;;1610625340;;False;{};gj7wzva;False;t3_kw8oi3;False;False;t1_gj7once;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj7wzva/;1610698687;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610627357;;False;{};gj7zch5;False;t3_kw8oi3;False;True;t1_gj3cvnb;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj7zch5/;1610699956;1;True;False;anime;t5_2qh22;;0;[];True -[];;;Bringbackdigimon;;;[];;;;text;t2_i5d2hu;False;False;[];;Least I can name 10 attack on Titan characters;False;False;;;;1610627936;;False;{};gj8028q;False;t3_kw8oi3;False;True;t1_gj7wzva;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj8028q/;1610700358;0;True;False;anime;t5_2qh22;;0;[]; -[];;;UDani11;;;[];;;;text;t2_3urk0qno;False;False;[];;Ye, so what?;False;False;;;;1610628085;;False;{};gj8093b;False;t3_kw8oi3;False;True;t1_gj8028q;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj8093b/;1610700458;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Bringbackdigimon;;;[];;;;text;t2_i5d2hu;False;False;[];;It’s okay you are allowed to watch anime in the background and not really pay attention to it you do you;False;False;;;;1610628119;;False;{};gj80anl;False;t3_kw8oi3;False;True;t1_gj8093b;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj80anl/;1610700481;0;True;False;anime;t5_2qh22;;0;[]; -[];;;UDani11;;;[];;;;text;t2_3urk0qno;False;False;[];;Lmao there you go again assuming things. I'm not even gonna continue this you're just stupid tbh. Maybe, i just did not care about those characters or something you know.;False;False;;;;1610628193;;False;{};gj80e2s;False;t3_kw8oi3;False;False;t1_gj80anl;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj80e2s/;1610700530;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610634061;;False;{};gj89kbl;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj89kbl/;1610705542;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zinamaster;;;[];;;;text;t2_5ajoclzb;False;False;[];;This happened with me with bnha, I could not remember anyone. If you liked a show, I think you're more inclined to recall names.;False;False;;;;1610640076;;False;{};gj8lx3y;False;t3_kw8oi3;False;True;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj8lx3y/;1610712723;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ryan-Only;;;[];;;;text;t2_7mkd8in7;False;False;[];;I was just making a joke. Tbh, I know a bit of German and I remembered that name;False;False;;;;1610653259;;False;{};gj9fefx;False;t3_kw8oi3;False;True;t1_gj521np;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj9fefx/;1610733370;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Evilmon2;;;[];;;;text;t2_6e943;False;False;[];;">I don't want to be a gatekeeper or elitist, but I guess people need to get a certain understanding of Japanese culture to fully understand it. - -I do. If people aren't willing to learn extremely simple parts of another culture, why should we change that culture to allow them to interact with it? If the people unwilling to learn have an issue with that and try to force change upon it, they can pound sand. Moderate gatekeeping is an essential part of maintaining a subculture.";False;False;;;;1610660186;;False;{};gj9w7rr;False;t3_kw8oi3;False;True;t1_gj3y33c;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gj9w7rr/;1610744976;1;True;False;anime;t5_2qh22;;0;[]; -[];;;modernkennnern;;;[];;;;text;t2_d2h9u;False;False;[];;I'm re-watching BNHA atm, and I can't remember the names of most of those characters;False;False;;;;1610664892;;False;{};gja68an;False;t3_kw8oi3;False;False;t1_gj2vi7g;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gja68an/;1610751832;2;True;False;anime;t5_2qh22;;0;[]; -[];;;REorganize009;;;[];;;;text;t2_hbc6f;False;False;[];;yup, but I do remember the names of everyone from Naruto, Bleach, and DBZ though. I was a kid back then and for some reason names just stuck more easily;False;False;;;;1610669469;;False;{};gjaf5ki;False;t3_kw8oi3;False;False;t3_kw8oi3;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gjaf5ki/;1610757845;1;True;False;anime;t5_2qh22;;0;[]; -[];;;adratel;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/adratel;light;text;t2_gr477;False;False;[];;been watching subbed anime for 10+ years now, still can't remember names at all. Partially because I follow 10ish airing anime every season.;False;False;;;;1610791596;;False;{};gjfvaji;False;t3_kw8oi3;False;True;t1_gj32uzv;/r/anime/comments/kw8oi3/is_it_normal_to_forget_the_names_of_characters/gjfvaji/;1610878442;1;True;False;anime;t5_2qh22;;0;[]; -[];;;needle1;;;[];;;;text;t2_bdfyk;False;False;[];;"The YouTube upload of Episode 2 has racked up *2.2 million* views, less than a week after airing: [https://www.youtube.com/watch?v=OQicZA-bU9A&feature=youtu.be](https://www.youtube.com/watch?v=OQicZA-bU9A&feature=youtu.be) (The upload is only live for a week after the broadcast, so it will be taken down tomorrow.) - -Again, this is legit huge in Japan right now. Episode 3 is due in 2 days.";False;False;;;;1610853208;;False;{};gjjd5px;False;t3_kwa34e;False;True;t3_kwa34e;/r/anime/comments/kwa34e/pui_pui_molcar_yes_this_is_an_anime/gjjd5px/;1610953077;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Staytrippy_24;;;[];;;;text;t2_54ldse8l;False;False;[];;Damn lol I never looked back here but I did watch demon slayer all the way through in the past two days. It was really good;False;False;;;;1610915501;;False;{};gjn875l;True;t3_kw8hzs;False;True;t1_gj31qsi;/r/anime/comments/kw8hzs/i_need_new_stuff_to_watch/gjn875l/;1611028812;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610651527;moderator;False;{};gj9blok;False;t3_kxcfak;False;False;t3_kxcfak;/r/anime/comments/kxcfak/does_anybody_know_anything_about_the_dr_stone/gj9blok/;1610730672;1;False;False;anime;t5_2qh22;;0;[]; -[];;;ikbeneenb;;;[];;;;text;t2_2kpjc2te;False;False;[];;Prob in a few weeks;False;False;;;;1610651622;;False;{};gj9bt2r;False;t3_kxcfak;False;True;t3_kxcfak;/r/anime/comments/kxcfak/does_anybody_know_anything_about_the_dr_stone/gj9bt2r/;1610730811;1;True;False;anime;t5_2qh22;;0;[]; -[];;;G_Spark233;;MAL;[];;http://myanimelist.net/profile/G_Spark233;dark;text;t2_kn9bb;False;False;[];;It will most likely come out several weeks after the sub version but it may come out even later due to covid delays.;False;False;;;;1610651713;;False;{};gj9c091;False;t3_kxcfak;False;True;t3_kxcfak;/r/anime/comments/kxcfak/does_anybody_know_anything_about_the_dr_stone/gj9c091/;1610730950;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610651784;moderator;False;{};gj9c5wx;False;t3_kxcilz;False;True;t3_kxcilz;/r/anime/comments/kxcilz/what_is_this_character_from_please/gj9c5wx/;1610731054;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Nihhrt;;MAL;[];;http://myanimelist.net/animelist/Nihhrt;dark;text;t2_8p0ab;False;False;[];;[Rokudenashi Majutsu Koushi to Akashic Records](https://myanimelist.net/anime/32951/Rokudenashi_Majutsu_Koushi_to_Akashic_Records) (Akashic Records of Bastard Magic Instructor);False;False;;;;1610651954;;False;{};gj9cjeh;False;t3_kxcilz;False;True;t3_kxcilz;/r/anime/comments/kxcilz/what_is_this_character_from_please/gj9cjeh/;1610731310;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610651956;;False;{};gj9cjk6;False;t3_kxcilz;False;True;t3_kxcilz;/r/anime/comments/kxcilz/what_is_this_character_from_please/gj9cjk6/;1610731314;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi A-Random-Baby-Tiger, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610652336;moderator;False;{};gj9ddmi;False;t3_kxcpjl;False;True;t3_kxcpjl;/r/anime/comments/kxcpjl/anime_name_for_a_classroom_lizard/gj9ddmi/;1610731915;1;False;False;anime;t5_2qh22;;0;[]; -[];;;albrioz;;;[];;;;text;t2_4crhwhhq;False;False;[];;Natsu from Fairy Tail;False;False;;;;1610652512;;False;{};gj9drnq;False;t3_kxcpjl;False;True;t3_kxcpjl;/r/anime/comments/kxcpjl/anime_name_for_a_classroom_lizard/gj9drnq/;1610732197;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Emeraldiscool17;;;[];;;;text;t2_6q5m33e3;False;False;[];;Kurosaki Ichigo lmfao;False;False;;;;1610652588;;False;{};gj9dxox;False;t3_kxcpjl;False;True;t3_kxcpjl;/r/anime/comments/kxcpjl/anime_name_for_a_classroom_lizard/gj9dxox/;1610732321;1;True;False;anime;t5_2qh22;;0;[]; -[];;;suck_my_sock;;;[];;;;text;t2_33kotctx;False;False;[];;Republican.;False;False;;;;1610652913;;False;{};gj9encm;False;t3_kxcpjl;False;True;t3_kxcpjl;/r/anime/comments/kxcpjl/anime_name_for_a_classroom_lizard/gj9encm/;1610732838;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;A-Random-Baby-Tiger;;;[];;;;text;t2_6gtn7uxk;False;False;[];;He has pink hair but ok;False;False;;;;1610652980;;False;{};gj9eshs;True;t3_kxcpjl;False;True;t1_gj9drnq;/r/anime/comments/kxcpjl/anime_name_for_a_classroom_lizard/gj9eshs/;1610732939;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gr8Deb8ter;;;[];;;;text;t2_6cvsfy7x;False;False;[];;Donald Trump;False;False;;;;1610653179;;False;{};gj9f84w;False;t3_kxcpjl;False;True;t3_kxcpjl;/r/anime/comments/kxcpjl/anime_name_for_a_classroom_lizard/gj9f84w/;1610733244;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;albrioz;;;[];;;;text;t2_4crhwhhq;False;False;[];;Was going off the fact that his nickname is the salamander 🤷‍♂️;False;False;;;;1610653251;;False;{};gj9fdqk;False;t3_kxcpjl;False;True;t1_gj9eshs;/r/anime/comments/kxcpjl/anime_name_for_a_classroom_lizard/gj9fdqk/;1610733355;1;True;False;anime;t5_2qh22;;0;[]; -[];;;A-Random-Baby-Tiger;;;[];;;;text;t2_6gtn7uxk;False;False;[];;It’s a lizard but I didn’t watch fairytail yet. I thought he was half dragon or something;False;False;;;;1610653291;;False;{};gj9fh23;True;t3_kxcpjl;False;True;t1_gj9fdqk;/r/anime/comments/kxcpjl/anime_name_for_a_classroom_lizard/gj9fh23/;1610733424;1;True;False;anime;t5_2qh22;;0;[]; -[];;;A-Random-Baby-Tiger;;;[];;;;text;t2_6gtn7uxk;False;False;[];;Anime names to Donald trump so fast;False;False;;;;1610653377;;False;{};gj9fnv6;True;t3_kxcpjl;False;True;t1_gj9f84w;/r/anime/comments/kxcpjl/anime_name_for_a_classroom_lizard/gj9fnv6/;1610733561;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gr8Deb8ter;;;[];;;;text;t2_6cvsfy7x;False;False;[];;I mean Donald Trump is in anime so...;False;False;;;;1610653643;;False;{};gj9g8t1;False;t3_kxcpjl;False;True;t1_gj9fnv6;/r/anime/comments/kxcpjl/anime_name_for_a_classroom_lizard/gj9g8t1/;1610733988;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Letho72;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Letho72;light;text;t2_acraa;False;False;[];;All three of these shows made me so angry once I realized I'd need to wait 7 days for next episodes. Absolute banger pilots from all of them.;False;False;;;;1610653732;;False;{};gj9gfqo;False;t3_kxd55a;False;False;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gj9gfqo/;1610734126;10;True;False;anime;t5_2qh22;;0;[]; -[];;;A-Random-Baby-Tiger;;;[];;;;text;t2_6gtn7uxk;False;False;[];;I mean you ain’t lying so.... SUPREME DORITO CHEETOH KING!!;False;False;;;;1610653759;;False;{};gj9ghvh;True;t3_kxcpjl;False;True;t1_gj9g8t1;/r/anime/comments/kxcpjl/anime_name_for_a_classroom_lizard/gj9ghvh/;1610734166;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RedsonOfKyrypton;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RedsonofMelomarc;light;text;t2_5d1b60l;False;False;[];;They're so fucking pretty too, absolute eye candy.;False;False;;;;1610653859;;1610655405.0;{};gj9gppi;False;t3_kxd55a;False;False;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gj9gppi/;1610734326;101;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610653909;;False;{};gj9gtir;False;t3_kxd8jn;False;True;t3_kxd8jn;/r/anime/comments/kxd8jn/why_are_shows_doing_season_x_part_2_instead_of/gj9gtir/;1610734404;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610653990;moderator;False;{};gj9h009;False;t3_kxda6l;False;True;t3_kxda6l;/r/anime/comments/kxda6l/please_tell_it_urgently_it_is_a_drag_to_connect/gj9h009/;1610734548;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi NORMIEDOGGO, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610653990;moderator;False;{};gj9h01i;False;t3_kxda6l;False;True;t3_kxda6l;/r/anime/comments/kxda6l/please_tell_it_urgently_it_is_a_drag_to_connect/gj9h01i/;1610734549;1;False;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;Even for AOT Season 3? I thought it aired before covid;False;False;;;;1610654050;;False;{};gj9h4qj;False;t3_kxd8jn;False;True;t1_gj9gtir;/r/anime/comments/kxd8jn/why_are_shows_doing_season_x_part_2_instead_of/gj9h4qj/;1610734648;3;True;False;anime;t5_2qh22;;0;[]; -[];;;xVx_k1r1t0xVx_KillMe;;;[];;;;text;t2_7qaygenb;False;False;[];;That's really amazing. Knew about the other two but got introduced to wonder egg priority thanks to your post. We even have Reincarnated as a slime s2, mushoku tensei, ReZero s2 part 2. Winter 2021 is just the best.;False;False;;;;1610654050;;False;{};gj9h4r3;False;t3_kxd46a;False;True;t3_kxd46a;/r/anime/comments/kxd46a/cloverworks_has_three_shows_airing_this_season/gj9h4r3/;1610734649;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Firestarness;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/firestarness;light;text;t2_15356k;False;False;[];;Honestly really surprised at all the 8+ shows this season. I don’t think I’ve seen this many at once since I starting watching seasonal anime back in 2018. It’s no wonder given the level of sequels / anticipated new shows.;False;False;;;;1610654074;;False;{};gj9h6jy;False;t3_kxd46a;False;True;t3_kxd46a;/r/anime/comments/kxd46a/cloverworks_has_three_shows_airing_this_season/gj9h6jy/;1610734685;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610654222;;False;{};gj9hi60;False;t3_kxd8jn;False;True;t1_gj9h4qj;/r/anime/comments/kxd8jn/why_are_shows_doing_season_x_part_2_instead_of/gj9hi60/;1610734923;1;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your submission has been removed. - -- This doesn't appear to be about [anime per our definition](https://www.reddit.com/r/anime/wiki/rules#wiki_everything_posted_here_must_be_anime_specific). - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610654273;moderator;False;{};gj9hm77;False;t3_kxcpjl;False;True;t3_kxcpjl;/r/anime/comments/kxcpjl/anime_name_for_a_classroom_lizard/gj9hm77/;1610735008;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;">Even for AOT Season 3? I thought it aired before covid - -It was meant to air at once but WIT couldn't keep on the terrible schedule the production committee gave. - -They were working on quite a lot then like Vinland Saga and The Great Pretender. The Great Pretender aired the same season as Attack on Titan S3P2 and Vinland Saga the season after. Both of which were two cour series. Also, between S3P1 and S3P2 WIT released After the Rain.";False;False;;;;1610654274;;1610654463.0;{};gj9hm7g;False;t3_kxd8jn;False;False;t1_gj9h4qj;/r/anime/comments/kxd8jn/why_are_shows_doing_season_x_part_2_instead_of/gj9hm7g/;1610735008;5;True;False;anime;t5_2qh22;;0;[]; -[];;;xVx_k1r1t0xVx_KillMe;;;[];;;;text;t2_7qaygenb;False;False;[];;Loving winter 2021 so much.;False;False;;;;1610654278;;False;{};gj9hmki;False;t3_kxd55a;False;False;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gj9hmki/;1610735016;91;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;CloverWorks is quickly becoming one of my favorite studios. They seem to consistently put out not only well animated anime, but also very enjoyable shows (Bunny Girl Senpai, Millionaire Detective, Fate Babylonia, the shows this season);False;False;;;;1610654292;;False;{};gj9hnnx;False;t3_kxd55a;False;False;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gj9hnnx/;1610735038;93;True;False;anime;t5_2qh22;;0;[]; -[];;;Former_Dimension_23;;;[];;;;text;t2_83dlg0xn;False;False;[];;Hm if they were to fight they won't be able to touch each other, but overall giorno is stronger in my opinion;False;False;;;;1610654329;;False;{};gj9hql6;False;t3_kxdde0;False;True;t3_kxdde0;/r/anime/comments/kxdde0/who_would_win_in_a_fight_giorno_requiem_stand_or/gj9hql6/;1610735102;1;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"I remember looking at Wonder Eggs score right after it aired and it was just below an 8 so its nice to see it improve. - -Glad to see it doing well though. It was the one I was most excited for along with Horimiya, even though little was known about it. I remember being one of the very few to try and hype it up before the season started";False;False;;;;1610654441;;False;{};gj9hzcx;False;t3_kxd46a;False;True;t3_kxd46a;/r/anime/comments/kxd46a/cloverworks_has_three_shows_airing_this_season/gj9hzcx/;1610735288;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;All 3 look really amazing too;False;False;;;;1610654520;;False;{};gj9i5ij;False;t3_kxd46a;False;True;t3_kxd46a;/r/anime/comments/kxd46a/cloverworks_has_three_shows_airing_this_season/gj9i5ij/;1610735419;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;So good for such a new studio. Their consistency is impressive.;False;False;;;;1610654593;;False;{};gj9ib9x;False;t3_kxd55a;False;True;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gj9ib9x/;1610735540;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610654827;;False;{};gj9it6w;False;t3_kxd8jn;False;True;t1_gj9hm7g;/r/anime/comments/kxd8jn/why_are_shows_doing_season_x_part_2_instead_of/gj9it6w/;1610735913;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"You might have to sail the seven seas. - -We can only suggest the legal sites and I think your options are limited.";False;False;;;;1610654829;;False;{};gj9itd2;False;t3_kxda6l;False;True;t3_kxda6l;/r/anime/comments/kxda6l/please_tell_it_urgently_it_is_a_drag_to_connect/gj9itd2/;1610735917;5;True;False;anime;t5_2qh22;;0;[]; -[];;;NormanAJ;;;[];;;;text;t2_i4m51;False;False;[];;Look like it's not from anime/manga. It seems original picture from some artist.;False;False;;;;1610654926;;False;{};gj9j0qn;False;t3_kxdhtn;False;True;t3_kxdhtn;/r/anime/comments/kxdhtn/does_anybody_know_what_animemanga_this_comes_from/gj9j0qn/;1610736075;2;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;"""Part 2"" is given to split cour shows, aka 2 cour shows that air with a break in between.";False;False;;;;1610655133;;False;{};gj9jh5u;False;t3_kxd8jn;False;False;t3_kxd8jn;/r/anime/comments/kxd8jn/why_are_shows_doing_season_x_part_2_instead_of/gj9jh5u/;1610736416;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;Because these shows are meant to be one season but air as two cours. Idk if they split.up Re Zero because of COVID but it's not uncommon really. They air too close together to be considered another season;False;False;;;;1610655329;;False;{};gj9jwmq;False;t3_kxd8jn;False;True;t3_kxd8jn;/r/anime/comments/kxd8jn/why_are_shows_doing_season_x_part_2_instead_of/gj9jwmq/;1610736731;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610655578;moderator;False;{};gj9kgao;False;t3_kxdu6t;False;True;t3_kxdu6t;/r/anime/comments/kxdu6t/a_question_about_bunny_girl_senpai/gj9kgao/;1610737124;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610655641;moderator;False;{};gj9klco;False;t3_kxduyc;False;True;t3_kxduyc;/r/anime/comments/kxduyc/trying_to_watch_formula1_engines_on_the_track/gj9klco/;1610737222;1;False;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"Funimation, Crunchyroll, Hulu - -The movie is not on any legal streaming website";False;False;;;;1610655651;;False;{};gj9km5r;False;t3_kxdu6t;False;False;t3_kxdu6t;/r/anime/comments/kxdu6t/a_question_about_bunny_girl_senpai/gj9km5r/;1610737237;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lucajaner;;;[];;;;text;t2_6546pubc;False;False;[];;"Crunchyroll? I didn't find it there - -I thought it is bunnygirl senpai";False;False;;;;1610655683;;False;{};gj9kos6;False;t3_kxdu6t;False;True;t1_gj9km5r;/r/anime/comments/kxdu6t/a_question_about_bunny_girl_senpai/gj9kos6/;1610737284;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lucajaner;;;[];;;;text;t2_6546pubc;False;False;[];;What's the name from the show then. I didn't find it;False;False;;;;1610655794;;False;{};gj9kxhb;False;t3_kxdu6t;False;False;t1_gj9km5r;/r/anime/comments/kxdu6t/a_question_about_bunny_girl_senpai/gj9kxhb/;1610737446;1;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;I see it there, at least in the US;False;False;;;;1610655800;;False;{};gj9kxyj;False;t3_kxdu6t;False;False;t1_gj9kos6;/r/anime/comments/kxdu6t/a_question_about_bunny_girl_senpai/gj9kxyj/;1610737456;1;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;Rascal Does not Dream of Bunny Girl Senpai;False;False;;;;1610655827;;False;{};gj9l04h;False;t3_kxdu6t;False;True;t1_gj9kxhb;/r/anime/comments/kxdu6t/a_question_about_bunny_girl_senpai/gj9l04h/;1610737499;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;True;[];;"In the US it is on Crunchyroll, Funimation, and Hulu. It is also on Netlfix in a few overseas regions, I think Netlfix Singapore and Netflix Philippines have it. - -The movie is not available for legal streaming in the US.";False;False;;;;1610655833;;False;{};gj9l0li;False;t3_kxdu6t;False;False;t3_kxdu6t;/r/anime/comments/kxdu6t/a_question_about_bunny_girl_senpai/gj9l0li/;1610737509;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;So, this image both looks like it's something from an ero source and looks vaguely manhwa-esque in styling. (Specifically, the style of coloring/shading here seems to be one that's popular on webtoon sites, among other things.) I would try asking in \/r\/pornhwa and/or \/r\/hentaisource.;False;False;;;;1610655866;;1610656521.0;{};gj9l37b;False;t3_kxdhtn;False;False;t3_kxdhtn;/r/anime/comments/kxdhtn/does_anybody_know_what_animemanga_this_comes_from/gj9l37b/;1610737560;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lucajaner;;;[];;;;text;t2_6546pubc;False;False;[];;I don't life in the us so that doesn't matter;False;False;;;;1610655882;;False;{};gj9l4hm;False;t3_kxdu6t;False;True;t1_gj9l0li;/r/anime/comments/kxdu6t/a_question_about_bunny_girl_senpai/gj9l4hm/;1610737583;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EmiliaTanTenshi;;;[];;;;text;t2_9cdfju6k;False;False;[];;Shows like Re:Zero were supposed to air all at once back in the spring of 2020 but were postponed due to the virus. RZ has one continuous arc for this season, so it’s s2 p2 and not s3. AOT was due to some scheduling issues and production problems at WIT;False;False;;;;1610655931;;False;{};gj9l89a;False;t3_kxd8jn;False;True;t3_kxd8jn;/r/anime/comments/kxd8jn/why_are_shows_doing_season_x_part_2_instead_of/gj9l89a/;1610737658;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;True;[];;Another anime you might want to check out is SK8 The Infinity, it is another anime original this season being made by studio BONES. It seems to be about an underground skateboard racing scene, its really cool and beautifully animated (which is not surprising because BONES).;False;False;;;;1610655990;;False;{};gj9lcwa;False;t3_kxd46a;False;True;t1_gj9h4r3;/r/anime/comments/kxd46a/cloverworks_has_three_shows_airing_this_season/gj9lcwa/;1610737747;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Greedy-Ad-9638, your post has been removed because your title is below our minimum length requirement of 4 words. Feel free to repost with a more descriptive title. - -If you're looking to get a quick question answered, like asking for [recommendations](https://www.reddit.com/r/anime/wiki/recommendations), [the source of a picture](https://www.reddit.com/r/anime/wiki/reverse_image_searching), a [watch order](https://www.reddit.com/r/anime/wiki/watch_order) or any other [general question](https://www.reddit.com/r/anime/wiki/faaq), please check our sidebar too, it might help you faster. - -[**Thank you!**](#blushubot) - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610656032;moderator;False;{};gj9lgcc;False;t3_kxdzpz;False;True;t3_kxdzpz;/r/anime/comments/kxdzpz/mha_discussion/gj9lgcc/;1610737807;1;False;False;anime;t5_2qh22;;0;[]; -[];;;xVx_k1r1t0xVx_KillMe;;;[];;;;text;t2_7qaygenb;False;False;[];;Will check out, thanks:);False;False;;;;1610656180;;False;{};gj9ltue;False;t3_kxd46a;False;True;t1_gj9lcwa;/r/anime/comments/kxd46a/cloverworks_has_three_shows_airing_this_season/gj9ltue/;1610738053;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;The face looks like the one girl from Violet Evergarden. Iris. But the hair color is wrong. I think it's an original piece of artwork.;False;False;;;;1610656322;;False;{};gj9m6tp;False;t3_kxdhtn;False;True;t3_kxdhtn;/r/anime/comments/kxdhtn/does_anybody_know_what_animemanga_this_comes_from/gj9m6tp/;1610738283;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aggressive-Orange600;;;[];;;;text;t2_8pwkdj64;False;False;[];;Great Teacher Onizuka;False;False;;;;1610656382;;False;{};gj9mc8h;False;t3_kxe2iv;False;True;t3_kxe2iv;/r/anime/comments/kxe2iv/anyone_got_the_sauce_pls/gj9mc8h/;1610738384;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nihhrt;;MAL;[];;http://myanimelist.net/animelist/Nihhrt;dark;text;t2_8p0ab;False;False;[];;I'm almost certain it's fanart of Adelheid Suzuki from Hitman Reborn;False;False;;;;1610656421;;False;{};gj9mfnm;False;t3_kxdhtn;False;True;t3_kxdhtn;/r/anime/comments/kxdhtn/does_anybody_know_what_animemanga_this_comes_from/gj9mfnm/;1610738448;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;"This subreddit generally doesn't from my experience - -I'm sure the /r/swordartonline doesn't";False;False;;;;1610656657;;False;{};gj9n2aj;False;t3_kxe60t;False;True;t3_kxe60t;/r/anime/comments/kxe60t/any_communities_that_dont_hate_sao/gj9n2aj/;1610738841;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TacoBellIsChipotle;;;[];;;;text;t2_7l9egrg6;False;False;[];;No one cares about your persecution complex. Learn how to use google.;False;False;;;;1610656672;;False;{};gj9n3vu;False;t3_kxe60t;False;True;t3_kxe60t;/r/anime/comments/kxe60t/any_communities_that_dont_hate_sao/gj9n3vu/;1610738867;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610656695;;False;{};gj9n696;False;t3_kxe60t;False;True;t1_gj9n2aj;/r/anime/comments/kxe60t/any_communities_that_dont_hate_sao/gj9n696/;1610738908;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hi ANARQIA, your post has been removed because your title is below our minimum length requirement of 4 words. Feel free to repost with a more descriptive title. - -If you're looking to get a quick question answered, like asking for [recommendations](https://www.reddit.com/r/anime/wiki/recommendations), [the source of a picture](https://www.reddit.com/r/anime/wiki/reverse_image_searching), a [watch order](https://www.reddit.com/r/anime/wiki/watch_order) or any other [general question](https://www.reddit.com/r/anime/wiki/faaq), please check our sidebar too, it might help you faster. - -[**Thank you!**](#blushubot) - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610656697;moderator;False;{};gj9n6dp;False;t3_kxe7yw;False;True;t3_kxe7yw;/r/anime/comments/kxe7yw/anime_name_please/gj9n6dp/;1610738911;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;SAO's own subreddit .;False;False;;;;1610656737;;False;{};gj9naen;False;t3_kxe60t;False;True;t3_kxe60t;/r/anime/comments/kxe60t/any_communities_that_dont_hate_sao/gj9naen/;1610738979;1;True;False;anime;t5_2qh22;;0;[]; -[];;;XLightThief;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/frozen_lights;light;text;t2_5o80b;False;False;[];;"Haven't seen the other CloverWorks anime this season but Horimiya in particular looks so incredibly gorgeous. - -Mad props to them.";False;False;;;;1610656750;;False;{};gj9nbov;False;t3_kxd55a;False;True;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gj9nbov/;1610739003;2;False;False;anime;t5_2qh22;;0;[]; -[];;;SnowLocke;;;[];;;;text;t2_wx2pc;False;False;[];;"Googled that for you since you apparently down know how. - -https://www.google.com/search?q=sword+art+online+subreddit&rlz=1C1MSIM_enUS902US902&oq=sword+art+online+subreddit&aqs=chrome..69i57.8716j0j7&sourceid=chrome&ie=UTF-8";False;False;;;;1610656827;;False;{};gj9nj9n;False;t3_kxe60t;False;True;t3_kxe60t;/r/anime/comments/kxe60t/any_communities_that_dont_hate_sao/gj9nj9n/;1610739132;1;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Go to a website like livechart.me, type in the show name ""Rascal Does not Dream of Bunny Girl Senpai"" or ""Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai"" and see if it's on any legal streaming services in your area. Our rules only allow us to give you legal options.";False;False;;;;1610656832;;False;{};gj9njph;False;t3_kxdu6t;False;True;t3_kxdu6t;/r/anime/comments/kxdu6t/a_question_about_bunny_girl_senpai/gj9njph/;1610739139;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;Don't you think you are harsh ?;False;False;;;;1610656836;;False;{};gj9nk22;False;t3_kxe60t;False;True;t1_gj9n3vu;/r/anime/comments/kxe60t/any_communities_that_dont_hate_sao/gj9nk22/;1610739146;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610657157;;False;{};gj9of2n;False;t3_kxd55a;False;True;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gj9of2n/;1610739706;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;In fairness, episode 1 isn’t a huge gauge at a season, symphogear season 1 would be a 9 but after episodes 1 it dips bad and it’s currently sittings at a 7, I’ve tempered expectations until a few more episode;False;False;;;;1610657231;;False;{};gj9om5i;False;t3_kxd46a;False;True;t1_gj9h6jy;/r/anime/comments/kxd46a/cloverworks_has_three_shows_airing_this_season/gj9om5i/;1610739870;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rasouddress;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/rasouddress/;light;text;t2_p87m5;False;False;[];;I'm waiting to see how they adapt Shadows House first.;False;False;;;;1610657297;;False;{};gj9osgj;False;t3_kxd55a;False;False;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gj9osgj/;1610739987;17;True;False;anime;t5_2qh22;;0;[]; -[];;;TacoBellIsChipotle;;;[];;;;text;t2_7l9egrg6;False;False;[];;Yes. I'm harsh on purpose.;False;False;;;;1610657415;;False;{};gj9p3l8;False;t3_kxe60t;False;True;t1_gj9nk22;/r/anime/comments/kxe60t/any_communities_that_dont_hate_sao/gj9p3l8/;1610740198;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Seasons are usually done as a single production process. Sometimes they can't (or choose not to) air the entire season at once, which leads to splits like that. - -New production process? New season.";False;False;;;;1610657467;;False;{};gj9p8lx;False;t3_kxd8jn;False;False;t3_kxd8jn;/r/anime/comments/kxd8jn/why_are_shows_doing_season_x_part_2_instead_of/gj9p8lx/;1610740286;10;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your submission has been removed. - -- It looks like you want to talk about anime, but don't have much to say. We don't allow short, low-effort discussion posts here, but feel free to take some time to think more about what made your watching experience stand out, and make another post when you have some more thoughts down. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610657720;moderator;False;{};gj9pwkt;False;t3_kxd46a;False;True;t3_kxd46a;/r/anime/comments/kxd46a/cloverworks_has_three_shows_airing_this_season/gj9pwkt/;1610740717;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"# Source Material Corner - -Reply to this comment for any source-related discussion, future spoilers (including future characters, events and general hype about future content), comparison of the anime adaptation to the original, or just general talk about the source material. **You are still required to tag all spoilers.** Discussions about the source outside of this comment tree will be removed, and replying with spoilers outside of the source corner will lead to bans. - -The spoiler syntax is: -`[Spoiler source](/s ""Spoiler goes here"")` - -# **All untagged spoilers and hints in this thread will receive immediate 8-day bans (minimum).** - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610658174;moderator;False;{};gj9r2tr;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9r2tr/;1610741473;1;False;True;anime;t5_2qh22;;0;[]; -[];;;smiley-rell;;;[];;;;text;t2_9iaznvjw;False;False;[];;"I agree. Even if it's just one part just split it up into different seasons. Because I hated the latest season of sao 😭 ""sao alicetazation war of the underworld part 2""";False;False;;;;1610658312;;False;{};gj9rfds;False;t3_kxd8jn;False;True;t3_kxd8jn;/r/anime/comments/kxd8jn/why_are_shows_doing_season_x_part_2_instead_of/gj9rfds/;1610741707;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotAMoron2;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/SudoSen;dark;text;t2_2l3p4ut;False;False;[];;"Finally last episode for the day (2:30 am here), - -this day was stacked af but enjoyed all of them";False;False;;;;1610658379;;False;{};gj9rlpq;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9rlpq/;1610741828;67;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;They had to delay re:zero so it’s highly likely the episodes weren’t done yet;False;False;;;;1610658423;;False;{};gj9rps9;False;t3_kxd8jn;False;True;t1_gj9jwmq;/r/anime/comments/kxd8jn/why_are_shows_doing_season_x_part_2_instead_of/gj9rps9/;1610741906;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Garlicbread10;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;ereh;dark;text;t2_8zn7f5o;False;False;[];;"Agreed. I don’t know how but I somehow kept -up";False;False;;;;1610658462;;False;{};gj9rtf7;False;t3_kxepsc;False;False;t1_gj9rlpq;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9rtf7/;1610741979;22;True;False;anime;t5_2qh22;;0;[]; -[];;;DadAsFuck;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DadAsFuck;light;text;t2_peaym;False;False;[];;[10/10 phone shelf](https://imgur.com/a/qQKSZNu);False;False;;;;1610658565;;False;{};gj9s2vg;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9s2vg/;1610742168;279;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;So happy horimiya looks great since I'm pretty scorned by other shoujo adaptions , notably aoharu.;False;False;;;;1610658593;;False;{};gj9s5fu;False;t3_kxd55a;False;False;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gj9s5fu/;1610742214;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;It's pretty good series if you like the fate girls;False;False;;;;1610658601;;False;{};gj9s646;False;t3_kxetyy;False;False;t3_kxetyy;/r/anime/comments/kxetyy/what_are_your_thoughts_on_prisma_illya/gj9s646/;1610742228;4;True;False;anime;t5_2qh22;;0;[]; -[];;;JammyMan;;;[];;;;text;t2_e8c4j;False;False;[];;Damn that slap though.;False;False;;;;1610658669;;False;{};gj9scb3;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9scb3/;1610742347;72;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610658726;moderator;False;{};gj9sh6r;False;t3_kxewol;False;True;t3_kxewol;/r/anime/comments/kxewol/need_help_with_an_anime/gj9sh6r/;1610742440;1;False;False;anime;t5_2qh22;;0;[]; -[];;;ValidationEngineer;;;[];;;;text;t2_11t0fpgk;False;False;[];;"Declaration of 5 waifus indeed - -Whats with these animes and war lmao";False;False;;;;1610658740;;False;{};gj9siiv;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9siiv/;1610742465;29;True;False;anime;t5_2qh22;;0;[]; -[];;;Swyfti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Swyfty;light;text;t2_ce1yn;False;False;[];;Hopefully Cloverworks manages to finish all these series without any major production issues.;False;False;;;;1610658837;;False;{};gj9srmo;False;t3_kxd55a;False;False;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gj9srmo/;1610742623;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;True;[];;Thursday's are the front line of the karma wars. Look at the front page of the sub it's insane.;False;False;;;;1610658880;;False;{};gj9svgo;False;t3_kxepsc;False;False;t1_gj9rlpq;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9svgo/;1610742702;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Damarugaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Damarugaki/;light;text;t2_6zyxfkgg;False;False;[];;"More like a ""rack""";False;False;;;;1610658894;;False;{};gj9swt2;False;t3_kxepsc;False;False;t1_gj9s2vg;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9swt2/;1610742727;78;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610658949;moderator;False;{};gj9t1x4;False;t3_kxezbz;False;True;t3_kxezbz;/r/anime/comments/kxezbz/shot_in_the_dark_here_i_am_looking_for_an_anime/gj9t1x4/;1610742826;1;False;False;anime;t5_2qh22;;0;[]; -[];;;NotAMoron2;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/SudoSen;dark;text;t2_2l3p4ut;False;False;[];;Bright thing, discussion threads are more easy to find;False;False;;;;1610658969;;False;{};gj9t3sh;False;t3_kxepsc;False;False;t1_gj9svgo;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9t3sh/;1610742858;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610659186;moderator;False;{};gj9tnbd;False;t3_kxf25z;False;True;t3_kxf25z;/r/anime/comments/kxf25z/anime_or_manga_for_one_piece/gj9tnbd/;1610743228;1;False;False;anime;t5_2qh22;;0;[]; -[];;;DemacianRage;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/DemacianRage;light;text;t2_13e4dr;False;False;[];;Maybe try https://myanimelist.net/anime/36094/Hakumei_to_Mikochi;False;False;;;;1610659243;;False;{};gj9tss6;False;t3_kxewol;False;True;t3_kxewol;/r/anime/comments/kxewol/need_help_with_an_anime/gj9tss6/;1610743330;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610659293;;False;{};gj9txig;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9txig/;1610743416;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Archilian;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_1jw9y2dz;False;False;[];;They really took all of fuutaro’s budget for his eyes and gave it to the girls this episode;False;False;;;;1610659359;;False;{};gj9u3ke;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9u3ke/;1610743527;26;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"I really liked it, its just a fun lighthearted show especially if you enjoy Fate. - -Yeah some of the fan service (mainly when Chloe needing mana is involved) can be weird, but Illya’s reactions make the show hilarious";False;False;;;;1610659427;;1610660077.0;{};gj9ua44;False;t3_kxetyy;False;True;t3_kxetyy;/r/anime/comments/kxetyy/what_are_your_thoughts_on_prisma_illya/gj9ua44/;1610743693;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Insertblamehere;;;[];;;;text;t2_r4h51xz;False;False;[];;"The anime is awful, just read the manga. The animation isn't anything to write home about but the PACING is the problem, they drag out 20 page chapters into entire 20 minute episodes. - -If you HAVE to watch the anime, switch to one pace after the time skip.";False;False;;;;1610659493;;False;{};gj9ugc2;False;t3_kxf25z;False;False;t3_kxf25z;/r/anime/comments/kxf25z/anime_or_manga_for_one_piece/gj9ugc2/;1610743824;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Prince-Dizzytoon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/princedizzytoon;light;text;t2_mu0df;False;False;[];;"It looks like they skipped the conversation between Futaro and [mysterious girl's name](/s ""Rena-san""), hope some of it is in the next episode";False;False;;;;1610659516;;False;{};gj9uifu;False;t3_kxepsc;False;False;t1_gj9r2tr;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9uifu/;1610743861;31;True;False;anime;t5_2qh22;;0;[]; -[];;;ATargetFinderScrub;;ANI a-amq;[];;https://anilist.co/user/ATargetFinderScrub/animelist;dark;text;t2_5vo76d;False;False;[];;[Big anticipated showdown. I am all in on Miku. Got my money on her](https://i.imgur.com/ZNgllWy.jpg);False;False;;;;1610659523;;False;{};gj9uj2y;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9uj2y/;1610743873;7;True;False;anime;t5_2qh22;;0;[]; -[];;;RockoDyne;;MAL;[];;https://myanimelist.net/profile/RockoDyne;dark;text;t2_g4ooj;False;False;[];;I was thinking something League of Legends related on top of that. Seems to be pretty common combo.;False;False;;;;1610659595;;False;{};gj9upo6;False;t3_kxdhtn;False;True;t1_gj9l37b;/r/anime/comments/kxdhtn/does_anybody_know_what_animemanga_this_comes_from/gj9upo6/;1610743996;1;True;False;anime;t5_2qh22;;0;[]; -[];;;miyukez;;;[];;;;text;t2_149oji48;False;False;[];;"I'm not surprised. Cloverworks is basically A1 wearing a fake mustache. - -They were originally one of A1's many studios, and named themselves Cloverworks to get some individuality. They recently officially ""separated"" from A1, but they are still owned by the same people. - -I wouldn't worry so much about them handling this workload either. A1's always been good at handling a lot of decently animated shows. Generally speaking, they have a reputation for having wonderful originals but sucking at faithful adaptations. While Cloverworks is technically no longer A1, they still totally have that distinctive art-style... So we'll see how they end up.";False;False;;;;1610659609;;False;{};gj9uqwq;False;t3_kxd55a;False;False;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gj9uqwq/;1610744020;51;True;False;anime;t5_2qh22;;0;[]; -[];;;sremcanin;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/mrkvaa;light;text;t2_4xt3dgl2;False;False;[];;Read the colored manga, I've read almost 400 chapters and I'm having a blast.;False;False;;;;1610659676;;False;{};gj9ux75;False;t3_kxf25z;False;False;t3_kxf25z;/r/anime/comments/kxf25z/anime_or_manga_for_one_piece/gj9ux75/;1610744135;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610659688;;False;{};gj9uyaz;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9uyaz/;1610744155;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Prince-Dizzytoon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/princedizzytoon;light;text;t2_mu0df;False;False;[];;I watched 7 different episodes today. It's a lot to keep up with;False;False;;;;1610659721;;False;{};gj9v1g9;False;t3_kxepsc;False;False;t1_gj9rlpq;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9v1g9/;1610744216;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Parker_memes9000;;;[];;;;text;t2_1w2hgm47;False;False;[];;I'm planning on reading on the VIZ manga app. Where is the colored version available for free? I'd rather not pay for another service or buy the whole thing;False;False;;;;1610659741;;False;{};gj9v38s;True;t3_kxf25z;False;False;t1_gj9ux75;/r/anime/comments/kxf25z/anime_or_manga_for_one_piece/gj9v38s/;1610744247;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Parker_memes9000;;;[];;;;text;t2_1w2hgm47;False;False;[];;Sick thanks mate;False;False;;;;1610659750;;False;{};gj9v42t;True;t3_kxf25z;False;True;t1_gj9ugc2;/r/anime/comments/kxf25z/anime_or_manga_for_one_piece/gj9v42t/;1610744262;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Steppy117;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Steppy117;light;text;t2_13oqbeb9;False;False;[];;Yes, more please;False;False;;;;1610659760;;False;{};gj9v54e;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9v54e/;1610744282;9;True;False;anime;t5_2qh22;;0;[]; -[];;;DecentlySizedPotato;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/ocha94;light;text;t2_5f0gxk9t;False;False;[];;I remember Sora no Aosa wo Shiru Hito yo was gorgeous, and a pretty good movie too. Fate/GO Zettai Majuu Sensen Babylonia had amazing animation as well, and not only in fights. I've watched everything Cloverworks has made so far, and outside of P5A which looked pretty potato, the rest all looked great.;False;False;;;;1610659843;;False;{};gj9vcly;False;t3_kxd55a;False;False;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gj9vcly/;1610744413;7;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;This will be DMCA'd.;False;False;;;;1610659890;;False;{};gj9vh02;False;t3_kxf2eu;False;True;t3_kxf2eu;/r/anime/comments/kxf2eu/jujutsu_kaisen_2nd_cour_opening_vivid_vice_by/gj9vh02/;1610744486;2;True;False;anime;t5_2qh22;;0;[]; -[];;;whizmas;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/xjet465;light;text;t2_14gyc2;False;False;[];;family inherited shelf;False;False;;;;1610659977;;False;{};gj9vow6;False;t3_kxepsc;False;False;t1_gj9s2vg;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9vow6/;1610744621;134;True;False;anime;t5_2qh22;;0;[];True -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610659979;;False;{};gj9vp3s;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9vp3s/;1610744624;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DadAsFuck;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DadAsFuck;light;text;t2_peaym;False;False;[];;[cursed fuutarou](https://imgur.com/a/uiUM3Ed);False;False;;;;1610659992;;False;{};gj9vqa1;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9vqa1/;1610744645;230;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610660010;moderator;False;{};gj9vrqx;False;t3_kxepsc;False;True;t1_gj9vp3s;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9vrqx/;1610744671;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Garlicbread10;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;ereh;dark;text;t2_8zn7f5o;False;False;[];;The director wanted this to not be uploaded until after the episode aired. Probably for the best to delete it;False;False;;;;1610660026;;False;{};gj9vt6s;False;t3_kxf2eu;False;True;t3_kxf2eu;/r/anime/comments/kxf2eu/jujutsu_kaisen_2nd_cour_opening_vivid_vice_by/gj9vt6s/;1610744698;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Frontier246;;;[];;;;text;t2_an8rjvo;False;False;[];;"If Futaro is anything, it's dedicated to whatever he sets his mind to do, and that's something Itsuki seems to really admire and respect about him. - -Tensions between Miku and Nino continue in this episode and pretty much blow up once the topic of Futaro comes up. I liked Miku defending the guy she likes, but Nino still won't accept Futaro's place in their family and how he's changed them, which is enough to make Itsuki slap her for her behavior. Of course, Nino is the type to slap back. - -""Domestic violence meat monster."" Can't say I've ever heard that one before. - -I love how Futaro and Miku walk in on Nino sipping champagne (underage drinking, huh?) and with a face-mask on. The perks of looking alike. - -Nino is still thinking about Kintaro-kun. Maybe the way for Futaro to get through to her is to dress up as her crush and talk to her? - -Yeah, Itsuki acts like this proper, intelligent, rich girl but...she's also kind of a ditz, forgetting her wallet twice and getting stuck living at the home of her tutor, which is apparently the only other place she can think to go when she practically runs away from home on principle. This girl... - -Itsuki in a tracksuit! - -So apparently the Nakano's weren't always rich girls, even if their behavior might imply otherwise, and were struggling under poverty like Futaro and his family with their mother as she desperately tried to provide for her five daughters. And in comes the Nakano's current father, who isn't their biological father, and we get the Nakano sisters as they are now. - -Futaro and Itsuki's little nighttime talk was pretty cute and romantic, especially when they decided on being ""mom"" and ""dad."" Itsuki's behavior with her sister suddenly makes a lot of sense with the reveal that she's been deliberately trying to be the sisters' mother figure after their mom passed. Although it seems like Futaro is the type to use his spouse as a shield the moment he throws Itsuki at whatever creeped up on them. - -It doesn't seem like the other sisters will be much help in resolving this situation, since Yotsuba's joined the track team, Ichika has her acting career, and Miku is basically isolating herself. - -Poor Futaro...considers hurting himself if it means bringing the sisters together, only to then realize that it probably wouldn't actually accomplish that. - -So, we seemingly meet the grown up version of the girl Futaro met as a child...which begs the question who the heck she is if she's not one of the Nakano sisters. An aunt? A cousin? And what the heck happened that landed Futaro in water? - -Do I detect a glimmer of a smile on Nino's face as she complains about Futaro not leaving her alone? And then she invites him up to her room to clean up. I think we'll be getting a very interesting conversation next episode.";False;False;;;;1610660088;;False;{};gj9vym0;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9vym0/;1610744811;55;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610660103;;False;{};gj9w00q;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9w00q/;1610744840;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;Getting bitch slapped is no joke from Itsuki;False;False;;;;1610660127;;False;{};gj9w27z;False;t3_kxepsc;False;False;t1_gj9scb3;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9w27z/;1610744878;40;True;False;anime;t5_2qh22;;0;[]; -[];;;alexjb12;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/alexjb12;dark;text;t2_147sr8;False;False;[];;I was a Miku simp in s1 but have come around to see the qualities in each of the girls after rewatching that and starting s2. This is one of those shows I can sit through and just get lost in.;False;False;;;;1610660144;;False;{};gj9w3tq;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9w3tq/;1610744908;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Prince-Dizzytoon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/princedizzytoon;light;text;t2_mu0df;False;False;[];;Boob shelf is undefeated;False;False;;;;1610660154;;False;{};gj9w4sc;False;t3_kxepsc;False;False;t1_gj9s2vg;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9w4sc/;1610744924;37;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;Cloverworks delivering this season.;False;False;;;;1610660167;;False;{};gj9w60h;False;t3_kxd55a;False;False;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gj9w60h/;1610744946;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;Discussion threads always make it to the frontpage anyway.;False;False;;;;1610660171;;False;{};gj9w6bk;False;t3_kxepsc;False;False;t1_gj9t3sh;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9w6bk/;1610744952;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610660184;moderator;False;{};gj9w7jx;False;t3_kxepsc;False;True;t1_gj9uyaz;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9w7jx/;1610744972;2;True;False;anime;t5_2qh22;;0;[]; -[];;;denjosh09;;;[];;;;text;t2_32a8r3gm;False;False;[];;can you link it to me, sorry somebody just gave it to me and I have no idea how he got it;False;False;;;;1610660188;;False;{};gj9w7vk;False;t3_kxf2eu;False;True;t1_gj9vt6s;/r/anime/comments/kxf2eu/jujutsu_kaisen_2nd_cour_opening_vivid_vice_by/gj9w7vk/;1610744979;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610660200;;False;{};gj9w8zh;False;t3_kxepsc;False;True;t1_gj9uifu;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9w8zh/;1610744998;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cbizzle14;;;[];;;;text;t2_ew2y7;False;False;[];;Itsuki went up the ranks for me on this episode. I was cheering when she slapped Nino. Seeing Miku get legit mad too was interesting to see as well. Are there any anime onlies that favor Nino? I know manga readers fawn over her.;False;False;;;;1610660247;;False;{};gj9wda0;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9wda0/;1610745069;184;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;"> And then she invites him up to her room to clean up. I think we'll be getting a very interesting conversation next episode. - -6 digit episode next week?";False;False;;;;1610660272;;False;{};gj9wfmx;False;t3_kxepsc;False;False;t1_gj9vym0;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9wfmx/;1610745109;74;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;Wow, I honestly wasn't expecting to see a conflict like the one Nino had with Miku and then with Itsuki today.;False;False;;;;1610660286;;False;{};gj9wgvr;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9wgvr/;1610745131;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Jorel7521;;;[];;;;text;t2_3c35tunc;False;False;[];;"I’ve been waiting to see the slap for almost a year. - -Nino went full tsundere this episode. But the train only picks up steam from here.";False;False;;;;1610660294;;False;{};gj9whm2;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9whm2/;1610745143;12;True;False;anime;t5_2qh22;;0;[]; -[];;;AcantiTheGreat;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/AcantiTheGreat;light;text;t2_16x356;False;False;[];;"You know, in the first half of the episode I was like ""Damn this seems a little far for a small argument"" then looked my relationship with my siblings and thought it honestly wasn't that bad. - -Every time I'm certain which girl is gonna win they do something else that throws a wrench in my plans. I really hope there are no plot holes in the end and I'm just getting expertly played.";False;False;;;;1610660301;;False;{};gj9wi9a;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9wi9a/;1610745154;216;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;I had Nino and Itsuki tied at the top since the end of S1 but yeah, today Itsuki certainly took a lead there. Nino still 2nd just because I find the rest pretty meeh (and that last scene);False;False;;;;1610660366;;False;{};gj9wo6e;False;t3_kxepsc;False;False;t1_gj9wda0;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9wo6e/;1610745256;53;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610660374;;False;{};gj9woxg;False;t3_kxepsc;False;True;t1_gj9uifu;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9woxg/;1610745268;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;After seeing this I can finally go and watch Tenchi Souzou Design-bu. That poor show really has a bad release time.;False;False;;;;1610660420;;False;{};gj9wszb;False;t3_kxepsc;False;False;t1_gj9rlpq;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9wszb/;1610745337;4;True;False;anime;t5_2qh22;;0;[]; -[];;;UberDueler8;;;[];;;;text;t2_485dcj1j;False;False;[];;"That well deserved bitchslap really showed off one of the best parts about Itsuki that sets her apart from the other sisters. - -She isn’t necessarily romantically interested in Fuutarou (yet?) unlike Miku. She has genuine respect for him as a person and you really don’t need more than that in order to work with each other.";False;False;;;;1610660467;;False;{};gj9wx54;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9wx54/;1610745409;289;True;False;anime;t5_2qh22;;0;[]; -[];;;Nescau_Fernando;;;[];;;;text;t2_1m6og0;False;False;[];;"As a member of the Nino Gang, the best part about the new artstyle is finally doing our Queen justice. - -[S2 Nino is gorgeous! (mini-album)](https://imgur.com/a/k96dGij)";False;False;;;;1610660480;;False;{};gj9wy91;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9wy91/;1610745436;209;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;Quick, to the store. They still have four more on stock.;False;False;;;;1610660559;;False;{};gj9x5dq;False;t3_kxepsc;False;False;t1_gj9s2vg;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9x5dq/;1610745561;26;True;False;anime;t5_2qh22;;0;[]; -[];;;NotAMoron2;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/SudoSen;dark;text;t2_2l3p4ut;False;False;[];;Today's episode was really good, really bad timing, I hope it don't get overlooked that much;False;False;;;;1610660583;;False;{};gj9x7pu;False;t3_kxepsc;False;False;t1_gj9wszb;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9x7pu/;1610745603;7;True;False;anime;t5_2qh22;;0;[]; -[];;;G1596872;;;[];;;;text;t2_qdv50;False;False;[];;Definitely what I look forward to the most on Thursdays for this season!;False;False;;;;1610660622;;False;{};gj9xbc6;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9xbc6/;1610745670;30;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;"Holy shit she's here! And did they actually gave [Spoiler name](/s ""Rena"") a different VA? Because I was straining my ears the entire time trying to figure out if they used *her* voice but it doesn't seem like it. Then again all of these VAs are very talented so it could still be *her* just doing a completely different voice that we've never heard from her before.";False;False;;;;1610660672;;False;{};gj9xfw0;False;t3_kxepsc;False;False;t1_gj9r2tr;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9xfw0/;1610745746;10;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;"the anime is kickass and the other guy who said it's awful is wrong. The quickest rule of thumb is that the first 90 episodes are good, it drags a little bit for a 100 episodes afterword, and then starting at like episode 196 (there's a dud arc sometime afterword but it's short and probably skippable) the quality gets like 4 times greater than what it started at. - -I was in [this thread with some other guy discussing a good manga-anime hybrid approach](https://www.reddit.com/r/anime/comments/j8ac6z/miscellaneous_anime_questions_week_of_october_10/g8svd8d?utm_medium=) if that's of any interest. Broadly I'd recommend basically all of the ""filler arcs,"" the anime actually goes through quite a bit of extra trouble to have these arcs connect to later points of the anime as well (occasionally some of the anime may or may not reference these points) but ultimately the ""filler""/anime-original stuff gives the series a chance to breathe and honestly it'll be over before you know it. Just my thoughts though - -EDIT: And I suppose it's worth clarifying that I did stop/pause at episode 540 and watched the English dubbed version. I'll probably jump back in it once/whenever the Dressrosa arc is fully dubbed (and yeah One Pace is probably better for that arc specifically.) I'm vaguely aware of the plot points that happen later in the series's run though";False;False;;;;1610660677;;1610660858.0;{};gj9xgd1;False;t3_kxf25z;False;True;t3_kxf25z;/r/anime/comments/kxf25z/anime_or_manga_for_one_piece/gj9xgd1/;1610745754;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DadAsFuck;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DadAsFuck;light;text;t2_peaym;False;False;[];;*eurobeat intensifies*;False;False;;;;1610660695;;False;{};gj9xhzv;False;t3_kxepsc;False;False;t1_gj9x5dq;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9xhzv/;1610745781;12;True;False;anime;t5_2qh22;;0;[]; -[];;;NotAMoron2;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/SudoSen;dark;text;t2_2l3p4ut;False;False;[];;I usually go to discussion threads through autolovepon profile;False;False;;;;1610660698;;False;{};gj9xi94;False;t3_kxepsc;False;False;t1_gj9w6bk;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9xi94/;1610745785;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DerUbi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/UbiMAL;light;text;t2_yd37y;False;False;[];;"I hate Nino with a passion. Really needs to quit behaving like a snot nosed brat all the time. - -Can't wait for her to realize who Kintaro really is. - -Also my man Futaro just going for a walk in his freaking PJs of all things haha";False;False;;;;1610660705;;False;{};gj9xixj;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9xixj/;1610745796;21;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkishOne2;;;[];;;;text;t2_3yst3w2k;False;False;[];;"Uesugi fixing Yotsuba's ribbon filled up my serotonin bar for the week. -And Nino you big tsundere... hope they will all make up soon";False;False;;;;1610660761;;False;{};gj9xo4f;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9xo4f/;1610745881;230;True;False;anime;t5_2qh22;;0;[]; -[];;;Eunnai;;;[];;;;text;t2_77zwdxvs;False;False;[];;The early episodes are fine but it starts dragging out later into the anime like they would play the same scene cut to a new scene and cut back to the previous scene because they need to stretch it out so that they can make 1 chapter from the manga into 1 episode;False;False;;;;1610660787;;False;{};gj9xqi1;False;t3_kxf25z;False;True;t3_kxf25z;/r/anime/comments/kxf25z/anime_or_manga_for_one_piece/gj9xqi1/;1610745924;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bryan792;;;[];;;;text;t2_3np8f;False;True;[];;weekly **Church of Miku** checkin;False;False;;;;1610660793;;False;{};gj9xr38;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9xr38/;1610745935;188;False;False;anime;t5_2qh22;;0;[]; -[];;;FanGothic2;;;[];;;;text;t2_16ljno;False;False;[];;"They skipped [spoiler source] (/s ""Rena's conversation (which will probably be explained in conversation with nino) but also, IIRC the scene with Nino and Fuutaro and the bracelet got shortened right?"")";False;False;;;;1610660889;;False;{};gj9xzsn;False;t3_kxepsc;False;False;t1_gj9r2tr;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9xzsn/;1610746089;8;True;False;anime;t5_2qh22;;0;[]; -[];;;HereticalAegis;;;[];;;;text;t2_6xeubalv;False;False;[];;"Itsuki's out here making power moves. The slap, crashing at Futaro's place, moonlit walks. She must've realized how far behind she fell in season 1. - -Nino's doing her damndest to steal the the Tsundere spotlight from Itsuki. I could feel the ""it's not like I like you or anything, baka!"" through the screen in that last scene. - -Meanwhile, the biggest travesty is best girl Miku being left all alone at home. I demand more Miku screentime to make up for this offense.";False;False;;;;1610660894;;False;{};gj9y0ag;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9y0ag/;1610746097;71;True;False;anime;t5_2qh22;;0;[]; -[];;;BenDTU;;;[];;;;text;t2_mbfrs;False;False;[];;"Them skipping *those* chapters makes me think we’re hurtling towards an anime original ""Go read the manga / go play the VN"" ending.";False;False;;;;1610660906;;False;{};gj9y1ct;False;t3_kxepsc;False;False;t1_gj9r2tr;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9y1ct/;1610746115;17;True;False;anime;t5_2qh22;;0;[]; -[];;;myrmonden;;;[];;;;text;t2_f0rs6;False;False;[];;here I thought stone wars was gonna be the BIGGEST WAR to start today.;False;False;;;;1610660912;;False;{};gj9y1xw;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9y1xw/;1610746126;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Irru;;;[];;;;text;t2_5so5d;False;False;[];;"Nino wearing the outfit that was bought in the skipped chapters... - -Come on man";False;False;;;;1610661034;;False;{};gj9yc2r;False;t3_kxepsc;False;False;t1_gj9y1ct;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9yc2r/;1610746302;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ohaimike;;;[];;;;text;t2_5ovb2;False;False;[];;"Enjoyed it more than the main Fate series. - -Illya was my favorite character, so it was only natural I'd love a spin-off series involving her.";False;False;;;;1610661052;;False;{};gj9yddd;False;t3_kxetyy;False;False;t3_kxetyy;/r/anime/comments/kxetyy/what_are_your_thoughts_on_prisma_illya/gj9yddd/;1610746325;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ake_vi_no;;;[];;;;text;t2_8ao51hg5;False;False;[];;Hitler Fuutarou;False;False;;;;1610661062;;False;{};gj9ye4c;False;t3_kxepsc;False;False;t1_gj9vqa1;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9ye4c/;1610746339;178;True;False;anime;t5_2qh22;;0;[]; -[];;;tdawinner;;MAL;[];;http://myanimelist.net/animelist/tdawinner;dark;text;t2_l9s6c;False;False;[];;She had the same credit as the flashback girl from last episode. She was voiced by Kyouka Yuuki, who does not voice any of the sisters.;False;False;;;;1610661100;;False;{};gj9ygu5;False;t3_kxepsc;False;False;t1_gj9xfw0;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9ygu5/;1610746391;16;True;False;anime;t5_2qh22;;0;[]; -[];;;BenDTU;;;[];;;;text;t2_mbfrs;False;False;[];;I mean I dunno why else they’d skip them?;False;False;;;;1610661106;;False;{};gj9yhaw;False;t3_kxepsc;False;True;t1_gj9yc2r;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9yhaw/;1610746399;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ake_vi_no;;;[];;;;text;t2_8ao51hg5;False;False;[];;The most legendary sauce;False;False;;;;1610661168;;False;{};gj9ym3r;False;t3_kxepsc;False;False;t1_gj9wfmx;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9ym3r/;1610746487;52;True;False;anime;t5_2qh22;;0;[]; -[];;;Irru;;;[];;;;text;t2_5so5d;False;False;[];;No I'm agreeing with you, it's ridiculous. But they didn't even bother changing Nino's outfit to something else, cause it was bought in the chapters they skipped.;False;False;;;;1610661177;;False;{};gj9ymtn;False;t3_kxepsc;False;False;t1_gj9yhaw;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9ymtn/;1610746501;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Anon199760;;;[];;;;text;t2_49baaa9v;False;False;[];;"Same here, I'm waiting for whatever magic the manga readers say is gonna make me like Nino even a little bit... - -Fuutaro needs to stop playing along with her little power trip sheesh";False;False;;;;1610661295;;False;{};gj9yw13;False;t3_kxepsc;False;False;t1_gj9xixj;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9yw13/;1610746678;12;True;False;anime;t5_2qh22;;0;[]; -[];;;ake_vi_no;;;[];;;;text;t2_8ao51hg5;False;False;[];;Great analysis. As someone who has finished the manga---don't worry I won't spoil anything--- I appreciate your thoughts that I certainly wasn't paying attention to back then;False;False;;;;1610661330;;False;{};gj9yyrc;False;t3_kxepsc;False;False;t1_gj9vym0;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9yyrc/;1610746729;15;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;Still here. All the way to the end.;False;False;;;;1610661344;;False;{};gj9yzr9;False;t3_kxepsc;False;False;t1_gj9xr38;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9yzr9/;1610746746;28;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;"> Meanwhile, the biggest travesty is best girl Miku being left all alone at home. I demand more Miku screentime to make up for this offense. - -Word!";False;False;;;;1610661354;;False;{};gj9z0nc;False;t3_kxepsc;False;False;t1_gj9y0ag;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9z0nc/;1610746764;11;True;False;anime;t5_2qh22;;0;[]; -[];;;WaterPot75;;;[];;;;text;t2_1lzc6cbg;False;False;[];;Didn’t itsuki pretty much confess? She said the moon was pretty, but I’m not sure if that’s exclusively a guy to girl thing.;False;False;;;;1610661393;;False;{};gj9z3k3;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9z3k3/;1610746818;89;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;Nice. Keep watching;False;False;;;;1610661406;;False;{};gj9z4lp;False;t3_kxfr5x;False;True;t3_kxfr5x;/r/anime/comments/kxfr5x/im_new_to_anime_and_ive_ranked_the_ones_that_ive/gj9z4lp/;1610746840;1;True;False;anime;t5_2qh22;;0;[]; -[];;;H-Ryougi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DizzyAvocado/animelist;light;text;t2_pr24s;False;False;[];;I like it a lot. Might be a controversial take but I enjoyed the early, light-hearted and fanservice filled seasons more than 3rei and the movie.;False;False;;;;1610661437;;False;{};gj9z6y9;False;t3_kxetyy;False;True;t3_kxetyy;/r/anime/comments/kxetyy/what_are_your_thoughts_on_prisma_illya/gj9z6y9/;1610746889;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ake_vi_no;;;[];;;;text;t2_8ao51hg5;False;False;[];;Now that you mention it, she *is* home alone most of the time. I thought Yotsuba and Ichika were there but they're busy with track and work, damn u just made me sad;False;False;;;;1610661549;;False;{};gj9zfh6;False;t3_kxepsc;False;False;t1_gj9y0ag;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9zfh6/;1610747058;18;True;False;anime;t5_2qh22;;0;[]; -[];;;GonTheDinosaur;;MAL;[];;http://myanimelist.net/animelist/gon7T;dark;text;t2_dzokm;False;False;[];;"So they skipped 3 chapters, IMO that's not biggie because they can speed up plot progress to gain traction and fill in those stand-alone chapters later or as OVAs. - -What surprised me, was they adapter 4 chapters and still have extra 1.5min, likely the reason of shuffling conversation with Kyoto girl. - -And here I thought Itsuki slap and appearance of Kyoto girls make good cliffhangers for ep2 and 3...";False;False;;;;1610661582;;False;{};gj9zhym;False;t3_kxepsc;False;True;t1_gj9r2tr;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9zhym/;1610747108;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610661595;;False;{};gj9ziyq;False;t3_kxepsc;False;True;t1_gj9wi9a;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9ziyq/;1610747128;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;Same actually but how does that make it easier compared to other days then?;False;False;;;;1610661604;;False;{};gj9zjm8;False;t3_kxepsc;False;True;t1_gj9xi94;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9zjm8/;1610747142;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GonTheDinosaur;;MAL;[];;http://myanimelist.net/animelist/gon7T;dark;text;t2_dzokm;False;False;[];;Better be... unlike chapter 36-38, the conversation with Kyoto girl directly impacts progression of 7 goodbyes arc.f;False;False;;;;1610661670;;False;{};gj9zoji;False;t3_kxepsc;False;False;t1_gj9uifu;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9zoji/;1610747238;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"[](#yuishrug) - -She did say the thing in Japanese as well, surprised Fuutaro didn't say anything about it. - - -Edit: Unless the Japanese has to be just exactly ""Tsuki ga kirei"" without the extra stuff I guess.";False;False;;;;1610661678;;False;{};gj9zp3l;False;t3_kxepsc;False;False;t1_gj9z3k3;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9zp3l/;1610747249;29;True;False;anime;t5_2qh22;;0;[]; -[];;;Nietschzesuperhuman;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Doc_McCoy?status=7&order=4&ord";light;text;t2_vk6p0;False;False;[];;"For anyone wondering, saying ""The moon tonight is beautiful"" and any variations thereof is a literary way of saying ""I love you"". - -Itsuki didn't know this, that's why Fuutarou was at first embarassed, but later understood that she is just not enough well-read to know it.";False;False;;;;1610661681;;False;{};gj9zpd4;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9zpd4/;1610747253;401;True;False;anime;t5_2qh22;;0;[]; -[];;;Mana_Croissant;;;[];;;;text;t2_30m68690;False;False;[];;I only realized After seeing her without bangs but DAMN Her Forehead is TAKAGI level;False;False;;;;1610661722;;False;{};gj9zsdt;False;t3_kxepsc;False;False;t1_gj9wy91;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9zsdt/;1610747310;101;True;False;anime;t5_2qh22;;0;[]; -[];;;Lunawalker;;;[];;;;text;t2_12pwid;False;False;[];;I think trying to find your main character on [http://www.animecharactersdatabase.com/](http://www.animecharactersdatabase.com/) is your best bet if you can only think of blue/blue-ish hair and monsters as information about the series, good luck!;False;False;;;;1610661732;;False;{};gj9zt3q;False;t3_kxezbz;False;True;t3_kxezbz;/r/anime/comments/kxezbz/shot_in_the_dark_here_i_am_looking_for_an_anime/gj9zt3q/;1610747323;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610661736;;False;{};gj9ztfo;False;t3_kxepsc;False;True;t1_gj9wfmx;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9ztfo/;1610747330;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nietschzesuperhuman;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Doc_McCoy?status=7&order=4&ord";light;text;t2_vk6p0;False;False;[];;"She is not well-read enough to know what it meant. That's why she ""needs to study more"".";False;False;;;;1610661747;;False;{};gj9zu8e;False;t3_kxepsc;False;False;t1_gj9z3k3;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9zu8e/;1610747345;189;True;False;anime;t5_2qh22;;0;[]; -[];;;NotAMoron2;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/SudoSen;dark;text;t2_2l3p4ut;False;False;[];;"Not that much scrolling when all discussions are stack together - -Don't underestimate my laziness XD";False;False;;;;1610661760;;False;{};gj9zv6l;False;t3_kxepsc;False;True;t1_gj9zjm8;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9zv6l/;1610747363;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ake_vi_no;;;[];;;;text;t2_8ao51hg5;False;False;[];;Agreed;False;False;;;;1610661787;;False;{};gj9zx8g;False;t3_kxepsc;False;False;t1_gj9xo4f;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gj9zx8g/;1610747403;22;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;"**Episode 13 (rewatcher)** - -* Time to grow up Yuu: Haruka needs you. -* The best lies are the ones you do not need to even tell, just refuse to correct a misconception with the truth. -* Hello again, Atori! *Not sure how many first timers expect you. I for sure forgot your arc was not over yet.* -* Again, an important subtext: Yuu and Haruka called an adult to help them out. The normal, yet uncommon in anime, reaction. -* “He won’t pose a threat to you. I promise.” – Don’t make promises you can’t keep, Tobi. -* Isami has had enough of Yuu’s brooding and acts. -* “Think they have noticed us” – No shit, Sherlock. -* CGI cars don’t look like anything I want to drive in. -* Sensai driving to fast goes back, at least, to Azumanga Daioh. -* Karasu is leaching his dead friend to heal. Hope a little bit was left for Atori, he looked beat-up, too. -* Meanwhile Metal-eye sabotages La’cryma like the traitor he is. - -Out of all seven birds, three are on team Haruka now, two are dead, and one is a traitor. Not a great run for La’cryma. - -> What's the craziest thing you've done while driving a car? - -Chase an elk.";False;False;;;;1610661803;;False;{};gj9zyec;False;t3_kxfx0n;False;False;t3_kxfx0n;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gj9zyec/;1610747425;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;"First timer - -Sub - -So we again jump back on scene in a way that makes you check to see if you have the correct episode. But Yuu goes to apparently expiring Karasu and states the obvious. And then Haruka fucks up Yuu's day by pointing out he should protect her. All works in character but still, F for Yuu's normality. - -Atori somehow survived but is looking pretty fucked up. And he has...AMNESIA!!!!!!!!!!!!! What did I ever do to deserve all this fucking amnesia? Oh right, my adult life. Good times and I am not apologizing. Over the first warehouse, the kids called in their teacher. This is both silly and yet perfectly correct developmentally. Researchers are heading to Haruka's house. - -Accidental run in with now innocent Atori and we will get his backstory about his sister. Not a huge fan of the turn but oh well. Anyways, he's now mostly harmless so the gang brings them to the warehouse. Yuu *correctly* blows up at them as that was mighty stupid on a number of levels. Haruka continues to annoy Yuu by being insanely lacking in fear or sense and I begin to get inklings of how we get Karasu. Anyways, Tobi diagnoses him as doomed. We finally get Reizu established, not a great look at ep13. Anyways, phlebotinum save point is found and quick cut to La'cryma again having terrible security. - -Researchers get nothing but Uchida deduces that Takaya doesn't live there do to the lack of men's shoes. And then make a very high ranked spot check to see Haruka and then a successful drive check to not get hit by the tram. Yuu's pissed at himself, not that I don't understand, but notices they are being followed first. Yukie temporarily becomes Yukira-sensei as she tries to outrun the researchers. Cow look is mood right here. Now, since I think few of you have learned Japanese, the chase ends with Uchida yelling ""Why that brainless little bitch!"" and I am curious if that isn't harsher than what it was in Japanese? - -Anywho, they arrive, Kosagi ports in, and Atori goes all Gandalf for whatever reason. As Tobi fixes Karasu we get clear proof that funny weather is related to the show's quantum phenomena. Karasu's healing doesn't take at first and Yuu wells at future self, something that Karasu has completely had coming. Kosagi wins and is bitchy, but Atori won't stay down and remembers his powers, during the use of which she gets recalled. Tobi does not believe in the fate aspect of all of this. Karasu talks to the dead, oof. - -QotD: 1 I am actually pretty tame, I've had to grab the wheel from the passenger seat a few times I suppose. - -2 Amnesia is always a miss for me";False;False;;;;1610661819;;False;{};gj9zzkq;False;t3_kxfx0n;False;False;t3_kxfx0n;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gj9zzkq/;1610747448;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;False;[];;"###First Timer -Now that Atori's gone, who gets to be the completely unhinged guy? Perhaps Karasu as he slowly comes apart for being in the wrong world? -Well, there's only one way to find out. Onto episode 13. - -~~Should I know who Tobi is? I certainly could have just forgot a name.~~ I remembered. - -She's seen him too long in [this state](blob:https://imgur.com/4801d825-e67c-4a8d-bd25-1c9467750ed4) to fix it, at least with her rather shaky control over her power. - -[2]Yuu, I understand you're panicking, but this really isn't the time to be [racist](https://i.imgur.com/6bgVQjo.png) (speciesist)? You know Karasu wouldn't ever hurt her. - -[Worst possible thing](https://i.imgur.com/OixEmrp.png) you could have said for $500. -[](#facepalm2) - -Are these [swords](https://i.imgur.com/ZfvPt3E.png) just an aesthetic thing, or do they mean something? - -[](#hahahawhat) -[He's not dead?](https://i.imgur.com/RuWnfqy.png) - -[wat](https://i.imgur.com/sSNYvMK.png) - -Is Atori her older brother in his dimension? But he wasn't born in this one and his sister's name is different? Or is his brain just so jumbled at this point that he's doing random crazy stuff? - -Oh, Atori's [gonna sacrifice himself](https://i.imgur.com/EAYyySB.png) for Karasu in the end. - -[Ok, I guess?](https://i.imgur.com/kCBZFk8.png) We didn't even know this was a potential problem until now, so bringing it up like this feels pretty weak. - -Was that [not implied](https://i.imgur.com/hRGNIWz.png) by the divorce? Doesn't hurt to double check, I guess? - -Still on your [pity trip](https://i.imgur.com/b6Jr5Fp.png), I see. -Thankfully, Yuu has good friends. - -""[What I do for love.](https://i.imgur.com/Oy0Bshy.png)"" - -This is again [suffering from](https://i.imgur.com/QNq7nLn.png) ""whatever the hell that means"" syndrome. It's fine in the first few episodes, but I don't enjoy not knowing what people are talking about this far into a series. I mean yes I get that she's saying that Haruka can do something that may get everything back on track, but we have no idea at all how or why or why it would be this dimension. - -Please [go out](https://i.imgur.com/XngrCU3.png) crazy 'till the end. - -After all, [if it was](https://i.imgur.com/LKarbBp.png), what's the point of going through all this suffering to try and change it? -This is a tenet of faith, not a well thought out belief. - -I wonder if [she realizes](https://i.imgur.com/C7u4bky.png) she can only kidnap Haruka because Haruka's resigned herself to it? - -This is [very pretty](https://i.imgur.com/FdXj6Qt.png). - -The birds continue to be better at [fighting each other](https://i.imgur.com/rAJFzvl.png) than their enemy. I'm surpised that the council couldn't properly beat them into working together. - -I'm legitimately surprised Atori survived this episode. - -But is it really [making your own choices](https://i.imgur.com/x3047zd.png) if your entire personality was erased? - -####Thoughts -We're running out of birds pretty quickly, so I'm curious what will happen when there's none of them left? Is our focus going to shift to Noein instead of La'cramiya in four episodes or so? It seems possible, though there's not really been anything hinting towards it yet. I just feel like we need to give it a good few episodes eventually. - -1. I don't think I've done anything crazy? I don't trust myself enough for that. -2. He's a nicer person, but I hope he doesn't end like this. That would just feel cheap.";False;False;;;;1610661820;;False;{};gj9zzou;False;t3_kxfx0n;False;False;t3_kxfx0n;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gj9zzou/;1610747450;8;True;False;anime;t5_2qh22;;0;[]; -[];;;BurningFredrick;;MAL;[];;https://myanimelist.net/profile/BurningFredrick;dark;text;t2_74w5s;False;False;[];;"First Timer - sub - - -How is Atori alive? - - -Observer security is shit  - - -Euro beats intensify! Also a show I should probably watch one day… - -   - -I’m also that should and been significantly more than a flat, the suspension would probably be shot as well at a minimum.  - - -Karus is healed by convenient Reizu point, doesn’t this rather invalidate the “we will eventually disappear” if they can pop over and get a top up? - - -So we have 2 people left who can jump dimensions, Shangri la double agent and Red head whose name I keep forgetting to note down.  - - -Looks like the next episode is back to interpersonal drama with Haruka dragon torquing it up to learn about her parents' past, and probably how they got together.";False;False;;;;1610661826;;False;{};gja0039;False;t3_kxfx0n;False;False;t3_kxfx0n;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja0039/;1610747458;7;True;False;anime;t5_2qh22;;0;[]; -[];;;GonTheDinosaur;;MAL;[];;http://myanimelist.net/animelist/gon7T;dark;text;t2_dzokm;False;False;[];;She's also the same VA for kid Kyoto girl from last episode.;False;False;;;;1610661829;;False;{};gja00c0;False;t3_kxepsc;False;False;t1_gj9ygu5;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja00c0/;1610747463;4;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;His dad was hitler and his mom was a racoon. Or a tanuki since we're in Japan.;False;False;;;;1610661873;;1610663123.0;{};gja03i2;False;t3_kxepsc;False;False;t1_gj9ye4c;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja03i2/;1610747527;17;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;"###Stitches! - -The ~~Eatsuki~~ Itsuki Class dominates this week as expected considering she's the main focus of the episode despite it starting with a war between Miku and Nino! - -**Itsuki Class** - -* [Scared Itsuki](https://i.imgur.com/hBspTK5.jpg) - -* [Angry Itsuki 1](https://i.imgur.com/5gZW4A3.jpg) - -* [Angry Itsuki 2](https://i.imgur.com/rJ20wMK.jpg) - -* [Hungry Eatsuki](https://i.imgur.com/fumn6FJ.jpg) - -* [Jersey Itsuki](https://i.imgur.com/RDcgNop.jpg) - -* [Moonlit Itsuki](https://i.imgur.com/OfCHA5L.jpg) - - -**Nino Gang** - -* [Angry Nino](https://i.imgur.com/MCtz1ON.jpg) - -* [Nino Glare](https://i.imgur.com/uGMqgGD.jpg) - -* [Frustrated Nino](https://i.imgur.com/yW3UVau.jpg) - -**EXTRAS** - -* [Yotsuba & Ichika](https://i.imgur.com/l6wZ8ap.jpg) - -* [Cutie Raiha](https://i.imgur.com/dR2Tkly.jpg) - -Oh Nino. I'd love to say more about her this episode but I'll leave that to the anime onlies. Although I'm sure most of it won't be pleasant considering her display of attitude this episode but do give her a chance. - -What I would like to bring up though is that we finally learn that [the Quints weren't always the rich girls](https://i.imgur.com/Nygk4Ol.png) that they are now and they used to live in poverty while their mom raised them by herself until she got married to their current dad/Uesugi employer. Seriously, their mom is a champ [for holding on as long as she could](https://i.imgur.com/c3IBpB5.png) for the five of them. T_T - -[And she's finally here!](https://i.imgur.com/UkHQrjt.png) Our mystery girl in the flesh and all grown up just like the Quints! Is she the secret 6th sister [Ichika was talking about last week?](https://i.imgur.com/BMH96u1.png) All I can say is that don't even bother try to check her VA. It's a completely different one in the credits. :D";False;False;;;;1610661884;;1610675446.0;{};gja04cl;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja04cl/;1610747547;73;True;False;anime;t5_2qh22;;0;[]; -[];;;ake_vi_no;;;[];;;;text;t2_8ao51hg5;False;False;[];;:3;False;False;;;;1610661889;;False;{};gja04n9;False;t3_kxepsc;False;False;t1_gj9yw13;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja04n9/;1610747553;10;True;False;anime;t5_2qh22;;0;[]; -[];;;CruisinCinnamon;;;[];;;;text;t2_45sei6q;False;False;[];;"I’ve seen that which is why it narrowed it down for me. In my mind I feel yotsuba/ichika aren’t really in the running. Miku as much as I like her I don’t see her mattering in the competition. I think it’s between Nino and itsuki. If I were to go on people’s dissatisfaction I’d guess Nino. I know she has a following and has her moments. She also likely gets more character development but ultimately she likely comes off unlikable to many. - -Then again it could be Itsuki and because of her character and has come off as the main girl it caused dissatisfaction.";False;False;;;;1610661934;;1610662332.0;{};gja080d;False;t3_kxepsc;False;True;t1_gj9ziyq;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja080d/;1610747624;3;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;"**First-time watcher** - -Is Karasu really going to leave the story too? I would be disappointed but unsurprised. Also what exactly does Haruka expect Yuu to be able to do? I guess they can't exactly call an ambulance, but that's no reason to put the burden on him! And the teacher is at least a trusted authority, but was entirely unaware of the whole dimension-traveling business, well I guess she's the kids' best shot. - -By the way, I noticed the church featured in various shots had an Orthodox cross on top and got curious. It's a [real Hakodate landmark](https://www.hakodate.travel/en/sightseeing_spots/shrine-temple-church/hakodate-orthodox-church) that apparently started as part of the local Russian consulate. - -Atori gets amnesiac-resurrected and Tobi still sticks around same as before, as Yuu says ""are you kidding me?"". Only two loyal dimension travelers left, if we count parts-missing guy as loyal? I guess maybe the technology and resources are lacking to make more, but it's still amazingly stupid that it's come to this point without Shangri-La doing anything to harm them. And then of course alter-Ai takes off alone too. Or, maybe it's all according to Noein's secret plan. - -I guess Miho must have a secret brother somehow, or is Atori's perception just off again? What a quick turnaround on the creep-detection front there, or the kids just think he's mentally only half there now which is actually pretty much the truth. - -So Karasu's out of particles and I recall from a while back that Haruka has a ton of them. Time for her wish? Nah, the plot demands an A-to-B quest that Uchida can tail (except with no actual change in the status quo) and alter-Ai interfere with (except that doesn't matter either), so that's what it must be. Or maybe someone just wanted a cool car chase, which I'm totally on board with except for the terrible landscape CGI and once again bizarrely unfitting music. - -Yet another dull forced confrontation that I can't see having a decisive ending (like, if you want to kill this guy so bad, maybe actually try, if not, say so, and what's all this now about the END OF THE DRAGON KNIGHTS), plus far-too-late exposition that keeping Haruka here might be the key. Sure enough, Atori does some dimension-yoinking motivated by something we never heard about before this episode, unless it's just brain rot which would be equally silly. And now we really are all about that destiny vs. freedom-of-choice, ancient stuff with plenty potential but when has this show ever delivered on much of that. - -An episode that does little more than restore the status quo with plenty of contrivances, in which I include the actual changes like Atori. Just no good, and makes me feel even more how dull the handling of the Dragon Knight ""plot"" has been. At this point I'm actually looking forward to more family drama next time. - -I'm mostly a careful driver but sometimes in clear road conditions I do speed a little.";False;False;;;;1610661937;;1610671774.0;{};gja08a1;False;t3_kxfx0n;False;False;t3_kxfx0n;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja08a1/;1610747629;7;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;Nope. She did say it was beautiful but not phrased in a way that you think it was in Japanese.;False;False;;;;1610661962;;False;{};gja0a5v;False;t3_kxepsc;False;False;t1_gj9z3k3;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja0a5v/;1610747668;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ake_vi_no;;;[];;;;text;t2_8ao51hg5;False;False;[];;I don't think she's exhibiting any romantic interest in Futaro? She definitely respects him for putting so much work into his tutoring role. I thought of it as small talk to ease the awkwardness of her crashing his home;False;False;;;;1610661975;;False;{};gja0b3v;False;t3_kxepsc;False;False;t1_gj9z3k3;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja0b3v/;1610747686;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Potatolantern;;;[];;;;text;t2_2muaukp;False;False;[];;Nino! Nino! NINO!;False;False;;;;1610661991;;False;{};gja0c97;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja0c97/;1610747708;18;True;False;anime;t5_2qh22;;0;[]; -[];;;GonTheDinosaur;;MAL;[];;http://myanimelist.net/animelist/gon7T;dark;text;t2_dzokm;False;False;[];;She appears closer to be a stereotypical tsundere in front of Fuu but has a more serious persona when it comes to be with her sisters.;False;False;;;;1610661991;;False;{};gja0c9e;False;t3_kxepsc;False;False;t1_gj9wx54;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja0c9e/;1610747708;118;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;"**to your other first-timer, subbed** - -- [NO.](https://i.imgur.com/9wLz4eg.png) - -- [Welp, she has the *completely* wrong idea here.](https://i.imgur.com/JW6gtAk.png) - -- \*baffled Sky noises\* [he DISINTEGRATED](https://i.imgur.com/9qPLqSh.png) - -- [Is that Vaad screaming I hear?](https://i.imgur.com/n3pBW5a.png) - -- […he thinks that one of them is “Sara”](https://i.imgur.com/ta0UAmx.png)? WAIT A SECOND that could be La’cryma!Miho’s na--[holy fucking shit does this mean that ***Atori*** is Lily’s father?!?!?!?!?!?!](https://i.imgur.com/cELRc2u.png) [](#cokemasterrace) - -- […oh. No. That idea just went and shot itself.](https://i.imgur.com/siOpSnd.png) - -- [](#hahahawhat) I… don’t know why it took me this long to realize that the “Reizu” they’re talking about is probably the “blue snow” we’ve seen throughout the show. - -- Looks like Tobi figured out a way to maybe save Karasu? [](#katoupls) - -- So Isami just shoved Yuu into the car. - -- How *convenient* that they all just happened to drive past Uchida and Kooriyama. [](#rinkek) - -- [This is not the turn I expected this show to take, lol](https://i.imgur.com/BUdJiZw.png). Pun absolutely intended. - -- Aight so I can forgive the convenience of Uchida spotting their car, that was *hilarious*. - -- [This sounds important.](https://i.imgur.com/346P5LN.png) - -- Atori vs. Kosagi, huh… - -- Ohp, Kosagi got yoinked back to La’cryma. - -- [](#animatedthink) Atori didn’t get to be fixed by the Reizu too?";False;False;;;;1610662022;;False;{};gja0elo;False;t3_kxfx0n;False;False;t3_kxfx0n;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja0elo/;1610747756;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610662024;;False;{};gja0er4;False;t3_kxepsc;False;False;t1_gj9zu8e;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja0er4/;1610747761;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BenDTU;;;[];;;;text;t2_mbfrs;False;False;[];;Without saying how, there are definitely some signs in this episode that we're looking at a “Go read the manga” ending for the anime. Might be worth bracing yourself accordingly.;False;False;;;;1610662037;;1610662984.0;{};gja0fnn;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja0fnn/;1610747789;14;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;" -He did. His comment about her needing to study more was because she was seemingly oblivious to its double meaning.";False;False;;;;1610662044;;False;{};gja0g9j;False;t3_kxepsc;False;False;t1_gj9zp3l;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja0g9j/;1610747802;63;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;False;[];;">Again, an important subtext: - -[](#niatilt) -How is this subtext? Isn't it just text? - ->“He won’t pose a threat to you. I promise.” – Don’t make promises you can’t keep, Tobi. - -So long as he doesn't regain his memories, he shouldn't be a threat. - ->Chase an elk. - -[](#curious) -Is there a good story there?";False;False;;;;1610662058;;False;{};gja0h8f;False;t3_kxfx0n;False;False;t1_gj9zyec;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja0h8f/;1610747821;7;True;False;anime;t5_2qh22;;0;[]; -[];;;BenDTU;;;[];;;;text;t2_mbfrs;False;False;[];;Yeah, what on earth was with that? There are multiple actually kinda important things that get skipped over this episode.;False;False;;;;1610662059;;False;{};gja0hdj;False;t3_kxepsc;False;False;t1_gj9uifu;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja0hdj/;1610747823;11;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;I fucking love them for doing this. I was afraid how they'll deal with the voice issue once she shows up. Looks like I didn't even have to worry.;False;False;;;;1610662067;;False;{};gja0hyc;False;t3_kxepsc;False;False;t1_gj9ygu5;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja0hyc/;1610747835;13;True;False;anime;t5_2qh22;;0;[]; -[];;;ake_vi_no;;;[];;;;text;t2_8ao51hg5;False;False;[];;Idk she still kinda cute with her hair up---nothing close to Android 18 tho.;False;False;;;;1610662081;;False;{};gja0iwr;False;t3_kxepsc;False;False;t1_gj9zsdt;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja0iwr/;1610747857;46;True;False;anime;t5_2qh22;;0;[]; -[];;;Barbalho;;;[];;;;text;t2_e2nuq;False;False;[];;"I always love the little Yotsuba [Ribbion grab and fix](https://imgur.com/a/jhMPM3K) moments that she and Uesugi have haha always such a cute and pure moment - -I’m really loving how this season is turning out with the art style! While it may not be better than season 1 at its best, it certainly is much more consistent overall and still quite beautiful and vibrant!";False;False;;;;1610662093;;1610662287.0;{};gja0ju6;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja0ju6/;1610747874;42;True;False;anime;t5_2qh22;;0;[]; -[];;;zsmg;;;[];;;;text;t2_ivuw5;False;False;[];;"**Rewatcher** - -They ask Fukie for help which is not surprising she's both an adult but also a cool older sibling/cousin which they can confide in. - -Atori's alive! But he lost his mind and thinks Miho is his little sister Sara. - -Hang on Fukie has racing car style seats. - -Oh, they notice the two adults are following them maybe they'll have a nice long talk... or not. - -we're Initial D now boyz, music placement is bad again, it should clearly be an Euro beat. - -[Tomorrow's episode](/s ""Sad Mum flashback :("")";False;False;;;;1610662109;;False;{};gja0l06;False;t3_kxfx0n;False;False;t3_kxfx0n;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja0l06/;1610747903;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;"> Again, an important subtext: Yuu and Haruka called an adult to help them out. The normal, yet uncommon in anime, reaction. - -We both noticed that pretty fast. Bonus points that it managed to mostly work. - -> “He won’t pose a threat to you. I promise.” – Don’t make promises you can’t keep, Tobi. - -Yeah...just because he doesn't remember he has powers doesn't mean he can't use them as we have seen. - -> -Sensai driving to fast goes back, at least, to Azumanga Daioh. - -I am just glad someone else remembers Yukari-sensei.";False;False;;;;1610662123;;False;{};gja0m31;False;t3_kxfx0n;False;False;t1_gj9zyec;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja0m31/;1610747924;5;True;False;anime;t5_2qh22;;0;[]; -[];;;GonTheDinosaur;;MAL;[];;http://myanimelist.net/animelist/gon7T;dark;text;t2_dzokm;False;False;[];;"> A lot of people were unhappy with the ending of the manga - -I took that as a sign that this series is worth invest into and all candidates are well liked. - -Very unlike many harem series, where you can spot ~2 main candidates while others are mere step-stones or ""monster of the week"".";False;False;;;;1610662129;;False;{};gja0mig;False;t3_kxepsc;False;False;t1_gj9ziyq;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja0mig/;1610747933;22;True;False;anime;t5_2qh22;;0;[]; -[];;;BenDTU;;;[];;;;text;t2_mbfrs;False;False;[];;Ah right! Yeah I dunno what they’re thinking. Seems bizarre that they’d cut that stuff given the criticisms of the manga's end.;False;False;;;;1610662158;;False;{};gja0oo2;False;t3_kxepsc;False;False;t1_gj9ymtn;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja0oo2/;1610747977;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Flaihl;;;[];;;;text;t2_8w5f7;False;False;[];;"The anime has a lot of ups and downs when it comes to pacing and animation quality. - -I would recommend you to read the manga first and if you really enjoyed it you can watch key moments in the anime after.";False;False;;;;1610662166;;False;{};gja0pa5;False;t3_kxf25z;False;True;t3_kxf25z;/r/anime/comments/kxf25z/anime_or_manga_for_one_piece/gja0pa5/;1610747990;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ake_vi_no;;;[];;;;text;t2_8ao51hg5;False;False;[];;Adding onto that, Negi had a baby at the time so he had to rush the ending in order to take care of his baby. Because of that, there wasn't enough content to develop the characters of all of the girls.;False;False;;;;1610662172;;False;{};gja0ppd;False;t3_kxepsc;False;True;t1_gj9ziyq;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja0ppd/;1610747998;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;False;[];;">What did I ever do to deserve all this fucking amnesia? - -Hey, at least it's not an MC and it happens partway into the series. I've got a feeling it's temporary as well, it being permanent would be rather unsatisfying. - ->and I begin to get inklings of how we get Karasu. - -Frustration at Haruka's inability to take steps for her own safety?";False;False;;;;1610662187;;False;{};gja0qsr;False;t3_kxfx0n;False;False;t1_gj9zzkq;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja0qsr/;1610748021;4;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;"> Atori somehow survived but is looking pretty fucked up. And he has...AMNESIA!!!!!!!!!!!!! What did I ever do to deserve all this fucking amnesia? Oh right, my adult life. - -[](#laughter) - -> Yukira-sensei - -Reference check passed!";False;False;;;;1610662188;;False;{};gja0qu9;False;t3_kxfx0n;False;False;t1_gj9zzkq;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja0qu9/;1610748022;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Parker_memes9000;;;[];;;;text;t2_1w2hgm47;False;False;[];;Yo who tf down votes my question about preference of anime over manga;False;False;;;;1610662212;;False;{};gja0sl0;True;t3_kxf25z;False;True;t3_kxf25z;/r/anime/comments/kxf25z/anime_or_manga_for_one_piece/gja0sl0/;1610748064;2;True;False;anime;t5_2qh22;;0;[]; -[];;;zsmg;;;[];;;;text;t2_ivuw5;False;False;[];;"**Rewatcher** - -Good idea with the schedule change. Not that it will affect me as I'm already 40 minute mark into Evangelion 2.0 movie but I don't think others had the same luxury of getting ahead as I did. edit: You forgot to add a break between episodes 25+26 and EoE. - -[spoilers](/s ""This will be the last in person SEELE meeting tomorrow we'll have the more iconic look"") - -So Shinji merged with the Eva, got the experience some mind imagery (first timers should really, really get used to this) - -[big upcoming spoilers](/s ""The naked female cast members asking Shinji to become one with me, to be of one mind and body is pretty much what the Human Instrumentality Project is all about"") - -One of the most interesting thing is that we get to hear Gendo deciding the name for his kid: Shinji if it's a boy and Rei if it's a girl. Wait a minute, Rei?! - -Another great episode";False;False;;;;1610662216;;False;{};gja0sxe;False;t3_kxfygp;False;False;t3_kxfygp;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gja0sxe/;1610748071;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"Made in Sugoi Dekai - -[](#utahapraises)";False;False;;;;1610662228;;False;{};gja0tu2;False;t3_kxepsc;False;False;t1_gj9vow6;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja0tu2/;1610748093;73;True;False;anime;t5_2qh22;;0;[]; -[];;;ake_vi_no;;;[];;;;text;t2_8ao51hg5;False;False;[];;The force of 200 meat buns behind that hand;False;False;;;;1610662256;;False;{};gja0vx1;False;t3_kxepsc;False;False;t1_gj9w27z;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja0vx1/;1610748142;56;True;False;anime;t5_2qh22;;0;[]; -[];;;BossandKings;;;[];;;;text;t2_5ifr53k7;False;False;[];;"First Timer - -Karasu is going away, he has consumed all of his time in the dimension and can't continue living in it, it is a very sad moment for Haruka. This shows the advance of time, there has been progress since the beginning until now. - -Atori appears, he doesn't seem to remember much if at all of anything that has been happening. This is the consequence he's suffering fron the fight, he's lost his memory. He is helped by his companion Tobi - -This is awesome, Yuu wants to help Karasu since he doesn't consider him a bad person, Yuu is maturing, he's taking his time but he is. Also when Haruka told him that he is Karasu so he will help her, to me it seemed that Yuu really thought well about it and realized it, realized that he should help Karasu, that he should help himself. - -It seems that Karasu can still survive if he is given Reizu, which is an essential particle to maintain the body alive, so they go to find Reizu in a convergence point. They do reach the Reizu and Karasu is stabilized. - -Kosagi gets in the way though, she holds a grudge against Karasu for whatever happened fiftheen years from now. - -So The Dragon Torque is the key for returning all dimensions to their original states. - -Atori was the real deal in this episode - -This was one of the most interesting and captivating episodes for me so far, it was very enjoyable. - -Answers - -1. Nothing really - -2. He is the real deal, my third favorite character.";False;False;;;;1610662300;;1610668507.0;{};gja0z2o;False;t3_kxfx0n;False;False;t3_kxfx0n;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja0z2o/;1610748205;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;False;[];;">I guess maybe the technology and resources are lacking to make more - -I don't think they can make more, as every time traveler seems like they were connected to whatever insanity the researchers caused with their expirement.";False;False;;;;1610662302;;False;{};gja0z7r;False;t3_kxfx0n;False;False;t1_gja08a1;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja0z7r/;1610748208;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"I am actually very confused by that, when he said that she didn't actually use the ""tsuki ga kirei"", she used it way earlier in the conversation when they just left the place and he didn't really react. I thought she said it was a full moon when it wasn't which is the reason for his ""need to study more"" comment but it was also a full moon... I am not sure that conversation makes much sense.";False;False;;;;1610662302;;False;{};gja0z99;False;t3_kxepsc;False;True;t1_gja0g9j;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja0z99/;1610748209;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nietschzesuperhuman;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Doc_McCoy?status=7&order=4&ord";light;text;t2_vk6p0;False;False;[];;YES;False;False;;;;1610662327;;False;{};gja113i;False;t3_kxepsc;False;False;t1_gja0c97;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja113i/;1610748244;5;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;Where all the best products are made;False;False;;;;1610662340;;False;{};gja122g;False;t3_kxepsc;False;False;t1_gja0tu2;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja122g/;1610748263;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Webemperor;;MAL;[];;http://myanimelist.net/animelist/Webemperor;dark;text;t2_e60oh;False;False;[];;"First Timer – Sub - -- Huh, are they actually killing Karasu too? Or will he be just going back to future? Oh yeah, that part of “He is not human!” was just way too silly. Like this dude has been teleporting around willy nilly, and just now because his dismembered stumps don’t look fleshy enough you figure he might not be fully human? - -- Only you too? Is Atori- Oh wait, he is still alive. Guess Tobi is still looking after him too. Yuu also called his school teacher for some reason. - -- Atori doesn’t seem that psychotic without his weird lipstick attached. Though I guess a villain getting amnesia after being defeated is… a bit cliched. Fora moment I though Karasu would get up simply out of hatred after hearing Atori’s voice. - -- I’m guessing the location they are talking about is the weird mound place they teleport to? Oh yeah, the weird hair guy specifically tells her to not overdo things and she just kills an officer and runs off. - -- They are staring directly at you, of course they fucking saw you. I thought you were some kind of government agent, thought you’d be better at trailing people. Also don’t you know where the pole you mentioned is, so don’t you know where they are going? Also I guess it’s not half bad that the Teacher lady is taking all of this so casually, although I’m a bit irritated that the entire conflict with future-Ai depends on purely miscommunication. - -- The way he was talking about a Sara made me think he forgot some things, did he just forgot about being a dragon knight in general? Did he just do that out of pure instinct or? - -- Not gonna lie, I was fully expecting Future-Ai to take Haruka with her, as a sort-of way to progress the story now we are on the second cour. - -- Was that scene just Karasu imagining things or is Reizu also a bit of a spiritual particle thing. Oh yeah, guess it was the pompadour guy who pulled her out. Is she getting the upside down bat treatment like Karasu did earlier?";False;False;;;;1610662346;;False;{};gja12jy;False;t3_kxfx0n;False;False;t3_kxfx0n;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja12jy/;1610748272;6;True;False;anime;t5_2qh22;;0;[]; -[];;;CubeStuffs;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/onjario;light;text;t2_eh59b;False;False;[];;"**1st time** - -It seems like Shinji's thoughts are beginning to turn far south. Anything he relations he's built with Gendo are being severed, for good reason, and it seems that he's forgetting that people do actually care for him, not just as an eva pilot. - -When Shinjuice spills out of the plug, I'm a little confused as to what eva-shinji means by him being in the eva. - -At least it seems that he's gonna make his own decisions, although we didn't see what decision he made, although it's probably related to his happiness. - -We also finally got some confirmation of the relation between rei and gendo.";False;False;;;;1610662348;;False;{};gja12p6;False;t3_kxfygp;False;False;t3_kxfygp;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gja12p6/;1610748276;16;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;She's gonna be racking up those best girl points too;False;False;;;;1610662355;;False;{};gja138t;False;t3_kxepsc;False;False;t1_gj9swt2;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja138t/;1610748286;22;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;"> We didn't even know this was a potential problem until now, so bringing it up like this feels pretty weak. - -It was mentioned in one previous episode.";False;False;;;;1610662361;;False;{};gja13pg;False;t3_kxfx0n;False;False;t1_gj9zzou;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja13pg/;1610748296;8;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;Someone's gotta regulate Yotsuba;False;False;;;;1610662388;;False;{};gja15o8;False;t3_kxepsc;False;False;t1_gja0c9e;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja15o8/;1610748333;51;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;False;[];;">holy fucking shit does this mean that Atori is Lily’s father?!?!?!?!?!?! - -Sky, there are some things that are better left unsaid, and I'm pretty sure this is one of them. :) - ->This is not the turn I expected this show to take, lol. Pun absolutely intended. - -[](#angrypout) -[](#smugpoint)";False;False;;;;1610662414;;False;{};gja17na;False;t3_kxfx0n;False;False;t1_gja0elo;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja17na/;1610748373;6;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;"She's always cute. - - -This comment was brought to you by the Nino Gang";False;False;;;;1610662428;;False;{};gja18ol;False;t3_kxepsc;False;False;t1_gja0iwr;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja18ol/;1610748393;45;True;False;anime;t5_2qh22;;0;[]; -[];;;ake_vi_no;;;[];;;;text;t2_8ao51hg5;False;False;[];;Something that I appreciate about QQ is that the tsundere archetype (mostly Nino) doesn't take 1-2 episodes to convert away from being a tsundere. Things like Chivalry of a Failed Knight (Mio), Infinite Stratos (grey hair eye-patched girl), etc. made the tsundere concept bland but not for QQ.;False;False;;;;1610662429;;False;{};gja18rd;False;t3_kxepsc;False;False;t1_gj9wda0;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja18rd/;1610748395;44;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheRantMan321;light;text;t2_efp1aj;False;False;[];;"Cloverworks seems to be the runner up to Mappa. - -They catching up slowly with sleeper hits and of course TPN. - -Hopefully they get recognized as well as Mappa";False;False;;;;1610662454;;False;{};gja1akt;False;t3_kxd55a;False;True;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gja1akt/;1610748433;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IXajll;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ixajii;light;text;t2_ob6j8;False;False;[];;Holy shit you’re right, didn’t actually notice while watching. That’s kinda hilarious, why would they make him look like that in that shot.;False;False;;;;1610662469;;False;{};gja1bn9;False;t3_kxepsc;False;False;t1_gj9ye4c;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja1bn9/;1610748455;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Pixelsaber;;;[];;;;text;t2_ofuxw;False;False;[];;"**First-timer - Sub** - -Have internet access now, mercifully. - -[Wait, Atori survived? Was I just not paying close attention?](https://i.imgur.com/imfCX7K.png) - -[That seemed easy enough.](https://i.imgur.com/mqWacMz.png) - -[Ah, a misunderstanding. Lovely.](https://i.imgur.com/CNLFlkx.png) - -[Time to get the eurobeat?](https://i.imgur.com/44QWAc7.png) Memes aside, a comedic chase scene is not what this episode needed. - -[If they can do this](https://i.imgur.com/N7hxN7K.png) then why is Chef’s Hat just running around with prosthetics? Is Tobi the only one capable of doing so? - -[Wonder how many people saw ‘UFOs’ that day.](https://i.imgur.com/RoAYn6S.png) - -Boring episode, to be frank. After the course of action is decided in the first half of the episode nothing diverges to a significant extent, and Kosagi fails her task not because Atori proved sufficient stalling, but because she spends time monologuing instead of retreating and for loosens her grasp on Haruka for… reasons. - -Speaking of Atori, what’s with this backstory they’re giving him? I don’t see how having a sister really relates to his personality or motivations before this point at all, so it’s essentially a convenient way of having him do what he does in the episode. - -The Dragon Torique also does absolutely nothing in this episode, despite the show having told us it has a high amount of Reizu particles at its disposal. Here it doesn’t heal Karasu, it doesn’t warn them of danger, and it doesn’t protect her against Kosagi. It really is just a tool of convenience for the writers at this point. - -**Questions:** - -1) Almost caused a car crash while taking behind-the-wheel lessons. Not on purpose, of course. - -2) [](#surefam)";False;False;;;;1610662531;;False;{};gja1gaa;False;t3_kxfx0n;False;False;t3_kxfx0n;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja1gaa/;1610748546;8;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheRantMan321;light;text;t2_efp1aj;False;False;[];;"Yeah this season could potentially rival the entire year of 2011. - -Usually I drop most anime I start in a new season, because they end up being trash. - -However, every anime I've watched this season has hooked me. And I still have to check out wonder egg and horiyama... - -MY FREE TIME IS RUINED!";False;False;;;;1610662538;;False;{};gja1grc;False;t3_kxd55a;False;False;t1_gj9hmki;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gja1grc/;1610748556;47;True;False;anime;t5_2qh22;;0;[]; -[];;;ake_vi_no;;;[];;;;text;t2_8ao51hg5;False;False;[];;Near the beginning of the episode, it was noted that Nino is the most sensitive of all the sisters. She was mad that the other sisters were siding with Futaro and Nino couldn't accept him in their house spending all this time with them;False;False;;;;1610662542;;False;{};gja1h2f;False;t3_kxepsc;False;False;t1_gja0c9e;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja1h2f/;1610748563;52;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;Yeah, the ending felt unbelievably rushed. But, Negi's already given us enough goodness;False;False;;;;1610662559;;False;{};gja1ic1;False;t3_kxepsc;False;True;t1_gja0ppd;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja1ic1/;1610748588;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;"> he didn't really react. - -He did have an bit of an awkwards reaction to that too.";False;False;;;;1610662568;;False;{};gja1ivt;False;t3_kxepsc;False;False;t1_gja0z99;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja1ivt/;1610748598;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"First time when they just left the house it was ""Kyou wa tsuki ga kirei ni miemasu yo"" (""The moon looks beautiful today"" which was translated as ""The moon is so bright today"", maybe to avoid people thinking it was in a romantic way?). But then the one at the end was the one that was different... and that one they did translate as ""The full moon sure is pretty tonight"" which is not wrong but still weird that they would use that there.";False;False;;;;1610662574;;False;{};gja1jc2;False;t3_kxepsc;False;False;t1_gja0a5v;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja1jc2/;1610748608;3;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;"> Is there a good story there? - -A surprisingly boring one. I just decided to drive a car in the middle of nowhere in northern Finland and the Elk decided that walking on the road is easier than walking in the wilderness. One I approached, the Elk, thankfully, ran away from my car, instead of into it. *They are quite fast!* After 200 meters of chase, or so, it had enough and exited the road. - -I could have stepped off the gas and let the Elk go into the distance, but then I would not be telling a tale of chasing an Elk here ...";False;False;;;;1610662579;;False;{};gja1jqr;False;t3_kxfx0n;False;False;t1_gja0h8f;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja1jqr/;1610748616;5;True;False;anime;t5_2qh22;;0;[]; -[];;;SYZekrom;;;[];;;;text;t2_i5y6z;False;False;[];;"I saw this anime and was like 'man I *really* want to watch it' so I binged S1 and IT WAS SO GOOOD AHHHHH - -**Ep1** - -[Omg she's so cute](https://cdn.discordapp.com/attachments/621713361390010378/797721397920268288/unknown.png) - -[Oh wow is it the lighting in this room or me switching to my laptop or is her hair way redder now](https://cdn.discordapp.com/attachments/621713361390010378/797721720177033226/unknown.png) - -[And her hair is just brown now](https://cdn.discordapp.com/attachments/621713361390010378/797721778994413578/unknown.png) - -Hm, kinda interesting show to have a S2 - -I mean it's fucking amazing and thank god it's not done but there are few shows that felt complete as that S1 did - -The entire thing was framed as them reminiscing on the day they all met and that fateful, memorable day for them - -Being the campfire - -It's funny when something is so important in the beginning and then ends up in a greater story - -Especially with how that one friend that called out to him as he was walking down the aisle also immediately thought back to the campfire - -But of course that's going to just be another event now with a greater story - -That they all just decided was the event they wanted to think about during the wedding - -Of course likely they'll just add in more parts to the wedding where they think to events covered in S2 - -Even though the narration was literally happening over him walking down the aisle and standing there - -[Anyway I did think it a bit weird that she decided to just kinda like him at the end of S1](https://cdn.discordapp.com/attachments/621713361390010378/797723523543203881/unknown.png) - -Like all the others were friendly with him to some point, probably with Itsuki the least close besides her - -I just - -Don't remember even what the last interaction she had with him rather than his 'relative' was, something before the festival arc - -Of course she pulled her aside and told her that his 'relative' couldn't come to the dance - -So maybe that was the event that changed how she treated him but before that she was still all tsundere as far as I remember and then she just changed to caring about him enough to offer him the good luck charm his 'relative' gave her, sneak into his room to check on him, hold his finger and stuff with everyone else - -[Dayum she can smell the other girls](https://cdn.discordapp.com/attachments/621713361390010378/797724862667423754/unknown.png) - -[Lowkey inb4 this guy is their father](https://cdn.discordapp.com/attachments/621713361390010378/797725810218893332/unknown.png) - -Like I... almost feel like I recognize his voice - -And he certainly reacted to that line - -And well that would explain why the nurses think he has to do with the head doctor specifically, if that was this guy and also the father and therefore the one that got him the ritzy room - -Yea ok he's the father lol nice - -> I feel like I've seen that man somewhere - -Huh? I don't recall him meeting their father unless it was when he got the tutoring job in the first place - -[OMG SHE'S SO CUTE](https://cdn.discordapp.com/attachments/621713361390010378/797726857285337118/unknown.png) - -Also I don't know if it's just on my mind but her face in both these scenes this episode really reminds me of Takagi-san - -I mean that guy's pregnant wife in the finale of S1 also reminded me of Takagi-san so I guess it's just on my mind - -[Ahhhhhh I love her](https://cdn.discordapp.com/attachments/621713361390010378/797726978210922526/unknown.png) - -And also she knew his name back then huh - -[Omg adorable](https://cdn.discordapp.com/attachments/621713361390010378/797727389479731230/unknown.png) - -And yea I'd nearly forgotten but that girl was first shown when he was made to think about the reason he studied - -[Oh my god that's](https://cdn.discordapp.com/attachments/621713361390010378/797727678898765884/unknown.png) - -I feel like you never see that kind of teasing with characters at this age - -[First of all omg she's sooooo cute rn](https://cdn.discordapp.com/attachments/621713361390010378/797728558281785344/unknown.png) - -AND OH HE'S TELLING HER ABOUT HIS PAST WITH THAT GIRL AHHHHHH - -[God this is so cute ahhhhh](https://cdn.discordapp.com/attachments/621713361390010378/797728966613532672/unknown.png) - -[Lol](https://cdn.discordapp.com/attachments/621713361390010378/797729186403319808/unknown.png) - -[Angy gorl](https://cdn.discordapp.com/attachments/621713361390010378/797729381144854528/unknown.png) - -OMG HE'S NOT LETTING THIS GO IS HE - -I was gonna go ""Man I hate when the MC is on a line of thought that is about to answer everything and gets interrupted and we just pretend it never happened"" - -But then he remembered afterward - -AND NOW HE'S INSPECTING THEM - -Man do they canonically not have different hair colors in the first place - -Is this a situation like in Kinmosa where they mentioned the blue-haired tsundere having black hair and the orange-haired genki girl having brown hair - -[Omg why does this feel even cuter than S1 why am I screenshotting every reaction the girls have](https://cdn.discordapp.com/attachments/621713361390010378/797730623463882762/unknown.png) - -Is it just off the high of the season finale? Is it watching on laptop instead of phone? Is it actually just that much better? - -But come on dude Yotsugi might be the dumbest but she can't lie for shit and that slightly surprised reaction she had to the tests should've clued you in - -[omggggggggggggggggggg -](https://cdn.discordapp.com/attachments/621713361390010378/797731114490920960/unknown.png) - -[I mean you should've specified it as a shout](https://cdn.discordapp.com/attachments/621713361390010378/797731172833820672/unknown.png) - -[Girl you're doing this](https://cdn.discordapp.com/attachments/621713361390010378/797731319974985728/unknown.png) - -In front of *allllllll* your sisters - -Ok but - -Would it not be smarter for you to ask them all to show you their tests? - -I mean I guess you can't expect any of them with grades so low to care about keeping tests around but certainly you could narrow it down just a bit if any of them still have even one of those tests laying around - -That's assuming you don't already expect them to always show you test scores else why would she even go through so much effort to destroy the evidence rather than just shoving it somewhere in her room like 'who cares' - -[Well plus I'm pretty sure the second time it showed her calling him a pervert there was a tiny bit of pink hair poking out under the towel](https://cdn.discordapp.com/attachments/621713361390010378/797732446858641439/unknown.png) - -But anyway I suppose she's about to reveal it was her in her thoughts right now and go 'but I actually studied the material after the test' - -[I wonder if they have different handwriting](https://cdn.discordapp.com/attachments/621713361390010378/797732620158107668/unknown.png) - -Oh that was the point of this shot - -Well listen girl if you are able to answer well enough on this re-test he's not gonna be that mad at you anyway - -Ah ok so he was doing it for that purpose like I thought - -[**And also this means she also suspects one of them is the girl from his past**](https://cdn.discordapp.com/attachments/621713361390010378/797733520512516136/unknown.png) - -[I mean I'm sure S1 also had realistic pouts (In fact I'm not even sure if it had any cartoon pouts in the second half) but S1 had SS+ Uber tier cartoonish pouts](https://cdn.discordapp.com/attachments/621713361390010378/797734103373316116/unknown.png) - -This is interesting too though, the way she bobs her head as she pouts... - -I mean - -You could just show them your picture of that girl and ask if they recognized the girl - -Like before it could be excused as him going 'nah no way just a hunch I'm not gonna go that outta my way' but now you did all that and even asked if any of them knew you in the past - -Like sure in truth they all looked the same and like that back then - -But you don't know that, you literally just went 'huh actually quintuplets can be pretty different' - -So you could potentially have confirmed if they recognized the girl in the photo as one of them - -And even after they go 'no idea which one of us that is' you would know it was in fact one of them - -Assuming they aren't in fact able to recognize the girl in the photo by some otherwise indiscernible tell - -Well I said S1 wrapped up so neatly but of course there were still 'loose threads' being why the girl in his past is the reason he studies/changed him out of being a delinquent - -Plus it was presented with the fact that if he'd just turned around to look at Nino's photo album they would've confirmed that they were the girl in his past by showing each other the photos proving they were together - -But even still outside of that just-miss on showing each other the photos it didn't even feel like a loose-end - -It felt like it served a proper purpose in season 1 rather than being something shown off without playing it's proper role - -There was one other loose end that came to mind that I'm not remembering - -&nbsp; - -...HOW LONG WAS THAT EPISODE WHY DID I SAY SO MUCH FOR E1 - -**EP2** - -[Lmfao](https://cdn.discordapp.com/attachments/621713361390010378/799394934695526430/unknown.png) - -[Pfft also what's with the leopard print or whatever that is](https://cdn.discordapp.com/attachments/621713361390010378/799395289613336596/unknown.png) - -Looks so weird lmao - -[Omg I can't](https://cdn.discordapp.com/attachments/621713361390010378/799395473278369792/unknown.png) - -The way she's just holding her glass still - -Kinda feels like all that progress Nino suddenly made with him out of nowhere near the end disappeared - -Which well - -It didn't feel deserved in the first place but odd that it came and went - -[THIS IS ILLEGAL](https://cdn.discordapp.com/attachments/621713361390010378/799398224472834088/unknown.png) - -WHAT IS THIS - -WHICH ONE OF THEM IS DOING THIS - -IS HE DREAMING - -Damn, definitely no hijinks are gonna happen when he gets in that hotel room, certainly not";False;False;;;;1610662581;;False;{};gja1jut;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja1jut/;1610748618;32;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;"> I've got a feeling it's temporary as well, it being permanent would be rather unsatisfying. - -We can only hope. - -> -Frustration at Haruka's inability to take steps for her own safety? - -Worse, she is actively taking steps to endanger herself. Karusu might just be the correct reaction.";False;False;;;;1610662582;;False;{};gja1jvr;False;t3_kxfx0n;False;False;t1_gja0qsr;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja1jvr/;1610748618;4;True;False;anime;t5_2qh22;;0;[]; -[];;;GonTheDinosaur;;MAL;[];;http://myanimelist.net/animelist/gon7T;dark;text;t2_dzokm;False;False;[];;"How does that work in Japanese? or is that like an idiom? - -I know moon (*Tsuki*) sounds similar to like (*Suki*), but the grammar will be completely different wouldn't it?";False;False;;;;1610662594;;False;{};gja1kqc;False;t3_kxepsc;False;False;t1_gj9zpd4;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja1kqc/;1610748637;94;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;All the girls are so loveable, honestly. Negi did a great job with them;False;False;;;;1610662600;;False;{};gja1l72;False;t3_kxepsc;False;False;t1_gja0mig;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja1l72/;1610748646;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;"> -> -> -> -> Reference check passed! - -Azumanga Daioh should be more watched.";False;False;;;;1610662606;;False;{};gja1llt;False;t3_kxfx0n;False;False;t1_gja0qu9;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja1llt/;1610748654;4;True;False;anime;t5_2qh22;;0;[]; -[];;;UberDueler8;;;[];;;;text;t2_485dcj1j;False;False;[];;Latom;False;False;;;;1610662649;;False;{};gja1os6;False;t3_kxepsc;False;False;t1_gj9xr38;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja1os6/;1610748717;73;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;Neintoubun;False;False;;;;1610662671;;False;{};gja1qbj;False;t3_kxepsc;False;False;t1_gj9ye4c;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja1qbj/;1610748746;80;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Yeah but that didn't seem like a reaction to a possible confession as much as ""what is with this random small talk?""";False;False;;;;1610662690;;False;{};gja1rp2;False;t3_kxepsc;False;False;t1_gja1ivt;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja1rp2/;1610748773;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Pixelsaber;;;[];;;;text;t2_ofuxw;False;False;[];;"> WAIT A SECOND that could be La’cryma!Miho’s na--holy fucking shit does this mean that Atori is Lily’s father?!?!?!?!?!?! - -[](#breakingnews)";False;False;;;;1610662701;;False;{};gja1sgy;False;t3_kxfx0n;False;False;t1_gja0elo;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja1sgy/;1610748790;6;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;Negi giving us good food every week;False;False;;;;1610662702;;False;{};gja1sl7;False;t3_kxepsc;False;False;t1_gj9ym3r;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja1sl7/;1610748793;12;True;False;anime;t5_2qh22;;0;[]; -[];;;ake_vi_no;;;[];;;;text;t2_8ao51hg5;False;False;[];;It's a breath of fresh air for the harem genre;False;False;;;;1610662716;;False;{};gja1tlt;False;t3_kxepsc;False;False;t1_gj9w3tq;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja1tlt/;1610748814;13;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;Cells at Work, Dr. Stone, and this? This season is phenomenal;False;False;;;;1610662722;;False;{};gja1u2d;False;t3_kxepsc;False;False;t1_gj9rtf7;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja1u2d/;1610748823;16;True;False;anime;t5_2qh22;;0;[]; -[];;;cptdolphin;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/cptTex;light;text;t2_dkyyu;False;False;[];;At last more [Ribbon](https://i.imgur.com/kQFWZ76.png) grabbing and [Futaro Fixing](https://i.imgur.com/MMNKBV2.png) it afteward! Reallly shows how close and comfortable Yotsuba and Futaro are around each other. Pretty sure he would not be doing stuff like that with the other sisters.;False;False;;;;1610662734;;False;{};gja1ux1;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja1ux1/;1610748842;18;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;200 is a low estimate;False;False;;;;1610662741;;False;{};gja1vf6;False;t3_kxepsc;False;False;t1_gja0vx1;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja1vf6/;1610748851;18;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;The day of discussion wars;False;False;;;;1610662756;;False;{};gja1wkc;False;t3_kxepsc;False;False;t1_gj9xbc6;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja1wkc/;1610748874;9;True;False;anime;t5_2qh22;;0;[]; -[];;;IonicSquid;;;[];;;;text;t2_4ot51;False;False;[];;I should make it clear that for many people, they were definitely upset because their girl lost. For me and a lot of others, though, it was more how the ending came together that was incredibly unsatisfying and felt poorly done.;False;False;;;;1610662760;;False;{};gja1ws8;False;t3_kxepsc;False;False;t1_gja0mig;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja1ws8/;1610748878;13;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610662831;;False;{};gja226a;False;t3_kxepsc;False;True;t1_gja0fnn;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja226a/;1610748987;0;True;False;anime;t5_2qh22;;0;[]; -[];;;InterstellarBrownies;;;[];;;;text;t2_1py72wkq;False;False;[];;If this episode didn’t prove that Itsuki is best girl I don’t know what will, she genuinely has respect for Uesugi and I love how her character has developed since season 1;False;False;;;;1610662849;;False;{};gja23gt;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja23gt/;1610749014;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ake_vi_no;;;[];;;;text;t2_8ao51hg5;False;False;[];;200 for that day;False;False;;;;1610662867;;False;{};gja24r3;False;t3_kxepsc;False;False;t1_gja1vf6;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja24r3/;1610749040;18;True;False;anime;t5_2qh22;;0;[]; -[];;;EverChangingUnicorn;;;[];;;;text;t2_3dcfqg6w;False;False;[];;"My man Futaro writing those *thick* problem sheets by *hand*, not just once, but *five times*. -And he isn't even mad at all. -Major respect.";False;False;;;;1610662883;;False;{};gja25xa;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja25xa/;1610749063;45;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;"> -> -> -> -> Worst possible thing - you could have said for $500. - -And with a single sentence Haruka causes a bunch of goth clothing to just buy itself and deliver itself to Yuu's closet. - -> -I wonder if she realizes -she can only kidnap Haruka because Haruka's resigned herself to it? - -The only thing she knows right now is her Karasu hate boner. - -> I'm surpised that the council couldn't properly beat them into working together. - -My theory is that the pool of possible dimension jumpers is so small you take what you can get.";False;False;;;;1610662891;;False;{};gja26jd;False;t3_kxfx0n;False;False;t1_gj9zzou;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja26jd/;1610749074;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;False;[];;">My theory is that the pool of possible dimension jumpers is so small you take what you can get. - -Yeah, it's likely people who were connected to the experiment in some way. I'm just surpised that an all powerful council can't manipulate them in to working together as a team.";False;False;;;;1610663009;;False;{};gja2f69;False;t3_kxfx0n;False;True;t1_gja26jd;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja2f69/;1610749242;3;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;Come join the Ninogang;False;False;;;;1610663048;;False;{};gja2i05;False;t3_kxepsc;False;False;t1_gj9xo4f;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja2i05/;1610749293;13;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;I'm hoping she cracks over a 20 on her exams soon;False;False;;;;1610663071;;False;{};gja2jru;False;t3_kxepsc;False;False;t1_gj9zu8e;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja2jru/;1610749326;23;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610663105;moderator;False;{};gja2mdl;False;t3_kxge2t;False;True;t3_kxge2t;/r/anime/comments/kxge2t/feeling_a_bit_lost_baccano_ep1/gja2mdl/;1610749378;1;False;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;Still low;False;False;;;;1610663108;;False;{};gja2mj6;False;t3_kxepsc;False;False;t1_gja24r3;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja2mj6/;1610749381;6;True;False;anime;t5_2qh22;;0;[]; -[];;;CuriousFunction;;;[];;;;text;t2_6n3v3my3;False;False;[];;Yessir. Eatsuki is best girl. She has the best chemistry with Fuutarou as well imo. It feels very natural;False;False;;;;1610663122;;False;{};gja2nlq;False;t3_kxepsc;False;False;t1_gj9wx54;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja2nlq/;1610749400;47;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;"> *baffled Sky noises * he DISINTEGRATED - -I have literally nothing, it is most likely bad communication with the animation team. - -> Is that Vaad screaming I hear? - -All the way across the fucking state. - -> So Isami just shoved Yuu into the car. - -A weird variant on the bro code but still obeying it. - -> This is not the turn I expected this show to take, lol. Pun absolutely intended. - -I am just assuming that Yukari-sensei from Azumanga Daioh was an inspiration for Yukie. - -> Atori didn’t get to be fixed by the Reizu too? - -I think it needs to be channeled? Answers would be nice.";False;False;;;;1610663138;;False;{};gja2orm;False;t3_kxfx0n;False;True;t1_gja0elo;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja2orm/;1610749421;3;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;The endless cycle of harem anime;False;False;;;;1610663140;;False;{};gja2owu;False;t3_kxepsc;False;False;t1_gj9siiv;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja2owu/;1610749423;10;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi ItashaDa9, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610663151;moderator;False;{};gja2pp1;False;t3_kxger3;False;True;t3_kxger3;/r/anime/comments/kxger3/looking_for_a_funny_anime_like_haganai/gja2pp1/;1610749439;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;"I'd like their to be an underlying reason but at this point ""young adult series"" might be the correct answer.";False;False;;;;1610663207;;False;{};gja2tx6;False;t3_kxfx0n;False;True;t1_gja2f69;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja2tx6/;1610749517;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;Things will make sense the further in you go. The story isn't told in chronological order;False;False;;;;1610663216;;False;{};gja2uiq;False;t3_kxge2t;False;True;t3_kxge2t;/r/anime/comments/kxge2t/feeling_a_bit_lost_baccano_ep1/gja2uiq/;1610749528;7;True;False;anime;t5_2qh22;;0;[]; -[];;;FuzzyEarz;;;[];;;;text;t2_buzkg;False;False;[];;I want to give them the benefit of the doubt that they are going to do a relatively full adaptation but my hopes are low.;False;False;;;;1610663246;;False;{};gja2wry;False;t3_kxepsc;False;True;t1_gj9r2tr;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja2wry/;1610749571;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ake_vi_no;;;[];;;;text;t2_8ao51hg5;False;False;[];;Bruh;False;False;;;;1610663263;;False;{};gja2xz2;False;t3_kxepsc;False;False;t1_gja2mj6;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja2xz2/;1610749593;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;The disastrous life of Saiki.K;False;False;;;;1610663337;;False;{};gja33d9;False;t3_kxger3;False;True;t3_kxger3;/r/anime/comments/kxger3/looking_for_a_funny_anime_like_haganai/gja33d9/;1610749693;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yuskure;;;[];;;;text;t2_6lfthcfu;False;False;[];;"I read somewhere that saying ""The moon is beautiful"" in Japanese culture means ""I love you"". Is this true?";False;False;;;;1610663501;;False;{};gja3fdp;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja3fdp/;1610749924;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;"> How is Atori alive? - -Taking the Insanity trait boosts your constitution. - -> -Observer security is shit - -The most consistent in setting theme - -> Karus is healed by convenient Reizu point, doesn’t this rather invalidate the “we will eventually disappear” if they can pop over and get a top up? - -I *think* our dimension is eventually going to remove them but don't quote me on that. - -> Looks like the next episode is back to interpersonal drama with Haruka dragon torquing it up to learn about her parents' past, and probably how they got together. - -This could be better placed but let's see what they do with it.";False;False;;;;1610663532;;False;{};gja3hpl;False;t3_kxfx0n;False;True;t1_gja0039;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja3hpl/;1610749969;3;True;False;anime;t5_2qh22;;0;[]; -[];;;UnlikeSpace3858;;;[];;;;text;t2_hc4ar;False;False;[];;Yes, it's like a puzzle you piece together the further you watch. Pretty fun.;False;False;;;;1610663582;;False;{};gja3lex;False;t3_kxge2t;False;True;t3_kxge2t;/r/anime/comments/kxge2t/feeling_a_bit_lost_baccano_ep1/gja3lex/;1610750036;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610663611;;False;{};gja3nhd;False;t3_kxepsc;False;True;t1_gj9wfmx;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja3nhd/;1610750076;1;True;False;anime;t5_2qh22;;0;[]; -[];;;theanimegamer-___-;;;[];;;dark;text;t2_3vm3lj8d;False;False;[];;Damn she's so annoying. Uesugi is a tutor, not Dr. Phil. Miku should've smacked her too. If you're gonna be so sensitive then at least be a little less stubborn. She got so many bad qualities.;False;False;;;;1610663669;;False;{};gja3rkk;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja3rkk/;1610750157;4;True;False;anime;t5_2qh22;;0;[]; -[];;;UnlikeSpace3858;;;[];;;;text;t2_hc4ar;False;False;[];;[Hinamatsuri](https://www.crunchyroll.com/hinamatsuri);False;False;;;;1610663720;;False;{};gja3v86;False;t3_kxger3;False;True;t3_kxger3;/r/anime/comments/kxger3/looking_for_a_funny_anime_like_haganai/gja3v86/;1610750223;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;I'm curious to know if they use in-house staff mainly or are they dependent on freelancers like A-1;False;False;;;;1610663720;;False;{};gja3v8d;False;t3_kxd55a;False;False;t1_gj9uqwq;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gja3v8d/;1610750223;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Lost-NotFound;;;[];;;;text;t2_57xayenq;False;False;[];;"**1st rewatch** - -who is the bell that the committee refers to? im guessing kaji ? - -i like the research scene when everyone else is talking about feelings, but ritsuko’s primary concerns are utility. A subtle glimpse about her worldview vs a lot of the other characters. [Spoiler source](/s ""could also be reflecting in a twisted sense, her and her mother’s sexual relationship with gendo (both look similar, but don’t feel the same and only one can be used in the moment)."") - -home boy try to make a pass at misato lol. i mean she’s cool, but still making a pass at a senior officer yikes. - -also, ritsuko and misato keep getting more and more distanced over their treatment of shinji. - -i can’t confidently say what the train metaphor is. my best guess would be its like a crossroads for decisions/perspectives. a train goes forward to its destination, once you board, you can’t get off (usually). So in a lot of pivotal decisions/perspectives regarding using EVAs, there’s a train station scene (physically, Shinji waiting for the train to leave the city or mentally, where the pilots are contemplating why they use it-sunset). - -also, forgot all about that last scene lol. [Spoiler source](/s ""in hindsight, i like how this foreshadows how she comforts herself around men and her interaction with shinji in 23. although, i want to believe she didn’t offer herself to shinji."") - -**QOTD** -We know how Misato feels about it (drunk scene awhile ago), but she also isn't very honest with herself most of the time. I think Kaji's side would be he cares for her deeply, but feels that he will never be able to understand her (conversation with Shinji) and that's okay with him because that's the joy of a relationship.";False;False;;;;1610663829;;False;{};gja4324;False;t3_kxfygp;False;False;t3_kxfygp;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gja4324/;1610750383;4;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;">Uesugi fixing Yotsuba's ribbon filled up my serotonin bar for the week. - -[That was a really sweet moment](https://i.imgur.com/Bdw9u5m.mp4)";False;False;;;;1610663836;;False;{};gja43kg;False;t3_kxepsc;False;False;t1_gj9xo4f;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja43kg/;1610750392;90;True;False;anime;t5_2qh22;;0;[]; -[];;;PerroXX;;;[];;;;text;t2_byqd0;False;False;[];;I mean, it impacts directly on the next chapter because all of what happens after that is because of the encounter;False;False;;;;1610663891;;False;{};gja47j6;False;t3_kxepsc;False;False;t1_gj9zoji;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja47j6/;1610750468;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610663974;;False;{};gja4di0;False;t3_kxepsc;False;True;t1_gj9wfmx;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja4di0/;1610750580;3;True;False;anime;t5_2qh22;;0;[]; -[];;;VVacek;;;[];;;;text;t2_w1chb;False;False;[];;Basically canon.;False;False;;;;1610663996;;False;{};gja4f1k;False;t3_kxepsc;False;False;t1_gj9ym3r;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja4f1k/;1610750607;33;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;[Accurate representation of Thursday bros after going through the whole lineup](https://i.imgur.com/lIw3dGA.png);False;False;;;;1610663998;;False;{};gja4f5u;False;t3_kxepsc;False;False;t1_gja1u2d;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja4f5u/;1610750609;23;True;False;anime;t5_2qh22;;0;[]; -[];;;MusubiKazesaru;;;[];;;;text;t2_oh8ti;False;False;[];;Imouto sae Ireba Ii. is another work by the same author and I think it's even funnier. Don't get filtered by the first two minutes (the rest of the anime isn't like that).;False;False;;;;1610664032;;False;{};gja4hnh;False;t3_kxger3;False;True;t3_kxger3;/r/anime/comments/kxger3/looking_for_a_funny_anime_like_haganai/gja4hnh/;1610750654;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Accomplished_Bed7999;;;[];;;;text;t2_7wwvovtf;False;False;[];;I am so confused. Why did he jump in the water? Can someone explain?;False;False;;;;1610664116;;False;{};gja4npd;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja4npd/;1610750762;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ItashaDa9;;;[];;;;text;t2_97cxa507;False;False;[];;Thanks. I know Haganai is their most popular work, but I definitely liked it enough to check out their other works too. Is it also somewhat ecchi ?;False;False;;;;1610664117;;False;{};gja4nr6;True;t3_kxger3;False;True;t1_gja4hnh;/r/anime/comments/kxger3/looking_for_a_funny_anime_like_haganai/gja4nr6/;1610750763;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VVacek;;;[];;;;text;t2_w1chb;False;False;[];;Like Civil War poster.;False;False;;;;1610664124;;False;{};gja4oah;False;t3_kxepsc;False;True;t1_gj9uj2y;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja4oah/;1610750772;1;True;False;anime;t5_2qh22;;0;[]; -[];;;awe778;;;[];;;;text;t2_opf1d;False;False;[];;Let me appear here, as a manga reader, to watch like Uatu.;False;False;;;;1610664170;;False;{};gja4rmk;False;t3_kxepsc;False;False;t1_gj9z0nc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja4rmk/;1610750835;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610664195;;False;{};gja4tgv;False;t3_kxepsc;False;True;t1_gj9whm2;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja4tgv/;1610750870;0;True;False;anime;t5_2qh22;;0;[]; -[];;;CuriousFunction;;;[];;;;text;t2_6n3v3my3;False;False;[];;Can't imagine many anime-only people liking Nino. She has been pretty unlikable so far;False;False;;;;1610664198;;False;{};gja4tnl;False;t3_kxepsc;False;False;t1_gj9wda0;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja4tnl/;1610750873;50;True;False;anime;t5_2qh22;;0;[]; -[];;;flamethrower2;;;[];;;;text;t2_qo55l;False;False;[];;"I have heard it before and I thought it meant the moon is beautiful. I'm a dum-dum like Itsuki. My excuse is I'm not Japanese so ofc I don't know anything about Japanese lit. - -My best guess right now is it can mean that depending on the context, and that was appropriate context for it to mean that.";False;False;;;;1610664270;;False;{};gja4yu0;False;t3_kxepsc;False;True;t1_gja3fdp;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja4yu0/;1610750969;3;True;False;anime;t5_2qh22;;0;[]; -[];;;richdoughnutOG;;;[];;;;text;t2_4icy5ow;False;False;[];;[Itsuki did say she thought the moon was pretty](https://www.italki.com/article/909/confessing-your-love-in-japanese?hl=de) (Yes, I know, she used different words, but the sentiment remains);False;False;;;;1610664303;;False;{};gja517v;False;t3_kxepsc;False;False;t1_gj9wx54;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja517v/;1610751011;30;True;False;anime;t5_2qh22;;0;[]; -[];;;melindypants;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/melindypants ;light;text;t2_bb5qq9o;False;False;[];;Haha I didn't even notice this - nice catch!;False;False;;;;1610664309;;False;{};gja51or;False;t3_kxepsc;False;False;t1_gj9s2vg;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja51or/;1610751020;13;True;False;anime;t5_2qh22;;0;[]; -[];;;realrimurutempest;;;[];;;;text;t2_4bauklbm;False;False;[];;😎✊🏻;False;False;;;;1610664356;;False;{};gja554x;False;t3_kxepsc;False;False;t1_gj9xr38;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja554x/;1610751081;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Prince-Dizzytoon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/princedizzytoon;light;text;t2_mu0df;False;False;[];;Haven't seen this one in a while;False;False;;;;1610664361;;False;{};gja55hl;False;t3_kxepsc;False;False;t1_gja4di0;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja55hl/;1610751089;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610664381;;False;{};gja5720;False;t3_kxepsc;False;True;t1_gj9yw13;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja5720/;1610751115;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;"> -> -> -> -> Wait, Atori survived? Was I just not paying close attention? - -Nope the animation team must've miscommunicated. - -> -Time to get the eurobeat? -Memes aside, a comedic chase scene is not what this episode needed. - -My theory is that this is an Azumanga Daioh reference. - -> Speaking of Atori, what’s with this backstory they’re giving him? - -Filler? They already ""redeemed"" Miyuki so maybe that?";False;False;;;;1610664385;;False;{};gja57c1;False;t3_kxfx0n;False;False;t1_gja1gaa;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja57c1/;1610751121;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Joselu2001;;;[];;;;text;t2_vxt464l;False;False;[];;">If I drowned here, would they get worried and get back on the same page? ->Yikes, my thoughts are going down a dangerous road. - -Now that hits home, putting yourself on the line to fix something you feel would've better if only you didn't bug in in the first place, even despite that not being exactly true. -I hope in one of these episodes the girls could get at least one fifth of what Fuu-kun is putting himself through.";False;False;;;;1610664405;;False;{};gja58s2;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja58s2/;1610751147;3;True;False;anime;t5_2qh22;;0;[]; -[];;;VVacek;;;[];;;;text;t2_w1chb;False;False;[];;Yeah it's Japanese play on words apparently.;False;False;;;;1610664416;;False;{};gja59kb;False;t3_kxepsc;False;True;t1_gj9z3k3;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja59kb/;1610751162;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi DevilTrigger789, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610664444;moderator;False;{};gja5bo2;False;t3_kxgura;False;True;t3_kxgura;/r/anime/comments/kxgura/netflixs_alice_in_borderland_is_surprisingly/gja5bo2/;1610751205;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Fluffy9345, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610664484;moderator;False;{};gja5eni;False;t3_kxgv7y;False;False;t3_kxgv7y;/r/anime/comments/kxgv7y/looking_for_recommendations_for_romance_anime/gja5eni/;1610751256;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Bl0rgasmorg;;;[];;;;text;t2_s74j7cz;False;False;[];;That shot was in the manga too, I didn’t think they would but I’m so glad they kept that in the anime.;False;False;;;;1610664499;;False;{};gja5fqr;False;t3_kxepsc;False;False;t1_gja1bn9;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja5fqr/;1610751275;16;True;False;anime;t5_2qh22;;0;[]; -[];;;ReihReniek;;;[];;;;text;t2_zakgu;False;False;[];;Everyone who played Persona 4 should know this.;False;False;;;;1610664539;;False;{};gja5ilk;False;t3_kxepsc;False;False;t1_gj9zpd4;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja5ilk/;1610751326;36;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your comment has been removed. - -- Direction toward specific sources of pirated content of any type is not allowed. This includes links to unofficial scanlations, streams, uploads, and download sources of any copyrighted content. It also includes direction towards specific sites offering this type of content, and watermarks mentioning such sites in uploaded images/videos. - - Discussion of piracy in general is allowed, **but naming, linking to, or hinting towards specific sources is not. Offering to send links via PM is also not allowed.** For more details, see our [full rules on illegal content](https://www.reddit.com/r/anime/wiki/rules#wiki_do_not_link_to_illegal_content). - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610664602;moderator;False;{};gja5n9c;False;t3_kxepsc;False;True;t1_gja4di0;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja5n9c/;1610751416;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;"Try the following: - -* ""I can't understand what my husband is saying"" -* ""Love is like a cocktail""";False;False;;;;1610664624;;False;{};gja5ory;False;t3_kxgv7y;False;True;t3_kxgv7y;/r/anime/comments/kxgv7y/looking_for_recommendations_for_romance_anime/gja5ory/;1610751444;3;True;False;anime;t5_2qh22;;0;[]; -[];;;UberDueler8;;;[];;;;text;t2_485dcj1j;False;False;[];;I just use the episode discussion filter now;False;False;;;;1610664630;;False;{};gja5p6w;False;t3_kxepsc;False;True;t1_gj9zv6l;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja5p6w/;1610751452;1;True;False;anime;t5_2qh22;;0;[]; -[];;;richdoughnutOG;;;[];;;;text;t2_4icy5ow;False;False;[];;"> When the novelist Souseki Natsume (1867-1916) was an English teacher, one of his students translated the English phrase “I love you” as 我君を愛す | ware kimi o aisu. Soseki pointed out that Japanese people don’t say 愛す | aisu (to love), and that the best translation would actually be 月が綺麗ですね | tsuki ga kirei desune (the moon is beautiful, isn’t is?) - -edit: It‘s important to note that this is not a definite answer. Around the japanese mindset was very reserved and the original translation of the student was too direct (for Souseki‘s taste). So he said to go for a more contextual translation. A lot of interpretations say that it probably came from the idea of a man and a woman being alone at night and just saying „the moon is beautiful“ should be enough to give the other a clue. Especially since moon / tsuki sounds very much like love / suki. - -A lot of people must‘ve liked that way of phrasing it so it stuck around. Probably not in everyday life, but at least among people with an interest in literature.";False;False;;;;1610664632;;1610701530.0;{};gja5pf3;False;t3_kxepsc;False;False;t1_gja1kqc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja5pf3/;1610751456;121;True;False;anime;t5_2qh22;;0;[]; -[];;;Fluffy9345;;;[];;;;text;t2_2od0d93r;False;False;[];;Finished both. Loved them!;False;False;;;;1610664718;;False;{};gja5vns;True;t3_kxgv7y;False;True;t1_gja5ory;/r/anime/comments/kxgv7y/looking_for_recommendations_for_romance_anime/gja5vns/;1610751589;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Inyari;;;[];;;;text;t2_4hg2d19x;False;False;[];;Clannad has a very happy ending (but the middle is extremely sad);False;False;;;;1610664735;;False;{};gja5wvl;False;t3_kxgv7y;False;False;t3_kxgv7y;/r/anime/comments/kxgv7y/looking_for_recommendations_for_romance_anime/gja5wvl/;1610751614;0;True;False;anime;t5_2qh22;;0;[]; -[];;;WickedAnimeTroll;;;[];;;;text;t2_wmipi;False;False;[];;"> [skipped conversation](/s ""Considering that he going to tell Nino what happened they probably just decided to put it there, the scene is too important to be skipped"")";False;False;;;;1610664880;;False;{};gja67g1;False;t3_kxepsc;False;False;t1_gj9uifu;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja67g1/;1610751817;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Fluffy9345;;;[];;;;text;t2_2od0d93r;False;False;[];;So like Orange?;False;False;;;;1610664942;;False;{};gja6bwy;True;t3_kxgv7y;False;True;t1_gja5wvl;/r/anime/comments/kxgv7y/looking_for_recommendations_for_romance_anime/gja6bwy/;1610751896;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610664947;;False;{};gja6c8q;False;t3_kxepsc;False;True;t1_gja4tnl;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja6c8q/;1610751902;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WebWarrior420;;;[];;;;text;t2_xbhhx;False;False;[];;"FIRST TIMER - -Well. Things are certainly happening. - -Gonna be honest. All the still shots to save on budget were pretty obvious. Hopefully it means they saved up money for the last few episodes. - -NERV managed to capture and restrain Unit 01 (HOW!?). Unfortunately, Shinji is trapped inside as he and his EVA have achieved a really high synchronization rate. - -Gotta say. I love how close Misato and Shinji are. And how aggressive she is about getting Shinji back. Slapping Ritsuko and collapsing into tears when their first plan to extract Shinji fails. Although, like Ritsuko pointed out, she did jump into Kaji’s arms pretty fast after Shinji was rescued. I guess she needed that release after all that tension building. - -Get a few more details about the EVAs. Something created by humans, based on angels or apparently humans based on the dialogue. - -Shinji is on a weird mental trip. Doing some intense soul-searching there. Also it appears he thinks people only like him because he pilots the EVA and keeps doing it to win their praise. Aww. That’s sad. I hope he realises that people actually care for him sooner rather than later. - -Pretty telling he saw Gendo when he was chanting enemy. - -More details about Gendo and him. Did Gendo really kill his wife? Interesting that Gendo was the name who named Shinji. Also, they were planning to name their daughter “Rei”. Hmmmm. It seems way too coincidental that they just happened to find a girl named Rei. Or maybe it isn’t? Either way, Rei’s odd behaviour and Gendo’s fascination with her means there’s something more going on with her. - -So that sequence with Shinji with Misato, Asuka and Rei. That was a thing. Was he reaching towards the women in his life that he’s close to? Or was the spirit of his mother trying to reach Shinji through him? He seemed at peace when the two connected. And then the EVA promptly spat him out. - -Did Gendo kill his wife and made her into Unit 01?! That’s too bizarre . . . Right? - -Seems like the committee, who are called “Seele” are planning to do something about Gendo. - -Also apparently, Kaji has given something to Misato. It’ll be interesting to see what happens next. - -That was . . . very interesting to say the least. - - **What do you think of Misato and Kaji's relationship?** - -Well. It's a relationship lol. The two of them seem to gell with each other really well and are into each other. I'm all for it. Also they're both on the same page now it seems so that's cool. Interesting to see how things move forward from here.";False;False;;;;1610665028;;False;{};gja6i7j;False;t3_kxfygp;False;False;t3_kxfygp;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gja6i7j/;1610752015;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Pixelsaber;;;[];;;;text;t2_ofuxw;False;False;[];;"> Azumanga Daioh reference. - -[](#azusalaugh) - -> Filler? - -Probably... - -> They already ""redeemed"" Miyuki so maybe that? - -[](#drink2)";False;False;;;;1610665050;;False;{};gja6jtl;False;t3_kxfx0n;False;False;t1_gja57c1;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja6jtl/;1610752047;4;True;False;anime;t5_2qh22;;0;[]; -[];;;WaterPot75;;;[];;;;text;t2_1lzc6cbg;False;False;[];;Ah, that makes a lot of sense. Can’t believe I didn’t catch that.;False;False;;;;1610665096;;False;{};gja6n57;False;t3_kxepsc;False;False;t1_gj9zu8e;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja6n57/;1610752111;14;True;False;anime;t5_2qh22;;0;[]; -[];;;BenDTU;;;[];;;;text;t2_mbfrs;False;False;[];;Makes me wonder if this season is going to be a grab bag of stuff from throughout the series and then they’ll tell you to go read the source material.;False;False;;;;1610665114;;False;{};gja6ofa;False;t3_kxepsc;False;True;t1_gja2wry;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja6ofa/;1610752136;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WickedAnimeTroll;;;[];;;;text;t2_wmipi;False;False;[];;"[skipped chapter](/s ""skipping the babysitting chapter is understandable despite it having some good Miku stuff, skipping the Yotsuba date is less understandable"") - -Adapting them into OVA's later on is the only way if they want to do it because adapting them later this season is not possible...";False;False;;;;1610665302;;False;{};gja71r0;False;t3_kxepsc;False;False;t1_gj9zhym;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja71r0/;1610752389;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"Eatsuki might not be my favorite but no one can argue that she's quite [*the*](https://i.imgur.com/roXXef0.jpg) [badass](https://i.imgur.com/Vb1Dny2.jpg) among the quints. - -[](#umucool)";False;False;;;;1610665321;;False;{};gja7339;False;t3_kxepsc;False;False;t1_gja2nlq;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja7339/;1610752414;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Ramzilla95;;;[];;;;text;t2_xn9v7;False;False;[];;"My Votes (**Bolded** EDs are from shows I have watched, while *Italicized* EDs are from shows I haven't): - -ED | ED | Comments ---|--|-------- -[*Fukashigi no Karte*](https://animethemes.moe/video/Aobuta-ED2.webm) | [*~~Speed of Flow~~*](https://animethemes.moe/video/Gintama-ED8.webm) | I definitely prefer the version of [Fuskashigi no Karte](https://animethemes.moe/video/Aobuta-ED1v2.webm) with all of the VAs singing. Not sure how different versions of EDs should work in this contest. -[**INSIDE IDENTITY**](https://animethemes.moe/video/Chuunibyou-ED1.webm) | [**Stand by me**](https://animethemes.moe/video/Sarazanmai-ED1.webm) | This isn't fair! Both of these EDs are Top 10 material imo. Seeing one of them leave in Round 1 just stings. -[**LIFE**](https://animethemes.moe/video/DrStone-ED1.webm) | [*~~Wonderful Wonder World~~*](https://animethemes.moe/video/LogHorizonS2-ED1.webm) | Kinda feel bad for *Wonderful Wonder World*. For seeing it for the first time, I really dig it. But Dr. Stone's EDs are excellent. -[**Memosepia**](https://animethemes.moe/video/MobPsycho100S2-ED2-NCBD1080.webm) | [*~~Wind~~*](https://animethemes.moe/video/Naruto-ED1.webm) | Am... am I the only one who thinks *Wind* sounds bad? -[*Michishirube*](https://animethemes.moe/video/VioletEvergarden-ED1-NCBD1080.webm) | [~~*Tonari no Totoro*~~](https://youtu.be/RlUhoO7FNcE) | I wasn't really impressed by Violet Evergarden's OP back during the OP contest, but this ED hits all the right notes. -[*Spice*](https://animethemes.moe/video/ShokugekiNoSouma-ED1.webm) | [*~~Yuki ni Saku Hana~~*](https://animethemes.moe/video/ShinsekaiYori-ED2.webm) | *Spice* is... certainly something. -[**Dango Daikazoku**](https://animethemes.moe/video/Clannad-ED1.webm) | [*~~X Jigen e Youkoso~~*](https://animethemes.moe/video/SpaceDandy-ED1.webm) | I'm not crying! You're crying! -[**~~World-Line~~**](https://animethemes.moe/video/SteinsGateZero-ED5-NCBD1080.webm) | [**Chiisana Te no Hira**](https://animethemes.moe/video/ClannadAfterStory-ED2.webm) | I'M NOT CRYING! YOU'RE CRYING! -[**The Real Folk Blues**](https://animethemes.moe/video/CowboyBebop-ED1.webm) | [*~~Platinum Jet~~*](https://animethemes.moe/video/Shirobako-ED2.webm) | Cowboy Bebop and good music. It just works. -[*~~Just Awake~~*](https://animethemes.moe/video/HunterHunter2011-ED1.webm) | [*Escape*](https://animethemes.moe/video/DarlingInTheFranXX-ED5-NCBD1080.webm) | I think this is the first time I'm voting for a more stereotypical ED over a more unique one. I think *Just Awake* is cool and all, but the autotune sounds grating more than anything else. Also, *Escape* is by far my favorite Darling in the FranXX ED, so far. -[*~~Hunting for Your Dream.~~*](https://animethemes.moe/video/HunterHunter2011-ED2.webm) | [**Another colony**](https://animethemes.moe/video/Tensura-ED1-NCBD1080.webm) | I'm a sucker for OPs/EDs that tell stories through their visuals. -[*~~Minna no Peace~~*](https://animethemes.moe/video/TengenToppaGurrenLagann-ED3.webm) | [*Samurai Heart (Some Like It Hot!!)*](https://animethemes.moe/video/GintamaS2-ED1-NCBD1080.webm) | Probably the first Gintama ED that I think is an absolute bop. -[**Sky Clad no Kansokusha**](https://animethemes.moe/video/SteinsGate-ED3.webm) | [*~~Yake Ochinai Tsubasa~~*](https://animethemes.moe/video/Charlotte-ED1.webm) | I AM MAD SCIENTIST! CHAOS! INVADE! -[*Vivace!*](https://animethemes.moe/video/HibikeEuphoniumS2-ED1.webm) | [*~~Snow Halation~~*](https://animethemes.moe/video/LoveLiveS2-ED8-NCBD1080Lyrics.webm) | This was a really close call. But the big band sound of *Vivace!* just slightly edges out *Snow Halation*'s idol show. -[**Chiisana Boukensha**](https://animethemes.moe/video/Konosuba-ED1.webm) | [*~~Thank You!!~~*](https://animethemes.moe/video/Bleach-ED2.webm) | I definitely like this Bleach ED more than the previous one, but I love the Konosuba EDs. I just need to hear a few notes and I immediately continue to hum the rest of the song. -[**Last Train Home**](https://animethemes.moe/video/JojoNoKimyouNaBoukenS3-ED1.webm) | [*~~Ref:rain~~*](https://animethemes.moe/video/KoiWaAmeagariNoYouNi-ED1-NCBD1080.webm) | I'm not the biggest fan of Stardust Crusaders (it's my least favorite part in the anime thus far), but **Last Train Home** is borderline perfection as an ED. -[**Roundabout**](https://animethemes.moe/video/JojoNoKimyouNaBouken-ED1.webm) | [*~~Life~~*](https://animethemes.moe/video/Bleach-ED5.webm) | Poor Bleach. Unlike yesterday, today's EDs have actually been pretty damn good. They just happen to be up against a couple of my favorite EDs... OOF. -[*~~Startear~~*](https://animethemes.moe/video/SwordArtOnlineS2-ED1.webm) | [**L.L.L.**](https://animethemes.moe/video/Overlord-ED1.webm) | Myth & Roid combined with that stunning light novel art is just amazing. -[**believe**](https://animethemes.moe/video/FateStayNightUBW-ED1.webm) | [*~~Duet♡ShitekudaΨ~~*](https://animethemes.moe/video/SaikiKusuoNoPsiNanS2-ED2-NCBD1080.webm) | Still can't believe [**Fellows**](https://animethemes.moe/video/CarnivalPhantasm-ED1.webm) didn't make the cut... Anyway, **believe** is alright. -[**~~Koukai no Uta~~**](https://animethemes.moe/video/BokuNoHeroAcademiaS4-ED1.webm) | [*Kamisama no Iutoori*](https://animethemes.moe/video/YojouhanShinwaTaikei-ED1.webm) | I have no idea what I'm watching, but I dig the shit out of it. -[**Name of Love**](https://animethemes.moe/video/ShingekiNoKyojinS3Part2-ED1-NCBD1080.webm) | [*~~You Only Live Once~~*](https://animethemes.moe/video/YuriOnIce-ED1.webm) | **Name of Love** always manages to choke me up whenever I watch it. Seeing just how far the show has come really hits me in the feels. -[**~~ring your bell~~**](https://animethemes.moe/video/FateStayNightUBWS2-ED1.webm) | [**sign**](https://animethemes.moe/video/GotoubunNoHanayome-ED1-NCBD1080.webm) | I guess I'm just not that crazy about the EDs from Unlimited Blade Works... -[**Vanilla Salt**](https://animethemes.moe/video/Toradora-ED1.webm) | [*~~Hitohira no Hanabira~~*](https://animethemes.moe/video/Bleach-ED17.webm) | **Vanilla Salt** is just too damn cute. -[**~~Alumina~~**](https://animethemes.moe/video/DeathNote-ED1.webm) | [**CheerS**](https://animethemes.moe/video/HatarakuSaibou-ED1-NCBD1080.webm) | Kawaii > Edge -[**~~Utsukushiki Zankoku na Sekai~~**](https://animethemes.moe/video/ShingekiNoKyojin-ED1.webm) | [**Style**](https://animethemes.moe/video/SoulEater-ED2.webm) | Okay. Both of these are great. So, I'm gonna vote for the lower seed. That little scene near the end with Maka leaning her face over Soul's is just too damn cute. -[**Overfly**](https://animethemes.moe/video/SwordArtOnline-ED2.webm) | [*aLIEz*](https://animethemes.moe/video/AldnoahZero-ED2.webm) | Not too crazy about either of these, but *aLIEz* picks up in the second half for an enjoyable song. -[*Fuyu Biyori*](https://animethemes.moe/video/YuruCamp-ED1.webm) | [*~~Kanade~~*](https://animethemes.moe/video/Takagi3S2-ED1.webm) | -[**Isekai Girls♡Talk**](https://animethemes.moe/video/IsekaiQuartet-ED1-NCBD1080.webm) | [*~~Inferno~~*](https://animethemes.moe/video/Promare-ED1.webm) | That first season of Isekai Quartet really was special. -[*Sugar Song to Bitter Step*](https://animethemes.moe/video/KekkaiSensen-ED1.webm) | [*~~Kimagure Romantic~~*](https://animethemes.moe/video/Takagi3-ED1-NCBD1080.webm) | OH. THIS ED. Yeah, this bops. -[*~~Tutti!~~*](https://animethemes.moe/video/HibikeEuphonium-ED1.webm) | [**HYDRA**](https://animethemes.moe/video/OverlordS2-ED1.webm) | I adore the ska sound and visuals of *Tutti!*, but I love **HYDRA** so... -[*~~Nagareboshi Kirari~~*](https://animethemes.moe/video/HunterHunter2011-ED4.webm) | [*Whitout*](https://animethemes.moe/video/BoogiepopWaWarawanai-ED1-NCBD1080.webm) | *Whiteout* is the more unique ED here. -[*unlasting*](https://animethemes.moe/video/SwordArtOnlineAlicizationS2-ED1-NCBD1080.webm) | [**~~Hallelujah☆Essaim~~**](https://animethemes.moe/video/GabrielDropout-ED1-NCBD1080.webm) | Not only are the visuals stunning, but LiSA just kills it. A shame to see *Hallelujah☆Essaim* lose in Round 1, but it matched up against a juggernaut. - -> What is your favorite ending from 2020? - -I wasn't a huge fan of anime in 2020. Pretty much stopped watching halfway through the year. But I do remember liking Interspecies Reviewers ED: [Hanabira Ondo](https://animethemes.moe/video/IshuzokuReviewers-ED1-NCBD1080.webm)";False;False;;;;1610665382;;False;{};gja77dy;False;t3_kxh4fx;False;False;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gja77dy/;1610752494;17;True;False;anime;t5_2qh22;;0;[]; -[];;;farson135;;;[];;;;text;t2_bp6v36d;False;False;[];;Baccano is a mystery show. The pieces will begin to fall into place as you continue watching.;False;False;;;;1610665390;;False;{};gja77wj;False;t3_kxge2t;False;True;t3_kxge2t;/r/anime/comments/kxge2t/feeling_a_bit_lost_baccano_ep1/gja77wj/;1610752504;1;True;False;anime;t5_2qh22;;0;[]; -[];;;oririn07;;;[];;;;text;t2_8yes6j73;False;False;[];;"fuutarou noticed, hence the ""you still have a lot of studying to do"" reply - -edit: changed quote to be exact same as the subs";False;False;;;;1610665449;;False;{};gja7c3c;False;t3_kxepsc;False;False;t1_gja517v;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja7c3c/;1610752581;46;True;False;anime;t5_2qh22;;0;[]; -[];;;fatty_toast;;;[];;;;text;t2_304b58em;False;False;[];;While she is cute I cannot overlook the bitching;False;False;;;;1610665520;;False;{};gja7h2g;False;t3_kxepsc;False;False;t1_gj9wy91;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja7h2g/;1610752669;15;True;False;anime;t5_2qh22;;0;[];True -[];;;Nietschzesuperhuman;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Doc_McCoy?status=7&order=4&ord";light;text;t2_vk6p0;False;False;[];;As far as I know it's not really based on assonance, I think it's just some fancy double-meaning sentence Natsume Soseki came up with.;False;False;;;;1610665549;;False;{};gja7j4o;False;t3_kxepsc;False;False;t1_gja1kqc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja7j4o/;1610752708;36;True;False;anime;t5_2qh22;;0;[]; -[];;;Redmon425;;;[];;;;text;t2_15ro6h;False;False;[];;"NANI NANI!?! The little girl form the flashback came to see him by the water, but her hair looked nothing like our 5 sisters. - -SO WAIT. Is there a chance that girl ends up being a completely different person!? That would be a crazy twist. - -Either way, I am still team harem as I legit like all 5 sisters and will forever hold out hope that it harem end happens lol. Or in a worst case he picks 1 of them but the other 4 constantly dress up as the one he picked, so they can stay with him as well lol.";False;False;;;;1610665550;;False;{};gja7j8h;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja7j8h/;1610752710;10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610665574;;1610665807.0;{};gja7kz3;False;t3_kxepsc;False;True;t1_gja1qbj;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja7kz3/;1610752745;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SorcererOfTheLake;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RiverSorcerer;light;text;t2_1pmzlf0y;False;True;[];;QOTD: Other Side from ID:Invaded.;False;False;;;;1610665577;;False;{};gja7l5e;True;t3_kxh4fx;False;False;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gja7l5e/;1610752749;7;True;False;anime;t5_2qh22;;0;[]; -[];;;lucacp_ysoz;;MAL;[];;http://myanimelist.net/profile/SoZLuka;dark;text;t2_gch7f;False;False;[];;the golden comment;False;False;;;;1610665624;;False;{};gja7ogd;False;t3_kxepsc;False;False;t1_gj9wfmx;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja7ogd/;1610752814;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Nietschzesuperhuman;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Doc_McCoy?status=7&order=4&ord";light;text;t2_vk6p0;False;False;[];;She did save his ass from their father, and she had her moments in the field trip, but yeah she is mostly hostile.;False;False;;;;1610665672;;False;{};gja7rvh;False;t3_kxepsc;False;False;t1_gja4tnl;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja7rvh/;1610752877;51;True;False;anime;t5_2qh22;;0;[]; -[];;;Inyari;;;[];;;;text;t2_4hg2d19x;False;False;[];;Idk I didn't watch Orange but it's like very happy and funny, and very sad and heartbreaking in the same anime (and it has a very very good ending);False;False;;;;1610665678;;False;{};gja7s9k;False;t3_kxgv7y;False;True;t1_gja6bwy;/r/anime/comments/kxgv7y/looking_for_recommendations_for_romance_anime/gja7s9k/;1610752884;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GhostOfLight;;;[];;;;text;t2_go8xe;False;False;[];;Other Side was definitely my favorite song out of this years ED's, but I think I'd rank Kakushigoto as a whole as my favorite ED from this year.;False;False;;;;1610665822;;False;{};gja82gc;False;t3_kxh4fx;False;False;t1_gja7l5e;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gja82gc/;1610753073;5;True;False;anime;t5_2qh22;;0;[]; -[];;;goodgrief-;;;[];;;;text;t2_4ugp50hb;False;False;[];;"Jujutsu Kaisen and Demon Slayer are probably popular recommendations, but they definitely have reason to be! - -One Punch Man season 2, in my opinion, wasn’t that bad- It’s just the animation that fell short a bit. - -You may like Vinland Saga too, I really enjoyed it!";False;False;;;;1610665830;;False;{};gja8327;False;t3_kxha6s;False;True;t3_kxha6s;/r/anime/comments/kxha6s/shonun_type_animes_to_watch/gja8327/;1610753084;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DarioMugiwara;;;[];;;;text;t2_4gwxg8py;False;False;[];;I think it will be shown in the next episode;False;False;;;;1610665831;;False;{};gja835n;False;t3_kxepsc;False;False;t1_gja4npd;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja835n/;1610753085;9;True;False;anime;t5_2qh22;;0;[]; -[];;;FuzzyEarz;;;[];;;;text;t2_buzkg;False;False;[];;That would make sense if they wanted to avoid the negative reception of the manga ending in the adaptation. My hope is that like you said they wanted to pickup traction by starting with 7GB and then go back to normal.;False;False;;;;1610665857;;False;{};gja850t;False;t3_kxepsc;False;True;t1_gja6ofa;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja850t/;1610753122;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;">StudyxStudy eliminated - -Culture status: DEAD - - X Jigen e Youkoso vs Dango Daikazoku? Another one of my nominations is going to get massacred due to unlucky matchups!!!!!!";False;False;;;;1610665860;;False;{};gja857n;False;t3_kxh4fx;False;False;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gja857n/;1610753126;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Jayarrxx;;;[];;;;text;t2_3m00bkx3;False;False;[];;Ur dumb for not watching OPM s2;False;False;;;;1610665863;;False;{};gja85g1;False;t3_kxha6s;False;True;t3_kxha6s;/r/anime/comments/kxha6s/shonun_type_animes_to_watch/gja85g1/;1610753131;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610665874;;False;{};gja868j;False;t3_kxepsc;False;True;t1_gja4npd;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja868j/;1610753146;8;True;False;anime;t5_2qh22;;0;[]; -[];;;UvealPear202;;;[];;;;text;t2_4m968rfs;False;False;[];;Is it good? All I’ve heard is not to watch it?;False;False;;;;1610665926;;False;{};gja89wk;True;t3_kxha6s;False;False;t1_gja85g1;/r/anime/comments/kxha6s/shonun_type_animes_to_watch/gja89wk/;1610753214;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mobilegamegod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Aochhi;light;text;t2_pkuqf;False;False;[];;"* Ashita no Joe -* Hajime no Ippo -* Aria Series -* Devilman";False;False;;;;1610665933;;False;{};gja8ad3;False;t3_kxha6s;False;True;t3_kxha6s;/r/anime/comments/kxha6s/shonun_type_animes_to_watch/gja8ad3/;1610753222;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610665938;;False;{};gja8apg;False;t3_kxha6s;False;True;t3_kxha6s;/r/anime/comments/kxha6s/shonun_type_animes_to_watch/gja8apg/;1610753229;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jayarrxx;;;[];;;;text;t2_3m00bkx3;False;False;[];;One of the only villains that will have you cheering for him pretty much the whole time;False;False;;;;1610666003;;False;{};gja8fbs;False;t3_kxha6s;False;True;t1_gja89wk;/r/anime/comments/kxha6s/shonun_type_animes_to_watch/gja8fbs/;1610753314;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BenDTU;;;[];;;;text;t2_mbfrs;False;False;[];;I mean the OP has Takeda in it and he doesn't get introduced until \*way\* later in the series.;False;False;;;;1610666015;;False;{};gja8g62;False;t3_kxepsc;False;True;t1_gja850t;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja8g62/;1610753329;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610666029;;False;{};gja8h6x;False;t3_kxha6s;False;True;t1_gja89wk;/r/anime/comments/kxha6s/shonun_type_animes_to_watch/gja8h6x/;1610753349;2;True;False;anime;t5_2qh22;;0;[]; -[];;;UvealPear202;;;[];;;;text;t2_4m968rfs;False;False;[];;"What’s the English translation for the first title, I’ll check demon slayer out. - -Oh is it just an animation problem, I’ll check it out if that’s the case. - -I’ll check that out.";False;False;;;;1610666031;;False;{};gja8hbn;True;t3_kxha6s;False;True;t1_gja8327;/r/anime/comments/kxha6s/shonun_type_animes_to_watch/gja8hbn/;1610753352;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;"**First-Timer, Dubbed** - -I kinda thought that Karasu died at the end of last episode, but this episode reveals that he is alive and in bad shape. Haruka asks Yuu to take up his role as her protector like it’s a reasonable thing, but she is 12 and emotional right now so I might let it slide. - -Atori is still alive too! So that makes an episode with three named bodies into an episode with one named body. Sorry, Fukuro, I guess things just weren’t meant to go your way. Atori has also lost his memories, and thinks that Miho is his sister.. - -Kosagi goes and tries to settle things on her own, against Kuina’s orders. Lacrima loses more robots that way. Kuina manages to save the day for our protagonists by forcing her back, being a good little double agent. - -Uchida lost some brownie points today. During the tailing section, she suspects that she knows where they are headed but goes aggro anyway? And she somehow knew that Haruka’s parents were divorced but not that they don’t live together? - -Questions - -1. Intentionally? Uhh, probably just driven pretty fast. Unintentionally? Hydroplaned off the road, into a rollover. Somehow had not a scratch on me, wasn’t even sore afterwards. When it’s pouring rain, slow the fuck down. - -2. I generally like Atori. He spent most of the show so far as an insane murderer, so I can hardly call him innocent or nice. But he has been fun to watch, and him being a bumbling amnesiac is no different.";False;False;;;;1610666034;;1610667433.0;{};gja8hj9;False;t3_kxfx0n;False;False;t3_kxfx0n;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gja8hj9/;1610753356;4;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;"Organizational suggestion: How about a break between the series end and EoE as well, so there can be one day of discussion for the whole series without EoE? - -**Third watch-through** - -First off, we don't ever actually see or hear how Eva-01 was brought back under control, it just happens off-screen somehow; it's only shown in the manga version, where it looks very similar to a certain scene in Attack on Titan S1. Further news, SEELE is now really starting to distrust Gendo and his sneaky S2 acquisition (their words about how they were not warned imply that Kaji is/was also working for them), NERV's systems are severely damaged for the foreseeable future, and Misato is too lost in thought (fear?) to even acknowledge Hyuga's joke. By the way, we can also see Maya holding the cute cat pillow she uses to sit high enough to reach everything she needs to. - -After being recently disappointed by Gendo's lack of attention to her, Ritsuko is finally ready to spill the secrets of the Evas to Misato, or at least what we could already have figured out, and doesn't even bother reacting to the second slap in contrast to last time, or later to dispute Misato's assertion that all NERV cares about is Eva-01. The phrasing is interesting, though, as man trying to create something in his own image (playing God?) Her fellow personnel also just look away, powerless. - -As for the remaining pilots: Rei gets her own ""unfamiliar ceiling"" moment (background noise is some weird stuff about LEFTIST TERRORISTS attacking Tokyo-2), and it seems she does put enough value on her life to care she's still doing well. Asuka doesn't even manage to check on her, totally consumed by her own rage at being proven inferior to Shinji, or perhaps really at her own powerlessness. - -Another budget-saving yet striking looong still shot of the grinning, bandaged Eva face as Misato and Ritsuko talk about how Shinji has apparently dissolved into primordial soup due to an overly high Eva synchronization rate, while maintaining his soul and the substance of his body. [EoE](/s ""which is of course essentially what happens to all of humanity later on"") The really crazy thing is how this implies the physical form of humanity is near-irrelevant, that there's no essential difference between an existence in a human body and an existence dissolved into soup. - -That said, now is where it gets really metaphysical. It's like Shinji is trying to (re)define his entire existence, who he knows, who his friends are, who his enemies (angels... GENDO) are, why he fights or if he even needs a reason to, his relationship with his father and his possible ""replacement"" by Rei, the Eva or presence within that he ""already knew"", and that doesn't want to let him out right now. Ritsuko says that ten years ago there was already a recovery mission like this that failed - any guesses? - -Shinji's dream-journey continues with him returning to the conviction that he is acting for others' and his fathers' approval, approval being the one thing he really craves. Ritsuko actually confirms that he is mentally going in circles here, thinking and thinking without getting anywhere (like a decision to return from the ""womb""). Also a scene with a bunch of nude promises to ""become one"" with him, which may look very strange here but I promise you watch all the way through/to EoE it will make more sense. - -And after listening in on that little conversation of Gendo and Yui about their child, it's once again Shinji's desire to be reunited with a maternal figure that brings him back, combined perhaps with how much Misato really cares about him, as Ritsuko indirectly tells her. Not that that puts them back on the best footing, though, as Misato just leaves her to spend some intimate time with Kaji. (With Ritsuko's words and the bit earlier, one might initially almost come to the unfortunate conclusion that the arm was Shinji...) - -Yes, this series technically includes a sex scene, some pretty weird pillow talk there though. How much is Misato really motivated by looking for the truth and how much is she just finding her own excuse for getting back together, just as she accuses Kaji of pretending not to care about other people while actually needing them (Asuka parallel?) - -Honestly I find this episode maybe a little repetitive and overly experimental, but it's still quite good. Next time, finally some more info on Nerv's past.";False;False;;;;1610666065;;1610671372.0;{};gja8jv1;False;t3_kxfygp;False;False;t3_kxfygp;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gja8jv1/;1610753401;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;[Mein Schülerinnen](https://i.imgur.com/EF7Oudz.jpg);False;False;;;;1610666068;;False;{};gja8k1b;False;t3_kxepsc;False;False;t1_gja1qbj;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja8k1b/;1610753405;24;True;False;anime;t5_2qh22;;0;[]; -[];;;UvealPear202;;;[];;;;text;t2_4m968rfs;False;False;[];;I’ll check em out;False;False;;;;1610666087;;False;{};gja8lee;True;t3_kxha6s;False;True;t1_gja8ad3;/r/anime/comments/kxha6s/shonun_type_animes_to_watch/gja8lee/;1610753430;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UvealPear202;;;[];;;;text;t2_4m968rfs;False;False;[];;Seen it, I’ll check it out;False;False;;;;1610666104;;False;{};gja8mm0;True;t3_kxha6s;False;True;t1_gja8apg;/r/anime/comments/kxha6s/shonun_type_animes_to_watch/gja8mm0/;1610753453;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610666106;;False;{};gja8mpu;False;t3_kxha6s;False;True;t1_gja8hbn;/r/anime/comments/kxha6s/shonun_type_animes_to_watch/gja8mpu/;1610753455;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chris10023;;;[];;;;text;t2_6mgro;False;False;[];;"**Rewatcher** - -Well, probably should be a little more careful to mention anything that could be a spoiler so I avoid my comment getting reported. - -* Seele is not happy to see Unit 01 awaken. What are they planning? - -* Zeruel did some tremendous damage to HQ, that was way too close a call. - -* Fucking hell, Unit 01 looks nightmarish. Careful Hyuga, Misato's not in the best mood, one of her pilots quit when she was unconscious due to Gendo's bullshit with the dummy plug and his lack of telling him how to effectively disable Unit 03 without killing Toji. Unit 00 is missing an arm and had Zeruel attack it's head, with the pilot in unknown condition, Unit 02 had it's arms and head removed, and Unit 01 turned into a fucking monster. I don't think a joke about her is going to ""lighten the mood."" - -* Hey Seele guys, it's not Gendo's fault that an end game Angel showed up and wrecked everyone. They were still licking their wounds from the previous Angel. - -* Shiji is lost in the Eva? Did he lock himself in it again, or did Unit 01 lock the door? No... he's not even in the Entry plug. The fuck happened? The Eva's were copied from that winged monster in the Antarctic? A Human's will has been infused with it? [Spoiler tagging this just in case](/s ""So that confirms it then, Shinji's mom never did die like Gendo said, she was absorbed into the Eva, that does explain why there was no body. but how? Did she reach 400% sync rate too?"") - -* Oh good Rei is still alive. - -* Asuka, however, isn't taking her loss easily. She trashed her room, she's furious. ""Can't believe it, I can't believe I couldn't do anything. Damn idiot Shinji stole the show. Damn it all!"" He didn't do that Asuka, Unit 01 did that. - -* [Can you say, nightmare fuel?](https://i.imgur.com/rZIX45e.png) - -* So, Shinji is now LCL fluid. And quantum stuff is involved, great. - -* Now we're in one hell of a trippy sequence, of Shinji self reflecting. He considers Gendo his enemy, for what he made him do to Toji, and he murdered his mother, but how? How did he murder his mother? - -* He's been stuck in there for 30 days, wow. Ritsko didn't come up with this, it was drawn up in an experiment 10 years ago? Hmm... - -* This whole ""be one with me."" scene is very creepy. - -* The plan isn't going well, now he's all over the floor, great now you need to mop him up. - -* Misato isn't taking this well at all. - -* He smells his mom, ""If it's a boy, Shinji, if it's a girl, Rei."" Interesting... - -* Shinji is alive now, after being ""Birthed"" from Unit 01. Some creative imagery - -* This is an, interesting conversation between Misato and Kaji. - -That was one hell of a trip, Shinji is lost in the Eva, and self reflects, much like he did back when he was lost in the void a few episodes ago, kid can't catch a break. But we learn that his mom was possibly murdered by Gendo. We also learn that Shinji wants people to be kind to him. - -**Question of the day!** - -> What do you think of Misato and Kaji's relationship? - -I'm not sure, honestly. - -EDIT: I just realized, there's a continuity error that happens in this episode, Shinji wasn't wearing his plugsuit, he didn't have time to change into it, he was wearing his usual outfit. When did he find the time to change into his plugsuit?";False;False;;;;1610666127;;1610668433.0;{};gja8o7m;False;t3_kxfygp;False;False;t3_kxfygp;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gja8o7m/;1610753484;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nietschzesuperhuman;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Doc_McCoy?status=7&order=4&ord";light;text;t2_vk6p0;False;False;[];;Just as a heads up the hair color is variable between them only because this makes it easier to differentiate them for the audience (and it's great for marketing too, let's be clear), but in-universe they all have the pink-ish color. Having said that, it's true that none of the five girls has that kind of hairstyle.;False;False;;;;1610666162;;False;{};gja8qrz;False;t3_kxepsc;False;False;t1_gja7j8h;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja8qrz/;1610753531;15;True;False;anime;t5_2qh22;;0;[]; -[];;;UvealPear202;;;[];;;;text;t2_4m968rfs;False;False;[];;I see, I don’t think there was a reason to call me dumb but I’ll check it out now.;False;False;;;;1610666182;;False;{};gja8s6g;True;t3_kxha6s;False;True;t1_gja8fbs;/r/anime/comments/kxha6s/shonun_type_animes_to_watch/gja8s6g/;1610753557;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">confirmation of the relation between rei and gendo. - -What do you mean? That he probably sees her as his daughter?";False;False;;;;1610666209;;False;{};gja8u57;False;t3_kxfygp;False;False;t1_gja12p6;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gja8u57/;1610753597;5;True;False;anime;t5_2qh22;;0;[]; -[];;;spicytuxboi;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_7r91180f;False;False;[];;High school dxd man;False;False;;;;1610666219;;False;{};gja8uti;False;t3_kxha6s;False;True;t3_kxha6s;/r/anime/comments/kxha6s/shonun_type_animes_to_watch/gja8uti/;1610753609;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jayarrxx;;;[];;;;text;t2_3m00bkx3;False;False;[];;When you finish you’ll know the reason. Enjoy :);False;False;;;;1610666244;;False;{};gja8whd;False;t3_kxha6s;False;True;t1_gja8s6g;/r/anime/comments/kxha6s/shonun_type_animes_to_watch/gja8whd/;1610753640;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UvealPear202;;;[];;;;text;t2_4m968rfs;False;False;[];;No thank you, not my thing.;False;False;;;;1610666249;;False;{};gja8wtq;True;t3_kxha6s;False;True;t1_gja8uti;/r/anime/comments/kxha6s/shonun_type_animes_to_watch/gja8wtq/;1610753647;2;True;False;anime;t5_2qh22;;0;[]; -[];;;napleonblwnaprt;;;[];;;;text;t2_dy6an;False;False;[];;"If I had to guess, they just wanted to end the episode with nino inviting Fuu to her room because it's spicy. Fuu recaps the conversation next chapter and it'll probably just get covered then as a flashback. - -The conspiracy theorist in me is taking note that the anime has made two targeted redactions of important moments so far. **Anime original ending confirmed.**";False;False;;;;1610666249;;False;{};gja8wul;False;t3_kxepsc;False;False;t1_gj9uifu;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja8wul/;1610753647;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Redmon425;;;[];;;;text;t2_15ro6h;False;False;[];;"Yeah I did learn about the hair color. It’s weird they did that. - -But it’s still true. None of the girls have that hair style or even length of hair. Like that girls hair was insanely long.";False;False;;;;1610666272;;False;{};gja8ydo;False;t3_kxepsc;False;False;t1_gja8qrz;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja8ydo/;1610753677;5;True;False;anime;t5_2qh22;;0;[]; -[];;;napleonblwnaprt;;;[];;;;text;t2_dy6an;False;False;[];;"What else was skipped? I didn't notice anything else - -Edit: They did change nino's ""I want to see kintaro"" lines.";False;False;;;;1610666291;;1610666574.0;{};gja8zqr;False;t3_kxepsc;False;True;t1_gja0hdj;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja8zqr/;1610753704;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">home boy try to make a pass at misato - -Probably just trying to lighten the mood a little";False;False;;;;1610666307;;False;{};gja90y0;False;t3_kxfygp;False;True;t1_gja4324;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gja90y0/;1610753727;3;True;False;anime;t5_2qh22;;0;[]; -[];;;UvealPear202;;;[];;;;text;t2_4m968rfs;False;False;[];;I can’t edit the post for some odd reason but halting the suggestions. Good lord that was quick. Thanks a lot everyone;False;False;;;;1610666318;;False;{};gja91nq;True;t3_kxha6s;False;True;t1_gja85g1;/r/anime/comments/kxha6s/shonun_type_animes_to_watch/gja91nq/;1610753741;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spicytuxboi;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_7r91180f;False;False;[];;OK;False;False;;;;1610666326;;False;{};gja928d;False;t3_kxha6s;False;True;t1_gja8wtq;/r/anime/comments/kxha6s/shonun_type_animes_to_watch/gja928d/;1610753752;1;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 125, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'When you come across a feel-good thing.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'icon_width': 2048, 'id': 'award_5f123e3d-4f48-42f4-9c11-e98b566d5897', 'is_enabled': True, 'is_new': False, 'name': 'Wholesome', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;Zeralyos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Zeralyos;light;text;t2_dphmj32;False;False;[];;"Quick reminder that all the EDs are catalogued [here](https://old.reddit.com/r/AnimeThemes/wiki/event/best_ending_vi)! - -I'd recommend you listen to as much as you can, but please give at least [Yuki ni Saku Hana](https://animethemes.moe/video/ShinsekaiYori-ED2.webm), [L.L.L.](https://animethemes.moe/video/Overlord-ED1.webm), [aLIEz](https://animethemes.moe/video/AldnoahZero-ED2.webm), [Fuyu Biyori](https://animethemes.moe/video/YuruCamp-ED1.webm), [Hydra](https://animethemes.moe/video/OverlordS2-ED1.webm), and [Whiteout](https://animethemes.moe/video/BoogiepopWaWarawanai-ED1.webm) a chance. - -QOTD: Nigredo (Magia Record ED 2) is probably my favorite ED ever, let alone just out of 2020.";False;False;;;;1610666400;;1610670468.0;{};gja97f6;False;t3_kxh4fx;False;False;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gja97f6/;1610753853;37;True;False;anime;t5_2qh22;;1;[]; -[];;;FuzzyEarz;;;[];;;;text;t2_buzkg;False;False;[];;Welp that's a sobering revelation haha, if we keep the pace of about 30 chapters person and account for some skipped chapters I could see his story starting near the end of the season but it seems like itll be rushed to get there anyway;False;False;;;;1610666489;;False;{};gja9dpt;False;t3_kxepsc;False;True;t1_gja8g62;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja9dpt/;1610753976;2;True;False;anime;t5_2qh22;;0;[]; -[];;;muazmueh;;;[];;;;text;t2_2tpmdr56;False;False;[];;Bruh Wonder Egg Priority animation rivals Kyoto Animation style. its super smooth;False;False;;;;1610666496;;False;{};gja9e77;False;t3_kxd55a;False;False;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gja9e77/;1610753985;26;True;False;anime;t5_2qh22;;0;[]; -[];;;HelloMagikarphowRyou;;;[];;;;text;t2_11jn0d9;False;False;[];;Still mad Study X Study was given such a low seed. Y'all don't know what's good.;False;False;;;;1610666528;;False;{};gja9ghh;False;t3_kxh4fx;False;False;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gja9ghh/;1610754031;17;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610666530;;1610667124.0;{};gja9gml;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja9gml/;1610754034;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BenDTU;;;[];;;;text;t2_mbfrs;False;False;[];;"[Manga spoilers](/s ""The Yotsuba date. Also the babysitting chapter which is less important overall but is one of my favourite chapters in the manga."")";False;False;;;;1610666609;;False;{};gja9m75;False;t3_kxepsc;False;False;t1_gja8zqr;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja9m75/;1610754142;13;True;False;anime;t5_2qh22;;0;[]; -[];;;adhdtingz;;;[];;;;text;t2_4500icrr;False;False;[];;that bitchslap actually made me question myself on how i treated my younger brother for all these years damn......but that scene got me heated up in the moment one way or the other imo;False;False;;;;1610666619;;False;{};gja9muz;False;t3_kxepsc;False;False;t1_gj9wx54;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gja9muz/;1610754154;13;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610666664;moderator;False;{};gja9pzd;False;t3_kxhm7b;False;False;t3_kxhm7b;/r/anime/comments/kxhm7b/would_this_anime_finding_tool_be_a_good_idea/gja9pzd/;1610754213;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Lz443, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610666664;moderator;False;{};gja9q0l;False;t3_kxhm7b;False;True;t3_kxhm7b;/r/anime/comments/kxhm7b/would_this_anime_finding_tool_be_a_good_idea/gja9q0l/;1610754214;1;False;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Some are not Shounen, but have fight scenes or maybe not fight scenes but has hype moments: - -Death Note - -Haikyuu - -The Promised Neverland - -Fullmetal Alchemist Brotherhood - -Banana Fish - -Vinland Saga - -Psycho-Pass - -Black Lagoon - -Seirei no Moribito - -Cowboy Bebop - -Gurren Lagann";False;False;;;;1610666688;;False;{};gja9rpi;False;t3_kxha6s;False;True;t3_kxha6s;/r/anime/comments/kxha6s/shonun_type_animes_to_watch/gja9rpi/;1610754247;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610666713;;False;{};gja9tf1;False;t3_kxh52v;False;True;t3_kxh52v;/r/anime/comments/kxh52v/bnha_season_4_episode_21_is_there_any_offical/gja9tf1/;1610754279;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SYZekrom;;;[];;;;text;t2_i5y6z;False;False;[];;"**First Timer** - -Ah, through all that existential crisis - -Also the horny of a teenage boy - -Very nice";False;False;;;;1610666796;;False;{};gja9z42;False;t3_kxfygp;False;False;t3_kxfygp;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gja9z42/;1610754387;7;True;False;anime;t5_2qh22;;0;[]; -[];;;napleonblwnaprt;;;[];;;;text;t2_dy6an;False;False;[];;The conspiracy theorist in me chooses to believe my girl has a chance this time.;False;False;;;;1610666810;;False;{};gjaa06o;False;t3_kxepsc;False;True;t1_gj9y1ct;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaa06o/;1610754408;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"Cloverworks artstyle is what makes it stand out for me. Horimiya and Wonder Egg Priority aren't just animated really well but the artstyle is amazing. Those two are already better visually than pretty much anything I watched last year excluding Kaguya and Decadence at time. (I didn't watch Akudama Drive but I've heard the praise it gets for the visuals. - -Even TPN looks good (The fish CGI in episode one was beautiful) despite the weird monster CGI. - -I really wonder how long was Wonder Egg in production for. It must've been in production for years considering how much movement the episode has. Hope it maintains the quality.";False;False;;;;1610666845;;False;{};gjaa2ma;False;t3_kxd55a;False;False;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjaa2ma/;1610754459;32;True;False;anime;t5_2qh22;;0;[]; -[];;;ENKlDU;;;[];;;;text;t2_4scvchzo;False;False;[];;"Yeah she looks great! - -There’s a reason why she’s one of the most popular quints alongside Miku";False;False;;;;1610666848;;1610667187.0;{};gjaa2vw;False;t3_kxepsc;False;False;t1_gj9wy91;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaa2vw/;1610754464;15;True;False;anime;t5_2qh22;;0;[]; -[];;;napleonblwnaprt;;;[];;;;text;t2_dy6an;False;False;[];;Oh gotcha, I thought you meant this episode specifically.;False;False;;;;1610666859;;False;{};gjaa3ok;False;t3_kxepsc;False;False;t1_gja9m75;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaa3ok/;1610754479;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Binbougami ga - -Barakamon - -Silver Spoon - -I Can't Understand What My Husband is Saying - -Konosuba - -Aho Girl - -Love Lab - -Daily Lives of High School Boys - -Grand Blue - -Gekkan Shoujo Nozaki-kun - -Hinamatsuri - -I haven't seen the anime you said, but if you like comedy anime I -suggest trying these out.";False;False;;;;1610666973;;False;{};gjaabnw;False;t3_kxger3;False;True;t3_kxger3;/r/anime/comments/kxger3/looking_for_a_funny_anime_like_haganai/gjaabnw/;1610754634;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CringeKage222;;;[];;;;text;t2_2v8v29g9;False;False;[];;You can find the colored version on every pirate site basically;False;False;;;;1610667026;;False;{};gjaafdy;False;t3_kxf25z;False;True;t1_gj9v38s;/r/anime/comments/kxf25z/anime_or_manga_for_one_piece/gjaafdy/;1610754705;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ENKlDU;;;[];;;;text;t2_4scvchzo;False;False;[];;:3;False;False;;;;1610667077;;False;{};gjaaix5;False;t3_kxepsc;False;True;t1_gj9yw13;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaaix5/;1610754781;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Sneaky_42;;;[];;;;text;t2_4spbyunp;False;False;[];;Nino's hair is definitely redder this season.;False;False;;;;1610667095;;False;{};gjaak8c;False;t3_kxepsc;False;False;t1_gja1jut;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaak8c/;1610754806;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Sneaky_42;;;[];;;;text;t2_4spbyunp;False;False;[];;All hail Princess Nino! 🙌;False;False;;;;1610667129;;False;{};gjaampq;False;t3_kxepsc;False;False;t1_gj9wy91;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaampq/;1610754854;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610667187;;False;{};gjaaqrv;False;t3_kxepsc;False;True;t1_gja7h2g;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaaqrv/;1610754927;0;True;False;anime;t5_2qh22;;0;[]; -[];;;cdg6921;;;[];;;;text;t2_5p4pxen3;False;False;[];;Id recommend saekano if you haven't watched it already. Cloverworks did it's movie finale. So good.;False;False;;;;1610667238;;False;{};gjaaub6;False;t3_kxd55a;False;False;t1_gj9hnnx;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjaaub6/;1610754991;19;True;False;anime;t5_2qh22;;0;[]; -[];;;napleonblwnaprt;;;[];;;;text;t2_dy6an;False;False;[];;"This. A year on, I'm still upset. I'm a veteran of harems but nothing really compares to the flatness and single dimensionality of the end of 5tb. - -Still enjoying the show and watching best girl's best moments get animated.";False;False;;;;1610667267;;False;{};gjaawek;False;t3_kxepsc;False;False;t1_gja1ws8;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaawek/;1610755027;10;True;False;anime;t5_2qh22;;0;[]; -[];;;ENKlDU;;;[];;;;text;t2_4scvchzo;False;False;[];;Ninos one of the most popular quints alongside Miku 💯🤝;False;False;;;;1610667306;;False;{};gjaaz2v;False;t3_kxepsc;False;False;t1_gj9wda0;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaaz2v/;1610755079;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610667326;;False;{};gjab0he;False;t3_kxepsc;False;True;t1_gja9gml;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjab0he/;1610755104;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ENKlDU;;;[];;;;text;t2_4scvchzo;False;False;[];;"Nino fans: - -#soon";False;False;;;;1610667343;;False;{};gjab1my;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjab1my/;1610755126;31;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarRufus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ScarRufus;light;text;t2_2u0vy1pk;False;False;[];;"I think MAL way is kinda ok for recommendations. There are some trolls, but you can easily know. - ->doesn't recommend based off your personal list as a whole. - -I think this would be extremely difficult. Take some anime with multiple genres. And for people like my self that like a little of everything. It is impossible. - -That is why the recommendations are made by the community by each anime. If you Like ""This anime"" you might like ""that anime"". - -There is also a tool to compare lists and see if you and other user share the same taste.";False;False;;;;1610667529;;False;{};gjabeoy;False;t3_kxhm7b;False;True;t3_kxhm7b;/r/anime/comments/kxhm7b/would_this_anime_finding_tool_be_a_good_idea/gjabeoy/;1610755357;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Animegamingnerd;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/animegamingnerd;light;text;t2_k7u33;False;False;[];;Takeda being in the op has pretty guaranteed we will go past the scramble eggs arc and with how much the op has focused on the sisters as kids, gives me vibes they might to do the Kyoto arc.;False;False;;;;1610667591;;False;{};gjabiz5;False;t3_kxepsc;False;True;t1_gja8g62;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjabiz5/;1610755434;2;True;False;anime;t5_2qh22;;0;[]; -[];;;napleonblwnaprt;;;[];;;;text;t2_dy6an;False;False;[];;"I know some of you remember me from when the manga was still ongoing and I tinfoil-hatted hard for [Best Girl](/s ""Itsuki"") only to have my hopes dashed. - -Well I'm calling it here on episode two. Anime original ending with Best Girl as the winner.";False;False;;;;1610667724;;1610668279.0;{};gjabsaq;False;t3_kxepsc;False;False;t1_gj9r2tr;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjabsaq/;1610755601;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Dawnstorm111;;;[];;;;text;t2_4g8vg5x9;False;False;[];;Yeah, all three Cloverworks shows are incredible. I'm so hyped for all 3 of their next episodes, but WEP in particular has me absolutely hooked and even though it's an anime original, meaning I have no way to know if the source material is good since there is none, it's probably the one I'm most excited for. I haven't seen a show like WEP in a while and it's also just the most gorgeous anime I've seen this season.;False;False;;;;1610667765;;False;{};gjabv23;False;t3_kxd55a;False;False;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjabv23/;1610755651;11;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;Thanks for posting this. You have the incorrect HxH ED in there, though. It should be [Reason](https://animethemes.moe/video/HunterHunter2011-ED3.webm) not Nagareboshi Kirari.;False;False;;;;1610667780;;False;{};gjabw2v;False;t3_kxh4fx;False;False;t1_gja77dy;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjabw2v/;1610755670;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610667814;;False;{};gjabyff;False;t3_kxgv7y;False;True;t3_kxgv7y;/r/anime/comments/kxgv7y/looking_for_recommendations_for_romance_anime/gjabyff/;1610755711;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EverythingsRed2;;;[];;;;text;t2_75royj7g;False;False;[];;"First timer (subbed) - -I can't win. I just can't win. This show one-ups me at every turn! - -Of course Atori is still alive. Not even complete obliteration could kill the great Atori. Fukuro just wasn't cool enough to return to life or something ig. On another note, his interaction with ""Sara"" is interesting. Is Atori her older brother? Speaking of which, we have yet to meet the old Glasses really. I wonder what happened to her. - -I feel like Tobi has been pretty underappreciated so far, I'm glad that he's getting more relevance, he seems pretty cool, with more of a support role compared to the other knights. He kinda feels like one of those characters that the audience is supposed to care about, only to die by the villain giving the mc revenge motivation, but since none of my other predictions ever come true, he'll be ok. Possibly. - -I like how they get their teacher to help this dying man instead of like a doctor or whatnot. She's certainly a fun person. I wasn't expecting her off-road racing skills. I'm sure white hair was having a blast on that bumpy ride as he slowly suffered. Anyways, imagining the scientists trying to explain to a towing company their location is very enjoyable. - -Qs. - -1. I don't have any stories about driving one, but I vaguely remember having this nerf gun war with my brother, but instead of nerf guns and foam bullets we just threw hot-wheels at eachother. -2. Honestly I'm not quite on board just yet. His character ark, while ending in tragedy, felt complete in a sense. He was a foil for white hair and didn't really need any backstory or other motive to fulfill him as a character. This change from a simple mirror of white hair into this completely different, personalized character is just very odd. I'm sure he'll grow on my again, but it's going to take some time to get used to.";False;False;;;;1610667819;;False;{};gjabys7;False;t3_kxfx0n;False;False;t3_kxfx0n;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjabys7/;1610755718;6;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610667915;moderator;False;{};gjac5fb;False;t3_kxhzrl;False;True;t3_kxhzrl;/r/anime/comments/kxhzrl/looking_anime_that_i_watched_long_ago_that_had/gjac5fb/;1610755854;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Denzel_Potato09;;;[];;;;text;t2_5upv9a99;False;False;[];;"If you want a Happy Ending, then I recommend these: - -°Just Because! - - -°Tada Never Falls In Love - - -°ReLife - - -°Orange (it does take a little detour though before the happy ending)";False;False;;;;1610667927;;False;{};gjac69c;False;t3_kxgv7y;False;True;t3_kxgv7y;/r/anime/comments/kxgv7y/looking_for_recommendations_for_romance_anime/gjac69c/;1610755883;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;I'm glad that idea was promptly shut down. [](#scaredmio);False;False;;;;1610667973;;False;{};gjac9jy;False;t3_kxfx0n;False;False;t1_gja1sgy;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjac9jy/;1610755941;5;True;False;anime;t5_2qh22;;0;[]; -[];;;melongrip;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Dakotah;light;text;t2_gkrni;False;False;[];;I don’t know for every show of theirs, but the first episode for wonder egg priority had a lot of talented freelancers doing the key animation, and Fate Babylonia was similar for the whole series too. Might be a mix of both?;False;False;;;;1610667982;;False;{};gjaca6d;False;t3_kxd55a;False;True;t1_gja3v8d;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjaca6d/;1610755953;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lost-NotFound;;;[];;;;text;t2_57xayenq;False;False;[];;yeah probably lol. i just found it funny.;False;False;;;;1610668027;;False;{};gjacdbh;False;t3_kxfygp;False;True;t1_gja90y0;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjacdbh/;1610756014;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DurableNapkin;;;[];;;;text;t2_10klkt;False;False;[];;Maybe https://myanimelist.net/anime/30240/Prison_School/ ?;False;False;;;;1610668035;;False;{};gjacdy5;False;t3_kxhzrl;False;True;t3_kxhzrl;/r/anime/comments/kxhzrl/looking_anime_that_i_watched_long_ago_that_had/gjacdy5/;1610756026;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"[*How can she slap?*](https://i.imgur.com/CXfprmI.jpg) - -It's interesting that we get to see more of the ups and downs of the relationship between the quintuplets. They care about each other a lot but can be very stubborn and prideful too. It might be a way for them to assert their individuality.";False;False;;;;1610668049;;False;{};gjacews;False;t3_kxepsc;False;False;t1_gj9wi9a;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjacews/;1610756046;80;True;False;anime;t5_2qh22;;0;[]; -[];;;Rigoku;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Elitar;light;text;t2_2j07de1;False;False;[];;There is anime.plus for MAL, but it does not work perfectly. From 10 titles it gives me i would consider watching only 2 of them;False;False;;;;1610668052;;False;{};gjacf5k;False;t3_kxhm7b;False;False;t3_kxhm7b;/r/anime/comments/kxhm7b/would_this_anime_finding_tool_be_a_good_idea/gjacf5k/;1610756050;2;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;"I'm glad to see There is a Reason move on. A lot of these ED's are probably going to struggle because they lose a lot of their meaning without the context of the anime. - -QOTD: Definitely [Tiny Light](https://animethemes.moe/video/JibakuShounenHanakoKun-ED1.webm). If Magia wins this year, I'm going all in on Tiny Light next year.";False;False;;;;1610668072;;False;{};gjacgjq;False;t3_kxh4fx;False;False;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjacgjq/;1610756076;6;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;It's pretty loved in Japan, the number of episodes might have something to do with it not being as loved in the West.;False;False;;;;1610668100;;False;{};gjaciiq;False;t3_kxhv53;False;False;t3_kxhv53;/r/anime/comments/kxhv53/why_is_detective_conan_so_underrated/gjaciiq/;1610756111;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;8.17 on MAL doesn't suggest it's underrated...;False;False;;;;1610668144;;False;{};gjacll6;False;t3_kxhv53;False;False;t3_kxhv53;/r/anime/comments/kxhv53/why_is_detective_conan_so_underrated/gjacll6/;1610756166;5;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;">Minna no Peace vs Samurai Hot - -Oh c'mon. Breaking my heart 2 days in a row. I'm giving my plug to [Samurai Hot](https://youtu.be/v0cAJ1Cg8E8) today. Listen to it once and see if it doesn't get stuck in your head. Simply unforgivable seeding";False;False;;;;1610668160;;False;{};gjacmp2;False;t3_kxh4fx;False;False;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjacmp2/;1610756188;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;">underrated - -It’s far from underrated though. It’s one of the longest running anime ever and it has a huge following in several places like Japan, Spain, areas in Europe, etc. - -You just don’t hear as much discussion about it in America because it didn’t take off as much when it was localized.";False;False;;;;1610668175;;False;{};gjacnpu;False;t3_kxhv53;False;False;t3_kxhv53;/r/anime/comments/kxhv53/why_is_detective_conan_so_underrated/gjacnpu/;1610756206;9;True;False;anime;t5_2qh22;;0;[]; -[];;;lilirucaarde12;;;[];;;;text;t2_6i04uaxw;False;False;[];;Nope bcs that has like all time prison and that mc was only like 2 days in that school that had prison;False;False;;;;1610668181;;False;{};gjaco45;True;t3_kxhzrl;False;True;t1_gjacdy5;/r/anime/comments/kxhzrl/looking_anime_that_i_watched_long_ago_that_had/gjaco45/;1610756213;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Alita_Shelby;;;[];;;;text;t2_3x2b2vnq;False;False;[];;Try Fruits Basket;False;False;;;;1610668221;;False;{};gjacqsz;False;t3_kxgv7y;False;True;t3_kxgv7y;/r/anime/comments/kxgv7y/looking_for_recommendations_for_romance_anime/gjacqsz/;1610756262;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;Just watched Space Dandy this year, and [X Jigen e Youkoso](https://youtu.be/0EHzC0xD0rM) has shot to my top 5 endings. It's literally a love letter to physics;False;False;;;;1610668234;;False;{};gjacrpb;False;t3_kxh4fx;False;False;t1_gja857n;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjacrpb/;1610756278;6;True;False;anime;t5_2qh22;;0;[]; -[];;;AVrandomusic;;;[];;;;text;t2_747ea0dh;False;False;[];;Who's complaining? I'm a thigh stand!;False;False;;;;1610668310;;False;{};gjacwx5;False;t3_kxi2w8;False;False;t3_kxi2w8;/r/anime/comments/kxi2w8/stop_complaining_about_the_thighs_in/gjacwx5/;1610756371;6;True;False;anime;t5_2qh22;;0;[]; -[];;;mealsmeals;;;[];;;;text;t2_9p5tqc6p;False;False;[];;Toradora and Maid Sama are both really good plus they’re both on Netflix which i find very nice .. :);False;False;;;;1610668324;;False;{};gjacxyw;False;t3_kxgv7y;False;False;t3_kxgv7y;/r/anime/comments/kxgv7y/looking_for_recommendations_for_romance_anime/gjacxyw/;1610756395;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610668342;;False;{};gjacz5w;False;t3_kxepsc;False;True;t1_gjabsaq;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjacz5w/;1610756419;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;"> You just don’t hear as much discussion about it in America because it didn’t take off as much when it was localized. - -Probably doesn't help that the name was changed to ""Case Closed"" due to copyright concerns.... They couldn't possibly find a more bland name than that.";False;False;;;;1610668362;;False;{};gjad0li;False;t3_kxhv53;False;False;t1_gjacnpu;/r/anime/comments/kxhv53/why_is_detective_conan_so_underrated/gjad0li/;1610756445;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;[](#neat);False;False;;;;1610668390;;False;{};gjad2l6;False;t3_kxi2w8;False;True;t3_kxi2w8;/r/anime/comments/kxi2w8/stop_complaining_about_the_thighs_in/gjad2l6/;1610756481;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Cadenman15;;;[];;;;text;t2_8ft41t2r;False;False;[];;I don’t think it is;False;False;;;;1610668393;;False;{};gjad2rq;False;t3_kxhv53;False;True;t3_kxhv53;/r/anime/comments/kxhv53/why_is_detective_conan_so_underrated/gjad2rq/;1610756485;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;"Well, last year, we had other stuff like - -Babylonia and SAO WoUW - -Both of which were pretty damn detailed and looked gorgeous with its art. Especially during the fight scenes, where every almost frame is a goddam wallpaper.";False;False;;;;1610668398;;False;{};gjad37m;False;t3_kxd55a;False;False;t1_gjaa2ma;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjad37m/;1610756493;9;True;False;anime;t5_2qh22;;0;[]; -[];;;PraisePace;;;[];;;;text;t2_cnjfazl;False;False;[];;Wonder Egg Priority and Horimiya look fantastic. I struggle to believe that this is the same studio that just put out bland, weekly slideshows for the last season of Fairy Tail.;False;False;;;;1610668435;;False;{};gjad5tz;False;t3_kxd55a;False;False;t1_gj9gppi;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjad5tz/;1610756542;28;True;False;anime;t5_2qh22;;0;[]; -[];;;ConfusedNugu;;;[];;;;text;t2_o11sf;False;False;[];;"anime.plus does personalized recommendations based on your MAL, I don't remember how good/relevant they are though. edit: it only gives you 10 recommendations from what I can tell - -Generally speaking, as the other commenter mentioned, I think it'd be very hard to get super accurate computer generated recommendations. Unless you're somehow going to sort the entire database with something more detailed than genres, you're going to still have a ton of anime being recommended that have barely anything in common. - -An example of this could be a shoujo romance drama and an isekai harem, both of which would have a 'romance' genre tag, but obviously there isn't much overlap between them otherwise. Obviously a user is able to tell the difference but you'd have to find something else to differentiate between them if you wanted the process to be automated.";False;False;;;;1610668480;;False;{};gjad8x6;False;t3_kxhm7b;False;True;t3_kxhm7b;/r/anime/comments/kxhm7b/would_this_anime_finding_tool_be_a_good_idea/gjad8x6/;1610756601;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeralyos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Zeralyos;light;text;t2_dphmj32;False;False;[];;"> A lot of these ED's are probably going to struggle because they lose a lot of their meaning without the context of the anime. - -This is probably why Dango Daikazoku fails to make an impression on me while a lot of people seem to love it.";False;False;;;;1610668484;;False;{};gjad97r;False;t3_kxh4fx;False;False;t1_gjacgjq;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjad97r/;1610756606;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"LOL, are you serious right now? - -Sorry we just want something to save lives";False;False;;;;1610668508;;False;{};gjadatw;False;t3_kxi2w8;False;True;t3_kxi2w8;/r/anime/comments/kxi2w8/stop_complaining_about_the_thighs_in/gjadatw/;1610756635;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;nf_hades;;;[];;;;text;t2_hriq1b;False;False;[];;just go to the new season on crunchy roll and check the comments. Their everwhere. on both episodes.;False;True;;comment score below threshold;;1610668527;;False;{};gjadc7w;True;t3_kxi2w8;False;True;t1_gjacwx5;/r/anime/comments/kxi2w8/stop_complaining_about_the_thighs_in/gjadc7w/;1610756661;-12;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;If I can’t watch anime for the thick thighs, then what’s the point in watching anime at all...;False;False;;;;1610668537;;False;{};gjadcwh;False;t3_kxi2w8;False;False;t3_kxi2w8;/r/anime/comments/kxi2w8/stop_complaining_about_the_thighs_in/gjadcwh/;1610756673;6;True;False;anime;t5_2qh22;;0;[]; -[];;;nf_hades;;;[];;;;text;t2_hriq1b;False;False;[];;I have nothing against liking thick thighs. my problem lies with the people who are dropping the show because of it.;False;False;;;;1610668586;;False;{};gjadgd7;True;t3_kxi2w8;False;True;t1_gjadatw;/r/anime/comments/kxi2w8/stop_complaining_about_the_thighs_in/gjadgd7/;1610756736;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CubeStuffs;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/onjario;light;text;t2_eh59b;False;False;[];;yeah or family ig;False;False;;;;1610668650;;False;{};gjadkqu;False;t3_kxfygp;False;False;t1_gja8u57;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjadkqu/;1610756814;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;I honestly didn't even notice until I saw reddit comments about it...;False;False;;;;1610668658;;False;{};gjadlbc;False;t3_kxi2w8;False;True;t3_kxi2w8;/r/anime/comments/kxi2w8/stop_complaining_about_the_thighs_in/gjadlbc/;1610756824;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;"#Vote [Unlasting](https://youtu.be/2gRAkt2Apnk) - -Just listen to this masterpiece ! *chef’s kiss*";False;False;;;;1610668689;;False;{};gjadnju;False;t3_kxh4fx;False;False;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjadnju/;1610756864;8;True;False;anime;t5_2qh22;;0;[]; -[];;;AVrandomusic;;;[];;;;text;t2_747ea0dh;False;False;[];;"Same lol. I want to be either -A. crushed by anime thighs - -or - -B. get a thigh lap pillow lol";False;False;;;;1610668691;;False;{};gjadnoc;False;t3_kxi2w8;False;True;t1_gjadcwh;/r/anime/comments/kxi2w8/stop_complaining_about_the_thighs_in/gjadnoc/;1610756866;4;True;False;anime;t5_2qh22;;0;[]; -[];;;nf_hades;;;[];;;;text;t2_hriq1b;False;False;[];;I didn't either that's why it annoys me so much that people are making such a big deal about it.;False;False;;;;1610668703;;False;{};gjadog1;True;t3_kxi2w8;False;True;t1_gjadlbc;/r/anime/comments/kxi2w8/stop_complaining_about_the_thighs_in/gjadog1/;1610756879;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;AVrandomusic;;;[];;;;text;t2_747ea0dh;False;False;[];;Jesus, some people just gotta chillax.;False;False;;;;1610668717;;False;{};gjadphb;False;t3_kxi2w8;False;False;t1_gjadc7w;/r/anime/comments/kxi2w8/stop_complaining_about_the_thighs_in/gjadphb/;1610756898;5;True;False;anime;t5_2qh22;;0;[]; -[];;;gratifiedlonging;;;[];;;;text;t2_93iwn0o7;False;False;[];;"The Higurashi sub is exploding over the episode earlier. Best episode so far; they got all of us the first half.";False;False;;;;1610668741;;False;{};gjadr46;False;t3_kxepsc;False;True;t1_gj9rlpq;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjadr46/;1610756928;2;True;False;anime;t5_2qh22;;0;[]; -[];;;th3plague;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/th3plague;light;text;t2_3erjrvx2;False;False;[];;"This bracket is bananas. Dango, Real Folk, Sugar Song, Bunny Girl, Roundabout, Beautiful Cruel World... What a bloodbath. - -Today's recommended underdog: I love TTGL but [Samurai Heart](https://animethemes.moe/video/GintamaS2-ED1.webm) slaps.";False;False;;;;1610668751;;False;{};gjadrt6;False;t3_kxh4fx;False;False;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjadrt6/;1610756941;21;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610668753;;False;{};gjadrzh;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjadrzh/;1610756945;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- Direction toward specific sources of pirated content of any type is not allowed. This includes links to unofficial scanlations, streams, uploads, and download sources of any copyrighted content. It also includes direction towards specific sites offering this type of content, and watermarks mentioning such sites in uploaded images/videos. - - Discussion of piracy in general is allowed, **but naming, linking to, or hinting towards specific sources is not. Offering to send links via PM is also not allowed.** For more details, see our [full rules on illegal content](https://www.reddit.com/r/anime/wiki/rules#wiki_do_not_link_to_illegal_content). - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610668764;moderator;False;{};gjadsu9;False;t3_kxh52v;False;True;t1_gja9tf1;/r/anime/comments/kxh52v/bnha_season_4_episode_21_is_there_any_offical/gjadsu9/;1610756960;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Where did you see that? Tik tok or mal?;False;False;;;;1610668780;;False;{};gjadtz3;False;t3_kxi2w8;False;True;t1_gjadgd7;/r/anime/comments/kxi2w8/stop_complaining_about_the_thighs_in/gjadtz3/;1610756979;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;nf_hades;;;[];;;;text;t2_hriq1b;False;False;[];;right? I like thick theighs, but cmon.;False;False;;;;1610668786;;False;{};gjaduck;True;t3_kxi2w8;False;True;t1_gjadphb;/r/anime/comments/kxi2w8/stop_complaining_about_the_thighs_in/gjaduck/;1610756986;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Verzwei;;;[];;;;text;t2_cmzqb;False;False;[];;"Yes, sometimes. The show somewhat infamously has one of the most extreme ""normie barriers"" in its first 90 seconds. And it's got a few other risque scenes sprinkled throughout. - -Lewds aren't the whole premise of the show, but it doesn't shy away from that subject matter. - -Imouto Sae / A Sister's All You Need is the show I was going to suggest if someone else hadn't already. Since someone already covered that one, if you remember the scene from Haganai's second season where the gang is talking about the popularity of girls cross-dressing as butlers and then they go on a _long_ tangent about ""that chicken mayonnaise thing"" and if _that_ sounded interesting to you, then check out [Mayo Chiki,](https://anilist.co/anime/10110/Mayo-Chiki) because they were literally talking about that series.";False;False;;;;1610668792;;1610670041.0;{};gjaduqg;False;t3_kxger3;False;True;t1_gja4nr6;/r/anime/comments/kxger3/looking_for_a_funny_anime_like_haganai/gjaduqg/;1610756993;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ramzilla95;;;[];;;;text;t2_xn9v7;False;False;[];;Thanks for the correction. Turns out the contest has Reason listed incorrectly as ED4. It's actually ED3.;False;False;;;;1610668809;;False;{};gjadvy1;False;t3_kxh4fx;False;True;t1_gjabw2v;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjadvy1/;1610757015;3;True;False;anime;t5_2qh22;;0;[]; -[];;;nf_hades;;;[];;;;text;t2_hriq1b;False;False;[];;go look at the Crunchyroll comments on the new season.;False;False;;;;1610668827;;False;{};gjadxa0;True;t3_kxi2w8;False;True;t1_gjadtz3;/r/anime/comments/kxi2w8/stop_complaining_about_the_thighs_in/gjadxa0/;1610757039;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610668828;;False;{};gjadxdh;False;t3_kxepsc;False;True;t1_gja18ol;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjadxdh/;1610757042;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutMcD;;;[];;;;text;t2_19qzik0t;False;False;[];;Soooon;False;False;;;;1610668829;;False;{};gjadxe3;False;t3_kxepsc;False;True;t1_gj9yw13;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjadxe3/;1610757042;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"Saw some clips of Babylonia going around, definitely looked great. - -I don't dig SAO artstyle at all though tbh. Outside of the Bercouli fight where the entire artstyle was changed, I wasn't heavily impressed. The Sinon fight was pretty good. Even the Kirito part in the battle against Vecta which everyone seemingly loved didn't interest me much visually due to how weird some scenes looked. The effects on Kirito's sword were really great though.";False;False;;;;1610668854;;False;{};gjadz72;False;t3_kxd55a;False;True;t1_gjad37m;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjadz72/;1610757073;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Prize_Dentist5793;;;[];;;;text;t2_98ee1v7q;False;False;[];;They completely cut chapters 37,38 and 39... For all the anime only, go and retrieve them, they're really important, especially chapter 38.;False;False;;;;1610668954;;False;{};gjae637;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjae637/;1610757204;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"[Extra angry pout today](https://i.imgur.com/zIM3Dvi.jpg) - -[](#katoupout)";False;False;;;;1610668985;;False;{};gjae87l;False;t3_kxepsc;False;False;t1_gja1os6;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjae87l/;1610757242;64;True;False;anime;t5_2qh22;;0;[]; -[];;;MusubiKazesaru;;;[];;;;text;t2_oh8ti;False;False;[];;It's very ecchi, but in an interesting way. It's about a close knit group of friends who get together and do things like play board games but most of them are in the light novel industry as writers. The character art in the original series was done by Kantoku (the guy who does One Room and some other stuff) so the designs are very cute.;False;False;;;;1610669014;;False;{};gjaea4w;False;t3_kxger3;False;True;t1_gja4nr6;/r/anime/comments/kxger3/looking_for_a_funny_anime_like_haganai/gjaea4w/;1610757277;1;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'PREMIUM', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 30, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'A golden splash of respect', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/80j20o397jj41_NarwhalSalute.png', 'icon_width': 2048, 'id': 'award_a2506925-fc82-4d6c-ae3b-b7217e09d7f0', 'is_enabled': True, 'is_new': False, 'name': 'Narwhal Salute', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/80j20o397jj41_NarwhalSalute.png?width=16&height=16&auto=webp&s=4e475e8c3265ec7148d7f4204f07d33949482f21', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/80j20o397jj41_NarwhalSalute.png?width=32&height=32&auto=webp&s=42e32a4b9f1e70791716c3be283e89951e212a69', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/80j20o397jj41_NarwhalSalute.png?width=48&height=48&auto=webp&s=5adb621fede4e8e66b952a379ad038fcc1b8ad13', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/80j20o397jj41_NarwhalSalute.png?width=64&height=64&auto=webp&s=6161edea19569bbee73ef322a2e5470535ec1787', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/80j20o397jj41_NarwhalSalute.png?width=128&height=128&auto=webp&s=5d2c75f44f176f430e936204f9a53b8a2957f2fc', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/80j20o397jj41_NarwhalSalute.png?width=16&height=16&auto=webp&s=4e475e8c3265ec7148d7f4204f07d33949482f21', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/80j20o397jj41_NarwhalSalute.png?width=32&height=32&auto=webp&s=42e32a4b9f1e70791716c3be283e89951e212a69', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/80j20o397jj41_NarwhalSalute.png?width=48&height=48&auto=webp&s=5adb621fede4e8e66b952a379ad038fcc1b8ad13', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/80j20o397jj41_NarwhalSalute.png?width=64&height=64&auto=webp&s=6161edea19569bbee73ef322a2e5470535ec1787', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/80j20o397jj41_NarwhalSalute.png?width=128&height=128&auto=webp&s=5d2c75f44f176f430e936204f9a53b8a2957f2fc', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/80j20o397jj41_NarwhalSalute.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;tapdancinmidget;;;[];;;;text;t2_pd4i6sk;False;False;[];;I just think anime should relax with sexualizing underage girls smh;False;False;;;;1610669028;;False;{};gjaeb3p;False;t3_kxi2w8;False;True;t3_kxi2w8;/r/anime/comments/kxi2w8/stop_complaining_about_the_thighs_in/gjaeb3p/;1610757293;-4;True;False;anime;t5_2qh22;;1;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Lol, holy shit your source is even worse than I thought - -Don't forget to post this on our episode discussion, just do a copy and paste";False;True;;comment score below threshold;;1610669029;;False;{};gjaeb5o;False;t3_kxi2w8;False;True;t1_gjadxa0;/r/anime/comments/kxi2w8/stop_complaining_about_the_thighs_in/gjaeb5o/;1610757294;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;fucuasshole2;;;[];;;;text;t2_1zc0i1qx;False;False;[];;"I don’t know if this counts as a spoiler. But... - - - - - - - - - - - -The budget for the series never improves, just got worse and worse as the series went. There’s gonna be Still shots. That’s why EoE was made. - -Moderators if this is a spoiler; delete the comment but don’t block please. I enjoy reading these everyday.";False;False;;;;1610669035;;False;{};gjaebkp;False;t3_kxfygp;False;False;t1_gja6i7j;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjaebkp/;1610757301;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Prize_Dentist5793;;;[];;;;text;t2_98ee1v7q;False;False;[];;Yeah but Itsuki didn't mean that;False;False;;;;1610669074;;False;{};gjaee64;False;t3_kxepsc;False;True;t1_gja3fdp;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaee64/;1610757347;3;True;False;anime;t5_2qh22;;0;[]; -[];;;nf_hades;;;[];;;;text;t2_hriq1b;False;False;[];;yeah, this too. but in Japan, the age of consent is 13 years. so their not underage for the Japanese, but it is underage for watchers in the US.;False;True;;comment score below threshold;;1610669102;;False;{};gjaeg5d;True;t3_kxi2w8;False;True;t1_gjaeb3p;/r/anime/comments/kxi2w8/stop_complaining_about_the_thighs_in/gjaeg5d/;1610757384;-15;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Thicc*, imagine preferring big oppai than thighs;False;False;;;;1610669105;;False;{};gjaegdn;False;t3_kxi2w8;False;True;t1_gjadcwh;/r/anime/comments/kxi2w8/stop_complaining_about_the_thighs_in/gjaegdn/;1610757388;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;WebWarrior420;;;[];;;;text;t2_xbhhx;False;False;[];;"Ah damn. That sucks - -Tbf I have heard about the series ending and the movie being a second ending of sorts. So I supposed it's not too unexpected. - -Anyone know what happened? And how they got enough money to make a movie?";False;False;;;;1610669172;;False;{};gjael29;False;t3_kxfygp;False;True;t1_gjaebkp;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjael29/;1610757471;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ishuzoku-Connoisseur;;;[];;;;text;t2_65qsew7y;False;False;[];;I don’t know who’s worse. The ones ranting about thighs or the one who’s taking those rants seriously.;False;False;;;;1610669194;;False;{};gjaemkt;False;t3_kxi2w8;False;False;t3_kxi2w8;/r/anime/comments/kxi2w8/stop_complaining_about_the_thighs_in/gjaemkt/;1610757499;16;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610669213;;False;{};gjaenva;False;t3_kxi2w8;False;True;t1_gjaeb3p;/r/anime/comments/kxi2w8/stop_complaining_about_the_thighs_in/gjaenva/;1610757521;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;False;[];;"> I am just glad someone else remembers Yukari-sensei. - -Azumanga Daioh was my childhood!";False;False;;;;1610669219;;False;{};gjaeobo;True;t3_kxfx0n;False;True;t1_gja0m31;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjaeobo/;1610757529;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeralyos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Zeralyos;light;text;t2_dphmj32;False;False;[];;Feel free to let me know whenever you find mistakes like this! I did a lot of copy pasting yesterday, and that means errors to fix.;False;False;;;;1610669251;;False;{};gjaeqh6;False;t3_kxh4fx;False;True;t1_gjadvy1;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjaeqh6/;1610757567;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ishuzoku-Connoisseur;;;[];;;;text;t2_65qsew7y;False;False;[];;God I wish this dumb age of consent misconception would just die. If you went to Japan and fucked a kid you would be locked up just like anywhere else in the world.;False;False;;;;1610669268;;False;{};gjaerpm;False;t3_kxi2w8;False;False;t1_gjaeg5d;/r/anime/comments/kxi2w8/stop_complaining_about_the_thighs_in/gjaerpm/;1610757589;18;True;False;anime;t5_2qh22;;0;[]; -[];;;loomnoo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/loomnoo;light;text;t2_5ev8pklg;False;False;[];;If you're only inputting favorites and not taking the entire list you're gonna recommend a bunch of stuff that the user has seen.;False;False;;;;1610669275;;False;{};gjaes65;False;t3_kxhm7b;False;True;t3_kxhm7b;/r/anime/comments/kxhm7b/would_this_anime_finding_tool_be_a_good_idea/gjaes65/;1610757597;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutMcD;;;[];;;;text;t2_19qzik0t;False;False;[];;Kinda sad they skipped Labor Thanksgiving Arc. It does have some good impact on the story (relationship development), especially near the end of the arc. And they cut short the conversation between Kyoto girl and Fuutarou. I really hope this skipping of chapters won't be happening again.;False;False;;;;1610669297;;False;{};gjaeto0;False;t3_kxepsc;False;False;t1_gj9r2tr;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaeto0/;1610757624;7;True;False;anime;t5_2qh22;;0;[]; -[];;;stitchwithaglitch;;MAL;[];;http://myanimelist.net/animelist/gamerguy50;dark;text;t2_9srtv;False;False;[];;"Damn I forgot how bitchy Nino acted during this part of the story. The inner Kirino is perfect. - -The Miku moments are what I live for... Keep'em comin";False;False;;;;1610669343;;False;{};gjaewx1;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaewx1/;1610757683;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;Age of consent yes, age of consent with adults no;False;False;;;;1610669346;;False;{};gjaex2y;False;t3_kxi2w8;False;False;t1_gjaeg5d;/r/anime/comments/kxi2w8/stop_complaining_about_the_thighs_in/gjaex2y/;1610757685;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;I saw it in my junior year of college. Sigh.;False;False;;;;1610669441;;False;{};gjaf3ng;False;t3_kxfx0n;False;True;t1_gjaeobo;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjaf3ng/;1610757808;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fucuasshole2;;;[];;;;text;t2_1zc0i1qx;False;False;[];;"If I recall right, - -Anno wasn’t given the budget required so he and his staff had to make use with what they got. - -Or - -Anno regularly kept going over budget and the company was mad so they stopped completely. - -However, I feel the tv series ended on a high note, EoE is satisfying too but I just prefer the show’s - -Once EoE’s viewing occurs I’ll elaborate more. Don’t want to spoil.";False;False;;;;1610669471;;False;{};gjaf5na;False;t3_kxfygp;False;False;t1_gjael29;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjaf5na/;1610757846;4;True;False;anime;t5_2qh22;;0;[]; -[];;;tapdancinmidget;;;[];;;;text;t2_pd4i6sk;False;False;[];;A difference in culture doesn't excuse pedophilia that's just my opinion though;False;False;;;;1610669471;;False;{};gjaf5nv;False;t3_kxi2w8;False;True;t1_gjaeg5d;/r/anime/comments/kxi2w8/stop_complaining_about_the_thighs_in/gjaf5nv/;1610757846;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SSJ5Gogetenks;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/SoundwaveAU;light;text;t2_5rycz;False;False;[];;"STUDY x STUDY, which should be like Top 16 minimum goes out in the first round! Yeah, very cool /r/anime! - -This quarter of the bracket is pretty fucking crazy though.";False;False;;;;1610669516;;False;{};gjaf8uv;False;t3_kxh4fx;False;False;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjaf8uv/;1610757903;27;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;False;[];;"Sometimes [cold,](https://i.imgur.com/pHgCNrL.jpg) sometimes [warm,](https://i.imgur.com/wAYBWIZ.jpg) always [adorable.](https://i.imgur.com/6y5UDqy.jpg) - -[](#tanakalove)";False;False;;;;1610669516;;False;{};gjaf8vo;False;t3_kxepsc;False;False;t1_gja18ol;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaf8vo/;1610757904;14;True;False;anime;t5_2qh22;;0;[]; -[];;;alohajon;;;[];;;;text;t2_c3mrq;False;False;[];;"Im convinced its flashbacks for the next episode - -edit: upon further inspection I assume its either cut to make room for the later arcs or itll be like a side story later on. Chronologically its fine I think";False;False;;;;1610669538;;False;{};gjafacl;False;t3_kxepsc;False;False;t1_gjae637;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjafacl/;1610757930;12;True;False;anime;t5_2qh22;;0;[]; -[];;;dadnaya;;MAL;[];;https://myanimelist.net/profile/dadnaya;dark;text;t2_cubnc;False;False;[];;"Yea, just checked the manga. She had these lines too: - -""I wish we had Kintarou-Kun as our home tutor instead of you, just where is he right now? Let me meet him"" - -Then Fuu: ""That... I cannot do"" - -Nino: ""Oh I see, then get out."" - -Fuu: ""Anything other than that! I'll do anything"" - -*Nino proceeds to call security*";False;False;;;;1610669609;;False;{};gjaff9f;False;t3_kxepsc;False;False;t1_gj9xzsn;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaff9f/;1610758019;9;True;False;anime;t5_2qh22;;0;[]; -[];;;alfaindomart;;;[];;;;text;t2_g9gs6;False;False;[];;"Probably mix of in-house and freelancers. - -The core team of Cloverworks itself seemed to form on A-1 when they worked on The Idolm@ster (2011) anime. - -[From there, the team often worked together for later Idolm@ster projects, Occultic Nine, Vividred Operation, and finally in Darling in the Franxx as Cloverworks](https://blog.sakugabooru.com/2017/09/22/keep-dreaming-why-the-million-live-anime-wont-happen-anytime-soon/)";False;False;;;;1610669653;;1610669844.0;{};gjafib1;False;t3_kxd55a;False;False;t1_gja3v8d;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjafib1/;1610758073;8;True;False;anime;t5_2qh22;;0;[]; -[];;;dadnaya;;MAL;[];;https://myanimelist.net/profile/dadnaya;dark;text;t2_cubnc;False;False;[];;"Don't think they'll rush it to the end. They'll probably get to the end of Scrambled Eggs then do a ""go read manga lul"" ending";False;False;;;;1610669658;;False;{};gjafion;False;t3_kxepsc;False;False;t1_gja2wry;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjafion/;1610758080;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610669719;;False;{};gjafmus;False;t3_kxepsc;False;True;t1_gja4npd;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjafmus/;1610758151;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610669746;moderator;False;{};gjafonh;False;t3_kxepsc;False;True;t1_gjadrzh;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjafonh/;1610758184;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Prize_Dentist5793;;;[];;;;text;t2_98ee1v7q;False;False;[];;I hope that;False;False;;;;1610669783;;False;{};gjafr5v;False;t3_kxepsc;False;False;t1_gjafacl;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjafr5v/;1610758226;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dopamine-high;;;[];;;;text;t2_3k3ttaax;False;False;[];;"1. It’s not really the same studio because while they are credited the bulk of the work was either by bridge or outsourced. Cloverworks and A1 pictures name in the credits is very misleading - -2. It’s a long running series, so it can’t be compared to a 13 episode seasonal anime.";False;False;;;;1610669826;;False;{};gjafu5u;False;t3_kxd55a;False;False;t1_gjad5tz;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjafu5u/;1610758280;42;True;False;anime;t5_2qh22;;0;[]; -[];;;fucuasshole2;;;[];;;;text;t2_1zc0i1qx;False;False;[];;"Here’s what wiki says: - -“Not only did the series suffer from scheduling issues, but according to Anno, despite Gainax being the lead studio for the series, the company itself had inadequate materials and staff for the full production of the series. Only three staff members from Gainax were working on the series at any given time, and the majority of the series' production was outsourced to Tatsunoko Production.[47]” - -“resulted from budget cuts,[56] but Toshio Okada stated that while it wasn't only a problem of schedule or budget, Anno ""couldn't decide the ending until the time came, that's his style"".[57] These two episodes sparked controversy and condemnation among fans and critics of the series.[58] In 1997, Hideaki Anno and Gainax released two animated feature films, providing an alternative ending for the show: Death & Rebirth and The End of Evangelion.[59]” - -Death and Rebirth is a recap of the series, with the Director’s cut of a few episodes that Netflix has you don’t need to watch it. - -So it seems Anno kept changing stuff throughout the production. Too close to the airings too.";False;False;;;;1610669829;;False;{};gjafudw;False;t3_kxfygp;False;False;t1_gjael29;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjafudw/;1610758285;6;True;False;anime;t5_2qh22;;0;[]; -[];;;pertyboynate;;;[];;;;text;t2_89fbjcnb;False;False;[];;golden time was pretty good;False;False;;;;1610669855;;False;{};gjafw3x;False;t3_kxgv7y;False;True;t3_kxgv7y;/r/anime/comments/kxgv7y/looking_for_recommendations_for_romance_anime/gjafw3x/;1610758314;1;True;False;anime;t5_2qh22;;0;[]; -[];;;b0bba_Fett;;;[];;;;text;t2_12yifh;False;False;[];;Heads up, the DarliFra ED 5 link is just a duplicate Just Awake.;False;False;;;;1610669945;;False;{};gjag2ev;False;t3_kxh4fx;False;True;t1_gja97f6;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjag2ev/;1610758428;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Prize_Dentist5793;;;[];;;;text;t2_98ee1v7q;False;False;[];;YEAH;False;False;;;;1610669960;;False;{};gjag3gm;False;t3_kxepsc;False;False;t1_gjab1my;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjag3gm/;1610758445;5;True;False;anime;t5_2qh22;;0;[]; -[];;;dadnaya;;MAL;[];;https://myanimelist.net/profile/dadnaya;dark;text;t2_cubnc;False;False;[];;A small detail I've really really liked is seeing [Nino's small smile](https://i.imgur.com/K1vxOFj.png) when he kept coming to get her.;False;False;;;;1610669969;;False;{};gjag43i;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjag43i/;1610758456;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Dopamine-high;;;[];;;;text;t2_3k3ttaax;False;False;[];;They’re still owned by aniplex but they are counted as a separate studio from A1. Also I don’t really see them having a specific art style, when both studios hire so many different character designers for so many different adaptations (which also have different art styles);False;False;;;;1610669991;;False;{};gjag5kz;False;t3_kxd55a;False;False;t1_gj9uqwq;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjag5kz/;1610758483;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeralyos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Zeralyos;light;text;t2_dphmj32;False;False;[];;I actually caught that one on my own already, but thanks for the report. Should be fixed on a refresh.;False;False;;;;1610669999;;False;{};gjag67b;False;t3_kxh4fx;False;False;t1_gjag2ev;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjag67b/;1610758494;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610670021;;False;{};gjag7pd;False;t3_kxepsc;False;True;t1_gja3rkk;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjag7pd/;1610758521;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IceAnt573;;;[];;;;text;t2_i16j2;False;False;[];;"For Today's Question: Memento. This managed to be the first Re: Zero ED I'm super huge on. - -Also want to shoutout First Drop from Rent a Girlfriend (Ruka's ED) and all 3 of Yesterday wo Uttate's EDs are great but my favorite is the last one.";False;False;;;;1610670132;;False;{};gjagffm;False;t3_kxh4fx;False;True;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjagffm/;1610758656;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dopamine-high;;;[];;;;text;t2_3k3ttaax;False;False;[];;The main animator (and another animator on the first ep) was a regular on yesterday wo uttate up until the final eps (although that finished production a long time ago) so I’d guess the schedule is probably decent but not as increasingly good as a few other shows.;False;False;;;;1610670226;;False;{};gjaglye;False;t3_kxd55a;False;True;t1_gjaa2ma;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjaglye/;1610758773;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HereticalAegis;;;[];;;;text;t2_6xeubalv;False;False;[];;">What is your favorite ending from 2020? - -This is a difficult choice. I think *Niguredo* from Magia Record takes this one for me. - -Honorable mentions to all the following which I really loved: *Kamisama no Syndrome* from Higurashi, *Edel Lilie* from Assault Lily, *nameless story* and *Aoarashi no Ato de* from Railgun T, *Yozora* from Koisuru Asteroid, and *Alicia* from Magia Record";False;False;;;;1610670263;;False;{};gjagoi0;False;t3_kxh4fx;False;False;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjagoi0/;1610758821;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Fluffy9345;;;[];;;;text;t2_2od0d93r;False;False;[];;On episode 2 of orange now lol;False;False;;;;1610670284;;False;{};gjagq28;True;t3_kxgv7y;False;True;t1_gjac69c;/r/anime/comments/kxgv7y/looking_for_recommendations_for_romance_anime/gjagq28/;1610758847;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;"Crunchyroll Random button has to be the most under-utilized anime finding option out there. Sure, you can't input your favorite shows and hope to get similar ones, but there's a good chance you'll find something you would have never considered watching. - -For finding shows that are similar to shows you like, one thing you can definitely do is type down ""anime like ______"" in a search engine search bar. Websites like RecommendMeAnime, HoneysAnime, Ranker, CBR often pop up. - -Also, MAL has a ""recommendations"" tab for every show, where people suggest similar shows they recommend.";False;False;;;;1610670325;;False;{};gjagszp;False;t3_kxhm7b;False;False;t3_kxhm7b;/r/anime/comments/kxhm7b/would_this_anime_finding_tool_be_a_good_idea/gjagszp/;1610758900;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PacoTaco321;;;[];;;;text;t2_8yxkb;False;False;[];;Yep, her and Miku are best girls;False;False;;;;1610670341;;False;{};gjagu1e;False;t3_kxepsc;False;False;t1_gj9wx54;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjagu1e/;1610758918;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;"Well, kinda hard to understand ngl, cuz that’s probably the most beautiful (with the colours) fight I’ve seen in anime. - -Other anime with (visually) interesting artstyle I can think of are : - -1. Toilet Bound Hanako-kun -2. Somali and the Forest Spirit -3. Journey of Elaina -4. ID:Invaded -5. Yesterday Wo Utatte - -Depends on who you ask : - -1. Eizouken -2. Kakushigoto";False;False;;;;1610670371;;False;{};gjagw7o;False;t3_kxd55a;False;False;t1_gjadz72;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjagw7o/;1610758958;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Swanki24;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Defunctional/animelist;light;text;t2_c1nzj;False;False;[];;"Step Up Love actually lost lmao - -One of my favourites from 2020 would be Houkago Teibou Nisshi's ED or Mahouka's ED.";False;False;;;;1610670400;;1610702718.0;{};gjagy9r;False;t3_kxh4fx;False;True;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjagy9r/;1610758995;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;HEY HEY SAMURAI HOT;False;False;;;;1610670429;;False;{};gjah0br;False;t3_kxh4fx;False;False;t1_gjadrt6;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjah0br/;1610759032;6;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;False;[];;"> the chase ends with Uchida yelling ""Why that brainless little bitch!"" and I am curious if that isn't harsher than what it was in Japanese? - -You're right, it's definitely harsher. It's basically ""crazy woman"", not ""brainless little bitch"" lmao.";False;False;;;;1610670442;;False;{};gjah16j;True;t3_kxfx0n;False;False;t1_gj9zzkq;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjah16j/;1610759047;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;"Actually, Horimiya is a Shounen manga. Though, it’s not like these demographics make all that of a difference. - -The difference between mangas like Ao Haru Ride and Horimiya, is that the latter is way more grounded and drama is realistic, instead of stretched out with angst and frustrations. - -Here’s hoping you like it !";False;False;;;;1610670470;;False;{};gjah35p;False;t3_kxd55a;False;False;t1_gj9s5fu;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjah35p/;1610759080;12;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;Yozora is my pick for Best ED of 2020 too;False;False;;;;1610670507;;False;{};gjah5sp;False;t3_kxh4fx;False;False;t1_gjagoi0;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjah5sp/;1610759126;6;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;False;[];;"> How is Atori alive? - -How dare you doubt Atori!!!!!! He will never die!!!!!!!!!!!!! MWAHAHAHAHHAHAHAHAHAH";False;False;;;;1610670551;;False;{};gjah8ru;True;t3_kxfx0n;False;False;t1_gja0039;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjah8ru/;1610759182;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;Yeah, that was pretty jarring to read at the time and didn't really feel appropriate for the series. And since Yukie did indeed do something crazy that's more fitting.;False;False;;;;1610670557;;False;{};gjah98p;False;t3_kxfx0n;False;False;t1_gjah16j;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjah98p/;1610759191;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NintendoMasterNo1;;MAL;[];;http://myanimelist.net/animelist/NintendoMaster1;dark;text;t2_eg21m;False;False;[];;"Vote for all of the Hunter x Hunter EDs please. Especially Reason. - -Also did both Road and Bokura ni Tsuite seriously lose..";False;False;;;;1610670561;;False;{};gjah9g7;False;t3_kxh4fx;False;False;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjah9g7/;1610759195;8;True;False;anime;t5_2qh22;;0;[]; -[];;;monsieurvampy;;;[];;;;text;t2_453ax;False;False;[];;"**First Timer, subbed** - - -No cats in this episode. We got cows though!";False;False;;;;1610670636;;False;{};gjahen2;False;t3_kxfx0n;False;False;t3_kxfx0n;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjahen2/;1610759291;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610670741;;False;{};gjahlvj;False;t3_kxd55a;False;False;t1_gjah35p;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjahlvj/;1610759429;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cynderaquil;;;[];;;;text;t2_3hyccqum;False;False;[];;"It’s very popular in Japan though. It’s just not as popular in America, similar to One Piece being extremely popular in Japan and less so in America. - -I do feel like Detective Conan is a little milked for what it’s worth because of the popularity it has in Japan. I think the story sounds simple enough to be finished within 600 episodes rather than 900+ episodes and still continued. - -I do enjoy the manga though";False;False;;;;1610670855;;False;{};gjahtqa;False;t3_kxhv53;False;True;t3_kxhv53;/r/anime/comments/kxhv53/why_is_detective_conan_so_underrated/gjahtqa/;1610759582;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TheUltimateTeigu;;;[];;;;text;t2_jjzxh;False;False;[];;I am pleasantly surprised to see so many people in the comments upset Study x Study didn't make it further. Even if my faith declined when it was removed, I'm happy to see a vocal group also sad to see it go.;False;False;;;;1610670934;;False;{};gjahz5j;False;t3_kxh4fx;False;False;t1_gja857n;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjahz5j/;1610759681;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KendotsX;;;[];;;;text;t2_j6nbtko;False;False;[];;"How long have you been watching it weekly? If you've caught up soon or haven't caught up yet, then big things are going to change. - -As someone who's been watching since forever, I love its suspense and main plot line sure, it's absolutely brilliant, but that's definitely not what keeps me watching every week. I actually love it for my weekly dose of light hearted random case solving, including the whole ton of filler. - -Now then, let me explain some of the reasons why this is not popular in the west, for starters it has nearly a 1000 episodes (episode 1000 will be in March 6th btw so look forward to that). Then, if you somehow break through that wall, and try to actually watch it, well the main plot line pops up once or twice every 100 episodes, with the rest being random cases. If someone's only watching it for the main plot line, that will be hell. - -When Conan ends, some decade from now, it'd be actually easier to just combine the relevant BO cases into some 100 something episode series and binge that. Some people already did that, but what do you do when you're caught up and waiting? - -On a side note, Conan is one of the most popular franchises in Japan (obviously), but also in other countries. For example, the Conan movies are usually dubbed and released in Arabic around a close time to their Japanese release, and I think it's a mainstay of children's TV, or well it was last decade at least...";False;False;;;;1610670934;;False;{};gjahz69;False;t3_kxhv53;False;False;t3_kxhv53;/r/anime/comments/kxhv53/why_is_detective_conan_so_underrated/gjahz69/;1610759681;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;"I’m not sure if you understand what they are. Shoujo and Shounen aren’t a matter of subjectivity. They are demographics depending on which magazine they are printed/sold in. - -Horimiya is sold in a Shounen magazine, as a Shounen manga. That’s it. **Its a fact**, not something I’m calling on my own.";False;False;;;;1610670945;;False;{};gjahzx5;False;t3_kxd55a;False;False;t1_gjahlvj;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjahzx5/;1610759695;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Pythoner6;;;[];;;;text;t2_n4og0;False;False;[];;My favorite ending from 2020... hmm, I honestly don't remember that many. Weathering with You didn't come out until 2020 in the US, so if that counts then definitely Daijoubu. Otherwise I'd probably go with Shout Baby from the second half of MHA S4.;False;False;;;;1610671002;;False;{};gjai3wm;False;t3_kxh4fx;False;True;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjai3wm/;1610759764;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jo_Z13;;;[];;;;text;t2_8ec6h;False;False;[];;The detail is SO Kyoani....as are the feels and only after one episode!;False;False;;;;1610671015;;False;{};gjai4rz;False;t3_kxd55a;False;False;t1_gja9e77;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjai4rz/;1610759781;10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;You are right but I view it as a shoujo manga personally. I don't really like the idea of where it's initially published determining what is or isn't shoujo but I'm not an authority on it so whatever. I'd type my thoughts out more but I just don't care enough (not saying to be edgy I am simply too lazy to type on my phone LOL) thanks tho, I wouldn't have known it's considered shounen otherwise.;False;False;;;;1610671119;;False;{};gjaibwj;False;t3_kxd55a;False;True;t1_gjah35p;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjaibwj/;1610759904;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;ej_stephens;;;[];;;;text;t2_3d6h2d18;False;False;[];;Nigredo is so good! Honestly it might have been the high point of the whole show;False;False;;;;1610671234;;False;{};gjaik0i;False;t3_kxh4fx;False;False;t1_gja97f6;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjaik0i/;1610760045;6;True;False;anime;t5_2qh22;;0;[]; -[];;;TheUltimateTeigu;;;[];;;;text;t2_jjzxh;False;False;[];;You're not gonna find a single place in Japan where an adult can fuck a 13 year old legally.;False;False;;;;1610671262;;False;{};gjaim0d;False;t3_kxi2w8;False;False;t1_gjaeg5d;/r/anime/comments/kxi2w8/stop_complaining_about_the_thighs_in/gjaim0d/;1610760079;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Akai-AC;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Akai-AC;light;text;t2_3af1hwm4;False;False;[];;"I don't think it's underrated but it's definitely not as popular as many other anime. The huge amount of fillers and the 990+ episodes often discourage people from starting it. They also didn't promote the series well - other than in few Asian countries and the dub ""case closed"" had to be cancelled. - -But it's VERY popular in Japan and I personally like the anime a lot.";False;False;;;;1610671269;;False;{};gjaimh4;False;t3_kxhv53;False;True;t3_kxhv53;/r/anime/comments/kxhv53/why_is_detective_conan_so_underrated/gjaimh4/;1610760087;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;It's ridiculously long, the plot never progresses, and the main way people watch the series is through Netflix which starts hundreds of episodes in.;False;False;;;;1610671306;;False;{};gjaip2p;False;t3_kxhv53;False;True;t3_kxhv53;/r/anime/comments/kxhv53/why_is_detective_conan_so_underrated/gjaip2p/;1610760132;0;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;"> it's not Gendo's fault that an end game Angel showed up and wrecked everyone - -They're talking about how he managed to get an Eva to ""awaken"" mostly";False;False;;;;1610671317;;False;{};gjaipv2;False;t3_kxfygp;False;True;t1_gja8o7m;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjaipv2/;1610760146;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ej_stephens;;;[];;;;text;t2_3d6h2d18;False;False;[];;Favorite from 2020 is definitely Ready from Akudama Drive. It got overshadowed by lost in Paradise, but just as a song is so good;False;False;;;;1610671353;;False;{};gjaisea;False;t3_kxh4fx;False;True;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjaisea/;1610760190;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Pythoner6;;;[];;;;text;t2_n4og0;False;False;[];;Yeah, the HxH are all really good (well, I'm not really that big a fan of the first one, Just Awake, but its still pretty good and the rest are *really* good);False;False;;;;1610671377;;False;{};gjaiu0l;False;t3_kxh4fx;False;False;t1_gjah9g7;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjaiu0l/;1610760219;6;True;False;anime;t5_2qh22;;0;[]; -[];;;JewishHippyJesus;;;[];;;;text;t2_7qle5;False;False;[];;"Please be wary if you comment on discussion threads! There's a few people going around and DMing spoilers. - -[Fuck you](https://i.imgur.com/kZkKXie.jpg) u/proto22m";False;False;;;;1610671396;;False;{};gjaivbu;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaivbu/;1610760243;20;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;"I see you responded to my deleted comment. Yeah i was about to go full ""akshually"" mode but googling it shrugs. I simply don't see how Horimiya is targeted toward a young male audience. But look, I do see it as a matter of subjectivity. Because looking into it it seems up in the air whether it's where it's published vs target audience. In the end it IS a genre and yes, genres can be SUBJECTIVE. Many people don't see certain movies as a horror and will bitch to no end about how it's actually just a drama, or a thriller, or a suspenseful romance. It is literally the same. Shoujo and shounen are genres and they are up for interpretation. The core? Who they are targeted at. But what about who they should be targeted at? I am talking about them as GENRES, not demos. - -And I didn't really like your attitude comparing the two as if the Ao Haru anime suffered only because of the source material when it was literally a bad adaptation shoved into a 12 episode hell hole. For example Kimi ni Todoke has tons of angst, frustration, and typical shoujo tropes while remaining a very well done anime,";False;False;;;;1610671413;;1610671638.0;{};gjaiwjn;False;t3_kxd55a;False;True;t1_gjahzx5;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjaiwjn/;1610760264;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gr8Deb8ter;;;[];;;;text;t2_6cvsfy7x;False;False;[];;The BO plot is the only reason I even keep up with the series. The standalone cases are entertaining at first, but after hundreds of episodes they just get formulaic and boring. And some of the methods that killers use to murder their victims are just downright ridiculous.;False;False;;;;1610671428;;False;{};gjaixlq;False;t3_kxhv53;False;True;t3_kxhv53;/r/anime/comments/kxhv53/why_is_detective_conan_so_underrated/gjaixlq/;1610760284;3;True;False;anime;t5_2qh22;;0;[]; -[];;;monke_with_beans;;;[];;;;text;t2_7psipa72;False;False;[];;why do people like nino? she's not even a tsundere. she's just a selfish asshole, ngl;False;False;;;;1610671437;;False;{};gjaiy67;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaiy67/;1610760294;9;True;False;anime;t5_2qh22;;0;[]; -[];;;HereticalAegis;;;[];;;;text;t2_6xeubalv;False;False;[];;It's a really heckin good song!;False;False;;;;1610671457;;False;{};gjaizo5;False;t3_kxh4fx;False;True;t1_gjah5sp;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjaizo5/;1610760322;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DireSickFish;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/DireSickFish;light;text;t2_mfrxc;False;False;[];;I got sick of police procedurals at, like, 12.;False;False;;;;1610671517;;False;{};gjaj41x;False;t3_kxhv53;False;True;t3_kxhv53;/r/anime/comments/kxhv53/why_is_detective_conan_so_underrated/gjaj41x/;1610760398;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimusFoster748;;;[];;;;text;t2_5abf6xo9;False;False;[];;I'd say it depends on the person, cause even as a manga reader, I still never liked Nino.;False;False;;;;1610671528;;False;{};gjaj4t2;False;t3_kxepsc;False;False;t1_gj9yw13;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaj4t2/;1610760411;5;True;False;anime;t5_2qh22;;0;[]; -[];;;EphesosX;;null a-amq;[];;;dark;text;t2_x7jmq;False;False;[];;DAYS of DASH too... I thought it was a more popular song, even around /r/anime.;False;False;;;;1610671611;;False;{};gjajard;False;t3_kxh4fx;False;False;t1_gjaf8uv;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjajard/;1610760514;8;True;False;anime;t5_2qh22;;0;[]; -[];;;monke_with_beans;;;[];;;;text;t2_7psipa72;False;False;[];;yeah im anime only and im scratching my head as to why ppl like her as much as miku. she better get some good development, bc honestly she isn't even a tsundere, she's just a dick atm;False;False;;;;1610671625;;False;{};gjajbpv;False;t3_kxepsc;False;False;t1_gj9wda0;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjajbpv/;1610760530;28;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;"> the council - -Yeah, what's up with them, anyway? The entire Lacryma part is just really weak.";False;False;;;;1610671627;;False;{};gjajbww;False;t3_kxfx0n;False;True;t1_gj9zzou;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjajbww/;1610760534;3;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">doesn’t this rather invalidate the “we will eventually disappear” if they can pop over and get a top up? - -Being able to heal injuries doesn't have to mean they can stop themselves from disappearing, I guess.";False;False;;;;1610671718;;False;{};gjajicc;False;t3_kxfx0n;False;False;t1_gja0039;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjajicc/;1610760651;4;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;Probably the weakest episode we've had for a while. It's cute so I'll forgive it.;False;False;;;;1610671730;;False;{};gjajj5x;False;t3_kxgtxn;False;True;t3_kxgtxn;/r/anime/comments/kxgtxn/mewkledreamy_episode_36_discussion/gjajj5x/;1610760666;3;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">I thought you were some kind of government agent - -She's just a scientist, he's supposedly a policeman but that doesn't have to mean he's good at covert stuff.";False;False;;;;1610671873;;False;{};gjajt4k;False;t3_kxfx0n;False;False;t1_gja12jy;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjajt4k/;1610760841;5;True;False;anime;t5_2qh22;;0;[]; -[];;;OuchYouPokedMyHeart;;;[];;;;text;t2_vcemo;False;False;[];;I guess they each have a *five*head, one for each quint;False;False;;;;1610671913;;False;{};gjajvzb;False;t3_kxepsc;False;False;t1_gj9zsdt;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjajvzb/;1610760890;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Igoory;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/pissolati;light;text;t2_40n0ldkg;False;False;[];;I love detective conan (even though I am stopped in episode 240 or so) but it's slow... Really slow... I don't think it's in the taste of much people, I only watched this much because of the insistence of a friend;False;False;;;;1610671972;;1610672216.0;{};gjak02t;False;t3_kxhv53;False;True;t3_kxhv53;/r/anime/comments/kxhv53/why_is_detective_conan_so_underrated/gjak02t/;1610760959;0;True;False;anime;t5_2qh22;;0;[]; -[];;;KissMyConverse07;;;[];;;;text;t2_f6jcafv;False;False;[];;"I understand why Nino grows on people but still didn’t replace Miku and Ichika for me. -I will say there is an extra dimension watching the show knowing how it all plays out that wasn’t there in season one.";False;False;;;;1610672003;;False;{};gjak2ar;False;t3_kxepsc;False;False;t1_gj9wda0;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjak2ar/;1610760998;24;True;False;anime;t5_2qh22;;0;[]; -[];;;JuicyJay18;;;[];;;;text;t2_ym5ks;False;False;[];;Thank you, I knew that I had seen this somewhere recently (I just played persona 4 for the first time a month or so ago) but couldn’t put my finger on where lol;False;False;;;;1610672047;;False;{};gjak5c9;False;t3_kxepsc;False;False;t1_gja5ilk;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjak5c9/;1610761052;8;True;False;anime;t5_2qh22;;0;[]; -[];;;chris10023;;;[];;;;text;t2_6mgro;False;False;[];;Oh, I took them complaining about how much they invested as the damage that Zeruel did to the HQ and Tokyo 03.;False;False;;;;1610672110;;False;{};gjak9vb;False;t3_kxfygp;False;True;t1_gjaipv2;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjak9vb/;1610761136;3;True;False;anime;t5_2qh22;;0;[]; -[];;;illuminartee;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_1nkp4u46;False;False;[];;wait is no one else confused on why Uesugi fell in the water after seeing an (imaginary?) future version of that girl?;False;False;;;;1610672118;;False;{};gjakadu;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjakadu/;1610761146;16;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;"&#x200B; - ->a comedic chase scene is not what this episode needed - -It's still the best part of it, though. - ->If they can do this then why is Chef’s Hat just running around with prosthetics? - -It looks cooler that way. Also I love how no one actually remembers his name lol - ->it’s essentially a convenient way of having him do what he does in the episode. - -Same, I'd have preferred he died.";False;False;;;;1610672250;;False;{};gjakjog;False;t3_kxfx0n;False;False;t1_gja1gaa;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjakjog/;1610761309;4;True;False;anime;t5_2qh22;;0;[]; -[];;;OuchYouPokedMyHeart;;;[];;;;text;t2_vcemo;False;False;[];;OH SHIT I that’s why Tsuki ga Kirei is named as such. Not to mention the show makes references to literary works (e.g. using book titles as episode names).;False;False;;;;1610672301;;False;{};gjakn60;False;t3_kxepsc;False;False;t1_gj9zpd4;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjakn60/;1610761369;23;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;I feel like I've been repeating this to(o much, but anyway Tobi is female (edit: only in the English dub?!);False;False;;;;1610672326;;1610676866.0;{};gjakozi;False;t3_kxfx0n;False;False;t1_gjabys7;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjakozi/;1610761402;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Ewok;;;[];;;;text;t2_pmjct;False;False;[];;Itsuki showing why she is one of my top 2 quints with that badass slap putting nino in her place (which she deserved);False;False;;;;1610672392;;False;{};gjaktkw;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaktkw/;1610761491;4;True;False;anime;t5_2qh22;;0;[]; -[];;;GonTheDinosaur;;MAL;[];;http://myanimelist.net/animelist/gon7T;dark;text;t2_dzokm;False;False;[];;Any prediction on what chapters they adapt for what episode?;False;False;;;;1610672423;;False;{};gjakvtv;False;t3_kxepsc;False;True;t1_gja71r0;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjakvtv/;1610761530;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Ewok;;;[];;;;text;t2_pmjct;False;False;[];;"She is wicked popular among anime onlies which i dont understand as she has been a asshole so far. I mean she did lie to save him from their father but that is it - -Compared to the other quints which are wicked damn likeable - -So im eager to see how she changes over the course of the season";False;False;;;;1610672593;;False;{};gjal7jo;False;t3_kxepsc;False;True;t1_gj9wda0;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjal7jo/;1610761739;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"[Killing the MC](https://imgur.com/FcRuPYS) 2 episodes into season 2? Bold move! It was expected, [with so many death flags!](https://imgur.com/O0IBGGP) RIP Fuutarou. - -[Scheming Ichika](https://imgur.com/plVgxCN), smart girl! And even though it didn't work (nothing worked) it was still a decent idea; Fuutarou turning off the television kinda [brought them together against him](https://imgur.com/WgCzK8a), he just needed to find the right way to do it! - -[Yotsuba get a few points for effort;](https://imgur.com/2tMIva3) If they were kindergartners it may have worked! - -[The slap heard around the world!](https://imgur.com/vGXDNUT) So many things happened due to that slap. Well, they were bound to happen at some point I suppose. - -Also, is it me, or Nino was especially beautiful in this episode? She has quite a few [funny faces](https://imgur.com/NsPXhwh) as well! - -[That smile, and a little blush?](https://imgur.com/16VxGeQ) Achievement unlocked, Nino joins the harem! - -[Well, he got one (maybe) in the end!](https://imgur.com/6eq7KnH) Considering it's Nino, might not be safe to go in her room without anyone else, but Fuutarou needs to act a little bold if he wants to get things done, with just 4 days left!";False;False;;;;1610672643;;False;{};gjalaxb;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjalaxb/;1610761799;10;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarletSyntax;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Starlit/;light;text;t2_xb0tm;False;False;[];;"Oof, hectopascal out in round 1 and platinum jet is against cowboy bebop. - -Favourite ending of 2020: static from goblin slayer movie. As much as I disliked the movie, static was one of, if not my outright favourite song from 2020, nevermind just EDs.";False;False;;;;1610672725;;False;{};gjalgl0;False;t3_kxh4fx;False;False;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjalgl0/;1610761914;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;All I can say without spoiling is: Most of her fans are manga readers.;False;False;;;;1610672732;;False;{};gjalh29;False;t3_kxepsc;False;False;t1_gjaiy67;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjalh29/;1610761923;14;True;False;anime;t5_2qh22;;0;[]; -[];;;CptMavo;;;[];;;;text;t2_fmdcr;False;False;[];;Fully understandable lmao. Even as a manga reader who eventually flipped opinions, watching this get animated made me remember how much I hated her at this point of the story;False;False;;;;1610672741;;False;{};gjalhns;False;t3_kxepsc;False;False;t1_gj9yw13;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjalhns/;1610761933;11;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;False;[];;"> I feel like I've been repeating this too much, but anyway Tobi is female - -Tobi is actually male. Unless you're watching the dub which switches him to female for some unknown reason.";False;False;;;;1610672885;;False;{};gjalrks;True;t3_kxfx0n;False;False;t1_gjakozi;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjalrks/;1610762131;5;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;Huh what? Tobi looks very female to me also.;False;False;;;;1610673004;;False;{};gjalzq7;False;t3_kxfx0n;False;True;t1_gjalrks;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjalzq7/;1610762277;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cbizzle14;;;[];;;;text;t2_ew2y7;False;False;[];;People love tsunderes;False;False;;;;1610673054;;False;{};gjam30z;False;t3_kxepsc;False;True;t1_gjal7jo;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjam30z/;1610762331;3;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;Lol I actually could not stand Saekano. I only watched season 1 though so I wont hold it against CloverWorks;False;False;;;;1610673062;;False;{};gjam3ih;False;t3_kxd55a;False;True;t1_gjaaub6;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjam3ih/;1610762340;3;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;False;[];;Yup, Tobi is a dude!;False;False;;;;1610673064;;False;{};gjam3oi;True;t3_kxfx0n;False;False;t1_gjalzq7;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjam3oi/;1610762344;4;True;False;anime;t5_2qh22;;0;[]; -[];;;EverythingsRed2;;;[];;;;text;t2_75royj7g;False;False;[];;That's the second character I've misgendered now. I must be blind or something.;False;False;;;;1610673234;;False;{};gjamfa4;False;t3_kxfx0n;False;True;t1_gjakozi;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjamfa4/;1610762566;3;True;False;anime;t5_2qh22;;0;[]; -[];;;erryky;;MAL;[];;https://myanimelist.net/profile/;dark;text;t2_rviqf;False;False;[];;Losing thicc for wallpaper-worthy album? YES PLEASE;False;False;;;;1610673306;;False;{};gjamk6z;False;t3_kxepsc;False;False;t1_gj9wy91;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjamk6z/;1610762652;9;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;False;[];;Nope, you're not blind. Tobi is a dude.;False;False;;;;1610673544;;False;{};gjan0hl;True;t3_kxfx0n;False;False;t1_gjamfa4;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjan0hl/;1610762950;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Bransir;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Shrubbery;light;text;t2_kx3sw;False;False;[];;"> Eliminated: - -> StudyxStudy - -> Nounai - -> Inkya Impulse - -> Hibana - -> Silent Solitude - -Oof, those were some of my top picks being eliminated in round 1. Also Step up LOVE, but I had a hard time to pick it against Orange, so that loss is forgiven. - -Today's shoutouts: - -[X Jigen e Youkoso](https://animethemes.moe/video/SpaceDandy-ED1.webm) (even if it's up against Dango Daikazoku) - -[Hunting for your dream](https://www.youtube.com/watch?v=h-dFT1oe_Mg) (with intro) - -[Vivace!](https://animethemes.moe/video/HibikeEuphoniumS2-ED1.webm) - -[Sugar Song to Bitter Step](https://animethemes.moe/video/KekkaiSensen-ED1.webm) - -[Unlasting](https://animethemes.moe/video/SwordArtOnlineAlicizationS2-ED1.webm)";False;False;;;;1610673792;;False;{};gjanh84;False;t3_kxh4fx;False;False;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjanh84/;1610763250;20;True;False;anime;t5_2qh22;;0;[]; -[];;;KuroShiroTaka;;;[];;;;text;t2_qs5po;False;False;[];;200 for that hour?;False;False;;;;1610673869;;False;{};gjanmga;False;t3_kxepsc;False;True;t1_gja2mj6;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjanmga/;1610763343;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ENKlDU;;;[];;;;text;t2_4scvchzo;False;False;[];;"Stay tuned! - -One of the most popular quints for a reason 💯🤝";False;False;;;;1610673920;;False;{};gjanpyf;False;t3_kxepsc;False;False;t1_gjaiy67;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjanpyf/;1610763404;7;True;False;anime;t5_2qh22;;0;[]; -[];;;affnn;;;[];;;;text;t2_2pk33t;False;False;[];;">Gonna be honest. All the still shots to save on budget were pretty obvious. Hopefully it means they saved up money for the last few episodes. - -The next several episodes have director's cuts, and you should watch those if you have access (Netflix is all director's cuts, if that's what you're using you should be good - otherwise just check length, if they're longer than usual they're DC). So they have more animation and more runtime because of that, but the original work had some re-used/still shots including some very famous ones that are still present in the director's cut. - -I dunno, I think they work pretty well at capturing a kind of trippy, psychological energy. Especially since this episode had a lot of Shinji re-living memories, re-using older footage seems appropriate.";False;False;;;;1610673967;;1610674261.0;{};gjant6q;False;t3_kxfygp;False;False;t1_gja6i7j;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjant6q/;1610763464;7;True;False;anime;t5_2qh22;;0;[]; -[];;;yung_clor0x;;;[];;;;text;t2_v38asj;False;False;[];;"I'll have all you Itsuki-doubters know, Season 1 didn't do her much justice, but our faith was strong and we pushed through. - -Now that Season 2 is here, Itsuki is finally getting the come up she well deserves - -# ITSUKI IS BEST GIRL";False;False;;;;1610674025;;False;{};gjanx3i;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjanx3i/;1610763533;8;True;False;anime;t5_2qh22;;0;[]; -[];;;monke_with_beans;;;[];;;;text;t2_7psipa72;False;False;[];;yeah, looks like she gets lots of development. also do u know if this season has enough episodes to adapt the manga?;False;False;;;;1610674029;;False;{};gjanxfw;False;t3_kxepsc;False;True;t1_gjanpyf;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjanxfw/;1610763540;1;True;False;anime;t5_2qh22;;0;[]; -[];;;monke_with_beans;;;[];;;;text;t2_7psipa72;False;False;[];;yeah. looks like there will be some interactions b/w the two next week;False;False;;;;1610674049;;False;{};gjanyt0;False;t3_kxepsc;False;True;t1_gjalh29;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjanyt0/;1610763570;3;True;False;anime;t5_2qh22;;0;[]; -[];;;yung_clor0x;;;[];;;;text;t2_v38asj;False;False;[];;"us members of Itsuki Gang have been oppressed since Season 1, but she's finally getting her chance to shine. I knew she was best girl from the start, though tempting, we did not lose faith. - -Itsuki is Best Girl";False;False;;;;1610674220;;False;{};gjaoarv;False;t3_kxepsc;False;False;t1_gj9wda0;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaoarv/;1610763798;38;True;False;anime;t5_2qh22;;0;[]; -[];;;Aschentei;;;[];;;;text;t2_z1t0l;False;False;[];;dam right she shinin this episode. We got a couple of her mini-pouts too;False;False;;;;1610674239;;False;{};gjaoc20;False;t3_kxepsc;False;False;t1_gj9xr38;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaoc20/;1610763825;7;True;False;anime;t5_2qh22;;0;[]; -[];;;SmilyT1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/SmilyT1/;light;text;t2_m8yx4;False;False;[];;Funky artstyle! I love it;False;False;;;;1610674248;;False;{};gjaocmg;False;t3_kxhwh0;False;False;t3_kxhwh0;/r/anime/comments/kxhwh0/jujutsu_kaisen_fanart_by_me_took_about_3_days/gjaocmg/;1610763834;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Aschentei;;;[];;;;text;t2_z1t0l;False;False;[];;imagine getting bitch slapped by Domestic Meat;False;False;;;;1610674313;;False;{};gjaoh3r;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaoh3r/;1610763919;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mataraiki;;;[];;;;text;t2_8qute;False;False;[];;Since joining the church last week I've finished season 1 and am now halfway through the manga. My fealty hasn't wavered.;False;False;;;;1610674323;;False;{};gjaohs1;False;t3_kxepsc;False;False;t1_gj9xr38;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaohs1/;1610763934;6;False;False;anime;t5_2qh22;;0;[]; -[];;;AZLarlar;;;[];;;;text;t2_6d6peonh;False;False;[];;here’s top hoping nino comes around next week;False;False;;;;1610674454;;False;{};gjaoqxe;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaoqxe/;1610764101;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Ewok;;;[];;;;text;t2_pmjct;False;False;[];;"She isnt a tsundere though she is far beyond stubborn tsunderes act out such as Misaka or Rin because they dont want to express their true feelings. Nino has been a selfish asshole from the very begining and wants to fuck shit it solely to fuck shit up. - -Being stubborn is one thing but she is a whole other level";False;False;;;;1610674638;;False;{};gjap3s2;False;t3_kxepsc;False;True;t1_gjam30z;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjap3s2/;1610764338;3;True;False;anime;t5_2qh22;;0;[]; -[];;;yung_clor0x;;;[];;;;text;t2_v38asj;False;False;[];;if ppl said why it would get removed for spoilers lmao;False;False;;;;1610674647;;False;{};gjap4ft;False;t3_kxepsc;False;True;t1_gjaiy67;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjap4ft/;1610764351;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cbizzle14;;;[];;;;text;t2_ew2y7;False;False;[];;I'm a part of the Church of Miku but I enjoyed Itsuki very much this episode;False;False;;;;1610674701;;False;{};gjap82y;False;t3_kxepsc;False;False;t1_gjaoarv;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjap82y/;1610764422;21;True;False;anime;t5_2qh22;;0;[]; -[];;;affnn;;;[];;;;text;t2_2pk33t;False;False;[];;">who is the bell that the committee refers to? im guessing kaji ? - -The show frequently uses a technique where people are shown talking about a person without necessarily using their name, then abruptly cutting to a shot of the person they're talking about. They did this a lot in episode 17, for example - talking about the fourth children, then a hard cut to Toji. It's not really supposed to be a mystery - yes, it was Kaji.";False;False;;;;1610674837;;False;{};gjaphf1;False;t3_kxfygp;False;False;t1_gja4324;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjaphf1/;1610764584;6;True;False;anime;t5_2qh22;;0;[]; -[];;;JustAnswerAQuestion;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JAaQ/;light;text;t2_66xzcvc;False;False;[];;"**First Timer** - -I don't know why you all didn't like the fight music yesterday, I loved it. It reminded me of Escaflowne. I didn't even remember that it had been used in the beginning with Shangri-la. That's because, unlike Escaflowne, it hasn't been terribly overused. - - -* I have no idea where we're starting off here with Yuu. I remember Tobi popping in next to him and them talk, but not what they said or how that resolved. I guess Tobi told him to go find Haruka? -* I'm so tired of Atori. I'm sticking with my Gollum theory, it's the only reason he's still alive. -* I guess kids are trained to trust their teachers and depend on them. -* All they need to say Karasu is some ~~metabugs~~ Reizu. -* Of course the teach doesn't know anything, only Uchida does...and there she is....and there she goes...stupid. - -Haruka should have been able to pick a future where the fight with Fukuro didn't happen.";False;False;;;;1610674860;;False;{};gjapj1g;False;t3_kxfx0n;False;False;t3_kxfx0n;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjapj1g/;1610764612;4;True;False;anime;t5_2qh22;;0;[]; -[];;;FireRifle64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FireRifle64;light;text;t2_29fr8mww;False;False;[];;To be honest, I didn't even really notice. More into the shenanigans than the thighs atm.;False;False;;;;1610675066;;False;{};gjapx5s;False;t3_kxi2w8;False;True;t1_gjadphb;/r/anime/comments/kxi2w8/stop_complaining_about_the_thighs_in/gjapx5s/;1610764868;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JustAnswerAQuestion;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JAaQ/;light;text;t2_66xzcvc;False;False;[];;The swords either decorated the knight's bunk room, or specifically Fukuro's corner of it. He was generally shown next to them.;False;False;;;;1610675137;;False;{};gjaq1yu;False;t3_kxfx0n;False;False;t1_gj9zzou;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjaq1yu/;1610764953;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Snowboy8;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_33bq9awf;False;False;[];;Some of the EDs here make the contest feel more like a best scene contest rather than best ED. It feels like sometimes the song with the best scene taped over it wins.;False;False;;;;1610675171;;False;{};gjaq4ar;False;t3_kxh4fx;False;False;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjaq4ar/;1610764995;10;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;">Also, is it me, or Nino was especially beautiful in this episode? - -Yeah, I noticed that too. The animators must have put that extra detail into her face, because she was really pretty this episode!";False;False;;;;1610675283;;False;{};gjaqbw6;False;t3_kxepsc;False;False;t1_gjalaxb;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaqbw6/;1610765125;6;True;False;anime;t5_2qh22;;0;[]; -[];;;kuubi;;;[];;;;text;t2_7kc5i;False;False;[];;Can you tell me the digits? Need to read up on the source I guess;False;False;;;;1610675453;;False;{};gjaqndy;False;t3_kxepsc;False;False;t1_gj9wfmx;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaqndy/;1610765321;7;True;False;anime;t5_2qh22;;0;[]; -[];;;affnn;;;[];;;;text;t2_2pk33t;False;False;[];;"**Rewatcher** - -I didn't want to bring it up then because of spoilers, but the original Fly Me To The Moon end credits from back in Episode 16 had a little preview of the ""Do you want to become one with me?"" dialog. You can find those end credits [here](https://www.youtube.com/watch?v=M3ptuynqbyw&ab_channel=Sharpe) if you are watching a version with a different end music.";False;False;;;;1610675507;;False;{};gjaqr28;False;t3_kxfygp;False;False;t3_kxfygp;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjaqr28/;1610765387;5;True;False;anime;t5_2qh22;;0;[]; -[];;;padperascha;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/swappong;light;text;t2_pjclzwj;False;False;[];;[It's more complicated than that.](https://www.ageofconsent.net/world/japan);False;False;;;;1610675519;;False;{};gjaqruo;False;t3_kxi2w8;False;True;t1_gjaeg5d;/r/anime/comments/kxi2w8/stop_complaining_about_the_thighs_in/gjaqruo/;1610765400;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EasilyDelighted;;;[];;;;text;t2_8t8z8;False;False;[];;Well that explains the title of the anime tsuki ga kirei.;False;False;;;;1610675632;;False;{};gjaqzhg;False;t3_kxepsc;False;False;t1_gja5pf3;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaqzhg/;1610765536;89;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;"HOLY SHITE - -I don't know how, but today's episode was on point, solid. Seriously, it felt like right out of a movie. The music and OSTs were very nice. Besides that, I loved the atmosphere of today's episodes. They were very introspective and wonderful. - -Itsuki continues to be the funny one of the group, finding a ""dead"" (sleeping) Fuutaro. The conflict between the 5 sisters over Fuutaro's presence was very well executed and heck, Nino and Itsuki (the two tsunderes of the group) leaving the house was unexpected, but pretty surprising. (Also, the slaps were pretty funny. I know they're supposed to be serious, but I kinda chuckled to myself seeing them.) Nino going to a super fancy hotel, that was surprising, but I guess it makes sense. Itsuki going over to Fuutaro's house...ok, I saw that coming from a mile away. Especially after I knew how well she got along with Raiha and how she basically has nowhere else to go. - -Also, I know shocked Fuutaro's nose shadow is supposed to be a shadow of his nose upon his little mouth indenture thingy everyone has, but my mind...couldn't help but go to uh...a more 40's era. - -Fuutaro searching with Miku, that was fun. And the extra jokes on the quints all looking the same, that was funny too. Miku uses her identical looks to Nino to track her down, and then get into her hotel. Also, that ribbon grab. Nino...I'm so sorry! Kintaro doesn't exist! But still, that ribbon grab, it really gave me Your Name vibes. Seriously, I love that kind of stuff. - -The line about Fuutaro drowning and his mind going to a dark place, that one hit HARD. Dang Fuutaro, are you ok? I know everyone wants their own harem, but ya gotta know how hard it is for Fuutaro to get along with the 5 quints he has. - -The meeting with the mysterious quint at the end was equally dreamy and awe inspiring. That was merely Fuutaro's imagination, right? It has to be. He ran into Yotsuba at the end. Wonder what that was all about. It can't be her, as her hair was too long. This also rules out Ichika, now that I think of it. I guess it must simply have been his imagination. - -The end of the episode was nice as well. So, Nino is warming up to Fuutaro, huh?";False;False;;;;1610675701;;1610675991.0;{};gjar46z;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjar46z/;1610765619;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Scuba_Steve_5;;;[];;;;text;t2_1pw4rh0a;False;False;[];;Hunting for your Dream is so good I basically binge watch that whole arc everytime I re-watch HxH;False;False;;;;1610675754;;False;{};gjar7s9;False;t3_kxh4fx;False;False;t1_gjah9g7;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjar7s9/;1610765681;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Harpr33t-Singh;;;[];;;;text;t2_2xgwk401;False;False;[];;" ->NERV managed to capture and restrain Unit 01 (HOW!?). - -Huh, i didn't even think about that. You're right. How the heck they captured it after what Ritsuko said the last time that the bindings are undone and now they won't be able to control the Eva. - - ->Pretty telling he saw Gendo when he was chanting enemy. - -That scene was pretty cool! I loved how they inserted Gendo during the scene at last and how the music escalated throughout the sequence till we got a kind of scary shot of Gendo standing in front of Shinji";False;False;;;;1610675888;;False;{};gjargwb;False;t3_kxfygp;False;False;t1_gja6i7j;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjargwb/;1610765846;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Dare555;;;[];;;;text;t2_6k3zwl8o;False;False;[];;Is it me or are animations way worse then S1?;False;False;;;;1610675929;;False;{};gjarjo7;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjarjo7/;1610765894;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;I was too. I mean, why'd he randomly go for a swim there?;False;False;;;;1610676023;;False;{};gjarq6b;False;t3_kxepsc;False;False;t1_gjakadu;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjarq6b/;1610766032;9;True;False;anime;t5_2qh22;;0;[]; -[];;;NoEngrish;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/aionc/;light;text;t2_60xie;False;False;[];;she must've realized when she caught his arm in the door...;False;False;;;;1610676100;;False;{};gjarvfw;False;t3_kxepsc;False;True;t1_gj9xixj;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjarvfw/;1610766122;1;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;I agree. Miku still my ideal girl though!;False;False;;;;1610676144;;False;{};gjarycx;False;t3_kxepsc;False;True;t1_gj9w3tq;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjarycx/;1610766172;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Harpr33t-Singh;;;[];;;;text;t2_2xgwk401;False;False;[];;" ->I think they work pretty well at capturing a kind of trippy, psychological energy - -I agree. The repetitive scene of all the girls at the end calling out to Shinji to merge with them was pretty well done. The fact that it was on a loop added to the scene instead of taking away from it imo. And honestly i didn't feel the production quality was especially bad in this episode. Even when they use still shots, those shots tend to be really well drawn and the colours and angles used in the shits make them look really good";False;False;;;;1610676183;;False;{};gjas0yc;False;t3_kxfygp;False;False;t1_gjant6q;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjas0yc/;1610766217;8;True;False;anime;t5_2qh22;;0;[]; -[];;;MashiroSunao;;;[];;;;text;t2_8w3qf;False;False;[];;There is no magic.;False;False;;;;1610676222;;False;{};gjas3lb;False;t3_kxepsc;False;True;t1_gj9yw13;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjas3lb/;1610766262;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vinny_Lam;;;[];;;;text;t2_19ehzho9;False;False;[];;"Absolutely. I’ve read the manga and the premise is really unique; it’s unlike anything I’ve ever seen before. I really hope the anime can do the manga justice.";False;False;;;;1610676231;;False;{};gjas46r;False;t3_kxd55a;False;False;t1_gj9osgj;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjas46r/;1610766272;5;True;False;anime;t5_2qh22;;0;[]; -[];;;emon64;;;[];;;;text;t2_lpo8z;False;False;[];;"I asked in the Casual Friday Discussion Thread as well, but how do you even pronounce the ""∬"" in the title?";False;False;;;;1610676373;;False;{};gjase3c;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjase3c/;1610766450;4;True;False;anime;t5_2qh22;;0;[]; -[];;;2KE1;;;[];;;;text;t2_14re6r;False;False;[];;Chivalry if a failed knight or undefeated bahamut chronicle;False;False;;;;1610676447;;False;{};gjasj4f;False;t3_kxhzrl;False;True;t3_kxhzrl;/r/anime/comments/kxhzrl/looking_anime_that_i_watched_long_ago_that_had/gjasj4f/;1610766539;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GonTheDinosaur;;MAL;[];;http://myanimelist.net/animelist/gon7T;dark;text;t2_dzokm;False;False;[];;Thank you for explaining. That's insightful.;False;False;;;;1610676714;;False;{};gjat1r1;False;t3_kxepsc;False;True;t1_gja5pf3;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjat1r1/;1610766856;2;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;Happy Cake Day!;False;False;;;;1610676736;;False;{};gjat39j;False;t3_kxepsc;False;True;t1_gja7h2g;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjat39j/;1610766881;1;True;False;anime;t5_2qh22;;0;[]; -[];;;made-with-jeans;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;http://www.anime-planet.com/forum/members/;light;text;t2_6y5uft6g;False;False;[];;Orange;False;False;;;;1610676788;;False;{};gjat6tb;False;t3_kxgv7y;False;True;t3_kxgv7y;/r/anime/comments/kxgv7y/looking_for_recommendations_for_romance_anime/gjat6tb/;1610766940;1;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;~~Fifth upvote~~;False;False;;;;1610676809;;False;{};gjat87m;False;t3_kxepsc;False;True;t1_gjajvzb;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjat87m/;1610766963;1;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;Checking in!;False;False;;;;1610676880;;False;{};gjatd1f;False;t3_kxepsc;False;True;t1_gj9xr38;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjatd1f/;1610767047;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GonTheDinosaur;;MAL;[];;http://myanimelist.net/animelist/gon7T;dark;text;t2_dzokm;False;False;[];;I actually don't mind for anime original ending, so many people wants to see 'different routes' and this anime adaptation can answer that.;False;False;;;;1610676898;;False;{};gjate9f;False;t3_kxepsc;False;False;t1_gja8wul;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjate9f/;1610767069;7;True;False;anime;t5_2qh22;;0;[]; -[];;;GonTheDinosaur;;MAL;[];;http://myanimelist.net/animelist/gon7T;dark;text;t2_dzokm;False;False;[];;Scrumble eggs will be the real test...;False;False;;;;1610676942;;False;{};gjath71;False;t3_kxepsc;False;False;t1_gja0hyc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjath71/;1610767126;9;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;Glad to know I'm not the only one.;False;False;;;;1610676948;;False;{};gjathm6;False;t3_kxepsc;False;False;t1_gj9vqa1;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjathm6/;1610767134;10;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;Same here! Itsuki did have a lot of good moments this episode.;False;False;;;;1610677006;;False;{};gjatliz;False;t3_kxepsc;False;False;t1_gjap82y;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjatliz/;1610767201;9;True;False;anime;t5_2qh22;;0;[]; -[];;;GonTheDinosaur;;MAL;[];;http://myanimelist.net/animelist/gon7T;dark;text;t2_dzokm;False;False;[];;or season 3 hype;False;False;;;;1610677090;;False;{};gjatr4c;False;t3_kxepsc;False;False;t1_gjafion;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjatr4c/;1610767302;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Anon199760;;;[];;;;text;t2_49baaa9v;False;False;[];;Honestly I really wish Miku wins. She's been really supportive and helpful from day 2 onwards...;False;False;;;;1610677432;;False;{};gjaue18;False;t3_kxepsc;False;False;t1_gj9xr38;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaue18/;1610767710;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Anon199760;;;[];;;;text;t2_49baaa9v;False;False;[];;I'd say he needs a little more self worth tbh. After all that work and effort, it would've made anyone rage quit...;False;False;;;;1610677630;;False;{};gjaurkg;False;t3_kxepsc;False;False;t1_gja25xa;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaurkg/;1610767953;15;True;False;anime;t5_2qh22;;0;[]; -[];;;GonTheDinosaur;;MAL;[];;http://myanimelist.net/animelist/gon7T;dark;text;t2_dzokm;False;False;[];;Itsuki didn't meant it, that's why Fuu said she should go study (instead of seeking out for romance).;False;False;;;;1610677735;;False;{};gjauyk9;False;t3_kxepsc;False;True;t1_gj9z3k3;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjauyk9/;1610768077;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HydraTower;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_pbpmb;False;False;[];;Great anime. Highly recommend.;False;False;;;;1610677851;;False;{};gjav6ck;False;t3_kxepsc;False;False;t1_gjaqzhg;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjav6ck/;1610768210;32;True;False;anime;t5_2qh22;;0;[]; -[];;;imaforgetthis;;;[];;;;text;t2_2d7gcwde;False;False;[];;"This probably needs to be emphasized. The quote above says ""the best translation would be,"" implying that there's some sort of logical reasoning in how it translates linguistically. That short excerpt without additional context is going to be misleading for someone who doesn't know anything about Japanese.";False;False;;;;1610677865;;False;{};gjav7d7;False;t3_kxepsc;False;False;t1_gja7j4o;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjav7d7/;1610768231;16;True;False;anime;t5_2qh22;;0;[]; -[];;;JustAnswerAQuestion;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JAaQ/;light;text;t2_66xzcvc;False;False;[];;You're confirming this? Because I'm holding out that he's Isami's little sister, ever since I found out she existed.;False;False;;;;1610677925;;False;{};gjavbbc;False;t3_kxfx0n;False;True;t1_gjalrks;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjavbbc/;1610768300;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TempestoLord;;;[];;;;text;t2_36iuel06;False;False;[];;Really love the new art and the animation is pretty good aswell, i can’t even look at S1 anymore. I hope they will do “that” episode justice.;False;False;;;;1610678016;;False;{};gjavhdm;False;t3_kxepsc;False;True;t1_gj9wy91;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjavhdm/;1610768403;2;True;False;anime;t5_2qh22;;0;[]; -[];;;b0bba_Fett;;;[];;;;text;t2_12yifh;False;False;[];;"[*Sees Results*](#kaguyashaking) -[FUCK ME](#volibearQ) - -The only 3 EDs I was invested in that advanced are the JoJo ED, the Konosuba ED, and the Clip Show. As someone who's invested in like 100+ EDs in this bracket, it freaking hurts. I expected this however. Bracket A has the most disproportionately popular stuff I genuinely don't care for in it, thus the most salt for me. The other groups are gonna be more painful to vote in than to observe the results(probably). - -**Bolded** shows are ones I've seen while *italicized* ones are shows I have not. - -Entry 1|VS|Entry 2|Comment| ----|---|---|--- -[*~~Fukashigi no Karte - Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai ED~~*](https://animethemes.moe/video/Aobuta-ED2.webm)|VS|[**Speed of Flow - Gintama ED 8**](https://animethemes.moe/video/Gintama-ED8.webm)|Surprisingly difficult decision, from what I understand the Bunny ED changes animation from episode to episode, and I really like that, but I don't like it for much else, and while Speed of Flow isn't even in my top 10 of Gintama EDs, it's still pretty good. Went with the lower seed in the end. -[*~~INSIDE IDENTITY - -Chuunibyou demo Koi ga Shitai! ED~~*](https://animethemes.moe/video/Chuunibyou-ED1.webm)|VS|[*Stand by me - Sarazanmai ED*](https://animethemes.moe/video/Sarazanmai-ED1.webm)| The tricks the Sarazanmai ED pulls to mess with the lighting, reflections and shadows with the IRL backdrops is really impressive! Chuunibyo ED wasn't bad either though. -[*~~LIFE - Dr. Stone ED 1~~*](https://animethemes.moe/video/DrStone-ED1.webm)|VS|[*Wonderful Wonder World - Log Horizon 2nd Season ED*](https://animethemes.moe/video/LogHorizonS2-ED1.webm)| I've really enjoyed these Log Horizon EDs, I'm probably gonna pick up the show because of them. -[**Memosepia - Mob Psycho 100 II ED 2**](https://animethemes.moe/video/MobPsycho100S2-ED2.webm)|VS|[*~~Wind - Naruto ED 1~~*](https://animethemes.moe/video/Naruto-ED1.webm)| Honestly just wasn't feeling the Naruto ED at all. And while Memosepia is the weakest Mob ED, it's far from bad. -[*Michishirube - Violet Evergarden ED 1*](https://animethemes.moe/video/VioletEvergarden-ED1.webm)|VS|[**~~Tonari no Totoro - My Neighbour Totoro ED~~**](https://www.youtube.com/watch?v=RlUhoO7FNcE)| Only watched Totoro for the first time just yesterday, so it's very fresh in my mind, but for the life of me I can't remember if the ED had visuals. I remember the OP, and that's the same song, so I'mma have to go against the Totoro ED due to forgettability as an isolated instance. Song is *really* nice though. -[**~~Spice - Shokugeki no Souma: Food Wars ED 1~~**](https://animethemes.moe/video/ShokugekiNoSouma-ED1.webm)|VS|[*Yuki ni Saku Hana - Shinsekai Yori ED 2*](https://animethemes.moe/video/ShinsekaiYori-ED2.webm)| Was at an impasse here for a while, going with the lower seeded ED. -[*~~Dango Daikazoku - Clannad ED~~*](https://animethemes.moe/video/Clannad-ED1.webm)|VS|[*X Jigen e Youkoso - Space☆Dandy ED 1*](https://animethemes.moe/video/SpaceDandy-ED1.webm)|Both of these are amazing, it's really not fair this is a round 1 match-up. Once again going with the lower seeded ED. -[*~~World-Line - Steins;Gate 0 ED 5~~*](https://animethemes.moe/video/SteinsGateZero-ED5.webm)|VS|[*~~Chiisanan Te no Hira - Clannad: After Story ED 2 (Spoilers)~~*](https://animethemes.moe/video/ClannadAfterStory-ED2.webm)| 2 spoiler EDs from two shows I haven't seen?(More dropped Zero before I got there but that's semantics) That's an abstention from me. -[*~~The Real Folk Blues - Cowboy Bebop ED 1~~*](https://animethemes.moe/video/CowboyBebop-ED1.webm)|VS|[*Platinum Jet - Shirobako ED 2*](https://animethemes.moe/video/Shirobako-ED2.webm)| This may sound blasphemous to some of you, but I'm just not the biggest fan of The Real Folk Blues. I find it, underwhelming. I also enjoyed the visuals of the Shirobako ED more. -[**~~Just Awake - Hunter x Hunter (2011) ED 1~~**](https://animethemes.moe/video/HunterHunter2011-ED1.webm)|VS|[*Escape - Darling in the FranXX ED 5*](https://animethemes.moe/video/DarlingInTheFranXX-ED5-NCBD1080.webm)| Just awake is better as an insert song than it is an an ED, the song isn't standard, but that doesn't make it automatically good, and the visuals aren't fitting with how Madhouse adapted this portion of the story, which was oddly family friendly. Meanwhile the DarliFra ED isn't anything special, but I think it works better as an ED than Just Awake. ^Might ^be ^slightly ^salty ^that ^Just ^Awake ^coasted ^too ^far ^last ^year ^on ^bracket ^luck, ^while ^the ^better ^HxH ^EDs ^got ^pitted ^against ^finalists ^round ^2. -[**~~Hunting for Your Dream. - Hunter x Hunter (2011) ED 2~~**](https://animethemes.moe/video/HunterHunter2011-ED2.webm)|VS|[**Another Colony - Tensei shitara Slime Datta Ken ED 1**](https://animethemes.moe/video/Tensura-ED1.webm)|Another painful matchup, I adore Hunting For Your Dream, it's another super hype ED, and I actually really like its style, but I think the Slime ED is just the better piece. Sakuga everywhere, tells a story, song ain't half bad either. -[**~~Minna no Peace - Tengen Toppa Gurren Lagann ED 3~~**](https://animethemes.moe/video/TengenToppaGurrenLagann-ED3.webm)|VS|[**Samurai Heart (Some Like It Hot!!) - Gintama'**](https://animethemes.moe/video/GintamaS2-ED1.webm)| Fuck, this one hurts, I love both of these. Minna no Peace is the hypest shit, but Samurai Heart is a top 3 Gintama ED, and I absolutely adore the use of the rain, when you notice Pirako's face is wet despite the umbrella is some good stuff. -[**Sky Clad no Kansokusha - Steins;Gate ED 3 (NSFW, Spoilers)**](https://animethemes.moe/video/SteinsGate-ED3.webm)|VS|[*~~Yaki Ochinai Tsubasa - Charlotte ED 1~~*](https://animethemes.moe/video/Charlotte-ED1.webm)| I love Skyclad Observer as a song, and while it's not the greatest as an ED due to not much in the visuals department, Charlotte's ED isn't offering the stiffest competition on that front either. -[*~~Vivace! - Hibike! Euphonium 2 ED 1~~*](https://animethemes.moe/video/HibikeEuphoniumS2-ED1.webm)|VS|[*Snow Halation - Love Live! School Idol Project 2nd Season ED 8*](https://animethemes.moe/video/LoveLiveS2-ED8.webm)|The Pilsbury Jazz Conductor is a formidable opponent, but 5 years of Siivagunner have given me Stockholm Syndrome towards Snow Halation. I can't help but love it. -[**Chiisana boukensha - Kono Subarashii Sekai ni Shukufuku wo! ED**](https://animethemes.moe/video/Konosuba-ED1.webm)|VS|[**~~Thank You!! - Bleach ED 2~~**](https://animethemes.moe/video/Bleach-ED2.webm)| The first Konosuba ED is less spectacularly animated than its successor, but is no less comfy and SoL filled. I actually do like the second Bleach Ed a fair bit, so there was some consideration here, but not too much. -[**Last Train Home - JoJo no Kimyou na Bouken Part 3: Stardust Crusaders 2nd Season ED 1**](https://animethemes.moe/video/JojoNoKimyouNaBoukenS3-ED1.webm)|VS|[*~~Ref:rain - Koi wa Ameagari no You ni ED~~*](https://animethemes.moe/video/KoiWaAmeagariNoYouNi-ED1.webm)|Last Train Home was probably the biggest surprise when I watched Stardust Crusaders, I'd never heard of the song before, but it fits *soooooo* well with the Egypt portion of the adventure. And the Visuals showing something that ultimately would never come to be is probably the biggest reason some emotional moments from the season actually hit. -[**Roundabout - JoJo no Kimyou na Bouken ED**](https://animethemes.moe/video/JojoNoKimyouNaBouken-ED1.webm)|VS|[**~~Life - Bleach ED 5~~**](https://animethemes.moe/video/Bleach-ED5.webm)|Yes, yes, funny haha meme Roundabout, but seriously, this ED does something I've almost never seen done in anything, probably the closest I can think of is how Fly Me to the Moon is a different cover every episode. Roundabout manipulates its 8 minute song to be a thematically appropriate ED for whatever episode of Part 2 it happens to be ending, and is a perfectly good ED during Part 1 to boot. The Battle Tendency version of Roundabout is seriously an underrated ED that is overshadowed by its meme. -[**Startear - Sword Art Online II ED 1**](https://animethemes.moe/video/SwordArtOnlineS2-ED1.webm)|VS|[**~~L.L.L. Overlord ED~~**](https://animethemes.moe/video/Overlord-ED1.webm)|IDK if this is a hotter take than disliking RFB, but the first arc of SAO II is my favorite, and I really like its ED too, I'm also not the biggest fan of the first Overlord ED, which might also be a hot take. IDK -[*~~believe - Fate/stay night: Unlimited Blade Works~~*](https://animethemes.moe/video/FateStayNightUBW-ED1.webm)|VS|[*Duet♡ShitekudaΨ - Saiki Kusuo no Ψ-nan 2 ED 2*](https://animethemes.moe/video/SaikiKusuoNoPsiNanS2-ED2.webm)|I clapped at the end of the Saiki K ED , a wonderful performance! Real talk though I was laughing my ass off for it, more than I can say for the UBW ED, though it was not bad. -[*~~Koukai no Uta - Boku no Hero Academia 4th Season Ed 1~~*](https://animethemes.moe/video/BokuNoHeroAcademiaS4-ED1.webm)|VS|[*Kamisama no Iutoori - Yojouhan Shinwa Taikei ED*](https://animethemes.moe/video/YojouhanShinwaTaikei-ED1.webm)| Floor plans! What an interesting choice for an ED. Well implemented too. I suppose there was a story in the HeroAca ED, but It didn't seem to tell the viewer much without actually following the show. -[**~~Name of Love - Shingeki no Kyojin Season 3 Part 2~~**](https://animethemes.moe/video/ShingekiNoKyojinS3Part2-ED1.webm)|VS|[*You Only Live Once - YURI!!! on ICE ED 1*](https://animethemes.moe/video/YuriOnIce-ED1.webm)| ~~I honestly don't find either of these terribly memorable, don't feel like voting for either of them.~~ **EDIT:** See replies. -[*ring your bell - Fate/stay night: Unlimited Blade Works 2nd Season ED 1*](https://animethemes.moe/video/FateStayNightUBWS2-ED1.webm)|VS|[*~~Sign - Gotoubun no Hanayome ED~~*](https://animethemes.moe/video/GotoubunNoHanayome-ED1.webm)|Neither song is anything special, but I liked the visuals of the Fate ED more.";False;False;;;;1610678061;;1610704967.0;{};gjavkdk;False;t3_kxh4fx;False;False;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjavkdk/;1610768455;16;True;False;anime;t5_2qh22;;0;[]; -[];;;JustAnswerAQuestion;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JAaQ/;light;text;t2_66xzcvc;False;False;[];;"> Kuina manages to save the day for our protagonists by forcing her back, being a good little double agent. - -Ohhhh. I thought he was going to kill Haruka or hand her over to Noein. But maybe he ""gets to the promised land"" by making the Knights fail. This fits in with the idea that Noein's end goal is the Good End.";False;False;;;;1610678066;;False;{};gjavkop;False;t3_kxfx0n;False;True;t1_gja8hj9;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjavkop/;1610768461;3;True;False;anime;t5_2qh22;;0;[]; -[];;;b0bba_Fett;;;[];;;;text;t2_12yifh;False;False;[];;"Entry 1|VS|Entry 2|Comment| ----|---|---|--- -[**~~Vanilla Salt - Toradora! ED 1~~**](https://animethemes.moe/video/Toradora-ED1.webm)|VS|[**Hitohira no Hanabira - Bleach ED 17**](https://animethemes.moe/video/Bleach-ED17.webm)| This one came down purely to musical taste. -[*~~Alumina - Death Note ED 1~~*](https://animethemes.moe/video/DeathNote-ED1.webm)|VS|[**CheerS - Hataraku Saibou ED**](https://animethemes.moe/video/HatarakuSaibou-ED1.webm)|More musical taste, just not a fan of the Death Note ED. -[**~~Utsukushiki Zankoku na Sekai - Shingeki no Kyojin ED 1~~**](https://animethemes.moe/video/ShingekiNoKyojin-ED1.webm)|VS|[**Style - Soul Eater ED 2**](https://animethemes.moe/video/SoulEater-ED2.webm)|Echoing what I said in Elims, Style is the black sheep of Soul Eater EDs in that it isn't a Sakugafest(it actually kinda is, but not nearly as much of one as the others, it's also relatively subtle about it, being mostly in how the baggy clothes bounce around as Maka walks or runs), but it is the strongest emotionally, being a very good decompressor during the most intense arc of the show to get animated, and the [special version](https://files.catbox.moe/urryfy.webm) featuring Crona really drives home the resolution of the Episode it ends. All that said, I also really do like the first AoT ED, and it's a worthy ED for Style to inevitably fall to because Soul Eater is too old and gone from the lurkers' minds to stand a chance. -[**Overfly - Sword Art Online ED 2**](https://animethemes.moe/video/SwordArtOnline-ED2.webm)|VS|[*~~aLIEz - Aldnoah.Zero ED 2~~*](https://animethemes.moe/video/AldnoahZero-ED2.webm)| not a fan of either, but there's something of a story to the SAO ED, AZ's ED is barely anything. -[*Fuyu Biyori - Yuru Camp△ ED*](https://animethemes.moe/video/YuruCamp-ED1.webm)|VS|[*~~Kanade - Karakai Jouzu no Takagi-san 2 ED 1~~*](https://animethemes.moe/video/Takagi3S2-ED1.webm)|Not impressed by either of them. Came down to musical taste. -[**Isekai Girls♡Talk - Isekai Quartet ED 1**](https://animethemes.moe/video/IsekaiQuartet-ED1.webm)|VS|[*~~Inferno - Promare ED 1~~*](https://animethemes.moe/video/Promare-ED1.webm)|One is a cute way to get around a very limited budget, and I'm also a sucker for songs sung in character, the other is a fairly standard Blockbuster movie ED, which is honestly more than most anime movie EDs, I'll be giving it to the girls, but I think Promare is worthy of notice. -[*Sugar Song to Bitter Step - Kekkai Sensen ED*](https://animethemes.moe/video/KekkaiSensen-ED1.webm)|VS|[*~~Kimagure Romantic - Karakai Jouzu no Takagi-san ED 1~~*](https://animethemes.moe/video/Takagi3-ED1.webm)|The first time I've cared for one the Takagi-san EDs and it's up against the glorious trainwreck that is SStBS. Oof. -[*Tutti! - Hibike! Euphonium ED 1*](https://animethemes.moe/video/HibikeEuphonium-ED1.webm)|VS|[**~~Hydra - Overlord II ED 1~~**](https://animethemes.moe/video/OverlordS2-ED1.webm)|I actually really really liked Tutti! Very Good. Even gets looping bonus points. -[**REASON - Hunter x Hunter (2011) ED 4**](https://animethemes.moe/video/HunterHunter2011-ED3.webm)|VS|[*~~Whiteout - Boogiepop wa Warawanai ED 1~~*](https://animethemes.moe/video/BoogiepopWaWarawanai-ED1.webm)|Neither one is too standout in regards to visuals, there are several EDs in this contest that do the same thing but better outside maybe Whiteout flipping the scenery, but I think Reason is the better song by a bigger margin than I think Whiteout has the better visuals. -[*unlasting - Sword Art Online: Alicization - War of the Underworld ED*](https://animethemes.moe/video/SwordArtOnlineAlicizationS2-ED1.webm)|VS|[*~~Hallelujah☆Essaim - Gabriel DropOut ED 1~~*](https://animethemes.moe/video/GabrielDropout-ED1.webm)|I'm voting for a lot more SAO than I thought I would going into this. Felt there was more to the Alicization ED than the Gabriel one.";False;False;;;;1610678072;;1610684467.0;{};gjavl55;False;t3_kxh4fx;False;False;t1_gjavkdk;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjavl55/;1610768469;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610678246;;False;{};gjavwnc;False;t3_kxepsc;False;True;t1_gjat39j;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjavwnc/;1610768663;1;True;False;anime;t5_2qh22;;0;[];True -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;"The best double agents are the ones who act exactly as they would if they weren't double agents, after all. Kuina ""wins"" by making sure that Lacrima doesn't get the torc, even if the prize might not be what he thinks it is..";False;False;;;;1610678358;;False;{};gjaw40l;False;t3_kxfx0n;False;True;t1_gjavkop;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjaw40l/;1610768788;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TempestoLord;;;[];;;;text;t2_36iuel06;False;False;[];;Nino is my favourite (manga reader), but that slap was deserved. I always appreciated Itsuki as a character, she is sadly overhated because of the “main girl” vibes, but she is so lovely and mature imo. She does remind me of Elaina very much ngl. Hopefully they will show the Rena scene next episode, because it’s confusing for many watchers.;False;False;;;;1610678854;;False;{};gjax120;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjax120/;1610769341;6;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;Platinum Jet is my first discovery so far in the contest. I loved it!;False;False;;;;1610679034;;False;{};gjaxd8k;False;t3_kxh4fx;False;True;t1_gjalgl0;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjaxd8k/;1610769545;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cometssaywhoosh;;;[];;;;text;t2_o9xoz;False;False;[];;Ah, Nino. We expect great things from you!;False;False;;;;1610679079;;False;{};gjaxg95;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaxg95/;1610769596;2;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;That's why I'm not a fan of insert ending songs. Are people actually voting for the song they can barely hear from the people talking over it? Or are they just remembering the scene;False;False;;;;1610679113;;False;{};gjaxijn;False;t3_kxh4fx;False;False;t1_gjaq4ar;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjaxijn/;1610769635;13;True;False;anime;t5_2qh22;;0;[]; -[];;;RishabhM_;;;[];;;;text;t2_9s7ww7e2;False;False;[];;I mean its deeply unpopular in the west, its like super rare to find a conan fan.;False;False;;;;1610679304;;False;{};gjaxv70;True;t3_kxhv53;False;True;t1_gjacll6;/r/anime/comments/kxhv53/why_is_detective_conan_so_underrated/gjaxv70/;1610769849;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Harpr33t-Singh;;;[];;;;text;t2_2xgwk401;False;False;[];;" ->Ritsuko says that ten years ago there was already a recovery mission like this that failed - any guesses? - -There's a scene in the episode showing us the meeting of Shinji with his father way back from episode 1. At that point, Shinji says: ""No, I knew the Eva. And that time I ran away from father and mother"". I am going out on a limb here but maybe, maybe it was Shinji's mother who got absorbed by Unit 01 10 years ago. Also there were these assertions that Shinji's mother was killed by Gendo. Maybe, since they failed to get back Shinji's mother, that's where those assertions come from? Guess we'll find out. - -[Also, i almost missed this shot of kid Shinji](https://i.imgur.com/8QVRBQV.png)";False;False;;;;1610679401;;False;{};gjay1ha;False;t3_kxfygp;False;True;t1_gja8jv1;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjay1ha/;1610769959;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;"Unpopular doesn't mean underrated... - -Also, it's got 242k members on MAL with 112k having given it a rating. That hardly suggests it being ""deeply unpopular""... or even unpopular in general.";False;False;;;;1610679516;;False;{};gjay8xy;False;t3_kxhv53;False;True;t1_gjaxv70;/r/anime/comments/kxhv53/why_is_detective_conan_so_underrated/gjay8xy/;1610770086;1;True;False;anime;t5_2qh22;;0;[]; -[];;;b0bba_Fett;;;[];;;;text;t2_12yifh;False;False;[];;"> I have no idea what I'm watching, but I dig the shit out of it. - -It's a bunch of floor plans dancing! I too have no idea why, but that's what you're looking at.";False;False;;;;1610679543;;False;{};gjayaqs;False;t3_kxh4fx;False;False;t1_gja77dy;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjayaqs/;1610770116;7;True;False;anime;t5_2qh22;;0;[]; -[];;;eliotval1;;;[];;;;text;t2_4kimnag7;False;False;[];;Amen;False;False;;;;1610679598;;False;{};gjaye8j;False;t3_kxepsc;False;True;t1_gj9xr38;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjaye8j/;1610770175;2;True;False;anime;t5_2qh22;;0;[]; -[];;;zaccccccccccc-;;;[];;;;text;t2_51nqls7g;False;False;[];;Does she realize that the dude is kintaro?;False;False;;;;1610679673;;False;{};gjayj83;False;t3_kxepsc;False;False;t1_gjalhns;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjayj83/;1610770257;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zaccccccccccc-;;;[];;;;text;t2_51nqls7g;False;False;[];;Itsuki ftw;False;False;;;;1610679751;;False;{};gjayoez;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjayoez/;1610770341;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hkmiadli;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_6dgg9pvc;False;False;[];;based on the voice, I think that pink-hair girl is Yotsuba. could be wrong though.;False;False;;;;1610680684;;False;{};gjb0dur;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb0dur/;1610771373;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;True;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610681188;moderator;False;{};gjb1bls;False;t3_kxepsc;False;True;t1_gjafmus;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb1bls/;1610771949;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;True;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610681275;moderator;False;{};gjb1heg;False;t3_kxepsc;False;True;t1_gja868j;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb1heg/;1610772045;1;True;False;anime;t5_2qh22;;0;[]; -[];;;theregretmeter;;;[];;;;text;t2_m0jcsde;False;False;[];;Itsuki didn't know the meaning, hence fuu's quote about more studying.;False;False;;;;1610681512;;False;{};gjb1x6h;False;t3_kxepsc;False;True;t1_gja517v;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb1x6h/;1610772312;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sagrado_corazon;;MAL;[];;http://myanimelist.net/animelist/sagrado_corazon;dark;text;t2_74df6;False;False;[];;Nino master race;False;False;;;;1610681565;;False;{};gjb20pp;False;t3_kxepsc;False;False;t1_gj9wy91;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb20pp/;1610772372;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PerfectButtCream;;MAL;[];;http://myanimelist.net/animelist/PerfectButtCream;dark;text;t2_da0ot;False;False;[];;"It's not really magic and I wouldn't even say that she changes, but it's more like a pivot. I would honestly even be hesitant to call it growth but more like insight to her character. - -In a more real-world perspective, people can be dicks and while we often view it as being negative it also has positives. I don't really think this spoils anything but if you hate nino at her core, then I doubt you'll ever like her if that makes sense";False;False;;;;1610681585;;False;{};gjb223a;False;t3_kxepsc;False;True;t1_gj9yw13;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb223a/;1610772396;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610681636;;False;{};gjb25e3;False;t3_kxepsc;False;True;t1_gjajbpv;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb25e3/;1610772449;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;JMEEKER86;;;[];;;;text;t2_7vvx7;False;True;[];;It seemed pretty clear that the grown up quint was a hallucination caused by Futaro losing it and he ended up passing out and falling in the water as a result which brought him back to his senses.;False;False;;;;1610681666;;False;{};gjb27ed;False;t3_kxepsc;False;False;t1_gj9vym0;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb27ed/;1610772482;6;True;False;anime;t5_2qh22;;0;[]; -[];;;AAA_BATT;;MAL;[];;https://myanimelist.net/profile/AAA_BATT;dark;text;t2_14r4yj;False;False;[];;She's definitely top 5 material.;False;False;;;;1610681709;;False;{};gjb2a68;False;t3_kxepsc;False;False;t1_gjaa2vw;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb2a68/;1610772532;19;True;False;anime;t5_2qh22;;0;[]; -[];;;FunnunoTsumi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Bakusatsuou;light;text;t2_3tfzpdgh;False;False;[];;Hmm, I wonder if she really does though.;False;False;;;;1610681738;;False;{};gjb2c3i;False;t3_kxepsc;False;True;t1_gja7c3c;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb2c3i/;1610772565;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sirdimpleton;;;[];;;;text;t2_bznmn4i;False;False;[];;Thanks!;False;False;;;;1610681854;;False;{};gjb2jsj;True;t3_kxhwh0;False;True;t1_gjaocmg;/r/anime/comments/kxhwh0/jujutsu_kaisen_fanart_by_me_took_about_3_days/gjb2jsj/;1610772699;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FunnunoTsumi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Bakusatsuou;light;text;t2_3tfzpdgh;False;False;[];;even before that, she seemed to notice in the hospital;False;False;;;;1610681929;;False;{};gjb2opd;False;t3_kxepsc;False;True;t1_gjarvfw;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb2opd/;1610772784;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FunnunoTsumi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Bakusatsuou;light;text;t2_3tfzpdgh;False;False;[];;They cut that part from the anime. They'll get back to it a bit later so they're probably just rearranging scenes.;False;False;;;;1610681995;;False;{};gjb2sx5;False;t3_kxepsc;False;False;t1_gjarq6b;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb2sx5/;1610772852;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazr55;;;[];;;;text;t2_29xamtbv;False;False;[];;Understanding this when it happened must have been the weebest moment of my life.;False;False;;;;1610682065;;False;{};gjb2xh7;False;t3_kxepsc;False;False;t1_gj9zpd4;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb2xh7/;1610772925;7;True;False;anime;t5_2qh22;;0;[]; -[];;;FunnunoTsumi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Bakusatsuou;light;text;t2_3tfzpdgh;False;False;[];;">I hope in one of these episodes the girls could get at least one fifth of what Fuu-kun is putting himself through. - -As of right now, Itsuki seems to be the only one who does understand how far he's willing to go, which is why she supports him so much.";False;False;;;;1610682097;;False;{};gjb2zhx;False;t3_kxepsc;False;True;t1_gja58s2;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb2zhx/;1610772959;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FunnunoTsumi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Bakusatsuou;light;text;t2_3tfzpdgh;False;False;[];;Double Integral ig, the commercials didn't add that into the title either so it's probably just an addition for the hell of it.;False;False;;;;1610682169;;False;{};gjb346e;False;t3_kxepsc;False;False;t1_gjase3c;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb346e/;1610773034;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazr55;;;[];;;;text;t2_29xamtbv;False;False;[];;"> I'm a veteran of harems - -Respect. I want this on my CV.";False;False;;;;1610682258;;False;{};gjb39xs;False;t3_kxepsc;False;False;t1_gjaawek;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb39xs/;1610773126;5;True;False;anime;t5_2qh22;;0;[]; -[];;;FunnunoTsumi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Bakusatsuou;light;text;t2_3tfzpdgh;False;False;[];;Nah S1 looked way way waaaaaayy more inconsistent. This season is a blessing of an adaptation in art and animation.;False;False;;;;1610682314;;False;{};gjb3dph;False;t3_kxepsc;False;False;t1_gjarjo7;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb3dph/;1610773184;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Nikhil_Subba;;;[];;;;text;t2_4od1inno;False;False;[];;That bitch slap was quite satisfying!;False;False;;;;1610682368;;False;{};gjb3h9j;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb3h9j/;1610773241;2;True;False;anime;t5_2qh22;;0;[]; -[];;;UzEE;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/UzEEInc;light;text;t2_45t2z;False;False;[];;"> What is your favorite ending from 2020? - -Lost in Paradise from Jujutsu Kaisen because I wasn't expecting this sort of an ED and the song is very good.";False;False;;;;1610682751;;False;{};gjb460w;False;t3_kxh4fx;False;True;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjb460w/;1610773663;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cringecox;;;[];;;;text;t2_1ve8zv0e;False;False;[];;Horimiya and Wonder Egg look really good;False;False;;;;1610682801;;False;{};gjb495w;False;t3_kxd55a;False;True;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjb495w/;1610773713;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Philarete;;MAL a-amq;[];;https://myanimelist.net/profile/WizardMcKillin;dark;text;t2_9pgqv;False;False;[];;"> Vivace! - -So rare to see Vivace! appreciation!";False;False;;;;1610682813;;False;{};gjb49xp;False;t3_kxh4fx;False;True;t1_gjanh84;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjb49xp/;1610773727;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Eames11;;;[];;;;text;t2_noi1y;False;False;[];;"Could anyone that can read Japanese tell me who's being credited as ""Girl"" in the credits? I could make that word out but I don't know how to read names yet. It's definitely an entirely different voice from the sisters yet it's oddly familiar. I want to know if I've heard the actress somewhere else.";False;False;;;;1610682869;;False;{};gjb4dfy;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb4dfy/;1610773784;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KEKW_is_LUL;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4r948g4o;False;False;[];;Yea they kinda went low on the budget on Futaro. The rest seems fine. It just seems like the animation studio change gig. All in all it's not a very offensive animation change.;False;False;;;;1610682910;;False;{};gjb4g39;False;t3_kxepsc;False;True;t1_gjarjo7;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb4g39/;1610773829;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Philarete;;MAL a-amq;[];;https://myanimelist.net/profile/WizardMcKillin;dark;text;t2_9pgqv;False;False;[];;"> IDK if this is a hotter take than disliking RFB, but the first arc of SAO II is my favorite, and I really like its ED too, I'm also not the biggest fan of the first Overlord ED, which might also be a hot take. IDK - -[Hottest takes of the thread!](#kaguyashaking)";False;False;;;;1610683065;;False;{};gjb4q04;False;t3_kxh4fx;False;False;t1_gjavkdk;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjb4q04/;1610773987;5;True;False;anime;t5_2qh22;;0;[]; -[];;;CytoPlasm129;;;[];;;;text;t2_3c4ctvpa;False;False;[];;present here;False;False;;;;1610683292;;False;{};gjb54hd;False;t3_kxepsc;False;True;t1_gj9xr38;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb54hd/;1610774232;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610683328;;1610683637.0;{};gjb56s3;False;t3_kxepsc;False;True;t1_gj9r2tr;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb56s3/;1610774273;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Sorry /u/Evane317, this comment has been removed because some spoiler tags did not include a description of the spoiler content inside the brackets. Please make sure to label all your spoilers so that other users know what is being spoiled and to ensure the visibility of the spoilers with mobile applications. - -[](#yanderebot) - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610683328;moderator;False;{};gjb56tg;False;t3_kxepsc;False;True;t1_gjb56s3;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb56tg/;1610774274;1;False;False;anime;t5_2qh22;;0;[]; -[];;;BurningFredrick;;MAL;[];;https://myanimelist.net/profile/BurningFredrick;dark;text;t2_74w5s;False;False;[];;"> Taking the Insanity trait boosts your constitution. - -I always forget it seems to provide a -2 intelligence, +5 endurance - ->I think our dimension is eventually going to remove them but don't quote me on that. - -It does stand as one of the unexplained aspect of the show, the impression I got was the two should be intertwined but apparently not? - - >This could be better placed but let's see what they do with it. - -I suspect the continuous alternating between the SOL & alt world stuff is what's stopping the show from hooking me, nether lasts long enough to draw me in and get invested.";False;False;;;;1610683490;;False;{};gjb5gxl;False;t3_kxfx0n;False;True;t1_gja3hpl;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjb5gxl/;1610774436;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mrtheliger;;;[];;;;text;t2_11ghbg;False;False;[];;Itsuki best girl and I'm not sure why it feels like she has the smallest following. She deserves all the best things.;False;False;;;;1610683513;;False;{};gjb5ibz;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb5ibz/;1610774458;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BurningFredrick;;MAL;[];;https://myanimelist.net/profile/BurningFredrick;dark;text;t2_74w5s;False;False;[];;It appears to be that way, I just expected the 2 to be intertwined as surely the more injured someone is the easier it would be for the universe to get ride of them.;False;False;;;;1610683604;;False;{};gjb5nxg;False;t3_kxfx0n;False;True;t1_gjajicc;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjb5nxg/;1610774545;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AncientLibrarian9357;;;[];;;;text;t2_9ts9tctl;False;False;[];;Man, Nino must have been acting like a saint in the manga for this many people to like her, cuz the anime has not been helping her. She's not even a tsundere at this point, she's just....regular bitchy.;False;False;;;;1610683642;;False;{};gjb5qb7;False;t3_kxepsc;False;False;t1_gj9wo6e;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb5qb7/;1610774584;68;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuck_Shinji;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Fuck Shinji(fate);light;text;t2_7xrbju2m;False;False;[];;Man the be one with me scene was trippy as fuck;False;False;;;;1610683657;;False;{};gjb5rbm;False;t3_kxfygp;False;True;t3_kxfygp;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjb5rbm/;1610774601;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CytoPlasm129;;;[];;;;text;t2_3c4ctvpa;False;False;[];;same here fellow manga reader;False;False;;;;1610683672;;False;{};gjb5s8k;False;t3_kxepsc;False;True;t1_gja4rmk;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb5s8k/;1610774615;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Retsam19;;;[];;;;text;t2_aa4uq;False;False;[];;"I think the concept of ""describing the moon as beautiful as an indirect way to confess love"" doesn't require the *exact* words that Soseki popularized.";False;False;;;;1610683778;;False;{};gjb5yvm;False;t3_kxepsc;False;False;t1_gja0a5v;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb5yvm/;1610774717;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;"> -> -> -> -> I always forget it seems to provide a -2 intelligence, +5 endurance - -Crazy isn't going to fix itself so it needs to tank it. - -> It does stand as one of the unexplained aspect of the show, the impression I got was the two should be intertwined but apparently not? - -This is me doing the heavy lifting, which I generally hate, but they may not be stable in our dimension. - -> I suspect the continuous alternating between the SOL & alt world stuff is what's stopping the show from hooking me, nether lasts long enough to draw me in and get invested. - -I can see that and think it could have been woven better. That said [Speculation](/s ""What are the odds that the show ultimately winds up being about grieving and acceptance rather than a happy solution? That would make the SoL make sense in a way."")";False;False;;;;1610683929;;False;{};gjb6856;False;t3_kxfx0n;False;True;t1_gjb5gxl;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjb6856/;1610774866;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BurningFredrick;;MAL;[];;https://myanimelist.net/profile/BurningFredrick;dark;text;t2_74w5s;False;False;[];;"Given that his design continuously reminds me of another character from [kind of spoilers?](/s ""Katanagatari""), that is almost appropriate.";False;False;;;;1610684030;;False;{};gjb6e8h;False;t3_kxfx0n;False;True;t1_gjah8ru;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjb6e8h/;1610774963;2;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;Ah, I see.;False;False;;;;1610684303;;False;{};gjb6v4y;False;t3_kxepsc;False;True;t1_gjb2sx5;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb6v4y/;1610775229;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TyphlosionGOD;;;[];;;;text;t2_a055x;False;False;[];;I think people need to know that these kind of things don't happen because of one argument. Rather, problems after problems building up until they can't handle it anymore.;False;False;;;;1610684486;;False;{};gjb76b4;False;t3_kxepsc;False;False;t1_gj9wi9a;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb76b4/;1610775404;28;True;False;anime;t5_2qh22;;0;[]; -[];;;bungaleer;;;[];;;;text;t2_2ug7cdx2;False;False;[];;Veil from fire force not being in the tournament is a huge oversight imo;False;False;;;;1610684621;;False;{};gjb7em3;False;t3_kxh4fx;False;True;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjb7em3/;1610775535;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sunny2456;;;[];;;;text;t2_abq1l;False;False;[];;I know that fight at their house was spicy in the manga, but man seeing it animated gives it a whole 'nother level of tension.;False;False;;;;1610684692;;False;{};gjb7j33;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb7j33/;1610775605;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SpaghettiPunch;;;[];;;;text;t2_8u4po52;False;False;[];;"&#x200B; - ->What is your favorite ending from 2020? - -[Magia Record - Alicia](https://www.youtube.com/watch?v=4tQDfqzahl8) - -And [After the Rain - Ref:rain](https://www.youtube.com/watch?v=ilZTcxjL7HI) is gonna get crushed by Jojo isn't it...";False;False;;;;1610684784;;False;{};gjb7on3;False;t3_kxh4fx;False;False;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjb7on3/;1610775696;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610684928;;False;{};gjb7xjc;False;t3_kxepsc;False;True;t1_gjb5qb7;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb7xjc/;1610775840;15;True;False;anime;t5_2qh22;;0;[]; -[];;;BlackMan0704;;;[];;;;text;t2_4a4bhpnc;False;False;[];;IMO she got a couple points towards the end of the episode when she let futaro in her room after she had seen his eyes;False;False;;;;1610684983;;False;{};gjb80t4;False;t3_kxepsc;False;False;t1_gja7rvh;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb80t4/;1610775892;10;True;False;anime;t5_2qh22;;0;[]; -[];;;jbanto17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/jbanto17;light;text;t2_fhuot;False;False;[];;"Quite literally *every* lower seed lost. **Disgraceful**. - - It's pretty worthless to complain here though, considering that most people don't look at the comments until after they vote for some reason. - -Please give a vote to: - - - [' + **Fukashigi no Carte**](https://img.animebracket.com/4g62.jpg) - [' + ~~Speed of Flow [ED 8]~~](https://img.animebracket.com/4gdo.jpg) - - [' + ~~Stand by me~~](https://img.animebracket.com/4ggv.jpg) - [' + **Inside Identity**](https://img.animebracket.com/4g83.jpg) - - [' + **Wonderful Wonder World [ED2]**](https://img.animebracket.com/4geu.jpg) - [' + ~~Life [ED 1]~~](https://img.animebracket.com/4g7o.jpg) - - [' + ~~Memosepia~~](https://img.animebracket.com/4gsq.jpg) - [' + **Wind**](https://img.animebracket.com/4gom.jpg) - - [' + ~~Tonari no Totoro~~](https://img.animebracket.com/4h1h.jpg) - [' + **Michishirube [ED 1]**](https://img.animebracket.com/4g70.jpg) - - [' + ~~Yuki ni Saku Hana [ED 2]~~](https://img.animebracket.com/4h45.jpg) - [' + **Spice [ED1]**](https://img.animebracket.com/4ghp.jpg) - - [' + ~~X Jigen e Youkoso~~](https://img.animebracket.com/4ghn.jpg) - [' + **Dango Daikazoku**](https://img.animebracket.com/4g6a.jpg) - - [' + ~~Chiisana Tenohira~~](https://img.animebracket.com/4g8c.jpg) - [' + **World-Line**](https://img.animebracket.com/4gqe.jpg) - - [' + ~~The Real Folk Blues~~](https://img.animebracket.com/4g8n.jpg) - [' + **Platinum Jet [ED2]**](https://img.animebracket.com/4h27.jpg) - - [' + ~~Escape [ED5]~~](https://img.animebracket.com/4ggp.jpg) - [' + **Just Awake [ED1]**](https://img.animebracket.com/4gds.jpg) - - [' + **Another colony [ED 1]**](https://img.animebracket.com/4h1c.jpg) - [' + ~~Hunting For Your Dream [ED2]~~](https://img.animebracket.com/4gfm.jpg) - - [' + ~~Minna no Peace~~](https://img.animebracket.com/4ggm.jpg) - [' + **Samurai Heart (Some Like It Hot!)**](https://img.animebracket.com/4geh.jpg) - - [' + **Yake Ochinai Tsubasa**](https://img.animebracket.com/4g7b.jpg) - [' + ~~Sky Clad no Kansokusha~~](https://img.animebracket.com/4h1y.jpg) - - [' + **Snow Halation**](https://img.animebracket.com/4gqt.jpg) - [' + ~~Vivace!~~](https://img.animebracket.com/4gci.jpg) - - [' + **Chiisana Boukensha [ED 1]**](https://img.animebracket.com/4gcr.jpg) - [' + ~~Thank You!!~~](https://img.animebracket.com/4h2e.jpg) - - [' + ~~Ref:rain~~](https://img.animebracket.com/4g68.jpg) - [' + **Last Train Home**](https://img.animebracket.com/4gd3.jpg) - - [' + ~~Life [ED5]~~](https://img.animebracket.com/4g5o.jpg) - [' + **Roundabout**](https://img.animebracket.com/4g7n.jpg) - - [' + ~~L.L.L.~~](https://img.animebracket.com/4g7z.jpg) - [' + **Startear [ED1]**](https://img.animebracket.com/4h46.jpg) - - [' + **Duet♡ShitekudaΨ [s2 2]**](https://img.animebracket.com/4gze.jpg) - [' + ~~believe [ED1]~~](https://img.animebracket.com/4gq6.jpg) - - [' + ~~Koukai no Uta [ED6]~~](https://img.animebracket.com/4gib.jpg) - [' + **Kamisama no Iutoori**](https://img.animebracket.com/4gcs.jpg) - - [' + ~~Name of Love [ED 5]~~](https://img.animebracket.com/4gy6.jpg) - [' + **You Only Live Once**](https://img.animebracket.com/4g5n.jpg) - - [' + ~~Sign~~](https://img.animebracket.com/4ggh.jpg) - [' + **Ring your bell [ED3]**](https://img.animebracket.com/4gs8.jpg) - - [' + **Vanilla Salt [ED1]**](https://img.animebracket.com/4gef.jpg) - [' + ~~Hitohira no Hanabira [ED17]~~](https://img.animebracket.com/4ger.jpg) - - [' + ~~CheerS~~](https://img.animebracket.com/4ghu.jpg) - [' + **Alumina**](https://img.animebracket.com/4g6j.jpg) - - [' + ~~Style [ED 2]~~](https://img.animebracket.com/4g9a.jpg) - [' + **Utsukushiki Zankoku na Sekai**](https://img.animebracket.com/4g8p.jpg) - - [' + **aLIEz [ED3]**](https://img.animebracket.com/4h4n.jpg) - [' + ~~Overfly~~](https://img.animebracket.com/4gpf.jpg) - - [' + ~~Kanade~~](https://img.animebracket.com/4gxu.jpg) - [' + **Fuyu Biyori**](https://img.animebracket.com/4g6c.jpg) - - [' + **Isekai Girls♡Talk**](https://img.animebracket.com/4gf6.jpg) - [' + ~~Inferno [ED1]~~](https://img.animebracket.com/4gyu.jpg) - - [' + ~~Kimagure Romantic [ED 1]~~](https://img.animebracket.com/4gw2.jpg) - [' + **Sugar Song to Bitter Step**](https://img.animebracket.com/4g7l.jpg) - - [' + ~~HYDRA [ED 1]~~](https://img.animebracket.com/4gfg.jpg) - [' + **Tutti!**](https://img.animebracket.com/4gpy.jpg) - - [' + **REASON [ED4]**](https://img.animebracket.com/4g66.jpg) - [' + ~~Whiteout~~](https://img.animebracket.com/4gel.jpg) - - [' + ~~Hallelujah☆Essaim~~](https://img.animebracket.com/4g90.jpg) - [' + **unlasting**](https://img.animebracket.com/4g5k.jpg) - - -*Animation and Music are weighed 70-30. A black screen with text will always lose to anything else. Insert Songs belong in the (hypothetical) best song contest, not best ED or OP, imo. Slideshows and Panning Shots will be deducted points always but a great song can save bad animation just as great animation can save a bad song.* - ------- - -QOTD: Probably **Turing Love** or **The Great Pretender**";False;False;;;;1610685098;;False;{};gjb87t9;False;t3_kxh4fx;False;False;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjb87t9/;1610776007;7;True;False;anime;t5_2qh22;;0;[]; -[];;;BurningFredrick;;MAL;[];;https://myanimelist.net/profile/BurningFredrick;dark;text;t2_74w5s;False;False;[];;">Spec - -That would strengthen the SOL aspect of the show, depending on how the next episode goes definitely see how that could be a theme of the show.";False;False;;;;1610685161;;False;{};gjb8bq8;False;t3_kxfx0n;False;True;t1_gjb6856;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjb8bq8/;1610776069;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BlackMan0704;;;[];;;;text;t2_4a4bhpnc;False;False;[];;For the mystery girl I thought it was his imagination hence him jumping in the water to wake himself up;False;False;;;;1610685266;;False;{};gjb8i1m;False;t3_kxepsc;False;False;t1_gja04cl;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb8i1m/;1610776171;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;False;[];;Thinking on what Haruka says upon entering the previews I do wonder...;False;False;;;;1610685294;;False;{};gjb8jp8;False;t3_kxfx0n;False;True;t1_gjb8bq8;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjb8jp8/;1610776199;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Psijic_Buffalo;;;[];;;;text;t2_4tu6j7ky;False;False;[];;It’s a long and if you’re gonna watch a long show it may as well be one other people have seen. At least that’s my excuse for never having watched it.;False;False;;;;1610685304;;False;{};gjb8kbs;False;t3_kxhv53;False;True;t3_kxhv53;/r/anime/comments/kxhv53/why_is_detective_conan_so_underrated/gjb8kbs/;1610776209;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jbanto17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/jbanto17;light;text;t2_fhuot;False;False;[];;"Yeah, I'm a huge proponent of animation in EDs, but sticking a scene from a show or movie at the end is lazy. - -Clannad and Re:Zero are especially guilty of this considering their relatively high seeds.";False;False;;;;1610685589;;False;{};gjb911x;False;t3_kxh4fx;False;True;t1_gjaq4ar;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjb911x/;1610776484;3;True;False;anime;t5_2qh22;;0;[]; -[];;;clay10mc;;;[];;;;text;t2_gsbea;False;False;[];;hai;False;False;;;;1610685836;;False;{};gjb9fqq;False;t3_kxepsc;False;False;t1_gj9xr38;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb9fqq/;1610776730;2;True;False;anime;t5_2qh22;;0;[]; -[];;;-NICHE-;;;[];;;;text;t2_42xdf0tc;False;False;[];;">Is there a chance that girl ends up being a completely different person!? That would be a crazy twist. - -[Obviously it's the secret sixth sister, Mutsumi.](https://i.imgur.com/GCdqvvf.png)";False;False;;;;1610685852;;False;{};gjb9gog;False;t3_kxepsc;False;True;t1_gja7j8h;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjb9gog/;1610776744;5;True;False;anime;t5_2qh22;;0;[]; -[];;;b0bba_Fett;;;[];;;;text;t2_12yifh;False;False;[];;Depends on the insert ending for me, in cases where the song seems like background music to a scene that happens to be at the end of an episode(*cough* Clannad *cough*) I definitely agree,but for say, Mob Psycho's Gray or especially Requiem of Silence, the song kinda *is* the scene, the cinematography is completely linked with the tempo and beat of the song, making the two virtually inseparable. Yeah you can't think of the song without the scene, but you also can't imagine the scene without the song. Or in Skyclad Observer's case, it's just a movie ED with very little visuals and the last scene of the episode is just a lead-in.;False;False;;;;1610685890;;False;{};gjb9iyf;False;t3_kxh4fx;False;False;t1_gjaxijn;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjb9iyf/;1610776781;3;True;False;anime;t5_2qh22;;0;[]; -[];;;clay10mc;;;[];;;;text;t2_gsbea;False;False;[];;If Wonder Egg maintains the quality of episode 1 through the whole season it will be an instant classic;False;False;;;;1610686040;;False;{};gjb9rpb;False;t3_kxd55a;False;True;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjb9rpb/;1610776921;2;True;False;anime;t5_2qh22;;0;[]; -[];;;satoukazumadesu-;;;[];;;;text;t2_3ohrjpev;False;False;[];;"Yeah Bell Cranel and Hestia! Oh wait wrong show - -But with that, I might go with Itsuki for Futarou, even though I'm a Miku fan way back season 1. - -But then again, I knew already who won :(";False;False;;;;1610686236;;False;{};gjba32r;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjba32r/;1610777112;1;True;False;anime;t5_2qh22;;0;[]; -[];;;limbo_2004;;;[];;;;text;t2_3c5fh2zj;False;False;[];;"MAL doesn't have any synopsis for it. Can you summarise the premise for me? - -Nvm found it on Anilist";False;False;;;;1610686390;;False;{};gjbac6h;False;t3_kxd55a;False;True;t1_gjas46r;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjbac6h/;1610777261;3;True;False;anime;t5_2qh22;;0;[]; -[];;;clay10mc;;;[];;;;text;t2_gsbea;False;False;[];;"If Dango Daikazoku doesn't win I will personally see to it that someone pays - -Real talk though Unlasting is an incredible song and Sugar Song to Bitter Step is a straight bop";False;False;;;;1610686468;;1610686808.0;{};gjbagq2;False;t3_kxh4fx;False;True;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjbagq2/;1610777333;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Iliansic;;;[];;;;text;t2_oaano;False;False;[];;">Are there any anime onlies that favor Nino? - -Just give them time to understand the bestgirlness that is Nino.";False;False;;;;1610686596;;False;{};gjbao4q;False;t3_kxepsc;False;False;t1_gj9wda0;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbao4q/;1610777451;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Redmon425;;;[];;;;text;t2_15ro6h;False;False;[];;Omg lol. What if that ended up being true with none of them realizing.;False;False;;;;1610686842;;False;{};gjbb1ym;False;t3_kxepsc;False;True;t1_gjb9gog;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbb1ym/;1610777675;1;True;False;anime;t5_2qh22;;0;[]; -[];;;48johnX;;;[];;;;text;t2_e0vf4wh;False;False;[];;[Kyoka Yuuki](https://twitter.com/kyoka_yuuki?s=21), not really known but she’s been doing a good job. She legit sounds like a mix of all 5 and had me fooled thinking it was one of the VAs for the Quints;False;False;;;;1610687079;;False;{};gjbbf9h;False;t3_kxepsc;False;False;t1_gjb4dfy;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbbf9h/;1610777882;5;True;False;anime;t5_2qh22;;0;[]; -[];;;sh14w4s3;;;[];;;;text;t2_784hz4ad;False;False;[];;Wonder egg priority looks and sounds absolutely and especially beautiful . Insane music , beautiful sound design , gorgeous art and animation, very pretty character body language and absolutely superb framing “camera work”;False;False;;;;1610687611;;False;{};gjbc8fg;False;t3_kxd55a;False;False;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjbc8fg/;1610778339;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Harpr33t-Singh;;;[];;;;text;t2_2xgwk401;False;False;[];;" ->I just realized, there's a continuity error that happens in this episode, Shinji wasn't wearing his plugsuit, he didn't have time to change into it, he was wearing his usual outfit. - -I don't think that's a continuity error. There's a scene in the episode where Maya is telling Misato this - ""His self image is psyedo substantiating his plug suit"". And we have already seen in this episode that whatever worth Shinji attaches to himself is from his work as an Eva pilot. He thinks the reason why everyone treats him well is because of this. So, in a way that plug suit is his identity which Shinji is projecting in the LCL.";False;False;;;;1610687883;;False;{};gjbcn0w;False;t3_kxfygp;False;False;t1_gja8o7m;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjbcn0w/;1610778567;4;True;False;anime;t5_2qh22;;0;[]; -[];;;qscdefb;;;[];;;;text;t2_2khgc8al;False;False;[];;In case no one noticed, the quints’ mom’s lines are from chapter 87, and is also her first lines in the anime. Although we’re not shown her voice actor, this addition does hint that season 2 will adapt all the way to chapter 90.;False;False;;;;1610688273;;False;{};gjbd7nf;False;t3_kxepsc;False;True;t1_gj9r2tr;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbd7nf/;1610778900;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Snowboy8;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_33bq9awf;False;False;[];;"The worst part is that I can't even watch half of them due to spoilers. - -I think that something like the Made in Abyss ED that won yesterday is within reason, but the clannad stuff is too much. Steins;Gate is another good example of being too much.";False;False;;;;1610688389;;False;{};gjbddqd;False;t3_kxh4fx;False;False;t1_gjb911x;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjbddqd/;1610779003;4;True;False;anime;t5_2qh22;;0;[]; -[];;;misterowen;;;[];;;;text;t2_8k58k;False;True;[];;This was needed after Higurashi this week. Cannot express how much this was needed.;False;False;;;;1610688514;;False;{};gjbdk6v;False;t3_kxepsc;False;True;t1_gja1u2d;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbdk6v/;1610779104;1;True;False;anime;t5_2qh22;;0;[]; -[];;;redshirtengineer;;null a-amq;[];;;dark;text;t2_30v9ef;False;False;[];;"First timer - -COWS - -CRAZY CAR CHASE - -NON CRAZY ATORI - -SCULLY SEES THE UFO - -COWS - -12/10 would watch again - -QOTD1: the craziest thing I've ever done while passenger in my car was several donuts on narrow city street. THANKS BRO - -QOTD2: Tobi show the man some love";False;False;;;;1610688517;;False;{};gjbdkbp;False;t3_kxfx0n;False;True;t3_kxfx0n;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjbdkbp/;1610779106;3;True;False;anime;t5_2qh22;;0;[]; -[];;;redshirtengineer;;null a-amq;[];;;dark;text;t2_30v9ef;False;False;[];;EXACTLY. Tobi, show Atori some love;False;False;;;;1610688581;;False;{};gjbdnpk;False;t3_kxfx0n;False;True;t1_gj9zyec;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjbdnpk/;1610779164;2;True;False;anime;t5_2qh22;;0;[]; -[];;;joe4553;;MAL;[];;https://myanimelist.net/animelist/EmiyaRin;dark;text;t2_nujxw;False;False;[];;She invited a guy up to her hotel room...;False;False;;;;1610688749;;False;{};gjbdwfc;False;t3_kxepsc;False;True;t1_gj9wfmx;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbdwfc/;1610779305;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610688855;;1610689043.0;{};gjbe1th;False;t3_kxepsc;False;True;t1_gjayj83;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbe1th/;1610779396;1;True;False;anime;t5_2qh22;;0;[]; -[];;;redshirtengineer;;null a-amq;[];;;dark;text;t2_30v9ef;False;False;[];;Thanks, I wondered about the Russian thing too but was less ambitious;False;False;;;;1610688870;;False;{};gjbe2kd;False;t3_kxfx0n;False;True;t1_gja08a1;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjbe2kd/;1610779408;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rybackmonster;;;[];;;;text;t2_166ov7;False;False;[];;Itsuki won me over in this episode. She is up there with Miku as my favorites;False;False;;;;1610688898;;False;{};gjbe40j;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbe40j/;1610779429;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bosseffs;;MAL;[];;http://myanimelist.net/profile/Zynapse;dark;text;t2_6pa52;False;False;[];;"My take on Nino since way back was confirmed today. - -I knew she was a real softie and really sensitive kind of girl. - -She using a facade as protection since she's afraid to ge hurt, this actually includes her sisters. - -So when Fuutarou sudddenly appeared in her life and one by one all her sisters started to accept him. She was pretty much put up against the wall and felt alone since her sisters had ""chosen"" Fuutarou.";False;False;;;;1610689036;;False;{};gjbeb5e;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbeb5e/;1610779538;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KinoHiroshino;;;[];;;;text;t2_6x5tw;False;False;[];;To add to this, when Nino started up the stairs, Fuutaro tried to stop her by saying, and I’m gonna paraphrase since I don’t remember the *exact* words, “You’re falling behind your sisters, you need to catch up.” As the most sensitive sister, shit like this will totally mess with her head and might make her feel self-conscious or inferior.;False;False;;;;1610689512;;False;{};gjbezmz;False;t3_kxepsc;False;False;t1_gja1h2f;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbezmz/;1610779912;28;True;False;anime;t5_2qh22;;0;[]; -[];;;sad_historian;;;[];;;;text;t2_179bbndg;False;False;[];;Just wanted to let you know you're not alone, not drinking the manga Nino kool-aid either.;False;False;;;;1610689543;;False;{};gjbf17w;False;t3_kxepsc;False;True;t1_gjaj4t2;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbf17w/;1610779936;1;True;False;anime;t5_2qh22;;0;[]; -[];;;echykr4;;;[];;;;text;t2_k4xht;False;False;[];;"While Nino's sensitivity meant she was more ""bitchy"" than usual, Miki is also partly to blame for adding fuel to the fire with her not being able to help herself with her constant snipes at Nino. But who would have thought it was ultimately Itsuki that triggered the inevitable explosion? O.o - -Why am I not surprised that Itsuki decides to find refuge in Futaro's place? Raiha makes good food, after all. XD - -Though its amazing Futaro didn't run into her until he came back, meaning she only arrived sometime in the afternoon after realising she didn't had her wallet with her and was too stubborn to return home. - -WTF with Futaro seeing that elusive girl from his past? Was it all a vision as he jumped into the pond in a half-assed attempt at ""suicide"" in order to unite the quints?";False;False;;;;1610689548;;False;{};gjbf1f6;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbf1f6/;1610779939;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Eldotrawi;;;[];;;;text;t2_72qaujj;False;False;[];;"FYI the guy who wrote the Netflix script for Eva is far right and thus apparently felt the need to turn just ""terrorists"" into ""leftist terrorists""...";False;False;;;;1610689632;;False;{};gjbf5sy;False;t3_kxfygp;False;False;t1_gja8jv1;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjbf5sy/;1610780007;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mannie_T;;;[];;;;text;t2_s8bu7;False;False;[];;Check out My Love Story (Ore Monogatari);False;False;;;;1610689879;;False;{};gjbfifs;False;t3_kxgv7y;False;True;t3_kxgv7y;/r/anime/comments/kxgv7y/looking_for_recommendations_for_romance_anime/gjbfifs/;1610780203;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;Sharing so everyone can enjoy: [Yozora](https://youtu.be/flRXKF_hMhQ);False;False;;;;1610690241;;False;{};gjbg0dj;False;t3_kxh4fx;False;True;t1_gjaizo5;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjbg0dj/;1610780476;3;True;False;anime;t5_2qh22;;0;[]; -[];;;orbitalswft;;;[];;;;text;t2_udtzs0;False;False;[];;Wait until she gets her development;False;False;;;;1610690256;;False;{};gjbg161;False;t3_kxepsc;False;False;t1_gjb5qb7;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbg161/;1610780489;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Shortstop88;;;[];;;;text;t2_b6ar6;False;False;[];;As someone who read the manga and caught up right after this arc, I had forgotten how much I loved many of the moments in it. This episode kept reminding me of later moments in the arc and my hype for the next bunch of episodes kept increasing. I'm loving this season!;False;False;;;;1610690314;;False;{};gjbg41v;False;t3_kxepsc;False;True;t1_gj9xo4f;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbg41v/;1610780533;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shortstop88;;;[];;;;text;t2_b6ar6;False;False;[];;In the manga's english translations, I remember it appearing the same way as in the subtitles of this episode. No idea what the original japanese looked like in the manga, though.;False;False;;;;1610690428;;False;{};gjbg9s7;False;t3_kxepsc;False;True;t1_gja1jc2;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbg9s7/;1610780621;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shortstop88;;;[];;;;text;t2_b6ar6;False;False;[];;"> Poor Futaro...considers hurting himself if it means bringing the sisters together, only to then realize that it probably wouldn't actually accomplish that. - -My favorite part about that scene was that it played out like the meme that goes along the lines of: - -""Why don't you come up to bed with me.... jk jk.... haha, unless?""";False;False;;;;1610690636;;False;{};gjbgkbj;False;t3_kxepsc;False;True;t1_gj9vym0;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbgkbj/;1610780780;3;True;False;anime;t5_2qh22;;0;[]; -[];;;orbitalswft;;;[];;;;text;t2_udtzs0;False;False;[];;Anyone know if the anime is gonna have an original ending? Manga ending hurt me on the inside.;False;False;;;;1610690682;;False;{};gjbgmhq;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbgmhq/;1610780814;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeralyos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Zeralyos;light;text;t2_dphmj32;False;False;[];;It's 59th seed, we're only seeing a quarter of the bracket in voting today.;False;False;;;;1610690801;;False;{};gjbgs9v;False;t3_kxh4fx;False;True;t1_gjb7em3;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjbgs9v/;1610780905;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkMorford;;MAL;[];;http://myanimelist.net/profile/DarkMorford;dark;text;t2_4mu9m;False;False;[];;Manga reader here, Miku still Best Girl.;False;False;;;;1610690936;;False;{};gjbgywh;False;t3_kxepsc;False;False;t1_gj9xr38;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbgywh/;1610781007;4;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkMorford;;MAL;[];;http://myanimelist.net/profile/DarkMorford;dark;text;t2_4mu9m;False;False;[];;"> don't even bother try to check her VA. It's a completely different one in the credits. - -Not only is Mystery Quint not one of the main five, she's almost entirely unheard-of! The most I could track down for her (Kyouka Yuuki, 京花優希) was a couple of bit parts so minor they didn't even get a listing on MAL or ANN, and a handful of voices in mobile card and gacha games. - -I like what we've heard from her in these first two episodes, and who knows? Maybe this could be her big break.";False;False;;;;1610691412;;False;{};gjbhlsa;False;t3_kxepsc;False;False;t1_gja04cl;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbhlsa/;1610781356;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Chiefmusician;;;[];;;;text;t2_y28yb;False;False;[];;You'll see it for yourself, I can guarantee on that :);False;False;;;;1610691537;;False;{};gjbhrro;False;t3_kxepsc;False;True;t1_gjajbpv;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbhrro/;1610781446;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkMorford;;MAL;[];;http://myanimelist.net/profile/DarkMorford;dark;text;t2_4mu9m;False;False;[];;Quints and Yurucamp are going to make the next couple months' worth of Thursdays *so* much more tolerable.;False;False;;;;1610691670;;False;{};gjbhy0s;False;t3_kxepsc;False;True;t1_gj9xbc6;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbhy0s/;1610781543;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;Unfortunately tpn is being rushed to death but not clover works fault 🤷 they didn't decide the épisode count.;False;False;;;;1610692047;;False;{};gjbifmu;False;t3_kxd55a;False;False;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjbifmu/;1610781811;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Lcernosek7;;;[];;;;text;t2_dnhuw4m;False;False;[];;How is it not top 50 at least? That’s a fuckin war crime right there.;False;False;;;;1610692059;;False;{};gjbig60;False;t3_kxh4fx;False;True;t1_gjacmp2;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjbig60/;1610781820;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chewthepie_;;;[];;;;text;t2_5ggldj14;False;False;[];;Mappa and Cloverworks deserves all the praise;False;False;;;;1610692065;;False;{};gjbigfy;False;t3_kxd55a;False;True;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjbigfy/;1610781825;2;True;False;anime;t5_2qh22;;0;[];True -[];;;thicccduccc;;;[];;;;text;t2_5a57mf33;False;False;[];;I feel like the pacing is pretty good so far, but it might be different in the manga so idk;False;False;;;;1610692116;;False;{};gjbiiqm;True;t3_kxd55a;False;True;t1_gjbifmu;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjbiiqm/;1610781860;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;Another \[redacted\] who doesn't know how demographics work. Do some research dude.;False;False;;;;1610692226;;False;{};gjbinr4;False;t3_kxd55a;False;True;t1_gjaibwj;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjbinr4/;1610781937;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gulitiasinjurai;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;eh nandake?;light;text;t2_1591dz;False;False;[];;That's a lotta of skipped content;False;False;;;;1610692270;;False;{};gjbipqw;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbipqw/;1610781967;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Alpha_Whiskey_Golf;;;[];;;;text;t2_5q4xn8p5;False;False;[];;Kokono best girl.;False;False;;;;1610692290;;False;{};gjbiqop;False;t3_kxepsc;False;True;t1_gja1qbj;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbiqop/;1610781981;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zama5000;;;[];;;;text;t2_g8pcm;False;False;[];;It looks pretty cool! Keep up the nice work!!;False;False;;;;1610692337;;False;{};gjbisrw;False;t3_kxhwh0;False;True;t3_kxhwh0;/r/anime/comments/kxhwh0/jujutsu_kaisen_fanart_by_me_took_about_3_days/gjbisrw/;1610782014;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Eames11;;;[];;;;text;t2_noi1y;False;False;[];;I see. Thanks a lot!;False;False;;;;1610692463;;False;{};gjbiyhd;False;t3_kxepsc;False;True;t1_gjbbf9h;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbiyhd/;1610782101;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mehulex;;;[];;;;text;t2_6az6u64p;False;False;[];;No they're rushing horribly, we're doing Tokyo ghoul re levels of pacing. Ep 1 was 8 chapters;False;False;;;;1610692631;;False;{};gjbj64f;False;t3_kxd55a;False;True;t1_gjbiiqm;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjbj64f/;1610782219;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thicccduccc;;;[];;;;text;t2_5a57mf33;False;False;[];;Wow I didn’t realize that. I heard tons of people complaining that episode 1 of Horimiya felt rushed and that adapted 2 chapters 😅;False;False;;;;1610692835;;False;{};gjbjfbx;True;t3_kxd55a;False;True;t1_gjbj64f;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjbjfbx/;1610782367;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LorisK4rius;;;[];;;;text;t2_4xei272v;False;False;[];;I only watch the anime and not read the manga, but I can’t stand Nino at all. I know she is really liked by manga readers , so I REALLY hope she gets better this season .;False;False;;;;1610693262;;False;{};gjbjy8j;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbjy8j/;1610782653;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cojoB_;;;[];;;;text;t2_27b35u6d;False;False;[];;Shame this didn't make it to netflix. Besides being just kinda crazy in context with the series, it's super unsettling to me still;False;False;;;;1610693274;;False;{};gjbjyqo;False;t3_kxfygp;False;True;t1_gjaqr28;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjbjyqo/;1610782662;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PraisePace;;;[];;;;text;t2_cnjfazl;False;False;[];;"I figured that something like what you mentioned in your first point would have to be the case. -Obviously a show that runs an entire year is going to end up looking worse than a seasonal one. However, even in comparison to previous seasons of Fairy Tail, the animation for that part of the story was basically nonexistent.";False;False;;;;1610693285;;False;{};gjbjz8v;False;t3_kxd55a;False;True;t1_gjafu5u;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjbjz8v/;1610782669;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hunter14567;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ExtremeAbsol21;light;text;t2_r4nyq;False;False;[];;"Man, it's been a minute since one of these really had me struggling to choose, but picking between Hunting For Your Dream and Another Colony was TOUGH. - -I can answer the QOTD for once! Lost in Paradise from JJK, easily. - -Hell, it became my favorite ED in general";False;False;;;;1610693479;;False;{};gjbk7oa;False;t3_kxh4fx;False;True;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjbk7oa/;1610782797;1;True;False;anime;t5_2qh22;;0;[]; -[];;;unHolyKnightofBihar;;;[];;;;text;t2_9a23lkt;False;False;[];;I played Persons 4 Golden recently. Where was this?;False;False;;;;1610693691;;False;{};gjbkgqq;False;t3_kxepsc;False;True;t1_gja5ilk;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbkgqq/;1610782941;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lyracarina;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Lyracarina;light;text;t2_49pmfkt;False;False;[];;"For today my favorites are - -[Stand by Me ](https://youtu.be/UWY2y4D1Qks) - -[Kamisama no Iu Toori](https://youtu.be/-IcFDwygw-o) - - -RIP Dare ka Umi wo and Silent Solitude :( - - -My favorites from 2020: - --Yashahime: Break from Uru - --Heaven's Feel III: Haru wa Yuku from Aimer - --Akudama Drive: Ready from Urashimasakatasen";False;False;;;;1610694078;;False;{};gjbkxbv;False;t3_kxh4fx;False;False;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjbkxbv/;1610783194;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MWU123;;;[];;;;text;t2_56tr65u6;False;False;[];;Ya but Miku is still like half the Gotoubun Fandom, even after the Nino development.;False;False;;;;1610694190;;False;{};gjbl201;False;t3_kxepsc;False;True;t1_gjaaz2v;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbl201/;1610783263;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DDDwhy;;;[];;;;text;t2_kpasd2;False;False;[];;Well, because anime of course;False;False;;;;1610694228;;False;{};gjbl3js;False;t3_kxh52v;False;True;t3_kxh52v;/r/anime/comments/kxh52v/bnha_season_4_episode_21_is_there_any_offical/gjbl3js/;1610783286;0;True;False;anime;t5_2qh22;;0;[]; -[];;;KlooKloo;;;[];;;;text;t2_6xd5w;False;False;[];;"Episodes 21-24 are director's cuts that went back and lengthened and improved tons of animation after the success of the show. Episode 22 was almost *entirely* re-animated, as well. - -Don't worry about the next few episodes, directorial choices will be entirely deliberate (even though some things initially came about because of production issues, they worked so well they were kept).";False;False;;;;1610694285;;False;{};gjbl5z8;False;t3_kxfygp;False;True;t1_gjael29;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjbl5z8/;1610783321;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Klazarkun;;;[];;;;text;t2_172tzq;False;False;[];;you are. welcome to the trip kind sir. the ending will be quite full of surprises, but it feels really great.;False;False;;;;1610694716;;False;{};gjblndi;False;t3_kxepsc;False;True;t1_gj9wi9a;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjblndi/;1610783584;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Klazarkun;;;[];;;;text;t2_172tzq;False;False;[];;i see you are a man of culture as well;False;False;;;;1610694819;;False;{};gjblrjp;False;t3_kxepsc;False;True;t1_gj9xo4f;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjblrjp/;1610783646;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EverChangingUnicorn;;;[];;;;text;t2_3dcfqg6w;False;False;[];;"He definitely does, he was considering throwing himself into the river to make them care to study after all. -But I still think it's admirable that he was able to brush past that and get to the larger issue of Nino's stubbornness. And he's extremely patient with her, I'm not sure how much longer he can take.";False;False;;;;1610695096;;False;{};gjbm2td;False;t3_kxepsc;False;False;t1_gjaurkg;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbm2td/;1610783821;17;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimusFoster748;;;[];;;;text;t2_5abf6xo9;False;False;[];;The best way to simply describe how Nino comes across is as a brat imo.;False;False;;;;1610695231;;False;{};gjbm86r;False;t3_kxepsc;False;False;t1_gjajbpv;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbm86r/;1610783902;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Irru;;;[];;;;text;t2_5so5d;False;False;[];;Well, seeing how a VN was announced, it wouldn’t surprise me.;False;False;;;;1610695384;;False;{};gjbme7w;False;t3_kxepsc;False;False;t1_gja8wul;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbme7w/;1610783991;4;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;Oh dang, now that I think of it, that probably explains quite a bit now, doesn't it?;False;False;;;;1610695566;;False;{};gjbml6j;False;t3_kxepsc;False;False;t1_gjbezmz;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbml6j/;1610784098;6;True;False;anime;t5_2qh22;;0;[]; -[];;;CelesteRed;;;[];;;;text;t2_461p0jql;False;False;[];;">How about a break between the series end and EoE as well - -I thought those two would fit together fine but now that you mention it the break would be nice, I'll revise it.";False;False;;;;1610695647;;False;{};gjbmofa;True;t3_kxfygp;False;True;t1_gja8jv1;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjbmofa/;1610784146;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KinoHiroshino;;;[];;;;text;t2_6x5tw;False;False;[];;Have you ever been called out like that in public or in front of people you care about? Shit sucks, man.;False;False;;;;1610695854;;False;{};gjbmwnc;False;t3_kxepsc;False;False;t1_gjbml6j;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbmwnc/;1610784269;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Yours_Truly_Asshole;;;[];;;;text;t2_9tuoqbku;False;False;[];;[https://i.imgur.com/z4JozX2.jpg](https://i.imgur.com/z4JozX2.jpg);False;True;;comment score below threshold;;1610696028;;False;{};gjbn3hs;False;t3_kxd55a;False;True;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjbn3hs/;1610784369;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;CuriousFunction;;;[];;;;text;t2_6n3v3my3;False;False;[];;Pressing the shit outta that subscribe button;False;False;;;;1610696074;;False;{};gjbn5bv;False;t3_kxepsc;False;True;t1_gjabsaq;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbn5bv/;1610784397;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lazylonewolf;;;[];;;;text;t2_1rg1r57x;False;False;[];;Season 2 of why I hate Nino. Well-deserved slap! Wish they threw a couple more!;False;False;;;;1610696118;;False;{};gjbn71h;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbn71h/;1610784423;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610696539;;False;{};gjbnnfr;False;t3_kxepsc;False;True;t1_gjb27ed;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbnnfr/;1610784669;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Isai579;;MAL;[];;http://myanimelist.net/animelist/Isai579;dark;text;t2_mg0km;False;False;[];;"**First Timer** - -Well... At least the emotional trauma was kept on the low end in this episode ^(compared to the previous rollercoaster of emotions that were the previous chapters) - -Something I found very interesting regarding this episode is how it uses some of the techniques normally used to keep the budget low (repeated animations, still frames, and only animating certain elements to give the sense of motion) in very creative ways. All of this, along with the editing and voice acting, manage to make the episode more emotional than some of the episodes with better animation. Of course, some scenes would definitely work better without these limitations, but overall I think the result was pretty good. - -We got many revelations / confirmations regarding the Eva. So they are like a derivate between Angels and humans, using Adam as a base, and were created by Ritsuko (according to Misato, but maybe she doesn't know everything). The merging of the pilot with their Eva does result in the pilot being lost, and although Shinji was rescued in this episode, it seems there was a failed attempt to do so in the past. [Evangelion speculation](/s ""My guess would be this attempt was Shinjis' mother when they put her consciousness in the Eva 01 and that is why there was no body when she died."") I did like that there was no simple *ok, now let's get him out* but that it actually took months of work (and more than half the episode), and they almost failed. - -And meanwhile, the Eva was basically *seducing* Shinji into merging with it. ^(feels weird using that word, but that's what it felt like) Shinji was almost convinced to do so, but at the last moment he didn't, which resulted in his body reappearing. - -We saw very little from both Rei (who is still alive fortunately) and Asuka, who seems pretty devastated by Shinji disappearing (she claims it's his fault, but I'm pretty sure she's just trying to not admit she cares about Shinji). - -Regarding Rei, the plot thickens. So if Gendo was going to name a possible daughter Rei, then there are only a couple of options regarding their relationship: [Evangelion speculation](/s ""either she is a daughter that was kept secret for a reason (affair or the classic twins separated at birth), or we have to delve into more sci-fi themes (parallel dimensions, cloning, artificial human). Or maybe she just reminds Gendo of the child he never had because Shinji ran away. Nah... to sentimental for him""). - -I wonder what Kaji meant as his *last gift*. It looked like a pill, but I have no idea what it could actually be, and what that means. - -*** - -*Question of the day* - -Misato and Kaji have a lot of history together, obviously not all of it is good. They seem to understand each other a lot, but at the same time some parts of their personalities are very incompatible. That last scene could be interpreted as Misato going to the only person that actually understands her. But at the same time it gives me the impression that Misato is trying to get more information from Kaji, as he is the only one who has *seemingly* told her the truth about NERV. - -*** - -*In the next episode...* - -I love that his preview was pure voiceover and text with 0 images. Makes the imagination run wild without spoiling anything. - -[Evangelion speculation](/s ""From the ascending dates that were shown, my guess is that the kidnapping is an excuse for them to do a flashback episode where we will learn some of the secrets about NERV, the MAGI, and the Evas."") - -*** - -> Since 3.0+1.0 unfortunately got postponed... again, I figured I'd change the schedule a bit to make everything more digestible - -For a moment, I was worried you were going to extend the wait between episodes. But I like having more time to digest the movies. Don't worry... If they keep postponing the release, there'll be another chance for a rewatch that ends on the day the movie comes out. *Just kidding* ^(I hope) - -One last thing... Those shots with the Eva in ""bandages"" are pure nightmare fuel.";False;False;;;;1610697273;;False;{};gjbogbi;False;t3_kxfygp;False;False;t3_kxfygp;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjbogbi/;1610785096;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MexicansInParis;;;[];;;;text;t2_152x0d;False;False;[];;I wonder. She immediately realized he had stayed up working for them, she then noticed everything was hand-written, got mad at her sister for disrespecting him, refused to let it go, so much that she ran away, almost immediately she landed in his house and chose to stay there, and the whole “forgetting” to ask for her wallet back dealio seemed suspicious.;False;False;;;;1610697429;;False;{};gjbom9h;False;t3_kxepsc;False;False;t1_gja0b3v;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbom9h/;1610785187;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sharafi04;;;[];;;;text;t2_4949iljy;False;False;[];;"Which chapter is the [Spoiler](/s ""babysitting"") one?";False;False;;;;1610697586;;False;{};gjbosbi;False;t3_kxepsc;False;True;t1_gja9m75;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbosbi/;1610785281;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jagadrata;;;[];;;;text;t2_16k4z6;False;False;[];;Cloverworks doing god works;False;False;;;;1610697587;;False;{};gjboscy;False;t3_kxd55a;False;True;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjboscy/;1610785282;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Isai579;;MAL;[];;http://myanimelist.net/animelist/Isai579;dark;text;t2_mg0km;False;False;[];;"> NERV managed to capture and restrain Unit 01 (HOW!?) - -My guess is that they actually didn't do either. The Eva shut down after eating the angel, and they just moved it to where it could be monitored. Probably why it was very risky, if it activated again there would probably be no way to contain it.";False;False;;;;1610697651;;False;{};gjboutj;False;t3_kxfygp;False;True;t1_gja6i7j;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjboutj/;1610785319;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WobbleKun;;;[];;;;text;t2_12ag0r;False;False;[];;who was this rena again? itsuki?;False;False;;;;1610697672;;False;{};gjbovnu;False;t3_kxepsc;False;True;t1_gj9r2tr;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbovnu/;1610785333;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MexicansInParis;;;[];;;;text;t2_152x0d;False;False;[];;"I think it’s one of these following scenarios with the mystery girl. - -1. It was an hallucination by our exhausted and defeated MC. - -2. It was Itsuki dressed up to lift his spirits. - -3. It was the real deal, probably one of the girls caught on after last week’s “did any of you know me before?” moment.";False;False;;;;1610697681;;False;{};gjbovz8;False;t3_kxepsc;False;True;t1_gj9vym0;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbovz8/;1610785338;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sisoko2;;;[];;;;text;t2_6f6px6b;False;False;[];;I am big progressive rock fan and Roundabout is by far my favorite song here but voting for it in a ED contest feels wrong.;False;False;;;;1610697768;;False;{};gjboz9s;False;t3_kxh4fx;False;True;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjboz9s/;1610785390;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Degenerate-Sama;;;[];;;;text;t2_8dx3sg9i;False;False;[];;I mean while Ep1 covered 7ish chapters the stuff they cut was not very important , and even that aside they adapted 4 chapters in Ep2 , which was good pacing.;False;False;;;;1610697842;;False;{};gjbp1z7;False;t3_kxd55a;False;False;t1_gjbifmu;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjbp1z7/;1610785430;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ExtensionSea5002;;;[];;;;text;t2_71pywsy3;False;False;[];;Take that CG crowd out and its 10/10.;False;False;;;;1610698024;;False;{};gjbp8tc;False;t3_kxepsc;False;False;t1_gjav6ck;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbp8tc/;1610785539;7;True;False;anime;t5_2qh22;;0;[]; -[];;;tanookiben;;;[];;;;text;t2_ivo0z;False;False;[];;Well that escalated quickly;False;False;;;;1610698301;;False;{};gjbpj70;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbpj70/;1610785695;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SIDS_Bop;;;[];;;;text;t2_wyir7;False;False;[];;"Manga reader, but I joined the Nino gang on the ground floor, so maybe my perspective counts? - -From the start, I thought she seemed determined/desperate to protect her family dynamic, so I sympathized and admired her. In retrospect, I probably forgave more than I should have (roofies!), but thinking she did everything for her sisters made most bad behavior seem justified or even admirable.";False;False;;;;1610698349;;False;{};gjbpkzm;False;t3_kxepsc;False;False;t1_gj9wda0;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbpkzm/;1610785724;4;True;False;anime;t5_2qh22;;0;[]; -[];;;vizfadz;;;[];;;;text;t2_2hvnqpuj;False;True;[];;You'll see when the train starts to puff;False;False;;;;1610698349;;False;{};gjbpkzx;False;t3_kxepsc;False;False;t1_gjb5qb7;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbpkzx/;1610785724;16;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610698414;;False;{};gjbpnhx;False;t3_kxepsc;False;True;t1_gjbovnu;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbpnhx/;1610785762;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotAMoron2;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/SudoSen;dark;text;t2_2l3p4ut;False;False;[];;"Yeah seriously - -As a fan of original series, I am extremely *happy*";False;False;;;;1610698529;;False;{};gjbpru7;False;t3_kxepsc;False;True;t1_gjadr46;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbpru7/;1610785828;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BenDTU;;;[];;;;text;t2_mbfrs;False;False;[];;38.;False;False;;;;1610698673;;False;{};gjbpxc2;False;t3_kxepsc;False;True;t1_gjbosbi;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbpxc2/;1610785912;2;True;False;anime;t5_2qh22;;0;[]; -[];;;zsmg;;;[];;;;text;t2_ivuw5;False;False;[];;"**Rewatchter** - -Huh was there always a pilot in the White Base and I simply didn't notice him before. Or did he just randomly appear for the first in this episode?";False;False;;;;1610698697;;False;{};gjbpy79;False;t3_kxfygp;False;True;t3_kxfygp;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjbpy79/;1610785924;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Braquiador;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/braquiador;light;text;t2_omkwy;False;False;[];;The director is an ex-kyoani and the director of Free.;False;False;;;;1610698965;;False;{};gjbq87n;False;t3_kxd55a;False;True;t1_gja9e77;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjbq87n/;1610786072;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YuriAddict7;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/R1seKujikawa/;light;text;t2_3zn8celm;False;False;[];;"ok somone remind me, but that girl fuu saw on the pier is [manga](/s ""itsuki"") - -being told by [manga](/s ""yotsuba"") - -to [manga](/s ""dress up as rena"") right?";False;False;;;;1610699032;;False;{};gjbqatz;False;t3_kxepsc;False;True;t1_gj9r2tr;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbqatz/;1610786110;2;True;False;anime;t5_2qh22;;0;[]; -[];;;YuriAddict7;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/R1seKujikawa/;light;text;t2_3zn8celm;False;False;[];;this is 100% getting full adaptation. its way too popular;False;False;;;;1610699101;;False;{};gjbqdda;False;t3_kxepsc;False;True;t1_gjafion;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbqdda/;1610786148;3;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;Dammit, I feel awful if I get called out when I'm by myself. In front of others though...sheesh.;False;False;;;;1610699242;;False;{};gjbqimr;False;t3_kxepsc;False;True;t1_gjbmwnc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbqimr/;1610786227;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TaqPCR;;;[];;;;text;t2_3jynpl5m;False;False;[];;It's 36th vs 221st. I don't think you need to worry until round 3 when it faces Michishirube and even then I expect it will win despite its seed.;False;False;;;;1610699859;;False;{};gjbr5iu;False;t3_kxh4fx;False;True;t1_gjbagq2;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjbr5iu/;1610786564;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HydraTower;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_pbpmb;False;False;[];;CG crowd ain't gonna keep me down.;False;False;;;;1610699926;;False;{};gjbr7z5;False;t3_kxepsc;False;False;t1_gjbp8tc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbr7z5/;1610786599;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Atonomic69;;;[];;;;text;t2_2mljfnkt;False;False;[];;i actually didnt notice it lol it isnt that bad;False;False;;;;1610699958;;False;{};gjbr921;False;t3_kxepsc;False;False;t1_gjbp8tc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbr921/;1610786614;6;True;False;anime;t5_2qh22;;0;[]; -[];;;JustCallMeAndrew;;MAL;[];;http://myanimelist.net/profile/WhisperBit;dark;text;t2_gc569;False;False;[];;One of those classroom trivias that raise your INT or Expression;False;False;;;;1610700357;;False;{};gjbrncb;False;t3_kxepsc;False;True;t1_gjbkgqq;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbrncb/;1610786830;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SMRchdon075;;;[];;;;text;t2_76awkk6i;False;False;[];;Sad thing is that their looks got Nerfed...badly;False;False;;;;1610700436;;False;{};gjbrq6v;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbrq6v/;1610786874;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;SonAnka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SonAnka;light;text;t2_4bv8n52s;False;False;[];;?;False;False;;;;1610700732;;False;{};gjbs0pw;False;t3_kxh52v;False;False;t1_gjbl3js;/r/anime/comments/kxh52v/bnha_season_4_episode_21_is_there_any_offical/gjbs0pw/;1610787031;0;True;False;anime;t5_2qh22;;0;[]; -[];;;DDDwhy;;;[];;;;text;t2_kpasd2;False;False;[];;physics of fictional stories always makes sense, no questions asked and no exceptions;False;False;;;;1610700777;;False;{};gjbs2a7;False;t3_kxh52v;False;False;t1_gjbs0pw;/r/anime/comments/kxh52v/bnha_season_4_episode_21_is_there_any_offical/gjbs2a7/;1610787055;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SingleStarHunter;;;[];;;;text;t2_4d2ewkv1;False;False;[];;What are some of the notable ones except the sequels?;False;False;;;;1610700853;;False;{};gjbs4wh;False;t3_kxd55a;False;True;t1_gja1grc;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjbs4wh/;1610787096;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SonAnka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SonAnka;light;text;t2_4bv8n52s;False;False;[];;You should quit thinking and commenting about theese things.;False;False;;;;1610700883;;False;{};gjbs62p;False;t3_kxh52v;False;True;t1_gjbs2a7;/r/anime/comments/kxh52v/bnha_season_4_episode_21_is_there_any_offical/gjbs62p/;1610787114;0;True;False;anime;t5_2qh22;;0;[]; -[];;;HotAir815;;;[];;;;text;t2_3hmijf6f;False;False;[];;Wonder Egg Priority!;False;False;;;;1610701217;;False;{};gjbsieo;False;t3_kxd55a;False;False;t1_gjbs4wh;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjbsieo/;1610787300;9;True;False;anime;t5_2qh22;;0;[]; -[];;;richdoughnutOG;;;[];;;;text;t2_4icy5ow;False;False;[];;thanks i added it;False;False;;;;1610701337;;False;{};gjbsmpu;False;t3_kxepsc;False;True;t1_gjav7d7;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbsmpu/;1610787365;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BEaSTPadwal15;;;[];;;;text;t2_41qorqg6;False;False;[];;You apparently didn't check my profile which says I'm part of that subreddit. Wasn't what I was asking.;False;False;;;;1610701710;;False;{};gjbt00f;False;t3_kxe60t;False;True;t1_gj9nj9n;/r/anime/comments/kxe60t/any_communities_that_dont_hate_sao/gjbt00f/;1610787561;0;True;False;anime;t5_2qh22;;0;[]; -[];;;qscdefb;;;[];;;;text;t2_2khgc8al;False;False;[];;That girl is voiced by a different voice actress (Kyouka Yuuki), so the voice isn’t reliable at all.;False;False;;;;1610701737;;False;{};gjbt10l;False;t3_kxepsc;False;True;t1_gjb0dur;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbt10l/;1610787576;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BEaSTPadwal15;;;[];;;;text;t2_41qorqg6;False;False;[];;Well, you cared enough to reply lol. Google will only take me to the SAO subreddit, which I'm a part of. Doesn't answer my question.;False;False;;;;1610701916;;False;{};gjbt7gv;False;t3_kxe60t;False;True;t1_gj9n3vu;/r/anime/comments/kxe60t/any_communities_that_dont_hate_sao/gjbt7gv/;1610787676;0;True;False;anime;t5_2qh22;;0;[]; -[];;;hkmiadli;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_6dgg9pvc;False;False;[];;"oh, really? well, I'm ambiguously thought it's Sakura Ayane because I don't recognize her voice as the other VA. never thought they will took this kind of counter measure to prevent leak. - -thanks for the info btw and how did you know her va?";False;False;;;;1610702261;;False;{};gjbtjwn;False;t3_kxepsc;False;True;t1_gjbt10l;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbtjwn/;1610787866;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;Demon king had a tsundere for about half an episode;False;False;;;;1610702506;;False;{};gjbtsnb;False;t3_kxepsc;False;False;t1_gja18rd;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbtsnb/;1610788001;15;True;False;anime;t5_2qh22;;0;[]; -[];;;ThrowCarp;;;[];;;;text;t2_79cxz;False;False;[];;"""All the media's saying Nino, Itsuki, Fuutaro. I just wanna help the Track Field for God's sake!"" - --Yotsuba this episode.";False;False;;;;1610702555;;False;{};gjbtucy;False;t3_kxepsc;False;True;t1_gja15o8;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbtucy/;1610788028;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ThrowCarp;;;[];;;;text;t2_79cxz;False;False;[];;lmao no the fuck she isn't with that huge tantrum.;False;False;;;;1610702623;;False;{};gjbtwqk;False;t3_kxepsc;False;True;t1_gja138t;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbtwqk/;1610788064;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;Cloverworks definitely had a rough start with Darling in the FranXX and Persona 5 the Animation, but they really came through now.;False;False;;;;1610703206;;1610703400.0;{};gjbuh5g;False;t3_kxd55a;False;True;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjbuh5g/;1610788377;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"SAO Alicization is mostly still on A-1, but I wouldn't be surprised if Cloverworks had a hand in doing the art and animation. - -Seriously the fights in War of Underworld are some of the best I've seen on a visual scale.";False;False;;;;1610703284;;False;{};gjbujw4;False;t3_kxd55a;False;True;t1_gjad37m;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjbujw4/;1610788420;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;Yeah, it is A-1. I was just pointing the 2 visually amazing shows I’ve seen last year (from any studio) adding onto OP’s list above (Kaguya and DecaDence);False;False;;;;1610703375;;False;{};gjbun1r;False;t3_kxd55a;False;True;t1_gjbujw4;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjbun1r/;1610788468;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;Which is funny because a different comment above you said that cut content for ep 1 wasn't that very important.;False;False;;;;1610703387;;False;{};gjbunfq;False;t3_kxd55a;False;True;t1_gjbj64f;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjbunfq/;1610788474;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Retromorpher;;;[];;;;text;t2_3x42wxsp;False;False;[];;... not liking the RFB I can theoretically understand - but how can you not appreciate the social media scroll as a narrative conceit in You Only Live Once?;False;False;;;;1610704096;;False;{};gjbvc40;False;t3_kxh4fx;False;True;t1_gjavkdk;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjbvc40/;1610788850;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cosmicguy22;;;[];;;;text;t2_qg6ds;False;False;[];;Yeah;False;False;;;;1610704484;;False;{};gjbvpcl;False;t3_kxepsc;False;True;t1_gjbqatz;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbvpcl/;1610789049;2;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;True;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610704619;moderator;False;{};gjbvtwx;False;t3_kxepsc;False;True;t1_gjbnnfr;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbvtwx/;1610789118;1;True;False;anime;t5_2qh22;;0;[]; -[];;;b0bba_Fett;;;[];;;;text;t2_12yifh;False;False;[];; Rewatching it yeah it is pretty neat. Barely even registered in my brain the first time TBH. I remember seeing literally only one of the swipes, and didn't think a single swipe used as a transition enough for a vote. Mildly concerning. I shouldn't be missing such obvious details even with the headaches I've been dealing with for the past 2 weeks, and I don't remember having one while I was watching that ED.;False;False;;;;1610704871;;False;{};gjbw2jo;False;t3_kxh4fx;False;True;t1_gjbvc40;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjbw2jo/;1610789250;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cosmicguy22;;;[];;;;text;t2_qg6ds;False;False;[];;Nami from Kanokari?;False;False;;;;1610705061;;False;{};gjbw978;False;t3_kxepsc;False;True;t1_gjbhlsa;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbw978/;1610789349;1;True;False;anime;t5_2qh22;;0;[]; -[];;;S_A52;;;[];;;;text;t2_5vrorhq5;False;False;[];;Time for fuckin CRUSADE (for Itsuki);False;False;;;;1610705091;;False;{};gjbwa87;False;t3_kxepsc;False;True;t1_gjaoarv;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbwa87/;1610789365;3;True;False;anime;t5_2qh22;;0;[]; -[];;;S_A52;;;[];;;;text;t2_5vrorhq5;False;False;[];;BRO, I was not ready for Itsuki to show us that Uesugi HAND-WROTE the questions. Man is a lad;False;False;;;;1610705178;;False;{};gjbwdc2;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbwdc2/;1610789412;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> I mean its deeply unpopular in the west, - -totally wrong, it was a staple for decades in the west, just the US butchered it";False;False;;;;1610705369;;False;{};gjbwke7;False;t3_kxhv53;False;True;t1_gjaxv70;/r/anime/comments/kxhv53/why_is_detective_conan_so_underrated/gjbwke7/;1610789517;2;True;False;anime;t5_2qh22;;0;[]; -[];;;S_A52;;;[];;;;text;t2_5vrorhq5;False;False;[];;As a man who has adored the character of Itsuki since Season 1. I thoroughly enjoyed this.;False;False;;;;1610705620;;False;{};gjbwt87;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbwt87/;1610789648;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BetelgeuseIsBestGirl;;;[];;;;text;t2_44pw1f0;False;False;[];;I think a majority of Nino fans, including me, still hated her at this point of the story. At least based on manga discussions around that time. I wouldn't exactly call her a tsundere either. or at least not much of one. It'll probably be a few more episodes before she starts getting really good development, but it'll happen this season.;False;False;;;;1610705977;;False;{};gjbx5t6;False;t3_kxepsc;False;True;t1_gjajbpv;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbx5t6/;1610789836;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheNuclearWolf4;;;[];;;;text;t2_jmtcu5p;False;False;[];;Sasuga Anos-sama;False;False;;;;1610706204;;False;{};gjbxdsv;False;t3_kxepsc;False;False;t1_gjbtsnb;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbxdsv/;1610789956;13;True;False;anime;t5_2qh22;;0;[]; -[];;;BetelgeuseIsBestGirl;;;[];;;;text;t2_44pw1f0;False;False;[];;Correct my if I'm wrong, but don't they all have the same voice too? I know there was a second thing that's different about them solely for the audience besides their hair color, but I can't remember if it was their voices.;False;False;;;;1610706374;;False;{};gjbxjsr;False;t3_kxepsc;False;False;t1_gja8qrz;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbxjsr/;1610790048;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BetelgeuseIsBestGirl;;;[];;;;text;t2_44pw1f0;False;False;[];;Not even close, assuming they even plan a faithful adaption. One of the most important scenes foreshadowing which girl Fuutarou ends up with was cut, so it's hard to say if this will be the final season or if they'll do one or two more and go for an anime original ending.;False;False;;;;1610706656;;False;{};gjbxtr2;False;t3_kxepsc;False;True;t1_gjanxfw;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbxtr2/;1610790207;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aes110;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aes110;light;text;t2_jj27q;False;True;[];;God damn my two favorite EDs already lost :(;False;False;;;;1610707039;;False;{};gjby776;False;t3_kxh4fx;False;True;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjby776/;1610790412;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bhorium;;;[];;;;text;t2_ipexp;False;False;[];;">All the still shots to save on budget were pretty obvious. Hopefully it means they saved up money for the last few episodes. - -This has probably been mentioned elsewhere, but according to everyone involved with the show who has talked about the production, the budget was not the problem. The problem was the production schedule was lagging more and more behind and they were running increasingly short on time. - -It was less an attempt to save money, and more of a matter of getting the episodes ready for broadcast on time.";False;False;;;;1610707533;;1610710824.0;{};gjbyow5;False;t3_kxfygp;False;False;t1_gja6i7j;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjbyow5/;1610790677;5;True;False;anime;t5_2qh22;;0;[]; -[];;;dadnaya;;MAL;[];;https://myanimelist.net/profile/dadnaya;dark;text;t2_cubnc;False;False;[];;The manga has been done for a while, and Negi is starting his new Sentai manga soon. Many popular things did not get a full adaptation.;False;False;;;;1610708451;;False;{};gjbzltn;False;t3_kxepsc;False;True;t1_gjbqdda;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjbzltn/;1610791172;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Boujoulo;;;[];;;;text;t2_6iczsif5;False;False;[];;Mushoku Tensei. Also excited to see how well they adapt Kemono Jihan;False;False;;;;1610708903;;False;{};gjc02oi;False;t3_kxd55a;False;True;t1_gjbs4wh;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjc02oi/;1610791434;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Roy_Mustang23;;;[];;;;text;t2_2v2sa0vc;False;False;[];;"I knew Cloverworks would be a great studio when they animated Bunny Girl Senpai and Fate/Grand Order: Absolute Demonic Front Babylonia. Now they are still kicking with these three shows that you mentioned <3";False;False;;;;1610709357;;False;{};gjc0jd6;False;t3_kxd55a;False;False;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjc0jd6/;1610791691;2;True;False;anime;t5_2qh22;;0;[]; -[];;;maximus_md;;;[];;;;text;t2_3nhroflm;False;False;[];;"This is so wrong; the anime has had long-runs in a whole bunch of European countries. The manga is translated across Europe. You’re actually talking bs.";False;False;;;;1610709461;;False;{};gjc0n8u;False;t3_kxhv53;False;True;t1_gjaxv70;/r/anime/comments/kxhv53/why_is_detective_conan_so_underrated/gjc0n8u/;1610791757;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xyothin;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Xyothin;light;text;t2_64tnp56f;False;False;[];;Nino is the most developed character in the manga, thats why.;False;False;;;;1610710303;;False;{};gjc1j9p;False;t3_kxepsc;False;False;t1_gjb5qb7;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjc1j9p/;1610792278;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Nietschzesuperhuman;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Doc_McCoy?status=7&order=4&ord";light;text;t2_vk6p0;False;False;[];;Well, that's something that's difficult to address in manga form lol. I'd suppose so, because other people in school also can't differentiate them reliably and I suppose twins normally have the same voice more or less.;False;False;;;;1610710757;;False;{};gjc20ki;False;t3_kxepsc;False;False;t1_gjbxjsr;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjc20ki/;1610792575;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Hikaru6;;;[];;;;text;t2_fzxayg;False;False;[];;QOTD: Either [Lost in Paradise](https://www.youtube.com/watch?v=6riDJMI-Y8U) from Jujutsu Kaisen or [Eden](https://www.youtube.com/watch?v=xi2cefj5pOU) from Fruits Basket.;False;False;;;;1610711081;;False;{};gjc2d1j;False;t3_kxh4fx;False;True;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjc2d1j/;1610792768;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bhorium;;;[];;;;text;t2_ipexp;False;False;[];;"IIRC, the Japanese word used for the terrorists mentioned in the radio broadcast is *sometimes* used as an expression for ""leftist terrorists"" (the Japanese Red Army has somewhat of a long and quite dramatic story), but is much more commonly used as an expression for religious extremist terrorists. - -The fact that Japan had just recently experienced the infamous Tokyo Subway Sarin Attack carried out by the doomsday cult Aum Shinrikyo and the event was still very much fresh in the Japanese public's mind at the time (and behind the scenes, the attack meant that Anno had to rewrite a large part of the script because some details of the story had coincidental similarities with the attack), means that it is likely a reference to that, so the usage is very probably meant as ""religious extremists"". - -So, yeah Dan Kanemitsu likely had a political agenda with that translation.";False;False;;;;1610711608;;1610746085.0;{};gjc2xec;False;t3_kxfygp;False;False;t1_gjbf5sy;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjc2xec/;1610793101;6;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;This is the German dub though;False;False;;;;1610711632;;False;{};gjc2ybx;False;t3_kxfygp;False;True;t1_gjbf5sy;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjc2ybx/;1610793117;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ningen__;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Ningen_;light;text;t2_69dprgl9;False;False;[];;You're confusing the directors, Free's director is doing SK∞, not Wonder Egg. That being said the animation producer (Shouta Umehara) looks up to them and it's pretty clear that the director (Shin Wakabayashi) has been influenced by their style.;False;False;;;;1610711741;;False;{};gjc32oe;False;t3_kxd55a;False;False;t1_gjbq87n;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjc32oe/;1610793181;5;True;False;anime;t5_2qh22;;0;[]; -[];;;tertig;;;[];;;;text;t2_x7fmy;False;False;[];;"Why is ""misfit of demon king academy"" not on the list?";False;False;;;;1610712758;;False;{};gjc48d5;False;t3_kxh4fx;False;False;t3_kxh4fx;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjc48d5/;1610793819;1;True;False;anime;t5_2qh22;;0;[]; -[];;;theguyyoudontwant;;;[];;;;text;t2_61nzexby;False;False;[];;wdym oppressed? For the most part miku, and itsuki get the most attention in the anime. She met fuutaro first, she was the only one who knew where he lived, she went on a date with him with Raiha on his first paycheck, he had his first quarrel with the quints with her, she literally made a scene at their school trip. I think its all pretty balanced but Itsuki gets the spotlight more often, especially on S2 (we'll get to that eventually) not complaining tho. Itsuki's my 2nd best quint. Also, Yotsubros fo life 💚;False;False;;;;1610712783;;False;{};gjc49e9;False;t3_kxepsc;False;True;t1_gjaoarv;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjc49e9/;1610793834;2;True;False;anime;t5_2qh22;;0;[]; -[];;;theguyyoudontwant;;;[];;;;text;t2_61nzexby;False;False;[];;Its cuz anime-only people hasn't experienced her full character development, which IMO, one of the best compared to the other quints. Give it time anime-only peeps. It will all make sense one day. Tho I'm in Team Yotsuba all the way!;False;False;;;;1610712937;;False;{};gjc4fps;False;t3_kxepsc;False;True;t1_gja4tnl;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjc4fps/;1610793931;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexxxandreS;;;[];;;;text;t2_25oteqzx;False;False;[];;"Nino and Itsuki be like ""declaration of war""";False;False;;;;1610713188;;False;{};gjc4qcd;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjc4qcd/;1610794092;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LightOfVictory;;MAL;[];;https://myanimelist.net/profile/lightofvictory;dark;text;t2_ctpa3;False;False;[];;"When you start flipping, please tag me in your comment on the discussion thread :) I'm curious to see who you ship and will you be changing ships. - -I've been Ichika since day 1 but the magic is strong, all of them have their moments.";False;False;;;;1610713289;;False;{};gjc4upr;False;t3_kxepsc;False;True;t1_gj9yw13;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjc4upr/;1610794160;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SorcererOfTheLake;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RiverSorcerer;light;text;t2_1pmzlf0y;False;True;[];;Too recent.;False;False;;;;1610713850;;False;{};gjc5jk1;True;t3_kxh4fx;False;True;t1_gjc48d5;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjc5jk1/;1610794554;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610714423;;1610721223.0;{};gjc693c;False;t3_kxepsc;False;True;t1_gja1ws8;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjc693c/;1610794950;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;"**First Timer** - -Pretty good episode. I like what they're doing with Atori and it's good to Yuu finally do something at the end of the episode. The car chase scene was a bit nonsensical, but at least it looked like they were half playing it for laughs. Frustrating to see Kosagi have the chance to take off with the Haruka and just be like 'nah I'll wait a bit'. Also I thought Tobi was a girl this whole time. - -*** - -**Episode Discussion Questions** - -> What's the craziest thing you've done while driving a car? - -Don't have my licence, but I did drive a unimog on an airstrip when I was in army cadets. - -> What do you think of the new Atori? - -I like him, will be interesting to see how he reacts if/when he regains his memory.";False;False;;;;1610714595;;False;{};gjc6gxb;False;t3_kxfx0n;False;True;t3_kxfx0n;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjc6gxb/;1610795075;3;True;False;anime;t5_2qh22;;0;[]; -[];;;myrrh69;;;[];;;;text;t2_4vhi0qg0;False;False;[];;What did they skip?;False;False;;;;1610715723;;False;{};gjc7z5l;False;t3_kxepsc;False;True;t1_gjbipqw;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjc7z5l/;1610795908;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Jeyem_;;;[];;;;text;t2_87mrkzm2;False;False;[];;">Yeah, Itsuki acts like this proper, intelligent, rich girl but...she's also kind of a ditz, forgetting her wallet twice and getting stuck living at the home of her tutor, which is apparently the only other place she can think to go when she practically runs away from home on principle. This girl... - -Well, me from the start knowing that she left her wallet is kinda uhhh, but in the second time they talked about it (which Itsuki asked Yotsuba for her books and such things but still forgot to ask for her wallet) is kinda suspicious tho. Like she did it on purpose, y'know like to have some alibi to stay with Futaro because she needs him. - -She really did shone in this episode especially the part saying ""I love you"" indirectly to Futaro. Well Itsuki is not aware with it tho, that's why Futaro had some awkward reaction and ended up telling her that she still need some lots of studying to do. - -Well man, I can't wait for the next episode, as in I can't really wait like I wanna read the manga but thankfully I managed myself not to do it.";False;False;;;;1610715946;;False;{};gjc8abk;False;t3_kxepsc;False;False;t1_gj9vym0;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjc8abk/;1610796083;8;True;False;anime;t5_2qh22;;0;[]; -[];;;KuattShan;;;[];;;;text;t2_4djj3fp6;False;False;[];;Ichika Onee san;False;False;;;;1610716818;;False;{};gjc9k2j;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjc9k2j/;1610796780;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FriendlyTitan;;;[];;;;text;t2_2davje6;False;False;[];;Fuhrertarou;False;False;;;;1610716996;;False;{};gjc9tir;False;t3_kxepsc;False;False;t1_gj9vqa1;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjc9tir/;1610796924;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610719331;;False;{};gjcdm4v;False;t3_kxepsc;False;True;t1_gjc7z5l;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjcdm4v/;1610799016;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aulixindragonz34;;;[];;;;text;t2_chscr8g;False;False;[];;Yes she does get much better in the manga later on;False;False;;;;1610719424;;False;{};gjcdrya;False;t3_kxepsc;False;True;t1_gjb5qb7;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjcdrya/;1610799106;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Elboim;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;anilist.co/user/Elboim/animelist;light;text;t2_hnrqg;False;False;[];;"I thought it was a [Fortissimo.](https://en.wikipedia.org/wiki/Dynamics_(music)) - ->***ff***, standing for *fortissimo* and meaning ""very loud"". - -But it's probably a double integral.";False;False;;;;1610719523;;False;{};gjcdy70;False;t3_kxepsc;False;True;t1_gjase3c;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjcdy70/;1610799203;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Elboim;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;anilist.co/user/Elboim/animelist;light;text;t2_hnrqg;False;False;[];;I believe they are just moving it for the middle of the season. Since it focuses mainly on one of the quints, and they probably wanted to start the season with a plot line that covers all five.;False;False;;;;1610719786;;False;{};gjceeqd;False;t3_kxepsc;False;True;t1_gjae637;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjceeqd/;1610799458;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ArchadianJudge;;;[];;;;text;t2_dk2pa;False;True;[];;"Oh Lordy, Miku is STILL best girl. Such a good personality and so lovable. How she sticks up for her guy no matter what and so cute at the same time. I don't see anyone else taking her best girl spot anytime soon. - -I actually felt really sad seeing her staying at home alone while all the other sisters were out with their own work / problems. Miku deserves love.";False;False;;;;1610720828;;False;{};gjcg9rl;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjcg9rl/;1610800510;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;"**First Timer** - -It was interesting seeing into Shinji's psyche once more this episode. He has a lot of internal struggle and now notably views the women in his life in a sexual light. He also sees what looks to be visions from the past, which could be memories of his mother as he was merged with the Eva, but could also be figments of his imagination fuelled by his jealousy to Rei. In the end it may have been Misato who saves him from the Eva. She's very much like a mother to him now. - -*** - -**QOTD** - -*What do you think of Misato and Kaji's relationship?* - -I think they've ironed out the creases that formed in their time apart and washed out the stains of their past relationship, or at least partially. They seem good for each other, cheeky and loving.";False;False;;;;1610720869;;False;{};gjcgcix;False;t3_kxfygp;False;False;t3_kxfygp;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjcgcix/;1610800555;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SnowLocke;;;[];;;;text;t2_wx2pc;False;False;[];;Why would I bother checking your profile?;False;False;;;;1610721058;;False;{};gjcgp4n;False;t3_kxe60t;False;True;t1_gjbt00f;/r/anime/comments/kxe60t/any_communities_that_dont_hate_sao/gjcgp4n/;1610800755;0;True;False;anime;t5_2qh22;;0;[]; -[];;;halfar;;;[];;;;text;t2_h1ohy;False;False;[];;*This comment about Yotsuba is misleading according to genki experts.*;False;False;;;;1610721480;;False;{};gjchh1q;False;t3_kxepsc;False;True;t1_gja15o8;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjchh1q/;1610801196;2;True;False;anime;t5_2qh22;;0;[]; -[];;;popop143;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_7uhfz;False;False;[];;"Yeah, we can see from the start that Nino was against Fuutarou. Most of them were, so Nino had a lot of ""allies"" at the start. But now, she sees the sisters as ""betraying"" her. Of course she was tolerant of Fuutarou as time went on, and even is coming to his tutorial sessions now. But this fight boiled over all her repressed feelings.";False;False;;;;1610722034;;False;{};gjcijdp;False;t3_kxepsc;False;False;t1_gjb76b4;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjcijdp/;1610801826;17;True;False;anime;t5_2qh22;;0;[]; -[];;;HattoriSaizoII;;;[];;;;text;t2_72680hhu;False;False;[];;I only knew the version where the guy compare the girl's beauty to the moon as prelude to the actual confession.;False;False;;;;1610722113;;False;{};gjciou5;False;t3_kxepsc;False;True;t1_gj9zpd4;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjciou5/;1610801915;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HattoriSaizoII;;;[];;;;text;t2_72680hhu;False;False;[];;I smell a flashback scene here.;False;False;;;;1610722169;;False;{};gjcisqq;False;t3_kxepsc;False;True;t1_gj9uifu;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjcisqq/;1610801980;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HattoriSaizoII;;;[];;;;text;t2_72680hhu;False;False;[];;I did nazi that coming. He was shocked at Itsuki barging in his lebensraum.;False;False;;;;1610722303;;False;{};gjcj28u;False;t3_kxepsc;False;True;t1_gj9vqa1;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjcj28u/;1610802144;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HattoriSaizoII;;;[];;;;text;t2_72680hhu;False;False;[];;Fuutareich;False;False;;;;1610722457;;False;{};gjcjd0s;False;t3_kxepsc;False;False;t1_gj9ye4c;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjcjd0s/;1610802329;1;True;False;anime;t5_2qh22;;0;[]; -[];;;qscdefb;;;[];;;;text;t2_2khgc8al;False;False;[];;It’s written on the cast list in the ED;False;False;;;;1610722470;;False;{};gjcjdzi;False;t3_kxepsc;False;True;t1_gjbtjwn;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjcjdzi/;1610802344;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BEaSTPadwal15;;;[];;;;text;t2_41qorqg6;False;False;[];;Why would you bother to reply if you were just gonna tell me to check the SAO sub? Why would I bother googling that? It works both ways mate lol;False;False;;;;1610722691;;False;{};gjcjtet;False;t3_kxe60t;False;True;t1_gjcgp4n;/r/anime/comments/kxe60t/any_communities_that_dont_hate_sao/gjcjtet/;1610802604;0;True;False;anime;t5_2qh22;;0;[]; -[];;;HattoriSaizoII;;;[];;;;text;t2_72680hhu;False;False;[];;"""Domestic Violence!!!"" - Itsuki Sakata";False;False;;;;1610722947;;False;{};gjckbrr;False;t3_kxepsc;False;True;t1_gj9scb3;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjckbrr/;1610802921;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Eldotrawi;;;[];;;;text;t2_72qaujj;False;False;[];;That makes a lot of sense, thanks for the additional context!;False;False;;;;1610723484;;False;{};gjclett;False;t3_kxfygp;False;True;t1_gjc2xec;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjclett/;1610803613;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bungaleer;;;[];;;;text;t2_2ug7cdx2;False;False;[];;Ah i must have missed it when i was looking then, because i went through each one lmao;False;False;;;;1610724019;;False;{};gjcmi3p;False;t3_kxh4fx;False;True;t1_gjbgs9v;/r/anime/comments/kxh4fx/best_ending_6_listen_to_salt_round_1_bracket_b/gjcmi3p/;1610804334;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;Kind of stunning me how many here didn't seem to get that. Comes up quite a bit in anime;False;False;;;;1610724300;;False;{};gjcn2mw;False;t3_kxepsc;False;True;t1_gj9zpd4;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjcn2mw/;1610804718;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;"[Well, that tears it. Literally and figuratively](https://i.imgur.com/Ob6k1aB.jpg) - -[Haha what the heck is she wearing, that's so cute](https://i.imgur.com/PGsA7mZ.jpeg) - -[And now we see why they only ever draw the hair shadow for this kind of shot](https://i.imgur.com/lZtwkoc.jpg) - -[Itsuki ga kirei](https://i.imgur.com/Kajgk3f.jpg) - -[O-Oh my…](https://i.imgur.com/YkWIy9D.jpg) [](#lewdgyaru)";False;False;;;;1610725470;;False;{};gjcpgwf;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjcpgwf/;1610806266;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SirAwesome789;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SirAwesomeness;light;text;t2_ra3np;False;False;[];;I think in that anime, they mention that it was a quotation by an author. And was initially written as a double entendre meaning both, the moon is beautiful, and I love you. And it is used that way by the main character. It's either a quotation by Dazai Osamu or another author. (Literally what they said in the anime);False;False;;;;1610728455;;False;{};gjcvt9m;False;t3_kxepsc;False;True;t1_gjaqzhg;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjcvt9m/;1610810671;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SirAwesome789;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SirAwesomeness;light;text;t2_ra3np;False;False;[];;I'm not necessarily a fan of Nino but I think I'll be more of a fan by the end of the season (I'm a manga reader);False;False;;;;1610728573;;False;{};gjcw2hl;False;t3_kxepsc;False;True;t1_gj9wda0;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjcw2hl/;1610810843;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SirAwesome789;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SirAwesomeness;light;text;t2_ra3np;False;False;[];;I'm currently watching Chivalry of a Failed Knight and I'm sitting here like, damn, you're rlly treating this man like God. Like calm down, this is next level harem attitude.;False;False;;;;1610728648;;False;{};gjcw8dl;False;t3_kxepsc;False;True;t1_gja18rd;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjcw8dl/;1610810997;1;True;False;anime;t5_2qh22;;0;[]; -[];;;affnn;;;[];;;;text;t2_2pk33t;False;False;[];;I like to think of it as a probable animation error that they fixed with the script.;False;False;;;;1610728765;;False;{};gjcwhlk;False;t3_kxfygp;False;False;t1_gjbcn0w;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjcwhlk/;1610811173;5;True;False;anime;t5_2qh22;;0;[]; -[];;;SirAwesome789;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SirAwesomeness;light;text;t2_ra3np;False;False;[];;I can't quite remember what she looked like in S1 but I do agree she's looking quite good now. I also like Itsuki's new design;False;False;;;;1610728771;;False;{};gjcwi12;False;t3_kxepsc;False;True;t1_gj9wy91;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjcwi12/;1610811181;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SirAwesome789;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SirAwesomeness;light;text;t2_ra3np;False;False;[];;"I rlly like Fuutaro and Itsuki's relationship bc I don't rlly feel any romantic tension. - -(Part of the church of Miku)";False;False;;;;1610728861;;False;{};gjcwp4d;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjcwp4d/;1610811317;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SnowLocke;;;[];;;;text;t2_wx2pc;False;False;[];;"You're the one who wanted to find SAO subs, not me. And by telling you to google it, I was attempting to point out how extremely lazy you were being by having other people do the work for you. But that didn't work. - -You're lazy. Do trivial internet searches on your own. Learn to google.";False;False;;;;1610729028;;False;{};gjcx26f;False;t3_kxe60t;False;True;t1_gjcjtet;/r/anime/comments/kxe60t/any_communities_that_dont_hate_sao/gjcx26f/;1610811560;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610731337;;False;{};gjd24ge;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjd24ge/;1610815207;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AggresiveDuckSlayer;;;[];;;;text;t2_9lohhwdv;False;False;[];;Not gonna lie, I find the Nino gang to be rather strange. I'm a manga reader so I know about all the character development and shit but I still don't understand why people love Nino so much, I just don't fucking get it. Also, Itsuki gang for life.;False;False;;;;1610732978;;1610739779.0;{};gjd5qgb;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjd5qgb/;1610817691;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PerroXX;;;[];;;;text;t2_byqd0;False;False;[];;Mark my words: They gonna skip the episode after the sevens goodbyes in the manga, and in the end of the season they gonna release this chapter and chapters 37, 38 and 39 as an OVA.;False;False;;;;1610736473;;False;{};gjddebb;False;t3_kxepsc;False;True;t1_gjae637;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjddebb/;1610823080;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;"> recently - -It's been over 2 years.";False;False;;;;1610736658;;False;{};gjddssd;False;t3_kxd55a;False;True;t1_gj9uqwq;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjddssd/;1610823363;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiro_Kai;;;[];;;;text;t2_bevm2wi;False;False;[];;I wonder why Nino has to be like that. I really don't understand that background yet.;False;False;;;;1610736682;;False;{};gjdduly;False;t3_kxepsc;False;False;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjdduly/;1610823409;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;Their creative staff is 40-50 people ([source](https://youtu.be/Ip_GuLQErVg?t=311)) so they definitely rely on freelancers when they're making three shows at about the same time.;False;False;;;;1610736870;;False;{};gjde988;False;t3_kxd55a;False;True;t1_gja3v8d;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjde988/;1610823701;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GoldMercy;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/xFSN_Archer;light;text;t2_tx7nw;False;False;[];;If the VN is not an eroge, imma rage;False;False;;;;1610739301;;False;{};gjdjgnb;False;t3_kxepsc;False;True;t1_gjbme7w;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjdjgnb/;1610827191;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GoldMercy;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/xFSN_Archer;light;text;t2_tx7nw;False;False;[];;not with this adaptation pace Im not hyped.;False;False;;;;1610739576;;False;{};gjdk1et;False;t3_kxepsc;False;True;t1_gjatr4c;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjdk1et/;1610827587;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GoldMercy;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/xFSN_Archer;light;text;t2_tx7nw;False;False;[];;"> The manga has been done for a while - -The full colored versions are still releasing tho";False;False;;;;1610739600;;False;{};gjdk39f;False;t3_kxepsc;False;True;t1_gjbzltn;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjdk39f/;1610827621;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bhorium;;;[];;;;text;t2_ipexp;False;False;[];;"It most likely is that. - -The whole thing comes across as someone having thought ""Hey, it would be a really good emotional moment if Misato was cradling Shinji's empty plugsuit just as it looked everything was lost!"" And someone else said, ""Well, we did kind of establish that he didn't have time to put it on in the last episode..."" And the first guy answered back, ""Aw, dammit! We already animated the scene. We need some way to hand-wave it, quickly!""";False;False;;;;1610740514;;False;{};gjdm0h3;False;t3_kxfygp;False;True;t1_gjcwhlk;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gjdm0h3/;1610829051;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MABfan11;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MABfan11;light;text;t2_xdlmc;False;False;[];;"> They care about each other a lot but can be very stubborn and prideful too - -this was actually a plot point back in season 1 with Itsuki, she didn't want to be taught by Fuutarou because of prideful she was and wanted to accomplish it on her own";False;False;;;;1610740703;;False;{};gjdmer6;False;t3_kxepsc;False;True;t1_gjacews;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjdmer6/;1610829330;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PantsOffDanceOff;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/QuAnTuM247/;light;text;t2_45b9g;False;False;[];;"The fact that you didn't even mention Fate Grand Order: Babylonia. They absolutely killed it for that and the animation on the fight scenes at the very least rivaled ufotable if not was better for some things. - -Cloverworks killing it.";False;False;;;;1610741855;;False;{};gjdotvx;False;t3_kxd55a;False;True;t3_kxd55a;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjdotvx/;1610831127;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ProgramTheWorld;;;[];;;;text;t2_fmd67;False;False;[];;"> All I can say is that don’t even bother try to check her VA. - -I avoided checking the credits because I was worried it would spoil it for me";False;False;;;;1610743678;;False;{};gjdsnjx;False;t3_kxepsc;False;True;t1_gja04cl;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjdsnjx/;1610833657;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MABfan11;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MABfan11;light;text;t2_xdlmc;False;False;[];;another amazing episode from season 2, it's probably one of the best harems to handle drama;False;False;;;;1610744533;;False;{};gjdugo8;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjdugo8/;1610834844;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Incognito_Tomato;;;[];;;;text;t2_3928s52y;False;False;[];;Something definitely happened, there’s a boat near where he climbed out of the lake that wasn’t there before;False;False;;;;1610744886;;False;{};gjdv6nt;False;t3_kxepsc;False;False;t1_gjb8i1m;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjdv6nt/;1610835329;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MABfan11;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MABfan11;light;text;t2_xdlmc;False;False;[];;"> 200 is a low estimate - -Loader's Number of meat buns";False;False;;;;1610745168;;False;{};gjdvrbr;False;t3_kxepsc;False;True;t1_gja1vf6;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjdvrbr/;1610835740;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;"Finally someone put Nino in her place. Her behavior up to this point has been unacceptable. - -I like that he jumped into the river when he saw the grown up version of the girl he met when he was younger.";False;False;;;;1610745268;;1610745624.0;{};gjdvytj;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjdvytj/;1610835890;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shadow_Gabriel;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/shadovv_gb;light;text;t2_gerjp;False;False;[];;Wait, wait, wait, was season 1 this good? I want to stuff my brain with this!;False;False;;;;1610746631;;False;{};gjdyrh2;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjdyrh2/;1610837832;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeph-Shoir;;MAL;[];;http://myanimelist.net/profile/Zephex;dark;text;t2_q31mw;False;False;[];;IMO by this point Nino almost purely TsunTsun and barely any Dere. Itsuki fits the Tsundere archetype better.;False;False;;;;1610746998;;False;{};gjdzi5r;False;t3_kxepsc;False;True;t1_gja18rd;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjdzi5r/;1610838316;2;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610747243;moderator;False;{};gjdzzxg;False;t3_kxepsc;False;True;t1_gjc693c;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjdzzxg/;1610838654;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610749225;;False;{};gje3y3r;False;t3_kxfygp;False;False;t1_gja0sxe;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gje3y3r/;1610841265;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610749844;;False;{};gje5631;False;t3_kxfx0n;False;True;t3_kxfx0n;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gje5631/;1610842061;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zsmg;;;[];;;;text;t2_ivuw5;False;False;[];;"[Eva spoiler](/s ""You're right I used the wrong word there, I have corrected"")";False;False;;;;1610750602;;False;{};gje6nfj;False;t3_kxfygp;False;True;t1_gje3y3r;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gje6nfj/;1610843038;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Elias_Mo;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Yukinoshita and Emilia Cultist;dark;text;t2_3e7u37ah;False;False;[];;wasnt she called stella in chivalry anime ?;False;False;;;;1610750778;;False;{};gje6zos;False;t3_kxepsc;False;False;t1_gja18rd;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gje6zos/;1610843266;1;True;False;anime;t5_2qh22;;0;[]; -[];;;0mnicious;;MAL;[];;http://myanimelist.net/profile/Omnicious;dark;text;t2_c039c;False;False;[];;Lets not forget that she's literally one of, if not the biggest, reason for Futaru being how he is now...;False;False;;;;1610751812;;False;{};gje8z6s;False;t3_kxepsc;False;False;t1_gjb80t4;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gje8z6s/;1610844567;2;True;False;anime;t5_2qh22;;0;[]; -[];;;0mnicious;;MAL;[];;http://myanimelist.net/profile/Omnicious;dark;text;t2_c039c;False;False;[];;Anos is just too chad for any archtype to stick, they lose their cool immediately.;False;False;;;;1610751859;;False;{};gje92dh;False;t3_kxepsc;False;False;t1_gjbtsnb;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gje92dh/;1610844620;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Harpr33t-Singh;;;[];;;;text;t2_2xgwk401;False;False;[];;🤔 Huh, putting it like that does make sense.;False;False;;;;1610752137;;False;{};gje9lc4;False;t3_kxfygp;False;True;t1_gjdm0h3;/r/anime/comments/kxfygp/rewatchspoilers_neon_genesis_evangelion_episode/gje9lc4/;1610844949;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dare555;;;[];;;;text;t2_6k3zwl8o;False;False;[];;Animation studio changed?? That would explain it ,S1 animations were way better :(((;False;False;;;;1610753270;;False;{};gjebpld;False;t3_kxepsc;False;True;t1_gjb4g39;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjebpld/;1610846286;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FennlyXerxich;;;[];;;;text;t2_thn9l;False;False;[];;I give this episode a 298547/10;False;False;;;;1610753552;;False;{};gjec8o2;False;t3_kxepsc;False;True;t1_gjaqndy;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjec8o2/;1610846627;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CytoPlasm129;;;[];;;;text;t2_3c4ctvpa;False;False;[];;who do you guys think was the quint who appeared to Fuutarou before he (for some reason) fell in the lake;False;False;;;;1610753949;;False;{};gjecz1l;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjecz1l/;1610847078;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ake_vi_no;;;[];;;;text;t2_8ao51hg5;False;False;[];;Oh my bad she looks like Mio from Testament Devil Sister, but yeah I meant Stella;False;False;;;;1610755076;;False;{};gjef2ay;False;t3_kxepsc;False;True;t1_gje6zos;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjef2ay/;1610848392;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DallasTheAgent;;;[];;;;text;t2_1z4dvab;False;False;[];;What were the redactions?;False;False;;;;1610756034;;False;{};gjeguuw;False;t3_kxepsc;False;True;t1_gja8wul;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjeguuw/;1610849532;1;True;False;anime;t5_2qh22;;0;[]; -[];;;napleonblwnaprt;;;[];;;;text;t2_dy6an;False;False;[];;"They skipped 3 chapters that took place between Ep 1 and Ep 2, *slightly* changed nino's lines when she said ""I want to see Kintarou"", and skipped a huge mult page scene where Fuu has a conversation with the mysterious girl that showed up this episode. - -It's likely that the conversation will just get adapted in episode 3 though.";False;False;;;;1610756363;;False;{};gjehgvw;False;t3_kxepsc;False;True;t1_gjeguuw;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjehgvw/;1610849907;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lenium1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Lenium;light;text;t2_17346e;False;False;[];;Absolutely, I was curious as well before I read the manga after Season 1. I have to say yes she does have some great moments, but if I'd have to draw the line I'd say she barely redeems herself at best. If you hate her guts (like I did) the manga won't suddenly make her best girl (at least it didn't for me) but she'll definitely become more bearable.;False;False;;;;1610756980;;False;{};gjeilob;False;t3_kxepsc;False;True;t1_gjb5qb7;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjeilob/;1610850588;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DallasTheAgent;;;[];;;;text;t2_1z4dvab;False;False;[];;I forgot about the Thanksgiving chapters since I finished the series a while back. I think they're going to get to the conversation with the girl when he talks to nino next episode.;False;False;;;;1610757545;;False;{};gjejn9i;False;t3_kxepsc;False;True;t1_gjehgvw;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjejn9i/;1610851223;1;True;False;anime;t5_2qh22;;0;[]; -[];;;napleonblwnaprt;;;[];;;;text;t2_dy6an;False;False;[];;That's the overwhelmingly likely course. If they were going to cut it in order to change the plot in any meaningful way, they would have done it in a less wonky way. He recaps the conversation to Nino in the next chapter, and I imagine it'll just be adapted as a flashback. Studio probably just wanted to keep viewer interest by having the world's cutest tsundere invite Fuu back to her room before the episode ended.;False;False;;;;1610759810;;False;{};gjent3x;False;t3_kxepsc;False;False;t1_gjejn9i;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjent3x/;1610854013;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Drwildy;;MAL;[];;https://myanimelist.net/animelist/Drwildy;dark;text;t2_a5ixu;False;False;[];;Crazy how anyone has Nino in top after she drugged him and tried to get him fired in the first episode because she didn't want to study.;False;False;;;;1610763174;;False;{};gjetxnf;False;t3_kxepsc;False;False;t1_gj9wo6e;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjetxnf/;1610857744;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DallasTheAgent;;;[];;;;text;t2_1z4dvab;False;False;[];;Do you think its likely that they decide to change the finale to promote the VN?;False;False;;;;1610763820;;False;{};gjev49n;False;t3_kxepsc;False;True;t1_gjent3x;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjev49n/;1610858443;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610765830;;1610766677.0;{};gjeyqzc;False;t3_kxepsc;False;True;t1_gjbl201;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjeyqzc/;1610860584;1;True;False;anime;t5_2qh22;;0;[];True -[];;;Brilliant_Square_737;;;[];;;;text;t2_7lujliwx;False;False;[];;Ngl a lot of shows during corona have been quality. Good distractions.;False;False;;;;1610766324;;False;{};gjezlhb;False;t3_kxd55a;False;False;t1_gj9hmki;/r/anime/comments/kxd55a/cloverworks_appreciation_post_promised_neverland/gjezlhb/;1610861101;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MWU123;;;[];;;;text;t2_56tr65u6;False;False;[];;Nope, in most poles Miku leads by a large margin even among manga readers, in this site alone Miku is twice as large as Nino. Nino gets some fans after her confession but Miku still leads in the development department, due to scrambled eggs and sister wars arc.;False;False;;;;1610766829;;False;{};gjf0gky;False;t3_kxepsc;False;True;t1_gjeyqzc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjf0gky/;1610861621;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Guaymaster;;;[];;;;text;t2_7s5u9;False;False;[];;"I think it was Itsuki. Mostly because she's the one who knows the full story, and who has talked about it with Fuutarou. - -Then there's the long hair argument, so it has to be either Itsuki, Nino, or Miku. But we can't really completely discount the possibility of a wig. However it does make me confident in her *not* being Yotsuba, mostly because she was training before, and where would she get a wig and casual clothes from?";False;False;;;;1610770673;;False;{};gjf6s7j;False;t3_kxepsc;False;True;t1_gjecz1l;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjf6s7j/;1610865168;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Reikakou;;;[];;;;text;t2_hbzvw;False;False;[];;"*Manga reader checks in* - -*spoils* - -*gets banned* - -I see the ship war is as great as ever. Kudos.";False;False;;;;1610770761;;False;{};gjf6xc6;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjf6xc6/;1610865247;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ahegao_Double_Peace;;;[];;;;text;t2_2ix6z8u2;False;False;[];;Oh, so that's what Petelgeuese Romani-Conti (DES!~) looks like after reading Mein Kampf XD;False;False;;;;1610772130;;False;{};gjf936h;False;t3_kxepsc;False;True;t1_gj9vqa1;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjf936h/;1610866419;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BenDTU;;;[];;;;text;t2_mbfrs;False;False;[];;I’m wondering if that’s what they’re going with based on them skipping the thanksgiving chapters. Easier to do an open ended ending by removing the stuff that explicitly pointed towards the winner I guess.;False;False;;;;1610773274;;False;{};gjfas6m;False;t3_kxepsc;False;False;t1_gjev49n;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjfas6m/;1610867373;1;True;False;anime;t5_2qh22;;0;[]; -[];;;InsomniaEmperor;;;[];;;;text;t2_5x68hmc4;False;False;[];;">Itsuki didn't know this, that's why Fuutarou was at first embarassed, but later understood that she is just not enough well-read to know it. - -So this is a reverse of MC being dense. Fuutarou gets the message so he was embarrassed at first but Itsuki wasn't aware about what she said.";False;False;;;;1610779242;;False;{};gjfiswv;False;t3_kxepsc;False;False;t1_gj9zpd4;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjfiswv/;1610871739;1;True;False;anime;t5_2qh22;;0;[]; -[];;;InsomniaEmperor;;;[];;;;text;t2_5x68hmc4;False;False;[];;">All I can say is that don't even bother try to check her VA. It's a completely different one in the credits. :D - -They're not stupid to make the VA one of the quints. - -Though they should have had Ai Kayano be the VA for shits and giggles.";False;False;;;;1610779519;;False;{};gjfj4w2;False;t3_kxepsc;False;True;t1_gja04cl;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjfj4w2/;1610871921;1;True;False;anime;t5_2qh22;;0;[]; -[];;;InsomniaEmperor;;;[];;;;text;t2_5x68hmc4;False;False;[];;As soon as it is revealed that Itsuki left her wallet at home, I immediately knew she was going to Fuutarou's place for dinner.;False;False;;;;1610779628;;False;{};gjfj9ln;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjfj9ln/;1610872005;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ahegao_Double_Peace;;;[];;;;text;t2_2ix6z8u2;False;False;[];;Dark Twist: That Ribbon is the real Yotsuba, the body is just a flesh puppet being piloted by the Ribbon, ala Evangelion. XD;False;False;;;;1610782604;;False;{};gjfmkjx;False;t3_kxepsc;False;True;t1_gj9xo4f;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjfmkjx/;1610873820;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ahegao_Double_Peace;;;[];;;;text;t2_2ix6z8u2;False;False;[];;Remember, that slap carries the Force of an Oni behind it. No wonder she's so strong. XD;False;False;;;;1610782806;;False;{};gjfmsbn;False;t3_kxepsc;False;True;t1_gja7339;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjfmsbn/;1610873937;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ahegao_Double_Peace;;;[];;;;text;t2_2ix6z8u2;False;False;[];;Futarou: Is that you....LALATINA? /s;False;False;;;;1610782882;;False;{};gjfmv5r;False;t3_kxepsc;False;True;t1_gjfj4w2;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjfmv5r/;1610873979;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ahegao_Double_Peace;;;[];;;;text;t2_2ix6z8u2;False;False;[];;She channeled Rem's Oni-strength behind that slap, no wonder it hurt. XD;False;False;;;;1610783056;;False;{};gjfn1lq;False;t3_kxepsc;False;True;t1_gj9w27z;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjfn1lq/;1610874076;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ahegao_Double_Peace;;;[];;;;text;t2_2ix6z8u2;False;False;[];;"When Itsuki invaded the Uesugi residence, she became Fuutarou's ""Domestic Girlfriend"" XD";False;False;;;;1610783246;;False;{};gjfn8lw;False;t3_kxepsc;False;True;t1_gjaoh3r;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjfn8lw/;1610874179;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;">Tsuki ga kirei - -YOU CAN'T FOOL ME I KNOW WHAT THE FUCK THAT MEANS - -giggling like a girl here fuck me -[**goddamnit**](#hnng)";False;False;;;;1610784896;;False;{};gjfowaj;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjfowaj/;1610875061;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;"THE TSUNDERE HAS BROKEN REPEAT THE TSUNDERE HAS BROKEN -HOLY SHIT";False;False;;;;1610785982;;False;{};gjfpycj;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjfpycj/;1610875612;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nietschzesuperhuman;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Doc_McCoy?status=7&order=4&ord";light;text;t2_vk6p0;False;False;[];;Well he can be dense, but also a chad when something is about studying.;False;False;;;;1610798050;;False;{};gjg4orp;False;t3_kxepsc;False;True;t1_gjfiswv;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjg4orp/;1610882808;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JimJPoggers;;;[];;;;text;t2_349nopb9;False;False;[];;REAL REAL SOON;False;False;;;;1610802130;;False;{};gjgc23p;False;t3_kxepsc;False;True;t1_gjag3gm;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjgc23p/;1610886208;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RDOoM;;;[];;;;text;t2_i9bs4;False;False;[];;"No, I didn't need confirmation. I already knew Nino is terrible. And Itsuki slapping her is what makes her the 4th best quin. At least she's not Nino. - -But still.. being 4th best... and still being so close to Futaro, living together, playin mom & dad... not fair. Itsuki seems so far ahead in the game as the winner of harem, it's not even funny. I disapprove. - -And even best Yotsuba let us down today, putting more on Futaro's plate to deal with. What a let down indeed. - -They got me though, with that scene where Futaro met the girl from his childhood grown-up. I really thought the quin that met him actually disguised for a reunion.";False;False;;;;1610802472;;False;{};gjgco2l;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjgco2l/;1610886506;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RDOoM;;;[];;;;text;t2_i9bs4;False;False;[];;Well, Nino sure deserved couple more of those.;False;False;;;;1610802610;;False;{};gjgcxsw;False;t3_kxepsc;False;True;t1_gjb3h9j;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjgcxsw/;1610886638;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RDOoM;;;[];;;;text;t2_i9bs4;False;False;[];;"I agree, even if she's going to be like awesome for an episode or two down the line, like manga readers praise it's coming, all the terrible shit she did/does is not washed away. - -Especially, when other girls like Miku and Yotsuba are great overall, no lapses in this terrible behavior as Nino.";False;False;;;;1610802838;;False;{};gjgdcnv;False;t3_kxepsc;False;True;t1_gjaiy67;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjgdcnv/;1610886842;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RDOoM;;;[];;;;text;t2_i9bs4;False;False;[];;"> Miku should've smacked her too - -They all should have taken turns.";False;False;;;;1610802944;;False;{};gjgdkea;False;t3_kxepsc;False;True;t1_gja3rkk;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjgdkea/;1610886946;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sKyBlazer08;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sKyBlazer08;light;text;t2_17ibsr;False;False;[];;Great episode, they're moving some scenes around. I don't if I like it or not yet, we will see how they handle it. Nonetheless I really enjoyed the episode and we are nearing one of my favorite moments of the show can't wait.;False;False;;;;1610803558;;False;{};gjges2t;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjges2t/;1610887547;1;True;False;anime;t5_2qh22;;0;[]; -[];;;InsomniaEmperor;;;[];;;;text;t2_5x68hmc4;False;False;[];;No it should be Alice since Fuutarou is Kirito... but then that means Nino is Suguha.;False;False;;;;1610811415;;False;{};gjgvoc7;False;t3_kxepsc;False;True;t1_gjfmv5r;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjgvoc7/;1610897065;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerimaxx0;;;[];;;;text;t2_2orzeyb5;False;False;[];;Nah, as an anime only she's the worst one for me.;False;False;;;;1610812034;;False;{};gjgx4c6;False;t3_kxepsc;False;True;t1_gj9wda0;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjgx4c6/;1610897923;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Retromorpher;;;[];;;;text;t2_3x42wxsp;False;False;[];;I know I'm playing catch up, and that I'm a day late on the rewatch - but I fell asleep during this episode twice. I think you're pretty on point with the criticisms that the way things are put together is really contrived and dull - because it's SO hard to get me to care about these characters that act so damn far from being humans and the fact that almost none of the character growth has seemed organic in the least.;False;False;;;;1610816324;;False;{};gjh7dcv;False;t3_kxfx0n;False;True;t1_gja08a1;/r/anime/comments/kxfx0n/mid2000s_rewatch_noein_episode_13/gjh7dcv/;1610904262;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Etereke32;;;[];;;;text;t2_11qhl2;False;False;[];;Itsuki was kind of meh in season 1 for me. It's been a while since S1 aired so I don't remember everything, but I remember her being the least memorable for me, I literally don't remember a single thing about her. My favourite was Miku, then Ichika and Yotsuba tied, and Itsuki only got 4th place for me because I absolutely detested Nino (I get it, manga readers, she is the best in the manga and she must have a reason for behaving like that, but until the anime reaches that point, she'll remain at a firm last place).;False;False;;;;1610830049;;False;{};gji3u0h;False;t3_kxepsc;False;True;t1_gj9wda0;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gji3u0h/;1610925235;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KiriharaIzaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;r/anime bullying Kokoro? ;light;text;t2_go0v3;False;False;[];;Same. The only reason I noticed the CG crowd on a rewatch is because people kept mentioning it lol;False;False;;;;1610874398;;False;{};gjk6r29;False;t3_kxepsc;False;False;t1_gjbr921;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjk6r29/;1610969140;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Miss_Celine_Yuus;;;[];;;;text;t2_5bzcgrz4;False;False;[];;May I ask for recommendations of manga like GTB? Thanks.;False;False;;;;1610904151;;False;{};gjmc8dk;False;t3_kxepsc;False;True;t1_gjaawek;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjmc8dk/;1611010842;1;True;False;anime;t5_2qh22;;0;[]; -[];;;napleonblwnaprt;;;[];;;;text;t2_dy6an;False;False;[];;"Well, the obvious answer is Bokuben. It has an almost identical premise and the authors were friends. It takes itself less seriously than 5tb did; it's more ""fun"" and less ""drama."" - -The other big-name harem is Nisekoi. It's good, but long and has some very obvious filler. - -You'd probably like Kaguya-sama. It's not a harem but it's probably the most popular romance manga at the moment. And it's ongoing, so you can catch up and participate in weekly discussions.";False;False;;;;1610906096;;False;{};gjmifbg;False;t3_kxepsc;False;True;t1_gjmc8dk;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjmifbg/;1611014361;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LPercepts;;;[];;;;text;t2_1obvbmip;False;False;[];;Pretty much.;False;False;;;;1610952533;;False;{};gjp4qy3;False;t3_kxepsc;False;True;t1_gjaqzhg;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjp4qy3/;1611069525;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LPercepts;;;[];;;;text;t2_1obvbmip;False;False;[];;">Uesugi fixing Yotsuba's ribbon - -Though more often than not, he's the one that messes it up in the first place.";False;False;;;;1610952607;;False;{};gjp4uej;False;t3_kxepsc;False;True;t1_gj9xo4f;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjp4uej/;1611069587;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LPercepts;;;[];;;;text;t2_1obvbmip;False;False;[];;"> This episode kept reminding me of later moments in the arc and my hype for the next bunch of episodes kept increasing. I'm loving this season! - -Maybe, but already knowing what happens next might put a dampener on things.";False;False;;;;1610952641;;False;{};gjp4vzf;False;t3_kxepsc;False;True;t1_gjbg41v;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjp4vzf/;1611069617;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LPercepts;;;[];;;;text;t2_1obvbmip;False;False;[];;">Itsuki went up the ranks for me on this episode. I was cheering when she slapped Nino. - -The moment gets kinda dulled since Nino slapped Itsuki right back a second later. - ->Are there any anime onlies that favor Nino? I know manga readers fawn over her. - -That's because of Nino's later development in the manga.";False;False;;;;1610952701;;False;{};gjp4yqi;False;t3_kxepsc;False;True;t1_gj9wda0;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjp4yqi/;1611069669;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LPercepts;;;[];;;;text;t2_1obvbmip;False;False;[];;">Man, Nino must have been acting like a saint in the manga for this many people to like her - -That's due to how she was developed in later arcs. Manga readers will of course look at the character holistically across the entire story.";False;False;;;;1610952746;;False;{};gjp50qe;False;t3_kxepsc;False;True;t1_gjb5qb7;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjp50qe/;1611069705;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LPercepts;;;[];;;;text;t2_1obvbmip;False;False;[];;Oh, she gets better later on though.;False;False;;;;1610952778;;False;{};gjp525x;False;t3_kxepsc;False;True;t1_gjetxnf;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjp525x/;1611069732;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LPercepts;;;[];;;;text;t2_1obvbmip;False;False;[];;">she better get some good development, - -She's arguably the most developed character in the series when everything is said and done, IMO.";False;False;;;;1610954889;;False;{};gjp7l7u;False;t3_kxepsc;False;True;t1_gjajbpv;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjp7l7u/;1611071444;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vertex_Redditing;;;[];;;;text;t2_6fh5dwxn;False;False;[];;Who was the person Uesugi met tho...;False;False;;;;1610980726;;False;{};gjq19ka;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjq19ka/;1611092752;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shortstop88;;;[];;;;text;t2_b6ar6;False;False;[];;Even the sad moments were good in the manga, so I can experience the highs and lows without issues for it.;False;False;;;;1610986759;;False;{};gjqc8bm;False;t3_kxepsc;False;True;t1_gjp4vzf;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjqc8bm/;1611100294;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Eatsuki;;;[];;;;text;t2_3fe9q6r9;False;False;[];;Bitch had it coming.;False;False;;;;1611001430;;False;{};gjr69bl;False;t3_kxepsc;False;True;t1_gja2nlq;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjr69bl/;1611119197;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Oujii;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Oujii/;light;text;t2_gk9to;False;False;[];;"[Answer](/s ""Yes, she does"")";False;False;;;;1611008043;;False;{};gjrjm3u;False;t3_kxepsc;False;True;t1_gjayj83;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjrjm3u/;1611126696;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Oujii;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Oujii/;light;text;t2_gk9to;False;False;[];;We also don't get how someone can like Itsuki so much, but that happens.;False;False;;;;1611008262;;False;{};gjrk1kp;False;t3_kxepsc;False;True;t1_gjd5qgb;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjrk1kp/;1611126930;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AggresiveDuckSlayer;;;[];;;;text;t2_9lohhwdv;False;False;[];;"Don't refer to yourself as ""we"" you cringelord";False;False;;;;1611016597;;False;{};gjrzqzt;False;t3_kxepsc;False;True;t1_gjrk1kp;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjrzqzt/;1611135450;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Oujii;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Oujii/;light;text;t2_gk9to;False;False;[];;LMAO that's rich coming from you;False;False;;;;1611017824;;False;{};gjs1z0f;False;t3_kxepsc;False;True;t1_gjrzqzt;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjs1z0f/;1611136640;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SkyLETV;;MAL;[];;https://myanimelist.net/profile/SkyLETV;dark;text;t2_bn8y64t;False;False;[];;"You know, besides the fact that Miku is best girl, I think Itsuki is right there at the top with her. Unlike Nino, she's the kind of tsundere who's likeable and has a nice chemistry with Futaro... plus, Inori Minase of course. That slap was great btw. - -Did Futaro throw himself into the river and hallucinate a sextuplet? lol. She even has a different va xD. Yotsuba was acting weird at the end.";False;False;;;;1611019503;;False;{};gjs52bn;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjs52bn/;1611138293;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xeno_knight;;;[];;;;text;t2_25l1q9q3;False;False;[];;They removed some great stuff from the manga .. chapter 36-37-38-and the start of V6.. I real hope we see it in the next episode ..which I am sure we will but Chapter 36-37-38 ,there are some great stuff there .. . Can't wait for next episode .;False;False;;;;1611041793;;False;{};gjt553a;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjt553a/;1611161010;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1611118236;;False;{};gjwwaum;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjwwaum/;1611245732;1;True;False;anime;t5_2qh22;;0;[]; -[];;;craumbz;;;[];;;;text;t2_6odrhc63;False;False;[];;"Whats up w/ futaro-kun getting all wet? - -Did he like daydream and walk into the lake? - -The whole scene makes no sense";False;False;;;;1611118403;;False;{};gjwwjzs;False;t3_kxepsc;False;True;t3_kxepsc;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gjwwjzs/;1611245900;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mana_Croissant;;;[];;;;text;t2_30m68690;False;False;[];;There is no way for the Anime to end on a different winner while not even having half the content of the manga, the point of there will be a winner has to be reached first for the winner to be changed;False;False;;;;1611266152;;False;{};gk3xa9z;False;t3_kxepsc;False;True;t1_gjate9f;/r/anime/comments/kxepsc/gotoubun_no_hanayome_episode_2_discussion/gk3xa9z/;1611399446;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;If you can dodge a kiss, you can dodge a ball.;False;False;;;;1610572546;;False;{};gj5mhvu;False;t3_kwisv4;False;True;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5mhvu/;1610644720;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thegoldenone777;;;[];;;;text;t2_87eyt;False;False;[];;Can someone remind me why Garf is trying to stop Subaru?;False;False;;;;1610572579;;False;{};gj5mkqe;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5mkqe/;1610644778;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;Puck proving once again how poor of a father he is.;False;False;;;;1610572586;;False;{};gj5mlah;False;t3_kwisv4;False;False;t1_gj551nh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5mlah/;1610644790;18;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;Light Novel changes made it simpler and I'm pretty sure the final part of the fight was moved for the next episode.;False;False;;;;1610572593;;False;{};gj5mlyk;False;t3_kwisv4;False;True;t1_gj5l7ng;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5mlyk/;1610644805;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shanaoo;;;[];;;;text;t2_7dl0hdzb;False;False;[];;Is no one gonna talk about Otto outing a thot and then HUNTED DOWN BY THE ENTIRE TOWN?! Is the entire town just tier 3 subs or what?;False;False;;;;1610572602;;False;{};gj5mmom;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5mmom/;1610644823;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JusKen;;;[];;;;text;t2_9vjkj;False;False;[];;We didn't get S2 part 2's opening yet again, but they decided to insert part 1's OP after playing Straight Bet from S1 last week. The whims of White Fox!;False;False;;;;1610572623;;False;{};gj5modq;False;t3_kwisv4;False;False;t1_gj4oxe6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5modq/;1610644854;9;True;False;anime;t5_2qh22;;0;[]; -[];;;bakakubi;;MAL;[];;http://myanimelist.net/animelist/bakakubi;dark;text;t2_a17az;False;False;[];;This fucking hurts, man......;False;False;;;;1610572637;;False;{};gj5mpht;False;t3_kwisv4;False;True;t1_gj4ja3z;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5mpht/;1610644876;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;Re:Zero IS very Dark Souls-like.;False;False;;;;1610572669;;False;{};gj5ms8o;False;t3_kwisv4;False;False;t1_gj4z1ht;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ms8o/;1610644937;7;True;False;anime;t5_2qh22;;0;[]; -[];;;WoodOnChain;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/WoodChain;light;text;t2_46fh8ap2;False;False;[];;Otto is so great, and I loved his backstory. Also, the confession at the end of the episode might be one of my favorites in anime now.;False;False;;;;1610572675;;False;{};gj5msrg;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5msrg/;1610644946;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JusKen;;;[];;;;text;t2_9vjkj;False;False;[];;That's exactly right. As expected of Otto-chan!;False;False;;;;1610572679;;False;{};gj5mt2z;False;t3_kwisv4;False;False;t1_gj4if2v;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5mt2z/;1610644954;12;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> This is the main thing that doesnt make sense to me either. He meets her once, he sees she is a kind person, and falls in love with her and is ready to die for her after 4 hours....? - -Remember that we had no friends for a long time, had been in isolation too; Emilia's the first person to show any empathy aside from is parents in probably years. I personally have fallen in love for less than that.";False;False;;;;1610572707;;1610573005.0;{};gj5mvgv;False;t3_kwisv4;False;True;t1_gj5m3e0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5mvgv/;1610644999;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Not-a-Hippie;;;[];;;;text;t2_tapae;False;False;[];;"I was really starting to get weirded out when he started saying things like ""you have the perfect height"" when she was crying about him seemingly abandoning her when she needed him the most. And It actually working. - -Like besides that, the guy brute forced himself through an argument by saying “I love you” over and over again. I know what the writer was trying, but man it was unnerving instead of sweetly romantic IMO. It felt more like Subaru was talking to his favorite possession, despite all his talk about seeing her a normal girl.";False;False;;;;1610572726;;False;{};gj5mx1h;False;t3_kwisv4;False;False;t1_gj5ewpt;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5mx1h/;1610645028;22;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"Basically she used her oni powers but without her horn it had limited time and suffered a backlash. - -That is why she bleeded from her ""horn hole"".";False;False;;;;1610572743;;False;{};gj5myju;False;t3_kwisv4;False;True;t1_gj5ju9b;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5myju/;1610645059;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Runbern;;;[];;;;text;t2_77cqfhat;False;False;[];;"Love the sound-design during Otto's flashback and Emilia's VA was absolutely on point during this episode. - -But there's one thing that is still bothering me this season. I simply feel like I'm missing too much context of what's actually going on at times, context I assume I would find in the source material. - -It was obvious while watching that there was stuff they didn't add to the first season in terms of material, but I never found it distracting from what was actually going on. Something I can't really say in season two. - -Might consider picking-up the light novels after this season two is done, depending on how I feel about the season as a whole.";False;False;;;;1610572746;;False;{};gj5myua;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5myua/;1610645065;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ireallywantolearn;;;[];;;;text;t2_63lbxxow;False;False;[];;*liar!*;False;False;;;;1610572761;;False;{};gj5n059;False;t3_kwisv4;False;False;t1_gj4nt00;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5n059/;1610645089;31;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Re:Zero you blink it you miss it. So don't worry!;False;False;;;;1610572764;;False;{};gj5n0cy;False;t3_kwisv4;False;True;t1_gj5mhpv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5n0cy/;1610645093;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;"Puppy no he madly in love. The problem of having so many different definitions of love in play. Puppy love or a crush does not drive one to this level of madness in Love Subaru is in. And Subaru has had a lot of time to think on this and considering the horrible beyond any of our ability to feel level of pain and death Subaru has gone though any puppy or crush level love would have died. -This is the poetry level of love and yes madness level love both beautiful and scary. And yes it a very irrational love that does not have to have any firm basis in reality. - -What your referring to is a more mature love a more logical love and a very good reason to get to know someone in advance before madness level love can occur. A love developed over dating the same person a lot. Your referring to the love that matchmakers or wise parents get for those into arranged marriage that develops after the marriage and makes those relationships succeed considerably more often than marriages of passion. -Your referring to smart love. -Oh and someone at madness level love like Subaru there is nothing he could learn about his love that would change it except for the Emilia he knows dies as a under level personality takes her over.";False;False;;;;1610572771;;False;{};gj5n0yu;False;t3_kwisv4;False;True;t1_gj4u6lk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5n0yu/;1610645105;2;True;False;anime;t5_2qh22;;0;[]; -[];;;420weedeskeetitt;;;[];;;;text;t2_3qi30g2d;False;False;[];;ah, that explains a lot, thanks!;False;False;;;;1610572794;;False;{};gj5n309;False;t3_kwisv4;False;True;t1_gj5myju;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5n309/;1610645143;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Spectral2020;;;[];;;;text;t2_84n70o3g;False;False;[];;The weak should fear the strong;False;False;;;;1610572803;;False;{};gj5n3q9;False;t3_kwisv4;False;False;t1_gj4hr2t;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5n3q9/;1610645158;9;True;False;anime;t5_2qh22;;0;[]; -[];;;NapaSinitro;;;[];;;;text;t2_1ncuzeer;False;False;[];; this was definitely a bad decision i the battle was very underwhelming come on most of it was otto backstory for like 4 minutes of running and getting beat up and then ram comes beats him a bit then a bit of blood then one spell fight over. Like wtf? Julius vs petelguese was shorter and it had more screen time than this bruh;False;False;;;;1610572803;;False;{};gj5n3qa;False;t3_kwisv4;False;True;t1_gj5mlyk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5n3qa/;1610645158;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JusKen;;;[];;;;text;t2_9vjkj;False;False;[];;Now r/nba is leaking into other r/anime! A surprise to be sure, but a welcome one.;False;False;;;;1610572833;;False;{};gj5n65n;False;t3_kwisv4;False;False;t1_gj4v79t;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5n65n/;1610645202;36;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> HUNTED DOWN BY THE ENTIRE TOWN - -It's probably just the rich cunt, and Otto probably didn't want to cause trouble for his family being merchants and all.";False;False;;;;1610572859;;1610573309.0;{};gj5n8ed;False;t3_kwisv4;False;True;t1_gj5mmom;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5n8ed/;1610645242;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Izanaginookami10;;MAL;[];;http://myanimelist.net/profile/Izanaginookami;dark;text;t2_opbh3;False;False;[];;Yes.;False;False;;;;1610572867;;False;{};gj5n91p;False;t3_kwisv4;False;True;t1_gj5h6im;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5n91p/;1610645255;2;True;False;anime;t5_2qh22;;0;[]; -[];;;myriadic;;MAL;[];;http://myanimelist.net/animelist/myriadic;dark;text;t2_7mc8t;False;False;[];;pogchamp is dead, long live KomodoHype;False;False;;;;1610572889;;False;{};gj5navm;False;t3_kwisv4;False;False;t1_gj4t5o9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5navm/;1610645288;14;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;"""Get your shit together you pain in the ass woman!!""";False;False;;;;1610572893;;False;{};gj5nb7q;False;t3_kwisv4;False;True;t1_gj58y2z;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5nb7q/;1610645294;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610572915;;False;{};gj5nd4a;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5nd4a/;1610645332;1;True;False;anime;t5_2qh22;;0;[]; -[];;;grizlisid2;;;[];;;;text;t2_gcujj;False;False;[];;otto best boy;False;False;;;;1610572923;;False;{};gj5ndql;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ndql/;1610645344;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhoenix995;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_38ji019d;False;False;[];;Wait a minute, since we saw garf at the end, does that mean Ram and Otto are dead and this timeline is in danger of resetting?;False;False;;;;1610572925;;False;{};gj5ndx0;False;t3_kwisv4;False;True;t1_gj4denl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ndx0/;1610645348;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JusKen;;;[];;;;text;t2_9vjkj;False;False;[];;"Subaru: if you don't want this, then dodge - -[Emilia shippers:](https://pa1.narvii.com/6393/75230ec64e5049c9765bc8cd6d521687b05b0946_hq.gif)";False;False;;;;1610572940;;False;{};gj5nf2y;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5nf2y/;1610645371;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HenchHinch;;;[];;;;text;t2_31jhdczv;False;False;[];;"MA BOIII SUBARU HAS GONE AND DONE IT. - -Love the effort White fox put into this show, no op and ed yet again, amazing. - -Also, I don't get why that tiger dude is always so angry. Why was he wanting to find Subaru and Emilia so badly.";False;False;;;;1610572945;;False;{};gj5nfm8;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5nfm8/;1610645381;1;True;False;anime;t5_2qh22;;0;[]; -[];;;stiveooo;;;[];;;;text;t2_9amaa;False;False;[];;Garfield: something is awakening in me!;False;False;;;;1610572991;;False;{};gj5njc9;False;t3_kwisv4;False;True;t1_gj4flhp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5njc9/;1610645454;2;True;False;anime;t5_2qh22;;0;[]; -[];;;D4nt3_1;;;[];;;;text;t2_5eyj249g;False;False;[];;"This. -Every other reset has had a purpose, something to learn from it, or something to offer, if this timeline resets it would be torture for the sake of torture, and that's not Re:Zero does, as much as the suffering meme is said, Re:Zero uses suffering in a pretty damn smart way";False;False;;;;1610572996;;False;{};gj5njtf;False;t3_kwisv4;False;False;t1_gj5gr8w;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5njtf/;1610645464;69;True;False;anime;t5_2qh22;;0;[]; -[];;;Insecticide;;;[];;;;text;t2_a6x2b;False;False;[];;It was a smart move to dig that hole at that exact same distance and direction from the exit and not anywhere else in that huge open field.;False;False;;;;1610572998;;False;{};gj5nk0l;False;t3_kwisv4;False;False;t1_gj4denl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5nk0l/;1610645468;9;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"Because Emilia keeps denying it and thinking he was lying to make her feel better, that is why he had to say it so much, Emilia was in denial and she only believed him after the kiss. - -It was just not I love you, Subaru addressed her flaws and how she needs to keep moving forward. - -This conversation was for Emilia to finally move on and continue with her life with Subaru always there as her support.";False;False;;;;1610573021;;1610584643.0;{};gj5nlwy;False;t3_kwisv4;False;False;t1_gj5cccu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5nlwy/;1610645502;12;True;False;anime;t5_2qh22;;0;[]; -[];;;JokulaOfficial;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/Jokula;dark;text;t2_7kqsxhj;False;True;[];;LETS FUCKING GOOOOOOOOOOOOOOOOO;False;False;;;;1610573024;;False;{};gj5nm5q;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5nm5q/;1610645507;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Joggknee;;;[];;;;text;t2_vfzzr7u;False;False;[];;So maybe I didn't pay enough attention or just forgot, but I viewed the jewels as the actual way they transform. Since the jewel would glow sometimes when they did turn.;False;False;;;;1610573048;;False;{};gj5no87;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5no87/;1610645546;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Strix182;;;[];;;;text;t2_g3111;False;False;[];;Well, he's clearly got a thing for felines, I can see it.;False;False;;;;1610573073;;False;{};gj5nqbj;False;t3_kwisv4;False;False;t1_gj4jihl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5nqbj/;1610645588;11;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Sure, Garfiel last cour made it pretty clear that wouldn't let Subaru inside the crypt in case Subaru has ties with the Witches Cult, because of the Witch of Envy miasma.;False;False;;;;1610573077;;False;{};gj5nqmr;False;t3_kwisv4;False;True;t1_gj5mkqe;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5nqmr/;1610645594;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;"S1's last Episode is titled ""That's all this story is about"" and the main part is him truly confessing to Emilia.";False;False;;;;1610573089;;False;{};gj5nrmn;False;t3_kwisv4;False;False;t1_gj4k16z;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5nrmn/;1610645613;9;True;False;anime;t5_2qh22;;0;[]; -[];;;JusKen;;;[];;;;text;t2_9vjkj;False;False;[];;"Subaru: if you don't want this, then dodge - -[Team Emilia:](https://pa1.narvii.com/6393/75230ec64e5049c9765bc8cd6d521687b05b0946_hq.gif)";False;False;;;;1610573096;;False;{};gj5nsal;False;t3_kwisv4;False;True;t1_gj4cvol;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5nsal/;1610645626;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KurtArturII;;;[];;;;text;t2_13vdqfhx;False;False;[];;"Cringiest episode yet, bloody hell. Also WHY couldn't he stay with her till morning? And if he really couldn't, WHY did he promise he would? God damnit, I hate Barusu so much. Keep your promises, or don't promise, you piece of [well-written character development] shit! - -I'd enjoy this show so much more if the main character was actually a competent, intelligent, thoughtful person instead of an unstable brat.";False;False;;;;1610573102;;False;{};gj5nsv3;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5nsv3/;1610645637;17;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610573205;;False;{};gj5o1l3;False;t3_kwisv4;False;True;t1_gj5aob2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5o1l3/;1610645808;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Yeah if you want more context you'll need to read the LN they skipped some major stuff on episode 13, but you'll probably need to start from the begging there's even more stuff cut from season 1.;False;False;;;;1610573214;;False;{};gj5o2db;False;t3_kwisv4;False;True;t1_gj5myua;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5o2db/;1610645824;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tqueirosr31;;;[];;;;text;t2_6pkhtw04;False;False;[];;Otto greatest moment in re:zero;False;False;;;;1610573224;;False;{};gj5o36g;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5o36g/;1610645840;1;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;It was not one spell, she was using her oni powers to keep up with giant Garfiel.;False;False;;;;1610573258;;False;{};gj5o611;False;t3_kwisv4;False;False;t1_gj5n3qa;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5o611/;1610645894;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Spectral2020;;;[];;;;text;t2_84n70o3g;False;False;[];;Episode 15 is the one thing Rem fans fear the most.;False;False;;;;1610573275;;False;{};gj5o7jy;False;t3_kwisv4;False;False;t1_gj4n9xh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5o7jy/;1610645926;224;True;False;anime;t5_2qh22;;0;[]; -[];;;thegoldenone777;;;[];;;;text;t2_87eyt;False;False;[];;Ahh that's right. I thought it had something to do with him being part of the people that wanted to stay in the Sanctuary. Thanks!;False;False;;;;1610573286;;False;{};gj5o8gf;False;t3_kwisv4;False;True;t1_gj5nqmr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5o8gf/;1610645944;3;True;False;anime;t5_2qh22;;0;[]; -[];;;random_throwaway0001;;;[];;;;text;t2_9lx2xvpv;False;False;[];;Re Zero's official translation is one of the least smoothly reading translations I've read. So much that it makes me think maybe the translator wasn't a native speaker. I've seen fan-translations that read better.;False;False;;;;1610573287;;False;{};gj5o8hl;False;t3_kwisv4;False;False;t1_gj4irq0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5o8hl/;1610645945;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Arsh36160;;;[];;;;text;t2_4e6hj6ao;False;False;[];;Bruh;False;False;;;;1610573293;;False;{};gj5o8zj;False;t3_kwisv4;False;True;t1_gj579dq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5o8zj/;1610645955;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HyVana;;;[];;;;text;t2_17atl4;False;False;[];;">Is this actually a romance anime? - -The last episode of season 1 isn't called ""That's All This Story Is About"" for nothing";False;False;;;;1610573352;;False;{};gj5oe1s;False;t3_kwisv4;False;False;t1_gj4j0q8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5oe1s/;1610646056;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Joggknee;;;[];;;;text;t2_vfzzr7u;False;False;[];;"Meanwhile Yashahime is like: ""in case you haven't seen episode 1....here is a recap.""";False;False;;;;1610573381;;False;{};gj5ogg3;False;t3_kwisv4;False;False;t1_gj4ir2r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ogg3/;1610646102;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;Polygamous != polyamorous. Asymmetric relationships (A is okay with sharing B, B is not okay with sharing A) are not healthy.;False;False;;;;1610573417;;False;{};gj5ojfp;False;t3_kwisv4;False;True;t1_gj5a5wr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ojfp/;1610646160;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MyUnoriginalName;;;[];;;;text;t2_263oq1;False;False;[];;Okay but Subaru isn't just some guy. They have history and a friendship. Your argument was invalid before it even began.;False;False;;;;1610573421;;False;{};gj5ojoe;False;t3_kwisv4;False;False;t1_gj57rl8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ojoe/;1610646165;7;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Dayum;False;False;;;;1610573441;;False;{};gj5oldv;False;t3_kwisv4;False;False;t1_gj5b0rx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5oldv/;1610646197;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hoedoor;;;[];;;;text;t2_c0y9h;False;False;[];;2nd time its zero. You could say its Re:Zero;False;False;;;;1610573447;;False;{};gj5olxz;False;t3_kwisv4;False;False;t1_gj4oxe6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5olxz/;1610646208;6;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;You wrotte that so someone else didn't have to. I can respect that.;False;False;;;;1610573483;;False;{};gj5ooys;False;t3_kwisv4;False;False;t1_gj5j35h;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ooys/;1610646268;14;True;False;anime;t5_2qh22;;0;[]; -[];;;MuffinFIN;;;[];;;;text;t2_52y6nba;False;False;[];;Wakame forever;False;False;;;;1610573522;;False;{};gj5osby;False;t3_kwisv4;False;False;t1_gj57zg1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5osby/;1610646335;5;True;False;anime;t5_2qh22;;0;[]; -[];;;meatwadman;;;[];;;;text;t2_7831iyhc;False;False;[];;Subaru really did learn from rem.;False;False;;;;1610573538;;False;{};gj5oto1;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5oto1/;1610646362;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> Also, I don't get why that tiger dude is always so angry. Why was he wanting to find Subaru and Emilia so badly. - -He's only after Subaru, Garfiel last cour made it pretty clear that wouldn't let Subaru inside the crypt in case Subaru has ties with the Witches Cult, because of the Witch of Envy miasma.";False;False;;;;1610573605;;False;{};gj5ozdp;False;t3_kwisv4;False;True;t1_gj5nfm8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ozdp/;1610646475;3;True;False;anime;t5_2qh22;;0;[]; -[];;;garmonthenightmare;;;[];;;;text;t2_tpz2o;False;False;[];; I didn’t fuck my cat. I didn’t cum on my cat. I didn’t put my dick anywhere near my cat. I’ve never done anything weird with my cats. - OTTO;False;False;;;;1610573610;;False;{};gj5ozsg;False;t3_kwisv4;False;False;t1_gj4wwdc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ozsg/;1610646484;19;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;I'm prety sure only a Rapist wouldn't. I'm too low on energy to wonder what that tells you about your First partner.;False;False;;;;1610573614;;False;{};gj5p02t;False;t3_kwisv4;False;False;t1_gj5iioy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5p02t/;1610646488;10;True;False;anime;t5_2qh22;;0;[]; -[];;;ReiahlTLI;;;[];;;;text;t2_inivd9e;False;False;[];;"I know I'm gonna be in the minority with this but while I really enjoyed this week's episode and its content, the way this episode played out reminded me how much the story composition for the series kind of bothers me, lol. I really wish Otto was set up a lot more prominent and earlier instead of an info dump. It would have been been really cool to get a better build-up to him being badass. - -Emilia and Subaru stuff was pretty good. I kind of rolled my eyes at how that played out a little bit but Emilia is a bundle of problems for real so it works. It's also feels like the first time she's really bared her soul to him about how she's feeling which was kinda neat and appropriate for the situation.";False;False;;;;1610573619;;False;{};gj5p0ig;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5p0ig/;1610646496;3;True;False;anime;t5_2qh22;;0;[]; -[];;;iamacat188;;;[];;;;text;t2_2vc87884;False;False;[];;That cat is a chad;False;False;;;;1610573652;;False;{};gj5p3ce;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5p3ce/;1610646549;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;I would, but that's cause I have low selfesteem.;False;False;;;;1610573709;;False;{};gj5p86z;False;t3_kwisv4;False;False;t1_gj55rf7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5p86z/;1610646649;13;True;False;anime;t5_2qh22;;0;[]; -[];;;bungaleer;;;[];;;;text;t2_2ug7cdx2;False;False;[];;I just hope garfiel didn’t end up killing ram or otto;False;False;;;;1610573732;;False;{};gj5pa4b;False;t3_kwisv4;False;False;t1_gj4xm14;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5pa4b/;1610646689;10;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;The jewels are keys for the sanctuary, it also lets people teleport inside the ~~Echidna's~~ Roswaal's domain if you know the magic like Beatrice.;False;False;;;;1610573785;;False;{};gj5pen2;False;t3_kwisv4;False;True;t1_gj5no87;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5pen2/;1610646778;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Curiositygun;;;[];;;;text;t2_9oe2n;False;False;[];;Otto's mom pulling into top tier waifu list for me only behind Satella!;False;False;;;;1610573792;;False;{};gj5pf65;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5pf65/;1610646789;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Oujii;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Oujii/;light;text;t2_gk9to;False;False;[];;/r/angryupvote;False;False;;;;1610573798;;False;{};gj5pfpo;False;t3_kwisv4;False;False;t1_gj4kwp3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5pfpo/;1610646800;5;True;False;anime;t5_2qh22;;0;[]; -[];;;osoichan;;MAL;[];;http://myanimelist.net/profile/osoichan;dark;text;t2_qsj0n;False;False;[];;Subaru pls save;False;False;;;;1610573807;;False;{};gj5pgg0;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5pgg0/;1610646815;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HahaVince;;;[];;;;text;t2_6pkh7e8o;False;False;[];;I understand this, much like the white whale and other traps. This one just feels like it isn’t as important, not saying that it isn’t, just that it feels that way. Probably because they’re cut off from the rest of the world atm;False;False;;;;1610573811;;False;{};gj5pgsy;False;t3_kwisv4;False;True;t1_gj5ey76;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5pgsy/;1610646821;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;Can I just say how gratifying it is to see everyone 180ing on Subaru being a simp? The praise is fantastic.;False;False;;;;1610573851;;False;{};gj5pk7d;False;t3_kwisv4;False;False;t1_gj4xr0p;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5pk7d/;1610646889;8;True;False;anime;t5_2qh22;;0;[]; -[];;;HydraTower;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_pbpmb;False;False;[];;Are you a LN/WN reader, or are you fucking with us?;False;False;;;;1610573866;;False;{};gj5pldo;False;t3_kwisv4;False;False;t1_gj4fb40;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5pldo/;1610646911;7;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Keep in mind we have no Idea, this has not been revealed in the novels.;False;False;;;;1610573867;;False;{};gj5plj3;False;t3_kwisv4;False;False;t1_gj4zx8w;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5plj3/;1610646914;47;True;False;anime;t5_2qh22;;0;[]; -[];;;Csr56;;;[];;;;text;t2_2jxvv6sd;False;False;[];;"When Subaru makes a cringey speech you know the timeline will not get reset. - -My favorite show but my least favorite episode, i wanted their first kiss to be better and the justification he gave for believing in her should not have been that he loves her but that she doesn't give up even if it hurts, that she cares for others etc... - -He was trying to make her feel better and then he says something along the lines of ""how hard do you think always trying to look cool for you is when you are useless"" and a bunch of other irrelevant, unnecessary and embarrassing feelings. - -The scene felt forced and not very natural.";False;False;;;;1610573871;;False;{};gj5pltj;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5pltj/;1610646919;18;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> I'd enjoy this show so much more if the main character was actually a competent, intelligent, thoughtful person instead of an unstable brat. - -He's becoming that, it's taken sometime.";False;False;;;;1610573881;;False;{};gj5pmns;False;t3_kwisv4;False;False;t1_gj5nsv3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5pmns/;1610646936;12;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Also that.;False;False;;;;1610573920;;False;{};gj5ppy0;False;t3_kwisv4;False;True;t1_gj5o8gf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ppy0/;1610647005;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HydraTower;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_pbpmb;False;False;[];;I'm confused how it ended happily. Wasn't this just a repeat of the argument they had in season 1 about toxic love?;False;False;;;;1610573943;;1610610517.0;{};gj5prwa;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5prwa/;1610647047;13;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;This. I love Otto..but The dude is weird.;False;False;;;;1610573989;;False;{};gj5pvpy;False;t3_kwisv4;False;False;t1_gj4wh1x;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5pvpy/;1610647124;21;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;He learned the power of best girl from the best.;False;False;;;;1610573999;;False;{};gj5pwke;False;t3_kwisv4;False;True;t1_gj5oto1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5pwke/;1610647144;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Sai;;AP;[];;http://www.anime-planet.com/users/Sai0/;dark;text;t2_k8fhr;False;False;[];;Otto stonks going up 📈.;False;False;;;;1610574001;;False;{};gj5pws6;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5pws6/;1610647148;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;.. that's The chiclen anus in my language!;False;False;;;;1610574077;;False;{};gj5q34g;False;t3_kwisv4;False;False;t1_gj52w63;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5q34g/;1610647288;12;True;False;anime;t5_2qh22;;0;[]; -[];;;_Sai;;AP;[];;http://www.anime-planet.com/users/Sai0/;dark;text;t2_k8fhr;False;False;[];;The ep was 27 mins as is.;False;False;;;;1610574108;;False;{};gj5q5ss;False;t3_kwisv4;False;True;t1_gj5l7ng;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5q5ss/;1610647345;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HeitorO821;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/ZathuraVentura;light;text;t2_ip0mw;False;False;[];;That's the ending I'm hoping for.;False;False;;;;1610574132;;False;{};gj5q7t7;False;t3_kwisv4;False;True;t1_gj59mvs;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5q7t7/;1610647393;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FurryCrew;;;[];;;;text;t2_6pdwl;False;True;[];;Is there hope left for the SS REM!!!!;False;False;;;;1610574161;;False;{};gj5qaap;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5qaap/;1610647447;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Csr56;;;[];;;;text;t2_2jxvv6sd;False;False;[];;"Agreed. I love the show but this was forced cringe for the sake of showing that this is not your standard isekai MC. - -This scene did not justify how Subaru acted. How hard is it to say that i believe in you because you don't give up and because you care for others and i can't say why i left but i want you to believe me as i believe you or some shit like that...";False;False;;;;1610574226;;False;{};gj5qfp0;False;t3_kwisv4;False;False;t1_gj5l3lp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5qfp0/;1610647576;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Theleux;;MAL a-1milquiz;[];;https://myanimelist.net/profile/Theleux;dark;text;t2_am615;False;False;[];;Haha no problem. I've been using reddit for years and the New design is just not my cup of tea. Luckily the old theme allows for these fun images too, altho it proabably looks weird for a lot of newer subscribers.;False;False;;;;1610574246;;False;{};gj5qhfg;False;t3_kwisv4;False;True;t1_gj5av8x;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5qhfg/;1610647609;3;True;False;anime;t5_2qh22;;0;[]; -[];;;goosegotguts;;;[];;;;text;t2_6fhk8402;False;False;[];;Leave him alone he’s trying :(;False;False;;;;1610574252;;False;{};gj5qhvu;False;t3_kwisv4;False;False;t1_gj5jtc6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5qhvu/;1610647617;45;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> I really wish Otto was set up a lot more prominent and earlier instead of an info dump - -Check Season 1 episode 14 ending, 16 ending and 17 first part, episode 24/25 for Otto exposition, it includes clues about its family, background and ability. - ->I kind of rolled my eyes at how that played out a little bit but Emilia is a bundle of problems for real so it works. - -In Subaru's own words ***she's a pain in the ass***, but he loves her still.";False;False;;;;1610574290;;1610577981.0;{};gj5ql3w;False;t3_kwisv4;False;True;t1_gj5p0ig;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ql3w/;1610647678;3;True;False;anime;t5_2qh22;;0;[]; -[];;;goosegotguts;;;[];;;;text;t2_6fhk8402;False;False;[];;Wait what;False;False;;;;1610574304;;False;{};gj5qmab;False;t3_kwisv4;False;False;t1_gj4w2ly;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5qmab/;1610647700;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Csr56;;;[];;;;text;t2_2jxvv6sd;False;False;[];;Yeah, the kiss made everything go away apparently. It was weird.;False;False;;;;1610574323;;False;{};gj5qnvb;False;t3_kwisv4;False;False;t1_gj5prwa;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5qnvb/;1610647730;8;True;False;anime;t5_2qh22;;0;[]; -[];;;thewindssong;;;[];;;;text;t2_70r8j;False;False;[];;Didn't they hold hands in the last episode? In bed even!?;False;False;;;;1610574368;;False;{};gj5qrme;False;t3_kwisv4;False;False;t1_gj4py1u;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5qrme/;1610647809;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Arsh36160;;;[];;;;text;t2_4e6hj6ao;False;False;[];;He was, he touched his lips in reminiscence to their kiss, in ep 12;False;False;;;;1610574372;;False;{};gj5qrwl;False;t3_kwisv4;False;False;t1_gj4ymyv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5qrwl/;1610647815;12;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;That hairdo.;False;False;;;;1610574373;;False;{};gj5qs0y;False;t3_kwisv4;False;True;t1_gj5p3ce;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5qs0y/;1610647818;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Another joins the milfs of Re:Zero;False;False;;;;1610574394;;False;{};gj5qtw9;False;t3_kwisv4;False;False;t1_gj5pf65;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5qtw9/;1610647865;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TyrannoFan;;MAL;[];;http://myanimelist.net/animelist/TyrannoFan;dark;text;t2_gyayf;False;False;[];;"You're right! I've been thinking how to describe the show and its characters, and even though the characters' typical interactions are very ""anime,"" I've still gravitated towards describing them as ""realistic."" I think it's because of moments like this that hit something real and relatable in some way that I think the characters are so realistic even though their typical interactions are kinda ""weeby"" as you say.";False;False;;;;1610574408;;False;{};gj5qv4d;False;t3_kwisv4;False;False;t1_gj4yeqg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5qv4d/;1610647888;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Hoedoor;;;[];;;;text;t2_c0y9h;False;False;[];;Well he was in season 1. He just gott his shit together now;False;False;;;;1610574426;;False;{};gj5qwo5;False;t3_kwisv4;False;True;t1_gj4ylyn;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5qwo5/;1610647918;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610574427;;False;{};gj5qwrn;False;t3_kwisv4;False;True;t1_gj5p02t;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5qwrn/;1610647920;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;goosegotguts;;;[];;;;text;t2_6fhk8402;False;False;[];;Making bank rn;False;False;;;;1610574496;;False;{};gj5r2m4;False;t3_kwisv4;False;False;t1_gj5gbz5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5r2m4/;1610648038;29;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Just a Man. A proper one. You wouldn't understand.;False;False;;;;1610574497;;False;{};gj5r2o8;False;t3_kwisv4;False;True;t1_gj5qwrn;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5r2o8/;1610648039;0;True;False;anime;t5_2qh22;;0;[]; -[];;;NapaSinitro;;;[];;;;text;t2_1ncuzeer;False;False;[];;They could've fit in dammit there was enough time also if they weren't gonna do anything big with otto's backstory then why show so much honestly;False;False;;;;1610574533;;False;{};gj5r5pp;False;t3_kwisv4;False;True;t1_gj5q5ss;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5r5pp/;1610648100;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fair_Cause_1166;;;[];;;;text;t2_8tj1k0eq;False;False;[];;"> The moment you travel back in time, the notion of free will basically disappears for others. - -The notion of free will has almost disappeared from any philosophical debate anyways, except maybe compatibilists for something that is literally unprovable (replaying the tape).";False;False;;;;1610574536;;False;{};gj5r612;False;t3_kwisv4;False;False;t1_gj5ezhc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5r612/;1610648108;4;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> He was trying to make her feel better - -No hes trying to save his ass, if she still didn't trust Subaru would probably lose the bet with Roswaal.";False;False;;;;1610574575;;False;{};gj5r98x;False;t3_kwisv4;False;True;t1_gj5pltj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5r98x/;1610648174;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;MelkorS42;;;[];;;;text;t2_br9q3at;False;False;[];;"Nice little thing about Subaru confession is the eye reflection. You could see Emilia all the time in Subaru's eyes, honestly it felt eerie, kinda creepy. All while Emilia eyes didn't reflect up until the kiss. - - -Got annoyed at Emilia because it felt like she was extremely selfish all the way, ""its not about you it's about me"" thingy. Like there are other, more important things to solve than running away and making problems for others too. I guess it could be argued that this kind of development makes her feel more real that we ain't perfect but is annoying nonetheless. Even when Subaru has to fix her shit up while Otto and Ram might get killed by Garfield.";False;True;;comment score below threshold;;1610574585;;False;{};gj5ra1z;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ra1z/;1610648194;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;AUO_Castoff;;;[];;;;text;t2_qjl21;False;False;[];;I wonder, has any other side character in anime ever gotten an OP drop like Ottto?;False;False;;;;1610574607;;False;{};gj5rbwj;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5rbwj/;1610648229;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TichoSlicer;;;[];;;;text;t2_14tpdf;False;False;[];;">""...pain in the ass like u!"" - -Even subaru knows how annoying and boring emilia is... I really dont understand this author ;/ Such an irritating epi... ;\_\_\_\_;";False;False;;;;1610574609;;False;{};gj5rc2v;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5rc2v/;1610648232;7;True;False;anime;t5_2qh22;;0;[]; -[];;;goosegotguts;;;[];;;;text;t2_6fhk8402;False;False;[];;Same. This is the only ship I’m fully behind;False;False;;;;1610574631;;False;{};gj5rdvx;False;t3_kwisv4;False;False;t1_gj4o4hp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5rdvx/;1610648268;15;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;"I strongly support it. - -Tenchi Muyo the LN, manga and anime is the genre starter that the term Harem was coined for because the hero marries all the girls later in the print had kids with them and two of the daughters of the two primary character wives have adventures. - -The Spin off also GXP hero marries all his girls. Recent Tenchi Muyo OVA has the wives realistic to real life example deciding the future of the marriage and house design including one big shared bedroom without the man even involved showing it in many ways a marriage between the women. Shared bedroom as they end up falling asleep in the living room together after talking not for the guy's fantasy. - -Unfortunately like Sailor Moon manga starter of the magical girl genre got nerfed hard in the anime the Harem genre has been nerfed from then on. - -I was glad that Snafu love comedy ended with at least the rejected girl being accepted to stay in the three way relationship by the other girl despite a romance between the guy and one girl started. The girls are so in love with each other it a crime they don't share the man they both love. -For you who want a more traditional relationship yes it may end up traditional marriage with the girls best friends forever. (although vast majority of married Japanese have a lover)";False;False;;;;1610574661;;False;{};gj5rgdi;False;t3_kwisv4;False;False;t1_gj59mvs;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5rgdi/;1610648317;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Arsh36160;;;[];;;;text;t2_4e6hj6ao;False;False;[];;Sex by arc 7 confirmed? Marriage by arc 10?;False;False;;;;1610574664;;False;{};gj5rgpg;False;t3_kwisv4;False;True;t1_gj4k26f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5rgpg/;1610648323;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BadAtMath25;;;[];;;;text;t2_93oxk4r3;False;False;[];;"That was such a lovely detail. The whole sequence was brilliant, from their red cheeks to the moment she was shedding tears with her head down. - -You can tell it oozes soul everywhere.";False;False;;;;1610574699;;False;{};gj5rjju;False;t3_kwisv4;False;False;t1_gj4o5x6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5rjju/;1610648386;40;True;False;anime;t5_2qh22;;0;[]; -[];;;paratayun;;;[];;;;text;t2_8pqarrd;False;False;[];;Ram was always powerful, but she has a time limit which is why Garfiel defeated her in the previous loop.;False;False;;;;1610574701;;False;{};gj5rjpi;False;t3_kwisv4;False;False;t1_gj4kd12;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5rjpi/;1610648390;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheFlyingButter;;;[];;;;text;t2_j5kl6;False;False;[];;">I guess this is an official declaration of war. - -*distant aot screaming*";False;False;;;;1610574715;;False;{};gj5rkym;False;t3_kwisv4;False;False;t1_gj4denl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5rkym/;1610648415;19;True;False;anime;t5_2qh22;;0;[]; -[];;;MBFlash;;;[];;;;text;t2_5ufimkv8;False;False;[];;"I think Subaru said he loves Emilia so many times that i started liking her too. - -Seriously if you took a sip every time he said the word ''love'' (or ''suki'' i guess) you'd be dead.🤣🤣🤣";False;False;;;;1610574731;;False;{};gj5rman;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5rman/;1610648445;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"No, first season Emilia was perfect in Subaru's eyes and he has perfect for her. - -Now they came to accept they both have flaws/problems and it might not be perfect but Subaru loves Emilia and Emilia loves Subaru.";False;False;;;;1610574745;;False;{};gj5rnfi;False;t3_kwisv4;False;False;t1_gj5prwa;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5rnfi/;1610648467;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Arsh36160;;;[];;;;text;t2_4e6hj6ao;False;False;[];;No one gonna talk about how slick Garfiel was when he repelled all of Otto's explosives and Ram magic?;False;False;;;;1610574765;;False;{};gj5rp3y;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5rp3y/;1610648502;2;True;False;anime;t5_2qh22;;0;[]; -[];;;goosegotguts;;;[];;;;text;t2_6fhk8402;False;False;[];;That’s true, don’t get me wrong. But there’s just something special about those memories he’s lost that can’t be regained. I don’t know how to explain it , it just feels lonely;False;False;;;;1610574785;;False;{};gj5rqs8;False;t3_kwisv4;False;False;t1_gj563v0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5rqs8/;1610648535;9;True;False;anime;t5_2qh22;;0;[]; -[];;;bizzcoit;;;[];;;;text;t2_9t2k5d8c;False;False;[];;On today’s episode of “needlessly melodramatic crying simulator”, we got some nice backstory. I liked that part. And then back to ‘boo hoo waa waa’ nonsense. Oh well, I was the idiot to assume that a white fox show wouldn’t try to pull on my heartstrings every five seconds;False;False;;;;1610574865;;False;{};gj5rxb8;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5rxb8/;1610648667;14;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;It's a great day. I had to have something to blow my nose with because I knew going in that my eyes were gonna be faucets.;False;False;;;;1610574881;;False;{};gj5rymb;False;t3_kwisv4;False;True;t1_gj5pk7d;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5rymb/;1610648693;3;True;False;anime;t5_2qh22;;0;[]; -[];;;-_Seth_-;;;[];;;;text;t2_4w9hd25;False;False;[];;If there is something I dislike about Re:Zero, then how it feels, like all episodes are only 15 minutes long.;False;False;;;;1610574905;;False;{};gj5s0my;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5s0my/;1610648735;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> Got annoyed at Emilia because it felt like she was extremely selfish all the way - -Emilia's reality is getting re:written I also would be scared and lash out if I don't know who I'm anymore.";False;False;;;;1610574918;;False;{};gj5s1og;False;t3_kwisv4;False;True;t1_gj5ra1z;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5s1og/;1610648756;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ReallyUnluckyGuy;;;[];;;;text;t2_720ew2y;False;False;[];;On second thought...;False;False;;;;1610574948;;False;{};gj5s445;False;t3_kwisv4;False;False;t1_gj4zjuf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5s445/;1610648806;7;True;False;anime;t5_2qh22;;0;[]; -[];;;goosegotguts;;;[];;;;text;t2_6fhk8402;False;False;[];;Otto used up all his luck simply by surviving his childhood lmao;False;False;;;;1610574970;;False;{};gj5s60b;False;t3_kwisv4;False;False;t1_gj4zpp1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5s60b/;1610648843;9;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;You may be a pain but I'm a masochist.;False;False;;;;1610574971;;False;{};gj5s61l;False;t3_kwisv4;False;False;t1_gj5rc2v;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5s61l/;1610648844;2;True;False;anime;t5_2qh22;;0;[]; -[];;;n080dy123;;;[];;;;text;t2_139f6y;False;False;[];;Now that, sir, is a clever reference.;False;False;;;;1610574986;;False;{};gj5s7d5;False;t3_kwisv4;False;False;t1_gj4oi08;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5s7d5/;1610648869;11;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> if you took a sip - -Depends on the liquid.";False;False;;;;1610575013;;False;{};gj5s9l8;False;t3_kwisv4;False;True;t1_gj5rman;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5s9l8/;1610648912;1;True;False;anime;t5_2qh22;;0;[]; -[];;;perfectbluu;;MAL;[];;https://myanimelist.net/profile/MoghyBear;dark;text;t2_12b79d;False;False;[];;Based on the timeline of events, I believe Satella is Emilia from the past, and Emilia/Satella lost her memories at some point.;False;False;;;;1610575020;;False;{};gj5sa5s;False;t3_kwisv4;False;False;t1_gj4uq0j;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5sa5s/;1610648923;4;True;False;anime;t5_2qh22;;0;[]; -[];;;goosegotguts;;;[];;;;text;t2_6fhk8402;False;False;[];;Gotta love the attention to characters;False;False;;;;1610575055;;False;{};gj5sd4b;False;t3_kwisv4;False;True;t1_gj4nmdz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5sd4b/;1610648983;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Takamaru0;;;[];;;;text;t2_6iqy2mhp;False;False;[];;Bruh waiting for arc 7 to start since 2 months now;False;False;;;;1610575058;;False;{};gj5sddn;False;t3_kwisv4;False;True;t1_gj5rgpg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5sddn/;1610648989;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ozone416;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Dissonance3;light;text;t2_x44bi;False;False;[];;"Can we just appreciate the details in which Emilia was reflected on Subara's eyes whenever we had a close-up on Subaru, and at the end, when Emilia was asked by Subaru for her most precious feeling, she blinks, and then it was Subaru's figure that was reflected on her eyes? - -&#x200B; - -Absolutely beautiful.";False;False;;;;1610575062;;False;{};gj5sdnd;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5sdnd/;1610648993;4;True;False;anime;t5_2qh22;;0;[]; -[];;;41ph4;;;[];;;;text;t2_a0ahj;False;False;[];;don't forget, beautiful half-elf girl as well. I mean, who else do you fall for besides a elf or cat girl when transported to an alternate universe?;False;False;;;;1610575083;;False;{};gj5sfdv;False;t3_kwisv4;False;True;t1_gj5mvgv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5sfdv/;1610649030;1;True;False;anime;t5_2qh22;;0;[]; -[];;;goosegotguts;;;[];;;;text;t2_6fhk8402;False;False;[];;Rezero peak fiction;False;False;;;;1610575115;;False;{};gj5shzq;False;t3_kwisv4;False;True;t1_gj4h277;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5shzq/;1610649085;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Slifer13xx;;MAL;[];;http://myanimelist.net/animelist/Slifer13xx;dark;text;t2_irntz;False;False;[];;My god, Subaru was so obsessive and overbearing, lol. I'm not hating on it, I know how Subaru is, I was kinda like him. Which is why I'm cringing so hard.;False;False;;;;1610575117;;False;{};gj5si8b;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5si8b/;1610649089;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Filthy_Weeb_1;;;[];;;;text;t2_32ve7jl;False;False;[];;I believe further academic inquiry is required. Available data not conclusive enough.;False;False;;;;1610575146;;False;{};gj5skko;False;t3_kwisv4;False;False;t1_gj4nt00;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5skko/;1610649138;12;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Garfiel is a powerhouse.;False;False;;;;1610575147;;False;{};gj5skmt;False;t3_kwisv4;False;False;t1_gj5rp3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5skmt/;1610649139;4;True;False;anime;t5_2qh22;;0;[]; -[];;;unknown537;;;[];;;;text;t2_20519zb3;False;False;[];;Author officially confirmed that the cat is Otto's first love. And I am a LN/WN reader.;False;False;;;;1610575191;;False;{};gj5sod3;False;t3_kwisv4;False;False;t1_gj5pldo;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5sod3/;1610649226;13;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;"Yep Japanese are said to have a word for wife and mistress sharing the bed or house together. - -And many centuries of European Royalty and Nobility you were expected to spend all your time and love with your official mistress and lovers not the wife although some were with both. Yes official mistress was a real thing and status. Until Victoria shut down all that hanky panky in late 1800's that is. - -In my life as a villainess anime no problem in traditional royalty and nobility that if she marries her prince all those who love her of both sexes can share her and make love to her in a wing of the palace and their country estates. You just have to pretend for the public a traditional marriage is going on and often that lie was very thin lie with everyone knowing including the common man what was going on.";False;False;;;;1610575194;;False;{};gj5soku;False;t3_kwisv4;False;True;t1_gj4j5z9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5soku/;1610649231;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> every five seconds - -You meant every 2 seconds, sir.";False;False;;;;1610575204;;False;{};gj5spe5;False;t3_kwisv4;False;False;t1_gj5rxb8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5spe5/;1610649249;9;True;False;anime;t5_2qh22;;0;[]; -[];;;TheAntiHippie0;;;[];;;;text;t2_10zywr;False;False;[];;You’re definitely not alone. I guess I kind of see what they were going for, loving someone for their strengths and their flaws, but he was just sort of steamrolling through her very reasonable questions and just saying I love you a bunch. In a real world situation she would have stopped him at some point and said ‘okay but you aren’t listening to me’. I DID love the ‘if you don’t want this then DODGE’ though.;False;False;;;;1610575255;;False;{};gj5stlr;False;t3_kwisv4;False;False;t1_gj5cccu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5stlr/;1610649335;17;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDampGod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheDampGod;light;text;t2_im4vi;False;False;[];;">I did like how they used Realize with Otto's battle, the chorus really struckasemotional. Great use of music! - -I like how in [that OP](https://animethemes.moe/video/ReZeroS2-OP1-NCBD1080.webm) the main visual theme is Subaru struggling forwards against the odds and here it was Otto doing the same. Pushing on, despite being massively out matched and getting up every time he was knocked down. All for his precious friend. - -Also speaking of the audio in that scene, I love the sound of those exploding crystals.";False;False;;;;1610575258;;False;{};gj5stvf;False;t3_kwisv4;False;False;t1_gj4hakp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5stvf/;1610649340;30;True;False;anime;t5_2qh22;;0;[]; -[];;;amirokia;;;[];;;;text;t2_3innu2wt;False;False;[];;We kinda had a preview with Garfiel at the end;False;False;;;;1610575263;;False;{};gj5su92;False;t3_kwisv4;False;True;t1_gj4ir2r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5su92/;1610649347;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;Absolutely impossible considering Emilia was a child 100 years ago.;False;False;;;;1610575269;;False;{};gj5supf;False;t3_kwisv4;False;False;t1_gj5sa5s;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5supf/;1610649355;20;True;False;anime;t5_2qh22;;0;[]; -[];;;N1ghtz_;;;[];;;;text;t2_3v17guqj;False;False;[];;is it just me or was subaru's confession very similar to rem's confession? maybe he got some inspiration.;False;False;;;;1610575279;;False;{};gj5svia;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5svia/;1610649370;3;True;False;anime;t5_2qh22;;0;[]; -[];;;REAL_CONSENT_MATTERS;;;[];;;;text;t2_ftyr6;False;False;[];;too bad he didn't try mentioning she's still cuter than any of the white haired dolls in his very large collection.;False;False;;;;1610575285;;False;{};gj5svzt;False;t3_kwisv4;False;False;t1_gj5fkbh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5svzt/;1610649378;32;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Very true.;False;False;;;;1610575299;;False;{};gj5sx5f;False;t3_kwisv4;False;True;t1_gj5sfdv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5sx5f/;1610649401;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Curiositygun;;;[];;;;text;t2_9oe2n;False;False;[];;i want NTR his dad man otto's mom is a bombshell!!;False;False;;;;1610575344;;False;{};gj5t0rg;False;t3_kwisv4;False;False;t1_gj4ggdc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5t0rg/;1610649471;1;True;False;anime;t5_2qh22;;0;[]; -[];;;amirokia;;;[];;;;text;t2_3innu2wt;False;False;[];;It would really suck that after all that talk and that kiss, Subaru has to reset to save them;False;False;;;;1610575360;;False;{};gj5t224;False;t3_kwisv4;False;False;t1_gj5pa4b;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5t224/;1610649494;20;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;He admitted it and she accepted him for what he is, kinda nice.;False;False;;;;1610575377;;False;{};gj5t3fu;False;t3_kwisv4;False;True;t1_gj5si8b;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5t3fu/;1610649520;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Csr56;;;[];;;;text;t2_2jxvv6sd;False;False;[];;"So saying all that cringe stuff makes her trust him? - -Making her feel better also serves to make her trust him again. - -If he only wanted to save his ass, he wouldn't be going through all these hardships to help her and also to save everyone. - -He wants to make her feel better both because of the trials and because he loves her, obviously he also wants her to trust him not only because of whatever plan he has but even more than that he wants her to love him.";False;False;;;;1610575405;;1610576827.0;{};gj5t5ps;False;t3_kwisv4;False;False;t1_gj5r98x;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5t5ps/;1610649563;12;True;False;anime;t5_2qh22;;0;[]; -[];;;hkraze;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/evangelion18;light;text;t2_34kdmj06;False;False;[];;does anyone know what the song that starts playing as they kiss is called?;False;False;;;;1610575414;;False;{};gj5t6hy;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5t6hy/;1610649578;1;True;False;anime;t5_2qh22;;0;[]; -[];;;goosegotguts;;;[];;;;text;t2_6fhk8402;False;False;[];;“Thank you for everything”;False;False;;;;1610575424;;False;{};gj5t7a9;False;t3_kwisv4;False;False;t1_gj4kag6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5t7a9/;1610649593;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cornpenguin01;;;[];;;;text;t2_147sgq;False;False;[];;It’s crazy how both the Emilia kisses were some of the best moments in the series (for different reasons obviously). The first was the single most terrifying scene yet and the second was by far the most wholesome moment.;False;False;;;;1610575445;;False;{};gj5t91j;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5t91j/;1610649626;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Death_InBloom;;;[];;;;text;t2_sgnvb;False;False;[];;holy fuck my sides hahahaha;False;False;;;;1610575447;;False;{};gj5t95k;False;t3_kwisv4;False;False;t1_gj5axce;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5t95k/;1610649628;93;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;"He loves her because: - -She saved him in the alley in the first doomed loop - -She's drop dead gorgeous - -She has an incredibly kind heart - -She's very patient - -She's actually a very capable fighter when she tries (Seriously she's a fucking badass with super strength and basically Spider-Man levels of athleticism, watch the Petelgeuse fight in the loop where Julius had to kill Subaru when he got posessed) - -He finds her naivety adorable - -He finds her archaic ""granny vocabulary"" adorable - -He finds her mannerisms adorable - -She's the total package, man.";False;False;;;;1610575459;;False;{};gj5ta6a;False;t3_kwisv4;False;False;t1_gj5h8oj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ta6a/;1610649650;51;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;He learned from the best of the best.;False;False;;;;1610575466;;False;{};gj5tamx;False;t3_kwisv4;False;False;t1_gj5svia;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5tamx/;1610649659;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MBFlash;;;[];;;;text;t2_5ufimkv8;False;False;[];;"After this episode i was like: Rem Who's Rem? - -&#x200B; - -(I'm sorry, don't kill me i also like Rem (though emilia is cuter imo))";False;False;;;;1610575470;;False;{};gj5tazo;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5tazo/;1610649666;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Arsh36160;;;[];;;;text;t2_4e6hj6ao;False;False;[];;Stonks;False;False;;;;1610575540;;False;{};gj5tgob;False;t3_kwisv4;False;False;t1_gj4g28e;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5tgob/;1610649775;11;True;False;anime;t5_2qh22;;0;[]; -[];;;REAL_CONSENT_MATTERS;;;[];;;;text;t2_ftyr6;False;False;[];;"he is also probably thinking about how he appreciates rem ""being harder on him than anyone else"" and if emilia feels like his expectations for her are too low then she might wanting someone who will hold her accountable when she makes an imperfect decision, rather than simply accepting it each time she fails (the second being basically what his parents did where he felt like they thought he was useless until during the trials when he figured out their motivations).";False;False;;;;1610575547;;False;{};gj5thay;False;t3_kwisv4;False;False;t1_gj5ks8c;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5thay/;1610649789;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Death_InBloom;;;[];;;;text;t2_sgnvb;False;False;[];;I see another man of culture as well. It was the first thing that crossed my mind as well;False;False;;;;1610575555;;False;{};gj5thwo;False;t3_kwisv4;False;True;t1_gj4t56x;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5thwo/;1610649798;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MBFlash;;;[];;;;text;t2_5ufimkv8;False;False;[];;"Me before this episode: Man I wouldn't want to be subaru - -Me after this episode : I'd totally want to be subaru";False;False;;;;1610575555;;False;{};gj5thxf;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5thxf/;1610649799;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sybsybsyb;;;[];;;;text;t2_6b1ur;False;False;[];;Yeah, with the Otto talk I was already thinking this would be the run. Now with his flashback and this amazing scene between Subaru and Emillia either there is going to be a save point a la White whale victory or this is just the run.;False;False;;;;1610575573;;False;{};gj5tjec;False;t3_kwisv4;False;False;t1_gj51j2e;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5tjec/;1610649828;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Mandena;;;[];;;;text;t2_5ajg2;False;False;[];;Damn, it's even better than the shortened version;False;False;;;;1610575582;;False;{};gj5tk1m;False;t3_kwisv4;False;False;t1_gj4o3pq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5tk1m/;1610649840;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;Nice catch.;False;False;;;;1610575618;;False;{};gj5tn20;False;t3_kwisv4;False;True;t1_gj4o5x6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5tn20/;1610649897;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Death_InBloom;;;[];;;;text;t2_sgnvb;False;False;[];;"[RELEVANT](https://www.youtube.com/watch?v=TnOdAT6H94s&bpctr=1610577436)";False;False;;;;1610575659;;False;{};gj5tqco;False;t3_kwisv4;False;False;t1_gj5hlk6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5tqco/;1610649958;12;True;False;anime;t5_2qh22;;0;[]; -[];;;ReallyUnluckyGuy;;;[];;;;text;t2_720ew2y;False;False;[];;That moment when Subaru was finally reflected in Emilia's eyes after their conversation was over \*chef's kiss\* **DETAILS**;False;False;;;;1610575667;;False;{};gj5tr0k;False;t3_kwisv4;False;False;t1_gj4d6is;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5tr0k/;1610649971;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Surylias;;;[];;;;text;t2_kj6vc;False;False;[];;"Since this episode was advertised as two parts in one episode I gonna rate it like that: - -The first part with Otto was pretty good. Good backstory and nice connection to the first season. It was really nice to see Geuse, Ricordo and others again, even though it was short. Usually when the OP plays during a scene, it's hype, but it felt pretty misplaced here. The animation during the action was also pretty bad. - -Regarding the second part: nope, just no. This really was not for me. Knowing parts of Emilia's backstory from the OVAs and the previous episode this gave me some weird pedophelia vibes. With the author conveniently removing Rem from the whole scenario as well, everything felt like some way to forced and retarded shit. I love Re:Zero, but this was acutally crap.";False;False;;;;1610575675;;False;{};gj5trki;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5trki/;1610649982;6;True;False;anime;t5_2qh22;;0;[]; -[];;;NotsofastTwitch;;;[];;;;text;t2_fc6g0;False;False;[];;With Subaru's luck she would instead choose to parry him and then riposte with hornet ring and chaos dagger.;False;False;;;;1610575677;;False;{};gj5trs9;False;t3_kwisv4;False;False;t1_gj4z1ht;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5trs9/;1610649985;8;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;We have a LOT of big moments coming down the tracks. Shit I'm so excited.;False;False;;;;1610575706;;False;{};gj5tu3x;False;t3_kwisv4;False;False;t1_gj4ig4n;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5tu3x/;1610650029;8;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> He wants to make her feel better both because of the trials and because he loves her, obviously he also wants her to trust him not only because of whatever plan he has but even more than that he wants her to love him. - -Sure, but don't you think there would be a more appropriate time for a confession and kiss otherwise, even Emilia says so during their discussion.";False;False;;;;1610575727;;False;{};gj5tvse;False;t3_kwisv4;False;True;t1_gj5t5ps;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5tvse/;1610650060;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Death_InBloom;;;[];;;;text;t2_sgnvb;False;False;[];;Otto's awakening to furry tendencies, colorized;False;False;;;;1610575738;;False;{};gj5two1;False;t3_kwisv4;False;True;t1_gj4fb40;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5two1/;1610650077;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tobeyornotoby;;;[];;;;text;t2_4offyg3q;False;False;[];;"I'm prepared for the downvotes. - -The 2nd half with Subaru and Emilia wasn't romantic AT ALL. - -First of all, she is clearly in distress and you go in for a kiss? Thats how you prove your love? Rems confession worked BECAUSE she rejected him outright. She didn't want anything from him. But Subaru proves he ""loves"" her by doing something total strangers at any party do all the time. And then he says she can dodge it lmao. Did he really think she would dodge it and risk him leaving her. - -Second, everyone praises Subaru for criticising Emilia. But he only did so because she ASKED him to do so. Never in a million years would he complain about her himself. He might aswell have pulled all the reasons out of his ass just so she would be happy. But he's a chad for daring to to give her what she wants only when she asked him. - -Thirdly, the line where he says ""At least you could look as cute as I though you would"" is probably the worst thing anyone can say to someone. Honestly, there was a lot of bad dialgoue. But its ok 'cause he loves her. To me he sounds even more insane than in season 1. - -He might as well have tried brainwashing her with how much he said that he loved her. To me it sounds like a borderline abusive relationship.";False;False;;;;1610575779;;1610584059.0;{};gj5u02h;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5u02h/;1610650140;44;True;False;anime;t5_2qh22;;0;[]; -[];;;Slifer13xx;;MAL;[];;http://myanimelist.net/animelist/Slifer13xx;dark;text;t2_irntz;False;False;[];;Nothing better;False;False;;;;1610575779;;False;{};gj5u03q;False;t3_kwisv4;False;True;t1_gj5t3fu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5u03q/;1610650141;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ailof-daun;;;[];;;;text;t2_14356dhc;False;False;[];;What if Satella is the future self of the first Emilia who died at Rom's house together with Subaru, who also incidentally had Return by death, and we see what she develops into by repeating thousands of times to save Subaru.;False;False;;;;1610575824;;False;{};gj5u3rm;False;t3_kwisv4;False;False;t1_gj4uq0j;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5u3rm/;1610650209;13;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;For some reason this made me picture the bits with Otto running from Garfiel set to that [Push it to the Limit](https://www.youtube.com/watch?v=9D-QD_HIfjA) song from Scarface.;False;False;;;;1610575846;;False;{};gj5u5hq;False;t3_kwisv4;False;True;t1_gj4fgsp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5u5hq/;1610650243;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;*You want to be chad Subaru without the gains? That's not how it works, first you must suffer, then the gains will come your wayy~~.*;False;False;;;;1610575860;;False;{};gj5u6mt;False;t3_kwisv4;False;True;t1_gj5thxf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5u6mt/;1610650265;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Death_InBloom;;;[];;;;text;t2_sgnvb;False;False;[];;they didn't want him to fall into furry fetishes;False;False;;;;1610575941;;False;{};gj5ud2a;False;t3_kwisv4;False;False;t1_gj4q9sz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ud2a/;1610650392;15;True;False;anime;t5_2qh22;;0;[]; -[];;;NiamhHA;;;[];;;;text;t2_4iywrflx;False;False;[];;"Episode 15’s are extra special in this show. - -We’ve had a sad one and a happy one. I wonder what Season 3 Episode 15 will be like...";False;False;;;;1610575945;;False;{};gj5uddd;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5uddd/;1610650398;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Death_InBloom;;;[];;;;text;t2_sgnvb;False;False;[];;he just went out for some cigarettes, give some rest to the man;False;False;;;;1610576050;;False;{};gj5ulur;False;t3_kwisv4;False;False;t1_gj5mlah;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ulur/;1610650559;18;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610576053;;False;{};gj5um2d;False;t3_kwisv4;False;True;t1_gj5i65i;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5um2d/;1610650564;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Death_InBloom;;;[];;;;text;t2_sgnvb;False;False;[];;#ARE YE WINNING SON?!;False;False;;;;1610576092;;False;{};gj5upag;False;t3_kwisv4;False;False;t1_gj4dtps;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5upag/;1610650624;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Insertblamehere;;;[];;;;text;t2_r4h51xz;False;False;[];;She must really like Subaru not to dodge that considering she thinks kisses make babies LOL;False;False;;;;1610576124;;False;{};gj5uruh;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5uruh/;1610650673;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRealAman3;;;[];;;;text;t2_n92m5ro;False;False;[];;Amazing how this is almost the complete opposite of Season 1's Episode 15;False;False;;;;1610576240;;False;{};gj5v128;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5v128/;1610650851;1;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your comment has been removed. - -- Just, no. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610576249;moderator;False;{};gj5v1qn;False;t3_kwisv4;False;True;t1_gj5iioy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5v1qn/;1610650864;4;True;False;anime;t5_2qh22;;0;[]; -[];;;xenobian;;;[];;;;text;t2_hzla3;False;False;[];;Its a joke;False;False;;;;1610576253;;False;{};gj5v24y;False;t3_kwisv4;False;True;t1_gj4rkxr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5v24y/;1610650871;3;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your comment has been removed. - -- Do not insult, attack or harass other Redditors. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610576264;moderator;False;{};gj5v2xy;False;t3_kwisv4;False;True;t1_gj5qwrn;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5v2xy/;1610650886;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610576280;;False;{};gj5v48s;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5v48s/;1610650911;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HammeredWharf;;;[];;;;text;t2_thwgt;False;False;[];;Hey, they need some insert music for the next season, anyway.;False;False;;;;1610576316;;False;{};gj5v734;False;t3_kwisv4;False;False;t1_gj4o3pq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5v734/;1610650964;4;True;False;anime;t5_2qh22;;0;[]; -[];;;nuestropene;;;[];;;;text;t2_38rqg802;False;False;[];;If this is what waits for the anime in the romance genre, please, never make a romance anime again, we don´t need this shit, the world don´t need this shit. Please, Japan, live in 2021, not in 1921.;False;False;;;;1610576318;;False;{};gj5v7bv;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5v7bv/;1610650970;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Kupferkessel;;;[];;;;text;t2_55n0m693;False;False;[];;I was expecting Garf to decapitate Subaru (or something like that) for the entire scene... Since when is he allowed to not suffer?;False;False;;;;1610576364;;False;{};gj5vaup;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5vaup/;1610651036;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Schlemmes;;;[];;;;text;t2_3fc31txe;False;False;[];;Thanks I swap them around all the time xD;False;False;;;;1610576386;;False;{};gj5vcki;False;t3_kwisv4;False;False;t1_gj57ibq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5vcki/;1610651068;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Death_InBloom;;;[];;;;text;t2_sgnvb;False;False;[];;#嘘つき!;False;False;;;;1610576389;;False;{};gj5vct5;False;t3_kwisv4;False;False;t1_gj4xq44;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5vct5/;1610651074;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Devin__;;;[];;;;text;t2_hx0lq;False;False;[];;That's where the Zero in the series title comes from.;False;False;;;;1610576405;;False;{};gj5ve3n;False;t3_kwisv4;False;False;t1_gj4oxe6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ve3n/;1610651100;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Marik-X-Bakura;;;[];;;;text;t2_4acyt2bo;False;False;[];;The link doesn’t load for me, what is it?;False;False;;;;1610576407;;False;{};gj5ve7k;False;t3_kwisv4;False;False;t1_gj5b6no;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ve7k/;1610651102;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Csr56;;;[];;;;text;t2_2jxvv6sd;False;False;[];;"In order for her to pass the trials she needs to feel better no? - -Besides if she was this sad and depressed with her old memories coming back and there wasn't a bet in place you think that he wouldn't try to make her feel better?";False;False;;;;1610576525;;False;{};gj5vnk8;False;t3_kwisv4;False;True;t1_gj5tvse;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5vnk8/;1610651285;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> Why are they fighting Garfiel to begin with? I've completely missed why that was necessary. - -So he doesn't stop Subaru, Garfiel last cour made it pretty clear that wouldn't let Subaru inside the crypt in case Subaru has ties with the Witches Cult, because of the Witch of Envy miasma. - ->And why did Subaru disappear in the night, and refuses to answer? - -Spoilers";False;False;;;;1610576550;;False;{};gj5vpm7;False;t3_kwisv4;False;True;t1_gj5v48s;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5vpm7/;1610651326;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zero2champion;;;[];;;;text;t2_8hh0kq1;False;False;[];;Emilia doesn't know, Emilia thinks she's preggo from kissing.;False;False;;;;1610576609;;False;{};gj5vu98;False;t3_kwisv4;False;True;t1_gj4shxx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5vu98/;1610651415;2;True;False;anime;t5_2qh22;;0;[]; -[];;;iHacki44;;;[];;;;text;t2_gl7ie5o;False;False;[];;Thank you. Thank you this made the ep 100x better;False;False;;;;1610576623;;False;{};gj5vvas;False;t3_kwisv4;False;True;t1_gj4q1fi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5vvas/;1610651435;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nuestropene;;;[];;;;text;t2_38rqg802;False;False;[];;">If anyone I barely known have some conversation like this with his partner I won't have any embarrasment saying then how INCREDEBLY TOXIC this bullshit is. Please, this is not healthy, sadly, this is ACCTUALY normal in our society. I hate this soooo much";False;False;;;;1610576631;;False;{};gj5vvxj;False;t3_kwisv4;False;True;t1_gj4jfdp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5vvxj/;1610651447;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;zero2champion;;;[];;;;text;t2_8hh0kq1;False;False;[];;We just all willy nilly with the spoilers now huh? whole threads of them. Fantastic!;False;False;;;;1610576659;;False;{};gj5vy3j;False;t3_kwisv4;False;True;t1_gj5o1l3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5vy3j/;1610651489;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Oppai-no-uta;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_khf3h;False;False;[];;I was sort of expecting a scene like that from The Mummy with the scarab beetles once he fell into that pit of nightmares.;False;False;;;;1610576698;;False;{};gj5w16k;False;t3_kwisv4;False;True;t1_gj4gx5f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5w16k/;1610651550;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;"> most important episode in its entire run - -Yo man this episode was THE TITS but I think we got even bigger things coming most of which hasn't even been written yet. We still don't know the Subaru/Satella/Emilia/[Arc 6](/s ""Flugel"") connection. - -We're still waiting on [Arc 7](/s ""Emilia's confession (hopefully)"") - -Also, the meaning behind [Novels](/s ""being a Sage candidate."") - -Who will win the Royal Selection? - -Will Tappei let us have a happy ending with them together, and if so how does Rem figure in? - -Who are [Arc 4 part 2](/s ""Eilia's real parents?"") - -[Arc 6](/s ""The Natsuki Subaru chapters will be big."") - -[Arc 6 ](/s ""Of course a monster moment is going to be what happens at the end of Arc 6 chapter 90."") - -Tappei is one of the best there is at setting up huge payoff moments, like Reason to Believe is. This show/franchise is literally a dopamine machine. - -edit: I just realized next episode should have [Arc 4 part 2](/s ""Invisible Providence!"") That's gonna be cool as hell.";False;False;;;;1610576708;;False;{};gj5w1wc;False;t3_kwisv4;False;False;t1_gj4d6is;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5w1wc/;1610651565;5;True;False;anime;t5_2qh22;;0;[]; -[];;;HallowedMarmalade;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FlashFirePrime?q=flashfire;light;text;t2_4rkahle;False;False;[];;OH SHIT;False;False;;;;1610576800;;False;{};gj5w9bc;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5w9bc/;1610651705;2;True;False;anime;t5_2qh22;;0;[]; -[];;;unknown_ally;;;[];;;;text;t2_72m73zn;False;False;[];;POV crying is a thing then;False;False;;;;1610576814;;False;{};gj5wacq;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5wacq/;1610651723;2;True;False;anime;t5_2qh22;;0;[]; -[];;;prestonsthoughts;;;[];;;;text;t2_76qqr15o;False;False;[];;Re:Zero never fails to pull your heart strings, and this episode was no exception;False;False;;;;1610576822;;False;{};gj5wb1d;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5wb1d/;1610651737;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Android19samus;;;[];;;;text;t2_aqbu1;False;False;[];;this season's OP is literally just the credits that appear as the episode is starting overtop whatever is actually going on;False;False;;;;1610576875;;False;{};gj5wf7r;False;t3_kwisv4;False;True;t1_gj4oxe6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5wf7r/;1610651815;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nirvash78;;;[];;;;text;t2_12olqs;False;False;[];;"Great episode, one of the best of Re:Zero ! - -I loved the part between Emilia and Subaru, how they expressed their feelings, what a beautiful transposition White Fox has created ! 10/10";False;False;;;;1610576887;;False;{};gj5wg85;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5wg85/;1610651833;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Neronoah;;;[];;;;text;t2_igav3;False;False;[];;"No, you are right. Subaru is a bit obsessive, even crazy for her and asks for blind trust, while Emilia lacks any self worth. It's not a 100% healthy relationship. But then again, Subaru has always been socially stunted and I think the whole thing is fixable. Emilia needs some love, she has always been a pariah. She just couldn't understand why would someone love her (so the argument). - -If anything, I expect the problems to be addressed later.";False;False;;;;1610576892;;False;{};gj5wgks;False;t3_kwisv4;False;False;t1_gj4zval;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5wgks/;1610651839;10;True;False;anime;t5_2qh22;;0;[]; -[];;;nuestropene;;;[];;;;text;t2_38rqg802;False;False;[];;Please people, think a bit about this, subaro breaks his promise again, he doesnt care about that again, he doesnt say sorry again, and he fix everything saying, I love you. Will you trust in someone who bretrays you and doesnt do anything to fix it or feel sorry or regretful but he loves you, so doesnt matter. Please, if you find someone like this in real life, punch them and run away;False;False;;;;1610576893;;False;{};gj5wgn9;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5wgn9/;1610651841;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Oppai-no-uta;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_khf3h;False;False;[];;That's what I'm worried about;False;False;;;;1610576909;;False;{};gj5whx0;False;t3_kwisv4;False;False;t1_gj5pa4b;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5whx0/;1610651866;7;True;False;anime;t5_2qh22;;0;[]; -[];;;zero2champion;;;[];;;;text;t2_8hh0kq1;False;False;[];;oTTo is younger Lawrence confirmed!;False;False;;;;1610576911;;False;{};gj5wi2s;False;t3_kwisv4;False;False;t1_gj55kuy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5wi2s/;1610651869;7;True;False;anime;t5_2qh22;;0;[]; -[];;;burudoragon;;;[];;;;text;t2_iwven;False;False;[];;Not read the light novels, but this is gonna be a brutal redo if he fails.;False;False;;;;1610576927;;False;{};gj5wjer;False;t3_kwisv4;False;False;t1_gj4o5x6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5wjer/;1610651894;55;True;False;anime;t5_2qh22;;0;[]; -[];;;Oppai-no-uta;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_khf3h;False;False;[];;F;False;False;;;;1610576942;;False;{};gj5wkmo;False;t3_kwisv4;False;True;t1_gj4h4ae;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5wkmo/;1610651918;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Thevoidawaits_u;;;[];;;;text;t2_3n0yuh4n;False;False;[];;but in ep 1 he meet Satela not her;False;True;;comment score below threshold;;1610576948;;False;{};gj5wl4o;False;t3_kwisv4;False;False;t1_gj5hx24;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5wl4o/;1610651928;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;Android19samus;;;[];;;;text;t2_aqbu1;False;False;[];;During the whole fight she was only ever looking at herself and her own struggles. In that last moment, she was finally looking at him.;False;False;;;;1610576957;;False;{};gj5wlsc;False;t3_kwisv4;False;False;t1_gj4o5x6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5wlsc/;1610651941;261;True;False;anime;t5_2qh22;;0;[]; -[];;;Android19samus;;;[];;;;text;t2_aqbu1;False;False;[];;he deserves it;False;False;;;;1610577015;;False;{};gj5wqbf;False;t3_kwisv4;False;True;t1_gj4q1fi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5wqbf/;1610652032;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;Yeah boy we raking it in now!;False;False;;;;1610577019;;False;{};gj5wqla;False;t3_kwisv4;False;False;t1_gj5r2m4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5wqla/;1610652038;18;True;False;anime;t5_2qh22;;0;[]; -[];;;jebbush1212;;;[];;;;text;t2_y3f8v1y;False;False;[];;Aaahhh that hurts!;False;False;;;;1610577050;;False;{};gj5wt0j;False;t3_kwisv4;False;False;t1_gj5wlsc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5wt0j/;1610652086;30;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;Chicks, man.;False;False;;;;1610577106;;False;{};gj5wxdi;False;t3_kwisv4;False;False;t1_gj4yxkg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5wxdi/;1610652169;4;True;False;anime;t5_2qh22;;0;[]; -[];;;jebbush1212;;;[];;;;text;t2_y3f8v1y;False;False;[];;Noooo, don't say that!;False;False;;;;1610577108;;False;{};gj5wxkg;False;t3_kwisv4;False;False;t1_gj5wjer;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5wxkg/;1610652172;23;True;False;anime;t5_2qh22;;0;[]; -[];;;zero2champion;;;[];;;;text;t2_8hh0kq1;False;False;[];;Don't be mean bully, he doing his best!;False;False;;;;1610577129;;False;{};gj5wz7n;False;t3_kwisv4;False;False;t1_gj5jtc6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5wz7n/;1610652204;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Mande1baum;;;[];;;;text;t2_7x409;False;False;[];;">How much did you guys like A Reason To Believe? - -Didn't quite feel it like I was expecting. Felt like they just kept saying the same thing to each other and then it eventually ""clicked"" for them I guess? Mostly since Barusu dodged Emilia's biggest concern, him breaking his promises to her (not first time either). Puck has explained keeping promises is of upmost importance to a spirit arts user, so just responding with ""I love you"", implying ""just trust me"" felt a bit like gaslighting and not addressing the issue. - -I understand that Emilia has huge trust issues (mom, Puck, and Subaru) and she needs to realize that people may break promises out of love if that promise is hurtful for the person they care about. I just don't think saying ""I love you"" conveys that clearly enough.";False;False;;;;1610577129;;False;{};gj5wz8u;False;t3_kwisv4;False;True;t1_gj4d6is;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5wz8u/;1610652205;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610577169;;False;{};gj5x2db;False;t3_kwisv4;False;True;t1_gj4cva1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5x2db/;1610652262;1;False;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;"Something something difficult woman if I remember correctly. - -edit: Troublesome woman.";False;False;;;;1610577215;;False;{};gj5x5yy;False;t3_kwisv4;False;False;t1_gj4y91b;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5x5yy/;1610652333;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Akirayoshikage;;;[];;;;text;t2_3s2j7l2j;False;False;[];;League players be like;False;False;;;;1610577285;;False;{};gj5xbab;False;t3_kwisv4;False;False;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5xbab/;1610652436;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Both true.;False;False;;;;1610577296;;False;{};gj5xc5j;False;t3_kwisv4;False;True;t1_gj5vnk8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5xc5j/;1610652452;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Thevoidawaits_u;;;[];;;;text;t2_3n0yuh4n;False;False;[];;"reminds me if that nutritious episode in season 1 where Ram's sister said something like ""when you say things that makes you want to hate yourself I want to say good stuff about you"" the situation is quite similar.";False;False;;;;1610577300;;False;{};gj5xci9;False;t3_kwisv4;False;False;t1_gj4oj2g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5xci9/;1610652459;5;True;False;anime;t5_2qh22;;0;[]; -[];;;HelloThere4298;;;[];;;;text;t2_1zh1q2b1;False;False;[];;You know, this episode made me cry quite a bit but then I laughed at myself at the end when I remembered that I told myself before the episode started that the only way Re:Zero will beat AoT in karma this season is if Subaru confesses or if Emilia and Subaru kiss, then I laughed cos I thought that would never happen. I love anime and I'll never apologise for liking it.;False;False;;;;1610577352;;False;{};gj5xgkg;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5xgkg/;1610652539;3;True;False;anime;t5_2qh22;;0;[]; -[];;;A-ReDDIT_account134;;;[];;;;text;t2_28yqkrv2;False;False;[];;"Okay a lot of amazing things happened this episode. - -BUT ARE WE JUST GOING TO IGNORE HOW BADASS RAM WAS?";False;False;;;;1610577400;;False;{};gj5xk9d;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5xk9d/;1610652610;4;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;I'm trying to think ahead to what 18 should contain but I'm having a bit of trouble parsing out the timing. The story is moving faster in the show than I thought it would.;False;False;;;;1610577407;;False;{};gj5xksq;False;t3_kwisv4;False;True;t1_gj4n9xh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5xksq/;1610652619;2;True;False;anime;t5_2qh22;;0;[]; -[];;;xdtarek;;;[];;;;text;t2_8lkqicd7;False;False;[];;Tbh i didnt really like the first part of season 2 i felt season one was better and until season 2 part 2 second episode i felt the same way but god damn i was moved by what subaru said to emilia and i was so happy the she did let him kiss her i mean finally after 2 season mans got some action;False;False;;;;1610577439;;False;{};gj5xndr;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5xndr/;1610652667;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Thevoidawaits_u;;;[];;;;text;t2_3n0yuh4n;False;False;[];;god damn it that's funny but whenever his name is mentioned in the show I cringe.;False;False;;;;1610577453;;False;{};gj5xod8;False;t3_kwisv4;False;True;t1_gj4oc24;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5xod8/;1610652687;3;True;False;anime;t5_2qh22;;0;[]; -[];;;xdamm777;;;[];;;;text;t2_oxrkd;False;False;[];;"Subaru: *if you don’t want to then dodge* - -Rem: *...* - -Subaru: *welp*";False;False;;;;1610577465;;False;{};gj5xpbj;False;t3_kwisv4;False;False;t1_gj4jn6v;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5xpbj/;1610652704;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610577505;;False;{};gj5xshw;False;t3_kwisv4;False;True;t1_gj5wgn9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5xshw/;1610652765;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Marik-X-Bakura;;;[];;;;text;t2_4acyt2bo;False;False;[];;I really doubt he will with the way this is going;False;False;;;;1610577517;;False;{};gj5xtgo;False;t3_kwisv4;False;False;t1_gj5wjer;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5xtgo/;1610652784;40;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;I don't think that we'll beat AoT but I still love Re:Zero regardless.;False;False;;;;1610577611;;False;{};gj5y0qr;False;t3_kwisv4;False;True;t1_gj5xgkg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5y0qr/;1610652922;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Android19samus;;;[];;;;text;t2_aqbu1;False;False;[];;And now we see why Parent and Child was so important. Establishing Subaru's backstory clearly means he understands exactly the kind of feelings Emilia is going through. That when you're feeling like such a failure, often times what you want most in the world is for everyone else to get angry and give up on you so that you can finally, truly, give up on yourself. That when someone is feeling that way, it's more important than ever that you don't let them forget that you care about them. That you're not going to stop caring about them no matter how much they try to convince you that they aren't worth it.;False;False;;;;1610577629;;False;{};gj5y25u;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5y25u/;1610652950;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Imagine if she had her horn.;False;False;;;;1610577632;;False;{};gj5y2ek;False;t3_kwisv4;False;True;t1_gj5xk9d;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5y2ek/;1610652954;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Season 2 is a grand build up arc, where only at the beginning of the climax!;False;False;;;;1610577689;;False;{};gj5y6tz;False;t3_kwisv4;False;True;t1_gj5xndr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5y6tz/;1610653044;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Thevoidawaits_u;;;[];;;;text;t2_3n0yuh4n;False;False;[];;Bet he couldn't even finish one small crate.;False;False;;;;1610577735;;False;{};gj5yaft;False;t3_kwisv4;False;False;t1_gj5c9do;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5yaft/;1610653116;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;I swear to god, if something happens and erases Subaru's confession, I'm going to be pissed. At least let him have this one fucking win for all that is holy.;False;False;;;;1610577776;;False;{};gj5ydpr;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ydpr/;1610653178;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Onion_tomatoes;;;[];;;;text;t2_3n9eh4r8;False;False;[];;I don’t think that’s what it meant unless they added it to the light novel(cause it definitely wasn’t in the web novel);False;False;;;;1610577776;;False;{};gj5ydrt;False;t3_kwisv4;False;False;t1_gj4ruw3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ydrt/;1610653180;9;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;The trials are such a clever away of exposing Subaru's and Emilia's past.;False;False;;;;1610577797;;False;{};gj5yfcp;False;t3_kwisv4;False;True;t1_gj5y25u;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5yfcp/;1610653210;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Thevoidawaits_u;;;[];;;;text;t2_3n0yuh4n;False;False;[];;Lazy housemaids don't get the D.;False;False;;;;1610577844;;False;{};gj5yiz7;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5yiz7/;1610653282;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ssamja_dance_king;;;[];;;;text;t2_1v4yr7lf;False;False;[];;*unzips dick*;False;False;;;;1610577853;;False;{};gj5yjon;False;t3_kwisv4;False;False;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5yjon/;1610653295;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610577856;;False;{};gj5yjuq;False;t3_kwisv4;False;True;t1_gj4oxe6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5yjuq/;1610653303;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Viruin;;;[];;;;text;t2_3u0d6vr;False;False;[];;Imagine that if he dies now and return to a point before the kiss TT;False;False;;;;1610577866;;False;{};gj5ykn5;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ykn5/;1610653321;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610577878;;False;{};gj5yljd;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5yljd/;1610653341;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xdamm777;;;[];;;;text;t2_oxrkd;False;False;[];;"Kind of sad how insignificant lotto and Ram’s efforts to contain Garfield seem compared to the WN but I’m hoping for additional scenes next week. - -Putting that aside the class and confession scene was top tier. Subaru finally gets accepted by Emilia!!";False;False;;;;1610577940;;False;{};gj5yqcq;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5yqcq/;1610653435;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ssamja_dance_king;;;[];;;;text;t2_1v4yr7lf;False;False;[];;I think so. In the previous episode discussion thread, someone mentioned that Otto didn’t come to help immediately because the Beast’s thoughts were scaring him.;False;False;;;;1610577957;;False;{};gj5yrpg;False;t3_kwisv4;False;False;t1_gj5lb8h;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5yrpg/;1610653461;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Querez;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Querez8504;light;text;t2_7a3kzvl;False;False;[];;You just described it perfectly.;False;False;;;;1610577998;;False;{};gj5yurg;False;t3_kwisv4;False;False;t1_gj5o7jy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5yurg/;1610653526;33;True;False;anime;t5_2qh22;;0;[]; -[];;;HyperVaporeon;;;[];;;;text;t2_1dsd9d;False;False;[];;"I CAN'T STOP SMILING! Honestly, when Re:Zero first came out I thought it would not be a series I would like. Now I can officially go on record and say it is one of my series of all time. I LOVE THIS SERIES <3";False;False;;;;1610577998;;False;{};gj5yutf;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5yutf/;1610653528;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dooder39;;;[];;;;text;t2_9kxhf;False;False;[];;I mean, Emilia was mad/confused that Subaru wasn't angry at her. If he didn't do it this way, I don't think Emilia would have listened.;False;False;;;;1610578002;;False;{};gj5yv1z;False;t3_kwisv4;False;True;t1_gj4fe4g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5yv1z/;1610653532;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;I mean, it's obviously speculation.;False;False;;;;1610578088;;False;{};gj5z1q6;False;t3_kwisv4;False;False;t1_gj5plj3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5z1q6/;1610653677;34;True;False;anime;t5_2qh22;;0;[]; -[];;;nuestropene;;;[];;;;text;t2_38rqg802;False;False;[];;but this anime pictures it like this is how you should act in real life, the tone and the message are keys, you dont make an anime of how fancy is killing judes;False;False;;;;1610578117;;False;{};gj5z3yy;False;t3_kwisv4;False;False;t1_gj5xshw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5z3yy/;1610653728;8;True;False;anime;t5_2qh22;;0;[]; -[];;;thepeetmix;;;[];;;;text;t2_cwxxz;False;False;[];;The coma strats are not working in her favour.;False;False;;;;1610578156;;False;{};gj5z6xe;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5z6xe/;1610653792;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610578172;;False;{};gj5z868;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5z868/;1610653815;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;aceradmatt;;;[];;;;text;t2_7su3g;False;False;[];;"I imagine both us just laughing going ""God damnit"" reading this";False;False;;;;1610578197;;False;{};gj5za2j;False;t3_kwisv4;False;False;t1_gj5n65n;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5za2j/;1610653852;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;"> Calm down, calm down. He didn't mean it literally. Think of something good, think of mayo. - -""Your life has been spared!""";False;False;;;;1610578211;;False;{};gj5zb69;False;t3_kwisv4;False;False;t1_gj4hs9r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5zb69/;1610653874;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Meltyas;;;[];;;;text;t2_tlepf;False;False;[];;source? i just need to read more about this xD;False;False;;;;1610578218;;False;{};gj5zbou;False;t3_kwisv4;False;True;t1_gj58qg3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5zbou/;1610653884;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610578219;;1610581307.0;{};gj5zbru;False;t3_kwisv4;False;False;t1_gj5z3yy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5zbru/;1610653887;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;D4nt3_1;;;[];;;;text;t2_5eyj249g;False;False;[];;"Agreed. - -Though, what I mean is (possibly?) spoilers/cut content from the novels, but well I agree with you that at this point he has more than enought reasons, is just that as a reader it was kind of annoying to see so much people speak about how Emilia and Sibarus relationship was so shallow and nonsensical an it detracted from the anime and stuff, but at this point saying that would be nonsense, yes";False;False;;;;1610578225;;False;{};gj5zc64;False;t3_kwisv4;False;False;t1_gj5ta6a;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5zc64/;1610653900;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Thevoidawaits_u;;;[];;;;text;t2_3n0yuh4n;False;False;[];;Let me get this straight his back story: he is a white haired dude that's being funched by a feline transforming human, after he became a trader as he wants the set up a shop someday but now he focuses on helping his partner. Thats Spicy.;False;False;;;;1610578265;;False;{};gj5zfb4;False;t3_kwisv4;False;True;t1_gj4h8i7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5zfb4/;1610653970;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610578275;;False;{};gj5zg4c;False;t3_kwisv4;False;True;t1_gj4denl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5zg4c/;1610653985;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;CyanPhoenix42;;;[];;;;text;t2_bwoha;False;False;[];;"I really love how right at the end of Subaru and Emilia's argument, we finally see Subaru reflected in Emilia's eyes the same way Subaru's eyes were showing Emilia. - -Also what was up with Otto ""using his power too much"" and bleeding from the nose? I thought it was something that was just always on, and he had to work on controlling it, not something that he had to actively use?";False;False;;;;1610578285;;False;{};gj5zgx4;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5zgx4/;1610654002;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Buffhero125;;;[];;;;text;t2_5o6n3rx;False;False;[];;Everytime I read an analysis like this I am in awe, but also disappointed because it makes me realize how often I just watch/read/hear something and just move on without even bothering to put some thought into what I just saw.;False;False;;;;1610578287;;False;{};gj5zh1x;False;t3_kwisv4;False;False;t1_gj4eeoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5zh1x/;1610654005;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Fronsis;;;[];;;;text;t2_dpj68;False;False;[];;"Otto is truly one of the best bros.. - -&#x200B; - -Bless the voice actors.";False;False;;;;1610578310;;False;{};gj5zirw;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5zirw/;1610654043;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610578354;;1610580179.0;{};gj5zm2v;False;t3_kwisv4;False;True;t1_gj5yljd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5zm2v/;1610654104;1;True;False;anime;t5_2qh22;;0;[]; -[];;;D4nt3_1;;;[];;;;text;t2_5eyj249g;False;False;[];;Yeah, but I mean, during season 1 she was more useless than useful, and in cut content from the novels there's quite more talk about useless Emilia than in the anime, but yeah, agreed;False;False;;;;1610578379;;False;{};gj5zo14;False;t3_kwisv4;False;True;t1_gj5ks8c;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5zo14/;1610654140;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lil_Peep4Ever;;;[];;;;text;t2_33g5ma4k;False;False;[];;"I can't explain the orgasm I got, when I saw subarus reflection in Emilias eyes, not in a weird way, but the fact that they were showing Emilias reflection in subarus eyes, and as soon as I saw that it wasn't the case for Emilia, I was hoping that at the end of the dialogue they would do it for her too, as of ""now she can see"" type of thing. Fucking satisfying as hell.";False;False;;;;1610578457;;False;{};gj5ztzs;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5ztzs/;1610654253;4;True;False;anime;t5_2qh22;;0;[]; -[];;;D4nt3_1;;;[];;;;text;t2_5eyj249g;False;False;[];;That's the thing, his obsession can't be pinpoint easily, but in the novels with the descriptions that are harder to translate to anime there may be an interesting answer as to why, though idk if that counts as spoilers;False;False;;;;1610578474;;False;{};gj5zv7z;False;t3_kwisv4;False;False;t1_gj5j1t1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj5zv7z/;1610654277;4;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Otto probably learned to control it, also it might have a passive mode and a focus mode.;False;False;;;;1610578571;;False;{};gj602pg;False;t3_kwisv4;False;True;t1_gj5zgx4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj602pg/;1610654415;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Thevoidawaits_u;;;[];;;;text;t2_3n0yuh4n;False;False;[];;You're honour, the defendant clearly said dodge. Is sexual assault really a crime when you say dodge?;False;False;;;;1610578575;;False;{};gj60304;False;t3_kwisv4;False;True;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj60304/;1610654422;2;True;False;anime;t5_2qh22;;0;[]; -[];;;pentakiller19;;MAL;[];;http://myanimelist.net/profile/Von19;dark;text;t2_o0oke;False;False;[];;Legendary episode.;False;False;;;;1610578589;;False;{};gj60414;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj60414/;1610654442;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;"They translated it to something like ""Why would I go through all this shit just for a troublesome girl like you"" instead of Pain in the ass woman.";False;False;;;;1610578621;;False;{};gj606fm;False;t3_kwisv4;False;False;t1_gj4y91b;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj606fm/;1610654488;46;True;False;anime;t5_2qh22;;0;[]; -[];;;Anenri;;;[];;;;text;t2_cz4qoai;False;False;[];;She threw a fit because when she woke up, he wasn’t there? What a stupid promise to make. So hard to take anything these characters say seriously.;False;False;;;;1610578690;;False;{};gj60bsa;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj60bsa/;1610654591;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;danny_b87;;;[];;;;text;t2_8uam1;False;False;[];;If you can dodge a dick you can dodge anything;False;False;;;;1610578694;;False;{};gj60c3n;False;t3_kwisv4;False;False;t1_gj5axce;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj60c3n/;1610654597;58;True;False;anime;t5_2qh22;;0;[]; -[];;;Anenri;;;[];;;;text;t2_cz4qoai;False;False;[];;Yeah, he fell in love with the idea of being with her. The first things he says he loves about her are all superficial, arms, height, hair, etc. It’s so stupid.;False;False;;;;1610578783;;False;{};gj60ixo;False;t3_kwisv4;False;False;t1_gj4gkjy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj60ixo/;1610654726;7;True;False;anime;t5_2qh22;;0;[]; -[];;;xDownInPainx;;;[];;;;text;t2_4dvmgc3q;False;False;[];;Would we ever see the opening of ReZero ever again?;False;False;;;;1610578851;;False;{};gj60nzr;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj60nzr/;1610654822;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;If Shakespeare was alive today he'd be the spiciest memelord in the world, I guarantee it.;False;False;;;;1610578913;;False;{};gj60spu;False;t3_kwisv4;False;False;t1_gj4pxyz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj60spu/;1610654914;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MonaThiccAss;;;[];;;;text;t2_8stg2bwj;False;False;[];;RECOUNT THE EPISODES, ITS FAKE NEWS. STORM /r/ANIME!;False;False;;;;1610578931;;False;{};gj60u1v;False;t3_kwisv4;False;True;t1_gj4djlk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj60u1v/;1610654946;0;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"Is the second time Subaru lies, he lied in the Capital episodes 12/13 of season 1, and Subaru lied again, Puck promised to never leave her side in Frozen Bonds he lied, her mother Fortuna apparently lied from what she said last episode.. I would have trust issues too. - -Also Emilia's memories are being re:written with the memories of her past.";False;False;;;;1610578985;;False;{};gj60y2a;False;t3_kwisv4;False;False;t1_gj60bsa;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj60y2a/;1610655036;14;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;Spoiler tag, bro.;False;False;;;;1610578995;;False;{};gj60yss;False;t3_kwisv4;False;True;t1_gj4rr2f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj60yss/;1610655052;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Maybe DLC?;False;False;;;;1610579018;;False;{};gj610gd;False;t3_kwisv4;False;True;t1_gj60nzr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj610gd/;1610655087;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;This episode cut off before the end of the fight, we'll get more explanation next episode most likely. My bet is that despite her horn being gone she can still use some of its power (the root seems to still be present), but the recoil is much more severe. She was bleeding from the same spot it would be, after all.;False;False;;;;1610579082;;False;{};gj6159r;False;t3_kwisv4;False;True;t1_gj4kd12;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6159r/;1610655183;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Anenri;;;[];;;;text;t2_cz4qoai;False;False;[];;"I don’t think they’re being rewritten, she’s just remembering stuff she was forced to forget right? - -I’m just saying it’s such a dumb promise to break and get upset over. What if he had to go poop and just happened to not be there when she woke up? She’d be doing the same thing.";False;True;;comment score below threshold;;1610579109;;False;{};gj6176u;False;t3_kwisv4;False;True;t1_gj60y2a;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6176u/;1610655220;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;CrimeFightingScience;;MAL;[];;death to cat people;dark;text;t2_o6e0e;False;False;[];;Yep. We're seeing the birth of a monster.;False;False;;;;1610579125;;False;{};gj618de;False;t3_kwisv4;False;False;t1_gj4uq0j;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj618de/;1610655245;12;True;False;anime;t5_2qh22;;0;[]; -[];;;CrimsonKing21;;;[];;;;text;t2_e6uxi;False;False;[];;Why yes it is;False;False;;;;1610579128;;False;{};gj618l9;False;t3_kwisv4;False;True;t1_gj4y5p7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj618l9/;1610655249;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;She lived years without her memories, she's a different person, and now new memories are being added on top.. She's going to change.;False;False;;;;1610579238;;False;{};gj61gqq;False;t3_kwisv4;False;True;t1_gj6176u;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj61gqq/;1610655408;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bshave02;;;[];;;;text;t2_3rnlw4pe;False;False;[];;W for the church of Emilia;False;False;;;;1610579320;;False;{};gj61mt3;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj61mt3/;1610655526;3;True;False;anime;t5_2qh22;;0;[]; -[];;;xRazuux;;;[];;;;text;t2_tgivp15;False;False;[];;Yeah I would've loved this whole scene A LOT more with at least 10 less I love you's. After a certain point you're in Emilia's shoes wondering is that all you can say?;False;False;;;;1610579334;;False;{};gj61nwa;False;t3_kwisv4;False;False;t1_gj53w8m;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj61nwa/;1610655549;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Grelp1666;;;[];;;;text;t2_3nnfv5cw;False;False;[];;For a second after that phrase, I thought he was gonna headbut her.;False;False;;;;1610579396;;False;{};gj61sh8;False;t3_kwisv4;False;True;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj61sh8/;1610655642;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;Well, is better for you that you remember them, as they are still coming.;False;False;;;;1610579429;;False;{};gj61uyi;False;t3_kwisv4;False;False;t1_gj5lcjf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj61uyi/;1610655691;4;True;False;anime;t5_2qh22;;0;[]; -[];;;F713AR;;;[];;;;text;t2_bovfgjj;False;False;[];;Time to sort comments by controversial;False;False;;;;1610579434;;False;{};gj61vbq;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj61vbq/;1610655698;4;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;There are some salty people, enjoy!;False;False;;;;1610579532;;False;{};gj622i3;False;t3_kwisv4;False;False;t1_gj61vbq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj622i3/;1610655837;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BigBroSlim;;;[];;;;text;t2_qyutu;False;False;[];;The fact that the first episode is a reference to PATHS is fucking cool.;False;False;;;;1610579608;;False;{};gj6282q;False;t3_kwisv4;False;False;t1_gj4oi08;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6282q/;1610655946;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Grelp1666;;;[];;;;text;t2_3nnfv5cw;False;False;[];;"Can otto talk to mabeasts? Or are they not part of the blessing? - -Imagine his point on view on the failed runs, bein eaten while hearing stuff like ""hungry"", ""yummy""";False;False;;;;1610579613;;False;{};gj628hq;False;t3_kwisv4;False;False;t1_gj4in3u;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj628hq/;1610655953;6;True;False;anime;t5_2qh22;;0;[]; -[];;;NunoxGames;;;[];;;;text;t2_4y92kgf6;False;False;[];;and like if it resets what would he even die to at this point that he hasnt died to in this checkpoint,he has died to garfield ,he has died at the mansion ,he has died to rabits(twice ,one of them being in the arms of a crazy emilia) ,he has died to puk and theres probably a few more im not even remembering ,at this point the story realy has to move on from the sanctuary.;False;False;;;;1610579617;;1610579960.0;{};gj628rs;False;t3_kwisv4;False;False;t1_gj5njtf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj628rs/;1610655958;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Kingturboturtle13;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4v2mq4oo;False;False;[];;That'll be fun to quote out of context;False;False;;;;1610579645;;False;{};gj62atz;False;t3_kwisv4;False;False;t1_gj60c3n;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj62atz/;1610655997;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Hentrus;;;[];;;;text;t2_ce4rh;False;False;[];;Crunchyroll recommended me this exact scene this morning on Youtube before I watched this episode fml;False;False;;;;1610579650;;False;{};gj62b71;False;t3_kwisv4;False;False;t1_gj4i5gp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj62b71/;1610656003;11;True;False;anime;t5_2qh22;;0;[]; -[];;;UberDueler8;;;[];;;;text;t2_485dcj1j;False;False;[];;"Even though this is technically part 2 of season 2, it’s been long enough of a wait that it seems like a new season. - -So I’m thinking, “Holy shit it’s only episode 2”";False;False;;;;1610579761;;False;{};gj62jea;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj62jea/;1610656183;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kingturboturtle13;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4v2mq4oo;False;False;[];;"""Emilia, I want you to know that out of all the white haired waifus I've got in tow, you're the only one I actually want to be there""";False;False;;;;1610579762;;False;{};gj62jhj;False;t3_kwisv4;False;False;t1_gj5svzt;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj62jhj/;1610656185;34;True;False;anime;t5_2qh22;;0;[]; -[];;;Lorik_Bot;;;[];;;;text;t2_1x988uja;False;False;[];;"Many fans will tell you this but the upcoming Arcs are a whole different beast and after Arc 6, which we are currently on, the author said subarus has had it easy up till now. So the suffering scale is i think like season 1 arc (1-2-3)< season 2 (arc4)<< arc5<<<<<<<<<<<<<<arc6, arc 6 is crazy the plot is also crazy arc 6 really is completely crazy. Hope arc 6 is animated nicely without to much censoring.";False;False;;;;1610579789;;False;{};gj62ljb;False;t3_kwisv4;False;False;t1_gj4ig4n;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj62ljb/;1610656225;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Googleflax;;MAL;[];;http://myanimelist.net/animelist/googleflax;dark;text;t2_8s7iv;False;False;[];;My brother was really put off by Subaru this episode and thought he was saying a lot of really incel stuff. Personally, I enjoyed this episode, but I guess to each their own :/;False;False;;;;1610579860;;False;{};gj62qtk;False;t3_kwisv4;False;True;t1_gj4d6is;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj62qtk/;1610656332;1;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"Because she was just heartbroken by Puck so Subaru lying to her and leaving had more impact in her current state. - -And obviously the ""he went to poop"" is not an option, when he literally said to her that he cannot say why he left. - -And last episode she had a flashback with her mom talking about people lying to her to protect her, so it seems people always lied to her.";False;False;;;;1610579863;;False;{};gj62r1j;False;t3_kwisv4;False;True;t1_gj6176u;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj62r1j/;1610656336;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Fehervari;;;[];;;;text;t2_4wj5c6;False;False;[];;Pedophilia? How?;False;False;;;;1610579904;;False;{};gj62u43;False;t3_kwisv4;False;False;t1_gj5trki;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj62u43/;1610656395;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610579926;;False;{};gj62vo0;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj62vo0/;1610656424;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shasan23;;;[];;;;text;t2_a8rw9;False;False;[];;"I only know the evangelian shinji, who matches the second description - -Who's the first Shinji?";False;False;;;;1610579938;;False;{};gj62wk0;False;t3_kwisv4;False;False;t1_gj57zg1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj62wk0/;1610656440;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Anenri;;;[];;;;text;t2_cz4qoai;False;False;[];;Yeah he said that but what I’m saying is she went and hid and made everyone look for her;False;True;;comment score below threshold;;1610579940;;False;{};gj62wr5;False;t3_kwisv4;False;True;t1_gj62r1j;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj62wr5/;1610656444;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;Kingturboturtle13;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4v2mq4oo;False;False;[];;Lmao as soon as I read that my brain filled in the Jump cut to Pardisus Paradoxum(the second one);False;False;;;;1610579956;;False;{};gj62xwb;False;t3_kwisv4;False;False;t1_gj568wm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj62xwb/;1610656466;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Taurus24Silver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Taurus-Silver;light;text;t2_826uaxw;False;False;[];;Yeah, I am fluent in japanese;False;False;;;;1610580013;;False;{};gj6325s;False;t3_kwisv4;False;False;t1_gj4i7op;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6325s/;1610656555;3;True;False;anime;t5_2qh22;;0;[]; -[];;;pleiades1208;;;[];;;;text;t2_8e61j5he;False;False;[];;lol are you so mentally ill that you cant even realize subaru was the one planning all this?;False;True;;comment score below threshold;;1610580038;;False;{};gj633xk;False;t3_kwisv4;False;True;t1_gj5nsv3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj633xk/;1610656588;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610580076;;False;{};gj636p8;False;t3_kwisv4;False;True;t1_gj5zm2v;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj636p8/;1610656643;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Edmundoh;;;[];;;;text;t2_9gcur;False;False;[];;"It's as you understood it, the cat love is just a meme. - -You can see how in the scenes prior he is looking for the truth of what's going on in that situation.";False;False;;;;1610580117;;False;{};gj639tw;False;t3_kwisv4;False;False;t1_gj56a2h;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj639tw/;1610656704;47;True;False;anime;t5_2qh22;;0;[]; -[];;;JesusSandro;;;[];;;;text;t2_10ecq8;False;False;[];;Really miss getting to read u/Llooyd_/ 's analyses after each episode.;False;False;;;;1610580128;;False;{};gj63am4;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj63am4/;1610656722;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Soap646464;;;[];;;;text;t2_2nr0birw;False;False;[];;And thus hundreds of thousands of weebs rejoiced;False;False;;;;1610580144;;1610580718.0;{};gj63bw2;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj63bw2/;1610656750;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610580154;;False;{};gj63cme;False;t3_kwisv4;False;True;t1_gj636p8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj63cme/;1610656768;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Daniel_Kummel;;;[];;;;text;t2_147co5t5;False;False;[];;Cries in Tien and Elkohar;False;False;;;;1610580171;;False;{};gj63dwy;False;t3_kwisv4;False;False;t1_gj5qhvu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj63dwy/;1610656794;4;True;False;anime;t5_2qh22;;0;[]; -[];;;CrashtestO8;;;[];;;;text;t2_56yzlgdl;False;False;[];;:|;False;False;;;;1610580183;;False;{};gj63esw;False;t3_kwisv4;False;False;t1_gj545zh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj63esw/;1610656812;7;True;False;anime;t5_2qh22;;0;[]; -[];;;beqs171;;;[];;;;text;t2_133tcnzn;False;False;[];;Well, she's basically dead so I see no point why anyone would be surprised by this;False;False;;;;1610580186;;False;{};gj63f15;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj63f15/;1610656818;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silverfootwolf;;;[];;;;text;t2_zngx7;False;False;[];;no way, really?;False;False;;;;1610580190;;False;{};gj63fai;False;t3_kwisv4;False;False;t1_gj4nt00;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj63fai/;1610656823;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Grelp1666;;;[];;;;text;t2_3nnfv5cw;False;False;[];;He is his father's son after all. He had half the genes to be a chad.;False;False;;;;1610580272;;False;{};gj63lf0;False;t3_kwisv4;False;False;t1_gj4f2u9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj63lf0/;1610656945;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Soap646464;;;[];;;;text;t2_2nr0birw;False;False;[];;"Am i the only one who thinks ottos character and powers is basically Spice+Wolf=Otto - -Like I can buy him being there son";False;False;;;;1610580323;;False;{};gj63p4u;False;t3_kwisv4;False;False;t1_gj4q1fi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj63p4u/;1610657023;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Kingturboturtle13;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4v2mq4oo;False;False;[];;I see some crossover fanfiction in their future;False;False;;;;1610580348;;False;{};gj63r26;False;t3_kwisv4;False;True;t1_gj5wi2s;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj63r26/;1610657059;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Grelp1666;;;[];;;;text;t2_3nnfv5cw;False;False;[];;"Its 100% romance. 90% from satella and 10% from emilia. - -True that Stella's romance is a bit warped.";False;False;;;;1610580351;;False;{};gj63rbo;False;t3_kwisv4;False;False;t1_gj4x0l9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj63rbo/;1610657066;4;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Technically is 15, but I get you.;False;False;;;;1610580369;;False;{};gj63sng;False;t3_kwisv4;False;True;t1_gj62jea;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj63sng/;1610657090;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kingturboturtle13;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4v2mq4oo;False;False;[];;Sauce, because I need to find the motherfucker that made this monstrosity;False;False;;;;1610580424;;False;{};gj63wou;False;t3_kwisv4;False;True;t1_gj4kwp3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj63wou/;1610657169;3;True;False;anime;t5_2qh22;;0;[]; -[];;;unimagin9tive;;;[];;;;text;t2_oa92z;False;False;[];;"""I'm gonna move my lips like this, and if you get hit, it's your own fault!""";False;False;;;;1610580494;;False;{};gj641ta;False;t3_kwisv4;False;False;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj641ta/;1610657272;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Kingturboturtle13;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4v2mq4oo;False;False;[];;Gotta remember to use this line;False;False;;;;1610580504;;False;{};gj642lk;False;t3_kwisv4;False;True;t1_gj515f0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj642lk/;1610657288;3;True;False;anime;t5_2qh22;;0;[]; -[];;;beqs171;;;[];;;;text;t2_133tcnzn;False;False;[];;Of course timeline is gonna reset because too much progress happened in these 2 episodes, that's it;False;False;;;;1610580573;;False;{};gj647ng;False;t3_kwisv4;False;True;t1_gj4gco8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj647ng/;1610657388;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kingturboturtle13;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4v2mq4oo;False;False;[];;I feel more intrigued by this sub than I feel I should;False;False;;;;1610580593;;False;{};gj64958;False;t3_kwisv4;False;True;t1_gj52i2h;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj64958/;1610657418;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lucian41;;;[];;;;text;t2_eywez;False;False;[];;Can't wait for him to fuck up and die and we will be back to even more suffering, I'm sure we can't have nice things in this story;False;False;;;;1610580599;;False;{};gj649ly;False;t3_kwisv4;False;True;t1_gj4dtps;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj649ly/;1610657426;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HajimeteNHK;;;[];;;;text;t2_4tlyp7gb;False;False;[];;Or Great Teacher Otto;False;False;;;;1610580657;;False;{};gj64dse;False;t3_kwisv4;False;True;t1_gj4fgsp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj64dse/;1610657510;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PowerSamurai;;;[];;;;text;t2_kthne;False;False;[];;No, she just called herself that.;False;False;;;;1610580666;;False;{};gj64ef3;False;t3_kwisv4;False;False;t1_gj5wl4o;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj64ef3/;1610657522;26;True;False;anime;t5_2qh22;;0;[]; -[];;;StefyB;;;[];;;;text;t2_qx1zd;False;False;[];;Yep. I was waiting to watch this episode with my brother after he got done with work, and freakin' Youtube recommendations showed me a thumbnail with them kissing an hour before.;False;False;;;;1610580668;;False;{};gj64ejv;False;t3_kwisv4;False;False;t1_gj62b71;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj64ejv/;1610657525;8;False;False;anime;t5_2qh22;;0;[]; -[];;;Kingturboturtle13;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4v2mq4oo;False;False;[];;On that day, the isekai genre received a grim reminder... *that they still had at least one good show*;False;False;;;;1610580690;;False;{};gj64g4i;False;t3_kwisv4;False;False;t1_gj4oi08;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj64g4i/;1610657556;31;True;False;anime;t5_2qh22;;0;[]; -[];;;Soap646464;;;[];;;;text;t2_2nr0birw;False;False;[];;"I think I’m starting to get the “Emelia best girl” people , oh no - -But it could just be because Rem has been in Vegetable mode for while and it’s been a while since I saw Echidna";False;False;;;;1610580694;;1610581876.0;{};gj64gfr;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj64gfr/;1610657562;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LukeASylva;;;[];;;;text;t2_27379dwu;False;False;[];;Dawwww part of me forgets Emilia is like mentally 14 and super childish when it comes to promises and love;False;False;;;;1610580699;;False;{};gj64gu3;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj64gu3/;1610657570;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PowerSamurai;;;[];;;;text;t2_kthne;False;False;[];;Don't remind me;False;False;;;;1610580704;;False;{};gj64h7x;False;t3_kwisv4;False;True;t1_gj4qx3m;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj64h7x/;1610657579;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Surylias;;;[];;;;text;t2_kj6vc;False;False;[];;Given that she spent most of her life in sleep she's very young from a mental point of view. And throughout the series so far she mostly acted as one as well.;False;False;;;;1610580744;;False;{};gj64k53;False;t3_kwisv4;False;False;t1_gj62u43;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj64k53/;1610657636;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Kingturboturtle13;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4v2mq4oo;False;False;[];;*begins an eternal gambit of pea passing*;False;False;;;;1610580754;;False;{};gj64ktk;False;t3_kwisv4;False;False;t1_gj56ij0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj64ktk/;1610657650;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Soap646464;;;[];;;;text;t2_2nr0birw;False;False;[];;"Subaru: I love you (the first one) - -Me: Oh shit is this happening";False;False;;;;1610580756;;False;{};gj64l05;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj64l05/;1610657655;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Oh__Billy;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Oh_Billy;light;text;t2_30zjzcvz;False;False;[];;Yeah, but that was in season 1, He learned his lesson and now understands that his behaviour before was extremely toxic.;False;False;;;;1610580770;;False;{};gj64m0k;False;t3_kwisv4;False;False;t1_gj55rh5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj64m0k/;1610657673;6;True;False;anime;t5_2qh22;;0;[]; -[];;;PirateKingOmega;;;[];;;;text;t2_123lm2;False;False;[];;i mean that’s literally all there is. the author tweeted out ottos first love was a cat and now it’s in the anime.;False;False;;;;1610580783;;False;{};gj64myk;False;t3_kwisv4;False;False;t1_gj5zbou;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj64myk/;1610657692;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Kobe4accuracy;;;[];;;;text;t2_3nxbvnia;False;False;[];;Ok can someone explain to me garfiels motivation? Why doesn’t he want subaru and emila to meet? I assume hes against emilia completing the trail but what actually happens once the trial is done? What is the crystal on his neck, and why does he sometime kill subaru on sight and other times he seems indifferent? Thanks for anyone who can explain, i watched season 2 part 1 but i think the story got a little muddied for me while i waited.;False;False;;;;1610580847;;False;{};gj64rmv;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj64rmv/;1610657787;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610580877;;False;{};gj64trq;False;t3_kwisv4;False;True;t1_gj4ot8r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj64trq/;1610657827;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;Take heart, it'll be explained before too long.;False;False;;;;1610581052;;False;{};gj656iu;False;t3_kwisv4;False;True;t1_gj4spjc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj656iu/;1610658066;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Godddy;;;[];;;;text;t2_dfrpx;False;False;[];;The zero in the title is for the amount of openings and endings per episode;False;False;;;;1610581074;;False;{};gj6585i;False;t3_kwisv4;False;True;t1_gj4oxe6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6585i/;1610658096;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;In the WN is said that she didn't age mentally, only physically, because of the ice, so her mind is a few years behind her body, but she also had couple years after to readjust to the situation, so it's complicated.;False;False;;;;1610581097;;False;{};gj659qs;False;t3_kwisv4;False;False;t1_gj62u43;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj659qs/;1610658126;4;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;Later though he says that he knows she's not perfect, that she's just a normal girl who's scared and in a bad situation, but she's not alone, because he loves her.;False;False;;;;1610581118;;False;{};gj65b9o;False;t3_kwisv4;False;True;t1_gj4lpqx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj65b9o/;1610658153;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;*^Welcome ^brother, ^welcome ^to ^the ^church ^of ^Emilia~~tan.*;False;False;;;;1610581153;;False;{};gj65dun;False;t3_kwisv4;False;True;t1_gj64gfr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj65dun/;1610658201;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TerrainIII;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TerrainIII;light;text;t2_128jjr;False;False;[];;That laugh haunts me.;False;False;;;;1610581154;;False;{};gj65dx7;False;t3_kwisv4;False;False;t1_gj4zjuf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj65dx7/;1610658202;9;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;She's a train wreck and a pain in the ass.;False;False;;;;1610581191;;False;{};gj65gke;False;t3_kwisv4;False;False;t1_gj64gu3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj65gke/;1610658249;4;True;False;anime;t5_2qh22;;0;[]; -[];;;PacoTaco321;;;[];;;;text;t2_8yxkb;False;False;[];;"""You're not an angel"" - -/r/Re_Zero on suicide watch";False;False;;;;1610581207;;False;{};gj65hov;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj65hov/;1610658268;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610581233;;False;{};gj65jn4;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj65jn4/;1610658303;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Duliu20;;;[];;;;text;t2_dq66bmb;False;False;[];;This mad man finally did it. He turned from SIMP to CHAD. I don't expect this to last, but god damn it feels good to see my man Subaru finally getting some action with Emilia;False;False;;;;1610581268;;False;{};gj65m9o;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj65m9o/;1610658351;2;True;False;anime;t5_2qh22;;0;[]; -[];;;zaretball;;;[];;;;text;t2_eb3su;False;False;[];;Garf probably left them unconscious in the forest.;False;False;;;;1610581282;;False;{};gj65n9p;False;t3_kwisv4;False;False;t1_gj5ndx0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj65n9p/;1610658370;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PowerSamurai;;;[];;;;text;t2_kthne;False;False;[];;"""Ram's sister"" is this how we are referring to Rem now?";False;False;;;;1610581342;;False;{};gj65rp6;False;t3_kwisv4;False;False;t1_gj5xci9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj65rp6/;1610658451;5;True;False;anime;t5_2qh22;;0;[]; -[];;;tala_kitok;;;[];;;;text;t2_4x3jg3ah;False;False;[];;Is this for real? I haven't read the LN yet.;False;False;;;;1610581360;;False;{};gj65t12;False;t3_kwisv4;False;True;t1_gj4fb40;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj65t12/;1610658477;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SpuncerT;;;[];;;;text;t2_132845;False;False;[];;Going from Declaration of War in AoT to Declaration of Love here. Good week in anime;False;False;;;;1610581396;;False;{};gj65vly;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj65vly/;1610658525;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NapaSinitro;;;[];;;;text;t2_1ncuzeer;False;False;[];;"No, the end of the fight (the definitive moment) the one that in the web novel they say ""and that's how the fight ended"" was when Ram uses Al Huma so yeah it was one single attack and it was pretty meh 6/10 - -Also what about the 3 prerequisites or the animal tricks legit otto didn't prove nothing other than he can run and throw rocks for about 5 minutes while bleeding from his ears and thinking of his sad and long ass backstory legit I hate people that scream how much better the novels are but man this cut did otto so dirty this was worse than the I know hell cut.";False;False;;;;1610581425;;1610581611.0;{};gj65xrj;False;t3_kwisv4;False;True;t1_gj5o611;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj65xrj/;1610658565;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;It’s not exclusive to saying on deathbeds lol;False;False;;;;1610581448;;False;{};gj65zdx;False;t3_kwisv4;False;False;t1_gj5c8x7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj65zdx/;1610658596;4;True;False;anime;t5_2qh22;;0;[]; -[];;;darkram00;;;[];;;;text;t2_6bkpifgi;False;False;[];;Guys, am I the only one who didn't quite enjoy the second part of the episode? I swear, I'm neither a Rem fan nor an Emilia hater, it just didn't move me at all. I can't bring myself to empathize with their relationship;False;False;;;;1610581487;;False;{};gj6625f;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6625f/;1610658649;19;True;False;anime;t5_2qh22;;0;[]; -[];;;HelloThere4298;;;[];;;;text;t2_1zh1q2b1;False;False;[];;Yeah, I don't think even this is enough to beat what'll happen in the next episode of AoT.;False;False;;;;1610581490;;False;{};gj662cq;False;t3_kwisv4;False;True;t1_gj5y0qr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj662cq/;1610658652;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> Why doesn’t he want subaru and emila to meet? - -The problem is in the location of the meeting, Garfiel last cour made it pretty clear that wouldn't let Subaru inside the crypt in case Subaru has ties with the Witches Cult, because of the Witch of Envy miasma. - ->What is the crystal on his neck, and why does he sometime kill subaru on sight and other times he seems indifferent? - -Because of the smell, because he doesn't trust outsiders, because he doesn't like being told what to do. - -Just ask if you're still confused.";False;False;;;;1610581525;;False;{};gj664uf;False;t3_kwisv4;False;True;t1_gj64rmv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj664uf/;1610658700;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lovestaring;;;[];;;;text;t2_11d4dm;False;False;[];;Why did subaru left her tho , I don't get it ?;False;False;;;;1610581530;;False;{};gj6659i;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6659i/;1610658707;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Cactusblah;;;[];;;;text;t2_e0pc4;False;False;[];;Obnoxiously bad episode. This entire arc has been such a disappointment.;False;False;;;;1610581565;;1610581797.0;{};gj667q6;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj667q6/;1610658754;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Ud43u5Bum;;;[];;;;text;t2_8qz7p10z;False;False;[];;"Not going to lie but the pace whiplash from otto backstory to an instant another heavy dialogue moment really wears me down to the point i didnt feel much for emilia/suberu dynamic despite being good. - -Feels like otto backstory shouldve establish earlier like during suberu rescue and then at least they could’ve done this emilia scene toward the end of the last episode or the first part of this episode. - -I can see that an hour a episode benefit this season much more than last due to many moment like these. - -Overall it an ok episode because the pace ruin it for me. - -But outside of it i can see it great because we learn more about otto and the dysfunctional relationship of suberu and emilia.";False;False;;;;1610581588;;False;{};gj669gh;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj669gh/;1610658785;9;True;False;anime;t5_2qh22;;0;[]; -[];;;CptMacHammer;;;[];;;;text;t2_c104n;False;False;[];;Boy looking at back my own experiences with relationships and fights that hurted.;False;False;;;;1610581594;;False;{};gj669wh;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj669wh/;1610658793;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Insertblamehere;;;[];;;;text;t2_r4h51xz;False;False;[];;If the wait for a season 3 is anything like the one for season 2 they'll certainly have plenty of time to make it lmao.;False;False;;;;1610581602;;False;{};gj66ago;False;t3_kwisv4;False;True;t1_gj5v734;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj66ago/;1610658803;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Thevoidawaits_u;;;[];;;;text;t2_3n0yuh4n;False;False;[];;One of them sisters got her ass handed to her and now spends her days sleeping like a lazy bum. I'm pretty sure the is no curse, everyone is just embarrassed to talk about that blue haired housemaid.;False;False;;;;1610581676;;False;{};gj66fuv;False;t3_kwisv4;False;True;t1_gj65rp6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj66fuv/;1610658905;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;"""Mikasa"" - -""Yes?"" - -""I love Reiner."" - -""Yes.""";False;False;;;;1610581688;;False;{};gj66go0;False;t3_kwisv4;False;True;t1_gj59p3x;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj66go0/;1610658919;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PacoTaco321;;;[];;;;text;t2_8yxkb;False;False;[];;It worked well for about 5 seconds.;False;False;;;;1610581702;;False;{};gj66hoh;False;t3_kwisv4;False;True;t1_gj4denl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj66hoh/;1610658938;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sum1_;;;[];;;;text;t2_13xzov;False;False;[];;If they end up playing Styx Helix at some point this season, I will cry.;False;False;;;;1610581704;;False;{};gj66hu1;False;t3_kwisv4;False;False;t1_gj4dvoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj66hu1/;1610658941;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ReiahlTLI;;;[];;;;text;t2_inivd9e;False;False;[];;"Oh, I know about the clues that's strewn about for Otto, including his abilities, but I wanted it to be more at the forefront since he's playing an important role this arc and has had some key moments. I also wanted a bit more interaction with him and Subaru because it feels like he's not really an important enough character to him to make the speech at the beginning of last episode. - -I mean it's really cool that it's tossing bits and pieces in a low key way but like sometimes you gotta put them in the spotlight a bit to get the punch you want.";False;False;;;;1610581707;;False;{};gj66i4o;False;t3_kwisv4;False;True;t1_gj5ql3w;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj66i4o/;1610658947;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hentrus;;;[];;;;text;t2_ce4rh;False;False;[];;I sent crunchyroll an angry message LOL FUCKKKK;False;False;;;;1610581736;;False;{};gj66k6h;False;t3_kwisv4;False;False;t1_gj64ejv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj66k6h/;1610658984;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;"Yeah, I get that Subaru and Emilia’s relationship has to be this way. I don’t mind it at all. Instead it’s important for their relationship and characters. - -I’m just saying it’s not *necessary* to argue, IRL. Relationships can work without arguing, just that.";False;False;;;;1610581808;;False;{};gj66pc5;False;t3_kwisv4;False;False;t1_gj4zqm6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj66pc5/;1610659083;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;EasilyDelighted;;;[];;;;text;t2_8t8z8;False;False;[];;When he flashed in her eyes at the end, I was like YESSSSSSSSSS;False;False;;;;1610581820;;False;{};gj66q66;False;t3_kwisv4;False;False;t1_gj4g4as;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj66q66/;1610659100;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;">I can't bring myself to empathize with their relationship - -I'm only guessing but maybe you never had a fight with a significant other that ended maybe in similar fashion? You get mad at each other and then make up and there's that *bittersweet* taste.";False;False;;;;1610581824;;False;{};gj66qhw;False;t3_kwisv4;False;False;t1_gj6625f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj66qhw/;1610659106;5;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;I've been pants-pissingly madly awaiting today since I figured out which chapter was being adapted this week. Thank God now I don't have to hold it in any more.;False;False;;;;1610581833;;False;{};gj66r31;False;t3_kwisv4;False;True;t1_gj4k88b;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj66r31/;1610659117;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;but like I said, it’s not *necessary*. They can still talk it out normally. There’s no reason for them to fight/quarrel over things.;False;False;;;;1610581866;;False;{};gj66te6;False;t3_kwisv4;False;True;t1_gj5f2jl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj66te6/;1610659161;0;True;False;anime;t5_2qh22;;0;[]; -[];;;LippyTitan;;;[];;;;text;t2_10wbs7;False;False;[];;So how the fuck did he get run out of town? Was it by literally a horde of cats or something?;False;False;;;;1610581878;;False;{};gj66ucv;False;t3_kwisv4;False;False;t1_gj4fb40;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj66ucv/;1610659180;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;Climax? Dude we have like 11 more weeks to go.;False;False;;;;1610581899;;False;{};gj66vs8;False;t3_kwisv4;False;True;t1_gj4pgd8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj66vs8/;1610659206;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610581942;;False;{};gj66ywx;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj66ywx/;1610659266;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;">Oh, I know about the clues that's strewn about for Otto, including his abilities, but I wanted it to be more at the forefront since he's playing an important role this arc and has had some key moments. - -They cut a lot from the LN, you can always read it for more and more smooth story telling, the most important parts has in the episode.";False;False;;;;1610581943;;False;{};gj66yyw;False;t3_kwisv4;False;True;t1_gj66i4o;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj66yyw/;1610659267;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rokusi;;;[];;;;text;t2_4cnt8;False;False;[];;"I took it the opposite way. Patrasche is giving me some serious ""One fucking move towards my man and there won't be enough of you left to bury"" vibes.";False;False;;;;1610581987;;False;{};gj6724n;False;t3_kwisv4;False;False;t1_gj55rf7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6724n/;1610659327;14;True;False;anime;t5_2qh22;;0;[]; -[];;;MisterMaxy;;;[];;;;text;t2_ymkzw;False;False;[];;Otto is actually the goat of RE: Zero;False;False;;;;1610581988;;False;{};gj6725m;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6725m/;1610659328;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LumpyChicken;;;[];;;;text;t2_12phvscu;False;False;[];;"It's really not a good way to ask for consent at all since it places the onus on her to act if she doesn't want it. Can't really blame him since he is a teenager in his first relationship but please don't think this is a good example of how to actively get consent. - - -EDIT: To be clear I think this is extremely well written and is totally realistic for how a real teenager approaches this situation. I also think subaru at least tried to do the right thing, he just didn't quite do it properly";False;False;;;;1610581996;;1610590296.0;{};gj672tg;False;t3_kwisv4;False;False;t1_gj4t5o9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj672tg/;1610659341;33;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Because he's busy doing the plan with Otto he only had 3 days, now 2 to try and save everyone.;False;False;;;;1610582031;;False;{};gj675bp;False;t3_kwisv4;False;True;t1_gj6659i;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj675bp/;1610659390;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KakoPuff;;;[];;;;text;t2_r6ec1;False;False;[];;"Emilia has the WORST self-esteem of any heroine ever. She genuinely doesn't believe anyone could love her honestly. They all have to be lying. Any small slip up, regardless of context, is just proof they're liars. Like she declared Subaru a liar for the great sin of: Not being there when she woke up. - -Puck: Hey, I need to leave. Your contract with me is actively stopping you from completing this trial and if I don't break it you and everyone here will die. I love you. Be strong. - -Emilia: Oh, so you're a liar who never loved me? Cool, good to know.";False;False;;;;1610582042;;False;{};gj6762j;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6762j/;1610659405;8;True;False;anime;t5_2qh22;;0;[]; -[];;;garmonthenightmare;;;[];;;;text;t2_tpz2o;False;False;[];;Rem can't catch a break even at her lowest point she is still losing.;False;False;;;;1610582147;;False;{};gj67dij;False;t3_kwisv4;False;True;t1_gj4pe39;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj67dij/;1610659552;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MidLaneEasy;;;[];;;;text;t2_10igoo;False;False;[];;Someone wholesome award it please;False;False;;;;1610582191;;False;{};gj67gm0;False;t3_kwisv4;False;True;t1_gj4kwp3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj67gm0/;1610659608;3;True;False;anime;t5_2qh22;;0;[]; -[];;;garmonthenightmare;;;[];;;;text;t2_tpz2o;False;False;[];;I think the first Shinji is the one from Fate.;False;False;;;;1610582215;;False;{};gj67idp;False;t3_kwisv4;False;False;t1_gj62wk0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj67idp/;1610659640;14;True;False;anime;t5_2qh22;;0;[]; -[];;;joe4553;;MAL;[];;https://myanimelist.net/animelist/EmiyaRin;dark;text;t2_nujxw;False;False;[];;Subaru from simp to chad in one episode.;False;False;;;;1610582223;;False;{};gj67izf;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj67izf/;1610659651;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ieatwabbits;;;[];;;;text;t2_bz2s8;False;False;[];;But you realize the life she grew up living? Did you watch the movie? She was unfrozen with the only Puck as her friend/guardian while the people at the village despised her. This is a twist from what we usually see in heroine as you mentioned, but I like this spin they put.;False;False;;;;1610582240;;False;{};gj67k7t;False;t3_kwisv4;False;False;t1_gj6762j;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj67k7t/;1610659674;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Fehervari;;;[];;;;text;t2_4wj5c6;False;False;[];;Time was essentially stopped for her while she was in the ice, so she didn't age either mentally or phisically. She still looked 9-ish when she came out of the ice, afterall. Obviously, a lot of time passed since then. We also know that she might be significantly older than she looks, because of her remark to Subaru in the very first episode. She had plenty of time to grow up since she came out of the ice, so even if she's immature like you say, that's not because she's a child trapped in an adolescent/adult body.;False;False;;;;1610582400;;False;{};gj67vkv;False;t3_kwisv4;False;False;t1_gj64k53;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj67vkv/;1610659898;8;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> otto backstory shouldve establish earlier - -It was establish in Season 1 just not shown in a flash back (episodes 14, 16, 17, 24, 25 do Otto exposition), it includes clues about its family, background and ability.";False;False;;;;1610582412;;False;{};gj67wi8;False;t3_kwisv4;False;True;t1_gj669gh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj67wi8/;1610659915;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CatSezWoof;;;[];;;;text;t2_ddlau;False;False;[];;I feel like this is an anime made for light novel/web novel readers to enjoy. There’s a loooot of dialogue that’s really boring from an anime only perspective but is probably exciting to someone who’s read the ln/wn and like having every scene/dialogue included and not cut;False;False;;;;1610582421;;False;{};gj67x7f;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj67x7f/;1610659929;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Lum_ow;;;[];;;;text;t2_3cjuziwo;False;False;[];;fair ^;False;False;;;;1610582452;;False;{};gj67zfm;False;t3_kwisv4;False;False;t1_gj672tg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj67zfm/;1610659970;13;True;False;anime;t5_2qh22;;0;[]; -[];;;asian_hans;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Shadow_Haunter12;light;text;t2_btv3xjy;False;False;[];;I wonder if ability would come to use to deal with that situation;False;False;;;;1610582473;;False;{};gj680xs;False;t3_kwisv4;False;True;t1_gj5lb8h;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj680xs/;1610659998;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;It's the ***ghost of christmas past***.;False;False;;;;1610582485;;False;{};gj681te;False;t3_kwisv4;False;True;t1_gj669wh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj681te/;1610660014;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ggameplayer;;;[];;;;text;t2_sav88;False;False;[];;Holy shit, does anyone have eye bleach?;False;False;;;;1610582487;;False;{};gj681vv;False;t3_kwisv4;False;True;t1_gj4kwp3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj681vv/;1610660015;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kyzen142;;;[];;;;text;t2_16gzt2ir;False;False;[];;Garfield is anoying af he needs to die cuz we all know how willing to kill anyone that goes against him;False;False;;;;1610582488;;False;{};gj681zk;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj681zk/;1610660018;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> They all have to be lying. - -She can't even trust her memories, of course she doubts everything.";False;False;;;;1610582592;;False;{};gj689da;False;t3_kwisv4;False;False;t1_gj6762j;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj689da/;1610660161;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Fehervari;;;[];;;;text;t2_4wj5c6;False;False;[];;In the Frozen Bonds OVA, it doesn't seem like her body aged compared to the time she froze though. Emilia said she froze when she was 9-ish, and she looked just like that in the OVA, when she woke up from the ice.;False;False;;;;1610582633;;False;{};gj68c9y;False;t3_kwisv4;False;False;t1_gj659qs;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj68c9y/;1610660216;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Portgust;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_2tyc4wpc;False;False;[];;"The people that make ReZero anime sure value the quality of ReZero more than they value the money they receive from ads. -Season two has been banging with 27 minutes episode without OP and ED for a few episodes now.";False;False;;;;1610582645;;False;{};gj68d3f;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj68d3f/;1610660231;2;True;False;anime;t5_2qh22;;0;[]; -[];;;poverty_bear;;;[];;;;text;t2_7x0jamc5;False;False;[];;consent is important kids;False;False;;;;1610582716;;False;{};gj68i66;False;t3_kwisv4;False;False;t1_gj4ky6v;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj68i66/;1610660331;5;True;False;anime;t5_2qh22;;0;[]; -[];;;pleiades1208;;;[];;;;text;t2_8e61j5he;False;False;[];;lol then dont watch it . it is not like anybody is forcing you. Everybody disagrees with your outrageous remarks anyway;False;True;;comment score below threshold;;1610582773;;False;{};gj68m7w;False;t3_kwisv4;False;True;t1_gj667q6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj68m7w/;1610660412;-19;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;">light novel/web novel readers to enjoy. - -Or anyone that had similar life experiences? - ->There’s a loooot of dialogue that’s really boring - -I see the problem, didn't you watch season 1? Episode 18 is just dialog between two characters.";False;False;;;;1610582815;;False;{};gj68p8g;False;t3_kwisv4;False;False;t1_gj67x7f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj68p8g/;1610660474;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Butt_Chug_Brother;;;[];;;;text;t2_69wfaxjk;False;False;[];;Tfw she decides to Mikiri Counter instead;False;False;;;;1610582830;;False;{};gj68qar;False;t3_kwisv4;False;False;t1_gj5axce;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj68qar/;1610660498;115;True;False;anime;t5_2qh22;;0;[]; -[];;;darkram00;;;[];;;;text;t2_6bkpifgi;False;False;[];;"I got that, but in your opinion does it make sense to obsessively say ""I love you"" to a person who apparently has a hard time understanding such feelings? (Emilia said that herself last season). In such cases, I think you should let the facts speak for themselves instead of tormenting her with words that make her feel guilty and self-coscious";False;False;;;;1610582865;;False;{};gj68ssa;False;t3_kwisv4;False;False;t1_gj66qhw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj68ssa/;1610660546;11;True;False;anime;t5_2qh22;;0;[]; -[];;;asian_hans;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Shadow_Haunter12;light;text;t2_btv3xjy;False;False;[];;this has to be the final timeline for this arc, right? Right?!;False;False;;;;1610582912;;False;{};gj68w67;False;t3_kwisv4;False;True;t1_gj4gco8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj68w67/;1610660619;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lovestaring;;;[];;;;text;t2_11d4dm;False;False;[];;Wait 3 days to what ?? Was I really not paying attention ?;False;False;;;;1610583031;;False;{};gj694ks;False;t3_kwisv4;False;True;t1_gj675bp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj694ks/;1610660780;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Anon199760;;;[];;;;text;t2_49baaa9v;False;False;[];;Also don't forget the 28 min episodes! I think we're taking it a little too much for granted lately...;False;False;;;;1610583057;;False;{};gj696g4;False;t3_kwisv4;False;False;t1_gj4eveg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj696g4/;1610660815;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610583119;;1610584217.0;{};gj69at0;False;t3_kwisv4;False;True;t1_gj68c9y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj69at0/;1610660899;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Butt_Chug_Brother;;;[];;;;text;t2_69wfaxjk;False;False;[];;***CURSED***;False;False;;;;1610583130;;False;{};gj69bks;False;t3_kwisv4;False;True;t1_gj4kwp3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj69bks/;1610660916;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;They paid season 1, times over just from Rem merchandise.;False;False;;;;1610583228;;False;{};gj69iod;False;t3_kwisv4;False;False;t1_gj68d3f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj69iod/;1610661061;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BadLuckBen;;;[];;;;text;t2_9ns64;False;False;[];;While weird, I guess if you can spiritually link with living creatures it would change your view on them and cause you to view them as equals.;False;False;;;;1610583251;;False;{};gj69kdf;False;t3_kwisv4;False;False;t1_gj4x90g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj69kdf/;1610661094;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Ud43u5Bum;;;[];;;;text;t2_8qz7p10z;False;False;[];;"No i get that. I mean his entirety of flashback in full showing like in this episode. - -I feel like during his rescue of suberu in the jail? Or b4 or after it would be nice to show this flashback. - -This episode lead me to believe to be only otto/ram episode and a little bit of emilia/suberu. So by finishing otto and start the next heavy emotional dialogue after is very taxing (to me at least).";False;False;;;;1610583364;;False;{};gj69scb;False;t3_kwisv4;False;True;t1_gj67wi8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj69scb/;1610661252;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Subaru made a bet with Roswaal and Roswaal, and Roswaal said that he'd bring the Snow to sanctuary aka rabbits, and the assassins to the mansion in 3 days.;False;False;;;;1610583396;;False;{};gj69unw;False;t3_kwisv4;False;False;t1_gj694ks;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj69unw/;1610661305;3;True;False;anime;t5_2qh22;;0;[]; -[];;;EndTrophy;;;[];;;;text;t2_pchkz;False;False;[];;thought he was about to slap her;False;False;;;;1610583466;;False;{};gj69zpl;False;t3_kwisv4;False;True;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj69zpl/;1610661403;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NegimaSonic;;MAL;[];;http://myanimelist.net/animelist/NegimaSonic;dark;text;t2_69g3l;False;False;[];;I happened to be in the area.;False;False;;;;1610583473;;False;{};gj6a06p;False;t3_kwisv4;False;False;t1_gj539ja;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6a06p/;1610661411;4;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;It's all good I really hope one day you can understand why I find this episode so great.;False;False;;;;1610583477;;False;{};gj6a0gx;False;t3_kwisv4;False;True;t1_gj68ssa;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6a0gx/;1610661419;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LackingTact19;;AP;[];;http://www.anime-planet.com/users/furfeyl;dark;text;t2_95wby;False;False;[];;Number of opening and ending this episode? 0, again.;False;False;;;;1610583504;;False;{};gj6a2gw;False;t3_kwisv4;False;True;t1_gj4fwpl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6a2gw/;1610661460;3;True;False;anime;t5_2qh22;;0;[]; -[];;;entelechtual;;;[];;;;text;t2_1223l2;False;False;[];;So that’s why Subaru likes Otto. He realized deep down that he found someone as masochistic and willing to get himself beaten up time and time again as he was.;False;False;;;;1610583504;;False;{};gj6a2hg;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6a2hg/;1610661460;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Juicebeetiling;;;[];;;;text;t2_497wduu4;False;False;[];;"*ahem* - -LETS FUCKING GOOOOOOOO";False;False;;;;1610583599;;False;{};gj6a9bg;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6a9bg/;1610661597;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CatSezWoof;;;[];;;;text;t2_ddlau;False;False;[];;Episode 18 is my most disliked episode of the series. I like re zero and don’t want it to all be action but it gets boring when two characters repeat the same things to each other over and over again;False;False;;;;1610583633;;False;{};gj6absz;False;t3_kwisv4;False;True;t1_gj68p8g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6absz/;1610661644;0;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;I can see that, in a perfect world, but I still glad he got this amazing episode.;False;False;;;;1610583662;;False;{};gj6advx;False;t3_kwisv4;False;True;t1_gj69scb;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6advx/;1610661683;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Sadly it appears that what is boring for you is pretty sweet for me.;False;False;;;;1610583738;;False;{};gj6aj8t;False;t3_kwisv4;False;False;t1_gj6absz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6aj8t/;1610661784;4;True;False;anime;t5_2qh22;;0;[]; -[];;;CatSezWoof;;;[];;;;text;t2_ddlau;False;False;[];;Otto be getting tips on how to contain shifters from that Marleyan soldier that [Attack on Titan](/s “trapped Pieck and Porco”);False;False;;;;1610583768;;False;{};gj6alee;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6alee/;1610661822;6;True;False;anime;t5_2qh22;;0;[]; -[];;;PPGN_DM_Exia;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PPGN_DM_Exia;light;text;t2_rzaut;False;False;[];;Totally agreed! We get a lot more of a realistic and nuanced relationship here than even most romance anime.;False;False;;;;1610583864;;False;{};gj6as9t;False;t3_kwisv4;False;False;t1_gj4o4hp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6as9t/;1610661947;4;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Now that's an unexpected crossover.;False;False;;;;1610583902;;False;{};gj6auz4;False;t3_kwisv4;False;True;t1_gj6alee;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6auz4/;1610661998;2;True;False;anime;t5_2qh22;;0;[]; -[];;;eWorthless;;;[];;;;text;t2_5bauuja1;False;False;[];;That part is kinda glossed over but the author explained it on twitter, basically since Otto for the longest time cannot distinguish between human speech and animal speech due to his gift so all living things were the same to him so his first love was a cat wasnt weird for him at the time;False;False;;;;1610583982;;False;{};gj6b0p2;False;t3_kwisv4;False;False;t1_gj5pvpy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6b0p2/;1610662103;68;True;False;anime;t5_2qh22;;0;[]; -[];;;homie_down;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/sodumblol;light;text;t2_zsyc0;False;False;[];;"I know this is an unpopular opinion, and I'm not stating that those who like her are wrong, but man I really dislike Emilia. I get that she's a complex, flawed, struggling character like so many others in the world of Re:Zero. But every scene she's in I just can't bring myself to like her, to root for her, or to enjoy her presence. So many times especially in episodes like these I wonder why the protagonist of the story had to fall in love with a character like her, as cruel as that is to say. - -Not trying to start any heated discussions or assert my opinion as correct. Just wanted to express how I still feel about Emilia after both watching the anime & reading the WN.";False;False;;;;1610583987;;False;{};gj6b11y;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6b11y/;1610662109;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Mtachii;;;[];;;;text;t2_2wsvjzav;False;False;[];;"What an amazing episode, "" If just loving you isn't a reason to believe in you... then who the hell would go through all this suffering?"" Subaru directed these words at Emilia but they're also very applicable to our everyday lives. Why go through all the hardships of life if not for believing in something and loving what you believe in?";False;False;;;;1610584056;;False;{};gj6b5z4;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6b5z4/;1610662202;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PPGN_DM_Exia;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PPGN_DM_Exia;light;text;t2_rzaut;False;False;[];;This definitely felt like the end of a season, not the start of one. Much like the recent AoT episode, the VAs really showed their talent in this one.;False;False;;;;1610584175;;False;{};gj6bekz;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6bekz/;1610662359;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GGG100;;;[];;;;text;t2_n30n6;False;False;[];;It’s basically a sequel to that episode;False;False;;;;1610584186;;False;{};gj6bfea;False;t3_kwisv4;False;True;t1_gj5svia;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6bfea/;1610662373;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GoldenDude;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GoldenBoy808;light;text;t2_ay8d1;False;False;[];;I can agree. I also didn’t like the snowflake filter in the previous episode, but it’s just a minor thing to me;False;False;;;;1610584251;;False;{};gj6bk3g;False;t3_kwisv4;False;False;t1_gj4ewyy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6bk3g/;1610662461;3;True;False;anime;t5_2qh22;;0;[]; -[];;;frantruck;;;[];;;;text;t2_r0rjk;False;False;[];;You know they're really building for this to be the final loop, but I can't clear that niggling anxiety in the back of my head that everything could still go to shit.;False;False;;;;1610584251;;False;{};gj6bk4b;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6bk4b/;1610662462;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mtachii;;;[];;;;text;t2_2wsvjzav;False;False;[];;Subaru leaving an emotionally unstable Emilia asking to hold his hand? Man I can't wait to see what he was plotting because it had to have been something grand.;False;False;;;;1610584255;;False;{};gj6bkds;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6bkds/;1610662466;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Radinax;;;[];;;;text;t2_iextq;False;False;[];;I go with this theory as well, even if the author said they were two complete different persons.;False;False;;;;1610584337;;False;{};gj6bq7e;False;t3_kwisv4;False;True;t1_gj4uq0j;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6bq7e/;1610662573;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BakaFame;;;[];;;;text;t2_zfj4h;False;False;[];;It was ok. I understand the importance of the last half of the episode, but it was boring to me.;False;False;;;;1610584348;;False;{};gj6bqyq;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6bqyq/;1610662589;7;True;False;anime;t5_2qh22;;0;[]; -[];;;thedicestoppedrollin;;;[];;;;text;t2_3uzc4kbl;False;False;[];;That's my thought too. Subaru has been making her too reliant on him in too many ways. Eventually she will snap and will become obsessed with him. Also there's got to be a plot-relevant reason she introduced herself as Satella;False;False;;;;1610584370;;False;{};gj6bsgr;False;t3_kwisv4;False;True;t1_gj4uq0j;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6bsgr/;1610662620;2;True;False;anime;t5_2qh22;;0;[]; -[];;;01000001-01001011;;;[];;;;text;t2_np0e44v;False;False;[];;"I'm sorry what? - -How is this at all realistic. Just shouting ""I love you"" over and over again does nothing. He barely hit the point of her issues and in no real way. ""I believe in you cause I love you"" would do nothing for someone irl. - -Sure, the flow of it was pretty accurate, an argument where they start off sorta neutral but then emotions fly and at the end a reconcilliation, but the subject matter is not realistic at all.";False;False;;;;1610584376;;False;{};gj6bsuj;False;t3_kwisv4;False;False;t1_gj4jfdp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6bsuj/;1610662629;7;True;False;anime;t5_2qh22;;0;[]; -[];;;LeoGiacometti;;;[];;;;text;t2_13n8qv;False;False;[];;"I don't know if this is an adaptation thing but the whole scene with Subaru and Emilia felt extremely dragged. It was indeed supposed to be a big thing, but it just felt like they tried to fill the time but didn't know what to put in there. The dialogue feels repetitive, and the dynamic between the characters feels like a bunch of stumbles until it just ""clicks"" for no reason. I won't say I didn't like the episode, but I expected more.";False;False;;;;1610584392;;False;{};gj6btx3;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6btx3/;1610662649;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Aschentei;;;[];;;;text;t2_z1t0l;False;False;[];;so that's the next title! it's not 6;False;False;;;;1610584400;;False;{};gj6buh1;False;t3_kwisv4;False;True;t1_gj4fgsp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6buh1/;1610662660;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuck_Shinji;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Fuck Shinji(fate);light;text;t2_7xrbju2m;False;False;[];;didn't expect to see a tsukihime meme here;False;False;;;;1610584427;;False;{};gj6bwem;False;t3_kwisv4;False;False;t1_gj4kwp3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6bwem/;1610662695;6;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> had to fall in love with a character like her - -Remember that we had no friends for a long time; had been in isolation too; Emilia is the first person to show any empathy aside from his parents in probably years, and she's beautiful to boot.";False;False;;;;1610584464;;False;{};gj6byzv;False;t3_kwisv4;False;True;t1_gj6b11y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6byzv/;1610662744;3;True;False;anime;t5_2qh22;;0;[]; -[];;;psychsucks;;;[];;;;text;t2_7pinf0kz;False;False;[];;*crunch*;False;False;;;;1610584490;;False;{};gj6c0vd;False;t3_kwisv4;False;False;t1_gj68qar;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6c0vd/;1610662782;27;True;False;anime;t5_2qh22;;0;[]; -[];;;boozbender;;;[];;;;text;t2_7xun8dzs;False;False;[];;Shoutout to the studio for not skimping on screentime, aren't both episodes 25M+?;False;False;;;;1610584509;;False;{};gj6c24l;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6c24l/;1610662808;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;So true.;False;False;;;;1610584514;;False;{};gj6c2hz;False;t3_kwisv4;False;True;t1_gj6b5z4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6c2hz/;1610662815;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LegendaryNess;;;[];;;;text;t2_41nd7r8o;False;False;[];;Ngl isnt this creepy since emilia is mentally 14. I want to like this, I just can’t tbh.;False;False;;;;1610584527;;False;{};gj6c3dr;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6c3dr/;1610662843;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Still 10 episodes left right? right!;False;False;;;;1610584548;;False;{};gj6c4vs;False;t3_kwisv4;False;True;t1_gj6bekz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6c4vs/;1610662871;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;That's Re:Zero for you.;False;False;;;;1610584573;;False;{};gj6c6nr;False;t3_kwisv4;False;True;t1_gj6bk4b;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6c6nr/;1610662902;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Cantcookeggs;;;[];;;;text;t2_qaud77p;False;False;[];;Okay so i commented last week how Subaru left Emilia at night and that there should be an explanation. I watched the whole thing, and still no explanation! Cmon man. Probably gonna be next episode I guess. But still, I left you in the middle of the night to be alone in your trauma and you will accept that I love you and kiss you. For that reason this episode didnt sit well with me. The Otto backstory was nice though.;False;False;;;;1610584605;;False;{};gj6c8wl;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6c8wl/;1610662952;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Radinax;;;[];;;;text;t2_iextq;False;False;[];;"Wait what? But didnt he got chased by all the ""boss"" lackies? Or was that an army of cats chasing him?";False;False;;;;1610584606;;False;{};gj6c8xj;False;t3_kwisv4;False;True;t1_gj4x90g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6c8xj/;1610662953;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Aschentei;;;[];;;;text;t2_z1t0l;False;False;[];;"So now we know all of their budget went into the reflections of their eyes.... - -FINALLY IT HAPPENED. but as a Rem fan I'm also in shambles...fuck oh well it was bound to happen. Subaru and Otto chadded tf up this episode";False;False;;;;1610584612;;False;{};gj6c9by;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6c9by/;1610662961;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TeixeiraJRT;;;[];;;;text;t2_x88v8;False;False;[];;ME TOO!;False;False;;;;1610584641;;False;{};gj6cbc2;False;t3_kwisv4;False;False;t1_gj4ozza;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6cbc2/;1610663000;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Aschentei;;;[];;;;text;t2_z1t0l;False;False;[];;she'll be Subaru's concubine;False;False;;;;1610584653;;False;{};gj6cc8e;False;t3_kwisv4;False;False;t1_gj4h8dk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6cc8e/;1610663019;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Cactusblah;;;[];;;;text;t2_e0pc4;False;False;[];;Yeah I really liked the part where she was crying and whining, again. Great girl.;False;False;;;;1610584719;;False;{};gj6cgsq;False;t3_kwisv4;False;False;t1_gj4k1r4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6cgsq/;1610663104;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> the whole scene with Subaru and Emilia felt extremely dragged - -Just FYI don't ever try to read the source material, I got a strong feeling you'll probably not like it..";False;False;;;;1610584745;;False;{};gj6cikn;False;t3_kwisv4;False;False;t1_gj6btx3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6cikn/;1610663136;7;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Almost 28 minutes each without op or ed visuals.;False;False;;;;1610584792;;False;{};gj6clyg;False;t3_kwisv4;False;False;t1_gj6c24l;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6clyg/;1610663197;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DrStein1010;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/DrStein1010;light;text;t2_274huhdp;False;False;[];;Happy Farm or Roach Pit?;False;False;;;;1610584804;;False;{};gj6cmre;False;t3_kwisv4;False;True;t1_gj4qx3m;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6cmre/;1610663212;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TeixeiraJRT;;;[];;;;text;t2_x88v8;False;False;[];;"Name checks out. - - -I'll be on deck in case you need me Captain Crusch";False;False;;;;1610584844;;False;{};gj6cppq;False;t3_kwisv4;False;False;t1_gj4o4hp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6cppq/;1610663270;7;True;False;anime;t5_2qh22;;0;[]; -[];;;thedicestoppedrollin;;;[];;;;text;t2_3uzc4kbl;False;False;[];;Satella has already been shown to not only have known Subaru (somehow) but also to have loved him before dragging him to her world and granting him rebirth by death. Since she obviously has some control over time (rebirth by death, freezing time to grab his heart), it's not unlikely that she knew him from the future. And since she looks like Emilia, sounds like Emilia, and loves Subaru like Emilia, she probably is Emilia who eventually mastered Satella's powers by observing Subaru;False;False;;;;1610584879;;False;{};gj6cs4j;False;t3_kwisv4;False;False;t1_gj5a18q;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6cs4j/;1610663314;8;True;False;anime;t5_2qh22;;0;[]; -[];;;kdebones;;;[];;;;text;t2_6x4j2;False;False;[];;Zero kara.;False;False;;;;1610584922;;False;{};gj6cv90;False;t3_kwisv4;False;False;t1_gj4x225;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6cv90/;1610663372;19;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;She's also older than Subaru physically. And even if you discount that its only ~3 years of difference mentally.;False;False;;;;1610584944;;False;{};gj6cwv1;False;t3_kwisv4;False;False;t1_gj6c3dr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6cwv1/;1610663402;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ask_me_for_lewds;;;[];;;;text;t2_2cu0duak;False;False;[];;""" It would be cruel beyond any other reset so far to the point of cheapness. "" - - -Rem fans: am I a joke to you?";False;False;;;;1610584944;;False;{};gj6cwwt;False;t3_kwisv4;False;False;t1_gj51j2e;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6cwwt/;1610663403;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;You can always read the WN for free at ***witch cult translations***, if you're super curious.;False;False;;;;1610585057;;False;{};gj6d53f;False;t3_kwisv4;False;True;t1_gj6c8wl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6d53f/;1610663555;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Takamaru0;;;[];;;;text;t2_6iqy2mhp;False;False;[];;Someone let otto play nekopara;False;False;;;;1610585183;;False;{};gj6ddzc;False;t3_kwisv4;False;True;t1_gj4ggdc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6ddzc/;1610663721;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeoGiacometti;;;[];;;;text;t2_13n8qv;False;False;[];;Yeah, I feel like the idea was to make the scene feel like common couple banter, but it seemed really out of place. I won't say it was terrible, but it was one of my least favorite dialogue scenes in the show.;False;False;;;;1610585252;;False;{};gj6diun;False;t3_kwisv4;False;False;t1_gj5pltj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6diun/;1610663814;9;True;False;anime;t5_2qh22;;0;[]; -[];;;nicolRB;;;[];;;;text;t2_2h92466c;False;False;[];;Shoulda barrel rolled;False;False;;;;1610585264;;False;{};gj6djnw;False;t3_kwisv4;False;False;t1_gj56kc7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6djnw/;1610663830;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Iloveyouweed;;;[];;;;text;t2_qn6d7;False;False;[];;Previous cour to be technical. This is still season 2.;False;False;;;;1610585308;;False;{};gj6dmsm;False;t3_kwisv4;False;True;t1_gj4dvoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6dmsm/;1610663893;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeoGiacometti;;;[];;;;text;t2_13n8qv;False;False;[];;The resolution is nice, and I can see how it will be important. But the way they got to it felt like cheating lol;False;False;;;;1610585309;;False;{};gj6dmuq;False;t3_kwisv4;False;False;t1_gj5lsha;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6dmuq/;1610663894;7;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;*unless she is Japanese?*;False;False;;;;1610585348;;False;{};gj6dpnl;False;t3_kwisv4;False;True;t1_gj5i65i;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6dpnl/;1610663956;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Takamaru0;;;[];;;;text;t2_6iqy2mhp;False;False;[];;Let's hope arc 6 gets at least animated for now, we can think about censoring later.;False;False;;;;1610585360;;False;{};gj6dqhg;False;t3_kwisv4;False;False;t1_gj62ljb;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6dqhg/;1610663973;10;True;False;anime;t5_2qh22;;0;[]; -[];;;TeixeiraJRT;;;[];;;;text;t2_x88v8;False;False;[];;"I was gonna upvote this. - - -But since it's at a nice number I'll leave it...";False;False;;;;1610585360;;False;{};gj6dqhq;False;t3_kwisv4;False;True;t1_gj4hr2t;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6dqhq/;1610663973;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kdebones;;;[];;;;text;t2_6x4j2;False;False;[];;So... Otto's a furry?;False;False;;;;1610585371;;False;{};gj6dr82;False;t3_kwisv4;False;True;t1_gj4fb40;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6dr82/;1610663989;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RerollWarlock;;;[];;;;text;t2_8fmqe;False;False;[];;I think that's one of many things Clannad did so well. They explored the whole relationship not just the start of it.;False;False;;;;1610585384;;False;{};gj6ds88;False;t3_kwisv4;False;True;t1_gj4gwlu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6ds88/;1610664008;3;True;False;anime;t5_2qh22;;0;[]; -[];;;linkinstreet;;;[];;;;text;t2_71lbm;False;True;[];;"I come from a non English speaking country, and I found that fan translation sometimes makes more sense to me than official translation. - -Maybe official translation are trying too hard to localised the content into ""English"" that they forgot about the flow of the novel that is from a different language.";False;False;;;;1610585451;;False;{};gj6dwwl;False;t3_kwisv4;False;False;t1_gj5o8hl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6dwwl/;1610664097;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Takamaru0;;;[];;;;text;t2_6iqy2mhp;False;False;[];;Otto must be kept away from puck.;False;False;;;;1610585457;;False;{};gj6dxdb;False;t3_kwisv4;False;True;t1_gj4fb40;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6dxdb/;1610664105;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Takamaru0;;;[];;;;text;t2_6iqy2mhp;False;False;[];;r/fuckpuck;False;False;;;;1610585529;;False;{};gj6e2bp;False;t3_kwisv4;False;False;t1_gj5mlah;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6e2bp/;1610664206;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BigUpNelsonMandela;;;[];;;;text;t2_5o1g9kr3;False;False;[];;So happy that this happened;False;False;;;;1610585529;;False;{};gj6e2bt;False;t3_kwisv4;False;True;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6e2bt/;1610664206;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thedicestoppedrollin;;;[];;;;text;t2_3uzc4kbl;False;False;[];;How many times did Satella say it?;False;False;;;;1610585530;;False;{};gj6e2er;False;t3_kwisv4;False;True;t1_gj4klyd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6e2er/;1610664207;3;True;False;anime;t5_2qh22;;0;[]; -[];;;addy0997;;;[];;;;text;t2_1om8ai;False;False;[];;Where on earth can I get the ost from the kiss scene, that song was insane.;False;False;;;;1610585547;;False;{};gj6e3mr;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6e3mr/;1610664232;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LordUncleBob;;;[];;;;text;t2_ckedm;False;False;[];;if all he did was say that and then go for it then yeah, but notice that he waited for her expression to change before he moved. If she had shown fear or a lack of comprehension I doubt he would have kept going, but instead she showed that she was receptive.;False;False;;;;1610585561;;False;{};gj6e4l0;False;t3_kwisv4;False;False;t1_gj672tg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6e4l0/;1610664249;41;True;False;anime;t5_2qh22;;0;[]; -[];;;LeoGiacometti;;;[];;;;text;t2_13n8qv;False;False;[];;But the dialogue was basically Subaru trying to ram that idea into her head. I understand what they tried to achieve, but the dialogue in that particular scene was just bad.;False;False;;;;1610585576;;False;{};gj6e5mo;False;t3_kwisv4;False;False;t1_gj50wwy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6e5mo/;1610664270;9;True;False;anime;t5_2qh22;;0;[]; -[];;;ReiahlTLI;;;[];;;;text;t2_inivd9e;False;False;[];;Is it actually stuff within the main flow of the story or is it more side story/chapter like?;False;False;;;;1610585585;;False;{};gj6e6aq;False;t3_kwisv4;False;True;t1_gj66yyw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6e6aq/;1610664282;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SnTp;;;[];;;;text;t2_izgae;False;False;[];;WOW.. how awsome is this anime.. It keep given an given good episode... I love it!!;False;False;;;;1610585586;;False;{};gj6e6e1;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6e6e1/;1610664284;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Takamaru0;;;[];;;;text;t2_6iqy2mhp;False;False;[];;Funny thing is that she kissed Subaru in the kiss of death episode thinking she will get pregnant. If she actually knew.... we just escaped necrophilia didn't we.;False;False;;;;1610585603;;False;{};gj6e7kf;False;t3_kwisv4;False;False;t1_gj56ikh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6e7kf/;1610664305;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Pink3y3;;;[];;;;text;t2_v7lpk;False;False;[];;Subaru blushing makes me blush.;False;False;;;;1610585622;;False;{};gj6e8u7;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6e8u7/;1610664328;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Lorik_Bot;;;[];;;;text;t2_1x988uja;False;False;[];;Kinda sad that you have to worry when the series is this popular.;False;False;;;;1610585671;;False;{};gj6ecd9;False;t3_kwisv4;False;False;t1_gj6dqhg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6ecd9/;1610664391;10;True;False;anime;t5_2qh22;;0;[]; -[];;;psychsucks;;;[];;;;text;t2_7pinf0kz;False;False;[];;"This is a slippery slope into accepting assholes and cheaters as your relationship partner - -Some lines just can’t be crossed";False;False;;;;1610585697;;False;{};gj6eeas;False;t3_kwisv4;False;False;t1_gj4yvtp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6eeas/;1610664429;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Surylias;;;[];;;;text;t2_kj6vc;False;False;[];;I don't think she had that much time. IIRC at most 7 years. Anyways, it's more important how I perceived her character, and that has always been more like she's mentally still a child despite her age. That also fits her emotional age according to the wiki.;False;False;;;;1610585711;;False;{};gj6efb8;False;t3_kwisv4;False;True;t1_gj67vkv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6efb8/;1610664447;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;aduxbury0;;MAL;[];;http://myanimelist.net/animelist/aduxbury0;dark;text;t2_5i84f;False;False;[];;That's a stormlight infused feeling I didn't think I was going to find in this thread;False;False;;;;1610585716;;False;{};gj6efp8;False;t3_kwisv4;False;False;t1_gj63dwy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6efp8/;1610664454;4;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;It's a web novel/light novel so it goes in chapters, check **Witch Cult Translations** you can read the web novel for free.;False;False;;;;1610585776;;False;{};gj6ejz8;False;t3_kwisv4;False;True;t1_gj6e6aq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6ejz8/;1610664536;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mkw515;;;[];;;;text;t2_5bf2n;False;False;[];;He could have at least apologized for ditching.;False;False;;;;1610585881;;False;{};gj6er6c;False;t3_kwisv4;False;False;t1_gj4eeoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6er6c/;1610664670;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LordUncleBob;;;[];;;;text;t2_ckedm;False;False;[];;that cat's design was so fucking ridiculous, they really gave it fucking mascara and feminine curves just to make sure you knew it was a girl cat;False;False;;;;1610585896;;False;{};gj6es9c;False;t3_kwisv4;False;True;t1_gj4fb40;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6es9c/;1610664690;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mobott;;;[];;;;text;t2_dznm1;False;False;[];;They already kissed, too late to dodge that.;False;False;;;;1610585910;;False;{};gj6et9e;False;t3_kwisv4;False;False;t1_gj5axce;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6et9e/;1610664709;18;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;The best I can do right now is a [piano cover](https://www.youtube.com/watch?v=ZNds0fya2-g).;False;False;;;;1610585919;;False;{};gj6etx1;False;t3_kwisv4;False;False;t1_gj6e3mr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6etx1/;1610664724;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Knight_of_Zer0_;;;[];;;;text;t2_3ksd06t;False;False;[];;I will keep moving forward until our baby is born;False;False;;;;1610585923;;False;{};gj6eu4z;False;t3_kwisv4;False;False;t1_gj4vsx9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6eu4z/;1610664727;36;True;False;anime;t5_2qh22;;0;[]; -[];;;MrHlum;;;[];;;;text;t2_7a4v15qp;False;False;[];;For some reason seeing Garf get punched by Ram was extremely satisfying!;False;False;;;;1610585993;;False;{};gj6ez07;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6ez07/;1610664825;0;True;False;anime;t5_2qh22;;0;[]; -[];;;psychsucks;;;[];;;;text;t2_7pinf0kz;False;False;[];;I still don’t really buy their relationship and it’ll take a lot more before to convince me;False;False;;;;1610586072;;False;{};gj6f4n9;False;t3_kwisv4;False;True;t1_gj5zv7z;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6f4n9/;1610664943;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Theleux;;MAL a-1milquiz;[];;https://myanimelist.net/profile/Theleux;dark;text;t2_am615;False;False;[];;Yah thats what I meant. With how it's split people like to call it the last season, even though it was all supposed to air together.;False;False;;;;1610586075;;False;{};gj6f4sz;False;t3_kwisv4;False;True;t1_gj6dmsm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6f4sz/;1610664945;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mobott;;;[];;;;text;t2_dznm1;False;False;[];;"O_O - -I could have lived my whole life without thinking about that. Now you've ruined it, thanks.";False;False;;;;1610586095;;False;{};gj6f670;False;t3_kwisv4;False;False;t1_gj6e7kf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6f670/;1610664969;12;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Ram gave Garfiel some cold hard lasagna.;False;False;;;;1610586151;;False;{};gj6fa4m;False;t3_kwisv4;False;True;t1_gj6ez07;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6fa4m/;1610665043;3;True;False;anime;t5_2qh22;;0;[]; -[];;;hissenguinho;;;[];;;;text;t2_13wk08;False;False;[];;god. cant tell you how long I've been waiting for them to animate this episode. aaaah im satisfied;False;False;;;;1610586197;;False;{};gj6fdas;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6fdas/;1610665103;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ConfrontationalJerk;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/natjole;light;text;t2_l13gbo7;False;False;[];;I feel like Subaru's usage of EMT was a bit ironic / out of desperation in the past though. In the first episode of season 1, I remember him calling out in his head that Emilia was too kind to a fault. His fussing over Emilia was a product I feel of the psychological trauma caused by his first few deaths and the bleakness of the situation. But I agree that him learning to consider Emilia's perspective is massive development.;False;False;;;;1610586238;;False;{};gj6fg71;False;t3_kwisv4;False;False;t1_gj4jf6d;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6fg71/;1610665159;5;True;False;anime;t5_2qh22;;0;[]; -[];;;GoldenGobbyDay8Pog;;;[];;;;text;t2_79i56gb2;False;False;[];;"I believe something similar yea. - -Remember the very first thing the anime showed you in S1E1? It was Subaru trying to grab Emilias hand, saying ""I will save you, no matter what"". Wouldn't surprise if that somehow connected to future Emilia/Satella, bestowing Return by Death to him. - -At least I think that'd be neat.";False;False;;;;1610586242;;False;{};gj6fgg2;False;t3_kwisv4;False;False;t1_gj4uq0j;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6fgg2/;1610665165;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Pikagreg;;MAL;[];;http://myanimelist.net/animelist/Pikagreg;dark;text;t2_5qs90;False;False;[];;"Was half expecting a ""Sorry, but I love Rem"" out of Emilia";False;False;;;;1610586328;;False;{};gj6fmcw;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6fmcw/;1610665278;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GoldenGobbyDay8Pog;;;[];;;;text;t2_79i56gb2;False;False;[];;Otto gettin' some pussy one way or the other;False;False;;;;1610586347;;False;{};gj6fnkw;False;t3_kwisv4;False;False;t1_gj4qyvu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6fnkw/;1610665298;5;True;False;anime;t5_2qh22;;0;[]; -[];;;psychsucks;;;[];;;;text;t2_7pinf0kz;False;False;[];;I completely missed that as well, I thought it was just a representation of what is to come;False;False;;;;1610586434;;False;{};gj6ftj3;False;t3_kwisv4;False;True;t1_gj4w3wr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6ftj3/;1610665413;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Of course, it's just that some anime onlies might think you're hintin towards confirmed info, wich happens a lot on r/anime.;False;False;;;;1610586468;;False;{};gj6fvt7;False;t3_kwisv4;False;False;t1_gj5z1q6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6fvt7/;1610665452;30;True;False;anime;t5_2qh22;;0;[]; -[];;;entelechtual;;;[];;;;text;t2_1223l2;False;False;[];;Lmao me too. Speaking of Otto flashbacks....;False;False;;;;1610586470;;False;{};gj6fvw8;False;t3_kwisv4;False;True;t1_gj4gxn5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6fvw8/;1610665453;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheGamingNirvana;;;[];;;;text;t2_wykp9;False;False;[];;One quick question about this episode: How did Emilia know that Subaru wasnt qualified for the trial?;False;False;;;;1610586490;;False;{};gj6fx94;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6fx94/;1610665479;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Oh I know that. It's still weird man.;False;False;;;;1610586517;;False;{};gj6fz36;False;t3_kwisv4;False;False;t1_gj6b0p2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6fz36/;1610665523;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Fish_Grillson;;;[];;;;text;t2_13q9y6;False;False;[];;"> mentally broken - -doubt";False;False;;;;1610586587;;False;{};gj6g3v6;False;t3_kwisv4;False;False;t1_gj4dg6g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6g3v6/;1610665610;33;True;False;anime;t5_2qh22;;0;[]; -[];;;GosuGian;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GosuDRM;light;text;t2_mu7ij;False;False;[];;"HOLY SHIT. - -OTTO's BACKSTORY - -THE CONFESSION - -AND THE KISS - -BES EPISODE EVER!";False;False;;;;1610586588;;False;{};gj6g3yc;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6g3yc/;1610665612;3;True;False;anime;t5_2qh22;;0;[]; -[];;;psychsucks;;;[];;;;text;t2_7pinf0kz;False;False;[];;It went by so quick that I completely missed that;False;False;;;;1610586599;;False;{};gj6g4nl;False;t3_kwisv4;False;True;t1_gj4x90g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6g4nl/;1610665625;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Daksh23;;;[];;;;text;t2_2ytnuyk4;False;False;[];;It's a spoiler tag. Tap the reply button to that comment and then click on it. (It works this way for me on mobile);False;False;;;;1610586602;;False;{};gj6g4ue;False;t3_kwisv4;False;False;t1_gj5ve7k;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6g4ue/;1610665630;4;True;False;anime;t5_2qh22;;0;[]; -[];;;iamkenshiro;;;[];;;;text;t2_7nm3et8r;False;False;[];;Otto just became a badass character that i like now. DOMINATION;False;False;;;;1610586778;;False;{};gj6ggyz;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6ggyz/;1610665854;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ekoth;;;[];;;;text;t2_ejp4l;False;False;[];;"The fact that the top comment here isn't ""Love: it's what makes a Subaru a Subaru"" is very upsetting";False;False;;;;1610586827;;False;{};gj6gkbt;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6gkbt/;1610665914;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CeroMalus;;;[];;;;text;t2_15lobvtz;False;False;[];;Nah, it was forced and weird. Terrible dialogue.;False;False;;;;1610586833;;False;{};gj6gkrv;False;t3_kwisv4;False;False;t1_gj5rnfi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6gkrv/;1610665924;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Takamaru0;;;[];;;;text;t2_6iqy2mhp;False;False;[];;You are welcome;False;False;;;;1610586869;;False;{};gj6gnb3;False;t3_kwisv4;False;False;t1_gj6f670;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6gnb3/;1610665974;6;True;False;anime;t5_2qh22;;0;[]; -[];;;psychsucks;;;[];;;;text;t2_7pinf0kz;False;False;[];;Still I didn’t think it was possible until you mentioned it;False;False;;;;1610586897;;False;{};gj6gp6v;False;t3_kwisv4;False;True;t1_gj4szoz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6gp6v/;1610666008;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;">Speaking of Otto flashbacks.... - -I'm just saying that I was expecting his family to be murdered or something like that.";False;False;;;;1610586899;;False;{};gj6gpc8;False;t3_kwisv4;False;True;t1_gj6fvw8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6gpc8/;1610666010;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CeroMalus;;;[];;;;text;t2_15lobvtz;False;False;[];;You're right. It was inorganic and weird. I was expecting something deep and fulfilling and this wasn't it.;False;False;;;;1610586922;;False;{};gj6gr1z;False;t3_kwisv4;False;False;t1_gj6e5mo;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6gr1z/;1610666041;8;True;False;anime;t5_2qh22;;0;[]; -[];;;CeroMalus;;;[];;;;text;t2_15lobvtz;False;False;[];;You were right. Some people just have bizarre relationships irl and can somehow relate. The dialogue was very weird.;False;False;;;;1610586974;;False;{};gj6guoz;False;t3_kwisv4;False;False;t1_gj57ryh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6guoz/;1610666105;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Takamaru0;;;[];;;;text;t2_6iqy2mhp;False;False;[];;I know, but don't know how long WF will continue. I want them to adapt the whole series. But the last time I checked a complete light novel series adaptation, I only saw the monogatari series. Konosuba is quite popular, and there is no news of a third season. But I have my faith in white fox.;False;False;;;;1610587006;;False;{};gj6gwyc;False;t3_kwisv4;False;False;t1_gj6ecd9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6gwyc/;1610666144;12;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;That's your opinion and I got another.;False;False;;;;1610587068;;False;{};gj6h1cf;False;t3_kwisv4;False;False;t1_gj6gkrv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6h1cf/;1610666223;6;True;False;anime;t5_2qh22;;0;[]; -[];;;turnip8961;;;[];;;;text;t2_i4vap;False;False;[];;YES THEY DID IT LET'S FUCKING GOOOO;False;False;;;;1610587178;;False;{};gj6h99j;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6h99j/;1610666377;3;True;False;anime;t5_2qh22;;0;[]; -[];;;iReddat420;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;weeb;dark;text;t2_15ekd8;False;False;[];;Emilia: *parries*;False;False;;;;1610587239;;False;{};gj6hdgd;False;t3_kwisv4;False;False;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6hdgd/;1610666454;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ChornoyeSontse;;;[];;;;text;t2_8vjfuk9d;False;False;[];;"But that isn't a ""cheap"" reset and the situation is entirely different. If he reset now, it would be erasing tons of character moments basically just for shock value (as far as I see it. I'm sure Tappei could write a way that that wouldn't feel as cheap, but usually when there's all this momentum, there isn't going to be another reset for this checkpoint). The situation with Rem is completely different because it's a ""loss"" for Subaru occurring before his save point so he can't go back and redo it. It isn't cheap story-wise, it's just unfortunate. They're completely separate situations.";False;False;;;;1610587269;;False;{};gj6hfkk;False;t3_kwisv4;False;False;t1_gj6cwwt;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6hfkk/;1610666491;6;True;False;anime;t5_2qh22;;0;[]; -[];;;unknownjunior;;;[];;;;text;t2_kcfhl;False;False;[];;I laughed..thank you;False;False;;;;1610587342;;False;{};gj6hkpc;False;t3_kwisv4;False;True;t1_gj4fgsp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6hkpc/;1610666590;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iReddat420;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;weeb;dark;text;t2_15ekd8;False;False;[];;Otto x Patrasche when?;False;False;;;;1610587357;;False;{};gj6hlsr;False;t3_kwisv4;False;True;t1_gj4i7s7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6hlsr/;1610666608;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"Emilia never discussed with Subaru why/if he could enter the crypt, that's why she questions Subaru when he arrives, ***""You don't...""*** meaning that she had not connected that Subaru could enter the crypt probably because the first time she wakes she's in a panic state.";False;False;;;;1610587395;;False;{};gj6hoea;False;t3_kwisv4;False;True;t1_gj6fx94;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6hoea/;1610666653;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ProfChaosDeluxe;;;[];;;;text;t2_7c3b0imi;False;False;[];;Emilia lied about her name;False;False;;;;1610587412;;False;{};gj6hpk2;False;t3_kwisv4;False;False;t1_gj5wl4o;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6hpk2/;1610666674;20;True;False;anime;t5_2qh22;;0;[]; -[];;;psychsucks;;;[];;;;text;t2_7pinf0kz;False;False;[];;"I think the confession Subaru makes is trying to make a point that no matter what happens, Subaru will continue to love Emilia, so Emilia can pass the second trial because it doesn’t matter what happened in the past since she will still have Subaru in the end. - -But I still don’t understand why Subaru broke that easy promise with her but maybe it’s going to be explained in the future";False;False;;;;1610587552;;False;{};gj6hz94;False;t3_kwisv4;False;True;t1_gj4gco8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6hz94/;1610666855;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheGamingNirvana;;;[];;;;text;t2_wykp9;False;False;[];;Ah ok i see. thanks. was confused for a moment bc i thought they maybe couldve talked about it off screen or something.;False;False;;;;1610587786;;False;{};gj6ifis;False;t3_kwisv4;False;False;t1_gj6hoea;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6ifis/;1610667152;3;True;False;anime;t5_2qh22;;0;[]; -[];;;uberragend;;;[];;;;text;t2_32ewaexg;False;False;[];;Otto is a real homie;False;False;;;;1610587808;;False;{};gj6ih0g;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6ih0g/;1610667179;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ask_me_for_lewds;;;[];;;;text;t2_2cu0duak;False;False;[];;" ""You know how many big moments there've been? It would be cruel beyond any other reset so far (to the point of cheapness)"" - - -Im more so focusing on the first part, as your ending line comes off as an anecdote more than the main focal point of the statement. - - -As stated, no other ""reset"" has been more cruel then the time Subaru suicided hoping to bring back Rem, only to find out his checkpoint has then moved. - - -If the main point of your statement is resetting now would be cheap then yes, this would be pretty lame point to do a reset. As far as being the most cruel reset of them all though, no, no it wouldn't.";False;False;;;;1610587942;;False;{};gj6iq8f;False;t3_kwisv4;False;True;t1_gj6hfkk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6iq8f/;1610667337;3;True;False;anime;t5_2qh22;;0;[]; -[];;;naylsonsb;;;[];;;;text;t2_10l5oiim;False;False;[];;Ok.. That scene with otto and the cats was really confusing... Can anyone tell me what happened?;False;False;;;;1610588161;;False;{};gj6j5d7;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6j5d7/;1610667605;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;They're probably showing him what the girl does with the seven other guys.;False;False;;;;1610588296;;False;{};gj6jeqt;False;t3_kwisv4;False;False;t1_gj6j5d7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6jeqt/;1610667769;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ChaosofJotunn;;;[];;;;text;t2_2rllpq0q;False;False;[];;Funny how we see Betelgeuse in S1 ep 15 and now in s2 ep 15.;False;False;;;;1610588356;;False;{};gj6jix0;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6jix0/;1610667843;8;True;False;anime;t5_2qh22;;0;[]; -[];;;luker_man;;;[];;;;text;t2_czjon;False;False;[];;"Or maybe this is New Game+ on hard mode. - -The first playthrough he had all the isekai bonuses but in order to get the Satella ending he has to play on critical.";False;False;;;;1610588379;;False;{};gj6jkkp;False;t3_kwisv4;False;True;t1_gj4uq0j;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6jkkp/;1610667872;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610588418;;False;{};gj6jn94;False;t3_kwisv4;False;True;t1_gj6b11y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6jn94/;1610667920;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MakaButterfly;;;[];;;;text;t2_15j9xs;False;False;[];;🙂🙂🙂🙂 all I can say;False;False;;;;1610588451;;False;{};gj6jpj0;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6jpj0/;1610667958;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Unpopular_But_Right;;;[];;;;text;t2_ggmaw;False;True;[];;Oh jesus shut up virgin, is what I'd say to a non redditor who just said what you did;False;True;;comment score below threshold;;1610588515;;False;{};gj6jtzl;False;t3_kwisv4;False;True;t1_gj672tg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6jtzl/;1610668037;-22;True;False;anime;t5_2qh22;;0;[]; -[];;;Corval3nt;;;[];;;;text;t2_zqod4;False;False;[];;what do you mean by amount of titles?;False;False;;;;1610588699;;False;{};gj6k6vc;False;t3_kwisv4;False;True;t1_gj4fwpl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6k6vc/;1610668282;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CSThrowaway3712;;;[];;;;text;t2_2f548sri;False;False;[];;Insert music was just too on point right here. Playing Realize for Otto, and Door (by Takahashi Rie) made for a great second episode. Now I just have to wonder how it'll get topped in future episodes! (I guess they can start by actually playing this season's OP and ED);False;False;;;;1610588725;;False;{};gj6k8pb;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6k8pb/;1610668315;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Iwant2learnthings;;;[];;;;text;t2_88f375j6;False;False;[];;"Well Subaru said it in kind of a rude way outside of an anime context (the conjugation of the ""dodge"") so I wouldn't recommend it in that case either lol";False;False;;;;1610588754;;False;{};gj6kasd;False;t3_kwisv4;False;False;t1_gj6dpnl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6kasd/;1610668356;6;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"This show goes very deep in characters mentality and interactions so if you don't like two people talking I don't know how you even endured the show to this point. - -Let alone that episode 18 is unversally liked, not for Light novel readers but anime onlys ( heck there was barely source material readers at that point ), so that makes zero sense on your sentence about only light novel readers enjoying the show. - -If anything being novel/manga readers has been proved to make you enjoy less any anime when something gets changed or cut.";False;False;;;;1610588761;;False;{};gj6kbbf;False;t3_kwisv4;False;True;t1_gj6absz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6kbbf/;1610668366;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nikibugs;;;[];;;;text;t2_ghicd;False;False;[];;"Otto became N from Pokémon lol. Can’t believe he started out as a character I hated for being a cowardly jerk, but now he’s utterly a best boi. I love bugs so he shot way up my favorites list now haha. - -Also giving a side character an opening theme shout out for an action scene? Utilizing an opening theme is usually reserved for season finale hype o-o - -Also hecking finally, that ‘just dodge’ line got a giggle out of me.";False;False;;;;1610588911;;False;{};gj6km0k;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6km0k/;1610668554;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;It's cute and he's nervous.;False;False;;;;1610588917;;False;{};gj6kmgb;False;t3_kwisv4;False;False;t1_gj6kasd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6kmgb/;1610668562;5;True;False;anime;t5_2qh22;;0;[]; -[];;;OtherHalfling;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/otherhalfling;light;text;t2_di2cu;False;False;[];;"Definitely not the strongest 2 episodes to start a season, especially with how stacked Winter 2021 is, but I liked seeing some of Otto's backstory. - -It's all definitely a bit cliche and juvenile as far as dialogue writing goes, but I still appreciate the world and setting. Even if it's not the most complex in fiction, or even in anime, it's still fun and creative, and I look forward to getting more into the meat of the season. - -Falling down my list of priorities when it comes to currently airing anime, but I'll still keep with it! Far from peak fiction, but a fun watch.";False;False;;;;1610588927;;False;{};gj6kn5z;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6kn5z/;1610668573;18;True;False;anime;t5_2qh22;;0;[]; -[];;;hkmiadli;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_6dgg9pvc;False;False;[];;"Those time when Otto seems to argue with Patraschie (do i spell it right?) they really are having an inner debate lol - -knowing Otto's blessing make this way funnier.";False;False;;;;1610588936;;False;{};gj6knrw;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6knrw/;1610668583;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Nikibugs;;;[];;;;text;t2_ghicd;False;False;[];;"Same, made the scene way more humorous for me - -DOOOODGE!!!";False;False;;;;1610588976;;False;{};gj6kqj9;False;t3_kwisv4;False;False;t1_gj4p09p;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6kqj9/;1610668631;4;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Can't wait for a certain **side character** from S1 to make a reappearance in season 3.;False;False;;;;1610589006;;False;{};gj6ksmh;False;t3_kwisv4;False;True;t1_gj6km0k;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6ksmh/;1610668666;3;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"Did you watch Frozen Bonds or even season 1? she literally can't walk in the street without being called a witch that will destroy the world. - -And the Subaru thing blew up because she was vulnerable after Puck left and she is getting her memories back which pretty much sound tragic as hell, I swear Emilia dislikers are ignoring all the context. - -Let alone that Subaru did not want to explain why he left.";False;False;;;;1610589016;;False;{};gj6ktbc;False;t3_kwisv4;False;True;t1_gj6762j;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6ktbc/;1610668677;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chaucer345;;;[];;;;text;t2_ftrwi;False;False;[];;I'm just going to say it. That kiss was massively unearned.;False;False;;;;1610589127;;False;{};gj6l15y;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6l15y/;1610668814;21;True;False;anime;t5_2qh22;;0;[]; -[];;;RazerHail;;;[];;;;text;t2_5ha1r;False;False;[];;I need help. Can someone explain to me like I'm five why it is so important to distract Garfiel? What is his angle and his stake in all of this? I feel like I missed something major.;False;False;;;;1610589162;;False;{};gj6l3j1;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6l3j1/;1610668855;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610589175;;False;{};gj6l4h3;False;t3_kwisv4;False;False;t1_gj6kn5z;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6l4h3/;1610668871;2;True;False;anime;t5_2qh22;;0;[]; -[];;;muuhfi;;;[];;;;text;t2_12eocb;False;False;[];;Why the hell did Subaru leave Emilia that night? That was an ass move and why is nobody talking about it?;False;False;;;;1610589205;;False;{};gj6l6nu;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6l6nu/;1610668910;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EienShinwa;;MAL;[];;http://myanimelist.net/profile/Kelun;dark;text;t2_6221y;False;False;[];;Made me fuckin tear up. 4 years in the making.;False;False;;;;1610589229;;False;{};gj6l8by;False;t3_kwisv4;False;True;t1_gj4eaqt;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6l8by/;1610668939;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Themister9;;;[];;;;text;t2_1weyatxi;False;False;[];;wait the novels still hasn't given insight onto a possible connection between the two?;False;False;;;;1610589236;;False;{};gj6l8u4;False;t3_kwisv4;False;False;t1_gj5plj3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6l8u4/;1610668948;11;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> Patraschie - -Patrasche, based on the name of the book from *Dog of Flanders*";False;False;;;;1610589247;;False;{};gj6l9mj;False;t3_kwisv4;False;True;t1_gj6knrw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6l9mj/;1610668961;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SDdude81;;;[];;;;text;t2_9hcyucp;False;False;[];;"Great episode and really touching. - -But thanks for making me feel lonely as fuck.";False;False;;;;1610589312;;False;{};gj6le2p;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6le2p/;1610669041;4;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"That conversation was not even to ""buy"" their relationship, people are missing the point, Emilia does not LOVE Subaru in that way yet, the kiss was to make a wake up call to Emilia that he was being serious, that she has a support she can rely on, that she has to move on and face her problems. - -The kiss was him SHOWING him that his words were true. - -This was not for ""Oh Subaru and Emilia are in love""";False;False;;;;1610589338;;1610589601.0;{};gj6lfwl;False;t3_kwisv4;False;False;t1_gj6625f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6lfwl/;1610669072;9;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;What does Subaru need to do next get crucified for Emilia?;False;False;;;;1610589345;;False;{};gj6lgdn;False;t3_kwisv4;False;True;t1_gj6l15y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6lgdn/;1610669080;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;Exactly what i thought;False;False;;;;1610589502;;False;{};gj6lr75;False;t3_kwisv4;False;True;t1_gj4t5o9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6lr75/;1610669265;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"Sure, the problem with Garfiel is the location of the meeting between Subaru and Emilia. - -Garfiel last cour made it pretty clear that wouldn't let Subaru inside the crypt in case Subaru has ties with the Witches Cult, because of the Witch of Envy miasma that permeates Subaru.";False;False;;;;1610589510;;False;{};gj6lrss;False;t3_kwisv4;False;True;t1_gj6l3j1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6lrss/;1610669276;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OtherHalfling;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/otherhalfling;light;text;t2_di2cu;False;False;[];;">Guess my 20's love life is cliche and juvenile - -Hahaha, that awkward moment when you realize—";False;False;;;;1610589548;;False;{};gj6luh9;False;t3_kwisv4;False;False;t1_gj6l4h3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6luh9/;1610669321;9;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Because is a spoiler, if you wanna know check the ***Witch Cult Translations*** for the WN its free.;False;False;;;;1610589603;;False;{};gj6ly7v;False;t3_kwisv4;False;True;t1_gj6l6nu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6ly7v/;1610669385;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;I would tell you to go outhere but covid.. maybe after?;False;False;;;;1610589685;;False;{};gj6m3zz;False;t3_kwisv4;False;False;t1_gj6le2p;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6m3zz/;1610669483;3;True;False;anime;t5_2qh22;;0;[]; -[];;;xXxXx_Edgelord_xXxXx;;;[];;;;text;t2_5eqttswx;False;False;[];;Can you imagine being a queen and being dicked by a hobo you took off the street one day?;False;False;;;;1610589724;;False;{};gj6m6nw;False;t3_kwisv4;False;False;t1_gj5axce;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6m6nw/;1610669528;36;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610589752;;False;{};gj6m8o8;False;t3_kwisv4;False;True;t1_gj6luh9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6m8o8/;1610669563;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;"I dont get it??!?! Can someone explain - -I couldnt realky understand what the cat scene was about";False;False;;;;1610589841;;False;{};gj6metw;False;t3_kwisv4;False;False;t1_gj4ruw3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6metw/;1610669674;7;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;"Wait???? What? - -That is not clear at all from this episode";False;False;;;;1610589881;;False;{};gj6mhm1;False;t3_kwisv4;False;False;t1_gj6b0p2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6mhm1/;1610669722;33;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610589986;moderator;False;{};gj6motx;False;t3_kwisv4;False;True;t1_gj5yljd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6motx/;1610669844;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok_Stock_2854;;;[];;;;text;t2_4sfco721;False;False;[];;So good.My boy otto!;False;False;;;;1610590015;;False;{};gj6mqsu;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6mqsu/;1610669877;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThyHoffbringer;;;[];;;;text;t2_38indet5;False;False;[];;The title of the episode is Otto Suwen/Reason to believe;False;False;;;;1610590099;;False;{};gj6mwjp;False;t3_kwisv4;False;True;t1_gj6k6vc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6mwjp/;1610669972;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LumpyChicken;;;[];;;;text;t2_12phvscu;False;False;[];;LOL its exactly bc I'm not a virgin that I have this perspective;False;False;;;;1610590145;;False;{};gj6mzpf;False;t3_kwisv4;False;False;t1_gj6jtzl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6mzpf/;1610670023;6;True;False;anime;t5_2qh22;;0;[]; -[];;;LumpyChicken;;;[];;;;text;t2_12phvscu;False;False;[];;"I mean she was clearly not completely comfortable and he put her on the spot. Was it the worst action he could've done? No obviously not, but it definitely shouldn't be praised as some incredible standard of consent - -It was an extremely well written and realistic exchange though";False;False;;;;1610590223;;False;{};gj6n59u;False;t3_kwisv4;False;False;t1_gj6e4l0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6n59u/;1610670112;14;True;False;anime;t5_2qh22;;0;[]; -[];;;tyrod1234;;;[];;;;text;t2_2chfyign;False;False;[];;Emilia is certifiably a crazy bitch;False;False;;;;1610590389;;False;{};gj6ngsf;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6ngsf/;1610670302;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LegendaryNess;;;[];;;;text;t2_41nd7r8o;False;False;[];;Yeah the dialogue was so bad. Back and forth “i love you” and “you liar” and subaru does not really address her points. Honestly though i think otto’s backstory was eh.;False;False;;;;1610590441;;False;{};gj6nkdt;False;t3_kwisv4;False;False;t1_gj5trki;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6nkdt/;1610670359;12;True;False;anime;t5_2qh22;;0;[]; -[];;;AElOU;;;[];;;;text;t2_o9t9z;False;False;[];;"I cannot understand how people are praising this or calling this romantic. - -This conversation happened once before and Emilia was right both times: Subaru is sacrificing himself for selfish reasons and just expects Emilia to fall into his lap, when she neither understands nor asked for him to do any of this. When she asks him how he thinks she feels about all of this he literally says ""I don't think about your feelings at all, I just want you to look cute for me,"" and the conversation just moves on. - -The first half of this season really made me think there'd be a chance to see some change in Subaru, that his unhealthy obsession of putting Emilia on a pedestal would somehow change, given how he's had his shit called out twice during his flashback with his parents and his confrontation with the witches, but instead his toxic obsession is played straight as a positive and he gets the girl anyways like???????";False;False;;;;1610590508;;False;{};gj6np2z;False;t3_kwisv4;False;False;t1_gj4rgzh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6np2z/;1610670436;18;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Subaru thinks she is more like ***a pain in the arse.***;False;False;;;;1610590510;;1610590763.0;{};gj6npa9;False;t3_kwisv4;False;True;t1_gj6ngsf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6npa9/;1610670441;3;True;False;anime;t5_2qh22;;0;[]; -[];;;carlll2b2t;;;[];;;;text;t2_8w4a5ad5;False;False;[];;Not really. Arc 5/6 give a lot more context into the greater re zero world so there is more room for ideas but long story short no one knows shit;False;False;;;;1610590614;;False;{};gj6nwcr;False;t3_kwisv4;False;False;t1_gj6l8u4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6nwcr/;1610670560;23;True;False;anime;t5_2qh22;;0;[]; -[];;;LastActionZeroCool;;;[];;;;text;t2_54r13uo2;False;False;[];;I don't usually read light novels but after last season I finished this arc early. Was waiting for this episode for the Subaru and Emilia scene but Otto shouting to Garfiel in his beast form is one of the funniest/ballsiest things I've seen yet from this series and I dunno if it was captured just right lol;False;False;;;;1610590614;;False;{};gj6nwej;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6nwej/;1610670561;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610590694;;False;{};gj6o1wp;False;t3_kwisv4;False;True;t1_gj4t9df;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6o1wp/;1610670653;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aerohed;;;[];;;;text;t2_xjmyo;False;False;[];;"Subaru: You’re cuter than all of my figurines! - -Emilia: Your what?! - -Subaru: ... My what?!";False;False;;;;1610590710;;False;{};gj6o302;False;t3_kwisv4;False;False;t1_gj5svzt;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6o302/;1610670672;24;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610590773;;False;{};gj6o78e;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6o78e/;1610670746;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hkmiadli;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_6dgg9pvc;False;False;[];;thank you!;False;False;;;;1610590774;;False;{};gj6o7al;False;t3_kwisv4;False;False;t1_gj6l9mj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6o7al/;1610670746;4;True;False;anime;t5_2qh22;;0;[]; -[];;;OvergearedBigBoy;;;[];;;;text;t2_62vx5saq;False;False;[];;Why explain it with a long boring generic sentence when spamming 3 words is enough for her to understand (sometimes belief or love can't be explained or understood logically);False;False;;;;1610590817;;1610591066.0;{};gj6oa5q;False;t3_kwisv4;False;True;t1_gj5qfp0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6oa5q/;1610670796;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;chaucer345;;;[];;;;text;t2_ftrwi;False;False;[];;"I'm fairly certain he's already done that, but I speak from experience when I say suffering for the sake of someone else is not a good basis for a relationship. - -Look... The thing that bothers me the most about how Subaru and frankly everyone treats Emilia is that she's always the game piece and never the player. - -Oh she's a magically capable game piece, but she spends so much time being manipulated in some grand design that people forget there's a person under there. - -And here's the thing... Subaru convinced a pile of people that he knew a lot of important things about what happened and knew how things were going to go. The reason they believed him was because he has proven to be perceptive in this way before. - -So why didn't he bring Emilia in on the scam? Why doesn't he actually talk to her, with words, and say ""Roswal sent a bunch of goons to kill our friends as some kind of BS test. He's doing this because there's a thing about me that's special, but I literally cannot tell you why because there's a magical gun to my chest. Want to meet with everyone else and be an actual part of the planning process instead of some sort of super powered pawn on our creepy chess board?"" - -Then I would feel like he actually respects her. That would have earned the kiss. Not ""I lied to you and I can't tell you why, but it's okay because I love you so much, even when you're annoying.""";False;False;;;;1610590878;;False;{};gj6oean;False;t3_kwisv4;False;False;t1_gj6lgdn;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6oean/;1610670869;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Iwant2learnthings;;;[];;;;text;t2_88f375j6;False;False;[];;We'd all be, we'd all be;False;False;;;;1610590888;;False;{};gj6oeww;False;t3_kwisv4;False;True;t1_gj6kmgb;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6oeww/;1610670880;1;True;False;anime;t5_2qh22;;0;[]; -[];;;potatoke;;;[];;;;text;t2_1501qx;False;False;[];;I want my 15min back... Hopefully Garfiel will vaporize both of those trashes. My hate for emilia has reached levels that shouldn't be possible.;False;True;;comment score below threshold;;1610590907;;False;{};gj6og7s;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6og7s/;1610670903;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;Malorn44;;;[];;;;text;t2_g6g5p;False;False;[];;No spoilers but please tell me we find out why subaru broke his promise at some point;False;False;;;;1610590909;;False;{};gj6ogcx;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6ogcx/;1610670905;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Iwant2learnthings;;;[];;;;text;t2_88f375j6;False;False;[];;"I'm not a native English speaker. Does ""dodging a kiss"" sound unnatural? That's the literal translation of the Japanese word, but if it doesn't sound right in English they should've gone for ""look away"" instead as someone else mentioned.";False;False;;;;1610591052;;False;{};gj6opx9;False;t3_kwisv4;False;False;t1_gj5kh3x;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6opx9/;1610671066;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Ishuzoku-Connoisseur;;;[];;;;text;t2_65qsew7y;False;False;[];;Wasn’t ready for the emotions.;False;False;;;;1610591062;;False;{};gj6oqlt;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6oqlt/;1610671078;3;True;False;anime;t5_2qh22;;0;[]; -[];;;beecee12;;;[];;;;text;t2_fq1fa;False;False;[];;"""you were in my bed you little shit"" - -""My guy, orijen is like cream of the crop kibble, what kind of royalty do you think you are"" - -""It's been literally 15 minutes and you JUST pooped????? Why are you crying????????"" - -I live in an apartment and my cat doesn't go into the hallway so I don't have the last problem, but yes, I feel like she would have the exact same list of complaints. Fuck you cat, I love you. - -(Format edit)";False;False;;;;1610591082;;False;{};gj6oryn;False;t3_kwisv4;False;False;t1_gj5bxyv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6oryn/;1610671100;9;True;False;anime;t5_2qh22;;0;[]; -[];;;GoldenDude;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GoldenBoy808;light;text;t2_ay8d1;False;False;[];;You do just be patient;False;False;;;;1610591165;;False;{};gj6oxht;False;t3_kwisv4;False;True;t1_gj6ogcx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6oxht/;1610671195;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SDdude81;;;[];;;;text;t2_9hcyucp;False;False;[];;Yeah covid really hasn't helped things.;False;False;;;;1610591239;;False;{};gj6p2nv;False;t3_kwisv4;False;False;t1_gj6m3zz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6p2nv/;1610671283;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lookw;;;[];;;;text;t2_floum;False;False;[];;">Emilia has the WORST self-esteem of any heroine ever. She genuinely doesn't believe anyone could love her honestly. They all have to be lying. Any small slip up, regardless of context, is just proof they're liars. Like she declared Subaru a liar for the great sin of: Not being there when she woke up. - -Cause its not like subaru had kept all his other promises. such as the promise to remain out of the capital and focus on healing while emilia was dealing with the royal selection. Or the promise to not use his magic cause his magic gate was in bad condition. He couldnt/didnt give any good reasons for doing any of that. Subaru was told that spirit users put alot of stock into promises. She knows she shouldnt hold him to the same standards but now with puck breaking their agreement and subaru not being there when he said he would it affected her a bit more than usual. Still has very low self esteem but its not like subaru actually managed to be above reproach.";False;False;;;;1610591250;;1610591733.0;{};gj6p3e3;False;t3_kwisv4;False;False;t1_gj6762j;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6p3e3/;1610671296;5;True;False;anime;t5_2qh22;;0;[]; -[];;;thatguywithawatch;;;[];;;;text;t2_roht2;False;False;[];;Serious props to Rie Takahashi. Not that it's any surprise, but her entire performance this episode was fucking amazing. Really pulled off the huge range of emotions perfectly.;False;False;;;;1610591258;;False;{};gj6p3x0;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6p3x0/;1610671305;5;True;False;anime;t5_2qh22;;0;[]; -[];;;redditfthan;;;[];;;;text;t2_5gnzc73k;False;False;[];;Does the show look a lot worse than season 2? Not that I don't like it;False;False;;;;1610591311;;False;{};gj6p7iu;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6p7iu/;1610671363;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Yvil1905;;;[];;;;text;t2_7abqgdq;False;False;[];;What did he say?;False;False;;;;1610591369;;False;{};gj6pbff;False;t3_kwisv4;False;True;t1_gj5a2u2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6pbff/;1610671430;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TreGet234;;MAL;[];;https://myanimelist.net/animelist/Wasserflasche;dark;text;t2_mv25k;False;True;[];;man boring ep. so basically otto is op like everyone else and subaru gave the usual i love emilia prep talk.;False;False;;;;1610591392;;False;{};gj6pd0k;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6pd0k/;1610671457;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Csr56;;;[];;;;text;t2_2jxvv6sd;False;False;[];;"Because it isn't convincing which is also why it didn't work for Emilia and they were arguing for so long. - -If he had just used logic and explained why he believes in her there wouldn't be much of a disagreement and drama which is not what the author wanted.";False;False;;;;1610591624;;False;{};gj6psrx;False;t3_kwisv4;False;False;t1_gj6oa5q;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6psrx/;1610671726;8;True;False;anime;t5_2qh22;;0;[]; -[];;;tomtomm9;;;[];;;;text;t2_3ycvxoo9;False;False;[];;How? There like complete opposites I would rather come this too episode 18.;False;False;;;;1610591659;;False;{};gj6pv5z;False;t3_kwisv4;False;True;t1_gj4fro6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6pv5z/;1610671768;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wordsdear;;;[];;;;text;t2_b34qs;False;False;[];;He almost darcyed himself listing off her flaws, He did list off everything he loved about her first to be fair;False;False;;;;1610591726;;False;{};gj6pzq1;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6pzq1/;1610671849;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OvergearedBigBoy;;;[];;;;text;t2_62vx5saq;False;False;[];;I don't think she's in the mental state to talk logically with all the things that happened recently (like when you argue logically to an upset irrational child there's not gonna be any progress);False;False;;;;1610591850;;False;{};gj6q80l;False;t3_kwisv4;False;False;t1_gj6psrx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6q80l/;1610671994;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;uglydoggy;;;[];;;;text;t2_j049d;False;False;[];;"I think it probably about how Otto got accused with the other guys girl (probably mistook Otto for one of the other guys she cheated with (since Otto was kinda already considered a freak by the town, he might’ve been used as a scapegoat by the cheating party). - -When Otto was trying to look for the truth, he has his first crush, the cat lmfao, getting yoinked by the other cat. Otto probably felt like shit after and made an impulsive move to reveal the truth to the thot’s bf as kinda petty revenge which just made the situation worse.";False;False;;;;1610591901;;False;{};gj6qbej;False;t3_kwisv4;False;False;t1_gj6metw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6qbej/;1610672052;17;True;False;anime;t5_2qh22;;0;[]; -[];;;AElOU;;;[];;;;text;t2_o9t9z;False;False;[];;"[In](https://i.imgur.com/qWy1Cy4.png) [what](https://i.imgur.com/Z8XEKAi.png) [universe](https://i.imgur.com/diM7WGV.png) [is](https://i.imgur.com/eN81CCK.png) [this](https://i.imgur.com/grzK3QK.png) [romance](https://i.imgur.com/b226ANE.png) [at](https://i.imgur.com/0atoSRc.png) [it's finest?](https://i.imgur.com/DuoQia6.png) Accepting someone's faults would be romantic and all if the relationship wasn't such an unhealthy, one-sided obsession. There's a difference between overlooking flaws and just being straight toxic. - -And this is a recurring theme I keep seeing with this show. Subaru is repeatedly called out on his bullshit, but rather than change he simply doubles down. Emilia and Subaru had nearly the exact same argument, down to Emilia stating ""I never asked for you to do the things you do"", except this time it's played straight and he gets her in the end? Even though he never changed his attitude of putting Emilia on a pedestal without considering her feelings, the same attitude that got him in deep shit last time now suddenly wins her over? The hell?";False;True;;comment score below threshold;;1610592066;;1610592672.0;{};gj6qmim;False;t3_kwisv4;False;True;t1_gj4yvtp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6qmim/;1610672238;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610592096;;1610592283.0;{};gj6qogp;False;t3_kwisv4;False;True;t1_gj4yvtp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6qogp/;1610672272;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> I'm fairly certain he's already done that, but I speak from experience when I say suffering for the sake of someone else is not a good basis for a relationship. - -It's complicated, first no one IRL can go back and redo events so I can't judge Subaru for feeling the way he feels, at least he's honest with Emilia. - ->Look... The thing that bothers me the most about how Subaru and frankly everyone treats Emilia is that she's always the game piece and never the player. - -He's guilty of that on the first season and this season he tried to just be supportive until everything went to shit, now he's trying a middle approach, Subaru is being supportive and clearly wants to give her a role for what she's capable at the moment otherwise why bother do all of this right now. - ->Oh she's a magically capable game piece, but she spends so much time being manipulated in some grand design that people forget there's a person under there. - -In the story she literally serves that role, so much so that in season 1 Petelgeuse had plans for her, and in Frozen Bonds the great spirit Melakuera is scared she'll bring another calamity, and probably with good reason. - ->And here's the thing... Subaru convinced a pile of people that he knew a lot of important things about what happened and knew how things were going to go. The reason they believed him was because he has proven to be perceptive in this way before. - -Are you talking about Crush and the Whale? You know that in the side story Ayamatsu Crush faces the Whale alone because -Wilhelm was already tracing her, Subaru just gave them a more precise time and location so they got an extra advantage, that's all Subaru did. - ->So why didn't he bring Emilia in on the scam? Why doesn't he actually talk to her, with words, and say ""Roswal sent a bunch of goons to kill our friends as some kind of BS test. He's doing this because there's a thing about me that's special, but I literally cannot tell you why because there's a magical gun to my chest. Want to meet with everyone else and be an actual part of the planning process instead of some sort of super powered pawn on our creepy chess board?"" - -Probably because she already got many problems, from Puck missing, to new memories, the trial.. if she knew what Roswaal did and what might happen in the Mansion she would go crazy like that time last cour. - ->Then I would feel like he actually respects her. That would have earned the kiss. Not ""I lied to you and I can't tell you why, but it's okay because I love you so much, even when you're annoying."" - -That is your opinion and is fine, but I disagree 110%";False;False;;;;1610592120;;False;{};gj6qq1z;False;t3_kwisv4;False;False;t1_gj6oean;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6qq1z/;1610672298;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Rbespinosa13;;;[];;;;text;t2_fpx8s;False;False;[];;Hey mods, how do I delete someone else’s comment?;False;False;;;;1610592128;;False;{};gj6qqlf;False;t3_kwisv4;False;True;t1_gj4kwp3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6qqlf/;1610672306;1;True;False;anime;t5_2qh22;;0;[]; -[];;;United_Cauliflower_7;;;[];;;;text;t2_7vatom55;False;False;[];;Subaru or chadbaru;False;False;;;;1610592131;;False;{};gj6qqrr;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6qqrr/;1610672310;4;True;False;anime;t5_2qh22;;0;[]; -[];;;godblow;;;[];;;;text;t2_kigl8;False;False;[];;I still don't get it though... where did the cat part come from when the guy was saying he was with his girlfriend? What?;False;False;;;;1610592149;;False;{};gj6qrzu;False;t3_kwisv4;False;True;t1_gj4w3wr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6qrzu/;1610672330;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Malorn44;;;[];;;;text;t2_g6g5p;False;False;[];;Is that a yes then :);False;False;;;;1610592154;;False;{};gj6qsbm;False;t3_kwisv4;False;True;t1_gj6oxht;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6qsbm/;1610672336;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Stay safe and try to stay strong.;False;False;;;;1610592169;;False;{};gj6qte2;False;t3_kwisv4;False;True;t1_gj6p2nv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6qte2/;1610672353;2;True;False;anime;t5_2qh22;;0;[]; -[];;;asvdiuyo9pqiuglbjkwe;;;[];;;;text;t2_1bzhtj30;False;False;[];;This shit is ancient. This is like, back when 4chan was good (4chan was never good) levels of meme archeology here.;False;False;;;;1610592222;;False;{};gj6qwvw;False;t3_kwisv4;False;True;t1_gj6bwem;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6qwvw/;1610672416;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CertifiedLolicon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_5bmbk3re;False;False;[];;"Puck, Subaru.... - - -**KONOOOO USOOOTTTSUKKIIIII**";False;False;;;;1610592231;;False;{};gj6qxhs;False;t3_kwisv4;False;False;t1_gj4xq44;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6qxhs/;1610672426;19;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610592240;;False;{};gj6qy3i;False;t3_kwisv4;False;True;t1_gj6pd0k;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6qy3i/;1610672437;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Probably the opposite since they no longer are animating from home.;False;False;;;;1610592272;;False;{};gj6r09m;False;t3_kwisv4;False;False;t1_gj6p7iu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6r09m/;1610672474;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jsmith4567;;;[];;;;text;t2_mw9uj;False;False;[];;"TFS Piccolo: ""Damn you Pavlov"".";False;False;;;;1610592288;;False;{};gj6r1ey;False;t3_kwisv4;False;False;t1_gj5axce;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6r1ey/;1610672495;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuck_Shinji;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Fuck Shinji(fate);light;text;t2_7xrbju2m;False;False;[];;yeah it was one of the og fate memes along with sakurafish and mou ikkai;False;False;;;;1610592295;;False;{};gj6r1ur;False;t3_kwisv4;False;False;t1_gj6qwvw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6r1ur/;1610672502;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Redditer51;;;[];;;;text;t2_gk7ihro;False;False;[];;Meanwhile, Rem's still in a coma and no one remembers her...;False;False;;;;1610592302;;False;{};gj6r2c4;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6r2c4/;1610672510;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Iwant2learnthings;;;[];;;;text;t2_88f375j6;False;False;[];;On the other hand, as some people mentioned, they are supposed to be teenagers, so maybe his lack of elegance was intended too. Add the fact that he's making up multiple plans to avoid horrible events on the go so maybe he didn't have too much time to compose a very flowery confession.;False;False;;;;1610592314;;False;{};gj6r37x;False;t3_kwisv4;False;False;t1_gj61nwa;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6r37x/;1610672525;7;True;False;anime;t5_2qh22;;0;[]; -[];;;jsmith4567;;;[];;;;text;t2_mw9uj;False;False;[];;"""Damn You Pavlov"".";False;False;;;;1610592321;;False;{};gj6r3oo;False;t3_kwisv4;False;False;t1_gj50rkf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6r3oo/;1610672532;6;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Subaru made a list alright, and didn't omit anything.;False;False;;;;1610592359;;False;{};gj6r69i;False;t3_kwisv4;False;True;t1_gj6pzq1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6r69i/;1610672576;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Csr56;;;[];;;;text;t2_2jxvv6sd;False;False;[];;"I mean sure she is depressed and emotional but she isn't in a state that logic doesn't work on her, her emotions and disagreements all make sense and obviously his ""because i love you"" argument didn't go over well but he never even tried more logical arguments.";False;False;;;;1610592381;;False;{};gj6r7nc;False;t3_kwisv4;False;False;t1_gj6q80l;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6r7nc/;1610672599;7;True;False;anime;t5_2qh22;;0;[]; -[];;;reformedmike;;;[];;;;text;t2_1s4vvv6p;False;False;[];;Anybody notice how Subaru's confession mirrored Rem's in season 1? He was at his lowest then, while Emelia was at her lowest now.;False;False;;;;1610592411;;False;{};gj6r9ns;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6r9ns/;1610672635;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LegendaryNess;;;[];;;;text;t2_41nd7r8o;False;False;[];;You aren’t alone at all. This episodes slightly controversial and should be more controversial tbh. The dialogue was weak and the kiss was both out of place and undeserved. I’m worried about the rest of the arc tbh because some ln/wn readers have said this is one of the better parts.;False;False;;;;1610592434;;False;{};gj6rb9p;False;t3_kwisv4;False;False;t1_gj5jbll;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6rb9p/;1610672663;15;True;False;anime;t5_2qh22;;0;[]; -[];;;lavolpeee;;;[];;;;text;t2_fwo4s;False;False;[];;It's actualy in the end of volume 15, just read it today.;False;False;;;;1610592440;;False;{};gj6rbne;False;t3_kwisv4;False;False;t1_gj53qgc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6rbne/;1610672669;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;The passive aggression from Rem fans holy shit, never seem a comment section this bad in a long time.;False;False;;;;1610592453;;False;{};gj6rcgs;False;t3_kwisv4;False;False;t1_gj6qy3i;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6rcgs/;1610672683;6;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;The longer it remains the sweeter it'll be if a day Rem returns.;False;False;;;;1610592556;;False;{};gj6rje3;False;t3_kwisv4;False;True;t1_gj6r2c4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6rje3/;1610672799;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Yes!;False;False;;;;1610592594;;False;{};gj6rlzt;False;t3_kwisv4;False;True;t1_gj6qsbm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6rlzt/;1610672844;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Emilia even got her song like Rem did.;False;False;;;;1610592632;;False;{};gj6romg;False;t3_kwisv4;False;False;t1_gj6r9ns;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6romg/;1610672888;3;True;False;anime;t5_2qh22;;0;[]; -[];;;D_Beats;;;[];;;;text;t2_peml7;False;False;[];;They held hands in the last episode. She was already pregnant;False;False;;;;1610592716;;False;{};gj6rucd;False;t3_kwisv4;False;True;t1_gj4hwds;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6rucd/;1610672986;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Alchion;;;[];;;;text;t2_p4db7;False;False;[];;"It was overshadowed by the end but Otto is just the goat even his whole family is so wholesome - -Otto is the most wholesome sympathic side character ever in any show he‘s just the best";False;False;;;;1610592739;;False;{};gj6rvxe;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6rvxe/;1610673015;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Alchion;;;[];;;;text;t2_p4db7;False;False;[];;hey man these times you gotta ask for consent lol;False;False;;;;1610592767;;False;{};gj6rxs1;False;t3_kwisv4;False;False;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6rxs1/;1610673046;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Alchion;;;[];;;;text;t2_p4db7;False;False;[];;kyrie?;False;False;;;;1610592907;;False;{};gj6s76e;False;t3_kwisv4;False;True;t1_gj5adjk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6s76e/;1610673215;3;True;False;anime;t5_2qh22;;0;[]; -[];;;pleiades1208;;;[];;;;text;t2_8e61j5he;False;False;[];;ikr they just cant admit rem is a 1 dimensional boring character unlike subaru;False;False;;;;1610592958;;False;{};gj6salv;False;t3_kwisv4;False;False;t1_gj6rcgs;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6salv/;1610673275;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Alchion;;;[];;;;text;t2_p4db7;False;False;[];;you mean chad beast whisperer otto thundercock;False;False;;;;1610592964;;False;{};gj6sb10;False;t3_kwisv4;False;True;t1_gj4onl0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6sb10/;1610673283;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Alchion;;;[];;;;text;t2_p4db7;False;False;[];;i just want more otto he‘s the best please just more otto he‘s the best bro in anime ever period;False;False;;;;1610593011;;False;{};gj6se7x;False;t3_kwisv4;False;False;t1_gj4ig4n;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6se7x/;1610673340;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Steve_Gray;;;[];;;;text;t2_57o1dyer;False;False;[];;otto is best boy check out my review [https://www.youtube.com/watch?v=J4er-MIrNxk](https://www.youtube.com/watch?v=J4er-MIrNxk);False;False;;;;1610593015;;False;{};gj6sej4;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6sej4/;1610673345;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Alchion;;;[];;;;text;t2_p4db7;False;False;[];;Someone got the ost shortly before and during the kiss?;False;False;;;;1610593036;;False;{};gj6sfx4;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6sfx4/;1610673369;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Spectral2020;;;[];;;;text;t2_84n70o3g;False;False;[];;But he didn't put Emilia on a pedestal this time. He's literally says that the only reason he's even at her side despite her being such a pain in the ass is because he loves her.;False;False;;;;1610593098;;False;{};gj6sk2w;False;t3_kwisv4;False;False;t1_gj6qmim;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6sk2w/;1610673440;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Alchion;;;[];;;;text;t2_p4db7;False;False;[];;yeah i sidnt know that either;False;False;;;;1610593111;;False;{};gj6sky4;False;t3_kwisv4;False;False;t1_gj6mhm1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6sky4/;1610673455;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Spectral2020;;;[];;;;text;t2_84n70o3g;False;False;[];;Not really. iirc, 8man jokingly says it to Kawashima while doing an errand. It just carries a lot of weight when you use it seriously.;False;False;;;;1610593203;;False;{};gj6sr1f;False;t3_kwisv4;False;False;t1_gj5c8x7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6sr1f/;1610673561;2;True;False;anime;t5_2qh22;;0;[]; -[];;;InfinityPlayer;;;[];;;;text;t2_hmal9;False;False;[];;"Dang anyone else tear up when Otto saw the parallel between Subaru and his childhood? - -Also, what Otto write to his parents?";False;False;;;;1610593213;;False;{};gj6srmt;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6srmt/;1610673570;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Taurus24Silver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Taurus-Silver;light;text;t2_826uaxw;False;False;[];;DOOR by Takahashi Rie(Emilia's VA);False;False;;;;1610593234;;False;{};gj6st5i;False;t3_kwisv4;False;False;t1_gj6sfx4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6st5i/;1610673596;4;True;False;anime;t5_2qh22;;0;[]; -[];;;InfinityPlayer;;;[];;;;text;t2_hmal9;False;False;[];;I read this comment before I started the episode and thought an epic fight was going down LMAOO I LAUGHED SO HARD;False;False;;;;1610593245;;False;{};gj6stui;False;t3_kwisv4;False;True;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6stui/;1610673608;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ippwnage;;;[];;;;text;t2_790zhsxg;False;False;[];;right in her hair;False;False;;;;1610593259;;False;{};gj6susw;False;t3_kwisv4;False;True;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6susw/;1610673624;1;True;False;anime;t5_2qh22;;0;[]; -[];;;emiyacross;;;[];;;;text;t2_n3cv3dx;False;False;[];;Please, delete;False;False;;;;1610593279;;False;{};gj6sw4i;False;t3_kwisv4;False;True;t1_gj6pbff;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6sw4i/;1610673645;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kkek231;;;[];;;;text;t2_3sq20w6k;False;False;[];;"I thought this was pretty bad, not gonna lie. - -Emilia crying about her memories coming back, about Subaru lying and leaving her, and about him not caring about her feelings. - -His reply? 10 minutes of ""I love you"", ""your height is perfect"", ""you were supposed to act cuter"", and going in for a kiss while she's sobbing. And then everything turns out ok somehow. - -That whole scene was way too long, cringe, forced, and badly written.";False;False;;;;1610593326;;False;{};gj6sz57;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6sz57/;1610673696;33;True;False;anime;t5_2qh22;;0;[]; -[];;;Alchion;;;[];;;;text;t2_p4db7;False;False;[];;wait i dont remember his dragon so his main dragon is that frufroo fragon and patrasxhe is number 2 that now likes subaru? can someoen explain?;False;False;;;;1610593328;;False;{};gj6sza0;False;t3_kwisv4;False;False;t1_gj4zgpw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6sza0/;1610673699;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Kiwigami;;;[];;;;text;t2_1bkz1w9p;False;False;[];;When they were about to kiss, I was anticipating something to kill Subaru just to ruin it.;False;False;;;;1610593343;;False;{};gj6t0c5;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6t0c5/;1610673715;8;True;False;anime;t5_2qh22;;0;[]; -[];;;wateredmuffin;;;[];;;;text;t2_2qf6dyds;False;False;[];;"This is the only real theory that makes sense in the story that’s borderline no longer a theory. Anything else would just be uninteresting in comparison (plot lines aren’t bad just because they’re obvious and predictable like this likely is - it’s how they play out that’s interesting). - -That said, while many are still like, “it’s still up in the air,” several things in the anime alone have already heavily hinted this is the case. - -I brought this up back when season 1 aired as a theory and got downvoted, but this episode has basically confirmed it to me. - -I highly recommend reading the original dialogue between Subaru and Satella from the light novel. That’s not a spoiler, I would think, since the events have already happened. - -This episode alone explains why it was excluded, but for those who aren’t sure, why was that specific line of dialogue excluded from the anime? And why do we then we see the thing Satella describes as to why she loves Subaru happen in this one? - -It may seem like not that big of a deal in a vacuum, but if it didn’t matter in the overall story or give away the mystery, I can’t imagine why those making the anime would cut it - it’s just a few extra seconds. But in this story, that specific reason she gave has always been a massive hint as to who she was. And this episode is clearly why they removed the line. - -Satella is more than likely Emilia from a “failed” timeline where she eventually took on the witch’s powers. Given Subaru’s power to jump back in time, and potentially to different timelines where he succeeds, it would be fair to guess Satella can do even more and gave him the ability to return from death (which we already know). - -He likely died at some point in her timeline, so she went back to set everything up needed to make them meet as they originally did, but hoped to save him this time around. Which brings into question, how many cycles has this happened? In order to meet, Satella needs to bring him to her world. So this has the potential to be an infinite loop where they always meet. She has always been both Satella and Emilia and her actions to go back in time are what set up the machinations for her future/past self to meet Subaru.";False;False;;;;1610593365;;1610661619.0;{};gj6t1p8;False;t3_kwisv4;False;False;t1_gj4uq0j;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6t1p8/;1610673738;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Alchion;;;[];;;;text;t2_p4db7;False;False;[];;"lmao one piece 5 min recap 1 min preview 3 min op ed 10 min drawn out filler contrnt - -rest story - -op manga is fire rn tho gotta recommend it";False;False;;;;1610593415;;False;{};gj6t4ya;False;t3_kwisv4;False;True;t1_gj4ir2r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6t4ya/;1610673795;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ParadoxThief;;;[];;;;text;t2_2c123385;False;False;[];;don't really like the romance genre. Please rezero :(;False;False;;;;1610593528;;1610596724.0;{};gj6tcan;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6tcan/;1610673921;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Alchion;;;[];;;;text;t2_p4db7;False;False;[];;otto the goat man i sooo hope there is gonna be more of him and he doesnt get sidelined;False;False;;;;1610593541;;False;{};gj6td7i;False;t3_kwisv4;False;True;t1_gj4i5a6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6td7i/;1610673936;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Pixelchu25;;;[];;;;text;t2_s0tduwe;False;False;[];;"Two episodes technically in one along with no opening or ending. I heard a new soundtrack and Realize was played for a while. - -That was a great episode.";False;False;;;;1610593624;;False;{};gj6tiol;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6tiol/;1610674029;7;True;False;anime;t5_2qh22;;0;[];True -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;I just never though that people didn't see this coming.;False;False;;;;1610593681;;False;{};gj6tmea;False;t3_kwisv4;False;False;t1_gj6salv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6tmea/;1610674091;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ryto;;;[];;;;text;t2_6mj7n;False;False;[];;I hope this is a save point.;False;False;;;;1610593707;;False;{};gj6to1z;False;t3_kwisv4;False;True;t1_gj4j0q8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6to1z/;1610674121;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Nope. We are in The fourth Arc, The longest one to date. The next Arc is short, and sixth one is long, and Just recently ended in The web novel. Major shit happened, but nothing related tô this particular connection.;False;False;;;;1610593730;;False;{};gj6tpj4;False;t3_kwisv4;False;False;t1_gj6l8u4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6tpj4/;1610674145;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Surrideo;;MAL;[];;http://myanimelist.net/profile/Choa77;dark;text;t2_6lqhd;False;False;[];;This is the first episode of the series where I've questioned the direction of the show. The entire scene between Emilia and Subaru was incredibly creepy and unnatural. The man treats her like an object while she lacks any backbone or sense of direction.;False;False;;;;1610593769;;False;{};gj6ts2u;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6ts2u/;1610674190;19;True;False;anime;t5_2qh22;;0;[]; -[];;;AElOU;;;[];;;;text;t2_o9t9z;False;False;[];;He straight up ignores her feelings, he said it himself. He does not even think about what she wants when he does the things he does, he does them for himself. Emilia and the rest of the witches straight up call him out on it, with Echidna, the literal witch greed, calling him greedy. That isn't love homie, that's obsession.;False;False;;;;1610593777;;False;{};gj6tslw;False;t3_kwisv4;False;False;t1_gj6sk2w;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6tslw/;1610674198;5;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;They're both clearly looking for a friend.;False;False;;;;1610593782;;False;{};gj6tsym;False;t3_kwisv4;False;True;t1_gj6srmt;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6tsym/;1610674205;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Spectral2020;;;[];;;;text;t2_84n70o3g;False;False;[];;That's what he's calling her out on. She's using that to run away from her responsibilities. She's using the the excuse of being sad to run away from the fact that she's the one who volunteered to do the trials. Subaru was originally going to do the trials in her place until Emilia basically threw a fit that he doesn't believe in her and now she's complaining that it's too hard. At that point, you're dealing with a child and have to ignore their feelings to get things done. Ignoring someone's feeling isn't the same as idolizing them.;False;False;;;;1610594025;;1610594219.0;{};gj6u8m4;False;t3_kwisv4;False;False;t1_gj6tslw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6u8m4/;1610674469;16;True;False;anime;t5_2qh22;;0;[]; -[];;;TopPostOfTheDay;;;[];;;;text;t2_2q93ggge;False;True;[];;"This post was the most platinum awarded across all of Reddit on January 13th, 2021! - -^(I am a bot for )^[/r/TopPostOfTheDay](/r/toppostoftheday) ^( - Please report suggestions/concerns to the mods.)";False;False;;;;1610594039;;False;{};gj6u9hz;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6u9hz/;1610674484;13;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> And then everything turns out ok somehow. - -Emilia is still mad, she just choose to believe him, despite all the lies and broken promises, because for once Subaru was truthful, it might not have been pretty but Subaru is not perfect did you not watch season 1?";False;False;;;;1610594076;;False;{};gj6ubv8;False;t3_kwisv4;False;False;t1_gj6sz57;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6ubv8/;1610674525;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TyphlosionGOD;;;[];;;;text;t2_a055x;False;False;[];;I've been an Emilia fan since day one. I'm so fucking happy right now.;False;False;;;;1610594087;;False;{};gj6uckj;False;t3_kwisv4;False;True;t1_gj4djlk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6uckj/;1610674537;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;A soul that loved the episode, Ram sama thanks you.;False;False;;;;1610594198;;False;{};gj6ujx0;False;t3_kwisv4;False;False;t1_gj6tiol;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6ujx0/;1610674663;5;True;False;anime;t5_2qh22;;0;[]; -[];;;next_door_nicotine;;;[];;;;text;t2_xyq5i;False;False;[];;"Subaru be like, ""Wonderful girl! Either I'm going to kill her, or I'm beginning to like her!""";False;False;;;;1610594234;;False;{};gj6umb3;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6umb3/;1610674705;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Good bot!;False;False;;;;1610594236;;False;{};gj6umg3;False;t3_kwisv4;False;False;t1_gj6u9hz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6umg3/;1610674707;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DrewbieWanKenobie;;;[];;;;text;t2_8lei7;False;False;[];;"I honestly didn't really much care for Emilia on my first viewing of S1, when I later watched the director's cut I felt a little better about her, but it wasn't until I watched Memory Snow that I actually really liked her - -That said as a waifu I'd still pick Rem. Though as a favorite character I might just pick Ram...";False;False;;;;1610594245;;False;{};gj6umz9;False;t3_kwisv4;False;False;t1_gj4gnxo;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6umz9/;1610674717;3;True;False;anime;t5_2qh22;;0;[]; -[];;;wateredmuffin;;;[];;;;text;t2_2qf6dyds;False;False;[];;"I don’t disagree with you, but why would an author writing novels to sell them for money confirm what fans have uncovered? Food for thought. The author would be the least reliable source of truth because it could impact the product they’re creating. - -You never once saw GRRM say yes, Jon Snow is actually the guy everyone thought he was for years in Game of Thrones before the big reveal happened and confirmed what most fans had expected.";False;False;;;;1610594261;;1610595254.0;{};gj6uo29;False;t3_kwisv4;False;True;t1_gj6bq7e;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6uo29/;1610674736;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Love and Hate share the same coin.;False;False;;;;1610594335;;False;{};gj6ut0o;False;t3_kwisv4;False;False;t1_gj6umb3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6ut0o/;1610674818;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mufcordie;;;[];;;;text;t2_j4jr2;False;False;[];;"THEY FUCKIN DID IT. GOD DAMN WHITE FOX IS THE GOAT. - - -The op kicked in at the god damn best time. I can’t believe I just read this over the break a few months ago, but seeing it animated is just a whole other level. White Fox uses every fucking second to the advantage and it’s beautiful. - -Truly a 10/10 episode";False;False;;;;1610594376;;False;{};gj6uvmt;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6uvmt/;1610674862;0;True;False;anime;t5_2qh22;;0;[]; -[];;;lehman-the-red;;;[];;;;text;t2_19segxqc;False;False;[];;Well you see in the ln it's was mentioned that one went up his ass;False;False;;;;1610594404;;False;{};gj6uxi3;False;t3_kwisv4;False;False;t1_gj54jnm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6uxi3/;1610674894;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Surrideo;;MAL;[];;http://myanimelist.net/profile/Choa77;dark;text;t2_6lqhd;False;False;[];;I completely agree with you. The whole act felt disturbing. The only way I can excuse it is if the author is aware of this and intended for it to be this jarring. Maybe its a way to setup a tragedy where there is no happiness for Subaru or Emilia.;False;False;;;;1610594632;;False;{};gj6vc5n;False;t3_kwisv4;False;False;t1_gj5u02h;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6vc5n/;1610675145;16;True;False;anime;t5_2qh22;;0;[]; -[];;;reformedmike;;;[];;;;text;t2_1s4vvv6p;False;False;[];;Yes! That was so cool.;False;False;;;;1610594701;;False;{};gj6vglq;False;t3_kwisv4;False;False;t1_gj6romg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6vglq/;1610675223;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lehman-the-red;;;[];;;;text;t2_19segxqc;False;False;[];;Didn't at the start of the season he said he wanted to date Emilia and rem;False;False;;;;1610594800;;False;{};gj6vn2s;False;t3_kwisv4;False;False;t1_gj6eeas;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6vn2s/;1610675331;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;After watching soo many romance anime I expected Garf to come and smack him to death;False;False;;;;1610594875;;False;{};gj6vs0p;False;t3_kwisv4;False;False;t1_gj6t0c5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6vs0p/;1610675412;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ReTheMuss;;;[];;;;text;t2_5kqs11sm;False;False;[];;This episode felt like a movie I love it. It has meme potential in it too;False;False;;;;1610594907;;False;{};gj6vu60;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6vu60/;1610675448;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610594910;;False;{};gj6vuda;False;t3_kwisv4;False;True;t1_gj6tcan;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6vuda/;1610675452;3;True;False;anime;t5_2qh22;;0;[]; -[];;;thatwriterguyva;;;[];;;;text;t2_mc1lm;False;False;[];;At first it also reminded me of the Rem scene until Subaru was hard dodging her question of why he lied. It made his whole confession feel very random. The conversation very quickly started making me uncomfortable;False;False;;;;1610595005;;False;{};gj6w0g0;False;t3_kwisv4;False;False;t1_gj5h113;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6w0g0/;1610675556;4;True;False;anime;t5_2qh22;;0;[]; -[];;;thatwriterguyva;;;[];;;;text;t2_mc1lm;False;False;[];;As was his part in this conversation. Extremely toxic;False;False;;;;1610595060;;False;{};gj6w3v6;False;t3_kwisv4;False;True;t1_gj64m0k;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6w3v6/;1610675618;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;waifucollapse;;;[];;;;text;t2_46hm11qd;False;False;[];;Yeah, it felt kind of shitty to me. Like, I love you just cause I love you. I mean I kind of get it, especially the sort of love I felt as a teen, but looking at it as an adult it feels pretty shitty and manipulative. IDK, parts were good, where he actually described why he loved her but then it doubled back into this sort of toxic, I don't see you as a person, just as a love interest type of speech.;False;False;;;;1610595060;;False;{};gj6w3vk;False;t3_kwisv4;False;False;t1_gj5cccu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6w3vk/;1610675618;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"Models aren't off model like the latter end of s2 - -But I gotta say the animation is not as good as the first few episodes of s2";False;False;;;;1610595084;;False;{};gj6w5hq;False;t3_kwisv4;False;True;t1_gj6p7iu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6w5hq/;1610675645;2;True;False;anime;t5_2qh22;;0;[]; -[];;;waifucollapse;;;[];;;;text;t2_46hm11qd;False;False;[];;Yeah, I'm with you. It felt sort of shitty, like he loves her because she's his love interest and not her as a person. It did, however feel realistic for the things I felt and what I was able to articulate as a teen so maybe that's what makes it relatable for a lot of people?;False;False;;;;1610595199;;False;{};gj6wcxr;False;t3_kwisv4;False;False;t1_gj6625f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6wcxr/;1610675771;7;True;False;anime;t5_2qh22;;0;[]; -[];;;noodlesandrice1;;;[];;;;text;t2_bt8zh;False;False;[];;"The whole point was that there wasn’t supposed to be any direction. It was just two desperate teenagers throwing their emotions at each other without paying attention to what they were actually saying. - -Subaru was expressing his love for Emilia one moment, then deriding her uselessness the next. Emilia was mad at Subaru for not being mad at her one moment, then mad at him for getting mad at her the next. - -Nothing made any sense whatsoever, but nothing needed to. Love doesn’t come about because of any logical reason, but because of pure emotion.";False;False;;;;1610595230;;False;{};gj6wetv;False;t3_kwisv4;False;False;t1_gj6ts2u;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6wetv/;1610675803;4;True;False;anime;t5_2qh22;;0;[]; -[];;;mufcordie;;;[];;;;text;t2_j4jr2;False;False;[];;You can buy the current arc of LNs on amazon. They give more insight into characters thoughts and everything, and they have illustrations!;False;False;;;;1610595239;;False;{};gj6wfek;False;t3_kwisv4;False;True;t1_gj53uzx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6wfek/;1610675814;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OvergearedBigBoy;;;[];;;;text;t2_62vx5saq;False;False;[];;Being honest with the albeit creepy reasons he likes her like her appearance is better than using insincere logic. The only thing he needs to get across to her is that he loves her instead of hates her despite all the seemingly irrefutable conclusions from her reasonings.;False;False;;;;1610595240;;False;{};gj6wfgm;False;t3_kwisv4;False;True;t1_gj6r7nc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6wfgm/;1610675815;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KH_Fan96;;;[];;;;text;t2_xa0iahx;False;False;[];;Im so worred that Subaru is gonna end up killed and have to reset. After all, it wouldnt be Re:Zero without pain and suffering.;False;False;;;;1610595319;;False;{};gj6wkhh;False;t3_kwisv4;False;True;t1_gj4j0q8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6wkhh/;1610675899;0;True;False;anime;t5_2qh22;;0;[]; -[];;;mackfeesh;;;[];;;;text;t2_cz1t3lz;False;False;[];;fingers crossed that he doesn't instantly die and lose the progress. lol.;False;False;;;;1610595339;;False;{};gj6wlux;False;t3_kwisv4;False;False;t1_gj4dg6g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6wlux/;1610675922;20;True;False;anime;t5_2qh22;;0;[]; -[];;;bestuser100;;;[];;;;text;t2_9p241taz;False;False;[];;I AM WAITING MHA;False;True;;comment score below threshold;;1610595412;;False;{};gj6wqjh;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6wqjh/;1610676003;-12;True;False;anime;t5_2qh22;;0;[]; -[];;;LawsonTse;;;[];;;;text;t2_15e3qo;False;False;[];;That's some good faith adaptation right their, could have squeezed a few more episodes out of the footage they've got had they left the OP and ED in.;False;False;;;;1610595521;;False;{};gj6wxkx;False;t3_kwisv4;False;True;t1_gj4dvoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6wxkx/;1610676131;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mackfeesh;;;[];;;;text;t2_cz1t3lz;False;False;[];;"> It lulls you into a false sense of security and then pulls the rug out from under you. - -I watch with the full expectation that my heart will be torn asunder every episode. Lol. I have so little faith that things will turn out well. but i can't. stop. watching. ahhh";False;False;;;;1610595554;;False;{};gj6wznt;False;t3_kwisv4;False;True;t1_gj51zk8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6wznt/;1610676171;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AElOU;;;[];;;;text;t2_o9t9z;False;False;[];;"This isn't just about this one instance though. This argument has happened before, and Subaru not even considering Emilia's (or anyone else's) feelings has been his m.o. for the entire series up until now. That's what the whole tea party conversation was about: Subaru has an incredible amount of self-loathing, so as a result he doesn't value his own life. Instead he develops a martyr complex and latches on to others (especially Emilia) to give his life (and deaths) meaning. This is why Satella begged him to learn to love himself, and why Typhon was surprised when she saw Subaru considered himself a sinner. That was also the whole point of the reveal that Subaru is actually leaving timelines behind when he dies: he's disregarding countless other people's feelings and emotions on the grounds of giving his own life to have his own ideal happy future where everything is just the way he wants, which develops into a negative, unhealthy obsession. - -All of this goes double for Emilia. The very start of the series has him latch onto her just because he's a self-aware otaku about isekai tropes and because she's the first attractive woman to positively interact with him. Since that point he's latched onto her as a reason for doing the things he does, without actually taking her into consideration. She's not a person to him, she's a goal he's fighting for. But for some reason, unlike the previous callouts, this negative obsession with others and self-loathing is played straight as a good thing, given that it works and Emilia basically brushes off all the things she took issue with him less than 30 seconds ago. - -Also if saying ""I'm suffering for you here, at least try to look as cute as I hoped you would"" doesn't sound like an unhealthy, entitled thing to say then idk what does.";False;False;;;;1610595584;;1610595869.0;{};gj6x1he;False;t3_kwisv4;False;True;t1_gj6u8m4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6x1he/;1610676203;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zero_Staz;;;[];;;;text;t2_cvp4e;False;False;[];;Can someone give me spoilers as to why she loves him;False;False;;;;1610595607;;False;{};gj6x2z5;False;t3_kwisv4;False;True;t1_gj4fe4g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6x2z5/;1610676236;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dabaldeagle;;;[];;;;text;t2_jm1kn;False;False;[];;Nah, invest in Subaru X Rem stock while prices are low;False;False;;;;1610595644;;False;{};gj6x5d8;False;t3_kwisv4;False;True;t1_gj4g28e;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6x5d8/;1610676285;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ImKnottt;;;[];;;;text;t2_80glhny6;False;False;[];;My man, Subaru, is a true otoko. Asking a girl first before kissing her is a sign of a true gentleman.;False;False;;;;1610595723;;False;{};gj6xaes;False;t3_kwisv4;False;True;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6xaes/;1610676380;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SoMuchHatred;;;[];;;;text;t2_o15bh;False;False;[];;"While all three of those things are obviously problems for Emilia right now, none of them are really *the* problem - they were just exacerbating her feeling that Subaru and Puck don't really love her. So all Subaru could really do is address that central one by convincing Emilia that he loves her despite acknowledging her flaws. The other three are either too big to address right in that moment or already dealt with as well as he realistically could - I don't know what else he could say on the memory one besides ""we'll deal with it as it comes but I'll still love you either way.""";False;False;;;;1610595786;;False;{};gj6xeli;False;t3_kwisv4;False;False;t1_gj6sz57;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6xeli/;1610676457;7;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;I'm also waiting for My Hero but this is a Re:Zero thread friend :);False;False;;;;1610595843;;False;{};gj6xi5k;False;t3_kwisv4;False;False;t1_gj6wqjh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6xi5k/;1610676521;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Osama11Sul;;;[];;;;text;t2_rt9o8xe;False;False;[];;Or you could also say its zero two.;False;False;;;;1610595916;;False;{};gj6xmsl;False;t3_kwisv4;False;True;t1_gj5olxz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6xmsl/;1610676601;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Csr56;;;[];;;;text;t2_2jxvv6sd;False;False;[];;"She tried to save Subaru even though her candidacy was at stake, even though the trials are very painful for her she doesn't stop doing them etc... - -It's obvious she is a kind person and doesn't quit easily. What would be insincere in stating those qualities of hers?";False;False;;;;1610595950;;False;{};gj6xozd;False;t3_kwisv4;False;True;t1_gj6wfgm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6xozd/;1610676639;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiro_Kai;;;[];;;;text;t2_bevm2wi;False;False;[];;Frufroo is his main dragon. Subaru is Patrasche owner, he got her from Crusch in the battle against the whale. They are just momentarily together pushing the wagon there but it's kinda funny Frufroo reaction. Ins't?;False;False;;;;1610596012;;False;{};gj6xssl;False;t3_kwisv4;False;False;t1_gj6sza0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6xssl/;1610676708;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Chinbie;;;[];;;;text;t2_12h6erpy;False;False;[];;"A DEFINITELY MUST WATCH EPISODE: 10/10 - -This episode is like the episode 18 of re zero season 1 but this time its, Emilia and Subaru.. - -Amidst being a #TeamRem, i just SUOER LOVE THE EPISODE.... you could feel the emotions while subaru and emilia are talking at one another... Emilia is just so lonely right now after she feel being lied by Subaru and Puck, but Subaru says the I LOVE YOU so many times to emilia.... - -and that kiss is just very great... - -and by the way OTTO best Boi";False;False;;;;1610596049;;False;{};gj6xv1t;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6xv1t/;1610676746;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;"Thus it an open question the key is Emilia's feelings. A royal having a spouse and a mistress is basically standard so we will see. - -In real history Emilia if made Queen would actually have to marry a royal normally of another country but often one did not sleep with ones spouse except to have children. Marrying a Noble also done if a royal could not be pulled off.";False;False;;;;1610596130;;False;{};gj6y07k;False;t3_kwisv4;False;True;t1_gj5ojfp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6y07k/;1610676840;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610596225;;False;{};gj6y674;False;t3_kwisv4;False;True;t1_gj6tcan;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6y674/;1610676941;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mathius17;;;[];;;;text;t2_tkke6;False;False;[];;This episode is the embodiment of everything I hated Season 1 (even dropped it at some point);False;False;;;;1610596253;;False;{};gj6y805;False;t3_kwisv4;False;False;t1_gj5gg5h;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6y805/;1610676973;6;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;you're a pain in the ass, just dodged it;False;False;;;;1610596292;;False;{};gj6yah9;False;t3_kwisv4;False;True;t1_gj6vu60;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6yah9/;1610677016;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LawsonTse;;;[];;;;text;t2_15e3qo;False;False;[];;"That is the chaddest of response. - -""Why would you love me? I am so pathetic and useless.."""" - -""Yeah, why*would* I suffer for a pain in the ass like you if not for love?""";False;False;;;;1610596344;;False;{};gj6ydu8;False;t3_kwisv4;False;False;t1_gj4ps5w;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6ydu8/;1610677074;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ashutosh29;;;[];;;;text;t2_5w0dob4v;False;False;[];;It has been 8 hours, I expect great things from you fellow redditor.;False;False;;;;1610596383;;False;{};gj6yg8w;False;t3_kwisv4;False;False;t1_gj58fda;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6yg8w/;1610677116;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Spectral2020;;;[];;;;text;t2_84n70o3g;False;False;[];;"This time isn't a negative obsession with her. Emilia wants someone to believe in her, but doesn't want to deal with the responsibilities that come with it. Subaru said that he'd take care of the trials for her, but that just made her sad because she thought she didn't have anyone who believe in her left after Puck left. Now Subaru is providing proof that he does believe in her, which in turn carries his and everyone else's expectations in her. - -One of the first things she asks Subaru is if he's angry with her and when he says no, she takes it as confirmation that Subaru didn't expect anything from her in the first place, to which he refutes by laying it all out. Their first argument was that Subaru put expectations that she never wanted to meet or wanted, while this time, Subaru is giving her the belief and expectations that she did want to meet.";False;False;;;;1610596383;;False;{};gj6yg9i;False;t3_kwisv4;False;False;t1_gj6x1he;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6yg9i/;1610677116;19;True;False;anime;t5_2qh22;;0;[]; -[];;;G102Y5568;;;[];;;;text;t2_5blex;False;False;[];;I enjoyed that, he's asking for consent without breaking the mood. Much better than when the protagonist just suddenly kisses someone who may or may not want it.;False;False;;;;1610596460;;False;{};gj6ykzc;False;t3_kwisv4;False;False;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6ykzc/;1610677201;6;True;False;anime;t5_2qh22;;0;[]; -[];;;John___Titor;;MAL;[];;https://myanimelist.net/animelist/John_Titor_;dark;text;t2_hcjrw;False;False;[];;Why am I crying right now...;False;False;;;;1610596505;;False;{};gj6ynvn;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6ynvn/;1610677251;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;LawsonTse;;;[];;;;text;t2_15e3qo;False;False;[];;Such is the curse of the Rxm sisters, one of them must be useless when the other is useful.;False;False;;;;1610596505;;False;{};gj6ynvt;False;t3_kwisv4;False;False;t1_gj66fuv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6ynvt/;1610677251;3;True;False;anime;t5_2qh22;;0;[]; -[];;;waifucollapse;;;[];;;;text;t2_46hm11qd;False;False;[];;Yeah, I'm with you, it felt like an echo of their fight in season 1 where we were reminded that Subaru is a NEET otaku who was looking at her as the object of his desire and not as a person... it just worked this time because she was vulnerable. I really hope that winds up being the point, or if not and their relationship turns out to be good and healthy, we see actual reasons why it changes into that.;False;False;;;;1610596514;;False;{};gj6yojq;False;t3_kwisv4;False;False;t1_gj6vc5n;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6yojq/;1610677263;12;True;False;anime;t5_2qh22;;0;[]; -[];;;G102Y5568;;;[];;;;text;t2_5blex;False;False;[];;DOOOOOOOOOOOOOOODGEEEEEEEEEE!;False;False;;;;1610596525;;False;{};gj6yp8o;False;t3_kwisv4;False;True;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6yp8o/;1610677275;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Christopho;;MAL;[];;https://myanimelist.net/profile/furrytoes;dark;text;t2_c6v53;False;False;[];;"> What’s important isn’t the beginning or the middle, it’s the end. - -Echidna agrees.";False;False;;;;1610596570;;False;{};gj6ys0z;False;t3_kwisv4;False;True;t1_gj4eeoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6ys0z/;1610677325;1;True;False;anime;t5_2qh22;;0;[]; -[];;;G102Y5568;;;[];;;;text;t2_5blex;False;False;[];;Given that Emilia lost her memories and is afraid of who she's becoming now that she's getting them back, my theory is that Emilia IS Satella. Given that Return by Death is a time travel ability, then it's canon that Satella can time travel. Either Emilia is a young version of Satella, or Satella is a young version of Emilia. Or maybe it's both. Who knows honestly.;False;False;;;;1610596623;;False;{};gj6yvfa;False;t3_kwisv4;False;True;t1_gj4ot8r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6yvfa/;1610677383;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ProgramTheWorld;;;[];;;;text;t2_fmd67;False;False;[];;40 episodes and they finally kissed. Here’s an F for Rem;False;False;;;;1610596624;;False;{};gj6yvj6;False;t3_kwisv4;False;True;t1_gj4eaqt;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6yvj6/;1610677385;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gulitiasinjurai;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;eh nandake?;light;text;t2_1591dz;False;False;[];;After all that he's been through, and he only got to the first base;False;False;;;;1610596687;;False;{};gj6yzm5;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6yzm5/;1610677461;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ProgramTheWorld;;;[];;;;text;t2_fmd67;False;False;[];;OP: Zero;False;False;;;;1610596717;;False;{};gj6z1fu;False;t3_kwisv4;False;True;t1_gj4gufd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6z1fu/;1610677492;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Redditer51;;;[];;;;text;t2_gk7ihro;False;False;[];;"Rem's love confession to Subaru: Powerful and uplifting. - -Subaru's love confession to Emilia: A couple arguing in a parking lot (possibly intoxicated). - -(This is why Rem is best girl).";False;False;;;;1610596798;;False;{};gj6z6km;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6z6km/;1610677583;10;True;False;anime;t5_2qh22;;0;[]; -[];;;megatsuna;;;[];;;;text;t2_7is0v;False;False;[];;"can't believe i actually let out a bit of a yell seeing the kiss. it just didn't seem possible in this lifetime but we actually got it! - -also, the episodes always feel short but i actually thought it was over when we saw the first end card. imagine my happiness when i see I still had half an episode left to enjoy. - -so otto has powers as well, though for some reason talking to animals takes a literal toll on him. glad his older bro was there to protect him than, would be nice to see how he is now.";False;False;;;;1610596803;;False;{};gj6z6tw;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6z6tw/;1610677587;2;True;False;anime;t5_2qh22;;0;[]; -[];;;younghnam;;;[];;;;text;t2_2r0d09ds;False;False;[];;"Subaru to Emilia: I love you, I love you, I love you - -Satella to Subaru: I love you, I love you, I love you - -Definitely think this further reinforces the speculation that Emilia = Satella. Besides, no way the witch of ENVY is going to stand by idly to unrequited love unless it’s not unrequited because Emilia in fact is Satella.";False;False;;;;1610596826;;False;{};gj6z8b6;False;t3_kwisv4;False;False;t1_gj4fe4g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6z8b6/;1610677611;5;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;"Subaru is madly in love. The type poets write about a form of madness. And of course it can end in tragedy but when someone is madly in love one is basically not sane. But it is not Codependency. - -Codependency normally refers to someone like me who seeks someone that will abuse oneself in various ways while the Codependent enables what ever serious issue the other person has. -Thus I was what the hell are they talking about in Oregairu. - -Being too dependent on someone else can be bad but it described as that not codependent as the person being depended on is not abusive in any way.";False;False;;;;1610596830;;False;{};gj6z8kn;False;t3_kwisv4;False;False;t1_gj4ils5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6z8kn/;1610677615;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheKappaOverlord;;;[];;;;text;t2_j6waf;False;False;[];;"the mans been through so many loops of things the concept of being ""eloquent"" left him a long time ago. - -Unless its his genuine first rodeo";False;False;;;;1610596835;;False;{};gj6z8vm;False;t3_kwisv4;False;False;t1_gj4kg7x;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6z8vm/;1610677621;10;True;False;anime;t5_2qh22;;0;[]; -[];;;ProgramTheWorld;;;[];;;;text;t2_fmd67;False;False;[];;Otto fighting hard for his bro and Subaru is just there flirting with his silver haired girlfriend.;False;False;;;;1610596881;;False;{};gj6zbtx;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6zbtx/;1610677672;5;True;False;anime;t5_2qh22;;0;[]; -[];;;TheKappaOverlord;;;[];;;;text;t2_j6waf;False;False;[];;are we here just to suffer?;False;False;;;;1610596884;;False;{};gj6zbyy;False;t3_kwisv4;False;False;t1_gj4oxe6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6zbyy/;1610677674;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;Trying to plot out a divorce, can confirm;False;False;;;;1610596979;;False;{};gj6zhx7;False;t3_kwisv4;False;False;t1_gj4yvtp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6zhx7/;1610677772;2;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"He had to because he had no choice if only people paid more attention - -Also, i don't see how that made his confession very random? he's been talking about how he loves her since day 1, this was the extension of that.";False;False;;;;1610596984;;False;{};gj6zi91;False;t3_kwisv4;False;True;t1_gj6w0g0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6zi91/;1610677777;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Vsauce Michael here..;False;False;;;;1610597011;;False;{};gj6zjxg;False;t3_kwisv4;False;True;t1_gj6ynvn;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6zjxg/;1610677806;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;He didn't say every relationship must work;False;False;;;;1610597021;;False;{};gj6zkgv;False;t3_kwisv4;False;True;t1_gj6eeas;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6zkgv/;1610677816;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheKappaOverlord;;;[];;;;text;t2_j6waf;False;False;[];;my spider sense says otherwise after he entered the winner route;False;False;;;;1610597032;;False;{};gj6zl5m;False;t3_kwisv4;False;False;t1_gj4sg2m;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6zl5m/;1610677829;7;True;False;anime;t5_2qh22;;0;[]; -[];;;pleiades1208;;;[];;;;text;t2_8e61j5he;False;False;[];;ughhh the normie criticisms as always;False;True;;comment score below threshold;;1610597048;;False;{};gj6zm5s;False;t3_kwisv4;False;True;t1_gj6sz57;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6zm5s/;1610677846;-19;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;He was probably just nervous, and it came out that way.;False;False;;;;1610597091;;False;{};gj6zou2;False;t3_kwisv4;False;False;t1_gj6z8vm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6zou2/;1610677891;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Better late than never.;False;False;;;;1610597155;;False;{};gj6zsmq;False;t3_kwisv4;False;True;t1_gj6yzm5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6zsmq/;1610677954;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Valkonn;;;[];;;;text;t2_dx7hj;False;False;[];;"You don't really need a solid reason for love. He's just infatuated with her but he knows that deep down she is a very capable and kind person. He's trying to bring out the best in her. - -This is one of the best relationships I've seen for that reason. Neither of them are even close to perfect but they bring out the best in each other.";False;False;;;;1610597170;;False;{};gj6ztiu;False;t3_kwisv4;False;False;t1_gj6f4n9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6ztiu/;1610677969;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;A cat is fine too [](#mischievous);False;False;;;;1610597170;;False;{};gj6ztjz;False;t3_kwisv4;False;True;t1_gj4wh88;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6ztjz/;1610677970;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheKappaOverlord;;;[];;;;text;t2_j6waf;False;False;[];;reading slow motion train wrecks (pile ups) is based;False;False;;;;1610597179;;False;{};gj6zu5j;False;t3_kwisv4;False;True;t1_gj4vbzy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6zu5j/;1610677982;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ProgramTheWorld;;;[];;;;text;t2_fmd67;False;False;[];;Sorry Subaru, but I love Rem;False;False;;;;1610597202;;False;{};gj6zvhw;False;t3_kwisv4;False;True;t1_gj4u0m8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6zvhw/;1610678006;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> A couple arguing in a parking lot (possibly intoxicated). - -I kinda like my drugs though.";False;False;;;;1610597271;;False;{};gj6zzuf;False;t3_kwisv4;False;True;t1_gj6z6km;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj6zzuf/;1610678083;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610597274;;False;{};gj7001l;False;t3_kwisv4;False;True;t1_gj4z7ax;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7001l/;1610678086;1;True;False;anime;t5_2qh22;;0;[]; -[];;;younghnam;;;[];;;;text;t2_2r0d09ds;False;False;[];;I’m glad we got to the romantic confession milestone this early and is not dragged out to the end of a series and used as a trope to save the day as many tv shows or anime’s often do;False;False;;;;1610597352;;False;{};gj704ug;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj704ug/;1610678171;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AwkwardlylyAwkward;;;[];;;;text;t2_48no1imj;False;False;[];;Someone please explain me what's happening I'm total lost and I don't know what's going on and I'm thinking of dropping it;False;False;;;;1610597358;;False;{};gj70575;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj70575/;1610678178;6;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> feel short - -God lets hope we never go back to 23 minute episodes.";False;False;;;;1610597364;;False;{};gj705lx;False;t3_kwisv4;False;True;t1_gj6z6tw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj705lx/;1610678185;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;Although he has a clear and simple alternate course in that case…;False;False;;;;1610597397;;False;{};gj707nd;False;t3_kwisv4;False;True;t1_gj5wjer;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj707nd/;1610678222;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Euferes;;;[];;;;text;t2_68pdt0b7;False;False;[];;Subaru with Emilia and I still can't be with my crush *SaD NoIsEs*;False;False;;;;1610597429;;False;{};gj709jg;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj709jg/;1610678257;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;If Subaru doesn't gain Emilia's trust they might be fucked.;False;False;;;;1610597434;;False;{};gj709uf;False;t3_kwisv4;False;True;t1_gj6zbtx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj709uf/;1610678263;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheKappaOverlord;;;[];;;;text;t2_j6waf;False;False;[];;"There is still a strong chance the timeline resets. There is about 10... ish episodes or something left afaik. And remember Subaru has to defeat Ezla and deal with the little shit spy too. And going off Garf's bloodied form when he met Subaru, Ram is probably broken and bloodied, but not dead. So how does he defeat Ezla and the little girl? - -Although like with the Whale, the checkpoint will probably move up to a more graceful point, although it wouldn't shock me if it was somewhere *before* the kiss.";False;False;;;;1610597454;;False;{};gj70b2h;False;t3_kwisv4;False;True;t1_gj51j2e;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj70b2h/;1610678284;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OvergearedBigBoy;;;[];;;;text;t2_62vx5saq;False;False;[];;Not this loop but she did give up before in past loops so how can he be really sincere when he makes that claim;False;False;;;;1610597524;;False;{};gj70fhm;False;t3_kwisv4;False;True;t1_gj6xozd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj70fhm/;1610678377;1;True;False;anime;t5_2qh22;;0;[]; -[];;;noodlesandrice1;;;[];;;;text;t2_bt8zh;False;False;[];;Otto was fighting hard **so that** Subaru could flirt with his silver haired girlfriend. He’s a bro like that.;False;False;;;;1610597549;;False;{};gj70gzc;False;t3_kwisv4;False;False;t1_gj6zbtx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj70gzc/;1610678404;6;True;False;anime;t5_2qh22;;0;[]; -[];;;kicksFR;;;[];;;;text;t2_4jaom6ys;False;False;[];;Well the cour 1 op did play when Otto was running does it count ?;False;False;;;;1610597609;;False;{};gj70kp0;False;t3_kwisv4;False;True;t1_gj4oxe6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj70kp0/;1610678472;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gulitiasinjurai;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;eh nandake?;light;text;t2_1591dz;False;False;[];;"Yeah. At least it's progressing. - -Now anxiously waiting for Rem reaction when she wakes up knowing Subaru has gotten to the first base with Emilia";False;False;;;;1610597630;;False;{};gj70lxu;False;t3_kwisv4;False;True;t1_gj6zsmq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj70lxu/;1610678495;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ProgramTheWorld;;;[];;;;text;t2_fmd67;False;False;[];;True bro;False;False;;;;1610597633;;False;{};gj70m40;False;t3_kwisv4;False;False;t1_gj70gzc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj70m40/;1610678498;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;…*RO GATO~ ♬*;False;False;;;;1610597644;;False;{};gj70mt7;False;t3_kwisv4;False;False;t1_gj5dq0f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj70mt7/;1610678512;10;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 125, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'When you come across a feel-good thing.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'icon_width': 2048, 'id': 'award_5f123e3d-4f48-42f4-9c11-e98b566d5897', 'is_enabled': True, 'is_new': False, 'name': 'Wholesome', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"I'll try and help you Re:Zero can be difficult to digest. - ---- -Previous episode - ---- - -Subaru doesn't want to rely on RBD anymore. - -Subaru makes a bet to Roswaal. - ---- -*The bet:* - -Subaru has to save the Sanctuary by finishing the trials, before the Great Rabbit comes. - -Subaru has to save the Mansion from Elsa and Mellie. - -Subaru has to do it in this loop. - ---- -In case of Success: - -Roswaal stops following the Gospel, and follows Subaru. - ---- - -Why would Roswaal accept? - -Roswaal said **""It isn't a bad idea to lay some groundwork for the next me.""**, meaning since this loop is already deviated from the Gospel might as well let Subaru try whatever he wants, when Subaru fails it'll reinforce that Subaru must follow the path of Isolation and save only Emilia from then on. - -**If you have any more questions just ask!**";False;False;;;;1610597653;;False;{};gj70ndr;False;t3_kwisv4;False;False;t1_gj70575;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj70ndr/;1610678523;7;True;False;anime;t5_2qh22;;1;[]; -[];;;TheKappaOverlord;;;[];;;;text;t2_j6waf;False;False;[];;"But the takeaway is that half of the original resets were originally suicide runs effectively. Subaru intentionally going as far as possible while collecting information for his next attempted run. - -The scene with the Edichina changed it up so subaru isn't going to willingly suicide death anymore unless absolutely necessary. - -ReZero still isn't new to just killing him off just to throw a monkey wrench in the plan.";False;False;;;;1610597677;;False;{};gj70oty;False;t3_kwisv4;False;False;t1_gj5njtf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj70oty/;1610678554;9;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;This way they also get to evolve the relationship.;False;False;;;;1610597726;;False;{};gj70rv3;False;t3_kwisv4;False;True;t1_gj704ug;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj70rv3/;1610678606;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheKappaOverlord;;;[];;;;text;t2_j6waf;False;False;[];;"It wouldn't surprise me if the argument was partially ad libed. - -The whole theme being scriped, but the argument itself being ad libed. - -because it definitely didn't sound scripted, and I believe the duo have partially ad libed lines in certain scenes before.";False;False;;;;1610597735;;False;{};gj70sh2;False;t3_kwisv4;False;False;t1_gj4t8ab;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj70sh2/;1610678620;5;True;False;anime;t5_2qh22;;0;[]; -[];;;mapoztofu;;;[];;;;text;t2_ig4auzn;False;False;[];;Can this ep break s3p1 ep1's record?;False;False;;;;1610597766;;False;{};gj70ufm;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj70ufm/;1610678675;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;Patrasche just got finished dishing all the weird shit Subaru is into;False;False;;;;1610597786;;False;{};gj70vnh;False;t3_kwisv4;False;True;t1_gj545ko;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj70vnh/;1610678700;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Oh boy.. lets hope for it.;False;False;;;;1610597863;;False;{};gj7109q;False;t3_kwisv4;False;True;t1_gj70lxu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7109q/;1610678794;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PeripheralAddition;;MAL;[];;http://myanimelist.net/profile/peripheraladd;dark;text;t2_gy2f6;False;False;[];;"""the woman I respect most in the world told me so"" - -goddamn man you cant hit me like this";False;False;;;;1610597935;;False;{};gj714p3;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj714p3/;1610678874;4;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Nope, some Rem fans are angry there's a lot of passive aggression and downvoting happening.;False;False;;;;1610597956;;False;{};gj7160g;False;t3_kwisv4;False;False;t1_gj70ufm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7160g/;1610678903;9;True;False;anime;t5_2qh22;;0;[]; -[];;;AndersonViMayers;;;[];;;;text;t2_66gcv5ii;False;False;[];;Oh, there's a rule called 'just no', I see. Ill keep that in mind lol;False;True;;comment score below threshold;;1610597959;;False;{};gj7167j;False;t3_kwisv4;False;True;t1_gj5v1qn;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7167j/;1610678907;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;"> We need more Ram! - -That's what I keep telling the IT department!";False;False;;;;1610598016;;False;{};gj719n7;False;t3_kwisv4;False;False;t1_gj4hakp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj719n7/;1610678973;19;True;False;anime;t5_2qh22;;0;[]; -[];;;varishtg;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;https://www.anime-planet.com/users/senpaidev/anime/watching?sort;light;text;t2_dmv1u;False;False;[];;Is it weird that I read it in Holt's voice?;False;False;;;;1610598025;;False;{};gj71a85;False;t3_kwisv4;False;False;t1_gj4dtps;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj71a85/;1610678984;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AwkwardlylyAwkward;;;[];;;;text;t2_48no1imj;False;False;[];;Thanks and what's up with all the witches what does echidna wants?;False;False;;;;1610598029;;False;{};gj71aie;False;t3_kwisv4;False;True;t1_gj70ndr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj71aie/;1610678988;3;True;False;anime;t5_2qh22;;0;[]; -[];;;thatwriterguyva;;;[];;;;text;t2_mc1lm;False;False;[];;"I know he can't tell her. But after her first tangent he essentially ignores everything she said. He doesn't even initially acknowledge the question. That's why she's super confused at first, and why she repeatedly asks him. Why, why, why. - - -A kiss shouldn't have even been an option. Even if you have a good reason to lie irl this is not how a healthy relationship of any kind starts. This conversation on his part was toxic for that fact alone because it makes him sound just as creepy as Betelgeuse";False;False;;;;1610598041;;False;{};gj71b97;False;t3_kwisv4;False;False;t1_gj6zi91;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj71b97/;1610679002;7;True;False;anime;t5_2qh22;;0;[]; -[];;;bobert1201;;;[];;;;text;t2_11bgnq;False;False;[];;Did I miss something, or do we just not know why subaru didn't keep his promise to stay with emilia?;False;False;;;;1610598057;;False;{};gj71c60;False;t3_kwisv4;False;True;t1_gj4gco8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj71c60/;1610679016;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;If it's not platonic crush, maybe go for it?;False;False;;;;1610598072;;False;{};gj71d3q;False;t3_kwisv4;False;True;t1_gj709jg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj71d3q/;1610679037;2;True;False;anime;t5_2qh22;;0;[]; -[];;;d3ssp3rado;;;[];;;;text;t2_63s4v;False;False;[];;[Hmm](https://imgur.com/a/XBdKQww);False;False;;;;1610598120;;False;{};gj71g27;False;t3_kwisv4;False;True;t1_gj4kwp3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj71g27/;1610679093;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;"1 = ichi - -5 = go - -This show has been a _Bleach_ spinoff the whole time";False;False;;;;1610598161;;False;{};gj71ij4;False;t3_kwisv4;False;False;t1_gj4qdm7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj71ij4/;1610679139;27;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Do you mind spoilers? Because that will kinda be answered this season.;False;False;;;;1610598202;;False;{};gj71l28;False;t3_kwisv4;False;True;t1_gj71aie;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj71l28/;1610679184;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610598232;;False;{};gj71mw3;False;t3_kwisv4;False;True;t1_gj7001l;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj71mw3/;1610679219;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AwkwardlylyAwkward;;;[];;;;text;t2_48no1imj;False;False;[];;I don't mind spoilers;False;False;;;;1610598234;;False;{};gj71mzz;False;t3_kwisv4;False;True;t1_gj71l28;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj71mzz/;1610679220;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;ichigo = strawberry, what could this mean?? ~starts sweating~~;False;False;;;;1610598289;;False;{};gj71qck;False;t3_kwisv4;False;False;t1_gj71ij4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj71qck/;1610679281;12;True;False;anime;t5_2qh22;;0;[]; -[];;;TannerthePale;;;[];;;;text;t2_dz69q;False;False;[];;"subaru: If you dont want this, then dodge. - -emilia: \*closes eyes\* - -subaru: \****HEADBUTT\****";False;False;;;;1610598366;;False;{};gj71v3f;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj71v3f/;1610679372;6;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;I'll try to be vague and I'll message you.;False;False;;;;1610598397;;False;{};gj71wx4;False;t3_kwisv4;False;True;t1_gj71mzz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj71wx4/;1610679407;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Csr56;;;[];;;;text;t2_2jxvv6sd;False;False;[];;"She didn't give up, she broke down mentally once after Roswaal manipulated her. - -After all her own struggles you think this one time that she broke down is what defines her and what Subaru sees in her so that he can't compliment any aspect of her sincerely other than her body, hair and voice? Those are the only things he fell in love with and he forgot her kindness and what she goes through for other people? - -Let's just agree to disagree on the whole subject.";False;False;;;;1610598401;;False;{};gj71x70;False;t3_kwisv4;False;True;t1_gj70fhm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj71x70/;1610679412;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TannerthePale;;;[];;;;text;t2_dz69q;False;False;[];;the way i would've IMMEDIATELY surrendered and begged him to get me away from those fucking bugs;False;False;;;;1610598414;;False;{};gj71xyz;False;t3_kwisv4;False;True;t1_gj4gx5f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj71xyz/;1610679425;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blahgreat;;;[];;;;text;t2_22kywhec;False;False;[];;"Amazing otto, badass ram, chad subaru, Emilia accepting Subaru and one angry catboi. Just amazing. - - -But the chaddest of em all whitefox.";False;False;;;;1610598424;;False;{};gj71ylk;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj71ylk/;1610679439;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ConvolutedBoy;;;[];;;;text;t2_5dp2r;False;False;[];;I lol’d so hard;False;False;;;;1610598426;;False;{};gj71yob;False;t3_kwisv4;False;True;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj71yob/;1610679440;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AwkwardlylyAwkward;;;[];;;;text;t2_48no1imj;False;False;[];;Thanks;False;False;;;;1610598443;;False;{};gj71zpu;False;t3_kwisv4;False;True;t1_gj71wx4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj71zpu/;1610679459;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Its tracking behind what that episode did - -Edit: [tracking of s2ep1](https://cdn.discordapp.com/attachments/476391825590976522/731524072004911113/karma_track.png) - -12 hours after that episode the number was close to 12k, we didn't even reach 10k yet";False;False;;;;1610598502;;1610601969.0;{};gj7239x;False;t3_kwisv4;False;False;t1_gj70ufm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7239x/;1610679521;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Ahegao_Double_Peace;;;[];;;;text;t2_2ix6z8u2;False;False;[];;The funny thing is that Rui (who became a chef by that time), lost to a vegetable (Hina). XD;False;False;;;;1610598513;;False;{};gj723yl;False;t3_kwisv4;False;True;t1_gj5kpxo;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj723yl/;1610679532;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JadeDragon02;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Anime only watcher;dark;text;t2_ommdm;False;False;[];;"Did you guys notice the reflections in their eyes? Subaru had Emillia all the time in his eyes, meanwhile Emillia had nothing until the very last moment. Happy to see Subaru in Emillias eyes in the end. - -btw, why can Subaru enter the tomb?";False;False;;;;1610598639;;1610599181.0;{};gj72bif;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj72bif/;1610679676;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Ahegao_Double_Peace;;;[];;;;text;t2_2ix6z8u2;False;False;[];;"*Petelgeuse revives and becomess sane just in time for Subaru's wedding, he replaces the priest/pastor/whatever*: - -Welcome, believers in LOVE. We are here to witness the Union between Natsuki Subaru, Emilia, and Rem. Forgive my Sloth for not being able to do this for you sooner, Emilia. Fortuna, please forgive me. Also, fuck you Puck.";False;False;;;;1610598713;;False;{};gj72fum;False;t3_kwisv4;False;True;t1_gj4wct5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj72fum/;1610679752;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ConvolutedBoy;;;[];;;;text;t2_5dp2r;False;False;[];;I kinda hated it and I’m not sure if people agree. Saying “I love you” in response to every issue a person has, including one that includes calling Subaru a liar, doesn’t mean too much imo.;False;False;;;;1610598718;;False;{};gj72g5z;False;t3_kwisv4;False;True;t1_gj4fe4g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj72g5z/;1610679757;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sedewt;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Sedew;light;text;t2_3kzvlpfo;False;False;[];;_emilia Dodges_ “Sorry Subaru but I love Otto”;False;False;;;;1610598945;;False;{};gj72ts5;False;t3_kwisv4;False;True;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj72ts5/;1610680002;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610599023;;False;{};gj72ybk;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj72ybk/;1610680109;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Thank god Subaru didn't took her mothers advice literally.;False;False;;;;1610599049;;False;{};gj72zrg;False;t3_kwisv4;False;True;t1_gj714p3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj72zrg/;1610680141;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mochachiiino;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://twitter.com/Mochachiiino;dark;text;t2_dnn0k;False;False;[];;"Subaru: Empirically measured, 40 page essay on why he loves emilia - -Emilia: No you - -Subaru: Dammit all";False;False;;;;1610599088;;False;{};gj7322q;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7322q/;1610680186;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"I thought the same thing, especially after weeks hearing from rezero fans that this episode was the best so far - -I was fully expecting garf to show up and throw ram and otto corpse during or right before the kiss, then just kill Subaru unceremoniously making the kiss and confession be forgotten in that timeline (which i think will still happen one way or another)";False;False;;;;1610599090;;False;{};gj7326y;False;t3_kwisv4;False;True;t1_gj6vs0p;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7326y/;1610680189;2;True;False;anime;t5_2qh22;;0;[]; -[];;;howaboutdisidia;;;[];;;;text;t2_2pkiq89x;False;False;[];;As soon as Emilia started talking about her memories coming back and being a different person once that happens, it just reminds me of Kaede from another series called Bunny Girl Senpai. I shed tears on how that story went and I hope this doesn't go that route but it would make for a good twist.;False;False;;;;1610599110;;False;{};gj733cx;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj733cx/;1610680210;3;True;False;anime;t5_2qh22;;0;[]; -[];;;reddadz;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MysticEyes/;light;text;t2_oek5m;False;True;[];;"Sorry, your comment has been removed. - -- Please don't attack other users like this for a difference of opinion. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610599116;moderator;False;{};gj733p9;False;t3_kwisv4;False;True;t1_gj6qy3i;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj733p9/;1610680215;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Etheo;;;[];;;;text;t2_3ctfo;False;False;[];;*Only* a kiss? Avert thine eyes, my child! You know naught of what you seen!;False;False;;;;1610599169;;False;{};gj736tg;False;t3_kwisv4;False;False;t1_gj4py1u;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj736tg/;1610680277;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610599170;;False;{};gj736uq;False;t3_kwisv4;False;True;t1_gj71v3f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj736uq/;1610680279;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Emilia finally came to accept Subaru.;False;False;;;;1610599212;;False;{};gj739db;False;t3_kwisv4;False;True;t1_gj72bif;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj739db/;1610680326;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lotusscissors;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/lotusscissors;light;text;t2_57hyv;False;False;[];;Lmao I guess in this show it would be Roswaal;False;False;;;;1610599241;;False;{};gj73b61;False;t3_kwisv4;False;False;t1_gj4k3od;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj73b61/;1610680362;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Any-Nothing;;;[];;;;text;t2_4h46mqdo;False;False;[];;I noticed that too;False;False;;;;1610599337;;False;{};gj73grf;False;t3_kwisv4;False;True;t1_gj72bif;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj73grf/;1610680459;2;True;False;anime;t5_2qh22;;0;[]; -[];;;entelechtual;;;[];;;;text;t2_1223l2;False;False;[];;I meant the headbutt thing. Like ”snap out of it you idiot!” Akin to the Otto punch at the end of s2 part 1.;False;False;;;;1610599376;;False;{};gj73j3d;False;t3_kwisv4;False;True;t1_gj6gpc8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj73j3d/;1610680497;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ughhhhhhwhatsthis;;;[];;;;text;t2_8dwrki7g;False;False;[];;Has his comrades run around vomiting blood and getting chased by a fcking tiger so he can kiss a depressed girlfriend. Okayyyy.;False;False;;;;1610599386;;False;{};gj73jo1;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj73jo1/;1610680508;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;Imagine subaru going for the kiss and then the rabbits jump them and start eating his lips;False;False;;;;1610599550;;False;{};gj73t1a;False;t3_kwisv4;False;True;t1_gj7326y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj73t1a/;1610680675;0;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;And it's a banger!;False;False;;;;1610599565;;False;{};gj73tx4;False;t3_kwisv4;False;True;t1_gj4o3pq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj73tx4/;1610680691;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sedewt;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Sedew;light;text;t2_3kzvlpfo;False;False;[];; Long shot for 10 episodes? That’s a tough long shot;False;False;;;;1610599583;;False;{};gj73uxc;False;t3_kwisv4;False;True;t1_gj4u3vq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj73uxc/;1610680707;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ashutosh29;;;[];;;;text;t2_5w0dob4v;False;False;[];;"He wasn't exactly obssesively saying I love you here, it was more of single line of reassuring her and using it again and again instead of a whole lot of of words from what I was able to see, as it was the main focus cause she couldn't trust his words and explanations. - -It is not that Emilia doesn't get love but she doesn't get why someone would love her, especially the way Subaru does. Emilia has really low self esteem which was higlighted by the ""why aren't you angry"" and ""it is because you never expected anything in the first place part"". She believes that everyone thinks of her as a child, who will throw a fit if you won't let her do something, mess around and try to do it but will then get bored and sit in the corner for others do it and it doesn't matter as the rest never expected her to be able to do it at all, some part of it is kinda true rn and she hates it. - -She wants someone to believe in her and well the most suitable person is Subaru rn but he never gets angry, never points out her faults and just keeps supporting her, so she simply doesn't get him. In their arguement then Subaru lashes out and starts saying all her faluts and how it's hard on him which pisses her off more as if the dude does realize all of it then why the fuck is he still by her side, as she said ""I never asked you to do any of this"". Subaru tells her why, he has been telling her that all the time and says it again and again more for her to realise the reason. - ->tormenting her with words that make her feel guilty and self-coscious - -Personally nope, those words sure sting but the one's they are accompained by are much more reassuring. As someone who can be kinda said to have similar thoughts sometimes someone just denying them and ignoring them would feel obnoxious to me and same was for Emilia until Subaru said all that. - -She doesn't get why someone would believe in her after knowing all of this and Subaru gives the simple answer of ""I love you"", cause well it is just that, I find no other reason for someone to go through all that for someone else and put up with their crap, he believes in her, casue he loves her not he loves her cause he believes in her. - -He believes in her, because he loves her and tells the stuff that makes him love her. In the end it is followed by a kiss to confirm that fact and that is how their arguement ends. - -Personally I find it hard to think of it as many comments are saying toxic and obsessive, he was confirming and saying what he feels again and again cause well, Emilia was doubting those feelings, she knows her problems and all that, she doesn't need someone to tell her about all that in the moment, many have told her stuff in the moment and have forgotten about it. She wants a confirmation and reassurance that despite what is happening rn there is someone who would be by her side without doubt with valid reasons for her to believe that, which was the focus and Subaru confirmed it throughout the arguement. - -I do want to listen why people think Subaru was selfish if someone can though.";False;False;;;;1610599597;;False;{};gj73vq1;False;t3_kwisv4;False;True;t1_gj68ssa;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj73vq1/;1610680722;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mochachiiino;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://twitter.com/Mochachiiino;dark;text;t2_dnn0k;False;False;[];;"Piccolo, multiverses away from rezero, Wakes up in cold sweat and suddenly screaming: - -&#x200B; - -WHY DIDNT YOU DODGE!?!?!?!?";False;False;;;;1610599623;;False;{};gj73x7h;False;t3_kwisv4;False;True;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj73x7h/;1610680748;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JaqentheFacelessOne;;;[];;;;text;t2_il420;False;False;[];;I was legit annoyed when Subaru showed up, the Otto-Ram-Garf show was the absolute bomb.;False;False;;;;1610599697;;False;{};gj741hk;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj741hk/;1610680824;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Any-Nothing;;;[];;;;text;t2_4h46mqdo;False;False;[];;He had already told he had that power in season 1 ep 25. But I guess 4 years between two season is just so long that most people forgot that detail;False;False;;;;1610599773;;False;{};gj745v1;False;t3_kwisv4;False;True;t1_gj6z6tw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj745v1/;1610680898;3;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"Yet another person that completely missed the entire point....sigh - -Emilia has 3 issues to deal with when it came down to their relationship atm. - - -First, Doubting Subaru's love part 1, because of him not being harsh on her, she claims how he never gets angry towards her even she fucks up, to which Subaru replies he doesn't because he loves her, he does HOWEVER gets disappointed, He admits she's not some angel and she does have flaws. - -Claiming how she would take on trails, yet failing and not allowing Subaru to take them on in her place, being selfish regarding that matter etc. - -Second, Breaking the promise, Which Subaru can't currently answer, Especially not that moment, where his friends are risking their lives to fight against Garfiel. - -You say it's not healthy to lie, but that's not his fault now is it? You're looking at this situation from a lens of two normal individuals having a heated conversation, ignoring the context involved in the situation. - -Subaru has no issue of being honest with emilia regarding breaking the promise, but he can't start telling her the ENTIRE story right there in the sanctuary. - -Third, Doubting Subaru's love part 3, She claims if he broke the promise how can he still claim to love her, when he lies in the most important moments (Promises mean a lot to Spirit Arts users btw) - -To which Subaru replies with ""i love you"", it's him being honest with her, because regardless of the reason behind breaking the promise, his feelings never changed obv, He loves her and believes in her. - -Emilia doubts that claim and he responds back with Subaru claiming he wouldn't have suffered so much for a pain in the ass girl like herself if he didn't love her. - - -Third, Doubting Subaru's love part 2, When Emilia questioned if Subaru's love for her would still be there, if her memories coming back changes her as a person, Subaru recalls back the homework his mother laid out for him. - -""What's important is not where you start, or what happens midway but how it ends"" - -Subaru finally realizes what that means and applies it in this particular situation, The side he's seen of Emilia, he's confident that her memories coming back would not change her as a person, Because he loves her, Because he believes in her. -Who she is now DOES MATTER. - -Fourth, Still not convinced of his love, Subaru tries to prove her by his actions, By kissing her, and before he does, he tells her that she can oppose if she doesn't want to, Thereby having a consenting intimate moment.";False;False;;;;1610599822;;False;{};gj748p6;False;t3_kwisv4;False;True;t1_gj71b97;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj748p6/;1610680950;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Flymsi;;;[];;;;text;t2_nm33k;False;False;[];;But why him?;False;False;;;;1610599831;;False;{};gj74970;False;t3_kwisv4;False;True;t1_gj6cs4j;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj74970/;1610680958;3;True;False;anime;t5_2qh22;;0;[]; -[];;;csbsju_guyyy;;;[];;;;text;t2_aiy98;False;False;[];;Wholesome chungus keeanu 100 barusu;False;False;;;;1610599846;;False;{};gj74a4a;False;t3_kwisv4;False;False;t1_gj5ja8x;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj74a4a/;1610680974;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Any-Nothing;;;[];;;;text;t2_4h46mqdo;False;False;[];;Or see their first kid...;False;False;;;;1610599880;;False;{};gj74c2l;False;t3_kwisv4;False;True;t1_gj70lxu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj74c2l/;1610681007;1;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;Nah Garfiel did not touch her, it was that she had to push herself too much to hurt giant Garfiel, the blood came straight from when it was supossed to be her horn.;False;False;;;;1610599882;;False;{};gj74c7m;False;t3_kwisv4;False;False;t1_gj4qjcj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj74c7m/;1610681010;4;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"You can force your way inside like we where told Roswaal did and Patrache did last episode of first cour to save Subaru, and also Ryuzu Shima with Garfiel last episode. The first time it just caught Subaru off guard, this time he has mentally prepared, but it still made him sick. - -In Subaru's words to Emilia: ***""Even now, I feel like I night puke, but I'm stil standing in front of you!""***";False;False;;;;1610599899;;1610600861.0;{};gj74d50;False;t3_kwisv4;False;True;t1_gj72bif;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj74d50/;1610681025;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"Hope this helps - -___ -You can force your way inside like we where told Roswaal did and Patrache did last episode of first cour to save Subaru, and also Ryuzu Shima with Garfiel last episode. The first time it just caught Subaru off guard, this time he has mentally prepared, but it still made him sick. - -In Subaru's words to Emilia: ***""Even now, I feel like I night puke, but I'm stil standing in front of you!""***";False;False;;;;1610599953;;1610600872.0;{};gj74g8b;False;t3_kwisv4;False;True;t1_gj73grf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj74g8b/;1610681079;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BoxOfPotates;;;[];;;;text;t2_8xchku3r;False;False;[];;how can an anime be so good like this one ?;False;False;;;;1610599956;;False;{};gj74gdm;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj74gdm/;1610681082;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;SendMeFatErgos;;;[];;;;text;t2_q6z8gv7;False;False;[];;The POV scene of emilia crying was such a good shot - I've never seen anything like it;False;False;;;;1610599996;;False;{};gj74ild;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj74ild/;1610681122;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Or the plot of Cyberpunk 2077;False;False;;;;1610600001;;False;{};gj74ix0;False;t3_kwisv4;False;True;t1_gj733cx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj74ix0/;1610681127;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Any-Nothing;;;[];;;;text;t2_4h46mqdo;False;False;[];;Good to know. Also, good bot;False;False;;;;1610600010;;False;{};gj74jf6;False;t3_kwisv4;False;True;t1_gj6u9hz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj74jf6/;1610681136;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sedewt;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Sedew;light;text;t2_3kzvlpfo;False;False;[];;I’m gonna say this again: the acting was top tier;False;False;;;;1610600029;;False;{};gj74kfp;False;t3_kwisv4;False;True;t1_gj4jfdp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj74kfp/;1610681153;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;"I strongly agree. - -Now Tonkawa starts out with getting married first episode along with being a very comfortable watch. Warning lots of hand holding and kissing. -But that a major exception.";False;False;;;;1610600041;;False;{};gj74l3v;False;t3_kwisv4;False;True;t1_gj4epn8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj74l3v/;1610681165;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;If Subaru can't convince Emilia to trust him they might lost all and Roswaal wins the bet.;False;False;;;;1610600063;;False;{};gj74md1;False;t3_kwisv4;False;False;t1_gj73jo1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj74md1/;1610681187;7;True;False;anime;t5_2qh22;;0;[]; -[];;;csbsju_guyyy;;;[];;;;text;t2_aiy98;False;False;[];;Not only does it mean penis, it means an entire way of being. Otto is the Thundercock and Thundercocks his way through life;False;False;;;;1610600095;;False;{};gj74o76;False;t3_kwisv4;False;False;t1_gj515f0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj74o76/;1610681218;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NegativeEnvironment5;;;[];;;;text;t2_7t8l1qgc;False;False;[];;The episode was great and all..but can someone explain to me what is going?? why are they distracting Gar??? what was he gonna do? He didn't even know where Emilia was or anything. Someone explain please, I'm lost :(;False;False;;;;1610600155;;False;{};gj74rju;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj74rju/;1610681273;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Any-Nothing;;;[];;;;text;t2_4h46mqdo;False;False;[];;No Game No Life is crying in the corner now but heck yeah;False;False;;;;1610600177;;False;{};gj74sqm;False;t3_kwisv4;False;False;t1_gj64g4i;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj74sqm/;1610681292;6;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;That's like watching One Piece and don't expect Luffy, or Demon Slayer and don't expect Tanjiro....;False;False;;;;1610600182;;False;{};gj74t1p;False;t3_kwisv4;False;False;t1_gj741hk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj74t1p/;1610681298;4;True;False;anime;t5_2qh22;;0;[]; -[];;;tanmaywho;;;[];;;;text;t2_3w4n4mug;False;False;[];;I Lovelovelovelovelove DESU! it;False;False;;;;1610600231;;False;{};gj74vso;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj74vso/;1610681345;2;True;False;anime;t5_2qh22;;0;[]; -[];;;csbsju_guyyy;;;[];;;;text;t2_aiy98;False;False;[];;"The greyed out letters in both cuts were O and Be - -O-BE....OBEY - -*what does it meeeeeean?!?*";False;False;;;;1610600252;;False;{};gj74wyu;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj74wyu/;1610681366;0;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;🙏 another soul that isn't mad about the episode comments 🙏;False;False;;;;1610600304;;False;{};gj74zte;False;t3_kwisv4;False;True;t1_gj74gdm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj74zte/;1610681414;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SoMuchHatred;;;[];;;;text;t2_o15bh;False;False;[];;Emilia's the most important player now - she's the only one who can take the Trials and free Sanctuary, which is a perquisite to solving almost all the problems surrounding Subaru this season. So trying to help her work through her feelings so she can start passing trials is basically the most important thing he can do.;False;False;;;;1610600322;;False;{};gj750tz;False;t3_kwisv4;False;False;t1_gj73jo1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj750tz/;1610681432;6;True;False;anime;t5_2qh22;;0;[]; -[];;;csbsju_guyyy;;;[];;;;text;t2_aiy98;False;False;[];;">mentally ~~broken~~ improved";False;False;;;;1610600352;;False;{};gj752hq;False;t3_kwisv4;False;False;t1_gj6g3v6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj752hq/;1610681461;13;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Anime RomComs do stuff like that.;False;False;;;;1610600364;;False;{};gj75377;False;t3_kwisv4;False;True;t1_gj74ild;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj75377/;1610681474;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Any-Nothing;;;[];;;;text;t2_4h46mqdo;False;False;[];;*You can't be spoiled if you are a novel reader XD;False;False;;;;1610600375;;False;{};gj753u9;False;t3_kwisv4;False;True;t1_gj64ejv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj753u9/;1610681485;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BenHasaki;;;[];;;;text;t2_11he1x;False;False;[];;"I fan-boyed so hard at that kiss that my mother thought I stubbed my toe ;) - -&#x200B; - -&#x200B; - -AHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH - -&#x200B; - -Also, no opening or ending again? Damn White Fox really pushing to give us the story!";False;False;;;;1610600400;;False;{};gj7559o;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7559o/;1610681510;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JaqentheFacelessOne;;;[];;;;text;t2_il420;False;False;[];;I mean I don’t remember not seeing Subaru for that long in a single episode.;False;False;;;;1610600471;;False;{};gj759a8;False;t3_kwisv4;False;True;t1_gj74t1p;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj759a8/;1610681577;3;True;False;anime;t5_2qh22;;0;[]; -[];;;the-lifeless-dood;;;[];;;;text;t2_5m5zvdoy;False;False;[];;Cursed shit;False;False;;;;1610600560;;False;{};gj75e2e;False;t3_kwisv4;False;True;t1_gj4kwp3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj75e2e/;1610681658;1;True;False;anime;t5_2qh22;;0;[]; -[];;;the-lifeless-dood;;;[];;;;text;t2_5m5zvdoy;False;False;[];;Cursed shit;False;False;;;;1610600564;;False;{};gj75eb9;False;t3_kwisv4;False;True;t1_gj4kwp3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj75eb9/;1610681662;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> why are they distracting Gar - -The problem with Garfiel is the location of the meeting between Subaru and Emilia. - -Garfiel last cour made it pretty clear that wouldn't let Subaru inside the crypt in case Subaru has ties with the Witches Cult, because of the Witch of Envy miasma that permeates Subaru. - -> He didn't even know where Emilia - -Garfiel has access to the Ryuzu clones also called *The Eyes of Sanctuary* by Ryuzu Shima, they keep tabs on everyone.";False;False;;;;1610600580;;False;{};gj75f5h;False;t3_kwisv4;False;False;t1_gj74rju;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj75f5h/;1610681677;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Any-Nothing;;;[];;;;text;t2_4h46mqdo;False;False;[];;It's in a QNA with the author. This is added detail but not quite original content;False;False;;;;1610600585;;False;{};gj75fgj;False;t3_kwisv4;False;True;t1_gj5ydrt;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj75fgj/;1610681682;1;True;False;anime;t5_2qh22;;0;[]; -[];;;def_not_a_weeb;;;[];;;;text;t2_42xpucur;False;False;[];;He literally could've said anything else but no. Dodge. He could've said do a barrel roll.;False;False;;;;1610600586;;False;{};gj75fj6;False;t3_kwisv4;False;True;t1_gj4q7jo;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj75fj6/;1610681683;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Oh no, he's onto us!;False;False;;;;1610600649;;False;{};gj75izw;False;t3_kwisv4;False;False;t1_gj74wyu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj75izw/;1610681745;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> no opening or ending again? - -Still some good news, you can still stub a toe. /jk";False;False;;;;1610600724;;False;{};gj75n5g;False;t3_kwisv4;False;True;t1_gj7559o;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj75n5g/;1610681817;3;True;False;anime;t5_2qh22;;0;[]; -[];;;csbsju_guyyy;;;[];;;;text;t2_aiy98;False;False;[];;Dammit, I put my stonks in Rem. Gonna double down on my position.;False;False;;;;1610600778;;False;{};gj75q0o;False;t3_kwisv4;False;False;t1_gj5gbz5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj75q0o/;1610681867;5;True;False;anime;t5_2qh22;;0;[]; -[];;;EZPZ24;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/EZPZ2424;light;text;t2_10q6o1;False;False;[];;I don't think Subaru would put him in a position where he could actually be killed, neither did he look shaken when he saw Garfiel at the end of the episode, and to top it all off Garfiel doesn't seem like the type to actually kill him in the first place.;False;False;;;;1610600783;;False;{};gj75q8j;False;t3_kwisv4;False;False;t1_gj5cj53;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj75q8j/;1610681870;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Any-Nothing;;;[];;;;text;t2_4h46mqdo;False;False;[];;You disgusted me. Go on, please;False;False;;;;1610600823;;False;{};gj75se4;False;t3_kwisv4;False;False;t1_gj6e7kf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj75se4/;1610681908;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Seven-Tense;;;[];;;;text;t2_ogeb5;False;False;[];;Truly, watching little Otto hold up his written message with his sad, earnest face was what nearly broke me the first time this episode :(;False;False;;;;1610600832;;False;{};gj75syh;False;t3_kwisv4;False;True;t1_gj4d6is;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj75syh/;1610681917;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610600851;;False;{};gj75u0w;False;t3_kwisv4;False;True;t1_gj75se4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj75u0w/;1610681935;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PsychoWorld;;MAL;[];;http://myanimelist.net/animelist/GodlyKyon;dark;text;t2_dqj5q;False;False;[];;"Wow. That argument actually feels like what a new couple would argue about. Props Tappei. Props. Emilia went from nearly a mary sue object of love to my favorite girl in the series right now. She actually feels like a real person now! - -He's finally dropping the -tan thing and treating her like a person. Good job. Good job! - -Still not sold on Rem though. Weird that she likes him so much.";False;False;;;;1610600858;;False;{};gj75uf6;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj75uf6/;1610681942;6;True;False;anime;t5_2qh22;;0;[]; -[];;;csbsju_guyyy;;;[];;;;text;t2_aiy98;False;False;[];;*YOU'RE WITH HIM! YOU BROUGHT HIM HERE TO KILL ME!* - Rem fans to Emilia fans RN;False;False;;;;1610600903;;False;{};gj75ww3;False;t3_kwisv4;False;False;t1_gj5n059;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj75ww3/;1610681984;14;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;">Still not sold on Rem though. Weird that she likes him so much. - -I can see why, Subaru showed Rem that she didn't need to carry her sins alone.";False;False;;;;1610600961;;False;{};gj7604r;False;t3_kwisv4;False;False;t1_gj75uf6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7604r/;1610682040;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;Oh, okay.;False;False;;;;1610600982;;False;{};gj7618f;False;t3_kwisv4;False;True;t1_gj73j3d;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7618f/;1610682059;1;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;Woah almost 10k and it still has more than 24 hours, I think this will go up to 13 or 14k.;False;False;;;;1610601017;;False;{};gj76394;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj76394/;1610682093;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Redditer51;;;[];;;;text;t2_gk7ihro;False;False;[];;????;False;False;;;;1610601057;;False;{};gj765ij;False;t3_kwisv4;False;True;t1_gj6zzuf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj765ij/;1610682131;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;"Other than very powerful break up bias coming from genetic instinct. -Actually even that can be worked though but it is very difficult but can be done. Normally in a long relationship your going to hate each other occasionally thanks to that instinct. But as you say even the cold times can be restricted to talking things out but I would recommend counseling and wise friends and family to weed out the fake problems from heavy bias from actual issues. - -There are almost certainly some genetic exceptions and a couple will not have to deal with the break up instinct but I would never plan on that being true for myself. -Humans are not a monogamist species so monogamy is hard work.";False;False;;;;1610601111;;False;{};gj768fl;False;t3_kwisv4;False;True;t1_gj66te6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj768fl/;1610682184;1;True;False;anime;t5_2qh22;;0;[]; -[];;;buya492;;;[];;;;text;t2_14x5h5;False;False;[];;please no. don't make me picture a kono Roswaal da;False;False;;;;1610601138;;False;{};gj769y3;False;t3_kwisv4;False;False;t1_gj73b61;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj769y3/;1610682210;8;True;False;anime;t5_2qh22;;0;[]; -[];;;kuronohachi;;;[];;;;text;t2_50iphujy;False;False;[];;What kind of drug did you eat earlier?;False;True;;comment score below threshold;;1610601145;;False;{};gj76adp;False;t3_kwisv4;False;False;t1_gj6ts2u;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj76adp/;1610682219;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610601150;;False;{};gj76amg;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj76amg/;1610682223;0;True;False;anime;t5_2qh22;;0;[]; -[];;;CheeseBugga36;;;[];;;;text;t2_2j6on0h5;False;False;[];;Rem fans on suicide watch rn;False;False;;;;1610601156;;False;{};gj76azg;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj76azg/;1610682230;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LilQuasar;;;[];;;;text;t2_tzbr5mp;False;True;[];;i completely agree with you but i think its also important to keep in mind this was a kiss and not sex;False;False;;;;1610601269;;False;{};gj76h70;False;t3_kwisv4;False;True;t1_gj672tg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj76h70/;1610682341;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Corregidor;;;[];;;;text;t2_gcupp;False;False;[];;When otto was doing his background story I was saying he is literally kraft lawrence lmao;False;False;;;;1610601347;;False;{};gj76lhg;False;t3_kwisv4;False;True;t1_gj4ehq8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj76lhg/;1610682414;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LilQuasar;;;[];;;;text;t2_tzbr5mp;False;True;[];;it doesnt imply it. it just shows its a possibility;False;False;;;;1610601393;;False;{};gj76nx1;False;t3_kwisv4;False;True;t1_gj56ypy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj76nx1/;1610682460;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LilQuasar;;;[];;;;text;t2_tzbr5mp;False;True;[];;i was also thinking everyone was talking about Echidna at the start xd;False;False;;;;1610601446;;False;{};gj76qou;False;t3_kwisv4;False;True;t1_gj5gy7y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj76qou/;1610682513;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LilQuasar;;;[];;;;text;t2_tzbr5mp;False;True;[];;it makes sense if Emilia is Satella which seems extremely likely;False;False;;;;1610601508;;False;{};gj76u0k;False;t3_kwisv4;False;True;t1_gj4nxh4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj76u0k/;1610682583;3;True;False;anime;t5_2qh22;;0;[]; -[];;;csbsju_guyyy;;;[];;;;text;t2_aiy98;False;False;[];;">How isn't there a Rem edit of that meme yet by the way? They both have blue hair as well! - - -BE THE CHANGE YOU WANT TO SEE!";False;False;;;;1610601571;;False;{};gj76xcu;False;t3_kwisv4;False;False;t1_gj4jgyi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj76xcu/;1610682647;6;True;False;anime;t5_2qh22;;0;[]; -[];;;csbsju_guyyy;;;[];;;;text;t2_aiy98;False;False;[];;"> I Love you !"" - ""Liar!"" - -YOU TURNED HER AGAINST ME!";False;False;;;;1610601590;;False;{};gj76ydk;False;t3_kwisv4;False;False;t1_gj4heoy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj76ydk/;1610682667;4;True;False;anime;t5_2qh22;;0;[]; -[];;;csbsju_guyyy;;;[];;;;text;t2_aiy98;False;False;[];;Chadbaru and Otto Thundercock - an unbeatable team;False;False;;;;1610601679;;False;{};gj7736w;False;t3_kwisv4;False;True;t1_gj4j159;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7736w/;1610682787;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jubjubwarrior;;;[];;;;text;t2_5ss71;False;False;[];;agree, im one of the people who watches re zero for the plot and fantasy elements so the romance has always been giga cringe for me i legit skip it;False;False;;;;1610601682;;False;{};gj773cw;False;t3_kwisv4;False;False;t1_gj5gg5h;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj773cw/;1610682789;6;True;False;anime;t5_2qh22;;0;[]; -[];;;csbsju_guyyy;;;[];;;;text;t2_aiy98;False;False;[];;"Otto - ""IF SHE BREATHES SHE'S A THOOOOOOOOOOT""";False;False;;;;1610601700;;False;{};gj7749c;False;t3_kwisv4;False;True;t1_gj4weg3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7749c/;1610682808;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;I mean the parking lot sounds a lot more fun, may not be powerful and uplifting but is going to be fun.;False;False;;;;1610601721;;False;{};gj775ep;False;t3_kwisv4;False;True;t1_gj765ij;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj775ep/;1610682832;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LuC1el;;;[];;;;text;t2_esu7f7t;False;False;[];;rem and echidna shippers punching air right now.;False;False;;;;1610601767;;False;{};gj777uy;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj777uy/;1610682877;0;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Na, half the fandom is 🔥burning🔥, people angry.;False;False;;;;1610601821;;False;{};gj77aqp;False;t3_kwisv4;False;False;t1_gj76394;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj77aqp/;1610682927;7;True;False;anime;t5_2qh22;;0;[]; -[];;;destruct0tr0n;;;[];;;;text;t2_1lf8vkec;False;False;[];;Thats gonna be fun to quote out of context;False;False;;;;1610601841;;False;{};gj77btu;False;t3_kwisv4;False;False;t1_gj4dg6g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj77btu/;1610682946;5;True;False;anime;t5_2qh22;;0;[]; -[];;;LilQuasar;;;[];;;;text;t2_tzbr5mp;False;True;[];;im scared of if Ram or Otto were killed by Garfiel :/;False;False;;;;1610601847;;False;{};gj77c4i;False;t3_kwisv4;False;False;t1_gj5wjer;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj77c4i/;1610682950;6;True;False;anime;t5_2qh22;;0;[]; -[];;;LilQuasar;;;[];;;;text;t2_tzbr5mp;False;True;[];;its not our fault that Subaru is wrong;False;False;;;;1610601942;;False;{};gj77hc2;False;t3_kwisv4;False;True;t1_gj4djlk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj77hc2/;1610683040;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;thedicestoppedrollin;;;[];;;;text;t2_3uzc4kbl;False;False;[];;It's a closed loop thing. We are watching the story of how they fall in love. Then something happens, and she can't be with him anymore. So she pulls him into this world, but for whatever reason he was pulled into the past. And instead of loving her (Satella), he loves her younger version (Emilia), which is even worse than not having him at all. Leading her to envy her own past;False;False;;;;1610602005;;False;{};gj77kpt;False;t3_kwisv4;False;False;t1_gj74970;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj77kpt/;1610683104;6;True;False;anime;t5_2qh22;;0;[]; -[];;;LilQuasar;;;[];;;;text;t2_tzbr5mp;False;True;[];;people usually dont fall in love because of reasons;False;False;;;;1610602024;;False;{};gj77lp4;False;t3_kwisv4;False;True;t1_gj4gco8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj77lp4/;1610683122;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610602030;;False;{};gj77m2p;False;t3_kwisv4;False;False;t1_gj777uy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj77m2p/;1610683129;0;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;Is it because of Ram’s diehard fans? I’m pretty sure even in S1 Subaru has stated he loves emilia unless i remembered it wrong;False;False;;;;1610602051;;False;{};gj77n57;False;t3_kwisv4;False;True;t1_gj77aqp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj77n57/;1610683147;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;You, I like you;False;False;;;;1610602093;;False;{};gj77pg6;False;t3_kwisv4;False;True;t1_gj6se7x;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj77pg6/;1610683188;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Corregidor;;;[];;;;text;t2_gcupp;False;False;[];;Question, did Rams voice sound different this episode or is it just me?;False;False;;;;1610602114;;False;{};gj77qku;False;t3_kwisv4;False;True;t1_gj4flhp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj77qku/;1610683209;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;Don't worry about that, Otto is Subaru's best friend;False;False;;;;1610602131;;False;{};gj77rgw;False;t3_kwisv4;False;True;t1_gj6td7i;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj77rgw/;1610683225;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Experiment_One;;;[];;;;text;t2_treej;False;False;[];;"I'm honestly done watching this weekly and will probably binge it when it's done. This arc is painfully slow and uninteresting. Also, after the 355th time of the show trying to pass off increasingly louder 10 minute conversations between two characters as ""good, dramatic acting"", it just gets boring. Add to it the most unconvincing, shallow romance Ive ever seen and this show went from a 10 to a solid 6 in one season. What a letdown";False;False;;;;1610602164;;False;{};gj77t93;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj77t93/;1610683256;4;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> Is it because of ~~Ram’s~~ Rem's diehard fans? - -Kinda, some of them not all, but I've been in all threads for this season and this one.. oh boy.";False;False;;;;1610602174;;False;{};gj77tsf;False;t3_kwisv4;False;True;t1_gj77n57;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj77tsf/;1610683265;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;He's such a precious boy :(;False;False;;;;1610602219;;False;{};gj77w40;False;t3_kwisv4;False;True;t1_gj75syh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj77w40/;1610683310;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Adymir;;;[];;;;text;t2_18v7w43g;False;False;[];;"I agree with AEIOU here. Let's focus on Subaru here and his unhealthy obsession and you can quickly see that rather than learning from what was shown to him in the previous scenes and timelines, he doubles down on placing Emilia on a pedestal, the only good change is that he acknowledges she's not perfect but still places her on that same pedestal. - -He places love first before the indicators of love. He doesn't love her because he believes in her, but he believes in her because he loves her. He loves her first before he trusts her, and how unhealthy is that obsession? He's using love to validate all the other things, when you should be doing the reverse. You don't go out in the world, find a pretty girl who makes your heart skip a beat, call it love and then use that feeling as a reason to trust and believe her right? You go out, find someone you are attracted to, get to know them, build a steady relationship first before you call it love. - -Obsession in any from is negative still, even if it induces a positive effect on another person. Ultimately you are hurting yourself. I thought that was the message that the author wanted to portray, especially with how realistic Subaru and Emilia's fight was in Season 1 and all the things the witches preached to Subaru. No matter how heartwarming this episode was, the same obsessive notion is till there, even more aggressive this time, and it worked? It's basically preaching the same thing Rom Coms are doing, that any guy who latches on to the girl will get her in the end as long as you insist and persist. - -I'm still gonna watch it though, I hope they both grow and develop. I hope Subaru gets over his unhealthy obsession and I hope Emilia becomes stronger emotionally and mentally.";False;False;;;;1610602234;;False;{};gj77wx6;False;t3_kwisv4;False;False;t1_gj6yg9i;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj77wx6/;1610683325;7;True;False;anime;t5_2qh22;;0;[]; -[];;;next_door_nicotine;;;[];;;;text;t2_xyq5i;False;False;[];;"Me, the crazed threesome fan, *""this will pay off! You'll all see!""*";False;False;;;;1610602312;;False;{};gj780z9;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj780z9/;1610683396;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PsychoWorld;;MAL;[];;http://myanimelist.net/animelist/GodlyKyon;dark;text;t2_dqj5q;False;False;[];;He can summon the fucking pestilence. He's a bilical character.;False;False;;;;1610602371;;False;{};gj783zn;False;t3_kwisv4;False;False;t1_gj4ehq8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj783zn/;1610683455;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ashutosh29;;;[];;;;text;t2_5w0dob4v;False;False;[];;">First of all, she is clearly in distress and you go in for a kiss? Thats how you prove your love? Rems confession worked BECAUSE she rejected him outright. She didn't want anything from him. But Subaru proves he ""loves"" her by doing something total strangers at any party do all the time. And then he says she can dodge it lmao. Did he really think she would dodge it and risk him leaving her. - -She isn't in distress because of the things happening to her, at least that is not the main reason, she is in distress cause she can't simply imagine someone being there for her after all that happens, which she clearly says. This is re zero and she is a candidate for becoming the future queen, not your average American high schooler, for her a kiss is a big deal and not something you do with every other person you find hot, same is the case with Subaru. And she already believed he won't be by her side, the whole shit fest before that was telling her why he wouldn't leave her and the kiss was confirmation of his love and yes for many it is a big deal like them which idk why you can't understand. - - -> -Second, everyone praises Subaru for criticising Emilia. But he only did so because she ASKED him to do so. Never in a million years would he complain about her himself. He might aswell have pulled all the reasons out of his ass just so she would be happy. But he's a chad for daring to to give her what she wants only when she asked him. - -Why would he shit on her usually when she is going through shit? I never did that. She believed that he simply doesn't realize all that stuff, which btw was the case in season one when they had another arguement but now that isn't the case and he says it out loud. After watching season 2 cour one, how can you really ask him to say all the shit he said, he clearly sees she wants to try, he clearly sees she is suffering when doing so but he also knows that she wants to do it, I simply don't get how you can shit on the person you love in those circumstances, he is patient with her and is kind to her cause he loves her DESPITE all the stuff she deals with. - ->Thirdly, the line where he says ""At least you could look as cute as I though you would"" is probably the worst thing anyone can say to someone. - -Idk about the worst part but this was supposed to affect you the way it did, you throw shit on each other in an arguement, sometimes stuff you don't mean and we are talking about a teenage ex shut in who didn't even know how to talk to people, when he has literally been dying for the girl he loves and she doesn't even understand why he is doing all that even tho he says it all the time, it was supposed to sting and that was the only reason he said it and many do that when arguing but he has the reasons to be like that. - ->He might as well have tried brainwashing her with how much he said that he loved her. To me it sounds like a borderline abusive relationship. - -This......sigh. I really don't get what's up with the people who are saying all this and what was the deal with their past relationships or they just simply misinterpreted the whole scene from the start. The ""I love you"" wasn't meant just as I love you it was a simple line to say a lot of stuff and reassure her that he will be there which suits a dude like him, the focus wasn't on ""I"" but ""love you"" despite whatever will happen in the future that Emilia is actually worried about if that makes sense. - -This was all so that Emila can believe in Subaru as she can finally understand his feelings. - -This was NOT them becoming a couple. - -She belived no one belives in her, not able to understand Subaru and why he would do what he does. In the end after this whole arguement she understands his ""I love you"" after the dude has been saying that shit for 2 seasons already and realizes that he believes in her as he loves her. - -I REPEAT AGAIN, THEY ARE NOT A COUPLE. - -SHE HAS JUST UNDERSTOOD HIM FINALLY AND THAT WAS THE POINT. - -NO ONE HAS BEEN FORCED INTO A RELATIONSHIP CAUSE THERE ISN'T A RELATIONSHIP YET. - -THIS WAS A CONFESSION AND HER FINALLY UNDERSTANDING THE MEANING BEHIND THOSE WORDS, NOT THEM BECOMING A COUPLE. - -By how strong your wording of all this was I have overdone the energy coming from my reply for sure I think and tbh I don't think your views changed at all but I hope you can at least mull over what was actually shown according to me.";False;False;;;;1610602453;;1610602856.0;{};gj7889s;False;t3_kwisv4;False;True;t1_gj5u02h;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7889s/;1610683532;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TheBeankun;;;[];;;;text;t2_6hvwgrg;False;False;[];;I'm gonna need some sauce as my pasta is dry;False;False;;;;1610602568;;False;{};gj78eab;False;t3_kwisv4;False;True;t1_gj4hdwp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj78eab/;1610683636;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Experiment_One;;;[];;;;text;t2_treej;False;False;[];;Comments like this convince me that hardcore Re:Zero fans do not watch other anime. Re:Zero has a lot of strengths but the romance aspect of it absolutely is NOT one of them. There are a lot of great romance animes out there. If the shallow romance on this series surpases 90% of what you watch I suggest looking into other series.;False;False;;;;1610602575;;False;{};gj78eml;False;t3_kwisv4;False;False;t1_gj4smcz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj78eml/;1610683641;8;True;False;anime;t5_2qh22;;0;[]; -[];;;MajorSery;;MAL;[];;http://myanimelist.net/profile/MajorSery;dark;text;t2_dzai0;False;False;[];;In all fairness to Subaru, she was also just kind of a homeless person picked up in a forest. Though I guess she does at least have a magic rock that tells people she's qualified enough to be queen.;False;False;;;;1610602575;;False;{};gj78en5;False;t3_kwisv4;False;False;t1_gj6m6nw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj78en5/;1610683641;24;True;False;anime;t5_2qh22;;0;[]; -[];;;ArkhielR;;;[];;;;text;t2_4y0bvn83;False;False;[];;[Mayo is Great!!!](https://imgur.com/gallery/X1ekzWp);False;False;;;;1610602582;;False;{};gj78f1y;False;t3_kwisv4;False;False;t1_gj4jtgn;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj78f1y/;1610683649;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Just-a_anime-watcher;;;[];;;;text;t2_7ej3tvar;False;False;[];;Okay so I just saw the episode ,AND THAT WAS WITHOUT A DOUBT THE BEST EPISODE I EVER WATCHED(for anything not just anime) Subarus confession was the best I ever saw because some moments you could see Emilia through this eyes(indicating that the only thing he could see was her/ he only got eyes for her) but Emilia was in such a bad moment that she didn’t care about that and was only worried about Subaru breaking his promise with her but that final moment when you can see Subaru through her eyes after the kiss that is just genius. BEST EPISODE EVER, BEST CONFESSION EVER AND BETTER COUPLE EVER.;False;False;;;;1610602620;;False;{};gj78gzt;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj78gzt/;1610683684;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChornoyeSontse;;;[];;;;text;t2_8vjfuk9d;False;False;[];;">the checkpoint will probably move up to a more graceful point - -Well, I meant it likely won't reset back to the same place again. I highly doubt he'll also deal with Elsa and Maylee AND the Ōsagi in this complete run, but too much has happened for it to be another totally recycled run either. Though I got the feeling he had to deal with all of them in this loop, judging by what he said to Roswaal (literally said ""I'll save the mansion AND the Sanctuary in this loop."") So, I dunno. Guess we gotta wait and see. I assume he's gonna go to the mansion and do the thing with Beatrice and that will somehow save everyone.";False;False;;;;1610602627;;False;{};gj78hdf;False;t3_kwisv4;False;True;t1_gj70b2h;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj78hdf/;1610683689;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Very difficult as some fans are really angry with how the last 10 minutes went but I think so it can reach to 12.5K.;False;False;;;;1610602659;;False;{};gj78izj;False;t3_kwisv4;False;False;t1_gj76394;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj78izj/;1610683717;10;True;False;anime;t5_2qh22;;0;[]; -[];;;PsychoWorld;;MAL;[];;http://myanimelist.net/animelist/GodlyKyon;dark;text;t2_dqj5q;False;False;[];;"Honestly I felt like it was a one sided objectified relationship and Emilia was just really nice to tolerate him - -Didn't like Emilia, didn't like him. - -But now I love it.";False;False;;;;1610602678;;False;{};gj78k0i;False;t3_kwisv4;False;True;t1_gj4h7q3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj78k0i/;1610683735;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;Oh right, thanks for the correction! I’ve only seen some in the newest comments but thankfully there are way more positive comments here;False;False;;;;1610602700;;False;{};gj78l5s;False;t3_kwisv4;False;True;t1_gj77tsf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj78l5s/;1610683758;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TriLink710;;;[];;;;text;t2_1utn4r88;False;False;[];;"Following TFS piccolo advice. - -""Why didn't you DODGE!?!""";False;False;;;;1610602745;;False;{};gj78nh1;False;t3_kwisv4;False;False;t1_gj4kg7x;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj78nh1/;1610683802;7;True;False;anime;t5_2qh22;;0;[]; -[];;;13beachesz;;;[];;;;text;t2_jfwrzht;False;False;[];;I know rem fans are mad I just know it. 🤡;False;False;;;;1610602750;;False;{};gj78np2;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj78np2/;1610683806;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MajorSery;;MAL;[];;http://myanimelist.net/profile/MajorSery;dark;text;t2_dzai0;False;False;[];;If it makes it less weird Piccolo isn't really all that much older than Gohan. Like 4 years or so?;False;False;;;;1610602845;;False;{};gj78skt;False;t3_kwisv4;False;False;t1_gj50xnh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj78skt/;1610683892;4;True;False;anime;t5_2qh22;;0;[]; -[];;;USA_SCHOOLSHOOTER;;;[];;;;text;t2_4odoibhq;False;False;[];;Its a thrust attack after all;False;False;;;;1610602868;;False;{};gj78tq9;False;t3_kwisv4;False;False;t1_gj68qar;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj78tq9/;1610683912;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;"""Teenage""… yeah… [](#lifeishard)";False;False;;;;1610602938;;False;{};gj78xg4;False;t3_kwisv4;False;True;t1_gj4t8ab;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj78xg4/;1610683973;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;I guess Rem fans wouldn't be on suicide watch *aha.. a.*;False;False;;;;1610602945;;False;{};gj78xrm;False;t3_kwisv4;False;False;t1_gj78nh1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj78xrm/;1610683977;4;True;False;anime;t5_2qh22;;0;[]; -[];;;PsychoWorld;;MAL;[];;http://myanimelist.net/animelist/GodlyKyon;dark;text;t2_dqj5q;False;False;[];;"> But seriously, that's probably one of the best romantic confession I've seen in an anime. Not because it's sweet or romantic or anything like that, but precisely because of how messy and selfish and just awful the confession is. And yet it's through the shouting and fighting that the two are able to tell each other their most honest feeling, and accept each other through it. Even as a Rem fan that's really well done, haha. -> -> - -Seems like how a real, new couple who are very emotional might argue with each other haha.";False;False;;;;1610602989;;False;{};gj78zwz;False;t3_kwisv4;False;False;t1_gj4j0q8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj78zwz/;1610684013;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SingularCheese;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/lonelyCheese;light;text;t2_rgv21;False;False;[];;Once again we see silver hair is Subaru's fetish. It's the first thing he brought up of what he likes about Emilia.;False;False;;;;1610602998;;False;{};gj790d4;False;t3_kwisv4;False;False;t1_gj4z7ax;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj790d4/;1610684021;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Tec_King;;;[];;;;text;t2_28365wqu;False;False;[];;Hotel? Trivago;False;False;;;;1610603001;;False;{};gj790jc;False;t3_kwisv4;False;True;t1_gj4fwpl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj790jc/;1610684024;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;There are I'm sorting thru new comments, they just extra spicy today!;False;False;;;;1610603019;;False;{};gj791e6;False;t3_kwisv4;False;True;t1_gj78l5s;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj791e6/;1610684038;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610603051;;False;{};gj7930r;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7930r/;1610684067;0;True;False;anime;t5_2qh22;;0;[]; -[];;;PsychoWorld;;MAL;[];;http://myanimelist.net/animelist/GodlyKyon;dark;text;t2_dqj5q;False;False;[];;agreed. Before this Emilia didn't feel like a real person aside from episode 13. Now she actually seems like she has flaws and opinions. props!;False;False;;;;1610603148;;False;{};gj797s2;False;t3_kwisv4;False;True;t1_gj4jfdp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj797s2/;1610684148;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"I also see some people angry with others that hyped this episode as a game changer and the best so far, myself included, when in the end its just a good episode in the same level as the rest of the season, so i am actually disappointed - -The series has nothing to do with the fans though, i am sure White Fox didn't ask them to hype this episode.";False;False;;;;1610603201;;False;{};gj79adj;False;t3_kwisv4;False;False;t1_gj77aqp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj79adj/;1610684190;12;True;False;anime;t5_2qh22;;0;[]; -[];;;PsychoWorld;;MAL;[];;http://myanimelist.net/animelist/GodlyKyon;dark;text;t2_dqj5q;False;False;[];;"Yeah I guess there was a lot skipped in the month too. - -Too obsessive tho. Not interested in the murder --> love turnaround.";False;False;;;;1610603250;;False;{};gj79cr8;False;t3_kwisv4;False;True;t1_gj7604r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj79cr8/;1610684229;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610603269;;False;{};gj79doz;False;t3_kwisv4;False;True;t1_gj78np2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj79doz/;1610684245;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Lavion3;;;[];;;;text;t2_4dqx3fu7;False;False;[];;ya pain in the ass maintains the kindness Subaru feels towards Emilia while troublesome just makes it sound like Subaru does it all for his self-satisfaction;False;False;;;;1610603282;;False;{};gj79ebt;False;t3_kwisv4;False;False;t1_gj606fm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj79ebt/;1610684256;15;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Still 11 episodes left, for many this isn't even the hype part of arc 4.;False;False;;;;1610603446;;False;{};gj79mj2;False;t3_kwisv4;False;False;t1_gj79adj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj79mj2/;1610684396;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Go and say that to the gilga guy that is hyping this episode for weeks on every thread about re zero or karma ranking;False;False;;;;1610603488;;False;{};gj79om4;False;t3_kwisv4;False;False;t1_gj79mj2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj79om4/;1610684429;9;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;Pathetic lol;False;False;;;;1610603500;;False;{};gj79p7w;False;t3_kwisv4;False;False;t1_gj7160g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj79p7w/;1610684439;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;Good ol' [tsurime](https://tvtropes.org/pmwiki/pmwiki.php/Main/TsurimeEyes)/[tareme](https://tvtropes.org/pmwiki/pmwiki.php/Main/TaremeEyes);False;False;;;;1610603527;;False;{};gj79qko;False;t3_kwisv4;False;False;t1_gj4yzyw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj79qko/;1610684461;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;Doesn't help that it took over 2 hours for it to go top of the page because of the Kokoro Connect video yesterday.;False;False;;;;1610603542;;False;{};gj79rbs;False;t3_kwisv4;False;True;t1_gj7239x;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj79rbs/;1610684475;2;True;False;anime;t5_2qh22;;0;[]; -[];;;knokaka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/knokaka?order=4;light;text;t2_ytri4;False;False;[];;"my weekly dose of suffering.. not enough suffering this week... - -too much dramatization & symbolic talking which I didn't get .. maybe lost in translations - -overall boring episode... 6/10";False;True;;comment score below threshold;;1610603607;;False;{};gj79ufq;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj79ufq/;1610684530;-15;True;False;anime;t5_2qh22;;0;[]; -[];;;Ryto;;;[];;;;text;t2_6mj7n;False;False;[];;Rem is 100% best girl. But I also 100% ship Subaru and Emilia, sorry Rem.;False;False;;;;1610603608;;False;{};gj79uhu;False;t3_kwisv4;False;True;t1_gj4djlk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj79uhu/;1610684531;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Sad but it appears to be mostly isolated to this reddit thread for the most part, so not so bad.;False;False;;;;1610603634;;False;{};gj79vt1;False;t3_kwisv4;False;True;t1_gj79p7w;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj79vt1/;1610684552;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610603699;;False;{};gj79z0h;False;t3_kwisv4;False;True;t1_gj7930r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj79z0h/;1610684606;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Spectral2020;;;[];;;;text;t2_84n70o3g;False;False;[];;"The thing is that Subaru has learned things about Emilia for him to fall for her. He didn't fall for Emilia in Arc 1, but rather in Arc 2 where she saved him mentally after the deaths there and the building pressure from having to come up with a plan to keep everyone alive. He's personally seen sides of Emilia that Emilia herself doesn't know from the failed timelines and from the time period between arcs. Subaru fell in love because he's seen the potential Emilia does have and how she's better than him. This is the same thing that Rem did for Subaru in episode 18, where she points out that Subaru is better than he thinks he is because she's seen his potential that he's neglected to see. He expects this of Emilia because it's something someone as worthless as he is has been able to do as well as the fact that Emilia wanted this of herself. - -Subaru's fight with Emilia in S1 was about how he pushes expectations on her that he could never expect of anyone, let alone Emilia. There's a difference between expecting someone to be capable and someone being an ungodly perfect being.";False;False;;;;1610603726;;False;{};gj7a0bt;False;t3_kwisv4;False;False;t1_gj77wx6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7a0bt/;1610684628;3;True;False;anime;t5_2qh22;;0;[]; -[];;;oOhungthinh97Oo;;;[];;;;text;t2_10rjzk;False;False;[];;I totally agree with you. I tried to rewatch the second part and it actually feels a bit less forced since I have more time to remember the situation that they are in.;False;False;;;;1610603732;;False;{};gj7a0ln;False;t3_kwisv4;False;True;t1_gj669gh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7a0ln/;1610684632;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;There's noting wrong with that many people loved the episode to bits, it sucks for you but I bet your episode is still coming if not this season probably in s3.;False;False;;;;1610603772;;False;{};gj7a2lc;False;t3_kwisv4;False;True;t1_gj79om4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7a2lc/;1610684665;5;True;False;anime;t5_2qh22;;0;[]; -[];;;the22sinatra;;;[];;;;text;t2_1plc2ja9;False;False;[];;Who hurt you;False;False;;;;1610603891;;False;{};gj7a8a7;False;t3_kwisv4;False;True;t1_gj4kwp3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7a8a7/;1610684760;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrRalphWaldo;;;[];;;;text;t2_4nxs7dt4;False;False;[];;The LN is better than anime;False;False;;;;1610603922;;False;{};gj7a9rz;False;t3_kwisv4;False;True;t1_gj6ts2u;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7a9rz/;1610684784;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Demolosse001;;;[];;;;text;t2_9e8zjkly;False;False;[];;Not gonna lie, Ram is the best character in this show imo. How does she manage to shine so much despite having less screentime than many others?;False;False;;;;1610603995;;False;{};gj7ada0;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ada0/;1610684844;7;True;False;anime;t5_2qh22;;0;[]; -[];;;MrRalphWaldo;;;[];;;;text;t2_4nxs7dt4;False;False;[];;The LN is better tho;False;False;;;;1610604023;;False;{};gj7aenu;False;t3_kwisv4;False;True;t1_gj6sz57;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7aenu/;1610684866;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"Ram? You mean Ram-Sama? /jk - -She's just built different I guess.";False;False;;;;1610604079;;False;{};gj7ahes;False;t3_kwisv4;False;True;t1_gj7ada0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ahes/;1610684912;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MrRalphWaldo;;;[];;;;text;t2_4nxs7dt4;False;False;[];;Nope;False;False;;;;1610604123;;False;{};gj7aji9;False;t3_kwisv4;False;True;t1_gj6og7s;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7aji9/;1610684948;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;oOhungthinh97Oo;;;[];;;;text;t2_10rjzk;False;False;[];;Yeah I think he comes off a little strong when he keeps saying “I love you”. And saying how he has suffered for her seems a little petty, but maybe because Emilia wants him to scold her?;False;False;;;;1610604149;;False;{};gj7akpx;False;t3_kwisv4;False;False;t1_gj5pltj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7akpx/;1610684968;1;True;False;anime;t5_2qh22;;0;[]; -[];;;the22sinatra;;;[];;;;text;t2_1plc2ja9;False;False;[];;Otto said “bro you the 8th guy she’s been with” LMFAOO;False;False;;;;1610604150;;False;{};gj7aksh;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7aksh/;1610684969;13;True;False;anime;t5_2qh22;;0;[]; -[];;;dave-n-knight;;;[];;;;text;t2_qptta;False;False;[];;[](#emiliaohdear);False;False;;;;1610604204;;False;{};gj7aneu;False;t3_kwisv4;False;True;t1_gj4hwds;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7aneu/;1610685012;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;"I'm actually shocked seeing how split this comment section is lol. - -People not understanding the argument and calling it creepy? Really? - -I get the feeling some of you have never been in a *real* relationship before. The argument was messy, immature, no holding back. Contrary to weeb culture belief, relationships are messy at times and require two people to love each other, despite the flaws. Real life isn't like Tonikawa. - -The same people who praise episode 18. Whilst I love that episode, Rem is someone outlining her entire life for someone she's known for two minutes and has also killed previously but you all lapped it up. Out of the two conversations in real life, the Rem confession should be the most likely to be tagged as ""creepy"" or ""weird"". - -This conversation was real and had been coming for a *long* time. Subaru being labeled a simp but the moment he shouts at Emilia detailing the parts that annoy him but that he will still love her is apparently in bad taste? Especially when ya'll have been calling out Emilia since S1 about how she does nothing for Subaru but lets him save her all the time and how Subaru just gives her a free pass. I honestly don't understand the logic. - -Also Rem fans, chill out a bit. Your girl had plenty of screentime over Emilia in S1, let Emilia have her time in the spotlight.";False;False;;;;1610604235;;1610604733.0;{};gj7aoxv;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7aoxv/;1610685040;18;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;She's a slut, there I said it!;False;False;;;;1610604276;;1610604536.0;{};gj7aqv0;False;t3_kwisv4;False;True;t1_gj7aksh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7aqv0/;1610685073;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PsychoWorld;;MAL;[];;http://myanimelist.net/animelist/GodlyKyon;dark;text;t2_dqj5q;False;False;[];;"Didn’t happen perfectly this time. They were high on emotions after all. - -Hope they kiss again and he ask respectfully and calmly.";False;False;;;;1610604286;;False;{};gj7ard7;False;t3_kwisv4;False;False;t1_gj672tg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ard7/;1610685082;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Demolosse001;;;[];;;;text;t2_9e8zjkly;False;False;[];;My apologies, Ram-sama indeed. Her greatness knows no bounds.;False;False;;;;1610604298;;False;{};gj7arw0;False;t3_kwisv4;False;True;t1_gj7ahes;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7arw0/;1610685091;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dave-n-knight;;;[];;;;text;t2_qptta;False;False;[];;[](#maxshock);False;False;;;;1610604348;;False;{};gj7au8d;False;t3_kwisv4;False;False;t1_gj4nt00;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7au8d/;1610685133;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;They're doing the same thing Subaru did in episode 13, It's the definition of insanity.;False;False;;;;1610604471;;False;{};gj7b000;False;t3_kwisv4;False;True;t1_gj7aoxv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7b000/;1610685228;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Shadow_Swap;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4db8be68;False;False;[];;Always has been;False;False;;;;1610604550;;False;{};gj7b3rw;False;t3_kwisv4;False;True;t1_gj4oxe6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7b3rw/;1610685294;1;True;False;anime;t5_2qh22;;0;[]; -[];;;circeforthewin;;;[];;;;text;t2_sfhsg;False;False;[];;Seriously can't believe how far down I had to go before someone called Garf out, like the dude ruins the show for me.;False;False;;;;1610604705;;False;{};gj7bayx;False;t3_kwisv4;False;True;t1_gj4heoy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7bayx/;1610685411;2;True;False;anime;t5_2qh22;;0;[]; -[];;;o-_-o-_-o-_-o;;;[];;;;text;t2_5gaf9eam;False;False;[];;Re-zero;False;False;;;;1610604712;;False;{};gj7bb9m;False;t3_kwisv4;False;False;t1_gj6cv90;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7bb9m/;1610685416;7;True;False;anime;t5_2qh22;;0;[];True -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Rem's confession isn't weird, she was actually helping Subaru from all the trouble he went from. She even comforted him and said how she'll love to have a family with him. The best part of Rem's confession was how she made Subaru confident and made him believe in himself.;False;False;;;;1610604718;;False;{};gj7bbjv;False;t3_kwisv4;False;True;t1_gj7aoxv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7bbjv/;1610685420;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerellos;;;[];;;;text;t2_qohtkfa;False;False;[];;It wont, *I suppose*;False;False;;;;1610604748;;False;{};gj7bczn;False;t3_kwisv4;False;False;t1_gj6wlux;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7bczn/;1610685445;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Adymir;;;[];;;;text;t2_18v7w43g;False;False;[];;"I understand, I just think that he poorly worded his argument to Emilia at that point. Emilia was depressed and feeling insecure. She had little value for herself and blames herself for being so useless. Then she sees Subaru who has so much belief in her that she questions that belief. It may be a way for her to know what Subaru sees in her, so that she can feel more secure and have an insight on her person. - -But rather than giving Emilia reasons on why he places so much trust in her, Subaru chalks it all up to love. That's it. I do all this shit, I endure all this shit because of Love. He berates her on her imperfections but he says he still trusts her because of Love. And it doesn't help her at all, he failed to relay to her why he actually Loves her, he just makes a comment about her physical appearance and ends it with ""It's just Love."" - -And that is my biggest gripe with the confession. It's basically the same argument they had earlier in S1 but version 2.0, only this time he is persistent enough to get the girl. I loved how their first argument was handled because of the message it portrays, this is the same thing but back pedaling on that message.";False;False;;;;1610604777;;False;{};gj7bee1;False;t3_kwisv4;False;False;t1_gj7a0bt;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7bee1/;1610685469;5;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;"Funny isn't it? Everything you said there is what Subaru has also done for Emilia but he's been labelled a simp for the past 4 years. - -And yes it is weird. If a girl in real life committed herself and her entire being that much to a guy so quickly or vice versa, they'd be labelled a creep. - ->she made Subaru confident and made him believe in himself. - -This is also exactly what Subaru has done for Emilia this episode. She *wanted* Subaru to speak honestly and not put her on a pedestal. She literally asks him to be angry at her, I don't know how more clear it can get. The hint to this should be on the episode title - *A Reason To Believe*";False;False;;;;1610604937;;1610605376.0;{};gj7blsw;False;t3_kwisv4;False;False;t1_gj7bbjv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7blsw/;1610685597;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Multipl;;;[];;;;text;t2_mi3bz;False;False;[];;Not OP but can you explain what Garfiel is trying to do this season? I completely forgot what his endgame is.;False;False;;;;1610604973;;False;{};gj7bnfj;False;t3_kwisv4;False;True;t1_gj70ndr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7bnfj/;1610685625;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Can you explain that whole Otto scene, I thought that he was actually helping another guy by saying that girl just goes around with so many guys and is a slut.;False;False;;;;1610605022;;False;{};gj7bpse;False;t3_kwisv4;False;True;t1_gj7aqv0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7bpse/;1610685663;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;They are both justified, love can even lack reason.;False;False;;;;1610605051;;False;{};gj7br2l;False;t3_kwisv4;False;False;t1_gj7bbjv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7br2l/;1610685684;6;True;False;anime;t5_2qh22;;0;[]; -[];;;MrRalphWaldo;;;[];;;;text;t2_4nxs7dt4;False;False;[];;Just wait for next episodes;False;False;;;;1610605053;;False;{};gj7br66;False;t3_kwisv4;False;True;t1_gj6c8wl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7br66/;1610685685;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Csr56;;;[];;;;text;t2_2jxvv6sd;False;False;[];;The problem is that she thinks they don't love her for what she perceives are her weaknesses and instead of him actually addressing her concerns and making her realize that she either is mistaken and those aren't her weaknesses or that she has other qualities that people love her for, he just keeps saying i love you and then mentions he likes her body, hair and voice. That is just ridiculous.;False;False;;;;1610605076;;False;{};gj7bs71;False;t3_kwisv4;False;False;t1_gj6xeli;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7bs71/;1610685702;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Kam_E_luck;;;[];;;;text;t2_3i5m4uwq;False;False;[];;">get the feeling some of you have never been in a real relationship before - -Most people assumed that relationships especially in anime are romantic and fun but relationship in reality are messy and chaotic as hell. I remembered my mom and dad fight alot when they were younger, they mellowed out alot when they got older tho. - -This is what's happening to Subaru and Emilia. Both are socially awkward and are new to love so they dont know how to react, they are also flawed individuals and ofc the confession would be weird. - ->This conversation was real and had been coming for a long time. Subaru being labeled a simp but the moment he shouts at Emilia detailing the parts that annoy him but that he will still love her is apparently in bad taste? I honestly don't understand the logic. - -Ironically, Rem is a bigger simp than Subaru. By the definition of simp, they should listen to the requests of other people, despite how unreasonable it can be. Rem almost listened to all of Subaru's requests without questioning them. Subaru did every dumb things against Emilia's wishes. - -It was also funny they said you should not love someone with flaws when Rem loves Subaru despite how pathetic and asshole-ish he was. Subaru loves Emilia even she was a pain in the ass to take care of.";False;False;;;;1610605095;;False;{};gj7bt4g;False;t3_kwisv4;False;False;t1_gj7aoxv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7bt4g/;1610685717;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Kam_E_luck;;;[];;;;text;t2_3i5m4uwq;False;False;[];;I love Ram cuz she shit talk to almost everyone in the show, especially to Subaru;False;False;;;;1610605207;;False;{};gj7bycc;False;t3_kwisv4;False;True;t1_gj7ada0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7bycc/;1610685806;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ItzJ4v3N;;;[];;;;text;t2_3vbq6t5c;False;False;[];;Good bot!;False;False;;;;1610605263;;False;{};gj7c0vo;False;t3_kwisv4;False;True;t1_gj6u9hz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7c0vo/;1610685847;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hacknrk;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/h4cknrk;light;text;t2_y5dl9;False;False;[];;Literally can’t go tits up 🚀🚀🚀🚀🚀;False;False;;;;1610605318;;False;{};gj7c3e5;False;t3_kwisv4;False;False;t1_gj4g28e;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7c3e5/;1610685890;4;True;False;anime;t5_2qh22;;0;[]; -[];;;False_Cartoonist;;;[];;;;text;t2_3wwidgoo;False;False;[];;"Jesus Christ that episode hit different. Did my ex girlfriend coach Emilia for that argument? That entire thing hit way too close to home. - -And *what on Earth* was that scene with Otto and the cat?";False;False;;;;1610605337;;False;{};gj7c4au;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7c4au/;1610685906;7;True;False;anime;t5_2qh22;;0;[]; -[];;;THEGUYINTHEPICT;;;[];;;;text;t2_4059sf4r;False;False;[];;Little bro you fucking snitch;False;False;;;;1610605363;;False;{};gj7c5h3;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7c5h3/;1610685925;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;The dude clearly already knew that's why he attacked Otto to start with, but now Otto by saying it in the open that she's 7 timing the dude.. its kinda of insulting to him and their relationship is probably over unless the guy bites is pride, that's my guess to why he's angry.;False;False;;;;1610605605;;False;{};gj7cgjo;False;t3_kwisv4;False;True;t1_gj7bpse;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7cgjo/;1610686112;3;True;False;anime;t5_2qh22;;0;[]; -[];;;pleiades1208;;;[];;;;text;t2_8e61j5he;False;False;[];;If i remember correctly otto had a small relationship with that girl and he was accused by the other dude that he was having an affair with her so otto took revenge using his animal ability and he spread news that the girl was a slut who slept with other men only to realize that girl was actually the daughter of a powerful man hence the reason he got exiled;False;False;;;;1610605648;;False;{};gj7cijf;False;t3_kwisv4;False;True;t1_gj7bpse;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7cijf/;1610686143;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dadarian;;;[];;;;text;t2_pl5da;False;False;[];;I don’t understand. This doesn’t happen in anime. I’m lost and confused. I got what I wanted. We packing it in and going home boys?;False;False;;;;1610605706;;False;{};gj7cl49;False;t3_kwisv4;False;True;t1_gj4dtps;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7cl49/;1610686185;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> Did my ex girlfriend coach Emilia for that argument? - -PTSD, *my man!* - ->And what on Earth was that scene with Otto and the cat? - -The cat was probably showing Otto what the girl was doing, lol.";False;False;;;;1610605724;;False;{};gj7clye;False;t3_kwisv4;False;False;t1_gj7c4au;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7clye/;1610686199;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Shortstop88;;;[];;;;text;t2_b6ar6;False;False;[];;Wait, it's all zero?;False;False;;;;1610605754;;False;{};gj7cn8q;False;t3_kwisv4;False;False;t1_gj4x225;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7cn8q/;1610686222;5;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;It was a clicking clock until someone found out.;False;False;;;;1610605795;;1610606321.0;{};gj7cp1s;False;t3_kwisv4;False;True;t1_gj7c5h3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7cp1s/;1610686253;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SoMuchHatred;;;[];;;;text;t2_o15bh;False;False;[];;"That's an unfair characterization of what he says, though. Subaru *does* mention a few nonphysical qualities of hers that he likes. He mentions being fond of her absentmindedness and how she gives her all along with liking that she puts others above herself. Sure, a lot of it is based just on appearances, but obviously that plays a role in why he loves her. - -Ultimately, though, he couldn't just focus on her positives without bringing up the negatives. From Emilia's point of view, that would either prove that he's still loving a fake version of herself or would trigger her twisted logic that him not being angry means he has no expectations for her means he secretly hates her. She just didn't want to hear anything else, and Subaru can't solve all her problems in one conversation. But there was one that he could deal with just then, and that was making her understand that she really is loved.";False;False;;;;1610605801;;False;{};gj7cpbh;False;t3_kwisv4;False;True;t1_gj7bs71;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7cpbh/;1610686257;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Spectral2020;;;[];;;;text;t2_84n70o3g;False;False;[];;No, you're missing that parts where Subaru says he's in love with all of her behaviors of being absent minded, how she always tries her best, and how she always does her best to help others. He's basically saying that Emilia is usually proactive and that she should be easily able to do something like this. He's judging her based off the qualities that he fell for unlike last time where he assumed qualities of her that she didn't actually have. That's the difference here.;False;False;;;;1610605802;;False;{};gj7cpdj;False;t3_kwisv4;False;False;t1_gj7bee1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7cpdj/;1610686259;4;True;False;anime;t5_2qh22;;0;[]; -[];;;CosmicTempest;;;[];;;;text;t2_113wa1;False;False;[];;Yo I don’t really remember but didn’t Otto compliment Subaru’s and Patrasche’s pairing, and that Patrasche was a really nice dragon? I guess he could understand what she was saying.;False;False;;;;1610605818;;False;{};gj7cq2s;False;t3_kwisv4;False;True;t1_gj4d6is;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7cq2s/;1610686272;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CosmicTempest;;;[];;;;text;t2_113wa1;False;False;[];;Yo I don’t really remember but didn’t Otto compliment Subaru’s and Patrasche’s pairing, and that Patrasche was a really nice dragon? I guess he could understand what she was saying.;False;False;;;;1610605827;;False;{};gj7cqgz;False;t3_kwisv4;False;False;t1_gj4d6is;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7cqgz/;1610686279;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;This episode never told us that Otto had a relationship with that girl, does this happen in Light novel?;False;False;;;;1610605853;;False;{};gj7crmv;False;t3_kwisv4;False;False;t1_gj7cijf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7crmv/;1610686299;6;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;Yep;False;False;;;;1610605882;;False;{};gj7cswd;False;t3_kwisv4;False;True;t1_gj7cq2s;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7cswd/;1610686320;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRealLoneWarWolf;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_1bfonb4;False;False;[];;LETS FUCKING GOOOOOOOOOOOOOO;False;False;;;;1610605889;;False;{};gj7ct7a;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ct7a/;1610686326;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kam_E_luck;;;[];;;;text;t2_3i5m4uwq;False;False;[];;"Physically, she's older than Subaru - -Chronologically, she's MUCH older than Subaru";False;False;;;;1610605933;;False;{};gj7cv6n;False;t3_kwisv4;False;True;t1_gj6c3dr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7cv6n/;1610686357;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Demolosse001;;;[];;;;text;t2_9e8zjkly;False;False;[];;"That's one reason to like her I guess. Let's say that she is harsh with her words. But she is also one of the nicest character in the show. -I like how mature and collected she is, yet so funny. I swear Ram is so entertaining. Can't find anyone in the show with a better personality. -Btw Garfield my boy, I know she can take it but don't be so violent against your crush.";False;False;;;;1610605962;;False;{};gj7cwfq;False;t3_kwisv4;False;True;t1_gj7bycc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7cwfq/;1610686379;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"Garfiel is part of the conservative group with Ryuzu Shima that wants the Sanctuary to remain isolated from outside. -___ -This episode the problem with Garfiel is the location of the meeting between Subaru and Emilia. - -Garfiel last cour made it pretty clear that wouldn't let Subaru inside the crypt in case Subaru has ties with the Witches Cult, because of the Witch of Envy miasma that permeates Subaru.";False;False;;;;1610606088;;False;{};gj7d1zx;False;t3_kwisv4;False;True;t1_gj7bnfj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7d1zx/;1610686474;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LakerBlue;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LakerBlue;light;text;t2_afaca;False;False;[];;Right?! I hoped and figured it would happen eventually but didn’t think we’d get it this soon. Certainly never thought we’d see them kiss before they started dating.;False;False;;;;1610606123;;False;{};gj7d3iq;False;t3_kwisv4;False;True;t1_gj4h7q3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7d3iq/;1610686510;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kam_E_luck;;;[];;;;text;t2_3i5m4uwq;False;False;[];;He can talk to the mabeasts, he just can't control them. Remember back in S1, he went crazy due to the whale spoke to him.;False;False;;;;1610606159;;False;{};gj7d52b;False;t3_kwisv4;False;True;t1_gj628hq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7d52b/;1610686536;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Shortstop88;;;[];;;;text;t2_b6ar6;False;False;[];;"> Maybe we should thank his brother for making Otto the true best boy we know today. - -Thank the older brother specifically. That other kid only caused problems.";False;False;;;;1610606206;;False;{};gj7d751;False;t3_kwisv4;False;False;t1_gj4hakp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7d751/;1610686572;11;True;False;anime;t5_2qh22;;0;[]; -[];;;nachideku;;;[];;;;text;t2_6p2kphs;False;False;[];;So many red flags everywhere;False;False;;;;1610606206;;False;{};gj7d75h;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7d75h/;1610686572;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Animegamingnerd;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/animegamingnerd;light;text;t2_k7u33;False;False;[];;[mf as a Rem fan](https://www.youtube.com/watch?v=OstJ9SzKTYQ);False;False;;;;1610606342;;False;{};gj7dd1g;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7dd1g/;1610686671;6;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Drink one for me too.;False;False;;;;1610606477;;False;{};gj7dixo;False;t3_kwisv4;False;True;t1_gj7dd1g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7dixo/;1610686767;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;"Keyword ""can""";False;False;;;;1610606504;;False;{};gj7dk40;False;t3_kwisv4;False;True;t1_gj73uxc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7dk40/;1610686786;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Any-Nothing;;;[];;;;text;t2_4h46mqdo;False;False;[];;The cat was his crush at that time;False;False;;;;1610606510;;False;{};gj7dkef;False;t3_kwisv4;False;False;t1_gj7clye;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7dkef/;1610686791;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Flymsi;;;[];;;;text;t2_nm33k;False;False;[];;yea, but it has to start somewhere. The only solution i see there that satella casually lived in his world and met him;False;False;;;;1610606516;;False;{};gj7dknh;False;t3_kwisv4;False;True;t1_gj77kpt;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7dknh/;1610686795;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutMcD;;;[];;;;text;t2_19qzik0t;False;False;[];;But does Rem ever wake up;False;False;;;;1610606522;;False;{};gj7dkwl;False;t3_kwisv4;False;False;t1_gj6tpj4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7dkwl/;1610686799;11;True;False;anime;t5_2qh22;;0;[]; -[];;;arod13134;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SlicedBrisket;light;text;t2_g85ta;False;False;[];;Oddly enough, the phrase “dodging a kiss” sounds natural to me. But using dodge like Subaru did as more of a command made it sound weird even though it’s perfectly fine. “Look away” or “turn away” would’ve been better.;False;False;;;;1610606658;;False;{};gj7dqrq;False;t3_kwisv4;False;False;t1_gj6opx9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7dqrq/;1610686897;4;True;False;anime;t5_2qh22;;0;[]; -[];;;rasengansharingan;;;[];;;;text;t2_52g5rghf;False;False;[];;Still, he didn’t think about the fact that Garfield can probably jump high enough to escape it. Bugs are a good distraction though;False;False;;;;1610606676;;False;{};gj7drk6;False;t3_kwisv4;False;True;t1_gj4denl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7drk6/;1610686912;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kam_E_luck;;;[];;;;text;t2_3i5m4uwq;False;False;[];;"Their relationship is rather new. And even then Emilia still not loves Subaru romantically yet. She still views him as a precious friend tho - -This is not the end of their relationship, it's the beginning and whether they will truly become a couple after this is up to the 2 of them";False;False;;;;1610606688;;False;{};gj7ds3t;False;t3_kwisv4;False;True;t1_gj6f4n9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ds3t/;1610686920;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Altstorm;;;[];;;;text;t2_19xbfoeo;False;False;[];;Wait, two titles?;False;False;;;;1610606748;;False;{};gj7dumq;False;t3_kwisv4;False;True;t1_gj4fwpl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7dumq/;1610686962;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shortstop88;;;[];;;;text;t2_b6ar6;False;False;[];;The caveat is that that cat wasn't Otto's cat. So all of that is true.;False;False;;;;1610606775;;False;{};gj7dvt9;False;t3_kwisv4;False;True;t1_gj5ozsg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7dvt9/;1610686982;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610606777;;False;{};gj7dvvd;False;t3_kwisv4;False;True;t1_gj7crmv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7dvvd/;1610686983;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shortstop88;;;[];;;;text;t2_b6ar6;False;False;[];;"Ah, I see you also invested during the ""Starting from 0"" scene in Season 1.";False;False;;;;1610606836;;False;{};gj7dygd;False;t3_kwisv4;False;False;t1_gj5gbz5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7dygd/;1610687027;3;True;False;anime;t5_2qh22;;0;[]; -[];;;rasengansharingan;;;[];;;;text;t2_52g5rghf;False;False;[];;Not sure if this is still the case since Puck is gone but every time Emilia dies, Puck destroys the entire world and he says it’s to save Emilia. He probably knows that someone has Return by Death and is nuking the world with ice to try to reset. Basically, the timeline can’t move forward without Emilia and Subaru both being alive so Emilia becomes Satella in the future and Satella gives Subaru return by death so that he can save Emilia so that she can become Satella, so time loop;False;False;;;;1610606853;;False;{};gj7dz56;False;t3_kwisv4;False;True;t1_gj4ot8r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7dz56/;1610687041;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Admiral_Ryou;;;[];;;;text;t2_o6jpw;False;False;[];;"That was actually an insert song called ""Door"" sung by Emilia's VA. We still haven't got either OP or ED yet.";False;False;;;;1610606917;;False;{};gj7e1v2;False;t3_kwisv4;False;True;t1_gj5m7tl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7e1v2/;1610687086;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;So its cycle I guess with no beginning or end.;False;False;;;;1610606947;;False;{};gj7e368;False;t3_kwisv4;False;True;t1_gj7dz56;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7e368/;1610687107;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610484325;moderator;False;{};gj1f5r0;False;t3_kw0ar5;False;True;t3_kw0ar5;/r/anime/comments/kw0ar5/title_of_the_anime_please_i_watched_a_few_minutes/gj1f5r0/;1610546293;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610484388;;False;{};gj1fapr;False;t3_kw0ar5;False;True;t3_kw0ar5;/r/anime/comments/kw0ar5/title_of_the_anime_please_i_watched_a_few_minutes/gj1fapr/;1610546388;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;Mushoku Tensei;False;False;;;;1610484391;;False;{};gj1fawp;False;t3_kw0ar5;False;True;t3_kw0ar5;/r/anime/comments/kw0ar5/title_of_the_anime_please_i_watched_a_few_minutes/gj1fawp/;1610546391;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Nick6y373u, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610484488;moderator;False;{};gj1fim5;False;t3_kw0cmo;False;True;t3_kw0cmo;/r/anime/comments/kw0cmo/any_wholesome_harem_anime_like_the_quintessential/gj1fim5/;1610546537;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;[Ouran High School Host Club](https://livechart.me/anime/3628) and [My Life as a Villainess](https://www.livechart.me/anime/3563) immediately come to mind, though the charm of the latter comes from the main character being so dense that she accidentally woos everyone around her rather than just being stereotypically ignorant.;False;False;;;;1610484686;;False;{};gj1fyqo;False;t3_kw0cmo;False;True;t3_kw0cmo;/r/anime/comments/kw0cmo/any_wholesome_harem_anime_like_the_quintessential/gj1fyqo/;1610546848;3;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;In Another World with my Smart Phone is pretty wholesome.;False;False;;;;1610484795;;False;{};gj1g7d5;False;t3_kw0cmo;False;True;t3_kw0cmo;/r/anime/comments/kw0cmo/any_wholesome_harem_anime_like_the_quintessential/gj1g7d5/;1610547002;2;True;False;anime;t5_2qh22;;0;[]; -[];;;qba19;;;[];;;;text;t2_fnhtp;False;False;[];;"Bokuben is very similar and enjoyable -2 seasons";False;False;;;;1610484920;;False;{};gj1ghqa;False;t3_kw0cmo;False;True;t3_kw0cmo;/r/anime/comments/kw0cmo/any_wholesome_harem_anime_like_the_quintessential/gj1ghqa/;1610547196;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610485142;moderator;False;{};gj1gzij;False;t3_kw0ki8;False;True;t3_kw0ki8;/r/anime/comments/kw0ki8/want_to_find_this_anime_please_help/gj1gzij/;1610547536;1;False;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;So much simpler than you were thinking. Comic Girls.;False;False;;;;1610485251;;False;{};gj1h86b;False;t3_kw0ki8;False;True;t3_kw0ki8;/r/anime/comments/kw0ki8/want_to_find_this_anime_please_help/gj1h86b/;1610547700;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nihhrt;;MAL;[];;http://myanimelist.net/animelist/Nihhrt;dark;text;t2_8p0ab;False;False;[];;Lol;False;False;;;;1610485319;;False;{};gj1hddp;False;t3_kw0ki8;False;True;t1_gj1h86b;/r/anime/comments/kw0ki8/want_to_find_this_anime_please_help/gj1hddp/;1610547798;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ImmediateFocus0;;;[];;;;text;t2_1w1wy8ab;False;False;[];;"OH MY GOD. LMAO. Thank you 😂 I searched google for ""manga drawing girls"" and NEVER got a result.";False;False;;;;1610485344;;False;{};gj1hfcg;True;t3_kw0ki8;False;True;t1_gj1h86b;/r/anime/comments/kw0ki8/want_to_find_this_anime_please_help/gj1hfcg/;1610547836;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610486068;moderator;False;{};gj1j0sa;False;t3_kw0w8q;False;True;t3_kw0w8q;/r/anime/comments/kw0w8q/trying_to_find_an_anime/gj1j0sa/;1610549018;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Nihhrt;;MAL;[];;http://myanimelist.net/animelist/Nihhrt;dark;text;t2_8p0ab;False;False;[];;Sounds like [Net-juu no Susume](https://myanimelist.net/anime/36038/Net-juu_no_Susume) (Recovery of an MMO Junkie);False;False;;;;1610486349;;False;{};gj1jmzc;False;t3_kw0w8q;False;True;t3_kw0w8q;/r/anime/comments/kw0w8q/trying_to_find_an_anime/gj1jmzc/;1610549477;7;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;Kimi no Na wa it looks like. Not counting movies, Code Geass S2 is the highest. Not counting sequels, Cowboy Bebop.;False;False;;;;1610486467;;False;{};gj1jw8z;False;t3_kw100w;False;False;t3_kw100w;/r/anime/comments/kw100w/what_is_the_highest_rated_mal_anime_entry_thats/gj1jw8z/;1610549652;16;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your submission has been removed. - -- Your post looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler tagging posts, make sure you include the name of the show you're spoiling in the title of your post. We can't add it for you after the fact. You can then tag your post as containing spoilers by using the ""spoiler"" button, either when submitting or afterwards. - - If you're submitting a text-based post and need to mark spoilers for multiple series, you should use the same spoiler format as for comments. Use the editor's Markdown mode if you're on new Reddit, and then use the `[Work title](/s ""my favorite character dies"")` format to tag specific parts of your text. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610486610;moderator;False;{};gj1k7g6;False;t3_kw0xro;False;True;t3_kw0xro;/r/anime/comments/kw0xro/fatestay_night_unlimited_blade_works_3d_model_of/gj1k7g6/;1610549874;0;True;False;anime;t5_2qh22;;0;[]; -[];;;lewdHc;;;[];;;;text;t2_8bgx3lqe;False;False;[];;This isn't spoiling anything.;False;False;;;;1610487302;;False;{};gj1lpf8;False;t3_kw0xro;False;True;t1_gj1k7g6;/r/anime/comments/kw0xro/fatestay_night_unlimited_blade_works_3d_model_of/gj1lpf8/;1610550925;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hi Minty_17, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610487415;moderator;False;{};gj1ly9i;False;t3_kw1cqt;False;True;t3_kw1cqt;/r/anime/comments/kw1cqt/anyone_have_anime_recommendations/gj1ly9i/;1610551090;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;Re: zero;False;False;;;;1610487474;;False;{};gj1m2yt;False;t3_kw1cqt;False;True;t3_kw1cqt;/r/anime/comments/kw1cqt/anyone_have_anime_recommendations/gj1m2yt/;1610551187;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi nikivera, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610487475;moderator;False;{};gj1m314;False;t3_kw1dgy;False;True;t3_kw1dgy;/r/anime/comments/kw1dgy/recommendations_based_on_mal/gj1m314/;1610551188;1;False;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;Servant identities are spoilers.;False;False;;;;1610487512;moderator;False;{};gj1m5xd;False;t3_kw0xro;False;True;t1_gj1lpf8;/r/anime/comments/kw0xro/fatestay_night_unlimited_blade_works_3d_model_of/gj1m5xd/;1610551243;0;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;If you like romance then check out Kare Kano.;False;False;;;;1610487556;;False;{};gj1m9ec;False;t3_kw1cqt;False;True;t3_kw1cqt;/r/anime/comments/kw1cqt/anyone_have_anime_recommendations/gj1m9ec/;1610551312;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lewdHc;;;[];;;;text;t2_8bgx3lqe;False;False;[];;Of course.;False;False;;;;1610487571;;False;{};gj1mam6;False;t3_kw0xro;False;True;t1_gj1m5xd;/r/anime/comments/kw0xro/fatestay_night_unlimited_blade_works_3d_model_of/gj1mam6/;1610551334;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;"Konosuba - -Overlord - -Cautious hero - -Isekai izakaya - -Digimon adventure - -Madoka Magicka";False;False;;;;1610487662;;False;{};gj1mhsg;False;t3_kw1cqt;False;True;t3_kw1cqt;/r/anime/comments/kw1cqt/anyone_have_anime_recommendations/gj1mhsg/;1610551478;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bipolar_popsicle;;;[];;;;text;t2_9rwbcs5h;False;False;[];;"hi, I've been watching since i was 8 years old - -some must watch animes are: - -code geass - -charlotte - -your lie in april - -fullmetal alchemist brotherhood -(probably the best anime ever made) - - -attack on titan - - -trigun - - -cowboy bebop - - -now and then here and there - - -akira - - -gintama - - -soul eater - - -those are some i would strongly suggest";False;False;;;;1610487712;;False;{};gj1mlmw;False;t3_kw1cqt;False;True;t3_kw1cqt;/r/anime/comments/kw1cqt/anyone_have_anime_recommendations/gj1mlmw/;1610551552;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;Just wait until the season after the train movie. I feel like people might make more ships with inosuke when they see his crazy prowess;False;False;;;;1610487763;;False;{};gj1mpof;False;t3_kw1dft;False;True;t3_kw1dft;/r/anime/comments/kw1dft/do_any_other_people_agree_with_the_nezuko_and/gj1mpof/;1610551630;3;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;Plastic Memories, Re:Zero, Madoka Magica, Cowboy Bebop, Koe no Katachi, Hibike! Euphonium;False;False;;;;1610487765;;False;{};gj1mpsh;False;t3_kw1dgy;False;True;t3_kw1dgy;/r/anime/comments/kw1dgy/recommendations_based_on_mal/gj1mpsh/;1610551632;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610487855;moderator;False;{};gj1mwrw;False;t3_kw1i7j;False;True;t3_kw1i7j;/r/anime/comments/kw1i7j/does_an_anime_like_this_exist/gj1mwrw/;1610551769;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610487881;moderator;False;{};gj1myvl;False;t3_kw1ijm;False;True;t3_kw1ijm;/r/anime/comments/kw1ijm/made_in_abyss_third_moviesecond_season/gj1myvl/;1610551809;1;False;False;anime;t5_2qh22;;0;[]; -[];;;nikivera;;;[];;;;text;t2_5bj80vjh;False;False;[];;Thank you! I'll be sure too check these out.;False;False;;;;1610487929;;False;{};gj1n2n4;True;t3_kw1dgy;False;False;t1_gj1mpsh;/r/anime/comments/kw1dgy/recommendations_based_on_mal/gj1n2n4/;1610551881;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;You may want to look for a dating sim or something along those lines. I doubt something like that exists in anime form;False;False;;;;1610488023;;False;{};gj1na77;False;t3_kw1i7j;False;True;t3_kw1i7j;/r/anime/comments/kw1i7j/does_an_anime_like_this_exist/gj1na77/;1610552028;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Becher_MC;;;[];;;;text;t2_y5nb2;False;False;[];;Aww.. that's a shame.. well thank you for your reply;False;False;;;;1610488107;;False;{};gj1nh6y;True;t3_kw1i7j;False;False;t1_gj1na77;/r/anime/comments/kw1i7j/does_an_anime_like_this_exist/gj1nh6y/;1610552168;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;They probably won't recap it at all in the second season. You'll be expected to have seen the third movie.;False;False;;;;1610488145;;False;{};gj1nk8g;False;t3_kw1ijm;False;False;t3_kw1ijm;/r/anime/comments/kw1ijm/made_in_abyss_third_moviesecond_season/gj1nk8g/;1610552226;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;Fate/stay night: UBW;False;False;;;;1610488146;;False;{};gj1nkd0;False;t3_kw1cqt;False;True;t3_kw1cqt;/r/anime/comments/kw1cqt/anyone_have_anime_recommendations/gj1nkd0/;1610552229;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JakeTheFake8;;;[];;;;text;t2_86j3emld;False;False;[];;You did not give spirited away a 3;False;False;;;;1610488380;;False;{};gj1o2tz;False;t3_kw1dgy;False;True;t3_kw1dgy;/r/anime/comments/kw1dgy/recommendations_based_on_mal/gj1o2tz/;1610552599;3;True;False;anime;t5_2qh22;;0;[]; -[];;;nikivera;;;[];;;;text;t2_5bj80vjh;False;False;[];;I have bad experiences with that movie. In primary school we would watch it three times a year, so by the time I made my MAL account, i have seen it 27 times and i was FED UP with it. It probably doesn't deserve such a low number, but by now the movie is too anoying for me to rate it higher.;False;False;;;;1610488605;;False;{};gj1okfz;True;t3_kw1dgy;False;False;t1_gj1o2tz;/r/anime/comments/kw1dgy/recommendations_based_on_mal/gj1okfz/;1610552934;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610488875;;False;{};gj1p5c3;False;t3_kw1t7s;False;True;t3_kw1t7s;/r/anime/comments/kw1t7s/slime_season_2_english_dub/gj1p5c3/;1610553335;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blackmagemasta;;MAL;[];;https://myanimelist.net/profile/blackmagemasta;dark;text;t2_aceb1;False;False;[];;"**Rewatcher** - -If people are cursed for raising the dead, then will Araragi also be cursed for bringing back Hachikuji? Or do ghosts not count? - -I unfortunately don't have the time to dive into this, but there's a lot of interesting bits here about justice, balance, and doing the right thing. I'd love to see the youtube channel Wisecrack take a look at Monogatari and do one of there [Deep or Dumb](https://www.youtube.com/watch?v=o_m_lzynebA&ab_channel=Wisecrack) videos. - -Sleeping together at the planetarium. Kinky. - -Neat. It's an [Infinity Room](https://www.tripzilla.com/yayoi-kusama-infinity-mirror-rooms/97830). - -Leave it to Senjougahara to turn a lower score into a way to insult Araragi. - -Awww, they're calling each other by their first names. [](#delighted)";False;False;;;;1610488888;;False;{};gj1p69z;False;t3_kw1u5z;False;False;t3_kw1u5z;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1p69z/;1610553355;17;True;False;anime;t5_2qh22;;0;[]; -[];;;blackmagemasta;;MAL;[];;https://myanimelist.net/profile/blackmagemasta;dark;text;t2_aceb1;False;False;[];;"They're called ""isekai"". If you do a google search for ""best isekai"" or ""what isekai should I watch"" or something along those lines, you'll find plenty.";False;False;;;;1610488934;;False;{};gj1p9vb;False;t3_kw1umq;False;True;t3_kw1umq;/r/anime/comments/kw1umq/i_need_some_help_to_find_anime_to_watch/gj1p9vb/;1610553423;3;True;False;anime;t5_2qh22;;0;[]; -[];;;baniRien;;;[];;;;text;t2_wxbyg;False;False;[];;"**Rewatcher/Co-host** - ---- - -- Careful, Ougi is [a trained sniper](https://imgur.com/a/lJTsk04) - -- A monster that comes back no matter how many times you hurt it. What kind of metaphor could it be? The oddities that keep popping up in town? Or Heraragi's fight with self-doubt? - -- Linking Senjougahara with [Cancer](https://imgur.com/a/BwEZRNa) would mean that Hydraragi is the monster. Fitting, but then who is the hero? - -- Ougi knows nothing, not even not to point a laser [at people's eyes](https://imgur.com/a/4OWe8Bu). Alonaragi has no regeneration powers right now. Also, this makes it look like she's standing on a blood moon. - -- [Nice shot](https://imgur.com/a/hkDAPVh). Clearly Ougi is a normal human and would not survive being chopped in half. - -- So, the Occult club suffered various curses because resurrection is one of the taboos of the world. Gotta find a philosopher's stone. - -- [This](https://imgur.com/a/PcssrRD) is similar to what Hachikuji discussed in the last arc, about doing the right thing, which Platoragi qualified a white justice, and correcting mistakes, which he dubbed black. It's easy to see which Ougi would prefer. To err is human, you learn from your mistakes, etc. And correcting mistakes puts things back to zero. - -- Lot of different constellations having meaning. Libra for justice, the phoenix when Tsukihi is mentioned, Gemini likening the Fire Sisters to twins. - -- As Ougi says, you could say that Hachikuji is safe from the Darkness. Since she is supposed to be in Hell, being on Earth could be qualified as lost, thus fitting her role. - -- [Latteragi](https://imgur.com/a/Wg0LOyi) - -- Cute date montage. - -- He's also ""Koyokoyo"" on the scoreboard. And Senjougahara clearly stacked the deck in her schedule, picking stuff she was good at. - -- She's surprisingly calmed for someone just hearing that Lazaragi was just killed and resurrected. - -- [Spoilers Owari](/s ""She's right on the head in that Gaen is actually fighting Araragi, in some way"") - -- First music we hear in the background of the karaoke place is Platinum Disco. - -- Senjougahara stacking the deck again, even singing her own 2nd OP, [Futakotome](https://imgur.com/a/3vYXb2B). But even the console has things to say about her character. Which she then proves by bringing back her old penchant for verbally abusing her boyfriend. - -- [Utaragi](https://imgur.com/a/UshT8hb) again scores just a dash higher, singing Chocolate Insomnia, because Hanekawa is still a fascination that mars many of his dates. The result might also be prophetic, saying he can achieve his full potential by working a bit harder. - -- This was not the best choice by Senjougahara if she wanted to win, as he has previous karaoke experience, if I remember correctly in the short story where he cuts Hanekawa's hair. - -- This is why [you let your girl win](https://imgur.com/a/gSz1xHi). - -- A weight joke, which works really well. - -- Another example of their great relationship, where they never hurt each other. Senjougahara takes the time in the conversation to make it quite clear that she is not bothered by the lack of gift, that she didn't need on and that he has extenuating circumstances, before shifting (badum tsh) into the joke and requesting a favour to compensate for this great affront. And he accepts readily because he knows it won't be anything bad. So, she jumped on this opportunity to force him to pass that last line they hadn't crossed yet, this closeness of calling each other by their first names. [Cute](https://imgur.com/a/G35WwyI). This doesn't mean as much to a western audience, since we naturally call each other by our first names, but it's a big step for them. Overdue, too, as they've been a couple for 10 months now, but both lacked enough self-esteem and courage to take that step. A lingering fear of pushing that relation further, in case they weren't good enough for the other. And it's not quite the marriage she joked about just before, but it's close. - -- On a side note, Senjougahara is now the second character to call him Koyomi. His sisters just call him their big brother, we never hear his mom say his name (I think), even he himself, when not saying his full name, tends to say he's Araragi. Or at least that's what he tells Hachikuji. So there's only Gaen, who knows everything and thus knows him too well, who acts way too close. - -- [Spoilers Owari](/s ""Pushing this even further, even Ougi, as himself, calls him Araragi-senpai"") - -- [Problems ringing at the door](https://imgur.com/a/8DegM7t) - -- [Interesting flashlight use](https://imgur.com/a/8b1Dd7k). Also, weirdly but not, they are in the dark, and Ougi is shining the light. - -- She's says she's not the Darkness, if you believe her. - -- And directly confronts him about his regrets, or lack of before the end. - -- And finally asks for his help. - -- [Spoilers Owari](/s ""Lot that can be said about Ougi here, in light of the next arc and being Araragi. About sacrificing yourself for something important, and learning to ask for help, while at the same time saving yourself"") - ---- - -The epilogue, or rather the punchline for this arc, is that a happy relationship will not prevent something eldritch from knocking at your door. Or something like that. - -###Relationship - -This is a story of ending, and this was an end for the relationship. Not of everything, but of the start. After this episode, they are no longer this new couple, full of hope and expectations. They solidified their bond and promised it would last forever. - -###Self-Esteem - -This arc was also about overcoming low self-esteem in many ways. Senjougahara found things she was good at to give herself courage, and to use the punishment to give an excuse for Araragi to do the same. Meanwhile, Araragi, which is often self-deprecating and thus depicted in a bad light in his own narration, who spent the last arc being told he wouldn't pass his exams, is shown being knowledgeable and winning in many disciplines, both athletic and artistic. - -###Ougi - -Ougi in this arc is more antagonistic than she's been before. Even up to the end while asking for help, that is a classic villain trope (Join me, Luke). Maybe. She invokes various semi-related concepts that are relevant to the story in some way, and will clearly be relevant in the near future. Justice, fixing mistakes, going against the natural order, monsters, heroes. - -All in all, this arc was about two things. Pure fluff to lighten the show before the end, and ominous foreshadowing that I can't mention that much but will become apparent soon. Tomorrow we start the last arc, Ougi Dark. There is another arc after that, but it's like an epilogue for the epilogue. Fortunately for us, NisiOisiN is amazing at writing epilogues where everything clicks together, both narratively and thematically.";False;False;;;;1610488947;;False;{};gj1pawf;False;t3_kw1u5z;False;False;t3_kw1u5z;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1pawf/;1610553444;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Voldigod;;;[];;;;text;t2_5ixoqavm;False;False;[];;"That time i got reincarnated as a slime - -Death March - -Shield hero";False;False;;;;1610488969;;False;{};gj1pckp;False;t3_kw1umq;False;True;t3_kw1umq;/r/anime/comments/kw1umq/i_need_some_help_to_find_anime_to_watch/gj1pckp/;1610553477;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nofachad;;;[];;;;text;t2_97oww2c8;False;False;[];;are you looking for an isekai anime with an op mc? if so theres a lot. One you might like thats similar to in another world with a smartphone called 'death march to the parallel world rhapsody'. If you want any others, search up isekai anime and you should have some.;False;False;;;;1610489010;;False;{};gj1pfnv;False;t3_kw1umq;False;True;t3_kw1umq;/r/anime/comments/kw1umq/i_need_some_help_to_find_anime_to_watch/gj1pfnv/;1610553541;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> will Araragi also be cursed for bringing back Hachikuji? - -well he did not create a new oddity. And it is his moral duty to save people from hell given the chance, so it should be fair game - -> Awww, they're calling each other by their first names - -it's like anime marriage!";False;False;;;;1610489032;;False;{};gj1phb1;True;t3_kw1u5z;False;False;t1_gj1p69z;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1phb1/;1610553576;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Nofachad;;;[];;;;text;t2_97oww2c8;False;False;[];;wait season two's starting??;False;False;;;;1610489070;;False;{};gj1pk5z;False;t3_kw1t7s;False;True;t3_kw1t7s;/r/anime/comments/kw1t7s/slime_season_2_english_dub/gj1pk5z/;1610553654;1;True;False;anime;t5_2qh22;;0;[]; -[];;;baniRien;;;[];;;;text;t2_wxbyg;False;False;[];;"###Edit Trivia Box - -Only minimally relevant, but [here's](https://www.youtube.com/watch?v=y4S-Sj0IRsU) a nice exploration of the Zodiac around the world, from a story perspective.";False;False;;;;1610489075;;False;{};gj1pki3;False;t3_kw1u5z;False;False;t1_gj1pawf;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1pki3/;1610553660;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Luukuton;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;Hatchless;light;text;t2_kjwpo;False;False;[];;"## REWATCHER - -### EPISODE - -Lots of metaphors in the beginning. - -Senjougahara had some [great faces](https://imgur.com/a/yxeraP0) during this episode. Also, [this](https://i.imgur.com/XU34Hos.png), love it. Overall liked that we got some more Araragi+Senjougahara action. Also, Senjougahara going such lengths to just get Araragi call her as Hitagi, 5/5. - -[Space suits](https://i.imgur.com/2hREMBr.png) - -I wonder what kind of curse Oshino and Kaiki have, if what Ougi's saying is true. - -The after credits scene [looks](https://i.imgur.com/eDulJ0a.png) and sounds great. Love the fact that it starts without any music, making the atmosphere serious. Then ""Teisei"" starts playing. It's a beautiful and kinda a sad song. [_""Please, help me.""_](https://i.imgur.com/Ao7OkPK.png) - -OST: - -- [Sou Iu Ikata](https://www.youtube.com/watch?v=ZwA0F1Xav08) / そういう生き方 / ""That kind of way to life"" - -- [Oihmesamadakko](https://www.youtube.com/watch?v=mf4_ndyXI5g) / お姫様だっこ / ""Princess Carry"" - -- [Teisei](https://www.youtube.com/watch?v=B4_LuzWmOWI) / 訂正 / ""Correction"" - -### COMMENTARY / SUPPLEMENT AUDIO - -**Guide on getting subtitles and the audio for commentaries [here on /r/araragi](https://np.reddit.com/r/araragi/comments/i2balw/monogatari_series_audio_commentaries_masterpost/)** - -Hosts: Ononoki Yotsugi and Oshino Shinobu (full power). - -Ononoki's saying that Senjougahara snatched the nice guy known as Araragi Koyomi, whom Kiss-Shot Acerola-Orion Heart-Under-Blade and Hanekawa Tsubasa worked hard to create. - -This was an interesting point they brought up: - -> Shinobu: _There was no way to become human again in the first place. That was what you said [during Tsukimonogatari], wasn't it?_ - -> Ononoki: _Well, I didn't expect there was such a thing as Gaen-san's secret trick back then. Even if I knew, I probably wouldn't have done that._ - -> Ononoki: _That meant releasing you from Devilish Big Brother's shadow. As a specialist specialized in immortal oddities, there's no way Oneechan would have turned a blind eye to that._ - -> Shinobu: **_So we can also say it was because Kagenui Yozuru was absent, that the boss lady of the specialists was able to use that secret trick._** - -> Ononoki: _This twists the perspective a little, but Gaen-san is someone who can make such considerations too. So for Devilish Big Brother, it was lucky that Oneechan went missing._ - -Apparently while living as Araragi's housemate, Ononoki's mission was to kill him when time came. Of course, bodyguarding was her mission too, and getting along with him was her duty. - -Ononoki's saying that Black Hanekawa traumatized Araragi so much that he even gets afraid of normal cats. - -> Ononoki: _It's hard to tell what happens ultimately. Maybe everyone dies in Ougi Dark._ - -> Shinobu: _Don't give such a shocking preview!_";False;False;;;;1610489097;;False;{};gj1pm5d;False;t3_kw1u5z;False;False;t3_kw1u5z;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1pm5d/;1610553695;14;True;False;anime;t5_2qh22;;0;[]; -[];;;affnn;;;[];;;;text;t2_2pk33t;False;False;[];;"**Rewatcher** - -What a brutal episode to watch. All of the foreshadowed plots - Toji being a pilot and something bad happening to him, Shinji not being told what's going on, the dummy plug being put to use despite Maya's and Ritsuko's reservations, Gendo's fundamental disregard for anyone other than himself - all come crashing together to cause a huge tragedy. The whole staff at Nerv gets a front row seat as an out of control Unit 01 snaps Unit 03's neck, pulls its limbs from its body, rips off its armor and splatters its guts across the city before crushing the entry plug in its hand. We get the same music as the bloody climax of Episode 16, the weird mix of triumphant and ominous. - -Everyone in the episode wants to withhold the identity of Unit 03's pilot from Shinji. Misato, Asuka, Toji himself, even Rei and Kaji all have opportunities to tell him but they decide against it. Misato's is probably the least excusable since it was her job. I hadn't noticed it before but there's a weird camera skew that happens when Shinji asks her about it before Kensuke shows up. Kaji's discussion with Shinji was strange because they had such a nice interaction on yesterday's episode, but today Kaji is answering relatively straightforward questions with deflections and weird platitudes. With the pilots its at least understandable that they'd want to avoid the drama. Would things have gone differently if Shinji had known? We've seen Shinji survive Unit 01 getting its skull bashed in during the first two episodes and Rei survive Unit 00's arm getting severed today, so we know pilots can survive some heavy trauma to the Evas without physical injury to themselves. Maybe if Shinji is in control he doesn't give the entry plug that final crush. No way to know for sure though. - -I liked the little slice-of-life bits before the battle. Asuka leaves for school early because she wants to avoid Shinji. Kensuke begs Misato for a chance to pilot even as we can see the warning flags flying. Toji uncharacteristically skips lunch, sending Hikari into a panic. Rei talks to Toji and contemplates what it means that she cares about Shinji. Asuka and Hikari have a bonding moment over Shinji and Toji being dense idiots. It all just serves to set up the tragedy of the second half of the episode even more, as what happened today will surely affect not just Shinji and Toji but everyone around them too.";False;False;;;;1610489127;;False;{};gj1poi8;False;t3_kw1ugh;False;False;t3_kw1ugh;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj1poi8/;1610553742;13;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;[Came out today.](https://old.reddit.com/r/anime/comments/kvtx4f/tensei_shitara_slime_datta_ken_season_2_episode_1/);False;False;;;;1610489170;;False;{};gj1prri;False;t3_kw1t7s;False;True;t1_gj1pk5z;/r/anime/comments/kw1t7s/slime_season_2_english_dub/gj1prri/;1610553811;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;Valid! Haha! You never know the backstories behind ratings;False;False;;;;1610489251;;False;{};gj1pxzn;False;t3_kw1dgy;False;True;t1_gj1okfz;/r/anime/comments/kw1dgy/recommendations_based_on_mal/gj1pxzn/;1610553933;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WhackaWhack;;;[];;;;text;t2_ngxv2;False;False;[];;"**FIRST TIMER** - -*Reactions during episode* - -NO bad Ougi, leave the date alone! - -Is a hydra going to crash the date in some way... - -NOOO bad Ougi again, no threatening to kill Kiss Shot! - -I don't like how Ougi is talking about a crab while Araragi is on a date with Senjougahara ""the crab""... - -Totally random idea but maybe Ougi is like the darkness but her ""mission"" is to permanently kill immortal beings? -Just based on what is talking about with the serpent bearer and how she did say she was like the darkness. - -It just feels more and more probable with how Araragi might not be a problem but he will by helping Shinobu and Tsukihi the immortals. - -Also you can say that immortality goes against entropy by just going back to what it was before without really ""paying for it"". - -I think it was a good idea by Araragi to ""forget"" about telling Senjougahara of Ougi instead of telling her that he dreamt of another girl that wasn't even Hanekawa. - -OK we have 8 minutes left of the episode, let I stay as a happy date for at least most of them, pretty please? - -Why do I have the feeling the Senjougahara only wants the ""absolute obedience"" to stop Araragi from doing whatever he is going to do in the upcoming fight. -(Update: So I was wrong but I'm not even mad about it) - -Sudden Eurobeat! - -I love how Senjougahara just takes any chance she sees to force Araragi into moving their relationship forward. -Like here by knowing he is without a white day gift so she drives him to a deserted place and ""demands"" something from Araragi knowing he will comply. - -NO don't begin the ED with more than 4 minutes left, I'm scared for what is going to happen. - -Don't do that, now I don't know if Ougi truly is the bad guy or just ended up halfway against Araragi knowing that he is a dangerous enemy. - -We still don't know what Ougi OR the specialist wants to happen and I do have the feeling that aberrations are needed in the world and spesialist are against aberrations maybe without knowing their full roll in the ""big picture"". -Maybe Gaen wants to remove all aberrations and that's why Meme (the Balance) have left to ""fight back"" as he is on balance side not human or aberration? - -*Questions* - -1. Not ominous here just talking about an immortal monster being killed but fire(/sun) with the help of a crab. I can't see ANY PARALLELS to anybody or anything in the story there! - -2. Multiple minutes of ""nothing"" happening just happiness and the kinda marriage confession from Hitagi with a ""I want to eat your miso soup everyday"" feeling. - -3. I loved it. I always like how Hitagi ""forces"" Araragi to go the next step in their relationship. - -4. Last two paragraphs from thought during episode, don't have anything more to add now.";False;False;;;;1610489362;;False;{};gj1q6l0;False;t3_kw1u5z;False;False;t3_kw1u5z;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1q6l0/;1610554104;27;True;False;anime;t5_2qh22;;0;[]; -[];;;GabiGmg;;;[];;;;text;t2_7zg6efh5;False;False;[];;I ment should i directly watch Dragon Ball Super;False;False;;;;1610489456;;False;{};gj1qdx6;True;t3_kw21xj;False;True;t3_kw21xj;/r/anime/comments/kw21xj/hey_can_i_directly_watch_dragon_ball_super/gj1qdx6/;1610554241;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;watch dragon ball, DBZ, then DB Super;False;False;;;;1610489476;;False;{};gj1qfje;False;t3_kw21xj;False;True;t3_kw21xj;/r/anime/comments/kw21xj/hey_can_i_directly_watch_dragon_ball_super/gj1qfje/;1610554273;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SYZekrom;;;[];;;;text;t2_i5y6z;False;False;[];;"**First Timer** - -Well Tori survived - -So that's nice";False;False;;;;1610489485;;False;{};gj1qg52;False;t3_kw1ugh;False;False;t3_kw1ugh;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj1qg52/;1610554284;9;True;False;anime;t5_2qh22;;0;[]; -[];;;ienjoyhemp;;;[];;;;text;t2_h875e;False;False;[];;"Isekai-wise, I’m gonna plug Vision of Escaflowne and Now and Then, Here and There. Two older isekai that don’t bother with explicit RPG-style elements. - -For those that DO include explicit RPG/metagame elements, .hack//Sign and Tensei Shitara Slime Datta Ken are good. Slime is more of a power fantasy than Sign. - -For straight dark fantasy without isekai, would rec Berserk and Claymore.";False;False;;;;1610489493;;False;{};gj1qgqz;False;t3_kw1umq;False;True;t3_kw1umq;/r/anime/comments/kw1umq/i_need_some_help_to_find_anime_to_watch/gj1qgqz/;1610554295;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SYZekrom;;;[];;;;text;t2_i5y6z;False;False;[];;"[omg](https://cdn.discordapp.com/attachments/621713361390010378/798624665017909328/unknown.png) - -[HEY! Don't think I don't hear that...](https://cdn.discordapp.com/attachments/621713361390010378/798625103294365716/unknown.png) - -Uh, Platinum Disco? - -Well, few other song references here - -[Mmm orange and purple](https://cdn.discordapp.com/attachments/621713361390010378/798626479227142144/unknown.png) - -Also why is Hitagi so cute as a character this episode omggggg";False;False;;;;1610489554;;False;{};gj1qle2;False;t3_kw1u5z;False;False;t3_kw1u5z;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1qle2/;1610554393;9;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> if I remember correctly in the short story where he cuts Hanekawa's hair. - -wasn't he just sitting there and listening to Hanekawa sing?";False;False;;;;1610489557;;False;{};gj1qlmu;True;t3_kw1u5z;False;False;t1_gj1pawf;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1qlmu/;1610554398;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ragnar4king;;;[];;;;text;t2_1tdy6v1;False;False;[];;"> bringing back Hachikuji? Or do ghosts not count? - -I'm guessing here, but I think that's it. He would only be cursed if she came back as a living human being.";False;False;;;;1610489572;;False;{};gj1qmr0;False;t3_kw1u5z;False;False;t1_gj1p69z;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1qmr0/;1610554420;4;True;False;anime;t5_2qh22;;0;[]; -[];;;GabiGmg;;;[];;;;text;t2_7zg6efh5;False;False;[];;yes, but the original one is ass and DBZ is too long, and I said that i dont really want a story I just want fights;False;False;;;;1610489630;;False;{};gj1qrad;True;t3_kw21xj;False;True;t1_gj1qfje;/r/anime/comments/kw21xj/hey_can_i_directly_watch_dragon_ball_super/gj1qrad/;1610554506;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;simping_for_02;;;[];;;;text;t2_9ryfb6fx;False;False;[];;If you want an anime where the MC grows strong over time like Black Clover watch “My Hero Academia”;False;False;;;;1610489640;;False;{};gj1qs7e;False;t3_kw1zab;False;False;t3_kw1zab;/r/anime/comments/kw1zab/anime_like_black_clover/gj1qs7e/;1610554526;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sisoko2;;;[];;;;text;t2_6f6px6b;False;False;[];;"**Rewatcher** - -So today's question about Japanese culture. Is it normal for couples who walk home gently to keep calling each other with last names? It seems so weird to me. - -Some [astrology](https://i.imgur.com/fjz8A20.png) with [Ougi](https://i.imgur.com/NOCEpy9.png). And also talking about doing the right thing. - -[Hitagi](https://i.imgur.com/0RLWncw.png) doesn't like to [lose](https://i.imgur.com/bfgHdkm.png). I am curious how does Chocolate Insomnia performed by Araragi sound. - -[Such](https://i.imgur.com/URnM5Rn.png) a beautiful and [heartwarming](https://i.imgur.com/wxnlRed.png) scene. - -And after the colorful and warm date comes the [cold](https://i.imgur.com/a2n0uij.png) [darkness](https://i.imgur.com/gVvQdHY.png) of Ougi. - -Really tragic [soundtrack](https://www.youtube.com/watch?v=B4_LuzWmOWI) during their encounter. - -[Are YOU going to help Ougi when the time comes?](https://i.imgur.com/4sQgIbX.png)";False;False;;;;1610489650;;False;{};gj1qsy5;False;t3_kw1u5z;False;False;t3_kw1u5z;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1qsy5/;1610554541;4;True;False;anime;t5_2qh22;;0;[]; -[];;;playindaily678;;;[];;;;text;t2_6yjhn217;False;False;[];;Me to man dw. Anime characters to fine;False;False;;;;1610489778;;False;{};gj1r2v2;False;t3_kw23sw;False;True;t3_kw23sw;/r/anime/comments/kw23sw/is_it_normal_to_cry_because_an_anime_character/gj1r2v2/;1610554743;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kiritobaybee;;;[];;;;text;t2_60k0wgi3;False;False;[];;"yea, not like the story actually matters in DB anyways. nobody actually dies and goku & the z fighters will always win no matter who they fight so might as well jump right into it.";False;False;;;;1610489804;;False;{};gj1r4u7;False;t3_kw21xj;False;True;t3_kw21xj;/r/anime/comments/kw21xj/hey_can_i_directly_watch_dragon_ball_super/gj1r4u7/;1610554795;0;True;False;anime;t5_2qh22;;0;[]; -[];;;baniRien;;;[];;;;text;t2_wxbyg;False;False;[];;"> I love how Senjougahara just takes any chance she sees to force Araragi into moving their relationship forward. - -It is indeed a nice dynamic, but remember that he doesn't exactly have a choice. Senjougahara has past issues of many kinds, so taking it slow and letting her decide when to move forward is the safest choice. Of course, he might've been too slow in some points, and you can probably safely assume it's ok to call your girlfriend by her first name when you've slept together. Also, you can notice multiple moments earlier where she does try to push him towards the first name thing, going as far back as the car sequence with her dad.";False;False;;;;1610489811;;False;{};gj1r5dc;False;t3_kw1u5z;False;False;t1_gj1q6l0;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1r5dc/;1610554805;16;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> So I was wrong but I'm not even mad about it - -good hunch though nonetheless - -> I loved it. I always like how Hitagi ""forces"" Araragi to go the next step in their relationship. - -he really is very passive, on the other hand he also seems rather devotes maybe just because it is the easiest and ""right"" thing to do but it workd for them";False;False;;;;1610489832;;False;{};gj1r6yf;True;t3_kw1u5z;False;False;t1_gj1q6l0;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1r6yf/;1610554839;9;True;False;anime;t5_2qh22;;0;[]; -[];;;baniRien;;;[];;;;text;t2_wxbyg;False;False;[];;Maybe, it's been a while. At least that would be a good tutor.;False;False;;;;1610489850;;False;{};gj1r8af;False;t3_kw1u5z;False;False;t1_gj1qlmu;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1r8af/;1610554868;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;then just go to youtube for the fights, if that's all you want to see;False;False;;;;1610489864;;False;{};gj1r9cs;False;t3_kw21xj;False;False;t1_gj1qrad;/r/anime/comments/kw21xj/hey_can_i_directly_watch_dragon_ball_super/gj1r9cs/;1610554890;4;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;"I'm giving some recs based on your fav Steins;Gate: - -Higurashi (best of the best in psychological thriller) - -Katekyo Hitman Reborn (more fun shounen, but deals with time travel) - -Kaiji (smart smart thriller. Like death note in card games) - -Punch Line (Steins;Gate with panties. The first 3 episodes are fanservice. The rest of it is insane and amazing) - -Monster (gritty gritty mystery about a doctor's guilt)";False;False;;;;1610489912;;False;{};gj1rcyq;False;t3_kw1dgy;False;True;t3_kw1dgy;/r/anime/comments/kw1dgy/recommendations_based_on_mal/gj1rcyq/;1610554977;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Denpants;;;[];;;;text;t2_ry9v0w1;False;False;[];;When I found out Japanese dub Spongebob wasn't real, I uncontrollably sobbed for 18 hours straight;False;False;;;;1610489953;;False;{};gj1rg08;False;t3_kw23sw;False;False;t3_kw23sw;/r/anime/comments/kw23sw/is_it_normal_to_cry_because_an_anime_character/gj1rg08/;1610555042;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Azrub580;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FpsArena;light;text;t2_661t4twj;False;False;[];;"If you are looking for anime like Black Clover, literally any show listed as shounen + action on mal will make the job. - -It would be useful to know which anime you've already seen, but I'll recommend you the usual Hunter x Hunter 2011, Yu Yu Hakusho, Naruto, Nanatsu no Tazai, Bleach, Fairy Tail, Kimetsu no Yaiba, Boku no Hero Academia and so on... - -These anime use pretty much all the same formula, some of them are great, some good, some average, some bad.";False;False;;;;1610489954;;False;{};gj1rg46;False;t3_kw1zab;False;True;t3_kw1zab;/r/anime/comments/kw1zab/anime_like_black_clover/gj1rg46/;1610555045;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WhackaWhack;;;[];;;;text;t2_ngxv2;False;False;[];;"Yeah that's a better way to look at it. - -She doesn't ""force"" Araragi to move but is to afraid about moving forward herself so she ""asks"" Araragi to do it first when she is ready for the next step.";False;False;;;;1610489995;;False;{};gj1rjap;False;t3_kw1u5z;False;False;t1_gj1r5dc;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1rjap/;1610555116;10;True;False;anime;t5_2qh22;;0;[]; -[];;;ragnar4king;;;[];;;;text;t2_1tdy6v1;False;False;[];;"> he has previous karaoke experience, if I remember correctly in the short story where he cuts Hanekawa's hair. - -Yes, although he never got around to singing, and just watched Hanekawa score 100 on every song lol";False;False;;;;1610489996;;False;{};gj1rjd6;False;t3_kw1u5z;False;False;t1_gj1pawf;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1rjd6/;1610555117;8;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi wadomot, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610489998;moderator;False;{};gj1rjii;False;t3_kw2939;False;True;t3_kw2939;/r/anime/comments/kw2939/psychedelic_manga_recommendations_pls/gj1rjii/;1610555120;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AcidEfflux;;;[];;;;text;t2_101qeg;False;False;[];;Closest I can get you is Denpa teki na Kanojo. 2 episodes long. Enjoy.;False;False;;;;1610490033;;False;{};gj1rm5m;False;t3_kw1i7j;False;True;t3_kw1i7j;/r/anime/comments/kw1i7j/does_an_anime_like_this_exist/gj1rm5m/;1610555176;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;Very few shows air the dub and sub at the same time. Slime isn't airing then at the same time;False;False;;;;1610490074;;1610490380.0;{};gj1rpfo;False;t3_kw1t7s;False;True;t1_gj1p5c3;/r/anime/comments/kw1t7s/slime_season_2_english_dub/gj1rpfo/;1610555240;1;True;False;anime;t5_2qh22;;0;[]; -[];;;baniRien;;;[];;;;text;t2_wxbyg;False;False;[];;"> So today's question about Japanese culture. Is it normal for couples who walk home gently to keep calling each other with last names? It seems so weird to me. - -Technically you can, especially out in public, but Araragi definitely has been slow on things. For reasons, the quality of which is debatable, but reasons nonetheless. - ->I am curious how does Chocolate Insomnia performed by Araragi sound. - -Honestly, I'm not convinced it's in his vocal range. In fact I don't think I've ever heard Kamiya Hiroshi sing, maybe he's just not great at it.";False;False;;;;1610490088;;False;{};gj1rqee;False;t3_kw1u5z;False;False;t1_gj1qsy5;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1rqee/;1610555262;7;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your submission has been removed. - -- You might consider posting this to - /r/Manga - instead. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610490128;moderator;False;{};gj1rtbe;False;t3_kw2939;False;True;t3_kw2939;/r/anime/comments/kw2939/psychedelic_manga_recommendations_pls/gj1rtbe/;1610555317;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> I wonder what kind of curse Oshino and Kaiki have, if what Ougi's saying is true. - -well for Kaiki it's pretty much confirmed that anything he really cares about/gets personally invested in is destined to fail or make things worse in the end. Gaen and Ononoki talk about it and especially the latter has that talk with Kaiki - -> Oihmesamadakko / お姫様だっこ / ""Princess Carry"" - -this one probably could fit into Drive - -> Apparently while living as Araragi's housemate, Ononoki's mission was to kill him when time came. Of course, bodyguarding was her mission too, and getting along with him was her duty. - -""The only one that will kill you is me""";False;False;;;;1610490220;;False;{};gj1s0fw;True;t3_kw1u5z;False;False;t1_gj1pm5d;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1s0fw/;1610555457;7;True;False;anime;t5_2qh22;;0;[]; -[];;;VandaGrey;;;[];;;;text;t2_lzm4a;False;False;[];;this scene was so funny, hopefully ep 2 is just as good.;False;False;;;;1610490238;;False;{};gj1s1rz;False;t3_kw26p3;False;True;t3_kw26p3;/r/anime/comments/kw26p3/how_to_properly_help_a_girl_with_a_stiff_back_ore/gj1s1rz/;1610555482;9;True;False;anime;t5_2qh22;;0;[]; -[];;;baniRien;;;[];;;;text;t2_wxbyg;False;False;[];;"> If people are cursed for raising the dead, then will Araragi also be cursed for bringing back Hachikuji? Or do ghosts not count? - -I think Yumewatari prevents that, when raising oddities, which Hachikuji is. That it could resurrect Araragi took a lot of fringe cases and gaming the system. So Gaen might face consequences, but I don't think Araragi will.";False;False;;;;1610490253;;False;{};gj1s2yn;False;t3_kw1u5z;False;False;t1_gj1p69z;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1s2yn/;1610555505;5;True;False;anime;t5_2qh22;;0;[]; -[];;;blackmagemasta;;MAL;[];;https://myanimelist.net/profile/blackmagemasta;dark;text;t2_aceb1;False;False;[];;No;False;False;;;;1610490256;;False;{};gj1s37h;False;t3_kw23sw;False;False;t3_kw23sw;/r/anime/comments/kw23sw/is_it_normal_to_cry_because_an_anime_character/gj1s37h/;1610555508;6;True;False;anime;t5_2qh22;;0;[]; -[];;;nikivera;;;[];;;;text;t2_5bj80vjh;False;False;[];;"I assume you meant the original Higurashi? -I'm looking forward to watching your recommendations.";False;False;;;;1610490286;;False;{};gj1s5hb;True;t3_kw1dgy;False;True;t1_gj1rcyq;/r/anime/comments/kw1dgy/recommendations_based_on_mal/gj1s5hb/;1610555552;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_Zig;;;[];;;;text;t2_r3byl;False;False;[];;/r/Waifuism;False;False;;;;1610490316;;False;{};gj1s7rx;False;t3_kw23sw;False;True;t3_kw23sw;/r/anime/comments/kw23sw/is_it_normal_to_cry_because_an_anime_character/gj1s7rx/;1610555596;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Luukuton;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;Hatchless;light;text;t2_kjwpo;False;False;[];;"> well for Kaiki it's pretty much confirmed that anything he really cares about/gets personally invested in is destined to fail or make things worse in the end. - -Yeah, true that. Meme's probably has to do something with keeping the balance, I'm guessing.";False;False;;;;1610490327;;False;{};gj1s8ml;False;t3_kw1u5z;False;False;t1_gj1s0fw;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1s8ml/;1610555612;5;True;False;anime;t5_2qh22;;0;[]; -[];;;TacoBellIsChipotle;;;[];;;;text;t2_7l9egrg6;False;False;[];;Are you a 6? I remember my young cousin crying when she learned that the tooth fairy wasn't real.;False;False;;;;1610490343;;False;{};gj1s9sz;False;t3_kw23sw;False;False;t3_kw23sw;/r/anime/comments/kw23sw/is_it_normal_to_cry_because_an_anime_character/gj1s9sz/;1610555635;7;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;OG 2006 Higurashi. Enjoy!;False;False;;;;1610490346;;False;{};gj1sa04;False;t3_kw1dgy;False;True;t1_gj1s5hb;/r/anime/comments/kw1dgy/recommendations_based_on_mal/gj1sa04/;1610555638;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> In fact I don't think I've ever heard Kamiya Hiroshi sing, maybe he's just not great at it. - -https://www.youtube.com/watch?v=FDICxi0aZGI - -https://www.youtube.com/watch?v=yAfwH_EWo3Y - -Biographies call him a seiyuu and singer";False;False;;;;1610490399;;False;{};gj1se39;True;t3_kw1u5z;False;False;t1_gj1rqee;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1se39/;1610555714;8;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"I went back to digging through Funi's blog post and realized that they were calling the second cour of season1 as ""season 2"", and that's what got me messed up, thanks for responding, I'll delete my comment as it's not relevant now.";False;False;;;;1610490421;;False;{};gj1sfsy;False;t3_kw1t7s;False;True;t1_gj1rpfo;/r/anime/comments/kw1t7s/slime_season_2_english_dub/gj1sfsy/;1610555745;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Iilly27144;;;[];;;;text;t2_7q027i3z;False;False;[];;Im not six im just emotional;False;False;;;;1610490425;;False;{};gj1sg4x;False;t3_kw23sw;False;True;t1_gj1s9sz;/r/anime/comments/kw23sw/is_it_normal_to_cry_because_an_anime_character/gj1sg4x/;1610555751;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;H-Ryougi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DizzyAvocado/animelist;light;text;t2_pr24s;False;False;[];;bruh;False;False;;;;1610490453;;False;{};gj1si84;False;t3_kw2d9l;False;True;t3_kw2d9l;/r/anime/comments/kw2d9l/help_me_if_im_wrong/gj1si84/;1610555792;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"Funi's simuldubs are normally a couple weeks behind the subbed version, but the pandemic conditions have led to delays and it means that dubs are slower and may have a new episode every week. As far as I know, a premiere date for that dub hasn't been announced yet. - -Whenever a new dubbed episode of any show they're dubbing is incoming, they announce it on [this blog post on their website](https://www.funimation.com/blog/2020/04/25/dub-from-home-the-latest-news-on-simuldubs-my-hero-academia-black-clover/), so you can check that page every couple of days to stay updated.";False;False;;;;1610490479;;False;{};gj1skaw;False;t3_kw1t7s;False;True;t3_kw1t7s;/r/anime/comments/kw1t7s/slime_season_2_english_dub/gj1skaw/;1610555836;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TacoBellIsChipotle;;;[];;;;text;t2_7l9egrg6;False;False;[];;"What does it mean to ""directly"" watch an anime? Like you're looking at it straight on and not indirectly out of your peripheral vision?";False;False;;;;1610490483;;False;{};gj1sklq;False;t3_kw21xj;False;True;t3_kw21xj;/r/anime/comments/kw21xj/hey_can_i_directly_watch_dragon_ball_super/gj1sklq/;1610555842;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TacoBellIsChipotle;;;[];;;;text;t2_7l9egrg6;False;False;[];;Are you emotionally 6?;False;False;;;;1610490508;;False;{};gj1smh7;False;t3_kw23sw;False;False;t1_gj1sg4x;/r/anime/comments/kw23sw/is_it_normal_to_cry_because_an_anime_character/gj1smh7/;1610555876;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610490522;;False;{};gj1snle;False;t3_kw2d9l;False;True;t3_kw2d9l;/r/anime/comments/kw2d9l/help_me_if_im_wrong/gj1snle/;1610555896;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DaFastManFlash;;;[];;;;text;t2_6mfcaivj;False;False;[];;Dubbed...;False;False;;;;1610490528;;False;{};gj1so24;False;t3_kw2d9l;False;False;t3_kw2d9l;/r/anime/comments/kw2d9l/help_me_if_im_wrong/gj1so24/;1610555905;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Iilly27144;;;[];;;;text;t2_7q027i3z;False;False;[];;Ohh right yeah probably I cry about things that barely matter;False;False;;;;1610490533;;False;{};gj1soft;False;t3_kw23sw;False;True;t1_gj1smh7;/r/anime/comments/kw23sw/is_it_normal_to_cry_because_an_anime_character/gj1soft/;1610555911;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;baniRien;;;[];;;;text;t2_wxbyg;False;False;[];;"> well for Kaiki it's pretty much confirmed that anything he really cares about/gets personally invested in is destined to fail or make things worse in the end. Gaen and Ononoki talk about it and especially the latter has that talk with Kaiki - -I think one the the more interesting question is what part were they responsible for and how that links to the curse. I think they mention Kagenui and Tadatsuru's curse being because they were each responsible for a leg, thus a leg curse. Gaen did the head, thus the knowledge. Kaiki could be an arm, given that it's things he ""touch"". And so either Oshino is left with the other arm, and so an arm-related curse, or the torso. A heart-related curse, preventing him to truly care about anything and the reason for his balance mentality? Might be too similar to Kaiki, or a good mirror, depending. One wants to care but is punished, the other is unable. Pure speculation";False;False;;;;1610490561;;1610526646.0;{};gj1sqjd;False;t3_kw1u5z;False;False;t1_gj1s0fw;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1sqjd/;1610555950;7;True;False;anime;t5_2qh22;;0;[]; -[];;;OldFartMaster10K;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_1rp2hdu9;False;False;[];;Wait, it's getting more on Netflix? Huh. If I remember correctly, after Greed Island is Chimera Ant which is the last arc in the anime. If you don't want to wait to watch it, use some other service like VRV or Crunchyroll;False;False;;;;1610490576;;1610497611.0;{};gj1srpg;False;t3_kw2d9l;False;True;t3_kw2d9l;/r/anime/comments/kw2d9l/help_me_if_im_wrong/gj1srpg/;1610555972;1;True;False;anime;t5_2qh22;;0;[]; -[];;;2KE1;;;[];;;;text;t2_14re6r;False;False;[];;wth does this mean;False;False;;;;1610490591;;False;{};gj1ssuj;False;t3_kw2fif;False;True;t3_kw2fif;/r/anime/comments/kw2fif/i_wanna_make_a_weeb_gc_on_insta_anyone_interested/gj1ssuj/;1610555993;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Becher_MC;;;[];;;;text;t2_y5nb2;False;False;[];;OH! Thanks a lot!;False;False;;;;1610490636;;False;{};gj1sw7e;True;t3_kw1i7j;False;True;t1_gj1rm5m;/r/anime/comments/kw1i7j/does_an_anime_like_this_exist/gj1sw7e/;1610556055;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> So today's question about Japanese culture. Is it normal for couples who walk home gently to keep calling each other with last names? It seems so weird to me. - -In public moreso than in private, not signalling an improper unmarried relationship or offending others with closeness although this is also getting less and less. In private it would be much less common at least ad far as I can tell from my friend who studied in Japan and has a Japanese speaking Chinese gf - -> Are YOU going to help Ougi when the time comes? - -depends if she can count as a little girl that he prioritizes";False;False;;;;1610490649;;False;{};gj1sx61;True;t3_kw1u5z;False;False;t1_gj1qsy5;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1sx61/;1610556074;8;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;If you think about it so often that it impacts your daily life, then I suggest looking into some therapy (this is a serious recommendation, therapy can be a huge help for a host of issues).;False;False;;;;1610490702;;False;{};gj1t14v;False;t3_kw23sw;False;False;t3_kw23sw;/r/anime/comments/kw23sw/is_it_normal_to_cry_because_an_anime_character/gj1t14v/;1610556151;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Iilly27144;;;[];;;;text;t2_7q027i3z;False;False;[];;Thanks it doesn’t effect my daily life that much only really when im just not doing anything;False;False;;;;1610490757;;False;{};gj1t56h;False;t3_kw23sw;False;True;t1_gj1t14v;/r/anime/comments/kw23sw/is_it_normal_to_cry_because_an_anime_character/gj1t56h/;1610556236;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ricmord;;;[];;;;text;t2_ro02t;False;False;[];;">Also why is Hitagi so cute as a character this episode omggggg - -Always has been";False;False;;;;1610490762;;False;{};gj1t5h4;False;t3_kw1u5z;False;False;t1_gj1qle2;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1t5h4/;1610556242;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Luukuton;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;Hatchless;light;text;t2_kjwpo;False;False;[];;Interesting, even if it's just speculation.;False;False;;;;1610490782;;False;{};gj1t71r;False;t3_kw1u5z;False;False;t1_gj1sqjd;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1t71r/;1610556271;4;True;False;anime;t5_2qh22;;0;[]; -[];;;baniRien;;;[];;;;text;t2_wxbyg;False;False;[];;"The more you know. I had indeed never heard any of these. Do have to finish Zetsubou Sensei at some point. - -I do still think Chocolate Insomnia is possibly too high for him.";False;False;;;;1610490810;;False;{};gj1t95w;False;t3_kw1u5z;False;False;t1_gj1se39;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1t95w/;1610556311;5;True;False;anime;t5_2qh22;;0;[]; -[];;;WebWarrior420;;;[];;;;text;t2_xbhhx;False;False;[];;"**FIRST TIMER** - -Man. This episode got dark. - -Toji goes to pilot the EVA, which goes wrong. The EVA takes on a mind of its own and becomes an angel. What exactly is the designation between EVA and angel anyways? - -Gendo takes charge and demonstrates once again how big of an asshole he is. Serious question, does anyone like him? Is he a good character at all? At this point it’ll take a lot to redeem him. - -You’re telling me the EVAs had their own remote control feature all this time? Why use the pilots at all then? Shinji knew there was somebody in the EVA. Another teenager like him. And he refused to fight. And his father basically used his body to beat that guy down. That was F-ed up on so many levels. Also, incredibly bloody. And relentless. It wasn’t just Shinji, everyone at NERV was shocked. Only Gendo was the one person smiling. He really does only have his eyes on the prize. Whatever that may be. - -Shinji’s cries of anguish and despair were haunting. And learning he just beat up his friend? That broke him for sure. - -Hikari had a number of small moments. All of them are way more depressing given the events happening and the implications. If Toji is alive, I’m guessing he’s in some kind of coma or something? Almost like his sister. - -Also a brief scene between Shinji and Kaji. Kaji delivering more helpful truth bombs about life. Poor Shinji thought he understood his father. Turns out he doesn’t really know him at all. - -Damn man. - -All I can think of are those last couple of minutes. That’s gonna stay for a while. - -This is one fucked up and depressing world. - - *Who is your favorite side character in the series so far? (A character that isn't Shinji, Rei, Asuka or Misato)* - -Kaji. 100%. He's a lot of fun and can get serious when he wants to be";False;False;;;;1610490823;;False;{};gj1ta4u;False;t3_kw1ugh;False;False;t3_kw1ugh;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj1ta4u/;1610556330;25;True;False;anime;t5_2qh22;;0;[]; -[];;;GMorelli;;;[];;;;text;t2_13n5gj;False;False;[];;"> Also, why dubbed? - -Maybe because they like it?";False;False;;;;1610490879;;False;{};gj1te77;False;t3_kw2d9l;False;True;t1_gj1srpg;/r/anime/comments/kw2d9l/help_me_if_im_wrong/gj1te77/;1610556405;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tehsigzorz;;;[];;;;text;t2_gwxqygy;False;False;[];;"**First Timer** - -&#x200B; - -Best way to start a date centric episode is to obviously have the main antagonist be a great wingman to our protagonist. - -&#x200B; - -The constellations looked great but I would be lying if I claimed I understood the implication behind it all. Similar feeling to the only other convo of ougi I couldn’t understand which was about the shrine. - -So every specialist faced repercussions. Kagenui and tadatsuru aren’t able to touch the ground. Something happened to oshino that made him leave the city (maybe a time limit on how often he can see the same aberration?). As for kaiki I am not sure, probably a shitty dating life lol. - -Ougi seems more afraid of tsukihi than karen for some reason. Maybe not fear but she might think tsukihi is easier to manipulate in the future so might as well stay on her good side. - -That entire date was awesome, soo many great frames. Also someone give senjougahara the Oscar, she deserves it. Shes spent soo much time with araragi that she has even inherited the araragi family nostril. - -‘When I went for my entrance exam I was killed by a clairvoyant mommy using a sword crafted by the armor of the first servant of a legendary vampire. I then met my old loli friend in hell and later met a puppet master who tried to kill me. I was then resurrected along with my loli and now my other loli servant is a MILF and together all of us will launch a counter attack on a first year student that is getting on our nerves. Just another day for me’ - -Inject this fluff into my veins. Almost made me forget about the looming doom that awaits us. - -‘Absolute obedience for the rest of my life’ woof woof - -&#x200B; - -And we end of this cute episode with some poundtown, adorable…oh wait theres an extra credit scene. - -I thought I had the ougi mostly in the bag but it seems like the closer we get the more I am confused, hows that even possible. At first I was sure she was like physical manifestation of araragi's mental after hachikuji but with all this universe talk I dont even know anymore. - -'I am not the darkness' Ah shit shes taunting me. I knew that it was a possibility when she mentioned red herring in sudachi arc but I was still pretty confident that the darkness was the origin story in addition to araragi. - -She has a major regret left and asks araragi for help even if it puts shinobu and hachikuji in danger. Her goal at first was def to turn araragi into a vampire but that was only part of the plan. We are still in the dark about her true nature and Gaen hasnt helped us with that aspect. - -There is soo much talk about universe so is she like the literal manifestation of it? That would make her god pretty much. Kinda reasonable to have a 1v10 then lol. We could also go super meta and say that the unreliable narration of araragi caused a rift and created her but thats pretty far fetched. At this point I am just throwing ideas and hoping one lands lol. - -&#x200B; - -Her main goal is probably to eradicate all aberrations and to completely destroy the supernatural world. Thats probably why she didnt want to kill araragi when he was a half vampire since he still had human in him. Now that araragi she has no animosity against him. But then again she did say that he likely had no future so thats not entirely true. Ougi is an ultra racist towards aberrations cuz she hates herself soo much. Similar to how episode views himself as well as araragi. This doesnt explain her regret though. - -She asked for araragis help and I quite liked the various stop signs and detours on the road showing that he definitely shouldnt help her and should stop to think about it. We have a 3 episode arc now where we will likely get all the answers but that leads me to questioning the purpose of the final instalment. At first I thought it would be about him turning into a full human but since thats already happened it probably has to do with ougi in some way. I am predicting these 3 arcs to be the final battle and her motivations. Every villain has some decent reasoning and I am sure araragi will have some sort of understanding so I can see the final arc be about him fulfilling her goal or regret in a better way. - -&#x200B; - -Questions: - -1. I am a little fearful cuz that kinda implies senjougahara will be part of the final conflict, oh god pls keep her far away from this. - -2. Pundtown obv. Great scene of them holding hands and just enjoying each other's company. Them being on a first name basis is the cherry on top. - -3. Every romcom needs someone to make the move cuz the dense protagonist sure wont. Awesome to see her take the reins while also making araragi to be the one to initiate in a sense. - -4. Oh boy not the rabbit hole again lol. For weeks I have gone with ougi being araragis creation after hachikuji but now there is soo much talk about her being a subset of the universe. So much talk about infinity and time also contributes to the latter and if her goal is to truly wipe out aberrations than thats probably the natural response of the universe to deal with this issue. Ougi has also broken the 4th wall many times. The only one I can remember to do it that often is hachikuji but you can amount that to her being lost and not realizing shes a character in an anime lol. - -I think I am forced to go with ougi being part of araragi despite me being more confident about the latter solely cuz thats the theory I have been on since the start. Her goal is to wipe out aberrations cuz thats what she is and he inherited the araragi's suicidal tendencies without the self sacrificing nature. Her regret is the way she handled araragi and possibly not dealing with kaiki sooner as that wouldve made araragi a vampire. - -&#x200B; - -I have submitted my answers and unlike senjougahara I am happy with a passing grade.";False;False;;;;1610490900;;False;{};gj1tfsl;False;t3_kw1u5z;False;False;t3_kw1u5z;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1tfsl/;1610556439;16;True;False;anime;t5_2qh22;;0;[]; -[];;;ULTRA_Weeb_;;;[];;;;text;t2_7q1yfegs;False;False;[];;no;False;False;;;;1610490931;;False;{};gj1ti35;False;t3_kw23sw;False;True;t3_kw23sw;/r/anime/comments/kw23sw/is_it_normal_to_cry_because_an_anime_character/gj1ti35/;1610556498;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Yeah listening to the 2nd compilation, it seems out of rage for him. But at east we see that he has range as far as the the voice acting is concerned;False;False;;;;1610490943;;False;{};gj1tj0t;True;t3_kw1u5z;False;False;t1_gj1t95w;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1tj0t/;1610556515;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TacoBellIsChipotle;;;[];;;;text;t2_7l9egrg6;False;False;[];;This is a totally crazy guess, but it's theoretically possible that OP likes the dub. Crazy, I know. But it just might be possible.;False;False;;;;1610490946;;False;{};gj1tj90;False;t3_kw2d9l;False;False;t1_gj1srpg;/r/anime/comments/kw2d9l/help_me_if_im_wrong/gj1tj90/;1610556518;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610490954;moderator;False;{};gj1tjvt;False;t3_kw2kk4;False;True;t3_kw2kk4;/r/anime/comments/kw2kk4/i_need_help_to_find_a_music_linked_to_an_anime/gj1tjvt/;1610556529;1;False;False;anime;t5_2qh22;;0;[]; -[];;;WebWarrior420;;;[];;;;text;t2_xbhhx;False;False;[];;They did a very good job foreshadowing and building things up. Especially with the slice-of-life bits. It only served to make the finale even more devestating.;False;False;;;;1610490995;;False;{};gj1tmts;False;t3_kw1ugh;False;True;t1_gj1poi8;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj1tmts/;1610556588;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;This links to a snippet of [Kamiya Hiroshi singing for Disney](https://youtu.be/yAfwH_EWo3Y?t=223), maybe the Japanese dub for that one is worth a shot;False;False;;;;1610491050;;False;{};gj1tqt8;True;t3_kw1u5z;False;False;t1_gj1pki3;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1tqt8/;1610556666;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Addy1025, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610491070;moderator;False;{};gj1ts8p;False;t3_kw2lva;False;True;t3_kw2lva;/r/anime/comments/kw2lva/any_good_mystery_anime_recommendations/gj1ts8p/;1610556695;1;False;False;anime;t5_2qh22;;0;[]; -[];;;MrRandomness2;;;[];;;;text;t2_10tjjr;False;False;[];;"Steins;Gate ?";False;False;;;;1610491124;;False;{};gj1tw70;False;t3_kw2kk4;False;True;t3_kw2kk4;/r/anime/comments/kw2kk4/i_need_help_to_find_a_music_linked_to_an_anime/gj1tw70/;1610556775;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheAnimeSyndicate;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;I Post Completed Anime;dark;text;t2_43nqhnqw;False;False;[];;r/CompletedMysteryAnime that’s apart of the [completed anime list by genres](https://www.reddit.com/user/theanimesyndicate/m/completedanimecollection_can/) that I update monthly on reddit. Give it a skim if you’re interested;False;False;;;;1610491215;;False;{};gj1u2w5;False;t3_kw2lva;False;True;t3_kw2lva;/r/anime/comments/kw2lva/any_good_mystery_anime_recommendations/gj1u2w5/;1610556918;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi dizz991, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610491365;moderator;False;{};gj1ue17;False;t3_kw2pg9;False;True;t3_kw2pg9;/r/anime/comments/kw2pg9/100_finished_anime_you_recommend/gj1ue17/;1610557127;1;False;False;anime;t5_2qh22;;0;[]; -[];;;skarnermain4lyfe;;;[];;;;text;t2_h79wp;False;False;[];;"Just a list of shounen off the top of my head you might enjoy: - -Hunter x Hunter -Yu Yu Hakusho -My Hero Academia -Naruto -Demon Slayer";False;False;;;;1610491408;;False;{};gj1uh29;False;t3_kw1zab;False;True;t3_kw1zab;/r/anime/comments/kw1zab/anime_like_black_clover/gj1uh29/;1610557186;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nakorurukami;;;[];;;;text;t2_4t03x4n9;False;False;[];;Interspecies Reviewers;False;False;;;;1610491476;;False;{};gj1um51;False;t3_kw2pg9;False;True;t3_kw2pg9;/r/anime/comments/kw2pg9/100_finished_anime_you_recommend/gj1um51/;1610557288;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;"honestly I doubt it but I haven't seen any word of that happening so far (I did a quick google search and saw some scam-looking clickbait sites saying February or March but idk if there's anything to that.) ""Season 5,"" or everything that isn't currently on Netflix, is about as many episodes as what Netflix has available right now. AFAIK pretty much your only options for that are to either watch the rest in sub (Crunchyroll, VRV) or else stream it through unofficial sites/pirate it (or purchase it ofc.)";False;False;;;;1610491515;;False;{};gj1uozp;False;t3_kw2d9l;False;True;t3_kw2d9l;/r/anime/comments/kw2d9l/help_me_if_im_wrong/gj1uozp/;1610557342;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sisoko2;;;[];;;;text;t2_6f6px6b;False;False;[];;That Prison School [OP](https://www.youtube.com/watch?v=O-UWCu7v-3I) is so ridiculously awesome.;False;False;;;;1610491532;;False;{};gj1uq8i;False;t3_kw1u5z;False;False;t1_gj1se39;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1uq8i/;1610557365;4;True;False;anime;t5_2qh22;;0;[]; -[];;;dizz991;;;[];;;;text;t2_11upzg;False;False;[];;Is that 100% finished?;False;False;;;;1610491584;;False;{};gj1uu5t;True;t3_kw2pg9;False;True;t1_gj1um51;/r/anime/comments/kw2pg9/100_finished_anime_you_recommend/gj1uu5t/;1610557440;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> And so either Oshino is left with the other arm, and so an arm-related curse, or the torso. A heart-related curse, preventing him to truly care about anything and the reason for his balance mentality? Might be too similar to Kaiki, or a good mirror, depending. One wants to care but is punished, the other is unable. Pure speculation - -For Oshino I always think about when he tells Kanbaru that ""stories about arms are not pretty, especially for the left one"". Which is the dirty hand in many Asian cultures but also the heart hand, so it could work for Kaiki on several levels. Or it is because it is about him. He only has one fingerless glove on the right and usually leaves one arm hanging. - -Left arm about ""matters of the heart"", right arm connected to ""doing the right thing""?";False;False;;;;1610491594;;False;{};gj1uuuw;True;t3_kw1u5z;False;False;t1_gj1sqjd;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1uuuw/;1610557454;6;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;I'm just gonna wait until it comes out on Blu-Ray, cause I REALLY liked season 1.;False;False;;;;1610491644;;False;{};gj1uyjx;False;t3_kw1t7s;False;False;t3_kw1t7s;/r/anime/comments/kw1t7s/slime_season_2_english_dub/gj1uyjx/;1610557522;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fucuasshole2;;;[];;;;text;t2_1zc0i1qx;False;False;[];;The remote system was just, like finished last episode with bugs still, finished. That’s what many of the tests have been for.;False;False;;;;1610491646;;False;{};gj1uyqw;False;t3_kw1ugh;False;False;t1_gj1ta4u;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj1uyqw/;1610557526;11;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;"**First Timer** - -Looks like Ougi will be giving the narration on the Planetarium, tho she talked more about astrology than astronomy. And if I cought this correctly there was some implication as of now unknown forces moving against Gahara? Please leave the main heroine alone. Alone with Araragi that is. Not alone alone. Not jinxing this, nope. - -So Ougi's justice is the kind that ""corrects mistakes"", same as the Fire Sisters. A dangerous point of view, in my opinion, no wonder I never felt quite comfortable around them. The kind of justice that exists to correct mistakes exists _after_ those mistakes. This means that everything about it (end, methods, rules, etc) is defined by it's enemy. A force defined by what it works against, not by why it wants itself. If used occasionally and with moderation, in the appropriate situations, it shouldn't be harmful. But a person who seeks to embody this Justice will end up being defined themselves only in relation to their enemy, and thus, they'll end up constantly looking for an enemy to fight, least they loose their sense of purpose. Lucky for Ougi, it seems she's not entirely a ""person"". - -Ougi wants Araragi to stay out of the way. He may have outgrown his roundabout suicide tendencies, but you just know for sure he's still gonna but in anyway. You're asking impossibles Ougi. - -Gahara's totally lost those contests on purpose. She's too good to Araragi. But at the end she takes her revenge, and finally gets him to call her by name. Yay. - -Oh hey Ougi, this time not in a dream. - -""Ougi, did you try to exterminate me?"" ""You heard of such false rumors"". - -Telling lies, Ougi-chan? This does make me realize just how glaring is the contradiction that she punishes liars, while being a clear liar herself. Is she allowed to because she's justice, above it all? Or perhaps she hasn't actually lied any? One might even wonder if a painfully obvious lie is still one or just sarcasm. - -This last interaction paints Ougi in a clearly different lie than any before. First of all it's obvious that Ougi didn't believe for a second that Araragi died, but just how differently she's presented here makes me think that the goal of the whole hell thing wasn't to trick Ougi, but to sever his metaphysical ties to Araragi, who's clearly not under her influence anymore, or at least, not as much. - -For example, Araragi once again repeats the line of ""If she said that it must be true"", but the tone of voice is entirely different, as though he doesn't genuinely believe it and he's just passing by that plothole, knowing it to be fake but not worth his time. - -And so it seems like Ougi takes a different approach to get Araragi in her side and plays the pity card. ""Gaen-san totally got me, woe is me. At least stay by my side as I head towards my innevitable defeat. You wouldn't abandon me in this time of need would you?"" Let's see how much of this is real and how much is false. - -Sidenote, is it just me, or did Ougi's ghastly pale skin tone changed a bit to a normal fair one as they talked in front of the Araragi household?";False;False;;;;1610491666;;False;{};gj1v06m;False;t3_kw1u5z;False;False;t3_kw1u5z;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1v06m/;1610557553;23;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;My-Hime (Kinda);False;False;;;;1610491731;;False;{};gj1v50x;False;t3_kw1i7j;False;True;t3_kw1i7j;/r/anime/comments/kw1i7j/does_an_anime_like_this_exist/gj1v50x/;1610557650;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nakorurukami;;;[];;;;text;t2_4t03x4n9;False;False;[];;it's episodic, and there's no grand story. Also, there's zero chance for any more seasons, so you're good.;False;False;;;;1610491756;;False;{};gj1v6xb;False;t3_kw2pg9;False;True;t1_gj1uu5t;/r/anime/comments/kw2pg9/100_finished_anime_you_recommend/gj1v6xb/;1610557684;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheAnimeSyndicate;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;I Post Completed Anime;dark;text;t2_43nqhnqw;False;False;[];;[completed anime list by genres](https://www.reddit.com/user/theanimesyndicate/m/completedanimecollection_can/) that I update monthly on reddit. You watch a lot of adventure/Shounen so give those subreddit a skim and see if anything interests you;False;False;;;;1610491919;;False;{};gj1viw4;False;t3_kw2pg9;False;True;t3_kw2pg9;/r/anime/comments/kw2pg9/100_finished_anime_you_recommend/gj1viw4/;1610557913;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Becher_MC;;;[];;;;text;t2_y5nb2;False;False;[];;Thank you!;False;False;;;;1610492040;;False;{};gj1vrso;True;t3_kw1i7j;False;True;t1_gj1v50x;/r/anime/comments/kw1i7j/does_an_anime_like_this_exist/gj1vrso/;1610558087;1;True;False;anime;t5_2qh22;;0;[]; -[];;;as1eep;;;[];;;;text;t2_pek5e8i;False;False;[];;"100% finished animu that i reccomend - -- Rakugo - -- Parasyte - -- ACCA-13 - -- Assassination Classroom - -- Banana fish - -- devilman crybaby - -- Kill la Kill - -- monster - -- samurai champloo - -- gurren lagann";False;False;;;;1610492108;;False;{};gj1vwst;False;t3_kw2pg9;False;True;t3_kw2pg9;/r/anime/comments/kw2pg9/100_finished_anime_you_recommend/gj1vwst/;1610558181;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Siphonia66;;;[];;;;text;t2_6ohhj0dm;False;False;[];;Naaaah it's not that, i forgot to say that they are like 12-15 years old;False;False;;;;1610492108;;False;{};gj1vwt9;True;t3_kw2kk4;False;True;t1_gj1tw70;/r/anime/comments/kw2kk4/i_need_help_to_find_a_music_linked_to_an_anime/gj1vwt9/;1610558181;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;u/Addy1025, just throwing in a response real quick but I [wrote some other post a few days ago](https://www.reddit.com/r/Animesuggest/comments/ksq60z/mystery_psychological_deep_animes/gihgybz?utm_medium=) naming some good mystery type animes, [Shiki](https://myanimelist.net/anime/7724/Shiki) might be another good anime within that genre (although I haven't seen much of thatbl one thus far.) [Persona 4 The Animation](https://myanimelist.net/anime/10588/Persona_4_the_Animation) is also a good mystery-type of anime. Idk how many of these actually resemble Dusk Maiden of Amnesia, I only watched the first episode on that, I would personally say ef: A Tale of Memories isn't really a mystery although I enjoyed that anime myself.;False;False;;;;1610492178;;False;{};gj1w1wf;False;t3_kw2lva;False;True;t3_kw2lva;/r/anime/comments/kw2lva/any_good_mystery_anime_recommendations/gj1w1wf/;1610558282;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610492238;;False;{};gj1w6c4;False;t3_kw1ugh;False;True;t1_gj1qg52;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj1w6c4/;1610558367;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;MaiValentineHusband;;;[];;;;text;t2_9ktbpab3;False;False;[];;"You ""Can"", as in won't miss anything plot significant. (I think mostly everyone has DB's plot memorized by heart anyway) - -But you won't be familiar with any of the cast at all. No bond with them or anything.";False;False;;;;1610492249;;False;{};gj1w738;False;t3_kw21xj;False;True;t1_gj1qdx6;/r/anime/comments/kw21xj/hey_can_i_directly_watch_dragon_ball_super/gj1w738/;1610558383;0;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> The constellations looked great but I would be lying if I claimed I understood the implication behind it all. Similar feeling to the only other convo of ougi I couldn’t understand which was about the shrine. - -it makes more sense after next arc but it's just like the last time we had some constellation talk in Bake, pertaining to Araragi x Senjougahara plus a few other cast members - -> As for kaiki I am not sure, probably a shitty dating life lol. - -pretty sure some kind of Midas Touch, everything he cares about fails - -> But then again she did say that he likely had no future so thats not entirely true. - -well she said that her ""loss"" with Sodachi is ok because she now knows what he will do for his friends - -> I am a little fearful cuz that kinda implies senjougahara will be part of the final conflict, oh god pls keep her far away from this. - -remember the ending scenes of Koyomi 12 where it looked like Truck-kun had his eyes set on Senjougahara? - -> he only one I can remember to do it that often is hachikuji - -Ignoring Senjougahara doing it this arc and lauding her voice actress back in Bakemonogatari - -> Her goal is to wipe out aberrations cuz thats what she is and he inherited the araragi's suicidal tendencies without the self sacrificing nature. Her regret is the way she handled araragi and possibly not dealing with kaiki sooner as that wouldve made araragi a vampire. - -​Interesting idea, we will register it as final";False;False;;;;1610492312;;False;{};gj1wbpb;True;t3_kw1u5z;False;False;t1_gj1tfsl;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1wbpb/;1610558477;7;True;False;anime;t5_2qh22;;0;[]; -[];;;panosk1304;;;[];;;;text;t2_19qvhtzg;False;False;[];;Seasons? Dub?...;False;False;;;;1610492316;;False;{};gj1wbzn;False;t3_kw2d9l;False;True;t3_kw2d9l;/r/anime/comments/kw2d9l/help_me_if_im_wrong/gj1wbzn/;1610558483;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PeterGriffenttv;;;[];;;;text;t2_5gvxyq1r;False;False;[];;This might be another anime where I have to switch to sub because of the pandemic. I’m probably gonna switch to black clover sub tbh;False;False;;;;1610492349;;False;{};gj1weeh;True;t3_kw1t7s;False;True;t1_gj1skaw;/r/anime/comments/kw1t7s/slime_season_2_english_dub/gj1weeh/;1610558530;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Massaman95;;;[];;;;text;t2_zxb3m;False;False;[];;In most anime the male MC survives and has some knowledge.;False;False;;;;1610492350;;False;{};gj1wegk;False;t3_kw2z76;False;False;t3_kw2z76;/r/anime/comments/kw2z76/any_anime_like_dr_stone/gj1wegk/;1610558531;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Vinsi107;;;[];;;;text;t2_7jht0k5i;False;False;[];;"Maybe Re:Zero? But I’m not sure about the clocks thing - -Could be Sakurada Reset.";False;False;;;;1610492386;;1610492674.0;{};gj1wh56;False;t3_kw2kk4;False;True;t3_kw2kk4;/r/anime/comments/kw2kk4/i_need_help_to_find_a_music_linked_to_an_anime/gj1wh56/;1610558584;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Addy1025;;;[];;;;text;t2_9nq99yt8;False;False;[];;What's your opinion of ef: A Tale of Memories' story?;False;False;;;;1610492392;;False;{};gj1whjk;False;t3_kw2lva;False;True;t1_gj1w1wf;/r/anime/comments/kw2lva/any_good_mystery_anime_recommendations/gj1whjk/;1610558591;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;7 Seeds. but its not really a male MC.;False;False;;;;1610492528;;False;{};gj1wrck;False;t3_kw2z76;False;True;t3_kw2z76;/r/anime/comments/kw2z76/any_anime_like_dr_stone/gj1wrck/;1610558778;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JakeTheFake8;;;[];;;;text;t2_86j3emld;False;False;[];;Erased if you haven’t watched it yet.;False;False;;;;1610492583;;False;{};gj1wv7q;False;t3_kw2pg9;False;True;t3_kw2pg9;/r/anime/comments/kw2pg9/100_finished_anime_you_recommend/gj1wv7q/;1610558860;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;"oh lol, I was scrolling through your profile and [just responded to your other post on that](https://www.reddit.com/r/anime/comments/kw1r6p/is_ef_a_tale_memories_worth_watching/gj1wjdi?utm_medium=) a few seconds ago. I think I rated it a 7 out of 10 on my MAL. I found it sweet, although I don't watch a ton of romance animes myself (personally I like stuff like [Mirai Nikki](https://myanimelist.net/anime/10620/Mirai_Nikki) or [Mysterious Girlfriend X](https://myanimelist.net/anime/12467/Nazo_no_Kanojo_X) [which has a fantastic dub, the VA voicing the main girl kills the role] for that sort of thing) but where the romance category is concerned and just in general, ""ef: A Tale of Memories"" is good. Don't expect a mystery but it is a solid romance.";False;False;;;;1610492661;;False;{};gj1x0rk;False;t3_kw2lva;False;True;t1_gj1whjk;/r/anime/comments/kw2lva/any_good_mystery_anime_recommendations/gj1x0rk/;1610559006;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Phantom_Spark;;;[];;;;text;t2_4itl1rn;False;False;[];;Cool right? Now, Check out Weathering with you.;False;False;;;;1610492774;;False;{};gj1x8t0;False;t3_kw2zb7;False;True;t3_kw2zb7;/r/anime/comments/kw2zb7/so_i_just_watched_your_name_for_the_first_time/gj1x8t0/;1610559178;1;True;False;anime;t5_2qh22;;0;[]; -[];;;darwinthevirgin;;;[];;;;text;t2_4tcemd6z;False;False;[];;yeeeee that's a stretch;False;False;;;;1610492852;;False;{};gj1xee3;False;t3_kw362e;False;False;t3_kw362e;/r/anime/comments/kw362e/honestly_i_think_demon_slayer_is_the_one_anime_to/gj1xee3/;1610559327;9;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> Telling lies, Ougi-chan? This does make me realize just how glaring is the contradiction that she punishes liars, while being a clear liar herself. Is she allowed to because she's justice, above it all? Or perhaps she hasn't actually lied any? One might even wonder if a painfully obvious lie is still one or just sarcasm. - -maybe she is consistent and will punish herself once her goal is fulfilled, e.g. Christian assassin in Davinci Code - -> You wouldn't abandon me in this time of need would you? - -The weakness of Helperagi - -> Sidenote, is it just me, or did Ougi's ghastly pale skin tone changed a bit to a normal fair one as they talked in front of the Araragi household? - -everything in these shots was ice-cold so it's just the environment making her look more normal. Maybe she is just at the wrong place at the wrong time";False;False;;;;1610492869;;False;{};gj1xfkq;True;t3_kw1u5z;False;False;t1_gj1v06m;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1xfkq/;1610559349;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;I want to eat your pancreas;False;False;;;;1610492872;;False;{};gj1xfsm;False;t3_kw2zb7;False;True;t3_kw2zb7;/r/anime/comments/kw2zb7/so_i_just_watched_your_name_for_the_first_time/gj1xfsm/;1610559353;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SasukeKalif;;;[];;;;text;t2_5fsnuq4d;False;False;[];;How? Give me your opinion as well;False;False;;;;1610492908;;False;{};gj1xiea;True;t3_kw362e;False;True;t1_gj1xee3;/r/anime/comments/kw362e/honestly_i_think_demon_slayer_is_the_one_anime_to/gj1xiea/;1610559402;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Quiddity131;;MAL;[];;http://myanimelist.net/profile/Quiddity131;dark;text;t2_f3bdc;False;False;[];;The second half of this episode is one of the best in anime. Especially that scream to end the episode! You do have to put aside a massive amount of denseness on Shinji's part and everyone else making big efforts to not tell him (which I totally not buy), but those complaints generally wash away considering the climax of the episode.;False;False;;;;1610492983;;False;{};gj1xnpv;False;t3_kw1ugh;False;False;t3_kw1ugh;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj1xnpv/;1610559510;6;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;oh, and you know what, another thing, if you're looking for a good Dusk Maiden of Amnesia follow-up type of thing, [Sankarea](https://myanimelist.net/anime/11499/Sankarea) could be a good anime to try. I've watched about half of it so far but it's pretty good and probably holds a similar appeal to Dusk Maiden. MAL spoils like a couple of episodes in its description so be wary of that.;False;False;;;;1610492989;;False;{};gj1xo5y;False;t3_kw2lva;False;True;t1_gj1whjk;/r/anime/comments/kw2lva/any_good_mystery_anime_recommendations/gj1xo5y/;1610559519;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610492990;moderator;False;{};gj1xo6s;False;t3_kw38ro;False;True;t3_kw38ro;/r/anime/comments/kw38ro/how_should_i_watch_full_metal_alchemist/gj1xo6s/;1610559519;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi moostratet, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610492990;moderator;False;{};gj1xo90;False;t3_kw38ro;False;False;t3_kw38ro;/r/anime/comments/kw38ro/how_should_i_watch_full_metal_alchemist/gj1xo90/;1610559520;1;False;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;In the novels we also see more thoughts about Araragi just being very hesitant with escalating things, especially in their first months of dating considering his self-wort issues and her trauma;False;False;;;;1610493008;;False;{};gj1xpga;True;t3_kw1u5z;False;False;t1_gj1rjap;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1xpga/;1610559548;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Addy1025;;;[];;;;text;t2_9nq99yt8;False;False;[];;Yep, I saw it;False;False;;;;1610493021;;False;{};gj1xqec;False;t3_kw2lva;False;True;t1_gj1x0rk;/r/anime/comments/kw2lva/any_good_mystery_anime_recommendations/gj1xqec/;1610559568;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Quiddity131;;MAL;[];;http://myanimelist.net/profile/Quiddity131;dark;text;t2_f3bdc;False;False;[];;"> You’re telling me the EVAs had their own remote control feature all this time? Why use the pilots at all then? - -They haven't had a remote control feature all this time. There's been discussion about a ""Dummy Plug"" over recent episodes which effectively causes the Eva to think there's a pilot when there isn't one. That's what went down in this episode. The first time using it during actual combat.";False;False;;;;1610493041;;False;{};gj1xrvh;False;t3_kw1ugh;False;False;t1_gj1ta4u;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj1xrvh/;1610559601;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Addy1025;;;[];;;;text;t2_9nq99yt8;False;False;[];;Oh, I've already watched that anime but that was a few years ago so I've forgotten almost everything about it. I'm thinking about reading its manga, have you read it?;False;False;;;;1610493100;;1610493421.0;{};gj1xw21;False;t3_kw2lva;False;True;t1_gj1xo5y;/r/anime/comments/kw2lva/any_good_mystery_anime_recommendations/gj1xw21/;1610559683;2;True;False;anime;t5_2qh22;;0;[]; -[];;;as1eep;;;[];;;;text;t2_pek5e8i;False;False;[];;Brotherhood is the consensus for the best one so go for that. Other one good too tho;False;False;;;;1610493119;;False;{};gj1xxek;False;t3_kw38ro;False;False;t3_kw38ro;/r/anime/comments/kw38ro/how_should_i_watch_full_metal_alchemist/gj1xxek/;1610559707;6;True;False;anime;t5_2qh22;;0;[]; -[];;;skeeedzzz;;;[];;;;text;t2_13iktbvc;False;False;[];;apparently you need to watch the first 12 episodes of FMA(2003) then switch to watch the entirety of FMA: Brotherhood. Brotherhood skips the first few arcs of the manga but in the end is the proper adaption of the manga.;False;False;;;;1610493155;;False;{};gj1xzvt;False;t3_kw38ro;False;False;t3_kw38ro;/r/anime/comments/kw38ro/how_should_i_watch_full_metal_alchemist/gj1xzvt/;1610559755;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;firewarrior256;;;[];;;;text;t2_6qg483sj;False;True;[];;"FMA : Brotherhood follows closer to the Manga then the other iteration. - -Ive seen both and liked Brotherhood over the other one.";False;False;;;;1610493158;;False;{};gj1y04q;False;t3_kw38ro;False;True;t3_kw38ro;/r/anime/comments/kw38ro/how_should_i_watch_full_metal_alchemist/gj1y04q/;1610559760;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;"Most watch Brotherhood first. It's the ""true"" story that follows the manga. FMA 2003 is an interesting alternate take on the series that you can always go back to later.";False;False;;;;1610493199;;False;{};gj1y34c;False;t3_kw38ro;False;True;t3_kw38ro;/r/anime/comments/kw38ro/how_should_i_watch_full_metal_alchemist/gj1y34c/;1610559817;0;True;False;anime;t5_2qh22;;0;[]; -[];;;flipphy90;;;[];;;;text;t2_uac3ndk;False;False;[];;The anime is the original one, so it's actually the manga that changed things in this case. From what I know Hideaki Anno (Evangelion director) wanted to kill Toji in this episode, but he wasn't allowed to do so.;False;False;;;;1610493228;;1610494663.0;{};gj1y594;False;t3_kw1ugh;False;False;t1_gj1w6c4;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj1y594/;1610559865;17;True;False;anime;t5_2qh22;;0;[]; -[];;;darwinthevirgin;;;[];;;;text;t2_4tcemd6z;False;False;[];;"I replied 2 times and it failed to send and I forgot what I wrote and for some reason this gets sent -Edit : I kinda remembered -Ya personally to me demon doesn't hold a candle to aots writing or pace or the correct timing of pulling off things more over the amount of foreshadowing has done and all of them fall right into place, I don't think demon slayer had that kind of uniqueness to it, to me it falls more on the my hero academia kind of thing generic story done right kind of thing";False;False;;;;1610493247;;1610493730.0;{};gj1y6nh;False;t3_kw362e;False;False;t1_gj1xiea;/r/anime/comments/kw362e/honestly_i_think_demon_slayer_is_the_one_anime_to/gj1y6nh/;1610559896;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;I have not although I've heard it's quite good. I might end up checking that out whenever I bother to watch Sankarea's last few episodes. Knowing this beforehand always makes me want to watch an anime less, but since you've already seen Sankarea's anime: it does have a sort of open-ending, or at least, the source material goes on for awhile after that anime ends. So that could be worth it;False;False;;;;1610493254;;False;{};gj1y75w;False;t3_kw2lva;False;True;t1_gj1xw21;/r/anime/comments/kw2lva/any_good_mystery_anime_recommendations/gj1y75w/;1610559905;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheyCallMeyGray;;;[];;;;text;t2_9l3z17yw;False;False;[];;There are two FMA variations. FMA and FMAB (Fullmetal alchemist brotherhood). FMA is the first created anime and FMAB came after that one. The difference is that the endings of both anime differ. Most people only watched FMAB, and as someone whow atched both I would also recommend only watching FMAB. If you really feel like it you could watch both starting with the normal one, but I would watch only FMAB if I had the chance to rewatch them;False;False;;;;1610493260;;False;{};gj1y7m3;False;t3_kw38ro;False;True;t3_kw38ro;/r/anime/comments/kw38ro/how_should_i_watch_full_metal_alchemist/gj1y7m3/;1610559916;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SapiMan;;;[];;;;text;t2_5y0iyzwc;False;False;[];;"[Spoiler](/s ""haha. He takes the darkness bait"")";False;False;;;;1610493262;;False;{};gj1y7r4;False;t3_kw1u5z;False;True;t1_gj1q6l0;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1y7r4/;1610559919;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Azrub580;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FpsArena;light;text;t2_661t4twj;False;False;[];;"Tbh the really odd scores are the ones for SAO franchise, if you enjoyed that this much I think you will enjoy most of what the anime industry has to offer. - -I'll give you my two masterpieces: [Kenpuu Denki Berserk](https://myanimelist.net/anime/33/Kenpuu_Denki_Berserk), [Monster](https://myanimelist.net/anime/19/Monster) and +1 Higurashi.";False;False;;;;1610493273;;False;{};gj1y8jf;False;t3_kw1dgy;False;True;t3_kw1dgy;/r/anime/comments/kw1dgy/recommendations_based_on_mal/gj1y8jf/;1610559935;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GMorelli;;;[];;;;text;t2_13n5gj;False;False;[];;By watching another anime;False;False;;;;1610493292;;False;{};gj1y9v9;False;t3_kw3br6;False;True;t3_kw3br6;/r/anime/comments/kw3br6/how_do_you_deal_with_the_empty_sensation_after/gj1y9v9/;1610559961;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Handsome-_-awkward;;;[];;;;text;t2_52f0dxfa;False;False;[];;Where can you watch saiki?;False;False;;;;1610493316;;False;{};gj1ybon;False;t3_kw2pg9;False;True;t3_kw2pg9;/r/anime/comments/kw2pg9/100_finished_anime_you_recommend/gj1ybon/;1610559997;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;Switching between the entries is a horrible idea because 03 is already using original content a few episodes in and it just makes it more confusing as you try to sort out what is still canon content. There's like 2 chapters skipped from the manga, one that introduces Hughes (done in Episode 1 instead) and the one with Yoki (covered in a flashback later anyway). Otherwise it's pretty damn true to the manga.;False;False;;;;1610493359;;False;{};gj1yeqn;False;t3_kw38ro;False;True;t1_gj1xzvt;/r/anime/comments/kw38ro/how_should_i_watch_full_metal_alchemist/gj1yeqn/;1610560057;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;"**FIRST TIMER** - -Water snake is snake with the water radical? So that helps explain how the park got misnamed (I think). - -So, if I'm following this constellation analogy correctly, Kiss-Shot is the hydra and Araragi is the Heracles. That would mean that Senjougahara is fighting Araragi too? Does that mean that Araragi has to choose between Senjougahara and a normal life or Kiss-Shot, Hachikuji, and the life of oddities? Oh I hope not but that lines up exactly with what my theory on Ougi has been: an ultimatum of choosing which path to follow. - -Ononoki is why Teori and Kagenui were cursed! But wait, that means Oshino and Kaiki are cursed too? At least their names flashed during this part. - -Interesting that Ougi doesn't want to compete against Tsukihi but doesn't mind competing against Karen. Does it have to do with the fact that Tsukihi is an oddity? - -It seems Araragi knows that Ougi told Teori get rid of Araragi and Shinobu. - -THE MUSIC IS SO GOOD. It had me on the edge of my seat. - -Ougi goes after those who break the rules? Oddities that don't conform to any definition is my guess (Araragi wasn't a vampire nor a human nor a half-vampire). Why didn't she go after Hanekawa then? Kanbaru was resisting her oddity so that lines up. Then I could stretch the definition to say that Nadeko still had some snake left in her for Ougi to show up. - -What a beautiful date! Ahhhh so cute. - -Senjougahara suggests that Gaen is against Araragi. I'm back to thinking that Ougi is a part of Araragi. - -Senjougahara's reaction to Araragi's first karaoke score was so good. - -Senjougahara that's too fast! - -Ah she realized the mistake of saying it was fine that he didn't get a gift. Now she's using it as an opportunity to get his obedience after trying all day! - -And it goes back to the first date when she wanted him to call her by her first name. What an incredibly sweet ending to a wonderful pair of episodes. - -Oh no it's not over! This is the darkest backdrop ever that I remember. - -Ougi saying she's not the darkness. I'm sure that was as much for Araragi as the readers/watchers. - -Ougi with the power play of asking Araragi for help. His one weakness! - -**QUESTIONS** - ->Something odd about the first half. I must have dozed of. Any thoughts about what happened there, it could not possibly have been ominous though. - -As I started to say above, the use of constellations seems like a subtle nod telling Araragi that he he's fighting between the Hydra (Kiss-Shot) and the Crab (Senjougahara). - ->Highlights of the date extravaganza? - -The montage in the science museum was my favorite. So many cute little moments. For complete laughs, I loved the speed racer bit of Senjougahara. - ->What do you think about Senjougahara's devious plan that lead to the climax? - -She's wanted this ever since the first date. Poor girl had to wait this long and jump through so many hoops just to get her to say her first name! - ->What do you think about the after credits scene? Last chance to give your speculations on Ougi draws close - -FINAL GUESS: Ougi manifests when a human or oddity exists in an ""in-between"" zone of oddity or human. The darkness is for oddities that break the rules of their oddity so Ougi exists for things that have no rules. Kanbaru never committed to the devil yet she kept her arm. Araragi never committed to vampire yet tried to be as human as possible. Nadeko is questionable but I'll say that she had some lingering snake stuff going on. Unsure. Either way, Ougi went to all three of them with the intent of making them answer the question ""Do you want to be a human or an oddity?"" - -However, this doesn't explain Ougi's role in Sodachi's arc. During that arc, Ougi literally was Ougi's shadow for a second and continuously questioned him to make him think of his past. During that arc, I thought Ougi was a manifestation of regrets and doubt. It doesn't feel like this would be a good enough reason to fight Gaen, so that's why I'm leaving this as my backup guess rather than my primary one.";False;False;;;;1610493406;;False;{};gj1yi4c;False;t3_kw1u5z;False;False;t3_kw1u5z;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1yi4c/;1610560120;11;True;False;anime;t5_2qh22;;0;[]; -[];;;nafissyed;;;[];;;;text;t2_3axlgtoe;False;False;[];;This is a very common misconception. AOT can never be replaced since AOT has a plot that is far more unique and deeper than Demon Slayer imo. Yes both anime have great characters but I wouldn’t say that they both have similar plots since that’s just absurd and untrue.;False;False;;;;1610493432;;False;{};gj1yjwo;False;t3_kw362e;False;False;t3_kw362e;/r/anime/comments/kw362e/honestly_i_think_demon_slayer_is_the_one_anime_to/gj1yjwo/;1610560160;5;True;False;anime;t5_2qh22;;0;[]; -[];;;skeeedzzz;;;[];;;;text;t2_13iktbvc;False;False;[];;oh really? I wasn’t aware of that. I was relaying what I’ve seen on internet n shit. Glad to know that;False;False;;;;1610493433;;False;{};gj1yjz8;False;t3_kw38ro;False;True;t1_gj1yeqn;/r/anime/comments/kw38ro/how_should_i_watch_full_metal_alchemist/gj1yjz8/;1610560162;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Harpr33t-Singh;;;[];;;;text;t2_2xgwk401;False;False;[];;" ->second half of this episode is one of the best in anime. - -It was pretty great! Its been a long time since an anime has made me wide-eyed. Damn, just a bit more then looking at my eyes you would've thought i was in clannad :p";False;False;;;;1610493440;;False;{};gj1ykha;False;t3_kw1ugh;False;False;t1_gj1xnpv;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj1ykha/;1610560174;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;I watch something else. Maybe a trashy ecchi harem show depending on how sad the show I just watched was;False;False;;;;1610493440;;False;{};gj1ykik;False;t3_kw3br6;False;True;t3_kw3br6;/r/anime/comments/kw3br6/how_do_you_deal_with_the_empty_sensation_after/gj1ykik/;1610560175;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;diversify your hobbies for the most part, get exercise, be healthy, be social, that's basically stuff you have to hit hard especially if you're dealing with PADS (post anime depression syndrome)/empty after-anime feelings. Although it is worth saying, Slice of Life animes are perfect for helping you recover from a lot of harder-hitting animes (unless, you got that feeling from a Slice of Life anime, in which case idrk.);False;False;;;;1610493451;;False;{};gj1yla7;False;t3_kw3br6;False;True;t3_kw3br6;/r/anime/comments/kw3br6/how_do_you_deal_with_the_empty_sensation_after/gj1yla7/;1610560189;3;True;False;anime;t5_2qh22;;0;[]; -[];;;moostratet;;;[];;;;text;t2_2zl0f7dm;False;False;[];;A lot of people are saying this so I’ll stick with it thanks for the help;False;False;;;;1610493489;;False;{};gj1yo0w;True;t3_kw38ro;False;True;t1_gj1xxek;/r/anime/comments/kw38ro/how_should_i_watch_full_metal_alchemist/gj1yo0w/;1610560242;1;True;False;anime;t5_2qh22;;0;[];True -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610493490;;False;{};gj1yo1i;False;t3_kw2z76;False;True;t3_kw2z76;/r/anime/comments/kw2z76/any_anime_like_dr_stone/gj1yo1i/;1610560243;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;both are worth watching;False;False;;;;1610493549;;False;{};gj1ys7d;False;t3_kw38ro;False;True;t3_kw38ro;/r/anime/comments/kw38ro/how_should_i_watch_full_metal_alchemist/gj1ys7d/;1610560324;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MisterYo27;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/RAMYOZI;dark;text;t2_1h4cwgft;False;False;[];;i just finished jojo part 6. i had to take a walk for fresh air after that;False;False;;;;1610493650;;False;{};gj1yzkc;False;t3_kw3br6;False;True;t3_kw3br6;/r/anime/comments/kw3br6/how_do_you_deal_with_the_empty_sensation_after/gj1yzkc/;1610560466;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;Beastars isn't even an action show, so I don't know what it's doing here;False;False;;;;1610493718;;False;{};gj1z4h5;False;t3_kw3fwb;False;False;t3_kw3fwb;/r/anime/comments/kw3fwb/which_anime_should_i_remove_from_my_plan_to_watch/gj1z4h5/;1610560566;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Sugmanutz18, your post has been removed because your title is below our minimum length requirement of 4 words. Feel free to repost with a more descriptive title. - -If you're looking to get a quick question answered, like asking for [recommendations](https://www.reddit.com/r/anime/wiki/recommendations), [the source of a picture](https://www.reddit.com/r/anime/wiki/reverse_image_searching), a [watch order](https://www.reddit.com/r/anime/wiki/watch_order) or any other [general question](https://www.reddit.com/r/anime/wiki/faaq), please check our sidebar too, it might help you faster. - -[**Thank you!**](#blushubot) - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610493759;moderator;False;{};gj1z7en;False;t3_kw3hus;False;True;t3_kw3hus;/r/anime/comments/kw3hus/cool_anime_store/gj1z7en/;1610560629;1;False;False;anime;t5_2qh22;;0;[]; -[];;;MisterYo27;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/RAMYOZI;dark;text;t2_1h4cwgft;False;False;[];;Fire force i guess;False;False;;;;1610493760;;False;{};gj1z7ho;False;t3_kw3fwb;False;True;t3_kw3fwb;/r/anime/comments/kw3fwb/which_anime_should_i_remove_from_my_plan_to_watch/gj1z7ho/;1610560630;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FatballerinGG;;;[];;;;text;t2_3665h7u7;False;False;[];;Netflix;False;False;;;;1610493820;;False;{};gj1zbny;False;t3_kw2pg9;False;True;t1_gj1ybon;/r/anime/comments/kw2pg9/100_finished_anime_you_recommend/gj1zbny/;1610560711;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> Water snake is snake with the water radical? So that helps explain how the park got misnamed (I think). - -yeah it confirms what Teori said - -> So, if I'm following this constellation analogy correctly, Kiss-Shot is the hydra and Araragi is the Heracles. That would mean that Senjougahara is fighting Araragi too? Does that mean that Araragi has to choose between Senjougahara and a normal life or Kiss-Shot, Hachikuji, and the life of oddities? Oh I hope not but that lines up exactly with what my theory on Ougi has been: an ultimatum of choosing which path to follow. - -the big speculation before Owari 2 aired (among anime onlies of course) was that the big finale will be deciding between Kiss-Shot and oddities and a normal life with Senjougahara - -> Ononoki is why Teori and Kagenui were cursed! But wait, that means Oshino and Kaiki are cursed too? At least their names flashed during this part. - -Gaen as well - -> At least their names flashed during this part. - -~~she is actually talking about the popularity of their OPs~~ yeah I guess it is the reasoning. And Tsukihi is the ""scary one"" - -> It seems Araragi knows that Ougi told Teori get rid of Araragi and Shinobu. - -well Teori told Araragi, didn't he? - -> backup guess - -covering all your bases I see";False;False;;;;1610493867;;False;{};gj1zeze;True;t3_kw1u5z;False;False;t1_gj1yi4c;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1zeze/;1610560771;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;Don't watch battle shonen then;False;False;;;;1610493910;;False;{};gj1zhyy;False;t3_kw3fwb;False;False;t3_kw3fwb;/r/anime/comments/kw3fwb/which_anime_should_i_remove_from_my_plan_to_watch/gj1zhyy/;1610560828;12;True;False;anime;t5_2qh22;;0;[]; -[];;;dragonkiller212c;;;[];;;;text;t2_8c52lcz0;False;False;[];;Same after i watched akame ga kill i went straight to dxd and infinite stratos;False;False;;;;1610493917;;False;{};gj1zih5;False;t3_kw3br6;False;True;t1_gj1ykik;/r/anime/comments/kw3br6/how_do_you_deal_with_the_empty_sensation_after/gj1zih5/;1610560837;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SapiMan;;;[];;;;text;t2_5y0iyzwc;False;False;[];;Ononoki keeps making me question how deep Gaen's plan is. Even when things goes awry for others, it always works well for her. Even the darkness appearance benefited her and her purpose in the end.;False;False;;;;1610493930;;False;{};gj1zje3;False;t3_kw1u5z;False;False;t1_gj1pm5d;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1zje3/;1610560853;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Gandescart;;;[];;;;text;t2_9s1exjae;False;False;[];;None of those. You could argue HxH but it's foreshadowed and logical.;False;False;;;;1610493959;;False;{};gj1zlg7;False;t3_kw3fwb;False;True;t3_kw3fwb;/r/anime/comments/kw3fwb/which_anime_should_i_remove_from_my_plan_to_watch/gj1zlg7/;1610560892;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;This really gives me a new perspective on Gaen. If she willingly let herself get cursed for Araragi, then that's so selfless. I figured she was like Oshino in that she just wanted to help others help themselves. I'm curious to see what unfolds.;False;False;;;;1610493971;;False;{};gj1zmcu;False;t3_kw1u5z;False;False;t1_gj1s2yn;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1zmcu/;1610560909;5;True;False;anime;t5_2qh22;;0;[]; -[];;;smatthew_;;;[];;;;text;t2_13jgn9;False;False;[];;"**Rewatcher** - -And then ~~they...~~ she drove him home gently. - -Ougi's astrology lesson in the beginning genuinely blew my mind when I watched it the first time. At this point you have an understanding of how well thought out, researched and constructed NisioisiN's work is and then the story comes around with yet an other layer. The monogatari series is interconection incarnate. - -By the way, random thought: If Ougi knows nothing, how can Ougi know she is not the darkness? - -Can't believe we are finally here. Hyped for the last two episodes.";False;False;;;;1610494014;;1610494235.0;{};gj1zpfw;False;t3_kw1u5z;False;False;t3_kw1u5z;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj1zpfw/;1610560967;7;True;False;anime;t5_2qh22;;0;[]; -[];;;IlBorga;;;[];;;;text;t2_3g3i8s2p;False;False;[];;Please no, that movie makes no sense. Check out 5cm per second instead.;False;False;;;;1610494034;;False;{};gj1zqtu;False;t3_kw2zb7;False;True;t1_gj1x8t0;/r/anime/comments/kw2zb7/so_i_just_watched_your_name_for_the_first_time/gj1zqtu/;1610560995;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Please create an anime list. You can create one at either: Myanimelist.net, anilist.co, kitsu or anime-planet. All 4 are free and easy to use. Helps you remember what you've seen and helps us so we aren't suggesting you what you've seen already. - -Death Parade - -Erased - -Steins; Gate - -Mahou Shoujo Madoka Magica - -Shirobako - -Sakura Quest - -Flip Flappers - -Assassination Classroom - -Psycho-Pass - -Cowboy Bebop - -Gurren Lagann - -Sora yori mo Tooi Basho - -Wolf Children - -Spirited Away - -Banana Fish - -Senki Zesshou Symphogear - -Seirei no Moribito";False;False;;;;1610494073;;False;{};gj1ztnc;False;t3_kw2pg9;False;True;t3_kw2pg9;/r/anime/comments/kw2pg9/100_finished_anime_you_recommend/gj1ztnc/;1610561048;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Adb12c;;;[];;;;text;t2_f1e6h;False;False;[];;You complained about a thing here let me change your body without asking. Why are you angry?;False;False;;;;1610494107;;False;{};gj1zw2d;False;t3_kw26p3;False;True;t3_kw26p3;/r/anime/comments/kw26p3/how_to_properly_help_a_girl_with_a_stiff_back_ore/gj1zw2d/;1610561092;7;True;False;anime;t5_2qh22;;0;[]; -[];;;kippguy;;;[];;;;text;t2_7q3ecbs5;False;False;[];;Thanks, I thought it was since it was under the action tag on the streaming site I use.;False;False;;;;1610494130;;False;{};gj1zxmj;True;t3_kw3fwb;False;True;t1_gj1z4h5;/r/anime/comments/kw3fwb/which_anime_should_i_remove_from_my_plan_to_watch/gj1zxmj/;1610561120;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Strickout;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Strickout?status=2;light;text;t2_1szolp7k;False;False;[];;"Careful, recommending that anime anyone is likely to get you mob DV'd - -Source: happens to me all the fucking time";False;False;;;;1610494136;;False;{};gj1zy0s;False;t3_kw0cmo;False;True;t1_gj1g7d5;/r/anime/comments/kw0cmo/any_wholesome_harem_anime_like_the_quintessential/gj1zy0s/;1610561127;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;False;[];;God this show is going to be my guilty pleasure this season. I can already tell it is going to be really trashy, but fuck it because I am also trash;False;False;;;;1610494210;;False;{};gj2034s;False;t3_kw26p3;False;True;t3_kw26p3;/r/anime/comments/kw26p3/how_to_properly_help_a_girl_with_a_stiff_back_ore/gj2034s/;1610561225;7;True;False;anime;t5_2qh22;;0;[]; -[];;;BokuWaLoliconDa;;;[];;;;text;t2_9sgxatvi;False;False;[];;It was an improvement imo.;False;False;;;;1610494227;;False;{};gj204bt;False;t3_kw26p3;False;True;t3_kw26p3;/r/anime/comments/kw26p3/how_to_properly_help_a_girl_with_a_stiff_back_ore/gj204bt/;1610561248;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WhatAreRoads;;;[];;;;text;t2_7bf5t1gl;False;False;[];;Going to my stuff in Hulu or Netflix and clicking one of the titles I have stored in there;False;False;;;;1610494233;;False;{};gj204re;False;t3_kw3br6;False;True;t3_kw3br6;/r/anime/comments/kw3br6/how_do_you_deal_with_the_empty_sensation_after/gj204re/;1610561258;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Educational-Mix-2037;;;[];;;;text;t2_9sjzcajz;False;False;[];;So OP can't be bothered to read the rules (or is intentionally ignoring them) and gets 44 (and counting) free karma because the mods are slow.;False;False;;;;1610494280;;False;{};gj2081p;False;t3_kw26p3;False;True;t3_kw26p3;/r/anime/comments/kw26p3/how_to_properly_help_a_girl_with_a_stiff_back_ore/gj2081p/;1610561321;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;Not sure why, it's not a mind blowing anime by any stretch, but it's decent and a fun watch, and is pretty wholesome, should be right up the OP's alley.;False;False;;;;1610494335;;False;{};gj20bwk;False;t3_kw0cmo;False;True;t1_gj1zy0s;/r/anime/comments/kw0cmo/any_wholesome_harem_anime_like_the_quintessential/gj20bwk/;1610561398;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Angryboy13;;;[];;;;text;t2_jsu7ggj;False;False;[];;"""NOOOOO HOW DARE YOU GET 40 KARMA FOR BREAKING 1 RULE""";False;False;;;;1610494402;;False;{};gj20gkj;True;t3_kw26p3;False;True;t1_gj2081p;/r/anime/comments/kw26p3/how_to_properly_help_a_girl_with_a_stiff_back_ore/gj20gkj/;1610561490;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Strickout;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Strickout?status=2;light;text;t2_1szolp7k;False;False;[];;Facts;False;False;;;;1610494409;;False;{};gj20h2v;False;t3_kw0cmo;False;True;t1_gj20bwk;/r/anime/comments/kw0cmo/any_wholesome_harem_anime_like_the_quintessential/gj20h2v/;1610561501;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DexterWylde;;;[];;;;text;t2_o00k4;False;False;[];;Sure with no context you can argue HxH qualifys, but with context you can’t.;False;False;;;;1610494493;;False;{};gj20n39;False;t3_kw3fwb;False;False;t1_gj1zlg7;/r/anime/comments/kw3fwb/which_anime_should_i_remove_from_my_plan_to_watch/gj20n39/;1610561613;5;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your submission has been removed. - -- Clips from shows should use the ""Clip"" flair, be between 10 seconds and 5 minutes long, and include the anime name in the title of the post. If the clip is from a recently aired episode, wait a **week** after the episode's discussion thread is posted before posting the clip. Additionally, we only allow each user to post two clips per month. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610494576;moderator;False;{};gj20stk;False;t3_kw26p3;False;True;t3_kw26p3;/r/anime/comments/kw26p3/how_to_properly_help_a_girl_with_a_stiff_back_ore/gj20stk/;1610561724;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;I still don't get why people get that emotional with that movie. I like it, but still;False;False;;;;1610494600;;False;{};gj20uhj;False;t3_kw2zb7;False;False;t3_kw2zb7;/r/anime/comments/kw2zb7/so_i_just_watched_your_name_for_the_first_time/gj20uhj/;1610561756;4;True;False;anime;t5_2qh22;;0;[]; -[];;;chris10023;;;[];;;;text;t2_6mgro;False;False;[];;"**Rewatcher** - -Alrighty then, I guess [it's time](https://i.imgur.com/Typpigt.png) for me to start participating in this rewatch since I was taking a break from rewatches and catching up on a couple of shows. Watching the new Netflix dub for the record. - - -Why would Asuka be avoiding Misato. S2 drive testing...hmm. - -Still not telling Shinji who the pilot yet, but a younger sister being transferred, and Toji looks completely distracted. Thinking it might be him. - -""What's wrong? Trouble in paradise for the lovebirds?"" Yes Toji, lets piss off the redhead before the day even starts. I learned that you never upset the redhead. Rei over there looking like Gendo with her hands covering her mouth. - -So Rei and Asuka seem to know about Toji. - -More boring lectures about the 2nd impact. - -Asuka's hanging out with Hikari, I sense some jealousy there Asuka, scared that Hikari might go after Shinji? - -The TV is playing incredibly relevant audio. Asuka, please stop fawning over this near 30 year old guy, it's kind of creepy. At least Kaji isn't taking advantage of it. Some interesting conversation from Kaji. - - -""Four Eva's all to myself, I bet one could destroy the entire world with all that."" Probably could do it with One or Two of them honestly, they can take down Angels, something conventional weapons have trouble doing. - - -An angel inside the Eva? Holy, that's one hell of an explosion. Hopefully Misato and Ritsko are safe. - -Gendo is in charge? Uh oh. - -Damn it Shinji you distracted Asuka. and Rei was uncharacteristicly hesitant as well, ouch Rei had to feel her arm being ripped off. But why did Unit 03 just walk away from Unit 00? - -Pin the angel and rip the plug out Shinji! Damn it Shinji, I agree with you on the whole ""we can't murder this kid."" thing but if you die, there is nothing standing between this angel and Tokyo 03, Unit 02 is damaged and Asuka had to eject, Unit 00 is also damaged and Rei can't fight effectively, if you can disable the Eva. - -The dummy plug? ""It's still better than the current pilot!"" Damn Gendo, way to throw your own son to the curb. [Possible spoilers](/s ""Unit 01 isn't going to take this laying down knowing who's spirit resides in it."") - - -Wow, Unit 01 broke it's neck, did that kill it? Doesn't matter as Unit 01 is going ham on the now crippled angel, crushing it's head and ripping it shreds. Alright Gendo call it off, I think it's dead. Jesus Christ, it crushed the entry plug... - -Fuck you and your stupid amish beard Gendo. - -Good, Misato is alive, probably won't be happy to learn what Gendo did. Toji is alive, that's very good news though. - -Can't wait to see what people think about tomorrow's episode. - -> **Question of the day!** - -> Who is your favorite side character in the series so far? (A character that isn't Shinji, Rei, Asuka or Misato) - -I don't really know, haven't really thought about it, maybe Maya?";False;False;;;;1610494601;;1610495407.0;{};gj20ujq;False;t3_kw1ugh;False;True;t3_kw1ugh;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj20ujq/;1610561758;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PacoTaco321;;;[];;;;text;t2_8yxkb;False;False;[];;What rule is being broken here? Do you consider this 48 second clip where nothing important happened to be spoilers?;False;False;;;;1610494609;;False;{};gj20v2u;False;t3_kw26p3;False;True;t1_gj2081p;/r/anime/comments/kw26p3/how_to_properly_help_a_girl_with_a_stiff_back_ore/gj20v2u/;1610561768;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MinusMentality;;;[];;;;text;t2_x4uk1mo;False;False;[];;"I love Demon Slayer, but why does it have to replace anything? - - -Attack on Titan isn't even over yet, this ""Final Season"" won't even cover the end of the manga. And going by this thumbnail, Chainsaw Man and Demon Slayer are both finished manga. The amount of replacing they can do is limited, especially for a series that is technically still ongoing.";False;False;;;;1610494621;;False;{};gj20vyf;False;t3_kw362e;False;False;t3_kw362e;/r/anime/comments/kw362e/honestly_i_think_demon_slayer_is_the_one_anime_to/gj20vyf/;1610561791;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sp220;;MAL;[];;http://myanimelist.net/animelist/spikyhunter3;dark;text;t2_qjdaq;False;False;[];;5 cm per second, and garden of words next;False;False;;;;1610494703;;False;{};gj211og;False;t3_kw2zb7;False;True;t3_kw2zb7;/r/anime/comments/kw2zb7/so_i_just_watched_your_name_for_the_first_time/gj211og/;1610561901;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;"> The oddities that keep popping up in town? Or Heraragi's fight with self-doubt? - -I'm curious to see how much these two are linked considered what we know from Hana, i.e. oddities haven't been frequent since Araragi graduated. - -> Linking Senjougahara with [Cancer](https://imgur.com/a/BwEZRNa) would mean that Hydraragi is the monster. Fitting, but then who is the hero? - -I'm still wracking my head around this. I hadn't even considered Hydraragi. In that case, Ougi is the hero? Yet Ougi doesn't confront Senjougahara/the crab at all. I was thinking that we had a Heroragi where he was fighting to choose between Kiss-Shot and Senjougahara. But now I'll have to reconsider. - -> This is why [you let your girl win](https://imgur.com/a/gSz1xHi). - -Ah I'm so glad you grabbed this. It is my favorite one of these stylized frames that they've done. Thanks!";False;False;;;;1610494736;;False;{};gj213zg;False;t3_kw1u5z;False;False;t1_gj1pawf;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj213zg/;1610561944;6;True;False;anime;t5_2qh22;;0;[]; -[];;;infinite_lyy;;;[];;;;text;t2_9lftz77s;False;False;[];;"You can watch Fullmetal Alchemist: Brotherhood as he does occasionally lose - -You might like The Promised Neverland as well as it is more psychological and not focused on power ups and stuff - -Lastly, I love Gintama but it does sort of have your 1 and 2. Still, Gintama focuses so much on comedy and drama that the battle parts are more of things to tie into the story. The first serious arc starts at about ep 50+ and still there are tons of comedy arcs there, but after ep 300+ is when it becomes a serious battle show. Gintoki does lose at times but being a battle shonen they still overall win";False;False;;;;1610494880;;False;{};gj21dzb;False;t3_kw3fwb;False;True;t3_kw3fwb;/r/anime/comments/kw3fwb/which_anime_should_i_remove_from_my_plan_to_watch/gj21dzb/;1610562137;2;True;False;anime;t5_2qh22;;0;[]; -[];;;baniRien;;;[];;;;text;t2_wxbyg;False;False;[];;The oddities have been less frequent since the shrine was warded/covered by a god, and because the First is dead so he doesn't attract more. Plus, there's only this many mentally unstable people in a small town.;False;False;;;;1610494903;;False;{};gj21fkp;False;t3_kw1u5z;False;False;t1_gj213zg;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj21fkp/;1610562167;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Mountain-Anywhere621;;;[];;;;text;t2_9kuj99kp;False;False;[];;Grisaia trilogy one most fluffy and lighthearted harem anime ever watch order grisaia no kaiju then meikyu then rauken;False;False;;;;1610495005;;False;{};gj21mko;False;t3_kw0cmo;False;True;t3_kw0cmo;/r/anime/comments/kw0cmo/any_wholesome_harem_anime_like_the_quintessential/gj21mko/;1610562308;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;"**Third watch-through** - -So, this is the one where Toji has a very bad time (note: originally he really was supposed to die). And then of course the other pilots do too, because how could it ever be different. - -The first time so far that we see Misato in her uniform at home. Sorry Kensuke, though it might be interesting to see you as a pilot [Rebuild spoilers](/s ""which arguably is pretty much what Mari is like"") that spot is already taken. Has this guy even been talking to Toji lately (well, Toji might not let much slip anyway) or is he just out for himself again? It certainly can't be the case that he knows and wants to take his place given the context. - -Well, seems Ritsuko and Misato have somewhat patched things up to the point of talking about private matters again - at least Misato's. Asuka though isn't happy about yet another competitor. Also brief ultra-rare combination of Toji and Rei, was she looking for another pilot to talk about Shinji with as Toji thinks or did she actually want to reassure Toji himself? It's not like she exactly knows herself, but anyway it's a weird insertion that serves just to make Hikari anxious about Toji and get her to meet up with Asuka, which itself is a scene with little purpose beyond Asuka's barely relevant thoughts on Toji. And if she feels so strongly about him, wouldn't she mention his role to Shinji somehow? - -Totally forgot that Kaji briefly acts as Shinji and Asuka's guardian here, I guess it's not that important either but it does show he's got a good head on his shoulders when it counts. I also like the scene with him telling Shinji about how difficult it is to truly understand people, well maybe except for the ""women mysterious right?"" It's also interesting how he seems genuinely startled when Shinji throws his words right back at him as far as Misato is involved. - -Cracking jokes about how with four (!) Evas you could cause the apocalypse? Supervillain Misato might be a fun idea but she's clearly not the best judge of comedy appropriateness. Also Kensuke ""haha what if Toji was the pilot, jk... unless?"" Besides, the emphasis on sharing food as a bonding moment continues, which will also be significant in the analogous portion of Rebuild 2.0. - -Next up: Yet another Eva experiment goes wrong! Seriously, it might be easier to count the times when they don't. Was the brief shot of the lightning in the clouds earlier meant to hint at the Angel infection? One might think that would be tested for before seating a pilot, but whatever. What can the Eva units do without one, anyway? Also conveniently Asuka still doesn't tell Shinji about the identity of the pilot, plus both she and Rei get instantly taken out so they can't ruin the plot. For once I have to agree with Gendo here, there's nothing else that can be done, and Shinji isn't even trying to protect himself properly. The Dummy Plug certainly is brutal and its assault gets downright gory (I think I saw an eyeball fly somewhere in there), but if that's all that's available that's just the unfortunate reality of it. In one of the final scenes, also unfortunate for Hikari, and it's obvious what Misato turning away from Kaji means. - -I actually think this episode is a bit of a dip in storytelling quality compared to the previous few. While Shinji not knowing the pilot's identity isn't actually important for how he acts, him not finding out until the very end is pretty forced, Asuka and Rei are just shoved aside so he needs to be the one to (not) act, and the Dummy Plug deal itself feels like shock value more than sensibly grounded, particularly how almost eager Gendo seems to keep it going. Also some of the SOL bits were none too compelling. - -Side character: Obviously Ritsuko or Kaji, who themselves aren't that much less relevant then Misato herself.";False;False;;;;1610495103;;1610508012.0;{};gj21tcf;False;t3_kw1ugh;False;False;t3_kw1ugh;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj21tcf/;1610562440;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;">This links to a snippet of Kamiya Hiroshi singing for Disney, maybe the Japanese dub for that one is worth a shot - -This makes me even more upset that we never got an Araragi character song!";False;False;;;;1610495125;;False;{};gj21uuc;False;t3_kw1u5z;False;False;t1_gj1tqt8;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj21uuc/;1610562467;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SasukeKalif;;;[];;;;text;t2_5fsnuq4d;False;False;[];;I don’t want it to replace AOT. I was just referring to the video linked to my comment;False;False;;;;1610495168;;False;{};gj21xuu;True;t3_kw362e;False;True;t1_gj20vyf;/r/anime/comments/kw362e/honestly_i_think_demon_slayer_is_the_one_anime_to/gj21xuu/;1610562530;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Educational-Mix-2037;;;[];;;;text;t2_9sjzcajz;False;False;[];;">Clips from currently airing shows cannot be posted within a **week** after the Episode Discussion thread is posted.";False;False;;;;1610495178;;False;{};gj21yij;False;t3_kw26p3;False;True;t1_gj20v2u;/r/anime/comments/kw26p3/how_to_properly_help_a_girl_with_a_stiff_back_ore/gj21yij/;1610562543;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"The thing is that he places most of these connections after the fact, which is really impressive, just as the few that have been seemingly set-up from day one - -> Hyped for the last two episodes. - -Last three, plus Zoku Owari";False;False;;;;1610495351;;False;{};gj22ajd;True;t3_kw1u5z;False;False;t1_gj1zpfw;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj22ajd/;1610562791;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Legendary_Bae;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/LegendaryBae;light;text;t2_empopa3;False;False;[];;I always find it humorous how similar the plots of the two shows are. Love them both though;False;False;;;;1610495423;;False;{};gj22fgs;False;t3_kw0cmo;False;True;t1_gj1ghqa;/r/anime/comments/kw0cmo/any_wholesome_harem_anime_like_the_quintessential/gj22fgs/;1610562895;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;Both are pretty different shows in how their story progresses. The setting, the characters, every thing is so different. I don’t think you can compare both shows except on the enjoyment and factors like music, animation, voice acting.;False;False;;;;1610495427;;False;{};gj22fnx;False;t3_kw362e;False;True;t3_kw362e;/r/anime/comments/kw362e/honestly_i_think_demon_slayer_is_the_one_anime_to/gj22fnx/;1610562900;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610495462;moderator;False;{};gj22i18;False;t3_kw41bw;False;True;t3_kw41bw;/r/anime/comments/kw41bw/what_is_the_sauce/gj22i18/;1610562945;1;False;False;anime;t5_2qh22;;0;[]; -[];;;chris10023;;;[];;;;text;t2_6mgro;False;False;[];;"> Man. This episode got dark. - -And it's not going to get any brighter. We're on an express elevator to Hell, going down. - -> You’re telling me the EVAs had their own remote control feature all this time? Why use the pilots at all then? - -Because a human pilot is typically more reliable, you heard what Maya said, the system was still plagued with issues and wasn't ready yet, Dickbag just forced it.";False;False;;;;1610495509;;False;{};gj22l92;False;t3_kw1ugh;False;False;t1_gj1ta4u;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj22l92/;1610563007;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PcJager;;;[];;;;text;t2_7yf4kzq2;False;False;[];;All look good for your preferences;False;False;;;;1610495554;;False;{};gj22oex;False;t3_kw3fwb;False;True;t3_kw3fwb;/r/anime/comments/kw3fwb/which_anime_should_i_remove_from_my_plan_to_watch/gj22oex/;1610563094;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SapiMan;;;[];;;;text;t2_5y0iyzwc;False;False;[];;">depends if she can count as a little girl that he prioritizes - -Heh. There is a joke in Oni in which Araragi refused to be kissed by Ougi because he won't be able to forgive himself for kissing a girl over fifteen.";False;False;;;;1610495650;;False;{};gj22v29;False;t3_kw1u5z;False;False;t1_gj1sx61;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj22v29/;1610563222;6;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;it only counts as cheating if it's legal in select prefectures;False;False;;;;1610495715;;False;{};gj22zmn;True;t3_kw1u5z;False;False;t1_gj22v29;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj22zmn/;1610563315;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SapiMan;;;[];;;;text;t2_5y0iyzwc;False;False;[];;"Lol, good point. Also [spoiler](/s ""little did she know that Ougi is far younger from any of the lolis"")";False;False;;;;1610495838;;False;{};gj237zs;False;t3_kw1u5z;False;False;t1_gj22zmn;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj237zs/;1610563484;6;True;False;anime;t5_2qh22;;0;[]; -[];;;WebWarrior420;;;[];;;;text;t2_xbhhx;False;False;[];;I should pay more attention lmao. I remember the dummy plugs from the other episodes but didn't really take note of them;False;False;;;;1610495866;;False;{};gj239xh;False;t3_kw1ugh;False;True;t1_gj1xrvh;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj239xh/;1610563520;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EquivalentGur3072;;;[];;;;text;t2_84bevo8q;False;False;[];;"Exactly. There's meaning in Gon and Killua's superiority over 99.9% of other humans in their world (as displayed during Heavens Arena arc). - -They still lose plenty though.";False;False;;;;1610495910;;False;{};gj23cy2;False;t3_kw3fwb;False;True;t1_gj20n39;/r/anime/comments/kw3fwb/which_anime_should_i_remove_from_my_plan_to_watch/gj23cy2/;1610563588;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;"Alright, I have an admission to make. I was totally clocked out for my viewing today due to lack of sleep, an irritating cat, the TV blaring and tuning in to a karaoke stream so if I missed anything important please do not lynch me. - -Attack! Attack! Attack! I'm a warrior~ Already shat myself a little with the dream sequence since I thought I put episode 2 on again. I'd like to finish one series without mistakes thanks. So they stole an enemy mech to hide that theirs got shot down ja? Todd must love getting all this attention. Oh my god Todd's waitress is staring into my soul! Poor guy being called Guinness and being given wine instead. This is a celebration of your future feats, IE the ones where you actually contribute. And now the waitress is giving Drake dirty eyes. Elmelie is too busy trying to think up ways to sabotage her kingdom to show face. - -Show littered! This is why nobody likes you! Is this that rebellion ace...? Dude looks like PoR Makalov. To be fair your mum died because she got caught out with her trickery. Nukkuru the fuck are you talking about? Bern is isekaing pilots for his war machines, let's do that ourselves and throw more oil on the fire! Dude, let me in! I'm a Fairy! This amount of Show harassment is bordering bullying by now. He wasn't celebrating at all Chum! El is such a drama queen... Meet the king of Ku. Looks really extra to me. Pfft! El, even I was better at faking sick that you. Drake seems the doting dad so it still works. - -Riding you bicycle at full speed past a horse is just plain insensitive. This is why your mommy doesn't love you Show! And then the jerk kidnapped a Fairy!! Bern always keeps a skin of wine on him for interrogations. Hahaha! He's not happy at Show trying to steal his girl. You're gonna get it now champ! This side is wrong, that side is right! They said that in Gundam too and I still found myself consistently rooting for the baddies in most of the shows. Why do they always call him by his full name!? Don't try to tell me they don't know what they're doing. I understand that he's meant to be our hero but I'm personally really put off by Show's argumentative nature so far. He's coming across like a brat to the people who've taken him in - -""Is Father not the traitor?"" Given literally had an airship attack *him* in the first episode. As far as we're concerned, Given drew first blood. Neal apparently only has battle on his mind... So much for peace. Wait... why is it a problem for Drake to out Given but when Given attempted this we were meant to cheer? ""If we murder Drake then we won't be traitors lol!"" Btw Marvel, try not to target my girlfriend's room. The rest of the castle is fine to obliterate tho. These unit matchups are whack... Neal in a tiny little pod with a bazooka is far more helpful than Garalia's bulky sandbag of a mech or the Aura Battler mechs that get oneshot anyway. Todd got ditched again!! You're a crap wingman Show! What do you have in your hand? Drop it! Drop it! Let it go! Open your hands! Dunbine kiiick! - -Todd died! No, that's Marvel... Marvel died! El's not far behind her! Show fell off a vine and broke his back! At least he's finally decided what side he's on. El is about to become emergency rations! That's Chum's job! Yeah, I too look at these big chonky bug robots and think they're scary. Hmm... it seemed like Show had made up his mind about what side he wanted to be on as soon as he saw how many waifus were on the Given side. Speaking of, they seem a bit dead in the water for the time being until they get a sponsor with enough military might to be a threat to Drake's army.";False;False;;;;1610496018;;1610496290.0;{};gj23kgd;False;t3_kw478y;False;False;t3_kw478y;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj23kgd/;1610563740;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;"**Aura Battler First-Timer** - -- [So I had a pleasant time watching this episode.](https://files.catbox.moe/vfm24j.jpg) ~~Until she had to get up to pee.~~ [](#feelingloved) - -- [Oh… yeah, that was Neal’s mom who died when the carriage got rekt.](https://i.imgur.com/P8A0u6m.png) - -- [This doesn’t surprise me at all.](https://i.imgur.com/AEZBnmJ.png) - -- And now Bern thinks Show is *pursuing* Elmelie and also plotting to be a traitor. - -- Show really does look like he’s gonna join Neal’s side… - -- [Yikes, but he’s not wrong.](https://i.imgur.com/fuzDUsg.png) - -- Oh and now Neal and co. decided to attack the castle while Bern *isn’t* there huh. - -- Show has Elmelie in Dunbine’s grip and is running away with her. Is he gonna stay with Neal after this or is it just to get Elmelie to Neal? He *has* to stay with them, he’s already marked himself as a traitor. - -- [Dunbine KICK!](https://i.imgur.com/BeOGhLP.png) - -- [Oh snap they’re all falling.](#panic) - -- Gah, cliffhanger on Elmelie being injured (at least she survived that fall though), and it sounds like she’s being hunted by something in the forest too…";False;False;;;;1610496027;;False;{};gj23l30;False;t3_kw478y;False;False;t3_kw478y;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj23l30/;1610563771;5;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Draigg;;;[];;;;text;t2_jmliv;False;False;[];;"*A Tomino Fan Rewatches Aura Battler Dunbine Episode 3:* - -- Looks like Lord Drake is playing his own game of Crusader Kings here. He’s set up a big parade for the returning Aura Battlers, alongside preparing a feast for the castle and hosting the king of Ku to be shown around by Shot and Leeza. The man certainly does know how to build up prestige artificially. How he acts in the royal court is plenty different from the kind of man who orders the massacre of his political rivals. - -- So yeah, as it stands Neal Gibbons is completely fucked. Pretty much all Neal has left of his House is the *Zelana*, alongside the support of Keen, Marvel, and Cham. Even if Emelie does feel bad about what happened, it’s not like there’s a whole lot she can do against her father’s schemes at the moment. - -- And so Show’s plan to talk to Emelie gets completely unraveled by Bann questioning Torou bribing him with some wine. Pro-tip: never trust your secret meetings to be arranged by a constantly drunk fairy. At least Emelie was able to come up with a convincing enough lie to stop Baan from attacking Show, though. - -- Everyone is pretty much gunning to press the attack. Lord Drake wants to flush out Roman Gibbons from one of his hidden weapons factories, and Neal Gibbons wants to defeat Lord Drake before he can completely turn the kingdom against his House. And to think, this kind of stuff wouldn’t be possible without Aura Machines like the Aura Battlers or the *Zelana*. It would certainly take more effort, at the very least. This is why you don’t hand futuristic weapons out to medieval people. - -- On the plus side, Show has finally decided that he’s had enough of siding with Lord Drake, and defects to the *Zalana* with Emelie in tow. On the downside though, Todd and Galarea catch onto what’s happening, and Emelie falls into the forest during Todd and Show’s fight. I’m with Todd here: “Oops!” - -- So yeah, Emelie is stuck out in the vicious woods at the end of the episode. And unlike other Tomino characters like Elchi Cargo, she doesn’t really stand a chance of defending herself out in the wilderness. Oopsies!";False;False;;;;1610496030;;1610513279.0;{};gj23l9x;False;t3_kw478y;False;False;t3_kw478y;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj23l9x/;1610563775;4;True;False;anime;t5_2qh22;;0;[]; -[];;;dralcax;;MAL;[];;http://myanimelist.net/animelist/Dralcax;dark;text;t2_9zhve;False;False;[];;" -**First-timer getting dropped** - -[Says the guy who lost the other Dunbine](https://i.imgur.com/aY1mJ6e.png) - -[There’s always gotta be one guy with hilariously 80’s hair](https://i.imgur.com/Vdy23db.png) - -[Um, what was he doing under there?](https://i.imgur.com/b1bSybH.png) It’s not like the mecha has anything under there to work on. And the platform [seems to just be wood](https://i.imgur.com/NKZyXMf.png) without an engine or anything to fiddle with. Maybe he’s just hiding from the real maintenance jobs. - -[Love how he just grabs him like that](https://i.imgur.com/fgzQeT2.png) - -[haha bern cuck](https://i.imgur.com/8i0oQ6H.png) Looks like he just got berned. - -[That can’t be comfortable, why not let her in the cockpit?](https://i.imgur.com/JIn7caJ.png) Pretty cramped in there, but she can fit in his lap. - -[See now look what you’ve done](https://i.imgur.com/Lm5Z4sv.png) - -[Yo, is that a brain?](https://i.imgur.com/mgbccGX.png) Reminds me of Predaking’s organic brain. What are these Aura Machines, anyways? - -Questions of the Day: - -* Episode 3 is a bit soon, but I was expecting it to happen relatively early anyways. - -* The titular mech is going to carry them, of course.";False;False;;;;1610496033;;False;{};gj23lh7;False;t3_kw478y;False;False;t3_kw478y;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj23lh7/;1610563783;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"I don’t believe anything has been announced since it aired. - -From what I heard, watamote wasn’t super popular and it did poorly in sales, so a second season is highly unlikely at this point. A lot of people realized that they could relate to her too much which rubbed them the wrong way.";False;False;;;;1610496060;;False;{};gj23nc2;False;t3_kw45xa;False;True;t3_kw45xa;/r/anime/comments/kw45xa/is_watamote_over_with/gj23nc2/;1610563824;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Educational-Mix-2037;;;[];;;;text;t2_9sjzcajz;False;False;[];;That was more a complaint about how slow the mods are (especially since your post history suggests you may not be as familiar with r/anime's rules), but since you didn't delete this post after you were clearly aware that it wasn't allowed, you're also at fault.;False;False;;;;1610496099;;False;{};gj23py2;False;t3_kw26p3;False;True;t1_gj20gkj;/r/anime/comments/kw26p3/how_to_properly_help_a_girl_with_a_stiff_back_ore/gj23py2/;1610563874;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Giroln;;;[];;;;text;t2_2vcvxbnr;False;False;[];;"**Rewatcher** - -Besides some cute Senjouragi moments with their dates (Especially loved the part near the end where they called each other by their first names, the bowling part was also cute) we got some more insight into Ougi. - -Ougi crashes their date and have some talk about stars, with some not so suptle foreshadowing of her being against Kiss-shot being back and Hachikuji being back. [Owari s2](/s ""We also see her seemingly against Araragi's relationship with Senjou due to wanting to return him to his pre-Kizu loner self."") Later, Ougi shows up to try and convince Araragi to abandon Shinobu and Hachi, and to help her goals instead. [Owari s2](/s ""Her being willing to get herself killed and willfully walk into a trap to acomplish her goal is also a nice counterpart to Arargi's tendency to throw himself in harms way to achieve his goals even if it kills him"") - -While most of this episode was fluff (Even though I would be happy with even more Senjouragi fluff, they are too great together :D), we also got some nice foreshadowing. Next arc, things heat up.";False;False;;;;1610496138;;False;{};gj23sm8;False;t3_kw1u5z;False;False;t3_kw1u5z;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj23sm8/;1610563951;8;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;"**First-Timer, Sub-bine** - -Bern sure is the suspicious type, huh? He sees that fairy wandering around sober and immediately knows something is up. Torou (Is that Plopopieff from Xabungle?) immediately gets sauced and spills the beans - he helped Shou get in touch with Elmelie privately. - -We learned a bit this episode: Elmelie is betrothed to Bern, and Drake seems to actually care about her wellbeing, to some extent. The Aura Road can’t just be opened willy nilly; you need the right conditions. King Bishott of Ku is interested in Shot’s technology, adding another potential faction to this growing conflict. And, Lorne Given has a partially completed Dunbine in his possession. - -Todd promised results to Drake Luft, which is never a good sign. He then proceeds to get put into a mech that is “stronger” than Shou’s Dunbine, and does.. surprisingly okay. He still lost, due to his status as the Loser Antagonist. - -Garalia’s Doro had some slick moves in the fight today. I wonder if she’ll get some respect for holding her own against an enemy mecha. Unfortunately, she’ll probably just get scolded for letting Elmelie escape. - -Several old men wage war against “moral decay” that “wasn’t like that 100 years ago.” The more things change, the more they stay the same. - -Elmelie is potentially in some trouble. Her landing seemed okay, aside from her shoulder, but she is isolated in a forest full of weird noises - not a winning combination. - -Miscellaneous Thoughts: - -[Nuckelavee](#ohfuck) - -It probably doesn’t take much for a tiny fairy to get absolutely hammered. - -The king (of Ah I think?) is named Furaon Elf. - -The Dunbine’s feet claws aren’t just for- damnit.. - -I couldn’t identify any of them (yet, at least) but there are human-sized guns in this setting too. - -Questions - -1. As in, it only taking three episodes? Ehh, kinda. Shou hasn’t had a good time since he got to Byston Well, and the only person who was willing to tell him how to get home wants to be with Neal Given. - -2. The Givens, as a house/territory owner/faction, are likely done for. The ship, whose name we’ve seen several times but I keep not remember? The ship’s crew will continue the fight, possibly even in the name of the Givens.";False;False;;;;1610496264;;False;{};gj241ci;False;t3_kw478y;False;True;t3_kw478y;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj241ci/;1610564127;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Midori-4;;;[];;;;text;t2_3ffbl678;False;False;[];;"Continue down the same path until you have nothing left. - -Then watch Konosuba";False;False;;;;1610496273;;False;{};gj241ze;False;t3_kw3br6;False;True;t3_kw3br6;/r/anime/comments/kw3br6/how_do_you_deal_with_the_empty_sensation_after/gj241ze/;1610564141;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Draigg;;;[];;;;text;t2_jmliv;False;False;[];;"> There’s always gotta be one guy with hilariously 80’s hair - -If you think this 80s hair is bad, then you’re in for a shock later. - -> Yo, is that a brain? Reminds me of Predaking’s organic brain. What are these Aura Machines, anyways? - -Remember, Shot explained that the Aura Machines are a hybrid of computer technology and muscle tissue gotten from some of Byston Well’s native wildlife. A bit of brain being in there isn’t too surprising, with that in mind.";False;False;;;;1610496371;;False;{};gj248js;False;t3_kw478y;False;False;t1_gj23lh7;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj248js/;1610564278;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Bohvey;;;[];;;;text;t2_8jb6t;False;False;[];;Gonna wreck this person’s life with those last two. Berserk had me up for like a week afterward.;False;False;;;;1610496394;;False;{};gj24a2g;False;t3_kw1umq;False;True;t1_gj1qgqz;/r/anime/comments/kw1umq/i_need_some_help_to_find_anime_to_watch/gj24a2g/;1610564307;1;True;False;anime;t5_2qh22;;0;[]; -[];;;degenerate-edgelord;;;[];;;;text;t2_1hbjff8i;False;False;[];;Funnily HxH and Gintama won't turn off someone by those criteria;False;False;;;;1610496427;;False;{};gj24ccr;False;t3_kw3fwb;False;True;t1_gj1zhyy;/r/anime/comments/kw3fwb/which_anime_should_i_remove_from_my_plan_to_watch/gj24ccr/;1610564353;3;True;False;anime;t5_2qh22;;0;[]; -[];;;smatthew_;;;[];;;;text;t2_13jgn9;False;False;[];;">The thing is that he places most of these connections after the fact, - -Oh, sure. I'm very rarely in the illusion that an author plans everything from the beginning, since figuring out that they go back to reread their old work. - ->Last three, plus Zoku Owari - -Of course, three. I'm watching the three arc version, so I just assumed I'll have to stop in the middle again, like the two arcs before. -It's my first time rewatching Zoku, so hyped would be an understatement. Appreciate the heads up tho!";False;False;;;;1610496513;;False;{};gj24i4b;False;t3_kw1u5z;False;False;t1_gj22ajd;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj24i4b/;1610564493;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;">Poor guy being called Guinness and being given wine instead. - -Such a tragedy.. [](#kaguyasigh) - ->Dude looks like PoR Makalov. - -Wow, good call. ~~Hopefully he'll end up being more useful than Makalov.~~";False;False;;;;1610496552;;False;{};gj24ksm;False;t3_kw478y;False;True;t1_gj23kgd;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj24ksm/;1610564547;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Quiddity131;;MAL;[];;http://myanimelist.net/profile/Quiddity131;dark;text;t2_f3bdc;False;False;[];;" -**Rewatcher, Subbed** - -Escape from Laas Wau. I don't think they ever explained what Laas Wau is (Drake's Castle). - -Congrats! A parade for sacking a neighboring noble's home! - -Stop sucking, Todd, or no more alcohol for you! - -It's another one of those drunk Mi Ferario! - -Summoning people from Upper Earth is said to be prohibited, but Keen is more than happy to do it if they just had their own Silkie Mau. - -The Drakes are already scheming with the king of another country, the oddly named Bishot Hate (also mangled by the official ADV subs). - -Riml faking sickness, huh? No dad, I don't want to go to school today! - -Time for some more day drinking from that drunk Mi Ferario. - -Riml's to be in an arranged marriage with Bern? Good for Bern, but lol she'd sure hate that given how infatuated she is with Nie. - -""How rare for you to be sober!"" Yep, that describes this Torou guy. Bern knows exactly what will get him to talk too. - -Well, Bern's bound to get the wrong idea about this. - -So Roman was able to recover Todd's Dunbine after all. - -Pretty cool beetle-like thing that Nie is riding on. - -So now it's Drake's home that will be attacked, albeit by a small force. - -Todd is going to get that dark Drumlo trashed too I bet. - -Are those machine guns the soldiers on the castle turrets have? Shot and Zet have even developed them here? - -LoL @ Drake calling this treachery. As if you're not plotting to get a rival house declared traitors. - -Is Shou again making up fake excuses for why he can't fight? - -Where's Riml going? To get luggage? LoL. - -Oops! You weren't supposed to let go, Shou!";False;False;;;;1610496563;;False;{};gj24lkf;False;t3_kw478y;False;False;t3_kw478y;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj24lkf/;1610564562;5;True;False;anime;t5_2qh22;;0;[]; -[];;;RektCompass;;;[];;;;text;t2_gm30lnh;False;False;[];;You think Gon got powerful quickly?;False;False;;;;1610496631;;False;{};gj24q4f;False;t3_kw3fwb;False;True;t1_gj24ccr;/r/anime/comments/kw3fwb/which_anime_should_i_remove_from_my_plan_to_watch/gj24q4f/;1610564652;1;True;False;anime;t5_2qh22;;0;[]; -[];;;islandguyinLA;;;[];;;;text;t2_q7ftuj3;False;False;[];;To echo what everyone’s saying, Brotherhood is a good way to go.;False;False;;;;1610496647;;False;{};gj24r75;False;t3_kw38ro;False;True;t3_kw38ro;/r/anime/comments/kw38ro/how_should_i_watch_full_metal_alchemist/gj24r75/;1610564675;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"**First time viewer** - -It simultaneously feels like nothing and a lot of things happened. Also I really just want to jam to the start of the OP repeatedly, or at least get more of those horns. - -I initially thought the drunken pixie (Mi Ferario, right?) was just a quick joke but turns out he was decently important. My theory from yesterday about them unable to lie definitely goes out the window here though as Torou tried to shrug off Bern while saying he didn't like alcohol. - -The king of another land (Ku) coming to visit Shot specifically makes me wonder if Drake will side with them so we'll end up with them separating from Ah and going to war with the rest (including Given's lands which will presumably remain the focus for a while). - -As expected to eventually happen Show decided to make a break for it and good timing for that with Bern gone. His excuses for not fighting were getting progressively flimsier so better now than later anyway. Hopefully he's actually a decent pilot when it comes to fighting on the other side. - -Todd wasn't incompetent for once! Now that I think about it he reminds me of ~~Yazan~~ Jerid from Zeta Gundam a little. - -I didn't think they were going to kill Elmelie that quickly, but it certainly wasn't out of the question and she's not out of the woods yet. - -> Did you expect the timing of Show's defection? - -Works well! I figured he'd try to sneak Elmelie out at some point but without Bern to interfere was convenient. - -> With their manor destroyed and having to abandon their means of production, how well do you think the Givens will hold against Drake's forces? - -Band on the run? Sounds familiar. They might have to flee to some other place first before getting help.";False;False;;;;1610496712;;1610497122.0;{};gj24vlh;False;t3_kw478y;False;False;t3_kw478y;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj24vlh/;1610564768;6;True;False;anime;t5_2qh22;;0;[]; -[];;;degenerate-edgelord;;;[];;;;text;t2_1hbjff8i;False;False;[];;No, I meant the opposite;False;False;;;;1610496803;;False;{};gj251nx;False;t3_kw3fwb;False;True;t1_gj24q4f;/r/anime/comments/kw3fwb/which_anime_should_i_remove_from_my_plan_to_watch/gj251nx/;1610564886;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;">Um, what was he doing under there? - -...foot maintenance? I didn't even think about it. Just went ""Oh, Shou is doing mechanic stuff, cool."" Quite odd.";False;False;;;;1610496827;;False;{};gj253as;False;t3_kw478y;False;False;t1_gj23lh7;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj253as/;1610564917;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Pixelsaber;;;[];;;;text;t2_ofuxw;False;False;[];;"**Rewatcher - Sub** - -Oh, whoops, comment doesn't seem like the it got through the first time. - -Drake seems to make deliberate use of parades and other such celebrations to keep his people distracted or happy enough that they don't object to his warmongering. - -Keen's statement about an E Ferario called Nuckelavee suggests Drake is not the only one summoning people from Upper Earth, so perhaps the Givens did summon Marvel. I doubt it, however, as it doesn't seem like something a Ferario would do unless forced to, like Silky Mau, and the fact that he is elsewhere suggests he isn't in captivity. Still, the fact that they are at the very least considering it shows how much both sides of this conflict are willing to get their hands dirty in order to succeed. - -So there's both a Shot Weapon and a King Bishott. - -[](#azusalaugh) - -Usual naming amusement aside, Drake has a potential ally, which will likely give him an advantage should the two decide to collude. Even if Bishitt has no Aura battlers at his disposal, Drake has mentioned his need for funds and men before, and that's something Bishott may be able to supply him, whether it be officially or illicitly. Given is already at a steep disadvantage, so that would not be good for them. My big question is what will Drake primse Bishott, given he is likely not excempt from Drake's conquest. Is Bishott content becoming subordinate to him? Will Drake lie to him? I am most interested in learning where this goes... - -So it seems Elmelie is bethrothed to Burn Bunnings, or at least the Garou Ran, Torou, seems to think so. It doesn't get brought up again though, and Drake's intention to have Elmelie sit by Bishott during a diner implies she isn't out of the courting pool —the only thing which might support it is Bern's reaction to learning that Show was in Elmelie's quarters— so either it's only rumor or Drake is keeping it under wraps as to gleam the benefits of having suitors visit. Assuming for a moment it's true, since it's more interesting that way, it's refreshing to learn of it this way, and not because she was fretting over it due to her love for Neal. It makes her characterization and agency seem less tied to that of a man that way, and shows where her real priorities lie. For Bern it's less surprising that it's not mentioned, but for most shows I would have expected mention of it by now —followed by some cackling and statements about how by marrying her the Land of Ah will be all his— but as has probably been made evident by now, Dunbine isn't most shows. - -I was only slightly surprised to see Show decide to spontaneously defect to the Givens' side, since I had the next episode pegged as the one where that would happen, but it was definitely coming anyhow. Makes since that he’s finally felt pushed to it, given this episode has not improved his thoughts on Drake nor those on his side any, and he finally had a chance to have a one-on-one with Elmelie. - -If you look closely you can see that the bag Elmelie went back into her room to retrieve is styled after Haro from Mobile Suit Gundam. - -Man, what a cliffhanger. There’s not many of these, I don’t think, so they stick out all the more upon Rewatch. - ---- - -Props to u/ZaphodBeebblebrox for correctly predicting the episode of Show's defection.";False;False;;;;1610496877;;False;{};gj256on;True;t3_kw478y;False;False;t3_kw478y;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj256on/;1610564982;6;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;Don't worry. Todd's American. He could be given fermented durian juice and he'd be happy with it.;False;False;;;;1610496925;;False;{};gj259ty;False;t3_kw478y;False;True;t1_gj24ksm;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj259ty/;1610565043;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RektCompass;;;[];;;;text;t2_gm30lnh;False;False;[];;"Sorry, I meant the the opposite ""you think Gon got powerful slowly?"" - -It's been a while, but doesn't he learn shit in like 2 weeks when they're like ""this will take years""";False;False;;;;1610496929;;False;{};gj25a3n;False;t3_kw3fwb;False;True;t1_gj251nx;/r/anime/comments/kw3fwb/which_anime_should_i_remove_from_my_plan_to_watch/gj25a3n/;1610565048;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610496946;moderator;False;{};gj25b8j;False;t3_kw4i35;False;True;t3_kw4i35;/r/anime/comments/kw4i35/hey_i_need_some_suggestions/gj25b8j/;1610565069;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi spikiestknight, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610496946;moderator;False;{};gj25b9s;False;t3_kw4i35;False;True;t3_kw4i35;/r/anime/comments/kw4i35/hey_i_need_some_suggestions/gj25b9s/;1610565070;2;False;False;anime;t5_2qh22;;0;[]; -[];;;Omegaxis213;;;[];;;;text;t2_25nnpz9s;False;False;[];;It sounds like you're talking about Kagerou Daze.;False;False;;;;1610496999;;False;{};gj25eua;False;t3_kw2kk4;False;True;t3_kw2kk4;/r/anime/comments/kw2kk4/i_need_help_to_find_a_music_linked_to_an_anime/gj25eua/;1610565141;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Draigg;;;[];;;;text;t2_jmliv;False;False;[];;"> Todd wasn't incompetent for once! Now that I think about it he reminds me of Yazan from Zeta Gundam a little. - -I’d say that Todd reminds me more of Jerid Messa. He’s more of a dick rather than the pure evil that Yazan Gable is. - -> I didn't think they were going to kill Elmelie that quickly, but it certainly wasn't out of the question and she's not out of the woods yet. - -Quite literally, in fact.";False;False;;;;1610497035;;False;{};gj25hdq;False;t3_kw478y;False;False;t1_gj24vlh;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj25hdq/;1610565189;6;True;False;anime;t5_2qh22;;0;[]; -[];;;eendm717;;;[];;;;text;t2_7kuwqf1r;False;False;[];;I’m pretty sure a lot of people can relate to subaru from re zero including me but yet that’s gotten a season 2, but damn that sucks I actually liked it. Another one bites the dust;False;False;;;;1610497087;;False;{};gj25kxc;True;t3_kw45xa;False;True;t1_gj23nc2;/r/anime/comments/kw45xa/is_watamote_over_with/gj25kxc/;1610565266;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"I actually meant Jerid but wrote the wrong name. - -[](#kyonfacepalm) - -> Quite literally, in fact. - -[](#slowgrin)";False;False;;;;1610497111;;False;{};gj25mmk;False;t3_kw478y;False;False;t1_gj25hdq;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj25mmk/;1610565299;5;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;starts out pretty slow, takes awhile to get as good as season 1 tbh, introduces a lot of new characters randomly from other stations;False;False;;;;1610497160;;False;{};gj25pys;False;t3_kw4j0m;False;False;t3_kw4j0m;/r/anime/comments/kw4j0m/is_fire_force_season_2_worth_season_1s_watch/gj25pys/;1610565363;3;True;False;anime;t5_2qh22;;0;[]; -[];;;degenerate-edgelord;;;[];;;;text;t2_1hbjff8i;False;False;[];;Oh, in comparison to other characters in-universe, yes. But it's shown straight from the start how him and Killua are different, and the time between the first and last episodes is nearly 2 years with no major time skip. Overall his growth wasn't too fast, and it was explained thoroughly enough to not turn off anyone.;False;False;;;;1610497165;;False;{};gj25qcc;False;t3_kw3fwb;False;True;t1_gj25a3n;/r/anime/comments/kw3fwb/which_anime_should_i_remove_from_my_plan_to_watch/gj25qcc/;1610565370;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Parzival_32;;;[];;;;text;t2_3trhd2m8;False;False;[];;monogatari got some similarities but i wouldn’t recommend if u haven’t watched a lot of anime tho;False;False;;;;1610497169;;False;{};gj25qlo;False;t3_kw4i35;False;False;t3_kw4i35;/r/anime/comments/kw4i35/hey_i_need_some_suggestions/gj25qlo/;1610565374;4;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;"The episodes are pretty damn meaty. Especially for an 80's show. I'm fully expecting the pace to hit a wall sooner or later though. There's no way you get 49 episodes with so much detail. - -Yazan? What brought him to mind? Yazan had a far better track record in Zeta than Todd. - -It'll be interesting to see what they do with El. She has just a bit too much personality to totally be set aside but there's not a lot she's really capable of on her own";False;False;;;;1610497310;;False;{};gj260a4;False;t3_kw478y;False;False;t1_gj24vlh;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj260a4/;1610565564;4;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;"**First-Timer Who Doesn’t Remember Byston Well** - -Ideon had a required transformation every episode. Dunbine has a required parade. - -Drunk fairy. Shouldn’t have given him human-sized portions. - -Grabbing the fairy out of the air while going fast is pretty impressive. - -Bern’s upset someone’s possibly stepping in on his forced marriage! - -“Marvel, try not to kill my girlfriend. Thanks!” - -They attacked when we weren’t expecting? But that’s Drake’s move! No fair. - -Rookie mistake carrying her with your mecha’s hand, Show. You have her sit on your lap in the cockpit. - -QOTD: - -1) No. Given the length of the show, I figured it would probably happen E8 or something. - -2) They have fairies and a Japanese guy, so who knows? I think the odds are pretty even.";False;False;;;;1610497355;;False;{};gj263bk;False;t3_kw478y;False;False;t3_kw478y;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj263bk/;1610565621;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610497396;moderator;False;{};gj26657;False;t3_kw4mx5;False;True;t3_kw4mx5;/r/anime/comments/kw4mx5/need_help_finding_an_anime/gj26657/;1610565674;1;False;False;anime;t5_2qh22;;0;[]; -[];;;spikiestknight;;;[];;;;text;t2_2e4o4pn6;False;False;[];;"Well I have watched alot of anime (like I said on the post) -But I'll check it out nonetheless";False;False;;;;1610497407;;False;{};gj266x1;True;t3_kw4i35;False;True;t1_gj25qlo;/r/anime/comments/kw4i35/hey_i_need_some_suggestions/gj266x1/;1610565690;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chibijosh;;;[];;;;text;t2_bkmc0;False;False;[];;"Todd reminds me of Asuka: thinks he is the best, but pretty much loses every battle immediately. - -Women in this world are treated pretty poorly. Given’s mom got blown to smithereens without a second thought. Rimul gets dropped and no one seems to care too badly. Show does a quick “I’m going to try to catch her” then does nothing while Marvel gets brained.";False;False;;;;1610497410;;False;{};gj26746;False;t3_kw478y;False;True;t3_kw478y;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj26746/;1610565694;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"I got the wrong Zeta antagonist, I meant Jerid. - -> There's no way you get 49 episodes with so much detail. - -Agreed, things will probably slow down soon with our protagonists being on the run.";False;False;;;;1610497432;;False;{};gj268lt;False;t3_kw478y;False;False;t1_gj260a4;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj268lt/;1610565731;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;False;[];;">Props to u/ZaphodBeebblebrox - for correctly predicting the episode of Show's defection - -[](#panic) -Still need to watch today's episode, been busy the entire day. This sure is an interesting way to learn what happenes in it :) -I'll actually be properly around tomorrow!";False;False;;;;1610497450;;False;{};gj269t0;False;t3_kw478y;False;False;t1_gj256on;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj269t0/;1610565754;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;">Todd wasn't incompetent for once! - -Yea, he did well today, even causing a fair bit of damage to a more experienced pilot. I am probably being too harsh on him. - ->she's not out of the woods yet. - -[](#smugpoint)";False;False;;;;1610497453;;False;{};gj269yx;False;t3_kw478y;False;True;t1_gj24vlh;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj269yx/;1610565757;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Pixelsaber;;;[];;;;text;t2_ofuxw;False;False;[];;"> My theory from yesterday about them unable to lie definitely goes out the window here though as Torou tried to shrug off Bern while saying he didn't like alcohol. - -Wouldn't make them that trustworthy as evidence though, since they could be misled by someone to forge evidence. If it's some voice-recording magic as implied then at least they can later verify Bern's voice.";False;False;;;;1610497477;;False;{};gj26bly;True;t3_kw478y;False;False;t1_gj24vlh;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj26bly/;1610565791;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Pixelsaber;;;[];;;;text;t2_ofuxw;False;False;[];;Well shit...;False;False;;;;1610497501;;False;{};gj26d9h;True;t3_kw478y;False;False;t1_gj269t0;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj26d9h/;1610565826;4;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">who is the hero? - -Obviously Ougi";False;False;;;;1610497536;;False;{};gj26fnp;False;t3_kw1u5z;False;False;t1_gj1pawf;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj26fnp/;1610565876;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610497548;;False;{};gj26ggp;False;t3_kw4o33;False;True;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj26ggp/;1610565892;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;"Hey, that's.. only partially untrue. - -~~I'd probably try it, once.~~";False;False;;;;1610497592;;False;{};gj26jij;False;t3_kw478y;False;True;t1_gj259ty;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj26jij/;1610565957;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;"Show wouldn't have had to go through all this trouble if every female character hadn't given him shit. El does -doesn't visit him for a one on one like she did for Todd, Marvel got bored of him being wishy washy, and Chum straight up lies about him in her reports.";False;False;;;;1610497596;;False;{};gj26jtq;False;t3_kw478y;False;True;t1_gj23l9x;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj26jtq/;1610565963;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OldFartMaster10K;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_1rp2hdu9;False;False;[];;Shit, I meant to edit and get rid of that. Forgot that Hunter x Hunter has a dub that I kinda like;False;False;;;;1610497598;;False;{};gj26jyb;False;t3_kw2d9l;False;True;t1_gj1tj90;/r/anime/comments/kw2d9l/help_me_if_im_wrong/gj26jyb/;1610565965;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Toradora - -Relife - -Spice and Wolf - -Please create an anime list. You can create one at either: Myanimelist.net, anilist.co, kitsu or anime-planet. All 4 are free and easy to use. Helps you remember what you've seen and helps us so we aren't suggesting you what you've seen already. - -That'd really help us out.";False;False;;;;1610497607;;False;{};gj26kkm;False;t3_kw4i35;False;True;t3_kw4i35;/r/anime/comments/kw4i35/hey_i_need_some_suggestions/gj26kkm/;1610565977;3;True;False;anime;t5_2qh22;;0;[]; -[];;;baquea;;;[];;;;text;t2_j3k0u;False;True;[];;The manga is still ongoing and... well a lot has happened since the events of the anime. Doubt the anime will get a second season after all this time though.;False;False;;;;1610497685;;False;{};gj26prf;False;t3_kw45xa;False;False;t3_kw45xa;/r/anime/comments/kw45xa/is_watamote_over_with/gj26prf/;1610566082;4;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;Hopefully he doesn't end up too similar to Jerid though... Poor guy had the world out to get him.;False;False;;;;1610497722;;False;{};gj26sas;False;t3_kw478y;False;False;t1_gj268lt;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj26sas/;1610566130;5;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;"**First-time watcher** - -The Ougi part I took basically nothing away from (well, one thing that was interesting to learn was Hanekawa as a ""rival"") and for the rest it's pretty much the same as I said last time. Anyway, from here on it should get really interesting.";False;False;;;;1610497744;;False;{};gj26tr0;False;t3_kw1u5z;False;False;t3_kw1u5z;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj26tr0/;1610566159;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Shadowwolf5928;;;[];;;;text;t2_7zx2lcp3;False;False;[];;Already watched it;False;False;;;;1610497746;;False;{};gj26tv6;False;t3_kw4ot8;False;True;t3_kw4ot8;/r/anime/comments/kw4ot8/the_best_comedy_anime_you_should_watch/gj26tv6/;1610566162;3;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;Now he doesn't need to worry about putting faith in Show. The only thing worse than no wingman is an unreliabile wingman.;False;False;;;;1610497792;;False;{};gj26wyi;False;t3_kw478y;False;True;t1_gj269yx;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj26wyi/;1610566224;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ohaimike;;;[];;;;text;t2_5ovb2;False;False;[];;"[If you want to continue it, Yen Press is selling the manga](https://yenpress.com/series-search/?series=no-matter-how-i-look-at-it-its-you-guys-fault-im-not-popular&supapress_order=publishdate-asc)";False;False;;;;1610497904;;False;{};gj274k6;False;t3_kw45xa;False;True;t3_kw45xa;/r/anime/comments/kw45xa/is_watamote_over_with/gj274k6/;1610566370;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610497926;moderator;False;{};gj275yz;False;t3_kw4sov;False;True;t3_kw4sov;/r/anime/comments/kw4sov/trying_to_find_a_certain_comic/gj275yz/;1610566396;1;False;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;Kanon (2006) and Monogatari Series. If you decide to watch Monogatari Series, remember that Bakemonogatari is the first one.;False;False;;;;1610497967;;False;{};gj278sy;False;t3_kw4i35;False;True;t3_kw4i35;/r/anime/comments/kw4i35/hey_i_need_some_suggestions/gj278sy/;1610566449;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JustAnswerAQuestion;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JAaQ/;light;text;t2_66xzcvc;False;False;[];;"**First Timer** - -took too long to catch up on CDF, so not even starting this until the thread is up. - -Comment of the day goes to /u/Shimmering-Sky for pointing out ""Burn"" and ""Char"" - -* Are those babies in the OP sitting in lotus flowers? -* I didn't think the battle yesterday was over, they defeated Neal and Frozen? (are we going to flashback like in Eva?) -* That's a king? -* *not* splatting on the windshield (this time!) -* The newcomers have gotten pretty good -* Which will he save? Oh, well, maybe there aren't 2 choices any more. -* yeah that seems pretty improbable. - - -I really dislike Tomino's random naming of stuff, as if you had to already have read the entire backstory in NewType before the first episode even aired. I have no idea what all the mecha are, and so every mention of them is a complete waste of my time.";False;False;;;;1610497999;;False;{};gj27b23;False;t3_kw478y;False;True;t3_kw478y;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj27b23/;1610566491;3;True;False;anime;t5_2qh22;;0;[]; -[];;;A_Idiot0;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/a_idiot0;light;text;t2_91o0j;False;False;[];;"It depends. - -Did I find that I liked what the anime did? If so, I will sit with that feeling and give it space and respect. Shows that made me do this as examples: *Violet Evergarden, K-On,* and *NGE*. I want to get to know the feelings that the stories and characters left me with, so I'll sit with it and process what I experienced. Sometimes this takes minutes, or hours, or days. For *K-On*, I couldn't watch anything new for about a week because I was so stunned by the sincerity of it. - -Some shows I did not sit with when I finished: *Konosuba* and *No Game No Life.* Anime like these were just really fun for me and I didn't really have that much to process through, so I'll just take a breather and then go do something else after a short while. - -If all you are feeling is emptiness and nothing else, you may want to ask yourself if you're OK with that. It could be a sign of overall depression, and is worth looking into deeper and seeking out help if that's the case.";False;False;;;;1610498188;;False;{};gj27nns;False;t3_kw3br6;False;True;t3_kw3br6;/r/anime/comments/kw3br6/how_do_you_deal_with_the_empty_sensation_after/gj27nns/;1610566726;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"**First timer sub** - -This episode was great! It had meaty political workings, juicy mech fights and still small tidbits about the world which I love. - -We had this dream sequence that is almost like the Aura Road is where the [silky live in a semi-underwater like path?](https://i.imgur.com/ANYFpfy.png) - -[First look at the king.](https://i.imgur.com/jntQzDS.png) I actually expected a larger more elaborate hat for some reason, so this beanie threw me off. - -[We got introduced to Neal.](https://i.imgur.com/kbO53KV.png) I am looking forward at seeing him developed as he is the leader of the main opposition from what we have seen thus far. Interesting that he is a bit hot headed but is wise enough to realise it, cooldown, then stage an opportune attack. He seems smart, maybe emotional. - -[Could this three legged bug-mech be any cooler?](https://i.imgur.com/bMR7uoI.png) - -[*such treachery!*](https://i.imgur.com/G1Mi9nX.png), the favor is returned. - -[Finally we get the acceptance of swapping sides.](https://i.imgur.com/23TYcX2.png) - - - -1) Did you expect the timing of Show's defection? - -I was kind of expecting it sooner rather than later. We have been shown enough of the workings on that side. There is an advantage of leaving these characters early as it serves as a great introduction to them without making the ""what's next"" to clear. Some of the characters seem like they will play out their archetypes (Drake Luft) but I am curious about others (Bern Bunnings). - -2) With their manor destroyed and having to abandon their means of production, how well do you think the Givens will hold against Drake's forces? - -That's a good question, putting the hero's on the backfoot allows for a path of small victories which will give us time to get 'the gang' meshing well together as characters. So I expect some wins and maybe some losses as they struggle to get a foothold and build a resistance.";False;False;;;;1610498192;;1610498574.0;{};gj27ny5;False;t3_kw478y;False;False;t3_kw478y;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj27ny5/;1610566732;5;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;"You had problems with your comments yesterday too. Rip phone redditors right? - -Bern seems to be satisfied working under Drake. He's not *that* overly ambitious but it's raising warning flags that he flips out so easily over potentially losing something he thinks belongs to him. Givens tricked him and Bern razed his castle in retaliation. Show flirts with his fiance and Bern was absolutely planning to run him through there and then for challenging him. - -I missed the Haro bag!! I'll need to rerewatch this!";False;False;;;;1610498217;;False;{};gj27pod;False;t3_kw478y;False;False;t1_gj256on;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj27pod/;1610566765;4;True;False;anime;t5_2qh22;;0;[]; -[];;;spikiestknight;;;[];;;;text;t2_2e4o4pn6;False;False;[];;Oh yeah, that's a good idea but I haven't seen the animes that were suggested so far so thanks;False;False;;;;1610498251;;False;{};gj27s14;True;t3_kw4i35;False;True;t1_gj26kkm;/r/anime/comments/kw4i35/hey_i_need_some_suggestions/gj27s14/;1610566807;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spikiestknight;;;[];;;;text;t2_2e4o4pn6;False;False;[];;Alright thanks;False;False;;;;1610498275;;False;{};gj27to7;True;t3_kw4i35;False;True;t1_gj278sy;/r/anime/comments/kw4i35/hey_i_need_some_suggestions/gj27to7/;1610566839;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610498285;moderator;False;{};gj27ud4;False;t3_kw4wif;False;True;t3_kw4wif;/r/anime/comments/kw4wif/hey_cant_decide_what_to_watch/gj27ud4/;1610566852;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi KingKantor, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610498286;moderator;False;{};gj27udv;False;t3_kw4wif;False;True;t3_kw4wif;/r/anime/comments/kw4wif/hey_cant_decide_what_to_watch/gj27udv/;1610566852;1;False;False;anime;t5_2qh22;;0;[]; -[];;;KlooKloo;;;[];;;;text;t2_6xd5w;False;False;[];;Yeah they were explicitly told they can kill 14 year olds in their timeslot;False;False;;;;1610498354;;False;{};gj27yyv;False;t3_kw1ugh;False;True;t1_gj1y594;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj27yyv/;1610566938;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HiddenSwan;;MAL;[];;http://myanimelist.net/animelist/HiddenSwan;dark;text;t2_eej3v;False;False;[];;I guess its because people are afraid of spoilers. Stupid rule either way.;False;False;;;;1610498384;;False;{};gj2810l;False;t3_kw26p3;False;True;t1_gj20v2u;/r/anime/comments/kw26p3/how_to_properly_help_a_girl_with_a_stiff_back_ore/gj2810l/;1610566975;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSasukeUchiha;;;[];;;;text;t2_93h3wouq;False;False;[];;I have enjoyed all of it. It’s not the best anime. But it’s solid, and something to watch.;False;False;;;;1610498402;;False;{};gj2826u;False;t3_kw4j0m;False;True;t3_kw4j0m;/r/anime/comments/kw4j0m/is_fire_force_season_2_worth_season_1s_watch/gj2826u/;1610566998;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;"[https://myanimelist.net/anime/4087/Michiko\_to\_Hatchin](https://myanimelist.net/anime/4087/Michiko_to_Hatchin) - -Has the same composer that Bebop and Champloo had. Similar adventure vibe to Champloo";False;False;;;;1610498422;;False;{};gj283iz;False;t3_kw4wif;False;True;t3_kw4wif;/r/anime/comments/kw4wif/hey_cant_decide_what_to_watch/gj283iz/;1610567023;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;"The lazy, half-assed requests this episode were hilarious. Marvel seemed irritated at the prospect of needing to hold her firepower, female general gal didn't give great instructions on whether Todd should engage with the hostage El, and Todd's reaction to possibly killing his boss's daughter was a little ""whoops!""";False;False;;;;1610498462;;False;{};gj2869v;False;t3_kw478y;False;False;t1_gj263bk;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj2869v/;1610567074;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Our_Lord_Bauer;;;[];;;;text;t2_502zwb6g;False;False;[];;"You’re attracted to Felix, it’s okay. - -***WE ALL ARE***";False;False;;;;1610498549;;False;{};gj28c28;False;t3_kw4xl1;False;False;t3_kw4xl1;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj28c28/;1610567187;18;True;False;anime;t5_2qh22;;0;[]; -[];;;KingKantor;;;[];;;;text;t2_16kupkr3;False;False;[];;Put it on my list! Thx!;False;False;;;;1610498590;;False;{};gj28erp;True;t3_kw4wif;False;True;t1_gj283iz;/r/anime/comments/kw4wif/hey_cant_decide_what_to_watch/gj28erp/;1610567241;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;Todd hasn't really been showing off though. If anything he's been pulled up for being too passive. Asuka would be raring for any chance to earn prestige.;False;False;;;;1610498608;;False;{};gj28fz2;False;t3_kw478y;False;True;t1_gj26746;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj28fz2/;1610567263;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ODMAN03;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Protogeist/;light;text;t2_16pj5i;False;False;[];;The anime industry relies largely on beautiful women who can be merchandised to hell, so that would be an unwise decision from a monetary standpoint, which is where executive producers and other people who are concerned with getting back their investments will be.;False;False;;;;1610498774;;False;{};gj28rbc;False;t3_kw4xl1;False;True;t3_kw4xl1;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj28rbc/;1610567487;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tircle;;;[];;;;text;t2_ktt80;False;False;[];;"**Rewatcher** - -We have finally reached the episode that hooked me on the series, I applaud those who have the self-control to stop themselves from binging the rest of the series. During my first watch-through, this was the first episode that really made me realize how invested I was into each of the characters and how immersed I was into this show. I am excited to see the first timer’s reaction to this and the rest of the show! - -Episode 17 and 18 create this unsettling tone and it feels like there is just a constant pit in your stomach during the entire watch through. Even during my first viewing, I just felt so uncomfortable with the atmosphere of these two episodes as the interactions between the characters worsen as Touji is made the fourth child. This atmosphere is purposeful once we reach the climax during the second half of the episode and we see Shinji fight Unit 04. We finally see the Dummy system in use as Ritsuko and Gendo have been throwing around that term for a couple episodes now. Even though this is a mecha anime, this fight is so brutal as we see Unit 01 obliterate Unit 04, with blood splattering everywhere and shots of the Nerv employee’s reactions. This scene is so gut wrenching and Shinji’s VA absolutely kills it. His screams are heart breaking, especially the one at the end of the episode where Misato finally reveals to him who the pilot is. I really like how throughout the series, there have been small glimmers of hope between Shinji and his father’s relationship, but it seems like Shinji has just been thrown off into the deep end. How are you going to forgive even your own father for making you basically kill another kid your age, now imagine that kid is your best friend. The payoff for these last two episodes is great and this episode hits just as hard as my first watch through. - -Again, we can connect the Hedgehog’s Dilemma back to this episode, especially with Shinji’s talk to Kaji. He tells him that no matter how well you think you know a person, there is never going to be a 100% understanding between the two of you, but all you can do is try your best to come close to it. We see this between Misato and Shinji, as she repeatedly fails to inform him of who the pilot of Unit 03 was, making the moment where Shinji finds out who was in the entry plug so much worse, and creating conflict between the two’s relationship. Misato is so scared of how Shinji is going to react, but by failing to tell him, the situation only worsens as he is forced to almost kill his best friend. This is also evident in the relationship between Touji and Shinji, as even he himself fails to tell Shinji that he has been chosen as the pilot of Unit 04, even though he is likely the only person to understand the hardships that Touji is going to face. This was such a great episode and an amazing climax. All the buildup and character building that led up to this moment made the last fight scene just so much better. I am excited to see the first-timers reaction to this episode and the ones after because the train never really stops rolling after this one.";False;False;;;;1610498837;;False;{};gj28vj0;False;t3_kw1ugh;False;False;t3_kw1ugh;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj28vj0/;1610567566;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mysteriouswitchgal17;;;[];;;;text;t2_5gyem0xu;False;False;[];;They are meant to be aesthetically beautiful, out-of-this-world, and ethereal to draw a lot of viewers and manga readers into the fandom. Yes, real life is ugly and foul compared to wholesome artwork on paper, but that is the whole point. Accept reality is ugly. We make something beautiful on paper. We get consumers by the world building and character designs on animated tv series, manga, fanart, etc. It provides our imagination an escape route --- an escape from the ugliness of our reality.;False;False;;;;1610498865;;False;{};gj28xdg;False;t3_kw4xl1;False;True;t3_kw4xl1;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj28xdg/;1610567601;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;"It's kinda funny to me how Drake doesn't suspect El of leaking info. She hasn't exactly been subtle and Chum has already attempted to kill his Aura pilots twice. All that and he buys her diving into bed fully dressed. - -I just want the characters to all get proper streamlined mecha... Gala's dumb Grendizer mech and Neal riding the Dunbine equivalent of the ball keeps throwing me off.";False;False;;;;1610498926;;False;{};gj291g1;False;t3_kw478y;False;True;t1_gj241ci;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj291g1/;1610567680;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Xawfire;;;[];;;;text;t2_1vp1cwr3;False;False;[];;Oregairu and kaguya-sama love is war are what you're looking for :);False;False;;;;1610498935;;False;{};gj29227;False;t3_kw4i35;False;True;t3_kw4i35;/r/anime/comments/kw4i35/hey_i_need_some_suggestions/gj29227/;1610567692;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;You're welcome. Creating an anime list is a good thing for everyone.;False;False;;;;1610498984;;False;{};gj2957v;False;t3_kw4i35;False;True;t1_gj27s14;/r/anime/comments/kw4i35/hey_i_need_some_suggestions/gj2957v/;1610567750;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thatcelloguy97;;;[];;;;text;t2_3bi5xctk;False;False;[];;Now I wish I had gotten mine done like this!;False;False;;;;1610499056;;False;{};gj29a3b;False;t3_kw4rii;False;False;t3_kw4rii;/r/anime/comments/kw4rii/manga_panel_for_tattoo/gj29a3b/;1610567849;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OmegaLol15;;;[];;;;text;t2_6iur4i57;False;False;[];;Commenting so I can leach of this post and steal the recommendations;False;False;;;;1610499104;;False;{};gj29dbo;False;t3_kw554v;False;False;t3_kw554v;/r/anime/comments/kw554v/what_is_a_good_anime_like_bunny_girl_senpai/gj29dbo/;1610567914;6;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;Apparently nobody knows how to rout an enemy in this world. Its the only way to explain Neal's giant battleship managing to escape so often.;False;False;;;;1610499123;;False;{};gj29en3;False;t3_kw478y;False;True;t1_gj27b23;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj29en3/;1610567938;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheCandyMan36;;;[];;;;text;t2_22i6fs;False;False;[];;i haven't actually watched bunny girl senpai but people always compare it to monogatari and that show's great;False;False;;;;1610499131;;False;{};gj29f6m;False;t3_kw554v;False;False;t3_kw554v;/r/anime/comments/kw554v/what_is_a_good_anime_like_bunny_girl_senpai/gj29f6m/;1610567948;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;Fiction and reality are different and it's okay to be different.;False;False;;;;1610499187;;False;{};gj29iv2;False;t3_kw4xl1;False;False;t3_kw4xl1;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj29iv2/;1610568017;6;True;False;anime;t5_2qh22;;0;[]; -[];;;blazingarrows64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/blazingarrows64;light;text;t2_41uoneqo;False;False;[];;Watch it asap. I do not care what you’re doing, just watch it.;False;False;;;;1610499275;;False;{};gj29oqm;True;t3_kw554v;False;True;t1_gj29f6m;/r/anime/comments/kw554v/what_is_a_good_anime_like_bunny_girl_senpai/gj29oqm/;1610568127;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;"> I was just wondering if they bumped up the writing staff's pay for the second season or something. - -That's not how it works. It's all adapted from a manga, from an established mangaka at that. It does get better as it goes, but if you don't care already I'm not sure how much you'll care going forward.";False;False;;;;1610499318;;False;{};gj29rog;False;t3_kw4j0m;False;True;t3_kw4j0m;/r/anime/comments/kw4j0m/is_fire_force_season_2_worth_season_1s_watch/gj29rog/;1610568182;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;Neal is considered the ace of the Given faction. Apparently he's a very good pilot despite always being on that stupid glider. I'm looking forward to seeing more of the rivalry between Neal and Bern. They are even after the same girl.;False;False;;;;1610499334;;False;{};gj29sr4;False;t3_kw478y;False;True;t1_gj27ny5;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj29sr4/;1610568200;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BroYouDroppedTheKek;;;[];;;;text;t2_8cjbse7w;False;False;[];;Doesn’t get good until about halfway through, just like season 1, but overall it was enjoyable. Introduced a lot of new characters and had some dope fights.;False;False;;;;1610499419;;False;{};gj29yd8;False;t3_kw4j0m;False;True;t3_kw4j0m;/r/anime/comments/kw4j0m/is_fire_force_season_2_worth_season_1s_watch/gj29yd8/;1610568305;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;"Space Dandy - -Outlaw Star - -El Cazador de la Bruja";False;False;;;;1610499487;;False;{};gj2a2t1;False;t3_kw4wif;False;True;t3_kw4wif;/r/anime/comments/kw4wif/hey_cant_decide_what_to_watch/gj2a2t1/;1610568386;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mysteriouswitchgal17;;;[];;;;text;t2_5gyem0xu;False;False;[];;The Promised Neverland, Re: Zero, Beastars, Dororo;False;False;;;;1610499494;;False;{};gj2a39y;False;t3_kw4wif;False;True;t3_kw4wif;/r/anime/comments/kw4wif/hey_cant_decide_what_to_watch/gj2a39y/;1610568394;1;True;False;anime;t5_2qh22;;0;[]; -[];;;baniRien;;;[];;;;text;t2_wxbyg;False;False;[];;"> Looks like Ougi will be giving the narration on the Planetarium, tho she talked more about astrology than astronomy. - -In a story about stories, is it really that surprising? - ->For example, Araragi once again repeats the line of ""If she said that it must be true"" - -She actually said that line though, in the dream sequence. Likewise, that one time in the classroom, the line had actually been said a bit before, but only in the LN - ->Sidenote, is it just me, or did Ougi's ghastly pale skin tone changed a bit to a normal fair one as they talked in front of the Araragi household? - -Didn't notice anything, personally, might just be the weird lighting.";False;False;;;;1610499512;;False;{};gj2a4i3;False;t3_kw1u5z;False;False;t1_gj1v06m;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj2a4i3/;1610568416;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Phil-Rogers;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/PhilRogers;dark;text;t2_4z5phxus;False;False;[];;"Kaichou wa Maid-Sama - -Masamune kun no Revenge - -Nisekoi - -Toradora - -Uzaki-chan wants to hang out - -Snow white with red hair - -Yamada and the 7 witches - -Are all the rom-coms that come to mind";False;False;;;;1610499525;;False;{};gj2a5c4;False;t3_kw554v;False;True;t3_kw554v;/r/anime/comments/kw554v/what_is_a_good_anime_like_bunny_girl_senpai/gj2a5c4/;1610568431;2;True;False;anime;t5_2qh22;;0;[]; -[];;;News_or_Not;;;[];;;;text;t2_9ijrya79;False;False;[];;I havent watched bunny girl sempai but i reccomend Darling in the FRANXX;False;False;;;;1610499581;;False;{};gj2a8zd;False;t3_kw554v;False;True;t3_kw554v;/r/anime/comments/kw554v/what_is_a_good_anime_like_bunny_girl_senpai/gj2a8zd/;1610568499;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;Bunny girl sending is inspired by Monogatari, the plot is identical to the first season (Bakemonogatari) tbh;False;False;;;;1610499581;;False;{};gj2a8zv;False;t3_kw554v;False;False;t3_kw554v;/r/anime/comments/kw554v/what_is_a_good_anime_like_bunny_girl_senpai/gj2a8zv/;1610568499;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Runi_Naast;;;[];;;;text;t2_3ntls0k6;False;False;[];;They really dropped the ball not having him and Mia stay in the current timeline inside of freaking going to a timeline where there would be two of them, same age and everything.;False;False;;;;1610499595;;False;{};gj2a9wn;False;t3_kw53at;False;True;t3_kw53at;/r/anime/comments/kw53at/i_wish_future_trunks_was_more_of_an_actual/gj2a9wn/;1610568517;1;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;"Nah. Part of why I like anime is the attractive aesthetics, as oppose to the common western trend of making things intentionally ugly/bad looking. - -Also, I wouldn't rly call Kaiji ""ugly"" as much as just stylized. There are plenty of shows w/ unique styles in that regard, like clamp shows, kakushigoto/szs, trigger shows, ghibli movies, etc.";False;False;;;;1610499662;;False;{};gj2aeg2;False;t3_kw4xl1;False;False;t3_kw4xl1;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj2aeg2/;1610568600;4;True;False;anime;t5_2qh22;;0;[]; -[];;;KingKantor;;;[];;;;text;t2_16kupkr3;False;False;[];;"On the list! <3";False;False;;;;1610499669;;False;{};gj2aewr;True;t3_kw4wif;False;True;t1_gj2a2t1;/r/anime/comments/kw4wif/hey_cant_decide_what_to_watch/gj2aewr/;1610568610;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nowuh7;;;[];;;;text;t2_4axi6fm5;False;False;[];;"Yuna & kawachan";False;False;;;;1610499671;;False;{};gj2af0k;False;t3_kw4sov;False;True;t3_kw4sov;/r/anime/comments/kw4sov/trying_to_find_a_certain_comic/gj2af0k/;1610568613;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KingKantor;;;[];;;;text;t2_16kupkr3;False;False;[];;Awesome!;False;False;;;;1610499685;;False;{};gj2afxl;True;t3_kw4wif;False;True;t1_gj2a39y;/r/anime/comments/kw4wif/hey_cant_decide_what_to_watch/gj2afxl/;1610568628;2;True;False;anime;t5_2qh22;;0;[]; -[];;;baniRien;;;[];;;;text;t2_wxbyg;False;False;[];;There's two sides to a genius tactician: planning well, and being able to react to the unpredictable;False;False;;;;1610499736;;False;{};gj2ajcb;False;t3_kw1u5z;False;False;t1_gj1zje3;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj2ajcb/;1610568689;5;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"I mean depends on what you mean by uglier. Honestly there isn't anything wrong with idealism. I think it depends on what the series is going for. Series that are trying to deal with more grounded subjects sure maybe not everyone needs to be super attractive. - -What I will say is sure I would like more varied character designs having more skin features or more older characters, scarred etc doesn't mean they are ugly though. Some one will find it attractive. So again that's a hard definition. - -That said even though some cases I have enjoyed it I don't want anime moving more towards caricatures I like a more grounded art style. Western animation tends to do this more and I am not usually a fan. Even a lot of Western animated art styles I like are ones that are more ""grounded"" but also could be considered idealized like Tartakovsky's work on Clone Wars or Bruce Timm on Batman.";False;False;;;;1610499914;;False;{};gj2avb4;False;t3_kw4xl1;False;True;t3_kw4xl1;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj2avb4/;1610568910;1;True;False;anime;t5_2qh22;;0;[]; -[];;;candyappi3s;;;[];;;;text;t2_8m6mhzt2;False;False;[];;Oh sorry not that one it has his little girl in a rabbit suit with the strong black guy in a giant rabbit suit with the little girl riding on the guy back with the other friends in a duck mascot;False;False;;;;1610499918;;False;{};gj2avl6;True;t3_kw4sov;False;True;t1_gj2af0k;/r/anime/comments/kw4sov/trying_to_find_a_certain_comic/gj2avl6/;1610568915;1;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;"> Drake is not the only one summoning people from Upper Earth - -It would seem to be dependent on what Ferario there are to do it. Silky is doing it under duress, but not knowing the Ferario, I could imagine some angry fairy warlord summoning a bunch of Upper Earthers to exact revenge.";False;False;;;;1610499936;;False;{};gj2awpg;False;t3_kw478y;False;False;t1_gj256on;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj2awpg/;1610568935;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;"In terms of character development (which was Attack on Titan's weakest aspect up until Season 4) and it's plot, Attack on Titan is leagues ahead. - -The Demon Slayer plot is very by the numbers and follows a predictable formula found in a lot of battle-shounen. In saying that, The Red Light District Arc, which is the next to be adapted could be a banger, as it's peak Demon Slayer imo. - -In terms of popularity in Japan, Demon Slayer has been THE anime for about 18 months now. Ridiculous amounts of merchandise sales, manga sales, ticket sales for the movie, and sure to get either another movie or a S2 adaptation. - -Despite that, it still hasn't generated the same level of mainstream popularity that S1 of Attack on Titan did in North American or Europe, so it remains to be seen whether that will happen or not. - -Good video though, I've left a like!";False;False;;;;1610499980;;1610500674.0;{};gj2azlx;False;t3_kw362e;False;True;t3_kw362e;/r/anime/comments/kw362e/honestly_i_think_demon_slayer_is_the_one_anime_to/gj2azlx/;1610568988;1;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;"If it's a fiction that that tries to be realistic then it's not super okay. - -Re: Zero has the fantasy setting excuse, although it establishes in episode 1 that the humans in the isekai are normal in appearance and average joes exist (bandits, shopkeepers). Just the ones surrounding the MC are not average. - -But what about something like Hyouka which obviously aims for a grounded realistic setting in Japan? The school just looks like some academy for the beautiful, rather than what they're trying to convey.";False;False;;;;1610499981;;False;{};gj2azpu;True;t3_kw4xl1;False;True;t1_gj29iv2;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj2azpu/;1610568990;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;">Todd's reaction to possibly killing his boss's daughter was a little ""whoops!"" - -He still has his mulligan. No biggie.";False;False;;;;1610499984;;False;{};gj2azvu;False;t3_kw478y;False;False;t1_gj2869v;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj2azvu/;1610568994;4;True;False;anime;t5_2qh22;;0;[]; -[];;;baniRien;;;[];;;;text;t2_wxbyg;False;False;[];;"> The monogatari series is interconection incarnate. - -It is a known fact that NisiOisiN writes in this order: First he makes up a cool character name, full of puns and weird kanji. Then he invents what kind of character fits this name. And finally he places them in a story.";False;False;;;;1610499988;;False;{};gj2b03v;False;t3_kw1u5z;False;False;t1_gj1zpfw;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj2b03v/;1610568999;8;True;False;anime;t5_2qh22;;0;[]; -[];;;blazingarrows64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/blazingarrows64;light;text;t2_41uoneqo;False;False;[];;Thanks, but I already watched it.;False;False;;;;1610499995;;False;{};gj2b0n5;True;t3_kw554v;False;True;t1_gj2a8zd;/r/anime/comments/kw554v/what_is_a_good_anime_like_bunny_girl_senpai/gj2b0n5/;1610569008;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rigoku;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Elitar;light;text;t2_2j07de1;False;False;[];;"Well, future Trunks literally changed history. And because of his actions he created 4 different timelines (in DBS even more, but fuck DBS). Also he was never a pussy like ""our"" Trunks";False;False;;;;1610500105;;False;{};gj2b7r3;False;t3_kw53at;False;True;t3_kw53at;/r/anime/comments/kw53at/i_wish_future_trunks_was_more_of_an_actual/gj2b7r3/;1610569139;2;True;False;anime;t5_2qh22;;0;[]; -[];;;baquea;;;[];;;;text;t2_j3k0u;False;True;[];;The more attractive art style is one of the main reasons I prefer anime over Western cartoons lol.;False;False;;;;1610500147;;False;{};gj2bahn;False;t3_kw4xl1;False;True;t3_kw4xl1;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj2bahn/;1610569189;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi asilvertintedrose, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610500160;moderator;False;{};gj2bbb5;False;t3_kw5h62;False;True;t3_kw5h62;/r/anime/comments/kw5h62/what_do_you_think_is_the_future_of_aot_and_its/gj2bbb5/;1610569202;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Btw_kek;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SouvlakiSpace7;light;text;t2_i0pj6;False;False;[];;"**first timer who's late because I needed several hours to process the finale of SSSS.Gridman** - -* so we got the lands of Ah, Mi, and Ku so far. very original names - -* something about declining morals of Byston Well. What’s Garou Ran? - -* purple hair girl is written as Elmelie in the subs but as Riml on MAL. Gotcha - -* also she’s going to be arranged to marry Bern Bunnings but she’s in love with Neal Given. Got it - -* where even are these “houses” in relation to everything else? I wish we had a map of Byston Well somewhere - -* [every single time this happens in a mecha show I get like terrified the hand is going to crush the person in it.](https://imgur.com/fBSkoBp) like *especially* if there’s fighting involved - -* [catch scene incoming](https://imgur.com/XlBCEKp) [](#concealedexcitement) - -* [FLASHES **YAMEROOOO**](#sobright) - -* oh ok nevermind! Theyre both fucked! - -* wowie what a cliffhanger - -* [next ep preview](/s ""ok this is the third Tomino show I've seen where a girl gets a bunch of leeches on her in a forest, possibly fourth but I do not remember such a scene in Gundam. also ""Boneless Mountain"""") [](#laughter) - ->Did you expect the timing of Show's defection? - -That was quick! Expected some more mulling over - ->With their manor destroyed and having to abandon their means of production, how well do you think the Givens will hold against Drake's forces? - -[](#hisocuck)";False;False;;;;1610500251;;False;{};gj2bhbj;False;t3_kw478y;False;True;t3_kw478y;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj2bhbj/;1610569315;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Rigoku;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Elitar;light;text;t2_2j07de1;False;False;[];;Do whatever you want. But don't call yourself a DB fan (or hater) because DBS is pure shit, so you can't judge entire anime because of 1 serie.;False;False;;;;1610500418;;False;{};gj2bsg7;False;t3_kw21xj;False;False;t3_kw21xj;/r/anime/comments/kw21xj/hey_can_i_directly_watch_dragon_ball_super/gj2bsg7/;1610569526;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Draco_Estella;;MAL;[];;https://myanimelist.net/animelist/Estella_Rin;dark;text;t2_t7ptj;False;False;[];;"Realistic fiction is still fiction, is it not? It will be troublesome if anyone treats fiction as an accurate reflection of irl. Art imitates life, but art isn't life. - -And what the hell is Hyouka trying to convey? I am sure it isn't one objective answer which you think everyone shares with you.";False;False;;;;1610500520;;False;{};gj2bzcw;False;t3_kw4xl1;False;False;t1_gj2azpu;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj2bzcw/;1610569654;5;True;False;anime;t5_2qh22;;0;[]; -[];;;SapiMan;;;[];;;;text;t2_5y0iyzwc;False;False;[];;That's what Ononoki questioned in one of the audio commentary. (I think it was in Mail?) Which is she? Did she actually plan everything because she already knew and predicted what would happen, or did she actually just adapt to the situation? That's what got me thinking, due to how much she actually benefitted.;False;False;;;;1610500521;;False;{};gj2bzhk;False;t3_kw1u5z;False;False;t1_gj2ajcb;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj2bzhk/;1610569657;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Harpr33t-Singh;;;[];;;;text;t2_2xgwk401;False;False;[];;"Fuck - -That fight... - -Toji's capsule getting crushed... - -Misato trying to tell Shinji he killed his friend.... - -Fuck, this was a great episode - -Ok the episode opened up showing Unit 03's transfer to Japan which honestly when i heard the english dialogue i first thought the dub had changed from Japanese to English on its own :p. We see the air carrier entering a cloud where a flash of lightning appears (a horizontal one, mind you) so we get an inkling there might be something up. - -Then the fight. Wow. It got real for me when Asuka tries to tell Shinji that Toji is in the Eva but she gets cut off (by the way, which may have been done by the asshole of the year awardee Gendo since we don't hear Asuka screaming till a couple of seconds later). The shot of Asuka's eva down really did it for me. That angel is tough! Then Rei trying to shoot the angel knowing Toji is in it and hesitating. Man, not just blindly following orders. Rei is growing up! But then the Eva jumps (in a weird way) and attacks her. Then gendo gets her arm dismantled without breaking Rei's neural connections. Ouch. Then it gooes after Shinji and after the dummy plug, whoa. The gore, the voilence, berserker Unit 01..... serious stuff. Really, very few animes have invoked this feeling of wide-eyed shock in me. Damn. Man, fucker even crushed Toji's capsule. I mean, try to think what Shinji might have felt watching that up close. And he wasn't even just a watcher like everybody else at NERV. Evas are neurally connected to each pilot. They feel the eva. Everything eva feels, the pilot feels it too. Its not just Eva's hands that do stuff. They are an extension of the pilot's arms (again, because of that neural link). So seeing that must be like Shinji's own hands had been used against his will to kill another human. Must've been rough. - -Also, after confirmation of Angel's death, we cut right to Hikari's appartment. Dick move, Gainax. - -Last scene.... Just great. Eye movement scene was dope. Shinji's VA is awesome. - -___ - -Qotd - -I think Kaji. He's the only other character who has shared enough screen time for us to get to know him to an extent. He's cool and has shared some bits of wisdon here and there with Shinji.";False;False;;;;1610500574;;False;{};gj2c2zo;False;t3_kw1ugh;False;False;t3_kw1ugh;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj2c2zo/;1610569723;13;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;"I'm not so sure. Ghibli is insanely popular for all age groups and doesn't rely on weirdly beautiful characters. One Piece's characters are mostly goofy looking and it's the most popular anime that's not exclusively for kids. - -I'm not saying to abolish all shows that cater to otakus that need to see beautiful women on screen to have interest. I'm saying to tone it down for shows that aim for a realistic setting, like Kyoto Animation shows.";False;False;;;;1610500631;;False;{};gj2c6rp;True;t3_kw4xl1;False;True;t1_gj28rbc;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj2c6rp/;1610569793;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rorate_Caeli;;;[];;;;text;t2_qw271;False;False;[];;no. Anime is entertainment. Entertainment is meant to be enjoyed. Most people like attractive things and enjoy them.;False;False;;;;1610500636;;False;{};gj2c73f;False;t3_kw4xl1;False;True;t3_kw4xl1;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj2c73f/;1610569799;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nirvash530;;;[];;;;text;t2_144ub9;False;False;[];;"This is the ""The Room"" of anime. It's so bad it's good.";False;False;;;;1610500732;;False;{};gj2cdgq;False;t3_kw4o33;False;False;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj2cdgq/;1610569921;51;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610500740;moderator;False;{};gj2ce18;False;t3_kw5nfh;False;True;t3_kw5nfh;/r/anime/comments/kw5nfh/where_can_i_find_gintama_fully_dubbed/gj2ce18/;1610569931;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Kaziezz;;;[];;;;text;t2_qyqfw;False;False;[];;Yu Yu Hakusho;False;False;;;;1610500781;;False;{};gj2cgq6;False;t3_kw4wif;False;True;t3_kw4wif;/r/anime/comments/kw4wif/hey_cant_decide_what_to_watch/gj2cgq6/;1610569980;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;"Toradora - -Blue spring ride - -These two animes have a similar atmosphere";False;False;;;;1610500884;;False;{};gj2cnqp;False;t3_kw554v;False;True;t3_kw554v;/r/anime/comments/kw554v/what_is_a_good_anime_like_bunny_girl_senpai/gj2cnqp/;1610570115;1;True;False;anime;t5_2qh22;;0;[]; -[];;;big-dick-energy11;;;[];;;;text;t2_4y5i4bnb;False;False;[];;Rent-a-girlfriend;False;False;;;;1610500936;;False;{};gj2cr6t;False;t3_kw4i35;False;True;t3_kw4i35;/r/anime/comments/kw4i35/hey_i_need_some_suggestions/gj2cr6t/;1610570182;2;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;"When I want an escape I'd watch Gurren Lagann or K-On. And it's okay for those! The former is a show that explicitly never cares about any kind of logic, and the latter is specifically about cute girls doing cute things as the premise. - -But when I don't want to escape but rather want to be absorbed into a setting I can understand and relate with, such as in Attack of Titan (yes, it's unrealistic, but it has very grounded and relatable humans and a very consistent internal logic), or Hyouka, or Haikyuu, then I surely want character designs to have more personality than just perfection.";False;False;;;;1610501026;;False;{};gj2cx3r;True;t3_kw4xl1;False;True;t1_gj28xdg;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj2cx3r/;1610570297;2;True;False;anime;t5_2qh22;;0;[]; -[];;;YoungSaitama;;;[];;;;text;t2_1g3bnrbx;False;False;[];;Nowhere it doesnt exist only the first 49 episodes and the 4th season have been dubbed;False;False;;;;1610501082;;False;{};gj2d0ut;False;t3_kw5nfh;False;True;t3_kw5nfh;/r/anime/comments/kw5nfh/where_can_i_find_gintama_fully_dubbed/gj2d0ut/;1610570368;3;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;Anime is an artistic medium, which isn't limited to entertainment.;False;False;;;;1610501131;;False;{};gj2d45d;True;t3_kw4xl1;False;True;t1_gj2c73f;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj2d45d/;1610570427;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> AOT, HXH are the ones that stand over the other anime that came out. - -What do you mean?? What about Demon Slayer? My money is on Re:Zero, since it's only second to Demon Slayer in LN sells.";False;False;;;;1610501148;;False;{};gj2d5a2;False;t3_kw5h62;False;False;t3_kw5h62;/r/anime/comments/kw5h62/what_do_you_think_is_the_future_of_aot_and_its/gj2d5a2/;1610570448;10;True;False;anime;t5_2qh22;;0;[]; -[];;;babydave371;;MAL a-amq;[];;https://myanimelist.net/profile/babydave371;dark;text;t2_sak6n;False;False;[];;"Honestly I think its main impact has already happened and anything following that is just a ""well that was a good show"" kinda thing. - -The big impact it had was in really hitting the mainstream in a way no anime since naruto had, and only MHA has done since. It was art of a wave of several very popular anime in the early 2010s which were at forefront of pushing anime's popularity in the West, the rise of streaming was the other big factor.";False;False;;;;1610501204;;False;{};gj2d96f;False;t3_kw5h62;False;False;t3_kw5h62;/r/anime/comments/kw5h62/what_do_you_think_is_the_future_of_aot_and_its/gj2d96f/;1610570525;7;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;"Idk, aesthetic blogs have always existed so shrug. I'd not call them ""indie anime"" as that means something else entirely tho (generally in reference to small/independent JP animators).";False;False;;;;1610501217;;False;{};gj2da1w;False;t3_kw5qxg;False;True;t3_kw5qxg;/r/anime/comments/kw5qxg/opinions_on_recent_indie_anime_youtubers/gj2da1w/;1610570543;2;True;False;anime;t5_2qh22;;0;[]; -[];;;acaipie;;;[];;;;text;t2_3006tlol;False;False;[];;"i’d like to add more opinions but felt the post would be too long HAHAHA - -the style of video is extremely pretty but so boring for me,,, i can really only sit through iwazumin’s videos just bc they’re from freaking iwazumin, the god that inspired a million channels to make vlogs that look The Exact Same LMAOO but i really can only stand their videos — maybe this is why the other attempts don’t have any videos above 5k 🤧";False;False;;;;1610501247;;False;{};gj2dc22;True;t3_kw5qxg;False;True;t3_kw5qxg;/r/anime/comments/kw5qxg/opinions_on_recent_indie_anime_youtubers/gj2dc22/;1610570582;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RxMidnight;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/RxMidnight;light;text;t2_77kf70hc;False;False;[];;"**First Timer** - --Darn it, I wanted to hear the karaoke version of Fukatome and Araragi's rendition of Chocolate Insomnia. - --Step up your game Araragi. Dying is no excuse not to have a gift prepared for your girlfriend on White Day. - --At last, the ""call me by my first name"" scene. Well technically Araragi has already called her Hitagi before but Senjougahara has only used pet nicknames like Koyokoyo. - --Ougi-chan what are you really? Hard to imagine Araragi actually siding with her considering Shinobu is on Gaen's side, but we already know from Hanamonogatari that Ougi survives the upcoming conflict.";False;False;;;;1610501247;;False;{};gj2dc2i;False;t3_kw1u5z;False;False;t3_kw1u5z;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj2dc2i/;1610570582;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Im-Pico;;;[];;;;text;t2_3vbn11u7;False;False;[];;Going through their channel they seem to be less of an anime channel and more just a vlog channel about the dudes personal life.;False;False;;;;1610501270;;False;{};gj2ddkq;False;t3_kw5qxg;False;True;t3_kw5qxg;/r/anime/comments/kw5qxg/opinions_on_recent_indie_anime_youtubers/gj2ddkq/;1610570612;1;True;False;anime;t5_2qh22;;0;[]; -[];;;babydave371;;MAL a-amq;[];;https://myanimelist.net/profile/babydave371;dark;text;t2_sak6n;False;False;[];;I'd certainly like more variety. One of the reasons I like older anime is that you do get more variety in body and face types then you'll typically see in a modern cast.;False;False;;;;1610501294;;False;{};gj2df3c;False;t3_kw4xl1;False;True;t3_kw4xl1;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj2df3c/;1610570642;2;True;False;anime;t5_2qh22;;0;[]; -[];;;baquea;;;[];;;;text;t2_j3k0u;False;True;[];;"> only the first 49 episodes and the 4th season have been dubbed - -What on Earth led them to do it like that?";False;False;;;;1610501358;;False;{};gj2dj8w;False;t3_kw5nfh;False;True;t1_gj2d0ut;/r/anime/comments/kw5nfh/where_can_i_find_gintama_fully_dubbed/gj2dj8w/;1610570724;2;True;False;anime;t5_2qh22;;0;[]; -[];;;acaipie;;;[];;;;text;t2_3006tlol;False;False;[];;"omg my bad, i didn’t know that :’) - searching “indie anime vlog” actually brings up dozens of these videos and the hashtags in their descriptions call them that so i thought it would be the best thing to call them";False;False;;;;1610501387;;False;{};gj2dl4q;True;t3_kw5qxg;False;True;t1_gj2da1w;/r/anime/comments/kw5qxg/opinions_on_recent_indie_anime_youtubers/gj2dl4q/;1610570761;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Eskaminagaga;;;[];;;;text;t2_k6iql;False;False;[];;Trigun;False;False;;;;1610501409;;False;{};gj2dmnu;False;t3_kw5u7j;False;True;t3_kw5u7j;/r/anime/comments/kw5u7j/im_looking_for_some_anime_with_good_gunplay/gj2dmnu/;1610570789;3;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 150, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Thank you stranger. Shows the award.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'icon_width': 2048, 'id': 'award_f44611f1-b89e-46dc-97fe-892280b13b82', 'is_enabled': True, 'is_new': False, 'name': 'Helpful', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610501473;moderator;False;{};gj2dqwa;False;t3_kw5uqu;False;True;t3_kw5uqu;/r/anime/comments/kw5uqu/can_anyone_give_me_the_title_of_this_anime/gj2dqwa/;1610570868;1;False;False;anime;t5_2qh22;;1;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;"Hulu dubbed Season 1 but it's horrible and sounds like it came out 20 years ago - -There's a dub for like Season 4 or something on Crunchyroll but they only dubbed one season - -So answer is you can't";False;False;;;;1610501503;;1610502042.0;{};gj2dswa;False;t3_kw5nfh;False;True;t3_kw5nfh;/r/anime/comments/kw5nfh/where_can_i_find_gintama_fully_dubbed/gj2dswa/;1610570905;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;Black Lagoon;False;False;;;;1610501518;;False;{};gj2dtw0;False;t3_kw5u7j;False;False;t3_kw5u7j;/r/anime/comments/kw5u7j/im_looking_for_some_anime_with_good_gunplay/gj2dtw0/;1610570926;7;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;tfw when your gf sends you to hell because you were busy with escaping hell and forgot the present;False;False;;;;1610501579;;False;{};gj2dxus;True;t3_kw1u5z;False;False;t1_gj2dc2i;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj2dxus/;1610571004;7;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi spudz1203, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610501655;moderator;False;{};gj2e300;False;t3_kw5x7a;False;True;t3_kw5x7a;/r/anime/comments/kw5x7a/we_need_a_new_version_of_the_anime_recommendation/gj2e300/;1610571102;1;False;False;anime;t5_2qh22;;0;[]; -[];;;ComfortablyRotten;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Leuwtian;light;text;t2_78zrok5y;False;False;[];;"**First timer**, late by a hour and a half - -Show's right, having a parade after an one-sided attack isn't exactly the most sensitive thing*. Did Drake outright call out Todd for being useless? - -Yes! I expected both Show and the House of Given to take forever to acknowledge each others, glad to see they're both starting to understand this soon. That said, Show acting out means he gets even more of Bern's animosity, not that it matters since he defected. I'm expecting some good conflict coming from that. - -I almost thought Show and the remaining Givens went back to not trusting each others during the latter battle... luckily, neither Show nor Marvel are too stubborn. But with the princess lost in the forest, I guess they'd have to team up to find her, either way. - -**Questions of the day** - -1) Not at all, that was fast! I expected around three more episodes at the earliest... - -2) They're pretty much outmatched, so my guess is not very well.";False;False;;;;1610501663;;1610503766.0;{};gj2e3ht;False;t3_kw478y;False;False;t3_kw478y;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj2e3ht/;1610571111;4;True;False;anime;t5_2qh22;;0;[]; -[];;;resynx;;;[];;;;text;t2_deby33g;False;False;[];;+1 for Re:life. Absolutely loved this anime.;False;False;;;;1610501707;;False;{};gj2e6k2;False;t3_kw4i35;False;True;t1_gj26kkm;/r/anime/comments/kw4i35/hey_i_need_some_suggestions/gj2e6k2/;1610571170;2;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;"Kaiji is stylized, sure, but the point is that it has variety in sizes and shapes of facial features. - -In most anime all characters have a perfect little triangle as a nose. In Kaiji the nose can be big and round, or have a nasal ridge that juts out, etc. Same amount of variety applies to hairlines and hairstyles, angle and size of the eyes, etc. Very few characters look near perfect, which mimics reality. - -This trend in anime just feels out of place for any show that aims to be realistic, like Hyouka.";False;False;;;;1610501718;;False;{};gj2e7ap;True;t3_kw4xl1;False;False;t1_gj2aeg2;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj2e7ap/;1610571185;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KingKantor;;;[];;;;text;t2_16kupkr3;False;False;[];;Nice thanks!;False;False;;;;1610501746;;False;{};gj2e91m;True;t3_kw4wif;False;True;t1_gj2cgq6;/r/anime/comments/kw4wif/hey_cant_decide_what_to_watch/gj2e91m/;1610571216;1;True;False;anime;t5_2qh22;;0;[]; -[];;;babydave371;;MAL a-amq;[];;https://myanimelist.net/profile/babydave371;dark;text;t2_sak6n;False;False;[];;Then do it.;False;False;;;;1610501757;;False;{};gj2e9rv;False;t3_kw5x7a;False;False;t3_kw5x7a;/r/anime/comments/kw5x7a/we_need_a_new_version_of_the_anime_recommendation/gj2e9rv/;1610571229;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Cynderaquil;;;[];;;;text;t2_3hyccqum;False;False;[];;Well, they made a movie about him and his drive to change the past.;False;False;;;;1610501759;;False;{};gj2e9wz;False;t3_kw53at;False;True;t3_kw53at;/r/anime/comments/kw53at/i_wish_future_trunks_was_more_of_an_actual/gj2e9wz/;1610571233;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nghtmare-Moon;;;[];;;;text;t2_jsig9;False;False;[];;"The gore, the voilence, berserker Unit 01..... serious stuff. Really, very few animes have invoked this feeling of wide-eyed shock in me. - -hehe. . .you're in for a treat brother.";False;False;;;;1610501820;;False;{};gj2edvu;False;t3_kw1ugh;False;True;t1_gj2c2zo;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj2edvu/;1610571306;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sodra;;MAL a-amq;[];;https://myanimelist.net/profile/sodra;dark;text;t2_5o34w;False;False;[];;"There was talk about redoing it a while ago, but it's a pretty big endeavor. There's [this thread from 9 months ago from the creator of it.](https://www.reddit.com/r/anime/comments/fz4j2a/updating_the_recommednation_flowchart/) - -Still a pretty good introduction to anime either way. Anyone should be able to enjoy a lot of the shows on there.";False;False;;;;1610501875;;False;{};gj2ehij;False;t3_kw5x7a;False;False;t3_kw5x7a;/r/anime/comments/kw5x7a/we_need_a_new_version_of_the_anime_recommendation/gj2ehij/;1610571376;11;True;False;anime;t5_2qh22;;0;[]; -[];;;blazingarrows64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/blazingarrows64;light;text;t2_41uoneqo;False;False;[];;I haven’t heard of blue spring ride, is it good?;False;False;;;;1610501975;;False;{};gj2enz1;True;t3_kw554v;False;False;t1_gj2cnqp;/r/anime/comments/kw554v/what_is_a_good_anime_like_bunny_girl_senpai/gj2enz1/;1610571495;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spudz1203;;;[];;;;text;t2_38t77leo;False;False;[];;No because I'm not good at editing;False;False;;;;1610501992;;False;{};gj2ep2q;True;t3_kw5x7a;False;True;t1_gj2e9rv;/r/anime/comments/kw5x7a/we_need_a_new_version_of_the_anime_recommendation/gj2ep2q/;1610571514;0;True;False;anime;t5_2qh22;;0;[]; -[];;;_Zig;;;[];;;;text;t2_r3byl;False;False;[];;"Lmao - -/r/animecirclejerk - -Genuinely unsure if this is good satire or a legitimate post. - -Arigatou for your contribution";False;False;;;;1610502116;;False;{};gj2ex99;False;t3_kw5h62;False;True;t3_kw5h62;/r/anime/comments/kw5h62/what_do_you_think_is_the_future_of_aot_and_its/gj2ex99/;1610571674;7;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;This animation is far better than Jujutsu Kaisen.;False;False;;;;1610502132;;False;{};gj2eybx;False;t3_kw4o33;False;False;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj2eybx/;1610571694;67;True;False;anime;t5_2qh22;;0;[]; -[];;;spudz1203;;;[];;;;text;t2_38t77leo;False;False;[];;True. It would be a large task and with so many anime some popular ones will get left out;False;False;;;;1610502161;;False;{};gj2f0a7;True;t3_kw5x7a;False;False;t1_gj2ehij;/r/anime/comments/kw5x7a/we_need_a_new_version_of_the_anime_recommendation/gj2f0a7/;1610571732;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Educational-Mix-2037;;;[];;;;text;t2_9sjzcajz;False;False;[];;It has nothing to do with spoilers. I literally quoted the violated rule above.;False;False;;;;1610502175;;False;{};gj2f18i;False;t3_kw26p3;False;True;t1_gj2810l;/r/anime/comments/kw26p3/how_to_properly_help_a_girl_with_a_stiff_back_ore/gj2f18i/;1610571750;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;Yeah my favourite romance anime tbh. It’s drama and SoL and also has comedy in it. Its about female mc and male mc knowing eachother as children then get separated by an ‘incident’ they unite through fate again in highschool, however both of them have changed, especially the male mc. Definitely worth the watch if you wanna get into the feels. Plus the male mc is so cute ....;False;False;;;;1610502188;;False;{};gj2f244;False;t3_kw554v;False;True;t1_gj2enz1;/r/anime/comments/kw554v/what_is_a_good_anime_like_bunny_girl_senpai/gj2f244/;1610571766;3;True;False;anime;t5_2qh22;;0;[]; -[];;;metalmonstar;;;[];;;;text;t2_55yjk;False;False;[];;"I wish I understood why some characters are 2D and others are 3D. - -Also the scene of his ghost sliding out of her will never not be funny.";False;False;;;;1610502206;;False;{};gj2f3bz;False;t3_kw4o33;False;False;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj2f3bz/;1610571792;37;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;"Hyouka tries to convey a down to earth school experience with relatable characters and some light mysteries in which logic dictates any outcome. - -I.e., a world in which probability matters, and so the chances of 10/10 people being beautiful should be very low. - -Anyway, I don't really see why one can't have standards for how art ought to imitate life. My standard is simply to follow any implied internal logic.";False;False;;;;1610502298;;False;{};gj2f9gm;True;t3_kw4xl1;False;True;t1_gj2bzcw;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj2f9gm/;1610571910;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610502346;moderator;False;{};gj2fcl6;False;t3_kw64o3;False;True;t3_kw64o3;/r/anime/comments/kw64o3/anyone_able_to_tell_me_what_this_is_from/gj2fcl6/;1610571968;1;False;False;anime;t5_2qh22;;0;[]; -[];;;spikiestknight;;;[];;;;text;t2_2e4o4pn6;False;False;[];;"""strippers""?";False;False;;;;1610502396;;False;{};gj2ffvu;True;t3_kw4i35;False;True;t1_gj2cr6t;/r/anime/comments/kw4i35/hey_i_need_some_suggestions/gj2ffvu/;1610572031;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sodra;;MAL a-amq;[];;https://myanimelist.net/profile/sodra;dark;text;t2_5o34w;False;False;[];;[Macross Plus](https://myanimelist.net/anime/474/Macross_Plus);False;False;;;;1610502446;;False;{};gj2fj5f;False;t3_kw64o3;False;True;t3_kw64o3;/r/anime/comments/kw64o3/anyone_able_to_tell_me_what_this_is_from/gj2fj5f/;1610572095;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Devin__;;;[];;;;text;t2_hx0lq;False;False;[];;Makes the Kimetsu no Yaiba movie look like it was made by preschoolers, tbh.;False;False;;;;1610502578;;False;{};gj2fsaa;False;t3_kw4o33;False;False;t1_gj2eybx;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj2fsaa/;1610572276;57;True;False;anime;t5_2qh22;;0;[]; -[];;;A_SPLIT_IN_THE_ANUS;;;[];;;;text;t2_8w2tm9ox;False;False;[];;"I sort of agree and would like to see a couple companies try to change the attractive aesthetics. Doesn't mean they should make them ugly, but rather don't have them be a 1000/10 on sex appeal. - -Examples done well here in the west is Gravity Falls (tho Wendy do be kinda bad), Final Space, Adventure Time, etc. - -The character designs aren't ugly but they aren't drawn in a way with the clear intentions of looking amazingly gorgeous. Rather the designs are unique and interesting and I would love to see this try to be incorporated more into anime.";False;False;;;;1610502648;;False;{};gj2fx09;False;t3_kw4xl1;False;True;t3_kw4xl1;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj2fx09/;1610572368;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dkda0;;;[];;;;text;t2_6hr849ve;False;False;[];;Different generation. AOT is a terrible anime. The art is good, but the plot is horrible. But like I said, Different generation. I grew up with sailor moon and the like;False;False;;;;1610502775;;False;{};gj2g5bn;False;t3_kw5h62;False;True;t3_kw5h62;/r/anime/comments/kw5h62/what_do_you_think_is_the_future_of_aot_and_its/gj2g5bn/;1610572538;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Harpr33t-Singh;;;[];;;;text;t2_2xgwk401;False;False;[];;" ->I applaud those who have the self-control to stop themselves from binging the rest of the series. - -Well, thank you very much!!! ୧(^ 〰 ^)୨ - - ->this was the first episode that really made me realize how invested I was into each of the characters and how immersed I was into this show - -Right?!! Sometimes you just don't realise how much invested you are. Then you see Toji's capsule getting crushed and you can't fathom what the hell just happened. How could they do that to Toji!! - - ->This scene is so gut wrenching and Shinji’s VA absolutely kills it - -Yeah, that scene. At first when it crushed the angel's head, i was like ""Holy shit, that was cool!"" But then it wouldn't stop and the blood, the shock on NERV employees' faces. Wow. Stop man, the angel is dead. Fuck - -And yeah Shinji's VA is amazing. I don't notice voice acting that much. For me. Its like a part of the whole. But Shinji's VA changed that for me. And i heard that his VA got depression for a while after finishing the series. Damn - - ->and the ones after because the train never really stops rolling after this one. - -Can't wait to watch!!";False;False;;;;1610502797;;False;{};gj2g6tk;False;t3_kw1ugh;False;True;t1_gj28vj0;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj2g6tk/;1610572570;3;True;False;anime;t5_2qh22;;0;[]; -[];;;A_SPLIT_IN_THE_ANUS;;;[];;;;text;t2_8w2tm9ox;False;False;[];;"A lot of commenters have already gave great rec's but if you would like to branch out from the boy-girl shows I would recommend Run with the Wind, and Violet Evergarden. - -The thing I loved about Bunny Girl was the well written characters and both Run with the Wind and Violet Evergarden have some of the most compelling characters that can make you extremely emotional.";False;False;;;;1610502879;;False;{};gj2gc7z;False;t3_kw4i35;False;False;t3_kw4i35;/r/anime/comments/kw4i35/hey_i_need_some_suggestions/gj2gc7z/;1610572697;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Harpr33t-Singh;;;[];;;;text;t2_2xgwk401;False;False;[];;(ノ≧∇≦)ノ ミ ┻━┻ can't wait!! can't wait!! can't wait!!;False;False;;;;1610502930;;False;{};gj2gfm3;False;t3_kw1ugh;False;True;t1_gj2edvu;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj2gfm3/;1610572765;3;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;">Series that are trying to deal with more grounded subjects sure maybe not everyone needs to be super attractive. - -That's exactly what I'm saying! I'm not saying to abolish all pretty women shows. I'm suggesting to change standards for other shows. - -I don't want anime to move towards caricatures either. If Kaiji is ""too much"" of an artstyle for you, you can instead look to [Children of the Sea](https://youtu.be/SOhRCIv-VOE) for a perfect example of an anime whose character variety isn't caricature-like at all but still conveys naturalistic variety in faces. From a character design standpoint it does a phenomenal job of feeling like a real Earth.";False;False;;;;1610502949;;False;{};gj2ggw0;True;t3_kw4xl1;False;False;t1_gj2avb4;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj2ggw0/;1610572789;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Draco_Estella;;MAL;[];;https://myanimelist.net/animelist/Estella_Rin;dark;text;t2_t7ptj;False;False;[];;"Hyouka doesn't convey that for me, it conveys the idea of youth and the idea of life being coloured differently according to the people you know, and how that is changed not only by your own actions, but also how life drags you around. Also, how logic isn't everything in the contexts of solving mysteries. - -Just with this, you probably can see why people don't exactly agree with you. We don't see the same things, and hence there isn't an agreement to how much art should imitate real life. Some people think it is too much like real life, some people don't, like you. - -And you probably hold different premises as to how art should imitate real life, premises which obviously a majority of people in this sub does not necessarily subscribe to.";False;False;;;;1610502971;;False;{};gj2gib1;False;t3_kw4xl1;False;False;t1_gj2f9gm;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj2gib1/;1610572816;4;True;False;anime;t5_2qh22;;0;[]; -[];;;cinnathep0et;;;[];;;;text;t2_2dpi920w;False;False;[];;??? There’s nothing in Rent-a-Girlfriend about strippers?;False;False;;;;1610502987;;False;{};gj2gjf5;False;t3_kw4i35;False;True;t1_gj2ffvu;/r/anime/comments/kw4i35/hey_i_need_some_suggestions/gj2gjf5/;1610572836;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;">purple hair girl is written as Elmelie in the subs but as Riml on MAL. Gotcha - -And it's verbalized as something like ""Rimuru."" I'm having some trouble with the names in this show. - ->every single time this happens in a mecha show I get like terrified the hand is going to crush the person in it. - -God, that would be a scene! That has to have happened at some point in some mecha show, right? - ->next ep preview - -[next ep preview](/s ""Tomino does like reusing and refining ideas. I know Xabungle, what's the other one?"")";False;False;;;;1610503005;;False;{};gj2gkmg;False;t3_kw478y;False;True;t1_gj2bhbj;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj2gkmg/;1610572858;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Btw_kek;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SouvlakiSpace7;light;text;t2_i0pj6;False;False;[];;"[next ep](/s ""it's like the first scene of Ideon lmao"")";False;False;;;;1610503150;;False;{};gj2guch;False;t3_kw478y;False;True;t1_gj2gkmg;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj2guch/;1610573043;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Megamoncha;;;[];;;;text;t2_eyueb;False;False;[];;Care to give a more in depth answer as to why you think AoT is horrible? You grew up with older gen animes, how do you think AoT compares to the three he mentions(Code Geass, FMA, Death Note)? If you think these three are better, what exactly makes it better?;False;False;;;;1610503174;;False;{};gj2gvzt;False;t3_kw5h62;False;False;t1_gj2g5bn;/r/anime/comments/kw5h62/what_do_you_think_is_the_future_of_aot_and_its/gj2gvzt/;1610573078;5;True;False;anime;t5_2qh22;;0;[]; -[];;;einxwei;;;[];;;;text;t2_8czigyho;False;False;[];;golgo 13, psycho pass, black lagoon and trigun;False;False;;;;1610503174;;False;{};gj2gw0z;False;t3_kw5u7j;False;True;t3_kw5u7j;/r/anime/comments/kw5u7j/im_looking_for_some_anime_with_good_gunplay/gj2gw0z/;1610573078;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;">Show's right, having a parade after an one-sided attack isn't exactly the most sensitive. - -Bread and circuses. Make the populace happy after you commit violence, they start begging for more. - ->Did Drake outright call out Todd for being useless? - -That's what I got out of the scene. - ->Not at all, that was fast! I expected around three more episodes at the earliest... - -Gotta get our team of mecha pilots together so that they can pick a fight against a country-sized power.";False;False;;;;1610503213;;False;{};gj2gyqk;False;t3_kw478y;False;True;t1_gj2e3ht;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj2gyqk/;1610573142;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;Ooh, haven't gotten to that one yet. Neat!;False;False;;;;1610503304;;False;{};gj2h4vl;False;t3_kw478y;False;True;t1_gj2guch;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj2h4vl/;1610573270;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;The strongest point of AoT is the plot so it sounds to me like they either don’t watch and hate it on it because it’s popular or are salty it gets more praise than their fav anime;False;False;;;;1610503378;;False;{};gj2h9rv;False;t3_kw5h62;False;True;t1_gj2gvzt;/r/anime/comments/kw5h62/what_do_you_think_is_the_future_of_aot_and_its/gj2h9rv/;1610573370;2;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;"With the exception of the noses, the same is true in a lot of anime. Dramatically different hairstyles, eye shapes/colors, etc. The examples I mentioned in the previous comment are p unique in all of those metrics too. - -Also, I'm not entirely sure how any of this factors into realism? You could use a lot of words to describe Nobuyuki Fukumoto's art style, but ""realistic"" wouldn't even be in my top 20. If anything, the artist revels in the sheer distorted, unrealistic nature of his aesthetic.";False;False;;;;1610503631;;False;{};gj2hqq6;False;t3_kw4xl1;False;True;t1_gj2e7ap;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj2hqq6/;1610573740;2;True;False;anime;t5_2qh22;;0;[]; -[];;;asilvertintedrose;;;[];;;;text;t2_9r6wz3xk;False;False;[];;"I'd say for me personally its Code Geass>FMA>Death Note>AOT if all are arranged -Mostly because AOT hasn't ended yet and as GOT has shown, sometimes the landing doesn't stick. -And I'd say Death Note was the least of the 3 as it cut out many chunks of the manga making Near's win feel kinda rushed.";False;False;;;;1610503644;;False;{};gj2hrks;False;t3_kw5h62;False;False;t1_gj2gvzt;/r/anime/comments/kw5h62/what_do_you_think_is_the_future_of_aot_and_its/gj2hrks/;1610573757;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;dkda0;;;[];;;;text;t2_6hr849ve;False;False;[];;The plot is stupid, its all about blood and gore. I disliked death note too. Loved fma. Code geass was decent. DragonBall, Naruto, One Piece, Bleach, are great animes;False;False;;;;1610503699;;False;{};gj2hvfc;False;t3_kw5h62;False;True;t1_gj2gvzt;/r/anime/comments/kw5h62/what_do_you_think_is_the_future_of_aot_and_its/gj2hvfc/;1610573836;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi HANREY_64, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610503843;moderator;False;{};gj2i56x;False;t3_kw6ksa;False;True;t3_kw6ksa;/r/anime/comments/kw6ksa/not_sure_what_to_watch/gj2i56x/;1610574025;1;False;False;anime;t5_2qh22;;0;[]; -[];;;falkner97;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/falkner99;light;text;t2_6y92q69v;False;False;[];;Forgotten until they decide to make a movie or smth;False;False;;;;1610504118;;False;{};gj2int8;False;t3_kw5h62;False;True;t3_kw5h62;/r/anime/comments/kw5h62/what_do_you_think_is_the_future_of_aot_and_its/gj2int8/;1610574406;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dancelordzuko;;;[];;;;text;t2_zfc18;False;False;[];;"I think these are legit the worst fight scenes I’ve ever seen. - -Thanks, I hate it.";False;False;;;;1610504212;;False;{};gj2iu4b;False;t3_kw4o33;False;False;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj2iu4b/;1610574539;30;True;False;anime;t5_2qh22;;0;[]; -[];;;blurvivid;;;[];;;;text;t2_2oopu6p2;False;False;[];;"If you likes rent a girlfriend, Pet girl of sakura hall, kokoro connect, and tonikawa might be good? - -Other SOLs that i enjoyed were K-ON, Toradora, and Snafu.";False;False;;;;1610504357;;False;{};gj2j3oz;False;t3_kw6ksa;False;False;t3_kw6ksa;/r/anime/comments/kw6ksa/not_sure_what_to_watch/gj2j3oz/;1610574727;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi LoganReynolds, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610504385;moderator;False;{};gj2j5ij;False;t3_kw6qhk;False;True;t3_kw6qhk;/r/anime/comments/kw6qhk/my_wife_is_finally_willing_to_watch_an_anime_with/gj2j5ij/;1610574764;1;False;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;"> not that much of fan of the characters - -I agree, I didn't really like the characters, or the romantic drama, or the slow pacing. But I still found the emotional moments (whenever Secret Base started playing) super effective and one of the more memorable ""sad anime"" I've watched, so I have to give it some credit.";False;False;;;;1610504497;;False;{};gj2jd13;False;t3_kw6mz2;False;True;t3_kw6mz2;/r/anime/comments/kw6mz2/i_did_not_really_like_anohona/gj2jd13/;1610574910;1;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"What types of shows does she generally like? I think you should base it around that if you really want her to enjoy it - -If she enjoyed Avatar, Fullmetal Alchemist Brotherhood might be right up her alley though. A Silent Voice is a movie I think anyone can enjoy, but it isnt a series so it might not be what you are looking for";False;False;;;;1610504570;;False;{};gj2ji3w;False;t3_kw6qhk;False;False;t3_kw6qhk;/r/anime/comments/kw6qhk/my_wife_is_finally_willing_to_watch_an_anime_with/gj2ji3w/;1610575006;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Scoopa379;;;[];;;;text;t2_1cttlaka;False;False;[];;Agreed fullmetal alchemist brotherhood is amazing and won't disappoint.;False;False;;;;1610504668;;False;{};gj2jouz;False;t3_kw6qhk;False;False;t1_gj2ji3w;/r/anime/comments/kw6qhk/my_wife_is_finally_willing_to_watch_an_anime_with/gj2jouz/;1610575139;5;True;False;anime;t5_2qh22;;0;[]; -[];;;FoOd_aNime;;;[];;;;text;t2_6l8ocida;False;False;[];;Could be food wars since there is food? Probably not tho;False;False;;;;1610504686;;False;{};gj2jq2g;False;t3_kw4mx5;False;True;t3_kw4mx5;/r/anime/comments/kw4mx5/need_help_finding_an_anime/gj2jq2g/;1610575165;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Why is it not okay? It's fiction, fiction can do ANYTHING. That includes being realistic, unrealistic or whatever it desires. - -It'd be boring if every piece of fiction was the exact same. What you like in fiction does not have to correlate to what you like in real life.";False;False;;;;1610504737;;False;{};gj2jtn5;False;t3_kw4xl1;False;True;t1_gj2azpu;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj2jtn5/;1610575241;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePoultryKing;;;[];;;;text;t2_6bcfipm1;False;False;[];;For me I find it tricky to feel emotional moments when the characters aren’t good. When the song plays during these moments of character sadness it still does nothing for me. It doesn’t feel earned.;False;False;;;;1610504752;;1610505068.0;{};gj2jumf;True;t3_kw6mz2;False;True;t1_gj2jd13;/r/anime/comments/kw6mz2/i_did_not_really_like_anohona/gj2jumf/;1610575260;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_Zig;;;[];;;;text;t2_r3byl;False;False;[];;Same;False;False;;;;1610504766;;False;{};gj2jvmp;False;t3_kw6mz2;False;True;t3_kw6mz2;/r/anime/comments/kw6mz2/i_did_not_really_like_anohona/gj2jvmp/;1610575281;2;True;False;anime;t5_2qh22;;0;[]; -[];;;illbelate2that;;;[];;;;text;t2_1702dp;False;False;[];;I concur with those guys. FMA Brotherhood is always my go to starter anime when people ask. It's not so far gone that it's hard to relate but it's also definitely an intro into what anime can be.;False;False;;;;1610504777;;False;{};gj2jwbn;False;t3_kw6qhk;False;False;t3_kw6qhk;/r/anime/comments/kw6qhk/my_wife_is_finally_willing_to_watch_an_anime_with/gj2jwbn/;1610575294;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Megamoncha;;;[];;;;text;t2_eyueb;False;False;[];;Granted the manga for AoT hasn't ended yet so I can't say for certain that it would be great but as the manga is right now the series will definitely be up there. As for cut contents, there's nothing we can do about it but leave it to Mappa.;False;False;;;;1610504821;;False;{};gj2jz9q;False;t3_kw5h62;False;True;t1_gj2hrks;/r/anime/comments/kw5h62/what_do_you_think_is_the_future_of_aot_and_its/gj2jz9q/;1610575355;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jetah;;;[];;;;text;t2_7x3ws;False;False;[];;"You need to give her shows she likes. For once, or maybe you do this more often, watch shows she wants to watch. - -Ask her questions about her taste in TV or movies and find an anime similar. - -Or start her at One Piece ep 1 and don't mention there's over 900 episodes.";False;False;;;;1610504827;;False;{};gj2jznz;False;t3_kw6qhk;False;False;t3_kw6qhk;/r/anime/comments/kw6qhk/my_wife_is_finally_willing_to_watch_an_anime_with/gj2jznz/;1610575362;7;True;False;anime;t5_2qh22;;0;[]; -[];;;onefootstout;;;[];;;;text;t2_qyi54;False;False;[];;"The author of bunny girl did Pet Girl of Sakurasou before Bunny girl, it's a very different show and the anime more oozes the style of it's director and script writer but it has a similar heart to bunny girl. - -Just Because is an anime original which the author wrote for idk if he did the whole script or just the idea and planning but it has a very similar vibe to Bunny Girl, less witty but similar atmosphere";False;False;;;;1610504857;;False;{};gj2k1oo;False;t3_kw554v;False;True;t3_kw554v;/r/anime/comments/kw554v/what_is_a_good_anime_like_bunny_girl_senpai/gj2k1oo/;1610575400;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610504895;moderator;False;{};gj2k4bs;False;t3_kw6vw3;False;True;t3_kw6vw3;/r/anime/comments/kw6vw3/what_is_oguns_generation/gj2k4bs/;1610575448;1;False;False;anime;t5_2qh22;;0;[]; -[];;;aTrustfulFriend;;;[];;;;text;t2_oppp4;False;False;[];;best answer. if all you're doing is watching anime, at the very least, read manga or light novels. But the best thing to do IMO is what OP said. find other interests outside of anime.;False;False;;;;1610504929;;False;{};gj2k6lx;False;t3_kw3br6;False;True;t1_gj1yla7;/r/anime/comments/kw3br6/how_do_you_deal_with_the_empty_sensation_after/gj2k6lx/;1610575491;2;True;False;anime;t5_2qh22;;0;[]; -[];;;yayayogurt;;;[];;;;text;t2_1lpfd4zx;False;False;[];;I think you'll like Horimiya thats airing right now.;False;False;;;;1610504944;;False;{};gj2k7l7;False;t3_kw6ksa;False;True;t3_kw6ksa;/r/anime/comments/kw6ksa/not_sure_what_to_watch/gj2k7l7/;1610575510;3;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;"Pick an anime you think she would like. - -You know your wife far more than the randoms on this subreddit. You should be able to pick a better show than /u/animeshittyfuck69wastaken would pick for her.";False;False;;;;1610504945;;False;{};gj2k7o8;False;t3_kw6qhk;False;False;t3_kw6qhk;/r/anime/comments/kw6qhk/my_wife_is_finally_willing_to_watch_an_anime_with/gj2k7o8/;1610575511;6;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;We’re talking about impact on the community so I’m not sure how this is satire. I must’ve read the post with my eyes closed if it’s all one big joke;False;False;;;;1610504951;;False;{};gj2k84d;False;t3_kw5h62;False;False;t1_gj2ex99;/r/anime/comments/kw5h62/what_do_you_think_is_the_future_of_aot_and_its/gj2k84d/;1610575520;1;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;Kaos (Comic Girls);False;False;;;;1610505010;;False;{};gj2kc3q;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj2kc3q/;1610575598;19;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomWolf83;;;[];;;;text;t2_wxq1l;False;False;[];;Gungrave;False;False;;;;1610505060;;False;{};gj2kflc;False;t3_kw5u7j;False;True;t3_kw5u7j;/r/anime/comments/kw5u7j/im_looking_for_some_anime_with_good_gunplay/gj2kflc/;1610575662;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkSpecterr;;;[];;;;text;t2_4fwnyyke;False;False;[];;It’s also making the Fate series’s fight sequences look dull compared;False;False;;;;1610505067;;False;{};gj2kg19;False;t3_kw4o33;False;False;t1_gj2fsaa;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj2kg19/;1610575671;23;True;False;anime;t5_2qh22;;0;[]; -[];;;old-ghost;;;[];;;;text;t2_2orbupim;False;False;[];;Violet evergarden but it’s on Netflix;False;False;;;;1610505073;;False;{};gj2kgf7;False;t3_kw554v;False;True;t3_kw554v;/r/anime/comments/kw554v/what_is_a_good_anime_like_bunny_girl_senpai/gj2kgf7/;1610575678;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Drennkeeg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KothoS;light;text;t2_3rcbfvna;False;False;[];;Something is wrong here...;False;False;;;;1610505094;;False;{};gj2khwg;False;t3_kw5h62;False;False;t1_gj2hvfc;/r/anime/comments/kw5h62/what_do_you_think_is_the_future_of_aot_and_its/gj2khwg/;1610575708;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610505098;;False;{};gj2ki5g;False;t3_kw6uuw;False;True;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj2ki5g/;1610575713;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mobilegamegod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Aochhi;light;text;t2_pkuqf;False;False;[];;Misaki Nakahara. Although in general gender doesn't really affect my ability to relate to characters.;False;False;;;;1610505119;;False;{};gj2kjk2;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj2kjk2/;1610575740;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;The Melancholy of Haruhi Suzumiya;False;False;;;;1610505203;;False;{};gj2kp7n;False;t3_kw554v;False;False;t3_kw554v;/r/anime/comments/kw554v/what_is_a_good_anime_like_bunny_girl_senpai/gj2kp7n/;1610575853;5;True;False;anime;t5_2qh22;;0;[]; -[];;;2nd_best_username;;;[];;;;text;t2_4ifsl0nn;False;False;[];;MHA was my first anime and I haven't looked back since, probably the most effective gateway anime there is;False;False;;;;1610505228;;False;{};gj2kqyo;False;t3_kw6qhk;False;False;t3_kw6qhk;/r/anime/comments/kw6qhk/my_wife_is_finally_willing_to_watch_an_anime_with/gj2kqyo/;1610575885;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Worm38;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Worm38;light;text;t2_21wfoc0w;False;False;[];;Nadeko Sengoku. Well, actually, there's no male character I relate to as much.;False;False;;;;1610505229;;False;{};gj2kqzg;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj2kqzg/;1610575885;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Shark-spit;;;[];;;;text;t2_5pdg093x;False;False;[];;Chitoge from Nisekoi;False;False;;;;1610505246;;False;{};gj2ks5u;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj2ks5u/;1610575910;4;True;False;anime;t5_2qh22;;0;[]; -[];;;2nd_best_username;;;[];;;;text;t2_4ifsl0nn;False;False;[];;Generally speaking, idk what you or your wife's personal tastes are;False;False;;;;1610505253;;False;{};gj2ksq8;False;t3_kw6qhk;False;True;t1_gj2kqyo;/r/anime/comments/kw6qhk/my_wife_is_finally_willing_to_watch_an_anime_with/gj2ksq8/;1610575921;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Megamoncha;;;[];;;;text;t2_eyueb;False;False;[];;What about FMA did you like? Since you mention DB and the big three, I'm assuming it's because the other series did not fit into the typical battle shounen settings.;False;False;;;;1610505270;;False;{};gj2ktu6;False;t3_kw5h62;False;True;t1_gj2hvfc;/r/anime/comments/kw5h62/what_do_you_think_is_the_future_of_aot_and_its/gj2ktu6/;1610575942;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dkda0;;;[];;;;text;t2_6hr849ve;False;False;[];;Nope. Again, a different generation. Us originals like different stuff that today's children;False;False;;;;1610505278;;False;{};gj2kudt;False;t3_kw5h62;False;True;t3_kw5h62;/r/anime/comments/kw5h62/what_do_you_think_is_the_future_of_aot_and_its/gj2kudt/;1610575954;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AC03115;;;[];;;;text;t2_3m29jxmv;False;False;[];;I would say Mai Sakurajima from Bunny Girl Senpai;False;False;;;;1610505279;;False;{};gj2kugt;False;t3_kw6uuw;False;True;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj2kugt/;1610575955;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;I see a lot of myself in Usopp, but I would relate to his cowardice whether he were a boy or a girl;False;False;;;;1610505309;;False;{};gj2kwgw;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj2kwgw/;1610575996;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Requiemforthemass;;;[];;;;text;t2_3f6sb8zv;False;False;[];;tfw you are a cute NEET girl;False;False;;;;1610505343;;False;{};gj2kyt9;True;t3_kw6uuw;False;False;t1_gj2kjk2;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj2kyt9/;1610576041;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610505357;;False;{};gj2kzpn;False;t3_kw6uuw;False;True;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj2kzpn/;1610576059;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ultramit21;;;[];;;;text;t2_5z4nhtm7;False;False;[];;Felt the same way when I watched the first episode of One Piece, the art style and opening made me feel like I was a kid watching it on TV even though I wasn't even born at the time of release;False;False;;;;1610505372;;False;{};gj2l0pz;False;t3_kw6pjk;False;True;t3_kw6pjk;/r/anime/comments/kw6pjk/nostalgia_from_a_place_or_time_youve_never_been/gj2l0pz/;1610576078;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;Elaina from Majo no Tabitabi;False;False;;;;1610505430;;False;{};gj2l4nw;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj2l4nw/;1610576153;5;True;False;anime;t5_2qh22;;0;[]; -[];;;_Zig;;;[];;;;text;t2_r3byl;False;False;[];;I can feel it;False;False;;;;1610505434;;False;{};gj2l4xw;False;t3_kw5h62;False;True;t1_gj2khwg;/r/anime/comments/kw5h62/what_do_you_think_is_the_future_of_aot_and_its/gj2l4xw/;1610576157;3;True;False;anime;t5_2qh22;;0;[]; -[];;;2nd_best_username;;;[];;;;text;t2_4ifsl0nn;False;False;[];;I sort of know what you mean from watching Bleach, also I remember watching some christian tv show when I was a kid that was sort of like anime so things like attack on titan and blue exorcist kinda gave me the same vibe (attack on titan bc if how serious it is vs other anime which incorporate a lot more humor);False;False;;;;1610505469;;False;{};gj2l7bu;False;t3_kw6pjk;False;True;t3_kw6pjk;/r/anime/comments/kw6pjk/nostalgia_from_a_place_or_time_youve_never_been/gj2l7bu/;1610576205;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;"Completely understandable. I can't really justify why I still got emotional even though I also didn't really like the characters. But I think part of it was that I loved the idea of a group of former friends (who don't get along) bonding over a traumatic experience, and the emotional scenes were great at building tension (characters yelling) and then, ending with some revelation (idk, I like the trope I guess). For me, music is enough to get me emotional regardless, so I found Secret Base excellent. - -I didn't find the characters or story that exceptional, but I still can't say I hate it.";False;False;;;;1610505487;;False;{};gj2l8jv;False;t3_kw6mz2;False;False;t1_gj2jumf;/r/anime/comments/kw6mz2/i_did_not_really_like_anohona/gj2l8jv/;1610576228;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610505579;moderator;False;{};gj2lez5;False;t3_kw7352;False;True;t3_kw7352;/r/anime/comments/kw7352/is_there_a_mr_skin_for_anime/gj2lez5/;1610576370;1;False;False;anime;t5_2qh22;;0;[]; -[];;;brucebananaray;;;[];;;;text;t2_15bpgp5p;False;False;[];;I think she will enjoy Yona of The Dawn because it has a very similar vibe to Avatar.;False;False;;;;1610505584;;False;{};gj2lfbq;False;t3_kw6qhk;False;True;t3_kw6qhk;/r/anime/comments/kw6qhk/my_wife_is_finally_willing_to_watch_an_anime_with/gj2lfbq/;1610576377;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;Space Dandy directed by the same person who did CowBoy Bebop;False;False;;;;1610505606;;False;{};gj2lgtt;False;t3_kw4wif;False;True;t3_kw4wif;/r/anime/comments/kw4wif/hey_cant_decide_what_to_watch/gj2lgtt/;1610576405;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CittyM;;;[];;;;text;t2_5cch8d19;False;False;[];;Yuki from Fruits Basket;False;False;;;;1610505657;;False;{};gj2lkd3;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj2lkd3/;1610576472;16;True;False;anime;t5_2qh22;;0;[]; -[];;;ComfortablyRotten;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Leuwtian;light;text;t2_78zrok5y;False;False;[];;">Bread and circuses. Make the populace happy after you commit violence, they start begging for more. - -A tried and true method. It's always nice to have it shown from the perspective of someone who actually was there and who understands that all of this is bullshit.";False;False;;;;1610505709;;False;{};gj2lnwz;False;t3_kw478y;False;True;t1_gj2gyqk;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj2lnwz/;1610576542;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ChipOnCrack;;;[];;;;text;t2_xa4ru;False;False;[];;haha, I'm sure yours is dope as well!;False;False;;;;1610505781;;False;{};gj2lsqo;True;t3_kw4rii;False;True;t1_gj29a3b;/r/anime/comments/kw4rii/manga_panel_for_tattoo/gj2lsqo/;1610576638;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;Either Hachiken (Silver Spoon) or Yuri (Yuri on Ice);False;False;;;;1610505907;;False;{};gj2m1fj;False;t3_kw6uuw;False;True;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj2m1fj/;1610576827;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DyslexiaOverload;;;[];;;;text;t2_4125hvdy;False;False;[];;"I'm thinking miss kobajashi's dragon maid, acording to me, it's a good example for modern Anime perhaps Anime as a whole - -Considering that she liked Avatar perhaps you could go as far as Gintama - -If you want a safe card and want to show her the best of the best in animation go for gihbli in, that case Spirited away or Howl's moving castle, on the harder/extreme side Prinsses mononoke. Or Your name - -If you want to show her the clasics than Cowboy bebop is a must if your brave and she likes the more extreme side Neon Genesis Evangelion or Samurai shamploo - -Sorry don't know either of you so it's dificult to say";False;False;;;;1610505936;;False;{};gj2m3gk;False;t3_kw6qhk;False;False;t3_kw6qhk;/r/anime/comments/kw6qhk/my_wife_is_finally_willing_to_watch_an_anime_with/gj2m3gk/;1610576865;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;"Guts from Berserk - -Mashiro Mai from Dead Tube - -Revy from Black Lagoon - -Thorfinn from Vinland Saga - -Miyamoto from Vagabond - -I’d think any of those would look dope as tattoos check them out and see if you’d like any";False;False;;;;1610505991;;False;{};gj2m76b;False;t3_kw4rii;False;True;t3_kw4rii;/r/anime/comments/kw4rii/manga_panel_for_tattoo/gj2m76b/;1610576945;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePoultryKing;;;[];;;;text;t2_6bcfipm1;False;False;[];;Yeah that’s fair, story did have some pretty dumb moments to. Wasn t the only reason they made the rocket because of a random page in her diary they stumbled upon. They litterly could of stumbled onto any page about dreams and such and that would of been the thing they worked towards. And rerember the insanely stupid bit where they react the morning memmna died. It’s all comming back to me🤣;False;False;;;;1610506026;;False;{};gj2m9jo;True;t3_kw6mz2;False;False;t1_gj2l8jv;/r/anime/comments/kw6mz2/i_did_not_really_like_anohona/gj2m9jo/;1610576994;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;What does she like for live action movies and tv shows? Anime is a medium like any other. So it'd be nice to know what she enjoys to watch.;False;False;;;;1610506034;;False;{};gj2ma1q;False;t3_kw6qhk;False;True;t3_kw6qhk;/r/anime/comments/kw6qhk/my_wife_is_finally_willing_to_watch_an_anime_with/gj2ma1q/;1610577008;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610506053;;False;{};gj2mbao;False;t3_kw6pjk;False;True;t3_kw6pjk;/r/anime/comments/kw6pjk/nostalgia_from_a_place_or_time_youve_never_been/gj2mbao/;1610577037;1;True;False;anime;t5_2qh22;;0;[]; -[];;;stiF_staL;;;[];;;;text;t2_37d8lkg5;False;False;[];;Tokyo ghoul is one I've gotten a few people into anime with.;False;False;;;;1610506055;;False;{};gj2mbes;False;t3_kw6qhk;False;True;t3_kw6qhk;/r/anime/comments/kw6qhk/my_wife_is_finally_willing_to_watch_an_anime_with/gj2mbes/;1610577040;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dkda0;;;[];;;;text;t2_6hr849ve;False;False;[];;The whole plot of fma was awesome. Kinda wish it gone on a few more episodes. Yu yu Hakusho, fairy tail were good too. Its all about the plot, characters. There are other really great anime but unfortunately I don't have the time to list them all nor can I remember all there names. Alot of the newer anime is good. Aot and death note just were just not good animes. Outlaw star, Gundam wing, g Gundam, Gts, aon flux, ect. Then there is the difference between what ppl call anime and cartoons;False;False;;;;1610506206;;False;{};gj2mlnq;False;t3_kw5h62;False;True;t1_gj2ktu6;/r/anime/comments/kw5h62/what_do_you_think_is_the_future_of_aot_and_its/gj2mlnq/;1610577236;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;tbh I only remember the parts I liked (fighting in the clubhouse, the ending), and forgot the rest because it was either boring or annoying (the love ~~triangle~~ square was the worst);False;False;;;;1610506217;;False;{};gj2mmfd;False;t3_kw6mz2;False;True;t1_gj2m9jo;/r/anime/comments/kw6mz2/i_did_not_really_like_anohona/gj2mmfd/;1610577251;1;True;False;anime;t5_2qh22;;0;[]; -[];;;foxsable;;;[];;;;text;t2_9ow65;False;False;[];;My wife watched all of cowboy bebop with me.;False;False;;;;1610506258;;False;{};gj2mp46;False;t3_kw6qhk;False;False;t3_kw6qhk;/r/anime/comments/kw6qhk/my_wife_is_finally_willing_to_watch_an_anime_with/gj2mp46/;1610577307;5;True;False;anime;t5_2qh22;;0;[]; -[];;;IntrOtaku1207;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KrisMak1207;light;text;t2_4vo2aicz;False;False;[];;"Ogun is a THIRD GEN, creates and controls his flames. You are right. He can only control his flames. - -But, a COMPOUND/HYBRID GEN has abilities of two or more gens. Someone like Benimaru Shinmon (2nd + 3rd gen) who can use external flames as well as create his own. A rare type.";False;False;;;;1610506352;;1610506786.0;{};gj2mvkq;False;t3_kw6vw3;False;True;t3_kw6vw3;/r/anime/comments/kw6vw3/what_is_oguns_generation/gj2mvkq/;1610577435;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MaiValentineHusband;;;[];;;;text;t2_9ktbpab3;False;False;[];;Fapservice does. But it's more of a blog then an encyclopedia, sadly. I can't find a good solid encyclopedia of fanservice scenes.;False;False;;;;1610506435;;False;{};gj2n1b9;False;t3_kw7352;False;True;t3_kw7352;/r/anime/comments/kw7352/is_there_a_mr_skin_for_anime/gj2n1b9/;1610577543;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IntrOtaku1207;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KrisMak1207;light;text;t2_4vo2aicz;False;False;[];;"SECOND GENS cannot create flames but can control flames from external sources, FIRST GENS are basically infernals. - -Bonus: 4TH GENS are the 'pillars', strongest of the bunch.";False;False;;;;1610506484;;1610506816.0;{};gj2n4mx;False;t3_kw6vw3;False;True;t1_gj2mvkq;/r/anime/comments/kw6vw3/what_is_oguns_generation/gj2n4mx/;1610577607;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MaiValentineHusband;;;[];;;;text;t2_9ktbpab3;False;False;[];;"Konata Izumi, both of us are Otaku slackers who didn't really care much for school and are really laid back. - -Mai Valentine, as someone who struggles to make friends and has loneliness problems, i strongly identified with her story.";False;False;;;;1610506596;;False;{};gj2nc7l;False;t3_kw6uuw;False;True;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj2nc7l/;1610577761;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FalconPunchInDaFace;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FalconPunchFace;light;text;t2_4fi02812;False;True;[];;Death Note;False;False;;;;1610506613;;False;{};gj2ndbe;False;t3_kw6qhk;False;False;t3_kw6qhk;/r/anime/comments/kw6qhk/my_wife_is_finally_willing_to_watch_an_anime_with/gj2ndbe/;1610577783;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;I can see Re:Zero being one of the defining anime series of the 2020s if they adapt the next arcs really well.;False;False;;;;1610506630;;False;{};gj2nekq;False;t3_kw5h62;False;True;t1_gj2d5a2;/r/anime/comments/kw5h62/what_do_you_think_is_the_future_of_aot_and_its/gj2nekq/;1610577810;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MaiValentineHusband;;;[];;;;text;t2_9ktbpab3;False;False;[];;Yeah, i kinda do. There's something about early 90's (And some 80's) anime that fill me up with a rush of nostalgia and i just can't place my finger on why.;False;False;;;;1610506667;;False;{};gj2nh37;False;t3_kw6pjk;False;False;t3_kw6pjk;/r/anime/comments/kw6pjk/nostalgia_from_a_place_or_time_youve_never_been/gj2nh37/;1610577857;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lost-NotFound;;;[];;;;text;t2_57xayenq;False;False;[];;"**1st rewatch** - -what is up with all the apartments not having patio furnishing? everytime we see an apartment scene, only misato's has stuff outside. is that whole building vacant?? - -serious note, wonder why asuka just didnt spill the beans? i guess she didnt want the drama. - -also liked the scenes with kaji and shinji conversing. what does he mean by ""she"" and ""the woman far away""? Im guessing thats a japanese wordplay thing? if we use his analogy, what would be the river? - -also, how yall feel about misato holding out on telling shinji? Im guessing she and everyone else didnt want to negatively affect his mental state, so they all wanted to delay it. However, it had presumably, a worse outcome then if they would have told him out right. - -**QOTD** -tough to say because alot of them dont get enough screen time. guess it would have to be kaji, especially with recency bias (past two episodes).";False;False;;;;1610506738;;1610506952.0;{};gj2nluz;False;t3_kw1ugh;False;True;t3_kw1ugh;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj2nluz/;1610577958;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610506836;moderator;False;{};gj2nsfl;False;t3_kw7g07;False;False;t3_kw7g07;/r/anime/comments/kw7g07/where_can_i_watch_aot_ova/gj2nsfl/;1610578082;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Stack42;;MAL;[];;https://myanimelist.net/profile/stack42;dark;text;t2_ddag1;False;False;[];;Tsubasa Hanekawa, probably the anime character I relate to the most in general. I actually honestly almost dislike her before Nekomonogatari Shiro specifically because she reminds me of some of the worst aspects of myself that I try to put behind me, but I strive to be more like her after NekoShiro because she's incredible.;False;False;;;;1610506882;;False;{};gj2nvjv;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj2nvjv/;1610578144;16;True;False;anime;t5_2qh22;;0;[]; -[];;;farson135;;;[];;;;text;t2_bp6v36d;False;False;[];;"I feel a certain kinship with Rider from Fate/Stay Night. Specifically if we include her portrayal in Fate/Hollow Ataraxia, and this description from FGO (ignore the ""beautiful"" part); - -> Despite being a beauty, she tends to appear to have a merciless personality because of her thorny aura and cold behavior. But in fact is simply a languorous beautiful woman who prefers to spend her time doing nothing. Loves alcohol and reading. - -> Her behavior is severe because she is indifferent about being appreciated by others.";False;False;;;;1610507205;;False;{};gj2ohbe;False;t3_kw6uuw;False;True;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj2ohbe/;1610578570;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fraid_so;;;[];;;;text;t2_oeyx4;False;False;[];;No. The OVAs have not been officially translated and released. Most OVAs aren’t.;False;False;;;;1610507366;;False;{};gj2osaw;False;t3_kw7g07;False;False;t3_kw7g07;/r/anime/comments/kw7g07/where_can_i_watch_aot_ova/gj2osaw/;1610578777;5;True;False;anime;t5_2qh22;;0;[]; -[];;;YoRHa_Aki;;;[];;;;text;t2_4gzn9i0;False;False;[];;Oreki from Hyouka;False;False;;;;1610507426;;False;{};gj2owao;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj2owao/;1610578854;19;True;False;anime;t5_2qh22;;0;[]; -[];;;farson135;;;[];;;;text;t2_bp6v36d;False;False;[];;"It is important that you get her involved in this conversation, and allow her to pick something she thinks sounds appealing. - -To provide a good suggestion we need to know what she generally likes. Typically, I would suggest a movie over a TV show, or at least a short show. Anything with too much of an investment might annoy her. - -We passed Christmas, but [Tokyo Godfathers](https://myanimelist.net/anime/759/Tokyo_Godfathers) is still sort of in season. Alternatively, my mother's first anime was [Millennium Actress](https://myanimelist.net/anime/1033/Sennen_Joyuu).";False;False;;;;1610507518;;False;{};gj2p2ev;False;t3_kw6qhk;False;False;t3_kw6qhk;/r/anime/comments/kw6qhk/my_wife_is_finally_willing_to_watch_an_anime_with/gj2p2ev/;1610578963;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackheart595;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Blackheart595/;light;text;t2_l0756;False;False;[];;Imo when you're starting to skip the show because it spoils the show is where it gets beyond silly.;False;False;;;;1610507800;;False;{};gj2pkrn;False;t3_kw7gwu;False;False;t3_kw7gwu;/r/anime/comments/kw7gwu/paying_attention_to_the_intros/gj2pkrn/;1610579311;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Joker_P5;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Joker_P5;light;text;t2_ignpy8b;False;False;[];;"The only legal place are the mangas special editions which have some of them - -You’ll have to surf the high seas tho for the rest";False;False;;;;1610507980;;False;{};gj2pw4r;False;t3_kw7g07;False;False;t3_kw7g07;/r/anime/comments/kw7g07/where_can_i_watch_aot_ova/gj2pw4r/;1610579518;5;True;False;anime;t5_2qh22;;0;[]; -[];;;k4r6000;;;[];;;;text;t2_3q0qar7q;False;False;[];;Rika Sonezaki from O Maidens in Your Savage Season. Growing up it was still a time in which it was hammered home repeatedly that sex was something bad people do, and abstinence was the way to go. I was always the straight arrow of the class too. Then puberty hit like a ton of bricks and girls started asking me out (and it was always them asking me out than the other way around) and it was a real struggle trying to normalize sex and romance as something perfectly normal. I did eventually get over it, but it was a rough year or so there where I was feeling tremendously guilty about the hole thing and didn't really know how to handle it. So I certainly understood her character, although she was older than I was (for me it was middle school).;False;False;;;;1610508027;;False;{};gj2pz84;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj2pz84/;1610579575;13;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610508172;moderator;False;{};gj2q8q0;False;t3_kw7u4s;False;True;t3_kw7u4s;/r/anime/comments/kw7u4s/i_need_your_guys_help/gj2q8q0/;1610579750;0;False;False;anime;t5_2qh22;;0;[]; -[];;;Harpr33t-Singh;;;[];;;;text;t2_2xgwk401;False;False;[];;" ->misato holding out on telling shinji? - -Yeah, she didn't want to affect Shinji's mental state but also she didn't want to confront an uncomfortable situation and wanted to delay it as long as possible";False;False;;;;1610508187;;False;{};gj2q9si;False;t3_kw1ugh;False;True;t1_gj2nluz;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj2q9si/;1610579771;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Roketsu86;;;[];;;;text;t2_hwze9;False;False;[];;We can't give you an illegal site that you can use to watch CR premium content for free. If you don't want to pay for a CR account then just wait a week and the episode will be free.;False;False;;;;1610508235;;False;{};gj2qcxl;False;t3_kw7u4s;False;False;t3_kw7u4s;/r/anime/comments/kw7u4s/i_need_your_guys_help/gj2qcxl/;1610579829;6;True;False;anime;t5_2qh22;;0;[]; -[];;;elfaia;;;[];;;;text;t2_3hb8o7;False;False;[];;I actually feel sorry for the seiyuu working on this project.;False;False;;;;1610508237;;False;{};gj2qd27;False;t3_kw4o33;False;False;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj2qd27/;1610579831;56;True;False;anime;t5_2qh22;;0;[]; -[];;;diglyd;;;[];;;;text;t2_5zkvd;False;False;[];;"when I was watching the shootout scene I was like ""that's not how guns/bullets work'. - -The premise is cool, it has a bit of that Ghost in the Shell vibe but man the logic and animations are shit at times. Still I enjoyed watching the episode when I turned my brain completely off.";False;False;;;;1610508296;;False;{};gj2qgvt;False;t3_kw4o33;False;False;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj2qgvt/;1610579900;10;True;False;anime;t5_2qh22;;0;[]; -[];;;queen_lucifer7;;;[];;;;text;t2_2vz05pcw;False;False;[];;But In saying that. Seeing something in an intro ruins the surprise of seeing something new that doesn’t happen till later in the show;False;False;;;;1610508467;;False;{};gj2qrrn;True;t3_kw7gwu;False;True;t1_gj2pkrn;/r/anime/comments/kw7gwu/paying_attention_to_the_intros/gj2qrrn/;1610580100;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610508584;;False;{};gj2qz3y;False;t3_kw7u4s;False;True;t3_kw7u4s;/r/anime/comments/kw7u4s/i_need_your_guys_help/gj2qz3y/;1610580235;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Red-Revrse9, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610508637;moderator;False;{};gj2r2f3;False;t3_kw7yy8;False;True;t3_kw7yy8;/r/anime/comments/kw7yy8/watch_this_anime_please/gj2r2f3/;1610580294;1;False;False;anime;t5_2qh22;;0;[]; -[];;;mystic_ace420;;;[];;;;text;t2_81qzmmd5;False;False;[];;ok ok app or page?;False;False;;;;1610508637;;False;{};gj2r2f9;True;t3_kw7u4s;False;True;t1_gj2qz3y;/r/anime/comments/kw7u4s/i_need_your_guys_help/gj2r2f9/;1610580294;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Taltibalti;;;[];;;;text;t2_srbia13;False;False;[];;Unfortunately, you'll have to sail the seven seas for that.;False;False;;;;1610508664;;False;{};gj2r44c;False;t3_kw7g07;False;False;t3_kw7g07;/r/anime/comments/kw7g07/where_can_i_watch_aot_ova/gj2r44c/;1610580327;3;True;False;anime;t5_2qh22;;0;[]; -[];;;akaslayboss;;;[];;;;text;t2_6cyot4rf;False;False;[];;App;False;False;;;;1610508666;;False;{};gj2r492;False;t3_kw7u4s;False;False;t1_gj2r2f9;/r/anime/comments/kw7u4s/i_need_your_guys_help/gj2r492/;1610580329;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Personally I don't skip intros unless they're really bad (typically);False;False;;;;1610508748;;False;{};gj2r9h5;False;t3_kw7gwu;False;False;t3_kw7gwu;/r/anime/comments/kw7gwu/paying_attention_to_the_intros/gj2r9h5/;1610580424;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AliasMagala;;;[];;;;text;t2_3ob6js3i;False;False;[];;"The small episode count animes are usually one-shots or they just didn't last long in terms of story. - -I would recommend animes such as Seven Deadly Sins, however the animation quality has gone to hell so try and read the manga first, aswell as tensei shitara slime, tower of god, mob psycho, and jojo. - -Each one has either a magical theme or supernatural";False;False;;;;1610508816;;False;{};gj2rdt4;False;t3_kw7ye6;False;True;t3_kw7ye6;/r/anime/comments/kw7ye6/any_good_and_long_animes/gj2rdt4/;1610580508;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610508905;moderator;False;{};gj2rjcp;False;t3_kw81pn;False;True;t3_kw81pn;/r/anime/comments/kw81pn/where_can_i_watch_anime_for_free/gj2rjcp/;1610580609;1;False;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;I have no idea what this is supposed to mean, but given that there are plenty of good slice of life anime, I'd say yes.;False;False;;;;1610509023;;False;{};gj2rqwr;False;t3_kw81q6;False;False;t3_kw81q6;/r/anime/comments/kw81q6/will_anime_be_good_without_anime_logic/gj2rqwr/;1610580745;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Sodra;;MAL a-amq;[];;https://myanimelist.net/profile/sodra;dark;text;t2_5o34w;False;False;[];;"Yeah, probably. - -Wait...no? - -Please restate the question.";False;False;;;;1610509039;;False;{};gj2rru1;False;t3_kw81q6;False;True;t3_kw81q6;/r/anime/comments/kw81q6/will_anime_be_good_without_anime_logic/gj2rru1/;1610580760;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Elementa01;;;[];;;;text;t2_5621ugo6;False;False;[];;"Jojo's bizarre adventure is a bit boring at first but really picks up in the later parts - -One piece the anime is way worse than the manga but one piece is still really good - -Hunter x hunter is pretty good in the beginning but just gets better and better as you keep watching";False;False;;;;1610509076;;False;{};gj2ru3e;False;t3_kw7ye6;False;False;t3_kw7ye6;/r/anime/comments/kw7ye6/any_good_and_long_animes/gj2ru3e/;1610580802;4;True;False;anime;t5_2qh22;;0;[]; -[];;;sonicflash703;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/sonicflash703?status=1;light;text;t2_8pcpjixy;False;False;[];;"- Oregairu (3 seasons, around 30-40eps) -- Clannad + Afterstory (2 seasons, around 40-50eps) -- Monogatari Series (10 seasons/movies, around 90-100 eps) -- Monster (74 eps, no romance but extremely good) -- Gintama (around 10 szn/movies, around 360 eps, not romance or harem but very good)";False;False;;;;1610509120;;False;{};gj2rwvu;False;t3_kw7ye6;False;False;t3_kw7ye6;/r/anime/comments/kw7ye6/any_good_and_long_animes/gj2rwvu/;1610580854;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Rigoku;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Elitar;light;text;t2_2j07de1;False;False;[];;Minami Toba from Yuru Camp. Mostly because we share same hobby (and im not talking about camping... or teaching). Eventually Tsunade from Naruto or Cana from Fairy Tail.;False;False;;;;1610509138;;False;{};gj2rxy8;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj2rxy8/;1610580874;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"You won't find harem/romance with hundreds of episodes, and some of the longest requires a more advanced weeb level to appreciate like Saekano, the world God only knows and Monogatari (not really harem/romance but have elements of both) or they are in the cultured block Like highschool dxd and to love ru - -So try the ones with at least more than a season like Nisekoi, Bokuben, Haganai, Date a live, grisaia, Oregairu and clannad - - -Your best bet for long anime is on the battle shounen genre";False;False;;;;1610509144;;False;{};gj2rybj;False;t3_kw7ye6;False;True;t3_kw7ye6;/r/anime/comments/kw7ye6/any_good_and_long_animes/gj2rybj/;1610580881;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;No ofc. without anime titties what’s the point?;False;False;;;;1610509185;;False;{};gj2s0ya;False;t3_kw81q6;False;False;t3_kw81q6;/r/anime/comments/kw81q6/will_anime_be_good_without_anime_logic/gj2s0ya/;1610580928;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Benny_Rivers;;;[];;;;text;t2_9giesyzk;False;False;[];;"Ergo Proxy is tight, glad to see it getting love. If you liked it and are looking for more, the shortlist below oughta be a good way to keep going! These are all sci-fi psychological series like Ergo Proxy, all worth a watch. Late 90's-Early 00's is a goldmine for series in this tone. - - -Serial Experiments Lain -Texhnolyze -Paranoia Agent";False;False;;;;1610509235;;False;{};gj2s41x;False;t3_kw7yy8;False;True;t3_kw7yy8;/r/anime/comments/kw7yy8/watch_this_anime_please/gj2s41x/;1610580980;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610509257;;False;{};gj2s5gt;False;t3_kw81q6;False;True;t3_kw81q6;/r/anime/comments/kw81q6/will_anime_be_good_without_anime_logic/gj2s5gt/;1610581004;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Harpr33t-Singh;;;[];;;;text;t2_2xgwk401;False;False;[];;" ->Pin the angel and rip the plug out Shinji! Damn it Shinji, I agree with you on the whole ""we can't murder this kid."" thing but if you die, there is nothing standing between this angel and Tokyo 03 - -You're right there. You don't need to kill the kid. Also, when i saw the scene where Shinji looks at the corrupted plug, i thought he'll try to pull it out. But after he gets strangled, he just straight up refused to do anything about it. The subsequent events did distract me from this scene but yes, Shinji should've atleast tried to immobilize it. - ->Wow, Unit 01 broke it's neck, did that kill it? Doesn't matter as Unit 01 is going ham on the now crippled angel, crushing it's head and ripping it shreds. Alright Gendo call it off, I think it's dead. Jesus Christ, it crushed the entry plug... - -When Unit 01 broke the angel's neck, i was like ""ok today's work is done, lets go home"". But then it straight up crushed the angel's fucking head! (Though that scene was pretty cool) ok, Unit 01 now you're done. Good job. Oh.... you're not stopping..... Wow! Look at all the blood. Chill out man. Ok, you've got the entry plug, put it aside gently. Crush......... MOTHERFUCKING BITCH!!! Fucking killed him. What the fuck?!! (@_@)";False;False;;;;1610509290;;False;{};gj2s7ih;False;t3_kw1ugh;False;False;t1_gj20ujq;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj2s7ih/;1610581042;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Tartaras1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tartaras;light;text;t2_kwwlu;False;False;[];;"**First-Timer** - -- Ougi giving a mythology lesson is certainly an interesting way to start. She does make a good point, though, that there are definitely some constellations I've never seen, having lived in the Northern Hemisphere my whole life. - -- >I'm sure she'll think fondly of you. - - Perhaps, but she's probably also going to have some questions, like the reasoning behind you showing up in his dream in the first place. - -- Here we have the three variations: - - - Ougi: ""I don't know anything."" - - - Hanekawa: ""I don't know everything. I only know what I know."" - - - Izuko: ""I know everything."" - -- While I don't remember much, I have at least *heard* of Asclepius. - -- >I guess it was too hasty to go on a date after we only decided on it yesterday. - - It was my understanding that you were the one that told him you both were going on a date. I don't believe there was any ""decision"" at all. - -- [Comment face found](#tch) - - I was wondering when this one was going to show up. - -- So their relationship has progressed to the point where they're calling each other by their first names, without any honorifics. What a joyous occasion. - -- >Did you enjoy your last date with Senjougahara-senpai? - - Last date? What's going on now? This probably isn't good. - -- >Is it? Yes, it'd be nice if it is. It'd be nice if the two of you had a future. - - You're not helping. - -Questions: - -- It's unclear whether Araragi's just thinking of Ougi when he was asleep, or if she's actually figured a way to get into his head. - -- The time at the Science Center looked like a ton of fun. I haven't been to the Science Center near-ish to my house since I was in high school at the absolute latest. It was more likely even earlier than that. - -- She wanted him to be the one to have to say it as a result of losing the bets. However, she only had to threaten to kill herself unless he did what she told him to do. Y'know, no biggie. So in the end, he ""lost"" even though he won. - -- Clearly Ougi's got a problem she wants Araragi to help her with. She did clarify that she wasn't ""the darkness"", so that's good at least. We still don't know if that's going to be a thing again now that Hachikuji is back from Hell.";False;False;;;;1610509295;;False;{};gj2s7u6;False;t3_kw1u5z;False;False;t3_kw1u5z;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj2s7u6/;1610581047;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Mirabem;;;[];;;;text;t2_7cp40oli;False;False;[];;">ignore the ""beautiful"" part - -No need to roast yourself like this 😅";False;False;;;;1610509303;;False;{};gj2s8as;False;t3_kw6uuw;False;False;t1_gj2ohbe;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj2s8as/;1610581055;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackheart595;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Blackheart595/;light;text;t2_l0756;False;False;[];;Eh, unpredictability is overrated. When it's predictable, it means that the idea is grounded with clear intention and well communicated. So for a good show that's not a problem to already know about stuff.;False;False;;;;1610509383;;False;{};gj2sdc1;False;t3_kw7gwu;False;False;t1_gj2qrrn;/r/anime/comments/kw7gwu/paying_attention_to_the_intros/gj2sdc1/;1610581147;6;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;"[netflix.com](https://netflix.com) - -[amazon.com](https://amazon.com) - -[hulu.com](https://hulu.com) - -[funimation.com](https://funimation.com)";False;False;;;;1610509392;;False;{};gj2sdx6;False;t3_kw81pn;False;True;t3_kw81pn;/r/anime/comments/kw81pn/where_can_i_watch_anime_for_free/gj2sdx6/;1610581159;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Mister_Zalez;;;[];;;;text;t2_6yltf570;False;False;[];;I found it on YouTube thanks for the recommendation;False;False;;;;1610509463;;False;{};gj2sigr;False;t3_kw7yy8;False;True;t3_kw7yy8;/r/anime/comments/kw7yy8/watch_this_anime_please/gj2sigr/;1610581244;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;"> the big speculation before Owari 2 aired (among anime onlies of course) was that the big finale will be deciding between Kiss-Shot and oddities and a normal life with Senjougahara - -Glad to know! It's fun to know that I'm in line with people who watched while this aired. - -> Gaen as well - -After thinking about it, I'm wondering if Kaiki, Gaen, and Oshino got cursed such that they couldn't help anyone. We've definitely seen them walk so it's at least different from the curse on Kagenui and Teori. - -> well Teori told Araragi, didn't he? - -Ya, I mostly saw this as Araragi finally ""accepting the truth"".";False;False;;;;1610509523;;False;{};gj2sm73;False;t3_kw1u5z;False;True;t1_gj1zeze;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj2sm73/;1610581313;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;No. Anime needs anime logic so people will have something to call certain anime bad over.;False;False;;;;1610509537;;False;{};gj2sn4f;False;t3_kw81q6;False;False;t3_kw81q6;/r/anime/comments/kw81q6/will_anime_be_good_without_anime_logic/gj2sn4f/;1610581330;2;False;False;anime;t5_2qh22;;0;[]; -[];;;sonicflash703;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/sonicflash703?status=1;light;text;t2_8pcpjixy;False;False;[];;"- Oregairu -- Mob Psycho 100 -- March Comes in like a Lion -- Clannad -- A Place Further than the Universe -- Girls Last Tour";False;False;;;;1610509581;;False;{};gj2spxe;False;t3_kw6ksa;False;True;t3_kw6ksa;/r/anime/comments/kw6ksa/not_sure_what_to_watch/gj2spxe/;1610581383;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Benny_Rivers;;;[];;;;text;t2_9giesyzk;False;False;[];;Gunsmith Cats is fun 90's gunplay. Not a lot of crazy martial arts, but definitely fun with the attention to detail in the guns and cars that can only be provided by a true westaboo. Plus it's only 3 episodes so it's a quick watch.;False;False;;;;1610509586;;False;{};gj2sq7x;False;t3_kw5u7j;False;False;t3_kw5u7j;/r/anime/comments/kw5u7j/im_looking_for_some_anime_with_good_gunplay/gj2sq7x/;1610581389;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Roketsu86;;;[];;;;text;t2_hwze9;False;False;[];;"Here's a list of legal streaming services. Most of them have free options: - -[http://reddit.com/r/anime/w/legal\_streams](http://reddit.com/r/anime/w/legal_streams) - -Use [https://www.justwatch.com/](https://www.justwatch.com/) to find where a particular show is streaming.";False;False;;;;1610509655;;False;{};gj2sujv;False;t3_kw81pn;False;False;t3_kw81pn;/r/anime/comments/kw81pn/where_can_i_watch_anime_for_free/gj2sujv/;1610581477;4;True;False;anime;t5_2qh22;;0;[]; -[];;;dannix2;;;[];;;;text;t2_kif4m;False;False;[];;I really thought they were going to pull a Sonic on us. Release a bad trailer to make some noise and then surprise us.;False;False;;;;1610509828;;False;{};gj2t5fg;False;t3_kw4o33;False;False;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj2t5fg/;1610581705;9;True;False;anime;t5_2qh22;;0;[]; -[];;;DrunkBamboo;;;[];;;;text;t2_2gmevsr0;False;False;[];;"There's a lot of animated shows which are realistic like Black Lagoon for eg; if that's what you're asking, which ones are good.. is subjective depending on plot and narrative";False;False;;;;1610509854;;False;{};gj2t72z;False;t3_kw81q6;False;True;t3_kw81q6;/r/anime/comments/kw81q6/will_anime_be_good_without_anime_logic/gj2t72z/;1610581739;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Quiddity131;;MAL;[];;http://myanimelist.net/profile/Quiddity131;dark;text;t2_f3bdc;False;False;[];;"> serious note, wonder why asuka just didnt spill the beans? - -Poor writing. They had to keep Shinji as clueless as possible in order to get the epic reveal at the end.";False;False;;;;1610509877;;False;{};gj2t8j3;False;t3_kw1ugh;False;False;t1_gj2nluz;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj2t8j3/;1610581768;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CubeStuffs;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/onjario;light;text;t2_eh59b;False;False;[];;"**1st time** - -I think I need to watch some yuru camp and nichijou now";False;False;;;;1610509999;;False;{};gj2tg3m;False;t3_kw1ugh;False;False;t3_kw1ugh;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj2tg3m/;1610581943;8;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;I second Hunter x Hunter;False;False;;;;1610510006;;False;{};gj2tgid;False;t3_kw7ye6;False;True;t1_gj2ru3e;/r/anime/comments/kw7ye6/any_good_and_long_animes/gj2tgid/;1610581950;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;I second Monster;False;False;;;;1610510020;;False;{};gj2them;False;t3_kw7ye6;False;True;t1_gj2rwvu;/r/anime/comments/kw7ye6/any_good_and_long_animes/gj2them/;1610581967;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sonicflash703;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/sonicflash703?status=1;light;text;t2_8pcpjixy;False;False;[];;Aside from Monogatari (if you haven’t watched it, it’s a must imo), Oregairu has solid banter and a similar mc;False;False;;;;1610510108;;False;{};gj2tmyz;False;t3_kw554v;False;True;t3_kw554v;/r/anime/comments/kw554v/what_is_a_good_anime_like_bunny_girl_senpai/gj2tmyz/;1610582077;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;Not sure what you are referring to.;False;False;;;;1610510174;;False;{};gj2tr5l;False;t3_kw81q6;False;True;t3_kw81q6;/r/anime/comments/kw81q6/will_anime_be_good_without_anime_logic/gj2tr5l/;1610582163;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KendotsX;;;[];;;;text;t2_j6nbtko;False;False;[];;No. Sometimes I skip them if they're bad, but definitely not because of spoilers, I've seen the worst that spoilers in openings can do, and it's fine really.;False;False;;;;1610510244;;False;{};gj2tvgu;False;t3_kw7gwu;False;True;t3_kw7gwu;/r/anime/comments/kw7gwu/paying_attention_to_the_intros/gj2tvgu/;1610582249;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ben99ny22;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ben99ny;light;text;t2_14rmpidg;False;False;[];;"over tea time - -""yeah i died, but came back. I even brought a loli with me."" - -It's funny how senjou says she saw hell when araragi *literally* saw hell an episode prior. - -Was all those times where araragi wondered what transpired between araragi and ougi, like how ougi says araragi promised her to a suchi restaurant, all happening in a dream like today's episode?";False;False;;;;1610510268;;1610511797.0;{};gj2twwa;False;t3_kw1u5z;False;False;t3_kw1u5z;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj2twwa/;1610582281;4;True;False;anime;t5_2qh22;;0;[]; -[];;;cdeuel84;;;[];;;;text;t2_2k2j0gsm;False;False;[];;Funimation has more dubbed anime than crunchyroll... Doesn't necessarily have more than crunchy tho;False;False;;;;1610510384;;False;{};gj2u404;False;t3_kw81pn;False;True;t3_kw81pn;/r/anime/comments/kw81pn/where_can_i_watch_anime_for_free/gj2u404/;1610582427;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;"**First Timer** - -When the episode started I thought I'd accidently switched to the dub somehow. But no the Americans have arrived in Japan and everything is coming to a front. The test for Eva Unit 03 is here. - -The more we see of Kaji the more I'm conflicted. His pursuit of women is innappropriate and he's often too forward, but he's also a wise and reliable guy. He's the one Misato calls to look after Asuka and Shinji and he does a good job of it too. I think he's a good guy, but he's complex and flawed. Realistic, really. He's not just some creep with no redeeming qualities, but he's no saint either. - -Many small moments prepare us in the worst way for the tragedy to come this episode. Toji distant from Kensuke and Shinji in the classroom, Toji and Rei on the roof, Asuka and Hikari talking, Hikari making lunch and all the scenes where Shinji's the only one that doesn't know who the fourth pilot is. These scenes paint a brilliant picture of how Toji becoming a pilot has affected him and will affect those around him. Unlike when the other three became pilots, Toji has more to his life than piloting and he has a lot to lose. So when the fight comes it's tragic and horrifying. Rei is paralysed because she doesn't just care about Shinji like Toji said, she cares about him too. Asuka is probably having a similar feeling and Shinji can't bring himself to fight no matter who the pilot is. If he had known he would probably have gone through an even worse breakdown. When Gendo took over with the dummy plug I mirrored the horror and dismay the NERV crew showed as Unit 03 was torn apart. It's unimaginable how traumatised Shinji must be having gone through that — even thinking about it makes me sad. Afterwards Misato (who I'm very relieved is alright) desperately tried to talk to him, but what can you do in that situation? - -*** - -**QOTD** - -*Who is your favorite side character in the series so far? (A character that isn't Shinji, Rei, Asuka or Misato)* - -Kaji, by far. He's a bit of an enigma. He adds a great deal to the dynamic of all the main characters and every scene he is in has been interesting and enjoyable.";False;False;;;;1610510414;;False;{};gj2u5ul;False;t3_kw1ugh;False;False;t3_kw1ugh;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj2u5ul/;1610582461;15;True;False;anime;t5_2qh22;;0;[]; -[];;;JenTen99;;;[];;;;text;t2_6d8tqc6g;False;False;[];;Banana fish had some good gun scenes.;False;False;;;;1610510469;;False;{};gj2u970;False;t3_kw5u7j;False;True;t3_kw5u7j;/r/anime/comments/kw5u7j/im_looking_for_some_anime_with_good_gunplay/gj2u970/;1610582553;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Red-Revrse9;;;[];;;;text;t2_85nt8vqp;False;False;[];;Thank you;False;False;;;;1610510471;;False;{};gj2u9cv;True;t3_kw7yy8;False;True;t1_gj2s41x;/r/anime/comments/kw7yy8/watch_this_anime_please/gj2u9cv/;1610582555;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Red-Revrse9;;;[];;;;text;t2_85nt8vqp;False;False;[];;Its an anime that will take time to get into by time i mean finish the first episode don't judge in the first 10 minutes like i did lol;False;False;;;;1610510540;;False;{};gj2udmk;True;t3_kw7yy8;False;True;t1_gj2sigr;/r/anime/comments/kw7yy8/watch_this_anime_please/gj2udmk/;1610582634;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;"- Fruits Basket 2019 (50 ep + new season airing soon) (Romance, Drama) - -- Fullmetal Alchemist Brotherhood (63 ep) (Action, Adventure) - -- Steins;Gate (48 ep) (Psychological, Romance, Harem) - -- Hunter x Hunter 2011 (148 ep) (Action, Adventure)";False;False;;;;1610510583;;False;{};gj2ugae;False;t3_kw7ye6;False;True;t3_kw7ye6;/r/anime/comments/kw7ye6/any_good_and_long_animes/gj2ugae/;1610582686;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NeverGonnaSimp;;;[];;;;text;t2_9pkuih4r;False;False;[];;Not even the amazingness of K: Return of Kings' animation can hold a candle to this.;False;False;;;;1610510606;;False;{};gj2uhob;False;t3_kw4o33;False;False;t1_gj2kg19;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj2uhob/;1610582713;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"Funimation, HiDive, and Netflix all have quite a few English dubs. Funi has a ""free with ads"" option but a lot of the dubs are locked behind premium, while both HiDive and Netflix are subscription only. - -It's against the subreddit's rules to ask for, name, or lead to pirate sites.";False;False;;;;1610510631;;False;{};gj2uj6l;False;t3_kw81pn;False;False;t3_kw81pn;/r/anime/comments/kw81pn/where_can_i_watch_anime_for_free/gj2uj6l/;1610582742;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;">Gendo takes charge and demonstrates once again how big of an asshole he is. Serious question, does anyone like him? Is he a good character at all? At this point it’ll take a lot to redeem him. - -I don't think Gendo cares to be redeemed and I doubt the show cares to redeem him either. He's so set in his ways and his ways are abhorrent. Good riddance to such a man who smiles whilst his son is forced to watch as his body tears apart another child. - ->If Toji is alive, I’m guessing he’s in some kind of coma or something? Almost like his sister. - -I really hope he'll be okay, but I doubt have my hopes up. - ->Kaji delivering more helpful truth bombs about life. Poor Shinji thought he understood his father. Turns out he doesn’t really know him at all. - -Kaji was right when he said that trying to understand ourselves and others is what makes life interesting. It's what makes Evangelion so interesting as well.";False;False;;;;1610510815;;False;{};gj2uugi;False;t3_kw1ugh;False;False;t1_gj1ta4u;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj2uugi/;1610582953;7;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkCatastrophe04;;;[];;;;text;t2_41c52e4k;False;False;[];;Gabriel Tenma from Gabriel Dropout on the basis that we’re both lazy;False;False;;;;1610510999;;False;{};gj2v5m1;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj2v5m1/;1610583162;5;True;False;anime;t5_2qh22;;0;[]; -[];;;NicDwolfwood;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/NicDwolfwood;light;text;t2_m1pib;False;False;[];;"**Rewatcher** - -**Hitagi Rendezvous pt. 2** - -* **""**..And I'm also someone who seeks the type of ""right"" that corrects mistakes. It's my role to eject those who have broken the rules."" \_ Ougi -* Ougi still playing divide and conquer with Araragi making him questions Gaen's motives and have him turn his back to Kiss Shot/Shinobu and Hachikuji -* Gahara setting Araragi up with the bowling game to assume absolute obedience over him -* [Spacesuit couple](https://i.imgur.com/XseeSzd.jpg) -* Gahara threw that game of bowling....or really did succumb to fatigue. Im sticking with the first because its cuter lol -* [cute](https://i.imgur.com/Msnn4BV.jpg) -* [LOL, If looks could kill](https://i.imgur.com/cUrWnMg.png) -* [princess carry](https://i.imgur.com/kPd87Uk.jpg) -* [LEWD!!](https://imgur.com/a/RiAmJ) -* Ougi back to spoil all the fluff we just saw between Gahara and Araragi - -**Questions:** - -1. There was alot of paralel's with the astrology Ougi was speaking about and the characters in this story, that's about as best I could pick up on. Everything else kinda goes over my head. The biggest takeaway is that Ougi seemingly wants Araragi to turn his back to oddities like Shinobu and Hachikuji and live a normal life. -2. The whole thing was a highlight. It was soo cute. -3. It was a very roundabout way to get him to say her first name. I'm always kinda miffed at how big a deal being on first name basis it is to the Japanese. -4. Ougi's position is re-confirmed to be that she wants Araragi to not follow Gaen's plans and reject Shinobu and Hachikuji.";False;False;;;;1610511163;;False;{};gj2vfh5;False;t3_kw1u5z;False;False;t3_kw1u5z;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj2vfh5/;1610583346;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;">They feel the eva. Everything eva feels, the pilot feels it too. Its not just Eva's hands that do stuff. They are an extension of the pilot's arms (again, because of that neural link). - -They at least severed the neural connections here, but I can't imagine how traumatic it would be seeing what's effectively your body tears apart another.";False;False;;;;1610511192;;False;{};gj2vhas;False;t3_kw1ugh;False;False;t1_gj2c2zo;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj2vhas/;1610583378;5;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;I do not believe any opening can spoil a show. The creators made the opening to be viewed at the beginning of each episode. If it was put there by the creators, then how is it a spoiler if you are meant to see it?;False;False;;;;1610511237;;False;{};gj2vk0n;False;t3_kw7gwu;False;True;t3_kw7gwu;/r/anime/comments/kw7gwu/paying_attention_to_the_intros/gj2vk0n/;1610583429;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FutureSage;;;[];;;;text;t2_7jrslhi;False;False;[];;Shimamura from Adachi to Shimamura;False;False;;;;1610511247;;False;{};gj2vkn3;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj2vkn3/;1610583440;22;True;False;anime;t5_2qh22;;0;[]; -[];;;jebbush1212;;;[];;;;text;t2_y3f8v1y;False;False;[];;Kumiko oumae;False;False;;;;1610511319;;False;{};gj2vp2n;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj2vp2n/;1610583521;43;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;Really? I watched all nine OVAs full on YouTube just a few months ago.;False;False;;;;1610511327;;False;{};gj2vpk8;False;t3_kw7g07;False;True;t3_kw7g07;/r/anime/comments/kw7g07/where_can_i_watch_aot_ova/gj2vpk8/;1610583530;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dxing2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/dxing;light;text;t2_sbxd9;False;False;[];;"The worst part is they have big names on the cast, many of whom have been apart of huge franchises and have voiced iconic characters. To name a few: - -Akari Kitou - Demon Slayer; Nezuko, Love Live; Kanata, classroom of the elite - -Souma Saitou- Akama Ga Kill, Gridman, Danmachi, Haikyuu - -Yui Ishikawa - AoT; Mikasa, Violet Evergarden - -Sumire Uesaka - Bang Dream, Overlord - -Daisuke Namikawa - Digimon; Yamato, Fate; Waver Velvet, FMA; Van, Persona 4; Yuu";False;False;;;;1610511504;;1610513340.0;{};gj2w0ey;False;t3_kw4o33;False;False;t1_gj2qd27;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj2w0ey/;1610583732;66;True;False;anime;t5_2qh22;;0;[]; -[];;;Blades853;;;[];;;;text;t2_5b1bvfz5;False;False;[];;If your looking for a harem the quintessential quintuplets is a good anime and just got its second season.it is kind of short with 13 episodes but more are coming but I would give it a look it is one of my favorites;False;False;;;;1610511540;;False;{};gj2w2ll;False;t3_kw7ye6;False;True;t3_kw7ye6;/r/anime/comments/kw7ye6/any_good_and_long_animes/gj2w2ll/;1610583773;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gorexxar;;;[];;;;text;t2_okdwe;False;False;[];;"The first episode had a nice plot hook. - - -...But the animation felt slow when it should be snappy, and static when it should be dynamic.";False;False;;;;1610511745;;False;{};gj2wezu;False;t3_kw4o33;False;True;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj2wezu/;1610584023;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Bikerider42;;;[];;;;text;t2_105yc5;False;False;[];;"It depends on what the opening is. I sometimes like to skip the lower-effort openings that are created from clips of the show. - -But studios like Shaft, David, and Bones create completely original openings. Meaning that they were written with the intent of playing before the episodes. I think that the foreshadowing is always fun to look back on- and I’ve never seen them put any spoilers that would ruin the enjoyment of the show. - -There are some really creative ways that studios have used openings- like Jojo, School Live, and Yuru Camp (even though its a lot more subtle) and its always really exciting to see that sort of stuff.";False;False;;;;1610512011;;False;{};gj2wv15;False;t3_kw7gwu;False;True;t3_kw7gwu;/r/anime/comments/kw7gwu/paying_attention_to_the_intros/gj2wv15/;1610584304;2;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;"I don't like your argument because it can be used to reject any criticism of fiction ever. 13 Reasons Why glorifies self harm and fails to address consequences of actions... but fiction can do anything it wants so who cares! - -See what I'm saying?";False;False;;;;1610512080;;False;{};gj2wz91;True;t3_kw4xl1;False;True;t1_gj2jtn5;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj2wz91/;1610584383;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;I was gonna reply this with a very similar rationale;False;False;;;;1610512121;;False;{};gj2x1ns;False;t3_kw6uuw;False;True;t1_gj2nvjv;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj2x1ns/;1610584425;2;True;False;anime;t5_2qh22;;0;[]; -[];;;As_Previously_Stated;;;[];;;;text;t2_1gnfyiv3;False;False;[];;"The first character that popped into my head when I read this was Okumura Rin from Blue Exorcist. Idk if I'm biased because it was one of the first anime's I watched but I recently re watched it and I still love his character, aside from the moments when he becomes super stupid for what feels to me as plot reasons. - -He has a certain bull-headed charm that you can find in most shonen-protagonist but for whatever reason his version of it connects with me more than the other. Going all in in life, never giving up, giving your all for your friends and being a good cook are all things I find admirable and worth striving for. - ---- - -Idk I just remember watching it ages ago and really vibing with him and wanting to be like him.";False;False;;;;1610512409;;False;{};gj2xigz;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj2xigz/;1610584726;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"People generally know the difference between fiction and reality. Right and wrong. - -We know better than to go out shooting people because if we do those people will be hurt/killed and we will be punished. - -We know, if we cut ourselves, we will bleed. - -We know, if we don't eat for days, we will starve. - -We know the difference between what to do and not to do. (Only a -minority don't, or use those things as excuses).";False;False;;;;1610512595;;False;{};gj2xt8k;False;t3_kw4xl1;False;True;t1_gj2wz91;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj2xt8k/;1610584919;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ken_NT;;;[];;;;text;t2_56zdq;False;False;[];;"Maybe they should have spent the money on better animation - -Does something like this hurt their careers the same it would a traditional actor being in a bad movie?";False;False;;;;1610512721;;False;{};gj2y0mu;False;t3_kw4o33;False;False;t1_gj2w0ey;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj2y0mu/;1610585050;25;True;False;anime;t5_2qh22;;0;[]; -[];;;_-Tokijin-_;;;[];;;;text;t2_18iw7hc0;False;False;[];;Anime is the plural of anime;False;False;;;;1610512735;;False;{};gj2y1fu;False;t3_kw7ye6;False;True;t3_kw7ye6;/r/anime/comments/kw7ye6/any_good_and_long_animes/gj2y1fu/;1610585064;1;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;"""Realistic"" can be interpreted to mean ""follows internally set logic"". Realism and reality are different. Kaiji sets its internal logic to allow for distorted facial features. It also sets it for the world to resemble our own, and to use the same physics as our own. So if every character looked perfect, as in other shows, I would think, ""Kaiji, which clearly features many details that would lead me to believe its setting is of normal human lives, human societies, and Earth-like cause and effect, for some reason seems to ignore the concept of genetic variety"". And that would stand out. But it doesn't, thankfully.";False;False;;;;1610512911;;False;{};gj2ybo3;True;t3_kw4xl1;False;True;t1_gj2hqq6;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj2ybo3/;1610585244;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Suhkein;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Neichus;light;text;t2_qahwgd;False;False;[];;"Suzumiya Haruhi - -It's difficult to explain without [sounding too self-aggrandizing](https://i.imgur.com/xQhE5Z0.jpg), but I found the source and outward manifestations of her troubles eminently relatable.";False;False;;;;1610512948;;False;{};gj2yds9;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj2yds9/;1610585281;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Draco_Estella;;MAL;[];;https://myanimelist.net/animelist/Estella_Rin;dark;text;t2_t7ptj;False;False;[];;"Just to throw up some more support for Snarky... - -I don't see what you are saying at all. Do you mean that fiction has to follow moral guidelines too as to what should be done and what should not? That is a huge slippery slope, since morals are not universal. It will cut into religious grounds too, and not everyone agrees with the same set of rules. - -In a way, fiction should be allowed to do anything. It is imagination, people can imagine themselves doing all kinds of things from killing people, raping people, cutting themselves, torturing people.... and fiction allows for this expression. It is only when, people start to dissociate reality from fiction and actually act out what they imagine, when there is a problem to be had. - -And some people do not do this separation well, resulting in people just going fuck it and criticising such works. But, blame should not be placed on the creators of such works, but the idiots who actually do what should have remained only in fiction.";False;False;;;;1610513175;;False;{};gj2yqo1;False;t3_kw4xl1;False;False;t1_gj2wz91;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj2yqo1/;1610585516;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rk06;;;[];;;;text;t2_viqut;False;False;[];;"hunter x hunter is good. - -FMA is good too, but some people stop it after shou tucker episode... - -I suggest attack on titan, as it is currently airing, so it will keep her hooked for few more weeks to come. - -If she prefers simple, slice of life, consider hyouka/oregairu.";False;False;;;;1610513198;;False;{};gj2yrz5;False;t3_kw6qhk;False;True;t3_kw6qhk;/r/anime/comments/kw6qhk/my_wife_is_finally_willing_to_watch_an_anime_with/gj2yrz5/;1610585538;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dxing2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/dxing;light;text;t2_sbxd9;False;False;[];;"I feel like because seiyuus are in so many anime, it doesn’t really matter. If this were your first or second anime, then it probably wouldn’t look great. But no one is going to associate Akarin or Yui with this anime in the longterm. - -To your point though, I have the same thoughts about the seiyuu who are voicing the women in Kaifuku";False;False;;;;1610513286;;False;{};gj2ywy1;False;t3_kw4o33;False;False;t1_gj2y0mu;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj2ywy1/;1610585624;51;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;"It doesn't convey logical light mysteries to you? - -The stuff we said isn't mutually exclusive, and what you said it conveys for you is something it conveys for me too. But you seem to be talking about theme, whereas I'm more focused on the tone. - -Sure, we may all have differences in our beliefs on the exact theme of Hyouka, but I don't think anyone would disagree that it's grounded heavily in reality. - -And when something grounded heavily in reality seems to ignore the concept of genetic diversity, while following many other Earthian logics and cause-and-effects, the genetic diversity issue stands out. See why I think it's a valid criticism? - -But hey, it's a huge trend in anime and who am I to yell at the established convention, right?";False;False;;;;1610513338;;False;{};gj2yztv;True;t3_kw4xl1;False;True;t1_gj2gib1;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj2yztv/;1610585673;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wall-e200;;;[];;;;text;t2_1aewpo1n;False;False;[];;Attack on titan;False;False;;;;1610513609;;False;{};gj2zesi;False;t3_kw6qhk;False;True;t3_kw6qhk;/r/anime/comments/kw6qhk/my_wife_is_finally_willing_to_watch_an_anime_with/gj2zesi/;1610585927;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Magnus-Artifex;;;[];;;;text;t2_3xwuipbe;False;False;[];;Wonder Egg Priority? Nah, this season I’m watching Ex-Arm;False;False;;;;1610513701;;False;{};gj2zjsx;False;t3_kw4o33;False;False;t1_gj2uhob;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj2zjsx/;1610586012;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Magnus-Artifex;;;[];;;;text;t2_3xwuipbe;False;False;[];;Nah fam, I am a 3D animator and I don’t understand either;False;False;;;;1610513787;;False;{};gj2zolc;False;t3_kw4o33;False;False;t1_gj2f3bz;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj2zolc/;1610586097;16;True;False;anime;t5_2qh22;;0;[]; -[];;;made-with-jeans;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;http://www.anime-planet.com/forum/members/;light;text;t2_6y5uft6g;False;False;[];;Great pretender;False;False;;;;1610513854;;False;{};gj2zs82;False;t3_kw6qhk;False;True;t3_kw6qhk;/r/anime/comments/kw6qhk/my_wife_is_finally_willing_to_watch_an_anime_with/gj2zs82/;1610586172;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Magnus-Artifex;;;[];;;;text;t2_3xwuipbe;False;False;[];;"The explanation for this being... well, this, is that the higher ups hired a live action director who had 0 experience on anime and told him to do whatever he could. - -So he got some motion capture suits, did motion capture and aired it without polishing the mocap data. It’s obvious that no one knew animation. - -Hell, if I can self insert, then I animated something way better just a bit ago with my laptop in only 2 hours. - -Poor mangaka, VA’s and sound designers. Especially the sound designers. And the mangaka. And the VA’s. And the director who will have a trauma.";False;False;;;;1610514096;;False;{};gj305c7;False;t3_kw4o33;False;False;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj305c7/;1610586435;29;True;False;anime;t5_2qh22;;0;[]; -[];;;Draco_Estella;;MAL;[];;https://myanimelist.net/animelist/Estella_Rin;dark;text;t2_t7ptj;False;False;[];;"No, those mysteries feel more like a plot vehicle to make things be more spicy. I am not a fan of mystery, and those mysteries are just that, things that he managed to notice. As for the tone, it feels more like drama and slice of life to me more than mystery. If you want to talk about tone, it is a light-hearted series about how a group of friends came together to resolve their everyday life problems. - -> when something grounded heavily in reality seems to ignore the concept of genetic diversity, while following many other Earthian logics and cause-and-effects, the genetic diversity issue stands out. - -You are assuming that, for something to be realistic, it has to follow majority of the rules on the ground in order for it to be realistic, and genetic diversity is one of them. I am guessing, that you are also assuming that as long as something is realistic, it has to be real to life. I agree with the latter, but I do not agree with the former. - -Do you watch CGDCT anime? All of the girls are cute, and they are called CGDCT because the girls are cute. If applying your logic, CGDCT anime are not realistic at all, and some of the girls have to be more plain, or at least not cute. But, it is a realistic anime that is supposed to capture the everyday life that people have. The girls being cute is just that, the girls being cute. - -Realistic anime are called realistic not because they follow the rules set on earth, but more because the experiences the characters experience mirror what people have experienced irl. Which is why I agree with the real to life part, the experiences and what they do are very similar to what we have around us. They won't be the same as real life, because those are fiction. More so in anime, where imagination can be stretched as much as the writer intends to. And in this case, the imagination is stretched as to how the characters themselves look too.";False;False;;;;1610514155;;False;{};gj308io;False;t3_kw4xl1;False;False;t1_gj2yztv;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj308io/;1610586501;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ENKlDU;;;[];;;;text;t2_4scvchzo;False;False;[];;"Keep yo head up king - -Riders beauty is hard to match for most - -(also Ufotable doing her justice in Heaven Feel 😭)";False;False;;;;1610514358;;False;{};gj30jnr;False;t3_kw6uuw;False;False;t1_gj2ohbe;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj30jnr/;1610586711;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nghtmare-Moon;;;[];;;;text;t2_jsig9;False;False;[];;You best keep some in stock for the next remaining episodes.;False;False;;;;1610514374;;False;{};gj30kh5;False;t3_kw1ugh;False;False;t1_gj2tg3m;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj30kh5/;1610586726;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Kairyu_gen1;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/kairyu_gen1;dark;text;t2_v5hbm;False;False;[];;Shiroe from Log Horizon. I love his social awkwardness and general preference to stay out of the spotlight while still getting stuff done.;False;False;;;;1610514396;;False;{};gj30lnf;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj30lnf/;1610586746;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Weeb_Slayer069;;;[];;;;text;t2_93zpqd3n;False;False;[];;Rewatcher here, I will say that to all the first timers watching it will get really interesting from here on out.;False;False;;;;1610514895;;False;{};gj31bzq;False;t3_kw1ugh;False;False;t3_kw1ugh;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj31bzq/;1610587226;5;True;False;anime;t5_2qh22;;0;[]; -[];;;i_am_the_kiLLer;;;[];;;;text;t2_kvi84;False;False;[];;The Monogatari girls are all amazing characters in that regard. I used to hate Hanekawa without knowing why, but later on i realised it was because i could see in her the parts of me i did not like. Similarly i think many people, especially us anime fans can relate with how Nadeko ran away from reality.;False;False;;;;1610514906;;False;{};gj31cjz;False;t3_kw6uuw;False;False;t1_gj2kqzg;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj31cjz/;1610587236;15;True;False;anime;t5_2qh22;;0;[]; -[];;;jetah;;;[];;;;text;t2_7x3ws;False;False;[];;I hate intro spoilers. I'm pissed with Black Clover because of last week's intro toward the end.;False;False;;;;1610515366;;False;{};gj320gq;False;t3_kw7gwu;False;True;t3_kw7gwu;/r/anime/comments/kw7gwu/paying_attention_to_the_intros/gj320gq/;1610587661;0;True;False;anime;t5_2qh22;;0;[]; -[];;;jetah;;;[];;;;text;t2_7x3ws;False;False;[];;I've seen parts of the anime in the intro.;False;False;;;;1610515391;;False;{};gj321pj;False;t3_kw7gwu;False;False;t1_gj2vk0n;/r/anime/comments/kw7gwu/paying_attention_to_the_intros/gj321pj/;1610587683;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lordkabal26;;;[];;;;text;t2_apthb;False;False;[];;Should've had Rooster Teeth do the animation cause goddamn RWBY's first episode of the series blows this out of the water.;False;False;;;;1610515514;;False;{};gj3283a;False;t3_kw4o33;False;False;t1_gj2iu4b;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj3283a/;1610587797;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Orzislaw;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Orzi/;light;text;t2_h8rc3;False;False;[];;Erika Kurumi from Heartcatch Precure. She has kinda similar personality to me.;False;False;;;;1610515549;;False;{};gj329sy;False;t3_kw6uuw;False;True;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj329sy/;1610587830;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wondererSkull;;;[];;;;text;t2_82zu3g2y;False;False;[];;I skip too (because potential-spoilers) until I finish the show. Then, If I like the OP/ED, I will go and watch it and all the versions of it;False;False;;;;1610515689;;False;{};gj32gvc;False;t3_kw7gwu;False;False;t3_kw7gwu;/r/anime/comments/kw7gwu/paying_attention_to_the_intros/gj32gvc/;1610587956;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mockingbirdguy;;;[];;;;text;t2_6096n672;False;False;[];;Gilda (Promise Neverland);False;False;;;;1610515766;;False;{};gj32ksa;False;t3_kw6uuw;False;True;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj32ksa/;1610588025;3;True;False;anime;t5_2qh22;;0;[]; -[];;;wondererSkull;;;[];;;;text;t2_82zu3g2y;False;False;[];;"This Version of OP technically shows the entire final battle -https://m.youtube.com/watch?v=07sg564pM9U - -Here's the final battle -https://m.youtube.com/watch?v=VoIpHIMTBHY";False;False;;;;1610515858;;False;{};gj32pds;False;t3_kw7gwu;False;True;t1_gj2vk0n;/r/anime/comments/kw7gwu/paying_attention_to_the_intros/gj32pds/;1610588107;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blackninjakitty;;;[];;;;text;t2_9orx3;False;False;[];;"Natsume from Natsume Yuujincho - - -how he feels passed around and unloved and slowly learns to care about people and to let himself be cared for";False;False;;;;1610516203;;False;{};gj336lg;False;t3_kw6uuw;False;True;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj336lg/;1610588404;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lments_;;;[];;;;text;t2_87nnrfqs;False;False;[];;Black lagoon kind of reminds me of a darker more contemporary version of bebop;False;False;;;;1610516305;;False;{};gj33bpa;False;t3_kw4wif;False;True;t3_kw4wif;/r/anime/comments/kw4wif/hey_cant_decide_what_to_watch/gj33bpa/;1610588495;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lments_;;;[];;;;text;t2_87nnrfqs;False;False;[];;Black lagoon;False;False;;;;1610516324;;False;{};gj33cou;False;t3_kw4wif;False;True;t3_kw4wif;/r/anime/comments/kw4wif/hey_cant_decide_what_to_watch/gj33cou/;1610588512;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mysteriouswitchgal17;;;[];;;;text;t2_5gyem0xu;False;False;[];;"I've watched the first season of K-ON, and I think it's a fabulous anime that gives me comfortable and serene feelings 😁. Will watch Season 2 of K-ON! soon. I don't know what Gurren Lagann is, but it sounds like an action-oriented anime. - -&#x200B; - -As for Attack on Titan, I am reading the manga and am also watching the latest episodes of the anime. It's legendary! I love it to the moon and back! Need to try Hyouka and Haikyuu!! 😆";False;False;;;;1610516380;;False;{};gj33fh3;False;t3_kw4xl1;False;True;t1_gj2cx3r;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj33fh3/;1610588559;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RDSteve;;;[];;;;text;t2_pddu4;False;False;[];;re-l (ergo proxy) I find to be very relatable.;False;False;;;;1610517004;;False;{};gj349ty;False;t3_kw6uuw;False;True;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj349ty/;1610589091;2;True;False;anime;t5_2qh22;;0;[]; -[];;;acertainpvffin320;;;[];;;;text;t2_5tqlmzm8;False;False;[];;Kamjou is that you!?;False;False;;;;1610517053;;False;{};gj34c7j;False;t3_kw4o33;False;True;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj34c7j/;1610589133;3;True;False;anime;t5_2qh22;;0;[]; -[];;;daedroth4;;;[];;;;text;t2_14t7d0;False;False;[];;Sayaka Miki. A lot of the more serious aspects of her personality hit close.;False;False;;;;1610517279;;False;{};gj34ndb;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj34ndb/;1610589325;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Tesrali;;;[];;;;text;t2_o4d7alx;False;False;[];;Rem: her inferiority complex.;False;False;;;;1610517399;;False;{};gj34t8l;False;t3_kw6uuw;False;True;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj34t8l/;1610589429;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Harpr33t-Singh;;;[];;;;text;t2_2xgwk401;False;False;[];;A lot of rewatchers are saying this. Shit's about to go down, huh;False;False;;;;1610517419;;False;{};gj34u5k;False;t3_kw1ugh;False;True;t1_gj31bzq;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj34u5k/;1610589445;2;True;False;anime;t5_2qh22;;0;[]; -[];;;alexjb12;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/alexjb12;dark;text;t2_147sr8;False;False;[];;God I wish that was me;False;False;;;;1610517689;;False;{};gj356yo;False;t3_kw6uuw;False;False;t1_gj2vp2n;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj356yo/;1610589676;9;True;False;anime;t5_2qh22;;0;[]; -[];;;CleaningCube;;;[];;;;text;t2_2uosso4m;False;False;[];;Yuu Koito from Yagate Kimi Ni Naru. She is the first character I've ever felt actually represented ***me***. I'm demiromantic and her entire character reminds me of myself.;False;False;;;;1610517816;;False;{};gj35cum;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj35cum/;1610589796;15;True;False;anime;t5_2qh22;;0;[]; -[];;;alexjb12;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/alexjb12;dark;text;t2_147sr8;False;False;[];;I can kinda see myself in Akiyama Mio;False;False;;;;1610517824;;False;{};gj35d9b;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj35d9b/;1610589803;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Harpr33t-Singh;;;[];;;;text;t2_2xgwk401;False;False;[];;" ->Afterwards Misato (who I'm very relieved is alright) desperately tried to talk to him, - -That scene was great too. Her voice was nervous and hesitant at first but when Shinji saw it was Toji inside Unit 03, her voice started to break down horribly. And Shinji's scream at the end was horrifying. Great voice acting";False;False;;;;1610517950;;False;{};gj35j4x;False;t3_kw1ugh;False;False;t1_gj2u5ul;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj35j4x/;1610589913;4;True;False;anime;t5_2qh22;;0;[]; -[];;;hanakoswifu;;;[];;;;text;t2_9r07o2sj;False;False;[];;well yes i know i am going to have to watch it on crunchy roll but i was just asking;False;False;;;;1610518927;;False;{};gj36rqf;True;t3_kw2d9l;False;True;t1_gj1srpg;/r/anime/comments/kw2d9l/help_me_if_im_wrong/gj36rqf/;1610590737;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MichaelJahrling;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Michael_Jahrling;light;text;t2_7ebl5;False;False;[];;This direction has gotta be among the very worst in any visual medium Ive ever seen.;False;False;;;;1610518956;;1610521103.0;{};gj36t2t;False;t3_kw4o33;False;True;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj36t2t/;1610590762;1;True;False;anime;t5_2qh22;;0;[]; -[];;;randomkidlol;;;[];;;;text;t2_bg4iz;False;False;[];;except rwby's creative director and the dude that animated/produced most of the stuff in the first 3 seasons died years ago.;False;False;;;;1610519170;;False;{};gj372k8;False;t3_kw4o33;False;False;t1_gj3283a;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj372k8/;1610590933;19;True;False;anime;t5_2qh22;;0;[]; -[];;;wutfacer;;;[];;;;text;t2_4olb9ufq;False;False;[];;Same ( ͡° ͜ʖ ͡°);False;False;;;;1610519805;;False;{};gj37uh2;False;t3_kw6uuw;False;True;t1_gj35d9b;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj37uh2/;1610591423;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;lordkabal26;;;[];;;;text;t2_apthb;False;False;[];;RWBY's animation hasn't really dropped in quality, it's still top notch, unlike this clusterfuck. Hell even Gen:Lock has better animation quality than this atrocity. I'm pretty sure Monty would be pleased with how Rooster Teeth has treated the RWBY series (and that his older brother is doing the voice of the Lie Ren);False;False;;;;1610520357;;False;{};gj38i5q;False;t3_kw4o33;False;False;t1_gj372k8;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj38i5q/;1610591846;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610521096;;False;{};gj39d57;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj39d57/;1610592402;4;True;False;anime;t5_2qh22;;0;[]; -[];;;voornaam1;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://www.anime-planet.com/users/Max4444;dark;text;t2_3yiwp1ue;False;False;[];;I listen to them wothout looking at the screen but that's because I can't saty focused on just video. Same reason I don't watch dubs, I need to need to look at the screen.;False;False;;;;1610521612;;False;{};gj39ya7;False;t3_kw7gwu;False;True;t3_kw7gwu;/r/anime/comments/kw7gwu/paying_attention_to_the_intros/gj39ya7/;1610592798;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Boujoulo;;;[];;;;text;t2_6iczsif5;False;False;[];;Do you wear glasses;False;False;;;;1610521937;;False;{};gj3abm9;False;t3_kw6uuw;False;True;t1_gj30lnf;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3abm9/;1610593039;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PurpleOWL13;;;[];;;;text;t2_2gbetkfo;False;False;[];;asakusa midori from Eizouken ni wa te wo dasuna!;False;False;;;;1610522520;;False;{};gj3az9x;False;t3_kw6uuw;False;True;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3az9x/;1610593477;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;"This is basically an insult to the medium and fans. If you have zero anime experience, you probably shouldn't be directing anime. - -3DCG can be so hard to get right, because of all the corner cutting and inexperience. This just shows how dumb Crunchyroll is for funding this. - - -But they make the weirdest financial choices (High Guardian Spice).";False;False;;;;1610522616;;False;{};gj3b33b;False;t3_kw4o33;False;False;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj3b33b/;1610593545;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Wonderllama5;;;[];;;;text;t2_jqsfu;False;False;[];;"A Silent Voice - -Steins Gate - -Re:Zero - -Kaguya-sama";False;False;;;;1610522685;;False;{};gj3b5sl;False;t3_kw6qhk;False;True;t3_kw6qhk;/r/anime/comments/kw6qhk/my_wife_is_finally_willing_to_watch_an_anime_with/gj3b5sl/;1610593593;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Turquoise2_;;;[];;;;text;t2_n6dvp;False;False;[];;because it's too much effort to make 3d models for every character that appears if they're only gonna have 1 or 2 scenes;False;False;;;;1610523099;;False;{};gj3blwf;False;t3_kw4o33;False;False;t1_gj2f3bz;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj3blwf/;1610593881;14;True;False;anime;t5_2qh22;;0;[]; -[];;;queen_lucifer7;;;[];;;;text;t2_2vz05pcw;False;False;[];;I’m glad someone else thinks like me and I’m not the only one;False;False;;;;1610523195;;False;{};gj3bpnt;True;t3_kw7gwu;False;True;t1_gj32gvc;/r/anime/comments/kw7gwu/paying_attention_to_the_intros/gj3bpnt/;1610593950;1;True;False;anime;t5_2qh22;;0;[]; -[];;;queen_lucifer7;;;[];;;;text;t2_2vz05pcw;False;False;[];;I haven’t seen the new episode or intro yet but I get what you mean, they’ve done with all the seasons so far;False;False;;;;1610523239;;False;{};gj3brel;True;t3_kw7gwu;False;True;t1_gj320gq;/r/anime/comments/kw7gwu/paying_attention_to_the_intros/gj3brel/;1610593983;0;True;False;anime;t5_2qh22;;0;[]; -[];;;DqrkExodus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Seraira;light;text;t2_162r04;False;False;[];;I really like how realistic the characters were in Eupho;False;False;;;;1610523396;;False;{};gj3bxd5;False;t3_kw6uuw;False;False;t1_gj2vp2n;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3bxd5/;1610594099;17;True;False;anime;t5_2qh22;;0;[]; -[];;;WhoIsMeredith;;;[];;;;text;t2_7o2vfl40;False;False;[];;fate series;False;False;;;;1610523433;;False;{};gj3byv0;False;t3_kw7ye6;False;True;t3_kw7ye6;/r/anime/comments/kw7ye6/any_good_and_long_animes/gj3byv0/;1610594127;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wondererSkull;;;[];;;;text;t2_82zu3g2y;False;False;[];;Remember onePiece OP 22 that even spoiled for the manga-Readers;False;False;;;;1610524096;;False;{};gj3col4;False;t3_kw7gwu;False;True;t1_gj2pkrn;/r/anime/comments/kw7gwu/paying_attention_to_the_intros/gj3col4/;1610594610;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Lil-Chem;;;[];;;;text;t2_3280exhk;False;False;[];;God that was great;False;False;;;;1610524182;;False;{};gj3crse;False;t3_kw4o33;False;True;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj3crse/;1610594677;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> all happening in a dream like today's episode? - -is Ougi even real?";False;False;;;;1610524267;;False;{};gj3cux8;True;t3_kw1u5z;False;True;t1_gj2twwa;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj3cux8/;1610594738;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kairyu_gen1;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/kairyu_gen1;dark;text;t2_v5hbm;False;False;[];;Yep! Not the round kind though, more like Henrietta's;False;False;;;;1610524269;;False;{};gj3cuzp;False;t3_kw6uuw;False;True;t1_gj3abm9;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3cuzp/;1610594739;2;True;False;anime;t5_2qh22;;0;[]; -[];;;h00n23;;;[];;;;text;t2_5wbxz569;False;False;[];;Naruto? I feel lonely like him;False;False;;;;1610524329;;False;{};gj3cx7c;False;t3_kw6uuw;False;True;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3cx7c/;1610594780;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Master10K;;MAL;[];;http://myanimelist.net/profile/Master10K;dark;text;t2_794zx;False;False;[];;"> I'm pretty sure Monty would be pleased with how Rooster Teeth has treated the RWBY series - -Really because the newer fights feel stiff and aren't as expressive as some of the old ones.";False;False;;;;1610524459;;False;{};gj3d25z;False;t3_kw4o33;False;False;t1_gj38i5q;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj3d25z/;1610594880;8;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> After thinking about it, I'm wondering if Kaiki, Gaen, and Oshino got cursed such that they couldn't help anyone. We've definitely seen them walk so it's at least different from the curse on Kagenui and Teori. - -Kagenui and Teori both created the legs -> leg curse - -Gaen the head most likely and her rainbow ""knowing all but not predicting the future"" thing could relate to her curse. Kaiki has the ""can't succeed in anything he is personally invested"" thing going on, Meme Oshino way back in Suruga Monkey just said that ""stories about arms are never pretty, especially left ones"". He only wears a glove on the right hand and lets one arm dangle most of the time, no idea what exactly his thing is, curse for balance?";False;False;;;;1610524462;;False;{};gj3d29d;True;t3_kw1u5z;False;True;t1_gj2sm73;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj3d29d/;1610594882;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> It's unclear whether Araragi's just thinking of Ougi when he was asleep, or if she's actually figured a way to get into his head. - -Girl of his dreams y'know - -> she only had to threaten to kill herself unless he did what she told him to do. Y'know, no biggie. - -but in their dynamic that's still just playful for the most part at least";False;False;;;;1610524538;;False;{};gj3d583;True;t3_kw1u5z;False;False;t1_gj2s7u6;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj3d583/;1610594938;4;True;False;anime;t5_2qh22;;0;[]; -[];;;thezander8;;;[];;;;text;t2_o33zr;False;False;[];;"I won't fault you for going MHA or FMA:B, but a kinda out-there pick is Tower of God, which actually gave me serious ATLA vibes at times with a healthy dose of HxH too. I was absolutely hooked by the second episode. - -Also if she loved ATLA then y'all might want to bump Korra and the Dragon Prince pretty high up your watchlist as well IMO";False;False;;;;1610524634;;False;{};gj3d8r4;False;t3_kw6qhk;False;True;t3_kw6qhk;/r/anime/comments/kw6qhk/my_wife_is_finally_willing_to_watch_an_anime_with/gj3d8r4/;1610595003;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> I'm always kinda miffed at how big a deal being on first name basis it is to the Japanese. - -It's overplayed here, but even the real life counterpart is still a phenomenon that I understand on a ""this is how it is"" level but not why they are that way";False;False;;;;1610524754;;False;{};gj3dd8x;True;t3_kw1u5z;False;False;t1_gj2vfh5;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj3dd8x/;1610595083;3;True;False;anime;t5_2qh22;;0;[]; -[];;;h00n23;;;[];;;;text;t2_5wbxz569;False;False;[];;Your name silent voice if she is into romance or chihayafuru it is a josei anime maybe she would be interested.;False;False;;;;1610524799;;False;{};gj3dexu;False;t3_kw6qhk;False;True;t3_kw6qhk;/r/anime/comments/kw6qhk/my_wife_is_finally_willing_to_watch_an_anime_with/gj3dexu/;1610595112;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SevenUsers;;;[];;;;text;t2_nwy1f;False;False;[];;This is my #1 as well whether it's male or female. How much I relate to her makes me love her character that much more.;False;False;;;;1610524899;;False;{};gj3diov;False;t3_kw6uuw;False;True;t1_gj34ndb;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3diov/;1610595179;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Audrey_spino;;;[];;;;text;t2_11jl4w;False;False;[];;Sadly, absolutely none. While there are some characters of the opposite sex I kind of vibe with. I never felt strongly relating to them.;False;False;;;;1610524951;;False;{};gj3dkmm;False;t3_kw6uuw;False;True;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3dkmm/;1610595216;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Worm38;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Worm38;light;text;t2_21wfoc0w;False;False;[];;"Well, not just that. [Monogatari Second Season](/s ""I've felt suffocated by my parents in the past like that and I was the kind to comply and either hide things or repress them. I've also managed to convince myself of some of my lies when I was a kid, forgetting the truth until I was actually presented with the truth. Rather than manga, I've also repressed my desire to make video games for more than 10 years, due to parental pressure."")";False;False;;;;1610526529;;False;{};gj3f6e3;False;t3_kw6uuw;False;False;t1_gj31cjz;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3f6e3/;1610596242;7;True;False;anime;t5_2qh22;;0;[]; -[];;;TheBrownestStain;;;[];;;;text;t2_tg4o5ho;False;False;[];;There was a definite drop after volume 3 but imo it’s been steadily improving ever since, alongside basically every other aspect of the show. That and to me it feels like the current fights are more so just in a different style than Monty’s, rather than simply being better or worse. Monty had his style, the current animators have theirs, and to me there’s nothing wrong with that. Anything else is just personal opinions as far as I care.;False;False;;;;1610526994;;False;{};gj3fmzo;False;t3_kw4o33;False;False;t1_gj3d25z;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj3fmzo/;1610596526;7;True;False;anime;t5_2qh22;;0;[]; -[];;;TypicalCrowAgain;;;[];;;;text;t2_5520x4cg;False;False;[];;The Promised Neverland;False;False;;;;1610527233;;False;{};gj3fvps;False;t3_kw6qhk;False;True;t3_kw6qhk;/r/anime/comments/kw6qhk/my_wife_is_finally_willing_to_watch_an_anime_with/gj3fvps/;1610596678;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IJustReadEverything;;;[];;;;text;t2_homdv;False;False;[];;I can't get over just how his eyes look like they're perpetually in shock.;False;False;;;;1610527606;;False;{};gj3g9a1;False;t3_kw4o33;False;True;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj3g9a1/;1610596917;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FireRifle64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FireRifle64;light;text;t2_29fr8mww;False;False;[];;"Idk, I feel that for some people, they do not what exactly is getting spoiled which helps create hype for anime-only watchers. Does it spoil? Sure, but that doesn't mean they will know the context of some of the spoils. It leaves them guessing at what is to come. -Edit: Mind you, hyping the some stuff is double edge sword as it may not be as good compared to what is shown in the OP.";False;False;;;;1610529183;;False;{};gj3htb7;False;t3_kw7gwu;False;True;t1_gj320gq;/r/anime/comments/kw7gwu/paying_attention_to_the_intros/gj3htb7/;1610597904;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Beckymetal;;;[];;;;text;t2_10wmi0;False;False;[];;Ah shit it's probably Shinji from Evangelion.;False;False;;;;1610529271;;False;{};gj3hwd1;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3hwd1/;1610597956;9;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;I found them all on YouTube;False;False;;;;1610529503;;False;{};gj3i4jm;False;t3_kw7g07;False;True;t3_kw7g07;/r/anime/comments/kw7g07/where_can_i_watch_aot_ova/gj3i4jm/;1610598096;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DemonCyborg72;;;[];;;;text;t2_9l5ehk66;False;False;[];;Hachiman - his whole personality.;False;False;;;;1610529676;;False;{};gj3ialg;False;t3_kw6uuw;False;True;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3ialg/;1610598199;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Novelle_1020;;;[];;;;text;t2_3um1vzgu;False;False;[];;I relate a bit to Subaru Natsuki because I worry sometimes that I might *become* him—a socially awkward anime nerd who doesn’t go to school. I really connect with his self-esteem issues too.;False;False;;;;1610529859;;False;{};gj3ih0y;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3ih0y/;1610598307;8;True;False;anime;t5_2qh22;;0;[]; -[];;;rickyplaydough;;;[];;;;text;t2_woi76;False;False;[];;Kouko Kaga from Golden Time sadly;False;False;;;;1610529985;;False;{};gj3ilhw;False;t3_kw6uuw;False;True;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3ilhw/;1610598385;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HadorLorindol;;;[];;;;text;t2_2p0nmmjw;False;False;[];;" Rin Shima - -I like reading books while camping, good food and get annoyed when people push me too hard to do something with them. even if i enjoy it at the end most of the time. - -##";False;False;;;;1610530602;;False;{};gj3j6pt;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3j6pt/;1610598745;4;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"It probably won't get any more seasons sadly. The manga is still ongoing but took some shift in genre some time after the anime aired because Tomoko's voice actress, openly lesbian, befriended the mangaka duo and gave them inspirations from personal experience. It's a good story, but it is no longer just ""Tomoko is cringe and has social anxiety"", she has personal growth. - -Anime did not have enough cute girls and called out the otaku so it was great but not popular";False;False;;;;1610530760;;False;{};gj3jc2u;False;t3_kw45xa;False;True;t3_kw45xa;/r/anime/comments/kw45xa/is_watamote_over_with/gj3jc2u/;1610598835;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZapsZzz;;;[];;;;text;t2_g2hnymx;False;False;[];;"First time sub - -Watching these older shows draw you to the fact that more recent shows got fixed into a ""1 cour"" ""2cour"" further and typically by X episode this happens. Where's these older shows the episode doubt seems to be more ""wait and see"". - -As far as the story goes so far it's fairly predictable. For me as I read the manga I knew there's a twist / development about halfway but since I never watched the anime I can't judge how far out course we are yet. Have to say the fight scenes aren't too exciting yet. Perhaps the downside of using round irregular shapes for the mecha design as it's is much harder to animate well. Compare to the likes of Gundam or Marcross - where the mecha are more regular straight lines. - -QoTD 1 as an obvious ""good guy"" in a rather obvious ""bad noble"" camp, I think it only natural the escape comes quite early, before being put to a moral tough choice. - -QOTD 2 is kind of a standard set up for an adventure - now on the run and go to different places to grind / level up.";False;False;;;;1610531144;;False;{};gj3jpn2;False;t3_kw478y;False;True;t3_kw478y;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj3jpn2/;1610599072;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"Unless the experience is gendered, the character's gender is no factor in relatability. Even the dog in Aho-Girl is damn relatable. - -Tomoko from Watamote feels very familiar in many aspects";False;False;;;;1610531190;;False;{};gj3jraa;False;t3_kw6uuw;False;True;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3jraa/;1610599100;2;True;False;anime;t5_2qh22;;0;[]; -[];;;metaaltheanimefan;;;[];;;;text;t2_1qdntfx;False;False;[];;Ritsuka from given comes to mind. Not because i'm gay but his social akwardness and lack of proper communication skills;False;False;;;;1610531366;;False;{};gj3jxeb;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3jxeb/;1610599201;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Plastic_Swimming_970;;;[];;;;text;t2_8ve4i2eu;False;False;[];;Cant believe you left out the legendary fried rice scene;False;False;;;;1610531761;;False;{};gj3kb4k;False;t3_kw4o33;False;False;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj3kb4k/;1610599432;8;True;False;anime;t5_2qh22;;0;[]; -[];;;M8gazine;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/M8gazine;light;text;t2_kkdz5;False;False;[];;"I doubt it would hurt their careers. People won't be associating them with Ex-Arm when they're already very well-known for other roles, but I think it might look worse for beginner VAs... but even if they were beginners, I think it'd be unfair to judge them for being a part of this if the voice acting was fine. - -I'm not really sure about traditional actors, but in anime, I think criticisms about the show being shit would generally be directed towards the studio instead of the voice actors. At least I would hope departments were judged differently, like if the people doing animation dropped the ball in a show for instance, I don't think it should affect the careers of the VAs. Similarly, if the VAs (somehow) didn't care about their job, the people handling the visuals shouldn't be considered to be the ones at fault of the lackluster end result then. - -That's probably pretty naive thinking though, I'd guess it's a pretty harsh industry.";False;False;;;;1610531973;;False;{};gj3kikm;False;t3_kw4o33;False;False;t1_gj2y0mu;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj3kikm/;1610599555;13;False;False;anime;t5_2qh22;;0;[]; -[];;;Fuck_Shinji;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Fuck Shinji(fate);light;text;t2_7xrbju2m;False;False;[];;I feel bad for the animators;False;False;;;;1610532361;;False;{};gj3kw50;False;t3_kw4o33;False;True;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj3kw50/;1610599782;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HeitorO821;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/ZathuraVentura;light;text;t2_ip0mw;False;False;[];;Kuroki Tomoko. Watamote reminded me a lot of my high school/middle school days.;False;False;;;;1610532852;;False;{};gj3ld2o;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3ld2o/;1610600062;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Rocksterrock;;;[];;;;text;t2_jaxzd;False;False;[];;Haha Ikr, but to be fair I only started recording at the truck scene since we honestly weren’t expecting this show to be **that** bad when we started watching. Didn’t wanna go back since I wanted to keep the reactions genuine lol;False;False;;;;1610533012;;False;{};gj3limu;True;t3_kw4o33;False;False;t1_gj3kb4k;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj3limu/;1610600156;4;True;False;anime;t5_2qh22;;0;[]; -[];;;shadebedlam;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Shadebedlam;light;text;t2_fl41u;False;False;[];;Probably Maho Hiyajo a scientist with imposter syndrome yep that's me.;False;False;;;;1610533527;;False;{};gj3m0bh;False;t3_kw6uuw;False;True;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3m0bh/;1610600446;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Isai579;;MAL;[];;http://myanimelist.net/animelist/Isai579;dark;text;t2_mg0km;False;False;[];;"**First Timer** - -Holy shit. - -HOLY SHIT! - -**HOLY SHIT!!!** - -*** - -Okay, I've regained my composure now... Still... Holy shit! - -This has probably been the most hard hitting episode so far, which makes it my favorite ^(what can I say, suffering characters elevates the narrative for me). Let's go for a moment to moment analysis, because there is a lot I want to unpack. - -So, the Eva is being delivered to Japan. That thunderstorm seemed very ominous. [Evangelion speculation](/s ""Could it be that had an effect on the Eva that caused all this?"") It's also I think some of the best English I've heard in a (non-dubbed) anime. It still sounds like a japanese ^(I think) and not a native speaker, but that was good considering foreign languages in Japanese media are normally butchered, sometimes to a point beyond understanding. - -The dialogue between Misato and Ritsuko basically confirms Toji is the new pilot. However, they save saying the actual words until the very end. I think that amplifies the impact a lot. - -The following slice of life sequences are really nice. We get a bit more of insight into the class rep (still can't remember her name heh) and Shinjis' other friend (same name problem), and their story connected to Toji becoming the fourth pilot approach their climax. We also see more of Toji coming to terms to becoming an Eva pilot. Someone told Rei, and Asuka found out, so the only one involved who doesn't know is Shinji now. - -We get a nice moment between Kaji and Shinji. True, we never get to fully understand anyone, but we continue trying. - -After a bit more SoL, we get to the pilot testing. The synchronization is being easy. Way too easy... And *boom*. That wasn't just the anime. That was my mind being *freakin* blown. I thought Misato and Ritsuko were gone. I honestly can't imagine anyone surviving that explosion. - -Back at the base, the Evas are being deployed, and Gendo is taking command. The Eva 03 is categorized as the new angel, and they must destroy it. But they can't. Both Rei and Asuka fail, and Shinji flat out refuses to fight. They all hesitate because they know that there is someone just like them there. - -So Gendo, proving to me he is the *son of a bitch* ^(pardon the language) I've always thought he was, overrides Shinji and makes the Eva 01 completely destroy the Eva 03. I'm pretty sure this was the moment where everyone, both character and watchers, realized the monsters that Evas really are. - -Just like Ritsuko said, the simulation capsule was only a mind, without the *heart and soul*. And this makes it destroy the pilot capsule, even when the angel is out of commission. And Shinji got a front row seat to it. I honestly can't imagine how traumatic that is. - -At the end we get confirmation that Misato and Toji are alive (Ritsuko is said to also be, but I don't trust Kaji). But honestly, seeing how Anno has handled the characters in Eva, they are not going to be well for the rest of the series. No one. Well, maybe Gendo, but it seems nothing impacts that son of a bitch (honestly, he deserves all these insults and more). - -And that last moment when Misato tells Shinji. Damn... That is some good directing. By basically putting it in our faces for 2 episodes (and 1 preview) but never showing or saying it directly until that moment, it amplifies the impact. - -*** - -*The aftermath* - -I think this episode has basically made Evangelion a 10/10 for me. It would take a lot to even lower it to a 9. The last 4 episodes have all built up to that last scene, and the payoff was HUGE. - -Sure, lots of stories talk about the emotions of their characters, and the effect the cool stuff of the story has in them. But I can't recall many that make you *feel* it so effectively. Like, honestly the only anime that comes to mind to being so effective in *emotional* storytelling is Madoka, and that is one of my favorite stories from any medium, not just anime. - -Something else is that normally I hate is the death fake outs. I always give the author the benefit of the doubt, because when an author has the *balls* ^(only an expression for the attitude, didn't mean to be offensive to non-male authors) to follow through with a major character death executed so brutally, they earn my respect. But even with Misato and Toji being fakeouts (I only trust what I can see in these cases), they are so well executed both on a story level and an emotional level that it doesn't take away from the story. - -It seems Evangelion is earning its place as one of my all time favorites pretty fast. - -*** - -*Question of the day* -Okay, I'll be direct. It's not that I don't like the characters. It's just that I don't like any of them *enough* to say it is my favorite. Maybe I would have to say the class rep ^(and I still don't remember her name lol). She is basically the only student we've seen that is not related to NERV or the Evas in any way, so it is kind of nice seeing her be so unaware of the emotional trauma around her. - -*** - -*In the next episode...* - -[Evangelion speculation](/s ""So Shinji runs away again. Obviously. Considering what he just went through anyone would. But he is the only defense against Angels now considering how badly the others Eva ended up. I can only wonder to what his motivation to return will be. Maybe he'll do a I'll be a pilot if Toji never has to again kind of deal."")";False;False;;;;1610533749;;False;{};gj3m816;False;t3_kw1ugh;False;False;t3_kw1ugh;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj3m816/;1610600580;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Chinbie;;;[];;;;text;t2_12h6erpy;False;False;[];;EX ARM and GIbiate are now fighting for the BEST ANIME OF THE DECADE!!!! hahaha;False;False;;;;1610533768;;False;{};gj3m8pc;False;t3_kw4o33;False;False;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj3m8pc/;1610600591;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Pappi564;;MAL;[];;http://myanimelist.net/animelist/Pappi564;dark;text;t2_juko4;False;False;[];;45 ry 5t;False;False;;;;1610534289;;False;{};gj3mqo9;False;t3_kw6uuw;False;True;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3mqo9/;1610600890;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;False;[];;Ooooh!! You don't think that Bern's lieutenant might have had a crush on him so she gave Todd inconsistent instructions out of hope that her rival may die? Now you're thinking with Faye's!;False;False;;;;1610534513;;False;{};gj3myhd;False;t3_kw478y;False;True;t1_gj2azvu;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj3myhd/;1610601027;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Rocksterrock;;;[];;;;text;t2_jaxzd;False;False;[];;Hey I ain’t gonna lie, that’s pretty raw of them to decide on making an anime without actual animators lool based;False;False;;;;1610534838;;False;{};gj3n9vw;True;t3_kw4o33;False;False;t1_gj305c7;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj3n9vw/;1610601217;9;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;both have extremely high budgets for their quality, both have directors that dont know what theyre doing, accurate comparison;False;False;;;;1610534900;;False;{};gj3nc1m;False;t3_kw4o33;False;False;t1_gj2cdgq;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj3nc1m/;1610601252;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Bhorium;;;[];;;;text;t2_ipexp;False;False;[];;"No, it is a very deliberate choice. It plays into one of the show's main themes, namely of how people bad at communicating with each other and are often going to unnecessary lengths to avoid telling each other uncomfortable truths. - -Asuka doesn't tell Shinji, because she doesn't want the responsibility of being the bearer of bad news and just assume he will learn it from somewhere else. When she finally realizes she has to tell the truth because no one else will, it causes her to be distracted at a crucial moment. It is a part of a message about how much unpleasantness can be avoided if people where more honest and open with each other.";False;False;;;;1610535128;;1610535826.0;{};gj3nk74;False;t3_kw1ugh;False;True;t1_gj2t8j3;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj3nk74/;1610601389;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dandylain96;;;[];;;;text;t2_7e4x380b;False;False;[];;Weirdly enough, Inoue from Bleach;False;False;;;;1610535401;;False;{};gj3nu39;False;t3_kw6uuw;False;True;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3nu39/;1610601552;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bhorium;;;[];;;;text;t2_ipexp;False;False;[];;">It still sounds like a japanese I think and not a native speaker, but that was good considering foreign languages in Japanese media are normally butchered, sometimes to a point beyond understanding. - -No, that was actually voiced by Gainax's then in-house English translator, Michael House, and two of his friends.";False;False;;;;1610535535;;False;{};gj3nz1i;False;t3_kw1ugh;False;False;t1_gj3m816;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj3nz1i/;1610601631;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Maur2;;;[];;;;text;t2_spp5k;False;False;[];;"I was introduced to Watamote by a friend telling me that the main character was a female version of myself... o.o;";False;False;;;;1610535870;;False;{};gj3obcy;False;t3_kw6uuw;False;True;t1_gj3ld2o;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3obcy/;1610601830;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mikeng_0106;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MichaelK0106;light;text;t2_5ktn94g8;False;False;[];;Chizuru Ichinose, she’s a resourceful and passionate but exhausted dream follower;False;False;;;;1610536022;;False;{};gj3ogvh;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3ogvh/;1610601918;3;True;False;anime;t5_2qh22;;0;[]; -[];;;QueitMatt;;;[];;;;text;t2_egyaf4e;False;False;[];;So, is this shit Berserk 2016 all over again?;False;False;;;;1610536372;;False;{};gj3otrs;False;t3_kw4o33;False;True;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj3otrs/;1610602123;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Diego237;;;[];;;;text;t2_n70ll;False;False;[];;Worse;False;False;;;;1610536835;;False;{};gj3pb6t;False;t3_kw4o33;False;False;t1_gj3otrs;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj3pb6t/;1610602404;5;True;False;anime;t5_2qh22;;0;[]; -[];;;chazmerg;;;[];;;;text;t2_cw1emrm;False;False;[];;Very little of this looks like mocap.;False;False;;;;1610537553;;False;{};gj3q27d;False;t3_kw4o33;False;True;t1_gj305c7;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj3q27d/;1610602886;2;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;"Gurren Lagann is the one I recommend the most out of those. It'll blow you away. - -I take it you're pretty new to anime?";False;False;;;;1610537670;;False;{};gj3q6o2;True;t3_kw4xl1;False;True;t1_gj33fh3;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj3q6o2/;1610602964;2;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;">People generally know the difference between fiction and reality. Right and wrong. - -Actually 13RW is blamed for increasing rates of self harm in teens. But I digress. - -Yeah, we might know the difference between fiction and reality. I don't think this challenges my original point though. Why can't we use reality as a metric for fiction that attempts to imitate reality? - -You're familiar with plot holes, yes? When someone says that Arya Stark should've used her powers to take down Cersei, you wouldn't respond with ""well it's fiction. Surely you know it's not real life."" When someone points out that Samwell Tarly shouldn't have remained fat for so long living at the Wall with very little food, you shouldn't dismiss this with ""it's fiction so who cares."" That just kills any discussion. Fiction has no meaning if it's not held to some kind of standard.";False;False;;;;1610538532;;False;{};gj3r40j;True;t3_kw4xl1;False;False;t1_gj2xt8k;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj3r40j/;1610603530;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;Youtube with a VPN. It's not legal but it's also not illegal.;False;False;;;;1610538774;;False;{};gj3rdse;False;t3_kw81pn;False;True;t3_kw81pn;/r/anime/comments/kw81pn/where_can_i_watch_anime_for_free/gj3rdse/;1610603690;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jojo_is_trash;;;[];;;;text;t2_595dn1yo;False;False;[];;Gibiate’s got competition;False;False;;;;1610539119;;False;{};gj3rrkb;False;t3_kw4o33;False;True;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj3rrkb/;1610603911;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Daniel_The_Damned;;;[];;;;text;t2_53y6ylxl;False;False;[];;"Yui from K-on -Been a ditz my whole life but watching K-on really helped me accept that part of me and embrace it.";False;False;;;;1610539250;;False;{};gj3rwtq;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3rwtq/;1610603995;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Magnus-Artifex;;;[];;;;text;t2_3xwuipbe;False;False;[];;That’s because it’s raw. You rarely see this unless you are an animator.;False;False;;;;1610539325;;False;{};gj3rzyi;False;t3_kw4o33;False;False;t1_gj3q27d;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj3rzyi/;1610604047;10;True;False;anime;t5_2qh22;;0;[]; -[];;;redshirtengineer;;null a-amq;[];;;dark;text;t2_30v9ef;False;False;[];;"First timer - -Enjoying: the pace of the story so far - -Really enjoying: the way the isekai'ed Upper Earthers are stumbling through these first few episodes, makes sense - -Enjoying: the cheese of the logo design - I know it's an 80s show but the logo exemplifies 70s designology, it's even harvest gold and avocado green - -Not enjoying: Neal Givens character design, too much 80's PTSD - -Enjoying: sometimes the fae are males who like a drop to drink - -QOTD1: I like that his defection was believable and he's still primarily motivated by wanting to go home - -QOTD2: there must be more parties we haven't met yet";False;False;;;;1610539647;;False;{};gj3scsn;False;t3_kw478y;False;True;t3_kw478y;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj3scsn/;1610604257;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jebbush1212;;;[];;;;text;t2_y3f8v1y;False;False;[];;Seriously. Kumiko is one of if not the most realistic anime character;False;False;;;;1610539780;;False;{};gj3siau;False;t3_kw6uuw;False;False;t1_gj3bxd5;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3siau/;1610604347;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Netoeu;;MAL;[];;https://myanimelist.net/profile/Netoeu;dark;text;t2_mhnw5;False;False;[];;Ay +1 for Mio. I see so much of myself in her to the point where I don't want to watch K-on with people that know me too well lmao. Well, except that I ain't cute, and almost 10 years older Sadge;False;False;;;;1610539899;;False;{};gj3snab;False;t3_kw6uuw;False;True;t1_gj35d9b;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3snab/;1610604426;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;"The only time I feel emptiness after watching a show is when I didn't like it. The emptiness of ""why the F I wasted time on this?"". If a show was to my liking it fills me with joy.";False;False;;;;1610539916;;False;{};gj3so0o;False;t3_kw3br6;False;True;t3_kw3br6;/r/anime/comments/kw3br6/how_do_you_deal_with_the_empty_sensation_after/gj3so0o/;1610604437;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Leaves_Swype_Typos;;;[];;;;text;t2_arcs5;False;False;[];;Yeah the mech designs and character designs of Back Arrow are both lacking compared to the director's previous works. Gun X Sword in particular also used Wild West aesthetics but looked a lot better. In contrast one of the girls in Back Arrow looks like she's wearing a children's sheriff costume.;False;False;;;;1610540193;;False;{};gj3szpg;False;t3_kw83at;False;True;t1_gj32rm8;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3szpg/;1610604625;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Devin__;;;[];;;;text;t2_hx0lq;False;False;[];;Your first mistake was taking MAL ratings seriously, especially for series that aren't complete yet.;False;False;;;;1610540217;;False;{};gj3t0pi;False;t3_kw83at;False;False;t1_gj3m3fo;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3t0pi/;1610604641;6;True;False;anime;t5_2qh22;;0;[]; -[];;;chazmerg;;;[];;;;text;t2_cw1emrm;False;False;[];;The running animations look like very short handmade loops for example. But I'll take your word for it.;False;False;;;;1610540227;;False;{};gj3t14c;False;t3_kw4o33;False;True;t1_gj3rzyi;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj3t14c/;1610604647;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Heigou;;;[];;;;text;t2_c23wx;False;False;[];;"So you are useless most of the time, need constant rescuing and keep healing the enemies. got it! ;)";False;False;;;;1610540298;;False;{};gj3t44y;False;t3_kw6uuw;False;False;t1_gj3nu39;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3t44y/;1610604696;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Leaves_Swype_Typos;;;[];;;;text;t2_arcs5;False;False;[];;SK8 isn't really about a real sport. It's about extremely exaggerated skateboarding in a style similar to underground street racing.;False;False;;;;1610540455;;False;{};gj3tawx;False;t3_kw83at;False;False;t1_gj3jg9w;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3tawx/;1610604807;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Devin__;;;[];;;;text;t2_hx0lq;False;False;[];;">the most hyped non sequel anime for this season. - -Doesn't really look that way when Spider has more karma and comments and Horimiya has more than twice as much karma but not quite as many comments... [Nothing against the anime, I enjoy it so far. Just stating facts.](https://www.reddit.com/r/anime/comments/kv8y3d/top_30_anime_for_winter_week_1/)";False;False;;;;1610540561;;False;{};gj3tfke;False;t3_kw83at;False;False;t1_gj3qib3;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3tfke/;1610604881;5;True;False;anime;t5_2qh22;;0;[]; -[];;;a_mimsy_borogove;;;[];;;;text;t2_4fnukap5;False;False;[];;I was planning to watch Wonder Egg Priority, but your post makes it sound too depressing;False;False;;;;1610540687;;False;{};gj3tl0i;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3tl0i/;1610604972;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Devin__;;;[];;;;text;t2_hx0lq;False;False;[];;If you like staying on topic, try shilling an original anime instead of a light novel adaptation.;False;False;;;;1610540739;;False;{};gj3tnb7;False;t3_kw83at;False;True;t1_gj3gxor;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3tnb7/;1610605010;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Isai579;;MAL;[];;http://myanimelist.net/animelist/Isai579;dark;text;t2_mg0km;False;False;[];;That's cool. I mean, it makes sense that if you already have staff that speak the language you get them to record the lines. But for some reason I couldn't see a Japanese company making that choice.;False;False;;;;1610540742;;False;{};gj3tnee;False;t3_kw1ugh;False;True;t1_gj3nz1i;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj3tnee/;1610605011;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;[The seven seas **serve all nations!**](#piracy);False;False;;;;1610540746;;False;{};gj3tnkx;False;t3_kw83at;False;False;t1_gj3iot8;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3tnkx/;1610605014;7;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;True;[];;"Dude, anime originals should always be supported. You say that they end up like hot garbage but like half the classics ever made and some of the best anime ever were originals. Cowboy Bebop, Evangelion, Samurai Champloo, FLCL, Anohana, and many more were all anime original and those are all bonafide classics and amazing anime. You also have anime like A Place Further Than the Universe and Megalobox, both of those anime were fucking amazing. - -You also say that as if there isn't a bunch of hit garbage manga as well. Because there is alot of bad manga out there.";False;False;;;;1610540808;;False;{};gj3tqc6;True;t3_kw83at;False;False;t1_gj3r2m8;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3tqc6/;1610605059;5;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;SK8 looks amazing. I'm wondering how far the story will go with skateboarding and if we'll see Snowboarding at some point.;False;False;;;;1610540853;;False;{};gj3tsc8;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3tsc8/;1610605090;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Flipperblack;;;[];;;;text;t2_4wyib41i;False;False;[];;"Totally agree,some of the best anime are anime original(Samurai Champloo,Evangelion,Cowboy Bebop and Code Geass for example) -I'll take a look at these new anime series :)";False;False;;;;1610540858;;False;{};gj3tsjt;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3tsjt/;1610605094;2;False;False;anime;t5_2qh22;;0;[]; -[];;;Devin__;;;[];;;;text;t2_hx0lq;False;False;[];;Deca-dence, Akudama Drive, Appare-Ranman, and ID:Invaded from last year sure as hell weren't hot garbage. That's one original per season from last year.;False;False;;;;1610540977;;False;{};gj3txwv;False;t3_kw83at;False;False;t1_gj3r2m8;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3txwv/;1610605179;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheBlackGetsuga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Grimmjow-Senpai;light;text;t2_vj5dn6s;False;False;[];;I remember slime not being popular cause of CGI but that was before it aired, i'm not very big on romance genre so i don't really follow Horimiya. Anyway i'm glad this season doesn't have half assed shows well expect Ex-Arm lmao. I was talking of before this season even started.;False;False;;;;1610541006;;False;{};gj3tz60;False;t3_kw83at;False;True;t1_gj3tfke;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3tz60/;1610605202;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;">Watching these older shows draw you to the fact that more recent shows got fixed into a ""1 cour"" ""2cour"" - -I'm not 100% sure, but I think a lot of shows from this (Dunbine's) period were set as ""one year"" +/- a couple of weeks. And then, if they didn't make enough money, they would get cancelled to put something that hopefully would in that times slot. - -Definitely a different era of doing things. The set number of cours does, I think, lend itself to pacing a bit better - it can be hard to build up to a climax when you don't know exactly how many episodes you're going to get.";False;False;;;;1610541186;;False;{};gj3u784;False;t3_kw478y;False;True;t1_gj3jpn2;/r/anime/comments/kw478y/rewatch_aura_battler_dunbine_episode_3_discussion/gj3u784/;1610605341;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;True;[];;Never listen to MAL rating when there has only been a single episode released, especially for anime originals.;False;False;;;;1610541206;;False;{};gj3u839;True;t3_kw83at;False;False;t1_gj3m3fo;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3u839/;1610605356;4;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;"Also the female ""characters"" have been little but dumb eyecandy - -Edit: People... that's an incontrovertible fact. Apparently it's not appreciated to point that out.";False;False;;;;1610541426;;1610545617.0;{};gj3ui7h;False;t3_kw83at;False;True;t1_gj3jqth;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3ui7h/;1610605521;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610541456;moderator;False;{};gj3ujjq;False;t3_kw1ugh;False;True;t1_gj1w6c4;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj3ujjq/;1610605542;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;True;[];;It's an unfinished original with only a single episode. It could anyway at this point, it is not uncommon for scores to be low with the first episode and go up quite a bit when the anime picks up.;False;False;;;;1610541507;;False;{};gj3ultj;True;t3_kw83at;False;False;t1_gj3hl8d;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3ultj/;1610605578;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Devin__;;;[];;;;text;t2_hx0lq;False;False;[];;"Can't really gauge hype until there's actual episodes because one fanbase could just be more vocal than the rest when the actual fanbase of others is much larger. I'm not really a fan of hyping one series more than another in the first place though because in the end, this season is fucking great. The real winners are the ones enjoying everything and skipping bullshit drama like that. - -~~I can tell you though,~~ /r/manga ~~won't shut the fuck up about Horimiya. It's by far the most hyped non-sequel over there.~~";False;False;;;;1610541509;;False;{};gj3ulvy;False;t3_kw83at;False;False;t1_gj3tz60;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3ulvy/;1610605579;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mysteriouswitchgal17;;;[];;;;text;t2_5gyem0xu;False;False;[];;I am not new to anime. Have been watching anime since I was 7-years old 🙂. I will try Gurren Lagann then.;False;False;;;;1610541520;;False;{};gj3umd9;False;t3_kw4xl1;False;True;t1_gj3q6o2;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj3umd9/;1610605586;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thatone_high_guy;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;Weeblet;light;text;t2_69adwpyb;False;False;[];;Ohkk, i will check back on it after it ks complete, i like binging rather than going week by week;False;False;;;;1610541571;;False;{};gj3uonq;False;t3_kw83at;False;True;t1_gj3ultj;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3uonq/;1610605621;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;True;[];;Same here my friend, and I am studying for exams right now too;False;False;;;;1610541596;;False;{};gj3upud;True;t3_kw83at;False;False;t1_gj3gawz;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3upud/;1610605640;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Oddy_Y;;;[];;;;text;t2_2ekn15v1;False;False;[];;Woah I'll watch it now;False;False;;;;1610541734;;False;{};gj3uw9l;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3uw9l/;1610605741;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Confusedpotatoman;;;[];;;;text;t2_m79xy;False;False;[];;There’s too many anime out every year, I haven’t even caught up to the anime from 3 years ago yet.;False;False;;;;1610541740;;False;{};gj3uwiz;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3uwiz/;1610605746;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Googleplexian_Moron;;;[];;;;text;t2_14ze1f;False;False;[];;"BNA just came out last year and it wasn't good enough to be a classic chill out man - -Other than that I will give these shows a try";False;False;;;;1610541942;;False;{};gj3v607;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3v607/;1610605900;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;True;[];;I wasn't really pointing out BNA as a classic but rather as another really good anime that the staff had worked on;False;False;;;;1610541994;;False;{};gj3v8hl;True;t3_kw83at;False;False;t1_gj3v607;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3v8hl/;1610605940;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Fair_Cause_1166;;;[];;;;text;t2_8tj1k0eq;False;False;[];;"I find it funnier how ""lazy"" is some sort of immutable trait people should brag about. ""I'd watch something to entertain myself but I'm just lazy"" uh okay then don't I'm not your mom lmao.";False;True;;comment score below threshold;;1610542001;;False;{};gj3v8tm;False;t3_kw83at;False;True;t1_gj3sv4q;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3v8tm/;1610605946;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;crazypeachxd;;;[];;;;text;t2_5wb86jif;False;False;[];;Can anybody give me some websites to use as I'm struggling to find ones at the moment. Alos if anybody knows off any good apps as well for android I would be much appreciated. Thanks;False;False;;;;1610542066;;False;{};gj3vbz3;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3vbz3/;1610605997;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hrafnbrand;;;[];;;;text;t2_ivnkc;False;False;[];;I'd say it feels more Kaiju than mecha, at least early on. I dropped it after the MC proved that plot armor = best armor. Let me know if it got better on that.;False;False;;;;1610542082;;False;{};gj3vcpk;False;t3_kw83at;False;True;t1_gj3s2ux;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3vcpk/;1610606008;0;True;False;anime;t5_2qh22;;0;[]; -[];;;melvinlee88;;MAL a-amq;[];;https://myanimelist.net/profile/Ryan_Melvin15;dark;text;t2_156788;False;False;[];;"Easily Hotori Arashiyama from Soremachi. - -She's a girl who wants to live the life to her fullest, still is a kid inside wanting to have fun but also aware of her responsibilities as a sister and friend. And also she seems to overthink stuff which is mighty relatable.";False;False;;;;1610542185;;False;{};gj3vhml;False;t3_kw6uuw;False;True;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3vhml/;1610606091;1;True;False;anime;t5_2qh22;;0;[]; -[];;;padperascha;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/swappong;light;text;t2_pjclzwj;False;False;[];;You'll find 10x more enjoyment in anime if you stop caring about arbitrary number ratings.;False;False;;;;1610542194;;False;{};gj3vi2h;False;t3_kw83at;False;True;t1_gj3m3fo;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3vi2h/;1610606099;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Razzorblack;;;[];;;;text;t2_14ci5k;False;False;[];;I sleep.;False;False;;;;1610542296;;False;{};gj3vmxo;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3vmxo/;1610606177;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;True;[];;They are all on funimation;False;False;;;;1610542337;;False;{};gj3vow6;True;t3_kw83at;False;True;t1_gj3vbz3;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3vow6/;1610606208;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Broccoil;;;[];;;;text;t2_4la93yt;False;False;[];;bro I've only seen the first episode where did you get all this from;False;False;;;;1610542344;;False;{};gj3vp7w;False;t3_kw83at;False;False;t1_gj3kikv;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3vp7w/;1610606213;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Just-Aging;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/;light;text;t2_2w442wy7;False;False;[];;don’t forget ex arm!;False;False;;;;1610542353;;False;{};gj3vpp5;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3vpp5/;1610606221;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610542521;;False;{};gj3vxvm;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3vxvm/;1610606354;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DrThots;;;[];;;;text;t2_1s9eq1rf;False;False;[];;Don't leave out Ex arms;False;False;;;;1610542680;;False;{};gj3w5kl;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3w5kl/;1610606483;0;True;False;anime;t5_2qh22;;0;[]; -[];;;bnichols924;;;[];;;;text;t2_15y03a;False;False;[];;That’s pretty high praise for a season that includes AOT and re:zero;False;False;;;;1610542786;;False;{};gj3warr;False;t3_kw83at;False;False;t1_gj3p6xa;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3warr/;1610606574;9;True;False;anime;t5_2qh22;;0;[]; -[];;;julivino29;;;[];;;;text;t2_5rjjtagb;False;False;[];;Don't forget Wave! (the surfing anime) and 2.43 (the volley anime). And I also enjoyed the first chapters of Skate leading stars, besides of the hate it got, I really liked it. I also LOVED Horimiya but I'm quite sure that would not be slept on, but just a recommendation.;False;False;;;;1610542854;;False;{};gj3we3j;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3we3j/;1610606633;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Taerusaki;;skip7;[];;;dark;text;t2_1jiysgpw;False;False;[];;Very nice reading that;False;False;;;;1610542903;;False;{};gj3wghg;False;t3_kw83at;False;True;t1_gj3qfi2;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3wghg/;1610606674;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gareth321;;;[];;;;text;t2_3b0o4;False;False;[];;[You weren't kidding.](https://www.youtube.com/watch?v=0jCPQe9g-TE) Ouch.;False;False;;;;1610543022;;False;{};gj3wmat;False;t3_kw83at;False;False;t1_gj34yox;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3wmat/;1610606768;21;True;False;anime;t5_2qh22;;0;[]; -[];;;spikiestknight;;;[];;;;text;t2_2e4o4pn6;False;False;[];;Well idk, I've never heard of it and the title is pretty much what a stripper is, but I'll check it out;False;False;;;;1610543087;;False;{};gj3wpgt;True;t3_kw4i35;False;True;t1_gj2gjf5;/r/anime/comments/kw4i35/hey_i_need_some_suggestions/gj3wpgt/;1610606819;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SurprisedCabbage;;;[];;;;text;t2_4top1uqp;False;False;[];;Kumoko from So I'm a spider, so what? Not much about her is known from the anime since its one episode in but if you've read the light novel you know why I relate to her.;False;False;;;;1610543200;;False;{};gj3wv3b;False;t3_kw6uuw;False;True;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj3wv3b/;1610606911;1;True;False;anime;t5_2qh22;;0;[]; -[];;;linux_n00by;;;[];;;;text;t2_fbaza;False;False;[];;dont worry im watching everything except ex-arm :D;False;False;;;;1610543353;;False;{};gj3x2ry;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3x2ry/;1610607034;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mythriz;;;[];;;;text;t2_d37v0;False;False;[];;Man, same, I keep adding anime to my list and I feel like I have to stop at some point. But maybe I'll still check some of these out.;False;False;;;;1610543424;;False;{};gj3x6d0;False;t3_kw83at;False;False;t1_gj3rrt8;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3x6d0/;1610607092;6;True;False;anime;t5_2qh22;;0;[]; -[];;;MetaThPr4h;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MetaThPr4h/;light;text;t2_fbwjt;False;False;[];;Thank god someone mentioned Idoly Pride in the comments, best first episode of the season IMO.;False;False;;;;1610543669;;False;{};gj3xj1r;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3xj1r/;1610607300;1;True;False;anime;t5_2qh22;;0;[]; -[];;;keizee;;;[];;;;text;t2_12ym19;False;False;[];;The netflix ultraman one looks better. I feel like I'm watching MMD.;False;False;;;;1610543823;;False;{};gj3xr71;False;t3_kw4o33;False;True;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj3xr71/;1610607434;1;True;False;anime;t5_2qh22;;0;[]; -[];;;megacookie;;AP;[];;http://www.anime-planet.com/users/megacookie;dark;text;t2_7t98c;False;False;[];;Pshhh watch new original anime? Fuck that noise. This is the season of sequels baby!;False;False;;;;1610543923;;False;{};gj3xwgr;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3xwgr/;1610607520;0;True;False;anime;t5_2qh22;;0;[]; -[];;;big-dick-energy11;;;[];;;;text;t2_4y5i4bnb;False;False;[];;No it is way more literal, literally this guy rents a girlfriend for a few hours at a time, kind of like a prostitute but instantly of sex it’s the wholesome stuff. I know it sounds weird but trust me it is actually really good. Kind of like how bunny girl senpai makes u think it’s just going to be fan service garbage but then u actually get a banger of a story.;False;False;;;;1610544044;;False;{};gj3y2yt;False;t3_kw4i35;False;True;t1_gj3wpgt;/r/anime/comments/kw4i35/hey_i_need_some_suggestions/gj3y2yt/;1610607628;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Googleplexian_Moron;;;[];;;;text;t2_14ze1f;False;False;[];;Fair;False;False;;;;1610544080;;False;{};gj3y4wo;False;t3_kw83at;False;False;t1_gj3v8hl;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3y4wo/;1610607661;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Blothwig;;;[];;;;text;t2_82xctxze;False;False;[];;Most of these animed simply aren't my thing;False;False;;;;1610544104;;False;{};gj3y66n;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3y66n/;1610607682;0;True;False;anime;t5_2qh22;;0;[]; -[];;;DireSickFish;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/DireSickFish;light;text;t2_mfrxc;False;False;[];;I prefer anime originals. They often fit the pacing of the medium better, and gave endings.;False;False;;;;1610544260;;False;{};gj3yerd;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3yerd/;1610607815;5;True;False;anime;t5_2qh22;;0;[]; -[];;;spikiestknight;;;[];;;;text;t2_2e4o4pn6;False;False;[];;Oh ok, yeah I'll definitely check it out then;False;False;;;;1610544375;;False;{};gj3yl3j;True;t3_kw4i35;False;False;t1_gj3y2yt;/r/anime/comments/kw4i35/hey_i_need_some_suggestions/gj3yl3j/;1610607913;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TaiVat;;;[];;;;text;t2_4j5gh;False;False;[];;Maybe they'll be good, but you'll forgive me for thinking this level of hype and praise (not just from op but all over the thread) is questionable at best when its about shows that have only 1-2 episodes out so far...;False;False;;;;1610544456;;False;{};gj3ypg3;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3ypg3/;1610607983;2;True;False;anime;t5_2qh22;;0;[]; -[];;;andrei9669;;;[];;;;text;t2_deysc;False;False;[];;I will consider, no but really, will watch a couple of episodes from each. and then I will see;False;False;;;;1610544521;;False;{};gj3yt2o;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3yt2o/;1610608037;2;True;False;anime;t5_2qh22;;0;[]; -[];;;championchildtosser;;;[];;;;text;t2_3cgyh06j;False;False;[];;egg anime egg anime;False;False;;;;1610544873;;False;{};gj3zclc;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3zclc/;1610608340;3;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">Gendo takes charge and demonstrates once again how big of an asshole he is - -Well, at this point I don't see another obvious choice than following his decision. I guess maybe Misato could have come up with another crazy plan, but the risk was pretty immediate and dire. - ->learning he just beat up his friend? - -Honestly it isn't him doing it any more than he was the one fighting the battle against Sachiel, but I can see him tending to interpret it that way.";False;False;;;;1610544874;;False;{};gj3zcnl;False;t3_kw1ugh;False;True;t1_gj1ta4u;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj3zcnl/;1610608341;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;True;[];;This is more so meant to try to get people to try out the anime originals. I feel like everyone should at least try anime originals when they air. It's also always an fun experience because everyone is in the same boat, nobody can spoil anything because nobody knows what it going to happen. Anime originals should always be supported at least for the first couple of episodes because those studios take a huge risk when making their own thing instead of going with the safe move of adapting a manga or light novel. And historically speaking, when you look at all of the classic anime, about half of all of them are original anime despite being less than 10% of the anime produced, so I always take a look at the originals. And besides, it is a brand new piece of media so who knows where they will take us.;False;False;;;;1610544885;;1610546893.0;{};gj3zd9f;True;t3_kw83at;False;False;t1_gj3ypg3;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3zd9f/;1610608351;5;True;False;anime;t5_2qh22;;0;[]; -[];;;simmppa;;;[];;;;text;t2_bzt3o;False;False;[];;"These 2 also had me hooked from the first episodes. Suppose has 2 episodes out atm. - - Mushoku Tensei: Isekai Ittara Honki Dasu - -Suppose a Kid from the Last Dungeon Boonies moved to a starter town?";False;False;;;;1610544924;;False;{};gj3zfh7;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3zfh7/;1610608385;3;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">Evas are neurally connected to each pilot - -Was not at this point the connection severed though? I recall some dialogue like that.";False;False;;;;1610545023;;False;{};gj3zlbo;False;t3_kw1ugh;False;False;t1_gj2c2zo;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj3zlbo/;1610608476;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;It's good that they're dealing with heavy topics but c'mon dude their portrayal of bullying might as well have Evanescence playing in the background, it's not as deep as you're making out to be.;False;False;;;;1610545092;;False;{};gj3zp93;False;t3_kw83at;False;True;t1_gj3ej92;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3zp93/;1610608536;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">Would things have gone differently if Shinji had known? - -Well, Shinji not knowing doesn't make a difference to his inaction, but maybe he would have tried harder to resist or find some other way?";False;False;;;;1610545099;;False;{};gj3zpo2;False;t3_kw1ugh;False;True;t1_gj1poi8;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj3zpo2/;1610608543;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LearningAllTheTime;;;[];;;;text;t2_bw0ha;False;False;[];;Could you put where to watch In the description? Know black arrow is funimation but not sure of others. Thanks fam.;False;False;;;;1610545122;;False;{};gj3zqzl;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj3zqzl/;1610608563;3;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;"> is that whole building vacant?? - -Tokyo-3 doesn't seem like it would be a too popular place to live given recent events, maybe no one else has moved in yet?";False;False;;;;1610545286;;False;{};gj400f3;False;t3_kw1ugh;False;False;t1_gj2nluz;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj400f3/;1610608708;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cold_Saber;;;[];;;;text;t2_3oclhqjh;False;False;[];;I like how there's a dogshit anime every year that we can meme on.;False;False;;;;1610545346;;False;{};gj403z2;False;t3_kw4o33;False;False;t1_gj3rrkb;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj403z2/;1610608763;7;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;True;[];;I gotchu fam, all of the anime are on Funimation, at least in the US they are.;False;False;;;;1610545476;;False;{};gj40bp0;True;t3_kw83at;False;True;t1_gj3zqzl;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj40bp0/;1610608880;3;True;False;anime;t5_2qh22;;0;[]; -[];;;the-grape-next-door;;;[];;;;text;t2_2zdi1cgx;False;False;[];;I snooze;False;False;;;;1610545622;;False;{};gj40kb9;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj40kb9/;1610609014;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;apthomp13;;;[];;;;text;t2_2s2sqy27;False;False;[];;Damn, I didn't realize we had any originals this season. I like to watch originals, so I'll definitely check them out.;False;False;;;;1610545692;;False;{};gj40oir;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj40oir/;1610609080;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GoHooN;;;[];;;;text;t2_6oe3a;False;False;[];;"How do you guys find out about the popularity of animes? - -I was surprised that I've never heard of Wonder Egg, just to find out that ep. 1 came out today. - -I will definitely check it out, but I'm genuinely curious on how to find out about the popularity of what's airing";False;False;;;;1610546237;;False;{};gj41lqb;False;t3_kw83at;False;False;t1_gj387xy;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj41lqb/;1610609585;15;True;False;anime;t5_2qh22;;0;[]; -[];;;BasroilII;;;[];;;;text;t2_2yjoujdz;False;False;[];;It feels like a really cheap RWBY knockoff, if anything.;False;False;;;;1610546239;;False;{};gj41lug;False;t3_kw4o33;False;True;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj41lug/;1610609587;1;True;False;anime;t5_2qh22;;0;[]; -[];;;smatthew_;;;[];;;;text;t2_13jgn9;False;False;[];;Yea, actually I read that somewhere. Always fascinating to know more about the writing process of an author. Koji Kumeta, author of Kakushigoto and Sayonara, Zetsubou-Sensei, is also really into kanji-wordplay and building the characters names and stories around it.;False;False;;;;1610546329;;False;{};gj41r9h;False;t3_kw1u5z;False;True;t1_gj2b03v;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj41r9h/;1610609669;1;True;False;anime;t5_2qh22;;0;[]; -[];;;frantruck;;;[];;;;text;t2_r0rjk;False;False;[];;Shit man how am I supposed to fill my quota of Isekai Trash and these good original shows, while also trying to appear as a productive member of society.;False;False;;;;1610546375;;False;{};gj41u23;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj41u23/;1610609712;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kyozou66;;;[];;;;text;t2_8iw1pv1w;False;False;[];;"I would if I wasn't watching like 50 sequels this season. My schedule can't fit any more anime in 😔 - -I'll probably go back and binge something good from this season after this season is over.";False;False;;;;1610546598;;False;{};gj427tc;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj427tc/;1610609921;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HeavenPiercingMan;;;[];;;;text;t2_j1vxe;False;False;[];;The angel is a fungus-like substance. It was in the clouds they were flying through when they were carrying the EVA. Later you should have seen the substance dripping out of the EVA.;False;False;;;;1610546782;;False;{};gj42j2h;False;t3_kw1ugh;False;False;t1_gj1ta4u;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj42j2h/;1610610093;5;True;False;anime;t5_2qh22;;0;[]; -[];;;RandomCondor;;;[];;;;text;t2_kxqrm;False;False;[];;you know why i dislike Darling in the Franxxx? its because introduced oversexualized mecha robots, and it kind of succeeded. and now we have to get a mecha anime with a mecha with shiny titties? the fun with mechas is looking at the engineering design, seeing metal plates and machine joints, wonder about the mechanics, but with Black Arrow all i see is oversized people in fantasy power suits. i mean, look at the first picture, i cant tell if it is a fucking robot or just a girl in a cosplay suit. and the second one? the shiny thing in his legs are cristals? is that metal armor suposed to be hard or flexible? nonsense. those arent mecha to me. plus there come out of nowhere, they are not expendables.;False;False;;;;1610546836;;False;{};gj42mez;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj42mez/;1610610145;0;True;False;anime;t5_2qh22;;0;[]; -[];;;JohnnyShit-Shoes;;;[];;;;text;t2_mqxps;False;False;[];;Myanimelist.net is one of the most popular ranking sites these days.;False;False;;;;1610547008;;False;{};gj42x37;False;t3_kw83at;False;False;t1_gj41lqb;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj42x37/;1610610306;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Abodi02;;;[];;;;text;t2_5us6aea0;False;False;[];;Back arrow is mid;False;False;;;;1610547074;;False;{};gj4318d;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj4318d/;1610610370;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;"Minami (black hair girl)'s mouth too - -She looks like PS1 graphics";False;False;;;;1610547205;;False;{};gj439m2;False;t3_kw4o33;False;True;t1_gj3g9a1;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj439m2/;1610610497;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JobberJordan;;;[];;;;text;t2_wzl9p;False;False;[];;SK8 is GR8;False;False;;;;1610547228;;False;{};gj43b2l;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj43b2l/;1610610520;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bubble_Meow;;;[];;;;text;t2_61g6ty9x;False;False;[];;SK8 surprised me dude, That anime is sick af you guys wont regret giving it a try;False;False;;;;1610547343;;False;{};gj43if5;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj43if5/;1610610631;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Harpr33t-Singh;;;[];;;;text;t2_2xgwk401;False;False;[];;Yes, the connection was severed but i meant to say that connecting to the eva day after day, the pilots start seeing those hands as their second set of hands. So even when Shinji has no connection to the eva's hands at the moment, it would still be disconcerting for him to see the hands he used for so many weeks being used to kill somebody else against his wishes.;False;False;;;;1610547407;;False;{};gj43mma;False;t3_kw1ugh;False;True;t1_gj3zlbo;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj43mma/;1610610692;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HeavenPiercingMan;;;[];;;;text;t2_j1vxe;False;False;[];;Yep, the angel was in the clouds.;False;False;;;;1610547463;;False;{};gj43q6y;False;t3_kw1ugh;False;True;t1_gj3m816;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj43q6y/;1610610746;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"We can measure in our bubble here through the Karma (upvotes-downvotes) that the episode discussion receives here on this sub, only the number from the first 48 hours counts to keep fair to shows airing earlier in the week - -[this is the last week ranking ](https://www.reddit.com/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/?utm_medium=android_app&utm_source=share) - -Every Saturday we get the official ranking here - -https://animekarmalist.com gives you the live karma counting but it counts the whole week until the next episode, so after 48 hours the number there is not the official - -https://animetrics.co/anime/karma-rankings this one gives you the 48 hours numbers before the Saturday ranking but it doesn't have live updates - -We can also check on Myanimelist to see how many people are ""members"" of a anime, this means how many are watching, plan to watch or dropped a show, [here's the mal page](https://myanimelist.net/anime/43299/Wonder_Egg_Priority) - -Both here in the sub and Mal don't represent the whole anime community, but between this two communities there's a larger distinction of people so sometimes the numbers are very different - -For example last season one of the most popular shows here was Akudama Drive but it wasn't near as popular on Mal";False;False;;;;1610547554;;1610547756.0;{};gj43w48;False;t3_kw83at;False;False;t1_gj41lqb;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj43w48/;1610610837;28;True;False;anime;t5_2qh22;;0;[]; -[];;;Delinquent_;;;[];;;;text;t2_fthis;False;False;[];;Wut;False;False;;;;1610548104;;False;{};gj44w5r;False;t3_kw83at;False;True;t1_gj3j6m5;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj44w5r/;1610611381;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phoncible;;;[];;;;text;t2_5tai7;False;False;[];;"That looks like a trailer for a Chinese shovelware waifu game. Yikes. - - -[…I'm still gonna check it out.](https://external-preview.redd.it/skzGsEHIKMbBjUdtd51j-qFHSoDJZrInsSG-Rmzv16Q.png?auto=webp&s=63aa9284e043c6f3d0f1e1a95f1bdbb043c29cb0)";False;False;;;;1610548192;;False;{};gj45286;False;t3_kw83at;False;False;t1_gj3wmat;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj45286/;1610611476;6;True;False;anime;t5_2qh22;;0;[]; -[];;;metaaltheanimefan;;;[];;;;text;t2_1qdntfx;False;False;[];;Basically what is shown in the anime isnt all correct so im trying to keep people who eanna start surfing because of the anime from drowning;False;False;;;;1610548245;;False;{};gj455tc;False;t3_kw83at;False;True;t1_gj44w5r;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj455tc/;1610611538;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WebWarrior420;;;[];;;;text;t2_xbhhx;False;False;[];;"Yeah I'm not saying there was anyone better than Gendo to take charge. I'm just saying he's an asshole lol. He could've tried different tactics or at the very least emphasised with Shinjis situation but he cut straight to the chase. - -Being a hormonal teenager and someone with difficulties making connections, Shinji will 100% see it that way. He'll also be agonising over things he could have done. Been more proactive and try and force a different outcome. Also survivor's guilt is gonna weigh on him";False;False;;;;1610548345;;False;{};gj45c94;False;t3_kw1ugh;False;False;t1_gj3zcnl;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj45c94/;1610611640;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KaptainTZ;;skip7;[];;;dark;text;t2_9fhynbf5;False;False;[];;Wonder Egg is that chocolate egg with a surprise inside, right?;False;False;;;;1610548494;;False;{};gj45m4b;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj45m4b/;1610611795;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MaskOfIce42;;;[];;;;text;t2_gj6onc6;False;False;[];;I'm so swamped with shows this season...... I want to check them out, I'll at a bare minimum keep them on my radar, but I'm definitely already approaching the upper limit of how many shows I can watch in one season;False;False;;;;1610548505;;False;{};gj45mt6;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj45mt6/;1610611807;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CelioHogane;;;[];;;;text;t2_e9z2u;False;False;[];;I wasn't into SK8 untill the heel character used an actual anime attack.;False;False;;;;1610548948;;False;{};gj46glz;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj46glz/;1610612274;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WebWarrior420;;;[];;;;text;t2_xbhhx;False;False;[];;Oh damn. I really need to pay more attention. I guess these are the kind of things I'd be able to spot in a rewatch lol;False;False;;;;1610549132;;False;{};gj46t8d;False;t3_kw1ugh;False;True;t1_gj42j2h;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj46t8d/;1610612464;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SigmundFreud;;;[];;;;text;t2_3cp72;False;False;[];;"To be fair, the name doesn't do them any favors. They just took two popular anime name trends of starting with ""re:"" and ending with ""zero"" and mashed them together. The abbreviated name of the series is explicitly as generic as it could possibly be. - -I had a similar experience seeing it on Crunchyroll and starting to watch it on a whim in the middle of the first season's airing. I had no particular expectations (didn't even know it was an isekai), and wound up very pleasantly surprised.";False;False;;;;1610549392;;False;{};gj47bf9;False;t3_kw83at;False;False;t1_gj3q0eu;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj47bf9/;1610612734;10;True;False;anime;t5_2qh22;;0;[]; -[];;;NecroPamyuPamyu;;;[];;;;text;t2_3h5v7kme;False;False;[];;"With that said; I'm a HUGE Re:Zero fan as well.";False;False;;;;1610549484;;False;{};gj47ho7;False;t3_kw83at;False;False;t1_gj3warr;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj47ho7/;1610612825;4;True;False;anime;t5_2qh22;;0;[]; -[];;;HeavenPiercingMan;;;[];;;;text;t2_j1vxe;False;False;[];;"And when they pull out Toji from the broken entry plug, you see the LCL inside all viscous and turned into fungus-like stretchy strands. Guy was breathing that stuff. - -You think he might have had a trippy moment like Shinji did inside the previous angel?";False;False;;;;1610549628;;False;{};gj47rqm;False;t3_kw1ugh;False;True;t1_gj46t8d;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj47rqm/;1610612977;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HeavenPiercingMan;;;[];;;;text;t2_j1vxe;False;False;[];;"I think Toji might have had his own trippy experience during the whole ordeal. - -The angel is a fungus-like slime that invaded EVA-03, and when you see Toji being rescued from the destroyed entry plug, the orange LCL looks all viscous and slimy. - -And the angel only stopped when the entry plug was destroyed. Toji was submerged in the core of the angel.";False;False;;;;1610549910;;False;{};gj48bzp;False;t3_kw1ugh;False;True;t3_kw1ugh;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj48bzp/;1610613285;2;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;"Fiction should be allowed to do anything, and by the same token, consumers of fiction should be allowed to judge the fiction freely. - -I'm not trying to place any limitations on what fiction should be allowed to portray, no. Not at all. If that was the topic at hand I would say that there are certain types of depictions that should *probably* be avoided (say, making a school shooter personable and likable, and romanticizing their actions to the point that they feel like a positive). But the point of this post isn't to protest against any type of fiction being allowed. It's to request a higher standard of realism for fiction in its portrayal of genetic diversity.";False;False;;;;1610550070;;False;{};gj48nlw;True;t3_kw4xl1;False;True;t1_gj2yqo1;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj48nlw/;1610613458;1;True;False;anime;t5_2qh22;;0;[]; -[];;;robotzor;;;[];;;;text;t2_rygry;False;True;[];;People gotta be joking here;False;False;;;;1610550154;;False;{};gj48tps;False;t3_kw83at;False;True;t1_gj3plt8;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj48tps/;1610613551;1;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;"Oh!! [Then you're one of the 10,000](https://xkcd.com/1053/)! Gurren Lagann and Trigger works in general are hugely loved in the anime community. - -I'm really curious as to what you'll think of it!!";False;False;;;;1610550272;;False;{};gj492d4;True;t3_kw4xl1;False;True;t1_gj3umd9;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj492d4/;1610613683;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BlankHeroineFluff;;;[];;;;text;t2_11lqj3;False;False;[];;Yuki from Fruits Basket (coincidentally, the rat is *my* Chinese zodiac animal) and Rei from 3gatsu no Lion.;False;False;;;;1610550342;;False;{};gj497dl;False;t3_kw6uuw;False;True;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj497dl/;1610613759;1;True;False;anime;t5_2qh22;;0;[]; -[];;;robotzor;;;[];;;;text;t2_rygry;False;True;[];;"The more time goes on, the more I think Gurren Lagann and KLK was more a result of the assembly of a dream team, rather than ""this guy was X on it, so this anime will be great!"" Well, the story in some of Kazuki Nakashima's scripts are....not great (BNA widely panned for story). The good ones were largely a product of all the right people in all the right positions.";False;False;;;;1610550352;;False;{};gj49843;False;t3_kw83at;False;True;t1_gj3szpg;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj49843/;1610613769;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;Wonder Egg makes me think of (in varying ways) of Hosoda and Yuasa and Serial Experiments Lain -- as well as Kon. Looks like it will definitely be one of a kind.;False;False;;;;1610550410;;False;{};gj49ca5;False;t3_kw83at;False;True;t1_gj3qfi2;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj49ca5/;1610613833;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;So, is Idoly Pride the polar opposite of Dropout Idol Fruit Tart (it seems to have some very similar basic plot points)?;False;False;;;;1610550564;;False;{};gj49nry;False;t3_kw83at;False;False;t1_gj3iyxd;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj49nry/;1610614009;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KamazoQueen;;;[];;;;text;t2_45yt1s34;False;False;[];;"> Let me know if it got better on that. - -yes";False;False;;;;1610550600;;False;{};gj49qg5;False;t3_kw83at;False;True;t1_gj3vcpk;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj49qg5/;1610614049;3;True;False;anime;t5_2qh22;;0;[]; -[];;;wutfacer;;;[];;;;text;t2_4olb9ufq;False;False;[];;Who did you jack off over?;False;False;;;;1610550786;;False;{};gj4a49v;False;t3_kw6uuw;False;False;t1_gj3hwd1;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj4a49v/;1610614253;6;True;False;anime;t5_2qh22;;0;[]; -[];;;BlooregardQKazoo;;;[];;;;text;t2_3uspr;False;False;[];;"what does she like in non-anime? - -a lot of people look for ""starter anime"" and i don't really agree when you have someone willing to watch a show with you. i frankly think quality is more important than any nebulous concept of what is beginner friendly. i don't think shoenen classics have a quality that makes them better for newbies, i just think it is more widely available. - -so my recommendation, without any idea of what kind of shows she likes, is **A Place Further Than the Universe**. it's the best anime i've ever seen. - -but ultimately you should have an idea what kind of show your wife will like. i think the second anime i watched with my wife was *Kill La Kill*, and most people would advise against that for good reason. but my wife loved the show so much that her ringtone is now a song from the show, and she recently asked me if we could watch it again. so my real recommendation is to figure out what genre/kinds of shows she likes and to pick the best show.";False;False;;;;1610551085;;False;{};gj4aqhr;False;t3_kw6qhk;False;True;t3_kw6qhk;/r/anime/comments/kw6qhk/my_wife_is_finally_willing_to_watch_an_anime_with/gj4aqhr/;1610614580;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KawaiiMajinken;;;[];;;;text;t2_102m81;False;False;[];;There's no region lock in the seven seas matey!;False;False;;;;1610551311;;False;{};gj4b6xz;False;t3_kw83at;False;False;t1_gj3kagr;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj4b6xz/;1610614822;10;True;False;anime;t5_2qh22;;0;[]; -[];;;fantasticfabian;;;[];;;;text;t2_lpayd;False;False;[];;Reina Kousaka from hibike euphonium. I started playing trumpet in 4th grade and naturally became much better than my classmates. I ended up getting private lessons and long story short by freshman year of highschool I was better than any other player in my school. Hibike euphonium was actually an extremely accurate portrayal of the competitive band scene. Those seat placement tests were definitely a real thing and i had a moment in my sophomore year when i took the main solo from our senior trumpet player because the teacher had us both play the part on the spot just like the anime and unfortunately to the senior, my part was picked. Also the feeling she gets when she knows she put so much effort into becoming a great musician, but is held back by incompetent band mates is a very real thing. An example would be during our competition in carnegie hall new york (2015). picture the whole band in one of the most amazing music halls on the planet in front of 3 world class judges and an audience of musicians just as good, if not better than us. We had over a year to practice the songs we were going to play for festival so there shouldn't have been anyone who didn't know their part. The first song we played was called [bacchanale from samson and delilah](https://youtu.be/mdITMksls0Y) and was famous for starting with an oboe solo. Our oboe player started the solo and for some reason whether it had been the pressure or just being unprepared, she flubs a note half way into the solo and just stops right on stage and starts bawling. Everyone in our band is completely shocked beyond disbelief including our teacher. After about 5 dreadful second of crying echoing through one of the most acoustically designed rooms on the planet, our teacher composed herself and motioned to continue after the solo and we all played the best we've ever played in our lives because of how shocked we were from that incident. The other 2 songs went well and we even got gold but unfortunately couldn't go on to the next competition in Australia or something due to funding. so yea basically reina best girl.;False;False;;;;1610551572;;False;{};gj4bq69;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj4bq69/;1610615115;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ManujChaturvedi;;;[];;;;text;t2_56dt4fcj;False;False;[];;I watched it on a whim , but it was very engaging .;False;False;;;;1610551880;;False;{};gj4cd9x;False;t3_kw83at;False;True;t1_gj35m4r;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj4cd9x/;1610615460;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jetah;;;[];;;;text;t2_7x3ws;False;False;[];;I don't want to see Asta's form in the intro of Black Clover bit I did because they decided to add it to the intro. Now I can't be surprised when it happens.;False;False;;;;1610552754;;False;{};gj4e6fo;False;t3_kw7gwu;False;True;t1_gj3htb7;/r/anime/comments/kw7gwu/paying_attention_to_the_intros/gj4e6fo/;1610616431;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;True;[];;Give it a watch. The first episode isn't really depressing but it does have a few heavy topics in it.;False;False;;;;1610552949;;False;{};gj4el4s;True;t3_kw83at;False;True;t1_gj3tl0i;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj4el4s/;1610616655;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pm-me-uranus;;;[];;;;text;t2_ggfs4;False;False;[];;3 episode rule. Gotta push past the first 3 episodes before any judgement is made.;False;False;;;;1610553183;;False;{};gj4f2xc;False;t3_kw83at;False;True;t1_gj2sm28;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj4f2xc/;1610616923;2;True;False;anime;t5_2qh22;;0;[]; -[];;;vellsii;;;[];;;;text;t2_2tid8dx4;False;False;[];;I like how you talk about Kiroko Utsumi and don't mention her biggest project, Free!. I know its target audience isn't the reddit crowd, but it similarly has fantastic directing and story boarding, as expected of Utsumi.;False;False;;;;1610553792;;1610554035.0;{};gj4gdej;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj4gdej/;1610617627;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BeckQuillion89;;;[];;;;text;t2_11czx8;False;False;[];;I mainly get it that in the lighter moments like near the beginning and in the ED. It certainly is still absurd, but I've been starved for a skateboarding anime, so i feel this is somewhat in the right direction.;False;False;;;;1610554001;;False;{};gj4gtcf;False;t3_kw83at;False;True;t1_gj3vp7w;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj4gtcf/;1610617865;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RimuZ;;MAL;[];;http://myanimelist.net/animelist/LtCrabcake;dark;text;t2_8df66;False;False;[];;Did you start pushing them up to drive points home?;False;False;;;;1610554187;;False;{};gj4h7m7;False;t3_kw6uuw;False;True;t1_gj3cuzp;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj4h7m7/;1610618084;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;My wife loved Chjihayafuru. We've been watching (some) anime together since 1999. Her first one was Princess Mononoke -- which is still her favorite Ghibli film (which might also be a good choice).;False;False;;;;1610554256;;False;{};gj4hcvc;False;t3_kw6qhk;False;True;t1_gj3dexu;/r/anime/comments/kw6qhk/my_wife_is_finally_willing_to_watch_an_anime_with/gj4hcvc/;1610618163;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Draco_Estella;;MAL;[];;https://myanimelist.net/animelist/Estella_Rin;dark;text;t2_t7ptj;False;False;[];;"You probably are banking in way too hard on the realism of anime, that is what everyone is saying. Which is what the message everyone is trying to tell you, they are comfortable with how fiction is depicting the characters, since it is fiction. You want more ""genetic diversity"", it isn't popular among the anime crowd here. - -And with how you put it, it does sound like anime has to have a restriction and has to portray its characters more realistically, hence everyone telling you that it is all fiction, you are trying to restrict how fiction works are like, and you are taking it way too seriously and realistically, especially when this is a work of fiction and there is simply no need to go for this genetic diversity. - -I think a better approach will be to explain, why anyone should take your idea of having not so cute characters around. Is there a good reason why? Because none of us see that reason. If your only reason is because it is realistic, then no one is buying that argument, because, and I loop back to the same argument again, this is all fiction, fiction can do whatever it wants, and no one really wants to watch boring everyday characters running around.";False;False;;;;1610554375;;False;{};gj4hm36;False;t3_kw4xl1;False;True;t1_gj48nlw;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj4hm36/;1610618302;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BEERALCHEMIST51;;;[];;;;text;t2_xz6cj;False;False;[];;I liked all three of these anime's first episodes, especially Egg and Back Arrow. I believe Egg, for me, will be the surprise for Winter 2021, since I expected what the OP wrote above. I like the character design in Back Arrow and it seems the story has a lot of potential, Skate also exceed my original low expectations of it. It's going to be a great season!;False;False;;;;1610554403;;False;{};gj4ho8s;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj4ho8s/;1610618334;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PopPunkTeacher;;;[];;;;text;t2_3q70c5ad;False;False;[];;No that’s a kinder egg;False;False;;;;1610554474;;False;{};gj4hu08;False;t3_kw83at;False;True;t1_gj45m4b;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj4hu08/;1610618419;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;"Kumiko and Yuu from Bloom into You. And no, it's not because they like girls. Gay characters just seem to be better written and more relatable for some reason. Maybe because they don't need to be the perfect waifu for the MC. - -Edit. Lol they were the two top answers in the thread. Yeah they are really relatable. Shut out to the guy who say Shima, I also agree.";False;False;;;;1610554582;;False;{};gj4i2ha;False;t3_kw6uuw;False;False;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj4i2ha/;1610618553;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Agni7atha;;;[];;;;text;t2_lz9tdz;False;False;[];;At this point, I'm going to trust what r/anime gonna shill. In a couple of weeks, there should be some loud noise on which anime deserve more watcher. In this packed season, that loud noise is much needed than ever before. I really hope that some of these title will be good, because watching a good original anime is giving me a unique experience.;False;False;;;;1610554604;;False;{};gj4i49d;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj4i49d/;1610618580;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;But these are better than most of those! Probably...;False;False;;;;1610555115;;False;{};gj4j8a6;False;t3_kw83at;False;True;t1_gj3gawz;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj4j8a6/;1610619205;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ninjakillzu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Ninjakillzu;light;text;t2_h0wum;False;True;[];;I really enjoyed Back Arrow! It felt like a 90s anime and it gave me the same vibes as G-Gundam. I'm definitely looking forward to more episodes.;False;False;;;;1610555347;;False;{};gj4jqrf;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj4jqrf/;1610619493;1;True;False;anime;t5_2qh22;;0;[]; -[];;;randomkidlol;;;[];;;;text;t2_bg4iz;False;False;[];;model and render quality has definitely gone up, but directing and animation style has changed for the worse. its not bad, but fights are not quite as hype as first 3 seasons of rwby and associated trailers.;False;False;;;;1610555625;;False;{};gj4kcmw;False;t3_kw4o33;False;True;t1_gj38i5q;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj4kcmw/;1610619830;3;True;False;anime;t5_2qh22;;0;[]; -[];;;paksman;;;[];;;;text;t2_56xgg;False;False;[];;I've seen PS2 game cut scenes way better than this.;False;False;;;;1610555771;;False;{};gj4ko56;False;t3_kw4o33;False;True;t1_gj2iu4b;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj4ko56/;1610620013;1;True;False;anime;t5_2qh22;;0;[]; -[];;;noctistars;;;[];;;;text;t2_35bg9j3a;False;False;[];;"wonder egg is AWESOME so far, reminds me of serial experiments lain, angels egg, silent hill, and corpse party all in one with yuri and slice of life elements. i’m so looking forward to watching this whole show <3";False;False;;;;1610555786;;False;{};gj4kpcg;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj4kpcg/;1610620032;2;True;False;anime;t5_2qh22;;0;[]; -[];;;iamtheone11111;;;[];;;;text;t2_3esmzro8;False;False;[];;Sonic would have released the way it wa too if it weren't for the huge backlash.. And since its a pretty huge franchise, they had to reanimate him..;False;False;;;;1610556750;;False;{};gj4muex;False;t3_kw4o33;False;True;t1_gj2t5fg;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj4muex/;1610621232;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dray_Gunn;;;[];;;;text;t2_bn2qh;False;False;[];;And That is why a lot of anime these days have a damn paragraph for a title.;False;False;;;;1610556806;;False;{};gj4myvo;False;t3_kw83at;False;False;t1_gj47bf9;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj4myvo/;1610621301;9;True;False;anime;t5_2qh22;;0;[]; -[];;;iamtheone11111;;;[];;;;text;t2_3esmzro8;False;False;[];;Anyone a fan of the manga..?? Tell me how you feel..To wait for this manga to get an anime only for it to turn into this..;False;False;;;;1610556810;;False;{};gj4mz7c;False;t3_kw4o33;False;True;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj4mz7c/;1610621307;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nanashi-74;;;[];;;;text;t2_5x0k2vam;False;False;[];;I feel like Wonder Egg will be better than those. If I'd ever bet on a gem it would be this one;False;False;;;;1610556853;;False;{};gj4n2mc;False;t3_kw83at;False;False;t1_gj3johb;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj4n2mc/;1610621358;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Nanashi-74;;;[];;;;text;t2_5x0k2vam;False;False;[];;Dude, I think it had the strongest first episode of the season alongside Horimiya;False;False;;;;1610556916;;False;{};gj4n7q5;False;t3_kw83at;False;False;t1_gj3m4pt;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj4n7q5/;1610621435;7;True;False;anime;t5_2qh22;;0;[]; -[];;;deus_machinarum;;;[];;;;text;t2_13tmo6vc;False;False;[];;Thank you for bringing Wonder Egg to my attention, amazing first episode. Hopefully it continues in the same vein. Would have missed it because this season is full of must-watch series. Reccomend wholeheartedly to everyone to check it out.;False;False;;;;1610556963;;False;{};gj4nbgz;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj4nbgz/;1610621490;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Superluis97045;;;[];;;;text;t2_n8aug82;False;False;[];;Came for the Tits and ass, stayed for the over the top animation!;False;False;;;;1610557566;;False;{};gj4oocr;False;t3_kw4o33;False;True;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj4oocr/;1610622257;3;True;False;anime;t5_2qh22;;0;[]; -[];;;x3tan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Koshiba;light;text;t2_6shxr;False;False;[];;Wonder Egg and Sk8 were both awesome. I didnt check out back arrow yet though maybe I should since the other two originals were great. Although with stacked sequels this season, I am worried about these anime originals being overshadowed more than they would otherwise.;False;False;;;;1610557568;;False;{};gj4ooik;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj4ooik/;1610622259;1;True;False;anime;t5_2qh22;;0;[]; -[];;;i_am_the_kiLLer;;;[];;;;text;t2_kvi84;False;False;[];;go make that game my man;False;False;;;;1610557655;;False;{};gj4ovg1;False;t3_kw6uuw;False;True;t1_gj3f6e3;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj4ovg1/;1610622366;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KaptainTZ;;skip7;[];;;dark;text;t2_9fhynbf5;False;False;[];;close enough;False;False;;;;1610557709;;False;{};gj4ozpd;False;t3_kw83at;False;True;t1_gj4hu08;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj4ozpd/;1610622435;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Worm38;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Worm38;light;text;t2_21wfoc0w;False;False;[];;Well, I am a video game developer. The next step is just making my own video game rather than one I'm paid by someone to make.;False;False;;;;1610557926;;False;{};gj4ph1j;False;t3_kw6uuw;False;False;t1_gj4ovg1;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj4ph1j/;1610622708;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Jobin_higashikata;;;[];;;;text;t2_3pp3bfsd;False;False;[];;I feel bad for the mangaka who's work been turned into this;False;False;;;;1610558394;;False;{};gj4qikk;False;t3_kw4o33;False;False;t1_gj2qd27;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj4qikk/;1610623302;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Tribork;;;[];;;;text;t2_1hhrwkl7;False;False;[];;But which is the image from;False;False;;;;1610558403;;False;{};gj4qj7y;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj4qj7y/;1610623313;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CosmicPenguin_OV103;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cosmic_Penguin;light;text;t2_1ufwqhs7;False;False;[];;"Well even before the start of this season, among 7 sequels and a few new big titles (13 total this season - a new personal record high), BACK ARROW and (now especially) WEP were the two ones that I'm most eagerly waiting for, as looking at the staff lineups for these two I already felt quite some bit of potential for them to be solid good or even to higher altitudes. - -I can't ask for a better start for them 2. And while my interest in sports anime, or skateboarding are weak, I'm definitely keeping an eye on SK8 to see if some drama blew up there for me to pick it up after this season. - -Choosing new ***original story*** anime every season has been my general direction since I somehow stumbled upon [a little watched original anime that ended up as one of the really under-watched gems of the Summer 2019 season](https://myanimelist.net/anime/39417/), becoming my very first ever seasonal anime less than a year after I fell into the anime world. And while some really flopped (Jun Maeda...sigh) quite a few already paid off for last year. Things like ID:INVADED, DECA-DENCE, Warlords of Sigrdrifa, APPARE-RANMAN, Great Pretender etc. excels in quite a few places and made up a significant portion of my 2020 watch list. - -This policy of mine will continue as much as possible.";False;False;;;;1610558822;;False;{};gj4rgy7;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj4rgy7/;1610623843;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kairyu_gen1;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/kairyu_gen1;dark;text;t2_v5hbm;False;False;[];;It's not on purpose! I adjust my glasses when I'm nervous, and I'm literally always nervous when talking to people so I adjust my glasses a lot, including when I'm making a point and my friends love to make fun of me when I do that.;False;False;;;;1610558896;;False;{};gj4rm8e;False;t3_kw6uuw;False;True;t1_gj4h7m7;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj4rm8e/;1610623928;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yourfriendlychemist-;;;[];;;;text;t2_86k8eir5;False;False;[];;They're all pretty good;False;False;;;;1610559227;;False;{};gj4sdhg;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj4sdhg/;1610624370;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AvatarAarow1;;;[];;;;text;t2_3ve7o5xz;False;False;[];;I feel like I tend to relate to a lot of female characters more than male characters (am male), but that might be because a lot of male anime characters are kinda dumb, and usually if they aren’t dumb they’re just clueless when it comes to interpersonal relationships;False;False;;;;1610559620;;False;{};gj4t9tk;False;t3_kw6uuw;False;True;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj4t9tk/;1610624890;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Desiderius_S;;;[];;;;text;t2_b6hbn;False;False;[];;We're at a point where anime description at MAL could be shorter than it's title.;False;False;;;;1610559939;;False;{};gj4u0li;False;t3_kw83at;False;False;t1_gj4myvo;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj4u0li/;1610625325;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Kinofhera;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kinofhera;light;text;t2_lvs9yw3;False;False;[];;"Dr.STONE is quite a good starter anime. It feels quite similar to Avatar too! - -PS Season 2 is coming too, like, tomorrow! :D";False;False;;;;1610559991;;False;{};gj4u4t8;False;t3_kw6qhk;False;True;t3_kw6qhk;/r/anime/comments/kw6qhk/my_wife_is_finally_willing_to_watch_an_anime_with/gj4u4t8/;1610625392;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RimuZ;;MAL;[];;http://myanimelist.net/animelist/LtCrabcake;dark;text;t2_8df66;False;False;[];;That does sound troublesome. Have you tried to always standing or sitting somewhere where the sun is hitting the glasses when you tilt them so they make that signature anime shine? It will probably worsen your eyesight but just think about how cool it will look!;False;False;;;;1610560390;;False;{};gj4v1kz;False;t3_kw6uuw;False;False;t1_gj4rm8e;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj4v1kz/;1610625931;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kairyu_gen1;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/kairyu_gen1;dark;text;t2_v5hbm;False;False;[];;In the right circumstances I can reflect light off my glasses onto one person, but it doesn't work on groups. It also looks silly because I bring my head up and it takes a while to get the aim spot on, so it doesn't have the same effect.;False;False;;;;1610560977;;1610561497.0;{};gj4we97;False;t3_kw6uuw;False;True;t1_gj4v1kz;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj4we97/;1610626733;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Arkaniux;;;[];;;;text;t2_scx9d;False;False;[];;"Is SK8 just Air Gear but with skateboards? - -Man, now I want an Air Gear remake.";False;False;;;;1610561442;;False;{};gj4xfti;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj4xfti/;1610627355;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EliotTheOwl;;;[];;;;text;t2_3s5f8d0q;False;False;[];;"PS2 animation was pretty good compared to this. - -Even on PS1 there was better animation than in this anime. - -Legacy of Kain: Soul Reaver opening cutscene from the ps1 blow this off the water and it's from 1999.";False;False;;;;1610562192;;False;{};gj4z54l;False;t3_kw4o33;False;True;t1_gj4ko56;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj4z54l/;1610628487;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cyang1213;;;[];;;;text;t2_mujff0x;False;False;[];;Kycilia Zabi, because she makes stupid choices and generally incompetent;False;False;;;;1610562317;;False;{};gj4zfi9;False;t3_kw6uuw;False;True;t3_kw6uuw;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj4zfi9/;1610628691;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RimuZ;;MAL;[];;http://myanimelist.net/animelist/LtCrabcake;dark;text;t2_8df66;False;False;[];;Well there are always contacts. I never was able to get used to wearing glasses so I've been going with contacts for more than a decade now.;False;False;;;;1610562690;;False;{};gj509ou;False;t3_kw6uuw;False;True;t1_gj4we97;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj509ou/;1610629228;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kairyu_gen1;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/kairyu_gen1;dark;text;t2_v5hbm;False;False;[];;My vision is actually bad enough contacts aren't good enough. I tried them for a few months in high school and couldn't read the board if I wasn't in the front row.;False;False;;;;1610562813;;False;{};gj50jmk;False;t3_kw6uuw;False;True;t1_gj509ou;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj50jmk/;1610629400;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RimuZ;;MAL;[];;http://myanimelist.net/animelist/LtCrabcake;dark;text;t2_8df66;False;False;[];;Ahh that sounds pretty rough. Well the good news is that the first episode of the new Log Horizon season is out go and enjoy all the glasses tipping the world of anime can offer.;False;False;;;;1610563215;;False;{};gj51gax;False;t3_kw6uuw;False;True;t1_gj50jmk;/r/anime/comments/kw6uuw/what_character_of_the_opposite_gender_could_you/gj51gax/;1610629989;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Isai579;;MAL;[];;http://myanimelist.net/animelist/Isai579;dark;text;t2_mg0km;False;False;[];;"They're getting trickier then. Now, the question is... Did they destroy the NERV location to scare them into moving the Eva where it would be vulnerable, or did they just attack the Eva when they saw the chance? Either way, it shows their planning capabilities are more advanced than just throw angels at Tokio 3. The mystery thickens... - -Wait... I just realized, why not just destroy Tokio 3 with the Evas like they hit the other NERV location with a surprise attack? Could it be [Evangelion speculation](/s ""they are trying to rescue Adam. I mean, some attacks like the orbital drop would still destroy everything, but if Adam is kept in or near Tokyo 3, it explains why they just don't obliterate them. Or maybe being underground makes Tokyo 3 safer. But there is something going on there... "")";False;False;;;;1610563537;;False;{};gj526wc;False;t3_kw1ugh;False;True;t1_gj43q6y;/r/anime/comments/kw1ugh/rewatchspoilers_neon_genesis_evangelion_episode/gj526wc/;1610630456;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MejaBersihBanget;;;[];;;;text;t2_4a6wkvny;False;False;[];;The Starship Troopers CGI cartoon from 1999 kicks this thing's ass. And the mechs are better too.;False;False;;;;1610564510;;False;{};gj54erp;False;t3_kw4o33;False;True;t1_gj4z54l;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj54erp/;1610632030;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KerkiForza;;;[];;;;text;t2_9icq5b2c;False;False;[];;">legendary Gorou Taniguchi, you know, the creator of CODE GEASS - -The Day I Became a God was a massive disappointment";False;False;;;;1610564548;;False;{};gj54hw1;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj54hw1/;1610632085;0;True;False;anime;t5_2qh22;;0;[]; -[];;;CorbenikTheRebirth;;;[];;;;text;t2_g98wg;False;False;[];;It's heavy, but the first episode isn't actually too depressing. If suicide is a sensitive topic for you, I'd stay away, though.;False;False;;;;1610564612;;False;{};gj54n4s;False;t3_kw83at;False;True;t1_gj3tl0i;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj54n4s/;1610632182;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CorbenikTheRebirth;;;[];;;;text;t2_g98wg;False;False;[];;Wonder Egg really feels like if Kyo Ani and Ikuhara collaborated. It's so good so far, I'm very excited to see where it goes.;False;False;;;;1610564709;;False;{};gj54uug;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj54uug/;1610632324;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Temporal_P;;;[];;;;text;t2_sycdj;False;False;[];;"I didn't think it could be as bad as people were saying, but wow, it *really* is that bad. - -It makes Berserk look like a masterpiece.";False;False;;;;1610565253;;False;{};gj562va;False;t3_kw83at;False;False;t1_gj3gx5f;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj562va/;1610633160;4;True;False;anime;t5_2qh22;;0;[]; -[];;;IR8Things;;;[];;;;text;t2_glr4l;False;False;[];;wow that looks like a 2000s era youtube video someone made during a cough syrup trip;False;False;;;;1610565572;;False;{};gj56t1e;False;t3_kw4o33;False;True;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj56t1e/;1610633650;1;True;False;anime;t5_2qh22;;0;[]; -[];;;veilsofrealitydotcom;;skip7;[];;;dark;text;t2_xnuyosb;False;False;[];;interesting I came to r anime this evening because I see so many animes with intriguing thumbnails. My thumbnail hunch success rate is very high, so I was wondering if anyone was talking about these. But there are even more, and now I am going to check out sk8 infinity (great thumbnail) and wonder egg (great name)!;False;False;;;;1610565846;;False;{};gj57fkx;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj57fkx/;1610634083;1;True;False;anime;t5_2qh22;;0;[]; -[];;;veilsofrealitydotcom;;skip7;[];;;dark;text;t2_xnuyosb;False;False;[];;deca dance, I thought would be amazing after ep 2 and then it was so bad to me I didnt even finish. Tried to watch ep 9-10 multiple times but gave up and that wasnt even in a stacked season.;False;False;;;;1610565960;;False;{};gj57p47;False;t3_kw83at;False;True;t1_gj3r6v6;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj57p47/;1610634272;0;True;False;anime;t5_2qh22;;0;[]; -[];;;veilsofrealitydotcom;;skip7;[];;;dark;text;t2_xnuyosb;False;False;[];;wtf man, animes to check out falling like rain!;False;False;;;;1610566005;;False;{};gj57ssy;False;t3_kw83at;False;True;t1_gj4n7q5;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj57ssy/;1610634342;1;True;False;anime;t5_2qh22;;0;[]; -[];;;veilsofrealitydotcom;;skip7;[];;;dark;text;t2_xnuyosb;False;False;[];;tamago;False;False;;;;1610566468;;False;{};gj58v9j;False;t3_kw83at;False;True;t1_gj3zclc;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj58v9j/;1610635115;1;True;False;anime;t5_2qh22;;0;[]; -[];;;veilsofrealitydotcom;;skip7;[];;;dark;text;t2_xnuyosb;False;False;[];;This is the first that stood out to me.;False;False;;;;1610566640;;False;{};gj5991v;False;t3_kw83at;False;False;t1_gj3kpqp;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj5991v/;1610635382;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;True;[];;okay... I do not know what that has to do with my post. If you are using that as point to somehow discredit an original anime I'd be more than happy to point all the hundreds and thousands of shitty manga and light novel adaptations there has been over the history of anime. I could point out that just because something is adapted from a manga or light novel does not mean that you will like it (unless you love 90% of anime that have ever come out). I could also point out all of the absolutely garbage and terrible manga and light novels that exist. I can also point out how about half of the anime we consider to be classics are anime originals. I could points out some iconic anime like Cowboy Bebop, Gurren Lagann, Anohana, FLCL, Megalobox and how amazing all those anime originals were, but I don't feel like writing another essay.;False;False;;;;1610566765;;False;{};gj59j0z;True;t3_kw83at;False;True;t1_gj54hw1;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj59j0z/;1610635575;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TheEnhancedExe;;;[];;;;text;t2_14zlp1;False;False;[];;On top of that, Gorou Taniguchi hasn't really directed any noteworthy anime since he made Code Geass. Iirc the last one he directed was Revisions 2 years ago, which was a complete and utter shitshow. I really wanted to give it a try, because Taniguchi was directing it and Code Geass was my favourite anime. But Revisions was one of the worst anime I've ever started watching (though there are probably much worse ones out there).;False;False;;;;1610567429;;False;{};gj5b0ri;False;t3_kw83at;False;True;t1_gj49843;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj5b0ri/;1610636660;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610567749;;False;{};gj5braw;False;t3_kw83at;False;True;t1_gj3hl8d;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj5braw/;1610637189;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThorAxe911;;MAL;[];;;dark;text;t2_74tes;False;False;[];;Same. Anime originals almost always disappoint me with promising starts and then wasted potential. I've quit watching them seasonally and then just wait and see what still retains praise long after they aired.;False;False;;;;1610568547;;False;{};gj5djz9;False;t3_kw83at;False;True;t1_gj3vmxo;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj5djz9/;1610638445;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mrbull3tproof;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/mrbull3tproof;light;text;t2_8nwrn;False;False;[];;"> Back Arrow - -Judging by the VAs it must be great. - -edit: watched roughly half of it and CGI animation is nowhere as bad as in the opening. Still CGi bud not some tragic one.";False;False;;;;1610569484;;1610569684.0;{};gj5fmy2;False;t3_kw83at;False;False;t1_gj34yox;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj5fmy2/;1610639900;1;True;False;anime;t5_2qh22;;0;[]; -[];;;adeleke5140;;;[];;;;text;t2_10tpx9;False;False;[];;"Woah! Thanks for putting this out. Definitely checking all of em. - -I wonder how many shows I'm gonna end up watching this season lol.";False;False;;;;1610570578;;False;{};gj5i2ra;False;t3_kw83at;False;False;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj5i2ra/;1610641614;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Badassdinosaur5;;;[];;;;text;t2_21w0sm8e;False;False;[];;Wonder Eggs first episode was beyond great. If this anime doesn't get talked about and instead the usual Isekai shit will be at the top of this sub I'm gonna be fuming;False;False;;;;1610572502;;False;{};gj5me80;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj5me80/;1610644644;2;True;False;anime;t5_2qh22;;0;[]; -[];;;totoro-kun;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/_totoro-kun_;light;text;t2_3pr89gx;False;False;[];;If you had to pick one original to watch, pick Wonder Egg. You'll have to go back to Araburu (even if it dropped off later), or even as far back as 2018 and Sora Yori to find a better start to an original series.;False;False;;;;1610572705;;False;{};gj5mvam;False;t3_kw83at;False;False;t1_gj3fn75;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj5mvam/;1610644996;4;True;False;anime;t5_2qh22;;0;[]; -[];;;perfectbluu;;MAL;[];;https://myanimelist.net/profile/MoghyBear;dark;text;t2_12b79d;False;False;[];;"Wonder Egg is the anime everyone is going to say is niche and under-watched despite it's episode discussions constantly being near the top of this sub - -&nbsp; - -^^not ^^that ^^I'm ^^complaining";False;False;;;;1610572869;;False;{};gj5n97r;False;t3_kw83at;False;False;t1_gj3hagf;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj5n97r/;1610645257;15;True;False;anime;t5_2qh22;;0;[]; -[];;;stiveooo;;;[];;;;text;t2_9amaa;False;False;[];;Studio: we have only 20k$ and 6 months to do the anime, at least we gonna hire good seiyuus;False;False;;;;1610573268;;False;{};gj5o6y2;False;t3_kw4o33;False;True;t1_gj2qd27;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj5o6y2/;1610645912;2;True;False;anime;t5_2qh22;;0;[]; -[];;;stiveooo;;;[];;;;text;t2_9amaa;False;False;[];;since an average 12 eps anime costs 75k-125k per episode, how much do you think they are using here?;False;False;;;;1610573501;;False;{};gj5oqk0;False;t3_kw4o33;False;True;t1_gj2zolc;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj5oqk0/;1610646300;3;True;False;anime;t5_2qh22;;0;[]; -[];;;stiveooo;;;[];;;;text;t2_9amaa;False;False;[];;nah i think this one is on the animation director;False;False;;;;1610573619;;False;{};gj5p0je;False;t3_kw4o33;False;True;t1_gj305c7;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj5p0je/;1610646498;1;True;False;anime;t5_2qh22;;0;[]; -[];;;stiveooo;;;[];;;;text;t2_9amaa;False;False;[];;gibiate is a master piece now compared to it;False;False;;;;1610573662;;False;{};gj5p47w;False;t3_kw4o33;False;True;t1_gj3m8pc;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj5p47w/;1610646566;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Earthborn92;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EarthB;light;text;t2_al1wj;False;False;[];;"Partial Rewatcher here. **First timer** for this episode. -A day late again! - -[No](https://i.imgur.com/jWnCrju.jpg), don’t ruin the cute date! - -Did he [fall asleep](https://i.imgur.com/48Zf5Qg.jpeg) in the planetarium? - -[Is Ougi a Hydra?](https://i.imgur.com/JBe2wPC.jpg) - -It is a [fighting technique](https://i.imgur.com/S1Cnmt8.jpg)! - -She [making threats](https://i.imgur.com/UXMhUHq.jpeg), looks like. With all the talk of how resurrection is not allowed. - -You [do know](https://i.imgur.com/lgt3WRG.jpg) the kind of relationship Araragi has with his imoutos, right? Want your teeth brushed as well? - -So she is [some kind of](https://i.imgur.com/BJacAPo.jpg) cosmic janitor after all. The void we saw earlier given human form or something. - -[Lol nope.](https://i.imgur.com/oAHDDnT.jpg) - -So much for [her loving](https://i.imgur.com/NsTYiLm.jpg) the stars. I totally [believe you](https://i.imgur.com/x0LQiOY.jpeg). - -Hey at least we’re [still getting](https://i.imgur.com/JvzClFs.jpeg) the cute date. - -[Tired Senjou.](https://i.imgur.com/Q39E9Tm.jpeg) - -Just [going through hell](https://i.imgur.com/ZwCMKAL.jpg) and stuff. - -Was she going to [sing Fukatome](https://i.imgur.com/VL1nwSr.jpg)? And holy shit, she [totally has](https://i.imgur.com/sBmOCvZ.jpeg) the honor student mindset. - -It’s actually [better for him](https://i.imgur.com/HnSE1Rr.jpeg) if they’re loli enough that they can be worn as a hat. - -Well, [now you know](https://i.imgur.com/lACJ7Gs.jpeg). Lol, maybe [she spoke too soon](https://i.imgur.com/uo38LsS.jpg). It was a [ruse](https://i.imgur.com/pZPrTEe.jpg) all along. - -[Shy](https://i.imgur.com/8PCWXsB.jpg) Araragi. I think the last time she forced him to say her first name was during their first date, and there she had the excuse that her dad was driving them. - -[Especially spooky](https://i.imgur.com/cmOFJSb.jpeg) background. - -[Not gonna happen.](https://i.imgur.com/0EzePE3.jpg) - -Is that the [truth](https://i.imgur.com/8pHdbWX.jpeg)? She looks [prepared here](https://i.imgur.com/u6MtGlx.jpeg) for whatever it is Gaen is planning. - -See you next episode!";False;False;;;;1610574840;;1610575064.0;{};gj5rva2;False;t3_kw1u5z;False;True;t3_kw1u5z;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj5rva2/;1610648624;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Earthborn92;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EarthB;light;text;t2_al1wj;False;False;[];;">Looks like Ougi will be giving the narration on the Planetarium, tho she talked more about astrology than astronomy. - -I think it makes sense. Senjou is the grounded, ""real science"" aspect of this date while Ougi is the supernatural. Astronomy vs. Astrology. It is a deliberate juxtaposition.";False;False;;;;1610575024;;False;{};gj5saia;False;t3_kw1u5z;False;True;t1_gj1v06m;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj5saia/;1610648930;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ihileath;;MAL;[];;http://myanimelist.net/animelist/Ihileath;dark;text;t2_rsvva;False;False;[];;Too many sequels and adaptations I already want to follow. I literally don't have the time to watch original stuff too. This season is too packed.;False;False;;;;1610575298;;False;{};gj5sx0b;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj5sx0b/;1610649398;0;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> Is Ougi a Hydra? - -what cast member gets obliterated regularly but still comes back again? - -> Was she going to sing Fukatome - -Araragi beat her singing her own song with a Hanekawa OP!";False;False;;;;1610575458;;False;{};gj5ta30;True;t3_kw1u5z;False;True;t1_gj5rva2;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj5ta30/;1610649647;2;True;False;anime;t5_2qh22;;0;[]; -[];;;XboxNoLifes;;;[];;;;text;t2_bkymx;False;False;[];;"""That Time I Became an OP Sword Knight in a Parallel World, But All I Wanted to do Was Enjoy Delicious Sweets Made By My Cute Sister Who Steps On Me"" - Some anime within the next few years, probably.";False;False;;;;1610575668;;False;{};gj5tr2w;False;t3_kw83at;False;False;t1_gj4myvo;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj5tr2w/;1610649972;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ClBanjai;;;[];;;;text;t2_3i7pwknq;False;False;[];;Code Geass is one of my all time favorites, but that first episode sure as hell didn't get me hooked.;False;False;;;;1610576467;;False;{};gj5vj5w;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj5vj5w/;1610651197;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ijiolokae;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/corvoatano;light;text;t2_15k31w;False;False;[];;Attach a comedy tag on it and no one will question it, dear god did i have a hearty laugh watching it, whenever black haired girl was on screen i couldn't contain my laughter at her stupid default expression;False;False;;;;1610577003;;False;{};gj5wpdz;False;t3_kw83at;False;True;t1_gj34yox;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj5wpdz/;1610652014;1;True;False;anime;t5_2qh22;;0;[]; -[];;;trueselfdao;;;[];;;;text;t2_1mcwjmbm;False;False;[];;Any chance for S2?;False;False;;;;1610577262;;False;{};gj5x9jm;False;t3_kw83at;False;True;t1_gj3luzd;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj5x9jm/;1610652401;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DqrkExodus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Seraira;light;text;t2_162r04;False;False;[];;I'm actually watching Egg because I noticed Shuka from Love Live Sunshine voicing one of the characters. I thought its first episode was really good to be fair. I'd probably come back and check the originals out once they've done airing;False;False;;;;1610578922;;False;{};gj60tfg;False;t3_kw83at;False;True;t1_gj4j8a6;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj60tfg/;1610654933;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;Shuka from Sunshine and Tomoriru and Yuu's VA from Nijigasaki. Lots of good stuff if you are a LL fan.;False;False;;;;1610579027;;False;{};gj6113l;False;t3_kw83at;False;True;t1_gj60tfg;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj6113l/;1610655099;1;True;False;anime;t5_2qh22;;0;[]; -[];;;oomoepoo;;;[];;;;text;t2_wu8z4;False;False;[];;Ex Arm is a manga adaptation though.;False;False;;;;1610579651;;False;{};gj62b9d;False;t3_kw83at;False;True;t1_gj34yox;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj62b9d/;1610656004;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DqrkExodus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Seraira;light;text;t2_162r04;False;False;[];;Oh I didn't notice the Nijigaku VAs. I just saw Shuka promoting the anime from her twitter account so I gave it a shot haha;False;False;;;;1610580156;;False;{};gj63ct5;False;t3_kw83at;False;True;t1_gj6113l;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj63ct5/;1610656771;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jayicon97;;;[];;;;text;t2_99fib1pp;False;False;[];;"Excuse me? Are you forgetting... - -Spider - -Hortensia Saga - -Skard - -Last dungeon boonies - -Dungeon only I can enter - -Mushoku tensei - -Kemono Jihen";False;False;;;;1610580496;;False;{};gj6420g;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj6420g/;1610657277;0;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;Loved the essay. I need to take inspiration from your formatting;False;False;;;;1610580715;;False;{};gj64hyo;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj64hyo/;1610657594;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;True;[];;None of those are original anime, they are all adaptations of something else;False;False;;;;1610580716;;False;{};gj64i0b;True;t3_kw83at;False;True;t1_gj6420g;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj64i0b/;1610657594;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Smigglebah2;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Xodias/;light;text;t2_13ix83;False;False;[];;*Snore*;False;False;;;;1610582053;;False;{};gj676uw;False;t3_kw83at;False;True;t1_gj3ac7e;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj676uw/;1610659419;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lev559;;;[];;;;text;t2_3jgmeqwb;False;False;[];;There is way to many good anime this season;False;False;;;;1610583980;;False;{};gj6b0io;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj6b0io/;1610662099;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Leaves_Swype_Typos;;;[];;;;text;t2_arcs5;False;False;[];;"Yeah I really wanted to love BNA, because everything about the production was wonderful, but it did not have the same thoughtfulness ultimately as KLK, GL, or Promare. The problem of the beastmen society [spoiler](/s ""naturally being incompatible as diversity would drive it to destruction"") was actually unnerving, because it skews way too close to a common real life ethnonationalist talking point. I was hoping for a twist to have made that not the case, rather than the twist just being that it was the case.";False;False;;;;1610587230;;1610587442.0;{};gj6hcu2;False;t3_kw83at;False;True;t1_gj49843;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj6hcu2/;1610666443;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chinatownjon;;;[];;;;text;t2_2llv7rko;False;False;[];;Damn you it looks like I need to go buy a funimation subscription :/;False;False;;;;1610588399;;False;{};gj6jlwy;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj6jlwy/;1610667896;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"> as far back as 2018 and Sora Yori to find a better start to an original series - -You forgot [Revue Starlight and its wild first episode](https://streamable.com/b85cu), also in 2018";False;False;;;;1610589459;;False;{};gj6lo7x;False;t3_kw83at;False;True;t1_gj5mvam;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj6lo7x/;1610669214;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mrbrinks;;;[];;;;text;t2_657bm;False;False;[];;Okay this thread woke me up. Thanks OP.;False;False;;;;1610589835;;False;{};gj6medx;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj6medx/;1610669665;1;True;False;anime;t5_2qh22;;0;[]; -[];;;elfaia;;;[];;;;text;t2_3hb8o7;False;False;[];;"Back arrow is pretty underwhelming and juvenile storytelling wise. A lot of cheap jokes thrown in, which I don't mind usually, that just undermines the seriousness of the show. Hell, even their title is a cheap joke. - -Not sure who they are targeting but going by first impression, I would mistaken it for a saturday morning kids' show. That's how kiddish the show feels. - -Not to mention the mecha action is quite terrible. This is the impression I got just from the pilot episode but damn, it's not looking good despite its critically acclaimed staff and voice actors.";False;False;;;;1610589875;;False;{};gj6mh7z;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj6mh7z/;1610669716;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Blatheringman;;;[];;;;text;t2_4vm4hjb5;False;False;[];;This might sound strange but I hope they redue it. It's a shame to waste such good source material like that. Maybe, They can salvage some of the audio assets and art direction to speed up the process.;False;False;;;;1610590555;;False;{};gj6nsak;False;t3_kw83at;False;True;t1_gj562va;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj6nsak/;1610670491;2;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;"Are you asking me what the benefits of realism are? Well, realism helps us relate to scenarios in fiction. Being able to relate to fiction raises its emotional impact, which I'd say is one of the main purposes of art. - -Again, I'm not saying all anime should embrace this idea. The ones that are meant to be an escape from reality have no need to. But you understand that very often, what fiction attempts to do isn't simply giving an escape, but providing a temporary alternate existence. Hell, sometimes even the exact same existence with some small changes. A volleyball player watching Haikyuu would still enjoy it in spite of knowing everything about the sport, and would enjoy it all the more if it portrays the game realistically. - -There's a reason anime isn't all Sakura trees and butterflies and romance. There's a reason garbage cans and dust and mud are shown in environments. There's a reason characters are often majorly flawed in their personality. Rejecting the idea of diversity in attractiveness is the same as rejecting any of these other ideas. I propose that the flaws animes depict don't extend to character appearances due to a firmly established trend, or due to how it may impact the ability of the anime to sell.";False;False;;;;1610593078;;False;{};gj6siox;True;t3_kw4xl1;False;True;t1_gj4hm36;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj6siox/;1610673415;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Draco_Estella;;MAL;[];;https://myanimelist.net/animelist/Estella_Rin;dark;text;t2_t7ptj;False;False;[];;"So you need normal looking characters to relate to the anime? That is a very new take. Why do you need them to be looking more normal, or ugly, to relate to the main characters and side characters? Overboard focus on the looks of the characters, and going for a realism that is not needed? - -And I do not buy that fiction provides an escape. At least I don't see it that way, for me fiction is more of something to explore ideas and themes which not necessary are easily explored irl. Which means, overboard realism isn't too needed. - -Yeah, anime isn't all sakura trees and nice stuff, because they are supposed to recreate those uncomfortable moments. There is a good reason why they do this, but is there a good reason why people need to draw in ugly or normal looking characters? - -It is like arguing for a background that is entirely bland for the whole anime, of course no one is going to do it unless they have a very very good reason why they are doing so.";False;False;;;;1610598210;;False;{};gj71lix;False;t3_kw4xl1;False;True;t1_gj6siox;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj71lix/;1610679193;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jakad;;;[];;;;text;t2_5drcz;False;False;[];;">I was surprised that I've never heard of Wonder Egg, just to find out that ep. 1 came out today. - -Pre-release popularity for anime originals (not adapted from novels/manga/other) usually fly under the radar until episode 1 drops and it's a banger. You have quite a few people who will check the seasonal chart and specifically look for these anime original shows to give em a shot, but outside of ""What seasonal anime are you checking out next season"" discussions there's not much discussion about them because there's not much to discuss.";False;False;;;;1610604490;;False;{};gj7b0w1;False;t3_kw83at;False;True;t1_gj41lqb;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj7b0w1/;1610685244;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liatris4405;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/liatris4405/;light;text;t2_mb2ck;False;False;[];;Gun-dou Musashi in 3DCG Anime;False;False;;;;1610604496;;False;{};gj7b167;False;t3_kw4o33;False;True;t3_kw4o33;/r/anime/comments/kw4o33/exarm_is_the_best_anime_lmao/gj7b167/;1610685248;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pojo21;;;[];;;;text;t2_ilvtb;False;False;[];;"It might just be me and my love for Air Gear, but sk8 the infinity not only reminds me of the vibe and style of it, a lot of the stuff seems to be a straight up ""copy"". The scenes before the op seem to be an almost scene by scene recap of the first episode of air gear. Plus the emblems, art style, and even the music remind me of Air Gear. - -I don't mean any hate as I'm enjoying it, just wondering if anyone had the same reaction as me.";False;False;;;;1610605923;;False;{};gj7cuqk;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj7cuqk/;1610686350;1;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;">So you need normal looking characters to relate to the anime? That is a very new take. Why do you need them to be looking more normal, or ugly, to relate to the main characters and side characters? - -It's not about one character. It's about many characters. A whole lot of characters being very attractive is a pattern that doesn't happen in real life. The anime becomes less relatable with such a pattern. - -It's about making a realistic context for the scenes taking place. By the same token I'd relate to the context more if an anime depicting Shibuya's センター街 at night showed Strong Zero cans lying around near convenience stores. - ->Yeah, anime isn't all sakura trees and nice stuff, because they are supposed to recreate those uncomfortable moments. There is a good reason why they do this, but is there a good reason why people need to draw in ugly or normal looking characters? - -Yep, the exact same reason that they show garbage cans and grime in the backgrounds of certain scenes. Realism. - ->It is like arguing for a background that is entirely bland for the whole anime, - -That'd be the opposite of realism. - -It seems there's some sort of miscommunication? It would help if I understood why you don't seem to think that realism matters. For instance, could you explain why you think in various anime scenes cement might be cracked, bushes might be untidy, fences might be broken, etc., and even though such imperfections may not be related to the story or its themes whatsoever, whether they are necessary? Do you think artists should stop focusing on these details? If not - if you think these details serve a purpose, what is that purpose, and how is it any different from what genetic diversity might achieve?";False;False;;;;1610605925;;False;{};gj7cusx;True;t3_kw4xl1;False;True;t1_gj71lix;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj7cusx/;1610686351;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GoHooN;;;[];;;;text;t2_6oe3a;False;False;[];;">You have quite a few people who will check the seasonal chart and specifically look for these anime original shows - -Hey, that's what I do, but Wonder Egg was so low at the popularity order at MAL that I actually didn't notice it. - -That's why I got impressed when I saw this thread praising it so much. - -Having just watched ep. 1, I can say that it deserves all the praise it's getting.";False;False;;;;1610608369;;False;{};gj7fpg1;False;t3_kw83at;False;True;t1_gj7b0w1;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj7fpg1/;1610688129;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Draco_Estella;;MAL;[];;https://myanimelist.net/animelist/Estella_Rin;dark;text;t2_t7ptj;False;False;[];;" -> It's not about one character. It's about many characters. A whole lot of characters being very attractive is a pattern that doesn't happen in real life. The anime becomes less relatable with such a pattern. - -The thing is, no one is thinking so. Or rather, I don't think so. Is there really a need to do so? That is what I am pointing out at. So what if everyone is attractive? People (and me) still relate to them all the same. Which is why I ask, why this proposal? How would you relating to the anime be affected by how many normal not-cute people there are in the anime? That is also why I asked, is this so affecting you relating to anime? It shouldn't, because people don't literally relate to anime because there isn't a realistic context to it. People don't relate mostly because the characters are not fleshes out properly or the characters are too unrealistic, but not relating because the side characters look too attractive is new. - -Which is why I said, you are banking in way too hard on realism, which is unnecessary in the context of anime. Way too hard, which probably goes against the idea of fiction. Would you rather go for non-fiction instead? A story, set in real life, would probably tick all your boxes. But that won't be fictional, and it won't be anime. - -> It's about making a realistic context for the scenes taking place. By the same token I'd relate to the context more if an anime depicting Shibuya's センター街 at night showed Strong Zero cans lying around near convenience stores. - -Sure, but I would argue that even Kyoani, who are probably top-notch in animation, ain't doing this too. They aren't aiming for true-to-life anime, or a real-life film would be better. We don't want a documentary. - -> Yep, the exact same reason that they show garbage cans and grime in the backgrounds of certain scenes. Realism. - -And I can't remember, off the top of my head, any anime that has cracks in cements, garbage cans that are really filthy, and grime in the background, that do not contribute to the narrative. Which is my answer to you: untidy bushes and broken fences add on to the narrative, and builds up the atmosphere of the anime. The thing is, detailed anime are done so because they add something to the story: the atmosphere, colour of background, stuff like that. - -But how would having many different kinds of people add on to the narrative? Unless they are focusing on the diversity of humanity or something, there is really no motivation or any real reason for them to do so. Especially for Hyouka, why should they do so? It won't break the realism too, since people relate not to the context, but to the specific situation in which the characters find themselves in. - -Honestly, you are banking way too hard into realism. Sure, anime should be realistic, but I guess the limit is far too off for yours. We aren't watching irl shows or documentaries, where these things are important. People relate not because they are surrounded by people they usually are surrounded by physically, but instead their characters and how they act and react to situations. - -Which is why no one is buying the whole looks thing. We are not here to pick on the context of how the characters look, we are here to look for the different contexts which the stories throw us. We relate to the situation, not how realistic the anime is. If we relate only because it is something realistic, even for realistic down to earth anime, then it might be better to just make documentaries and real life shows.";False;False;;;;1610609920;;1610610142.0;{};gj7hel4;False;t3_kw4xl1;False;True;t1_gj7cusx;/r/anime/comments/kw4xl1/should_anime_characters_be_uglier/gj7hel4/;1610689405;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JohnWangDoe;;;[];;;;text;t2_15bm4a;False;False;[];;Winter Season 2021 is stacked with amazing animes. It's like when you get golden age in CiV. So many good first episodes;False;False;;;;1610622964;;False;{};gj7ufom;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj7ufom/;1610697272;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;"so the opinions and recomendations of a single person in reddit: good and trustworthy - -the opinions of thousands of people : bad and stop caring about it?";False;False;;;;1610626385;;False;{};gj7y6ao;False;t3_kw83at;False;False;t1_gj3vi2h;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj7y6ao/;1610699324;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;but taking seriously whatever shit op says yes?;False;False;;;;1610626424;;False;{};gj7y7y7;False;t3_kw83at;False;False;t1_gj3t0pi;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj7y7y7/;1610699348;1;True;False;anime;t5_2qh22;;0;[]; -[];;;padperascha;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/swappong;light;text;t2_pjclzwj;False;False;[];;"No, I'm saying that because people put way too much weight into ratings on MAL by people who might have different tastes than them, and end up passing on anime they might actually enjoy. I used to be like this until I said fuck it and just started watching random anime regardless of what the rating was and found a lot of new things I enjoyed even if most people didn't consider it objectively good. - - Anyways, the point of OPs post was to recommend these new original anime in case some people might have overlooked them and to give it a try, not to say they were automatically good.";False;False;;;;1610627161;;False;{};gj7z3uk;False;t3_kw83at;False;True;t1_gj7y6ao;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj7z3uk/;1610699824;1;True;False;anime;t5_2qh22;;0;[]; -[];;;9manacombo;;;[];;;;text;t2_teckk;False;False;[];;"Franxx didnt take a nose dive, it was never good. Lazy teenage drama with nonsense scifi bullshit. Watch kiznaiver instead for a decent character study. - -Back arrow also does not impress. I honestly dont know why i should care after the first episode. Theres no stakes or anything. Dude just wants back out of the wall. Theres nothing interesting inside the wall so why should i care whats outside it? - -Egg is interesting. Not really sure where its going. Flip flappers/alice in wonderland";False;False;;;;1610627516;;False;{};gj7zjh3;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj7zjh3/;1610700060;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;">Anyways, the point of OPs post was to recommend these new original anime in case some people might have overlooked them and to give it a try, not to say they were automatically good. - -yeah and there are hundreds of people not recommending it, your point?";False;False;;;;1610627540;;False;{};gj7zkl6;False;t3_kw83at;False;True;t1_gj7z3uk;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj7zkl6/;1610700076;1;True;False;anime;t5_2qh22;;0;[]; -[];;;padperascha;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/swappong;light;text;t2_pjclzwj;False;False;[];;"No one said OPs word was gospel, it's literally just a ""hey check this out"" thing.";False;False;;;;1610627925;;False;{};gj801qp;False;t3_kw83at;False;True;t1_gj7zkl6;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj801qp/;1610700351;1;True;False;anime;t5_2qh22;;0;[]; -[];;;maximus_md;;;[];;;;text;t2_3nhroflm;False;False;[];;Until it went completely batshit crazy 😂;False;False;;;;1610627992;;False;{};gj804r2;False;t3_kw83at;False;False;t1_gj3lyp3;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj804r2/;1610700396;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Grelp1666;;;[];;;;text;t2_3nnfv5cw;False;False;[];;Did the show/novels tell what curses Oshino and Kaiki have?;False;False;;;;1610628068;;False;{};gj8089d;False;t3_kw1u5z;False;True;t1_gj1pawf;/r/anime/comments/kw1u5z/monogatari_series_2020_novel_order_rewatch/gj8089d/;1610700446;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Erufailon4;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Erufailon4;light;text;t2_rtyakcn;False;False;[];;Damn. I checked animekarmalist.com out of curiosity, and while Egg's karma is already impressively high for an anime I completely expected to fly under everyone's radar, the poll score is just insane. Second place after AoT's banger of an episode. I'm very pleased but also surprised;False;False;;;;1610628295;;False;{};gj80iy6;False;t3_kw83at;False;True;t1_gj43w48;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj80iy6/;1610700607;1;True;False;anime;t5_2qh22;;0;[]; -[];;;themartini89;;;[];;;;text;t2_2ga0cjlh;False;False;[];;Tbh i wish sk8 the infinity wouldve been more freestyle skating the streets of tokyo type vibe instead of over the top downhill racing but it is what it is;False;False;;;;1610634076;;False;{};gj89lc9;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj89lc9/;1610705557;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ratailion;;;[];;;;text;t2_7vmjctgh;False;False;[];;"Glad someone wrote this up. I don't think I'll actually be watching any of these, but back in the day I'd always look for new anime. Unfortunately, so many of them would just not go anywhere, so I kind of just stopped trying to go by the originals until at least there was some hype around them, past the mid-point of the season. A lot do get hype for like three episodes before people give up. - -I'm old now and just watch less period. I definitely think it's more fun when you're younger, have more time and are willing to spend it to check out a lot of different stuff.";False;False;;;;1610648561;;False;{};gj9517v;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gj9517v/;1610726005;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mylaur;;MAL;[];;https://myanimelist.net/animelist/Mylaur;dark;text;t2_gtwu7;False;False;[];;"I watched it thinking it was some good generic isekai. That beginning and name is deliberate. - -Episode 1 got me good.";False;False;;;;1610663053;;False;{};gja2ifu;False;t3_kw83at;False;True;t1_gj3q0eu;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gja2ifu/;1610749301;2;True;False;anime;t5_2qh22;;0;[]; -[];;;volsfan99;;;[];;;;text;t2_ruuvn;False;False;[];;Wonder Egg Priority is so fucking pretty. The art alone will carry it;False;False;;;;1610670747;;False;{};gjahmbx;False;t3_kw83at;False;True;t3_kw83at;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gjahmbx/;1610759439;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jsgjs;;;[];;;;text;t2_yra7d;False;False;[];;Bro I was being sarcastic lol I pretty much give all animes a go;False;False;;;;1610816431;;False;{};gjh7ni3;False;t3_kw83at;False;True;t1_gj3vi2h;/r/anime/comments/kw83at/dont_sleep_on_this_seasons_original_anime/gjh7ni3/;1610904437;1;True;False;anime;t5_2qh22;;0;[]; -[];;;royalfamkilledD;;;[];;;;text;t2_6kk6pc1j;False;False;[];;They’re gone now the only one that’s available is the fist ova🙃;False;False;;;;1611190073;;False;{};gk0c0ka;False;t3_kw7g07;False;True;t1_gj2vpk8;/r/anime/comments/kw7g07/where_can_i_watch_aot_ova/gk0c0ka/;1611320932;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TotallyBrandNewName;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Siimoes;light;text;t2_64wlph5b;False;False;[];;Rent a girlfriend is in there? I'm really happy about it since Kazuya is kazuya;False;False;;;;1610373623;;False;{};givq5qy;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givq5qy/;1610420347;10;True;False;anime;t5_2qh22;;0;[]; -[];;;ktanthony123;;;[];;;;text;t2_18u2buv;False;False;[];;In my opinion, SNAFU was just so good. There’s so much behind it, as in what it completed, the message and etc. But maybe that’s just me fan girling;False;False;;;;1610373730;;False;{};givqdjj;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givqdjj/;1610420471;4;True;False;anime;t5_2qh22;;0;[]; -[];;;nafissyed;;;[];;;;text;t2_3axlgtoe;False;False;[];;I agree with the top 3 but I find it blasphemous that Rent A Girlfriend is ranked higher than Oregairu of all things. Like what the Fock?!?!;False;False;;;;1610373797;;False;{};givqijw;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givqijw/;1610420545;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;I thought Re:zero would be number 1 or 2 and that oregairu would be higher;False;False;;;;1610373894;;False;{};givqpwx;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givqpwx/;1610420658;151;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610374054;;False;{};givr1lj;False;t3_kv3521;False;True;t1_givqpwx;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givr1lj/;1610420839;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;"Tbf only half of the season aired in 2020 and the entire first cour was a build up for the *grand finale* in the second cour. - -I'm pretty sure Kaguya and Kakushigoto would have less votes if they only had half of their season air as well.";False;False;;;;1610374092;;False;{};givr4cb;False;t3_kv3521;False;False;t1_givqpwx;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givr4cb/;1610420885;84;True;False;anime;t5_2qh22;;0;[]; -[];;;Redo-Master;;;[];;;;text;t2_7yfxxyjj;False;False;[];;I had zero idea that kakushigoto or Toilet kun even existed before this post.;False;False;;;;1610374123;;False;{};givr6mk;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givr6mk/;1610420924;5;True;False;anime;t5_2qh22;;0;[]; -[];;;daredevil005;;;[];;;;text;t2_4geoevjp;False;False;[];;Dorohedoro was one of the best anime in 2020, idk why it's so underrated, it's manga is a classic too..;False;False;;;;1610374139;;1610375448.0;{};givr7u2;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givr7u2/;1610420944;217;True;False;anime;t5_2qh22;;0;[]; -[];;;nafissyed;;;[];;;;text;t2_3axlgtoe;False;False;[];;Considering how it still ranked third despite being mostly set-up and dialogue heavy is still very impressive on its own imo.;False;False;;;;1610374163;;False;{};givr9j0;False;t3_kv3521;False;False;t1_givr4cb;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givr9j0/;1610420978;42;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610374236;moderator;False;{};givrf80;False;t3_kv3d1i;False;True;t3_kv3d1i;/r/anime/comments/kv3d1i/our_last_crusade_or_the_rise_of_a_new_world_novel/givrf80/;1610421090;1;False;False;anime;t5_2qh22;;0;[]; -[];;;SapphireRiptide;;;[];;;;text;t2_piprk;False;False;[];;No Interspecies Reviewers means list is automatically shit.;False;False;;;;1610374266;;False;{};givrhlj;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givrhlj/;1610421139;46;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;"Surprised it's included at all since it technically hasn't finished the season. That's why AOT isn't there I imagine. - -The way the list is configured is just weird.";False;False;;;;1610374303;;False;{};givrkio;False;t3_kv3521;False;False;t1_givr9j0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givrkio/;1610421185;6;True;False;anime;t5_2qh22;;0;[]; -[];;;SoftBaldHead;;;[];;;;text;t2_6ne4iy5c;False;False;[];;Kakushigoto was really good;False;False;;;;1610374347;;False;{};givrnwg;False;t3_kv3521;False;False;t1_givr6mk;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givrnwg/;1610421237;16;True;False;anime;t5_2qh22;;0;[]; -[];;;dorkmax_executives;;;[];;;;text;t2_1498cg;False;False;[];;Glad that Kakushigoto and Hanako-kun are getting some love! I watched them purely because of the art style and really liked both of them.;False;False;;;;1610374388;;False;{};givrqyv;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givrqyv/;1610421283;14;True;False;anime;t5_2qh22;;0;[]; -[];;;SnooOwls1625;;;[];;;;text;t2_3unhpe1j;False;False;[];;Where's Darwin's Game bruh;False;False;;;;1610374471;;False;{};givrx8w;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givrx8w/;1610421384;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;Damn, very good list. I didn't like Rent A Girlfriend but everything else is quality.;False;False;;;;1610374475;;False;{};givrxlb;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givrxlb/;1610421390;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Greenawalt_Gaming;;;[];;;;text;t2_463fnkfu;False;False;[];;Doesn’t season two of it come out 2021 or 2022? I recently watched all 12 episodes and can’t wait till the next season, it’s a very good anime;False;False;;;;1610374485;;False;{};givryer;False;t3_kv3521;False;False;t1_givq5qy;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givryer/;1610421402;5;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;Kinda disappointed that Sword Art Online made the list, but Jujutsu Kaisen, Haikyuu!!, Fruits Basket, and Eizouken didn’t.;False;False;;;;1610374538;;False;{};givs2dy;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givs2dy/;1610421463;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Garlicbread10;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;ereh;dark;text;t2_8zn7f5o;False;False;[];;Interspecies reviewers is too good to be on this list anyways;False;False;;;;1610374643;;False;{};givsa3k;False;t3_kv3521;False;False;t1_givrhlj;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givsa3k/;1610421585;25;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Anime corner and their love for Rent-a-girlfriend is astounding, I still remember how they put RAG in the first position when Oregairu released their [last episode](https://www.reddit.com/r/anime/comments/iziukj/top_10_anime_week_12_summer_2020_anime_corner/).;False;False;;;;1610374670;;1610375997.0;{};givscbn;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givscbn/;1610421619;708;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;Was there just not that many good shows that came out this year? Because holy shit is this list mediocre for a top 10.;False;False;;;;1610374718;;False;{};givsg76;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givsg76/;1610421679;117;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;There are so many other anime which deserves a place on this list like Fruits Basket S2, Railgun T, Dorohedro, Great Pretender and Jujutsu Kaisen.;False;False;;;;1610374774;;False;{};givsko1;False;t3_kv3521;False;False;t1_givr7u2;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givsko1/;1610421749;105;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Ngl that made me very happy, I like the anime and I know how this will trigger people, it's always nice read the comments afterwards;False;False;;;;1610374807;;False;{};givsn8u;False;t3_kv3521;False;False;t1_givq5qy;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givsn8u/;1610421795;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;Surprised that RAG is that high up... surprised it's even in the list to begin with.;False;False;;;;1610374817;;False;{};givso59;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givso59/;1610421808;61;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Anime corner users never fail to amuse me at how random they are, and that's the best part, its very different from here;False;False;;;;1610374886;;False;{};givstj5;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givstj5/;1610421892;11;True;False;anime;t5_2qh22;;0;[]; -[];;;jslice4ever;;;[];;;;text;t2_2wvi51tm;False;False;[];;Glad to see ID:Invaded, Akudama Drive, and Misfit here. The 3 best surprises from last year.;False;False;;;;1610375038;;False;{};givt59b;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givt59b/;1610422074;20;True;False;anime;t5_2qh22;;0;[]; -[];;;KaptainTZ;;skip7;[];;;dark;text;t2_9fhynbf5;False;False;[];;"# This is not a ""Top 10 Anime of the Year"" list. - -This is a ""best anime of the year poll."" The problem is that people have to pick their single favorite show. The people that picked shows at the very top don't get to give their second-favorite shows any representation. - -It's possible that a show which literally everyone who voted thought was the second-best didn't get a single vote. The title is blasphemous.";False;False;;;;1610375041;;1610381596.0;{};givt5h0;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givt5h0/;1610422077;532;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;I second Fruits Basket!;False;False;;;;1610375073;;False;{};givt7ur;False;t3_kv3521;False;False;t1_givsko1;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givt7ur/;1610422114;22;True;False;anime;t5_2qh22;;0;[]; -[];;;HobnobsTheRed;;;[];;;;text;t2_1ftgjit5;False;False;[];;No Golden Kamuy or Deca-Dence either...;False;False;;;;1610375140;;False;{};givtdar;False;t3_kv3521;False;False;t1_givs2dy;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givtdar/;1610422195;6;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;Did Kakushigoto shoot up in quality? I only saw like 3 episodes but it just felt incredibly dry for me.;False;False;;;;1610375150;;False;{};givte5w;False;t3_kv3521;False;False;t1_givrnwg;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givte5w/;1610422207;6;True;False;anime;t5_2qh22;;0;[]; -[];;;TotallyBrandNewName;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Siimoes;light;text;t2_64wlph5b;False;False;[];;Same, enjoyed it so much and couldn't wait that I read the manga in a day. Jfc it's so good;False;False;;;;1610375168;;False;{};givtfpg;False;t3_kv3521;False;True;t1_givryer;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givtfpg/;1610422231;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KaptainTZ;;skip7;[];;;dark;text;t2_9fhynbf5;False;False;[];;"Like I said in another comment, this isn't a ""Top 10 anime of the year"" list. - -It's a ""favorite anime of the year"" poll, as in only people's #1 is represented.";False;False;;;;1610375206;;False;{};givtit7;False;t3_kv3521;False;False;t1_givsko1;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givtit7/;1610422278;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Greenawalt_Gaming;;;[];;;;text;t2_463fnkfu;False;False;[];;I basically just binge watched it over two nights;False;False;;;;1610375220;;False;{};givtk0a;False;t3_kv3521;False;False;t1_givtfpg;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givtk0a/;1610422295;5;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;Tfw Rent a Girlfriend is higher than Misfit of demon king academy and Oregairu.;False;False;;;;1610375227;;1610414946.0;{};givtkkv;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givtkkv/;1610422304;500;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;It even beats Oregairu like what lol.;False;False;;;;1610375294;;False;{};givtpxc;False;t3_kv3521;False;False;t1_givso59;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givtpxc/;1610422382;55;True;False;anime;t5_2qh22;;0;[]; -[];;;melongrip;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Dakotah;light;text;t2_gkrni;False;False;[];;Yeah the list isn’t too hot, also JJK hasn’t finished yet so it’ll count as a 2021 anime too.;False;False;;;;1610375389;;False;{};givtxgy;False;t3_kv3521;False;False;t1_givs2dy;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givtxgy/;1610422494;7;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;Oh yeah! Golden Kamuy S3 was really good! When you go to the website they literally put it at number forty!;False;False;;;;1610375468;;False;{};givu3n3;False;t3_kv3521;False;True;t1_givtdar;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givu3n3/;1610422587;3;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;"The title of this post says - -**TOP 10 ANIME OF THE YEAR 2020(ANIME CORNER)** - -If what you're saying is correct and it's more of a popularity contest, even then there are a lot of anime that deserves a position on this ranking. But anyway thanks for the info.";False;False;;;;1610375494;;False;{};givu5nu;False;t3_kv3521;False;False;t1_givtit7;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givu5nu/;1610422619;8;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;It also used to beat Re:zero in the ranking during the Summer season 2020.;False;False;;;;1610375601;;False;{};givue24;False;t3_kv3521;False;False;t1_givtpxc;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givue24/;1610422749;27;True;False;anime;t5_2qh22;;0;[]; -[];;;daft_tyspehirson;;;[];;;;text;t2_4awiope7;False;False;[];;"This year didn't have much competition, so it was inevitable that shows like Kaguya and Re:Zero would be on the top. Especially Kaguya. Although, I'm genuinely surprised how low Oregairu is, and that Fruits Basket isn't on the list. I thought that it was going to be: - -1. Kaguya-sama S2 -2. Fruits Basket S2 -3. Oregairu S3 -4. Re:Zero S2P1 -5. Haikyuu!! To The Top -6. Jujutsu Kaisen -7. Railgun T -8. Keep Your Hands Off Eizouken! -9. Dorohedoro -10. Kakushigoto -I'm glad Misfit of the Demon King Academy got attention, though. It's severely underrated, and misunderstood. Golden Kamuy is still SEVERELY underrated.";False;False;;;;1610375624;;1610392018.0;{};givug1h;False;t3_kv3521;False;False;t1_givr9j0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givug1h/;1610422777;32;True;False;anime;t5_2qh22;;0;[]; -[];;;mrv3;;;[];;;;text;t2_fe649;False;True;[];;"Firstly, SNAFU in my opinion is really bad and is a show which confuses vagueness with intelligence. - -Second where the fuck is Eizouken?";False;False;;;;1610375638;;False;{};givuh7i;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givuh7i/;1610422793;29;True;False;anime;t5_2qh22;;0;[]; -[];;;TDS_Reaper;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ramenn/;light;text;t2_2qks3axi;False;False;[];;"So happy Kakushigoto is second, should have been first imo but ill take it. SAO should not be in the top 10 at all, and Oregairu S3 should be above RAG. - -My changes to the list would be: - -1- Kakushigoto - -2- ID:Invaded - -3- Oregairu s3 - -4- Kaguya-sama s2 - -5- Akudama Drive - -6- Jujutsu Kaisen - -7- Sing Yesterday to me - -8- God of Highschool - -9- Re:Zero - -10- I dont think there were 10 good anime this year so yea not gonna put a below-average anime here. - -(I haven't watched Doroherodoro or RAG)";False;False;;;;1610375678;;1610376012.0;{};givukhb;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givukhb/;1610422841;-3;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 150, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Thank you stranger. Shows the award.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'icon_width': 2048, 'id': 'award_f44611f1-b89e-46dc-97fe-892280b13b82', 'is_enabled': True, 'is_new': False, 'name': 'Helpful', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;Buddy_Waters;;;[];;;;text;t2_qkttj;False;False;[];;The source is the light novel, and the manga an adaption of it.;False;False;;;;1610375722;;False;{};givunzy;False;t3_kv3d1i;False;True;t3_kv3d1i;/r/anime/comments/kv3d1i/our_last_crusade_or_the_rise_of_a_new_world_novel/givunzy/;1610422897;2;True;False;anime;t5_2qh22;;1;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;Atleast id invaded is there;False;False;;;;1610375790;;1610376006.0;{};givuthr;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givuthr/;1610422998;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;This is BS😂 misfit over the great pretender ? How's the great pretender not even on this list ? It's an absolute Masterpiece, which stumbles a little at the end but was still a really good ride. Much better than everything on this list. The only 2 i think that deserve to be on there are re zero and Kaguya coz those were actually good.;False;False;;;;1610375849;;False;{};givuy3s;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givuy3s/;1610423077;7;True;False;anime;t5_2qh22;;0;[]; -[];;;SheiledTurtle;;;[];;;;text;t2_31ywgdav;False;False;[];;Do you know how much of a gap between them are then;False;False;;;;1610375868;;False;{};givuzmw;False;t3_kv3d1i;False;True;t1_givunzy;/r/anime/comments/kv3d1i/our_last_crusade_or_the_rise_of_a_new_world_novel/givuzmw/;1610423100;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;No they just got overshadowed, remember the great pretender ? That was an absolute Masterpiece;False;False;;;;1610375917;;False;{};givv3bm;False;t3_kv3521;False;False;t1_givsg76;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givv3bm/;1610423158;65;True;False;anime;t5_2qh22;;0;[]; -[];;;daft_tyspehirson;;;[];;;;text;t2_4awiope7;False;False;[];;I checked the site and Fruits Basket was 24th. Tower of God was 14th. Great Pretender was 11th. BOFURI was 18th, and Jujutsu Kaisen was 20th. Hamefura was 26th, which is just no. Bookworm S2 was 29th.;False;False;;;;1610375994;;False;{};givv94d;False;t3_kv3521;False;False;t1_givug1h;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givv94d/;1610423255;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;No great pretender either, that was an absolute Masterpiece;False;False;;;;1610375996;;False;{};givv99p;False;t3_kv3521;False;False;t1_givs2dy;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givv99p/;1610423258;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"I think we can't even classify this as popularity contest, since people only choose their number 1 - -For example, 100 watched Jjk, its the most popular of the year, but only 10 voted as their favorite - -Meanwhile Kakushigoto had 20 viewers, 18 of them voted for it as the best of the year. - -So in our example here JJK is 5x more popular but Kakushigoto is better rated within it viewers and better ranked in the anime corner Rankin";False;False;;;;1610376080;;False;{};givvghj;False;t3_kv3521;False;False;t1_givu5nu;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givvghj/;1610423377;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Buddy_Waters;;;[];;;;text;t2_qkttj;False;False;[];;Manga adaptions usually fall quickly behind the novels, but I haven't read either, so I can't say how far.;False;False;;;;1610376117;;False;{};givvji4;False;t3_kv3d1i;False;True;t1_givuzmw;/r/anime/comments/kv3d1i/our_last_crusade_or_the_rise_of_a_new_world_novel/givvji4/;1610423424;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nafissyed;;;[];;;;text;t2_3axlgtoe;False;False;[];;"My personal top 10 this year is this: - -1) ReZero S2 Part 1 - -2) Kaguya-Sama: Love is War S2 - -3) Jujutsu Kaisen - -4) Oregairu - -5) Akudama Drive - -6) Tonikaku Kawaii - -7) ID: Invaded - -8) Toliet-Bound:Hanako-Kim - -9) Golden Kamuy - -10) Deca-Dence - -Even though this is an offical anime website list, this list I believe doesn’t represent the true thoughts of the entire anime community since a person’s top 10 is very subjective, so a person’s top 10 will alway differ from others. I also think this year had good competition since we had lots of fantastic anime originals imo.";False;False;;;;1610376126;;1610376414.0;{};givvk9l;False;t3_kv3521;False;False;t1_givug1h;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givvk9l/;1610423435;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Well, that sure is interesting. Personally I don’t see how you have this over even Jujutsu Kaisen ep7 in terms of visuals let alone every anime since Yuri on Ice, but that’s really cool if it’s intentional;False;True;;comment score below threshold;;1610376799;;False;{};givx3fx;False;t3_kv3vgw;False;True;t3_kv3vgw;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/givx3fx/;1610424288;-25;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;Serious lack of Great Pretender here...;False;False;;;;1610376882;;False;{};givxa2w;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givxa2w/;1610424406;109;True;False;anime;t5_2qh22;;0;[]; -[];;;bbbggghhh;;;[];;;;text;t2_2f2ehzzz;False;False;[];;"I mean, even RAG managed to rank high on the yearly reddit chart that was about seasons debuts and on MAL already overtook Oregairu on the summer chart. -I think no one expected to be this popular to face against other already stablished romcoms.";False;False;;;;1610376982;;False;{};givxipm;False;t3_kv3521;False;False;t1_givscbn;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givxipm/;1610424537;140;True;False;anime;t5_2qh22;;0;[]; -[];;;Zovroh;;;[];;;;text;t2_34pj2104;False;False;[];;Akudama Drive should be top 3;False;False;;;;1610377038;;False;{};givxnl6;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givxnl6/;1610424609;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Here to plug in **the Garden of sinners**, it is this urban fantasy movie series mixed with romance, murder-mystery, action, and philosophy. I recommend watching it in the series in the order of 1, 2, 3, 4, 6, 5, recap, 7, 8 to maximize your enjoyment of this series. - -&#x200B; - -EDIT: It's from 2007 but it looks better than most modern anime, also it serves as an introduction to the world of fate.";False;False;;;;1610377151;;1610378097.0;{};givxx3h;False;t3_kv48lj;False;False;t3_kv48lj;/r/anime/comments/kv48lj/im_dying_plz_help/givxx3h/;1610424753;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Scorpio83G;;;[];;;;text;t2_10wwqw;False;False;[];;"Iron Blood Orphans -Fate franchise";False;False;;;;1610377241;;False;{};givy4lg;False;t3_kv48lj;False;True;t3_kv48lj;/r/anime/comments/kv48lj/im_dying_plz_help/givy4lg/;1610424873;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;"How is Kakushigoto so high up ??? - -Heck, on MAL, it is not even in its own season's seasonal top 5 rankings.";False;False;;;;1610377280;;False;{};givy7o0;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givy7o0/;1610424919;32;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"Well that's the power of Waifus. I remember how popular Mizuhara and Ruka was in Twitter and Facebook. - -EDIT: Forgot to add Mami. She also was quite popular.";False;False;;;;1610377309;;1610377712.0;{};givy9zz;False;t3_kv3521;False;False;t1_givscbn;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givy9zz/;1610424955;61;True;False;anime;t5_2qh22;;0;[]; -[];;;SnowLocke;;;[];;;;text;t2_wx2pc;False;False;[];;"Have you tried googling ""what anime should I watch""?";False;False;;;;1610377340;;False;{};givych3;False;t3_kv48lj;False;False;t3_kv48lj;/r/anime/comments/kv48lj/im_dying_plz_help/givych3/;1610424994;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Razorhead;;MAL;[];;http://myanimelist.net/animelist/Razorhat;dark;text;t2_4rfgy;False;True;[];;"There's a difference between animation and aesthetic. - -Jujutsu Kaisen has stunning animation, and while Mushoku Tensei is no slouch in that department either, the OP here is asserting that from an aesthetic standpoint MT wins out, which is something I would agree with.";False;False;;;;1610377377;;False;{};givyfnn;False;t3_kv3vgw;False;False;t1_givx3fx;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/givyfnn/;1610425041;27;True;False;anime;t5_2qh22;;0;[]; -[];;;DylanTheSon123;;;[];;;;text;t2_57casgs7;False;False;[];;Holy shit, I was just reading Toilet Bound. I didn't even know it had an anime.;False;False;;;;1610377441;;False;{};givyl3p;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givyl3p/;1610425120;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ballaaaaaaaaaaaaa;;;[];;;;text;t2_5eh47ubm;False;False;[];;Also this is a popularity contests, i know people have their opinions but when you look at it objectively would you ever pick rent a girlfriend? Cmon;False;False;;;;1610377499;;False;{};givypzq;False;t3_kv3521;False;False;t1_givt5h0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givypzq/;1610425192;12;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Don't forget Mami, somehow she happens to top that [MAL list of new characters introduced in 2020](https://www.reddit.com/r/anime/comments/kisqlq/myanimelists_top_20_2020_characters_with_the_most/) which was surprising and unexpected.;False;False;;;;1610377584;;False;{};givyx5m;False;t3_kv3521;False;False;t1_givy9zz;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givyx5m/;1610425297;40;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;"For those [wondering](https://animecorner.me/2021/01/top-10-anime-of-the-year-2020/): - -Fruits Basket S2: 24th Place - -Railgun T: 34th Place - -Dorohedoro: 38th Place - -Great Pretender: 11th Place (just missed) - -Jujutsu Kaisen: 20th Place";False;False;;;;1610377621;;1610382237.0;{};givz04r;False;t3_kv3521;False;False;t1_givsko1;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givz04r/;1610425341;66;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Oh yes. I forgot about her. Adding her now.;False;False;;;;1610377670;;False;{};givz42k;False;t3_kv3521;False;False;t1_givyx5m;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givz42k/;1610425398;7;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;">Firstly, SNAFU in my opinion is really bad and is a show which confuses vagueness with intelligence. - -Isn't it that the two main characters find it difficult to express themselves like many teens their age. - -Also at times it is too vague and some things feel like a riddle rather than a normal conversation. But in S1 it was done well, S2 it was done okay and S3 it was too much.";False;False;;;;1610377673;;False;{};givz4ak;False;t3_kv3521;False;False;t1_givuh7i;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givz4ak/;1610425402;7;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;">Jujutsu Kaisen: 20th Place - -Very surprising considering how big JJK is on FB and Twitter";False;False;;;;1610377814;;False;{};givzfr6;False;t3_kv3521;False;False;t1_givz04r;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givzfr6/;1610425578;29;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"Fruits Basket Season 2 deserves to be there. - -Also glad to see Akudama Drive did so well. I don't usually watch shows like Maou Gakuin because I don't enjoy them. But Anos was a great MC and the first half of the season was enjoyable.";False;False;;;;1610377814;;False;{};givzfs3;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givzfs3/;1610425578;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;A common issue with any voting poll where you have only 1 option and not being able to rank;False;False;;;;1610377903;;False;{};givznm3;False;t3_kv3521;False;False;t1_givt5h0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givznm3/;1610425690;152;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;Am I the only one who enjoyed Tower of God ?;False;False;;;;1610377910;;False;{};givzoa1;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givzoa1/;1610425699;36;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal_Ebb_238;;;[];;;;text;t2_8nmkui77;False;False;[];;I second this;False;False;;;;1610377948;;False;{};givzreb;False;t3_kv48lj;False;True;t1_givy4lg;/r/anime/comments/kv48lj/im_dying_plz_help/givzreb/;1610425746;1;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;"On one hand, I'm pleasantly surprised to see underrated anime like Kakushigoto, Toilet-Bound Hanako-Kun and ID:Invaded place so high on this list. On the other hand, Rent-A-Girlfriend and SAO placing significantly [higher](https://animecorner.me/2021/01/top-10-anime-of-the-year-2020/) than such anime as Jujutsu Kaisen (20th), Fruits Basket (24th), Moriarty (25th), Railgun T (34th), Deca-Dence (36th), Dorohedoro (38th), Bookworm (39th) and Smile Down the Runway (41st) annoys me. - -As for the Big 3 Webtoon Adaptations, Tower of God got 14th place, God of High School got 43rd out of the 44 nominations and Noblesse wasn't nominated.";False;False;;;;1610377991;;1610378266.0;{};givzv0k;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givzv0k/;1610425798;645;True;False;anime;t5_2qh22;;0;[]; -[];;;randomaccount178;;;[];;;;text;t2_cbeo8;False;False;[];;To me at least it had very little to recommend it over just reading the manga instead. The manga has some fantastic art style and nothing in the anime struck me as particularly amazing and unique such that you would choose it over just reading it instead.;False;False;;;;1610377994;;False;{};givzv88;False;t3_kv3521;False;False;t1_givr7u2;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/givzv88/;1610425802;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Hmm, idk man episode 7 was also on-point as hell aesthetically, I’d still have it above Mushoku Tensei;False;True;;comment score below threshold;;1610378087;;False;{};giw0305;False;t3_kv3vgw;False;True;t1_givyfnn;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giw0305/;1610425921;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;legwkio2;;;[];;;;text;t2_3winxodf;False;False;[];;" -Aesthetics is such a subjective topic though. Dunno how we can judge that.";False;False;;;;1610378096;;False;{};giw03q1;False;t3_kv3vgw;False;False;t3_kv3vgw;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giw03q1/;1610425931;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal_Ebb_238;;;[];;;;text;t2_8nmkui77;False;False;[];;And the art work! It is beautiful!;False;False;;;;1610378114;;False;{};giw05av;False;t3_kv3vgw;False;False;t3_kv3vgw;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giw05av/;1610425956;5;True;False;anime;t5_2qh22;;0;[]; -[];;;mrv3;;;[];;;;text;t2_fe649;False;True;[];;"Yes, my criticism isn't that they don't express themselves well to each other it's that everyone talks in vagueness, teachers, other classmates, etc. - -By contrast my favourite manga, Asuperu Kanojo, deals with a similar problem (communication and spectrum) but at no point does the audience have to guess what's being said. - -The point of romances, of any kind, is growth they start off and remain vague as such the growth feels unearned and problems unsolved.";False;False;;;;1610378127;;False;{};giw06ez;False;t3_kv3521;False;False;t1_givz4ak;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw06ez/;1610425972;8;True;False;anime;t5_2qh22;;0;[]; -[];;;HobnobsTheRed;;;[];;;;text;t2_1ftgjit5;False;False;[];;"> Second where the fuck is Eizouken? - -People are doing as they're told, and keeping their hands off...";False;False;;;;1610378136;;False;{};giw073z;False;t3_kv3521;False;False;t1_givuh7i;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw073z/;1610425983;27;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;I can understand that. I think Oregairu S1 handled this aspect well but S2 and S3 not so much.;False;False;;;;1610378191;;False;{};giw0bpd;False;t3_kv3521;False;True;t1_giw06ez;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw0bpd/;1610426053;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"[Kill la Kill](https://anilist.co/anime/18679/Kill-la-Kill/) -Action, Comedy, Ecchi - -BONUS---- doesn't fit the newer thing. - -[Koi Kaze](https://anilist.co/anime/634/Koi-Kaze/) -Drama, Psychological, Romance, Slice of Life - -Try and go into this one as blind as possible. You also unfortunately need to pirate it. If it doesn't make you want to watch more by the 1st episode, drop it.";False;False;;;;1610378226;;False;{};giw0eko;False;t3_kv48lj;False;True;t3_kv48lj;/r/anime/comments/kv48lj/im_dying_plz_help/giw0eko/;1610426097;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackdiamond2;;;[];;;;text;t2_c8m3y;False;False;[];;"I went and checked, and you're right on the grain and the slight weave being there. The grain is far more noticable on the darker scenes and colours, but the weave is really subtle and I'm impressed you managed to spot it. - -This does beg the question as to why. Does the studio/committee think that so many oldheads used to 2000s grain and weave are watching that they felt it necessary to add again? I don't think that's very likely personally, could be wrong. The original story isn't that old, only 8 years. Are they just shooting for an aesthtic?";False;False;;;;1610378234;;False;{};giw0f8w;False;t3_kv3vgw;False;False;t3_kv3vgw;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giw0f8w/;1610426107;58;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;"> Railgun T: 34th Place - -[](#why)";False;False;;;;1610378278;;False;{};giw0j1i;False;t3_kv3521;False;False;t1_givz04r;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw0j1i/;1610426164;8;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;"I actually liked the episode, and the art is something that I this Mushoku Tensei has a strong point on. - -The animation part was good enough. - -The story is something that I still haven't discovered yet, but ep3 is 2 weeks far.";False;False;;;;1610378344;;False;{};giw0op8;False;t3_kv3vgw;False;False;t3_kv3vgw;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giw0op8/;1610426249;51;True;False;anime;t5_2qh22;;0;[]; -[];;;Ocixo;;;[];;;;text;t2_4guo25i1;False;False;[];;"You got good taste my friend. Honestly, it kind of pains me that shows like Fruits Basket and Railgun T which absolutely killed it last year - couldn’t have really asked more of their respective seasons - didn’t even make the top 20 in a year lots of anime were pushed back to 2021. - -I’m quite surprised that Kakyshigoto and Toilet-Bound Hanako-Kun ended up so high on the list. They were great anime, but didn’t expect them to gain such a big following.";False;False;;;;1610378426;;False;{};giw0vsi;False;t3_kv3521;False;True;t1_givsko1;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw0vsi/;1610426358;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;I actually didn't get to a lot of the anime last year, I've gotta get back around to that one.;False;False;;;;1610378439;;False;{};giw0ww8;False;t3_kv3521;False;True;t1_givv3bm;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw0ww8/;1610426376;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"Look at how the 4 of the top 5 are big name sequels and 5 having like 2.5k votes. Kakushigoto did alright on MAL. It's actually risen from where it ended in score which isn't usual. - -And considering its in the genre of cute wholesome SOL, it already has a disadvantage as due to the demographics and people's tastes, people giving those shows 10s is just straight up more unlikely imo. - -It's score is almost level with Kobayashi's Dragon Maid but I do believe they both should be higher. (Random insert Hinamatsuri deserves more than 8.22 on MAL smh)";False;False;;;;1610378445;;False;{};giw0xey;False;t3_kv3521;False;False;t1_givy7o0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw0xey/;1610426383;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Resident_Chemist_619;;;[];;;;text;t2_9993kzaf;False;False;[];;I disagree. JJK was criticised since day 1 for compositing/photography, it got better as the episodes progressed but that Gojo’s flex episode still had photography issues, it looked yellowish green sometimes.;False;False;;;;1610378479;;False;{};giw1096;False;t3_kv3vgw;False;False;t1_giw0305;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giw1096/;1610426427;14;True;False;anime;t5_2qh22;;0;[]; -[];;;sir_gummerz;;;[];;;;text;t2_61sxtili;False;False;[];;God that was only last year, feel like at least 3 years since then;False;False;;;;1610378509;;False;{};giw12t3;False;t3_kv3521;False;True;t1_givrx8w;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw12t3/;1610426469;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HayashiSawaryo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/HayashiSawaryo/;light;text;t2_74ql25l0;False;True;[];;Cue the Daddy Daddy Do;False;False;;;;1610378525;;False;{};giw142d;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw142d/;1610426488;1;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;Yeah, that's the most surprising placement on the entire list to me, especially considering how much it seemed to dominate the weekly rankings. It finished 6th out of the Fall anime right between DanMachi (16th) and Talentless Nana (21st).;False;False;;;;1610378529;;1610379870.0;{};giw14g4;False;t3_kv3521;False;False;t1_givzfr6;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw14g4/;1610426494;15;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;It looked good for what it is but using cheap tricks like film grain or intentional blurring will never look half as good as truly high quality cel animation from the 80s and 90s or as polished as something like Hyouka. It looked fine but I didn't think the art was worth writing home about.;False;True;;comment score below threshold;;1610378623;;False;{};giw1cg7;False;t3_kv3vgw;False;True;t3_kv3vgw;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giw1cg7/;1610426612;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;HayashiSawaryo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/HayashiSawaryo/;light;text;t2_74ql25l0;False;True;[];;But her merch sales pales in comparison with the other girls;False;False;;;;1610378632;;False;{};giw1d8w;False;t3_kv3521;False;False;t1_givz42k;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw1d8w/;1610426623;6;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;"> Second where the fuck is Eizouken? - -It's way down the list at 33rd place, one spot ahead of Railgun T.";False;False;;;;1610378635;;False;{};giw1deo;False;t3_kv3521;False;False;t1_givuh7i;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw1deo/;1610426626;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Jackson_Simmons;;;[];;;;text;t2_wyrsw;False;False;[];;Really surprised Hanako-kun got some recognition here. I almost hear nobody talk about that show, but it was so damn good;False;False;;;;1610378695;;False;{};giw1iiz;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw1iiz/;1610426704;15;True;False;anime;t5_2qh22;;0;[]; -[];;;a_mimsy_borogove;;;[];;;;text;t2_4fnukap5;False;False;[];;Sounds interesting! The description made me think it's just a generic isekai show, but maybe it's worth watching;False;False;;;;1610378697;;False;{};giw1inn;False;t3_kv3vgw;False;False;t3_kv3vgw;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giw1inn/;1610426706;8;True;False;anime;t5_2qh22;;0;[]; -[];;;HayashiSawaryo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/HayashiSawaryo/;light;text;t2_74ql25l0;False;True;[];;I love the great pretender but IMO the last arc didn't live up to its previous arcs, the first arc was the best;False;False;;;;1610378701;;False;{};giw1j0h;False;t3_kv3521;False;False;t1_givv3bm;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw1j0h/;1610426712;32;True;False;anime;t5_2qh22;;0;[]; -[];;;mrv3;;;[];;;;text;t2_fe649;False;True;[];;Humanities continued existence is a mistake.;False;False;;;;1610378711;;False;{};giw1ju0;False;t3_kv3521;False;False;t1_giw1deo;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw1ju0/;1610426725;19;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;To ease your anxiety a little, Great Pretender just missed 10th place missing out by .02% to Oregairu.;False;False;;;;1610378735;;False;{};giw1m0u;False;t3_kv3521;False;False;t1_givuy3s;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw1m0u/;1610426760;6;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;"Damn, did you WEB Srapped this ??? - -Even if you did, this is impressive.";False;False;;;;1610378845;;False;{};giw1vf0;False;t3_kv4qrn;False;False;t3_kv4qrn;/r/anime/comments/kv4qrn/youtube_anime_titles_available_in_bangladesh/giw1vf0/;1610426899;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;K fair enough, but honestly this is just a popularity contest rather than something else.;False;False;;;;1610378846;;False;{};giw1vhn;False;t3_kv3521;False;True;t1_giw1m0u;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw1vhn/;1610426900;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;K ya agreed but the series was still better than fuckin devil academy. That was the most generic power fantasy there is;False;False;;;;1610378885;;False;{};giw1yxk;False;t3_kv3521;False;True;t1_giw1j0h;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw1yxk/;1610426952;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;FYI using a VPN to watch these on youtube is a not legal nor illegal.;False;False;;;;1610378926;;False;{};giw22jg;False;t3_kv4qrn;False;False;t3_kv4qrn;/r/anime/comments/kv4qrn/youtube_anime_titles_available_in_bangladesh/giw22jg/;1610427009;10;True;False;anime;t5_2qh22;;0;[]; -[];;;CrasianLe;;;[];;;;text;t2_379z3crt;False;False;[];;I kinda agree with this and i kinda dont lol but it's good enough;False;False;;;;1610378932;;False;{};giw231v;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw231v/;1610427017;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SoftBaldHead;;;[];;;;text;t2_6ne4iy5c;False;False;[];;Honestly i liked it from the get go;False;False;;;;1610378965;;False;{};giw25ve;False;t3_kv3521;False;False;t1_givte5w;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw25ve/;1610427065;4;True;False;anime;t5_2qh22;;0;[]; -[];;;bigxangelx1;;;[];;;;text;t2_38l5cv0r;False;False;[];;I’m a big fan of the great pretender but it misses being a masterpiece due to the second half of s2 imo;False;False;;;;1610378968;;False;{};giw262m;False;t3_kv3521;False;False;t1_givuy3s;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw262m/;1610427068;4;True;False;anime;t5_2qh22;;0;[]; -[];;;kiwixcoke;;;[];;;;text;t2_3oxoatwh;False;False;[];;Kaguya-sama is well deserved to be #1;False;False;;;;1610378978;;False;{};giw26wx;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw26wx/;1610427083;30;True;False;anime;t5_2qh22;;0;[]; -[];;;simplebutelegant9;;;[];;;;text;t2_73fpg8lr;False;False;[];;Didn't expect kakushuigoto to be this high but deserves it nevertheless;False;False;;;;1610379012;;False;{};giw2a0w;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw2a0w/;1610427126;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal_Ebb_238;;;[];;;;text;t2_8nmkui77;False;False;[];;Don't forget Deca dance;False;False;;;;1610379031;;False;{};giw2bmy;False;t3_kv3521;False;True;t1_givsko1;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw2bmy/;1610427149;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ya kinda exaggerated there, but it was still better then the stuff on this list;False;False;;;;1610379117;;False;{};giw2j3p;False;t3_kv3521;False;True;t1_giw262m;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw2j3p/;1610427256;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal_Ebb_238;;;[];;;;text;t2_8nmkui77;False;False;[];;Wow dorohedoro and Jujutsu kaisen so low? That is almost unbelievable.;False;False;;;;1610379139;;False;{};giw2kyh;False;t3_kv3521;False;False;t1_givz04r;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw2kyh/;1610427282;69;True;False;anime;t5_2qh22;;0;[]; -[];;;Thomas_JCG;;;[];;;;text;t2_5nitkaem;False;False;[];;Yet another 2020 thing that is absolute hogwash.;False;False;;;;1610379203;;False;{};giw2qod;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw2qod/;1610427365;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lucky_howl;;;[];;;;text;t2_80xnwlla;False;False;[];;No. I’m pretty sure there are other people that enjoyed it. I think I seen comments that stated that ToG is 14 on this list so clearly a lot of other people enjoyed it as well. Also, in my opinion, I don’t think ToG was really that bad. I do have my gripes about certain parts since I’m a webtoon reader but it was still an okay show.;False;False;;;;1610379301;;False;{};giw2zdh;False;t3_kv3521;False;False;t1_givzoa1;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw2zdh/;1610427500;43;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;"Space Dandy, Berserk 1997, Pop Team Epic, & Black Lagoon (all of these are very good in English Dub)";False;False;;;;1610379327;;False;{};giw31pc;False;t3_kv48lj;False;True;t3_kv48lj;/r/anime/comments/kv48lj/im_dying_plz_help/giw31pc/;1610427534;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MishkaKoala;;MAL;[];;https://myanimelist.net/animelist/MishkaKoala;dark;text;t2_5zr43;False;False;[];;">Anime corner and their love for Rent-a-girlfriend is astounding - -Same can be said about this sub and Re:Zero.";False;False;;;;1610379366;;False;{};giw3511;False;t3_kv3521;False;False;t1_givscbn;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw3511/;1610427588;70;True;False;anime;t5_2qh22;;0;[]; -[];;;Orsonius2;;;[];;;;text;t2_204y9owl;False;False;[];;"damn 2020 was really not that good of a year - -of all the shows in that list I only actually liked Re Zero and thought Rent a Girlfriend and Demon King Academy were just kinda okay. - -Maybe I should try Kakoshigoto";False;False;;;;1610379422;;False;{};giw39tm;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw39tm/;1610427662;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;Top 14 is not a bad spot. I think many people have high hopes on the next season. I loved the webtoon so I am one of them as well.;False;False;;;;1610379453;;False;{};giw3cmn;False;t3_kv3521;False;False;t1_giw2zdh;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw3cmn/;1610427705;7;True;False;anime;t5_2qh22;;0;[]; -[];;;jcdish;;;[];;;;text;t2_a087l;False;False;[];;Is this new? Suddenly showed up in my recommendations. Free anime on YouTube that's not gundam. Who'd thunk.;False;False;;;;1610379459;;False;{};giw3d4a;False;t3_kv4qrn;False;True;t3_kv4qrn;/r/anime/comments/kv4qrn/youtube_anime_titles_available_in_bangladesh/giw3d4a/;1610427714;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Royal_Heritage;;;[];;;;text;t2_8wglzuge;False;False;[];;It's very generic with beautiful animation, that's all.;False;True;;comment score below threshold;;1610379461;;False;{};giw3d9i;False;t3_kv3vgw;False;True;t1_giw1inn;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giw3d9i/;1610427716;-23;False;False;anime;t5_2qh22;;0;[]; -[];;;Orsonius2;;;[];;;;text;t2_204y9owl;False;False;[];;"anime fans have no taste - -get used to it - -in 2012 the top anime was SAO while Shinsekai Yori was forgotten";False;False;;;;1610379474;;False;{};giw3ehw;False;t3_kv3521;False;False;t1_giw2kyh;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw3ehw/;1610427734;49;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;But Re:zero is actually great. It has a great plot, amazing characters and is actually interesting.;False;False;;;;1610379537;;False;{};giw3jze;False;t3_kv3521;False;False;t1_giw3511;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw3jze/;1610427817;82;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Please create an anime list. You can create one at either: Myanimelist.net, anilist.co, kitsu or anime-planet. All 4 are free and easy to use. Helps you remember what you've seen and helps us so we aren't suggesting you what you've seen already. - -Help us out here - -Death Note - -Fullmetal Alchemist Brotherhood - -Haikyuu - -Erased - -The Promised Neverland - -Banana Fish - -Vinland Saga - -Akatsuki no Yona - -Seirei no Moribito - -Psycho-Pass - -Re Zero Starting Life in Another World - -Steins; Gate - -Toradora - -Anohana - -Your Lie in April - -A Silent Voice - -Wolf Children - -Your Name - -Spirited Away - -Your Name - -Chihayafuru - -Yuri on Ice - -Barakamon - -Silver Spoon - -Spice and Wolf - -I tried giving you different anime from different years just because -you never know unless you try them out";False;False;;;;1610379559;;False;{};giw3lx7;False;t3_kv48lj;False;True;t3_kv48lj;/r/anime/comments/kv48lj/im_dying_plz_help/giw3lx7/;1610427848;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Orsonius2;;;[];;;;text;t2_204y9owl;False;False;[];;"I stopped after the first season - -Reading your comment makes me not feel bad at all for giving up on it - -I thought season 1 was horrible (also ended poorly without any conclusion to anything and basically a filler episode)";False;True;;comment score below threshold;;1610379593;;False;{};giw3ot2;False;t3_kv3521;False;True;t1_givuh7i;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw3ot2/;1610427892;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;FragrantSandwich;;;[];;;;text;t2_3yuz2s7t;False;False;[];;Its not really generic. Its kind of the grandfather of isekai, and the originator of many of those tropes. It only just got an anime adaptation, but its a completed story and one of the best out there. Id highly recommend.;False;False;;;;1610379648;;False;{};giw3tuh;False;t3_kv3vgw;False;False;t1_giw1inn;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giw3tuh/;1610427963;37;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;I just rewatched it, nah;False;True;;comment score below threshold;;1610379701;;False;{};giw3ypl;False;t3_kv3vgw;False;True;t1_giw1096;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giw3ypl/;1610428047;-18;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;If only the poll was in China or Japan......;False;False;;;;1610379708;;False;{};giw3zbp;False;t3_kv3521;False;False;t1_giw0j1i;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw3zbp/;1610428057;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Maybe they aren't much interested in traditional shonen.;False;False;;;;1610379763;;False;{};giw4488;False;t3_kv3521;False;False;t1_giw14g4;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw4488/;1610428167;7;True;False;anime;t5_2qh22;;0;[]; -[];;;UDani11;;;[];;;;text;t2_3urk0qno;False;False;[];;I'm pretty sure the anitrendz.net site is more reliable in that sense since you can pick multiple.;False;False;;;;1610379968;;False;{};giw4meu;False;t3_kv3521;False;False;t1_givt5h0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw4meu/;1610428455;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Al-Pharazon;;;[];;;;text;t2_1s32gw1x;False;False;[];;It's definitely not generic IMO, although the description and the visual character design might have you think so the character development and the way it uses the tropes are not common in other Isekai;False;False;;;;1610379982;;False;{};giw4npd;False;t3_kv3vgw;False;False;t1_giw3d9i;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giw4npd/;1610428473;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Viewsfromrenni;;;[];;;;text;t2_179k8d;False;False;[];;Tower of god was in the top 5 in terms of Karma 2020. This poll doesn’t speak on everything;False;False;;;;1610380080;;False;{};giw4wbw;False;t3_kv3521;False;False;t1_givzoa1;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw4wbw/;1610428597;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Orsonius2;;;[];;;;text;t2_204y9owl;False;False;[];;"Nice explanation - -I think the aesthetics of the show are outstanding - -The PV alone was amazing. There is something incredibly cozy about it. - -Anime is a visual medium, one that focuses more on visuals than a lot of other motion picture types (like real life action). So asthetics matter. - -If I want a good story i can always just read a book but anime gives me the extra of drawn, animated visuals and well as sound design. Any anime that manages to excel in those while also achieves at least a watchable story is always a win in my book. - -I started reading the manga version a bit and honestly didn't like it. The manga art is not that great, the overall storyboard is poor and overall I think the manga is nowhere near the quality the anime presented and that can pretty much all placed on the visual prowess of the anime version. - -A competent story can be ruined by incompetent production (Berserk 2016) and a competent production can enhance a mediocre story to greatness";False;False;;;;1610380088;;False;{};giw4x37;False;t3_kv3vgw;False;False;t3_kv3vgw;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giw4x37/;1610428611;22;True;False;anime;t5_2qh22;;0;[]; -[];;;boiboiboi223;;;[];;;;text;t2_5wdzzobj;False;False;[];;Bro who the fuck still watches SAO?;False;False;;;;1610380133;;False;{};giw516y;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw516y/;1610428687;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;Anime Corner's top list really does feels like a r/anime top list, minus the placements.;False;False;;;;1610380203;;False;{};giw57l8;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw57l8/;1610428782;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Resident_Chemist_619;;;[];;;;text;t2_9993kzaf;False;False;[];;"You rewatching the episode doesn’t magically fix the episode. The effects animation tend to be highly textured for the action sequences, a lot of blur is added and when you take the fact that the backgrounds are also textures, there's a mix of too much on screen. Not to mention, the color designs is extremely unappealing and bland fo me. - -I’m 100% sure I’ve seen other people expressing their discontent on JJK’s compositing issues in r/animesakuga and Twitter’s Sakugabooru mods too.";False;False;;;;1610380209;;False;{};giw585i;False;t3_kv3vgw;False;False;t1_giw3ypl;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giw585i/;1610428790;19;True;False;anime;t5_2qh22;;0;[]; -[];;;mrv3;;;[];;;;text;t2_fe649;False;True;[];;"I finished it, it just deviates so much from common and basic storytelling necessities. - -It treats romance and the issues the characters face around it like a horror movie monster always kept out of the way or some edgy internal monologue. - -The show across it's 3 seasons does more to justify why the two girls should be together rather than anything else.";False;False;;;;1610380229;;False;{};giw59x7;False;t3_kv3521;False;True;t1_giw3ot2;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw59x7/;1610428814;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;I'm glad it did better in other polls. I have high hopes on it. Additionally I'd love to see other manhwas and webtoons getting an anime adaptation, hope this becomes a trend.;False;False;;;;1610380254;;False;{};giw5c8e;False;t3_kv3521;False;False;t1_giw4wbw;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw5c8e/;1610428847;3;True;False;anime;t5_2qh22;;0;[]; -[];;;I-ce-SCREAM;;;[];;;;text;t2_8r3t4wm8;False;False;[];;I second Great Pretender;False;False;;;;1610380300;;False;{};giw5g8r;False;t3_kv3521;False;True;t1_givsko1;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw5g8r/;1610428905;3;True;False;anime;t5_2qh22;;0;[]; -[];;;revmun;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/revmun;light;text;t2_vfv3k;False;False;[];;I thought Tower of God would've been good enough to crack top 10;False;False;;;;1610380302;;False;{};giw5ghc;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw5ghc/;1610428908;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Orsonius2;;;[];;;;text;t2_204y9owl;False;False;[];;"given it came out after its clones, to those who only know the anime adaptations of its clones it might come off as generic, which is ironic - -That is like being the person who invented Techno music, and 30 years later people who listen to whatever modern techno exist check you out and think ""hmm sounds kinda lame and generic"" even though your music literally paved the way for all those who came after.";False;False;;;;1610380318;;False;{};giw5hsi;False;t3_kv3vgw;False;False;t1_giw3tuh;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giw5hsi/;1610428927;34;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;It was some King shit right there ngl;False;False;;;;1610380354;;False;{};giw5l84;False;t3_kv3521;False;True;t1_givq5qy;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw5l84/;1610428979;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"I hate line art being intentionally blurred it feels out of place for me whenever a anime decides to use - -The grain on the other hand is subjective, I did not notice it all first time around only really *saw* It when you pointed that out but now it feels eerie for some reason or the other; can't truly make out why";False;False;;;;1610380355;;False;{};giw5la6;False;t3_kv3vgw;False;False;t3_kv3vgw;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giw5la6/;1610428980;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Time-Caterpillar621;;;[];;;;text;t2_9ovgsuxq;False;False;[];;">underrated anime like Kakushigoto, Toilet-Bound Hanako-Kun - -Hanako is very popular with female audiences that isn't represented a lot on reddit.";False;False;;;;1610380366;;False;{};giw5mbv;False;t3_kv3521;False;False;t1_givzv0k;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw5mbv/;1610428995;260;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"This is the exact statement I'm looking for. - -For people nowadays, if their favorites aren't in the list, they would disregard some charts and lists as ""popularity contest"" to cope and deny the facts presented to them.";False;False;;;;1610380423;;False;{};giw5rn9;False;t3_kv3521;False;False;t1_givvghj;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw5rn9/;1610429075;5;True;False;anime;t5_2qh22;;0;[]; -[];;;GabeThyGodly;;;[];;;;text;t2_146tki9w;False;False;[];;Holy shit misfit demonking actually made it top 10? I liked it and read manga before it came out but its garbage lmao;False;False;;;;1610380605;;False;{};giw681f;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw681f/;1610429334;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"Yoooo, I made that list, and believe me, it's still crazy and surprising till now when I found out myself about the number of favorites she acquired. It was bound that her numbers she got will come to light sooner. - -Right now, [the number of favorites she got keep on rising](https://myanimelist.net/character/169181/Mami_Nanami) and so is her overall placement in the [most favorited characters of all time](https://myanimelist.net/character.php?limit=150).";False;False;;;;1610380645;;1610382735.0;{};giw6bmt;False;t3_kv3521;False;False;t1_givyx5m;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw6bmt/;1610429388;3;True;False;anime;t5_2qh22;;0;[]; -[];;;notbob-;;;[];;;;text;t2_a897t;False;False;[];;"I have a far-fetched theory. This deserves an entire post of its own, but the general trend of anime production has been to release shows in higher and higher resolution over time. That might seem like a stupid thing to say since every single anime has been available in 1080p since about 2011, but it's pretty well-known at this point that most anime are produced at a certain ""native resolution"" and then blown up to 1080p. For example, Deca-Dence was produced at 720p. - -""Native resolutions"" have been getting higher and higher as production techniques get more sophisticated. But you can often see the strain this puts on the studio. Native 1080p anime often has distracting artifacts like aliasing and other types of iffy lineart. (JC Staff was the worst offender of this, not sure if they still are.) Shrinking the production down to a lower resolution can basically smooth those artifacts out. - -But viewers want crisper images (witness the popularity of waifu2x and anime4K!), and studios keep pushing the envelope in that regard. A few studios have been trying different ""cheats"" to make that happen. A-1 has used a sharpening filter/upscaler, most notably in SAO: Alicization, to give the impression of a sharp 1080p image. In my opinion, it looks ugly as hell, but whatever. I think Cloverworks is doing the same thing with Horimiya, though that looks a lot better. - -You could see Megalo Box and Mushoku Tensei as a ""return to monke"" form of dealing with this problem. Straight-up blurring the lineart is obviously going to smooth out many production artifacts/deficiencies. The retro aesthetic might be an excuse to do just that.";False;False;;;;1610380679;;1610381321.0;{};giw6ern;True;t3_kv3vgw;False;False;t1_giw0f8w;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giw6ern/;1610429437;56;True;False;anime;t5_2qh22;;0;[]; -[];;;MishkaKoala;;MAL;[];;https://myanimelist.net/animelist/MishkaKoala;dark;text;t2_5zr43;False;False;[];;Thanks for proving my point.;False;False;;;;1610380697;;False;{};giw6gin;False;t3_kv3521;False;False;t1_giw3jze;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw6gin/;1610429462;182;True;False;anime;t5_2qh22;;0;[]; -[];;;Orsonius2;;;[];;;;text;t2_204y9owl;False;False;[];;First season also barely had romance. I didnt mind edgy MC complaining about everyone, but it got old quick and the other characters werent that appealing.;False;False;;;;1610380746;;False;{};giw6l1h;False;t3_kv3521;False;True;t1_giw59x7;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw6l1h/;1610429524;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;Kaguya S2, Re:Zero S2, and Akudama Drive, called out as mediocre? On this sub? *gasp*;False;False;;;;1610380760;;False;{};giw6m8x;False;t3_kv3521;False;False;t1_givsg76;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw6m8x/;1610429541;65;True;False;anime;t5_2qh22;;0;[]; -[];;;SatsumaComic;;;[];;;;text;t2_11m5mk;False;False;[];;Lol one of the worst are included;False;False;;;;1610380799;;False;{};giw6pvy;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw6pvy/;1610429593;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KingShrep;;;[];;;;text;t2_8hvpemjc;False;False;[];;yah no.;False;False;;;;1610380833;;False;{};giw6t4w;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw6t4w/;1610429638;1;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;That's fair. But you'd think that if Hanako-Kun placed so high, other anime that would be popular with a female audience such as Fruits Basket and Moriarty would also place higher.;False;False;;;;1610380843;;False;{};giw6u2q;False;t3_kv3521;False;False;t1_giw5mbv;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw6u2q/;1610429650;115;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;"Kaguya might be the only one I feel really deserves its' spot. - -I didn't watch ReZero season 2 or Akudama Drive but I don't think Hanako, Kakushigoto, Demon King Academy, SAO, Oregairu S3, or Rent a Girlfriend deserve to be top 10 material for most years.";False;True;;comment score below threshold;;1610380926;;False;{};giw71hv;False;t3_kv3521;False;True;t1_giw6m8x;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw71hv/;1610429760;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;Danilieri;;;[];;;;text;t2_14efkm;False;False;[];;Is toilet boudn hanako any good? The style looks promising butnI think it seemed a little to childish? Dont know how to describe it. More like immature maybe? Any fan here mind explaining what makes it worth it?;False;False;;;;1610381228;;False;{};giw7sq4;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw7sq4/;1610430169;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Deshuro;;;[];;;;text;t2_j8xcz;False;False;[];;Didn't it only beat Re0 2 times during 12 weeks though?;False;False;;;;1610381367;;False;{};giw85f5;False;t3_kv3521;False;False;t1_givue24;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw85f5/;1610430356;6;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;"MAL Favorites > Merch Sales";False;False;;;;1610381469;;False;{};giw8en6;False;t3_kv3521;False;False;t1_giw1d8w;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw8en6/;1610430497;12;True;False;anime;t5_2qh22;;0;[]; -[];;;CerbereNot;;;[];;;;text;t2_jdv2s;False;False;[];;that's because romance and isekai are giga overrated. 99% of them are garbage;False;False;;;;1610381472;;False;{};giw8evo;False;t3_kv3521;False;True;t1_givsko1;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw8evo/;1610430500;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Karen_kaslana;;;[];;;;text;t2_3n10bo31;False;False;[];;Id invaded being even higher is laughable;False;False;;;;1610381513;;False;{};giw8ikh;False;t3_kv3521;False;False;t1_givso59;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw8ikh/;1610430559;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;wodime;;;[];;;;text;t2_6mnjfeny;False;False;[];;"Jjk didn't make it on the list so i checked there page most of community there hate battle shounen in general although list contains cliches in weekly rankings -Waifu baits usually boost an anime popularity on this page.i will not be surprised if mushoku tensei and horimiya will beat Aot lol well nice to see this list";False;False;;;;1610381533;;False;{};giw8khy;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw8khy/;1610430589;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Thehelloman0;;;[];;;;text;t2_f3cdt;False;False;[];;I watched the first three episodes and dropped it. I didn't think anything about it stood out in a good way. I will say that the ridiculous plotline of a drug lord being duped into buying obviously fake drugs because of one woman trying it and jumping around like an idiot really made me not want to watch it.;False;False;;;;1610381556;;False;{};giw8mjv;False;t3_kv3521;False;True;t1_givv3bm;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw8mjv/;1610430623;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"Interestingly, in the r/anime's top 2020 anime list, Demon King Academy, Oregairu S3, and SAO Alicization: WoU Pt. 2 also happened to be in the top 10. - -The biggest difference between here and Anime Corner's list is their lack of webtoons adaptations in AC's list. And it's also surprisingly that AC's list, it didn't have Haikyuu: To The Top, Jujutsu Kaisen, and Tonikaku: Over the Moon for You.";False;False;;;;1610381752;;False;{};giw948k;False;t3_kv3521;False;False;t1_giw71hv;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw948k/;1610430886;7;True;False;anime;t5_2qh22;;0;[]; -[];;;wodime;;;[];;;;text;t2_6mnjfeny;False;False;[];;Demon king was good but seriously it doesn't deserve top 10 spot try id invaded;False;False;;;;1610381762;;False;{};giw957w;False;t3_kv3521;False;True;t1_giw39tm;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw957w/;1610430899;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;ID:INVADED earned that spot;False;False;;;;1610381892;;False;{};giw9h9j;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw9h9j/;1610431081;7;True;False;anime;t5_2qh22;;0;[]; -[];;;greyl;;;[];;;;text;t2_a3erg;False;False;[];;I think because it came out on Netflix all at once you don't get the weekly discussion threads so it fades from people's minds. I binged through it all in a day or two and enjoyed it, then it sort of slipped from my mind.;False;False;;;;1610381963;;False;{};giw9o13;False;t3_kv3521;False;False;t1_givr7u2;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw9o13/;1610431179;6;True;False;anime;t5_2qh22;;0;[]; -[];;;TheSoaringDingo;;;[];;;;text;t2_2yc2u07x;False;False;[];;Is rent a girlfriend good?;False;False;;;;1610381965;;False;{};giw9o7w;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giw9o7w/;1610431181;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;I wonder what is Haikyuu To The Top's ranking, because it's also very surprising it didn't made it.;False;False;;;;1610382126;;False;{};giwa38a;False;t3_kv3521;False;False;t1_givz04r;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwa38a/;1610431407;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;Ah yes, if I recall, the episodes that RAG beat Re:Zero in the chart were ep. 8 (the stalker episode) and ep. 11 (Sumi episode).;False;False;;;;1610382175;;False;{};giwa7up;False;t3_kv3521;False;False;t1_giw85f5;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwa7up/;1610431471;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Memo_HS2022;;;[];;;;text;t2_8ddu0lgb;False;False;[];;The fact that SAO beat Jujutsu Kaisen and Fruit Basket says a lot about society;False;False;;;;1610382180;;False;{};giwa8aa;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwa8aa/;1610431477;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;Haikyuu finished 12th. I'll link the full list in my above comment.;False;False;;;;1610382221;;False;{};giwac47;False;t3_kv3521;False;False;t1_giwa38a;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwac47/;1610431532;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;Hmmm, I think I should join in and vote in this poll soon too.;False;False;;;;1610382227;;False;{};giwaclq;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwaclq/;1610431539;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CerbereNot;;;[];;;;text;t2_jdv2s;False;False;[];;every year we're reminded how atrocious anime fans tastes are, franXXX sealed the deal for me, and I was reminded once again this year with rental girlfriend. I prefer not remembering previous years lmao;False;False;;;;1610382318;;1610382531.0;{};giwal3q;False;t3_kv3521;False;False;t1_giw3ehw;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwal3q/;1610431667;27;True;False;anime;t5_2qh22;;0;[]; -[];;;carchi;;MAL;[];;http://myanimelist.net/profile/Carchi;dark;text;t2_8vlve;False;False;[];;It's the anime corner's list. I don't know what it is exactly but their taste are... interesting.;False;False;;;;1610382360;;1610396499.0;{};giwap50;False;t3_kv3521;False;False;t1_givsg76;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwap50/;1610431734;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ori-os;;;[];;;;text;t2_qg1hn;False;False;[];;Yeah, too bad it was stuck in Netflix jail but hopefully it should gain popularity like the other Netflix anime;False;False;;;;1610382772;;False;{};giwbr4a;False;t3_kv3521;False;True;t1_givv3bm;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwbr4a/;1610432377;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ya;False;False;;;;1610382789;;False;{};giwbsp1;False;t3_kv3521;False;True;t1_giwbr4a;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwbsp1/;1610432399;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;Oh great that id invaded got it there, hope season 2 might come;False;False;;;;1610382911;;False;{};giwc4b0;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwc4b0/;1610432600;7;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;The Rent-a-Girlfriend second season announcement is the 15th most upvoted post in the history of r/anime. It's not exactly unpopular here.;False;False;;;;1610382999;;False;{};giwccav;False;t3_kv3521;False;False;t1_givscbn;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwccav/;1610432758;293;True;False;anime;t5_2qh22;;0;[]; -[];;;Esaeah;;;[];;;;text;t2_272vn60s;False;False;[];;Furuba was the best thing of 2020 and I'm a combat shonen fan. People need to give it a chance;False;False;;;;1610383018;;False;{};giwce1h;False;t3_kv3521;False;True;t1_givzfs3;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwce1h/;1610432788;1;True;False;anime;t5_2qh22;;0;[]; -[];;;normiesEXPLODE;;;[];;;;text;t2_17bsjz;False;False;[];;"Emulating those effects might make the job easier for the studio but the look of an older anime also really fits this old story that is being adapted after so long. - -It visually stands out from other isekai adaptions by looking like an older anime.";False;False;;;;1610383026;;False;{};giwceqq;False;t3_kv3vgw;False;False;t1_giw6ern;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giwceqq/;1610432800;35;True;False;anime;t5_2qh22;;0;[]; -[];;;ori-os;;;[];;;;text;t2_qg1hn;False;False;[];;It's not surprising considering it's the third season to a show that came out in 2009. It also suffers from the recommended watch order which recommends Index which is a extremely mediocre show;False;False;;;;1610383028;;False;{};giwceyz;False;t3_kv3521;False;True;t1_giw0j1i;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwceyz/;1610432805;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chandr;;;[];;;;text;t2_9ucfo;False;False;[];;They're both good shows. Not much point comparing two entirely different genres;False;False;;;;1610383044;;False;{};giwcgeq;False;t3_kv3521;False;False;t1_giw3jze;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwcgeq/;1610432831;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Yumi2Z;;;[];;;;text;t2_2tibmpqf;False;False;[];;I feel like Anime Corner rankings never make any sense and are always surprising. Wouldn't put too much weight on it..;False;False;;;;1610383060;;False;{};giwci3n;False;t3_kv3521;False;False;t1_giw2kyh;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwci3n/;1610432855;29;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610383129;;False;{};giwcocd;False;t3_kv3521;False;True;t1_giw948k;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwcocd/;1610432952;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Broooo, nooooo, the first 5 épisodes is where the first arc completes and the arc is so satisfying. You literally dropped it 2 épisodes before the pay off. During the first 3 episodes it's building up.;False;False;;;;1610383144;;False;{};giwcppb;False;t3_kv3521;False;True;t1_giw8mjv;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwcppb/;1610432972;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mustache-Man227;;;[];;;;text;t2_1rgczsd9;False;False;[];;Dude decadence and smile down the runway had to have at least been top 20 there is no way;False;False;;;;1610383153;;False;{};giwcqip;False;t3_kv3521;False;False;t1_givzv0k;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwcqip/;1610432987;54;True;False;anime;t5_2qh22;;0;[]; -[];;;Charming-Loquat3702;;;[];;;;text;t2_693xqw5a;False;False;[];;I didn't know that Kakushigoto is that popular. I liked it but I never thought it was something special only slightly worse than Kaguya-Sama S2. For me it's a 8/10 show;False;False;;;;1610383182;;False;{};giwct9q;False;t3_kv3521;False;False;t1_givzv0k;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwct9q/;1610433034;23;True;False;anime;t5_2qh22;;0;[]; -[];;;KarmaOAkabane;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;anilist.co/user/KarmaOAkabane;light;text;t2_8ajupisc;False;False;[];;">I'm glad Misfit of the Demon King Academy got attention, though. It's severely underrated, and misunderstood - -im too am glad it made the list, thought it would get overshadowed by GOH like always, and tbh GOH deserved that spot";False;False;;;;1610383238;;False;{};giwcymv;False;t3_kv3521;False;False;t1_givug1h;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwcymv/;1610433118;5;True;False;anime;t5_2qh22;;0;[]; -[];;;csdbcjkahsd;;;[];;;;text;t2_6o5ig4yp;False;False;[];;STOP ENJOYING THINGS!!!1!1!!1;False;False;;;;1610383324;;False;{};giwd6x2;False;t3_kv3521;False;False;t1_giwal3q;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwd6x2/;1610433259;17;True;False;anime;t5_2qh22;;0;[]; -[];;;CerbereNot;;;[];;;;text;t2_jdv2s;False;False;[];;not stopping you from enjoying you're free to do so, just as I am free to think one is shit :);False;False;;;;1610383422;;False;{};giwdg34;False;t3_kv3521;False;False;t1_giwd6x2;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwdg34/;1610433424;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;The only reason you think it's generic is because it came up with all the tropes that every isekai after it copied.;False;False;;;;1610383651;;False;{};giwe15m;False;t3_kv3vgw;False;False;t1_giw3d9i;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giwe15m/;1610433745;13;True;False;anime;t5_2qh22;;0;[]; -[];;;joshyjoshj;;;[];;;;text;t2_3ulasaal;False;False;[];;This rank is as good as GOTY award. Literally pointless;False;False;;;;1610383687;;False;{};giwe4qz;False;t3_kv3521;False;False;t1_givznm3;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwe4qz/;1610433793;60;True;False;anime;t5_2qh22;;0;[]; -[];;;daft_tyspehirson;;;[];;;;text;t2_4awiope7;False;False;[];;I'm genuinely curious as to why Haikyuu isn't higher. It's not that I'm a fan of it, but after the third season you'd think the series would be really hyped, right?;False;False;;;;1610383833;;False;{};giweim9;False;t3_kv3521;False;True;t1_giw948k;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giweim9/;1610433994;1;True;False;anime;t5_2qh22;;0;[]; -[];;;z3onn;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://www.imdb.com/list/ls093600574/;dark;text;t2_10aeas;False;True;[];;"I would most definitely call Akudama Drive mediocre even if that's sacrilege on this sub. - -Its characters have depth of a puddle. The story is filled with tired sci-fi tropes and the script feels like it tries to explore a ton of topics, but in doing so becomes directionless. In 12 episodes they tried to do a suicide squad heist movie, revolution under oppression, exploration of ""staining"" people with a label, and exploration of eternal life through AI (among other things). In all of those, they only scraped the surface. - -It does have a fun world, good action, and good pacing so it never gets boring. Overall for me, it's a 6.5/10 show that I still enjoyed.";False;False;;;;1610384057;;1610386458.0;{};giwf3no;False;t3_kv3521;False;False;t1_giw6m8x;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwf3no/;1610434288;37;True;False;anime;t5_2qh22;;0;[]; -[];;;Dull-Repair-9639;;;[];;;;text;t2_6895tncn;False;False;[];;All agree except for sixth place;False;False;;;;1610384169;;False;{};giwfe4y;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwfe4y/;1610434434;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ShinaMashir0;;;[];;;;text;t2_rhsd8;False;False;[];;"I think people don't understand the nuance between liking something and thinking something is actually good. - -In this case we are talking about ""best anime of the year"" so it's about objectively the best anime of the year and not the anime you liked more. - -""Elitist"" don't blame casual for liking something, they blame them when they say "" X thing is the best"" when it's clearly not";False;False;;;;1610384411;;False;{};giwg0qy;False;t3_kv3521;False;True;t1_giwdg34;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwg0qy/;1610434765;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Deshuro;;;[];;;;text;t2_j8xcz;False;False;[];;"Just checked again. The ones it beat ReZero were week 10 and 12, which were ep 9 (the one after the stalker episode) and 11 (Sumi). - -The winner of each week in Summer 2020 on their site were: - -1. ReZero - -2. Oregairu - -3. SAO - -4. ReZero - -5. Millionare Detective - -6. ReZero - -7. SAO - -8. ReZero - -9. ReZero - -10. Rent a girlfriend - -11. ReZero - -12. Rent a girlfriend - -There was no ranking for week 13. [The winner of the season](https://old.reddit.com/r/anime/comments/j3tzbg/top_10_anime_of_the_season_summer_2020_anime/) was ReZero.";False;False;;;;1610384452;;1610385331.0;{};giwg4at;False;t3_kv3521;False;False;t1_giwa7up;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwg4at/;1610434819;10;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;"I'm not too surprised about Smile Down the Runway since while it was one of my favorites from Winter, it didn't get much traction from [others](https://i.redd.it/9v9e4vgrclr41.png). If you're looking for it, it's not listed on the Karma Rankings or Poll Ratings. - -I am quite surprised about Deca-Dence though since it's anime original breathren, Akudama Drive (5th), ID:Invaded (6th) and Great Pretender (11th) all placed near the top, and Deca-Dence was on par with them.";False;False;;;;1610384459;;False;{};giwg53a;False;t3_kv3521;False;False;t1_giwcqip;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwg53a/;1610434829;37;True;False;anime;t5_2qh22;;0;[]; -[];;;Saleenseven;;MAL;[];;https://myanimelist.net/animelist/Saleenseven;dark;text;t2_9jdyo;False;False;[];;shows you the normie taste of facebook teens (which is where this list comes from);False;True;;comment score below threshold;;1610384653;;False;{};giwgne2;False;t3_kv3521;False;True;t1_giw1yxk;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwgne2/;1610435086;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;hydraxiv;;;[];;;;text;t2_5wvchq00;False;False;[];;Damn. Anos Voldigoad only in 8th? Shame.;False;False;;;;1610384811;;False;{};giwh226;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwh226/;1610435286;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Oh that explains a lot 😳;False;False;;;;1610384895;;False;{};giwh9s9;False;t3_kv3521;False;True;t1_giwgne2;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwh9s9/;1610435400;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;hydraxiv;;;[];;;;text;t2_5wvchq00;False;False;[];;The OP was a banger too;False;False;;;;1610384901;;False;{};giwhac0;False;t3_kv3521;False;True;t1_givr7u2;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwhac0/;1610435408;3;True;False;anime;t5_2qh22;;0;[]; -[];;;blowin_smok420;;;[];;;;text;t2_2y676267;False;False;[];;LMAO🤣🤣🤣 WHAT A JOKE!;False;False;;;;1610384933;;False;{};giwhdc9;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwhdc9/;1610435454;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610384948;;1610385160.0;{};giwherx;False;t3_kv3521;False;True;t1_giwg0qy;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwherx/;1610435473;0;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;Damn God of Highschool got trashed hard lol. I would pick Noblesse over God of Highschool all day despite the weak adaptation. Atleast it was more bearable than that atrocious mess.;False;False;;;;1610385039;;False;{};giwhngk;False;t3_kv3521;False;False;t1_givzv0k;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwhngk/;1610435610;15;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610385044;;False;{};giwho05;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwho05/;1610435617;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_ItsMeVince;;;[];;;;text;t2_5e9m1c94;False;False;[];;No eizouken? Seriously?;False;False;;;;1610385122;;False;{};giwhvgl;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwhvgl/;1610435720;8;True;False;anime;t5_2qh22;;0;[]; -[];;;_ItsMeVince;;;[];;;;text;t2_5e9m1c94;False;False;[];;Alicization was actually not that bad, but still not worthy of a top 10 for me;False;False;;;;1610385259;;False;{};giwi8la;False;t3_kv3521;False;False;t1_giw516y;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwi8la/;1610435900;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Cire101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cire101;light;text;t2_oryv2;False;False;[];;"Stop disregarding shows if they seem generic. Doesn't mean they can't be fun. - -Demon Slayer is one of the most generic battle shonens out there and look at how much people like it.";False;False;;;;1610385261;;False;{};giwi8qr;False;t3_kv3vgw;False;False;t1_giw1inn;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giwi8qr/;1610435901;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Arrowstormen;;MAL;[];;https://myanimelist.net/animelist/Arrowstormen;dark;text;t2_dwuve;False;False;[];;I don't think I have rated anything I've watched that aired last year higher than 8.5.;False;False;;;;1610385301;;False;{};giwicik;False;t3_kv3521;False;False;t1_giwct9q;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwicik/;1610435953;4;True;False;anime;t5_2qh22;;0;[]; -[];;;International_Oil368;;;[];;;;text;t2_7bdqj628;False;False;[];;I mean the irregular at magic high school is not there. So i am a bit sad.;False;False;;;;1610385354;;False;{};giwihjc;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwihjc/;1610436021;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SkepticDrinker;;;[];;;;text;t2_8upmc4sd;False;False;[];;Trash;False;False;;;;1610385366;;False;{};giwiiq1;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwiiq1/;1610436036;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Teglement;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Teglement;light;text;t2_43974;False;False;[];;RAG was good, fight me.;False;False;;;;1610385368;;False;{};giwiivd;False;t3_kv3521;False;False;t1_givscbn;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwiivd/;1610436038;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Arrowstormen;;MAL;[];;https://myanimelist.net/animelist/Arrowstormen;dark;text;t2_dwuve;False;False;[];;Can't comment too much on ID since I dropped it after an episode, but I've watched the rest and I think Deca-dence is a step below the two others.;False;False;;;;1610385394;;False;{};giwildp;False;t3_kv3521;False;True;t1_giwg53a;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwildp/;1610436072;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;FrogletTheGreen;;;[];;;;text;t2_7jcjj3mr;False;False;[];;Misfit better than Tower of God!?;False;False;;;;1610385431;;False;{};giwiow0;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwiow0/;1610436122;0;True;False;anime;t5_2qh22;;0;[]; -[];;;csdbcjkahsd;;;[];;;;text;t2_6o5ig4yp;False;False;[];;thats what the show was meant to be about...;False;False;;;;1610385579;;False;{};giwj2s1;False;t3_kv3521;False;True;t1_giw1yxk;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwj2s1/;1610436323;1;True;False;anime;t5_2qh22;;0;[]; -[];;;THE_REAL_RAKIM;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/midoriya04;light;text;t2_2t8d53up;False;False;[];;"I really like Runway's manga so glad to know that it got a good adaptation. ->Deca-Dence was on par with them - -I disagree. Great Pretender and Akudama Drive had something special that Deca-Dence lacked for me. It did have good episodes but as a complete story I preferred others. I can't quite place my finger on what it was but it seemed as though I had seen a story with similar tones to Deca-Dence albeit in a different medium. I haven't seen ID:Invaded yet so can't really say anything on that.";False;False;;;;1610385594;;False;{};giwj494;False;t3_kv3521;False;False;t1_giwg53a;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwj494/;1610436346;17;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;"Would I recommend it to someone as a high quality anime? No - -Would I recommend it to someone as a highly entertaining anime? Yes";False;False;;;;1610385595;;False;{};giwj4ff;False;t3_kv3521;False;False;t1_giwiivd;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwj4ff/;1610436348;42;True;False;anime;t5_2qh22;;0;[]; -[];;;Inferno792;;MAL;[];;https://myanimelist.net/profile/Inferno792;dark;text;t2_148vlb;False;False;[];;It's actually not that popular. There are so many questionable entries in the top 10 while a lot of top 5 popular anime of the year on Reddit are not even in the top 10 here.;False;False;;;;1610385627;;False;{};giwj7ki;False;t3_kv3521;False;True;t1_giwct9q;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwj7ki/;1610436398;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;Popularity not equal Quality, but yeah that was really unexpected;False;False;;;;1610385646;;False;{};giwj97b;False;t3_kv3521;False;True;t1_givzfr6;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwj97b/;1610436422;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ya, but that's literally the most generic shit something can do, with a average story;False;False;;;;1610385658;;False;{};giwjaeg;False;t3_kv3521;False;False;t1_giwj2s1;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwjaeg/;1610436441;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Blurrrietto;;;[];;;;text;t2_15uno2ju;False;False;[];;I guess only gonzo's merciful towards turkey.;False;False;;;;1610385733;;False;{};giwjhfl;False;t3_kv4qrn;False;True;t3_kv4qrn;/r/anime/comments/kv4qrn/youtube_anime_titles_available_in_bangladesh/giwjhfl/;1610436539;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Inferno792;;MAL;[];;https://myanimelist.net/profile/Inferno792;dark;text;t2_148vlb;False;False;[];;This list is garbage.;False;False;;;;1610385793;;False;{};giwjn3z;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwjn3z/;1610436644;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Teglement;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Teglement;light;text;t2_43974;False;False;[];;"imo, highly entertaining is the only metric that makes an anime good. - -I mean, what's the point of entertainment if it's not...Entertaining?";False;False;;;;1610385875;;False;{};giwjuxp;False;t3_kv3521;False;False;t1_giwj4ff;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwjuxp/;1610436784;42;True;False;anime;t5_2qh22;;0;[]; -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;Popularity not equal Quality, it was hyped but it wasn't liked by a lot of people, even I was surprised tbh;False;False;;;;1610385937;;False;{};giwk0wf;False;t3_kv3521;False;True;t1_giweim9;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwk0wf/;1610436875;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Charming-Loquat3702;;;[];;;;text;t2_693xqw5a;False;False;[];;"Kaguya S2 and Eizoken are 9 for me. Jujutsu Kaisen is still airing, that makes it hard to score, but there where at least arcs that I would rate 9. The whole thing is probably closer to 8 though. -But yeah, the rest that I watched and didn't drop is somewhere between 6 (Yashahime) and 8.";False;False;;;;1610385960;;False;{};giwk2zo;False;t3_kv3521;False;False;t1_giwicik;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwk2zo/;1610436903;16;True;False;anime;t5_2qh22;;0;[]; -[];;;GiantR;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/giantr;light;text;t2_5szp4;False;False;[];;"FranXX was great.... for the first 13 episodes or so. - -So i dont think it was bad taste that made prople like it. - -It was just that the end was horrible.";False;False;;;;1610386070;;False;{};giwkdmf;False;t3_kv3521;False;False;t1_giwal3q;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwkdmf/;1610437061;12;True;False;anime;t5_2qh22;;0;[]; -[];;;R4ilTr4cer;;;[];;;;text;t2_l6aax;False;False;[];;"These always are either a popularity vote or some group bias list. I always take them as a ""good stuff pile"" and no really in stric order";False;False;;;;1610386138;;False;{};giwkk3i;False;t3_kv3521;False;False;t1_givt5h0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwkk3i/;1610437150;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Charming-Loquat3702;;;[];;;;text;t2_693xqw5a;False;False;[];;Well, reddit is biased towards young and Male people. The source of that picture is probably biased in some way as well, though. I don't think there is a single unbiased place in the internet (not just concerning Anime, but in general);False;False;;;;1610386146;;False;{};giwkkqq;False;t3_kv3521;False;False;t1_giwj7ki;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwkkqq/;1610437159;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610386199;;False;{};giwkpeh;False;t3_kv3521;False;True;t1_givukhb;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwkpeh/;1610437229;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iForgotMyOldAcc;;MAL;[];;https://myanimelist.net/profile/wittisy;dark;text;t2_jof9q;False;False;[];;8 episodes in and I feel the same way. I'm still going on because I was promised a banger of an ending. It really feels like once you heard one line of dialogue from each character, you can write the rest of their dialogues. They're really flat.;False;False;;;;1610386231;;False;{};giwks4j;False;t3_kv3521;False;False;t1_giwf3no;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwks4j/;1610437267;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Youkalicious;;;[];;;;text;t2_47i3c2c8;False;False;[];;">Great Pretender: 11th Place - -Damn, to think it was so close 😔";False;False;;;;1610386236;;False;{};giwksgo;False;t3_kv3521;False;False;t1_givz04r;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwksgo/;1610437271;0;True;False;anime;t5_2qh22;;0;[]; -[];;;mimdahey;;;[];;;;text;t2_8ar8dwwp;False;False;[];;How much do u want to cringe?;False;False;;;;1610386242;;False;{};giwkszm;False;t3_kv3521;False;False;t1_giw9o7w;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwkszm/;1610437279;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Inferno792;;MAL;[];;https://myanimelist.net/profile/Inferno792;dark;text;t2_148vlb;False;False;[];;"I think the people who vote there are similar because it's a new site and not long ago, it used to have around 3-4k votes. They started posting the weekly charts here. - -People who care about these ratings are the same people who're here and on MAL.";False;False;;;;1610386249;;False;{};giwktgt;False;t3_kv3521;False;True;t1_giwkkqq;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwktgt/;1610437286;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mimdahey;;;[];;;;text;t2_8ar8dwwp;False;False;[];;Ah shit here we go again;False;False;;;;1610386282;;False;{};giwkw49;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwkw49/;1610437327;2;True;False;anime;t5_2qh22;;0;[]; -[];;;matches991;;;[];;;;text;t2_i3pp9;False;False;[];;It's odd to me to see SAO especially this year's SOA on a best list. I think the premise was fine but then the ending to split one happened and while I didn't mind the focus on side characters in split two but it's still clear the only major personality trait in all the characters is they love Kirito. It just feels so one dimensional to me.;False;False;;;;1610386450;;False;{};giwl9hb;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwl9hb/;1610437536;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"In SAO: Alicization - War of Underworld P2's case, it doesn't surprise me tho since it also had its place in the top ten in this sub's 2020 top list. - -Now in my case, I do like and enjoyed WoU P2 even if it's a step down from Alicization and WoU P1, but what does surprise me is the percentage of people that actually favoriting SAO: WoU P2 and was even high enough to even made it in that particular top 10 list. That was actually unexpected and at the same time, guess I ain't alone in liking that season after all.";False;False;;;;1610386530;;1610393935.0;{};giwlfnd;False;t3_kv3521;False;False;t1_givzv0k;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwlfnd/;1610437629;20;True;False;anime;t5_2qh22;;0;[]; -[];;;z3onn;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://www.imdb.com/list/ls093600574/;dark;text;t2_10aeas;False;True;[];;I feel that the last episode was really well-executed, but if you don't care much about the characters like I didn't at that point, then the finale probably won't leave too much of an impact on you.;False;False;;;;1610386584;;1610388647.0;{};giwljxl;False;t3_kv3521;False;False;t1_giwks4j;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwljxl/;1610437693;8;True;False;anime;t5_2qh22;;0;[]; -[];;;elissass;;;[];;;;text;t2_4p4dtw65;False;False;[];;wait, does SAO final season mean final season for the whole SAO or just Alice?;False;False;;;;1610386662;;False;{};giwlqbc;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwlqbc/;1610437795;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Killerslug;;;[];;;;text;t2_79w77;False;False;[];;Because it was incredibly hard to watch, the cgi was so jarring and on top of that I was 3 episodes in and had literally no idea as to what the fuck was going on. Like who are all these characters, why is the guy turning people into mushrooms? What is the deal with the doors, why should I care about any of this? Overall it was the hardest show to get into this year for me and I didn't recommend it to anyone who wasn't in love with CG.;False;False;;;;1610386706;;False;{};giwltwq;False;t3_kv3521;False;True;t1_givr7u2;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwltwq/;1610437873;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;dastrykerblade;;;[];;;;text;t2_if3ui;False;False;[];;I see what you’re saying but there is no objectivity in art and anime is an art form. It’s purely subjective. The parameters for which you think what deserves to be the best and what I do may be completely different but you can’t say one is right and the other is wrong.;False;False;;;;1610386729;;False;{};giwlvrn;False;t3_kv3521;False;False;t1_giwg0qy;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwlvrn/;1610437903;9;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"Glad akudama drive is in the top 5! - -However, I'm surprised with his list. Seems like their overall taste is romantic dramas, harems, and isekai.";False;False;;;;1610386949;;False;{};giwmdez;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwmdez/;1610438199;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TroyElric;;;[];;;;text;t2_2zusjlry;False;False;[];;Call 911;False;False;;;;1610387154;;False;{};giwmto6;False;t3_kv48lj;False;True;t3_kv48lj;/r/anime/comments/kv48lj/im_dying_plz_help/giwmto6/;1610438445;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aohige_rd;;;[];;;;text;t2_ttrmj;False;False;[];;"Did you not watch Eizouken or did you not like it? - -Hands down the best anime of 2020 for me.";False;False;;;;1610387166;;False;{};giwmukm;False;t3_kv3521;False;False;t1_givvk9l;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwmukm/;1610438457;9;True;False;anime;t5_2qh22;;0;[]; -[];;;NixUoatan;;;[];;;;text;t2_5fgw07j0;False;False;[];;Lmao, guy got played.;False;False;;;;1610387290;;False;{};giwn4lw;False;t3_kv3521;False;False;t1_giw6gin;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwn4lw/;1610438629;44;True;False;anime;t5_2qh22;;0;[];True -[];;;ltrusmad;;;[];;;;text;t2_5dfw6rk8;False;False;[];;I think kinda like JJK it’s an anime that people liked but wasn’t necessarily their favorites of the year, even though if people listed their like top 5 of the year I’m sure it would of places higher. I personally voted decadance, but I would of put ToG in my top 5;False;False;;;;1610387330;;False;{};giwn7u1;False;t3_kv3521;False;False;t1_givzoa1;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwn7u1/;1610438677;4;True;False;anime;t5_2qh22;;0;[]; -[];;;HarleyFox92;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/HarleyFox92/;light;text;t2_16s322;False;False;[];;Kakushigoto is not a surprise at all, it was the best non-sequel anime of 2020. Hanako-kun on the other hand, it is, I didn't expect it to be so popular;False;False;;;;1610387386;;False;{};giwncd0;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwncd0/;1610438744;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KrispyFishnuts;;;[];;;;text;t2_7zt7a1vf;False;False;[];;Was attack on titans 4 episodes not voted for;False;False;;;;1610387426;;False;{};giwnfkn;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwnfkn/;1610438794;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;aohige_rd;;;[];;;;text;t2_ttrmj;False;False;[];;Right? It should be in the top 3, much less top 10.;False;False;;;;1610387451;;False;{};giwnhkg;False;t3_kv3521;False;False;t1_giwhvgl;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwnhkg/;1610438824;10;True;False;anime;t5_2qh22;;0;[]; -[];;;NixUoatan;;;[];;;;text;t2_5fgw07j0;False;False;[];;"No Maoujou de Oyasumi, list should be put in the garbage bin smh. ^/s. - -Ok, it's actually my favorite anime last year.";False;False;;;;1610387471;;False;{};giwnj4w;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwnj4w/;1610438849;4;True;False;anime;t5_2qh22;;0;[];True -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;I completely agree. Loved the first season. Second season was meh. Third season was just over the top and it was so vague, it wasn't even entertaining. I tried to watch till the end because I had hope, but nah;False;False;;;;1610387570;;False;{};giwnr4r;False;t3_kv3521;False;True;t1_givuh7i;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwnr4r/;1610438969;3;True;False;anime;t5_2qh22;;0;[]; -[];;;aohige_rd;;;[];;;;text;t2_ttrmj;False;False;[];;The fact people don't even mention Eizouken and claim to be fans of animation boggles my mind. The entire show is a love letter to animation and homages to Ghibli.;False;False;;;;1610387597;;False;{};giwntcp;False;t3_kv3521;False;True;t1_givukhb;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwntcp/;1610439004;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Just_chill_out_a_bit;;;[];;;;text;t2_5ei881ai;False;False;[];;Jeez I forgot these all aired within the same year as each other;False;False;;;;1610387637;;False;{};giwnwlq;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwnwlq/;1610439052;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;I think jjk is gonna have a similar spot for 2021 as well, the lineup this year is absolutely stacked, I don't think a new battle shonen could do much;False;False;;;;1610387752;;False;{};giwo5yn;False;t3_kv3521;False;True;t1_givtxgy;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwo5yn/;1610439189;3;True;False;anime;t5_2qh22;;0;[]; -[];;;aohige_rd;;;[];;;;text;t2_ttrmj;False;False;[];;Yeah exactly the same two tops for me.;False;False;;;;1610387754;;False;{};giwo655;False;t3_kv3521;False;True;t1_giwk2zo;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwo655/;1610439191;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hykarus;;;[];;;;text;t2_kzdgn;False;False;[];;I'm with you my dude. Feels like Akudama Drive rode the Cyberpunk 2077 hype train (oh, how ironic). But goddamn it was bad.;False;False;;;;1610387758;;False;{};giwo6hw;False;t3_kv3521;False;True;t1_giwf3no;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwo6hw/;1610439196;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Maleficent-Month-803;;;[];;;;text;t2_7s56seso;False;False;[];;My teen Romantic comedy I’m sorry is trash;False;False;;;;1610387840;;False;{};giwod5a;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwod5a/;1610439293;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;which is kinda crazy because last discussion thread got only 2.9k karma;False;False;;;;1610387884;;False;{};giwogu2;False;t3_kv3521;False;False;t1_giwccav;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwogu2/;1610439346;117;True;False;anime;t5_2qh22;;0;[]; -[];;;yyudodis;;;[];;;;text;t2_5z7rssa0;False;False;[];;It didn't make it To The Top :(;False;False;;;;1610388026;;1610388382.0;{};giwos99;False;t3_kv3521;False;False;t1_giwa38a;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwos99/;1610439515;6;True;False;anime;t5_2qh22;;0;[]; -[];;;aYoCrumbs;;;[];;;;text;t2_7crhgct4;False;False;[];;Because people love trash.;False;False;;;;1610388051;;False;{};giwou96;False;t3_kv3521;False;True;t1_givr7u2;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwou96/;1610439545;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JokulaOfficial;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/Jokula;dark;text;t2_7kqsxhj;False;True;[];;Bullshit;False;False;;;;1610388118;;False;{};giwozp6;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwozp6/;1610439623;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;there were quite a lot of good animes this year, I think the reason you're getting downvoted is because it's a very odd opinion and you say you don't think there were other good anime this season and you haven't even watched dorohedoro, yikes. To each their own, everyone has their cup for tea, but to me your cup of tea is interesting. Jujutsu kaisen above ReZero? ReZero last? Kakushigoto at 1st? If you put a new battle shonen above a seasoned show like ReZero I have no words. I most definitely recommend you to watch more anime;False;False;;;;1610388126;;1610389075.0;{};giwp0do;False;t3_kv3521;False;True;t1_givukhb;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwp0do/;1610439633;3;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;Millionaire detective randomly making it to the top lol.;False;False;;;;1610388147;;False;{};giwp1zd;False;t3_kv3521;False;False;t1_giwg4at;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwp1zd/;1610439656;6;True;False;anime;t5_2qh22;;0;[]; -[];;;SomeRandomOomy;;;[];;;;text;t2_2tla9a4v;False;False;[];;Hmm it's... A bit complicated to explain why I liked it. It's a Shounen that's directed towards a mostly female audience, so you probably won't like some moments if you don't like shoujo manga. I also like how it mixes its dark and comedic elements and how the characters are written. Also, yeah it probably comes off as a bit immature, but it's kinda... part of its essence that makes it unique to me?;False;False;;;;1610388525;;False;{};giwpvvp;False;t3_kv3521;False;True;t1_giw7sq4;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwpvvp/;1610440099;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TDS_Reaper;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ramenn/;light;text;t2_2qks3axi;False;False;[];;"I don't mind getting downvoted im just here to share my opinion and I've got shit from people before because I don't rate re:zero that high. Before 2020 I only watched shows I liked and I didn't used to watch shows as they aired, this year I started in may and ive watched like 15ish anime from this year but I missed a few good ones like dorohedoro. - -I'm gonna stand strong and say that Kakushigoto was my best anime of the year. And I'm still gonna say that jujutsu kaisen is better than re:zero S2 because honestly jujutsu kaisen started out bumpy but it has some of the best characters and world building, and imo I liked re:zero S1 better than S2, I didn't enjoy S2 until the final couple episodes cause they really slowed down the pacing and introduced a new group of characters, most of which I'm not a fan of. - -Im not gonna fish for upvotes and go with the popular opinion cause I'm fine if people think my taste is bad - -PS. If you don't mind, could you please share your list if you have one on MAL or anilist etc. because I am curious to what kind of anime you enjoy.";False;False;;;;1610388547;;False;{};giwpxkw;False;t3_kv3521;False;True;t1_giwp0do;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwpxkw/;1610440125;1;True;False;anime;t5_2qh22;;0;[]; -[];;;huntrshado;;;[];;;;text;t2_404y4;False;False;[];;"Not much to talk about in a show like that. Fuck Mami, X girl is best, etc. - -Still a funny show though.";False;False;;;;1610388570;;False;{};giwpzf6;False;t3_kv3521;False;False;t1_giwogu2;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwpzf6/;1610440154;145;True;False;anime;t5_2qh22;;0;[]; -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;you watched 15 anime this year? 15?! alright I can understand your taste if you've watched 15 anime this year. Respect the fact that you stay true to your thoughts and don't fish for upvotes.;False;False;;;;1610388691;;False;{};giwq9ah;False;t3_kv3521;False;True;t1_giwpxkw;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwq9ah/;1610440303;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jonathot01;;;[];;;;text;t2_87k5jmln;False;False;[];;I loved Re:zero and Akudama Drive. RAG is okay but definitely some not so great moments in there.;False;False;;;;1610388818;;False;{};giwqjgp;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwqjgp/;1610440451;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TDS_Reaper;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ramenn/;light;text;t2_2qks3axi;False;False;[];;"Idk if you're saying 15 is less or more but I've watched 15 as they were airing but I'm pretty sure I've watched many more that have previously aired. - -I'm glad that you aren't dissing me harder cause in the past people have tried to roast me when I shared my opinion, yesterday someone said I should stop watching anime if I think steins;gate is better than Re:Zero";False;False;;;;1610388839;;False;{};giwql4r;False;t3_kv3521;False;True;t1_giwq9ah;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwql4r/;1610440475;0;True;False;anime;t5_2qh22;;0;[]; -[];;;loomnoo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/loomnoo;light;text;t2_5ev8pklg;False;False;[];;For me, this aspect of the show also serves as a reminder that the original work codified a lot of isekai tropes, so it's easier for me to enjoy some plot element that I might think less of if it was written today. I still think the show is well executed on its own merit, but the historical value is worth something too.;False;False;;;;1610389298;;False;{};giwrlsi;False;t3_kv3vgw;False;True;t3_kv3vgw;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giwrlsi/;1610441017;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Naskr;;;[];;;;text;t2_hoc18;False;False;[];;"I feel like Mappa's work on Dorohedoro and Attack On Titan has also been very ""blurry"" and this is probably a way to blend 3D and 2D. In the case of Dorohedoro it was 2D backgrounds with 3D models and now it's the reverse for Attack on Titan. On top of this there are lots of techniques that mimic the ""flaws"" of camera lenses which ends up feeling more ""real"" in animation. - -So you get an old school feel, you get to disguise a cost-saving measure and it works better at different resolutions. You solve alot of problems in one go whilst also elevating it in other ways. - -Of course it runs the risk of becoming a bit too common and it becomes the Brown And Bloom of Anime for a while.";False;False;;;;1610391361;;False;{};giww7dw;False;t3_kv3vgw;False;False;t1_giw6ern;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giww7dw/;1610443479;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Naskr;;;[];;;;text;t2_hoc18;False;False;[];;"I feel it's good to debate as discussions like these reveal that realistic is not always good, blurry is not always good, and crisp line-art is not always good. - -Lots of people have ideas of what the ""best"" is or what standards ""should"" be, but when you actually apply an idea of perfection to a work of art it just ends up being worse alot of the time. Art is inherently imperfect and so there's no real rule that says you can't just grab the ""limitations"" of the past and recontextualise them as an enhancement.";False;False;;;;1610391538;;False;{};giwwlqa;False;t3_kv3vgw;False;False;t1_giw03q1;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giwwlqa/;1610443687;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Eboglaz;;;[];;;;text;t2_2kahaqr2;False;False;[];;Manga is mediocre because it is a really bad adaptation of a novel. Dont forget tha they always adapt the source material.;False;False;;;;1610392451;;False;{};giwym6c;False;t3_kv3vgw;False;False;t1_giw4x37;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giwym6c/;1610444748;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Ry-O-Ken;;;[];;;;text;t2_2lrnusrf;False;False;[];;AoT’s blurry look is jus poor compositing. I wouldn’t compare it to something like mushoku where they’re going for an old school look (to make the setting feel more fantastical) while still doing good compositing at the basic level.;False;False;;;;1610393589;;False;{};gix1615;False;t3_kv3vgw;False;False;t1_giww7dw;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/gix1615/;1610446098;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;Wow I don't even know how you noticed this stuff! I don't know the first thing about these techniques lol, do you know any particular scenes I could rewatch where things like the blurred linear or grain would be the most noticeable?;False;False;;;;1610393895;;False;{};gix1uf2;False;t3_kv3vgw;False;True;t3_kv3vgw;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/gix1uf2/;1610446455;1;True;False;anime;t5_2qh22;;0;[]; -[];;;XboxNoLifes;;;[];;;;text;t2_bkymx;False;False;[];;"The light novel was definitely one of the better isekai series that I've read / watched. I hope the anime adaption does my mind's interpretation of the LN justice. - -For what it's worth, I'm a little hesitant with what has been shown so far, but I'll withhold judgement for now.";False;False;;;;1610394009;;False;{};gix23dc;False;t3_kv3vgw;False;False;t1_giw1inn;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/gix23dc/;1610446588;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Gkalaitza;;;[];;;;text;t2_1b8c3m;False;False;[];;"This is mostly a problem with digitaly scanned and colored anime. pre 2000 Cel animated anime (on 16mm or 32mm film) can be ,is for BDs and was scaned occasionaly in native resolution of 1080p with amazing results without upscales. So even if Mushoku Tensei has tricks to make it seem more retro it will still only be able to have BD releases through upscale and will have some similar issues in the transition to that. - -Also Megalo Box aimed at a retro look cause it was a celebration for the 50 years of legendary anime/manga Ashita no Joe, which came out as anime in the 70s/80s. So i doupt they did the visual tricks for production reasons";False;False;;;;1610394933;;False;{};gix44tq;False;t3_kv3vgw;False;False;t1_giw6ern;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/gix44tq/;1610447686;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackdiamond2;;;[];;;;text;t2_c8m3y;False;False;[];;Aliasing and artifacts on higher resolutions? I can't see how this could happen, surely higher resolution would always make the lineart sharper.;False;False;;;;1610394963;;False;{};gix4789;False;t3_kv3vgw;False;True;t1_giw6ern;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/gix4789/;1610447722;1;True;False;anime;t5_2qh22;;0;[]; -[];;;notbob-;;;[];;;;text;t2_a897t;False;False;[];;"[Image 1](https://i.imgur.com/flUpONH.jpg), [Image 2](https://i.imgur.com/dyK9RSG.png). - -In which image is the aliasing more obvious?";False;False;;;;1610395169;;False;{};gix4nkx;True;t3_kv3vgw;False;False;t1_gix4789;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/gix4nkx/;1610447976;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackdiamond2;;;[];;;;text;t2_c8m3y;False;False;[];;I see it, but why does that happen? It doesn't quite make sense to me how this happens, in my mind more pixels = more information = less noticable aliasing.;False;False;;;;1610395743;;False;{};gix5wbf;False;t3_kv3vgw;False;True;t1_gix4nkx;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/gix5wbf/;1610448652;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nimbusstev;;;[];;;;text;t2_eyees;False;False;[];;"It may have released near the beginning of the current isekai boom, but I feel like calling something from 2012 the grandfather and originator of isekai seems to be giving it too much credit. The genre existed well before then with the likes of Magic Knight Rayearth, MAR, .hack, and even Digmon. - -I'm not saying that Mushoku Tensei is a ripoff or that it wasn't an inspiration towards modern series. But there was certainly a lot of anime establishing these tropes years before this series came along.";False;False;;;;1610399734;;False;{};gixeo3i;False;t3_kv3vgw;False;False;t1_giw3tuh;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/gixeo3i/;1610453577;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;It's like you're purposely seeking out mushoku tensei forums just to complain, this ain't the first time I've seen you pop up. Why not get a life, if you don't like the show then don't go to discussions just to say how much you hate it;False;False;;;;1610400019;;1610408550.0;{};gixfaey;False;t3_kv3vgw;False;False;t1_giw3d9i;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/gixfaey/;1610453947;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Obskure13;;;[];;;;text;t2_qpwsl;False;False;[];;"It happens because the native resolution is not that high (prob 720), so they use different methods to make the image bigger, which produces those artifacts. -Yes, more pixels means you need more information that you don't have in the native resolution..";False;False;;;;1610400481;;False;{};gixgask;False;t3_kv3vgw;False;False;t1_gix5wbf;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/gixgask/;1610454550;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackdiamond2;;;[];;;;text;t2_c8m3y;False;False;[];;Ahhh, so each frame of an is produced at native 720p? That explains it. I thought they'd scan or draw each frame in at least 1080p, but if it's upscaled from 720 that makes sense.;False;False;;;;1610401178;;False;{};gixhsy7;False;t3_kv3vgw;False;True;t1_gixgask;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/gixhsy7/;1610455493;1;True;False;anime;t5_2qh22;;0;[]; -[];;;linkinstreet;;;[];;;;text;t2_71lbm;False;True;[];;yes;False;False;;;;1610404758;;False;{};gixpark;False;t3_kv4qrn;False;False;t1_giw22jg;/r/anime/comments/kv4qrn/youtube_anime_titles_available_in_bangladesh/gixpark/;1610460342;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Disastrous_Platform;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/crew7;light;text;t2_1do125gc;False;False;[];;I thought the animation was top tier. Even during talking scenes there was constantly bodies moving around fluidly.;False;False;;;;1610405224;;False;{};gixq9ar;False;t3_kv3vgw;False;False;t1_giw0op8;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/gixq9ar/;1610460967;32;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"Exactly. Even if we limit it to isekai originally published on the site [Shousetsuka ni Narou](https://en.wikipedia.org/wiki/Shōsetsuka_ni_Narō), which is the namesake of ""Narou-kei"" category of isekai (which Mushoku belongs to), before Mushoku Tensei, there is Re:Zero, Log Horizon, Knight's & Magic, Isekai Meikyū de Harem o, Isekai Izakaya, Isekai Cheat Magician, Overlord. (Overlord's a weird case, because it was published somewhere else before Narou.) There might be even more. Konosuba only started a month after Mushoku Tensei. - -People love saying that Mushoku Tensei is the granddaddy of isekai, but that's not really true. Even looking at the most narrowly defined Narou-kei works, there were already works coming out before Mushoku Tensei with these settings and tropes.";False;False;;;;1610405939;;1610406183.0;{};gixrq99;False;t3_kv3vgw;False;False;t1_gixeo3i;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/gixrq99/;1610461954;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Xarryen;;;[];;;;text;t2_xxfq3;False;False;[];;"Not sure that's the best example since its the raw paint data before line smoothing is applied. - -Obviously the upscaling introduces some extra blurriness, but with natively ""1080p"" paint files the usual smoothing is still enough to offset visible aliasing outside of edge cases like straight 45° diagonals, even that's mostly smoothed out by DF and other filtering. Only really becomes problematic when combined with other fuckery like line thinning or improperly blended edge lighting.";False;False;;;;1610406229;;False;{};gixsau9;False;t3_kv3vgw;False;False;t1_gix4nkx;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/gixsau9/;1610462353;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"I don't know if I would call it the ""grandfather"" of even modern day isekai, when at least Re:Zero, Log Horizon, Knight's & Magic, Isekai Meikyū de Harem o, Isekai Izakaya, Isekai Cheat Magician, and Overlord *all* started serialization before Mushoku Tensei.";False;False;;;;1610406288;;1610406486.0;{};gixsf55;False;t3_kv3vgw;False;False;t1_giw3tuh;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/gixsf55/;1610462441;5;True;False;anime;t5_2qh22;;0;[]; -[];;;fuzzynavel34;;MAL;[];;http://myanimelist.net/animelist/hoosierdaddy0827;dark;text;t2_fwokc;False;False;[];;I know, so far so good 😅;False;False;;;;1610406912;;False;{};gixtoh1;False;t3_kv4s8z;False;True;t1_gixpdxa;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixtoh1/;1610463393;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Taiyo17;;;[];;;;text;t2_3n012r2q;False;False;[];;I've checked yesterday after the new episode came out it was 9.07 ranked 6th. Bruhhh, of course, the latest episode was so fire.;False;False;;;;1610406918;;False;{};gixtowd;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixtowd/;1610463401;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yolo-yoshi;;ANI;[];;Anidood;dark;text;t2_cuv2u;False;False;[];;i mean theres theres much worse things, but yeah i can get your point lol;False;False;;;;1610406918;;False;{};gixtowh;False;t3_kv4s8z;False;True;t1_giw9hbo;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixtowh/;1610463401;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mobilegamegod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Aochhi;light;text;t2_pkuqf;False;False;[];;Attack on Titan is a cartoon..;False;False;;;;1610406974;;False;{};gixtswa;False;t3_kv4s8z;False;True;t1_gixs50j;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixtswa/;1610463472;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MilkToastKing;;;[];;;;text;t2_13tvvu;False;False;[];;To clarify, I meant OVA *series*, but regardless, yes I think either a movie or a part 2 is more likely. I'm inclined to believe that they won't do an anime original ending though... I'd have to scrub through old interviews to confirm it, I know there was one where they said that they didn't know how it would end but they animated following the manga as close to the original vision as possible;False;False;;;;1610406989;;False;{};gixttxx;False;t3_kv4s8z;False;True;t1_gixqr50;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixttxx/;1610463492;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Link1112;;;[];;;;text;t2_2mt5pfx;False;False;[];;AoT just gets better and better, S2 is imo way better than S1 and S3 is even better than S2. It’s not an exaggeration when I say that in S3, especially the 2nd half, every episode is hype af and I constantly get that “edge of your seat” feeling, even when I’m rewatching it. It’s soooooo damn good dude. You’re missing out.;False;False;;;;1610407042;;False;{};gixtxrw;False;t3_kv4s8z;False;True;t1_giwu6td;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixtxrw/;1610463564;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Yoeblue;;;[];;;;text;t2_rbo3n;False;False;[];;Wait, people rate a show before it's finished?;False;False;;;;1610407124;;False;{};gixu3sv;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixu3sv/;1610463675;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Retsam19;;;[];;;;text;t2_aa4uq;False;False;[];;"> By your logic, all Harry Potter movies and Star Wars movies should be averaged into one score - -The key bit, which you've completely ignored is: - -> But unless something can reasonably be watched on its own, it doesn't seem useful to have its own rating. - -Harry Potter, Star Wars, and the Office are *clearly* cases where you might reasonably watch one without having seen the others. (In fact, believe it or not, a lot of people start watching Star Wars with the fourth movie...) - -Attack on Titan S3 Part 2, *not so much*.";False;False;;;;1610407133;;1610408194.0;{};gixu4dd;False;t3_kv4s8z;False;True;t1_gixrx8y;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixu4dd/;1610463686;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610407151;;False;{};gixu5nd;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixu5nd/;1610463710;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Motor_Doctor5945;;;[];;;;text;t2_88m2ywa5;False;False;[];;" I like the overarching story but I couldnot muster myself to watch each episode coz they were boring. - -They published a recap and it was awesome. 7.5-8/10 - -https://myanimelist.net/anime/42091/Shingeki_no_Kyojin__Chronicle This one. Is good.";False;False;;;;1610407153;;1610407335.0;{};gixu5ru;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixu5ru/;1610463712;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Alchion;;;[];;;;text;t2_p4db7;False;False;[];;"at this point just remove every 1 rating on it that doesn‘t have an indicidual at least 10 sentence long review - -i hate the fmab community";False;False;;;;1610407155;;False;{};gixu5w8;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixu5w8/;1610463714;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Jesis;;;[];;;;text;t2_30j5mr8e;False;False;[];;Who the fuck thinks full metal alchemist can compare to one piece. Lets be honest here;False;False;;;;1610407164;;False;{};gixu6jq;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixu6jq/;1610463726;2;True;False;anime;t5_2qh22;;0;[]; -[];;;just-another-viewer;;;[];;;;text;t2_4nriyy1;False;False;[];;"I genuinely don’t think it deserves that high of a spot. The animation is top notch and the story is pretty good, but too many people are making judgements clouded by the intense blood rush hype. - -The fact that MAL still allows voting on an ongoing season goes to show how much they are biased towards hype content and that they show little favor towards more slow-burn works.";False;False;;;;1610407214;;False;{};gixua3e;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixua3e/;1610463794;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Yoeblue;;;[];;;;text;t2_rbo3n;False;False;[];;He means aired not subbed;False;False;;;;1610407221;;False;{};gixuan8;False;t3_kv4s8z;False;True;t1_gix2041;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixuan8/;1610463806;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chartingyou;;;[];;;;text;t2_1pzf12n2;False;False;[];;yeah I don't really like it either. feels like a false ranking when you putting it next to things that have been completed for years. Like people have had time to think about other anime seasons for long periods of time while with AOT it feels very in the moment currently;False;False;;;;1610407224;;False;{};gixuawl;False;t3_kv4s8z;False;True;t1_giwtieb;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixuawl/;1610463811;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610407240;;False;{};gixuc06;False;t3_kv4s8z;False;True;t1_giwufta;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixuc06/;1610463834;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tircle;;;[];;;;text;t2_ktt80;False;False;[];;Yeah it's kind of pointless to me. Also maybe this is a bad take, but the past 4 episodes of AOT have been great, but not 10/10 material. First few episodes were ~8.5's, and the most recent one was a 9, but based of the episodes so far, it hasn't reached the point where it should be a top 3 on MAL. Maybe the finale will make it a top 3, but with just 5 episodes there's now way it should be this high.;False;False;;;;1610407244;;False;{};gixuc9w;False;t3_kv4s8z;False;True;t1_giwtieb;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixuc9w/;1610463838;2;True;False;anime;t5_2qh22;;0;[]; -[];;;seraph85;;;[];;;;text;t2_6fido;False;False;[];;You can say the same thing about attack in titan.;False;False;;;;1610407339;;False;{};gixuiwz;False;t3_kv4s8z;False;True;t1_giwvmjp;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixuiwz/;1610463967;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KaitoYashio;;;[];;;;text;t2_14vn7b;False;False;[];;">Third: The lineart is intentionally blurred. I guess you could call it the Megalo Box effect, but a lot more sophisticated. - -Megalo Box was literally shrunk to 480p and then scaled back up, which made the lineart genuinely blurry, along with everything else. - -I wouldn't say Mushoku Tensei's lineart is blurry, rather, it emulates the roughness of the lineart of cel animation by varying thickness and adding in gaps. Megalo Box also employed this trick under the blurriness. - -The first anime I know of that filtered the lineart like this was Gundam: G no Reconguista. Then Tiger Mask W and Occultic;Nine both did their own spin on the idea too. The director (Kyohei Ishiguro) and DoP (Yoshihiro Sekiya) of the latter both continued to use this in their future works as well.";False;False;;;;1610407358;;False;{};gixuk7z;False;t3_kv3vgw;False;False;t3_kv3vgw;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/gixuk7z/;1610463992;13;True;False;anime;t5_2qh22;;0;[]; -[];;;dIoIIoIb;;MAL;[];;http://myanimelist.net/animelist/dIoIIoIb;dark;text;t2_cvqx4;False;False;[];;Imo the score it's gonna go down when the show ends: a show this ambitious, the ending is guaranteed to be controversial. A lot of people won't be satisfied, no matter what happens.;False;False;;;;1610407359;;False;{};gixukbj;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixukbj/;1610463994;1;True;False;anime;t5_2qh22;;0;[]; -[];;;boten_anna3;;;[];;;;text;t2_g514x;False;False;[];;Are you saying One Piece is actually better? Bc FMA has been my top anime for a while, if One Piece is actually that good I might have to check it out;False;False;;;;1610407374;;False;{};gixuld6;False;t3_kv4s8z;False;True;t1_gixu6jq;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixuld6/;1610464013;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KuroOni;;;[];;;;text;t2_qia7b;False;False;[];;regardless of the end result, snk has been my best anime of all time since S3 part 1. I know that many people didn't like the change but it was at that part that I realized the genius of Isayama changing the genre of his work halfway through while remaining consistent in the story and actually making a great arc.;False;False;;;;1610407449;;False;{};gixuqpv;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixuqpv/;1610464120;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JCrockford;;;[];;;;text;t2_tebqb;False;False;[];;Well remember that interspecies reviewers took the position of number one for a while before MAL decided to remove loads of the reviews.;False;False;;;;1610407455;;False;{};gixur4h;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixur4h/;1610464128;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ToeAny5031;;;[];;;;text;t2_7n9tiyl4;False;False;[];;"I’m caught up with AOT (read all the manga) and I have seen them delve into these topics, I just feel as though FMAB handles it with a more realistic lens. I do like how AOT handles war and morality, but every time I read it I feel as though it falls short on the character aspect. When I read FMAB, every decision made by a character feels like it’s important and always makes sense to who they are as a person, their morality, their trauma etc. AOT explores these topics, but from a more broad standpoint. - -One scene I would like to use as an example of my point is from FMAB. When Roy Mustang is on the verge of killing envy in what he saw as a “Justified Killing” it destroys me. Over the series we’ve seen this man slowly get stronger and stronger, then with one event he’s suddenly at his lowest again. The idea of morality being this paper-like bridge is a brilliant concept and explored beautifully in FMAB. - -I have never felt a connection like that to AOT. They tend to cover things like human nature in a more broad, less nuanced way. Not to say that’s bad, Erens arc throughout the manga is amazing and one of the best characters I’ve seen from a series like this, it’s just easier for people to watch/read. More people tend to enjoy writing like this since it’s more understandable to a wider audience. - -So, in conclusion. Yes AOT does explore these topics, some even better then FMAB (Especially how downright corrupted politicians can be. The ones in FMAB felt playfully evil), but they explore them in a way that’s extremely easy to understand. That is why I believe it will surpass FMAB. It’s a good series (Though I do prefer the manga) and it deserves a lot of the popularity it has. FMAB also deserves its popularity. Both are amazing series and everyone should watch both to determine which one they like better. - -Thanks for listening to my rambling. Also apologies if the formatting is ugly, I’m typing this on my phone as my computer is dead.";False;False;;;;1610407464;;False;{};gixurs0;False;t3_kv4s8z;False;True;t1_gixt6ip;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixurs0/;1610464140;3;True;False;anime;t5_2qh22;;0;[]; -[];;;tctony;;;[];;;;text;t2_3kit8;False;False;[];;I honestly don't see how somebody could love SNK so much but then not find a lot to love in FMAB or SG too.;False;False;;;;1610407464;;False;{};gixurtr;False;t3_kv4s8z;False;True;t1_giwf3nn;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixurtr/;1610464141;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Alchion;;;[];;;;text;t2_p4db7;False;False;[];;also man if youve read the manga and seen the animation to this point and see the plot progression youll realize that it probably wont be rushed and well animated so just plain all time great;False;False;;;;1610407477;;False;{};gixuspa;False;t3_kv4s8z;False;True;t1_gix8civ;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixuspa/;1610464159;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cybercock2077;;;[];;;;text;t2_99h4skua;False;False;[];;well deserved;False;False;;;;1610407478;;False;{};gixustg;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixustg/;1610464162;1;True;False;anime;t5_2qh22;;0;[]; -[];;;seraph85;;;[];;;;text;t2_6fido;False;False;[];;You don't get any worse then AoT fanboys. You'd think you insulted thier religion if you say you didn't like it.;False;False;;;;1610407491;;False;{};gixutpc;False;t3_kv4s8z;False;False;t1_giwl0m6;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixutpc/;1610464179;4;True;False;anime;t5_2qh22;;0;[]; -[];;;th3virtuos0;;;[];;;;text;t2_5qhxyxmg;False;False;[];;Because of Sorachi’s weird humour and the very steep initial curve;False;False;;;;1610407508;;False;{};gixuuzf;False;t3_kv4s8z;False;False;t1_gixocbe;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixuuzf/;1610464205;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Hochseeflotte;;;[];;;;text;t2_38czhwoh;False;False;[];;"I haven’t watched FMAB so I can’t speak to its quality but I do love me some AOT and Steins;Gate";False;False;;;;1610407530;;False;{};gixuwjd;False;t3_kv4s8z;False;True;t1_gixurtr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixuwjd/;1610464235;1;True;False;anime;t5_2qh22;;0;[]; -[];;;seraph85;;;[];;;;text;t2_6fido;False;False;[];;Don't mind the AoT fanboys they don't know what a good character is so they don't understand.;False;False;;;;1610407593;;False;{};gixv11p;False;t3_kv4s8z;False;True;t1_gixkdab;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixv11p/;1610464325;0;True;False;anime;t5_2qh22;;0;[]; -[];;;dIoIIoIb;;MAL;[];;http://myanimelist.net/animelist/dIoIIoIb;dark;text;t2_cvqx4;False;False;[];;"I feel like Your Name is a story that gets worse the more you think about it - -you watch it and it's great, it feels beautiful and amazing - -and then you think about it and you have to ask yourself stuff like ""wait... when did they fell in love? was there a romance there?"" and there just are no good answers.";False;False;;;;1610407604;;False;{};gixv1uk;False;t3_kv4s8z;False;True;t1_giw8ipm;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixv1uk/;1610464342;0;True;False;anime;t5_2qh22;;0;[]; -[];;;th3virtuos0;;;[];;;;text;t2_5qhxyxmg;False;False;[];;3-4 more chapters. Wait till you see the fabulous Ramzi in 4k full color;False;False;;;;1610407625;;False;{};gixv3aj;False;t3_kv4s8z;False;True;t1_giwrnh2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixv3aj/;1610464368;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mythriz;;;[];;;;text;t2_d37v0;False;False;[];;As a Gintama fan I still find it hilarious how many entries Gintama has cluttering up that toplist haha;False;False;;;;1610407631;;False;{};gixv3pb;False;t3_kv4s8z;False;False;t1_giwfslr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixv3pb/;1610464377;27;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewanor;;;[];;;;text;t2_y1so6;False;False;[];;I must say, I've looked at the top 10 and every show has 1 stars around 3000-4000 band. Is that amount of 1 stars in those shows examples enough to let other shows surpass FMA:B? I think there is some egging on going on here, it certainly can't be same 1000-2000 people giving 1 stars that doesn't let other animes dethrone FMA:B.;False;False;;;;1610407644;;False;{};gixv4nq;False;t3_kv4s8z;False;False;t1_gixmy6r;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixv4nq/;1610464399;11;True;False;anime;t5_2qh22;;0;[]; -[];;;chartingyou;;;[];;;;text;t2_1pzf12n2;False;False;[];;anyone who has Gankutsuou on their list has my respect 👏;False;False;;;;1610407670;;False;{};gixv6fb;False;t3_kv4s8z;False;False;t1_gixoz6c;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixv6fb/;1610464438;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;I just don’t think it’s better than LOGH or Hunter x Hunter;False;False;;;;1610407720;;False;{};gixva4f;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixva4f/;1610464516;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dIoIIoIb;;MAL;[];;http://myanimelist.net/animelist/dIoIIoIb;dark;text;t2_cvqx4;False;False;[];; I can think of a handful of shows, not even anime, that tell their story and their world better than FMAB;False;False;;;;1610407733;;False;{};gixvb0o;False;t3_kv4s8z;False;False;t1_gix6ydg;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixvb0o/;1610464535;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Grenadier020;;;[];;;;text;t2_zapcn;False;False;[];;"If FMA is 8/10 snk is 6-7/10 - -Snk is popular and this is well deserved, but come on I mean...";False;True;;comment score below threshold;;1610407805;;False;{};gixvg47;False;t3_kv4s8z;False;True;t1_giwvvaf;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixvg47/;1610464631;-16;True;False;anime;t5_2qh22;;0;[]; -[];;;Chronoflyt;;;[];;;;text;t2_5apbu2fl;False;False;[];;"I've long held little stock in MAL ratings. If people rate purely based on enjoyment, fair enough. That's their right. However, from a narrative craft perspective, while not perfect, AoT has executed its story masterfully. This current season is most certainly the series at/near its best. - - -The most recent example of MAL ratings not being indicative of quality recently was Majo no Tabitabi which I think stands at a 7.6 currently. I had quite a high expectation going into it, and while I was met with great visuals, I was also met with an unfleshed out world, a personality-deprived protagonist who undergoes practically no character development, and one-dimensional antagonists. If people enjoyed it, that's fair. From an objective perspective, it didn't even deserve a five. If Elaina were a guy rather than a ""waifu"", I wonder whether it would have the score it has now.";False;True;;comment score below threshold;;1610407817;;False;{};gixvh0p;False;t3_kv4s8z;False;True;t1_gixo3x3;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixvh0p/;1610464652;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;seraph85;;;[];;;;text;t2_6fido;False;False;[];;Also AoT is coming out during the golden age of anime. It's much easier to watch anime now then it was back then. When FMA came out most of the AoT fanboys weren't even alive yet.;False;False;;;;1610407829;;False;{};gixvhwh;False;t3_kv4s8z;False;True;t1_giwy5bw;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixvhwh/;1610464670;3;True;False;anime;t5_2qh22;;0;[]; -[];;;fourfloorsup;;;[];;;;text;t2_8vkicz3w;False;False;[];;On the flip side, it's probably b/c too many people here use MAL numbers to argue and imply that their show is good ..... kinda like what OP is doing.;False;False;;;;1610407835;;False;{};gixvick;False;t3_kv4s8z;False;True;t1_giwnvn5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixvick/;1610464678;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Alchion;;;[];;;;text;t2_p4db7;False;False;[];;yup when i think of the manga again and of all the moments i think if mal brings in a system to figure out most of the 1 bombing fmab doesn‘t stand a chance in terms of serious reviews;False;False;;;;1610407839;;False;{};gixvilt;False;t3_kv4s8z;False;True;t1_giwterz;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixvilt/;1610464682;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dIoIIoIb;;MAL;[];;http://myanimelist.net/animelist/dIoIIoIb;dark;text;t2_cvqx4;False;False;[];;But then monogatari would lose both of its spots on the top 100;False;False;;;;1610407856;;False;{};gixvjw9;False;t3_kv4s8z;False;True;t1_giwwb7x;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixvjw9/;1610464707;1;True;False;anime;t5_2qh22;;0;[]; -[];;;APlays71;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/LoLeo;light;text;t2_46n85vec;False;False;[];;Honestly,I never saw an anime so bad I had to give it a 1 but yea...;False;False;;;;1610407867;;False;{};gixvko4;False;t3_kv4s8z;False;True;t1_giw2s5a;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixvko4/;1610464723;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tircle;;;[];;;;text;t2_ktt80;False;False;[];;The only solution to this would be to combine different seasons under one rating in MAL but I think this would cause more problems than solve it. Not sure why diversity, money, or production value even matters, if the show is good, then the show should be rated highly.;False;False;;;;1610407896;;False;{};gixvmr9;False;t3_kv4s8z;False;False;t1_gix6hgz;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixvmr9/;1610464761;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewanor;;;[];;;;text;t2_y1so6;False;False;[];;I have looked and removing the 1 stars from the rating Your Name only rises 0.02 point to be 9.00, there is no brigading with enough numbers to bring down any show in said amount.;False;False;;;;1610407897;;False;{};gixvmuv;False;t3_kv4s8z;False;True;t1_giwdg7d;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixvmuv/;1610464763;0;True;False;anime;t5_2qh22;;0;[]; -[];;;9spaceking;;;[];;;;text;t2_fcxd2;False;False;[];;"*I am Hououin Kyouma, sad scientisto! Sonuvabitch... ;.;* - -(JK, as a Steins; Gate fan I'm okay with an action series overtaking it. S;G isn't everyone's cup of tea)";False;False;;;;1610407919;;False;{};gixvodg;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixvodg/;1610464795;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fourfloorsup;;;[];;;;text;t2_8vkicz3w;False;False;[];;"finally, another person who actually admits that the final arc is pretty mediocre. - - -AoT stopped being amazing after chapter 122";False;False;;;;1610408001;;False;{};gixvuag;False;t3_kv4s8z;False;True;t1_giwxqw4;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixvuag/;1610464910;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tircle;;;[];;;;text;t2_ktt80;False;False;[];;"These past 5 episodes have been good, but aren't mind blowing like a lot of S3P2. Sure it's enjoyable and is ""shaping-up"" to a good season, but if we're only looking at these 5 episodes, I don't think this is top 3 material yet. That isn't saying that the rest of the season can't bring it up to that level though.";False;False;;;;1610408005;;False;{};gixvuk5;False;t3_kv4s8z;False;True;t1_giw2lm2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixvuk5/;1610464915;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Preminence;;;[];;;;text;t2_s1ruu;False;False;[];;MAL rating system is a meme for a reason, if you actually follow them for advice that’s on you.;False;False;;;;1610408142;;False;{};gixw48x;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixw48x/;1610465097;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewanor;;;[];;;;text;t2_y1so6;False;False;[];;"and it's literally around 3000 1 stars, with 1/3 amount in the 2-5 star range in a lot shows near FMA:B. Looking at stats, there can't be said that it's because FMA:B fans are downvoting the other shows that are coming close, as the amount certainly isn't enough to keep near shows down. And again, every show gets low votes some people are just trolls so that just even lowers the amount of people that here calls toxic FMA:B fans. - -So my judgment tells me this is just usual reddit circlejerk but feel free to inform me about anything I miss in my calculations";False;False;;;;1610408147;;False;{};gixw4nl;False;t3_kv4s8z;False;True;t1_gix6eun;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixw4nl/;1610465106;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Yourmamasmama;;MAL;[];;http://myanimelist.net/animelist/nhkim08;dark;text;t2_9vpra;False;False;[];;"MAL top list doesn't matter anyway. Don't get me wrong, Steins;gate is good but it is DEFINITELY NOT well written enough to be #3.";False;False;;;;1610408150;;False;{};gixw4tb;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixw4tb/;1610465109;2;True;False;anime;t5_2qh22;;0;[]; -[];;;justendmeffs;;;[];;;;text;t2_616awwfq;False;False;[];;That's why the most interesting stats at the end of the season aren't the final scores but the [score progression](https://myanimelist.net/forum/?topicid=1867212);False;False;;;;1610408170;;False;{};gixw6c5;False;t3_kv4s8z;False;True;t1_gixpo5k;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixw6c5/;1610465149;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vinsmokesanji3;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/ChrispyAurora;dark;text;t2_84xqi4;False;False;[];;You’re being pedantic and frankly ridiculous. You’re not making much sense. People can watch Harry Potter 6 without watching all the others in the same way people can watch AoT S3 without watching the others. You’re supposed to watch the seasons in order but you don’t have to, and this means each should be treated separately. If you don’t understand that, you probably shouldn’t watch anime. Maybe you’re too young for this? Also I’m blocking you since you offer nothing constructive.;False;True;;comment score below threshold;;1610408240;;False;{};gixwbb3;False;t3_kv4s8z;False;True;t1_gixu4dd;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixwbb3/;1610465278;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandhu212;;;[];;;;text;t2_27fyp09x;False;False;[];;"I will never trust mal reviews. People just blindly leave reviews on a show whether it be 1 or 10. Most of the shows/manga that are ""bad"" on mal I sometimes enjoy. But hey that's just me.";False;False;;;;1610408249;;False;{};gixwbyn;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixwbyn/;1610465294;1;True;False;anime;t5_2qh22;;0;[]; -[];;;justendmeffs;;;[];;;;text;t2_616awwfq;False;False;[];;It's especially weird because a lot of us watch shows as they air so we don't really need ratings to choose what to watch as those don't even exist yet.;False;False;;;;1610408279;;False;{};gixwe18;False;t3_kv4s8z;False;False;t1_gix5yg6;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixwe18/;1610465365;5;True;False;anime;t5_2qh22;;0;[]; -[];;;knokaka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/knokaka?order=4;light;text;t2_ytri4;False;False;[];;"This is the only way i can watch anime legally... I hope more people subscribe so they keep streaming those anime. - -I already message mod on discord to add it on the stream list on thread but no response.. idk maybe he was busy with something.";False;False;;;;1610408310;;False;{};gixwgb6;False;t3_kv4qrn;False;True;t3_kv4qrn;/r/anime/comments/kv4qrn/youtube_anime_titles_available_in_bangladesh/gixwgb6/;1610465447;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Big_LunchBox;;;[];;;;text;t2_5881ogfk;False;False;[];;Wow never knew how basic I am, my favorite animes are attack on titan and fullmetal alchemist brotherhood;False;False;;;;1610408353;;False;{};gixwjex;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixwjex/;1610465525;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610408393;;False;{};gixwm8e;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixwm8e/;1610465601;1;True;False;anime;t5_2qh22;;0;[]; -[];;;justendmeffs;;;[];;;;text;t2_616awwfq;False;False;[];;Because MAL is still the go-to website for new fans looking to get into anime. A lot of easily accessible information and the List tool is a must.;False;False;;;;1610408444;;False;{};gixwpzn;False;t3_kv4s8z;False;True;t1_gixtg25;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixwpzn/;1610465701;2;True;False;anime;t5_2qh22;;0;[]; -[];;;huntrshado;;;[];;;;text;t2_404y4;False;False;[];;"Given the content of what would be leftover, I think a movie would fit best -- it would easily outsell the Demon Slayer movie, which just took the all-time #1 spot in Japan's Box Office, and I think they would honestly be pretty dumb if they didn't go that route. Easy money. - -I also think that is why this season is named ""The Final Season"" - as in, no more seasons, just a movie.";False;False;;;;1610408456;;False;{};gixwqth;False;t3_kv4s8z;False;True;t1_gixttxx;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixwqth/;1610465718;3;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Jesis;;;[];;;;text;t2_30j5mr8e;False;False;[];;"I am saying that anime in general is rated from zero to one piece for lots of people who have seen one piece. Yes its 1000 long, which is incredibly daunting to say the least. But you get foreshadowing and little hints and symbols that tie in hundreds of chapters later. The massive world and incredible amount of reoccurring character puts it on par with the likes of Middle Earth and Star wars. - -I could not recommend one piece enough. I tell all my friends to watch it. And I warn everyone, be prepared to cry. Oda will rip your heart out many times over";False;False;;;;1610408482;;False;{};gixwssx;False;t3_kv4s8z;False;True;t1_gixuld6;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixwssx/;1610465759;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;I thought fmab was just good, 8/10 nothing crazy but still good. I'd put it in the same category as my hero academia. Steins gate is definitely better then FMAB imo as well. I'm probably one of the rare people tho who thought steins gate 0 is better than the og. But ya steins gate is one of my favorite series. AOT is just amazing, it's so rare getting such an amazing adaptation cox so many god damn mangas are amazing from start to finish but never get a good/full Adaptation cough beserk cough Tokyo ghoul cough;False;False;;;;1610408678;;False;{};gixx6tl;True;t3_kv4s8z;False;True;t1_gixwm8e;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixx6tl/;1610466106;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610408739;;False;{};gixxb3d;False;t3_kv4s8z;False;True;t1_giwco75;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixxb3d/;1610466197;1;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Shows the Silver Award... and that's it."", 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'icon_width': 512, 'id': 'gid_1', 'is_enabled': True, 'is_new': False, 'name': 'Silver', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;HarizOne2e;;;[];;;;text;t2_457ryfcz;False;False;[];;I love both fmab and aot come on both are amazing series let's unite and celebrate!!!;False;False;;;;1610408739;;False;{'gid_1': 1};gixxb4h;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixxb4h/;1610466198;13;True;False;anime;t5_2qh22;;1;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;😂😂😂😂;False;False;;;;1610408746;;False;{};gixxbjv;True;t3_kv4s8z;False;False;t1_gixwjex;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixxbjv/;1610466204;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerobought;;;[];;;;text;t2_12a72r;False;False;[];;It's less 'my series is the best' and more of 'fuck this series, I hear non-stop about it. It's overrrated' I think;False;False;;;;1610408761;;False;{};gixxcmi;False;t3_kv4s8z;False;True;t1_gix7lr0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixxcmi/;1610466234;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Honestly we need more people like you !;False;False;;;;1610408761;;False;{};gixxcn6;True;t3_kv4s8z;False;True;t1_gixxb4h;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixxcn6/;1610466234;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ztaxas;;MAL;[];;https://myanimelist.net/profile/Xaxas;dark;text;t2_qpvjd;False;False;[];;Same reason there is no arbitrary “only upvote after 1 day” rule on Reddit, promotes discussion and serves as a statistical tool to measure trends;False;False;;;;1610408787;;False;{};gixxee1;False;t3_kv4s8z;False;True;t1_giwtieb;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixxee1/;1610466275;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;ohyeahilikedat;;;[];;;;text;t2_2cg8qm7r;False;False;[];;You people are garbage to rate animes;False;False;;;;1610408800;;False;{};gixxfa1;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixxfa1/;1610466294;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;mynewaccount5;;;[];;;;text;t2_d1vwt;False;False;[];;You gotta watch more normal TV. Lots of amazing stuff.;False;False;;;;1610408802;;False;{};gixxff0;False;t3_kv4s8z;False;True;t1_gixvb0o;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixxff0/;1610466296;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;I mean for most shows it's accurate, it gets dicy when it's a really underground show or the really popular show. It's fine with the middle 90% of content. The stuff that gets screwed is the top 5 and the bottom 5. Talking popularity here btw;False;False;;;;1610408826;;False;{};gixxh6m;True;t3_kv4s8z;False;True;t1_gixwbyn;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixxh6m/;1610466329;1;True;False;anime;t5_2qh22;;0;[]; -[];;;INSANITY-WD;;;[];;;;text;t2_3cy5yghw;False;False;[];;to put it simply yes the show is one of the best anime's right now and the last season is just starting;False;False;;;;1610408857;;False;{};gixxjem;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixxjem/;1610466368;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610408879;;False;{};gixxkyy;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixxkyy/;1610466404;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tyobama;;;[];;;;text;t2_enjsa;False;False;[];;It’s a really good movie and industry-changing, and originally rated it a 10. I however later changed it to a 9 because it wasn’t “perfect” in the context that some anime’s have been for me. I guess more critical people would rate the movie a 9 or an 8 even though it’s really good still.;False;False;;;;1610408903;;False;{};gixxmmf;False;t3_kv4s8z;False;True;t1_giwpbdf;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixxmmf/;1610466439;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Steins gate fans are the best man 😂 FMAB and Aot fans out here trying to kill each other while steins gate fans are just drinking a cup of tea. Steins gate is amazing tho, it's my 4th favorite.;False;False;;;;1610408931;;False;{};gixxonv;True;t3_kv4s8z;False;True;t1_gixvodg;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixxonv/;1610466480;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Nah Aot is like a 9-10/10;False;False;;;;1610408970;;False;{};gixxriq;True;t3_kv4s8z;False;False;t1_gixvg47;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixxriq/;1610466535;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tctony;;;[];;;;text;t2_3kit8;False;False;[];;"Give it a go sometime! It's a bit lighter than either in tone, but a still a ridiculous and epic plot. Really shines with its *many* well developed characters, overarching and interlocking plot lines and interesting world mechanics. - -I'm partial to SNK since I've been following the manga but they're all 10/10 to me.";False;False;;;;1610408976;;False;{};gixxs0q;False;t3_kv4s8z;False;True;t1_gixuwjd;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixxs0q/;1610466545;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ztaxas;;MAL;[];;https://myanimelist.net/profile/Xaxas;dark;text;t2_qpvjd;False;False;[];;Boruto;False;False;;;;1610408982;;False;{};gixxsg6;False;t3_kv4s8z;False;True;t1_giwpx5b;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixxsg6/;1610466554;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Akilee;;;[];;;;text;t2_dbq04;False;False;[];;A season of gintama used to be #1 for a while I believe. But now it's dropped quite a bit, probably won't last.;False;False;;;;1610409017;;False;{};gixxuyx;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixxuyx/;1610466597;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;K I get the LOGH argument, it's not better imo but it's more entertaining and enjoyable. With LOGH you have to slog through Atleast 1-2 seasons to get immersed. With aot you're instantly in the thick of it. That doesn't make it better but it does make it easily digestible;False;False;;;;1610409047;;False;{};gixxx4k;True;t3_kv4s8z;False;False;t1_gixva4f;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixxx4k/;1610466645;5;True;False;anime;t5_2qh22;;0;[]; -[];;;bobhob314;;;[];;;;text;t2_mmatl;False;False;[];;Tell me more.;False;False;;;;1610409054;;False;{};gixxxlj;False;t3_kv4s8z;False;True;t1_gixndy8;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixxxlj/;1610466654;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ye;False;False;;;;1610409054;;False;{};gixxxmo;True;t3_kv4s8z;False;True;t1_gixustg;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixxxmo/;1610466654;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;😂😂😂😂😂;False;False;;;;1610409066;;False;{};gixxyf9;True;t3_kv4s8z;False;True;t1_gixur4h;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixxyf9/;1610466670;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610409085;;False;{};gixxztx;False;t3_kv4s8z;False;True;t1_gixx6tl;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixxztx/;1610466697;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;For sure, the uprising arc was one of my favorites in the whole series.;False;False;;;;1610409088;;False;{};gixy02p;True;t3_kv4s8z;False;True;t1_gixuqpv;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixy02p/;1610466700;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GGG100;;;[];;;;text;t2_n30n6;False;False;[];;Before rewatching all of AoT just before the final season aired, I would have put FMAB above it but seeing how meticulously planned everything in the story is and how every small detail ends up coming back later, I now concede that AoT is the better show overall. When it comes to fight scenes I think FMAB still has the edge but in story, character development, worldbuilding, and presentation AoT is far better and on a level of its own.;False;False;;;;1610409104;;False;{};gixy15o;False;t3_kv4s8z;False;True;t1_giwyeuh;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixy15o/;1610466719;3;True;False;anime;t5_2qh22;;0;[]; -[];;;boten_anna3;;;[];;;;text;t2_g514x;False;False;[];;Damn. I’ve been reluctant because of the massive amount of episodes (same with Gintama), but this has really made me feel like I’ve been missing out lol;False;False;;;;1610409137;;False;{};gixy3if;False;t3_kv4s8z;False;True;t1_gixwssx;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixy3if/;1610466763;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;True but remember this season isn't gonna be the ending, that's gonna be a seperate listing as either attack on Titan final season part 2 or attack on Titan the final movie;False;False;;;;1610409153;;False;{};gixy4oj;True;t3_kv4s8z;False;True;t1_gixukbj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixy4oj/;1610466784;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Star_Lux22;;;[];;;;text;t2_22d262q9;False;False;[];;You can say the exact same thing about AOT fans. So mostly every fanbase sucks;False;False;;;;1610409184;;1610411500.0;{};gixy6uw;False;t3_kv4s8z;False;False;t1_giwxpbx;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixy6uw/;1610466827;16;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;True, but Aot is amazing when binged as well 🤷 i binged ep 1-59 but still thought it was one of the best even after watching hundereds of animes. It's just leagues above the rest;False;False;;;;1610409241;;False;{};gixyavb;True;t3_kv4s8z;False;True;t1_gixua3e;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixyavb/;1610466901;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gracefuldeer;;;[];;;;text;t2_ru5ut;False;False;[];;That's not how ranked choice voting generally works, you don't give them a score out of 10, rather you vote for your favorite three in order.;False;False;;;;1610409242;;False;{};gixyaz2;False;t3_kv4s8z;False;False;t1_gixgt5s;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixyaz2/;1610466903;4;True;False;anime;t5_2qh22;;0;[]; -[];;;proverbialbunny;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;http://www.anime-planet.com/forum/members/;light;text;t2_wu2e3;False;True;[];;"It's a bit meta, but I'm not a fan of the rating system. - -This is the rating for a season of an anime, which is always going to be rated higher than the entire anime, because the only people watching multiple seasons in are fans. - -This is no dis to Attack on Titan. It's an awesome show and an awesome season, totally worth it, but when I look to reviews I tend to count post season one content's ratings with a grain of salt.";False;False;;;;1610409266;;False;{};gixycol;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixycol/;1610466937;1;True;False;anime;t5_2qh22;;0;[]; -[];;;beSc_1;;;[];;;;text;t2_1yqmp5g5;False;False;[];;Honestly, I am against scoring a show before it is finished. However, spamming 1s just because it can surpass your favorite anime is such a childish move...;False;False;;;;1610409272;;False;{};gixyd6p;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixyd6p/;1610466946;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Honestly, facts, like i refuse to believe the 1 ratings are legit. Anything under 4 stars is fake trolling;False;False;;;;1610409285;;False;{};gixye2m;True;t3_kv4s8z;False;True;t1_gixu5w8;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixye2m/;1610466963;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GGG100;;;[];;;;text;t2_n30n6;False;False;[];;AoT final season shows how you subvert expectations the right way.;False;False;;;;1610409317;;False;{};gixygea;False;t3_kv4s8z;False;True;t1_giwis7f;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixygea/;1610467006;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Akhaian;;;[];;;;text;t2_66nhp;False;False;[];;I think many of the 1 star ratings are going to be from internet hall monitors who have been convinced that AOT is fascist propaganda. The hall monitors always have their hair on fire over something. They've accused AOT for a few years now. Ironically they've been convinced by various hall monitor opinion pieces online which can easily be classified as propaganda.;False;False;;;;1610409322;;False;{};gixygti;False;t3_kv4s8z;False;True;t1_giw2s5a;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixygti/;1610467021;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ImAddictedToKetamine;;;[];;;;text;t2_99deqj6m;False;False;[];;Bro im sorry but aot isn't a 6/10. Just no;False;False;;;;1610409326;;False;{};gixyh2i;False;t3_kv4s8z;False;True;t1_gixvg47;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixyh2i/;1610467025;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nitsua34;;;[];;;;text;t2_86av8j;False;False;[];;"lol the only reason why aot hasent gotten #1 yet is because it isnt over (we want to judge it as a whole) and fmab fandom are freaking out that they will lose face because their ""favorite anime"" wont be number 1 anymore and will have to find a new show to pretend to like............................ imagine if aot was represented as one show on MAL and not as multiple seasons across multiple years.. yeah FMAB is not the greatest show of all time :p";False;False;;;;1610409327;;1610409529.0;{};gixyh3z;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixyh3z/;1610467026;1;True;False;anime;t5_2qh22;;0;[]; -[];;;239990;;;[];;;;text;t2_4jy674xm;False;False;[];;its better to use [https://archive.org/](https://archive.org/);False;False;;;;1610409330;;False;{};gixyhcq;False;t3_kv4s8z;False;True;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixyhcq/;1610467031;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Umm, tf 😂;False;False;;;;1610409340;;False;{};gixyi2a;True;t3_kv4s8z;False;True;t1_gixu5ru;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixyi2a/;1610467045;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Routine_Spinach_8841;;;[];;;;text;t2_516hz73z;False;False;[];;Except hunter x hunter, that thing is a masterpiece.;False;False;;;;1610409353;;False;{};gixyixu;False;t3_kv4s8z;False;True;t1_gixfhj2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixyixu/;1610467061;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kushal_2004;;;[];;;;text;t2_6jz1e75a;False;False;[];;When episodes are closing a perfect 10 on 10, then u cant help but care about the imdb score;False;False;;;;1610409381;;False;{};gixykut;False;t3_kv4s8z;False;False;t1_gix0zhv;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixykut/;1610467095;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;I'd suggest reading the TG manga, i put it among Attack on Titan in quality;False;False;;;;1610409425;;False;{};gixyo0y;True;t3_kv4s8z;False;False;t1_gixxztx;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixyo0y/;1610467160;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ya;False;False;;;;1610409444;;False;{};gixypcf;True;t3_kv4s8z;False;True;t1_gixxjem;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixypcf/;1610467190;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610409446;;False;{};gixypjc;False;t3_kv4s8z;False;True;t1_gixx6tl;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixypjc/;1610467193;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vinsmokesanji3;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/ChrispyAurora;dark;text;t2_84xqi4;False;False;[];;I think that’s a fair compromise.;False;False;;;;1610409482;;False;{};gixys5d;False;t3_kv4s8z;False;False;t1_gixrsgl;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixys5d/;1610467244;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Dyvius;;;[];;;;text;t2_gfzwl;False;False;[];;I think that's an excellent Top 5 as it is, and personally I feel like FMA:B deserves it's spot. AoT is a banger, no doubt, but I don't think it needs to overtake.;False;False;;;;1610409487;;False;{};gixysi8;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixysi8/;1610467251;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ageha_Bot;;;[];;;;text;t2_q67y8;False;False;[];;Last time I checked it (before ep 5) aot S4 had 3400 1/10 I wonder now;False;False;;;;1610409489;;False;{};gixysn2;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixysn2/;1610467254;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LadyStardust72;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/oldefashioned ;light;text;t2_6jiwp;False;False;[];;Always bothered me a bit that series are allowed to be rated/reviewed before they're over.;False;False;;;;1610409496;;False;{};gixyt33;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixyt33/;1610467263;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cuminaburger;;;[];;;;text;t2_6n7yv23g;False;False;[];;Okay I’m sorry but damn I hate AOT fans so much when they say shit like this;False;False;;;;1610409500;;False;{};gixytd7;False;t3_kv4s8z;False;False;t1_gixsc1b;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixytd7/;1610467268;7;True;False;anime;t5_2qh22;;0;[]; -[];;;proverbialbunny;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;http://www.anime-planet.com/forum/members/;light;text;t2_wu2e3;False;True;[];;I think you're misunderstanding. No one is saying there shouldn't be individual ratings. They're saying for the top #100 or top season chart, for people who are looking for a new show to watch, having a rating that is just the first season or a combined rating is ideal for those people.;False;False;;;;1610409515;;False;{};gixyudz;False;t3_kv4s8z;False;True;t1_gixwbb3;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixyudz/;1610467287;2;True;False;anime;t5_2qh22;;0;[]; -[];;;oceLahm;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/AniLahm/;light;text;t2_34l9m1s1;False;False;[];;Personally I prefer AniList, but if AniList becomes more popular than it is now, it will probably suffer from the same issues MAL does. IMDb, Metacritic, MAL and the likes will never be perfect because humans will never be able to be unbiased. Just use what you want to find anime to enjoy.;False;False;;;;1610409523;;False;{};gixyuy3;False;t3_kv4s8z;False;True;t1_gixhzlj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixyuy3/;1610467298;2;True;False;anime;t5_2qh22;;0;[]; -[];;;borntobeprince50;;;[];;;;text;t2_1gg4gxj9;False;False;[];;I have read AOT manga, and I can without any doubt tell you that episodes 15 and 16 will have 10x the impact of episode 5, t it will be number 1 by the end of the season.;False;False;;;;1610409541;;False;{};gixyw5l;False;t3_kv4s8z;False;True;t1_giwwtq1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixyw5l/;1610467322;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jinsmangoricbe;;;[];;;;text;t2_2oj7eba9;False;False;[];;deserve;False;False;;;;1610409557;;False;{};gixyx9s;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixyx9s/;1610467344;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Papercurtain;;;[];;;;text;t2_obner;False;False;[];;"Idk I'm reading the reviews and they're pretty cringy honestly, hyping the show way, way too much. I'm not really sure how MAL picks which reviews to show, but if you compare the top reviews for this with top reviews for more established shows, the review quality is just much worse. - -And no wonder lol, there's been just 5 eps out, and they got it up to the #2 spot out of everything else? Doesn't really make sense to me. The fans been spending too much time on the AoT subreddits and YouTube comment section hype chambers I reckon lol";False;False;;;;1610409577;;False;{};gixyyon;False;t3_kv4s8z;False;False;t1_giwid7f;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixyyon/;1610467371;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Pizza_Rolls_Addict;;;[];;;;text;t2_tjgask8;False;False;[];;You have a point about viewership but the one about production is irrelevant. Whether a show had the same opportunities as another is dumb to bring up because then you'd have to give the same courteousy to every show that had a fucked production line.;False;False;;;;1610409630;;False;{};gixz2f6;False;t3_kv4s8z;False;False;t1_gix6hgz;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixz2f6/;1610467450;8;True;False;anime;t5_2qh22;;0;[]; -[];;;KitMcSelb;;;[];;;;text;t2_ifvo9;False;False;[];;While I like all the top 3 being mentioned, HxH is by far a better anime than any of them.;False;True;;comment score below threshold;;1610409642;;False;{};gixz37z;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixz37z/;1610467465;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;oceLahm;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/AniLahm/;light;text;t2_34l9m1s1;False;False;[];;It's not all about AoT though.;False;False;;;;1610409717;;False;{};gixz8dx;False;t3_kv4s8z;False;True;t1_gixsv8y;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixz8dx/;1610467564;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Jesis;;;[];;;;text;t2_30j5mr8e;False;False;[];;"The beautiful thing about one piece is the arcs are very clearly defined by islands. So its pretty easy to find good spots to take a break after an arc and digest and watch something else and come back. Personally I can't take breaks cuz its just too good lol. Im halfway through my 3rd watch. - -Also you have to watch it in the original Japanese. The voice actors are god tier. In English they change up so much it sounds so cringe. - -Also remember when starting out, its 20 years old, so give the animation a break until you get further in to more recent times.";False;False;;;;1610409720;;False;{};gixz8kh;False;t3_kv4s8z;False;True;t1_gixy3if;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixz8kh/;1610467568;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610409723;;False;{};gixz8s6;False;t3_kv4s8z;False;False;t1_gixyo0y;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixz8s6/;1610467571;1;True;False;anime;t5_2qh22;;0;[]; -[];;;y-c-c;;;[];;;;text;t2_abw7a;False;True;[];;"Well, ranked choice voting is just about establishing a ranked order. It doesn’t have to be favorite 3 candidates or not (those are just conveniences for a political election), and a lot of ranked choice algorithms support ties (e.g. AOT > FMA = Steins > Re:Zero). I was just half proposing establishing a user’s ranked preference from their own scores stemming from the fact that different users may assign different meaning to a “7” so it’s hard to give an absolute meaning to it (which you are doing if you averages different users’ scores) but everyone would agree that if you assign AOT as 8 but FMA as 6, AoT > FMA for you. - -The tricky part here is that a lot of ranked choice algorithms require you to vote on every candidate which is hard to do with thousands of anime titles so maybe you can make it so that all anime titles with no votes from you would be considered tied, and any anime titles that you vote below the average score (say 6) is below them, and otherwise the title is above the non-voted titles. - -Anyway, didn’t want to dive too deeply into this on this sub. Was just a random thought on a topic that I care about! - -(Edit: Also, ranked choice voting does *not* mean Instant Runoff! Instant runoff is just the most popular implementation of ranked choice for political elections since its easiest to understand but there are much better systems out there like different Condorcet systems)";False;False;;;;1610409766;;1610410084.0;{};gixzbse;False;t3_kv4s8z;False;True;t1_gixyaz2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixzbse/;1610467628;3;True;False;anime;t5_2qh22;;0;[]; -[];;;proverbialbunny;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;http://www.anime-planet.com/forum/members/;light;text;t2_wu2e3;False;True;[];;"If you're looking at a top #100 list you're looking at shows that are finished. You're looking for *classics*. - -If you're looking at a top season chart, you're looking for shows that are all equally in progress, unless it's an old season chart and then they're all equally done. - -The longer a show goes, as long as it does not bomb, its ratings will almost always go higher. Because of this, when I'm looking at season charts and there is a squeal, I go off of just the season 1 rating, which reduces fans influencing the rating, giving a better overall experience. When I go off of top \#100 I go off of a combined rating.";False;False;;;;1610409786;;False;{};gixzd7t;False;t3_kv4s8z;False;True;t1_gixb9yq;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixzd7t/;1610467653;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Harbin_111;;;[];;;;text;t2_9l1lcd1v;False;False;[];;Can anyone finally send me the dubbed lol;False;False;;;;1610409851;;False;{};gixzhpr;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixzhpr/;1610467736;1;True;False;anime;t5_2qh22;;0;[]; -[];;;oceLahm;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/AniLahm/;light;text;t2_34l9m1s1;False;False;[];;Not to be rude, but you're also getting very triggered by all this. It's best to just take a step back and enjoy the show you love.;False;False;;;;1610409852;;False;{};gixzhsl;False;t3_kv4s8z;False;False;t1_giwxpbx;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixzhsl/;1610467738;14;True;False;anime;t5_2qh22;;0;[]; -[];;;vinsmokesanji3;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/ChrispyAurora;dark;text;t2_84xqi4;False;False;[];;"Sure but the guy I replied to wasn’t saying that... -But yeah go off";False;False;;;;1610409865;;False;{};gixzipr;False;t3_kv4s8z;False;True;t1_gixyudz;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixzipr/;1610467754;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord-Loss-31415;;;[];;;;text;t2_3z007r9p;False;False;[];;AOT is a good anime but definitely not the best I’ve ever watched. It has its own merits certainly but it’s not “legendary” tier, unless this latest season really pulls out all the stops, I haven’t watched it yet because I’m waiting for it to finish. Everyone is entitled to their opinion of course but I hate statements like “this is the one and only greatest anime, no one can argue”. There have been better animes for me personally but even I would never be arrogant enough to say my top picks are the only ones who deserve to be with the greats.;False;False;;;;1610409880;;False;{};gixzjpo;False;t3_kv4s8z;False;True;t1_gixsc1b;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixzjpo/;1610467775;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NordicHorde;;;[];;;;text;t2_11kylx;False;False;[];;Don't think it deserves the top spot. Certainly not the best anime ever made, not even close. It's just popular.;False;False;;;;1610409909;;False;{};gixzlq9;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixzlq9/;1610467813;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chaderenabs;;;[];;;;text;t2_8yuqmavz;False;False;[];;I'm just curious... WHy ThE FcK WoUlD AnYoNe RaTe AOT 1 star?;False;False;;;;1610409913;;False;{};gixzlys;False;t3_kv4s8z;False;True;t1_giw2s5a;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixzlys/;1610467820;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DSMilne;;;[];;;;text;t2_qu67q;False;False;[];;"That’s a lot of gintama on that list. Is it seriously that good and I’ve been missing out, or is that just power voted up there by cult followers. I honestly thought going into that list I would have seen more than 4 or 5 of the top 30 series... - -I also think it’s weird that different seasons are separated out. Why is AoT not filed under one listing.";False;False;;;;1610409914;;False;{};gixzm34;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixzm34/;1610467823;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zaque_wann;;;[];;;;text;t2_15z5ol;False;False;[];;"People who only watch a handful of anime don't track their watchlost with MAL - -Though in my experience for the past 8 years simce SAO, those who started with SAO are more likely to watch a lot more anime than those who started with SnK. The later usually moved on to only watching a handful of anime like OPM";False;False;;;;1610409937;;False;{};gixznnl;False;t3_kv4s8z;False;True;t1_gixmdso;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixznnl/;1610467851;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LilQuasar;;;[];;;;text;t2_tzbr5mp;False;True;[];;have you watched game of thrones? lmao;False;False;;;;1610409952;;False;{};gixzons;False;t3_kv4s8z;False;True;t1_gixli4d;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixzons/;1610467868;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Eranaut;;;[];;;;text;t2_tyug9gs;False;False;[];;The top 20 being riddled with all the Gintama variations is really annoying, it's taking up spaces that other shows deserve to be in;False;False;;;;1610409955;;False;{};gixzotq;False;t3_kv4s8z;False;False;t1_giwwb7x;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixzotq/;1610467872;5;True;False;anime;t5_2qh22;;0;[]; -[];;;iFlareMC;;;[];;;;text;t2_ayo9w;False;False;[];;yes just watch it;False;False;;;;1610409983;;False;{};gixzqs1;False;t3_kv4s8z;False;False;t1_gixzm34;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixzqs1/;1610467909;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Karen_kaslana;;;[];;;;text;t2_3n10bo31;False;False;[];;The fanbase on reddit is fine, mal is a different cancer thou;False;False;;;;1610409995;;False;{};gixzrl2;False;t3_kv4s8z;False;True;t1_gix6nbi;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixzrl2/;1610467926;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;True Attack on Titan is easier to get into I’ll give you that one but I don’t think it’s the best anime ever;False;False;;;;1610410008;;False;{};gixzsh1;False;t3_kv4s8z;False;True;t1_gixxx4k;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixzsh1/;1610467942;1;True;False;anime;t5_2qh22;;0;[]; -[];;;remmanuelv;;;[];;;;text;t2_mfjwf;False;True;[];;">Kind of makes me sad because I love that movie so much. I have seen some people say it's overrated, but I think for the most part it's still widely praised. - -Jesus dude 8.8 is a fantastic score. Acting like a natural decline of a few .0s is some vendetta is just so weird. - -My favorite show used to be 8.40~ but has gone down to 8.10~. It happens, the fanbase's taste changes, hype goes away and things get more moderately rated by the wide community rather than based just on hardcore fans. - -Doesn't help that MAL has always had a serious recency bias.";False;False;;;;1610410063;;1610410804.0;{};gixzw7x;False;t3_kv4s8z;False;True;t1_giwpbdf;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixzw7x/;1610468010;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Karen_kaslana;;;[];;;;text;t2_3n10bo31;False;False;[];;I have no issue with Ppl rating FMAB the best, but I just simply hate ppl who score manipulate;False;False;;;;1610410072;;False;{};gixzwu1;False;t3_kv4s8z;False;True;t1_giwyeuh;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixzwu1/;1610468022;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LilQuasar;;;[];;;;text;t2_tzbr5mp;False;True;[];;i care because it helps me choose anime to watch next. obviously at this level that doesnt matter;False;False;;;;1610410073;;False;{};gixzwwq;False;t3_kv4s8z;False;True;t1_giw9hbo;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixzwwq/;1610468023;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DSMilne;;;[];;;;text;t2_qu67q;False;False;[];;I know CR has some version of it, is that a correct version to watch? If I’m going to do this I want to do it right.;False;False;;;;1610410089;;False;{};gixzxzc;False;t3_kv4s8z;False;True;t1_gixzqs1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixzxzc/;1610468044;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iFlareMC;;;[];;;;text;t2_ayo9w;False;False;[];;I personally watched it all through vrv. Skip first two episode though, those are filler;False;False;;;;1610410124;;False;{};giy00f0;False;t3_kv4s8z;False;False;t1_gixzxzc;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy00f0/;1610468090;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LilQuasar;;;[];;;;text;t2_tzbr5mp;False;True;[];;but weekly anime are judged as one, even if they change studios;False;False;;;;1610410160;;False;{};giy02uu;False;t3_kv4s8z;False;True;t1_gixfkaa;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy02uu/;1610468136;1;True;False;anime;t5_2qh22;;0;[]; -[];;;proverbialbunny;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;http://www.anime-planet.com/forum/members/;light;text;t2_wu2e3;False;True;[];;Imagine if no one was allowed to rate Berserk or One Piece. Wowza.;False;False;;;;1610410230;;False;{};giy07mu;False;t3_kv4s8z;False;False;t1_gixsyid;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy07mu/;1610468224;4;True;False;anime;t5_2qh22;;0;[]; -[];;;zaque_wann;;;[];;;;text;t2_15z5ol;False;False;[];;You have to take into account that *a lot of* anime fans and weebs are teenagers just discovering their passion and wear certain anime as their personalities. So being immature is like the normal. At this point I just accept MAL rankings as neat, but nothing to fret about.;False;False;;;;1610410270;;False;{};giy0afw;False;t3_kv4s8z;False;False;t1_gix71a4;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy0afw/;1610468275;10;True;False;anime;t5_2qh22;;0;[]; -[];;;chaderenabs;;;[];;;;text;t2_8yuqmavz;False;False;[];;Lol why ch 112 😂😏ig it'll be in ep11;False;False;;;;1610410271;;False;{};giy0aja;False;t3_kv4s8z;False;True;t1_giwxbgy;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy0aja/;1610468277;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610410273;;False;{};giy0ao8;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy0ao8/;1610468279;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crichardson47;;;[];;;;text;t2_ckr1vd5;False;False;[];;fire list, id add monster, perfect blue and imo evangelion to that as well;False;False;;;;1610410332;;False;{};giy0eu4;False;t3_kv4s8z;False;True;t1_gixoz6c;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy0eu4/;1610468354;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Thaxagoodname;;;[];;;;text;t2_jpuqt;False;False;[];;People take anime very seriously. All of that MAL stuff with documenting your progess and making watchlists is overkill, imo. Feels like people watch anime more for the community and less to just watch some nice entertainment.;False;False;;;;1610410334;;False;{};giy0ez7;False;t3_kv4s8z;False;True;t1_gix8g2b;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy0ez7/;1610468357;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LilQuasar;;;[];;;;text;t2_tzbr5mp;False;True;[];;"im not watching the current season yet but rather than that for me its two different anime (with the big reveal). it changed everything, made a relatively generic and simple anime into a masterpiece - -i dont know another anime or show that can be separated like that";False;False;;;;1610410336;;False;{};giy0f5j;False;t3_kv4s8z;False;True;t1_giwis7f;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy0f5j/;1610468360;2;True;False;anime;t5_2qh22;;0;[]; -[];;;yoman076;;;[];;;;text;t2_8eij8jr6;False;False;[];;FMAB is overrated. Its nice. But doesn't deserve number 1.;False;False;;;;1610410337;;False;{};giy0f7g;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy0f7g/;1610468361;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kirsion;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RicardosFlick;light;text;t2_fhdkw;False;False;[];;Having watched both series I think attack on titan does edge out fmab a bit. Main thing is the layered/long term writing and setting building. SnK references shit and what characters say since season 1. While fmab has cool themes and a solid story, I didn't recall exclaiming while watching it like I did with SnK.;False;False;;;;1610410354;;False;{};giy0ggi;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy0ggi/;1610468383;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crichardson47;;;[];;;;text;t2_ckr1vd5;False;False;[];;gankutsuou is the greatest revenge story in anime without a doubt;False;False;;;;1610410355;;False;{};giy0ggp;False;t3_kv4s8z;False;False;t1_gixv6fb;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy0ggp/;1610468384;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Prplehuskie13;;;[];;;;text;t2_3son22;False;False;[];;As the series continues the rank will probably rise, especially with the final episode that will be the finale of the series. Shit is def going to get more wild as the season progresses.;False;False;;;;1610410395;;False;{};giy0jbe;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy0jbe/;1610468435;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LilQuasar;;;[];;;;text;t2_tzbr5mp;False;True;[];;they just have different plots man. fullmetal alchemist is a masterpiece, for me its the perfect anime (in the sense that it doesnt lack anything);False;False;;;;1610410434;;False;{};giy0m1i;False;t3_kv4s8z;False;True;t1_giwf51a;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy0m1i/;1610468484;3;True;False;anime;t5_2qh22;;0;[]; -[];;;longrodvonhuttendong;;;[];;;;text;t2_4ri35;False;False;[];;We will wait to see what happens when the hype dies down. Idk, even when I was 18 and AOT was just starting out I didn't jump on the hype wagon. I've seen some random manga chapters of the story since then and I dont care for what's really going on. Shame, another show I couldn't jump onto like everybody else.;False;False;;;;1610410458;;False;{};giy0nu4;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy0nu4/;1610468515;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DrJWilson;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/drjwilson/animelist;light;text;t2_6zykq;False;False;[];;"Sorry, your comment has been removed. - -- Don't insult an entire swath of people. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610410464;moderator;False;{};giy0o8p;False;t3_kv4s8z;False;True;t1_giy0ao8;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy0o8p/;1610468525;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dGVlbjwzaGVudGFp;;;[];;;;text;t2_30pp0ks9;False;False;[];;In no way is AOT better than steins gate ir fma;False;True;;comment score below threshold;;1610410509;;False;{};giy0rca;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy0rca/;1610468584;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;blablaminek;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;"https://myanimelist.net/animelist/KamiKazeze?status=2&order=4&or";dark;text;t2_12lnj6;False;False;[];;The animation was just good enough? I thought it was THE thing that really stood out in episode 1 (havent watched ep2), it was downright gorgeous. I really hope this anime keeps the quality from ep1.;False;False;;;;1610410565;;False;{};giy0va2;False;t3_kv3vgw;False;False;t1_giw0op8;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giy0va2/;1610468660;13;True;False;anime;t5_2qh22;;0;[]; -[];;;MejaBersihBanget;;;[];;;;text;t2_4a6wkvny;False;False;[];;"> Nobody even want to re-watch early stuff the ending was so bad. - -Not just rewatch... to this day I don't even want to touch a Mass Effect game again thanks to Mass Effect's 3 ending.";False;False;;;;1610410570;;False;{};giy0vmk;False;t3_kv4s8z;False;True;t1_gixok3m;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy0vmk/;1610468667;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LilQuasar;;;[];;;;text;t2_tzbr5mp;False;True;[];;imo attack on titan definitely has more errors (flaws really) than fullmetal alchemist. that doesnt mean one anime is better than the other though, its much more complex than that;False;False;;;;1610410589;;False;{};giy0wyh;False;t3_kv4s8z;False;False;t1_gixi4la;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy0wyh/;1610468691;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Arrikon;;MAL;[];;;dark;text;t2_jv61w;False;False;[];;Tbh I always thought that fma:b and steins gate are a bit overrated and dont really deserve the top spots. Never seen gintama so I cant argue on it, hxh definitely deserves a spot up there. AoT taking the top spot would make the list better imo.;False;False;;;;1610410591;;False;{};giy0x2y;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy0x2y/;1610468693;0;True;False;anime;t5_2qh22;;0;[]; -[];;;jmj666;;;[];;;;text;t2_imzsk;False;False;[];;Nahhh. That's what he was trying to say.;False;False;;;;1610410622;;False;{};giy0zae;False;t3_kv4s8z;False;True;t1_gixzipr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy0zae/;1610468734;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lawncorazon;;;[];;;;text;t2_pgf22ol;False;False;[];;More to be honest, just look at r/titanfolk lol;False;False;;;;1610410655;;False;{};giy11m8;False;t3_kv4s8z;False;False;t1_gixiw64;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy11m8/;1610468777;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610410661;;False;{};giy120x;False;t3_kv4s8z;False;True;t1_gixgt5s;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy120x/;1610468784;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silvia_C_;;;[];;;;text;t2_5egvkc19;False;False;[];;I honestly don't care, both of them are fantastic shows and deserve to be in the top spots.;False;False;;;;1610410754;;False;{};giy18fe;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy18fe/;1610468899;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Staytrippy_24;;;[];;;;text;t2_54ldse8l;False;False;[];;AoT is the only anime I’ve watched and honestly it’s fucking heat so someone put me on the something similarly as good with the badass fight scenes and I’ll start watching it rn.;False;False;;;;1610410772;;False;{};giy19oi;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy19oi/;1610468922;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MejaBersihBanget;;;[];;;;text;t2_4a6wkvny;False;False;[];;Because that was when they ran out of source material and had to start making stuff up;False;False;;;;1610410791;;False;{};giy1b1k;False;t3_kv4s8z;False;True;t1_gixmwvi;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy1b1k/;1610468946;3;True;False;anime;t5_2qh22;;0;[]; -[];;;tjl73;;MAL;[];;http://myanimelist.net/animelist/tjl1973;dark;text;t2_g95ad;False;False;[];;"I think a 5 for Majo no Tabitabi is kind of harsh. That's not an ""objective perspective"". Is it really worse than something like SAO? - -It's not as good as Kino's Journey, but I think a score around 7 is perfectly fair.";False;False;;;;1610410815;;False;{};giy1cos;False;t3_kv4s8z;False;False;t1_gixvh0p;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy1cos/;1610468976;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LilQuasar;;;[];;;;text;t2_tzbr5mp;False;True;[];;"but the seasonal anime have different entries for their different seasons - -they could do that for anime / sesons that will finish soon, with a definitive date or separate them between finished and not finished - -rating an anime seeing 5 episodes is dumb, specially if it will be compared to whole anime";False;False;;;;1610410828;;False;{};giy1dod;False;t3_kv4s8z;False;False;t1_gixsyid;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy1dod/;1610468994;4;True;False;anime;t5_2qh22;;0;[]; -[];;;dGVlbjwzaGVudGFp;;;[];;;;text;t2_30pp0ks9;False;False;[];;Fmab is better, I will never watch aot;False;False;;;;1610410942;;False;{};giy1lqn;False;t3_kv4s8z;False;True;t1_gixqdby;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy1lqn/;1610469146;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ANINETEEN;;;[];;;;text;t2_4g33jvxm;False;False;[];;It might take a while to settle and depending on how the final chapters conclude, but we could be witnessing the 🐐;False;False;;;;1610411023;;False;{};giy1rhb;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy1rhb/;1610469259;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cyclone_96;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CrazyCyclone96;light;text;t2_es52y62;False;False;[];;"‘Stream list on thread’? What are you referring to? - -If you’re talking about discussion thread stream lists, I’m pretty sure Muse Asia is already there.";False;False;;;;1610411095;;False;{};giy1wl3;False;t3_kv4qrn;False;True;t1_gixwgb6;/r/anime/comments/kv4qrn/youtube_anime_titles_available_in_bangladesh/giy1wl3/;1610469358;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Grenadier020;;;[];;;;text;t2_zapcn;False;False;[];;"That's my point, saying FMA 8/10 is the same as rating snk 6/10 - -I like this Snk season, but come on, their history and characters aren't comparable, they sit in two different tiers.";False;True;;comment score below threshold;;1610411165;;False;{};giy21nm;False;t3_kv4s8z;False;True;t1_gixyh2i;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy21nm/;1610469459;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;Sent1nelTheLord;;;[];;;;text;t2_3d8fnnxu;False;False;[];;AOT beating FMAB? possible. as a huge fan of both anime, i can feel that attack on titan can beat it. FMAB was fantastic on its own but attack on titan is taking it on a whole other level;False;False;;;;1610411220;;False;{};giy25gd;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy25gd/;1610469537;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Thaxagoodname;;;[];;;;text;t2_jpuqt;False;False;[];;But it's a package deal. If One Punch Man Season 2 was superior to Season 1, you wouldn't tell someone to just skip to the former and treat it as its own anime, right? When all's said and done, it's still One Punch Man no matter how you slice it.;False;False;;;;1610411222;;False;{};giy25le;False;t3_kv4s8z;False;True;t1_gixjprz;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy25le/;1610469539;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LichKingHeyward;;;[];;;;text;t2_abdf4r3;False;False;[];;This literally means nothing since FMAB came out a while ago during a time when anime wasn’t as nearly as mainstream as it is now. Comparing the two on a website doesn’t really show which one is better just which is currently more popular.;False;False;;;;1610411250;;False;{};giy27me;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy27me/;1610469577;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;venusverenice;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/virtualvere;light;text;t2_1jq6bd1e;False;False;[];;I love both FMAB and AOT (AOT is my all time favorite though) so I don't really mind who takes number 1. It would be cool if AOT could do it;False;False;;;;1610411327;;False;{};giy2cyp;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy2cyp/;1610469685;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;No, it shows which one is better. Popularity has almost nothing to do with the top rankings. Stuff like logh with 200k followers is up there. Anything rated good makes it onto the best list. The popularity list is seperate;False;False;;;;1610411335;;False;{};giy2dif;True;t3_kv4s8z;False;True;t1_giy27me;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy2dif/;1610469698;3;True;False;anime;t5_2qh22;;0;[]; -[];;;aronyn;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aronyn19;light;text;t2_116gpg;False;False;[];;So you're rating the series on what it's going to be? What the fuck... The 5 episodes we've had are amazing and I won't say it doesn't deserve to be at its spot but that line of reasoning is actually so stupid;False;False;;;;1610411389;;False;{};giy2hd5;False;t3_kv4s8z;False;False;t1_giw43rj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy2hd5/;1610469774;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yelsamarani;;;[];;;;text;t2_od816;False;False;[];;still can't understand the people who stake their entire beings on a fan rating on a website.;False;False;;;;1610411406;;False;{};giy2ikw;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy2ikw/;1610469796;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Grenadier020;;;[];;;;text;t2_zapcn;False;False;[];;I don't see it, I mean I dropped snk like 2 seasons ago because of the shitty characters.;False;False;;;;1610411408;;False;{};giy2io8;False;t3_kv4s8z;False;True;t1_gixxriq;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy2io8/;1610469797;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ikr the amount of them is crazy,;False;False;;;;1610411430;;False;{};giy2k7q;True;t3_kv4s8z;False;True;t1_giy2ikw;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy2k7q/;1610469828;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Bruhhhhh, if I dropped FMAB during the snow arc coz it got boring there. And said FMAB is trash, that doesn't represent shit;False;False;;;;1610411470;;False;{};giy2mzb;True;t3_kv4s8z;False;False;t1_giy2io8;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy2mzb/;1610469882;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ImAddictedToKetamine;;;[];;;;text;t2_99deqj6m;False;False;[];;I prefer the history and world building of aot much more tbh but each to their own i guess;False;False;;;;1610411564;;False;{};giy2tml;False;t3_kv4s8z;False;True;t1_giy21nm;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy2tml/;1610470014;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;"Edit that comment, I haven't seen 1 toxic steins gate fan don't break that streak, edit it to ""In no way is Aot better than fma"" or to ""i think steins is better but whatever""";False;False;;;;1610411574;;False;{};giy2uc5;True;t3_kv4s8z;False;True;t1_giy0rca;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy2uc5/;1610470027;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610411584;;False;{};giy2v0j;False;t3_kv4s8z;False;True;t1_giy0afw;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy2v0j/;1610470041;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Routine_Spinach_8841;;;[];;;;text;t2_516hz73z;False;False;[];;don't forget Pingu in the city, that masterpiece overtake fmab too.;False;False;;;;1610411645;;False;{};giy2zbv;False;t3_kv4s8z;False;False;t1_gixpvqu;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy2zbv/;1610470125;6;True;False;anime;t5_2qh22;;0;[]; -[];;;LichKingHeyward;;;[];;;;text;t2_abdf4r3;False;False;[];;You realize the list is based on average rating right? So the more popular anime currently will always have more people currently voting or leaving a review whichever the site uses to rate it. If it FMAB came out last year I’d agree with your statement but it came out over a decade ago, no one is giving it a 10 star rating everyday especially since anime again like I said wasn’t as popular as it is now. Of course AOT is going to be flooded with reviews saying how good it is it just came out.;False;False;;;;1610411647;;False;{};giy2zh5;False;t3_kv4s8z;False;True;t1_giy2dif;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy2zh5/;1610470128;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;I'd also recommend reading the Tpn manga, they're squeezing in the same amount of chapters as tokyo ghoul s3. It's getting fucked bad. Read the manga, coz the next arc is amazing.;False;False;;;;1610411664;;False;{};giy30p9;True;t3_kv4s8z;False;True;t1_gixz8s6;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy30p9/;1610470153;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aronyn;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aronyn19;light;text;t2_116gpg;False;False;[];;"OPs comments all over this thread just scream fanboyism to an insane degree. I gave S3 P2 a 10/10 because it turned out amazing. Why the fuck would I give this show a 10 on the PROMISE that it will be a 10? The build up is not a 10 so far. Rating a currently airing anime on the promise of future episodes by manga readers is actually A grade retardation. - -How the fuck can this anime start at 9.1 on the first episode? Right because only Attack on Titan fans are still watching the anime and going to rate it right away. Imagine thinking you're not being a toxic fanbase by heralding the first 5 episodes of this season as being better than all of Steins;Gate and FMAB. You've gotta be blind.";False;False;;;;1610411724;;False;{};giy34yg;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy34yg/;1610470243;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;JDantesInferno;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/BigBodyBepis;light;text;t2_20ieunh;False;False;[];;"Keep in mind that overall scores and reviews are at their most useful when the season has concluded. Nobody is even able to write a truly comprehensive review of a season that’s only 1/3 the way through. - -The high scores and glowing reviews that you’re seeing are: - -a. People who really enjoyed the way that this season has delivered on the plot and promises from previous seasons - -b. People who were manga readers pleased with a very well executed adaptation - -c. People who want to boost scores as much as possible - -Since there are over 3000 people giving 1/10, AOT fanatics would need to have roughly 30000 people giving *disingenuous*!10/10 scores just to recoup the points back to the 9.12 range (and that’s assuming the category “a” and “b” people all gave 10/10 scores!). We can safely say that the category “c” people aren’t the sole reason that this season is rated so highly. - -It’s just a really good season so far, and many fans can’t imagine it being done any better than it currently is.";False;False;;;;1610411767;;False;{};giy37y8;False;t3_kv4s8z;False;True;t1_gixyyon;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy37y8/;1610470301;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IncredibilisCentboi;;;[];;;;text;t2_273uzipo;False;False;[];;"Once again FMAB ""fans"" can't take a fact that better shows exist, and SNK in my opinion is better, growth of Eren from S1 to S4 is massive";False;False;;;;1610411881;;False;{};giy3fyz;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy3fyz/;1610470461;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CunningKingLius;;;[];;;;text;t2_9pxyryp9;False;False;[];;Im surprised HxH is on Top5 considering that most arcs are kinda meh and the only good arcs are the York New arc and CA arc. Even the CA arcs that was considered the best in anime was dull start to mid episodes.;False;False;;;;1610411885;;False;{};giy3g8d;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy3g8d/;1610470466;0;True;False;anime;t5_2qh22;;0;[]; -[];;;tjl73;;MAL;[];;http://myanimelist.net/animelist/tjl1973;dark;text;t2_g95ad;False;False;[];;"I'm not a big fan of Steins;Gate either. The characters really turned me off the series. - -But, I'm also the person who doesn't particularly like Madoka. I liked it better when I saw the original, Faust (which I have actually watched the opera for). Madoka I just see an a magical girl version of Faust, so I don't have quite the praise others have for it.";False;False;;;;1610411907;;False;{};giy3hsu;False;t3_kv4s8z;False;True;t1_gix72ov;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy3hsu/;1610470498;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DoombotBL;;;[];;;;text;t2_imbw7;False;False;[];;Reminds me of what WIT Studio did for Kabaneri of the Iron Fortress, that retro look hits me in the feels;False;False;;;;1610411935;;False;{};giy3jrc;False;t3_kv3vgw;False;True;t3_kv3vgw;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giy3jrc/;1610470539;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;That’s not what Your Name is about though. It’s not a peak piece of literature, it’s a peak movie experience. Which I think it nails. It’s not a movie meant for the super analytical crowd, but I guess many still try to view it from that lens.;False;False;;;;1610411951;;False;{};giy3kxp;False;t3_kv4s8z;False;True;t1_gixv1uk;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy3kxp/;1610470561;0;True;False;anime;t5_2qh22;;0;[]; -[];;;dGVlbjwzaGVudGFp;;;[];;;;text;t2_30pp0ks9;False;False;[];;I however have seen planty of toxic AOT fans, so no I won't edit it;False;False;;;;1610411960;;False;{};giy3llw;False;t3_kv4s8z;False;True;t1_giy2uc5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy3llw/;1610470574;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Take a look at the rating distribution stats;False;False;;;;1610411992;;False;{};giy3nrz;False;t3_kv4s8z;False;True;t1_gixtcik;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy3nrz/;1610470622;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aronyn;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aronyn19;light;text;t2_116gpg;False;False;[];;The anime is currently airing... you can't immediately get rid of all the 1s the second they appear. You reactionary people are actually just so sad to see, Jesus Christ. Let the season end, let some time pass, and usually an anime ends up around where it should be. If its exact positioning affects you so much, you need to find something else to care about in your life;False;False;;;;1610412065;;False;{};giy3t2d;False;t3_kv4s8z;False;True;t1_gix6fjl;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy3t2d/;1610470737;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Walt_Draper;;;[];;;;text;t2_5fq2xspa;False;False;[];;The hype is strong with this one;False;False;;;;1610412074;;False;{};giy3toa;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy3toa/;1610470748;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Omegon_;;;[];;;;text;t2_13ht7v3;False;False;[];;Ironic, considering recent AoT plot;False;False;;;;1610412104;;False;{};giy3vri;False;t3_kv4s8z;False;False;t1_gixn6ac;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy3vri/;1610470790;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Peterociclos;;;[];;;;text;t2_hjl31xu;False;False;[];;It is MAL so take everything there with a grain of salt;False;False;;;;1610412126;;False;{};giy3xdd;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy3xdd/;1610470828;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Not talking about Aot fans god damn it, i said toxic steins gate fans. Don't break the streak coz every steins gate fan on this post so far has just started there opinion without being toxic.;False;False;;;;1610412204;;False;{};giy42qj;True;t3_kv4s8z;False;True;t1_giy3llw;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy42qj/;1610470927;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chaderenabs;;;[];;;;text;t2_8yuqmavz;False;False;[];;"Lol can't we do so bc they also did this way, I recall SG with only 5 episodes aired was too on top, and why not? Can't they vote so bc these 5eps were bad or there's no warranty it'd remain this good? I've read the Manga to know how dope this season overall will be (better than s1&3)&newly aired ep was lit so there's no wonder it's risen up in rates but the whole point now is FMAB & SG fan boys who'd give aot s4 3k one stars JuSt Bc 5 Ep AiReD";False;False;;;;1610412283;;False;{};giy48d9;False;t3_kv4s8z;False;True;t1_giy34yg;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy48d9/;1610471048;2;True;False;anime;t5_2qh22;;0;[]; -[];;;x3iv130f;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/x3iv130f/;light;text;t2_puqpe;False;False;[];;"I think people got tired of Your Name being over saturated whereas FMA:B got a nostalgia boost. - -People's feelings for things definitely evolve over time.";False;False;;;;1610412288;;False;{};giy48ow;False;t3_kv4s8z;False;False;t1_giwv07x;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy48ow/;1610471054;4;True;False;anime;t5_2qh22;;0;[]; -[];;;timecronus;;;[];;;;text;t2_6b4j5;False;False;[];;If you had to attach some form of identification to your account or voting system, you would see a lot less skewed results;False;False;;;;1610412336;;False;{};giy4bzb;False;t3_kv4s8z;False;True;t1_gixgt5s;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy4bzb/;1610471116;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Routine_Spinach_8841;;;[];;;;text;t2_516hz73z;False;False;[];;Legend of The Galactic heroes is much better than fmab and it stills ranks low, that masterpiece didn't reached top one thanks to the 1score spam :(;False;False;;;;1610412372;;False;{};giy4egf;False;t3_kv4s8z;False;True;t1_gixen1t;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy4egf/;1610471162;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;chaderenabs;;;[];;;;text;t2_8yuqmavz;False;False;[];;No;False;False;;;;1610412405;;False;{};giy4gox;False;t3_kv4s8z;False;False;t1_giy0rca;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy4gox/;1610471218;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;"Stfu honestly, it's stupid arguing that ""it's the first 5 epsiodes"" coz it's not honestly. It's ep 60-64, the previous 59 Epsiodes have had a major influence on what each detail in these 5 means. Something as simple as the way the concentration camps work are really interesting for watchers. However it wouldn't be interesting for new comers to the show cox that's where they started. You can't seperate 1 story into different parts and it's dumb mal does that.";False;False;;;;1610412423;;False;{};giy4hyv;True;t3_kv4s8z;False;True;t1_giy34yg;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy4hyv/;1610471241;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;WickedDemiurge;;;[];;;;text;t2_h481n;False;False;[];;">I feel it's good to debate as discussions like these reveal that realistic is not always good, blurry is not always good, and crisp line-art is not always good. -> ->Lots of people have ideas of what the ""best"" is or what standards ""should"" be, but when you actually apply an idea of perfection to a work of art it just ends up being worse alot of the time. Art is inherently imperfect and so there's no real rule that says you can't just grab the ""limitations"" of the past and recontextualise them as an enhancement. - -The one hard and fast rule should be that style and approach should always be considered. I think Mushoku and Kumo both made very good choices, with the former being more traditional and pastoral to match the first two episodes (I got the early release) and the latter being more colorful to match tone and using CGI to help with the otherwise nearly impossible task of making a character who is both very human and very spidery. - -&#x200B; - -Some video games have managed this really well, like Darkest Dungeon matching art, sound, narration, and game mechanics with tone.";False;False;;;;1610412499;;False;{};giy4nae;False;t3_kv3vgw;False;False;t1_giwwlqa;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giy4nae/;1610471347;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;If you hate it you can always just leave and turn off reddit 🤷;False;False;;;;1610412507;;False;{};giy4nvj;True;t3_kv4s8z;False;True;t1_gixrhkb;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy4nvj/;1610471357;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;az-anime-fan;;;[];;;;text;t2_ehh5dbl;False;False;[];;"it's both generic and not... how to explain. - -First of all it's called the grandaddy of isekai not because it's the first isekai, but because it created the isekai wave that happened after SAO aired. Essentially, this was a webnovel (and an extremely popular one) before SAO hit the airwaves, and SAO created massive interest in game like or trapped in a fantasy world stories. People in japan went looking for those stories and found Mushoku Tensei, and it's popularity exploded both in Japan and outside of it, quickly becoming THE isekai genre to most reader. - -Following this explosion in popularity for Mushoku Tensei, other webnovels (Overlord, Slime Tensei, Re:Zero) got book contracts, then anime, while Mushoku Tensei labored as the single most popular and genre defining webnovel available online. Eventually getting it's own book and manga, yet no anime... for the reason it's NOT generic... - -Mushoku Tensei takes world building to a new level, unheard of in Japanese light novels. The world is fleshed out, the characters are fleshed out, the cast numbers in the hundreds, the whole world is visited at some point in time, there is a rich meta plot to the world, and the main character, while he's the main character we view the world through, isn't the main character of the story being told about the world. Which creates a unique dynamic. Furthermore, this story follows the main character from birth through to death, a whole life worth of stories, villians and trials... this depth of cast and character make the world almost living and breathing on the pages of the story. And create a daunting problem for an anime adaption. - -There is too much material to possibly adapt in 100 episodes let alone 12. - -12 wouldn't even get the viewer into the actual main meta plot of the world. So an anime adaption has to be a major investment for anyone who wants to do one. This story is a slow burn to unfold, and the main plot doesn't even get reveled until the adult chapters so while this story is beloved, and insanely highly ranked 6 years after it's completion, it remained unadapted until now due to the investment needed to fund this anime project. - -So why is this the ""granddaddy"" of isekai? Because it is probably the single most important story to create the isekai genre outside of SAO (not that SAO is strictly speaking an Isekai), as a result many many stories were inspired by it and copy many of the story beats in MT, turning those story beats into genre defining tropes. As a result, you'll probably find many story tropes to be ""generic"" as you'll have seen them a million times before by this point in time. Of course the difference is in the detail, and I suspect as generic as parts of the story get, you'll find the execution unique enough to find great enjoyment in it.";False;False;;;;1610412513;;False;{};giy4oai;False;t3_kv3vgw;False;False;t1_giw1inn;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giy4oai/;1610471365;8;True;False;anime;t5_2qh22;;0;[]; -[];;;_Zig;;;[];;;;text;t2_r3byl;False;False;[];;"I mean, just look at the rankings - -The rankings indicate whether majority of the viewership like it or not, and since the score is so high, it means majority think it’s better than great";False;False;;;;1610412518;;False;{};giy4oma;False;t3_kv4s8z;False;False;t1_gixiu1c;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy4oma/;1610471370;4;True;False;anime;t5_2qh22;;0;[]; -[];;;aronyn;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aronyn19;light;text;t2_116gpg;False;False;[];;Okay but MAL doesn't work like that. This isn't a cumulative rating. This is a rating for AoT Final Season ONLY. This is a rating for only the first 5 episodes of this season. Your reasoning for rating it a 10 on the promise of future content is still stupid af, separate from MAL's separation of seasons.;False;False;;;;1610412575;;False;{};giy4sor;False;t3_kv4s8z;False;True;t1_giy4hyv;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy4sor/;1610471449;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Omegon_;;;[];;;;text;t2_13ht7v3;False;False;[];;Finally I saw someone with similar opinion.;False;False;;;;1610412586;;False;{};giy4tff;False;t3_kv4s8z;False;True;t1_gix781x;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy4tff/;1610471468;1;True;False;anime;t5_2qh22;;0;[]; -[];;;az-anime-fan;;;[];;;;text;t2_ehh5dbl;False;False;[];;"none of those other series were a quarter as popular as MT or even a fraction as popular. - -&#x200B; - -I think you are mistaking something here. it's the granddaddy because it's the one EVERYONE read, loved and later copied shamelessly, not because it was the first.";False;False;;;;1610412600;;False;{};giy4ufj;False;t3_kv3vgw;False;False;t1_gixeo3i;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giy4ufj/;1610471487;14;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Those 5 épisodes alone have gotten a 10/10 from me coz that's how simply good they're.;False;False;;;;1610412619;;False;{};giy4vq3;True;t3_kv4s8z;False;False;t1_giy4sor;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy4vq3/;1610471517;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IcePokeTwoSoon;;;[];;;;text;t2_164or7;False;False;[];;Fmab deserves 1. The fan base does not deserve it. So unbelievably toxic to outsiders, so contrary to the tone of the show. I almost want it to lose the slot because of the way people obsess over it.;False;False;;;;1610412696;;False;{};giy512y;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy512y/;1610471635;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;FMAB is a fairly mature show so I have no idea how the fan base is toxic;False;False;;;;1610412739;;False;{};giy544s;True;t3_kv4s8z;False;True;t1_giy512y;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy544s/;1610471693;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aronyn;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aronyn19;light;text;t2_116gpg;False;False;[];;Okay, that's perfectly fine. Rate the season on the content that's in the season. That isn't what you've said in countless other comments though?? You keep mentioning how great this season will be and how you're rating it a 10 based on that. And in other comments you base the 10 rating on episodes 1-60...;False;False;;;;1610412789;;False;{};giy57mq;False;t3_kv4s8z;False;True;t1_giy4vq3;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy57mq/;1610471760;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Crazhand;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Crazhand/;light;text;t2_tgb9f;False;False;[];;Interesting how opinions work. 120-122 made me hate the series and now I can't wait for it to end.;False;False;;;;1610412848;;False;{};giy5bpl;False;t3_kv4s8z;False;False;t1_gixeit0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy5bpl/;1610471837;0;True;False;anime;t5_2qh22;;0;[]; -[];;;dIoIIoIb;;MAL;[];;http://myanimelist.net/animelist/dIoIIoIb;dark;text;t2_cvqx4;False;False;[];;"I don't think ""ther should be a romance in this romance"" is asking that much";False;False;;;;1610412863;;False;{};giy5cto;False;t3_kv4s8z;False;True;t1_giy3kxp;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy5cto/;1610471856;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sendme_Ojeda_Nudes;;;[];;;;text;t2_rwwz5oh;False;False;[];;How can someone get salty over that? Did they ever try to check the anime in the first place? Because you quickly see how that is just a meme;False;False;;;;1610412866;;False;{};giy5d1p;False;t3_kv4s8z;False;True;t1_gixpvqu;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy5d1p/;1610471861;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Also keep in mind, almost everyone who rates the series mid way has a in-progress rating. Which normally changes after each episode. If aot s4 did something bad I'd make it drop in rating.;False;False;;;;1610412874;;False;{};giy5djg;True;t3_kv4s8z;False;True;t1_giy57mq;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy5djg/;1610471869;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;">you reactionary people - -Idk if you meant to reply to me or not but I was just simply responding to their statement. I in no way stated that I cared what happens on mal and if you take a look at my [post history](https://www.reddit.com/r/anime/comments/ksoak3/what_i_learned_from_years_on_mal_a_case_study/gih6y1k/?utm_source=share&utm_medium=ios_app&utm_name=iossmf&context=3) you’ll see I tell people to only use MAL as a storage for what they’ve seen and not to care about ratings. - ->you need to find something else to care about in your life - -Even if I did care, why are you so bothered by that? Instead of trying to go at someone for their opinion, you should take your own advice and “find something else to care about” but instead you go out of your way to leave a pointless comment...";False;False;;;;1610412917;;False;{};giy5gmc;False;t3_kv4s8z;False;True;t1_giy3t2d;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy5gmc/;1610471927;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IcePokeTwoSoon;;;[];;;;text;t2_164or7;False;False;[];;Totally agree. I love the show, but the mentality speaks for itself by the fact they negative review bomb other shows as opposed to positive review bombing fmab. It’s a great show with very socially progressive themes but I guess swing and a miss with the fan base. Right now, AOT is my three, code geass holds that 2 spot but barely;False;False;;;;1610412919;;False;{};giy5grd;False;t3_kv4s8z;False;True;t1_giy544s;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy5grd/;1610471929;2;True;False;anime;t5_2qh22;;0;[]; -[];;;shadebedlam;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Shadebedlam;light;text;t2_fl41u;False;False;[];;"I love AOT but to be honest the number 1 (FMAB) and number 3 (Steins;Gate) should be switched and AOT should stay at 2.";False;False;;;;1610412982;;False;{};giy5l5u;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy5l5u/;1610472014;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sendme_Ojeda_Nudes;;;[];;;;text;t2_rwwz5oh;False;False;[];;I dont know if such people exist, but the amount of 1s in comparision to 5-2 cannot be justified.;False;False;;;;1610413013;;False;{};giy5nag;False;t3_kv4s8z;False;False;t1_gixd93w;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy5nag/;1610472054;9;True;False;anime;t5_2qh22;;0;[]; -[];;;aronyn;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aronyn19;light;text;t2_116gpg;False;False;[];;Your post history and that comment really conflict then huh? You should have the brain to realize that a currently airing anime needs time to have the reviews filtered out;False;False;;;;1610413045;;False;{};giy5pgg;False;t3_kv4s8z;False;True;t1_giy5gmc;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy5pgg/;1610472096;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;If you’re gonna be a troll at least take your mal off your flair so people can’t see you rating fmab a 10. No wonder you’re so heated and replying to everyone in these comments;False;False;;;;1610413118;;False;{};giy5ult;False;t3_kv4s8z;False;True;t1_giy5pgg;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy5ult/;1610472198;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dcxr;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/dcxr;light;text;t2_117snpa3;False;True;[];;I feel like if the show is either over 75% completed or has over 20 episodes aired for a longer series, only then should the votes be counted. But I'm not an MAL admin so I have no say :P;False;False;;;;1610413123;;False;{};giy5uyd;False;t3_kv4s8z;False;True;t1_giy07mu;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy5uyd/;1610472204;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tanya852;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tanya852;light;text;t2_14x5gw;False;False;[];;"They didn't overtake it. #2 is the highest it got before MAL implemented a new system. - -EDIT: Why the downvotes? I never said anything about the shows themselves. I'm simply saying that #2 is the highest they got before MAL implemented their new system. Grow up, people.";False;False;;;;1610413243;;1610450656.0;{};giy63fa;False;t3_kv4s8z;False;True;t1_gixpvqu;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy63fa/;1610472387;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Mappa is doing this season if you didnt know;False;False;;;;1610413267;;False;{};giy653d;True;t3_kv4s8z;False;True;t1_gixs5dx;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy653d/;1610472422;2;True;False;anime;t5_2qh22;;0;[]; -[];;;vitaminar;;;[];;;;text;t2_ikhcm;False;False;[];;I guess I had to add the /s? XD;False;False;;;;1610413371;;False;{};giy6cfh;False;t3_kv4s8z;False;True;t1_giy653d;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy6cfh/;1610472575;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Oh b🤔😂;False;False;;;;1610413440;;False;{};giy6hbu;True;t3_kv4s8z;False;True;t1_giy6cfh;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy6hbu/;1610472675;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610413452;;False;{};giy6i41;False;t3_kv4s8z;False;True;t1_giy5ult;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy6i41/;1610472691;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Gundam2024;;;[];;;;text;t2_7v8z1jsb;False;False;[];;Why? It is what it is, my cousins who always thought anime was sad suddenly became weebs overnight, and they brought the “oh? You like that anime? Lmao, get a life” over with them, I don’t want the community to get corrupted, I especially don’t want More companies like Funimation forming;False;False;;;;1610413474;;False;{};giy6jq9;False;t3_kv4s8z;False;True;t1_gixxxlj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy6jq9/;1610472722;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Chronoflyt;;;[];;;;text;t2_5apbu2fl;False;False;[];;"> That's not an ""objective perspective"". - -Why not? I'm not basing a 5 off my personal enjoyment but on how well the narrative and world was constructed. While a ""7"" will mean different things for different people, to me that means ""fairly good"". Majo no Tabitabi, despite looking very pretty, was not written well. Even when, 9 episodes in, they gave the perfect setup for character development, the writers copped out and started a side-story for other characters. When next we see Elaina, it's like nothing happened at all. From a writing perspective, that's atrocious. - -> Is it really worse than something like SAO? - -As I said, I don't put much stock in MAL's ratings. - ->I think a score around 7 is perfectly fair. - -Fair enough. What do you think makes it worth a seven?";False;False;;;;1610413500;;False;{};giy6lip;False;t3_kv4s8z;False;True;t1_giy1cos;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy6lip/;1610472757;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;strqaz;;;[];;;;text;t2_wtb3j;False;False;[];;"#17 on all time TV episodes on IMDB - -I wonder if its gonna reach Perfect Game or Hero levels - -https://www.imdb.com/search/title/?title_type=tv_episode&num_votes=1000,&sort=user_rating,desc";False;False;;;;1610413512;;False;{};giy6me1;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy6me1/;1610472774;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RainTalonX;;;[];;;;text;t2_qlypp;False;False;[];;Crazy since its not nearly as good as FMAB;False;False;;;;1610413518;;False;{};giy6mws;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy6mws/;1610472785;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;strqaz;;;[];;;;text;t2_wtb3j;False;False;[];;"Ranked 17 right now on episode list IMDB - -https://www.imdb.com/search/title/?title_type=tv_episode&num_votes=1000,&sort=user_rating,desc";False;False;;;;1610413575;;False;{};giy6qtk;False;t3_kv4s8z;False;True;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy6qtk/;1610472870;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AHomicidalTelevision;;;[];;;;text;t2_4og3yr;False;False;[];;is the anime actually that good though? i'm reading the manga and this final arc has been kinda weak imo. it feels like its jumped the shark over and over to the point where the story barely makes sense.;False;False;;;;1610413593;;False;{};giy6s4f;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy6s4f/;1610472897;0;True;False;anime;t5_2qh22;;0;[]; -[];;;CoolingOreos;;MAL;[];;http://myanimelist.net/profile/orosan;dark;text;t2_ficen;False;False;[];;i watched only 3?;False;False;;;;1610413618;;False;{};giy6tsu;False;t3_kv4s8z;False;True;t1_gixczfw;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy6tsu/;1610472930;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MaxibourritosOrElias;;;[];;;;text;t2_29r4s9vz;False;False;[];;The funny thing is that on 450k people, 91 of them completed this season of SNK;False;False;;;;1610413641;;False;{};giy6vi5;False;t3_kv4s8z;False;True;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy6vi5/;1610472969;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Karen_kaslana;;;[];;;;text;t2_3n10bo31;False;False;[];;I mean if u look at the forums you will understand why;False;False;;;;1610413655;;False;{};giy6weu;False;t3_kv4s8z;False;True;t1_gix6eun;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy6weu/;1610472985;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeke-Freek;;HB;[];;ZekeFreek;dark;text;t2_10s78i;False;False;[];;"I honestly feel like most anime could use some more post-processing effects. There's so many shows that just look too washed out and overly clean that could really benefit from cranking up the contrast at the very least. - -I know we can do it ourselves with our display settings, or even edit the episodes ourselves if we're really committed, but I never understood why the baseline is usually so flat.";False;False;;;;1610413772;;False;{};giy74jp;False;t3_kv3vgw;False;True;t3_kv3vgw;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giy74jp/;1610473138;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your comment has been removed. - -- Do not attack, insult or harass other Redditors. Don't speculate on anyone's mental state. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610413836;moderator;False;{};giy78xl;False;t3_kv4s8z;False;True;t1_giy6i41;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy78xl/;1610473223;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chalo1227;;;[];;;;text;t2_fs667;False;False;[];;How many of those do you think will go to an anime site to vote for the anime ? I am a seasoned watcher and never voted on mal other than Interspecies just to spite FMAB fans even tho I did changed to a real score afterwards;False;False;;;;1610413858;;False;{};giy7ah3;False;t3_kv4s8z;False;False;t1_gixd93w;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy7ah3/;1610473254;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Electronic___Ad;;;[];;;;text;t2_9bq0qsy6;False;False;[];;Can we talk about how Re:Zero cour 4 is at Rank 37 and only has one episode LMFAO;False;False;;;;1610413879;;False;{};giy7bud;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy7bud/;1610473281;8;True;False;anime;t5_2qh22;;0;[]; -[];;;FruitJuicante;;;[];;;;text;t2_9ezln;False;False;[];;It will be Number 1.;False;False;;;;1610414053;;False;{};giy7nrw;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy7nrw/;1610473533;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheIndianJedi;;;[];;;;text;t2_syeg1;False;False;[];;Calm down mate. I don't have any sort of personal vendetta for the score going down. All I said was that the score has been drastically going down since 2020. That doesn't bother me because I will continue to love the movie.;False;False;;;;1610414212;;False;{};giy7yuj;False;t3_kv4s8z;False;True;t1_gixzw7x;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy7yuj/;1610473757;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Routine_Spinach_8841;;;[];;;;text;t2_516hz73z;False;False;[];;Lord of The Rings would be still better.;False;False;;;;1610414343;;False;{};giy87wp;False;t3_kv4s8z;False;False;t1_gixshj5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy87wp/;1610473936;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheIndianJedi;;;[];;;;text;t2_syeg1;False;False;[];;Yeah totally. It's not perfect, I have a couple of issues with it. I would probably give it a 9.5 or a 9, but because of the impact it had on me I'm willing to give it a 10. Even though it is a flawed movie.;False;False;;;;1610414412;;False;{};giy8cq0;False;t3_kv4s8z;False;True;t1_gixxmmf;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy8cq0/;1610474028;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheIndianJedi;;;[];;;;text;t2_syeg1;False;False;[];;Yeah 100%;False;False;;;;1610414469;;False;{};giy8goc;False;t3_kv4s8z;False;True;t1_gixfhj2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy8goc/;1610474109;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_TheDisposable;;;[];;;;text;t2_6g3tmw85;False;False;[];;Dunno why. Both shows wouldnt even crack my top 30 let alone 50.;False;False;;;;1610414579;;False;{};giy8obi;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy8obi/;1610474259;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;What anime you watching 😂?;False;False;;;;1610414648;;False;{};giy8t4a;True;t3_kv4s8z;False;True;t1_giy8obi;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy8t4a/;1610474353;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NatrenSR1;;;[];;;;text;t2_16p9se;False;False;[];;I’d be lying if I said AOT didn’t deserve this much praise. I’m happy to see two of my favorite anime claiming the top spots;False;False;;;;1610414660;;False;{};giy8tz8;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy8tz8/;1610474369;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phengooo_;;;[];;;;text;t2_7ma3o2fm;False;False;[];;When the manga dident get as much hype as the anime.;False;False;;;;1610414717;;False;{};giy8xvj;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy8xvj/;1610474443;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Sold a 100 million copies and entered the top 20 club so I wouldn't say that. Remember also the art is pretty average in the manga;False;False;;;;1610414764;;False;{};giy9165;True;t3_kv4s8z;False;True;t1_giy8xvj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy9165/;1610474509;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NatrenSR1;;;[];;;;text;t2_16p9se;False;False;[];;Man I strongly disagree with you, I think the current arc in the manga is the best the series has ever been. And to answer your other question, I think the anime is great but it definitely got stronger in seasons 2 and 3. Season 1 had some pacing issues;False;False;;;;1610414836;;False;{};giy96bh;False;t3_kv4s8z;False;True;t1_giy6s4f;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy96bh/;1610474612;2;True;False;anime;t5_2qh22;;0;[]; -[];;;phengooo_;;;[];;;;text;t2_7ma3o2fm;False;False;[];;You know what a joke is right.;False;False;;;;1610414843;;False;{};giy96uh;False;t3_kv4s8z;False;True;t1_giy9165;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy96uh/;1610474621;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;NatrenSR1;;;[];;;;text;t2_16p9se;False;False;[];;To each their own. As far as my personal tastes, I pretty much agree with the ranking for those 3 the way they are;False;False;;;;1610414876;;False;{};giy9987;False;t3_kv4s8z;False;True;t1_giy5l5u;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy9987/;1610474667;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saikounihighteyatzda;;;[];;;;text;t2_8tj3rl21;False;False;[];;">Steins gate is so chill and mature - -Bro, you're seriously gonna call people immature because the series they like is targeted towards a different audience then hold that against random people when someone says ""no""? - -This is the issue with toxicity in the anime fandom. Not whatever you're talking about. - -I came here to joke and say, ""A sad day for us HxH and Gintama fans"", cuz it's not in top 3 anymore, but naw man. - -FMA:B has held #1 for a while. Of course any fan would be sad if their favorite series isn't #1 anymore. Just like how when Steel Ball Run and/or Berserk get animated (properly), they'll probably surpass FMA considering their [manga scores on MAL](https://myanimelist.net/topmanga.php). And imagine how hardcore Berserk fans will react if some random manga takes over. Or heck, Steel Ball Run may take over after its adaptation, and One Piece may even once it finishes, although Berserk still isn't done yet, so that's a coin-toss (doubt its ending can be bad considering its record, but that's the one thing that can ruin it). And maybe the toxic FMA fans just don't like AoT as much. So the toxic dudes who like Steins;Gate will be mad, but having #2 taken isn't as bad as #1. I'll also be said when One Piece inevitably takes #2 from SBR once it finishes or is close to done (although I'm reading OP now, so I'll hopefully be finished by then). And FMA is targeted towards all audiences, so of course there will be little kids and stuff. Steins;Gate is not something I see little kids watching these days. Of course the mean of its fanbase will be more mature. Almost everyone has watched FMA. So why people tell nearly everyone off like that is hilarious to me. - -Now, I assume you're an AoT fan, so imagine someone's blabbing about AoT. Not mad yet? Good. No one should be. Even if someone throws baseless insults to my favorite series, since they're baseless, they're easily debunkable. And I'll do just that. Now toxic AoT fans are getting mad in the comments. So the OP edits it saying, ""Man AoT fans are so f\*\*\*ing annoying can't they just shut up about it being the best piece of literature ever? Its fans are so childish and idiotic and all they cry if someone insults the series."" You're not going that far, but I gotta fast-forward. So don't take my words out of context. So now let's see how more AoT fans react. They'll hate the OP because all he's doing is generalizing the people into a group because they like something. Now, I like FMA. I also like AoT. I don't consider myself a hardcore fan of either, but we know that all this does is get more toxic people into the conversation. - -All you're doing is adding fuel to the fire, so please stop adding unnecessary edits that provoke more. - ->What monster have I created - -And you seem to know it.";False;False;;;;1610414980;;1610415219.0;{};giy9gm6;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy9gm6/;1610474811;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;NatrenSR1;;;[];;;;text;t2_16p9se;False;False;[];;I feel like FMAB is a lot of people’s first anime, so a big part of its fandom is probably pretty new and hasn’t seen a lot of stuff that’s comparable in quality. It was definitely one of my first anime, and even though it’s still my favorite like 8 years later I’ve still found some stuff I like almost as much.;False;False;;;;1610415017;;False;{};giy9j8u;False;t3_kv4s8z;False;True;t1_giy544s;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy9j8u/;1610474858;3;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;I love how this is getting downvoted, seriously lol;False;False;;;;1610415026;;False;{};giy9jwy;False;t3_kv4s8z;False;True;t1_gix24z3;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy9jwy/;1610474870;0;True;False;anime;t5_2qh22;;0;[]; -[];;;NatrenSR1;;;[];;;;text;t2_16p9se;False;False;[];;I personally prefer FMA (it’s my all time favorite) but I can’t say that AOT wouldn’t deserve the top spot if it took it. The show is spectacular, easily on the same level as FMA;False;False;;;;1610415109;;False;{};giy9pwc;False;t3_kv4s8z;False;True;t1_giy3fyz;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy9pwc/;1610474986;3;True;False;anime;t5_2qh22;;0;[]; -[];;;McSOUS;;;[];;;;text;t2_5goqa;False;False;[];;"Why cant everyone just enjoy anime without it regressing to ""but my favourite anime is better than yours"". Its anime. Watch it to enjoy it.";False;False;;;;1610415198;;False;{};giy9w6c;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy9w6c/;1610475109;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PotentialSuspect453;;;[];;;;text;t2_872fz37h;False;False;[];;Gintama is in 4th. God is dead.;False;False;;;;1610415242;;False;{};giy9z7m;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giy9z7m/;1610475167;0;True;False;anime;t5_2qh22;;0;[]; -[];;;McSOUS;;;[];;;;text;t2_5goqa;False;False;[];;Everyone has different opinions. Not everyone might like the same genres and thats a very good thing. Creates diversity!;False;False;;;;1610415334;;False;{};giya5nj;False;t3_kv4s8z;False;True;t1_giy8obi;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giya5nj/;1610475298;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PieckIsExactlyRight;;;[];;;;text;t2_k0kfxhz;False;False;[];;I'd vote FMA one star but I'm not enough of a degenerate to do a good show dirty just for the sake of shows I fanboy over.;False;False;;;;1610415380;;False;{};giya903;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giya903/;1610475375;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Marth_43;;;[];;;;text;t2_syyvvjz;False;False;[];;It will keep moving forward, until all its enemies are destroyed;False;False;;;;1610415556;;False;{};giyalio;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyalio/;1610475608;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;😂😂😂😂;False;False;;;;1610415571;;False;{};giyamn7;True;t3_kv4s8z;False;True;t1_giyalio;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyamn7/;1610475629;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tjl73;;MAL;[];;http://myanimelist.net/animelist/tjl1973;dark;text;t2_g95ad;False;False;[];;"It's not an objective perspective because you can't really give an objective score. It's naturally a subjective opinion based on your thoughts about the anime. - -There can't really be an objective score on MAL. Even people who try and do an objective score based on weightings of various categories (Arkada from Glass Reflection used to try and do that and ended up with some weird rating scores) will still have a subjective score because your score in those categories will be subjective. - -I used to do marking of engineering design reports for an engineering design course. We had scores in various categories and guidelines for what a score of certain values should be. Even in that case, it was still a subjective score.";False;False;;;;1610415607;;False;{};giyap8w;False;t3_kv4s8z;False;False;t1_giy6lip;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyap8w/;1610475677;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Saaaame ! I wanna give it a 1 coz I'm so mad at what's going on but I morally can't;False;False;;;;1610415612;;False;{};giyapl1;True;t3_kv4s8z;False;True;t1_giya903;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyapl1/;1610475683;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FH261169;;;[];;;;text;t2_80zctk82;False;False;[];;Attack on Titan is either a 10 or 9.5. FMAB is probably a 6-7;False;False;;;;1610415626;;False;{};giyaqkq;False;t3_kv4s8z;False;True;t1_gixvg47;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyaqkq/;1610475701;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ikr 😂 that's what I realized after making this post and monitoring it for 8 hrs. This shits gotten boring already 🙄;False;False;;;;1610415646;;False;{};giyas0n;True;t3_kv4s8z;False;True;t1_giy9w6c;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyas0n/;1610475730;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PieckIsExactlyRight;;;[];;;;text;t2_k0kfxhz;False;False;[];;Yeah was curious and saw that plenty of people 1 starred it as well. Looks like we can't have nice things.;False;False;;;;1610415692;;False;{};giyavbm;False;t3_kv4s8z;False;True;t1_giyapl1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyavbm/;1610475792;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;True, from what I've been seeing it's not a must watch for new anime watchers. Atleast they aren't watching it much, especially teens;False;False;;;;1610415706;;False;{};giyawdg;True;t3_kv4s8z;False;True;t1_giy9j8u;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyawdg/;1610475818;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;BenIsTaken;;;[];;;;text;t2_7sdfdvau;False;False;[];;To be fair it's being watched by 300k and only 100k have scored it yet. So you'd expect another 200k at least to vote it later, if they are still watching they are enjoying so if it ends decently after a decade they probably rate high, I expect it'll take the #1 spot;False;False;;;;1610415793;;False;{};giyb2k0;False;t3_kv4s8z;False;True;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyb2k0/;1610475939;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Bro, i didn't laugh so ? Was that sarcasm ?;False;False;;;;1610415849;;False;{};giyb6ks;True;t3_kv4s8z;False;True;t1_giy96uh;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyb6ks/;1610476014;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sufficient_Ad_9328;;;[];;;;text;t2_6xsqwehd;False;False;[];;AOT Final Season sucks ass though;False;True;;comment score below threshold;;1610415892;;False;{};giyb9lk;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyb9lk/;1610476073;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;No, it's in the build up phase;False;False;;;;1610415917;;False;{};giybbac;True;t3_kv4s8z;False;True;t1_giyb9lk;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giybbac/;1610476105;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sufficient_Ad_9328;;;[];;;;text;t2_6xsqwehd;False;False;[];;Well, none of the other seasons had has this much of just talking episodes the first episode was mkay and then the one where they defeated the new place, and then it was just 2 episodes of fucking talking, it's so boring.;False;True;;comment score below threshold;;1610415979;;False;{};giybftc;False;t3_kv4s8z;False;True;t1_giybbac;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giybftc/;1610476188;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;JewJewJubes;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Jubes44/;light;text;t2_n7agk;False;False;[];;Do people still care about MAL rankings? Both shows are outstanding by themselves. And MAL ratings are so empty...;False;False;;;;1610416042;;False;{};giybk7i;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giybk7i/;1610476270;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Bro, what ? I found that talking really interesting and there was so much world building. Also so many plot threads go set up. You'll probably like it more now since you're probably someone who likes Aot for the action and not the story.;False;False;;;;1610416064;;False;{};giyblrz;True;t3_kv4s8z;False;True;t1_giybftc;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyblrz/;1610476300;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Honestly ya, shows aren't a linear line in terms of ratings. They're a pie chart, can't really rate it on the same scale;False;False;;;;1610416116;;False;{};giybpf9;True;t3_kv4s8z;False;False;t1_giybk7i;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giybpf9/;1610476369;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Sufficient_Ad_9328;;;[];;;;text;t2_6xsqwehd;False;False;[];;I was never interested in the story really, since I'm there only for the gore and fighting. It's the only anime I like it that way..;False;True;;comment score below threshold;;1610416179;;False;{};giybtxr;False;t3_kv4s8z;False;True;t1_giyblrz;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giybtxr/;1610476456;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;PsychoEliteNZ;;MAL;[];;http://myanimelist.net/animelist/PsychoEliteNZ;dark;text;t2_g0ms2;False;False;[];;"> was cartoony/joke villains that have either no depth or a single-minded motivation that can be dismantled by the protagonist making a speech that ""hits home"" - -I don't know what you watched but either you weren't paying any attention OR you watched the completely wrong anime.";False;False;;;;1610416221;;False;{};giybwv5;False;t3_kv4s8z;False;True;t1_gix5pns;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giybwv5/;1610476512;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FelOnyx1;;;[];;;;text;t2_12holt;False;False;[];;"The current isekai boom really is its own genre (or subgenre) with many common traits particular to it besides the namesake other world element. Besides that one element, old ""portal fantasy"" from back in the day has very little in common with isekai.";False;False;;;;1610416241;;False;{};giybyam;False;t3_kv3vgw;False;True;t1_gixeo3i;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giybyam/;1610476539;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hussor;;MAL;[];;http://myanimelist.net/animelist/Hussor;dark;text;t2_j55xp;False;False;[];;I read the manga so I rated it a 10 based on plot alone, although if the anime disappoints I will lower that score. But if it manages to follow the manga as closely as it has so far then it will hold that score for me at least.;False;False;;;;1610416342;;False;{};giyc59j;False;t3_kv4s8z;False;True;t1_gixcfxr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyc59j/;1610476671;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bobhob314;;;[];;;;text;t2_mmatl;False;False;[];;No I'm just saying I agree 100% with you and wanted to hear more of your takes lol.;False;False;;;;1610416416;;False;{};giycah3;False;t3_kv4s8z;False;False;t1_giy6jq9;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giycah3/;1610476772;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JewJewJubes;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Jubes44/;light;text;t2_n7agk;False;False;[];;"Yeah, there's too many variables to factor into the ratings. The main one being time. Past airing vs Currently airing. - -However, I'd love to see both shows air at the time and have a true juggernaut battle. With us the viewer being the ultimate victor.";False;False;;;;1610416431;;False;{};giycbhk;False;t3_kv4s8z;False;True;t1_giybpf9;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giycbhk/;1610476790;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hussor;;MAL;[];;http://myanimelist.net/animelist/Hussor;dark;text;t2_j55xp;False;False;[];;A lot of them I noticed haven't read/watched past the early parts of the story and it shows in their criticism. SnK is on a constant climb when it comes to how good its story is, and ofc it would since imo its best element is mystery. Even in the final season when we think Isayama has revealed everything there is to reveal he still manages to make the characters' motivations and goals a mystery until the final climax.;False;False;;;;1610416509;;False;{};giycgwn;False;t3_kv4s8z;False;False;t1_gixebck;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giycgwn/;1610476903;18;True;False;anime;t5_2qh22;;0;[]; -[];;;remmanuelv;;;[];;;;text;t2_mfjwf;False;True;[];;Vendetta as in other fanbases consistently rating it down over years. That's just so weird of you to think, like the movie can't possibly be rated an 8.8 fairly.;False;False;;;;1610416514;;1610416773.0;{};giychay;False;t3_kv4s8z;False;True;t1_giy7yuj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giychay/;1610476911;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iiiiiiiiiiip;;;[];;;;text;t2_i7ekk;False;False;[];;I agree but it's the same on any review site, even places like amazon. People like to vote even min or max score.;False;False;;;;1610416573;;False;{};giyclhp;False;t3_kv4s8z;False;True;t1_giy5nag;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyclhp/;1610476994;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hussor;;MAL;[];;http://myanimelist.net/animelist/Hussor;dark;text;t2_j55xp;False;False;[];;If anything 112 will make the score go down with anime onlies lol;False;False;;;;1610416619;;False;{};giycoqw;False;t3_kv4s8z;False;False;t1_giy0aja;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giycoqw/;1610477057;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Huh, how TF have you been watching aot then 😂 it's not great at action. Pretty good but not amazing;False;False;;;;1610416854;;False;{};giyd58l;True;t3_kv4s8z;False;True;t1_giybtxr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyd58l/;1610477364;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chuc-hucks;;;[];;;;text;t2_742i4utf;False;False;[];;What’s the first highest rated anime?;False;False;;;;1610416933;;False;{};giydapr;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giydapr/;1610477472;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_TheDisposable;;;[];;;;text;t2_6g3tmw85;False;False;[];;So then explain why the same show is regularly at the top of some leader board.;False;False;;;;1610416988;;False;{};giydemu;False;t3_kv4s8z;False;True;t1_giya5nj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giydemu/;1610477550;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;FMAB;False;False;;;;1610417036;;False;{};giydi0o;True;t3_kv4s8z;False;True;t1_giydapr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giydi0o/;1610477616;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BearSnack_jda;;MAL;[];;https://myanimelist.net/animelist/zappchance;dark;text;t2_hoikd;False;False;[];;Ah same I've been meaning to power through but all these shorter anime keep pulling my interest cause less investement;False;False;;;;1610417046;;False;{};giydiq0;False;t3_kv4s8z;False;True;t1_gixa6u1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giydiq0/;1610477629;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chuc-hucks;;;[];;;;text;t2_742i4utf;False;False;[];;Wow really? It was great but number 1? Damn. How is that determined? Do people just rate it and MAL compiles the results or what?;False;False;;;;1610417108;;False;{};giydn75;False;t3_kv4s8z;False;True;t1_giydi0o;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giydn75/;1610477719;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;People rate it out of 10 and the average is what determines it;False;False;;;;1610417147;;False;{};giydpxo;True;t3_kv4s8z;False;False;t1_giydn75;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giydpxo/;1610477775;3;True;False;anime;t5_2qh22;;0;[]; -[];;;McSOUS;;;[];;;;text;t2_5goqa;False;False;[];;Cause a lot more people like it than you do.;False;False;;;;1610417414;;False;{};giye9f9;False;t3_kv4s8z;False;True;t1_giydemu;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giye9f9/;1610478163;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PsychoEliteNZ;;MAL;[];;http://myanimelist.net/animelist/PsychoEliteNZ;dark;text;t2_g0ms2;False;False;[];;"If you're talking about Zero, that's not really a second season its a separate ""what if"" story that you don't even need to watch.";False;False;;;;1610417468;;False;{};giyed7g;False;t3_kv4s8z;False;True;t1_gixm6fo;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyed7g/;1610478254;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Weebs-Chan;;;[];;;;text;t2_976fajx4;False;False;[];;Me and a lot of people consider it a second season. Think whatever you want;False;False;;;;1610417534;;False;{};giyei31;False;t3_kv4s8z;False;True;t1_giyed7g;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyei31/;1610478354;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;001thefish;;;[];;;;text;t2_ksmaz;False;False;[];;"Do we really have to write ""imo"" on sentences that literally can only be opinions?";False;False;;;;1610417769;;False;{};giyeyli;False;t3_kv4s8z;False;True;t1_gixssol;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyeyli/;1610478665;0;True;False;anime;t5_2qh22;;0;[]; -[];;;hatemakingnames1;;;[];;;;text;t2_13l387;False;False;[];;"> 9.11 rating with 500k votes - -[~114k out of 308k ""watching"" have rated it](https://myanimelist.net/anime/40028/Shingeki_no_Kyojin__The_Final_Season/stats). - -I personally don't rate until completed.";False;False;;;;1610417779;;False;{};giyezd7;False;t3_kv4s8z;False;True;t1_giwus4a;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyezd7/;1610478679;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SeethingEagle;;;[];;;;text;t2_3616y7ox;False;False;[];;"Overrated. - -(Bring on the downvotes)";False;False;;;;1610417951;;False;{};giyfbwf;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyfbwf/;1610478916;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;_TheDisposable;;;[];;;;text;t2_6g3tmw85;False;False;[];;Granted, that is the most obvious answer, and I kinda walked into that one. I just dont understand why these particular ones are so freaking popular and yet if variety and all that, then why doesn't the rankings change as seasons and all that do? Personally I believe they are both not horrible but no way deserving of the rankings.;False;False;;;;1610418046;;False;{};giyfit1;False;t3_kv4s8z;False;True;t1_giye9f9;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyfit1/;1610479048;1;True;False;anime;t5_2qh22;;0;[]; -[];;;polarsnare;;;[];;;;text;t2_rzgun;False;False;[];;*sight;False;False;;;;1610418088;;False;{};giyflvi;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyflvi/;1610479105;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Chronoflyt;;;[];;;;text;t2_5apbu2fl;False;False;[];;"True. When there is no hardset standard for the things that are objective, the individual scoring for such objective things will be subjective. Nevertheless, if I give an anime a 7 based on the quality of the narrative, to me, that means it was, on the whole, good. Again, Majo no Tabitabi, when considering things like character growth, worldbuilding, the complexity of its protagonists and antagonists - which can be looked at objectively - does poorly. If people, based on personal enjoyment, give it a 7 or 8, as I've always said, fair enough. However, again, if ""7"" is ""good"" or ""done fairly well"", from a technical perspective, Majo no Tabitabi is not worthy of a 7. - - -Putting it another way, I've researched, examined, and heard from people who work in the novel publishing industry. If Majo no Tabitabi was pitched as a Young Adult novel to an agent, it would be thrown out at chapter 3 and never come across a publisher's desk.";False;False;;;;1610418358;;False;{};giyg529;False;t3_kv4s8z;False;True;t1_giyap8w;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyg529/;1610479470;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Eranaut;;;[];;;;text;t2_tyug9gs;False;False;[];;Do you think ishuzoku reviewers had a single chance of reaching the top 20 on MAL? It's a joke ecchi.;False;False;;;;1610418397;;False;{};giyg7sy;False;t3_kv4s8z;False;True;t1_gixhdr2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyg7sy/;1610479529;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;Um nope. 1/10 scores literally and even positive brigading scores are all heavily targeted so the score isn't affected by brigading;False;False;;;;1610418422;;False;{};giyg9ic;False;t3_kv4s8z;False;True;t1_gixq67t;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyg9ic/;1610479562;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FaehBatsy;;;[];;;;text;t2_131mhfi;False;False;[];;"Look at the virgins here trying to protect their favourite anime. - -Grow up";False;False;;;;1610418443;;False;{};giygazi;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giygazi/;1610479594;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Snajpi;;;[];;;;text;t2_nripj;False;False;[];;They could've just... waited...;False;False;;;;1610418728;;False;{};giygvz2;False;t3_kv4s8z;False;False;t1_gixshj5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giygvz2/;1610480002;20;True;False;anime;t5_2qh22;;0;[]; -[];;;saikounihighteyatzda;;;[];;;;text;t2_8tj3rl21;False;False;[];;"Woah! Reasonable people on the internet! - -Sorry, I need a break from Reddit. Too many racists on other subs and now we have toxic idiots on this post, it's refreshing to see some people not being obnoxious. - -Honestly, this is probably an unpopular opinion, but I don't like Brootherhood's ending a ton. I mean just the Ed vs. Father fight. Everything else was fantastic. It was ok, but it could've been better. So since Idk which I like better, it all depends on 1. the canon ending of the manga which is pretty much almost done and 2. Mappa's execution of S4 and its finale. I love both series a ton and consider them to be GOATs as well, but I just don't know right now which is better.";False;False;;;;1610418757;;False;{};giygy2x;False;t3_kv4s8z;False;False;t1_gix6nbi;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giygy2x/;1610480048;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;It has a good chance of getting above 9 while it's airing honestly. Next episode should boost up the ratings a bit.;False;False;;;;1610418784;;False;{};giyh04z;False;t3_kv4s8z;False;True;t1_giy7bud;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyh04z/;1610480093;1;True;False;anime;t5_2qh22;;0;[]; -[];;;legwkio2;;;[];;;;text;t2_3winxodf;False;False;[];;it's a 10 for me like FMA:B.;False;False;;;;1610418799;;False;{};giyh18j;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyh18j/;1610480112;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Yeah this definitely happens, 550 people rated fma 1 since December, and 3.800 rated aot 1 since december;False;False;;;;1610418899;;False;{};giyh8ji;False;t3_kv4s8z;False;True;t1_gixoopo;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyh8ji/;1610480275;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;So far if the score was weighted only after targeting 1/10 and 10/10 scores. Over 15000 10s are not contributing to the score if even only 10% of the total 1/10s contribute to the score (roughly 3500);False;False;;;;1610418998;;False;{};giyhfz4;False;t3_kv4s8z;False;True;t1_giy37y8;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyhfz4/;1610480415;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Potatolantern;;;[];;;;text;t2_2muaukp;False;False;[];;">Steins gate is so chill and mature - -Comes from being the absolute best Visual Novel around. (Actually I can't say that with certainty since I haven't played a good handful of the other top rated ones, but it's easily the best I've ever played/read). - -And while I love AoT, I doubt it'll take the top spot. Anytime something starts competing with FMAB a huge group of their fans go and mass-downvote it.";False;False;;;;1610419097;;False;{};giyhna2;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyhna2/;1610480556;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheUltimateTeigu;;;[];;;;text;t2_jjzxh;False;False;[];;Like that deserved even the top 50. It doesn't make it to the highest ratings legitimately.;False;False;;;;1610419335;;False;{};giyi4v0;False;t3_kv4s8z;False;False;t1_gixhdr2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyi4v0/;1610480894;7;True;False;anime;t5_2qh22;;0;[]; -[];;;GamerDylan;;;[];;;;text;t2_9luxkbc;False;False;[];;Attack On Titan is my favorite anime but why are people already rating Season 4 if it hasn’t ended yet? Sorry if this is a dumb question.;False;False;;;;1610419543;;False;{};giyikbg;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyikbg/;1610481204;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DinglesRip;;;[];;;;text;t2_8vu86;False;False;[];;I wouldn’t say that AoT is watered down to be more digestible. AoT constantly deals with the morality of decision making in the face doom and a lack of knowledge. I find it way more thought provoking than full metal alchemist. FMAB has a great plot, but it never had me sit after watching an episode trying to deliberate right from wrong like AoT has. FMAB has clear cut protagonists and antagonists. Heroes and villains. But imo with AoT, especially in this last season, the lines are much more blurred and require a bit more from the viewer in order to decide. That’s why I think AoT is more mature.;False;False;;;;1610419935;;False;{};giyje78;False;t3_kv4s8z;False;False;t1_giwy5bw;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyje78/;1610481822;3;True;False;anime;t5_2qh22;;0;[]; -[];;;1941f3adf7;;;[];;;;text;t2_1xnhqnni;False;False;[];;"Yep. I have a rule of thumb where of I see a meme of an anime or if someone recommends it and it has >7.5 MAL rating then it's an instant add to watch list. If it's below that I'll have to assess carefully if the memes are worth it.";False;False;;;;1610419937;;False;{};giyjec1;False;t3_kv4s8z;False;True;t1_gixajy5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyjec1/;1610481824;2;True;False;anime;t5_2qh22;;0;[]; -[];;;laddlemkckey;;;[];;;;text;t2_1w14ux83;False;False;[];;"It's hilarious too, and has great characters and godlike moments and fights. - -It also has some of the best openings and endings ever, and introduced me to Yui, who is probably my favorite music artist of all time at this point. - -I totally understand why she was the most successful solo female act in Japan and why all her albums hit number one on the Oricon charts.";False;False;;;;1610419955;;False;{};giyjfoo;False;t3_kv4s8z;False;True;t1_gixkdab;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyjfoo/;1610481849;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PiggyPatton;;;[];;;;text;t2_3x5ajw4i;False;False;[];;Almost as good as Interspecies Reviewers...;False;False;;;;1610420063;;False;{};giyjnvm;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyjnvm/;1610482000;1;True;False;anime;t5_2qh22;;0;[]; -[];;;4xdblack;;;[];;;;text;t2_a9q40;False;False;[];;"I'm an isekai Junkie, and I've already accepted my fate of every isekai adaptation getting a tiny budget and low effort animation... - -So hot damn am I happy that Mushoku Tensei is getting so much love in the animation department. It's so damn pretty! And the story is something that's tempted me into web novel territory, so hopefully this gets the recognition it deserves.";False;False;;;;1610420189;;False;{};giyjx49;False;t3_kv3vgw;False;False;t3_kv3vgw;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giyjx49/;1610482173;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Galore67;;;[];;;;text;t2_akz8y2t;False;False;[];;lol, who cares? This proves nothing.;False;False;;;;1610420359;;False;{};giyk9fa;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyk9fa/;1610482441;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Insecticide;;;[];;;;text;t2_a6x2b;False;False;[];;I haven't used MAL in years but let me hop back and contribute too. It deserves it.;False;False;;;;1610420595;;False;{};giykqbj;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giykqbj/;1610482784;2;True;False;anime;t5_2qh22;;0;[];True -[];;;xlinkedx;;MAL;[];;http://myanimelist.net/animelist/xlinkedx;dark;text;t2_5xft1;False;False;[];;I love the rating system on MAL. Ratings are basically either 10, 9, 8, or 1 lol. I also rate shows like this.;False;False;;;;1610420614;;False;{};giykrnn;False;t3_kv4s8z;False;True;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giykrnn/;1610482808;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blueasian0682;;;[];;;;text;t2_1mq0q9k2;False;False;[];;Can't we just spam 1 on fmab just to piss off these people? I love fmab and aot but these spammers need to learn their own lesson.;False;False;;;;1610420621;;False;{};giyks2b;False;t3_kv4s8z;False;True;t1_giw2s5a;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyks2b/;1610482817;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiny_Umbreon;;;[];;;;text;t2_drggt;False;False;[];;All the big anime’s get short sticks because they usually go for quantity over quality;False;False;;;;1610420702;;False;{};giykxrj;False;t3_kv4s8z;False;True;t1_gix6uo3;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giykxrj/;1610482921;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Insecticide;;;[];;;;text;t2_a6x2b;False;False;[];;"Back then, I watched it, thought it was fine but I didn't feel like the story had anything unique in it as it was just another one of those ""here are two characters, they are trying to find eachother"" type of story that I have already experienced before. - -I remember posting that if someone never saw a story like that before it was probably going to be an amazing movie for them but otherwise it is just good, nothing special. I gave it an 8. I think it is good and well done but nothing more than that.";False;False;;;;1610420832;;False;{};giyl6q8;False;t3_kv4s8z;False;False;t1_gixfhj2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyl6q8/;1610483110;6;True;False;anime;t5_2qh22;;0;[];True -[];;;McSOUS;;;[];;;;text;t2_5goqa;False;False;[];;I think because of initial popularity, they are what i consider more mainstream anime. Meaning they get to be in the limelight more meaning more exposure to everyone else, thus higher viewership and ratings. To more seasoned anime watchers, they most likely experienced a plethora of different anime thus having a more varied opinion. For example, i love AoT, FMA:B and Steins Gate, AoT would definitely be in my top 5 with the others being maybe Top 10, but what will always be my all time number one is Gurren Lagann.;False;False;;;;1610420847;;False;{};giyl7qt;False;t3_kv4s8z;False;True;t1_giyfit1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyl7qt/;1610483145;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aryvd_0103;;;[];;;;text;t2_549u7prl;False;False;[];;Yeah. I watched Your Name recently and thought it was incredible. Attack on titan was called over rated too I beleive (which to be fair , it might have been after season 1). But this general mentality of people thinking if more people like it, then it's probably not as good and they believe themselves to be superior because they watch something that is more niche. And I think attack on titan shatters this perception very well. Popular as fuck , and good many timesfold.;False;False;;;;1610420860;;False;{};giyl8nf;False;t3_kv4s8z;False;False;t1_gixfhj2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyl8nf/;1610483164;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Sloppy_Goldfish;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/stormsky92;light;text;t2_rxi9z;False;False;[];;Yep it's working and helping out AoT too. Just looking at the raw stats on the anime's page the average score would be 8.97 because of all 1s. But MALs algorithm is ignoring some portion of those 1s (and a smaller portion of the 10s too i'm sure) to give the current 9.13. So MAL has stepped up and finally implemented a good system to try and prevent score rigging. It may not be perfect but it's better than it was a year ago.;False;False;;;;1610420881;;False;{};giyla7w;False;t3_kv4s8z;False;False;t1_gixhvkc;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyla7w/;1610483191;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Its the internet, something is either the greatest ever or an insult to your ancestors;False;False;;;;1610420899;;False;{};giylbg2;False;t3_kv4s8z;False;False;t1_giykrnn;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giylbg2/;1610483213;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDarkSwordsman;;;[];;;;text;t2_jakj8;False;False;[];;"But it is. If you look at the chart, like you're saying, it is heavily skewed. - -Why would they show those scores if they don't count?";False;False;;;;1610421085;;False;{};giylolj;False;t3_kv4s8z;False;False;t1_giyg9ic;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giylolj/;1610483467;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Multipl;;;[];;;;text;t2_mi3bz;False;False;[];;I only use MAL to check the airdates for shows. Why do people even still care about MAL ratings.;False;False;;;;1610421108;;False;{};giylq82;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giylq82/;1610483497;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiny_Umbreon;;;[];;;;text;t2_drggt;False;False;[];;AoT is a 6 at best IMO idk where this 8 is coming from.;False;False;;;;1610421109;;False;{};giylq8z;False;t3_kv4s8z;False;True;t1_giwo58h;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giylq8z/;1610483497;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;KendotsX;;;[];;;;text;t2_j6nbtko;False;False;[];;So it's that time of the year again.;False;False;;;;1610421128;;False;{};giylrnt;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giylrnt/;1610483525;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aryvd_0103;;;[];;;;text;t2_549u7prl;False;False;[];;You copied my line !! I said this same thing somewhere . To be fair , it is true tho.;False;False;;;;1610421153;;False;{};giyltg6;False;t3_kv4s8z;False;True;t1_giwis7f;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyltg6/;1610483559;0;True;False;anime;t5_2qh22;;0;[]; -[];;;RobKoing;;;[];;;;text;t2_176lje;False;False;[];;"It's not a ""what if"", it's a midquel totally connected to the first one lol";False;False;;;;1610421163;;False;{};giylu4g;False;t3_kv4s8z;False;True;t1_giyed7g;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giylu4g/;1610483571;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Yes sir 😂;False;False;;;;1610421175;;False;{};giylv04;True;t3_kv4s8z;False;True;t1_giylrnt;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giylv04/;1610483587;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OK_Computer_1997;;;[];;;;text;t2_93pqabhr;False;False;[];;So what made FMA so special then?;False;False;;;;1610421186;;False;{};giylvql;False;t3_kv4s8z;False;True;t1_giykxrj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giylvql/;1610483601;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aryvd_0103;;;[];;;;text;t2_549u7prl;False;False;[];;I thought every manga reader said that chapter 131 was good af . I am not a manga reader so I don't know;False;False;;;;1610421257;;False;{};giym0qm;False;t3_kv4s8z;False;True;t1_gixvuag;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giym0qm/;1610483693;1;True;False;anime;t5_2qh22;;0;[]; -[];;;haznam;;;[];;;;text;t2_4g37w2ak;False;False;[];;Ramzi ? Oh yeah can't wait to see him...;False;False;;;;1610421284;;False;{};giym37l;False;t3_kv4s8z;False;True;t1_gixv3aj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giym37l/;1610483733;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheIndianJedi;;;[];;;;text;t2_syeg1;False;False;[];;Except I never once said that at all. All I said was it sucks that the rating has been going down, but that's because I love the movie a lot. I would love to see it at a high rating, but of course it's going to go down as more people watch the movie, and that doesn't bother me one bit. I never once said the movie can't be rated fairly. Really weird of you to judge me like that.;False;False;;;;1610421300;;1610422085.0;{};giym4r6;False;t3_kv4s8z;False;True;t1_giychay;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giym4r6/;1610483758;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Uthor;;;[];;;;text;t2_aimq4;False;False;[];;"It's not a what if, it's completely cannon and basically serves as a prequel. It is true that you don't need to watch it though (hell I'm a big Stein's;Gate fan and I didn't even really like 0).";False;False;;;;1610421357;;False;{};giym9ok;False;t3_kv4s8z;False;True;t1_giyed7g;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giym9ok/;1610483841;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePhantomRaven;;;[];;;;text;t2_45tqag6z;False;False;[];;"AOT fanbase will become the new FMAB fanbase it seems - -One guy said in a youtube comment section that there r much better series than Aot like berserk, vagabond, etc and I said that aot has some plot flaws too(like how convinient the founding Titan is, people doing 180s in allegiance just because, etc). But a few aot fans were acting like we burned down there house and if we dont claim that aot is a flawless gods creation they lose their shit";False;False;;;;1610421582;;False;{};giympcm;False;t3_kv4s8z;False;True;t1_gixy6uw;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giympcm/;1610484151;0;True;False;anime;t5_2qh22;;0;[]; -[];;;cashsonny;;;[];;;;text;t2_l7hpb;False;False;[];;Shows with multiple seasons + later seasons always get that boost.;False;False;;;;1610421599;;False;{};giymqh9;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giymqh9/;1610484172;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"To make it harder to manipulate. If you show what doesn't count, trolls will have an easier time. I don't see heavy issues with SAO's score though - - -Just take a look at the rating distribution, it has a regular curve outside of S1. (which has more 10s than 9s but fewer 10s than 8s which is abnormal for looking at score distribution. This doesn't entirely imply score boosting though but rather it being an anime which is heavily divisive) If the number of 1/2/3 scores are actually close the score likely suffers little from brigading. Anime targeted usually have a straight up huge share of 1s compared to 2/3s. (Most anime near the top are an example of this) - -http://imgur.com/a/usPcNsW - -SAO 2 has a pretty fair curve";False;False;;;;1610421692;;1610421941.0;{};giymx2q;False;t3_kv4s8z;False;True;t1_giylolj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giymx2q/;1610484295;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePhantomRaven;;;[];;;;text;t2_45tqag6z;False;False;[];;Well u certainly havent read much fiction have u?;False;True;;comment score below threshold;;1610421732;;False;{};giymzup;False;t3_kv4s8z;False;True;t1_gixhvuz;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giymzup/;1610484347;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePhantomRaven;;;[];;;;text;t2_45tqag6z;False;False;[];;Plot is a masterpiece but not the best piece of fiction there is nor the best manga. AOT plot is overhyped a bit. There I said it. Now here come the salty fans to downvote me;False;False;;;;1610421911;;False;{};giync0j;False;t3_kv4s8z;False;False;t1_giy3vri;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giync0j/;1610484590;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Koumazoku;;;[];;;;text;t2_6bueh6q4;False;False;[];;I think it's fair to say that the score is going to steady decline closing in somewhere from 8.00\~9.00. All hyped series always have a really high score at the start of the season.;False;False;;;;1610421945;;False;{};giyneb7;False;t3_kv4s8z;False;True;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyneb7/;1610484643;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ToeAny5031;;;[];;;;text;t2_7n9tiyl4;False;False;[];;"Hey you have a great point! - -We may not agree on which series is better but that completely okay. I love hearing opinions different than mine. It really makes me challenge my own views. - -Even though I still believe FMAB is the superior series in tackling difficult issues, I see where you’re coming from. I’ve just never felt as engaged with AOT while watching it and it has never made me sit down and consider my own moral code, but clearly it has for you. It may be a matter of taste more than anything else. I do like AOT, but FMAB is a bit more up my alley. - -I only have one counter point and that is the clear cut protagonists and antagonists. Don’t get me wrong, it’s extremely obvious who the heroes and villains are, but it’s not a case of “I’m evil because I’m evil”. There’s always a nuanced reason for each characters actions. Sometimes a villain will have a motive that scarily resembles a goal you may have and it will make you question your own moral standing. I feel this point is better portrayed in the original FMA, with the homunculus’ goal being to become human. It’s a very real, rather sad goal. It may not be a realistic goal (I mean I hope we’re all human) but it still strikes that “Trying to fit in” narrative. - -One thing I will give to AOT is the corrupt politicians narrative. I feel like FMAB just stumbles when it reaches a villain of high government standing. Most of the time it’s very obvious who will end up being evil. (I predicted King Bradley first episode). AOT is a bit more surprising on who’s corrupt. It also handles the issue a bit better then just saying “Oh, they’re with the bad guys!”. - -Also, a lot of people in this comment thread are hardcore FMAB worshippers. I do not associate with them. They take things way to far. A good well-intentioned debate is fine but downright bullying people for being happy their favorite show is popular is not. - -So, on behalf of the normal FMAB fans, I’m sorry if you’ve had to deal with them. They do not represent all of us.";False;False;;;;1610422102;;False;{};giynowr;False;t3_kv4s8z;False;True;t1_giyje78;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giynowr/;1610484866;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bkp98;;;[];;;;text;t2_2dlddpws;False;False;[];;To me personally AOT is way better tham steinsgate but this might not be ghe case for someone who likes science fiction genre more. Now whether it will overtake FMAB for me will purely depend on the ending. As of now i am caught up with the manga and is definitely set to become GOAT and is waiting for that great ending.;False;False;;;;1610422221;;False;{};giynwxk;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giynwxk/;1610485030;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePhantomRaven;;;[];;;;text;t2_45tqag6z;False;False;[];;"One Piece, Gintama, Vagabond, Berserk, Death Note, Vinland Saga, Steins;Gate and a few more for me";False;False;;;;1610422222;;False;{};giynx0c;False;t3_kv4s8z;False;True;t1_gixoz6c;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giynx0c/;1610485031;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RelativeNational2271;;;[];;;;text;t2_9s3jczr2;False;False;[];;"> update your score as the anime progresses - -Yep. This can also be important because it lets people see how the anime did over time. For example, if you look at the score for shield hero now, you'll see a 8.01 and think that's pretty good. But then if you look at [its history](https://anime-stats.net/anime/show/35790), you can see that it started at 8.50 and had slowly dropped off as the series went on, implying it had a really strong start but weak finish, which is exactly how it went in reality. Similarly with [The Day I Became a God](https://anime-stats.net/anime/show/41930), starting off 7.72 and now a 6.93.";False;False;;;;1610422240;;False;{};giyny73;False;t3_kv4s8z;False;True;t1_gix5p70;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyny73/;1610485053;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jaws_16;;;[];;;;text;t2_vmxnz;False;False;[];;It will keep climbing. Trust me. You ain't seen shit yet;False;False;;;;1610422252;;False;{};giynz1s;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giynz1s/;1610485068;1;True;False;anime;t5_2qh22;;0;[]; -[];;;knokaka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/knokaka?order=4;light;text;t2_ytri4;False;False;[];;"Yeah, that discussion thread stream list. - -Ani-One Asia isnt there tho";False;False;;;;1610422255;;False;{};giynz81;False;t3_kv4qrn;False;True;t1_giy1wl3;/r/anime/comments/kv4qrn/youtube_anime_titles_available_in_bangladesh/giynz81/;1610485072;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDarkSwordsman;;;[];;;;text;t2_jakj8;False;False;[];;"I'm not gonna start an argument (not saying you are, but these discussions tend to), so I'll just say this: - -If you look at actual reviews of SAO that aren't just brigaded 1's, you can see how heavily biased they are. Even the ones that rate it 4 are prone to saying things like ""Jesus-kun"" or ""harem"", when those things are objectively false. - -SAO is a better example of bias because there's so much bias against it that people think their terrible, biased reviews are good and actually worth something, and because someone took the time to write a review, MAL must think it's worth it to count towards the ranked score. - -MAL's ranking system can still very heavily allow for trolls and brigaders, even if it's the trolly thing to do. - -A lot of people misinterpret their interests as some justification to post a crappy review about something. I can understand people simply didn't enjoy the show or couldn't get into it, that's fine. But people take it a step further and literally brigade the show with bad reviews because they think it's the common opinion, when it's an extreme bias.";False;False;;;;1610422284;;False;{};giyo14x;False;t3_kv4s8z;False;True;t1_giymx2q;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyo14x/;1610485106;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePhantomRaven;;;[];;;;text;t2_45tqag6z;False;False;[];;U r 50% right and 50%. Thats a nice statistic u got there;False;False;;;;1610422290;;False;{};giyo1hw;False;t3_kv4s8z;False;True;t1_giwufta;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyo1hw/;1610485113;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lukeuntld072;;;[];;;;text;t2_y8pgd;False;False;[];;If u look at the top 10 also on this sub somewhere at the top u see that the polls are a lost cause. People rather vote at their favorite anime girl then actually great series. They dont know that their actually destroying anime.;False;False;;;;1610422330;;False;{};giyo47h;False;t3_kv4s8z;False;False;t1_gix7lr0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyo47h/;1610485161;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePhantomRaven;;;[];;;;text;t2_45tqag6z;False;False;[];;But there r many anime below 1000 that r a blast to watch. I dont base my watching sense on ratings as much as I base it on the short summary to see if it suits my taste;False;False;;;;1610422416;;False;{};giyoa0w;False;t3_kv4s8z;False;True;t1_gix24z3;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyoa0w/;1610485269;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;BI01;;;[];;;;text;t2_zl6tr;False;False;[];;i garuntee it wouldnt of been as hyped as it was. people move on to new trendy shows quickly;False;False;;;;1610422424;;False;{};giyoajo;False;t3_kv4s8z;False;False;t1_giygvz2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyoajo/;1610485277;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;But the ending doesn't come into play here much becuase it's gonna most likely be a separate listing on Mal. Either Aot final season p2 or aot final movie;False;False;;;;1610422450;;False;{};giyocbd;True;t3_kv4s8z;False;True;t1_giynwxk;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyocbd/;1610485309;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lukeuntld072;;;[];;;;text;t2_y8pgd;False;False;[];;Fmab and aot are both masterpieces. But come on are people really that nolife to scorebomb a show that just sad.;False;False;;;;1610422552;;False;{};giyoj44;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyoj44/;1610485431;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DetectivePokeyboi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PokeyDeathBoi;light;text;t2_3or1e91u;False;False;[];;"FMAB is 60 episodes of pure awesomeness. It knows how to slowly reveal details to keep you hooked while still maintaining character development, plot progression, and a balance between the genres. Of all of its episodes, there are only a few bad episodes and there are a lot of extremely hype scenes in the anime. It also is able to be watched by anyone very easily. It fits a much wider audience and has a more global appeal. It is an amazing starter anime, there isn't really any filler, and there isn't really characters that are completely hated or thought to be annoying. -There may have been much better seasonal anime, but those are only really 1 season and lack the built up satisfaction that FMAB has, which definitely boosts its ratings. Also there are a ton of seasonal anime that end on a cliffhanger and with only 12 episodes the story can feel rushed and plot points need to be condensed instead of introduced over a huge amount of episodes. MAL doesn't have overall anime scores and instead rates season by season so the ratings given to each anime are per season instead of how the anime is like overall. For example, the season 1 of AoT is great but isn't like masterpiece level, but if you combine it with the rest of the seasons intertwining the story and callbacks together you will get an overall sense of how great the anime as a whole is, but you would have no way of showing that via MAL scores.";False;False;;;;1610422593;;False;{};giyolxc;False;t3_kv4s8z;False;True;t1_gix6ydg;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyolxc/;1610485480;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tjl73;;MAL;[];;http://myanimelist.net/animelist/tjl1973;dark;text;t2_g95ad;False;False;[];;You can't consider an anime = a novel. By their very nature, a novel can go a lot more in-depth than a one cour series. Majo no Tabitabi is no exception.;False;False;;;;1610422694;;False;{};giyospj;False;t3_kv4s8z;False;True;t1_giyg529;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyospj/;1610485604;2;True;False;anime;t5_2qh22;;0;[]; -[];;;skoffworld;;;[];;;;text;t2_2dlkojob;False;False;[];;It deserves it too. In hindsight, every season was incredible, and it has top notch story telling, world building, etc. The only area it struggles a little bit is with character development... everyones still kinda exactly who they were in the beginning;False;False;;;;1610422768;;False;{};giyoxpo;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyoxpo/;1610485695;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rollin340;;;[];;;;text;t2_cmyef;False;False;[];;"Probably. Do I think it's better? Yes. But the main reason is probably that AoT came out more recently, and thus reached a much wider audience who followed it. - -Classics remain popular BECAUSE they are classics. But in sheer numbers, the newer big hits would likely always have far more fans.";False;False;;;;1610422814;;False;{};giyp0rp;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyp0rp/;1610485751;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EldritchCarver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Pilomotor;light;text;t2_4epcw;False;False;[];;https://tvtropes.org/pmwiki/pmwiki.php/Main/SeinfeldIsUnfunny;False;False;;;;1610422818;;False;{};giyp10e;False;t3_kv3vgw;False;False;t1_giw5hsi;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giyp10e/;1610485754;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PsychoEliteNZ;;MAL;[];;http://myanimelist.net/animelist/PsychoEliteNZ;dark;text;t2_g0ms2;False;False;[];;"It's a what if in the sense that ""If this happened differently then this is what you get"". - -But not in the sense that it could happen, since it did actually happen.";False;False;;;;1610422824;;False;{};giyp1gy;False;t3_kv4s8z;False;True;t1_giylu4g;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyp1gy/;1610485764;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DetectivePokeyboi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PokeyDeathBoi;light;text;t2_3or1e91u;False;False;[];;How good a show is is not equal to the average of all the seasons combined. There are plot points that won't reap its benefits until the end of the show and part of the show is the built up satisfaction that is included with it. There should just instead be a mal entry for each season and a seperate entry for the show overall, though that is a bit awkward to implement. The entire system is flawed because of how seasonal anime work compared to long shows.;False;False;;;;1610422881;;False;{};giyp57z;False;t3_kv4s8z;False;True;t1_giwwb7x;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyp57z/;1610485836;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Eh, s4 fixed that imo, also keep in mind s1-3 took place over the span of like 5 months. That's not a lot of time for people to reflect in there life. Also don't forget Levi and Historia, they both got top notch character development. Then we have Eren and Reiner who also got top notch development.;False;False;;;;1610423032;;False;{};giypffd;True;t3_kv4s8z;False;True;t1_giyoxpo;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giypffd/;1610486025;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Numerouly;;;[];;;;text;t2_7drf11hw;False;False;[];;How's cringevenger going for you? The final arc for aot's manga is pretty trash right now though. A complete nose dive.;False;False;;;;1610423085;;1610424968.0;{};giypiyx;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giypiyx/;1610486087;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ikr, I'd like to give fmab a 1 out of pure rage but I can't morally. I can't stoop so low.;False;False;;;;1610423089;;False;{};giypj7u;True;t3_kv4s8z;False;True;t1_giyoj44;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giypj7u/;1610486092;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;DetectivePokeyboi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PokeyDeathBoi;light;text;t2_3or1e91u;False;False;[];;imo I think FMAB is better than AoT as a whole (there were a lot of boring parts in AoT while I didn't really feel the same with FMAB). However, I will rate the anime accordingly to what I believe they should get, with FMAB being a 9.9 and AoT being a 9.6 on anilist (when synced with MAL both scores become a 10 because of the lack of fractional scores on MAL). False scorers are scum. It makes things harder for people like me who uses the scores as an indicator of what I should watch.;False;False;;;;1610423139;;False;{};giypmla;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giypmla/;1610486168;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AntiBomb;;;[];;;;text;t2_ykhgm;False;False;[];;The deal was that GRRM would finish writing the books before the show finished so they could adapt them. He didn't finish a single one since season 1 in 2011. We don't even know when the next one will be released and the show caught up with the books with season 5 in 2015 so they would have had to wait at least 6 years, or even more, after that. And the season ended on a fucking MASSIVE cliffhanger, so because of all that I think they had no choice but to continue.;False;False;;;;1610423177;;False;{};giypp68;False;t3_kv4s8z;False;False;t1_giygvz2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giypp68/;1610486237;20;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;I feel the same as you, but opposite. I found parts of FMAB boring while Aot has been on full throttle from ep 1. But i respect your opinion and the fact you choose to not take part in something that's stooping so low;False;False;;;;1610423387;;False;{};giyq3bk;True;t3_kv4s8z;False;True;t1_giypmla;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyq3bk/;1610486505;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"Reviews rarely tend to correlate with a show's overall score due to how heavily tastes differ from the reviewing audience to the general scoring audience. Even many high rated shows have a huge proportion of negative reviews. - -I heavily doubt there are more than a thousand or so written reviews on SAO which would be less than 1% of the total scores.";False;False;;;;1610423409;;False;{};giyq4sv;False;t3_kv4s8z;False;True;t1_giyo14x;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyq4sv/;1610486538;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FlamingSparrow;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/NTangudu;light;text;t2_wk95e;False;False;[];;Yea and if the season ends where we think it ends, it'll be the perfect final arc for a movie.;False;False;;;;1610423498;;False;{};giyqal9;False;t3_kv4s8z;False;True;t1_gixwqth;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyqal9/;1610486648;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;"Honestly i dont think most people take MAL reviews seriously esp if you go to the daily discussion. Be it the cringy fanboys or haters, i’ll suggest to just wait until final episode and perhaps the reviews wont be as biased as it is right now. - -I can see if you think that jumping to #2 doesnt make sense with only episode 5 while in my eyes, aside from the boosts of manga readers, many anime-onlies are engaged with the story and after that episode 5, they are hyped so much. Check the YT reactions of anime-onlies, almost 100% of them were hyped and some of them were completely blown away, this is the case in MAL episode discussion as well.";False;False;;;;1610423627;;False;{};giyqja9;False;t3_kv4s8z;False;True;t1_gixyyon;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyqja9/;1610486835;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDarkSwordsman;;;[];;;;text;t2_jakj8;False;False;[];;"Okay, but you're then suggesting that the ratings of about 2-5 do not align close enough to the reviews. - -Very few shows on MAL actually have below 5 for their ranked score. I think that in itself, alongside the low score reviews you can see, is proof enough that the scores on MAL are so heavily biased. - -The people that decided to vote maybe weren't brigading, but they were heavily influenced to think a certain way. Their scores are a reflection of that.";False;False;;;;1610423634;;False;{};giyqjs6;False;t3_kv4s8z;False;True;t1_giyq4sv;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyqjs6/;1610486844;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;">you're then suggesting that the ratings of about 2-5 do not align close enough to the reviews - -Nah I'm just trying to say the review writing audience is much more extreme in their scores compared to the average user of which there are much more who don't bother with pointless reviews. - -At the end of the day, reviews usually fail to dictate the overall score of a show in the slightest";False;False;;;;1610423836;;1610424314.0;{};giyqx8b;False;t3_kv4s8z;False;True;t1_giyqjs6;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyqx8b/;1610487125;0;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;Glad you enjoyed it !;False;False;;;;1610424082;;False;{};giyrdyh;False;t3_kv4s8z;False;False;t1_gix2z1r;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyrdyh/;1610487459;6;True;False;anime;t5_2qh22;;0;[]; -[];;;CitronRemote;;;[];;;;text;t2_9s452ex4;False;False;[];;"Then it's pointless to talk about what's ""the greatest anime"" at all if that's your mindset, so why even comment and join the discussion? Like, do you really think it's better to say ""every anime is equally good because there are people who enjoy them""? - -Attack on Titan, AT THE VERY LEAST, is a top contender for the greatest anime. Similarly with FMAB. If you think there are better picks, feel free to list them and discuss them with people. That's what reddit is for. But if your argument is that there is no ""greatest anime"" then... fuck off? I mean by that point, the discussion obviously isn't meant for you. Why purposefully ruin it for others who do think there is a ""greatest anime""? - -If enough people think it's the greatest anime, then by that point it's not just opinions, but statistics. An anime that more people think is the greatest anime deserves the title more than other anime with fewer people supporting them.";False;False;;;;1610424191;;False;{};giyrl2j;False;t3_kv4s8z;False;True;t1_gixzjpo;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyrl2j/;1610487607;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ghostlima;;;[];;;;text;t2_33dypa4;False;False;[];;I have read the manga and FMA brotherhood is my favorite anime of all time, but if the anime keeps doing a great job and the manga (wich isnt finished yet) has an ending suited for this series then I have nothing against this being the most rated anime ever. The fact that i have been experiencing this series for so long makes me consider if attack in titan isnt also my favorite, its something to consider months after the ending though. Its trully and amazing story.;False;False;;;;1610424195;;False;{};giyrlcw;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyrlcw/;1610487612;2;True;False;anime;t5_2qh22;;0;[]; -[];;;snapthesnacc;;;[];;;;text;t2_56qhnxv4;False;False;[];;"Nostalgia is absolutely a strong factor. It was one of the first anime for a lot of people who came after the DBZ and Naruto popularity wave. I personally couldn't make it to the end due to the painfully unfunny short jokes, but I've heard the story is good. There's also the fact that it's one of the few complete manga adaptations, so it can be judged as 1 complete product. - -The only real reason I can think of for brigadors to constantly come back and defend it is because of spite and nostalgia. - -I find it impossible that it would've stayed number 1 as long without some kind of brigading and boting. Anyone who genuinely thinks that there hasn't been a *single* anime in the last *10 years* that's better than FMAB is lying to themselves, blinded by nostalgia, or hasn't seen enough anime.";False;False;;;;1610424399;;False;{};giyrz3v;False;t3_kv4s8z;False;True;t1_giwx0my;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyrz3v/;1610487887;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610424420;;False;{};giys0h4;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giys0h4/;1610487913;0;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;1s and 10s aren't really comparable at this point, simply because the overall rating is above a 9. If you think the rating is lower than what it should be, your only real option is to give it a 10, and that's not score manipulation (well, technically you might think it should be a 9.3 and vote a 10 when you'd otherwise vote 9), whereas if you give it a 1, you're probably just doing it to drag the score down regardless of whether you thought it was really a 5 or an 8.;False;False;;;;1610424441;;False;{};giys1uh;False;t3_kv4s8z;False;True;t1_gixfael;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giys1uh/;1610487940;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Claxzz_;;;[];;;;text;t2_69zcf841;False;False;[];;We keep moving forward;False;False;;;;1610424457;;False;{};giys2wc;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giys2wc/;1610487958;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aohige_rd;;;[];;;;text;t2_ttrmj;False;False;[];;"No, you misunderstand. MT is most definitely the source of isekai tropes not because it invented them, because it didn't, but because it was the most popular novel by a LARGE margin, and caused massive copycats to flood the market, kickstarting the fad overall. - -Pre MT and Post MT is a night and day in Narou, it exploded because of MT.";False;False;;;;1610424498;;False;{};giys5q1;False;t3_kv3vgw;False;False;t1_gixeo3i;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giys5q1/;1610488009;6;True;False;anime;t5_2qh22;;0;[]; -[];;;kritigya;;;[];;;;text;t2_1dg22dx3;False;False;[];;MAL rankings have never meant shit.. only good to come out of the rating system is that you may be able to guess how good or bad an anime is. If it's near some anime you like in ratings it might be good. I have watched FMAB 2 times and yes it's good but is it the best? no. The anime's pacing at times was very fast so you couldn't soak in the moments that should've hit hard. Yes it is in my top 10 but not at the top. The way AOT is going rn I can feel that it will be one of the best I have seen barring one piece which I have only read the manga of but is the most complete story ever. FMAB fandom will always remain toxic and I don't care what it does to this post but it definitely doesn't deserve to be the top especially If the fans need to downvote a masterpiece for it to be.;False;False;;;;1610424589;;False;{};giysbpx;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giysbpx/;1610488124;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DeltaElPsyCongroo;;;[];;;;text;t2_5c3k838g;False;False;[];;"We, Steins;Gate fans, let you pass. Go and good luck, you deserve it.";False;False;;;;1610424602;;False;{};giyscjm;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyscjm/;1610488139;3;True;False;anime;t5_2qh22;;0;[]; -[];;;aohige_rd;;;[];;;;text;t2_ttrmj;False;False;[];;"Yes, but, this was more popular than most of those combined. -Mushoku Tensei is what made Syosetuka ni Narou explode in popularity, causing the site to be flooded with Isekai copycats. - -MT didn't invent the trope, it made it popular. So it's the grandfather of the ""isekai fad"", not isekai itself. There's a distinction.";False;False;;;;1610424608;;False;{};giyscxv;False;t3_kv3vgw;False;False;t1_gixsf55;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giyscxv/;1610488146;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Thank you Mad scientist Hyoin in Kyoma, you sonvabich;False;False;;;;1610424705;;False;{};giysj7k;True;t3_kv4s8z;False;True;t1_giyscjm;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giysj7k/;1610488264;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Honestly, facts bro. FMAB is just a good show, a 8/10 good show. Not a masterpiece, not something revolutionary but just good.;False;False;;;;1610424786;;False;{};giysokx;True;t3_kv4s8z;False;True;t1_giysbpx;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giysokx/;1610488369;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Until we exterminate every last one of our enemies;False;False;;;;1610424820;;False;{};giysqvg;True;t3_kv4s8z;False;True;t1_giys2wc;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giysqvg/;1610488412;0;True;False;anime;t5_2qh22;;0;[]; -[];;;DeltaElPsyCongroo;;;[];;;;text;t2_5c3k838g;False;False;[];;I take this as a compliment;False;False;;;;1610424840;;False;{};giyss8b;False;t3_kv4s8z;False;False;t1_giysj7k;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyss8b/;1610488438;1;True;False;anime;t5_2qh22;;0;[]; -[];;;breakingbatshitcrazy;;;[];;;;text;t2_dbxtc;False;False;[];;AoT and FMAB are both incredible works and who cares what MAL and toxic fans says. None of this takes away from how great both series is.;False;False;;;;1610424927;;False;{};giysy25;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giysy25/;1610488549;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kanekiri;;;[];;;;text;t2_laqa7q6;False;False;[];;I would like to ask how fanservice-y this show is? I want to try this one but I am afraid there might be too much fanservice... (I simply don't like fanservice tbh);False;False;;;;1610424944;;False;{};giysz5a;False;t3_kv3vgw;False;True;t3_kv3vgw;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giysz5a/;1610488570;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;For sure m8🤔 i can think of like 5 better than FMAB. I'll list em out, Vinland saga, re zero, steins gate, Anohana and your name. There;False;False;;;;1610424964;;False;{};giyt0ie;True;t3_kv4s8z;False;True;t1_giyrz3v;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyt0ie/;1610488593;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lordajhs;;;[];;;;text;t2_1dwxnfkg;False;False;[];;Could be but we don't even have an ending yet on the manga so, please God let it be a great ending, it could be bad as fuck as it often happens.;False;False;;;;1610424969;;False;{};giyt0u8;False;t3_kv4s8z;False;True;t1_giw23ce;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyt0u8/;1610488600;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Facts;False;False;;;;1610424983;;False;{};giyt1ui;True;t3_kv4s8z;False;True;t1_giysy25;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyt1ui/;1610488618;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dakar-A;;;[];;;;text;t2_7xx23;False;False;[];;...four whole years...;False;False;;;;1610425068;;False;{};giyt7fc;False;t3_kv4s8z;False;True;t1_giygvz2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyt7fc/;1610488745;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Artistic_Air_4263;;;[];;;;text;t2_9s45lx35;False;False;[];;Because it's made by Bones.;False;False;;;;1610425129;;False;{};giytbfw;False;t3_kv4s8z;False;True;t1_giylvql;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giytbfw/;1610488825;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Numerouly;;;[];;;;text;t2_7drf11hw;False;False;[];;"Aot fans, please talk only after you stick the landing. I admit the series is more ambicious and every arc is always different, giving you a breath of fresh air, but if you can't stick the landing, it's just game of thrones 2.0. - -Isayama really shouldnt have mess with his intended ending inspired by the mist. How the final arc is going... he wasn't joking about changing the ending to be similar to Guardians of the Galaxy.";False;False;;;;1610425137;;False;{};giytbzc;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giytbzc/;1610488835;1;True;False;anime;t5_2qh22;;0;[]; -[];;;huntrshado;;;[];;;;text;t2_404y4;False;False;[];;Yep 100%;False;False;;;;1610425282;;False;{};giytlcn;False;t3_kv4s8z;False;True;t1_giyqal9;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giytlcn/;1610489019;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lordajhs;;;[];;;;text;t2_1dwxnfkg;False;False;[];;"If you like FMBA but not the end, that could still happen on SNK's last manga chapter. I mean, the last chapter on series is most of the most controversial because all of the personal opinion of viewers. - -I've seen endings that I've loved and a lot of people hated, and I've seen endings that I hated and tons loved. But I've never seen a ending liked by everyone or not hated at all. - -I'm hopeful that SNK ends as a masterpiece and deserves #1, even though idgaf about myanimelist, it's kind of a honor and I'm one of those who likes FMA better than FMAB, - -P.S.: That's #1 until One Piece ends.";False;False;;;;1610425445;;False;{};giytvvf;False;t3_kv4s8z;False;True;t1_giygy2x;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giytvvf/;1610489239;2;True;False;anime;t5_2qh22;;0;[]; -[];;;limbo_2004;;;[];;;;text;t2_3c5fh2zj;False;False;[];;Except the problem is GRRM is never going to finish GOT;False;False;;;;1610425466;;False;{};giytxaz;False;t3_kv4s8z;False;True;t1_giygvz2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giytxaz/;1610489266;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610425593;;False;{};giyu5dz;False;t3_kv3vgw;False;True;t1_giysz5a;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giyu5dz/;1610489424;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Individual_Pack;;;[];;;;text;t2_1bgb6lhg;False;False;[];;Being highest rated is really something people shouldn't care about. Also from your edited add-on you're such a baby. Just delete this post then. Who really give a shit, people down in this comment section attacking this and that fandom with prejudice and general internet mentality are also pathetic as hell. People mass voting 10 stars cancel out people mass voting 1 stars and the same way around. That's it. This is such waste of time.;False;False;;;;1610425854;;1610426109.0;{};giyulqy;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyulqy/;1610489736;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IIHURRlCANEII;;MAL;[];;http://myanimelist.net/animelist/Caerus--;dark;text;t2_6ivfh;False;True;[];;"It's not even top 10 for me lol. - -Good show still of course, but it's not gonna be in everyone's top 3.";False;False;;;;1610425879;;False;{};giyundy;False;t3_kv4s8z;False;False;t1_gixi3mt;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyundy/;1610489765;4;True;False;anime;t5_2qh22;;0;[]; -[];;;notbob-;;;[];;;;text;t2_a897t;False;False;[];;The thing is that even if this isn't the best example, *any* example will work. Though I wrote that I think the lineart of SAO:A is ugly, when I see 720p encodes of it, I think it look close to flawless.;False;False;;;;1610425976;;False;{};giyutit;True;t3_kv3vgw;False;True;t1_gixsau9;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giyutit/;1610489888;3;True;False;anime;t5_2qh22;;0;[]; -[];;;saikounihighteyatzda;;;[];;;;text;t2_8tj3rl21;False;False;[];;">If you dislike FMBA besides the end - -uuuh, that's the opposite of how I feel towards FMAB. I mean, actually, it's just the Ed vs. Father fight I was iffy about. I felt everything else about the ending was amazing. Just that one fight that could've been better executed. - -and for everything else, yeah I guess sure. I'd rather have a 9.3 and a 9.2 than a 9.2 and a 9.1. But I don't care about MAL either. Its 7-8's are too bias towards seasonal shows. For example, a trending show can get an 8.9 only because it's trending right now and appeals to people now. Like, Idk about how MAL worked in 2013, but I'm sure there were tons of people putting 8's and 9's for AoT season 1 just because it was the hot new show without reading the manga. I can safely say it's a modern classic that should get >9, but definitely not season 1 by itself. But now's the era of seasonal shows that just come and go. Honestly, I wish if not nearly every show was seasonal these days, but the seasonal cycle is beneficial in many ways, so there should be ones that distinguish themselves and break from it and its drawbacks, if they outweigh the benefits. So, yeah. MAL is bias. Steel Ball Run will probably get above Berserk if it doesn't end by the time SBR is animated. Possibly with One Piece once that finishes, too. Although OP's gonna definitely beat SBR once it's complete. Although I have no right to say which is better as Berserk is on my list and I'm still reading OP.";False;False;;;;1610426075;;False;{};giyuzo5;False;t3_kv4s8z;False;True;t1_giytvvf;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyuzo5/;1610489999;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ben99ny22;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ben99ny;light;text;t2_14rmpidg;False;False;[];;not really. One punch man may have been done by a different studio and not look as nearly good but it was a very faithful adaption. It just goes to show that animation is the main reason certain shows got popular.;False;False;;;;1610426433;;False;{};giyvm3r;False;t3_kv4s8z;False;True;t1_gixfkaa;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyvm3r/;1610490503;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DetectivePokeyboi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PokeyDeathBoi;light;text;t2_3or1e91u;False;False;[];;Yeah everyone has their own opinions and that is what should be represented by MAL. It should not be flooded by random fanboys who want their favorite show to be number 1.;False;False;;;;1610426488;;False;{};giyvpjt;False;t3_kv4s8z;False;True;t1_giyq3bk;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyvpjt/;1610490568;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lordajhs;;;[];;;;text;t2_1dwxnfkg;False;False;[];;">If you dislike FMBA besides the end - -That was a typo, I'm sorry. I thought I edited it. - -And I agree with what you said. But eventually, new people watch it, new people rate it. There's brigading and shit, or a new wave of viewers because something, just like it happened with The Last Airbender at the beginning of the pandemic/lockdown. - -Good talk. I love people with which I can talk to coherently, so I guess I love you.";False;False;;;;1610426504;;False;{};giyvqip;False;t3_kv4s8z;False;True;t1_giyuzo5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyvqip/;1610490586;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Beyond-Tough;;;[];;;;text;t2_9s3wgt3z;False;False;[];;"?? If someone asks you ""how's Attack on Titan going?"" Are you gonna respond with ""I have no idea, the entirety of season 4 has not been released yet and therefore I am physically unable to form literally any opinion on it""? - -You do realize people can and do still adjust their scores as the season goes on and after the season has finished, right? If an anime starts off good and people give it a good score, but then it becomes bad later, then they can still lower their score. It's not like the score at the end of the season is gonna be inaccurate because of that. There is no downside to rating an anime before it's finished besides the people whining about it.";False;False;;;;1610426550;;False;{};giyvtbx;False;t3_kv4s8z;False;True;t1_gix20f9;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyvtbx/;1610490639;2;True;False;anime;t5_2qh22;;0;[]; -[];;;saikounihighteyatzda;;;[];;;;text;t2_8tj3rl21;False;False;[];;"Oh, np. - -And, yes, I'm a sophisticated and logical person. I love you, too, random stranger who I met right now and will probably never again see in the rest of my life.";False;False;;;;1610426632;;False;{};giyvyfj;False;t3_kv4s8z;False;False;t1_giyvqip;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyvyfj/;1610490735;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ben99ny22;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ben99ny;light;text;t2_14rmpidg;False;False;[];;"i've heard that its just harder to animate something like attack on titan. for instance, nichijou looks so good because its minimalistic, its not as detailed as attack on titan with its buildings, character designs (clothing), and the titans. Of course nichijou was also done by kyoto animation. - -Wit is a small studio. They only did 2 anime in 2019 (that i know of). Studio's just couldn't handle a big project like attack on titan. It a miracle that mappa decided to animate it and looks relatively good.";False;False;;;;1610426681;;False;{};giyw1ip;False;t3_kv4s8z;False;True;t1_gix6uo3;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyw1ip/;1610490793;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ooibikboi;;;[];;;;text;t2_5hrwhll0;False;False;[];;"coming from a huge fmab fan i honestly wouldnt mind if aot dethroned fmab lmao general consensus ratings shouldnt change your opinion on a show if your opinion is grounded in what you believe and not what others say - -also bc aot is hype as fuck!!!!!!";False;False;;;;1610426752;;False;{};giyw5xj;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyw5xj/;1610490879;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BakaFame;;;[];;;;text;t2_zfj4h;False;False;[];;I hope it surpasses FMAB, it's been there way too long. It should be purged.;False;False;;;;1610426858;;False;{};giywcge;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giywcge/;1610491004;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Numerouly;;;[];;;;text;t2_7drf11hw;False;False;[];;Lmao, he's downvoting everyone who's disagreeing with him. Pathetic;False;False;;;;1610426918;;False;{};giywg50;False;t3_kv4s8z;False;True;t1_giyulqy;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giywg50/;1610491072;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610427057;;False;{};giywov4;False;t3_kv4s8z;False;True;t1_giyrl2j;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giywov4/;1610491233;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SizzlingHotDeluxe;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Galarrdo;light;text;t2_1gpukgw8;False;False;[];;"According to the mal system, the 1 ratings that are considered not legit by the system still show up but aren't taken into account for the score calculation. - -So even if it shows, a show has 1k 1 ratings, it doesn't mean all of them count towards the final score.";False;False;;;;1610427084;;False;{};giywqh4;False;t3_kv4s8z;False;True;t1_giwzq9t;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giywqh4/;1610491264;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Star_Lux22;;;[];;;;text;t2_22d262q9;False;False;[];;It’s at 7, which isn’t bad at all lol. Especially considering it’s an older anime;False;False;;;;1610427084;;False;{};giywqha;False;t3_kv4s8z;False;True;t1_giy4egf;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giywqha/;1610491264;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ben99ny22;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ben99ny;light;text;t2_14rmpidg;False;False;[];;i would say you are right on that assumption but how come a gintama or monogatari season isn't higher? You need to watch gintama's first season which is 200 episodes to get to the other seasons but its still rated around that first season. Monogatari is a very niche and very dialogue heavy show so there are a lot of drops but even the later season, while being higher, isn't high enough.;False;False;;;;1610427131;;False;{};giywtbo;False;t3_kv4s8z;False;True;t1_gix6hgz;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giywtbo/;1610491316;0;True;False;anime;t5_2qh22;;0;[]; -[];;;supercooper3000;;;[];;;;text;t2_b5aw9;False;False;[];;Don't forget Hannibal and the Leftovers! I think they both have episodes around 9.8;False;False;;;;1610427145;;False;{};giywu3r;False;t3_kv4s8z;False;True;t1_gixoxf7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giywu3r/;1610491330;3;True;False;anime;t5_2qh22;;0;[]; -[];;;fourfloorsup;;;[];;;;text;t2_8vkicz3w;False;False;[];;It's a decent chapter, but in a sea of mediocrity.;False;False;;;;1610427367;;False;{};giyx7cr;False;t3_kv4s8z;False;True;t1_giym0qm;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyx7cr/;1610491569;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Agreed, let's spice it up;False;False;;;;1610427489;;False;{};giyxenc;True;t3_kv4s8z;False;True;t1_giywcge;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyxenc/;1610491722;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Honestly agreed, I'll think what i think and you'll think what you think. Let's just accept that and have a good time;False;False;;;;1610427529;;False;{};giyxgzl;True;t3_kv4s8z;False;True;t1_giyw5xj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyxgzl/;1610491765;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ya mate;False;False;;;;1610427563;;False;{};giyxj1b;True;t3_kv4s8z;False;True;t1_giyvpjt;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyxj1b/;1610491801;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Guda_D_Guda;;;[];;;;text;t2_9lkbd0qu;False;False;[];;"Fullmetal Alchemist: Brotherhood is rated 9.21 on MAL. I decided to check myself, and after adding the numbers together I only got 9.11. Even after removing the 1/10, 2/10, 3/10 and 4/10 scores from the equation, I still only got 9.19. I also tried doing this for Attack on Titan Final Season and just by removing the 1/10 scores I got 9.28. - -I think this is very suspicious.";False;False;;;;1610427642;;False;{};giyxnk4;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyxnk4/;1610491892;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;HorseMainBTW;;;[];;;;text;t2_7f796rw;False;False;[];;Who actually cares tho, what the hell;False;False;;;;1610427762;;False;{};giyxuk1;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyxuk1/;1610492023;0;True;False;anime;t5_2qh22;;0;[]; -[];;;karneheni;;;[];;;;text;t2_4lmei044;False;False;[];;"and that makes AoT not just overrated, but Top 1 overrated anime of all time - -dropped it on ep6, too much SCREAMING and EYES POPING, too little sence";False;False;;;;1610427811;;1610428320.0;{};giyxxco;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyxxco/;1610492082;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610427829;;1610428121.0;{};giyxye0;False;t3_kv4s8z;False;True;t1_giyikbg;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyxye0/;1610492104;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Guda_D_Guda;;;[];;;;text;t2_9lkbd0qu;False;False;[];;Mass rating 10 and mass rating 1 is far from the same. A 10/10 score on a highly rated show only pushes the score up ever so slightly, but a 1/10 pulls it down hard. This is because of the tiny/large difference between the score and the rating.;False;False;;;;1610427911;;False;{};giyy2zk;False;t3_kv4s8z;False;False;t1_giyulqy;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyy2zk/;1610492192;1;True;False;anime;t5_2qh22;;0;[]; -[];;;R0bert24;;;[];;;;text;t2_3y12hba;False;False;[];;this post is just a toxicity bait lmao;False;False;;;;1610428274;;False;{};giyyn6y;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyyn6y/;1610492587;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Bruhhhhh;False;False;;;;1610428354;;False;{};giyyrly;True;t3_kv4s8z;False;True;t1_giyxxco;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyyrly/;1610492679;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThatHappyCamper;;;[];;;;text;t2_14ki0e;False;False;[];;Regarding waifu2x, is there some sort of application to video files of episodes that people are using, or are we just talking upscaling waifu art. I use it on individual illustrations but I'm just trying to figure out how that fits into all this.;False;False;;;;1610428363;;False;{};giyys4l;False;t3_kv3vgw;False;True;t1_giw6ern;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giyys4l/;1610492689;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;6k upvotes so someone cares ig 🤷;False;False;;;;1610428373;;False;{};giyysn0;True;t3_kv4s8z;False;True;t1_giyxuk1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyysn0/;1610492698;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ummmm maybe you did the math wrong ? Are they seriously so wrong ? Like are they faking the number;False;False;;;;1610428446;;False;{};giyywt0;True;t3_kv4s8z;False;True;t1_giyxnk4;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyywt0/;1610492783;1;True;False;anime;t5_2qh22;;0;[]; -[];;;harshit1705;;;[];;;;text;t2_35o1c08d;False;False;[];;How am I supposed to relate to that? No thanks, I would rather watch my 2d waifus. /s;False;False;;;;1610428502;;False;{};giyyzww;False;t3_kv4s8z;False;True;t1_gixxff0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyyzww/;1610492840;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Alljokesaside;;;[];;;;text;t2_i06vy;False;False;[];;You could just delete the post....;False;False;;;;1610428711;;False;{};giyzbrt;False;t3_kv4s8z;False;False;t1_gixokan;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyzbrt/;1610493076;1;True;False;anime;t5_2qh22;;0;[]; -[];;;harshit1705;;;[];;;;text;t2_35o1c08d;False;False;[];;Damn Right.;False;False;;;;1610428713;;False;{};giyzbwv;False;t3_kv4s8z;False;True;t1_gixzrl2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyzbwv/;1610493078;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610428792;;False;{};giyzgd9;False;t3_kv4s8z;False;True;t1_giyysn0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyzgd9/;1610493156;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AssCon;;;[];;;;text;t2_8t6gz;False;False;[];;I thought I was going crazy with the shake, haha. It definitely worked as intended though - made me feel a sort of nostalgia.;False;False;;;;1610428892;;False;{};giyzlxv;False;t3_kv3vgw;False;True;t3_kv3vgw;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giyzlxv/;1610493255;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Numerouly;;;[];;;;text;t2_7drf11hw;False;False;[];;Code Geass crawled so everyone else could walk. Even aot is trying to copy it's ending.;False;False;;;;1610428943;;False;{};giyzoqg;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giyzoqg/;1610493305;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Regrer47;;;[];;;;text;t2_1wtg17bq;False;False;[];;The humor can sometimes feel out of place. Aside from that I have nothing though;False;False;;;;1610429202;;False;{};giz02xu;False;t3_kv4s8z;False;False;t1_gixo4nz;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz02xu/;1610493553;11;True;False;anime;t5_2qh22;;0;[]; -[];;;sandfly_bites_you;;;[];;;;text;t2_6aaqunkw;False;False;[];; For me the whole not killing thing, or that it is some line the character cannot cross, always seemed rather childish, so I pretty much had the opposite reaction here.;False;False;;;;1610429240;;False;{};giz04zk;False;t3_kv4s8z;False;False;t1_gixurs0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz04zk/;1610493589;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Pacattack57;;;[];;;;text;t2_rq98w;False;False;[];;Sure but the ranking is for an anime, not a studio. When you look at an all time ranking you want the series, not split up because you won’t choose to watch s2 of something because it’s rated higher;False;False;;;;1610429287;;False;{};giz07ho;False;t3_kv4s8z;False;True;t1_gixfkaa;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz07ho/;1610493632;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pacattack57;;;[];;;;text;t2_rq98w;False;False;[];;I feel the same about Steins Gate. I see where they’re trying to go but it’s wayyyy too confusing and I can’t be bothered to try and force myself to watch 8 episodes before it gets good;False;False;;;;1610429416;;False;{};giz0eam;False;t3_kv4s8z;False;True;t1_gixlrwb;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz0eam/;1610493762;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Guda_D_Guda;;;[];;;;text;t2_9lkbd0qu;False;False;[];;It's not that they are faking the number, they have a system that automatically removes fake reviews. The problem is that this system calls almost all the low ratings on FMA fake and just ignores the low ratings on AOT.;False;False;;;;1610429476;;False;{};giz0hj4;False;t3_kv4s8z;False;True;t1_giyywt0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz0hj4/;1610493825;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pacattack57;;;[];;;;text;t2_rq98w;False;False;[];;That MAL ranking is shit.;False;False;;;;1610429549;;False;{};giz0lej;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz0lej/;1610493910;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Lunar_eclipse9;;;[];;;;text;t2_49og6dsx;False;False;[];;I tried to get into AOT so many times but it just didn’t grab my attention (I’m talking about over 7 episodes). I couldn’t sit thru it no matter how much I actually wanted to so yea :/;False;False;;;;1610429641;;False;{};giz0q64;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz0q64/;1610493999;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BenN3T1700;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BenNet1700;light;text;t2_uklck;False;False;[];;"But im talking about people who are deadset on their rating before they even know. You can form an opinion on something at its current state but you shouldn't use the opinion to say ""ohh this is the best show ever"" when its not even over.";False;False;;;;1610429846;;False;{};giz10t3;False;t3_kv4s8z;False;True;t1_giyvtbx;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz10t3/;1610494191;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610430121;;False;{};giz1f82;False;t3_kv4s8z;False;True;t1_giymzup;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz1f82/;1610494456;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lina1810;;;[];;;;text;t2_48rvgmz7;False;False;[];;I mean I'm a big fan of fmab and that was my introduction to anime. I loved that series from the bottom of my heart but cmon, it has to happen one day. I love aot and I think it deserves that spot because the storyline is just fantastic.;False;False;;;;1610430278;;False;{};giz1nhb;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz1nhb/;1610494604;0;True;False;anime;t5_2qh22;;0;[]; -[];;;StarOriole;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Oriole;light;text;t2_ds9h7;False;False;[];;"MAL tells you what the ratings mean when you select them: - -10 - Masterpiece -9 - Great -8 - Very Good -7 - Good -6 - Fine -5 - Average -4 - Bad -3 - Very Bad -2 - Horrible -1 - Appalling - -So, yeah, 7.6 would be between ""Good"" and ""Very Good."" Less than 5 means you're looking at the [Fall 2020 lineup](https://myanimelist.net/anime/season/2020/fall) and realizing you'd rather be watching the Inuyasha sequel. I haven't seen either, so that's entirely possible, but I think MAL's description of the ratings is pretty useful.";False;False;;;;1610430293;;False;{};giz1oau;False;t3_kv4s8z;False;True;t1_giy6lip;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz1oau/;1610494617;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiny_Umbreon;;;[];;;;text;t2_drggt;False;False;[];;All is probably an exaggeration but most of the best selling manga of all time have anime that have notorious animation, one piece has had that criticism for the last 10 years and has only recently stepped up the game, dragon ball super had some terrible animation at times;False;False;;;;1610430409;;False;{};giz1uc1;False;t3_kv4s8z;False;True;t1_giylvql;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz1uc1/;1610494728;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SirAwesome789;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SirAwesomeness;light;text;t2_ra3np;False;False;[];;Imo, I think it will overtake first, but it's also possible that the series will go back down if someone how they screw up later in the series. Like perhaps viewers will be disappointed if/when it doesn't adapt the entire series.;False;False;;;;1610430441;;False;{};giz1vyc;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz1vyc/;1610494757;0;True;False;anime;t5_2qh22;;0;[]; -[];;;27Devil;;;[];;;;text;t2_2cay4bit;False;False;[];;"Finnaly someone from my tribe. Everyone are salting over some mf points LMAO. Meanwhile I am happy that both of my favourite animes are at top so it doesn't matter if they take over each other anyway. -Edit: Here take my silver for your wise words";False;False;;;;1610430652;;False;{};giz26k3;False;t3_kv4s8z;False;False;t1_gixxb4h;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz26k3/;1610494953;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lankpants;;;[];;;;text;t2_ws3e6;False;False;[];;"I'm not so sure on that one, but allow me to explain my reasoning. - -At the moment AoT has 55.8% 10s. It's notably quite a lot higher than other shows around its score range like FMA (50.2%), Steins Gate (47.7%) and Gintama degree symbol (49.1%) Quite likely this is a result of the extreme fans of the series having already rated it. These fans cannot rate the show again. It's reasonable to expect that a higher proportion of people who aren't in this group will rate the show lower than a 10. Plus, if I recall correctly at one point AoT 3p2 was also the second rated anime and that didn't last. - -I'd be very surprised if AoT actually picks up to number 1, even if it executes perfectly on its ending. To me it just seems likely that the statistics would be working against it rather than for it in the long term. I could be wrong here, wouldn't really care either way since I only take a statistical interest in MAL scores but that's how I see this personally.";False;False;;;;1610430959;;False;{};giz2lu0;False;t3_kv4s8z;False;False;t1_giw23ce;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz2lu0/;1610495236;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lankpants;;;[];;;;text;t2_ws3e6;False;False;[];;Does the score wrap around if it goes low enough?;False;False;;;;1610431220;;False;{};giz2yz9;False;t3_kv4s8z;False;False;t1_gixrqbl;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz2yz9/;1610495492;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Well it has been a decade, but I recall that sloth dude just repeating mendokusai. And envy envied humans and pretended otherwise. Father just wanted to be god to not feel insecure I think? I dont remember what lust wanted, but wrath was the fan favorite badass and pride also had some grudge against humans. Greed was over the top in an entertaining way, but him possessing people was a bit hard to understand as a power, as was the idea of souls being alive inside the stones. The theme that homunculi felt inferior to humans was nice.;False;False;;;;1610431253;;False;{};giz30m3;False;t3_kv4s8z;False;False;t1_giybwv5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz30m3/;1610495521;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ahhhh, so it's not optimized;False;False;;;;1610431274;;False;{};giz31o7;True;t3_kv4s8z;False;True;t1_giz0hj4;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz31o7/;1610495539;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pigophone;;;[];;;;text;t2_cp7fp;False;False;[];;"https://i.imgur.com/hQ6ujHB.png - -Also a fair amount of chromatic aberation. Very interesting.";False;False;;;;1610431285;;False;{};giz326f;False;t3_kv3vgw;False;True;t3_kv3vgw;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giz326f/;1610495548;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610431380;;False;{};giz36v1;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz36v1/;1610495640;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GowtherETC;;;[];;;;text;t2_47ql3fom;False;False;[];;I'd have thought a fucking comedy show would be immune to that ridiculous review bombing. People get way too defensive on internet scores;False;False;;;;1610431564;;False;{};giz3fxj;False;t3_kv4s8z;False;True;t1_gixocbe;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz3fxj/;1610495807;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shawntalon2;;;[];;;;text;t2_1jto16vb;False;False;[];;It’s crazy cause things are just getting started, but I wanna hear everyone’s final score predictions for the final season because I know when MAPPA adapts the second half oh boy.;False;False;;;;1610431727;;False;{};giz3ns6;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz3ns6/;1610495958;0;True;False;anime;t5_2qh22;;0;[]; -[];;;wholelottavex;;skip7;[];;;dark;text;t2_99s2nkky;False;False;[];;Steins gate is boring trash;False;False;;;;1610431831;;False;{};giz3szd;False;t3_kv4s8z;False;False;t1_giz0eam;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz3szd/;1610496059;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;Yup, majority of the manga readers have it as at least top 3-5 chapters however lets wait until it get adapted so you can judge it if it’s a great one or not;False;False;;;;1610432060;;False;{};giz44a7;False;t3_kv4s8z;False;True;t1_giym0qm;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz44a7/;1610496273;3;True;False;anime;t5_2qh22;;0;[]; -[];;;YuviManBro;;MAL;[];;http://myanimelist.net/profile/Yuvimon;dark;text;t2_mvwt2;False;False;[];;Thanks didn’t ask;False;False;;;;1610432255;;False;{};giz4dme;False;t3_kv4s8z;False;False;t1_gixr4hr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz4dme/;1610496443;5;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;It might also mean that a portion of the 1s were seen as valid votes and not canceled, though. Hard to say.;False;False;;;;1610432926;;False;{};giz58dg;False;t3_kv4s8z;False;True;t1_giw7jyw;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz58dg/;1610496980;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SeyTi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SeyTi;light;text;t2_trkmzqm;False;False;[];;This is not anime. The actors age. You can't just pause a series and continue the next season with all characters being 10 years older.;False;False;;;;1610432982;;False;{};giz5azs;False;t3_kv4s8z;False;False;t1_giygvz2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz5azs/;1610497025;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Torture-Dancer;;;[];;;;text;t2_1blt9p7g;False;False;[];;Yeah, like tf, is a 10 out of 10 for me, was considered one of the best anime evers and now this, but tbh Death note surprises me more, is like between the 60 to 65 spots;False;False;;;;1610433171;;False;{};giz5jl6;False;t3_kv4s8z;False;False;t1_giw8ipm;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz5jl6/;1610497176;1;True;False;anime;t5_2qh22;;0;[]; -[];;;5iftyy;;;[];;;;text;t2_47wboxio;False;False;[];;The same exact thing happens with every season of gintama;False;False;;;;1610433219;;False;{};giz5lp4;False;t3_kv4s8z;False;True;t1_gix7lr0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz5lp4/;1610497221;1;True;False;anime;t5_2qh22;;0;[];True -[];;;DominelKira;;;[];;;;text;t2_3s08wif3;False;False;[];;You can also stop replying;False;False;;;;1610433304;;False;{};giz5pf3;False;t3_kv4s8z;False;True;t1_giy4nvj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz5pf3/;1610497286;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AwkwardlylyAwkward;;;[];;;;text;t2_48no1imj;False;False;[];;Stein gate fandom is not relaxed and chill they're as toxic as naruto fans but their number is low small toxic community that's why i simp Mushi-Shi small community but dedicated community;False;False;;;;1610433604;;False;{};giz62me;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz62me/;1610497523;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Stephen1945;;;[];;;;text;t2_448ovkb7;False;False;[];;Then there’s me being content the Legend of the Galactic Heroes is still in the top 10;False;False;;;;1610433767;;False;{};giz69t2;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz69t2/;1610497646;0;True;False;anime;t5_2qh22;;0;[]; -[];;;anarchist158;;;[];;;;text;t2_7f9d6cbl;False;False;[];;Then why don't we do the same to FMAB lmao;False;False;;;;1610433841;;False;{};giz6d04;False;t3_kv4s8z;False;True;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz6d04/;1610497699;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"It's basically a guessing game of how the system works but you can throw out some rough estimates looking at the stats - -If 85% of the 1s were cancelled out. Bringing it down to roughly 0.5% 1s instead of the ridiculous 3.4% (a high amount but still realistic considering the state of the top 10). The algorithm considers roughly 20/25% of 10s given so far as brigaded at the current score. - - -Let's look at only since episode 5 dropped. The score has risen by 0.06 with 10k new votes(+10% to the total so far) distribution for this period has been something like 80% 10/10s, 15% 9/10s and still 3% 1/10s. The weighted score since then has been 9.65 considering the score jump and votes gained. The true mean has been around 9.5 in this period despite the trolling at least right now. This shows negative brigading being targeted in some extent leading to such a huge boost happening.";False;False;;;;1610433996;;False;{};giz6jpi;False;t3_kv4s8z;False;True;t1_giz58dg;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz6jpi/;1610497813;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AwkwardlylyAwkward;;;[];;;;text;t2_48no1imj;False;False;[];;Some people love divide politics make two popular trend fight each other enjoy all calling names demeaning each other downvotes upvotes that's what op is doing calling a fandom toxic when aot fandom it selft is toxic as hell;False;False;;;;1610434188;;False;{};giz6rwv;False;t3_kv4s8z;False;True;t1_gixxb4h;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz6rwv/;1610497957;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AwkwardlylyAwkward;;;[];;;;text;t2_48no1imj;False;False;[];;Dont worry neutral side got your back;False;False;;;;1610434292;;False;{};giz6whz;False;t3_kv4s8z;False;True;t1_giync0j;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz6whz/;1610498035;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AwkwardlylyAwkward;;;[];;;;text;t2_48no1imj;False;False;[];;Every anime have toxic fanbase some manga who don't have a anime adaptation are already toxic even before any anime announcement (looking at you komi san cant communicate );False;False;;;;1610434480;;False;{};giz74lj;False;t3_kv4s8z;False;True;t1_gixgomj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz74lj/;1610498176;2;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;lmao, prepare to eat your words, because Isayama is about to give you all a uno card.;False;False;;;;1610434640;;False;{};giz7bbf;False;t3_kv4s8z;False;False;t1_giyzoqg;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz7bbf/;1610498291;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgamesh107;;;[];;;;text;t2_j1btm7b;False;False;[];;Attack on titan does not belong above steins gate;False;False;;;;1610434644;;False;{};giz7bhf;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz7bhf/;1610498294;1;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;"lol, the characters are now adults, they were teenagers at the same, I liek how you assume they will be screaming all throughout the season, once you get past season 1 the screaming stops. - -You are missing out.";False;False;;;;1610434709;;False;{};giz7eaz;False;t3_kv4s8z;False;True;t1_giyxxco;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz7eaz/;1610498343;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WeNTuS;;;[];;;;text;t2_btiic;False;False;[];;I've rewatched it... I think it's lost the magic for me.;False;False;;;;1610434928;;False;{};giz7nj4;False;t3_kv4s8z;False;False;t1_gixi3mt;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz7nj4/;1610498515;4;True;False;anime;t5_2qh22;;0;[]; -[];;;dGVlbjwzaGVudGFp;;;[];;;;text;t2_30pp0ks9;False;False;[];;I'm not toxic I'm an asshole;False;False;;;;1610435008;;False;{};giz7quo;False;t3_kv4s8z;False;True;t1_giy42qj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz7quo/;1610498570;1;True;False;anime;t5_2qh22;;0;[]; -[];;;karneheni;;;[];;;;text;t2_4lmei044;False;False;[];;">lol, the characters are now adults - -did they kill at least one titan with firearms? - -if not - did they stop waste preсious resources and producing this useless things?";False;False;;;;1610435561;;False;{};giz8djx;False;t3_kv4s8z;False;True;t1_giz7eaz;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz8djx/;1610498955;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"Every fandom is toxic. - -AOT fandom are not really saints.";False;False;;;;1610435895;;False;{};giz8r53;False;t3_kv4s8z;False;True;t1_giz62me;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz8r53/;1610499181;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AwkwardlylyAwkward;;;[];;;;text;t2_48no1imj;False;False;[];;I got blocked by 7 people on insta for just saying that historia and mikasa are mediocre and hange and sasha are best girls;False;False;;;;1610436087;;False;{};giz8yxa;False;t3_kv4s8z;False;True;t1_giz8r53;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz8yxa/;1610499310;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Oxu90;;;[];;;;text;t2_yxh7y;False;False;[];;"Steins Gate -> Steins Gate Zero - -AoT s1 -> AoT s4. - -Which has better progression? I would say, even though SG season 1 was amazing, AoT in overall is better series";False;True;;comment score below threshold;;1610436094;;False;{};giz8z6q;False;t3_kv4s8z;False;True;t1_giz7bhf;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz8z6q/;1610499314;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610436134;;False;{};giz90u1;False;t3_kv3vgw;False;True;t3_kv3vgw;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/giz90u1/;1610499341;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Oxu90;;;[];;;;text;t2_yxh7y;False;False;[];;Why? I think those are pretty accurate;False;False;;;;1610436139;;False;{};giz9100;False;t3_kv4s8z;False;True;t1_giz0lej;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz9100/;1610499345;1;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"> mikasa - -After they announced that the manga is ending in 3 chapters and Mikasa is still the exact same character it's hard to disagree. - -Hange is better character than all three.";False;False;;;;1610436176;;False;{};giz92jg;False;t3_kv4s8z;False;True;t1_giz8yxa;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz92jg/;1610499371;4;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;Guns are not useless, which is why I said you may need to give this series another shot.;False;False;;;;1610436316;;False;{};giz984f;False;t3_kv4s8z;False;False;t1_giz8djx;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz984f/;1610499463;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AwkwardlylyAwkward;;;[];;;;text;t2_48no1imj;False;False;[];;My little sister read the manga and she too believes that mikasa's character got fucked over by hustoria and eren;False;False;;;;1610436351;;False;{};giz99gy;False;t3_kv4s8z;False;True;t1_giz92jg;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz99gy/;1610499484;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Oxu90;;;[];;;;text;t2_yxh7y;False;False;[];;"I am pretty sure you are a troll. - -But if you would pay attention, they explained this in season 1. They kill smaller titans with cannons, put problem is that a titan only dies when it's nape is destroyed, hard to aim there, firearm is not strong enough to do that - -About later on, I cant spoil anything";False;False;;;;1610436445;;False;{};giz9db6;False;t3_kv4s8z;False;False;t1_giz8djx;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz9db6/;1610499552;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aryvd_0103;;;[];;;;text;t2_549u7prl;False;False;[];;How are the subsequent chapters , maybe they are the build up for the grand moment in the last three chapters of the manga , cuz isayama tends to do this .;False;False;;;;1610436479;;False;{};giz9eo5;False;t3_kv4s8z;False;True;t1_giz44a7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz9eo5/;1610499578;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Oxu90;;;[];;;;text;t2_yxh7y;False;False;[];;""" not something revolutionary "" you need to remember that the manga came out almost 20 years ago. Of course its not revolutionary anymore";False;False;;;;1610436606;;False;{};giz9jqi;False;t3_kv4s8z;False;True;t1_giysokx;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz9jqi/;1610499671;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Karen_kaslana;;;[];;;;text;t2_3n10bo31;False;False;[];;1 year 32 karma lol, if u wanted to troll at least try to say smth that makes sense;False;False;;;;1610436716;;False;{};giz9nyo;False;t3_kv4s8z;False;True;t1_giyxxco;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz9nyo/;1610499743;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610436758;;False;{};giz9pl5;False;t3_kv4s8z;False;True;t1_giyp1gy;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz9pl5/;1610499771;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;Majority of the recent chapters are mostly build ups and a very controversial one due to a clash of ideology between the fandoms. Some fans have speculated that the next 3 chapters will be the pay off they’ve been waiting for since the latest chapter ended quite sudden similar to ch 120 ended which was followed by a grand revelation of ch 121-123 though if i’m being honest, I cant really see any revelation that will beat 121-123 combo but still interested how Isayama will play this out and I have faith in him;False;False;;;;1610436838;;False;{};giz9sqr;False;t3_kv4s8z;False;True;t1_giz9eo5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giz9sqr/;1610499829;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_Episode_12;;;[];;;;text;t2_5h1b5k47;False;False;[];;how long exactly is the FMAB's reign in top 1?;False;False;;;;1610437033;;False;{};giza0de;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giza0de/;1610499957;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Oxu90;;;[];;;;text;t2_yxh7y;False;False;[];;"It gives a good estimate is the show worth checking. This has always been accurate for me: - -\>= 8.5: generally excellent show, with high change you will atleast enjoy it - -\>= 8: A good show with not much negatives about it. Quite safe bet. Could also just be popular. - -\>= 7.5: A good show with minor negatives or not just for everybody. - -\>= 7: Can be a good show but with major flaws or just plain boring for many - -\>=6: Ether just plain boring, major issues, failed adaptation or a tranwreck. Check these shows if you don't have better things to do or. - -\>=5: Wtf happened here? - -Basicly think it as a 4-10 school grade system where 4=fail.";False;False;;;;1610437043;;False;{};giza0ss;False;t3_kv4s8z;False;True;t1_giylq82;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giza0ss/;1610499964;1;True;False;anime;t5_2qh22;;0;[]; -[];;;karneheni;;;[];;;;text;t2_4lmei044;False;False;[];;">They kill smaller titans with cannons - -sorry, please remind me number of episode when they did this? - -for the first six episodes that i saw - guns was absolutely 900% useless";False;False;;;;1610437049;;False;{};giza112;False;t3_kv4s8z;False;False;t1_giz9db6;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giza112/;1610499969;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Oxu90;;;[];;;;text;t2_yxh7y;False;False;[];;"From the beginning through first 2 seasons, I think even in season 3 (cant spoil). But like I said, those wont be their savior because it is hard to hit nape of moving titan with old cannon like they have. Rifles on the other hand are more against humans (not even meant against titans in the show) - -Which is why they invented that AoT gear and blades (+ 1 more invention later in the series, cant spoil)";False;False;;;;1610437528;;False;{};gizajiv;False;t3_kv4s8z;False;True;t1_giza112;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizajiv/;1610500281;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;Exactly. Well said.;False;False;;;;1610437609;;False;{};gizamlp;False;t3_kv4s8z;False;True;t1_gixege6;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizamlp/;1610500333;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiribei;;;[];;;;text;t2_62swr9g5;False;False;[];;"Did you resort to reddit because the mods won't delete your post like the MAL ones do? There's a reason why they do it, individual posts talking about MAL scores are useless, don't encourage conversation, and will likely be outdated within the next 24 hours of being posted. - -Make all the edits you want blaming the people in the comments arguing with eachother, at the end of the day, it's your fault for making the post. You knew this would happen.";False;False;;;;1610437645;;1610445511.0;{};gizao0u;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizao0u/;1610500359;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aryvd_0103;;;[];;;;text;t2_549u7prl;False;False;[];;Indeed . I don't think there will be a reveal in the last three chapters, more like it will have some great moments, if being optimistic.;False;False;;;;1610438044;;False;{};gizb38b;False;t3_kv4s8z;False;True;t1_giz9sqr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizb38b/;1610500624;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bogzy;;;[];;;;text;t2_csiqt;False;False;[];;Those leaks say anything about whats coming after? Like are they doing a second cour or movies or what? Why did they name it final season if it doesnt cover everything? lol;False;False;;;;1610438267;;False;{};gizbbvk;False;t3_kv4s8z;False;True;t1_gixeit0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizbbvk/;1610500770;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bagman_;;;[];;;;text;t2_jcgjs;False;False;[];;I think the difference is that rating 1 star is usually done in bath faith, if someone rates a series that we don’t think is *that* good a 10, that’s just bad taste, but done earnestly. The site is meant to chart people’s taste, so even if it’s different from our own, that’s fair game, but specifically downvoting a show to keep your fave on top distorts the system;False;False;;;;1610438421;;False;{};gizbhpr;False;t3_kv4s8z;False;True;t1_gix95be;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizbhpr/;1610500872;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xxMeiaxx;;;[];;;;text;t2_6mlaqm9o;False;False;[];;Cry me a river;False;False;;;;1610438533;;False;{};gizbm07;False;t3_kv4s8z;False;False;t1_gixytd7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizbm07/;1610500945;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;bagman_;;;[];;;;text;t2_jcgjs;False;False;[];;If this season is truly better than fmab I’ll be glad to give it a 10, it’d be joining only 3 other shows out of my 200+;False;False;;;;1610438626;;False;{};gizbpgu;False;t3_kv4s8z;False;True;t1_gixmy6r;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizbpgu/;1610501006;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610438910;;False;{};gizc082;False;t3_kv4s8z;False;True;t1_giy07mu;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizc082/;1610501191;1;True;False;anime;t5_2qh22;;0;[]; -[];;;karneheni;;;[];;;;text;t2_4lmei044;False;False;[];;"thanks for the answer - -thats why i dont interested in AoT - i found this whole world is shallow and sometimes stupid but too serious and even pretended to be dramatic - -and there is no interesting characters or scenes to close these cons";False;False;;;;1610438929;;False;{};gizc109;False;t3_kv4s8z;False;False;t1_gizajiv;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizc109/;1610501203;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Skyreader13;;;[];;;;text;t2_rixwo;False;False;[];;i dont mind them at all, it feels like they even enhances my viewing experience.;False;False;;;;1610438946;;False;{};gizc1m8;False;t3_kv3vgw;False;True;t3_kv3vgw;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/gizc1m8/;1610501215;2;True;False;anime;t5_2qh22;;0;[]; -[];;;akshayk904;;;[];;;;text;t2_5asmj6zt;False;False;[];;Its one of the most amazing things on Youtube. Whats brilliant is that they have simulcasts on youtube which is really awesome.;False;False;;;;1610438996;;False;{};gizc3jh;False;t3_kv4qrn;False;True;t1_gixwgb6;/r/anime/comments/kv4qrn/youtube_anime_titles_available_in_bangladesh/gizc3jh/;1610501248;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Skyreader13;;;[];;;;text;t2_rixwo;False;False;[];;"ufotable carrying the weight, lol - -at least thats how it was for me. i read manga and stopped pretty early. feels generic and all. its not until the famous ep 19 i start to watch it. - -really, ufotable is amazing.";False;False;;;;1610439121;;False;{};gizc85f;False;t3_kv3vgw;False;True;t1_giwi8qr;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/gizc85f/;1610501329;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;It has basically the same flaws as SAO, just less production value over all and even less engaging. Both are in the 3 to 4 region;False;False;;;;1610439216;;False;{};gizcbry;False;t3_kv4s8z;False;True;t1_giy1cos;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizcbry/;1610501390;0;True;False;anime;t5_2qh22;;0;[]; -[];;;fourfloorsup;;;[];;;;text;t2_8vkicz3w;False;False;[];;"I have no clue how yams is gonna end this series. Honestly felt that yams has been very ... liberal with the recent chapters when it comes to powerscaling. - - -I honestly hope that I'm wrong and there is gonna be a major revelation that would nicely wrap up the entire thing.";False;False;;;;1610439312;;False;{};gizcfdc;False;t3_kv4s8z;False;True;t1_giz9sqr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizcfdc/;1610501455;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Clashdrew;;;[];;;;text;t2_wii2x;False;False;[];;Hey I’m a huge SnK fan but Bebop is not a “shitty episodic series”.;False;False;;;;1610439463;;False;{};gizckzq;False;t3_kv4s8z;False;True;t1_giwi10j;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizckzq/;1610501553;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;There are still mysteries that needed to be answered so i’m pretty sure there’ll be a revelation but is it a big one or not, we still dont know. I have some theories regarding the revelation but given how many times my expectation has been subverted, I wont be surpised that my theories are wrong lmao.;False;False;;;;1610439620;;False;{};gizcqwo;False;t3_kv4s8z;False;True;t1_gizb38b;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizcqwo/;1610501656;1;True;False;anime;t5_2qh22;;0;[]; -[];;;karneheni;;;[];;;;text;t2_4lmei044;False;False;[];;\*sniff\* \*sniff\* smells like karma-fapper ewwww;False;False;;;;1610439627;;False;{};gizcr59;False;t3_kv4s8z;False;True;t1_giz9nyo;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizcr59/;1610501661;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;brbee;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Riot99;light;text;t2_kgono;False;False;[];;What forums? You gotta give me a link so I know where I'm supposed to look.;False;False;;;;1610440045;;False;{};gizd6jp;False;t3_kv4s8z;False;True;t1_giy6weu;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizd6jp/;1610501923;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Oxu90;;;[];;;;text;t2_yxh7y;False;False;[];;"Cant really argue without throwing spoiler bombs, but lets say the season 1 is just a introduction. - -The world and what viewer believed it was changes dramatically. First season has a lot of signs that you only understand later. - -Which is why the AoT fandom exploded in season 3";False;False;;;;1610440246;;False;{};gizde19;False;t3_kv4s8z;False;True;t1_gizc109;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizde19/;1610502051;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;">chapter 131 was good af - -they are right 131 was amazing";False;False;;;;1610440247;;False;{};gizde2y;False;t3_kv4s8z;False;True;t1_giym0qm;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizde2y/;1610502052;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MrBananaStorm;;;[];;;;text;t2_dwwp4;False;False;[];;Your edits, while I agree with the sentiment, are unbearable.;False;False;;;;1610440511;;False;{};gizdnmb;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizdnmb/;1610502218;0;True;False;anime;t5_2qh22;;0;[]; -[];;;gen3stang;;;[];;;;text;t2_7l3z0;False;False;[];;Wow I'm surprised it beat Gintama or Gintama or Gintama or Gintama or Gintama or AoT or AoT. You know the other top series.;False;False;;;;1610440535;;False;{};gizdohk;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizdohk/;1610502233;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;"The one thing that i can agree with that liberation is the last page of ch 135 but I wont judge it a whole since the anime keeps hinting at that and even yams is aware of that by making a character saying that one is a ‘miracle’ in the last chapter so I dont think it’ll just leave at that, there shall be more explanation about that. For the liberation of other parts, I could say it’s not that big of asspull since they are pretty much trained and have handled many titans before (you could say some of them are above average in terms of experience and power ) moreover considering there are quite plenty of conclusion and conflicts within the characters we can expect more tragedies for them next chapters. - -While some are dissapointed with how the story is going now due to their expectation hasnt been met because of ch 119-123, I genuinely love how yams have been playing with the fandoms right now by tackling their morality and break them into two parts, in one chapter we expect that side win but next chapter it seemed like the other side will win and keep continuing like that over and over again, i havent found any single one that can 100% predict how the ending’s going to be. And for the major revelation, I also hope the next revelation can wrap up the previous chapters nicely however no matter what the ending is, i’m pretty sure it would not please everyone and prob would be controversial which I kinda hope for because even after it ends, AOT will surely be discussed a lot in terms of morality and ideology in many years similar to evangelion. - -Edit : oh lmao sorry for the long ass opinion, i had too much fun explaining my opinion";False;False;;;;1610440545;;1610441799.0;{};gizdou5;False;t3_kv4s8z;False;True;t1_gizcfdc;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizdou5/;1610502239;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chozenbard;;;[];;;;text;t2_4lbmu50u;False;False;[];;Yet the fanboys of all these series are voting 10/10 on their favorite series, take scores like this with a grain of salt, they are not immune to human bias.;False;False;;;;1610440674;;False;{};gizdthl;False;t3_kv4s8z;False;True;t1_gix7lr0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizdthl/;1610502328;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610441042;;False;{};gize6tf;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gize6tf/;1610502564;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mayfloow;;;[];;;;text;t2_xd9ryu;False;False;[];;Tbh I never understood how FMAB could even be #1. Since it was hyped that much I watched the series and to me it seemed good but not even close to a 9/10.;False;False;;;;1610441092;;False;{};gize8qe;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gize8qe/;1610502597;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Depraved-Deity;;;[];;;;text;t2_3ikr3owv;False;False;[];;I am just waiting to see the reaction of those who are going in, thinking this is going to be light hearted;False;False;;;;1610441249;;False;{};gizeeev;False;t3_kv3vgw;False;True;t3_kv3vgw;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/gizeeev/;1610502699;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Karen_kaslana;;;[];;;;text;t2_3n10bo31;False;False;[];;"https://myanimelist.net/forum/?topicid=1795826&show=60 -https://myanimelist.net/forum/?topicid=1823924 -https://myanimelist.net/forum/?topicid=1795482";False;False;;;;1610441301;;False;{};gizegbo;False;t3_kv4s8z;False;True;t1_gizd6jp;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizegbo/;1610502733;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HattoriSaizoII;;;[];;;;text;t2_72680hhu;False;False;[];;Does MAL really have that kind of clout in the anime fandom that it's ratings are considered gospel?;False;False;;;;1610441345;;False;{};gizehxn;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizehxn/;1610502760;2;True;False;anime;t5_2qh22;;0;[]; -[];;;-TribuneAquila;;;[];;;;text;t2_9ntwx789;False;False;[];;And it will keep moving forward.;False;False;;;;1610441398;;False;{};gizejrq;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizejrq/;1610502793;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lelYaCed;;;[];;;;text;t2_v7hbr;False;False;[];;The conclusion of S4 (Chapter 121 and 122) in it's nature is going to be more hype than S3P2's ending. An amazing final impression of a season could boost it.;False;False;;;;1610441881;;False;{};gizf152;False;t3_kv4s8z;False;False;t1_giw5bac;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizf152/;1610503116;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hol_Win;;;[];;;;text;t2_5ezcbcn4;False;False;[];;"Steins;Gate fans too busy crying still, me included";False;False;;;;1610441889;;False;{};gizf1e6;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizf1e6/;1610503120;0;True;False;anime;t5_2qh22;;0;[]; -[];;;VeiledBlack;;;[];;;;text;t2_kitzb;False;False;[];;Both were fantastic - a shame we can't just appreciate good content as good content.;False;False;;;;1610442067;;False;{};gizf7vn;False;t3_kv4s8z;False;True;t1_giwttr3;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizf7vn/;1610503232;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kaptee12;;;[];;;;text;t2_14fb7h;False;False;[];;I think of it more as what do ppl think so far. Thats my reasoning anyway atleast;False;False;;;;1610442159;;False;{};gizfb4g;False;t3_kv4s8z;False;True;t1_giwtieb;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizfb4g/;1610503289;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sendme_Ojeda_Nudes;;;[];;;;text;t2_rwwz5oh;False;False;[];;Except in many review sites you have to buy the product to review It, and the number of hours spent on it can be seen;False;False;;;;1610442172;;False;{};gizfblg;False;t3_kv4s8z;False;True;t1_giyclhp;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizfblg/;1610503299;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;I have my own concerns about how it's all going to end, but this MAL entry will only adapt up to 122 which IMO is the best part of the series.;False;False;;;;1610442522;;False;{};gizfo1w;False;t3_kv4s8z;False;True;t1_giyt0u8;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizfo1w/;1610503517;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hugemoron;;;[];;;;text;t2_lurre;False;False;[];;i dropped it after it switched animation studios. far from Benizakura, sure.;False;False;;;;1610442876;;False;{};gizg0mg;False;t3_kv4s8z;False;True;t1_giwnxwz;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizg0mg/;1610503740;0;True;False;anime;t5_2qh22;;0;[]; -[];;;DutchDread;;;[];;;;text;t2_6i2jqhl9;False;False;[];;as a FMA: B fan, I'll admit it's amazing, and might actually deserve the #2 spot, but #1? I don't know man, that's a big one.;False;False;;;;1610443050;;False;{};gizg6se;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizg6se/;1610503848;0;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"From the last 10k new votes 80% of them have been 10/10s and 15% 9/10s hence it rose up to 55.8% from 53.3% so it's certainly showing strength. (These votes aren't being considered as heavy brigading as well since the stats line up perfectly with the boost in score). The 10/10 % was steadily going down till this episode aired. - - - - - - I'm guessing the pace will significantly slow down but I really don't see it going below 55% while it airs from now on, I'm actually expecting the 10/10% to peak harder during the finale. By the finale, I'm guessing the number of scorers will triple the current total so early brigading won't have as big of an impact on stats - - - - - -Reminder that the ending boost on a solid ending is always huge as well. Though since episode 5 we've had the most ridiculous movement on MAL for in such a short period of time (The average has been 9.7) - - - - - -The reason for its low score despite the ridiculous 10/10 % is the heavy positive and negative brigading which occured early on with duplicate accounts and even real one. Keep in mind that despite MAL displaying the stats, what's considered in the calculation of the weighted score isn't shown. Post score calculation for the weighted score I'm fairly certain on roughly 20% lower for SnK's 10/10 - - - - - -S3P2 hit #2 when the anti brigading system wasn't in place. So it's original decline was brigaded and ended up stable eventually but as of right now it's actually moving up. S4 hype brought in many new fans which has raised the score of S3P2 from 9.07 to 9.09 in a month. Every other season is on its way up as well. - - - - - -I'm certain this season will hit atleast 9.3 at its peak and maybe even 9.4 depending on the adaptation. I'm confident that it can completely take over the #1 position permanently as well - - -Edit: as I type this comment the score went down to 9.10, wondering if it's a glitch or did the system catch on to heavier brigading. Nevertheless the even a 0.03 increase with +10% total scores is very high";False;False;;;;1610443079;;1610443426.0;{};gizg7tv;False;t3_kv4s8z;False;True;t1_giz2lu0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizg7tv/;1610503866;2;True;False;anime;t5_2qh22;;0;[]; -[];;;shadebedlam;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Shadebedlam;light;text;t2_fl41u;False;False;[];;"That is true of course I just thought the older you get the more you like stories like Steins;Gate over FMAB at least that's what happened to me.";False;False;;;;1610443285;;False;{};gizgf2f;False;t3_kv4s8z;False;False;t1_giy9987;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizgf2f/;1610503993;2;True;False;anime;t5_2qh22;;0;[]; -[];;;zaddoz;;;[];;;;text;t2_ouqzf;False;False;[];;Also one of the reasons it was targeted was because its an easy target(or easier than most anime) as it didnt have much ratings and the score could change easily with not that many votes;False;False;;;;1610443868;;False;{};gizgzrx;False;t3_kv4s8z;False;True;t1_gixg0ox;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizgzrx/;1610504349;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IAreTehPanda;;;[];;;;text;t2_1x95ile;False;False;[];;I've given up on MAL ratings for the most part. Its at best a guideline of if a show is worth watching or not at this point to me.;False;False;;;;1610443978;;False;{};gizh3ph;False;t3_kv4s8z;False;False;t1_giz3fxj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizh3ph/;1610504417;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610444005;;False;{};gizh4nm;False;t3_kv4s8z;False;True;t1_gizde19;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizh4nm/;1610504435;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GeicoLizardBestGirl;;;[];;;;text;t2_6aix7qlq;False;False;[];;Aaand thats why I hate MAL and refuse to contribute at all to it. I use it to look up new animes to watch and thats about it.;False;False;;;;1610444112;;False;{};gizh8g4;False;t3_kv4s8z;False;False;t1_giwpisx;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizh8g4/;1610504498;6;True;False;anime;t5_2qh22;;0;[]; -[];;;irisverse;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/usernamesarehard;light;text;t2_1dzbqjh4;False;False;[];;Why would people rate it lower just because it's a decade old? That seems to be what you're implying here.;False;False;;;;1610444127;;False;{};gizh90g;False;t3_kv4s8z;False;True;t1_gix6ydg;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizh90g/;1610504507;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Karen_kaslana;;;[];;;;text;t2_3n10bo31;False;False;[];;They got targeted because they were the first one to do it. It may have been done many times by many individuals but they were the first collective fanbase to do it. This is the reason why I called out FMAB cause this has been a thing way before AOT was contending as a top 5;False;False;;;;1610444340;;False;{};gizhgjo;False;t3_kv4s8z;False;True;t1_giwkj99;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizhgjo/;1610504638;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TisButA-Zucc;;;[];;;;text;t2_14kw1cu0;False;False;[];;"Imagine caring about ~~MAL~~ rankings lol - -MAL rankings are the most relevant rankings of anime. If you want to care about anime rankings, MAL is probably the way to go. Doesn't mean everyone should care about rankings overall though.";False;False;;;;1610444574;;False;{};gizhooq;False;t3_kv4s8z;False;False;t1_giw9hbo;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizhooq/;1610504781;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TisButA-Zucc;;;[];;;;text;t2_14kw1cu0;False;False;[];;This is not exclusive to MAL ratings. Any anime rating-platform don't mean anything regarding quality. MAL ratings are the most relevant ones, if you choose to care about anime ratings.;False;False;;;;1610444774;;False;{};gizhvnn;False;t3_kv4s8z;False;True;t1_giwpx5b;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizhvnn/;1610504903;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TisButA-Zucc;;;[];;;;text;t2_14kw1cu0;False;False;[];;"Who cares about any anime ratings... - -However, if you want to care, MAL is the platform to go.";False;False;;;;1610444988;;False;{};gizi37h;False;t3_kv4s8z;False;True;t1_giwthxl;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizi37h/;1610505031;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TisButA-Zucc;;;[];;;;text;t2_14kw1cu0;False;False;[];;" Imagine caring about ~~MAL~~ scores - -MAL has the most relevant scores, if you want to get into that aspect of anime rankings, that is.";False;False;;;;1610445112;;False;{};gizi7iu;False;t3_kv4s8z;False;True;t1_gixktri;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizi7iu/;1610505107;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610445872;;False;{};gizixmg;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizixmg/;1610505577;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SkGuarnieri;;;[];;;;text;t2_3q8ybwyp;False;False;[];;Well to be fair... The people who are going to watch and rate the final season are likely people who liked the things that came before and are very unlikely to change their minds unless the show fucks it up real bad, so of course the ratings are going to be inflated as fuck. That's why i don't really trust MAL ratings all that much, they are a poor unit of measurement;False;False;;;;1610445906;;False;{};giziytp;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giziytp/;1610505600;1;True;False;anime;t5_2qh22;;0;[]; -[];;;brbee;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Riot99;light;text;t2_kgono;False;False;[];;I see no evidence here that it is only FMAB fans that are giving 1 star, just accusations;False;False;;;;1610446611;;False;{};gizjn81;False;t3_kv4s8z;False;False;t1_gizegbo;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizjn81/;1610506043;3;True;False;anime;t5_2qh22;;0;[]; -[];;;monke_with_beans;;;[];;;;text;t2_7psipa72;False;False;[];;lol it gained 500 new 1/10s in the last 12 hours. this is kinda sad at this point lol;False;False;;;;1610446622;;False;{};gizjnki;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizjnki/;1610506049;3;True;False;anime;t5_2qh22;;0;[]; -[];;;throwaway95135745685;;;[];;;;text;t2_36m1bzrr;False;False;[];;so its just really badly implemented as usual;False;False;;;;1610446644;;False;{};gizjoc5;False;t3_kv4s8z;False;True;t1_gixhvkc;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizjoc5/;1610506063;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shivam-ind;;;[];;;;text;t2_10bd8dkn;False;False;[];;says the dude who thinks cowboy bebop is a masterpiece. Our boos mean everything as you are crying like a little bitch trying to defend it.;False;False;;;;1610447159;;False;{};gizk6hx;False;t3_kv4s8z;False;True;t1_giwji5m;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizk6hx/;1610506406;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shadowboomed;;;[];;;;text;t2_8rcw1n9h;False;False;[];;"> Lol the salty FMAB fans are a site to behold 🤣 - -My man wanted to use a “cool” expression but couldn’t spell it correctly";False;False;;;;1610447443;;False;{};gizkgeh;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizkgeh/;1610506601;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"Yeah this show is not for you - -There is a full on panty shot in the first episode as well as the MC having a lot of pervy thoughts and expressions";False;False;;;;1610447607;;False;{};gizkm3q;False;t3_kv3vgw;False;False;t1_giysz5a;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/gizkm3q/;1610506716;4;True;False;anime;t5_2qh22;;0;[]; -[];;;markevans7799;;;[];;;;text;t2_4pxhvc5g;False;False;[];;Hey brother, it's better to ignore him instead of explaining it to him;False;False;;;;1610447861;;False;{};gizkuzd;False;t3_kv4s8z;False;True;t1_giz9db6;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizkuzd/;1610506890;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610448576;;False;{};gizlkar;False;t3_kv4s8z;False;True;t1_gizixmg;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizlkar/;1610507333;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RavenWolf1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RavenWolf1;light;text;t2_9rao2;False;False;[];;Of course taste is important. Example if you like yuri anime but you didn't know much anything about anime in general. First thing is to see top lists. After watching some top list yuri you start watching almost everything to that related even if it has poor score because it is your taste. But you have to start somewhere and that is why score is important. Really, imagine world where there were no scores on products like anime, games, films etc. It would be impossible to find anything decent. You just would have to pick randomly something and hope it would be something. Now you at least got some indicator that people like it. Rankings has reasons why they exists in first place. If rankings were not important then there wouldn't be so many sites and competitions which ranks stuff.;False;False;;;;1610448632;;False;{};gizlm8k;False;t3_kv4s8z;False;True;t1_giyoa0w;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizlm8k/;1610507378;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ElpSyc0n;;;[];;;;text;t2_kyknmja;False;False;[];;Sad tuturu noises;False;False;;;;1610448890;;False;{};gizlvmr;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizlvmr/;1610507539;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GoldMercy;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/xFSN_Archer;light;text;t2_tx7nw;False;False;[];;Annnnnnd it's down to 5 again.;False;False;;;;1610448900;;False;{};gizlw1w;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizlw1w/;1610507546;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerz905;;;[];;;;text;t2_1yglu2m7;False;False;[];;Nothing is ever the perfect 10, but everyone needs to chill because top 10, hell even top 20 on MAL are all 9's in almost everyone book. Sure someone prefers one thing over another, but I've watched over half of the stuff on the top 10 list and everything is where it should be. Doesn't matter which one is 1st.;False;False;;;;1610449148;;False;{};gizm57i;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizm57i/;1610507706;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Philiperix;;;[];;;;text;t2_zd93d;False;False;[];;Classic hype votes. Seeing the score in a year or 2 will be more accuarate;False;False;;;;1610449229;;1610473084.0;{};gizm878;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizm878/;1610507757;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Philiperix;;;[];;;;text;t2_zd93d;False;False;[];;goes in both ways. The amount of 10's is also inflated for all animes;False;False;;;;1610449324;;False;{};gizmbq6;False;t3_kv4s8z;False;True;t1_gix1yxn;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizmbq6/;1610507817;1;True;False;anime;t5_2qh22;;0;[]; -[];;;13ubble;;;[];;;;text;t2_61ozt5xx;False;False;[];;"Good point the fact that the fmab fans vote 1* for every other competitors makes the #1 spot kinda worthless - -Aot has already dropped from the #2 spot and that proves it lol";False;False;;;;1610449356;;False;{};gizmcwi;False;t3_kv4s8z;False;False;t1_gixoh2m;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizmcwi/;1610507837;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Philiperix;;;[];;;;text;t2_zd93d;False;False;[];;Some people give every 2nd anime they see a 10. Its exactly as bad as all the 1 voters;False;False;;;;1610449427;;False;{};gizmffh;False;t3_kv4s8z;False;False;t1_gizbhpr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizmffh/;1610507880;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Not_a_fucking_wizard;;;[];;;;text;t2_qhrb6;False;False;[];;Those edits are a bit sad, /u/ApplicationPlus5985 do you have any proof that the FMA:B fanbase is brigading the AOT final season ratings?;False;False;;;;1610449959;;False;{};gizmzh3;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizmzh3/;1610508224;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Amarae;;MAL;[];;http://myanimelist.net/animelist/Amarae;dark;text;t2_6s69f;False;False;[];;"I seriously watched the entire first two seasons (Season 1 twice actually) and still don't like the show, but I can't imagine going out of my way to hate on it like this lmao. - -Maybe it was three seasons? Idk there was a Monkey looking titan and some weird underground place that got destroyed.";False;False;;;;1610450214;;False;{};gizn91n;False;t3_kv4s8z;False;True;t1_gixebck;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizn91n/;1610508391;1;True;False;anime;t5_2qh22;;0;[]; -[];;;just_s0m3_dude;;;[];;;;text;t2_8r0h7rje;False;False;[];;tbh, i really enjoy AOT, it is really enjoyable. but in my opinion, is it second? no i feel it is getting overhyped. but i still love it.;False;False;;;;1610450309;;False;{};gizncif;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizncif/;1610508455;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fewit;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Fewit;light;text;t2_7mtx431;False;False;[];;Both fanbases do it. Just go to both anime pages and look at the stats tab. Scroll down and you see a lot of people rating both anime a 1.;False;False;;;;1610450382;;False;{};giznf9w;False;t3_kv4s8z;False;True;t1_gizmzh3;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giznf9w/;1610508502;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrBananaStorm;;;[];;;;text;t2_dwwp4;False;False;[];;"It is a decent way to see if an anime is worth watching, but it faces a similar issue as many rating systems. Same reason why YouTube switched from 5 stars to like/dislike, most people will only rate if they either love if or hate it. - -But beyond that, my 4 isn't your 4. And your 8 isn't my 8. I reserve my 10s for example only for the top 5 anime I have seen. Whereas I'm sure there are people out there who throw the 10 rating around like it's candy on Halloween. - -But it does in the end somewhat average out to indicate: 0 - 4.5 Highly likely not worth watching; 4.5 - 6.5 Hit or miss, might be redeemable might not; 6.5 - 8 Likely worth watching; 8+ Should probably look into if it fits your genres. - -But that's just my take :)";False;False;;;;1610450647;;False;{};giznp71;False;t3_kv4s8z;False;True;t1_giw9hbo;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giznp71/;1610508693;1;True;False;anime;t5_2qh22;;0;[]; -[];;;orangesegmentguy;;;[];;;;text;t2_4zwfr5e9;False;False;[];;Respect, this is genuinely the best top anime list I've ever seen. Finally gundam 0080 gets some recognition. I feel like it's only really rated within the gundam community but it's so good. Nice to see ping pong there aswell, I was completely blown away when I first watched it, amazing show.;False;False;;;;1610450939;;False;{};gizo04c;False;t3_kv4s8z;False;False;t1_gixoz6c;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizo04c/;1610508901;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610451010;;False;{};gizo2wr;False;t3_kv4s8z;False;True;t1_gizncif;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizo2wr/;1610508952;1;True;False;anime;t5_2qh22;;0;[]; -[];;;orangesegmentguy;;;[];;;;text;t2_4zwfr5e9;False;False;[];;To be honest with MAL generally I feel as though it's better to just look at the manga ratings, because usually they're a lot less trend based and you don't have the same armies of salty fans mass rating shows 1 star.;False;False;;;;1610451100;;1610453242.0;{};gizo6bi;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizo6bi/;1610509010;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LordHandQyburn;;;[];;;;text;t2_g6rj5j;False;False;[];;FMAB is better as for now (imo);False;False;;;;1610451756;;False;{};gizovk4;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizovk4/;1610509451;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Do I really need to add /s to every joke nowadays so that people realize its one?;False;False;;;;1610452051;;False;{};gizp6yy;False;t3_kv4s8z;False;True;t1_giz4dme;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizp6yy/;1610509650;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610452156;;False;{};gizpb88;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizpb88/;1610509725;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Raidoton;;;[];;;;text;t2_dx1gt;False;False;[];;Every popular thing has people who don't like it. Why are you so surprised that you don't like something very popular?;False;False;;;;1610452193;;False;{};gizpcqj;False;t3_kv4s8z;False;True;t1_giwvmjp;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizpcqj/;1610509752;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Asstadon;;;[];;;;text;t2_7eoi6;False;False;[];;On a related note, Steins Gate is very overrated imo. Boggles my mind every time I see the MAL top 10. Not saying its a bad show, but in the top 10 all time? Get outta here with that nonsense.;False;False;;;;1610452231;;False;{};gizpe7u;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizpe7u/;1610509777;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Raidoton;;;[];;;;text;t2_dx1gt;False;False;[];;Nah LotR is a kids cartoon compared to GoT.;False;False;;;;1610452259;;False;{};gizpfc5;False;t3_kv4s8z;False;True;t1_giy87wp;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizpfc5/;1610509797;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Raidoton;;;[];;;;text;t2_dx1gt;False;False;[];;"Not sure about that. D&D clearly didn't give a shit in the end and just wanted to rush through the last season.";False;False;;;;1610452299;;False;{};gizpgw5;False;t3_kv4s8z;False;True;t1_gixshj5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizpgw5/;1610509826;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610452393;;False;{};gizpkol;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizpkol/;1610509890;2;True;False;anime;t5_2qh22;;0;[]; -[];;;xdamm777;;;[];;;;text;t2_oxrkd;False;True;[];;"I, for one, absolutely love this art style and I think it fits Mushoku Tensei very well. - -From the soft, colorful and out of focus vistas to the desaturated more lifelike water the aesthetic looks more natural and detailed than just extremely sharp lines and flat colors with simple gradients. - -This story gets extremely busy at some points and I’m sure this style will definitely help those scenes truly pop.";False;False;;;;1610452539;;False;{};gizpqiz;False;t3_kv3vgw;False;True;t3_kv3vgw;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/gizpqiz/;1610509995;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Boredwitch;;;[];;;;text;t2_3bm2e1qe;False;False;[];;"Yeah but they didn’t care at the end cause they had to make shit up when they ran out of book material and they don’t know how to do it. - -At the beginning of the show though, when they had material, they were really passionate about it, Martin gave them the authorization to make the show cause they guessed Jon’s parents then. I think if he finished the books, they’d still have been passionate enough to do it justice. - -Plus they don’t know how to make intelligent dialogue lmao, after season 5 that was gooone";False;False;;;;1610452543;;False;{};gizpqoi;False;t3_kv4s8z;False;True;t1_gizpgw5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizpqoi/;1610509997;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ajver19;;;[];;;;text;t2_3haraaue;False;True;[];;I think you should reread what I said before saying I didn't like FMA: B.;False;False;;;;1610452838;;False;{};gizq2hr;False;t3_kv4s8z;False;False;t1_gizpcqj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizq2hr/;1610510211;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Raidoton;;;[];;;;text;t2_dx1gt;False;False;[];;"> Nothing is ever the perfect 10 - -That's not how scores work. You don't give a 10 only for something that is ""perfect"". That would make the score useless since unachievable. It simply means ""Fantastic"".";False;False;;;;1610453126;;False;{};gizqe6g;False;t3_kv4s8z;False;True;t1_gizm57i;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizqe6g/;1610510417;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WeNTuS;;;[];;;;text;t2_btiic;False;False;[];;Because the quality of anime (production and storywise) have improved a lot;False;False;;;;1610453355;;False;{};gizqnh8;False;t3_kv4s8z;False;True;t1_gizh90g;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizqnh8/;1610510575;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KacKLaPPeN23;;;[];;;;text;t2_rkpbf;False;False;[];;"I didn't continue after the first season because the wait was too long, I already forgot what happened and couldn't be arsed to rewatch it before continuing. Does it actually get that much better or is the score just affected by the ""gintama effect"" because only the ""true fans"" stuck around for 4 seasons across 7 years (with a damn 4 year gap between s1 and s2)?";False;False;;;;1610453363;;False;{};gizqntt;False;t3_kv4s8z;False;True;t1_giwis7f;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizqntt/;1610510581;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hykarus;;;[];;;;text;t2_kzdgn;False;False;[];;"> with trolls and fans bumping it up and down - -fans give 10 in good faith (assuming we're talking about an excellent serie like AoT). Trolls give 1 in bad faith. Please don't conflate them";False;False;;;;1610453755;;False;{};gizr42c;False;t3_kv4s8z;False;True;t1_giw23ce;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizr42c/;1610510859;1;True;False;anime;t5_2qh22;;0;[]; -[];;;irisverse;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/usernamesarehard;light;text;t2_1dzbqjh4;False;False;[];;No, it really hasn't.;False;False;;;;1610453951;;False;{};gizrcgk;False;t3_kv4s8z;False;True;t1_gizqnh8;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizrcgk/;1610511003;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610453956;;False;{};gizrcoj;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizrcoj/;1610511007;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;Whether what they are doing is in good faith or not the fact that both exist is undeniable. Since I made the comment the score has gone from 9.11 to 9.13, back down to 9.10 and back up to 9.13 so my prediction so far seems to be holding true.;False;False;;;;1610454083;;False;{};gizri49;False;t3_kv4s8z;False;True;t1_gizr42c;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizri49/;1610511112;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Not_a_fucking_wizard;;;[];;;;text;t2_qhrb6;False;False;[];;That doesn't mean it's FMA:B in specific that is doing it like how OP mentioned in the edits.;False;False;;;;1610454688;;False;{};gizs8pc;False;t3_kv4s8z;False;True;t1_giznf9w;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizs8pc/;1610511595;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Raidoton;;;[];;;;text;t2_dx1gt;False;False;[];;It's #1 because it's very good at almost everything. Characters, Story, Twists, Fights, Animation, Emotion, Villains, Pacing, Humor, Voice Acting, etc...;False;False;;;;1610454825;;False;{};gizseod;False;t3_kv4s8z;False;True;t1_gize8qe;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizseod/;1610511698;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord-Loss-31415;;;[];;;;text;t2_3z007r9p;False;False;[];;You are coming off a bit aggressive there bud, I made a little low effort comment and you acted like I just punched your grandmother. If you want to get offended go to r/triggered. You also got the completely wrong message when reading my reply. In my opinion AOT is not legendary but if it is statistically then that’s that, what I was actually saying was that the person I was replying to was ignorant for basically claiming it was the only good anime. It’s one thing to say your favourite anime is the best, that’s a valid opinion, to say all the rest are bad except your favourite is arrogant, stupid and not backed up by the statistical evidence that shows a lot of other animes are liked as much of not more than AOT. Reply to me calmly if you are going to reply at all, or feel free to get aggressive about anime listings if you want.;False;False;;;;1610455155;;False;{};gizstdf;False;t3_kv4s8z;False;True;t1_giyrl2j;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizstdf/;1610511959;0;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your comment has been removed. - -- Keep discussion civil - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610456135;moderator;False;{};gizu3j8;False;t3_kv4s8z;False;True;t1_gizh4nm;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizu3j8/;1610512776;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MABfan11;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MABfan11;light;text;t2_xdlmc;False;False;[];;given the power of simps, i'm sure Holo no Graffiti could do it too;False;False;;;;1610456264;;False;{};gizu9yp;False;t3_kv4s8z;False;False;t1_giy2zbv;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizu9yp/;1610512916;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mayfloow;;;[];;;;text;t2_xd9ryu;False;False;[];;I fully disagree with fights. Compared to many other animes the fighting scenes are mediocre at best in my opinion. The whole power system isn‘t used at all in its full potential. Pacing is also not that good since I know from my experience and friends that it get‘s stall. I agree with the first three points though.;False;False;;;;1610456533;;False;{};gizun7u;False;t3_kv4s8z;False;True;t1_gizseod;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizun7u/;1610513170;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePhantomRaven;;;[];;;;text;t2_45tqag6z;False;False;[];;Thats true but MAL is not really very accurate about it. AOT, FMAB, etc reach the top cuz fans care too much about MAL ratings and some even downvoted other series just because. Many good anime with godly plots remain at the bottom or even a good enjoyable plot. Eg: Ansatsu Kyoshitsu, One Piece, etc. Even tho they r prolly top 1000 many people just see top 20 for masterpieces. Gintama and Steins Gate r some of the anime that r on top cuz of decent and not completely obsessive voting. MAL has been controversial for a long time. I dont even care for MAL rankings when choosing an anime regardless of taste even. Many rom coms r at low places but better than many anime with higher rankings. Epic anime like great pretender get 3/10 rankings cuz of gate keeping. I could keep on going. Point being we need a more reliable source for rankings based on criteria instead of a general rank. MAL for me at least only provides good summaries, VA info and other info.;False;False;;;;1610456603;;False;{};gizuqmy;False;t3_kv4s8z;False;True;t1_gizlm8k;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizuqmy/;1610513232;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PhilosophicalNeo;;;[];;;;text;t2_96c2gent;False;False;[];;Well deserved. Steins Gate is still my favourite anime but AOT deserved it. 👍;False;False;;;;1610456642;;False;{};gizusjx;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizusjx/;1610513263;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DiscombobulatedGuava;;;[];;;;text;t2_zbkc0od;False;False;[];;"Speaking of low - -Remember when Erased was like, top 5... and was so high up and anticipated to beating some top tier animes and then dipped harder than the titanic? That was a fun time.";False;False;;;;1610457173;;False;{};gizvjce;False;t3_kv4s8z;False;True;t1_giz2yz9;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizvjce/;1610513809;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Imo if you were to add info context what steins gate 0 did it makes the original better. Without that context I don't think it's a masterpiece but with it, it certainly is.;False;False;;;;1610457788;;False;{};gizwfy5;True;t3_kv4s8z;False;True;t1_gizpe7u;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizwfy5/;1610514456;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ToeAny5031;;;[];;;;text;t2_7n9tiyl4;False;False;[];;"I’ve always seen it as okay for him to kill, it’s not the first time he’s done it and he is in the military. It’s just, he’s killing out of pure hatred for the other party. Revenge, hatred, etc. and calling it a justified killing. That’s where I would say he “crossed the line” so to speak. Not because he was killing (they were planning on killing Envy anyways), but more because he lost his temper almost immediately after finding out who killed his best friend. I feel like it was trying to show that story arcs like this are childish and self-destroying, if that makes sense. - -I guess I’ve never really felt a true connection with a single story beat like that in AOT. It’s not because it isn’t a good show, it’s more because it doesn’t hit as hard with me. None of the ideas or narratives hit me as hard. Maybe because when I look at AOT’s characters, I don’t see someone disgustingly human, I see characters. Eren is the best one. His arc in the manga absolutely slaps and he feels very human, but the rest kind of fall short for me. - -When I watch FMAB I feel like I’m watching a bunch of people with realistic goals struggle to reach said goals. Nobody feels overly unrealistic, yet it’s still funny and a good watch. - -I’m sorry for typing out essays for each response, it just happens when I get started. Once I begin typing about a show I love, it’s hard to stop, then add on another brilliant show and your bound to get a paragraph or three.";False;False;;;;1610457813;;False;{};gizwh9k;False;t3_kv4s8z;False;True;t1_giz04zk;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizwh9k/;1610514479;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Common sense.;False;False;;;;1610457831;;False;{};gizwi8s;True;t3_kv4s8z;False;True;t1_gizmzh3;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizwi8s/;1610514495;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ya;False;False;;;;1610457937;;False;{};gizwo2w;True;t3_kv4s8z;False;True;t1_gizehxn;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizwo2w/;1610514593;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Honestly, i think it deserves the second spot, FMAB eats dust in front of LOGH. It's not even close tbh;False;False;;;;1610458066;;False;{};gizwval;True;t3_kv4s8z;False;True;t1_giz69t2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizwval/;1610514709;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;No it never was;False;False;;;;1610458106;;False;{};gizwxic;True;t3_kv4s8z;False;True;t1_giz9jqi;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizwxic/;1610514745;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;It's fallen here and there by new shows but it's been there for 6-7yrs;False;False;;;;1610458149;;False;{};gizwzv8;True;t3_kv4s8z;False;True;t1_giza0de;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizwzv8/;1610514784;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AryuWeeb;;;[];;;;text;t2_8e8j19cj;False;False;[];;Hello everyone Just finished aot season 3 part 2 so I am just curious that why do eren don't have his hair tied up and becoming a Titan and wearing a jacket;False;False;;;;1610458196;;False;{};gizx2fu;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizx2fu/;1610514827;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;I thought this post would die at 40 upvotes so 🤷 i ain't gonna delete it coz it's my first time peaking on top of r/anime. If it wasn't I'd delete it.;False;False;;;;1610458213;;False;{};gizx3cs;True;t3_kv4s8z;False;True;t1_gizao0u;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizx3cs/;1610514842;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Eren a hobo now;False;False;;;;1610458259;;False;{};gizx5z1;True;t3_kv4s8z;False;True;t1_gizx2fu;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizx5z1/;1610514887;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeoGiacometti;;;[];;;;text;t2_13n8qv;False;False;[];;"I liked it visually, though I can't really say I felt like it was aesthetically ""retro"". The technics are there for sure, but it still looks like most modern well-animated series. Also, I think calling it ""the most beautiful anime episode ever"" right at the start is not the ideal way to start a technical conversation about animation quality, but you do you.";False;False;;;;1610458973;;False;{};gizyaeg;False;t3_kv3vgw;False;False;t3_kv3vgw;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/gizyaeg/;1610515557;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiribei;;;[];;;;text;t2_62swr9g5;False;False;[];;I didn't tell you to delete it. I'm just saying that you shouldn't be blaming anybody but yourself that this post caused people to argue.;False;False;;;;1610459000;;False;{};gizybyq;False;t3_kv4s8z;False;True;t1_gizx3cs;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizybyq/;1610515583;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Eh, people are the ones arguing not me 🤷 if the police governor organizes a raid and a innocent person is killed by one of the ground troops. It's not the police governors fault they got killed. The ground troop needs to be accountable;False;False;;;;1610459215;;False;{};gizyoq7;True;t3_kv4s8z;False;False;t1_gizybyq;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizyoq7/;1610515797;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Episode_12;;;[];;;;text;t2_5h1b5k47;False;False;[];;Cool! I just recently joined MAL (~end of 2019) and ever since I joined, I have always saw FMAB as top 1. Pretty awesome to know long it has been in that position. Thanks for letting me know!;False;False;;;;1610459286;;False;{};gizysy3;False;t3_kv4s8z;False;True;t1_gizwzv8;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gizysy3/;1610515866;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;Wow, that weave is *very* subtle;False;False;;;;1610459475;;False;{};gizz49g;False;t3_kv3vgw;False;True;t3_kv3vgw;/r/anime/comments/kv3vgw/mushoku_tensei_is_targeting_a_retro_aesthetic_and/gizz49g/;1610516057;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiribei;;;[];;;;text;t2_62swr9g5;False;False;[];;"That's different. People argue over this every single time it's brought up, without fail (why do you think MAL banned it?), and you didn't warn people not to argue in your post, and the rules of the subreddit also don't tell people not to argue like this, so there is no way you shouldn't have seen this coming. A police governer organising a raid would also involve an order to *not* shoot innocent people, so the governer has a reason to *not* expect innocents to get killed, so then if an officer does kill an innocent person, that defied a direct order and the officer who killed them is the one at fault. - -If you actually this was a reasonable comparison, you have some serious self-importance issues, and I'm also convinced that you have no idea how the law works.";False;False;;;;1610460172;;False;{};gj00axw;False;t3_kv4s8z;False;True;t1_gizyoq7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj00axw/;1610516772;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CatCryogenic;;;[];;;;text;t2_16nq9n;False;False;[];;Are you hungry? Because your going to eat those words.;False;False;;;;1610460482;;False;{};gj00u8k;False;t3_kv4s8z;False;False;t1_giyzoqg;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj00u8k/;1610517094;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CatCryogenic;;;[];;;;text;t2_16nq9n;False;False;[];;Maybe episode 16 will change your mind.;False;False;;;;1610460534;;False;{};gj00xmy;False;t3_kv4s8z;False;True;t1_gizg6se;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj00xmy/;1610517151;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hey-Watch;;;[];;;;text;t2_7oeklsbn;False;False;[];;oh I see, you're just against anything that is generally regarded as good or popular. neat;False;False;;;;1610460624;;False;{};gj013ba;False;t3_kv4s8z;False;True;t1_gixyyon;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj013ba/;1610517242;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fickle-Onion-854;;;[];;;;text;t2_8wa0dc9y;False;False;[];;opposite to me;False;False;;;;1610460863;;False;{};gj01iqp;False;t3_kv4s8z;False;True;t1_giy1lqn;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj01iqp/;1610517487;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Papercurtain;;;[];;;;text;t2_obner;False;False;[];;"LOL man you really went through my post history. You're right though, the comment I made in reply to you about HxH was in the same train of thought. I probably wouldn't have replied to you if I hadn't just been reading through the comments made in this thread yesterday. My criticisms were different though; here it's about people jumping the gun and giving an unfinished show a perfect 10, which we don't know if it deserves yet. My comment about HxH was criticizing a more or less finished show though, and why I don't think it's the GOAT. - -And I don't hate everything that's good or popular; I do like HxH, I just don't think it's the best anime of all time.";False;False;;;;1610461333;;1610461981.0;{};gj02d6z;False;t3_kv4s8z;False;True;t1_gj013ba;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj02d6z/;1610517978;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hey-Watch;;;[];;;;text;t2_7oeklsbn;False;False;[];;"just wanted an explanation for your weird take, and I got it. you're already dug-in to FMAB being the GOAT and anything that is lauded as close to it needs to be discredited - -attack on titan is far better, hxh is far better, berserk (as a story) is far better, it's not hard to be better than FMAB";False;False;;;;1610461868;;False;{};gj03cca;False;t3_kv4s8z;False;True;t1_gj02d6z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj03cca/;1610518569;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Papercurtain;;;[];;;;text;t2_obner;False;False;[];;"Mb I edited my previous comment after you replied so it's a little different from when you replied. - -FMAB is not actually my GOAT though lol. I'd say AoT has a chance of being better than FMAB, depends on the landing though. But like I said, doesn't make sense to pump it up to number 2 before the show or even manga actually ends. Hard disagree with HxH being far better for the reasons I put in my comment on the other thread. And I'm just talking about shows here since this thread is about a MAL list and on /r/anime, so Berserk is not in the running.";False;False;;;;1610462245;;False;{};gj0413e;False;t3_kv4s8z;False;True;t1_gj03cca;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj0413e/;1610518975;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sweaty_Scarcity4739;;;[];;;;text;t2_8i76ioch;False;False;[];;whaaaaqqqaaaaqq;False;False;;;;1610462483;;False;{};gj04hbc;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj04hbc/;1610519259;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Whatever, let people argue 🤷 it's none of my problem. They're the ones arguing 🤷 my goal was to just deliver a piece of info to people. It's their choice what they want to do with it;False;False;;;;1610462686;;1610463021.0;{};gj04v6s;True;t3_kv4s8z;False;True;t1_gj00axw;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj04v6s/;1610519475;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Karmaisthedevil;;;[];;;;text;t2_81a3l;False;False;[];;Considering karma votes are intentionally fuzzed by Reddit, I really wish they wouldn't care about karma rankings.;False;False;;;;1610463435;;False;{};gj06bhe;False;t3_kv4s8z;False;True;t1_gix4ts7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj06bhe/;1610520303;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Karmaisthedevil;;;[];;;;text;t2_81a3l;False;False;[];;That's ridiculous. Why should you have to ensure something terrible to be able to rate it? Just like how medicore anime end up with higher scored second seasons because everyone else dropped it in the first season.;False;False;;;;1610463812;;False;{};gj072b4;False;t3_kv4s8z;False;True;t1_gix5fgt;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj072b4/;1610520715;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PotatEXTomatEX;;;[];;;;text;t2_tdgrv;False;False;[];;"> people who give 1s are trolls but people who spam 10s are fans? - -Very much so, yes.";False;False;;;;1610468935;;False;{};gj0h8na;False;t3_kv4s8z;False;True;t1_gixfael;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj0h8na/;1610526293;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Killcode2;;;[];;;;text;t2_15lr8u;False;False;[];;Then all anime are 10/10 if we ignore troll voting because no one on mal uses the scores in the middle.;False;False;;;;1610469368;;False;{};gj0i5pu;False;t3_kv4s8z;False;True;t1_gj0h8na;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj0i5pu/;1610526782;0;True;False;anime;t5_2qh22;;0;[]; -[];;;DoublerZ;;;[];;;;text;t2_to2pt;False;False;[];;My feelings on FMA are that while nothing about it was *terrible*, almost nothing about it was *amazing*, either. It was just... Good. Not really mindblowing or memorable. Just solid.;False;False;;;;1610469904;;False;{};gj0jbgi;False;t3_kv4s8z;False;True;t1_gixo4nz;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj0jbgi/;1610527409;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Hailgod;;;[];;;;text;t2_86po8;False;False;[];;why? its just hype right? ive read the manga the overarching story is so ass. it doesnt matter how much foreshadowing u do, the story isnt getting any better.;False;False;;;;1610470156;;False;{};gj0jvhj;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj0jvhj/;1610527713;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hon3ynuts;;;[];;;;text;t2_auvkjqo;False;False;[];;"Season 2 was more interesting than S1 you actually have an antagonist. S3P2 was only 10 eps but it was the best season of any show I've ever seen. - -S1 definitely had some slow episodes in the middle.";False;False;;;;1610471290;;False;{};gj0mco6;False;t3_kv4s8z;False;True;t1_gizqntt;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj0mco6/;1610529089;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CryptosBG;;;[];;;;text;t2_nn6kd;False;False;[];;In my opinion fma 2003 is way better. Ignoring the fillers, the story felt way more raw and mature.;False;False;;;;1610471680;;False;{};gj0n7bq;False;t3_kv4s8z;False;True;t1_giwvsgj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj0n7bq/;1610529556;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610471787;;False;{};gj0ng14;False;t3_kv4s8z;False;True;t1_gj0jvhj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj0ng14/;1610529686;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mynewaccount5;;;[];;;;text;t2_d1vwt;False;False;[];;There's many people in this sub that wouldn't see your comment as sarcasm;False;False;;;;1610472015;;False;{};gj0ny2c;False;t3_kv4s8z;False;True;t1_giyyzww;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj0ny2c/;1610529958;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PotatEXTomatEX;;;[];;;;text;t2_tdgrv;False;False;[];;"I didn't say ""ignore all 1/10"". Just that 1/10 and 10/10 do not, under any circumstance, have the same weight.";False;False;;;;1610473417;;False;{};gj0r2or;False;t3_kv4s8z;False;True;t1_gj0i5pu;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj0r2or/;1610531654;1;True;False;anime;t5_2qh22;;0;[]; -[];;;voornaam1;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://www.anime-planet.com/users/Max4444;dark;text;t2_3yiwp1ue;False;False;[];;"It's also in second place on Anime-Planet. - -A-P has a rating system with 5 stars, In first place is Fullmetal Alchemist: Brotherhood with an average of 4.7 and in second pkace Attack on Titan final season with an average of 4.67.";False;False;;;;1610474095;;False;{};gj0slac;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj0slac/;1610532487;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610476718;;False;{};gj0yf0m;False;t3_kv4s8z;False;True;t1_giwxlcb;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj0yf0m/;1610535766;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;Delete or mark spoilers please. Anyways this and the next arc are both higher rated than the final arc as of now because we don't know much about the end;False;False;;;;1610476871;;False;{};gj0yreg;False;t3_kv4s8z;False;True;t1_gj0yf0m;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj0yreg/;1610535966;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jeygames;;;[];;;;text;t2_25479j5o;False;False;[];;but dude think about it being rank 1 anime a part what ends at cliffhanger;False;False;;;;1610477009;;False;{};gj0z2ga;False;t3_kv4s8z;False;True;t1_gj0yreg;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj0z2ga/;1610536150;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GregerMoek;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/GregerMoek;light;text;t2_4t2uq;False;False;[];;Just watch how nintendo fans were upset when Breath of the Wild dropped 0.1 in score on metacritic thanks to one reviewer giving it a 7/10.;False;False;;;;1610477992;;False;{};gj119so;False;t3_kv4s8z;False;True;t1_giwnvn5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj119so/;1610537411;1;True;False;anime;t5_2qh22;;0;[]; -[];;;exeia;;;[];;;;text;t2_mc7v3;False;False;[];;right? for me its a personal rating system and to keep track of what I watched, if something is a 6 but I feel like it was a 10 for me then Ill rate a 10, and vice versa.;False;False;;;;1610478269;;False;{};gj11vnm;False;t3_kv4s8z;False;False;t1_gixsr07;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj11vnm/;1610537760;2;True;False;anime;t5_2qh22;;0;[]; -[];;;karneheni;;;[];;;;text;t2_4lmei044;False;False;[];;">AoT IMO is nearly unwatchable. I saw the first six episodes when it first came out and hated it. - -why? - -asking because i feel exactly the same (but hated it pretty much for overhype, overall its just boring and mediocre, another forgettable shounen)";False;False;;;;1610479542;;False;{};gj14ocw;False;t3_kv4s8z;False;False;t1_giwh2vp;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj14ocw/;1610539384;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610482979;;False;{};gj1c7tl;False;t3_kv4s8z;False;True;t1_gizun7u;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj1c7tl/;1610544288;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nufulini;;;[];;;;text;t2_12lzy7;False;False;[];;I really like the progress thing, ever since I started watching anime a few years ago I had a notepad where I had all the series I watched. It really brings memories watching your list and seeing an anime that you loved. But yea MAL is really toxic, they trow words such as “cultured” and “taste”. It really sound elitist af;False;False;;;;1610483450;;False;{};gj1d8o1;False;t3_kv4s8z;False;True;t1_giy0ez7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj1d8o1/;1610545001;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lever10;;;[];;;;text;t2_eaq9m;False;False;[];;I use it like wikipedia. It's a good starting point to find out what people generally like or dislike but ultimately shouldn't be trusted without checking it out youself;False;False;;;;1610483789;;False;{};gj1dzdt;False;t3_kv4s8z;False;False;t1_giwthxl;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj1dzdt/;1610545512;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Fierce-Mushroom;;;[];;;;text;t2_9851jvsi;False;False;[];;"Pretty much what you listed. I had a friend at the time who was incredibly obnoxious about getting people to watch it. We met at his place to set up a D&D campaign one day and he basically forced us to watch it. His house reeked of dog shit and the whole ordeal just soured me on the series.";False;False;;;;1610485888;;False;{};gj1imk5;False;t3_kv4s8z;False;True;t1_gj14ocw;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj1imk5/;1610548738;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChubbyCookie;;;[];;;;text;t2_phizd;False;False;[];;citation needed, as if you need to cite opinions ?;False;False;;;;1610486327;;False;{};gj1jl7m;False;t3_kv4s8z;False;True;t1_gix7ls6;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj1jl7m/;1610549441;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jojo_is_trash;;;[];;;;text;t2_595dn1yo;False;False;[];;People are jumping the gun all over the place XD;False;False;;;;1610486775;;False;{};gj1kkcf;False;t3_kv4s8z;False;True;t1_giy7bud;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj1kkcf/;1610550123;1;True;False;anime;t5_2qh22;;0;[]; -[];;;alexpanzrla;;;[];;;;text;t2_p2gwuqe;False;False;[];;"I really really hope Attack on Titan will take first place from FMAB, as I don't find the latter to be that interesting, and while AOT isn't in my top 10 rn, I'm an anime only and expect it'll probably get in there based on this season and what I've been hearing, and I certainly like it much more than FMAB. - -I get FMAB is at the top bc it does everything fairly perfectly, in terms of having seemingly no controversy, but I'd just like something else to be up there. It does make me a bit sad to see Steins;Gate not at number 2 anymore bc it's my second favorite anime, but it's not really that deep. At the end of the day scores really aren't that important, but its just nice to see the things you love get critical recognition, especially when you're a listing-type person.";False;False;;;;1610487080;;False;{};gj1l857;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj1l857/;1610550596;1;True;False;anime;t5_2qh22;;0;[]; -[];;;remmanuelv;;;[];;;;text;t2_mfjwf;False;False;[];;"It's the biggest user ratings site in the community. Neither anidb nor AP can compare in terms of userbase. We are talking of 1:10 to 1:100 scale. - -AniDB's top 1 anime (LOGH) has 3000~ votes -MAL's LOGH has 44000~ - -FMA has 11000~ in anidb and **1.3m** in MAL. - -If there's one site that represents the wider community it's MAL.";False;False;;;;1610488732;;1610488961.0;{};gj1oudz;False;t3_kv4s8z;False;True;t1_gizehxn;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj1oudz/;1610553120;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SpeeDy_GjiZa;;MAL;[];;http://myanimelist.net/profile/SpeeDy_G;dark;text;t2_gsfq5;False;False;[];;That's how I feel aswell apart from the worldbuilduing and power system which I personally think FMAB handles better.;False;False;;;;1610489322;;False;{};gj1q3h3;False;t3_kv4s8z;False;True;t1_gixy15o;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj1q3h3/;1610554045;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saikounihighteyatzda;;;[];;;;text;t2_8tj3rl21;False;False;[];;Honestly, hopefully. Idc about anything in top 10 as much as Gintama.;False;False;;;;1610491248;;False;{};gj1u5bq;False;t3_kv4s8z;False;True;t1_giwv8bc;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj1u5bq/;1610556962;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JapanCode;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TheJapanCode/;light;text;t2_bmu83;False;False;[];;Damn it has an extra 300 1's BUT the average has gone up to 9.14!;False;False;;;;1610494739;;False;{};gj2147c;False;t3_kv4s8z;False;True;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj2147c/;1610561949;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabzy12;;;[];;;;text;t2_7bndlty2;False;False;[];;Not once the anime catches up to the manga 😂;False;False;;;;1610500273;;False;{};gj2biss;False;t3_kv4s8z;False;True;t1_giy7nrw;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj2biss/;1610569343;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FruitJuicante;;;[];;;;text;t2_9ezln;False;False;[];;"Not sure what you mean haha. There aren't many more places above Number 1 that it can go lol. - -It's been perfect for me up until now.";False;False;;;;1610501503;;False;{};gj2dsws;False;t3_kv4s8z;False;False;t1_gj2biss;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj2dsws/;1610570906;1;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;But yet its somehow at number 2, maybe we are all crazy and you are the smart one here.;False;False;;;;1610502359;;False;{};gj2fdfs;False;t3_kv4s8z;False;True;t1_gj0jvhj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj2fdfs/;1610571985;1;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;If season 3 part 2 is to go by, it will do just fine. And the material adapted in this final season is on another level from season 3 part 2.;False;False;;;;1610502444;;False;{};gj2fj1o;False;t3_kv4s8z;False;True;t1_gizm878;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj2fj1o/;1610572094;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hailgod;;;[];;;;text;t2_86po8;False;False;[];;rating a season before its anywhere close to finishing. incredibly smart.;False;False;;;;1610502585;;False;{};gj2fsrr;False;t3_kv4s8z;False;True;t1_gj2fdfs;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj2fsrr/;1610572286;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;"The score can always change, if the series turns out bad persons will just lower there score. It's not rocket science. If anything tell the mods at Myanimelist to block rating a series until it's finish then. - -Either way the results will still be the same and that is the final season will be #1. It can't be stopped anymore!";False;False;;;;1610502774;;False;{};gj2g5bi;False;t3_kv4s8z;False;True;t1_gj2fsrr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj2g5bi/;1610572538;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Death_InBloom;;;[];;;;text;t2_sgnvb;False;False;[];;closing in to 4K by now (Jan 12, 20:27pm);False;False;;;;1610504828;;False;{};gj2jzr6;False;t3_kv4s8z;False;False;t1_giw2s5a;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj2jzr6/;1610575365;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nghtmare-Moon;;;[];;;;text;t2_jsig9;False;False;[];;If they dont pull a GOT ending this will surpass FMA:B;False;False;;;;1610505472;;False;{};gj2l7j5;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj2l7j5/;1610576208;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jhin-Row;;;[];;;;text;t2_6p9kx61;False;False;[];;this is a better voting system called [tideman](https://en.wikipedia.org/wiki/Tideman_alternative_method);False;False;;;;1610508289;;False;{};gj2qge7;False;t3_kv4s8z;False;True;t1_gixyaz2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj2qge7/;1610579891;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jhin-Row;;;[];;;;text;t2_6p9kx61;False;False;[];; https://en.wikipedia.org/wiki/Tideman_alternative_method;False;False;;;;1610508312;;False;{};gj2qhvi;False;t3_kv4s8z;False;True;t1_gixgt5s;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj2qhvi/;1610579917;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CyberHumanism;;;[];;;;text;t2_4nsvc7l4;False;False;[];;Are people really thinking this is going to take out FMAB? I enjoyed the shit outta season 3 but this season really hasn't had too much in terms of explosive plot points yet... I feel like this is gonna be another Erased situation where it's going to drop a few spots after it finishes.;False;False;;;;1610508429;;False;{};gj2qpda;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj2qpda/;1610580057;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Alchion;;;[];;;;text;t2_p4db7;False;False;[];;yup;False;False;;;;1610511042;;False;{};gj2v87e;False;t3_kv4s8z;False;True;t1_gixye2m;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj2v87e/;1610583208;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EZPZ24;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/EZPZ2424;light;text;t2_10q6o1;False;False;[];;Join us at Anilist where the average score is kinda hard to even see so most people don't seem to pay attention to it.;False;False;;;;1610512064;;False;{};gj2wy9l;False;t3_kv4s8z;False;True;t1_gizh8g4;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj2wy9l/;1610584366;2;True;False;anime;t5_2qh22;;0;[]; -[];;;y-c-c;;;[];;;;text;t2_abw7a;False;True;[];;Right, that's one of the many Condorcet methods for selecting a winner (or potentially ordered winners) from ranked voting scheme. I personally like [Schulze method](https://en.wikipedia.org/wiki/Schulze_method) better but yours is easier to understand as it works more like Instant Runoff.;False;False;;;;1610524379;;False;{};gj3cz30;False;t3_kv4s8z;False;True;t1_gj2qhvi;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj3cz30/;1610594821;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GosuGian;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GosuDRM;light;text;t2_mu7ij;False;False;[];;Deserved;False;False;;;;1610530673;;False;{};gj3j93m;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj3j93m/;1610598786;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HarterJas;;;[];;;;text;t2_2s3bres0;False;False;[];;Actually a lot of people dislike HxH and especially the CA arc. Usually because they dislike like how Togashi paces things. But those people tend to like cliche stuff so their opinions are boring.;False;False;;;;1610551061;;False;{};gj4aoqj;False;t3_kv4s8z;False;True;t1_gixyixu;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj4aoqj/;1610614553;1;True;False;anime;t5_2qh22;;0;[]; -[];;;K-Wulfgang;;;[];;;;text;t2_x2mnv;False;False;[];;Hero? what anime is that?;False;False;;;;1610556575;;False;{};gj4mggw;False;t3_kv4s8z;False;True;t1_giwprth;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj4mggw/;1610621015;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;I'm referring to episode 54 of Attack on Titan or Episode 5 of S3P2;False;False;;;;1610556657;;False;{};gj4mmz5;False;t3_kv4s8z;False;True;t1_gj4mggw;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj4mmz5/;1610621119;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigwhopperpopper;;;[];;;;text;t2_2ncoby4a;False;False;[];;i hate you gamerdylan;False;False;;;;1610570813;;False;{};gj5ilnf;False;t3_kv4s8z;False;True;t1_giyikbg;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj5ilnf/;1610642002;0;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;">9.11 to 9.13, back down to 9.10 and back up to 9.13 - - -Those were almost certainly glitches from the system likely due to the sheer volume of votes giving 10s. There's a reason the score shot back up in the very next score update - -Scores never go down .02/03 in a single update and when the glitches happened the statistics section had barely moved. Also, even from brigading due to the sheer number of votes required to make movement in the score huge movement never happens instantly.";False;False;;;;1610613390;;False;{};gj7kzik;False;t3_kv4s8z;False;False;t1_gizri49;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj7kzik/;1610691833;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chaderenabs;;;[];;;;text;t2_8yuqmavz;False;False;[];;Same bro ch 112 will make the fanebase esp the SHIPPERS really mad I'm starving to see the reactions already;False;False;;;;1610626477;;False;{};gj7ya8i;False;t3_kv4s8z;False;True;t1_giycoqw;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj7ya8i/;1610699381;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hussor;;MAL;[];;http://myanimelist.net/animelist/Hussor;dark;text;t2_j55xp;False;False;[];;really looking forward to the reaction to 112 and 119. I hope 119 is left on a cliffhanger.;False;False;;;;1610632124;;False;{};gj866jq;False;t3_kv4s8z;False;True;t1_gj7ya8i;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gj866jq/;1610703685;1;True;False;anime;t5_2qh22;;0;[]; -[];;;evilstop4;;;[];;;;text;t2_pwwxi4p;False;False;[];;In terms of popularity, attack on titan makes steins gate look like and underground anime, MAL isn’t real life;False;False;;;;1610687803;;False;{};gjbcio5;False;t3_kv4s8z;False;True;t1_giwtlbw;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gjbcio5/;1610778500;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GeekyStuffLeaking;;;[];;;;text;t2_4z6iros;False;False;[];;I know a person who rated it 1 star without even seeing it because Attack on Titan is too mainstream and he hates 'fakeass weebs', whatever that means.;False;False;;;;1610732843;;False;{};gjd5fv8;False;t3_kv4s8z;False;True;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gjd5fv8/;1610817492;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Routine_Spinach_8841;;;[];;;;text;t2_516hz73z;False;False;[];;GoT is heavily overestimated, its storytelling in the books and in the series are far below the level of real masterpieces like **doctor who or star trek: new generation**, their messages and parallel with reality makes GoT appear to be a mid tier story, even Ricky and Morty has more messages and parallels with reality than GoT, GoT can be the peak of drama, but its nowhere near the level of the peak of fiction.;False;False;;;;1610791436;;False;{};gjfv524;False;t3_kv4s8z;False;True;t1_gizpfc5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gjfv524/;1610878358;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nicolegadams;;;[];;;;text;t2_9s1i6p2v;False;False;[];;"I sure could use a TITAN. -💦 -OF = Username - -Free account";False;False;;;;1610808723;;False;{};gjgpkz7;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gjgpkz7/;1610893284;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610882586;;1610944190.0;{};gjkie6x;False;t3_kv4s8z;False;True;t1_gizwi8s;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gjkie6x/;1610974916;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shadowmonarch123;;;[];;;;text;t2_95l65f1c;False;False;[];;How about doctor who? Does that justify it;False;False;;;;1610919946;;False;{};gjnhz2b;False;t3_kv4s8z;False;True;t1_giwj93d;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gjnhz2b/;1611034743;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shotputlover;;;[];;;;text;t2_nkplu;False;False;[];;What’s so good about gintama?;False;False;;;;1611088650;;False;{};gjvb0bp;False;t3_kv4s8z;False;True;t1_giwnxwz;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gjvb0bp/;1611212488;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Aki_Sparker_007, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610438658;moderator;False;{};gizbqoc;False;t3_kvnfwk;False;True;t3_kvnfwk;/r/anime/comments/kvnfwk/happy_ending_bl_anime_recommendations/gizbqoc/;1610501028;1;False;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;Most of the controversy comes from the anime.;False;False;;;;1610439067;;False;{};gizc650;False;t3_kvnfl8;False;True;t3_kvnfl8;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gizc650/;1610501292;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Siendra;;;[];;;;text;t2_9z7nk;False;False;[];;Most of the hate is directed at the show because it started airing at basically the same time the manga started publication, resulting in like the first fifty episodes or something technically all being filler. And then the only cannon episodes for ages are just a recut of ab already released film.;False;False;;;;1610439445;;False;{};gizckbq;False;t3_kvnfl8;False;True;t3_kvnfl8;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gizckbq/;1610501540;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610439493;moderator;False;{};gizcm2q;False;t3_kvnm7b;False;True;t3_kvnm7b;/r/anime/comments/kvnm7b/new_anime_i_should_be_looking_for_this_season/gizcm2q/;1610501572;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Flare_Knight;;;[];;;;text;t2_v5stf;False;False;[];;"My feeling was that I just couldn’t care about the cast. Boruto being an understandable brat does not make him more likeable. Naruto’s reason for acting like he did may have been over the top, but it worked. Boruto...has incredibly minor gripes. I just couldn’t care about this guy. - -I don’t think Naruto itself ever really matched the quality of the early arcs it set. And what I saw from Boruto didn’t really grab me. I say great for those that enjoy it. It’s nice to have things you like. I simply didn’t care for Boruto and never really regretted dropping it early on.";False;False;;;;1610439496;;False;{};gizcm6u;False;t3_kvnfl8;False;False;t3_kvnfl8;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gizcm6u/;1610501574;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Nope159;;;[];;;;text;t2_5hiptdfg;False;False;[];;Holy fruit of Grisaia;False;False;;;;1610439533;;False;{};gizcnm5;False;t3_kvnm7b;False;True;t3_kvnm7b;/r/anime/comments/kvnm7b/new_anime_i_should_be_looking_for_this_season/gizcnm5/;1610501598;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Retromorpher;;;[];;;;text;t2_3x42wxsp;False;False;[];;"It depends on what you consider an ending in this case. Are you looking for full adaptations or just things that leave off the series on a positive note? - -Positive Note Ending BL: Love Stage! Gakuen Handsome, Given, Yuri!! on Ice - - -Full Adaptations With Reasonably Happy Resolutions: Sarazanmai";False;False;;;;1610439736;;False;{};gizcv4h;False;t3_kvnfwk;False;True;t3_kvnfwk;/r/anime/comments/kvnfwk/happy_ending_bl_anime_recommendations/gizcv4h/;1610501729;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FuntasticoReddit;;;[];;;;text;t2_44rgdkne;False;False;[];;I hear 'jobless reincarnation' is good;False;False;;;;1610439867;;False;{};gizczzh;False;t3_kvnm7b;False;True;t3_kvnm7b;/r/anime/comments/kvnm7b/new_anime_i_should_be_looking_for_this_season/gizczzh/;1610501810;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tasthar;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tasthar;light;text;t2_1fhlyiyc;False;False;[];;Horimiya and Mushoku Tensei are quite popular.;False;False;;;;1610439872;;False;{};gizd074;False;t3_kvnm7b;False;False;t3_kvnm7b;/r/anime/comments/kvnm7b/new_anime_i_should_be_looking_for_this_season/gizd074/;1610501815;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Glizardx11;;;[];;;;text;t2_37yox72j;False;False;[];;Shingeki nk kyoujin XD;False;True;;comment score below threshold;;1610440140;;False;{};gizda4k;False;t3_kvnm7b;False;True;t3_kvnm7b;/r/anime/comments/kvnm7b/new_anime_i_should_be_looking_for_this_season/gizda4k/;1610501985;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;k1ritokun;;;[];;;;text;t2_k6vsk;False;False;[];;Might as well post your of link 🙄;False;False;;;;1610440238;;False;{};gizddqi;False;t3_kvnqwj;False;True;t3_kvnqwj;/r/anime/comments/kvnqwj/love_this_shirt/gizddqi/;1610502046;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zeplin_lp;;;[];;;;text;t2_3mlsdgjm;False;False;[];;"thicc thighs. - -me like.";False;False;;;;1610440257;;False;{};gizdegb;False;t3_kvnqwj;False;True;t3_kvnqwj;/r/anime/comments/kvnqwj/love_this_shirt/gizdegb/;1610502058;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nooodele;;;[];;;;text;t2_2mizbkgn;False;False;[];;Don't have one sowwy;False;False;;;;1610440279;;False;{};gizdf7v;False;t3_kvnqwj;False;True;t1_gizddqi;/r/anime/comments/kvnqwj/love_this_shirt/gizdf7v/;1610502073;0;True;False;anime;t5_2qh22;;0;[]; -[];;;oddtoddlr;;;[];;;;text;t2_37afeqck;False;False;[];;Saw a trailer of sk8 infinity looked pretty good and gave off some air gear vibes;False;False;;;;1610440477;;False;{};gizdmdu;False;t3_kvnm7b;False;True;t3_kvnm7b;/r/anime/comments/kvnm7b/new_anime_i_should_be_looking_for_this_season/gizdmdu/;1610502197;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok-Paleontologist275;;;[];;;;text;t2_80cd2xoa;False;False;[];;"What part of two chosen ones rivals getting alien powerups on powerups with new googly eyes as the female lead is an irrelevant love interest again ( she's an uchiha this time so it's even worse) , and naruto sasuke being nerfed and jobbing to hype up the new two rival boys duo sounds good to you? Coz that's what this is leading to in the manga and anime, just a dragged repeat of literally every single mistake and problem in naruto shippuden which drove people away. - - - -If you have any hopes for sarada and mitsuki( they're basically sugar-coated sakura and Sai) , naruto and sasuke just quit as they ain't shit and lol @ other characters, coming from someone who is following the series ( both anime and manga) since the start and is very disappointed in the direction its going.";False;False;;;;1610440864;;1610441401.0;{};gize0fi;False;t3_kvnfl8;False;True;t3_kvnfl8;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gize0fi/;1610502448;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fusion1511;;;[];;;;text;t2_9g1ybzlg;False;False;[];;Boruto is 85 per cent filler. That's why I can't stand watching it. The manga is actually pretty good;False;False;;;;1610441104;;False;{};gize94k;False;t3_kvnfl8;False;True;t3_kvnfl8;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gize94k/;1610502604;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610441377;moderator;False;{};gizej1z;False;t3_kvnzfy;False;False;t3_kvnzfy;/r/anime/comments/kvnzfy/anime_and_manga_recommendations_please/gizej1z/;1610502781;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi sukablyat6969, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610441377;moderator;False;{};gizej2p;False;t3_kvnzfy;False;True;t3_kvnzfy;/r/anime/comments/kvnzfy/anime_and_manga_recommendations_please/gizej2p/;1610502782;1;False;False;anime;t5_2qh22;;0;[]; -[];;;csdbcjkahsd;;;[];;;;text;t2_6o5ig4yp;False;False;[];;watched both of em. they're great;False;False;;;;1610441425;;False;{};gizekp9;True;t3_kvnm7b;False;False;t1_gizd074;/r/anime/comments/kvnm7b/new_anime_i_should_be_looking_for_this_season/gizekp9/;1610502810;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Godprime;;;[];;;;text;t2_dezxafd;False;False;[];;It’s canon, not filler;False;False;;;;1610441520;;False;{};gizeo7z;False;t3_kvnfl8;False;True;t1_gize94k;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gizeo7z/;1610502882;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi DwightLivesMatter, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610441750;moderator;False;{};gizewgc;False;t3_kvo24b;False;True;t3_kvo24b;/r/anime/comments/kvo24b/short_must_watch_anime/gizewgc/;1610503034;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610441855;moderator;False;{};gizf08h;False;t3_kvo2ta;False;True;t3_kvo2ta;/r/anime/comments/kvo2ta/anime_like_the_alien_games/gizf08h/;1610503100;1;False;False;anime;t5_2qh22;;0;[]; -[];;;dekalabia;;;[];;;;text;t2_qqkbdrk;False;False;[];;Legend of the Galactic Hero;False;False;;;;1610441975;;False;{};gizf4jr;False;t3_kvo2yx;False;True;t3_kvo2yx;/r/anime/comments/kvo2yx/pls_help_me_find_an_anime_to_watch/gizf4jr/;1610503175;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;FLCL;False;False;;;;1610441979;;False;{};gizf4pc;False;t3_kvo24b;False;True;t3_kvo24b;/r/anime/comments/kvo24b/short_must_watch_anime/gizf4pc/;1610503179;2;True;False;anime;t5_2qh22;;0;[]; -[];;;itz_unknown_god;;;[];;;;text;t2_97tgx2k5;False;False;[];;Already watched that;False;False;;;;1610441995;;False;{};gizf5a6;True;t3_kvo2yx;False;True;t1_gizf4jr;/r/anime/comments/kvo2yx/pls_help_me_find_an_anime_to_watch/gizf5a6/;1610503188;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dekalabia;;;[];;;;text;t2_qqkbdrk;False;False;[];;フリクリ;False;False;;;;1610442009;;False;{};gizf5sh;False;t3_kvo24b;False;False;t1_gizf4pc;/r/anime/comments/kvo24b/short_must_watch_anime/gizf5sh/;1610503197;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610442042;;False;{};gizf6ze;False;t3_kvo24b;False;True;t3_kvo24b;/r/anime/comments/kvo24b/short_must_watch_anime/gizf6ze/;1610503218;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fusion1511;;;[];;;;text;t2_9g1ybzlg;False;False;[];;The anime is 85% Filler;False;False;;;;1610442094;;False;{};gizf8sx;False;t3_kvnfl8;False;True;t1_gizeo7z;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gizf8sx/;1610503248;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Godprime;;;[];;;;text;t2_dezxafd;False;False;[];;It’s canon, who says it’s filler?;False;False;;;;1610442136;;False;{};gizfacd;False;t3_kvnfl8;False;True;t1_gizf8sx;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gizfacd/;1610503274;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jeevansaab;;;[];;;;text;t2_6mnvnddv;False;False;[];;Alien adult games.;False;False;;;;1610442144;;False;{};gizfalp;False;t3_kvo2ta;False;False;t3_kvo2ta;/r/anime/comments/kvo2ta/anime_like_the_alien_games/gizfalp/;1610503280;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nettysocks;;;[];;;;text;t2_s8d167o;False;False;[];;"Sequels aside skate seems good and also cells at work code black. -Jobless reincarnation I haven’t watched yet, the trailer seemed to have nice animation, how it will actually be interesting and set it self apart from generic isekai fantasy world I’m not sure though. Will -Be trying it out on Friday so will see.";False;False;;;;1610442156;;False;{};gizfb0y;False;t3_kvnm7b;False;True;t3_kvnm7b;/r/anime/comments/kvnm7b/new_anime_i_should_be_looking_for_this_season/gizfb0y/;1610503288;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fusion1511;;;[];;;;text;t2_9g1ybzlg;False;False;[];;Out of 184 episodes only 25 episodes are canon.;False;False;;;;1610442204;;False;{};gizfcrb;False;t3_kvnfl8;False;True;t1_gizfacd;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gizfcrb/;1610503320;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Godprime;;;[];;;;text;t2_dezxafd;False;False;[];;You know more than one continuity can be canon at the same time right? That’s how a franchise with multiple timelines works;False;False;;;;1610442286;;False;{};gizffo5;False;t3_kvnfl8;False;False;t1_gizfcrb;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gizffo5/;1610503371;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;InsomniaEmperor;;;[];;;;text;t2_5x68hmc4;False;False;[];;OP of the season sounds even more fiery here. Good job!;False;False;;;;1610442381;;False;{};gizfj04;False;t3_kvnw62;False;True;t3_kvnw62;/r/anime/comments/kvnw62/i_made_a_drum_cover_of_quintessential_quintuplets/gizfj04/;1610503429;2;True;False;anime;t5_2qh22;;0;[]; -[];;;goodgrief-;;;[];;;;text;t2_4ugp50hb;False;False;[];;I liked Angel Densetsu, it’s kind of old though. It’s only two episodes and really funny.;False;False;;;;1610442392;;False;{};gizfjec;False;t3_kvo2yx;False;True;t3_kvo2yx;/r/anime/comments/kvo2yx/pls_help_me_find_an_anime_to_watch/gizfjec/;1610503435;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fusion1511;;;[];;;;text;t2_9g1ybzlg;False;False;[];;Cannon means that it's from the Boruto manga. The rest are fillers.;False;False;;;;1610442402;;False;{};gizfjrs;False;t3_kvnfl8;False;True;t1_gizffo5;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gizfjrs/;1610503442;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dekalabia;;;[];;;;text;t2_qqkbdrk;False;False;[];;"Oh I see you're a man of culture. - - -Serial experiment Lain - -Haibane Renmei - -Last Exile - -Gunbuster and Die Buster - -00's adaption of Boogey Pop Phantom - -Terra E - -Nadia of the secret of blue waters - -Future Boy Conan - -Kaiba - -Ping Pong the Animation - -Titania - -Planetes - -Dennou Coil";False;False;;;;1610442423;;False;{};gizfkjf;False;t3_kvo2yx;False;False;t1_gizf5a6;/r/anime/comments/kvo2yx/pls_help_me_find_an_anime_to_watch/gizfkjf/;1610503456;1;True;False;anime;t5_2qh22;;0;[]; -[];;;falkner97;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/falkner99;light;text;t2_6y92q69v;False;False;[];;Unrelated situation kekw;False;False;;;;1610442457;;False;{};gizflr5;False;t3_kvo5bq;False;True;t3_kvo5bq;/r/anime/comments/kvo5bq/im_confused_about_durarara/gizflr5/;1610503478;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Iruka_Chan;;;[];;;;text;t2_8v7ni3m9;False;False;[];;"Blue Spring Ride(slice of life, romance), Dororo(adventure), Highschool of the Elite - -Tbh im not sure what kind of anime ur looking for and if these are popular or not. If u tell me ur favourite genre i could recommend a few more";False;False;;;;1610442480;;False;{};gizfmjy;False;t3_kvo2yx;False;True;t3_kvo2yx;/r/anime/comments/kvo2yx/pls_help_me_find_an_anime_to_watch/gizfmjy/;1610503491;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;">kekw - -Wut?";False;False;;;;1610442482;;False;{};gizfmmv;True;t3_kvo5bq;False;True;t1_gizflr5;/r/anime/comments/kvo5bq/im_confused_about_durarara/gizfmmv/;1610503492;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Godprime;;;[];;;;text;t2_dezxafd;False;False;[];;The fillers that are referenced in the manga as events that happened in that continuity? That makes that continuity canon by extension. The novels by your logic aren’t canon, but they are, along with the databooks.;False;False;;;;1610442525;;False;{};gizfo5i;False;t3_kvnfl8;False;True;t1_gizfjrs;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gizfo5i/;1610503521;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610442599;;False;{};gizfqtw;False;t3_kvo5bq;False;True;t3_kvo5bq;/r/anime/comments/kvo5bq/im_confused_about_durarara/gizfqtw/;1610503568;1;True;False;anime;t5_2qh22;;0;[]; -[];;;goodgrief-;;;[];;;;text;t2_4ugp50hb;False;False;[];;"I watched Akudama Drive recently, which I found to be quite good! I can’t really explain it, basically this girl gets caught up in a whole government mess. - -Mononoke is one of my favourites, and is a must watch. However you may find the animation or art style to be a turn off, but I’d still give it a try!";False;False;;;;1610442670;;False;{};gizftcc;False;t3_kvo24b;False;True;t3_kvo24b;/r/anime/comments/kvo24b/short_must_watch_anime/gizftcc/;1610503613;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pokemaster1701;;;[];;;;text;t2_mrino;False;False;[];;"Durarara takes a while to set up a specific plot, because it juggles so many characters and a number of storylines. - -That being said, don't be expecting a super linear, plot centric show because that's not what it is. Alot of the time it's gonna seem like a lot of randomness (which it is) that comes together every so often";False;False;;;;1610442986;;False;{};gizg4i4;False;t3_kvo5bq;False;False;t3_kvo5bq;/r/anime/comments/kvo5bq/im_confused_about_durarara/gizg4i4/;1610503808;8;True;False;anime;t5_2qh22;;0;[]; -[];;;OoOh3lpOoO;;;[];;;;text;t2_6cdvv7uv;False;False;[];;What is the alien games ????;False;False;;;;1610442987;;False;{};gizg4j8;False;t3_kvo2ta;False;False;t3_kvo2ta;/r/anime/comments/kvo2ta/anime_like_the_alien_games/gizg4j8/;1610503809;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;Kemono jihen had quite an interesting first episode and seems like it’ll be worth a watch;False;False;;;;1610443201;;False;{};gizgc2k;False;t3_kvnm7b;False;True;t3_kvnm7b;/r/anime/comments/kvnm7b/new_anime_i_should_be_looking_for_this_season/gizgc2k/;1610503940;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ambsase;;;[];;;;text;t2_5q2uk;False;False;[];;Fumetsu no Anata e is a pretty unique and good manga, the main character's power is kinda secret sometimes? It's a bit hard to explain on that account. It's also getting an anime adaptation I think some time this year, I forget if there's a solid release date yet;False;False;;;;1610443361;;False;{};gizghsa;False;t3_kvnzfy;False;True;t3_kvnzfy;/r/anime/comments/kvnzfy/anime_and_manga_recommendations_please/gizghsa/;1610504040;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TesticularBacon;;;[];;;;text;t2_9oikp96b;False;False;[];;"I'd say try another 4 episodes. A plot does kick in. It's about gang wars and then you just have Izaya being an asshole the whole time. Took me about 9-10 episodes to actually enjoy the show. I dropped it at first because it was too slow then later ended up loving the show. There's also a plot with a sword and a plot with Celty. - -But overall I'd say the main technical plot is the daily lives of these characters and how things come to be.";False;False;;;;1610443367;;False;{};gizghz9;False;t3_kvo5bq;False;True;t3_kvo5bq;/r/anime/comments/kvo5bq/im_confused_about_durarara/gizghz9/;1610504043;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vagabondeluxe;;;[];;;;text;t2_6xj8vlb9;False;False;[];;Madoka magica, Anohana;False;False;;;;1610443383;;False;{};gizgijc;False;t3_kvo24b;False;True;t3_kvo24b;/r/anime/comments/kvo24b/short_must_watch_anime/gizgijc/;1610504052;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sukablyat6969;;;[];;;;text;t2_58f59a0u;False;False;[];;Thanks I'll check it out;False;False;;;;1610443403;;False;{};gizgj8a;True;t3_kvnzfy;False;False;t1_gizghsa;/r/anime/comments/kvnzfy/anime_and_manga_recommendations_please/gizgj8a/;1610504064;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jweeb94;;;[];;;;text;t2_3vswyor;False;False;[];;Puella Magi Madoka Magica is only 13 eps. You can give that a try;False;False;;;;1610443458;;False;{};gizgl7g;False;t3_kvo24b;False;True;t3_kvo24b;/r/anime/comments/kvo24b/short_must_watch_anime/gizgl7g/;1610504098;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;">Izaya being an asshole the whole time - -One if the best I've seen until now ngl. - - - -***I-ZA-YAAAAAAAA***";False;False;;;;1610443636;;False;{};gizgrfd;True;t3_kvo5bq;False;True;t1_gizghz9;/r/anime/comments/kvo5bq/im_confused_about_durarara/gizgrfd/;1610504207;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jneapan;;MAL;[];;http://myanimelist.net/profile/jneapan;dark;text;t2_fqhal;False;False;[];;They're all connected, it just takes a while until you see it. Just enjoy the ride and don't worry about the little stuff. And remember Celty is best girl.;False;False;;;;1610443636;;False;{};gizgrfj;False;t3_kvo5bq;False;False;t3_kvo5bq;/r/anime/comments/kvo5bq/im_confused_about_durarara/gizgrfj/;1610504208;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;">Celty is best girl. - -That's the truth.";False;False;;;;1610443687;;False;{};gizgt83;True;t3_kvo5bq;False;True;t1_gizgrfj;/r/anime/comments/kvo5bq/im_confused_about_durarara/gizgt83/;1610504238;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GDW312;;;[];;;;text;t2_7mclpp14;False;False;[];;Some of these are popular but also enjoyable: The Mobile Suit Gundam Franchise, Area 88, Golgo 13, ACCA 13: Territory Inspection Dept, Azumanga Daioh, After School Dice Club, Cardfight Vanguard, Hellsing, Hellsing Ultimate, My Hero Academia, Ghost Hunt, Jormungand, Bungou Stray Dogs, Golden Kamuy, Astra Lost in Space, Special 7: Special Crime Investigation Unit, Arc the Lad, Yona of the Dawn, Zoids, also I know you've seen Legend of the Galactic Heroes but have you seen the remake they've done?;False;False;;;;1610443844;;False;{};gizgyxo;False;t3_kvo2yx;False;True;t3_kvo2yx;/r/anime/comments/kvo2yx/pls_help_me_find_an_anime_to_watch/gizgyxo/;1610504335;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;Please create an anime list. You can create one at either: Myanimelist.net, anilist.co, kitsu or anime-planet. All 4 are free and easy to use. Helps you remember what you've seen and helps us so we aren't suggesting you what you've seen already.;False;False;;;;1610444175;;False;{};gizhasp;False;t3_kvo2yx;False;True;t1_gizf5a6;/r/anime/comments/kvo2yx/pls_help_me_find_an_anime_to_watch/gizhasp/;1610504538;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;"I am going to watch Redo of Healer(Sadist PORN) - -and - -Jaku Chara (Reskineed Oregairu)";False;False;;;;1610444466;;False;{};gizhkwt;False;t3_kvnm7b;False;True;t3_kvnm7b;/r/anime/comments/kvnm7b/new_anime_i_should_be_looking_for_this_season/gizhkwt/;1610504713;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OrdinarySpirit-;;;[];;;;text;t2_890j9cfh;False;False;[];;"Alien as in Alien:Isolation? - -If so there's Lily C.A.T., an OVA that is heavily inspired by the original movie.";False;False;;;;1610444898;;False;{};gizhzzk;False;t3_kvo2ta;False;True;t3_kvo2ta;/r/anime/comments/kvo2ta/anime_like_the_alien_games/gizhzzk/;1610504977;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lizardking_10;;;[];;;;text;t2_7qfz1pss;False;False;[];;"What ever you didn’t like in Naruto are pretty much worse in Boruto. Most of the people love Boruto manga but for me the Anime just doesn’t cut it. 80% of them are fillers and whenever it goes to the manga it straight falls down to fillers. For personally I hate - -The animation. It makes me think I am watching a cartoon rather than an anime. - -The power scaling has gone nuts these days and if you continue to read the manga you’ll know why. - -No one gives a fuck about anyone other than Boruto, Sarada, Mitsuki and the OG Naruto characters. - -Side characters are shit. Its not as interesting as Naruto’s. - - -In short Boruto Anime is the victim of Naruto’s success.";False;False;;;;1610444980;;False;{};gizi2vy;False;t3_kvnfl8;False;True;t3_kvnfl8;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gizi2vy/;1610505027;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JasonUI08G;;;[];;;;text;t2_3ssx4oqw;False;False;[];;Yes alien isolation,thanks;False;False;;;;1610445053;;False;{};gizi5je;True;t3_kvo2ta;False;True;t1_gizhzzk;/r/anime/comments/kvo2ta/anime_like_the_alien_games/gizi5je/;1610505072;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610445115;;False;{};gizi7oe;False;t3_kvo2ta;False;True;t1_gizg4j8;/r/anime/comments/kvo2ta/anime_like_the_alien_games/gizi7oe/;1610505109;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sremcanin;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/mrkvaa;light;text;t2_4xt3dgl2;False;False;[];;"Made in Abyss - -The Promised Neverland - -Madoka Magica - -Konosuba - -Devilman: Crybaby - -Death Parade - -Violet Evergarden";False;False;;;;1610445236;;False;{};gizibuk;False;t3_kvo24b;False;True;t3_kvo24b;/r/anime/comments/kvo24b/short_must_watch_anime/gizibuk/;1610505181;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Promised neverland does have sorts of that kind of plot;False;False;;;;1610445429;;False;{};giziii4;False;t3_kvo2ta;False;False;t3_kvo2ta;/r/anime/comments/kvo2ta/anime_like_the_alien_games/giziii4/;1610505306;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RedemptionHollyleaf;;;[];;;;text;t2_1shupna9;False;False;[];;Technically it is cannon filler. You could skip a large majority of the anime original arcs and just watch the adapted stuff to still get the plot, which I recommend doing to anybody who wants to watch Boruto because the anime originals suck imo.;False;False;;;;1610446017;;False;{};gizj2ix;False;t3_kvnfl8;False;True;t1_gizeo7z;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gizj2ix/;1610505666;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;"Having a Bandage Wearhouse in Battles. - -The army simply doesn't have that luxury in any country.";False;False;;;;1610446025;;False;{};gizj2s0;False;t3_kvor4u;False;True;t3_kvor4u;/r/anime/comments/kvor4u/most_annoying_anime_tropecliche_that_you_want_to/gizj2s0/;1610505670;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok-Paleontologist275;;;[];;;;text;t2_80cd2xoa;False;False;[];;"Dude the way the manga is going they'll stop giving a fuck about sarada and mitsuki too - -It literally has every problem of late shippuden but magnified - -More aliens, more two rival duo chosen ones who get all the asspulls BS while the female lead is irrelevant, side characters don't even exist in the manga lmao, more powerups put of nowhere, more alien villains who basically have the bland aim of I'll suck the chakra from this planet and so on.";False;False;;;;1610446029;;False;{};gizj2wp;False;t3_kvnfl8;False;True;t1_gizi2vy;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gizj2wp/;1610505672;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JasonUI08G;;;[];;;;text;t2_3ssx4oqw;False;False;[];;I have seen it hehe;False;False;;;;1610446044;;False;{};gizj3fg;True;t3_kvo2ta;False;True;t1_giziii4;/r/anime/comments/kvo2ta/anime_like_the_alien_games/gizj3fg/;1610505683;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Anastasiasdad1;;;[];;;;text;t2_55vlxz7f;False;False;[];;TALENTLESS NANA;False;False;;;;1610446089;;False;{};gizj4zt;False;t3_kvo2yx;False;True;t3_kvo2yx;/r/anime/comments/kvo2yx/pls_help_me_find_an_anime_to_watch/gizj4zt/;1610505711;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cynderaquil;;;[];;;;text;t2_3hyccqum;False;False;[];;Maybe the amount of nose bleeds characters have. As fantastic as it was, One Piece’s Sanji’s nosebleed when they were on Fishman Island is absolutely ridiculous.;False;False;;;;1610446174;;False;{};gizj7xi;False;t3_kvor4u;False;False;t3_kvor4u;/r/anime/comments/kvor4u/most_annoying_anime_tropecliche_that_you_want_to/gizj7xi/;1610505765;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Lizardking_10;;;[];;;;text;t2_7qfz1pss;False;False;[];;So fucking true man. That’s the reason why I can’t be bothered with the anime. I just read the manga in couple of minutes and its over. The Anime is so lame. Its clearly following the trend of DBZ.;False;False;;;;1610446191;;False;{};gizj8k6;False;t3_kvnfl8;False;True;t1_gizj2wp;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gizj8k6/;1610505776;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;"Try watching something other than shonen - -Also I don't think I have problem with any tropes as long as they don't have annoying characters or bad writing";False;False;;;;1610446217;;False;{};gizj9gm;False;t3_kvor4u;False;True;t3_kvor4u;/r/anime/comments/kvor4u/most_annoying_anime_tropecliche_that_you_want_to/gizj9gm/;1610505791;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BI01;;;[];;;;text;t2_zl6tr;False;False;[];;its because the manga is realsed monthly which means the show is mostly fillers only now is chapter 16 or 17 whatever when kawakii is finally being introuduced in the anime. if it wasnt a weekly show and was a seasonal anime it would be so much better.;False;False;;;;1610446384;;False;{};gizjf7z;False;t3_kvnfl8;False;True;t3_kvnfl8;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gizjf7z/;1610505900;1;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;Not my favorite anime, but Code Geass could do without the unnecessary fanservice.;False;False;;;;1610446531;;False;{};gizjke3;False;t3_kvor4u;False;False;t3_kvor4u;/r/anime/comments/kvor4u/most_annoying_anime_tropecliche_that_you_want_to/gizjke3/;1610505992;8;True;False;anime;t5_2qh22;;0;[]; -[];;;blueteenight;;;[];;;;text;t2_11kek1;False;False;[];;It's not really my favorite one but it's up there: I really disliked how the comedy was handled in Your Lie in April, having those gags happen every time there's a serious moment just cheapened them for me.;False;False;;;;1610446834;;False;{};gizjuwu;False;t3_kvor4u;False;True;t3_kvor4u;/r/anime/comments/kvor4u/most_annoying_anime_tropecliche_that_you_want_to/gizjuwu/;1610506183;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi BallsyDeep89, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610446922;moderator;False;{};gizjy1u;False;t3_kvp3m7;False;True;t3_kvp3m7;/r/anime/comments/kvp3m7/can_you_recommend_any_harem_ecchi_anime_that_are/gizjy1u/;1610506243;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610446990;moderator;False;{};gizk0ib;False;t3_kvp43w;False;True;t3_kvp43w;/r/anime/comments/kvp43w/recommend_me_some_good_anime_movie_like/gizk0ib/;1610506288;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi kofffeeeee, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610446990;moderator;False;{};gizk0j3;False;t3_kvp43w;False;True;t3_kvp43w;/r/anime/comments/kvp43w/recommend_me_some_good_anime_movie_like/gizk0j3/;1610506288;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610447078;;False;{};gizk3ln;False;t3_kvp43w;False;True;t3_kvp43w;/r/anime/comments/kvp43w/recommend_me_some_good_anime_movie_like/gizk3ln/;1610506346;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Search up Makoto Shinkai, he's the director of Weathering with You and his other movies are also similar thematically. - -Not really a movie, but Violet Evergarden looks as beautiful as works by Makoto Shinkai.";False;False;;;;1610447168;;False;{};gizk6ry;False;t3_kvp43w;False;True;t3_kvp43w;/r/anime/comments/kvp43w/recommend_me_some_good_anime_movie_like/gizk6ry/;1610506411;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GDW312;;;[];;;;text;t2_7mclpp14;False;False;[];;Have you seen King of Thorns?;False;False;;;;1610447169;;False;{};gizk6to;False;t3_kvp43w;False;False;t3_kvp43w;/r/anime/comments/kvp43w/recommend_me_some_good_anime_movie_like/gizk6to/;1610506412;1;True;False;anime;t5_2qh22;;0;[]; -[];;;goodgrief-;;;[];;;;text;t2_4ugp50hb;False;False;[];;"If you liked Weathering With You, I’d recommend the rest of Makoto Shinkai’s films, like Your Name, ect.. - -The typical movies everyone recommends like A Silent Voice, or I Want To Eat Your Pancreas are good too. - -I’d give Studio Ghibli a try too, like Howl’s Moving Castle or Ponyo.";False;False;;;;1610447192;;False;{};gizk7mf;False;t3_kvp43w;False;True;t3_kvp43w;/r/anime/comments/kvp43w/recommend_me_some_good_anime_movie_like/gizk7mf/;1610506429;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok-Paleontologist275;;;[];;;;text;t2_80cd2xoa;False;False;[];;In fact contrary to popular opinion, I like the anime sometimes over the manga, it fleshes out the world and the characters, but having read the manga and knowing where it'll eventually lead to is a big dissapointment;False;False;;;;1610447248;;1610448401.0;{};gizk9mu;False;t3_kvnfl8;False;False;t1_gizj8k6;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gizk9mu/;1610506479;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Your name, silent voice, I want to eat your pancreas, maquia etc;False;False;;;;1610447268;;False;{};gizkach;False;t3_kvp43w;False;True;t3_kvp43w;/r/anime/comments/kvp43w/recommend_me_some_good_anime_movie_like/gizkach/;1610506491;1;True;False;anime;t5_2qh22;;0;[]; -[];;;meowlord69;;;[];;;;text;t2_58gh4ni9;False;False;[];;Deadman wonderland ,Saga of Tanya the evil (all on netflix);False;False;;;;1610447288;;False;{};gizkb1z;False;t3_kvo24b;False;False;t3_kvo24b;/r/anime/comments/kvo24b/short_must_watch_anime/gizkb1z/;1610506504;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610447295;moderator;False;{};gizkbb2;False;t3_kvp6f9;False;True;t3_kvp6f9;/r/anime/comments/kvp6f9/can_someone_give_me_their_funniest_anime_they_know/gizkbb2/;1610506509;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Kittymeter;;;[];;;;text;t2_7eijcj7l;False;False;[];;Little Witch and Nichijou;False;False;;;;1610447437;;False;{};gizkg7u;False;t3_kvp6f9;False;True;t3_kvp6f9;/r/anime/comments/kvp6f9/can_someone_give_me_their_funniest_anime_they_know/gizkg7u/;1610506597;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"A sister's all you need. - -The first 90 seconds of the show is one of the most cursed thing I've seen but after that it's super funny.";False;False;;;;1610447504;;False;{};gizkih5;False;t3_kvp6f9;False;True;t3_kvp6f9;/r/anime/comments/kvp6f9/can_someone_give_me_their_funniest_anime_they_know/gizkih5/;1610506641;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fusion1511;;;[];;;;text;t2_9g1ybzlg;False;False;[];;Yeah the anime originals are called anime canon. It's just a different way to say fillers lmao.;False;False;;;;1610447546;;False;{};gizkjyp;False;t3_kvnfl8;False;False;t1_gizj2ix;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gizkjyp/;1610506672;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;To love ru, yosuga no Sora, ishozuko reviewer, testament of little sisters, danmachi, so I can't play H, noucome;False;False;;;;1610447574;;False;{};gizkkz2;False;t3_kvp3m7;False;True;t3_kvp3m7;/r/anime/comments/kvp3m7/can_you_recommend_any_harem_ecchi_anime_that_are/gizkkz2/;1610506690;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Massaman95;;;[];;;;text;t2_zxb3m;False;False;[];;"Throwing in some golden oldies: - -[Cromartie High School](https://myanimelist.net/anime/114/Sakigake_Cromartie_Koukou) - -[Detroit Metal City](https://myanimelist.net/anime/3702/Detroit_Metal_City) - -They should never be forgotten.";False;False;;;;1610447630;;False;{};gizkmw6;False;t3_kvp6f9;False;False;t3_kvp6f9;/r/anime/comments/kvp6f9/can_someone_give_me_their_funniest_anime_they_know/gizkmw6/;1610506745;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kofffeeeee;;;[];;;;text;t2_99uc44ku;False;False;[];;Thanks for the response but I have watched all of these movies could you guys recommend so from the 2000s and forward?;False;False;;;;1610447716;;False;{};gizkpxw;True;t3_kvp43w;False;True;t3_kvp43w;/r/anime/comments/kvp43w/recommend_me_some_good_anime_movie_like/gizkpxw/;1610506800;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Nichijou and daily lives of highschool boys;False;False;;;;1610447750;;False;{};gizkr4j;False;t3_kvp6f9;False;True;t3_kvp6f9;/r/anime/comments/kvp6f9/can_someone_give_me_their_funniest_anime_they_know/gizkr4j/;1610506822;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sn0wHunterWing;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Sn0wHunterWing;light;text;t2_11orcg;False;False;[];;"Yuusha ni Narenakatta Ore wa Shibushibu Shuushoku wo Ketsui Shimashita - -Asobi ni Iku Yo! - -Keijo!!!!!!!! - -To Love-ru + sequels - -Tsugumomo - -Yuragi-sou no Yuuna-san - -They've all got a errr... healthy dose of ecchi and, at least in my opinion, either have some really likable, memorable characters or actual good story.";False;False;;;;1610447785;;False;{};gizkscf;False;t3_kvp3m7;False;True;t3_kvp3m7;/r/anime/comments/kvp3m7/can_you_recommend_any_harem_ecchi_anime_that_are/gizkscf/;1610506844;1;True;False;anime;t5_2qh22;;0;[]; -[];;;uahigh101;;;[];;;;text;t2_61dm9nxa;False;False;[];;Gintama;False;False;;;;1610447821;;False;{};gizktkf;False;t3_kvp6f9;False;False;t3_kvp6f9;/r/anime/comments/kvp6f9/can_someone_give_me_their_funniest_anime_they_know/gizktkf/;1610506865;7;True;False;anime;t5_2qh22;;0;[]; -[];;;InsomniaEmperor;;;[];;;;text;t2_5x68hmc4;False;False;[];;"Based on your list, you'll probably like Strike the Blood. - -I also recommend Yuuna and the Haunted Hot Springs for even wilder ecchi.";False;False;;;;1610447832;;False;{};gizktym;False;t3_kvp3m7;False;True;t3_kvp3m7;/r/anime/comments/kvp3m7/can_you_recommend_any_harem_ecchi_anime_that_are/gizktym/;1610506871;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BallsyDeep89;;;[];;;;text;t2_90al3plm;False;False;[];;i looked at it by the way is it finished?;False;False;;;;1610447891;;False;{};gizkw2l;True;t3_kvp3m7;False;True;t1_gizktym;/r/anime/comments/kvp3m7/can_you_recommend_any_harem_ecchi_anime_that_are/gizkw2l/;1610506909;1;True;False;anime;t5_2qh22;;0;[]; -[];;;keithohara;;;[];;;;text;t2_gbzf7q;False;True;[];;I hope so, because the show has way too much plot armour for the U.A students;False;False;;;;1610447989;;False;{};gizkzdv;False;t3_kvpb17;False;True;t3_kvpb17;/r/anime/comments/kvpb17/so_is_horikoshi_going_to_go_full_isayama_on_bnha/gizkzdv/;1610506965;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BallsyDeep89;;;[];;;;text;t2_90al3plm;False;False;[];;so i can’t play H is my favourite harem.;False;False;;;;1610448063;;False;{};gizl1zr;True;t3_kvp3m7;False;True;t1_gizkkz2;/r/anime/comments/kvp3m7/can_you_recommend_any_harem_ecchi_anime_that_are/gizl1zr/;1610507008;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;"The shota stuff in Dragon Maid - -I fucking love this anime but I can't bring myselt to defend that part";False;False;;;;1610448136;;False;{};gizl4hd;False;t3_kvor4u;False;False;t3_kvor4u;/r/anime/comments/kvor4u/most_annoying_anime_tropecliche_that_you_want_to/gizl4hd/;1610507053;5;True;False;anime;t5_2qh22;;0;[]; -[];;;InsomniaEmperor;;;[];;;;text;t2_5x68hmc4;False;False;[];;"Strike the Blood still has OVAs releasing. To describe it briefly, it has the action and being plot heavy of Tokyo Ravens and harem ecchi comedy of Date A Live if you're into that. - -Yuuna sadly is unlikely to get a season 2. The anime barely covers the overall plot and you'd have to read the manga to even get started on the plot but it's a must watch if you love harem ecchi comedy.";False;False;;;;1610448174;;False;{};gizl5vs;False;t3_kvp3m7;False;True;t1_gizkw2l;/r/anime/comments/kvp3m7/can_you_recommend_any_harem_ecchi_anime_that_are/gizl5vs/;1610507080;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BallsyDeep89;;;[];;;;text;t2_90al3plm;False;False;[];;true, but i already watched tsugumomo (dropped) and Yuragi-sou no Yuuna-san. btw thanks for the recommendation;False;False;;;;1610448236;;False;{};gizl83v;True;t3_kvp3m7;False;True;t1_gizkscf;/r/anime/comments/kvp3m7/can_you_recommend_any_harem_ecchi_anime_that_are/gizl83v/;1610507118;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610448292;moderator;False;{};gizla3k;False;t3_kvpdz6;False;True;t3_kvpdz6;/r/anime/comments/kvpdz6/please_help_me_find_it/gizla3k/;1610507153;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;I’ve watch many comedy anime but very few could make me laugh like [Saiki K](https://myanimelist.net/anime/33255/Saiki_Kusuo_no_%CE%A8-nan) did;False;False;;;;1610448314;;False;{};gizlawc;False;t3_kvp6f9;False;True;t3_kvp6f9;/r/anime/comments/kvp6f9/can_someone_give_me_their_funniest_anime_they_know/gizlawc/;1610507167;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rne9k;;;[];;;;text;t2_6ka7e32p;False;False;[];;Cheap deaths and crybait.;False;False;;;;1610448339;;False;{};gizlbtl;False;t3_kvor4u;False;True;t3_kvor4u;/r/anime/comments/kvor4u/most_annoying_anime_tropecliche_that_you_want_to/gizlbtl/;1610507185;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lightningforanimes;;;[];;;;text;t2_7kejlzwn;False;False;[];;Familiar of zero. You will experience the most painful stomach pains. And after that Konosuba;False;False;;;;1610448404;;False;{};gizle5y;False;t3_kvp6f9;False;True;t3_kvp6f9;/r/anime/comments/kvp6f9/can_someone_give_me_their_funniest_anime_they_know/gizle5y/;1610507227;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;r/manga;False;False;;;;1610448503;;False;{};gizlhon;False;t3_kvpdz6;False;True;t3_kvpdz6;/r/anime/comments/kvpdz6/please_help_me_find_it/gizlhon/;1610507288;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sujallamichhaneakasl;;;[];;;;text;t2_3i2s1kbj;False;False;[];;Remember the time Levi didn't fight for an entire season cause his ankle got twisted......;False;False;;;;1610448541;;False;{};gizlj18;False;t3_kvor4u;False;True;t3_kvor4u;/r/anime/comments/kvor4u/most_annoying_anime_tropecliche_that_you_want_to/gizlj18/;1610507311;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610448896;moderator;False;{};gizlvvm;False;t3_kvpiig;False;True;t3_kvpiig;/r/anime/comments/kvpiig/i_need_help_regarding_violet_evergarden/gizlvvm/;1610507543;1;False;False;anime;t5_2qh22;;0;[]; -[];;;BearbertDondarrion;;;[];;;;text;t2_30hjvye;False;False;[];;"Both anime and manga were designed to run concurrently. So no, the fifty episodes are not filler and are indeed canon. Boruto the anime is not an adaptation of the manga. Both the manga and the anime form the canon together in this case. - -I’m not making a case that Boruto is good. But what you are saying is misusing the words. I wish people would actually learn what those words mean";False;False;;;;1610448911;;False;{};gizlwfy;False;t3_kvnfl8;False;True;t1_gizckbq;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gizlwfy/;1610507553;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;There exists two movies of violet evergarden one is a sequel and another is just a side story not important to the story;False;False;;;;1610449062;;False;{};gizm20k;False;t3_kvpiig;False;True;t3_kvpiig;/r/anime/comments/kvpiig/i_need_help_regarding_violet_evergarden/gizm20k/;1610507649;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;" - -[Violet Evergarden](https://myanimelist.net/anime/33352) Episode 1-4 -> [Violet Evergarden: Kitto ""Ai"" wo Shiru Hi ga Kuru no Darou](https://myanimelist.net/anime/37095) \-> [Violet Evergarden](https://myanimelist.net/anime/33352) Episode 5-13 -> [Gaiden OVA](https://myanimelist.net/anime/39741/Violet_Evergarden_Gaiden__Eien_to_Jidou_Shuki_Ningyou) \-> [Violet Evergarden Movie](https://myanimelist.net/anime/37987/Violet_Evergarden_Movie). - -Special is unaired episode included with 4th BD/DVD release. It takes place between episodes 4 and 5 of the show.";False;False;;;;1610449075;;False;{};gizm2hf;False;t3_kvpiig;False;True;t3_kvpiig;/r/anime/comments/kvpiig/i_need_help_regarding_violet_evergarden/gizm2hf/;1610507657;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;"In air order -S1> s2 > S3, probably";False;False;;;;1610449156;;False;{};gizm5ja;False;t3_kvpjhh;False;False;t3_kvpjhh;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gizm5ja/;1610507711;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Code geass if you like Giant robots, mind games, and political battles. - -Steins gate if you're fine with a show with a slow start and time travel. - -Evangelion if you like a dark story that deals with the psychological effects of piloting mechas. - -Attack on titan if you like mystery, action, and thrillers.";False;False;;;;1610449231;;False;{};gizm89v;False;t3_kvpjhh;False;False;t3_kvpjhh;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gizm89v/;1610507759;6;True;False;anime;t5_2qh22;;0;[]; -[];;;JxckSmith;;;[];;;;text;t2_t4mdn;False;False;[];;I’d say whichever you want, you could always leave AOT until last to give more time for the current season to air;False;False;;;;1610449256;;False;{};gizm97g;False;t3_kvpjhh;False;True;t3_kvpjhh;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gizm97g/;1610507776;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sn0wHunterWing;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Sn0wHunterWing;light;text;t2_11orcg;False;False;[];;Ah, forgot to check the other parts of the list, my bad! Hopefully you find something good out of the rest though!;False;False;;;;1610449307;;False;{};gizmb29;False;t3_kvp3m7;False;True;t1_gizl83v;/r/anime/comments/kvp3m7/can_you_recommend_any_harem_ecchi_anime_that_are/gizmb29/;1610507807;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jhjjhh;;;[];;;;text;t2_22kwq4wf;False;False;[];;Beach episodes are boring.;False;False;;;;1610449448;;False;{};gizmg7m;False;t3_kvor4u;False;True;t3_kvor4u;/r/anime/comments/kvor4u/most_annoying_anime_tropecliche_that_you_want_to/gizmg7m/;1610507895;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"# Source Material Corner - -Reply to this comment for any source-related discussion, future spoilers (including future characters, events and general hype about future content), comparison of the anime adaptation to the original, or just general talk about the source material. **You are still required to tag all spoilers.** Discussions about the source outside of this comment tree will be removed, and replying with spoilers outside of the source corner will lead to bans. - -The spoiler syntax is: -`[Spoiler source](/s ""Spoiler goes here"")` - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610449522;moderator;False;{};gizmj05;False;t3_kvpnm4;False;True;t3_kvpnm4;/r/anime/comments/kvpnm4/shadowverse_episode_38_discussion/gizmj05/;1610507942;1;False;True;anime;t5_2qh22;;0;[]; -[];;;Cyclone_96;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CrazyCyclone96;light;text;t2_es52y62;False;False;[];;He meant out of those anime, which order should he watch them in;False;False;;;;1610449820;;False;{};gizmu6v;False;t3_kvpjhh;False;True;t1_gizm5ja;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gizmu6v/;1610508133;0;True;False;anime;t5_2qh22;;0;[]; -[];;;fraid_so;;;[];;;;text;t2_oeyx4;False;False;[];;D-Frag was pretty good.;False;False;;;;1610449888;;False;{};gizmwqd;False;t3_kvp6f9;False;True;t3_kvp6f9;/r/anime/comments/kvp6f9/can_someone_give_me_their_funniest_anime_they_know/gizmwqd/;1610508178;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EternalXcalibur;;;[];;;;text;t2_1w310c;False;False;[];;No season 2 but at least it's not a stage play. I can enjoy this along with D4DJ's mini anime.;False;False;;;;1610449899;;False;{};gizmx5m;False;t3_kvpoo2;False;False;t3_kvpoo2;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gizmx5m/;1610508185;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Even in chibi form their thighs are huge, the industry has to hire that character designer for more shows in the genre;False;False;;;;1610449984;;False;{};gizn0ex;False;t3_kvpoo2;False;False;t3_kvpoo2;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gizn0ex/;1610508239;45;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610450116;;False;{};gizn5es;False;t3_kvp6f9;False;True;t3_kvp6f9;/r/anime/comments/kvp6f9/can_someone_give_me_their_funniest_anime_they_know/gizn5es/;1610508330;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Elixir_Tree_9290, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610450116;moderator;False;{};gizn5fh;False;t3_kvp6f9;False;True;t1_gizn5es;/r/anime/comments/kvp6f9/can_someone_give_me_their_funniest_anime_they_know/gizn5fh/;1610508330;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Elixir_Tree_9290;;;[];;;;text;t2_6wpbn0p2;False;False;[];;Grand Blue Dreaming. One of the **Best Comedy!**;False;False;;;;1610450155;;False;{};gizn6vw;False;t3_kvp6f9;False;True;t3_kvp6f9;/r/anime/comments/kvp6f9/can_someone_give_me_their_funniest_anime_they_know/gizn6vw/;1610508356;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610450354;;False;{};gizne65;False;t3_kvpjhh;False;True;t3_kvpjhh;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gizne65/;1610508483;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;And Sword Art Online if you want an action show, and a harem.;False;False;;;;1610450374;;False;{};giznez4;False;t3_kvpjhh;False;True;t1_gizm89v;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/giznez4/;1610508497;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Winduzrael;;;[];;;;text;t2_4s5jlqb6;False;False;[];;What would be the shortest versus the longest?;False;False;;;;1610450408;;False;{};gizng88;True;t3_kvpjhh;False;True;t1_gizne65;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gizng88/;1610508519;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610450462;moderator;False;{};gizniaj;False;t3_kvpuv9;False;True;t3_kvpuv9;/r/anime/comments/kvpuv9/konichiwa_i_need_some_anime_like_tensei_shitara/gizniaj/;1610508560;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610450640;;False;{};giznowy;False;t3_kvpjhh;False;False;t1_gizng88;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/giznowy/;1610508685;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Winduzrael;;;[];;;;text;t2_4s5jlqb6;False;False;[];;Thanks I will start with those!;False;False;;;;1610450691;;False;{};giznquu;True;t3_kvpjhh;False;True;t1_giznowy;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/giznquu/;1610508724;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_JurI_;;;[];;;;text;t2_371f7khi;False;False;[];;Hinamatsuri;False;False;;;;1610450697;;False;{};giznr3k;False;t3_kvp6f9;False;True;t3_kvp6f9;/r/anime/comments/kvp6f9/can_someone_give_me_their_funniest_anime_they_know/giznr3k/;1610508729;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ancient_Ad6120;;;[];;;;text;t2_4dplorxg;False;False;[];;The fact that sanji’s nosebleeds are more than just comedic relief, like how they literally put his life in danger, actually stupid.;False;False;;;;1610450736;;False;{};giznsiq;False;t3_kvor4u;False;True;t3_kvor4u;/r/anime/comments/kvor4u/most_annoying_anime_tropecliche_that_you_want_to/giznsiq/;1610508753;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TravisScotch--;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/TravisScotch/;light;text;t2_7fexh1u7;False;False;[];;Season 2 is out today. Hype train! I don’t think there is another nation building anime.;False;False;;;;1610450739;;False;{};giznso9;False;t3_kvpuv9;False;True;t3_kvpuv9;/r/anime/comments/kvpuv9/konichiwa_i_need_some_anime_like_tensei_shitara/giznso9/;1610508755;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Just delete the uninspired flow breaking Tamaki fanservice from Fire Force and it might end up in my Top 10 due to the direction and production value;False;False;;;;1610450964;;False;{};gizo13r;False;t3_kvor4u;False;False;t3_kvor4u;/r/anime/comments/kvor4u/most_annoying_anime_tropecliche_that_you_want_to/gizo13r/;1610508919;4;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> Having a Bandage Wearhouse in Battles. - -a what?";False;False;;;;1610450989;;False;{};gizo22a;False;t3_kvor4u;False;True;t1_gizj2s0;/r/anime/comments/kvor4u/most_annoying_anime_tropecliche_that_you_want_to/gizo22a/;1610508937;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"# Source Material Corner - -Reply to this comment for any source-related discussion, future spoilers (including future characters, events and general hype about future content), comparison of the anime adaptation to the original, or just general talk about the source material. **You are still required to tag all spoilers.** Discussions about the source outside of this comment tree will be removed, and replying with spoilers outside of the source corner will lead to bans. - -The spoiler syntax is: -`[Spoiler source](/s ""Spoiler goes here"")` - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610451040;moderator;False;{};gizo43y;False;t3_kvpz6g;False;True;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizo43y/;1610508972;1;False;True;anime;t5_2qh22;;0;[]; -[];;;SpadonyX;;;[];;;;text;t2_1za507w3;False;False;[];;I recommend By the grace of the gods;False;False;;;;1610451215;;False;{};gizoaqs;False;t3_kvpuv9;False;False;t3_kvpuv9;/r/anime/comments/kvpuv9/konichiwa_i_need_some_anime_like_tensei_shitara/gizoaqs/;1610509091;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SpadonyX;;;[];;;;text;t2_1za507w3;False;False;[];;"Konosuba -Isekai Quartet";False;False;;;;1610451310;;False;{};gizoec3;False;t3_kvp6f9;False;True;t3_kvp6f9;/r/anime/comments/kvp6f9/can_someone_give_me_their_funniest_anime_they_know/gizoec3/;1610509157;3;True;False;anime;t5_2qh22;;0;[]; -[];;;xxXMrDarknessXxx;;;[];;;;text;t2_1xjq9ufd;False;False;[];;I have a question. Why should I care about anyone other than Boruto, Sarada and Mitsuki though? It's a monthly publication, with only so many pages. It seems to me like it didn't want to inflate the main cast so much like Naruto did, so the mangaka kept it down to them. Besides, it does revolve around Boruto and his story, so I fail to see why it's bad that it concentrates on the main protagonists and antagonists. I don't want to waste chapters just to look at what Shikidai and friends are doing.;False;False;;;;1610451352;;False;{};gizofxm;True;t3_kvnfl8;False;True;t1_gizi2vy;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gizofxm/;1610509184;2;True;False;anime;t5_2qh22;;0;[]; -[];;;xxXMrDarknessXxx;;;[];;;;text;t2_1xjq9ufd;False;False;[];;"Unless I've misread anything, Sarada isn't irrelevant... Nor is she a live interest, and if she is, it hasn't stopped her from being a good character. I'm on chapter 31 though, so maybe I'm out of date. - -Edit: also, how are Sasuke and Naruto jobbing and nerfed? Also, Sarada and bos Sakura are very different. I cannot stress how different they are";False;False;;;;1610451532;;False;{};gizomx6;True;t3_kvnfl8;False;False;t1_gize0fi;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gizomx6/;1610509303;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ezr1n_;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ezr1n_;light;text;t2_6p0i529t;False;False;[];;Phew that was epic;False;False;;;;1610451625;;False;{};gizoql3;False;t3_kvpz6g;False;True;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizoql3/;1610509367;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610451721;;False;{};gizoua7;False;t3_kvpz6g;False;True;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizoua7/;1610509429;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Fiirenz;;;[];;;;text;t2_10wfdv;False;False;[];;"First of all, the content you will be able to find on each platform depends on which country you are watching it from - -Plus, take in mind that your question is basically like asking: Which Hollywood movie should I start watching? Give us some hints about what do you like";False;False;;;;1610451868;;1610452068.0;{};gizozwl;False;t3_kvq1a6;False;False;t3_kvq1a6;/r/anime/comments/kvq1a6/yo_guys_i_have_a_question_what_anime_should_i/gizozwl/;1610509526;5;True;False;anime;t5_2qh22;;0;[]; -[];;;GMorelli;;;[];;;;text;t2_13n5gj;False;False;[];;Asobi Asobase is the funniest comedy I have seen;False;False;;;;1610451921;;False;{};gizp1xx;False;t3_kvp6f9;False;True;t3_kvp6f9;/r/anime/comments/kvp6f9/can_someone_give_me_their_funniest_anime_they_know/gizp1xx/;1610509563;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Primate541;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Primate541;light;text;t2_7tqo4;False;False;[];;"Code Geass, Steins;Gate and Attack on Titan are all excellent shows, just watch them depending on what interests you most. Evangelion you can probably leave for afterwards; it's an important and influential show in terms of the history of anime but that doesn't translate to being universally appealling to modern audiences. As for Sword Art Online, I've never understood its appeal. Others might be able to recommend it, but I'll tell you it's the odd one out on your list.";False;False;;;;1610452001;;False;{};gizp51i;False;t3_kvpjhh;False;True;t3_kvpjhh;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gizp51i/;1610509618;3;True;False;anime;t5_2qh22;;0;[]; -[];;;demonlpravda;;;[];;;;text;t2_106s4ua;False;False;[];;Charmy is based on Tabata's wife. This form of Charmy was probably inspired by Mrs Tabata when she was pregnant with their daughter.;False;False;;;;1610452308;;False;{};gizpha1;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizpha1/;1610509832;167;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610452324;moderator;False;{};gizphxl;False;t3_kvq8ty;False;True;t3_kvq8ty;/r/anime/comments/kvq8ty/looking_for_a_specific_anime_anime_with_a_girl/gizphxl/;1610509844;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Ok-Paleontologist275;;;[];;;;text;t2_80cd2xoa;False;False;[];;"Did you miss her biting her glasses half naked in her room for boruto and being pushed into a love triangle with sumire? - -Also, she doesn't have the Karma, not any otsutsuki powerups to keep up with the boys exactly like Sakura, and she's irrelevant in the otsutsuki narrative, they both are the chosen ones and the story is completely focused around them - -If you're on chapter 31 She will get a cool moment ten chapters later but is out shined and she's been missing from the manga, not even a single appearance for a year now. - ->>and if she is, it hasn't stopped her from being a good character - -She's supposed to be hokage and yet she doesn't get any focus or relevance, and if you're on chapter 31 she's barely a character in the first place lol - -She has no narrative and falls behind every uchiha so far - ->>Edit: also, how are Sasuke and Naruto jobbing and nerfed? - -All I'll say is read ahead till chapter 53 and you'll know. Sasuke is downright pathetic in the last couple of chapters. It's only b and k focused";False;False;;;;1610452342;;1610453003.0;{};gizpimg;False;t3_kvnfl8;False;True;t1_gizomx6;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gizpimg/;1610509856;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Attack on titan and Death note are two of the animes recommended most to beginners so defintley watch those;False;False;;;;1610452516;;False;{};gizpplh;False;t3_kvq1a6;False;True;t3_kvq1a6;/r/anime/comments/kvq1a6/yo_guys_i_have_a_question_what_anime_should_i/gizpplh/;1610509978;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nixonhawk;;;[];;;;text;t2_98f8jg6b;False;False;[];;Me personally I would like to start with aot as I like action animes better and it has a lot of twists too;False;False;;;;1610452658;;False;{};gizpv53;False;t3_kvpjhh;False;True;t3_kvpjhh;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gizpv53/;1610510081;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Stranger_in_the_mist;;;[];;;;text;t2_8180ocoz;False;False;[];;Was a decent episode, the calm before the storm...;False;False;;;;1610452693;;False;{};gizpwjf;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizpwjf/;1610510107;59;True;False;anime;t5_2qh22;;0;[]; -[];;;bakermarchfield;;;[];;;;text;t2_1e0e96xi;False;True;[];;"So relationship dump and info dump. Biggest surprise was almost Nero using Asta as a couch. Loropechika not realizing Gaja is a simp is I guess pretty on point. - - -We got a bath scene and the most lewd part of this episode was rill's drawing.";False;False;;;;1610452822;;False;{};gizq1te;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizq1te/;1610510199;53;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;You should start with Attack on titan imo and catch up so you can join the current discussions on the finale season, or if you can't wait a week for an episode then watch any of the other 3 you listed till AOT finishes airing;False;False;;;;1610452874;;False;{};gizq3ws;False;t3_kvpjhh;False;True;t3_kvpjhh;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gizq3ws/;1610510238;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Winduzrael;;;[];;;;text;t2_4s5jlqb6;False;False;[];;Thanks, this exactly what I thought.;False;False;;;;1610452893;;False;{};gizq4pg;True;t3_kvpjhh;False;True;t1_gizp51i;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gizq4pg/;1610510251;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PresidentNathan;;;[];;;;text;t2_139jqw;False;False;[];;"Nice little reprieve to set up more character development, I always do appreciate some of the more comical moments in this show. Also we are going to be seeing a lot of cliffhangers I suspect in the next few weeks ;)";False;False;;;;1610452945;;False;{};gizq6sg;False;t3_kvpz6g;False;True;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizq6sg/;1610510287;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FireRifle64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FireRifle64;light;text;t2_29fr8mww;False;False;[];;I don't think the outside world was very generic. If anything, it seemed to be more realistic because of a similar incident in our History called the Holocaust. When I first watched AoT back in like 2013-2014, I was so curious to know where the Titans came from and then having it be revealed that the outside world essentially views them as evil and proceeds to perform inhumane actions like what happened to the Jews in Germany.;False;False;;;;1610452959;;False;{};gizq79v;False;t3_kvq0mr;False;True;t3_kvq0mr;/r/anime/comments/kvq0mr/help_me_make_swot_analysis_of_aot/gizq79v/;1610510296;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi SonAnka, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610452992;moderator;False;{};gizq8lc;False;t3_kvqeau;False;True;t3_kvqeau;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizq8lc/;1610510320;1;False;False;anime;t5_2qh22;;0;[]; -[];;;won_hallyu;;;[];;;;text;t2_16wnuv;False;False;[];;if what the man said is true then that explains why Yuno has a vast amount of mana just like the royals in clover kingdom. He's really born with it. Then where did Asta came from? since it seems both were left at the church in the beginning...;False;False;;;;1610453003;;False;{};gizq91a;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizq91a/;1610510328;128;True;False;anime;t5_2qh22;;0;[]; -[];;;IGotAMassiveClock;;;[];;;;text;t2_99fajw25;False;False;[];;Prison School by a mile;False;False;;;;1610453074;;False;{};gizqc0c;False;t3_kvp6f9;False;False;t3_kvp6f9;/r/anime/comments/kvp6f9/can_someone_give_me_their_funniest_anime_they_know/gizqc0c/;1610510379;1;True;False;anime;t5_2qh22;;0;[]; -[];;;elisaort;;;[];;;;text;t2_so4gx;False;False;[];;Episode was fine. The resource for the next episodes must come from somewhere :);False;False;;;;1610453166;;False;{};gizqfur;False;t3_kvpz6g;False;True;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizqfur/;1610510445;0;True;False;anime;t5_2qh22;;0;[]; -[];;;LittleWompRat;;;[];;;;text;t2_54bxq18h;False;False;[];;Watch Attack On Titan first and catch up to the latest episode so you can witness the history alongside us.;False;False;;;;1610453206;;False;{};gizqhk8;False;t3_kvpjhh;False;False;t3_kvpjhh;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gizqhk8/;1610510474;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Kekkai sensen is kind of supernatural with powerful mc and lot of fights . And I guess Tokyo ghoul;False;False;;;;1610453219;;False;{};gizqi3p;False;t3_kvqeau;False;False;t3_kvqeau;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizqi3p/;1610510484;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Winduzrael;;;[];;;;text;t2_4s5jlqb6;False;False;[];;Seems like a solid plan;False;False;;;;1610453253;;False;{};gizqjgw;True;t3_kvpjhh;False;True;t1_gizqhk8;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gizqjgw/;1610510506;3;True;False;anime;t5_2qh22;;0;[]; -[];;;R0han09;;;[];;;;text;t2_89geokey;False;False;[];;Yuno sama;False;False;;;;1610453273;;False;{};gizqk99;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizqk99/;1610510519;5;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;"honestly I'm glad it's not just action. -some episodes have made history, not for the action, but for what happens. -same example episode 5 of that day ago, entered history, without even a fight, and with dialogues that were absurd. -this makes attack on titan gorgeous";False;False;;;;1610453301;;False;{};gizqlbg;False;t3_kvq0mr;False;True;t3_kvq0mr;/r/anime/comments/kvq0mr/help_me_make_swot_analysis_of_aot/gizqlbg/;1610510538;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FuddyBoi;;;[];;;;text;t2_5u37ks92;False;False;[];;" No dii I don’t get too far into boruto and while naruto took a bit to get me I was interested. -I find boruto too samey, the characters seem to have the same skills as parents but where the naruto cast had to develop these kids have it. -Similar to the dbz where the kids go ss but nothing really happens, boruto these kids have these war winning skills for daily use. I got no sense of real struggle and as said previously a focus on a few main characters and no village development. - -Again didn’t get far into boruto so could easily missed something but took too long";False;False;;;;1610453372;;False;{};gizqo6a;False;t3_kvnfl8;False;True;t3_kvnfl8;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gizqo6a/;1610510586;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;Howdy folks! Thought this might be a fun little game to put together. Had considered something similar a ways back, and after seeing the [“My favorite shonen is too gritty, serious, and philosophical to be considered Shonen!”](https://www.reddit.com/r/anime/comments/kidb5w) thread I figured it’d be topical. I’ve triple checked these, so I don’t think there should be any mistakes. But if something looks wrong please feel free to let me know!;False;False;;;;1610453407;;False;{};gizqpkc;True;t3_kvqhm5;False;False;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gizqpkc/;1610510611;17;True;False;anime;t5_2qh22;;0;[]; -[];;;VideoGamesForU;;;[];;;;text;t2_iyc44;False;False;[];;So with the latest episode titles does anyone know if the anime will take a break soon (April)? Anime will catch up in the next 10 episodes now.;False;False;;;;1610453434;;False;{};gizqqom;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizqqom/;1610510630;35;True;False;anime;t5_2qh22;;0;[]; -[];;;MidKoi;;;[];;;;text;t2_n2pno;False;False;[];;On that day, mankind received a grim reminder. We lived in fear of the ~~Titans~~ Big Charmgus;False;False;;;;1610453448;;False;{};gizqra2;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizqra2/;1610510640;22;True;False;anime;t5_2qh22;;0;[]; -[];;;citatel;;MAL;[];;https://myanimelist.net/animelist/citatel;dark;text;t2_qtrfe;False;False;[];;Dororo is a good one out there.;False;False;;;;1610453453;;False;{};gizqrj8;False;t3_kvqeau;False;True;t3_kvqeau;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizqrj8/;1610510644;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BI01;;;[];;;;text;t2_zl6tr;False;False;[];;one punch man, god of high school, kill la kill as well but thats a female mc;False;False;;;;1610453494;;False;{};gizqt8v;False;t3_kvqeau;False;True;t3_kvqeau;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizqt8v/;1610510673;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SonAnka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SonAnka;light;text;t2_4bv8n52s;False;False;[];;Already watched and it was pretty good (But actualy its not supernatural you know? MC wasnt guy with superpowers);False;False;;;;1610453506;;False;{};gizqtqf;True;t3_kvqeau;False;True;t1_gizqrj8;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizqtqf/;1610510682;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Stranger_in_the_mist;;;[];;;;text;t2_8180ocoz;False;False;[];;Lol, the censorship won (╥﹏╥).;False;False;;;;1610453521;;False;{};gizqudm;False;t3_kvpz6g;False;False;t1_gizq1te;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizqudm/;1610510693;29;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;"* [Chonky Charmy Stitch](https://i.imgur.com/ajjt9sH.jpg) - -The girls' reaction [when Loropechika asked them who's dating Asta](https://i.imgur.com/pttD1xl.png) is just hilarious! Noelle diving down to avoid the question, Mimosa too stunned to say anything, and Nero is just like [""I'm only interested in his head"".](https://i.imgur.com/psmwqAy.png) Poor Gaja though! [Looks like Loropechika doesn't see anything happening between the two of them.](https://i.imgur.com/bo3lmRK.png) - -While it's already been shown in the OP, Charmy's been eating so much Heart Kingdom food that [she's become massive](https://i.imgur.com/dYkic4Q.png) and Potrof has started to slightly regret [what he has turned Charmy into.](https://i.imgur.com/4tuW9uZ.png) On the bright side though, Charmy becoming more and more unstoppable is a win for the Clover Kingdom once shit goes down with the Spade. - - -[And we finally get to know what Yuno is.](https://i.imgur.com/M7f5qG3.png) He's not just a noble from the Spade Kingdom but he is the Spade Kingdom's prince.";False;False;;;;1610453554;;False;{};gizqvpc;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizqvpc/;1610510715;33;True;False;anime;t5_2qh22;;0;[]; -[];;;SonAnka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SonAnka;light;text;t2_4bv8n52s;False;False;[];;I have read second season was to much side characters based and not give enough screen time to main character. Is it wrong?;False;False;;;;1610453613;;False;{};gizqy5z;True;t3_kvqeau;False;True;t1_gizqi3p;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizqy5z/;1610510757;1;True;False;anime;t5_2qh22;;0;[]; -[];;;the_guradian;;;[];;;;text;t2_qn0ge;False;False;[];;Not really;False;False;;;;1610453619;;False;{};gizqyeg;False;t3_kvpz6g;False;True;t1_gizqqom;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizqyeg/;1610510761;0;True;False;anime;t5_2qh22;;0;[]; -[];;;_zootgeist;;;[];;;;text;t2_85o9nuxg;False;False;[];;Jujutsu Kaisen, My Hero Academia ??;False;False;;;;1610453638;;False;{};gizqz6y;False;t3_kvqeau;False;True;t3_kvqeau;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizqz6y/;1610510774;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SonAnka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SonAnka;light;text;t2_4bv8n52s;False;False;[];;Watched 3x time, watched 1x, watched 1x again.;False;False;;;;1610453645;;False;{};gizqzio;True;t3_kvqeau;False;False;t1_gizqt8v;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizqzio/;1610510779;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SonAnka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SonAnka;light;text;t2_4bv8n52s;False;False;[];;I'm not up to date watcher so im waiting that serie end. Im following i do like it and i have good hopes but its still not finished. And i have watched all seasons, movies etc boku no hero academia.;False;False;;;;1610453731;;False;{};gizr324;True;t3_kvqeau;False;True;t1_gizqz6y;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizr324/;1610510842;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Tbh other characters progression is always there and there is still much mc and even the last arc was full mc arc and S2 was better than 1;False;False;;;;1610453732;;False;{};gizr33b;False;t3_kvqeau;False;True;t1_gizqy5z;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizr33b/;1610510842;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;It's a completely different mc than you think;False;False;;;;1610453759;;False;{};gizr470;False;t3_kvqeau;False;True;t1_gizqy5z;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizr470/;1610510861;1;True;False;anime;t5_2qh22;;0;[]; -[];;;the_guradian;;;[];;;;text;t2_qn0ge;False;False;[];;"Nice downer calm ep. Really enjoyed the bath scene with the relationship tease (if you guys want the fanservice version go peep the manga). - -Charmy has become a menace LMAO - -Yuno being some sort of prince was expected honestly. It will be interesting to see how he deals with this.";False;False;;;;1610453763;;False;{};gizr4d3;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizr4d3/;1610510864;17;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610453843;;False;{};gizr7tw;False;t3_kvqeau;False;True;t3_kvqeau;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizr7tw/;1610510925;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_zootgeist;;;[];;;;text;t2_85o9nuxg;False;False;[];;Yeah that’s fair enough, its been sick so far right !! Have you watched Naruto ??;False;False;;;;1610453871;;False;{};gizr90h;False;t3_kvqeau;False;True;t1_gizr324;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizr90h/;1610510945;1;True;False;anime;t5_2qh22;;0;[]; -[];;;InsomniaEmperor;;;[];;;;text;t2_5x68hmc4;False;False;[];;Best news I've heard all day. Summer is already looking thicc with I'm Standing On A Million Lives Season 2 and more Assault Lily. Though I wonder why this is a mini anime and what makes it different.;False;False;;;;1610453892;;False;{};gizr9yk;False;t3_kvpoo2;False;False;t3_kvpoo2;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gizr9yk/;1610510961;8;True;False;anime;t5_2qh22;;0;[]; -[];;;SonAnka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SonAnka;light;text;t2_4bv8n52s;False;False;[];;What you mean?;False;False;;;;1610453929;;False;{};gizrbjf;True;t3_kvqeau;False;True;t1_gizr470;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizrbjf/;1610510988;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SonAnka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SonAnka;light;text;t2_4bv8n52s;False;False;[];;Yep i have watched severel times aswell :D;False;False;;;;1610453943;;False;{};gizrc41;True;t3_kvqeau;False;True;t1_gizr90h;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizrc41/;1610510998;1;True;False;anime;t5_2qh22;;0;[]; -[];;;myrmonden;;;[];;;;text;t2_f0rs6;False;False;[];;" You can´t be serious YUNO A PRINCE AGAIN !?!?!? of course he is the son of the fallen spade king, something like, maybe Asta parent is from the Spade as well than. - - Anyway, Charmy vs Asta and Rill. Who does not Charmy going all Godzilla destroying the heart kingdom in her desire to consume all their food. - -Super fat charmy is more swoll then asta. My guess is that in her next battle she will of course use her dwarf powers an slim down again. - - Charmception at petit clover when Rill used her stomach to paint a charmy on charmy :)";False;False;;;;1610453993;;False;{};gizre8u;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizre8u/;1610511034;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Yes there is great fights but our mc doesn't want to hurt other and only uses power to save others;False;False;;;;1610454003;;False;{};gizrenm;False;t3_kvqeau;False;True;t1_gizrbjf;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizrenm/;1610511041;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;A robot's shelf life expires! Oh no! Anyway...;False;False;;;;1610454013;;False;{};gizrf2x;False;t3_kvqlzy;False;True;t3_kvqlzy;/r/anime/comments/kvqlzy/my_first_time_watching_plastic_memories/gizrf2x/;1610511049;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Miidas-92;;MAL;[];;https://myanimelist.net/profile/Miidas;dark;text;t2_ja1jx;False;False;[];;"Fun test. - -Got 45/60, started pretty easy, but lots of anime I've not seen further down, so had to guess based on the picture. - -Missed some I have seen as well tho, like Inuyasha. There is also some I know I'd miss, if I didn't know about them beforehand, since demographics can be kind of unexpected some of the time.";False;False;;;;1610454026;;False;{};gizrfob;False;t3_kvqhm5;False;False;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gizrfob/;1610511059;11;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610454061;;False;{};gizrh4v;False;t3_kvpz6g;False;True;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizrh4v/;1610511092;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_zootgeist;;;[];;;;text;t2_85o9nuxg;False;False;[];;Ayy I’d be surprised if you hadn’t. Well I can the only other ones I can suggest Demon Slayer, Attack on Titan and Black Clover :);False;False;;;;1610454066;;False;{};gizrhe2;False;t3_kvqeau;False;True;t1_gizrc41;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizrhe2/;1610511098;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BI01;;;[];;;;text;t2_zl6tr;False;False;[];;o i didnt c ur mal in ur flair can u post it in a reply im on my phone;False;False;;;;1610454092;;False;{};gizriid;False;t3_kvqeau;False;True;t1_gizqzio;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizriid/;1610511119;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarRufus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ScarRufus;light;text;t2_2u0vy1pk;False;False;[];;The feels;False;False;;;;1610454100;;False;{};gizriu2;False;t3_kvqlzy;False;False;t3_kvqlzy;/r/anime/comments/kvqlzy/my_first_time_watching_plastic_memories/gizriu2/;1610511130;9;True;False;anime;t5_2qh22;;0;[]; -[];;;etardollan;;;[];;;;text;t2_1ey8hkys;False;False;[];;mushoku tensei just came out this season it is the godfather of isekai;False;False;;;;1610454167;;False;{};gizrlry;False;t3_kvpuv9;False;True;t3_kvpuv9;/r/anime/comments/kvpuv9/konichiwa_i_need_some_anime_like_tensei_shitara/gizrlry/;1610511181;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RandomRedditorWithNo;;ANI a-1milquiz;[];;https://anilist.co/user/lafferstyle;dark;text;t2_tt0a1;False;True;[];;"All that I know about this stuff is that the demographic rarely depends on the content of the work, but rather the magazine it was run in (which can depend on the premise and whatnot, I know). So I remember that K-On ran in a seinen magazine, Nisekoi ran in WSJ, and Gekan Shoujo Nozaki-kun also ran in a shounen magazine. - -Unfortunately I don't know which manga ran in which magazine for most of these, so that neat trick doesn't help me here. - -Edit: and I got 32/60, so my lack of confidence was not unfounded";False;False;;;;1610454332;;1610455353.0;{};gizrsy6;False;t3_kvqhm5;False;False;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gizrsy6/;1610511306;79;True;False;anime;t5_2qh22;;0;[]; -[];;;Jakslayer;;;[];;;;text;t2_6ly6zgl0;False;False;[];;If the post here doesn’t work out their is a subreddit for finding anime just look up r/whatanime the community is really cool like this ones and they help as much as possible;False;False;;;;1610454397;;False;{};gizrvwj;False;t3_kvq8ty;False;True;t3_kvq8ty;/r/anime/comments/kvq8ty/looking_for_a_specific_anime_anime_with_a_girl/gizrvwj/;1610511371;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PsychoGeek;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/PsychoGeek;dark;text;t2_lyjee;False;False;[];;"Got 56/60. - -This quiz made me wish we had more new Josei adapatations, but they have been scarce since Noitamina shifted focus. And Shoujo romance is also scarce.";False;False;;;;1610454497;;False;{};gizs09k;False;t3_kvqhm5;False;False;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gizs09k/;1610511448;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Jakslayer;;;[];;;;text;t2_6ly6zgl0;False;False;[];;I tried to put up a post asking if i should force myself to watch attack on titan since i tried and got bored on the fourth episode. So should i?;False;False;;;;1610454499;;False;{};gizs0cc;False;t3_kvq1a6;False;False;t1_gizpplh;/r/anime/comments/kvq1a6/yo_guys_i_have_a_question_what_anime_should_i/gizs0cc/;1610511450;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610454525;;False;{};gizs1hc;False;t3_kvpz6g;False;True;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizs1hc/;1610511470;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VideoGamesForU;;;[];;;;text;t2_iyc44;False;False;[];;Episode 136 is gonna be Chapter 245 which is a very fast pace. I can only see them doing more semi canon episodes inbetween. All those chapters are also pretty short and are fights. We will see :);False;False;;;;1610454563;;False;{};gizs36l;False;t3_kvpz6g;False;True;t1_gizqyeg;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizs36l/;1610511499;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Zayed_khalid;;;[];;;;text;t2_7f1hqahz;False;False;[];;I didn’t know it was a sad anime . So when it ended my sadness was double.;False;False;;;;1610454592;;False;{};gizs4ha;False;t3_kvqlzy;False;False;t3_kvqlzy;/r/anime/comments/kvqlzy/my_first_time_watching_plastic_memories/gizs4ha/;1610511521;6;True;False;anime;t5_2qh22;;0;[]; -[];;;r4zenas;;;[];;;;text;t2_156977;False;False;[];;"it was. just fight between nations and one nation killing other is generic as hell. We all know Jews and Germans becuase its most populistic part but itsn not unique. Things like this happened all over the worlds. There are multiple examples like that (maybe not as extreme but the one in AoT isnt that extreme either) from 2WW. Not mentioning about whole colonization of Africa or other invasions all over the world. - -&#x200B; - -I should put in O: If whole titan mystery had better placing/setup would be way better.";False;False;;;;1610454654;;False;{};gizs76p;True;t3_kvq0mr;False;True;t1_gizq79v;/r/anime/comments/kvq0mr/help_me_make_swot_analysis_of_aot/gizs76p/;1610511566;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarRufus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ScarRufus;light;text;t2_2u0vy1pk;False;False;[];;Log Horizon;False;False;;;;1610454697;;False;{};gizs91k;False;t3_kvpuv9;False;True;t3_kvpuv9;/r/anime/comments/kvpuv9/konichiwa_i_need_some_anime_like_tensei_shitara/gizs91k/;1610511600;1;True;False;anime;t5_2qh22;;0;[]; -[];;;swayzrea;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/swayre;light;text;t2_7hgz8pgm;False;False;[];;The girl randomly dying at the end of a romance or slice of life;False;False;;;;1610454807;;False;{};gizsdvw;False;t3_kvor4u;False;False;t3_kvor4u;/r/anime/comments/kvor4u/most_annoying_anime_tropecliche_that_you_want_to/gizsdvw/;1610511684;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610454855;;False;{};gizsfzz;False;t3_kvpz6g;False;True;t1_gizq91a;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizsfzz/;1610511722;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Zoriba99;;;[];;;;text;t2_4r8l3ebw;False;False;[];;the bath scene had a lot more fan service in the manga;False;False;;;;1610454880;;False;{};gizsh4r;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizsh4r/;1610511744;102;True;False;anime;t5_2qh22;;0;[]; -[];;;r4zenas;;;[];;;;text;t2_156977;False;False;[];;"it makes it bad and boring. - -Strong part of anime is action. All slowing for giving hollow characters good place in the world/story have no sense and is very annoying. Especially for this story, these characters will die and if author wanted give them importance he should give them part of the action, not special retrospecions or special episodes based only on new characters. - -For example in NGE which is more like a movie. There is one MC - Shinji. You dont need special episode for every new important side character becuase you would see them, especially with Shinji perspective. You will see small parts of their private times but overall they will get deep without extra episodes to make them deep when they are shown for the first time.";False;False;;;;1610454976;;False;{};gizsle7;True;t3_kvq0mr;False;False;t1_gizqlbg;/r/anime/comments/kvq0mr/help_me_make_swot_analysis_of_aot/gizsle7/;1610511820;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;He's his butler* that's why they left them together /s;False;False;;;;1610455032;;1610492704.0;{};gizsntb;False;t3_kvpz6g;False;False;t1_gizq91a;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizsntb/;1610511863;91;True;False;anime;t5_2qh22;;0;[]; -[];;;SonAnka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SonAnka;light;text;t2_4bv8n52s;False;False;[];;[https://myanimelist.net/animelist/SonAnka](https://myanimelist.net/animelist/SonAnka);False;False;;;;1610455047;;False;{};gizsohn;True;t3_kvqeau;False;True;t1_gizriid;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizsohn/;1610511875;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SonAnka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SonAnka;light;text;t2_4bv8n52s;False;False;[];;Well then you shouldt suggest that anime :D I want fights, i want fights MC beat his enemies. No someone who dont want fight :D;False;False;;;;1610455088;;False;{};gizsqc3;True;t3_kvqeau;False;True;t1_gizrenm;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizsqc3/;1610511907;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Well there are fight there is a whole group and only mc limits his power there are a lot of fights;False;False;;;;1610455162;;False;{};gizstoi;False;t3_kvqeau;False;False;t1_gizsqc3;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizstoi/;1610511965;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;Devil Banishers part 2 baby.;False;False;;;;1610455166;;False;{};gizstv6;False;t3_kvpz6g;False;False;t1_gizqqom;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizstv6/;1610511968;72;True;False;anime;t5_2qh22;;0;[]; -[];;;SonAnka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SonAnka;light;text;t2_4bv8n52s;False;False;[];;Demon Slayer was amazing. I have searched lots of smilar animes to Demon Slayer but i cant find it. I hope that train movie will come in short and i can rewatch serie again and watch moive afterwards :D I have watched atack ontitan but not watched Black Clover. I'm not up to date watcher so i always wait and watch when series make final episode.;False;False;;;;1610455170;;False;{};gizsu20;True;t3_kvqeau;False;True;t1_gizrhe2;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizsu20/;1610511971;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610455188;moderator;False;{};gizsuvh;False;t3_kvqwp7;False;True;t3_kvqwp7;/r/anime/comments/kvqwp7/recommend_me_anime_songs/gizsuvh/;1610511988;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Thresh-Prodigy, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610455189;moderator;False;{};gizsuvy;False;t3_kvqwp7;False;True;t3_kvqwp7;/r/anime/comments/kvqwp7/recommend_me_anime_songs/gizsuvy/;1610511988;1;False;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;Should've used pic from the og 70s Haikara-san ga Tooru there the movies weren't as good imo and also didn't really dig the modernized art style they got when compared to the original series.;False;False;;;;1610455210;;False;{};gizsvuq;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gizsvuq/;1610512004;3;True;False;anime;t5_2qh22;;0;[]; -[];;;won_hallyu;;;[];;;;text;t2_16wnuv;False;False;[];;someone said back then they have enough material for another 12-15 episodes;False;False;;;;1610455211;;False;{};gizsvwp;False;t3_kvpz6g;False;False;t1_gizqqom;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizsvwp/;1610512005;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610455215;;False;{};gizsw44;False;t3_kvqwp7;False;True;t3_kvqwp7;/r/anime/comments/kvqwp7/recommend_me_anime_songs/gizsw44/;1610512009;0;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;"Welp... that was an episode i guess. - -Everyone and their mom have been supporting the theory of Yuno being royalty since day 1 and it turns out he is, from another kingdom though. - -Which means Asta automatically wins their bet by default since Yuno's not a peasant anymore.";False;False;;;;1610455225;;False;{};gizswjd;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizswjd/;1610512017;43;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;Is the OG available subbed? I remember looking for it but not finding anything after watching the first movie.;False;False;;;;1610455255;;False;{};gizsxz6;True;t3_kvqhm5;False;True;t1_gizsvuq;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gizsxz6/;1610512042;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OpenSourceObsidian;;;[];;;;text;t2_362b9rie;False;False;[];;I would unironically love this;False;False;;;;1610455395;;False;{};gizt4j2;False;t3_kvpz6g;False;False;t1_gizstv6;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizt4j2/;1610512157;14;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610455424;;False;{};gizt5v2;False;t3_kvpiig;False;True;t3_kvpiig;/r/anime/comments/kvpiig/i_need_help_regarding_violet_evergarden/gizt5v2/;1610512179;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;"Renai circulation - -Platinum disco - -Anything that is by flow";False;False;;;;1610455429;;False;{};gizt632;False;t3_kvqwp7;False;True;t3_kvqwp7;/r/anime/comments/kvqwp7/recommend_me_anime_songs/gizt632/;1610512182;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;Not sure if it's subbed but if I had to guess I'd say that it isn't atleast not fully;False;False;;;;1610455465;;False;{};gizt7q9;False;t3_kvqhm5;False;False;t1_gizsxz6;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gizt7q9/;1610512209;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;For sure, Attack on titan is one of those shows where the further it goes the better it gets so each arc is bigger then the last, season 1 is considered the weakest by far especially the first arc;False;False;;;;1610455503;;False;{};gizt9e9;False;t3_kvq1a6;False;True;t1_gizs0cc;/r/anime/comments/kvq1a6/yo_guys_i_have_a_question_what_anime_should_i/gizt9e9/;1610512238;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;Yeah, looking at the private tracker I use it looks like it's just the first couple episodes. Damn shame.;False;False;;;;1610455507;;False;{};gizt9kw;True;t3_kvqhm5;False;False;t1_gizt7q9;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gizt9kw/;1610512241;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BrenttheGent;;;[];;;;text;t2_70sb4;False;False;[];;":( - -I thought with all this filler it'd be a bigger gap than that. It was almost a whole year of non-manga adapted content. - -Was it right caught up with anime before? Does manga release weekly? Take lots of breaks?";False;False;;;;1610455523;;False;{};giztabt;False;t3_kvpz6g;False;False;t1_gizqqom;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/giztabt/;1610512256;13;True;False;anime;t5_2qh22;;0;[]; -[];;;0KoopaTroopa0;;;[];;;;text;t2_haw50;False;False;[];;Nero just wants the tip;False;False;;;;1610455647;;False;{};giztg19;False;t3_kvpz6g;False;False;t1_gizqvpc;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/giztg19/;1610512355;25;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Michishirube by Minori Chihara and Sincerely by TRUE.;False;False;;;;1610455713;;False;{};giztj3a;False;t3_kvqwp7;False;True;t3_kvqwp7;/r/anime/comments/kvqwp7/recommend_me_anime_songs/giztj3a/;1610512408;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;"Me too. Devil Banishers was great, the execution and the fact they couldnt take any risks because it was before the important time skip made the arc flop tremendously. - -Otherwise the idea of visiting the uglier side of peasant lives on the most corrupt kingdom ever and their struggle was great. Dazu being batshit insane (she lied about everything, people were nice to her) also was a nice detail. - -But if they are given more freedom now they might pull off something decent.";False;False;;;;1610455720;;False;{};giztjew;False;t3_kvpz6g;False;False;t1_gizt4j2;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/giztjew/;1610512414;17;True;False;anime;t5_2qh22;;0;[]; -[];;;BI01;;;[];;;;text;t2_zl6tr;False;False;[];;mob pyscho, fate series, scientific railgun/index and you might like akudama drive;False;False;;;;1610455746;;1610456191.0;{};giztkmo;False;t3_kvqeau;False;False;t1_gizsohn;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/giztkmo/;1610512435;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sin778;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/Philipp2002;light;text;t2_42jtk419;False;False;[];;"Yeah, sometimes these tags/demographics don't really make sense. Claymore is a funny example of this. The anime is a shounen, so the target audience is young boys, presumably around the age of maybe 12-14. But the rating is 18+. - -?";False;False;;;;1610455783;;False;{};giztmbd;False;t3_kvqhm5;False;False;t1_gizrsy6;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/giztmbd/;1610512464;16;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610455843;;False;{};giztp68;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/giztp68/;1610512512;4;True;False;anime;t5_2qh22;;0;[]; -[];;;itz_unknown_god;;;[];;;;text;t2_97tgx2k5;False;False;[];;Thanks but Iam already using that;False;False;;;;1610455905;;False;{};gizts6u;True;t3_kvo2yx;False;False;t1_gizhasp;/r/anime/comments/kvo2yx/pls_help_me_find_an_anime_to_watch/gizts6u/;1610512565;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Potential-Leg1858, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610455923;moderator;False;{};giztt2n;False;t3_kvr2wd;False;True;t3_kvr2wd;/r/anime/comments/kvr2wd/best_lovecraftian_anime_recommendations/giztt2n/;1610512583;0;False;False;anime;t5_2qh22;;0;[]; -[];;;SatouSmith;;;[];;;;text;t2_85ir9527;False;True;[];;[Crawling with love, Nyaruko Chan](https://myanimelist.net/anime/11785/Haiyore_Nyaruko-san);False;False;;;;1610455959;;False;{};giztutp;False;t3_kvr2wd;False;True;t3_kvr2wd;/r/anime/comments/kvr2wd/best_lovecraftian_anime_recommendations/giztutp/;1610512620;3;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"Apparently, One Piece should do that. - -There's also Naruto as well.";False;False;;;;1610455980;;False;{};giztvws;False;t3_kvr2u8;False;True;t3_kvr2u8;/r/anime/comments/kvr2u8/looking_for_s_good_lengthy_anime/giztvws/;1610512642;3;True;False;anime;t5_2qh22;;0;[]; -[];;;itz_unknown_god;;;[];;;;text;t2_97tgx2k5;False;False;[];;Kay thanks every anime that you have mentioned I mean all of them I have not seen before or heard of;False;False;;;;1610456003;;False;{};giztx2j;True;t3_kvo2yx;False;False;t1_gizfkjf;/r/anime/comments/kvo2yx/pls_help_me_find_an_anime_to_watch/giztx2j/;1610512667;1;True;False;anime;t5_2qh22;;0;[]; -[];;;X2radical;;;[];;;;text;t2_jdxem;False;False;[];;Ive heard great things ab one piece ive watched naruto, is case closed any good?;False;False;;;;1610456010;;False;{};giztxg9;True;t3_kvr2u8;False;True;t1_giztvws;/r/anime/comments/kvr2u8/looking_for_s_good_lengthy_anime/giztxg9/;1610512674;1;True;False;anime;t5_2qh22;;0;[]; -[];;;itz_unknown_god;;;[];;;;text;t2_97tgx2k5;False;False;[];;Ok I will check it out;False;False;;;;1610456026;;False;{};gizty8d;True;t3_kvo2yx;False;True;t1_gizfjec;/r/anime/comments/kvo2yx/pls_help_me_find_an_anime_to_watch/gizty8d/;1610512687;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610456040;moderator;False;{};giztyxm;False;t3_kvr40v;False;True;t3_kvr40v;/r/anime/comments/kvr40v/is_there_any_darling_in_the_franxx_kokoro_subs/giztyxm/;1610512699;1;False;False;anime;t5_2qh22;;0;[]; -[];;;R5Z9;;;[];;;;text;t2_6z9frse5;False;False;[];;">Save - -ik already but thanks for response";False;False;;;;1610456087;;False;{};gizu15w;True;t3_kvpuv9;False;False;t1_gizs91k;/r/anime/comments/kvpuv9/konichiwa_i_need_some_anime_like_tensei_shitara/gizu15w/;1610512737;1;True;False;anime;t5_2qh22;;0;[]; -[];;;R5Z9;;;[];;;;text;t2_6z9frse5;False;False;[];;I will check thankyou;False;False;;;;1610456101;;False;{};gizu1wo;True;t3_kvpuv9;False;True;t1_gizrlry;/r/anime/comments/kvpuv9/konichiwa_i_need_some_anime_like_tensei_shitara/gizu1wo/;1610512750;1;True;False;anime;t5_2qh22;;0;[]; -[];;;R5Z9;;;[];;;;text;t2_6z9frse5;False;False;[];;I will check Thank you!;False;False;;;;1610456111;;False;{};gizu2dw;True;t3_kvpuv9;False;True;t1_gizoaqs;/r/anime/comments/kvpuv9/konichiwa_i_need_some_anime_like_tensei_shitara/gizu2dw/;1610512757;1;True;False;anime;t5_2qh22;;0;[]; -[];;;R5Z9;;;[];;;;text;t2_6z9frse5;False;False;[];;Ik but i cant wait;False;False;;;;1610456120;;False;{};gizu2sh;True;t3_kvpuv9;False;True;t1_giznso9;/r/anime/comments/kvpuv9/konichiwa_i_need_some_anime_like_tensei_shitara/gizu2sh/;1610512764;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Very neat I respect the effort that goes into making a quiz like this. - -I didn't do to well and ill blame it on being tired. I was too busy thinking about the character designs and not thinking enough about who would actually consume it. - -I think I should dig out some Josei series to complete as I normally really enjoy them.";False;False;;;;1610456148;;False;{};gizu45q;False;t3_kvqhm5;False;False;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gizu45q/;1610512787;7;True;False;anime;t5_2qh22;;0;[]; -[];;;SocialLoser739;;;[];;;;text;t2_4ttuko0s;False;False;[];;"Idk about anime but some manga have really disturbing monsters and such. I recommend: - - -Berserk - - -Mieruko chan";False;False;;;;1610456202;;False;{};gizu6wc;False;t3_kvr2wd;False;True;t3_kvr2wd;/r/anime/comments/kvr2wd/best_lovecraftian_anime_recommendations/gizu6wc/;1610512844;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_zootgeist;;;[];;;;text;t2_85o9nuxg;False;False;[];;"Oh yeah I can’t wait until the movie gets released, I can’t find a subbed version anywhere online :( - -You should start Black Clover though, even though it’s ongoing the first major arc is competed. It’s like 100 eps long or smt like that, so you got plenty to watch.";False;False;;;;1610456209;;False;{};gizu77w;False;t3_kvqeau;False;True;t1_gizsu20;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizu77w/;1610512856;1;True;False;anime;t5_2qh22;;0;[]; -[];;;itz_unknown_god;;;[];;;;text;t2_97tgx2k5;False;False;[];;My favorite genre is action,isekai if that is a genre romance, school,shounen and hmm I think that is all and PS. I have watched all of them except for blue springs ride PSS or is it PPS what ever I don't like mecha anime for some reasons;False;False;;;;1610456212;;False;{};gizu7dd;True;t3_kvo2yx;False;True;t1_gizfmjy;/r/anime/comments/kvo2yx/pls_help_me_find_an_anime_to_watch/gizu7dd/;1610512860;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;Detective Conan? It's apparently very good.;False;False;;;;1610456260;;False;{};gizu9s8;False;t3_kvr2u8;False;True;t1_giztxg9;/r/anime/comments/kvr2u8/looking_for_s_good_lengthy_anime/gizu9s8/;1610512912;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nabiil_i;;;[];;;;text;t2_32ebwry9;False;False;[];;Tsuki ga kirei;False;False;;;;1610456265;;False;{};gizua0k;False;t3_kvr482;False;True;t3_kvr482;/r/anime/comments/kvr482/very_underrated_romance_anime/gizua0k/;1610512917;3;True;False;anime;t5_2qh22;;0;[]; -[];;;X2radical;;;[];;;;text;t2_jdxem;False;False;[];;Yes not too sure what it’s about though;False;False;;;;1610456283;;False;{};gizuaw7;True;t3_kvr2u8;False;True;t1_gizu9s8;/r/anime/comments/kvr2u8/looking_for_s_good_lengthy_anime/gizuaw7/;1610512936;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;I don't know if Nagi no Asu kara was popular at the time (2013), but nobody is talking about it now;False;False;;;;1610456288;;False;{};gizub4s;False;t3_kvr482;False;True;t3_kvr482;/r/anime/comments/kvr482/very_underrated_romance_anime/gizub4s/;1610512942;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;Every 4 leaf clover grimoire owner has royal blood. Coincidence ? I don't think so!;False;False;;;;1610456311;;False;{};gizuc9x;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizuc9x/;1610512970;10;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;Basically, try to stick to it till S2 Episode 6. If you don't care at that point, drop it. That's what I did and I have no regrets.;False;False;;;;1610456323;;False;{};gizucv2;False;t3_kvq1a6;False;True;t1_gizs0cc;/r/anime/comments/kvq1a6/yo_guys_i_have_a_question_what_anime_should_i/gizucv2/;1610512980;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AdiMG;;MAL;[];;https://myanimelist.net/profile/adi_mk_ii;dark;text;t2_k0bsu;False;False;[];;The first movie was awesome imo, extremely funny and charming with really stylish animation to boot. Second movie gets bogged down in too much melodrama which doesn't work as well in the compressed time.;False;False;;;;1610456333;;False;{};gizudbu;False;t3_kvqhm5;False;False;t1_gizsvuq;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gizudbu/;1610512987;4;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610456373;moderator;False;{};gizufb2;False;t3_kvpz6g;False;True;t1_gizsfzz;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizufb2/;1610513025;1;True;False;anime;t5_2qh22;;0;[]; -[];;;itz_unknown_god;;;[];;;;text;t2_97tgx2k5;False;False;[];;Ok let me guess most of them are mecha but I have seen the remake;False;False;;;;1610456397;;False;{};gizughx;True;t3_kvo2yx;False;True;t1_gizgyxo;/r/anime/comments/kvo2yx/pls_help_me_find_an_anime_to_watch/gizughx/;1610513045;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"What genres do you want to watch? - -I'll stay extremely broad. I presume you have Netflix, so I'll just do shows on there. - -[Toradora!](https://anilist.co/anime/4224/Toradora/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_toradora.21) -Comedy, Drama, Romance, Slice of Life - - -[Kill la Kill](https://anilist.co/anime/18679/Kill-la-Kill/) -Action, Comedy, Ecchi - - -[Attack on Titan](https://anilist.co/anime/16498/Attack-on-Titan/) -[Watch Order](Watch Order of the whole AoT Series: https://www.reddit.com/r/anime/wiki/watch_order#wiki_attack_on_titan) -Action, Drama, Fantasy, Mystery - -[A Silent Voice](https://anilist.co/anime/20954/A-Silent-Voice/) -Drama, Romance, Slice of Life - -[No Game, No Life](https://anilist.co/anime/19815/No-Game-No-Life/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_no_game_no_life) -Adventure, Comedy, Ecchi, Fantasy - -[High School DxD](https://anilist.co/anime/11617/High-School-DxD/) -Action, Comedy, Ecchi, Fantasy, Romance";False;False;;;;1610456427;;False;{};gizui0a;False;t3_kvq1a6;False;True;t3_kvq1a6;/r/anime/comments/kvq1a6/yo_guys_i_have_a_question_what_anime_should_i/gizui0a/;1610513072;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DJSERRANO547;;;[];;;;text;t2_5qyy1wc5;False;False;[];;"{Toradora} its really underated for the romantic gold it is i never hear anyone talk about it, i know few people who have watched it. - -Also go to r/animesuggest for more i think they will have some more for you.";False;True;;comment score below threshold;;1610456438;;False;{};gizuil5;False;t3_kvr482;False;True;t3_kvr482;/r/anime/comments/kvr482/very_underrated_romance_anime/gizuil5/;1610513082;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610456440;;False;{};gizuioq;False;t3_kvr482;False;True;t3_kvr482;/r/anime/comments/kvr482/very_underrated_romance_anime/gizuioq/;1610513084;1;True;False;anime;t5_2qh22;;0;[]; -[];;;noctuliuss;;;[];;;;text;t2_21bgkbx;False;False;[];;Came to post exactly this. For me if you watch till the Haiyore! Nyaruko-san F, the ending is somewhat satisfying.;False;False;;;;1610456444;;False;{};gizuiwh;False;t3_kvr2wd;False;False;t1_giztutp;/r/anime/comments/kvr2wd/best_lovecraftian_anime_recommendations/gizuiwh/;1610513087;5;True;False;anime;t5_2qh22;;0;[]; -[];;;itz_unknown_god;;;[];;;;text;t2_97tgx2k5;False;False;[];;Now that is an anime worth watching ahh I haven't watched it though but I heard it is a good anime;False;False;;;;1610456455;;False;{};gizujfj;True;t3_kvo2yx;False;True;t1_gizj4zt;/r/anime/comments/kvo2yx/pls_help_me_find_an_anime_to_watch/gizujfj/;1610513096;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610456499;moderator;False;{};gizuljj;False;t3_kvr8fz;False;False;t3_kvr8fz;/r/anime/comments/kvr8fz/what_to_watch_after_full_metal_alchemist/gizuljj/;1610513138;1;False;False;anime;t5_2qh22;;0;[]; -[];;;R5Z9;;;[];;;;text;t2_6z9frse5;False;False;[];;and i have to ask you do you know where i can watch eng subbed ova 1,2,3,4,5 - Episodes?;False;False;;;;1610456512;;False;{};gizum71;True;t3_kvpuv9;False;True;t1_gizoaqs;/r/anime/comments/kvpuv9/konichiwa_i_need_some_anime_like_tensei_shitara/gizum71/;1610513151;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nikos_strlkss;;;[];;;;text;t2_5xhq8iu0;False;False;[];;Definitely Asobi Asobase;False;False;;;;1610456527;;False;{};gizumyf;False;t3_kvp6f9;False;True;t3_kvp6f9;/r/anime/comments/kvp6f9/can_someone_give_me_their_funniest_anime_they_know/gizumyf/;1610513165;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610456548;;False;{};gizunz5;False;t3_kvpz6g;False;True;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizunz5/;1610513185;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nikos_strlkss;;;[];;;;text;t2_5xhq8iu0;False;False;[];;More people need to know about this show!! It's the funniest shit ever;False;False;;;;1610456571;;False;{};gizup38;False;t3_kvp6f9;False;False;t1_gizp1xx;/r/anime/comments/kvp6f9/can_someone_give_me_their_funniest_anime_they_know/gizup38/;1610513204;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yuki275;;;[];;;;text;t2_88nfq6i8;False;False;[];;Thanks for the suggestion but I already finished it. Its a good anime it gives me 5 centimetres per second vibes.;False;False;;;;1610456573;;False;{};gizup5w;True;t3_kvr482;False;True;t1_gizua0k;/r/anime/comments/kvr482/very_underrated_romance_anime/gizup5w/;1610513205;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Yuki275;;;[];;;;text;t2_88nfq6i8;False;False;[];;Thankss I'll put it in my list.;False;False;;;;1610456596;;False;{};gizuqa3;True;t3_kvr482;False;True;t1_gizub4s;/r/anime/comments/kvr482/very_underrated_romance_anime/gizuqa3/;1610513225;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;There's nothing else afterwords.;False;False;;;;1610456599;;False;{};gizuqew;False;t3_kvr8fz;False;True;t3_kvr8fz;/r/anime/comments/kvr8fz/what_to_watch_after_full_metal_alchemist/gizuqew/;1610513228;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ShadowClawz;;;[];;;;text;t2_yvlx7;False;False;[];;Everyone's talking about the OP but the ED is beautiful.;False;False;;;;1610456606;;1610457161.0;{};gizuqt3;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizuqt3/;1610513236;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Yuki275;;;[];;;;text;t2_88nfq6i8;False;False;[];;I already watched it thanks for the suggestion tho.;False;False;;;;1610456619;;False;{};gizurey;True;t3_kvr482;False;True;t1_gizuil5;/r/anime/comments/kvr482/very_underrated_romance_anime/gizurey/;1610513245;0;True;False;anime;t5_2qh22;;0;[]; -[];;;GDW312;;;[];;;;text;t2_7mclpp14;False;False;[];;Only the Gundam and Zoids are Mecha;False;False;;;;1610456653;;False;{};gizut3y;False;t3_kvo2yx;False;True;t1_gizughx;/r/anime/comments/kvo2yx/pls_help_me_find_an_anime_to_watch/gizut3y/;1610513272;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yri4lf12;;;[];;;;text;t2_6bfipjd7;False;False;[];;Dusk Maiden of Amnesia;False;False;;;;1610456685;;False;{};gizuupq;False;t3_kvr482;False;True;t3_kvr482;/r/anime/comments/kvr482/very_underrated_romance_anime/gizuupq/;1610513300;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nazenn;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Nazenn;light;text;t2_n4ozd;False;False;[];;"[K](https://myanimelist.net/anime/14467/K) is the only one that fits that isn't already on your list from what I've seen. - -If you don't mind a chinese show then also [Mo Dao Zu Shi](https://myanimelist.net/anime/37208/Mo_Dao_Zu_Shi)";False;False;;;;1610456687;;False;{};gizuuu0;False;t3_kvqeau;False;True;t3_kvqeau;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizuuu0/;1610513301;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ShadowClawz;;;[];;;;text;t2_yvlx7;False;False;[];;"Yuno: ""watashi wa ouzokuyo""";False;False;;;;1610456690;;False;{};gizuuyb;False;t3_kvpz6g;False;False;t1_gizq91a;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizuuyb/;1610513303;47;True;False;anime;t5_2qh22;;0;[]; -[];;;ShadowClawz;;;[];;;;text;t2_yvlx7;False;False;[];;Yeah it sucks. I was waiting for oppai moment;False;False;;;;1610456712;;False;{};gizuw1f;False;t3_kvpz6g;False;False;t1_gizsh4r;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizuw1f/;1610513327;47;True;False;anime;t5_2qh22;;0;[]; -[];;;NJBuoy;;skip7;[];;;dark;text;t2_9i9ekg0o;False;False;[];;There is one movie;False;False;;;;1610456714;;False;{};gizuw5w;False;t3_kvr8fz;False;True;t1_gizuqew;/r/anime/comments/kvr8fz/what_to_watch_after_full_metal_alchemist/gizuw5w/;1610513329;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ShadowClawz;;;[];;;;text;t2_yvlx7;False;False;[];;The hot spring with Yami, Charlotte and Mereoleona was better;False;False;;;;1610456740;;False;{};gizuxeg;False;t3_kvpz6g;False;False;t1_gizqudm;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizuxeg/;1610513354;13;True;False;anime;t5_2qh22;;0;[]; -[];;;DrBrachio;;;[];;;;text;t2_149oc9v9;False;False;[];;"Since I don't know your tastes or genre preferences, I will simply ignore it and give you a spoilerfree, personal opinion mixed with some internet opinions, and then you can arrange an order for yourself, and afterwards i will recommend you some stuff, too, so here we go: - -1. Code Geass (2006-2008) is an ideal beginning. It has everything, but imo doesn't excel at anything in particular; solid characters, solid story, great ending, some boring arcs here and there, but ofc very nice fights and action. Although the focus lies on the action, the drama and character conflicts don't come short, although I would say, it suffers due to its vast character cast of some dangling plot. Definitely one of the alltime classics, and this status will be held further. To me, it was one of my first anime, as well, and i enjoyed it a lot, but I feel that many anime surpassed it since then. -2. Steins;Gate (2011) is an alltime classis, as well. It takes some episodes to really get into it, but it is definitely worth it. If you wanna binge some shit, then this is your anime out of those. The story is complex, yet, not too deep. Although it is rather gloomy (genre noir), it has lots of internet/otaku jokes and fan service. The characters are authentic, although i don't like the female lead that much, but there are enough side characters to compensate for that. Actions comes a bit short, but drama and especially internal conflict is plenty of there. -3. Neon Genesis Evangelion (1995) is my personal favorite anime/work of all time, so I may be a bit biased here, but nonetheless, this is the absolute must see. Metawise, it is indeed THE anime since there are countless anime paying tribute to Evangelion and referencing it in one way or another and the homevideo sales of the series speak for themselves. But the most important thing here is YOU: Do you wanna just casually watch some stuff or do you wanna question yourself and every decision you made in your life so far? Definitely bingeable, but the story is really deep and complex, so if you like thinking about the stuff you watch or read or making up theories or have some identity crisis, you should consider some breaks. Although it has a lot of action scenes, the main focus totally is on the characters, external and internal conflict, and if you don't have a philosophy PhD, yet, after finishing the show, you will. -4. Attack on Titan (2013 - ) is the HYPE. Usually, hyped shows are overrated, but this one deserves its hype. If you wanna hype alongside the community right now, then what are you waiting for? Either Anime and Mange are in the final arcs, so starting now is quite ideal. As all of the above, it has drama and conflict, and story and characters develope quite naturally. Having a bit more episodes than FMAB, it is the longest of all of the ones so far, so if you are looking for something to finish in just a few days, it will be a though job, but probably worth it. I am not up to date with the latest season, but appearently it gets better and better! -5. Sword Art Online (2012 - )... so, how exactly did this show land on your ""list of the best animes""? This anime is heavily debated, the ones loving it, the others hating it. All jokes aside, the general consensus is that it is definitely not a master work. Personally, I haven't watched it, but i highly likely never will. So my recommendation here is: No need to watch it. There are just plenty of better anime out there. But on the other side, to really appreaciate the good ones, one must have seen the not so good ones. - -So, I hope, this is gonna help you to know where to start. Personally, I don't recommend starting with Steins;Gate, but this is just a hunch. Now, I would like to give you some more or less known Anime, which i consider master pieces: - -1. SukaSuka (2017). This is an abbreviation, but you should be able to find it like this. It is probably the least known anime from both, your list and my list, so i wanna promote it here on the first place, maybe someone else besides you reads this comment\^\^ -Don't wanna say too much, but if you didn't get enough feels from your anime, yet, or you wanna some more, then here you go. -2. Toradora! (2008). Being a romantic comedy, this is something entirely different from all the titles so far. If you like romance, or if you dislike romance, this is basically the anime for you since it will give you some neat insight on characters. It starts pretty cliche, but either way, if you wanna some casual, funny chill down anime, or some feels and character drama, this is the stuff you can't get enough of. -3. Mahou Shoujo Madoka Magica (2011). Everything in this anime is on point. The story, the characters, the writing and the presentation, namely the animation and the music. You should probably watch some other shows before this one since it really is a gem, and you need to get, like, let's call it the ""anime feeling"" from watching a few more shows besides FMAB and Death Note to understand why this anime is so outstanding in particular. -4. Hibike! Euphonium (2015 - ). The Work itself is ongoing, but i wanna just talk abouth the two first seasons from 2015 and 2016 which are self-contained. I just watched this anime last year, because I didn't really think, I would enjoy watching some high school girls competing with their high school band in local and regional competitions, but DAMN, was I wrong. It is probably the most casual anime from the ones mentioned here, but it delivers on either side, simple everyday life and intense character drama. This is also one of the anime that you should probably watch later on, to really be able to draw comparison to other works and to enjoy the art style, characters and animations. -5. Made in Abyss (2017 - ). Watching a few episodes through, I was on the verge of dropping this anime, which is not uncommon for many as you watch multiple anime in a single season and maybe you have too many or it is too boring to watch it as slow as one episode per week. But luckily I did not, so I was able to fully enjoy this master piece. What starts as a funny, children friendly adventure, becomes some hard to digest work of despair. If you liked the psychological stuff in Death Note or Eva, then this anime is it! And the story is still ongoing, so you can look forward to more. - -tl;dr have fun watching your anime and try as many genre or different art styles or time periods as possible, also asuka is best girl";False;False;;;;1610456746;;False;{};gizuxp5;False;t3_kvpjhh;False;False;t3_kvpjhh;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gizuxp5/;1610513359;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TehNolz;;MAL;[];;http://myanimelist.net/animelist/Nolz;dark;text;t2_brqsb;False;False;[];;You can watch [The Sacred Star of Milos](https://myanimelist.net/anime/9135/Fullmetal_Alchemist__The_Sacred_Star_of_Milos), which is a side movie. There is no sequel though.;False;False;;;;1610456746;;False;{};gizuxqu;False;t3_kvr8fz;False;False;t3_kvr8fz;/r/anime/comments/kvr8fz/what_to_watch_after_full_metal_alchemist/gizuxqu/;1610513359;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;Man, i can't wait for the crazy stuffs to start because damn it is so goddamn hyped. This arc is gonna be great.;False;False;;;;1610456758;;False;{};gizuyc4;False;t3_kvpz6g;False;True;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizuyc4/;1610513369;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TinyParamedic;;;[];;;;text;t2_o8nebq8;False;False;[];;It's a detective series that is very popular in Japan. It is also one of my childhood anime, so I am a bit biased in saying that it is a very good anime (for a long running series). Only thing is that it has a lot of fillers, so if you just want the cannon episodes there is a list somewhere that shows you that, though the fillers are pretty decent too. I won't write a synopsis as I'm pretty bad at describing stuff lol.;False;False;;;;1610456768;;False;{};gizuyuk;False;t3_kvr2u8;False;True;t1_gizuaw7;/r/anime/comments/kvr2u8/looking_for_s_good_lengthy_anime/gizuyuk/;1610513377;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ShadowClawz;;;[];;;;text;t2_yvlx7;False;False;[];;"Heart Kingdom food: *exists* - -Charmy: ""And I took that personally""";False;False;;;;1610456777;;False;{};gizuzb4;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizuzb4/;1610513387;19;True;False;anime;t5_2qh22;;0;[]; -[];;;AdiMG;;MAL;[];;https://myanimelist.net/profile/adi_mk_ii;dark;text;t2_k0bsu;False;False;[];;"58/60. Perhaps the quiz was easier for me coz I remember literally the entire josei MAL page, which simplifies a few of the major misdirections like [meta](/s ""Nana and ParaKiss having different demos, or Karneval and 07-Ghost being josei"") - -Missed 7seeds and KonoBiju. First I had literally no clue about so not too upset, thought the actual answer is pretty surprising (and you have allotted it incorrectly at least according to MAL). I'm kicking myself for the second though as I have seen the show. Guess I was too stuck in the heuristic of Kaguya being the exception in terms of romcoms with that particular demographic allotment.";False;False;;;;1610456782;;False;{};gizuzih;False;t3_kvqhm5;False;False;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gizuzih/;1610513391;10;True;False;anime;t5_2qh22;;0;[]; -[];;;technowalrus2712;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PriorityShipping/;light;text;t2_taq19;False;False;[];;I haven't ever heard of some of these, so I just guessed based on artstyle for ones I didn't know. Ended up with a 39/60, not bad.;False;False;;;;1610456800;;False;{};gizv0fg;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gizv0fg/;1610513410;3;True;False;anime;t5_2qh22;;0;[]; -[];;;armorgeddonxx;;MAL;[];;https://myanimelist.net/animelist/BBurnz;dark;text;t2_acu7w;False;False;[];;Ah THIS is where they are adding content to make sure we don't catch up anytime soon, well done Pierrot, well done.;False;False;;;;1610456810;;False;{};gizv0x2;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizv0x2/;1610513418;12;True;False;anime;t5_2qh22;;0;[]; -[];;;NightCupcake;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/NoodleGalaxy;light;text;t2_77fhp1wn;False;False;[];;Watch AOT first.;False;False;;;;1610456812;;False;{};gizv100;False;t3_kvpjhh;False;True;t3_kvpjhh;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gizv100/;1610513420;1;True;False;anime;t5_2qh22;;0;[]; -[];;;X2radical;;;[];;;;text;t2_jdxem;False;False;[];;Are the fillers like smaller detective cases;False;False;;;;1610456822;;False;{};gizv1ja;True;t3_kvr2u8;False;True;t1_gizuyuk;/r/anime/comments/kvr2u8/looking_for_s_good_lengthy_anime/gizv1ja/;1610513434;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;"Yeah it works out as it's own but I went into the movies after watching the og series expecting more of the same and I was kinda let down. - -Also I was big fan of the original art style so I wasn't impressed with the new changes.";False;False;;;;1610456847;;False;{};gizv2rf;False;t3_kvqhm5;False;True;t1_gizudbu;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gizv2rf/;1610513460;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610456850;;False;{};gizv2wj;False;t3_kvr8fz;False;True;t3_kvr8fz;/r/anime/comments/kvr8fz/what_to_watch_after_full_metal_alchemist/gizv2wj/;1610513464;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610456854;moderator;False;{};gizv35c;False;t3_kvrbv5;False;True;t3_kvrbv5;/r/anime/comments/kvrbv5/beginner_anime_recommendations_please/gizv35c/;1610513470;1;False;False;anime;t5_2qh22;;0;[]; -[];;;TinyParamedic;;;[];;;;text;t2_o8nebq8;False;False;[];;Yes they are often 2-3 episode arcs.;False;False;;;;1610456855;;False;{};gizv364;False;t3_kvr2u8;False;True;t1_gizv1ja;/r/anime/comments/kvr2u8/looking_for_s_good_lengthy_anime/gizv364/;1610513470;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hi Severe_Safety9925, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610456855;moderator;False;{};gizv36f;False;t3_kvrbv5;False;True;t3_kvrbv5;/r/anime/comments/kvrbv5/beginner_anime_recommendations_please/gizv36f/;1610513470;1;False;False;anime;t5_2qh22;;0;[]; -[];;;DJSERRANO547;;;[];;;;text;t2_5qyy1wc5;False;False;[];;I have some more but I wouldn’t say they are under appreciated. You might not have seen them though.;False;False;;;;1610456896;;False;{};gizv59b;False;t3_kvr482;False;True;t1_gizurey;/r/anime/comments/kvr482/very_underrated_romance_anime/gizv59b/;1610513525;0;True;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;IDK about anime, but by any chance in the world you like ps4 games and haven't played bloodborne, you should;False;False;;;;1610456916;;False;{};gizv682;False;t3_kvr2wd;False;True;t3_kvr2wd;/r/anime/comments/kvr2wd/best_lovecraftian_anime_recommendations/gizv682/;1610513548;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Miidas-92;;MAL;[];;https://myanimelist.net/profile/Miidas;dark;text;t2_ja1jx;False;False;[];;"Counting anything with more than 50 episodes as long. Here is 15 great ones: - -- Cardcaptor Sakura - -- Monogatari Series - -- Ojamajo Doremi - -- Legend of the Galactic Heroes - -- Ashita no Joe - -- Jojo's Bizarre Adventure - -- Hayate no Gotoku - -- Hunter x Hunter 2011 - -- Hajime no Ippo - -- Fullmetal Alchemist Brotherhood - -- Chihayafuru - -- Haikyuu - -- Attack on Titan - -- Gintama - -- One Piece - -Chibi Maruko-chan and Crayon Shin-chan is both fantastic as well, but you won't be able to find all episodes subbed.";False;False;;;;1610457022;;False;{};gizvbn1;False;t3_kvr2u8;False;False;t3_kvr2u8;/r/anime/comments/kvr2u8/looking_for_s_good_lengthy_anime/gizvbn1/;1610513639;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ShadowClawz;;;[];;;;text;t2_yvlx7;False;False;[];;Noelle has the right to be concerned. Asta and Nero look too good with each other.;False;False;;;;1610457075;;False;{};gizvec9;False;t3_kvpz6g;False;False;t1_giztg19;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizvec9/;1610513705;14;True;False;anime;t5_2qh22;;0;[]; -[];;;itz_unknown_god;;;[];;;;text;t2_97tgx2k5;False;False;[];;Oh ok;False;False;;;;1610457089;;False;{};gizvf0r;True;t3_kvo2yx;False;True;t1_gizut3y;/r/anime/comments/kvo2yx/pls_help_me_find_an_anime_to_watch/gizvf0r/;1610513732;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheLazyBerserker;;;[];;;;text;t2_ewzhcsl;False;False;[];;"Here are some of my favorites: - -Neon Genesis Evangelion: - -[Cruel Angel's Thesis ](https://youtu.be/k8ozVkIkr-g) - -[Fly Me to the Moon ](https://youtu.be/4S6STxv9LDE) - -Cowboy Bebop: - -[Tank!](https://youtu.be/n2rVnRwW0h8) - -[Real Folk Blues ](https://youtu.be/eyI635o2pmk) - -Outlaw Star: - -[Through the Night ](https://youtu.be/-q9I-3tpqbk) - -Fullmetal Alchemist: - -[Melissa ](https://youtu.be/YzJcBq0xufI) - -Record of Lodoss War: - -[Kaze no Fantasia](https://youtu.be/ukR2yn3UczU) - -[Kaze no Hane ](https://youtu.be/KFSap0dokQI) - -[Kiseki no Umi ](https://youtu.be/ux90A4YDLdo) - -[Adesso e Fortuna ](https://youtu.be/vvSfzN-9R_M) - -Flame of Recca: - -[Nanka Shiawase](https://youtu.be/Mf01SHe_C4o) - -Spice and Wolf: - -[Tabi no Tochuu](https://youtu.be/W6q1AWnjNiU) - - - -Hopefully the links work properly";False;False;;;;1610457090;;False;{};gizvf24;False;t3_kvqwp7;False;True;t3_kvqwp7;/r/anime/comments/kvqwp7/recommend_me_anime_songs/gizvf24/;1610513733;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TinyParamedic;;;[];;;;text;t2_o8nebq8;False;False;[];;"Following on The Promised Neverland, Death Note: - - Steins;Gate, Attack on Titan - - - -For Anohana, A Silent Voice: - -Your Lie in April, Violet Evergarden.";False;False;;;;1610457140;;False;{};gizvhoh;False;t3_kvrbv5;False;False;t3_kvrbv5;/r/anime/comments/kvrbv5/beginner_anime_recommendations_please/gizvhoh/;1610513777;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Yuki275;;;[];;;;text;t2_88nfq6i8;False;False;[];;Sure if you don't mind;False;False;;;;1610457148;;False;{};gizvi3g;True;t3_kvr482;False;True;t1_gizv59b;/r/anime/comments/kvr482/very_underrated_romance_anime/gizvi3g/;1610513784;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;"I will consider >70 episodes as lengthy so - -Hunter x hunter and Haikyuu";False;False;;;;1610457152;;False;{};gizvibj;False;t3_kvr2u8;False;True;t3_kvr2u8;/r/anime/comments/kvr2u8/looking_for_s_good_lengthy_anime/gizvibj/;1610513788;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;Slayers;False;False;;;;1610457160;;False;{};gizvion;False;t3_kvr2u8;False;True;t3_kvr2u8;/r/anime/comments/kvr2u8/looking_for_s_good_lengthy_anime/gizvion/;1610513797;1;True;False;anime;t5_2qh22;;0;[]; -[];;;scottnochill;;;[];;;;text;t2_dr75z0r;False;False;[];;Maybe try Shokugeki no Souma;False;False;;;;1610457174;;False;{};gizvjdv;False;t3_kvp3m7;False;True;t3_kvp3m7;/r/anime/comments/kvp3m7/can_you_recommend_any_harem_ecchi_anime_that_are/gizvjdv/;1610513809;1;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"Toradora isnt really underrated as its pretty widely praised, but if you liked it you could check out Golden Time. - -Its written by the same author, but focuses on college students rather than high schoolers";False;False;;;;1610457191;;False;{};gizvkcf;False;t3_kvr482;False;True;t1_gizurey;/r/anime/comments/kvr482/very_underrated_romance_anime/gizvkcf/;1610513827;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;"Try ""MaouYuu""";False;False;;;;1610457201;;False;{};gizvku3;False;t3_kvr482;False;True;t3_kvr482;/r/anime/comments/kvr482/very_underrated_romance_anime/gizvku3/;1610513839;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ktanthony123;;;[];;;;text;t2_18u2buv;False;False;[];;Kimi no todoke. Trust me on this one;False;False;;;;1610457213;;False;{};gizvlh9;False;t3_kvr482;False;True;t3_kvr482;/r/anime/comments/kvr482/very_underrated_romance_anime/gizvlh9/;1610513850;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VideoGamesForU;;;[];;;;text;t2_iyc44;False;False;[];;Some of those chapters are short action sequences only. It really depends if they stretch anything after 163 but I wouldn't count on it.;False;False;;;;1610457249;;False;{};gizvnc2;False;t3_kvpz6g;False;False;t1_gizsvwp;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizvnc2/;1610513887;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Winduzrael;;;[];;;;text;t2_4s5jlqb6;False;False;[];;Thanks a lot for this response! I am really excited to start with these animes. I knew that SAO was not recognized as a ‘best’ anime. But the story resonates with my previous passion for mmorpgs. I am gonna give it a try as well.;False;False;;;;1610457318;;1610457762.0;{};gizvr1t;True;t3_kvpjhh;False;True;t1_gizuxp5;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gizvr1t/;1610513965;1;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"- Recovery of an MMO Junkie is a pretty underrated one I really liked - -- WorldEnd is another one that I really enjoyed that I dont see brought up too often. Its not purely romance (more of a fantasy show with romance involved), but it has one of the better couples I have seen in anime";False;False;;;;1610457337;;False;{};gizvrz0;False;t3_kvr482;False;True;t3_kvr482;/r/anime/comments/kvr482/very_underrated_romance_anime/gizvrz0/;1610513987;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Obligatory Attack on Titan mention here. - -But for real, my recommendation would be From the New World, it's the most similar anime to The Promised Neverland if you're talking about overall horro and eerie theme. I haven't heard the dub, but the sub was amazing. [This is the first scene, subbed (reddit clip)](https://www.reddit.com/r/anime/comments/hzd5sb/the_very_first_scene_of_shinsekai_yori/) - -Psycho-pass is also really great and fits all your descriptions.";False;False;;;;1610457341;;False;{};gizvs79;False;t3_kvrbv5;False;False;t3_kvrbv5;/r/anime/comments/kvrbv5/beginner_anime_recommendations_please/gizvs79/;1610513990;5;True;False;anime;t5_2qh22;;0;[]; -[];;;SonAnka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SonAnka;light;text;t2_4bv8n52s;False;False;[];;I have watched first season of mob and some scenes was to cringy for me. Like he got beaten by teruki (i cant remember exact name blond guy and he became his friend after that and lost his hair) to death. He could use his powers for only deffence but he wont and he talked like ''I cant use my powers to normal humans.'' DUDE YOU DONT NEED USE YOUR POWERS TO THEM! JUST USE AS A SHIELD TO YOURSELF! Anyway :D I dont watched fate serie and actualy im waiting last movie finished air. I have watched index and it was pretty bad... I mean man guy beating to death by his enemies and win fights with last blow. It wasnt enjoyable for me. I'm not sure about Akudama drive, who is main protogoanist? That anime looked to me like ''Lots of main character but non of them is pratoganist''.;False;False;;;;1610457388;;False;{};gizvuob;True;t3_kvqeau;False;False;t1_giztkmo;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizvuob/;1610514039;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mrmaniathesupreme;;;[];;;;text;t2_3n8vd3i8;False;False;[];;I know just about everyone is going to rrccom it, but attack on titan;False;False;;;;1610457417;;False;{};gizvw7e;False;t3_kvrbv5;False;True;t3_kvrbv5;/r/anime/comments/kvrbv5/beginner_anime_recommendations_please/gizvw7e/;1610514067;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VideoGamesForU;;;[];;;;text;t2_iyc44;False;False;[];;Anime was almost right behind the manga when the elf arc ended. Then you also had very short chapters last year, covid breaks for manga and anime etc. Last canon episode was at the middle of April, then it had a 2-3 month break because of Covid and then semifillers till last week. It wasn't that much of a gap.;False;False;;;;1610457429;;False;{};gizvwu0;False;t3_kvpz6g;False;False;t1_giztabt;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizvwu0/;1610514079;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Spade-Demon;;;[];;;;text;t2_5tkn0i2y;False;False;[];;"Because instead of watching 180 episodes, I could just watch the movie and skip to episode 175 in the anime where they kill off the filler villain and I’m not missing anything from the manga. - -As someone who is caught up in the anime and manga, nothing in the first 174 episodes where they adapted 15 chapters of the manga was worth my time except episode 65’s fight animation. The present manga canon episodes are somewhat entertaining, I’ll admit that.";False;False;;;;1610457445;;False;{};gizvxn4;False;t3_kvnfl8;False;False;t3_kvnfl8;/r/anime/comments/kvnfl8/why_does_everyone_hate_boruto/gizvxn4/;1610514093;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;I Can't Understand What My Husband is Saying and Love is Like a Cocktail.;False;False;;;;1610457449;;False;{};gizvxwq;False;t3_kvr482;False;True;t3_kvr482;/r/anime/comments/kvr482/very_underrated_romance_anime/gizvxwq/;1610514098;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SonAnka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SonAnka;light;text;t2_4bv8n52s;False;False;[];;Well i have said i do like to see powerfull MC with lots of fights so i dont like when everyone fights but MC waits, dont join fights, limits his powers etc.. I might be watch when third season arrive but im not sure i will like that kind of MC.;False;False;;;;1610457465;;False;{};gizvyrb;True;t3_kvqeau;False;True;t1_gizstoi;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizvyrb/;1610514114;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AdiMG;;MAL;[];;https://myanimelist.net/profile/adi_mk_ii;dark;text;t2_k0bsu;False;False;[];;"Ah what is the tone of the og series, is it more somber like the second movie? - -As for the stylizations I mostly mean [all those expressive scenes with a drunk Benio where the movie just let's loose](https://www.sakugabooru.com/data/7279842887a8b945c582f70b50218294.mp4). The base art style is w.e to me.";False;False;;;;1610457467;;False;{};gizvyvj;False;t3_kvqhm5;False;True;t1_gizv2rf;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gizvyvj/;1610514116;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigsnake1222;;;[];;;;text;t2_mm0s4;False;False;[];;Yuno literally lived his life as a peasant. The fact that he was born a prince literally changed nothing in the environment he grew up in.;False;False;;;;1610457468;;False;{};gizvywi;False;t3_kvpz6g;False;False;t1_gizswjd;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizvywi/;1610514116;23;True;False;anime;t5_2qh22;;0;[]; -[];;;OvergearedBigBoy;;;[];;;;text;t2_62vx5saq;False;False;[];;High Score Girl;False;False;;;;1610457516;;False;{};gizw1h9;False;t3_kvr482;False;True;t3_kvr482;/r/anime/comments/kvr482/very_underrated_romance_anime/gizw1h9/;1610514169;2;True;False;anime;t5_2qh22;;0;[]; -[];;;VideoGamesForU;;;[];;;;text;t2_iyc44;False;False;[];;Seeing the episode titles they will blaze through chapters in the next episodes.;False;False;;;;1610457521;;False;{};gizw1r0;False;t3_kvpz6g;False;False;t1_gizv0x2;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizw1r0/;1610514175;13;True;False;anime;t5_2qh22;;0;[]; -[];;;degenerate-edgelord;;;[];;;;text;t2_1hbjff8i;False;False;[];;Knowing Josei is indeed the trick. Getting lots of shounen and seinen with some shoujo correct got me only 30/60, I got pretty much all the Josei wrong.;False;False;;;;1610457528;;False;{};gizw245;False;t3_kvqhm5;False;False;t1_gizuzih;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gizw245/;1610514183;9;True;False;anime;t5_2qh22;;0;[]; -[];;;SonAnka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SonAnka;light;text;t2_4bv8n52s;False;False;[];;Yeah I'm looking everywhere aswell but still no luck.;False;False;;;;1610457545;;False;{};gizw305;True;t3_kvqeau;False;True;t1_gizu77w;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizw305/;1610514215;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigsnake1222;;;[];;;;text;t2_mm0s4;False;False;[];;Licht wasn't royal blood.;False;False;;;;1610457561;;False;{};gizw3tm;False;t3_kvpz6g;False;True;t1_gizuc9x;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizw3tm/;1610514241;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DrBrachio;;;[];;;;text;t2_149oc9v9;False;False;[];;"Sure thing! =) - -You can update me in this thread after watching some of those, I would be glad to hear your response :D - -If you like MMORPGs, then i can recommend Overlord.";False;False;;;;1610457565;;False;{};gizw41s;False;t3_kvpjhh;False;True;t1_gizvr1t;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gizw41s/;1610514244;0;True;False;anime;t5_2qh22;;0;[]; -[];;;sonicflash703;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/sonicflash703?status=1;light;text;t2_8pcpjixy;False;False;[];;"- Monogatari Series -- Gintama (it’s easy to binge after ep 20/60) -- Monster";False;False;;;;1610457604;;False;{};gizw60d;False;t3_kvr2u8;False;True;t3_kvr2u8;/r/anime/comments/kvr2u8/looking_for_s_good_lengthy_anime/gizw60d/;1610514292;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yuki275;;;[];;;;text;t2_88nfq6i8;False;False;[];;I'll put it in my list thanks;False;False;;;;1610457680;;False;{};gizwa4n;True;t3_kvr482;False;True;t1_gizvku3;/r/anime/comments/kvr482/very_underrated_romance_anime/gizwa4n/;1610514360;2;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"- Kimino Shiranai Monogatari - -- Platinum Disco - -- Irony (Claris) - -- Connect (Claris) - -- Click (Claris) - -- Oath Sign (LiSA) - -- Answer (Bump of Chicken) - -- Sorairo Days (Shoko Nakagawa) - -- Happily Ever After (Shoko Nakagawa) - -- Onegai Muscle - -- Rhapsody of the Blue Sky (fhana) - -- Kaikai Kitan (Eve) - -- Sirius (Eir Aoi) - -- Spark Again (Aimer) - -- Brave Shine (Aimer) - -- Cruel Angels Thesis - -- Shiny Days (Asaka) - -- Fatima - -- Hacking to the Gate - -- Flyers (BRADIO) - -- Kawakiwoameku (Minami) - -- This Game (Konomi Suzuki) - -- Hikarunara (Goose House) - -- any Oregairu OP and the final season ED";False;False;;;;1610457689;;False;{};gizwake;False;t3_kvqwp7;False;True;t3_kvqwp7;/r/anime/comments/kvqwp7/recommend_me_anime_songs/gizwake/;1610514367;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Yuki275;;;[];;;;text;t2_88nfq6i8;False;False;[];;Kk I'll trust u on this one;False;False;;;;1610457697;;False;{};gizwazx;True;t3_kvr482;False;True;t1_gizvlh9;/r/anime/comments/kvr482/very_underrated_romance_anime/gizwazx/;1610514374;0;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;"Ah, I see you're a man of culture as well. - -Did you watch the OVA of cocktail?";False;False;;;;1610457731;;False;{};gizwct6;False;t3_kvr482;False;True;t1_gizvxwq;/r/anime/comments/kvr482/very_underrated_romance_anime/gizwct6/;1610514404;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Winduzrael;;;[];;;;text;t2_4s5jlqb6;False;False;[];;I am starting today, I will let you know!;False;False;;;;1610457781;;False;{};gizwfj0;True;t3_kvpjhh;False;True;t1_gizw41s;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gizwfj0/;1610514450;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EternalWisdomSleeps;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EternalSleep;light;text;t2_1ux1yne;False;False;[];;"Great quiz! Hopefully it will get traction here. - -Seemingly I can guess/remember target gender quite well, but not the target age... I'm the saltiest about PetShop of Horrors - I [thought that](/s ""Missy Comics DX was a shoujo magazine"")";False;False;;;;1610457781;;False;{};gizwfjf;False;t3_kvqhm5;False;False;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gizwfjf/;1610514450;6;True;False;anime;t5_2qh22;;0;[]; -[];;;CT_BINO;;MAL;[];;https://myanimelist.net/profile/CT_BINO;dark;text;t2_pa5vv;False;False;[];;"> Got 56/60. - -[](#awe)";False;False;;;;1610457786;;False;{};gizwfsw;False;t3_kvqhm5;False;False;t1_gizs09k;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gizwfsw/;1610514454;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;Yep.;False;False;;;;1610457800;;False;{};gizwgkg;False;t3_kvr482;False;True;t1_gizwct6;/r/anime/comments/kvr482/very_underrated_romance_anime/gizwgkg/;1610514468;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SonAnka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SonAnka;light;text;t2_4bv8n52s;False;False;[];;I was waiting last movies sub for my languange (My mother languange is not english) and thet still not make it... They still dont make 3-6 but at this rate im going to watch without sub (i mean without my own languange sub and with english sub) I dont mind chinese but isnt that Yaoi? I'm not of Yaoi at all :D;False;False;;;;1610457843;;False;{};gizwiup;True;t3_kvqeau;False;True;t1_gizuuu0;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizwiup/;1610514505;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;The first half of the series is more lighthearted and has lot comedy and funny moments, there is bit of a toneshift somewhere in the latter half where it gets more serious though but there is still some lighthearted moments.;False;False;;;;1610457877;;False;{};gizwksw;False;t3_kvqhm5;False;True;t1_gizvyvj;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gizwksw/;1610514537;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Oh don't worry he has a reason and a story for it;False;False;;;;1610457900;;False;{};gizwm0y;False;t3_kvqeau;False;True;t1_gizvyrb;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizwm0y/;1610514557;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CT_BINO;;MAL;[];;https://myanimelist.net/profile/CT_BINO;dark;text;t2_pa5vv;False;False;[];;"45/60. - -Most of my misses were from josei shows. Early shows were easy, but the last ones, I had no clue what they were, so had to use the picture to try to guess";False;False;;;;1610457907;;False;{};gizwmdw;False;t3_kvqhm5;False;False;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gizwmdw/;1610514563;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Rigoku;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Elitar;light;text;t2_2j07de1;False;False;[];;"Terra Formars - -But i don't think it's what you are looking for.";False;False;;;;1610457983;;False;{};gizwqn5;False;t3_kvo2ta;False;True;t3_kvo2ta;/r/anime/comments/kvo2ta/anime_like_the_alien_games/gizwqn5/;1610514633;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;He's leader of Elf Tribe. Good enough for me;False;False;;;;1610458025;;False;{};gizwsyy;False;t3_kvpz6g;False;False;t1_gizw3tm;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizwsyy/;1610514671;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"**Attack on Titan** is set in a world where humanity is living in fear of a race of giant monsters called ""Titans"" who are driven solely by their desire to eat human beings. They don't do it to survive, but purely for pleasure. Though the fact that titans die when you slash their neck makes it more of a Lovecraft Lite story. - -**Death Parade**'s [first episode spoilers.](/s ""If you die, you're faced with the binary options of continuing to reincarnate or being discarded and deleted from the system."") - -Also **Bokura no**, but I can't explain why without going into spoilers.";False;False;;;;1610458041;;False;{};gizwtur;False;t3_kvr2wd;False;True;t3_kvr2wd;/r/anime/comments/kvr2wd/best_lovecraftian_anime_recommendations/gizwtur/;1610514685;0;True;False;anime;t5_2qh22;;0;[]; -[];;;je_livre;;;[];;;;text;t2_3crpa13l;False;False;[];;The 12 kingdoms is an amazing classic that’s extremely underrated;False;False;;;;1610458062;;False;{};gizwv2k;False;t3_kvo2yx;False;True;t3_kvo2yx;/r/anime/comments/kvo2yx/pls_help_me_find_an_anime_to_watch/gizwv2k/;1610514704;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;Claymore isnt rated 18+ where I live.;False;False;;;;1610458074;;False;{};gizwvq6;False;t3_kvqhm5;False;False;t1_giztmbd;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gizwvq6/;1610514715;9;True;False;anime;t5_2qh22;;0;[]; -[];;;WeebGamer42069;;;[];;;;text;t2_84e7s2oa;False;False;[];;is that a spoiler from the manga?;False;True;;comment score below threshold;;1610458152;;False;{};gizx00i;False;t3_kvpz6g;False;False;t1_gizsntb;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizx00i/;1610514787;-12;True;False;anime;t5_2qh22;;0;[]; -[];;;Nazenn;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Nazenn;light;text;t2_n4ozd;False;False;[];;Its not explicit because Chinese, just a really strong bond between the characters that enhances the story. Also a lot of kick ass action and stuff though;False;False;;;;1610458179;;False;{};gizx1ix;False;t3_kvqeau;False;True;t1_gizwiup;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizx1ix/;1610514812;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WeebGamer42069;;;[];;;;text;t2_84e7s2oa;False;False;[];;can u tell me the chapter. im just asking for a friend;False;False;;;;1610458183;;False;{};gizx1qv;False;t3_kvpz6g;False;False;t1_gizuw1f;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizx1qv/;1610514815;30;True;False;anime;t5_2qh22;;0;[]; -[];;;JasonUI08G;;;[];;;;text;t2_3ssx4oqw;False;False;[];;why do you think it wont be?;False;False;;;;1610458191;;False;{};gizx26s;True;t3_kvo2ta;False;False;t1_gizwqn5;/r/anime/comments/kvo2ta/anime_like_the_alien_games/gizx26s/;1610514823;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BeneathTheDirt;;;[];;;;text;t2_13hi1t;False;False;[];;no there is /s;False;False;;;;1610458205;;False;{};gizx2xm;False;t3_kvpz6g;False;False;t1_gizx00i;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizx2xm/;1610514835;16;True;False;anime;t5_2qh22;;0;[]; -[];;;itz_unknown_god;;;[];;;;text;t2_97tgx2k5;False;False;[];;Ok I will test it out;False;False;;;;1610458280;;False;{};gizx73r;True;t3_kvo2yx;False;False;t1_gizwv2k;/r/anime/comments/kvo2yx/pls_help_me_find_an_anime_to_watch/gizx73r/;1610514904;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;To add on to the answer, [check out this flowchart for your taste (imgur link)](https://imgur.com/q9Xjv4p);False;False;;;;1610458351;;False;{};gizxb4d;False;t3_kvq1a6;False;True;t1_gizozwl;/r/anime/comments/kvq1a6/yo_guys_i_have_a_question_what_anime_should_i/gizxb4d/;1610514968;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zoriba99;;;[];;;;text;t2_4r8l3ebw;False;False;[];;lol 232;False;False;;;;1610458454;;False;{};gizxgz8;False;t3_kvpz6g;False;False;t1_gizx1qv;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizxgz8/;1610515065;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;[Here's a romance recommendation thread from yesterday.](https://www.reddit.com/r/anime/comments/kvahtd/what_are_some_of_the_must_watch_romance_animes/);False;False;;;;1610458458;;False;{};gizxh6z;False;t3_kvr482;False;True;t3_kvr482;/r/anime/comments/kvr482/very_underrated_romance_anime/gizxh6z/;1610515069;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Skrzelik, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610458469;moderator;False;{};gizxhsb;False;t3_kvrqnq;False;True;t3_kvrqnq;/r/anime/comments/kvrqnq/tip_on_how_to_hide_spoilers_from_other_subredits/gizxhsb/;1610515079;1;False;False;anime;t5_2qh22;;0;[]; -[];;;PresidentNathan;;;[];;;;text;t2_139jqw;False;False;[];;Ten episodes? What? No try 20 to 30;False;False;;;;1610458480;;False;{};gizxifb;False;t3_kvpz6g;False;False;t1_gizqqom;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizxifb/;1610515089;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610458481;;False;{};gizxign;False;t3_kvpz6g;False;False;t1_gizx1qv;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizxign/;1610515089;10;True;False;anime;t5_2qh22;;0;[]; -[];;;BI01;;;[];;;;text;t2_zl6tr;False;False;[];;"mob doesnt fight him because of what reigan told him. to prove that having psyhic powers doesnt make u better than everyone, but he does use hes powers more and fights willingly obviously as the series goes as he fights bad guys. - -akudama drive is a cyber punk theme action anime the main character her self is just a normal girl but the rest are all powerful with different quirks";False;False;;;;1610458512;;False;{};gizxk8q;False;t3_kvqeau;False;True;t1_gizvuob;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizxk8q/;1610515118;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aniMayor;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aniMayor/;light;text;t2_oymny;False;True;[];;Agreed, the first movie was very charming and the modernized character designs looked great!;False;False;;;;1610458535;;False;{};gizxlhn;False;t3_kvqhm5;False;True;t1_gizudbu;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gizxlhn/;1610515138;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;"They already have some stop motion videos on youtube but a mini anime of thicc waifus. - -# I will take it.";False;False;;;;1610458588;;False;{};gizxojf;False;t3_kvpoo2;False;False;t3_kvpoo2;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gizxojf/;1610515188;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610458650;;False;{};gizxs6o;False;t3_kvpz6g;False;True;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizxs6o/;1610515249;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BrenttheGent;;;[];;;;text;t2_70sb4;False;False;[];;"Kk thanks. You perfectly explained why there was a long gap but then said it wasn't much of a gap. April was 9 months ago, seems pretty long to me haha, knowing we'll catch up in a couple of month - -(Semifillers are irrelevant to me as I didn't/wouldn't watch them anyways. )";False;False;;;;1610458659;;False;{};gizxspb;False;t3_kvpz6g;False;False;t1_gizvwu0;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizxspb/;1610515258;6;True;False;anime;t5_2qh22;;0;[]; -[];;;VideoGamesForU;;;[];;;;text;t2_iyc44;False;False;[];;At Episode 163 we will be at Chapter 245 which leaves us with about 35-36 chapters till then. Because many of those are action scenes I would say that pacing will be 3 chapter/episode on average which is about 10-12 episodes. Seeing the OP and what they want to reach it makes a lot of sense.;False;False;;;;1610458784;;False;{};gizxzpn;False;t3_kvpz6g;False;False;t1_gizxifb;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizxzpn/;1610515379;14;True;False;anime;t5_2qh22;;0;[]; -[];;;smiley-rell;;;[];;;;text;t2_9iaznvjw;False;False;[];;Bloom into you;False;False;;;;1610458852;;False;{};gizy3l7;False;t3_kvr482;False;True;t3_kvr482;/r/anime/comments/kvr482/very_underrated_romance_anime/gizy3l7/;1610515443;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mrjol;;;[];;;;text;t2_yzaih;False;False;[];;Lmao I totally forgot that was in the manga.;False;False;;;;1610458864;;False;{};gizy49s;False;t3_kvpz6g;False;False;t1_gizuw1f;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizy49s/;1610515454;4;True;False;anime;t5_2qh22;;0;[]; -[];;;baquea;;;[];;;;text;t2_j3k0u;False;True;[];;"37/60 - -Could be better but a bit tough when I'm unfamiliar with most of these titles and have watched fuck all josei.";False;False;;;;1610458866;;False;{};gizy4co;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gizy4co/;1610515455;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OperatorERROR0919;;;[];;;;text;t2_6g1zxhwa;False;False;[];;Toradora is literally ranked #16 in popularity on MAL. It's a great show but it is in no way underrated.;False;False;;;;1610458954;;False;{};gizy9c8;False;t3_kvr482;False;False;t1_gizuil5;/r/anime/comments/kvr482/very_underrated_romance_anime/gizy9c8/;1610515540;5;True;False;anime;t5_2qh22;;0;[]; -[];;;VideoGamesForU;;;[];;;;text;t2_iyc44;False;False;[];;about half a year of chapters is nothing in terms of having a gap for the production unfortunately. Yes April was 9 months ago, but episodes only aired for about 6 months :);False;False;;;;1610459063;;False;{};gizyfqs;False;t3_kvpz6g;False;False;t1_gizxspb;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizyfqs/;1610515645;6;True;False;anime;t5_2qh22;;0;[]; -[];;;PresidentNathan;;;[];;;;text;t2_139jqw;False;False;[];;I agree there are a lot of action panels in those issues, but there is also a lot of back story that can be expanded on as well, especially with characters coming up after episode 163. Also it looks like they will make all of chapter 234 into an episode as that happens really quick in the manga. I would bet there will be a bunch of cannon filler in the upcoming back stories. It's one of the things the manga is light on in these chapters.;False;False;;;;1610459099;;False;{};gizyhwh;False;t3_kvpz6g;False;True;t1_gizxzpn;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizyhwh/;1610515680;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;I do not think so, that's a very niche character that doesn't have enough strong support to warrant her own subreddit;False;False;;;;1610459150;;False;{};gizykxo;False;t3_kvr40v;False;True;t3_kvr40v;/r/anime/comments/kvr40v/is_there_any_darling_in_the_franxx_kokoro_subs/gizykxo/;1610515733;1;True;False;anime;t5_2qh22;;0;[]; -[];;;filimaua13;;;[];;;;text;t2_2aq8dlok;False;False;[];;"No. The movie was just released in Japan in October last year which takes place after the first season. - -I'm not sure about a Season 2.. but its highly likely for a S2 due to its popularity.";False;False;;;;1610459183;;False;{};gizymv3;False;t3_kvrw46;False;False;t3_kvrw46;/r/anime/comments/kvrw46/is_the_anime_of_demon_slayer_finished/gizymv3/;1610515766;10;True;False;anime;t5_2qh22;;0;[]; -[];;;QuieroEstar;;;[];;;;text;t2_8tud3fvw;False;False;[];;No, there's a movie currently in theatres in Japan and there's still story after that;False;False;;;;1610459201;;False;{};gizyny5;False;t3_kvrw46;False;False;t3_kvrw46;/r/anime/comments/kvrw46/is_the_anime_of_demon_slayer_finished/gizyny5/;1610515784;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PotatoEater19;;;[];;;;text;t2_penuu;False;False;[];;We'll see a new season as of now only season 1 and movie is out;False;False;;;;1610459218;;False;{};gizyovo;False;t3_kvrw46;False;True;t3_kvrw46;/r/anime/comments/kvrw46/is_the_anime_of_demon_slayer_finished/gizyovo/;1610515799;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SonAnka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SonAnka;light;text;t2_4bv8n52s;False;False;[];;"I dont said he should? He could just defend himself and not beating by death. When MC got beaten by his enemies i just cant stand that shit :D - -Then Akudama is not for me... Because im looking powerfull MC not normal person while eveyone have powers. Anyway thanks :D";False;False;;;;1610459251;;False;{};gizyqud;True;t3_kvqeau;False;True;t1_gizxk8q;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizyqud/;1610515832;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tarsene;;;[];;;;text;t2_1ne98l0;False;False;[];;"Brand new days- p3 -Kimi no kioku- p3 -Burn mu dread- p3 -Yukitoki -Kaze ni nare -Ying yang- p4 -Mass destruction - p3";False;False;;;;1610459284;;False;{};gizysua;False;t3_kvqwp7;False;True;t3_kvqwp7;/r/anime/comments/kvqwp7/recommend_me_anime_songs/gizysua/;1610515864;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Can't go wrong with Death Note and Attack on Titan, they always end on some sort of cliffhanger that will keep you watching;False;False;;;;1610459339;;False;{};gizyw42;False;t3_kvrbv5;False;True;t3_kvrbv5;/r/anime/comments/kvrbv5/beginner_anime_recommendations_please/gizyw42/;1610515921;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SonAnka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SonAnka;light;text;t2_4bv8n52s;False;False;[];;I dont know i have read its Yaoi and i dont even enjoy little bit. Even without Yaoi tag Yaoi like movements misses my taste.;False;False;;;;1610459351;;False;{};gizywvf;True;t3_kvqeau;False;True;t1_gizx1ix;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gizywvf/;1610515934;1;True;False;anime;t5_2qh22;;0;[]; -[];;;slicer4ever;;;[];;;;text;t2_bgvkp;False;False;[];;"Honestly feel like this undercuts the story tones of black clover if it's true. The idea that you can be born with immense magic and not be a royal was a bit of a driving force for yuno+asta, but now it's ""lol, no, you only get immense magic if your a royal"".";False;False;;;;1610459400;;False;{};gizyzrl;False;t3_kvpz6g;False;False;t1_gizq91a;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizyzrl/;1610515983;9;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Human12890, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610459501;moderator;False;{};gizz5td;False;t3_kvs0mj;False;True;t3_kvs0mj;/r/anime/comments/kvs0mj/what_are_some_anime_with_bold_and_vibrant_colours/gizz5td/;1610516081;1;False;False;anime;t5_2qh22;;0;[]; -[];;;VideoGamesForU;;;[];;;;text;t2_iyc44;False;False;[];;Let's hope for the best. I don't mind additional content in Black Clover.;False;False;;;;1610459526;;False;{};gizz73a;False;t3_kvpz6g;False;False;t1_gizyhwh;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizz73a/;1610516102;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610459539;;False;{};gizz80s;False;t3_kvq0mr;False;True;t1_gizsle7;/r/anime/comments/kvq0mr/help_me_make_swot_analysis_of_aot/gizz80s/;1610516117;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610459589;;1610487722.0;{};gizzb1n;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gizzb1n/;1610516168;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tasthar;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tasthar;light;text;t2_1fhlyiyc;False;False;[];;Gekkan Shoujo Nozaki-kun;False;False;;;;1610459590;;False;{};gizzb3j;False;t3_kvp6f9;False;True;t3_kvp6f9;/r/anime/comments/kvp6f9/can_someone_give_me_their_funniest_anime_they_know/gizzb3j/;1610516169;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610459772;;False;{};gizzm4w;False;t3_kvq0mr;False;True;t3_kvq0mr;/r/anime/comments/kvq0mr/help_me_make_swot_analysis_of_aot/gizzm4w/;1610516352;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ashteron;;;[];;;;text;t2_10ndkv;False;False;[];;Start with Evangelion if you feel like crying yourself to sleep.;False;False;;;;1610459806;;False;{};gizzo9n;False;t3_kvpjhh;False;False;t3_kvpjhh;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gizzo9n/;1610516387;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AntiBomb;;;[];;;;text;t2_ykhgm;False;False;[];;"23/60 - -To Love Ru is a shonen, wtf?";False;False;;;;1610459821;;False;{};gizzp8j;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gizzp8j/;1610516403;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Winduzrael;;;[];;;;text;t2_4s5jlqb6;False;False;[];;Why 😂;False;False;;;;1610459828;;False;{};gizzpmu;True;t3_kvpjhh;False;False;t1_gizzo9n;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gizzpmu/;1610516409;1;True;False;anime;t5_2qh22;;0;[]; -[];;;brotato96;;;[];;;;text;t2_16ylw4gr;False;False;[];;Blend S. It became a viral meme;False;False;;;;1610459973;;False;{};gizzynm;False;t3_kvs4ah;False;False;t3_kvs4ah;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gizzynm/;1610516559;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BrenttheGent;;;[];;;;text;t2_70sb4;False;False;[];;"Thanks pal, appreciate the answers. Still feels off to me though haha! - -Was manga on a large break for covid? I only read one piece and it's ""covid break"" was 2 weeks. - -Like mha last episode was in April as well and is coming out with a season next season, and it doesn't have the filler/gags/petit clover BC does. - -Is short chapters a consistent thing the author does or just during covid times? Should we expect more or less this current pace for future?";False;False;;;;1610459975;;False;{};gizzyqx;False;t3_kvpz6g;False;False;t1_gizyfqs;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gizzyqx/;1610516560;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yorozuya_Yaro;;;[];;;;text;t2_5d93lbxr;False;False;[];;Goblin slayer, one piece.;False;False;;;;1610459998;;False;{};gj000a3;False;t3_kvs0mj;False;True;t3_kvs0mj;/r/anime/comments/kvs0mj/what_are_some_anime_with_bold_and_vibrant_colours/gj000a3/;1610516586;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Godmode_hero;;;[];;;;text;t2_6o1n4cpk;False;False;[];;I find anime by three parameters: 1 story 2 opening 3 thr most important one! The Waifu.;False;False;;;;1610460007;;False;{};gj000ss;False;t3_kvs4ah;False;True;t3_kvs4ah;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj000ss/;1610516594;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Human12890;;;[];;;;text;t2_8it5vyb4;False;False;[];;I remember watching One Piece as a kid, who was the OP character/s in One Piece? I remember Luffy and the bad ass Zolo;False;False;;;;1610460069;;False;{};gj004nd;True;t3_kvs0mj;False;True;t1_gj000a3;/r/anime/comments/kvs0mj/what_are_some_anime_with_bold_and_vibrant_colours/gj004nd/;1610516656;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lolminna;;;[];;;;text;t2_h37nh;False;False;[];;No, that's not the theme of BC. The theme is, you can be successful regardless of where you started with hard work and dedication. Yuno's starting point might have been further on than Asta's, but it was the same starting point as people like Solid and Nebra Silva. The difference is that Yuno has gotten to where he is now due to a bit of luck and a lot of hard work. Same goes for Noelle.;False;False;;;;1610460183;;False;{};gj00bkd;False;t3_kvpz6g;False;False;t1_gizyzrl;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj00bkd/;1610516786;52;True;False;anime;t5_2qh22;;0;[]; -[];;;DrBrachio;;;[];;;;text;t2_149oc9v9;False;False;[];;Haha, someone downvoted both my comments, must be some poor, confused sao fanboi who hasn't seen anything else :D;False;False;;;;1610460185;;False;{};gj00bpw;False;t3_kvpjhh;False;False;t1_gizwfj0;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gj00bpw/;1610516789;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FlippehD;;;[];;;;text;t2_lt6pq;False;False;[];;But it does change that he has innate magical talent, and why it makes sense.;False;False;;;;1610460256;;False;{};gj00g0d;False;t3_kvpz6g;False;False;t1_gizvywi;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj00g0d/;1610516868;43;True;False;anime;t5_2qh22;;0;[]; -[];;;Archangel_Omega;;;[];;;;text;t2_kezu5;False;False;[];;"Can's think of any that fully match, but here are a few that have some of what you're looking for in that age range and a modern setting I can think of, but nothing that's hitting all the points. - -[Omamori Himari](https://myanimelist.net/anime/6324/Omamori_Himari) - -[Blood+](https://myanimelist.net/anime/150/Blood_?q=Blood&cat=anime) - -[Shakugan no Shana](https://myanimelist.net/anime/355/Shakugan_no_Shana) : Red head instead of black for Shana - -[Kara no Kyoukai](https://myanimelist.net/anime/2593/Kara_no_Kyoukai_1:_Fukan_Fuukei) : Not an anime, but a series of movies";False;False;;;;1610460290;;False;{};gj00i6b;False;t3_kvq8ty;False;True;t3_kvq8ty;/r/anime/comments/kvq8ty/looking_for_a_specific_anime_anime_with_a_girl/gj00i6b/;1610516904;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lolminna;;;[];;;;text;t2_h37nh;False;False;[];;Lately the manga chapters have been longer but they're mostly 12-13 pages up to this point, composed of short action scenes too, not much talking.;False;False;;;;1610460353;;False;{};gj00m45;False;t3_kvpz6g;False;False;t1_gizzyqx;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj00m45/;1610516967;5;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;For you, milion and milion of people love it for his story/mistery;False;False;;;;1610460381;;False;{};gj00nyy;False;t3_kvq0mr;False;True;t1_gizsle7;/r/anime/comments/kvq0mr/help_me_make_swot_analysis_of_aot/gj00nyy/;1610516996;2;True;False;anime;t5_2qh22;;0;[]; -[];;;minezum;;;[];;;;text;t2_o0xti;False;False;[];;Yes. Both series were in shonen magazines. The first part in Weekly Shonen Jump and Darkness in Jump SQ.;False;False;;;;1610460507;;False;{};gj00vu2;False;t3_kvqhm5;False;False;t1_gizzp8j;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj00vu2/;1610517120;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;There are two more seasons worth of content left to be adapted;False;False;;;;1610460591;;False;{};gj0116q;False;t3_kvrw46;False;False;t3_kvrw46;/r/anime/comments/kvrw46/is_the_anime_of_demon_slayer_finished/gj0116q/;1610517210;7;True;False;anime;t5_2qh22;;0;[]; -[];;;VideoGamesForU;;;[];;;;text;t2_iyc44;False;False;[];;My Hero Academia is a seasonal show so they don't need to do any fillers at all. The next season is almost always 9 months after the last which creates a gap of 9 months of manga chapters. Black Clover is airing for over 3 years now and had bad pacing at the begining. Short chapters are almost always because of other factors like the author not having enough time/being sick/the whole covid affair. Hero Academia also always had at least a 2 arc gap.;False;False;;;;1610460599;;False;{};gj011qq;False;t3_kvpz6g;False;True;t1_gizzyqx;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj011qq/;1610517218;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;Drifters comes to mind;False;False;;;;1610460628;;False;{};gj013ko;False;t3_kvs4ah;False;True;t3_kvs4ah;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj013ko/;1610517246;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Noragami Aragato's opening was super fun to listen to, and so I started Noragami. - -Absolutely worth watching. I expected a general shounen, I came out with an Urban Fantasy with well written characters and backstories. Also the protagonist's parents are alive and kicking for once.";False;False;;;;1610460668;;False;{};gj0167i;False;t3_kvs4ah;False;False;t3_kvs4ah;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj0167i/;1610517290;6;True;False;anime;t5_2qh22;;0;[]; -[];;;brotato96;;;[];;;;text;t2_16ylw4gr;False;False;[];;Demon Slayer;False;False;;;;1610460713;;False;{};gj01921;False;t3_kvrbv5;False;True;t3_kvrbv5;/r/anime/comments/kvrbv5/beginner_anime_recommendations_please/gj01921/;1610517336;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi kk_213, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610460748;moderator;False;{};gj01bbc;False;t3_kvsds7;False;True;t3_kvsds7;/r/anime/comments/kvsds7/anime_with_best_smug_girl/gj01bbc/;1610517370;2;False;False;anime;t5_2qh22;;0;[]; -[];;;conpe12;;;[];;;;text;t2_7k1n1by4;False;False;[];;Nahh noelle's only reliant on her armour called PLOT armor.;False;True;;comment score below threshold;;1610460820;;False;{};gj01fxs;False;t3_kvpz6g;False;True;t1_gj00bkd;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj01fxs/;1610517443;-15;True;False;anime;t5_2qh22;;0;[]; -[];;;K1NG0492;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/K1ngg;light;text;t2_1509g9;False;False;[];;"The ending interaction with Charmy, Asta and Rill was a lot funnier in the manga. - -Charmy called herself ""THICC"" over there instead of pleasantly plump";False;False;;;;1610460885;;False;{};gj01k3v;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj01k3v/;1610517509;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Florac;;;[];;;;text;t2_vy0sf;False;False;[];;yeah...really not a fan of it. The editing feels really messy, only attempting to shove as many characters in it as possible in as little time. Disappointing after how good the s1 ones were. Doesn't even have a groupshot like those, nor really fit upcoming arcs;False;False;;;;1610460908;;1610461192.0;{};gj01ljd;False;t3_kvsc53;False;False;t3_kvsc53;/r/anime/comments/kvsc53/that_time_i_got_reincarnated_as_a_slime_season_2/gj01ljd/;1610517532;19;True;False;anime;t5_2qh22;;0;[]; -[];;;lolminna;;;[];;;;text;t2_h37nh;False;False;[];;Each member of the main cast has plot armor lol.;False;False;;;;1610460975;;False;{};gj01pux;False;t3_kvpz6g;False;False;t1_gj01fxs;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj01pux/;1610517601;10;True;False;anime;t5_2qh22;;0;[]; -[];;;SyeZack;;;[];;;;text;t2_5cokvse4;False;False;[];;Next week will start the real deal😈;False;False;;;;1610460982;;False;{};gj01qac;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj01qac/;1610517607;8;True;False;anime;t5_2qh22;;0;[]; -[];;;conpe12;;;[];;;;text;t2_7k1n1by4;False;False;[];;I think they would stretch the action scenes.;False;False;;;;1610461004;;False;{};gj01rnq;False;t3_kvpz6g;False;False;t1_gizvnc2;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj01rnq/;1610517629;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ShadowClawz;;;[];;;;text;t2_yvlx7;False;False;[];;"Tell your ""Friend"" go to horny jail";False;False;;;;1610461026;;False;{};gj01t4k;False;t3_kvpz6g;False;False;t1_gizx1qv;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj01t4k/;1610517654;8;True;False;anime;t5_2qh22;;0;[]; -[];;;conpe12;;;[];;;;text;t2_7k1n1by4;False;False;[];;"I hope they made the heart kingdom fights longer; I mean Luck, charmy and Leo's fight is 1 chapter each. I hope they manage to stretch it for 1 episode each, that would surely help with the gap problem. They could fill it with back stories and more action scenes which would add additional depth to the story and prolong it as a whole.";False;False;;;;1610461205;;False;{};gj024r1;False;t3_kvpz6g;False;True;t1_gizs36l;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj024r1/;1610517841;1;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;"A wild Charmy appeared! - -Compared to Diamond and Clover Kingdom, Heart Kingdom barely has any Magic Knight. It seems that they're relying on a few powerful knight rather than a lot of it. Maybe it's because Loropechika has that power which covers the whole kingdom. - -I got spoiled that Yuno is a spade kingdom prince a while ago. I'm glad that they revealed this so early.";False;False;;;;1610461301;;False;{};gj02azr;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj02azr/;1610517940;7;True;False;anime;t5_2qh22;;0;[]; -[];;;slicer4ever;;;[];;;;text;t2_bgvkp;False;False;[];;">The theme is, you can be successful regardless of where you started - -Yes and imo that is fully killed off in this episode. It already is on shaky ground because who would asta be if he wasn't lucky and got the 5 leaf clover? All his hard training still would have amount to very little if he wasn't lucky and got the sword. - -Similarly yuno isn't just some no name peasant now, he is a royal who had immense amount of magic, just so happened to have his family assumingly killed, and forced to grow up in the boonies. - -The hard work they've done is second to the innate gifts they were born with. Imo it makes more sense the theme would be about doing the best with what your given in life, and not neccessairly that you can be anything through hard work alone.";False;False;;;;1610461324;;False;{};gj02cjg;False;t3_kvpz6g;False;False;t1_gj00bkd;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj02cjg/;1610517967;11;True;False;anime;t5_2qh22;;0;[]; -[];;;BrenttheGent;;;[];;;;text;t2_70sb4;False;False;[];;"Ohkie dokie,maybe they should have just treated BC like a seasonal anime then, like if we only have 10 episodes til were caught up then from Jan 2020-summer 2021, mha will have more manga adapted anime episodes than BC in at least a year and a half range. - -Oh well! Worth the wait!";False;False;;;;1610461326;;False;{};gj02cp2;False;t3_kvpz6g;False;True;t1_gj011qq;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj02cp2/;1610517969;1;True;False;anime;t5_2qh22;;0;[]; -[];;;conpe12;;;[];;;;text;t2_7k1n1by4;False;False;[];;I also hope the fight with each triad was 3 episodes long.. I mean, in dante's case its a given, but vanica vs noelle only lasted for 5 chapters, which I think is 2 episodes long. Zenon's fight is much shorter.;False;False;;;;1610461327;;False;{};gj02cs5;False;t3_kvpz6g;False;True;t1_gj024r1;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj02cs5/;1610517970;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steallight;;;[];;;;text;t2_6loku516;False;False;[];;Yuru Yuri, you have Kyouko for that;False;False;;;;1610461337;;False;{};gj02dfe;False;t3_kvsds7;False;True;t3_kvsds7;/r/anime/comments/kvsds7/anime_with_best_smug_girl/gj02dfe/;1610517981;0;True;False;anime;t5_2qh22;;0;[]; -[];;;princB612;;;[];;;;text;t2_luwcpu;False;False;[];;[i'll just leave this here then](https://m.youtube.com/watch?v=-jzckBZIFIw);False;False;;;;1610461338;;False;{};gj02di8;False;t3_kvqwp7;False;True;t3_kvqwp7;/r/anime/comments/kvqwp7/recommend_me_anime_songs/gj02di8/;1610517983;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nayhel89;;;[];;;;text;t2_11t5ey;False;False;[];;Demonbane;False;False;;;;1610461351;;False;{};gj02ec7;False;t3_kvr2wd;False;True;t3_kvr2wd;/r/anime/comments/kvr2wd/best_lovecraftian_anime_recommendations/gj02ec7/;1610517995;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;"Being a royal literally gives you magic talent and an insane mana pool. - -That's like the one of the base points of the show, that being a born peasant makes you trash. - -People like Luck (commoner) are one in a million.";False;False;;;;1610461377;;False;{};gj02g1l;False;t3_kvpz6g;False;False;t1_gizvywi;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj02g1l/;1610518021;19;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;"A couple actually. -- Death Parade -- Kaguya-sama -- Demon Slayer -- The Monogatari Series (Actually the ED not OP for this one.)";False;False;;;;1610461400;;False;{};gj02hjt;False;t3_kvs4ah;False;False;t3_kvs4ah;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj02hjt/;1610518045;7;True;False;anime;t5_2qh22;;0;[]; -[];;;TacoBellIsChipotle;;;[];;;;text;t2_7l9egrg6;False;False;[];;Why does the order matter?;False;False;;;;1610461451;;False;{};gj02kz1;False;t3_kvpjhh;False;False;t3_kvpjhh;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gj02kz1/;1610518100;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jonjoy;;;[];;;;text;t2_ob4ey;False;False;[];;"> D4DJ's mini anime. - -they also get one?";False;False;;;;1610461452;;False;{};gj02l1z;False;t3_kvpoo2;False;True;t1_gizmx5m;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gj02l1z/;1610518102;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Buzzinator;;;[];;;;text;t2_8ddf1;False;False;[];;Gundam : Iron-Blooded Orphans more recently after being suggested Rage of Dust by Spyair on YouTube. Other than that, D.Gray-man and Guilty Crown come to mind.;False;False;;;;1610461463;;False;{};gj02lqj;False;t3_kvs4ah;False;True;t3_kvs4ah;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj02lqj/;1610518113;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jonjoy;;;[];;;;text;t2_ob4ey;False;False;[];;Assault lily pico?;False;False;;;;1610461463;;False;{};gj02lr3;False;t3_kvpoo2;False;False;t3_kvpoo2;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gj02lr3/;1610518113;7;True;False;anime;t5_2qh22;;0;[]; -[];;;conpe12;;;[];;;;text;t2_7k1n1by4;False;False;[];;You do know that black clover trended worldwide because of the ending right?? not the opening;False;False;;;;1610461465;;False;{};gj02lvn;False;t3_kvpz6g;False;False;t1_gizuqt3;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj02lvn/;1610518116;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Wolfgod_Holo;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;Still waiting for Spice and Wolf Season 3;light;text;t2_xdcy6;False;False;[];;I look forward to seeing some glorious head tilts;False;False;;;;1610461469;;False;{};gj02m4m;False;t3_kvpoo2;False;True;t3_kvpoo2;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gj02m4m/;1610518120;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sonicflash703;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/sonicflash703?status=1;light;text;t2_8pcpjixy;False;False;[];;Mob Psycho 100;False;False;;;;1610461511;;False;{};gj02owy;False;t3_kvs0mj;False;False;t3_kvs0mj;/r/anime/comments/kvs0mj/what_are_some_anime_with_bold_and_vibrant_colours/gj02owy/;1610518162;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Winduzrael;;;[];;;;text;t2_4s5jlqb6;False;False;[];;I’d rather watch from good to great, than vice versa;False;False;;;;1610461521;;False;{};gj02pi2;True;t3_kvpjhh;False;True;t1_gj02kz1;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gj02pi2/;1610518171;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AurelioRis;;;[];;;;text;t2_16gjuk;False;False;[];;I absolutely loved watching Asta fly with his sword in the same way Goku used to fly with his cloud. Brings back memories!;False;False;;;;1610461528;;False;{};gj02pyb;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj02pyb/;1610518179;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;Madoka Magica;False;False;;;;1610461549;;False;{};gj02rcw;False;t3_kvrbv5;False;True;t3_kvrbv5;/r/anime/comments/kvrbv5/beginner_anime_recommendations_please/gj02rcw/;1610518200;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rotten_riot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RottenOrange/;light;text;t2_20f93nxp;False;False;[];;">Though I wonder why this is a mini anime and what makes it different - -Probably a TV Short. Mini Anime show the characters from the main series in funny and chill situations.";False;False;;;;1610461574;;False;{};gj02t26;False;t3_kvpoo2;False;False;t1_gizr9yk;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gj02t26/;1610518228;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ShadowClawz;;;[];;;;text;t2_yvlx7;False;False;[];;Grandeur is almost catching up with Black Catcher in terms of Youtube views. And the time frame was much smaller.;False;False;;;;1610461586;;False;{};gj02ttk;False;t3_kvpz6g;False;False;t1_gj02lvn;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj02ttk/;1610518240;6;True;False;anime;t5_2qh22;;0;[]; -[];;;BrenttheGent;;;[];;;;text;t2_70sb4;False;False;[];;Well good to know whatever we get is pure action. Would be content with character development/lore etc but after this wait I'm pumped for asta to smack some demon faces.;False;False;;;;1610461595;;False;{};gj02ugz;False;t3_kvpz6g;False;True;t1_gj00m45;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj02ugz/;1610518250;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MrSoosh;;;[];;;;text;t2_2h8th6q5;False;False;[];;I swear luck isn’t a commoner;False;False;;;;1610461603;;False;{};gj02v01;False;t3_kvpz6g;False;False;t1_gj02g1l;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj02v01/;1610518258;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Taltibalti;;;[];;;;text;t2_srbia13;False;False;[];;That female from 7 seeds in the picture looks exactly like a certain someone with make up;False;False;;;;1610461604;;False;{};gj02v2k;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj02v2k/;1610518259;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;"Asta would just be a mini Mereleona if he had gotten some other magic the hell you talking about. - -Even killing devils is not unique to him, all arcane stages can.";False;False;;;;1610461633;;False;{};gj02x0h;False;t3_kvpz6g;False;False;t1_gj02cjg;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj02x0h/;1610518292;20;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;Fairy Tail;False;False;;;;1610461650;;False;{};gj02y43;False;t3_kvs0mj;False;True;t3_kvs0mj;/r/anime/comments/kvs0mj/what_are_some_anime_with_bold_and_vibrant_colours/gj02y43/;1610518310;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;It wasn't bad up until the last 30 or so seconds. Showing all of the villagers, Milim, Rimuru's students, and Rimuru fighting was on par with the first two IMO, even if the song is a bit annoying.;False;False;;;;1610461660;;False;{};gj02yqk;False;t3_kvsc53;False;True;t1_gj01ljd;/r/anime/comments/kvsc53/that_time_i_got_reincarnated_as_a_slime_season_2/gj02yqk/;1610518321;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;Wait which ED for monogatari? I'm intrigued.;False;False;;;;1610461662;;False;{};gj02ywg;False;t3_kvs4ah;False;True;t1_gj02hjt;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj02ywg/;1610518324;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DqrkExodus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Seraira;light;text;t2_162r04;False;False;[];;Kakegurui has a couple;False;False;;;;1610461675;;False;{};gj02zrp;False;t3_kvsds7;False;True;t3_kvsds7;/r/anime/comments/kvsds7/anime_with_best_smug_girl/gj02zrp/;1610518340;0;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;Asta still a human peasant with no gifts. He still carries the spirit of the show.;False;False;;;;1610461683;;False;{};gj030ba;False;t3_kvpz6g;False;True;t1_gizyzrl;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj030ba/;1610518349;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ORE_WA_WEEB_DESU_AMA;;;[];;;;text;t2_xvc5z;False;False;[];;"ED - ""STORYSEEKER"" by STEREO DIVE FOUNDATION -https://streamable.com/1gjtam";False;False;;;;1610461728;;False;{};gj03370;True;t3_kvsc53;False;False;t3_kvsc53;/r/anime/comments/kvsc53/that_time_i_got_reincarnated_as_a_slime_season_2/gj03370/;1610518399;10;True;False;anime;t5_2qh22;;0;[]; -[];;;TacoBellIsChipotle;;;[];;;;text;t2_7l9egrg6;False;False;[];;But I don't know what you consider to be good or great. What if your opinions aren't the same as mine? If you want strangers to dictate the watch order, check out http://myanimelist.net where each of these shows have been scored.;False;False;;;;1610461738;;False;{};gj033vr;False;t3_kvpjhh;False;True;t1_gj02pi2;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gj033vr/;1610518416;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ichigo1842;;;[];;;;text;t2_6p721y41;False;False;[];;"Some anime with badass/op character are - -Action, Adventure, Supernatural, and Comedy - -Demon Slayer - -Fairy Tail - -AoT (aka: Attack on Titan) - -GoH (aka: God of Highschool) - -Plunderer ( this one is kinda ecchi so yeah) - -SAO ( aka Sword Art Online, first season is my fav, personally) - -Saint Seyia ( Idk if anybody watch this anymore) - -Jujutsu Kaisen - -Fire Force - -MHA ( aka My Hero Academia, the mc starts out weak but ends up strong) - -Bleach (Idk if you´ll like this one bc sometime the plot is really slow) - -Black Clover - -Tokyo Ghoul ( mc starts out as a normal person but then change and get op) - -( All i can think of out of my head rn) - -Some good anime: - -Highschool of the Dead ( ecchi, horror) - -Darwin´s Game ( Only 11 episode bc covid and had to stop) - -Food War - -Grand Blue ( hilarious with some ecchiness {idk if thats a word lol}) - -Prison School ( Kinda like Grand Blue) - -Blue Excorist - -Boruto? Maybe. Ur choice - -Banana Fish. - -Eyeshield 21 (Sport w/ comedy) - -Kuroko´s Basketball / Ahiru no Sora ( the plot is similar, so only watch one of them) - -Haikyuu ( also sports) - -Deadman Wonderland - -Ofc I´ve watch more anime than this but thats all the one i could think of as of rn.";False;False;;;;1610461820;;False;{};gj0397z;False;t3_kvs0mj;False;False;t3_kvs0mj;/r/anime/comments/kvs0mj/what_are_some_anime_with_bold_and_vibrant_colours/gj0397z/;1610518517;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Florac;;;[];;;;text;t2_vy0sf;False;False;[];;"Nah, definitly not on par. This is basicly them just randomly showing them, rather than showing them in a situation where they could be, like the first 2. Like for example, what the advanturers got in this opening, almost everyone had in the first 2. - -But the song is definitly a big issue. Like this opening doesn't AT ALL fit for this season. It would fit for an [spoiler for this season](/s ""Adventure arc, not a war arc"")";False;False;;;;1610461830;;1610462087.0;{};gj039vc;False;t3_kvsc53;False;True;t1_gj02yqk;/r/anime/comments/kvsc53/that_time_i_got_reincarnated_as_a_slime_season_2/gj039vc/;1610518528;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;slicer4ever;;;[];;;;text;t2_bgvkp;False;False;[];;">if he had gotten some other magic - -Thats not what i said. Until he got the 5 leaf clover + demon dweller sword bestowed on him, what would all of astas training actually have amounted to? He would be a no magic anomaly that would not have been able to actually fight anyone essentially.";False;False;;;;1610461838;;False;{};gj03ag1;False;t3_kvpz6g;False;False;t1_gj02x0h;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj03ag1/;1610518538;6;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;If you liked The Promised Neverland, then you absolutely need to check out Made in Abyss!;False;False;;;;1610461899;;False;{};gj03ebn;False;t3_kvrbv5;False;True;t3_kvrbv5;/r/anime/comments/kvrbv5/beginner_anime_recommendations_please/gj03ebn/;1610518600;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sin778;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/Philipp2002;light;text;t2_42jtk419;False;False;[];;On MAL it says it is, but yeah, it's probably different in different countries. Also, the Manga might have a lower age rating, I don't know.;False;False;;;;1610461900;;False;{};gj03eep;False;t3_kvqhm5;False;True;t1_gizwvq6;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj03eep/;1610518603;1;True;False;anime;t5_2qh22;;0;[]; -[];;;slicer4ever;;;[];;;;text;t2_bgvkp;False;False;[];;I disagree, being bestowed the demon dweller sword is a major gift that happened to concide with his hard work. What would asta be if he never got the sword?;False;False;;;;1610461905;;False;{};gj03epi;False;t3_kvpz6g;False;False;t1_gj030ba;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj03epi/;1610518609;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Raqium;;;[];;;;text;t2_a395a7p;False;False;[];;Are we back to source on this episode?;False;False;;;;1610461919;;False;{};gj03flk;False;t3_kvpz6g;False;True;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj03flk/;1610518623;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;We'll definitely see another season. It's popularity in Japan ensures it will. They need to do it soon though to continue to capitalise on the hype over there otherwise it'll fall off a cliff.;False;False;;;;1610462107;;False;{};gj03s0o;False;t3_kvrw46;False;True;t3_kvrw46;/r/anime/comments/kvrw46/is_the_anime_of_demon_slayer_finished/gj03s0o/;1610518821;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610462206;moderator;False;{};gj03yl5;False;t3_kvst5i;False;True;t3_kvst5i;/r/anime/comments/kvst5i/whats_so_special_about_evangelion/gj03yl5/;1610518931;1;False;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;is season 1 over??;False;False;;;;1610462244;;False;{};gj0410w;False;t3_kvrw46;False;True;t3_kvrw46;/r/anime/comments/kvrw46/is_the_anime_of_demon_slayer_finished/gj0410w/;1610518973;1;True;False;anime;t5_2qh22;;0;[]; -[];;;i_love_playing_yasuo;;;[];;;;text;t2_jkvqv;False;False;[];;[oh no](https://www.youtube.com/watch?v=XeDM1ZjMK50);False;False;;;;1610462286;;False;{};gj043z4;False;t3_kvpz6g;False;False;t1_gj01t4k;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj043z4/;1610519021;9;True;False;anime;t5_2qh22;;0;[]; -[];;;IncognitoBurrito77;;;[];;;;text;t2_6qcqvw7u;False;False;[];;The openings pretty good, I haven’t really started it yet since I have a few anime to finish, so I can only really give credit to the opening.;False;False;;;;1610462287;;False;{};gj04417;False;t3_kvst5i;False;True;t3_kvst5i;/r/anime/comments/kvst5i/whats_so_special_about_evangelion/gj04417/;1610519022;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;[Amagami SS](https://myanimelist.net/anime/8676/) gets my vote!;False;False;;;;1610462304;;False;{};gj04561;False;t3_kvr482;False;True;t3_kvr482;/r/anime/comments/kvr482/very_underrated_romance_anime/gj04561/;1610519040;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gelbinator;;;[];;;;text;t2_eudt3;False;False;[];;Nero's already got her prince. *Oh wait...*;False;False;;;;1610462345;;False;{};gj04813;False;t3_kvpz6g;False;False;t1_gizqvpc;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj04813/;1610519087;8;True;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;is it that painful? should I try it;False;False;;;;1610462371;;False;{};gj049qn;False;t3_kvqlzy;False;True;t3_kvqlzy;/r/anime/comments/kvqlzy/my_first_time_watching_plastic_memories/gj049qn/;1610519116;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;"He literally had no magic against Revchi why you omit that? - -The point of the scene was that ""without magic my training amounts to nothing, i should just give up"".";False;False;;;;1610462478;;False;{};gj04gzu;False;t3_kvpz6g;False;False;t1_gj03ag1;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj04gzu/;1610519254;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Sunoraiza;;;[];;;;text;t2_1uelkwfq;False;False;[];;"It subverts your expectations of what to expect from a mecha-anime. Not to spoil anything, but it dives deep into the psyche of its characters, explores ugly the ugly depths of people's inner workings. - - - - -And (to me at least) it's refreshing to see this beatiful, old-style animations. It takes you back to another time.";False;False;;;;1610462480;;False;{};gj04h4o;False;t3_kvst5i;False;False;t3_kvst5i;/r/anime/comments/kvst5i/whats_so_special_about_evangelion/gj04h4o/;1610519256;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ProfessorDarklord98;;;[];;;;text;t2_9jwn6qdn;False;False;[];;**Protagonist choses the best waifu to jerk off**;False;False;;;;1610462568;;False;{};gj04mzs;False;t3_kvst5i;False;False;t3_kvst5i;/r/anime/comments/kvst5i/whats_so_special_about_evangelion/gj04mzs/;1610519346;8;True;False;anime;t5_2qh22;;0;[]; -[];;;whalehome;;;[];;;;text;t2_albkj;False;False;[];;It's a neat test but man is 60 questions just so unnecessary, half that would suffice, because after 30 it just feels like a chore. That just my opinion though.;False;False;;;;1610462636;;False;{};gj04rnd;False;t3_kvqhm5;False;False;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj04rnd/;1610519420;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptainLuffy5439;;;[];;;;text;t2_6dzr0se3;False;False;[];;I heard people get sad after watching it. Is that true?;False;False;;;;1610462699;;False;{};gj04w4c;False;t3_kvst5i;False;True;t1_gj04h4o;/r/anime/comments/kvst5i/whats_so_special_about_evangelion/gj04w4c/;1610519489;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610462737;;False;{};gj04ypl;False;t3_kvpz6g;False;True;t1_gj04gzu;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj04ypl/;1610519529;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;"Every hype moment of Luck as him fighting against some monster (Lotus, Vetto and Asta). The fact that his mother herself said ""a commoner beating a noble is fantastic"" or something along those lines means that she never expected Luck to acomplish anything. - -If even his mother said he was an anomaly then im inclined to believe it.";False;False;;;;1610462755;;False;{};gj0501c;False;t3_kvpz6g;False;False;t1_gj02v01;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0501c/;1610519550;21;True;False;anime;t5_2qh22;;0;[]; -[];;;whalehome;;;[];;;;text;t2_albkj;False;False;[];;That's pretty much mob psycho 100;False;False;;;;1610462782;;False;{};gj051uz;False;t3_kvs0mj;False;True;t3_kvs0mj;/r/anime/comments/kvs0mj/what_are_some_anime_with_bold_and_vibrant_colours/gj051uz/;1610519578;2;True;False;anime;t5_2qh22;;0;[]; -[];;;whalehome;;;[];;;;text;t2_albkj;False;False;[];;The anime isnt finished but the manga is.;False;False;;;;1610462818;;False;{};gj054e9;False;t3_kvrw46;False;True;t3_kvrw46;/r/anime/comments/kvrw46/is_the_anime_of_demon_slayer_finished/gj054e9/;1610519619;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Centauri425;;;[];;;;text;t2_1v7t472g;False;False;[];;More like the sad truth. There's Yami and Jack the ripper who are both commoners but that's really it. Also Zora who isn't that strong but can be it certain situations.;False;False;;;;1610462877;;False;{};gj058ia;False;t3_kvpz6g;False;False;t1_gizyzrl;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj058ia/;1610519684;5;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Looks like a chibi short or something comparable to me;False;False;;;;1610462890;;False;{};gj059fk;False;t3_kvpoo2;False;False;t1_gizr9yk;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gj059fk/;1610519698;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610462901;;False;{};gj05a3n;False;t3_kvrw46;False;True;t3_kvrw46;/r/anime/comments/kvrw46/is_the_anime_of_demon_slayer_finished/gj05a3n/;1610519708;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigsnake1222;;;[];;;;text;t2_mm0s4;False;False;[];;Yeah but he still grew up poor. His diet was literally just potatoes until he became a magic knight. He still lived in poor conditions (sleeping with all his siblings in the same bed) and got to see how everyone around him was treated due to classism.;False;False;;;;1610462951;;False;{};gj05dl7;False;t3_kvpz6g;False;False;t1_gj02g1l;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj05dl7/;1610519763;5;True;False;anime;t5_2qh22;;0;[]; -[];;;slicer4ever;;;[];;;;text;t2_bgvkp;False;False;[];;Ok, that proves my point then? Asta admits without the swords his training and hard work would not have amounted to anything(at least as far as becoming wizard king). He only beats Revchi by pulling out the sword.;False;False;;;;1610462998;;False;{};gj05gvp;False;t3_kvpz6g;False;False;t1_gj04gzu;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj05gvp/;1610519816;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Brother_Syndellius;;;[];;;;text;t2_9n2qjx0d;False;False;[];;"If you're looking for straight up vibrant colors, anything from Kyoto Animation has really vibrant color schemes - -For OP MCs - -Bleach -Shinchou Yuusha -MSG Iron Blooded Orphans -Hellsing Ultimate -Drifters -Bofuri -Gintama";False;False;;;;1610463014;;False;{};gj05i2x;False;t3_kvs0mj;False;True;t3_kvs0mj;/r/anime/comments/kvs0mj/what_are_some_anime_with_bold_and_vibrant_colours/gj05i2x/;1610519836;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lolminna;;;[];;;;text;t2_h37nh;False;False;[];;"You misunderstood. If Yuno didn't work hard to get where he is today, he'd barely be more powerful than Solid and Nebra. Worst case scenario he'd be like the king. The theme is equality, what you want is equity. - -You also discount other examples like Magna, who's probably the greatest pure peasant magic knight with peasant-level mana right now. May I remind you that Sol of the Blue Rose couldn't even cast anything against an elf, while Magna had no problems throwing his fireballs from the beginning. It's a stark difference that isn't mentioned outright, but is consistently being shown to the reader. Same starting line, but because Magna worked extra hard to keep up with Luck and was consistently exposed to dangers like fighting against Heath and Vetto, he currently had the upper hand in terms of ""success"".";False;False;;;;1610463067;;False;{};gj05lrf;False;t3_kvpz6g;False;False;t1_gj02cjg;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj05lrf/;1610519893;46;True;False;anime;t5_2qh22;;0;[]; -[];;;Natrist4;;;[];;;;text;t2_5oa7c2oz;False;False;[];;What Evangelion are you planning to watch first?;False;False;;;;1610463099;;False;{};gj05nzn;False;t3_kvst5i;False;False;t3_kvst5i;/r/anime/comments/kvst5i/whats_so_special_about_evangelion/gj05nzn/;1610519929;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;"That has nothing to do with who he biologically is, which is the point im trying to make. - -I know Yuno as a person is much more than what he was born as but one of the themes of the shows is literally going beyond what you are born as.";False;False;;;;1610463138;;False;{};gj05qs9;False;t3_kvpz6g;False;False;t1_gj05dl7;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj05qs9/;1610519979;11;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;37/60 so I basically got all right that I've actually seen and the wrong guesses almost always mixed up josei with shoujo hmm;False;False;;;;1610463159;;False;{};gj05s9b;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj05s9b/;1610520001;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SaKaly;;;[];;;;text;t2_46979186;False;False;[];;And Rill being based on Tabata makes so much sense cuz they are artist's. I ship it so hard lol;False;False;;;;1610463168;;False;{};gj05sve;False;t3_kvpz6g;False;False;t1_gizpha1;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj05sve/;1610520010;76;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptainDino123;;;[];;;;text;t2_eouc4;False;False;[];;Existential dread and depression;False;False;;;;1610463177;;False;{};gj05tiw;False;t3_kvst5i;False;True;t1_gj04w4c;/r/anime/comments/kvst5i/whats_so_special_about_evangelion/gj05tiw/;1610520020;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;"The swords are just magic items and Kiato mentions while fighting that ""When there's no magic involved your sword is just a lump of metal"". - -Sure the swords hold a lot of potential but this power isnt used up until 100 episodes later. - -If he had gotten a grimoire he would have put up a fight. And behold a grimoire chooses him and he nails Revchi. - -Now if you wanna argue ""What can a 15 kid who just received his grimoire can do against Revchi?"" now thats a whole other topic.";False;False;;;;1610463202;;False;{};gj05va6;False;t3_kvpz6g;False;False;t1_gj05gvp;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj05va6/;1610520047;11;True;False;anime;t5_2qh22;;0;[]; -[];;;p0tasticp0tat0;;;[];;;;text;t2_8si76dz9;False;False;[];;That time i got reincarnated as a slime;False;False;;;;1610463271;;False;{};gj0600h;False;t3_kvs0mj;False;True;t3_kvs0mj;/r/anime/comments/kvs0mj/what_are_some_anime_with_bold_and_vibrant_colours/gj0600h/;1610520121;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DemonicSap;;;[];;;;text;t2_819iy1w3;False;False;[];;47/60 had a bit of trouble with the Josei and Shoujo.;False;False;;;;1610463278;;False;{};gj060kq;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj060kq/;1610520130;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SaKaly;;;[];;;;text;t2_46979186;False;False;[];;But Yuno could not unlock that potential without Asta's encouragement when they were 5. A peasant still got a royal to unlock his abilities;False;False;;;;1610463307;;False;{};gj062ji;False;t3_kvpz6g;False;True;t1_gizyzrl;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj062ji/;1610520161;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Our_Lord_Bauer;;;[];;;;text;t2_502zwb6g;False;False;[];;People will tell you that it’ll mess you up after you finish it but....I never got that feeling afterwards. It’s a great series, but unless you’re 14 and just getting into anime (the prime time to watch it) it won’t hit as hard as you’d expect based on all the hype.;False;False;;;;1610463321;;1610466006.0;{};gj063je;False;t3_kvst5i;False;False;t3_kvst5i;/r/anime/comments/kvst5i/whats_so_special_about_evangelion/gj063je/;1610520177;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"Interestingly, most shounen romance stories nowadays feels more in line or vibe closer to shoujo romance stories. - -If there's one josei manga I wanna see adapted, it's Kimi wa Pet.";False;False;;;;1610463372;;False;{};gj066zq;False;t3_kvqhm5;False;True;t1_gizs09k;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj066zq/;1610520235;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gangrainette;;MAL;[];;https://myanimelist.net/profile/bouletos;dark;text;t2_vlti1;False;False;[];;No Game No Life;False;False;;;;1610463494;;False;{};gj06fqb;False;t3_kvs0mj;False;False;t3_kvs0mj;/r/anime/comments/kvs0mj/what_are_some_anime_with_bold_and_vibrant_colours/gj06fqb/;1610520369;5;True;False;anime;t5_2qh22;;0;[]; -[];;;bigsnake1222;;;[];;;;text;t2_mm0s4;False;False;[];;I get what you’re saying now, but Yuno was born talented with magic either way. The fact that he’s the Spade prince doesn’t change anything. If he was actually born to peasants, you could just say he got lucky genetically. Asta and Yuno don’t wanna be Wizard King to be the strongest, their goal is to end classism in the Clover kingdom.;False;False;;;;1610463504;;False;{};gj06gfe;False;t3_kvpz6g;False;True;t1_gj05qs9;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj06gfe/;1610520380;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Idoma_Sas_Ptolemy;;;[];;;;text;t2_u4qfz;False;False;[];;"> Not to spoil anything, but it dives deep into the psyche of its characters, explores ugly the ugly depths of people's inner workings. - -So exactly what you expect from any real mecha show since the original MSG?";False;False;;;;1610463884;;1610464740.0;{};gj077iw;False;t3_kvst5i;False;True;t1_gj04h4o;/r/anime/comments/kvst5i/whats_so_special_about_evangelion/gj077iw/;1610520795;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"It really does make you think what is the particular criteria or basis or what decides a series to be ran on shounen, shoujo, seinen, or josei magazine. Most works nowadays have taken elements and influences from other demographic works that the lines have become blurry. - -We got ultra-violent shounen manga like Akame Ga Kill, Attack on Titan, and Chainsaw Man. Shounen romances that are either borderline-h feels more closer to the shoujo demographic like World's End Harem and Domestic Girlfriend, respectively, and seinen works that doesn't feel out of place in a shounen catalogue like Murata's One Punch Man and Kaguya-sama.";False;False;;;;1610463949;;1610469798.0;{};gj07bzu;False;t3_kvqhm5;False;False;t1_gizrsy6;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj07bzu/;1610520863;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Darkjetson01;;;[];;;;text;t2_cia6mw7;False;False;[];;The most shocking thing on this quiz is This Art Club has a problem is a Seinen 😂😂😂;False;False;;;;1610463959;;False;{};gj07cpe;False;t3_kvqhm5;False;False;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj07cpe/;1610520874;9;True;False;anime;t5_2qh22;;0;[]; -[];;;ramaqlaa;;;[];;;;text;t2_9h8lk;False;False;[];;"Kaguya-sama being a seinen and shingeki being a shounen makes no sense. I get that this comes from the magazines they are published in but makes answering this test just a matter of knowing beforehand in which magazines they ran. - -Guess im salty that i got 27/60 lol";False;True;;comment score below threshold;;1610463992;;False;{};gj07f1t;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj07f1t/;1610520911;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;DrJWilson;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/drjwilson/animelist;light;text;t2_6zykq;False;False;[];;"Sorry, your comment has been removed. - -- Very NSFW content (""not safe for work,"" e.g. female nipples, genitals of either gender, heavily implied sexual content, sexual contact between two characters) isn't allowed. Female nipples from episode screenshots, manga panels, or uncensored art is allowed in comments, but only if it's relevant to the discussion and called out as NSFW. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610464098;moderator;False;{};gj07mm9;False;t3_kvpz6g;False;True;t1_gizunz5;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj07mm9/;1610521026;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;41's not bad. I feel like I've been around long enough to know some of the tricks of the surprising shounen/seinen shows.;False;False;;;;1610464105;;False;{};gj07n2o;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj07n2o/;1610521032;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Idoma_Sas_Ptolemy;;;[];;;;text;t2_u4qfz;False;False;[];;"Nowadays NGE isn't really anything special. But back in the day there were pretty strict genre conventions. Stuff you were allowed to do in a ""real mecha"" show and stuff that was allowed in a ""super mecha"" show. - -NGE broke a lot of genre conventions and tried to mix and match the best of both worlds, combined with a lot of inspirations from outside of the grander mecha genre. - -It partially successed and had a noticable influence on a lot of shows that followed. NGE is historically extremely important, but pretty much everything it does has been done better since. - -On top of that there is a very clear drop in quality from around episode 14ish on. And the last two episodes are so notoriously bad and out of context that ""the end of evengelion"" was created to compensate. - -If you like mecha shows or are deeply interested in the history of anime, go for it. If you just want to watch it for its pedigree, you'll probably find something equally good or better elsewhere.";False;False;;;;1610464107;;False;{};gj07n7z;False;t3_kvst5i;False;True;t3_kvst5i;/r/anime/comments/kvst5i/whats_so_special_about_evangelion/gj07n7z/;1610521035;2;True;False;anime;t5_2qh22;;0;[]; -[];;;altathing;;;[];;;;text;t2_jfhm5m;False;False;[];;I enjoy black clover a lot, but you will have to get through the first couple of episodes, after that it's a banger.;False;False;;;;1610464145;;False;{};gj07pzj;False;t3_kvr2u8;False;True;t3_kvr2u8;/r/anime/comments/kvr2u8/looking_for_s_good_lengthy_anime/gj07pzj/;1610521076;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;"I don't get your point. Are you saying that being born in royalty or as a peasant doesnt matter? - -Didnt the literal Wizard King says ""The ones born at the top leave their talent to stagnate and never put it to good use while the ones at the bottom die without even trying""? - -Yuno wasn't born talented just because, he was born talented because he was born a king. Noelle proves that relentless work and being royal makes you an absolute monster, just like all other Vermillions. - -The fact that he's the Spade Prince means he was born with a crazy huge potential. People like Magna don't get that luxury.";False;False;;;;1610464197;;False;{};gj07ts3;False;t3_kvpz6g;False;False;t1_gj06gfe;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj07ts3/;1610521135;5;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;"This one! https://youtu.be/7ePVT9yRcwU -It’s the first ED in Bakemonogatari. My sister and I were watching one of those ‘guess the anime song’ videos on YouTube and it popped up. I really liked the song so I put it on my Spotify and then listened to it on repeat. Eventually, I figured I should probably go watch the actual anime and so I did!";False;False;;;;1610464265;;False;{};gj07yo3;False;t3_kvs4ah;False;False;t1_gj02ywg;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj07yo3/;1610521210;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;Honestly, pretty decent. Probably gonna watch it for like four episodes until I skip it then each time after;False;False;;;;1610464284;;False;{};gj0802g;False;t3_kvsc53;False;True;t3_kvsc53;/r/anime/comments/kvsc53/that_time_i_got_reincarnated_as_a_slime_season_2/gj0802g/;1610521230;0;True;False;anime;t5_2qh22;;0;[]; -[];;;luchalife;;;[];;;;text;t2_7krnpbt1;False;False;[];;"&#x200B; - -[Binbougami ga! (Good Luck Girl!)](https://myanimelist.net/anime/13535/Binbougami_ga)";False;False;;;;1610464321;;False;{};gj082pa;False;t3_kvp6f9;False;True;t3_kvp6f9;/r/anime/comments/kvp6f9/can_someone_give_me_their_funniest_anime_they_know/gj082pa/;1610521273;2;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;"Nice quiz. I got a 31/60 so does that mean I qualify for extra lessons? - -Aria being a Shounen was the toughest one for me to understand.";False;False;;;;1610464374;;False;{};gj086kg;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj086kg/;1610521332;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ajver19;;;[];;;;text;t2_3haraaue;False;True;[];;"It's a good show that defies a lot of what you'd expect from a mecha anime. - -It's also been put on a pedestal as one of the greatest things ever by a lot of people.";False;False;;;;1610464449;;False;{};gj08bzv;False;t3_kvst5i;False;True;t3_kvst5i;/r/anime/comments/kvst5i/whats_so_special_about_evangelion/gj08bzv/;1610521415;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Episode 12 hits extra hard. - -I never understood the lyrics and thought it was a generic anime song, but when episode 12 ended, this song made so much sense and became one of my favorite anime ending songs.";False;False;;;;1610464518;;False;{};gj08h23;False;t3_kvs4ah;False;True;t1_gj07yo3;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj08h23/;1610521493;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> NGE broke a lot of genre conventions and tried to mix and match the best of both worlds, combined with a lot of inspirations from outside of the grander mecha genre. - -? - -> but pretty much everything it does has been done better since. - -?? - -> On top of that there is a very clear drop in quality from around episode 14ish on. And the last two episodes are so notoriously bad and out of context that ""the end of evengelion"" was created to compensate. - -???";False;False;;;;1610464617;;False;{};gj08odj;False;t3_kvst5i;False;False;t1_gj07n7z;/r/anime/comments/kvst5i/whats_so_special_about_evangelion/gj08odj/;1610521610;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cuberthatusesvalks;;;[];;;dark;text;t2_3ybaz364;False;False;[];;Baccano;False;False;;;;1610464634;;False;{};gj08po6;False;t3_kvs4ah;False;False;t3_kvs4ah;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj08po6/;1610521630;5;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;the original series like every sane person I hope;False;False;;;;1610464645;;False;{};gj08qhl;False;t3_kvst5i;False;True;t1_gj05nzn;/r/anime/comments/kvst5i/whats_so_special_about_evangelion/gj08qhl/;1610521642;1;True;False;anime;t5_2qh22;;0;[]; -[];;;absolutelynotaname;;;[];;;;text;t2_3u6phgk2;False;False;[];;Beastar, I love YOASOBI and when I heard that they will do op for Beastar 2nd season, I decide to watch it.;False;False;;;;1610464646;;False;{};gj08qji;False;t3_kvs4ah;False;True;t3_kvs4ah;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj08qji/;1610521643;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lone_stark;;;[];;;;text;t2_xoqph;False;False;[];;Since last episode.;False;False;;;;1610464738;;False;{};gj08xcr;False;t3_kvpz6g;False;False;t1_gj03flk;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj08xcr/;1610521749;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Caenir;;;[];;;;text;t2_12257c;False;False;[];;I got 18/60. I knew I wouldn't have that good of chance, but was surprised by all the anime set in highschools which are seinen. And then other ones seem a bit pervy from the cover photo/name but end up being shoujo. Doesn't help that I've only seen like 5 shows listed and heard of another 10.;False;False;;;;1610464741;;False;{};gj08xkm;False;t3_kvqhm5;False;False;t1_gizwfsw;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj08xkm/;1610521752;8;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"psychological drama with well-realised characters and great directing that strongly enhances the storytelling. Great artwork and character design, OST. - -Like in most mecha anime, the mechs are less important than the people and the politics";False;False;;;;1610464760;;False;{};gj08yxr;False;t3_kvst5i;False;True;t3_kvst5i;/r/anime/comments/kvst5i/whats_so_special_about_evangelion/gj08yxr/;1610521774;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigsnake1222;;;[];;;;text;t2_mm0s4;False;False;[];;Earlier, you said Asta automatically “wins” their bet which is what I’m disagreeing with. Being talented/gifted is literally his character, which is meant to counteract Asta who is the opposite. He still grew up as a peasant so their bet on becoming Wizard King to prove that even if you are poor, you can become something great, is still valid.;False;False;;;;1610464929;;False;{};gj09auv;False;t3_kvpz6g;False;False;t1_gj07ts3;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj09auv/;1610521951;4;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;Elaina from Journey of Elaina is pretty smug (her character is pretty polarizing though. People seem to either love her or hate her, personally I liked her);False;False;;;;1610464930;;False;{};gj09ax8;False;t3_kvsds7;False;True;t3_kvsds7;/r/anime/comments/kvsds7/anime_with_best_smug_girl/gj09ax8/;1610521952;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Winduzrael;;;[];;;;text;t2_4s5jlqb6;False;False;[];;That is the thing. I would like to hear some opinions.;False;False;;;;1610465115;;False;{};gj09nv7;True;t3_kvpjhh;False;True;t1_gj033vr;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gj09nv7/;1610522147;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jewelrybunny;;;[];;;;text;t2_137ip41z;False;False;[];;"pretty sure that has been consistent, that only nobles or royals have a big mana pool due to gatekeeping and what not. so that shouldnt really be surprising that yuno turns out to be of royal descendant. further his ties to licht, tetia and their child were a big hint. - -not sure if youre mixing up the swords or im missing your point, because demon dweller sword is the one asta finds in his first fight against mars, while the demon slayer sword is the one he pulls out against revchi. -so are you saying, how would he have beaten mars or what would happen if he didnt receive the grimoire which included the demon slayer sword? - -ultimately i think the latter will be best answered with manga spoiler/future episodes and you'll have to wait and see...";False;False;;;;1610465210;;False;{};gj09u9p;False;t3_kvpz6g;False;False;t1_gj03epi;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj09u9p/;1610522247;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Raqium;;;[];;;;text;t2_a395a7p;False;False;[];;Are they flashbacks? Have we hit the post time skip? Sorry for the questions, haven't touched this since the heart kingdom start weeks ago;False;False;;;;1610465278;;False;{};gj09ysw;False;t3_kvpz6g;False;True;t1_gj08xcr;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj09ysw/;1610522313;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeowlite;;;[];;;;text;t2_xyzpq;False;False;[];;Law of Ueki;False;False;;;;1610465334;;False;{};gj0a2nu;False;t3_kvs0mj;False;True;t3_kvs0mj;/r/anime/comments/kvs0mj/what_are_some_anime_with_bold_and_vibrant_colours/gj0a2nu/;1610522373;2;True;False;anime;t5_2qh22;;0;[]; -[];;;slicer4ever;;;[];;;;text;t2_bgvkp;False;False;[];;">mixing up the swords - -Yes, i'm mixing up swords, my bad. - ->manga spoiler/future episodes and you'll have to wait and see... - -Do you think its worth skipping ahead by reading the manga? I used to read, and stopped at when they first went to the heart kingdom, but i've been thinking of picking it back up instead of waiting for each episode.";False;False;;;;1610465607;;False;{};gj0akqu;False;t3_kvpz6g;False;False;t1_gj09u9p;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0akqu/;1610522647;1;True;False;anime;t5_2qh22;;0;[]; -[];;;greyl;;;[];;;;text;t2_a3erg;False;False;[];;If he drew it while she was still pregnant that's a man who likes to live dangerously.;False;False;;;;1610465626;;False;{};gj0alzu;False;t3_kvpz6g;False;False;t1_gizpha1;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0alzu/;1610522666;70;True;False;anime;t5_2qh22;;0;[]; -[];;;Kuja9001;;MAL;[];;http://myanimelist.net/profile/GC-Wave;dark;text;t2_goyqy;False;False;[];;"Chapters adapted - -232-233 - -Art Comparison - -[Big Ol Anime Titties](https://i.imgur.com/6hDi3Pf_d.webp?maxwidth=640&shape=thumb&fidelity=medium)";False;False;;;;1610465671;;False;{};gj0ap05;False;t3_kvpz6g;False;False;t1_gizo43y;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0ap05/;1610522711;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Firestarness;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/firestarness;light;text;t2_15356k;False;False;[];;I watched that anime so many years ago. Still remember how sad I felt about what happened at the end :( Overall a decent anime;False;False;;;;1610465702;;False;{};gj0ar1v;False;t3_kvqlzy;False;True;t3_kvqlzy;/r/anime/comments/kvqlzy/my_first_time_watching_plastic_memories/gj0ar1v/;1610522743;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IrunMan;;;[];;;;text;t2_e4e7m;False;False;[];;I think Magna died.;False;False;;;;1610465729;;False;{};gj0asug;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0asug/;1610522771;18;True;False;anime;t5_2qh22;;0;[]; -[];;;realrimurutempest;;;[];;;;text;t2_4bauklbm;False;False;[];;I love how Milim is adorable but scary at the same time.;False;False;;;;1610465774;;False;{};gj0avum;False;t3_kvsc53;False;False;t3_kvsc53;/r/anime/comments/kvsc53/that_time_i_got_reincarnated_as_a_slime_season_2/gj0avum/;1610522815;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DJSERRANO547;;;[];;;;text;t2_5qyy1wc5;False;False;[];;"{Darling in the franxx} - -{Love chinibiu and other delusions} - -{Spice and wolf} - -{World end} I wouldn’t say this one is particularly a romance but its definitely a should watch and does have romance in it. - -{rascal does not dream of bunny girl senpai} - -{oregairu}";False;False;;;;1610465788;;False;{};gj0awqz;False;t3_kvr482;False;True;t1_gizvi3g;/r/anime/comments/kvr482/very_underrated_romance_anime/gj0awqz/;1610522829;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sw1611;;;[];;;;text;t2_4eyltl74;False;False;[];;A first small step toward season 2?;False;False;;;;1610465819;;False;{};gj0ayuy;False;t3_kvpoo2;False;True;t3_kvpoo2;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gj0ayuy/;1610522861;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vindicare605;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aresendez88;light;text;t2_656ck;False;False;[];;"Noelle..... smh. - -Denial is not just a river in Egypt!!!!";False;False;;;;1610465873;;False;{};gj0b2eq;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0b2eq/;1610522914;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Natrist4;;;[];;;;text;t2_5oa7c2oz;False;False;[];;Well your in for a ride, let me know what are your thoughts after finishing the series!;False;False;;;;1610465894;;False;{};gj0b3un;False;t3_kvst5i;False;True;t1_gj08qhl;/r/anime/comments/kvst5i/whats_so_special_about_evangelion/gj0b3un/;1610522936;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DJSERRANO547;;;[];;;;text;t2_5qyy1wc5;False;False;[];;I had no idea. The only people i have talked to about it said they either hadnt seen it or didnt like it, I thought it was odd.;False;False;;;;1610465952;;False;{};gj0b7os;False;t3_kvr482;False;True;t1_gizy9c8;/r/anime/comments/kvr482/very_underrated_romance_anime/gj0b7os/;1610522994;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Meemeli;;;[];;;;text;t2_2o1rogl;False;False;[];;Nope, there's still more manga to adapt. Whether the rest will be adapted or not isn't currently known, but the anime has been a massive hit in Japan, so it's very likely that we'll get more.;False;False;;;;1610466140;;False;{};gj0bk8f;False;t3_kvrw46;False;True;t3_kvrw46;/r/anime/comments/kvrw46/is_the_anime_of_demon_slayer_finished/gj0bk8f/;1610523184;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KIrbyKarby;;;[];;;;text;t2_i4mag;False;False;[];;"> The hard work they've done is second to the innate gifts they were born with - -nah, if it were like that then all matches between royals would result in a tie. Hard work gets results is one of the point of black clover, that's why we saw noelle wrecking the shit out of his brother";False;False;;;;1610466264;;False;{};gj0bsjh;False;t3_kvpz6g;False;True;t1_gj02cjg;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0bsjh/;1610523307;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;I have seen the series + EoE once already, just on a slow sober rewatch now;False;False;;;;1610466265;;False;{};gj0bsny;False;t3_kvst5i;False;False;t1_gj0b3un;/r/anime/comments/kvst5i/whats_so_special_about_evangelion/gj0bsny/;1610523308;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Meemeli;;;[];;;;text;t2_2o1rogl;False;False;[];;Season 1 has been completed for over a year, now. There's also a sequel movie, but it's only in Japanese movie theaters ATM.;False;False;;;;1610466281;;False;{};gj0btr4;False;t3_kvrw46;False;False;t1_gj0410w;/r/anime/comments/kvrw46/is_the_anime_of_demon_slayer_finished/gj0btr4/;1610523323;5;True;False;anime;t5_2qh22;;0;[]; -[];;;biggamer7433;;;[];;;;text;t2_752tb0q;False;False;[];;Yea they started covering the manga again last episode.;False;False;;;;1610466431;;False;{};gj0c3wv;False;t3_kvpz6g;False;False;t1_gj09ysw;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0c3wv/;1610523476;7;True;False;anime;t5_2qh22;;0;[]; -[];;;jewelrybunny;;;[];;;;text;t2_137ip41z;False;False;[];;">Do you think its worth skipping ahead by reading the manga? - -well im not exactly sure how to answer that, obviously goes back to why you stopped reading in the first place. there are ~30ch left for you to read. i personally really enjoyed those chapters and if you read those youll be able to find all the spoilers in the op.";False;False;;;;1610466486;;False;{};gj0c7pm;False;t3_kvpz6g;False;True;t1_gj0akqu;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0c7pm/;1610523548;3;True;False;anime;t5_2qh22;;0;[]; -[];;;collapsedblock6;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/collapsedblock;light;text;t2_pqur4;False;False;[];;"Despite having only 32/60, I would still say that my quick question of ""Does it have bishounen = shoujo or josei"" was spot on, since most of my wrongs were confusing both of these. I also got many shounen wrong because they didn't had the typical aspects of shounen (being action, fanservice, Beastars was quiet the surprise). - -Seinen are the ones that don't surprise me and feel this quiz serves to as reminder that seinen doesn't equal to ""dark, adult, mature anime"". If it was a moe title, I instantly selected seinen because they're mostly published in seinen magazines which is all that matters when tagging with demographics.";False;False;;;;1610466637;;False;{};gj0ci2g;False;t3_kvqhm5;False;False;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0ci2g/;1610523712;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Stomco;;;[];;;;text;t2_1dalujth;False;False;[];;"I'd always heard 7 seeds was shojo. Usually in the context of ""why do only romance shojo get adapted?""";False;False;;;;1610466783;;False;{};gj0cs5d;False;t3_kvqhm5;False;True;t1_gizuzih;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0cs5d/;1610523868;3;True;False;anime;t5_2qh22;;0;[]; -[];;;won_hallyu;;;[];;;;text;t2_16wnuv;False;False;[];;are you a manga reader? for that question yes we're in timeskip right now. They're adapting the canon material again;False;False;;;;1610466787;;False;{};gj0csfr;False;t3_kvpz6g;False;False;t1_gj09ysw;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0csfr/;1610523873;4;True;False;anime;t5_2qh22;;0;[]; -[];;;chino-kafu;;;[];;;;text;t2_hgf2eos;False;False;[];;was going to question it, but guess their company logo DOES have SHAFT in all caps.;False;False;;;;1610466895;;False;{};gj0d05w;False;t3_kvpoo2;False;False;t3_kvpoo2;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gj0d05w/;1610523987;5;False;False;anime;t5_2qh22;;0;[]; -[];;;misanthropik1;;;[];;;;text;t2_cgx8g;False;False;[];;"beastars as shounen and not seinen? Nani the f? - -One of the female lead's biggest traits is her sexual promiscuity and how she uses it for self empowerment as a way of making her feel equal to other larger more powerful people/animals/furries.";False;True;;comment score below threshold;;1610466918;;False;{};gj0d1tl;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0d1tl/;1610524013;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610467166;;False;{};gj0djxj;False;t3_kvsds7;False;True;t3_kvsds7;/r/anime/comments/kvsds7/anime_with_best_smug_girl/gj0djxj/;1610524283;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JustWolfram;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Wolfram-san;light;text;t2_mwn5b;False;False;[];;Attack on Titan? I don't think it fits here, also the chance of op not knowing about it is pretty much zero.;False;False;;;;1610467207;;False;{};gj0dn0l;False;t3_kvr2wd;False;False;t1_gizwtur;/r/anime/comments/kvr2wd/best_lovecraftian_anime_recommendations/gj0dn0l/;1610524328;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Raqium;;;[];;;;text;t2_a395a7p;False;False;[];;Oof I forgot reddit was hyper toxic. And thanks man, I try to keep up with what BC was on, but after December, I stopped trying.;False;True;;comment score below threshold;;1610467223;;False;{};gj0do8o;False;t3_kvpz6g;False;False;t1_gj0csfr;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0do8o/;1610524348;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;MetaThPr4h;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MetaThPr4h/;light;text;t2_fbwjt;False;False;[];;[Yes!](https://old.reddit.com/r/anime/comments/kug9sa/d4dj_petit_mix_mini_anime_announced_starts_the/) Will start the week after the anime ends.;False;False;;;;1610467304;;False;{};gj0dua3;False;t3_kvpoo2;False;False;t1_gj02l1z;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gj0dua3/;1610524437;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MetaThPr4h;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MetaThPr4h/;light;text;t2_fbwjt;False;False;[];;"Hell yeah! Bushiroad delivering shorts to both D4DJ and Assault Lily, man that makes me happy. - -Gotta love how they are still thicc in chibi form.";False;False;;;;1610467392;;False;{};gj0e0lp;False;t3_kvpoo2;False;False;t3_kvpoo2;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gj0e0lp/;1610524532;6;True;False;anime;t5_2qh22;;0;[]; -[];;;KnoFear;;MAL;[];;http://myanimelist.net/profile/KnoFear;dark;text;t2_a9pq3;False;False;[];;Got 55/60. Should be noted there's an error in the quiz: Pet Shop of Horrors isn't josei. The original manga ran in Missy Comics DX, a shoujo magazine. Only the various sequel series, which have been running since the mid-2000s, are josei as they've been in different magazines.;False;False;;;;1610467483;;False;{};gj0e75t;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0e75t/;1610524629;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MaxAugust;;;[];;;;text;t2_fevqz;False;False;[];;It is published in Shonen Champion and thus is, by definition, shonen.;False;False;;;;1610467486;;False;{};gj0e7ck;False;t3_kvqhm5;False;False;t1_gj0d1tl;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0e7ck/;1610524632;16;True;False;anime;t5_2qh22;;0;[]; -[];;;wildthing202;;;[];;;;text;t2_6u3zn;False;False;[];;My head canon is that Asta is the last child of the lost Joker kingdom, the only kingdom of non-magic users. Just happened to be dropped off seconds after Yuno was dropped off....;False;False;;;;1610467668;;False;{};gj0ekt6;False;t3_kvpz6g;False;False;t1_gizsntb;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0ekt6/;1610524836;67;True;False;anime;t5_2qh22;;0;[]; -[];;;Careless-Reward;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4j5f6bnw;False;False;[];;Same I got 23/60;False;False;;;;1610467679;;False;{};gj0elmu;False;t3_kvqhm5;False;False;t1_gizw245;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0elmu/;1610524850;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomXxZ;;;[];;;;text;t2_37lbelym;False;False;[];;I'm upvoting this and leaving a comment because I honestly feel bad for this show.;False;False;;;;1610467723;;False;{};gj0eoww;False;t3_kvpnm4;False;True;t3_kvpnm4;/r/anime/comments/kvpnm4/shadowverse_episode_38_discussion/gj0eoww/;1610524899;3;True;False;anime;t5_2qh22;;0;[]; -[];;;UzEE;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/UzEEInc;light;text;t2_45t2z;False;False;[];;I got 10/60, but all that I answered were correct. What I learned from this quiz is that I don't watch a lot of anime since I haven't seen the vast majority of the shows in the quiz.;False;False;;;;1610467907;;False;{};gj0f2n8;False;t3_kvqhm5;False;False;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0f2n8/;1610525107;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RockoDyne;;MAL;[];;https://myanimelist.net/profile/RockoDyne;dark;text;t2_g4ooj;False;False;[];;"The short answer is that demographics don't matter to editing departments anywhere near as much as people think. The bigger concern these days is matching the potential popularity of a manga with a magazine that has the readership to make it that popular. - -The other half of it is that readership in a lot of these magazines aren't as clearly divided as their label suggests. Seinen and shounen magazines often have a fairly even male:female reader ratio, with age ranges being pretty even too.";False;False;;;;1610468014;;False;{};gj0faqj;False;t3_kvqhm5;False;False;t1_gj07bzu;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0faqj/;1610525229;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Azrub580;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FpsArena;light;text;t2_661t4twj;False;False;[];;"If you are sure you are going to watch all of these anime at some point, I'd recommend you to watch SAO first because honestly it's the only odd one in your list. - -The more anime you watch and the more you will realise how bad it really is. Sure there are a lot of worse anime, but we are talking about the #4 in popularity on MAL here. - -Attack of Titan is great for new watchers and at its highest peak, which is not in season 1 or 2, it's really something. - -Steins Gate is still one of my favorite anime. - -Can't talk about Code Geass and Evangelion. :)";False;False;;;;1610468122;;False;{};gj0fips;False;t3_kvpjhh;False;True;t3_kvpjhh;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gj0fips/;1610525353;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AbidingTruth;;MAL a-amq;[];;https://myanimelist.net/profile/AbidingTruth;dark;text;t2_f2z3p;False;False;[];;Yeah that one hella threw me off. I knew non non biyori was seinen and while i didnt know much about the publication of aria, i just assumed it was also seinen;False;False;;;;1610468277;;False;{};gj0fueb;False;t3_kvqhm5;False;True;t1_gj086kg;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0fueb/;1610525540;2;True;False;anime;t5_2qh22;;0;[]; -[];;;InsomniaEmperor;;;[];;;;text;t2_5x68hmc4;False;False;[];;Love, Election, and Chocolate;False;False;;;;1610468303;;False;{};gj0fwdq;False;t3_kvr482;False;True;t3_kvr482;/r/anime/comments/kvr482/very_underrated_romance_anime/gj0fwdq/;1610525570;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wishbone-Lost;;;[];;;;text;t2_568u16y0;False;False;[];;"Akadama drive - -Code geass - -Goblin slayer - -Oregairu - -Kuroko no basketball - -Guilty crown - -Haikyuu - -Rascal does not dream of bunny girl";False;False;;;;1610468331;;False;{};gj0fygo;False;t3_kvrbv5;False;True;t3_kvrbv5;/r/anime/comments/kvrbv5/beginner_anime_recommendations_please/gj0fygo/;1610525600;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gryphon_xpress;;;[];;;;text;t2_7bvw18u1;False;False;[];;Hunter X Hunter;False;False;;;;1610468402;;False;{};gj0g3v8;False;t3_kvr2u8;False;True;t3_kvr2u8;/r/anime/comments/kvr2u8/looking_for_s_good_lengthy_anime/gj0g3v8/;1610525683;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610468412;;False;{};gj0g4nw;False;t3_kvpz6g;False;True;t1_gj05sve;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0g4nw/;1610525695;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Azrub580;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FpsArena;light;text;t2_661t4twj;False;False;[];;But honestly SAO is the only odd anime on op list. Not many people will recommend it despite its popularity.;False;False;;;;1610468599;;False;{};gj0givd;False;t3_kvpjhh;False;True;t1_giznez4;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gj0givd/;1610525910;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HirokoKueh;;;[];;;;text;t2_tx88sbd;False;False;[];;"> K-On ran in a seinen magazine - -wait isn't it clearly a senen? like other Kirara and most of the CGDCT?";False;False;;;;1610468828;;False;{};gj0h0ig;False;t3_kvqhm5;False;False;t1_gizrsy6;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0h0ig/;1610526172;5;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;Welp at least he isnt some ultra powerful demigod half demon son of Goku in your head canon but merely a kid from another kingdom.;False;False;;;;1610468883;;False;{};gj0h4mz;False;t3_kvpz6g;False;False;t1_gj0ekt6;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0h4mz/;1610526233;13;True;False;anime;t5_2qh22;;0;[]; -[];;;YuriAddict7;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/R1seKujikawa/;light;text;t2_3zn8celm;False;False;[];;"Assualt lily was the biggest surprise of 2020 for me. i watched it just cuz its kinda yuri, expecting trash tier plot and animation, but left with awesome action, hilarious interactions and TWO very precious pairs. - -season 2 plssss";False;False;;;;1610468918;;False;{};gj0h7bc;False;t3_kvpoo2;False;False;t3_kvpoo2;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gj0h7bc/;1610526273;15;True;False;anime;t5_2qh22;;0;[]; -[];;;YuriAddict7;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/R1seKujikawa/;light;text;t2_3zn8celm;False;False;[];;probably 5 minutes long episodes;False;False;;;;1610468975;;False;{};gj0hbs9;False;t3_kvpoo2;False;True;t1_gizr9yk;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gj0hbs9/;1610526339;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MetaThPr4h;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MetaThPr4h/;light;text;t2_fbwjt;False;False;[];;"Damn that was an interesting test, got 46/60. - -[My wrong answers](/s ""This Art Club Has a Problem, Aria, Inuyasha, Nichijou, Banana Fish, Polar Bear Cafe, Paradise Kiss, Drifters, Sayonara Zetsubo-sensei, Beastars, 7 Seeds, Karneval, 07-Ghost, Here Comes Miss Modern"") - -I know nothing about the last 4 so I could only guess, only two I'm upset are the first two from my list because I actually knew the answer but didn't think it well enough, rest were a 50-50 I failed and [one of the answers](/s ""I got baited hard with Paradise Kiss, I know Nana is a shoujo so I went for this work from the same author as shoujo too, got rekt."")";False;False;;;;1610469087;;False;{};gj0hk9m;False;t3_kvqhm5;False;False;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0hk9m/;1610526465;4;True;False;anime;t5_2qh22;;0;[]; -[];;;jeanjeanot;;;[];;;;text;t2_19dri0;False;False;[];;"To me, the devils are the jokers, they act individually and don't follow the rule, if you want a ""Joker kingdom"" i'd say that it's the devil's world - -(i even made [a post](https://old.reddit.com/r/BlackClover/comments/kas2h0/i_was_thinking_about_how_clever_the_naming_was/) talking about that and other things)";False;False;;;;1610469243;;False;{};gj0hw2u;False;t3_kvpz6g;False;False;t1_gj0ekt6;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0hw2u/;1610526640;32;True;False;anime;t5_2qh22;;0;[]; -[];;;LilFueggy;;;[];;;;text;t2_4qnjxlqm;False;False;[];;"“ The idea that you can be born with immense magic and not be a royal was a bit of a driving force for yuno+ASTA” - -Just quoting this to make sure you understood what you wrote before posting cause what?? Where’s that immense magic Asta was born with? Yuno being a prince has no bearing on the theme of Asta’s story. It’s just an explanation to the anomaly Yuno always was.";False;False;;;;1610469259;;False;{};gj0hxa0;False;t3_kvpz6g;False;True;t1_gizyzrl;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0hxa0/;1610526658;2;True;False;anime;t5_2qh22;;0;[]; -[];;;No_chickee_nuggies;;;[];;;;text;t2_90wjd3l4;False;False;[];;I really loved that part too but I wish they had made episodes for the training they did I wanted to see the character development bc asta went to being small to a mini yami. It was a shock for a second tbh;False;False;;;;1610469587;;False;{};gj0imq0;False;t3_kvpz6g;False;False;t1_gj02pyb;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0imq0/;1610527034;6;True;False;anime;t5_2qh22;;0;[]; -[];;;TacoBellIsChipotle;;;[];;;;text;t2_7l9egrg6;False;False;[];;Are the reviews on MAL not enough? I'm not sure what you're after here. Are you fishing for a certain reply to justify a certain watch order to yourself? Different people are telling you different watch orders based on what they would do so you're not going to get some unified answer.;False;False;;;;1610469594;;False;{};gj0in90;False;t3_kvpjhh;False;True;t1_gj09nv7;/r/anime/comments/kvpjhh/in_what_sequence_should_i_watch_these_animes/gj0in90/;1610527043;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Iam4c;;;[];;;;text;t2_65teabof;False;False;[];;Mmm Gaja is pretty fine the queen better get on that pronto.;False;False;;;;1610469961;;False;{};gj0jg13;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0jg13/;1610527481;2;True;False;anime;t5_2qh22;;0;[]; -[];;;blueteenight;;;[];;;;text;t2_11kek1;False;False;[];;Same here for Death Parade, I was pleasantly surprised with how different in tone the actual anime was haha.;False;False;;;;1610470401;;False;{};gj0kepi;False;t3_kvs4ah;False;True;t1_gj02hjt;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj0kepi/;1610527996;2;True;False;anime;t5_2qh22;;0;[]; -[];;;slicer4ever;;;[];;;;text;t2_bgvkp;False;False;[];;"I meant more that they are both peasants from the boonies, but their hard work and effort is what seperates them. Yuno is gifted, but upto this point he was thought to be a peasant, yet had magic reserves capable of rivaling and surpassing pretty much every royal we've seen. Demonstrating to both asta+yuno that being a peasant or royal didn't matter, anyone had a chance to be graced with such abilitys and talent. - -Now that distinction has been squashed because no, to get so much mana you must be descended from royalty.";False;False;;;;1610470413;;False;{};gj0kfnw;False;t3_kvpz6g;False;True;t1_gj0hxa0;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0kfnw/;1610528011;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;"Yeah but most people don't think that intuitively. Just as an example from the quiz [Quiz Spoilers](/s ""anime with an emphasis on gay relationships will almost universally be targeted towards the opposite sex. But on the quiz, shoujo is the dominant answer for Sakura Trick, and seinen is winning out for Banana Fish""). It's easy to get an idea in your head about what something *should* be targeting rather than what it actually is.";False;False;;;;1610470458;;False;{};gj0kj4z;True;t3_kvqhm5;False;False;t1_gj0h0ig;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0kj4z/;1610528064;11;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;Nah Devil Believers;False;False;;;;1610470571;;False;{};gj0ks5y;False;t3_kvpz6g;False;False;t1_gizstv6;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0ks5y/;1610528197;10;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;Charmy's reaching levels of thicc that are unheard of;False;False;;;;1610470752;;False;{};gj0l6h2;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0l6h2/;1610528410;4;True;False;anime;t5_2qh22;;0;[]; -[];;;metaaltheanimefan;;;[];;;;text;t2_1qdntfx;False;False;[];;I actually started my journey into anime due to me liking the sao op. I found it trough an mlp musical video where it was used when I was 12;False;False;;;;1610470895;;False;{};gj0lhqa;False;t3_kvs4ah;False;True;t3_kvs4ah;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj0lhqa/;1610528599;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SpaceMarine_CR;;;[];;;;text;t2_1la1dh3q;False;False;[];;Charmy is a raid boss;False;False;;;;1610470906;;False;{};gj0lio3;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0lio3/;1610528614;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Midori-4;;;[];;;;text;t2_3ffbl678;False;False;[];;"Orange - -True tears";False;False;;;;1610470966;;False;{};gj0lnew;False;t3_kvr482;False;True;t3_kvr482;/r/anime/comments/kvr482/very_underrated_romance_anime/gj0lnew/;1610528692;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;"Spoiler bro. - -Welp technically not since it already happened but a lot of people skipped the anime canon.";False;False;;;;1610471003;;False;{};gj0lqad;False;t3_kvpz6g;False;True;t1_gj0ks5y;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0lqad/;1610528739;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;Basically if Asta can be born with no magic Luck could be born with a ton. Perhaps there was some magic scientist like the one in the Diamond Kingdom that said they could make Luck's mom more powerful, but it failed until she had a kid. Or he could be a bastard noble's kid. I like the thought of him being an anomaly more;False;False;;;;1610471015;;False;{};gj0lqxc;False;t3_kvpz6g;False;False;t1_gj02v01;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0lqxc/;1610528749;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;Bruh it has happened already in the show and if people choose not to watch the non manga episodes the first time then I don’t see why they would go back just cause the anime does it again. This is like I say they beat Vetto in a thread 100 something episodes from the fight.;False;False;;;;1610471111;;False;{};gj0lyos;False;t3_kvpz6g;False;False;t1_gj0lqad;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0lyos/;1610528872;16;True;False;anime;t5_2qh22;;0;[]; -[];;;N1gHtMaRe99;;;[];;;;text;t2_4hm66djz;False;False;[];;So basically the Ray story all over again. U can only have a strong connection to the force if your parents had that;False;False;;;;1610471241;;False;{};gj0m8pg;False;t3_kvpz6g;False;True;t1_gizyzrl;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0m8pg/;1610529027;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;I mean the threads in December mentioned how the show was gonna be on manga stuff as soon as the episode in January aired.;False;False;;;;1610471285;;False;{};gj0mc83;False;t3_kvpz6g;False;True;t1_gj0do8o;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0mc83/;1610529082;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Raqium;;;[];;;;text;t2_a395a7p;False;False;[];;At first, they said it would air mid December;False;False;;;;1610471392;;False;{};gj0mksr;False;t3_kvpz6g;False;False;t1_gj0mc83;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0mksr/;1610529212;0;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;It would’ve aired in December but holidays I believe postponed it. But everyone was in the mindset January 5th cause official sources. So the last episode of December thread pretty much maybe the one before as well;False;False;;;;1610471631;;False;{};gj0n3f8;False;t3_kvpz6g;False;True;t1_gj0mksr;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0n3f8/;1610529495;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"33/60 - damn, I thought I'd do better. Though I haven't seen a single episode of 18 of the shows so those were complete guesses based on the names and pics and what little I may have heard of them, so that's my excuse. - -My real mistakes on shows I'd watched to completion (or as much as is/was out): - -* Maid-sama -* Kaguya-sama (this one came as a complete surprise) -* Erased -* Art Class has a Problem -* Beastars -* Silent Voice (well I read the manga to completion) -* Trigun -* Sakamoto -* Karneval -* Tonikawa -* Drifters -* School Babysitters -* Moriarty";False;False;;;;1610472028;;False;{};gj0nz1x;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0nz1x/;1610529974;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CuteWarCrimes;;;[];;;;text;t2_9rcucv3q;False;False;[];;Toxic? They literally just answered your question. What a pathetic baby.;False;False;;;;1610472029;;False;{};gj0nz4j;False;t3_kvpz6g;False;False;t1_gj0do8o;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0nz4j/;1610529975;6;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"You can add your url to your MAL/Anilist/Kitsu/Anime-planet on here, choose this by going to the sidebar and clicking (edit) next to your username on old reddit, or under community options in new reddit. - -It's good to link it so we know what you've seen. It helps us out.";False;False;;;;1610472031;;False;{};gj0nz9z;False;t3_kvo2yx;False;True;t1_gizts6u;/r/anime/comments/kvo2yx/pls_help_me_find_an_anime_to_watch/gj0nz9z/;1610529977;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Raqium;;;[];;;;text;t2_a395a7p;False;False;[];;When I commented my original question, I had -10 likes. Hence my statement. Thanks for the name-calling though;False;False;;;;1610472131;;False;{};gj0o7c6;False;t3_kvpz6g;False;True;t1_gj0nz4j;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0o7c6/;1610530097;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;A better example is Death Tube manga which is a shonen and the content is just what you'd expect from a manga about making snuff videos.;False;False;;;;1610472150;;False;{};gj0o8w5;False;t3_kvqhm5;False;True;t1_giztmbd;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0o8w5/;1610530120;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;Do you really expect me to have watched half of these?;False;False;;;;1610472307;;False;{};gj0olja;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0olja/;1610530312;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;It's not really not but go ahead.;False;False;;;;1610472312;;1610472617.0;{};gj0olxg;False;t3_kvqlzy;False;True;t1_gj049qn;/r/anime/comments/kvqlzy/my_first_time_watching_plastic_memories/gj0olxg/;1610530318;1;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;The millionaire detective: balance-unlimited. A show with an interesting premise and a great OP.;False;False;;;;1610472370;;False;{};gj0oqjn;False;t3_kvs4ah;False;True;t3_kvs4ah;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj0oqjn/;1610530387;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HirokoKueh;;;[];;;;text;t2_tx88sbd;False;False;[];;most of the CGDCT and SoL (non-drama) are seinen;False;False;;;;1610472382;;False;{};gj0orgo;False;t3_kvqhm5;False;False;t1_gj07cpe;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0orgo/;1610530400;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Fartikus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Zachk;light;text;t2_6z5ky;False;False;[];;Just wish they put the show out of it's misery already so we could get something decent.;False;True;;comment score below threshold;;1610472391;;False;{};gj0os9k;False;t3_kvpoo2;False;True;t3_kvpoo2;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gj0os9k/;1610530412;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;wansen5;;;[];;;;text;t2_13akbj;False;False;[];;Ehh I liked first OP way more. This looks like they lost budget;False;False;;;;1610472644;;False;{};gj0pcfk;False;t3_kvsc53;False;True;t3_kvsc53;/r/anime/comments/kvsc53/that_time_i_got_reincarnated_as_a_slime_season_2/gj0pcfk/;1610530720;1;True;False;anime;t5_2qh22;;0;[]; -[];;;applebyarrow;;;[];;;;text;t2_ehexg;False;False;[];;I pretty much only got the ones I watched... 26/60. Fun test!;False;False;;;;1610472665;;False;{};gj0pe3v;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0pe3v/;1610530746;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CittyM;;;[];;;;text;t2_5cch8d19;False;False;[];;Not an OP but I watched Your Name because I loved Nandemonaiya so much.;False;False;;;;1610472733;;False;{};gj0pjkq;False;t3_kvs4ah;False;False;t3_kvs4ah;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj0pjkq/;1610530830;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Toonamigamerrr;;;[];;;;text;t2_ssw2vcw;False;False;[];;We’re the select few watching and upvoting here🤛;False;False;;;;1610472789;;False;{};gj0pnzc;False;t3_kvpnm4;False;False;t1_gj0eoww;/r/anime/comments/kvpnm4/shadowverse_episode_38_discussion/gj0pnzc/;1610530897;3;True;False;anime;t5_2qh22;;0;[]; -[];;;siklonav;;;[];;;;text;t2_hrxydxz;False;False;[];;"49/60, but I haven't even watched or read like 1/3 of them. It's not really confusing most of the times for me, the target audience makes sense. - -Can it be the fault of ""culture shock"" for western people that they can't see what is supposed to appeal to which target audience?";False;False;;;;1610473102;;False;{};gj0qd6i;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0qd6i/;1610531275;3;True;False;anime;t5_2qh22;;0;[]; -[];;;b0005;;;[];;;;text;t2_8etpr;False;False;[];;"This test is pretty disingenuous running entirely based on the publication it's found in rather than the actual genre of the work. - -Demographics are a continuum rather than a small set of ill-defined categories. - -Kaguya-sama for example is categorized as Seinen because it is published in Young Jump but it could quite easily have been in Shounen Jump or a shoujo or josei book.";False;True;;comment score below threshold;;1610473398;;False;{};gj0r15q;False;t3_kvqhm5;False;True;t1_gj0d1tl;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0r15q/;1610531632;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;">you are calling them horrible shit for disliking an animation studio? - -No. I have criticised MAPPA too for S4E3. - -But there's a difference between providing constructive criticism and bashing the staff. - -I wouldn't tag any of the staff into any of the criticisms I made. Also, the stuff these fans do complain about are generally idiotic things and they seem to ovelook everything the studio does right and only focus on the bad. - -Take the My Hero Academia fanbase for example people were bashing Bones on twitter for not arching Monoma's back enough (I'm not joking). - -Attack on Titan's fanbase also bashed because the use of an OST wasn't to their liking (it wasn't to my liking either but it isn't that big of a deal), instead of criticising in a healthy way and maybe encouraging the composer to change it for the BD release they harassed the Director (who isn't even in charge of the OST).";False;False;;;;1610473484;;False;{};gj0r84f;False;t3_kvsy6n;False;True;t1_gj0qik9;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0r84f/;1610531735;4;True;False;anime;t5_2qh22;;0;[]; -[];;;pfrospfrost;;;[];;;;text;t2_iud9q;False;False;[];;Haven’t used Twitter in a long ass time seems like it’s just a platform for harassing people these days lol;False;False;;;;1610473490;;False;{};gj0r8k0;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0r8k0/;1610531742;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;">You have every right to complain about something you didn't like but you don't have to be a dick about it. - -yeah, this goes the other way around aswell, just because you liked something dont be an asshole about it";False;False;;;;1610473517;;1610474505.0;{};gj0rapk;False;t3_kvsy6n;False;True;t1_gj0a5dp;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0rapk/;1610531774;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Luchaelz;;;[];;;;text;t2_1mwq2xe7;False;False;[];;I knew that Twitter is an absolute cespool of human trash but holy shit, those people are something else. That was one of the best episode in the entire series (all the more impressive considering the state of production), yet they decided to shit on the director for something so miniscule... Hell, I thought everything was spot on.;False;False;;;;1610473542;;False;{};gj0rcr2;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0rcr2/;1610531806;1;True;False;anime;t5_2qh22;;0;[]; -[];;;whowilleverknow;;MAL;[];;https://myanimelist.net/animelist/BignGay;dark;text;t2_o6bib;False;False;[];;The post is about fans being abusive because of music but somehow shippers are the real villains?;False;False;;;;1610473632;;False;{};gj0rk0a;False;t3_kvsy6n;False;True;t1_gj0cupj;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0rk0a/;1610531917;6;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;sir, please read my comment again, what i wrote has the following meaning :most of the anime watchers enjoy the show and are silent, the extremely vocal minority are the problem , did u know that less than 10% of people who engage in a media (video games,books, anime etc.) go to social media to talk about em? we are a minority and those fanatics are a minority of a minority but are the worst part of the community;False;False;;;;1610473656;;False;{};gj0rlx0;False;t3_kvsy6n;False;True;t1_gj0qo1t;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0rlx0/;1610531946;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;">I wouldn't tag any of the staff into any of the criticisms I made. Also, the stuff these fans do complain about are generally idiotic things and they seem to ovelook everything the studio does right and only focus on the bad. - -""you are biased and nitpicking, i win bye bye"" - -> Take the My Hero Academia fanbase for example people were bashing Bones on twitter for not arching Monoma's back enough (I'm not joking). - -yes and? people can talk about whatever the fuck they want they disliked - -> Attack on Titan's fanbase also bashed because the use of an OST wasn't to their liking (it wasn't to my liking neither but it that big of a deal), instead of criticising in a healthy way and maybe encouraging the composer to change it for the BD release they harassed the Director (who isn't even in charge of the OST). - -and people that liked it, harassed the shit out of people that disliked it, im not supporting neither but this thread is making my blood boild about how the ones that disliked it are somehow horrible persons and nitpickers?";False;False;;;;1610473715;;False;{};gj0rqn8;False;t3_kvsy6n;False;True;t1_gj0r84f;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0rqn8/;1610532018;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Confused_n_tired;;;[];;;;text;t2_29i19qjk;False;False;[];;I'm pretty sure half of them aren't even musicians to critique anything;False;False;;;;1610473730;;False;{};gj0rrxz;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0rrxz/;1610532039;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ben99ny22;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ben99ny;light;text;t2_14rmpidg;False;False;[];;"> All that I know about this stuff is that the demographic rarely depends on the content of the work, but rather the magazine it was run in - -I do think this is a good answer. But it isn't necessarily the truth since i remember reading somewhere that aka akasaka (kaguya's author) wrote the series with middle aged women in mind. But it was being published in a seinen magazine. - -I think authors don't necessarily care where they get published, as long as they can get published. AOT's author went to many different publishers just to get AOT published.";False;False;;;;1610473732;;False;{};gj0rs2q;False;t3_kvqhm5;False;False;t1_gizrsy6;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0rs2q/;1610532041;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lucella713;;;[];;;;text;t2_yeml9;False;False;[];;"> I think he might just be overwhelmed by the amount of attention he has gotten. - -I'm almost certain that was the case. He was flooded with hundreds of positive comments and thousands of likes before locking his account. So the first part of the tweet is bullshit kinda.";False;False;;;;1610473737;;False;{};gj0rsft;False;t3_kvsy6n;False;True;t1_gj0l5gq;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0rsft/;1610532046;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610473751;;False;{};gj0rtlc;False;t3_kvsy6n;False;True;t1_gj0qt3r;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0rtlc/;1610532065;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vintrial;;;[];;;;text;t2_dx6ct;False;False;[];;luck had an elf remember;False;False;;;;1610473775;;False;{};gj0rvkb;False;t3_kvpz6g;False;True;t1_gj0501c;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0rvkb/;1610532096;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;Why?;False;False;;;;1610473796;;False;{};gj0rx92;False;t3_kvsy6n;False;True;t1_gj0lhae;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0rx92/;1610532121;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610473812;;False;{};gj0rykm;False;t3_kvsy6n;False;True;t1_gj0f74k;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0rykm/;1610532144;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;i like to engage in discussions about shows i hate, how am i a loud minority and the worst part of the community? it is just fun to discuss things i liked or disliked, that is like half of the fun;False;False;;;;1610473827;;False;{};gj0rzu0;False;t3_kvsy6n;False;True;t1_gj0rlx0;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0rzu0/;1610532163;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610473882;;False;{};gj0s47o;False;t3_kvsy6n;False;True;t1_gj0r183;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0s47o/;1610532230;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zxHellboyxz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Mattinator95;light;text;t2_27t5u6vk;False;False;[];;"Seen alot of comments hoping they change it in the Blu-ray ... Do they even do that sort of thing. - - - it's like when people complain about cg in anime and see comments like ""I hope they change the CG to 2d in the Blu-ray"" when that never happens ( that I recall ) as they would have to redo the whole scene agian and would take ages to do";False;False;;;;1610473907;;False;{};gj0s66n;False;t3_kvsy6n;False;True;t1_gj0du2i;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0s66n/;1610532259;2;True;False;anime;t5_2qh22;;0;[]; -[];;;okokokok1111;;;[];;;;text;t2_5ca3lfb5;False;False;[];;">it was a sudden moment filled with excitement and horror, they even made Eren look like a monster - -Did they though? I think that the music choice, or rather the absence of it for the most part, was a good choice, the whole episode is a slow burning build up of tension, and they decided to go for that route up until the very moment before his transformation. This might fit with the ""excitement and horror"" that you've said but did they really make Eren look like a monster? I feel like that was not the point at all. - -[I'll use spoilers just in case](/s ""The whole dialogue with Reiner is about how ""saving the world"", that is ""killing all the island devils"", is something he had to do, because of various circumstances that Eren completely acknowledges by that point. When he says right before transforming that they are truly the same is that he also is doing something that he has to do. He is now in a war where all the world is his enemy and he is simply defending his own world. I don't think that there is necessarily anything that is making Eren a straight up monster at this point"") - -Also, the music after he transforms is not one that makes horror transpire in any way, imo. Trumpets are for generally used for a heroic entrance, and that is the impression i get when i hear it. To support this, 2volt has already been used in: [s3 p2 spoiler](/s ""Levi vs Beast Titan. It starts when Levi is able to get a clear view of Zeke's nape. And in that case it truly is a heroic moment"") - -I think that as a manga reader i think that a ""hype"" kind of OST, like the leaked one, would have been more fitting because the thought of seeing **that moment** animated had me in hype. But to an anime only that is only going off of what he is seeing in the episode, one that has a more tension-vibe is going to feel better. - -So, do I think it was a **great choice**, no, I don't. Do i think it was a terrible choice? No, i don't. Even if i did, would i harass someone directly for it? Hell no. - -Edit: typo";False;False;;;;1610473923;;1610477158.0;{};gj0s7ha;False;t3_kvsy6n;False;True;t1_gj0f74k;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0s7ha/;1610532279;5;True;False;anime;t5_2qh22;;0;[]; -[];;;-V0lD;;;[];;;;text;t2_xapna;False;True;[];;"Worse - -Have you read some of there theory discussions? - -They're fanatics that (speaking from experience) literally start harassing and threatening you in PM's if you don't think that [Manga Spoilers](/s ""Ymir send back memories to season one Eren to tell him to bang Historia"") -And that's not an outlier. - -Whenever you find someone like that in any part of the community, check their account and you'll see they're most active on titanfolk";False;False;;;;1610473947;;False;{};gj0s9en;False;t3_kvsy6n;False;True;t1_gj0qt3r;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0s9en/;1610532310;7;True;False;anime;t5_2qh22;;0;[]; -[];;;rarz;;MAL;[];;http://myanimelist.net/profile/rarz;dark;text;t2_4gtlz;False;False;[];;Fans are the best and worst thing that can happen to you.;False;False;;;;1610474000;;False;{};gj0sdmx;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0sdmx/;1610532372;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rarely_exactly_right;;;[];;;;text;t2_6o90vqzf;False;False;[];;"r/tiantfolk user here. Yep. When the episode came out the subreddit was full of people complaining about it and some even posting videos of how they ""fixed"" the ost. Thankfully, now more people on the subreddit are actually memeing these people by putting epic music over ordinary scenes to show just how ridiculous all these people were being,";False;False;;;;1610474005;;False;{};gj0se02;False;t3_kvsy6n;False;True;t1_gj0l9vj;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0se02/;1610532378;17;True;False;anime;t5_2qh22;;0;[]; -[];;;ffxivfanboi;;;[];;;;text;t2_1dj4ncs;False;False;[];;"That was absolutely terrible and so cliche with the big explosion of sound/choir as he burst up through the building. Ugh. - -Attack on Titan has *plenty* of bombastic moments with well-placed hype music—the meeting of Eren and Reiner and the ensuing mental mind-fuckery was a moment not needing ruined by over the top OST. - -Anime has been stellar so far. It is much more ominous with its quiet intensity, making you almost wonder “oh my god, is Eren the ‘bad guy’ now?”";False;False;;;;1610474032;;False;{};gj0sga1;False;t3_kvsy6n;False;True;t1_gj0bex0;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0sga1/;1610532411;6;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;Its the same thing, crazy fans want one thing, dont get, get mad, harass the creators, mha shippers did it to the mangaka of mha and now aot on twitter for music choice;False;False;;;;1610474066;;1610475187.0;{};gj0sixp;False;t3_kvsy6n;False;True;t1_gj0rk0a;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0sixp/;1610532453;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;man, u suck at reading or maybe my comments make no sense , i dont mention shittalking and discussions;False;False;;;;1610474105;;False;{};gj0sm2q;False;t3_kvsy6n;False;True;t1_gj0rzu0;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0sm2q/;1610532499;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ffxivfanboi;;;[];;;;text;t2_1dj4ncs;False;False;[];;Exactly.;False;False;;;;1610474136;;False;{};gj0soko;False;t3_kvsy6n;False;True;t1_gj0dfbb;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0soko/;1610532538;6;True;False;anime;t5_2qh22;;0;[]; -[];;;digbicks845;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;god ussop;dark;text;t2_12n6ju;False;False;[];;Charmy is too funny😂;False;False;;;;1610474158;;False;{};gj0sqbi;False;t3_kvpz6g;False;True;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0sqbi/;1610532565;2;True;False;anime;t5_2qh22;;0;[]; -[];;;neonARKphoenix;;;[];;;;text;t2_4d9250k4;False;False;[];;People are cunts.;False;False;;;;1610474174;;False;{};gj0srn6;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0srn6/;1610532585;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;I still can't believe I picked up Jojo because of the first OP. Best decision ever.;False;False;;;;1610474200;;False;{};gj0stsa;False;t3_kvs4ah;False;True;t3_kvs4ah;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj0stsa/;1610532617;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"Blu-ray's usually improve on minor inconsistencies. I'm expecting many changes to Eren's model since it's often weird. - -CGI likely won't be touched though. - -Redoing of entire scenes or additional scenes is quite rare. - - -I'm looking forward to the Blu ray as encoders will be able to improve the blur with a higher quality source better than the edited episodes going around rn. Even though currently I already prefer the edits with much less blur.";False;False;;;;1610474205;;False;{};gj0su66;False;t3_kvsy6n;False;True;t1_gj0s66n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0su66/;1610532623;3;True;False;anime;t5_2qh22;;0;[]; -[];;;VPN_FTW;;;[];;;;text;t2_8p4rg72g;False;False;[];;Evangelion sucks;False;False;;;;1610474250;;False;{};gj0sxts;False;t3_kvsy6n;False;True;t1_gj0h2xo;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0sxts/;1610532677;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MejaBersihBanget;;;[];;;;text;t2_4a6wkvny;False;False;[];;"> ""Oh no, what will TWITTER think about this anime?"" - -The problem is that companies **really care** about what Twitter thinks. Despite the fact that they are really a small percentage of any given population. Its influence is ridiculously outsized.";False;False;;;;1610474292;;False;{};gj0t19p;False;t3_kvsy6n;False;True;t1_gj0fdyz;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0t19p/;1610532727;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Raaf3;;;[];;;;text;t2_7duyvjit;False;False;[];;I meant how you see big girl was a song of betrayal and was sad, it wouldn't fit;False;False;;;;1610474344;;False;{};gj0t5h1;False;t3_kvsy6n;False;True;t1_gj0r183;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0t5h1/;1610532791;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazzlike_Razzmatazz;;;[];;;;text;t2_5ybf9h66;False;False;[];;Very surprised that people find aot mediocre;False;False;;;;1610474363;;1610476383.0;{};gj0t6yy;False;t3_kvsy6n;False;True;t1_gj0ht8y;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0t6yy/;1610532813;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Smoke_Santa;;;[];;;;text;t2_7irtoh1r;False;False;[];;I too didn't like the ost used at the end of ep5, but I won't go harassing anyone lmao;False;False;;;;1610474371;;False;{};gj0t7np;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0t7np/;1610532823;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;"Luck had the soul of a reincarnated elf inside of him but that has nothing to do with it. - -The only thing related between the elf and his power was the fact that he got a power boost to his mana control. And this is by episode 100 something. - -They never said that just because you had an elf soul inside of you that made you powerful.";False;False;;;;1610474386;;False;{};gj0t8ua;False;t3_kvpz6g;False;False;t1_gj0rvkb;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0t8ua/;1610532841;9;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;[https://youtu.be/500N3UNA30k](https://youtu.be/500N3UNA30k);False;False;;;;1610474400;;False;{};gj0t9xr;False;t3_kvsy6n;False;True;t1_gj0t5h1;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0t9xr/;1610532857;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lle0nx3;;;[];;;;text;t2_nih5n;False;False;[];;I'm personally not the biggest fan of how Mappa has handled the adaption as whole so far but my personal enjoyment of a series is in no way shape or form any reason to harrass the people who have worked on it. That's just despicable tbh.;False;False;;;;1610474485;;False;{};gj0tgur;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0tgur/;1610532960;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"People always confuse shounen and seinne. - -Shounens target a young male demographic but it doesn't mean it's only battle shounens. - -it has plenty of romances, mature stories, thrillers etc... - -Same with seinen. Seinen doesn't mean dark and mature; it just targets a more mature audience. Plenty of light hearted seinens out there";False;False;;;;1610474487;;False;{};gj0th1a;False;t3_kvqhm5;False;False;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0th1a/;1610532962;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazzlike_Razzmatazz;;;[];;;;text;t2_5ybf9h66;False;False;[];;Not it isn't lyrics seems out of place in other Words 0 sync.;False;False;;;;1610474526;;False;{};gj0tk33;False;t3_kvsy6n;False;True;t1_gj0r506;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0tk33/;1610533008;4;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Go to JP forums and find out yourself. Be Warned, It won't be prety.;False;False;;;;1610474562;;False;{};gj0tmw7;False;t3_kvsy6n;False;True;t1_gj0rx92;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0tmw7/;1610533051;6;True;False;anime;t5_2qh22;;0;[]; -[];;;spamholderman;;;[];;;;text;t2_7zofj;False;False;[];;"> when the hate was at its pieck - -I see what you did there.";False;False;;;;1610474662;;False;{};gj0tuq5;False;t3_kvsy6n;False;True;t1_gj0l5gq;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0tuq5/;1610533171;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MejaBersihBanget;;;[];;;;text;t2_4a6wkvny;False;False;[];;"> when the hate was at its **pieck** - -I see what you did there lol";False;False;;;;1610474696;;False;{};gj0txfq;False;t3_kvsy6n;False;True;t1_gj0l5gq;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0txfq/;1610533214;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mike_2797;;;[];;;;text;t2_8qbcq38;False;False;[];;Why can't the fans appreciate for the work they've put in even in such circumstances instead they ramble about superficial stuff sigh.;False;False;;;;1610474703;;False;{};gj0ty1i;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0ty1i/;1610533222;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rrdepota;;;[];;;;text;t2_4ykujxwv;False;False;[];;Yeah that's not good.;False;False;;;;1610474808;;False;{};gj0u68u;False;t3_kvsy6n;False;True;t1_gj0t9xr;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0u68u/;1610533348;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LOTRfreak101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LOTRfreak101;light;text;t2_opd6l;False;False;[];;you mean you remember all 7 josei?;False;False;;;;1610474819;;False;{};gj0u76a;False;t3_kvqhm5;False;False;t1_gizuzih;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0u76a/;1610533364;3;True;False;anime;t5_2qh22;;0;[]; -[];;;linearstargazer;;;[];;;;text;t2_wkywf;False;False;[];;It's only been used twice, and each one was a different variation. The only argument that holds up is that having that very action-tempo 3/4 beat theme play over a scene of a bunch of kids arguing was a kinda weird choice, but even then that's subjective.;False;False;;;;1610474857;;False;{};gj0ua4v;False;t3_kvsy6n;False;True;t1_gj0ny17;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0ua4v/;1610533408;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LOTRfreak101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LOTRfreak101;light;text;t2_opd6l;False;False;[];;TIL;False;False;;;;1610474877;;False;{};gj0ubtb;False;t3_kvqhm5;False;False;t1_gj0orgo;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0ubtb/;1610533433;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MejaBersihBanget;;;[];;;;text;t2_4a6wkvny;False;False;[];;Josei adaptations have been almost entirely taken over by J-dramas and live action film adaptations.;False;False;;;;1610474886;;False;{};gj0ucgg;False;t3_kvqhm5;False;True;t1_gizs09k;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0ucgg/;1610533443;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610474890;;False;{};gj0ucsm;False;t3_kvsy6n;False;True;t1_gj0eh5t;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0ucsm/;1610533448;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ErohaTamaki;;;[];;;;text;t2_57gpkh3w;False;False;[];;The story will continue in the game but a season 2 is pretty unlikely;False;False;;;;1610474919;;False;{};gj0uf4l;False;t3_kvpoo2;False;True;t1_gj0ayuy;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gj0uf4l/;1610533484;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BeckQuillion89;;;[];;;;text;t2_11czx8;False;False;[];;"Some people feel so damn entitled with their anime. It honestly makes me sick how low they'll go in ""support"" of their shows.";False;False;;;;1610474926;;False;{};gj0ufos;False;t3_kvsy6n;False;True;t1_gj05trd;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0ufos/;1610533491;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;Thank god Japan mostly doesn't give a shit.;False;False;;;;1610474978;;False;{};gj0uju0;False;t3_kvsy6n;False;True;t1_gj0t19p;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0uju0/;1610533554;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;">Its for the best to stay out of specific fandom community and stay in all around subs like [r/anime](https://www.reddit.com/r/anime/) or [r/Manga](https://www.reddit.com/r/Manga/) - -That's what I do. I mostly stay in r/anime, r/manga, r/lightnovels and sometimes r/manhwa and r/visualnovels.";False;False;;;;1610475079;;False;{};gj0urph;False;t3_kvsy6n;False;True;t1_gj0ny17;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0urph/;1610533681;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LOTRfreak101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LOTRfreak101;light;text;t2_opd6l;False;False;[];;I have about 4 times your completed on MAL and even I haven't seen most of them. there were only a handful I hadn't heard of though.;False;False;;;;1610475079;;False;{};gj0urpu;False;t3_kvqhm5;False;False;t1_gj0f2n8;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0urpu/;1610533681;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DevinSimatupang;;;[];;;;text;t2_87uouqvz;False;False;[];;"May i know what is going on? Which part in the episode that incite the ""fans"" to harrass AoT director?";False;False;;;;1610475111;;False;{};gj0uu9q;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0uu9q/;1610533721;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDarkRobotix;;;[];;;;text;t2_byh84;False;False;[];;What part of the episode was bad lol? It was great as an anime only;False;False;;;;1610475125;;False;{};gj0uvfj;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0uvfj/;1610533738;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Raaf3;;;[];;;;text;t2_7duyvjit;False;False;[];;doesnt fit at all bro;False;False;;;;1610475145;;False;{};gj0uwze;False;t3_kvsy6n;False;True;t1_gj0t9xr;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0uwze/;1610533761;0;True;False;anime;t5_2qh22;;0;[]; -[];;;thorppeed;;;[];;;;text;t2_nmgx5pm;False;True;[];;Tbf it was pretty awesome when that one guy put out a full version of the episode with a different ost at the end. But yeah some people were definitely being dramaqueens about the whole thing;False;False;;;;1610475150;;False;{};gj0uxdr;False;t3_kvsy6n;False;True;t1_gj0se02;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0uxdr/;1610533768;5;True;False;anime;t5_2qh22;;0;[]; -[];;;zxHellboyxz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Mattinator95;light;text;t2_27t5u6vk;False;False;[];;Nope Dosent fit;False;False;;;;1610475151;;False;{};gj0uxh6;False;t3_kvsy6n;False;True;t1_gj0t9xr;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0uxh6/;1610533769;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LOTRfreak101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LOTRfreak101;light;text;t2_opd6l;False;False;[];;28/60 not surprising since I'm really bad at understanding what demographics things are for. there were a number that I knew but I probably missed most everything I guessed on.;False;False;;;;1610475187;;False;{};gj0v0bm;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0v0bm/;1610533812;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kevin2GO;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Kevin2GO;light;text;t2_m72nt3;False;False;[];;as if reddit is any better, especially big subs like this lol;False;False;;;;1610475190;;False;{};gj0v0id;False;t3_kvsy6n;False;True;t1_gj05d88;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0v0id/;1610533815;5;True;False;anime;t5_2qh22;;0;[]; -[];;;unaviable;;;[];;;;text;t2_1o4qd3;False;True;[];;"I followed so many specific fandoms from r/prequelmemes to r/shitpostcrusaders and at the bottom line their overused jokes, childish memes and so on and on drained me mentally. - -Like when I wanted to escape from the world to reddit to look at good posts, this childish memes, post, or discussion threads why because x characters are a deus ex machina mentally drained me and I was worse than before I went to reddit to ease my mind.";False;False;;;;1610475257;;False;{};gj0v5w1;False;t3_kvsy6n;False;True;t1_gj0urph;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0v5w1/;1610533899;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Raaf3;;;[];;;;text;t2_7duyvjit;False;False;[];;what I meant by horror is by how the audience of the crowd of Willy's speech would have felt, so like how the scene was;False;False;;;;1610475274;;False;{};gj0v797;False;t3_kvsy6n;False;True;t1_gj0s7ha;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0v797/;1610533922;2;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your submission has been removed. - -- Your post is about a rumor. Rumor posts aren't allowed. Feel free to link to an official source if this is an official announcement. - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610475308;moderator;False;{};gj0v9zu;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0v9zu/;1610533964;1;True;True;anime;t5_2qh22;;0;[]; -[];;;mike_2797;;;[];;;;text;t2_8qbcq38;False;False;[];;Damn they cut the Mimosa scene huh..;False;False;;;;1610475358;;False;{};gj0vdzn;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0vdzn/;1610534026;6;True;False;anime;t5_2qh22;;0;[]; -[];;;monkeyDberzerk;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_2y5rjenj;False;False;[];;">Twatter - -You accidentally just came up with the best way to describe it.";False;False;;;;1610475374;;False;{};gj0vfae;False;t3_kvsy6n;False;True;t1_gj05d7n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0vfae/;1610534048;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sticktoyaguns;;;[];;;;text;t2_d9wcb;False;False;[];;Yuno is a contrast to Asta. Yuno represents luck and natural talent. Asta represents hard work and dedication. Can't just look at Yuno.;False;False;;;;1610475384;;False;{};gj0vg27;False;t3_kvpz6g;False;True;t1_gizyzrl;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0vg27/;1610534061;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bitterl3mon;;;[];;;;text;t2_4teghmt;False;False;[];;"*manga fandom* - -The only people complaining are those with high expectations going into the episode, and already know what's going to happen. A course it's not everyone, it isn't even a majority. It's already become a meme where people put different music over previously season; satirializing the toxic fans.";False;False;;;;1610475407;;False;{};gj0vhu1;False;t3_kvsy6n;False;True;t1_gj07qux;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0vhu1/;1610534090;5;True;False;anime;t5_2qh22;;0;[]; -[];;;sticktoyaguns;;;[];;;;text;t2_d9wcb;False;False;[];;"The Spade arc has some of the best fights and artwork in the whole series, and there are so many fights that I do not expect the anime to do all of them justice. - -There are a lot of reveals that happen in this arc as well. If you like manga definitely catch up.";False;False;;;;1610475558;;False;{};gj0vtzr;False;t3_kvpz6g;False;True;t1_gj0akqu;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0vtzr/;1610534285;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dankest_niBBa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_314yh1er;False;False;[];;The memes are lit tho, ngl.;False;False;;;;1610475601;;False;{};gj0vxgh;False;t3_kvsy6n;False;True;t1_gj0pwzk;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0vxgh/;1610534339;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;Inaba from Kokoro Connect \[[example](https://youtu.be/Dd3o5vcE8Hc)\];False;False;;;;1610475624;;False;{};gj0vzbo;False;t3_kvsds7;False;False;t3_kvsds7;/r/anime/comments/kvsds7/anime_with_best_smug_girl/gj0vzbo/;1610534369;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zorozoldyck;;;[];;;;text;t2_ba1g4yh;False;False;[];;I need Yami bath scene now. This isn't revealing enough. I need sexy muscular back and butt.;False;False;;;;1610475654;;False;{};gj0w1pr;False;t3_kvpz6g;False;False;t1_gizsh4r;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0w1pr/;1610534404;9;True;False;anime;t5_2qh22;;0;[]; -[];;;PsychoI00;;;[];;;;text;t2_4yzn3y5b;False;False;[];;It's none of them but thanks tho;False;False;;;;1610475686;;False;{};gj0w4a3;True;t3_kvq8ty;False;True;t1_gj00i6b;/r/anime/comments/kvq8ty/looking_for_a_specific_anime_anime_with_a_girl/gj0w4a3/;1610534443;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;Blessing us with chibi shorts for D4DJ *and* Assault Lily? Praise Bushiroad!;False;False;;;;1610475697;;False;{};gj0w565;False;t3_kvpoo2;False;False;t3_kvpoo2;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gj0w565/;1610534456;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;fit better than the shit ost we got;False;False;;;;1610475747;;False;{};gj0w96m;False;t3_kvsy6n;False;True;t1_gj0uwze;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0w96m/;1610534519;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zorozoldyck;;;[];;;;text;t2_ba1g4yh;False;False;[];;It was good content. It is your loss.;False;False;;;;1610475753;;False;{};gj0w9oe;False;t3_kvpz6g;False;False;t1_gizxspb;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0w9oe/;1610534527;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610475765;;False;{};gj0walz;False;t3_kvsy6n;False;True;t1_gj0lhae;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0walz/;1610534542;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sticktoyaguns;;;[];;;;text;t2_d9wcb;False;False;[];;What? The OP was #3 on youtube as well;False;False;;;;1610475782;;False;{};gj0wc0d;False;t3_kvpz6g;False;True;t1_gj02lvn;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0wc0d/;1610534564;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Zorozoldyck;;;[];;;;text;t2_ba1g4yh;False;False;[];;Especially those sweet yami pecs and ass.;False;False;;;;1610475808;;False;{};gj0we1l;False;t3_kvpz6g;False;False;t1_gizuxeg;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0we1l/;1610534596;4;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;whatever man , it is still better;False;False;;;;1610475809;;False;{};gj0we58;False;t3_kvsy6n;False;True;t1_gj0tk33;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0we58/;1610534597;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;hachiagejo;;;[];;;;text;t2_fu72y;False;False;[];;"A lot of Josei/Shoujo adaptations get the live-action adaptation treatment and tend to fair better in that field. - -The most recent one was the adaptation of the manga ['Koi wa Tsuzuku yo Dokomademo'](https://myanimelist.net/manga/97520/Koi_wa_Tsuzuku_yo_Dokomademo) ([KoiTsudu](https://mydramalist.com/51965-koi-wa-tsuzuku-yo-doko-made-mo) for short), and it became a huge hit in Japan/overseas.";False;False;;;;1610475991;;False;{};gj0wsrd;False;t3_kvqhm5;False;False;t1_gizs09k;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0wsrd/;1610534823;8;False;False;anime;t5_2qh22;;0;[]; -[];;;Mynameis2cool4u;;;[];;;;text;t2_oolqn;False;False;[];;plus someone made an R34 version lol;False;False;;;;1610476019;;False;{};gj0wuzx;False;t3_kvpz6g;False;False;t1_gizuw1f;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0wuzx/;1610534864;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AdiMG;;MAL;[];;https://myanimelist.net/profile/adi_mk_ii;dark;text;t2_k0bsu;False;False;[];;It's like 90, but touche;False;False;;;;1610476054;;False;{};gj0wxsd;False;t3_kvqhm5;False;False;t1_gj0u76a;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0wxsd/;1610534914;5;True;False;anime;t5_2qh22;;0;[]; -[];;;link2601;;;[];;;;text;t2_if4t4w;False;False;[];;Oh Rill one day u will learn the the woman of ur dreams is that never ending ball of hunger. Great to see Yuno Advance and I can’t wait to learn more about his backstory next week. This weeks petit clover was pretty good.;False;False;;;;1610476074;;False;{};gj0wzbt;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0wzbt/;1610534938;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Evilbefalls;;;[];;;;text;t2_ch0ouuf;False;False;[];;Charmey is so cute But dont make her mad you regret it for sure;False;False;;;;1610476183;;False;{};gj0x82x;False;t3_kvpz6g;False;True;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0x82x/;1610535078;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PsychoGeek;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/PsychoGeek;dark;text;t2_lyjee;False;False;[];;Josei and shoujo manga always got live action adaptations, I'm pretty sure. It's just that they used to get anime adaptations alongside live action, but has mostly that stopped now.;False;False;;;;1610476184;;False;{};gj0x85t;False;t3_kvqhm5;False;True;t1_gj0wsrd;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0x85t/;1610535079;2;True;False;anime;t5_2qh22;;0;[]; -[];;;-V0lD;;;[];;;;text;t2_xapna;False;True;[];;"I mean, they're not in every fandom, but the SnK ones, (specifically the two big eren ones that aren't levi x eren) are really bad - -It is really weird that levi x Eren is somehow the least bad Eren ship right now";False;False;;;;1610476199;;1610476417.0;{};gj0x9eo;False;t3_kvsy6n;False;True;t1_gj0okgv;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0x9eo/;1610535098;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;Sad that the episode didn't air after tomorrow, because Twitter will have [something else to complain about then!](https://myanimelist.net/anime/40750/Kaifuku_Jutsushi_no_Yarinaoshi);False;False;;;;1610476203;;False;{};gj0x9qi;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0x9qi/;1610535103;2;True;False;anime;t5_2qh22;;0;[]; -[];;;erenscumcleaner;;;[];;;;text;t2_95h3lwud;False;False;[];;"> [r/titanfolk](https://www.reddit.com/r/titanfolk/). - -as a titanfolk user, that sub is so toxic";False;False;;;;1610476358;;False;{};gj0xm7v;False;t3_kvsy6n;False;True;t1_gj08vzs;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0xm7v/;1610535292;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SpicyParagade;;;[];;;;text;t2_8ciwfa8i;False;False;[];;"That's about it. There's a lot of people around the world, with a lot of different opinions, some of them are unfounded. - -Social media makes it easy for anyone to make any statement. That's the best and the worst aspect of it. - -I consider myself a reasonable guy, but I've made comments here and there that, on retrospective, make me think ""how can I possibly be this stupid?"" - of course, if you ever quote me on this, I will deny it.";False;False;;;;1610476362;;False;{};gj0xmk6;False;t3_kvsy6n;False;True;t1_gj0o3ec;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0xmk6/;1610535297;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mynameis2cool4u;;;[];;;;text;t2_oolqn;False;False;[];;The Boogiepop Opening by Myth and Roid made me watch the show. It’s abstract and mysterious, i wouldn’t have heard of the show without hearing it;False;False;;;;1610476420;;False;{};gj0xr7a;False;t3_kvs4ah;False;True;t3_kvs4ah;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj0xr7a/;1610535369;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"> I seriously don't understand what was even wrong with the OST. It was fine IMO. - -I don't think the issue people have is that there was 'something wrong', I think they simply thought it could've been even better. - -I've seen the video people posted, about the chapter playing with the ""hype song"", and I have to say, it's pretty fucking good. So the question people might have in mind is... Why didn't they do it? - -And I've seen some people say that they can't always use that hype song, because it'll lose its 'effect' or something like that, which is a fair point, but the thing is, that was a fucking huge hype moment... Especially after the tension of a nearly 20 minutes conversation leading up to this point. - -I'd put it about on par with the Reiner/Bertholdt scene. - -So if the main argument about not using that song then was to avoid 'wasting it', well I really don't think it would've been wasted if they used it there. - -None of this justify any kind of harassment of course. - -But just because their reaction is wrong, doesn't mean their question isn't legitimate. And their question, after all, is just a matter of opinion. - -It was a 10/10 hype scene, but some felt like playing that hype song might've brought it to 11.";False;False;;;;1610476531;;False;{};gj0y084;False;t3_kvsy6n;False;True;t1_gj0a5dp;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0y084/;1610535513;5;True;False;anime;t5_2qh22;;0;[]; -[];;;OfficialPrower;;;[];;;;text;t2_glem1;False;False;[];;Otherside Picnic is currently airing right now, I think it has what you’re looking for...;False;False;;;;1610476596;;False;{};gj0y5gm;False;t3_kvr2wd;False;False;t3_kvr2wd;/r/anime/comments/kvr2wd/best_lovecraftian_anime_recommendations/gj0y5gm/;1610535610;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SpicyParagade;;;[];;;;text;t2_8ciwfa8i;False;False;[];;Yeah, the soundtrack was better in the Manga. 🙉;False;False;;;;1610476618;;False;{};gj0y76u;False;t3_kvsy6n;False;True;t1_gj0n5qg;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0y76u/;1610535638;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610476634;;False;{};gj0y8h5;False;t3_kvpz6g;False;False;t1_gj0ekt6;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0y8h5/;1610535660;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sparkletopia;;;[];;;;text;t2_3up2k6rl;False;False;[];;49/60 which I don't think is bad. Whenever I was in doubt I put seinen, since I feel like I've seen the widest variety of tones and genre in seinen manga.;False;False;;;;1610476731;;False;{};gj0yg08;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0yg08/;1610535783;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Crosswrm;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/crosswrm/;light;text;t2_ypjy1;False;False;[];;31/60. What surprised me the most was Aria being Shounen;False;False;;;;1610476815;;False;{};gj0ymst;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj0ymst/;1610535894;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SpicyParagade;;;[];;;;text;t2_8ciwfa8i;False;False;[];;Yeah, it kinda does. It will always be a classic, but the plot is all over the place and the animation is inconsistent. It looks like the writer focused so much on teaching philosophy concepts, but he forgot to write a compelling story to go along.;False;False;;;;1610476892;;False;{};gj0yt33;False;t3_kvsy6n;False;True;t1_gj0sxts;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0yt33/;1610535998;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HereticalAegis;;;[];;;;text;t2_6xeubalv;False;False;[];;Date A Live! YouTube recommended its third OP, I Swear, and after listening to it I decided to give the show a shot. Thought it would be trash, but now it's unironically one of my favorite things.;False;False;;;;1610476894;;False;{};gj0yt88;False;t3_kvs4ah;False;True;t3_kvs4ah;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj0yt88/;1610536000;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aschentei;;;[];;;;text;t2_z1t0l;False;False;[];;"this shit slaps! - -that being said im gonna miss Takuma doing the OPs, he was great too";False;False;;;;1610476921;;False;{};gj0yvdj;False;t3_kvsc53;False;False;t3_kvsc53;/r/anime/comments/kvsc53/that_time_i_got_reincarnated_as_a_slime_season_2/gj0yvdj/;1610536035;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Redmon425;;;[];;;;text;t2_15ro6h;False;False;[];;"Well, I had already been thinking this a long time, and last episode basically confirmed it. But it is nice to finally have confirmation on Yuno being from a royal family in a different kingdom. It was really obvious since basically the beginning of the series, but glad to finally know the truth! - -I am more curious if that means we get Asta's story eventually? I would assume he is also from the same kingdom, if they were both delivered at the same time. - -Also loved the girls talking about Asta. Still hope that Nero eventually falls for Asta as well!!!";False;False;;;;1610476940;;False;{};gj0ywut;False;t3_kvpz6g;False;True;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0ywut/;1610536059;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AlternativeOk1708;;;[];;;;text;t2_7x8optte;False;False;[];;Asta is the one who represents Tabata in BC;False;False;;;;1610477036;;False;{};gj0z4oc;False;t3_kvpz6g;False;False;t1_gizpha1;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0z4oc/;1610536186;8;True;False;anime;t5_2qh22;;0;[]; -[];;;SpicyParagade;;;[];;;;text;t2_8ciwfa8i;False;False;[];;It isn't better. It isn't worse. All social media opinions should be taken with a grain of salt. Just like all opinions outside social media should be taken with a grain of salt.;False;False;;;;1610477066;;False;{};gj0z6yv;False;t3_kvsy6n;False;True;t1_gj0v0id;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0z6yv/;1610536221;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sw1611;;;[];;;;text;t2_4eyltl74;False;False;[];;Welp, now i just hope the game would be available for worldwide...;False;False;;;;1610477107;;False;{};gj0zabq;False;t3_kvpoo2;False;True;t1_gj0uf4l;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gj0zabq/;1610536273;2;True;False;anime;t5_2qh22;;0;[]; -[];;;-V0lD;;;[];;;;text;t2_xapna;False;True;[];;"Basically 90% the second one - -All posts on the main that where being toxic about it where tf users seeing it as an untapped marked";False;False;;;;1610477214;;False;{};gj0zj05;False;t3_kvsy6n;False;True;t1_gj0l9vj;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0zj05/;1610536409;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Swyfti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Swyfty;light;text;t2_ce1yn;False;False;[];;Haikyuu, Dororo, Death Parade, Terror in Resonance, Angel Beats and Darker Than Black for me;False;False;;;;1610477237;;1610478084.0;{};gj0zkw2;False;t3_kvs4ah;False;False;t3_kvs4ah;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj0zkw2/;1610536440;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiro_Kai;;;[];;;;text;t2_bevm2wi;False;False;[];;"Wait, so Asta is ""surfing"" the magic around with the anti magic sword? Does that mean he can't fly if the place/land is poor at magic?";False;False;;;;1610477308;;1610477753.0;{};gj0zqk3;False;t3_kvpz6g;False;False;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj0zqk3/;1610536530;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"Sorry, your comment has been removed. - -- Don't be a dick. Attacking other users is not tolerated. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610477413;moderator;False;{};gj0zz2c;False;t3_kvsy6n;False;True;t1_gj0qt3r;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj0zz2c/;1610536667;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"How is it a rumour when SS's of the convo stating where the director said he was slightly depressed originally and thank fans for their kind words later (this part was public from the director himself) were posted online though? - -However it's still better for it to be removed as to not drag more attention and misinformation to this topic. The dude who posted his convo originally on MAL comments completely forgot about that Twitter would spread it like a wildfire turning it into huge news and was slightly annoyed at himself. The episode director privated his account likely due to the traffic he received as well";False;False;;;;1610477477;;False;{};gj10438;False;t3_kvsy6n;False;True;t1_gj0v9zu;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj10438/;1610536745;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ijiolokae;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/corvoatano;light;text;t2_15k31w;False;False;[];;" -30/60, this test Is a great demonstration once again that Shounen, Seinen, shoujo, and Josei as categorisation don't matter.";False;False;;;;1610477505;;False;{};gj106g9;False;t3_kvqhm5;False;False;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj106g9/;1610536781;3;True;False;anime;t5_2qh22;;0;[]; -[];;;plznoticemesenpai;;;[];;;;text;t2_hykwz;False;False;[];;The point of the quiz is that shonen, seinen, josei, aren't actual genres. It's not disengenious at all, series are defined as shonen, seinen, shoujo, and josei depending on what magazine they are in, not anything else.;False;False;;;;1610477506;;False;{};gj106il;False;t3_kvqhm5;False;False;t1_gj0r15q;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj106il/;1610536783;17;True;False;anime;t5_2qh22;;0;[]; -[];;;hydraxiv;;;[];;;;text;t2_5wvchq00;False;False;[];;Please no;False;False;;;;1610477527;;False;{};gj1087s;False;t3_kvpz6g;False;False;t1_gizstv6;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1087s/;1610536811;25;True;False;anime;t5_2qh22;;0;[]; -[];;;lone_stark;;;[];;;;text;t2_xoqph;False;False;[];;Sorry for the late reply. But yes. The previous episode enter manga-cannon territory. We are post time-skip right now. Hope you enjoy the Spade arc.;False;False;;;;1610477637;;False;{};gj10h3g;False;t3_kvpz6g;False;True;t1_gj09ysw;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj10h3g/;1610536956;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ErohaTamaki;;;[];;;;text;t2_57gpkh3w;False;False;[];;There hasn't been any news of a global version but I feel like it will get one at some point (tho I am going to play JP from the start in case that never happens);False;False;;;;1610477800;;False;{};gj10uab;False;t3_kvpoo2;False;True;t1_gj0zabq;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gj10uab/;1610537166;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jyper;;;[];;;;text;t2_44f90;False;False;[];;"I got slightly less then half right - -I did ok with other categories buy missed almost every Josie other then 3 or 3 most obvious ones";False;False;;;;1610477870;;False;{};gj10zyv;False;t3_kvqhm5;False;False;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj10zyv/;1610537260;1;True;False;anime;t5_2qh22;;0;[]; -[];;;King_Merlin;;;[];;;;text;t2_z629q;False;False;[];;Im not usually the kind of person who nitpicks on animation. But did todays episode seem hella lazy? Like 0 animation effort put in. If i closed my eyes i could imagine 80% of what happened this episode. Has this show always been like this?;False;True;;comment score below threshold;;1610477931;;False;{};gj114yi;False;t3_kvpz6g;False;True;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj114yi/;1610537336;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;plznoticemesenpai;;;[];;;;text;t2_hykwz;False;False;[];;"I'm pretty sure the Kaguya quote by Aka was more that he writes the series with office women in mind, by limiting things like fanservice and focusing on relationships, but not that that's his target demographic. He very much wants it to be a series anyone can read and enjoy but even series for everyone have a target demo. But it's been a long while since I read the quote so I might be misremembering. - -Regardless I think your second point is the most important point. Most mangaka don't really care they just want to get published. Plus Young Jump is a good publication that most would love to get into. In Aka's case his first series is infamous for being turbo edgy so I wouldn't find it surprising at all if only seinen mags were willing to hear him pitch his next one.";False;False;;;;1610477970;;False;{};gj117zs;False;t3_kvqhm5;False;False;t1_gj0rs2q;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj117zs/;1610537383;6;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;I gave up after reaching 30, that's way too long.;False;False;;;;1610477977;;False;{};gj118m7;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj118m7/;1610537392;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;"""Zora isnt that strong"" - -The guy ricocheted a full power attack from 4 elfs and further bounced the same attack twice its power (with the help of Asta (altough he could have made a stronger magic circle if he had more than half a second to make one)) and he did all of this BEING A PEASANT, not even a commoner.";False;False;;;;1610478014;;False;{};gj11bm8;False;t3_kvpz6g;False;False;t1_gj058ia;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj11bm8/;1610537440;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Raqium;;;[];;;;text;t2_a395a7p;False;False;[];;Don't worry about it lol. Hopefully they make it phenomenal. I've read it, but I watch it to see how they animate and color it. Real reason I watch anything tbh.;False;False;;;;1610478015;;False;{};gj11bqe;False;t3_kvpz6g;False;True;t1_gj10h3g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj11bqe/;1610537442;1;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;It's primarily due to the source (we're trying to be better about keeping things posted from official industry sources), and the title makes it sound completely negative, as you said, it appears to have been locked for reasons other than the negative responses.;False;False;;;;1610478031;moderator;False;{};gj11d36;False;t3_kvsy6n;False;True;t1_gj10438;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj11d36/;1610537465;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BrenttheGent;;;[];;;;text;t2_70sb4;False;False;[];;"I don't read fanfiction even if guided by creator. Even if it's good it's not for me, would totally take me out of astas journey. I'd rather watch another anime that reflects the manga. - -Like if someone wrote books between harry potter's school years, with rough guidelines from j.k, I would not find that interesting in the slightest. - -So bottom line I wouldn't enjoy it, as I have not enjoyed any filler in my 20 years of watching anime. so why would it be my loss? - -Edit: might have appeared sassy but I don't know why every time I ask about manga related episodes I get sassed like this, it's not needed or wanted. - -Like telling someone who says they don't want kids ""well you might someday'. Just accept adults can make their own decisions and move on.";False;False;;;;1610478034;;1610506573.0;{};gj11d9a;False;t3_kvpz6g;False;False;t1_gj0w9oe;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj11d9a/;1610537468;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;sw1611;;;[];;;;text;t2_4eyltl74;False;False;[];;Are you @ japan?;False;False;;;;1610478046;;False;{};gj11e8s;False;t3_kvpoo2;False;True;t1_gj10uab;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gj11e8s/;1610537484;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ragiko;;;[];;;;text;t2_170l95;False;False;[];;"Noelle: ""Arienai.""";False;False;;;;1610478329;;False;{};gj120e3;False;t3_kvpz6g;False;False;t1_gizuuyb;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj120e3/;1610537835;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Roamer21XX;;;[];;;;text;t2_q9cr1;False;False;[];;"This was the show that made me decide that I never want to watch another romance that doesn't have a happy ending. Keep in mind, I really really liked the show as a whole... I just realized I dont wanna be sad anymore. - -On a unrelated note, the premise and its views on what constitutes a soul or an individual made me stop hating on Crows character in Destiny 2";False;False;;;;1610478505;;False;{};gj12e9c;False;t3_kvqlzy;False;True;t3_kvqlzy;/r/anime/comments/kvqlzy/my_first_time_watching_plastic_memories/gj12e9c/;1610538054;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ErohaTamaki;;;[];;;;text;t2_57gpkh3w;False;False;[];;Nope but the region blocks are easy to bypass, all you have to do is turn on a VPN and create a Japanese google play/apple account;False;False;;;;1610478579;;False;{};gj12k37;False;t3_kvpoo2;False;False;t1_gj11e8s;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gj12k37/;1610538149;3;True;False;anime;t5_2qh22;;0;[]; -[];;;paxauror;;;[];;;;text;t2_17i37ig7;False;False;[];;Lmao I made my own edit of the declaration of war a few days ago before the official one and now people keep commenting that is better that the official one, a bit too much salt, although I agree I was expecting a bit better since mappa showed that was able to make a great adaptation so far;False;False;;;;1610478764;;False;{};gj12ym7;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj12ym7/;1610538384;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;Black clover;False;False;;;;1610478929;;False;{};gj13bke;False;t3_kvs4ah;False;True;t3_kvs4ah;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj13bke/;1610538588;1;True;False;anime;t5_2qh22;;0;[]; -[];;;15016zmiv;;;[];;;;text;t2_tt0nq2o;False;False;[];;I went to the this chapter just for this and all I’m gonna say... daaamn;False;False;;;;1610479065;;False;{};gj13mim;False;t3_kvpz6g;False;False;t1_gizsh4r;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj13mim/;1610538766;7;True;False;anime;t5_2qh22;;0;[]; -[];;;plznoticemesenpai;;;[];;;;text;t2_hykwz;False;False;[];;"Part of what people don't realize is that even if something has a target demographic in mind, it can be valuable find ways to extend that demographic. - -A good non video game example is Nintendo, who obviously and clearly have kids as their primary demographic and if you were to say Nintendo consoles are intended for kids you wouldn't be off base. But Nintendo also invests in games like Fire Emblem and Xenoblade that are certainly intended for a more mature audience than your typical Mario or Kirby game. Nintendo does this because it expands their potential audience and brings in people who might otherwise not play their games - -Manga like Chainsawman and AoT often fill a similar role for their publications. If shonen jump was literally just full of gag manga meant for 12 year olds they'd be locking themselves into one demographic and limiting their reach. It's been well known that SJ's average age is around 18 years old now so it only makes sense that it (and similar publications) might focus on series that can keep that readership coming back, instead of just ignoring them to go for more manga that only younger audiences can get in to.";False;False;;;;1610479130;;False;{};gj13rmt;False;t3_kvqhm5;False;False;t1_gj0faqj;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj13rmt/;1610538846;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;">Usagi Drop - -My Anime Online Poll Is Wrong As I Expected";False;False;;;;1610479201;;False;{};gj13x6i;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj13x6i/;1610538936;0;True;False;anime;t5_2qh22;;0;[]; -[];;;blazkinie;;;[];;;;text;t2_dxq0z7x;False;False;[];;Renai circulation, so monogatari;False;False;;;;1610479258;;False;{};gj141s1;False;t3_kvs4ah;False;True;t3_kvs4ah;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj141s1/;1610539014;2;True;False;anime;t5_2qh22;;0;[]; -[];;;REDHiiiii5;;;[];;;;text;t2_7f9w5zio;False;False;[];;Maybe kino no tabi.;False;False;;;;1610479347;;False;{};gj148tv;False;t3_kvrbv5;False;True;t3_kvrbv5;/r/anime/comments/kvrbv5/beginner_anime_recommendations_please/gj148tv/;1610539124;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KamKKF;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/kamkkf/;light;text;t2_13xmiv;False;False;[];;ah, well I didn't have a problem with it really. I think they got the point across fine for the last scene to be impactful, at least IMO.;False;False;;;;1610479398;;False;{};gj14cx5;False;t3_kvsy6n;False;True;t1_gj0qxar;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj14cx5/;1610539192;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;YES YES YES! I hope it's just like Toji no Miko Mini!;False;False;;;;1610479477;;False;{};gj14j62;False;t3_kvpoo2;False;True;t3_kvpoo2;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gj14j62/;1610539299;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kattman03;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Rem simp;dark;text;t2_scvxzo1;False;False;[];;You could definitely see the end coming from episode one and its that build up that hurts a little and yes I think you should watch it;False;False;;;;1610479639;;False;{};gj14w6i;True;t3_kvqlzy;False;True;t1_gj049qn;/r/anime/comments/kvqlzy/my_first_time_watching_plastic_memories/gj14w6i/;1610539523;1;True;False;anime;t5_2qh22;;0;[]; -[];;;guy_from_iowa01;;;[];;;;text;t2_53vhdytl;False;False;[];;Dw probably saving the budget for the insane fights coming up;False;False;;;;1610479955;;False;{};gj15ljq;False;t3_kvpz6g;False;True;t1_gj114yi;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj15ljq/;1610539938;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Buffhero125;;;[];;;;text;t2_5o6n3rx;False;False;[];;"Man i loved the songs by True for violet evergarden and still listen to them every now and then. -This opening is alright but i dont like it as much as the songs she did for violet evergarden";False;False;;;;1610480005;;False;{};gj15pjt;False;t3_kvsc53;False;False;t3_kvsc53;/r/anime/comments/kvsc53/that_time_i_got_reincarnated_as_a_slime_season_2/gj15pjt/;1610540005;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Verzwei;;;[];;;;text;t2_cmzqb;False;False;[];;"Just Because - -Fuuka - -Sankarea - -Dusk Maiden of Amnesia";False;False;;;;1610480348;;False;{};gj16gq0;False;t3_kvr482;False;True;t3_kvr482;/r/anime/comments/kvr482/very_underrated_romance_anime/gj16gq0/;1610540458;1;True;False;anime;t5_2qh22;;0;[]; -[];;;b0005;;;[];;;;text;t2_8etpr;False;False;[];;"I called the quiz disingenuous because it isn't actually a test of the intended audiences for each series. - -The purpose of demographics is to identify intended consumers. - -Broadly, being in a book generally targeted at one demographic does not mean that each individual work within is targeted at that demographic. It is in the publishers best interest to have a certain number of off-demographic or cross-demographic works to draw in as many additional consumers as possible. - -Inuyasha is not a series targeted at teenage boys (shounen) just because it was published in a ""shounen"" book, the series is quite clearly a series targeted at teenage girls (shoujo) with some action elements. The purpose of the series clearly being to draw more female to readership to the publication.";False;True;;comment score below threshold;;1610480387;;False;{};gj16jpq;False;t3_kvqhm5;False;True;t1_gj106il;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj16jpq/;1610540519;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;plznoticemesenpai;;;[];;;;text;t2_hykwz;False;False;[];;"This isn't a perfect guideline but in general I think it's more productive to think about what audience would get the *most* out of series rather than purely what audience does a series appeal to. - -For instance One Punch Man is a satire of other shonen stories and super hero comics in general. It's action is good and everyone can enjoy that aspect, but undoubtedly you would get more out of it if you've read a bunch of other super power manga and comics. Satire in general isn't something that's usually aimed at kids and combine that with them needing to understand references to other manga that are at least a decade old at this point and you have a series that adults might get more out of than kids. - -I think this logic can work for Kaguya too, who's portrayal of romance is meant for people to reflect on their own experiences and pasts, something adults would get more out of than a kid.";False;False;;;;1610480549;;False;{};gj16wpc;False;t3_kvqhm5;False;False;t1_gj07bzu;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj16wpc/;1610540771;6;True;False;anime;t5_2qh22;;0;[]; -[];;;NanchatteKyoushi;;;[];;;;text;t2_28yy6ep9;False;False;[];;"English Translation and Karaoke video if anyone's interested: -[https://youtu.be/Nnn05FIcY1w](https://youtu.be/Nnn05FIcY1w) - - -Make sure to read the pinned comment first!";False;False;;;;1610480691;;False;{};gj177pn;False;t3_kvsc53;False;True;t3_kvsc53;/r/anime/comments/kvsc53/that_time_i_got_reincarnated_as_a_slime_season_2/gj177pn/;1610540965;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nsallsIkKkNa;;;[];;;;text;t2_9bmwypoo;False;False;[];;"“Toradora!” - -“Kaguya-sama: Love Is War”";False;False;;;;1610480989;;False;{};gj17v5g;False;t3_kvs4ah;False;True;t3_kvs4ah;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj17v5g/;1610541384;2;True;False;anime;t5_2qh22;;0;[]; -[];;;punkgibson11;;;[];;;;text;t2_6ke7rwal;False;False;[];;Fate stay night UBW for the op 2.;False;False;;;;1610480992;;False;{};gj17ve8;False;t3_kvs4ah;False;True;t3_kvs4ah;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj17ve8/;1610541389;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;False;[];;"52/60 - -Pretty good, and all the ones I got wrong were the ones I'm less familiar with and tried to make an educated guess on (got the gender right for most of them).";False;False;;;;1610481013;;False;{};gj17x5n;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj17x5n/;1610541422;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ark151;;;[];;;;text;t2_3ctqxlwf;False;False;[];;Maybe asta is another prince of spade but this time a relative(son/sibling) of the dark triad. Therefore explaining the devil.;False;False;;;;1610481154;;False;{};gj188fu;False;t3_kvpz6g;False;False;t1_gj0ekt6;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj188fu/;1610541622;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;False;[];;Is that surprising? Who loves immature sex comedies about hot and cute anime girls more than teenage boys? I don't think any other demographic cares as much about sexy harems.;False;False;;;;1610481404;;False;{};gj18s65;False;t3_kvqhm5;False;False;t1_gizzp8j;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj18s65/;1610541979;12;True;False;anime;t5_2qh22;;0;[]; -[];;;almost_famous25;;;[];;;;text;t2_6ceg6m3b;False;False;[];;That’s true I mostly do watch shonen ngl;False;False;;;;1610481677;;False;{};gj19dq4;True;t3_kvor4u;False;True;t1_gizj9gm;/r/anime/comments/kvor4u/most_annoying_anime_tropecliche_that_you_want_to/gj19dq4/;1610542380;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexBlackClover;;;[];;;;text;t2_ppadytr;False;False;[];;it was number 1;False;False;;;;1610481854;;False;{};gj19ri5;False;t3_kvpz6g;False;False;t1_gj0wc0d;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj19ri5/;1610542622;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexBlackClover;;;[];;;;text;t2_ppadytr;False;False;[];;"no shit.. ""Has this show always been like this?"" Have you been watching the last 158 episodes with your eyes closed?";False;False;;;;1610481933;;False;{};gj19xtb;False;t3_kvpz6g;False;False;t1_gj114yi;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj19xtb/;1610542743;8;True;False;anime;t5_2qh22;;0;[]; -[];;;AlphaBreak;;;[];;;;text;t2_12othv;False;False;[];;The clover kingdom is the club kingdom.;False;False;;;;1610481962;;False;{};gj1a046;False;t3_kvpz6g;False;True;t1_gj0y8h5;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1a046/;1610542785;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mustache-Man227;;;[];;;;text;t2_1rgczsd9;False;False;[];;I’m dumb as shit my bad;False;False;;;;1610481984;;False;{};gj1a1tl;False;t3_kvpz6g;False;False;t1_gj1a046;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1a1tl/;1610542818;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AlphaBreak;;;[];;;;text;t2_12othv;False;False;[];;Everybody gets brain-farts.;False;False;;;;1610482174;;False;{};gj1agtg;False;t3_kvpz6g;False;True;t1_gj1a1tl;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1agtg/;1610543108;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lvl100Karp;;;[];;;;text;t2_794oalt5;False;False;[];;"Magic exists everywhere (I think?) so it's only harder for him in strong magic regions (last ep, he crashed into the place due to hard to steer) - -So in theory, he can surf wherever he wants to in the world, wouldn't put it past the anime to have some place void of magic though. The devils place might not have magic?";False;False;;;;1610482321;;False;{};gj1as9i;False;t3_kvpz6g;False;False;t1_gj0zqk3;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1as9i/;1610543332;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;I've actually noticed the opposite of 4chan neckbeards recently. Please elaborate.;False;False;;;;1610482570;;False;{};gj1bbrl;False;t3_kvsy6n;False;True;t1_gj0cz4y;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj1bbrl/;1610543699;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;The ost at the end wasn't what most manga readers had in mind (myself included) but some fans took it way too far.;False;False;;;;1610482855;;False;{};gj1by0e;False;t3_kvsy6n;False;True;t1_gj0uu9q;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj1by0e/;1610544102;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Equivalent_Bear_3082;;;[];;;;text;t2_948d7iwa;False;False;[];;Kekkai sensen, one piece, attack on titan, basicly all my first animes i've seen it was because I liked the openings;False;False;;;;1610482919;;False;{};gj1c31m;False;t3_kvs4ah;False;True;t3_kvs4ah;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj1c31m/;1610544195;1;True;False;anime;t5_2qh22;;0;[]; -[];;;snickpea;;;[];;;;text;t2_4ylocej6;False;False;[];;Sadly I only got 43/60, but I really enjoyed taking the quiz. Some of the results surprised me! I hope people do more quizzes like these!;False;False;;;;1610483000;;False;{};gj1c9fs;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj1c9fs/;1610544321;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NekoWafers;;;[];;;;text;t2_iau18;False;False;[];;It's maybe an unpopular opinion but I think most TRUE songs sound kind of generic. The exception being the Violet Evergarden songs, the Junketsu no Maria ED, and that insert song from Slime S1.;False;False;;;;1610483013;;False;{};gj1cage;False;t3_kvsc53;False;True;t3_kvsc53;/r/anime/comments/kvsc53/that_time_i_got_reincarnated_as_a_slime_season_2/gj1cage/;1610544346;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiro_Kai;;;[];;;;text;t2_bevm2wi;False;False;[];;Maybe, but it can happen that someone absorbs the magic around too. It's a intriguing skill he got;False;False;;;;1610483201;;False;{};gj1cp92;False;t3_kvpz6g;False;True;t1_gj1as9i;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1cp92/;1610544627;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Equivalent_Bear_3082;;;[];;;;text;t2_948d7iwa;False;False;[];;First thing that comes to mind is yes. Defenetly. You can even check out the latest season if you want to see just how much better it gets, but then you gotta need to rewatch all of it and expect spoilers. And big once at that;False;False;;;;1610483330;;False;{};gj1cz8h;False;t3_kvq1a6;False;False;t1_gizs0cc;/r/anime/comments/kvq1a6/yo_guys_i_have_a_question_what_anime_should_i/gj1cz8h/;1610544826;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;Which is pretty rare, most of the toxicity usually comes from the anti-shipping side. Comment above included.;False;False;;;;1610483730;;False;{};gj1duo3;False;t3_kvsy6n;False;True;t1_gj0hr3n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj1duo3/;1610545422;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"Cultivate toxic culture, create toxic people. It's a collective responsibility when you take part in this type of behavior. - -Also, it looks like the post you mentioned has been removed. Not blaming the mods since I assume it broke some kind of rule, but can't be used as a defense either.";False;False;;;;1610483832;;False;{};gj1e2sl;False;t3_kvsy6n;False;True;t1_gj0klzf;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj1e2sl/;1610545575;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;Hopefully by the end of the week we'll have worn Twitter out.;False;False;;;;1610484225;;False;{};gj1exui;False;t3_kvsy6n;False;True;t1_gj0x9qi;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj1exui/;1610546146;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_Nonso;;;[];;;;text;t2_1xygu1ye;False;False;[];;If you've been watching black clover then you know how the show works. Some episodes look okay, some look good and some look absolutely insane. The insane episodes are for big battles/moments;False;False;;;;1610484542;;1610498231.0;{};gj1fmxj;False;t3_kvpz6g;False;False;t1_gj114yi;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1fmxj/;1610546617;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Tyestor;;MAL;[];;http://myanimelist.net/profile/Tyestor;dark;text;t2_6gv1z;False;False;[];;I've pretty consistently noticed that Josei is my favourite demographic of shows. I don't think I've ever watched a Josei show that I didn't like.;False;False;;;;1610484568;;False;{};gj1fp2s;False;t3_kvqhm5;False;True;t1_gizs09k;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj1fp2s/;1610546657;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Centauri425;;;[];;;;text;t2_1v7t472g;False;False;[];;Yeah that is impressive but if he is fighting someone that is already that strong then they could easily defend against it like those elves did.;False;False;;;;1610485015;;False;{};gj1gpcg;False;t3_kvpz6g;False;True;t1_gj11bm8;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1gpcg/;1610547341;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610485028;;False;{};gj1gqei;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj1gqei/;1610547367;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Revolution-Narrow;;;[];;;;text;t2_73p1ksp0;False;False;[];;Nero wasn’t with them in the bath scene either;False;False;;;;1610485185;;False;{};gj1h2vc;False;t3_kvpz6g;False;False;t1_gizsh4r;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1h2vc/;1610547600;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Retromorpher;;;[];;;;text;t2_3x42wxsp;False;False;[];;Paradise Kiss and NANA FEEL swapped - but I know they aren't.;False;False;;;;1610485405;;False;{};gj1hk54;False;t3_kvqhm5;False;True;t1_gizqpkc;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj1hk54/;1610547935;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JiddyBang;;;[];;;;text;t2_6v5jm;False;False;[];;Did some research for myself. I have to say, I think the scene in the anime is way more fitting. It was way funnier to see the 4 of them talk about who is dating Asta. I'm guessing the manga doesn't lean into the Tsundere moments as much as the anime?;False;False;;;;1610485555;;False;{};gj1hvyw;False;t3_kvpz6g;False;False;t1_gizsh4r;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1hvyw/;1610548165;8;True;False;anime;t5_2qh22;;0;[]; -[];;;RandomRedditorWithNo;;ANI a-1milquiz;[];;https://anilist.co/user/lafferstyle;dark;text;t2_tt0a1;False;True;[];;The same goes for any other quiz though? If you don't answer a question, you don't get the points.;False;False;;;;1610485637;;False;{};gj1i2n4;False;t3_kvqhm5;False;True;t1_gizzb1n;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj1i2n4/;1610548331;3;True;False;anime;t5_2qh22;;0;[]; -[];;;xanas263;;;[];;;;text;t2_z8ozv;False;False;[];;">t already is on shaky ground because who would asta be if he wasn't lucky and got the 5 leaf clover? All his hard training still would have amount to very little if he wasn't lucky and got the sword. - -ironic how it mirrors reality in that most people even after putting in 110% still won't get very far without a little luck on their side.";False;False;;;;1610486027;;False;{};gj1ixjq;False;t3_kvpz6g;False;False;t1_gj02cjg;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1ixjq/;1610548952;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Madneptune95;;;[];;;;text;t2_11fiu0;False;False;[];;Yeah but Patry?;False;False;;;;1610486106;;False;{};gj1j3tr;False;t3_kvpz6g;False;True;t1_gizwsyy;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1j3tr/;1610549078;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KearLoL;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/vollizie;light;text;t2_46k87az;False;False;[];;Bruh I got exactly 30/60. Then again, many of the animes I've never watched or even heard of.;False;False;;;;1610486201;;False;{};gj1jb7c;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj1jb7c/;1610549217;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KrillinDBZ363;;;[];;;;text;t2_14wqfv;False;False;[];;"I don’t think 7 Seeds should be on here as it ran in both a Shojo and Josei magazine. - -Got 46/60 but really got 47/60 since it’s not wrong to call 7 Seeds a Shojo.";False;False;;;;1610486464;;False;{};gj1jw00;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj1jw00/;1610549647;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KrillinDBZ363;;;[];;;;text;t2_14wqfv;False;False;[];;Yeah there are Seinen magazines that just only run CGDCT series.;False;False;;;;1610486572;;False;{};gj1k4jc;False;t3_kvqhm5;False;True;t1_gj0orgo;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj1k4jc/;1610549814;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sedewt;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Sedew;light;text;t2_3kzvlpfo;False;False;[];;"The person who edited the music did a good job (still a bad decision) but it just doesn’t fit. You’re not supposedly to be emotional, you’re supposed to be terrified and shocked. - -The original one is much better. Not everything needs a hype soundtrack to make the scene hype. The episode buildup was too perfect already and the lack of hype soundtrack made us realize that something was going wrong and something is about to happen. Ironic isn’t it?";False;False;;;;1610486982;;False;{};gj1l0gd;False;t3_kvsy6n;False;True;t1_gj0bex0;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj1l0gd/;1610550452;2;True;False;anime;t5_2qh22;;0;[]; -[];;;karl_w_w;;anidb a-amq;[];;http://anidb.net/u619077;dark;text;t2_9hd6p;False;False;[];;I honestly don't see the point of this quiz, it's just a test of how well you know these anime, it doesn't really have anything to do with your knowledge of demographics.;False;False;;;;1610487258;;False;{};gj1llyx;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj1llyx/;1610550862;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Niyari;;;[];;;;text;t2_4vmie;False;False;[];;Kind of disappointed the song from the s2 announcement trailer wasn't used. Second cour theme maybe?;False;False;;;;1610487269;;False;{};gj1lmvn;False;t3_kvsc53;False;True;t3_kvsc53;/r/anime/comments/kvsc53/that_time_i_got_reincarnated_as_a_slime_season_2/gj1lmvn/;1610550878;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AntiBomb;;;[];;;;text;t2_ykhgm;False;False;[];;Well , WSJ isn't as family friendly as I thought, then.;False;False;;;;1610487346;;False;{};gj1lsws;False;t3_kvqhm5;False;True;t1_gj18s65;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj1lsws/;1610550991;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;And then we have Gintama, which is a satire for most shounen/jidai geki works, and is shounen.;False;False;;;;1610487411;;False;{};gj1lxxe;False;t3_kvqhm5;False;True;t1_gj16wpc;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj1lxxe/;1610551082;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lone_stark;;;[];;;;text;t2_xoqph;False;False;[];;Heart is literally the only country that seems to be fair on their citizen and actually care about everyone. The Devil Believers should have headed for the Heart Kingdom rather than Spade.;False;False;;;;1610487595;;False;{};gj1mcgh;False;t3_kvpz6g;False;False;t1_gj02azr;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1mcgh/;1610551370;10;True;False;anime;t5_2qh22;;0;[]; -[];;;RandomRedditorWithNo;;ANI a-1milquiz;[];;https://anilist.co/user/lafferstyle;dark;text;t2_tt0a1;False;True;[];;"Sure, I know that now, but when I first watched it (must be 6-7 years ago), I thought ""cute girls in the anime = cute girls as the demographic"", so I would've pegged it as a shoujo.";False;False;;;;1610487648;;False;{};gj1mgm9;False;t3_kvqhm5;False;True;t1_gj0h0ig;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj1mgm9/;1610551454;1;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;Now who's Yuno then? Hmmmm;False;False;;;;1610487680;;False;{};gj1mj4k;False;t3_kvpz6g;False;False;t1_gj05sve;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1mj4k/;1610551506;15;True;False;anime;t5_2qh22;;0;[]; -[];;;ranma42;;MAL;[];;https://myanimelist.net/profile/ranma42;dark;text;t2_75o16;False;False;[];;"I'm guessing that's mostly from people who haven't seen the anime and are just judging by the picture appearance. :) - -That said, I still only managed to get to 35/60 because I don't know where they originally ran some the shounen/seinen and shoujo/josei distinction is often a guess, plus a few surprising results. - -[Wrong answer, didn't watch/read: 11](/s ""Kaguya-sama, Chihayafuru, This Art Club Has a Problem!, Usagi Drop, My Love Story, Banana Fish, Polar Bear Cafe, Kids on the Slope, 07 Ghost, Natsume Yujincho, Shugo Chara"") - -[Wrong answer, did watch/read: 14](/s ""Nichijou, Aria the Animation, Beastars, A silent voice, 7 Seeds, Sakamoto, Real Girl, Astra lost in Space, Drifters, Sakura Trick, The World is still Beautiful, Sweetness and Lightning, Moriarty the Patriot, Horimiya"")";False;False;;;;1610487862;;1610488692.0;{};gj1mxau;False;t3_kvqhm5;False;True;t1_gj0kj4z;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj1mxau/;1610551778;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NinjaBarrel;;;[];;;;text;t2_1dikuzls;False;False;[];;Neighbour :);False;False;;;;1610488151;;False;{};gj1nkqv;False;t3_kvpz6g;False;False;t1_gj1mj4k;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1nkqv/;1610552236;25;True;False;anime;t5_2qh22;;0;[]; -[];;;VVacek;;;[];;;;text;t2_w1chb;False;False;[];;And epic OP song.;False;False;;;;1610488340;;False;{};gj1nzp4;False;t3_kvpoo2;False;False;t1_gj0h7bc;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gj1nzp4/;1610552539;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ZapsZzz;;;[];;;;text;t2_g2hnymx;False;False;[];;"Utawarerumono. It was on one of those ""best X anime op"" videos. And it's a good show.";False;False;;;;1610488401;;False;{};gj1o4fp;False;t3_kvs4ah;False;True;t3_kvs4ah;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj1o4fp/;1610552628;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610488404;;False;{};gj1o4on;False;t3_kvsy6n;False;True;t1_gj0v0id;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj1o4on/;1610552632;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Trini2Bone;;;[];;;;text;t2_fs1nh;False;False;[];;A WILD CHARMY APPEARED;False;False;;;;1610488472;;False;{};gj1o9y1;False;t3_kvpz6g;False;True;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1o9y1/;1610552735;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Magnus-Artifex;;;[];;;;text;t2_3xwuipbe;False;False;[];;Holy shit they look so similar even in the poses that’s big brain;False;False;;;;1610489203;;False;{};gj1pu9j;False;t3_kvpz6g;False;False;t1_gj02pyb;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1pu9j/;1610553856;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Magnus-Artifex;;;[];;;;text;t2_3xwuipbe;False;False;[];;Imo this was the better option for the lake scene;False;False;;;;1610489235;;False;{};gj1pwsj;False;t3_kvpz6g;False;True;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1pwsj/;1610553909;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kevin2GO;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Kevin2GO;light;text;t2_m72nt3;False;False;[];;"lol reddit itself is extremely good at harassing people too - -tho theyll usually use sites like twitter to harass people because nobody fucking uses twitter";False;False;;;;1610489522;;1610491069.0;{};gj1qizd;False;t3_kvsy6n;False;True;t1_gj1o4on;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj1qizd/;1610554345;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610489990;;1610490317.0;{};gj1rixd;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj1rixd/;1610555103;1;True;False;anime;t5_2qh22;;0;[]; -[];;;prrg;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/prrg/;light;text;t2_j0167;False;False;[];;I got 33/60, which I'm honestly pretty proud of as I've only watched like, a fourth of these and only have some level knowledge on about two thirds of them.;False;False;;;;1610490475;;False;{};gj1sjz6;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj1sjz6/;1610555830;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ben99ny22;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ben99ny;light;text;t2_14rmpidg;False;False;[];;"this whole ""magazine determining demographic"" is dumb cause originals exist. Where would you put code geass or erased. Not to mention that when its turned into an anime it won't matter afterwards.";False;False;;;;1610490702;;False;{};gj1t155;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj1t155/;1610556152;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrManicMarty;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MartySan/animelist;light;text;t2_8t0yy;False;False;[];;"37/60 - more than 50%, which seems about right. I'm interested to see how many of my guesses were right! - -Huh, surprised[Spoiler!](/s ""Ore Monogatari is a shoujo. Would have figured any show with a guy lead (in a romance show anyway, and straight romance) would be a shonen or seinen."")";False;False;;;;1610490716;;False;{};gj1t26b;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj1t26b/;1610556172;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FrozenPhoenix71;;;[];;;;text;t2_h76l1;False;False;[];;I like the song as a song, but I don't like the OP itself, nor do I really like the song with the OP tbh. Feels like a pretty big downgrade from the first two ops.;False;False;;;;1610491230;;False;{};gj1u3zo;False;t3_kvsc53;False;False;t3_kvsc53;/r/anime/comments/kvsc53/that_time_i_got_reincarnated_as_a_slime_season_2/gj1u3zo/;1610556939;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Dimmadeezy;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Dimmadeezy;light;text;t2_8bgv9i6r;False;False;[];;Berserk (1997);False;False;;;;1610491378;;False;{};gj1ueyb;False;t3_kvr2wd;False;True;t3_kvr2wd;/r/anime/comments/kvr2wd/best_lovecraftian_anime_recommendations/gj1ueyb/;1610557144;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;False;[];;Aria is a bit of a weird one because it's technically both Shounen and Shoujo. The Aria manga was published in a Shounen magazine, but the prequel manga Aqua, which the Aria anime also adapts, was published in a Shoujo magazine. This is why these demographic terms just don't mean much of anything, they don't relate to content at all. I think the quiz itself is a testament to this point.;False;False;;;;1610491478;;False;{};gj1umaw;False;t3_kvqhm5;False;True;t1_gj086kg;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj1umaw/;1610557290;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;False;[];;You don't have to have seen them to know their demographics. I haven't seen half of them but still managed to get a high score. Besides, the point is that you're supposed to guess based in the image. The quiz exists to break apart the idea that demographics are determined by a shows content.;False;False;;;;1610491996;;False;{};gj1vojp;False;t3_kvqhm5;False;True;t1_gj0olja;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj1vojp/;1610558025;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;False;[];;I think the goal is to break the notion that content determines demographics, and that, as OP points out in the post they link to, a show being gritty, gory, or philosophical doesnt make it less Shounen. Even just based on the image and title you will probably have an idea about what the show is about and who it might be aimed at. Some you will get right, but others will be surprising, especially if you know the reputation of the anime in question.;False;False;;;;1610492255;;False;{};gj1w7j1;False;t3_kvqhm5;False;False;t1_gj1llyx;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj1w7j1/;1610558393;4;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;Magazines determining target demographic is vaguely useful because many magazines have explicit target demographics. Without that you're usually just making something up. But a major point of this quiz is to emphasize that demographics are largely meaningless terms anyway.;False;False;;;;1610492423;;False;{};gj1wjv6;True;t3_kvqhm5;False;False;t1_gj1t155;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj1wjv6/;1610558636;5;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;That's foolish, are you seriously expecting me to predict the demographic of a show based on the name and a single random picture?;False;False;;;;1610492439;;False;{};gj1wl25;False;t3_kvqhm5;False;True;t1_gj1vojp;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj1wl25/;1610558659;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"> buttler - -[](#yousaidsomethingdumb)";False;False;;;;1610492526;;False;{};gj1wr7e;False;t3_kvpz6g;False;True;t1_gizsntb;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1wr7e/;1610558776;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;False;[];;The goal of the quiz isn't necessarily to get them right. As OP points out, it's to better understand that demographics aren't determined by content. This isn't a contest or a test of knowledge.;False;False;;;;1610492539;;False;{};gj1ws4n;False;t3_kvqhm5;False;True;t1_gj1wl25;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj1ws4n/;1610558793;2;True;False;anime;t5_2qh22;;0;[]; -[];;;neuralnutwork42;;;[];;;;text;t2_8158qibl;False;False;[];;wait this is the cutest shit iv ever heard;False;False;;;;1610492623;;False;{};gj1wy0b;False;t3_kvpz6g;False;False;t1_gj05sve;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1wy0b/;1610558951;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;What content is there to a literal single frame?;False;False;;;;1610492630;;False;{};gj1wyiz;False;t3_kvqhm5;False;True;t1_gj1ws4n;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj1wyiz/;1610558962;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;[](#shock);False;False;;;;1610492657;;False;{};gj1x0h6;False;t3_kvpz6g;False;True;t1_gizsh4r;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1x0h6/;1610559000;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;False;[];;Enough to form preconceived notions about the show. The shots seem chosen with intent.;False;False;;;;1610492675;;False;{};gj1x1sj;False;t3_kvqhm5;False;True;t1_gj1wyiz;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj1x1sj/;1610559028;3;True;False;anime;t5_2qh22;;0;[]; -[];;;VPN_FTW;;;[];;;;text;t2_8p4rg72g;False;False;[];;"You hit the nail on the wood. The writer very specifically *did not* focus on writing philosophy crap, he's been very public about the fact that he basically just picked random cool-sounding foreign religious words for whatever story elements needed something mysterious-sounding. He's the literary equivalent to Megumin. Then fans spent the better part of three decades collectively torturing the script into making some kind of sense and you've now got idiots talking about its """"""""""depth"""""""""". - -This happens all the time in Japan and I'm not saying it's a bad thing, it's just trendy. Nintendo called their 3DS revision ""New Nintendo 3DS"" in Japan. ""New"", in english, because foreign equals cool. Then on the other side of the ocean the marketing people were baffled and kept the name, but it would've been the equivalent of calling it the ""Atarashii Nintendo 3DS"" here. At least we would've known it was a *new* product instead of confusing the fuck out of everyone. - -Also I hugely enjoyed evangelion up until like episode 20 and I have no complaints at all about the animation quality or whatever. Just that the plot turns incoherent and there's people who've deluded themselves into thinking otherwise.";False;False;;;;1610492725;;1610492965.0;{};gj1x5co;False;t3_kvsy6n;False;True;t1_gj0yt33;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj1x5co/;1610559100;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610492801;;False;{};gj1xaox;False;t3_kvpz6g;False;True;t1_gizq91a;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1xaox/;1610559223;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;Stop it lmao;False;False;;;;1610492841;;False;{};gj1xdkm;False;t3_kvpz6g;False;False;t1_giztg19;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1xdkm/;1610559311;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"Treasure never disappoint - -[](#wow)";False;False;;;;1610492934;;False;{};gj1xk8j;False;t3_kvpz6g;False;True;t1_gizuqt3;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1xk8j/;1610559436;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"Turns out Chonky Charmy was the true final boss in Black Clover - -[](#azusalaugh)";False;False;;;;1610493081;;False;{};gj1xuo8;False;t3_kvpz6g;False;True;t1_gizqvpc;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1xuo8/;1610559657;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chalo1227;;;[];;;;text;t2_fs667;False;False;[];;Where would one find such thing?;False;False;;;;1610493505;;False;{};gj1yp4h;False;t3_kvpz6g;False;False;t1_gj0wuzx;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1yp4h/;1610560264;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ShadowClawz;;;[];;;;text;t2_yvlx7;False;False;[];;Except their debut delay. They’re so fucking goood;False;False;;;;1610494035;;False;{};gj1zqx6;False;t3_kvpz6g;False;True;t1_gj1xk8j;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1zqx6/;1610560996;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ShadowClawz;;;[];;;;text;t2_yvlx7;False;False;[];;It doesn’t exist. Nobody makes Black Clover doujins;False;False;;;;1610494140;;False;{};gj1zyb9;False;t3_kvpz6g;False;False;t1_gj1yp4h;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj1zyb9/;1610561132;8;True;False;anime;t5_2qh22;;0;[]; -[];;;OingoBoingo-;;;[];;;;text;t2_8cbjydnf;False;False;[];;I actually liked this one a lot, didn't know it was SDF till the credits and there are more than a couple of good songs from the artist if you don't know him.;False;False;;;;1610494809;;False;{};gj2191b;False;t3_kvsc53;False;True;t1_gj03370;/r/anime/comments/kvsc53/that_time_i_got_reincarnated_as_a_slime_season_2/gj2191b/;1610562041;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mynameis2cool4u;;;[];;;;text;t2_oolqn;False;False;[];;"i just looked for it now on Pixiv but i couldn't find it. All it was though was the manga panel where the water is covering their ""parts"", but an uncensored edit.";False;False;;;;1610494833;;False;{};gj21aod;False;t3_kvpz6g;False;True;t1_gj1yp4h;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj21aod/;1610562072;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Starwind_Amada;;;[];;;;text;t2_2xrw3imb;False;True;[];;I don't know why I keep thinking I'll find someone who's not a sheep on here.;False;False;;;;1610494942;;False;{};gj21i6c;False;t3_kvsy6n;False;True;t1_gj0om1v;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj21i6c/;1610562219;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nebz__;;;[];;;;text;t2_3cn7d5x1;False;False;[];;Pretty sure Asta is the one with luck on his side. If he didnt get the 5 leaf grimiore, he'd pretty much be useless.;False;False;;;;1610495302;;False;{};gj2276l;False;t3_kvpz6g;False;True;t1_gj0vg27;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj2276l/;1610562713;3;True;False;anime;t5_2qh22;;0;[]; -[];;;seshino;;;[];;;;text;t2_4yn93h;False;False;[];;I still wonder what's going on with Magna since it wasn't made clear that he went back to the Clover Kingdom;False;False;;;;1610496361;;False;{};gj247ve;False;t3_kvpz6g;False;True;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj247ve/;1610564261;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_TwoLemons_;;;[];;;;text;t2_5xb06lkt;False;False;[];;"Ok, I’m sorry I’m not trying to be rude, but budget isn’t the problem and really hasn’t ever been a problem in this case. The problem is time, scheduling, and being low on staff. Luckily this has improved a bit, but not by much. Animation is not an easy thing, so that’s the reason some episodes, especially for a weekly show, look a bit off at times. - -I’m sorry if I sounded rude, I just see these kinds of comments a lot and it bothers me because it’s false. Again, I’m sorry if I sounded rude at all for saying this.";False;False;;;;1610497275;;False;{};gj25xw0;False;t3_kvpz6g;False;False;t1_gj15ljq;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj25xw0/;1610565517;5;True;False;anime;t5_2qh22;;0;[]; -[];;;grizzchan;;;[];;;dark;text;t2_nn6d9;False;True;[];;Maybe, but a lot of people didn't understand it due to the poor narrative. I mod /r/Konosuba and there have been so many threads asking about the ending.;False;False;;;;1610497421;;False;{};gj267ub;False;t3_kvsy6n;False;True;t1_gj14cx5;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj267ub/;1610565710;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mtachii;;;[];;;;text;t2_2wsvjzav;False;False;[];;Back to your regular old Black Clover episodes...;False;False;;;;1610497769;;False;{};gj26vbj;False;t3_kvpz6g;False;True;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj26vbj/;1610566191;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;What about the Hibike! Euphonium songs? Like [Blast](https://www.youtube.com/watch?v=CSc-SY_ft0E) or [Soundscape](https://www.youtube.com/watch?v=uzjy6tZZxQg) go *hard*.;False;False;;;;1610498093;;False;{};gj27hb5;False;t3_kvsc53;False;False;t1_gj1cage;/r/anime/comments/kvsc53/that_time_i_got_reincarnated_as_a_slime_season_2/gj27hb5/;1610566608;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"[WTF did they do to cute Noelle]( https://i.imgur.com/LCAHCbs.png)?? - -""A wild Charmy has appeared!"" She's one step away from being Big Mom now.";False;False;;;;1610498389;;False;{};gj281bx;False;t3_kvpz6g;False;True;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj281bx/;1610566981;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;Just be glad they weren't given towels like in 90% of anime.;False;False;;;;1610498821;;False;{};gj28ufx;False;t3_kvpz6g;False;True;t1_gizqudm;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj28ufx/;1610567546;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NekoWafers;;;[];;;;text;t2_iau18;False;False;[];;Yeah those are good too, I should have added them to the list of exceptions.;False;False;;;;1610499007;;False;{};gj296u2;False;t3_kvsc53;False;True;t1_gj27hb5;/r/anime/comments/kvsc53/that_time_i_got_reincarnated_as_a_slime_season_2/gj296u2/;1610567785;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xMamex;;;[];;;;text;t2_6bxh031i;False;False;[];;":( - -Edit: wait i found it [NSFW](https://www.reddit.com/r/BlackCloverHentai/comments/kvyea2/noelle_mimosa_lolopechka/)";False;False;;;;1610499235;;1610505998.0;{};gj29m1e;False;t3_kvpz6g;False;False;t1_gj21aod;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj29m1e/;1610568076;6;True;False;anime;t5_2qh22;;0;[]; -[];;;nickie305;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/nickie305;light;text;t2_wptka;False;False;[];;Noragami;False;False;;;;1610500274;;False;{};gj2bivo;False;t3_kvs4ah;False;True;t3_kvs4ah;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj2bivo/;1610569345;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mnmkdc;;;[];;;;text;t2_gtymx;False;False;[];;He's probably just a devil child of some sort. Like his parents sealed it in him or something if it continues showing strong similarities to naruto.;False;False;;;;1610501127;;False;{};gj2d3v5;False;t3_kvpz6g;False;True;t1_gizq91a;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj2d3v5/;1610570423;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FunnunoTsumi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Bakusatsuou;light;text;t2_3tfzpdgh;False;False;[];;Asta's actually based on Tabata, he's said that on multiple occasions. It's why Asta won't grow in height lmao cuz Tabata's a short man himself.;False;False;;;;1610502209;;False;{};gj2f3kc;False;t3_kvpz6g;False;True;t1_gj05sve;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj2f3kc/;1610571796;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EzdePaz;;;[];;;;text;t2_u2xzi;False;False;[];;I'm pretty sure Japan has very different view on what goes for family friendly.;False;False;;;;1610502218;;False;{};gj2f44o;False;t3_kvqhm5;False;True;t1_gj1lsws;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj2f44o/;1610571808;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;To be honest s2 happened in like 2 days.;False;False;;;;1610502538;;False;{};gj2fpgl;False;t3_kvor4u;False;True;t1_gizlj18;/r/anime/comments/kvor4u/most_annoying_anime_tropecliche_that_you_want_to/gj2fpgl/;1610572221;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sticktoyaguns;;;[];;;;text;t2_d9wcb;False;False;[];;So Asta has undercut the story the whole time if we look at it like that? Asta was training like crazy before he got the grimoire, Yuno was shown to always be naturally talented. Doesn't mean Asta wasn't lucky, or Yuno never trained, I'm just saying there is a difference in the two characters.;False;False;;;;1610502568;;False;{};gj2frl3;False;t3_kvpz6g;False;True;t1_gj2276l;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj2frl3/;1610572261;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BobTheSkrull;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/BobTheSkrull;light;text;t2_134dmb;False;False;[];;"It makes me think that a good portion of the season (at least the first part) will just be covering stuff they missed in season 1, which is not a good sign. - -Fr tho, I was not a fan of the first opening and this one feels significantly worse than that.";False;False;;;;1610502776;;False;{};gj2g5g4;False;t3_kvsc53;False;True;t1_gj039vc;/r/anime/comments/kvsc53/that_time_i_got_reincarnated_as_a_slime_season_2/gj2g5g4/;1610572541;0;True;False;anime;t5_2qh22;;0;[]; -[];;;HeroicTechnology;;;[];;;;text;t2_c72w9;False;False;[];;"I've listened to... basically TRUE's entire discography - I would say that, pretty much like every other artist, TRUE's best stuff is not on the A-Sides of the openings/endings she's done. Futarigoto as the duet piece on the Evergarden OP CD with Chihara Minori for example, is really one of the pieces that takes advantage of both pop TRUE and classical TRUE. - -A little further off the beaten path is something like Anchor's Step, but you'd find that only on Lonely Queen's Liberation Party. - -Guess all I'm saying is, if you only listen to the OP/EDs she's produced, sure, the sound is going to be relatively similar across franchises - Hibike's sound is filled with brass and woodwinds. Violet Evergarden's always going to have ballad-style pieces. Every anison artist, I've learned, has seriously got a lot of range and I implore you to listen to their breadth of work before saying something about being generic.";False;False;;;;1610502783;;False;{};gj2g5v6;False;t3_kvsc53;False;True;t1_gj296u2;/r/anime/comments/kvsc53/that_time_i_got_reincarnated_as_a_slime_season_2/gj2g5v6/;1610572549;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;In similar fashion to what you said. I hate when the characters that are supposed to be average humans un terms of damage they can take are thrown at mach 3 speed through 30 floors and then just look a bit dirty and start fighting again or when don't seem to show any weakness because of the multiple wounds in their body. Most shonen fights usually end with the mc ssspulling a win when they're all best up even tough the villain was already kicking their ass when they were at full strength.;False;False;;;;1610502926;;False;{};gj2gfco;False;t3_kvor4u;False;True;t3_kvor4u;/r/anime/comments/kvor4u/most_annoying_anime_tropecliche_that_you_want_to/gj2gfco/;1610572759;1;True;False;anime;t5_2qh22;;0;[]; -[];;;almost_famous25;;;[];;;;text;t2_6ceg6m3b;False;False;[];;I only have a real problem with that if we aren’t shown any reason that he would be able to get up and brush it off. Like it’s okay if human characters in anime are built like tanks when it comes to falling 30 floors if there a mage or have some sort of power. Example like luffy and zoro etc. they are basically getting hit with rockets and can stand back up but there’s an explanation for it. It’s annoying when a character like nami or sniper King can because it’s already canon there weak as shit and get knocked out in the slightest bit of damage but some arcs will have them become as strong as luffy in terms of defense;False;False;;;;1610503221;;False;{};gj2gz99;True;t3_kvor4u;False;True;t1_gj2gfco;/r/anime/comments/kvor4u/most_annoying_anime_tropecliche_that_you_want_to/gj2gz99/;1610573151;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DevinSimatupang;;;[];;;;text;t2_87uouqvz;False;False;[];;Oh. i just skipped the Opening and Ending. lol;False;False;;;;1610503592;;False;{};gj2ho9k;False;t3_kvsy6n;False;True;t1_gj1by0e;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj2ho9k/;1610573693;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ultramit21;;;[];;;;text;t2_5z4nhtm7;False;False;[];;Seraph of the End;False;False;;;;1610504121;;False;{};gj2io0x;False;t3_kvs4ah;False;True;t3_kvs4ah;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj2io0x/;1610574411;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ToxxicDuck;;;[];;;;text;t2_29j9hsmc;False;False;[];;RIP cayde you’ll always be loved;False;False;;;;1610504485;;False;{};gj2jc8w;False;t3_kvqlzy;False;True;t1_gj12e9c;/r/anime/comments/kvqlzy/my_first_time_watching_plastic_memories/gj2jc8w/;1610574895;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IR8Things;;;[];;;;text;t2_glr4l;False;False;[];;Poor Magna. I kept expecting him to overcome and.... nope.;False;False;;;;1610504908;;False;{};gj2k55z;False;t3_kvpz6g;False;False;t1_gj0asug;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj2k55z/;1610575463;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Freddy_The_Goat;;;[];;;;text;t2_2tfa73d2;False;False;[];;"This makes me disgusted in Humanity. - -This man was given the horrifying task of creating the final season in the span of around a year. - -He managed to create an adaptation that lives up the manga despite the conditions and now everyone is giving him shit for a single music choice that he didn't even choose.";False;False;;;;1610505039;;False;{};gj2ke2o;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj2ke2o/;1610575634;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PopPunkTeacher;;;[];;;;text;t2_3q70c5ad;False;False;[];;Was this canon? It felt like a low tier filler episode and the animation was absolutely horrendous in some spots.;False;False;;;;1610505058;;False;{};gj2kffd;False;t3_kvpz6g;False;True;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj2kffd/;1610575658;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;hockey3331;;;[];;;;text;t2_2b1ydzr5;False;False;[];;"> Imo it makes more sense the theme would be about doing the best with what your given in life, and not neccessairly that you can be anything through hard work alone. - -I mean we always knew that Yuno had extremely high magic power. Even if he was born from no-magic peasants, it would still be about what you just said. Especially during the Elf arc, all the ""with hard work you can become anything"" bs sounded so wrong to me. Like, Asta was saving everyone with the devil's power and Yuno had innate insane skills... no way any of the people they saved could do that (poor Nash too...). It's also shown over and over that Magna won't ever be as strong as his comrades, despite working super hard. - -But when using ""making the best with what you're given"" it makes a heck of a lot more sense. The Royals would usually sit on their asses because they were so good naturally, so someone like Noelle and the fire kid working hard will make them extraordinarily strong. Someone like Magna can become a decent threat against royals who laze off, but yeah he won't ever beat a naturally gifted mage that puts a little work into it. - -Pretty similar to real life. Someone who starts from the middle class can work hard and use all the resources available to them and become richer, but the person that was already rich doesn't have to put in the same efforts to stay rich - but if they did they could become even richer.";False;False;;;;1610506949;;False;{};gj2o019;False;t3_kvpz6g;False;True;t1_gj02cjg;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj2o019/;1610578231;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NekoWafers;;;[];;;;text;t2_iau18;False;False;[];;"That's fair, my entire experience with her music is just based around OPs/EDs. I've never really gone deeper into her discography so my impression of her music is limited. - -I don't think she is generic overall just that the composition/arrangement on some of her more upbeat anime songs kind of sounds the same. It's not an issue with her voice or lyrics. - -I like the majority of the tracks on the Lonely Queen's Liberation Party album. The only ones that I didn't like are BUTTERFLY EFFECTOR, Roadman, From, and Puzzle. - -For me I think a lot of it comes down to the composer/arranger. For example BUTTERFLY EFFECTOR, Roadman, and From were all done by the same person. On the other hand The world you want to end composed by Tom-H@ck is a fantastic track and should have been an OP. - -Then again musical preference is subjective so my likes and dislikes might be weird.";False;False;;;;1610507729;;False;{};gj2pg7u;False;t3_kvsc53;False;True;t1_gj2g5v6;/r/anime/comments/kvsc53/that_time_i_got_reincarnated_as_a_slime_season_2/gj2pg7u/;1610579221;0;True;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;nice;False;False;;;;1610508314;;False;{};gj2qhzr;False;t3_kvqlzy;False;True;t1_gj14w6i;/r/anime/comments/kvqlzy/my_first_time_watching_plastic_memories/gj2qhzr/;1610579919;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RadicTyle;;;[];;;;text;t2_6zkp27yl;False;False;[];;I dont like if the mc use talk no jutsu or forgive the enemy..thats just bullshit;False;False;;;;1610508749;;False;{};gj2r9kq;False;t3_kvor4u;False;True;t3_kvor4u;/r/anime/comments/kvor4u/most_annoying_anime_tropecliche_that_you_want_to/gj2r9kq/;1610580426;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rynkao;;;[];;;;text;t2_8wthivhb;False;False;[];;I got a whopping 23/60, I guess I’m pretty bad at telling which are which. But I’m very surprised but also happy to see Magic Knight Rayearth! I haven’t seen its name in a long time and it’s cool to see some recognition;False;False;;;;1610509282;;False;{};gj2s70y;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj2s70y/;1610581033;1;True;False;anime;t5_2qh22;;0;[]; -[];;;almost_famous25;;;[];;;;text;t2_6ceg6m3b;False;False;[];;He’s saying that medical supplies seem to magically never run out lol;False;False;;;;1610509877;;False;{};gj2t8hx;True;t3_kvor4u;False;False;t1_gizo22a;/r/anime/comments/kvor4u/most_annoying_anime_tropecliche_that_you_want_to/gj2t8hx/;1610581768;1;True;False;anime;t5_2qh22;;0;[]; -[];;;benrobbo;;;[];;;;text;t2_cg1ii;False;False;[];;"Second time seeing that OP goddamn it's so good. - -I'm getting extremely excited for this arc, no idea what to expect but I can tell it's building up to something good.";False;False;;;;1610510362;;False;{};gj2u2oe;False;t3_kvpz6g;False;True;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj2u2oe/;1610582403;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheCityofGondolin;;MAL;[];;http://myanimelist.net/profile/cityofgondolin;dark;text;t2_krjcr;False;False;[];;Definitely Death Parade (that OP is so damn fun) and Noragami. Noragami was what I expected based on the OP. Death Parade definitely was not... but it was still fantastic!;False;False;;;;1610510838;;False;{};gj2uvtk;False;t3_kvs4ah;False;True;t3_kvs4ah;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj2uvtk/;1610582978;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Chishuu;;;[];;;;text;t2_4qu7yh7m;False;False;[];;Bonk;False;False;;;;1610511562;;False;{};gj2w3wb;False;t3_kvpz6g;False;True;t1_gj01t4k;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj2w3wb/;1610583796;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Magnus-Artifex;;;[];;;;text;t2_3xwuipbe;False;False;[];;I wouldn’t bet on that;False;False;;;;1610512953;;False;{};gj2ye1t;False;t3_kvpz6g;False;True;t1_gizv0x2;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj2ye1t/;1610585286;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Magnus-Artifex;;;[];;;;text;t2_3xwuipbe;False;False;[];;Don’t be impatient and enjoy the ride. We are back on canon and soon you will not have time to worry for “filler”.;False;False;;;;1610513224;;False;{};gj2ytgv;False;t3_kvpz6g;False;False;t1_gj2kffd;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj2ytgv/;1610585562;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PopPunkTeacher;;;[];;;;text;t2_3q70c5ad;False;False;[];;Hard to enjoy the show when it’s been pretty crap for months and then it’s back to canon and this is the episode that is put out.;False;False;;;;1610513448;;False;{};gj2z5vl;False;t3_kvpz6g;False;True;t1_gj2ytgv;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj2z5vl/;1610585775;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Magnus-Artifex;;;[];;;;text;t2_3xwuipbe;False;False;[];;"You have too high expectations. - -The guys who do the show literally break their backs doing it. Be glad you even have an anime.";False;False;;;;1610513507;;False;{};gj2z96l;False;t3_kvpz6g;False;False;t1_gj2z5vl;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj2z96l/;1610585831;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SaKaly;;;[];;;;text;t2_46979186;False;False;[];;I think he was just made to be the opposite of Asta;False;False;;;;1610514285;;False;{};gj30fny;False;t3_kvpz6g;False;False;t1_gj1mj4k;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj30fny/;1610586634;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SaKaly;;;[];;;;text;t2_46979186;False;False;[];;Maybe Rill has another aspect of Tabata. Wouldn't be surprised cuz he's very subtle;False;False;;;;1610514348;;False;{};gj30j44;False;t3_kvpz6g;False;True;t1_gj2f3kc;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj30j44/;1610586700;1;True;False;anime;t5_2qh22;;0;[]; -[];;;peex;;;[];;;;text;t2_51i70;False;False;[];;Milkmen 😏;False;False;;;;1610515182;;False;{};gj31qwc;False;t3_kvpz6g;False;False;t1_gj1mj4k;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj31qwc/;1610587486;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mercydesu;;;[];;;;text;t2_4g3oa9ve;False;False;[];;Same! I got spoiled too lol. Am also glad that they revealed it early.;False;False;;;;1610517217;;False;{};gj34kco;False;t3_kvpz6g;False;True;t1_gj02azr;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj34kco/;1610589274;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RDSteve;;;[];;;;text;t2_pddu4;False;False;[];;Welcome to the N.H.K., Serial Experiments Lain, Kids on the Slope, Level E. just to name a few.;False;False;;;;1610517743;;False;{};gj359f3;False;t3_kvs4ah;False;True;t3_kvs4ah;/r/anime/comments/kvs4ah/what_anime_did_you_pick_up_because_you_liked_its/gj359f3/;1610589730;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ralanost;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ralanost;light;text;t2_6qohj;False;False;[];;I'm more interested in the OP/ED for the second cour. I got a feeling they will have a much different tone.;False;False;;;;1610517812;;False;{};gj35cns;False;t3_kvsc53;False;False;t3_kvsc53;/r/anime/comments/kvsc53/that_time_i_got_reincarnated_as_a_slime_season_2/gj35cns/;1610589793;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hopeless_Preacher;;;[];;;;text;t2_8m7w4y10;False;False;[];;What part of the fandom harrassed him the english portion or the Japanese fans since there's a language barrier?;False;False;;;;1610519247;;False;{};gj375vn;False;t3_kvsy6n;False;True;t1_gj072il;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj375vn/;1610590992;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mysteclipse;;;[];;;;text;t2_2c43bjs2;False;False;[];;38/60, and I’m happy with that! I got mostly seinen/shounen mess-ups and did pretty well with the shoujo and josei titles.;False;False;;;;1610519391;;False;{};gj37ca1;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj37ca1/;1610591105;1;True;False;anime;t5_2qh22;;0;[]; -[];;;comfortablepotato22;;;[];;;;text;t2_190tqz4b;False;False;[];;For a second? I still laugh at how ridiculous he looks;False;False;;;;1610521514;;False;{};gj39ubn;False;t3_kvpz6g;False;True;t1_gj0imq0;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj39ubn/;1610592724;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wonderllama5;;;[];;;;text;t2_jqsfu;False;False;[];;"10 anime I think you should watch: - -Cowboy Bebop (dub), Samurai Champloo (dub), Steins Gate, Railgun, Fullmetal Alchemist: Brotherhood (dub), Re:Zero (Director's Cut), Darling in the Franxx, Demon Slayer, Kaguya-sama, Fate/Zero - -Available on Netflix, Crunchyroll, Funimation, and/or Hulu - -Make a list at http://myanimelist.net and keep track of everything. Great way to find more recommendations too!";False;False;;;;1610522775;;False;{};gj3b9by;False;t3_kvrbv5;False;True;t3_kvrbv5;/r/anime/comments/kvrbv5/beginner_anime_recommendations_please/gj3b9by/;1610593656;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610523090;;False;{};gj3blj3;False;t3_kvpz6g;False;True;t1_gj11bm8;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj3blj3/;1610593874;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;"The most ones I got wrong weren't because ""I don't know what demographic this is in"" but because ""I don't know this anime""";False;False;;;;1610524369;;False;{};gj3cyoo;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj3cyoo/;1610594813;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Verzwei;;;[];;;;text;t2_cmzqb;False;False;[];;"32/60 - -I definitely straight up missed a few, but there were a lot of series in there that I didn't recognize (or watch) at all and I just guessed based on the art style. - -[Series that I'm at least a little familiar with and still got wrong:](/s ""Black Lagoon // Kaguya-sama // This Art Club Has A Problem // Nichijou // Sakura Trick"") - -Interesting thing: Excluding the shows I completely guessed on, every show I got wrong was because I had the correct gender but the wrong age bracket.";False;False;;;;1610524442;;False;{};gj3d1jf;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj3d1jf/;1610594870;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;I thought it was shonen too cause it is similar to shonen rom-coms like Nisekoi, BokuBen etc. It can fit in a shonen magazine too but it really doesn't matter at the end of the day.;False;False;;;;1610524656;;False;{};gj3d9lc;False;t3_kvqhm5;False;True;t1_gj0orgo;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj3d9lc/;1610595018;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;Yuragi-sou no Yuuna-san was in Shonen Jump too;False;False;;;;1610524823;;False;{};gj3dfub;False;t3_kvqhm5;False;True;t1_gizzp8j;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj3dfub/;1610595129;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;You can guess on the picture though, I got some right that I didn't know the anime based on the artstyle and the characters shown.;False;False;;;;1610525094;;False;{};gj3dpwt;False;t3_kvqhm5;False;True;t1_gj1wl25;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj3dpwt/;1610595311;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610526722;;False;{};gj3fdbh;False;t3_kvpz6g;False;True;t1_gizyhwh;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj3fdbh/;1610596359;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SaadelChourbagui;;;[];;;;text;t2_3f7p5xrv;False;False;[];;Yeah I liked ending more too its fire and I can vibe to it better still both are amazing tho;False;False;;;;1610527362;;False;{};gj3g0dx;False;t3_kvsc53;False;True;t1_gj2191b;/r/anime/comments/kvsc53/that_time_i_got_reincarnated_as_a_slime_season_2/gj3g0dx/;1610596760;2;True;False;anime;t5_2qh22;;0;[]; -[];;;itz_unknown_god;;;[];;;;text;t2_97tgx2k5;False;False;[];;Sounds like a lot of work though;False;False;;;;1610529057;;False;{};gj3hp1b;True;t3_kvo2yx;False;False;t1_gj0nz9z;/r/anime/comments/kvo2yx/pls_help_me_find_an_anime_to_watch/gj3hp1b/;1610597831;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kafukator;;MAL;[];;https://myanimelist.net/profile/Piippo;dark;text;t2_mm7y0;False;False;[];;Calling Aqua a prequel manga is a bit misleading. The manga started as Aqua, but for some reason it was decided to move it to a different magazine (with a different demographic), so it simply changed its name to Aria when it made the switch (maybe due to copyright?). The story itself just continued on as normal through the switch.;False;False;;;;1610530159;;False;{};gj3irie;False;t3_kvqhm5;False;True;t1_gj1umaw;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj3irie/;1610598486;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PM-ME-MOON-PICS;;;[];;;;text;t2_34gsb8wu;False;False;[];;I remember seeing a single frame image of Magna and Zora(?) in the Black Bull's Hideout in one of the recent episodes after he couldn't do the runes in Heart Kingdom. I can't find it now though.. So I might just be trying to rationalise his disappearance..;False;False;;;;1610533051;;False;{};gj3ljxa;False;t3_kvpz6g;False;True;t1_gj0asug;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj3ljxa/;1610600176;3;True;False;anime;t5_2qh22;;0;[]; -[];;;IrunMan;;;[];;;;text;t2_e4e7m;False;False;[];;Knowing Black clover he will propably get a training episode with power up in flashback form after wrecking a big enemy violently and suddenly, saving Luck (propably);False;False;;;;1610533249;;False;{};gj3lqqy;False;t3_kvpz6g;False;True;t1_gj3ljxa;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj3lqqy/;1610600289;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PM-ME-MOON-PICS;;;[];;;;text;t2_34gsb8wu;False;False;[];;I hope so. I really like his character but so far he always got screwed over when it comes to improving due to his lack of mana.;False;False;;;;1610533384;;False;{};gj3lve9;False;t3_kvpz6g;False;True;t1_gj3lqqy;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj3lve9/;1610600363;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheLulzbat;;;[];;;;text;t2_xgsfc;False;False;[];;First mistake was having twitter account.;False;False;;;;1610536632;;False;{};gj3p3ie;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj3p3ie/;1610602278;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FulcrumV2;;;[];;;;text;t2_6hxx6gjk;False;False;[];;Oh no....23/60;False;False;;;;1610537829;;False;{};gj3qcsq;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj3qcsq/;1610603079;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeGirlMariam;;;[];;;;text;t2_5k8efnfk;False;False;[];;26/60 damn I failed hard;False;False;;;;1610539680;;False;{};gj3se5s;False;t3_kvqhm5;False;True;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj3se5s/;1610604279;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SkullCandyy;;;[];;;;text;t2_rypij;False;False;[];;Yus yus yus;False;False;;;;1610549913;;False;{};gj48c94;False;t3_kvpoo2;False;True;t3_kvpoo2;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gj48c94/;1610613289;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CCSlim;;;[];;;;text;t2_zcmqx;False;False;[];;"I don’t know what to think of this episode, we had Asta basically showing how OP he became last episode to him struggling with base Charmy. - -I don’t know if this was just to show how far she has come since she wasn’t in the last episode? - -Yuno has the spirit of a half elf, a wind sprit, and now a prince. Wouldn’t doubt Asta ends up super special in his own way in the end";False;False;;;;1610550212;;False;{};gj48y02;False;t3_kvpz6g;False;True;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj48y02/;1610613616;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sw1611;;;[];;;;text;t2_4eyltl74;False;False;[];;What app VPN did you use?;False;False;;;;1610553083;;False;{};gj4ev9k;False;t3_kvpoo2;False;True;t1_gj12k37;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gj4ev9k/;1610616807;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ErohaTamaki;;;[];;;;text;t2_57gpkh3w;False;False;[];;I used TunnelBear, there are tons of other ones you could use though;False;False;;;;1610553202;;False;{};gj4f4cp;False;t3_kvpoo2;False;True;t1_gj4ev9k;/r/anime/comments/kvpoo2/assault_lily_project_gets_mini_anime_by_shaft/gj4f4cp/;1610616944;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cattapstaps;;;[];;;;text;t2_qabhps9;False;False;[];;"Ooo straight from the ""I don't actually have an argument"" hand book";False;False;;;;1610555685;;False;{};gj4kh9t;False;t3_kvsy6n;False;True;t1_gj21i6c;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj4kh9t/;1610619903;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Starwind_Amada;;;[];;;;text;t2_2xrw3imb;False;True;[];;You poor soul;False;False;;;;1610557003;;False;{};gj4neo9;False;t3_kvsy6n;False;True;t1_gj4kh9t;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj4neo9/;1610621539;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Severe_Safety9925;;;[];;;;text;t2_7lap6fkj;False;False;[];;new world looks really cool ill probably watch it;False;False;;;;1610559489;;False;{};gj4syhs;True;t3_kvrbv5;False;True;t1_gizvs79;/r/anime/comments/kvrbv5/beginner_anime_recommendations_please/gj4syhs/;1610624706;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Severe_Safety9925;;;[];;;;text;t2_7lap6fkj;False;False;[];;yea theyre both really talked about;False;False;;;;1610559543;;False;{};gj4t2xh;True;t3_kvrbv5;False;True;t1_gizyw42;/r/anime/comments/kvrbv5/beginner_anime_recommendations_please/gj4t2xh/;1610624779;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;It's still incredibly helpful. You can do it gradually.;False;False;;;;1610560390;;False;{};gj4v1mg;False;t3_kvo2yx;False;True;t1_gj3hp1b;/r/anime/comments/kvo2yx/pls_help_me_find_an_anime_to_watch/gj4v1mg/;1610625932;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Total points 31/60 - -Lower than I thought it'd be. Some I just didn't know and guessed on what I assumed.";False;False;;;;1610564251;;1610564672.0;{};gj53tj3;False;t3_kvqhm5;False;False;t3_kvqhm5;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj53tj3/;1610631646;1;True;False;anime;t5_2qh22;;0;[]; -[];;;citatel;;MAL;[];;https://myanimelist.net/animelist/citatel;dark;text;t2_qtrfe;False;False;[];;supernatural doesnt have to have the mc to have powers. it just means unnatural world or settings around the characters.;False;False;;;;1610564716;;False;{};gj54vgk;False;t3_kvqeau;False;False;t1_gizqtqf;/r/anime/comments/kvqeau/im_looking_supernatural_anime_with_male_character/gj54vgk/;1610632337;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Punished_Scrappy_Doo;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PunishedScrappy;light;text;t2_4riiozxp;False;False;[];;"> Nisekoi ran in WSJ - -I wasn't aware the Wall Street Journal ran any manga, you learn something new every day.";False;False;;;;1610566029;;False;{};gj57ura;False;t3_kvqhm5;False;True;t1_gizrsy6;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj57ura/;1610634377;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cattapstaps;;;[];;;;text;t2_qabhps9;False;False;[];;Eh I think I'm good;False;False;;;;1610566201;;False;{};gj5896o;False;t3_kvsy6n;False;True;t1_gj4neo9;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj5896o/;1610634674;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JimJamTheNinJin;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/CommieCool;light;text;t2_7hmo4a5;False;False;[];;Erased is a seinen manga adaptation, not an original anime.;False;False;;;;1610570525;;False;{};gj5hyi5;False;t3_kvqhm5;False;True;t1_gj1t155;/r/anime/comments/kvqhm5/is_it_shounen_shoujo_seinen_or_josei_a_quick_test/gj5hyi5/;1610641533;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Iruka_Chan;;;[];;;;text;t2_8v7ni3m9;False;False;[];;"U have a good taste, okay now that I know what u like I can write down every anime I enjoyed in this genres - -Rascal does not dream of bunny girl senpai(romance/supernatural) - -The pet girl of sakurasou (romance/slice of life) - -Toradora(romance/slice of life) - -Boarding school juliet(romance/school) - -Gamers!(romance/slice of life) - -Your Name(romance movie) - -Weathering with you - -A silent voice - -TONIKAWA: Over the Moon for You - -Love is hard for otaku(romance) - -Science Fell in Love, So I Tried to Prove It(more romance) - -My teen romantic comedy(am I trying to force u to watch more and more romance anime? maybe) - -Okay now a bit Isekai - -Overlord - -Rising Shieldhero - -That Time I Got Reincarnated as a Slime - -Bofuri: I Don’t Want to Get Hurt, so I’ll Max Out My Defense(haven't watched it yet but is on my watch list) - -Idk much more Isekai so I'm just gonna write a few more I really enjoyed(or enjoying rn) - - -Jujutsu Kaisen - -Attack on Titan - -Re:Zero - -The promised Neverland - -The Quintessential Quintuplets - -(Sry the last part is a bit messed up from the categories, they are anime I'm watching rn and I had to include it. If u know any other good romance anime pls tell me abt it.)";False;False;;;;1610579122;;False;{};gj61856;False;t3_kvo2yx;False;True;t1_gizu7dd;/r/anime/comments/kvo2yx/pls_help_me_find_an_anime_to_watch/gj61856/;1610655240;1;True;False;anime;t5_2qh22;;0;[]; -[];;;itz_unknown_god;;;[];;;;text;t2_97tgx2k5;False;False;[];;Bro you watch quintessential quintuplets I love that anime especially now cuz the second season just came out PS. Gamer's attack on Titan jujutsu kaisen promised neverland Re:zero overlord your name bunny girl senpai and rising of the shield hero oh I still need to continue birding school juliet;False;False;;;;1610594600;;False;{};gj6va14;True;t3_kvo2yx;False;True;t1_gj61856;/r/anime/comments/kvo2yx/pls_help_me_find_an_anime_to_watch/gj6va14/;1610675107;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Onlyfatwomenarefat;;;[];;;;text;t2_6a08b78;False;False;[];;You're talking as if all royals have the same potential.;False;False;;;;1610596203;;False;{};gj6y4sr;False;t3_kvpz6g;False;False;t1_gj0bsjh;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj6y4sr/;1610676917;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Onlyfatwomenarefat;;;[];;;;text;t2_6a08b78;False;False;[];;"Also Yami is japanese, we have no idea how the magic is distributed where he comes from, whether it's possible for him to be this strong or if he's a complete anomaly. - -Basically we have Jack yeah.";False;False;;;;1610596309;;False;{};gj6ybnf;False;t3_kvpz6g;False;True;t1_gj058ia;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj6ybnf/;1610677036;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Onlyfatwomenarefat;;;[];;;;text;t2_6a08b78;False;False;[];;But the story is not about peasants being as gifted as nobles, it's about hard work overcoming lack of talent.;False;False;;;;1610596408;;False;{};gj6yht7;False;t3_kvpz6g;False;False;t1_gj0kfnw;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj6yht7/;1610677141;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Onlyfatwomenarefat;;;[];;;;text;t2_6a08b78;False;False;[];;"when we think about it,it's kinda the same with My hero academia. - -It's a very hard message to get across (and yet so many shonens tried), because well... actually staying completely faithful to this message means making either your world inconsistent... or not interesting.";False;False;;;;1610596583;;False;{};gj6ysw5;False;t3_kvpz6g;False;True;t1_gj2frl3;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj6ysw5/;1610677339;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Onlyfatwomenarefat;;;[];;;;text;t2_6a08b78;False;False;[];;All the ideas and discriminations that Asta and Yuno were fighting against revolved around the idea that nobles are inherently superior because of their blood. Nobody in clover cares about nurture, it's all about your blood.;False;False;;;;1610596973;;False;{};gj6zhlb;False;t3_kvpz6g;False;True;t1_gizvywi;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj6zhlb/;1610677767;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Onlyfatwomenarefat;;;[];;;;text;t2_6a08b78;False;False;[];;Strange, I was pretty sure that Luck was that bastard of a noble (with a commoner woman). Gotta check;False;False;;;;1610597059;;False;{};gj6zmwv;False;t3_kvpz6g;False;True;t1_gj0501c;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj6zmwv/;1610677859;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Onlyfatwomenarefat;;;[];;;;text;t2_6a08b78;False;False;[];;who cares about dislikes lol;False;False;;;;1610597310;;False;{};gj702aa;False;t3_kvpz6g;False;True;t1_gj0o7c6;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj702aa/;1610678125;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sticktoyaguns;;;[];;;;text;t2_d9wcb;False;False;[];;"Yeah pretty much, if only Asta fought with his bare hands then you'd have your true message of ""anyone can make it if you try even in a world where magic is everything."" - -I actually thought that's what MHA was going to be until Deku got OFA and I was like ""oh nevermind then."" lol - -I mean really, come up with however you want to give an MC a power, but it always boils down to luck and the magic of being an MC.";False;False;;;;1610603142;;False;{};gj797gr;False;t3_kvpz6g;False;True;t1_gj6ysw5;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gj797gr/;1610684142;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610616456;;False;{};gj7o1m9;False;t3_kvsy6n;False;True;t1_gj1e2sl;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gj7o1m9/;1610693653;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bestjamesbond;;;[];;;;text;t2_e7ghu;False;False;[];;Any chance we can petition to delete twitter from existence? Horrible social media platform.;False;False;;;;1610664610;;False;{};gja5nsk;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gja5nsk/;1610751426;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WaterDood;;;[];;;;text;t2_5pm05;False;False;[];;Maybe it's because of Vengeance's body.;False;False;;;;1610667970;;False;{};gjac99y;False;t3_kvpz6g;False;True;t1_gj1j3tr;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gjac99y/;1610755936;3;True;False;anime;t5_2qh22;;0;[]; -[];;;unexpectedmisogynist;;;[];;;;text;t2_o76f24j;False;False;[];;"> Eren is a monster - -Yikes. Please rewatch the anime or read the manga again. He's just a guy protecting his people. He's a hero.";False;False;;;;1610682726;;False;{};gjb44gv;False;t3_kvsy6n;False;True;t1_gj0f74k;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gjb44gv/;1610773638;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ainsomniac;;;[];;;;text;t2_5hw57h3j;False;False;[];;Can only assume they expected the Tokyo Symphony Orchestra to break into their house and start screaming in their ear...;False;False;;;;1610722313;;False;{};gjcj2wa;False;t3_kvsy6n;False;True;t1_gj0a5dp;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gjcj2wa/;1610802156;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Raaf3;;;[];;;;text;t2_7duyvjit;False;False;[];;he sure is a monster to marley lol;False;False;;;;1610756303;;False;{};gjehcvz;False;t3_kvsy6n;False;True;t1_gjb44gv;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gjehcvz/;1610849840;1;True;False;anime;t5_2qh22;;0;[]; -[];;;laucron;;;[];;;;text;t2_e0t8j;False;False;[];;"Imo the original is acceptable for a first watch. I even thought Eren wouldn't act directly after all, so the silence helped a lot in the shock of the scene. Although then again, 2live/volt sounds a bit too uhhhhhhh heroic maybe? It doesn't sit quite well with what happens there imo, would have preferred something just as sudden but more bleak or terrifying. - -Saw an edit made with a track called ""Declaration of War"", which I figure is going to be used in the next episode over the same scene. It worked pretty much to perfection and synched with a lot of what was going on at the moment. This one however I figure would be more to the liking of researchers or manga readers, since they know that something and when this something is going to happen. - -All in all, I still think a bit of constructive criticism could be used, but the harassment was a fucking disgrace. Don't think the soundtrack ruined the moment and all, but definetely think it could have been elevated a bit more with a specific track that's just as sudden but more attuned to the circumstances. Anycase, I can say that Mappa has delivered p damn well so far.";False;False;;;;1610767807;;False;{};gjf23x8;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gjf23x8/;1610862566;1;True;False;anime;t5_2qh22;;0;[]; -[];;;just_testing3;;;[];;;;text;t2_5dn5w;False;False;[];;No, you're right. One day he was with them in Heart, and then next time we see him is in a tiny snapshot in the Black Bulls' hideout. I first thought it was an animation error to show him there, but apparently nobody cares about him being gone either way.;False;False;;;;1610814328;;False;{};gjh2gpz;False;t3_kvpz6g;False;False;t1_gj3ljxa;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gjh2gpz/;1610901224;4;True;False;anime;t5_2qh22;;0;[]; -[];;;just_testing3;;;[];;;;text;t2_5dn5w;False;False;[];;"> Compared to Diamond and Clover Kingdom, Heart Kingdom barely has any Magic Knight - -That's pretty much Heart Kingdom's logic, that is explained at the beginning of the training arc. Heart says it doesn't matter how many magic knights a nation has, but what will decide a war between the nations is what level their magic knights are on. They say level 1 and above are basically worth hundreds of the lower ranks and it doesn't matter how many 'small fry' you pit against them. That's why they focused the training on raising the level of a few to the highest stages.";False;False;;;;1610814682;;False;{};gjh383g;False;t3_kvpz6g;False;False;t1_gj02azr;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gjh383g/;1610901693;2;True;False;anime;t5_2qh22;;0;[]; -[];;;exokey;;;[];;;;text;t2_16qcud;False;False;[];;Yuno just keeps getting handouts... boy owns a whole kingdom 🤦🏽‍♂️;False;False;;;;1610863295;;False;{};gjju121;False;t3_kvpz6g;False;True;t3_kvpz6g;/r/anime/comments/kvpz6g/black_clover_episode_159_discussion/gjju121/;1610962405;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AmiAkin;;;[];;;;text;t2_30y1v2k0;False;False;[];;"Ngl I’ve not liked a single music choice or rather the lack of soundtrack. -I’m glad to see I’m not only one who has felt it this FINAL season. Although I had no idea ppl were attacking the director. - -Like damn. Can’t y’all just write your thoughts on reddit or something and leave it. -What’s the point in harassing those on the job and making them more depressed?";False;False;;;;1610985033;;False;{};gjq8x99;False;t3_kvsy6n;False;True;t3_kvsy6n;/r/anime/comments/kvsy6n/attack_on_titan_director_was_harassed_off_twitter/gjq8x99/;1611098124;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;Why is anything named what it is?;False;False;;;;1610547659;;False;{};gj442wo;False;t3_kwh9qe;False;False;t3_kwh9qe;/r/anime/comments/kwh9qe/why_is_marmalade_boy_called_marmalade_boy/gj442wo/;1610610937;7;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"# Source Material Corner - -Reply to this comment for any source-related discussion, future spoilers (including future characters, events and general hype about future content), comparison of the anime adaptation to the original, or just general talk about the source material. **You are still required to tag all spoilers.** Discussions about the source outside of this comment tree will be removed, and replying with spoilers outside of the source corner will lead to bans. - -The spoiler syntax is: -`[Spoiler source](/s ""Spoiler goes here"")` - -# **All untagged spoilers and hints in this thread will receive immediate 8-day bans (minimum).** - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610547924;moderator;False;{};gj44kcp;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj44kcp/;1610611196;1;False;True;anime;t5_2qh22;;0;[]; -[];;;KarmaOAkabane;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;anilist.co/user/KarmaOAkabane;light;text;t2_8ajupisc;False;False;[];;fuck, that was one emotional ending;False;False;;;;1610548417;;False;{};gj45gz0;False;t3_kwhejb;False;False;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj45gz0/;1610611714;6;True;False;anime;t5_2qh22;;0;[]; -[];;;KarmaOAkabane;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;anilist.co/user/KarmaOAkabane;light;text;t2_8ajupisc;False;False;[];;and thats why i fucking love Ban;False;False;;;;1610548441;;1610548759.0;{};gj45ikz;False;t3_kwhejb;False;False;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj45ikz/;1610611739;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Miidas-92;;MAL;[];;https://myanimelist.net/profile/Miidas;dark;text;t2_ja1jx;False;False;[];;Great news. Ojamajo Doremi is one of my favorite anime, so this is my most anticipated anime this year. I'm really looking forward to the blurays getting subbed.;False;False;;;;1610548765;;False;{};gj46438;False;t3_kwhmt4;False;False;t3_kwhmt4;/r/anime/comments/kwhmt4/ojamajo_doremi_20th_anniversary_movie_looking_for/gj46438/;1610612082;9;True;False;anime;t5_2qh22;;0;[]; -[];;;ohaimike;;;[];;;;text;t2_5ovb2;False;False;[];;"Being in idol Hell is a love/hate thing for me. - -On one hand, yeah its kinda hard to escape from it. - -On the other, the music is fucking wonderful, the idols are super super cute, the anime and games are really enjoyable, and the merch....oh God the merch.";False;False;;;;1610548933;;False;{};gj46fl3;False;t3_kwhjks;False;True;t3_kwhjks;/r/anime/comments/kwhjks/opinion_idol_hells_are_overhated/gj46fl3/;1610612259;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;"I feel sorry for the poor saps in Idol Hell that are currently spending all day every day grinding for pngs of girls that they can just download off of a website. - -Oh wait, that's me.";False;False;;;;1610548979;;False;{};gj46ip5;False;t3_kwhjks;False;True;t3_kwhjks;/r/anime/comments/kwhjks/opinion_idol_hells_are_overhated/gj46ip5/;1610612305;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;Aikatsu and Pretty series are where it's at, the peak idol experience.;False;False;;;;1610549003;;False;{};gj46kbd;False;t3_kwhjks;False;True;t3_kwhjks;/r/anime/comments/kwhjks/opinion_idol_hells_are_overhated/gj46kbd/;1610612331;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Kizyro, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610549118;moderator;False;{};gj46sbv;False;t3_kwhscm;False;False;t3_kwhscm;/r/anime/comments/kwhscm/any_anime_i_could_watch_with_my_gf/gj46sbv/;1610612451;1;False;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Noragami;False;False;;;;1610549202;;False;{};gj46y0o;False;t3_kwhscm;False;True;t3_kwhscm;/r/anime/comments/kwhscm/any_anime_i_could_watch_with_my_gf/gj46y0o/;1610612537;3;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;Darling in the FranXX should fit, but I can't imagine watching it with a girlfriend.;False;False;;;;1610549293;;False;{};gj474bs;False;t3_kwhscm;False;True;t3_kwhscm;/r/anime/comments/kwhscm/any_anime_i_could_watch_with_my_gf/gj474bs/;1610612628;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610549365;moderator;False;{};gj479fd;False;t3_kwhv11;False;True;t3_kwhv11;/r/anime/comments/kwhv11/i_dont_know_what_to_watch_next/gj479fd/;1610612703;1;False;False;anime;t5_2qh22;;0;[]; -[];;;laidbackkanga;;;[];;;;text;t2_rblnr;False;False;[];;Legend of the Overfiend;False;False;;;;1610549497;;False;{};gj47iji;False;t3_kwhscm;False;True;t3_kwhscm;/r/anime/comments/kwhscm/any_anime_i_could_watch_with_my_gf/gj47iji/;1610612839;2;True;False;anime;t5_2qh22;;0;[]; -[];;;UncleGace;;;[];;;;text;t2_90diqz9x;False;False;[];;Over the moon for you;False;False;;;;1610549526;;False;{};gj47kjj;False;t3_kwhscm;False;True;t3_kwhscm;/r/anime/comments/kwhscm/any_anime_i_could_watch_with_my_gf/gj47kjj/;1610612868;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chunkyspunk123;;;[];;;;text;t2_7v9z6v0i;False;False;[];;What romance is in noragami??;False;False;;;;1610549527;;False;{};gj47knm;False;t3_kwhscm;False;True;t1_gj46y0o;/r/anime/comments/kwhscm/any_anime_i_could_watch_with_my_gf/gj47knm/;1610612869;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;Self-insert characters.;False;False;;;;1610549540;;False;{};gj47lh1;False;t3_kwhu1l;False;False;t3_kwhu1l;/r/anime/comments/kwhu1l/why_do_so_many_artist_dont_make_scene_there_they/gj47lh1/;1610612881;4;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;"If they drag on the romance, they'll be able to sell more chapters and volumes, so there's more money in it. - -In all seriousness, though, I believe the harem MCs are supposed to be self-inserts so if the MC commits to one, then the customers who don't prefer that one lose the immersion and drop their investment in the series. That's why it's left ambiguous and there's either a polygamous ending or it's only confirmed as an epilogue. Take a look at Nisekoi and Quintuplets.";False;False;;;;1610549571;;False;{};gj47nrj;False;t3_kwhu1l;False;True;t3_kwhu1l;/r/anime/comments/kwhu1l/why_do_so_many_artist_dont_make_scene_there_they/gj47nrj/;1610612916;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"Horimiya is airing right now, catch up to it :) -Otherwise, - -[Bakemonogatari](https://anilist.co/anime/5081/Bakemonogatari/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_-monogatari_.2F_bakemonogatari) -Comedy, Drama, Mystery, Psychological, Romance, Supernatural - -[Clannad](https://anilist.co/anime/2167/Clannad/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_clannad) -Comedy, Drama, Romance, Slice of Life, Supernatural -(spoilers are EVERYWHERE, don't search it up) - -[TONIKAWA: Over The Moon For You](https://anilist.co/anime/116267/TONIKAWA-Over-The-Moon-For-You/) -Comedy, Romance, Sci-Fi, Slice of Life - -[Rascal Does Not Dream of Bunny Girl Senpai](https://anilist.co/anime/101291/Rascal-Does-Not-Dream-of-Bunny-Girl-Senpai/) -Comedy, Mystery, Psychological, Romance, Slice of Life, Supernatural";False;False;;;;1610549584;;False;{};gj47ona;False;t3_kwhv11;False;True;t3_kwhv11;/r/anime/comments/kwhv11/i_dont_know_what_to_watch_next/gj47ona/;1610612929;3;True;False;anime;t5_2qh22;;0;[]; -[];;;nuaTN;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;r/anime and shit taste;light;text;t2_2jpaolye;False;True;[];;">Instead they do nothing and make a MC that Act so Stupid and Dump - -That's how you make more money by dragging the story.";False;False;;;;1610549586;;False;{};gj47osx;False;t3_kwhu1l;False;False;t3_kwhu1l;/r/anime/comments/kwhu1l/why_do_so_many_artist_dont_make_scene_there_they/gj47osx/;1610612932;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610549604;;False;{};gj47q2o;False;t3_kwhqhq;False;True;t3_kwhqhq;/r/anime/comments/kwhqhq/jinroh_wolf_brigade_question_girl_with_iron/gj47q2o/;1610612950;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"They have to be dense to make the story longer, if they realize early they may choose a girl or reject her, this kills the ""who will he choose"" vibe that so many harems have";False;False;;;;1610549634;;False;{};gj47s7w;False;t3_kwhu1l;False;True;t3_kwhu1l;/r/anime/comments/kwhu1l/why_do_so_many_artist_dont_make_scene_there_they/gj47s7w/;1610612984;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;Me and my wife watched Franxx together and she liked it more than me.;False;False;;;;1610549692;;False;{};gj47wde;False;t3_kwhscm;False;False;t1_gj474bs;/r/anime/comments/kwhscm/any_anime_i_could_watch_with_my_gf/gj47wde/;1610613047;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;It's supposed to be easy to self-insert into the character. If the MC worries too much about the condition of his girlfriends, he would probably choose one of them and move on.;False;False;;;;1610549701;;False;{};gj47x0o;False;t3_kwhu1l;False;True;t3_kwhu1l;/r/anime/comments/kwhu1l/why_do_so_many_artist_dont_make_scene_there_they/gj47x0o/;1610613058;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;He makes boys into marmalade;False;False;;;;1610549764;;False;{};gj481hc;False;t3_kwh9qe;False;True;t3_kwh9qe;/r/anime/comments/kwh9qe/why_is_marmalade_boy_called_marmalade_boy/gj481hc/;1610613128;2;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;"Bishamon and Kazuma - -Yato and Hiyori ( not so much romance but still some good moments are there and a good OVA as well) - -Kofuku and Yato ( Yato introduced her as his girlfriend)";False;False;;;;1610549770;;False;{};gj481xw;False;t3_kwhscm;False;True;t1_gj47knm;/r/anime/comments/kwhscm/any_anime_i_could_watch_with_my_gf/gj481xw/;1610613133;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;She looked extra cute in that penguin outfit;False;False;;;;1610549781;;False;{};gj482pi;False;t3_kwhpxz;False;False;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj482pi/;1610613145;125;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;Hyouka sounds perfect for you, just know that the romance side of it is in the back seat.;False;False;;;;1610549811;;False;{};gj484sy;False;t3_kwhv11;False;True;t3_kwhv11;/r/anime/comments/kwhv11/i_dont_know_what_to_watch_next/gj484sy/;1610613177;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610549867;;False;{};gj488y8;False;t3_kwhu1l;False;True;t3_kwhu1l;/r/anime/comments/kwhu1l/why_do_so_many_artist_dont_make_scene_there_they/gj488y8/;1610613240;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"The whole movie is supposed to be a reworking of Red Riding Hood - -https://en.wikipedia.org/wiki/Kerberos_%26_Tachiguishi";False;False;;;;1610550101;;False;{};gj48pvl;False;t3_kwhqhq;False;True;t3_kwhqhq;/r/anime/comments/kwhqhq/jinroh_wolf_brigade_question_girl_with_iron/gj48pvl/;1610613491;2;True;False;anime;t5_2qh22;;0;[]; -[];;;heyshawtyboy;;;[];;;;text;t2_3p7g9avl;False;False;[];;I caught that, I'm just confused as to how I was exposed to this version of the story as a kid. I'm wondering if it was in a book or maybe featured in another piece of media;False;False;;;;1610550264;;False;{};gj491rf;True;t3_kwhqhq;False;True;t1_gj48pvl;/r/anime/comments/kwhqhq/jinroh_wolf_brigade_question_girl_with_iron/gj491rf/;1610613674;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fivetreesinmyass;;;[];;;;text;t2_5t1j6sey;False;False;[];;Seven deadly frames is back🎉🎉🎉;False;False;;;;1610550345;;False;{};gj497k7;False;t3_kwhejb;False;False;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj497k7/;1610613761;126;True;False;anime;t5_2qh22;;0;[]; -[];;;vjeats;;;[];;;;text;t2_3qjx705w;False;False;[];;Let's see how this season is handled. I need that animation to come through because I like the story;False;False;;;;1610550426;;False;{};gj49dhv;False;t3_kwhejb;False;False;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj49dhv/;1610613853;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;Love Live! Sunshine!! easily;False;False;;;;1610550580;;False;{};gj49oyy;False;t3_kwi97y;False;False;t3_kwi97y;/r/anime/comments/kwi97y/which_anime_has_the_best_osts/gj49oyy/;1610614027;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;Idk, there are alot for me , Toaru, Fairy tail , Fate, etc;False;False;;;;1610550615;;False;{};gj49rmm;False;t3_kwi97y;False;True;t3_kwi97y;/r/anime/comments/kwi97y/which_anime_has_the_best_osts/gj49rmm/;1610614067;2;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;"1. Attack on Titan -2. Steins;Gate -3. A silent voice";False;False;;;;1610550651;;False;{};gj49u7m;False;t3_kwi97y;False;False;t3_kwi97y;/r/anime/comments/kwi97y/which_anime_has_the_best_osts/gj49u7m/;1610614105;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;Aikatsu;False;False;;;;1610550665;;False;{};gj49va6;False;t3_kwi97y;False;True;t3_kwi97y;/r/anime/comments/kwi97y/which_anime_has_the_best_osts/gj49va6/;1610614121;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aryvd_0103;;;[];;;;text;t2_549u7prl;False;False;[];;All credits to the guy[Bucket] who created this . I am merely a bystander trying to spread this art .;False;False;;;;1610550689;;False;{};gj49wz4;True;t3_kwi9c6;False;True;t3_kwi9c6;/r/anime/comments/kwi9c6/true_masterpiece_aot_s4_ep_5_spoilers/gj49wz4/;1610614146;1;True;False;anime;t5_2qh22;;0;[]; -[];;;maullido;;;[];;;;text;t2_knqi8;False;False;[];;"lupin part 1, earth maiden arjuna. -in that order";False;False;;;;1610550738;;False;{};gj4a0k7;False;t3_kwi97y;False;True;t3_kwi97y;/r/anime/comments/kwi97y/which_anime_has_the_best_osts/gj4a0k7/;1610614198;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;Of Yuki Kajiura's OST, I think her work in the Garden of sinners movie franchise is probably one of the best OST for an anime she's done.;False;False;;;;1610550757;;False;{};gj4a22c;False;t3_kwi97y;False;True;t3_kwi97y;/r/anime/comments/kwi97y/which_anime_has_the_best_osts/gj4a22c/;1610614221;3;True;False;anime;t5_2qh22;;0;[]; -[];;;nocematt;;;[];;;;text;t2_5dp9b57s;False;False;[];;Attack on Titan;False;False;;;;1610550797;;False;{};gj4a543;False;t3_kwi97y;False;True;t3_kwi97y;/r/anime/comments/kwi97y/which_anime_has_the_best_osts/gj4a543/;1610614265;0;True;False;anime;t5_2qh22;;0;[]; -[];;;aryvd_0103;;;[];;;;text;t2_549u7prl;False;False;[];;"Attack on Titan and Naruto. People don't say very often , at least in this sub , but Naruto ost is really good. - - And I swear if anyone says HxH ... I have seen many say this .";False;False;;;;1610550797;;False;{};gj4a54f;False;t3_kwi97y;False;True;t3_kwi97y;/r/anime/comments/kwi97y/which_anime_has_the_best_osts/gj4a54f/;1610614265;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AkagamiNoShanks01;;;[];;;;text;t2_9easnbj3;False;False;[];;"I have all Naruto OST's downloaded in my mobile so I can hear them anywhere I go and the OST's are just amazing - -Lol HxH for me only one ending is great besides that there is no OST or intro that is really good";False;False;;;;1610550908;;1610551135.0;{};gj4aden;False;t3_kwi97y;False;True;t1_gj4a54f;/r/anime/comments/kwi97y/which_anime_has_the_best_osts/gj4aden/;1610614388;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610550939;moderator;False;{};gj4afps;False;t3_kwidz9;False;True;t3_kwidz9;/r/anime/comments/kwidz9/wonder_egg_priority_when_will_the_dub_come_out/gj4afps/;1610614421;0;False;False;anime;t5_2qh22;;0;[]; -[];;;Mekazuaquaness;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;mekazuaquaness is true waifu;dark;text;t2_3d9sfw2v;False;False;[];;It feels like every line in attack on titan is layered with multiple meanings derived from different contexts. Fuckin genius writing proven by the fact that people are noticing new things from old seasons;False;False;;;;1610550990;;False;{};gj4ajii;False;t3_kwi9p6;False;True;t3_kwi9p6;/r/anime/comments/kwi9p6/because_he_was_born_into_this_world/gj4ajii/;1610614475;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Eren was suprised last episode when willy said a similar thing;False;False;;;;1610550991;;False;{};gj4ajjj;False;t3_kwi9p6;False;True;t3_kwi9p6;/r/anime/comments/kwi9p6/because_he_was_born_into_this_world/gj4ajjj/;1610614476;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"I don’t think anyone knows. - -It might take week for a dub or it might not get a dub";False;False;;;;1610551004;;False;{};gj4akjb;False;t3_kwidz9;False;True;t3_kwidz9;/r/anime/comments/kwidz9/wonder_egg_priority_when_will_the_dub_come_out/gj4akjb/;1610614491;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;This fits in a weird way;False;False;;;;1610551067;;False;{};gj4ap5d;False;t3_kwi9c6;False;True;t3_kwi9c6;/r/anime/comments/kwi9c6/true_masterpiece_aot_s4_ep_5_spoilers/gj4ap5d/;1610614560;2;True;False;anime;t5_2qh22;;0;[]; -[];;;maullido;;;[];;;;text;t2_knqi8;False;False;[];;"In the original story, the title of Marmalade Boy was an indication of the hero Miki's cheerful, sweet, and naive nature. After redoing the concept, she wanted to keep the original title, changing its meaning to what is stated in the first volume, that Yuu ""has lots of bitter bits inside"" him but people only see his sweet surface. -https://en.m.wikipedia.org/wiki/Marmalade_Boy#cite_note-MB_Vol_8_Extra_1-2";False;False;;;;1610551086;;False;{};gj4aqjz;False;t3_kwh9qe;False;True;t3_kwh9qe;/r/anime/comments/kwh9qe/why_is_marmalade_boy_called_marmalade_boy/gj4aqjz/;1610614581;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Novelle_1020;;;[];;;;text;t2_3um1vzgu;False;False;[];;Damn, hope it gets a dub. Wonder Egg Priority sounds like *exactly* my kind of show.;False;False;;;;1610551087;;False;{};gj4aqnx;True;t3_kwidz9;False;True;t1_gj4akjb;/r/anime/comments/kwidz9/wonder_egg_priority_when_will_the_dub_come_out/gj4aqnx/;1610614583;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Attack on titan for sure, probably the only show I have seen where nearly all the tracks are bangers;False;False;;;;1610551128;;False;{};gj4atm0;False;t3_kwi97y;False;True;t3_kwi97y;/r/anime/comments/kwi97y/which_anime_has_the_best_osts/gj4atm0/;1610614626;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HobnobsTheRed;;;[];;;;text;t2_1ftgjit5;False;False;[];;Girls' Last Tour.;False;False;;;;1610551180;;False;{};gj4axfi;False;t3_kwi97y;False;False;t3_kwi97y;/r/anime/comments/kwi97y/which_anime_has_the_best_osts/gj4axfi/;1610614683;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"And it keeps adding meaning to lines from early on as well even upto where we are now in the manga. It never stops adding layers but rather completely changes how we view things every time a development happens. - -[Line from S1](/s""You play the bad guy now'"") from Reiner to Eren is just one example looking after the most recent episode";False;False;;;;1610551243;;1610551752.0;{};gj4b1zd;False;t3_kwi9p6;False;True;t1_gj4ajii;/r/anime/comments/kwi9p6/because_he_was_born_into_this_world/gj4b1zd/;1610614749;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Only aot, Dr Stone, Slime and Promised neverland have confirmed dubs coming from Funimation;False;False;;;;1610551263;;False;{};gj4b3ek;False;t3_kwidz9;False;True;t1_gj4aqnx;/r/anime/comments/kwidz9/wonder_egg_priority_when_will_the_dub_come_out/gj4b3ek/;1610614769;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;"#THIS - -#IS - -#EPIC";False;False;;;;1610551379;;False;{};gj4bbx8;False;t3_kwi9c6;False;True;t3_kwi9c6;/r/anime/comments/kwi9c6/true_masterpiece_aot_s4_ep_5_spoilers/gj4bbx8/;1610614900;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Unspoken;;;[];;;;text;t2_1iu6m;False;False;[];;Where are people watching this at?;False;False;;;;1610551420;;False;{};gj4bevc;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4bevc/;1610614945;1;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 150, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Thank you stranger. Shows the award.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'icon_width': 2048, 'id': 'award_f44611f1-b89e-46dc-97fe-892280b13b82', 'is_enabled': True, 'is_new': False, 'name': 'Helpful', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;"All of these match what you're looking for - -- Oregairu - -- Bunny girl senpai - -- Hyouka";False;False;;;;1610551458;;False;{};gj4bhqs;False;t3_kwhv11;False;True;t3_kwhv11;/r/anime/comments/kwhv11/i_dont_know_what_to_watch_next/gj4bhqs/;1610614989;1;True;False;anime;t5_2qh22;;1;[]; -[];;;Prince-Dizzytoon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/princedizzytoon;light;text;t2_mu0df;False;False;[];;I sailed the high seas;False;False;;;;1610551508;;False;{};gj4bldl;False;t3_kwhejb;False;False;t1_gj4bevc;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4bldl/;1610615042;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal_Ebb_238;;;[];;;;text;t2_8nmkui77;False;False;[];;Blood+, action vampire romance done right.;False;False;;;;1610551631;;False;{};gj4buh7;False;t3_kwhscm;False;True;t3_kwhscm;/r/anime/comments/kwhscm/any_anime_i_could_watch_with_my_gf/gj4buh7/;1610615178;2;True;False;anime;t5_2qh22;;0;[]; -[];;;UltmtDestroyer;;;[];;;;text;t2_51twoxft;False;False;[];;Me too but I can't find it, I guess you don't always find gold. Where did you pirate it from;False;False;;;;1610551634;;False;{};gj4buoz;False;t3_kwhejb;False;True;t1_gj4bldl;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4buoz/;1610615181;2;True;False;anime;t5_2qh22;;0;[]; -[];;;selfaholic;;;[];;;;text;t2_1khhhf6;False;False;[];;Mushishi, Zankyou no Terror, Shiki;False;False;;;;1610551731;;False;{};gj4c1ws;False;t3_kwi97y;False;True;t3_kwi97y;/r/anime/comments/kwi97y/which_anime_has_the_best_osts/gj4c1ws/;1610615290;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Addy_kemobi;;;[];;;;text;t2_8xcm36d9;False;False;[];;Cowboy Bebop(the OG);False;False;;;;1610551759;;False;{};gj4c406;False;t3_kwi97y;False;True;t3_kwi97y;/r/anime/comments/kwi97y/which_anime_has_the_best_osts/gj4c406/;1610615322;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Khronify;;;[];;;;text;t2_41zknosc;False;False;[];;Attack on Titan, Jojo and the Fate series instantly come to mind when thinking of the best OSTs.;False;False;;;;1610551766;;False;{};gj4c4kt;False;t3_kwi97y;False;False;t3_kwi97y;/r/anime/comments/kwi97y/which_anime_has_the_best_osts/gj4c4kt/;1610615331;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok_Draw_2833;;;[];;;;text;t2_4dha12vu;False;False;[];;“Across the sea, within the walls... It’s the same.”;False;False;;;;1610551860;;False;{};gj4cboi;True;t3_kwi9p6;False;True;t1_gj4ajjj;/r/anime/comments/kwi9p6/because_he_was_born_into_this_world/gj4cboi/;1610615437;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ISeydouDat;;;[];;;;text;t2_5kmtsa;False;False;[];;Gosh,all those decades Ban had to endure in purgatory, and then for him to finally find Meliodas crying in his arms put a mad smile on my face. Glad this anime is back on the menu!;False;False;;;;1610551886;;False;{};gj4cdnm;False;t3_kwhejb;False;False;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4cdnm/;1610615465;9;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;"Some shounen romance anime -- Toradora! -- Koe no Katachi -- Your Lie in April -- Nisekoi - -Some non-shounen romance anime that are really good that you should watch anyway -- Fruits Basket (Shoujo) -- Kaguya-sama (Seinen) -- Spice and Wolf (Seinen)";False;False;;;;1610551920;;False;{};gj4cg84;False;t3_kwhscm;False;True;t3_kwhscm;/r/anime/comments/kwhscm/any_anime_i_could_watch_with_my_gf/gj4cg84/;1610615502;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FarrelMFajar;;;[];;;;text;t2_13bxx0;False;False;[];;"I love how the mixed reaction of music choice gave birth to ""I replaced the Declaration of War music with other music"" memes.";False;False;;;;1610551942;;False;{};gj4chvi;False;t3_kwi9c6;False;True;t3_kwi9c6;/r/anime/comments/kwi9c6/true_masterpiece_aot_s4_ep_5_spoilers/gj4chvi/;1610615527;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nikodimpapad;;;[];;;;text;t2_4g1g6gq7;False;False;[];;"""Is it wrong not to be special?"" -🔝🔝🔝";False;False;;;;1610551991;;False;{};gj4cllf;False;t3_kwi9p6;False;True;t3_kwi9p6;/r/anime/comments/kwi9p6/because_he_was_born_into_this_world/gj4cllf/;1610615583;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AlphaGalactian;;;[];;;;text;t2_6igdz5ld;False;False;[];;Attack on Titan is definitely up there but there’s one that doesn’t get enough praise which is Beastars. Man, that OST just hits different;False;False;;;;1610551995;;False;{};gj4clvs;False;t3_kwi97y;False;False;t3_kwi97y;/r/anime/comments/kwi97y/which_anime_has_the_best_osts/gj4clvs/;1610615587;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aryvd_0103;;;[];;;;text;t2_549u7prl;False;False;[];;Ikr. Mastahpiece;False;False;;;;1610552195;;False;{};gj4d0wc;True;t3_kwi9c6;False;True;t1_gj4bbx8;/r/anime/comments/kwi9c6/true_masterpiece_aot_s4_ep_5_spoilers/gj4d0wc/;1610615810;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"Kill la Kill has the best Sawano OST - -Made in Abyss has a perfect OST for the show it is - -The whole Monogatari series has a lot of great music";False;False;;;;1610552267;;False;{};gj4d6ab;False;t3_kwi97y;False;True;t3_kwi97y;/r/anime/comments/kwi97y/which_anime_has_the_best_osts/gj4d6ab/;1610615891;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aryvd_0103;;;[];;;;text;t2_549u7prl;False;False;[];;Yeah . The one they use in the yorknew arc. That one is great.;False;False;;;;1610552602;;False;{};gj4dv3b;False;t3_kwi97y;False;True;t1_gj4aden;/r/anime/comments/kwi97y/which_anime_has_the_best_osts/gj4dv3b/;1610616261;1;True;False;anime;t5_2qh22;;0;[]; -[];;;waserf11;;;[];;;;text;t2_7fxji5kc;False;False;[];;The mother is fucking Eren with a wig;False;False;;;;1610552744;;False;{};gj4e5ox;False;t3_kwi9p6;False;True;t3_kwi9p6;/r/anime/comments/kwi9p6/because_he_was_born_into_this_world/gj4e5ox/;1610616420;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;I suspect this will not be a dialog-heavy show -- so why not check out the subbed version.;False;False;;;;1610552795;;False;{};gj4e9jk;False;t3_kwidz9;False;True;t1_gj4aqnx;/r/anime/comments/kwidz9/wonder_egg_priority_when_will_the_dub_come_out/gj4e9jk/;1610616479;3;True;False;anime;t5_2qh22;;0;[]; -[];;;pcechos;;;[];;;;text;t2_73kw7;False;False;[];;I hear the story goes to shit too tbh rip;False;False;;;;1610552861;;False;{};gj4eeiy;False;t3_kwhejb;False;False;t1_gj49dhv;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4eeiy/;1610616553;53;True;False;anime;t5_2qh22;;0;[]; -[];;;Confused_n_tired;;;[];;;;text;t2_29i19qjk;False;False;[];;thank you my friend. you have made my day!!;False;False;;;;1610553056;;False;{};gj4et73;False;t3_kwhpxz;False;False;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj4et73/;1610616774;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiro_Kai;;;[];;;;text;t2_bevm2wi;False;False;[];;Precious cinnamoroll of curiosity;False;False;;;;1610553440;;False;{};gj4fmr1;False;t3_kwhpxz;False;False;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj4fmr1/;1610617223;47;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;She just curiously wanted to get shoot;False;False;;;;1610553494;;False;{};gj4fqtj;False;t3_kwhpxz;False;False;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj4fqtj/;1610617286;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Economy_Detective943;;;[];;;;text;t2_3ovs9y8d;False;False;[];;Nothing wrong to be ereh with a wig;False;False;;;;1610553636;;False;{};gj4g1m5;False;t3_kwi9p6;False;True;t1_gj4e5ox;/r/anime/comments/kwi9p6/because_he_was_born_into_this_world/gj4g1m5/;1610617448;3;True;False;anime;t5_2qh22;;0;[]; -[];;;River_sounds;;;[];;;;text;t2_y4vd1;False;False;[];;Cute.;False;False;;;;1610553725;;False;{};gj4g8d4;False;t3_kwhpxz;False;False;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj4g8d4/;1610617550;6;True;False;anime;t5_2qh22;;0;[]; -[];;;reddadz;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MysticEyes/;light;text;t2_oek5m;False;True;[];;"Sorry, your submission has been removed. - -- Clips from shows should use the ""Clip"" flair, be between 10 seconds and 5 minutes long, and include the anime name in the title of the post. If the clip is from a recently aired episode, wait a **week** after the episode's discussion thread is posted before posting the clip. Additionally, we only allow each user to post two clips per month. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610554001;moderator;False;{};gj4gtc1;False;t3_kwi9p6;False;True;t3_kwi9p6;/r/anime/comments/kwi9p6/because_he_was_born_into_this_world/gj4gtc1/;1610617865;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Google-Meister;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SnakySenpai;light;text;t2_zm20o;False;False;[];;The story drops hard.;False;False;;;;1610554108;;False;{};gj4h1gw;False;t3_kwhejb;False;False;t1_gj4eeiy;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4h1gw/;1610617987;55;True;False;anime;t5_2qh22;;0;[]; -[];;;Rusted_muramasa;;;[];;;;text;t2_12r9iq;False;False;[];;At a certain point, the best part of a new chapter coming out every week was reading the discussion threads and seeing fellow fans writhing alongside you in agony.;False;False;;;;1610554388;;1610564516.0;{};gj4hn3p;False;t3_kwhejb;False;False;t1_gj4h1gw;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4hn3p/;1610618317;62;True;False;anime;t5_2qh22;;0;[]; -[];;;Lekaetos;;;[];;;;text;t2_13vf4c;False;False;[];;"Ouran high school host club (fun and romance) - -Zankyou no terror and GTO (not romance, not shounen, but a very good shows that deserve to be watched)";False;False;;;;1610554741;;False;{};gj4ievq;False;t3_kwhscm;False;True;t3_kwhscm;/r/anime/comments/kwhscm/any_anime_i_could_watch_with_my_gf/gj4ievq/;1610618749;3;True;False;anime;t5_2qh22;;0;[]; -[];;;corruptbytes;;;[];;;;text;t2_11i5mn;False;False;[];;PM'd;False;False;;;;1610555375;;False;{};gj4jsxc;False;t3_kwhejb;False;True;t1_gj4buoz;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4jsxc/;1610619526;2;True;False;anime;t5_2qh22;;0;[]; -[];;;moichispa;;;[];;;;text;t2_g7zxf;False;False;[];;"Akatsuki no Yona - -The original manga is released in Lala a shoujo magazine, it is a shoujo with pretty boys and a badass heroine but the story goes deep in fantasy shonen territory. As somebody who enjoys both (but more shonen, actually) I think it is a great recomendation.";False;False;;;;1610555744;;False;{};gj4klyu;False;t3_kwhscm;False;True;t3_kwhscm;/r/anime/comments/kwhscm/any_anime_i_could_watch_with_my_gf/gj4klyu/;1610619978;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ve_rushing;;;[];;;;text;t2_5neck4as;False;False;[];;"Unpopular opinion - I am a big fan of Hyouka but I don't like Chitanda at all. - -If someone is wondering Fuyumi Irisu aka The Empress is the best girl here.";False;True;;comment score below threshold;;1610555908;;False;{};gj4kzfq;False;t3_kwhpxz;False;True;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj4kzfq/;1610620187;-15;True;False;anime;t5_2qh22;;0;[]; -[];;;Wolfgod_Holo;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;Still waiting for Spice and Wolf Season 3;light;text;t2_xdcy6;False;False;[];;#THOSE GLORIOUS HYPNOTIC SHOUJO EYES;False;False;;;;1610556563;;False;{};gj4mfj5;False;t3_kwhpxz;False;False;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj4mfj5/;1610621000;98;True;False;anime;t5_2qh22;;0;[]; -[];;;winasta;;;[];;;;text;t2_pgljym5;False;False;[];;wait did season 3 adapt 100 chapters too?;False;False;;;;1610556627;;False;{};gj4mkkd;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4mkkd/;1610621080;1;True;False;anime;t5_2qh22;;0;[]; -[];;;squeakypop28;;;[];;;;text;t2_92aiocsn;False;False;[];;"There is a theory that the mangaka is intentionally writing terribly because he hates his fans and wants to annoy them. - -Thats how bad the writing is.";False;False;;;;1610556684;;False;{};gj4mp1s;False;t3_kwhejb;False;False;t1_gj4eeiy;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4mp1s/;1610621150;24;True;False;anime;t5_2qh22;;0;[]; -[];;;NeuroFuzzi;;;[];;;;text;t2_74dj970k;False;False;[];;While I agree it appears you’ve spelled Mayaka wrong;False;False;;;;1610556837;;False;{};gj4n1bo;False;t3_kwhpxz;False;False;t1_gj4kzfq;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj4n1bo/;1610621338;14;True;False;anime;t5_2qh22;;0;[]; -[];;;mrjol;;;[];;;;text;t2_yzaih;False;False;[];;Not this early. Maybe in the 2nd half but tbh there are some awesome revelations early on.;False;False;;;;1610556848;;False;{};gj4n28g;False;t3_kwhejb;False;False;t1_gj4eeiy;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4n28g/;1610621352;5;True;False;anime;t5_2qh22;;0;[]; -[];;;venitienne;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/venitienne;light;text;t2_1d3p12up;False;False;[];;Don't mind me, just here to see if the season is shit again or worth watching;False;False;;;;1610556985;;False;{};gj4nd7c;False;t3_kwhejb;False;False;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4nd7c/;1610621517;72;True;False;anime;t5_2qh22;;0;[]; -[];;;ve_rushing;;;[];;;;text;t2_5neck4as;False;False;[];;"> Mayaka - -Naaah, she is competition to The Empress only in the Poirot costume.";False;False;;;;1610557371;;False;{};gj4o8u9;False;t3_kwhpxz;False;False;t1_gj4n1bo;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj4o8u9/;1610622008;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rohansenpai2;;;[];;;;text;t2_8kzhleev;False;False;[];;Poor Ban the ending just hit home;False;False;;;;1610557784;;False;{};gj4p5qb;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4p5qb/;1610622530;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiro_Kai;;;[];;;;text;t2_bevm2wi;False;False;[];;[](#curious);False;False;;;;1610557932;;False;{};gj4phl1;False;t3_kwhpxz;False;False;t1_gj4mfj5;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj4phl1/;1610622717;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Sneaky_42;;;[];;;;text;t2_4spbyunp;False;False;[];;Well, at the very least, the art style looks better, to me at least lol. It looks more like the first 2 seasons. The animation though...I don't know. We'll have to see as the season progresses. I mean, it can't possibly get any worse, right? RIGHT!? Lol;False;False;;;;1610557970;;False;{};gj4pkms;False;t3_kwhejb;False;False;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4pkms/;1610622767;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Sneaky_42;;;[];;;;text;t2_4spbyunp;False;False;[];;Man. 2 hours in, and there are hardly any likes and comments for this episode. How sad. Lol. The previous season did some real damage to this series.;False;False;;;;1610558091;;False;{};gj4pufd;False;t3_kwhejb;False;False;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4pufd/;1610622922;117;True;False;anime;t5_2qh22;;0;[]; -[];;;Sneaky_42;;;[];;;;text;t2_4spbyunp;False;False;[];;Not sure what streaming services are actually airing this right now. Like others have said, you're gonna have to sail the high seas for this one.;False;False;;;;1610558209;;False;{};gj4q3tp;False;t3_kwhejb;False;True;t1_gj4bevc;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4q3tp/;1610623072;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Psych0path_IRL;;;[];;;;text;t2_3xuw0rx4;False;False;[];;The subs are shit for now, but I take those new songs;False;False;;;;1610558421;;False;{};gj4qkpp;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4qkpp/;1610623335;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Reemys;;;[];;;;text;t2_o0hwpg4;False;False;[];;I assume people get angry at the power of friendship and everyone making it out in the end? Because this is where the story is heading right now, from what I can surmise. Which is nothing to be ashamed of and it is understandable that the generic viewer is used to an action with a clearly defined bad and good guys... but then again, the quality of what is going on is highly volatile and I cannot just dismiss everyone for not fathoming the beauty of this narrative.;False;False;;;;1610558591;;False;{};gj4qy88;False;t3_kwhejb;False;True;t1_gj4eeiy;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4qy88/;1610623550;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Reemys;;;[];;;;text;t2_o0hwpg4;False;False;[];;"Yeah the production values have not undergone any reconsideration this season. A shame how the author allows this to happen, should have revoked his license to the studio and waited for a year or two for someone credible to pick his story up... - -...That said the opening as great as always. Watching it gives me those feelings for this series I had five years ago. Well, I am not mad. Just tired, and hopeful.";False;False;;;;1610558721;;False;{};gj4r8ut;False;t3_kwhejb;False;False;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4r8ut/;1610623717;8;True;False;anime;t5_2qh22;;0;[]; -[];;;kai_texans;;;[];;;;text;t2_3a1d9qzv;False;False;[];;"y'all should really give katanagatari a try - -&#x200B; - -[https://myanimelist.net/anime/6594/Katanagatari](https://myanimelist.net/anime/6594/Katanagatari)";False;False;;;;1610558821;;False;{};gj4rgul;False;t3_kwhscm;False;True;t3_kwhscm;/r/anime/comments/kwhscm/any_anime_i_could_watch_with_my_gf/gj4rgul/;1610623842;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SMRchdon075;;;[];;;;text;t2_76awkk6i;False;False;[];;Sometimes I see clips if an anime after I watch it or either when I am watching same thing happened with hyouka omg;False;False;;;;1610559480;;False;{};gj4sxr3;False;t3_kwhpxz;False;False;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj4sxr3/;1610624693;13;True;False;anime;t5_2qh22;;0;[]; -[];;;pcechos;;;[];;;;text;t2_73kw7;False;False;[];;"I mean, not to spoil it since it sounds like you haven't read the manga, but it's not so much that ""people get angry at the power of friendship and everyone making it out in the end"", but that the story absolutely falls apart near the end, there's asspull after asspull and it's just pretty unsatisfying overall, is the general consensus of the community I see, and how I saw the series going when I dropped the manga myself.";False;False;;;;1610559832;;False;{};gj4trp7;False;t3_kwhejb;False;False;t1_gj4qy88;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4trp7/;1610625182;15;True;False;anime;t5_2qh22;;0;[]; -[];;;LostDelver;;;[];;;;text;t2_1o8p0432;False;False;[];;"I have been meaning to follow the mangaka's other works but haven't had the time. - -Isn't the story that the mangaka actually had written other mangas that are actually objectively far better than 7DS, but he really struggled and most of them got axed? - -While 7DS somehow got so popular despite being one of his weaker works.";False;False;;;;1610560089;;False;{};gj4uczh;False;t3_kwhejb;False;False;t1_gj4mp1s;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4uczh/;1610625525;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Sleeviji;;;[];;;;text;t2_3irhnz6u;False;False;[];;Wait, you mean that the story wasn't already gotten really bad;False;False;;;;1610560705;;False;{};gj4vs4x;False;t3_kwhejb;False;False;t1_gj4h1gw;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4vs4x/;1610626361;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Google-Meister;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SnakySenpai;light;text;t2_zm20o;False;False;[];;What I meant is that it gets even WORSE.;False;False;;;;1610560735;;False;{};gj4vunt;False;t3_kwhejb;False;False;t1_gj4vs4x;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4vunt/;1610626406;29;True;False;anime;t5_2qh22;;0;[]; -[];;;Sleeviji;;;[];;;;text;t2_3irhnz6u;False;False;[];;Welp it's still bad. I just hope this is the final season so that i can forget that this anime exists.;False;False;;;;1610560859;;False;{};gj4w4w9;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4w4w9/;1610626578;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sleeviji;;;[];;;;text;t2_3irhnz6u;False;False;[];;Oh FFS;False;False;;;;1610560891;;False;{};gj4w7ff;False;t3_kwhejb;False;True;t1_gj4vunt;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4w7ff/;1610626620;4;True;False;anime;t5_2qh22;;0;[]; -[];;;realrimurutempest;;;[];;;;text;t2_4bauklbm;False;False;[];;Only watching this season for Escanor 🔥;False;False;;;;1610561013;;False;{};gj4wh92;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4wh92/;1610626781;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610562010;;False;{};gj4ypzn;False;t3_kwhejb;False;True;t1_gj4buoz;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4ypzn/;1610628211;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Sleeviji, your post has been removed because it links to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610562013;moderator;False;{};gj4yq6w;False;t3_kwhejb;False;False;t1_gj4ypzn;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4yq6w/;1610628215;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Sleeviji;;;[];;;;text;t2_3irhnz6u;False;False;[];;here you go [www.aniweeb.com](https://www.youtube.com/watch?v=DLzxrzFCyOs);False;False;;;;1610562085;;False;{};gj4yw6q;False;t3_kwhejb;False;True;t1_gj4buoz;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj4yw6q/;1610628328;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vilstheman;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Neiltheone;light;text;t2_5kuc5bng;False;False;[];;Happiness restored;False;False;;;;1610562500;;False;{};gj4zugr;False;t3_kwhpxz;False;False;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj4zugr/;1610628946;17;True;False;anime;t5_2qh22;;0;[]; -[];;;brenisagod;;;[];;;;text;t2_15dyfx;False;False;[];;can anyone dm me where theyre watching this?;False;False;;;;1610562955;;False;{};gj50v74;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj50v74/;1610629609;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;So for people that watched this. Is it still an abomination like last season or did it improve?;False;False;;;;1610563783;;False;{};gj52r25;False;t3_kwhejb;False;False;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj52r25/;1610630834;1;True;False;anime;t5_2qh22;;0;[]; -[];;;exozaln;;;[];;;;text;t2_x135v;False;False;[];;"What a disaster - -I'll preface this by saying that this IS better than probably every single episode from the last batch - - -But this is not what it deserved, the music choice is odd, the animation is visually more polished but in most cuts it looks like if I had made it, amateurish, without weight and the simplest it can be to save time. - -Lots of stills. - -The opening had errors that noob animators wouldn't have committed. - -The floor moved faster than Ban's feet at one point and it looks so fake... - -It had some good movement scenes, the last part of the opening being one of these. - -The fucking manga had more movement and emotion on the Ban and Meliodas scene, no emotional ost with a close up on Meliodas crying, nothing, just a far away still shot and end the episode there.";False;False;;;;1610563797;;False;{};gj52s87;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj52s87/;1610630855;1;True;False;anime;t5_2qh22;;0;[]; -[];;;exozaln;;;[];;;;text;t2_x135v;False;False;[];;The ending is good though;False;False;;;;1610563837;;False;{};gj52vug;False;t3_kwhejb;False;True;t1_gj52s87;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj52vug/;1610630929;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Prettywaffleman;;;[];;;;text;t2_3msnawl9;False;False;[];;Is this anime not popular? It has so few likes and comments compared to other threads;False;False;;;;1610563938;;False;{};gj533vs;False;t3_kwhejb;False;False;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj533vs/;1610631081;4;True;False;anime;t5_2qh22;;0;[]; -[];;;exozaln;;;[];;;;text;t2_x135v;False;False;[];;"Yes - - - -Improved but still an abomination - - -Edit: is not an abomination, it's okay, definitely watchable, but don't expect great animation if that's what you care about.";False;False;;;;1610563943;;False;{};gj534dm;False;t3_kwhejb;False;False;t1_gj52r25;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj534dm/;1610631092;4;True;False;anime;t5_2qh22;;0;[]; -[];;;KarmaOAkabane;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;anilist.co/user/KarmaOAkabane;light;text;t2_8ajupisc;False;False;[];;yeah, i thought 7DS was widly known or something like that but there was literally no comment 1 and a half hour after it got released, i mean this episode was good ngl;False;False;;;;1610563954;;False;{};gj535bg;False;t3_kwhejb;False;False;t1_gj4pufd;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj535bg/;1610631111;7;True;False;anime;t5_2qh22;;0;[]; -[];;;J-osh;;;[];;;;text;t2_oiokp;False;False;[];;"> The Seven Deadly Sins: Dragon's Judgement - -Idk where to even watch it lol";False;False;;;;1610564011;;False;{};gj539ms;False;t3_kwhejb;False;False;t1_gj4pufd;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj539ms/;1610631197;8;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;7DS anime lost any popularity after last season. ( and last season covered pretty much the best parts of the manga, from here the story gets worse and worse );False;False;;;;1610564074;;False;{};gj53esj;False;t3_kwhejb;False;False;t1_gj535bg;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj53esj/;1610631306;40;True;False;anime;t5_2qh22;;0;[]; -[];;;Bisquelo;;;[];;;;text;t2_9sjvjp4d;False;False;[];;It was popular enough but then last season animation was bad so almost everyone dropped it and most likely aren't going to pick this one up;False;False;;;;1610564174;;False;{};gj53n4q;False;t3_kwhejb;False;False;t1_gj533vs;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj53n4q/;1610631498;16;True;False;anime;t5_2qh22;;0;[]; -[];;;BasroilII;;;[];;;;text;t2_2yjoujdz;False;False;[];;ngl, I did not even realize there was going to BE more 7DS. I thought last season was the end for the franchise one way or another.;False;False;;;;1610564492;;False;{};gj54da2;False;t3_kwhejb;False;False;t1_gj4pufd;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj54da2/;1610632004;14;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610564543;;False;{};gj54hh2;False;t3_kwhejb;False;True;t1_gj539ms;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj54hh2/;1610632077;5;True;False;anime;t5_2qh22;;0;[]; -[];;;-delightfull-;;;[];;;;text;t2_qsplzwj;False;False;[];;Future comments are going to be awesome, can't wait;False;False;;;;1610564559;;False;{};gj54it8;False;t3_kwhejb;False;True;t1_gj4w7ff;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj54it8/;1610632102;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Reemys;;;[];;;;text;t2_o0hwpg4;False;False;[];;"Yes it is also possible that taking such approach as to resolve the conflicts the ""friendly"" way it will require quite some stretching. I will see what they have prepared, and in case it is absolutely unjustifiable I will be most sad.";False;False;;;;1610565076;;False;{};gj55ohf;False;t3_kwhejb;False;True;t1_gj4trp7;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj55ohf/;1610632879;2;True;False;anime;t5_2qh22;;0;[]; -[];;;biggamer7433;;;[];;;;text;t2_752tb0q;False;False;[];;"The animation improved at least a little bit from last season. I still wouldn't call it good, but it's watchable. - -At least the ED song was pretty good";False;False;;;;1610565641;;False;{};gj56yrn;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj56yrn/;1610633761;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sqwary;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Reble;light;text;t2_c2yneku;False;False;[];;u/savevideo;False;False;;;;1610565727;;False;{};gj575t4;False;t3_kwhpxz;False;True;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj575t4/;1610633898;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thunderlord281;;;[];;;;text;t2_132hq5;False;False;[];;Damn the previous season did some real damage to the series huh. Even though this first episode had decent animation and was watchable overall it's gonna be hard to bring back the fans. But imo this series has enough following worldwide to pull through even if it doesn't seem to gather much attention here. Have to say that the opening and ending songs are bangers also some good action in the opening. Overall decent episode hope they improve the quality or atleast stay somewhat consistent cause the manga goes kinda downhill and is mostly kinda mid after the season 3 arc.;False;False;;;;1610566169;;False;{};gj586fs;False;t3_kwhejb;False;False;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj586fs/;1610634618;15;True;False;anime;t5_2qh22;;0;[]; -[];;;MCIsTeFirtGamEvrMade;;;[];;;;text;t2_28mmoph;False;False;[];;The Seven Deadly Frames per minute;False;False;;;;1610566604;;False;{};gj596ai;False;t3_kwhejb;False;False;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj596ai/;1610635325;32;True;False;anime;t5_2qh22;;0;[]; -[];;;papakahn94;;;[];;;;text;t2_xrqu7;False;False;[];;I mean it wasnt terrible;False;False;;;;1610566939;;False;{};gj59x6v;False;t3_kwhejb;False;False;t1_gj4vs4x;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj59x6v/;1610635857;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Morbid_Fatwad;;;[];;;dark;text;t2_ol3rd;False;False;[];;It's bad enough that the series has to compete with all the other good shows this season. I am already watching 4 different isekais, AoT, Dr. Stone, Beastars, JJK, Wonder Egg, Non non biyori, Horimiya, The Promised Neverland, and Yuru camp. That's 13 shows. I could hardly bring myself to finish last season of 7DS. Investing time in this series has become a very unenticing prospect for me now.;False;False;;;;1610566946;;1610567194.0;{};gj59xpy;False;t3_kwhejb;False;False;t1_gj4pufd;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj59xpy/;1610635867;27;True;False;anime;t5_2qh22;;0;[]; -[];;;spoonsandswords;;MAL;[];;https://myanimelist.net/animelist/Skroy;dark;text;t2_3lb2w;False;False;[];;[Good old Baader–Meinhof phenomenon](https://en.wikipedia.org/wiki/Frequency_illusion);False;False;;;;1610567215;;False;{};gj5ajat;False;t3_kwhpxz;False;False;t1_gj4sxr3;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj5ajat/;1610636298;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Mad-Oka;;;[];;;;text;t2_pujlmis;False;False;[];;I think fans would've forgave the studio if they did Mel vs Escanor justice. But they somehow made it worse than some episodes of that season.;False;False;;;;1610567431;;False;{};gj5b0z8;False;t3_kwhejb;False;False;t1_gj4pufd;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5b0z8/;1610636665;69;True;False;anime;t5_2qh22;;0;[];True -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610567879;;False;{};gj5c24z;False;t3_kwhejb;False;True;t1_gj54hh2;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5c24z/;1610637400;1;True;False;anime;t5_2qh22;;0;[]; -[];;;leave1me1alone;;;[];;;;text;t2_74bvy75;False;False;[];;Given the current covid situation dubs are less than likely at the moment unless its a big show (even aot is 3 weeks delayed). You can wait but I'm not sure how long it'll take. I'm waiting for the log horizon dub.;False;False;;;;1610568010;;False;{};gj5ccyj;False;t3_kwidz9;False;True;t3_kwidz9;/r/anime/comments/kwidz9/wonder_egg_priority_when_will_the_dub_come_out/gj5ccyj/;1610637604;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610568037;;False;{};gj5cf6u;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5cf6u/;1610637645;1;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;If it ever gets a dub, it won't be for a few months at least. Better off to just dive into the sub.;False;False;;;;1610568759;;False;{};gj5e0m2;False;t3_kwidz9;False;True;t3_kwidz9;/r/anime/comments/kwidz9/wonder_egg_priority_when_will_the_dub_come_out/gj5e0m2/;1610638766;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sneaky_42;;;[];;;;text;t2_4spbyunp;False;False;[];;Yeah. It would be nice though, at the very least, if they could go back and just redo that fight. That would make me happy lol.;False;False;;;;1610568966;;False;{};gj5eh93;False;t3_kwhejb;False;False;t1_gj5b0z8;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5eh93/;1610639088;13;True;False;anime;t5_2qh22;;0;[]; -[];;;TheWrittenLore;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Traynjos000;light;text;t2_ouc2a;False;False;[];;It is in Netflix jail.;False;False;;;;1610569116;;False;{};gj5esy2;False;t3_kwhejb;False;True;t1_gj4bevc;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5esy2/;1610639315;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610569222;;False;{};gj5f1ii;False;t3_kwhpxz;False;False;t1_gj482pi;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj5f1ii/;1610639478;14;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610569482;;False;{};gj5fmtj;False;t3_kwhpxz;False;True;t1_gj4mfj5;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj5fmtj/;1610639898;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ljh_;;;[];;;;text;t2_vo6evkl;False;False;[];;Crazy how 1 bad season can complete ruin all hype for an anime;False;False;;;;1610569582;;False;{};gj5furk;False;t3_kwhejb;False;False;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5furk/;1610640062;21;True;False;anime;t5_2qh22;;0;[]; -[];;;rya11111;;MAL;[];;http://myanimelist.net/animelist/rya11111;dark;text;t2_40uf6;False;False;[];;goddamnit when is season 2;False;False;;;;1610569897;;False;{};gj5gjmf;False;t3_kwhpxz;False;False;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj5gjmf/;1610640548;37;True;False;anime;t5_2qh22;;0;[]; -[];;;diexu;;;[];;;;text;t2_uries;False;False;[];;i dont care if people hate the anime and manga im going to watch it until the end;False;False;;;;1610569923;;False;{};gj5glru;False;t3_kwhejb;False;False;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5glru/;1610640589;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Arshaad814;;;[];;;;text;t2_1g89i5sh;False;False;[];;"It is so sad to see that after 6 hours there is so little interaction.. - -THE OPENING AND THE ENDING IS A BANGER💯";False;False;;;;1610570507;;False;{};gj5hwy9;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5hwy9/;1610641505;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610570812;;False;{};gj5ill3;False;t3_kwhejb;False;True;t1_gj5c24z;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5ill3/;1610642001;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tehy99;;;[];;;;text;t2_tesmo;False;False;[];;I don't think it's related to friendship at all per se, it just went bad...I myself quit reading, no idea if it improved or got worse but my experience wasn't great.;False;False;;;;1610570910;;False;{};gj5ith9;False;t3_kwhejb;False;True;t1_gj55ohf;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5ith9/;1610642156;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Eazydoesit88;;;[];;;;text;t2_507pyn1j;False;False;[];;I tried to watch latest season released and god it was a fucking mess.;False;False;;;;1610571315;;False;{};gj5jqa2;False;t3_kwhejb;False;False;t1_gj4pufd;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5jqa2/;1610642819;3;True;False;anime;t5_2qh22;;0;[]; -[];;;thesanmich;;;[];;;;text;t2_de43k;False;False;[];;Just checking in to see if the animation is trash tier like last season's.;False;False;;;;1610571790;;False;{};gj5ks9z;False;t3_kwhejb;False;False;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5ks9z/;1610643529;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Belmut_613;;;[];;;;text;t2_18ua7y;False;False;[];;"No it never improved and the only reason to read it were the chapters post and Escanor's chapters. -Also where did you stop?";False;False;;;;1610572384;;False;{};gj5m4ae;False;t3_kwhejb;False;True;t1_gj5ith9;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5m4ae/;1610644445;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Belmut_613;;;[];;;;text;t2_18ua7y;False;False;[];;One of the two reasons to read the manga, the other was the chapter post.;False;False;;;;1610572570;;False;{};gj5mjwp;False;t3_kwhejb;False;True;t1_gj4wh92;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5mjwp/;1610644761;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;"I love that Ban instantly got a haircut and a shave [after being burned by that dino.](https://i.imgur.com/Zsu5UNV.png) Also I forgot but how fast is time moving in hell to consider that Ban has been fighting the dino for years? [I do love that the became friends.](https://i.imgur.com/mUnDKt2.png) That was adorable. [Also is that really Meliodas or is Ban just dreaming?](https://i.imgur.com/NtU8eSt.png) - -Anyway so far so good! Looks like at least they gave the first episode plenty of love since it looks better than the last 3 episodes of the previous Season put together. I just hope it stays that way. Although I am scared that everything is going to melt again like last season >_<";False;False;;;;1610572866;;False;{};gj5n8xa;False;t3_kwhejb;False;False;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5n8xa/;1610645252;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Sneaky_42;;;[];;;;text;t2_4spbyunp;False;False;[];;Yeah, it was pretty bad. Lol;False;False;;;;1610572987;;False;{};gj5nj1k;False;t3_kwhejb;False;True;t1_gj5jqa2;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5nj1k/;1610645447;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Toonamigamerrr;;;[];;;;text;t2_ssw2vcw;False;False;[];;Ban Melodies reunion moment 😭😭;False;False;;;;1610572990;;False;{};gj5njbg;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5njbg/;1610645454;1;True;False;anime;t5_2qh22;;0;[]; -[];;;skurttengil;;;[];;;;text;t2_ujxei;False;False;[];;"The pain of being a completionist and seing yet another god damn season of this garbage show, and its 24 episodes aswell. - -My only hope is that Meliodas dies in this season, then it might be worth suffering though all those episodes alongside the worst MC imaginable.";False;False;;;;1610573804;;False;{};gj5pg8k;False;t3_kwhejb;False;False;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5pg8k/;1610646810;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wVultuRe;;;[];;;;text;t2_9a6xvdy;False;False;[];;I'm thirsty for a second season;False;False;;;;1610574024;;False;{};gj5pyo7;False;t3_kwhpxz;False;False;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj5pyo7/;1610647192;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Bruhmanch;;;[];;;;text;t2_8xkriy11;False;False;[];;At least the ED is a bop :C;False;False;;;;1610574550;;False;{};gj5r757;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5r757/;1610648130;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tehy99;;;[];;;;text;t2_tesmo;False;False;[];;Don't quite remember but maybe around chapter 322? Honestly, I don't feel like putting in the effort to figure out (or to mention what events occurred without spoiling anyone lol);False;False;;;;1610575122;;False;{};gj5sikz;False;t3_kwhejb;False;False;t1_gj5m4ae;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5sikz/;1610649097;1;True;False;anime;t5_2qh22;;0;[]; -[];;;killakoalaloaf;;;[];;;;text;t2_12fnvnft;False;False;[];;Youtube;False;False;;;;1610575172;;False;{};gj5smr0;False;t3_kwhejb;False;True;t1_gj4bevc;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5smr0/;1610649186;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shortofbetternames;;;[];;;;text;t2_wqkys;False;False;[];;"I mean I'll be honest, it wasnt a good episode, much like some fights last season. When you check season 1 and 2 u had some decent fights, and this episode we had merlin + escanor + ludociel vs -zeldris + cusack + chandler and it was WORSE than meliodas vs some random holy knights in season 1. No fight choreography, no impact on attacks, just some random explosions, powers thrown around and that pitiful sword clash between zel and ludo. Its honestly pathetic how good fights were in s1 and s2 and how they're being handled now";False;False;;;;1610575565;;False;{};gj5tir8;False;t3_kwhejb;False;False;t1_gj535bg;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5tir8/;1610649816;10;True;False;anime;t5_2qh22;;0;[]; -[];;;larryjerry1;;;[];;;;text;t2_e9y0x;False;False;[];;"*raises hand* - -I just read the manga and stopped with the anime. It was just so bad. - -I'm only in here to see how people are feeling and if this season is starting any better.";False;False;;;;1610576557;;False;{};gj5vq53;False;t3_kwhejb;False;False;t1_gj53n4q;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5vq53/;1610651335;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610577161;;False;{};gj5x1of;False;t3_kwhejb;False;True;t1_gj5ill3;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5x1of/;1610652250;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hamster-and-cheese;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_50rbub1q;False;False;[];;Someone pm me the website they using please;False;False;;;;1610577421;;False;{};gj5xly3;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5xly3/;1610652641;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AsnSensation;;;[];;;;text;t2_8i23w;False;False;[];;Season 1 was goated and had one of the best soundtracks ever but everything after was a trainwreck.;False;False;;;;1610577865;;False;{};gj5ykjj;False;t3_kwhejb;False;False;t1_gj4pufd;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5ykjj/;1610653320;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ducati1011;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/johnjcg10;light;text;t2_985ib;False;False;[];;I don’t even know where to watch this.....;False;False;;;;1610577939;;False;{};gj5yqc3;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj5yqc3/;1610653435;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SamSawada;;;[];;;;text;t2_2q4xeqv;False;False;[];;Wtf am I the only one hyped for this season? I actually really loved the whole manga I think this part of the story was my favorite actually lol the animation wasn’t great last season but I still loved the story and how every character has something to add to them.;False;False;;;;1610579066;;False;{};gj6140o;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj6140o/;1610655159;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hiraya_Manawari;;MAL;[];;http://myanimelist.net/animelist/sixfourone;dark;text;t2_tajci;False;False;[];;I've been waiting for 8 years hahaha :'(;False;False;;;;1610579592;;False;{};gj626y5;False;t3_kwhpxz;False;False;t1_gj5pyo7;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj626y5/;1610655923;15;True;False;anime;t5_2qh22;;0;[]; -[];;;XVthKing;;;[];;;;text;t2_8vbiq50;False;False;[];;so did season 4 get off to a good start is it worth my time any weird animations?;False;False;;;;1610580725;;False;{};gj64ipb;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj64ipb/;1610657608;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreathbeast;;;[];;;;text;t2_2asptq4t;False;False;[];;That's an understatement. It takes a nosedive off a cliff.;False;False;;;;1610580955;;False;{};gj64zeo;False;t3_kwhejb;False;True;t1_gj4h1gw;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj64zeo/;1610657934;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Batmanhasgame;;ANI;[];;http://anilist.co/animelist/8203/ImBatman;dark;text;t2_7s1kj;False;False;[];;This was for sure better than last season but it could just the the ole first episode trick them then goes back to shit but we will have to see;False;False;;;;1610581254;;False;{};gj65l7c;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj65l7c/;1610658331;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yiendubuu;;;[];;;;text;t2_7ancze9l;False;False;[];;"I think it has certainly lost its charm now. It lost its animation and art charm after S2 and now it's gonna lose its story charm(manga reader here). The episode was.. fine. It went painfully slow but for a first episode I'm willing to forgive that. That Ban fight? What the fuck was that. I just hope they can improve for the fights later in the season. Honestly I'm just watching it to, I don't know, pay respects to a show I like and say goodbye to it? If I wasn't a fan already and I saw all these reviews and comments I definitely wouldn't pick it up, or would stop watching after S2. Oh and also King and Zeldrs. I'm willing to go through this season's terrible animation and mediocre story just for them. OP and ED go hard tho! - -Edit: Just went to rewatch a few episodes from S1 and S2 and man I'm so pissed. So much potential, and yet got wasted by horrible animation and a story that got dragged on for just a bit too long. At this point I'm gonna start pretending that anything after S2 and the movie simply does not exist.";False;False;;;;1610581282;;1610581807.0;{};gj65nat;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj65nat/;1610658370;1;True;False;anime;t5_2qh22;;0;[]; -[];;;someguynotnamedsmith;;;[];;;;text;t2_7iwjp39k;False;False;[];;Later oreki saw the photos;False;False;;;;1610581445;;False;{};gj65z71;False;t3_kwhpxz;False;False;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj65z71/;1610658593;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Thots_Destroyer;;;[];;;;text;t2_4vbmcymc;False;False;[];;DAMN YOUUUUU;False;False;;;;1610582628;;False;{};gj68bx2;False;t3_kwhejb;False;False;t1_gj4yw6q;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj68bx2/;1610660209;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lukeuntld072;;;[];;;;text;t2_y8pgd;False;False;[];;"It wasnt the best season but i enjoyed it alot still. -We got alot of info on the gods and the past of the seven deadly sins wich was cool and interesting.(or atleast i tought it was interesting) - -We need some better fight scenes like in season 1 and 2. - -This show seems to get alot of hate but imo its still better than alot of other shows in the top 20. -And i love the unique world and characters";False;False;;;;1610583099;;False;{};gj699ei;False;t3_kwhejb;False;True;t1_gj4pufd;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj699ei/;1610660872;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sworp123;;;[];;;;text;t2_70kjkn0w;False;False;[];;still looks like shit ngl;False;False;;;;1610583168;;False;{};gj69eb8;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj69eb8/;1610660970;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wqnm;;MAL;[];;http://myanimelist.net/animelist/standish84;dark;text;t2_awol1;False;False;[];;"[Song in the background in the beginning of the clip.](https://www.youtube.com/watch?v=O7j7AVTf2kE) - - -[And the original they're covering.](https://www.youtube.com/watch?v=C35DrtPlUbc) (Fun fact, back in 1963 this was the first, and one of only 2 ever, Asian songs to top the US charts)";False;False;;;;1610583463;;False;{};gj69zgj;False;t3_kwhpxz;False;False;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj69zgj/;1610661398;8;True;False;anime;t5_2qh22;;0;[]; -[];;;lukeuntld072;;;[];;;;text;t2_y8pgd;False;False;[];;Imo its still better than the generic ass isekais and other power fantasies i enjoy lol;False;False;;;;1610583500;;False;{};gj6a27t;False;t3_kwhejb;False;False;t1_gj59x6v;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj6a27t/;1610661456;6;True;False;anime;t5_2qh22;;0;[]; -[];;;lukeuntld072;;;[];;;;text;t2_y8pgd;False;False;[];;Its still better than some generic ass isekais or other power fantasies i enjoy;False;False;;;;1610583821;;False;{};gj6ap42;False;t3_kwhejb;False;True;t1_gj52s87;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj6ap42/;1610661888;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lukeuntld072;;;[];;;;text;t2_y8pgd;False;False;[];;Same i enjoy it. but then again i enjoy it for the characters, world and story not so much for the animation. (Wich looked fine imo some fights must be more interesting i agree with that atleast) but its not as bad as people make it out to be;False;False;;;;1610583929;;False;{};gj6awwf;False;t3_kwhejb;False;False;t1_gj5glru;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj6awwf/;1610662033;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Star_Lux22;;;[];;;;text;t2_22d262q9;False;False;[];;That’s kind of a stupid theory though tbh;False;False;;;;1610583993;;False;{};gj6b1g1;False;t3_kwhejb;False;False;t1_gj4mp1s;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj6b1g1/;1610662116;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Anon199760;;;[];;;;text;t2_49baaa9v;False;False;[];;They really should've just stopped after season 1. S1's animation compared to now is godly af.;False;False;;;;1610584496;;False;{};gj6c19x;False;t3_kwhejb;False;True;t1_gj586fs;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj6c19x/;1610662791;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BigDicksconnoisseur2;;;[];;;;text;t2_1p1xa7ya;False;False;[];;7 deadly sins threads were always like this bc since s2 there's no where to watch it legally, the show is massive af everywhere else though;False;False;;;;1610584911;;False;{};gj6cufv;False;t3_kwhejb;False;False;t1_gj4pufd;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj6cufv/;1610663357;9;True;False;anime;t5_2qh22;;0;[]; -[];;;EmSoLow;;;[];;;;text;t2_3erhzbb0;False;False;[];;"Something about how she constantly said ""I'm CuRiOuS"" annoyed the hell out of me during the show. It's strange because I rarely get frustrated with characters but that phrase made me despise her throughout Hyouka";False;False;;;;1610585539;;False;{};gj6e32b;False;t3_kwhpxz;False;True;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj6e32b/;1610664220;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nanashi-74;;;[];;;;text;t2_5x0k2vam;False;False;[];;I heard Escanor gets his big moment and I'm watching just for that;False;False;;;;1610585972;;False;{};gj6exle;False;t3_kwhejb;False;True;t1_gj4trp7;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj6exle/;1610664795;1;True;False;anime;t5_2qh22;;0;[]; -[];;;emilio2710;;;[];;;;text;t2_4sgdoh0z;False;False;[];;True. During season 1 and 2 this series was almost MHA level of popularity. Now even black clover is more talked about lol;False;False;;;;1610586091;;False;{};gj6f5xv;False;t3_kwhejb;False;False;t1_gj5furk;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj6f5xv/;1610664965;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Nanashi-74;;;[];;;;text;t2_5x0k2vam;False;False;[];;It's 24 episodes???? Fuck me dude, I can't believe I'll have to watch this for 6 months. I hope the moment I'm waiting for comes and it's satisfying. This is the last season right?;False;False;;;;1610586102;;False;{};gj6f6oh;False;t3_kwhejb;False;True;t1_gj5pg8k;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj6f6oh/;1610664978;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CGDCT_Enthusiast;;;[];;;;text;t2_4ji6ncqo;False;False;[];;"The animation is still pretty horrid with it being more of a slideshow than actual solid animation. Kinda reminds me of how shokugeki in its later seasons got shafted. - -However at the very least the character models stayed within acceptable levels this episode. So I'm somewhat positively surprised. I have accepted we won't get s1 levels of work back, but as long as it doesn't sink to the previous season levels, I'm up for more.";False;False;;;;1610586766;;False;{};gj6gg6o;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj6gg6o/;1610665841;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sneaky_42;;;[];;;;text;t2_4spbyunp;False;False;[];;Oh. I didn't know that. So for S3, people had to wait till it was finished and for it to show up on Netflix in order to watch it legally?;False;False;;;;1610586780;;False;{};gj6gh4s;False;t3_kwhejb;False;True;t1_gj6cufv;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj6gh4s/;1610665857;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BigDicksconnoisseur2;;;[];;;;text;t2_1p1xa7ya;False;False;[];;Yep, Nanatsu no Taizai weekly discussion is pretty much dead ever since Netflix got it, the anime is still massive as shit though, even after the shitshow that was s3.;False;False;;;;1610589005;;False;{};gj6ksio;False;t3_kwhejb;False;False;t1_gj6gh4s;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj6ksio/;1610668663;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Sneaky_42;;;[];;;;text;t2_4spbyunp;False;False;[];;Ah, I see.;False;False;;;;1610590084;;False;{};gj6mvit;False;t3_kwhejb;False;True;t1_gj6ksio;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj6mvit/;1610669954;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hiddentheory;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/hiddentheory;light;text;t2_h1i22;False;False;[];;God, she's adorable.;False;False;;;;1610593800;;False;{};gj6tu3u;False;t3_kwhpxz;False;False;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj6tu3u/;1610674224;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Sorry, your comment has been removed. - -- Direction toward specific sources of pirated content of any type is not allowed. This includes links to unofficial scanlations, streams, uploads, and download sources of any copyrighted content. It also includes direction towards specific sites offering this type of content, and watermarks mentioning such sites in uploaded images/videos. - - Discussion of piracy in general is allowed, **but naming, linking to, or hinting towards specific sources is not. Offering to send links via PM is also not allowed.** For more details, see our [full rules on illegal content](https://www.reddit.com/r/anime/wiki/rules#wiki_do_not_link_to_illegal_content). - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610594687;moderator;False;{};gj6vfp8;False;t3_kwhejb;False;True;t1_gj54hh2;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj6vfp8/;1610675208;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Piratejack28;;;[];;;;text;t2_5l412p92;False;False;[];;I thought that was a sniper scope for a sec;False;False;;;;1610594771;;False;{};gj6vl5b;False;t3_kwhpxz;False;True;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj6vl5b/;1610675299;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ngedown;;;[];;;;text;t2_12f3kt;False;False;[];;She's too pure;False;False;;;;1610595742;;False;{};gj6xbo9;False;t3_kwhpxz;False;False;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj6xbo9/;1610676404;5;True;False;anime;t5_2qh22;;0;[]; -[];;;luigi6545;;;[];;;;text;t2_10r7pt;False;False;[];;"> Also I forgot but how fast is time moving in hell to consider that Ban has been fighting the dino for years? - -I think it's like every second/minute in the real world is a year in purgatory. IDR which one, though.";False;False;;;;1610596278;;False;{};gj6y9m8;False;t3_kwhejb;False;True;t1_gj5n8xa;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj6y9m8/;1610677002;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDarkNerd10;;;[];;;;text;t2_4dpeb5kz;False;False;[];;I'LL TAKE YOUR ENTIRE STOCK;False;False;;;;1610598426;;False;{};gj71ypo;False;t3_kwhpxz;False;True;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj71ypo/;1610679440;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AJDx14;;;[];;;;text;t2_134qvbr;False;False;[];;Not really worse, it just lasts way too long and gets boring.;False;False;;;;1610600711;;False;{};gj75mee;False;t3_kwhejb;False;True;t1_gj53esj;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj75mee/;1610681804;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SkullcrobatTheGod;;;[];;;;text;t2_291o75q;False;False;[];;The full Food Wars experience;False;False;;;;1610601091;;False;{};gj767c8;False;t3_kwhejb;False;False;t1_gj4hn3p;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj767c8/;1610682164;7;True;False;anime;t5_2qh22;;0;[]; -[];;;diivandi;;;[];;;;text;t2_4e0vvsnc;False;False;[];;So by looking at comments, I guess I should just skip and pretend this does not exist;False;False;;;;1610601112;;False;{};gj768ir;False;t3_kwhejb;False;False;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj768ir/;1610682186;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Darkjolly;;;[];;;;text;t2_kzxms;False;False;[];;"Well, judging by this episode, the animation seems to be an improvement, which is not hard seeing how terrible last seasons was, lets see how it lasts. - -&#x200B; - -As for the story, I read the manga through and can barely remember what happened, so yeah, not very memorable.";False;False;;;;1610602604;;1610603574.0;{};gj78g7z;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj78g7z/;1610683671;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;[Embrace the curiosity.](https://www.reddit.com/r/anime/comments/k2w9m6/i_am_curious_hyouka_ep_6/);False;False;;;;1610602723;;False;{};gj78md4;False;t3_kwhpxz;False;False;t1_gj6e32b;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj78md4/;1610683779;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;er, she looks extra cute all the time.;False;False;;;;1610602878;;False;{};gj78u9h;False;t3_kwhpxz;False;False;t1_gj482pi;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj78u9h/;1610683920;23;True;False;anime;t5_2qh22;;0;[]; -[];;;BlueZ00;;;[];;;;text;t2_92i6a9e;False;False;[];;So worse?;False;False;;;;1610602939;;False;{};gj78xhs;False;t3_kwhejb;False;True;t1_gj75mee;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj78xhs/;1610683973;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AJDx14;;;[];;;;text;t2_134qvbr;False;False;[];;It’s not the story though, just the fights. Story is fine.;False;False;;;;1610603184;;False;{};gj799k4;False;t3_kwhejb;False;False;t1_gj78xhs;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj799k4/;1610684176;0;True;False;anime;t5_2qh22;;0;[]; -[];;;aigami_diva;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_6ajkpdig;False;False;[];;watashi kininarimasu;False;False;;;;1610604818;;False;{};gj7bga7;False;t3_kwhpxz;False;True;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj7bga7/;1610685502;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610605761;;False;{};gj7cnjq;False;t3_kwhejb;False;True;t1_gj539ms;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj7cnjq/;1610686227;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi BabaJiTheOne, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610605761;moderator;False;{};gj7cnku;False;t3_kwhejb;False;True;t1_gj7cnjq;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj7cnku/;1610686227;1;False;False;anime;t5_2qh22;;0;[]; -[];;;HattoriSaizoII;;;[];;;;text;t2_72680hhu;False;False;[];;The timing is also bad. This current season is just too loaded.;False;False;;;;1610605941;;False;{};gj7cvjo;False;t3_kwhejb;False;True;t1_gj4pufd;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj7cvjo/;1610686363;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wonfella;;;[];;;;text;t2_132lfv;False;False;[];;Exactly what I was thinking, the characters and world are really interesting in my opinion. This could have really turned into something crazy like FMAB if a great studio picked it up and did an anime original ending.;False;False;;;;1610606601;;False;{};gj7dobt;False;t3_kwhejb;False;False;t1_gj6awwf;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj7dobt/;1610686856;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;Well Rem doesn't love anyone else and neither does Emilia so that might not become relevant in the first place.;False;False;;;;1610606951;;False;{};gj7e3ce;False;t3_kwisv4;False;True;t1_gj5ojfp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7e3ce/;1610687110;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Adymir;;;[];;;;text;t2_18v7w43g;False;False;[];;"My bad I missed it, I rewatched it again and he did say that at the beginning. I just wished that he pressed on that perspective more, because the next 5 minutes after that where they both get heated is where he presses the same rant about I do this because Love. But the thought is there, thanks for pointing it out. - -Then again it isn't my story to tell, just making some criticisms. Thanks for indulging me.";False;False;;;;1610607084;;False;{};gj7e905;False;t3_kwisv4;False;True;t1_gj7cpdj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7e905/;1610687209;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shortstop88;;;[];;;;text;t2_b6ar6;False;False;[];;Kazuma got to take a bath with two of his party members on separate occasions and didn't have to die even half a dozen times before it happened. He has it easy.;False;False;;;;1610607095;;False;{};gj7e9h0;False;t3_kwisv4;False;True;t1_gj4h364;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7e9h0/;1610687216;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ErenIsNotADevil;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Reiner’s BFF;light;text;t2_9rlvlb8w;False;False;[];;Subaru is Otto’s feeling that helps him move forward;False;False;;;;1610607123;;False;{};gj7eakt;False;t3_kwisv4;False;True;t1_gj4k7cr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7eakt/;1610687234;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Shortstop88;;;[];;;;text;t2_b6ar6;False;False;[];;"I KNOW! - -#WE FINALLY GOT OTTO'S BACKSTORY";False;False;;;;1610607214;;False;{};gj7eeci;False;t3_kwisv4;False;False;t1_gj4f2yx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7eeci/;1610687299;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Awesalot;;;[];;;;text;t2_gvujz;False;False;[];;"Re:Zero and not having the OP or ED in the episode, name a more iconic duo. - -I'm glad we got some of the old music though, jumped out of my seat when I heard that playing. - -When they started his backstory, I was wondering why Otto didn't ask the bugs to help when he was captured by Betelgeuse. Glad they shed some light on that part as well.";False;False;;;;1610607221;;False;{};gj7eeo7;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7eeo7/;1610687304;2;True;False;anime;t5_2qh22;;0;[]; -[];;;oj-warlock;;;[];;;;text;t2_7xwh28j4;False;False;[];;I remember that episode in which oreki turns on simply by imaging chitanda naked in the hot spring .;False;False;;;;1610607225;;False;{};gj7eetx;False;t3_kwhpxz;False;True;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj7eetx/;1610687306;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ErenIsNotADevil;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Reiner’s BFF;light;text;t2_9rlvlb8w;False;False;[];;Episode 15 and loving Emilia, of course;False;False;;;;1610607246;;False;{};gj7efp3;False;t3_kwisv4;False;False;t1_gj4n9xh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7efp3/;1610687321;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Imaccqq;;;[];;;;text;t2_8yoti5vm;False;False;[];;I still don't care about Emilia at all tbh.;False;False;;;;1610607537;;False;{};gj7erph;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7erph/;1610687538;1;False;False;anime;t5_2qh22;;0;[]; -[];;;rasengansharingan;;;[];;;;text;t2_52g5rghf;False;False;[];;Anyone who says that Emilia is bland and not expressive needs to rewatch the first 12 episodes of Re: Zero. She’s starts out like a tsundere in not admitting that she helped Subaru because she’s a nice person, she shows how she acts towards strangers with hostility, and then she shows how amused she is to see Subaru’s small demand of knowing her name, along with how she deals with Subaru’s weirdness (VICTORY) and when he’s overwhelmed (lap pillow) and how she isn’t a girl that’ll just blindly accept Subaru’s excuses in episode 12. Everyone has this hidden depth that doesn’t appear at first glance, like how cold and cautious Ram and Rem concerning Subaru in the beginning and how Roswaal seems like an eccentric clown up until he turns out to be a mastermind orchestrating Subaru’s misery for his own ends;False;False;;;;1610607606;;False;{};gj7eule;False;t3_kwisv4;False;False;t1_gj4iam8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7eule/;1610687586;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Twinwawa;;;[];;;;text;t2_52fn9gqk;False;False;[];;That is pog;False;False;;;;1610607620;;False;{};gj7ev5m;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ev5m/;1610687595;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MassiveKonkeyDong;;;[];;;;text;t2_7ed6087o;False;False;[];;Is the manga finished? If so, is it conclusive?;False;False;;;;1610607701;;False;{};gj7eyi8;False;t3_kwhpxz;False;True;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj7eyi8/;1610687652;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;And?;False;False;;;;1610607729;;False;{};gj7ezlj;False;t3_kwisv4;False;True;t1_gj7erph;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ezlj/;1610687672;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ShaadowLord;;MAL a-amq;[];;https://myanimelist.net/profile/Shaadow;dark;text;t2_wgmef;False;False;[];;She. Is. So. Cute. Best girl of all time? Do we have an agreement here? No? Well, my opinion is the only that matters, and I say she is!;False;False;;;;1610607828;;False;{};gj7f3lp;False;t3_kwhpxz;False;True;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj7f3lp/;1610687745;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ganondurf4262;;;[];;;;text;t2_69300sor;False;False;[];;I'm slightly confused with the whole Otto-Cat thing ! Anyone mind explaining ? I see some people mentioning Otto had crush on that cat but did he really or that cat can change transform to human like Garfiel does ?;False;False;;;;1610607846;;1610608371.0;{};gj7f4c0;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7f4c0/;1610687757;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ErenIsNotADevil;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Reiner’s BFF;light;text;t2_9rlvlb8w;False;False;[];;"Ehh, Re:Zero’s thing is using suffering to develop character. Once the character has developed, additional suffering becomes counterproductive for the time. - -Subaru, Emilia, and Otto all passed that little narrative checkpoint this episode. The point where the story would feel cheapened and hollow if it were to revert. Major inter-character breakthroughs being reverted is not Re:Zero’s style, because Re:Zero is well written";False;False;;;;1610607874;;False;{};gj7f5hz;False;t3_kwisv4;False;False;t1_gj51zk8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7f5hz/;1610687778;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610607905;;False;{};gj7f6r4;False;t3_kwisv4;False;True;t1_gj5lj8k;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7f6r4/;1610687799;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;I could actually see [Roswaal stealing Subaru's first kiss](https://i.imgur.com/6f4GgG2.png) instead of Emilia's.;False;False;;;;1610607949;;False;{};gj7f8it;False;t3_kwisv4;False;False;t1_gj769y3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7f8it/;1610687830;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ErenIsNotADevil;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Reiner’s BFF;light;text;t2_9rlvlb8w;False;False;[];;He will keep moving forward, until all his enemies love him;False;False;;;;1610607991;;False;{};gj7fa8z;False;t3_kwisv4;False;False;t1_gj4cvol;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7fa8z/;1610687861;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Chaoticm00n;;;[];;;;text;t2_es6w4;False;False;[];;"Once you are in a closed causal time loop, it's generally regarded as then being impossible to know what started it in the first place - -http://timetravelphilosophy.net/topics/causal-loops/";False;False;;;;1610608002;;False;{};gj7fap0;False;t3_kwisv4;False;True;t1_gj7dknh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7fap0/;1610687868;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ganondurf4262;;;[];;;;text;t2_69300sor;False;False;[];;"The way the this cats looked, can they transform to human too ? - ->The cat was his crush at that time - -You mean he likes the cat as a owner likes their pet or it's exactly as what you sound like ?";False;False;;;;1610608033;;False;{};gj7fc13;False;t3_kwisv4;False;True;t1_gj7dkef;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7fc13/;1610687891;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Csr56;;;[];;;;text;t2_2jxvv6sd;False;False;[];;"Saying that he loves how she is a little absent-minded, is adorable that she gives her all sounds condescending and much less pronounced from the things he said about her physical appearance, things that he said make him go crazy around her, put him in a trance etc... He shouldn't even have mentioned these things when she thinks she is useless, it just further enhances that belief. - -Then he says ""at least try to look as cute as i hoped you would"" as if that is her only function. This statement alone is enough tbh.";False;False;;;;1610608043;;False;{};gj7fcgk;False;t3_kwisv4;False;False;t1_gj7cpbh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7fcgk/;1610687904;4;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberrdrake;;;[];;;;text;t2_ffsuv;False;False;[];;Puck foresaw this and dipped, it makes sense now!;False;False;;;;1610608065;;False;{};gj7fdaj;False;t3_kwisv4;False;True;t1_gj6dxdb;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7fdaj/;1610687928;2;True;False;anime;t5_2qh22;;0;[]; -[];;;xTurK;;MAL;[];;http://myanimelist.net/profile/Zide;dark;text;t2_dl7te;False;False;[];;Hopefully he grew from it and was just being a dumb and confused kid lol. Or the author just gave a joke answer.;False;False;;;;1610608071;;False;{};gj7fdjw;False;t3_kwisv4;False;True;t1_gj6fz36;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7fdjw/;1610687931;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberrdrake;;;[];;;;text;t2_ffsuv;False;False;[];;I just have to assume that season 2 part 2 does not have any openings and endings.;False;False;;;;1610608113;;False;{};gj7ff7r;False;t3_kwisv4;False;True;t1_gj4oxe6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ff7r/;1610687960;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xTurK;;MAL;[];;http://myanimelist.net/profile/Zide;dark;text;t2_dl7te;False;False;[];;Wasn't that a joke answer?;False;False;;;;1610608167;;False;{};gj7fhdf;False;t3_kwisv4;False;False;t1_gj6b0p2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7fhdf/;1610687995;5;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Imagine if you could talk to anything living thing, is almost the equivalent of romancing aliens.;False;False;;;;1610608243;;False;{};gj7fkip;False;t3_kwisv4;False;False;t1_gj7f4c0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7fkip/;1610688048;1;True;False;anime;t5_2qh22;;0;[]; -[];;;eWorthless;;;[];;;;text;t2_5bauuja1;False;False;[];;Yeahhh, tbh this probably should have been a stand alone episode instead, but people really want to see Subaru and Emilia's kiss so;False;False;;;;1610608274;;False;{};gj7flpq;False;t3_kwisv4;False;False;t1_gj6mhm1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7flpq/;1610688069;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Ganondurf4262;;;[];;;;text;t2_69300sor;False;False;[];;Oh, and Otto found about the truth using his power to talk to any living being right ? Just confirming;False;False;;;;1610608442;;False;{};gj7fscd;False;t3_kwisv4;False;True;t1_gj7fkip;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7fscd/;1610688176;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crism22;;;[];;;;text;t2_3jsaewqr;False;False;[];;Team Emilia wins jajajajaja *victory music*;False;False;;;;1610608785;;False;{};gj7g5pf;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7g5pf/;1610688423;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"Yes, now I don't remember if he was in love I only remember a conversation with [Character](/s ""Frederica"") about said cat.";False;False;;;;1610608905;;False;{};gj7gah3;False;t3_kwisv4;False;True;t1_gj7fscd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7gah3/;1610688515;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ganondurf4262;;;[];;;;text;t2_69300sor;False;False;[];;I see, thanks for the answer;False;False;;;;1610609016;;False;{};gj7getw;False;t3_kwisv4;False;False;t1_gj7gah3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7getw/;1610688591;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EmuNemo;;;[];;;;text;t2_sfh5i;False;False;[];;Me and my brother started screaming when the reflection happened;False;False;;;;1610609108;;False;{};gj7gig7;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7gig7/;1610688649;6;True;False;anime;t5_2qh22;;0;[]; -[];;;GeicoLizardBestGirl;;;[];;;;text;t2_6aix7qlq;False;False;[];;Does the second cour even have an OP at this point? My bet is no.;False;False;;;;1610609196;;False;{};gj7glxi;False;t3_kwisv4;False;True;t1_gj4oxe6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7glxi/;1610688708;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerboy1214;;;[];;;;text;t2_1yat8q4c;False;False;[];;Surprised Pikachu face;False;False;;;;1610609350;;False;{};gj7gs41;False;t3_kwisv4;False;False;t1_gj4nt00;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7gs41/;1610688821;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NZ-M8;;;[];;;;text;t2_1re62r;False;False;[];;OTTO NEEDS A SPIN OFF!;False;False;;;;1610609366;;False;{};gj7gspn;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7gspn/;1610688831;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;It's such a nice visual clue.;False;False;;;;1610609370;;False;{};gj7gsvh;False;t3_kwisv4;False;True;t1_gj7gig7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7gsvh/;1610688836;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GeicoLizardBestGirl;;;[];;;;text;t2_6aix7qlq;False;False;[];;Im slowly converting from Rem to Emilia. Give it another 5 episodes and Ill have made a full conversion. Guess I was never deserving of Rem to begin with.;False;False;;;;1610609420;;False;{};gj7guv0;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7guv0/;1610688877;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SeveredBanana;;;[];;;;text;t2_5ihvl;False;False;[];;Agreed. I felt like Subaru kind of botched that whole thing;False;False;;;;1610609479;;False;{};gj7gxa3;False;t3_kwisv4;False;True;t1_gj6bsuj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7gxa3/;1610688925;3;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;You are truly dedicated fan, I respect your love for this series.;False;False;;;;1610609539;;False;{};gj7gzmv;False;t3_kwisv4;False;False;t1_gj7dixo;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7gzmv/;1610688967;4;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Thank you.;False;False;;;;1610609807;;False;{};gj7ha62;False;t3_kwisv4;False;True;t1_gj7gzmv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ha62/;1610689265;1;True;False;anime;t5_2qh22;;0;[]; -[];;;doofinschmirtz;;;[];;;;text;t2_p6en0;False;False;[];;it is based from Novels (not LN) and is kind of ongoing.;False;False;;;;1610609962;;False;{};gj7hg7r;False;t3_kwhpxz;False;False;t1_gj7eyi8;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj7hg7r/;1610689437;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ConFectx;;;[];;;;text;t2_12guop;False;False;[];;"Otto is best boy. If he ever permanently dies, I will quit this show. -Furthermore, why did Subaru confess to Emilia, if he could have had Otto?";False;False;;;;1610610138;;False;{};gj7hn09;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7hn09/;1610689587;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Q-bey;;;[];;;;text;t2_1730fx;False;True;[];;"> Well, now that Subaru and Emilia's first clumsy argument is over and they head outside - -I like this confirmation that the fight was purposely written to be clumsy.";False;False;;;;1610610141;;False;{};gj7hn4u;False;t3_kwisv4;False;False;t1_gj4zpp1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7hn4u/;1610689589;6;True;False;anime;t5_2qh22;;0;[]; -[];;;GhiathI;;;[];;;;text;t2_2pa4kom2;False;False;[];;"This episode was so stupid. I don’t understand where Otto’s self confidence comes from. His abilities are very lackluster and he’s facing someone that, not only may he not beat, but can also die to, yet he’s fighting with no fear. That’s not bravery, he’s just stupid. - -And then, comes the more confusing part. The confession and argument thing. Emilia’s points were justified and make perfect sense, while Subaru couldn’t come up with anything other than “I love you”. And when she asks him about why he didn’t keep his promise, all he said was “I can’t answer”. He also straight up told her that he has no real reason to believe in her lmao. And after this whole shit show, she’s just like “ok cool” - -Worst episode in the series so far, in my opinion.";False;False;;;;1610610173;;False;{};gj7hodk;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7hodk/;1610689611;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Q-bey;;;[];;;;text;t2_1730fx;False;True;[];;"Here's a parallel I haven't seen discussed yet, anyone else feel like Otto's initial backstory kind of sounded like the experience of someone with autism? - -His difficulty communicating and how he had to learn to get around it seemed similar to the challenges some autistic people may face, especially in childhood.";False;False;;;;1610610392;;False;{};gj7hwr5;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7hwr5/;1610689765;2;True;False;anime;t5_2qh22;;0;[]; -[];;;the22sinatra;;;[];;;;text;t2_1plc2ja9;False;False;[];;I thought it was pretty clear Otto did not have any relations with the girl and was just made a scapegoat by one of the 7(!!) other guys as he was already an outcast. If he actually was one of them I don’t think he’d be angrily exclaiming “I’ll find out the truth!”;False;False;;;;1610610448;;False;{};gj7hyv9;False;t3_kwisv4;False;False;t1_gj7cijf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7hyv9/;1610689807;5;True;False;anime;t5_2qh22;;0;[]; -[];;;rapedcorpse;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Kilimini;light;text;t2_9n73kr1;False;False;[];;Lower your expectations a bit, it's on track to finish around 11.5k/12k Max;False;False;;;;1610610573;;False;{};gj7i3lz;False;t3_kwisv4;False;True;t1_gj78izj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7i3lz/;1610689896;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HyperdriveUK;;;[];;;;text;t2_wrzlj;False;False;[];;"I didn't forget anything - Not sure why you're bringing up the Rem confession but at least she valued his selflessness and bravery even though he's weak. But that confessions wasn't exactly amazing either. - -He literally says I love you a lot. Oh he mentions her traits and kindness... wow SOLD! Here's a list of things I like!";False;False;;;;1610610617;;False;{};gj7i599;False;t3_kwisv4;False;True;t1_gj5h113;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7i599/;1610689925;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> anyone else feel like Otto's initial backstory kind of sounded like the experience of someone with autism? - -Yeap, side note the author said that no one with Otto's ability ever made it to adulthood.";False;False;;;;1610610682;;False;{};gj7i7po;False;t3_kwisv4;False;True;t1_gj7hwr5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7i7po/;1610689966;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FemaleTigress;;;[];;;;text;t2_3x9x5br9;False;False;[];;Their chemistry is just incredible.;False;False;;;;1610610763;;False;{};gj7iast;False;t3_kwisv4;False;True;t1_gj4o4hp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7iast/;1610690016;3;True;False;anime;t5_2qh22;;0;[]; -[];;;huntrshado;;;[];;;;text;t2_404y4;False;False;[];;"He is a rare case of an imperfect MC and that is why a lot of people like him so much and why others hate him so much. - -Things like this aren't intended to be perfect. It is quite literally what the writing sets out to do. He's not some wise old man with years of wisdom to know exactly what to say and when. - -He is merely a teenage boy with a power to return by death to get things in the world to go slightly more towards the way he wants them to. Particularly leans more towards protecting his friends, rather than himself.";False;False;;;;1610610778;;False;{};gj7ibck;False;t3_kwisv4;False;False;t1_gj6r37x;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ibck/;1610690025;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Q-bey;;;[];;;;text;t2_1730fx;False;True;[];;"Wasn't it that only one other person with Otto's ability managed to ""develop normally""? - -> [Most people who have the ""Blessing of the Soul of Language"" are unable to endure the hell of being trapped in the countless voices that surround them, and die before reaching adulthood. Aside from Otto, only one person in history has managed to develop normally.](https://www.reddit.com/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7hn4u/?context=3)";False;False;;;;1610610793;;False;{};gj7ibxp;False;t3_kwisv4;False;True;t1_gj7i7po;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ibxp/;1610690035;2;True;False;anime;t5_2qh22;;0;[]; -[];;;animetitscurecancer;;;[];;;;text;t2_9ok0p4jc;False;False;[];;Precisely;False;False;;;;1610610812;;False;{};gj7icmd;False;t3_kwisv4;False;True;t1_gj5gbz5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7icmd/;1610690046;1;True;False;anime;t5_2qh22;;0;[]; -[];;;animetitscurecancer;;;[];;;;text;t2_9ok0p4jc;False;False;[];;Really hoping this loop is saved. Would hate to undo that moment;False;False;;;;1610610834;;False;{};gj7idfm;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7idfm/;1610690060;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lovestaring;;;[];;;;text;t2_11d4dm;False;False;[];;Oh I see , thanks.;False;False;;;;1610610925;;False;{};gj7igys;False;t3_kwisv4;False;True;t1_gj69unw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7igys/;1610690121;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;That's perfect thank you.;False;False;;;;1610610957;;False;{};gj7ii6r;False;t3_kwisv4;False;True;t1_gj7ibxp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ii6r/;1610690141;1;True;False;anime;t5_2qh22;;0;[]; -[];;;huntrshado;;;[];;;;text;t2_404y4;False;False;[];;Emilia kissed him while he was dying in her arms in her psycho bit at the end of that one loop too.;False;False;;;;1610610974;;False;{};gj7iiv7;False;t3_kwisv4;False;True;t1_gj4focm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7iiv7/;1610690152;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610611004;;False;{};gj7ijz8;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ijz8/;1610690168;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Crowlad;;;[];;;;text;t2_9s8dv;False;False;[];;"Also, despite Otto not realizing it, they both have a fundamental understanding of a ""blessing"" that is just as much a curse. They have a lot in common";False;False;;;;1610611121;;False;{};gj7ioam;False;t3_kwisv4;False;True;t1_gj6a2hg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ioam/;1610690243;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;There's a great video that does a recap of season 1 but they privatized them because of copyright if you ask next week maybe I'll be able to provide the link.;False;False;;;;1610611156;;False;{};gj7ipm8;False;t3_kwisv4;False;True;t1_gj7igys;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ipm8/;1610690266;1;True;False;anime;t5_2qh22;;0;[]; -[];;;keizee;;;[];;;;text;t2_12ym19;False;False;[];;Its more akin to deafness.;False;False;;;;1610611291;;False;{};gj7iuqw;False;t3_kwisv4;False;False;t1_gj7hwr5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7iuqw/;1610690351;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FemaleTigress;;;[];;;;text;t2_3x9x5br9;False;False;[];;How I see it to me her character is really one note for me since the start. She honestly doesn't have much depth to her besides her devotion and love for Subaru. She needs a lot of character development.;False;False;;;;1610611325;;False;{};gj7iw0u;False;t3_kwisv4;False;True;t1_gj4txsw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7iw0u/;1610690373;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Butt_Chug_Brother;;;[];;;;text;t2_69wfaxjk;False;False;[];;[Relevant:](https://youtube.com/watch?v=UBNXDXNOKlo);False;False;;;;1610611361;;False;{};gj7ixdf;False;t3_kwisv4;False;True;t1_gj78tq9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ixdf/;1610690395;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Any-Nothing;;;[];;;;text;t2_4h46mqdo;False;False;[];;There're a comment down there carefully explained Emilia and Subaru's current mental state so you can try it out. And for Otto, his determination was kind of like Subaru's. He can't guarantee his safety but he decided to fight for what he loves and believes. And besides, he had Ram, who is quite a fighter, to back him up.;False;False;;;;1610611466;;False;{};gj7j1b0;False;t3_kwisv4;False;False;t1_gj7hodk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7j1b0/;1610690480;7;True;False;anime;t5_2qh22;;0;[]; -[];;;FemaleTigress;;;[];;;;text;t2_3x9x5br9;False;False;[];;Honestly my thoughts watching them fight this episode is that it feels like a boyfriend and his girlfriend having a huge argument then making up at the end. 😂;False;False;;;;1610611487;;False;{};gj7j23f;False;t3_kwisv4;False;True;t1_gj4vp55;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7j23f/;1610690495;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OuchYouPokedMyHeart;;;[];;;;text;t2_vcemo;False;False;[];;won't likely happen due to the KyoAni arson :(;False;False;;;;1610611506;;False;{};gj7j2r6;False;t3_kwhpxz;False;False;t1_gj5gjmf;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj7j2r6/;1610690519;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Any-Nothing;;;[];;;;text;t2_4h46mqdo;False;False;[];;No. That was a totally normal female cat;False;False;;;;1610611563;;False;{};gj7j4uc;False;t3_kwisv4;False;True;t1_gj7fc13;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7j4uc/;1610690569;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Raezak_Am;;MAL;[];;;dark;text;t2_a3q5c;False;False;[];;Ten minutes in thinking about how nice this divergent backstory is then choke-slammed back into the reality of how this entire anime is concentrated despair. Nearly a nice respite tho.;False;False;;;;1610611625;;False;{};gj7j760;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7j760/;1610690610;3;True;False;anime;t5_2qh22;;0;[]; -[];;;goomyman;;;[];;;;text;t2_3fopc;False;False;[];;This was the shiny eye episode.;False;False;;;;1610611645;;False;{};gj7j7uj;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7j7uj/;1610690623;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lovestaring;;;[];;;;text;t2_11d4dm;False;False;[];;I will dm you next week , thank you!;False;False;;;;1610611679;;False;{};gj7j93c;False;t3_kwisv4;False;True;t1_gj7ipm8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7j93c/;1610690644;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;*A Nice Deep Breath Before the Plunge.*;False;False;;;;1610611766;;False;{};gj7jc7s;False;t3_kwisv4;False;True;t1_gj7j760;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7jc7s/;1610690699;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AlternativeReasoning;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Trollops;light;text;t2_1en8n8iz;False;False;[];;Subaru's Mother in Season 2 Part 1;False;False;;;;1610611828;;False;{};gj7jefx;False;t3_kwisv4;False;False;t1_gj78eab;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7jefx/;1610690744;7;True;False;anime;t5_2qh22;;0;[]; -[];;;MassiveKonkeyDong;;;[];;;;text;t2_7ed6087o;False;False;[];;Ah thank you, I may look into it;False;False;;;;1610611838;;False;{};gj7jeu6;False;t3_kwhpxz;False;True;t1_gj7hg7r;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj7jeu6/;1610690750;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeynaSepKim;;;[];;;;text;t2_2ay7grv6;False;False;[];;"Yeah, honestly compared to the other characters they seem to have more interesting character types than her. She's a good character but honestly lackluster when I imagine other characters could easily probably have more interesting character arcs than she did, I say most of the love for her stemmed from her actually getting good screentime moments. Ram and Emilia for example I find having more potential than her if they got equal amount of screentime. Rem is a bit more simple in character so she always felt like a side character that got a big role, no offense to her but it's kind of hard for me to be interested in her past that whole development she already got. It really does feel one note I agree. - -Some people mention she's best girl because of all the suffering she went through, but I don't think she wins any much of a suffering contest compared to the other characters. She kind of never caught on to me at all to being a waifu, so it's a bit hard for me to make a big deal of her character like many do when I only view her as a good written simple character. When I see discussions of why people consider Rem their waifu I don't really get many good answers that puts her above the rest, so I still don't understand personally...";False;False;;;;1610611858;;1610612186.0;{};gj7jflk;False;t3_kwisv4;False;True;t1_gj7iw0u;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7jflk/;1610690763;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Raezak_Am;;MAL;[];;;dark;text;t2_a3q5c;False;False;[];;"Oh no my giant fairy demon angel love storyyyyyyyyyyyyy plus fairy and immortal guy pedo relationship my bad. - -Just curious about Hawk and Mama, tbh";False;False;;;;1610611936;;False;{};gj7jigt;False;t3_kwhejb;False;True;t1_gj4vunt;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj7jigt/;1610690815;1;True;False;anime;t5_2qh22;;0;[]; -[];;;horiami;;;[];;;;text;t2_1vozlmy2;False;False;[];;Was that what happened? I thought that white cat was the girl's cat and and they were suggesting that the cat is the same as the master;False;False;;;;1610611975;;False;{};gj7jjxx;False;t3_kwisv4;False;True;t1_gj4x90g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7jjxx/;1610690841;1;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"> I didn't forget anything - Not sure why you're bringing up the Rem confession but at least she valued his selflessness and bravery - -Because This confession was parallel to episode 18 of S1 - - - ->He literally says I love you a lot. Oh he mentions her traits and kindness... wow SOLD! Here's a list of things I like! - - -Just like Rem...? - -He doesn't have to speak tons of paragraph of why he loves her, because this isn't the first time he's confessed to her. - -you should know this.";False;False;;;;1610612042;;False;{};gj7jmfo;False;t3_kwisv4;False;True;t1_gj7i599;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7jmfo/;1610690888;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610612077;;False;{};gj7jnrs;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7jnrs/;1610690922;4;True;False;anime;t5_2qh22;;0;[]; -[];;;yalookaboonatoo;;;[];;;;text;t2_5fe9pfr7;False;False;[];;"In the WN, Otto put some sort of merchandise(?) that removes Garfiel’s smell, and he also wore him up pretty good with the bombs, bugs and stuff hence why Ram could fight him 1 on 1. -Idk if it was cut in the LN or just in the anime tho.";False;False;;;;1610612117;;1610628357.0;{};gj7jp7l;False;t3_kwisv4;False;True;t1_gj4kd12;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7jp7l/;1610690957;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LordMoridin84;;;[];;;;text;t2_a47nf;False;False;[];;">There are almost certainly some genetic exceptions and a couple will not have to deal with the break up instinct but I would never plan on that being true for myself. Humans are not a monogamist species so monogamy is hard work. - -""talk it out"" is actually a euphemism for quarrelling";False;False;;;;1610612255;;False;{};gj7juc7;False;t3_kwisv4;False;False;t1_gj66te6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7juc7/;1610691052;6;True;False;anime;t5_2qh22;;0;[]; -[];;;keizee;;;[];;;;text;t2_12ym19;False;False;[];;Tbf, I think Otto specifically said he was going out of his way for this one, which means Subaru doesn't know about what exactly Otto is doing.;False;False;;;;1610612266;;False;{};gj7juqe;False;t3_kwisv4;False;True;t1_gj73jo1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7juqe/;1610691060;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kelvinator3000;;;[];;;;text;t2_13q8qd;False;False;[];;If you are watching for Escanor, you will definitely drop this show at a point before the end.;False;False;;;;1610612406;;False;{};gj7jzv2;False;t3_kwhejb;False;True;t1_gj6exle;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj7jzv2/;1610691155;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FemaleTigress;;;[];;;;text;t2_3x9x5br9;False;False;[];;Yeah a lot of people mentioned that Emilia lacked screentime so it is hard for them to be on board with her character. Which I understand but personally with what little we have of her. I find it still conveyed her having much more character dept compared to the amount of screentime Rem has gotten to show her. Cause we know Emilia has her own story something that is not tied down to loving Subaru. About Rem's backstory I felt it really got thrown out the window just for her love for Subaru. In my opinion it is quite jarring how she jumped from wanting to kill him to loving him in such a short span of time in the anime imao.;False;False;;;;1610612570;;False;{};gj7k5ps;False;t3_kwisv4;False;False;t1_gj7jflk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7k5ps/;1610691263;3;True;False;anime;t5_2qh22;;0;[]; -[];;;El_grandepadre;;;[];;;;text;t2_5bikpicr;False;False;[];;I don't even blame the studio that did the actual work on it. Deen just got the green light to work on it and threw it in the dirt for an inexperienced studio to rush through it.;False;False;;;;1610612634;;False;{};gj7k82e;False;t3_kwhejb;False;True;t1_gj5b0z8;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj7k82e/;1610691308;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Naothe;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/Naothe/;light;text;t2_djwc54;False;False;[];;They cut this in the anime but, Emilia was frozen when she was 7 years old, and was unfrozen by Puck 7 years ago, so although she's 114, mentally she's 14;False;False;;;;1610612728;;False;{};gj7kbi9;False;t3_kwisv4;False;True;t1_gj4rm2q;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7kbi9/;1610691373;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610612750;;False;{};gj7kcbn;False;t3_kwisv4;False;True;t1_gj7jnrs;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7kcbn/;1610691390;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Naothe;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/Naothe/;light;text;t2_djwc54;False;False;[];;"Yeah.... Subaru used the verb ""Yokeru"" which means: To avoid (physical contact)";False;False;;;;1610612859;;False;{};gj7kg9o;False;t3_kwisv4;False;True;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7kg9o/;1610691459;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ultranoobian;;;[];;;;text;t2_7w85m;False;False;[];;"\* *Witch eeeeeeeEEEEEEEEeeeeeeeeeeh* \* Big twist coming - -Edit: I don't actually know what happens next, don't report for spoilers.";False;False;;;;1610612949;;1610614645.0;{};gj7kjhq;False;t3_kwisv4;False;True;t1_gj51j2e;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7kjhq/;1610691526;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;">and that /r/niceguys material subaru lmao. ""im suffering for you, so at least look cute for me"". - -Holy shit, you actually took that phrase seriously? He's just poking fun at her lmao. I know we're in a pandemic but some of you seriously need to get outside and live a little, jeez.";False;False;;;;1610612971;;1610613737.0;{};gj7kkbe;False;t3_kwisv4;False;False;t1_gj7jnrs;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7kkbe/;1610691540;7;True;False;anime;t5_2qh22;;0;[]; -[];;;keizee;;;[];;;;text;t2_12ym19;False;False;[];;"Garfiel thinks Subaru is a spy/witch cultist. He will kill/imprison him if he can get to him. His stake is Ryuzu and the Sanctuary's villagers. - -Otto is told to buy time so Subaru can find Emilia.";False;False;;;;1610613151;;False;{};gj7kqqo;False;t3_kwisv4;False;True;t1_gj6l3j1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7kqqo/;1610691658;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610613244;;False;{};gj7ku53;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ku53/;1610691715;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ayusis123;;;[];;;;text;t2_7fi3pn20;False;False;[];;Im not ep. 15;False;False;;;;1610613339;;False;{};gj7kxni;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7kxni/;1610691791;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Eboglaz;;;[];;;;text;t2_2kahaqr2;False;False;[];;Otto had Ram on his side. he had no confidence in himself, he knew he would lose, lol. And he was scared to death tho. Why do you think he was fearless.;False;False;;;;1610613483;;False;{};gj7l2zr;False;t3_kwisv4;False;False;t1_gj7hodk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7l2zr/;1610691892;8;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;"Upvote percentage is once again down to 96%, same as last week. For almost every semi-popular show the % ranges from 98-99 and never drops lower. Compare to the MAL discussion, last weeks episode had 71% of votes as 5/5 but this weeks episode has 85% of votes 5/5 so it seems to be just a Reddit thing. This episode was clearly a level above last week. - -Are people just mass downvoting each episode or something out of hate for the series? It's weird.";False;False;;;;1610613505;;False;{};gj7l3rx;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7l3rx/;1610691905;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Eboglaz;;;[];;;;text;t2_2kahaqr2;False;False;[];;facts;False;False;;;;1610613510;;False;{};gj7l3y0;False;t3_kwisv4;False;True;t1_gj7hn09;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7l3y0/;1610691908;2;True;False;anime;t5_2qh22;;0;[]; -[];;;keizee;;;[];;;;text;t2_12ym19;False;False;[];;"Emilia's role is to finish the trial. She can't leave the Sanctuary and already has her plate full. Also Subaru wants to never show his weak side to her. - -Satella isn't dumb and will probably have issues if he hints intentionally.";False;False;;;;1610613576;;False;{};gj7l6cx;False;t3_kwisv4;False;True;t1_gj6oean;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7l6cx/;1610691947;0;True;False;anime;t5_2qh22;;0;[]; -[];;;GhiathI;;;[];;;;text;t2_2pa4kom2;False;False;[];;Alright, most things make sense now.;False;False;;;;1610613610;;False;{};gj7l7lj;False;t3_kwisv4;False;True;t1_gj7j1b0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7l7lj/;1610691967;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;I think there is a few new accounts, so it might be a disgruntled small minority trying to make a fuss.;False;False;;;;1610613711;;False;{};gj7lb8t;False;t3_kwisv4;False;True;t1_gj7l3rx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7lb8t/;1610692029;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Eboglaz;;;[];;;;text;t2_2kahaqr2;False;False;[];;No, Otto sees animals like he sees humans because he can speak to both. It was his first platonic love.;False;False;;;;1610613780;;False;{};gj7ldo8;False;t3_kwisv4;False;True;t1_gj7fc13;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ldo8/;1610692070;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sebasu;;MAL;[];;https://myanimelist.net/profile/Sebasu_tan;dark;text;t2_b6y1a;False;False;[];;As a big Rem fan, I actually really enjoyed this episode.;False;False;;;;1610613787;;False;{};gj7ldxb;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ldxb/;1610692075;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FearlessOverlord_;;;[];;;;text;t2_1haeq1mq;False;False;[];;I’m dumb. If Subaru dies again, does he have to confess again or will the confession be a new checkpoint?;False;False;;;;1610613806;;False;{};gj7lema;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7lema/;1610692085;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rebelofan;;;[];;;;text;t2_6ps0vyio;False;False;[];;"Subaru and Emilia shouting in Burial. - -Echidna: It is the choice Subaru to make, nice image to fulfil my GREEDY.";False;False;;;;1610613812;;False;{};gj7letq;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7letq/;1610692089;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Channelistic;;;[];;;;text;t2_2svqmt8x;False;False;[];;i haven't read the WN in a long time but iirc he lost to ram and otto so he just ran i think? sorry for the past comment i dont remember what happened;False;False;;;;1610613885;;False;{};gj7lhjn;False;t3_kwisv4;False;False;t1_gj5ndx0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7lhjn/;1610692135;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Channelistic;;;[];;;;text;t2_2svqmt8x;False;False;[];;i c h i g o p a r f a i t;False;False;;;;1610613942;;False;{};gj7ljmv;False;t3_kwisv4;False;False;t1_gj71qck;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ljmv/;1610692171;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Channelistic;;;[];;;;text;t2_2svqmt8x;False;False;[];;shit if i'm not mistaken 18 could be another love episode;False;False;;;;1610613994;;False;{};gj7llj7;False;t3_kwisv4;False;True;t1_gj5xksq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7llj7/;1610692201;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;If Subaru dies this time Roswaal wins the bet..;False;False;;;;1610613999;;False;{};gj7llq0;False;t3_kwisv4;False;False;t1_gj7lema;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7llq0/;1610692204;5;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Echidna even put on the ambient lights.;False;False;;;;1610614054;;False;{};gj7lnrd;False;t3_kwisv4;False;True;t1_gj7letq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7lnrd/;1610692237;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610614064;;False;{};gj7lo3q;False;t3_kwisv4;False;True;t1_gj7930r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7lo3q/;1610692243;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Channelistic;;;[];;;;text;t2_2svqmt8x;False;False;[];;who knows?;False;False;;;;1610614111;;False;{};gj7lpry;False;t3_kwisv4;False;False;t1_gj7dkwl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7lpry/;1610692276;7;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"Then get to it ;)";False;False;;;;1610614157;;False;{};gj7lrfq;False;t3_kwisv4;False;True;t1_gj7kxni;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7lrfq/;1610692306;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;Yeah r/Re_Zero, Youtube and MAL have reacted really well to the episode overall.;False;False;;;;1610614175;;False;{};gj7ls2t;False;t3_kwisv4;False;True;t1_gj79vt1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ls2t/;1610692316;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ayusis123;;;[];;;;text;t2_7fi3pn20;False;False;[];;k;False;False;;;;1610614191;;False;{};gj7lsmn;False;t3_kwisv4;False;True;t1_gj7lrfq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7lsmn/;1610692326;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DetectivePokeyboi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PokeyDeathBoi;light;text;t2_3or1e91u;False;False;[];;Or her lust made her forget or ignore it. She was crazy. She may not have thought about the pregnancy aspect and just wanted a kiss really badly.;False;False;;;;1610614284;;False;{};gj7lvym;False;t3_kwisv4;False;True;t1_gj6e7kf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7lvym/;1610692379;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610614401;moderator;False;{};gj7m060;False;t3_kwisv4;False;True;t1_gj7001l;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7m060/;1610692447;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Well, I might get banned if they keep trying to give me an aneurysm.;False;False;;;;1610614401;;False;{};gj7m06w;False;t3_kwisv4;False;True;t1_gj7ls2t;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7m06w/;1610692447;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PMmeYourpussy-_-;;;[];;;;text;t2_89uynt0o;False;False;[];;Beastly episode. Some of the best voice acting and sound design ive heard. Amazing animations. I can see and feel the emotion. Hell I practically felt that kiss;False;False;;;;1610614430;;False;{};gj7m16u;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7m16u/;1610692462;5;True;False;anime;t5_2qh22;;0;[]; -[];;;GhiathI;;;[];;;;text;t2_2pa4kom2;False;False;[];;Because the dude was smiling through nearly have the scene? Especially during the confrontation and at the start of the chase run, also his confidence that the trap was gonna work (He said everything was calculated when the bird told him that garfiel was coming).;False;True;;comment score below threshold;;1610614436;;False;{};gj7m1eh;False;t3_kwisv4;False;True;t1_gj7l2zr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7m1eh/;1610692467;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;thecomicguybook;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Comicman;light;text;t2_cfb58;False;False;[];;Yeah, as the other guy said that is Subaru's mom. Or did you mean the comment face? That is from Pop Team Epic.;False;False;;;;1610614573;;False;{};gj7m683;False;t3_kwisv4;False;True;t1_gj78eab;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7m683/;1610692548;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Flimsy-Arugula8636;;;[];;;;text;t2_8igap4hh;False;False;[];;man the animations are so bad its plain art with some moving screen;False;False;;;;1610614692;;False;{};gj7mal6;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj7mal6/;1610692621;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Channelistic;;;[];;;;text;t2_2svqmt8x;False;False;[];;π x 2938383;False;False;;;;1610614734;;False;{};gj7mc29;False;t3_kwisv4;False;False;t1_gj6e2er;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7mc29/;1610692647;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DetectivePokeyboi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PokeyDeathBoi;light;text;t2_3or1e91u;False;False;[];;I think at the beginning of season 1 he tried his hardest to stay alive and get the girl. He was deathly afraid of dying and would try to avoid it at all costs (though he wasn’t very smart and kept going into deadly situations). He was afraid of dying. Towards the middle and end he accepted his return by death and how he can use it to help others and gather information. He stopped caring about himself and instead only about others. Now, after the witch incident, he has learned that he needs to value his own life and not treat it as a suicide bomber.;False;False;;;;1610614787;;False;{};gj7mdzo;False;t3_kwisv4;False;False;t1_gj70oty;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7mdzo/;1610692678;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PMmeYourpussy-_-;;;[];;;;text;t2_89uynt0o;False;False;[];;I love the depth of characters in this show. Everything that happens leaves an impact, has weight. The characters have fears, weaknesses, insecurities. I lvoe it;False;False;;;;1610614807;;False;{};gj7menn;False;t3_kwisv4;False;True;t1_gj4gco8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7menn/;1610692687;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610614816;;False;{};gj7mf07;False;t3_kwisv4;False;True;t1_gj7kkbe;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7mf07/;1610692693;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PMmeYourpussy-_-;;;[];;;;text;t2_89uynt0o;False;False;[];;this episode made my heart feel some sort of way;False;False;;;;1610614881;;False;{};gj7mhhq;False;t3_kwisv4;False;True;t1_gj4j0q8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7mhhq/;1610692733;1;True;False;anime;t5_2qh22;;0;[]; -[];;;and1927;;MAL;[];;;dark;text;t2_gvxyp;False;False;[];;There will be much better episodes coming once the trial part of the story starts again.;False;False;;;;1610614912;;False;{};gj7mil7;False;t3_kwisv4;False;True;t1_gj5xgkg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7mil7/;1610692750;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BanterBoat;;MAL;[];;http://myanimelist.net/animelist/Hyun15;dark;text;t2_ljcjd;False;False;[];;Rem fans: imma pretend i didnt see that;False;False;;;;1610614921;;False;{};gj7miwh;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7miwh/;1610692755;1;True;False;anime;t5_2qh22;;0;[]; -[];;;keizee;;;[];;;;text;t2_12ym19;False;False;[];;Subaru told Otto to buy time, apparently he doesn't know how he will buy time. Otto said he's doing a bit extra, Subaru is hoping Otto doesn't do anything crazy.;False;False;;;;1610614954;;False;{};gj7mk1w;False;t3_kwisv4;False;True;t1_gj6zbtx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7mk1w/;1610692772;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"Sorry, your comment has been removed. - -- Don't be a dick. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610614957;moderator;False;{};gj7mk6d;False;t3_kwisv4;False;False;t1_gj7mf07;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7mk6d/;1610692774;4;True;False;anime;t5_2qh22;;0;[]; -[];;;addy0997;;;[];;;;text;t2_1om8ai;False;False;[];;Ah cheers mate, oh why must they pain us like this!;False;False;;;;1610614966;;False;{};gj7mkil;False;t3_kwisv4;False;True;t1_gj6etx1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7mkil/;1610692779;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610614997;moderator;False;{};gj7mllc;False;t3_kwisv4;False;True;t1_gj6y674;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7mllc/;1610692797;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610615033;;False;{};gj7mmvk;False;t3_kwisv4;False;True;t1_gj7mk6d;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7mmvk/;1610692816;0;True;False;anime;t5_2qh22;;0;[]; -[];;;DetectivePokeyboi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PokeyDeathBoi;light;text;t2_3or1e91u;False;False;[];;He is a normal person surrounded by people of extraordinarily over powered abilities. He is a level 1 character among level 100s. He is a rat among cats. He is a baby dropped into a wolf den. He has no training, not much intelligence, nor does he have any special powers. He is just an regular person who has been stuck in the world for anywhere between a few weeks and a few months.;False;False;;;;1610615077;;False;{};gj7moh6;False;t3_kwisv4;False;False;t1_gj5jtc6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7moh6/;1610692844;10;True;False;anime;t5_2qh22;;0;[]; -[];;;zool714;;;[];;;;text;t2_11y457;False;False;[];;Yeah a lot of this kind of traits work in anime cos it’s anime. Like example physically grabbing the hand of the girl trying to walk away in most romcoms seem more abusive irl than in anime.;False;False;;;;1610615131;;False;{};gj7mqfo;False;t3_kwisv4;False;True;t1_gj5wgn9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7mqfo/;1610692875;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;keizee;;;[];;;;text;t2_12ym19;False;False;[];;The arc needs to end somehow and Subaru can't keep losing.;False;False;;;;1610615143;;False;{};gj7mqw1;False;t3_kwisv4;False;True;t1_gj7326y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7mqw1/;1610692884;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610615151;moderator;False;{};gj7mr5u;False;t3_kwisv4;False;True;t1_gj6vuda;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7mr5u/;1610692889;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610615186;;False;{};gj7msgu;False;t3_kwisv4;False;True;t1_gj7kcbn;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7msgu/;1610692911;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;Moderators are here to remove comments of people insulting other users, not people disagreeing with you.;False;False;;;;1610615245;moderator;False;{};gj7muld;False;t3_kwisv4;False;False;t1_gj7mmvk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7muld/;1610692943;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610615276;moderator;False;{};gj7mvpv;False;t3_kwisv4;False;True;t1_gj52y3l;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7mvpv/;1610692960;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;Subaru was mentally 12 at the beginning of arc 3, and I think that was not even a couple of weeks before in-universe.;False;False;;;;1610615347;;False;{};gj7my6x;False;t3_kwisv4;False;False;t1_gj6c3dr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7my6x/;1610692999;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610615368;;False;{};gj7myz3;False;t3_kwisv4;False;True;t1_gj7muld;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7myz3/;1610693012;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610615408;moderator;False;{};gj7n0h1;False;t3_kwisv4;False;True;t1_gj6o1wp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7n0h1/;1610693039;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tobeyornotoby;;;[];;;;text;t2_4offyg3q;False;False;[];;"Tbf I also did overexaggerate my feelings towards this episode. I wasn't mad while watching I simply rolled my eyes. The comment simply turned out like this for some reason. Maybe because I saw all the all the praise it gets, so I thought if I'm going to be the only one complaining, I might as well go all out. - -The reason why she is in distress doesn't really matter, but, among other things, isn't she mad at him because he broke her promise? And to her kissing is probably a big deal, which is why it's even more confussing why she would do it with someone she is not convinced loves her. Maybe she did it with no real feeling of romantic love, only as a confirmation of trust, but do you think Subaru is emotionally mature enough to seperate romantic love from wanting to help her? - -There may not have been a good timing to complain, but that doesn't excuse the fact that it felt forced and sudden. Some kind of prior indicator that he sees her ""bad sides"" would've been nice. He didn't even have to do it to her face. He could have even framed it as a passing joke. He didn't have to shit all over her, but something like a ""you're frustrating (lol)"" isn't really much to ask. Friends do it all the time. - -While we're at that topic, him compaining about her doesn't even feel waranted, because all her problems are understandable. As you said, he couldn't openly tell it to her face because she WAS trying and suffering. He is getting emotionally tortured yet still endures it to save everybody. What a flawed character. Again, Rems speech, which I think this scene was an obvious allusion to (same structure) worked because Subaru HAD obvious flaws. All the complaints he had are automatically valid because he said them about himself, reinterpreting his actions from the whole 1st season in a bad way. - -Even in an argument you can have some kind of control over what you're saying. There is stuff you just don't say. This line is basically the repeat of a thing I thought he got over with in the last season so it's extra frustrating and hard to think he didn't mean it. - -Also, I didn't adress this originally, but why did he lie to her? Why not simply tell her he can't stay the whole night because he has some important things to do, but instead that he would stay untill she fell asleep. A big part of this could've been avoided. - -Finally, people keep saying thats not a start to their relationship, but it's clearly building towards it. I don't see the difference. Even if they never get into a proper relationship, which from a meta perspective I doubt, it only gives Subaru, and the audience, more hope for the future.";False;False;;;;1610615435;;1610616164.0;{};gj7n1f4;False;t3_kwisv4;False;False;t1_gj7889s;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7n1f4/;1610693053;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;"[Classic Ti~~tan~~ger trap!](https://i.imgur.com/WZhtpKj.jpeg) - -[""I'm sorry. Your child is deaf""](https://i.imgur.com/Jj69zqG.jpg) - -[Goddammit, otouto-chan](https://i.imgur.com/TuDbroW.jpg) - -[""Oh, hey, uh… you guys wanna buy some oil?""](https://i.imgur.com/MvrO2sA.jpeg) - -[He dies, about four times out of five?](https://i.imgur.com/KeXS3CO.jpg) …[Oh. Right.](https://i.imgur.com/r1vuoKT.jpeg) - -[What, you think you have the corner on being useless? Let ol' Barusu regale ya](https://i.imgur.com/I0SOGRI.jpg) - -[I mean, this rule is pretty much always in effect](https://i.imgur.com/lYOI39p.jpeg) - -[YAY!](https://i.imgur.com/m3qtw89.jpg) [](#wow)";False;False;;;;1610615437;;False;{};gj7n1hf;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7n1hf/;1610693054;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610615453;;False;{};gj7n20x;False;t3_kwisv4;False;True;t1_gj7myz3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7n20x/;1610693063;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JapanCode;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TheJapanCode/;light;text;t2_bmu83;False;False;[];;I doubt this would happen until the very last arc, considering that's like one of the main mysteries of the series.;False;False;;;;1610615659;;False;{};gj7n9cp;False;t3_kwisv4;False;True;t1_gj6l8u4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7n9cp/;1610693185;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_Depressed_Strange;;;[];;;;text;t2_3opv8mgx;False;False;[];;Never expected Otto to be THAT awesome;False;False;;;;1610615664;;False;{};gj7n9ix;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7n9ix/;1610693188;3;True;False;anime;t5_2qh22;;0;[]; -[];;;nuestropene;;;[];;;;text;t2_38rqg802;False;False;[];;"Its diferent,you have to [c](https://www.linguee.es/ingles-espanol/traduccion/consider.html)onsider the context, violence in videogames are obiously exagerated, but romance is almost always presented as a way of acting irl, if you want to present a toxic relationship, please, present it documentary, not in a ""does how loves works"" way. Look at this comments, people are saying this is a healthy way of romance";False;False;;;;1610615692;;False;{};gj7nak1;False;t3_kwisv4;False;True;t1_gj5zbru;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7nak1/;1610693203;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610615729;;False;{};gj7nbuv;False;t3_kwisv4;False;True;t1_gj7muld;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7nbuv/;1610693225;0;True;False;anime;t5_2qh22;;0;[]; -[];;;invaderzz;;;[];;;;text;t2_gu3p8;False;False;[];;Amazing dialogue and character writing;False;False;;;;1610615730;;False;{};gj7nbw4;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7nbw4/;1610693226;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Devilo94;;;[];;;;text;t2_g0ijo;False;False;[];;Man Otto is cool, congrats to Subaru and now.. are you gonna piss off Garfield even more?;False;False;;;;1610615741;;False;{};gj7ncbh;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ncbh/;1610693233;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kradool;;;[];;;;text;t2_40eu2lo5;False;False;[];;I agree;False;False;;;;1610615751;;False;{};gj7ncoa;False;t3_kwhpxz;False;True;t1_gj4phl1;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj7ncoa/;1610693239;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;Do you have no self respect? This performance is up there with Subaru S1 ep 13. Lordy lord.;False;False;;;;1610615853;;False;{};gj7ng9e;False;t3_kwisv4;False;False;t1_gj7nbuv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ng9e/;1610693299;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Careless_Pudding_327;;;[];;;;text;t2_8rj9fyvi;False;False;[];;What does being or not being a virgin have to do with anything, there's almost certainly virgins who upvoted you and share the same perspective as you.;False;False;;;;1610615855;;False;{};gj7ngbd;False;t3_kwisv4;False;True;t1_gj6mzpf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ngbd/;1610693299;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nuestropene;;;[];;;;text;t2_38rqg802;False;False;[];;thats cos the tone, and the reaction, in anime abusive acts makes girls horny, thats why it feels right, but thats even worse, what are you teaching the society? that women likes to be held against her will?;False;False;;;;1610615919;;False;{};gj7nik0;False;t3_kwisv4;False;True;t1_gj7mqfo;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7nik0/;1610693350;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610615980;;False;{};gj7nknx;False;t3_kwisv4;False;True;t1_gj7ng9e;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7nknx/;1610693384;1;True;False;anime;t5_2qh22;;0;[]; -[];;;platysoup;;;[];;;;text;t2_4nzfs;False;False;[];;"It'd be fucking hilarious if it happens. Gotta max out the suffering. - -I'm seeing that ep in Rick & Morty in my head";False;False;;;;1610616031;;False;{};gj7nmfr;False;t3_kwisv4;False;False;t1_gj5wjer;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7nmfr/;1610693411;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;Carry on insulting me in comments, get yourself banned I don't mind :);False;False;;;;1610616092;;False;{};gj7nol6;False;t3_kwisv4;False;False;t1_gj7nknx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7nol6/;1610693444;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610616166;;False;{};gj7nr8g;False;t3_kwisv4;False;True;t1_gj7nol6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7nr8g/;1610693486;0;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;"You're really hurt by this aren't you? - -Someones a freak because they post on a sub on average once a month? You are giving me a good chuckle on a Thursday morning, that's for sure :) You've done far from put me in my place haha, I'm laughing.";False;False;;;;1610616255;;False;{};gj7nue7;False;t3_kwisv4;False;True;t1_gj7nr8g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7nue7/;1610693536;3;True;False;anime;t5_2qh22;;0;[]; -[];;;personyouhate;;;[];;;;text;t2_48yvtlmz;False;False;[];;Subaru made me proud :,) this episode was great!!!;False;False;;;;1610616301;;False;{};gj7nvzh;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7nvzh/;1610693561;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610616339;;False;{};gj7nxe4;False;t3_kwisv4;False;True;t1_gj7nue7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7nxe4/;1610693586;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> consider the contex - -The context will be different, but principle is the same, people will be people, now if this show was aimed at children, then ok they are impressionable, but its clearly not. Besides doing dumb things and fumbling is what gives flavor to life. - ->people are saying this is a healthy way of romance - -You seem to have a problem with people that disagree with you, I made my point from my perspective and experiences, and you made yours and we will probably never agree.";False;False;;;;1610616435;;False;{};gj7o0u7;False;t3_kwisv4;False;True;t1_gj7nak1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7o0u7/;1610693640;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silverkira;;;[];;;;text;t2_13ihl1;False;False;[];;what happend?;False;False;;;;1610616451;;False;{};gj7o1g5;False;t3_kwisv4;False;True;t1_gj74zte;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7o1g5/;1610693651;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Necrosaynt;;;[];;;;text;t2_jxl9k;False;False;[];;I wonder if Otto and Ram are okay after seeing Gar at the ending;False;False;;;;1610616480;;False;{};gj7o2g0;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7o2g0/;1610693667;3;True;False;anime;t5_2qh22;;0;[]; -[];;;markevans7799;;;[];;;;text;t2_4pxhvc5g;False;False;[];;It's not just this series, people mass downvote other shows, for whatever stupid reason or hate they got. It's so irritating;False;False;;;;1610616506;;False;{};gj7o3ce;False;t3_kwisv4;False;False;t1_gj7l3rx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7o3ce/;1610693681;3;True;False;anime;t5_2qh22;;0;[]; -[];;;platysoup;;;[];;;;text;t2_4nzfs;False;False;[];;100%;False;False;;;;1610616532;;False;{};gj7o49f;False;t3_kwisv4;False;True;t1_gj71qck;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7o49f/;1610693696;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EmSoLow;;;[];;;;text;t2_3erhzbb0;False;False;[];;No;False;False;;;;1610616534;;False;{};gj7o4bn;False;t3_kwhpxz;False;True;t1_gj78md4;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj7o4bn/;1610693697;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Don't check this thread by new comments or controversial unless you want an aneurysm.;False;False;;;;1610616578;;False;{};gj7o5ti;False;t3_kwisv4;False;True;t1_gj7o1g5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7o5ti/;1610693720;1;True;False;anime;t5_2qh22;;0;[]; -[];;;StarDriver76;;;[];;;;text;t2_8nta0;False;False;[];;"I was reading some comments on the kiss scene on youtube and holy shit its a gold mine of great comments. This one sticks out to me the most - -""If your homie goes out and fights a monster until morning so u can make out with a girl, you know that youre truly homies.""";False;False;;;;1610616645;;False;{};gj7o847;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7o847/;1610693756;26;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;BEST BOY;False;False;;;;1610616648;;False;{};gj7o87y;False;t3_kwisv4;False;True;t1_gj7n9ix;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7o87y/;1610693757;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;What would you rate the episode out of 10?;False;False;;;;1610616669;;False;{};gj7o8yi;False;t3_kwisv4;False;True;t1_gj7nbw4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7o8yi/;1610693768;0;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;Will find out next episode!;False;False;;;;1610616682;;False;{};gj7o9ex;False;t3_kwisv4;False;False;t1_gj7o2g0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7o9ex/;1610693776;4;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;He's so underappreciated;False;False;;;;1610616690;;False;{};gj7o9p8;False;t3_kwisv4;False;True;t1_gj7nvzh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7o9p8/;1610693780;5;True;False;anime;t5_2qh22;;0;[]; -[];;;platysoup;;;[];;;;text;t2_4nzfs;False;False;[];;">who ~~knows~~?";False;False;;;;1610616699;;False;{};gj7oa0k;False;t3_kwisv4;False;False;t1_gj7lpry;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7oa0k/;1610693786;5;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;">are you gonna piss off Garfield even more? - -It's what he's best at lol";False;False;;;;1610616734;;False;{};gj7obb1;False;t3_kwisv4;False;True;t1_gj7ncbh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7obb1/;1610693806;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;100% agree. Best episode of Re:Zero imo.;False;False;;;;1610616757;;False;{};gj7oc4n;False;t3_kwisv4;False;True;t1_gj7m16u;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7oc4n/;1610693819;1;True;False;anime;t5_2qh22;;0;[]; -[];;;platysoup;;;[];;;;text;t2_4nzfs;False;False;[];;"Dude, you forgot the most important point: - -She's voiced by Rieri";False;False;;;;1610616785;;False;{};gj7od4s;False;t3_kwisv4;False;False;t1_gj5ta6a;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7od4s/;1610693835;9;True;False;anime;t5_2qh22;;0;[]; -[];;;StarDriver76;;;[];;;;text;t2_8nta0;False;False;[];;"oh yeah rieri is a huge shotacon - -she went on a diet to save money in order to roll for voyager";False;False;;;;1610616836;;False;{};gj7oewj;False;t3_kwisv4;False;True;t1_gj5qmab;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7oewj/;1610693862;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FountainsOfFluids;;;[];;;;text;t2_6sp2c;False;False;[];;You're probably not going to reach all of these weebs, but you're totally right and I'm glad you're not being downvoted into oblivion like I expected.;False;False;;;;1610616889;;False;{};gj7ogrn;False;t3_kwisv4;False;False;t1_gj6n59u;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ogrn/;1610693892;6;True;False;anime;t5_2qh22;;0;[]; -[];;;nuestropene;;;[];;;;text;t2_38rqg802;False;False;[];;there is a difference bettewen disagreing in something and telling people that girls get horny when insults them;False;False;;;;1610616900;;False;{};gj7oh5a;False;t3_kwisv4;False;False;t1_gj7o0u7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7oh5a/;1610693899;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Necrosaynt;;;[];;;;text;t2_jxl9k;False;False;[];;Yeah , I'm looking forward to it.;False;False;;;;1610616910;;False;{};gj7ohiz;False;t3_kwisv4;False;False;t1_gj7o9ex;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ohiz/;1610693905;4;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;Yep, very immature;False;False;;;;1610616915;;False;{};gj7ohod;False;t3_kwisv4;False;False;t1_gj7o3ce;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ohod/;1610693907;9;True;False;anime;t5_2qh22;;0;[]; -[];;;FountainsOfFluids;;;[];;;;text;t2_6sp2c;False;False;[];;"All intimate contact requires consent, from grabbing their butt, to kissing, to sex. - -Otherwise you might be engaging in harassment without intending to.";False;False;;;;1610616992;;False;{};gj7okey;False;t3_kwisv4;False;False;t1_gj76h70;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7okey/;1610693954;5;True;False;anime;t5_2qh22;;0;[]; -[];;;platysoup;;;[];;;;text;t2_4nzfs;False;False;[];;">You don't really need a solid reason for love. He's just infatuated with her - -Yeah, and don't forget he's literally a teenager. - -Teenagers are stupid with stuff like this. I know I was.";False;False;;;;1610617006;;False;{};gj7okv9;False;t3_kwisv4;False;False;t1_gj6ztiu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7okv9/;1610693964;7;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;if that's what you got from the episode you really got some problems IRL;False;False;;;;1610617108;;False;{};gj7ooaz;False;t3_kwisv4;False;True;t1_gj7oh5a;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ooaz/;1610694023;1;True;False;anime;t5_2qh22;;0;[]; -[];;;batchmimicsgod;;;[];;;;text;t2_1gzy1nk0;False;False;[];;"So worse? No matter how you word it, it just sounds worse. ""It's only this. It's only that."" If something is inferior to another thing, it's called worse.";False;False;;;;1610617216;;False;{};gj7os1m;False;t3_kwhejb;False;False;t1_gj799k4;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj7os1m/;1610694085;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FountainsOfFluids;;;[];;;;text;t2_6sp2c;False;False;[];;"In this context, they're using the word virgin as a metaphor for ""romantically inexperienced, ignorant, or immature"". - -An immature person thinks getting proper consent is not how sexually successful men behave, but a mature person knows that many ignorant people idealize brutish behavior inappropriately.";False;False;;;;1610617253;;False;{};gj7ot9c;False;t3_kwisv4;False;False;t1_gj7ngbd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ot9c/;1610694105;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Eboglaz;;;[];;;;text;t2_2kahaqr2;False;False;[];;His role was to buy time and garfiel wasn\`t going to kill him.;False;False;;;;1610617429;;False;{};gj7ozcs;False;t3_kwisv4;False;False;t1_gj7m1eh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ozcs/;1610694198;9;True;False;anime;t5_2qh22;;0;[]; -[];;;FountainsOfFluids;;;[];;;;text;t2_6sp2c;False;False;[];;"Do not copy lines from anime, oh my god. - -If you can't think of your own method of asking, memorize this: start to lean in, and if they seem to not move away, quietly say ""I want to kiss you right now. Do you want me to kiss you?"" - -This is sincere, brave, intimate, and clear. If they were thinking that they wanted you to kiss them, this will seal the deal 100%. If they were just being friendly and didn't know how to tell you to stop, a direct ""Do you want this?"" question is their easy way to say ""no.""";False;False;;;;1610617776;;False;{};gj7pb8i;False;t3_kwisv4;False;True;t1_gj4vwfn;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7pb8i/;1610694385;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Orsonius2;;;[];;;;text;t2_204y9owl;False;True;[];;cannot wait for him to finally get the fuck out of sanctuary. feels like he has spend more time in it than in any other place;False;False;;;;1610617809;;False;{};gj7pcf3;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7pcf3/;1610694407;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Orsonius2;;;[];;;;text;t2_204y9owl;False;True;[];;"he got literally ripped to shreds by Tigerboy before - -just be beast kin lol";False;False;;;;1610617861;;False;{};gj7pe83;False;t3_kwisv4;False;True;t1_gj4ehq8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7pe83/;1610694434;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ganondurf4262;;;[];;;;text;t2_69300sor;False;False;[];;Thanks for answering;False;False;;;;1610617911;;False;{};gj7pfzg;False;t3_kwisv4;False;True;t1_gj7j4uc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7pfzg/;1610694460;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ganondurf4262;;;[];;;;text;t2_69300sor;False;False;[];;Gotcha, much thanks for answering;False;False;;;;1610617951;;False;{};gj7phag;False;t3_kwisv4;False;True;t1_gj7ldo8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7phag/;1610694480;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tobeyornotoby;;;[];;;;text;t2_4offyg3q;False;False;[];;"The difference being that Subaru got a kiss, while Rem was rejected. Rem rejected Subarus invitation to run away, meaning she had no ulterior motivations, while Subaru got mad for her not accepting his love and talked shit like ""At least you can look cute as I thought you would"". - -Also Subaru lied to her and broke his promise, an aspect of his character many people were hoping he got over with in S1, making it understandable why she, and the audience is suspicious about his ""love"". Why would anyone doubt Rem loved Subaru? If anything its a probelm that she loves him TOO much, making it possibly feel forced and unnatural. Same can be said about Subarus love for Emilia, but at least Rem is idealized in every way.";False;False;;;;1610617964;;False;{};gj7phr3;False;t3_kwisv4;False;True;t1_gj7aoxv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7phr3/;1610694488;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Orsonius2;;;[];;;;text;t2_204y9owl;False;True;[];;"I surely was - -but we got some Ram and not gonna lie she also cute";False;False;;;;1610617965;;False;{};gj7pht4;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7pht4/;1610694488;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FountainsOfFluids;;;[];;;;text;t2_6sp2c;False;False;[];;Yeah, I think this is the one. It's gonna be slow, though. Each episode only dealing with a few drawn out moments.;False;False;;;;1610617973;;False;{};gj7pi33;False;t3_kwisv4;False;True;t1_gj5xtgo;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7pi33/;1610694492;3;True;False;anime;t5_2qh22;;0;[]; -[];;;platysoup;;;[];;;;text;t2_4nzfs;False;False;[];;Can't be too sure. Best keep your wits about you and continue to look for signs;False;False;;;;1610617990;;False;{};gj7piof;False;t3_kwisv4;False;True;t1_gj4nt00;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7piof/;1610694501;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ganondurf4262;;;[];;;;text;t2_69300sor;False;False;[];;10/10 for me personally, ReZero is my favourite anime alongside Attack on Titan;False;False;;;;1610618012;;False;{};gj7pjgr;False;t3_kwisv4;False;False;t1_gj7o8yi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7pjgr/;1610694512;5;True;False;anime;t5_2qh22;;0;[]; -[];;;kfijatass;;;[];;;;text;t2_6tii3;False;False;[];;I think i missed something, why did Subaru break his promise to Emilia to stay by her exactly?;False;False;;;;1610618041;;False;{};gj7pkh9;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7pkh9/;1610694527;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Marik-X-Bakura;;;[];;;;text;t2_4acyt2bo;False;False;[];;Didn’t work but thanks;False;False;;;;1610618042;;False;{};gj7pkin;False;t3_kwisv4;False;True;t1_gj6g4ue;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7pkin/;1610694527;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FountainsOfFluids;;;[];;;;text;t2_6sp2c;False;False;[];;Oh my god, the mouseover change on that gif!;False;False;;;;1610618047;;False;{};gj7pkp9;False;t3_kwisv4;False;True;t1_gj4gx5f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7pkp9/;1610694531;1;True;False;anime;t5_2qh22;;0;[]; -[];;;keizee;;;[];;;;text;t2_12ym19;False;False;[];;"Subaru has put up with a lot of Emilia's bullshit this arc. Those criticisms are not made up on the spot. The first loop he spent 5 days with her, she never passed. When he couldn't solve the mansion, he tries to free the sanctuary asap by asking her to leave the trials to him and gets rejected. In his view, that was extremely frustrating. The last loop he leaves for about 2 days and finds her completely broken and dependent. He literally saw the worst parts of her during this arc. - -Oh yeah he definitely gaslit Emilia there with some of the events that never happened. He was too emotional to fact check.";False;False;;;;1610618170;;False;{};gj7poub;False;t3_kwisv4;False;False;t1_gj5u02h;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7poub/;1610694593;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Ganondurf4262;;;[];;;;text;t2_69300sor;False;False;[];;Yeah, I was about to say the same. Generally I see anime with 98 % upvotes but for ReZero, it's kinda low at 96 %. A bunch of people are unhappy with Subaru-Emilia development so yeah, it could be a big reason, I've seen quite a few hate comments on Youtube too;False;False;;;;1610618293;;False;{};gj7pt2a;False;t3_kwisv4;False;False;t1_gj7l3rx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7pt2a/;1610694659;9;True;False;anime;t5_2qh22;;0;[]; -[];;;elothere1;;;[];;;;text;t2_4hr8zfko;False;False;[];;AKA: Gitgud;False;False;;;;1610618327;;False;{};gj7pu8t;False;t3_kwisv4;False;False;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7pu8t/;1610694677;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UchihaEmre;;;[];;;;text;t2_jlp6b;False;False;[];;Silent Voice moment;False;False;;;;1610618450;;False;{};gj7pyi2;False;t3_kwisv4;False;True;t1_gj57ibq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7pyi2/;1610694742;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Spoilers.;False;False;;;;1610618515;;False;{};gj7q0qa;False;t3_kwisv4;False;False;t1_gj7pkh9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7q0qa/;1610694776;8;True;False;anime;t5_2qh22;;0;[]; -[];;;fufususu;;;[];;;;text;t2_15yfxh;False;False;[];;"I liked Otto's part a lil more once Echidnut mentioned how his backstory drew parallels to Subaru's own. Being ostracized for his power, and it being a ""curse"" to him until he learnt to use it to his advantage. This establishes why he yearns to help Subaru so much, it's almost like he's helping himself, despite not knowing Subaru's actual power. - -Subaru professing his love is a bit cheesy though. He believes in her because he loves her, and he loves her because she's got cool eyes and shit... it feels weird that he chose her appearance to be the backbone of his love, rather than her being actually kind of a cool person. Eh, maybe I'm not reading between the lines";False;False;;;;1610618631;;False;{};gj7q4n9;False;t3_kwisv4;False;True;t1_gj6nkdt;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7q4n9/;1610694844;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Songblade7;;;[];;;;text;t2_z0flbn9;False;False;[];;What a great episode! Now if only every damn YouTube reactor watching this episode didn't post the big moment at the end as their thumbnail... Damn that's always annoying.;False;False;;;;1610618796;;False;{};gj7qabp;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7qabp/;1610694933;7;True;False;anime;t5_2qh22;;0;[]; -[];;;TheBeankun;;;[];;;;text;t2_6hvwgrg;False;False;[];;Wow i can't believe it, im super used to the new world and totally forgot what she looked liked;False;False;;;;1610618948;;False;{};gj7qfgv;False;t3_kwisv4;False;True;t1_gj7jefx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7qfgv/;1610695018;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kfijatass;;;[];;;;text;t2_6tii3;False;False;[];;Oh okay, thought that was implied somehow already. Forget I asked, then!;False;False;;;;1610619094;;False;{};gj7qkh3;False;t3_kwisv4;False;False;t1_gj7q0qa;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7qkh3/;1610695097;9;True;False;anime;t5_2qh22;;0;[]; -[];;;keizee;;;[];;;;text;t2_12ym19;False;False;[];;"Arc 1 he hasn't understood his power yet, by the time he did, his motivation was from impending survivor's guilt. - -Arc 2 wasn't really for Emilia. He could have survived, but then he got kinda attached to the people in the mansion over 1.5 weeks. - -There's a short time skip between arc 2 and 3 to develop relationships. Arc 3 was when Subaru got a lot more self-aware and really noticed that he was hopelessly in love.";False;False;;;;1610619176;;False;{};gj7qnch;False;t3_kwisv4;False;True;t1_gj5m3e0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7qnch/;1610695140;0;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;No, Subaru didn't even told Emilia.;False;False;;;;1610619194;;False;{};gj7qnyi;False;t3_kwisv4;False;False;t1_gj7qkh3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7qnyi/;1610695152;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Citizen-of-Internet;;;[];;;;text;t2_4jllm2j8;False;False;[];;u/savevideo;False;False;;;;1610619265;;False;{};gj7qqf1;False;t3_kwhpxz;False;True;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj7qqf1/;1610695189;1;True;False;anime;t5_2qh22;;0;[]; -[];;;platysoup;;;[];;;;text;t2_4nzfs;False;False;[];;Well, at least she didn't walk in during *that* isekai;False;False;;;;1610619551;;False;{};gj7r0az;False;t3_kwisv4;False;True;t1_gj4qi5c;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7r0az/;1610695345;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NtSureWhtImDoingHere;;;[];;;;text;t2_3j31zm;False;False;[];;OP and ED are truly Slothful.;False;False;;;;1610619585;;False;{};gj7r1gv;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7r1gv/;1610695362;7;True;False;anime;t5_2qh22;;0;[]; -[];;;lhbdawn;;;[];;;;text;t2_5nsijqo7;False;False;[];;"bgs ep 4 flashbacks - did he say ""i love you"" more than sakuta?";False;False;;;;1610619688;;1610625057.0;{};gj7r55w;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7r55w/;1610695418;2;True;False;anime;t5_2qh22;;0;[]; -[];;;platysoup;;;[];;;;text;t2_4nzfs;False;False;[];;You just blew my mind;False;False;;;;1610619969;;False;{};gj7rew0;False;t3_kwisv4;False;True;t1_gj4h4ae;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7rew0/;1610695564;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610620079;;False;{};gj7ritw;False;t3_kwisv4;False;True;t1_gj7r55w;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ritw/;1610695627;0;True;False;anime;t5_2qh22;;0;[]; -[];;;platysoup;;;[];;;;text;t2_4nzfs;False;False;[];;Hey hey another Beako fan;False;False;;;;1610620249;;False;{};gj7roy9;False;t3_kwisv4;False;True;t1_gj4iml9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7roy9/;1610695725;2;True;False;anime;t5_2qh22;;0;[]; -[];;;platysoup;;;[];;;;text;t2_4nzfs;False;False;[];;They already held hands last ep, she giga preggers now;False;False;;;;1610620342;;False;{};gj7rs9k;False;t3_kwisv4;False;True;t1_gj4oua6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7rs9k/;1610695778;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wotmato;;;[];;;;text;t2_6wdaquwy;False;False;[];;To me this was deep and fullfiling. Inorganic and weird should you be suprise? no, everyone knows Subaru is akward. His speech this time feels like a teenager who's trying his best to be the person to his lover;False;False;;;;1610620372;;False;{};gj7rtbj;False;t3_kwisv4;False;True;t1_gj6gr1z;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7rtbj/;1610695794;1;True;False;anime;t5_2qh22;;0;[]; -[];;;platysoup;;;[];;;;text;t2_4nzfs;False;False;[];;Fuck that made me laugh;False;False;;;;1610620381;;False;{};gj7rtot;False;t3_kwisv4;False;True;t1_gj723yl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7rtot/;1610695799;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Necromancer5211;;;[];;;;text;t2_116ij8;False;False;[];;Well you will understand it...its hilarious;False;False;;;;1610620413;;False;{};gj7rut8;False;t3_kwisv4;False;False;t1_gj5ea79;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7rut8/;1610695818;4;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;Man of culture;False;False;;;;1610620427;;False;{};gj7rvcc;False;t3_kwisv4;False;True;t1_gj7pjgr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7rvcc/;1610695826;2;True;False;anime;t5_2qh22;;0;[]; -[];;;pekoragadaisuki;;;[];;;;text;t2_909wazha;False;False;[];; I'm sure Otto's back hurts from carrying his huge balls.;False;False;;;;1610620535;;False;{};gj7rzbp;False;t3_kwisv4;False;True;t1_gj4ehq8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7rzbp/;1610695891;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lordofdepression;;;[];;;;text;t2_75f08;False;False;[];;And this is why romance died.;False;False;;;;1610620608;;False;{};gj7s1yj;False;t3_kwisv4;False;True;t1_gj7okey;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7s1yj/;1610695932;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;keizee;;;[];;;;text;t2_12ym19;False;False;[];;"He definitely completely dodged the stuff about the promise, but the rest i interpreted went something like 'stop getting hurt for me thats selfish', 'how am i supposed to know what you're thinking. im doing it because i want to/for my sake, to look good in front of you' <- which imo, is already much better, dodged the biggest landmine from the last quarrel they had. And the rest is just subaru trying to convince her that he's in love. - -As for why the promise is broken, it will be revealed eventually.";False;False;;;;1610620615;;False;{};gj7s274;False;t3_kwisv4;False;True;t1_gj5cccu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7s274/;1610695936;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tobeyornotoby;;;[];;;;text;t2_4offyg3q;False;False;[];;Where can you see the up/downvote ratio?;False;False;;;;1610620650;;False;{};gj7s3h0;False;t3_kwisv4;False;True;t1_gj7l3rx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7s3h0/;1610695957;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ashutosh29;;;[];;;;text;t2_5w0dob4v;False;False;[];;">Tbf I also did overexaggerate my feelings towards this episode. I wasn't mad while watching I simply rolled my eyes. The comment simply turned out like this for some reason. Maybe because I saw all the all the praise it gets, so I thought if I'm going to be the only one complaining, I might as well go all out. - -Fair. I can understand that and also the rolling your eyes part cause well in normal circumstances, what happened is kinda uncanny, except these two aren't normal. - - ->The reason why she is in distress doesn't really matter, but, among other things, isn't she mad at him because he broke her promise? And to her kissing is probably a big deal, which is why it's even more confussing why she would do it with someone she is not convinced loves her. Maybe she did it with no real feeling of romantic love, only as a confirmation of trust, but do you think Subaru is emotionally mature enough to seperate romantic love from wanting to help her? - - -Well, it does, because Subaru being aware of her mental state because of the past loops affects the thinking behind his actions. But I think you should give a read to this comment I came across as it pretty much says what I wanted in a much broader and clearer way with answers to some of your questions. You are oversimplifying their mental state and intentions behind their words to relate it to the toxic reltionship frame conciously or unconciously and this comment delves into that, you can still disscuss it with me but try to understand this one rather then going, ""but...."" - - -https://www.reddit.com/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4eeoi?utm_medium=android_app&utm_source=share&context=3 - - -Also Emilia loves Subaru, she hasn't realized it herself here in anime that much but the detail that was left from what I have seen from LN readers is her saying ""yeah"" at the end when she finally has a reflection of Subaru in her eyes when he says ""you will find a feeling that keeps you going"", it wasn't just a random guy even if she didn't realised that, he is the closest person to her after puck. - -And imma be plain honest dude in what I am thinking rn at this point, there has to be a reason or you have past experience with abusive relationships or your friend having one cause you are honestly overthinking it to a point where you ignore the main shit. Subaru doesn't need to seperate those feelings, he helps her cause he has romantic feelings for her and he cares about her, that has been the point from the start. - - ->There may not have been a good timing to complain, but that doesn't excuse the fact that it felt forced and sudden. Some kind of prior indicator that he sees her ""bad sides"" would've been nice. He didn't even have to do it to her face. He could have even framed it as a passing joke. He didn't have to shit all over her, but something like a ""you're frustrating (lol)"" isn't really much to ask. Friends do it all the time. - -The comment I link deleved into this but I will say a bit more, Subaru doesn't need to say it out loud to her for us to know that he felt, his many mental breakdowns tell us clearly that he isn't having fun when dealing with all of this, it wasn't sudden or forced at all. - -He didn't said it cause it is natural to him to help her through her problems and support her even if he is suffering. We don't say stuff out loud that is natural to us even if we feel like its hard and you especially won't blame it on the person you are doing it for. Imagine him doing what you said and saying it to someone else or just himself and not in that situation, he looks like a douche, which he isn't. A father doesn't complain in front of others in a way like, ""man my kids are such a pain"", this wording is common especially on the net but what it mostly means is ""man taking care of my kids is harsh"", it takes effort, you aren't praised, many times the kids don't even realize your effort but yoir kids aren't a pain, the process for caring for them is. See the similarities? Subaru has voiced and confeseed about many times that the process is harsh but he doesn't truly believe that Emilia is pain in the ass even if he says it in that scene. - -This is the girl that was driven to madness because of her issues and you expect the dude who loves her to make a snarky remark like that? It's true that friends say shit all the time but it's also true that there have been certain words that they have forgotten, I haven't. What may do something like that is never known and doing that to someone like her is a horrible idea when she already is confused about the reason that Subaru helps her. - ->While we're at that topic, him compaining about her doesn't even feel waranted, because all her problems are understandable. As you said, he couldn't openly tell it to her face because she WAS trying and suffering. He is getting emotionally tortured yet still endures it to save everybody. What a flawed character. Again, Rems speech, which I think this scene was an obvious allusion to (same structure) worked because Subaru HAD obvious flaws. All the complaints he had are automatically valid because he said them about himself, reinterpreting his actions from the whole 1st season in a bad way. - -Save everybody that matters to him*. I also cleared the fact that he didn't had anything to tell her, it was natural to him. Subaru is not complaining because he wants to, Emilia asked him too. He already knows and understands it's hard for her, the emphasis was here is your shit I know that, I am not blind, DESPITE that I believe in you cause I love you and here is why. In both the instances with Rem and Subaru the one listening wanted or needed someone to have expectations from them and believe in them, that is the point. - ->Even in an argument you can have some kind of control over what you're saying. There is stuff you just don't say. This line is basically the repeat of a thing I thought he got over with in the last season so it's extra frustrating and hard to think he didn't mean it. - -We have full control rn, irl you don't and he said all that cause he wanted her to be mad cause Emilia asked him to be, that wasn't what he thinks. In arguements you say shit sometimes just to hurt the other person, nothing more than that. - - ->Also, I didn't adress this originally, but why did he lie to her? Why not simply tell her he can't stay the whole night because he has some important things to do, but instead that he would stay untill she fell asleep. A big part of this could've been avoided. - - -Mental state, puck gone, not the best time to talk about the plan, he didn't knew she would wake up or react like that. - - ->Finally, people keep saying thats not a start to their relationship, but it's clearly building towards it. I don't see the difference. Even if they never get into a proper relationship, which from a meta perspective I doubt, it only gives Subaru, and the audience, more hope for the future. - -I never said that is not a start, it definetly is, it is literally the confession and realizing the feelings thing dude. I said they haven't become a couple, cause the main focus was not about them becoming a couple but Subaru making his feelings clear and reassuring that he believes in her. - -All this has made me rethink some stuff like the doll line that he said wasn't done unconciously but on purpose cause he wanted her to get mad and Emilia asked for it. Anyways in the end, this is all I can explain dude. The problem is simple you are selecting particular stuff while ignoring a whole lot to come to the conclusions you are rn from what I can see, I kinda hope it isn't the case rn but oh well, I wrote all this well cause I love the series and wanted to make sure others do too the same as me but if you simply can't understand it then nothing can be done.";False;False;;;;1610620682;;False;{};gj7s4jz;False;t3_kwisv4;False;True;t1_gj7n1f4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7s4jz/;1610695975;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Methode_Type004;;;[];;;;text;t2_xz0a0y7;False;False;[];;yes;False;False;;;;1610620700;;False;{};gj7s57s;False;t3_kwisv4;False;True;t1_gj4yzdz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7s57s/;1610695986;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;"On desktop version, not mobile. On the right hand side it will say the exact amount of upvotes then below in brackets it will say somethibg like: - -(96% upvoted)";False;False;;;;1610620705;;False;{};gj7s5fq;False;t3_kwisv4;False;False;t1_gj7s3h0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7s5fq/;1610695989;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Methode_Type004;;;[];;;;text;t2_xz0a0y7;False;False;[];;"> troublesome girl?";False;False;;;;1610620710;;False;{};gj7s5mh;False;t3_kwisv4;False;True;t1_gj4y91b;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7s5mh/;1610695991;1;True;False;anime;t5_2qh22;;0;[]; -[];;;platysoup;;;[];;;;text;t2_4nzfs;False;False;[];;So... Threesome then?;False;False;;;;1610620726;;False;{};gj7s65k;False;t3_kwisv4;False;True;t1_gj6zvhw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7s65k/;1610695999;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tobeyornotoby;;;[];;;;text;t2_4offyg3q;False;False;[];;Thanks;False;False;;;;1610620979;;False;{};gj7sf90;False;t3_kwisv4;False;False;t1_gj7s5fq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7sf90/;1610696151;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Mr_Magika;;;[];;;;text;t2_i0hp9;False;False;[];;Well that was cute and fluffy.;False;False;;;;1610621134;;False;{};gj7sko8;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7sko8/;1610696240;3;True;False;anime;t5_2qh22;;0;[]; -[];;;arms98;;;[];;;;text;t2_rkxkj;False;False;[];;What kind of protagonist dies with the op playing (subaru hasn't right?);False;False;;;;1610621294;;False;{};gj7sqfd;False;t3_kwisv4;False;True;t1_gj5cj53;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7sqfd/;1610696329;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AJDx14;;;[];;;;text;t2_134qvbr;False;False;[];;"The story and the fights are separate things though. - -The story remains good but the fights worsen. The overall product is worse as a result but we were initially just talking about the story.";False;False;;;;1610621408;;False;{};gj7suf0;False;t3_kwhejb;False;True;t1_gj7os1m;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj7suf0/;1610696391;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;A flying Ram?;False;False;;;;1610621926;;False;{};gj7td4l;False;t3_kwisv4;False;True;t1_gj60c3n;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7td4l/;1610696681;2;True;False;anime;t5_2qh22;;0;[]; -[];;;miojx;;;[];;;;text;t2_3ivw94vb;False;False;[];;And what happens? I don’t get it;False;False;;;;1610622088;;False;{};gj7tj2l;False;t3_kwisv4;False;True;t1_gj7llq0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7tj2l/;1610696772;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;"Subaru-kun >> freedom-kun";False;False;;;;1610622180;;False;{};gj7tmic;False;t3_kwisv4;False;True;t1_gj7eakt;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7tmic/;1610696827;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tbu987;;;[];;;;text;t2_et89x;False;False;[];;The real world aint disneyland;False;False;;;;1610622557;;False;{};gj7u0b6;False;t3_kwisv4;False;True;t1_gj672tg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7u0b6/;1610697037;0;True;False;anime;t5_2qh22;;0;[];True -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"First lets make sure you understand the first episode of this cour. - ---- - -Subaru doesn't want to rely on RBD anymore. - -Subaru makes a bet to Roswaal. - ---- -*The bet:* - -Subaru has to save the Sanctuary by finishing the trials, before the Great Rabbit comes. - -Subaru has to save the Mansion from Elsa and Mellie. - -Subaru has to do it in this loop. - ---- -In case of Success: - -Roswaal stops following the Gospel, and follows Subaru. - ---- - -Why would Roswaal accept? - -Roswaal said **""It isn't a bad idea to lay some groundwork for the next me.""**, meaning since this loop is already deviated from the Gospel might as well let Subaru try whatever he wants, when Subaru fails it'll reinforce that Subaru must follow the path of Isolation and save only Emilia from then on. - ---- -In case of Failure: - -Subaru must only save Emilia from then on and pass the trials instead, and all the people in the mansion will be dead. He might also have to take the contract from Echidna in order to restore the qualification.";False;False;;;;1610622574;;False;{};gj7u0xk;False;t3_kwisv4;False;False;t1_gj7tj2l;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7u0xk/;1610697047;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Ganondurf4262;;;[];;;;text;t2_69300sor;False;False;[];;Haha, these two were one of the first anime I watched lol;False;False;;;;1610622588;;1610628842.0;{};gj7u1g6;False;t3_kwisv4;False;True;t1_gj7rvcc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7u1g6/;1610697054;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;Ahh yes. The Beast Titan;False;False;;;;1610622688;;False;{};gj7u5ae;False;t3_kwisv4;False;False;t1_gj4jx8s;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7u5ae/;1610697113;4;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;I recognize that comment, it was under the video crunchyroll uploaded isn't it;False;False;;;;1610622755;;False;{};gj7u7sg;False;t3_kwisv4;False;True;t1_gj7o847;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7u7sg/;1610697155;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;The brother with a bigger pussy than his sister;False;False;;;;1610622791;;False;{};gj7u97x;False;t3_kwisv4;False;True;t1_gj67idp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7u97x/;1610697176;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ohoni;;;[];;;;text;t2_91pt3;False;False;[];;Loved that one. It was so nice seeing them be brutally honest with each other for once, not holding back on what they really thought. I loved how Emilia was reflected in Subaru's eyes the entire time, but only in that last moment was he reflected in hers, when she truly *saw* him.;False;False;;;;1610622803;;False;{};gj7u9od;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7u9od/;1610697184;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;But how would roswaal know if he did it on this loop or if he tried a million times?;False;False;;;;1610622861;;False;{};gj7ubsv;False;t3_kwisv4;False;True;t1_gj7u0xk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ubsv/;1610697214;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ohoni;;;[];;;;text;t2_91pt3;False;False;[];;Roswaal wouldn't know that though. :D;False;False;;;;1610622929;;False;{};gj7uee7;False;t3_kwisv4;False;True;t1_gj7llq0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7uee7/;1610697253;1;True;False;anime;t5_2qh22;;0;[]; -[];;;miojx;;;[];;;;text;t2_3ivw94vb;False;False;[];;"Thanks for the answer, i get why about if he succeed, but not about if he fails - -Roswell doenst has any reason to accept, even if subaru doesn’t want to rely on rbd, doesn’t means that he wont use it";False;False;;;;1610622973;;False;{};gj7ug11;False;t3_kwisv4;False;True;t1_gj7u0xk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ug11/;1610697277;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Stingray_2000;;;[];;;;text;t2_5lwxupf;False;False;[];;u/savevideo;False;False;;;;1610623010;;False;{};gj7uhg8;False;t3_kwhpxz;False;True;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj7uhg8/;1610697299;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ohoni;;;[];;;;text;t2_91pt3;False;False;[];;"Love isn't logical. You can't make a sound argument for ""why love."" If you can, it's not love.";False;False;;;;1610623118;;False;{};gj7uljn;False;t3_kwisv4;False;True;t1_gj7hodk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7uljn/;1610697358;2;True;False;anime;t5_2qh22;;0;[]; -[];;;justendmeffs;;;[];;;;text;t2_616awwfq;False;False;[];;Not really. You're just making shit up at this point. Dodging the kiss is exactly what Subaru meant at that point. Emilia had never reciprocated or acknowledged Subaru's feelings as anything more than a one-sided crush. That's also not how Japanese works.;False;False;;;;1610623162;;False;{};gj7un73;False;t3_kwisv4;False;False;t1_gj7f6r4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7un73/;1610697381;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;Seems to have been more controversial than expected. Some people don't seem to like the 2nd half and others are probably salty shippers;False;False;;;;1610623263;;False;{};gj7ur1g;False;t3_kwisv4;False;False;t1_gj7l3rx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ur1g/;1610697440;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Exodus2791;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Exodus27;light;text;t2_atamv;False;True;[];;"I was so worried that there would be the old 'stab through the chest from behind"" scene.";False;False;;;;1610623293;;False;{};gj7us6l;False;t3_kwisv4;False;True;t1_gj5d89r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7us6l/;1610697457;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MidnightShout;;;[];;;;text;t2_d1c34;False;False;[];;Welcome back to the dumpster fire y'all.;False;False;;;;1610623527;;False;{};gj7v161;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj7v161/;1610697596;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RunningChemistry;;MAL;[];;http://myanimelist.net/profile/Delphic-Runner;dark;text;t2_d5c9q;False;False;[];;Here's a link to the relevant tweet from the author, since everyone doesn't seem to understand what it means when someone asks for a source apparently: https://twitter.com/nezumiironyanko/status/1349365214605545482;False;False;;;;1610624379;;False;{};gj7vy6w;False;t3_kwisv4;False;True;t1_gj5zbou;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7vy6w/;1610698124;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jeroz;;;[];;;;text;t2_4qy3a;False;False;[];;"Dark skin as well - -Can we get more cliche?";False;False;;;;1610624565;;False;{};gj7w5f6;False;t3_kwisv4;False;False;t1_gj4zgy5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7w5f6/;1610698231;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Jeroz;;;[];;;;text;t2_4qy3a;False;False;[];;Did you perhaps didn't read that word correctly?;False;False;;;;1610624694;;False;{};gj7wadw;False;t3_kwisv4;False;True;t1_gj5qhvu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7wadw/;1610698307;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zarkovis1;;;[];;;;text;t2_16qs72;False;False;[];;NBA memes in my Rezero, this either the best or darkest timeline.;False;False;;;;1610624792;;False;{};gj7we96;False;t3_kwisv4;False;True;t1_gj4jzbq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7we96/;1610698364;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Buglante;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Vinland saga goat;light;text;t2_6nah75po;False;False;[];;i think that might have to do with salty shippers who wanted subaru to end up with rem and this episode being basically a huge middle finger to them made them angry. I think that's cringe;False;False;;;;1610624854;;False;{};gj7wgmc;False;t3_kwisv4;False;False;t1_gj7pt2a;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7wgmc/;1610698398;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610624909;;False;{};gj7wiub;False;t3_kwisv4;False;True;t1_gj78en5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7wiub/;1610698434;1;True;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;Is this the episode light novel reader were hyping up? This was disappointing and cringy. Subaru's love for emilia is plain shallow and one dimensional. Frankly, i never really cared about the romantic aspect of this show and i am glad subaru finally got his kiss and stopped being an embarrassing simp so we can move forward with more important matters. I did like Otto's part though and i am starting to like him more.;False;False;;;;1610624967;;1610625818.0;{};gj7wl4f;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7wl4f/;1610698468;12;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;"Holy Satella, that was a fucking amazing episode. - -Best boi Otto becoming best-er already makes for a great episode - -and *then* Takahashi Rie delivers a fucking amazing performance. - -and *THEN* Kobayashi Yusuke follows suit. - -*AND* the writing is also great; such an intense drama and a realistic portrayal of someone with deep self-loathing (Emilia) - -HOW IS THIS ANIME SO GOOD.";False;False;;;;1610625205;;False;{};gj7wuhf;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7wuhf/;1610698606;5;True;False;anime;t5_2qh22;;0;[]; -[];;;mebbyyy;;;[];;;;text;t2_140xnnhl;False;False;[];;U will know why is she the way she is later on. Just be patient.;False;False;;;;1610625211;;False;{};gj7wuqu;False;t3_kwisv4;False;True;t1_gj4z0so;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7wuqu/;1610698610;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FountainsOfFluids;;;[];;;;text;t2_6sp2c;False;False;[];;"> They were close now. They had shouted themselves out, and there was nothing else to say. - -> He leaned in a little closer. She was still just looking at him, unmoving. - -> He whispered, ""I really want to kiss you right now."" - -> Her breath caught. She wanted to look at his eyes, but for some reason she kept looking back down at his lips. His warm breath filled her senses. - -> Again he whispered, ""Do you want me to kiss you?"" - -> Before she could think up some new excuse, she said ""Yes."" And relief flooded her, it was finally going to happen, the next step she had been hoping for. She hadn't messed it up. - -> She barely had barely begun to move toward him and he was there, meeting her lips with his.";False;False;;;;1610625338;;False;{};gj7wzrk;False;t3_kwisv4;False;False;t1_gj7s1yj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7wzrk/;1610698686;5;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;Zeke and Roswaal dislike this.;False;False;;;;1610625445;;False;{};gj7x444;False;t3_kwisv4;False;False;t1_gj4if2v;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7x444/;1610698754;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pleiades1208;;;[];;;;text;t2_8e61j5he;False;False;[];;lol i've literally seen you in every other thread shitting on other anime. What is the problem with you?;False;False;;;;1610625571;;False;{};gj7x953;False;t3_kwisv4;False;True;t1_gj7wl4f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7x953/;1610698828;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Yvil1905;;;[];;;;text;t2_7abqgdq;False;False;[];;Before that;False;False;;;;1610625643;;False;{};gj7xbz1;False;t3_kwisv4;False;True;t1_gj6sw4i;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7xbz1/;1610698873;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jobe1105;;;[];;;;text;t2_wccn6;False;False;[];;Everywhere I go, I see her face.;False;False;;;;1610625658;;False;{};gj7xckr;False;t3_kwisv4;False;True;t1_gj4zjuf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7xckr/;1610698882;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"Roswaal knows subaru can take as many chances with the bet but he believes subaru cannot change the future written in the gospel - -Eventually after failing again and again subaru will come to his senses and accept Roswaal's conditions may that take ten, hundred or a thousand loops eventually the Human mind will concede - -Thus he is playing the long game as at least another roswaal will win regardless if the current one doesn't succeed that is if what is written in the gospel cannot change";False;False;;;;1610625826;;False;{};gj7xj9h;False;t3_kwisv4;False;False;t1_gj7u0xk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7xj9h/;1610698986;2;True;False;anime;t5_2qh22;;0;[]; -[];;;senpaiking19;;;[];;;;text;t2_4vg5i8gw;False;False;[];;For me, the maid outfit makes her more adorable.;False;False;;;;1610625901;;False;{};gj7xmb9;False;t3_kwhpxz;False;True;t1_gj482pi;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj7xmb9/;1610699032;1;True;False;anime;t5_2qh22;;0;[]; -[];;;one-eyed-02;;;[];;;;text;t2_783k5oi0;False;False;[];;Well Ground Dragons can live for quite a while, \~100 years or so.;False;False;;;;1610625935;;False;{};gj7xno6;False;t3_kwisv4;False;True;t1_gj5ghig;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7xno6/;1610699051;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheSkipRow;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheSkipRow;light;text;t2_sitr3;False;False;[];;"> With the author conveniently removing Rem from the whole scenario as well, - -Seethe";False;False;;;;1610626069;;False;{};gj7xt83;False;t3_kwisv4;False;True;t1_gj5trki;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7xt83/;1610699133;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Narquith;;;[];;;;text;t2_11x96r;False;False;[];;The writing is cringe as fuck;False;False;;;;1610626070;;False;{};gj7xt9p;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7xt9p/;1610699134;12;True;False;anime;t5_2qh22;;0;[]; -[];;;SSJ5Gogetenks;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/SoundwaveAU;light;text;t2_5rycz;False;False;[];;It was fucking weird in the LN too man;False;False;;;;1610626339;;False;{};gj7y4ec;False;t3_kwisv4;False;False;t1_gj7aenu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7y4ec/;1610699295;7;True;False;anime;t5_2qh22;;0;[]; -[];;;pleiades1208;;;[];;;;text;t2_8e61j5he;False;False;[];;lol care to explain why you thought it was cringe? Stop the salt pls;False;False;;;;1610626769;;False;{};gj7ymqu;False;t3_kwisv4;False;False;t1_gj7xt9p;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ymqu/;1610699568;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Blue_Storm11;;;[];;;;text;t2_2v5lcrru;False;False;[];;">The same people who praise episode 18. Whilst I love that episode, Rem is someone outlining her entire life for someone she's known for two minutes and has also killed previously but you all lapped it up. Out of the two conversations in real life, the Rem confession should be the most likely to be tagged as ""creepy"" or ""weird"". - -Rem thinking about life with someone shes madly in love with is not really abnormal it was also a month in between arcs.";False;False;;;;1610627055;;False;{};gj7yz4y;False;t3_kwisv4;False;False;t1_gj7aoxv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7yz4y/;1610699754;0;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;I like how this is a real sub;False;False;;;;1610627055;;False;{};gj7yz54;False;t3_kwisv4;False;False;t1_gj6e2bp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7yz54/;1610699754;2;True;False;anime;t5_2qh22;;0;[]; -[];;;garmonthenightmare;;;[];;;;text;t2_tpz2o;False;False;[];;"Novel readers ""Didn't spoil it"" - -Crunchyroll: ""Fine I do it myself""";False;False;;;;1610627141;;False;{};gj7z307;False;t3_kwisv4;False;True;t1_gj64ejv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7z307/;1610699812;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;"Subaru to Emilia: I'm just like you. - -(referring to their respective self-hatred)";False;False;;;;1610627172;;False;{};gj7z4an;False;t3_kwisv4;False;False;t1_gj4vsx9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7z4an/;1610699831;15;True;False;anime;t5_2qh22;;0;[]; -[];;;DaijobuJanai;;;[];;;;text;t2_4k3oyyw0;False;False;[];;NaSu's Bizzare Adventure;False;False;;;;1610627235;;False;{};gj7z732;False;t3_kwisv4;False;False;t1_gj4v270;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7z732/;1610699874;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610627246;;1610634227.0;{};gj7z7ky;False;t3_kwisv4;False;True;t1_gj7yz4y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7z7ky/;1610699882;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rebelofan;;;[];;;;text;t2_6ps0vyio;False;False;[];;Door. Song by emilia’s VA;False;False;;;;1610627395;;False;{};gj7ze36;False;t3_kwisv4;False;True;t1_gj5i505;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7ze36/;1610699981;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;That's not how it works in real life. Even the best relationships will have friction. But you know the relationship is a good one if both parties can make up and genuinely learn from the fights and be better for each other.;False;False;;;;1610627497;;False;{};gj7zimz;False;t3_kwisv4;False;True;t1_gj4x7cz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7zimz/;1610700048;2;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610627557;;1610629862.0;{};gj7zla5;False;t3_kwisv4;False;True;t1_gj7ur1g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7zla5/;1610700086;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rebelofan;;;[];;;;text;t2_6ps0vyio;False;False;[];;Door. Song by Emilia’s VA.;False;False;;;;1610627612;;False;{};gj7znph;False;t3_kwisv4;False;True;t1_gj5g1c9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7znph/;1610700127;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;"I'd say their bickering this episode *is* the ""talk it out"" thing you said. People don't go debate mode armed with logic and eloquent words when they are emotional. No one does that in real life unless you're in specifically professional or formal setting. This episode is already a good portrayal of the bickerings that will occasionally happen in any relationship. The important thing is just that both parties develop from the arguments.";False;False;;;;1610627695;;False;{};gj7zre1;False;t3_kwisv4;False;True;t1_gj66te6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7zre1/;1610700183;2;False;False;anime;t5_2qh22;;0;[]; -[];;;Blue_Storm11;;;[];;;;text;t2_2v5lcrru;False;False;[];;Well i dont really have a problem with reason to believe or subarus love for Emilia i thought how much subaru uses love for everything reduced the emotional impact even if i understand that Emilia needs constant reaffirmation.;False;False;;;;1610627697;;False;{};gj7zrhs;False;t3_kwisv4;False;True;t1_gj7z7ky;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7zrhs/;1610700184;1;True;False;anime;t5_2qh22;;0;[]; -[];;;username6232;;;[];;;;text;t2_6a1wm24w;False;False;[];;it’s spoilers it’ll be revealed at the end of the season;False;False;;;;1610627723;;False;{};gj7zsn8;False;t3_kwisv4;False;True;t1_gj7ubsv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7zsn8/;1610700202;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;"Yeah, I feel that way too. People wanting Subaru and Emilia to both be perfect people are missing the point IMHO. People, especially in real life, are *not* perfect. - -""Intentionally bad is still bad!"" - -But no, this isn't ""intentionally bad."" The author is writing nuanced characters. Characters that feel real. That are imperfect, but that's not *all* they are, because just like real people, even if imperfect they also have their strengths, and bonds, and all the intricacies that come with the said bonds.";False;False;;;;1610627866;;False;{};gj7zz3h;False;t3_kwisv4;False;False;t1_gj4t8ab;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj7zz3h/;1610700307;5;True;False;anime;t5_2qh22;;0;[]; -[];;;thisthisisonlyforfun;;;[];;;;text;t2_3u4l5av9;False;False;[];;the episodes made me nearly cry out of pure damn happiness, Subaru now has a friend to rely on and doesn't need to worry about him being tricked and we finally are able to see Barusu kiss the woman he loves, damn it due to the craziness of the episodes i am now tempted to read the light novel to see what happens next.;False;False;;;;1610627889;;False;{};gj8004j;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8004j/;1610700324;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610627905;;1610634179.0;{};gj800v8;False;t3_kwisv4;False;True;t1_gj7zrhs;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj800v8/;1610700337;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;"'Cause Rem wasn't in Emilia's position - Narquith, probably. - -You'll see that all the people saying this lapped up the Rem confession in S1 EP 18. Funnily enough, it wasn't ""cringe"" then apparently.";False;False;;;;1610628014;;1610641028.0;{};gj805s4;False;t3_kwisv4;False;False;t1_gj7ymqu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj805s4/;1610700411;6;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Prety sure answearing this is a spoiler, so....I don't know XD;False;False;;;;1610628026;;False;{};gj806ax;False;t3_kwisv4;False;True;t1_gj7dkwl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj806ax/;1610700418;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;....Hopefuly XD;False;False;;;;1610628055;;False;{};gj807oi;False;t3_kwisv4;False;True;t1_gj7fdjw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj807oi/;1610700437;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xjarheadx;;;[];;;;text;t2_yj9oi;False;False;[];;"will we get to see more of puck? i dont want him to go.... -Also, please spoil why barusu had to leave emilia at night?";False;False;;;;1610628075;;False;{};gj808lf;False;t3_kwisv4;False;True;t1_gj4cva1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj808lf/;1610700451;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610628123;;False;{};gj80avb;False;t3_kwisv4;False;True;t1_gj7x953;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj80avb/;1610700484;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Combatmedic2-47;;;[];;;;text;t2_1yuarn47;False;False;[];;That’s still in the LN.;False;False;;;;1610628157;;False;{};gj80cf9;False;t3_kwisv4;False;True;t1_gj7jp7l;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj80cf9/;1610700506;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Blue_Storm11;;;[];;;;text;t2_2v5lcrru;False;False;[];;Yea i know i just think that subaru said i love you to much even with constant reaffirmation which makes the dialog feel a bit simple.;False;False;;;;1610628205;;False;{};gj80en1;False;t3_kwisv4;False;True;t1_gj800v8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj80en1/;1610700539;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Combatmedic2-47;;;[];;;;text;t2_1yuarn47;False;False;[];;Also Garfiel held in his fight with them, dude is really really strong but he doesn’t want to fully hurt Ram and Otto.;False;False;;;;1610628217;;False;{};gj80f6n;False;t3_kwisv4;False;True;t1_gj4kd12;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj80f6n/;1610700547;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610628342;;1610634171.0;{};gj80l4r;False;t3_kwisv4;False;True;t1_gj80en1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj80l4r/;1610700641;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutMcD;;;[];;;;text;t2_19qzik0t;False;False;[];;"As a good girl Eru Chitanda once said, ""I AM CURIOUS""";False;False;;;;1610628487;;False;{};gj80s0l;False;t3_kwisv4;False;False;t1_gj806ax;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj80s0l/;1610700740;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;I've been in Emilia camp since season 1 too! Stocks going stronk.;False;False;;;;1610628497;;False;{};gj80sir;False;t3_kwisv4;False;True;t1_gj4djlk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj80sir/;1610700747;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Blue_Storm11;;;[];;;;text;t2_2v5lcrru;False;False;[];;Well no i liked the episode only think i didn't like was how ram and otto vs garf was done. I just thought you where trying to discredit from zero which was probably a wrong assumption on my part.;False;False;;;;1610628504;;False;{};gj80sue;False;t3_kwisv4;False;True;t1_gj80l4r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj80sue/;1610700752;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;We truly doesn't deserve White Fox.;False;False;;;;1610628565;;False;{};gj80vqx;False;t3_kwisv4;False;False;t1_gj4tdbf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj80vqx/;1610700794;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610628583;;1610634151.0;{};gj80wmf;False;t3_kwisv4;False;True;t1_gj80sue;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj80wmf/;1610700807;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;"ngl Otto's backstory is pretty main character material. - -Otto spin-off when?";False;False;;;;1610628590;;False;{};gj80wyf;False;t3_kwisv4;False;False;t1_gj4nmdz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj80wyf/;1610700812;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Blue_Storm11;;;[];;;;text;t2_2v5lcrru;False;False;[];;Yep my bad but still theres nothing wrong with rem thinking about l having a life with subaru.;False;False;;;;1610628702;;False;{};gj812c3;False;t3_kwisv4;False;True;t1_gj80wmf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj812c3/;1610700899;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xRazuux;;;[];;;;text;t2_tgivp15;False;False;[];;It can be an imperfect confession and all that. There were still other things he could've said or just maybe shorten it. Just cause it was the authors intention doesn't mean I have to like it. Still a good scene though;False;False;;;;1610628776;;False;{};gj815zy;False;t3_kwisv4;False;False;t1_gj6r37x;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj815zy/;1610700957;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610628779;;1610634144.0;{};gj8164w;False;t3_kwisv4;False;True;t1_gj812c3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8164w/;1610700959;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Thisisthrowawayacco;;;[];;;;text;t2_4pvm97wv;False;False;[];;I wonder how rem would react to this lol, would she be angry at Subaru and/or Emilia? Run away? Accept it?;False;False;;;;1610628883;;False;{};gj81b7u;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj81b7u/;1610701033;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Blue_Storm11;;;[];;;;text;t2_2v5lcrru;False;False;[];;Sure like i think subarus confession could be done better but obiously there's nothing wrong with him confessing.;False;False;;;;1610628946;;False;{};gj81ec6;False;t3_kwisv4;False;True;t1_gj8164w;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj81ec6/;1610701080;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;weebs rise up;False;False;;;;1610628992;;False;{};gj81gl9;False;t3_kwisv4;False;True;t1_gj6u9hz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj81gl9/;1610701114;0;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;Otto is the bro we need, but don't deserve;False;False;;;;1610629054;;False;{};gj81jqg;False;t3_kwisv4;False;True;t1_gj7o847;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj81jqg/;1610701160;3;True;False;anime;t5_2qh22;;0;[]; -[];;;shibuinuchan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/shibuinu;light;text;t2_loeguz2;False;False;[];;Wtf and all this time I thought Ŗ̷̨̨̧̨̡͉͙̫͖̩̼̮̲̘͙͔͇̣̪̪̙͚̤̱̻͚̘̺̦̩̟̖̻̜̘͓̥̩̜͚̻̳̹͎͕̮͎̺̼͉̻̳̼͚̤̯̱̹̻͙͓̈̆͆̒̒̅̈́̄͛́̍̀̔̈́̈̈́̍̎̉̋̏͊̀̀̿̚͠͠ë̶̡̛̠͖̗͎̅̈͆̿́̅͗͑̑̇͌̽͒͒̏̿́̌̄̊̋͘̚̕͝͝m̴̢̧̧̧̢̛̛̫͍͍̰̟͔͕̙͈̘̖͓̦̖̜̣͓̫̻̞̥̟̫̯̟͍͈̮͓̜̯͉̱̫̗̤̓͐͗̊̊̅̑͊͌̇͛̀̋̅̓́̈́̅̾̑̂͊̍̐̊̍͐̋̄̋̂̊̍͐͛́̉͐̈́̆͋̃̀̾̏̎̍̈́̓͆̑͊̓̕̕͠͝͝ͅ had a chance. *Can’t believe I never picked up on that!*;False;False;;;;1610629273;;1610630195.0;{};gj81up3;False;t3_kwisv4;False;False;t1_gj4nt00;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj81up3/;1610701331;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610629453;;1610634127.0;{};gj823ox;False;t3_kwisv4;False;True;t1_gj81ec6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj823ox/;1610701470;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;It's the author's as well. He has stated that he loves the hell out of Emilia.;False;False;;;;1610629503;;False;{};gj82699;False;t3_kwisv4;False;False;t1_gj790d4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj82699/;1610701508;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cpscott1;;;[];;;;text;t2_u4jzo;False;False;[];;I feel like given the similarities between her and the witch it was inevitable.;False;False;;;;1610629668;;False;{};gj82enj;False;t3_kwisv4;False;True;t1_gj78k0i;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj82enj/;1610701632;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;You mean Rie? Because believe me I know about Takahashi-sama.;False;False;;;;1610629691;;False;{};gj82fub;False;t3_kwisv4;False;False;t1_gj7od4s;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj82fub/;1610701649;4;True;False;anime;t5_2qh22;;0;[]; -[];;;HyperdriveUK;;;[];;;;text;t2_wrzlj;False;False;[];;"Not sure why you keep bringing up the Rem confession? Did I say it was good? - -None of your points stand up- it's a terrible scene. It's forced and awkward, mainly due to him not been able to answer her question.. that and what I've already said. - -- My trust has been shattered, I've just lost my long term buddy and I've getting these odd memories back... oh and the guy who's already confessed to me before... is continuing to betray my trust and WON'T answer why. Yep Kissing time!!!! - -Oh I know... but Rem? Just admit it- it's not a good scene.";False;False;;;;1610629818;;False;{};gj82me8;False;t3_kwisv4;False;True;t1_gj7jmfo;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj82me8/;1610701746;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Blue_Storm11;;;[];;;;text;t2_2v5lcrru;False;False;[];;">See, I think it's just a slight difference of preference between us. I personally thought the confession was perfect because of how realistic and clumsy it was. As much as I loved episode 18 for how sweet it was, it was an unrealistic confession so didn't get me as much as this on - -Well why do you think it was unrealistuc. - ->You're welcome to have differing opinions but my original comment was about people purposefully hating on the episode like downvoting and making way over the top bad comments about it like saying the writing is ""cringe"" or ""creepy"" to name some examples, whilst also singing the praises of S1 episode 18. At that point it's just a huge contradiction. - -I think that even though reason to believe and from zero are similar there not similar enough that you have to like both of them so i dont like saying that because you like from zero you have to like reason to believe, even though i liked both of them.";False;False;;;;1610629835;;False;{};gj82n8o;False;t3_kwisv4;False;True;t1_gj823ox;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj82n8o/;1610701759;1;True;False;anime;t5_2qh22;;0;[]; -[];;;offoy;;MAL;[];;http://myanimelist.net/animelist/oFFoy;dark;text;t2_7a56z;False;False;[];;This episode had 2 titles! I like how re:zero uses episode titles to make episodes have bigger impact.;False;False;;;;1610629886;;False;{};gj82pvv;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj82pvv/;1610701799;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;Seriously, this ppl just need to read IF and stop watching all together if their ship is the only thing they care about;False;False;;;;1610629914;;False;{};gj82re6;False;t3_kwisv4;False;False;t1_gj805s4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj82re6/;1610701821;6;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;">Holy Satella - -I see what you did there";False;False;;;;1610629945;;False;{};gj82szo;False;t3_kwisv4;False;True;t1_gj7wuhf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj82szo/;1610701847;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cpscott1;;;[];;;;text;t2_u4jzo;False;False;[];;She still could TBH if she ever wakes up;False;False;;;;1610629995;;False;{};gj82vm1;False;t3_kwisv4;False;True;t1_gj81up3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj82vm1/;1610701886;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sparklingdump;;;[];;;;text;t2_c8d7k5w;False;False;[];;Can I just say fuck whoever manages crunchyroll's youtube account. Damn spoilers man.;False;False;;;;1610630083;;False;{};gj8306o;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8306o/;1610701957;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610630409;;1610634114.0;{};gj83hp8;False;t3_kwisv4;False;True;t1_gj82n8o;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj83hp8/;1610702223;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cpscott1;;;[];;;;text;t2_u4jzo;False;False;[];;I mean it's the literal definition of a romance anime. Hell the witch of envy gave him a power which until a couple episodes ago didn't realize why she did it.;False;False;;;;1610630513;;False;{};gj83ne9;False;t3_kwisv4;False;True;t1_gj4j0q8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj83ne9/;1610702310;1;True;False;anime;t5_2qh22;;0;[]; -[];;;miojx;;;[];;;;text;t2_3ivw94vb;False;False;[];;Cool, makes sense now;False;False;;;;1610630534;;False;{};gj83ojo;False;t3_kwisv4;False;True;t1_gj7xj9h;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj83ojo/;1610702327;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Tiger951;;;[];;;;text;t2_gqe8am6;False;False;[];;Pretty much.;False;False;;;;1610630601;;False;{};gj83s3a;False;t3_kwhejb;False;True;t1_gj53esj;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj83s3a/;1610702381;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;Yeah the shippers/waifu wars crowd of the Re:Zero and r/anime community are annoying as fuck.;False;False;;;;1610630624;;False;{};gj83tdm;False;t3_kwisv4;False;False;t1_gj82re6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj83tdm/;1610702403;7;True;False;anime;t5_2qh22;;0;[]; -[];;;offoy;;MAL;[];;http://myanimelist.net/animelist/oFFoy;dark;text;t2_7a56z;False;False;[];;Patience, my child.;False;False;;;;1610630730;;False;{};gj83z5s;False;t3_kwisv4;False;True;t1_gj6x2z5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj83z5s/;1610702489;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Onion_tomatoes;;;[];;;;text;t2_3n9eh4r8;False;False;[];;Wow, I can’t believe they did that to Otto 😂;False;False;;;;1610631048;;False;{};gj84gnt;False;t3_kwisv4;False;True;t1_gj75fgj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj84gnt/;1610702748;1;True;False;anime;t5_2qh22;;0;[]; -[];;;seviiens;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/totallynotkgb;light;text;t2_4jpv7;False;False;[];;I would die for Emilia;False;False;;;;1610631200;;False;{};gj84p35;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj84p35/;1610702876;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DatAwesomeDude97;;;[];;;;text;t2_iz842c;False;False;[];;Can anyone plz tell me what chapter(s) this episode covered? Andalso what arc;False;False;;;;1610631269;;False;{};gj84swc;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj84swc/;1610702934;3;True;False;anime;t5_2qh22;;0;[]; -[];;;shibuinuchan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/shibuinu;light;text;t2_loeguz2;False;False;[];;#**LOVE IS WAR**;False;False;;;;1610631474;;False;{};gj854gd;False;t3_kwisv4;False;False;t1_gj4vsx9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj854gd/;1610703107;14;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Why the upvotes of this episode which was much better than the last episode this low? I mean it was an episode hyped by the majority of LN readers and people were predicting it to reach 13-14K upvotes.;False;False;;;;1610631707;;False;{};gj85hvd;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj85hvd/;1610703305;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;But can you return from Death ?;False;False;;;;1610631771;;False;{};gj85lj3;False;t3_kwisv4;False;True;t1_gj84p35;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj85lj3/;1610703359;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;True;[];;Seems like it ended up being a controversial episode, some people aren't happy with the Subaru/Emilia romance - either the writing disappointed them or others are salty Rem fans.;False;False;;;;1610631889;;False;{};gj85sjs;False;t3_kwisv4;False;False;t1_gj85hvd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj85sjs/;1610703462;11;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;Well, waifu wars is a big thing. Few people wouldn't upvote the episode, some even downvoted it, upvote percentage is at 96 % which is kinda low as compared to other popular shows;False;False;;;;1610631900;;False;{};gj85t7k;False;t3_kwisv4;False;False;t1_gj85hvd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj85t7k/;1610703472;7;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Do you think that it will break its last episode's karma ?;False;False;;;;1610631971;;False;{};gj85xhx;False;t3_kwisv4;False;False;t1_gj85sjs;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj85xhx/;1610703537;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610632000;;False;{};gj85z7q;False;t3_kwhpxz;False;True;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj85z7q/;1610703561;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LilQuasar;;;[];;;;text;t2_tzbr5mp;False;True;[];;i know, but harassment is very different from rape. that was the point;False;False;;;;1610632054;;False;{};gj862df;False;t3_kwisv4;False;True;t1_gj7okey;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj862df/;1610703614;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;cbot12;;;[];;;;text;t2_18iru7dt;False;False;[];;Lmao this is the exact clip that got me into the show like 3 years ago;False;False;;;;1610632086;;False;{};gj864ak;False;t3_kwhpxz;False;True;t3_kwhpxz;/r/anime/comments/kwhpxz/chitanda_eru_being_photographed_hyouka/gj864ak/;1610703648;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;It might still reach 13k over the next day, but with the way karma usually tails off after the 1st 24 hours, 14k is definitely out of the question.;False;False;;;;1610632119;;False;{};gj8668k;False;t3_kwisv4;False;False;t1_gj85hvd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8668k/;1610703680;7;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Yeah, also 40 people voted this episode as bad. I mean even though it was a controversial episode but it was far from bad.;False;False;;;;1610632141;;False;{};gj867jh;False;t3_kwisv4;False;False;t1_gj85t7k;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj867jh/;1610703701;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Blue_Storm11;;;[];;;;text;t2_2v5lcrru;False;False;[];;">Is this a genuine question? Have you ever experienced or witnessed a confession that went anywhere near like that one did? It was a wish fulfillment confession, nothing wrong with it. It was executed to perfection but I can't believe anyone would think the Rem&Subaru dynamic in that episode was anywhere near realistic. - -Well like you didnt really answer why it was unrealistic just became a little passive aggressive as to why i would even think otherwise. What part of it did you find unrealistic. Was it that rem fantasizes about running away with subaru or that she choose to shower him with love because she saw how much he hated himself? - ->Don't think you're understanding properly. I never said you have to like both if you like one. I was saying to call the writing in the scene ""creepy"" or ""cringe"" in this scene makes 0 sense if you loved Rems confession. Since she fell way harder much faster - -I disagree i think subaru fell in love with emilia easier then rem fell in love with subaru but thats a conversion on its own. I think for the purpose of this conversation you can say its the same. - - >Subaru completely casted aside his negatives as if they didn't exist. She gave her entire being to someone she actually knows nothing about. When Subaru talked about his bad sides she didn't accept those parts of him and love him anyway, she failed to acknowledge them completely in favour for the parts she likes about - -Ok first things first is Rem understands all of subarus flaws and weaknesses, this is something Rem already does before from zero. In episode 14 subaru asks her if she thinks hes pathetic and she says yes. But in terms of the conservation why would you expect Rem to see how much Subaru hates and despsies him self and decide to tell him anything but what she loves about him? Kicking subaru while hes down and Telling subaru how weak and pathetic he is in that situation would not be a great desion from rem. - - - ->Why do you think Subaru has to ""act like a Hero"" for Rem? It's because the only parts she has shown an interest in is his good sides. Whilst Subaru acknowledges and calls out Emilia on her bad parts but still loves her anyway. That's why one confession is realistic and one isn't. - -Ok now you just missed the entire point of the scene rem loves all of subaru even his weak and pathetic side but she doesn't accept him like that. She wants him to be the best person that he can be. - -Subaru dosen't have to act like a hero for rem he wants to but Rem is one of the only people subaru feels he can show his weak side to and the one he relys on to help cover them. - ->Casting aside literally everything for someone you've known for a month and planned to kill a few days before that month started isn't a realistic scenario. - -What did rem cast aside in from zero? All she did was help him get over his problems.";False;False;;;;1610632197;;1610632508.0;{};gj86awc;False;t3_kwisv4;False;True;t1_gj83hp8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj86awc/;1610703754;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;It won't, 90% of the karma is determined by the first 24 hours and most probably it will end up with 11.8K at the end of 48 hours.;False;False;;;;1610632250;;False;{};gj86e44;False;t3_kwisv4;False;False;t1_gj8668k;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj86e44/;1610703805;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Anafiboyoh;;;[];;;;text;t2_d0kwj4k;False;False;[];;Otto was rejected by a fucking cat lmao;False;False;;;;1610632326;;False;{};gj86iqk;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj86iqk/;1610703878;7;True;False;anime;t5_2qh22;;0;[]; -[];;;KyosukeAyana;;;[];;;;text;t2_839ms4z6;False;False;[];;Well said, my friend.;False;False;;;;1610632469;;False;{};gj86rih;False;t3_kwisv4;False;True;t1_gj7moh6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj86rih/;1610704011;3;True;False;anime;t5_2qh22;;0;[]; -[];;;134561256hjgadhjaks;;;[];;;;text;t2_2ixg6114;False;False;[];;What a shit episode, like 5 mins of actual content;False;True;;comment score below threshold;;1610632504;;False;{};gj86tpy;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj86tpy/;1610704045;-20;True;False;anime;t5_2qh22;;0;[]; -[];;;KyosukeAyana;;;[];;;;text;t2_839ms4z6;False;False;[];;"Thank you. - -*Starts sobbing*";False;False;;;;1610632533;;False;{};gj86vjq;False;t3_kwisv4;False;False;t1_gj5ooys;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj86vjq/;1610704072;6;True;False;anime;t5_2qh22;;0;[]; -[];;;GoldenDude;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GoldenBoy808;light;text;t2_ay8d1;False;False;[];;Waifu wars probably;False;False;;;;1610632678;;False;{};gj874jz;False;t3_kwisv4;False;False;t1_gj867jh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj874jz/;1610704210;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610632685;;False;{};gj874xr;False;t3_kwisv4;False;True;t1_gj7zsn8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj874xr/;1610704215;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rapedcorpse;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Kilimini;light;text;t2_9n73kr1;False;False;[];;I say it will end up at 11.7k or 11.8k at best, so it will come short to the result of the premier. But hey the premier always tend to overperform so matching the result of the premier is not a bad result for this episode.;False;False;;;;1610632744;;False;{};gj878nq;False;t3_kwisv4;False;False;t1_gj85xhx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj878nq/;1610704273;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610632764;;False;{};gj879wx;False;t3_kwisv4;False;True;t1_gj7ubsv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj879wx/;1610704292;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;Do you remember when they said this?;False;False;;;;1610632933;;False;{};gj87kdi;False;t3_kwisv4;False;True;t1_gj5supf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj87kdi/;1610704450;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> Roswell doenst has any reason to accept - -As Otto puts it, Roswall never lost to anyone, because of gospel, so why would he refuse now?";False;False;;;;1610632960;;False;{};gj87m16;False;t3_kwisv4;False;True;t1_gj7ug11;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj87m16/;1610704475;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610633196;;False;{};gj880lx;False;t3_kwisv4;False;True;t1_gj7uee7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj880lx/;1610704692;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;Wait what, need to know what? i rewatched this scene and am rereading the thread and i still dont get it?;False;False;;;;1610633223;;False;{};gj882b4;False;t3_kwisv4;False;True;t1_gj4wh1x;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj882b4/;1610704717;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Baerlatsch;;;[];;;;text;t2_238e9db6;False;False;[];;Wdym, there are quite some good isekai shows out there right now: overlord, Konosuba, rising of the shield hero, saga of tanya the evil (just from the top of my head);False;False;;;;1610633333;;False;{};gj8899u;False;t3_kwisv4;False;True;t1_gj64g4i;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8899u/;1610704826;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;Yikes, even worse than I thought.;False;False;;;;1610633520;;False;{};gj88l3d;False;t3_kwisv4;False;False;t1_gj86e44;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj88l3d/;1610705009;13;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"**What a comment for an episode 28 minutes long with no OP/ED.** --- ---";False;False;;;;1610633570;;False;{};gj88o9z;False;t3_kwisv4;False;False;t1_gj86tpy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj88o9z/;1610705059;5;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;The two names of the episode are the chapters names.;False;False;;;;1610633783;;False;{};gj89244;False;t3_kwisv4;False;False;t1_gj84swc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj89244/;1610705268;4;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;They always do that.;False;False;;;;1610633812;;False;{};gj8941e;False;t3_kwisv4;False;False;t1_gj8306o;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8941e/;1610705296;5;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Don't spoil yourself and enjoy the ride.;False;False;;;;1610633854;;False;{};gj896qp;False;t3_kwisv4;False;True;t1_gj8004j;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj896qp/;1610705337;3;True;False;anime;t5_2qh22;;0;[]; -[];;;tetsu_opa;;;[];;;;text;t2_1s149a7z;False;False;[];;touche;False;False;;;;1610633886;;False;{};gj898uo;False;t3_kwisv4;False;True;t1_gj5i2ws;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj898uo/;1610705371;2;True;False;anime;t5_2qh22;;0;[]; -[];;;zellleonhart;;;[];;;;text;t2_qdxqs;False;False;[];;legit laughed my ass off;False;False;;;;1610633970;;False;{};gj89ee5;False;t3_kwisv4;False;True;t1_gj517ap;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj89ee5/;1610705453;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;I wouldn't mind the salt or get mad I get that, but the downvotting is so childish.;False;False;;;;1610633992;;False;{};gj89fr4;False;t3_kwisv4;False;True;t1_gj83tdm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj89fr4/;1610705474;0;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;I also predicted 15-16k before since I believed it’s a huge payoff for many people but didn’t expect it to be this controversial.;False;False;;;;1610634042;;False;{};gj89j2t;False;t3_kwisv4;False;False;t1_gj85hvd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj89j2t/;1610705524;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610634141;;False;{};gj89plm;False;t3_kwisv4;False;False;t1_gj7x953;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj89plm/;1610705623;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;You didn't got confused? Power to you.;False;False;;;;1610634213;;False;{};gj89u7q;False;t3_kwisv4;False;True;t1_gj7u1g6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj89u7q/;1610705693;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MBFlash;;;[];;;;text;t2_5ufimkv8;False;False;[];;True that;False;False;;;;1610634243;;False;{};gj89w83;False;t3_kwisv4;False;True;t1_gj5s9l8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj89w83/;1610705723;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;Emilia said in episode 14 that she was frozen for 100 years and Emilia in her flashbacks had loli size, so I have to assume she's a child at that point;False;False;;;;1610634257;;False;{};gj89x4s;False;t3_kwisv4;False;False;t1_gj87kdi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj89x4s/;1610705736;5;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;Shit bruh I’m so dumb;False;False;;;;1610634285;;False;{};gj89z04;False;t3_kwisv4;False;True;t1_gj89x4s;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj89z04/;1610705765;3;True;False;anime;t5_2qh22;;0;[]; -[];;;casper_07;;;[];;;;text;t2_31dsin4c;False;False;[];;I’m impressed they showed this much spoiler in an opening. Though most won’t be understood unless u read the manga but if u manage to read between the lines then that’s gonna ruin your experience even more, as if the animation from last season didn’t already lol. The least subtle one literally shows mael no silhouette no nothing, just straight up his face;False;False;;;;1610634589;;1610634960.0;{};gj8aj61;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj8aj61/;1610706070;1;True;False;anime;t5_2qh22;;0;[]; -[];;;D4nt3_1;;;[];;;;text;t2_5eyj249g;False;False;[];;In context is as hilarious as without it, just you wait;False;False;;;;1610634715;;False;{};gj8arma;False;t3_kwisv4;False;True;t1_gj5b6no;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8arma/;1610706197;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;This comment section is the worse one by a mile for this season.;False;False;;;;1610634762;;False;{};gj8auql;False;t3_kwisv4;False;False;t1_gj88l3d;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8auql/;1610706243;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610634989;;False;{};gj8ba2u;False;t3_kwisv4;False;True;t1_gj808lf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8ba2u/;1610706474;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;The majority of negative comments is right here, which is good I don't want the series to suffer because of some disgruntled people.;False;False;;;;1610635062;;False;{};gj8bf0n;False;t3_kwisv4;False;False;t1_gj89j2t;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8bf0n/;1610706549;6;True;False;anime;t5_2qh22;;0;[]; -[];;;rollin340;;;[];;;;text;t2_cmyef;False;False;[];;That wave of bugs he called was some biblical shit.;False;False;;;;1610635081;;False;{};gj8bgc6;False;t3_kwisv4;False;True;t1_gj4ehq8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8bgc6/;1610706569;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bananeeek;;MAL;[];;https://myanimelist.net/animelist/bananek;dark;text;t2_m3u6b;False;False;[];;Not sure, my version was censored. But that would explain why she got pregnant.;False;False;;;;1610635280;;False;{};gj8bu6w;False;t3_kwisv4;False;False;t1_gj5qrme;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8bu6w/;1610706782;3;True;False;anime;t5_2qh22;;0;[]; -[];;;shadebedlam;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Shadebedlam;light;text;t2_fl41u;False;False;[];;Hello! I hope it is not too late to ask but does anyone know what OST started playing at around 4 minutes in? It was during the Otto flashback in the second half of it basically.;False;False;;;;1610635622;;False;{};gj8ciks;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8ciks/;1610707174;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LssKizan;;;[];;;;text;t2_tbzvw;False;False;[];;Why people like the Subaru-Emilia kiss, I mean Subaru it's very selfish because he ignores Emilia feelings. It was just pure obsession! That's not love!!!;False;False;;;;1610635918;;False;{};gj8d44d;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8d44d/;1610707504;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;Yeah, just let it be here and for those people, Re:zero is much more than waifu wars...;False;False;;;;1610635975;;False;{};gj8d87n;False;t3_kwisv4;False;True;t1_gj8bf0n;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8d87n/;1610707566;3;True;False;anime;t5_2qh22;;0;[]; -[];;;D4nt3_1;;;[];;;;text;t2_5eyj249g;False;False;[];;I actually disagree, the first death this loop is kinda like the call to action, it makes him aware of what's happening, and subsequent deaths are either character development and exploration for Betty, Emilia, Ram, Garfiel, Otto, each death gives more insight into their minds, their preoccupations, and their loyalties, as well as Subaru's own self-hatred growing each death, the fact that the guy who was so afraid he would let people die now sees himself as a tool, going more from bravery to madness each loop is part of his character development, and is freaking amazing, it shows that if he's a martyr, if he puts everyone above himself, if he's brave as heck, he still isn't perfect, he still has flaws to correct even when he's being so virtuous, and it also shows the natural consequences of the human psyque if they died so many times, that's what those loops accomplished, another loop wouldn't accomplish anything other than empty suffering, so yeah;False;False;;;;1610636043;;False;{};gj8dd86;False;t3_kwisv4;False;True;t1_gj70oty;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8dd86/;1610707642;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CeaRhan;;;[];;;;text;t2_tn4ge;False;False;[];;"Subaru repeating the same thing again when the author finally had built a moment where he could just tell her to stand up on her own two feet. - -Fucking hell man.";False;False;;;;1610636523;;False;{};gj8eccm;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8eccm/;1610708181;11;True;False;anime;t5_2qh22;;0;[]; -[];;;DevonTage33;;;[];;;;text;t2_3sxwldfc;False;False;[];;Tsundere is the best dere for the cuteness;False;False;;;;1610636605;;False;{};gj8eiac;False;t3_kwisv4;False;False;t1_gj4o4hp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8eiac/;1610708270;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Flymsi;;;[];;;;text;t2_nm33k;False;False;[];;"Calling it impossible sounds strange. Many things are impossible to know unless told by the author of the story. Since satella seems to transcend time she should theoretically know. (not that she is a great talker...) - -It was assumed that it is closed. But it can be as open as subarus loops. It being open makes more sense, unless there is an event X that will always leads to Satella bringing him back. But since subaru managed to leave an impression on her, i am sure that he can influence her actions which makes the existing of event X unlikly in my eyes";False;False;;;;1610636819;;False;{};gj8exy5;False;t3_kwisv4;False;True;t1_gj7fap0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8exy5/;1610708516;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CeaRhan;;;[];;;;text;t2_tn4ge;False;False;[];;Subaru and never explaining basic things but repeating the same line of dialogue every episode, the double tag team combo.;False;False;;;;1610636911;;False;{};gj8f4pm;False;t3_kwisv4;False;False;t1_gj4gco8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8f4pm/;1610708621;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GA-CHI-man;;;[];;;;text;t2_5qsojrc6;False;False;[];;I think Otto is really the real hero.;False;False;;;;1610636954;;False;{};gj8f7wr;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8f7wr/;1610708671;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kuronohachi;;;[];;;;text;t2_50iphujy;False;False;[];;Did you watch the episode? He himself asked if she didn't want to she could dodge it;False;False;;;;1610637052;;False;{};gj8ff7q;False;t3_kwisv4;False;True;t1_gj8d44d;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8ff7q/;1610708783;0;True;False;anime;t5_2qh22;;0;[]; -[];;;sg_Paul;;;[];;;;text;t2_o57ap;False;False;[];;"Am I the only one sick of subaru creepily repeating ""I LOVE YOU""? -Honestly, if someone would do this to me, even if I liked them, I'd start fearing them instead ...";False;False;;;;1610637304;;False;{};gj8fyk1;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8fyk1/;1610709097;20;True;False;anime;t5_2qh22;;0;[]; -[];;;casper_07;;;[];;;;text;t2_31dsin4c;False;False;[];;Declaration of war continues*;False;False;;;;1610637413;;False;{};gj8g6wa;False;t3_kwisv4;False;False;t1_gj854gd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8g6wa/;1610709230;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Lrekkk;;;[];;;;text;t2_6bubk4h;False;False;[];;Okay so after all those he surely won't reset this time.. right?;False;False;;;;1610637475;;False;{};gj8gbj8;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8gbj8/;1610709304;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bananeeek;;MAL;[];;https://myanimelist.net/animelist/bananek;dark;text;t2_m3u6b;False;False;[];;"He says ""iya nara yokero"" IIRC, where [""yokero""](https://jisho.org/search/yokeru) means ""to avoid"" as in avoid physical contact, but it's also commonly translated to dodge, so the translation is okay, imo";False;False;;;;1610637657;;False;{};gj8gpk1;False;t3_kwisv4;False;True;t1_gj4q7jo;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8gpk1/;1610709529;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610637684;;False;{};gj8grod;False;t3_kwisv4;False;True;t1_gj75q0o;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8grod/;1610709563;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Spectral2020;;;[];;;;text;t2_84n70o3g;False;False;[];;"He literally said iyanara, yokero. That translates to, ""If you don't like [the kiss], then avoid."" There is nothing about him asking Emilia to close her eyes.";False;False;;;;1610637901;;False;{};gj8h8i9;False;t3_kwisv4;False;True;t1_gj7f6r4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8h8i9/;1610709844;2;True;False;anime;t5_2qh22;;0;[]; -[];;;13beachesz;;;[];;;;text;t2_jfwrzht;False;False;[];;"People keep asking this? Have y’all watched last episode? The last episode title was “Straight Bet”. - -Did you remember what it is about? If you did, how would you even form this pondering question?";False;False;;;;1610638174;;False;{};gj8ht60;False;t3_kwisv4;False;True;t1_gj8gbj8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8ht60/;1610710185;0;True;False;anime;t5_2qh22;;0;[]; -[];;;FrightenedMussolini;;;[];;;;text;t2_2xmqzs8s;False;False;[];;"Ah yes, an oldie but a goody. That Tsukihime doujin is a classic ;)";False;False;;;;1610638374;;False;{};gj8i8lc;False;t3_kwisv4;False;True;t1_gj4kwp3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8i8lc/;1610710441;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FrightenedMussolini;;;[];;;;text;t2_2xmqzs8s;False;False;[];;It’s a Tsukihime doujin from a long time ago, I can’t remember the name though;False;False;;;;1610638434;;False;{};gj8id6w;False;t3_kwisv4;False;True;t1_gj63wou;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8id6w/;1610710516;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiro_Kai;;;[];;;;text;t2_bevm2wi;False;False;[];;"While this looks ""better"" than last season the fight scenes still competely inanimated. So not good at all. :(";False;False;;;;1610638523;;False;{};gj8ik2m;False;t3_kwhejb;False;False;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj8ik2m/;1610710629;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CoochiePringles;;;[];;;;text;t2_5crami1v;False;False;[];;Otto's the best wingman you could ever ask for;False;False;;;;1610638911;;False;{};gj8jdyi;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8jdyi/;1610711138;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"Here's the [playlist for season 2](https://www.youtube.com/watch?v=DW3Wv7gGVls&list=PLOseTNHq-FlfvMsvzzrvf7g8lo_LEizba&index=1) maybe you'll be able to find it there.";False;False;;;;1610639363;;False;{};gj8kcy4;False;t3_kwisv4;False;True;t1_gj8ciks;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8kcy4/;1610711744;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Headcap;;;[];;;;text;t2_5vejt;False;True;[];;Rezero is basically a CW Supernatural drama for weebs;False;False;;;;1610639388;;False;{};gj8keu1;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8keu1/;1610711773;16;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Some Rem fans are just as illogical as logical as they wanna be.;False;False;;;;1610639445;;False;{};gj8kjao;False;t3_kwisv4;False;False;t1_gj8ff7q;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8kjao/;1610711846;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610639552;;False;{};gj8krlz;False;t3_kwisv4;False;True;t1_gj8eccm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8krlz/;1610711983;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610639751;;1610640218.0;{};gj8l7eg;False;t3_kwisv4;False;True;t1_gj8fyk1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8l7eg/;1610712266;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;MarkDave16;;;[];;;;text;t2_3hq0mi5e;False;False;[];;Sure we can have that, or rather, this romantic progress and even had their ~~first~~ kiss.;False;True;;comment score below threshold;;1610639768;;False;{};gj8l8so;False;t3_kwisv4;False;True;t1_gj8eccm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8l8so/;1610712291;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;If Subaru resets he loses the bet with Roswaal so he better not or everything is fucked.;False;False;;;;1610639795;;False;{};gj8laxc;False;t3_kwisv4;False;True;t1_gj8gbj8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8laxc/;1610712335;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610639913;;1610640599.0;{};gj8lkad;False;t3_kwisv4;False;True;t1_gj8keu1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8lkad/;1610712492;-15;True;False;anime;t5_2qh22;;0;[]; -[];;;sg_Paul;;;[];;;;text;t2_o57ap;False;False;[];;"That's a rude way of saying ""I disagree""";False;False;;;;1610639914;;False;{};gj8lkd2;False;t3_kwisv4;False;False;t1_gj8l7eg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8lkd2/;1610712493;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610640028;;False;{};gj8ltc5;False;t3_kwisv4;False;True;t1_gj8lkd2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8ltc5/;1610712653;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;Dukano12;;;[];;;;text;t2_41te3hmz;False;False;[];;Well I read the manga and there's a lot of fighting that's gonna happen in this season so I think they're keeping the budget for those. At least I hope so...;False;False;;;;1610640134;;False;{};gj8m1lx;False;t3_kwhejb;False;True;t1_gj6gg6o;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj8m1lx/;1610712800;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dukano12;;;[];;;;text;t2_41te3hmz;False;False;[];;It's only the first episode and considering all the shit that happens in the manga, I sure hope they keep the budget for that. Still gonna watch it either way...;False;False;;;;1610640310;;False;{};gj8mfc8;False;t3_kwhejb;False;True;t1_gj534dm;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj8mfc8/;1610713028;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Oh__Billy;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Oh_Billy;light;text;t2_30zjzcvz;False;False;[];;Not in the slightest, his tone was a little aggressive but understandable when dealing with someone this stubborn, he told her everything he needed to, that he loved her and would continue to love her even after her memories came back completely.;False;False;;;;1610640322;;False;{};gj8mgae;False;t3_kwisv4;False;True;t1_gj6w3v6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8mgae/;1610713044;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thatwriterguyva;;;[];;;;text;t2_mc1lm;False;False;[];;"The focal problem is whether or not he can't tell her why he broke his promise, he just completely ignored the question as if that wasn't what she kept asking him. - -Not only that but knowing you can't keep that promise, why make it? It was a terrible on subaru's part. He still got the W but fuck it wasnt earned in the slightest";False;False;;;;1610640435;;False;{};gj8mp7c;False;t3_kwisv4;False;True;t1_gj8mgae;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8mp7c/;1610713201;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Dukano12;;;[];;;;text;t2_41te3hmz;False;False;[];;Don't worry, you're not alone. Probably like 90% of people enjoyed it but are not vocal about it online like people that likes complaining about everything.;False;False;;;;1610640444;;False;{};gj8mpuz;False;t3_kwhejb;False;True;t1_gj6140o;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj8mpuz/;1610713212;2;True;False;anime;t5_2qh22;;0;[]; -[];;;garmonthenightmare;;;[];;;;text;t2_tpz2o;False;False;[];;"""if you don't want this parry it with your shield or do a dodgeroll""";False;False;;;;1610640679;;False;{};gj8n8al;False;t3_kwisv4;False;True;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8n8al/;1610713557;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dukano12;;;[];;;;text;t2_41te3hmz;False;False;[];;Well considering that they this is the last season and everything that's going to happen(manga reader as well btw) I would not have expected the first fight(that's not really that important) to be crazy. And I wouldn't be surprised if the budget they have is much lower than for the first and second season, especially after the 3rd one...;False;False;;;;1610640682;;False;{};gj8n8j7;False;t3_kwhejb;False;True;t1_gj65nat;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj8n8j7/;1610713561;1;True;False;anime;t5_2qh22;;0;[]; -[];;;suddhadeep;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Suddhadeep;light;text;t2_38w3ujux;False;False;[];;Are you aware that your comment does not work on new Reddit (or app)?;False;False;;;;1610640709;;False;{};gj8nan3;False;t3_kwisv4;False;True;t1_gj4gqlt;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8nan3/;1610713598;0;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;It was more of an argument, than a proposal.;False;False;;;;1610640768;;False;{};gj8nfej;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8nfej/;1610713683;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Dukano12;;;[];;;;text;t2_41te3hmz;False;False;[];;Well that's true, but believe me most people that really cares about spoilers don't watch the op most of the time.;False;False;;;;1610640778;;False;{};gj8ng69;False;t3_kwhejb;False;True;t1_gj8aj61;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj8ng69/;1610713697;1;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;Finally, he said it;False;False;;;;1610640829;;False;{};gj8nk30;False;t3_kwisv4;False;True;t1_gj4fy0g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8nk30/;1610713778;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dukano12;;;[];;;;text;t2_41te3hmz;False;False;[];;This is the first episode of a 24 episode season, did you really expect every little fight to be a piece of art?;False;False;;;;1610640875;;False;{};gj8nnq5;False;t3_kwhejb;False;True;t1_gj8ik2m;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj8nnq5/;1610713846;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;True, Subaru probably didn't even plan to go this far.;False;False;;;;1610640885;;False;{};gj8nogv;False;t3_kwisv4;False;False;t1_gj8nfej;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8nogv/;1610713859;6;True;False;anime;t5_2qh22;;0;[]; -[];;;WeeabooVoid;;;[];;;;text;t2_6hwibewj;False;False;[];;Subaru has grown a lot since season 1. He deserves the girl he likes.;False;False;;;;1610641015;;False;{};gj8nys2;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8nys2/;1610714044;6;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;Yeah, he probably didn't, even we didn't think it would go this far;False;False;;;;1610641037;;False;{};gj8o0ie;False;t3_kwisv4;False;True;t1_gj8nogv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8o0ie/;1610714074;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"Which is why i use old reddit, because we have comment faces. - -https://old.reddit.com/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj4gqlt/ - -Have a look at the thread in old reddit mode and see what your missing. - -https://old.reddit.com/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/";False;False;;;;1610641069;;False;{};gj8o30b;False;t3_kwisv4;False;False;t1_gj8nan3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8o30b/;1610714118;3;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 50, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""I'm in this with you."", 'end_date': None, 'giver_coin_reward': 0, 'icon_format': 'PNG', 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png', 'icon_width': 2048, 'id': 'award_02d9ab2c-162e-4c01-8438-317a016ed3d9', 'is_enabled': True, 'is_new': False, 'name': 'Take My Energy', 'penny_donate': 0, 'penny_price': 0, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=16&height=16&auto=webp&s=045db73f47a9513c44823d132b4c393ab9241b6a', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=32&height=32&auto=webp&s=298a02e0edbb5b5e293087eeede63802cbe1d2c7', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=48&height=48&auto=webp&s=7d06d606eb23dbcd6dbe39ee0e60588c5eb89065', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=64&height=64&auto=webp&s=ecd9854b14104a36a210028c43420f0dababd96b', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=128&height=128&auto=webp&s=0d5d7b92c1d66aff435f2ad32e6330ca2b971f6d', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=16&height=16&auto=webp&s=045db73f47a9513c44823d132b4c393ab9241b6a', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=32&height=32&auto=webp&s=298a02e0edbb5b5e293087eeede63802cbe1d2c7', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=48&height=48&auto=webp&s=7d06d606eb23dbcd6dbe39ee0e60588c5eb89065', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=64&height=64&auto=webp&s=ecd9854b14104a36a210028c43420f0dababd96b', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=128&height=128&auto=webp&s=0d5d7b92c1d66aff435f2ad32e6330ca2b971f6d', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> He deserves the girl he likes. - -You wouldn't think that after the hate this episode is getting.";False;False;;;;1610641092;;False;{};gj8o4rl;False;t3_kwisv4;False;False;t1_gj8nys2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8o4rl/;1610714152;6;True;False;anime;t5_2qh22;;1;[]; -[];;;bumbapoppa;;;[];;;;text;t2_53cmo78q;False;False;[];;now he dies and it resets;False;False;;;;1610641166;;False;{};gj8oaj2;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8oaj2/;1610714258;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;If Subaru resets he will lose the bet with Roswaal;False;False;;;;1610641248;;False;{};gj8oh0q;False;t3_kwisv4;False;False;t1_gj8oaj2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8oh0q/;1610714374;6;True;False;anime;t5_2qh22;;0;[]; -[];;;garmonthenightmare;;;[];;;;text;t2_tpz2o;False;False;[];;"""Emilia spam dodgeroll if you don't want this.""";False;False;;;;1610641602;;False;{};gj8p9bg;False;t3_kwisv4;False;True;t1_gj75fj6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8p9bg/;1610714894;1;True;False;anime;t5_2qh22;;0;[]; -[];;;eh_whatever17;;;[];;;;text;t2_63o5bktw;False;False;[];;I read the wn a while back and honestly, felt EXTREMELY underwhelmed. I remember otto fight was way more gritty and exhilarating. The kiss scene was perfectly adapted tho.;False;False;;;;1610641708;;False;{};gj8phvu;False;t3_kwisv4;False;False;t1_gj4cva1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8phvu/;1610715046;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LumpyChicken;;;[];;;;text;t2_12phvscu;False;False;[];;Ikr I was expecting to be downvoted. I am getting a full inbox of virgins pretending they know better though lol;False;False;;;;1610641720;;False;{};gj8pitn;False;t3_kwisv4;False;False;t1_gj7ogrn;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8pitn/;1610715062;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LumpyChicken;;;[];;;;text;t2_12phvscu;False;False;[];;Well said;False;False;;;;1610641756;;False;{};gj8plru;False;t3_kwisv4;False;True;t1_gj7ot9c;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8plru/;1610715118;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LumpyChicken;;;[];;;;text;t2_12phvscu;False;False;[];;Yeah I'm not saying he's a rapist just pointing out its not some ideal model to follow;False;False;;;;1610641871;;False;{};gj8pv1s;False;t3_kwisv4;False;False;t1_gj76h70;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8pv1s/;1610715280;4;True;False;anime;t5_2qh22;;0;[]; -[];;;prophetofgreed;;;[];;;;text;t2_7ibdz;False;False;[];;I'm an anime-only but I believe he met with the pink haired elf. Garfiel was looking for her during the Emilia search and found there were two cups of tea out at her table. The implication being Subaru met with her about something important.;False;False;;;;1610642214;;False;{};gj8qmk2;False;t3_kwisv4;False;True;t1_gj7pkh9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8qmk2/;1610715822;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ToastyMozart;;;[];;;;text;t2_dynb0;False;False;[];;Also the whole bet with Roswaal kinda makes failure impossible from a meta perspective. Losing the bet would be a near-unrecoverable disaster narratively, so it can't happen.;False;False;;;;1610642281;;False;{};gj8qruv;False;t3_kwisv4;False;True;t1_gj7f5hz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8qruv/;1610715919;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Redditer51;;;[];;;;text;t2_gk7ihro;False;False;[];;"Lol, yeah. It's definitely a good time for popcorn. - -If I were Subaru, I'd be having second thoughts after that. Cause Emilia's giving me pyscho vibes. Then again Rem did violently murder him in like two or three different timelines so...benefit of the doubt. Emilia's just going through some shit right now (And I say that as a Rem stan). - -(Edit: I've heard at least a few real life arguments that boil down to ""Babe, I love you!"" ""No, you dont (sob)!"" Emilia was like Meegan from Key and Peele (I'm joking))";False;False;;;;1610642465;;1610642727.0;{};gj8r6z3;False;t3_kwisv4;False;True;t1_gj775ep;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8r6z3/;1610716196;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ErrorZeros;;;[];;;;text;t2_5iumh2vs;False;False;[];;That's a dumb theory.;False;False;;;;1610642647;;False;{};gj8rlnv;False;t3_kwisv4;False;True;t1_gj4nt00;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8rlnv/;1610716467;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ErrorZeros;;;[];;;;text;t2_5iumh2vs;False;False;[];;"I can feel every ""l love you"" from Subaru sucking out the life force of all the Rem Fan's out there.";False;False;;;;1610642721;;False;{};gj8rrmr;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8rrmr/;1610716571;8;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;There's a story of Rem and Subaru together. I know it's not animated but if they burn all bridges it'll definitely never be.;False;False;;;;1610643211;;False;{};gj8svsk;False;t3_kwisv4;False;True;t1_gj8rrmr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8svsk/;1610717376;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiro_Kai;;;[];;;;text;t2_bevm2wi;False;False;[];;Art? I just expected them to move. We didn't actually saw a single punch or kick being delivered in that fight of Ban and Monster Meliodas. It was just the screams and the camera moving throught a still image up close. And it's actually much less angles than the manga used, if you check that chapter.;False;False;;;;1610643218;;False;{};gj8swbw;False;t3_kwhejb;False;True;t1_gj8nnq5;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj8swbw/;1610717389;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yiendubuu;;;[];;;;text;t2_7ancze9l;False;False;[];;I'm hoping they went for the Black Clover system. Where they'd do not so good animation for episodes that aren't that important to save budget and time for the actual big fights. I think it works well for BC, so it would probably also work well for 7DS.;False;False;;;;1610643435;;False;{};gj8tel8;False;t3_kwhejb;False;False;t1_gj8n8j7;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj8tel8/;1610717755;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yabo1here;;;[];;;;text;t2_4ep05rni;False;False;[];;Ah I see you are a man of culture;False;False;;;;1610643659;;False;{};gj8tx9f;False;t3_kwisv4;False;True;t1_gj7roy9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8tx9f/;1610718117;3;True;False;anime;t5_2qh22;;0;[]; -[];;;hahahahastayingalive;;;[];;;;text;t2_8mubj;False;False;[];;"I don’t hate it, but felt it could have been done a lot better. - -It’s a critical moment for the whole series, and for comparison Rem’s title drop was a lot more powerful, or even last season’s Ekidona’s confession. - -Honestly Otto’s story had me more moved than Subraru’s bit, and it feels really weird to say that considering the pivotal moment.";False;False;;;;1610643717;;False;{};gj8u23h;False;t3_kwisv4;False;False;t1_gj85hvd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8u23h/;1610718207;13;True;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;i mean this is a discussion for this episode. If you want a complete circle jerk then go to rezero subreddit.;False;False;;;;1610643866;;1610653001.0;{};gj8uecq;False;t3_kwisv4;False;False;t1_gj7x953;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8uecq/;1610718429;15;True;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;True. It's cringe AF and creepy tbh.;False;False;;;;1610643922;;False;{};gj8uivl;False;t3_kwisv4;False;False;t1_gj8fyk1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8uivl/;1610718514;11;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;*ogre flashbacks intensifies*;False;False;;;;1610644027;;False;{};gj8urel;False;t3_kwisv4;False;True;t1_gj68qar;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8urel/;1610718671;1;True;False;anime;t5_2qh22;;0;[]; -[];;;warm-ice;;;[];;;;text;t2_14py3p;False;False;[];;Yeah I'm here just reading the comments to see if it's even worth it to jump back, but it looks like no;False;False;;;;1610644054;;False;{};gj8uto1;False;t3_kwhejb;False;True;t1_gj53n4q;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj8uto1/;1610718717;2;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;Emilia is his pogchamp;False;False;;;;1610644094;;False;{};gj8uwvo;False;t3_kwisv4;False;False;t1_gj4t5o9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8uwvo/;1610718779;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610644309;;False;{};gj8velw;False;t3_kwisv4;False;True;t1_gj4yzdz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8velw/;1610719131;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AwesomeSauce1864;;;[];;;;text;t2_9fyofhn4;False;False;[];;To be fair to Subaru, he clearly waited. She did not pull away or act confused, or protest, she knew what was up. She closed her eyes in a form of consent, and then he kissed her. Not perfect, but he wasn't being an asshole here.;False;False;;;;1610644763;;False;{};gj8wggh;False;t3_kwisv4;False;False;t1_gj6n59u;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8wggh/;1610719897;4;True;False;anime;t5_2qh22;;0;[]; -[];;;thblckjkr;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/thblckjkr;light;text;t2_2v4yfnte;False;False;[];;I just hope that there aren't a lot of people that think that a relationship like that is healthy or normal.;False;False;;;;1610644850;;False;{};gj8wnne;False;t3_kwisv4;False;True;t1_gj4fe4g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8wnne/;1610720048;2;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;Being reminded of Bakugo doesn't help still love him tho;False;False;;;;1610644977;;False;{};gj8wy3f;False;t3_kwisv4;False;True;t1_gj4ub06;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8wy3f/;1610720284;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Riqz12;;;[];;;;text;t2_k3pxdrg;False;False;[];;When you put it that way, that scene made a lot more sense lmao;False;False;;;;1610645065;;False;{};gj8x5e5;False;t3_kwisv4;False;False;t1_gj4ggdc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8x5e5/;1610720419;1;True;False;anime;t5_2qh22;;0;[]; -[];;;suddhadeep;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Suddhadeep;light;text;t2_38w3ujux;False;False;[];;I am aware but reddit no longer seems to want that. Popular though it was.;False;False;;;;1610645145;;False;{};gj8xc25;False;t3_kwisv4;False;True;t1_gj8o30b;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8xc25/;1610720545;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"Its our choice to use new or old. - -I dont like New, too much convoluted stuff, old is much clearer and easyer to process, and allows for fun stuff like this.";False;False;;;;1610645302;;False;{};gj8xoqg;False;t3_kwisv4;False;True;t1_gj8xc25;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8xoqg/;1610720777;1;True;False;anime;t5_2qh22;;0;[]; -[];;;suddhadeep;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Suddhadeep;light;text;t2_38w3ujux;False;False;[];;I used to love it but gotten used to this now.;False;False;;;;1610645465;;False;{};gj8y22d;False;t3_kwisv4;False;True;t1_gj8xoqg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8y22d/;1610721024;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DiamonDawgs;;;[];;;;text;t2_8936so8;False;False;[];;Why not watch one epi;False;False;;;;1610645643;;False;{};gj8ygk4;False;t3_kwhejb;False;True;t1_gj768ir;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gj8ygk4/;1610721298;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fenrir245;;;[];;;;text;t2_1hqr9iah;False;False;[];;always started from zero;False;False;;;;1610645907;;False;{};gj8z27g;False;t3_kwisv4;False;True;t1_gj7cn8q;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8z27g/;1610721727;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AFellow_2003;;;[];;;;text;t2_34on6o8p;False;False;[];;There's also Subaru's bet with Roswaal. The very basis of it is that Subaru has to win in this very loop.;False;False;;;;1610646027;;False;{};gj8zc1k;False;t3_kwisv4;False;True;t1_gj51j2e;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8zc1k/;1610721924;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KakoPuff;;;[];;;;text;t2_r6ec1;False;False;[];;Yeah but she wasn't talking about those other times though. She was very specifically calling him a liar because he didn't sit by her bed until morning. And he didn't stay because Puck needed to have a moment with her to say goodbye. Like I totally understand WHY she's like this but damn son, she needs a therapist lol;False;False;;;;1610646037;;False;{};gj8zcsj;False;t3_kwisv4;False;True;t1_gj6p3e3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8zcsj/;1610721938;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AFellow_2003;;;[];;;;text;t2_34on6o8p;False;False;[];;"It's less a case of love conquers all and more along the lines of ""You might doubt yourself, but I know that you shouldn't. The fact that I love you is proof of that"". Much like Rem's speech to Subaru.";False;False;;;;1610646231;;False;{};gj8zsiu;False;t3_kwisv4;False;True;t1_gj4l7xw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8zsiu/;1610722251;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AFellow_2003;;;[];;;;text;t2_34on6o8p;False;False;[];;chad mom.;False;False;;;;1610646262;;False;{};gj8zv4u;False;t3_kwisv4;False;True;t1_gj4qi5c;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8zv4u/;1610722303;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Affectionate_Roof361;;;[];;;;text;t2_8k060ixh;False;False;[];;one of the best episodes i saw in a long time, i was to tear up at work hehe;False;False;;;;1610646272;;False;{};gj8zvzo;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj8zvzo/;1610722320;9;True;False;anime;t5_2qh22;;0;[]; -[];;;AFellow_2003;;;[];;;;text;t2_34on6o8p;False;False;[];;NGL, that was a line that I didn't really like, even when I first read it. Maybe I'm taking it the wrong way, but it's basically saying that the only special thing about Subaru is his RBD. And one of the thing he learnt last cour is that he should stop thinking that his only value comes from RBD.;False;False;;;;1610646355;;False;{};gj902u2;False;t3_kwisv4;False;False;t1_gj4oeh7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj902u2/;1610722456;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AwesomeSauce1864;;;[];;;;text;t2_9fyofhn4;False;False;[];;Take heart, young ones. I'm 24, and zilch.;False;False;;;;1610646600;;False;{};gj90mxv;False;t3_kwisv4;False;False;t1_gj54edg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj90mxv/;1610722880;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TarkanV;;;[];;;;text;t2_vypp8k7;False;False;[];;"You're clearly living in a fairy tail if you think that in this f*cked up world that's how stuff it works... -Subaru is clearly treating her like a tool, he can't just go out there disrespecting her efforts and saying he loves her just because she's ""cute"", that's so superficial. Being implicitly told ""you're not good enough as a person"" actually breaks up relationships. And people wonder why they're told ""It's not you but me"" :v";False;False;;;;1610646846;;1610647252.0;{};gj9178r;False;t3_kwisv4;False;False;t1_gj7uljn;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9178r/;1610723302;5;True;False;anime;t5_2qh22;;0;[]; -[];;;lookw;;;[];;;;text;t2_floum;False;False;[];;"She does need therapy. Those other times do not show her that his words can be fully trusted. He keeps going against his promises and this last one was exacerbated by puck breaking his contract with her as well. If even puck lied to her than Subaru (whos doesn't keep his promises) is a bigger liar. - -Subaru doesn't keep his promises that he tells emilia (3-4 times, seriously, Subaru 3-4 times you promised to do things and blatantly, with no good justifiable reasons, broke those promises) so this is the moment to her when even his true feelings of love becomes just another lie. He hasn't given any reason why she should believe his feelings will last.";False;False;;;;1610646889;;False;{};gj91aur;False;t3_kwisv4;False;True;t1_gj8zcsj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj91aur/;1610723371;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ohoni;;;[];;;;text;t2_91pt3;False;False;[];;">Subaru is clearly treating her like a tool, - -A ""tool"" to what end? He seems to genuinely care about her well being, and put his own well being at great risk to protect her. I cannot think of any goal he's had beyond her. - ->he can't just go out there disrespecting her efforts and saying he loves her just because she's ""cute"", - -He is frustrated by her efforts, as is most of the audience, and herself, and is venting those frustrations. Their behavior in this episode were actually some of the most healthy that they'd had, because they were both being honest with each other. There are things that the admire about the other, but they do not view them as perfect either, and that's a good thing. - -Now it's true that Subaru focused on some pretty superficial details at first, but he did move on from that, and it's up to Emilia whether she wants to love him in spite of that. She apparently does.";False;False;;;;1610647190;;False;{};gj91zhh;False;t3_kwisv4;False;True;t1_gj9178r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj91zhh/;1610723875;1;True;False;anime;t5_2qh22;;0;[]; -[];;;StarDriver76;;;[];;;;text;t2_8nta0;False;False;[];;Yup it was;False;False;;;;1610647598;;False;{};gj92wcn;False;t3_kwisv4;False;True;t1_gj7u7sg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj92wcn/;1610724514;2;True;False;anime;t5_2qh22;;0;[]; -[];;;StarDriver76;;;[];;;;text;t2_8nta0;False;False;[];;hell yea;False;False;;;;1610647608;;False;{};gj92x2b;False;t3_kwisv4;False;True;t1_gj81jqg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj92x2b/;1610724527;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Delra12;;;[];;;;text;t2_hgsnw;False;False;[];;Roswaal wouldn't have memory of the bet though right?;False;False;;;;1610647685;;False;{};gj9335w;False;t3_kwisv4;False;False;t1_gj8oh0q;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9335w/;1610724642;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TarkanV;;;[];;;;text;t2_vypp8k7;False;False;[];;*Nice guy;False;False;;;;1610648493;;False;{};gj94vsb;False;t3_kwisv4;False;True;t1_gj4r66r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj94vsb/;1610725893;1;True;False;anime;t5_2qh22;;0;[]; -[];;;digbicks845;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;god ussop;dark;text;t2_12n6ju;False;False;[];;That’s exactly why I don’t like her lmaooo;False;False;;;;1610648593;;False;{};gj953or;False;t3_kwisv4;False;True;t1_gj7bycc;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj953or/;1610726051;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lock330;;;[];;;;text;t2_pdcgt;False;True;[];;Judging by the controversial comments most of the hates are from dumbass who weren't even paying attention to the show. And if you look at their history it's by the same people over and over too. Or dumb waifu wars people. Overall it's a pretty well liked episode by most people.;False;False;;;;1610649069;;False;{};gj965qt;False;t3_kwisv4;False;True;t1_gj8o4rl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj965qt/;1610726815;2;True;False;anime;t5_2qh22;;0;[]; -[];;;shadebedlam;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Shadebedlam;light;text;t2_fl41u;False;False;[];;Thank you very much.;False;False;;;;1610650142;;False;{};gj98jc3;False;t3_kwisv4;False;True;t1_gj8kcy4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj98jc3/;1610728473;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HirokoKueh;;;[];;;;text;t2_tx88sbd;False;False;[];;(\*short blue hair girl crying);False;False;;;;1610650346;;False;{};gj98zrn;False;t3_kwisv4;False;False;t1_gj71qck;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj98zrn/;1610728800;3;True;False;anime;t5_2qh22;;0;[]; -[];;;fufususu;;;[];;;;text;t2_15yfxh;False;False;[];;The way you highlighted that made me think it's the title of next episode lol;False;False;;;;1610650643;;False;{};gj99npq;False;t3_kwisv4;False;True;t1_gj6npa9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj99npq/;1610729276;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HirokoKueh;;;[];;;;text;t2_tx88sbd;False;False;[];;yeh what the fuck is this, does zip exist in this world?;False;False;;;;1610650674;;False;{};gj99q7k;False;t3_kwisv4;False;True;t1_gj4qyvu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj99q7k/;1610729326;2;True;False;anime;t5_2qh22;;0;[]; -[];;;akis_mamalis;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_6fo3djt9;False;False;[];;Exactly that. Who invented jeans there;False;False;;;;1610650796;;False;{};gj99zza;False;t3_kwisv4;False;True;t1_gj99q7k;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj99zza/;1610729514;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GmbDarien;;;[];;;;text;t2_cmulr;False;False;[];;and people tought this ep will rival ep5 of aot...;False;False;;;;1610650931;;False;{};gj9aan2;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9aan2/;1610729727;23;True;False;anime;t5_2qh22;;0;[]; -[];;;nueker;;;[];;;;text;t2_971rkuiy;False;False;[];;who is rem?????;False;False;;;;1610651000;;False;{};gj9ag4a;False;t3_kwisv4;False;True;t1_gj7dkwl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9ag4a/;1610729837;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nanasema;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_qs677;False;False;[];;"Anime-only here. - -this is the best episode ever. As a diehard Emilia fan, this is some of the best character development to date. I've long awaited for this, and my dreams have finally come true. - -Oh god, please dont die, Otto.";False;False;;;;1610651209;;False;{};gj9awla;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9awla/;1610730172;8;True;False;anime;t5_2qh22;;0;[]; -[];;;FountainsOfFluids;;;[];;;;text;t2_6sp2c;False;False;[];;"No, it's not. It's just the beginning of the ladder. It starts with unwanted attention, then unwanted casual touching, etc. It's not ok. You either get verbal consent or enthusiastic participation, or you fucking stop. None of this ""Dodge this"" in the real world. In the anime it's kinda cute because we know both characters are good people who probably are written to be together. But in the real world, if that was a real girl who felt pressured to be there for unrelated reasons, who was too inexperienced to figure out how to graciously extract herself from the situation... that's assault.";False;False;;;;1610651241;;False;{};gj9az45;False;t3_kwisv4;False;False;t1_gj862df;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9az45/;1610730220;4;True;False;anime;t5_2qh22;;0;[]; -[];;;iamacat188;;;[];;;;text;t2_2vc87884;False;False;[];;Of course Subaru finally kisses Emilia when he learns that her father isn't around;False;False;;;;1610651420;;False;{};gj9bd72;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9bd72/;1610730506;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Nanasema;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_qs677;False;False;[];;I dig this theory;False;False;;;;1610651761;;False;{};gj9c430;False;t3_kwisv4;False;True;t1_gj4uq0j;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9c430/;1610731022;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChornoyeSontse;;;[];;;;text;t2_8vjfuk9d;False;False;[];;R:Z is like the twistiest show I've watched in a long time lmao I'm sure you're right.;False;False;;;;1610652646;;False;{};gj9e2g2;False;t3_kwisv4;False;True;t1_gj7kjhq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9e2g2/;1610732417;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Euferes;;;[];;;;text;t2_68pdt0b7;False;False;[];;She rejected me, lol.;False;False;;;;1610652693;;False;{};gj9e676;False;t3_kwisv4;False;True;t1_gj71d3q;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9e676/;1610732503;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pikachu_sashimi;;;[];;;;text;t2_9zv6g72;False;False;[];;Was anyone else half-expecting Subaru to give Emilia a “roundhouse kick” to the head?;False;False;;;;1610653139;;False;{};gj9f4y7;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9f4y7/;1610733181;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rhamni;;;[];;;;text;t2_bgzmt;False;False;[];;I think he will. Just because it's such a kick in the teeth.;False;False;;;;1610653235;;False;{};gj9fch9;False;t3_kwisv4;False;True;t1_gj6wlux;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9fch9/;1610733332;1;True;False;anime;t5_2qh22;;0;[]; -[];;;omfiwxgm;;;[];;;;text;t2_126027qp;False;False;[];;So what does this have to do with Rem? Focus on your emilia bro.;False;False;;;;1610655746;;False;{};gj9ktqo;False;t3_kwisv4;False;False;t1_gj8kjao;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9ktqo/;1610737378;9;True;False;anime;t5_2qh22;;0;[]; -[];;;fargame;;;[];;;;text;t2_4btzbahd;False;False;[];;I'm slowly getting worried about my man u/Llooyd_;False;False;;;;1610656342;;False;{};gj9m8mq;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9m8mq/;1610738316;4;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 125, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'When you come across a feel-good thing.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'icon_width': 2048, 'id': 'award_5f123e3d-4f48-42f4-9c11-e98b566d5897', 'is_enabled': True, 'is_new': False, 'name': 'Wholesome', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}, {'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 80, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Everything is better with a good hug', 'end_date': None, 'giver_coin_reward': 0, 'icon_format': 'PNG', 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png', 'icon_width': 2048, 'id': 'award_8352bdff-3e03-4189-8a08-82501dd8f835', 'is_enabled': True, 'is_new': False, 'name': 'Hugz', 'penny_donate': 0, 'penny_price': 0, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16&height=16&auto=webp&s=69997ace3ef4ffc099b81d774c2c8f1530602875', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32&height=32&auto=webp&s=e9519d1999ef9dce5c8a9f59369cb92f52d95319', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48&height=48&auto=webp&s=f076c6434fb2d2f9075991810fd845c40fa73fc6', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64&height=64&auto=webp&s=85527145e0c4b754306a30df29e584fd16187636', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128&height=128&auto=webp&s=b8843cdf82c3b741d7af057c14076dcd2621e811', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16&height=16&auto=webp&s=69997ace3ef4ffc099b81d774c2c8f1530602875', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32&height=32&auto=webp&s=e9519d1999ef9dce5c8a9f59369cb92f52d95319', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48&height=48&auto=webp&s=f076c6434fb2d2f9075991810fd845c40fa73fc6', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64&height=64&auto=webp&s=85527145e0c4b754306a30df29e584fd16187636', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128&height=128&auto=webp&s=b8843cdf82c3b741d7af057c14076dcd2621e811', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;Llooyd_;;;[];;;;text;t2_757o4eob;False;False;[];;"I'm fine, don't worry! -Just busy with university, work, art & stuff. -Exam's are due soon so I had to set myself some priorities. -I should be able to participate actively again in the later half of this cour!";False;False;;;;1610656483;;False;{};gj9mlbw;False;t3_kwisv4;False;False;t1_gj9m8mq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9mlbw/;1610738548;11;True;False;anime;t5_2qh22;;2;[]; -[];;;fargame;;;[];;;;text;t2_4btzbahd;False;False;[];;That reminds me that being in 10th grade isn't actually that bad;False;False;;;;1610656652;;False;{};gj9n1wt;False;t3_kwisv4;False;False;t1_gj9mlbw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9n1wt/;1610738834;5;True;False;anime;t5_2qh22;;0;[]; -[];;;winasta;;;[];;;;text;t2_pgljym5;False;False;[];;hell yeah man, studying always comes first.;False;False;;;;1610656911;;False;{};gj9nr7d;False;t3_kwisv4;False;False;t1_gj9mlbw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9nr7d/;1610739279;4;True;False;anime;t5_2qh22;;0;[]; -[];;;winasta;;;[];;;;text;t2_pgljym5;False;False;[];;this was easily my third favourite episode of the season and about everyone agrees but this just shows that aot popularity is just humongous. all in all I'm just ecstatic that i get to watch these two shows every week, aot being the dark and depressing one and re-zero showing the light at the end of the tunnel.;False;False;;;;1610657251;;False;{};gj9oo30;False;t3_kwisv4;False;False;t1_gj9aan2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9oo30/;1610739905;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610657362;;False;{};gj9oyjv;False;t3_kwisv4;False;True;t1_gj9oo30;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9oyjv/;1610740105;3;True;False;anime;t5_2qh22;;0;[]; -[];;;garmonthenightmare;;;[];;;;text;t2_tpz2o;False;False;[];;Subaru with a chad face: Yes dad.;False;False;;;;1610657505;;False;{};gj9pc8n;False;t3_kwisv4;False;True;t1_gj5upag;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9pc8n/;1610740350;1;True;False;anime;t5_2qh22;;0;[]; -[];;;USA_SCHOOLSHOOTER;;;[];;;;text;t2_4odoibhq;False;False;[];;What chapter is this episode in the web novel?;False;False;;;;1610657579;;False;{};gj9pjaf;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9pjaf/;1610740472;2;True;False;anime;t5_2qh22;;0;[]; -[];;;pamagiclol;;;[];;;;text;t2_5dmvf1ev;False;False;[];;I mean that is what poor and obvious writing leads to, it’s pretty obvious.;False;False;;;;1610658344;;False;{};gj9ribl;False;t3_kwisv4;False;True;t1_gj4ot8r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9ribl/;1610741756;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;"""for those of you in the audience that don't know""";False;False;;;;1610658722;;False;{};gj9sgx4;False;t3_kwisv4;False;True;t1_gj6r3oo;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9sgx4/;1610742435;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610658982;;1610664934.0;{};gj9t4z7;False;t3_kwisv4;False;True;t1_gj9aan2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9t4z7/;1610742881;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;JakyChanXD;;;[];;;;text;t2_2r86stmb;False;False;[];;Me when I auto fill jungle;False;False;;;;1610659048;;False;{};gj9taxk;False;t3_kwisv4;False;False;t1_gj4ip3y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9taxk/;1610742992;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GrayCatbird7;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GrayCattoborudo;light;text;t2_76f1jacw;False;False;[];;"A bit late to the party. I never imagined Subaru would kiss Emilia so early. That whole scene really didn't play out the way I was expecting. - -At first I felt Subaru was very clumsy and a bit insensitive, and I hardly found their exchange romantic. But in retrospect I think it makes sense. It's basically the equivalent of Subaru being picked up by Rem but as played by Emilia and Subaru. Seen that way there are plenty of things mirrored between the two exchanges and that's pretty neat. - -Perhaps the potentially problematic aspect is that this could look like him forcefully asking her to love him and return his feelings. But taking everything into account I guess it's not the case. He genuinely wants to support her and wants to be her Rem. It wasn't so much about her returning his love as it was about making her realize that he loves her and believes in her. - -Clumsily but as best as he can, Subaru is striving to be for Emilia what Rem was for him, someone that meets her at her lowest and pushes her forward. And whereas Subaru's problem was feeling powerless, Emilia's is abandonment trauma. That would explain the differences. The fact it is so difficult for her to trust someone could justify the forcefulness Subaru used, I suppose. And the fact she accepted to trust him is a major step for her character. - -All I'm asking for is that Emilia keeps her own agency as a character. In general Re:Zero has been better than most at having female characters with agency that aren't merely damsels in distress, so here's hoping that continues.";False;False;;;;1610660222;;1610660721.0;{};gj9wb0r;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gj9wb0r/;1610745031;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Alchion;;;[];;;;text;t2_p4db7;False;False;[];;good to know;False;False;;;;1610661882;;False;{};gja045k;False;t3_kwisv4;False;True;t1_gj77rgw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gja045k/;1610747543;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MABfan11;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MABfan11;light;text;t2_xdlmc;False;False;[];;">> AoT - Declaration of War -> ->> Re:Zero - Declaration of Love -> ->Love is War? - -that's the TLDR of r/anime's top 3";False;False;;;;1610662248;;False;{};gja0vbs;False;t3_kwisv4;False;True;t1_gj5i2ws;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gja0vbs/;1610748130;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KorraLover123;;;[];;;;text;t2_j979k;False;False;[];;LMAO;False;False;;;;1610663017;;False;{};gja2fr2;False;t3_kwisv4;False;True;t1_gj4ky6v;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gja2fr2/;1610749253;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Alastor001;;;[];;;;text;t2_2iz5xwtt;False;False;[];;"Our guy has been gitting gud too much ;) Veteran Souls player";False;False;;;;1610663449;;False;{};gja3bke;False;t3_kwisv4;False;True;t1_gj4q7jo;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gja3bke/;1610749844;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Alastor001;;;[];;;;text;t2_2iz5xwtt;False;False;[];;Haha, reminds me of that monument in Dark Souls 2 which counts your deaths;False;False;;;;1610663631;;False;{};gja3oxf;False;t3_kwisv4;False;True;t1_gj4oi08;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gja3oxf/;1610750106;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Alastor001;;;[];;;;text;t2_2iz5xwtt;False;False;[];;"So, does that count as their second kiss? ;) Or different loops don't count?";False;False;;;;1610663790;;False;{};gja408u;False;t3_kwisv4;False;True;t1_gj4dtps;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gja408u/;1610750326;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Permanoxx;;;[];;;;text;t2_3hwherkr;False;False;[];;Why?;False;False;;;;1610663856;;False;{};gja450c;False;t3_kwisv4;False;False;t1_gj9m8mq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gja450c/;1610750421;4;True;False;anime;t5_2qh22;;0;[]; -[];;;xTurK;;MAL;[];;http://myanimelist.net/profile/Zide;dark;text;t2_dl7te;False;False;[];;Yeah, I feel like people mix up 15 and 18.;False;False;;;;1610663880;;False;{};gja46oq;False;t3_kwisv4;False;True;t1_gj6pv5z;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gja46oq/;1610750452;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Alastor001;;;[];;;;text;t2_2iz5xwtt;False;False;[];;But surely she should understand that he has reasons to break those promises? I thought she trusts him a lot at this stage;False;False;;;;1610663945;;False;{};gja4bd0;False;t3_kwisv4;False;True;t1_gj4gco8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gja4bd0/;1610750540;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Alastor001;;;[];;;;text;t2_2iz5xwtt;False;False;[];;Lol, how come Garf is not pissed at the end? He seems way too calm despite his rage in beast form before;False;False;;;;1610664003;;False;{};gja4fk2;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gja4fk2/;1610750617;2;True;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;Why?;False;False;;;;1610664121;;False;{};gja4o0s;False;t3_kwisv4;False;True;t1_gj9oyjv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gja4o0s/;1610750767;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrTopHatMan90;;MAL;[];;http://myanimelist.net/animelist/MrTopHatMan;dark;text;t2_mtsx4;False;False;[];;Otto has the most awesome backstory, not because it is epic or he has a god power but just due to how simple/realistic it was. Otto is best character.;False;False;;;;1610664176;;False;{};gja4s1f;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gja4s1f/;1610750843;2;True;False;anime;t5_2qh22;;0;[]; -[];;;reconchex;;;[];;;;text;t2_2a338a10;False;False;[];;our simp has become a chad;False;False;;;;1610664241;;False;{};gja4wqu;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gja4wqu/;1610750929;3;True;False;anime;t5_2qh22;;0;[]; -[];;;electric_anteater;;;[];;;;text;t2_ocq5m;False;False;[];;It's almost like they're not fucking adults;False;False;;;;1610664266;;False;{};gja4yix;False;t3_kwisv4;False;True;t1_gj6w3vk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gja4yix/;1610750963;0;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"I mean there are very optimistic ( and a little denial ) people but even me who is a hardcore Re:Zero fan said in the last karma thread ""next episode of Re:Zero is good but it's impossible to compete with that episode of AOT"". - -The hype that AOT has put together in the last 3 seasons is coming at full force this season.";False;False;;;;1610664286;;False;{};gja4zyh;False;t3_kwisv4;False;False;t1_gj9aan2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gja4zyh/;1610750988;9;True;False;anime;t5_2qh22;;0;[]; -[];;;34arrows;;;[];;;;text;t2_hp6wz;False;False;[];;Someone gild this, it's honestly wonderful and it really made me smile;False;False;;;;1610664448;;False;{};gja5bwz;False;t3_kwisv4;False;True;t1_gj62jhj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gja5bwz/;1610751209;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SpeeDy_GjiZa;;MAL;[];;http://myanimelist.net/profile/SpeeDy_G;dark;text;t2_gsfq5;False;False;[];;IMO it was completely unrealistic. He actually managed to get through to her even though she was angry. IRL she would have just insisting he was wrong no matter what he did/said. Goddamit if this episode didn't hit fucking close.;False;False;;;;1610665032;;False;{};gja6ih9;False;t3_kwisv4;False;True;t1_gj4t8ab;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gja6ih9/;1610752019;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrTopHatMan90;;MAL;[];;http://myanimelist.net/animelist/MrTopHatMan;dark;text;t2_mtsx4;False;False;[];;OUR LAD CHAD! OUR LAD CHAD;False;False;;;;1610665305;;False;{};gja71zd;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gja71zd/;1610752393;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GmbDarien;;;[];;;;text;t2_cmulr;False;False;[];;Big death;False;False;;;;1610667661;;False;{};gjabnxz;False;t3_kwisv4;False;False;t1_gja4o0s;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjabnxz/;1610755522;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GmbDarien;;;[];;;;text;t2_cmulr;False;False;[];;next 3 eps of aot are hitting over 20k easily as well tbh;False;False;;;;1610667701;;False;{};gjabqqu;False;t3_kwisv4;False;False;t1_gja4zyh;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjabqqu/;1610755572;8;True;False;anime;t5_2qh22;;0;[]; -[];;;deltacharlie52;;;[];;;;text;t2_14a4g3;False;False;[];;Have you read Sloth IF? Would recommend for fellow Rem fans;False;False;;;;1610667827;;False;{};gjabzan;False;t3_kwisv4;False;True;t1_gj4g2k2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjabzan/;1610755728;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JadeDragon56;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/JadeDragon56;light;text;t2_ee93o;False;False;[];;I had no idea these existed. I'll definitely check it out. Thanks!;False;False;;;;1610668415;;False;{};gjad4fj;False;t3_kwisv4;False;True;t1_gjabzan;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjad4fj/;1610756516;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Masane;;MAL;[];;https://myanimelist.net/profile/Margrave_Masane;dark;text;t2_ep8og;False;False;[];;It's fine, it was always supposed to be a three-way relationship.;False;False;;;;1610668449;;False;{};gjad6sa;False;t3_kwisv4;False;True;t1_gj5kuyk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjad6sa/;1610756559;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CeaRhan;;;[];;;;text;t2_tn4ge;False;False;[];;"What if Subaru made sense and then told her what love's like instead of saying the same stuff for the twelfth time? - -It's not hard to understand";False;False;;;;1610668939;;False;{};gjae54y;False;t3_kwisv4;False;True;t1_gj8l8so;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjae54y/;1610757186;3;True;False;anime;t5_2qh22;;0;[]; -[];;;deltacharlie52;;;[];;;;text;t2_14a4g3;False;False;[];;No problem! Hope you enjoy it!;False;False;;;;1610669059;;False;{};gjaed6a;False;t3_kwisv4;False;True;t1_gjad4fj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjaed6a/;1610757329;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mareeck;;AP;[];;http://www.anime-planet.com/users/Mareeck;dark;text;t2_fz09z;False;False;[];;You can't compete with that manly nyaa;False;False;;;;1610669261;;False;{};gjaer8n;False;t3_kwisv4;False;True;t1_gj4lcwu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjaer8n/;1610757581;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pleiades1208;;;[];;;;text;t2_8e61j5he;False;False;[];;oh well at least we have a clown here on r/anime like you;False;True;;comment score below threshold;;1610670068;;False;{};gjagazr;False;t3_kwisv4;False;True;t1_gj8uecq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjagazr/;1610758578;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;Lyraden;;;[];;;;text;t2_cy7f5j5;False;False;[];;Why did they have to keep away Garfiel just for Subaru and Emilia to talk? Can someone explain why that whole part was necessary?;False;False;;;;1610670069;;False;{};gjagb30;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjagb30/;1610758579;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rafastry;;;[];;;;text;t2_3lutef;False;False;[];;Hey, that's the second anime this season that they did this for this intent, curious, isn't?;False;False;;;;1610670486;;False;{};gjah49g;False;t3_kwisv4;False;False;t1_gj4denl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjah49g/;1610759099;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FrizFroz;;;[];;;;text;t2_razrj;False;False;[];;Basically Rika from Higurashi this week;False;False;;;;1610670876;;False;{};gjahv8c;False;t3_kwisv4;False;True;t1_gj4oi08;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjahv8c/;1610759611;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kittenpreciosa;;;[];;;;text;t2_11w1e2;False;False;[];;"please don’t have Suburu re-do this & have Emilia lose that kiss memory 😭😭😭";False;False;;;;1610671668;;False;{};gjajeou;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjajeou/;1610760583;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lrekkk;;;[];;;;text;t2_6bubk4h;False;False;[];;Relax I said it as a joke man. You're easily triggered you know;False;False;;;;1610672666;;False;{};gjalcj7;False;t3_kwisv4;False;True;t1_gj8ht60;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjalcj7/;1610761829;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TechnicalCoconut5;;;[];;;;text;t2_3o5c7lpz;False;False;[];;Meh, now I know why I don't enjoy romance anime. Least favourite episode of what would be one of my favourite shows as a whole.;False;False;;;;1610673734;;False;{};gjandbw;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjandbw/;1610763183;7;True;False;anime;t5_2qh22;;0;[]; -[];;;134561256hjgadhjaks;;;[];;;;text;t2_2ixg6114;False;False;[];;"Emily and suburu conversation was so bad. - -Otto was alright compared to their segement of the episode. - -I have come to agree that anime just attracts the weirdest people, because people are cheering and going crazy over such a bad conversation";False;False;;;;1610677448;;False;{};gjauf23;False;t3_kwisv4;False;True;t1_gj88o9z;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjauf23/;1610767729;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Multipl;;;[];;;;text;t2_mi3bz;False;False;[];;"It was always an unfair comparison. Aot is in its ""final"" season and has a way bigger fanbase. Both stories are amazing though.";False;False;;;;1610679608;;False;{};gjayez5;False;t3_kwisv4;False;True;t1_gj9aan2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjayez5/;1610770188;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrRalphWaldo;;;[];;;;text;t2_4nxs7dt4;False;False;[];;Arc 4 ch 110;False;False;;;;1610679689;;False;{};gjayk8r;False;t3_kwisv4;False;True;t1_gj9pjaf;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjayk8r/;1610770274;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MrRalphWaldo;;;[];;;;text;t2_4nxs7dt4;False;False;[];;They have soul binding contract;False;False;;;;1610679862;;False;{};gjayvqr;False;t3_kwisv4;False;True;t1_gj9335w;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjayvqr/;1610770467;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PresidentNathan;;;[];;;;text;t2_139jqw;False;False;[];;Considering that Black Clover has only increased in quality, it was never season 3 of this show bad, though. It is sad to see the third anime I ever watched be discredited this way over one season, but the animation was bad even if the story is still amazing.;False;False;;;;1610679992;;False;{};gjaz49j;False;t3_kwhejb;False;True;t1_gj6f5xv;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gjaz49j/;1610770610;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LssKizan;;;[];;;;text;t2_tbzvw;False;False;[];;So because I didn´t like the declaration,it makes me a Rem fan? That's so dumb. There are better declarations because the two main characters of others series understand the feelings of eachother, the main example being Oregairu or FMAB. Also, the rem declaration was still better lol;False;False;;;;1610680907;;False;{};gjb0sqn;False;t3_kwisv4;False;False;t1_gj8kjao;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjb0sqn/;1610771629;7;True;False;anime;t5_2qh22;;0;[]; -[];;;DatAwesomeDude97;;;[];;;;text;t2_iz842c;False;False;[];;Thank you;False;False;;;;1610681074;;False;{};gjb142f;False;t3_kwisv4;False;True;t1_gj89244;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjb142f/;1610771819;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Specs64z;;;[];;;;text;t2_hgwmdqa;False;False;[];;"I was like Subaru once. I was madly in love with a girl who was broken much like how Emilia is. I thought surely my love for her could push against her self hatred. That's how all the story books go, after all. For nearly 3 years, it was enough. I was happy, and thought she was too. We had plans for the future. We were going to get married. For a short time, I even began to refer to her as my wife. - -It didn't work out for me in the end. She pushed me away, said I was being selfish. That everything I'd ever said was only because I wanted something, whether it be sex or money or whatever. She literally couldn't accept that I loved her, she was convinced there must be some other reason I stuck around. When she finally told me about it, she revealed it had been eating away at her for years. Being with me was literally mental torture for her. - -That shattered me. I haven't seen or heard from her since then. - -Maybe this fantasy world can show me the ""good ending"". Godspeed, Subaru. It's a good thing you've been cursed with so many extra lives. You'll need 'em.";False;False;;;;1610681519;;False;{};gjb1xmi;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjb1xmi/;1610772320;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Not_just_here;;MAL;[];;http://myanimelist.net/profile/chikuchi;dark;text;t2_p7fjl;False;False;[];;"I thought it was pretty realistic, since to me, Emilia's trust issues merging with her low self esteem was the driving force of her side of the argument. Someone like that doesn't believe that they deserve the kindness and friendship other people give. Emilia was fine with Puck because she thinks of him as a father figure, and understands why he would go so far for his ""daughter"". With Subaru on the other hand, she doesn't remember doing anything ""deserving"" of admiration or love ever since he showed up. It's a kind of ""imposter syndrome"", where you don't see yourself qualified for the role, even if other people see that you are. People with low self esteem need that assurance from those they care about. They need to know - *realize* - that loved ones will always be there for them despite their major flaws that would drive others away. I think the reason being ""love"" is good enough, especially since he's said what about Emilia he likes. ""Love"" would NOT be good enough if he stopped at her physical traits tho. - -Yeah it might not be realistic in the sense that it basically resolved in one argument, but Subaru's side is definitely something a lot of people in Emilia's position need to hear - -On a side note: what people have been saying about Emilia ""wanting to be right"" has been bothering me. That's not the case at all. She *really* doesn't want to be right, but just can't convince herself that she has more than just Puck who'll be by her side. By being right, Emilia will have gained nothing, not even satisfaction. Because if she's right, no one loves her anymore.";False;False;;;;1610682435;;1610682933.0;{};gjb3lpo;False;t3_kwisv4;False;True;t1_gj6bsuj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjb3lpo/;1610773314;2;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;Damn, I hope you have found love now.;False;False;;;;1610682815;;False;{};gjb4a2b;False;t3_kwisv4;False;True;t1_gjb1xmi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjb4a2b/;1610773729;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sKyBlazer08;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sKyBlazer08;light;text;t2_17ibsr;False;False;[];;"Amazing episode, it's also amazing how White Fox manages to make episodes this long. - -Otto's backstory was cool, it was already hinted before that Otto has abilities, so it's cool to see it in action. Gaddamn, Garf got his ass beat by Ram lmao, no match in hand to hand combat. - -And of course the second half of the episode, Subaru and Emilia's argument was super great. Rieri did a fantastic job and Subaru's va as always don't miss. The insert song was also fantastic. Great episode, definitely my favorite so far.";False;False;;;;1610686942;;False;{};gjbb7i9;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjbb7i9/;1610777762;3;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;">Not sure why you keep bringing up the Rem confession? Did I say it was good? - - - -I assumed you had no issue with Rem's confession considering you had problems with this one particular scene, Even though it's supposed to be a parallel to S1 Ep 18. - ->None of your points stand up- it's a terrible scene. It's forced and awkward, mainly due to him not been able to answer her question.. that and what I've already said. - -My trust has been shattered, I've just lost my long term buddy and I've getting these odd memories back... oh and the guy who's already confessed to me before... is continuing to betray my trust and WON'T answer why. Yep Kissing time!!!! - -If you took the time to pay attention, i wouldn't have to answer this but oh well - -Also the oversimplification of the scene is not going to make your points any compelling. - - -Yet another person that completely missed the entire point....sigh - -Emilia has 3 issues to deal with when it came down to their relationship atm. - -First, Doubting Subaru's love part 1, because of him not being harsh on her, she claims how he never gets angry towards her even she fucks up, to which Subaru replies he doesn't because he loves her, he does HOWEVER gets disappointed, He admits she's not some angel and she does have flaws. - -Claiming how she would take on trails, yet failing and not allowing Subaru to take them on in her place, being selfish regarding that matter etc. - -Second, Breaking the promise, Which Subaru can't currently answer, Especially not that moment, where his friends are risking their lives to fight against Garfiel. - - -Subaru has no issue of being honest with Emilia regarding breaking the promise, but he can't start telling her the ENTIRE story right there in the sanctuary. - -Third, Doubting Subaru's love part 3, She claims if he broke the promise how can he still claim to love her, when he lies in the most important moments (Promises mean a lot to Spirit Arts users btw) - -To which Subaru replies with ""i love you"", it's him being honest with her, because regardless of the reason behind breaking the promise, his feelings never changed obv, He loves her and believes in her. - -Emilia doubts that claim and he responds back with Subaru claiming he wouldn't have suffered so much for a pain in the ass girl like herself if he didn't love her. - -He's been there for her always, So Emilia doubting him is her own misguided issue, Not Subaru's, For he himself has proven multiple times he's there for her. - -Third, Doubting Subaru's love part 2, When Emilia questioned if Subaru's love for her would still be there, if her memories coming back changes her as a person, Subaru recalls back the homework his mother laid out for him. - -""What's important is not where you start, or what happens midway but how it ends"" - -Subaru finally realizes what that means and applies it in this particular situation, The side he's seen of Emilia, he's confident that her memories coming back would not change her as a person, Because he loves her, Because he believes in her. Who she is now DOES MATTER. - -Fourth, Still not convinced of his love, Subaru tries to prove her by his actions, By kissing her, and before he does, he tells her that she can oppose if she doesn't want to, Thereby having a consenting intimate moment";False;False;;;;1610687230;;False;{};gjbbnoa;False;t3_kwisv4;False;True;t1_gj82me8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjbbnoa/;1610778012;0;True;False;anime;t5_2qh22;;0;[]; -[];;;unevengerm2204;;;[];;;;text;t2_114wjc;False;False;[];;So what's the original sauce?;False;False;;;;1610688108;;False;{};gjbcz20;False;t3_kwisv4;False;True;t1_gj4kwp3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjbcz20/;1610778759;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TausifAhmad;;;[];;;;text;t2_16x6fe;False;False;[];;Frederica perhaps...;False;False;;;;1610690912;;False;{};gjbgxr8;False;t3_kwisv4;False;True;t1_gj4q1fi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjbgxr8/;1610780989;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fargame;;;[];;;;text;t2_4btzbahd;False;False;[];;He hasn't been here in a while. But he has a good reason for this so I'll just move along;False;False;;;;1610691069;;False;{};gjbh5dq;False;t3_kwisv4;False;False;t1_gja450c;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjbh5dq/;1610781111;6;True;False;anime;t5_2qh22;;0;[]; -[];;;longlikesfood;;;[];;;;text;t2_55gxwlmq;False;False;[];;After all his simping he finally got the kiss, my boy barusu;False;False;;;;1610692008;;False;{};gjbidug;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjbidug/;1610781784;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_The_Bomb;;;[];;;;text;t2_wxfma;False;False;[];;You snooze, you lose.;False;False;;;;1610692445;;False;{};gjbixpb;False;t3_kwisv4;False;False;t1_gj4jzbq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjbixpb/;1610782090;1;True;False;anime;t5_2qh22;;0;[]; -[];;;merickmk;;;[];;;;text;t2_4ujqdaze;False;False;[];;There was a theory back a few episodes during the whole witches arc that Satella is Emilia from a future where something happened to either of them trying to meet him again or maybe save him. I kinda like that.;False;False;;;;1610694705;;False;{};gjblmxg;False;t3_kwisv4;False;True;t1_gj4ot8r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjblmxg/;1610783579;2;True;False;anime;t5_2qh22;;0;[]; -[];;;merickmk;;;[];;;;text;t2_4ujqdaze;False;False;[];;Ad breaks? Nah fuck that, have a 28min episode of pure content.;False;False;;;;1610694873;;False;{};gjbltrk;False;t3_kwisv4;False;True;t1_gj4ir2r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjbltrk/;1610783678;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Alpha_Whiskey_Golf;;;[];;;;text;t2_5q4xn8p5;False;False;[];;oh noohohohoho. my sides are in orbit.;False;False;;;;1610698763;;False;{};gjbq0n7;False;t3_kwisv4;False;True;t1_gj52w63;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjbq0n7/;1610785960;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;Well he's covered in blood which indicates it was a long battle, he's probably really tired at this point. It's sunset in that scene, his confrontation with Otto started midday.;False;False;;;;1610698953;;False;{};gjbq7s7;False;t3_kwisv4;False;False;t1_gja4fk2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjbq7s7/;1610786065;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MarkDave16;;;[];;;;text;t2_3hq0mi5e;False;False;[];;What is love;False;False;;;;1610702795;;False;{};gjbu2va;False;t3_kwisv4;False;True;t1_gjae54y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjbu2va/;1610788156;1;True;False;anime;t5_2qh22;;0;[]; -[];;;USA_SCHOOLSHOOTER;;;[];;;;text;t2_4odoibhq;False;False;[];;Thx;False;False;;;;1610702871;;False;{};gjbu5fp;False;t3_kwisv4;False;True;t1_gjayk8r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjbu5fp/;1610788196;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ButtholePasta;;;[];;;;text;t2_h1yde;False;False;[];;"Subaru's confession to push Emilia forward here was a direct parallel to Rem doing the same for Subaru in S1! Good shit, Re:Zero. - -As someone that liked S2 part 1 but felt that it had a lot of set up without the payoff, I'm already loving S2 part 2.";False;False;;;;1610703411;;False;{};gjbuoa6;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjbuoa6/;1610788487;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ButtholePasta;;;[];;;;text;t2_h1yde;False;False;[];;Yea seriously I thought that was the joke answer. I thought that Otto found the truth about the guy's girlfriend, Otto decided he wasn't gonna say shit, and then when he saw a cat schmoozing with another cat he decided that he had to expose the truth. But no, he got cucked by a black cat.;False;False;;;;1610703814;;False;{};gjbv2ek;False;t3_kwisv4;False;False;t1_gj6mhm1;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjbv2ek/;1610788701;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ztdz800;;;[];;;;text;t2_wp7ij;False;False;[];;I can't feel anything for emilia she's to annoying and can't do anything, not even a rem fan, just can't get behind this relationship. Doesn't feel like love, more like a one sided obsession;False;True;;comment score below threshold;;1610704155;;False;{};gjbve50;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjbve50/;1610788881;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;MarkDave16;;;[];;;;text;t2_3hq0mi5e;False;False;[];;Wait I really don't get it. Will you please explain what that means?;False;False;;;;1610704177;;False;{};gjbvevn;False;t3_kwisv4;False;True;t1_gj7o5ti;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjbvevn/;1610788891;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ButtholePasta;;;[];;;;text;t2_h1yde;False;False;[];;"Just want to second this. People were terrified in S2 part 1 that the save point would over write in that timeline where Petra got blown up in the mansion. Re:Zero can be brutal, but it's not needlessly cruel. What gain to the story would there be to have Petra be perma-deathed there? - -This is like earlier Game of Thrones all over again, where some people thought that literally anybody could die because it's GoT. Uh no, the story isn't gonna just randomly kill main characters for the shock value. Just because you didn't see a main character death coming doesn't mean that it occurred without the proper set up to be followed by the proper ramifications. They're still trying to tell a complete story. Well, at least until the writing went to shit.";False;False;;;;1610704271;;False;{};gjbvi45;False;t3_kwisv4;False;False;t1_gj5gr8w;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjbvi45/;1610788939;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ButtholePasta;;;[];;;;text;t2_h1yde;False;False;[];;"It's not Re:Zero's thing; it's more of a meme than anything. I don't think Re:Zero has ever reset a truly meaningful character/relationship development. It'd be a frustrating/meaningless show if all important development for characters other than Subaru was constantly undone as the show is all about how Subaru learns to get to the correct developments. - -I really can't think at all about when I thought everything was truly secure in a timeline and then the rug was pulled out from under me. I think the only time was when they killed Betelgeuse the first time and then Subaru got taken over but a lot of town folk died in that run I believe, so it still made sense that it wasn't an ideal run and had potential to be reset.";False;False;;;;1610704765;;False;{};gjbvyxx;False;t3_kwisv4;False;True;t1_gj51zk8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjbvyxx/;1610789195;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Alastor001;;;[];;;;text;t2_2iz5xwtt;False;False;[];;Kinda feel bad for him;False;False;;;;1610704768;;False;{};gjbvz1q;False;t3_kwisv4;False;False;t1_gjbq7s7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjbvz1q/;1610789196;3;True;False;anime;t5_2qh22;;0;[]; -[];;;casper_07;;;[];;;;text;t2_31dsin4c;False;False;[];;Ya but those people aren’t what I’m referring to. There are surely far more people that don’t like major spoilers but are fine with minor ones. I’m one of them because I believe it won’t spoil too much of the experience unless the reveal itself is a major plot twist. Glad I’ve read the manga in this case, I’ll be annoyed for sure if I didn’t lol;False;False;;;;1610704903;;False;{};gjbw3oi;False;t3_kwhejb;False;False;t1_gj8ng69;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gjbw3oi/;1610789268;1;True;False;anime;t5_2qh22;;0;[]; -[];;;randomkingg;;;[];;;;text;t2_2iaki5ad;False;False;[];;Didn't Subaru take advantage of Emilia's vulnerability;False;False;;;;1610705824;;False;{};gjbx0c5;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjbx0c5/;1610789754;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Imaccqq;;;[];;;;text;t2_8yoti5vm;False;False;[];;I was pretty disappointed after all the people hyping her up over Rem.;False;False;;;;1610706766;;False;{};gjbxxoh;False;t3_kwisv4;False;True;t1_gj7ezlj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjbxxoh/;1610790267;3;False;False;anime;t5_2qh22;;0;[]; -[];;;Archbishop_of_Envy;;;[];;;;text;t2_9h8o3kti;False;False;[];;Nah why do you feel like it?;False;False;;;;1610710364;;False;{};gjc1ljo;False;t3_kwisv4;False;True;t1_gjbx0c5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjc1ljo/;1610792318;0;True;False;anime;t5_2qh22;;0;[]; -[];;;randomkingg;;;[];;;;text;t2_2iaki5ad;False;False;[];;She had lost her spirit cat basically her mother and were having new memories with a identity crisis and he just like dorge if u don't Wana;False;False;;;;1610711841;;False;{};gjc36n0;False;t3_kwisv4;False;True;t1_gjc1ljo;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjc36n0/;1610793240;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610711915;;False;{};gjc39l2;False;t3_kwisv4;False;True;t1_gjc36n0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjc39l2/;1610793286;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Archbishop_of_Envy;;;[];;;;text;t2_9h8o3kti;False;False;[];;Subaru didn't it beacuse he thought 'Now that Emilia is weak lets fo for a kiss'. He did it beacuse he was giving her a proof that he loves her.;False;False;;;;1610712160;;False;{};gjc3jln;False;t3_kwisv4;False;True;t1_gjc36n0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjc3jln/;1610793440;2;True;False;anime;t5_2qh22;;0;[]; -[];;;randomkingg;;;[];;;;text;t2_2iaki5ad;False;False;[];;Well he first said all the pain he went through for her and then went like you want proof I love u cause all the pain wasent enough lemme suck on it lips;False;False;;;;1610712822;;False;{};gjc4axp;False;t3_kwisv4;False;True;t1_gjc3jln;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjc4axp/;1610793859;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MudGroundbreaking840;;;[];;;;text;t2_7a9nwti2;False;False;[];;What?;False;False;;;;1610712980;;False;{};gjc4hib;False;t3_kwisv4;False;True;t1_gj6cppq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjc4hib/;1610793957;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TeixeiraJRT;;;[];;;;text;t2_x88v8;False;False;[];;"Crusch is a militant leader, if any on the cast would be a captain it would probably be her. -Anyway it's a joke.";False;False;;;;1610713069;;False;{};gjc4la3;False;t3_kwisv4;False;True;t1_gjc4hib;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjc4la3/;1610794014;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Archbishop_of_Envy;;;[];;;;text;t2_9h8o3kti;False;False;[];;You are just taking 2 different dialogues and combining them without making any sense.;False;False;;;;1610713264;;False;{};gjc4tna;False;t3_kwisv4;False;True;t1_gjc4axp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjc4tna/;1610794142;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok-Sense5532;;;[];;;;text;t2_8c7ppe1e;False;False;[];;"Really amazing episode! Subaru became a true man, deserving to be called as Chadbaru! -Sadly, I think Re:zero ep 2 deserve more votes, it was an epic ep afterall";False;False;;;;1610713526;;False;{};gjc54ym;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjc54ym/;1610794323;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Rintohsakabooty;;;[];;;;text;t2_7q667wda;False;False;[];; u/Xx_KiK_xX_AltAcc;False;False;;;;1610713826;;False;{};gjc5iih;False;t3_kwisv4;False;False;t1_gj4kwp3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjc5iih/;1610794537;0;True;False;anime;t5_2qh22;;0;[]; -[];;;randomkingg;;;[];;;;text;t2_2iaki5ad;False;False;[];;Yeah pretty much u changed my mind on the second reply anyway thanks for taking out time from ur life to clear my anime misconception;False;False;;;;1610713861;;False;{};gjc5k1r;False;t3_kwisv4;False;True;t1_gjc4tna;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjc5k1r/;1610794561;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Archbishop_of_Envy;;;[];;;;text;t2_9h8o3kti;False;False;[];;From your previous statement, you made it sound like Subaru kissed her because he wanted a reward for all the pain he went through for her which was never intended in that episode. How am I supposed to reply when it was never intended?;False;False;;;;1610714169;;1610714532.0;{};gjc5xoe;False;t3_kwisv4;False;True;t1_gjc5k1r;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjc5xoe/;1610794770;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Archbishop_of_Envy;;;[];;;;text;t2_9h8o3kti;False;False;[];;"He said he went through all the pain because he believes in her which she was clearly denying. Idk where you got this idea - ->you want proof I love u cause all the pain wasent enough lemme suck on it lips";False;False;;;;1610714298;;False;{};gjc63hz;False;t3_kwisv4;False;True;t1_gjc4axp;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjc63hz/;1610794861;2;True;False;anime;t5_2qh22;;0;[]; -[];;;randomkingg;;;[];;;;text;t2_2iaki5ad;False;False;[];;I mean did he not say In a before season. That Emilia owes him a lot.;False;False;;;;1610714494;;False;{};gjc6c90;False;t3_kwisv4;False;True;t1_gjc5xoe;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjc6c90/;1610794997;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Archbishop_of_Envy;;;[];;;;text;t2_9h8o3kti;False;False;[];;That time he was not in the right state of mind. He was visibly prideful. Now he has changed a lot. Seriously how can you compare a S1E13 Subaru with S2E15 Subaru when he has changed a lot.;False;False;;;;1610714661;;False;{};gjc6jym;False;t3_kwisv4;False;False;t1_gjc6c90;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjc6jym/;1610795121;1;True;False;anime;t5_2qh22;;0;[]; -[];;;randomkingg;;;[];;;;text;t2_2iaki5ad;False;False;[];;When he was trying to tell her abt his return by death ability he said she owed him a lot;False;False;;;;1610714666;;False;{};gjc6k71;False;t3_kwisv4;False;True;t1_gjc63hz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjc6k71/;1610795125;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Archbishop_of_Envy;;;[];;;;text;t2_9h8o3kti;False;False;[];;He was wrong at that point and he realised it afterwards. So how can you compare that Subaru with the current Subaru?;False;False;;;;1610714786;;False;{};gjc6pr8;False;t3_kwisv4;False;True;t1_gjc6k71;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjc6pr8/;1610795213;1;True;False;anime;t5_2qh22;;0;[]; -[];;;randomkingg;;;[];;;;text;t2_2iaki5ad;False;False;[];;Yes but to Emilia the time is much shorter. And she would still remember that interaction;False;False;;;;1610715199;;False;{};gjc797c;False;t3_kwisv4;False;True;t1_gjc6jym;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjc797c/;1610795511;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Archbishop_of_Envy;;;[];;;;text;t2_9h8o3kti;False;False;[];;"Yeah, so he apologised and told Emilia that he was wrong at that point and she forgave him for that. But why are you taking a statement he made in Season 1 which already have been resolved and connecting it with the current episode. Emilia had forgotten about that Subaru also forgot about that. They never refer to that in this episode. So why are you taking that into consideration? - -Look I am ready to help you just tell me what you did not get in this episode.";False;False;;;;1610715441;;False;{};gjc7l4e;False;t3_kwisv4;False;True;t1_gjc797c;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjc7l4e/;1610795693;1;True;False;anime;t5_2qh22;;0;[]; -[];;;randomkingg;;;[];;;;text;t2_2iaki5ad;False;False;[];;What I didn't get was the fact that I just thought it was un ethical for him to kiss her while she was so vulnerable and like in the middle of a complete crisis;False;False;;;;1610715571;;False;{};gjc7rgd;False;t3_kwisv4;False;True;t1_gjc7l4e;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjc7rgd/;1610795791;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NightCupcake;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/NoodleGalaxy;light;text;t2_77fhp1wn;False;False;[];;Episode*;False;False;;;;1610715656;;False;{};gjc7vp7;False;t3_kwhejb;False;True;t1_gj596ai;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gjc7vp7/;1610795853;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lerbyn210;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Lerbyn;light;text;t2_kkmj9;False;False;[];;What? shouldn't that be the norm, why is that hilarious its literally true for every show;False;False;;;;1610719461;;False;{};gjcdua7;False;t3_kwisv4;False;False;t1_gj4dvoi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjcdua7/;1610799142;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Memesaremyfather;;;[];;;;text;t2_11rd0h;False;False;[];;"\>homeless girl with rocks that tell her what to do - -\> tfw you find out emilia smokes crack";False;False;;;;1610721222;;False;{};gjcgzxl;False;t3_kwisv4;False;True;t1_gj78en5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjcgzxl/;1610800926;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AhmadXiii;;;[];;;;text;t2_3k7gdbcp;False;False;[];;I still don't understand what they were doing with Garfiel exactly and why and where did shima go.;False;False;;;;1610722778;;False;{};gjcjzql;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjcjzql/;1610802713;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Theleux;;MAL a-1milquiz;[];;https://myanimelist.net/profile/Theleux;dark;text;t2_am615;False;False;[];;Do most shows play the previous season's OP and ED in a new season before the new OP and ED? That's not very common at all.;False;False;;;;1610723102;;False;{};gjckmxw;False;t3_kwisv4;False;False;t1_gjcdua7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjckmxw/;1610803114;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tomtomm9;;;[];;;;text;t2_3ycvxoo9;False;False;[];;Bro I feel what your saying the 6 month break and another slow start would make anyone feel like that. But the stuff I’ve heard about what’s to come.. I hope it goes back to being a 10.;False;False;;;;1610723517;;False;{};gjclh4r;False;t3_kwisv4;False;True;t1_gj77t93;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjclh4r/;1610803655;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Xx_KiK_xX_AltAcc;;;[];;;;text;t2_5yw7h4dj;False;False;[];;I saw it earlier today;False;False;;;;1610723561;;False;{};gjclkd2;False;t3_kwisv4;False;True;t1_gjc5iih;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjclkd2/;1610803710;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lerbyn210;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Lerbyn;light;text;t2_kkmj9;False;False;[];;I think I misunderstood you I thought you meant that the op and ed played more times in s2 part 1 then in s2 part 2 but I get what you mean now;False;False;;;;1610723872;;False;{};gjcm758;False;t3_kwisv4;False;True;t1_gjckmxw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjcm758/;1610804134;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwafu;;;[];;;;text;t2_97fk2;False;False;[];;EPISODE IS FULL OF TEE TEE;False;False;;;;1610725260;;False;{};gjcp1e6;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjcp1e6/;1610805986;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Theleux;;MAL a-1milquiz;[];;https://myanimelist.net/profile/Theleux;dark;text;t2_am615;False;False;[];;No haha. But who knows maybe it will play more times this season;False;False;;;;1610725792;;False;{};gjcq4rz;False;t3_kwisv4;False;True;t1_gjcm758;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjcq4rz/;1610806709;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Takeshi96444;;;[];;;;text;t2_731su741;False;False;[];;The first half with otto spotlight was imo really good tho;False;False;;;;1610725973;;False;{};gjcqihe;False;t3_kwisv4;False;True;t1_gjandbw;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjcqihe/;1610806965;3;True;False;anime;t5_2qh22;;0;[]; -[];;;crackerjeffbox;;;[];;;;text;t2_fb367;False;False;[];;Next frame of the meme being that guy getting hit with a twisted tea;False;False;;;;1610726337;;False;{};gjcra1w;False;t3_kwisv4;False;True;t1_gj4pll7;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjcra1w/;1610807522;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChornoyeSontse;;;[];;;;text;t2_8vjfuk9d;False;False;[];;">People were terrified in S2 part 1 that the save point would over write in that timeline where Petra got blown up in the mansion. Re:Zero can be brutal, but it's not needlessly cruel - -Yeah I also thought that was funny, like four characters had just died (five if you count Patrasche), it would've been ridiculous if it had've overwritten at that point. Of course, Subaru doesn't know that so he freaked out, but we do. - ->Game of Thrones - -Ah...suddenly I feel this gaping pit of disappointment and disgust building in my stomach.";False;False;;;;1610726365;;False;{};gjcrc6k;False;t3_kwisv4;False;True;t1_gjbvi45;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjcrc6k/;1610807561;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mylaur;;MAL;[];;https://myanimelist.net/animelist/Mylaur;dark;text;t2_gtwu7;False;False;[];;"Those reasons and what he said are not the same though - - -It felt kind of empty from Subaru";False;False;;;;1610727355;;False;{};gjctfhu;False;t3_kwisv4;False;True;t1_gj5ta6a;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjctfhu/;1610809041;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mylaur;;MAL;[];;https://myanimelist.net/animelist/Mylaur;dark;text;t2_gtwu7;False;False;[];;">and it worked? - -I wonder though, are there going to be negative consequences afterwards ?? Did Emilia just get tricked by Subaru ? Are they going to hell together ? - - -All these reasons before don't seem accidental, there's something going here. The author wouldn't drop the entire shit out of the blue.";False;False;;;;1610727688;;False;{};gjcu5hi;False;t3_kwisv4;False;True;t1_gj77wx6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjcu5hi/;1610809515;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BasedFunnyValentine;;;[];;;;text;t2_2dv5gtho;False;False;[];;Rem’s confession was still better;False;False;;;;1610729344;;False;{};gjcxqtf;False;t3_kwisv4;False;True;t1_gj4djlk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjcxqtf/;1610812038;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mylaur;;MAL;[];;https://myanimelist.net/animelist/Mylaur;dark;text;t2_gtwu7;False;False;[];;">Subaru still has a lot of growing to do. The fact that he said he doesn't even think about her feelings and pretty much feeling entitled to her love because of how much he suffers for her. He's done a lot for her and he also gives her some really good advice on this scene, but Emilia is still an idol to Subaru. - -It felt like he was possessed by pride honestly or projecting it.";False;False;;;;1610729441;;False;{};gjcxyh3;False;t3_kwisv4;False;False;t1_gj50ldy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjcxyh3/;1610812184;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610730400;;False;{};gjd020k;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjd020k/;1610813665;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wolfreturned;;;[];;;;text;t2_77v4jm2h;False;False;[];;He doesn't respect her that's why he's trying to stop her from being eaten by rabbits and her friends from being murdered by assassins;False;False;;;;1610730797;;False;{};gjd0xfs;False;t3_kwisv4;False;True;t1_gj6oean;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjd0xfs/;1610814275;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BasedFunnyValentine;;;[];;;;text;t2_2dv5gtho;False;False;[];;"Anyone else find Rem’s confession better? - -Subaru listing why he loves Emilia, Subaru repeating he loves her 18 times (yes, I counted), the constant back and forth with Emilia saying “no you don’t love me. You’re a liar!” - -What i like about Rem’s confession is it presents how flawed both of them are, the lengths Rem was willing to go through and sacrifice after her suffering to be with Subaru. Emilia had some valid criticisms only for Subaru to ignore them by repeatedly stating that he loves her. That doesn't change what she had to say and makes him look obsessive and manipulative. - -Emilia comes off as a cute innocent puppy UwU Subaru has to protect and is crying because her owner left her alone for a few hours. - -This drama felt like it was trying to be romantic but ended up soppy and melodramatic. - -Props to the VAs for pouring their heart out and making it emotional. However, Subaru’s advice from his mom, Emilia’s face reflecting in his eyes and the kiss was the only good scenes of this confession.";False;False;;;;1610730948;;1610800554.0;{};gjd19h4;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjd19h4/;1610814544;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Kronman590;;;[];;;;text;t2_7yancm;False;False;[];;"Am I the only one who was a bit..off on the Emilia Subaru conversation/argument/confession? Emilia is basically going through PTSD of her past and abandonment issues, then this dude who broke his promise \*twice\* returns again who she's conflicted about because: a) he abandoned her while she was going through abandonment issues, b) he breaks promises but also gets himself hurt for her. And while she's basically laying it on Subaru, his argument is basically ""yeah you might suck but I'll still always love you (specifying your physical features)"". Idk I just kinda feel like the kiss wasn't...deserved? Like she's in a dark place and just got kinda coerced into it? Did I miss something in my analysis?";False;False;;;;1610737486;;False;{};gjdfl9n;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjdfl9n/;1610824613;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Shadow_Gabriel;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/shadovv_gb;light;text;t2_gerjp;False;False;[];;You have to do it in a dark place where no one is around, like Subaru does in this episode.;False;False;;;;1610740902;;False;{};gjdmu2l;False;t3_kwisv4;False;True;t1_gj672tg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjdmu2l/;1610829658;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aura1661;;;[];;;;text;t2_15n2vi;False;False;[];;""" In internet slang, a **simp** is a person (usually male) who is excessively deferential, engages in flattery, or ""does way too much for a person they like"" (usually a female), sometimes with the ulterior motive of courtship towards an intimate relationship or sexual intercourse. "" - -How does this not describe Subaru? He's the definition of a simp.";False;False;;;;1610742301;;False;{};gjdpru4;False;t3_kwisv4;False;True;t1_gj5cmr8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjdpru4/;1610831745;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aura1661;;;[];;;;text;t2_15n2vi;False;False;[];;Subaru is just so fucking cringe holy shit. If it wasn't for Otto this episode would be the worst episode in the entire series for me. I swear if Emilia ever got with someone else Subaru would kill himself over 1000 times just to try and stop her from being with them.;False;False;;;;1610742443;;False;{};gjdq2ld;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjdq2ld/;1610831944;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Aura1661;;;[];;;;text;t2_15n2vi;False;False;[];;lmao, his 20 upvotes to your 35 downvotes say otherwise.;False;False;;;;1610742573;;False;{};gjdqcg3;False;t3_kwisv4;False;False;t1_gj68m7w;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjdqcg3/;1610832123;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WeeabooVoid;;;[];;;;text;t2_6hwibewj;False;False;[];;I really liked this episode and it hurts to see people who don't just because Rem wasn't in Emilia's place.;False;False;;;;1610742623;;False;{};gjdqg7w;False;t3_kwisv4;False;True;t1_gj965qt;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjdqg7w/;1610832189;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dardanit;;;[];;;;text;t2_8i2k7;False;False;[];;"This is the reason why i mostly stay away from this sub or rather almost any anime sub. Everyone gets so toxic & almost all the people here that read the manga act like they are superior to everyone else and shit on every single thing they dont like. - -I just want to enjoy the show but honestly i almost cant when i see all the crying over every little thing on this sub. - -I watched the new episode now and i liked the artstyle and animation enough to know that i will have a good time watching this season even if there are parts that are not perfectly drawn. -Storywise i am curious how far it goes bc i didnt read the manga and i dont want to read it before the anime ends. - -and on that note i am out of this sub again for the rest of the season and hope everyone enjoys it and gets a good time out of it.";False;False;;;;1610742733;;False;{};gjdqoir;False;t3_kwhejb;False;True;t1_gj6140o;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gjdqoir/;1610832347;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SamSawada;;;[];;;;text;t2_2q4xeqv;False;False;[];;I think you’ll enjoy the rest of the season if you’re into 7DS I think story wise it’s really good from here on out so just enjoy!;False;False;;;;1610742938;;False;{};gjdr3v9;False;t3_kwhejb;False;True;t1_gjdqoir;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gjdr3v9/;1610832642;1;True;False;anime;t5_2qh22;;0;[]; -[];;;norinico;;;[];;;;text;t2_7yhw4vve;False;False;[];;Subaru's reflection in the Emilia's pupils. PogChamp;False;False;;;;1610745822;;False;{};gjdx3vb;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjdx3vb/;1610836661;3;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"""While the general consensus is that Simp stands for ‘Sucker Idolising Mediocre P*ssy’, the true Simp meaning is far less exciting than you’d think. From a historical viewpoint, the word is a shortened form of the phrase ‘simpleton’, meaning fool or silly person. It’s quite a tame insult by today’s standards."" - -Now that the internet decided to basically give it a super WIDE vague definition like that is another story. - -Basically any hero in love from any story can be called simp with that definition.";False;False;;;;1610745969;;False;{};gjdxelk;False;t3_kwisv4;False;True;t1_gjdpru4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjdxelk/;1610836865;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610746475;;False;{};gjdyfwd;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjdyfwd/;1610837620;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;These are just things he's said over the course of the series.;False;False;;;;1610746902;;False;{};gjdzb9u;False;t3_kwisv4;False;True;t1_gjctfhu;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjdzb9u/;1610838192;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kingturboturtle13;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4v2mq4oo;False;False;[];;*eeeeeeeeEEEEEEEEeeeeeeeee*;False;False;;;;1610749946;;False;{};gje5d5j;False;t3_kwisv4;False;True;t1_gj8z27g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gje5d5j/;1610842192;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kingturboturtle13;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4v2mq4oo;False;False;[];;Fans of who now?;False;False;;;;1610750093;;False;{};gje5ng9;False;t3_kwisv4;False;False;t1_gj5o7jy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gje5ng9/;1610842379;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Kingturboturtle13;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4v2mq4oo;False;False;[];;What are you guys on and where can I get some;False;False;;;;1610750142;;False;{};gje5qy1;False;t3_kwisv4;False;False;t1_gj71qck;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gje5qy1/;1610842442;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kingturboturtle13;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4v2mq4oo;False;False;[];;***OH LOVE ME***;False;False;;;;1610750221;;False;{};gje5whs;False;t3_kwisv4;False;False;t1_gj854gd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gje5whs/;1610842547;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610750313;;False;{};gje62xn;False;t3_kwisv4;False;True;t1_gj5q34g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gje62xn/;1610842668;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kingturboturtle13;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4v2mq4oo;False;False;[];;Fans of who?;False;False;;;;1610750430;;False;{};gje6b8f;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gje6b8f/;1610842819;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610750634;;False;{};gje6pof;False;t3_kwisv4;False;True;t1_gj7u97x;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gje6pof/;1610843078;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;I don't think that's true. Prety sure some languages might have a different word for it.;False;False;;;;1610750716;;False;{};gje6vc9;False;t3_kwisv4;False;True;t1_gje62xn;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gje6vc9/;1610843187;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Blue_Storm11;;;[];;;;text;t2_2v5lcrru;False;False;[];;Actually in the novels after this this scene subaru thinks that Rems confession to him was better.;False;False;;;;1610750807;;False;{};gje71ql;False;t3_kwisv4;False;True;t1_gjd19h4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gje71ql/;1610843300;4;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Imp_Lord;;;[];;;;text;t2_119vmf;False;False;[];;"his main goal is to not lie to her here if he mentions any trait that isn't from this timeline and she asks for proof he cant say ive seen it in another timeline. - -her saving him from thugs never happened, she has never saved him in this timeline. ect. - -main timeline emilia hasn't done much good";False;False;;;;1610753504;;False;{};gjec5cd;False;t3_kwisv4;False;True;t1_gj71x70;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjec5cd/;1610846570;1;True;False;anime;t5_2qh22;;0;[]; -[];;;115_zombie_slayer;;;[];;;;text;t2_vi96d;False;False;[];;Ok whos a bigger Chad Subaru or that fucking Cat;False;False;;;;1610756106;;False;{};gjegzmu;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjegzmu/;1610849613;8;True;False;anime;t5_2qh22;;0;[]; -[];;;NevisYsbryd;;;[];;;;text;t2_hwtkk;False;False;[];;I see that you are also a believer in love.;False;False;;;;1610758876;;False;{};gjem3lb;False;t3_kwisv4;False;True;t1_gj4wct5;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjem3lb/;1610852895;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sleepy_Dandy;;;[];;;;text;t2_r6wpx;False;False;[];;here's your dub-related upvote, king.;False;False;;;;1610762930;;False;{};gjethin;False;t3_kwidz9;False;True;t3_kwidz9;/r/anime/comments/kwidz9/wonder_egg_priority_when_will_the_dub_come_out/gjethin/;1610857478;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lurveydovey;;;[];;;;text;t2_gutsy;False;False;[];;Oh my god. I thought I was the only one who thought this season was so boring. There is barely any plot progression and every episode is basically just subaru yelling. Wish the show could go back to what it was during Season 1 with that super creepy/eerie vibe when petelgeuse was around.;False;False;;;;1610771379;;False;{};gjf7wx6;False;t3_kwisv4;False;False;t1_gj77t93;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjf7wx6/;1610865787;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610772315;;False;{};gjf9d8c;False;t3_kwisv4;False;True;t1_gj4t5o9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjf9d8c/;1610866568;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sephorai;;;[];;;;text;t2_da4q4;False;False;[];;Truuuuuu i really enjoyed that touch, felt like his style of humor;False;False;;;;1610772384;;False;{};gjf9gx4;False;t3_kwisv4;False;True;t1_gj4t5o9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjf9gx4/;1610866624;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fur-vus;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Saber is My One and Only Waifu!!!;dark;text;t2_13gltk;False;False;[];;if i recall the chick that he accused of being a thot was a high ranking official in their town, which she hired an assassin i think to kill him so he booked it before he died or something like that;False;False;;;;1610773045;;False;{};gjfagbd;False;t3_kwisv4;False;True;t1_gj66ucv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjfagbd/;1610867190;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sephorai;;;[];;;;text;t2_da4q4;False;False;[];;"Yeah I agree, but I just can’t shake the feeling that something was weird about that entire conversation. It just felt weird because it didn’t feel like they were actually talking to one another, it felt like Emilia was just projecting her fears and insecurities onto Subaru and Subaru was lamp shading her questions and concerns and just defaulting to the i love you/i believe in you rather than actually addressing her concerns. It took him several minutes to even address emilia’s question (and he didn’t even answer it!) despite asking him multiple times. - -Also I don’t even blame her for projecting her fears and insecurities onto him because this is literally the SECOND time that completely burns her trust by leaving after he promised not to. Even if his reason is good, it’s completely valid that she distrusts him and it’s weird that we just have to completely look past that and give him the kiss. Just felt a bit forced even if the actually kiss scene and little joke before we’re good.";False;False;;;;1610773736;;False;{};gjfbggq;False;t3_kwisv4;False;True;t1_gj6f4n9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjfbggq/;1610867739;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sephorai;;;[];;;;text;t2_da4q4;False;False;[];;"To an extent I agree with AEIOU, he does straight up ignore her feelings constantly and in this entire conversation he completely ignored her questions of why he broke his promise to her for several minutes before finally giving a non answer as to his location. - -I agree that Emelia has legit reason to be mad that she’s being treated like a doll by Subaru. - -Where I don’t agree with AEIOU is that this conversation is a repeat of the of original fight they had back in season 1. In this discussion he literally does the same thing of throwing out everything he does for her but he doesn’t do it in spite like in season 1 (“why don’t you care about me look at all the stuff I do for you etc) and instead this comes out as “how could you think I don’t love you when I do all of this things for you because I want to” - -This is still toxic but it’s a crucial growth in Subaru. It shows that he knows he’s being selfish but he isn’t trying to lie to himself and others. It’s an inversion of the first fight actually. - -Edit: Changed my entire post cus I honestly didn’t t really include my entire thoughts.";False;False;;;;1610773979;;1610774487.0;{};gjfbszy;False;t3_kwisv4;False;True;t1_gj6u8m4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjfbszy/;1610867931;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Spectral2020;;;[];;;;text;t2_84n70o3g;False;False;[];;Meh, Subaru's been called a child too in story.;False;False;;;;1610774166;;False;{};gjfc2m3;False;t3_kwisv4;False;True;t1_gjfbszy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjfc2m3/;1610868075;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sephorai;;;[];;;;text;t2_da4q4;False;False;[];;Ok that last quote was giga accurate. Yeh I agree, this entire convo just felt weird;False;False;;;;1610774604;;False;{};gjfcp5z;False;t3_kwisv4;False;True;t1_gj6x1he;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjfcp5z/;1610868415;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sephorai;;;[];;;;text;t2_da4q4;False;False;[];;Yep, I agree with both of you.;False;False;;;;1610774891;;False;{};gjfd3v9;False;t3_kwisv4;False;True;t1_gj77wx6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjfd3v9/;1610868632;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sephorai;;;[];;;;text;t2_da4q4;False;False;[];;Yeah agreed. It’s not a healthy relationship at all.;False;False;;;;1610775350;;False;{};gjfdr9k;False;t3_kwisv4;False;True;t1_gj72g5z;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjfdr9k/;1610868984;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Sephorai;;;[];;;;text;t2_da4q4;False;False;[];;Don’t let anyone stop you. Never delete.;False;False;;;;1610775618;;False;{};gjfe4pk;False;t3_kwisv4;False;True;t1_gj4kwp3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjfe4pk/;1610869187;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rubber_bastard;;;[];;;;text;t2_13i30g;False;False;[];;j wait for season three we'll finally get the s2 OP;False;False;;;;1610780545;;False;{};gjfkbru;False;t3_kwisv4;False;True;t1_gj4lchy;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjfkbru/;1610872592;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SogePrinceSama;;MAL;[];;http://myanimelist.net/animelist/teacake911;dark;text;t2_p55wn;False;False;[];;"The author was giving a joke answer. It became a meme and they added it to a flashback scene in the anime adaptation. - -This was not in the LN or WN at all, and it was just Otto going around asking animals and learning that the rich bitch girl was a ho. It's funny how you are getting everyone to believe Otto is a furry in this thread tho, lolz";False;False;;;;1610782728;;False;{};gjfmpca;False;t3_kwisv4;False;True;t1_gj7vy6w;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjfmpca/;1610873891;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SogePrinceSama;;MAL;[];;http://myanimelist.net/animelist/teacake911;dark;text;t2_p55wn;False;False;[];;"Emilia does not have a good point at all. She's accusing Subaru of being selfish but she's being the selfish one-- it's all ""Puck left me! You broke your promise to me! The trials are hard for me! Me me me!"" She doesn't even look Subaru in the eyes and see him as an individual until the very end when she can finally stop thinking about HERSELF for once, and realize there are other people out there who are suffering and have feelings aside from her, like Subaru, Puck, the people at Sanctuary, etc. - -In other words, it's a 180 flip of what happened at the Royal Selection scene at the Castle where Subaru was being selfish and Emilia made him realize what an ass he was being.";False;False;;;;1610783395;;False;{};gjfne5k;False;t3_kwisv4;False;True;t1_gj4gco8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjfne5k/;1610874265;2;True;False;anime;t5_2qh22;;0;[]; -[];;;yolotheunwisewolf;;;[];;;;text;t2_n1mzt;False;False;[];;What came first, r/NBA being filled with weebs to begin with, or the weebs being infiltrated by r/NBA?;False;False;;;;1610785959;;False;{};gjfpxkn;False;t3_kwisv4;False;True;t1_gj4n20h;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjfpxkn/;1610875602;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MightiestAvocado;;;[];;;;text;t2_2dyzb6j4;False;False;[];;I think Subaru is trying his best not to die since Satella's plea to not use Return by Death to keep killing himself.;False;False;;;;1610787590;;False;{};gjfrida;False;t3_kwisv4;False;True;t1_gj5wjer;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjfrida/;1610876427;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Masane;;MAL;[];;https://myanimelist.net/profile/Margrave_Masane;dark;text;t2_ep8og;False;False;[];;"Yeah, hoping for it. - -Normally I hate all harem-like settings, but in this case, he really does deeply love both and they went through a lot, I support it (of course, Rem being the propeller of that idea is a major factor there).";False;False;;;;1610794723;;1610795524.0;{};gjfywg5;False;t3_kwisv4;False;True;t1_gj59mvs;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjfywg5/;1610880229;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Masane;;MAL;[];;https://myanimelist.net/profile/Margrave_Masane;dark;text;t2_ep8og;False;False;[];;Vegetables are good for you.;False;False;;;;1610795169;;False;{};gjfzop8;False;t3_kwisv4;False;True;t1_gj4lbce;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjfzop8/;1610880572;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ameli1-cz;;;[];;;;text;t2_z2h0o;False;False;[];;24 gang;False;False;;;;1610796759;;False;{};gjg2fxe;False;t3_kwisv4;False;True;t1_gj90mxv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjg2fxe/;1610881805;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pekoragadaisuki;;;[];;;;text;t2_909wazha;False;False;[];;"It's hard to tell, but my guess is that the animation will still be [average](https://imgur.com/du7EpLE). -Let's hope the fight scenes won't be like this.";False;False;;;;1610798421;;False;{};gjg5cdf;False;t3_kwhejb;False;False;t1_gj5vq53;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gjg5cdf/;1610883100;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Blue_Storm11;;;[];;;;text;t2_2v5lcrru;False;False;[];;">I assumed you had no issue with Rem's confession considering you had problems with this one particular scene, Even though it's supposed to be a parallel to S1 Ep 18. - -Due note that while reason to believe is great in its own way subarus confession is supposed to be pretty much a worse version of rems due to subaru not really understanding what to do in the situation.";False;False;;;;1610801600;;False;{};gjgb1uj;False;t3_kwisv4;False;True;t1_gjbbnoa;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjgb1uj/;1610885726;2;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;oh for sure.;False;False;;;;1610802311;;False;{};gjgcdkp;False;t3_kwisv4;False;True;t1_gjgb1uj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjgcdkp/;1610886366;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Rakall12;;;[];;;;text;t2_7u1eq42;False;False;[];;"Now the question is if ""Return by Death"" is Subaru's power that he passed on to Emilia to become Satella or Satella's power that she passed on to Subaru.";False;False;;;;1610805322;;False;{};gjgifrq;False;t3_kwisv4;False;True;t1_gj6t1p8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjgifrq/;1610889405;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rmix_3;;;[];;;;text;t2_40pmtdzu;False;False;[];;don't know bout you guys but I was f\*cking screaming when they both kissed like FUCKK YEAAHHHHHH;False;False;;;;1610806586;;False;{};gjgl3c0;False;t3_kwisv4;False;False;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjgl3c0/;1610890796;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rmix_3;;;[];;;;text;t2_40pmtdzu;False;False;[];;I'm stealing this quote;False;False;;;;1610806673;;False;{};gjgl9fi;False;t3_kwisv4;False;True;t1_gj4cvol;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjgl9fi/;1610890890;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Csr56;;;[];;;;text;t2_2jxvv6sd;False;False;[];;"He actually did mention some of those traits in that speech but the way he framed it and how he gave so little importance to her personality compared to her external features didn't make a convincing argument. - -The other poster said that it would be insincere for Subaru to say those things, that is why i mentioned the timeline she saved him, i didn't say he should offer it as proof.";False;False;;;;1610810477;;False;{};gjgtivf;False;t3_kwisv4;False;True;t1_gjec5cd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjgtivf/;1610895812;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rocketchameleon;;;[];;;;text;t2_v98t2;False;False;[];;YAMEROOOOOOOOOOO;False;False;;;;1610810934;;False;{};gjgukgd;False;t3_kwisv4;False;True;t1_gj4z7wi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjgukgd/;1610896418;2;True;False;anime;t5_2qh22;;0;[]; -[];;;itsyaboiskinnypenis_;;;[];;;;text;t2_11kku2;False;False;[];;Garfiel has literally killed him before in a different loop tho;False;False;;;;1610815634;;False;{};gjh5iak;False;t3_kwisv4;False;True;t1_gj75q8j;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjh5iak/;1610903088;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;I did hear that Subaru said he would marry both if Emilia allowed it in the novels after Rem's confessio. I cannot confirm this at all though;False;False;;;;1610815907;;False;{};gjh68tw;False;t3_kwisv4;False;True;t1_gj540yv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjh68tw/;1610903544;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bpbegha;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/BPBegha;light;text;t2_7y3zl;False;False;[];;"That whole sequence with Emilia and Subaru putting out their feelings just felt so real! The music, the voice acting, the kiss! All great! - -I also hear it's dialogue straight from the novel, which is nice. - -This one of the reasons I say Re:Zero is the best isekai, peak kino!";False;False;;;;1610816573;;False;{};gjh81ed;False;t3_kwisv4;False;True;t1_gj4h7q3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjh81ed/;1610904746;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LvciferXChrollo;;;[];;;;text;t2_2o14rcm5;False;False;[];;Man..idk. I really hoped for improvement but after watching this ep., I‘m not satisfied at all. Compared to the Manga I‘d redommend to just read it and skip the Anime for now. It deserves a better adaptation..;False;False;;;;1610818781;;False;{};gjhdkxe;False;t3_kwhejb;False;True;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gjhdkxe/;1610908388;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RunningChemistry;;MAL;[];;http://myanimelist.net/profile/Delphic-Runner;dark;text;t2_d5c9q;False;False;[];;"Huh? At the time of responding to the parent comment, there were several comments that now seem to be deleted talking about the Q&A and tweets but no one actually linked anything so all I did was link a tweet so that the person I was responding to could read through it. - -Not sure how you're suggesting that I'm trying to make anyone believe anything - I don't see anything in my response that suggests so?";False;False;;;;1610826685;;False;{};gjhw4n3;False;t3_kwisv4;False;True;t1_gjfmpca;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjhw4n3/;1610920336;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SogePrinceSama;;MAL;[];;http://myanimelist.net/animelist/teacake911;dark;text;t2_p55wn;False;False;[];;Whoa I wasn't trying to imply you are doing anything wrong just found the whole beastiality gag funny. Carry on;False;False;;;;1610826982;;False;{};gjhwpl0;False;t3_kwisv4;False;True;t1_gjhw4n3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjhwpl0/;1610920714;1;True;False;anime;t5_2qh22;;0;[]; -[];;;max123246;;;[];;;;text;t2_9g3rf;False;False;[];;"Shoot, I thought I was going crazy or something. Like he didn't apologize once for straight up lying to her about staying overnight? Then when he went into why he loves her, it was straight up ""You're hot"". I had thought Subaru had made way more progress from his white knight days back in season 1 but apparently not. Emilia is in no position to enter a relationship, considering she has to heavily rely on other people for mental stability. - -It honestly feels nearly abusive the way Subaru was tearing her down and then trying to say none of that matters because *he* loves her. It's a full on textbook example of how to get someone in a vulnerable state to rely on you fully.";False;False;;;;1610827775;;False;{};gjhy8qy;False;t3_kwisv4;False;True;t1_gj6bsuj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjhy8qy/;1610921746;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RyanOClock;;;[];;;;text;t2_fl1wu;False;False;[];;"When you're trying to pick up chicks. - -Have Otto as your wingman.";False;False;;;;1610828176;;False;{};gjhz42m;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjhz42m/;1610922307;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GenocideSolution;;;[];;;;text;t2_gccgf;False;True;[];;Well since the remake's finally coming out expect to see a lot more of them lol.;False;False;;;;1610830217;;False;{};gji48ko;False;t3_kwisv4;False;True;t1_gj6bwem;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gji48ko/;1610925474;2;True;False;anime;t5_2qh22;;0;[]; -[];;;casdoxfluos;;;[];;;;text;t2_4vt3t0lh;False;False;[];;Best girl? Rem;False;False;;;;1610839967;;False;{};gjiodn7;False;t3_kwisv4;False;True;t1_gj4fwpl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjiodn7/;1610937990;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThyDanMan;;;[];;;;text;t2_irnpv;False;False;[];;"Yea, did it? I'm curious. I thought the kiss was earned. Even Subaru being dumb and saying to ""dodge"" the kiss seemed like it was in character for him. I'm not sure what's unrelatable? Is it hard to imagine a relationship that was built in a fantasy world? I'm confused on where the ""alien concept"" comes from. It seemed like the way the relationship was handled made a lot of sense in the context of the world that was built around it. But maybe that's just me";False;False;;;;1610841047;;False;{};gjiqfnq;False;t3_kwisv4;False;True;t1_gj4pq5k;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjiqfnq/;1610939312;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Icanintosphess;;;[];;;;text;t2_3kui8z;False;False;[];;I think that qualified as a disaster confession.;False;False;;;;1610845019;;False;{};gjixzp3;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjixzp3/;1610944033;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuck_Shinji;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Fuck Shinji(fate);light;text;t2_7xrbju2m;False;False;[];;can't wait;False;False;;;;1610845521;;False;{};gjiyw23;False;t3_kwisv4;False;True;t1_gji48ko;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjiyw23/;1610944570;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;"You have to know body language because even a yes might not be consent if the body language says no. I do appreciate him trying for consent system. Next time I would tell him ask if you can kiss her if she says yes it might be helpful if you change your mind say no or dodge. - -But I agree can I kiss you a much better way to ask although if your good at non verbal communication, most teens are not, consent can be non verbal sort of teens don't go with this until you have a good amount of experience in relationships and take at least one body language class it can help everyone. - - I will say a long relationship with a woman, then over, combined with non verbal communication classes can get one to the point both sides can work though the non verbal clues to a magical moment without saying a word. - -Here her closing her eyes and posture showed consent so he did not have to blow it by leaning in for a kiss she might not want. - -I have a big thing for this as with my undiagnosed as a child ADHD I also in the large minority of people with ADHD that did not learn body language naturally like most people when 3 to 5 years old roughly. So I ran into problem with verbal yeses actually being no at least luckily I was not totally clueless on body language and when the body language increased to be vary obvious they actually did not want do it I stoped. I rather have the unpleasant memory she probably has as well. One of those I was begging and she said yes certainly from lack of assertiveness training. Back in 80's well before modern knowledge.";False;False;;;;1610847765;;False;{};gjj32x6;False;t3_kwisv4;False;True;t1_gj672tg;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjj32x6/;1610947134;0;True;False;anime;t5_2qh22;;0;[]; -[];;;9axxxl5;;;[];;;;text;t2_ybgie;False;False;[];;"I was utterly disappointed last week and people got angry for voicing my opinion. At least I should avoid mass downvotes and harassing now. - -I swear the show either got so much worse or I literally have grown away from this child show drama. The characters are plain terrible and non relatable. - -The more I think about this the more these kind of shounen shows look like safe spaces to ""safely feed feelings"". Something about all this seem so fragile. The characters lose it and almost break from the smallest dent just like the some of the community does from smallest critique or taunt. - -Have people really not faced anything in real life if this is somehow extraordinarily great or have they been raised in soft safe rooms with special care? - -It's stupid on my part to bad mouth and call others' taste terrible but I've come to realization that Re Zero truly isn't for me anymore. Hopefully others will enjoy it but I seriously need to move on.";False;False;;;;1610849401;;False;{};gjj66gq;False;t3_kwisv4;False;True;t1_gj7wl4f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjj66gq/;1610948986;1;True;False;anime;t5_2qh22;;0;[]; -[];;;9axxxl5;;;[];;;;text;t2_ybgie;False;False;[];;The magic and my willingness to watch this farce is completely gone. The author must really have struggled to make anything since the writing, characters and everything is falling short since first season.;False;False;;;;1610849744;;False;{};gjj6tro;False;t3_kwisv4;False;True;t1_gj5rc2v;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjj6tro/;1610949377;1;True;False;anime;t5_2qh22;;0;[]; -[];;;9axxxl5;;;[];;;;text;t2_ybgie;False;False;[];;"I was calling it terrible last week already since the previous episode really felt horrible at the time. People were annoyed by my comments and still praised the show despite obvious flaws I pointed out and I was harassed because of it. - -A week later and it seems the majority perception is finally shifting. This 2nd season will be remembered as yet another failed sequel after great first season and people will forget about it. - -It's such a shame because I really thought there was something there in the first season but I was wrong. Writing is harder than making great setting";False;False;;;;1610850149;;False;{};gjj7lk2;False;t3_kwisv4;False;True;t1_gj667q6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjj7lk2/;1610949828;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BobTheSkrull;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/BobTheSkrull;light;text;t2_134dmb;False;False;[];;Wait, was that why he ran off in one of his first meetings with Subaru? I thought he was just trying to save his own skin (which was understandable).;False;False;;;;1610850688;;False;{};gjj8len;False;t3_kwisv4;False;True;t1_gj7d52b;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjj8len/;1610950407;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BobTheSkrull;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/BobTheSkrull;light;text;t2_134dmb;False;False;[];;I was thinking those bugs were types of parasites that could drain energy, which is partially why Otto summoning a swarm of them scared everyone in his flashback.;False;False;;;;1610851269;;False;{};gjj9o8t;False;t3_kwisv4;False;False;t1_gj4psnz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjj9o8t/;1610951023;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RedRocket4000;;;[];;;;text;t2_35yer5;False;False;[];;"Correct in situations like you described. Misdemeanor assault but yes still assault. - -Glad you mentioned enthusiastic participation for non virgin adults consent can be communicated non verbally by exchange of signals. Many examples in romantic shows. But inexperienced people who are desperate for sex are not normally capable of doing this and should be taught to get verbal agreement along with non verbal and give up on the idea of a romantic first time that it needs to be verbal and non verbal communication at all steps and accept it will be awkward and not that satisfying for either party. I also insist on male on bottom hands underneath not used and the female first time be with her inserting herself. Thus for her no one took her virginity but she gave it. - -But you need more than verbal consent you need that enthusiastic participation as well as Yes can mean no based on body language. - -Now this is two people who have been developing a relationship over several weeks, it war time conditions that add heavy instincts to mate in people, and she had already done the lean in for comfort move in a lengthy conversation. So we know she was not pressured to be there, liked him being around enough to lean in and she is running for Queen she can be assertive when needed. She had already given lap pillows and physical contact on earlier times. And he had made declarations of love over and over and she had not said get lost verbally or non verbally. With these pre established facts the worst she should take kiss attempt as to soon but still be flattered and not much upset. But still it was not the best way to ask but as she nonverbally consented as he leaned in it turned out fine I quite sure he would have stoped and not tried to kiss then. - -We do need to get all people trained to be confident and assertive so that being polite when you don't what to be there is something no one would consider doing and would assertively say no and not even be there. I know females can be trained to be self confident and assertive as I am a feminist.";False;False;;;;1610851584;;False;{};gjja8r0;False;t3_kwisv4;False;True;t1_gj9az45;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjja8r0/;1610951343;1;True;False;anime;t5_2qh22;;0;[]; -[];;;9axxxl5;;;[];;;;text;t2_ybgie;False;False;[];;"You're not wrong at all about relationship and creepiness. But I have simply different perspective. - -The cast is incredibly immature and I truly think the show has shown its true colors. It's not something I thought it was in the first season. It's just yet another group of teenagers struggling with growing up and understanding their limits and flaws. - -I've seen enough these shows and I've seen some far far better characters than these one dimensional caricatures. - -Sure, it might be amazing for some to see them for the first time. I was young and fool once as well but now I'm not so young and not so fool anymore (still fool tho) and I've lived and seen emotional roller-coasters. - -However, what these shows have proven me are they always are just substitutes, some safely fed feelings that are shallow and are only good enough as food for thought. It's not suitable as any expertise how to really learn deal with one's emotions and deal with unexpected situations. - -It's just a shallow drama that tries so hard to make some sort of impact but it fails to do so because the characters aren't nearly as good as people think and wish they were. It's enough for a shounen show I guess and not everyone is able to write the next Hamlet. It's just not enough for me unfortunately. - -That being said, I need to drop this show now and move on. I'd rather let those enjoy this who can than come back annoyed every week.";False;False;;;;1610852103;;False;{};gjjb6gz;False;t3_kwisv4;False;False;t1_gj7aoxv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjjb6gz/;1610951886;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SnowGN;;;[];;;;text;t2_6wxsm;False;False;[];;Is there a reason why Subaru didn't, you know, just do what he was asked to do and wait until the morning?;False;False;;;;1610852328;;False;{};gjjbkql;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjjbkql/;1610952118;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FountainsOfFluids;;;[];;;;text;t2_6sp2c;False;False;[];;"Agreed. Elsewhere I mentioned that I think it's fine how it worked out in the anime given all the context, but I'm glad that people here are not just letting weebs go out into the world thinking that by saying ""Dodge"" they are getting consent.";False;False;;;;1610852554;;False;{};gjjbz2h;False;t3_kwisv4;False;False;t1_gjja8r0;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjjbz2h/;1610952354;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kam_E_luck;;;[];;;;text;t2_3i5m4uwq;False;False;[];;Technically, he met Subaru in ep 14. The whale speaking to Otto drove him mad, plus Subaru attacked Otto while he was trying to save both their lives. That led to Otto abandoned Subaru;False;False;;;;1610853654;;False;{};gjjdywj;False;t3_kwisv4;False;True;t1_gjj8len;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjjdywj/;1610953560;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeRedditBot;;;[];;;;text;t2_139n4l;False;False;[];;This is the exact time that i can pinpoint Emilia falling in love with Subaru.;False;False;;;;1610854181;;False;{};gjjezs1;False;t3_kwisv4;False;True;t1_gj4o5x6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjjezs1/;1610954144;2;True;False;anime;t5_2qh22;;0;[]; -[];;;colin8696908;;;[];;;;text;t2_avbjz;False;False;[];;"Damn, rem go's through all that and get's an ""I love Emelia."" Emelia cries in a cave and ends up getting to first base. The world isn't fair.";False;False;;;;1610854248;;1610854548.0;{};gjjf4p1;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjjf4p1/;1610954218;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeRedditBot;;;[];;;;text;t2_139n4l;False;False;[];;"I. Was. So. Confused. -I repeated it, in hopes to what I’ve missed, but no...";False;False;;;;1610854594;;False;{};gjjfu6n;False;t3_kwisv4;False;True;t1_gj4fb40;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjjfu6n/;1610954611;1;True;False;anime;t5_2qh22;;0;[]; -[];;;colin8696908;;;[];;;;text;t2_avbjz;False;False;[];;sorry Subaru. [I love Felix](https://youtu.be/lL-egcqR7lc?t=122](https://youtu.be/lL-egcqR7lc?t=122);False;False;;;;1610854877;;False;{};gjjgd8z;False;t3_kwisv4;False;True;t1_gjbuoa6;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjjgd8z/;1610954911;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cactusblah;;;[];;;;text;t2_e0pc4;False;False;[];;Honestly, the reception to this episode made me lose respect for anime fandom.;False;False;;;;1610855192;;False;{};gjjgy4v;False;t3_kwisv4;False;True;t1_gjj7lk2;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjjgy4v/;1610955255;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OMGwronghole;;;[];;;;text;t2_5yk15;False;False;[];;Where can I find the original dialogue or could you give me a quick breakdown of what was left out?;False;False;;;;1610856040;;False;{};gjjij3l;False;t3_kwisv4;False;True;t1_gj6t1p8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjjij3l/;1610956110;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zhuoyang;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/zhuoyang;light;text;t2_e86ka;False;False;[];;What? you lose respect for anime fandom because their opinion doesn't align with yours?;False;False;;;;1610856270;;False;{};gjjiy23;False;t3_kwisv4;False;True;t1_gjjgy4v;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjjiy23/;1610956348;1;True;False;anime;t5_2qh22;;0;[]; -[];;;9axxxl5;;;[];;;;text;t2_ybgie;False;False;[];;"Not necessarily because other's opinion isn't same as yours but because their response isn't necessarily reasonable to you. - -We are all certainly prone to emotional reasoning and confirmation bias so our perception isn't exactly objective but even with our flaws we can still form basic understanding how intelligent or unintelligent something is. - -It doesn't mean someone is objectively wrong but you have an idea what's the reasoning behind behavior; is it rational or emotional irration. When you notice someone is arguing in bad faith just to protect their own perfect image you lose your respect towards that person. - -That's when I usually stop arguing with a brick wall because it's waste of my breath and it can't even hear me in the first place. That doesn't mean my perception of conversation is always correct tho. Sometimes I was the irrational one who didn't want to listen the other and it formed me a wrong image why I lost my respect towards others, wrongfully.";False;False;;;;1610859705;;False;{};gjjoqng;False;t3_kwisv4;False;True;t1_gjjiy23;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjjoqng/;1610959570;0;True;False;anime;t5_2qh22;;0;[]; -[];;;wateredmuffin;;;[];;;;text;t2_2qf6dyds;False;False;[];;"Re: Zero Arc 4 Chapter 78: - -Satella - “I love you - because you gave me light. It was you who took me by the hand, and showed me the world outside. In the nights I was lonely and afraid, you held my hand. And when I was all alone, you kissed me on the lips and told me that I wasn’t. You’ve given me so, so much... that’s why I love you. Because you... gave me everything.”";False;False;;;;1610860027;;False;{};gjjp87u;False;t3_kwisv4;False;True;t1_gjjij3l;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjjp87u/;1610959832;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bunneary;;;[];;;;text;t2_b6fv5;False;False;[];;"He wrote ""Thank you for everything""";False;False;;;;1610862423;;False;{};gjjst2a;False;t3_kwisv4;False;True;t1_gj4lbc3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjjst2a/;1610961763;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FemaleTigress;;;[];;;;text;t2_3x9x5br9;False;False;[];;"Aang and Katara: ""We kissed in a cave."" -Subaru and Emilia: ""We kissed in a Cursed Sanctuary.""";False;False;;;;1610866973;;False;{};gjjysk6;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjjysk6/;1610964896;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kingturboturtle13;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4v2mq4oo;False;False;[];;I'm glad I was able to do that :);False;False;;;;1610867048;;False;{};gjjyvrw;False;t3_kwisv4;False;True;t1_gja5bwz;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjjyvrw/;1610964944;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheSundaMan1405;;;[];;;;text;t2_3tlcpdj7;False;False;[];;">Emilia crying about her memories coming back - -Yes, Emilia didn't know these memories existed, and they were traumatic for her. - -&#x200B; - ->His reply? 10 minutes of ""I love you"", ""your height is perfect"", ""you were supposed to act cuter"" - -You forgot when he said ""I love your behaviors of being absent minded"", ""I love how you always tries your best"", and ""how you always does your best to help others"". - -He also said ""We will find your precious feelings that will make you move forward"" and ""What matters isnt how it start, its how it ends"". - -So subaru basically giving emilia encouragement, similar to rem to subaru in Season 1. - -&#x200B; - ->Going in for a kiss while she's sobbing - -He actually ask for consent before kissing her, and she accepts him. - -&#x200B; - ->That whole scene was way too long, cringe, forced, and badly written. - -For me personally the writing was perfect. But hey, some people have different taste and opinion on anime.";False;False;;;;1610876833;;1610887572.0;{};gjk90sd;False;t3_kwisv4;False;True;t1_gj6sz57;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjk90sd/;1610970388;1;True;False;anime;t5_2qh22;;0;[]; -[];;;emilia-sama;;;[];;;;text;t2_12ir39;False;False;[];;Ah. I love this episode so much ~;False;False;;;;1610876862;;False;{};gjk91s0;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjk91s0/;1610970403;2;True;False;anime;t5_2qh22;;0;[]; -[];;;THERAPISTS_for_200;;;[];;;;text;t2_watvr;False;False;[];;No streaming service picked this up?;False;False;;;;1610879795;;False;{};gjkd5mg;False;t3_kwhejb;False;False;t3_kwhejb;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gjkd5mg/;1610972426;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrSputum;;;[];;;;text;t2_16y4xz;False;False;[];;If you’re not entirely opposed to watching shows subbed I’d strongly suggest you do that here. The voice acting is actually brilliant so far, especially the protagonist’s VA does a great job and the fact that she’s only *16* is a bit mind-blowing honestly. I don’t watch dubs so maybe I’m biased but I really wouldn’t want it any other way. So I don’t think waiting would be worth it. But obviously that’s on you to decide.;False;False;;;;1610901981;;False;{};gjm3rv9;False;t3_kwidz9;False;True;t3_kwidz9;/r/anime/comments/kwidz9/wonder_egg_priority_when_will_the_dub_come_out/gjm3rv9/;1611006177;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bossbarret;;;[];;;;text;t2_37laf3gf;False;False;[];;Maybe Subaru left because he had a bad stomach and was actually staying in the restroom.;False;False;;;;1610904023;;False;{};gjmbr18;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjmbr18/;1611010586;2;True;False;anime;t5_2qh22;;0;[]; -[];;;flamethekid;;;[];;;;text;t2_xvo4y;False;False;[];;"Or or. - -Subaru is satella who took the form of Emilia after something tragic happened.";False;False;;;;1610904614;;False;{};gjmdpi8;False;t3_kwisv4;False;True;t1_gj4uq0j;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjmdpi8/;1611011692;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;Why tf would he then tell (current) Subaru that he saved him? That wouldn't make any damn sense;False;False;;;;1610912504;;False;{};gjn1zxj;False;t3_kwisv4;False;True;t1_gjmdpi8;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjn1zxj/;1611024737;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Haseosan;;;[];;;;text;t2_hmj0y;False;False;[];;Looks like there is. Novel readers say it'll be explained in next episode.;False;False;;;;1610913147;;False;{};gjn3gva;False;t3_kwisv4;False;True;t1_gjjbkql;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjn3gva/;1611025649;2;True;False;anime;t5_2qh22;;0;[]; -[];;;flamethekid;;;[];;;;text;t2_xvo4y;False;False;[];;Because he believes he is Emelia.;False;False;;;;1610913372;;False;{};gjn3x8y;False;t3_kwisv4;False;True;t1_gjn1zxj;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjn3x8y/;1611025950;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pixels256;;;[];;;;text;t2_u27qn;False;False;[];;...that was bad.;False;False;;;;1610917063;;False;{};gjnbj6l;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjnbj6l/;1611030858;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sejungaku;;;[];;;;text;t2_xtyvy25;False;False;[];;From where did you get that?;False;False;;;;1610919026;;False;{};gjnfwys;False;t3_kwisv4;False;True;t1_gj4fb40;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjnfwys/;1611033552;1;True;False;anime;t5_2qh22;;0;[]; -[];;;unknown537;;;[];;;;text;t2_20519zb3;False;False;[];;Author's official tweet on his Twitter.;False;False;;;;1610919262;;False;{};gjngg3r;False;t3_kwisv4;False;True;t1_gjnfwys;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjngg3r/;1611033861;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AIDSMASTER64;;;[];;;;text;t2_c4o1yja;False;False;[];;Ok, so am I a complete moron for not understanding / remembering **why** do they have to keep Garfiel away while Subaru talks to Emilia ?;False;False;;;;1610919313;;False;{};gjngk99;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjngk99/;1611033926;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;What? How tf did that happen? How tf did Subaru get his mind replaced by Emilia's? Like for him to believe he's Emilia he would have to lose all his Subaru memories and gain Emilia's. And at that point can you even call it Subaru?;False;False;;;;1610920463;;False;{};gjnj5ym;False;t3_kwisv4;False;True;t1_gjn3x8y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjnj5ym/;1611035474;1;True;False;anime;t5_2qh22;;0;[]; -[];;;flamethekid;;;[];;;;text;t2_xvo4y;False;False;[];;It's just a theory. And we've seen Subaru suffer mentally because of his ability, it's not a stretch to say something really bad can shatter his mind and turn him into satella who would be his ideal version of an Emilia who loves Subaru very much.;False;False;;;;1610923725;;False;{};gjnql2z;False;t3_kwisv4;False;True;t1_gjnj5ym;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjnql2z/;1611039703;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-Bacon_King-;;;[];;;;text;t2_2uebrf9k;False;False;[];;Season*;False;False;;;;1610935992;;False;{};gjoebc5;False;t3_kwhejb;False;True;t1_gjc7vp7;/r/anime/comments/kwhejb/nanatsu_no_taizai_fundo_no_shinpan_episode_1/gjoebc5/;1611052845;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Alchion;;;[];;;;text;t2_p4db7;False;False;[];;thx man;False;False;;;;1610949310;;False;{};gjp0fko;False;t3_kwisv4;False;True;t1_gj6st5i;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjp0fko/;1611066516;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;Damn didnt expect this episode to be so controversial, half the people (like me) loved it and others thought it was bad or disappointing.;False;False;;;;1610953318;;False;{};gjp5q6k;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjp5q6k/;1611070182;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;Why is emilia mentally 14?im confused;False;False;;;;1610954032;;False;{};gjp6l9k;False;t3_kwisv4;False;True;t1_gj6c3dr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjp6l9k/;1611070766;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hikari_Sakuya;;;[];;;;text;t2_3r2dr4k9;False;False;[];;My man suburu is about to lay an unreasonable amount of pipe can I get a hell yeah?;False;False;;;;1610954323;;False;{};gjp6xeg;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjp6xeg/;1611070998;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hikari_Sakuya;;;[];;;;text;t2_3r2dr4k9;False;False;[];;Yo poor rem is gonna wake up (hopefully this is just speculation for a joke) and suburu and Emelia and gonna be together she's gonna be so pissed;False;False;;;;1610954757;;False;{};gjp7fqk;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjp7fqk/;1611071341;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dhammapaderp;;;[];;;;text;t2_h05qx;False;False;[];;"Late to the party on this one, but Satella's love actually rapes his heart and kill people he cares about. - -No amount of aggressively proclaiming his love will top her absolute commitment to the cause.";False;False;;;;1610955157;;False;{};gjp7wfv;False;t3_kwisv4;False;True;t1_gj4fe4g;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjp7wfv/;1611071655;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dhammapaderp;;;[];;;;text;t2_h05qx;False;False;[];;This episode made me more interested in Otto than Subaru, I want a spin off where he conquers the mercantile world.;False;False;;;;1610955278;;False;{};gjp81jb;False;t3_kwisv4;False;True;t1_gj7z732;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjp81jb/;1611071753;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dhammapaderp;;;[];;;;text;t2_h05qx;False;False;[];;Well, I had my suspicions... but now we know where the beastmen come from.;False;False;;;;1610955376;;False;{};gjp85jk;False;t3_kwisv4;False;True;t1_gj5ud2a;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjp85jk/;1611071828;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DaijobuJanai;;;[];;;;text;t2_4k3oyyw0;False;False;[];;I ship it :D;False;False;;;;1610955451;;False;{};gjp88oc;False;t3_kwisv4;False;True;t1_gj53s3n;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjp88oc/;1611071885;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bobneumann77;;;[];;;;text;t2_2w0t1zj0;False;False;[];;Which arc are we on again?;False;False;;;;1610981425;;False;{};gjq2g0m;False;t3_kwisv4;False;True;t1_gj62ljb;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjq2g0m/;1611093609;1;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;She is fine with ntr I bet she would just watch Subaru banging Emilia and feel happy while crying;False;False;;;;1610999527;;False;{};gjr2ehi;False;t3_kwisv4;False;True;t1_gj4h8dk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjr2ehi/;1611116920;1;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;I mean Rem is his number two so...;False;False;;;;1610999642;;False;{};gjr2n4s;False;t3_kwisv4;False;True;t1_gj5a5wr;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjr2n4s/;1611117062;1;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;Rem is a cuck get triggered;False;False;;;;1610999792;;False;{};gjr2y2w;False;t3_kwisv4;False;True;t1_gj75ww3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjr2y2w/;1611117241;0;True;False;anime;t5_2qh22;;0;[]; -[];;;rlmurrhee;;skip7;[];;;dark;text;t2_9a8y9b5c;False;False;[];;god i love this show;False;False;;;;1611007077;;False;{};gjrhprk;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjrhprk/;1611125654;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aralim4311;;MAL;[];;https://myanimelist.net/profile/TheDrunkenOtaku;dark;text;t2_pcmes;False;False;[];;Too lazy to deal with spoiler tags on mobile but you can PM me about it.;False;False;;;;1611015384;;False;{};gjrxjjo;False;t3_kwisv4;False;True;t1_gj7dkwl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjrxjjo/;1611134260;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LynxOsu;;;[];;;;text;t2_vt57lqr;False;False;[];;this anime is abt to be in my top 10 of all time, it’s so damn good, animation has been consistent and white fox goes the extra mile to skip openings and endings to make time for the show, so damn good;False;False;;;;1611024158;;False;{};gjsdyit;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjsdyit/;1611143239;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Archbishop_of_Envy;;;[];;;;text;t2_9h8o3kti;False;False;[];;Because Garfiel doesn't trust Subaru.;False;False;;;;1611049936;;False;{};gjtdqw7;False;t3_kwisv4;False;True;t1_gjngk99;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjtdqw7/;1611167140;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Archbishop_of_Envy;;;[];;;;text;t2_9h8o3kti;False;False;[];;Most of the people who think it was bad or disappointing are salty Rem stans or they completely missed the point of the discussion and thought of it as just Subaru repeating 'I love you' to Emilia.;False;False;;;;1611050101;;False;{};gjtdwty;False;t3_kwisv4;False;True;t1_gjp5q6k;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjtdwty/;1611167253;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Archbishop_of_Envy;;;[];;;;text;t2_9h8o3kti;False;False;[];;Rem isn't gonna be pissed. She herself accepted that Subaru loves Emilia.;False;False;;;;1611050153;;False;{};gjtdyp7;False;t3_kwisv4;False;True;t1_gjp7fqk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjtdyp7/;1611167290;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Archbishop_of_Envy;;;[];;;;text;t2_9h8o3kti;False;False;[];;"Imagine that being the actual reason. - -Emilia:(screams) Why didn't you kept the promise? - -Subaru: Yo chill, I just went to the restroom.";False;False;;;;1611050287;;1611074875.0;{};gjte3fk;False;t3_kwisv4;False;True;t1_gjmbr18;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjte3fk/;1611167388;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Netheral;;MAL;[];;http://myanimelist.net/animelist/Netheral;dark;text;t2_4s0en;False;False;[];;"To be honest, it felt a little bit like he got ""consent"". - -He told her just to dodge if she didn't want to, but of course she wouldn't... Because of the *implication*.";False;False;;;;1611069965;;False;{};gju64h2;False;t3_kwisv4;False;True;t1_gj4t5o9;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gju64h2/;1611187167;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Responsible-Low3938;;;[];;;;text;t2_7gvuu456;False;False;[];;Anyone knows the meaning behind the eyes with Subaru and Emilia during the episode I think I know but I’m stupid;False;False;;;;1611072948;;False;{};gjucdtd;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjucdtd/;1611191519;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Archbishop_of_Envy;;;[];;;;text;t2_9h8o3kti;False;False;[];;I think it implies that all this time Subaru believed in Emilia that's why we Emilia's reflection in his eyes all the time. But Emilia wasn't believing in him and when at the end of the episode when she started believing him we saw Subaru in her eyes.;False;False;;;;1611074780;;False;{};gjugcrm;False;t3_kwisv4;False;True;t1_gjucdtd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjugcrm/;1611194063;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1611076277;;False;{};gjujoaa;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjujoaa/;1611196232;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Luckyhipster;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/LuckyHipster;light;text;t2_zftom;False;False;[];;It honestly shows how much love has gone into this season. It honestly blows me away I don't think I've seen a show with so much love put in.;False;False;;;;1611093855;;False;{};gjvmnwx;False;t3_kwisv4;False;True;t1_gj4nhss;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjvmnwx/;1611218909;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ivan_x3000;;;[];;;;text;t2_axy8d;False;False;[];;[Emilia might have gotten the first kiss, but mark my words Remu-chan will get the last!!!!](https://media.giphy.com/media/7cStB8yLg0sko/giphy.gif);False;False;;;;1611095402;;False;{};gjvpxke;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjvpxke/;1611220657;2;True;False;anime;t5_2qh22;;0;[]; -[];;;vashlion;;;[];;;;text;t2_cilke;False;False;[];;Thankfully Subaru has Return by Dragon Heritage.;False;False;;;;1611105889;;False;{};gjwaacp;False;t3_kwisv4;False;True;t1_gj68qar;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjwaacp/;1611231740;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Razetony;;;[];;;;text;t2_82a6l;False;False;[];;Hey man 6 days late (hey I'm patient) YESSSS;False;False;;;;1611107694;;False;{};gjwdoso;False;t3_kwisv4;False;True;t1_gj4djlk;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjwdoso/;1611233768;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_SHUN;;;[];;;;text;t2_6nop2uv4;False;False;[];;Chadbaru and Chatto;False;False;;;;1611121255;;False;{};gjx0qae;False;t3_kwisv4;False;False;t1_gj4fwpl;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjx0qae/;1611248721;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RazorReviews;;;[];;;;text;t2_q3427;False;False;[];;"> The more I think about this the more these kind of shounen shows look like safe spaces to ""safely feed feelings"". Something about all this seem so fragile. The characters lose it and almost break from the smallest dent just like the some of the community does from smallest critique or taunt. - -Re:Zero fans are some of the worse when it comes to stuff like this imo, Aot fans are pretty bad too. The word ""fragile"" is so perfect I can't even put into words perfectly. Though I would like a little more elaboration on both the usage of that term and ""safely fed feelings"" because that one is new. I can definitely say people *desperately* want this to be good so bad that they will say anything is great regardless of actual quality. I'm unsure why people are investing so much of their identity into this property. I will say I don't hate these last few episodes, they're sorta just ""meh"" I liked the first half of the previous episode a bit but besides that not much.";False;False;;;;1611124834;;False;{};gjx5e2r;False;t3_kwisv4;False;True;t1_gjj66gq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjx5e2r/;1611251848;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Iron_Maw;;ann;[];;;dark;text;t2_xkd2v;False;False;[];;"Except he talked about what he like her personality. Why did you suspiciously skip that part focus on what he say about her looks? - -Sounds like confirmation bias rather actually hearing him out.";False;False;;;;1611125694;;False;{};gjx6ffu;False;t3_kwisv4;False;True;t1_gj4ltkv;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjx6ffu/;1611252671;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;True;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1611126459;moderator;False;{};gjx7cgo;False;t3_kwisv4;False;True;t1_gj4q61a;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjx7cgo/;1611253341;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;True;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1611126563;moderator;False;{};gjx7gtx;False;t3_kwisv4;False;True;t1_gj58k55;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjx7gtx/;1611253432;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;True;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1611126698;moderator;False;{};gjx7mhi;False;t3_kwisv4;False;True;t1_gj62ljb;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjx7mhi/;1611253550;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Iron_Maw;;ann;[];;;dark;text;t2_xkd2v;False;False;[];;">The difference being that Subaru got a kiss, while Rem was rejected. Rem rejected Subarus invitation to run away, meaning she had no ulterior motivations, while Subaru got mad for her not accepting his love and talked shit like ""At least you can look cute as I thought you would"". - -This irrelevant and false. Rem rejected Suabru becasue she knows he still love Emilia. She that who makes him happiest. There no point even comparing this part - ->Also Subaru lied to her and broke his promise, an aspect of his character many people were hoping he got over with in S1, making it understandable why she, and the audience is suspicious about his ""love"". Why would anyone doubt Rem loved Subaru? If anything its a probelm that she loves him TOO much, making it possibly feel forced and unnatural. Same can be said about Subarus love for Emilia, but at least Rem is idealized in every way. - -And simply think he broke his promise of no reason? For all bring up about Rem she know that he has reason so for it. In fact Rem tell off about your shallow definition of love the require judging people at face value to push slander about others. - -Its an extremely childish view that paints everything as black & white. Ignores the circumstances of why she Emilia feeling at way and the fact not thinking straight becasue of her anxieties - -You probably think Puck broke her contract with because he actually hates her by your logic lmao - -The only suspicious here is your clear opportunistic waifuism. If Subaru doesn't care then doesn't need to come after her. Her feeling about the trials don't need matter and he do exactly says trample of them by taking them himself freeing the sanctuar . He doesn't do that, he talks her about her past, he gets Puck to deal the with deficits in her memory. Hell he ask or her consent before kissing her. Subaru takes the long hard route that will guarantee her happiness even if she will end misunderstanding him sometimes. But somehow you are cherrypick things he regrets but says he has reason as proof he doesn't love her? - -What crocok";False;False;;;;1611127477;;False;{};gjx8j4b;False;t3_kwisv4;False;True;t1_gj7phr3;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjx8j4b/;1611254213;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Iron_Maw;;ann;[];;;dark;text;t2_xkd2v;False;False;[];;But in order for Emilia to be useless she had been failing something or getting others way. Nothing like that happen in S1, in fact Rem was more useless considering she literally stood in Subaru in for half of it because of her trauma;False;False;;;;1611128330;;False;{};gjx9hjw;False;t3_kwisv4;False;True;t1_gj5zo14;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjx9hjw/;1611254874;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Iron_Maw;;ann;[];;;dark;text;t2_xkd2v;False;False;[];;"Exactly! - -Not she also wants an excuse to for self-abandonment much like sought for his parents. But saw through her and wouldn't let given to self-pity. He believes she stronger than this and he wants her to believe that she is too - -He and Emilia are similar then one would think.";False;False;;;;1611128592;;False;{};gjx9s7i;False;t3_kwisv4;False;True;t1_gj5thay;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjx9s7i/;1611255070;1;True;False;anime;t5_2qh22;;0;[]; -[];;;psychsucks;;;[];;;;text;t2_7pinf0kz;False;False;[];;"Does anyone know why Otto or Subaru couldn’t just talk to Garfiel and calm him down? - -It just seems like they had other safer options they could use first before straight up telling him that Otto was here to delay Garfiel - -Also, why didn’t Betelgeuse kill Otto?";False;False;;;;1611143223;;False;{};gjxp1rt;False;t3_kwisv4;False;True;t3_kwisv4;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjxp1rt/;1611265665;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ultimateshielder;;;[];;;;text;t2_kz00k;False;False;[];;"Me a Rem Fanboy -Sees Subaru kiss Emelia -Music intensifies - -Me: I'm sorry... Did you expect me to rejoice over this? I'm glad Subaru didn't end up with Rem now. That guy is just straight up selfish, obsessed, and crazy. I just want good things to happen to Rem.";False;False;;;;1611148548;;False;{};gjxvw8c;False;t3_kwisv4;False;True;t1_gj4ddrd;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjxvw8c/;1611269973;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Janian;;;[];;;;text;t2_9sewb;False;False;[];;I'd like to imagine players like Luka Doncic and Danny Green lurking /r/Anime;False;False;;;;1611156257;;False;{};gjy9whx;False;t3_kwisv4;False;True;t1_gj5n65n;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjy9whx/;1611278360;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Seraphaestus;;MAL;[];;https://myanimelist.net/animelist/Seraphaestus;dark;text;t2_fymud;False;False;[];;"Except Re:Zero has already done this well- when Subaru was toxic about Emilia in the capital, the show actually addresses it and treats it like something wrong. Here, Subaru is being toxic towards Emilia, but the show is seemingly treating it like nothing is wrong and it's in fact romantic. The excuse of ""oh, well it's just realistic, it's not meant to endorse it as good"" doesn't work when the show does it fact implicitly endorse it as good";False;False;;;;1611157128;;False;{};gjybnvq;False;t3_kwisv4;False;True;t1_gja4yix;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjybnvq/;1611279408;1;True;False;anime;t5_2qh22;;0;[]; -[];;;electric_anteater;;;[];;;;text;t2_ocq5m;False;False;[];;Toxic my ass;False;False;;;;1611166140;;False;{};gjyw09f;False;t3_kwisv4;False;False;t1_gjybnvq;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjyw09f/;1611291574;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Seraphaestus;;MAL;[];;https://myanimelist.net/animelist/Seraphaestus;dark;text;t2_fymud;False;False;[];;">Throwing your opinion without any justification for it doesn't add anything to the discussion. - -[this you?](https://www.reddit.com/r/anime/comments/4lq312/digibro_10_best_things_happening_in_anime_this/d3q5570/)";False;False;;;;1611166370;;False;{};gjywj8y;False;t3_kwisv4;False;True;t1_gjyw09f;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjywj8y/;1611291886;0;True;False;anime;t5_2qh22;;0;[]; -[];;;electric_anteater;;;[];;;;text;t2_ocq5m;False;False;[];;"If you can assert it's toxic without any justification other than ""subaru bad"", I can assert it's not";False;False;;;;1611166676;;False;{};gjyx8zx;False;t3_kwisv4;False;False;t1_gjywj8y;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjyx8zx/;1611292300;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Seraphaestus;;MAL;[];;https://myanimelist.net/animelist/Seraphaestus;dark;text;t2_fymud;False;False;[];;"I didn't justify that it was toxic because your original comment, before you shifted goalposts to argue something different, implicitly conceded it - by saying ""they're just teenagers"", the implication is therefore that their behaviour is going to be immature and the fact that it's toxic is because they're just trying to be realistic. - -The idea that I justified my position with ""subaru bad"" is also a complete strawman you pulled out of nowhere.";False;False;;;;1611167791;;False;{};gjyzuwi;False;t3_kwisv4;False;True;t1_gjyx8zx;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjyzuwi/;1611293791;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1611175419;;False;{};gjzheqm;False;t3_kwisv4;False;True;t1_gjyzuwi;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjzheqm/;1611303529;1;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your comment has been removed. - -- Do not attack, insult or harass other Redditors. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1611176029;moderator;False;{};gjziswi;False;t3_kwisv4;False;True;t1_gjzheqm;/r/anime/comments/kwisv4/rezero_kara_hajimeru_isekai_seikatsu_season_2/gjziswi/;1611304284;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MobileTortoise;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Mobiletortoise;light;text;t2_gylu5;False;False;[];;"I absolutely loved the episode. Best one yet and likely won't be topped for a short while, although next week when a few more favorite characters show up and a certain Mary Sue comes into their own might come close (Although it largely depends on how ALL the action that is about to come is shown, as in how heavy into the CGI are we leaning). - -The entire episode was an excellent build up, and the pay off was certainly worth it. I went back and watched the final scene a few more times, and tbh the OST choice is growing on me, no complaints here.";False;False;;;;1610308720;;False;{};gisjyxy;False;t3_kujurp;False;False;t1_gisbw5o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjyxy/;1610350569;10;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;I think that was more just security in case of a terrorist attack or a countries attempt to sabatoge it. There was no way in hell they knew paradis was directly going to attack;False;False;;;;1610308721;;False;{};gisjz07;False;t3_kujurp;False;False;t1_gisj8h4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjz07/;1610350571;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Youngphycouant;;;[];;;;text;t2_nq32u;False;False;[];;Ah yes Eren finally lost his damn mind I love it.;False;False;;;;1610308725;;False;{};gisjz8d;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjz8d/;1610350574;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mapoztofu;;;[];;;;text;t2_ig4auzn;False;False;[];;"He has to keep - -SUSUMEEEEEEEEEing!! - -Man this was a bad joke";False;False;;;;1610308725;;False;{};gisjz9m;False;t3_kujurp;False;False;t1_gisjiu8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjz9m/;1610350574;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Peshwa_;;;[];;;;text;t2_10z83y;False;False;[];;My god what an episode, the suspense was insane;False;False;;;;1610308728;;False;{};gisjzhn;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjzhn/;1610350577;5;True;False;anime;t5_2qh22;;0;[]; -[];;;manormortal;;;[];;;;text;t2_dtc68;False;False;[];;That's why you mind your business and don't help strangers.;False;False;;;;1610308737;;False;{};gisk033;False;t3_kujurp;False;False;t1_gisbfys;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk033/;1610350587;31;False;False;anime;t5_2qh22;;0;[]; -[];;;EndritTheSun;;;[];;;;text;t2_1kmy9m21;False;False;[];;Not the only show but I get your point, the tension was overwhelming.;False;False;;;;1610308740;;False;{};gisk0ay;False;t3_kujurp;False;False;t1_gisehmo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk0ay/;1610350591;13;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;Up until Eren transforms and smashes Willy Tybur. The Titan looks amazing.;False;False;;;;1610308742;;False;{};gisk0g8;False;t3_kujurp;False;False;t1_gisjv08;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk0g8/;1610350593;5;True;False;anime;t5_2qh22;;0;[]; -[];;;14MySterY-;;;[];;;;text;t2_b3n4y;False;False;[];;You'll have to keep saying that until the last one. It just keeps moving forward.;False;False;;;;1610308744;;False;{};gisk0ks;False;t3_kujurp;False;False;t1_gisbinb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk0ks/;1610350596;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Ensianto;;;[];;;;text;t2_wmepy;False;False;[];;Collateral damage;False;False;;;;1610308745;;False;{};gisk0ps;False;t3_kujurp;False;False;t1_gisc83j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk0ps/;1610350598;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;The Bunny Girl Senpai clip has been dethroned from the #1 spot - this discussion thread just keeps moving forward;False;False;;;;1610308747;;False;{};gisk0vh;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk0vh/;1610350600;88;True;False;anime;t5_2qh22;;0;[]; -[];;;ZackDB201;;;[];;;;text;t2_1sxfbwvn;False;False;[];;because the king doesn't have the founding titan anymore, eren does;False;False;;;;1610308751;;False;{};gisk13q;False;t3_kujurp;False;False;t1_gisjnrv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk13q/;1610350604;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;True;[];;*Let me out... Let me out... LET ME OUUUUUUUT!!*;False;False;;;;1610308756;;False;{};gisk1jh;False;t3_kujurp;False;False;t1_gisjj1g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk1jh/;1610350610;524;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomXxZ;;;[];;;;text;t2_37lbelym;False;False;[];;It would've been the same even if WiT did it since it's the same sound director from S1-3.;False;False;;;;1610308763;;False;{};gisk20j;False;t3_kujurp;False;False;t1_gishw4m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk20j/;1610350617;12;True;False;anime;t5_2qh22;;0;[]; -[];;;snowhawk1994;;;[];;;;text;t2_ilpcp;False;False;[];;"What you here say is that American people with German heritage shouldn't have participated in any military actions during WW2 against the Nazis? Of course the people in the building were innocents or even victims, but the same happens in our real world all the time and I actually like that such a hot topic is allowed to be displayed. - -You can actually compare Marley to the Nazi regime and as soon as their enemies (Russia, France, UK) got the upper hand there were also no acts of pity. Whenever the aggressor gets the shorter end of the stick the portrayed victim has every right react/attack and not just defend and holding back. Look at the millions of dead civilists in German cities or Japan, most of them had done nothing wrong but still had to pay for decisions made by their government. Whenever you play with fire you also have to expect to get burned. - -For the future episodes I somehow hope that Eren+friends or whoever he may have brought with him is allowed bring down every person who supported the Marley regime and its allies.";False;True;;comment score below threshold;;1610308778;;False;{};gisk330;False;t3_kujurp;False;True;t1_gisgr47;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk330/;1610350633;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;"Eren: Falco, you are a good kid. I hope you live a long life. - -Also Eren: *Detonates right next to Falco* - -Falco: *Surprised Pikachu face*";False;False;;;;1610308788;;False;{};gisk3tf;False;t3_kujurp;False;False;t1_gisboc1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk3tf/;1610350644;643;True;False;anime;t5_2qh22;;0;[]; -[];;;Jon675;;;[];;;;text;t2_ctfmz;False;False;[];;Man just 4 episodes in a row of pure dialogue and I've been on the edge of my seat for every freaking episode. What amazing writing and direction. MAPPA is doing the series justice seriously.;False;False;;;;1610308794;;False;{};gisk492;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk492/;1610350651;13;True;False;anime;t5_2qh22;;0;[]; -[];;;XIIISkies;;;[];;;;text;t2_p0bqb;False;False;[];;Eren has grew pretty tall too, no reason to believe Armin didnt as well;False;False;;;;1610308795;;False;{};gisk4cd;False;t3_kujurp;False;True;t1_gisjn8z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk4cd/;1610350652;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DahmitAll;;;[];;;;text;t2_h7bay;False;False;[];;Just here, once again, to say I was part of history 🤙;False;False;;;;1610308796;;False;{};gisk4ec;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk4ec/;1610350653;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MilkToastKing;;;[];;;;text;t2_13tvvu;False;False;[];;No, why did they attack the first time (With Reiner, Marcel and co), not why is he declaring war now.;False;False;;;;1610308798;;False;{};gisk4ik;False;t3_kujurp;False;False;t1_gisk13q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk4ik/;1610350655;10;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;the fatty got a hug from pieck, that fatty is now my self-insert into attack on titan;False;False;;;;1610308799;;False;{};gisk4mj;False;t3_kujurp;False;False;t1_gisctsk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk4mj/;1610350656;45;True;False;anime;t5_2qh22;;0;[]; -[];;;Rha_psody;;;[];;;;text;t2_98b54u1;False;False;[];;It will be explained;False;False;;;;1610308811;;False;{};gisk5gg;False;t3_kujurp;False;True;t1_gisjnrv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk5gg/;1610350669;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mana_Croissant;;;[];;;;text;t2_30m68690;False;False;[];;Ok NOW THAT FITS SO PERFECTLY for some reason Wtf;False;False;;;;1610308813;;False;{};gisk5kq;False;t3_kujurp;False;False;t1_gisgzl3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk5kq/;1610350671;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;It could've been better tbh. Manga had more impact imo, but like he said, the anime onlies will be fine.;False;True;;comment score below threshold;;1610308815;;False;{};gisk5pn;False;t3_kujurp;False;True;t1_gisimlb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk5pn/;1610350673;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;"hi Willy - -bye Willy";False;False;;;;1610308815;;False;{};gisk5ra;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk5ra/;1610350673;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Cutler_Beckett;;;[];;;;text;t2_elnw3;False;False;[];;Falco is going to be the next Reiner at this rate lol.;False;False;;;;1610308818;;False;{};gisk5y0;False;t3_kujurp;False;False;t1_gise9k9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk5y0/;1610350676;38;True;False;anime;t5_2qh22;;0;[]; -[];;;Ageha_Bot;;;[];;;;text;t2_q67y8;False;False;[];;poor Falco man;False;False;;;;1610308830;;False;{};gisk6tx;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk6tx/;1610350689;6;True;False;anime;t5_2qh22;;0;[]; -[];;;kingwhocares;;;[];;;;text;t2_xrwt8;False;False;[];;It's not technically correct, it's judicially correct.;False;False;;;;1610308834;;False;{};gisk76o;False;t3_kujurp;False;False;t1_gisjyu2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk76o/;1610350696;13;True;False;anime;t5_2qh22;;0;[]; -[];;;manormortal;;;[];;;;text;t2_dtc68;False;False;[];;🤤 the doujinshis should be glorious.;False;False;;;;1610308835;;False;{};gisk78q;False;t3_kujurp;False;True;t1_giscivh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk78q/;1610350696;2;False;False;anime;t5_2qh22;;0;[]; -[];;;Lohtric;;;[];;;;text;t2_10buyw;False;False;[];;You are blind bro;False;False;;;;1610308843;;False;{};gisk7tp;False;t3_kujurp;False;True;t1_gisjyam;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk7tp/;1610350705;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PikachusAnalCavity;;;[];;;;text;t2_6kahtlla;False;False;[];;The comments saying this episode was horrible hurt me, wtf lol;False;False;;;;1610308859;;False;{};gisk8yv;False;t3_kujurp;False;False;t1_gisaov5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk8yv/;1610350723;40;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610308861;;False;{};gisk94p;False;t3_kujurp;False;True;t1_gishpgq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk94p/;1610350725;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi WarBlaster, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610308862;moderator;False;{};gisk967;False;t3_kujurp;False;True;t1_gisk94p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk967/;1610350725;1;False;False;anime;t5_2qh22;;0;[]; -[];;;msklss;;;[];;;;text;t2_8y9actc8;False;False;[];;"thank god. - -cheers!";False;False;;;;1610308863;;False;{};gisk98z;False;t3_kujurp;False;True;t1_gisjl37;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisk98z/;1610350726;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sachman13;;;[];;;;text;t2_qy0fy;False;False;[];;"There’s an edited version of the episode on titanfolk that does the scene much better imo. - -[this one doesn’t have subs yet, but towards the end (think ~4 mins before end) you can really notice the ost ramp up.](https://drive.google.com/file/d/1Lbl0hSVzRrJ2rDs0TOjRKQunQ0wvrAWd/view?usp=drivesdk)";False;False;;;;1610308873;;1610309076.0;{};giska0j;False;t3_kujurp;False;False;t1_giscvj4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giska0j/;1610350739;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610308879;;False;{};giskadr;False;t3_kujurp;False;True;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskadr/;1610350745;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Radix3D;;;[];;;;text;t2_4pafckex;False;False;[];;It was already explained in episode 2 why the festival is taking place to begin with. They need to retrieve the Founding Titan before they are attacked by another enemy nation.;False;False;;;;1610308880;;False;{};giskai8;False;t3_kujurp;False;True;t1_gisg4oi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskai8/;1610350747;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kinderschlager;;;[];;;;text;t2_ci58c;False;False;[];;let me watch crunchyroll, lemme waaaatch!;False;False;;;;1610308885;;False;{};giskavh;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskavh/;1610350752;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Eren, Reiner and Basement-kun is the holy trio;False;False;;;;1610308896;;False;{};giskbpx;False;t3_kujurp;False;False;t1_gisg9of;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskbpx/;1610350766;20;True;False;anime;t5_2qh22;;0;[]; -[];;;kkrko;;MAL;[];;https://myanimelist.net/animelist/krko;dark;text;t2_7ocmj;False;False;[];;Does a season 3 episode really need to be spoiler tagged in a season 4 discussion thread?;False;False;;;;1610308901;;False;{};giskc2y;False;t3_kujurp;False;False;t1_gisfo09;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskc2y/;1610350773;487;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;"> *If you insist.*";False;False;;;;1610308909;;False;{};giskcmu;False;t3_kujurp;False;True;t1_gisajkm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskcmu/;1610350781;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fayezabdd;;;[];;;;text;t2_1vo7dygx;False;False;[];;Ty;False;False;;;;1610308919;;False;{};giskdci;False;t3_kujurp;False;False;t1_gisdhr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskdci/;1610350792;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"Amazing episode. - -But two minor complaints. - -They should have used YouSeeBigGirl for Eren's transformation and the roar should have been louder. - -Also the colossal's shown looked very nice.";False;False;;;;1610308922;;False;{};giskdlg;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskdlg/;1610350795;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;Props to Reiner's voice actor, he absolutely killed it this episode.;False;False;;;;1610308926;;False;{};giskdtm;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskdtm/;1610350799;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Avram99;;;[];;;;text;t2_dgjoc;False;False;[];;When Eren smashes the stage, the Attack Titan is CGI there. Most don't notice it so I find that extremely reassuring (and its hair looks amazing!);False;False;;;;1610308931;;1610309456.0;{};giske7s;False;t3_kujurp;False;False;t1_gisjyam;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giske7s/;1610350805;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ezeymoney;;;[];;;;text;t2_8qjjz;False;False;[];;At this point I just feel bad for every other show that has to exist in the same reality as AOT. It ain't fair.;False;False;;;;1610308934;;False;{};giskeg7;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskeg7/;1610350808;198;True;False;anime;t5_2qh22;;0;[]; -[];;;Rha_psody;;;[];;;;text;t2_98b54u1;False;False;[];;Manga reader, but thank you for being considerate for others :);False;False;;;;1610308934;;False;{};giskegp;False;t3_kujurp;False;False;t1_gisjy0y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskegp/;1610350808;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Lohtric;;;[];;;;text;t2_10buyw;False;False;[];;only thanks to me and my downvote;False;False;;;;1610308935;;False;{};giskeiy;False;t3_kujurp;False;True;t1_gisk0vh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskeiy/;1610350809;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SoMuchHatred;;;[];;;;text;t2_o15bh;False;False;[];;"For one, it was the Tybur's specifically who knew that regarding the king. Considering they seemed to have been rather hands-off in ruling over Marley until recently based on Willy's own words, it may be that they never actually shared that tidbit with Marley's military before now. - -For the other, Marley likely has motivations beyond their own self-defense. For instance, just capturing the Coordinate alone would be an incredible boon for their military since it would give them control over countless Colossal Titans.";False;False;;;;1610308950;;False;{};giskfk9;False;t3_kujurp;False;False;t1_gisjnrv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskfk9/;1610350826;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610308952;;False;{};giskfp9;False;t3_kujurp;False;True;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskfp9/;1610350829;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;That potato chip had better character development than most chars;False;False;;;;1610308960;;False;{};giskgbj;False;t3_kujurp;False;False;t1_gishjsk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskgbj/;1610350837;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;I would say expecting the ost to be good is a reasonable expectation. That's all I've seen people complaining about.;False;False;;;;1610308972;;1610311565.0;{};giskh6m;False;t3_kujurp;False;False;t1_gisem3n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskh6m/;1610350850;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Tbh he stopped working properly long ago;False;False;;;;1610308973;;False;{};giskhb6;False;t3_kujurp;False;False;t1_gisbl4f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskhb6/;1610350853;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;True;[];;Sending a letter won't have the same taste than before.;False;False;;;;1610308974;;False;{};giskhc3;False;t3_kujurp;False;False;t1_gise6z3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskhc3/;1610350854;26;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;is this implying that the next major plot point is at the end of the season? i am getting hard;False;False;;;;1610308974;;False;{};giskhci;False;t3_kujurp;False;True;t1_gisajvw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskhci/;1610350854;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Karl_the_stingray;;;[];;;;text;t2_5y6ceb3k;False;False;[];;"Hey, is it just me or did the opening change slightly?? I swear there were a few extra frames of titan transforming - - -Also, damn. I was just praying for this episode to not end.";False;False;;;;1610308988;;False;{};giskica;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskica/;1610350872;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Orrakai;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Orrakai;light;text;t2_1dhaxo11;False;False;[];;"It astounds me still how Eren can be so *devastatingly* calm, knowing full well that he's about to kill hundreds of people. The Founding Titan's effect is something else. - -Season 1 Eren would be sweating buckets right now.";False;False;;;;1610308989;;False;{};giskig5;False;t3_kujurp;False;False;t1_gisau1z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskig5/;1610350873;35;True;False;anime;t5_2qh22;;0;[]; -[];;;Sachman13;;;[];;;;text;t2_qy0fy;False;False;[];;Eren has killed innocents before (remember the final Annie fight?) but it was never truly intentional. With this, the idea is to reenact the start of the series, whereas before they just happened to be there.;False;False;;;;1610308992;;False;{};giskin3;False;t3_kujurp;False;False;t1_gish9vz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskin3/;1610350878;25;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;Eren finessed his grandpa, Reiner and Falco and gave them mental breakdowns in the space of 2 days.;False;False;;;;1610308994;;False;{};giskirp;False;t3_kujurp;False;False;t1_gisahuh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskirp/;1610350880;17;True;False;anime;t5_2qh22;;0;[]; -[];;;NNNoblesse;;;[];;;;text;t2_2wetb090;False;False;[];;Yeah, this Eren in specific is the best version of him.;False;False;;;;1610308996;;False;{};giskix7;False;t3_kujurp;False;False;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskix7/;1610350882;5;True;False;anime;t5_2qh22;;0;[]; -[];;;manormortal;;;[];;;;text;t2_dtc68;False;False;[];;Four years. Balls dropped. Lil bass in his voice. Probably let Mikasa get to second base by now.;False;False;;;;1610308997;;False;{};giskizo;False;t3_kujurp;False;False;t1_gisdy79;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskizo/;1610350883;6;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610308999;;False;{};giskj6c;False;t3_kujurp;False;True;t1_gisajvw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskj6c/;1610350886;1;True;False;anime;t5_2qh22;;0;[]; -[];;;14MySterY-;;;[];;;;text;t2_b3n4y;False;False;[];;It's because that was what his mom said.;False;False;;;;1610309000;;False;{};giskj83;False;t3_kujurp;False;False;t1_gishd5x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskj83/;1610350887;34;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;it literally cannot get better with only 27 episodes left;False;False;;;;1610309003;;False;{};giskjel;False;t3_kujurp;False;True;t1_gisbtc0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskjel/;1610350890;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;Eren was a Linux user all along;False;False;;;;1610309011;;False;{};giskjzf;False;t3_kujurp;False;False;t1_gishky6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskjzf/;1610350899;26;True;False;anime;t5_2qh22;;0;[]; -[];;;drtoszi;;;[];;;;text;t2_jp26b;False;False;[];;"My mom got ahead of me :V - -But she also watched the subs when I’d wait for the dub";False;False;;;;1610309011;;False;{};giskjzs;False;t3_kujurp;False;False;t1_gisc1pe;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskjzs/;1610350899;21;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610309016;;False;{};giskkbo;False;t3_kujurp;False;True;t1_gisk4ik;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskkbo/;1610350905;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hellokotlinbye;;;[];;;;text;t2_6hjubt1a;False;False;[];;Ok above all can we talk Kazuhiko Inoue's mindblowing voice acting. RIP WILLY :'(;False;False;;;;1610309029;;False;{};giskl8u;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskl8u/;1610350919;4;True;False;anime;t5_2qh22;;0;[]; -[];;;HotestGrillNA;;;[];;;;text;t2_q39nh;False;False;[];;"Willy:""I declare war on paradise."" - -Eren: ""Bet."" - -But all jokes asides, I’ve been waiting on this chapter to finally get animated and holy shit MAPPA you did not miss. I feel like a lot of the comments will talk about how hype the transformation was, but I just wanted to take some time to talk one of my favorite conversations in the series, the conversation between Eren and Reiner during willy’s speech. - -Reiner has a lot of trauma due to the events that happened on paradise island. He feels incredibly guilty for what he has done and as we have seen last episode, it’s to the point that he wants to take his own life away. The last thing that Eren told Reiner was: - ->I gotta make sure to do my best… to make sure you guys suffer and die in the worst way possible. - -Those words still haunt him to this day and after finally facing Eren 4 years later, he thinks Eren has come to finally judge him. But he’s wrong, Eren tells him to forget about what he said that day and he starts to sympathize with Reiner. He tells Reiner: - ->you were still ignorant children... you were taught that the people living on the island are devils. What could you have done to fight that? Your environment, your history... all of that was beaten into you by ignorant adults. You’ve suffered, haven’t you, Reiner? I think now... I understand that. - -This conversation shows incredible character growth from Eren. He isn’t the same naïve child that thinks he’s always right. - -EDIT: - -Also forgot to mention how eren basically had reiner in a hostage situation by showing him his cut hand and that theres a residential area right on top of them. Holy shit eren is ruthless.";False;False;;;;1610309035;;1610309845.0;{};gisklp9;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisklp9/;1610350926;43;True;False;anime;t5_2qh22;;0;[]; -[];;;mapoztofu;;;[];;;;text;t2_ig4auzn;False;False;[];;This whole episode felt like was played on some classical music;False;False;;;;1610309039;;False;{};giskm15;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskm15/;1610350931;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Foxus67;;;[];;;;text;t2_urfqk;False;False;[];;UNTIL MY ENEMIES ARE DESTROYED;False;False;;;;1610309052;;False;{};giskmzc;False;t3_kujurp;False;False;t1_gisb1vv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskmzc/;1610350946;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuck_Taha_Emre;;;[];;;;text;t2_7zgvwi1l;False;False;[];;never thought that killed people;False;False;;;;1610309052;;False;{};giskn0m;False;t3_kujurp;False;False;t1_gisiu2j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskn0m/;1610350947;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610309053;;False;{};giskn2e;False;t3_kujurp;False;True;t1_gisk4ik;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskn2e/;1610350948;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;Anytime a new chapter drops, the discussion threads from r/titanfolk and r/shingekinokyojin always hit r/all;False;False;;;;1610309064;;False;{};gisknwx;False;t3_kujurp;False;False;t1_gisjjq5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisknwx/;1610350960;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;Yeah everything was perfect except for the OST at the climax scene;False;False;;;;1610309070;;False;{};giskoc4;False;t3_kujurp;False;True;t1_giscihl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskoc4/;1610350967;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheFlyingButter;;;[];;;;text;t2_j5kl6;False;False;[];;OH MY FUCKIN GOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOD;False;False;;;;1610309079;;False;{};giskoy4;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskoy4/;1610350977;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;Exactly, just like the opening for this episode with the Berthold lines. It was just like I imagined. Mappa goat 🐏;False;False;;;;1610309082;;False;{};giskp3x;False;t3_kujurp;False;False;t1_gisefnb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskp3x/;1610350979;27;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610309092;;1610343895.0;{};giskpwg;False;t3_kujurp;False;False;t1_gisjnrv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskpwg/;1610350992;100;False;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;a eldian outside the internment zone? heresy!;False;False;;;;1610309108;;False;{};giskr2l;False;t3_kujurp;False;True;t1_gisapyn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskr2l/;1610351011;3;True;False;anime;t5_2qh22;;0;[]; -[];;;amanghimire00;;;[];;;;text;t2_43xogf2;False;False;[];;"Eren’s Titan looks fucking sick - - -And I know damn well Reiner was shitting his pants the whole time";False;False;;;;1610309111;;False;{};giskr9j;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskr9j/;1610351014;5;True;False;anime;t5_2qh22;;0;[]; -[];;;SirVicke;;;[];;;;text;t2_gbh8m;False;False;[];;Isn't the episode really slow then? Last episode ended with them beginning the conversation and this episode ends with them finishing the conversation? Am i missing something?;False;False;;;;1610309115;;False;{};giskrj9;False;t3_kujurp;False;True;t1_gisk0g8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskrj9/;1610351018;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TSmasher1000;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_14sxjn;False;False;[];;It ^^gets ^^^^even ^^^^^^better.;False;False;;;;1610309120;;False;{};giskrxe;False;t3_kujurp;False;False;t1_giskjel;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskrxe/;1610351024;20;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;30k;False;False;;;;1610309130;;False;{};gisksnq;False;t3_kujurp;False;True;t1_giscepb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisksnq/;1610351036;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;With the kind of giga memelord Isayama is I'm not even surprised if it's a deliberate inclusion.;False;False;;;;1610309151;;False;{};gisku4q;False;t3_kujurp;False;False;t1_giseulo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisku4q/;1610351059;62;True;False;anime;t5_2qh22;;0;[]; -[];;;kneelhitler;;;[];;;;text;t2_2y0cogxa;False;False;[];;This episode gave me anxiety as I knew something bad gonna happen. Thnx MAPPA this exact feeling I expected from this;False;False;;;;1610309151;;False;{};gisku6d;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisku6d/;1610351060;3;True;False;anime;t5_2qh22;;0;[]; -[];;;suzushiro;;;[];;;;text;t2_fpypp;False;False;[];;I am trying really hard to figure out who that tall blonde guy was. The only other blonde guy that I know in AoT who is on Eren's side and is still alive is Armin, but he was never that tall and his voice didn't sound like Armin at all. And the interesting thing was that Pieck recognizes him from somewhere......;False;False;;;;1610309169;;False;{};giskvhb;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskvhb/;1610351079;9;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;I get what you are saying but this is war and innocent people will die. You can't cherry pick the bad guys. While they were innocent, innocent civilians died on both sides, it couldn't be helped due to the tactical advantage it gave Eren;False;True;;comment score below threshold;;1610309176;;False;{};giskvyz;False;t3_kujurp;False;True;t1_gisjwf3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskvyz/;1610351087;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;CeaRhan;;;[];;;;text;t2_tn4ge;False;False;[];;So the thing manga readers were so hyped about was the most obvious plot progression possible which everyone saw coming 4 episodes ago, coming with a mid-tier speech? Holy shit;False;True;;comment score below threshold;;1610309178;;False;{};giskw2o;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskw2o/;1610351088;-29;True;False;anime;t5_2qh22;;0;[];True -[];;;dxoxud0814;;;[];;;;text;t2_66erfb7e;False;False;[];;Can i have the links of those sites please? I'm dying of suspense right now;False;False;;;;1610309185;;False;{};giskwmf;False;t3_kujurp;False;True;t1_gisjhlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskwmf/;1610351096;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Justmy2cb;;;[];;;;text;t2_5m9lp26u;False;False;[];;I mean if Marley let them live in peace instead of sending pure Titans and later destroying the wall, the King was not so bad in his attitude. Maybe he should have been more clear and serious about his threat if disturbed though.;False;False;;;;1610309194;;False;{};giskx96;False;t3_kujurp;False;False;t1_gisi7ys;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskx96/;1610351105;38;True;False;anime;t5_2qh22;;0;[]; -[];;;BladerRex17;;;[];;;;text;t2_11zfb6qk;False;False;[];;Do all anime have these end cards or something or is MAPPA flexing lol;False;False;;;;1610309201;;False;{};giskxst;False;t3_kujurp;False;False;t1_gisaov5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskxst/;1610351114;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Buxton_Water;;;[];;;;text;t2_mqlb3;False;False;[];;Here we go boys;False;False;;;;1610309207;;False;{};gisky8g;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisky8g/;1610351120;2;True;False;anime;t5_2qh22;;0;[]; -[];;;simplebutelegant9;;;[];;;;text;t2_73fpg8lr;False;False;[];;Look what life did to eren. This feel like the literal definition of draining his soul;False;False;;;;1610309210;;1610309965.0;{};giskyg0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskyg0/;1610351124;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;"It was actually in the manga. It blew my mind when I went back to Chp 100 and saw it. We don't explicitly see them in front of the door, just running in that general direction. - -This makes me wonder how many small details I've missed like this one";False;False;;;;1610309210;;False;{};giskygn;False;t3_kujurp;False;False;t1_giscc8f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskygn/;1610351124;43;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610309211;;1610343902.0;{};giskyhc;False;t3_kujurp;False;False;t1_gisjjq5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskyhc/;1610351124;3;False;False;anime;t5_2qh22;;0;[]; -[];;;bloc97;;;[];;;;text;t2_qy1xi;False;False;[];;I disagree, using an over the top ost in a rather serious moment between Eren and Reiner makes the scene look cheesy and not serious at all... The silence really fit the weight of the moment as you're not supposed to know whether Eren is going to transform or not...;False;False;;;;1610309212;;False;{};giskyjr;False;t3_kujurp;False;False;t1_gisin0r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskyjr/;1610351125;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;Nah the pacing was perfect. The whole episode was perfect tbh the only problem was the music choice for the final scene.;False;False;;;;1610309217;;False;{};giskyyu;False;t3_kujurp;False;True;t1_giskrj9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskyyu/;1610351131;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Orrakai;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Orrakai;light;text;t2_1dhaxo11;False;False;[];;"*You're outta pocket for this but* - -[](#serialkillerlaugh)";False;False;;;;1610309221;;False;{};giskz99;False;t3_kujurp;False;False;t1_gisax5b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskz99/;1610351137;6;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;This episode adapt chapter 99 and 100, 2 chapters, they even skip a scene that will be in the next episode so that everything could be fit into this episode. Not slow at all.;False;False;;;;1610309222;;False;{};giskzbp;False;t3_kujurp;False;False;t1_giskrj9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giskzbp/;1610351138;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Parsly22;;;[];;;;text;t2_8vouunyq;False;False;[];;"i disagree, literally panel with panel with the manga, the only thing i could see being ""controversial"" is the final ost choice but it was still good enough imo.";False;False;;;;1610309233;;False;{};gisl048;False;t3_kujurp;False;False;t1_gisk5pn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisl048/;1610351149;19;True;False;anime;t5_2qh22;;0;[]; -[];;;ScheduledMold58;;;[];;;;text;t2_asjnm0v;False;False;[];;">**Episode 67 (Season 4 Episode 8) - [SPOILER WARNING](/s ""Assassin's Bullet (105)"")** - -Oh boy, I can't wait to see the reactions to this one. Only a few more weeks before we can watch as the internet implodes!";False;False;;;;1610309237;;False;{};gisl0e9;False;t3_kujurp;False;False;t1_gisatbg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisl0e9/;1610351154;15;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;The threat was a bluff and he should have known better.;False;False;;;;1610309241;;False;{};gisl0on;False;t3_kujurp;False;False;t1_giskx96;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisl0on/;1610351158;17;True;False;anime;t5_2qh22;;0;[]; -[];;;wubbzywylin;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kunmi21?status=7;light;text;t2_qy7hwoj;False;False;[];;*Minecraft, But I'm A Shounen Protagonist...*;False;False;;;;1610309253;;False;{};gisl1jx;False;t3_kujurp;False;False;t1_gisgg6f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisl1jx/;1610351172;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Yuzunade;;;[];;;;text;t2_6k8ruh38;False;False;[];;First episode I see Eren so calm, without screaming every 5 minutes, what a change, fascinating he's matured so much after timeskip😆😆;False;False;;;;1610309264;;False;{};gisl2c4;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisl2c4/;1610351183;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SovietSpartan;;;[];;;;text;t2_117gau;False;True;[];;">terrorist attack - -Does it even count as a terrorist attack? He only attacked right after the declaration of war, so essentially it'd be an enemy attack from another nation. Unless they're acting independant from Paradis' government.";False;False;;;;1610309265;;False;{};gisl2gi;False;t3_kujurp;False;False;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisl2gi/;1610351185;33;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;[MATHEMATICALLY CLOSE TO PERFECTION](https://i.imgur.com/RFWWxjf.png);False;False;;;;1610309293;;False;{};gisl4hl;False;t3_kujurp;False;False;t1_gisfhju;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisl4hl/;1610351213;37;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610309293;;1610343908.0;{};gisl4iy;False;t3_kujurp;False;True;t1_giskw2o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisl4iy/;1610351214;4;False;False;anime;t5_2qh22;;0;[]; -[];;;lasso914;;;[];;;;text;t2_218t9j8p;False;False;[];;"Tense af! - -I thought the ending scene would be presented better considering the flow of the episode and the bulid up, but nonetheless it was good. - -Let the war begins!!";False;False;;;;1610309300;;False;{};gisl4zg;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisl4zg/;1610351221;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"Reiner, when he was introduced was like a big bro to everyone and now he is a depressed, broken man now. - -Eren was like a raging teen and too annoying (for me personally back then) and now he's also depressed inside. - -Both of them are quite similar now even though they used to be so different when they were introduced.";False;False;;;;1610309303;;False;{};gisl56k;False;t3_kujurp;False;False;t1_gisau1z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisl56k/;1610351224;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Y-Kun;;;[];;;;text;t2_n5tm7;False;False;[];;I’m not denying they did a great job. They did amazing with this scene. Just have a different taste that’s all.;False;False;;;;1610309305;;False;{};gisl5hz;False;t3_kujurp;False;False;t1_gisjn5n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisl5hz/;1610351228;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Spiceyhedgehog;;;[];;;;text;t2_143wk0;False;False;[];;"Marley wanted the Founding titan and the resources existing on the island... also it would be a propaganda boost I bet. - -Besides that Willy last episode admitted his family was the rulers in the shadows last episode, but also implied his predecessors had a very hands off policy and letting Marleyans do what they wanted. And Marley wanted to attack. Willy stepped in now because Eren took the Founder and Willy thought he couldn't afford not to get involved. - -Edit: Added the bit about Willy.";False;False;;;;1610309340;;1610309900.0;{};gisl7sw;False;t3_kujurp;False;False;t1_gisk4ik;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisl7sw/;1610351264;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"The Re in Reiner stands for Regret - -[](#panickedgakuto)";False;False;;;;1610309344;;False;{};gisl84r;False;t3_kujurp;False;False;t1_gise5nm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisl84r/;1610351268;120;True;False;anime;t5_2qh22;;0;[]; -[];;;PikachusAnalCavity;;;[];;;;text;t2_6kahtlla;False;False;[];;"They communicate with the military. Was implied when he spoke with Magath. Tybur knows everything the major military leaders know; and then even more.";False;False;;;;1610309348;;False;{};gisl8d6;False;t3_kujurp;False;False;t1_gisbq0k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisl8d6/;1610351272;34;True;False;anime;t5_2qh22;;0;[]; -[];;;RekklesCami;;;[];;;;text;t2_3ozyz0ye;False;False;[];;So much other great animes airing this season but aot is just taking the whole spotlight lol;False;False;;;;1610309364;;False;{};gisl9kg;False;t3_kujurp;False;False;t1_giskeg7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisl9kg/;1610351291;57;True;False;anime;t5_2qh22;;0;[]; -[];;;Kyubeu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Qbeus;light;text;t2_4b5qgox9;False;False;[];;"*I might have said that* - -After 2 weeks we come back to Reiner becoming even more of a wreck and basically him and Eren doing a complete 180 in comparison to when we first met them. Great stuff. Also of course everything was planned. I wonder who that *soldier* was but I may have my theories. Will's speech cleared out and summarised a lot, which was very much needed. Well, we may see other members of og cast soon. And obviously transformation scene - brilliant. - -This episode was really great but the least shocking so far- we had had pieces of puzzle already and now they've been connected. Waiting impatiently for how the cliffhanger continues";False;False;;;;1610309367;;False;{};gisl9ti;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisl9ti/;1610351295;3;True;False;anime;t5_2qh22;;0;[]; -[];;;deleted-user;;MAL;[];;http://myanimelist.net/animelist/AKC47;dark;text;t2_aj4jy;False;False;[];;Too bad it suffered the same fate as Marco;False;False;;;;1610309395;;False;{};gislbq5;False;t3_kujurp;False;False;t1_giskgbj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislbq5/;1610351323;13;True;False;anime;t5_2qh22;;0;[]; -[];;;ZackDB201;;;[];;;;text;t2_1sxfbwvn;False;False;[];;oh wow i didn't notice at all;False;False;;;;1610309397;;False;{};gislbw6;False;t3_kujurp;False;True;t1_giske7s;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislbw6/;1610351325;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lekaetos;;;[];;;;text;t2_13vf4c;False;False;[];;I love SHingeki no Kyojin;False;False;;;;1610309397;;False;{};gislbx6;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislbx6/;1610351326;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Eren has changed a looooot now, he flattened a residential block with so many people without any hesitation. He's learned that instead of getting emotional he needs to have resolve and do what much be done;False;False;;;;1610309403;;False;{};gislcam;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislcam/;1610351332;13;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"What a fantastic episode! The manga readers where right about this episode breaking the internet! - -The exchange between eren and reiner discussing how similar their lives are, while the dude up stairs spreads propaganda, ending in a grand climax as both eren and the blond guy declares war! - -Wow AOT is a poetic masterpiece!";False;False;;;;1610309406;;False;{};gislcke;False;t3_kujurp;False;False;t1_gisaldb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislcke/;1610351335;17;True;False;anime;t5_2qh22;;0;[]; -[];;;sudharshann;;;[];;;;text;t2_60gvcppb;False;False;[];;"Falco: Mr.Kruger, what happened to your hand? - -Eren: Tis but a scratch";False;False;;;;1610309412;;False;{};gislcz6;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislcz6/;1610351342;4;True;False;anime;t5_2qh22;;0;[]; -[];;;skidd_;;;[];;;;text;t2_ujvdt;False;False;[];;Reiner’s VA was fucking amazing.;False;False;;;;1610309420;;False;{};gisldhg;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisldhg/;1610351350;37;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Cutler_Beckett;;;[];;;;text;t2_elnw3;False;False;[];;All is fair in love and war.;False;False;;;;1610309422;;False;{};gisldmu;False;t3_kujurp;False;False;t1_gish4zq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisldmu/;1610351352;407;True;False;anime;t5_2qh22;;0;[]; -[];;;overaname;;;[];;;;text;t2_10uou0;False;False;[];;Me neither. Idk how everyone else seems to be watching it.;False;False;;;;1610309430;;False;{};gisle6z;False;t3_kujurp;False;True;t1_gisipva;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisle6z/;1610351361;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Radix3D;;;[];;;;text;t2_4pafckex;False;False;[];;"> Funny thing, nobody seems to realize that by making the walls the king more or less murdered, what? a million perhaps? every single one of those titans was a person. - -[Manga Spoilers](/s ""Not necessarily. We know that the Founding Titan is capable of summoning Titan Shifters from the past, and we've never seen mindless Colossal Titans before. It's quite possible that the Colossal Titans in the walls are multiple copies of different Colossal Titans of the past."")";False;False;;;;1610309438;;False;{};gislers;False;t3_kujurp;False;True;t1_gisgcj1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislers/;1610351369;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PhenomsServant;;;[];;;;text;t2_xladq;False;False;[];;That this scene has been parodied so much, that nobody can take seriously anymore.;False;False;;;;1610309449;;False;{};gislfjm;False;t3_kujurp;False;False;t1_gisa8cr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislfjm/;1610351382;5;True;False;anime;t5_2qh22;;0;[]; -[];;;markosinjo;;;[];;;;text;t2_hzc9j;False;False;[];;Oh, how the turntables;False;False;;;;1610309450;;False;{};gislfn3;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislfn3/;1610351383;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;It wasn't quite panel for panel, but I know what you mean. Some faults imo would be that the character acting wasn't quite as strong as something like episode 2, and the final scene just hit harder in the manga imo. Still a hard 8/10 adaptation wise.;False;True;;comment score below threshold;;1610309451;;1610337431.0;{};gislfop;False;t3_kujurp;False;True;t1_gisl048;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislfop/;1610351383;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackkatsu01;;;[];;;;text;t2_47wigk61;False;False;[];;Because it's not out yet.;False;False;;;;1610309458;;False;{};gislg8j;False;t3_kujurp;False;True;t1_gisipva;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislg8j/;1610351391;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cornpenguin01;;;[];;;;text;t2_147sgq;False;False;[];;It’s heartbreaking. Now both the people we thought were the enemy and our protagonist are committing atrocities. Support whichever side you want, but justifying the death of civilians and children is never okay. Eren transformed under a residential building. Just let that sink in.;False;False;;;;1610309474;;False;{};gislhdz;False;t3_kujurp;False;False;t1_giskig5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislhdz/;1610351409;37;True;False;anime;t5_2qh22;;0;[]; -[];;;lance2611;;;[];;;;text;t2_bdyrxbc;False;False;[];;"Eren waited for Willy to declare war before attacking. - -Gabi could learn a thing or two about laws of war from Eren.";False;False;;;;1610309475;;False;{};gislhg0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislhg0/;1610351410;18;True;False;anime;t5_2qh22;;0;[]; -[];;;CeaRhan;;;[];;;;text;t2_tn4ge;False;False;[];;"Of course. I'm just floored they spent an entire week spoiling people and ruining the wait for everyone only for it to be ""Reiner does the obvious thing, Eren does the obvious thing, and Willy's speech is somehow received like a gift from the gods by people who shouldn't even care about it that much and should rather see it as Marley - the colonial authoritarian empire - waving a white flag."" - -Like holy shit";False;True;;comment score below threshold;;1610309476;;False;{};gislhju;False;t3_kujurp;False;True;t1_gisl4iy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislhju/;1610351412;-9;True;False;anime;t5_2qh22;;0;[];True -[];;;Robo_e;;;[];;;;text;t2_taue7;False;False;[];;What time does the episode go up?;False;False;;;;1610309480;;False;{};gislhtw;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislhtw/;1610351416;1;True;False;anime;t5_2qh22;;0;[]; -[];;;I-Love-Emilia;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;I love Emilia;dark;text;t2_3yu81k8x;False;True;[];;I saw a bunch of complaints about it before I watched the episode. When I watched it, I thought the soundtrack was amazing!;False;False;;;;1610309489;;False;{};gisliiu;False;t3_kujurp;False;False;t1_gisbw5o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisliiu/;1610351427;6;True;False;anime;t5_2qh22;;0;[]; -[];;;nicehero2310;;;[];;;;text;t2_3uv79eqb;False;False;[];;Really good loved it!!! Gave me chills!!!;False;False;;;;1610309493;;False;{};gislirg;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislirg/;1610351431;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WomenLiker69;;;[];;;;text;t2_5k55cvtv;False;False;[];;"OH MY FUCKING GOD! - -OH MY FUCKING GOD! - -OH MY FUCKING GOD! - -OH MY FUCKING GOD! - -OH MY FUCKING GOD! - -OH MY FUCKING GOD! - -OH MY FUCKING GOD! - -\- MY REACTION TO THE EPISODE";False;False;;;;1610309502;;1610311193.0;{};gisljg0;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisljg0/;1610351441;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Cutler_Beckett;;;[];;;;text;t2_elnw3;False;False;[];;400g, Eren about to snowball in the next ep now.;False;False;;;;1610309505;;False;{};gisljn9;False;t3_kujurp;False;False;t1_gisch0n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisljn9/;1610351444;13;True;False;anime;t5_2qh22;;0;[]; -[];;;realrimurutempest;;;[];;;;text;t2_4bauklbm;False;False;[];;Eren playin chess while the world plays checkers 😎;False;False;;;;1610309508;;False;{};gislju4;False;t3_kujurp;False;False;t1_gisboc1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislju4/;1610351447;19;True;False;anime;t5_2qh22;;0;[]; -[];;;kvbt7;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kvbt;light;text;t2_446n5ucc;False;False;[];;xdddddddd;False;False;;;;1610309511;;False;{};gislk3w;False;t3_kujurp;False;True;t1_gisapik;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislk3w/;1610351451;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Skarroz;;;[];;;;text;t2_s0zfl;False;False;[];;It was way better in the manga;False;True;;comment score below threshold;;1610309511;;False;{};gislk4f;False;t3_kujurp;False;True;t1_giskw2o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislk4f/;1610351451;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"[Eren's titan can look so menacing at night.](https://i.imgur.com/VH5jNDw.jpg) It could be a nice death metal album cover too. - -[](#dekuhype)";False;False;;;;1610309524;;False;{};gisll10;False;t3_kujurp;False;False;t1_gisag7i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisll10/;1610351465;36;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Cutler_Beckett;;;[];;;;text;t2_elnw3;False;False;[];;Over/Under on him ejaculating?;False;True;;comment score below threshold;;1610309538;;False;{};gislm17;False;t3_kujurp;False;True;t1_gisc0xk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislm17/;1610351480;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;UnoReverseCard8722;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Ara Ara;light;text;t2_66dg8834;False;False;[];;It’s my birthday today and this was the best present I could ask for.;False;False;;;;1610309553;;False;{};gisln52;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisln52/;1610351495;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Senkrigar;;;[];;;;text;t2_404k6fbv;False;False;[];;I love how he changed from a generic shounen protagonist to a great and deep character;False;False;;;;1610309556;;False;{};gislnfv;False;t3_kujurp;False;False;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislnfv/;1610351500;8;True;False;anime;t5_2qh22;;0;[]; -[];;;asidopo;;;[];;;;text;t2_16p7u9;False;False;[];;"yea nvm - -You should just forget that";False;False;;;;1610309565;;False;{};gislo0n;False;t3_kujurp;False;True;t1_gisjfdz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislo0n/;1610351508;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Godd_was_here;;;[];;;;text;t2_34y11im9;False;False;[];;Didn't a whole church full of people die or am I just watching too much aot abridged?;False;False;;;;1610309566;;False;{};gislo45;False;t3_kujurp;False;False;t1_giskn0m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislo45/;1610351509;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;Holy shit that was epic;False;False;;;;1610309578;;False;{};gislp00;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislp00/;1610351523;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Cutler_Beckett;;;[];;;;text;t2_elnw3;False;False;[];;20k, keep counting!;False;False;;;;1610309596;;False;{};gislqbj;False;t3_kujurp;False;False;t1_gisfb56;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislqbj/;1610351544;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nietschzesuperhuman;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Doc_McCoy?status=7&order=4&ord";light;text;t2_vk6p0;False;False;[];;Excuse me?;False;False;;;;1610309599;;False;{};gislqjq;False;t3_kujurp;False;False;t1_gisk330;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislqjq/;1610351547;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Chenestla;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4gg635nn;False;False;[];;"nvm then - -I guess it’s a good thing we don’t get more hate";False;False;;;;1610309605;;False;{};gislr0l;False;t3_kujurp;False;True;t1_giskyhc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislr0l/;1610351554;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sammuelbrown;;;[];;;;text;t2_13ifj2;False;False;[];;Here I thought Willy was going to be a major character in the season, but nope crushed in half in episode 5.;False;False;;;;1610309606;;False;{};gislr34;False;t3_kujurp;False;False;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislr34/;1610351554;30;True;False;anime;t5_2qh22;;0;[]; -[];;;SweetestPumpkin;;;[];;;;text;t2_15rr31;False;False;[];;Get ready, the OSTBros are coming with their big girls.;False;False;;;;1610309632;;False;{};gislszm;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislszm/;1610351585;14;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 125, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'When you come across a feel-good thing.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'icon_width': 2048, 'id': 'award_5f123e3d-4f48-42f4-9c11-e98b566d5897', 'is_enabled': True, 'is_new': False, 'name': 'Wholesome', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;Imagine your job is to ride Pieck and shoot loads when she's on all four;False;False;;;;1610309634;;False;{};gislt2i;False;t3_kujurp;False;False;t1_gisg17q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislt2i/;1610351586;244;True;False;anime;t5_2qh22;;1;[]; -[];;;Meapcuteee;;;[];;;;text;t2_1wlio7dc;False;False;[];;I mean it's been 4 years so....but i really doubt they had change the voice though (his voice actor is still tweeting about the new episodes);False;False;;;;1610309634;;False;{};gislt2l;False;t3_kujurp;False;True;t1_giskvhb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislt2l/;1610351586;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Cutler_Beckett;;;[];;;;text;t2_elnw3;False;False;[];;I don’t want to play with you anymore meme, lol.;False;False;;;;1610309635;;False;{};gislt6x;False;t3_kujurp;False;False;t1_gisez0v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislt6x/;1610351588;11;True;False;anime;t5_2qh22;;0;[]; -[];;;asscrackrash;;;[];;;;text;t2_9jhv8y1m;False;False;[];;"kazuhiko inoue, man of many talents. - -kakashi hatake, nyanko-sensei, kars and eren's evening snack.";False;False;;;;1610309635;;False;{};gislt87;False;t3_kujurp;False;False;t1_gisgb3i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislt87/;1610351588;30;True;False;anime;t5_2qh22;;0;[]; -[];;;JUST_CHATTING_FAPPER;;;[];;;;text;t2_2o2uyt3s;False;False;[];;IS IT OKAY TO SAY THIS IS THE PINNACLE OF THIS MEDIUM AT THIS POINT?;False;False;;;;1610309641;;False;{};gisltn1;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisltn1/;1610351594;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Thothings;;;[];;;;text;t2_kxb23;False;False;[];;He at least did it only after Marley had just declared all out war on his people, though. You could say he didn't necessarily start the war, just attack first. Not that that justifies massacring all the civilians.;False;False;;;;1610309642;;False;{};gisltpy;False;t3_kujurp;False;False;t1_gisg7oo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisltpy/;1610351596;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Cutler_Beckett;;;[];;;;text;t2_elnw3;False;False;[];;I pm’d you.;False;False;;;;1610309648;;False;{};gislu7j;False;t3_kujurp;False;True;t1_gisf4kc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislu7j/;1610351603;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;same sound director as wit;False;False;;;;1610309665;;False;{};gislvi9;False;t3_kujurp;False;False;t1_gisccfb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislvi9/;1610351622;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"[Eren never forgot](https://i.imgur.com/6HBpHoj.png) - -[](#deadlystare)";False;False;;;;1610309673;;False;{};gislw40;False;t3_kujurp;False;False;t1_giscr8m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislw40/;1610351631;757;True;False;anime;t5_2qh22;;0;[]; -[];;;farnyc;;;[];;;;text;t2_6zuskmjk;False;False;[];;fucking CR taking forever;False;False;;;;1610309684;;False;{};gislwx7;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislwx7/;1610351644;6;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 200, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""I can't help but look."", 'end_date': None, 'giver_coin_reward': 0, 'icon_format': 'PNG', 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/kjpl76213ug51_Looking.png', 'icon_width': 2048, 'id': 'award_4922c1be-3646-4d62-96ea-19a56798df51', 'is_enabled': True, 'is_new': False, 'name': 'Looking', 'penny_donate': 0, 'penny_price': 0, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/kjpl76213ug51_Looking.png?width=16&height=16&auto=webp&s=587f804cfb05274aa804f013b414b5755e1a49fd', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/kjpl76213ug51_Looking.png?width=32&height=32&auto=webp&s=90cf62af7337cad44188e78fbd0e0039823be792', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/kjpl76213ug51_Looking.png?width=48&height=48&auto=webp&s=fbc04a472b6c9c3bdba8c439a9c1ec5524f4a7fd', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/kjpl76213ug51_Looking.png?width=64&height=64&auto=webp&s=883c15cc7b3d98dd260e14be64b0d03e3cceda31', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/kjpl76213ug51_Looking.png?width=128&height=128&auto=webp&s=863809606d759dc65538b4ce7bd754abb90913e4', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/kjpl76213ug51_Looking.png?width=16&height=16&auto=webp&s=587f804cfb05274aa804f013b414b5755e1a49fd', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/kjpl76213ug51_Looking.png?width=32&height=32&auto=webp&s=90cf62af7337cad44188e78fbd0e0039823be792', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/kjpl76213ug51_Looking.png?width=48&height=48&auto=webp&s=fbc04a472b6c9c3bdba8c439a9c1ec5524f4a7fd', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/kjpl76213ug51_Looking.png?width=64&height=64&auto=webp&s=883c15cc7b3d98dd260e14be64b0d03e3cceda31', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/kjpl76213ug51_Looking.png?width=128&height=128&auto=webp&s=863809606d759dc65538b4ce7bd754abb90913e4', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/kjpl76213ug51_Looking.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;imadethistoshitpostt;;;[];;;;text;t2_z6c22;False;False;[];;He may be remorseful but he is still a shitter. You don't get to genocide hundreds of thousands of civilians and expect me to feel sorry for you.;False;False;;;;1610309687;;False;{};gislx79;False;t3_kujurp;False;False;t1_gisgowd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislx79/;1610351648;35;True;False;anime;t5_2qh22;;1;[]; -[];;;applep00;;;[];;;;text;t2_50xfz7jj;False;False;[];; the ost they used (2volt) instills a bigger sense of urgency with its fast pace and sets the stage for whats to obviously come, which why i think it fits and what a lotta people dont really recognize. YSBG was played during a turning point in the series since it really introduced a whole new world and antagonist, and while this is too, its more about demonstrating the pure action since we get to see our protagonist in his full glory, which is why YSBG dont fit. someone posted the samuel kim ost version and i liked that a bit more, but personally have no complaints with what they chose.;False;False;;;;1610309688;;False;{};gislx95;False;t3_kujurp;False;False;t1_gisd37d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislx95/;1610351649;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Oxu90;;;[];;;;text;t2_yxh7y;False;False;[];;"Tyber: *declares war* - -Eren: ""Call an ambulance!...but not for me!""";False;False;;;;1610309690;;False;{};gislxep;False;t3_kujurp;False;True;t1_giseasp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislxep/;1610351651;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];;Bro it's a joke hahah;False;False;;;;1610309693;;False;{};gislxnc;False;t3_kujurp;False;False;t1_gisbeg8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislxnc/;1610351656;12;True;False;anime;t5_2qh22;;0;[]; -[];;;CeaRhan;;;[];;;;text;t2_tn4ge;False;False;[];;I won't doubt you. People really struggle understanding why manga is a lot of the time better than anime when depicting certain scenes. I can absolutely see it being better paced and less linear to follow reading it.;False;False;;;;1610309697;;False;{};gislxyl;False;t3_kujurp;False;True;t1_gislk4f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislxyl/;1610351660;-2;True;False;anime;t5_2qh22;;0;[];True -[];;;minouneetzoe;;MAL;[];;http://myanimelist.net/animelist/minouneetzoe;dark;text;t2_as0ik;False;False;[];;*Finger guns*;False;False;;;;1610309701;;False;{};gisly9k;False;t3_kujurp;False;False;t1_gisfgrb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisly9k/;1610351665;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;This series is all about callbacks. Paying attention to even the most mundane details and seemingly throwaway lines will be so rewarding and rewatches/reads become even more enjoyable. The only other series that does this as well is One Piece.;False;False;;;;1610309703;;False;{};gislyf5;False;t3_kujurp;False;False;t1_gisj0wk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislyf5/;1610351667;767;True;False;anime;t5_2qh22;;0;[]; -[];;;MAQS357;;;[];;;;text;t2_yske3;False;False;[];;"THIS - -Having someone wanting to kill you because of lack of understanding is usual at this point, but having that person to actually understand the situation and all of the POVs. - -And still wanting to kill you...now that is frightening.";False;False;;;;1610309709;;False;{};gislyyi;False;t3_kujurp;False;False;t1_gisjuyt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislyyi/;1610351675;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Xp;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/LordXp/;light;text;t2_jd7a7;False;False;[];;[Strawpoll](http://www.strawpoll.me/42421641) for figuring out who everyone's favorite new character/s are for this season. Feel free to vote on multiple people. I'll share results next week.;False;False;;;;1610309712;;False;{};gislz57;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislz57/;1610351678;4;True;False;anime;t5_2qh22;;0;[]; -[];;;kvbt7;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kvbt;light;text;t2_446n5ucc;False;False;[];;AoT beats Re:Zero in its sleep.;False;False;;;;1610309719;;1610311900.0;{};gislzp3;False;t3_kujurp;False;False;t1_gisb1bh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislzp3/;1610351685;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Cutler_Beckett;;;[];;;;text;t2_elnw3;False;False;[];;Are we doing it?;False;False;;;;1610309720;;False;{};gislzrc;False;t3_kujurp;False;True;t1_gisf2qe;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gislzrc/;1610351686;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ayoubgoo;;;[];;;;text;t2_pa586;False;False;[];;They had to attack cause the founding could fall in the hands of someone who would actually use its powers (like Eren now);False;False;;;;1610309724;;False;{};gism03c;False;t3_kujurp;False;False;t1_gisjnrv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism03c/;1610351691;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MartinaS90;;;[];;;;text;t2_13onma;False;False;[];;Eren is a complete gentleman when it comes to wars, fair play there.;False;False;;;;1610309726;;False;{};gism07l;False;t3_kujurp;False;False;t1_gislhg0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism07l/;1610351693;5;True;False;anime;t5_2qh22;;0;[]; -[];;;RedBlackZork;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Alchyy;dark;text;t2_169e2k;False;False;[];;I literally had to lie down to calm myself. Insane episode.;False;False;;;;1610309727;;False;{};gism0bq;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism0bq/;1610351695;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610309739;;False;{};gism16c;False;t3_kujurp;False;True;t1_gisadib;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism16c/;1610351707;1;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 2, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Shows the Silver Award... and that's it."", 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'icon_width': 512, 'id': 'gid_1', 'is_enabled': True, 'is_new': False, 'name': 'Silver', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;Eren: Hear that, Reiner? Sorry the match has started I gotta go.;False;False;;;;1610309745;;False;{'gid_1': 2};gism1mw;False;t3_kujurp;False;False;t1_giscr8m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism1mw/;1610351714;1674;True;False;anime;t5_2qh22;;2;[]; -[];;;alphd14;;;[];;;;text;t2_70g3wfyi;False;False;[];;With Eren’s Titan popping out at the end of the episode, I feel like a whole new version of S1 E1 could’ve started right here, from Falco/Gabi’s perspective. Consistently blown away by the writing and direction of this series.;False;False;;;;1610309748;;False;{};gism1u0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism1u0/;1610351717;10;True;False;anime;t5_2qh22;;0;[]; -[];;;sammuelbrown;;;[];;;;text;t2_13ifj2;False;False;[];;I'm not sure I'm ready to see Eren eating Reiner's mom.;False;False;;;;1610309748;;False;{};gism1ur;False;t3_kujurp;False;False;t1_gisax5b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism1ur/;1610351717;11;True;False;anime;t5_2qh22;;0;[]; -[];;;LittleWompRat;;;[];;;;text;t2_54bxq18h;False;False;[];;"Military supremacy. - -It's not because they were afraid of the king, it was because they wanted to steal the Founding Titan. We know that they couldn't keep up with the technology and that other countries are catching up to them. By taking control of FT would also give them control of millions of titans inside the wall. It's OP as fuck.";False;False;;;;1610309758;;False;{};gism2ke;False;t3_kujurp;False;False;t1_gisk4ik;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism2ke/;1610351728;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Potatoz;;;[];;;;text;t2_wregl;False;False;[];;It just shows how perfect everything else was that people could only argue that the final sound track didn't fit.;False;False;;;;1610309761;;False;{};gism2sg;False;t3_kujurp;False;False;t1_gisanh2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism2sg/;1610351731;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;It runs in the squad. It's funny how even [Eren acknowledged Reiner's plight.](https://i.imgur.com/6CkNfJQ.jpg);False;False;;;;1610309768;;False;{};gism3eq;False;t3_kujurp;False;False;t1_gise6z3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism3eq/;1610351743;928;True;False;anime;t5_2qh22;;0;[]; -[];;;not_martian;;;[];;;;text;t2_1korsrrj;False;False;[];;"The founding Titan is now with Eren , and he can use it to activate the ""rumbling"" so willy made the entire world turn against Eren Jaeger and the paradisians .";False;False;;;;1610309769;;False;{};gism3gd;False;t3_kujurp;False;True;t1_gisjnrv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism3gd/;1610351743;0;True;False;anime;t5_2qh22;;0;[]; -[];;;winasta;;;[];;;;text;t2_pgljym5;False;False;[];;hhh true.;False;False;;;;1610309769;;False;{};gism3gu;False;t3_kujurp;False;False;t1_giskc2y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism3gu/;1610351743;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Cutler_Beckett;;;[];;;;text;t2_elnw3;False;False;[];;And a therapist;False;False;;;;1610309770;;False;{};gism3jf;False;t3_kujurp;False;True;t1_gisdvrd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism3jf/;1610351744;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Runbern;;;[];;;;text;t2_77cqfhat;False;False;[];;Not sure if you can classify it as a terrorist attack. But he just killed a whole bunch of innocent civilians (Eldians at that) and a bunch of children by basically blowing up the apartment building he was in. Not to mention the raining debris hitting the crowd.;False;False;;;;1610309773;;False;{};gism3q6;False;t3_kujurp;False;False;t1_gisl2gi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism3q6/;1610351746;34;True;False;anime;t5_2qh22;;0;[]; -[];;;Psycho__Gamer;;;[];;;;text;t2_3im6rmex;False;False;[];;Eren punched Annie straight into that church killing dozens of people;False;False;;;;1610309774;;False;{};gism3ve;False;t3_kujurp;False;False;t1_gislo45;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism3ve/;1610351748;32;True;False;anime;t5_2qh22;;0;[]; -[];;;Lemon1412;;;[];;;;text;t2_3m3p3;False;True;[];;I don't think he wants anyone to feel sorry for him. He is just completely remorseful and wants to die. Remorseful for something he was manipulated into doing as a literal child.;False;False;;;;1610309775;;False;{};gism3vz;False;t3_kujurp;False;False;t1_gislx79;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism3vz/;1610351750;141;True;False;anime;t5_2qh22;;0;[]; -[];;;NemuNemuChan;;;[];;;;text;t2_36u9ttad;False;False;[];;Better than the capital raid;False;False;;;;1610309780;;False;{};gism49f;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism49f/;1610351755;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Radix3D;;;[];;;;text;t2_4pafckex;False;False;[];;"> I get what the king tried to do but I still fucking hate him. The past Eldians were shit but that doesn't give him the right to leave his people behind to be mistreated by the Marleyans and other races. - -That wasn't quite his intent. It's important to remember that Titan Shifters can only live for 13 years. Even if he tried everything he could to reform the Eldian Empire, there is only so much you can do in only 13 years, and after that, someone else will inherit the Founding Titan, and they could undo everything you did. The only realistic way to have brought an end to the Eldian Empire was to A.) Take out the holders of the other 8 Titans and give them to people sympathetic to the cause, and B.) Make sure the Founding Titan's power can never be used again. - -As Willy pointed out in this episode, the Founding Titan is immensely powerful. I think it's totally understandable why the king would have wanted to prevent it from ever being used again. That's liking allowing a single person in the entire world to have control of all the nukes on the planet, and the ability to launch them whenever they saw fit. That's a terrifying amount of power. I'm not surprised he took such drastic measures to ensure that could never happen.";False;False;;;;1610309786;;False;{};gism4q0;False;t3_kujurp;False;True;t1_gisfqbi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism4q0/;1610351762;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chineseouchie;;MAL;[];;http://myanimelist.net/animelist/ChineseOuchie;dark;text;t2_7ja1a;False;False;[];;I love the (little) detail in the background: https://i.imgur.com/yjDQIT0.png;False;False;;;;1610309792;;False;{};gism55v;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism55v/;1610351768;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SpaceMarine_CR;;;[];;;;text;t2_1la1dh3q;False;False;[];;"I dont consider Eren a hero anymore but Im still ""on his side""";False;False;;;;1610309796;;False;{};gism5gm;False;t3_kujurp;False;False;t1_gischn4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism5gm/;1610351773;59;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Cutler_Beckett;;;[];;;;text;t2_elnw3;False;False;[];;Only caution I would give you is it will make the wait for the eps more agonizing it did for me at least.;False;False;;;;1610309803;;False;{};gism5wa;False;t3_kujurp;False;True;t1_gisfhsp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism5wa/;1610351779;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HMP12;;;[];;;;text;t2_qbo9z;False;False;[];;Come back in 2022 or 2023 because final season this year is not the end of series.;False;False;;;;1610309804;;False;{};gism60h;False;t3_kujurp;False;True;t1_gisebvi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism60h/;1610351781;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kvbt7;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kvbt;light;text;t2_446n5ucc;False;False;[];;AoT is the GOAT anime.;False;False;;;;1610309805;;False;{};gism62t;False;t3_kujurp;False;False;t1_gisbfkv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism62t/;1610351782;36;True;False;anime;t5_2qh22;;0;[]; -[];;;magicalideal;;MAL;[];;https://myanimelist.net/profile/magicalideal;dark;text;t2_myqeu;False;False;[];;"There are so many things clarified in this episode but so many questions raised as well. How come Eren can release his Titan's power in the basement, I thought sunlight is required for Titan's power. - -How did King Fritz managed to have an army of Colossal Titans when it is said to only have one holder at once? - -Who is the Marleyan Soldier leading Pieck and Porco into the trap house? - -What is Eren planning to do now that he has come to an understanding of Reiner's position which is to help all the Eldians? - -What the hell is even happening. Why is Eren turning into a Titan in the middle of his enemy base? He is not afraid of the Marleyan having anti-titan cannon there?";False;False;;;;1610309810;;False;{};gism6gk;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism6gk/;1610351788;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;no you are incorrect actually, attacking a high-density army place with civilian casualties is ok in a war, it is not a war crime, it is actually the fault of the attacked for doing that;False;False;;;;1610309812;;False;{};gism6kh;False;t3_kujurp;False;False;t1_gish1en;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism6kh/;1610351789;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Chihiro9942;;;[];;;;text;t2_9egvhru4;False;False;[];;"&#x200B; - ->~~ONE OF~~ THE ~~FUCKING~~ GREATEST EPISODE~~S~~ ~~OF AOT ANIME!!!~~ -> ->FTFY - -FTFY";False;False;;;;1610309818;;False;{};gism719;False;t3_kujurp;False;False;t1_gisdhr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism719/;1610351796;40;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"Isayama: You see this guy? He's my favorite character :) - -Also Isayama: Watch how I'm going to traumatize him :)";False;False;;;;1610309822;;False;{};gism7bs;False;t3_kujurp;False;False;t1_gisgi6m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism7bs/;1610351800;15;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;"OH MY FUCKING GOD MY HEART WAS POUNDING THIS ENTIRE EPISODE. - -THAT FUCKING TRANSFORMATION OH MY GOD - -THANK YOU ISAYAMA YOU'RE A FUCKING GENIUS";False;False;;;;1610309827;;False;{};gism7qq;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism7qq/;1610351807;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ISmellTakenUsernames;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/gary_42;light;text;t2_52v4y6ia;False;False;[];;OH SHIT EREN WENT BAD OH NO;False;False;;;;1610309830;;False;{};gism7z9;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism7z9/;1610351810;6;True;False;anime;t5_2qh22;;0;[]; -[];;;SKP23en;;;[];;;;text;t2_j219l;False;False;[];;Now that's efficiency;False;False;;;;1610309832;;False;{};gism83i;False;t3_kujurp;False;False;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism83i/;1610351812;7;True;False;anime;t5_2qh22;;0;[]; -[];;;SilentCaveat;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RazorSharp;light;text;t2_6408fp9z;False;False;[];;I have muted AoT, Attack on Titan, Snk and everything else on twitter lol. And I don't even click on any other AoT related threads here as well;False;False;;;;1610309835;;False;{};gism8bo;False;t3_kujurp;False;False;t1_gisdxo0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism8bo/;1610351815;16;True;False;anime;t5_2qh22;;0;[]; -[];;;MrMindwaves;;;[];;;;text;t2_wh4au;False;False;[];;"And for the sake of debate, let's say you are my ennemy. -ok. -now, you would have to agree that you, being my ennemy, then need to be destroyed, am i not correct?";False;False;;;;1610309841;;False;{};gism8t6;False;t3_kujurp;False;False;t1_gisg9ty;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism8t6/;1610351822;29;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 125, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'When you come across a feel-good thing.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'icon_width': 2048, 'id': 'award_5f123e3d-4f48-42f4-9c11-e98b566d5897', 'is_enabled': True, 'is_new': False, 'name': 'Wholesome', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}, {'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 80, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Everything is better with a good hug', 'end_date': None, 'giver_coin_reward': 0, 'icon_format': 'PNG', 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png', 'icon_width': 2048, 'id': 'award_8352bdff-3e03-4189-8a08-82501dd8f835', 'is_enabled': True, 'is_new': False, 'name': 'Hugz', 'penny_donate': 0, 'penny_price': 0, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16&height=16&auto=webp&s=69997ace3ef4ffc099b81d774c2c8f1530602875', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32&height=32&auto=webp&s=e9519d1999ef9dce5c8a9f59369cb92f52d95319', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48&height=48&auto=webp&s=f076c6434fb2d2f9075991810fd845c40fa73fc6', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64&height=64&auto=webp&s=85527145e0c4b754306a30df29e584fd16187636', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128&height=128&auto=webp&s=b8843cdf82c3b741d7af057c14076dcd2621e811', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16&height=16&auto=webp&s=69997ace3ef4ffc099b81d774c2c8f1530602875', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32&height=32&auto=webp&s=e9519d1999ef9dce5c8a9f59369cb92f52d95319', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48&height=48&auto=webp&s=f076c6434fb2d2f9075991810fd845c40fa73fc6', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64&height=64&auto=webp&s=85527145e0c4b754306a30df29e584fd16187636', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128&height=128&auto=webp&s=b8843cdf82c3b741d7af057c14076dcd2621e811', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;yaminoidles;;;[];;;;text;t2_64rsavk;False;False;[];;"So I made this FAQ in /r/ShingekiNoKyojin to help anyone who wanted more clarification and have now updated it for this episode - -> **Who are the Eldians and Marleyans? Why are they at odds with each other?** - -Eldians, also known as Subjects of Ymir or Devils/Island Devils, are a race of people and the only race that can turn into Titans by injecting titan spinal fluid into them. Thus, are the only people that can wield the power of the 9 Titans. They appear to have European features and names. - -The Eldian Restorationists are a rebellion group who believe the Eldian empire did nothing wrong during their reign. In fact, they believe that Eldia helped develop the world. This information was deciphered from an old document by Grisha though he admitted that he hadn’t fully deciphered it. - -Marleyans are the ones responsible for the collapse of the Eldian Empire and obtained 7 out of the 9 Titans by subjugating the Eldians remaining on the mainland left by the King of the Walls. They currently control 5 Titans though the Warhammer is not used for military exploits. - -The Marleyans hatred towards the Eldians stem from the belief that the Eldian Empire had subjugated them during the 1700 years of their reign. In contrast, the Marleyans have been in power for the last century. According to the Marleyans, the Eldians had abused their power, forced them to bear their children, and committed genocide on an unfathomable scale. The Eldians under Marleyan rule believe this to be true or at least do not directly oppose this ‘history’ since they fear for their lives. - -Ymir Fritz is depicted as a goddess who created a miracle by the restorationists. - -Ymir Fritz is depicted as a person who made a deal with the Devil and created the Eldian Empire by the Marleyan authority. - -Some believe Ymir Fritz touched the source of all living matter. - -> **Who were the Eldian Restorationist?** - -Grisha was invited by Grice join the Eldian Restorationists and helped lead them to overthrow Marley. They intended to have Zeke become a Warrior to obtain a Titan, infiltrate the walls and acquire the Founding Titan for themselves. But Zeke betrayed them and sold out his parents. They were tortured for information and turned into Titans on Paradis. - -The Owl on his last legs saved Grisha and passed down his Titan. Grisha succeeded in acquiring the Founder Titan and passed it down to Eren on his last year after Shiganshina had been broken in by the Colossal. - -> **Who are the bad guys?** - -Depends on how far in the past you want to start from and from what perspective you look at. -There are some good Marleyans like the gate guards and bad Eldians both in Paradis and Marley. - -**Who/What are the 9 Titans? (In order of appearance) And the amount of years left** - -The power of the titans is passed down by consuming the previous holder, specifically the spinal cord. (Note they must be Eldians) - -Colossal is a 60m titan known for the devastation that happens upon transforming caused by releasing so much steam that it can blow everything away in the vicinity. It appears to be controllable considering this does not occur in S2E6 though only half of the titan manifested. - -Holders: Bertholdt Hoover-> Armin Arlert (9) - -Armoured is a 15m titan that is covered in hardened skin that is used primarily to take punishment and breaking walls. But due to the development of technology his armour has slowly been rendered useless. So now he is a slow-moving target in comparison to the other titans. - -Holders: Reiner Braun (2) - -Attack is a 15m titan that does not appear to have any special traits. Though, Eren can locally harden sections his body after consuming a bottle of fluid named armour. The rage mode in S1E25 is not a power. - -Holders: Eren Kruger (The Owl)-> Grisha Jaeger-> Eren Jaeger (4) - -Founding, also known as the Coordinate, is a 13m titan (only fully manifested individually by Freida) that has the most powerful ability of controlling all titans and manipulate the memories of Eldians. To some, it is the manifestation of a god. - -Holders: Ymir Fritz-> … -> Karl Fritz/145th King/First King of the Walls-> … -> Rod/Uri’s Father-> Uri Reiss -> Freida Reiss-> Grisha Jaeger-> Eren Jaeger (4) - -Female is a 14m titan that is commended for its versatility due to its ability to locally harden and call titans to mindlessly charge towards itself in a limited range. - -Holders: Annie Leonhart (2) - -Beast is a 17m titan that does appear to have any special trait besides its appearance. Zeke uses its long limbs to suppress the enemy by throwing objects from afar. (S/N Realistically throwing don’t benefit from longer limbs, humans are better than primates in that regard). Zeke has exhibited some degree of power similar to the Founding Titan due to his royal blood. He can remotely control the transformation of Eldians that have been drugged previously. Also, his titans are able to move at night. - -Holders: Zeke Jaeger (1) - -Jaw is a 5m titan that has claws and jaws that can easily destroy anything. Its small size allows it to manoeuvre nimbly. - -Holders: Marcel Galliard-> Ymir -> Porco Galliard (9) - -Cart is a 4m titan that is used for specialised tasks due to its ability to maintain its form for an incredible amount of time. To compare most shifters are only able to stay in their titan form for a couple of hours but in the war with the Middle East Alliance, the cart titan was able to maintain its form for about 2 months. - -Holders: Pieck (2) - -Warhammer is unknown at this point in time - -Holders: [Redacted] Tybur - -> **Who are the Warriors/Warrior Candidates? And their mission** - -Current: Zeke, Pieck, Reiner, Porco (He goes by Galliard for the most part) - -MIA: Annie - -Dead: Bertholdt, Marcel - -Successor: Colt - -Candidates: Gabi, Falco, Udo, Zofia - -It should be mentioned that the warriors’ mission to retake the founding titan is under the belief that the world is under the threat from the rumbling of the ‘millions’ of titans in the walls. So, by reclaiming the Founding titan, they will be saving the world. - -> **Why is Paradis so important to Marley?** - -To obtain the Founding Titan. See Royal Family/Blood. Also, there is a cache of fossil fuels in Paradis. - -> **Why is the Royal Family/Royal Blood so important?** - -The royal family are the direct descendants of Ymir Fritz that possesses the founding titan. The current royal family behind the walls changed their last name to Reiss and placed a figurehead on the throne. The only remaining royal blooded individuals are Historia Reiss and Zeke Yaeger. - -The power of the founding titan is so powerful that anyone that comes to possess it would be able to control all titans. To the Eldian Restorationists, this will allow them to overthrow Marley and re-establish an Eldian Empire. To Marley, this will allow them to maintain their status as a superpower in the world until they are able to advance their technology to the same level as other nations. - -According to Eren, if he is able to make contact with a titan with royal blood would allow him to manifest the power of the Founding Titan. (To add to this Eren has touched Historia many times but has never been able to control Titans). Due to being unsure of this information and the threat this will impose on Historia’s life Eren has decided to withhold this information. - -Those with royal blood are not immune to the Founding Titan (For some reason people assumed they were immune in S3) but are the only people to fully utilise the power of the Founding Titan. But due to the will of the First King they will become a pacifist and refuse to fight. (This was showcased with Uri and Freida) - -> **Who are the Tyburs? Why are they important? Why do they allow Marley to treat Eldians like trash?** - -The Tyburs and Helos were responsible for overthrowing of the Eldian Empire, establishing Marley rule. This establishes them as heroes and are respected by the world. Much like the royal family in Paradis, they remained neutral for the purpose of atonement and allowed Marley to act on its own. So, without the Tybur’s interference, Marley has become too war hungry of its own volition. - -The Tyburs and the Royal family appear to believe they need to seek ‘atonement’ for the past deeds of the Eldian empire as they refuse to partake in war. - -> **What is PATHs?** - -This is the power that connects all Eldians to the Founding titan, hence the name Coordinate, and is unaffected by space and time. It allows the users of the 9 Titans to manifest their titans instantly and recall memories from their previous holders. The true nature of PATHs is unknown. - -> **What is the curse of Ymir?** - -According to Eren, after obtaining the power of the Titans, no one can live longer than Ymir Fritz who died in 13 years upon receiving the powers. - -> **What are the Ackermans?** - -Ackermans appear to be superhumans and are special in that they are also not affected by the power of the Founding Titan despite having some sort of special connection to the Titans. - -Also, Ackermans are not Asian. Mikasa is half Asian from her mother’s side and half Ackerman from her father’s side. See S1E6. - -> **Other races in AOT?** - -In Kenny’s flashback they mentioned that there were several groups of families that were not affected by the memory wipe but only the Ackermans and Asians defied the King hence the culling of the Asians and Ackermans. In hindsight, we now know they were actually non Eldians. - -As seen in S4E4, there are many other races besides the Eldians and Marleyans. - -Some other notable named races are the ‘Easterners from Hizuru’ and the ‘Middle East Alliance’. (They were not specifically named so just make do with that) - -Ogweno and Nambia are the only named characters from other races. The asian lady made a more prominent appearance in S4E5";False;False;;;;1610309845;;False;{};gism93w;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism93w/;1610351828;476;True;False;anime;t5_2qh22;;2;[]; -[];;;comandoram;;;[];;;;text;t2_7979ne0;False;False;[];;Yes.;False;False;;;;1610309846;;False;{};gism96v;False;t3_kujurp;False;True;t1_giskj6c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism96v/;1610351829;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JimmyCWL;;;[];;;;text;t2_16ddjx;False;False;[];;Oh, he knew. He just didn't care that the world would eventually knock on the gates.;False;False;;;;1610309853;;False;{};gism9ml;False;t3_kujurp;False;False;t1_gisl0on;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism9ml/;1610351835;25;True;False;anime;t5_2qh22;;0;[]; -[];;;kvbt7;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kvbt;light;text;t2_446n5ucc;False;False;[];;This was amazing. Re:Zero bodied as per. This is the best anime...pause...in the world!;False;False;;;;1610309858;;False;{};gism9z8;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gism9z8/;1610351840;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;When he realized that the other side of the ocean wasn't freedom, he decided to make it that way. Let's goooo;False;False;;;;1610309871;;False;{};gismayb;False;t3_kujurp;False;False;t1_gisjmfu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismayb/;1610351854;5;True;False;anime;t5_2qh22;;0;[]; -[];;;yaminoidles;;;[];;;;text;t2_64rsavk;False;False;[];;"> **How is Eren not regenerating his leg and eyes?** - -In S2E6, Reiner healed himself after revealing himself implying they can control their healing. Annie was also able to control her healing factor by focusing it in one of her eyes in the episode where she killed Petra, Eld, Gunther and Oluo. - -> **What do the armbands’ colours mean?** - -Brown-Civilian, Grey-Soldier, Yellow-Warrior Candidate, Red- Honorary Marleyan - -> **What are honorary Marleyans?** - -They are Eldians that have been granted some privilege and higher status. The privilege includes being able to leave the internment zone. Not much else have been stated but we can assume there are additional perks. - -By becoming a holder of the 9 Titans, Marley will grant the warrior and their immediate family with honorary Marleyan status. The status does not get removed once the Titan term has ended. In the case of Gabi, Reiner and Gabi are cousins so she does not benefit from Reiner’s status whereas Falco will when his brother Colt receive the Beast Titan. - -> **Why don’t the Warriors try to overthrow Marley?** - -The reason why the warriors don’t just try to overthrow Marley despite their very poor treatment is because they are essentially protected by Marley. If Marley falls, the Eldians will have to fend for themselves against the military might of the entire world. Hence why they need the power of the Founding titan which is basically omnipotent to act as the deterrent until they can catch up in terms of technology. So basically, Marley/Eldian + Founding = Profit. - -Ironically, Marley is what prevents the Eldians from being disposed of. - -Propaganda, indoctrination and brainwashing play a huge role as well. - -> **How much time has passed?** - -4 years since Reiner and Zeke failed the mission to take the Founding Titan in “Return to Shiganshina” and 3 years since the ocean. - -> **Relationship between Eren and Zeke?** - -They are half siblings - -> **What did Magath and Tybur conversation in S4E4 mean?** - -The first conversation suggests that Helos is fake from Magath mentioning how the statue of Helos is hollow or empty. Magath also states that he believes Marley is on a path of destruction due to its hunger for war which is why he wants to establish a draft for Marleyans. This will force Marleyans to experience war firsthand and potentially stop Marley from continuing down the warpath. Willy admires Magath and offers to make him the new hero by putting him in command of the military. - -After a timeskip, we see Magath and Willy have another conversation pertaining to a demolition and a house full of rats. Then, Willy appoints Magath as the person in charge of the military. - -Now if we put in context of the military structure of Marley, we can surmise that the pillars were high ranking officers who they believe to be incompetent and were disposed of or removed from their position, but some proved useful and offered some information. According to them, there were some rats which imply that there are spies. This suggests they know about the infiltration by the Paradisians. - -> **Is Willy Tybur’s speech true in S4E5?** - -Everything he said is in fact everything we have been made aware of previously, just more compact. But now the world has been made into Paradis’ enemy by depicting Eren as the Usurper who took the power for himself. - -> **Common Misconceptions** - -Ackermans are not Asians - -Royal blooded individuals are not immune to the control of the Founding Titan as they are also Eldians - -The Founding Titan’s powers only affect Eldians hence why some people in the walls are not affected because they were not Eldians. It is not specific to Asians and Ackermans. - -Zeke turned on Grisha and Dina not Grisha’s father. - -Grisha’s father did his best to protect Grisha, no idea why people hate him so much. Had he tried to accuse the officer of killing Faye, they all would likely have died that day. - -Marley only had the power of the titans for 100 years after the Great Titan War. So, they only had a couple of generations of warriors. - -**Please leave some other questions that you would like to be made clear. I might make an update and post it in the discussion for the next episode.**";False;False;;;;1610309873;;False;{};gismb1y;False;t3_kujurp;False;False;t1_gism93w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismb1y/;1610351855;117;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Yeah a lot of people died when Annie fell on the church after getting punched by Eren.;False;False;;;;1610309879;;False;{};gismbic;False;t3_kujurp;False;False;t1_gislo45;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismbic/;1610351863;11;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610309881;;False;{};gismbnk;False;t3_kujurp;False;True;t1_gisboc1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismbnk/;1610351865;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;"I love how Eren just flat out said ""I'm a bad guy"". He acknowledges & completely understands everything he's doing. He's also said multiple times, ""I don't have a choice"". The parallels between him & Reiner are amazing.";False;False;;;;1610309882;;False;{};gismbpm;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismbpm/;1610351866;8;True;False;anime;t5_2qh22;;0;[]; -[];;;wubbzywylin;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kunmi21?status=7;light;text;t2_qy7hwoj;False;False;[];;"Damn thanks for this analysis, I didn't realize the ""keep moving forward"" applied to Reiner as well. - -He was the one that told Eren that originally right, during their time in the training corps he said that when he held out a hand and helped him up?";False;False;;;;1610309886;;False;{};gismbzn;False;t3_kujurp;False;False;t1_gisizez;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismbzn/;1610351870;64;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;"""I'm a bad guy"" - -AHHHHHH I LOVE YOU EREN";False;False;;;;1610309893;;False;{};gismchr;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismchr/;1610351876;4;True;False;anime;t5_2qh22;;0;[]; -[];;;bumbapoppa;;;[];;;;text;t2_53cmo78q;False;False;[];;eren ran into buildings and threw annie around lol;False;False;;;;1610309899;;False;{};gismcx7;False;t3_kujurp;False;False;t1_gism3ve;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismcx7/;1610351884;20;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;So we went from a cliffhanger to another cliffhanger.;False;False;;;;1610309901;;False;{};gismd4i;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismd4i/;1610351887;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Smittsauce;;;[];;;;text;t2_j8y7z;False;False;[];;"Giving supreme power to a propaganda infused child is definitely a bad thing. He has blood on his hands but he's not an evil character. - -I think Eren drove this home by repeating that they are the same: Living in a strange land, learning their preconceived notions are wrong, and about to kill a fuck ton of people.";False;False;;;;1610309905;;False;{};gismdf0;False;t3_kujurp;False;False;t1_gislx79;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismdf0/;1610351892;76;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;Yh he almost wanted all his people to be exterminated for the sins of their ancestors which is fucking insane;False;False;;;;1610309909;;False;{};gismdpb;False;t3_kujurp;False;False;t1_gism9ml;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismdpb/;1610351895;34;True;False;anime;t5_2qh22;;0;[]; -[];;;autumnsnowflake_;;;[];;;;text;t2_3gzioiqr;False;False;[];;Eren has finally transformed, Im so happy;False;False;;;;1610309913;;False;{};gismdxx;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismdxx/;1610351899;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MartinaS90;;;[];;;;text;t2_13onma;False;False;[];;It was the same in the manga. The problem is that manga readers hyped it, and by doing it, they spoiled it. In the moment they hyped it, it was pretty obvious while watching the episode that Eren was going to transform, otherwise why would have manga readers been hyping the episode? Because Eren was going to shake hands with Willy and sign peace? Hyping that something important happens in the episode equaled spoiling in this case.;False;False;;;;1610309914;;False;{};gisme1a;False;t3_kujurp;False;False;t1_gislk4f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisme1a/;1610351900;5;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;Felt bad for Willy for 2 seconds then went back to hating him;False;False;;;;1610309915;;False;{};gisme4q;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisme4q/;1610351902;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;cant wait to hear the hot takes in the part 2 lmao, it is going to be fun;False;False;;;;1610309919;;False;{};gismeg1;False;t3_kujurp;False;False;t1_gisddtv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismeg1/;1610351907;23;True;False;anime;t5_2qh22;;0;[]; -[];;;-Crux-;;;[];;;;text;t2_rum65;False;False;[];;Idk if it was intentional but I love [this](https://imgur.com/a/YjzWK87) little callback to Dina Fritz's transformation.;False;False;;;;1610309927;;False;{};gismf1p;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismf1p/;1610351916;398;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;Just because you disagree with people who hype things up doesn't mean you should call them braindead imo.;False;False;;;;1610309929;;False;{};gismf6d;False;t3_kujurp;False;False;t1_gisl4iy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismf6d/;1610351918;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sauike01;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sayukeroa;light;text;t2_1xl2a99x;False;False;[];;The episode was so good 😩;False;False;;;;1610309932;;False;{};gismfe6;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismfe6/;1610351921;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;you know the episode was amazing when there are haters;False;False;;;;1610309934;;False;{};gismfi2;False;t3_kujurp;False;False;t1_gisji3a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismfi2/;1610351923;16;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;Feels so good to see Reiner suffer. The only one I truly feel bad for is Falco. He genuinely trusted Eren. Eren has to do what he has to do though.;False;True;;comment score below threshold;;1610309947;;False;{};gismghr;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismghr/;1610351939;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;Alphora_;;;[];;;;text;t2_8qhd9l2g;False;False;[];;Don’t worry about it, manga readers were pretty unsure how they felt about the sudden change as well, but look where we are now lmao;False;False;;;;1610309947;;False;{};gismghz;False;t3_kujurp;False;False;t1_gisbw9m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismghz/;1610351939;10;True;False;anime;t5_2qh22;;0;[]; -[];;;PRIME2332;;;[];;;;text;t2_1b02twmu;False;False;[];;He actually saved him .. he knew he'd be safer with Reiner down there than up above with the rest after Eren is done with them.;False;False;;;;1610309951;;False;{};gismgrx;False;t3_kujurp;False;False;t1_gisk3tf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismgrx/;1610351943;309;True;False;anime;t5_2qh22;;0;[]; -[];;;MilkToastKing;;;[];;;;text;t2_13tvvu;False;False;[];;Gabi's war crime approved this message;False;False;;;;1610309952;;1610311510.0;{};gismgw8;False;t3_kujurp;False;False;t1_gisldmu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismgw8/;1610351945;562;True;False;anime;t5_2qh22;;0;[]; -[];;;Radix3D;;;[];;;;text;t2_4pafckex;False;False;[];;Yeah, it was Reiner that first told that to Eren.;False;False;;;;1610309952;;False;{};gismgwo;False;t3_kujurp;False;False;t1_gismbzn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismgwo/;1610351945;49;True;False;anime;t5_2qh22;;0;[]; -[];;;autumnsnowflake_;;;[];;;;text;t2_3gzioiqr;False;False;[];;that sad smile on Eren's face when he realised that he has no choice but to fight back because the war has been declared now...;False;False;;;;1610309955;;False;{};gismh3v;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismh3v/;1610351949;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Lemon1412;;;[];;;;text;t2_3m3p3;False;True;[];;Imagine if he just got so caught off-guard that he gets chomped and Eren just has the power now.;False;False;;;;1610309958;;False;{};gismhcb;False;t3_kujurp;False;False;t1_gishwyj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismhcb/;1610351952;42;True;False;anime;t5_2qh22;;0;[]; -[];;;comandoram;;;[];;;;text;t2_7979ne0;False;False;[];;There will be lot hype moments in middle of the season too, but the plot point which comes at the very end of this season is considered absolute peak of entire aot.;False;False;;;;1610309963;;False;{};gismhqj;False;t3_kujurp;False;False;t1_giskhci;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismhqj/;1610351960;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Orrakai;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Orrakai;light;text;t2_1dhaxo11;False;False;[];;"> A pretty big change from the bratty Eren from season 1 who shouted like all generic shonen Protagonists - -*WHEN I'M SHOWERING IN THE BLOOD OF ALL THE TITANS I MASSACRE,* ***THEY WILL KNOW THE NAME!!!***";False;False;;;;1610309968;;False;{};gismi47;False;t3_kujurp;False;False;t1_gisao83;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismi47/;1610351966;22;True;False;anime;t5_2qh22;;0;[]; -[];;;SpaceMarine_CR;;;[];;;;text;t2_1la1dh3q;False;False;[];;Yes to both;False;False;;;;1610309972;;False;{};gismidt;False;t3_kujurp;False;False;t1_gisgc8y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismidt/;1610351970;7;True;False;anime;t5_2qh22;;0;[]; -[];;;theregretmeter;;;[];;;;text;t2_m0jcsde;False;False;[];;"Oh yeah, in hindsight kind of bad that I did a little jump when he transformed and flung Willy into the air. - -Well RIP that family that appeared for that one scene.";False;False;;;;1610309974;;False;{};gismijm;False;t3_kujurp;False;False;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismijm/;1610351972;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Lemon1412;;;[];;;;text;t2_3m3p3;False;True;[];;Torrents.;False;False;;;;1610309974;;False;{};gismil9;False;t3_kujurp;False;False;t1_gishnmb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismil9/;1610351973;13;True;False;anime;t5_2qh22;;0;[]; -[];;;theeasyjakeoven;;;[];;;;text;t2_146ylg;False;False;[];;Same with funimation, I’m switching between both each minute to see which uploads first;False;False;;;;1610309976;;False;{};gismior;False;t3_kujurp;False;True;t1_gislwx7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismior/;1610351974;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Oxu90;;;[];;;;text;t2_yxh7y;False;False;[];;Reiner just cant get a break xD;False;False;;;;1610309978;;False;{};gismito;False;t3_kujurp;False;False;t1_giscr8m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismito/;1610351975;34;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;I don't think Reiner or Falco are dead. The trailer clearly shows both of them during the battle in Liberio.;False;False;;;;1610309978;;False;{};gismivf;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismivf/;1610351977;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610309991;;False;{};gismjum;False;t3_kujurp;False;True;t1_gismgw8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismjum/;1610351991;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"I mean, would he really be an AOT character if he didn't get a healthy dose of trauma? - -[](#yousaidsomethingdumb)";False;False;;;;1610309997;;False;{};gismkbk;False;t3_kujurp;False;False;t1_gise9k9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismkbk/;1610351999;25;True;False;anime;t5_2qh22;;0;[]; -[];;;SoMuchHatred;;;[];;;;text;t2_o15bh;False;False;[];;Just to clarify one point, it's never been implied that sunlight is necessary for Titan Shifters. Instead, most titans seemingly can't move at night - but there do seem to be exceptions. Zeke's titans, for whatever reason, were capable of that, as shown by the attack on Castle Utgard.;False;False;;;;1610310005;;False;{};gismkvp;False;t3_kujurp;False;False;t1_gism6gk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismkvp/;1610352007;10;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;"That confirms it. This is the single greatest anime ever created. Clap it up for Isayama. - -HOW IS EVERY SINGLE EPISODE BETTER THAN THE LAST? SERIOUSLY?";False;False;;;;1610310009;;False;{};gisml52;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisml52/;1610352010;99;True;False;anime;t5_2qh22;;0;[]; -[];;;ExpensiveLion;;;[];;;;text;t2_1cwd3mh4;False;False;[];;It’s episodes like these that make me wish AOT episodes were one hour long. The wait for the next episodes is already killing me.;False;False;;;;1610310012;;False;{};gismle4;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismle4/;1610352014;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610310015;;False;{};gismlm9;False;t3_kujurp;False;True;t1_gislx79;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismlm9/;1610352017;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DJ-Adios;;;[];;;;text;t2_5em8kiz2;False;False;[];;"LET'S FUUUUUUUUCKING GOOOOOOOOOOOOO! - -Dude the post episode stuff look of eren's titan face was amazing. - -""In response to this atrocity, Eren is judged by the hammer of war..."" This line was sick.";False;False;;;;1610310017;;False;{};gismlp9;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismlp9/;1610352018;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThisIsMyNameOnly;;;[];;;;text;t2_37lxvl9o;False;False;[];;Let's be clear, the only reason the peaceful ideology of King Fritz died was because of the Marley invasion. It's funny how this is being framed as if this war was not a direct consequence of the actions of Marley (which makes sense since they're trying to unite all countries behind them).;False;False;;;;1610310025;;False;{};gismmem;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismmem/;1610352029;9;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;He failed since people sympathetic towards his cause turned on his people. Also he knew that one day they will come knocking down the gates. He said he is fine with it since they deserved it for the actions of their ancestors which is complete bullshit;False;False;;;;1610310029;;False;{};gismmpp;False;t3_kujurp;False;True;t1_gism4q0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismmpp/;1610352033;2;True;False;anime;t5_2qh22;;0;[]; -[];;;savyprive;;;[];;;;text;t2_3gum67sh;False;False;[];;HYPPEE MY SOLDIERSS;False;False;;;;1610310033;;False;{};gismn1f;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismn1f/;1610352037;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wintermuteprime;;;[];;;;text;t2_37k4z;False;False;[];;"Willy: I declare wa- - -Eren: So anyways, I started blastin'.";False;False;;;;1610310040;;False;{};gismnlh;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismnlh/;1610352047;324;True;False;anime;t5_2qh22;;0;[]; -[];;;Neronoah;;;[];;;;text;t2_igav3;False;False;[];;It doesn't feel justified.;False;False;;;;1610310052;;False;{};gismoib;False;t3_kujurp;False;True;t1_gisk0ps;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismoib/;1610352061;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Radix3D;;;[];;;;text;t2_4pafckex;False;False;[];;"> I thought sunlight is required for Titan's power. - -Sunlight is necessary for mindless Titans to energize themselves. Without receiving sunlight for a certain amount of time, they slowly become more lethargic until they basically fall asleep.";False;False;;;;1610310067;;False;{};gismpp3;False;t3_kujurp;False;False;t1_gism6gk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismpp3/;1610352079;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Neronoah;;;[];;;;text;t2_igav3;False;False;[];;Civilians die, but in this case it seems that it's not worth it.;False;False;;;;1610310070;;False;{};gismpw9;False;t3_kujurp;False;False;t1_giskvyz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismpw9/;1610352082;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Anon_64;;;[];;;;text;t2_lw5ep;False;False;[];;And yet there is a thread filled with people who have watched it.;False;False;;;;1610310083;;False;{};gismqxz;False;t3_kujurp;False;True;t1_gislg8j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismqxz/;1610352099;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kikoano;;;[];;;;text;t2_4nk3h;False;False;[];;Kill them all Eren they are not on our side! They are enemy! /s;False;False;;;;1610310087;;False;{};gismral;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismral/;1610352104;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lemon1412;;;[];;;;text;t2_3m3p3;False;True;[];;**BREAKING NEWS: Pun-creating Reddit user has figured out that Willy is short for William**;False;False;;;;1610310093;;False;{};gismrr4;False;t3_kujurp;False;False;t1_gisek9j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismrr4/;1610352111;9;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610310097;;False;{};gisms1f;False;t3_kujurp;False;True;t1_gismjum;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisms1f/;1610352116;1;True;False;anime;t5_2qh22;;0;[]; -[];;;autumnsnowflake_;;;[];;;;text;t2_3gzioiqr;False;False;[];;the tension was so strong;False;False;;;;1610310101;;False;{};gismscf;False;t3_kujurp;False;False;t1_gisc1bn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismscf/;1610352120;4;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;We will have to wait and see;False;False;;;;1610310104;;False;{};gismsmn;False;t3_kujurp;False;True;t1_gismpw9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismsmn/;1610352125;4;True;False;anime;t5_2qh22;;0;[]; -[];;;poorpuck;;;[];;;;text;t2_ltflx3g;False;False;[];;">You don't get to genocide hundreds of thousands of civilians - -You do realise why Eren has been constantly repeating ""I'm the same as you""";False;False;;;;1610310105;;False;{};gismsov;False;t3_kujurp;False;False;t1_gislx79;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismsov/;1610352126;83;True;False;anime;t5_2qh22;;0;[]; -[];;;Chihiro9942;;;[];;;;text;t2_9egvhru4;False;False;[];;23k+;False;False;;;;1610310112;;False;{};gismt8k;False;t3_kujurp;False;True;t1_giscepb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismt8k/;1610352134;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;Sign of some great writing and direction right there.;False;False;;;;1610310113;;False;{};gismt8o;False;t3_kujurp;False;False;t1_gisc1bn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismt8o/;1610352134;4;True;False;anime;t5_2qh22;;0;[]; -[];;;propinquity26;;;[];;;;text;t2_bsqdg0l;False;False;[];;assuming he survived erens attack;False;False;;;;1610310114;;False;{};gismtd5;False;t3_kujurp;False;False;t1_gise9k9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismtd5/;1610352136;31;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610310116;;False;{};gismtip;False;t3_kujurp;False;True;t1_gisir3r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismtip/;1610352138;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wubbzywylin;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kunmi21?status=7;light;text;t2_qy7hwoj;False;False;[];;*chuckles* I'm in danger;False;False;;;;1610310121;;False;{};gismtwm;False;t3_kujurp;False;False;t1_gisbgr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismtwm/;1610352144;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610310125;;False;{};gismu81;False;t3_kujurp;False;True;t1_gisms1f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismu81/;1610352150;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;Oh shit, I didn't catch that. That's *so* cool!;False;False;;;;1610310127;;False;{};gismubg;False;t3_kujurp;False;False;t1_gismf1p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismubg/;1610352151;76;True;False;anime;t5_2qh22;;0;[]; -[];;;dkaran_0102;;;[];;;;text;t2_7u3nnrtm;False;False;[];;Just keep moving forward until all your questions are answered.;False;False;;;;1610310138;;False;{};gismv6q;False;t3_kujurp;False;True;t1_gism6gk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismv6q/;1610352164;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;Europeans also get to watch the new episodes two hours before it comes out on US Crunchyroll;False;False;;;;1610310141;;False;{};gismveh;False;t3_kujurp;False;False;t1_gisdokm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismveh/;1610352166;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kerms_;;;[];;;;text;t2_5cll7mtr;False;True;[];;Somebody always has to ruin everything man. Leave serious politics out of it and go with the meme like shapiro even does himself;False;False;;;;1610310158;;False;{};gismwkz;False;t3_kujurp;False;False;t1_gisjkv0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismwkz/;1610352185;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;Yep, there's actual meaning behind the actions. People aren't being evil for the sake being evil or virtuous because they have to fill a role.;False;False;;;;1610310162;;False;{};gismwvb;False;t3_kujurp;False;False;t1_gishl8w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismwvb/;1610352190;45;True;False;anime;t5_2qh22;;0;[]; -[];;;alphd14;;;[];;;;text;t2_70g3wfyi;False;False;[];;"Curious about that soldier(/Armin)’s intent in separating Zeke from Pieck/Galliard, aside from making those two easier to trap. - -Since Zeke has royal blood, keeping him around for Eren to activate his coordinate powers may be part of their strategy(?)";False;False;;;;1610310165;;False;{};gismx3l;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismx3l/;1610352194;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BipolarBear123;;;[];;;;text;t2_sup4b;False;False;[];;This episode was amazing.;False;False;;;;1610310178;;False;{};gismy4l;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismy4l/;1610352209;3;True;False;anime;t5_2qh22;;0;[]; -[];;;evilresurgence4;;;[];;;;text;t2_3hd7gero;False;False;[];;Eren with that dream luck;False;False;;;;1610310180;;False;{};gismy91;False;t3_kujurp;False;False;t1_gisax64;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismy91/;1610352211;9;True;False;anime;t5_2qh22;;0;[]; -[];;;krfz41;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/krfz41/;light;text;t2_dojxn;False;False;[];;Goosebumps throughout the episode. The voice acting, the buildup... It was perfect.;False;False;;;;1610310183;;False;{};gismyhp;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismyhp/;1610352215;8;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;There are also legal streaming services that get it hours before Crunchy, just not in the Americas.;False;False;;;;1610310185;;False;{};gismyn1;False;t3_kujurp;False;True;t1_gisjinl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gismyn1/;1610352217;1;True;False;anime;t5_2qh22;;0;[]; -[];;;imadethistoshitpostt;;;[];;;;text;t2_z6c22;False;False;[];;Luckily he has a 15 second life expectancy at this point.;False;False;;;;1610310212;;False;{};gisn0nr;False;t3_kujurp;False;False;t1_gise9k9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisn0nr/;1610352246;14;True;False;anime;t5_2qh22;;0;[]; -[];;;XIIISkies;;;[];;;;text;t2_p0bqb;False;False;[];;Tbf, manga readers are hyping the shit out of upcoming events, plus all these cliffhangers arent good for any of our hearts;False;False;;;;1610310214;;False;{};gisn0uv;False;t3_kujurp;False;False;t1_gisfvmg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisn0uv/;1610352249;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Radix3D;;;[];;;;text;t2_4pafckex;False;False;[];;What do you mean he failed? His goal was to put an end to the Eldian Empire, and he did just that.;False;False;;;;1610310217;;False;{};gisn13c;False;t3_kujurp;False;True;t1_gismmpp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisn13c/;1610352252;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SteadyShift;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_hbgor;False;False;[];;awe;False;False;;;;1610310223;;False;{};gisn1hh;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisn1hh/;1610352258;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DisastrousGrowth5;;;[];;;;text;t2_5spvfzc2;False;False;[];;"How the fuck has everyone and their mother watched this episode before it shows up on Crunchyroll for me? - -Is funimation faster or are you watching it on the ""seas""?";False;False;;;;1610310236;;False;{};gisn2gx;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisn2gx/;1610352273;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Exorrt;;;[];;;;text;t2_nph66;False;False;[];;"I AM THROBBING -THROBBING";False;False;;;;1610310241;;False;{};gisn2si;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisn2si/;1610352278;11;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;well, for now, since as far as i know aot hasnt ended yet in manga form;False;False;;;;1610310254;;False;{};gisn3sq;False;t3_kujurp;False;True;t1_gismhqj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisn3sq/;1610352294;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dkaran_0102;;;[];;;;text;t2_7u3nnrtm;False;False;[];;I think ep15 and ep16 would be peak attack on titan.;False;False;;;;1610310255;;False;{};gisn3vv;False;t3_kujurp;False;True;t1_gisltn1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisn3vv/;1610352295;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kikoano;;;[];;;;text;t2_4nk3h;False;False;[];;Keep moving forward until ALL enemies are destroyed!;False;False;;;;1610310269;;False;{};gisn4x7;False;t3_kujurp;False;True;t1_gisadib;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisn4x7/;1610352309;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;The madman planned out even the plot of our world.;False;False;;;;1610310271;;False;{};gisn50w;False;t3_kujurp;False;False;t1_gisfgrb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisn50w/;1610352311;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Radix3D;;;[];;;;text;t2_4pafckex;False;False;[];;"> Gabi could learn a thing or two about laws of war from Eren. - -Yeah, like killing tons of civilians in a populated area.....oh, wait.";False;False;;;;1610310273;;False;{};gisn579;False;t3_kujurp;False;False;t1_gislhg0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisn579/;1610352314;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinsekai21;;;[];;;;text;t2_10od0m;False;False;[];;"Yup -Especially when Reiner asked him if he came to ""make sure Reiner die the most painful death"" and Eren was like: ""oh did I say that. Pls forget that"". - -Comparing this Eren to Season 1 and Season 2 Eren, damn what a change.";False;False;;;;1610310280;;False;{};gisn5pf;False;t3_kujurp;False;False;t1_gisai6n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisn5pf/;1610352322;62;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610310304;;False;{};gisn7h3;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisn7h3/;1610352349;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ThisIsMyNameOnly;;;[];;;;text;t2_37lxvl9o;False;False;[];;"I guess they're similar in their resolve to complete their mission, but in terms of justification, I don't see how anyone can side with Marley especially after this speech. They basically woke up a bear who said ""yo I wanna sleep leave me alone"" (to be fair the bear also apparently gave permission) but in no way are they the victims when they're the ones declaring war.";False;False;;;;1610310308;;False;{};gisn7t1;False;t3_kujurp;False;False;t1_gisadji;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisn7t1/;1610352354;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Justified_Eren;;;[];;;;text;t2_28tyuzkt;False;False;[];;"> Dude just straight up made a terrorist attack now, - -Sorry, but it wasn't a terrorist attack. It happened **after** Willy declared war on the island. Civilians most likely were killed during his transformation, so it was more like a war crime.";False;False;;;;1610310312;;False;{};gisn831;False;t3_kujurp;False;False;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisn831/;1610352358;50;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;I am wrong in the sense that I assumed he wanted to protect the people inside the walls, which he didn't want to do. He wanted all the Eldians perished for the sins of their ancestors. Still hate him regardless;False;False;;;;1610310318;;False;{};gisn8ji;False;t3_kujurp;False;True;t1_gisn13c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisn8ji/;1610352365;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Exorrt;;;[];;;;text;t2_nph66;False;False;[];;"Eren: ""we're the same"" -Reiner: ""How?"" -Eren: ""I'm going to kill your mom""";False;False;;;;1610310319;;False;{};gisn8ln;False;t3_kujurp;False;False;t1_gisadib;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisn8ln/;1610352366;43;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Reiner was probably shook when Eren said the same words he once said to him.;False;False;;;;1610310322;;False;{};gisn8ts;False;t3_kujurp;False;False;t1_gisd65h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisn8ts/;1610352369;22;True;False;anime;t5_2qh22;;0;[]; -[];;;KangKrizzle;;;[];;;;text;t2_48j6s5ns;False;False;[];;Can someone tell me who Pieck recognized without spoiling too much? It has to he someone from the island right?;False;False;;;;1610310330;;False;{};gisn9df;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisn9df/;1610352378;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Forward-Preparation7;;;[];;;;text;t2_655f3f1q;False;False;[];;Is it live on CrunchyRoll yet?;False;False;;;;1610310339;;False;{};gisna1b;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisna1b/;1610352388;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Economy_Detective943;;;[];;;;text;t2_3ovs9y8d;False;False;[];;Isayama: I will make you sing that word(greatest) to me.;False;False;;;;1610310345;;False;{};gisnafo;False;t3_kujurp;False;False;t1_gisbj8o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnafo/;1610352394;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Perrenekton;;;[];;;;text;t2_q18f1;False;False;[];;Can someone explain me without manga spoiler (don't know if its possible) if Eren is able to yield the Founding Titan power ? (whatever that is) I'm pretty sure we were told in season 3 that only the Fritz family could use it, but here we are told the contrary. Was it just a lie by Willy to justify the war ?;False;False;;;;1610310358;;False;{};gisnbhi;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnbhi/;1610352411;5;True;False;anime;t5_2qh22;;0;[]; -[];;;redlaWw;;;[];;;;text;t2_9wwod;False;False;[];;^((and a titan)^);False;False;;;;1610310359;;False;{};gisnbjg;False;t3_kujurp;False;True;t1_gisahuh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnbjg/;1610352412;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheGaige;;;[];;;;text;t2_vqwzn;False;False;[];;"The tension at the end of the episode was so intense. - -&#x200B; - -Everything came together perfectly. The music, the speech from Willy and Eren, and the animation. Just perfect. Im glad to see this chapter finally in the anime!";False;False;;;;1610310384;;False;{};gisnddy;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnddy/;1610352441;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MartinaS90;;;[];;;;text;t2_13onma;False;False;[];;I think Founding Titan eyes are the purple ones, Eren's here looked different.;False;False;;;;1610310390;;False;{};gisnduu;False;t3_kujurp;False;True;t1_gisiq8m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnduu/;1610352448;1;True;False;anime;t5_2qh22;;0;[]; -[];;;brownguy6391;;;[];;;;text;t2_3et2u982;False;False;[];;Chat disabled for 10 seconds;False;False;;;;1610310393;;False;{};gisne2m;False;t3_kujurp;False;False;t1_gisljg0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisne2m/;1610352451;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Well he IS a Yeager after all.;False;False;;;;1610310393;;False;{};gisne2r;False;t3_kujurp;False;False;t1_gisgk85;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisne2r/;1610352451;27;True;False;anime;t5_2qh22;;0;[]; -[];;;spaghetti_freak;;;[];;;;text;t2_fv67w;False;False;[];;"this is a dangerous mindset that takes away responsibility from anyone. just like nazi soldiers were just ""following orders"" something that plays a part sure but it's still you who's doing a massacre";False;False;;;;1610310412;;False;{};gisnfjh;False;t3_kujurp;False;False;t1_gisgwq8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnfjh/;1610352472;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Biestonaut;;;[];;;;text;t2_107c9750;False;False;[];;"\>Eren Kruger remembered this";False;False;;;;1610310414;;False;{};gisnfox;False;t3_kujurp;False;False;t1_giscq7t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnfox/;1610352474;5;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;Only Reiner? So you weren't sweating buckets during their exchange?;False;False;;;;1610310417;;False;{};gisnfus;False;t3_kujurp;False;False;t1_gisbtzy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnfus/;1610352477;31;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;The seas. Unfortunately for you and anyone who prefers watching stuff legally, this sub posts discussion threads whenever English subs are available first regardless of whether they're official or not, and DameDesuYo is faster at subbing.;False;False;;;;1610310417;;False;{};gisnfvv;False;t3_kujurp;False;False;t1_gisn2gx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnfvv/;1610352477;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Lemon1412;;;[];;;;text;t2_3m3p3;False;True;[];;"""I'm talking to you, kid. Are you gonna pay for this pizza or not?""";False;False;;;;1610310424;;False;{};gisnge1;False;t3_kujurp;False;False;t1_gisgdk6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnge1/;1610352484;30;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptainSmeg;;;[];;;;text;t2_ellktms;False;False;[];;The tension and build up was amazing holy shit.;False;False;;;;1610310428;;False;{};gisngpu;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisngpu/;1610352489;6;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;Only in AOT this is not pornography;False;False;;;;1610310436;;False;{};gisnh8s;False;t3_kujurp;False;False;t1_gism1ur;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnh8s/;1610352497;22;True;False;anime;t5_2qh22;;0;[]; -[];;;pisapfa;;;[];;;;text;t2_26jx39;False;False;[];;Do you believe Grisha Jeager did not possess the resolve to acquire the Founding Titan if it weren't for Marley's infiltration?;False;False;;;;1610310439;;False;{};gisnhgr;False;t3_kujurp;False;False;t1_gismmem;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnhgr/;1610352500;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Yogurtgamer;;;[];;;;text;t2_fh0ve;False;False;[];;Dat Eren slow mo;False;False;;;;1610310440;;False;{};gisnhkf;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnhkf/;1610352503;1;True;False;anime;t5_2qh22;;0;[]; -[];;;daddydullahh;;;[];;;;text;t2_31bumh1o;False;False;[];;The army of colossal Titans are mindless, unlike Bertholdt and Armin who are Colossal Titan shifters. It’s basically like making a bunch of mindless pure Titans it’s just that they’re that size. The rest of your questions will be answered in the upcoming episodes and some of them can’t be figured out as of now you’ll just have to wait.;False;False;;;;1610310456;;False;{};gisniql;False;t3_kujurp;False;False;t1_gism6gk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisniql/;1610352521;6;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;"I have friends who get high, I never plan on trying drugs or smoking, because I fully believe nothing can beat this high I felt while watching this. - -The tension as Eren sat there holding an entire building of innocent Eldians above him, keeping Reiner and Falco trapped. I jumped out of my chair at seeing who I believe to be Armin leading Pieck and Galliard into a trap. Zeke's location is still unknown, there's still a mystery with Eren receiving the baseball glove. - -And then the ending of the episode. I want more, so much more. I know I could read the manga but it would not be as satisfying. - -I want to much more. I love this show.";False;False;;;;1610310458;;False;{};gisniwz;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisniwz/;1610352524;17;True;False;anime;t5_2qh22;;0;[]; -[];;;autumnsnowflake_;;;[];;;;text;t2_3gzioiqr;False;False;[];;Poor Reiner, he really is so traumatised and full of lingering guilt;False;False;;;;1610310459;;False;{};gisnizs;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnizs/;1610352525;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MartinaS90;;;[];;;;text;t2_13onma;False;False;[];;She did but he was carbonized on a rooftop lol;False;False;;;;1610310461;;False;{};gisnj3i;False;t3_kujurp;False;False;t1_gisis91;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnj3i/;1610352527;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ProgyanDeka;;;[];;;;text;t2_4uhq9dff;False;False;[];;Well about that. Haha. *Chuckles in nervousness*;False;False;;;;1610310462;;False;{};gisnj6n;False;t3_kujurp;False;False;t1_giskizo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnj6n/;1610352528;5;True;False;anime;t5_2qh22;;0;[]; -[];;;TatteredTongues;;;[];;;;text;t2_xbrbp;False;False;[];;You already saw Eren using it at the end of Season 2, when he commanded all the Titans, so can he? Yes, under specific circumstances as we've come to learn (end of S3).;False;False;;;;1610310475;;False;{};gisnk5y;False;t3_kujurp;False;False;t1_gisnbhi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnk5y/;1610352544;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Aozora_KN;;;[];;;;text;t2_2lz5eze3;False;False;[];;Not much action but even the moment when Reiner and Eren were silent the tension was just crazy through out the whole episode.....;False;False;;;;1610310476;;False;{};gisnk6h;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnk6h/;1610352544;10;True;False;anime;t5_2qh22;;0;[]; -[];;;autumnsnowflake_;;;[];;;;text;t2_3gzioiqr;False;False;[];;Eren's deep and calm voice is making me feel things;False;False;;;;1610310481;;False;{};gisnkjm;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnkjm/;1610352550;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;"That was some Ledger Joker-level threat. - -""Ack, ack, ack see my bleeding hand? Wouldn't want to kill every sweet innocent up there would we? So why don't you have a seat and let's listen to a little story."" - -*Proceeds to kill the innocents anyway ^after ^he ^got ^the ^Go ^sign*";False;False;;;;1610310481;;1610323321.0;{};gisnkkb;False;t3_kujurp;False;False;t1_giseo6c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnkkb/;1610352550;378;True;False;anime;t5_2qh22;;0;[]; -[];;;guardianultra;;;[];;;;text;t2_2ftilgaq;False;False;[];;"After saying ""were the same"" - - -Eren went: Sike";False;False;;;;1610310485;;False;{};gisnkug;False;t3_kujurp;False;True;t1_gisadib;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnkug/;1610352554;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZackDB201;;;[];;;;text;t2_1sxfbwvn;False;False;[];;eren was able to use when he touched dina (a titan with royal blood) so eren can only use the founding titan power if he was touching a titan with royal blood;False;False;;;;1610310488;;False;{};gisnl4e;False;t3_kujurp;False;True;t1_gisnbhi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnl4e/;1610352559;2;True;False;anime;t5_2qh22;;0;[]; -[];;;double_super;;MAL;[];;http://myanimelist.net/profile/techchase;dark;text;t2_in14n;False;False;[];;He doesn't care much for his personal well being, his face is because he is scared for falco;False;False;;;;1610310492;;False;{};gisnleb;False;t3_kujurp;False;False;t1_gisd4wn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnleb/;1610352563;29;True;False;anime;t5_2qh22;;0;[]; -[];;;Izanagi___;;;[];;;;text;t2_6wmop5vl;False;False;[];;Eren's voice actor is incredible;False;False;;;;1610310495;;False;{};gisnlm1;False;t3_kujurp;False;False;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnlm1/;1610352568;11;True;False;anime;t5_2qh22;;0;[]; -[];;;LaPusca;;;[];;;;text;t2_hjxst;False;False;[];;So ready for Attack on Titan: Total War;False;False;;;;1610310508;;False;{};gisnmhy;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnmhy/;1610352580;3;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;Lolllll;False;False;;;;1610310515;;False;{};gisnn1c;False;t3_kujurp;False;False;t1_gisbtzy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnn1c/;1610352589;6;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;"""I have no choice"". I love him so much";False;False;;;;1610310519;;False;{};gisnnbd;False;t3_kujurp;False;True;t1_gismayb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnnbd/;1610352593;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PRIME2332;;;[];;;;text;t2_1b02twmu;False;False;[];;Don't get me wrong, my ass is legit ruined from how hard I was clenching in suspense.;False;False;;;;1610310527;;False;{};gisnnv9;False;t3_kujurp;False;False;t1_gisnfus;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnnv9/;1610352602;38;True;False;anime;t5_2qh22;;0;[]; -[];;;ClassicPart;;;[];;;;text;t2_242qrepw;False;False;[];;"Too late. Already dickheads in this very subthread saying ""LOL episode 5 is old news, just wait for episode X br0.""";False;False;;;;1610310536;;False;{};gisnoi5;False;t3_kujurp;False;False;t1_gish5tu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnoi5/;1610352612;9;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;"We've seen him use it at least once before (at the end of Season 2). At the end of Season 3 he comes to the conclusion he can probably use it if he's touching a Titan with Royal Blood, but he didn't tell anyone about this revelation. Who knows what he's been up to during the timeskip. - -Willy fears that they might find a way to use it somehow.";False;False;;;;1610310538;;False;{};gisnoo7;False;t3_kujurp;False;False;t1_gisnbhi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnoo7/;1610352615;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RekklesCami;;;[];;;;text;t2_3ozyz0ye;False;False;[];;It was at this moment Falco knew...he fucked up;False;False;;;;1610310546;;False;{};gisnp98;False;t3_kujurp;False;False;t1_giscnq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnp98/;1610352623;52;True;False;anime;t5_2qh22;;0;[]; -[];;;brownguy6391;;;[];;;;text;t2_3et2u982;False;False;[];;I don't really think declaring war is really waving a white flag but I get what you're saying;False;False;;;;1610310549;;False;{};gisnphl;False;t3_kujurp;False;True;t1_gislhju;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnphl/;1610352627;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;jebbush1212;;;[];;;;text;t2_y3f8v1y;False;False;[];;Eren really just blew up an entire apartment complex full of families to prove a point;False;False;;;;1610310553;;False;{};gisnpsu;False;t3_kujurp;False;False;t1_gisagr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnpsu/;1610352632;54;True;False;anime;t5_2qh22;;0;[]; -[];;;WarBlaster;;;[];;;;text;t2_523l3ng0;False;False;[];;Damn;False;False;;;;1610310571;;False;{};gisnr2m;False;t3_kujurp;False;False;t1_gismf1p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnr2m/;1610352651;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Exorrt;;;[];;;;text;t2_nph66;False;False;[];;This episode was 20 straight minutes of pure Reiner suffering and it was just the best thing;False;False;;;;1610310571;;False;{};gisnr2o;False;t3_kujurp;False;False;t1_gisaihi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnr2o/;1610352651;4;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;Never had a series make my heart pound the entire time.;False;False;;;;1610310577;;False;{};gisnrlo;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnrlo/;1610352659;6;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;It was funny af.;False;False;;;;1610310592;;False;{};gisnsqb;False;t3_kujurp;False;True;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnsqb/;1610352677;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SoMuchHatred;;;[];;;;text;t2_o15bh;False;False;[];;"As explained last season, there is a way for Eren to use the Founding Titan's power - if he's in contact with a Royal Blooded Titan, like Dina's Smiling Titan, then the power seems to be unlocked. Obviously he demonstrated that back during the final episodes of Season 2. - -That said, Marley doesn't necessarily have all the details regarding that, unlike Eren himself. All they really know for certain is that Eren did use the Coordinate on that occasion - it's very possible the 'how' of that is still eluding them.";False;False;;;;1610310595;;False;{};gisnswy;False;t3_kujurp;False;True;t1_gisnbhi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnswy/;1610352680;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tony_tony_tony_tony;;MAL;[];;http://myanimelist.net/profile/talili24;dark;text;t2_kmujc;False;False;[];;This is only the beginning of chadren;False;False;;;;1610310600;;False;{};gisntbs;False;t3_kujurp;False;True;t1_gisgmw9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisntbs/;1610352686;2;True;False;anime;t5_2qh22;;0;[];True -[];;;fridge_freezer;;;[];;;;text;t2_gqsfu;False;False;[];;"Fucking incredible episode, I don't even know where to begin. I was shaking through parts of it, the whole buildup is insanely tense. - -Willy's speech and the whole theater production was amazing, all the visuals with the brass and strings in the first half and perfect use of XL:TT in the second. Eren & Reiner's conversation was amazing too, Reiner completely broke down and poor Falco could only watch as he realised what he's done. I really hope they both survived Eren's transformation. Speaking of, the Attack Titan looks even more terrifying than before, and he just annhilated a residential building full of Eldians. Who was the hero of AOT again? - -Nice to see Annie's dad again, still with the bad leg she gave him in training. Also, that tall blond soldier who trapped Pieck and Porco was Armin, right? Marley is pretty fucked if the Colossal Titan is in Liberio. - -So the woman who covered for Udo last ep is called Kiyomi Azumabito. Her words to Willy and leaving right before the show started is a little suspect, I wonder if she's one of the allies that Eren referred to? Magath also previously alluded to there being 'rats in the house' and mentioned needing a demolition so they must have been anticipating something to happen. Did they choose the internment zone as the place of declaration so that if there was an attack, it would be mostly Eldians killed?";False;False;;;;1610310609;;False;{};gisnu1j;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnu1j/;1610352697;24;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;Even that only occurred since Marley was shipping Eldians to Paradis to turn them into Titans. And it's not like Marley was exactly aware of Grisha. They announced their plans to attack long before that.;False;False;;;;1610310626;;False;{};gisnvda;False;t3_kujurp;False;False;t1_gisnhgr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnvda/;1610352717;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Perrenekton;;;[];;;;text;t2_q18f1;False;False;[];;">He is no longer the emotional kid fueled by revenge - -Well, now he is a depressed adult fueled by revenge tho";False;False;;;;1610310637;;False;{};gisnw8y;False;t3_kujurp;False;False;t1_gisib46;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnw8y/;1610352731;21;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610310651;;False;{};gisnxav;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnxav/;1610352747;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Neverx_13;;;[];;;;text;t2_8708yf9;False;False;[];;Just a joke, normally on these super hyped up anime episodes people always joke about how anime was saved.;False;False;;;;1610310655;;False;{};gisnxne;False;t3_kujurp;False;False;t1_gisivsj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnxne/;1610352752;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Rydahx;;;[];;;;text;t2_417rdm0s;False;False;[];;For me it is the greatest, no other anime comes close when it comes to hype.;False;False;;;;1610310656;;False;{};gisnxpk;False;t3_kujurp;False;False;t1_gisbfkv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnxpk/;1610352753;19;True;False;anime;t5_2qh22;;0;[]; -[];;;RenPaulable;;;[];;;;text;t2_e6wnyfy;False;False;[];;yes Willy lied;False;False;;;;1610310658;;False;{};gisnxvc;False;t3_kujurp;False;False;t1_gisnbhi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnxvc/;1610352756;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Zellough;;;[];;;;text;t2_f1xd1;False;False;[];;They just keep moving forward;False;False;;;;1610310659;;False;{};gisny0e;False;t3_kujurp;False;True;t1_gisbbwg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisny0e/;1610352758;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lemon1412;;;[];;;;text;t2_3m3p3;False;True;[];;They literally already made this same callback in episode 62, the episode containing said flashback, when Kruger looks at the camera. It's the last line of the episode.;False;False;;;;1610310663;;False;{};gisnyab;False;t3_kujurp;False;False;t1_gisj0wk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnyab/;1610352762;45;False;False;anime;t5_2qh22;;0;[]; -[];;;renrutal;;;[];;;;text;t2_6nt9z;False;False;[];;After 63 episodes of Attacks on Titans, the Counterattack!;False;False;;;;1610310663;;False;{};gisnybh;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnybh/;1610352762;5;True;False;anime;t5_2qh22;;0;[]; -[];;;mapoztofu;;;[];;;;text;t2_ig4auzn;False;False;[];;"I really feel falco is going to play some very important role in the series eventually, -maybe like he will be the one who will actually bring peace and stuff - -We get the story from his side a lot and is part of the most of the stuff - -He gives me Julian vibes from LOTGH - -Let's see how the story folds - -Also the Ed show cases him individually -Tired and scared of war - -Have hopes from him";False;False;;;;1610310670;;False;{};gisnyu1;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisnyu1/;1610352770;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;*Looks at Reiner with Puppy eyes 🥺*;False;False;;;;1610310687;;False;{};giso040;False;t3_kujurp;False;False;t1_gisnge1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giso040/;1610352789;8;True;False;anime;t5_2qh22;;0;[]; -[];;;conqueringdragon;;;[];;;;text;t2_11nm5laj;False;False;[];;New character, first introduced here.;False;False;;;;1610310701;;False;{};giso17m;False;t3_kujurp;False;True;t1_gisn9df;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giso17m/;1610352804;0;True;False;anime;t5_2qh22;;0;[]; -[];;;sabyte;;;[];;;;text;t2_28torfhr;False;False;[];;GOAT;False;False;;;;1610310713;;False;{};giso21r;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giso21r/;1610352817;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610310715;;False;{};giso285;False;t3_kujurp;False;True;t1_gisbtzy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giso285/;1610352820;43;True;False;anime;t5_2qh22;;0;[]; -[];;;pepperminthippos;;;[];;;;text;t2_9esi1c4;False;False;[];;wait, reiner died?? i think its ambiguous;False;False;;;;1610310716;;False;{};giso29p;False;t3_kujurp;False;False;t1_gisc2jv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giso29p/;1610352821;86;True;False;anime;t5_2qh22;;0;[]; -[];;;brownguy6391;;;[];;;;text;t2_3et2u982;False;False;[];;You can't really be told without being spoiled I think;False;False;;;;1610310720;;False;{};giso2kh;False;t3_kujurp;False;False;t1_gisn9df;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giso2kh/;1610352825;4;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;"My heart is still agitated. - -The tension was insane, who would have thought some old hobos talking in a basement could be so spectacular?";False;False;;;;1610310726;;False;{};giso31z;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giso31z/;1610352831;5;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;I felt a tinge of empathy then remembered it really was all his fault. I'm ready for whatever Eren has to do. He deserves his freedom.;False;False;;;;1610310734;;False;{};giso3my;False;t3_kujurp;False;True;t1_gisd4wn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giso3my/;1610352840;0;True;False;anime;t5_2qh22;;0;[]; -[];;;imadethistoshitpostt;;;[];;;;text;t2_z6c22;False;False;[];;And when Eren kills hundreds of thousands of civilians I will feel the same about him.;False;False;;;;1610310741;;False;{};giso482;False;t3_kujurp;False;False;t1_gismsov;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giso482/;1610352848;22;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;Yea this is how I feel.;False;False;;;;1610310744;;False;{};giso4fb;False;t3_kujurp;False;True;t1_gislx79;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giso4fb/;1610352852;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rydahx;;;[];;;;text;t2_417rdm0s;False;False;[];;Just report anyone you think is being a dick about spoilers.;False;False;;;;1610310744;;False;{};giso4ga;False;t3_kujurp;False;True;t1_gishjuw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giso4ga/;1610352852;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThisIsMyNameOnly;;;[];;;;text;t2_37lxvl9o;False;False;[];;Just remembered Willy was ambiguous when mentioning any member of his family could be the warhammer titan, so he could easily be just the figurehead (someone just needs to tell him the memories). I wonder if this will trash up the plan at all and, more importantly, what even is the plan especially in the context of anti titan technology.;False;False;;;;1610310764;;False;{};giso5ws;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giso5ws/;1610352875;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Iasi_Lael;;;[];;;;text;t2_5nc559tn;False;False;[];;He just pull ous the biggest uno reverse card in anime history.;False;False;;;;1610310776;;False;{};giso6tz;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giso6tz/;1610352887;7;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;He's done enough damage already. I don't even care if he dies or not, I just don't care for him anymore. I used to have a raging hate for him but not really anymore. He can get fed to the wolves.;False;False;;;;1610310783;;False;{};giso7b2;False;t3_kujurp;False;False;t1_gisgowd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giso7b2/;1610352895;4;True;False;anime;t5_2qh22;;0;[]; -[];;;sammuelbrown;;;[];;;;text;t2_13ifj2;False;False;[];;"""What are you doing, Founding Titan?""";False;False;;;;1610310783;;False;{};giso7d9;False;t3_kujurp;False;False;t1_gisnh8s;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giso7d9/;1610352895;19;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;"> an army of Colossal Titans - -They're just extra big mindless Titans. I don't think there's any real limit on how big mindless Titans can grow, Marley just deliberately doesn't make big ones when they dump some on Paradis, so we haven't seen many big ones in the previous seasons.";False;False;;;;1610310784;;False;{};giso7fb;False;t3_kujurp;False;True;t1_gism6gk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giso7fb/;1610352896;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Aozora_KN;;;[];;;;text;t2_2lz5eze3;False;False;[];;The music used during the start of Wily's storytelling was also pretty nice, I'm glad they didn't use the one in the 1st episode and had a different one for this ep.;False;False;;;;1610310797;;False;{};giso8es;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giso8es/;1610352911;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenomex79;;;[];;;;text;t2_59zq8dz3;False;False;[];;The OST this episode was godly;False;False;;;;1610310803;;False;{};giso8w7;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giso8w7/;1610352918;13;True;False;anime;t5_2qh22;;0;[]; -[];;;lluNhpelA;;;[];;;;text;t2_2x9uo1an;False;False;[];;Unless I missed something huge, we know he has the Founding Titan since he inherited both it and Attack from Grisha. I'm just wondering if the glowing eyes are an indication that Eren is being influenced by Grisha's hatred of Marley;False;False;;;;1610310805;;False;{};giso90i;False;t3_kujurp;False;True;t1_gisnduu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giso90i/;1610352920;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JimmyCWL;;;[];;;;text;t2_16ddjx;False;False;[];;Remember waaay back in S1 when they did the first transforming experiments with Eren? They discovered he had to have intention to go along with the pain to transform. That led to what we have here, a delayed transformation.;False;False;;;;1610310808;;1610311013.0;{};giso99h;False;t3_kujurp;False;False;t1_gisdev8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giso99h/;1610352924;25;True;False;anime;t5_2qh22;;0;[]; -[];;;CeaRhan;;;[];;;;text;t2_tn4ge;False;False;[];;Them saying they are no longer the biggest threat, after their own titans were basically bested by 2 bloody trains in a battle, and asking politely for help against the big bad guy would be considered by anyone aware of those facts as them waving a white flag. Especially considering the fact the whole world wants them gone.;False;False;;;;1610310818;;False;{};gisoa1a;False;t3_kujurp;False;True;t1_gisnphl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisoa1a/;1610352935;-1;True;False;anime;t5_2qh22;;0;[];True -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"I had been expecting something like that to happen for a while, but for some reason I was sure that Tybur would be into it, orchestrating all this with Eren's help... Well, technically he's *into it* now, if by 'it' we mean 'Eren's stomach! - -^^I'll ^^see ^^myself ^^out - -I really thought all the warriors were part of this too, but it seems not! I wonder what that strange conversation they had in a previous episode was about then... Perhaps some of them are part of the plan, and some of them are unaware (because they couldn't be trusted)? - -Either way, it seems we'll have some Titan on Titan action! Right in the middle of that massive crowd of important people... The world is taking a wild turn toward chaos! - -Also: I wasn't sure at first, but that 'bearded soldier' has to be Armin, right? If (when) he joins in, his transformation alone could kill hundreds of people!";False;False;;;;1610310826;;False;{};gisoaly;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisoaly/;1610352944;4;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;"No, he is not lying Eren can't use the power without touching royal blood, he can only use it if he touch the smiling titan aka dina that has royal blood inside of her to control the titans, but people with Royal blood can't use the power at all, the renouncing power prevent them from using it because they have royal blood, Eren on the other hand doesn't have royal blood, so fritz renouncing power does not affect him. - -Meaning once Eren touch someone of royal blood to activate the power he has full control of that power and he can do whatever he wants with that power. I hope I made sense.";False;False;;;;1610310828;;False;{};gisoary;False;t3_kujurp;False;False;t1_gisnbhi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisoary/;1610352947;4;True;False;anime;t5_2qh22;;0;[]; -[];;;hoseja;;;[];;;;text;t2_3t2v4;False;False;[];;I don't get the preview. Fuck just freeze me for a week.;False;False;;;;1610310836;;False;{};gisobf9;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisobf9/;1610352956;4;True;False;anime;t5_2qh22;;0;[]; -[];;;zzzxxx1209381;;;[];;;;text;t2_28dba7wm;False;False;[];;remember when everyone was bashing marlowe in season 3 for leaving Hitch and Eren was the only one who supported marlowe lol;False;False;;;;1610310845;;False;{};gisoc26;False;t3_kujurp;False;False;t1_gisiw75;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisoc26/;1610352967;295;True;False;anime;t5_2qh22;;0;[]; -[];;;Zaxii;;;[];;;;text;t2_g1k0b;False;True;[];;Amazing episode once again;False;False;;;;1610310858;;False;{};gisod00;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisod00/;1610352981;5;True;False;anime;t5_2qh22;;0;[]; -[];;;slasly;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/slasly/;light;text;t2_cl8pc;False;False;[];;"1. has been answered so i will answer 2 and 3. - -2. The founder in the hands of someone with royal blood has basically god like power over the eldians, he can manipulate their minds, turn them into titans and control them. When he did that he made a shit ton of eldians into titans and made it so their titans were colossal size. Though they are still mindless titans as all the others outside the wall, unlike the Colossal titan shifter who can control his titan. - -3. A new character who has yet to be named in the anime, no its not Armin. - -The rest you will have to wait and see unless you want to read the manga.";False;False;;;;1610310868;;False;{};gisodr9;False;t3_kujurp;False;False;t1_gism6gk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisodr9/;1610352993;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Radix3D;;;[];;;;text;t2_4pafckex;False;False;[];;Again, not quite. As Willy said in his speech, what the king wanted was peace. That's why the Island is called Paradis (Paradise). He was a pacifist, that's why he said that if Marley chose to attack them, he would accept it. That's because he didn't want to continue the long cycle of war again that existed for ~2000 years since the beginning of the Eldian Empire. If they could have all lived in peace, that would have been ideal, but more than anything, what the king wanted to prevent was Eldians committing the same atrocities that they had in the past.;False;False;;;;1610310882;;False;{};gisoes3;False;t3_kujurp;False;True;t1_gisn8ji;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisoes3/;1610353013;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;Yes, and this is just the beginning, he will unlock a new level of \*chadness\* each episode...;False;False;;;;1610310885;;False;{};gisof11;False;t3_kujurp;False;True;t1_gisdaj7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisof11/;1610353017;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rydahx;;;[];;;;text;t2_417rdm0s;False;False;[];;They will have no choice with the amount of spoilers manga readers give out in each thread.;False;False;;;;1610310890;;False;{};gisofe1;False;t3_kujurp;False;True;t1_gisfvmg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisofe1/;1610353022;1;True;False;anime;t5_2qh22;;0;[]; -[];;;harshit1705;;;[];;;;text;t2_35o1c08d;False;False;[];;"Eren: Hey, lets be friends! - -Reiner: Really?? - -Eren: Nah, just kidding...";False;False;;;;1610310900;;False;{};gisog4c;False;t3_kujurp;False;True;t1_gisadib;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisog4c/;1610353034;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ProgyanDeka;;;[];;;;text;t2_4uhq9dff;False;False;[];;Well we already have the doujin. [Here](https://hentai2read.com/past_time_with_pieckchan/1/);False;False;;;;1610310903;;False;{};gisoges;False;t3_kujurp;False;False;t1_gisk78q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisoges/;1610353038;7;True;False;anime;t5_2qh22;;0;[]; -[];;;pipedreamextreme3000;;;[];;;;text;t2_56e3prr0;False;False;[];;all of reiners armour cant protect him from emotional trauma;False;False;;;;1610310905;;False;{};gisogky;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisogky/;1610353041;6;True;False;anime;t5_2qh22;;0;[]; -[];;;MagnoBurakku;;;[];;;;text;t2_u37ay;False;False;[];;"Fuuuuuuck the tension in this episode was heratfelt to my very soul. That moment of blasthing through the basement was so fcking AWESOME!!! - -Marleyans wants war, EREN Will give them WAR. Poor Willy no time for applause after the declaration. - -Declaration of War literally being trending worldwide, wouldn't be surprised is some people freak out.";False;False;;;;1610310925;;False;{};gisoi1u;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisoi1u/;1610353062;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OneirionKnight;;;[];;;;text;t2_1kghpz3x;False;False;[];;What?;False;False;;;;1610310930;;False;{};gisoif3;False;t3_kujurp;False;True;t1_gisnxav;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisoif3/;1610353068;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cheesusaur;;;[];;;;text;t2_5ralv;False;False;[];;Well he just hit the triple digits so we're on our way.;False;False;;;;1610310931;;False;{};gisoiir;False;t3_kujurp;False;False;t1_giso482;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisoiir/;1610353069;81;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610310934;;False;{};gisoiqx;False;t3_kujurp;False;True;t1_gise9k9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisoiqx/;1610353073;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aozora_KN;;;[];;;;text;t2_2lz5eze3;False;False;[];;I think its better that way and just wait for next week. =D;False;False;;;;1610310937;;False;{};gisoiz5;False;t3_kujurp;False;True;t1_gisobf9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisoiz5/;1610353076;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610310944;;False;{};gisojin;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisojin/;1610353084;3;True;False;anime;t5_2qh22;;0;[]; -[];;;gold-bandit;;;[];;;;text;t2_3y38asl8;False;False;[];;You can tell he wanted Willy to accept the people of the walls, but once everyone unified against them, he was disappointed. He just kept moving forward.;False;False;;;;1610310955;;False;{};gisok90;False;t3_kujurp;False;False;t1_gisiwej;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisok90/;1610353096;20;True;False;anime;t5_2qh22;;0;[]; -[];;;MMBook;;;[];;;;text;t2_3pqytndm;False;False;[];;OMFG!!!!!! 👑👑👑👑;False;False;;;;1610310960;;False;{};gisokoi;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisokoi/;1610353101;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610310980;;False;{};gisom5t;False;t3_kujurp;False;True;t1_giskw2o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisom5t/;1610353125;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;B15HA;;;[];;;;text;t2_15kxkl;False;False;[];;"Holy shit I thought Eren was going to start an alliance with Reiner wtf -That transformation scene was epic af :https://youtu.be/FmXMX7OoKKQ";False;False;;;;1610310986;;False;{};gisomk5;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisomk5/;1610353131;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SolarStorm2950;;;[];;;;text;t2_18xuqctx;False;True;[];;Where is it out?;False;False;;;;1610310992;;False;{};gison05;False;t3_kujurp;False;False;t1_gisj45k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gison05/;1610353138;5;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Application9008;;;[];;;;text;t2_5zcztb2g;False;False;[];;Willy literally declared war before Eren transformed;False;False;;;;1610310994;;False;{};gison6w;False;t3_kujurp;False;False;t1_gisiyc6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gison6w/;1610353141;18;True;False;anime;t5_2qh22;;0;[]; -[];;;SSB_GoGeta;;;[];;;;text;t2_768ece;False;False;[];;"[Everyone should go and watch some A Slap on Titan Reiner as a palate cleanser.](https://www.youtube.com/watch?v=163rChLj-Gw&t=325s&ab_channel=LTspade)";False;False;;;;1610310998;;False;{};gisongm;False;t3_kujurp;False;False;t1_gisau1z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisongm/;1610353145;4;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;"Yea & then he admits he could've went home. He literally said it's all his fault. Stop making excuses for him.";False;True;;comment score below threshold;;1610311005;;False;{};gisony4;False;t3_kujurp;False;True;t1_gism3vz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisony4/;1610353152;-46;True;False;anime;t5_2qh22;;0;[]; -[];;;redlaWw;;;[];;;;text;t2_9wwod;False;False;[];;I felt that the past few episodes were particularly underwhelming - they completely switched focus to Marleyans, with a bunch of new characters I wasn't invested in and lots of talking and not much action. But this episode really tied it all together, and it wouldn't have had the same impact without the calm episodes and worldbuilding that came before.;False;False;;;;1610311010;;False;{};gisooac;False;t3_kujurp;False;False;t1_gisbw9m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisooac/;1610353157;5;True;False;anime;t5_2qh22;;0;[]; -[];;;KangKrizzle;;;[];;;;text;t2_48j6s5ns;False;False;[];;Ah alright then, I just found out they are a new character too. Appreciate it anyway, I just assumed they were with Eren;False;False;;;;1610311015;;False;{};gisoonm;False;t3_kujurp;False;True;t1_giso2kh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisoonm/;1610353164;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheEnergizer1985;;;[];;;;text;t2_do39o;False;False;[];;That’s not...how it works. In any brutal regime, the people that follow are often brainwashed and not following willingly. They also follow because if they don’t, them and their families will be executed. You’ve seen with Marley. The Eldians in Marley are frequently used as cannon fodder in war. Now this doesn’t make killing right, because even if they are brainwashed to hate you or kill you, the threat is there and someone like Eren wants to protect his home.;False;False;;;;1610311022;;False;{};gisop6x;False;t3_kujurp;False;False;t1_gisjbp1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisop6x/;1610353171;3;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;uh....not exactly, you will find out next episode.;False;False;;;;1610311039;;False;{};gisoqfv;False;t3_kujurp;False;True;t1_gisn9df;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisoqfv/;1610353190;3;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;He's playing with Reiner's heart;False;False;;;;1610311051;;False;{};gisorby;False;t3_kujurp;False;True;t1_gisadib;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisorby/;1610353203;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Boyoboy7;;;[];;;;text;t2_14ce0n;False;False;[];;I kinda wonder if Tybur speech does not go into the direction of asking alliance to attack Paradis Island, will Eren still declare war like that?;False;False;;;;1610311052;;False;{};gisore3;False;t3_kujurp;False;False;t1_gisjj1g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisore3/;1610353204;34;True;False;anime;t5_2qh22;;0;[];True -[];;;mhc122333;;;[];;;;text;t2_4tpih3gt;False;False;[];;"It's jokes how eren goes ""oh just forget abt me promising all of u terrible deaths"", and then proceeds to fulfill that promise";False;False;;;;1610311052;;False;{};gisoreu;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisoreu/;1610353204;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DustySofa;;;[];;;;text;t2_hx45o;False;False;[];;Does it always take this long?;False;False;;;;1610311065;;False;{};gisosdz;False;t3_kujurp;False;False;t1_gisna1b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisosdz/;1610353219;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lemon1412;;;[];;;;text;t2_3m3p3;False;True;[];;"CTRL+F ""Armin"" - -All the way down here? - -Yeah, I'm thinking it's Armin. He had a growth spurt and his voice got a little deeper. The only other blonde character I can think of is Krista, but I don't think the Cart Titan has ever seen her.";False;False;;;;1610311076;;False;{};gisot5f;False;t3_kujurp;False;False;t1_gisf53y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisot5f/;1610353232;23;True;False;anime;t5_2qh22;;0;[]; -[];;;redlaWw;;;[];;;;text;t2_9wwod;False;False;[];;[AVAST, MATEY!**JOIN ME ON THE HIGH SEAS!**](#piracy);False;False;;;;1610311096;;False;{};gisoup9;False;t3_kujurp;False;False;t1_gison05;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisoup9/;1610353256;28;True;False;anime;t5_2qh22;;0;[]; -[];;;SinArchbish0p;;;[];;;;text;t2_6d983z49;False;False;[];;"This episode was the definition of perfect. - -Next episode is gonna be insane";False;False;;;;1610311102;;False;{};gisov4c;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisov4c/;1610353262;9;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;He erased their damn memories. There was no real chance of Eldians committing atrocities. Theh didn't even have any titan shifters inside the wall. So his peace would have been only destroyed by Marleyans. The fact that he was OK with letting his people die is what pisses me off the most. These people have nothing to do with the atrocities committed in the past. Fuck most of these people don't even know about their history. His peace plan so flawed thus the power was stolen and here we are;False;False;;;;1610311102;;False;{};gisov5u;False;t3_kujurp;False;True;t1_gisoes3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisov5u/;1610353262;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Wahrheitruth;;;[];;;;text;t2_67qlgl9b;False;False;[];;Can someone explain what the whole “Helios is not the real hero” thing is about? Why is that important? What does it mean for the plot? I’m confused...;False;False;;;;1610311106;;False;{};gisovdo;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisovdo/;1610353266;4;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;What was the track they used at the end? It rings a bell but I don't remember the name of it.;False;False;;;;1610311125;;False;{};gisowqt;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisowqt/;1610353286;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610311136;;False;{};gisoxoe;False;t3_kujurp;False;True;t1_gismyn1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisoxoe/;1610353300;0;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;what are you implying?;False;False;;;;1610311142;;False;{};gisoy3w;False;t3_kujurp;False;True;t1_gisas6b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisoy3w/;1610353306;3;True;False;anime;t5_2qh22;;0;[]; -[];;;fayezabdd;;;[];;;;text;t2_1vo7dygx;False;False;[];;Almost 5kupvotes and 1.3k comments and the episode didn't even drop in any legal platform yet lmfao this is probably gonna break the karma records for sure. That's Attack on Titan for you;False;False;;;;1610311144;;1610311894.0;{};gisoy9f;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisoy9f/;1610353309;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Aozora_KN;;;[];;;;text;t2_2lz5eze3;False;False;[];;"Falco is just so pure, it took him a while to realize all this time when Mr. Kruger referred to Reiner as an ""old friend"", oh you. :'(";False;False;;;;1610311146;;False;{};gisoyet;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisoyet/;1610353311;10;True;False;anime;t5_2qh22;;0;[]; -[];;;TheMisanthropy;;;[];;;;text;t2_gsd4w;False;False;[];;I'm guessing that soldier was Armen. I wonder if the colossal going to explode and turn the city into ruins.;False;False;;;;1610311148;;False;{};gisoykp;False;t3_kujurp;False;False;t1_gisbcxu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisoykp/;1610353313;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Lightningcloud001;;;[];;;;text;t2_az56bjc;False;False;[];;As a manga reader can tell u this was a disgusting cliffhanger, man it sucks waiting;False;False;;;;1610311157;;False;{};gisoz6f;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisoz6f/;1610353323;6;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;link is broke. what is it?;False;False;;;;1610311168;;False;{};gisp00z;False;t3_kujurp;False;True;t1_gisfo09;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisp00z/;1610353335;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DJ-Adios;;;[];;;;text;t2_5em8kiz2;False;False;[];;basement-kun is just built different;False;False;;;;1610311171;;False;{};gisp08k;False;t3_kujurp;False;False;t1_gisfq6x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisp08k/;1610353338;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610311185;;1610311487.0;{};gisp1bc;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisp1bc/;1610353356;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;The official narrative was that a Marleyan (Helos) teamed up with the Tyburs to defeat the King. The TRUE narrative is that the King and the Tyburs orchestrated the whole thing and just gave credit to the Marleyans. So it wasn't a glorious revolution or anything, it was just the King destroying his own empire cuz he wanted peace.;False;False;;;;1610311193;;False;{};gisp1w0;False;t3_kujurp;False;False;t1_gisovdo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisp1w0/;1610353365;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Orrakai;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Orrakai;light;text;t2_1dhaxo11;False;False;[];;" -Unfortunate that a majority of the casualties will be Eldians though, since this scene is set up in the internment camp.";False;False;;;;1610311210;;False;{};gisp388;False;t3_kujurp;False;False;t1_gishd2j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisp388/;1610353385;6;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;That's a 200 iq move of it's true. Kinda like what Erwin and the Survey Corps did to Annie is it not?;False;False;;;;1610311211;;False;{};gisp3ba;False;t3_kujurp;False;False;t1_gisb08f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisp3ba/;1610353387;31;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;He was never annoying. Idk why people keep pushing this sentiment. Emotion isn't annoying.;False;False;;;;1610311225;;False;{};gisp4ex;False;t3_kujurp;False;False;t1_gisi8hf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisp4ex/;1610353402;29;True;False;anime;t5_2qh22;;0;[]; -[];;;DJ-Adios;;;[];;;;text;t2_5em8kiz2;False;False;[];;I think the declaration of war just pushed him a little bit more into it.;False;False;;;;1610311230;;False;{};gisp4sf;False;t3_kujurp;False;True;t1_giskig5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisp4sf/;1610353410;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DrPavel_Im_CIA;;;[];;;;text;t2_muhwd;False;False;[];;After watching this I have realized how spoiled we were by Wit. This was good, even great but if it was still Wit producing this that final scene would have been truly something else.;False;True;;comment score below threshold;;1610311256;;False;{};gisp6qd;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisp6qd/;1610353439;-14;True;False;anime;t5_2qh22;;0;[]; -[];;;conqueringdragon;;;[];;;;text;t2_11nm5laj;False;False;[];;You just keep moving forward until all bunny senpais are destroyed.;False;False;;;;1610311257;;False;{};gisp6t4;False;t3_kujurp;False;False;t1_giskeiy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisp6t4/;1610353440;21;True;False;anime;t5_2qh22;;0;[]; -[];;;q1zb;;;[];;;;text;t2_6po7w98v;False;False;[];;Today I’m gonna tell the world my plan, I hope I wi;False;False;;;;1610311272;;False;{};gisp7zw;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisp7zw/;1610353458;148;True;False;anime;t5_2qh22;;0;[]; -[];;;nonpk;;;[];;;;text;t2_rqgum;False;False;[];;Im trembling, and speechless. Wow, just wow, what an episode.;False;False;;;;1610311297;;False;{};gispa6q;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispa6q/;1610353490;4;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;I've been waiting for those words since the trailer dropped;False;False;;;;1610311306;;False;{};gispavo;False;t3_kujurp;False;False;t1_gisac08;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispavo/;1610353500;8;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;Yes but some people though he was annoying not me.;False;False;;;;1610311325;;False;{};gispcji;False;t3_kujurp;False;False;t1_gisp4ex;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispcji/;1610353525;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;Lmao;False;False;;;;1610311335;;False;{};gispddp;False;t3_kujurp;False;False;t1_gisp7zw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispddp/;1610353536;5;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;But he isn't fueled by revenge. If he was fueled by revenge, he would have made Reiner suffer the most excruciating death possible. But he didn't kill Reiner even when he begged him to. The Eren now is only driven by freedom.;False;False;;;;1610311338;;False;{};gispdld;False;t3_kujurp;False;False;t1_gisnw8y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispdld/;1610353539;74;True;False;anime;t5_2qh22;;0;[]; -[];;;TheTeddyBear12;;;[];;;;text;t2_xs5m9;False;False;[];;I swear this episode was 2 minutes long. Maybe 3 at max.;False;False;;;;1610311353;;False;{};gispetk;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispetk/;1610353557;1;True;False;anime;t5_2qh22;;0;[]; -[];;;drtoszi;;;[];;;;text;t2_jp26b;False;False;[];;"Well...maybe he was waiting to see if it would play out differently? - -Eren was pretty sure what they were gonna say but he did hold back until Willy said it. Old Eren would’ve been gung-ho";False;False;;;;1610311353;;False;{};gispetq;False;t3_kujurp;False;False;t1_gisore3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispetq/;1610353557;67;True;False;anime;t5_2qh22;;0;[]; -[];;;Wahrheitruth;;;[];;;;text;t2_67qlgl9b;False;False;[];;Thanks for the fast response! I have another question though: Which party does the king belong to?;False;False;;;;1610311359;;False;{};gispfd6;False;t3_kujurp;False;True;t1_gisp1w0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispfd6/;1610353564;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CroWarrior;;;[];;;;text;t2_c4uxo;False;False;[];;This is like reverse Pearl Harbor. Surprise counter attack. Genius;False;False;;;;1610311365;;False;{};gispfv2;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispfv2/;1610353572;21;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;This is what I love most about him. He's not some confused character doing this for no reason. It's not some miscommunication. He knows exactly what's going on. Our boy is so smart;False;False;;;;1610311370;;False;{};gispgb0;False;t3_kujurp;False;False;t1_gism3eq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispgb0/;1610353578;899;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;The heck are you on my guy? The official subs (CR and funi) haven't been released yet;False;False;;;;1610311375;;False;{};gispgq8;False;t3_kujurp;False;False;t1_gisp1bc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispgq8/;1610353585;5;True;False;anime;t5_2qh22;;0;[]; -[];;;thedarkcheese;;;[];;;;text;t2_5gr5i;False;False;[];;"Here's that scene with a better OST: - -https://streamable.com/5gn3hu";False;True;;comment score below threshold;;1610311379;;False;{};gisph1o;False;t3_kujurp;False;True;t1_giscr8m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisph1o/;1610353589;-41;True;False;anime;t5_2qh22;;0;[]; -[];;;edgyboi1704;;;[];;;;text;t2_3y3dxsmg;False;False;[];;Every line you say will run as long as it needs in order to bite you in the ass;False;False;;;;1610311393;;False;{};gispi7l;False;t3_kujurp;False;False;t1_gisd65h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispi7l/;1610353607;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Iamjustatrial;;;[];;;;text;t2_trz6t;False;False;[];;"Wait I'm stupid, in what way is Eren the same as Reiner? - -Anyone care to explain pls?";False;True;;comment score below threshold;;1610311408;;False;{};gispjjt;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispjjt/;1610353626;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;ThisIsMyNameOnly;;;[];;;;text;t2_37lxvl9o;False;False;[];;He clearly did have the resolve. In that case, was it not the persecution of Eldians that caused the war? Even ignoring this case, they continued as planned with no knowledge of the Founding Titan being stolen and, since they were planning to steal it themselves, doesn't seem to be a major point supporting them.;False;False;;;;1610311410;;False;{};gispjrs;False;t3_kujurp;False;True;t1_gisnhgr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispjrs/;1610353630;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;Oh they sure as hell know the name now.;False;False;;;;1610311411;;False;{};gispju1;False;t3_kujurp;False;False;t1_gismi47;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispju1/;1610353631;13;True;False;anime;t5_2qh22;;0;[]; -[];;;redlaWw;;;[];;;;text;t2_9wwod;False;False;[];;The dramatic irony with Falco slowly realising that he was in a room with his greatest enemy and that the supersoldier he'd brought with him was utterly terrified was great too.;False;False;;;;1610311424;;False;{};gispkvz;False;t3_kujurp;False;False;t1_gisa5o0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispkvz/;1610353646;29;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;I don't think Reiner nor Falco are dead.;False;False;;;;1610311441;;False;{};gispmai;False;t3_kujurp;False;False;t1_gisesh6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispmai/;1610353667;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ProgyanDeka;;;[];;;;text;t2_4uhq9dff;False;False;[];;"Mostly raws or pirated websites. -Edit: you can find low quality version on yt too.";False;False;;;;1610311443;;False;{};gispmek;False;t3_kujurp;False;True;t1_gismqxz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispmek/;1610353668;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;**Falco's situation right now:** Dread from it, Run from it.....Depression *always* arrives.;False;False;;;;1610311456;;False;{};gispnkc;False;t3_kujurp;False;False;t1_giscnq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispnkc/;1610353684;37;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610311457;;False;{};gispnms;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispnms/;1610353685;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610311471;;False;{};gisposi;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisposi/;1610353703;2;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;Official subs aren't even out yet and its already at 5k, looks like its on the same course as episode 1 to me. May even surpass episode 1.;False;False;;;;1610311473;;False;{};gispoxm;False;t3_kujurp;False;True;t1_gisp1bc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispoxm/;1610353705;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MartinaS90;;;[];;;;text;t2_13onma;False;False;[];;Yes, I mean that the purple eyes were when a member of the royal family was possessed by the King of the Walls' ideology. In the anime, they placed those eyes on Grisha too after he ate Frieda for some reason, but Grisha never had those eyes in the manga. That's why I think those glowing eyes Eren had in this episode are not the same Frieda and Uri had (also Grisha in the anime), because those eyes in the manga were supposed to convey that the user was possessed by the pacifist king's ideology, and Eren isn't under that ideology because he doesn't have royal blood... But they gave those eyes to Grisha in the anime... so, it could be anything, but I think that was a mistake.;False;False;;;;1610311478;;False;{};gisppel;False;t3_kujurp;False;True;t1_giso90i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisppel/;1610353713;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerdfighter87;;;[];;;;text;t2_6igwwa4e;False;False;[];;"Yes it was monthly! That's why I got so annoyed! -Yeah I'm thinking I'll change my plans and start bingeing and just wait with everyone 😭";False;False;;;;1610311480;;False;{};gisppl4;False;t3_kujurp;False;True;t1_gisfjfg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisppl4/;1610353715;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MaouPS;;;[];;;;text;t2_to60p;False;False;[];;[RIP that dude](https://i.imgur.com/33WkBLG.png);False;False;;;;1610311482;;False;{};gisppqx;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisppqx/;1610353718;36;True;False;anime;t5_2qh22;;0;[];True -[];;;Ejov18;;;[];;;;text;t2_6oqiauz;False;False;[];;I’ve said it time and time again, if this anime ends on an amazing note, I’m happy to be alive when the (imo) best anime came to an end. I can’t wait for the last episode!!!;False;False;;;;1610311483;;False;{};gisppsl;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisppsl/;1610353718;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Aozora_KN;;;[];;;;text;t2_2lz5eze3;False;False;[];;He kept moving forward, basically what Eren is doing is a parallel to what Reiner did at the start of the series.;False;False;;;;1610311492;;False;{};gispqi6;False;t3_kujurp;False;False;t1_gispjjt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispqi6/;1610353729;5;True;False;anime;t5_2qh22;;0;[]; -[];;;pepperminthippos;;;[];;;;text;t2_9esi1c4;False;False;[];;wait fr? im dumb then ig;False;False;;;;1610311502;;False;{};gisprec;False;t3_kujurp;False;False;t1_gispoxm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisprec/;1610353742;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Soliquidsnake;;;[];;;;text;t2_p7oxc;False;False;[];;Out on crunchy right now.;False;False;;;;1610311509;;False;{};gispry6;False;t3_kujurp;False;True;t1_gisposi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispry6/;1610353749;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TimetoDDDuel;;;[];;;;text;t2_2ljjuma0;False;False;[];;Remember how Ymir (the lesbian one) got her Powers?;False;False;;;;1610311510;;False;{};gisps18;False;t3_kujurp;False;False;t1_gismhcb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisps18/;1610353750;33;True;False;anime;t5_2qh22;;0;[]; -[];;;pepperminthippos;;;[];;;;text;t2_9esi1c4;False;False;[];;didnt realize, my b. i watched on another site that apparently released subs earlier;False;False;;;;1610311514;;False;{};gispsf9;False;t3_kujurp;False;True;t1_gispgq8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispsf9/;1610353756;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dinoswarleaf;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Dinoswarleaf;light;text;t2_eo4sf;False;False;[];;oh god my brain is going to melt;False;False;;;;1610311523;;False;{};gispt4j;False;t3_kujurp;False;False;t1_gismeg1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispt4j/;1610353766;12;True;False;anime;t5_2qh22;;0;[]; -[];;;LabluDuck;;;[];;;;text;t2_1eumyeoe;False;False;[];;He grew a leg I guess;False;False;;;;1610311531;;False;{};gisptqm;False;t3_kujurp;False;False;t1_gisdy79;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisptqm/;1610353775;6;True;False;anime;t5_2qh22;;0;[]; -[];;;macedonianmoper;;;[];;;;text;t2_71boinia;False;False;[];; True true, but is Willy considered a government official? I know he runs everything from the shadows but does he actually have the power to formally declare war on someone?;False;False;;;;1610311533;;False;{};gisptwp;False;t3_kujurp;False;False;t1_gisn831;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisptwp/;1610353777;19;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;">Well I also remember a saying that *an eye for an eye makes the whole world blind.* - -I literally hate an eye for an eye so much but I drop my morals & principles for AOT as it'd be impossible to enjoy it without them so I'm with Eren the whole way.";False;False;;;;1610311542;;False;{};gispul2;False;t3_kujurp;False;True;t1_gisgsd6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispul2/;1610353787;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Cheesusaur;;;[];;;;text;t2_5ralv;False;False;[];;Would really like some feet pics from Annie.;False;False;;;;1610311544;;False;{};gispupa;False;t3_kujurp;False;False;t1_gisb0e6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispupa/;1610353789;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];;Helios was a Marleyan, so the narrative was how the oppresed Marleyan rised up against the Evil Eldians. That's false;False;False;;;;1610311544;;False;{};gispurb;False;t3_kujurp;False;False;t1_gisovdo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispurb/;1610353790;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Naskr;;;[];;;;text;t2_hoc18;False;False;[];;"That promise was the last conversation Reiner had with Eren, before learning that the angriest man on earth had the power of a god. - -So for 4+ years he's had to deal with that constant reminder at the back of his head.";False;False;;;;1610311549;;False;{};gispv2r;False;t3_kujurp;False;False;t1_gisak3a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispv2r/;1610353794;15;True;False;anime;t5_2qh22;;0;[]; -[];;;ClickingHCT;;;[];;;;text;t2_l5nip;False;False;[];;2Volt. The specific segment took place last during Levi and the beast titan;False;False;;;;1610311552;;False;{};gispvb8;False;t3_kujurp;False;False;t1_gisowqt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispvb8/;1610353798;1;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;"No prob. I'm not sure what you mean by ""party"". - -There's basically 2 major countries in this conflict. There's Marley that's run by the Tyburs. And there's Paradis, which was originally run by the royal family. - -Paradis' political situation was addressed in Season 3 Part 1 - There is a ""King Fritz"" who ruled it, but it was revealed this was just a fake king and the real rulers were the Reiss family. The Reiss family are the real original Fritz, they just changed their name after the Walls were sealed. They are the descendants of the King who destroyed Eldia a hundred years ago. Historia was a bastard daughter of the current king. The military replaced the fake ruler with Historia, though she doesn't really have much actual power and the power belongs to the military now.";False;False;;;;1610311554;;False;{};gispvh6;False;t3_kujurp;False;False;t1_gispfd6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispvh6/;1610353800;6;True;False;anime;t5_2qh22;;0;[]; -[];;;NinjaristicNinja;;;[];;;;text;t2_13eewwe;False;False;[];;I think it’s called ‘2Volt’;False;False;;;;1610311554;;False;{};gispvhc;False;t3_kujurp;False;True;t1_gisowqt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispvhc/;1610353800;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SoulTea;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/SoulTea;light;text;t2_6by2x;False;False;[];;I read over all of the comments when the thread was a bit newer and I'm surprised there wasn't another comment about it! I don't actually remember most of S3 which is why I'm rewatching it but I think it does make most sense to be him. It doesn't seem possible that's it's Krista which I also considered and I don't think they'd use a throwaway character for it.;False;False;;;;1610311569;;False;{};gispwp0;False;t3_kujurp;False;False;t1_gisot5f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispwp0/;1610353819;6;True;False;anime;t5_2qh22;;0;[]; -[];;;VaguelyCompetant;;;[];;;;text;t2_49fj9gs;False;False;[];;Probably in an hour;False;False;;;;1610311570;;False;{};gispwre;False;t3_kujurp;False;False;t1_gison05;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispwre/;1610353819;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Cheers;False;False;;;;1610311572;;False;{};gispwwy;False;t3_kujurp;False;True;t1_gispvb8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispwwy/;1610353822;1;True;False;anime;t5_2qh22;;0;[]; -[];;;XIIISkies;;;[];;;;text;t2_p0bqb;False;False;[];;I know its been said in passing a couple times now, but there’re definitely people who’ve seen brief glimpses of what look like titans in the smoke from the OP.;False;False;;;;1610311573;;False;{};gispx1g;False;t3_kujurp;False;False;t1_giskica;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispx1g/;1610353824;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Ymir24;;;[];;;;text;t2_izywz;False;False;[];;Tool assisted;False;False;;;;1610311575;;False;{};gispx5z;False;t3_kujurp;False;False;t1_gisd3sc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispx5z/;1610353826;7;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Cheers;False;False;;;;1610311578;;False;{};gispxg9;False;t3_kujurp;False;True;t1_gispvhc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispxg9/;1610353830;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ReinTIM;;;[];;;;text;t2_6057nzmd;False;False;[];;Two words. Holy shit.;False;False;;;;1610311580;;False;{};gispxkf;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispxkf/;1610353832;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;"Under normal circumstances 100%. But the production committee was rushing it and this is the reason Wit dropped it. You could start to see the dip in quality in some parts of S3P2. - -Mappa is a blessing right now because of the hellish squedules and tight time frames to work. No one could do better under those circumstances. - -Conclusion: this is the production committee's fault";False;False;;;;1610311580;;False;{};gispxln;False;t3_kujurp;False;False;t1_gisp6qd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispxln/;1610353832;15;True;False;anime;t5_2qh22;;0;[]; -[];;;KidCujo;;;[];;;dark;text;t2_szojm;False;True;[];;"The callbacks always amaze me in AoT. Even subtle things like how Eren's expression changes slightly when Willy Tybur says he doesn't want to die ""because I was born into this world"" which was a line used by Eren and his Mom earlier in the series.";False;False;;;;1610311581;;1610313564.0;{};gispxo5;False;t3_kujurp;False;False;t1_gisd65h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispxo5/;1610353833;45;True;False;anime;t5_2qh22;;0;[]; -[];;;cibernike;;;[];;;;text;t2_cxyli;False;False;[];;I was on the edge of my seat and then that first camera flash scared the shit out of me :|;False;False;;;;1610311584;;False;{};gispxv6;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispxv6/;1610353836;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Frostbite2806;;;[];;;;text;t2_13evjt;False;False;[];;"Reiner infiltrating Paradis = Eren infiltrating Marley - -Reiner then spent years with the people on Paradis and realized they were all the same, Eren did the same thing but in Marley.";False;False;;;;1610311598;;False;{};gispz0m;False;t3_kujurp;False;False;t1_gispjjt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispz0m/;1610353853;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Voi69;;;[];;;;text;t2_lcnz6;False;False;[];;The high seas;False;False;;;;1610311598;;False;{};gispz15;False;t3_kujurp;False;True;t1_gisposi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispz15/;1610353854;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610311607;;False;{};gispzr1;False;t3_kujurp;False;True;t1_gispry6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispzr1/;1610353864;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;Killing innocent people for the sake of achieving their goals. Eren is quite literally going colossal titan in episode 1 right here.;False;False;;;;1610311608;;False;{};gispzrd;False;t3_kujurp;False;False;t1_gispjjt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispzrd/;1610353864;7;True;False;anime;t5_2qh22;;0;[]; -[];;;PortoGuy18;;;[];;;;text;t2_2fidx1m;False;False;[];;Maybe. But we still know that there are families in the building that Eren destroyed. I think that they added soldiers in the scene to make it more tense, like, will Eren be captured or not, that sort of vibe.;False;False;;;;1610311608;;False;{};gispzrv;False;t3_kujurp;False;True;t1_gispnms;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gispzrv/;1610353864;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610311616;;False;{};gisq0ew;False;t3_kujurp;False;True;t1_gisbl86;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisq0ew/;1610353874;1;True;False;anime;t5_2qh22;;0;[]; -[];;;minarifanboi;;;[];;;;text;t2_8ekedoug;False;False;[];;Man, i feel so sorry for Reiner, but at the same time I also understand Eren's motives. Damn, AOT one of those shows where the villains don't know they're villains.;False;False;;;;1610311627;;1610319154.0;{};gisq17c;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisq17c/;1610353886;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Lemon1412;;;[];;;;text;t2_3m3p3;False;True;[];;">Stop making excuses for him. - -Is taking age into account when talking about someone's liability for their actions such a foreign concept to you? I shit myself multiple times in my life, and I admit that that was my fault, but I don't think it's fair to judge me for that right now. - ->He literally said it's all his fault. - -Oh, sorry. I didn't know that the ramblings of a deeply troubled man are now the word of god. Of *course* he says it's his fault. He is the one who did it! He feels extremely sorry for what he did because it was literally him who carried out those atrocious crimes in the past, but we as outside observers see how he was manipulated into doing that. Reiner himself, who is not an outside observer, is too traumatized by his own actions to even attempt to justify them. He probably doesn't feel like he's allowed to. It's an all-around shitty situation where each side can get pushed into committing atrocities and it doesn't do the writing justice to just say ""this guy's a piece of shit; I'm so happy that he's scared and sad"".";False;False;;;;1610311639;;False;{};gisq24g;False;t3_kujurp;False;False;t1_gisony4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisq24g/;1610353899;69;False;False;anime;t5_2qh22;;0;[]; -[];;;ihileath;;MAL;[];;http://myanimelist.net/animelist/Ihileath;dark;text;t2_rsvva;False;False;[];;Wuh;False;False;;;;1610311650;;False;{};gisq2yn;False;t3_kujurp;False;False;t1_giso285;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisq2yn/;1610353911;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Keyblade-Riku;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Iverna;light;text;t2_ga9b8;False;False;[];;Fate/Zero's best episode was them just sitting around talking.;False;False;;;;1610311656;;False;{};gisq3f0;False;t3_kujurp;False;False;t1_gisehmo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisq3f0/;1610353917;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Radix3D;;;[];;;;text;t2_4pafckex;False;False;[];;"> He erased their damn memories. There was no real chance of Eldians committing atrocities - -It doesn't seem like you are getting what I'm trying to say. Wiping someone's memories has no effect on how people may behave when they get their hands on an extremely powerful weapon like the Founding Titan. Again, the way the king locked away the power of the Founding Titan was him making a Vow to Renounce War. What this means is that the Founding Titan can't be used to engage in war. - -So, 100 years later, when the walls were attacked, the new holder of the Founding Titan (Frieda) was unable to use the powers of the Founding Titan to stop Titans invading the walls. Again, his goal wasn't necessarily to have the Eldians die; it was to stop the Founding Titan from potentially being abused in the future. The indirect result of this is that the Founding Titan couldn't be used to fend of an invasion.";False;False;;;;1610311677;;False;{};gisq50p;False;t3_kujurp;False;True;t1_gisov5u;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisq50p/;1610353941;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MartinaS90;;;[];;;;text;t2_13onma;False;False;[];;Well they showed a family watching the festival through a window earlier in the episode, they just didn't show it in the declaration of war moment, but as they showed them earlier, it's implied for everyone that Eren killed a lot of innocent people there.;False;False;;;;1610311681;;False;{};gisq5ai;False;t3_kujurp;False;True;t1_gispnms;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisq5ai/;1610353945;1;True;False;anime;t5_2qh22;;0;[]; -[];;;brownguy6391;;;[];;;;text;t2_3et2u982;False;False;[];;"They both lived in the ""enemy's"" land and both want to save their world. Both will do what they have to in order to reach their goals";False;False;;;;1610311685;;False;{};gisq5ln;False;t3_kujurp;False;True;t1_gispjjt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisq5ln/;1610353950;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GamerDylan;;;[];;;;text;t2_9luxkbc;False;False;[];;Graphic content warning on Crunchyroll...does anyone know why this is here now after 4 seasons of a lot of graphic content?;False;False;;;;1610311689;;False;{};gisq5v8;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisq5v8/;1610353954;29;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;The official subs are now available, no more gatekeeping starting at 5k updoots. Lets get that 20k fam;False;False;;;;1610311694;;False;{};gisq68c;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisq68c/;1610353958;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Voi69;;;[];;;;text;t2_lcnz6;False;False;[];;"* We both have committed terrible war crimes on people who never asked for it - -* We both keep moving forward (Reiner admits that he attacked the walls of his own will. He was not just a brainwashed kid. He also was pushed by is will to become a Hero)";False;False;;;;1610311707;;False;{};gisq77n;False;t3_kujurp;False;False;t1_gispjjt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisq77n/;1610353973;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"[Calm Eren is perhaps the most threatening he has been so far.](https://i.imgur.com/12QvCZ2.jpg) Reiner himself got shivers. - -[](#scaredillya)";False;False;;;;1610311740;;False;{};gisq9q0;False;t3_kujurp;False;False;t1_gise39y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisq9q0/;1610354008;68;True;False;anime;t5_2qh22;;0;[]; -[];;;dontloseyourway1610;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Marinate1016;light;text;t2_4wegnp53;False;False;[];;Funimation still don’t have it up.. pain;False;False;;;;1610311749;;False;{};gisqaf2;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqaf2/;1610354019;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;There are fates worse than death;False;False;;;;1610311754;;False;{};gisqau9;False;t3_kujurp;False;False;t1_giseics;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqau9/;1610354025;9;True;False;anime;t5_2qh22;;0;[]; -[];;;LightningLord42;;;[];;;;text;t2_8v8uz;False;False;[];;you mean the guy that doesnt even understand how his wife can get sexually aroused? thats nothing like Eren.;False;False;;;;1610311771;;False;{};gisqc5d;False;t3_kujurp;False;False;t1_gisb0e6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqc5d/;1610354044;7;True;False;anime;t5_2qh22;;0;[]; -[];;;jsmith4567;;;[];;;;text;t2_mw9uj;False;False;[];;"Eren asked Falco to send a letter to ""his family"" that wouldn't be searched and then we saw Eren had a baseball mitt from ""his family"" later. Could Eren have been talking to a spy?";False;False;;;;1610311775;;False;{};gisqcfm;False;t3_kujurp;False;False;t1_gisbq0k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqcfm/;1610354048;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Voi69;;;[];;;;text;t2_lcnz6;False;False;[];;"2Volt - -Other OST featuring it is The Weight of Lives";False;False;;;;1610311786;;False;{};gisqdb8;False;t3_kujurp;False;True;t1_gisowqt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqdb8/;1610354062;3;True;False;anime;t5_2qh22;;0;[]; -[];;;yeetybastard;;;[];;;;text;t2_4asuokfe;False;False;[];;as of today, attack on titan is my favorite show ever made.;False;False;;;;1610311789;;False;{};gisqdjr;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqdjr/;1610354066;39;True;False;anime;t5_2qh22;;0;[]; -[];;;Corbeck77;;;[];;;;text;t2_7qjbt36;False;False;[];;"Best part was when he replied to renier - -""the same as you"" - -Renier immediately understood what Eren ment";False;False;;;;1610311798;;False;{};gisqe86;False;t3_kujurp;False;False;t1_gisai6n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqe86/;1610354075;29;True;False;anime;t5_2qh22;;0;[]; -[];;;KidCujo;;;[];;;dark;text;t2_szojm;False;True;[];;We definitely saw signs of him growing up at the end of last season when they finally saw the ocean and seeing the future. His character progression has been one of my favorites in all of anime.;False;False;;;;1610311801;;False;{};gisqeff;False;t3_kujurp;False;True;t1_gisdy79;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqeff/;1610354079;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610311802;;1610343913.0;{};gisqeiv;False;t3_kujurp;False;False;t1_gispjjt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqeiv/;1610354080;3;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610311804;;False;{};gisqepi;False;t3_kujurp;False;True;t1_giskjzf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqepi/;1610354083;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DrPavel_Im_CIA;;;[];;;;text;t2_muhwd;False;False;[];;Most of the problems in this episode were less bound to problems with the production value and more bound to problems regarding the direction. The new director is simply not as good as Araki. His timing, perspective shots and other choices are less than ideal in many scenes which was pretty clear in that final one.;False;False;;;;1610311806;;False;{};gisqev0;False;t3_kujurp;False;True;t1_gispxln;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqev0/;1610354085;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kvbt7;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kvbt;light;text;t2_446n5ucc;False;False;[];;Eren = Faker;False;False;;;;1610311807;;False;{};gisqex6;False;t3_kujurp;False;False;t1_gise5ad;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqex6/;1610354086;16;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;cant wait;False;False;;;;1610311807;;False;{};gisqeyw;False;t3_kujurp;False;True;t1_gisaqcj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqeyw/;1610354086;3;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;its about to get really graphic next episode.;False;False;;;;1610311816;;False;{};gisqflw;False;t3_kujurp;False;False;t1_gisq5v8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqflw/;1610354095;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ihileath;;MAL;[];;http://myanimelist.net/animelist/Ihileath;dark;text;t2_rsvva;False;False;[];;It's a war crime either way.;False;False;;;;1610311818;;False;{};gisqftq;False;t3_kujurp;False;False;t1_gisl2gi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqftq/;1610354099;23;True;False;anime;t5_2qh22;;0;[]; -[];;;clorox_baratheon;;;[];;;;text;t2_3wrqfvbb;False;False;[];;Falco: wait a sec, 4 years?... that's when... oh... OH FUCK WHAT HAVE I DONE;False;False;;;;1610311838;;False;{};gisqhfy;False;t3_kujurp;False;False;t1_giscnq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqhfy/;1610354123;52;True;False;anime;t5_2qh22;;0;[]; -[];;;kvbt7;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kvbt;light;text;t2_446n5ucc;False;False;[];;What choice does he have?;False;False;;;;1610311856;;False;{};gisqivq;False;t3_kujurp;False;False;t1_gisc83j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqivq/;1610354144;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ProgyanDeka;;;[];;;;text;t2_4uhq9dff;False;False;[];;Don't wanna spoil but that's an entirely new character.;False;False;;;;1610311861;;False;{};gisqjas;False;t3_kujurp;False;True;t1_gisi100;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqjas/;1610354150;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MartinaS90;;;[];;;;text;t2_13onma;False;False;[];;Manga readers complained how WIT did a lot of scenes: Eren's coordinate moment (season 2 finale), Grisha vs Frieda, Eren vs Reiner round 2, Levi vs Beast Titan (the OST in that scene), Grisha and Kruger conversation... Manga readers, at the time, were bashing the ost choices for all those scenes and the direction in general because they didn't match what they had in mind. So don't be so sure.;False;False;;;;1610311884;;False;{};gisqla1;False;t3_kujurp;False;False;t1_gisp6qd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqla1/;1610354179;20;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Cheers;False;False;;;;1610311887;;False;{};gisqlh0;False;t3_kujurp;False;True;t1_gisqdb8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqlh0/;1610354182;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rusik_94;;;[];;;;text;t2_17jhhx;False;False;[];;My palms are sweaty and hands shaking! What an episode OMG!;False;False;;;;1610311902;;False;{};gisqmqj;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqmqj/;1610354200;3;True;False;anime;t5_2qh22;;0;[]; -[];;;slasly;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/slasly/;light;text;t2_cl8pc;False;False;[];;"They both arrived at the others hometown and destroyed close to everything they cared about. Reiner with Shiganshina and now Eren with Liberio - -Also the more important one, they both were born that way in feeling that they wanted/had to be heroes. It wasn't that they were forced to fight, because of circumstances or indoctrination, but they WANTED to fight and achieve their goals of saving the world and becoming a hero(Reiner) or being free from the world and exterminating the titans(Eren).";False;False;;;;1610311909;;False;{};gisqn9q;False;t3_kujurp;False;False;t1_gispjjt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqn9q/;1610354208;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Genericsimp;;;[];;;;text;t2_72navos4;False;False;[];;Mature Eren is so scary and cool asfuck.;False;False;;;;1610311931;;False;{};gisqp5w;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqp5w/;1610354235;6;True;False;anime;t5_2qh22;;0;[]; -[];;;WarrieWolf;;;[];;;;text;t2_4x1mnxoe;False;False;[];;Ayo how did eren transform without biting himself or cutting himself or something?;False;False;;;;1610311932;;False;{};gisqp82;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqp82/;1610354236;2;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;How is this the peace when it only brought misery to people?;False;False;;;;1610311949;;False;{};gisqqlo;False;t3_kujurp;False;True;t1_gisq50p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqqlo/;1610354258;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pepperminthippos;;;[];;;;text;t2_9esi1c4;False;False;[];;underrated;False;False;;;;1610311950;;False;{};gisqqra;False;t3_kujurp;False;False;t1_gisp7zw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqqra/;1610354260;11;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;What are you blabbering about? It showed the families in this episode, all they did was added soldiers to make it even more tense nothing was cut, they probably didn't show the family their being killed while Eren transform simple for censorship reason.;False;False;;;;1610311955;;False;{};gisqr24;False;t3_kujurp;False;True;t1_gispnms;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqr24/;1610354264;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Keyblade-Riku;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Iverna;light;text;t2_ga9b8;False;False;[];;They're Eldians who would not even hesitate to eradicate Eren and the people of Paradis Island from this world.;False;False;;;;1610311966;;False;{};gisqs04;False;t3_kujurp;False;False;t1_gisgr47;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqs04/;1610354277;43;True;False;anime;t5_2qh22;;0;[]; -[];;;pepperminthippos;;;[];;;;text;t2_9esi1c4;False;False;[];;what do you mean? I don't see any large issues;False;False;;;;1610311978;;False;{};gisqsyg;False;t3_kujurp;False;False;t1_gisqev0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqsyg/;1610354291;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinsekai21;;;[];;;;text;t2_10od0m;False;False;[];;"Hes really mature now. - -Remember what he told Falco, people who push themselves into hell see a different hell. He is just moving forward to achieve his goal. - -Like Eren said, he is no different from Reiner";False;False;;;;1610311985;;False;{};gisqtk2;False;t3_kujurp;False;False;t1_giskig5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqtk2/;1610354300;24;True;False;anime;t5_2qh22;;0;[]; -[];;;BoyToyNameTroy;;;[];;;;text;t2_p3hq9;False;False;[];;It's always graphic, especially in manga, but the show got popular and they have to tone it down. Bleach is also a good example of this;False;False;;;;1610311987;;False;{};gisqtp0;False;t3_kujurp;False;False;t1_gisq5v8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqtp0/;1610354302;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;False;[];;Goddamn, that was amazing;False;False;;;;1610311990;;False;{};gisqtxo;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqtxo/;1610354306;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;Hayashi is the season's director, but this episode was directed by Teyuruki Omine. I have no clue why Hayashi didn't direct this one considering it is one of the most important ones, but it is what it is.;False;False;;;;1610311993;;False;{};gisqu5o;False;t3_kujurp;False;True;t1_gisqev0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqu5o/;1610354309;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610311996;;False;{};gisqufj;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqufj/;1610354313;7;True;False;anime;t5_2qh22;;0;[]; -[];;;GetADogLittleLongie;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/obesechicken13;light;text;t2_10pcrz;False;False;[];;">https://www.reddit.com/r/anime/comments/kl9c9d/shingeki_no_kyojin_the_final_season_episode_63/gh7l1s9/ - -Mikasa looks more masculine";False;False;;;;1610312002;;False;{};gisquw0;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisquw0/;1610354320;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lohtric;;;[];;;;text;t2_10buyw;False;False;[];;This episode should have had the same quality as the traitor reveal back in season 2;False;False;;;;1610312002;;False;{};gisquwk;False;t3_kujurp;False;False;t1_gisp6qd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisquwk/;1610354320;11;True;False;anime;t5_2qh22;;0;[]; -[];;;AetherPrismriv;;;[];;;;text;t2_q9s30;False;False;[];;"Still think that the OST could be better. - -https://www.youtube.com/watch?v=DcPk3xB1VsE - -This is a million times better, dunno why they didn't use this one.";False;False;;;;1610312003;;False;{};gisquzt;False;t3_kujurp;False;True;t1_gisa5o0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisquzt/;1610354322;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610312007;;1610343919.0;{};gisqva0;False;t3_kujurp;False;True;t1_gispfd6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqva0/;1610354327;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Sujallamichhaneakasl;;;[];;;;text;t2_3i2s1kbj;False;False;[];;Since that day......without stopping once he kept moving forward.;False;False;;;;1610312009;;False;{};gisqvgm;False;t3_kujurp;False;False;t1_gisd65h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqvgm/;1610354328;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Orrakai;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Orrakai;light;text;t2_1dhaxo11;False;False;[];;"It was easy back in the beginning, to cast my lot with the people of Paradis. It was simple, innocent people living in squalor and fear of man-eaters outside their walls. - -Then we slowly came to learn about the Eldians that were left behind in Marley and just how much they too have suffered, especially psychologically with all this brainwashing. These people are truly not okay. - -It is genuinely hard to pick a side here.";False;False;;;;1610312011;;False;{};gisqvmt;False;t3_kujurp;False;False;t1_gislhdz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqvmt/;1610354332;29;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkBladeEkkusu;;;[];;;;text;t2_r60ay;False;False;[];;It's a subreddit spoiler tag, might work if you hit reply, stay in the screen, and tap the spoiler text.;False;False;;;;1610312022;;False;{};gisqwgd;False;t3_kujurp;False;False;t1_gisp00z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqwgd/;1610354344;7;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;We gotta be considerate for people like Falco and Gabi who started watching it at Season 4!;False;False;;;;1610312025;;False;{};gisqwna;False;t3_kujurp;False;False;t1_giskc2y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqwna/;1610354346;537;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;He did cut himself from the get go, his hands were cut. Eren also has shown that he has mastered the titan shifting power as he can choose when to heal his feet as well.;False;False;;;;1610312029;;False;{};gisqwyl;False;t3_kujurp;False;False;t1_gisqp82;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqwyl/;1610354352;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Furorida_men;;;[];;;;text;t2_5ygpxc88;False;False;[];;A B S;False;False;;;;1610312032;;False;{};gisqx7m;False;t3_kujurp;False;False;t1_gise9wz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqx7m/;1610354355;12;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;5.2k upvotes in 2 hours, goddamn this is crazy;False;False;;;;1610312033;;False;{};gisqxb2;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqxb2/;1610354357;18;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;"I feel like it's a question the show is posing now. How responsible are the oppressed and the oppressors, of both their situation and of their actions? Eren gave mixed messages in what we've seen of him in Marley. - -In his first convo with Falco he talks about those that push themselves into Hell being different from those that have no other choice, and at least to me it felt like he was partially talking about himself. - -But then in this episode he says that he's like Reiner, that they both had no choice. - -So which is it then? Kinda looks like his answer is a little bit of both but what does that mean for responsability and accountability? - -This show really be asking the questions no one wants to hear.";False;False;;;;1610312033;;False;{};gisqxbm;False;t3_kujurp;False;False;t1_gisnfjh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqxbm/;1610354357;25;True;False;anime;t5_2qh22;;0;[]; -[];;;linearstargazer;;;[];;;;text;t2_wkywf;False;False;[];;Seriously. Having the foresight and knowledge of when the enemy will declare war, and waiting for it just so you can stomp them right out the gate is undoubtedly big brain.;False;False;;;;1610312036;;False;{};gisqxi7;False;t3_kujurp;False;False;t1_gisgkax;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqxi7/;1610354360;14;True;False;anime;t5_2qh22;;0;[]; -[];;;MartinaS90;;;[];;;;text;t2_13onma;False;False;[];;Yeah, it's funny actually. But I think Eren meant that he is not motivated by revenge anymore (like when he promised that), he is now doing this for other reasons (because he has to keep moving forward, also protect himself and his people I guess).;False;False;;;;1610312048;;False;{};gisqyed;False;t3_kujurp;False;False;t1_gisoreu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqyed/;1610354373;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610312050;;False;{};gisqyln;False;t3_kujurp;False;True;t1_gisph1o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqyln/;1610354376;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ordinal43NotFound;;;[];;;;text;t2_1wd4dg6i;False;False;[];;"Did anybody notice that Eren's titan was CGI when he yeets Willy to the sky? - - -Amazing how animating Eren's hair and the dust effects in 2D can cover up so much of the CGI animation. It's almost unnoticeable, even I had to do a triple take.";False;False;;;;1610312051;;False;{};gisqynd;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqynd/;1610354377;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kowsihan;;;[];;;;text;t2_6ec6sppl;False;False;[];;"what's with the Zeke he is definitely cooking something, -why Armin ( i guess) only trapped Piek and Galliard, not Zeke.......";False;False;;;;1610312062;;False;{};gisqziw;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisqziw/;1610354390;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AncientSpell;;;[];;;;text;t2_1pkj2z47;False;False;[];;He held them hostage. Which is why Reiner knew this is the end and that he is completely powerless against Eren. It was a great dialogue, right from the beginning.;False;False;;;;1610312070;;False;{};gisr06p;False;t3_kujurp;False;False;t1_gish4zq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisr06p/;1610354403;1336;True;False;anime;t5_2qh22;;0;[]; -[];;;pepperminthippos;;;[];;;;text;t2_9esi1c4;False;False;[];;if i had to guess, zeke is the only one in on it. blood is thicker than water, and eren had a baseball last episode - surely a reference to the baseball titan, right? also, eren would literally be sending mail to his family, meaning he wasn't fully lying to falco (or he was sending letters to the other infiltrators from paradis, idk);False;False;;;;1610312092;;False;{};gisr1x1;False;t3_kujurp;False;True;t1_gisoaly;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisr1x1/;1610354436;2;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;He already cut his palm beforehand. He was showing that to Reiner, subtly telling him that he could transform anytime.;False;False;;;;1610312094;;False;{};gisr212;False;t3_kujurp;False;False;t1_gisqp82;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisr212/;1610354437;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Sneezes;;;[];;;;text;t2_4in5u;False;False;[];;This episode gave me Berserk Eclipse levels of goosebumps;False;False;;;;1610312099;;False;{};gisr2fe;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisr2fe/;1610354444;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Voi69;;;[];;;;text;t2_lcnz6;False;False;[];;Imagine being the madlad that watches S4 but hasn't seen S3;False;False;;;;1610312100;;False;{};gisr2ha;False;t3_kujurp;False;False;t1_giskc2y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisr2ha/;1610354445;49;True;False;anime;t5_2qh22;;0;[]; -[];;;Kowsihan;;;[];;;;text;t2_6ec6sppl;False;False;[];;Reiner is being destroyed every way possible this season;False;False;;;;1610312105;;False;{};gisr2xm;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisr2xm/;1610354453;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Therealpablodeterno;;;[];;;;text;t2_712230kb;False;False;[];;Are we ready for episode 6?;False;False;;;;1610312117;;False;{};gisr3ui;False;t3_kujurp;False;True;t1_gisaex2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisr3ui/;1610354468;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WarrieWolf;;;[];;;;text;t2_4x1mnxoe;False;False;[];;Yeah this makes sense. I was thinking he might have healed everything when he healed his leg.;False;False;;;;1610312121;;False;{};gisr44h;False;t3_kujurp;False;True;t1_gisqwyl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisr44h/;1610354472;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610312123;;False;{};gisr4ax;False;t3_kujurp;False;True;t1_giso29p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisr4ax/;1610354475;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LittleWompRat;;;[];;;;text;t2_54bxq18h;False;False;[];;"The way the titan roars is just perfect. I feel like Eren is angry & sad inside.";False;False;;;;1610312143;;False;{};gisr5ut;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisr5ut/;1610354500;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pepperminthippos;;;[];;;;text;t2_9esi1c4;False;False;[];;hes too high on the hype, give em a couple minutes;False;False;;;;1610312163;;False;{};gisr7e7;False;t3_kujurp;False;True;t1_gisoif3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisr7e7/;1610354525;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sujallamichhaneakasl;;;[];;;;text;t2_3i2s1kbj;False;False;[];;GABI GANG GABI GANG GABI GANG!;False;False;;;;1610312164;;False;{};gisr7fp;False;t3_kujurp;False;False;t1_gismgw8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisr7fp/;1610354525;63;True;False;anime;t5_2qh22;;0;[]; -[];;;not_overwatch;;;[];;;;text;t2_1261g2;False;False;[];;The tension in this episode was insane;False;False;;;;1610312164;;False;{};gisr7fr;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisr7fr/;1610354525;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Naskr;;;[];;;;text;t2_hoc18;False;False;[];;You thought it was Reiner's friend but it was actually me, the most dangerous person on the entire planet! Thanks for running my spy operation.;False;False;;;;1610312166;;False;{};gisr7ks;False;t3_kujurp;False;False;t1_gisbgr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisr7ks/;1610354527;10;True;False;anime;t5_2qh22;;0;[]; -[];;;IFR_Flyer;;;[];;;;text;t2_6dir0gtb;False;False;[];;Oh love me Mister Krueger;False;False;;;;1610312169;;False;{};gisr7uh;False;t3_kujurp;False;False;t1_gisldmu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisr7uh/;1610354532;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;....as they can send you a grim reminder.;False;False;;;;1610312172;;False;{};gisr82z;False;t3_kujurp;False;False;t1_giscafj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisr82z/;1610354536;607;True;False;anime;t5_2qh22;;0;[]; -[];;;alucidexit;;;[];;;;text;t2_9y2uj;False;True;[];;"> and more bound to problems regarding the direction - -...which are influenced by time and budget constraints put on them by the production committee lol";False;False;;;;1610312177;;False;{};gisr8f0;False;t3_kujurp;False;False;t1_gisqev0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisr8f0/;1610354543;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DJ-Adios;;;[];;;;text;t2_5em8kiz2;False;False;[];;Did anybody else see that guy in the back getting hit by debris in slowmo when eren came out? lmao shit was hilarious. I needed to pause it for a second to laugh.;False;False;;;;1610312185;;False;{};gisr910;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisr910/;1610354553;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mrtheliger;;;[];;;;text;t2_11ghbg;False;False;[];;Not sure what is now but when she texted me she was seeing either #declaration or #declarationofwar but I'm not for sure which one;False;False;;;;1610312189;;False;{};gisr9a0;False;t3_kujurp;False;False;t1_gisjxwp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisr9a0/;1610354557;5;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;His plan of preventing the abuse of founding Titans power failed. That's something we both can agree to;False;False;;;;1610312196;;False;{};gisr9vk;False;t3_kujurp;False;False;t1_gisq50p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisr9vk/;1610354567;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hadouukken;;;[];;;;text;t2_3fopu84;False;False;[];;"Reiner literally shitting bricks while eren is just chilling there like “yo been a while” 😭 - -They definitely did this scene Justice, the VAs, the intensity, the little animation details.. everything was just perfect, it honestly felt better than the manga";False;False;;;;1610312210;;1610315858.0;{};gisray8;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisray8/;1610354584;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Zellough;;;[];;;;text;t2_f1xd1;False;False;[];;Reiner got a little too real there;False;False;;;;1610312213;;False;{};gisrb5c;False;t3_kujurp;False;True;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrb5c/;1610354587;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Tenroku;;;[];;;;text;t2_fx8kyu;False;False;[];;But can it declare war against all of the science-fiction series around the world like the lord and savior of anime EX-ARM? https://www.youtube.com/watch?v=0jCPQe9g-TE;False;False;;;;1610312220;;False;{};gisrbou;False;t3_kujurp;False;False;t1_gisbfkv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrbou/;1610354595;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Lemon1412;;;[];;;;text;t2_3m3p3;False;True;[];;Oh yeah! Good point! So there is some precedence here! Would actually be hilarious if he got the power this easily.;False;False;;;;1610312222;;False;{};gisrbul;False;t3_kujurp;False;False;t1_gisps18;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrbul/;1610354597;14;True;False;anime;t5_2qh22;;0;[]; -[];;;RaQziom;;MAL;[];;http://myanimelist.net/profile/RaQziom;dark;text;t2_90zh0;False;False;[];;So they are blaming Eren for taking over Fritz and be a possible aggressor when it all happened because of his father who was treated like slave and had his sister killed by Marley? I guess they can only blame themselves lol. Also, fuck these Tyburs, maybe the initial move to stop Eldians was good but then they did shit to keep the peace;False;False;;;;1610312233;;False;{};gisrcna;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrcna/;1610354610;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Dimmadeezy;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Dimmadeezy;light;text;t2_8bgv9i6r;False;False;[];;Oh boy Falco, you’ve really done it this time.;False;False;;;;1610312234;;False;{};gisrcqg;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrcqg/;1610354611;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Deleeson;;;[];;;;text;t2_5xaz4btz;False;False;[];;I will support Eren through thick and thin.;False;False;;;;1610312236;;False;{};gisrcxp;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrcxp/;1610354615;12;True;False;anime;t5_2qh22;;0;[]; -[];;;TheTruthVeritas;;;[];;;;text;t2_1056nw;False;False;[];;"Eren has gone through a lot of growth and he's such a sight to behold now. Reiner remembered that Eren got angry and swore that he'd give Reiner the most horrible death ever, and Eren is like: ""huh, I guess I did say that"" and grows past that and matures. Maybe even almost embarrassed about that phase. - -He's not going to attack Marley and kill lots of people for just anger and revenge for his mother and because of Reiner's betrayal. He knows the situation the world and the nations are in, and why he has to do this, and know that it's not a good thing to do. But, he has to do it. And he sympathizes with Reiner too, understanding how he felt and why he did it. - -God, this episode and AoT in general are such masterpieces. I loved the interactions and Reiner and Eren in this episode.";False;False;;;;1610312237;;False;{};gisrcy6;False;t3_kujurp;False;False;t1_gispgb0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrcy6/;1610354616;971;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;">I don't think it's fair to judge me for that right now. - -He said he deserves to be judged & wants to be killed.";False;True;;comment score below threshold;;1610312243;;False;{};gisrdho;False;t3_kujurp;False;True;t1_gisq24g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrdho/;1610354624;-30;True;False;anime;t5_2qh22;;0;[]; -[];;;IlyDenferno;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Denferno_C;light;text;t2_1617zfor;False;False;[];;OMG Eren you are a goat, that transformation at the end got me goosebumps and there was so much tension in the entire conversation;False;False;;;;1610312255;;False;{};gisrefh;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrefh/;1610354640;3;True;False;anime;t5_2qh22;;0;[]; -[];;;calmbeep;;;[];;;;text;t2_mvsgi;False;False;[];;"they even animate one of the audience got hit by the debris -https://imgur.com/a/LAx7MTL";False;False;;;;1610312266;;False;{};gisrf8w;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrf8w/;1610354653;96;True;False;anime;t5_2qh22;;0;[]; -[];;;OdinTyr-;;;[];;;;text;t2_3tiioz1b;False;False;[];;"3:50 into the episode. Eren talks about the residential building above for a total of 15 uninterrupted seconds. They show the people there during that time too. - -I get that you wanted them to show that family when he transforms, but I'd say 15 seconds of screen time dedicated to them being present the whole time is a good consolation.";False;False;;;;1610312266;;False;{};gisrf9t;False;t3_kujurp;False;True;t1_gispnms;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrf9t/;1610354653;3;False;False;anime;t5_2qh22;;0;[]; -[];;;Tinwibss;;;[];;;;text;t2_f6sv6;False;False;[];;I think the author says the exact same thing to a Figure of Reiner every time he sits down to write the story;False;False;;;;1610312284;;False;{};gisrgm7;False;t3_kujurp;False;False;t1_giseics;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrgm7/;1610354674;275;True;False;anime;t5_2qh22;;0;[]; -[];;;bootylover81;;;[];;;;text;t2_2bgkkoqf;False;False;[];;That scene of The Attack Titan coming out and destroying Willy with that music was so awesome....god, this episode was worth the wait;False;False;;;;1610312297;;False;{};gisrhmk;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrhmk/;1610354691;3;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;still doesnt work. whatever;False;False;;;;1610312299;;False;{};gisrhre;False;t3_kujurp;False;True;t1_gisqwgd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrhre/;1610354693;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610312302;;1610343924.0;{};gisrhzo;False;t3_kujurp;False;True;t1_gisnbhi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrhzo/;1610354696;-1;False;False;anime;t5_2qh22;;0;[]; -[];;;ihileath;;MAL;[];;http://myanimelist.net/animelist/Ihileath;dark;text;t2_rsvva;False;False;[];;Oh this was no sike. They *are* the same.;False;False;;;;1610312304;;False;{};gisri5q;False;t3_kujurp;False;False;t1_gisnkug;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisri5q/;1610354699;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Naskr;;;[];;;;text;t2_hoc18;False;False;[];;"""Everyone is Nazis"" 2: Electric Boogaloo";False;False;;;;1610312304;;False;{};gisri65;False;t3_kujurp;False;False;t1_gismeg1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisri65/;1610354699;7;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDevilUsurper;;;[];;;;text;t2_2dtjvi51;False;False;[];;This episode is everything I hoped it would be. I literally didn't breathe throughout the whole episode.;False;False;;;;1610312307;;1610317077.0;{};gisricc;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisricc/;1610354702;6;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;Amen comrade.;False;False;;;;1610312324;;False;{};gisrjoy;False;t3_kujurp;False;False;t1_gisrcxp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrjoy/;1610354723;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NyteLyte1;;;[];;;;text;t2_44d7k6bb;False;False;[];;*insert dream speedrun music*;False;False;;;;1610312326;;False;{};gisrjty;False;t3_kujurp;False;False;t1_gise39y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrjty/;1610354725;14;True;False;anime;t5_2qh22;;0;[]; -[];;;3jp6739;;;[];;;;text;t2_ifg1w;False;False;[];;Dude it was literally 2 episodes ago;False;False;;;;1610312329;;False;{};gisrk1g;False;t3_kujurp;False;False;t1_gisj0wk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrk1g/;1610354729;24;True;False;anime;t5_2qh22;;0;[]; -[];;;guardianultra;;;[];;;;text;t2_2ftilgaq;False;False;[];;Wait really , how.?;False;False;;;;1610312337;;False;{};gisrkmq;False;t3_kujurp;False;True;t1_gisri5q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrkmq/;1610354739;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Good, let's keep r/thingserendidwrong clean and empty!;False;False;;;;1610312344;;False;{};gisrl4d;False;t3_kujurp;False;True;t1_gisrcxp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrl4d/;1610354746;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Earthborn92;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EarthB;light;text;t2_al1wj;False;False;[];;Kernel panic.;False;False;;;;1610312355;;False;{};gisrlzv;False;t3_kujurp;False;False;t1_gisbl4f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrlzv/;1610354760;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MilkToastKing;;;[];;;;text;t2_13tvvu;False;False;[];;Eren had the whole setup. Pre-cut hand, hostages above them, and two chairs where Reiner had no choice but to wait for the declaration of war.;False;False;;;;1610312359;;False;{};gisrm9j;False;t3_kujurp;False;False;t1_gisr06p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrm9j/;1610354764;877;True;False;anime;t5_2qh22;;0;[]; -[];;;david_pridson;;;[];;;;text;t2_1tlzbkfk;False;False;[];;Thankyou for the laugh kind stranger;False;False;;;;1610312362;;False;{};gisrmio;False;t3_kujurp;False;False;t1_gishbh6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrmio/;1610354768;14;True;False;anime;t5_2qh22;;0;[]; -[];;;winasta;;;[];;;;text;t2_pgljym5;False;False;[];;hmmmmm. i think this was definitely better but mappa's version in no way as shit as the titanfolk subreddit is making it to be, instead of having the ost being badass and epic and something that would make you get hyped for war. it's rather sad as the conversation between eren and reiner is quite fucked up and then just complete silence as only the pay off comes straight at you.;False;False;;;;1610312365;;False;{};gisrmrj;False;t3_kujurp;False;False;t1_giska0j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrmrj/;1610354771;37;True;False;anime;t5_2qh22;;0;[]; -[];;;aniviasrevenge;;;[];;;;text;t2_64n5l;False;False;[];;"**Reiner: ""Eren... How? Why did you come here \[to Marley\]?""** - -**Eren: ""Same reason you \[came to Paradis\]""** - -This episode was directed so masterfully to foreshadow bloody symmetry between what happened in Shiganshina and what is about to happen in Liberio. - -We see Falco process dawning dread then anguished betrayal as he slowly realizes this fellow soldier he developed a friendship with is not only no friend of Reiner's, but a foe of Marley-- an echo of the disbelief we saw on Eren's face when Reiner outed himself and Bertholdt as the Armored and Colossal Titans. - -**Reiner: Annie and Bertholdt tried to turn back and end the mission... but I.. I talked them into it and made them go on! It's my fault! I'm sick of this... of myself! Just kill me!** - -**Eren:** *offers a hand* **""Like I thought, I'm the same as you. I think we were born this way. I keep moving forward...""** - -*Look of disbelieving hope on Reiner's face as he confronts the guilt that has tortured him for years-- will Eren be the bigger man here and break the cycle of vengeance?* - -**Eren: ""...until I destroy my enemies""** - -I am... still processing how incredible this was. Masterful.";False;False;;;;1610312378;;1610322569.0;{};gisrns1;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrns1/;1610354787;95;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610312383;moderator;False;{};gisro4n;False;t3_kujurp;False;True;t1_gisn7h3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisro4n/;1610354792;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Skywest96;;MAL;[];;https://myanimelist.net/profile/Skywest;dark;text;t2_4yo8f1v;False;False;[];;"- S1 S3 Eren : Call an ambulance -- S4 Eren : But not for me.";False;False;;;;1610312391;;False;{};gisropm;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisropm/;1610354801;711;True;False;anime;t5_2qh22;;0;[]; -[];;;uramis;;;[];;;;text;t2_7gg3a;False;False;[];;">Whereas some other series the character is being cruel for the sake of being cruel - -Not exactly this but Danaerys final season GOT oh my fucking god";False;False;;;;1610312397;;False;{};gisrp6d;False;t3_kujurp;False;False;t1_gishl8w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrp6d/;1610354808;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Lukas04;;;[];;;;text;t2_16mozp;False;False;[];;I swear i could go on to r/animememes and find someone who uses that screenshot for a meme;False;False;;;;1610312403;;False;{};gisrpku;False;t3_kujurp;False;False;t1_giscm9k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrpku/;1610354814;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ihileath;;MAL;[];;http://myanimelist.net/animelist/Ihileath;dark;text;t2_rsvva;False;False;[];;Eren himself recognises that this isn't fair. But he's *doing it anyway.*;False;False;;;;1610312404;;False;{};gisrpp4;False;t3_kujurp;False;False;t1_gisgcxz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrpp4/;1610354815;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Mrtheliger;;;[];;;;text;t2_11ghbg;False;False;[];;"It's a direct callback to Carla saying the same thing regarding Eren. ""He is already special because he was born into this world."" Life in Attack on Titan is treated as an inherent gift, and those who treat it as such tend to be those who grasp their destiny with their own hands.";False;False;;;;1610312406;;False;{};gisrptc;False;t3_kujurp;False;False;t1_gishd5x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrptc/;1610354817;27;True;False;anime;t5_2qh22;;0;[]; -[];;;suicidalcentipede8;;;[];;;;text;t2_10723s;False;False;[];;LETS FUCKING GOOOOOOOOO;False;False;;;;1610312415;;False;{};gisrqh5;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrqh5/;1610354827;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;Eren is my favorite protagonist ever;False;False;;;;1610312418;;False;{};gisrqpg;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrqpg/;1610354830;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Sujallamichhaneakasl;;;[];;;;text;t2_3i2s1kbj;False;False;[];;For this very moment....everybody was led by these memories.....;False;False;;;;1610312426;;False;{};gisrrcm;False;t3_kujurp;False;True;t1_gisf5c2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrrcm/;1610354841;1;True;False;anime;t5_2qh22;;0;[]; -[];;;se-mise;;;[];;;;text;t2_3dsgss2x;False;False;[];;Legit had to pause after every sentence between Reiner and Eren, the tension was INSANE!!;False;False;;;;1610312431;;False;{};gisrrpr;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrrpr/;1610354846;3;True;False;anime;t5_2qh22;;0;[]; -[];;;holyfrickheck;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/lillianzheng;light;text;t2_5q0vw47x;False;False;[];;poor falco;False;False;;;;1610312448;;False;{};gisrt06;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrt06/;1610354866;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hadouukken;;;[];;;;text;t2_3fopu84;False;False;[];;Save this comment and come back to it in a few months lmao;False;False;;;;1610312459;;False;{};gisrtuu;False;t3_kujurp;False;False;t1_giskjel;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrtuu/;1610354879;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinsekai21;;;[];;;;text;t2_10od0m;False;False;[];;"Yeah AoT is really unpredictable. - -Whatever your predictions are right now, they are highly wrong. - -We are 3 chapters away from the ending and we still dont know how it will end. - -This show is really something";False;False;;;;1610312461;;False;{};gisru0k;False;t3_kujurp;False;False;t1_gisd6up;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisru0k/;1610354881;11;True;False;anime;t5_2qh22;;0;[]; -[];;;PortoGuy18;;;[];;;;text;t2_2fidx1m;False;False;[];;Not all of them. This Declaration of War was made in Liberio, the zone where Eldians live in Marley. So all the people in the building that Eren killed by transforming died and those people were just like Grisha (his father).;False;False;;;;1610312475;;False;{};gisrv22;False;t3_kujurp;False;True;t1_gisrcna;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrv22/;1610354897;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Neronoah;;;[];;;;text;t2_igav3;False;False;[];;Going to the surface first at least?;False;False;;;;1610312484;;False;{};gisrvq9;False;t3_kujurp;False;False;t1_gisqivq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrvq9/;1610354907;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;spaghetti_freak;;;[];;;;text;t2_fv67w;False;False;[];;Its defi itely the moral foundation of the show, of how much responsibility do chara ters like reiner and Eren hold in all of this. And Im not sure Isayama will even provide an answer since any answer you give seem slile it will always come up short;False;False;;;;1610312493;;False;{};gisrwhe;False;t3_kujurp;False;False;t1_gisqxbm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrwhe/;1610354919;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Space_Dwarf;;;[];;;;text;t2_w8dso;False;False;[];;Yeah noticed that too. And I could recognize what Titan it was for too;False;False;;;;1610312500;;False;{};gisrwzq;False;t3_kujurp;False;False;t1_giskica;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrwzq/;1610354927;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Eyepatch_kaneki;;;[];;;;text;t2_65auxjsf;False;False;[];;https://youtu.be/MFjEI91u3bs;False;False;;;;1610312502;;False;{};gisrx2v;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrx2v/;1610354928;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GaaraOmega;;;[];;;;text;t2_fi02o;False;False;[];;OST choice and execution of the final scene.;False;False;;;;1610312530;;False;{};gisrz8o;False;t3_kujurp;False;False;t1_gisqsyg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisrz8o/;1610354961;3;True;False;anime;t5_2qh22;;0;[]; -[];;;uramis;;;[];;;;text;t2_7gg3a;False;False;[];;I was preparing to argue but in my head I lost at every argument I threw;False;False;;;;1610312544;;False;{};giss0c4;False;t3_kujurp;False;True;t1_giskc2y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giss0c4/;1610354976;2;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610312544;moderator;False;{};giss0cj;False;t3_kujurp;False;True;t1_gishrg3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giss0cj/;1610354976;1;True;False;anime;t5_2qh22;;0;[]; -[];;;damageis_done;;;[];;;;text;t2_47n90bpm;False;False;[];;Not to mention his surname is GRICE.;False;False;;;;1610312545;;False;{};giss0go;False;t3_kujurp;False;False;t1_giscnq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giss0go/;1610354979;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ReKonCIle_3;;;[];;;;text;t2_8gditkp;False;False;[];;"JESUS CHRIST WHAT A RIDE - -everything about this episode was perfect: the parallels, the ost, the tension holy shit";False;False;;;;1610312549;;False;{};giss0qe;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giss0qe/;1610354982;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;The moment the War starts everyone has already lost. No one who survives will come out untainted from the other side.;False;False;;;;1610312558;;False;{};giss1dl;False;t3_kujurp;False;False;t1_gislhdz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giss1dl/;1610354992;18;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610312559;;False;{};giss1ea;False;t3_kujurp;False;True;t1_gisr4ax;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giss1ea/;1610354992;1;True;False;anime;t5_2qh22;;0;[]; -[];;;osccry;;;[];;;;text;t2_31a39b5h;False;False;[];;All this build up, just for him to pop out destroying everything was so fucking good.;False;False;;;;1610312562;;False;{};giss1lz;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giss1lz/;1610354996;3;True;False;anime;t5_2qh22;;0;[]; -[];;;--annyeong--;;;[];;;;text;t2_2mvcuyfr;False;False;[];;HOLY SHIT that was good;False;False;;;;1610312564;;False;{};giss1s0;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giss1s0/;1610354998;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;\-ass, just like Rick Grimes back when we watched TWD.;False;False;;;;1610312564;;False;{};giss1tl;False;t3_kujurp;False;True;t1_gism7z9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giss1tl/;1610354998;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PikaBooSquirrel;;;[];;;;text;t2_rskr4m0;False;False;[];;"Anime-onlys, I would like to introduce you to Chad Eren. - -Long live the days of shounen Eren";False;False;;;;1610312564;;False;{};giss1ul;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giss1ul/;1610354998;9;True;False;anime;t5_2qh22;;0;[]; -[];;;anthonychen726;;;[];;;;text;t2_fgmci;False;False;[];;Best episode of the anime so far!!!;False;False;;;;1610312574;;False;{};giss2k8;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giss2k8/;1610355011;5;True;False;anime;t5_2qh22;;0;[]; -[];;;pepperminthippos;;;[];;;;text;t2_9esi1c4;False;False;[];;it was a 10 second scene, what did you expect for the ost? i think they're gonna use the leaked ost next ep for the fight;False;False;;;;1610312583;;False;{};giss37r;False;t3_kujurp;False;True;t1_gisrz8o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giss37r/;1610355020;2;True;False;anime;t5_2qh22;;0;[]; -[];;;seninn;;MAL;[];;http://myanimelist.net/animelist/Senninn0;dark;text;t2_fw8p2;False;False;[];;Modern Classic;False;False;;;;1610312584;;False;{};giss39t;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giss39t/;1610355021;6;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;Is it just me or does Erens titan look 2x the size it was before;False;False;;;;1610312590;;False;{};giss3ph;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giss3ph/;1610355028;4;True;False;anime;t5_2qh22;;0;[]; -[];;;fadasd1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/fadasd;light;text;t2_jbsu6;False;False;[];;Eren is too cool to kill you before you formally declare war.;False;False;;;;1610312590;;False;{};giss3pj;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giss3pj/;1610355028;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinsekai21;;;[];;;;text;t2_10od0m;False;False;[];;And it also gets better and better after this.;False;False;;;;1610312607;;False;{};giss50s;False;t3_kujurp;False;True;t1_gisbj8o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giss50s/;1610355047;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jalsdfk;;;[];;;;text;t2_9qqmqk0p;False;False;[];;It was adapted great.;False;False;;;;1610312625;;False;{};giss6al;False;t3_kujurp;False;False;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giss6al/;1610355067;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610312625;;1610343931.0;{};giss6an;False;t3_kujurp;False;True;t1_gisnhgr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giss6an/;1610355067;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;So far best ass is leading, no wonder.;False;False;;;;1610312627;;False;{};giss6gm;False;t3_kujurp;False;True;t1_gislz57;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giss6gm/;1610355069;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Death_InBloom;;;[];;;;text;t2_sgnvb;False;False;[];;"Eren probably: - -#GG NOOB, GIT GUD!";False;False;;;;1610312632;;False;{};giss6sr;False;t3_kujurp;False;False;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giss6sr/;1610355074;6;True;False;anime;t5_2qh22;;0;[]; -[];;;bootylover81;;;[];;;;text;t2_2bgkkoqf;False;False;[];;They should have brought in Isayama to write Gane of Thrones when they ran out of books;False;False;;;;1610312637;;False;{};giss761;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giss761/;1610355080;16;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;Then... everything changed when Eren Yeager attacked.;False;False;;;;1610312651;;False;{};giss843;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giss843/;1610355093;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinsekai21;;;[];;;;text;t2_10od0m;False;False;[];;"Future episodes are better than this lol. - -You are not ready";False;False;;;;1610312665;;False;{};giss950;False;t3_kujurp;False;True;t1_gisbinb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giss950/;1610355109;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Cirby64;;MAL;[];;"http://myanimelist.net/animelist/Cirby64&show=0&order=4";dark;text;t2_a3ej2;False;False;[];;Is this copy pasted from the original manga discussion thread? I feel like I've read this exact comment before lol.;False;False;;;;1610312693;;False;{};gissb8f;False;t3_kujurp;False;False;t1_gisak3a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissb8f/;1610355142;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Sujallamichhaneakasl;;;[];;;;text;t2_3i2s1kbj;False;False;[];;If you think this is amazing.....Prepare yourself cause everything just gets better from here on out.;False;False;;;;1610312697;;False;{};gissbj1;False;t3_kujurp;False;False;t1_gisjqdw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissbj1/;1610355146;28;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;"Well its not just 5. The entire dtuff that will happen in the next few episodes will be hype - -And also close to the end of the series";False;False;;;;1610312706;;False;{};gisscak;False;t3_kujurp;False;True;t1_gisaex2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisscak/;1610355159;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sumitsindhu;;;[];;;;text;t2_2i2e489j;False;False;[];;Watched twice ,same goosebumps.;False;False;;;;1610312711;;False;{};gisscm5;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisscm5/;1610355164;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cms40;;;[];;;;text;t2_1v2s33jm;False;False;[];;When do new episodes come out;False;False;;;;1610312716;;False;{};gisscz6;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisscz6/;1610355170;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NintendoMasterNo1;;MAL;[];;http://myanimelist.net/animelist/NintendoMaster1;dark;text;t2_eg21m;False;False;[];;"[manga spoilers](/s ""It's crazy for me that when Willy was saying how there's millions of titans in the walls, waiting to trample the world, this actually ended up happening. When I first read this in the manga, I was like ""Yeah, yeah, it's just an empty threat, there's no way they'll actually do it"". But here we are now and the Rumbling is a reality."")";False;False;;;;1610312718;;False;{};gissd2g;False;t3_kujurp;False;False;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissd2g/;1610355171;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Death_InBloom;;;[];;;;text;t2_sgnvb;False;False;[];;#sasuga Isayama-sama;False;False;;;;1610312722;;False;{};gissdep;False;t3_kujurp;False;False;t1_gisfgrb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissdep/;1610355176;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Rusik_94;;;[];;;;text;t2_17jhhx;False;False;[];;"I'm also curious about the Asian lady. Everyone wants to see the play but she goes away... -She knows something?";False;False;;;;1610312723;;False;{};gissdhb;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissdhb/;1610355177;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Improctor;;;[];;;;text;t2_xngl9;False;False;[];;5k+ upvotes in 2hrs, WTF;False;False;;;;1610312729;;False;{};gissdzm;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissdzm/;1610355184;12;True;False;anime;t5_2qh22;;0;[]; -[];;;GaaraOmega;;;[];;;;text;t2_fi02o;False;False;[];;"It could've been louder, the OST was quiet for such a big moment. Or they could've used [YOUSEEBIGGIRL](https://www.youtube.com/watch?v=aXVE1Rr8XtE&). - -Not just the OST I was talking about but the slam was a big anti-climatic with the smoke blocking it and the fast transitions (the direction of the scene felt off).";False;False;;;;1610312737;;1610313072.0;{};gissel8;False;t3_kujurp;False;True;t1_giss37r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissel8/;1610355194;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DanteVSTheWorld;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gutsberzerk?status=2&order=4&o";light;text;t2_ehm5m;False;False;[];;"Two week delay and the worst cliff hanger ever what is it with this show and cliff hangers man fuuuuuuu - -P.S that transformation scene was SO GOOD - -P.S.S I loved how they used the soundtrack from when the titans first breached the walls, now its entirely flipped, Eren has breached the world and its now the world that fears those walls! omg";False;False;;;;1610312738;;1610315159.0;{};gissemi;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissemi/;1610355194;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Naskr;;;[];;;;text;t2_hoc18;False;False;[];;"""Ah, I see you are a man who moves forward as well.""";False;False;;;;1610312747;;False;{};gissfcz;False;t3_kujurp;False;False;t1_gisbjvm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissfcz/;1610355205;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Krillin157;;;[];;;;text;t2_16gl9g3s;False;False;[];;Where’s Kendall Jenner to give Reiner a Pepsi;False;False;;;;1610312749;;False;{};gissfgb;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissfgb/;1610355206;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610312753;;1610344014.0;{};gissfqs;False;t3_kujurp;False;False;t1_gisquw0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissfqs/;1610355211;6;False;False;anime;t5_2qh22;;0;[]; -[];;;Death_InBloom;;;[];;;;text;t2_sgnvb;False;False;[];;Reiner 2: Electric Boogaloo;False;False;;;;1610312763;;False;{};gissgi3;False;t3_kujurp;False;False;t1_giscnq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissgi3/;1610355223;20;True;False;anime;t5_2qh22;;0;[]; -[];;;DogmaErgosphere;;;[];;;;text;t2_18ieyu;False;False;[];;Also Ereh: I am just like you Laina;False;False;;;;1610312773;;False;{};gissh6v;False;t3_kujurp;False;True;t1_gisd65h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissh6v/;1610355234;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LordJike;;;[];;;;text;t2_e9j7p;False;False;[];;Is it me, or this mirrors pretty well Eren having the colossal titan appear behind him right as he was thinking he'd be able to start the counterattack?;False;False;;;;1610312778;;False;{};gisshlc;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisshlc/;1610355240;2;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;15 minutes ago every week. Not sure on your timezone.;False;False;;;;1610312788;;False;{};gissian;False;t3_kujurp;False;True;t1_gisscz6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissian/;1610355250;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;_UEEEEEUUUUUUUUUUHHHHH_;False;False;;;;1610312805;;False;{};gissjjy;False;t3_kujurp;False;False;t1_gisnge1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissjjy/;1610355271;9;True;False;anime;t5_2qh22;;0;[]; -[];;;unknown537;;;[];;;;text;t2_20519zb3;False;False;[];;Hmm... looking at the rate of the upvotes, yep. This will easily cross 20k again. Crossing this in ranking is out of question. Let's see if Re Zero will get atleast 75% of AoT upvotes.;False;False;;;;1610312820;;False;{};gisskmc;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisskmc/;1610355286;16;True;False;anime;t5_2qh22;;0;[]; -[];;;shox12345;;;[];;;;text;t2_n8dvf;False;False;[];;"For a moment, I think Eren though about not doing that, when Willy said ""I don't want to die, because I was born into this world"", but when he continues with uniting against Paradis, you could see Eren close his eyes, realizing there is no way they will ever let Paradis live in peace... so into the titan form he goes.";False;False;;;;1610312827;;False;{};gissl4e;False;t3_kujurp;False;False;t1_gisjiu8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissl4e/;1610355294;295;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Good guys don't declare wars, Eren even mentions he has allies and we all know Allied Forces have always been the good side.;False;False;;;;1610312828;;False;{};gissl7e;False;t3_kujurp;False;True;t1_gism07l;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissl7e/;1610355295;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Cali4Ya;;;[];;;;text;t2_86zon;False;False;[];;“now it’s your turn to be the the starving orphan with the knife”;False;False;;;;1610312830;;False;{};gisslbl;False;t3_kujurp;False;False;t1_gisafs9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisslbl/;1610355297;47;True;False;anime;t5_2qh22;;0;[]; -[];;;HMarraha;;;[];;;;text;t2_3gde2k01;False;False;[];;Bro I actually got more hyped when the colossal titans were shown.;False;False;;;;1610312843;;False;{};gissmc2;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissmc2/;1610355312;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610312853;;False;{};gissn3g;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissn3g/;1610355324;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sharmarahulkohli;;;[];;;;text;t2_12gbee;False;False;[];;He's a big fan as well,He would've definitely done a much better job;False;False;;;;1610312870;;False;{};gissocr;False;t3_kujurp;False;False;t1_giss761;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissocr/;1610355343;9;True;False;anime;t5_2qh22;;0;[]; -[];;;perfectbluu;;MAL;[];;https://myanimelist.net/profile/MoghyBear;dark;text;t2_12b79d;False;False;[];;Quite a few people ran into this issue because they didn't realize there was a Season 3 Part 2;False;False;;;;1610312871;;False;{};gissof7;False;t3_kujurp;False;False;t1_gisr2ha;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissof7/;1610355343;48;True;False;anime;t5_2qh22;;0;[]; -[];;;DrPavel_Im_CIA;;;[];;;;text;t2_muhwd;False;False;[];;"Weird perspective choices, questionable pacing between shots, overall pacing being not very good. - -Like when Eren says ""he will exterminate his enemies"" he's pretty much whispering while having weird cuts and rearrangements between the shots from how they happaned in the manga. Having those anime only soldier scenes were unneeded and they should have spent those shots on having the iconic panel of Eren and Reiner shaking hands while his hands glows rather than removing it completely and only having the zoomed in shot on the hands. - -Sure, a lot of this is nittypicky but that's the difference between good and truly something else. - -Was not a fan of the OST either but hard to say what kind of OST they should have used without completely changing the pacing and direction of the scene. - -Personally, I would have liked something more similar to this. -https://youtu.be/500N3UNA30k - -Edit: You don't need to be so trigger happy with the downvote button, if you disagree then you're entitled to disagreeing of course.";False;False;;;;1610312876;;1610313686.0;{};gissotf;False;t3_kujurp;False;False;t1_gisqsyg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissotf/;1610355350;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;PortoGuy18;;;[];;;;text;t2_2fidx1m;False;False;[];;He is a gentleman of course.;False;False;;;;1610312881;;False;{};gissp77;False;t3_kujurp;False;True;t1_giss3pj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissp77/;1610355356;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hiyasc;;;[];;;;text;t2_61tx0;False;False;[];;"I said this during the first episode as well but it's incredible how fast these episodes go. This episode was almost entirely dialogue but it felt like I was only watching it for a couple of minutes before it ended. It's absolutely enthralling. - -The tension in this is also remarkable. It's rare that I can feel my heart racing from the very start of an episode, but I was on the edge of my seat the entire time. I knew something was going to happen but I didn't know what. - -Focusing on Falco for the first 4 episodes of this is brilliant. It would be so easy to paint everyone outside of Paradis as inhuman monsters, but by following him we can plainly see that is not the case. Even Reiner and Zeke have their own motivations and demons. It's rare to see ambiguous morality done well, but this hits it out of the park and makes it that much harder to be happy about what's happening.";False;False;;;;1610312902;;1610313500.0;{};gissqo9;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissqo9/;1610355378;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Death_InBloom;;;[];;;;text;t2_sgnvb;False;False;[];;the poor bastards;False;False;;;;1610312903;;False;{};gissqs6;False;t3_kujurp;False;False;t1_gissof7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissqs6/;1610355379;37;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoBadBrad;;;[];;;;text;t2_kn6vc;False;False;[];;I was going today this too. The roar was.... Not good.;False;False;;;;1610312905;;False;{};gissqwu;False;t3_kujurp;False;True;t1_gisjgxc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissqwu/;1610355381;1;True;False;anime;t5_2qh22;;0;[];True -[];;;Ashish_Trip;;;[];;;;text;t2_2t89pxeq;False;False;[];;I've never had such chills while watching eren. I've had a lot of thrills, but this episode tales the cake......... Eren is frightening (literal definition of 'Child of war');False;False;;;;1610312907;;False;{};gissr2h;False;t3_kujurp;False;False;t1_gisq9q0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissr2h/;1610355383;46;True;False;anime;t5_2qh22;;0;[]; -[];;;LTOver9k;;;[];;;;text;t2_14yran;False;False;[];;I've waited so long to see this animated and I actually started crying at the end. Making me cry at a show is super difficult to do and MAPPA barely had to try.;False;False;;;;1610312915;;False;{};gissrn5;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissrn5/;1610355393;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bootylover81;;;[];;;;text;t2_2bgkkoqf;False;False;[];;If you follow manga there is no doubt he would have done it justice instead of the shitshow we got;False;False;;;;1610312930;;False;{};gissssi;False;t3_kujurp;False;False;t1_gissocr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissssi/;1610355409;2;True;False;anime;t5_2qh22;;0;[]; -[];;;godblow;;;[];;;;text;t2_kigl8;False;False;[];;"That callback to ""because I was born into this world""... hot damn, Willy quoting Eren's mom.";False;False;;;;1610312934;;False;{};gisst1c;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisst1c/;1610355412;75;True;False;anime;t5_2qh22;;0;[]; -[];;;Lonystal;;;[];;;;text;t2_3lg5t9v;False;False;[];;Everybody gangsta until some dude says he's gonna keep moving forward until his enemies are destroyed;False;False;;;;1610312935;;False;{};gisst4n;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisst4n/;1610355415;7;True;False;anime;t5_2qh22;;0;[]; -[];;;serrations_;;;[];;;;text;t2_l8zix;False;False;[];;Oh man, imagine if the confusion that caused was how WWIII began;False;False;;;;1610312936;;1610314221.0;{};gisst66;False;t3_kujurp;False;False;t1_gisarcw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisst66/;1610355415;8;True;False;anime;t5_2qh22;;0;[]; -[];;;LordtoRevenge;;;[];;;;text;t2_96j0f;False;True;[];;I can't close my jaw;False;False;;;;1610312937;;False;{};gisst9p;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisst9p/;1610355416;6;True;False;anime;t5_2qh22;;0;[]; -[];;;mrbuttslappp;;;[];;;;text;t2_7e8awfqw;False;False;[];;Wow, this episode makes you feel so bad for Reiner. You can hear the regret and sadness in his voice.;False;False;;;;1610312939;;False;{};gisstcy;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisstcy/;1610355417;7;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;Bruh the music was so good!!!;False;False;;;;1610312941;;False;{};gisstj3;False;t3_kujurp;False;False;t1_gisjqdw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisstj3/;1610355421;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Sujallamichhaneakasl;;;[];;;;text;t2_3i2s1kbj;False;False;[];;"Imagine when this run of episodes ends....I don't know how people will be able to keep being ""anime onlys"" once the season ends at chapter 122. The hype.....it can't be stopped anymore.";False;False;;;;1610312951;;False;{};gissu7u;False;t3_kujurp;False;False;t1_gisfvmg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissu7u/;1610355430;5;True;False;anime;t5_2qh22;;0;[]; -[];;;bnichols924;;;[];;;;text;t2_15y03a;False;False;[];;I fucking love this show.;False;False;;;;1610312953;;False;{};gissudz;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissudz/;1610355433;3;True;False;anime;t5_2qh22;;0;[]; -[];;;re6en;;MAL;[];;http://myanimelist.net/profile/Turtlepower;dark;text;t2_6ekq1;False;False;[];;THE WAR FUCKING BEGINS;False;False;;;;1610312960;;False;{};gissuv0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissuv0/;1610355439;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MunQQ;;;[];;;;text;t2_5wtgg;False;False;[];;move on;False;False;;;;1610312967;;False;{};gissve3;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissve3/;1610355447;3;True;False;anime;t5_2qh22;;0;[]; -[];;;janoDX;;;[];;;;text;t2_bowtb;False;False;[];;"As a manga reader: - -&#x200B; - -Bravo, fucking, bravo. Top 3 episode of the entire show. Easily.";False;False;;;;1610312994;;False;{};gissxdg;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissxdg/;1610355478;17;True;False;anime;t5_2qh22;;0;[]; -[];;;kahzel;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kahzel;light;text;t2_bcvnx;False;False;[];;you mean like she always has looked like instead of the bastard waifu WIT made out of her?;False;False;;;;1610312999;;False;{};gissxqm;False;t3_kujurp;False;True;t1_gisquw0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissxqm/;1610355484;0;True;False;anime;t5_2qh22;;0;[]; -[];;;tiour;;;[];;;;text;t2_5ktwaudn;False;False;[];;why are you being downvoted lol;False;False;;;;1610313010;;False;{};gissyn5;False;t3_kujurp;False;False;t1_gisskmc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gissyn5/;1610355496;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Xiknail;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Xiknail;light;text;t2_l27az;False;False;[];;We're going to ~~Tahiti~~ Paradis!;False;False;;;;1610313039;;False;{};gist0od;False;t3_kujurp;False;False;t1_gisifgc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist0od/;1610355526;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Dedicate your basements!;False;False;;;;1610313043;;False;{};gist0yk;False;t3_kujurp;False;False;t1_gisg9of;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist0yk/;1610355530;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ModieOfTheEast;;;[];;;;text;t2_g7tqk9b;False;False;[];;But the same is true for the current plan and didn't seem to have been that much of a problem. I mean, I don't know the details yet, but I don't assume they only infiltrated with a handful of people. They were probably able to infiltrate with their whole army without a fleet and probably all condensed in Marley. And there was not one who even suspected anything.;False;False;;;;1610313050;;False;{};gist1hx;False;t3_kujurp;False;True;t1_gisjyq4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist1hx/;1610355539;1;True;False;anime;t5_2qh22;;0;[]; -[];;;serrations_;;;[];;;;text;t2_l8zix;False;False;[];;Nobody show up to Liberio today;False;False;;;;1610313052;;False;{};gist1ou;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist1ou/;1610355542;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610313060;;False;{};gist29h;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist29h/;1610355551;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;That seems to high. Im going 13-14k but I hope im wrong;False;False;;;;1610313063;;False;{};gist2fg;False;t3_kujurp;False;True;t1_giscepb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist2fg/;1610355553;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610313079;;1610344008.0;{};gist3ng;False;t3_kujurp;False;True;t1_gismf6d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist3ng/;1610355573;0;False;False;anime;t5_2qh22;;0;[]; -[];;;PussyLunch;;;[];;;;text;t2_1fmdt0pe;False;False;[];;This is the way;False;False;;;;1610313082;;False;{};gist3w9;False;t3_kujurp;False;False;t1_gisa7d4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist3w9/;1610355577;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nanoman92;;;[];;;;text;t2_j2h04;False;False;[];;This was Trump's plan A, hide under the capitol and transform into a Titan when the vote was about to be certified and smash Pence, but had to cancel it and went with plan B;False;False;;;;1610313085;;False;{};gist431;False;t3_kujurp;False;False;t1_gisbril;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist431/;1610355579;34;True;False;anime;t5_2qh22;;0;[]; -[];;;Mechamonk;;;[];;;;text;t2_3po8ltzp;False;False;[];;*Fate flashbacks*;False;False;;;;1610313087;;False;{};gist47y;False;t3_kujurp;False;False;t1_gisr2ha;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist47y/;1610355581;8;True;False;anime;t5_2qh22;;0;[]; -[];;;YyoungChris;;;[];;;;text;t2_13eexsx4;False;False;[];;KEEP MOVING FOWARD;False;False;;;;1610313092;;False;{};gist4mi;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist4mi/;1610355587;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610313096;moderator;False;{};gist4x3;False;t3_kujurp;False;True;t1_gist29h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist4x3/;1610355592;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Degrasssi;;;[];;;;text;t2_7j6rjan5;False;False;[];;Damn you eren... hurting falco’s feelings like that, poor boy;False;False;;;;1610313097;;False;{};gist4y4;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist4y4/;1610355592;3;True;False;anime;t5_2qh22;;0;[]; -[];;;janoDX;;;[];;;;text;t2_bowtb;False;False;[];;Hasan Yaeger;False;False;;;;1610313097;;False;{};gist4ys;False;t3_kujurp;False;True;t1_gisb0e6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist4ys/;1610355592;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ArchAngel_118;;;[];;;;text;t2_5ruh8wci;False;False;[];;What if the real Founding Titan was the friends we made along the way?;False;False;;;;1610313103;;False;{};gist5df;False;t3_kujurp;False;True;t1_gisebjb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist5df/;1610355598;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Squidilicious1;;;[];;;;text;t2_tzd62;False;False;[];;"In terms of just creating pure tension, I can't think of any episode of anime I've ever seen that did that better than this. - -That was absurdly good.";False;False;;;;1610313113;;False;{};gist64u;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist64u/;1610355610;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Saberem;;;[];;;;text;t2_36egq60o;False;False;[];;"the art style is so different lmao - -i know the current one is more true to the manga but its so polarizing to watch flashbacks";False;False;;;;1610313116;;False;{};gist6ce;False;t3_kujurp;False;False;t1_gisafs9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist6ce/;1610355613;38;True;False;anime;t5_2qh22;;0;[]; -[];;;jojoismyreligion;;;[];;;;text;t2_5j56wzq4;False;False;[];;Only 3 chapters are left.;False;False;;;;1610313117;;False;{};gist6er;False;t3_kujurp;False;False;t1_gisn3sq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist6er/;1610355614;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Tragedy to them, victory to Eren and his abs.;False;False;;;;1610313117;;False;{};gist6ew;False;t3_kujurp;False;True;t1_gisbj8o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist6ew/;1610355614;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mana_Croissant;;;[];;;;text;t2_30m68690;False;False;[];;This seems VERY CULTURED out of context;False;False;;;;1610313119;;False;{};gist6l3;False;t3_kujurp;False;False;t1_gislt2i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist6l3/;1610355616;112;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;A tiny moment of hope in front of the cold winds of war, extinguished as quickly as it was born.;False;False;;;;1610313128;;False;{};gist77x;False;t3_kujurp;False;False;t1_gissl4e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist77x/;1610355626;98;True;False;anime;t5_2qh22;;0;[]; -[];;;chandr;;;[];;;;text;t2_9ucfo;False;False;[];;technically, they just declared war right before Eren attacked so I'm going with proactive self defense there;False;False;;;;1610313129;;False;{};gist79v;False;t3_kujurp;False;False;t1_giscr3k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist79v/;1610355626;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Brady331;;;[];;;;text;t2_16pd6b;False;False;[];;I NEED THE NEXT EPISODE NOWWW;False;False;;;;1610313130;;False;{};gist7dr;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist7dr/;1610355628;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Ggameplayer;;;[];;;;text;t2_sav88;False;False;[];;Each episode just leaves me wondering about what just happened and how the next episode will be, ¿Was Armin the soldier who lured Porco and Pieck to the pit? After watching the trailer ¿What's going to happen to Zeke? ¿Why did Magath not warn about the attack? Willy dying was always a part of the plan to give the world a new hero? Now that the whole world is at war with Paradis, who does Eren think are their true enemies? Each episode brings more questions than answers.;False;False;;;;1610313144;;False;{};gist8cu;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist8cu/;1610355643;11;True;False;anime;t5_2qh22;;0;[]; -[];;;WorkAccount_NoNSFW;;;[];;;;text;t2_6cci20l;False;False;[];;I thought the manga was over?;False;False;;;;1610313146;;False;{};gist8l6;False;t3_kujurp;False;False;t1_gisegnh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist8l6/;1610355647;13;False;False;anime;t5_2qh22;;0;[]; -[];;;Boss_Jerm;;;[];;;;text;t2_1osuc0w;False;False;[];;#GRIM REMINDER;False;False;;;;1610313148;;False;{};gist8pc;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist8pc/;1610355649;3;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;I know right? I completely loved the music this episode too. It was fantastic and felt movie like(maybe wearing headphones heloed with that);False;False;;;;1610313153;;False;{};gist928;False;t3_kujurp;False;True;t1_gisnu1j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist928/;1610355655;3;True;False;anime;t5_2qh22;;0;[]; -[];;;komodo_dragonzord;;ann;[];;;dark;text;t2_4q35p;False;False;[];;Ahhh goddamit they cut just when Eren finally blows some shit up!!!!! What a great ep, it shows a lot of Eren's growth that he can actually sit and listen to Reiner and admit that Reiner was just in another shitty situation being a child soldier. Freakin Reiner man, now just begging for someone to kill him. Love the throwback to that old man story and how he wants someone to judge him.;False;False;;;;1610313155;;False;{};gist97g;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist97g/;1610355656;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinsekai21;;;[];;;;text;t2_10od0m;False;False;[];;"Yup Isayama is truly one hell of a writer. - -Rewatching/rereading this show is better experience as we pick up more hint and small details that works cohesively with the whole story - -Also, i absolutely love the ""moving forward"" thing.";False;False;;;;1610313155;;False;{};gist97p;False;t3_kujurp;False;False;t1_gisf53y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gist97p/;1610355656;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Inferno792;;MAL;[];;https://myanimelist.net/profile/Inferno792;dark;text;t2_148vlb;False;False;[];;Ending in April.;False;False;;;;1610313165;;False;{};gista05;False;t3_kujurp;False;False;t1_gist8l6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gista05/;1610355669;70;True;False;anime;t5_2qh22;;0;[]; -[];;;Voltorb19;;;[];;;;text;t2_14o3w8;False;False;[];;That was insanely good. We were here, guys. We were here;False;False;;;;1610313168;;False;{};gista7h;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gista7h/;1610355672;7;True;False;anime;t5_2qh22;;0;[]; -[];;;kkraww;;;[];;;;text;t2_5qhjx;False;False;[];;"Surely it isn't a terrorist attack. As it happened whilst they are ""technically"" at war.";False;False;;;;1610313169;;False;{};gistaa0;False;t3_kujurp;False;True;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistaa0/;1610355673;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;"Yep you are right. Article 8, 2b xxiii - ->*Utilizing the presence of a civilian or other protected person to render certain points, areas or military forces immune from military operations;* - -[https://www.un.org/en/genocideprevention/war-crimes.shtml](https://www.un.org/en/genocideprevention/war-crimes.shtml) - -&#x200B; - -The place was packed with military personnel, even thought it was civilian area. Eren attacking them is not a war crime";False;False;;;;1610313180;;False;{};gistb2e;False;t3_kujurp;False;False;t1_gism6kh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistb2e/;1610355685;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;He's like the Eren Kruger of the opposing faction. Both got eaten too!;False;False;;;;1610313185;;False;{};gistbee;False;t3_kujurp;False;False;t1_gish1o8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistbee/;1610355690;190;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;inb4 the last chapter ends with a cliffhanger that announces a movie by WIT;False;False;;;;1610313196;;False;{};gistc9t;False;t3_kujurp;False;False;t1_gist6er;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistc9t/;1610355703;4;True;False;anime;t5_2qh22;;0;[]; -[];;;darthgera;;;[];;;;text;t2_2zl52zv6;False;False;[];;I think this was the second 10/10 AoT episode. Is this better than Hero?;False;False;;;;1610313198;;False;{};gistcev;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistcev/;1610355705;7;True;False;anime;t5_2qh22;;0;[]; -[];;;lambalambda;;;[];;;;text;t2_aj2uj;False;False;[];;Falco was getting the series cliff notes in this ep.;False;False;;;;1610313200;;False;{};gistckf;False;t3_kujurp;False;False;t1_gisqwna;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistckf/;1610355707;103;True;False;anime;t5_2qh22;;0;[]; -[];;;uno_in_particolare;;;[];;;;text;t2_10460f;False;False;[];;except, you know, that reiner was a kid while eren isn't. He's WAY worse;False;True;;comment score below threshold;;1610313214;;False;{};gistdj3;False;t3_kujurp;False;True;t1_giso482;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistdj3/;1610355721;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;"Eren was justifed. Under Article 8, 2b xxiii: - ->*Utilizing the presence of a civilian or other protected person to render certain points, areas or military forces immune from military operations;* - -[https://www.un.org/en/genocideprevention/war-crimes.shtml](https://www.un.org/en/genocideprevention/war-crimes.shtml) - -&#x200B; - -The place was packed with military personnel, even thought it was civilian area. Eren attacking them is not a war crime";False;False;;;;1610313215;;False;{};gistdju;False;t3_kujurp;False;False;t1_gish1en;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistdju/;1610355721;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ihileath;;MAL;[];;http://myanimelist.net/animelist/Ihileath;dark;text;t2_rsvva;False;False;[];;Which means he also had perfect control over his intentions. No subconscious impulse causing him to turn too soon.;False;False;;;;1610313216;;False;{};gistdo5;False;t3_kujurp;False;False;t1_giso99h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistdo5/;1610355723;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Death_InBloom;;;[];;;;text;t2_sgnvb;False;False;[];;"#YOU FOOL! YOU FEEL FOR IT! - -#THUNDER CROSS SPLIT ATTACK!";False;False;;;;1610313227;;False;{};gistegk;False;t3_kujurp;False;False;t1_gisadib;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistegk/;1610355736;9;True;False;anime;t5_2qh22;;0;[]; -[];;;94Temimi;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;LOVE IS WAR;dark;text;t2_13udx4;False;False;[];;Riener probably felt like he wanted to go punch Willy in the face to stop him from saying another word.. The suffering of the plot-armoured titan never stops.;False;False;;;;1610313238;;False;{};gistfba;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistfba/;1610355748;7;True;False;anime;t5_2qh22;;0;[]; -[];;;varnums1666;;;[];;;;text;t2_kxv4z;False;False;[];;">.is that one of our original team? - -I'm guessing Jean since she saves Reiner from him. The only other one she meet was Levi, but I doubt that was Levi.";False;False;;;;1610313246;;False;{};gistfwv;False;t3_kujurp;False;True;t1_gisf53y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistfwv/;1610355757;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;"Article 8, 2b xxiii - ->*Utilizing the presence of a civilian or other protected person to render certain points, areas or military forces immune from military operations;* - -[https://www.un.org/en/genocideprevention/war-crimes.shtml](https://www.un.org/en/genocideprevention/war-crimes.shtml) - -&#x200B; - -The place was packed with military personnel that was used for military operations (declaring war), even thought it was civilian area. Eren attacking them is not a war crime";False;False;;;;1610313253;;False;{};gistgdl;False;t3_kujurp;False;True;t1_gisfm65;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistgdl/;1610355765;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;Jaeger Danger?;False;False;;;;1610313254;;False;{};gistgg7;False;t3_kujurp;False;False;t1_gisfkst;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistgg7/;1610355765;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Voi69;;;[];;;;text;t2_lcnz6;False;False;[];;Bruh are you dissing on Midnight Sun?;False;False;;;;1610313262;;False;{};gistgzh;False;t3_kujurp;False;False;t1_gistcev;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistgzh/;1610355773;8;True;False;anime;t5_2qh22;;0;[]; -[];;;AccountantNo4233;;;[];;;;text;t2_8b0wjn7t;False;False;[];;in desktop you just need to hover your mouse over it.;False;False;;;;1610313272;;False;{};gisthpt;False;t3_kujurp;False;True;t1_gisrhre;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisthpt/;1610355785;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Psst you want some candy? Go deliver some letters for me and follow me to a dark basement.;False;False;;;;1610313279;;False;{};gisti7g;False;t3_kujurp;False;False;t1_gisfgx0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisti7g/;1610355793;27;True;False;anime;t5_2qh22;;0;[]; -[];;;nanoman92;;;[];;;;text;t2_j2h04;False;False;[];;It's hard being the plot armored titan, he was actually talking to the mangaka;False;False;;;;1610313288;;False;{};gistiuk;False;t3_kujurp;False;False;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistiuk/;1610355803;2;True;False;anime;t5_2qh22;;0;[]; -[];;;D0nil;;;[];;;;text;t2_y2ulq;False;False;[];;Hopefully they are saving the animation budget for the action driven episodes, so far each episode feels less dynamic, and the drawings look less and less detailed imo. Still I'm really hyped and I liked this episode a lot, but for example that last shot of eren in titan form looks kinda jank.;False;False;;;;1610313293;;1610313625.0;{};gistj8k;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistj8k/;1610355808;7;True;False;anime;t5_2qh22;;0;[]; -[];;;HollowDakota;;MAL;[];;http://myanimelist.net/animelist/HollowDakota;dark;text;t2_d4l4m;False;False;[];;"Damn what a time to be a fan of anime. - -Waiting weekly is absolutely killer but I know this will go down as one of the greats of the decade and being able to binge/rewatch it fully is gonna be incredible";False;False;;;;1610313296;;False;{};gistjh7;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistjh7/;1610355812;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Deitri;;;[];;;;text;t2_8mivs;False;False;[];;I do think it’s pretty hard to beat that moment tho;False;False;;;;1610313297;;False;{};gistjjf;False;t3_kujurp;False;False;t1_gisn3sq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistjjf/;1610355813;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ratziboi;;;[];;;;text;t2_14n1mo;False;False;[];;"Eren said that entire speech of how he and Reiner were the same and everything he did wasn't his fault really, but then STILL pulled the ""nothing personal, buddy"" in the end. Badass character development.";False;False;;;;1610313300;;False;{};gistjre;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistjre/;1610355816;7;True;False;anime;t5_2qh22;;0;[]; -[];;;_dsmith23;;;[];;;;text;t2_q9zbacg;False;False;[];;Holy shit this episode is everything I could have hoped for. Thanks Mappa !;False;False;;;;1610313305;;False;{};gistk3i;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistk3i/;1610355822;5;True;False;anime;t5_2qh22;;0;[]; -[];;;flyingelephante;;;[];;;;text;t2_wlpmo;False;True;[];;"""Across the ocean, inside the walls... they’re all the same."" Eren realizes that all humans, even mass killers like Reiner who he'd hated so much, suffer the same. Living among the Marleyans, he experiences how his enemies are not monsters, but just ordinary people. He no longer holds a black and white view of the world, but can recognize and sympathize with the multi-layered forces compelling Reiner to have destroyed Eren's home and family all those years ago. In a more simple, optimistic story, this sympathy might have convinced Eren to reject continuing the cycle of war and violence, especially that which makes victims out of ordinary civilians like he and his mother had been. - -But Eren's affirmation of people's shared humanity does nothing to weaken his resolve to fight for his right to live in this world when Willy Tybur and the world declare war on Paradis. Eren understands precisely what he's doing: becoming the ""bad guy"" to all the innocent and ignorant people who will now suffer the same way he did as a child. - -In fact, his understanding that people are all the same isn’t the usual idealized view of the positive aspects of human nature and the politics that arises from it; Eren recognizes his enemy’s humanity, but as solidified by Willy’s speech against the devils of the island, his enemy doesn’t recognize Eren’s humanity. Making enemies out of one another and fighting each other to live is, too, an impulse that people share. So when pushed into a corner as Paradis now has been with the world’s forces turned against them, he deliberately moves forward to become an embodiment of hell itself for those who wouldn't hesitate to bring hell to Paradis.";False;False;;;;1610313310;;False;{};gistkhb;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistkhb/;1610355828;90;True;False;anime;t5_2qh22;;0;[]; -[];;;UnbreakableAj23;;;[];;;;text;t2_48exwau1;False;False;[];;I bet this will have more than 10k upvotes;False;False;;;;1610313312;;False;{};gistkml;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistkml/;1610355830;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;PussyLunch;;;[];;;;text;t2_1fmdt0pe;False;False;[];;Tybur declares war: Aight imma head out.;False;False;;;;1610313314;;False;{};gistkqx;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistkqx/;1610355832;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SweptSage;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_o2zc0ol;False;False;[];;Reiner is easily one best written characters of all time at this point can’t where his characters goes.;False;False;;;;1610313315;;False;{};gistktg;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistktg/;1610355834;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;"Yep you are right. Article 8, 2b xxiii - ->*Utilizing the presence of a civilian or other protected person to render certain points, areas or military forces immune from military operations;* - -[https://www.un.org/en/genocideprevention/war-crimes.shtml](https://www.un.org/en/genocideprevention/war-crimes.shtml) - -&#x200B; - -The place was packed with military personnel, even thought it was civilian area and was used for military operations (declaring war). Eren attacking them is not a war crime";False;False;;;;1610313316;;False;{};gistkve;False;t3_kujurp;False;False;t1_gison6w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistkve/;1610355835;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Huhwtfbleh;;;[];;;;text;t2_gnf5em;False;False;[];;"There are no war crimes in AoT. Everything goal. - -I mean, they are literally having a party in a internment camp where Marley uses Eldians to breed weapons of mass destruction against their will.";False;False;;;;1610313316;;False;{};gistkwa;False;t3_kujurp;False;False;t1_gisqftq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistkwa/;1610355835;15;True;False;anime;t5_2qh22;;0;[]; -[];;;bnichols924;;;[];;;;text;t2_15y03a;False;False;[];;Sir, this is a Wendy’s;False;False;;;;1610313322;;False;{};gistld5;False;t3_kujurp;False;False;t1_gisk330;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistld5/;1610355842;18;True;False;anime;t5_2qh22;;0;[]; -[];;;serrations_;;;[];;;;text;t2_l8zix;False;False;[];;Thats exactly right!;False;False;;;;1610313324;;False;{};gistlhk;False;t3_kujurp;False;True;t1_gisd6cp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistlhk/;1610355844;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Karma_Redeemed;;;[];;;;text;t2_5oizr;False;False;[];;I don't think I've ever seen a character whose plot armor turned into a curse as thoroughly as Reiner.;False;False;;;;1610313333;;False;{};gistm6q;False;t3_kujurp;False;False;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistm6q/;1610355856;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ValkyrieCain9;;;[];;;;text;t2_1c39d6;False;False;[];;">Eren showing his cut hand and how he’s in complete control of the current situation - -He's been in a shocking amount of control this whole time since he also didn't let his leg grow back. Thinking about it is really incredible especially when you think back to the time he had like no control in his titan form and lost quite a few fights almost wondering what he was good for";False;False;;;;1610313335;;False;{};gistmad;False;t3_kujurp;False;False;t1_gisa5o0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistmad/;1610355858;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Sujallamichhaneakasl;;;[];;;;text;t2_3i2s1kbj;False;False;[];;Honestly tho....when the manga covered this part many were speculating Eren would convince Reiner to join his side. I totally fell for it too, when he offered Reiner his hand....but then sparks went flying and what an ending to the chapter that was.;False;False;;;;1610313339;;False;{};gistmlo;False;t3_kujurp;False;False;t1_gisj9xn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistmlo/;1610355863;39;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;Jordan Yeagerson;False;False;;;;1610313346;;False;{};gistn1v;False;t3_kujurp;False;True;t1_gist4ys;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistn1v/;1610355870;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TeixeiraJRT;;;[];;;;text;t2_x88v8;False;False;[];;"I'm writing this comment jaw-dropped 2 minutes after THE CREDITS ended. - -AOT BEST ANIME OR WHAT!?";False;False;;;;1610313357;;1610314416.0;{};gistnxq;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistnxq/;1610355884;43;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;"Not the first time Eren has killed civilians lol. It does feel a lot different tho. - -Back then it was like: ""To capture Annie, this is the only way. Shame but there's no choice"". - -And this time it was like: ""NO NO NO DON'T PLEASE DON'T NO NOOOOOOOOOO-""";False;False;;;;1610313364;;False;{};gistodi;False;t3_kujurp;False;False;t1_gischn4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistodi/;1610355890;38;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Way better than I thought after reading complaints idk what people are smoking. I don't really mind that the last 5 seconds had recycled music, the rest was great!;False;False;;;;1610313364;;False;{};gistodw;False;t3_kujurp;False;False;t1_giso8w7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistodw/;1610355891;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ikmal1997;;;[];;;;text;t2_80tamrb;False;False;[];;With this and Jujutsu Kaisen, I think we've established that mappa is the ultimate master of cliffhangers.;False;False;;;;1610313373;;False;{};gistp0n;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistp0n/;1610355900;26;True;False;anime;t5_2qh22;;0;[]; -[];;;JimmyCWL;;;[];;;;text;t2_16ddjx;False;False;[];;"I think, the peace he wanted wasn't for his people, only himself. An idyllic world where he could live in peace until the world came to deliver its judgement. - -He had to wipe the memories of the Eldians on the island. They would have never gone along with the facade otherwise.";False;False;;;;1610313377;;False;{};gistpa4;False;t3_kujurp;False;True;t1_gisqqlo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistpa4/;1610355904;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KidCujo;;;[];;;dark;text;t2_szojm;False;True;[];;Definitely not the only one. There are so many scenes I replayed throughout this episode especially this part and when Eren transforms;False;False;;;;1610313386;;False;{};gistpxs;False;t3_kujurp;False;False;t1_gisac08;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistpxs/;1610355915;4;True;False;anime;t5_2qh22;;0;[]; -[];;;OuchYouPokedMyHeart;;;[];;;;text;t2_vcemo;False;True;[];;On his own. Ereh's a one man killing machine, solo carrying the island;False;False;;;;1610313388;;False;{};gistq4f;False;t3_kujurp;False;False;t1_gisagr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistq4f/;1610355919;21;True;False;anime;t5_2qh22;;0;[]; -[];;;kazetoame;;;[];;;;text;t2_7rcfw;False;False;[];;Damn!;False;False;;;;1610313390;;False;{};gistqa1;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistqa1/;1610355921;2;True;False;anime;t5_2qh22;;0;[]; -[];;;brownguy6391;;;[];;;;text;t2_3et2u982;False;False;[];;Probably more than 20k;False;False;;;;1610313394;;False;{};gistqk9;False;t3_kujurp;False;False;t1_gistkml;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistqk9/;1610355925;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Sujallamichhaneakasl;;;[];;;;text;t2_3i2s1kbj;False;False;[];;Yes, for this very moment...everybody was led by these memories....;False;False;;;;1610313397;;False;{};gistqr4;False;t3_kujurp;False;False;t1_gisbrds;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistqr4/;1610355928;1;True;False;anime;t5_2qh22;;0;[]; -[];;;adnan3rugi;;;[];;;;text;t2_33eg9si0;False;False;[];;"I saw some people blaming the ""bad"" voice acting and the ost usage on MAPPA. Pretty sure they're just trynna shit on MAPPA because they think it's the cool thing to do.";False;False;;;;1610313398;;False;{};gistquo;False;t3_kujurp;False;True;t1_gisji3a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistquo/;1610355930;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JimmyTMalice;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/JimmyTMalice;light;text;t2_d3io5;False;False;[];;Some manga readers had preconceived notions about the music from Reiner and Bert's transformation back in season 2 being used for this scene, and were promptly disappointed when the composer didn't read their minds. I thought the music was perfectly fine.;False;False;;;;1610313410;;False;{};gistrsb;False;t3_kujurp;False;True;t1_gisafso;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistrsb/;1610355944;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SymphonicRain;;;[];;;;text;t2_ei40h;False;False;[];;The real founding titans were the war criminals we met along the way.;False;False;;;;1610313416;;False;{};gists57;False;t3_kujurp;False;False;t1_gisebjb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gists57/;1610355949;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Xp;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/LordXp/;light;text;t2_jd7a7;False;False;[];;👉 As expected of Pieck!;False;False;;;;1610313417;;False;{};gists85;False;t3_kujurp;False;True;t1_giss6gm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gists85/;1610355950;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Death_InBloom;;;[];;;;text;t2_sgnvb;False;False;[];;Willy Tybur has left the server.;False;False;;;;1610313417;;False;{};gistsac;False;t3_kujurp;False;False;t1_gisf892;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistsac/;1610355952;24;True;False;anime;t5_2qh22;;0;[]; -[];;;unknown537;;;[];;;;text;t2_20519zb3;False;False;[];;Idk. I am just stating the facts. In the first place, ReZero was never in the race. AoT sub has 365k members while ReZero sub has 141k members. I find it weird why people expect ReZero to even compete with AoT.;False;False;;;;1610313422;;False;{};gistslu;False;t3_kujurp;False;False;t1_gissyn5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistslu/;1610355957;5;True;False;anime;t5_2qh22;;0;[]; -[];;;dolphinsaregreat;;;[];;;;text;t2_p4zi7;False;False;[];;Leaving Reiner alive as Eren rips apart his hometown is more excruciating than just killing him at this point. All according to keikaku 🤔;False;False;;;;1610313423;;False;{};gistsox;False;t3_kujurp;False;False;t1_gispdld;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistsox/;1610355958;34;True;False;anime;t5_2qh22;;0;[]; -[];;;Ominous_Strix;;;[];;;;text;t2_3km5xr5i;False;False;[];;Should have used the Armin nuke;False;False;;;;1610313434;;False;{};gisttga;False;t3_kujurp;False;False;t1_gisa8cr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisttga/;1610355969;8;True;False;anime;t5_2qh22;;0;[]; -[];;;godblow;;;[];;;;text;t2_kigl8;False;False;[];;Eren was camping with a bomb tbh;False;False;;;;1610313440;;False;{};gisttya;False;t3_kujurp;False;True;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisttya/;1610355977;3;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;Even more the reasons to hate him;False;False;;;;1610313441;;False;{};gisttzi;False;t3_kujurp;False;True;t1_gistpa4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisttzi/;1610355977;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;"That's just the thing tho. _No one_ asked for this. And even Eren realizes it. - -""Inside or outside the Walls, everyone is the same"" (paraphrasing)";False;False;;;;1610313449;;False;{};gistujh;False;t3_kujurp;False;False;t1_gisho83;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistujh/;1610355985;67;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Most dedicated too, gook him like ten years, sawing off his own leg and gouging out one of his eyes as a cherry on top to make his revenge sundae.;False;False;;;;1610313463;;False;{};gistvkv;False;t3_kujurp;False;True;t1_giso6tz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistvkv/;1610356001;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BigLittleSloth;;;[];;;;text;t2_cux68;False;False;[];;Ah, fair enough. I still think people will criticise Mappa at every point and this will be a big one. But I didn't know that :);False;False;;;;1610313468;;False;{};gistvw6;False;t3_kujurp;False;True;t1_gisk20j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistvw6/;1610356005;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jonny727272;;;[];;;;text;t2_kpal1;False;False;[];;Literally his catchphrase.;False;False;;;;1610313467;;False;{};gistvy3;False;t3_kujurp;False;False;t1_gislw40;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistvy3/;1610356006;194;True;False;anime;t5_2qh22;;0;[]; -[];;;thecomicguybook;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Comicman;light;text;t2_cfb58;False;False;[];;"Damn ~~source readers~~ anime watchers spoiling everything in these threads! - -[](#mugipout)";False;False;;;;1610313469;;False;{};gistvyc;False;t3_kujurp;False;False;t1_giskc2y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistvyc/;1610356006;8;True;False;anime;t5_2qh22;;0;[]; -[];;;OuchYouPokedMyHeart;;;[];;;;text;t2_vcemo;False;True;[];;"Lemme die - - -LEMME DIIEE";False;False;;;;1610313482;;False;{};gistwx9;False;t3_kujurp;False;False;t1_gisk1jh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistwx9/;1610356020;47;True;False;anime;t5_2qh22;;0;[]; -[];;;uglythingss;;;[];;;;text;t2_23wc3u8t;False;False;[];;I think after this, attack on titan may now finally claim the title as best anime of all time in my book. Sry HxH (you're still great tho).;False;False;;;;1610313496;;False;{};gistxvm;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistxvm/;1610356035;6;True;False;anime;t5_2qh22;;0;[]; -[];;;JimmyCWL;;;[];;;;text;t2_16ddjx;False;False;[];;Caught it on the first watch. That was something!;False;False;;;;1610313497;;False;{};gistxzp;False;t3_kujurp;False;True;t1_gish1q7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistxzp/;1610356036;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Upstairs-Orange8463;;;[];;;;text;t2_9k9yo0ou;False;False;[];;One of the besssstttttt ep of anime I've ever seen. Eren's chadness and badass is unmatched in this episode. UFFFFF;False;False;;;;1610313501;;False;{};gisty9o;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisty9o/;1610356041;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610313501;;False;{};gistyad;False;t3_kujurp;False;True;t1_gisoy9f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistyad/;1610356041;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;theanimegamer-___-;;;[];;;dark;text;t2_3vm3lj8d;False;False;[];;It's a cycle;False;False;;;;1610313501;;False;{};gistybr;False;t3_kujurp;False;False;t1_gise6z3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistybr/;1610356041;11;True;False;anime;t5_2qh22;;0;[]; -[];;;darthgera;;;[];;;;text;t2_2zl52zv6;False;False;[];;My bad that was an epic episode myself. But Hero is 10 on Imdb thats why I said it.;False;False;;;;1610313507;;False;{};gistyrt;False;t3_kujurp;False;True;t1_gistgzh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistyrt/;1610356048;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ya_yeet_mf;;;[];;;;text;t2_numgcz6;False;False;[];;OH. MY. FUCKING. GOD.;False;False;;;;1610313507;;False;{};gistyrx;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistyrx/;1610356048;4;True;False;anime;t5_2qh22;;0;[]; -[];;;kleber115;;;[];;;;text;t2_3a2jmy6m;False;False;[];;*eldians brainwashed and forced to live in concentration camps because king fritz abandoned them that are getting killed by another person who didn't give a single shit about their lives;False;False;;;;1610313509;;False;{};gistyv1;False;t3_kujurp;False;False;t1_gisqs04;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistyv1/;1610356049;41;True;False;anime;t5_2qh22;;0;[]; -[];;;Lonystal;;;[];;;;text;t2_3lg5t9v;False;False;[];;heh heh.........;False;False;;;;1610313510;;False;{};gistyxr;False;t3_kujurp;False;True;t1_gish4zq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistyxr/;1610356050;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;"“Freedom” - -As an anime-only, it’s pretty obvious that Eren is gonna be the main antagonist of the series now. He even said it himself";False;False;;;;1610313511;;False;{};gistz0c;False;t3_kujurp;False;False;t1_gispdld;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistz0c/;1610356051;16;True;False;anime;t5_2qh22;;0;[]; -[];;;DrPavel_Im_CIA;;;[];;;;text;t2_muhwd;False;False;[];;Yes, but hardly as influenced as other aspects of production. The director is simply not as experienced and competent as Araki was.;False;False;;;;1610313511;;False;{};gistz2g;False;t3_kujurp;False;True;t1_gisr8f0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistz2g/;1610356052;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tiour;;;[];;;;text;t2_5ktwaudn;False;False;[];;Would be fun tho. I’m enjoying the hell out of Re:Zero rn. But yea AoT is arguably the most popular anime today.;False;False;;;;1610313516;;False;{};gistzdg;False;t3_kujurp;False;True;t1_gistslu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistzdg/;1610356057;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FantosTheUrk;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_115hn5;False;False;[];;"Willy ""This is a declaration of War!"" - -Eren ""Challenge Accepted.""";False;False;;;;1610313517;;False;{};gistzhd;False;t3_kujurp;False;False;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gistzhd/;1610356058;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Dev_962;;;[];;;;text;t2_2lb6cfuz;False;False;[];;Please don't tell me EREN is going to pull off what LELOUCH Vi BRITANNIA did. I'm frickin getting a very strong feeling about this.;False;False;;;;1610313528;;False;{};gisu0a0;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu0a0/;1610356070;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Android19samus;;;[];;;;text;t2_aqbu1;False;False;[];;"Just winding that tension up tighter and tighter for 20 straight minutes until finally, it's time to - -FUCKING - -# GOOOOOOOOOOOOOOOOOOOOOOOOOOO! - -&#x200B; - -We've come a long way from angry boy screaming at the tall zombies, but even knowing the horrors of war, the truth that every race and nation is, fundamentally, just made up of normal people, sometimes you're left with no choice but to kill the world. Love their flair for the dramatics. No pre-emptive strike here, they wait until the moment they can officially say ""we didn't start this war"" before they begin to officially fuck shit up. - -Also Armin got real tall, huh? Late puberty hit him like an armored titan.";False;False;;;;1610313530;;False;{};gisu0dj;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu0dj/;1610356071;8;True;False;anime;t5_2qh22;;0;[]; -[];;;henry25555;;MAL;[];;https://myanimelist.net/animelist/HenriqueRjChiki;dark;text;t2_x4917;False;False;[];;Perfect adaptation holy shit;False;False;;;;1610313530;;False;{};gisu0f0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu0f0/;1610356073;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Death_InBloom;;;[];;;;text;t2_sgnvb;False;False;[];;fucking smurfs;False;False;;;;1610313533;;False;{};gisu0mt;False;t3_kujurp;False;False;t1_gisch0n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu0mt/;1610356076;10;True;False;anime;t5_2qh22;;0;[]; -[];;;chandr;;;[];;;;text;t2_9ucfo;False;False;[];;They're gonna need some pretty hardcore anime contrivance if he survived being in that room somehow, given the building blew up;False;False;;;;1610313535;;False;{};gisu0qc;False;t3_kujurp;False;False;t1_gisbgr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu0qc/;1610356078;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Micinak;;;[];;;;text;t2_cuumn;False;False;[];;He just blew an appartment building to smithereens including children... Eldian children mind you just watching a festival unfold;False;False;;;;1610313551;;False;{};gisu1vx;False;t3_kujurp;False;False;t1_giso482;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu1vx/;1610356095;68;True;False;anime;t5_2qh22;;0;[]; -[];;;MrPootisBrights;;;[];;;;text;t2_e5ro6;False;False;[];;"Peak hypeness, and yet we haven't reached the summit. - -AoT is truly GOAT";False;False;;;;1610313552;;False;{};gisu1xp;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu1xp/;1610356095;7;True;False;anime;t5_2qh22;;0;[]; -[];;;MareGraphics;;;[];;;;text;t2_px8xo;False;False;[];;Bruh eren so cool;False;False;;;;1610313552;;False;{};gisu1y7;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu1y7/;1610356096;6;True;False;anime;t5_2qh22;;0;[]; -[];;;nickbwhit15;;;[];;;;text;t2_5nvvnohl;False;False;[];;Does anyone know when it premiers on Hulu;False;False;;;;1610313553;;False;{};gisu226;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu226/;1610356097;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DeathNoteRs;;;[];;;;text;t2_gp1yq;False;False;[];;"Beautiful episode all around. - -The way they played the same music from Episode 1 Season 1, when Willy talked about the Colossal Titans in the wall. - -Also Eren with the 500 IQ plan, first talking about how theres people living in the appartments above them, followed by showing the cut in his hand. Reiner knew exactly what Erens intentions were.";False;False;;;;1610313558;;False;{};gisu2fu;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu2fu/;1610356103;5;True;False;anime;t5_2qh22;;0;[]; -[];;;TatteredTongues;;;[];;;;text;t2_xbrbp;False;False;[];;"I'm not sure it was necessary to remove the comment when I only referenced stuff that has already been released, such as events in Season 3 as well as the Season 4 trailer. - - -I did not provide an answer based on what has yet to be adapted, but on what has already been released in anime format.";False;False;;;;1610313563;;False;{};gisu2sn;False;t3_kujurp;False;True;t1_giss0cj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu2sn/;1610356108;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Reasonable_TSM_fan;;MAL;[];;https://myanimelist.net/animelist/sundaybeatle;dark;text;t2_yy1p7;False;False;[];;I love that as a manga reader I’ve seen so much and I still don’t know how the story will end. The writing is so stellar, and the series will go down as one of the best in Anime/manga history.;False;False;;;;1610313570;;False;{};gisu384;False;t3_kujurp;False;False;t1_gisbtc0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu384/;1610356115;3;True;False;anime;t5_2qh22;;0;[]; -[];;;1990sBadass;;;[];;;;text;t2_17zm94z6;False;False;[];;Shingeki no KINOjin;False;False;;;;1610313575;;False;{};gisu3m5;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu3m5/;1610356120;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ValkyrieCain9;;;[];;;;text;t2_1c39d6;False;False;[];;I have a tendency to hold my breathe a little during tense scenes which meant i was just struggling the whole episode. I'm still trying to recover right now;False;False;;;;1610313576;;False;{};gisu3pb;False;t3_kujurp;False;False;t1_gisd9iy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu3pb/;1610356122;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AsianSquirrel;;;[];;;;text;t2_3vynsrfo;False;False;[];;"And this the part where I start to despise Eren. He made a false equivalence; he is *not* the same as Reiner. Marley's Warriors are brainwashed child soldiers following orders, committing war crimes only as collateral damage, whereas Eren makes his decision to commit genocide with all the knowledge and experience in the world as a functioning adult and without any brainwashing. This is not to say Eren doesn't have *some* reasoning for all this, but his equivocating to Reiner is, in my a view, a poor way to justify his unjustifiable actions. The fact that he actually intends to kill Falco in this scene, or at least doesn't care if he dies, is utterly unforgivable and alien to me. I wouldn't consider taking revenge as evil, but intentionally killing innocent and good people -- especially someone who has been pure and helpful to you -- ***just to make a point*** is quite evil. Eren is not the same as Reiner -- he's way worse.";False;False;;;;1610313577;;1610319465.0;{};gisu3rd;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu3rd/;1610356122;8;True;False;anime;t5_2qh22;;0;[]; -[];;;JimmySplodge03;;;[];;;;text;t2_12cnxk;False;False;[];;My god, this episode was great. The tension in the basement was off the charts. I feel bad for Falco and his realisation of what he had done. And the fear in Reiner's eyes, perfection.;False;False;;;;1610313579;;False;{};gisu3wd;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu3wd/;1610356124;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Paxton-176;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;MOE FOR THE MOE GODS DOUJINS FOR THE DOUJIN THRONE!;dark;text;t2_kmgwm;False;False;[];;"> KILLS EVERYONE - -There are so many songs can used to describe this one line. The first two I thought of right away; - -""Kill Everyone"" by Hollywood Undead and ""Ready to Die"" by by Andrew W.K.";False;False;;;;1610313579;;False;{};gisu3wu;False;t3_kujurp;False;True;t1_gisadib;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu3wu/;1610356125;1;True;False;anime;t5_2qh22;;0;[];True -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 80, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Everything is better with a good hug', 'end_date': None, 'giver_coin_reward': 0, 'icon_format': 'PNG', 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png', 'icon_width': 2048, 'id': 'award_8352bdff-3e03-4189-8a08-82501dd8f835', 'is_enabled': True, 'is_new': False, 'name': 'Hugz', 'penny_donate': 0, 'penny_price': 0, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16&height=16&auto=webp&s=69997ace3ef4ffc099b81d774c2c8f1530602875', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32&height=32&auto=webp&s=e9519d1999ef9dce5c8a9f59369cb92f52d95319', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48&height=48&auto=webp&s=f076c6434fb2d2f9075991810fd845c40fa73fc6', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64&height=64&auto=webp&s=85527145e0c4b754306a30df29e584fd16187636', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128&height=128&auto=webp&s=b8843cdf82c3b741d7af057c14076dcd2621e811', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16&height=16&auto=webp&s=69997ace3ef4ffc099b81d774c2c8f1530602875', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32&height=32&auto=webp&s=e9519d1999ef9dce5c8a9f59369cb92f52d95319', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48&height=48&auto=webp&s=f076c6434fb2d2f9075991810fd845c40fa73fc6', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64&height=64&auto=webp&s=85527145e0c4b754306a30df29e584fd16187636', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128&height=128&auto=webp&s=b8843cdf82c3b741d7af057c14076dcd2621e811', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;TheTruthVeritas;;;[];;;;text;t2_1056nw;False;False;[];;"I don't think it was done for the sake of revenge, nor that revenge is the theme of the series. This entire episode was about the conversation between Eren and Reiner, with a lot of parallels between Paradis and Marley and the actions that happened and will happen. Eren brings up his mom and Reiner causing her death, and Reiner is filled with such guilt that he literally wants to die. He believes he deserves to die, and basically begs Eren to kill him for what he's done to Paradis. - -Eren understands why Reiner did all that, he basically says that he does not hate the people of Marley, now that he's lived with them, ate the same food as them, and lived the same lives they had. They're no different from him and the people of Paradis. In the same vein, he does not aim for vengeance upon Reiner for his mom's death and the tragedy of Paradis. Reiner remembers Eren angrily swearing that he'll give Reiner the worst possible death for his actions and betrayal, but here he shrugs it off and asks him to forget it. - -It's not because of revenge he's doing this. He's doing this to save his people, save Paradis, and he knows exactly how terrible it is. He constantly points out how terrible Reiner's actions were, yet he also says at the end that he's just like Reiner. And Reiner even said he did all that because he thought he was saving the world. - -And importantly, Eren only transformed after Willy declared war on Paradis. AoT is far more than a simple story of just revenge and hate. God, I love this series.";False;False;;;;1610313582;;False;{};gisu430;False;t3_kujurp;False;False;t1_gispul2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu430/;1610356127;38;True;False;anime;t5_2qh22;;1;[]; -[];;;guynumbers;;;[];;;;text;t2_nj6kc;False;False;[];;"I find it really bizarre that they didn't use youseebiggirl for the end of the episode, especially with what I thought was a ""hint"" last episode. It definitely isn't bad, but I feel like I've seen more hype manga versions of it on youtube.";False;False;;;;1610313588;;False;{};gisu4hw;False;t3_kujurp;False;False;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu4hw/;1610356133;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610313592;;False;{};gisu4sz;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu4sz/;1610356138;37;True;False;anime;t5_2qh22;;0;[]; -[];;;Android19samus;;;[];;;;text;t2_aqbu1;False;False;[];;I mean, the main promo art for season 4 has always been Eren attacking the city. We knew it was coming.;False;False;;;;1610313596;;False;{};gisu536;False;t3_kujurp;False;False;t1_gisdxo0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu536/;1610356142;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Eren: *I'm gonna do what is called a pro gamer move*;False;False;;;;1610313606;;False;{};gisu5se;False;t3_kujurp;False;False;t1_gisch0n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu5se/;1610356153;14;True;False;anime;t5_2qh22;;0;[]; -[];;;NachoForce;;;[];;;;text;t2_qpou1;False;False;[];;it's gonna make a lot of people very angry, that's for sure;False;False;;;;1610313617;;False;{};gisu6mf;False;t3_kujurp;False;False;t1_gisl0e9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu6mf/;1610356165;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Elaego;;;[];;;;text;t2_55zd6hhb;False;False;[];;Most of the people here are people who watched RAW or fansubs. Crunchyroll doesn't release it yet.;False;False;;;;1610313618;;False;{};gisu6np;False;t3_kujurp;False;True;t1_gisgo8q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu6np/;1610356166;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lonystal;;;[];;;;text;t2_3lg5t9v;False;False;[];;pfft, the anime onlies are not ready for the next 3 episodes lol;False;False;;;;1610313620;;False;{};gisu6u9;False;t3_kujurp;False;True;t1_gisaex2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu6u9/;1610356168;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;sese2003;;;[];;;;text;t2_5cmt4ejv;False;False;[];;I like how Reiner is losing it from eren telling him that he plans to do the same thing he did 9 years ago, because Reiner knows that eren is superior to him in a fight, and will have to watch all that he cares about be destroyed.;False;False;;;;1610313621;;False;{};gisu6x4;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu6x4/;1610356169;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610313622;;False;{};gisu6yd;False;t3_kujurp;False;True;t1_gisaihm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu6yd/;1610356170;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;pushicat;;;[];;;;text;t2_2kwje2wa;False;False;[];;Holy Shit! What Just Happened!!;False;False;;;;1610313629;;False;{};gisu7ga;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu7ga/;1610356178;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thecomicguybook;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Comicman;light;text;t2_cfb58;False;False;[];;"Poor Hitch, poor Marlowe. - -[](#holdme)";False;False;;;;1610313633;;False;{};gisu7si;False;t3_kujurp;False;False;t1_gisoc26;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu7si/;1610356184;109;True;False;anime;t5_2qh22;;0;[]; -[];;;Android19samus;;;[];;;;text;t2_aqbu1;False;False;[];;"""Declaration accepted""";False;False;;;;1610313637;;False;{};gisu84s;False;t3_kujurp;False;False;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu84s/;1610356189;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jimmeh20;;MAL;[];;http://myanimelist.net/animelist/TheJimmeh;dark;text;t2_aeqbh;False;False;[];;I understood the ''we're the same'' line as an answer to how Eren got to Marley. They both infiltrated by pretending to have been injured in a war and then living among their enemies.;False;False;;;;1610313643;;False;{};gisu8k6;False;t3_kujurp;False;True;t1_giscr3k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu8k6/;1610356195;1;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;"You have a point. - -""When Liberio is in ashes, you have my permission to die"" - Eren, probably";False;False;;;;1610313648;;False;{};gisu8xw;False;t3_kujurp;False;False;t1_gistsox;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu8xw/;1610356200;28;True;False;anime;t5_2qh22;;0;[]; -[];;;RaQziom;;MAL;[];;http://myanimelist.net/profile/RaQziom;dark;text;t2_90zh0;False;False;[];;Yeah I guess Eren and friends aren't saints here either but even if they did nothing Marley would still attack them now;False;False;;;;1610313654;;False;{};gisu9be;False;t3_kujurp;False;True;t1_gisrv22;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu9be/;1610356206;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shox12345;;;[];;;;text;t2_n8dvf;False;False;[];;Beautifully said!;False;False;;;;1610313657;;False;{};gisu9k9;False;t3_kujurp;False;False;t1_gist77x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisu9k9/;1610356209;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinsekai21;;;[];;;;text;t2_10od0m;False;False;[];;"Not really. - -He has no revenge. He forgave Reiner and sympathized with him";False;False;;;;1610313663;;False;{};gisua0i;False;t3_kujurp;False;False;t1_gisnw8y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisua0i/;1610356217;12;True;False;anime;t5_2qh22;;0;[]; -[];;;European_Badger;;;[];;;;text;t2_h5oxgc;False;False;[];;Eren's CGI titan looks so fucking good.;False;False;;;;1610313670;;False;{};gisuaiw;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuaiw/;1610356225;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Animegamingnerd;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/animegamingnerd;light;text;t2_k7u33;False;False;[];;Same here epically since a lot more Anime only's are liking Gabi better then I expected. So the reaction to that episode is gonna be very interesting.;False;False;;;;1610313670;;False;{};gisuaj4;False;t3_kujurp;False;False;t1_gisl0e9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuaj4/;1610356225;9;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;Re zero fans aren't pleased by that comment. lol;False;False;;;;1610313670;;False;{};gisuaju;False;t3_kujurp;False;True;t1_gissyn5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuaju/;1610356225;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;Wait wait wait. This thread is actually GAINING momentum. Most 12k+ episode discussions start dropping on karma per minute after 2 or 3 hours, but this thread is actually accelerating, even though it was alredy growing faster than all threads except AoT S4 ep 1. Lol.;False;False;;;;1610313672;;False;{};gisuanq;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuanq/;1610356227;60;True;False;anime;t5_2qh22;;0;[]; -[];;;ValkyrieCain9;;;[];;;;text;t2_1c39d6;False;False;[];;As reiner was turning a pale grey you could just see all sense, reason, all emotional structures he may have built come tumbling down;False;False;;;;1610313674;;False;{};gisuat8;False;t3_kujurp;False;False;t1_gisbhcy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuat8/;1610356229;52;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610313676;;False;{};gisuay5;False;t3_kujurp;False;True;t1_gisu6yd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuay5/;1610356231;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Lonystal;;;[];;;;text;t2_3lg5t9v;False;False;[];;"next episode ""Eren is on a rampage""";False;False;;;;1610313694;;False;{};gisucbl;False;t3_kujurp;False;False;t1_gisch0n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisucbl/;1610356251;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ErenJaegerGOAT;;;[];;;;text;t2_9p79pv2r;False;False;[];;Eren Jaeger GOAT;False;False;;;;1610313694;;False;{};gisucc3;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisucc3/;1610356251;4;True;False;anime;t5_2qh22;;0;[]; -[];;;conqueringdragon;;;[];;;;text;t2_11nm5laj;False;False;[];;no, they are easy to find yourself. Links are against the rules here.;False;False;;;;1610313695;;False;{};gisuce3;False;t3_kujurp;False;True;t1_gish3w1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuce3/;1610356252;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pamagiclol;;;[];;;;text;t2_5dmvf1ev;False;False;[];;Lol, what a garbage episode.. seriously a weeks waiting for this? and now another week for something to actually happen..;False;True;;comment score below threshold;;1610313696;;False;{};gisucic;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisucic/;1610356254;-30;True;False;anime;t5_2qh22;;0;[]; -[];;;sese2003;;;[];;;;text;t2_5cmt4ejv;False;False;[];;It’s the tanjiro part of him...;False;False;;;;1610313702;;False;{};gisucx2;False;t3_kujurp;False;False;t1_gisfpmc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisucx2/;1610356260;27;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;"Incapacitates Rainer and Falco: ""Double kill!"" - -Crushes Willy: ""Triple Kill!!""";False;False;;;;1610313707;;False;{};gisudaf;False;t3_kujurp;False;False;t1_gisch0n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisudaf/;1610356265;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Paxton-176;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;MOE FOR THE MOE GODS DOUJINS FOR THE DOUJIN THRONE!;dark;text;t2_kmgwm;False;False;[];;Maybe that is secret requirement to become the armored titan. Deep regrets and PTSD.;False;False;;;;1610313708;;False;{};gisudbr;False;t3_kujurp;False;False;t1_gisk5y0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisudbr/;1610356266;31;True;False;anime;t5_2qh22;;0;[];True -[];;;bryan792;;;[];;;;text;t2_3np8f;False;True;[];;"24 minutes of pure HYPEEEEEE - -I can't even!";False;False;;;;1610313712;;False;{};gisudon;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisudon/;1610356271;4;True;False;anime;t5_2qh22;;0;[]; -[];;;_Shashank_08;;;[];;;;text;t2_5jymdpqf;False;False;[];;Banger of an Episode! My body is still shivering 🥶;False;False;;;;1610313713;;False;{};gisudph;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisudph/;1610356272;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Side note that’s pretty damn important, titans have been 2D in the last two episodes. At least to some extent;False;False;;;;1610313714;;1610315665.0;{};gisuds1;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuds1/;1610356273;1;True;False;anime;t5_2qh22;;0;[]; -[];;;serrations_;;;[];;;;text;t2_l8zix;False;False;[];;Is... is falco dead?;False;False;;;;1610313714;;False;{};gisudtu;False;t3_kujurp;False;False;t1_gish0mk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisudtu/;1610356273;5;True;False;anime;t5_2qh22;;0;[]; -[];;;bijoyd019;;;[];;;;text;t2_10g0bn;False;False;[];;Bruh you just ruined the game for me.;False;False;;;;1610313718;;False;{};gisue3s;False;t3_kujurp;False;False;t1_gisifgc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisue3s/;1610356277;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Android19samus;;;[];;;;text;t2_aqbu1;False;False;[];;this has such strong meme potential;False;False;;;;1610313722;;False;{};gisued1;False;t3_kujurp;False;False;t1_giscm9k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisued1/;1610356282;7;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;A boost from the official translations releasing!;False;False;;;;1610313729;;False;{};gisuew0;False;t3_kujurp;False;False;t1_gisuanq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuew0/;1610356290;13;True;False;anime;t5_2qh22;;0;[]; -[];;;CupcakeAmazing7661;;;[];;;;text;t2_88wzb5a9;False;False;[];;Punished Eren;False;False;;;;1610313736;;False;{};gisufee;False;t3_kujurp;False;False;t1_gisd6cp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisufee/;1610356298;4;False;False;anime;t5_2qh22;;0;[]; -[];;;Animegamingnerd;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/animegamingnerd;light;text;t2_k7u33;False;False;[];;Also the night before the newest chapter came out, a screenshot of the preview for episode 6 leaked online and likely got trending because of that.;False;False;;;;1610313737;;False;{};gisufgp;False;t3_kujurp;False;False;t1_gisegnh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisufgp/;1610356299;51;True;False;anime;t5_2qh22;;0;[]; -[];;;ModieOfTheEast;;;[];;;;text;t2_g7tqk9b;False;False;[];;You forgot Eren's dad. He already took the Founding Titan at that point. They got note that something was strange which is why their mission was to investigate the king's motives.;False;False;;;;1610313739;;False;{};gisufl8;False;t3_kujurp;False;False;t1_gisk4ik;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisufl8/;1610356301;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Youdiv147;;;[];;;;text;t2_ncm4x6w;False;False;[];;I’m really interested in who the War-Hammer Titan is since I don’t think it would be Willy himself;False;False;;;;1610313743;;False;{};gisufxk;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisufxk/;1610356306;6;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;yeah i really liked the episode, and i defend everyone who didnt like it, a lot of snk fans are kind of insane, let people dislike things;False;False;;;;1610313753;;False;{};gisugmy;False;t3_kujurp;False;True;t1_gisj0vi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisugmy/;1610356317;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Tbf last season of AoT also has some of the greatest episodes in anime, so it’s not even underselling it for fans of the series;False;False;;;;1610313757;;False;{};gisugvj;False;t3_kujurp;False;False;t1_gisdhr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisugvj/;1610356320;11;True;False;anime;t5_2qh22;;0;[]; -[];;;H4wx;;;[];;;;text;t2_ehuq5;False;False;[];;The concept of war crimes clearly exists as it was used before (might have been cut from the anime but I remember seeing it, either in the Anime itself or someone posting a manga page.);False;False;;;;1610313763;;False;{};gisuhat;False;t3_kujurp;False;False;t1_gistkwa;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuhat/;1610356326;22;True;False;anime;t5_2qh22;;0;[]; -[];;;GoldenDude;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GoldenBoy808;light;text;t2_ay8d1;False;False;[];;"Wait wait wait... - -Did Willy say Eren has access to MILLIONS of COLOSSAL TITANS?! - -holy fuck";False;False;;;;1610313767;;False;{};gisuhmp;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuhmp/;1610356331;160;True;False;anime;t5_2qh22;;0;[]; -[];;;Voi69;;;[];;;;text;t2_lcnz6;False;False;[];;Oh okay. I mean, anyways I was just jokingly saying that.;False;False;;;;1610313770;;False;{};gisuhtq;False;t3_kujurp;False;True;t1_gistyrt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuhtq/;1610356334;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sstizzle;;;[];;;;text;t2_e9qm7;False;False;[];;This comment reads like a side character in DBZ narrating someone reaching a new level of super saiyan;False;False;;;;1610313773;;False;{};gisui2h;False;t3_kujurp;False;False;t1_gisuanq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisui2h/;1610356339;77;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610313774;;False;{};gisui5n;False;t3_kujurp;False;True;t1_gisf53y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisui5n/;1610356340;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chillininthebasement;;;[];;;;text;t2_ublbp;False;False;[];;I'm not talking about spoilers. I just wanted to see what anime only think about the episode.;False;False;;;;1610313775;;False;{};gisui78;False;t3_kujurp;False;True;t1_giso4ga;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisui78/;1610356341;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LinusTTG;;;[];;;;text;t2_3lg3xf86;False;False;[];;How did you guys watch it like 2 hours earlier than me. I stalked funimation until it launched at like 2:45;False;False;;;;1610313778;;False;{};gisuied;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuied/;1610356344;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lumaro;;;[];;;;text;t2_1302qz;False;False;[];;That’s because you’re applying our current century’s ideals into a story that has nothing to do with our world. There’s no diplomacy in a conflict where one side simply refuses to see you as a human being, which is why Eren was forced into such position. Marley fights for natural resources/expansion, Eren is fighting for freedom/survival. Just remember that they had just declared war against Paradis before he shifted.;False;False;;;;1610313781;;1610317528.0;{};gisuimw;False;t3_kujurp;False;False;t1_giso482;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuimw/;1610356347;49;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinsekai21;;;[];;;;text;t2_10od0m;False;False;[];;"I think that quote could also mean: I'll do whatever it takes to achieve my goal. - -In Eren's case, its the same as Reiner: To save the world";False;False;;;;1610313787;;False;{};gisuj0d;False;t3_kujurp;False;False;t1_gisaxz3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuj0d/;1610356353;127;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;Bruh ShingeKI NO Kyojin was right there.;False;False;;;;1610313790;;False;{};gisuj9s;False;t3_kujurp;False;False;t1_gisu3m5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuj9s/;1610356356;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;It was the fabulous hair that connected the scenes for me.;False;False;;;;1610313803;;False;{};gisuk9c;False;t3_kujurp;False;False;t1_gismf1p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuk9c/;1610356370;8;True;False;anime;t5_2qh22;;0;[]; -[];;;serrations_;;;[];;;;text;t2_l8zix;False;False;[];;If he is still alive;False;False;;;;1610313810;;False;{};gisukqt;False;t3_kujurp;False;False;t1_gise9k9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisukqt/;1610356377;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Voi69;;;[];;;;text;t2_lcnz6;False;False;[];;Eren was CGI;False;False;;;;1610313818;;False;{};gisulbp;False;t3_kujurp;False;False;t1_gisuds1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisulbp/;1610356387;11;True;False;anime;t5_2qh22;;0;[]; -[];;;wtrmlnjuc;;;[];;;;text;t2_6xg4b;False;False;[];;I think it fits, but the mix should’ve been louder after Willy finished talking.;False;False;;;;1610313819;;False;{};gisulen;False;t3_kujurp;False;True;t1_gise58j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisulen/;1610356388;1;True;False;anime;t5_2qh22;;0;[]; -[];;;y0gesh_y2k;;;[];;;;text;t2_6ww1swdm;False;False;[];;the buildup.....the dialogue.....everything......was just........PERFECTION;False;False;;;;1610313819;;False;{};gisulgb;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisulgb/;1610356389;4;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;Fansubs came out earlier;False;False;;;;1610313821;;False;{};gisuljf;False;t3_kujurp;False;False;t1_gisuied;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuljf/;1610356390;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandman1920;;;[];;;;text;t2_11uias;False;False;[];;Man next episode gonna be something. HYPED;False;False;;;;1610313845;;False;{};gisund3;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisund3/;1610356416;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SymphonicRain;;;[];;;;text;t2_ei40h;False;False;[];;I think it’s Mikasa after letting her beard grow out;False;False;;;;1610313852;;False;{};gisunvz;False;t3_kujurp;False;False;t1_gisoykp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisunvz/;1610356423;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Android19samus;;;[];;;;text;t2_aqbu1;False;False;[];;he had a pretty big break at the start of the series and he's still paying for it;False;False;;;;1610313852;;False;{};gisunx0;False;t3_kujurp;False;False;t1_gisbak6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisunx0/;1610356424;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Isayama’s planning for a constantly monthly airing series is fucking insane. This dude had a story this good made the whole damn time;False;False;;;;1610313856;;False;{};gisuo6m;False;t3_kujurp;False;False;t1_gisad63;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuo6m/;1610356428;26;True;False;anime;t5_2qh22;;0;[]; -[];;;1990sBadass;;;[];;;;text;t2_17zm94z6;False;False;[];;Yeah I feel stupid now;False;False;;;;1610313859;;False;{};gisuofq;False;t3_kujurp;False;True;t1_gisuj9s;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuofq/;1610356432;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PM_me_ur_crisis;;;[];;;;text;t2_fjrpazx;False;False;[];;# P A R A L L E L S;False;False;;;;1610313865;;False;{};gisuouk;False;t3_kujurp;False;False;t1_gisafs9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuouk/;1610356438;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Animegamingnerd;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/animegamingnerd;light;text;t2_k7u33;False;False;[];;20K plus for not just this episode, but the next 3 episodes as well.;False;False;;;;1610313870;;False;{};gisup73;False;t3_kujurp;False;True;t1_giscepb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisup73/;1610356443;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CupcakeAmazing7661;;;[];;;;text;t2_88wzb5a9;False;False;[];;Turning point Eldia;False;False;;;;1610313872;;False;{};gisupbd;False;t3_kujurp;False;False;t1_gisb0e6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisupbd/;1610356444;6;False;False;anime;t5_2qh22;;0;[]; -[];;;mike_2797;;;[];;;;text;t2_8qbcq38;False;False;[];;"Will: Declare war -Eren well I'll just keep pressing W.";False;False;;;;1610313881;;False;{};gisupzh;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisupzh/;1610356454;4;True;False;anime;t5_2qh22;;0;[]; -[];;;thewildriven;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Disloyal;light;text;t2_wdzt3;False;False;[];;Just as you think we reached the peak, it just keeps shattering expectations;False;False;;;;1610313887;;False;{};gisuqex;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuqex/;1610356461;4;True;False;anime;t5_2qh22;;0;[]; -[];;;sharethebear1;;;[];;;;text;t2_1uysnv1b;False;False;[];;The look on Reiner's face is funny. It's like he knows what's going to happen.;False;False;;;;1610313892;;False;{};gisuqps;False;t3_kujurp;False;False;t1_gisafs9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuqps/;1610356465;10;True;False;anime;t5_2qh22;;0;[]; -[];;;MuseOrMaim;;;[];;;;text;t2_6csojqsk;False;False;[];;Studio MAPPA is my hero.;False;False;;;;1610313892;;False;{};gisuqrw;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuqrw/;1610356465;5;True;False;anime;t5_2qh22;;0;[]; -[];;;one-eyed-02;;;[];;;;text;t2_783k5oi0;False;False;[];;Oi Eren! You ever heard of this dude called Franz Ferdinand and about his assassination?;False;False;;;;1610313903;;False;{};gisuri7;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuri7/;1610356476;7;True;False;anime;t5_2qh22;;0;[]; -[];;;StanLay281;;;[];;;;text;t2_x5qvm;False;False;[];;This was just as good if not better than the manga chapter;False;False;;;;1610313904;;False;{};gisurll;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisurll/;1610356478;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;Question for anime onlies: what is your opinion on eren knowingly killing innocent families and civilians?;False;False;;;;1610313908;;False;{};gisurtq;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisurtq/;1610356481;35;True;False;anime;t5_2qh22;;0;[]; -[];;;sharmarahulkohli;;;[];;;;text;t2_12gbee;False;False;[];;Cause it was uploaded 2hrs before it was actually uploaded on crunchyroll;False;False;;;;1610313920;;False;{};gisusot;False;t3_kujurp;False;False;t1_gisuanq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisusot/;1610356494;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Lumaro;;;[];;;;text;t2_1302qz;False;False;[];;Which is why Eren is one of the very best protagonists in anime/manga. No power of friendship and stuff.;False;False;;;;1610313922;;False;{};gisusvh;False;t3_kujurp;False;False;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisusvh/;1610356497;4;True;False;anime;t5_2qh22;;0;[]; -[];;;GamerDylan;;;[];;;;text;t2_9luxkbc;False;False;[];;I now have a slight suspicion as to why there will only be 16 episodes with a split for another part or a movie...;False;False;;;;1610313925;;False;{};gisut43;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisut43/;1610356500;3;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;Dude at this point, just wait until the season is over and watch a compilation of the fight scenes on youtube since you give no shits about the plot and only the action.;False;False;;;;1610313927;;False;{};gisut9z;False;t3_kujurp;False;False;t1_gisucic;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisut9z/;1610356503;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Surprisingly no, or at least I went on Crunchyroll 2 minutes after the 3:45 EST release with no issues;False;False;;;;1610313932;;False;{};gisutlg;False;t3_kujurp;False;True;t1_gisbgc0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisutlg/;1610356508;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;It's out on hulu rn;False;False;;;;1610313933;;False;{};gisuto2;False;t3_kujurp;False;True;t1_gisu226;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuto2/;1610356509;1;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;/r/anime karma war tournament arc is really heating up now!;False;False;;;;1610313935;;False;{};gisutvw;False;t3_kujurp;False;False;t1_gisui2h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisutvw/;1610356512;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Cluelesswolfkin;;;[];;;;text;t2_16967h;False;False;[];;"""EREN JAEGER!!!!"" MY FUCKING god. Man it has been so long since watching the first season then coming to this point. - -This is nothing but art.";False;False;;;;1610313944;;False;{};gisuuhc;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuuhc/;1610356521;8;True;False;anime;t5_2qh22;;0;[]; -[];;;mike_2797;;;[];;;;text;t2_8qbcq38;False;False;[];;Willy literally rose up to the occasion.;False;False;;;;1610313952;;False;{};gisuv2j;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuv2j/;1610356529;3;True;False;anime;t5_2qh22;;0;[]; -[];;;komodo_dragonzord;;ann;[];;;dark;text;t2_4q35p;False;False;[];;hulu gets it on time;False;False;;;;1610313958;;False;{};gisuvic;False;t3_kujurp;False;True;t1_gison05;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuvic/;1610356536;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FleraAnkor;;;[];;;;text;t2_185ttwzu;False;False;[];;"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH - -That was hype. I am soooooo on board.";False;False;;;;1610313965;;False;{};gisuw0m;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuw0m/;1610356543;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;They did skip one important scene but it will likely be included next episode.;False;False;;;;1610313965;;False;{};gisuw1n;False;t3_kujurp;False;True;t1_gisu0f0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuw1n/;1610356544;3;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;lol it's already at 7k... in 2 hours;False;False;;;;1610313971;;False;{};gisuwga;False;t3_kujurp;False;True;t1_gist2fg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuwga/;1610356550;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bountygiver;;;[];;;;text;t2_f052i;False;False;[];;When marley is in ashes, then you have my permission to die.;False;False;;;;1610313983;;False;{};gisuxc1;False;t3_kujurp;False;False;t1_gisbikz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuxc1/;1610356563;9;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;They the Walls are massive and seem to be packed full of them. An entire army hidden away.;False;False;;;;1610313983;;False;{};gisuxc9;False;t3_kujurp;False;False;t1_gisuhmp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuxc9/;1610356563;131;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;Yeah, but I didn't think it would actually gain so much momentum. I thought that by this point the boost would be just enough to keep the original momentum.;False;False;;;;1610313995;;False;{};gisuy60;False;t3_kujurp;False;False;t1_gisusot;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuy60/;1610356575;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Furyoflight;;;[];;;;text;t2_4ebqhaan;False;False;[];;"I don't know if anyone saw it, but at the slow mo of everyone gaping at eren's transformation someone got straight up smacked by a piece of debris. - -Not important but still.";False;False;;;;1610313996;;False;{};gisuya6;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuya6/;1610356577;119;True;False;anime;t5_2qh22;;0;[]; -[];;;exia00111;;;[];;;;text;t2_8pn04;False;False;[];;Recognizing karma is coming back to him. He killed so many innocents, and because of the chain of hate he sowed on that day, Eren is coming to kill their innocents.;False;False;;;;1610314003;;False;{};gisuys5;False;t3_kujurp;False;False;t1_gise6z3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuys5/;1610356584;12;False;False;anime;t5_2qh22;;0;[]; -[];;;BreadKrumb;;;[];;;;text;t2_j2ydj;False;False;[];;"Also when Willy said ""Because I was born in this world"" Eren reacted slightly because that's the exact same thing Eren said when he transformed to block the gate with that huge boulder in the first season.";False;False;;;;1610314005;;False;{};gisuyya;False;t3_kujurp;False;True;t1_gisd65h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuyya/;1610356587;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;*The gang levels a residential district*;False;False;;;;1610314007;;False;{};gisuz2m;False;t3_kujurp;False;False;t1_gismnlh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuz2m/;1610356588;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;I don’t think that’s the war, the war is haters on MAL not wanting this season of AoT to become the new #1 rated anime on the website. There are A LOT of bots and dumb users giving the season a 1/10, otherwise it would be the #1 rated entry on MAL;False;False;;;;1610314015;;False;{};gisuzne;False;t3_kujurp;False;False;t1_gislzp3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuzne/;1610356598;18;True;False;anime;t5_2qh22;;0;[]; -[];;;tiramisu169;;;[];;;;text;t2_6pvyyfwz;False;False;[];;It's ok Eren said no homo;False;False;;;;1610314019;;False;{};gisuzxx;False;t3_kujurp;False;False;t1_gisfvt9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisuzxx/;1610356602;29;True;False;anime;t5_2qh22;;0;[]; -[];;;TheMexicanAvatar;;;[];;;;text;t2_xmvpo;False;False;[];;"does America exist in this universe? haha - -if so, I don't care who... I just want non-eldians to come clap the fuck out of Eren. Bring the tanks, bring the planes, bring the bombs, do not let this end in Eren and 10 million wall titans crushing all of humanity. - -Since the beginning of the show we've rooted for humanity and I will continue to do so";False;False;;;;1610314020;;False;{};gisv00z;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv00z/;1610356603;6;True;False;anime;t5_2qh22;;0;[]; -[];;;sstizzle;;;[];;;;text;t2_e9qm7;False;False;[];;Made great music before he died;False;False;;;;1610314022;;False;{};gisv04p;False;t3_kujurp;False;True;t1_gisuri7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv04p/;1610356605;2;True;False;anime;t5_2qh22;;0;[]; -[];;;serrations_;;;[];;;;text;t2_l8zix;False;False;[];;"Thats exactly right! - -👈 As expected of u/LordKaelan";False;False;;;;1610314022;;False;{};gisv05q;False;t3_kujurp;False;False;t1_gisbb5j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv05q/;1610356605;5;True;False;anime;t5_2qh22;;0;[]; -[];;;nickbwhit15;;;[];;;;text;t2_5nvvnohl;False;False;[];;Thank you;False;False;;;;1610314023;;False;{};gisv08z;False;t3_kujurp;False;True;t1_gisuto2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv08z/;1610356607;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FleraAnkor;;;[];;;;text;t2_185ttwzu;False;False;[];;To be expected. Eren is a warrior and a bit fucked-up. He considers it a means to an end.;False;False;;;;1610314043;;False;{};gisv1mk;False;t3_kujurp;False;False;t1_gisurtq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv1mk/;1610356628;46;True;False;anime;t5_2qh22;;0;[]; -[];;;xDownInPainx;;;[];;;;text;t2_4dvmgc3q;False;False;[];;Some people are going to shit their pants because of this misunderstanding lmao;False;False;;;;1610314047;;False;{};gisv1wn;False;t3_kujurp;False;False;t1_gisai0e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv1wn/;1610356632;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;"Both ""attack titan"" and ""that day"" are better than ""hero"" imo.";False;False;;;;1610314047;;False;{};gisv1yk;False;t3_kujurp;False;False;t1_gistcev;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv1yk/;1610356633;4;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;"Crunchyroll: The content is intended for mature audiences only. - -Bruh we know that already, we had suicide-related content in 3 of the last 4 episodes.";False;False;;;;1610314048;;False;{};gisv209;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv209/;1610356634;132;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610314053;;False;{};gisv2d3;False;t3_kujurp;False;True;t1_gisu3rd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv2d3/;1610356638;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;We are in agreement.;False;False;;;;1610314058;;False;{};gisv2r1;False;t3_kujurp;False;False;t1_gisu430;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv2r1/;1610356644;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ugowy;;;[];;;;text;t2_55pt997e;False;False;[];;I just rewatched it and and totally speechless...;False;False;;;;1610314059;;False;{};gisv2sq;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv2sq/;1610356644;32;True;False;anime;t5_2qh22;;0;[]; -[];;;ValkyrieCain9;;;[];;;;text;t2_1c39d6;False;False;[];;"I mean isn't that the point. Part of the ""we're the same"" conversation was that both Reiner and Eren had a deep desire to be the hero, but that idea, at least in its basic form doesn't really exist. Eren destroyed a building with many innocent people, yes, but four years ago Reiner did a similar thing. Destroying the wall meant crushing the people below as well as allowing the titans to enter the space. Both these acts were done consciously by two people who just want to ""save the world"". But as we see this doesn't mean always doing the morally right thing all the time, begging the question is there even any point of the concept of a hero.";False;False;;;;1610314062;;False;{};gisv30o;False;t3_kujurp;False;False;t1_gischn4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv30o/;1610356648;20;True;False;anime;t5_2qh22;;0;[]; -[];;;serrations_;;;[];;;;text;t2_l8zix;False;False;[];;r/erendidnothingwrong;False;False;;;;1610314063;;False;{};gisv33q;False;t3_kujurp;False;True;t1_gisaesh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv33q/;1610356649;0;True;False;anime;t5_2qh22;;0;[]; -[];;;king-boi1;;;[];;;;text;t2_4mts347m;False;False;[];;I’m shocked that Willy was voted below Gabi;False;False;;;;1610314070;;False;{};gisv3m1;False;t3_kujurp;False;True;t1_gislz57;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv3m1/;1610356656;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;If you can't beat 'em, join 'em. Tbf I haven't seen any references to future episodes yet so let's hope it stays that way.;False;False;;;;1610314077;;False;{};gisv43i;False;t3_kujurp;False;True;t1_gishjuw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv43i/;1610356663;0;True;False;anime;t5_2qh22;;0;[]; -[];;;nanoman92;;;[];;;;text;t2_j2h04;False;False;[];;NOT ONLY THAT BUT IT WILL GET BETTER;False;False;;;;1610314083;;False;{};gisv4ii;False;t3_kujurp;False;False;t1_gisml52;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv4ii/;1610356671;22;True;False;anime;t5_2qh22;;0;[]; -[];;;jeffjeffersonthe3rd;;;[];;;;text;t2_12dplj;False;False;[];;I’m a manga reader. I’ve read this chapter countless times. I knew line for line what was going to happen. I was still fucking shaking.;False;False;;;;1610314085;;False;{};gisv4og;False;t3_kujurp;False;False;t1_gisb5i0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv4og/;1610356673;11;True;False;anime;t5_2qh22;;0;[]; -[];;;komodo_dragonzord;;ann;[];;;dark;text;t2_4q35p;False;False;[];;yeah I was thinking that there's no way the old-ass technology of paradis is gonna win any wars so they have to ally with some other nation or something.;False;False;;;;1610314085;;False;{};gisv4os;False;t3_kujurp;False;False;t1_gisiqhp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv4os/;1610356673;37;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 125, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'When you come across a feel-good thing.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'icon_width': 2048, 'id': 'award_5f123e3d-4f48-42f4-9c11-e98b566d5897', 'is_enabled': True, 'is_new': False, 'name': 'Wholesome', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;theleebert;;;[];;;;text;t2_1x0qoio;False;False;[];;"This is my first time commenting here. - -I can't remember the last time I was shaking while watching something, be it western live action or anime. - -This episode absolutely knocked it out the park. Flawless execution.";False;False;;;;1610314099;;False;{};gisv5pt;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv5pt/;1610356688;210;True;False;anime;t5_2qh22;;1;[]; -[];;;tiour;;;[];;;;text;t2_5ktwaudn;False;False;[];;I guess it broke the internet again. Multiple sites are inaccessible atm.;False;False;;;;1610314102;;False;{};gisv5wa;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv5wa/;1610356691;28;True;False;anime;t5_2qh22;;0;[]; -[];;;janoDX;;;[];;;;text;t2_bowtb;False;False;[];;This is the day there the breaks of the train got destroyed and the train will not stop. NO STOPS.;False;False;;;;1610314113;;False;{};gisv6pd;False;t3_kujurp;False;False;t1_gisaex2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv6pd/;1610356703;2;True;False;anime;t5_2qh22;;0;[]; -[];;;apalapachya;;;[];;;;text;t2_b70a1;False;False;[];;"dude went from ""Eren, run."" to ""Run, its Eren""";False;False;;;;1610314120;;False;{};gisv772;False;t3_kujurp;False;False;t1_gisafs9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv772/;1610356711;66;True;False;anime;t5_2qh22;;0;[]; -[];;;theanimegamer-___-;;;[];;;dark;text;t2_3vm3lj8d;False;False;[];;Now THIS is character development;False;False;;;;1610314122;;False;{};gisv7dm;False;t3_kujurp;False;False;t1_gisib46;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv7dm/;1610356714;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NintendoMasterNo1;;MAL;[];;http://myanimelist.net/animelist/NintendoMaster1;dark;text;t2_eg21m;False;False;[];;And this is only the second best talk scene in the series.;False;False;;;;1610314127;;False;{};gisv7qu;False;t3_kujurp;False;False;t1_gisc1bn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv7qu/;1610356719;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610314137;;False;{};gisv8gk;False;t3_kujurp;False;True;t1_gissqs6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv8gk/;1610356730;1;True;False;anime;t5_2qh22;;0;[]; -[];;;reader216;;;[];;;;text;t2_17h9jf;False;False;[];;"This is such an amazing episode and there is a lot to comment on. One thing I liked was the contrast between Reiner saying he wants to die to Willy saying he doesn’t. - -Eren was in full control and maybe what Willy said and him uniting the people after deceiving them because he doesn’t want to die makes Eren realise he all he can do he keep moving forward";False;False;;;;1610314141;;False;{};gisv8rk;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv8rk/;1610356734;7;True;False;anime;t5_2qh22;;0;[]; -[];;;serrations_;;;[];;;;text;t2_l8zix;False;False;[];;**FATALITY**;False;False;;;;1610314152;;False;{};gisv9kc;False;t3_kujurp;False;False;t1_gisrf8w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv9kc/;1610356746;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Timelymanner;;;[];;;;text;t2_a8e3r;False;False;[];;He asked for war, he received a war.;False;False;;;;1610314154;;False;{};gisv9q4;False;t3_kujurp;False;False;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv9q4/;1610356748;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Shadowbringers;;;[];;;;text;t2_28ta9vjw;False;False;[];;manga readers with copy pasted essays incoming;False;False;;;;1610314157;;False;{};gisv9yq;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisv9yq/;1610356752;201;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"Do you guys think that Levi gathered the whole crew on the island and gave a speech to his troops before the whole operation started like in Django Unchained? - -**Levi:** *""Now unless they start shootin' first, nobody shoot 'em. That's way too simple for these jokers. We're gonna slice those Marleyan assholes to death! And I am personally gonna strip and clip that gaboon Zeeke myself!""*";False;False;;;;1610314158;;1610325459.0;{};gisva0b;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisva0b/;1610356752;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;"Its in line with previous episodes, just on a bigger scale (except ep 1 which released at the same time as official subs) https://cdn.discordapp.com/attachments/476391825590976522/793854102308126730/karma_track.png - -Right now it's still behind episode 1 but it's closing the gap fast";False;False;;;;1610314164;;False;{};gisvah3;False;t3_kujurp;False;False;t1_gisuy60;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvah3/;1610356759;5;True;False;anime;t5_2qh22;;0;[]; -[];;;kazetoame;;;[];;;;text;t2_7rcfw;False;False;[];;That is absolutely terrifyingly gorgeous.;False;False;;;;1610314166;;False;{};gisvan6;False;t3_kujurp;False;False;t1_gisaov5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvan6/;1610356761;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610314169;;False;{};gisvasz;False;t3_kujurp;False;True;t1_gisuay5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvasz/;1610356763;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;"I waited for weeks to see this and just before the episode was out my fucking modem commits suicide. Well, I really did not mind using my phone data to watch this. - -I liked how [Eren reacts when Willy mentions that he was born in this world.](https://imgur.com/a/156161q) - -I honestly had forgotten about the theatrics used in Willy’s speech and damn, that final scene[ after his declaration of war sure looked impressive!](https://i.imgur.com/KH1EBqR.png)";False;False;;;;1610314169;;1610314717.0;{};gisvatn;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvatn/;1610356763;4;True;False;anime;t5_2qh22;;0;[]; -[];;;rejus_crust;;;[];;;;text;t2_ely0h;False;False;[];;Insane episode. Even as a manga reader it felt like I was experiencing these events for the very first time. That’s how good the OST, voice acting, and animation was. I can’t wait for the coming episodes.;False;False;;;;1610314174;;False;{};gisvb6n;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvb6n/;1610356769;8;True;False;anime;t5_2qh22;;0;[]; -[];;;cbizzle14;;;[];;;;text;t2_ew2y7;False;False;[];;Eren had Reiner shook the ENTIRE time. I fell for the handshake, I was looking confused like Reiner. But holy fuck did Eren come in with a plan! I can't wait to see how this unfolds. The way this episode was directed was amazing;False;False;;;;1610314179;;False;{};gisvblt;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvblt/;1610356775;7;True;False;anime;t5_2qh22;;0;[]; -[];;;TyrekL;;;[];;;;text;t2_17xuijx;False;False;[];;"I remember thinking ""damn, this guy is super extra,"" only for Eren to outclass him with his impeccable timing.";False;False;;;;1610314182;;False;{};gisvbso;False;t3_kujurp;False;False;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvbso/;1610356778;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610314186;;False;{};gisvc3h;False;t3_kujurp;False;False;t1_gisv00z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvc3h/;1610356782;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Eren and Reiner would have had such a bromance were they not on opposing sides.;False;False;;;;1610314187;;False;{};gisvc5j;False;t3_kujurp;False;True;t1_gism3jf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvc5j/;1610356784;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lohtric;;;[];;;;text;t2_10buyw;False;False;[];;LETS FUCKING GOOOOOOOOOOOOoooooo... . . .;False;False;;;;1610314189;;False;{};gisvcar;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvcar/;1610356786;3;True;False;anime;t5_2qh22;;0;[]; -[];;;blay12;;MAL;[];;https://myanimelist.net/animelist/mynameis205;dark;text;t2_6g0io;False;False;[];;I had rewatched the whole thing for the first time leading up to this season, and man did I miss a lot of stuff the first time through when waiting for new seasons. Blasting through all of it in a few days made those callbacks so much easier to catch.;False;False;;;;1610314193;;False;{};gisvcjz;False;t3_kujurp;False;False;t1_gislyf5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvcjz/;1610356790;26;True;False;anime;t5_2qh22;;0;[]; -[];;;scleep;;;[];;;;text;t2_14i2xh;False;False;[];;Chainsaw man although guess not anime yet;False;False;;;;1610314193;;False;{};gisvcma;False;t3_kujurp;False;False;t1_gislyf5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvcma/;1610356791;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;Yeah, wall titans + Armin. Lol.;False;False;;;;1610314205;;False;{};gisvdgs;False;t3_kujurp;False;False;t1_gisuhmp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvdgs/;1610356802;40;True;False;anime;t5_2qh22;;0;[]; -[];;;simpersly;;;[];;;;text;t2_3dqe6;False;False;[];;Well, at least he can hang out with a harem of rich quintuplet sisters as emotional support.;False;False;;;;1610314207;;False;{};gisvdmg;False;t3_kujurp;False;False;t1_gisgdk6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvdmg/;1610356805;4;True;False;anime;t5_2qh22;;0;[]; -[];;;FakeDaVinci;;;[];;;;text;t2_hm059;False;False;[];;"[To me this is one of the biggest parallels in the story.](https://imgur.com/a/cmpwt6r) The will and right to life are two very present conflicts in the world. From the oppression of the titans, to the oppression by other humans, wanting to live is such a simple yet hard thing to accomplish in their world (and ours as well). And the same can be said about the Marleyans and countless other cultures before the end of Eldian supremacy. In the end they all fight their wars for their freedoms, justified or unjustified, there are two sides to every story. [No one is truly evil or good.](https://imgur.com/a/WpYnCcf) - -Also holy shit, I don't think you can find a better rallying cry for unity than [this!](https://imgur.com/a/v6whFOH) - -[Eren](https://imgur.com/a/78JXIoc) is such a fascinating character. He learned and endured so much. He definitely understands the horrible hypocrisy and the depths of cruelty in the world. Understanding that even a sea across, he will find people just like in Paradis. He is able to sympathize with Reiner, who was responsible for the single most defining day in Eren's life. Yet he understands and forgives/understands him. But he chose to move forward, to fight for ""his"" people at home. Right or wrong he must push [forward.](https://imgur.com/a/B2d2zei)";False;False;;;;1610314212;;1610314394.0;{};gisvdzj;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvdzj/;1610356811;31;True;False;anime;t5_2qh22;;0;[]; -[];;;TeixeiraJRT;;;[];;;;text;t2_x88v8;False;False;[];;wUH?;False;False;;;;1610314219;;False;{};gisveiv;False;t3_kujurp;False;False;t1_gisq2yn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisveiv/;1610356819;7;True;False;anime;t5_2qh22;;0;[]; -[];;;HyperSonic6325;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;I don’t simp for Kaguya girls.;dark;text;t2_40y5x1xp;False;False;[];;Willy speedrunning losing the war Any% WR.;False;False;;;;1610314219;;False;{};gisvejl;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvejl/;1610356819;30;True;False;anime;t5_2qh22;;0;[]; -[];;;SkepticalSheep;;;[];;;;text;t2_ncigf;False;False;[];;Eren commits a war crime, colorized;False;False;;;;1610314230;;False;{};gisvfdk;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvfdk/;1610356832;23;True;False;anime;t5_2qh22;;0;[]; -[];;;thedicestoppedrollin;;;[];;;;text;t2_3uzc4kbl;False;False;[];;Is it a terrorist attack when your target just declared war/genocide on you (for a 2nd time?);False;False;;;;1610314230;;False;{};gisvfdx;False;t3_kujurp;False;False;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvfdx/;1610356832;8;True;False;anime;t5_2qh22;;0;[]; -[];;;TurbidusQuaerenti;;;[];;;;text;t2_g9rwp;False;False;[];;I get what you're saying, but I wouldn't say having no hesitation in killing people is a good thing...;False;False;;;;1610314232;;False;{};gisvfkm;False;t3_kujurp;False;False;t1_gisi1jl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvfkm/;1610356834;59;True;False;anime;t5_2qh22;;0;[]; -[];;;masterflaccid;;;[];;;;text;t2_s54iq7m;False;False;[];;amazing episode. worth the wait and then some.;False;False;;;;1610314233;;False;{};gisvfn1;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvfn1/;1610356835;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Lumaro;;;[];;;;text;t2_1302qz;False;False;[];;It’s not a far-fetched worldview. He prioritizes the lives of his friends and those in his homeland, as most people would.;False;False;;;;1610314234;;False;{};gisvfnu;False;t3_kujurp;False;False;t1_gistyv1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvfnu/;1610356836;32;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610314236;;False;{};gisvftg;False;t3_kujurp;False;True;t1_gisnhgr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvftg/;1610356838;1;True;False;anime;t5_2qh22;;0;[]; -[];;;deavsone;;;[];;;;text;t2_146329cg;False;False;[];;Time to go on the offense boyz;False;False;;;;1610314240;;False;{};gisvg2f;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvg2f/;1610356842;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ThatMexicanKidd69;;;[];;;;text;t2_bc2ay;False;False;[];;I see no lies here;False;False;;;;1610314252;;False;{};gisvgz4;False;t3_kujurp;False;True;t1_gisanh2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvgz4/;1610356855;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rooran;;;[];;;;text;t2_55tyv;False;False;[];;Heads-up to anime onlys: this is a manga reader subreddit, I wouldn't hang out there if I were you.;False;False;;;;1610314265;;False;{};gisvhuw;False;t3_kujurp;False;False;t1_gisgzl3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvhuw/;1610356869;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;The math varies depending on the theorizer.;False;False;;;;1610314265;;1610314824.0;{};gisvhvl;False;t3_kujurp;False;False;t1_gisuhmp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvhvl/;1610356869;12;True;False;anime;t5_2qh22;;0;[]; -[];;;NiamhHA;;;[];;;;text;t2_4iywrflx;False;False;[];;"Wow. Once again, I have been reminded of why I consider Attack on Titan to be one of the greatest TV shows of all time. Each moment in this episode was even better than the last. Attack on Titan always has the best cliffhangers. - -It was just too perfect, how they hadn’t even started planning on how to take down Paradis, ONLY FOR THE VERY PERSON THEY ARE TERRIFIED OF TO BURST THROUGH THE FLOOR AND CRUSH THEIR LEADER. Eren just cemented himself as the enemy of the world, to them. - -I felt so tense throughout the whole episode. At the start, it was because I thought the Eren and Reiner reunion would be the most dramatic part. Haha.";False;False;;;;1610314271;;1610314362.0;{};gisvicd;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvicd/;1610356876;58;True;False;anime;t5_2qh22;;0;[]; -[];;;tiramisu169;;;[];;;;text;t2_6pvyyfwz;False;False;[];;Eren is and always will be the protagonist. His point about being a bad guy was just to show that it's a matter of perspective - to Reiner and Falco, he's definitely the bad guy, but to Eren, Reiner definitely seemed like the bad guy when his mom was eaten (even though we know Reiner is not the bad guy).;False;False;;;;1610314275;;False;{};gisvimi;False;t3_kujurp;False;False;t1_gistz0c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvimi/;1610356881;37;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;"Where exactly is your evidence people upvoted it or rated it 10/10 without watching the episode? Just because it wasn't available in legal platforms doesn't mean people hadn't watched it; this thread is only posted when subs are available. And there are people who watch the raws. - -I mean I'm sure there are some people who upvoted it before watching but you could say the same for any other anime, especially those with source material readers.";False;False;;;;1610314276;;False;{};gisviqd;False;t3_kujurp;False;True;t1_gistyad;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisviqd/;1610356883;1;True;False;anime;t5_2qh22;;0;[]; -[];;;theanimegamer-___-;;;[];;;dark;text;t2_3vm3lj8d;False;False;[];;This is the first time he's killed innocent people if I'm not mistaken, but they are still reflections of each other.;False;False;;;;1610314276;;False;{};gisviqk;False;t3_kujurp;False;True;t1_giscr3k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisviqk/;1610356883;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shadowbringers;;;[];;;;text;t2_28ta9vjw;False;False;[];;yep it takes them five hours to sub;False;False;;;;1610314279;;False;{};gisviwm;False;t3_kujurp;False;False;t1_gisosdz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisviwm/;1610356886;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pintossbm123;;;[];;;;text;t2_25s6ldw9;False;False;[];;It's insane, it had like 4 to 5K before it was even on CR or Funi.;False;False;;;;1610314281;;False;{};gisvj2h;False;t3_kujurp;False;True;t1_gisusot;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvj2h/;1610356888;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Cooperhawk11;;;[];;;;text;t2_1pgm5j9w;False;False;[];;I love how from the end of last episode to this one, reiner’s face is just *FEAR*;False;False;;;;1610314283;;False;{};gisvj75;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvj75/;1610356890;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610314289;;False;{};gisvjoc;False;t3_kujurp;False;True;t1_gisvasz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvjoc/;1610356899;18;True;False;anime;t5_2qh22;;0;[]; -[];;;H4wx;;;[];;;;text;t2_ehuq5;False;False;[];;Paradis prob just won the war tbh, so many kills the snowball will be absurd.;False;False;;;;1610314296;;False;{};gisvk6p;False;t3_kujurp;False;True;t1_gisljn9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvk6p/;1610356907;2;True;False;anime;t5_2qh22;;0;[]; -[];;;brownguy6391;;;[];;;;text;t2_3et2u982;False;False;[];;By any chance are you watching just for the action scenes and not the story?;False;False;;;;1610314301;;False;{};gisvkht;False;t3_kujurp;False;True;t1_gisucic;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvkht/;1610356913;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kinderschlager;;;[];;;;text;t2_ci58c;False;False;[];;gfinally got to watch it. wtf you fuckers, that cliffhanger?!!!!!;False;False;;;;1610314305;;False;{};gisvkso;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvkso/;1610356917;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HafuriYuki;;;[];;;;text;t2_th2bj;False;False;[];;Reverse grim reminder.;False;False;;;;1610314309;;False;{};gisvl4d;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvl4d/;1610356923;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;Great graph. I was comparing it to the ones in fall season 2020, but it was not very useful for obvious reasons. I hope someone makes a top 10 karma progression graph at the end of this season.;False;False;;;;1610314312;;False;{};gisvlbu;False;t3_kujurp;False;True;t1_gisvah3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvlbu/;1610356926;3;True;False;anime;t5_2qh22;;0;[]; -[];;;deavsone;;;[];;;;text;t2_146329cg;False;False;[];;Dude does a lot of SnK fan arts like this but they are 99% manga spoilers;False;False;;;;1610314315;;False;{};gisvliq;False;t3_kujurp;False;False;t1_gisg50x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvliq/;1610356929;8;True;False;anime;t5_2qh22;;0;[]; -[];;;SmartRaccoon3643;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;echidna cultist;dark;text;t2_7jtp3l74;False;False;[];;Im confused with Eren's abilities for the founding and attack titan. Can someone explain?;False;False;;;;1610314316;;False;{};gisvlmv;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvlmv/;1610356931;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Status_Committee_544;;;[];;;;text;t2_6ygtaf23;False;False;[];;MAPPA GOAT;False;False;;;;1610314319;;False;{};gisvlsn;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvlsn/;1610356933;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nanoman92;;;[];;;;text;t2_j2h04;False;False;[];;"They explained in season 3, Paradis was rich in resources and they wanted to take it (also, having the founding titan would have been great). -Here we can see that as an excuse, they justified it as preventing them from using the weapons of mass destruction they had in the form of the wall titans (fullingly knowing that they were useless because of the king's pacifism) - -Isayama was not very subtle about the IRL inspiration for this...";False;False;;;;1610314322;;1610317715.0;{};gisvm0w;False;t3_kujurp;False;False;t1_gisjnrv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvm0w/;1610356937;59;True;False;anime;t5_2qh22;;0;[]; -[];;;FrizFroz;;;[];;;;text;t2_razrj;False;False;[];;Their relationship is now cannon.;False;False;;;;1610314331;;False;{};gisvmp4;False;t3_kujurp;False;False;t1_giseulo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvmp4/;1610356948;15;True;False;anime;t5_2qh22;;0;[]; -[];;;PieckIsExactlyRight;;;[];;;;text;t2_k0kfxhz;False;False;[];;Eren did nothing wrong;False;False;;;;1610314332;;False;{};gisvmsg;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvmsg/;1610356949;6;True;False;anime;t5_2qh22;;0;[]; -[];;;sexysexysexyboi;;;[];;;;text;t2_3e8zps8a;False;False;[];;we’re finally getting some action;False;False;;;;1610314337;;False;{};gisvn7k;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvn7k/;1610356956;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kleber115;;;[];;;;text;t2_3a2jmy6m;False;False;[];;I'm just saying the reason they dislike the walldians so much, I understand what eren is doing rn and I sympathize with him;False;False;;;;1610314341;;False;{};gisvnhg;False;t3_kujurp;False;False;t1_gisvfnu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvnhg/;1610356959;7;True;False;anime;t5_2qh22;;0;[]; -[];;;GameDepths;;;[];;;;text;t2_17wmsuv6;False;False;[];;"Is attack titan and founding titan same? If no, pls answer these questions- -1) Does eren have both of them -2) Can you have multiple titans -3) How does having multiple titan affect your- abilities, size and years left to live";False;False;;;;1610314352;;False;{};gisvobu;False;t3_kujurp;False;False;t1_gismb1y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvobu/;1610356973;21;True;False;anime;t5_2qh22;;0;[]; -[];;;HawkBlawk;;;[];;;;text;t2_86o86ule;False;False;[];;"All of the dialogue in this episode was phenomenal...perhaps the best I've come across in an anime...the voice acting to match it too. The storytelling is amazing. - -I love the action of S3P2, but this episode had me more hyped than any of that...Reiner admitting his guilt to Eren, Eren lifting him up only to activate his titan powers...this next week is gonna be an even harder wait than the 2 week one we just experienced. - -""I keep moving forward...until I destroy my enemies."" Chills man... - -I really hope Reiner gets to redeem himself to Eldia when all of this is said and done. I've come to really love his character. - -Edit: I've watched the final 5 minutes like...7 times now and can't get enough";False;False;;;;1610314359;;1610316703.0;{};gisvou9;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvou9/;1610356981;49;True;False;anime;t5_2qh22;;0;[]; -[];;;jmangan11;;;[];;;;text;t2_16o39l;False;False;[];;That did not feel like 20min;False;False;;;;1610314369;;False;{};gisvpkw;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvpkw/;1610356993;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610314376;;False;{};gisvq1s;False;t3_kujurp;False;True;t1_gisu4sz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvq1s/;1610357000;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610314386;;False;{};gisvqsb;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvqsb/;1610357011;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iForgotMyOldAcc;;MAL;[];;https://myanimelist.net/profile/wittisy;dark;text;t2_jof9q;False;False;[];;If heroes in all anime remain unquestionably morally correct it'll be boring as fuuuuuuck. Bring me morally gray/corrupt main characters any day.;False;False;;;;1610314391;;False;{};gisvr4w;False;t3_kujurp;False;False;t1_gischn4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvr4w/;1610357016;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Timelymanner;;;[];;;;text;t2_a8e3r;False;False;[];;Adult Eren is genuinely terrifying.;False;False;;;;1610314391;;False;{};gisvr6g;False;t3_kujurp;False;False;t1_gisao83;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvr6g/;1610357017;5;True;False;anime;t5_2qh22;;0;[]; -[];;;A_Rogue_Forklift;;;[];;;;text;t2_ib2tr;False;False;[];;He also said that right before he picks up the boulder in season 1 when armin is trying to get him to come back to his senses;False;False;;;;1610314397;;False;{};gisvrl8;False;t3_kujurp;False;False;t1_gisjiu8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvrl8/;1610357023;12;True;False;anime;t5_2qh22;;0;[]; -[];;;xXd3nnisXx;;;[];;;;text;t2_1v4wuz6w;False;False;[];;"poor Falco had to watch Reiner suffer and got used by Eren... - -F in the chat for my boy...";False;False;;;;1610314403;;False;{};gisvs0c;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvs0c/;1610357029;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ModieOfTheEast;;;[];;;;text;t2_g7tqk9b;False;False;[];;Yeah, that's what I've been wondering is well. I mean, Pieck could have seen Armin during the fight in the second half of season 4 (she was there after all), but I am also wondering what's with his size. And they are using the normal Armin voice for the previews, so it's not like the VA isn't working with them. Only option would be the VA was able to change the voice this much or they changed his VA for some reason.;False;False;;;;1610314407;;False;{};gisvs9w;False;t3_kujurp;False;True;t1_giskvhb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvs9w/;1610357033;3;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;Surprisingly few this season. We're just regurgitating memes instead.;False;False;;;;1610314407;;False;{};gisvsc5;False;t3_kujurp;False;False;t1_gisv9yq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvsc5/;1610357034;75;True;False;anime;t5_2qh22;;0;[]; -[];;;Aszbeeguy;;;[];;;;text;t2_8r8n7v52;False;False;[];;I agree with everything except the raphtalia part. I still enjoyed the show though, maybe because i didn't have any taste or because it's still likeable. I'm getting ready to get downvoted, but nobody can change my opinion about the writing and nearly everything else being poorly done;False;False;;;;1610358625;;False;{};giv0r5b;False;t3_kuzldt;False;False;t3_kuzldt;/r/anime/comments/kuzldt/shield_hero_is_garbage/giv0r5b/;1610406967;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610358636;;False;{};giv0rk3;False;t3_kuzldt;False;True;t3_kuzldt;/r/anime/comments/kuzldt/shield_hero_is_garbage/giv0rk3/;1610406975;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;gangrainette;;MAL;[];;https://myanimelist.net/profile/bouletos;dark;text;t2_vlti1;False;False;[];;"We know that. - -Anything else ?";False;False;;;;1610358960;;False;{};giv15bw;False;t3_kuzldt;False;False;t3_kuzldt;/r/anime/comments/kuzldt/shield_hero_is_garbage/giv15bw/;1610407289;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Are you one of those toxic monogatari lover;False;True;;comment score below threshold;;1610358993;;1610359186.0;{};giv16z0;False;t3_kuzldt;False;True;t3_kuzldt;/r/anime/comments/kuzldt/shield_hero_is_garbage/giv16z0/;1610407313;-12;True;False;anime;t5_2qh22;;0;[]; -[];;;ChiefKaduku;;;[];;;;text;t2_9l85qa15;False;False;[];;I feel that the writer was trying to do something different with the whole get sucked into another game universe.;False;False;;;;1610359053;;False;{};giv19zn;False;t3_kuzldt;False;False;t3_kuzldt;/r/anime/comments/kuzldt/shield_hero_is_garbage/giv19zn/;1610407357;5;True;False;anime;t5_2qh22;;0;[]; -[];;;sadpunch;;;[];;;;text;t2_98frz4o1;False;False;[];;Yep it was good at the start but idc about it anymore;False;False;;;;1610359935;;False;{};giv2i5u;False;t3_kuzldt;False;True;t3_kuzldt;/r/anime/comments/kuzldt/shield_hero_is_garbage/giv2i5u/;1610408015;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheTruthVeritas;;;[];;;;text;t2_1056nw;False;False;[];;And then right after the start he ran out of juice and fell right into being generic isekai lol.;False;False;;;;1610359959;;False;{};giv2jb0;False;t3_kuzldt;False;False;t1_giv19zn;/r/anime/comments/kuzldt/shield_hero_is_garbage/giv2jb0/;1610408031;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610360261;moderator;False;{};giv2y7c;False;t3_kuzzhv;False;True;t3_kuzzhv;/r/anime/comments/kuzzhv/attack_on_titan_final_season/giv2y7c/;1610408252;1;False;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"Nothing in this world is free. - -You can pay with your time by watching it on Crunchyroll with ads, or you can pay it with your time when working to pay for Crunchyroll Premium, you also get the benefit of watching it when it comes out.";False;False;;;;1610360431;;False;{};giv36zd;False;t3_kuzzhv;False;True;t3_kuzzhv;/r/anime/comments/kuzzhv/attack_on_titan_final_season/giv36zd/;1610408377;2;True;False;anime;t5_2qh22;;0;[]; -[];;;godmyfriendo;;;[];;;;text;t2_895m9di8;False;False;[];;Okie thanks;False;False;;;;1610360466;;False;{};giv38oj;False;t3_kuzzhv;False;True;t1_giv36zd;/r/anime/comments/kuzzhv/attack_on_titan_final_season/giv38oj/;1610408402;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Formeralucardbradley;;;[];;;;text;t2_8roc74ql;False;False;[];;This is awesome. Definitely better than what mappa used.;False;True;;comment score below threshold;;1610360478;;False;{};giv39a0;False;t3_kuzq0n;False;True;t3_kuzq0n;/r/anime/comments/kuzq0n/attack_on_titan_s03e05_final_scene_with_leaked_ost/giv39a0/;1610408412;-12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610360565;;False;{};giv3ddg;False;t3_kuzzhv;False;True;t3_kuzzhv;/r/anime/comments/kuzzhv/attack_on_titan_final_season/giv3ddg/;1610408477;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vsegda7;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Vsegda7;light;text;t2_18b0wqi2;False;False;[];;Usual places nobody's allowed to mention on this sub.;False;False;;;;1610360992;;False;{};giv3yy6;False;t3_kuzzhv;False;True;t3_kuzzhv;/r/anime/comments/kuzzhv/attack_on_titan_final_season/giv3yy6/;1610408808;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610361517;;False;{};giv4pq1;False;t3_kv06fx;False;True;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giv4pq1/;1610409203;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OtherHalfling;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/otherhalfling;light;text;t2_di2cu;False;False;[];;Jesus, that music is WAY too loud over Willy's voice...;False;False;;;;1610361648;;False;{};giv4wvf;False;t3_kuzq0n;False;True;t3_kuzq0n;/r/anime/comments/kuzq0n/attack_on_titan_s03e05_final_scene_with_leaked_ost/giv4wvf/;1610409303;16;True;False;anime;t5_2qh22;;0;[]; -[];;;WalkerH163;;;[];;;;text;t2_6j7zluai;False;False;[];;Dang, I don’t even like watching anime’s with no dubs;False;False;;;;1610361855;;False;{};giv57qn;False;t3_kv06fx;False;True;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giv57qn/;1610409462;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LolzForPolez;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_5if03qit;False;False;[];;I'm currently learning Japanese but through apps. I've only learnt hirigana for the vowels, k's and s's. I can recognizer them in sentences (I dont know any gramme tho) more or less easily but when it comes to speaking, I get kinda overloaded. How hard is for you listen to Japanese and understand? Soz it's probably a weird question;False;False;;;;1610361954;;False;{};giv5co2;False;t3_kv06fx;False;True;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giv5co2/;1610409534;1;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;Honestly when I started watching anime a lot more starting late middle school early high school, I also only watched the dubs. Even if there was a show I though sounded interesting, I only watched it if it had a dub. Maybe learning more japanese changed something or maybe reading more about the classic 'sub vs dub' war, but I really came to like the subs more. Although there are definitely a few shows with GOLDEN dubs;False;False;;;;1610362047;;False;{};giv5hm5;True;t3_kv06fx;False;False;t1_giv57qn;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giv5hm5/;1610409602;6;True;False;anime;t5_2qh22;;0;[]; -[];;;thelastnixon;;;[];;;;text;t2_qw66hdg;False;False;[];;More pictures needed!;False;False;;;;1610362090;;False;{};giv5k1w;False;t3_kv0crg;False;True;t3_kv0crg;/r/anime/comments/kv0crg/figurine_finally_arrived_i_really_underestimated/giv5k1w/;1610409634;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Incursio_;;;[];;;;text;t2_1xplphpy;False;False;[];;How does the unboxed figure looks like;False;False;;;;1610362102;;False;{};giv5kp7;False;t3_kv0crg;False;True;t3_kv0crg;/r/anime/comments/kv0crg/figurine_finally_arrived_i_really_underestimated/giv5kp7/;1610409643;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WalkerH163;;;[];;;;text;t2_6j7zluai;False;False;[];;Yup, I just started the anime watching phase where I am starting to care less if it has a dub, there are a lot of shows that I knew were good but I didn’t want to watch a sub, I think my last 5 shows or so were all sub so I’m glad I am acclimating a bit to subs;False;False;;;;1610362139;;False;{};giv5mqa;False;t3_kv06fx;False;True;t1_giv5hm5;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giv5mqa/;1610409672;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sodra;;MAL a-amq;[];;https://myanimelist.net/profile/sodra;dark;text;t2_5o34w;False;False;[];;Wow cool box;False;False;;;;1610362151;;False;{};giv5ncp;False;t3_kv0crg;False;True;t3_kv0crg;/r/anime/comments/kv0crg/figurine_finally_arrived_i_really_underestimated/giv5ncp/;1610409682;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JKOROX;;;[];;;;text;t2_168eos;False;False;[];;I'm still unpacking it and trying to find a good place for it lol;False;False;;;;1610362273;;False;{};giv5th9;True;t3_kv0crg;False;True;t1_giv5k1w;/r/anime/comments/kv0crg/figurine_finally_arrived_i_really_underestimated/giv5th9/;1610409769;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JKOROX;;;[];;;;text;t2_168eos;False;False;[];;I'll post a picture once I can find a spot for it... Haha;False;False;;;;1610362304;;False;{};giv5v13;True;t3_kv0crg;False;True;t1_giv5kp7;/r/anime/comments/kv0crg/figurine_finally_arrived_i_really_underestimated/giv5v13/;1610409791;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610362306;moderator;False;{};giv5v5y;False;t3_kv0eqq;False;True;t3_kv0eqq;/r/anime/comments/kv0eqq/looking_for_josee_the_tiger_and_the_fish_2020/giv5v5y/;1610409792;1;False;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;Nono not at all, and learning any hiragana is awesome. Honestly I can listen to conversations and understand very well, at least MUCH better than I can speak myself. From all the anime and on and off studying, I learned a TON of vocab over the past few years, and so when I hear people talk I can usually put together what they are saying. When it comes to speaking though, it's up to me to produce all the grammar which is a huge hurdle. Starting with the writing systems is super fun though, and it's fun to be able to start reading things too (though kanji is as big of a pain as grammar);False;False;;;;1610362362;;False;{};giv5xwr;True;t3_kv06fx;False;True;t1_giv5co2;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giv5xwr/;1610409833;1;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;My biggest problem with dubs was that because the mouths are animated for the Japanese lines, the dubs sometimes get veeeery creative with the translations so the English voice actors can line up with the mouths. I've watched dubbed series I used to love scene by scene to compare, and the personalities and characters sometimes seem like different people in the dubs. Also sometimes there's some plot explanation or otherwise oddly translated stuff that makes you miss out on details;False;False;;;;1610362563;;False;{};giv68ra;True;t3_kv06fx;False;False;t1_giv5mqa;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giv68ra/;1610409980;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610362882;moderator;False;{};giv6ouk;False;t3_kv0j9f;False;True;t3_kv0j9f;/r/anime/comments/kv0j9f/please_help_me_find_this_anime_ost/giv6ouk/;1610410254;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Final-Solid;;;[];;;;text;t2_yw0ryp5;False;False;[];;The problem with bombastic music over this scene is it risks the voices being less impactful. Personally, I really enjoy the primal roar of the Attack Titan followed by the Sawano Drop™️ of 2Volt, but I can see why others would’ve liked more intense music. Either way the scene is hype as fuck and the episode seems to be all over anime internet, which is major win because IMO this is Pieck (peak) anime.;False;False;;;;1610362893;;False;{};giv6pg4;False;t3_kuzq0n;False;True;t3_kuzq0n;/r/anime/comments/kuzq0n/attack_on_titan_s03e05_final_scene_with_leaked_ost/giv6pg4/;1610410264;19;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;The anime part of an anime opening is the fact that it's used in an anime. More often that not, it's a jpop track that's been commissioned for said anime. As for the what is anime, you can read the specifics in the wiki.;False;False;;;;1610362946;;False;{};giv6seo;False;t3_kv0ga7;False;False;t3_kv0ga7;/r/anime/comments/kv0ga7/what_makes_an_anime_opening_specifically_anime/giv6seo/;1610410305;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;Go to Japan and watch it in a Japanese theater;False;False;;;;1610362947;;False;{};giv6sfd;False;t3_kv0eqq;False;True;t3_kv0eqq;/r/anime/comments/kv0eqq/looking_for_josee_the_tiger_and_the_fish_2020/giv6sfd/;1610410305;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;"https://www.reddit.com/r/anime/comments/kuqh8g/merch_mondays_megathread_week_of_january_11_2021/?utm_medium=android_app&utm_source=share";False;False;;;;1610362977;;False;{};giv6u6m;False;t3_kv0ir5;False;True;t3_kv0ir5;/r/anime/comments/kv0ir5/new_hestia_figurine_my_small_collection_really/giv6u6m/;1610410330;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JKOROX;;;[];;;;text;t2_168eos;False;False;[];;Thank you;False;False;;;;1610363012;;False;{};giv6w2p;True;t3_kv0ir5;False;True;t1_giv6u6m;/r/anime/comments/kv0ir5/new_hestia_figurine_my_small_collection_really/giv6w2p/;1610410356;1;True;False;anime;t5_2qh22;;0;[]; -[];;;moichispa;;;[];;;;text;t2_g7zxf;False;False;[];;The first time you watch something without subtitles is magical. Treasure it;False;False;;;;1610363046;;False;{};giv6xvf;False;t3_kv06fx;False;False;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giv6xvf/;1610410380;157;True;False;anime;t5_2qh22;;0;[]; -[];;;dekalabia;;;[];;;;text;t2_qqkbdrk;False;False;[];;"Awesome, maybe finding series that have slightly more difficult japanese as you get the previous ones under your belt? I can see your end game or goal animes to be series like Rakugo, where you need to pay attention to the manner of speach and how each dialogue differs from one another in a narrative storytelling formant. While series like Tatami galaxy and Monogatari series will test your hearing comprehension and adeptness on keeping up with the machine gun dialogue. - - -It also would be quite useful being able to distinguish, naturally spoken japanese, anime style dialogue, and different accents and dialects. What you tend to find being used in mainstream shows are not exactly naturally spoken Japanese, while some shows where it strives for realism would have more grounded use of japanese. - - -As a Japanese native, I also would suggest to put on japanese subs with japanese dub to familiarizes with which kanjis and words are actually used. Japanese tend to have words and phrases that share phonetics but the meaning may range from similar to completely different. This also may train your ear in being able to hear the context to guess which word they are actually using.";False;False;;;;1610363143;;False;{};giv72x5;False;t3_kv06fx;False;False;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giv72x5/;1610410455;31;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;I shall, although I'll probably keep it to myself that it was Candy Boy...;False;False;;;;1610363210;;False;{};giv769o;True;t3_kv06fx;False;False;t1_giv6xvf;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giv769o/;1610410505;52;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;"All that comes to mind when I think of this series is, ""What a waste of science and engineering on immortals, all for it to go to waste"".";False;False;;;;1610363315;;False;{};giv7bep;False;t3_kv0llc;False;True;t3_kv0llc;/r/anime/comments/kv0llc/akudama_drive_a_few_words/giv7bep/;1610410581;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HayashiSawaryo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/HayashiSawaryo/;light;text;t2_74ql25l0;False;True;[];;"Begins tomorrow 12/1 - -Cloverworks";False;False;;;;1610363325;;False;{};giv7buj;True;t3_kv0m20;False;False;t3_kv0m20;/r/anime/comments/kv0m20/tv_anime_wonder_egg_priority_new_pv/giv7buj/;1610410588;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Plasma-Aki;;;[];;;;text;t2_23u0n20r;False;False;[];;Ofc, thanks for the comment. Still, I do believe it's possible to achieve the same kind of effect without it being attached to an actual anime and how to to do that is what I'm after. Thanks for your input!;False;False;;;;1610363395;;False;{};giv7fkf;True;t3_kv0ga7;False;True;t1_giv6seo;/r/anime/comments/kv0ga7/what_makes_an_anime_opening_specifically_anime/giv7fkf/;1610410641;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610363439;moderator;False;{};giv7i3x;False;t3_kv0nh8;False;True;t3_kv0nh8;/r/anime/comments/kv0nh8/do_you_know_if_oreshura_dubbed/giv7i3x/;1610410674;1;False;False;anime;t5_2qh22;;0;[]; -[];;;POTATOplays101;;;[];;;;text;t2_5waykguv;False;False;[];;Immortality is ass I would rather slit my wrists rn then have a immortal human become reality even if it was me I like how they did it cuz they didn’t use the immortality so it was a fair fight;False;False;;;;1610363445;;False;{};giv7ift;True;t3_kv0llc;False;True;t1_giv7bep;/r/anime/comments/kv0llc/akudama_drive_a_few_words/giv7ift/;1610410678;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Eliteguard999;;;[];;;;text;t2_39q2kuo5;False;False;[];;Time to kill some fascists!;False;False;;;;1610363536;;False;{};giv7net;False;t3_kv0myd;False;True;t3_kv0myd;/r/anime/comments/kv0myd/declaration_of_war_attack_on_titan_season_4/giv7net/;1610410745;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;I was referring to the fact that the kids ran away and didn't fulfill their purpose which was to be the vessel of Kanto. I'd prefer humanity take that route instead.;False;False;;;;1610363627;;False;{};giv7s2a;False;t3_kv0llc;False;False;t1_giv7ift;/r/anime/comments/kv0llc/akudama_drive_a_few_words/giv7s2a/;1610410812;2;True;False;anime;t5_2qh22;;0;[]; -[];;;POTATOplays101;;;[];;;;text;t2_5waykguv;False;False;[];;Na I wanted to watch everything crash N’ burn so I was happy with the ending;False;False;;;;1610363677;;False;{};giv7unx;True;t3_kv0llc;False;True;t1_giv7s2a;/r/anime/comments/kv0llc/akudama_drive_a_few_words/giv7unx/;1610410849;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JuicyDragonCat;;;[];;;;text;t2_45tgc23z;False;False;[];;This ain't the leaked ost, this is Samuel Kim's composition *inspired* by the leaked ost. The whole slow orchestral remix of the trailer theme is only present in his version, not the original. The actual leaked ost has a very underwhelming climax. I'm saying this cause people were thinking it was a no brainer to use this ost even tho this is a fan remix;False;False;;;;1610363734;;False;{};giv7xfc;False;t3_kuzq0n;False;True;t3_kuzq0n;/r/anime/comments/kuzq0n/attack_on_titan_s03e05_final_scene_with_leaked_ost/giv7xfc/;1610410895;30;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;Ahh yeah listening for the accents/dialects/anime talk is one of my favorite things about watching anime. It's weird after watching lots of fantasy shows to watch something more realistic and come back to reality hahaha. I'll definitely be trying this out more, and thanks for the suggestion with the JP subs! I've been wondering how to make progress with kanji outside of the stuff they have us so in class.;False;False;;;;1610363745;;False;{};giv7xyf;True;t3_kv06fx;False;False;t1_giv72x5;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giv7xyf/;1610410902;5;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;I would have preferred if the Akudama and Swindler lost, the kids were dragged back into Kanto region and then had themselves uploaded into. But all we got were countless innocent deaths and property damage. I really didn't like the ending or Swindler at all.;False;False;;;;1610363852;;False;{};giv83lr;False;t3_kv0llc;False;True;t1_giv7unx;/r/anime/comments/kv0llc/akudama_drive_a_few_words/giv83lr/;1610410979;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Eren spawn camping Willy is great. Anyone who's not watching anime is going to be very confused on Twitter.;False;False;;;;1610363966;;False;{};giv89za;False;t3_kv0myd;False;True;t3_kv0myd;/r/anime/comments/kv0myd/declaration_of_war_attack_on_titan_season_4/giv89za/;1610411066;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;No it's not;False;False;;;;1610364041;;False;{};giv8dvp;False;t3_kv0nh8;False;False;t3_kv0nh8;/r/anime/comments/kv0nh8/do_you_know_if_oreshura_dubbed/giv8dvp/;1610411127;1;True;False;anime;t5_2qh22;;0;[]; -[];;;I-am-a-free-spirit;;skip7;[];;;dark;text;t2_8t4f5nto;False;False;[];;God fucking damn it.;False;False;;;;1610364114;;False;{};giv8hma;True;t3_kv0nh8;False;True;t1_giv8dvp;/r/anime/comments/kv0nh8/do_you_know_if_oreshura_dubbed/giv8hma/;1610411179;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phoenixwaller;;;[];;;;text;t2_34autsr9;False;False;[];;"H? - -I don't remember an H note.";False;False;;;;1610364162;;False;{};giv8jxj;False;t3_kv0j9f;False;True;t3_kv0j9f;/r/anime/comments/kv0j9f/please_help_me_find_this_anime_ost/giv8jxj/;1610411211;3;True;False;anime;t5_2qh22;;0;[]; -[];;;POTATOplays101;;;[];;;;text;t2_5waykguv;False;False;[];;Yeah but think about how boring the ending you proposed woulda been I enjoyed all the death and destruction guess it’s just your out look on what you wanna see in an anime;False;False;;;;1610364195;;False;{};giv8lig;True;t3_kv0llc;False;True;t1_giv83lr;/r/anime/comments/kv0llc/akudama_drive_a_few_words/giv8lig/;1610411234;1;True;False;anime;t5_2qh22;;0;[]; -[];;;luhhhTj;;;[];;;;text;t2_60dawxid;False;False;[];;Titan scream is what ruined it the sun titan scream sounds better;False;True;;comment score below threshold;;1610364197;;False;{};giv8lo7;False;t3_kuzq0n;False;True;t3_kuzq0n;/r/anime/comments/kuzq0n/attack_on_titan_s03e05_final_scene_with_leaked_ost/giv8lo7/;1610411237;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;abyss-in-machines;;;[];;;;text;t2_3hfezzx9;False;False;[];;Holy, this is fucking cool.;False;False;;;;1610364237;;False;{};giv8nmv;False;t3_kv0r5k;False;True;t3_kv0r5k;/r/anime/comments/kv0r5k/i_didnt_make_this_or_know_who_made_it_all_i_know/giv8nmv/;1610411267;1;True;False;anime;t5_2qh22;;0;[]; -[];;;QuelloConLinkem;;;[];;;;text;t2_2x0b0nsu;False;False;[];;People running in the sky;False;False;;;;1610364280;;False;{};giv8pyq;False;t3_kv0ga7;False;True;t3_kv0ga7;/r/anime/comments/kv0ga7/what_makes_an_anime_opening_specifically_anime/giv8pyq/;1610411298;0;True;False;anime;t5_2qh22;;0;[]; -[];;;red_ketsueki;;;[];;;;text;t2_7h2bh5mw;False;False;[];;Ik, I taught too that's why I posted it .;False;False;;;;1610364290;;False;{};giv8qlq;True;t3_kv0r5k;False;True;t1_giv8nmv;/r/anime/comments/kv0r5k/i_didnt_make_this_or_know_who_made_it_all_i_know/giv8qlq/;1610411306;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610364301;;False;{};giv8r8b;False;t3_kv0r5k;False;True;t3_kv0r5k;/r/anime/comments/kv0r5k/i_didnt_make_this_or_know_who_made_it_all_i_know/giv8r8b/;1610411314;0;True;False;anime;t5_2qh22;;0;[]; -[];;;indiandeadpool1357;;;[];;;;text;t2_6l7yxzna;False;False;[];;Loving this video,want to download,so here I go calling u/savevideo;False;False;;;;1610364375;;False;{};giv8vgs;False;t3_kv0r5k;False;True;t3_kv0r5k;/r/anime/comments/kv0r5k/i_didnt_make_this_or_know_who_made_it_all_i_know/giv8vgs/;1610411369;0;True;False;anime;t5_2qh22;;0;[]; -[];;;notmana;;;[];;;;text;t2_7um525wc;False;False;[];;I tried to figure the notes by virtual piano, my misake. I'll fix that now;False;False;;;;1610364404;;False;{};giv8x49;True;t3_kv0j9f;False;True;t1_giv8jxj;/r/anime/comments/kv0j9f/please_help_me_find_this_anime_ost/giv8x49/;1610411393;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610364525;;False;{};giv93em;False;t3_kv0r5k;False;True;t1_giv8r8b;/r/anime/comments/kv0r5k/i_didnt_make_this_or_know_who_made_it_all_i_know/giv93em/;1610411486;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDampGod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheDampGod;light;text;t2_im4vi;False;False;[];;I'm really intrigued by this even though I'm not sure what it's about. Definitely looks like a coming of age drama, but whether it's a yuri romance too, I'm not sure. Looks gorgeous either way.;False;False;;;;1610364557;;False;{};giv954b;False;t3_kv0m20;False;False;t3_kv0m20;/r/anime/comments/kv0m20/tv_anime_wonder_egg_priority_new_pv/giv954b/;1610411511;25;True;False;anime;t5_2qh22;;0;[]; -[];;;dekalabia;;;[];;;;text;t2_qqkbdrk;False;False;[];;"Yeah, kanji is kinda tough... Especially cause it majority memorization, and retention of them is hard when you never get the chance to use them. - - -Well if I can suggest something is finding a subject other than japanese that you are quite excelled in, like history, mathematics, science, culinary, and even hobbies will work too. Find an anime or manga that heavily uses that subject in it, so you can start linking those terms in japanese with your english. Tackling another language from two or three angles really helps with solidifings the memory by linking them to prior neural connections. - - -If you also don't mind widening your vantage points on japanese media other than anime. Japanese variety shows, especially quiz shows will help you get terms and kanjis down. Especially cause how japanese variety shows tends to include japanese subs, so you are able to find collate speach to written. Tou Dai Ou 東大王 is a great quiz show that pits smart celebrities against Tokyo University students against each other. One of the games they play is called Kanji Reversi 漢字オセロ, where to take a piece they need to answer what a kanji is. Which these kanjis tend to be difficult or they have a phonetic that is hard to guess.";False;False;;;;1610364697;;False;{};giv9c6j;False;t3_kv06fx;False;False;t1_giv7xyf;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giv9c6j/;1610411616;9;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610364791;moderator;False;{};giv9if2;False;t3_kv0xz9;False;True;t3_kv0xz9;/r/anime/comments/kv0xz9/best_fan_service_anime/giv9if2/;1610411695;1;False;False;anime;t5_2qh22;;0;[]; -[];;;panosk1304;;;[];;;;text;t2_19qvhtzg;False;False;[];;Ohh man nice i can understand few words and sentences without subs but thats cause of the decade+ that i have been watching anime.;False;False;;;;1610364809;;False;{};giv9jkk;False;t3_kv06fx;False;False;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giv9jkk/;1610411710;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;Pretty sure the guy who edited it had to make it louder so the original sound effect couldn't be heard over it.;False;False;;;;1610364821;;False;{};giv9kdh;False;t3_kuzq0n;False;True;t1_giv4wvf;/r/anime/comments/kuzq0n/attack_on_titan_s03e05_final_scene_with_leaked_ost/giv9kdh/;1610411719;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Worm38;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Worm38;light;text;t2_21wfoc0w;False;False;[];;"Obviously an anime opening is just something an opening used for an anime, and while there are things with live action footage that are anime opening, they're not particularly characteristic of the openings in general. - -You probably just want to include typical anime opening tropes. For example, you could inspire yourself from [that video](https://www.youtube.com/watch?v=ibPCLMH1NM4).";False;False;;;;1610364861;;False;{};giv9mv9;False;t3_kv0ga7;False;True;t3_kv0ga7;/r/anime/comments/kv0ga7/what_makes_an_anime_opening_specifically_anime/giv9mv9/;1610411754;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mekazuaquaness;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;mekazuaquaness is true waifu;dark;text;t2_3d9sfw2v;False;False;[];;The to be continued hits different especially on this episode;False;False;;;;1610364886;;False;{};giv9od2;False;t3_kv0myd;False;True;t3_kv0myd;/r/anime/comments/kv0myd/declaration_of_war_attack_on_titan_season_4/giv9od2/;1610411771;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Impressive_Bluejay63;;;[];;;;text;t2_9p7wn7a5;False;False;[];;Where can I watch AoT;False;False;;;;1610364950;;False;{};giv9s3l;False;t3_kuzq0n;False;True;t3_kuzq0n;/r/anime/comments/kuzq0n/attack_on_titan_s03e05_final_scene_with_leaked_ost/giv9s3l/;1610411820;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;TheTruthVeritas;;;[];;;;text;t2_1056nw;False;False;[];;Man, this entire episode was so good you could put every single second into clips.;False;False;;;;1610364966;;False;{};giv9szo;False;t3_kv0myd;False;True;t3_kv0myd;/r/anime/comments/kv0myd/declaration_of_war_attack_on_titan_season_4/giv9szo/;1610411832;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610364966;;False;{};giv9szt;False;t3_kv06fx;False;True;t1_giv9c6j;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giv9szt/;1610411832;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TotallyBrandNewName;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Siimoes;light;text;t2_64wlph5b;False;False;[];;"Highschool dxd or highschool of the dead. - -Grand blue is a chill anime, so I think you could like it as well";False;False;;;;1610364968;;False;{};giv9t3q;False;t3_kv0xz9;False;False;t3_kv0xz9;/r/anime/comments/kv0xz9/best_fan_service_anime/giv9t3q/;1610411833;4;True;False;anime;t5_2qh22;;0;[]; -[];;;noogai15;;;[];;;;text;t2_msvuq;False;False;[];;"How in over your head do you need to be that you think you can 'fix' a scene done by a professional director by slapping some ost on top in an editor. Im not saying experienced director = no flaws but 99% of these cases are laughable. Its the equivalent of 'hey guys i fixed this fight by interpolating it to 60fps' - -Edit: https://i.imgur.com/IcpUbjL_d.webp?maxwidth=640&shape=thumb&fidelity=medium";False;False;;;;1610364972;;False;{};giv9td5;False;t3_kuzq0n;False;True;t3_kuzq0n;/r/anime/comments/kuzq0n/attack_on_titan_s03e05_final_scene_with_leaked_ost/giv9td5/;1610411836;17;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your submission has been removed. - -- Videos from other websites should not be rehosted on Reddit (e.g. via video upload). Submit a link to the original source instead, unless you can demonstrate that the author has given you permission to reupload their content. [Please link to the original creator.](https://space.bilibili.com/15377173) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610365005;moderator;False;{};giv9v7d;False;t3_kv0r5k;False;True;t3_kv0r5k;/r/anime/comments/kv0r5k/i_didnt_make_this_or_know_who_made_it_all_i_know/giv9v7d/;1610411860;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Magical_Griffin;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SpikyTurtle;light;text;t2_ii5jh1;False;False;[];;Is it really usually commissioned for the anime?;False;False;;;;1610365017;;False;{};giv9vvb;False;t3_kv0ga7;False;True;t1_giv6seo;/r/anime/comments/kv0ga7/what_makes_an_anime_opening_specifically_anime/giv9vvb/;1610411868;1;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;Wooooah! All such great advice, thank you so much. I study music in college, and hope to teach one day (through I'm not sure in Japan or not..) so maybe I will look into material concerning that!;False;False;;;;1610365053;;False;{};giv9xsm;True;t3_kv06fx;False;False;t1_giv9c6j;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giv9xsm/;1610411894;3;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;If you ever start learning to converse, you'll probably have a better accent than a lot of people since you've been hearing the accent for so long!;False;False;;;;1610365126;;False;{};giva1so;True;t3_kv06fx;False;False;t1_giv9jkk;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giva1so/;1610411947;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;If you never watched Highschool DxD this one is the equivalent to Aot/death note to beginners in the ecchi genre;False;False;;;;1610365135;;False;{};giva2ay;False;t3_kv0xz9;False;False;t3_kv0xz9;/r/anime/comments/kv0xz9/best_fan_service_anime/giva2ay/;1610411954;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;"High School DxD and Trinity Seven both have plot and fan service. - -Kandagawa Jet Girls has a lot of fan service and some irrelevant plot (some water sport ecchi trash).";False;False;;;;1610365159;;False;{};giva3qa;False;t3_kv0xz9;False;True;t3_kv0xz9;/r/anime/comments/kv0xz9/best_fan_service_anime/giva3qa/;1610411971;2;True;False;anime;t5_2qh22;;0;[]; -[];;;phoenixwaller;;;[];;;;text;t2_34autsr9;False;False;[];;"high school of the dead was my first thought too - -Aesthetica of a Rouge Hero is fanservicy, lots of panty stealing. - -Danmachi is a maybe...";False;False;;;;1610365200;;False;{};giva6hx;False;t3_kv0xz9;False;False;t1_giv9t3q;/r/anime/comments/kv0xz9/best_fan_service_anime/giva6hx/;1610412004;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Worm38;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Worm38;light;text;t2_21wfoc0w;False;False;[];;[Somewhat](https://www.animenewsnetwork.com/answerman/2017-05-31/.116809).;False;False;;;;1610365241;;False;{};giva9ne;False;t3_kv0ga7;False;True;t1_giv9vvb;/r/anime/comments/kv0ga7/what_makes_an_anime_opening_specifically_anime/giva9ne/;1610412041;5;True;False;anime;t5_2qh22;;0;[]; -[];;;_Trafalgar_Outlaw_;;;[];;;;text;t2_63dx0213;False;False;[];;"> 10/10 gave me Akame ga kill vibes and also just damn left me speechless I though it was a good ending. - -Based OP. I also enjoyed the show.";False;False;;;;1610365242;;False;{};giva9ox;False;t3_kv0llc;False;True;t3_kv0llc;/r/anime/comments/kv0llc/akudama_drive_a_few_words/giva9ox/;1610412041;3;True;False;anime;t5_2qh22;;0;[]; -[];;;POTATOplays101;;;[];;;;text;t2_5waykguv;False;False;[];;Thanks for the comment;False;False;;;;1610365277;;False;{};givac6e;True;t3_kv0llc;False;True;t1_giva9ox;/r/anime/comments/kv0llc/akudama_drive_a_few_words/givac6e/;1610412071;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDampGod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheDampGod;light;text;t2_im4vi;False;False;[];;"Everyday Life with Monster Girls - -Miss Caretaker of Sunohara-sou";False;False;;;;1610365294;;False;{};givadcm;False;t3_kv0xz9;False;False;t3_kv0xz9;/r/anime/comments/kv0xz9/best_fan_service_anime/givadcm/;1610412084;5;True;False;anime;t5_2qh22;;0;[]; -[];;;otheraccount936;;;[];;;;text;t2_9cgczgpj;False;False;[];;Monster musume is a chefs kiss.;False;False;;;;1610365325;;False;{};givafkm;True;t3_kv0xz9;False;False;t1_givadcm;/r/anime/comments/kv0xz9/best_fan_service_anime/givafkm/;1610412110;5;True;False;anime;t5_2qh22;;0;[]; -[];;;dekalabia;;;[];;;;text;t2_qqkbdrk;False;False;[];;"Yeah, it's something I picked up myself. Cause I found that I learned and studied a certain subject in one language, I had a hard time explaining it in another due to lack on terminology. So I started to study an subject in both language, though it does require a bit more work, I noticed the retention of said subject became stronger due to knowing it in both language. - - -You also maybe able to find videos on music theory in english and japanese on youtube, so you can start making notes on it on the side. While music is an universal language in itself like mathematics, there maybe something you can gain from finding content creators in both language!! - - -Oh lastly, documentaries also are quite useful too. And finding the same one in both languages might also be interesting. Though those tend to be more astronomy and science documentaries when it's a joint between NHK, BBC and PBS.";False;False;;;;1610365410;;False;{};givalhv;False;t3_kv06fx;False;False;t1_giv9xsm;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givalhv/;1610412181;5;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your submission has been removed. - -- This looks like a merch post. Show off your loot or ask questions about merch in the [weekly Merch Mondays megathread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+title%3A%22Merch+Mondays%22&restrict_sr=on&sort=new&t=week) instead. - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610365619;moderator;False;{};givaza7;False;t3_kv0crg;False;True;t3_kv0crg;/r/anime/comments/kv0crg/figurine_finally_arrived_i_really_underestimated/givaza7/;1610412367;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tinsaaaaa;;;[];;;;text;t2_2n3d9pqb;False;False;[];;Found it! [https://www.youtube.com/watch?v=Bx7RogptHgs](https://www.youtube.com/watch?v=Bx7RogptHgs);False;False;;;;1610365646;;False;{};givb128;False;t3_kv0r5k;False;True;t3_kv0r5k;/r/anime/comments/kv0r5k/i_didnt_make_this_or_know_who_made_it_all_i_know/givb128/;1610412392;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;Technically, in the old style of German notation, H is B natural. Hence [Bach writing his family name into some of his pieces](https://en.wikipedia.org/wiki/BACH_motif) as Bb-A-C-B natural. [Shostakovich also abbreviated his name as DSCH](https://en.wikipedia.org/wiki/DSCH_motif) and put that theme in his music as a coded message.;False;False;;;;1610365921;;False;{};givbjkf;False;t3_kv0j9f;False;True;t1_giv8jxj;/r/anime/comments/kv0j9f/please_help_me_find_this_anime_ost/givbjkf/;1610412631;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SenjougaharaHaruhi;;;[];;;;text;t2_40iiyjgc;False;False;[];;Why? It’s a solid slice of life show if you’re into that.;False;False;;;;1610366066;;False;{};givbscq;False;t3_kv06fx;False;False;t1_giv769o;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givbscq/;1610412752;21;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610366076;;1610401047.0;{};givbt0s;False;t3_kv06fx;False;False;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givbt0s/;1610412764;10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610366127;;False;{};givbwni;False;t3_kv06fx;False;True;t1_givbscq;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givbwni/;1610412811;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610366141;moderator;False;{};givbxr3;False;t3_kv18uk;False;True;t3_kv18uk;/r/anime/comments/kv18uk/when_is_sao_alicization_war_of_underworld_part_2/givbxr3/;1610412824;1;False;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;Wasn't it Yuri incest?;False;False;;;;1610366212;;False;{};givc2tv;True;t3_kv06fx;False;False;t1_givbscq;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givc2tv/;1610412886;56;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610366277;;1610401042.0;{};givc773;False;t3_kv06fx;False;False;t1_giv72x5;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givc773/;1610412958;14;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;Thanks for the advice! I get to practice talking and listening a lot in class, so I don't feel the need to rush it with anime. It's not my goal to learn Japanese so I can watch anime without subs after all :D;False;False;;;;1610366335;;False;{};givcatb;True;t3_kv06fx;False;True;t1_givbt0s;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givcatb/;1610413013;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610366622;;1610401036.0;{};givcu91;False;t3_kv06fx;False;True;t1_givcatb;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givcu91/;1610413271;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;It aired last Saturday/Sunday already;False;False;;;;1610366743;;False;{};givd341;False;t3_kv18uk;False;True;t3_kv18uk;/r/anime/comments/kv18uk/when_is_sao_alicization_war_of_underworld_part_2/givd341/;1610413376;1;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;Definitely! We focused a lot more on polite forms this past semester, and watching slice of life shows and such helped keep my conversational and informal chops up. It's also fun to watch things like terrace house every now and then just to hear what other japanese media is like;False;False;;;;1610366750;;False;{};givd3lk;True;t3_kv06fx;False;True;t1_givcu91;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givd3lk/;1610413383;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Syokhan;;;[];;;;text;t2_b5zid;False;False;[];;"I'm really intrigued too, and the fact that we don't really know what it's about makes me even more curious. - -And yeah, it looks so damn pretty!";False;False;;;;1610366959;;False;{};givdhns;False;t3_kv0m20;False;False;t1_giv954b;/r/anime/comments/kv0m20/tv_anime_wonder_egg_priority_new_pv/givdhns/;1610413578;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Yri4lf12;;;[];;;;text;t2_6bfipjd7;False;False;[];;"Congratulations. It opens a new door to you. Now you will know how ""accurate"" the subs actually are. - -Have you tried live action Japanese drama?";False;False;;;;1610367095;;1610367337.0;{};givds5p;False;t3_kv06fx;False;False;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givds5p/;1610413711;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610367121;;False;{};givdu07;False;t3_kv0xz9;False;True;t3_kv0xz9;/r/anime/comments/kv0xz9/best_fan_service_anime/givdu07/;1610413735;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dekalabia;;;[];;;;text;t2_qqkbdrk;False;False;[];;"Well I can see both your point, though that may really come from their writing style and form of novels they belong too. Monogatari being a light novel, so it having witty word play and catch ball really shows the demographic it’s targeting. While Tatami being the similar demographic, it’s considered to be a novel instead of LN. So it’s book like dialogue is very on point. Also Tatami Galaxy’s author is known for a quirky writing style that tends to be cascading lines of redundancy, that somehow your eyes and mind get into this rhythm to be able to read them extremely quickly. - -I have this assumption that LN tends to be more so a mass produced product that has this ease of consumption, so Monogatari’s unique quippy writing fits well within format. Though for a nonnative speaker, there maybe tons of word play that don’t come naturally. Though this also maybe a great source to get such context.";False;False;;;;1610367184;;False;{};givdyp0;False;t3_kv06fx;False;False;t1_givc773;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givdyp0/;1610413798;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Yri4lf12;;;[];;;;text;t2_6bfipjd7;False;False;[];;Would you suggest Wordplay anime like Seitokai Yakuindomo?;False;False;;;;1610367267;;False;{};give4gz;False;t3_kv06fx;False;True;t1_givbt0s;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/give4gz/;1610413874;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PumpkinSpiceBard;;;[];;;;text;t2_8d7qogsw;False;False;[];;i feel like this should have a spoiler tag or smth;False;False;;;;1610367279;;False;{};give59j;False;t3_kv1gef;False;True;t3_kv1gef;/r/anime/comments/kv1gef/how_much_he_changed/give59j/;1610413883;3;True;False;anime;t5_2qh22;;0;[]; -[];;;UROS__98;;;[];;;;text;t2_81rjcxut;False;False;[];;Oh ok, I'll do it;False;False;;;;1610367308;;False;{};give77z;False;t3_kv1gef;False;True;t1_give59j;/r/anime/comments/kv1gef/how_much_he_changed/give77z/;1610413910;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PsychoGeek;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/PsychoGeek;dark;text;t2_lyjee;False;False;[];;"What happens at the end, with MC jumping? What's all the red? - -Show has a strong sense of atmosphere down, and looks gorgeous for sure. Just hope the writing keeps up.";False;False;;;;1610367343;;False;{};give9j5;False;t3_kv0m20;False;False;t3_kv0m20;/r/anime/comments/kv0m20/tv_anime_wonder_egg_priority_new_pv/give9j5/;1610413943;15;True;False;anime;t5_2qh22;;0;[]; -[];;;THE_CUNT_SHREDDERR;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omanko_Hakaisha;light;text;t2_12mq9k;False;False;[];;I do not have hard numbers to state any specific frequency but it definitely not unusual to have OP and ED track songs created for that purpose.;False;False;;;;1610367347;;False;{};give9u4;False;t3_kv0ga7;False;False;t1_giv9vvb;/r/anime/comments/kv0ga7/what_makes_an_anime_opening_specifically_anime/give9u4/;1610413947;5;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;Oh yeah, I know... this is the first time I have watched something without subs but ever since I started learning I've actually found it somewhat harder to watch anime because I listen to the Japanese as much as I read the subs. Whether it is word order being switched because of the nearly mirrored syntax of eng and JP, or just weird English word choices, It's been a ride;False;False;;;;1610367402;;False;{};givedgt;True;t3_kv06fx;False;False;t1_givds5p;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givedgt/;1610413997;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Feli999D;;;[];;;;text;t2_4eezyq8v;False;False;[];;Mappa is behind the animation, the composers and sound directors are the same ones behind the first 3 seasons;False;False;;;;1610367408;;False;{};givedxx;False;t3_kuzq0n;False;True;t1_giv39a0;/r/anime/comments/kuzq0n/attack_on_titan_s03e05_final_scene_with_leaked_ost/givedxx/;1610414005;4;True;False;anime;t5_2qh22;;0;[]; -[];;;THE_CUNT_SHREDDERR;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omanko_Hakaisha;light;text;t2_12mq9k;False;False;[];;I think it would be easier to take a few of your favourite OPs, break it down into the film and animation techniques you like, then use that as your starting point.;False;False;;;;1610367483;;False;{};givejo2;False;t3_kv0ga7;False;True;t3_kv0ga7;/r/anime/comments/kv0ga7/what_makes_an_anime_opening_specifically_anime/givejo2/;1610414077;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yri4lf12;;;[];;;;text;t2_6bfipjd7;False;False;[];;May I know your nationality?;False;False;;;;1610367534;;False;{};givenmt;False;t3_kv06fx;False;False;t1_givedgt;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givenmt/;1610414133;2;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;I'm American. I have dutch family but I was born and raised in America, and only grew up speaking English;False;False;;;;1610367622;;False;{};giveu71;True;t3_kv06fx;False;False;t1_givenmt;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giveu71/;1610414221;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;Have you tried watching anime with Japanese subs? It might be even more useful because if you don't understand what they're saying you might understand what's going on with the kanji.;False;False;;;;1610367623;;False;{};giveu8y;False;t3_kv06fx;False;False;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giveu8y/;1610414221;10;True;False;anime;t5_2qh22;;0;[]; -[];;;UzEE;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/UzEEInc;light;text;t2_45t2z;False;False;[];;I have no issue with the OST choice honestly for that scene. Granted I didn't even know if this was even an issue since I don't follow the leaks scene but 2Volt has capped hype moments in the past and is a great choice for this scene.;False;False;;;;1610367649;;False;{};givew62;False;t3_kuzq0n;False;True;t3_kuzq0n;/r/anime/comments/kuzq0n/attack_on_titan_s03e05_final_scene_with_leaked_ost/givew62/;1610414247;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610367663;;1610401026.0;{};givex69;False;t3_kv06fx;False;True;t1_givd3lk;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givex69/;1610414261;2;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;No, my kanji is waaaay too weak for that. Hiragana and katakana would probably also be too slow. I can listen and comprehend better than anything;False;False;;;;1610367685;;False;{};giveype;True;t3_kv06fx;False;False;t1_giveu8y;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giveype/;1610414282;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;Hey, then it's a bonus you get to learn kanji.;False;False;;;;1610367800;;False;{};givf6ov;False;t3_kv06fx;False;False;t1_giveype;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givf6ov/;1610414394;10;True;False;anime;t5_2qh22;;0;[]; -[];;;leolps;;;[];;;;text;t2_108j2k;False;False;[];;"""As a Japanese native, I also would suggest to put on japanese subs"" , finding jap subs is really hard kitsunekko has some but even then most of the time it is out of sync";False;False;;;;1610367885;;False;{};givfcmo;False;t3_kv06fx;False;False;t1_giv72x5;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givfcmo/;1610414476;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610368083;;1610401020.0;{};givfryh;False;t3_kv06fx;False;False;t1_give4gz;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givfryh/;1610414678;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dekalabia;;;[];;;;text;t2_qqkbdrk;False;False;[];;I noticed that you can manage it on streaming platforms like Netflix, with how global their service is. You can find both japanese subs and voice overs with ease. Though there are certain shows, documentaries and movies that lack japanese voice overs.;False;False;;;;1610368136;;False;{};givfvus;False;t3_kv06fx;False;False;t1_givfcmo;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givfvus/;1610414730;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SenjougaharaHaruhi;;;[];;;;text;t2_40iiyjgc;False;False;[];;Yes it was.;False;False;;;;1610368316;;False;{};givg8ii;False;t3_kv06fx;False;False;t1_givc2tv;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givg8ii/;1610414904;17;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610368319;moderator;False;{};givg8og;False;t3_kv1qwl;False;True;t3_kv1qwl;/r/anime/comments/kv1qwl/please_i_need_help/givg8og/;1610414907;1;False;False;anime;t5_2qh22;;0;[]; -[];;;WalkerH163;;;[];;;;text;t2_6j7zluai;False;False;[];;I never realy had a problem with the dubs bc I didn’t watch the sub and dub for the same show, so if the dub was bad I just thought the entire show was uninspired. Not proud of my early days😐;False;False;;;;1610368345;;False;{};givgamj;False;t3_kv06fx;False;True;t1_giv68ra;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givgamj/;1610414934;2;True;False;anime;t5_2qh22;;0;[]; -[];;;THE_CUNT_SHREDDERR;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omanko_Hakaisha;light;text;t2_12mq9k;False;False;[];;There is no easy solution but the best one to try is called growing up.;False;False;;;;1610368423;;False;{};givgh2j;False;t3_kv1qwl;False;True;t3_kv1qwl;/r/anime/comments/kv1qwl/please_i_need_help/givgh2j/;1610415016;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610368475;moderator;False;{};givgktt;False;t3_kv1s7c;False;True;t3_kv1s7c;/r/anime/comments/kv1s7c/classroom_of_the_elite_what_chapter_after_season1/givgktt/;1610415067;1;False;False;anime;t5_2qh22;;0;[]; -[];;;lolhopen;;;[];;;;text;t2_3sev4ds4;False;False;[];;Anime omitted so much details that will be important later, that it is better just to read from the beginning, as light-novel readers say;False;False;;;;1610368559;;False;{};givgq2h;False;t3_kv1s7c;False;False;t3_kv1s7c;/r/anime/comments/kv1s7c/classroom_of_the_elite_what_chapter_after_season1/givgq2h/;1610415142;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MOEverything_2708;;;[];;;;text;t2_36khywqm;False;False;[];;I liked it;False;False;;;;1610368565;;False;{};givgqff;False;t3_kv1sfb;False;True;t3_kv1sfb;/r/anime/comments/kv1sfb/op_2_is_bad/givgqff/;1610415147;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610368619;;1610401015.0;{};givgtvx;False;t3_kv06fx;False;True;t1_givdyp0;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givgtvx/;1610415195;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Plebby37;;;[];;;;text;t2_5p65gy2d;False;False;[];;I thought it was ok, but it was a huge step down from COLORS;False;False;;;;1610368633;;False;{};givguou;False;t3_kv1sfb;False;True;t1_givgqff;/r/anime/comments/kv1sfb/op_2_is_bad/givguou/;1610415208;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DonSab;;;[];;;;text;t2_4m7feg68;False;False;[];;Thanks;False;False;;;;1610368646;;False;{};givgvja;True;t3_kv1s7c;False;True;t1_givgq2h;/r/anime/comments/kv1s7c/classroom_of_the_elite_what_chapter_after_season1/givgvja/;1610415220;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FuntasticoReddit;;;[];;;;text;t2_44rgdkne;False;False;[];;Maybe try to socialize (in real life);False;False;;;;1610368717;;False;{};givgzsh;False;t3_kv1qwl;False;False;t3_kv1qwl;/r/anime/comments/kv1qwl/please_i_need_help/givgzsh/;1610415281;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JORGA;;;[];;;;text;t2_9ltaz;False;False;[];;"yeah this is kinda trash ngl. - -Just slapping on any OST at a far too loud volume isn't good";False;False;;;;1610368773;;False;{};givh39s;False;t3_kuzq0n;False;True;t3_kuzq0n;/r/anime/comments/kuzq0n/attack_on_titan_s03e05_final_scene_with_leaked_ost/givh39s/;1610415332;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Beckymetal;;;[];;;;text;t2_10wmi0;False;False;[];;Yeah but it was actually quite thoughtful on the topic and wasn't titillating. I think it's great.;False;False;;;;1610368989;;False;{};givhhsq;False;t3_kv06fx;False;False;t1_givc2tv;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givhhsq/;1610415537;5;True;False;anime;t5_2qh22;;0;[]; -[];;;dekalabia;;;[];;;;text;t2_qqkbdrk;False;False;[];;"Heh, his other works like Eccentric Family and Penguin Highway are exactly that too. Though Eccentric Family has a bit more fun word play. While Penguin Highway oozes with how the MC tried to be mature and collected but being his youthful age, you can see through his facade of trying to be mature. - - -On the topic of machine gun dialogue, Kyouran Kazoku, is another notable series that may test ones hearing comprehension. Though that series may cause bad habits than be a good learning experience.";False;False;;;;1610369080;;False;{};givhnk3;False;t3_kv06fx;False;True;t1_givgtvx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givhnk3/;1610415621;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lyracarina;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Lyracarina;light;text;t2_49pmfkt;False;False;[];;Visually it looks really good. This is going to be some type of coming of age story, I guess? Really excited for the first episode.;False;False;;;;1610369127;;False;{};givhqg7;False;t3_kv0m20;False;False;t3_kv0m20;/r/anime/comments/kv0m20/tv_anime_wonder_egg_priority_new_pv/givhqg7/;1610415663;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610369132;moderator;False;{};givhqqo;False;t3_kv1xlf;False;True;t3_kv1xlf;/r/anime/comments/kv1xlf/what_anime_is_this_sorry_for_bad_quality/givhqqo/;1610415667;1;False;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your submission has been removed. - -- Shitposts, memes, image macros, reaction images, ""fixed"" posts, and rage comics are not allowed. - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610369162;moderator;False;{};givhshk;False;t3_kv1sfb;False;True;t3_kv1sfb;/r/anime/comments/kv1sfb/op_2_is_bad/givhshk/;1610415693;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Byakko168;;;[];;;;text;t2_5b903zap;False;False;[];;Oreshura;False;False;;;;1610369213;;False;{};givhvj8;False;t3_kv1xlf;False;True;t3_kv1xlf;/r/anime/comments/kv1xlf/what_anime_is_this_sorry_for_bad_quality/givhvj8/;1610415749;1;True;False;anime;t5_2qh22;;0;[]; -[];;;johnmarty_desu;;;[];;;;text;t2_1oelevg7;False;False;[];;Bump, i need something to watch at work today lmk;False;False;;;;1610369241;;False;{};givhx7a;False;t3_kv1xlf;False;True;t3_kv1xlf;/r/anime/comments/kv1xlf/what_anime_is_this_sorry_for_bad_quality/givhx7a/;1610415774;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;"All of yours except the following: - -* Black Clover: Asta's VA was too annoying, dropped at episode 10 -* Neverland: Never started S1 -* SK8: Not interested -* Kumo: Dropped as MC is unable to keep her trap shut - -In addition, I'd add Redo of Healer to the full list.";False;False;;;;1610369259;;1610370748.0;{};givhyci;False;t3_kv1wxq;False;True;t3_kv1wxq;/r/anime/comments/kv1wxq/my_top_15_anticipated_anime_of_winter_2021/givhyci/;1610415790;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610369362;;False;{};givi4y3;False;t3_kv1qwl;False;False;t3_kv1qwl;/r/anime/comments/kv1qwl/please_i_need_help/givi4y3/;1610415884;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi lightyearsawayyy, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610369407;moderator;False;{};givi7uw;False;t3_kv201n;False;True;t3_kv201n;/r/anime/comments/kv201n/psychological_or_mystery_anime_recommendations/givi7uw/;1610415925;1;False;False;anime;t5_2qh22;;0;[]; -[];;;etardollan;;;[];;;;text;t2_1ey8hkys;False;False;[];;MONSTER is a great mystery horror anime;False;False;;;;1610369481;;False;{};givicio;False;t3_kv201n;False;True;t3_kv201n;/r/anime/comments/kv201n/psychological_or_mystery_anime_recommendations/givicio/;1610415993;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;"Madoka Magica - -Serial Experiments Lain - -Psycho-Pass";False;False;;;;1610369482;;False;{};givickn;False;t3_kv201n;False;True;t3_kv201n;/r/anime/comments/kv201n/psychological_or_mystery_anime_recommendations/givickn/;1610415994;2;True;False;anime;t5_2qh22;;0;[]; -[];;;paowie166;;;[];;;;text;t2_6pud6t65;False;False;[];;Mirai Nikki and Re:Zero!;False;False;;;;1610369590;;False;{};givij1u;False;t3_kv201n;False;True;t3_kv201n;/r/anime/comments/kv201n/psychological_or_mystery_anime_recommendations/givij1u/;1610416089;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;"15 shows is an awful lot to watch in one season. - -And why are you excited for Redo of a Healer?";False;False;;;;1610369610;;False;{};givik85;False;t3_kv1wxq;False;True;t3_kv1wxq;/r/anime/comments/kv1wxq/my_top_15_anticipated_anime_of_winter_2021/givik85/;1610416106;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;OtherHalfling;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/otherhalfling;light;text;t2_di2cu;False;False;[];;Yeah, that makes sense, but damn, it's like a battle between Willy Tybur's voice and the music. It makes it uncomfortable to listen to, to the point where I can't even tell if I'd like it otherwise.;False;False;;;;1610369618;;False;{};givikon;False;t3_kuzq0n;False;True;t1_giv9kdh;/r/anime/comments/kuzq0n/attack_on_titan_s03e05_final_scene_with_leaked_ost/givikon/;1610416114;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;Volume 1;False;False;;;;1610369620;;False;{};givikt5;False;t3_kv1s7c;False;False;t3_kv1s7c;/r/anime/comments/kv1s7c/classroom_of_the_elite_what_chapter_after_season1/givikt5/;1610416116;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DonSab;;;[];;;;text;t2_4m7feg68;False;False;[];;thanks;False;False;;;;1610369752;;False;{};givisxk;True;t3_kv1s7c;False;True;t1_givikt5;/r/anime/comments/kv1s7c/classroom_of_the_elite_what_chapter_after_season1/givisxk/;1610416236;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Voze2020;;;[];;;;text;t2_44mj2yro;False;False;[];;Do you know where I can watch it;False;False;;;;1610369768;;False;{};giviu25;True;t3_kv18uk;False;True;t1_givd341;/r/anime/comments/kv18uk/when_is_sao_alicization_war_of_underworld_part_2/giviu25/;1610416253;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hiimdiaoxeuw;;;[];;;;text;t2_izvhr;False;False;[];;"As it is I have time to keep up with most of them especially since this season has so many good ones! - -Redo of a Healer will be a complete shitshow and after the goblin slayer incident this will be way worse. I can't wait";False;False;;;;1610369798;;False;{};givivtk;True;t3_kv1wxq;False;True;t1_givik85;/r/anime/comments/kv1wxq/my_top_15_anticipated_anime_of_winter_2021/givivtk/;1610416286;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sherlock_Homiez;;;[];;;;text;t2_1coef4xm;False;False;[];;Spoiled ass AoT manga readers. The scene was amazing to anime only, just because it didn’t fit their imagination doesn’t mean that it didn’t fit with the masses. They’re acting like it’s Meliodis vs Esconor levels of bad with the ost when it’s not even a third of that.;False;False;;;;1610369862;;False;{};givizyo;False;t3_kuzq0n;False;True;t1_giv9td5;/r/anime/comments/kuzq0n/attack_on_titan_s03e05_final_scene_with_leaked_ost/givizyo/;1610416348;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;For my list I'd take out black clover, log horizon and sk8, and I'd add both Cell at works, Non Non Biyori, Redo of a Healer, Higurashi, boonies, urusekai picnic and tomozaki kun;False;False;;;;1610369927;;False;{};givj41n;False;t3_kv1wxq;False;True;t3_kv1wxq;/r/anime/comments/kv1wxq/my_top_15_anticipated_anime_of_winter_2021/givj41n/;1610416410;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"It has a Korean dub apparently, maybe the video meant the Korean or original Japanese dub. - -""Dubbed"" can also mean ""titled as""";False;False;;;;1610369968;;False;{};givj6jk;False;t3_kv0nh8;False;True;t3_kv0nh8;/r/anime/comments/kv0nh8/do_you_know_if_oreshura_dubbed/givj6jk/;1610416450;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AspiringRacecar;;;[];;;;text;t2_hdqkp;False;False;[];;"The announcement that it will be streaming on Funimation was accompanied by this description: - -> From Aniplex and CloverWorks (The Promised Neverland, Rascal Does Not Dream of Bunny Girl Senpai), the series follows the aforementioned Ai after she scored a “Wonder Egg” from a gachapon machine at a deserted arcade. But when Ai falls asleep and a girl (!) emerges from her Wonder Egg, the worlds of dreams and reality begin to collide. And it’s all connected. - -I think the glasses girl is the one who comes out of the egg. - -BTW, I paused this PV around 1:40 and the MC was getting on top of some red, mechanical thing. There were also axes in the air. EDIT: Actually, I think her pen transforms into a guitar or a bass... Still not sure about the axes, lol.";False;False;;;;1610370026;;False;{};givjaa1;False;t3_kv0m20;False;False;t1_giv954b;/r/anime/comments/kv0m20/tv_anime_wonder_egg_priority_new_pv/givjaa1/;1610416516;15;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;"> I have time to keep up with most of them - -Yeah I mean you could watch 15 shows this season, but there's like 60 years of great stuff prior to this season that you could watch in place of the more mediocre shows this season. - ->after the goblin slayer incident this will be way worse - -And that's kind of a shitty attitude to have....";False;False;;;;1610370032;;False;{};givjanb;False;t3_kv1wxq;False;True;t1_givivtk;/r/anime/comments/kv1wxq/my_top_15_anticipated_anime_of_winter_2021/givjanb/;1610416527;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;hiimdiaoxeuw;;;[];;;;text;t2_izvhr;False;False;[];;I definitely will watch cells at work black - sounds very interesting. Higurashi i still have to watch (as I haven't watched the original);False;False;;;;1610370034;;False;{};givjaqb;True;t3_kv1wxq;False;True;t1_givj41n;/r/anime/comments/kv1wxq/my_top_15_anticipated_anime_of_winter_2021/givjaqb/;1610416529;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThomasTheTrashEngine;;;[];;;;text;t2_82jlxp8;False;False;[];;Honestly I kinda doubt that a second or third season will happen because the anime was kinda poorly recieved (that and the fact that Sony/ Funimation bought Crunchyroll and I'm not sure if they intend to continue the Crunchyroll originals anyway). The anime also skipped a few story important arcs so making a second or third or season may be difficult in that regard too. I'd recommend reading the webtoon first but since you said you're not interested then it should be fine to watch Pamyeol-ui Sijak but you should wait for a few months at least to see if a season 2 is announced.;False;False;;;;1610370046;;False;{};givjbht;False;t3_kv20um;False;True;t3_kv20um;/r/anime/comments/kv20um/should_i_watch_noblesse_pamyeolui_sijak_after/givjbht/;1610416550;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;The promised neverland;False;False;;;;1610370053;;False;{};givjbxe;False;t3_kv201n;False;True;t3_kv201n;/r/anime/comments/kv201n/psychological_or_mystery_anime_recommendations/givjbxe/;1610416555;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"DxD, HotD, Monster Musume, To Love Ru - -https://www.reddit.com/r/anime/wiki/recommendations#wiki_i_can.2019t_believe_it.2019s_not_hentai.21";False;False;;;;1610370080;;False;{};givjdji;False;t3_kv0xz9;False;True;t3_kv0xz9;/r/anime/comments/kv0xz9/best_fan_service_anime/givjdji/;1610416582;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;You should read from the start but incase you don't have time the anime ends at volume 3 so you should read from volume 4;False;False;;;;1610370157;;False;{};givji7q;False;t3_kv1s7c;False;True;t3_kv1s7c;/r/anime/comments/kv1s7c/classroom_of_the_elite_what_chapter_after_season1/givji7q/;1610416652;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DonSab;;;[];;;;text;t2_4m7feg68;False;False;[];;thanks;False;False;;;;1610370212;;False;{};givjlst;True;t3_kv1s7c;False;True;t1_givji7q;/r/anime/comments/kv1s7c/classroom_of_the_elite_what_chapter_after_season1/givjlst/;1610416704;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Better simping fictional charcters then twitch thots;False;False;;;;1610370222;;False;{};givjmha;False;t3_kv1qwl;False;True;t3_kv1qwl;/r/anime/comments/kv1qwl/please_i_need_help/givjmha/;1610416714;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;hiimdiaoxeuw;;;[];;;;text;t2_izvhr;False;False;[];;" \> Yeah I mean you could watch 15 shows this season, but there's like 60 years of great stuff prior to this season that you could watch in place of the more mediocre shows this season. - -You are right but i would argue that there is atleast 10 shows this season that you should watch if you liked the previous seasons aswell as some new ones (Horimiya & Jobless Reincarnation for example) - - \> And that's kind of a shitty attitude to have.... - -I like to watch controversy what can i say :/";False;False;;;;1610370303;;1610370520.0;{};givjrr3;True;t3_kv1wxq;False;True;t1_givjanb;/r/anime/comments/kv1wxq/my_top_15_anticipated_anime_of_winter_2021/givjrr3/;1610416801;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610370387;moderator;False;{};givjx1q;False;t3_kv2a0e;False;True;t3_kv2a0e;/r/anime/comments/kv2a0e/trying_to_remember_an_anime_from_20162018/givjx1q/;1610416892;1;False;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;"> You are right but i would argue that there is atleast 10 shows this season that you should watch - -Oh yeah, there are a ton of shows to check out this season for sure. I might get up towards 10-15 myself.";False;False;;;;1610370424;;False;{};givjzcv;False;t3_kv1wxq;False;False;t1_givjrr3;/r/anime/comments/kv1wxq/my_top_15_anticipated_anime_of_winter_2021/givjzcv/;1610416942;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Natural-Ad-4618, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610370441;moderator;False;{};givk0fb;False;t3_kv2ago;False;True;t3_kv2ago;/r/anime/comments/kv2ago/recommend_me_some_thriller_anime_like_steinsgate/givk0fb/;1610416959;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Anime movies tend to release online around 6 months after there theater premier in japan so yeah unless you live in Japan you can't really watch it;False;False;;;;1610370496;;False;{};givk3v3;False;t3_kv0eqq;False;True;t3_kv0eqq;/r/anime/comments/kv0eqq/looking_for_josee_the_tiger_and_the_fish_2020/givk3v3/;1610417020;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;"Evangelion - -Rurouni Kenshin Trust and Betrayal - -and Monster is perfect for what you're asking for but it is explicitly about horror based crime lol.";False;False;;;;1610370635;;False;{};givkcll;False;t3_kv2ago;False;True;t3_kv2ago;/r/anime/comments/kv2ago/recommend_me_some_thriller_anime_like_steinsgate/givkcll/;1610417162;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gopivot;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/gopivot;light;text;t2_7tclu;False;False;[];;crazy how this is a TV series, the whole thing looks like a movie! I really like short of 22/7 which has the same director, so I'm really excited what he can bring with a full series like this;False;False;;;;1610370686;;False;{};givkg1s;False;t3_kv0m20;False;False;t3_kv0m20;/r/anime/comments/kv0m20/tv_anime_wonder_egg_priority_new_pv/givkg1s/;1610417216;18;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;"> Asta's VA was too annoying, dropped at episode 10 - -Man, I don't actually mind Asta but -I've been stuck 30 episodes in for like a year now. It's a very difficult show to get into.";False;False;;;;1610370701;;False;{};givkh39;False;t3_kv1wxq;False;True;t1_givhyci;/r/anime/comments/kv1wxq/my_top_15_anticipated_anime_of_winter_2021/givkh39/;1610417230;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;I think it's just my inability to perceive the kids as anything more than tools created to fullfil a purpose and I'm a bit pissed off that the noble purpose was not fulfilled.;False;False;;;;1610370716;;False;{};givki1z;False;t3_kv0llc;False;True;t1_giv8lig;/r/anime/comments/kv0llc/akudama_drive_a_few_words/givki1z/;1610417244;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ben100180;;;[];;;;text;t2_4ctao7au;False;False;[];;"Nande koko ni sensei ga? - -It’s plotless, just very wholesome uncensored titties and chill, and comedy";False;False;;;;1610370724;;False;{};givkimy;False;t3_kv0xz9;False;False;t3_kv0xz9;/r/anime/comments/kv0xz9/best_fan_service_anime/givkimy/;1610417254;9;True;False;anime;t5_2qh22;;0;[]; -[];;;ben100180;;;[];;;;text;t2_4ctao7au;False;False;[];;"You’ll get a shit ton more recommendations on r/animesuggest. - -In a faster period of time too";False;False;;;;1610370769;;False;{};givklpa;False;t3_kv2ago;False;True;t3_kv2ago;/r/anime/comments/kv2ago/recommend_me_some_thriller_anime_like_steinsgate/givklpa/;1610417301;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Natural-Ad-4618;;;[];;;;text;t2_6zi9mjhi;False;False;[];;Thanks a lot. Will check them out. It might be harder than I thought to find thriller animes with my preferred genres because most thrillers are horror and crime based lol;False;False;;;;1610370860;;False;{};givkrk2;True;t3_kv2ago;False;True;t1_givkcll;/r/anime/comments/kv2ago/recommend_me_some_thriller_anime_like_steinsgate/givkrk2/;1610417388;2;True;False;anime;t5_2qh22;;0;[]; -[];;;caelum007;;;[];;;;text;t2_o48xg;False;False;[];;"for the years of watching anime subbed help me in getting into watching Japanese vtubers livestreaming. I dont understand all the words but I can understand it in away like imaginary english subs are speaking ""visually"" in english in my head.";False;False;;;;1610370877;;False;{};givkspr;False;t3_kv06fx;False;True;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givkspr/;1610417405;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Natural-Ad-4618;;;[];;;;text;t2_6zi9mjhi;False;False;[];;Thanks, I'm new to reddit. I don't really know how it works yet, so I just searched anime and asked for recommendations lmao;False;False;;;;1610370956;;False;{};givkxt4;True;t3_kv2ago;False;True;t1_givklpa;/r/anime/comments/kv2ago/recommend_me_some_thriller_anime_like_steinsgate/givkxt4/;1610417484;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610371030;;False;{};givl2ih;False;t3_kv2a0e;False;True;t3_kv2a0e;/r/anime/comments/kv2a0e/trying_to_remember_an_anime_from_20162018/givl2ih/;1610417559;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Formeralucardbradley;;;[];;;;text;t2_8roc74ql;False;False;[];;Who are currently employed by mappa;False;False;;;;1610371122;;False;{};givl8zv;False;t3_kuzq0n;False;True;t1_givedxx;/r/anime/comments/kuzq0n/attack_on_titan_s03e05_final_scene_with_leaked_ost/givl8zv/;1610417660;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;ArcanistCheshire;;;[];;;;text;t2_5hg7o1zm;False;False;[];;Tried and couldn't find it, scrolled 2015-2018, it couldn't have been later than 2018 tho.;False;False;;;;1610371142;;False;{};givlabi;True;t3_kv2a0e;False;True;t1_givl2ih;/r/anime/comments/kv2a0e/trying_to_remember_an_anime_from_20162018/givlabi/;1610417680;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SnowLocke;;;[];;;;text;t2_wx2pc;False;False;[];;If you're interested, why not give it a try and form your own opinion?;False;False;;;;1610371180;;False;{};givld1s;False;t3_kv2ghl;False;True;t3_kv2ghl;/r/anime/comments/kv2ghl/is_the_a_certain_magical_index_series_worth/givld1s/;1610417719;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Plasma-Aki;;;[];;;;text;t2_23u0n20r;False;False;[];;Exactly. Thanks for the video, I'll take a look. If it wouldn't be much trouble, could you name a few generic anime op tropes that come to mind? Just so I'd have enough to work with. Thanks!;False;False;;;;1610371198;;False;{};givlecp;True;t3_kv0ga7;False;True;t1_giv9mv9;/r/anime/comments/kv0ga7/what_makes_an_anime_opening_specifically_anime/givlecp/;1610417736;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Plasma-Aki;;;[];;;;text;t2_23u0n20r;False;False;[];;What do you mean exactly :D?;False;False;;;;1610371218;;False;{};givlfo7;True;t3_kv0ga7;False;True;t1_giv8pyq;/r/anime/comments/kv0ga7/what_makes_an_anime_opening_specifically_anime/givlfo7/;1610417753;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blackmagemasta;;MAL;[];;https://myanimelist.net/profile/blackmagemasta;dark;text;t2_aceb1;False;False;[];;https://www.reddit.com/r/anime/comments/i1vl8l/a_rant_watch_the_damn_anime/;False;False;;;;1610371233;;False;{};givlgp9;False;t3_kv2ghl;False;True;t3_kv2ghl;/r/anime/comments/kv2ghl/is_the_a_certain_magical_index_series_worth/givlgp9/;1610417768;5;True;False;anime;t5_2qh22;;0;[]; -[];;;sofastsomaybe;;;[];;;;text;t2_pn79k;False;False;[];;Syncing problems are *very* easy to fix with a free subtitle editor like Aegisub. Kitsunekko has a lot of subs, and I find that more often than not they have subs for the shows I want to watch.;False;False;;;;1610371238;;False;{};givlgzd;False;t3_kv06fx;False;True;t1_givfcmo;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givlgzd/;1610417773;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Plasma-Aki;;;[];;;;text;t2_23u0n20r;False;False;[];;Sure thing! Thanks for your input.;False;False;;;;1610371244;;False;{};givlhdq;True;t3_kv0ga7;False;True;t1_givejo2;/r/anime/comments/kv0ga7/what_makes_an_anime_opening_specifically_anime/givlhdq/;1610417778;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TacoBellIsChipotle;;;[];;;;text;t2_7l9egrg6;False;False;[];;grow up?;False;False;;;;1610371321;;False;{};givlmjw;False;t3_kv1qwl;False;True;t3_kv1qwl;/r/anime/comments/kv1qwl/please_i_need_help/givlmjw/;1610417854;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Handsome-_-awkward;;;[];;;;text;t2_52f0dxfa;False;False;[];;Re zero is the only anime I've seen that makes me feel that way;False;False;;;;1610371358;;False;{};givlozv;False;t3_kv2ago;False;True;t3_kv2ago;/r/anime/comments/kv2ago/recommend_me_some_thriller_anime_like_steinsgate/givlozv/;1610417889;0;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;Yeah, you could try something like Kanata no Astra or Rokka no Yuusha too, shows where one character is a traitor and everyone is trying to figure it out.;False;False;;;;1610371416;;False;{};givlst6;False;t3_kv2ago;False;True;t1_givkrk2;/r/anime/comments/kv2ago/recommend_me_some_thriller_anime_like_steinsgate/givlst6/;1610417951;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;"I was so sure it would be an upcoming movie. It reminds me so much of KyoAni’s Hibike artstyle. - -Cloverworks is gradually becoming one of my favourite studios. First FGO Babylonia and now Horimiya, with both having amazing animation.";False;False;;;;1610371439;;False;{};givludm;False;t3_kv0m20;False;False;t1_givkg1s;/r/anime/comments/kv0m20/tv_anime_wonder_egg_priority_new_pv/givludm/;1610417975;15;True;False;anime;t5_2qh22;;0;[]; -[];;;ve_rushing;;;[];;;;text;t2_5neck4as;False;False;[];;"I just have being reminded about Yuusha ni Narenakatta Ore wa Shibushibu Shuushoku wo Ketsui Shimashita. - -It has nice plot (yeah literally) and interesting worlbuilding but also some a lot of *curves*.";False;False;;;;1610371537;;False;{};givm0ze;False;t3_kv0xz9;False;True;t3_kv0xz9;/r/anime/comments/kv0xz9/best_fan_service_anime/givm0ze/;1610418072;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ScriptLoL;;;[];;;;text;t2_adaxv;False;False;[];;"To Love Ru gets my vote, especially the second season onward (Darkness). - -I went into it wanting and expecting trash and got exactly that PLUS a somewhat decent story. Solid like, 8/10.";False;False;;;;1610371778;;False;{};givmho0;False;t3_kv0xz9;False;False;t3_kv0xz9;/r/anime/comments/kv0xz9/best_fan_service_anime/givmho0/;1610418323;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Natural-Ad-4618;;;[];;;;text;t2_6zi9mjhi;False;False;[];;Thanks! Nearly forgot about that one. I watched the first season. But I haven't checked out the 2nd season yet.;False;False;;;;1610371875;;False;{};givmo3i;True;t3_kv2ago;False;True;t1_givlozv;/r/anime/comments/kv2ago/recommend_me_some_thriller_anime_like_steinsgate/givmo3i/;1610418420;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;You can't really judge personal taste, everyone has different shows they're looking forward and different types of shows they enjoy;False;False;;;;1610371955;;False;{};givmtaj;False;t3_kv1wxq;False;True;t1_givik85;/r/anime/comments/kv1wxq/my_top_15_anticipated_anime_of_winter_2021/givmtaj/;1610418506;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahou_Shoujo_Ramune;;;[];;;;text;t2_4vs4l2r6;False;False;[];;"Madoka Magica - -Girls' Last Tour";False;False;;;;1610371976;;False;{};givmuwo;False;t3_kv2ago;False;True;t3_kv2ago;/r/anime/comments/kv2ago/recommend_me_some_thriller_anime_like_steinsgate/givmuwo/;1610418527;2;True;False;anime;t5_2qh22;;0;[]; -[];;;parkay11;;;[];;;;text;t2_29u2m8zk;False;False;[];;Serial Experiments Lain is supposed to leave you feeling like you have schizophrenia.;False;False;;;;1610372001;;False;{};givmwq2;False;t3_kv2ago;False;True;t3_kv2ago;/r/anime/comments/kv2ago/recommend_me_some_thriller_anime_like_steinsgate/givmwq2/;1610418553;1;True;False;anime;t5_2qh22;;0;[]; -[];;;randyripoff;;;[];;;;text;t2_pg4m04;False;False;[];;"For pure fanservice, Queen's Blade is top tier. - -Eiken is also fun and since it's only about an hour you don't need to make much of a time commitment.";False;False;;;;1610372002;;False;{};givmwsf;False;t3_kv0xz9;False;True;t3_kv0xz9;/r/anime/comments/kv0xz9/best_fan_service_anime/givmwsf/;1610418554;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Leeemon;;;[];;;;text;t2_7en9g;False;False;[];;"Nice job!!! Congratulations! - -I hope to get there too in 2021!";False;False;;;;1610372052;;False;{};givn070;False;t3_kv06fx;False;True;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givn070/;1610418601;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MotherIndependence0;;;[];;;;text;t2_vluk7wg;False;False;[];;I like the world. Railgun is better than the real show though. If you’re gonna only do one do Railgun.;False;False;;;;1610372064;;False;{};givn11b;False;t3_kv2ghl;False;True;t3_kv2ghl;/r/anime/comments/kv2ghl/is_the_a_certain_magical_index_series_worth/givn11b/;1610418613;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi NJBuoy, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610372151;moderator;False;{};givn71b;False;t3_kv2r7e;False;True;t3_kv2r7e;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givn71b/;1610418698;0;False;False;anime;t5_2qh22;;0;[]; -[];;;gopivot;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/gopivot;light;text;t2_7tclu;False;False;[];;Yamada influence here is also very clear and I love that, it's amazing they are allowed to take on the projects since this one is original anime at that;False;False;;;;1610372221;;False;{};givnbuc;False;t3_kv0m20;False;False;t1_givludm;/r/anime/comments/kv0m20/tv_anime_wonder_egg_priority_new_pv/givnbuc/;1610418768;6;True;False;anime;t5_2qh22;;0;[]; -[];;;botagas;;;[];;;;text;t2_40zn44q;False;False;[];;"I am also studying music, but in university. I took Japanese classes for the 3rd semester. Now I am looking for a way to retain my knowledge and increase it because I doubt I will be able to broaden my horizons in the uni any further (higher levels rarely ever get enough students to form classes). - -Feel free to grace upon me any materials, shows, anime, manga, games that could help in this regard.";False;False;;;;1610372249;;False;{};givndt2;False;t3_kv06fx;False;False;t1_giv9xsm;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givndt2/;1610418802;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Aadi-K;;;[];;;;text;t2_4klu6o3e;False;False;[];;"I use crunchyroll too, of course there are piracy ones, but that’s illegal so you know? Don’t do it. - -I would like to hear others’ streaming services as well";False;False;;;;1610372382;;False;{};givnmpm;False;t3_kv2ral;False;True;t3_kv2ral;/r/anime/comments/kv2ral/question_to_you_all/givnmpm/;1610418932;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610372394;;False;{};givnnhd;False;t3_kv2ral;False;True;t3_kv2ral;/r/anime/comments/kv2ral/question_to_you_all/givnnhd/;1610418944;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi panthaX666, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610372394;moderator;False;{};givnnj6;False;t3_kv2ral;False;True;t1_givnnhd;/r/anime/comments/kv2ral/question_to_you_all/givnnj6/;1610418945;0;False;False;anime;t5_2qh22;;0;[]; -[];;;Aadi-K;;;[];;;;text;t2_4klu6o3e;False;False;[];;If nobody has said Berserk at least 5 times, I’m quitting this community;False;False;;;;1610372412;;False;{};givnovc;False;t3_kv2r7e;False;False;t3_kv2r7e;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givnovc/;1610418964;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610372441;;False;{};givnqzs;False;t3_kv2ral;False;True;t3_kv2ral;/r/anime/comments/kv2ral/question_to_you_all/givnqzs/;1610418996;0;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;"I mean sure, but I highly doubt all 15 of these shows are anyone's personal top 15 while there are literally several thousand TV shows and films that you or me have never even heard of that you'd likely enjoy more. - -I think you can be fairly balanced about it. I'm taking a risk on shows like Otherside Picnic and 2.43 that might not end up amazing, but I also get around to watching plenty of older classics and making sure I get to see the best of the best as well as what's new and hot to stay up to date. - -All I'm saying is to not fall into the hole of watching 23 shows every season but never watching stuff that's universally praised.";False;False;;;;1610372474;;False;{};givntep;False;t3_kv1wxq;False;True;t1_givmtaj;/r/anime/comments/kv1wxq/my_top_15_anticipated_anime_of_winter_2021/givntep/;1610419028;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610372491;moderator;False;{};givnuq2;False;t3_kv2uu8;False;True;t3_kv2uu8;/r/anime/comments/kv2uu8/where_can_i_watch_or_buy_squid_girl_dub_aus/givnuq2/;1610419048;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Melonmans;;;[];;;;text;t2_9kom32s2;False;False;[];;Kings game;False;False;;;;1610372541;;False;{};givnygu;False;t3_kv2ago;False;True;t3_kv2ago;/r/anime/comments/kv2ago/recommend_me_some_thriller_anime_like_steinsgate/givnygu/;1610419102;1;True;False;anime;t5_2qh22;;0;[]; -[];;;leolps;;;[];;;;text;t2_108j2k;False;False;[];;sad thing is that the subs are limited by location, at least where i live there is no anime with jap subs, there are some netflix shows that have japanese subs like cobra kai, but it is very rare breaking bad for example has no jap sub here (dub is non existent);False;False;;;;1610372545;;False;{};givnypd;False;t3_kv06fx;False;True;t1_givfvus;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givnypd/;1610419106;1;True;False;anime;t5_2qh22;;0;[]; -[];;;A-random-person_;;;[];;;;text;t2_70r8yljp;False;False;[];;"Yeah. You have premium? - -I want to but don’t know yet. I hate piracy so im not doing that.";False;False;;;;1610372558;;False;{};givnzoj;True;t3_kv2ral;False;True;t1_givnmpm;/r/anime/comments/kv2ral/question_to_you_all/givnzoj/;1610419122;1;True;False;anime;t5_2qh22;;0;[]; -[];;;A-random-person_;;;[];;;;text;t2_70r8yljp;False;False;[];;Yeah but a lot less then crunchyroll. But crunchyroll has tons of ads.;False;False;;;;1610372593;;False;{};givo2a8;True;t3_kv2ral;False;True;t1_givnqzs;/r/anime/comments/kv2ral/question_to_you_all/givo2a8/;1610419163;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"[Here's a list of streaming/download sites.](https://www.reddit.com/r/anime/wiki/legal_streams) Pirate sites aren't allowed to be mentioned by the rules so that's about all you'll get here. - -Depends on where you live, but in the US at least Crunchyroll and Funimation get most of the new shows each season. Funimation tends to have more English dubs in general. HIDIVE is a smaller operation but they're independent and have a few things that the others don't; VRV has the libraries of both Crunchryoll and HIDIVE. - -Tubi and Hulu also have decently large libraries (former's free), Retrocrush is nice for older anime.";False;False;;;;1610372619;;False;{};givo44j;False;t3_kv2ral;False;True;t3_kv2ral;/r/anime/comments/kv2ral/question_to_you_all/givo44j/;1610419203;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aadi-K;;;[];;;;text;t2_4klu6o3e;False;False;[];;Yeah, I have premium, but tbh, I’m looking for another service because Crunchyroll has this whole Mega Fan thing, where they can download episodes, and it’s just so weird;False;False;;;;1610372628;;False;{};givo4t2;False;t3_kv2ral;False;True;t1_givnzoj;/r/anime/comments/kv2ral/question_to_you_all/givo4t2/;1610419213;0;True;False;anime;t5_2qh22;;0;[]; -[];;;A-random-person_;;;[];;;;text;t2_70r8yljp;False;False;[];;Yeah. But there aren’t a lot in here(Holland). Only one i am aware of is crunchyroll so thats why i use it;False;False;;;;1610372733;;False;{};givoc8j;True;t3_kv2ral;False;False;t1_givo4t2;/r/anime/comments/kv2ral/question_to_you_all/givoc8j/;1610419342;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aadi-K;;;[];;;;text;t2_4klu6o3e;False;False;[];;That’s an oof;False;False;;;;1610372774;;False;{};givofkh;False;t3_kv2ral;False;True;t1_givoc8j;/r/anime/comments/kv2ral/question_to_you_all/givofkh/;1610419387;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610372795;;False;{};givoh0a;False;t3_kv2ral;False;False;t1_givo2a8;/r/anime/comments/kv2ral/question_to_you_all/givoh0a/;1610419410;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;For me Animelab, by far;False;False;;;;1610372818;;False;{};givoil8;False;t3_kv2ral;False;True;t3_kv2ral;/r/anime/comments/kv2ral/question_to_you_all/givoil8/;1610419435;0;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"[Snowwhite with the red hair](https://myanimelist.net/anime/30123/Akagami_no_Shirayuki-hime) has no glasses. It wasn't Ancient Magus Bride? - -Do you mean action with ""MH vibes""?";False;False;;;;1610372865;;False;{};givolvz;False;t3_kv2a0e;False;True;t3_kv2a0e;/r/anime/comments/kv2a0e/trying_to_remember_an_anime_from_20162018/givolvz/;1610419485;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Advanced-Kangaroo684;;;[];;;;text;t2_4jx3ckrb;False;False;[];;Elfen lied, FMA, mirai nikki;False;False;;;;1610372870;;False;{};givom91;False;t3_kv2r7e;False;True;t3_kv2r7e;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givom91/;1610419492;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Alphonaeisback;;;[];;;;text;t2_88mtaq7a;False;False;[];;"It's not there on Animelab, nor is it available dubbed on crunchyroll. - -I think your best bet would be madman";False;False;;;;1610372894;;False;{};givoo4o;False;t3_kv2uu8;False;True;t3_kv2uu8;/r/anime/comments/kv2uu8/where_can_i_watch_or_buy_squid_girl_dub_aus/givoo4o/;1610419520;2;True;False;anime;t5_2qh22;;0;[]; -[];;;A-random-person_;;;[];;;;text;t2_70r8yljp;False;False;[];;Ah welp Netflix has some as well prime video. If you have that (not a lot);False;False;;;;1610372898;;False;{};givoogi;True;t3_kv2ral;False;True;t1_givoh0a;/r/anime/comments/kv2ral/question_to_you_all/givoogi/;1610419526;1;True;False;anime;t5_2qh22;;0;[]; -[];;;A-random-person_;;;[];;;;text;t2_70r8yljp;False;False;[];;Ah okay. That isnt available in my country (holland) as far as i know;False;False;;;;1610372928;;False;{};givoqrx;True;t3_kv2ral;False;True;t1_givoil8;/r/anime/comments/kv2ral/question_to_you_all/givoqrx/;1610419559;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TKhrowawaY;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omnium;light;text;t2_igehj;False;False;[];;The character design strikes me as a blend of Yukiko Horiguchi's and Masayoshi Tanaka's style - apparently it's done by Saki Takahashi. I thought that the lead girl bore a striking resemblance to Takigawa Miu from 22/7.;False;False;;;;1610372948;;False;{};givos7u;False;t3_kv0m20;False;True;t3_kv0m20;/r/anime/comments/kv0m20/tv_anime_wonder_egg_priority_new_pv/givos7u/;1610419580;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SunYeee;;;[];;;;text;t2_5ofnhuak;False;False;[];;sailing the high seas;False;False;;;;1610372955;;False;{};givosr1;False;t3_kv2ral;False;False;t3_kv2ral;/r/anime/comments/kv2ral/question_to_you_all/givosr1/;1610419587;5;True;False;anime;t5_2qh22;;0;[]; -[];;;A-random-person_;;;[];;;;text;t2_70r8yljp;False;False;[];;You pirate?;False;False;;;;1610372977;;False;{};givoud8;True;t3_kv2ral;False;False;t1_givosr1;/r/anime/comments/kv2ral/question_to_you_all/givoud8/;1610419612;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SunYeee;;;[];;;;text;t2_5ofnhuak;False;False;[];;no that needs common sense;False;False;;;;1610373015;;False;{};givox6g;False;t3_kv2ghl;False;True;t1_givld1s;/r/anime/comments/kv2ghl/is_the_a_certain_magical_index_series_worth/givox6g/;1610419654;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OtherHalfling;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/otherhalfling;light;text;t2_di2cu;False;False;[];;"* [Aoi Bungaku Series](https://myanimelist.net/anime/7193/Aoi_Bungaku_Series) (several stories in one) -* [Cossette no Shouzou](https://myanimelist.net/anime/514/Cossette_no_Shouzou) -* [Ima, Soko ni Iru Boku](https://myanimelist.net/anime/160/Ima_Soko_ni_Iru_Boku) -* [Jin-Rou](https://myanimelist.net/anime/570/Jin-Rou) -* [Kenpuu Denki Berserk](https://myanimelist.net/anime/33/Kenpuu_Denki_Berserk) -* [Monster](https://myanimelist.net/anime/19/Monster) -* [Perfect Blue](https://myanimelist.net/anime/437/Perfect_Blue) -* [Shigurui](https://myanimelist.net/anime/2216/Shigurui) -* [Texhnolyze](https://myanimelist.net/anime/26/Texhnolyze) -* [Vampire Hunter D (2000)](https://myanimelist.net/anime/543/Vampire_Hunter_D_2000)";False;False;;;;1610373047;;False;{};givozlp;False;t3_kv2r7e;False;False;t3_kv2r7e;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givozlp/;1610419692;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SunYeee;;;[];;;;text;t2_5ofnhuak;False;False;[];;no mr police officer;False;False;;;;1610373065;;False;{};givp105;False;t3_kv2ral;False;False;t1_givoud8;/r/anime/comments/kv2ral/question_to_you_all/givp105/;1610419720;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610373093;moderator;False;{};givp32j;False;t3_kv30qh;False;True;t3_kv30qh;/r/anime/comments/kv30qh/can_you_guys_help_me_find_an_old_anime_that_i/givp32j/;1610419753;1;False;False;anime;t5_2qh22;;0;[]; -[];;;A-random-person_;;;[];;;;text;t2_70r8yljp;False;False;[];;Okay all good 🏴‍☠️;False;False;;;;1610373116;;False;{};givp4on;True;t3_kv2ral;False;False;t1_givp105;/r/anime/comments/kv2ral/question_to_you_all/givp4on/;1610419778;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Worm38;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Worm38;light;text;t2_21wfoc0w;False;False;[];;"Well, this video is basically a compilation of such tropes. The 2 first minutes of it are in order : - -* birds flying in the sky -* fast traveling of the camera inside a forest -* zooming on eyes -* people running in a straight line with the camera on the side, following them in such a way that their place in the frame doesn't move -* people running, initially towards the camera, but then the camera rotates to their side -* people initially facing away turning to face the camera -* naked people in a foetal position with an abstract background -* melancholic people sitting in a room looking outside -* people standing/sitting immobile with wind blowing their clothes/hair - -I'll let you analyse the rest. Of course I'm sure there are plenty of other tropes not in this video, like an anime character sinking into the sea/some kind of darkness/whatever, but that should already be enough.";False;False;;;;1610373129;;False;{};givp5lu;False;t3_kv0ga7;False;True;t1_givlecp;/r/anime/comments/kv0ga7/what_makes_an_anime_opening_specifically_anime/givp5lu/;1610419792;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610373169;;False;{};givp8fl;False;t3_kv2ral;False;True;t1_givoogi;/r/anime/comments/kv2ral/question_to_you_all/givp8fl/;1610419837;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Plasma-Aki;;;[];;;;text;t2_23u0n20r;False;False;[];;Thank you so much! This'll help a ton.;False;False;;;;1610373170;;False;{};givp8i6;True;t3_kv0ga7;False;True;t1_givp5lu;/r/anime/comments/kv0ga7/what_makes_an_anime_opening_specifically_anime/givp8i6/;1610419838;0;True;False;anime;t5_2qh22;;0;[]; -[];;;bruhthisisprettyepic;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;rin matouska is my husbando heheheheehehheehehehehehe;light;text;t2_650huy1u;False;False;[];;Demon slayer;False;False;;;;1610373191;;False;{};givp9yd;False;t3_kv31hg;False;True;t3_kv31hg;/r/anime/comments/kv31hg/should_i_watch_aot_or_demon_slayer_first/givp9yd/;1610419860;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;Just read from the start. Anime butchered everything good about the LN, although it was still enjoyable if you look at it as a different series.;False;False;;;;1610373208;;False;{};givpb41;False;t3_kv1s7c;False;True;t3_kv1s7c;/r/anime/comments/kv1s7c/classroom_of_the_elite_what_chapter_after_season1/givpb41/;1610419877;2;True;False;anime;t5_2qh22;;0;[]; -[];;;scariestduke;;;[];;;;text;t2_2ghuy5z8;False;False;[];;Aot, demon slayer is boring;False;False;;;;1610373224;;False;{};givpccq;False;t3_kv31hg;False;True;t3_kv31hg;/r/anime/comments/kv31hg/should_i_watch_aot_or_demon_slayer_first/givpccq/;1610419897;4;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Piracy: Best library all around the world at the best value;False;False;;;;1610373236;;False;{};givpd6q;False;t3_kv2ral;False;True;t3_kv2ral;/r/anime/comments/kv2ral/question_to_you_all/givpd6q/;1610419910;1;True;False;anime;t5_2qh22;;0;[]; -[];;;A-random-person_;;;[];;;;text;t2_70r8yljp;False;False;[];;Ah my hero academia is on netflix s1-2 i like that;False;False;;;;1610373241;;False;{};givpdj9;True;t3_kv2ral;False;True;t1_givp8fl;/r/anime/comments/kv2ral/question_to_you_all/givpdj9/;1610419915;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HobnobsTheRed;;;[];;;;text;t2_1ftgjit5;False;False;[];;No legally available dubs available for AU as far as I know. You're probably going to have to import a physical copy. ([Amazon US has it](https://www.amazon.com/Squid-Girl-Blu-ray-Ayumi-Fujimura/dp/B074GV3RXJ));False;False;;;;1610373255;;False;{};givpeiu;False;t3_kv2uu8;False;True;t3_kv2uu8;/r/anime/comments/kv2uu8/where_can_i_watch_or_buy_squid_girl_dub_aus/givpeiu/;1610419931;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;They said that these are their anticipated anime of winter 2021, I'm sure they watch other stuff outside of these 15 shows. And if they're like most people, they start off with a bigger list and slowly drop shows that they're not too fond of;False;False;;;;1610373271;;False;{};givpfll;False;t3_kv1wxq;False;True;t1_givntep;/r/anime/comments/kv1wxq/my_top_15_anticipated_anime_of_winter_2021/givpfll/;1610419949;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;eetsumkaus;;MAL;[];;http://myanimelist.net/animelist/kausDC;dark;text;t2_6ntj2;False;False;[];;Oh good, it's not just me. Yes, Monogatari is way more difficult than Tatami Galaxy. Getting through the latter without subs made me think I could do it for the former. That was wrong;False;False;;;;1610373277;;1610373609.0;{};givpfzv;False;t3_kv06fx;False;True;t1_givc773;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givpfzv/;1610419956;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iiiSnopel;;;[];;;;text;t2_1vqozrep;False;False;[];;No dice. 😕;False;False;;;;1610373286;;False;{};givpgl3;True;t3_kv2uu8;False;True;t1_givoo4o;/r/anime/comments/kv2uu8/where_can_i_watch_or_buy_squid_girl_dub_aus/givpgl3/;1610419965;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;I’d recommend Attack on Titan first if you’re interested in joining in on the discussions. Since the new and really hyped season is currently airing, people are talking about it everywhere. So it’s better if you catch up now so you aren’t spoiled by anything.;False;False;;;;1610373293;;False;{};givph2z;False;t3_kv31hg;False;True;t3_kv31hg;/r/anime/comments/kv31hg/should_i_watch_aot_or_demon_slayer_first/givph2z/;1610419972;9;True;False;anime;t5_2qh22;;0;[]; -[];;;thicc-cow-boi;;;[];;;;text;t2_4qbec9xa;False;False;[];;Aot because it’s airing atm and in my opinion it’s better than demon slayer;False;False;;;;1610373298;;False;{};givphgx;False;t3_kv31hg;False;True;t3_kv31hg;/r/anime/comments/kv31hg/should_i_watch_aot_or_demon_slayer_first/givphgx/;1610419980;2;True;False;anime;t5_2qh22;;0;[]; -[];;;A-random-person_;;;[];;;;text;t2_70r8yljp;False;False;[];;Yeah but i dont like to pirate :) so i use ad block on crunchyroll. No piracy only big brain here;False;False;;;;1610373301;;False;{};givphms;True;t3_kv2ral;False;True;t1_givpd6q;/r/anime/comments/kv2ral/question_to_you_all/givphms/;1610419982;1;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 150, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Thank you stranger. Shows the award.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'icon_width': 2048, 'id': 'award_f44611f1-b89e-46dc-97fe-892280b13b82', 'is_enabled': True, 'is_new': False, 'name': 'Helpful', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}, {'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 80, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Everything is better with a good hug', 'end_date': None, 'giver_coin_reward': 0, 'icon_format': 'PNG', 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png', 'icon_width': 2048, 'id': 'award_8352bdff-3e03-4189-8a08-82501dd8f835', 'is_enabled': True, 'is_new': False, 'name': 'Hugz', 'penny_donate': 0, 'penny_price': 0, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16&height=16&auto=webp&s=69997ace3ef4ffc099b81d774c2c8f1530602875', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32&height=32&auto=webp&s=e9519d1999ef9dce5c8a9f59369cb92f52d95319', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48&height=48&auto=webp&s=f076c6434fb2d2f9075991810fd845c40fa73fc6', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64&height=64&auto=webp&s=85527145e0c4b754306a30df29e584fd16187636', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128&height=128&auto=webp&s=b8843cdf82c3b741d7af057c14076dcd2621e811', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16&height=16&auto=webp&s=69997ace3ef4ffc099b81d774c2c8f1530602875', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32&height=32&auto=webp&s=e9519d1999ef9dce5c8a9f59369cb92f52d95319', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48&height=48&auto=webp&s=f076c6434fb2d2f9075991810fd845c40fa73fc6', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64&height=64&auto=webp&s=85527145e0c4b754306a30df29e584fd16187636', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128&height=128&auto=webp&s=b8843cdf82c3b741d7af057c14076dcd2621e811', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;yumewomita;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;.;light;text;t2_zav5uxb;False;False;[];;Thanks for the rec 👍;False;False;;;;1610373305;;False;{};givphzv;False;t3_kv06fx;False;False;t1_givc2tv;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givphzv/;1610419987;168;True;False;anime;t5_2qh22;;2;[]; -[];;;DonSab;;;[];;;;text;t2_4m7feg68;False;False;[];;thanks;False;False;;;;1610373310;;False;{};givpiez;True;t3_kv1s7c;False;True;t1_givpb41;/r/anime/comments/kv1s7c/classroom_of_the_elite_what_chapter_after_season1/givpiez/;1610419994;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;Absolutely Attack on titan imo;False;False;;;;1610373340;;False;{};givpkug;False;t3_kv31hg;False;True;t3_kv31hg;/r/anime/comments/kv31hg/should_i_watch_aot_or_demon_slayer_first/givpkug/;1610420029;9;True;False;anime;t5_2qh22;;0;[]; -[];;;iiiSnopel;;;[];;;;text;t2_1vqozrep;False;False;[];;"Typical. This is exactly the same as trying to watch Bleach dubbed. Idk why trying to watch dubbed anime is so hard in Australia! -Thanks though.";False;False;;;;1610373343;;False;{};givpl1m;True;t3_kv2uu8;False;True;t1_givpeiu;/r/anime/comments/kv2uu8/where_can_i_watch_or_buy_squid_girl_dub_aus/givpl1m/;1610420031;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;Whichever you’re more comfortable with. Both are good;False;False;;;;1610373344;;False;{};givpl50;False;t3_kv2y1n;False;True;t3_kv2y1n;/r/anime/comments/kv2y1n/sooo_manga_or_anime/givpl50/;1610420032;1;True;False;anime;t5_2qh22;;0;[]; -[];;;eetsumkaus;;MAL;[];;http://myanimelist.net/animelist/kausDC;dark;text;t2_6ntj2;False;False;[];;You get more JP options if you switch your profile language to Japanese, or at least it did for me.;False;False;;;;1610373350;;False;{};givplp2;False;t3_kv06fx;False;True;t1_givnypd;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givplp2/;1610420041;1;True;False;anime;t5_2qh22;;0;[]; -[];;;danker_memesists;;;[];;;;text;t2_16qiiw;False;False;[];;so binge heavily and don't get spoiled;False;False;;;;1610373370;;False;{};givpn6x;True;t3_kv31hg;False;True;t1_givph2z;/r/anime/comments/kv31hg/should_i_watch_aot_or_demon_slayer_first/givpn6x/;1610420064;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"Basically. - -One new episode airs each Sunday. So, you have about a week to catch up.";False;False;;;;1610373466;;False;{};givpugd;False;t3_kv31hg;False;True;t1_givpn6x;/r/anime/comments/kv31hg/should_i_watch_aot_or_demon_slayer_first/givpugd/;1610420171;4;True;False;anime;t5_2qh22;;0;[]; -[];;;_dsmith23;;;[];;;;text;t2_q9zbacg;False;False;[];;Aot for sure. Demon Slayer can come next;False;False;;;;1610373483;;False;{};givpvqy;False;t3_kv31hg;False;True;t3_kv31hg;/r/anime/comments/kv31hg/should_i_watch_aot_or_demon_slayer_first/givpvqy/;1610420192;6;True;False;anime;t5_2qh22;;0;[]; -[];;;GodHand88;;;[];;;;text;t2_5juh8zhj;False;False;[];;Aot;False;False;;;;1610373514;;False;{};givpxzc;False;t3_kv31hg;False;True;t3_kv31hg;/r/anime/comments/kv31hg/should_i_watch_aot_or_demon_slayer_first/givpxzc/;1610420228;6;True;False;anime;t5_2qh22;;0;[]; -[];;;tastycalamarie;;;[];;;;text;t2_9ltaad3j;False;False;[];;No, there isn't one. And it's like my favorite!;False;False;;;;1610373551;;False;{};givq0oh;False;t3_kv2uu8;False;True;t3_kv2uu8;/r/anime/comments/kv2uu8/where_can_i_watch_or_buy_squid_girl_dub_aus/givq0oh/;1610420271;1;True;False;anime;t5_2qh22;;0;[]; -[];;;danker_memesists;;;[];;;;text;t2_16qiiw;False;False;[];;I'll need to watch 10 episodes a day lol, maybe I'll try and catch up before the anime ends.;False;False;;;;1610373560;;False;{};givq1cy;True;t3_kv31hg;False;True;t1_givpugd;/r/anime/comments/kv31hg/should_i_watch_aot_or_demon_slayer_first/givq1cy/;1610420281;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;Wakanim, maybe? I know its catalog varies by country but have heard good things about it for Europe in general.;False;False;;;;1610373590;;False;{};givq3kt;False;t3_kv2ral;False;True;t1_givoc8j;/r/anime/comments/kv2ral/question_to_you_all/givq3kt/;1610420314;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OpportunityAway1082;;;[];;;;text;t2_9m5k9o6o;False;False;[];;About mirai Nikki, he asked for a good plot not massive plot holes;False;False;;;;1610373622;;False;{};givq5vu;False;t3_kv2r7e;False;True;t1_givom91;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givq5vu/;1610420350;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Advanced-Kangaroo684;;;[];;;;text;t2_4jx3ckrb;False;False;[];;Lol. It has both;False;False;;;;1610373657;;False;{};givq8ff;False;t3_kv2r7e;False;True;t1_givq5vu;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givq8ff/;1610420389;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610373673;;False;{};givq9jt;False;t3_kv2ral;False;True;t3_kv2ral;/r/anime/comments/kv2ral/question_to_you_all/givq9jt/;1610420407;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi danker_memesists, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610373674;moderator;False;{};givq9ky;False;t3_kv2ral;False;True;t1_givq9jt;/r/anime/comments/kv2ral/question_to_you_all/givq9ky/;1610420407;1;False;False;anime;t5_2qh22;;0;[]; -[];;;A-random-person_;;;[];;;;text;t2_70r8yljp;False;False;[];;Thanks. I see its available here. Imma check it later;False;False;;;;1610373679;;False;{};givq9xm;True;t3_kv2ral;False;True;t1_givq3kt;/r/anime/comments/kv2ral/question_to_you_all/givq9xm/;1610420413;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Meemeli;;;[];;;;text;t2_2o1rogl;False;False;[];;I loved the anime, and I'm pretty sure it was made first.;False;False;;;;1610373701;;False;{};givqbhs;False;t3_kv2y1n;False;False;t3_kv2y1n;/r/anime/comments/kv2y1n/sooo_manga_or_anime/givqbhs/;1610420437;4;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your submission has been removed. - -- This looks like it's - a short discussion thread. - This is a form of restricted content that isn't allowed as a full post on the sub. You might consider posting about this sort of thing in the [weekly Casual Discussion Fridays megathread](https://www.reddit.com/r/anime/search?q=title%3A%22Casual+Discussion+Fridays%22+subreddit%3Aanime+author%3AAnimeMod&restrict_sr=on&sort=new&t=week) if it applies. See [our rules page](https://www.reddit.com/r/anime/wiki/rules#wiki_restricted_content) for a full list of restricted content categories. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610373714;moderator;False;{};givqcfk;False;t3_kv2ghl;False;True;t3_kv2ghl;/r/anime/comments/kv2ghl/is_the_a_certain_magical_index_series_worth/givqcfk/;1610420453;1;True;False;anime;t5_2qh22;;0;[]; -[];;;leolps;;;[];;;;text;t2_108j2k;False;False;[];;my intention was not bashing kutsunekko, it really has a good library. I just wish we could get it officially on crunchy or netflix just like we can get eng or spain subs.;False;False;;;;1610373844;;False;{};givqm7u;False;t3_kv06fx;False;True;t1_givlgzd;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givqm7u/;1610420602;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HobnobsTheRed;;;[];;;;text;t2_1ftgjit5;False;False;[];;"> Girls' Last Tour - -Definitely seconded for the slice of life aspect. Superb show.";False;False;;;;1610373850;;False;{};givqmo6;False;t3_kv2ago;False;True;t1_givmuwo;/r/anime/comments/kv2ago/recommend_me_some_thriller_anime_like_steinsgate/givqmo6/;1610420609;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HobnobsTheRed;;;[];;;;text;t2_1ftgjit5;False;False;[];;Probably licensing costs, given that Australia doesn't have much of a dubbing industry. Cheaper to license the original content than the dub, as there's additional royalties for the English VAs.;False;False;;;;1610373959;;False;{};givqulp;False;t3_kv2uu8;False;True;t1_givpl1m;/r/anime/comments/kv2uu8/where_can_i_watch_or_buy_squid_girl_dub_aus/givqulp/;1610420730;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Al-Pharazon;;;[];;;;text;t2_1s32gw1x;False;False;[];;"Demon Slayer should be first, not because it is better but as it only have one season and an unreleased movie (currently it's only available on the cinema) it is much shorter to watch. - -After that you can focus on getting up to date for AOT so you can be ready for the second cour of season 4";False;False;;;;1610373980;;False;{};givqw6e;False;t3_kv31hg;False;True;t3_kv31hg;/r/anime/comments/kv31hg/should_i_watch_aot_or_demon_slayer_first/givqw6e/;1610420755;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Its only available in Australia and New Zealand, have you checked wakanim in your country? Same company as Funimation and Animelab;False;False;;;;1610373998;;False;{};givqxjz;False;t3_kv2ral;False;True;t1_givoqrx;/r/anime/comments/kv2ral/question_to_you_all/givqxjz/;1610420776;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Plato_Karamazov;;;[];;;;text;t2_6037n;False;False;[];;"Serial Experiments Lain - -Death Parade - -Ergo Proxy - -Haibane Renmei";False;False;;;;1610374110;;False;{};givr5o0;False;t3_kv2ago;False;True;t3_kv2ago;/r/anime/comments/kv2ago/recommend_me_some_thriller_anime_like_steinsgate/givr5o0/;1610420909;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Alphonaeisback;;;[];;;;text;t2_88mtaq7a;False;False;[];;"It's a shame cuz the dub the quite good. - -Or maybe that's just the 4 year nostaligia speaking";False;False;;;;1610374131;;False;{};givr76e;False;t3_kv2uu8;False;True;t1_givpgl3;/r/anime/comments/kv2uu8/where_can_i_watch_or_buy_squid_girl_dub_aus/givr76e/;1610420933;1;True;False;anime;t5_2qh22;;0;[]; -[];;;evilresurgence4;;;[];;;;text;t2_3hd7gero;False;False;[];;sounds like a lot, but most people j reccomend it to catch up in like 3 days;False;False;;;;1610374163;;False;{};givr9jx;False;t3_kv31hg;False;True;t1_givq1cy;/r/anime/comments/kv31hg/should_i_watch_aot_or_demon_slayer_first/givr9jx/;1610420979;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Plato_Karamazov;;;[];;;;text;t2_6037n;False;False;[];;No. SEL makes perfect sense as it explores the consequences of conspiracy theories and the Internet. Everything SEL was trying to say about the Internet way back in 1998 has actually happened, and because of that, it's my all-time favorite anime.;False;False;;;;1610374246;;False;{};givrg07;False;t3_kv2ago;False;True;t1_givmwq2;/r/anime/comments/kv2ago/recommend_me_some_thriller_anime_like_steinsgate/givrg07/;1610421106;1;True;False;anime;t5_2qh22;;0;[]; -[];;;leolps;;;[];;;;text;t2_108j2k;False;False;[];;already tried that some time ago but decided to test again before my last reply , it worked with cobra kai but with everything else i tested (opm, code geass, death note, breaking bad) doesn't work;False;False;;;;1610374282;;False;{};givriv5;False;t3_kv06fx;False;True;t1_givplp2;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givriv5/;1610421158;2;True;False;anime;t5_2qh22;;0;[]; -[];;;evilresurgence4;;;[];;;;text;t2_3hd7gero;False;False;[];;Attack on titan, only really horror during the first season, not too much unlike parasyte;False;False;;;;1610374331;;False;{};givrmo3;False;t3_kv2ago;False;False;t3_kv2ago;/r/anime/comments/kv2ago/recommend_me_some_thriller_anime_like_steinsgate/givrmo3/;1610421219;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ohaimike;;;[];;;;text;t2_5ovb2;False;False;[];;Keijo!!!!!!!!;False;False;;;;1610374345;;False;{};givrnpi;False;t3_kv0xz9;False;True;t3_kv0xz9;/r/anime/comments/kv0xz9/best_fan_service_anime/givrnpi/;1610421234;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"Tbh, I felt the opposite. - -Because there’s nothing really going on with demon slayer atm other than it’s Japanese only movie, there really isn’t as much hype or discussion going around. So, it really doesn’t matter when you watch it since the first season ended a long time ago. - -Attack on Titan on the other hand isn’t even at the halfway mark yet in terms of episode count for this cour. Thus, anyone could probably catch up before episode 13 airs and still participate in its current hype train.";False;False;;;;1610374461;;False;{};givrwhr;False;t3_kv31hg;False;True;t1_givqw6e;/r/anime/comments/kv31hg/should_i_watch_aot_or_demon_slayer_first/givrwhr/;1610421372;6;True;False;anime;t5_2qh22;;0;[]; -[];;;HobnobsTheRed;;;[];;;;text;t2_1ftgjit5;False;False;[];;"For the slice of life (or slower paced) part; - -- [Planetarian](https://myanimelist.net/anime/33091/Planetarian__Chiisana_Hoshi_no_Yume) -- [Sagrada Reset](https://myanimelist.net/anime/34102/Sakurada_Reset) -- [Death Parade](https://myanimelist.net/anime/28223/Death_Parade)";False;False;;;;1610374506;;False;{};givrzvs;False;t3_kv2ago;False;True;t3_kv2ago;/r/anime/comments/kv2ago/recommend_me_some_thriller_anime_like_steinsgate/givrzvs/;1610421426;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ElJuan1456;;;[];;;;text;t2_61i15m0h;False;False;[];;I would recommend you attack on titan cause I haven’t watched demon slayer, but it gets boring after second season and turns back good again in third season. If you don’t care at all and you want to watch a good anime, watch code geass (the main protagonist is an antihero) or neon genesis evangelion (it has some good plot twists and protagonists are enjoyable to watch, and it has an awesome movie with a lot of action). Those two are in Netflix.;False;False;;;;1610374526;;False;{};givs1hs;False;t3_kv31hg;False;True;t3_kv31hg;/r/anime/comments/kv31hg/should_i_watch_aot_or_demon_slayer_first/givs1hs/;1610421450;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;There are a pretty huge amount of people that don't venture outside of seasonal.;False;False;;;;1610374576;;False;{};givs56z;False;t3_kv1wxq;False;True;t1_givpfll;/r/anime/comments/kv1wxq/my_top_15_anticipated_anime_of_winter_2021/givs56z/;1610421507;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeCall101;;;[];;;;text;t2_2o3bhrls;False;False;[];;I like the setups in the ow, always makes me laugh;False;False;;;;1610374616;;False;{};givs87i;False;t3_kv0xz9;False;True;t1_givkimy;/r/anime/comments/kv0xz9/best_fan_service_anime/givs87i/;1610421555;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ikmal1997;;;[];;;;text;t2_80tamrb;False;False;[];;You'll know when you've reached pro level once you watch Gintama and understand all their japanese play on words;False;False;;;;1610374686;;False;{};givsdkx;False;t3_kv06fx;False;True;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givsdkx/;1610421637;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RockStarZero23;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Animeniac;light;text;t2_42anxyev;False;False;[];;Hahaha!!! Classic and spot on for the OP.;False;False;;;;1610374705;;False;{};givsf4d;False;t3_kv2r7e;False;False;t1_givnovc;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givsf4d/;1610421661;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Veeron;;MAL;[];;http://myanimelist.net/animelist/Troglodyte;dark;text;t2_6v4zw;False;True;[];;">I've been wondering how to make progress with kanji outside of the stuff they have us so in class. - -You sound like you haven't discovered the wonders of Anki.";False;False;;;;1610374731;;False;{};givsh9l;False;t3_kv06fx;False;True;t1_giv7xyf;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givsh9l/;1610421695;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gryphon_xpress;;;[];;;;text;t2_7bvw18u1;False;False;[];;Demon Slayer because it's shorter (one season and unreleased movie) after that you can watch aot;False;False;;;;1610374790;;False;{};givslx8;False;t3_kv31hg;False;True;t3_kv31hg;/r/anime/comments/kv31hg/should_i_watch_aot_or_demon_slayer_first/givslx8/;1610421772;2;True;False;anime;t5_2qh22;;0;[]; -[];;;the_3rdist;;;[];;;;text;t2_8q31eg56;False;False;[];;"Congrats! I remember when I was on holiday in Japan when the first FSN: Heaven's Feel movie came out. I didn't want to wait another 6 months for it to come out in my home country so I took the plunge and watched it without subs. - -I came away understanding 80% of the dialogue. It helped a lot that I knew all the Fate/Nasuverse jargon but I was really surprised. I've never taken any Japanese classes before and only have exposure to Japanese through anime.";False;False;;;;1610374942;;False;{};givsxwl;False;t3_kv06fx;False;True;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givsxwl/;1610421961;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610374958;;False;{};givsz4w;False;t3_kv31hg;False;True;t3_kv31hg;/r/anime/comments/kv31hg/should_i_watch_aot_or_demon_slayer_first/givsz4w/;1610421978;5;False;False;anime;t5_2qh22;;0;[]; -[];;;RogueNPC;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RogueNPC;light;text;t2_104ye5as;False;False;[];;I love the anime and I'm one of the few the likes the CGI due to it being closer to the manga and actually shows Guts' berserker armour, but I would seriously recommend the manga over the anime, it's just better.;False;False;;;;1610374980;;False;{};givt0tf;False;t3_kv2r7e;False;True;t1_givnovc;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givt0tf/;1610422004;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TacoBellIsChipotle;;;[];;;;text;t2_7l9egrg6;False;False;[];;Why does it matter? If you're going to watch them both anyway, just do it in whatever order you like.;False;False;;;;1610374988;;False;{};givt1fs;False;t3_kv31hg;False;True;t3_kv31hg;/r/anime/comments/kv31hg/should_i_watch_aot_or_demon_slayer_first/givt1fs/;1610422013;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Floppamode;;;[];;;;text;t2_8v8p3oh6;False;False;[];;HxH is amazing but it only really gets dark in chimera ant arc it gets dark before like in Yorknew arc but chimera ant gets brutal;False;False;;;;1610375008;;False;{};givt30j;False;t3_kv2r7e;False;True;t3_kv2r7e;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givt30j/;1610422039;1;True;False;anime;t5_2qh22;;0;[]; -[];;;danker_memesists;;;[];;;;text;t2_16qiiw;False;False;[];;I mean, when will the second half of the final season air then?;False;False;;;;1610375026;;False;{};givt4e5;True;t3_kv31hg;False;True;t1_givrwhr;/r/anime/comments/kv31hg/should_i_watch_aot_or_demon_slayer_first/givt4e5/;1610422060;2;True;False;anime;t5_2qh22;;0;[]; -[];;;blackmagemasta;;MAL;[];;https://myanimelist.net/profile/blackmagemasta;dark;text;t2_aceb1;False;False;[];;Which would you rather do?;False;False;;;;1610375084;;False;{};givt8qp;False;t3_kv2y1n;False;True;t3_kv2y1n;/r/anime/comments/kv2y1n/sooo_manga_or_anime/givt8qp/;1610422129;1;True;False;anime;t5_2qh22;;0;[]; -[];;;danker_memesists;;;[];;;;text;t2_16qiiw;False;False;[];;I have limited time and just want to know which one to watch first.;False;False;;;;1610375093;;False;{};givt9f9;True;t3_kv31hg;False;True;t1_givt1fs;/r/anime/comments/kv31hg/should_i_watch_aot_or_demon_slayer_first/givt9f9/;1610422139;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;Looking at part 2 of season 3, likely a year later.;False;False;;;;1610375126;;False;{};givtc3y;False;t3_kv31hg;False;True;t1_givt4e5;/r/anime/comments/kv31hg/should_i_watch_aot_or_demon_slayer_first/givtc3y/;1610422178;4;True;False;anime;t5_2qh22;;0;[]; -[];;;leolps;;;[];;;;text;t2_108j2k;False;False;[];;also thx for the sync tip I normally just press + seconds on VLC until it more or less matches lol;False;False;;;;1610375173;;False;{};givtg52;False;t3_kv06fx;False;True;t1_givlgzd;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givtg52/;1610422239;1;True;False;anime;t5_2qh22;;0;[]; -[];;;brotato96;;;[];;;;text;t2_16ylw4gr;False;False;[];;Demon Slayer is shorter and convenient, you might not feel like watching it after AOT but im not sure both are great anime so pick any;False;False;;;;1610375197;;False;{};givti2d;False;t3_kv31hg;False;True;t3_kv31hg;/r/anime/comments/kv31hg/should_i_watch_aot_or_demon_slayer_first/givti2d/;1610422267;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Youtube with VPN. - -All other anime focused streaming sites have awful players.";False;False;;;;1610375245;;False;{};givtm21;False;t3_kv2ral;False;True;t3_kv2ral;/r/anime/comments/kv2ral/question_to_you_all/givtm21/;1610422326;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Legendary_Bae;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/LegendaryBae;light;text;t2_empopa3;False;False;[];;I actually enjoyed this show quite a bit;False;False;;;;1610375280;;False;{};givtorc;False;t3_kv0xz9;False;True;t1_givkimy;/r/anime/comments/kv0xz9/best_fan_service_anime/givtorc/;1610422366;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HobnobsTheRed;;;[];;;;text;t2_1ftgjit5;False;False;[];;These, plus Mardock Scramble.;False;False;;;;1610375318;;False;{};givtrub;False;t3_kv2r7e;False;True;t1_givozlp;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givtrub/;1610422409;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;Anime. It’s the original source. The book was just based off the anime.;False;False;;;;1610375334;;False;{};givtt4x;False;t3_kv2y1n;False;True;t3_kv2y1n;/r/anime/comments/kv2y1n/sooo_manga_or_anime/givtt4x/;1610422428;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hersonlaef;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/LLEENN;light;text;t2_pyvb1;False;False;[];;Congratulations! I've been in your position, I remember being so happy understanding a 3 minute long anime PV.;False;False;;;;1610375348;;False;{};givtubf;False;t3_kv06fx;False;True;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givtubf/;1610422445;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sofastsomaybe;;;[];;;;text;t2_pn79k;False;False;[];;Oh yeah I get you.;False;False;;;;1610375405;;False;{};givtysj;False;t3_kv06fx;False;True;t1_givqm7u;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givtysj/;1610422512;2;True;False;anime;t5_2qh22;;0;[]; -[];;;blackmagemasta;;MAL;[];;https://myanimelist.net/profile/blackmagemasta;dark;text;t2_aceb1;False;False;[];;"I don't know, but I do know how you can find out. - -1. Check if a dub exists on https://isthisdubbed.com/ - -2. If a dub exists, follow the links on https://isthisdubbed.com/. - -3. If a dub exists but you can't find it in your region, search on http://justwatch.com and http://because.moe. Be sure to put in your region. - -4. If you can't find a legal streaming site there, search for physical media on http://amazon.com.au";False;False;;;;1610375422;;False;{};givu07i;False;t3_kv2uu8;False;True;t3_kv2uu8;/r/anime/comments/kv2uu8/where_can_i_watch_or_buy_squid_girl_dub_aus/givu07i/;1610422533;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;"> really weird to not have that lifeline - -I've been experimenting with watching without subs, and it really does feel like tightrope walking without a safety net. I'm constantly checking with myself and asking ""did I really understand that?"" because I'm so used to having the subs there to tell me that I've got the right idea. It does come in handy though when there's unsubbed PVs or audio drama tracks when I don't have a choice. - -In the lead up to Yuru Camp season two, I've been reading the Yuru Camp manga in the original Japanese and there's nothing quite as humbling for a novice Japanese learner as cracking open a manga that doesn't have furigana for the kanji. I find though that it's a lot easier to pick up new vocab in a manga because as a reader you get to control the pace of reading, while in an anime you're at the whims of however fast the voice actor says their lines. I'm finding myself now at the whims of the ""long tail"" of vocabulary, where I've got a lot of the everyday speech down, but every now and then there's phrases like ""commemorative photo"" or ""manufacturing facility"", so I can't read more than a few pages without having to look something up.";False;False;;;;1610375497;;False;{};givu5xm;False;t3_kv06fx;False;False;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givu5xm/;1610422623;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Aadi-K;;;[];;;;text;t2_4klu6o3e;False;False;[];;Of course manga is better, but did you really like the 2016 adaptation? I watched that first, and grew to dislike Berserk until I read the manga;False;False;;;;1610375531;;False;{};givu8cs;False;t3_kv2r7e;False;True;t1_givt0tf;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givu8cs/;1610422661;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"From the New World. It's an experience, I have not seen any anime like this. - -While it says horror, I don't think it's horror based. I think it's just because it plays on your fear of the unknown with its vast world-building. - -It's a very unconventional sci-fi. It takes a look at the future in a different view. - -I can't really say anything about this show to attract you to it without spoiling anything, I will say that the last episode really makes you question yourself. - -[The very first scene of From the New World. Just watch it, words alone cannot make you get hooked on to it more than the first scene. (reddit post)](https://www.reddit.com/r/anime/comments/hzd5sb/the_very_first_scene_of_shinsekai_yori/)";False;False;;;;1610375554;;False;{};givua3h;False;t3_kv2ago;False;True;t3_kv2ago;/r/anime/comments/kv2ago/recommend_me_some_thriller_anime_like_steinsgate/givua3h/;1610422690;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blackmagemasta;;MAL;[];;https://myanimelist.net/profile/blackmagemasta;dark;text;t2_aceb1;False;False;[];;"The best legal streaming service is the one that gives you the best value for your money. For me, that's VRV. For you, it might be something different. IDK your values or finances. - -The best illegal streaming service is my plex server where I upload all the things I illegally torrent.";False;False;;;;1610375637;;False;{};givuh64;False;t3_kv2ral;False;True;t3_kv2ral;/r/anime/comments/kv2ral/question_to_you_all/givuh64/;1610422792;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Death Note - -The Promised Neverland - -Casshern Sins - -Psycho-Pass - -Another - -Shinsekai Yori - -Made in Abyss - -Mahou Shoujo Madoka Magica - -Death Parade - -Please create an anime list at myanimelist.net, it's free and useful to have. Helps you remember what you've seen and helps us so we don't recommend you something you've seen.";False;False;;;;1610375727;;False;{};givuodh;False;t3_kv2r7e;False;False;t3_kv2r7e;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givuodh/;1610422902;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Lemonade__728;;;[];;;;text;t2_10spap;False;False;[];;"Evangelion in the later episodes - -Code Geass throughout, esp the ending - -Made in Abyss gets pretty dark the more you go in, same with Land of the Lustrous";False;False;;;;1610375739;;False;{};givupbm;False;t3_kv201n;False;True;t3_kv201n;/r/anime/comments/kv201n/psychological_or_mystery_anime_recommendations/givupbm/;1610422919;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Here to plug in **the Garden of sinners**, it is this urban fantasy movie series mixed with romance, murder-mystery, action, and philosophy. I recommend watching it in the series in the order of 1, 2, 3, 4, 6, 5, recap, 7, 8 to maximize your enjoyment of this series. - -Small spoiler: The show is presented in non-chronological order which means you won't understand everything until the last movie.";False;False;;;;1610375772;;False;{};givus3g;False;t3_kv201n;False;True;t3_kv201n;/r/anime/comments/kv201n/psychological_or_mystery_anime_recommendations/givus3g/;1610422971;1;True;False;anime;t5_2qh22;;0;[]; -[];;;brotato96;;;[];;;;text;t2_16ylw4gr;False;False;[];;there was a phase where I binged a lot and used to get attached to characters. Now I see mostly weeklies and it helps me to stay more connected to real life.;False;False;;;;1610375784;;False;{};givut0n;False;t3_kv1qwl;False;True;t3_kv1qwl;/r/anime/comments/kv1qwl/please_i_need_help/givut0n/;1610422987;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TacoBellIsChipotle;;;[];;;;text;t2_7l9egrg6;False;False;[];;Why does it matter which one you watch first? Everyone on Earth has limited time. If you're going to watch them both anyway, then in the end it doesn't matter which order you go in. So just do it in whatever order you like.;False;False;;;;1610375859;;False;{};givuyym;False;t3_kv31hg;False;True;t1_givt9f9;/r/anime/comments/kv31hg/should_i_watch_aot_or_demon_slayer_first/givuyym/;1610423089;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;FMA is a fantastic series, but does it really belong on the same list as Elfin Lied and Mirai Nikki?;False;False;;;;1610375865;;False;{};givuzek;False;t3_kv2r7e;False;True;t1_givom91;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givuzek/;1610423096;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Casshern Sins - -Psycho-Pass - -Gakkou-Gurashi - -Please create an anime list at myanimelist.net it's free and useful to have. Helps you remember what you've seen and helps us know what you've seen.";False;False;;;;1610375872;;False;{};givuzwr;False;t3_kv2ago;False;True;t3_kv2ago;/r/anime/comments/kv2ago/recommend_me_some_thriller_anime_like_steinsgate/givuzwr/;1610423104;1;True;False;anime;t5_2qh22;;0;[]; -[];;;melongrip;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Dakotah;light;text;t2_gkrni;False;False;[];;Really excited for this, it looks great as others have said visually and Cloverworks have been pumping out great shows over the last couple of years. I really hope the story is good and sticks the landing, the pv doesn’t reveal much of what it’s about.;False;False;;;;1610375940;;False;{};givv4zj;False;t3_kv0m20;False;True;t3_kv0m20;/r/anime/comments/kv0m20/tv_anime_wonder_egg_priority_new_pv/givv4zj/;1610423184;2;True;False;anime;t5_2qh22;;0;[]; -[];;;semicolcheia;;;[];;;;text;t2_yx0nu;False;False;[];;Vinland Saga;False;False;;;;1610375945;;False;{};givv5eg;False;t3_kv2r7e;False;True;t3_kv2r7e;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givv5eg/;1610423192;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lemonade__728;;;[];;;;text;t2_10spap;False;False;[];;Seems like a solid non-psychological version of Utena;False;False;;;;1610375969;;False;{};givv783;False;t3_kv0m20;False;True;t3_kv0m20;/r/anime/comments/kv0m20/tv_anime_wonder_egg_priority_new_pv/givv783/;1610423224;1;True;False;anime;t5_2qh22;;0;[]; -[];;;brotato96;;;[];;;;text;t2_16ylw4gr;False;False;[];;Haven't heard about this but adding to my watchlist just because the animation looks dope.;False;False;;;;1610375970;;False;{};givv7al;False;t3_kv0m20;False;True;t3_kv0m20;/r/anime/comments/kv0m20/tv_anime_wonder_egg_priority_new_pv/givv7al/;1610423225;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;"- Made in Abyss -- Made in Abyss -- Made in Abyss -- Made in Abyss -- Made in Abyss";False;False;;;;1610375980;;False;{};givv82r;False;t3_kv2r7e;False;True;t3_kv2r7e;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givv82r/;1610423237;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;awryconscience;;;[];;;;text;t2_6wqqzlb7;False;False;[];;"Idk many mystery anime - -Psycho pass - -Monster - -Darker than black - -ID : Invaded (this is really intersting and underrated) - -Ergo proxy - -Serial experiments lain - -Code geass - -Steins gate - -Shinsekai yori - -Gosick - -Made in abyss - -Darker than black - -Madoka magica";False;False;;;;1610376108;;False;{};givvipz;False;t3_kv201n;False;True;t3_kv201n;/r/anime/comments/kv201n/psychological_or_mystery_anime_recommendations/givvipz/;1610423413;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Al-Pharazon;;;[];;;;text;t2_1s32gw1x;False;False;[];;"In eight weeks (maybe more if there any breaks) any person should be able to binge as long as they're not extremely busy. That said, I do think that AoT is definitely more enjoyable if you can take your time as it has a lot of small details that while initially might seem unimportant they do define the current events. - -Demon Slayer on the other hand he could have it done in a weekend plus a couple of days.";False;False;;;;1610376232;;False;{};givvsy3;False;t3_kv31hg;False;True;t1_givrwhr;/r/anime/comments/kv31hg/should_i_watch_aot_or_demon_slayer_first/givvsy3/;1610423579;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RPTGB;;;[];;;;text;t2_a9w1beb;False;False;[];;Blade Of The Immortal;False;False;;;;1610376334;;False;{};givw1bc;False;t3_kv2r7e;False;True;t3_kv2r7e;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givw1bc/;1610423705;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RogueNPC;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RogueNPC;light;text;t2_104ye5as;False;False;[];;"- Claymore - -- Berserk Manga - -- Gantz Manga (the anime is kinda brutal, but it doesn't make much sense. The main plot is just okay for the longest time, but it really pays off in the end.) - -- Dorohedoro (I haven't watched the anime all the way through, but the manga was great) - -- Parasyte The Maxim - -- Hellsing - -- Goblin Slayer";False;False;;;;1610376468;;False;{};givwbul;False;t3_kv2r7e;False;True;t3_kv2r7e;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givwbul/;1610423870;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your submission has been removed. - -- This looks like it's - a short discussion thread. - This is a form of restricted content that isn't allowed as a full post on the sub. You might consider posting about this sort of thing in the [weekly Casual Discussion Fridays megathread](https://www.reddit.com/r/anime/search?q=title%3A%22Casual+Discussion+Fridays%22+subreddit%3Aanime+author%3AAnimeMod&restrict_sr=on&sort=new&t=week) if it applies. See [our rules page](https://www.reddit.com/r/anime/wiki/rules#wiki_restricted_content) for a full list of restricted content categories. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610376485;moderator;False;{};givwdcb;False;t3_kv31hg;False;True;t3_kv31hg;/r/anime/comments/kv31hg/should_i_watch_aot_or_demon_slayer_first/givwdcb/;1610423893;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;The only issue with it is the censored version, if you can find the uncensored version, it it much better.;False;False;;;;1610376517;;False;{};givwg6p;False;t3_kv0xz9;False;False;t1_givkimy;/r/anime/comments/kv0xz9/best_fan_service_anime/givwg6p/;1610423934;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610376594;;False;{};givwmlf;False;t3_kv06fx;False;True;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givwmlf/;1610424028;1;False;False;anime;t5_2qh22;;0;[]; -[];;;eetsumkaus;;MAL;[];;http://myanimelist.net/animelist/kausDC;dark;text;t2_6ntj2;False;False;[];;wtf, this looks like a movie! don't think I've seen movie quality visuals like this in a TV anime since Violet Evergarden. I couldn't tell from the previous PV, but this has more of the key animation and it's absolutely fantastic. CloverWorks is really ramping up the animation;False;False;;;;1610376673;;False;{};givwt6t;False;t3_kv0m20;False;False;t3_kv0m20;/r/anime/comments/kv0m20/tv_anime_wonder_egg_priority_new_pv/givwt6t/;1610424130;5;True;False;anime;t5_2qh22;;0;[]; -[];;;RogueNPC;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RogueNPC;light;text;t2_104ye5as;False;False;[];;I hate the animation style like everyone else, but I loved seeing Puck, The Skull Knight, Guts' Berserker armour, and the rest of his traveling party.;False;False;;;;1610376695;;False;{};givwuzn;False;t3_kv2r7e;False;True;t1_givu8cs;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givwuzn/;1610424159;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aadi-K;;;[];;;;text;t2_4klu6o3e;False;False;[];;Yeah, I can agree to that;False;False;;;;1610376734;;False;{};givwy58;False;t3_kv2r7e;False;True;t1_givwuzn;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givwy58/;1610424206;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610376736;;False;{};givwybi;False;t3_kv0xz9;False;True;t1_givwg6p;/r/anime/comments/kv0xz9/best_fan_service_anime/givwybi/;1610424209;1;True;False;anime;t5_2qh22;;0;[]; -[];;;eetsumkaus;;MAL;[];;http://myanimelist.net/animelist/kausDC;dark;text;t2_6ntj2;False;False;[];;all the different freaking layers on each shot is absolutely mind boggling. I wonder if they're gonna keep it up for the run, or if they're gonna drop it halfway like Kabaneri did with the MakeUp Animation.;False;False;;;;1610376778;;False;{};givx1ns;False;t3_kv0m20;False;False;t1_givkg1s;/r/anime/comments/kv0m20/tv_anime_wonder_egg_priority_new_pv/givx1ns/;1610424260;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ben100180;;;[];;;;text;t2_4ctao7au;False;False;[];;I found it on a website that I’m not sure I’m allowed to link, it’s a streaming service that has a lot of uncensored versions of ecchi anime like ishuzoku reviewers.;False;False;;;;1610376824;;False;{};givx5f4;False;t3_kv0xz9;False;True;t1_givwg6p;/r/anime/comments/kv0xz9/best_fan_service_anime/givx5f4/;1610424323;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;Rin: Daughters of Mnemosyne is a really dark and brutal anime. Six 40 minute episodes and both sub and dub is fantastic.;False;False;;;;1610376917;;False;{};givxcz4;False;t3_kv2r7e;False;True;t3_kv2r7e;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givxcz4/;1610424453;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RogueNPC;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RogueNPC;light;text;t2_104ye5as;False;False;[];;I forgot about Shinsekai Yori. I loved that anime, it was so good.;False;False;;;;1610376965;;False;{};givxh68;False;t3_kv2r7e;False;True;t1_givuodh;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givxh68/;1610424515;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yuyi7;;;[];;;;text;t2_7b30bodv;False;False;[];;Rezero;False;False;;;;1610376983;;False;{};givxisb;False;t3_kv2r7e;False;True;t3_kv2r7e;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givxisb/;1610424538;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Blabime;;MAL;[];;http://myanimelist.net/animelist/Blabime;dark;text;t2_tzap8;False;False;[];;Himegoto, easily.;False;False;;;;1610376996;;False;{};givxk14;False;t3_kv0xz9;False;True;t3_kv0xz9;/r/anime/comments/kv0xz9/best_fan_service_anime/givxk14/;1610424556;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;Funny telling someone to make an anime list with myanimelist when you're using anilist.;False;False;;;;1610377011;;False;{};givxlah;False;t3_kv2ago;False;True;t1_givuzwr;/r/anime/comments/kv2ago/recommend_me_some_thriller_anime_like_steinsgate/givxlah/;1610424575;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Joker_Phantom_Thief;;;[];;;;text;t2_6e7g8wfb;False;False;[];;I kind of am interested in learning Japanese myself. Do you have any tips for a high schooler to get into it?;False;False;;;;1610377165;;False;{};givxy9x;False;t3_kv06fx;False;True;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/givxy9x/;1610424771;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;If you’re in US/Canada, Crunchyroll and Funimation have a lot of stuff, and they’ll even be merging soon. In Japan Netflix has the goods. If you don’t live in any of those countries use a VPN and choose one of those options;False;False;;;;1610377255;;False;{};givy5m8;False;t3_kv2ral;False;True;t3_kv2ral;/r/anime/comments/kv2ral/question_to_you_all/givy5m8/;1610424888;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ctrl_alt-account_del;;;[];;;;text;t2_wnd079s;False;False;[];;Evangelion and the End of Evangelion movie.;False;False;;;;1610377297;;False;{};givy91l;False;t3_kv2ago;False;True;t3_kv2ago;/r/anime/comments/kv2ago/recommend_me_some_thriller_anime_like_steinsgate/givy91l/;1610424940;1;True;False;anime;t5_2qh22;;0;[]; -[];;;A-random-person_;;;[];;;;text;t2_70r8yljp;False;False;[];;A vpn doesn’t work on my iPhone maybe you know how to fix but yeah that isn’t an option. Also on my pc/laptop if i use vpn it is as slow as a turtle with 6 stones added to the chell;False;False;;;;1610377409;;False;{};givyie0;True;t3_kv2ral;False;True;t1_givy5m8;/r/anime/comments/kv2ral/question_to_you_all/givyie0/;1610425080;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;I have a MAL as well, I've used both, but I do see your point.;False;False;;;;1610377548;;False;{};givyu5a;False;t3_kv2ago;False;True;t1_givxlah;/r/anime/comments/kv2ago/recommend_me_some_thriller_anime_like_steinsgate/givyu5a/;1610425253;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal_Ebb_238;;;[];;;;text;t2_8nmkui77;False;False;[];;No one recommend Dororo 2017? I recommend Dororo 2017, yes it is dark and yes it is brutal, no it is not gorefest, but it not need to be, even episode 1 its already darker than many anime that only dark because it have gorefest.;False;False;;;;1610377584;;False;{};givyx5p;False;t3_kv2r7e;False;False;t3_kv2r7e;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givyx5p/;1610425297;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Falsus;;;[];;;;text;t2_c6qmw;False;False;[];;Currently ''So I am a Spider, So What?''. It has a lighthearted tone but it is pretty dark and the plot is great.;False;False;;;;1610377655;;False;{};givz2ty;False;t3_kv2r7e;False;True;t3_kv2r7e;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givz2ty/;1610425380;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"I had to find it on a very *against the rules* website, it ***kicked ass***! - -Great show, once that's done.";False;False;;;;1610377676;;False;{};givz4h4;False;t3_kv0xz9;False;False;t1_givx5f4;/r/anime/comments/kv0xz9/best_fan_service_anime/givz4h4/;1610425404;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Falsus;;;[];;;;text;t2_c6qmw;False;False;[];;Personally I don't even bother recommending Berserk since I know it is going to be recommended by just about everyone lol. Better to spend the time recommending something more niche.;False;False;;;;1610377709;;False;{};givz76j;False;t3_kv2r7e;False;True;t1_givnovc;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givz76j/;1610425447;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Falsus;;;[];;;;text;t2_c6qmw;False;False;[];;FMA is darker than FMA:B though not really what I would call dark fantasy either.;False;False;;;;1610377767;;False;{};givzbwh;False;t3_kv2r7e;False;True;t1_givuzek;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/givzbwh/;1610425521;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;I just find it kind of funny that you're telling someone to do X while you're doing Y.;False;False;;;;1610377975;;False;{};givztp6;False;t3_kv2ago;False;True;t1_givyu5a;/r/anime/comments/kv2ago/recommend_me_some_thriller_anime_like_steinsgate/givztp6/;1610425779;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal_Ebb_238;;;[];;;;text;t2_8nmkui77;False;False;[];;Depends entirely on where you are, crunchyroll and funimation probably the best in western countries but are almost worthless in Asia, you can watch more anime legally in anime dedicated channel in youtube than the two of them and more from aniplus Asia and animax. If you consider coverage as the most important factor for the best sites to watch anime legally, I say it's Netflix.;False;False;;;;1610378550;;1610378747.0;{};giw169s;False;t3_kv2ral;False;True;t3_kv2ral;/r/anime/comments/kv2ral/question_to_you_all/giw169s/;1610426520;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kvicksilver;;;[];;;;text;t2_p8h0s;False;False;[];;"* madoka magica (strongly recommend) -* made in abyss (strongly recommend) -* goblin slayer -* redo of healer (nails the brutal/dark part, I will leave for you to decide if the plot is good or not though...) the anime premiere during this anime season.";False;False;;;;1610378824;;False;{};giw1tnn;False;t3_kv2r7e;False;True;t3_kv2r7e;/r/anime/comments/kv2r7e/brutaldark_anime_recommendation_with_good_plot/giw1tnn/;1610426874;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal_Ebb_238;;;[];;;;text;t2_8nmkui77;False;False;[];;Hell Girl;False;False;;;;1610378852;;False;{};giw1w1k;False;t3_kv201n;False;True;t3_kv201n;/r/anime/comments/kv201n/psychological_or_mystery_anime_recommendations/giw1w1k/;1610426908;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;High School of The Dead;False;False;;;;1610379400;;False;{};giw37z0;False;t3_kv0xz9;False;True;t3_kv0xz9;/r/anime/comments/kv0xz9/best_fan_service_anime/giw37z0/;1610427631;1;True;False;anime;t5_2qh22;;0;[]; -[];;;A-random-person_;;;[];;;;text;t2_70r8yljp;False;False;[];;Im in holland;False;False;;;;1610379822;;False;{};giw49jm;True;t3_kv2ral;False;True;t1_giw169s;/r/anime/comments/kv2ral/question_to_you_all/giw49jm/;1610428259;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ralanost;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ralanost;light;text;t2_6qohj;False;False;[];;What the fuck?;False;False;;;;1610380122;;False;{};giw509j;False;t3_kv0m20;False;True;t3_kv0m20;/r/anime/comments/kv0m20/tv_anime_wonder_egg_priority_new_pv/giw509j/;1610428672;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;Omedetou!;False;False;;;;1610380231;;False;{};giw5a6l;False;t3_kv06fx;False;True;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giw5a6l/;1610428818;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;Just added this to my watch list. This LOOKS fantastic - still can't imagine where the STORY is going to go.;False;False;;;;1610380848;;False;{};giw6ulg;False;t3_kv0m20;False;True;t3_kv0m20;/r/anime/comments/kv0m20/tv_anime_wonder_egg_priority_new_pv/giw6ulg/;1610429658;1;True;False;anime;t5_2qh22;;0;[]; -[];;;v1ct0r1us;;;[];;;;text;t2_72zcq;False;False;[];;Poggers;False;False;;;;1610381259;;False;{};giw7vmo;False;t3_kv06fx;False;False;t1_givc2tv;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giw7vmo/;1610430209;14;True;False;anime;t5_2qh22;;0;[]; -[];;;babydave371;;MAL a-amq;[];;https://myanimelist.net/profile/babydave371;dark;text;t2_sak6n;False;False;[];;">3 bad guys as far as i can remember 1 chubby short guy 1 tall guy and their boss - -Was the boss a lady? If so there is a strong possibility it is one of the many entries in the Time Bokan franchise.";False;False;;;;1610381285;;False;{};giw7xxr;False;t3_kv30qh;False;True;t3_kv30qh;/r/anime/comments/kv30qh/can_you_guys_help_me_find_an_old_anime_that_i/giw7xxr/;1610430245;1;True;False;anime;t5_2qh22;;0;[]; -[];;;moa_vision;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/PrizedMoaBird?status=7;dark;text;t2_921az;False;False;[];;Yea it's pretty wild we're getting *two* shows this season with movie quality visuals. (Mushoku Tensei is the other show.);False;False;;;;1610381527;;False;{};giw8jvc;False;t3_kv0m20;False;True;t1_givwt6t;/r/anime/comments/kv0m20/tv_anime_wonder_egg_priority_new_pv/giw8jvc/;1610430578;3;True;False;anime;t5_2qh22;;0;[]; -[];;;eetsumkaus;;MAL;[];;http://myanimelist.net/animelist/kausDC;dark;text;t2_6ntj2;False;False;[];;damn, hearing that one was a surprise. Might need to check out that first episode;False;False;;;;1610381893;;False;{};giw9hdp;False;t3_kv0m20;False;True;t1_giw8jvc;/r/anime/comments/kv0m20/tv_anime_wonder_egg_priority_new_pv/giw9hdp/;1610431083;1;True;False;anime;t5_2qh22;;0;[]; -[];;;moa_vision;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/PrizedMoaBird?status=7;dark;text;t2_921az;False;False;[];;Yea the content might be a little...eh, but the whole visual presentation is just gorgeous.;False;False;;;;1610382230;;False;{};giwacw9;False;t3_kv0m20;False;True;t1_giw9hdp;/r/anime/comments/kv0m20/tv_anime_wonder_egg_priority_new_pv/giwacw9/;1610431542;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SmolTexas;;;[];;;;text;t2_2e6vnns8;False;False;[];;[two](https://i.imgur.com/C3Br7QO.png) [shots](https://i.imgur.com/48K9ZAd.png) of whatever she's holding. there are axes but her thing looks kind of like... a hover board or something?;False;False;;;;1610382844;;False;{};giwbxz8;False;t3_kv0m20;False;False;t1_givjaa1;/r/anime/comments/kv0m20/tv_anime_wonder_egg_priority_new_pv/giwbxz8/;1610432475;5;True;False;anime;t5_2qh22;;0;[]; -[];;;SirWeebBro;;;[];;;;text;t2_5b7zt1fd;False;False;[];;">Candy Boy - -annnnnd saved";False;False;;;;1610383107;;False;{};giwcmf3;False;t3_kv06fx;False;False;t1_givphzv;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giwcmf3/;1610432918;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Naha-;;;[];;;;text;t2_s8bby;False;False;[];;Wow it looks amazing. Thanks OP, I'm gonna watch it.;False;False;;;;1610383635;;False;{};giwdznr;False;t3_kv0m20;False;True;t3_kv0m20;/r/anime/comments/kv0m20/tv_anime_wonder_egg_priority_new_pv/giwdznr/;1610433724;2;True;False;anime;t5_2qh22;;0;[]; -[];;;VideoGamesForU;;;[];;;;text;t2_iyc44;False;False;[];;Use Wanikani for easy Kanji learning;False;False;;;;1610384006;;False;{};giweyt5;False;t3_kv06fx;False;False;t1_giveype;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giweyt5/;1610434219;6;True;False;anime;t5_2qh22;;0;[]; -[];;;messem10;;;[];;;;text;t2_6pcwi;False;False;[];;It has a *lot* of double entendres.;False;False;;;;1610384560;;False;{};giwgehs;False;t3_kv06fx;False;True;t1_givfryh;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giwgehs/;1610434960;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sworp123;;;[];;;;text;t2_70kjkn0w;False;False;[];;what the fek;False;False;;;;1610384684;;False;{};giwgqc1;False;t3_kv06fx;False;False;t1_givc2tv;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giwgqc1/;1610435127;4;True;False;anime;t5_2qh22;;0;[]; -[];;;getrekt123321;;;[];;;;text;t2_l30hs;False;False;[];;The Testament of Sister New Devil. There's an uncensored version and there's quite a bit of fanservice in every episode.;False;False;;;;1610385269;;False;{};giwi9fs;False;t3_kv0xz9;False;False;t3_kv0xz9;/r/anime/comments/kv0xz9/best_fan_service_anime/giwi9fs/;1610435910;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AceOfSerberit;;;[];;;;text;t2_1jfw6dhg;False;False;[];;"Yuri incest you say? - -*note to self. Google it*";False;False;;;;1610385456;;False;{};giwir44;False;t3_kv06fx;False;False;t1_givc2tv;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giwir44/;1610436151;14;True;False;anime;t5_2qh22;;0;[]; -[];;;jj_unbreakable;;;[];;;;text;t2_9lz3f;False;False;[];;"You've phrased your question wrong. - -As a previous comment said, the ""anime"" part of an anime OP is that... it's anime. - -It's animated as the introduction portion to a Japanese anime series. - -Try asking instead what the components of an anime OP are. You know what you want to find in your short film, so why don't you ask and look for those in the OP? Anime isn't a magical intangible substance. - -Let's get super down to basics. An anime OP is ""anime"" - animated. And an ""OP"" - opening. - -Anime: The shots are mostly hand drawn and show high quality stills or low frame rate motion. High frame rates and fluid motion are a rarity and used sparingly. Lots of oversized pictures (larger than the frame) that use zoom or panning to give the illusion of motion or to fill frames/time. - -OP: The introduction to the series. An overview of the world and characters. An entrance from our real life into the anime world. Often a building of expectations and increase in anticipation and energy levels. - -At the end of the day your project is going to be a cool or cute video that resembles but won't be an anime OP. There are *literally* anime OPs that have real life photos and don't adhere to the list of things I've mentioned that still are anime OPs because they are the OP of an anime series. Don't flip out if you make a video that isn't animated and doesn't introduce a series and it doesn't turn out exactly like an anime OP. - -Make your cool thing and have a fun graduation! Good luck!";False;False;;;;1610385464;;False;{};giwirtg;False;t3_kv0ga7;False;True;t3_kv0ga7;/r/anime/comments/kv0ga7/what_makes_an_anime_opening_specifically_anime/giwirtg/;1610436163;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AceOfSerberit;;;[];;;;text;t2_1jfw6dhg;False;False;[];;Huge gratz man! I'm still not at a level where I can fully follow along without subs;False;False;;;;1610385540;;False;{};giwiz2s;False;t3_kv06fx;False;True;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giwiz2s/;1610436271;2;True;False;anime;t5_2qh22;;0;[]; -[];;;voornaam1;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://www.anime-planet.com/users/Max4444;dark;text;t2_3yiwp1ue;False;False;[];;Sailing the seven seas because I live in the Netherlands and we don't have a lot of legal anime here.;False;False;;;;1610386440;;False;{};giwl8mp;False;t3_kv2ral;False;True;t3_kv2ral;/r/anime/comments/kv2ral/question_to_you_all/giwl8mp/;1610437523;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YoCodingJosh;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/CodingJosh;light;text;t2_4oan1u9a;False;True;[];;hell yeah, I see you're a person of culture as well.;False;False;;;;1610386560;;False;{};giwli23;False;t3_kv06fx;False;False;t1_givc2tv;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giwli23/;1610437665;5;True;False;anime;t5_2qh22;;0;[]; -[];;;A-random-person_;;;[];;;;text;t2_70r8yljp;False;False;[];;I ALSO LIVE IN HOLLAND 🇳🇱 and i watch watch tru legal crunchyroll so yeah;False;False;;;;1610386813;;False;{};giwm2gb;True;t3_kv2ral;False;True;t1_giwl8mp;/r/anime/comments/kv2ral/question_to_you_all/giwm2gb/;1610438014;2;True;False;anime;t5_2qh22;;0;[]; -[];;;voornaam1;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://www.anime-planet.com/users/Max4444;dark;text;t2_3yiwp1ue;False;False;[];;Crunchyroll doesn't have a lo here though, and you need premium to watch shows like my hero academia and attack on titan;False;False;;;;1610387189;;False;{};giwmwe3;False;t3_kv2ral;False;True;t1_giwm2gb;/r/anime/comments/kv2ral/question_to_you_all/giwmwe3/;1610438488;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gangsir;;;[];;;;text;t2_d3kjd;False;True;[];;"You can also understand stuff like jokes and puns a lot better. Japanese puns are often really big brained/complex (eg using the specific way a word is pronounced or the way a kanji appears) and thus the poor subtitle makers have to do their best to ""downscale"" the pun to fit into english/work with english.";False;False;;;;1610387699;;False;{};giwo1ml;False;t3_kv06fx;False;True;t1_givds5p;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giwo1ml/;1610439126;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610387703;;False;{};giwo1zx;False;t3_kv06fx;False;True;t1_giv9jkk;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giwo1zx/;1610439131;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeta42;;;[];;;;text;t2_bjdm4;False;False;[];;That's impossible! No one can defeat Dekinai-chan!;False;False;;;;1610388222;;False;{};giwp7xe;False;t3_kv06fx;False;True;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giwp7xe/;1610439749;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptainDangerboat;;;[];;;;text;t2_3uqvsmgx;False;False;[];;Yeah I feel like the discussion threads just became waifu wars and shitting on the MC for Olympic level simping. It’s why I stopped bothering.;False;False;;;;1610388940;;False;{};giwqt7k;False;t3_kv3521;False;False;t1_giwpzf6;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwqt7k/;1610440594;67;True;False;anime;t5_2qh22;;0;[]; -[];;;LonelyDegenerateWeeb;;;[];;;;text;t2_7px87bt4;False;False;[];;Like 2020;False;False;;;;1610388954;;False;{};giwquai;False;t3_kv3521;False;False;t1_giwjn3z;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwquai/;1610440609;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Goatlikejordan;;;[];;;;text;t2_1pfchixt;False;True;[];;Jjk should be 1;False;False;;;;1610388955;;False;{};giwque4;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwque4/;1610440610;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;LonelyDegenerateWeeb;;;[];;;;text;t2_7px87bt4;False;False;[];;Yeah same lol;False;False;;;;1610388973;;False;{};giwqvuc;False;t3_kv3521;False;False;t1_giw681f;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwqvuc/;1610440631;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;"15 is very less actually, and I don't want to diss you at all, everyone has their own opinions, that's how humans work, sorry if it seemed like I was dissing you, I was just discussing why you are getting downvoted and why I thought your list was interesting. - -(imo steins;gate is better than ReZero :))";False;False;;;;1610389009;;False;{};giwqyq3;False;t3_kv3521;False;True;t1_giwql4r;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwqyq3/;1610440674;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Makimasfeet;;;[];;;;text;t2_95imk08u;False;False;[];;">SAO and RAG in top 10 - - -Breathe in the salt, breathe out the salt...";False;False;;;;1610389057;;False;{};giwr2jd;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwr2jd/;1610440731;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Makimasfeet;;;[];;;;text;t2_95imk08u;False;False;[];;It almost was but them the last arc happened;False;False;;;;1610389095;;False;{};giwr5lj;False;t3_kv3521;False;True;t1_givv3bm;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwr5lj/;1610440776;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TDS_Reaper;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ramenn/;light;text;t2_2qks3axi;False;False;[];;Yea I'm going to try to watch more anime this year, I'm already watching 10 airing this season at the moment so hopefully, I can make a fairer list next year.;False;False;;;;1610389135;;False;{};giwr8t7;False;t3_kv3521;False;True;t1_giwqyq3;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwr8t7/;1610440823;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;Great! I'm proud of you, this is character development right here bois;False;False;;;;1610389184;;False;{};giwrcq8;False;t3_kv3521;False;True;t1_giwr8t7;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwrcq8/;1610440879;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Makimasfeet;;;[];;;;text;t2_95imk08u;False;False;[];;This. I can't believe this shit;False;False;;;;1610389193;;False;{};giwrdek;False;t3_kv3521;False;True;t1_givrhlj;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwrdek/;1610440890;2;True;False;anime;t5_2qh22;;0;[]; -[];;;crism22;;;[];;;;text;t2_3jsaewqr;False;False;[];;So sad about eizouken;False;False;;;;1610389310;;False;{};giwrmoc;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwrmoc/;1610441030;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TDS_Reaper;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ramenn/;light;text;t2_2qks3axi;False;False;[];;If you don't mind could you share your anime list if you have one on like MAL, anilist or one of those sites? I'm just curious about your favorite animes.;False;False;;;;1610389322;;False;{};giwrnnu;False;t3_kv3521;False;True;t1_giwrcq8;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwrnnu/;1610441046;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrPakoras;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/MrPakoras?status=7;light;text;t2_1y4p13vi;False;False;[];;{Dorohedoro} is so good!;False;False;;;;1610389339;;False;{};giwroz2;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwroz2/;1610441066;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Theasiankid2;;;[];;;;text;t2_6l7pkokx;False;False;[];;Decadence needed to be on this list;False;False;;;;1610389459;;False;{};giwryiv;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwryiv/;1610441209;0;True;False;anime;t5_2qh22;;0;[]; -[];;;clique34;;;[];;;;text;t2_1nquzdj;False;False;[];;Does JJK get no love cos it’s still running? Either way I’m pleased to love is war s2 at the top and RAG in the top 10;False;False;;;;1610389522;;False;{};giws3mo;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giws3mo/;1610441296;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Several_Performance3;;;[];;;;text;t2_8jtgafgw;False;False;[];;Y’all horny nibbqs rent a girlfriend understandable but eww;False;False;;;;1610389526;;False;{};giws3zt;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giws3zt/;1610441301;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Hephaestus_God;;;[];;;;text;t2_wp7nx;False;False;[];;"Glad ID:INVADED is up so high. - -However how is that possible? When it was airing it was at the bottom of the season rankings and nobody even talked about it.";False;False;;;;1610389549;;1610414462.0;{};giws5vd;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giws5vd/;1610441331;17;True;False;anime;t5_2qh22;;0;[]; -[];;;throwitaway488;;;[];;;;text;t2_5dmbu;False;False;[];;highschool had great music and that was about it;False;False;;;;1610389568;;False;{};giws7ev;False;t3_kv3521;False;False;t1_giwhngk;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giws7ev/;1610441353;5;True;False;anime;t5_2qh22;;0;[]; -[];;;LetPerfect;;;[];;;;text;t2_78sajsfs;False;False;[];;In terms of gag fantasy I found Bofuri significantly better than Misfit.;False;False;;;;1610389575;;False;{};giws810;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giws810/;1610441362;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sujallamichhaneakasl;;;[];;;;text;t2_3i2s1kbj;False;False;[];;Kakushigoto being second gives me fuzzy feelings......feels like it's been an eternity since I watched it but still brings a smile to my face.;False;False;;;;1610389601;;False;{};giwsa7n;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwsa7n/;1610441395;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hephaestus_God;;;[];;;;text;t2_wp7nx;False;False;[];;"I heard SAO this season was probably up there for one of the best they made even though I never saw it. - -It also has a higher fan base so more people most likely saw it. No need to knock on it because it’s SAO";False;False;;;;1610389606;;1610412085.0;{};giwsalm;False;t3_kv3521;False;False;t1_givzv0k;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwsalm/;1610441401;30;True;False;anime;t5_2qh22;;0;[]; -[];;;thebigKM;;;[];;;;text;t2_yiqje;False;False;[];;I put it at the bottom of my list under shows I dropped because at least those shows didn't piss me off;False;False;;;;1610389614;;False;{};giwsb9i;False;t3_kv3521;False;False;t1_givscbn;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwsb9i/;1610441410;9;True;False;anime;t5_2qh22;;0;[]; -[];;;k4r6000;;;[];;;;text;t2_3q0qar7q;False;False;[];;HiDive has the uncensored version.;False;False;;;;1610389626;;False;{};giwsc69;False;t3_kv0xz9;False;True;t1_givwg6p;/r/anime/comments/kv0xz9/best_fan_service_anime/giwsc69/;1610441424;1;True;False;anime;t5_2qh22;;0;[]; -[];;;throwitaway488;;;[];;;;text;t2_5dmbu;False;False;[];;And a lot of people probably don't have Netflix. I only really see whats on crunchyroll unless I go out of my way to pirate something.;False;False;;;;1610389630;;False;{};giwscka;False;t3_kv3521;False;True;t1_giw9o13;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwscka/;1610441430;1;True;False;anime;t5_2qh22;;0;[]; -[];;;throwitaway488;;;[];;;;text;t2_5dmbu;False;False;[];;Akudama drive is a lot like Danganronpa (same studio). Really flashy and fun but not a lot to it underneath. If you watch it like a summer blockbuster its fun.;False;False;;;;1610389724;;False;{};giwsk7m;False;t3_kv3521;False;True;t1_giwf3no;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwsk7m/;1610441548;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Geoffk123;;;[];;;;text;t2_ifkkz;False;False;[];;"as a mod for the subreddit, the amount of ""fuck mami"" posts I remove is ridiculous";False;False;;;;1610389785;;False;{};giwsp16;False;t3_kv3521;False;False;t1_giwpzf6;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwsp16/;1610441621;65;True;False;anime;t5_2qh22;;0;[]; -[];;;HauntedHatBoi;;;[];;;;text;t2_b2uku87;False;False;[];;I didn't expect Akudama Drive to be on there. I'm happy it is though! It's so underrated!;False;False;;;;1610389796;;False;{};giwspxy;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwspxy/;1610441634;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cancertoad;;;[];;;;text;t2_37fwxi3g;False;False;[];;I have never heard of Kakushigoto until now.;False;False;;;;1610389874;;False;{};giwsw8b;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwsw8b/;1610441733;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IXajll;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ixajii;light;text;t2_ob6j8;False;False;[];;I agree that rating anime is mostly subjective but let's be real you can judge an anime objectively at least to some degree. I mean I dare to say that shit like Ex-Arm and Gibiate are objectively worse than all the shows from this list and I doubt anyone would argue with this statement.;False;False;;;;1610389889;;False;{};giwsxdf;False;t3_kv3521;False;False;t1_giwlvrn;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwsxdf/;1610441750;4;True;False;anime;t5_2qh22;;0;[]; -[];;;huntrshado;;;[];;;;text;t2_404y4;False;False;[];;Yeah its just one of those shows that I enjoyed watching with friends and talking about, but never really cared to go into a Reddit thread and discuss lol im sure many feel the same as us;False;False;;;;1610389945;;False;{};giwt1xe;False;t3_kv3521;False;False;t1_giwqt7k;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwt1xe/;1610441819;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Lemillion23;;;[];;;;text;t2_5hh2khnw;False;False;[];;Tfw RAG is higher than JJK...;False;False;;;;1610389990;;False;{};giwt5h8;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwt5h8/;1610441875;10;True;False;anime;t5_2qh22;;0;[]; -[];;;NearWinner;;;[];;;;text;t2_68jzmig0;False;False;[];;"I'm happy for some anime (particularly, see Kuguya-sama: love is war? in first position, and Hanako-kun in the top 4), but I'm sorry, there are two things I can't understand: - -Demon king academy - 8th: Well, this anime was only fun in its first episodes. The rest was depressing. The MC is horrible, bad history and boring fights. This anime does not deserve to be in the top 10. Think about it, is this better than Tower of God, Jujutsu Kaisen, Danmachi, Great Pretender....? You must be joking. - -Jujutsu Kaisen - 20th: If you travel to Jupiter and there is life, they will know this anime. I have seen polls of 20,000 votes where JJK gets over 50% of the votes, yes, over half of the votes for a single anime. Even if you look at this top10, it could be called ""top 10 most popular anime"", so why isn't JJK in this top10? - -I was also surprised to see Tower of God out of the top10, and expected to see Moriarty (25th) a little higher. By the way, The god of high school, ranked 43rd, 0.35% of the votes, a hard blow for a very popular but underrated anime. - -After these cries, I just have to say that I respect all the votes and the tastes of each person, but I couldn't stop commenting. This is in no way a criticism of AnimeCorner, I am very grateful for their work and dedication to anime.";False;False;;;;1610390236;;False;{};giwtowt;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwtowt/;1610442163;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Ali-alhadadi;;;[];;;;text;t2_32w2c3zm;False;False;[];;Just alicization, the novel entered its last arc (supposedly) and there's more animations to come by A-1 in the future like Sao:progressive;False;False;;;;1610390299;;False;{};giwttty;False;t3_kv3521;False;True;t1_giwlqbc;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwttty/;1610442236;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MaksimShadow;;;[];;;;text;t2_h92eaka;False;False;[];;Well, I can put it on the first place. I absolutely loved daughter-dad interactions. There were lots of funny and sad moments, voice acting was great and art style was cute. I also liked the opening. I haven't seen Eizouken and I dropped Kaguya, so I can't compare it to them, but I've seen Re:Zero and Oregairu and I still can place Kakushigoto above them.;False;False;;;;1610390350;;False;{};giwtxw0;False;t3_kv3521;False;False;t1_giwct9q;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwtxw0/;1610442296;6;True;False;anime;t5_2qh22;;0;[]; -[];;;cbumpa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cbumpa;light;text;t2_4uaglc4u;False;False;[];;Is Higurashi slept on or is that just me...;False;False;;;;1610390389;;False;{};giwu0ze;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwu0ze/;1610442340;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610390482;;False;{};giwu8kt;False;t3_kv3521;False;True;t1_giwg4at;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwu8kt/;1610442448;1;True;False;anime;t5_2qh22;;0;[]; -[];;;k2_hancock;;;[];;;;text;t2_4kaiaqo0;False;False;[];;I'm honestly surprised to see Kakushigoto and Re:Invaded on the list, and beating out SNAFU even. I enjoyed all 3, but it seemed like SNAFU was so hyped.;False;False;;;;1610390547;;False;{};giwudtg;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwudtg/;1610442524;2;True;False;anime;t5_2qh22;;0;[]; -[];;;brub777;;;[];;;;text;t2_4qnhbfca;False;False;[];;how tf did kakushigoto place #2;False;False;;;;1610390605;;False;{};giwuief;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwuief/;1610442592;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KaskayVoyager;;;[];;;;text;t2_4chuawbw;False;False;[];;I haven't watched any of those, besides Sword Art Online.;False;False;;;;1610390869;;False;{};giwv3sq;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwv3sq/;1610442904;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kollin_m;;;[];;;;text;t2_4dkowd3c;False;False;[];;"Fuck RAG. Wasted hours reading the manga, waiting for some kind of development; but it's basically Blue Spring Ride with 100 times more blue balls.";False;False;;;;1610390930;;False;{};giwv8q4;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwv8q4/;1610442974;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Eboglaz;;;[];;;;text;t2_2kahaqr2;False;False;[];;Dissing bec of different opinion is weird. Personally, i only dis when someone is clearly hating.;False;False;;;;1610391180;;False;{};giwvsx3;False;t3_kv3521;False;True;t1_giwql4r;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwvsx3/;1610443269;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TDS_Reaper;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ramenn/;light;text;t2_2qks3axi;False;False;[];;True but you still see it happen a lot on this subreddit because certain people love to dick-ride certain anime and they won't accept it if someone disagrees with them;False;False;;;;1610391338;;False;{};giww5o9;False;t3_kv3521;False;True;t1_giwvsx3;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giww5o9/;1610443454;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Eragonnogare;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/Eragon/;light;text;t2_cs0a4f;False;False;[];;Jjk not being here is a crime;False;False;;;;1610391351;;False;{};giww6om;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giww6om/;1610443469;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Gobson101;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/;light;text;t2_g8gepkn;False;False;[];;No Eizouken????;False;False;;;;1610391370;;False;{};giww84d;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giww84d/;1610443490;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610391399;;False;{};giwwae4;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwwae4/;1610443523;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shelra;;;[];;;;text;t2_1mpf6shp;False;False;[];;Fuck sao;False;False;;;;1610391425;;False;{};giwwcjg;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwwcjg/;1610443555;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Cold_Saber;;;[];;;;text;t2_3oclhqjh;False;False;[];;I saw another comment saying it got 11th place, so it barely missed the top 10.;False;False;;;;1610391426;;False;{};giwwckv;False;t3_kv3521;False;False;t1_givxa2w;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwwckv/;1610443555;38;True;False;anime;t5_2qh22;;0;[]; -[];;;oops_i_made_a_typi;;;[];;;;text;t2_9ywbq;False;False;[];;*for a top 10*, yeah that's honestly kinda mediocre;False;False;;;;1610391606;;False;{};giwwr7w;False;t3_kv3521;False;True;t1_giw6m8x;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwwr7w/;1610443765;1;True;False;anime;t5_2qh22;;0;[]; -[];;;oops_i_made_a_typi;;;[];;;;text;t2_9ywbq;False;False;[];;this was a poll for 'best anime of 2020' so even if people liked it, if they didn't think it was absolute best then it's not going to do well. I thought it was kinda mediocre, probably deserving of top 15 imo but definitely wouldn't have voted for it as 1st.;False;False;;;;1610391708;;False;{};giwwzab;False;t3_kv3521;False;False;t1_givzoa1;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwwzab/;1610443882;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Silphiun;;;[];;;;text;t2_87tw9bh7;False;False;[];;Netflix jail;False;False;;;;1610391913;;False;{};giwxfga;False;t3_kv3521;False;False;t1_givxa2w;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwxfga/;1610444128;16;True;False;anime;t5_2qh22;;0;[]; -[];;;GioWindsor;;;[];;;;text;t2_4wr1yegn;False;False;[];;When does re zero end? So i can binge watch it;False;False;;;;1610391934;;False;{};giwxh5g;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwxh5g/;1610444152;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Eboglaz;;;[];;;;text;t2_2kahaqr2;False;False;[];;Shame to see such people. Even more embarrassing is when they are being toxic trying to defend the anime you liked.;False;False;;;;1610392007;;False;{};giwxmwl;False;t3_kv3521;False;False;t1_giww5o9;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwxmwl/;1610444234;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ben99ny22;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ben99ny;light;text;t2_14rmpidg;False;False;[];;k-on;False;False;;;;1610392057;;False;{};giwxquq;False;t3_kv0xz9;False;True;t3_kv0xz9;/r/anime/comments/kv0xz9/best_fan_service_anime/giwxquq/;1610444292;0;True;False;anime;t5_2qh22;;0;[]; -[];;;gyeoboo;;;[];;;;text;t2_3zexw3lt;False;False;[];;Kakushigoto with a considerably close rating for number 1. Surprising, but a welcome one! :D;False;False;;;;1610392097;;False;{};giwxu16;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwxu16/;1610444339;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hurican9ja;;;[];;;;text;t2_203j2uwj;False;False;[];;This list is sooo bad that I don't want to spend more time explaining why it is so bad.;False;False;;;;1610392150;;False;{};giwxy8t;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwxy8t/;1610444402;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Acturio;;MAL;[];;http://myanimelist.net/animelist/Acturio01;dark;text;t2_c1azh;False;False;[];;it had great fights as well;False;False;;;;1610392208;;False;{};giwy2qo;False;t3_kv3521;False;False;t1_giws7ev;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwy2qo/;1610444467;20;True;False;anime;t5_2qh22;;0;[]; -[];;;ShinaMashir0;;;[];;;;text;t2_rhsd8;False;False;[];;Ofc there is objectivity , we talk about story, a complex plot with an insane story telling is better than a story that make no sens from start to finish? i really don't understand this argument;False;False;;;;1610392351;;False;{};giwye99;False;t3_kv3521;False;True;t1_giwlvrn;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwye99/;1610444636;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Acturio;;MAL;[];;http://myanimelist.net/animelist/Acturio01;dark;text;t2_c1azh;False;False;[];;tbh it might be a matter of not being finished yet, we still have the second cour which is this season if im not mistaken;False;False;;;;1610392439;;False;{};giwyl7w;False;t3_kv3521;False;True;t1_givzfr6;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwyl7w/;1610444734;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];;I envy you, can't even remember hiragana and katakana how do you remember kanji;False;False;;;;1610392560;;False;{};giwyuup;False;t3_kv06fx;False;True;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giwyuup/;1610444873;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TDS_Reaper;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ramenn/;light;text;t2_2qks3axi;False;False;[];;Ikr, It's so weird sometimes because once I said that I liked the first season better than the second season of an anime and I stated why, but then this dude started going off at me and wouldn't stop until I called said anime a masterpiece (even though it wasn't one);False;False;;;;1610392568;;False;{};giwyvjq;False;t3_kv3521;False;True;t1_giwxmwl;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwyvjq/;1610444882;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cojoB_;;;[];;;;text;t2_27b35u6d;False;False;[];;Oregairu is some king shit;False;False;;;;1610392633;;False;{};giwz0p7;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwz0p7/;1610444957;0;True;False;anime;t5_2qh22;;0;[]; -[];;;UserTBD;;;[];;;;text;t2_3il0wpli;False;False;[];;wow... Kakushigoto being 2nd is a very pleasant shock from me.;False;False;;;;1610392657;;False;{};giwz2iw;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwz2iw/;1610444983;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AdamGoodtime123;;;[];;;;text;t2_3okyaqk1;False;False;[];;Nice to see ID: Invaded get some love, but the lack of Dorohedoro, Pet, and Adachi to Shimamura troubles me.;False;False;;;;1610392704;;False;{};giwz6f3;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwz6f3/;1610445039;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Valkonn;;;[];;;;text;t2_dx7hj;False;False;[];;RAG is the only show I've dropped without finishing the first episode. Too much cringe.;False;False;;;;1610392796;;False;{};giwzdv4;False;t3_kv3521;False;False;t1_giwsb9i;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwzdv4/;1610445146;23;True;False;anime;t5_2qh22;;0;[]; -[];;;dastrykerblade;;;[];;;;text;t2_if3ui;False;False;[];;"How do we measure what insane storytelling is? Whatever your answer to that is may be wildly different from someone else's, and that's bc it's opinionated and there is no factual answer. If you think one story is complex and another doesn't make sense, what's to say I don't think the opposite? A complex story can be convoluted, or a simple story could be executed in a far better way than a complex one depending on a bunch of other factors that hit different people in different ways. - -Having an opinion in this sense pretty much destroys any sense of objectivity. Objectivity is dealt with provable facts. Opinions aren't and at the end of the day it's just individual taste that dictates what you and I think is 'insane' or doesn't make sense.";False;False;;;;1610392859;;False;{};giwzj1d;False;t3_kv3521;False;True;t1_giwye99;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwzj1d/;1610445221;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thebigKM;;;[];;;;text;t2_yiqje;False;False;[];;Your judgement was tuned faster than mine was;False;False;;;;1610392889;;False;{};giwzlhv;False;t3_kv3521;False;True;t1_giwzdv4;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwzlhv/;1610445256;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;Still way too low!;False;False;;;;1610392896;;False;{};giwzm2s;False;t3_kv3521;False;False;t1_giwwckv;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwzm2s/;1610445265;21;True;False;anime;t5_2qh22;;0;[]; -[];;;shutupplssss;;;[];;;;text;t2_9aloki7e;False;False;[];;I dont know all of them ive never even heard of them;False;False;;;;1610392939;;False;{};giwzpin;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwzpin/;1610445313;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AdamGoodtime123;;;[];;;;text;t2_3okyaqk1;False;False;[];;"Whilst I agree it's probably the most important qualification, I do think there is room for qualities such as being well made, or having a thought-provoking nature. - -For instance, I find American Psycho to be a great book in spite of not particularly enjoying reading it, simply because it is a well written piece of satire. Similarly, I frequently bump up my personal rating of a show/movie/etc if it is well made (e.g., script, editing, camera work, etc.).";False;False;;;;1610393017;;False;{};giwzvrz;False;t3_kv3521;False;False;t1_giwjuxp;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwzvrz/;1610445409;23;True;False;anime;t5_2qh22;;0;[]; -[];;;undeadban15;;;[];;;;text;t2_8kmnun85;False;False;[];;Is the bottom one worth cause I started it but stopped;False;False;;;;1610393028;;False;{};giwzwnh;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giwzwnh/;1610445422;1;True;False;anime;t5_2qh22;;0;[]; -[];;;burner_TA;;;[];;;;text;t2_503dim1p;False;False;[];;I mean anyone can watch without subs, they just won't understand it;False;False;;;;1610393043;;False;{};giwzxw8;False;t3_kv06fx;False;True;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giwzxw8/;1610445442;1;True;False;anime;t5_2qh22;;0;[]; -[];;;starboigg;;;[];;;;text;t2_2k0n27bs;False;True;[];;last year I have only watched kagayu-sama anime;False;False;;;;1610393131;;False;{};gix0521;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix0521/;1610445551;1;True;False;anime;t5_2qh22;;0;[]; -[];;;prgotothestore2006;;;[];;;;text;t2_2ksqj8pn;False;False;[];;Misfit of Demon Academy is 8th?? xDD;False;False;;;;1610393269;;False;{};gix0g7s;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix0g7s/;1610445722;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bubbly_Worldliness_7;;;[];;;;text;t2_82ixw5xk;False;False;[];;The Manga is less cringe, but yet again this story is about a dumbass 20 year old accidentally caught in a life of lies. So cringe is inevitable;False;False;;;;1610393308;;False;{};gix0jdj;False;t3_kv3521;False;False;t1_giwzdv4;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix0jdj/;1610445769;28;True;False;anime;t5_2qh22;;0;[]; -[];;;Angelo_srz;;;[];;;;text;t2_5jbacv85;False;False;[];;WOOOOOOO SAO WOOOOOOOOOOOOOOO!!!!!!!!;False;False;;;;1610393397;;False;{};gix0qjq;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix0qjq/;1610445874;1;True;False;anime;t5_2qh22;;0;[]; -[];;;themab123;;;[];;;;text;t2_301fqe2;False;False;[];;Goes on to show what a shit year for anime it has been;False;False;;;;1610393772;;False;{};gix1klz;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix1klz/;1610446311;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HydraTower;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_pbpmb;False;False;[];;Never saw people talking about Kakushigoto? Is it actually popular?;False;False;;;;1610393859;;False;{};gix1rkt;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix1rkt/;1610446414;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ArekushisuX0;;;[];;;;text;t2_83a85j9p;False;False;[];;Definitely a lot of waifus came out this last year;False;False;;;;1610393929;;False;{};gix1x0u;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix1x0u/;1610446494;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Food-is-Good-no-capp;;;[];;;;text;t2_54hjlhkh;False;False;[];;i am enjoying SAO right now!;False;False;;;;1610393976;;False;{};gix20oa;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix20oa/;1610446548;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Camjd10;;MAL;[];;http://myanimelist.net/profile/Camjd10;dark;text;t2_70gj4;False;False;[];;This is the most reddit list I've ever seen.;False;False;;;;1610393988;;False;{};gix21nf;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix21nf/;1610446563;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chi-sama;;;[];;;;text;t2_12h09p;False;False;[];;"I would say it's high quality. A lot of people genuinely got invested in Chizuru x Kazuya, and one of the main points of a romcom is how much one cares about the main couple. Too many people confuse a character being unlikable with a character being badly written, and I find a lot of hate on Kanokari comes from people trying to justify watching something ""low-brow"".";False;False;;;;1610393990;;False;{};gix21sp;False;t3_kv3521;False;True;t1_giwj4ff;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix21sp/;1610446565;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SunnySanity;;;[];;;;text;t2_8cg29;False;False;[];;For me, it's like going to an amusement park vs attending a funeral. I'd much rather go to an amusement park, but the funeral I'll be thinking about for months. It's more personally meaningful to me.;False;False;;;;1610394069;;False;{};gix282s;False;t3_kv3521;False;False;t1_giwjuxp;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix282s/;1610446658;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MinniMaster15;;;[];;;;text;t2_3clxp71j;False;False;[];;Eyyy Akudama in the top 5! Well deserved. My personal anime of the year, even as a huge fan of Kaguya.;False;False;;;;1610394115;;False;{};gix2bt4;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix2bt4/;1610446712;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NewCountry13;;;[];;;;text;t2_120nmb;False;False;[];;"Not all entertainment is created equal. Not all art is entertaining. An extreme example, Schindler's List isn't very entertaining but it's still good. - -Art isn't only meant to be entertaining. It can be, and often is, meant to be entertaining but it can also supposed to be thought provoking, engaging. - -If the only metric for quality was personal enjoyment, no one would be able to discuss anything. - -You can say a fluff series is good. But you can't say it should be called quality if it's not. Quality is also a subjective thing but it's less subjective than enjoyment because you can discuss the merit of character development, themes, etc.";False;False;;;;1610394168;;False;{};gix2fwq;False;t3_kv3521;False;False;t1_giwjuxp;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix2fwq/;1610446771;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Poli-tic-my-balls;;;[];;;;text;t2_848xql0p;False;False;[];;Dorohedoro super underrated IMO. I think Jujutsu Kaiden got hurt because it didn’t wrap up in 2020 so the ending is unknown. Don’t want to rate it a 10/10 and the last 8 episodes shit the bed hard;False;False;;;;1610394204;;False;{};gix2ir9;False;t3_kv3521;False;False;t1_givzv0k;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix2ir9/;1610446812;24;True;False;anime;t5_2qh22;;0;[]; -[];;;PoisnBGood;;;[];;;;text;t2_37h64;False;False;[];;I am about 4 and a half episodes into Toilet Bound. Does it get much better to be ranked so highly? Or am I just not getting the charm?;False;False;;;;1610394350;;False;{};gix2udz;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix2udz/;1610446988;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ShinaMashir0;;;[];;;;text;t2_rhsd8;False;False;[];;"Story with plot hole don't make sens tho? So i still don't understand your argument, if you want y we can't compare 2 good story blablabla, but we sure can compare a bad and a good one. - -&#x200B; - -Ok i will write a story ""i eat shit"" - -end of the story, and you can't say it's better or worse than Harry Potter, yup definitely make sens";False;False;;;;1610394386;;1610394711.0;{};gix2x8m;False;t3_kv3521;False;True;t1_giwzj1d;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix2x8m/;1610447031;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;xIntu0s;;;[];;;;text;t2_24788dv7;False;False;[];;wow i’m surprised that misfit was on here. glad to see it though that was a fun watch;False;False;;;;1610394505;;False;{};gix36mg;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix36mg/;1610447172;1;True;False;anime;t5_2qh22;;0;[]; -[];;;candry_shop;;;[];;;;text;t2_okqmq;False;False;[];;The best way to know is to watch it. I thought it was a fun anime . The MC is basically a mostly good meaning dude who fucks up a lot so all his errors can be frustrating or cringy sometimes;False;False;;;;1610394567;;False;{};gix3bob;False;t3_kv3521;False;False;t1_giw9o7w;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix3bob/;1610447248;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hardh_guy;;;[];;;;text;t2_io80fbj;False;False;[];;Its not that accurate their is no way rezero would be 3rd;False;False;;;;1610394627;;False;{};gix3ge3;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix3ge3/;1610447318;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kirito11400;;;[];;;;text;t2_14e2rl4;False;False;[];;SAO is up there repping!;False;False;;;;1610394667;;False;{};gix3jjh;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix3jjh/;1610447363;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KayabaSynthesis;;;[];;;;text;t2_3e7s6wiq;False;False;[];;So glad to see ma boy Hanako-kun at 4th place. I feel like no one talked about it and it was basically forgotten after it stopped airing, which is weird since I loved it so much.;False;False;;;;1610394817;;False;{};gix3vfr;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix3vfr/;1610447544;2;True;False;anime;t5_2qh22;;0;[]; -[];;;No_eies;;;[];;;;text;t2_6ymx0uxs;False;False;[];;Why is hanako kun so up on the list lol that show barely had any animation;False;False;;;;1610394821;;False;{};gix3vrp;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix3vrp/;1610447550;0;True;False;anime;t5_2qh22;;0;[]; -[];;;candry_shop;;;[];;;;text;t2_okqmq;False;False;[];;"To me RAG was just funnier and more ""easy"" to follow than Oregairu.";False;False;;;;1610394823;;False;{};gix3vwq;False;t3_kv3521;False;True;t1_givtpxc;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix3vwq/;1610447552;3;True;False;anime;t5_2qh22;;0;[]; -[];;;luvidex;;;[];;;;text;t2_62y2acgz;False;False;[];;We're the Frick is season 3 of railgun???;False;False;;;;1610394842;;False;{};gix3xil;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix3xil/;1610447577;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cypher_lol;;;[];;;;text;t2_8x49icyq;False;False;[];;im happy oregariu and rent a girlfriend made it;False;False;;;;1610394866;;False;{};gix3zek;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix3zek/;1610447606;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fredmander0;;;[];;;;text;t2_153uaq;False;False;[];;We need RCV everywhere!;False;False;;;;1610394896;;False;{};gix41sq;False;t3_kv3521;False;False;t1_givt5h0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix41sq/;1610447642;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DRIESASTER;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Huybensdries;light;text;t2_14rchx;False;False;[];;They did oregairu dirty lol;False;False;;;;1610394994;;False;{};gix49qu;False;t3_kv3521;False;False;t1_givtkkv;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix49qu/;1610447761;338;True;False;anime;t5_2qh22;;0;[]; -[];;;nickster182;;;[];;;;text;t2_ei2bc;False;False;[];;Congrats! I remeber watching a german dub for something without subs for the first time and only got about half of what they said but understood well enough to follow the plot and watch the next episode. Very proud moment. Keep at it man. Like everything it's a skill to keep sharp.;False;False;;;;1610395036;;False;{};gix4d42;False;t3_kv06fx;False;False;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gix4d42/;1610447811;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KayabaSynthesis;;;[];;;;text;t2_3e7s6wiq;False;False;[];;It's really fun when it's about fun, and really emotional when it gets serious. I wouldn't call it childlish, it's just this type of comedy done via cute artstyle and character quirks. And characters are the strong part of it, I love pretty much every one of them.;False;False;;;;1610395109;;False;{};gix4ive;False;t3_kv3521;False;True;t1_giw7sq4;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix4ive/;1610447902;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yarzu89;;;[];;;;text;t2_1ub1u1d6;False;False;[];;Happy to see Misfit on here, that show was a lot of fun.;False;False;;;;1610395171;;False;{};gix4nqe;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix4nqe/;1610447978;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chickenfoot4less;;;[];;;;text;t2_13cms4;False;False;[];;Akudama drive= overrated;False;False;;;;1610395215;;False;{};gix4ras;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix4ras/;1610448031;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pokemonisok;;;[];;;;text;t2_3il7nffd;False;False;[];;Jujutsu kaisen should be number 1;False;False;;;;1610395249;;False;{};gix4tzj;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix4tzj/;1610448070;0;True;False;anime;t5_2qh22;;0;[]; -[];;;NALittleFox;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Aruria;light;text;t2_za2um;False;False;[];;not having great pretender on a top of 2020 list is legitimately trolling;False;False;;;;1610395264;;False;{};gix4v3t;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix4v3t/;1610448088;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KayabaSynthesis;;;[];;;;text;t2_3e7s6wiq;False;False;[];;Finally found a fellow Hanako-kun enjoyer;False;False;;;;1610395300;;False;{};gix4xw8;False;t3_kv3521;False;False;t1_giw1iiz;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix4xw8/;1610448131;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Legendseekersiege5;;;[];;;;text;t2_5nio4gd;False;False;[];;I really don't get the appeal of that show though;False;True;;comment score below threshold;;1610395351;;False;{};gix51vw;False;t3_kv3521;False;False;t1_giw5mbv;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix51vw/;1610448194;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;LeoGiacometti;;;[];;;;text;t2_13n8qv;False;False;[];;I liked the show but hated the mc;False;False;;;;1610395424;;False;{};gix57ih;False;t3_kv3521;False;True;t1_givzoa1;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix57ih/;1610448279;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KayabaSynthesis;;;[];;;;text;t2_3e7s6wiq;False;False;[];;"All that's left are the SAO Prgressive movie -(or movies, since there's a lot to cover) and two arcs in the light novel. One of them is shot and would make a fine OVA, and the other one is still going in the LN, but it's confirmed to be the last one.";False;False;;;;1610395462;;False;{};gix5agr;False;t3_kv3521;False;False;t1_giwlqbc;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix5agr/;1610448325;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Richard-Long;;;[];;;;text;t2_13phln;False;False;[];;I swear I can almost see the similarities. Glad this isnt a real popularity ranking;False;False;;;;1610395493;;1610395756.0;{};gix5cuy;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix5cuy/;1610448361;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeoGiacometti;;;[];;;;text;t2_13n8qv;False;False;[];;snafu is the perfect example of why I think most light novel writers are pretentious as fuck;False;False;;;;1610395561;;False;{};gix5i7f;False;t3_kv3521;False;False;t1_givuh7i;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix5i7f/;1610448441;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Sp1dre;;;[];;;;text;t2_2s57p9ji;False;False;[];;When furuba s2 isn't even in the list. Sigh at lease kakushigoto is there not all hope is lost.;False;False;;;;1610395567;;False;{};gix5iom;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix5iom/;1610448447;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Richard-Long;;;[];;;;text;t2_13phln;False;False;[];;I mean this is just a small popularity list in the website this isnt a definite ranking;False;False;;;;1610395604;;False;{};gix5ljr;False;t3_kv3521;False;True;t1_givs2dy;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix5ljr/;1610448492;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Richard-Long;;;[];;;;text;t2_13phln;False;False;[];;And even still this is just one website so take this ranking with a grain;False;False;;;;1610395679;;False;{};gix5rb9;False;t3_kv3521;False;True;t1_giw1vhn;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix5rb9/;1610448579;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sneakysnake128;;;[];;;;text;t2_4lc98;False;False;[];;Basically the problem with US elections and not having preferential voting;False;False;;;;1610395750;;False;{};gix5wwe;False;t3_kv3521;False;False;t1_givt5h0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix5wwe/;1610448661;4;True;False;anime;t5_2qh22;;0;[]; -[];;;sp0j;;;[];;;;text;t2_eu6tg;False;False;[];;Nope. It's kind of dull. If you don't find it entertaining now it won't get any less boring.;False;False;;;;1610395777;;False;{};gix5yz3;False;t3_kv3521;False;True;t1_gix2udz;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix5yz3/;1610448692;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sp0j;;;[];;;;text;t2_eu6tg;False;False;[];;"Surprising list. Glad ID invaded and Kakushigoto are getting recognition. - -ID Invaded took me be surprise and unlike other similar original mystery shows that start out strong it didn't have a complete garbage ending. Highly recommend people give it a try. I was genuinely eagerly anticipating each episode every week. Which is rare for me these days.";False;False;;;;1610395908;;1610396166.0;{};gix68zh;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix68zh/;1610448839;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ezylo1224;;;[];;;;text;t2_8rr48vxq;False;False;[];;"I loved Hanako-kun. The art, the VAs, the story. -A lot of boys are missing out on a lot of good anime cos it’s “for girls” and I am not one of them.";False;False;;;;1610395913;;False;{};gix69f4;False;t3_kv3521;False;False;t1_giw5mbv;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix69f4/;1610448846;61;True;False;anime;t5_2qh22;;0;[]; -[];;;Amador186;;;[];;;;text;t2_6d74caun;False;False;[];;I’ve only watched 4 of these anime’s and I had no clue they were top lol. What surprised me the most was that misfits of the Demon king academy was in top I figured not many people love OP protagonists;False;False;;;;1610396159;;False;{};gix6su8;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix6su8/;1610449137;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Alderez;;;[];;;;text;t2_7wzps;False;False;[];;Both Kakushigoto and Hinamatsuri are among my very few perfect 10's on MAL! Absolutely loved both of them.;False;False;;;;1610396163;;False;{};gix6t7i;False;t3_kv3521;False;True;t1_giw0xey;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix6t7i/;1610449142;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jairawling;;;[];;;;text;t2_5c8ysxiq;False;False;[];;Why does kirito have to come out of his wheelchair;False;False;;;;1610396358;;False;{};gix78l0;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix78l0/;1610449374;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KingAmeds;;;[];;;;text;t2_11g191s6;False;False;[];;How did My teen romantic Comedy lose to sword art online. 😪😪;False;False;;;;1610396427;;False;{};gix7e3e;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix7e3e/;1610449459;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fangirlhasnoreality;;;[];;;;text;t2_7jkbdjk;False;False;[];;I’m glad Hannako-kun made the list cause no one was talking about it far as I heard and it’s legit really good, I am sad great pretender isn’t on the list though cause that show is fire;False;False;;;;1610396468;;False;{};gix7hed;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix7hed/;1610449512;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ethitlan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Ethitlan;light;text;t2_2kwin0h1;False;False;[];;I agree with Love is War being 1, however Oregairu should be *significantly* higher, no. 2 for me, as well JJK.;False;False;;;;1610396502;;False;{};gix7k0u;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix7k0u/;1610449551;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePanthar017;;;[];;;;text;t2_4hm6td74;False;False;[];;Imagine putting Akudama drive on 5 and not even including Talentless Nana.;False;False;;;;1610396513;;False;{};gix7kw5;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix7kw5/;1610449564;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-Jet_seT-;;;[];;;;text;t2_5cn1z098;False;False;[];;I started watching Love Is War Season 1 on Hulu a few days ago. So far, I'm really enjoying it, I'm on episode 11 and kinda just waiting for season 2 because I don't have Crunchyroll and I'm a law-abiding citizen.;False;False;;;;1610396562;;False;{};gix7ors;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix7ors/;1610449620;3;True;False;anime;t5_2qh22;;0;[]; -[];;;enki1337;;;[];;;;text;t2_4pkc9;False;False;[];;"Because anime doesn't have to be just about entertainment. Just like pretty much any artistic medium, it has the potential to be more than that. - -""Entertainment gives you a predictable pleasure. Art… leads to transformation. It awakens you, rather than just satisfying a craving."" - Makoto Fujimura";False;False;;;;1610396649;;False;{};gix7vr3;False;t3_kv3521;False;True;t1_giwjuxp;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix7vr3/;1610449727;0;True;False;anime;t5_2qh22;;0;[]; -[];;;KbSkittles;;;[];;;;text;t2_442dkyzf;False;False;[];;Misfit of demon king academy is 🔥;False;False;;;;1610396662;;False;{};gix7wqv;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix7wqv/;1610449742;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Karmaflare;;;[];;;;text;t2_3mksrfjm;False;False;[];;Mid List;False;False;;;;1610396698;;False;{};gix7zin;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix7zin/;1610449787;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thenewwwguy2;;;[];;;;text;t2_49p26v8j;False;False;[];;until horimiya, it had the biggest debut of any anime romcom too;False;False;;;;1610396782;;False;{};gix869k;False;t3_kv3521;False;False;t1_giwccav;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix869k/;1610449888;0;True;False;anime;t5_2qh22;;0;[]; -[];;;trell1212;;;[];;;;text;t2_3h2x7rhw;False;False;[];;That list is asssss;False;False;;;;1610396813;;False;{};gix88ro;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix88ro/;1610449926;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NeedsFC;;;[];;;;text;t2_1ufdimtl;False;False;[];;Oregairu did itself dirty if we're being honest lol;False;False;;;;1610397006;;False;{};gix8o3o;False;t3_kv3521;False;False;t1_gix49qu;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix8o3o/;1610450161;100;True;False;anime;t5_2qh22;;0;[]; -[];;;Grizzly_228;;;[];;;;text;t2_383it7fn;False;False;[];;What is Kakushigoto? I’ve honestly never heard of it;False;False;;;;1610397025;;False;{};gix8pid;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix8pid/;1610450182;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DRIESASTER;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Huybensdries;light;text;t2_14rchx;False;False;[];;Huh what was wrong with it? I thought s3 was pretty great.;False;False;;;;1610397055;;False;{};gix8rtz;False;t3_kv3521;False;False;t1_gix8o3o;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix8rtz/;1610450215;147;True;False;anime;t5_2qh22;;0;[]; -[];;;WinterQuartzicle;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ChuuMin;light;text;t2_40gluxjd;False;False;[];;I'm happy to see Hanako-kun and Kakushigoto so high up!;False;False;;;;1610397094;;False;{};gix8ux2;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix8ux2/;1610450261;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lazyshadow04;;;[];;;;text;t2_wwv30xs;False;False;[];;I have to admit that deca-dence was a short but well done anime. It doesn’t top anime like re-zero or misfit, but those had a completely different impact than it, re-zero especially, while misfit was essentially a new take on the premise that the main character is completely broken.;False;False;;;;1610397106;;False;{};gix8vub;False;t3_kv3521;False;True;t1_givzv0k;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix8vub/;1610450275;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shad2020;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/UmHas710;light;text;t2_4hctbxzh;False;False;[];;"You're doing the weebs peacekeeping work. -We appreciate your service.";False;False;;;;1610397188;;False;{};gix927l;False;t3_kv3521;False;False;t1_giwsp16;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix927l/;1610450373;25;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610397226;;1610397576.0;{};gix957t;False;t3_kv3521;False;True;t1_giwccav;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix957t/;1610450417;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;NeedsFC;;;[];;;;text;t2_1ufdimtl;False;False;[];;"I enjoyed the season. I didn't care much for the ending though, and I think there's a good number of people who would agree. - -At the same time, many loved the ending, but didn't enjoy the season since it focused on Yui too much. - -Damned if you do, damned if you don't situation lol - -Edit: Ooof, I hit a nerve with this one. The ranks speak for themselves though, no disrespect.";False;False;;;;1610397241;;1610400399.0;{};gix96dw;False;t3_kv3521;False;True;t1_gix8rtz;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix96dw/;1610450435;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;captaincainer;;;[];;;;text;t2_ikz1r;False;False;[];;With a lack of Jujutsu Kaisen, this list is crap.;False;False;;;;1610397341;;False;{};gix9e5y;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix9e5y/;1610450555;13;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610397370;;False;{};gix9gh6;False;t3_kv3521;False;True;t1_gix96dw;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix9gh6/;1610450592;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dastrykerblade;;;[];;;;text;t2_if3ui;False;False;[];;"I never said you can’t say something better or worse, just that it’s not objective. It’s -subjective. 2+2=4, you either think that or you’re factually wrong. When you say something about art with objectivity then you’re basically saying your opinion is fact.";False;False;;;;1610397406;;False;{};gix9j8o;False;t3_kv3521;False;True;t1_gix2x8m;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix9j8o/;1610450635;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shad2020;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/UmHas710;light;text;t2_4hctbxzh;False;False;[];;"Same then again waifu wars are kind of the whole point of this harem anime. - -I feel bad for Rem though whenever I see Ruka. Makes me realise why so many are Camp Rem. Dedicating your entire life and existence to someone only for them to not just reject or turn you down but to respond by saying they will dedicate THEIR life and existence to someone else to their face is harsh. The mini rant is cuz I think Ruka might go through the same thing.";False;False;;;;1610397472;;False;{};gix9oiy;False;t3_kv3521;False;False;t1_giwt1xe;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix9oiy/;1610450715;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Anjunabeast;;;[];;;;text;t2_9n4ff;False;False;[];;Imo, it’s aight.;False;False;;;;1610397472;;False;{};gix9oj8;False;t3_kv3521;False;False;t1_giw3jze;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix9oj8/;1610450715;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FlawlessBoltX;;;[];;;;text;t2_6a110;False;False;[];;Deca-Dence on par with Great Pretender? That's a bold opinion.;False;False;;;;1610397533;;False;{};gix9td4;False;t3_kv3521;False;True;t1_giwj494;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix9td4/;1610450789;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeynaSepKim;;;[];;;;text;t2_2ay7grv6;False;False;[];;I'm pleasantly surprised! Ended up being one of my top 7 animes.;False;False;;;;1610397574;;False;{};gix9wln;False;t3_kv3521;False;False;t1_givy7o0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix9wln/;1610450838;6;True;False;anime;t5_2qh22;;0;[]; -[];;;DANIEL_KEMP_REDDIT;;;[];;;;text;t2_8psqjjlk;False;False;[];;Is rent a girlfriend good? I've never seen nor know anything about it but it seems really popular recently so I was wondering if I should watch it?;False;False;;;;1610397580;;False;{};gix9x3q;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gix9x3q/;1610450846;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610397665;;False;{};gixa3ov;False;t3_kv3521;False;True;t1_giw6gin;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixa3ov/;1610450947;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KanchiHaruhara;;MAL;[];;http://myanimelist.net/profile/KanchiHaruhara;dark;text;t2_fdre0;False;False;[];;"What other decent shows are there that are considered ""for girls""?";False;False;;;;1610397793;;False;{};gixadx1;False;t3_kv3521;False;False;t1_gix69f4;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixadx1/;1610451108;18;True;False;anime;t5_2qh22;;0;[]; -[];;;ShinaMashir0;;;[];;;;text;t2_rhsd8;False;False;[];;"Ok so you are not objective when you say my story is not on par with FMA, make sense. - -writing has rules";False;False;;;;1610397812;;1610398967.0;{};gixafez;False;t3_kv3521;False;True;t1_gix9j8o;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixafez/;1610451133;1;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"I just love how some people really believe Re:Zero is only popular here in reddit. - -It was the second best selling LN of the year just behind Demon Slayer because no one can catch Demon Slayer. - -Then again I saw your super wrong post comparing members from fully finished seasons older than Re:Zero season 2 to prove Re:Zero ""not popularity"" in MAL.";False;False;;;;1610397842;;False;{};gixahqw;False;t3_kv3521;False;False;t1_giw6gin;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixahqw/;1610451170;63;True;False;anime;t5_2qh22;;0;[]; -[];;;Nugenrules;;;[];;;;text;t2_aduqb;False;False;[];;Scrolled so far down to see this. This is the worst timeline;False;False;;;;1610397850;;False;{};gixaicl;False;t3_kv3521;False;True;t1_giwhvgl;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixaicl/;1610451179;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ralph_Da_Savage;;;[];;;;text;t2_5hcsnxbr;False;False;[];;Akudama drive is severely underrated;False;False;;;;1610397907;;False;{};gixamt2;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixamt2/;1610451247;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;"Theres never going to be ""accuracy"" because no such thing exists. Its just people voting for what they liked.";False;False;;;;1610397963;;False;{};gixar8c;False;t3_kv3521;False;True;t1_gix957t;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixar8c/;1610451322;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Danilieri;;;[];;;;text;t2_14efkm;False;False;[];;Just watched the first episode. I dig the art style its reqlly great! Except those daikon legs lmao. Cant believe hanakos va is that of doctor's in akudama drive. But i cant really say i like her voice its too uniquenin a way ( just my taste/ the acting is good). The story so far seems interesting and the characters seem endearing enough to make me watch more! So cheers thanks for the tips guys!;False;False;;;;1610397993;;False;{};gixatjt;False;t3_kv3521;False;True;t1_giwpvvp;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixatjt/;1610451360;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610398029;;False;{};gixawdr;False;t3_kv3521;False;True;t1_gixar8c;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixawdr/;1610451407;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotWeebOnMain;;;[];;;;text;t2_8dhcmweg;False;False;[];;Snafu Climax lower than KanoKari? PepeHands;False;False;;;;1610398113;;False;{};gixb2yp;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixb2yp/;1610451515;1;True;False;anime;t5_2qh22;;0;[]; -[];;;That0neViolist;;;[];;;;text;t2_4pa6gfy3;False;False;[];;Eyyy Kakushigoto made it on the list;False;False;;;;1610398170;;False;{};gixb7hw;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixb7hw/;1610451585;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SkyKobb;;;[];;;;text;t2_3nd9yh04;False;False;[];;I think people like to envision themselves whether consiously or subconsciously as the mc in animes, so when the anime is portraying a virgin loser (no offense) mc who then gets a harem, they like that. I haven't watched the anime but I am up to date on the manga and it really isn't anywhere near as good of a story as it's competition. But it's entertaining which at the end of the day is what most people care about so I can see where the hype comes from.;False;False;;;;1610398181;;False;{};gixb8cj;False;t3_kv3521;False;True;t1_givxipm;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixb8cj/;1610451598;2;True;False;anime;t5_2qh22;;0;[]; -[];;;venitienne;;;[];;;;text;t2_1d3p12up;False;False;[];;If you take out episodes 4 and 12 GoHS was actually not bad, but it’s just that those 2 episodes were atrocious. I actually liked the last episode even.;False;False;;;;1610398206;;False;{};gixbad7;False;t3_kv3521;False;False;t1_giwhngk;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixbad7/;1610451630;6;True;False;anime;t5_2qh22;;0;[]; -[];;;blockyboi13;;;[];;;;text;t2_5rvyhs13;False;False;[];;I’m just disappointed ReZero didn’t place #1;False;False;;;;1610398284;;False;{};gixbgjy;False;t3_kv3521;False;True;t1_givzv0k;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixbgjy/;1610451725;0;True;False;anime;t5_2qh22;;0;[]; -[];;;sandeep300045;;;[];;;;text;t2_15xoud;False;False;[];;"RAG ranked higher than Oregairu lmao. - -I feel Fruits basket S2 and JJK should have been there.";False;False;;;;1610398387;;False;{};gixbout;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixbout/;1610451854;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Killcode2;;;[];;;;text;t2_15lr8u;False;False;[];;who is anime corner and why does r/anime care about it? we have our own reddit rankings anyways;False;False;;;;1610398430;;False;{};gixbsbz;False;t3_kv3521;False;False;t1_givscbn;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixbsbz/;1610451911;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610398472;;False;{};gixbvlp;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixbvlp/;1610451964;1;True;False;anime;t5_2qh22;;0;[]; -[];;;venitienne;;;[];;;;text;t2_1d3p12up;False;False;[];;Nothing wrong at all, it was fantastic. I guess if your ship didn’t win though you’d find it somewhat less exciting but since i was on the winners gang the entire time I loved it.;False;False;;;;1610398505;;False;{};gixbyab;False;t3_kv3521;False;False;t1_gix8rtz;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixbyab/;1610452007;122;True;False;anime;t5_2qh22;;0;[]; -[];;;DRIESASTER;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Huybensdries;light;text;t2_14rchx;False;False;[];;Yea to me the ending was pretty obvious since s1.;False;False;;;;1610398545;;False;{};gixc1rx;False;t3_kv3521;False;False;t1_gixbyab;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixc1rx/;1610452058;79;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610398645;;False;{};gixcbbv;False;t3_kv3521;False;True;t1_gixb8cj;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixcbbv/;1610452195;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GlobalVV;;;[];;;;text;t2_ers13;False;False;[];;I always take these anime top 10 lists with a grain of salt. Or maybe a mountain. These lists are generally what's popular and not really what's actually good.;False;False;;;;1610398659;;False;{};gixcceo;False;t3_kv3521;False;True;t1_giw2kyh;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixcceo/;1610452212;1;True;False;anime;t5_2qh22;;0;[];True -[];;;Astan92;;MAL;[];;http://myanimelist.net/animelist/Astan92;dark;text;t2_57f8u;False;False;[];;EZ Breezy AOTY by far;False;False;;;;1610398735;;False;{};gixciek;False;t3_kv3521;False;True;t1_giwmukm;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixciek/;1610452313;3;True;False;anime;t5_2qh22;;0;[]; -[];;;zodiacxz;;;[];;;;text;t2_5a600ylo;False;False;[];;I watched RAG when it first started airing i never would have thought that it will end up being as popular as it did;False;False;;;;1610398757;;False;{};gixck61;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixck61/;1610452344;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Csabi_;;;[];;;;text;t2_14lya1;False;False;[];;"Question if I may: Are the episodes like the first one? I was really excited about Hanako-kun and was waiting for a more serious atmosphere when I saw the trailer for the first time. - -Well after the first ep it turned out to be kinda the opposite of what I expected and I was disappointed that the main girl was written to be so dumb (or at least that was the impression she gave). - -Does the anime remain this light-hearted through the episodes, or does it get a little more serious? - -Edit: this comment wasn’t made to induce hate towards the show, it was just a friendly question in retrospect of my own taste. Instead of downvoting, I’d be glad to hear your opinion of why it’s worth the watch.";False;False;;;;1610398762;;1610401122.0;{};gixckk8;False;t3_kv3521;False;True;t1_giw5mbv;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixckk8/;1610452351;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KrazyBean94;;;[];;;;text;t2_110dr6;False;False;[];;Nice seeing ID Invaded and Akudama Drive on there.;False;False;;;;1610399120;;False;{};gixdc6a;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixdc6a/;1610452795;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;">First time without subs is yuri - -[**Doubt this is coincidence**](#smugshinobu) - -Keep it up. Start downloading raws and testing them out. SoL should be fairly easy to grasp, and vtubers will help out as well. After about 200 hours of study you'll be able to understand basic raws, be it mango or cartoons.";False;False;;;;1610399131;;False;{};gixdd16;False;t3_kv06fx;False;False;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gixdd16/;1610452809;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;">wasn't titillating - -USO DA";False;False;;;;1610399175;;False;{};gixdge0;False;t3_kv06fx;False;False;t1_givhhsq;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gixdge0/;1610452864;6;True;False;anime;t5_2qh22;;0;[]; -[];;;syoforscht;;;[];;;;text;t2_71adwi62;False;False;[];;Great Pretender was the best. This list is bull.;False;False;;;;1610399223;;False;{};gixdk4r;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixdk4r/;1610452924;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ArouetHaise;;;[];;;;text;t2_3y7bp40s;False;False;[];;in season 1 he suffers from SIMP syndrome but it changes over time;False;False;;;;1610399254;;False;{};gixdmkn;False;t3_kv3521;False;True;t1_gix57ih;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixdmkn/;1610452964;1;True;False;anime;t5_2qh22;;0;[]; -[];;;venitienne;;;[];;;;text;t2_1d3p12up;False;False;[];;Glad I can finally find someone who I can agree with. I was very unimpressed based on what the hype around the show was. The characters all very one-note with predictable, shallow dialogue, and at that point I couldn’t even enjoy the plot as much.;False;False;;;;1610399255;;False;{};gixdmo2;False;t3_kv3521;False;True;t1_giwf3no;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixdmo2/;1610452966;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fittytuckz;;;[];;;;text;t2_10z80e;False;False;[];;Wave, Listen to me isn't even on the list... What the actual fuck;False;False;;;;1610399336;;False;{};gixdt0a;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixdt0a/;1610453068;1;True;False;anime;t5_2qh22;;0;[]; -[];;;venitienne;;;[];;;;text;t2_1d3p12up;False;False;[];;"It was a decent show, the Mc was by far the worst part. I get that his backstory makes it so his mental age is essentially younger, but man. Hearing him constantly repeat the same whiny lines got on my nerves. Also his random power ups which never really got explained. - -Sucks because Kuhn and the rest of the gang were all amazing";False;False;;;;1610399420;;False;{};gixdzle;False;t3_kv3521;False;True;t1_givzoa1;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixdzle/;1610453179;2;True;False;anime;t5_2qh22;;0;[]; -[];;;vBoxxyy;;;[];;;;text;t2_3mh2k3ew;False;False;[];;How tf does RAGF beat oregairu. Like I enjoyed RAGF but oregairu is just better in every aspect and I’d imagine most people agree;False;False;;;;1610399435;;False;{};gixe0ri;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixe0ri/;1610453198;1;True;False;anime;t5_2qh22;;0;[]; -[];;;1fastman1;;;[];;;;text;t2_c2lid;False;False;[];;id invaded was a great show. really hope its remembered as a classic of 2020;False;False;;;;1610399439;;False;{};gixe124;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixe124/;1610453203;1;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;I'm still in classes so I don't know how much my opinion is worth, but the biggest detriment when learning anything is not using it. As a fellow music student when I go more than a few days without practicing I can feel the effects, and I'm sure language is similar. I made some japanese friends that I practice with sometimes, or friends from japanese class. If that isn't an option, even just trying to include like 5 minutes of conversation practice a day would probably help it stay fresh.;False;False;;;;1610399526;;False;{};gixe7x7;True;t3_kv06fx;False;True;t1_givndt2;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gixe7x7/;1610453312;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bluepsycho65;;;[];;;;text;t2_3exex6qy;False;False;[];;Re:ZERO should be number one;False;False;;;;1610399534;;False;{};gixe8ip;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixe8ip/;1610453321;1;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;Anki? I have not;False;False;;;;1610399548;;False;{};gixe9nm;True;t3_kv06fx;False;True;t1_givsh9l;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gixe9nm/;1610453341;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Primus81;;;[];;;;text;t2_pa1b3;False;False;[];;"I've never even heard of it before ;)";False;False;;;;1610399649;;False;{};gixehif;False;t3_kv3521;False;False;t1_givy7o0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixehif/;1610453471;1;True;False;anime;t5_2qh22;;0;[]; -[];;;emiyacross;;;[];;;;text;t2_n3cv3dx;False;False;[];;From this list I watched 1, 3, 5, 8, and 9. Hm. Not bad.;False;False;;;;1610399670;;False;{};gixej7z;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixej7z/;1610453499;1;True;False;anime;t5_2qh22;;0;[]; -[];;;markevans7799;;;[];;;;text;t2_4pxhvc5g;False;False;[];;No Great Pretender? No Jujutsu Kaisen? This list is bullcrap;False;False;;;;1610399689;;False;{};gixeklf;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixeklf/;1610453522;0;True;False;anime;t5_2qh22;;0;[]; -[];;;1fastman1;;;[];;;;text;t2_c2lid;False;False;[];;i mean there was a pandemic lmao;False;False;;;;1610399717;;False;{};gixemt9;False;t3_kv3521;False;True;t1_giw2qod;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixemt9/;1610453558;1;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;Oh yeaaaah a lot of the word play and stuff I never understood until about 2 years ago. But all the stuff messing with kanji readings and such is still out of my league;False;False;;;;1610399724;;False;{};gixend8;True;t3_kv06fx;False;True;t1_giwo1ml;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gixend8/;1610453566;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JunWasHere;;;[];;;;text;t2_8hu5p;False;False;[];;"Single vote polls really need to go. - -Ranked choice voting is top-tier and needs to be the new standard.";False;False;;;;1610399736;;False;{};gixeoac;False;t3_kv3521;False;False;t1_givt5h0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixeoac/;1610453580;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Goldeagle1123;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/goldeagle1123;light;text;t2_xyzwm;False;False;[];;"Popularity does not equate to quality. KanoKari and Akudama Drive being on this list at all is a testament to that. - -Furthermore, ""quality"" is inherently subjective, and I think things like ""Top 10!"" lists are frankly foolish. They serve no real purpose other than to try to influence other people's opinions. People can decide for themselves what the ""Top 10"" are, and few people's will look the same.";False;False;;;;1610399754;;False;{};gixeppb;False;t3_kv3521;False;False;t1_givtkkv;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixeppb/;1610453604;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Hyperversum;;;[];;;;text;t2_169gl2;False;False;[];;"Don't get me wrong, I like Fruits Basket, but it isn't exactly the kind of anime that would get the most votes given the general taste of anime people. - -Thought more people would care about Dorehedoro tbh.";False;False;;;;1610399757;;False;{};gixepxb;False;t3_kv3521;False;True;t1_givug1h;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixepxb/;1610453607;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;">the last 8 episodes shit the bed hard - -Wut? - -You're in the minority on this one seeing that JJK is currently the second biggest series in Japan right now after Demon Slayer.";False;False;;;;1610399766;;1610400454.0;{};gixeqnb;False;t3_kv3521;False;False;t1_gix2ir9;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixeqnb/;1610453619;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610399772;;False;{};gixer4t;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixer4t/;1610453627;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;"Kanji is a *bitch*, no two ways about it, especially if English is your mother tongue. I can think of two distinct ways to learn it: - -1. Get the list of the 2500-3000 most-commonly used kanji in order (top 100, top 500, top 1000, etc; Anki has these lists all over the damn place) and brute-fucking force it. 50-100 kanji per day, reviewing constantly. You'll have them all in a few months, and then spend the next six constantly reviewing them. But this will take hours everyday, and you may not want to spend that amount of time. - -2. Take those 3000 kanji and order them by simplest to most complex (e.g. fewest lines needed to draw the character, to most). This is how the author of Remembering the Kanji learned them, and I'm using this method partially myself. Seeing how the characters merge into one another is beautiful (and horribly darkly hilarious, like when you find out what the character made up of three characters for 'woman' stacked on top of each other mean. If I laughed my ass off when I found out, am I going to hell?). - -tl;dr there ain't no damn magical shortcut, just an asston of work. Best of luck, and keep at it.";False;False;;;;1610399799;;False;{};gixeta6;False;t3_kv06fx;False;False;t1_giv7xyf;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gixeta6/;1610453663;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Goldeagle1123;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/goldeagle1123;light;text;t2_xyzwm;False;False;[];;"Popularity does not equate to quality. KanoKari and Akudama Drive being on this list at all is a testament to that. - -Furthermore, ""quality"" is inherently subjective, and I think things like ""Top 10!"" lists are frankly foolish. They serve no real purpose other than to try to influence other people's opinions. People can decide for themselves what the ""Top 10"" are, and few people's will look the same.";False;False;;;;1610399815;;False;{};gixeuhp;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixeuhp/;1610453684;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Tobee_69;;;[];;;;text;t2_9rhqxi8m;False;False;[];;"I love the top 3 and the top 7 AWUUUUUUU!!! <3";False;False;;;;1610399832;;False;{};gixevro;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixevro/;1610453705;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;Dunno why reddit cares so much about Anime Corner.;False;False;;;;1610399864;;False;{};gixeyb5;False;t3_kv3521;False;False;t1_giwci3n;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixeyb5/;1610453746;4;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;Wow Manga is still out of reach for me because my kanji is so lacking. The progress is slow but it is satisfying seeing ones I know more often. But I totally get what you mean, a few people have suggested trying to watch with JP subs but I know that would be waaaay too fast for me right now;False;False;;;;1610399917;;False;{};gixf2gy;True;t3_kv06fx;False;True;t1_givu5xm;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gixf2gy/;1610453816;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PatroccinoOrange;;;[];;;;text;t2_31kxdb0n;False;False;[];;"My top 5: - -Dorohedoro, Jujutsu Kaisen, Deca-Dence, Fire Force and Eizouken - -About this top 10: I've only watched Kaguya and didn't liked as I liked the first season. Went from 7/10 to 6/10. I can't say more about the whole list because I didn't picked no one to watch, but Kakushigoto and Id:Invaded looks interesting to me.";False;False;;;;1610399929;;False;{};gixf3ct;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixf3ct/;1610453831;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;B_RizzleMyNizzIe;;;[];;;;text;t2_4p70ggqe;False;False;[];;Do people not like rezero that much? Like jeez I thought it was absolutely attention grabbing the whole time.;False;False;;;;1610399958;;False;{};gixf5na;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixf5na/;1610453867;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"Is it by per volume sales or by series sales? - -If its by series sales then telling ReZero is behind KnY is unfair since it had 4 volumes in 2020 iirc and it generally will have more sales compared to another series which released only 1 or 2 volumes (For example Haruhi's new LN). - -If its by per volume sales then its great to hear. - -I got bashed over in r/lightnovels since I once used series sales to compare.";False;False;;;;1610400010;;1610422580.0;{};gixf9rj;False;t3_kv3521;False;False;t1_gixahqw;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixf9rj/;1610453936;6;True;False;anime;t5_2qh22;;0;[]; -[];;;LeoGiacometti;;;[];;;;text;t2_13n8qv;False;False;[];;"yeah I'm actually excited for a future season because he's clearly supposed to ""change"" after what happened";False;False;;;;1610400128;;False;{};gixfizw;False;t3_kv3521;False;True;t1_gixdmkn;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixfizw/;1610454085;1;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;"I just started by learning conversational phrases, but that was for a trip. If you are trying to learn the language, just like for all languages, it's good to ease into writing, vocabulary, and grammar. Hiragana is usually the first alphabet people learn for Japanese, and outside of that I'm not quite sure. When I taught myself I just Google stuff I didn't know, but most of it was just trying to absorb vocabulary as much as I could which helps with listening comprehension. The textbook we use for class is cled ""Nakama"" and it's really good and well paced, so you could give that a shot too!";False;False;;;;1610400146;;False;{};gixfkcg;True;t3_kv06fx;False;False;t1_givxy9x;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gixfkcg/;1610454108;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ENKlDU;;;[];;;;text;t2_4scvchzo;False;False;[];;Well deserved;False;False;;;;1610400153;;False;{};gixfkxy;False;t3_kv3521;False;False;t1_givtkkv;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixfkxy/;1610454118;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ENKlDU;;;[];;;;text;t2_4scvchzo;False;False;[];;"Seeing all the Oregairu fanboys getting salty there show get placed lower than a harem anime - -Is pretty amusing";False;False;;;;1610400208;;False;{};gixfpa9;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixfpa9/;1610454193;3;True;False;anime;t5_2qh22;;0;[]; -[];;;theanimegamer-___-;;;[];;;dark;text;t2_3vm3lj8d;False;False;[];;That's weird since it's a shounen. It's not even girly or anything.;False;False;;;;1610400214;;False;{};gixfpsn;False;t3_kv3521;False;True;t1_giw5mbv;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixfpsn/;1610454200;2;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;Looooots of repetition. When I learned hiragana and katakana I ignored my classes most days and just wrote them again and again on my assignments. For kanji I have a notebook dedicated to writing practice where I just write them over and over saying their pronunciations in my head. It's a pain but it works pretty well.;False;False;;;;1610400255;;False;{};gixft0g;True;t3_kv06fx;False;False;t1_giwyuup;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gixft0g/;1610454253;2;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;XD very true;False;False;;;;1610400274;;False;{};gixfujq;True;t3_kv06fx;False;True;t1_giwzxw8;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gixfujq/;1610454280;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bosseffs;;MAL;[];;http://myanimelist.net/profile/Zynapse;dark;text;t2_6pa52;False;False;[];;"The fact that misfit of demon king academy is rated higher than oregairu... - - -Well let's just say that I don't really care about their ratings att all. - - -I rate this rating 0/10";False;False;;;;1610400312;;False;{};gixfxjf;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixfxjf/;1610454330;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;"Yeah I think the recommendation perspective is more would it be entertaining for that person even if its entertaining for me. - -Like there's some people I absolutely wouldn't recommend RAG to even though I personally really enjoyed the show and the manga following on from where the show finished. - -Whereas something like Horimiya I'll stuff in everyone's face like that annoying salesman who always seems to knock on your door right at you're going for a shit.";False;False;;;;1610400357;;False;{};gixg12r;False;t3_kv3521;False;True;t1_giwjuxp;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixg12r/;1610454388;1;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;Thanks man!! Yeah I've been watching V-tubers lately which is really fun to get to see things before they are clipped and translated.;False;False;;;;1610400361;;False;{};gixg1d5;True;t3_kv06fx;False;True;t1_gixdd16;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gixg1d5/;1610454393;2;True;False;anime;t5_2qh22;;0;[]; -[];;;uniquecannon;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/uniquecannon/animelist;light;text;t2_7s9uj;False;False;[];;"Kaguya going to also wreck 2021. Im ready for this, been waiting for the [Kaguya](/s ""Festival arc"") anxiously.";False;False;;;;1610400364;;False;{};gixg1mi;False;t3_kv3521;False;False;t1_giw26wx;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixg1mi/;1610454396;16;True;False;anime;t5_2qh22;;0;[]; -[];;;DelzIsDelz;;;[];;;;text;t2_16vpkysc;False;False;[];;???;False;False;;;;1610400371;;False;{};gixg27f;False;t3_kv3521;False;True;t1_gix2ir9;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixg27f/;1610454406;0;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;Yeah watching vtubers live in JP is very fun, it's a totally different feel than translated clips;False;False;;;;1610400461;;False;{};gixg98d;True;t3_kv06fx;False;True;t1_givkspr;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gixg98d/;1610454522;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;He's not saying they have, he's saying he doesn't want that to happen after he's gone and given the show a 10/10.;False;False;;;;1610400476;;False;{};gixgagl;False;t3_kv3521;False;False;t1_gixeqnb;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixgagl/;1610454545;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Diaslime001;;;[];;;;text;t2_70ij266d;False;False;[];;About SAO WoU p2: Does anybody know when the English dubbed version will be available on Funimation/any other (even illegal) sites?;False;False;;;;1610400541;;False;{};gixgfiq;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixgfiq/;1610454630;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Y2000N;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Y2000N;light;text;t2_qij4lw0;False;False;[];;This is something I've read from other comments and not from my own knowledge, but it seems that most of the light novel readers were pissed off cause the last season gave way too much time to Yuigahama scenes and skip a bunch of yukino's plot development. Personally I didn't mind either ways cause I was on a losing ship to begin with(Iroha), I'm just glad I got to see that happy ending.;False;False;;;;1610400556;;False;{};gixggq0;False;t3_kv3521;False;False;t1_gix8rtz;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixggq0/;1610454651;111;True;False;anime;t5_2qh22;;0;[]; -[];;;VorAtreides;;;[];;;;text;t2_y87hi;False;False;[];;"I legit don't get people's love of that one. I have been reading the manga since before the anime and, even watching the anime, it's fine and all, but nothing I'd say is ""good/great""";False;False;;;;1610400561;;False;{};gixgh2g;False;t3_kv3521;False;False;t1_givtkkv;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixgh2g/;1610454656;15;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaiinessa;;;[];;;;text;t2_yyh9ap7;False;False;[];;surpirsed to see akudama drive being on this list i loved the anime but didnt hear many people talk about it while it was airing;False;False;;;;1610400591;;False;{};gixgje6;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixgje6/;1610454694;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KiLLTriK;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KiLLTriK;light;text;t2_1adwfkcn;False;False;[];;Oh yeah. I'm not here to blame but those lists needs to be better than this. I mean. Rezero didn't started in 2020, it's just a new season. Same with sao. A lot of anime came out in 2020. I know! I know... Peoples are voted for them. It's still okay. But hear me out. A list with the top10 anime from 2020 (only the ones that started in 2020, not continued);False;False;;;;1610400602;;False;{};gixgk8l;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixgk8l/;1610454710;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Time-Caterpillar621;;;[];;;;text;t2_9ovgsuxq;False;False;[];;Majority of women are into a boyish anime. BNHA, Naruto, KNY, etc have a massive female following.;False;False;;;;1610400622;;False;{};gixglqg;False;t3_kv3521;False;False;t1_gixfpsn;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixglqg/;1610454735;9;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;"Yeah I honestly think just listening to what they are saying even a little helps your brain understand what they are saying. I was the same way up until this last semester, and I passed out of a class of Japanese without having any lessons probably just from what I got from anime and taught myself. - -I'm sure your accent is better than a lot of people who go into japanese dry too, because you know what it should sound like!";False;False;;;;1610400623;;False;{};gixgltq;True;t3_kv06fx;False;True;t1_givsxwl;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gixgltq/;1610454737;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;Hopefully he will get a little bit more of personality next season;False;False;;;;1610400633;;False;{};gixgmny;False;t3_kv3521;False;True;t1_gixdzle;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixgmny/;1610454750;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;My bad, I misunderstood.;False;False;;;;1610400645;;False;{};gixgnko;False;t3_kv3521;False;True;t1_gixgagl;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixgnko/;1610454766;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DRIESASTER;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Huybensdries;light;text;t2_14rchx;False;False;[];;Same boat haha, iroha gang! But i get why the ln readers got upset but as an anime only i highly enjoyed it. My favorite iroha moment was with komachi, absolutely great dynamic.;False;False;;;;1610400650;;False;{};gixgnz5;False;t3_kv3521;False;False;t1_gixggq0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixgnz5/;1610454773;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Time-Caterpillar621;;;[];;;;text;t2_9ovgsuxq;False;False;[];;I've never watched it myself, it's just my tl was flooded with fangirls at some point. From what I heard it's getting more dramatic.;False;False;;;;1610400674;;False;{};gixgprz;False;t3_kv3521;False;True;t1_gixckk8;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixgprz/;1610454804;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NasseGiraffe;;;[];;;;text;t2_1g0dtoh3;False;False;[];;Idk people are sleeping om my 2020 favorite: wandering witch elaina;False;False;;;;1610400697;;False;{};gixgriv;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixgriv/;1610454833;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Legtagytron;;;[];;;;text;t2_1vo0tpke;False;False;[];;Nah. These were the 'popular to watch' anime for biggest shock/entertainment factor. None of them are in my top ten besides Hanako-Kun.;False;False;;;;1610400729;;False;{};gixgu0f;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixgu0f/;1610454874;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDarkSwordsman;;;[];;;;text;t2_jakj8;False;False;[];;I mean, Oregairu is right there. It's not exactly that far behind, especially relative to third place.;False;False;;;;1610400755;;False;{};gixgw24;False;t3_kv3521;False;True;t1_givscbn;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixgw24/;1610454910;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JackTheRipper1001;;;[];;;;text;t2_5jx55tip;False;False;[];;I'm seriously happy to see Kakushigoto so high up. That show was a rare gem for 2020. Ofc Kaguya sama S2 is probably anime of the year.;False;False;;;;1610400766;;False;{};gixgwui;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixgwui/;1610454924;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDarkSwordsman;;;[];;;;text;t2_jakj8;False;False;[];;"Thank you. - -Sincerely, - -SAO fan";False;False;;;;1610400797;;False;{};gixgz6p;False;t3_kv3521;False;False;t1_giwsalm;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixgz6p/;1610454965;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Riddler208;;;[];;;;text;t2_lpn1v;False;False;[];;As someone who doesn’t frequent here all that often, can you explain what Netflix jail is? From a layman’s perspective I would think being on one of the most popular general streaming services would be a good thing.;False;False;;;;1610400811;;False;{};gixh09h;False;t3_kv3521;False;True;t1_giwxfga;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixh09h/;1610454983;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lukaswolfe44;;;[];;;;text;t2_eh2ku;False;False;[];;"I think it was 15 with the ""complete"" form of the mech that was pretty good. - -The next ""arc"" with the survival part was good on its own, but didn't really belong in the show. - -Then we went to space for some reason (thank Trigger). - -Then the future scene was enjoyable.";False;False;;;;1610400842;;False;{};gixh2ou;False;t3_kv3521;False;False;t1_giwkdmf;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixh2ou/;1610455026;4;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;Hahah I know what you mean! I want to start learning more about radicals and stuff too to be able to interpret kanji I don't know. Also thanks for all the tips! I'll totally check out these lists.;False;False;;;;1610400882;;False;{};gixh5uj;True;t3_kv06fx;False;True;t1_gixeta6;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gixh5uj/;1610455081;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MGLurker;;;[];;;;text;t2_4jeco5pe;False;False;[];;"Raildex is over a decade old at this point, I'm not surprised Railgun is so low. That's a whole decade's worth of anime fans who might have started watching after it started with a lot of them deciding it's ""too old."" - -Dorohedoro is amazing but the art style is fairly unique and divisive so I can't say I'm shocked there either.";False;False;;;;1610400885;;False;{};gixh63q;False;t3_kv3521;False;True;t1_givzv0k;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixh63q/;1610455086;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDarkSwordsman;;;[];;;;text;t2_jakj8;False;False;[];;"I basically look at any anime poll and immediately discredit it. None of them do it right, including MAL. - -It's fun when shows I like get on those lists, or even do well, but then it just gives more fuel for people that hate the show to spread shit about it.";False;False;;;;1610400934;;False;{};gixh9w6;False;t3_kv3521;False;True;t1_givt5h0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixh9w6/;1610455153;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Csabi_;;;[];;;;text;t2_14lya1;False;False;[];;I see, thanks. Maybe I’ll give it a shot again sometime.;False;False;;;;1610400935;;False;{};gixh9zk;False;t3_kv3521;False;True;t1_gixgprz;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixh9zk/;1610455154;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fgfrid;;;[];;;;text;t2_3ftul0fq;False;False;[];;Your lack of Toaru disturbs me.;False;False;;;;1610400998;;False;{};gixhesz;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixhesz/;1610455244;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Y2000N;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Y2000N;light;text;t2_qij4lw0;False;False;[];;Haha good to see more people appreciating Iroha. I really enjoyed the last season aswell, plan on checking out the ln in the future though;False;False;;;;1610401039;;False;{};gixhi2r;False;t3_kv3521;False;False;t1_gixgnz5;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixhi2r/;1610455300;7;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"It's series sales, but there is no a real ""top 10"" for volumes because Demon Slayer took 5 spots alone. - -Besides that means old volumes are getting a boost as well, so I don't see how it's unfair. - -Besides my point is not to prove Re:Zero is the most popular LN, it's to disapprove the people that want to force the narrative that Re:Zero is just popular on reddit when everything says otherwise.";False;False;;;;1610401055;;False;{};gixhjd9;False;t3_kv3521;False;False;t1_gixf9rj;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixhjd9/;1610455322;19;True;False;anime;t5_2qh22;;0;[]; -[];;;QuiGonGinge13;;;[];;;;text;t2_yody9;False;False;[];;I agree. Where the hell is ninja collection and why isnt it number one;False;False;;;;1610401114;;False;{};gixho2y;False;t3_kv3521;False;True;t1_giwlvrn;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixho2y/;1610455400;1;True;False;anime;t5_2qh22;;0;[]; -[];;;neptune17e8;;;[];;;;text;t2_2reap1lz;False;False;[];;"What is toilet bound? Sorry if i offend you but -.... Wtf";False;False;;;;1610401201;;False;{};gixhurh;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixhurh/;1610455523;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dastrykerblade;;;[];;;;text;t2_if3ui;False;False;[];;You’re just grasping at unrealistic extremes. No one would even make that comparison but technically yes they would not be objective. It’s an opinion.;False;False;;;;1610401252;;False;{};gixhypt;False;t3_kv3521;False;True;t1_gixafez;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixhypt/;1610455592;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sharebear42019;;;[];;;;text;t2_z1jb0;False;False;[];;Damn ngl the only anime I really enjoyed on this list was akudama drive;False;False;;;;1610401313;;False;{};gixi3c7;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixi3c7/;1610455672;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Teglement;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Teglement;light;text;t2_43974;False;False;[];;This is some peak /r/iamverysmart stuff here. If we're gonna talk about 'art' in anime (and not just talking about literally drawn art) then a VERY small percentage of shows qualify. To imply that something must be transformative to be of good quality is to set the bar unreasonably high.;False;False;;;;1610401315;;False;{};gixi3i7;False;t3_kv3521;False;True;t1_gix7vr3;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixi3i7/;1610455674;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rguzgu;;;[];;;;text;t2_16z5p0;False;False;[];;I really like Hanako being number 4, but I feel the anime would’ve been a lot better without the animation crust;False;False;;;;1610401320;;False;{};gixi3u3;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixi3u3/;1610455679;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Teglement;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Teglement;light;text;t2_43974;False;False;[];;Well I must be in the clear, because good is exactly what I called Rent-A-Girlfriend, not 'high quality' or 'art'.;False;False;;;;1610401377;;False;{};gixi86h;False;t3_kv3521;False;True;t1_gix2fwq;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixi86h/;1610455753;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Argonanth;;MAL;[];;https://myanimelist.net/profile/Argonanth;dark;text;t2_6xilq;False;False;[];;"Nice! I'm only \~4 years into learning Japanese and I'm still just complete garbage at grammar to the point where I still have trouble understanding basic things without going over it a few times. I just find grammar so hard to study as the things I have trouble with show up frequently enough that I struggle but not frequently enough that I can remember it. Picking out words and stuff is always fun, but it's always frustrating when I can't understand the full meaning of a sentence. I know the solution to my problem is ""read/watch"" more things but there is only so much time a day I can study :(.";False;False;;;;1610401414;;False;{};gixib26;False;t3_kv06fx;False;True;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gixib26/;1610455803;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Teglement;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Teglement;light;text;t2_43974;False;False;[];;"You're right, other qualifiers absolutely contribute. But I've sat through my fair share of 'classic' movies or books and was so bored to tears by them that I wouldn't ever recommend them. (shoutout to the Scarlet Letter, the worst fucking piece of classic literature I've ever had the displeasure of reading) - -You can manage to be thought provoking, entertaining, and deep all at the same time. (Ping Pong, for instance)";False;False;;;;1610401480;;False;{};gixig4i;False;t3_kv3521;False;True;t1_giwzvrz;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixig4i/;1610455889;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Teglement;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Teglement;light;text;t2_43974;False;False;[];;Cringe comedy is its own thing for sure. Like the divide between people who absolutely hate Michael Scott and won't watch the Office because of him, and people who love Michael Scott and won't watch the post-Scott seasons.;False;False;;;;1610401548;;False;{};gixilik;False;t3_kv3521;False;False;t1_gix0jdj;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixilik/;1610455985;6;True;False;anime;t5_2qh22;;0;[]; -[];;;nemt;;;[];;;;text;t2_59bfz;False;False;[];;what if i told you i hate it and i hate the wimpy ass crying natsu?;False;True;;comment score below threshold;;1610401565;;False;{};giximr2;False;t3_kv3521;False;True;t1_giw3jze;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giximr2/;1610456005;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;the-grape-next-door;;;[];;;;text;t2_2zdi1cgx;False;False;[];;ID INVADED LETS GOOOO;False;False;;;;1610401651;;False;{};gixithc;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixithc/;1610456120;1;True;False;anime;t5_2qh22;;0;[];True -[];;;sahara_boud;;;[];;;;text;t2_2z5ipiq9;False;False;[];;I love the show and I’ve read the manga, overall it’s pretty light hearted but there are some really dark scenes that hit pretty hard. It’s only 12 episodes, I’d say go watch it, but that’s coming from someone who absolutely loved it :);False;False;;;;1610401651;;False;{};gixitju;False;t3_kv3521;False;True;t1_gixh9zk;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixitju/;1610456121;2;True;False;anime;t5_2qh22;;0;[]; -[];;;betelgeuse910;;;[];;;;text;t2_yufjogx;False;False;[];;It clearly states its top 10 from votes. It's not foolish to share their survey. It shows what those people liked in the year, nothing more nothing less.;False;False;;;;1610401672;;False;{};gixiv54;False;t3_kv3521;False;True;t1_gixeppb;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixiv54/;1610456148;3;True;False;anime;t5_2qh22;;0;[]; -[];;;uwudomm_on_tik_tok;;;[];;;;text;t2_9qr0uxqq;False;False;[];;how is re zero only number 3 my waifus on that show felix well my real waifu is astolfo;False;False;;;;1610401706;;False;{};gixixr5;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixixr5/;1610456196;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MejaBersihBanget;;;[];;;;text;t2_4a6wkvny;False;False;[];;"> One of them is shot and would make a fine OVA - -It's 2 volumes long. An OVA would not be able to cover it, that's enough material for 13 episodes. That's why I was laughing whenever anyone said ""Oh we'll probably get a Moon Cradle movie"" no. - -Aincrad, Fairy Dance, and Phantom Bullet were also 2 volumes long, these arcs each took 13-14 episodes to cover.";False;False;;;;1610401712;;False;{};gixiy76;False;t3_kv3521;False;True;t1_gix5agr;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixiy76/;1610456203;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MejaBersihBanget;;;[];;;;text;t2_4a6wkvny;False;False;[];;End of March;False;False;;;;1610401739;;False;{};gixj08e;False;t3_kv3521;False;True;t1_giwxh5g;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixj08e/;1610456238;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lunatoons291;;;[];;;;text;t2_16nhl574;False;False;[];;So many;False;False;;;;1610401874;;False;{};gixjanm;False;t3_kv3521;False;True;t1_gixadx1;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixjanm/;1610456416;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MajorSery;;MAL;[];;http://myanimelist.net/profile/MajorSery;dark;text;t2_dzai0;False;False;[];;"> surprising and unexpected - -Those are words for it. I would have said ""disappointing"" and ""diminished my faith in humanity""";False;False;;;;1610401892;;False;{};gixjc2n;False;t3_kv3521;False;False;t1_givyx5m;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixjc2n/;1610456444;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Goldeagle1123;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/goldeagle1123;light;text;t2_xyzwm;False;False;[];;">It's not foolish to share their survey. - -Sure it is. What point is there in sharing such a survey? More than that, how valid even is this survey? These types of amateur ""surveys"" conducted by random anime sites rarely have more than several thousand voters, which is in no way accurate or indicative of what is actually most popular, and is really a small sample size. Something tells me there's a lot, lot more than 47,000 people watching anime out there. - -And again even if it was 100% accurate, to what end? Who cares? Just watch what you want without being influenced by popularity trends.";False;False;;;;1610402042;;False;{};gixjnm6;False;t3_kv3521;False;True;t1_gixiv54;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixjnm6/;1610456647;0;True;False;anime;t5_2qh22;;0;[]; -[];;;h_hue;;;[];;;;text;t2_965gj878;False;False;[];;I personally love most of the shows on the list, and shows in 2020. But Anime Corner, from my understanding, have mostly Asians as their users. The cultural difference makes the list very nonsensical to r/anime.;False;False;;;;1610402058;;False;{};gixjot5;False;t3_kv3521;False;False;t1_givsg76;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixjot5/;1610456667;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ScintiYume;;;[];;;;text;t2_8zhwqxz9;False;False;[];;ofc only shit anime is here, nothing has changed in the anime community smh;False;True;;comment score below threshold;;1610402149;;False;{};gixjvs4;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixjvs4/;1610456796;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;I totally get that. I think it's probably important to approach it like a class, and take grammar things one step at a time. Usually we spend a whole week on one point of grammar and it's variants. And then after a few weeks if different lessons that is reinforced by a test. In school it seems like an annoying system for classes you don't like, but if you're really interested in it like japanese, the tests are fun because you get to see what you remember and then reinforce them before moving on.;False;False;;;;1610402153;;False;{};gixjw20;True;t3_kv06fx;False;True;t1_gixib26;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gixjw20/;1610456801;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Csabi_;;;[];;;;text;t2_14lya1;False;False;[];;Haha yeah, I can definitely see that on your profile. Alright, this’ll be the pick when I’m in the mood for some careless content. :);False;False;;;;1610402160;;False;{};gixjwjz;False;t3_kv3521;False;True;t1_gixitju;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixjwjz/;1610456809;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610402317;;1610402533.0;{};gixk8n9;False;t3_kv3521;False;True;t1_gixadx1;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixk8n9/;1610457026;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gentleman_Owl;;;[];;;;text;t2_1udpomm3;False;False;[];;Kakushigoto getting the love it deserves;False;False;;;;1610402358;;False;{};gixkbsf;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixkbsf/;1610457096;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lemon1412;;;[];;;;text;t2_3m3p3;False;True;[];;Smug shota;False;False;;;;1610402487;;False;{};gixklog;False;t3_kv3521;False;True;t1_gix51vw;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixklog/;1610457272;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ScintiYume;;;[];;;;text;t2_8zhwqxz9;False;False;[];;You should broaden your anime horizons !;False;False;;;;1610402499;;False;{};gixkmml;False;t3_kv3521;False;True;t1_gixadx1;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixkmml/;1610457291;2;True;False;anime;t5_2qh22;;0;[]; -[];;;iREALLYwannaeat_cake;;;[];;;;text;t2_5g5v8mgt;False;False;[];;A lot of anime viewers are also manga readers and the story can get quite dark especially later on which is why there's hype. imo the characters are quite well-written too and characters are developed at a good pace (though the anime hasn't really gotten to that point yet).;False;False;;;;1610402554;;False;{};gixkqsb;False;t3_kv3521;False;False;t1_gix2udz;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixkqsb/;1610457368;4;True;False;anime;t5_2qh22;;0;[]; -[];;;PilotSSB;;;[];;;;text;t2_nn1j8;False;False;[];;"I work at a manga shop, I talk about this a lot on reddit so you can see my comments to confirm. A solid 90% of our customer base are women/teenage girls, so we pretty much put our focus on the shows popular in those demographics. - -The 3 biggest series I've found (outside of My Hero, which nothing comes close too it's easily the most popular thing with woman, but also just across the board) are Toilet-bound, Danganronpa, and Tokyo Ghoul. I can't stress how many people come into the shop with those 3 series as their be all and end all. There are other shows too that are super popular that you don't see on reddit, or you do but not to the extend of a lot of the internet darlings (Assassination Classroom, Black Butler, Blue Exorcist, Soul Eater etc). - -Also while I have the attention of anyone reading this. Jojo's fans are the worst people in the world in person please stop telling me you could do my job better than me because I haven't read the Jojo's manga. You couldn't. My job is boring. Please stop being mean to me, and please stop following me into the staff room to tell me more about Jojo's.";False;False;;;;1610402610;;False;{};gixkv0a;False;t3_kv3521;False;False;t1_gixadx1;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixkv0a/;1610457450;52;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;"I don't think putting ""The Misfit of Demon King Academy"" as your eighth best show of the year is exactly a cultural difference.";False;False;;;;1610402676;;False;{};gixkzyn;False;t3_kv3521;False;True;t1_gixjot5;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixkzyn/;1610457540;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AdamGoodtime123;;;[];;;;text;t2_3okyaqk1;False;False;[];;True enough, I myself recall having similar experiences with The Great Gatsby and The Picture of Dorian Gray. Still I'd rather read a well-written boring book than a poorly written boring book.;False;False;;;;1610402679;;False;{};gixl06a;False;t3_kv3521;False;True;t1_gixig4i;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixl06a/;1610457543;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yatsugami;;MAL;[];;http://myanimelist.net/animelist/Yatsugami;dark;text;t2_8mbg1;False;False;[];;Dang I've been wanting to watch akudama drive it looks cool;False;False;;;;1610402710;;False;{};gixl2da;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixl2da/;1610457582;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;I think it's a good idea to get exposure to kanji and kanji radicals as much as possible. You can link together a lot information based on the way its written and what characters get used, especially if you've already memorized hiragana and katakana.;False;False;;;;1610402721;;False;{};gixl38j;False;t3_kv06fx;False;True;t1_gixf2gy;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gixl38j/;1610457597;2;True;False;anime;t5_2qh22;;0;[]; -[];;;daffy_duck233;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/atlantean233;light;text;t2_mqlr3;False;False;[];;"You should watch it then. It's mediocre. The only things that save it are music, visuals, and sentimental value. I'm saying this not because I hate SAO; imo Alicization s1 was way better.";False;False;;;;1610402822;;1610416580.0;{};gixlayy;False;t3_kv3521;False;True;t1_giwsalm;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixlayy/;1610457728;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;TheSoaringDingo;;;[];;;;text;t2_2yc2u07x;False;False;[];;what anime is it;False;False;;;;1610402836;;False;{};gixlc2e;False;t3_kv3521;False;True;t1_gix3bob;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixlc2e/;1610457753;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PM_me_sour_beerz;;;[];;;;text;t2_z2jxv;False;False;[];;Holy shit, Jan 2020 seems ike a decade ago. Yeah, Eizouken and Sleepy Princess are my favs from last year;False;False;;;;1610402860;;False;{};gixldvd;False;t3_kv3521;False;True;t1_giwmukm;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixldvd/;1610457786;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nice_Promotion_777;;;[];;;;text;t2_8ml2n172;False;False;[];;I’m really surprised the final episode thread wasn’t full of people shitting on kazuya for backing out last moment.;False;False;;;;1610402883;;False;{};gixlfkb;False;t3_kv3521;False;True;t1_giwqt7k;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixlfkb/;1610457816;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JuicyJay18;;;[];;;;text;t2_ym5ks;False;False;[];;I don’t know if it’s just me but I haven’t been able to finish the season yet because it feels incredibly slow paced and just...sort of boring? Like I’ve tried sitting down and getting back into it a couple times but I’ve been struggling. I’m not sure if my taste for the show itself changed or if it’s this season in particular.;False;False;;;;1610402883;;False;{};gixlfkh;False;t3_kv3521;False;True;t1_gix8rtz;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixlfkh/;1610457816;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KanchiHaruhara;;MAL;[];;http://myanimelist.net/profile/KanchiHaruhara;dark;text;t2_fdre0;False;False;[];;Mine are pretty broad I'd say, it's more that I'm not sure what sort of content is more popular with the female demographic.;False;False;;;;1610402899;;False;{};gixlgr8;False;t3_kv3521;False;True;t1_gixkmml;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixlgr8/;1610457836;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PM_me_sour_beerz;;;[];;;;text;t2_z2jxv;False;False;[];;No love for Sleepy Princess?! That and Eizouken were my 2 favorites, but I didn't really watch much anime last year.;False;False;;;;1610402943;;False;{};gixljx6;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixljx6/;1610457893;1;True;False;anime;t5_2qh22;;0;[]; -[];;;h_hue;;;[];;;;text;t2_965gj878;False;False;[];;"First of all, this list is ""best anime poll,"" not ""best anime ranking,"" those two are different things. And there are shows that appeal to people regardless of culture. This sub quite liked the show as well.";False;False;;;;1610402944;;False;{};gixljyt;False;t3_kv3521;False;True;t1_gixkzyn;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixljyt/;1610457894;0;True;False;anime;t5_2qh22;;0;[]; -[];;;DahDutcher;;;[];;;;text;t2_mcxlb;False;False;[];;Quite possible the worst top 10 I've ever seen, not one show that was even remotely interesting to me.;False;False;;;;1610402966;;False;{};gixllne;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixllne/;1610457923;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Reduced_Silver;;;[];;;;text;t2_gp4v6;False;False;[];; Seikon no Qwaser;False;False;;;;1610402966;;False;{};gixllo1;False;t3_kv0xz9;False;True;t3_kv0xz9;/r/anime/comments/kv0xz9/best_fan_service_anime/gixllo1/;1610457923;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Veeron;;MAL;[];;http://myanimelist.net/animelist/Troglodyte;dark;text;t2_6v4zw;False;True;[];;"It's a flashcard program using a [Spaced Repetition](https://en.wikipedia.org/wiki/Spaced_repetition) algorithm, which basically just schedules flashcards with progressively longer intervals every time you pass them. [Here's](https://www.youtube.com/watch?v=lz60qTP2Gx0) a pretty detailed overview, this channel has some very helpful stuff. - -I'm kinda surprised you haven't heard of it, given that it's been touted as the greatest memorization tool in most Japanese-learning communities for years now, you can't go anywhere on /r/LearnJapanese without someone mentioning it. - -I've been using it every day for half a year and I've already memorized over a thousand kanji. And I'm not even going at a particularly fast pace, some people do the entire Jouyou list in just three months.";False;False;;;;1610402976;;False;{};gixlmfe;False;t3_kv06fx;False;True;t1_gixe9nm;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gixlmfe/;1610457935;3;True;False;anime;t5_2qh22;;0;[]; -[];;;daffy_duck233;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/atlantean233;light;text;t2_mqlr3;False;False;[];;"Runway de waratte is a breath of fresh air tbh. - -Deca-dence was ok-ish for me: concepts, visuals, and pacing were good, resolution/ending was not.";False;False;;;;1610403004;;False;{};gixlog7;False;t3_kv3521;False;True;t1_giwcqip;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixlog7/;1610457970;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mochachiiino;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://twitter.com/Mochachiiino;dark;text;t2_dnn0k;False;False;[];;these rankings always get me fckt up. i only understand kaguya being #1;False;False;;;;1610403013;;False;{};gixlp28;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixlp28/;1610457981;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KanchiHaruhara;;MAL;[];;http://myanimelist.net/profile/KanchiHaruhara;dark;text;t2_fdre0;False;False;[];;"If you had asked me I'd have only been able to guess one of those, yet I'm still somehow not surprised by any of them lol. Somehow they definitely seem to be what I'd have expected. - -And yeah, even when I first got into Jojo the fanbase was already getting obnoxious, now it's a bit too much. I'd say working at a manga shop would be neat but my hipster self probably wouldn't tolerate it.";False;False;;;;1610403059;;False;{};gixlsf1;False;t3_kv3521;False;False;t1_gixkv0a;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixlsf1/;1610458038;8;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptainDangerboat;;;[];;;;text;t2_3uqvsmgx;False;False;[];;I think people got it out of their systems by mid season.;False;False;;;;1610403092;;False;{};gixluwa;False;t3_kv3521;False;True;t1_gixlfkb;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixluwa/;1610458078;2;True;False;anime;t5_2qh22;;0;[]; -[];;;No-Development-772;;;[];;;;text;t2_9afdw2l3;False;False;[];;"The actual martial arts in that were some of the best -Ive ever seen. -But the supernatural parts ruined it for me, they werent even good for what they were either. -Dude jumps in the air and swings his feet to throw some dragons, those were extremely underwhelming and didnt look like they had any impact except in the last fight. - -What i also didnt get was how the regular people in the crowd etc reacted to some of these attacks. -One summons his demon clown thing and everyone is shocked cuz its supernatural thing. -the next guy summons a demonshark thing and it chews on that character for half of the episode, spilling gallons of blood and the crowds reaction is ""thats totally normal and not even gruesome"". -Then again another fight someone lands a regular punch in someones stomach and the crowd is shocked again and makes emphatic and sad faces,almost crying from feeling sorry. - -The plot was also something that we have seen a 100 times already. - -But great music,well animated and a nice artstyle aswell. And also the real martial arts was god tier and got me really exited.";False;False;;;;1610403111;;False;{};gixlwao;False;t3_kv3521;False;False;t1_giwy2qo;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixlwao/;1610458103;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Doc_Timeo;;;[];;;;text;t2_4i63ddny;False;False;[];;Where is Eizouken tho 😔...;False;False;;;;1610403139;;False;{};gixlyc3;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixlyc3/;1610458138;1;True;False;anime;t5_2qh22;;0;[]; -[];;;betelgeuse910;;;[];;;;text;t2_yufjogx;False;False;[];;"Then why conduct surveys at all? Do you think all surveys are foolish? Or do you think favorite anime votes need 500k+ responders to be meaningful? If you haven't gathered enough responders, should you not publish it at all? - -Data is data. Take the list with a grain of salt, keeping in mind that there were only 47k voters. It's not like that they are advertising the list to be absolutely accurate or anything.";False;False;;;;1610403168;;False;{};gixm0l0;False;t3_kv3521;False;False;t1_gixjnm6;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixm0l0/;1610458177;8;True;False;anime;t5_2qh22;;0;[]; -[];;;bbbggghhh;;;[];;;;text;t2_2f2ehzzz;False;False;[];;">when the anime is portraying a virgin loser (no offense) mc who then gets a harem - -So pretty much half of the romcoms and shonen dramas out there, incluiding the praised ones like Oregairu and the Quintuplets, lol. - -But take in consideration Kazuya is extremely disliked on most of the community despite being the typical virgin loser MC of romcoms animes, and the heroines have heavily mixed opinions (alho Sumi and Mami have the most clear concensus for each one) as well. - -Is quite surprising how not only the anime managed to get popular despite the doom posting prior start the broadcast but also the manga which was really hated before the anime.";False;False;;;;1610403240;;False;{};gixm60u;False;t3_kv3521;False;False;t1_gixb8cj;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixm60u/;1610458274;4;True;False;anime;t5_2qh22;;0;[]; -[];;;japirate777;;;[];;;;text;t2_wuuff;False;False;[];;Surprised Tower of god didn’t make it;False;False;;;;1610403245;;False;{};gixm6co;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixm6co/;1610458280;1;True;False;anime;t5_2qh22;;0;[]; -[];;;prettydirtyboy;;;[];;;;text;t2_1dnzz13c;False;False;[];;Of the year? Yikes;False;False;;;;1610403250;;False;{};gixm6rl;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixm6rl/;1610458288;1;True;False;anime;t5_2qh22;;0;[]; -[];;;daffy_duck233;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/atlantean233;light;text;t2_mqlr3;False;False;[];;"This. -Upvote for visibility.";False;False;;;;1610403266;;False;{};gixm7yu;False;t3_kv3521;False;True;t1_givt5h0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixm7yu/;1610458309;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ezylo1224;;;[];;;;text;t2_8rr48vxq;False;False;[];;"The romance genre. Not the harem, ecchi shit, the good old shoujo romance. - -That and cutesy SOL stuff that’s not loli/ecchi. Good old fashioned girls just being girls. - -Pretty much just untick loli, harem, echi, shounen TBH";False;False;;;;1610403273;;False;{};gixm8h7;False;t3_kv3521;False;True;t1_gixadx1;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixm8h7/;1610458317;1;True;False;anime;t5_2qh22;;0;[]; -[];;;harshit1197;;;[];;;;text;t2_4hm0ixa2;False;False;[];;Id invaded should be at least in top 3;False;False;;;;1610403345;;False;{};gixmdw4;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixmdw4/;1610458415;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RunningEarly;;;[];;;;text;t2_k2v8g;False;False;[];;That makes a lotta sense, I would choose kakushigoto as my pick and wouldn't find it weird that people that's into wholesome family oriented comedy would choose that as their 1 as well.;False;False;;;;1610403347;;False;{};gixme06;False;t3_kv3521;False;True;t1_givt5h0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixme06/;1610458417;1;True;False;anime;t5_2qh22;;0;[]; -[];;;moh720;;;[];;;;text;t2_8le61ww;False;False;[];;It was boring except the last ep, not as good as the first two.;False;False;;;;1610403349;;False;{};gixme68;False;t3_kv3521;False;True;t1_gix8rtz;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixme68/;1610458420;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Innsui;;;[];;;;text;t2_o22wl;False;False;[];;I never seen rent a girlfriend yet but idk how people thought misfit was that good. It was decent but the story and characters were so bland for me. I usually love iseikai or fantasy anime with op characters but that was just mediocre.;False;False;;;;1610403389;;False;{};gixmh5g;False;t3_kv3521;False;True;t1_givtkkv;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixmh5g/;1610458472;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DRIESASTER;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Huybensdries;light;text;t2_14rchx;False;False;[];;Huh, i though it was pretty fast paced compared to s1. S2 was incredibly fast though;False;False;;;;1610403392;;False;{};gixmhfp;False;t3_kv3521;False;True;t1_gixlfkh;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixmhfp/;1610458476;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Silphiun;;;[];;;;text;t2_87tw9bh7;False;False;[];;The episodes are out but not simultaneously dubbed and globally aired. The episode will come out in Japan but it may be 9 months before it comes to the US.;False;False;;;;1610403393;;False;{};gixmhg8;False;t3_kv3521;False;False;t1_gixh09h;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixmhg8/;1610458476;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PilotSSB;;;[];;;;text;t2_nn1j8;False;False;[];;When I first got the job, the contrast between the online anime community, and the irl anime community blew my fucking mind. My top 3 are Madoka, Monogatari, and Kaguya, which let's be honest, online is the most basic of basic opinions. You could ask everyone on this subreddit their favourites and these names will pop up constantly. Yet irl customers ask me for my favourites and *haven't even heard of them*. Demographics are a huge thing for anime that I never really understood the gravity of. It's gonna be why SAO gets a million seasons cause it's popular with teen girls (another series I forgot to mention in my comment above).;False;False;;;;1610403395;;False;{};gixmhmo;False;t3_kv3521;False;False;t1_gixlsf1;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixmhmo/;1610458479;21;True;False;anime;t5_2qh22;;0;[]; -[];;;KanchiHaruhara;;MAL;[];;http://myanimelist.net/profile/KanchiHaruhara;dark;text;t2_fdre0;False;False;[];;I was under the impression that shounen was very popular with girls though, what with their huge casts of pretty/cool guys.;False;False;;;;1610403462;;False;{};gixmmoh;False;t3_kv3521;False;True;t1_gixm8h7;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixmmoh/;1610458568;1;True;False;anime;t5_2qh22;;0;[]; -[];;;moh720;;;[];;;;text;t2_8le61ww;False;False;[];;jujustsu is mid;False;False;;;;1610403463;;False;{};gixmmpd;False;t3_kv3521;False;True;t1_givzv0k;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixmmpd/;1610458568;1;True;False;anime;t5_2qh22;;0;[]; -[];;;daffy_duck233;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/atlantean233;light;text;t2_mqlr3;False;False;[];;For original works Akudama Drive had a much better treatment of the plot resolution than Deca-Dence imo, and that takes the cake for me.;False;False;;;;1610403473;;False;{};gixmnhr;False;t3_kv3521;False;False;t1_giwj494;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixmnhr/;1610458583;7;True;False;anime;t5_2qh22;;0;[]; -[];;;JAKZILLASAURUS;;;[];;;;text;t2_6c2ww;False;False;[];;Dunno why people are so surprised to see RAG so high up. It consistently sat at or near the top of it’s season’s popularity rankings.;False;False;;;;1610403504;;False;{};gixmpru;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixmpru/;1610458640;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tokyodivine;;;[];;;;text;t2_3elkp9o0;False;False;[];;same! i got tbhk brain rot, and i’m getting the physical manga volumes as it comes out;False;False;;;;1610403509;;False;{};gixmq3z;False;t3_kv3521;False;True;t1_giw1iiz;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixmq3z/;1610458646;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fullmetalalfonce;;;[];;;;text;t2_4sr5v624;False;False;[];;Where's jujitsu kaisen;False;False;;;;1610403734;;False;{};gixn70s;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixn70s/;1610458950;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610403764;;False;{};gixn8pb;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixn8pb/;1610458980;1;True;False;anime;t5_2qh22;;0;[]; -[];;;seninn;;MAL;[];;http://myanimelist.net/animelist/Senninn0;dark;text;t2_fw8p2;False;False;[];;That sounds like something a JoJo fan would do. - A JoJo Fan;False;False;;;;1610403818;;False;{};gixncx9;False;t3_kv3521;False;True;t1_gixkv0a;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixncx9/;1610459056;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lukeuntld072;;;[];;;;text;t2_y8pgd;False;False;[];;How is bookworm 39th i think tht show is great. Jujutsu kaisen too wtf;False;False;;;;1610403831;;False;{};gixndys;False;t3_kv3521;False;True;t1_givzv0k;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixndys/;1610459075;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Alkazzi;;;[];;;;text;t2_2bt2ntfk;False;False;[];;"Lol re zero is shit -There we're like 20 other animes better than shit zero - -Toxic fanbase strikes again";False;False;;;;1610403863;;False;{};gixng85;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixng85/;1610459115;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;DimTGR;;;[];;;;text;t2_2vv0hfsa;False;False;[];;#8 was the best anime of those S1's.;False;False;;;;1610403871;;False;{};gixngu1;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixngu1/;1610459125;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JuicyJay18;;;[];;;;text;t2_ym5ks;False;False;[];;Yeah I dunno. Like I said it might just be that my taste has changed and I’m not really into the show anymore, but each episode almost felt like a chore to watch. I’m going to sit down again soon and give it another go though, I want to see the ending after waiting so long for this season;False;False;;;;1610403872;;False;{};gixngwg;False;t3_kv3521;False;True;t1_gixmhfp;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixngwg/;1610459127;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Parrk;;;[];;;;text;t2_46l6z;False;False;[];;I am an avid ToG reader, and I didn't bother watching most episodes because at the pace they're moving, it'll be season 4 before they get to the good parts.;False;False;;;;1610403937;;False;{};gixnlst;False;t3_kv3521;False;True;t1_giw2zdh;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixnlst/;1610459216;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DRIESASTER;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Huybensdries;light;text;t2_14rchx;False;False;[];;Yea def do that. I watched them all back to back so never really got out of it. But i feel you. I feel the same about re zero s2;False;False;;;;1610403947;;False;{};gixnmip;False;t3_kv3521;False;True;t1_gixngwg;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixnmip/;1610459229;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tempics;;;[];;;;text;t2_2fgr8ps2;False;False;[];;Dang I was really hoping JJK would make this list;False;False;;;;1610404194;;False;{};gixo4y9;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixo4y9/;1610459581;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610404209;;False;{};gixo643;False;t3_kv3521;False;True;t1_gixggq0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixo643/;1610459602;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Parrk;;;[];;;;text;t2_46l6z;False;False;[];;"Maybe they were turned off by how protag's mom was revealed as a dojuinshi ntr sow. - -Or was that on accelerator's show?";False;False;;;;1610404309;;False;{};gixodkd;False;t3_kv3521;False;True;t1_gix3xil;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixodkd/;1610459736;0;True;False;anime;t5_2qh22;;0;[]; -[];;;apurplerosefor_her;;;[];;;;text;t2_48eicaez;False;False;[];;why the hell is rent a gf before oregairu?;False;False;;;;1610404316;;False;{};gixoe18;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixoe18/;1610459744;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NewCountry13;;;[];;;;text;t2_120nmb;False;False;[];;"I wasn't responding to you saying rent a girlfriend is good. I was responding to you saying it doesn't matter that it's not a high quality anime because you think it doesn't matter as long as it's entertaining. I was responding to that idea. The idea that - ->highly entertaining is the only metric that makes an anime good.";False;False;;;;1610404367;;False;{};gixohq5;False;t3_kv3521;False;False;t1_gixi86h;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixohq5/;1610459812;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Earthborn92;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EarthB;light;text;t2_al1wj;False;False;[];;First Past The Post, just the system used to elect a lot of governments. Isn't it fun?;False;False;;;;1610404408;;False;{};gixokn7;False;t3_kv3521;False;False;t1_givznm3;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixokn7/;1610459871;6;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"> Railgun T (34th) - -Holy hell, what happened, Japan? Or was this a western poll?";False;False;;;;1610404519;;False;{};gixosys;False;t3_kv3521;False;True;t1_givzv0k;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixosys/;1610460018;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dorting;;;[];;;;text;t2_9mo3k;False;False;[];;such a below avarage year;False;False;;;;1610404556;;False;{};gixovsc;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixovsc/;1610460072;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;Yeah, Dorohedoro was my #4 of the year, after Re:Zero 2, Golden Kamuy 3 and Akudama Drive.;False;False;;;;1610404566;;False;{};gixowmj;False;t3_kv3521;False;True;t1_gix2ir9;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixowmj/;1610460087;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JuicyJay18;;;[];;;;text;t2_ym5ks;False;False;[];;Yeah re zero s2 feels quite a bit slower paced compared to s1 but I’ve been enjoying it a lot. I enjoyed the story building about the witches and all that though. It feels like a lot of questions from the first season are being answered, even if the pace is slower.;False;False;;;;1610404682;;False;{};gixp59e;False;t3_kv3521;False;True;t1_gixnmip;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixp59e/;1610460242;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SceneArc;;;[];;;;text;t2_5efg0lwi;False;False;[];;Oregairu been done so dirty, should be at least 3rd;False;False;;;;1610404723;;False;{};gixp893;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixp893/;1610460295;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DRIESASTER;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Huybensdries;light;text;t2_14rchx;False;False;[];;Idk i feel the exact same way as you about oregairu. I feel like i know it's good and that it's something i should enjoy but i just don't. It feels like such a chore;False;False;;;;1610404738;;False;{};gixp9d9;False;t3_kv3521;False;True;t1_gixp59e;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixp9d9/;1610460317;1;True;False;anime;t5_2qh22;;0;[]; -[];;;30mag;;MAL;[];;https://myanimelist.net/animelist/30mag;dark;text;t2_69g2t;False;False;[];;"I haven't been around r/anime in a while... - -I am so afraid to ask what ""Toilet-bound Hanako-kun"" is about.";False;False;;;;1610404816;;False;{};gixpf1v;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixpf1v/;1610460419;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JuicyJay18;;;[];;;;text;t2_ym5ks;False;False;[];;That’s fair! I can definitely see how somebody would feel that way because it has been a lot of story building without much story progress. For me the payoff has been more rewarding than for oregairu, but that’s just my personal preference. Different strokes for different folks!;False;False;;;;1610404927;;False;{};gixpn84;False;t3_kv3521;False;True;t1_gixp9d9;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixpn84/;1610460567;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KitSwiftpaw;;;[];;;;text;t2_i78tk;False;False;[];;We are missing Reviewers...;False;False;;;;1610404974;;False;{};gixpqqd;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixpqqd/;1610460633;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrPringles23;;;[];;;;text;t2_bjtdc;False;False;[];;"Fuck Kanji. - -I mean its nice that you can use a shitload less characters to write what you need to... - -But it is the major roadblock for learning the language for like 99% of people. - -It isn't bad enough that some are extremely similar and that there are probably 3000+ you want to know. - -But having multiple readings for each one just feels like a cliff that I'll never climb. - -Also the lack of spaces and periods is rather daunting. So you can't even really start to try reading blocks of text that you find in the real world until you know like 80% of the vocab at least. - -/rant";False;False;;;;1610404981;;False;{};gixpr8f;False;t3_kv06fx;False;False;t1_giveu8y;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gixpr8f/;1610460643;5;True;False;anime;t5_2qh22;;0;[]; -[];;;quintooo3;;;[];;;;text;t2_2rhwq5q9;False;False;[];;It was obvious but I did not expect the amount of hurt for the sunk ship;False;False;;;;1610404983;;False;{};gixprdn;False;t3_kv3521;False;False;t1_gixc1rx;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixprdn/;1610460645;20;True;False;anime;t5_2qh22;;0;[]; -[];;;DRIESASTER;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Huybensdries;light;text;t2_14rchx;False;False;[];;Yea exactly right. I just think it's been too long for me since season one. I cant seem to care aboit subaru anymore.;False;False;;;;1610404987;;False;{};gixpro4;False;t3_kv3521;False;True;t1_gixpn84;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixpro4/;1610460651;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610405010;;False;{};gixptcz;False;t3_kv3521;False;True;t1_gixahqw;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixptcz/;1610460682;1;True;False;anime;t5_2qh22;;0;[]; -[];;;czk_21;;;[];;;;text;t2_mi7ob;False;False;[];;"dont know madoka or monogatari(know it a series), kaguya is pretty good but there are other similar things like Uzaki-chan(genre/quality), I wouldnt say those are most ""basic"", it always depends what kind of genres you like the most";False;False;;;;1610405058;;False;{};gixpwzj;False;t3_kv3521;False;True;t1_gixmhmo;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixpwzj/;1610460747;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LightningQW;;;[];;;;text;t2_2zmpys0w;False;False;[];;sad for no science fell in love or smile down the runway but glad kaguya and kakushigoto got love;False;False;;;;1610405092;;False;{};gixpzjm;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixpzjm/;1610460792;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xFrixor;;;[];;;;text;t2_16nj4l;False;False;[];;No Haikyuu...;False;False;;;;1610405144;;False;{};gixq3cm;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixq3cm/;1610460862;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Routine_Spinach_8841;;;[];;;;text;t2_516hz73z;False;False;[];;Actually it was top 3 in karma average 2020, only below Re:zero and Kaguya.;False;False;;;;1610405201;;False;{};gixq7ki;False;t3_kv3521;False;False;t1_giw4wbw;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixq7ki/;1610460937;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Routine_Spinach_8841;;;[];;;;text;t2_516hz73z;False;False;[];;One day we will receive our Kubera, Magician, Martial Peak and solo leveling animes :);False;False;;;;1610405293;;False;{};gixqea5;False;t3_kv3521;False;True;t1_giw5c8e;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixqea5/;1610461070;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PilotSSB;;;[];;;;text;t2_nn1j8;False;False;[];;"I mean basic as in, popular on the internet. Kaguya is the hotness right now (for good reason it's fucking dope). Bakemonogatari is actually the second best selling anime DVD of all time (at least in Japan). But in person no one has ever heard of them. - -Madoka is the best anime ever made go watch it right now it's amazing. No I won't listen to anyone disagree with me I am the king of anime and my opinion is the one true fact.";False;False;;;;1610405296;;False;{};gixqejj;False;t3_kv3521;False;False;t1_gixpwzj;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixqejj/;1610461074;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;They'll hear our prayers hahahahaha;False;False;;;;1610405377;;False;{};gixqkks;False;t3_kv3521;False;True;t1_gixqea5;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixqkks/;1610461185;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sailorveenus;;;[];;;;text;t2_4c4ppuri;False;False;[];;same they’re both in my top 5 anime. comedy, slice of life with family plot are my favourite;False;False;;;;1610405409;;False;{};gixqmw5;False;t3_kv3521;False;True;t1_gix6t7i;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixqmw5/;1610461227;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_Zer0Two;;;[];;;;text;t2_2rilotlj;False;False;[];;Imagine what it feels like being on the kawasaki ship train. Hurts like hell;False;False;;;;1610405479;;False;{};gixqs2c;False;t3_kv3521;False;False;t1_gixggq0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixqs2c/;1610461319;18;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610405588;;1610406122.0;{};gixr0be;False;t3_kv3521;False;True;t1_giw1ju0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixr0be/;1610461470;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jrkid100;;;[];;;;text;t2_1dh6z2tq;False;False;[];;"If only they actually adapted the story, fuckin Ono. -At least Progressive looks like they will cut less of the characters inner dialogue";False;False;;;;1610405593;;False;{};gixr0nd;False;t3_kv3521;False;False;t1_gixlayy;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixr0nd/;1610461476;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LordGravewish;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Gravewish/;light;text;t2_4a64d;False;False;[];;"You're exaggerating with the 3000+. Assuming you don't need to be able to read ancient Japanese or highly technical text (e.g. scientific papers in very niche subjects), you'll be a fluent reader with like ~1500 kanji under your belt as well as the associated vocab - you don't even need the full jouyou list (2136 kanji total; lots of them used solely for names/places etc), let alone 3000+. - -Heck, most Japanese natives with only High School education don't know 3000 Kanji lol, only Jouyou and perhaps a couple more. Many natives can't even pass [Kankei Level 3](https://en.wikipedia.org/wiki/Kanji_Kentei) which tests in-depth knowledge of ~1600 kanji. - -Also, regarding multiple readings - if you're memorizing kanji readings individually, you're doing something very wrong. Learn to recognise the kanji into simple keywords, then learn associated vocab reading+writing as a pair. - -Your brain will learn to recognize and produce groups of kanji as a single ""vocab"" (including the pronunciation), without you needing to ever think about ""readings"" explicitly - exactly as it learns words in the latin alphabet by shape without needing to parse each letter individually (which would be slow). Hvae you nveer tired to sawp ltteres isidne wrdos and wondered why they're still so easy to read as long as the overall shape is similar? - -Kanji *are* daunting, but the biggest issue is that it introduces a steeper learning curve before you see any practical results - and thus people never start and/or lose motivation more easily. In the end, if you make it through the initial (long) bump, you won't necessarily have spent more time studying vocab/writing than if you were learning some other language that has little in common with your native language but uses the latin alphabet.";False;False;;;;1610405610;;1610418611.0;{};gixr1yz;False;t3_kv06fx;False;False;t1_gixpr8f;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gixr1yz/;1610461501;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Ezylo1224;;;[];;;;text;t2_8rr48vxq;False;False;[];;"It’s mostly a power trip genre for teenage boys. - -“Shounen”being the target audience not necessarily the contents of the anime";False;False;;;;1610405620;;False;{};gixr2pp;False;t3_kv3521;False;True;t1_gixmmoh;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixr2pp/;1610461515;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ImANewRedditor;;;[];;;;text;t2_90ty9;False;False;[];;You don't have to comment to upvote though.;False;False;;;;1610405633;;False;{};gixr3p3;False;t3_kv3521;False;True;t1_giwpzf6;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixr3p3/;1610461534;1;True;False;anime;t5_2qh22;;0;[]; -[];;;impendinggreatness;;;[];;;;text;t2_13c2yv;False;False;[];;"Tower of God not even on there?? - -What the heck";False;False;;;;1610405686;;False;{};gixr7n7;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixr7n7/;1610461607;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Routine_Spinach_8841;;;[];;;;text;t2_516hz73z;False;False;[];;Tower of God is out of top ten, Thanos won there :c;False;False;;;;1610405719;;False;{};gixra1m;False;t3_kv3521;False;True;t1_gixaicl;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixra1m/;1610461651;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NeedsFC;;;[];;;;text;t2_1ufdimtl;False;False;[];;Kawasaki top 3 and I wish she was the lead girl. Even over Yui.;False;False;;;;1610405768;;False;{};gixrdr2;False;t3_kv3521;False;True;t1_gixqs2c;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixrdr2/;1610461722;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Alyssa-Matsuoka;;;[];;;;text;t2_1thiizfa;False;False;[];;This is some BULLSHIT ppl really out here thinking that Rent a girlfriend is a better show than Moriarty, Jujutsu Kaisen and even Fruits basket...;False;False;;;;1610405789;;False;{};gixrfbh;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixrfbh/;1610461749;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cidalkimos;;;[];;;;text;t2_zt8p4vz;False;False;[];;Tower of god? JJK? Dorohedoro?;False;False;;;;1610405853;;False;{};gixrjzq;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixrjzq/;1610461838;1;True;False;anime;t5_2qh22;;0;[]; -[];;;turtledragon27;;;[];;;;text;t2_kylr4;False;False;[];;Ailicization s1 was actually pretty refreshing for the series, but s2 ruined whatever they had going.;False;False;;;;1610405929;;False;{};gixrphh;False;t3_kv3521;False;True;t1_gixlayy;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixrphh/;1610461939;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NarejED;;;[];;;;text;t2_s0fre;False;False;[];;Once again reinforcing the ironclad law that AC has no taste;False;False;;;;1610405935;;False;{};gixrpx6;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixrpx6/;1610461948;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DewbiePal;;;[];;;;text;t2_21xlizmz;False;False;[];;Hanako is a great manga. I loved the anime too, besides some of the episodes where the animation was kinda bad. Also the op is a banger;False;False;;;;1610405937;;False;{};gixrq3y;False;t3_kv3521;False;False;t1_giw6u2q;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixrq3y/;1610461951;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Stoppels;;;[];;;;text;t2_aif15;False;False;[];;Do people like it better than the previous seasons? I've watched everything chronologically, just finished Alternative and am about to start with Alicization. I've come to realize I apparently disagree with the hivemind because so many popular reviews hate on it so much, I guess I'm just stubborn. But if even that same fanbase hivemind thinks Alicization's better, that's good news lol.;False;False;;;;1610405941;;False;{};gixrqdi;False;t3_kv3521;False;False;t1_giwlfnd;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixrqdi/;1610461956;2;True;False;anime;t5_2qh22;;0;[]; -[];;;huntrshado;;;[];;;;text;t2_404y4;False;False;[];;"Ruka is a good girl but her situation is kind of weird. She is kind of unhealthily attached to Kazuya because he has been the only guy able to get her BPM above a certain threshold, but they don't actually have much chemistry or reason to be together. - -I wouldn't compare her to Rem, though. The thing I think a lot of people miss about Rem (and other ReZero characters) is that because Subaru resets after every death, the actual route that the story proceeds on is the one where Rem sees Subaru effortlessly solve every single problem. She has never really seen him fail before (most of the cast hasn't), thus she gets attached and happily supports him when he starts going through a hard time, despite knowing he already loves Emilia. It is kind of a warped relationship (most of Subaru's are, for the same reasons) - -I think he will definitely end up with Chizuru in the end, though, unless it is like Nisekoi where the guy chases after 1 girl for most the series and switches it up later.";False;False;;;;1610405961;;False;{};gixrrta;False;t3_kv3521;False;True;t1_gix9oiy;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixrrta/;1610461981;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JiddyBang;;;[];;;;text;t2_6v5jm;False;False;[];;Re:zero as a series will be finished in the upcoming cour? Like the entire light novel/manga (idk which) storyline will be adapted and done?;False;False;;;;1610405967;;False;{};gixrs9n;False;t3_kv3521;False;True;t1_givr4cb;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixrs9n/;1610461989;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Lcreasey127;;;[];;;;text;t2_3be52c84;False;False;[];;Man akudama drive was good but that ending though was sad at least to me;False;False;;;;1610406055;;False;{};gixryjv;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixryjv/;1610462101;1;True;False;anime;t5_2qh22;;0;[]; -[];;;czk_21;;;[];;;;text;t2_mi7ob;False;False;[];;"I think I watched some monogatari with some scissors a bit, I dropped it - -> I am the king of anime and my opinion is the one true fact. - -lol, ok, are u in japan btw?";False;False;;;;1610406061;;False;{};gixrywp;False;t3_kv3521;False;True;t1_gixqejj;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixrywp/;1610462108;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610406146;;False;{};gixs50e;False;t3_kv3521;False;True;t1_giw1ju0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixs50e/;1610462229;1;True;False;anime;t5_2qh22;;0;[]; -[];;;huntrshado;;;[];;;;text;t2_404y4;False;False;[];;"I think that threads with high user interaction, such as comments discussing theories, naturally get more upvotes leading to them getting more attention. A self-fulfilling cycle. - -For me personally, I know that I hardly ever even see those episode discussion posts unless I specifically search for them or happen to go on the subreddit within 24 hours of the episode airing. And I only specifically search for a discussion thread when I want to see people's reactions to stuff.";False;False;;;;1610406159;;False;{};gixs5x0;False;t3_kv3521;False;True;t1_gixr3p3;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixs5x0/;1610462247;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Routine_Spinach_8841;;;[];;;;text;t2_516hz73z;False;False;[];;"Thats the main plot of \[spoilersource\](/s""shuumatsu no Valkyrie"")";False;False;;;;1610406313;;False;{};gixsgz6;False;t3_kv3521;False;True;t1_giw1ju0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixsgz6/;1610462478;1;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;The ED is a banger too, probably in my Top 5 ED's of all time.;False;False;;;;1610406489;;False;{};gixstqn;False;t3_kv3521;False;False;t1_gixrq3y;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixstqn/;1610462761;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PilotSSB;;;[];;;;text;t2_nn1j8;False;False;[];;">I think I watched some monogatari with some scissors a bit, I dropped it - -That's fair, it's super weird. I love it but I dropped it the first time I watched it. - ->lol, ok, are u in japan btw? - -Nah, UK";False;False;;;;1610406530;;False;{};gixswr5;False;t3_kv3521;False;True;t1_gixrywp;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixswr5/;1610462840;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SquishedMemoryFoam;;;[];;;;text;t2_yihfqlf;False;False;[];;"> you'll be a fluent reader with like ~1500 kanji under your belt - -Oh man... 1500?... I've been studying kanji on and off as a hobby for about two years and I only have 270 done... :(";False;False;;;;1610406534;;False;{};gixsx27;False;t3_kv06fx;False;True;t1_gixr1yz;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gixsx27/;1610462849;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Wishbone-Lost;;;[];;;;text;t2_568u16y0;False;False;[];;Oregairu is way to low on that list;False;False;;;;1610406576;;False;{};gixt02m;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixt02m/;1610462918;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wishbone-Lost;;;[];;;;text;t2_568u16y0;False;False;[];;That list is sus;False;False;;;;1610406592;;False;{};gixt19l;False;t3_kv3521;False;True;t1_givtkkv;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixt19l/;1610462943;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;Nowhere near. This entire season covers arc 4, the Light Novel just finished arc 6 and the author has 11 arcs planned.;False;False;;;;1610406596;;False;{};gixt1l5;False;t3_kv3521;False;True;t1_gixrs9n;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixt1l5/;1610462949;2;True;False;anime;t5_2qh22;;0;[]; -[];;;youbenabou;;;[];;;;text;t2_2ivbm49n;False;False;[];;huh? where is the love for Haikyuu season 4?!;False;False;;;;1610406658;;False;{};gixt632;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixt632/;1610463044;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LordAxoris;;;[];;;;text;t2_2rukia91;False;False;[];;*Angry villainess noises*;False;False;;;;1610406681;;False;{};gixt7qt;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixt7qt/;1610463074;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Insullts;;;[];;;;text;t2_3e5zunbo;False;False;[];;Akudama Drive was honestly one of the most well done 12 episode series I’ve ever seen. Highly recommend for anyone who hasn’t seen it!;False;False;;;;1610406968;;False;{};gixtsh9;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixtsh9/;1610463465;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jokuc;;;[];;;;text;t2_db0l8;False;False;[];;haven't seen s3 but I thought s1 and s2 were pretty average, I don't understand the praise it gets.;False;False;;;;1610406992;;False;{};gixtu4v;False;t3_kv3521;False;True;t1_gix8rtz;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixtu4v/;1610463496;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ElCidManqueador;;;[];;;;text;t2_3deeowku;False;False;[];;"Don't understand why so many people are suprised about RAG > Oregairu in the top; taking into account that this was the worst Oregairu season (team yukino btw)";False;False;;;;1610407103;;False;{};gixu289;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixu289/;1610463647;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lucky_howl;;;[];;;;text;t2_80xnwlla;False;False;[];;Yeah that is one of my biggest gripes about the show. In the webtoon, they explain the power system and the MC actually had much more lines other than “Rachel”. Considering the criticisms it garnered from webtoon readers, hopefully they will not cut content, such as the power system or dialogues, in season 2. Well, if it does receive a season 2.;False;False;;;;1610407103;;1610408846.0;{};gixu28u;False;t3_kv3521;False;True;t1_gixdzle;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixu28u/;1610463647;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lucky_howl;;;[];;;;text;t2_80xnwlla;False;False;[];;I think ToG is 14 on this list. That’s not really that bad tbh. It’s pretty good to be within the top 20 of 2020.;False;False;;;;1610407313;;False;{};gixuh55;False;t3_kv3521;False;True;t1_giw5ghc;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixuh55/;1610463935;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LordGravewish;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Gravewish/;light;text;t2_4a64d;False;False;[];;"There's a difference between ""fluent (barely/not requiring OCR&dictionary)"" and ""fluent with frequent use of a dictionary&OCR"". You can probably hit the latter much earlier. - -I've got about 800 kanji under my belt and can already read basically everything ""real-world"" thrown at me as long as I use a dictionary/OCR liberally for the few things I still don't recognise. Friends who have been studying for longer and know ~1600 kanji say they encounter on average one or two new kanji per month (other than names) in the real world with significant reading practice and thus barely need the dictionary - they're effectively fluent readers (disregarding advanced grammatical constructions of course, which at that point is the only thing they're actively studying). - -But yes - I never meant to imply it was easy! It's as I was saying, just a ""huge bump"" before you can actually make use of your kanji knowledge in practical real world scenarios, but does not necessarily add up to a harder journey than other languages *once you reach the end*.";False;False;;;;1610407373;;1610408217.0;{};gixulaz;False;t3_kv06fx;False;True;t1_gixsx27;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gixulaz/;1610464012;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kevin-Garvey-1;;;[];;;;text;t2_qknunjb;False;False;[];;I think it was enjoyed by most anime viewers, but most people realize it was still flawed, and the readers on the manhwa were disappointed with it as an adaptation.;False;False;;;;1610407537;;False;{};gixuwym;False;t3_kv3521;False;True;t1_givzoa1;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixuwym/;1610464245;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kevin-Garvey-1;;;[];;;;text;t2_qknunjb;False;False;[];;Yeah, the ending really frustrated me. I felt like it could have been so much better.;False;False;;;;1610407613;;False;{};gixv2f0;False;t3_kv3521;False;True;t1_giw262m;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixv2f0/;1610464352;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MidBoss11;;;[];;;;text;t2_1qpnxjyc;False;False;[];;">Top 7 - -So it's your 7th favorite anime of the year";False;False;;;;1610407661;;False;{};gixv5uv;False;t3_kv3521;False;True;t1_gix9wln;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixv5uv/;1610464425;0;True;False;anime;t5_2qh22;;0;[]; -[];;;WelkinBro;;;[];;;;text;t2_5cpg0181;False;False;[];;No railgun? Bruh;False;False;;;;1610407674;;False;{};gixv6pv;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixv6pv/;1610464443;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeynaSepKim;;;[];;;;text;t2_2ay7grv6;False;False;[];;No idea I have 7 shows listed as my top 7 and don't remember which one goes where.;False;False;;;;1610407702;;False;{};gixv8sm;False;t3_kv3521;False;True;t1_gixv5uv;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixv8sm/;1610464490;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Beckymetal;;;[];;;;text;t2_10wmi0;False;False;[];;"Have you seen it? It really isn't fanservicey or anything. It's just two sisters living together, struggling for money in college with kinda gay feelings for one another that only get said outright near the end. There's one distanced kiss in the whole show, and the closest thing to titillating camera angles is in a dream sequence. - -Honestly very tame.";False;False;;;;1610407764;;False;{};gixvd9y;False;t3_kv06fx;False;True;t1_gixdge0;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gixvd9y/;1610464577;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KaptainTZ;;skip7;[];;;dark;text;t2_9fhynbf5;False;False;[];;"btw, this is a crazy coincidence, but I have a Top 10 Anime of 2020 video & graphic I released today. You can find them on my page. - -My apologies for the advertisement, but how can I not take advantage of this luck with my comment on a related post? I spent multiple days on them so I'd appreciate feedback.";False;False;;;;1610407799;;False;{};gixvfq0;False;t3_kv3521;False;True;t1_givt5h0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixvfq0/;1610464624;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MidBoss11;;;[];;;;text;t2_1qpnxjyc;False;False;[];;Sorry it was a crass joke, 7 is just a very specific number;False;False;;;;1610407882;;False;{};gixvlrg;False;t3_kv3521;False;True;t1_gixv8sm;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixvlrg/;1610464744;2;True;False;anime;t5_2qh22;;0;[]; -[];;;revmun;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/revmun;light;text;t2_vfv3k;False;False;[];;Damn I’ve literally only seen 2 of these then. And if they are all better than ToG, I should probably watch them.;False;False;;;;1610407936;;False;{};gixvpni;False;t3_kv3521;False;True;t1_gixuh55;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixvpni/;1610464823;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThatPeruvianDude;;;[];;;;text;t2_dwrmy;False;False;[];;LETS GOOOOO;False;False;;;;1610408188;;False;{};gixw7mf;False;t3_kv3521;False;True;t1_givtkkv;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixw7mf/;1610465181;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Zaldun;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Zaldun/;light;text;t2_12mhb4;False;False;[];;So damn happy id:invaded got a good ranking;False;False;;;;1610408381;;False;{};gixwldg;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixwldg/;1610465576;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blaqsaqattaq;;;[];;;;text;t2_52snd;False;False;[];;So wait is anime just pure fan service now? Every show is about teenage girls? That's fuckin lame;False;False;;;;1610408596;;False;{};gixx0w4;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixx0w4/;1610465958;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fredagsfisk;;MAL;[];;https://myanimelist.net/animelist/Ledish;dark;text;t2_x5z5a;False;False;[];;"It's because the female characters are popular. That's pretty much it. According to [a post from a couple of weeks back](https://old.reddit.com/r/anime/comments/kisqlq/myanimelists_top_20_2020_characters_with_the_most/), all four are in the ""Top Favorite New Characters of 2020 on MyAnimeList""; - -Rank 1 - Mami Nanami - 8125 votes - -Rank 4 - Chizuru Ichinose - 6474 votes - -Rank 16 - Sumi Sakurasawa - 1944 votes - -Rank 18 - Ruka Sarashina - 1839 votes - -Personally, I read the manga until nearly chapter 100 hoping for it to improve, then simply gave up. The main character is seriously of *the* worst, and there was absolutely zero character development that didn't get negated or forgotten within a couple of chapters at most. Mami and Ruka are also terrible people (just like Kazuya, I think his name was?) to the point where I had zero enjoyment when Mami showed up, and simply got annoyed when Ruka did.";False;False;;;;1610408961;;False;{};gixxqxc;False;t3_kv3521;False;False;t1_gixgh2g;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixxqxc/;1610466524;21;True;False;anime;t5_2qh22;;0;[]; -[];;;xXx_EdGyNaMe_xXx;;;[];;;;text;t2_15svtl;False;False;[];;Danganronpa hits so hard with middle school girls. I've been a fan since my middle school days but I feel so weird being a 20 year old guy in a fandom that is predominantly 14 year old girls lol;False;False;;;;1610409467;;False;{};gixyr21;False;t3_kv3521;False;False;t1_gixkv0a;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixyr21/;1610467224;6;True;False;anime;t5_2qh22;;0;[]; -[];;;d_flower_p;;;[];;;;text;t2_6c5glzr;False;False;[];;Nobody mentionning Eizouken makes me sad;False;False;;;;1610409499;;False;{};gixyta2;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gixyta2/;1610467266;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ayakiiii;;;[];;;;text;t2_8lw9c78s;False;False;[];;Anime corner voters are trash, they always dickride RAG, i mean cmon, Oregairu is one of the most complex and unique SOL that we've watch, The anime that introduced the philosophical aspect, and yet you're telling me that RAG, an overrated trash anime with trash plot and mediocre characters is higher than SNAFU? y'all trippin. Your opinion on s3 doesn't matter, with just 2 seasons, oregairu solidified it's place in the SOL genre, and it's obviously better than RAG. My disappointment is immeasurable and my hope for better and cultured anime watchers is ruined.;False;False;;;;1610410304;;False;{};giy0cvp;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giy0cvp/;1610468320;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Frosty88d;;;[];;;;text;t2_2ncaf95i;False;False;[];;Yeah I love romance/eechi anime but Kazuya being such an absolute twat is the main reason I haven't watched Rent a girlfriend yet;False;False;;;;1610410461;;False;{};giy0o1a;False;t3_kv3521;False;False;t1_gixxqxc;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giy0o1a/;1610468519;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Devon1331;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_x2qwl;False;False;[];;The rent a girlfriend MC is one of the worst characters I've ever seen. Hard skip on the anime just because of that clown of a character... Sadly because I liked everything else.;False;False;;;;1610410688;;False;{};giy13vi;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giy13vi/;1610468818;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Iyas_Tara;;;[];;;;text;t2_537dgiip;False;False;[];;No it's not, they only let you pick one too for AoTY poll;False;False;;;;1610410959;;False;{};giy1mwo;False;t3_kv3521;False;True;t1_giw4meu;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giy1mwo/;1610469168;2;True;False;anime;t5_2qh22;;0;[]; -[];;;maillite;;;[];;;;text;t2_jddda;False;False;[];;"So I'm really new to anime, amd I've just realised that I have watched 2 of these. - -Rent-a-girlfriend and SNAFU. - -Really enjoyed both, as well as Highschool DXD, Konusuba, heavens lost property and a is it wrong to pick up girls in a dungeon. - -Anyone got any recommendations?";False;False;;;;1610410976;;False;{};giy1o23;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giy1o23/;1610469192;1;True;False;anime;t5_2qh22;;0;[]; -[];;;enki1337;;;[];;;;text;t2_4pkc9;False;False;[];;"I think you're reading into my comment way too much. I'm not implying ""entertainment bad art good"". All I'm saying is there's room for more than just pure entertainment in anime. Plenty of anime dabbles in philosophical topics, which might get some people to consider a point of view they might not have thought of yet.";False;False;;;;1610411325;;False;{};giy2ctl;False;t3_kv3521;False;False;t1_gixi3i7;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giy2ctl/;1610469683;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Freezinghero;;;[];;;;text;t2_988w4;False;False;[];;The entirety of the Alicization storyline in SAO has been peak anime, and i was genuinely sad to see it end.;False;False;;;;1610411874;;False;{};giy3ff6;False;t3_kv3521;False;True;t1_giwsalm;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giy3ff6/;1610470447;2;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;Woah! Thanks so much! Yeah I didn't really research study methods much while I taught myself, I just looked up translations and memorized conversational stuff. Probably because I only started kanji at school last semester. I'll totally check it out, and that sub! Thanks man;False;False;;;;1610411947;;False;{};giy3kmu;True;t3_kv06fx;False;False;t1_gixlmfe;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giy3kmu/;1610470555;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SomeRedHeadedBoy;;;[];;;;text;t2_3jqpspyi;False;False;[];;Surprised how Rent a girlfriend is higher than The misfit of demon king academy;False;False;;;;1610412073;;False;{};giy3tlk;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giy3tlk/;1610470747;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aimeryakal;;;[];;;;text;t2_h83q5;False;False;[];;"Heh, congrats!!! It's a great feeling when you realize you don't need that lifeline :) - -My first show without subs was Evangelion, but I only got about 30-50% of the dialogue watching it. More recently I watched some Yuru Camp (much, much easier than Eva...) and was really pleased when I got to the end of the episode and had understood all of the dialogue.";False;False;;;;1610412200;;False;{};giy42fu;False;t3_kv06fx;False;True;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giy42fu/;1610470921;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mara_Uzumaki;;;[];;;;text;t2_sx8vus0;False;False;[];;Yep, and it has one of the best art styles I've seen in anime. I wish we get a season 2.;False;False;;;;1610412429;;False;{};giy4idz;False;t3_kv3521;False;True;t1_giw1iiz;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giy4idz/;1610471250;1;True;False;anime;t5_2qh22;;0;[]; -[];;;codexphiii;;;[];;;;text;t2_7wmt0il7;False;False;[];;Surprised that misfit of demon king is here😅;False;False;;;;1610413185;;False;{};giy5zb9;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giy5zb9/;1610472297;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lazybean69;;;[];;;;text;t2_3wgcvm52;False;False;[];;Re:zero shoulda been first;False;False;;;;1610413232;;False;{};giy62m4;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giy62m4/;1610472369;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;FireTrainerRed;;;[];;;;text;t2_zb6gt;False;False;[];;Welcome to Harem Anime. That is the level of depth that genre develops.;False;False;;;;1610413525;;False;{};giy6ndr;False;t3_kv3521;False;True;t1_giwqt7k;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giy6ndr/;1610472800;1;True;False;anime;t5_2qh22;;0;[]; -[];;;4cT1v3;;;[];;;;text;t2_5k3xtog;False;False;[];;"I think u can only vote for 1, which explains why shows like jjk, one of the best shows this year aren't on the list. - -And a lot of people liked ID:INVADED too iirc. So not that big so a surprise";False;False;;;;1610413657;;False;{};giy6wiy;False;t3_kv3521;False;True;t1_giws5vd;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giy6wiy/;1610472987;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Themoneydrawer;;;[];;;;text;t2_146nax;False;False;[];;This is disgraceful, we all know the true number one anime of 2020 was Interspecies Reviewers;False;False;;;;1610414423;;False;{};giy8dh0;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giy8dh0/;1610474042;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mauroko;;;[];;;;text;t2_3cd994fj;False;False;[];;this chart seems like these where the only titles that the people remembered from the last two seasons, not a chart for the anime of the year;False;False;;;;1610414606;;False;{};giy8q7r;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giy8q7r/;1610474297;1;True;False;anime;t5_2qh22;;0;[]; -[];;;oposdeo;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/oposdeo;light;text;t2_cyr7j;False;False;[];;"Very very weird energy coming from this list. - - -But uh, Akudama Drive is on it, so I forgive it.";False;False;;;;1610414950;;False;{};giy9ehs;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giy9ehs/;1610474771;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ElementalSB;;MAL;[];;http://myanimelist.net/profile/leejk;dark;text;t2_i555x;False;False;[];;Hmm, not heard of Kamushigoto at all and surprised id Invaded and toilet bound hanako are so high considering I've still not even got round to watching even half of their episodes;False;False;;;;1610415186;;False;{};giy9vbj;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giy9vbj/;1610475094;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Excalisaurus;;;[];;;;text;t2_4j7j6lpa;False;False;[];;Ok I can't remember anything about toilet kun I'm surprised it's in the to ten;False;False;;;;1610415384;;False;{};giya9ba;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giya9ba/;1610475381;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akashi2002;;;[];;;;text;t2_2ipv9742;False;True;[];;Ngl they did dirty with Oregairu being below Rent a Girlfriend other than that I’m happy with the list;False;False;;;;1610416060;;False;{};giyblhv;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyblhv/;1610476296;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sliversniper;;;[];;;;text;t2_fxd43;False;False;[];;Sleepy Princess is my fav 2020, most slept on anime 2020.;False;False;;;;1610416180;;False;{};giybu0r;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giybu0r/;1610476457;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lonely_karasu16;;;[];;;;text;t2_9hhpuj4m;False;False;[];;Where is haikyu!;False;False;;;;1610416683;;False;{};giycta8;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giycta8/;1610477140;1;True;False;anime;t5_2qh22;;0;[]; -[];;;daffy_duck233;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/atlantean233;light;text;t2_mqlr3;False;False;[];;That website probably has a different demographic.;False;False;;;;1610416774;;False;{};giyczoa;False;t3_kv3521;False;True;t1_givqpwx;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyczoa/;1610477259;2;True;False;anime;t5_2qh22;;0;[]; -[];;;shigs21;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_rrc7a;False;False;[];;SAO being popular with Teen girls confuses me so much. Theres some wierd ass incest/ fetish stuff in that show and i don't know how that doesn't creep more people out;False;False;;;;1610417141;;False;{};giydphe;False;t3_kv3521;False;True;t1_gixmhmo;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giydphe/;1610477767;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SquishedMemoryFoam;;;[];;;;text;t2_yihfqlf;False;False;[];;That's good to know, thanks for the explanation!;False;False;;;;1610417646;;False;{};giyeq1p;False;t3_kv06fx;False;True;t1_gixulaz;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giyeq1p/;1610478502;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sneaky_42;;;[];;;;text;t2_4spbyunp;False;False;[];;Right? It's like they ripped our heart out, stomped all over it, flushed it down the toilet, and then poured a whole container of salt in the wound lol. Like, dang. Enough. We get it. We didn't win lol.;False;False;;;;1610417747;;False;{};giyex3x;False;t3_kv3521;False;True;t1_gixprdn;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyex3x/;1610478637;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sneaky_42;;;[];;;;text;t2_4spbyunp;False;False;[];;Have you watched JoJo? Don't worry. I'm not some rabid JoJo fan. I'm just curious. That's all. Lol;False;False;;;;1610417999;;False;{};giyffew;False;t3_kv3521;False;True;t1_gixkv0a;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyffew/;1610478984;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sneaky_42;;;[];;;;text;t2_4spbyunp;False;False;[];;Yeah. I don't know what it was about Deca-Dence. I didn't think it was bad or anything. I just didn't think it was amazing. Now, Akudama Drive on the other hand, was fantastic.;False;False;;;;1610418112;;False;{};giyfnnx;False;t3_kv3521;False;True;t1_giwj494;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyfnnx/;1610479137;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ben100180;;;[];;;;text;t2_4ctao7au;False;False;[];;Yes I also found a *kickass* website;False;False;;;;1610418260;;False;{};giyfy6u;False;t3_kv0xz9;False;True;t1_givz4h4;/r/anime/comments/kv0xz9/best_fan_service_anime/giyfy6u/;1610479332;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberrdrake;;;[];;;;text;t2_ffsuv;False;False;[];;I see this complaint a lot but it’s fairly standard to remove inner monologue from a lot of characters. I read the LN’s and was more upset about them cutting entire scenes (Asuna leading the Human Guardian Army) vs. leaving parts of the inner monologue out. The source is definitely better but I think they did a pretty good job of adapting it. It generally didn’t feel rushed and the scenes they did adapt (minus the leafa one) were very spot on to the source.;False;False;;;;1610418427;;False;{};giyg9u8;False;t3_kv3521;False;True;t1_gixr0nd;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyg9u8/;1610479568;1;True;False;anime;t5_2qh22;;0;[]; -[];;;seviiens;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/totallynotkgb;light;text;t2_4jpv7;False;False;[];;Dorohedoro is my AOTY hands down.;False;False;;;;1610418437;;False;{};giygaka;False;t3_kv3521;False;True;t1_givr7u2;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giygaka/;1610479583;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PilotSSB;;;[];;;;text;t2_nn1j8;False;False;[];;"This question gives me PTSD. I watched part 1 and didn't really like it so I dropped it way before working at the shop. I know I should try again, cause part 3 is the shit. But like...ugh. - -Same with Attack on Titan (which I admit it's a huge sin I don't watch). I didn't vibe with season 1 so I never followed up. I know they're amazing shows. But I'm stubborn";False;False;;;;1610418677;;False;{};giygs5t;False;t3_kv3521;False;True;t1_giyffew;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giygs5t/;1610479931;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dartkun;;;[];;;;text;t2_7pg67;False;False;[];;I really like doing Anki flash cards. Everyone who I talked to who did it hated it, but in the middle of the day I can just pull up some flash card on my phone, zen out and practice. Standing in line, pull up some Kanji and keep on learning. Almost relaxing.;False;False;;;;1610418816;;False;{};giyh2gr;False;t3_kv06fx;False;True;t1_gixlmfe;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giyh2gr/;1610480138;1;False;False;anime;t5_2qh22;;0;[]; -[];;;cyberrdrake;;;[];;;;text;t2_ffsuv;False;False;[];;Not OP but I’ve read the LN’s and watched the anime several times at this point and while SAO isn’t perfect I feel like the fact that it’s been so popular compared to other “better” anime has made it popular to also hate on it. You would think it was one of the worst anime ever made based on what some reviews say but I feel like it does a pretty good job overall of having a little bit of everything (action, romance, comedy, suspense, etc.) and showing growth in the characters, having a refreshing setting (each part takes place in a different VRMMO type setting), and a story that seems to relate the original Sword Art Online game of death with subsequent seasons in creative ways that I always find enjoyable. Depending on the person I would say Alicization is either the best arc of sao ever or only second to the original arc. I think progressive will be the clear favorite if they ever adapt it in full.;False;False;;;;1610418973;;False;{};giyhe5w;False;t3_kv3521;False;True;t1_gixrqdi;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyhe5w/;1610480383;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberrdrake;;;[];;;;text;t2_ffsuv;False;False;[];;He did his best to let her down gently (the winner thinks he should have been more harsh). She just never gave up (and apparently still won’t give up).;False;False;;;;1610419138;;False;{};giyhq8q;False;t3_kv3521;False;True;t1_giyex3x;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyhq8q/;1610480612;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PilotSSB;;;[];;;;text;t2_nn1j8;False;False;[];;It's anime sadly that's just a part of the genre;False;False;;;;1610419176;;False;{};giyht2p;False;t3_kv3521;False;True;t1_giydphe;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyht2p/;1610480664;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberrdrake;;;[];;;;text;t2_ffsuv;False;False;[];;I plan to read the LN’s so I’ll see for myself but it kind of felt we only got Yukino at the beginning and end with very little in the middle.;False;False;;;;1610419226;;False;{};giyhwok;False;t3_kv3521;False;True;t1_gixggq0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyhwok/;1610480736;1;True;False;anime;t5_2qh22;;0;[]; -[];;;godspeedken;;;[];;;;text;t2_nlzp6;False;False;[];;Lol at this list. From now on I will remind myself that any rankings from Anime Corner should not be taken seriously.;False;False;;;;1610419708;;False;{};giyix2x;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyix2x/;1610481460;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AcrobaticBike1;;;[];;;;text;t2_1lsvhmg9;False;False;[];;Isn't it free on crunchyroll anyway?;False;False;;;;1610421039;;False;{};giyllfc;False;t3_kv3521;False;True;t1_gix7ors;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyllfc/;1610483408;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;">Besides my point is not to prove Re:Zero is the most popular LN, it's to disapprove the people that want to force the narrative that Re:Zero is just popular on reddit when everything says otherwise. - -That I can agree with. ReZero has quite a lot of merch sales as well. It wouldn't have that much if it wasn't popular.";False;False;;;;1610421052;;False;{};giylmdv;False;t3_kv3521;False;True;t1_gixhjd9;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giylmdv/;1610483426;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CharLeCzar;;;[];;;;text;t2_7b9qiv1o;False;False;[];;Imma have to disagree;False;False;;;;1610421960;;False;{};giynfbo;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giynfbo/;1610484661;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Agent_Thames;;;[];;;;text;t2_3e6qr7k9;False;False;[];;Kakushigoto really deserves it. It's funny, wholesome, and sad at the same time. Enjoyed it 10/10;False;False;;;;1610422626;;False;{};giyoo53;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyoo53/;1610485520;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GGWesley;;;[];;;;text;t2_5bjt02q8;False;False;[];;Seeing Kakushigoto here makes me smile;False;False;;;;1610422947;;False;{};giyp9oq;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyp9oq/;1610485919;1;True;False;anime;t5_2qh22;;0;[]; -[];;;perfectbluu;;MAL;[];;https://myanimelist.net/profile/MoghyBear;dark;text;t2_12b79d;False;False;[];;"> Now you will know how ""accurate"" the subs actually are - -This is actually one point where learning Japanese has made watching anime less enjoyable for me (or perhaps a better phrasing is ""more difficult""). - -It really annoys me now if the subs don't match my interpretation. It's not that the subs are *wrong*, it's just that Japanese as a language leaves a lot open to interpretation. - -Crunchyroll subs are some of my least favorites, although the style/lettering can be quite good. Funimation is actually pretty good in my opinion. Fan subs can be amazing but are often times unnaturally aggressive (way more swearing interjected than is actually verbalized).";False;False;;;;1610423450;;False;{};giyq7i1;False;t3_kv06fx;False;True;t1_givds5p;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giyq7i1/;1610486587;2;True;False;anime;t5_2qh22;;0;[]; -[];;;akshat_tamrakar;;;[];;;;text;t2_90qyzvc0;False;False;[];;Who made this stupid list?;False;False;;;;1610423463;;False;{};giyq8c0;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyq8c0/;1610486603;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;People would probably dismiss you because that's a shit take, specifically the second part.;False;False;;;;1610424380;;False;{};giyrxvf;False;t3_kv3521;False;True;t1_giximr2;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyrxvf/;1610487863;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Humg12;;MAL;[];;http://myanimelist.net/animelist/Humg12;dark;text;t2_d5fn6;False;False;[];;I didn't like Hanako-kun very much. It was pretty boring, and I just didn't like any of the characters. I'm surprised it got as high as it did on this list.;False;False;;;;1610424502;;False;{};giys5xf;False;t3_kv3521;False;True;t1_gix69f4;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giys5xf/;1610488013;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Voidchief;;;[];;;;text;t2_2xikkxu;False;False;[];;No deca-dence, haiyuku and great pretender, even dorohedoro and if jujitsu kaisen is 2020;False;False;;;;1610424612;;False;{};giysd7p;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giysd7p/;1610488152;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;The anime is almost halfway to the source material, which is about halfway done overall. The series has a looooong way to go still.;False;False;;;;1610424674;;False;{};giysh6l;False;t3_kv3521;False;False;t1_gixrs9n;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giysh6l/;1610488227;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dj1819;;;[];;;;text;t2_4kdv0chn;False;False;[];;Id invaded was such a great anime there is nothing more then just a simple brain teaser of an anime that has great characters and keeps you guessing. I would recommend it to anyone.;False;False;;;;1610425062;;False;{};giyt708;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyt708/;1610488736;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610425091;;False;{};giyt8y1;False;t3_kv06fx;False;True;t1_giyq7i1;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giyt8y1/;1610488777;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Quiddity131;;MAL;[];;http://myanimelist.net/profile/Quiddity131;dark;text;t2_f3bdc;False;False;[];;Congrats! I hope to do this myself some day!;False;False;;;;1610425102;;False;{};giyt9ol;False;t3_kv06fx;False;True;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giyt9ol/;1610488791;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Yri4lf12;;;[];;;;text;t2_6bfipjd7;False;False;[];;">Japanese as a language leaves a lot open to interpretation. - -This is why I get mad when clickbait anitubers make faux outage videos. Japanese is a great guessing game unless you know the context";False;False;;;;1610425226;;False;{};giythrx;False;t3_kv06fx;False;False;t1_giyq7i1;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giythrx/;1610488953;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bhupeshpr25;;;[];;;;text;t2_78m9sk7m;False;False;[];;#Hanako-kun YES!!!;False;False;;;;1610425478;;False;{};giyty15;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyty15/;1610489278;1;True;False;anime;t5_2qh22;;0;[]; -[];;;1c3_c0ld_w4t3r;;;[];;;;text;t2_59cb4noe;False;False;[];;I’m so glad demon king academy is on this list.;False;False;;;;1610425607;;False;{};giyu6b5;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyu6b5/;1610489441;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bhupeshpr25;;;[];;;;text;t2_78m9sk7m;False;False;[];;ED is a gem I didn't see on any top list this year :(;False;False;;;;1610425613;;False;{};giyu6mz;False;t3_kv3521;False;True;t1_gixstqn;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyu6mz/;1610489448;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saltyboi6999;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/saltyboi6999;light;text;t2_151blv3g;False;False;[];;Nice to see ID invaded, I never saw anybody talking about it when it came out;False;False;;;;1610426319;;False;{};giyvexq;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyvexq/;1610490353;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Fragrant-Experience7;;;[];;;;text;t2_7t0gisor;False;False;[];;I don't think Rent-a-girlfriend, misfit, and kakushigoto. I found all three boring and stale. Kakushigoto was interesting but I ended up feeling disappointed by the ending. Misfit felt very sloppy and the cg at times was unbearable so I ended up dropping it.;False;False;;;;1610426322;;False;{};giyvf3x;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyvf3x/;1610490355;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;houkai_;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/houkai_;light;text;t2_3ack01k8;False;False;[];;"Episodes 5-8 adapted volume 13. In volume 13 (and even volume 12 tbh) there was very little Yukino. Thats why she wasn't there as much. - -The problem that LN readers have is that they cut a monologue at the end of episode 8 from Yukino down to 1 line and removed another one entirely";False;False;;;;1610426478;;False;{};giyvoxb;False;t3_kv3521;False;True;t1_giyhwok;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyvoxb/;1610490557;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dtsyk;;;[];;;;text;t2_ftsig;False;False;[];;Weak year for anime?;False;False;;;;1610426697;;False;{};giyw2kk;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyw2kk/;1610490813;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;ravishingmykel;;;[];;;;text;t2_8muwn;False;False;[];;Haven't even heard of 8/10 of these lol. Wow I'm behind on the times.;False;False;;;;1610426893;;False;{};giywem8;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giywem8/;1610491044;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IIHURRlCANEII;;MAL;[];;http://myanimelist.net/animelist/Caerus--;dark;text;t2_6ivfh;False;True;[];;Yeah the main character is just so goddamn annoying.;False;False;;;;1610426933;;False;{};giywh4u;False;t3_kv3521;False;True;t1_gixgh2g;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giywh4u/;1610491089;3;True;False;anime;t5_2qh22;;0;[]; -[];;;harshit1705;;;[];;;;text;t2_35o1c08d;False;False;[];;How is Ruka a terrible character? I think she adds spice to the story and she is my favorite. She is extremely cute.;False;False;;;;1610427352;;False;{};giyx6fo;False;t3_kv3521;False;True;t1_gixxqxc;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyx6fo/;1610491551;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberrdrake;;;[];;;;text;t2_ffsuv;False;False;[];;So it’s more that they cut out two important but probably short, 2-3 minutes maybe? Of monologue? That’s too bad given it would have been easy to include I would think..;False;False;;;;1610427392;;False;{};giyx8w1;False;t3_kv3521;False;True;t1_giyvoxb;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyx8w1/;1610491609;2;True;False;anime;t5_2qh22;;0;[]; -[];;;harshit1705;;;[];;;;text;t2_35o1c08d;False;False;[];;Characters are terrible, just like you heard. That doesn't mean that anime is not enjoyable;False;False;;;;1610427517;;False;{};giyxgad;False;t3_kv3521;False;True;t1_giy0o1a;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyxgad/;1610491751;2;True;False;anime;t5_2qh22;;0;[]; -[];;;houkai_;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/houkai_;light;text;t2_3ack01k8;False;False;[];;Yep, that's basically it. While it would have been better to include them, I think it was pretty easy to understand Yukino's POV with what we got.;False;False;;;;1610427987;;False;{};giyy78a;False;t3_kv3521;False;True;t1_giyx8w1;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyy78a/;1610492270;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberrdrake;;;[];;;;text;t2_ffsuv;False;False;[];;I agree honestly, I thought they did a great job with S3 from beginning to end.;False;False;;;;1610428230;;False;{};giyyksj;False;t3_kv3521;False;True;t1_giyy78a;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giyyksj/;1610492543;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Absolute_Crusader;;;[];;;;text;t2_4stfv5rb;False;False;[];;Ok;False;False;;;;1610429306;;False;{};giz08it;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giz08it/;1610493652;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;CurlingCoin;;;[];;;;text;t2_wji1w;False;False;[];;"Alicization in the first half is great, maybe the best arc overall. It's almost more of a strict fantasy story than a story in a ""gaming"" world. They mix in elements of the setting being virtual in subtle way while keeping the world feeling ""real"" and it works really well. Kirito takes on a more wise mysterious mentor role to another MC which was a good evolution of his character. Story is tight and the power system and world building are a lot more cohesive than usual. - -The second half throws most of that out the window by reintroducing more ""real world"" gaming/computing influences. Generally feels like just a lot of asspulls. I'm very surprised a lot of people like it more. For me all the real world stuff = I don't care so ymmv.";False;False;;;;1610430147;;False;{};giz1gma;False;t3_kv3521;False;True;t1_gixrqdi;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giz1gma/;1610494481;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Freenore;;;[];;;;text;t2_t33z54v;False;False;[];;Arte was also a very underrated show. The plot was simple for the most part, but it was the earnest characters that lifted the show to being so amazing. One of my favorites from the year.;False;False;;;;1610430254;;False;{};giz1m8y;False;t3_kv3521;False;True;t1_giwg53a;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giz1m8y/;1610494580;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JustAnotherMinimis;;;[];;;;text;t2_4xomimfd;False;False;[];;Who the fuck voted for this?;False;False;;;;1610430404;;False;{};giz1u3k;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giz1u3k/;1610494724;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Daniliciouso;;;[];;;;text;t2_7oy0zw46;False;False;[];;Akudama drive made the list, that's all that matters to me, im satisfied;False;False;;;;1610431390;;False;{};giz37dl;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giz37dl/;1610495650;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Suqa-_-;;;[];;;;text;t2_4mz1sq1f;False;False;[];;It was even worse for yui fans, you know the shit has failed, yet they still torture you with hachiman rejecting her again and again.;False;False;;;;1610431654;;False;{};giz3k9i;False;t3_kv3521;False;True;t1_gixggq0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giz3k9i/;1610495895;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Suqa-_-;;;[];;;;text;t2_4mz1sq1f;False;False;[];;Mfw I get nostalgic from seeing kakushigoto here... been a hell of a year;False;False;;;;1610431790;;False;{};giz3qxe;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giz3qxe/;1610496021;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Spriggan_007;;;[];;;;text;t2_8swi1es4;False;False;[];;I was on yukino's side....but man it hurts to yui in the last few episodes. Especially after the scenes with the mother. And if they did gave the character development like the other said from the LN, it'll be spilling oil over fire.;False;False;;;;1610432080;;False;{};giz456n;False;t3_kv3521;False;True;t1_gixgnz5;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giz456n/;1610496289;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shad2020;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/UmHas710;light;text;t2_4hctbxzh;False;False;[];;"First I should thank you for enlightening me on Subaru and his relationships. When you put it that way... I corgot how Return by Death complicates things. - -I also think that Ruka should look for more in a guy than just her BPM running high around him. The anime did try to justify her obsession of him with a back story that I don't remember but other than the BPM I'm not sure what about him Ruka actually likes. With the end of S1 it's pretty clear that Kazuya has come to a realization and he has now set and locked in to have Chizuru as his girlfriend. Unless Mami fucks it up somehow.";False;False;;;;1610432594;;False;{};giz4tg3;False;t3_kv3521;False;False;t1_gixrrta;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giz4tg3/;1610496720;2;True;False;anime;t5_2qh22;;0;[]; -[];;;uirishbastard;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_mr0yi;False;False;[];;Honest question. Why is Kaguya such a beloved anime here? I watched 5 eps and was done with. Must be the first one that i am not on the same boat with the rest of this subreddit.;False;False;;;;1610432612;;False;{};giz4ua4;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giz4ua4/;1610496736;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;I noticed most of Lerche works are quite popular to the teenage girls demographic.;False;False;;;;1610434189;;False;{};giz6rxj;False;t3_kv3521;False;True;t1_gixyr21;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giz6rxj/;1610497957;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;While it is a step down for me from Alicization and War of Underworld S1, the animation, music, character showcase, epic moments, and of course, the return of Kirito, were definitely the highlights of War of Underworld S2.;False;False;;;;1610434280;;False;{};giz6w01;False;t3_kv3521;False;True;t1_giwsalm;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giz6w01/;1610498027;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ataletta;;;[];;;;text;t2_rqyc2u2;False;False;[];;"Yeah, I started it expecting some unconventional comedy, like Kaguya-sama, struggled for few episodes and just gave up. The premise was kinda interesting at first, but the execution was bland, and mc is just the worst, I have had it with his shenanigans, and had no desire to watch Chizuru life coach him for 12 episodes. What people love about this show I have no idea (I get it it's the girls, but like, what's so great about them to get such praise?) - -Edit. So my based take while I at it: Mami is a cheap hate bait, Chizuru is the next best perfect waifu uwu, and mc who's name I don't even remember is r/incels posterboy so yeah, I kinda get why it's so popular.";False;False;;;;1610434287;;1610435644.0;{};giz6wa8;False;t3_kv3521;False;True;t1_gixxqxc;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giz6wa8/;1610498031;0;True;False;anime;t5_2qh22;;0;[]; -[];;;DeathToBoredom;;;[];;;;text;t2_nbyzu;False;False;[];;What... Mami doesn't stop being terrible and yet she has more votes than Chizuru on MAL?;False;False;;;;1610434341;;False;{};giz6ymq;False;t3_kv3521;False;True;t1_gixxqxc;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giz6ymq/;1610498071;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GioWindsor;;;[];;;;text;t2_4wr1yegn;False;False;[];;Got it. Thanks!!;False;False;;;;1610434869;;False;{};giz7l3c;False;t3_kv3521;False;True;t1_gixj08e;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giz7l3c/;1610498472;1;True;False;anime;t5_2qh22;;0;[]; -[];;;beqs171;;;[];;;;text;t2_133tcnzn;False;False;[];;170 chapters and still 0 progress;False;False;;;;1610435411;;False;{};giz87ef;False;t3_kv3521;False;True;t1_gix0jdj;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giz87ef/;1610498853;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bubbly_Worldliness_7;;;[];;;;text;t2_82ixw5xk;False;False;[];;"Kazuya pretty much confessed on chapter 165. I wouldn't call that ""0"" progression. Just really drawn out and slow moving progression. Just wait till this weeks chapter. It might be big.";False;False;;;;1610435658;;False;{};giz8hh7;False;t3_kv3521;False;True;t1_giz87ef;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giz8hh7/;1610499020;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GenesisEra;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Genesis_Erarara;light;text;t2_f45l9;False;False;[];;"> This is a ""best anime of the year poll."" The problem is that people have to pick their single favorite show. The people that picked shows at the very top don't get to give their second-favorite shows any representation. - -THIS IS WHY WE NEED RANKED VOTING -REFORM THE ELECTORAL SYSTEM";False;False;;;;1610435670;;False;{};giz8hyw;False;t3_kv3521;False;True;t1_givt5h0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giz8hyw/;1610499029;1;True;False;anime;t5_2qh22;;0;[]; -[];;;beqs171;;;[];;;;text;t2_133tcnzn;False;False;[];;Author is gonna keep milking it as long as he can, and we are gonna get next Komi-san;False;False;;;;1610435782;;False;{};giz8mjw;False;t3_kv3521;False;True;t1_giz8hh7;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giz8mjw/;1610499107;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bubbly_Worldliness_7;;;[];;;;text;t2_82ixw5xk;False;False;[];;I mean yeah I can kinda see it. Just age the characters up a bit then make the whole situation toxic as hell whenever you're dealing with 2/4 of the main girls.;False;False;;;;1610435953;;False;{};giz8th9;False;t3_kv3521;False;True;t1_giz8mjw;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giz8th9/;1610499220;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gamersfun2595;;;[];;;;text;t2_81tz3vmd;False;False;[];;"Tbh I haven’t watched as much anime as I used too, and I really care for m.h.a -I even lost track of where I was in the dragon ball series so I decided to retrack myself all the way to the beginning of dragon ball and work my way back up cuz if I can watch all the one piece episodes day after day I can do the same with dragon ball";False;False;;;;1610435991;;False;{};giz8v03;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giz8v03/;1610499245;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Permanoxx;;;[];;;;text;t2_3hwherkr;False;False;[];;Hanako kun is so high, why? And Iam happy Akudama drive is top 5;False;False;;;;1610436130;;False;{};giz90mt;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giz90mt/;1610499338;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SaInAaBsIiMaA;;;[];;;;text;t2_971lvikz;False;False;[];;Where tf is Violet Evergarden movie 2?;False;False;;;;1610436308;;False;{};giz97t9;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giz97t9/;1610499458;0;True;False;anime;t5_2qh22;;0;[]; -[];;;truepolar;;;[];;;;text;t2_mj9tdsw;False;False;[];;This comment was made at 666 comments;False;False;;;;1610436966;;False;{};giz9xq2;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giz9xq2/;1610499911;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hex0Zero;;;[];;;;text;t2_1dzyax8v;False;False;[];;Am I actually sleeping on Kakushigoto?;False;False;;;;1610437335;;False;{};gizac6z;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizac6z/;1610500157;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;OfLittleImportance;;;[];;;;text;t2_zmwa5;False;False;[];;"The Central Limit Theorem shows that a sample can be meaningful, even without being a majority of the population. - -Of course, some bias still exists in the sample (it's not 'truly random'), but that bias is most likely not very significant and could be accounted for with some effort.";False;False;;;;1610439198;;False;{};gizcb33;False;t3_kv3521;False;True;t1_gixjnm6;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizcb33/;1610501379;0;True;False;anime;t5_2qh22;;0;[]; -[];;;mobilegamingisajoke;;;[];;;;text;t2_87qt4s17;False;False;[];;Im surprised that sword art online was 9 but im hapoy it wasn't higher;False;False;;;;1610439267;;False;{};gizcdqp;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizcdqp/;1610501426;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;UDani11;;;[];;;;text;t2_3urk0qno;False;False;[];;For the yearly one only one? Damn. Cuz they allow multiple for all other polls. Sorry than.;False;False;;;;1610439277;;False;{};gizce3b;False;t3_kv3521;False;True;t1_giy1mwo;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizce3b/;1610501432;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Peepee-PooPoo90;;;[];;;;text;t2_72kp54uh;False;False;[];;How tf is Rent a GF on 7th while Oregairu is on 10th smh;False;False;;;;1610440210;;False;{};gizdcqe;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizdcqe/;1610502029;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;All you have to do to make a successful harem is have good character design. That's literally all it takes.;False;False;;;;1610440556;;False;{};gizdp7y;False;t3_kv3521;False;True;t1_gixgh2g;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizdp7y/;1610502245;1;True;False;anime;t5_2qh22;;0;[]; -[];;;THE_REAL_RAKIM;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/midoriya04;light;text;t2_2t8d53up;False;False;[];;"> Yet irl customers ask me for my favourites and haven't even heard of them - -I am pretty sure that people who know about these series would either buy it online or just pirate it from somewhere. Here manga's way cheaper online especially during sales. How's the pricing at the shop where you work?";False;False;;;;1610441098;;False;{};gize8x6;False;t3_kv3521;False;True;t1_gixmhmo;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gize8x6/;1610502601;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DutchDread;;;[];;;;text;t2_6i2jqhl9;False;False;[];;There must be some sort of mistake, Interspecies reviewers isn't at number 1, it's not even on there for some reason, was there an error or something?;False;False;;;;1610441299;;False;{};gizeg98;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizeg98/;1610502731;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Etheo;;;[];;;;text;t2_3ctfo;False;False;[];;Excuse me but Akudama Drive have legit quality animation. The story is subjective to enjoyment but the production value was excellent.;False;False;;;;1610441542;;False;{};gizep1d;False;t3_kv3521;False;False;t1_gixeppb;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizep1d/;1610502897;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Etheo;;;[];;;;text;t2_3ctfo;False;False;[];;"Majority rules*! - -^(*except it doesn't)";False;False;;;;1610441811;;False;{};gizeyly;False;t3_kv3521;False;False;t1_gixokn7;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizeyly/;1610503072;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Etheo;;;[];;;;text;t2_3ctfo;False;False;[];;Which I honestly don't understand... They do ep by ep for those kdrama that my wife follows, I don't see why they can't did the same for these animes...;False;False;;;;1610441955;;1610468108.0;{};gizf3tg;False;t3_kv3521;False;False;t1_gixmhg8;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizf3tg/;1610503162;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Etheo;;;[];;;;text;t2_3ctfo;False;False;[];;ID: INVADED was a sleeper hit for me after the fact. During the season I think I was offput by the character designs but after hearing buzz about it I caught up just last season. It wasn't perfect by any means but I'm glad to see it's so appreciated, wish there are more original shows like it, taking chances and unafraid of going dark.;False;False;;;;1610442207;;False;{};gizfcv0;False;t3_kv3521;False;True;t1_giws5vd;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizfcv0/;1610503322;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Frosty88d;;;[];;;;text;t2_2ncaf95i;False;False;[];;Yeah that's very true but it seems the pacing isn't great either but the girls seem great so I'll try to get around to it;False;False;;;;1610442397;;False;{};gizfjl5;False;t3_kv3521;False;True;t1_giyxgad;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizfjl5/;1610503439;2;True;False;anime;t5_2qh22;;0;[]; -[];;;plague11787;;;[];;;;text;t2_z2045;False;False;[];;Ruka’s popularity baffles me, she’s literally a blackmailing, emotionally abusive bitch and so many idiots simp her;False;False;;;;1610445633;;False;{};gizipim;False;t3_kv3521;False;True;t1_gixxqxc;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizipim/;1610505435;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HugoPro;;;[];;;;text;t2_vl4yc;False;False;[];;animelon is a great option for learning, but the video quality is very lacking most of the time.;False;False;;;;1610446328;;False;{};gizjda7;False;t3_kv06fx;False;True;t1_givfcmo;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gizjda7/;1610505864;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TLT4;;;[];;;;text;t2_4503dfm1;False;False;[];;Ya that year did kinda suck for Anime.;False;False;;;;1610448506;;False;{};gizlhst;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizlhst/;1610507290;0;True;False;anime;t5_2qh22;;0;[]; -[];;;steben91;;;[];;;;text;t2_13yj3f;False;False;[];;No HAIKYUU?!;False;False;;;;1610448650;;False;{};gizlmvh;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizlmvh/;1610507388;0;True;False;anime;t5_2qh22;;0;[]; -[];;;arms98;;;[];;;;text;t2_rkxkj;False;False;[];;"So as an anime only I have no idea what happens next but calling the entirety of S1 buildup is a disservice the show. This situation has been the most complicated weve seen so far, and i believe piecing together new bits of information is still interesting on its own. Even outside of that there were plenty of powerful moments [spoliers](/s ""subaru seeing his parents again, the fights and dialouge with beatrice at the mansion, subaru dying to the great rabbit the first time, the witch confrence, rosewall going ape shit, and of course the kiss of death"")";False;False;;;;1610449681;;False;{};gizmp0r;False;t3_kv3521;False;False;t1_givr4cb;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizmp0r/;1610508046;1;True;False;anime;t5_2qh22;;0;[]; -[];;;juls300;;;[];;;;text;t2_w2r32ti;False;False;[];;Weml. Demon king Academy was just another Comedy isekai with an overpowered Protagonist. Honestly it shouldn‘t even be on this List;False;False;;;;1610450806;;False;{};giznv5h;False;t3_kv3521;False;True;t1_givtkkv;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giznv5h/;1610508796;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Suchomemus;;;[];;;;text;t2_77xks1x8;False;False;[];;Same. One of my fav shows from the year.;False;False;;;;1610450840;;False;{};giznwdt;False;t3_kv3521;False;True;t1_giyvexq;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/giznwdt/;1610508821;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Plumorchid;;MAL;[];;http://myanimelist.net/animelist/Plumorchid;dark;text;t2_51zmn;False;False;[];;You’ve taken a single Japanese college course using nakama 1 and you’re saying you fully understood that episode?;False;False;;;;1610450881;;False;{};giznxw7;False;t3_kv06fx;False;True;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/giznxw7/;1610508847;1;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;I taught myself for a while and passed out of the first semester, so even though I only took one semester I guess it's more like 2? This coming semester we are moving onto nakama 2 :D;False;False;;;;1610450979;;False;{};gizo1o4;True;t3_kv06fx;False;True;t1_giznxw7;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gizo1o4/;1610508929;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Buglante;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Vinland saga goat;light;text;t2_6nah75po;False;False;[];;Thats the harsh truth, if your anime has a insert protagonist and a bunch of cute anime girls then it will have much more popularity. But fortunately these rankins dont represent the quality of the show so here you got that;False;False;;;;1610451028;;False;{};gizo3nb;False;t3_kv3521;False;False;t1_giw8khy;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizo3nb/;1610508965;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kimochi_des;;;[];;;;text;t2_9bsps9v2;False;False;[];;We can all agree that even if Rent a Girlfriend aint no. 1, Chizuru broke the boundaries of being the best girl;False;False;;;;1610452341;;False;{};gizpilv;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizpilv/;1610509855;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Plumorchid;;MAL;[];;http://myanimelist.net/animelist/Plumorchid;dark;text;t2_51zmn;False;False;[];;"I don’t understand how learning textbook formal Japanese helped you understand anime but more power to you lol. - -All I’m gonna say is good luck after nakama 2 it’s going to get exponentially more difficult. Hang in there.";False;False;;;;1610452425;;False;{};gizply6;False;t3_kv06fx;False;True;t1_gizo1o4;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gizply6/;1610509913;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akio_Kizu;;;[];;;;text;t2_645h2ay4;False;False;[];;"This list is whack -Most of these anime barely got talked about at all (Kakushigoto and Hanako-kun) and others are just left out completely (My next life as a villainess). -Kaguya is well-deserved, and I am glad that ID: Invaded is getting some love here, but overall this is a really weird reflection of tastes.";False;False;;;;1610452490;;False;{};gizpojx;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizpojx/;1610509960;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ericcartman0618;;;[];;;;text;t2_15tzc8;False;False;[];;I had to drop it half way through because I couldn't bear it any longer;False;False;;;;1610453578;;False;{};gizqwp3;False;t3_kv3521;False;False;t1_givscbn;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizqwp3/;1610510732;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ldilluh;;;[];;;;text;t2_5e1fs9pf;False;False;[];;Man 2020 really was a bad year;False;False;;;;1610453822;;False;{};gizr6xj;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizr6xj/;1610510909;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ScintiYume;;;[];;;;text;t2_8zhwqxz9;False;False;[];;Judging from your list, it isn't rlly tbh;False;False;;;;1610454060;;False;{};gizrh3j;False;t3_kv3521;False;True;t1_gixlgr8;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizrh3j/;1610511088;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KanchiHaruhara;;MAL;[];;http://myanimelist.net/profile/KanchiHaruhara;dark;text;t2_fdre0;False;False;[];;Then I choose to disregard that judgement;False;False;;;;1610455316;;False;{};gizt0tb;False;t3_kv3521;False;True;t1_gizrh3j;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizt0tb/;1610512088;1;True;False;anime;t5_2qh22;;0;[]; -[];;;meme_master_blaster;;;[];;;;text;t2_3wkj2aou;False;False;[];;Meh this list is up and down. Well i could agree with the top 1 though;False;False;;;;1610458652;;False;{};gizxsam;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizxsam/;1610515251;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Izanagi___;;;[];;;;text;t2_6wmop5vl;False;False;[];;Eh I'd take God of Highschool's fights and music any day over Noblesse as a whole. I was pretty bored each episode and nearly fell asleep on multiple episodes. It's a miracle I even finished it.;False;False;;;;1610459216;;False;{};gizyosj;False;t3_kv3521;False;True;t1_giwhngk;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizyosj/;1610515798;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Izanagi___;;;[];;;;text;t2_6wmop5vl;False;False;[];;The show is entertaining but the MC is god awful. Apparently by many he's supposed to be relatable somehow???? Like, how??;False;False;;;;1610459616;;False;{};gizzcnf;False;t3_kv3521;False;True;t1_gixgh2g;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizzcnf/;1610516194;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Godmode_hero;;;[];;;;text;t2_6o1n4cpk;False;False;[];;I am glad kaguya sama is at the top;False;False;;;;1610459789;;False;{};gizzn6e;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gizzn6e/;1610516369;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nemt;;;[];;;;text;t2_59bfz;False;False;[];;why? am i not allowed to hate some wimpy MC who cries everytime he does anything?;False;False;;;;1610460237;;False;{};gj00ewq;False;t3_kv3521;False;True;t1_giyrxvf;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj00ewq/;1610516851;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;With the story being a mess, i couldn't even focus in the fights because almost all didn't make sense lol. But yeah, you can like what you like but i will pick Noblesse over God of Highschool.;False;False;;;;1610460803;;False;{};gj01eub;False;t3_kv3521;False;True;t1_gizyosj;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj01eub/;1610517426;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-Jet_seT-;;;[];;;;text;t2_5cn1z098;False;False;[];;"A. I have no idea. - -B. I hear Crunchyroll and Funimation are associated with each other. Haven't heard great things about Funimation.";False;False;;;;1610461449;;False;{};gj02kub;False;t3_kv3521;False;True;t1_giyllfc;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj02kub/;1610518098;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkChaplain;;;[];;;;text;t2_3zc84;False;False;[];;Probably troll votes, wouldn't be the first time;False;False;;;;1610461851;;False;{};gj03b9u;False;t3_kv3521;False;True;t1_giz6ymq;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj03b9u/;1610518553;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_ediegolds;;;[];;;;text;t2_79htb67w;False;False;[];;i’m so happy tbhk is on there;False;False;;;;1610462431;;False;{};gj04dtq;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj04dtq/;1610519197;1;True;False;anime;t5_2qh22;;0;[]; -[];;;R4ilTr4cer;;;[];;;;text;t2_l6aax;False;False;[];;"> Misfit of the Demon King Academy got attention, though. It's severely underrated, and misunderstood - -I finally got to watch it and I had seen so much hate about it... So I got to say I was with low expectations and I ended loving it. I think this is one of the most likable ultra OP MC I have seen. He is a true hero(even on the ""bad"" things like been naive/hopeful) and I feel it overall balanced been harsh and benevolent. - -The overall plot and some interactions were both predictable and cliche... yet they ended playing out ""smoothly"" imo and I ended loving it. Looking forward to more of it and even considering reading it tbh.";False;False;;;;1610462635;;False;{};gj04rla;False;t3_kv3521;False;True;t1_givug1h;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj04rla/;1610519419;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jojoismyreligion;;;[];;;;text;t2_5j56wzq4;False;False;[];;Have you taken any JLPT ?;False;False;;;;1610463147;;False;{};gj05ret;False;t3_kv06fx;False;True;t3_kv06fx;/r/anime/comments/kv06fx/i_successfully_watched_something_without_subs_for/gj05ret/;1610519988;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;" -> I mean I dare to say that shit like Ex-Arm and Gibiate are objectively worse than all the shows from this list and I doubt anyone would argue with this statement. - -You'd be surprised, I see things to like about Ex-Arm above every show on this list.";False;False;;;;1610463299;;False;{};gj0621h;False;t3_kv3521;False;True;t1_giwsxdf;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj0621h/;1610520153;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;These polls are popularity contests though. People don't vote rationality, they vote for their favorite shows and are more motivated to do so for their favorite shows.;False;False;;;;1610463487;;False;{};gj06f80;False;t3_kv3521;False;True;t1_giw5rn9;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj06f80/;1610520362;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610464084;;False;{};gj07lm5;False;t3_kv3521;False;True;t1_gizo3nb;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj07lm5/;1610521011;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"Can you really call it a popularity contest and if it's motivated by what you like, preferred, or favored, not by what others tell you to like or their specific standards and criteria. - -In this particular chart, some of the most favorited shows aren't even the popular or widely watched ones, and some of the popular 2020 shows don't even crack in the top ten in this particular list, like Jujutsu Kaisen, Haikyuu, Fire Force S2, and the webtoon adaptations. - -Otherwise, all polls and surveys are just ""popularity contests"" by that logic.";False;False;;;;1610464449;;False;{};gj08byr;False;t3_kv3521;False;True;t1_gj06f80;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj08byr/;1610521414;1;False;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;Re:Zero got done dirty, only Love is War is in the conversation when compared to Re:Zero;False;False;;;;1610464923;;False;{};gj09af3;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj09af3/;1610521945;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;No no. Just the grand finale of the biggest arc of the series so far.;False;False;;;;1610465101;;False;{};gj09mw5;False;t3_kv3521;False;True;t1_gixrs9n;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj09mw5/;1610522133;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;"\>I didn't watch ReZero season 2 - -Biggest mistake you did this year.";False;False;;;;1610465220;;False;{};gj09uzg;False;t3_kv3521;False;True;t1_giw71hv;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj09uzg/;1610522257;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;" ->Can you really call it a popularity contest and if it's motivated by what you like, preferred, or favored, not by what others tell you to like or their specific standards and criteria. - - -Voting for a show based on what you ""like"", ""prefer"" and ""favor"" sounds a lot like a popularity contest. - - ->In this particular chart, some of the most favorited shows aren't even the popular or widely watched ones, and some of the popular 2020 shows don't even crack in the top ten in this particular list, like Jujutsu Kaisen, Haikyuu, Fire Force S2, and the webtoon adaptations. - -It means that you have different tastes from the average person at Anime Corner. There are only around 1500 people over there, they hate battle Shonen and love waifu bait shows. - - ->Otherwise, all polls and surveys are just ""popularity contests"" by that logic. - -Yes, all polls and surveys are indeed popularity contests. There's nothing wrong with that, I'm just calling it what it is.";False;False;;;;1610465357;;False;{};gj0a47o;False;t3_kv3521;False;True;t1_gj08byr;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj0a47o/;1610522395;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ezylo1224;;;[];;;;text;t2_8rr48vxq;False;False;[];;That’s fine, we can’t all have taste :P;False;False;;;;1610467080;;False;{};gj0ddk7;False;t3_kv3521;False;True;t1_giys5xf;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj0ddk7/;1610524189;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;I'm rewatching it with my girlfriend but we're stuck on that awful white knight episode with Subaru lol, I'll get through it eventually.;False;False;;;;1610467821;;False;{};gj0ew5c;False;t3_kv3521;False;True;t1_gj09uzg;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj0ew5c/;1610525007;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AeonXS;;;[];;;;text;t2_14ogvl;False;False;[];;"Yaaaas mao gakuin at rank 8. Amazing awesome to see it being appriciated. - -It's a shame many people failed to understand the brilliance of KimiSen";False;False;;;;1610468167;;False;{};gj0fm43;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj0fm43/;1610525412;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;It's a very important episode. The cringe is so important for Subaru's character development;False;False;;;;1610468329;;False;{};gj0fybm;False;t3_kv3521;False;True;t1_gj0ew5c;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj0fybm/;1610525598;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;Haha, I don't disagree. I've finished season 1, I'm just finding it hard to watch again.;False;False;;;;1610468367;;False;{};gj0g17i;False;t3_kv3521;False;True;t1_gj0fybm;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj0g17i/;1610525643;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VorAtreides;;;[];;;;text;t2_y87hi;False;False;[];;"Yea, he's kinda cringe af and annoying most of the times, but it makes his good moments stand out more which I kinda like (and, tbh, a lot of people are cringe af at that age, myself included :P), but it doesn't seem to really do anything with it long term. A lot of ""resetting"" at times it feels like of where the characters stand with each other.";False;False;;;;1610468786;;False;{};gj0gx7k;False;t3_kv3521;False;True;t1_giywh4u;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj0gx7k/;1610526122;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VorAtreides;;;[];;;;text;t2_y87hi;False;False;[];;A lot of guys are pretty dumb like that when they are that age/a bit younger, especially when it comes to the girl they like. So I can see it being relatable, but he's a bit of an exaggeration of that it seems at times.;False;False;;;;1610469005;;False;{};gj0hdz5;False;t3_kv3521;False;True;t1_gizzcnf;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj0hdz5/;1610526372;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SkyKobb;;;[];;;;text;t2_3nd9yh04;False;False;[];;that is very true, I've been rewatching the greatest anime in existence (monogatari) and forgot that like 75% of roncoms are like that. I rlly don't know much about the anime cause I've just read the manga, but it wasn't that terrible. I guess people just wanna hate on it.;False;False;;;;1610472050;;False;{};gj0o0vo;False;t3_kv3521;False;True;t1_gixm60u;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj0o0vo/;1610530001;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;You can hate it all you want, that's just such an annoyingly shallow take of Subaru's character that any other views kinda get shot down by proxy.;False;False;;;;1610472702;;False;{};gj0ph21;False;t3_kv3521;False;True;t1_gj00ewq;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj0ph21/;1610530791;1;True;False;anime;t5_2qh22;;0;[]; -[];;;machateaman;;;[];;;;text;t2_9ajjjozc;False;False;[];;I adored Kakushigoto, it was so cute.;False;False;;;;1610473141;;False;{};gj0qgb8;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj0qgb8/;1610531322;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nemt;;;[];;;;text;t2_59bfz;False;False;[];;"shallow take? lmap please explain, all he did was cry and do nothing last season and now the same this one, i really hoped they gave him some balls and he actually got a character, nope same crying wimp. - -what magical deep lore am i missing?";False;False;;;;1610473865;;False;{};gj0s2w2;False;t3_kv3521;False;True;t1_gj0ph21;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj0s2w2/;1610532210;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Goldeagle1123;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/goldeagle1123;light;text;t2_xyzwm;False;False;[];;Not really. It was pretty unremarkable, especially compared to some of the best animation the industry has to offer. Animation is still subjective anyway. The story being a awful did it no justice either.;False;False;;;;1610474938;;False;{};gj0ugms;False;t3_kv3521;False;True;t1_gizep1d;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj0ugms/;1610533506;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Sigma621;;;[];;;;text;t2_8bzbhjen;False;False;[];;You were the smart one. It's a pretty mediocre series.;False;False;;;;1610475802;;False;{};gj0wdjm;False;t3_kv3521;False;True;t1_giwzdv4;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj0wdjm/;1610534587;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sigma621;;;[];;;;text;t2_8bzbhjen;False;False;[];;Girls with daikon legs must love that shit;False;False;;;;1610475836;;False;{};gj0wgbq;False;t3_kv3521;False;True;t1_giw5mbv;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj0wgbq/;1610534630;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sigma621;;;[];;;;text;t2_8bzbhjen;False;False;[];;It's a pretty great show.;False;False;;;;1610475927;;False;{};gj0wnmo;False;t3_kv3521;False;True;t1_givy7o0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj0wnmo/;1610534744;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SimplyJordan;;;[];;;;text;t2_bgi8t;False;False;[];;"Since you feel like gatekeeping, I'll do the same. Talk when you have over 50 days at least on your MAL. Akudama Drive animation was solid; the story is subjective. And why do you care about the survey so much being inaccurate and then go on to say just watch what you want. The same can be said to you, don't look at the surveys, just keep scrolling. A lot of people enjoy seeing little infographics like this, they're just for fun. - -So what I'm really trying to say is, lighten up, Francis.";False;False;;;;1610476879;;False;{};gj0ys1q;False;t3_kv3521;False;True;t1_gj0ugms;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj0ys1q/;1610535980;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Mavsffl77;;;[];;;;text;t2_38bsh290;False;False;[];;Golden kamuy?;False;False;;;;1610476911;;False;{};gj0yum3;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj0yum3/;1610536024;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Goldeagle1123;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/goldeagle1123;light;text;t2_xyzwm;False;False;[];;"Where did I ever gatekeep? And jesus christ you're a loser if you need to resort to looking at people's MAL to try and one-up them. Furthermore, watching more anime doesn't make you more adept at critiquing it. 50 days just means you have no life. - -I see plenty of hardcore weebs who watch every seasonal every season, and they tend be losers who somehow still don't grasp what good television is, and are in love with the Fate series thinking it's the best, etc. add all the typical stereotypes.";False;False;;;;1610477622;;1610477852.0;{};gj10fw9;False;t3_kv3521;False;True;t1_gj0ys1q;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj10fw9/;1610536935;1;False;False;anime;t5_2qh22;;0;[]; -[];;;yolotheunwisewolf;;;[];;;;text;t2_n1mzt;False;False;[];;This—there’s a heavy amount of female anime/manga fans nowadays.;False;False;;;;1610483272;;False;{};gj1cuqa;False;t3_kv3521;False;True;t1_gixkv0a;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj1cuqa/;1610544739;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SimplyJordan;;;[];;;;text;t2_bgi8t;False;False;[];;"Did I one-up you though? And actually no, watching more anime is exactly what gives you the experience to be able to critique it. The more you watch, the move you've seen, the bigger you pool of comparison is, that's where your critique would come from. - -You're the one resorting to name calling here now. But hey, 50 days means no life? I guess you better stop watching, because you're inching to that aren't you? Stop trying to ruin other people's fun for a fucking survey, that's what makes somebody a loser...seriously, you got upset over the quality of a survey, grow up.";False;False;;;;1610483920;;False;{};gj1e9qt;False;t3_kv3521;False;True;t1_gj10fw9;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj1e9qt/;1610545706;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bubbly_Worldliness_7;;;[];;;;text;t2_82ixw5xk;False;False;[];;New chapter has some progress, it looks like he grew a temporary pair of balls;False;False;;;;1610489765;;False;{};gj1r1xw;False;t3_kv3521;False;True;t1_giz8mjw;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj1r1xw/;1610554725;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SapphireSalamander;;;[];;;;text;t2_zpwbv;False;False;[];;that final arc tho ... kinda flopped the last 2 eps;False;False;;;;1610490948;;False;{};gj1tjf2;False;t3_kv3521;False;True;t1_giwzm2s;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj1tjf2/;1610556521;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Garuna_CK;;;[];;;;text;t2_5muasxi4;False;False;[];;I wonder how mami nanami is more popular than chizuru or ruka, I was surprised after looking at anilist’s ranking;False;False;;;;1610502776;;False;{};gj2g5g5;False;t3_kv3521;False;True;t1_gixxqxc;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj2g5g5/;1610572541;1;True;False;anime;t5_2qh22;;0;[]; -[];;;milesbritt_;;skip7;[];;;dark;text;t2_3zcnbpwd;False;False;[];;I refuse to believe that Railgun T is not in the top 10... tbh kanokari was a good anime but idk why it's in the top 10.;False;False;;;;1610503484;;False;{};gj2hgvm;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj2hgvm/;1610573530;1;True;False;anime;t5_2qh22;;0;[]; -[];;;diivandi;;;[];;;;text;t2_4e0vvsnc;False;False;[];;"because it's animecorner. their weekly rating are also so much different than MAL/reddit/anilist or any other major sites - - -kakushigoto is by no means a bad show, it's good but in term of popularity there is no way it can be toe to toe with kaguya/re:zero. I feel like there is something *suspicious* going there";False;False;;;;1610507618;;False;{};gj2p916;False;t3_kv3521;False;True;t1_givy7o0;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj2p916/;1610579088;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xman886;;;[];;;;text;t2_68ooot0x;False;False;[];;Hyped for rent a girlfriend;False;False;;;;1610508688;;False;{};gj2r5nx;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj2r5nx/;1610580357;1;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;It's quite a shame Arte isn't included. It was underrated as HELL this year. Though Kaguya Sama season 2 really deserves the number 1 spot.;False;False;;;;1610510072;;False;{};gj2tknj;False;t3_kv3521;False;False;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj2tknj/;1610582031;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-rika_;;;[];;;;text;t2_9paon043;False;False;[];;Wait whut y is Oregairu climax lower than Rental GF;False;False;;;;1610519426;;False;{};gj37du6;False;t3_kv3521;False;True;t3_kv3521;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj37du6/;1610591132;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-rika_;;;[];;;;text;t2_9paon043;False;False;[];;I get what your saying i believe oregairu is way beyond rental gf, but its just a poll its not the user rating when taking average user rating oregairu tops rental gf so hard;False;False;;;;1610519833;;False;{};gj37von;False;t3_kv3521;False;True;t1_givtkkv;/r/anime/comments/kv3521/top_10_anime_of_the_year_2020_anime_corner/gj37von/;1610591444;1;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Shows the Silver Award... and that's it."", 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'icon_width': 512, 'id': 'gid_1', 'is_enabled': True, 'is_new': False, 'name': 'Silver', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"# Source Material Corner - -Reply to this comment for any source-related discussion, future spoilers (including future characters, events and general hype about future content), **comparison of the anime adaptation to the original**, or just general talk about the source material. **You are still required to tag all spoilers.** Discussions about the source outside of this comment tree will be removed, and replying with spoilers outside of the source corner will lead to bans. - -The spoiler syntax is: -`[Spoiler source](/s ""Spoiler goes here"")` - -# **All untagged spoilers and hints in this thread will receive immediate 8-day bans (minimum).** - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610303622;moderator;False;{'gid_1': 1};gisa4f3;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisa4f3/;1610344964;1;False;True;anime;t5_2qh22;;1;[]; -[];;;eepicprimee;;;[];;;;text;t2_gbmpm;False;False;[];;"This interaction is one of my favorite moments for this arc and I’m glad the anime did it justice. - -Eren showing his cut hand and how he’s in complete control of the current situation with Reiner’s pure disbelief. - -The entire build up to the Declaration of War was so fucking good.";False;False;;;;1610303652;;1610304098.0;{};gisa5o0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisa5o0/;1610344983;1862;True;False;anime;t5_2qh22;;0;[]; -[];;;Erii1701;;;[];;;;text;t2_3068o239;False;False;[];;I just keep moving forward;False;False;;;;1610303690;;False;{};gisa7d4;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisa7d4/;1610345009;1665;True;False;anime;t5_2qh22;;0;[]; -[];;;matheusdias;;;[];;;;text;t2_i21yl;False;False;[];; On that day, Marley received a grim reminder;False;False;;;;1610303713;;False;{};gisa8cr;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisa8cr/;1610345025;2747;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 200, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'To the MOON.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/s5edqq9abef41_StonksRising.png', 'icon_width': 2048, 'id': 'award_d125d124-5c03-490d-af3d-d07c462003da', 'is_enabled': True, 'is_new': False, 'name': 'Stonks Rising', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/s5edqq9abef41_StonksRising.png?width=16&height=16&auto=webp&s=3bdbd7660aa0164072a243b6df9100da769e8278', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/s5edqq9abef41_StonksRising.png?width=32&height=32&auto=webp&s=30aa8ad7b30c73defb1b1b49dc055f42c8c39fcc', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/s5edqq9abef41_StonksRising.png?width=48&height=48&auto=webp&s=a5109b271dbe4f27927ee8bac7f23d1962a44936', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/s5edqq9abef41_StonksRising.png?width=64&height=64&auto=webp&s=6d6ca632d8c63e6d4e41ff8dbe4600528a4445b2', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/s5edqq9abef41_StonksRising.png?width=128&height=128&auto=webp&s=1f2ed12b4e132e68d553c702d6639a3dc065821c', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/s5edqq9abef41_StonksRising.png?width=16&height=16&auto=webp&s=3bdbd7660aa0164072a243b6df9100da769e8278', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/s5edqq9abef41_StonksRising.png?width=32&height=32&auto=webp&s=30aa8ad7b30c73defb1b1b49dc055f42c8c39fcc', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/s5edqq9abef41_StonksRising.png?width=48&height=48&auto=webp&s=a5109b271dbe4f27927ee8bac7f23d1962a44936', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/s5edqq9abef41_StonksRising.png?width=64&height=64&auto=webp&s=6d6ca632d8c63e6d4e41ff8dbe4600528a4445b2', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/s5edqq9abef41_StonksRising.png?width=128&height=128&auto=webp&s=1f2ed12b4e132e68d553c702d6639a3dc065821c', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/s5edqq9abef41_StonksRising.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}, {'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 150, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Thank you stranger. Shows the award.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'icon_width': 2048, 'id': 'award_f44611f1-b89e-46dc-97fe-892280b13b82', 'is_enabled': True, 'is_new': False, 'name': 'Helpful', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;Garlicbread10;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;ereh;dark;text;t2_8zn7f5o;False;False;[];;Willy literally got destroyed 1 second into his war.;False;False;;;;1610303718;;False;{};gisa8lc;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisa8lc/;1610345028;5057;True;False;anime;t5_2qh22;;2;[]; -[];;;Zjgoku;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Alululu?q=Alululu;light;text;t2_2viqqv3v;False;False;[];;Eren's got the most badass entrance... so on point!!;False;False;;;;1610303719;;False;{};gisa8mq;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisa8mq/;1610345029;8;True;False;anime;t5_2qh22;;0;[]; -[];;;realrimurutempest;;;[];;;;text;t2_4bauklbm;False;False;[];;I think Marley fell into the ocean a bit on account of Eren’s massive balls lol;False;False;;;;1610303732;;False;{};gisa97q;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisa97q/;1610345038;40;True;False;anime;t5_2qh22;;0;[]; -[];;;bluered381;;;[];;;;text;t2_8vifskib;False;False;[];;"Calm and mature Eren is so terrifying. His entire conversation with Reiner was crazy. Especially this part: - - -""Please...kill me. I just want to disappear."" - -Holy fuck, Reiner.";False;False;;;;1610303747;;False;{};gisa9li;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisa9li/;1610345044;2707;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;"At last, all the buildup has reached its breaking point. The Declaration of War. - -King Eren makes his grand entrance. Grim Reminder 2 here we go!";False;False;;;;1610303758;;False;{};gisaa7a;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisaa7a/;1610345054;7;True;False;anime;t5_2qh22;;0;[]; -[];;;MOMdad60;;;[];;;;text;t2_8ujjw5kp;False;False;[];;"“To the enemy forces of Paradis island, this is a declaration of war” - -Goosebumps";False;False;;;;1610303771;;False;{};gisaayn;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisaayn/;1610345067;3103;True;False;anime;t5_2qh22;;0;[]; -[];;;Runbern;;;[];;;;text;t2_77cqfhat;False;False;[];;Why is AoT the online anime where discussion threads are online 3 hours before Crunchyroll release?;False;False;;;;1610303791;;False;{};gisabvk;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisabvk/;1610345081;25;True;False;anime;t5_2qh22;;0;[]; -[];;;receptionbluex;;;[];;;;text;t2_8uj11zop;False;False;[];;"“His name is Eren Yeager” - -I know I’m not the only one replaying that scene over and over";False;False;;;;1610303796;;False;{};gisac08;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisac08/;1610345083;2781;True;False;anime;t5_2qh22;;0;[]; -[];;;realrimurutempest;;;[];;;;text;t2_4bauklbm;False;False;[];;In my opinion the voice acting was a thing of beauty.;False;False;;;;1610303804;;False;{};gisacff;False;t3_kujurp;False;False;t1_gisa5o0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisacff/;1610345090;962;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok_Draw_2833;;;[];;;;text;t2_4dha12vu;False;False;[];;"Eren just set shit off! Expect nothing else from the “I want all the smoke” titan. - -Also Reiner’s VA stole the show, very emotional.";False;False;;;;1610303804;;False;{};gisacg9;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisacg9/;1610345090;28;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi cabbagecakeandtea, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610303808;moderator;False;{};gisacra;False;t3_kujwex;False;False;t3_kujwex;/r/anime/comments/kujwex/so_i_am_looking_for_some_seasonals_andor_other/gisacra/;1610345095;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Alzeng;;;[];;;;text;t2_97vhqmrn;False;False;[];;On that day...Humanity received a grim reminder. They lived in fear of the devils from Paradis;False;False;;;;1610303816;;False;{};gisad63;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisad63/;1610345101;436;True;False;anime;t5_2qh22;;0;[]; -[];;;Damarugaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Damarugaki/;light;text;t2_6zyxfkgg;False;False;[];;"Phenomenal episode. - -The tension was built up really well during Willy's speech and then it was followed by Eren coming out of the basement which had my blood pumping really fast. - - Can't wait for enxt weeks episode";False;False;;;;1610303818;;False;{};gisadbb;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisadbb/;1610345104;88;True;False;anime;t5_2qh22;;0;[]; -[];;;woancue;;;[];;;;text;t2_121itc;False;False;[];;"""Reiner, we are the same."" - -""really, so we’re chill?” - -""Ahahaha idk about that one chief"" - -KILLS EVERYONE";False;False;;;;1610303821;;1610305807.0;{};gisadib;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisadib/;1610345107;2931;True;False;anime;t5_2qh22;;0;[]; -[];;;orangeapple24;;;[];;;;text;t2_8tlnyms2;False;False;[];;"“The same as you” - -Absolute chills";False;False;;;;1610303822;;False;{};gisadji;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisadji/;1610345107;1388;True;False;anime;t5_2qh22;;0;[]; -[];;;Joker8471;;;[];;;;text;t2_8nkk6db4;False;False;[];;Masterpiece;False;False;;;;1610303834;;False;{};gisae7r;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisae7r/;1610345118;123;True;False;anime;t5_2qh22;;0;[]; -[];;;comandoram;;;[];;;;text;t2_7979ne0;False;False;[];;###EREN DID NOTHING WRONG;False;False;;;;1610303844;;False;{};gisaesh;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisaesh/;1610345127;315;True;False;anime;t5_2qh22;;0;[]; -[];;;Voi69;;;[];;;;text;t2_lcnz6;False;False;[];;"Today is the day that we manga readers lost the exclusivity to say ""You are not ready for Episode 5"". This is a day to rejoice!";False;False;;;;1610303847;;False;{};gisaex2;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisaex2/;1610345130;771;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 125, 'coin_reward': 0, 'count': 2, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'When you come across a feel-good thing.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'icon_width': 2048, 'id': 'award_5f123e3d-4f48-42f4-9c11-e98b566d5897', 'is_enabled': True, 'is_new': False, 'name': 'Wholesome', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;xPlasma10;;;[];;;;text;t2_7u9f40e0;False;False;[];;Imagine the people who have no idea what attack on titan is and see declaration of war trending;False;False;;;;1610303847;;1610305910.0;{};gisaeyc;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisaeyc/;1610345130;5490;True;False;anime;t5_2qh22;;2;[]; -[];;;Damarugaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Damarugaki/;light;text;t2_6zyxfkgg;False;False;[];;They built up the tension perfectly;False;False;;;;1610303851;;False;{};gisaf5q;False;t3_kujurp;False;False;t1_gisa5o0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisaf5q/;1610345134;277;True;False;anime;t5_2qh22;;0;[]; -[];;;Neverx_13;;;[];;;;text;t2_8708yf9;False;False;[];;"Where were you when anime was saved? - -AOT just keeps moving forward";False;False;;;;1610303855;;False;{};gisafev;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisafev/;1610345138;96;True;False;anime;t5_2qh22;;0;[]; -[];;;fatima12798;;;[];;;;text;t2_36postor;False;False;[];;This season returned my faith that not all studios change will make the anime quality decrease after NNT and OPM crush my hope;False;False;;;;1610303861;;False;{};gisafpl;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisafpl/;1610345142;10;True;False;anime;t5_2qh22;;0;[]; -[];;;HereComesPapaArima;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/PapaArima;light;text;t2_ydi3d;False;False;[];;sail the ol' seas and you shall find out;False;False;;;;1610303861;;False;{};gisafpt;False;t3_kujurp;False;False;t1_gisabvk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisafpt/;1610345142;21;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 500, 'coin_reward': 100, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 7, 'description': 'Gives 100 Reddit Coins and a week of r/lounge access and ad-free browsing.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/gold_512.png', 'icon_width': 512, 'id': 'gid_2', 'is_enabled': True, 'is_new': False, 'name': 'Gold', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/gold_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}, {'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 150, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Thank you stranger. Shows the award.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'icon_width': 2048, 'id': 'award_f44611f1-b89e-46dc-97fe-892280b13b82', 'is_enabled': True, 'is_new': False, 'name': 'Helpful', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}, {'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 2, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Shows the Silver Award... and that's it."", 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'icon_width': 512, 'id': 'gid_1', 'is_enabled': True, 'is_new': False, 'name': 'Silver', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}, {'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Let's sip to good health and good company"", 'end_date': None, 'giver_coin_reward': 0, 'icon_format': 'PNG', 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png', 'icon_width': 2048, 'id': 'award_3267ca1c-127a-49e9-9a3d-4ba96224af18', 'is_enabled': True, 'is_new': False, 'name': ""I'll Drink to That"", 'penny_donate': 0, 'penny_price': 0, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=16&height=16&auto=webp&s=6ce62fa40de4c6b72859d2cbdf22af5c0e012233', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=32&height=32&auto=webp&s=26297b024da3e9bd6507e7b8553507493b5e6606', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=48&height=48&auto=webp&s=0763517837b22d5e414dd330d5006c0d89ccb499', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=64&height=64&auto=webp&s=9a2154561daa83678f3f9e6e2a627629ee2a2bcc', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=128&height=128&auto=webp&s=96897549f634fd6324e1338a98b9778733ea4813', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=16&height=16&auto=webp&s=6ce62fa40de4c6b72859d2cbdf22af5c0e012233', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=32&height=32&auto=webp&s=26297b024da3e9bd6507e7b8553507493b5e6606', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=48&height=48&auto=webp&s=0763517837b22d5e414dd330d5006c0d89ccb499', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=64&height=64&auto=webp&s=9a2154561daa83678f3f9e6e2a627629ee2a2bcc', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=128&height=128&auto=webp&s=96897549f634fd6324e1338a98b9778733ea4813', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;theshinycelebi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/SH1NGEK1/animelist/Completed;light;text;t2_eawxa;False;True;[];;https://imgur.com/ZCxuNtz;False;False;;;;1610303862;;False;{'gid_1': 2, 'gid_2': 1};gisafs9;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisafs9/;1610345143;3057;True;False;anime;t5_2qh22;;5;[]; -[];;;Kaichou_of_Weebs;;;[];;;;text;t2_83p7tvn5;False;False;[];;"Holy shit. The scene between Eren and Reiner. Eren literally fucked up Reiner with just words. - - -And people were saying the choice of OST was not very great, though it sounded fine to me.";False;False;;;;1610303863;;False;{};gisafso;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisafso/;1610345143;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Medeses;;;[];;;;text;t2_wi3tl;False;False;[];;"„AND SO I PROCLAIM ON THIS DAY!! TO THE ENEMY FORCES OF PARADIS ISLAND!! THIS IS A DECLARATION OF WAR!!“ - -„I think we were born this way. I‘ll just keep moving forward... until my enemies are destroyed“ - -I have waited so long to finally hear this. - -This was the most important moment of season 4 in my opinion. If they get this scene right, we can expect the absolute best. If they fail this scene, the entire season could be doomed. - -And they nailed it!";False;False;;;;1610303870;;False;{};gisag7i;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisag7i/;1610345150;257;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;Eren really pulled a Shiganshina on Liberio;False;False;;;;1610303880;;False;{};gisagr9;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisagr9/;1610345158;928;True;False;anime;t5_2qh22;;0;[]; -[];;;Lasernatoo;;;[];;;;text;t2_du1u246;False;False;[];;Absolute *Pieck* of the season so far;False;False;;;;1610303884;;False;{};gisagzg;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisagzg/;1610345162;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Garlicbread10;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;ereh;dark;text;t2_8zn7f5o;False;False;[];;Their entire conversation gave me chills;False;False;;;;1610303889;;False;{};gisah83;False;t3_kujurp;False;False;t1_gisa5o0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisah83/;1610345165;38;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Shows the Silver Award... and that's it."", 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'icon_width': 512, 'id': 'gid_1', 'is_enabled': True, 'is_new': False, 'name': 'Silver', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;minouneetzoe;;MAL;[];;http://myanimelist.net/animelist/minouneetzoe;dark;text;t2_as0ik;False;False;[];;Hobo Eren DESTROYS depressed Reiner with FACTS and LOGIC.;False;False;;;;1610303900;;False;{'gid_1': 1};gisahuh;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisahuh/;1610345176;2047;True;False;anime;t5_2qh22;;1;[]; -[];;;Seraph_CR;;;[];;;;text;t2_whocm;False;False;[];;Because PATHS;False;False;;;;1610303901;;False;{};gisahvw;False;t3_kujurp;False;False;t1_gisabvk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisahvw/;1610345177;64;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazerionX;;;[];;;;text;t2_d15hvpw;False;False;[];;Until my enemies is destroyed;False;False;;;;1610303903;;False;{};gisai07;False;t3_kujurp;False;False;t1_gisa7d4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisai07/;1610345179;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaichou_of_Weebs;;;[];;;;text;t2_83p7tvn5;False;False;[];;They'll think it's Trump declaring war on the United States lol.;False;False;;;;1610303903;;False;{};gisai0e;False;t3_kujurp;False;False;t1_gisaeyc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisai0e/;1610345180;292;True;False;anime;t5_2qh22;;0;[]; -[];;;Garlicbread10;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;ereh;dark;text;t2_8zn7f5o;False;False;[];;Calm Eren is so terrifying;False;False;;;;1610303906;;False;{};gisai6n;False;t3_kujurp;False;False;t1_gisa7d4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisai6n/;1610345182;741;True;False;anime;t5_2qh22;;0;[]; -[];;;erickjoshuasc;;;[];;;;text;t2_2wpltqqx;False;False;[];;Reiner just can't catch a break man. This man needs a Kitkat.;False;False;;;;1610303912;;False;{};gisaihi;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisaihi/;1610345187;805;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;Eren and Reiner's VAs both did amazing work. Fantastic conversation. You could feel the emotions and the weight behind what they were saying.;False;False;;;;1610303912;;False;{};gisaihm;False;t3_kujurp;False;False;t1_gisacff;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisaihm/;1610345187;726;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;"Holy shit, that was the greatest tease in anime history, the tension was almost unbearable. - -Next episode is gonna be so hype.";False;False;;;;1610303917;;False;{};gisairf;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisairf/;1610345191;10;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;Until the karma record is destroyed;False;False;;;;1610303923;;False;{};gisaj3j;False;t3_kujurp;False;False;t1_gisa7d4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisaj3j/;1610345196;781;True;False;anime;t5_2qh22;;0;[]; -[];;;Damarugaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Damarugaki/;light;text;t2_6zyxfkgg;False;False;[];;"> Gets killed literallly right after - -Eren: Git Gud";False;False;;;;1610303932;;False;{};gisajkm;False;t3_kujurp;False;False;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisajkm/;1610345204;579;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaichou_of_Weebs;;;[];;;;text;t2_83p7tvn5;False;False;[];;EREN YEGAA!!!!;False;False;;;;1610303934;;False;{};gisajo9;False;t3_kujurp;False;False;t1_gisac08;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisajo9/;1610345205;610;True;False;anime;t5_2qh22;;0;[]; -[];;;comandoram;;;[];;;;text;t2_7979ne0;False;False;[];;Now we say you are not ready for ep 15 and ep 16.lol;False;False;;;;1610303938;;False;{};gisajvw;False;t3_kujurp;False;False;t1_gisaex2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisajvw/;1610345209;408;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok_Draw_2833;;;[];;;;text;t2_4dha12vu;False;False;[];;That they live in fear of the island devils.;False;False;;;;1610303938;;False;{};gisajw0;False;t3_kujurp;False;False;t1_gisa8cr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisajw0/;1610345209;1262;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;They decided to put it up when the first fansub is available.;False;False;;;;1610303940;;False;{};gisajyf;False;t3_kujurp;False;False;t1_gisabvk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisajyf/;1610345210;18;True;False;anime;t5_2qh22;;0;[]; -[];;;dark77638;;;[];;;;text;t2_14cb1i;False;False;[];;"Anyone’s here to be witness to one of the most anticipated episode of AoT S4? - -Haven’t watched the episode yet but here, take my upvote: Spirit Bomb Style! - - - -༼ つ ◕_◕ ༽つ ((upvote)) - - - -Onegaishimasu Pls reach 20k!!!!! - -————— Below space is for editing my comment after watched the episode ——————— - -Honestly, i saw people saying that ost aint fit in but after i watched it 10/10 ost, atmosphere, Eren’s Reiner’s VA tho Willy Va can be improve a bit. - -Damn Eren regrow his foot is weird and disgusting af lol - -The cart titan’s panzer moment unit is lovely! - -Tho im manga reader this episode made me say holyshit again and again just wow 10/10 - -Let’s break 20k karma again guys!";False;False;;;;1610303941;;1610307005.0;{};gisak16;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisak16/;1610345211;8;True;False;anime;t5_2qh22;;0;[];True -[];;;woancue;;;[];;;;text;t2_121itc;False;False;[];;"> You said you would make sure we would die in the most excruciating way possible. Is that what you came here for? - -> Oh, did I say that? Please, forget I said that. - -This moment was a little funny, but this exchange really shows that Eren has grown. That threat from Season 2 was classic Eren (angry, hot-headed) and for him to forget it is very telling. He's changed for sure.";False;False;;;;1610303942;;1610317049.0;{};gisak3a;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisak3a/;1610345212;1811;True;False;anime;t5_2qh22;;0;[]; -[];;;Garlicbread10;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;ereh;dark;text;t2_8zn7f5o;False;False;[];;Willy’s speech was insane;False;False;;;;1610303965;;False;{};gisaldb;False;t3_kujurp;False;False;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisaldb/;1610345234;950;True;False;anime;t5_2qh22;;0;[]; -[];;;Memotauro;;;[];;;;text;t2_yk9re;False;False;[];;Is it time?;False;False;;;;1610303973;;False;{};gisals3;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisals3/;1610345243;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610303975;;False;{};gisalwj;False;t3_kujurp;False;True;t1_gisa7d4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisalwj/;1610345244;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Neverx_13;;;[];;;;text;t2_8708yf9;False;False;[];;Time to move that goalpost to episode 16 now.;False;False;;;;1610303984;;False;{};gisamcu;False;t3_kujurp;False;False;t1_gisaex2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisamcu/;1610345251;119;True;False;anime;t5_2qh22;;0;[]; -[];;;Voi69;;;[];;;;text;t2_lcnz6;False;False;[];;Ahah that is so true!;False;False;;;;1610303987;;False;{};gisamiz;False;t3_kujurp;False;False;t1_gisajvw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisamiz/;1610345254;105;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;I've read the manga so I knew what would happen and still I was glued to the screen for the whole time. They executed this perfectly.;False;False;;;;1610303988;;False;{};gisamk0;False;t3_kujurp;False;False;t1_gisaf5q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisamk0/;1610345254;213;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaurav_098;;;[];;;;text;t2_70s2u5yb;False;False;[];;"ONE OF THE FUCKING GREATEST EPISODES OF AOT!!! - -The direction was great. The buildup was amazing with all the music, VA did an amazing job especially Willy's VA. The animation was also beautiful. - -I know some people are not that happy with the Eren transformation OST but that was the same case for Levi vs beast Titan and honestly the OST was NOT EVEN BAD!! - -Lastly, it was a amazing episode and an absolute 10/10";False;False;;;;1610304005;;False;{};gisanh2;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisanh2/;1610345269;997;True;False;anime;t5_2qh22;;0;[]; -[];;;Medeses;;;[];;;;text;t2_wi3tl;False;False;[];;Until my enemies are destroyed;False;False;;;;1610304005;;False;{};gisanh4;False;t3_kujurp;False;False;t1_gisa7d4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisanh4/;1610345269;117;True;False;anime;t5_2qh22;;0;[]; -[];;;sstizzle;;;[];;;;text;t2_e9qm7;False;False;[];;A grim reminder 😳;False;False;;;;1610304005;;False;{};gisanh5;False;t3_kujurp;False;False;t1_gisagr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisanh5/;1610345269;391;True;False;anime;t5_2qh22;;0;[]; -[];;;Voi69;;;[];;;;text;t2_lcnz6;False;False;[];;Tru dat;False;False;;;;1610304007;;False;{};gisanl9;False;t3_kujurp;False;False;t1_gisamcu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisanl9/;1610345271;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Damarugaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Damarugaki/;light;text;t2_6zyxfkgg;False;False;[];;It's out on Wakanim in both French and German;False;False;;;;1610304008;;False;{};gisann9;False;t3_kujurp;False;False;t1_gisabvk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisann9/;1610345272;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaichou_of_Weebs;;;[];;;;text;t2_83p7tvn5;False;False;[];;"A pretty big change from the bratty Eren from season 1 who shouted like all generic shonen Protagonists. -Ph how far we have come. - -Isayama is a genius.";False;False;;;;1610304020;;False;{};gisao83;False;t3_kujurp;False;False;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisao83/;1610345281;1226;True;False;anime;t5_2qh22;;0;[]; -[];;;Plkgi49;;;[];;;;text;t2_q1cm3;False;False;[];;Idk, but the episode aired one hour ago in France;False;False;;;;1610304028;;False;{};gisaoon;False;t3_kujurp;False;False;t1_gisabvk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisaoon/;1610345288;7;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 125, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'When you come across a feel-good thing.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'icon_width': 2048, 'id': 'award_5f123e3d-4f48-42f4-9c11-e98b566d5897', 'is_enabled': True, 'is_new': False, 'name': 'Wholesome', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;Sane-Ni-Wa-To-Ri;;;[];;;;text;t2_m399g2f;False;True;[];;"#[End card for this episode!](https://pbs.twimg.com/media/ErMw7vkVoAUlsYB?format=jpg&name=4096x4096) - -(from [official twitter](https://twitter.com/anime_shingeki/status/1348292263244255234)) - -#[MAPPA: F O O T](https://pbs.twimg.com/media/ErYZHTZU0AAS5xJ?format=jpg&name=medium) - -(from [MAPPA twitter](https://twitter.com/MAPPA_Info/status/1348292755324170241))";False;False;;;;1610304031;;False;{};gisaov5;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisaov5/;1610345290;607;True;False;anime;t5_2qh22;;1;[]; -[];;;Damarugaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Damarugaki/;light;text;t2_6zyxfkgg;False;False;[];;Voice acting was on point;False;False;;;;1610304032;;False;{};gisaoxm;False;t3_kujurp;False;False;t1_gisaldb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisaoxm/;1610345291;649;True;False;anime;t5_2qh22;;0;[]; -[];;;axl625;;;[];;;;text;t2_tskg1;False;False;[];;"Man, I love Reiner, but seeing him suffer because of Eren is worth it. He finally got the payback from what he did to Shiganshina years ago. He was just so frightened the whole time, especially when Eren began transforming. - -It was kind of sad to see Falco break down as well. - -Tybur’s speech was amazing from start to finish (aka him being cleaved in half). - -The OST fits perfectly with every scene as well";False;False;;;;1610304034;;False;{};gisap0m;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisap0m/;1610345293;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610304036;;False;{};gisap43;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisap43/;1610345294;1;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;Reiner's VA has been fantastic this season but he outdid himself again this episode.;False;False;;;;1610304036;;False;{};gisap5e;False;t3_kujurp;False;False;t1_gisacff;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisap5e/;1610345295;169;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;"ReZero: ""To the enemy forces of Shingeki no Kyojin, this is a declaration of karma war!"" - -SnK E5: *bursts out of the stage, eviscerating him*";False;False;;;;1610304043;;False;{};gisapik;False;t3_kujurp;False;False;t1_gisaj3j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisapik/;1610345300;720;True;False;anime;t5_2qh22;;0;[]; -[];;;ItchyPlatypus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ItchyPlatypus;light;text;t2_x6uza5h;False;False;[];;Sk ♾ (or skate the infinity) is looking like it’d be a very good anime.;False;False;;;;1610304043;;False;{};gisapiu;False;t3_kujwex;False;False;t3_kujwex;/r/anime/comments/kujwex/so_i_am_looking_for_some_seasonals_andor_other/gisapiu/;1610345300;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ginpachi-sensei1;;skip7;[];;;dark;text;t2_3e8zqu4l;False;False;[];;Warhammer is Coming.;False;False;;;;1610304050;;False;{};gisapyn;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisapyn/;1610345308;224;True;False;anime;t5_2qh22;;0;[]; -[];;;Medeses;;;[];;;;text;t2_wi3tl;False;False;[];;"What it was like to live in fear... -From the eldian devils of paradis island";False;False;;;;1610304055;;1610305358.0;{};gisaq87;False;t3_kujurp;False;True;t1_gisa8cr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisaq87/;1610345312;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sstizzle;;;[];;;;text;t2_e9qm7;False;False;[];;Until Reiner is destroyed;False;False;;;;1610304057;;False;{};gisaqcj;False;t3_kujurp;False;False;t1_gisa7d4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisaqcj/;1610345314;37;True;False;anime;t5_2qh22;;0;[]; -[];;;GowtherETC;;;[];;;;text;t2_47ql3fom;False;False;[];;"Eren: ""and I took that personally""";False;False;;;;1610304061;;False;{};gisaqk9;False;t3_kujurp;False;False;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisaqk9/;1610345317;284;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610304064;;False;{};gisaqrs;False;t3_kujurp;False;True;t1_gisaesh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisaqrs/;1610345320;16;True;False;anime;t5_2qh22;;0;[]; -[];;;moath2335;;;[];;;;text;t2_153kut;False;False;[];;That would be a great plot twist.;False;False;;;;1610304068;;False;{};gisaqzu;False;t3_kujurp;False;False;t1_gisai0e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisaqzu/;1610345323;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Damarugaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Damarugaki/;light;text;t2_6zyxfkgg;False;False;[];;"Eren: ""And I took that personally""";False;False;;;;1610304070;;False;{};gisar3t;False;t3_kujurp;False;False;t1_gisafs9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisar3t/;1610345326;1769;True;False;anime;t5_2qh22;;0;[]; -[];;;Exodor54;;MAL;[];;http://myanimelist.net/animelist/Exodor;dark;text;t2_eex6z;False;False;[];;Everyone gangsta until the hobo shakes the hand of his old friend.;False;False;;;;1610304070;;False;{};gisar4f;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisar4f/;1610345326;155;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;It was trending on Twitter like 2 days ago and apparently it did indeed cause some people to freak out lol.;False;False;;;;1610304074;;False;{};gisarcw;False;t3_kujurp;False;False;t1_gisaeyc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisarcw/;1610345330;2265;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610304075;;False;{};gisarfg;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisarfg/;1610345331;1;True;False;anime;t5_2qh22;;0;[]; -[];;;axl625;;;[];;;;text;t2_tskg1;False;False;[];;Eren: OKAY, YOU ASKED FOR IT.;False;False;;;;1610304077;;False;{};gisari3;False;t3_kujurp;False;False;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisari3/;1610345332;148;True;False;anime;t5_2qh22;;0;[]; -[];;;shadebedlam;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Shadebedlam;light;text;t2_fl41u;False;False;[];;Yeah, it was okay I guess. /s;False;False;;;;1610304078;;False;{};gisarjr;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisarjr/;1610345333;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"*Until the Reddit servers have crashed* - -Seriously Reddit was down for me for over 10 minutes just after the AoT thread appeared and its still crashing.";False;False;;;;1610304085;;1610304492.0;{};gisas08;False;t3_kujurp;False;False;t1_gisa7d4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisas08/;1610345340;61;True;False;anime;t5_2qh22;;0;[]; -[];;;Exodor54;;MAL;[];;http://myanimelist.net/animelist/Exodor;dark;text;t2_eex6z;False;False;[];;Well, technically...;False;False;;;;1610304088;;False;{};gisas6b;False;t3_kujurp;False;False;t1_gisadib;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisas6b/;1610345342;132;True;False;anime;t5_2qh22;;0;[]; -[];;;Garlicbread10;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;ereh;dark;text;t2_8zn7f5o;False;False;[];;~~United States~~ Divides states of America;False;False;;;;1610304102;;False;{};gisasz7;False;t3_kujurp;False;False;t1_gisai0e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisasz7/;1610345354;74;True;False;anime;t5_2qh22;;0;[]; -[];;;cabbagecakeandtea;;;[];;;;text;t2_8cfy5rzy;False;False;[];;I am not sure ll enjoy sports stuff but I am giving this one a try;False;False;;;;1610304102;;False;{};gisaszu;True;t3_kujwex;False;True;t1_gisapiu;/r/anime/comments/kujwex/so_i_am_looking_for_some_seasonals_andor_other/gisaszu/;1610345355;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hoochiex21;;;[];;;;text;t2_66zb9;False;False;[];;"Chapter to Episode Guide: - -**Episode 60 (Season 4 Episode 1) - The Other Side of the Ocean (Chapter number with same title: 91)** *Total number of pages covered: 89* - -* Chapter 91 -* Chapter 92 (Marley's Soldiers) pages 1 to 11 and 13 to 45 - -**Episode 61 (Season 4 Episode 2) - Midnight Train (93)** *79* - -* Chapter 93 pages 1 to 2, 4 to 15, 17 to 18, and 20 to 45 (*WARNING: Not all of the panels on the pages were shown*) -* Chapter 94 (The Boy Inside the Walls) pages 1 to 5 and 7 to 26 -* Chapter 95 (Liar) pages 3 to 4, 9 to 10, and 12 to 19 (*WARNING: Not all of the panels on the pages were shown*) - -**Episode 62 (Season 4 Episode 3) - The Door of Hope (96)** *93* - -* Chapter 94 pages 27 to 30 and 36 to 45 -* Chapter 95 pages 21 to 29, 31 to 35, 38, and 40 to 45 -* Chapter 96 pages 1 to 15, 24 to 27, 30 to 38, and 44 to 45 -* Chapter 97 pages 1 to 6, 8 to 17, and 19 to 30 (*WARNING: Not all of the panels on the pages were shown*) - -**Episode 63 (Season 4 Episode 4) - From One Hand to Another (97)** *60* - -* Chapter 95 page 8 -* Chapter 97 pages 31 to 45 (*WARNING: Not all of the panels on the pages were shown*) -* Chapter 98 (Good to See) pages 1 to 5, 7 to 40, and post credits 41 to 45 (*WARNING: Not all of the panels on the pages were shown*) - -**Episode 64 (Season 4 Episode 5) - Declaration of War (100)** *82* - -* Chapter 99 (Guilty Shadow) -* Chapter 100 pages 8 to 19 and 21 to 45 - -**Episode 65 (Season 4 Episode 6) - [SPOILER WARNING](/s ""The War Hammer Titan (101)"")** - -**Episode 66 (Season 4 Episode 7) - [SPOILER WARNING](/s ""Assault (103)"")** - -**Episode 67 (Season 4 Episode 8) - [SPOILER WARNING](/s ""Assassin's Bullet (105)"")** - -*** -Chapters|Volume -::|:: -91 to 94|23 -95 to 98|24 -99 to 102|25 -103 to 106|26 -107 to 110|27 -111 to 114|28 -115 to 118|29 -119 to 122|30 -123 to 126|31 -127 to 130|32 -131 to 134|33 -135 to 139|34 -Latest chapter: 136, latest Japanese volume: 33, and latest English volume: 32 - -[Season 2 Chapter to Episode Guide](https://old.reddit.com/r/anime/comments/6htog4/spoilers_shingeki_no_kyojin_season_2_episode_37/dj14a6t) - -[Season 3 Part 1 Chapter to Episode Guide](https://old.reddit.com/r/anime/comments/9o4vfk/shingeki_no_kyojin_season_3_episode_49_discussion/e7rk5uu) - -[Season 3 Part 2 Chapter to Episode Guide](https://old.reddit.com/r/anime/comments/c7kivm/shingeki_no_kyojin_season_3_episode_59_discussion/esg0tsi) -*** -Some Dates: - -[February 3 - Season 4 ED](https://shingeki.tv/final/music/ed) -[May 19 - Season 4 Part 1 Blu-ray/DVD](https://shingeki.tv/final/product/final_1) To include episodes 60 to 67 -[July 21 - Season 4 Part 2 Blu-ray/DVD](https://shingeki.tv/final/product/final_2) To include episodes 68 to 75";False;False;;;;1610304107;;False;{};gisatbg;False;t3_kujurp;False;False;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisatbg/;1610345360;27;True;False;anime;t5_2qh22;;0;[]; -[];;;cornpenguin01;;;[];;;;text;t2_147sgq;False;False;[];;The conversation between Eren and Reiner is one of the highest points in the whole series. When you think how these two characters were received when the series started to where they are now, the difference is astounding. They’re some of the best written characters in anime period;False;False;;;;1610304119;;False;{};gisau1z;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisau1z/;1610345371;1356;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610304127;;False;{};gisaujk;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisaujk/;1610345379;5;True;False;anime;t5_2qh22;;0;[]; -[];;;axl625;;;[];;;;text;t2_tskg1;False;False;[];;Can’t blame Eren for doing that;False;False;;;;1610304134;;False;{};gisav09;False;t3_kujurp;False;False;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisav09/;1610345386;509;True;False;anime;t5_2qh22;;0;[]; -[];;;iluvsnails;;;[];;;;text;t2_avkfh7q;False;False;[];;That was fucking hype, i was shivering when i watched the raws. Now i am crying;False;False;;;;1610304135;;False;{};gisav3d;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisav3d/;1610345388;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610304154;;False;{};gisaw5y;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisaw5y/;1610345405;1;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Shows the Silver Award... and that's it."", 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'icon_width': 512, 'id': 'gid_1', 'is_enabled': True, 'is_new': False, 'name': 'Silver', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;"Reiner: But my mum is still alive... - -Eren: Let me fix that real quick brb";False;False;;;;1610304170;;False;{'gid_1': 1};gisax5b;False;t3_kujurp;False;False;t1_gisadji;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisax5b/;1610345420;1192;True;False;anime;t5_2qh22;;1;[]; -[];;;Ok_Draw_2833;;;[];;;;text;t2_4dha12vu;False;False;[];;Eren trying to speed run this war.;False;False;;;;1610304170;;False;{};gisax64;False;t3_kujurp;False;False;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisax64/;1610345420;2633;True;False;anime;t5_2qh22;;0;[]; -[];;;moath2335;;;[];;;;text;t2_153kut;False;False;[];;"His name is ere... - - -Please send help I am also stuck in this scene.";False;False;;;;1610304173;;False;{};gisaxby;False;t3_kujurp;False;False;t1_gisac08;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisaxby/;1610345423;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"*That Eren is moving forward until his enemies are destroyed* - -Though he killed some civilians when he transformed since he mentioned before that the residential complex above the basement is teeming with ordinary people waiting for the show to begin.";False;False;;;;1610304183;;1610306270.0;{};gisaxz3;False;t3_kujurp;False;False;t1_gisa8cr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisaxz3/;1610345433;270;True;False;anime;t5_2qh22;;0;[]; -[];;;Yaou33;;;[];;;;text;t2_137ipz;False;False;[];;"When Reiner fell to the ground and told Eren to kill him... -*goosebumps*";False;False;;;;1610304193;;False;{};gisayme;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisayme/;1610345443;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;Would be hilarious if Trump as the president actually declared war on another country and everyone just chose to ignore it.;False;False;;;;1610304194;;False;{};gisayng;False;t3_kujurp;False;False;t1_gisai0e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisayng/;1610345444;27;True;False;anime;t5_2qh22;;0;[]; -[];;;toutoune134;;;[];;;;text;t2_fokbo;False;False;[];;Glad to see that animated Eren growing another foot is as disgusting as in the manga! Music was nutty and I'm glad they didn't go with YSBG as some wanted, it wouldn't have fit the scene at all. This episode was one of the fastest one I've ever watched, it felt like it only lasted 10 minutes. Great job from the director, you could fell the tension rise throughout the episode. This episode was bit on the conservative side animation-wise but it didn't reduce the impact of the events. And now the war beginning, looking forward to some good action next episode!;False;False;;;;1610304203;;False;{};gisaz83;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisaz83/;1610345452;40;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;100%. Marley repeatedly attacked Paradis over the past decade and is actively planning to attack again, literally declaring war this episode. They wanted this war. . . Now they're getting it.;False;False;;;;1610304212;;False;{};gisazrh;False;t3_kujurp;False;False;t1_gisaesh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisazrh/;1610345460;46;True;False;anime;t5_2qh22;;0;[]; -[];;;ItchyPlatypus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ItchyPlatypus;light;text;t2_x6uza5h;False;False;[];;It doesn’t seem sport to me right now although it probably will be, it’s just off the walls crazy. Reminiscent of 00s extreme sports games such as SSX. My main recommendation though was because the production is amazing.;False;False;;;;1610304213;;False;{};gisazth;False;t3_kujwex;False;True;t1_gisaszu;/r/anime/comments/kujwex/so_i_am_looking_for_some_seasonals_andor_other/gisazth/;1610345460;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DAS_BOOOOOT;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/D1RTYD33DS;light;text;t2_11z8cv;False;False;[];;That was pretty JAEGERBOMBASTIC ngl;False;False;;;;1610304216;;False;{};gisb00a;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb00a/;1610345464;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaichou_of_Weebs;;;[];;;;text;t2_83p7tvn5;False;False;[];;I think his conversion with Magath indicated he knew he would most likely die. He just wanted to lure Eren out.;False;False;;;;1610304219;;False;{};gisb08f;False;t3_kujurp;False;False;t1_gisajkm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb08f/;1610345468;364;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;lol, got a link?;False;False;;;;1610304219;;False;{};gisb08n;False;t3_kujurp;False;False;t1_gisarcw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb08n/;1610345468;17;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;Eren Shapiro;False;False;;;;1610304222;;False;{};gisb0e6;False;t3_kujurp;False;False;t1_gisahuh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb0e6/;1610345470;607;True;False;anime;t5_2qh22;;0;[]; -[];;;holyfrickheck;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/lillianzheng;light;text;t2_5q0vw47x;False;False;[];;it’s begun;False;False;;;;1610304223;;False;{};gisb0h7;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb0h7/;1610345471;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610304233;;False;{};gisb12t;False;t3_kujurp;False;True;t1_gisajkm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb12t/;1610345481;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gridemann;;;[];;;;text;t2_dhsy2;False;False;[];;"However... -this storm facing reddit can all be traced back to the existence of **Karma Contests**. -I... would have never joined [r/anime](https://www.reddit.com/r/anime/), if it was up to me. -I've hated my blood. More than anyone else... I wished for the extinction of all weebs. -But -I do not want to lose. Because I was born into this world. - -We may belong to different subreddits and fandoms ! But I ask any of you who do not wish to be forgotten to lend me your Karma ! - -Please... I want to ensure our future together ! -I want you to **upvote with me !** Against the Devils of *Weekly /r/anime Karma & Poll Ranking* - -It is true.. We still face many issues that keep the people of the world to label AoT as a Masterpiece. But I believe we can band together in appreciation of this show. -We can overcome anything if only we can work as one ! -As Ambassador for the AoT fandom, I wish for **Attack on Titan Supremacy !** - -And so I proclaim on this day ! To the Haters Downvoters and Doomsayers ! -**A Declaration of War !!** - - - - -*Note:* -*Originally, I had planned to use my favorite Speech to Hype up the Karma War between AoT and RE: Zero but after this weeks premiere turned out to only be a meek build-up episode the timing just didnt feel right.¯\\\_(ツ)_/¯*";False;False;;;;1610304237;;False;{};gisb1bh;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb1bh/;1610345486;246;True;False;anime;t5_2qh22;;0;[]; -[];;;Garlicbread10;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;ereh;dark;text;t2_8zn7f5o;False;False;[];;I would but I’m also stuck on this scene;False;False;;;;1610304242;;False;{};gisb1n4;False;t3_kujurp;False;False;t1_gisaxby;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb1n4/;1610345492;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaichou_of_Weebs;;;[];;;;text;t2_83p7tvn5;False;False;[];;I'll KEEP MOVING FORWARD.;False;False;;;;1610304246;;False;{};gisb1vv;False;t3_kujurp;False;False;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb1vv/;1610345496;50;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;"Wuhhhhhhhhhhh. -Wuhhhhhhhhhhhhhhh. -Wuhhhhhhhhhhhhhhhhhhhhhhhhhh. - -I have no word. 3 years in waiting to see this animated and it's finally here and it's freaking glorious. - -When <ətˈæk 0N tάɪtn> starting playing, the drop to silence, then the transition into that bamboozly wholesome piano track just before ***the moment***... I was just shaking for 10 minutes straight. I envy anime-onlies that get to experience this for the first in its anime format. - -Ah fuck I'm literally crying right now. Fucking take a bow, Mappa. - -^And ^look ^at ^titan ^Eren ^now, ^what ^a ^chad.";False;False;;;;1610304252;;False;{};gisb294;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb294/;1610345502;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nome_de_utilizador;;;[];;;;text;t2_5z33g;False;False;[];;#JustKeepMovingForward;False;False;;;;1610304256;;False;{};gisb2hh;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb2hh/;1610345505;6;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;OMFG IM NOT READY FOR THIS;False;False;;;;1610304256;;False;{};gisb2in;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb2in/;1610345505;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GowtherETC;;;[];;;;text;t2_47ql3fom;False;False;[];;Props to the animators too. Lots of subtle body language on Reiner throughout their conversation;False;False;;;;1610304257;;False;{};gisb2jd;False;t3_kujurp;False;False;t1_gisa5o0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb2jd/;1610345506;50;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;My mom was asking why is Declaration of War suddenly trending lol;False;False;;;;1610304258;;False;{};gisb2mp;False;t3_kujurp;False;False;t1_gisaeyc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb2mp/;1610345508;846;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;IM SO FUCKING HYPED GUYS. LETS GOOOOOO SASAGEYOOOOOOOOOOOOOOO;False;False;;;;1610304266;;False;{};gisb35s;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb35s/;1610345517;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cabbagecakeandtea;;;[];;;;text;t2_8cfy5rzy;False;False;[];;Makes sense, thanks!;False;False;;;;1610304268;;False;{};gisb398;True;t3_kujwex;False;False;t1_gisazth;/r/anime/comments/kujwex/so_i_am_looking_for_some_seasonals_andor_other/gisb398/;1610345518;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610304273;;False;{};gisb3l1;False;t3_kujurp;False;True;t1_gisaqrs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb3l1/;1610345523;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;DutRed;;;[];;;;text;t2_2ep66tu7;False;False;[];;"Willy: i declare war on Eren Jeager!!! - -Eren: and i took that personally";False;False;;;;1610304276;;False;{};gisb3si;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb3si/;1610345526;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PM_ME_YOUR_TOlLET;;;[];;;;text;t2_134r0f;False;False;[];;Amazing episode. Even though i've found that the OST that was used when Eren attacked wasn't suited for the overall atmosphere...;False;False;;;;1610304280;;False;{};gisb3zy;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb3zy/;1610345530;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;That moment when USA's mayhem will give AoT a boost of popularity due to scared/confused people. This episode's title had a great timing;False;False;;;;1610304291;;False;{};gisb4s7;False;t3_kujurp;False;False;t1_gisaeyc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb4s7/;1610345542;624;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610304297;;False;{};gisb56p;False;t3_kujurp;False;True;t1_gisaqrs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb56p/;1610345548;0;True;False;anime;t5_2qh22;;0;[]; -[];;;JW9304;;;[];;;;text;t2_tynoz;False;False;[];;"Anybody else not breathe in the last minute? - -That was so tense and hype.";False;False;;;;1610304302;;False;{};gisb5i0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb5i0/;1610345553;701;True;False;anime;t5_2qh22;;0;[]; -[];;;Nome_de_utilizador;;;[];;;;text;t2_5z33g;False;False;[];;Grim reminder.2 liberlio bogaloo;False;False;;;;1610304303;;False;{};gisb5je;False;t3_kujurp;False;False;t1_gisa8cr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb5je/;1610345554;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Erenblade07;;;[];;;;text;t2_3x7o1z4h;False;False;[];;I am a manga reader and i am truly intrigued to see what anime-onlies thought of the episode;False;False;;;;1610304327;;False;{};gisb73m;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb73m/;1610345578;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"All hail Yuki Kaji and Yoshimasa Hosoya! - -They channelled the emotions into the characters perfectly.";False;False;;;;1610304329;;1610305759.0;{};gisb781;False;t3_kujurp;False;False;t1_gisaihm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb781/;1610345580;342;True;False;anime;t5_2qh22;;0;[]; -[];;;KittenBuns1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KittenBuns1;light;text;t2_5j04zssx;False;False;[];;"*I just keep moving forward... until my enemies are destroyed.* - -At that moment, Eren went from 9/10 protagonist to 10/10 protagonist.";False;False;;;;1610304330;;False;{};gisb78q;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb78q/;1610345580;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ShinaMashir0;;;[];;;;text;t2_rhsd8;False;False;[];;What a banger of episode, Mappa did justice to one of the best scene in SNK, i was scared at first but i think with the time they had they gonna do a better job than Wit studio.;False;False;;;;1610304332;;False;{};gisb7ex;False;t3_kujurp;False;False;t1_gisadji;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb7ex/;1610345583;198;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;Dinner AND a show!;False;False;;;;1610304337;;False;{};gisb7qa;False;t3_kujurp;False;True;t1_gisb12t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb7qa/;1610345588;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610304337;;False;{};gisb7qx;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb7qx/;1610345588;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mohamez;;;[];;;;text;t2_9p0gp;False;False;[];;\#AsOfTodayDeclarationOfWar;False;False;;;;1610304339;;False;{};gisb7ut;False;t3_kujurp;False;False;t1_gisai0e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb7ut/;1610345589;71;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610304349;;False;{};gisb8it;False;t3_kujurp;False;True;t1_gisaihi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb8it/;1610345599;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaichou_of_Weebs;;;[];;;;text;t2_83p7tvn5;False;False;[];;"Virgin ""never going to give up"" v/s ""CHAD KEEP MOVING FORWARD"".";False;False;;;;1610304361;;False;{};gisb8ui;False;t3_kujurp;False;False;t1_gisa7d4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb8ui/;1610345604;5;True;False;anime;t5_2qh22;;0;[]; -[];;;fayezabdd;;;[];;;;text;t2_1vo7dygx;False;False;[];;"THATS ERENNNN FUCKING YEAGER FOR YOU HE REALLY DID THAT I'M STILL SHAKING WTF -THE BEST SHOW OF ALL TIME HANDS DOWN RIGHT HERE MAPPA WTF ARE YOU DOING TO US I THINK I'VE CAME THRICE WATCHING THE LAST 2 MINUTES HELLO WHERE THE FUCK IS THE NEXT EPISODE HELLO ISAYAMA WTF MAN! ¿¿¡¡¿?";False;False;;;;1610304365;;False;{};gisb939;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb939/;1610345608;128;True;False;anime;t5_2qh22;;0;[]; -[];;;realrimurutempest;;;[];;;;text;t2_4bauklbm;False;False;[];;All that armor and yet he’s broken on the inside 😔;False;False;;;;1610304371;;False;{};gisb9rv;False;t3_kujurp;False;False;t1_gisaihi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb9rv/;1610345619;573;True;False;anime;t5_2qh22;;0;[]; -[];;;tiour;;;[];;;;text;t2_5ktwaudn;False;False;[];;"This is what we’ve all been waiting for. Attack on Titan declares war! It can’t be stopped anymore! - -It was a good episode, I felt my heart beat out of my chest as the climax approached. MAPPA continues to do a great job!";False;False;;;;1610304372;;False;{};gisb9v5;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb9v5/;1610345621;1;True;False;anime;t5_2qh22;;0;[]; -[];;;redboundary;;;[];;;;text;t2_3mzzbdwx;False;False;[];;It's fair. He waited till Willy declared war;False;False;;;;1610304373;;False;{};gisb9xy;False;t3_kujurp;False;False;t1_gisaesh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisb9xy/;1610345622;274;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610304381;;False;{};gisbaha;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbaha/;1610345630;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;my guy needs a break :(;False;False;;;;1610304382;;False;{};gisbak6;False;t3_kujurp;False;False;t1_gisaqcj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbak6/;1610345631;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;"Amazing episode, but I'm really sad about how they messed up the music choice for Eren's transformation. - -For those of you who are also disappointed in the OST, check out [this edit](https://www.reddit.com/r/titanfolk/comments/kugyrh/lack_of_ost_was_disappointing_so_i_added_the/) (warning, manga reader subreddit, don't read the comments or look at any other posts on this sub!) - - The soundtrack adds **so much** to the scene, makes you wonder why the anime didn't use it for this moment.";False;True;;comment score below threshold;;1610304383;;False;{};gisbanh;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbanh/;1610345633;-12;True;False;anime;t5_2qh22;;0;[]; -[];;;SrCannon;;;[];;;;text;t2_21ftvglj;False;False;[];;"OMG!! - -I couldn't breath at all in the whole episode! -I was just waiting and having chills and about to freak out, dude... LOL - -The atmosphere was so intense in this ep. I wanna more. - -And R.I.P Willy";False;False;;;;1610304388;;False;{};gisbazy;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbazy/;1610345639;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TSmasher1000;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_14sxjn;False;False;[];;"I think we were all born this way. I just keep moving forward until all my enemies are destroyed. ***CHILLS!*** - -It’s ironic how Reiner is getting the worst, most painful death possible by Eren refusing to kill him right then and there. Living in itself is painful for our sufferboi. Eren really knows how to tear down a psyche like his granddad and Reiner now and make them have psychotic breakdowns. Falco’s even frightened of him. Now that he’s public enemy number one, he’s literally the most dangerous man in the world ~~still hot though.~~ - -I’ve been waiting for that moment to be animated for something like 3 years now and now that it’s finally animated it’s glorious. When it came out it literally felt like a festival where everything was about to implode. All of the thing’s going on in the background and all the enigmatic actions of Eren made it felt as though I was witnessing a huge moment in history unfolding. Damn it was such a treat to read but now that it’s here to watch I can only rejoice.";False;False;;;;1610304389;;False;{};gisbb1m;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbb1m/;1610345640;20;True;False;anime;t5_2qh22;;0;[]; -[];;;LordKaelan;;MAL;[];;https://myanimelist.net/profile/LordKaelan;dark;text;t2_uyh8o;False;False;[];;Every week we watch anime history be made.;False;False;;;;1610304390;;False;{};gisbb5j;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbb5j/;1610345642;86;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;Yes, we've known this for months. The PVs have always looked terrible and none of the staff have worked in anime before.;False;False;;;;1610304393;;False;{};gisbbar;False;t3_kuk0qd;False;False;t3_kuk0qd;/r/anime/comments/kuk0qd/exarm_anime_is_trash/gisbbar/;1610345645;6;True;False;anime;t5_2qh22;;0;[]; -[];;;mohamez;;;[];;;;text;t2_9p0gp;False;False;[];;"> It was trending on Twitter like 2 days ago - -As expected of manga readers.";False;False;;;;1610304402;;False;{};gisbbwg;False;t3_kujurp;False;False;t1_gisarcw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbbwg/;1610345655;1663;True;False;anime;t5_2qh22;;0;[]; -[];;;vilstheman;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Neiltheone;light;text;t2_5kuc5bng;False;False;[];;Perfect episode;False;False;;;;1610304406;;False;{};gisbc6y;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbc6y/;1610345660;6;True;False;anime;t5_2qh22;;0;[]; -[];;;RekklesCami;;;[];;;;text;t2_3ozyz0ye;False;False;[];;About time;False;False;;;;1610304407;;False;{};gisbc9s;False;t3_kujurp;False;True;t1_gisaex2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbc9s/;1610345661;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KittenBuns1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KittenBuns1;light;text;t2_5j04zssx;False;False;[];;That this scene has been parodied so much that no one can take it seriously anymore.;False;False;;;;1610304409;;False;{};gisbcfv;False;t3_kujurp;False;True;t1_gisa8cr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbcfv/;1610345663;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Madao16;;;[];;;;text;t2_txqdwdz;False;False;[];;Do you think life sucks just imagine yourself as Reiner. I never thought that I would be so sorry for Reiner.;False;False;;;;1610304411;;False;{};gisbcj1;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbcj1/;1610345665;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Damarugaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Damarugaki/;light;text;t2_6zyxfkgg;False;False;[];;I wonder if ~~Pieck~~ the other Titan shifters have feet as appealing as Eren's;False;False;;;;1610304413;;False;{};gisbcna;False;t3_kujurp;False;False;t1_gisaov5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbcna/;1610345667;31;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;I mean can we first get to the mega hype fight that's now waiting for us? Eren just appeared in the heart of Marley, it's not like they're just gonna take that lying down.;False;False;;;;1610304417;;1610305655.0;{};gisbcxu;False;t3_kujurp;False;False;t1_gisamcu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbcxu/;1610345671;117;True;False;anime;t5_2qh22;;0;[]; -[];;;PRIME2332;;;[];;;;text;t2_1b02twmu;False;False;[];;Falco also learnt an important lesson. In the AoTverse, never trust green eyed dudes.;False;False;;;;1610304418;;False;{};gisbd0q;False;t3_kujurp;False;False;t1_gisa8cr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbd0q/;1610345672;3;True;False;anime;t5_2qh22;;0;[]; -[];;;axl625;;;[];;;;text;t2_tskg1;False;False;[];;The OST really fit the whole speech part;False;False;;;;1610304429;;False;{};gisbdpc;False;t3_kujurp;False;False;t1_gisaoxm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbdpc/;1610345684;514;True;False;anime;t5_2qh22;;0;[]; -[];;;BobThePineapple;;;[];;;;text;t2_qewa5;False;False;[];;i just knew that's where they were gonna end it. i can't wait to finally see the warhammer in action.;False;False;;;;1610304435;;False;{};gisbe5b;False;t3_kujurp;False;False;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbe5b/;1610345690;26;True;False;anime;t5_2qh22;;0;[]; -[];;;sittingbull15;;;[];;;;text;t2_jnaof;False;False;[];;Jikan da!;False;False;;;;1610304439;;False;{};gisbedx;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbedx/;1610345695;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaichou_of_Weebs;;;[];;;;text;t2_83p7tvn5;False;False;[];;Hey let's not fight. Both of them are among my favourite anime. I'm going to upvote both ReZero and AOT threads because they aren't on the same day. If they had collided then I would have to choose, and I would have chosen AOT.;False;False;;;;1610304440;;False;{};gisbeg8;False;t3_kujurp;False;False;t1_gisapik;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbeg8/;1610345696;38;True;False;anime;t5_2qh22;;0;[]; -[];;;TSmasher1000;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_14sxjn;False;False;[];;~~Oh boy, 2021 worse than 2020. Started with WWIII 10 days into it, rip.~~;False;False;;;;1610304448;;False;{};gisbf13;False;t3_kujurp;False;False;t1_gisaeyc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbf13/;1610345706;18;True;False;anime;t5_2qh22;;0;[]; -[];;;LawlHeyman;;;[];;;;text;t2_14su8q;False;False;[];;"Fucking amazing episode. - - -Sadly, people will complain about the last 10 seconds because of the ost. I think it was a good choice";False;False;;;;1610304450;;False;{};gisbf80;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbf80/;1610345709;13;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610304451;;False;{};gisbf97;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbf97/;1610345709;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Taurus24Silver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Taurus-Silver;light;text;t2_826uaxw;False;False;[];;"Absolutely Fckin Perfect - - -AOT has declared war on every single GOAT anime out there. - - -I got fckin chills at the last scene - - -Looking forward to next week";False;False;;;;1610304456;;False;{};gisbfkv;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbfkv/;1610345714;281;True;False;anime;t5_2qh22;;0;[]; -[];;;RekklesCami;;;[];;;;text;t2_3ozyz0ye;False;False;[];;Poor Falco just thought he was doing a favour of re uniting some good old friends;False;False;;;;1610304462;;False;{};gisbfys;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbfys/;1610345721;199;True;False;anime;t5_2qh22;;0;[]; -[];;;G1596872;;;[];;;;text;t2_qdv50;False;False;[];;Did Crunchyroll servers crash again?;False;False;;;;1610304467;;False;{};gisbgc0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbgc0/;1610345726;101;True;False;anime;t5_2qh22;;0;[]; -[];;;sstizzle;;;[];;;;text;t2_e9qm7;False;False;[];;It’s okay, he’s already broken;False;False;;;;1610304469;;False;{};gisbgfk;False;t3_kujurp;False;False;t1_gisbak6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbgfk/;1610345729;6;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;Dude this still hasn't dropped EST wtf.;False;False;;;;1610304469;;False;{};gisbgfz;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbgfz/;1610345729;5;True;False;anime;t5_2qh22;;0;[]; -[];;;GowtherETC;;;[];;;;text;t2_47ql3fom;False;False;[];;Well Eren was spawncamping;False;False;;;;1610304474;;False;{};gisbgr0;False;t3_kujurp;False;False;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbgr0/;1610345734;2160;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok_Draw_2833;;;[];;;;text;t2_4dha12vu;False;False;[];;Falco this episode: So did I fuck up?! I think I fucked up?!?;False;False;;;;1610304474;;False;{};gisbgr9;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbgr9/;1610345734;872;True;False;anime;t5_2qh22;;0;[]; -[];;;exozaln;;;[];;;;text;t2_x135v;False;False;[];;"Holy shit Reiner was SO GOOD this episode - -&#x200B; - -They don't even speak and then Reiner asks ""Why are you here"" and proceeds to get 8 mental breakdowns at the same time I loved how that was portrayed, very believable.";False;False;;;;1610304483;;False;{};gisbhcy;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbhcy/;1610345743;706;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;"If I had to pick one moment to describe all of post time skip AoT, it would be this one. Episode 5 will be a landmark episode for the series and I'm glad MAPPA did it justice as I hoped. Minor nitpick tho but there were a lot of stills this episode, I assume that means they'll go all out for the next 3. - - -Here's to episode 6, 7 and 8 which hopefully will be even more phenomenal.";False;False;;;;1610304484;;False;{};gisbhem;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbhem/;1610345744;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"Maybe that's why so many fan artists and even VTubers got erroneously suspended on Twitter? - -[](#suddenshock)";False;False;;;;1610304487;;False;{};gisbhmj;False;t3_kujurp;False;False;t1_gisarcw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbhmj/;1610345747;7;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;especially since people just stormed the capitol a few days ago. lmaoo;False;False;;;;1610304491;;False;{};gisbhvd;False;t3_kujurp;False;False;t1_gisaeyc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbhvd/;1610345752;16;True;False;anime;t5_2qh22;;0;[]; -[];;;leeways;;;[];;;;text;t2_hdi1s;False;False;[];;it's time payback for Shiganshina!;False;False;;;;1610304499;;False;{};gisbied;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbied/;1610345760;1;True;False;anime;t5_2qh22;;0;[]; -[];;;axl625;;;[];;;;text;t2_tskg1;False;False;[];;Eren be like: Lol no. I’m going to make you suffer.;False;False;;;;1610304501;;False;{};gisbikz;False;t3_kujurp;False;False;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbikz/;1610345762;69;True;False;anime;t5_2qh22;;0;[]; -[];;;DieHardGamer_1;;;[];;;;text;t2_347mvbdw;False;False;[];;"Every episode makes me go, ""BEST EPISODE EVER!!"". Sorry that is so unprofessional of me";False;False;;;;1610304502;;False;{};gisbinb;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbinb/;1610345763;175;True;False;anime;t5_2qh22;;0;[]; -[];;;notthehulk03;;;[];;;;text;t2_1ptvlvbk;False;False;[];;"Reusing the xl-tt ost from season 1 was a great choice. It really felt like the titans are still the main threat around. - - -Great episode";False;False;;;;1610304505;;False;{};gisbiux;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbiux/;1610345766;2;True;False;anime;t5_2qh22;;0;[]; -[];;;VeryNiceKapusta;;;[];;;;text;t2_28uv7wj9;False;False;[];;"Ladies and gentleman, I don't use the word ""greatest"" often. However, I can say, that this was one of the GREATEST anime moments ever animated. The tension in the air, the bulidup towards an tragedy, and the declaration of war. Holy shit, we made it. And it keeps getting after this.";False;False;;;;1610304511;;False;{};gisbj8o;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbj8o/;1610345774;603;True;False;anime;t5_2qh22;;0;[]; -[];;;EyelessHunter;;;[];;;;text;t2_84qmr;False;False;[];;"Ahhh, I've been waiting for this moment ever since this chapter came out in the manga. - -# Behold, my anime-only brethren! All of you are now officially in the endgame.";False;False;;;;1610304512;;False;{};gisbjcl;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbjcl/;1610345777;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gold-bandit;;;[];;;;text;t2_3y38asl8;False;False;[];;[Eren's smile](https://imgur.com/a/lXIS3X4) here is so heartbreaking.;False;False;;;;1610304520;;False;{};gisbjvm;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbjvm/;1610345785;73;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;Oh absolutely I happily upvote and comment in both threads.;False;False;;;;1610304530;;False;{};gisbkjl;False;t3_kujurp;False;False;t1_gisbeg8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbkjl/;1610345795;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Garlicbread10;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;ereh;dark;text;t2_8zn7f5o;False;False;[];;Reiner.exe has stopped working;False;False;;;;1610304538;;False;{};gisbl4f;False;t3_kujurp;False;False;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbl4f/;1610345804;694;True;False;anime;t5_2qh22;;0;[]; -[];;;mohamez;;;[];;;;text;t2_9p0gp;False;False;[];;Eren's VA is Eren at least that what he said in an interview, he even fucking cried when he read his role.;False;False;;;;1610304539;;False;{};gisbl86;False;t3_kujurp;False;False;t1_gisaihm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbl86/;1610345806;250;True;False;anime;t5_2qh22;;0;[]; -[];;;DieHardGamer_1;;;[];;;;text;t2_347mvbdw;False;False;[];;When you hear that speech from the trailer. Goosebumbs;False;False;;;;1610304544;;False;{};gisblkz;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisblkz/;1610345812;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TSmasher1000;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_14sxjn;False;False;[];;Chadren was always in control of the situation the whole time. Something that Isayama said around this time in the manga in an interview was before Eren used to be something akin to a slave to the story, being forced to move at the story's will. Now Eren is the one who is moving the story forward and has started to resemble his father more as he ages.;False;False;;;;1610304553;;False;{};gisbm5i;False;t3_kujurp;False;False;t1_gisa5o0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbm5i/;1610345820;183;True;False;anime;t5_2qh22;;0;[]; -[];;;randomness7345;;;[];;;;text;t2_11zjs7;False;False;[];;Willy got rekt;False;False;;;;1610304566;;False;{};gisbn4c;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbn4c/;1610345836;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610304569;;False;{};gisbnaz;False;t3_kujurp;False;True;t1_gisajkm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbnaz/;1610345838;1;True;False;anime;t5_2qh22;;0;[]; -[];;;R3pN1xC;;;[];;;;text;t2_36jvxgl5;False;False;[];;Poor Willy only survived 2 episodes lmao. Good old attack on titan killing characters 1 episode after their introduction.;False;False;;;;1610304576;;False;{};gisbntp;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbntp/;1610345847;20;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;"1. Steins;Gate -2. Oregairu -3. Re:Creators -4. FMAB -5. Violet Evergarden";False;False;;;;1610304578;;False;{};gisbnxg;False;t3_kuk2nn;False;False;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gisbnxg/;1610345849;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Rha_psody;;;[];;;;text;t2_98b54u1;False;False;[];;"The world: *Declares war* - -Eren: *Instantly retaliates* - -The world: *Surprised Pikachu face* - -# THE WAR BEGINS.";False;False;;;;1610304584;;False;{};gisboc1;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisboc1/;1610345855;1951;True;False;anime;t5_2qh22;;0;[]; -[];;;KittenBuns1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KittenBuns1;light;text;t2_5j04zssx;False;False;[];;Makes me wonder what Isayama does to the characters he hates.;False;False;;;;1610304588;;False;{};gisboml;False;t3_kujurp;False;False;t1_gisaqcj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisboml/;1610345859;3;True;False;anime;t5_2qh22;;0;[]; -[];;;comandoram;;;[];;;;text;t2_7979ne0;False;False;[];;Not to mention how willy was getting cheered like a fucking rock star by all other world leaders, when he said they should band together destroy paradise, clearly showing how, that it is not only Marley but the entire world who is eager to destroy paradise.;False;False;;;;1610304592;;False;{};gisbow4;False;t3_kujurp;False;False;t1_gisazrh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbow4/;1610345863;31;True;False;anime;t5_2qh22;;0;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;People have every right to complain. 2volt doesn't fit at all with what is essentially one of Attack on Titan's defining moments.;False;False;;;;1610304600;;False;{};gisbph2;False;t3_kujurp;False;False;t1_gisbf80;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbph2/;1610345872;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Der_Markgraf;;;[];;;;text;t2_7yy88jn4;False;False;[];;Awesome. But I’m wondering how he got this information. It didn’t seem like the Tyburs were cooperating that much with the military forces or Marley before.;False;False;;;;1610304608;;False;{};gisbq0k;False;t3_kujurp;False;False;t1_gisac08;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbq0k/;1610345880;109;True;False;anime;t5_2qh22;;0;[]; -[];;;Denzel_Potato09;;;[];;;;text;t2_5upv9a99;False;False;[];;"Sakurasou's Aoyama Nanami receives a little too much hate to be completely honest. They hate her because they said it disrupts Shiina's and Sorata's relationship. - -But Nanami is a character used to portray how a commoner in real life will likely lose out to a more popular/prettier person which is Shiina. Nanami was also used to portray unrequited love, which is pretty important for a Romance Anime in my opinion.";False;False;;;;1610304608;;1610305521.0;{};gisbq15;False;t3_kuk2au;False;True;t3_kuk2au;/r/anime/comments/kuk2au/characters_you_think_are_overhated/gisbq15/;1610345881;2;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;"Pretty great adaptation! The tension buildup was really good. - -Am a bit sad that they cut [the second panel of this page](https://i.imgur.com/NmLIXyv.png) though. I understand why they did it - they seem to be keeping the foreshadowing for this plot point to a minimum - but now the hidden meaning of the page is diminished. One of my favourite pages. But ah well, it is what it is.";False;False;;;;1610304611;;False;{};gisbq8r;False;t3_kujurp;False;False;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbq8r/;1610345884;91;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;**Sit down Mom, it's a long story, might take a whole week for you to catch-up but I promise you won't regret it**;False;False;;;;1610304614;;False;{};gisbqfm;False;t3_kujurp;False;False;t1_gisb2mp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbqfm/;1610345887;977;True;False;anime;t5_2qh22;;0;[]; -[];;;LaqOfInterest;;MAL a-amq;[];;https://myanimelist.net/animelist/LaqOfInterest;dark;text;t2_6s32u;False;False;[];;"[manga, circa Chapter 122](/s ""The green flare in Eren's eyes just before he transforms was a nice touch. He doesn't just intend to move forward until his enemies are destroyed, he can see himself doing it."")";False;False;;;;1610304618;;False;{};gisbqod;False;t3_kujurp;False;False;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbqod/;1610345889;36;True;False;anime;t5_2qh22;;0;[]; -[];;;RekklesCami;;;[];;;;text;t2_3ozyz0ye;False;False;[];;And the awards record;False;False;;;;1610304621;;False;{};gisbqxz;False;t3_kujurp;False;False;t1_gisaj3j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbqxz/;1610345894;40;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"Also: ***""That man might've wanted someone to judge him""*** - -And then it shows Reiner. I got chills from this.";False;False;;;;1610304625;;False;{};gisbr5v;False;t3_kujurp;False;False;t1_gisadji;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbr5v/;1610345897;321;True;False;anime;t5_2qh22;;0;[]; -[];;;Hitony7;;;[];;;;text;t2_dynz6;False;False;[];;__I WAS BORN IN THIS WORLD TO WATCH THIS EPISODE!__;False;False;;;;1610304628;;False;{};gisbrds;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbrds/;1610345901;30;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;"Shou Tucker. [What I think of him. FMAB Spoiler.](/s ""He tried. It's a shame he didn't get anywhere with his research. Giving/synthesizing creatures the ability to speak like humans would be interesting endeavour. It might not be particularly profitable initially but it would still be interesting from an academic point of view. Maybe you could use the chimeras as Guinea pigs to test pet feed and other pet related paraphernalia."")";False;False;;;;1610304628;;False;{};gisbrfn;False;t3_kuk2au;False;True;t3_kuk2au;/r/anime/comments/kuk2au/characters_you_think_are_overhated/gisbrfn/;1610345901;3;True;False;anime;t5_2qh22;;0;[]; -[];;;leeways;;;[];;;;text;t2_hdi1s;False;False;[];;Shingeki no Capitol;False;False;;;;1610304630;;False;{};gisbril;False;t3_kujurp;False;False;t1_gisai0e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbril/;1610345903;253;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;Are we gonna have this discussion every week? Go complain to Crunchy that they are so late.;False;False;;;;1610304648;;False;{};gisbsui;False;t3_kujurp;False;False;t1_gisabvk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbsui/;1610345923;9;True;False;anime;t5_2qh22;;0;[]; -[];;;IXajll;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ixajii;light;text;t2_ob6j8;False;False;[];;Why could you not upvote both if they would air on the same day? That makes actually no sense at all.;False;False;;;;1610304651;;False;{};gisbt42;False;t3_kujurp;False;False;t1_gisbeg8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbt42/;1610345928;177;True;False;anime;t5_2qh22;;0;[]; -[];;;TSmasher1000;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_14sxjn;False;False;[];;They're just not ready for the future. AoT is the type of show where we keep on saying it cannot get better than this, and it somehow blows our expectation out of the water. Goddamn, not only anime-onlies, but no one is ready for the upcoming episodes.;False;False;;;;1610304655;;False;{};gisbtc0;False;t3_kujurp;False;False;t1_gisajvw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbtc0/;1610345931;187;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610304657;;False;{};gisbthx;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbthx/;1610345934;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DieHardGamer_1;;;[];;;;text;t2_347mvbdw;False;False;[];;Weirdly the talk with Reiner was so heart wrenching to watch. I felt so pulled on both sides. Poor Falco. Looks like Eren has gone through a big change.;False;False;;;;1610304660;;False;{};gisbtpq;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbtpq/;1610345936;8;True;False;anime;t5_2qh22;;0;[]; -[];;;PRIME2332;;;[];;;;text;t2_1b02twmu;False;False;[];;Reiner sweating buckets while they trash talk Eren: O\_o;False;False;;;;1610304665;;1610306488.0;{};gisbtzy;False;t3_kujurp;False;False;t1_gisac08;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbtzy/;1610345941;1742;True;False;anime;t5_2qh22;;0;[]; -[];;;XoNtheHAWK;;;[];;;;text;t2_galvfiy;False;False;[];;I personally liked the episode. A lot of people who saw the RAWs were complaining about the soundtrack. In my opinion the OST was really good especially during the play. I think it was a creative decision to not use any overbearing music during the build up to the transformation.;False;False;;;;1610304694;;False;{};gisbw5o;False;t3_kujurp;False;False;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbw5o/;1610345976;68;True;False;anime;t5_2qh22;;0;[]; -[];;;CostaRica92;;;[];;;;text;t2_zx0ym;False;False;[];;As an anime only watcher I was a bit disappointed when the whole Paradies, Marley, Eldia truth was revealed and the story took a more military focused turn. But now 5 episodes in the last season I am fully back on the boat and I am now sure that the story will have an fulfilling end. Also shout out to MAPPA! The animation is superb! Can't wait to see the story end!;False;False;;;;1610304695;;False;{};gisbw9m;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbw9m/;1610345978;97;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610304699;;False;{};gisbwiz;False;t3_kujurp;False;True;t1_gisahvw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbwiz/;1610345982;1;True;False;anime;t5_2qh22;;0;[]; -[];;;notthehulk03;;;[];;;;text;t2_1ptvlvbk;False;False;[];;"Clever use of projectors, great acting and great musicians in the band to make Willy's speech even better. This was a top tier festival. And the main guest arrived. And his name is.. -EREN YEAGER !";False;False;;;;1610304713;;False;{};gisbxkm;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbxkm/;1610345997;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;Man has a talent for theatrics.;False;False;;;;1610304720;;False;{};gisby37;False;t3_kujurp;False;False;t1_gisaldb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisby37/;1610346005;152;True;False;anime;t5_2qh22;;0;[]; -[];;;Foxofdarkness19;;;[];;;;text;t2_2omhkpq2;False;False;[];;I didnt watch the pv cuz I like watching movies/anime without getting spoiled on animation quality;False;False;;;;1610304723;;False;{};gisby9p;True;t3_kuk0qd;False;False;t1_gisbbar;/r/anime/comments/kuk0qd/exarm_anime_is_trash/gisby9p/;1610346009;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Garlicbread10;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;ereh;dark;text;t2_8zn7f5o;False;False;[];;"“ Oh, did I say that? Please, forget I said that.” - -Eren has completely changed now. That line was so scary yet so funny";False;False;;;;1610304728;;False;{};gisbyp5;False;t3_kujurp;False;False;t1_gisak3a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbyp5/;1610346015;752;True;False;anime;t5_2qh22;;0;[]; -[];;;Neronoah;;;[];;;;text;t2_igav3;False;False;[];;Nah;False;False;;;;1610304739;;False;{};gisbzfv;False;t3_kujurp;False;False;t1_gisbcfv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbzfv/;1610346056;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Telodor567;;MAL;[];;https://myanimelist.net/animelist/Telodor567;dark;text;t2_pfgfy;False;False;[];;HOLY FUCKING SHIT, this episode was absolutely amazing!!! The tension, the build-up, the voice acting, the OST, the animations, everything was so fucking amazing! Easily the best episode of this season so far and one of the best of the entire anime!;False;False;;;;1610304744;;False;{};gisbzsv;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbzsv/;1610346062;6;True;False;anime;t5_2qh22;;0;[]; -[];;;lcantchange;;;[];;;;text;t2_14m4n1;False;False;[];;Reiner cannot catch a break this season JFC;False;False;;;;1610304746;;False;{};gisbzwu;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisbzwu/;1610346064;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ShinaMashir0;;;[];;;;text;t2_rhsd8;False;False;[];;i think some people misunderstood this episode, or i got wooshed;False;False;;;;1610304748;;False;{};gisc02d;False;t3_kujurp;False;False;t1_gisas6b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisc02d/;1610346066;35;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok_Draw_2833;;;[];;;;text;t2_4dha12vu;False;False;[];;Pieck’s panzer unit: Seal Team Simps;False;False;;;;1610304755;;False;{};gisc0j3;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisc0j3/;1610346073;69;True;False;anime;t5_2qh22;;0;[]; -[];;;DadAsFuck;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DadAsFuck;light;text;t2_peaym;False;False;[];;[the face of a man who has experienced euphoria](https://imgur.com/a/usxG6PD);False;False;;;;1610304761;;False;{};gisc0xk;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisc0xk/;1610346080;60;True;False;anime;t5_2qh22;;0;[]; -[];;;Denzel_Potato09;;;[];;;;text;t2_5upv9a99;False;False;[];;"Yo! We have quite similar tastes, Violet Evergarden was definitely one of the most beautiful Animes I have ever watched. - -OreGairu too is such a fantastic anime that does a good job in portraying real life social situations";False;False;;;;1610304764;;False;{};gisc14v;True;t3_kuk2nn;False;True;t1_gisbnxg;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gisc14v/;1610346083;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TSmasher1000;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_14sxjn;False;False;[];;Tfw one of the highest points in the series was just two dudes talking to each other with immaculate tension is insane. It just proves not only have the stakes risen that high, but the writing is just so damn good because you genuinely don't know how Eren's going to act other than the fact that he has the high ground and can act however he wants.;False;False;;;;1610304766;;False;{};gisc1bn;False;t3_kujurp;False;False;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisc1bn/;1610346086;2192;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Lol, I've tried to get her to watch it before but my mom can't handle gore sadly.;False;False;;;;1610304772;;1610305133.0;{};gisc1pe;False;t3_kujurp;False;False;t1_gisbqfm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisc1pe/;1610346094;79;True;False;anime;t5_2qh22;;0;[]; -[];;;axl625;;;[];;;;text;t2_tskg1;False;False;[];;AGREE. THEY MARLEYANS ASKED FOR IT. THE WORLD ASKED FOR IT.;False;False;;;;1610304777;;False;{};gisc25f;False;t3_kujurp;False;False;t1_gisaesh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisc25f/;1610346102;11;True;False;anime;t5_2qh22;;0;[]; -[];;;arafatnabi;;;[];;;;text;t2_ghvya;False;False;[];;"Everything after Eren regrowing his leg was pure hype. I was shaking by the last scene. Reiners breakdown was sad when he realised that out of all the people in the world the only one who understood him was his enemy, the person he betrayed. - - -Eren forgave Reiner in the end by helping him stand up to his feet because he realised that Reiner was not at fault. But he still had to kill him because of the circumstances. 10/10 episode.";False;False;;;;1610304783;;False;{};gisc2jv;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisc2jv/;1610346108;996;True;False;anime;t5_2qh22;;0;[]; -[];;;vagabondeluxe;;;[];;;;text;t2_6xj8vlb9;False;False;[];;Finally someone who appreciates Hibike!!;False;False;;;;1610304789;;False;{};gisc2xp;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gisc2xp/;1610346113;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ido-100;;;[];;;;text;t2_4eqi3dcn;False;False;[];;And the resilience of those who seek freedom.;False;False;;;;1610304790;;False;{};gisc30f;False;t3_kujurp;False;False;t1_gisad63;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisc30f/;1610346115;31;True;False;anime;t5_2qh22;;0;[]; -[];;;bombingrun19;;;[];;;;text;t2_hfyej;False;False;[];;"Ep 4 Falco: ay y'all best friends or sum? 😊 - -EP 5 Falco: Bruh 😭 - -That ost leading up to the declaration of war tho, amazing. -Eren looks scary af.";False;False;;;;1610304795;;False;{};gisc3ca;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisc3ca/;1610346121;329;True;False;anime;t5_2qh22;;0;[]; -[];;;Neverx_13;;;[];;;;text;t2_8708yf9;False;False;[];;Of course tbh, the next couple episodes are going to be insanely hype, pretty much the rest of the season from here on out should be non-stop hype.;False;False;;;;1610304799;;False;{};gisc3mi;False;t3_kujurp;False;False;t1_gisbcxu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisc3mi/;1610346125;34;True;False;anime;t5_2qh22;;0;[]; -[];;;GowtherETC;;;[];;;;text;t2_47ql3fom;False;False;[];;Nah I think the next 2-3 episodes are as sweet as this ep. Agree that 16 will probably blow everything else out of the water though;False;False;;;;1610304820;;False;{};gisc529;False;t3_kujurp;False;True;t1_gisamcu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisc529/;1610346148;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Audrey_spino;;;[];;;;text;t2_11jl4w;False;False;[];;Yup, this and the next is gonna top Hero and Perfect Game.;False;False;;;;1610304820;;False;{};gisc52c;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisc52c/;1610346148;20;True;False;anime;t5_2qh22;;0;[]; -[];;;XoNtheHAWK;;;[];;;;text;t2_galvfiy;False;False;[];;I just keep voting upwards until all karma records are destroyed;False;False;;;;1610304831;;False;{};gisc5sk;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisc5sk/;1610346160;24;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610304835;;False;{};gisc61p;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisc61p/;1610346164;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PRIME2332;;;[];;;;text;t2_1b02twmu;False;False;[];;That little smile he gives at the end of Willy's speech and him giving reiner a hand to stand back up had me shook.;False;False;;;;1610304848;;False;{};gisc6vt;False;t3_kujurp;False;False;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisc6vt/;1610346177;29;True;False;anime;t5_2qh22;;0;[]; -[];;;Kind_Yandere;;;[];;;;text;t2_84f2s429;False;False;[];;CHOMP;False;False;;;;1610304849;;False;{};gisc70b;False;t3_kujurp;False;False;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisc70b/;1610346179;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Neronoah;;;[];;;;text;t2_igav3;False;False;[];;Uh, I think he got some civilians killed.;False;False;;;;1610304865;;False;{};gisc83j;False;t3_kujurp;False;False;t1_gisaesh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisc83j/;1610346196;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Exodor54;;MAL;[];;http://myanimelist.net/animelist/Exodor;dark;text;t2_eex6z;False;False;[];;I think it was a great episode until the end, what was meant to be one of the best scenes of all time has almost no impact.;False;True;;comment score below threshold;;1610304875;;False;{};gisc8sb;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisc8sb/;1610346208;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"It reminds me of [that sick fanart by Omarvin.](https://i.imgur.com/w9uCAcA.jpg) - -[Eren's smooth legs though...](https://www.reddit.com/r/anime/comments/kl9c9d/shingeki_no_kyojin_the_final_season_episode_63/gh7l1s9/) - -[](#bigshock)";False;False;;;;1610304888;;False;{};gisc9qx;False;t3_kujurp;False;False;t1_gisaov5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisc9qx/;1610346223;236;True;False;anime;t5_2qh22;;0;[]; -[];;;PikachusAnalCavity;;;[];;;;text;t2_6kahtlla;False;False;[];;Be careful whose mom you kill in middle school...;False;False;;;;1610304899;;False;{};giscafj;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscafj/;1610346234;2673;True;False;anime;t5_2qh22;;0;[]; -[];;;CT_BINO;;MAL;[];;https://myanimelist.net/profile/CT_BINO;dark;text;t2_pa5vv;False;False;[];;"Madoka Magica - -Monogatari Series - -Princess Tutu - -Revolutionary Girl Utena - -Aria";False;False;;;;1610304908;;False;{};giscb2j;False;t3_kuk2nn;False;False;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/giscb2j/;1610346244;5;True;False;anime;t5_2qh22;;0;[]; -[];;;arafatnabi;;;[];;;;text;t2_ghvya;False;False;[];;"Willy: I declare war. - -Eren: No me.";False;False;;;;1610304909;;False;{};giscb6g;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscb6g/;1610346246;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610304914;;False;{};giscbig;False;t3_kujurp;False;True;t1_gisac08;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscbig/;1610346252;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kingyexiu;;;[];;;;text;t2_7vq2r05t;False;False;[];;We are not ready;False;False;;;;1610304914;;False;{};giscbkb;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscbkb/;1610346253;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ShinaMashir0;;;[];;;;text;t2_rhsd8;False;False;[];;Honestly i'm surprised by the quality of the animation with the lack of time they had, Mappa are really something else, i really hope they not gonna actually finish the anime this season and wait for a film.;False;False;;;;1610304923;;False;{};giscc4v;False;t3_kujurp;False;False;t1_gisafpl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscc4v/;1610346263;11;True;False;anime;t5_2qh22;;0;[]; -[];;;notthehulk03;;;[];;;;text;t2_1ptvlvbk;False;False;[];;The soldiers going towards Eren is a nice touch;False;False;;;;1610304924;;False;{};giscc8f;False;t3_kujurp;False;False;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscc8f/;1610346265;32;True;False;anime;t5_2qh22;;0;[]; -[];;;momanie;;;[];;;;text;t2_ef9ak;False;False;[];;I disagree the music on his transformation wasn't very good imo;False;True;;comment score below threshold;;1610304927;;False;{};gisccfb;False;t3_kujurp;False;True;t1_gisb7ex;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisccfb/;1610346268;-23;True;False;anime;t5_2qh22;;0;[]; -[];;;toshiaki_noda;;;[];;;;text;t2_9dyk4dhd;False;False;[];;the voice actors for eren and reiner were phenomenal, at least. i'm not sure who told willy's voice actor to speak softly rather to yell like a terrified man uniting the world against one threat, but i guess that won't matter much anymore with what happened to him.;False;False;;;;1610304929;;False;{};giscclh;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscclh/;1610346270;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610304934;;False;{};gisccya;False;t3_kujurp;False;True;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisccya/;1610346277;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mohamez;;;[];;;;text;t2_9p0gp;False;False;[];;Eren just did what Reiner told him back in the days when Eren was desperate: https://i.imgur.com/FYQ8z1s.png;False;False;;;;1610304945;;False;{};giscdoh;False;t3_kujurp;False;False;t1_gisa7d4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscdoh/;1610346288;8;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;Karma projections? Haven't even seen it but I'm predicting like 18k-19k;False;False;;;;1610304960;;False;{};giscepb;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscepb/;1610346304;52;True;False;anime;t5_2qh22;;0;[]; -[];;;Kind_Yandere;;;[];;;;text;t2_84f2s429;False;False;[];; Holy shit I just caught up a month ago and season 1 is still fresh in my mind. I thought Eren was generic annoying protagonist. BUT SHIT HE'S A GIGACHAD now.;False;False;;;;1610304966;;False;{};giscf5k;False;t3_kujurp;False;False;t1_gisadji;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscf5k/;1610346311;131;True;False;anime;t5_2qh22;;0;[]; -[];;;gabyyyyu;;;[];;;;text;t2_5jutov6a;False;False;[];;Love the final scene, i'm so hype;False;False;;;;1610304966;;False;{};giscf5z;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscf5z/;1610346311;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610304991;;False;{};giscgxt;False;t3_kujurp;False;True;t1_gisaeyc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscgxt/;1610346339;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yaggamy;;;[];;;;text;t2_j2mpyb3;False;False;[];;" \*Willy declares war\* - -Eren 1 sec later: ""First blood!!""";False;False;;;;1610304992;;False;{};gisch0n;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisch0n/;1610346340;476;True;False;anime;t5_2qh22;;0;[]; -[];;;Left-Chance-4564;;;[];;;;text;t2_7p92oo57;False;False;[];;"Ah yes, one of the most hyped episodes of final season is finally here. Really curious to know how anime onlies feel about reiner-eren after this one.Especially after the ""hero"" of the story basically killed the innocent civilians in the building while reiner rushed to save falco. - -As for the episode itself, absolutely brilliant.I have waited 3 years for this and I wasn't disappointed.Thank you Mappa!";False;False;;;;1610305002;;1610305373.0;{};gischn4;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gischn4/;1610346350;416;True;False;anime;t5_2qh22;;0;[]; -[];;;sedikushjam;;;[];;;;text;t2_40ebris8;False;False;[];;"1. Code Geass - -2. Attack on Titan - -3. Hajime no Ippo - -4. GTO - -5. HxH";False;False;;;;1610305004;;False;{};gischrr;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gischrr/;1610346351;2;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;"Well, I was waiting for months to say it here, finally got a chance to say it here without spoiler tag - -""**I'll be keep moving forward until all my enemies are destroyed**.""";False;False;;;;1610305004;;False;{};gischsl;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gischsl/;1610346352;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_cowboy;;;[];;;;text;t2_2ffnf84k;False;False;[];;"1. Steins;Gate -2. K-On! -3. Sangatsu no lion -4. Shinsekai Yori -5. Jojo Part 4";False;False;;;;1610305009;;False;{};gisci60;False;t3_kuk2nn;False;False;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gisci60/;1610346358;6;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;For all the hype manga readers ( me included ) were doing for this episode, it did not feel as impactful as the real big moments of the other seasons.;False;True;;comment score below threshold;;1610305011;;False;{};gisci8n;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisci8n/;1610346359;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;Not a fan of how the ost and transformation was handled, but still an excellent episode. The willy and maggath scene was pretty important, so I hope it is added at the beginning of next episode.;False;False;;;;1610305014;;False;{};giscihl;False;t3_kujurp;False;False;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscihl/;1610346362;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;"[](#hypeoverload)[](#hypeoverload)[](#hypeoverload) - -Tybur's speech was fantastic, Yoshimasa Hosoya continues to be best seiyuu by *super* handling how messed up Reiner is right now, the music is on-point as fuck, [eyecatch info](https://i.imgur.com/QPmXvia.png) is great as ever, Eren's subtle reaction to [this line](https://i.imgur.com/vEPyXTK.png) in particular was *hnnnn amazing*, and then of course that *ENDING*. - -God I love this series so much.";False;False;;;;1610305015;;False;{};giscijv;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscijv/;1610346363;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Yaggamy;;;[];;;;text;t2_j2mpyb3;False;False;[];;"Pieck be like: ""Help me step bro, I'm stuck in this basement!""";False;False;;;;1610305020;;False;{};giscivh;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscivh/;1610346368;27;True;False;anime;t5_2qh22;;0;[]; -[];;;axl625;;;[];;;;text;t2_tskg1;False;False;[];;""" Oh, did I say that? Please, forget I said that. "" - -Then proceeds to slaughter Reiner's mental health.";False;False;;;;1610305027;;False;{};giscjc4;False;t3_kujurp;False;False;t1_gisak3a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscjc4/;1610346375;944;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahou_Shoujo_Ramune;;;[];;;;text;t2_4vs4l2r6;False;False;[];;Justice girl from Akame Ga Kill. I see her as one of the best characters in the show. She has great character development and a great representation of how violent events and propaganda affect people. Her story arc could have happened to any other character in the show. She's the mirror to the protagonists and what they could become.;False;False;;;;1610305035;;False;{};giscjxv;False;t3_kuk2au;False;False;t3_kuk2au;/r/anime/comments/kuk2au/characters_you_think_are_overhated/giscjxv/;1610346385;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlueBirdBeak;;;[];;;;text;t2_74hhsd8f;False;False;[];;most chilling/climactic episode to date? or at least one of them;False;False;;;;1610305037;;False;{};gisck3g;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisck3g/;1610346388;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Der_Markgraf;;;[];;;;text;t2_7yy88jn4;False;False;[];;"Fuck. The tension just didn’t want to drop, neither did my heart rate throughout this episode. -I guess Eren and Armin are ready to open the war lol. -I mean you gotta love how he waits until the opposite site declares war just to make the first step and show those people what they were celebrating 5 seconds before. I CAN‘T WAIT!";False;False;;;;1610305049;;False;{};giscl04;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscl04/;1610346401;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PRIME2332;;;[];;;;text;t2_1b02twmu;False;False;[];;Absolutely.. the tone in the voices conveyed an unspoken tension, so much so that even Falco read the uneasiness. Reiner yet again reaching a tipping point and Eren unfazed by him begging for death was chilling.;False;False;;;;1610305061;;False;{};giscluc;False;t3_kujurp;False;False;t1_gisacff;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscluc/;1610346414;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Spiceyhedgehog;;;[];;;;text;t2_143wk0;False;False;[];;Well considering all the ambasadors and whatnot it is the world, or humanity, receiving a grim reminder. Not just Marley.;False;False;;;;1610305065;;False;{};giscm2y;False;t3_kujurp;False;False;t1_gisa8cr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscm2y/;1610346417;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;Grim reminder 2.0;False;False;;;;1610305067;;False;{};giscm8k;False;t3_kujurp;False;False;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscm8k/;1610346420;36;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"[Reminder to never shit talk Eren](https://i.imgur.com/UHPILpt.jpg) - -[](#sweating)";False;False;;;;1610305067;;False;{};giscm9k;False;t3_kujurp;False;False;t1_gisav09;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscm9k/;1610346420;391;True;False;anime;t5_2qh22;;0;[]; -[];;;Inferno792;;MAL;[];;https://myanimelist.net/profile/Inferno792;dark;text;t2_148vlb;False;False;[];;AoT S4 has announced itself.;False;False;;;;1610305068;;False;{};giscmao;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscmao/;1610346420;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"***""Across the ocean, inside the Walls....They're the same""*** - -This line speaks volumes about Eren's character now";False;False;;;;1610305077;;False;{};giscn0f;False;t3_kujurp;False;False;t1_gisak3a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscn0f/;1610346432;376;True;False;anime;t5_2qh22;;0;[]; -[];;;ChrolloLucilfer69;;;[];;;;text;t2_7dzk44j0;False;False;[];;"I was a bit concerned when I saw the opening since I thought they’d cut it to have more time, but damn that episode was well paced and phenomenal anyway. - -AoT is the GOAT and will keep moving forward";False;False;;;;1610305078;;False;{};giscn2d;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscn2d/;1610346433;3;True;False;anime;t5_2qh22;;0;[]; -[];;;God_of_Chickens;;;[];;;;text;t2_47ve7gcb;False;False;[];;**MARLEY DID EVERYTHING WRONG**;False;False;;;;1610305081;;False;{};giscn8z;False;t3_kujurp;False;False;t1_gisaesh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscn8z/;1610346436;7;True;False;anime;t5_2qh22;;0;[]; -[];;;OhMilla;;;[];;;;text;t2_84kkn;False;False;[];;"> This interaction is one of my favorite moments for this arc and I’m glad the anime did it justice. - -This was the peak of the series imo. Everything was downhill from here for me.";False;True;;comment score below threshold;;1610305081;;False;{};giscn9q;False;t3_kujurp;False;True;t1_gisa5o0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscn9q/;1610346436;-12;True;False;anime;t5_2qh22;;0;[]; -[];;;YakubTheCreat0r;;;[];;;;text;t2_375tul6u;False;False;[];;CHADREN;False;False;;;;1610305081;;False;{};giscnaq;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscnaq/;1610346436;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yaggamy;;;[];;;;text;t2_j2mpyb3;False;False;[];;"Falco ep 63: ""I'm going to be super useful and deliver letters for this mentally ill war veteran. Maybe reunite him with his old pal Reiner later."" - -Falco ep 64: ""WHAT HAVE I DONE???""";False;False;;;;1610305087;;False;{};giscnq1;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscnq1/;1610346443;3841;True;False;anime;t5_2qh22;;0;[]; -[];;;aarthbhardwaj;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Aarth_Bhardwaj;light;text;t2_5kdsi0g;False;False;[];;Eren's feet 😍😍😍;False;False;;;;1610305093;;False;{};gisco3p;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisco3p/;1610346449;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Runbern;;;[];;;;text;t2_77cqfhat;False;False;[];;It's not a complaint, it's a question. This sub has some specific pirating rules. Yet these threads are up when most fansubs are available. Just curious why they've decided to upload these sooner than other discussion threads.;False;False;;;;1610305109;;False;{};giscp81;False;t3_kujurp;False;True;t1_gisbsui;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscp81/;1610346467;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OuchYouPokedMyHeart;;;[];;;;text;t2_vcemo;False;True;[];;"🎺🎺🎺🎺 - - - -WATCHOUT WATCHOUT WATCHOUT - -EREN YEAGA OUTTA NOWHERE";False;False;;;;1610305111;;False;{};giscpcm;False;t3_kujurp;False;False;t1_gisajo9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscpcm/;1610346469;301;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;What if Reiner inherited his plot armor from mom? Hmmmm;False;False;;;;1610305114;;False;{};giscpjv;False;t3_kujurp;False;False;t1_gisax5b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscpjv/;1610346472;314;True;False;anime;t5_2qh22;;0;[]; -[];;;SkinFlower;;;[];;;;text;t2_dinx4v5;False;False;[];;bruh the whole buildup from the moment the curtain rose to the moment Eren rose. can't get over it;False;False;;;;1610305116;;False;{};giscpr1;False;t3_kujurp;False;False;t1_gisbdpc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscpr1/;1610346475;423;True;False;anime;t5_2qh22;;0;[]; -[];;;whizmas;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/xjet465;light;text;t2_14gyc2;False;False;[];;Tbh its pretty believable if you don't know AOT based on how 2021 is going already;False;False;;;;1610305123;;False;{};giscq7t;False;t3_kujurp;False;False;t1_gisarcw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscq7t/;1610346482;125;True;False;anime;t5_2qh22;;0;[]; -[];;;comandoram;;;[];;;;text;t2_7979ne0;False;False;[];;Right now snk declaration of war is trending. And the anime have not even officially come out in America yet. Lol. Tonight is gonna be crazy. Lol;False;False;;;;1610305132;;False;{};giscqsk;False;t3_kujurp;False;False;t1_gisarcw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscqsk/;1610346491;252;True;False;anime;t5_2qh22;;0;[]; -[];;;Kind_Yandere;;;[];;;;text;t2_84f2s429;False;False;[];;"They are the same because both of them killed innocents to protect their own people. And both of them are ""saving the world"". I think Eren now understands Reiner's perspective and actions.";False;False;;;;1610305136;;False;{};giscr3k;False;t3_kujurp;False;False;t1_gisadib;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscr3k/;1610346495;1354;True;False;anime;t5_2qh22;;0;[]; -[];;;Yaggamy;;;[];;;;text;t2_j2mpyb3;False;False;[];;"Reiner: Just calm down Eren, we can solve this matter with diplomacy. - -Willy outside: ""I DECLARE WAR!!!"" - -Reiner: Oh for f\*cks sake...";False;False;;;;1610305138;;False;{};giscr8m;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscr8m/;1610346499;3518;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;amd the comments record;False;False;;;;1610305141;;False;{};giscrgc;False;t3_kujurp;False;False;t1_gisbqxz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscrgc/;1610346502;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Denzel_Potato09;;;[];;;;text;t2_5upv9a99;False;False;[];;"YESSSS! I recently just finished the Anime and goodness me it was absolutely fantastic, I don't even think words could do it justice. - -And after much deliberation, I decided that it was worthy of dethroning ReLife as my favourite Anime of all time, it's just *chef's kiss""";False;False;;;;1610305144;;False;{};giscrps;True;t3_kuk2nn;False;True;t1_gisc2xp;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/giscrps/;1610346505;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610305150;;False;{};giscs6o;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscs6o/;1610346513;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;Reiner's VA is fantastic in *whatever* he does. I love Yoshimasa Hosoya.;False;False;;;;1610305151;;False;{};giscs9e;False;t3_kujurp;False;False;t1_gisap5e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscs9e/;1610346514;31;True;False;anime;t5_2qh22;;0;[]; -[];;;buffaloboyofold;;;[];;;;text;t2_73r8f8c0;False;False;[];;Been waiting for this to be animated since I read chapter 100. Absolutely did not disappoint. Chills;False;False;;;;1610305156;;False;{};giscsli;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscsli/;1610346519;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kind_Yandere;;;[];;;;text;t2_84f2s429;False;False;[];;The next episode is going to be Mega hype too.;False;False;;;;1610305170;;False;{};gisctl3;False;t3_kujurp;False;False;t1_gisamcu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisctl3/;1610346534;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"[At least that one panzer squad dude got a nice morory right before dying](https://i.imgur.com/2NWtRXe.jpg) - -[](#ero)";False;False;;;;1610305173;;False;{};gisctsk;False;t3_kujurp;False;False;t1_gisajw0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisctsk/;1610346537;719;True;False;anime;t5_2qh22;;0;[]; -[];;;comandoram;;;[];;;;text;t2_7979ne0;False;False;[];;"Oh my.... - -Any way.";False;False;;;;1610305174;;False;{};gisctvp;False;t3_kujurp;False;False;t1_gisc83j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisctvp/;1610346539;46;True;False;anime;t5_2qh22;;0;[]; -[];;;Left-Chance-4564;;;[];;;;text;t2_7p92oo57;False;False;[];;"Tyburs are the shadow rulers,even if they do not ""co operate"" with the military,they should at least have basic infos about what went on in the failed paradise operation.";False;False;;;;1610305179;;False;{};giscu82;False;t3_kujurp;False;False;t1_gisbq0k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscu82/;1610346544;261;True;False;anime;t5_2qh22;;0;[]; -[];;;Nercif;;;[];;;;text;t2_druhh;False;False;[];;"WE'RE FINALLY IN. - -&#x200B; - -So many goosebumps this episode ! Now people will have to choose sides, and there is no right or wrong !";False;False;;;;1610305188;;False;{};giscuue;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscuue/;1610346553;3;True;False;anime;t5_2qh22;;0;[]; -[];;;zak_mayass;;;[];;;;text;t2_8j2s5dms;False;False;[];;omg;False;False;;;;1610305197;;False;{};giscviq;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscviq/;1610346564;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610305197;;False;{};giscvis;False;t3_kujurp;False;True;t1_gisbbwg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscvis/;1610346564;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ShinaMashir0;;;[];;;;text;t2_rhsd8;False;False;[];;It was fine, but a modified version of the trailer would have maybe be better indeed;False;False;;;;1610305197;;False;{};giscvj4;False;t3_kujurp;False;False;t1_gisccfb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscvj4/;1610346564;32;True;False;anime;t5_2qh22;;0;[]; -[];;;bombdropperxx;;;[];;;;text;t2_m48hp;False;False;[];;"""I just keep moving forward, until my enemies are destroyed."" - -It's the same line, but the same Eren just isn't there anymore. - -Remember when Eren was a hot-headed idiot who can only scream and shout? Boy do we miss those days.";False;False;;;;1610305200;;False;{};giscvsy;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscvsy/;1610346568;266;True;False;anime;t5_2qh22;;0;[]; -[];;;Deadwolf_YT;;;[];;;;text;t2_132jui;False;False;[];;I'm so happy this is no longer manga spoilers;False;False;;;;1610305212;;False;{};giscwo6;False;t3_kujurp;False;False;t1_gisaj3j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscwo6/;1610346582;13;True;False;anime;t5_2qh22;;0;[]; -[];;;ShinobuLoliBestGirl;;;[];;;;text;t2_9p5gez4t;False;False;[];;Two words: holy shit;False;False;;;;1610305216;;False;{};giscwzm;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscwzm/;1610346587;15;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;I made my Dad watch first few episodes, something similar happened lol;False;False;;;;1610305224;;1610340556.0;{};giscxjb;False;t3_kujurp;False;False;t1_gisc1pe;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscxjb/;1610346595;28;True;False;anime;t5_2qh22;;0;[]; -[];;;Kind_Yandere;;;[];;;;text;t2_84f2s429;False;False;[];;"Yes my thoughts exactly. I think there will be a HUGE fight. And Eren's friends might have seen the letter so they might appear too. - -Hell Armin is the collosal titan now. What if he explodes in the middle of Maley. Absolute carnage.";False;False;;;;1610305236;;False;{};giscyg3;False;t3_kujurp;False;False;t1_gisbcxu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscyg3/;1610346610;12;True;False;anime;t5_2qh22;;0;[]; -[];;;edwinvi;;;[];;;;text;t2_61hvsyte;False;False;[];;yea but now they are so the military probably just told willy;False;False;;;;1610305245;;False;{};giscz2q;False;t3_kujurp;False;False;t1_gisbq0k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscz2q/;1610346620;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;True;[];;Too hungry to let the dinner getting away.;False;False;;;;1610305245;;1610305940.0;{};giscz3q;False;t3_kujurp;False;False;t1_gisax64;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscz3q/;1610346621;49;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;"For people wondering about the carriage scene. - - -Let's wait for episode 6 before seeing if they cut it or not.";False;False;;;;1610305247;;False;{};giscz7r;False;t3_kujurp;False;False;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscz7r/;1610346623;73;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;"""Okay so once upon a time there were these German dudes chilling in a wall and then a giant skinless cannibal showed up and-"" - -""What does this have to do with a war?"" - -""WE GET THERE WHEN WE GET THERE!""";False;False;;;;1610305247;;False;{};giscz88;False;t3_kujurp;False;False;t1_gisbqfm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giscz88/;1610346624;848;True;False;anime;t5_2qh22;;0;[]; -[];;;Nercif;;;[];;;;text;t2_druhh;False;False;[];;Because the ep is out on most non-americans networks.;False;False;;;;1610305256;;False;{};gisczw9;False;t3_kujurp;False;True;t1_gisabvk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisczw9/;1610346634;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"> Willy declares War - -> Gets killed off next second - -Willy got 360 Eren-scoped lol";False;False;;;;1610305256;;False;{};gisczwn;False;t3_kujurp;False;False;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisczwn/;1610346634;54;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610305259;;False;{};gisd03p;False;t3_kujurp;False;True;t1_gisaihi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisd03p/;1610346637;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Medeses;;;[];;;;text;t2_wi3tl;False;False;[];;Reiner‘s voiceacting was so good!;False;False;;;;1610305262;;False;{};gisd0d0;False;t3_kujurp;False;False;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisd0d0/;1610346641;14;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610305270;;False;{};gisd0yb;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gisd0yb/;1610346651;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ClickingHCT;;;[];;;;text;t2_l5nip;False;False;[];;Been done for a few hours already;False;False;;;;1610305290;;False;{};gisd2ak;False;t3_kujurp;False;False;t1_giscs6o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisd2ak/;1610346672;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;FREEDOM TIME!!!!!!!;False;False;;;;1610305293;;False;{};gisd2jv;False;t3_kujurp;False;False;t1_gisari3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisd2jv/;1610346675;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610305299;;False;{};gisd2zg;False;t3_kujurp;False;False;t1_gisapyn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisd2zg/;1610346682;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;20K+;False;False;;;;1610305300;;False;{};gisd337;False;t3_kujurp;False;False;t1_giscepb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisd337/;1610346684;72;True;False;anime;t5_2qh22;;0;[]; -[];;;Mana_Croissant;;;[];;;;text;t2_30m68690;False;False;[];;I can agree that The Ost was not the most fitting but I saw so many people wanting Reiner and Berthold transformation ost from season 2 would be used instead and I saw an edited version of the scene with that ost and IT DOES NOT FIT AT ALL since that ost was meant to be a slow and half emotional ost and the epicness of that scene comes from the transformations, While Eren's transformation was supposed to be PURE HYPE and upbeat. I think a New Ost should have be made for Eren's transformation scene but If not, the current one fits Even If It is not the best choice;False;False;;;;1610305301;;False;{};gisd37d;False;t3_kujurp;False;False;t1_gisanh2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisd37d/;1610346685;103;True;False;anime;t5_2qh22;;0;[]; -[];;;whizmas;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/xjet465;light;text;t2_14gyc2;False;False;[];;Any% anime protagonist speedrun;False;False;;;;1610305309;;False;{};gisd3sc;False;t3_kujurp;False;False;t1_gisax64;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisd3sc/;1610346695;1254;True;False;anime;t5_2qh22;;0;[]; -[];;;Denzel_Potato09;;;[];;;;text;t2_5upv9a99;False;False;[];;"Ayyyyy K-On! is such a sleeper of an Anime, really good characters, plot etc. - -I'm glad there's still people who appreciate it well. It's definitely in my Top 10! But not quite there to make the Top 5";False;False;;;;1610305315;;False;{};gisd47q;True;t3_kuk2nn;False;False;t1_gisci60;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gisd47q/;1610346702;4;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;"Next episode: ""Ah shit he asserted dominance, we surrender.""";False;False;;;;1610305319;;False;{};gisd4fo;False;t3_kujurp;False;False;t1_gisbcxu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisd4fo/;1610346705;83;True;False;anime;t5_2qh22;;0;[]; -[];;;MadeOfGoat;;;[];;;;text;t2_8ybx2zgi;False;False;[];;"You the absolute evil... - -Giving this episode a wholesome award :)";False;False;;;;1610305319;;False;{};gisd4gd;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisd4gd/;1610346705;22;True;False;anime;t5_2qh22;;0;[]; -[];;;axl625;;;[];;;;text;t2_tskg1;False;False;[];;Reiner's frightened face there was satisfying to see.;False;False;;;;1610305325;;False;{};gisd4wn;False;t3_kujurp;False;False;t1_giscm9k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisd4wn/;1610346711;89;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610305325;;False;{};gisd4x0;False;t3_kujurp;False;True;t1_gisbgr0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisd4x0/;1610346711;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bombdropperxx;;;[];;;;text;t2_m48hp;False;False;[];;Eren with the biggest SIKE of a handshake at the end there.;False;False;;;;1610305339;;False;{};gisd5u3;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisd5u3/;1610346725;4;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Shows the Silver Award... and that's it."", 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'icon_width': 512, 'id': 'gid_1', 'is_enabled': True, 'is_new': False, 'name': 'Silver', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;mohamez;;;[];;;;text;t2_9p0gp;False;False;[];;"**Episode 62: [Eren and Reiner's flashback in Paradis]** - -**Eren:** How can I get like you and Mikasa? At this rate, I'll die without doing a damn thing! - -**Reiner:** Just do what you've gotta do. Keep moving forward. That's all we can do. - -**Episode 64:** - -**Eren:** I'll just keep moving forward.";False;False;;;;1610305343;;1610308365.0;{'gid_1': 1};gisd65h;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisd65h/;1610346730;2587;True;False;anime;t5_2qh22;;1;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Eren is like a grizzled veteran now.;False;False;;;;1610305346;;False;{};gisd6cp;False;t3_kujurp;False;False;t1_gisao83;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisd6cp/;1610346733;694;True;False;anime;t5_2qh22;;0;[]; -[];;;bluedragon711;;;[];;;;text;t2_371pggvo;False;False;[];;Fuck! We reached the greatness, us manga readers have been waiting for this moment for so long!;False;False;;;;1610305352;;False;{};gisd6tn;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisd6tn/;1610346741;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KA1N3R;;;[];;;;text;t2_li22g;False;False;[];;I literally cannot imagine what will happen next and I'm normally pretty good at predicting stories. It's truly an achievement, especially because it's never unpredictable because of dumb asspulls.;False;False;;;;1610305352;;False;{};gisd6up;False;t3_kujurp;False;False;t1_gisbtc0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisd6up/;1610346741;39;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;And that's perfectly fine. You and I are entitled to liking different aspects of an episode.;False;False;;;;1610305364;;False;{};gisd7ot;False;t3_kujurp;False;False;t1_gisbf80;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisd7ot/;1610346755;12;True;False;anime;t5_2qh22;;0;[]; -[];;;juances19;;HB;[];;https://kitsu.io/users/juances;dark;text;t2_17a18d;False;False;[];;But see, a 1 minute trailer would've saved you from watching a full episode.;False;False;;;;1610305367;;False;{};gisd7vy;False;t3_kuk0qd;False;True;t1_gisby9p;/r/anime/comments/kuk0qd/exarm_anime_is_trash/gisd7vy/;1610346758;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;Shit man I was struggling to breathe the whole time with how much I was shaking out of pure hype.;False;False;;;;1610305390;;False;{};gisd9iy;False;t3_kujurp;False;False;t1_gisb5i0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisd9iy/;1610346786;280;True;False;anime;t5_2qh22;;0;[]; -[];;;tbu987;;;[];;;;text;t2_et89x;False;False;[];;When [you](https://miro.medium.com/max/1200/1*10ZFxs6KhAsTMJs7i0E0Ag.jpeg) declare war but are the first to die;False;False;;;;1610305394;;False;{};gisd9sy;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisd9sy/;1610346792;139;True;False;anime;t5_2qh22;;0;[]; -[];;;TSmasher1000;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_14sxjn;False;False;[];;Chadren waited until Willy declared war. It's not his fault that he had to make the most chad, gamer move as the first actions of the war.;False;False;;;;1610305404;;False;{};gisdaj7;False;t3_kujurp;False;True;t1_gisaa7a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdaj7/;1610346803;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;🦀🦀WILLY IS GONEE🦀🦀;False;False;;;;1610305405;;False;{};gisdakp;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdakp/;1610346804;1020;True;False;anime;t5_2qh22;;0;[]; -[];;;JuangWahyu;;;[];;;;text;t2_4cp0pcfu;False;False;[];;Did you guys noticed at the end that of how happy they were all clapping and cheering for a genocide of an entire isolated ethnic group, it genuinely pissing me off and I hope Eren will give them their due.;False;False;;;;1610305415;;False;{};gisdb9b;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdb9b/;1610346814;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GowtherETC;;;[];;;;text;t2_47ql3fom;False;False;[];;Annie can step on me like she did Levi's squad;False;False;;;;1610305417;;False;{};gisdbfg;False;t3_kujurp;False;False;t1_gisbcna;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdbfg/;1610346817;27;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610305432;;False;{};gisdcfl;False;t3_kujurp;False;True;t1_gisbtc0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdcfl/;1610346833;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;He really brought Reiner to his knees;False;False;;;;1610305445;;False;{};gisddf1;False;t3_kujurp;False;False;t1_gisahuh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisddf1/;1610346849;34;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"You didn’t even properly spoiler proof this post. - -Your title is so vague and unspecific that no one would’ve known what the spoiler was unless they clicked on it. It would’ve been proper spoiler etiquette if you put in your title “quintessential quintuplet manga spoilers below” or something. You didn’t even bother using the specific spoiler tags r/anime uses in the body text.";False;False;;;;1610305448;;False;{};gisddm3;False;t3_kukbdg;False;True;t3_kukbdg;/r/anime/comments/kukbdg/tagged_spoiler_alert_post/gisddm3/;1610346853;2;True;False;anime;t5_2qh22;;0;[]; -[];;;3jp6739;;;[];;;;text;t2_ifg1w;False;False;[];;Here we go again lol;False;False;;;;1610305451;;False;{};gisddtv;False;t3_kujurp;False;False;t1_gisaesh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisddtv/;1610346856;120;True;False;anime;t5_2qh22;;0;[]; -[];;;exozaln;;;[];;;;text;t2_x135v;False;False;[];;I gave it a Hugz but it was for Reiner;False;False;;;;1610305453;;False;{};gisde0e;False;t3_kujurp;False;False;t1_gisd4gd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisde0e/;1610346859;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;True;[];;"> the bratty Eren from season 1 who shouted like all generic shonen Protagonists. - -He's tired of all this shit. Now he lets his Titan scream.";False;False;;;;1610305457;;False;{};gisdeab;False;t3_kujurp;False;False;t1_gisao83;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdeab/;1610346864;456;True;False;anime;t5_2qh22;;0;[]; -[];;;tbu987;;;[];;;;text;t2_et89x;False;False;[];;Surprised how well Eren has control over his titan powers like he delays his regeneration and then even his titan shifting is delayed;False;False;;;;1610305465;;False;{};gisdev8;False;t3_kujurp;False;False;t1_gisa5o0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdev8/;1610346875;24;True;False;anime;t5_2qh22;;0;[]; -[];;;entinio;;;[];;;;text;t2_11a1xl;False;False;[];;To you, 200 meters from me;False;False;;;;1610305469;;False;{};gisdf6l;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdf6l/;1610346880;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Well Reiner wanted to be judged after all;False;False;;;;1610305486;;False;{};gisdgjm;False;t3_kujurp;False;False;t1_gisahuh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdgjm/;1610346903;306;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;Plot armor failed succesfully;False;False;;;;1610305487;;False;{};gisdgmx;False;t3_kujurp;False;False;t1_gisb9rv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdgmx/;1610346905;15;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;eren has a new aura of intimidation wow;False;False;;;;1610305492;;False;{};gisdh0g;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdh0g/;1610346911;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;"> ONE OF THE FUCKING GREATEST EPISODES OF ~~AOT~~ ANIME!!! - -FTFY";False;False;;;;1610305502;;False;{};gisdhr9;False;t3_kujurp;False;False;t1_gisanh2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdhr9/;1610346924;355;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;I’m a manga reader and i disagree, aside with my only complaint with the last ost, the rests are done justice and I definitely had goosebumps for that climax;False;False;;;;1610305508;;False;{};gisdi9l;False;t3_kujurp;False;False;t1_gisci8n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdi9l/;1610346932;16;True;False;anime;t5_2qh22;;0;[]; -[];;;ANINETEEN;;;[];;;;text;t2_4g33jvxm;False;False;[];;MY WARRRR. Well that's as close to perfection as you can get 10/10 🔥 Literally felt chills seeing each page of the manga come to life. Especially shout out to the orchestra because those OSTs were the perfect depiction of pacing, tone and progression. It really puts across how sadistic of a mf Eren is playing with Reiner by building up his intentions and then giving him the hottest handshake he's ever had. Next week is only going to get crazier 👀;False;False;;;;1610305522;;False;{};gisdjbj;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdjbj/;1610346949;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610305525;;False;{};gisdjkv;False;t3_kujurp;False;True;t1_gisajo9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdjkv/;1610346954;1;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;"Some take the ""war"" too seriously instead of just a fun comparison between threads.";False;False;;;;1610305527;;False;{};gisdjqy;False;t3_kujurp;False;False;t1_gisbt42;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdjqy/;1610346956;107;True;False;anime;t5_2qh22;;0;[]; -[];;;Economy_Detective943;;;[];;;;text;t2_3ovs9y8d;False;False;[];;Oh yeah it’s finally getting started;False;False;;;;1610305528;;False;{};gisdjtw;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdjtw/;1610346957;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SolracXD;;;[];;;;text;t2_4d5rd3mk;False;False;[];;"Long have we waited and finally we can see the full glory of one the best moments of Attack on Titan animated. - -Its just so beatiful! 😭😭😭";False;False;;;;1610305528;;False;{};gisdjv0;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdjv0/;1610346958;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;Zenitsu. He can be a bit over the top, but I quite like the coward OP idea, characters that aren't confident but are OP anyway are very satisfying. I'm optimistic that he'll get some character development, and will tone down a bit. Even if not, he's not the worst concept for a character at all.;False;False;;;;1610305541;;False;{};gisdkup;False;t3_kuk2au;False;True;t3_kuk2au;/r/anime/comments/kuk2au/characters_you_think_are_overhated/gisdkup/;1610346980;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamkillerz12;;;[];;;;text;t2_3mnqkw6i;False;False;[];;Eren Yeager out here destroying the world. Smh;False;False;;;;1610305545;;False;{};gisdl3p;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdl3p/;1610346985;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dgam02;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/dgam02;light;text;t2_13gmsx;False;False;[];;That was perfectly directed from start to finish holy shit. Mappa masterclass;False;False;;;;1610305546;;False;{};gisdl6f;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdl6f/;1610346986;16;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;"No War crimes committed there. - -&#x200B; - -edit: - -It was not sarcasm btw. Article 8, 2b xxiii states: - ->*Utilizing the presence of a civilian or other protected person to render certain points, areas or military forces immune from military operations;* - -[https://www.un.org/en/genocideprevention/war-crimes.shtml](https://www.un.org/en/genocideprevention/war-crimes.shtml) - -&#x200B; - -The place was packed with military personnel, even thought it was civilian area. Eren attacking them is not a war crime!!!";False;False;;;;1610305565;;1610313280.0;{};gisdmla;False;t3_kujurp;False;False;t1_gisb9xy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdmla/;1610347008;30;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;Taiga from Toradora!;False;False;;;;1610305568;;False;{};gisdmt8;False;t3_kuk2au;False;True;t3_kuk2au;/r/anime/comments/kuk2au/characters_you_think_are_overhated/gisdmt8/;1610347011;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;TSmasher1000;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_14sxjn;False;False;[];;"I'm a manga reader myself. I think that at this point it's very much divided in the fandom how good the recent chapters are, but I think that at this point Isayama cannot write an ending that satisfies everyone because of the legacy and stakes that are at hand. I think they're pretty consistent in writing aside from maybe one or two chapters that I had gripes with, but otherwise it's really more of a, ""I wanted this to happen"" type of thing rather than a quality in writing issue.";False;False;;;;1610305576;;False;{};gisdnha;False;t3_kujurp;False;False;t1_gisdcfl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdnha/;1610347022;13;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;"Time for freedom and to play bad guy: - -[https://imgur.com/ZCxuNtz](https://imgur.com/ZCxuNtz)";False;False;;;;1610305588;;False;{};gisdoev;False;t3_kujurp;False;False;t1_gisals3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdoev/;1610347036;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;hard to say this early when the CR release hasn't even dropped. It's twice as high as it normally is at this time but that's because a lot of manga readers are hyped and watched the raws before the fansubs.;False;False;;;;1610305590;;False;{};gisdokm;False;t3_kujurp;False;False;t1_giscepb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdokm/;1610347038;44;True;False;anime;t5_2qh22;;0;[]; -[];;;Sammi687;;;[];;;;text;t2_3ixyng12;False;False;[];;The spoiler alert is on the first sentence while the actual spoiler is further along in the passage also the title is not in regards to the spoiler information its regards to events;False;False;;;;1610305598;;False;{};gisdp7c;True;t3_kukbdg;False;True;t1_gisddm3;/r/anime/comments/kukbdg/tagged_spoiler_alert_post/gisdp7c/;1610347048;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;And makes him knee;False;False;;;;1610305602;;False;{};gisdpgn;False;t3_kujurp;False;False;t1_gisar4f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdpgn/;1610347052;10;True;False;anime;t5_2qh22;;0;[]; -[];;;OuchYouPokedMyHeart;;;[];;;;text;t2_vcemo;False;True;[];;"Reiner is the embodiment of ""What is dead may never die""";False;False;;;;1610305604;;False;{};gisdpnw;False;t3_kujurp;False;False;t1_gisapyn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdpnw/;1610347054;77;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;So this is why the Levi fans has now hopped onto the Eren bandwagon.;False;False;;;;1610305607;;False;{};gisdpwf;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdpwf/;1610347057;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Colour of oxygenated blood, perhaps?;False;False;;;;1610305610;;False;{};gisdq44;False;t3_kukbld;False;True;t1_gisdjoz;/r/anime/comments/kukbld/what_is_the_originsignificance_of_a_single/gisdq44/;1610347061;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;True;[];;Especially when he has his hand bleeding.;False;False;;;;1610305625;;False;{};gisdr7g;False;t3_kujurp;False;False;t1_gisai6n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdr7g/;1610347078;531;True;False;anime;t5_2qh22;;0;[]; -[];;;PhoenixFoxington;;;[];;;;text;t2_33zmnrsa;False;False;[];;It must be so tiring to be any other anime whenever Attack on Titan is airing;False;False;;;;1610305628;;False;{};gisdrfw;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdrfw/;1610347081;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;His final moments were also insane;False;False;;;;1610305636;;False;{};gisdryw;False;t3_kujurp;False;False;t1_gisaldb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdryw/;1610347090;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Rs_Plebian_420;;;[];;;;text;t2_16w7nb;False;False;[];;Nukes in the air.;False;False;;;;1610305648;;False;{};gisdsw0;False;t3_kujurp;False;True;t1_gisai0e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdsw0/;1610347103;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"Re:Zero Season 2 Part 2: - -Attack on Titan: The Final Season: THIS IS THE DECLARATION OF WAR ON KARMA!";False;False;;;;1610305652;;False;{};gisdt4n;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdt4n/;1610347108;222;True;False;anime;t5_2qh22;;0;[]; -[];;;ModieOfTheEast;;;[];;;;text;t2_g7tqk9b;False;False;[];;"So, the blonde soldier, any theories who it is? I mean, the only blonde soldier I would have guessed was Armin. Would also make sense for him infiltrating the military. But the guy was too tall and the voice didn't fit either (if the VA didn't do a perfect job at hiding it). Only thing going for him are his blue eyes and that Pieck recognized him (interested to see what she told her squad). - -In general, my main problem with the setup of the story now is the question: Why? Why do they even have to go into war? I mean, take Eren aside who might be a bit nuts to begin with, but he can't do it alone. There have to be a lot of people joining him in this war. But again: why? From what we can see, there is no way to tell who is Eldian and who isn't which is why they have to wear the armbands. So, if they are able to infiltrate Marley, why don't they just keep on living? Who would find out that they are Eldians? Most of the people from Paradis don't even know they are Eldians, so it's not like it is a very important traditional thing. - -At first, I thought, Erens plan was to save the Eldians in Marley as well from being treated unfairly, but he doesn't seem to care who he kills. You might say this is collateral damage, but I am pretty sure there would have been a different solution to this without killing fellow Eldians if that was his goal.";False;False;;;;1610305664;;False;{};gisdu1d;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdu1d/;1610347122;3;True;False;anime;t5_2qh22;;0;[]; -[];;;csdbcjkahsd;;;[];;;;text;t2_6o5ig4yp;False;False;[];;yup. people walking inside a building just staring at stuff is almost the same as a declaration of war.;False;True;;comment score below threshold;;1610305666;;False;{};gisdu72;False;t3_kujurp;False;True;t1_giscq7t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdu72/;1610347124;-20;True;False;anime;t5_2qh22;;0;[]; -[];;;TSmasher1000;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_14sxjn;False;False;[];;Eren: I'm Gonna Do What's Called a Pro Gamer Move. **Destroys Willy Tybur*;False;False;;;;1610305668;;False;{};gisduah;False;t3_kujurp;False;False;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisduah/;1610347125;37;True;False;anime;t5_2qh22;;0;[]; -[];;;Mrtheliger;;;[];;;;text;t2_11ghbg;False;False;[];;My sister who is a conspiracy nut texted me freaking out about it. Nice to see SnK going mainstream again;False;False;;;;1610305672;;False;{};gisdul6;False;t3_kujurp;False;False;t1_gisaeyc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdul6/;1610347130;43;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;"Has begun, the ~~clone~~ titans wars - -\-~~Yoda~~ Eren/ Tybur \~Probably";False;False;;;;1610305674;;False;{};gisdur2;False;t3_kujurp;False;True;t1_gisb0h7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdur2/;1610347131;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pintossbm123;;;[];;;;text;t2_25s6ldw9;False;False;[];;No impact? How does it have no impact lol;False;False;;;;1610305676;;False;{};gisdux6;False;t3_kujurp;False;False;t1_gisc8sb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdux6/;1610347134;20;True;False;anime;t5_2qh22;;0;[]; -[];;;vagabondeluxe;;;[];;;;text;t2_6xj8vlb9;False;False;[];;Agree!! It was phenomenal, I loved all the characters so much, nothing like I’ve ever seen;False;False;;;;1610305685;;False;{};gisdvlw;False;t3_kuk2nn;False;True;t1_giscrps;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gisdvlw/;1610347146;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RekklesCami;;;[];;;;text;t2_3ozyz0ye;False;False;[];;Reiner needs lots of hugs;False;False;;;;1610305687;;False;{};gisdvrd;False;t3_kujurp;False;False;t1_gisde0e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdvrd/;1610347149;12;True;False;anime;t5_2qh22;;0;[]; -[];;;exozaln;;;[];;;;text;t2_x135v;False;False;[];;I agree, they chose not to had any OST playing, which I guess would be weird because it'd get cut with the ending to soon, but it really left the scene hanging;False;False;;;;1610305691;;False;{};gisdvzv;False;t3_kujurp;False;False;t1_gisc8sb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdvzv/;1610347152;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610305704;;False;{};gisdwy7;False;t3_kujurp;False;True;t1_gisci8n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdwy7/;1610347167;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SgtGawsty;;MAL;[];;http://myanimelist.net/profile/SgtGawsty;dark;text;t2_di5t5;False;False;[];;it's not just pirating, it's also available in Wakanim (Official Legal anime website) in french at exactly 18:34 (gmt+1) (the earliest of them all i think);False;False;;;;1610305707;;False;{};gisdx5p;False;t3_kujurp;False;False;t1_giscp81;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdx5p/;1610347170;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Miidas-92;;MAL;[];;https://myanimelist.net/profile/Miidas;dark;text;t2_ja1jx;False;False;[];;"1. Cardcaptor Sakura - -2. Monogatari Series - -3. Ojamajo Doremi Dokkaan! - -4. Heartcatch Precure - -5. The Tatami Galaxy";False;False;;;;1610305709;;False;{};gisdxbz;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gisdxbz/;1610347173;3;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;It was hard to avoid the spoilers;False;False;;;;1610305713;;False;{};gisdxo0;False;t3_kujurp;False;False;t1_gisbbwg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdxo0/;1610347178;319;True;False;anime;t5_2qh22;;0;[]; -[];;;monsieurvampy;;;[];;;;text;t2_453ax;False;False;[];;Did Eren grow up!?;False;False;;;;1610305721;;False;{};gisdy79;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdy79/;1610347187;33;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;AoT is on another level;False;False;;;;1610305724;;False;{};gisdygj;False;t3_kujurp;False;False;t1_giscqsk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdygj/;1610347190;47;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610305730;;False;{};gisdyxw;False;t3_kujurp;False;True;t1_gisd9sy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdyxw/;1610347199;6;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;Marleyan America;False;False;;;;1610305738;;1610306369.0;{};gisdzhs;False;t3_kujurp;False;False;t1_gisasz7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisdzhs/;1610347207;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"What's the best way to have all the fangirls simp for you and the naysayers and detractors finally appreciate you as a protagonist? - -Eren: By becoming a war criminal! TO FREEDOM!";False;False;;;;1610305758;;False;{};gise0yy;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gise0yy/;1610347229;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;"1. Death Note - -2. Toradora! - -3. Higurashi - -4. Attack On Titan - -5. Made In Abyss";False;False;;;;1610305762;;False;{};gise19k;False;t3_kuk2nn;False;False;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gise19k/;1610347233;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok_Draw_2833;;;[];;;;text;t2_4dha12vu;False;False;[];;A certain body part of mine rose...;False;False;;;;1610305762;;False;{};gise1ae;False;t3_kujurp;False;False;t1_giscpr1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gise1ae/;1610347233;167;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610305765;;False;{};gise1hr;False;t3_kujurp;False;False;t1_gisai0e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gise1hr/;1610347237;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;I'm getting chills just thinking about it;False;False;;;;1610305765;;False;{};gise1jy;False;t3_kujurp;False;False;t1_giscpr1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gise1jy/;1610347238;5;True;False;anime;t5_2qh22;;0;[]; -[];;;woancue;;;[];;;;text;t2_121itc;False;False;[];;definitely, just a joke on my part;False;False;;;;1610305782;;False;{};gise2tl;False;t3_kujurp;False;False;t1_giscr3k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gise2tl/;1610347256;228;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;He's topping the leaderboards;False;False;;;;1610305788;;False;{};gise39y;False;t3_kujurp;False;False;t1_gisd3sc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gise39y/;1610347263;434;True;False;anime;t5_2qh22;;0;[]; -[];;;cantaneer;;;[];;;;text;t2_1ib8wxpm;False;False;[];;he can step on me any time... literally;False;False;;;;1610305809;;False;{};gise4s9;False;t3_kujurp;False;False;t1_gisco3p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gise4s9/;1610347286;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NuggetsBuckets;;;[];;;;text;t2_g8fc4r7;False;False;[];;People at titanfolk are freaking out over the OST choice for the last scene.;False;False;;;;1610305811;;False;{};gise4vp;False;t3_kujurp;False;False;t1_gisaex2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gise4vp/;1610347287;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Exodor54;;MAL;[];;http://myanimelist.net/animelist/Exodor;dark;text;t2_eex6z;False;False;[];;"Compared to the bombastic and iconic sounds this anime usually produces at key scenes, the generic background music we got was quite underwhelming. - -[Compare it to, for example, this quick fan edited version.](https://streamable.com/09lh1y)";False;False;;;;1610305815;;False;{};gise58j;False;t3_kujurp;False;False;t1_gisdux6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gise58j/;1610347293;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamkillerz12;;;[];;;;text;t2_3mnqkw6i;False;False;[];;" -Next episode: ""GODLIKKEEEEEEEE""";False;False;;;;1610305816;;False;{};gise5ad;False;t3_kujurp;False;False;t1_gisch0n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gise5ad/;1610347294;58;True;False;anime;t5_2qh22;;0;[]; -[];;;Mrtheliger;;;[];;;;text;t2_11ghbg;False;False;[];;"""BECAUSE I WAS BORN INTO THIS WORLD!"" - -Don't even need to watch to get goosebumps. Attack on Titan has redefined the way I think about so many things, but the way Isayama so succinctly words simple philosophies like ""living for the sake of living"" takes the cake. Magnificent writing, magnificent moment, one of the greatest stories ever told.";False;False;;;;1610305820;;1610306123.0;{};gise5j0;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gise5j0/;1610347298;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"First [the motivational talk](https://i.imgur.com/U5hxs6V.png) that he did when Eren was down and now this. [Reiner's speeches have a tendency to spectacularly backfire.](https://i.imgur.com/1ouZjzA.png) - -[](#shatteredsaten)";False;False;;;;1610305822;;False;{};gise5nm;False;t3_kujurp;False;False;t1_gisar3t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gise5nm/;1610347299;612;True;False;anime;t5_2qh22;;0;[]; -[];;;ajv0109;;;[];;;;text;t2_sguwyoe;False;False;[];;">Oh, did I say that? Please, forget I said that. - -When I read that in the manga I was shocked. That was one of the most chad things I have ever seen. It proved that Eren wasn't acting on impulse like he used to and has matured.";False;False;;;;1610305825;;False;{};gise5wc;False;t3_kujurp;False;False;t1_gisak3a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gise5wc/;1610347303;43;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610305836;;False;{};gise6r1;False;t3_kujurp;False;True;t1_gisao83;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gise6r1/;1610347317;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;"yea it's already 300 comments & it officially releases in an hour. i cant contain this hype idk what to do.";False;False;;;;1610305837;;False;{};gise6tc;False;t3_kujurp;False;False;t1_gisdokm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gise6tc/;1610347317;11;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;Reiner 2.0 with the trauma he'll get from this.;False;False;;;;1610305839;;False;{};gise6z3;False;t3_kujurp;False;False;t1_giscnq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gise6z3/;1610347320;1631;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;WHAT A FUCKING GODLIKE EPISODE;False;False;;;;1610305843;;False;{};gise798;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gise798/;1610347325;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;Eren has finally become the storm that is approaching;False;False;;;;1610305844;;False;{};gise7am;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gise7am/;1610347326;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OuchYouPokedMyHeart;;;[];;;;text;t2_vcemo;False;True;[];;"Everyone simping for Pieck - - -Sasuga Pieck-chan";False;False;;;;1610305852;;False;{};gise7va;False;t3_kujurp;False;False;t1_gisctsk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gise7va/;1610347334;576;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;"300 comments already. Yea, this is going to break records ladies & gentlemen. - -ARE YOU READY? - -FOR DECLARATION OF WAR!";False;False;;;;1610305864;;False;{};gise8qa;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gise8qa/;1610347348;177;True;False;anime;t5_2qh22;;0;[]; -[];;;torching_fire;;;[];;;;text;t2_2a3tc5a9;False;False;[];;Falco is going to have deep regrets throughout his lifetime;False;False;;;;1610305876;;False;{};gise9k9;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gise9k9/;1610347362;466;True;False;anime;t5_2qh22;;0;[]; -[];;;varishtg;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;https://www.anime-planet.com/users/senpaidev/anime/watching?sort;light;text;t2_dmv1u;False;False;[];;Fucking amazing. All the wait was worth it. The animation was spot on, the score was perfect and the story literally has taken my words away. Willy just got his willy handed over to him, 5 seconds into the war. Mad props to all the VAs, especially Eren's VA. The calmness was almost eerie and for a moment it almost felt as if he were really a villain. Also the way Willy twisted the facts, draws so many parallels to what is happening today or what has been happening since the last few years. Goes without saying, can't wait enough for the next episode!;False;False;;;;1610305878;;False;{};gise9pe;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gise9pe/;1610347364;10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610305880;;False;{};gise9v3;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gise9v3/;1610347366;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Of_Awesomeness;;;[];;;;text;t2_1mx70z4s;False;False;[];;Just wait until he goes *shirtless*;False;False;;;;1610305880;;False;{};gise9wz;False;t3_kujurp;False;False;t1_giscf5k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gise9wz/;1610347367;122;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Well, it was the best episode of the season and it was done with perfection. Moreover, it lived up to the hype and I enjoyed the episode as well.;False;False;;;;1610305882;;False;{};gisea0w;False;t3_kujurp;False;False;t1_gisci8n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisea0w/;1610347369;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;True;[];;Always has been.;False;False;;;;1610305883;;False;{};gisea3w;False;t3_kujurp;False;False;t1_gisdxo0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisea3w/;1610347370;251;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok_Draw_2833;;;[];;;;text;t2_4dha12vu;False;False;[];;He internalized his season 1 angsty rage.;False;False;;;;1610305884;;False;{};gisea5c;False;t3_kujurp;False;False;t1_gisai6n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisea5c/;1610347370;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;Well, this Season started with a timeskip so obviously he did grew up;False;False;;;;1610305887;;False;{};giseafh;False;t3_kujurp;False;False;t1_gisdy79;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giseafh/;1610347375;43;True;False;anime;t5_2qh22;;0;[]; -[];;;DJ_AW03;;;[];;;;text;t2_6a2u9w9l;False;True;[];;Pure hype;False;False;;;;1610305891;;False;{};giseaoo;False;t3_kujurp;False;False;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giseaoo/;1610347378;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamkillerz12;;;[];;;;text;t2_3mnqkw6i;False;False;[];;"Tyber: ""I DECLARE WAR"" -Eren: ""SIKEEEE! I DECLARE WAR BITCH""";False;False;;;;1610305892;;False;{};giseasp;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giseasp/;1610347379;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610305899;;False;{};gisebaa;False;t3_kujurp;False;True;t1_gisav09;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisebaa/;1610347386;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;She was the real founding Titan all along;False;False;;;;1610305902;;False;{};gisebjb;False;t3_kujurp;False;False;t1_giscpjv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisebjb/;1610347390;172;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerdfighter87;;;[];;;;text;t2_6igwwa4e;False;False;[];;Not reading the comments cuz I'm scared of spoilers. I dropped off SNK in season 2, read the manga for a bit but got annoyed waiting for chapters to come out weekly. I wanna binge the whole show at once. When will the last episode air? I'll start bingeing a week or so before then.;False;False;;;;1610305907;;False;{};gisebvi;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisebvi/;1610347396;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Well it is My War not His War;False;False;;;;1610305910;;False;{};gisec2o;False;t3_kujurp;False;False;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisec2o/;1610347400;29;True;False;anime;t5_2qh22;;0;[]; -[];;;Ugowy;;;[];;;;text;t2_55pt997e;False;False;[];;I never get tired of Willy’s speech;False;False;;;;1610305913;;False;{};gisec9u;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisec9u/;1610347403;5;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;"###Stitches! - -* [Hobo Eren 1](https://i.imgur.com/E8khI99.jpg) - -* [Hobo Eren 2](https://i.imgur.com/NhZHKWN.jpg) - -As a manga reader I genuinely don't have much top say about this chapter without saying something unnecessary but what I can say is that this is definitely one of my favourite ""sit down and talk"" episodes. - -[The atmosphere between Eren and Reiner was so heavy](https://i.imgur.com/N0ccdxL.png) and he really set the one of that meeting by first telling Reiner that [the building above them is full of innocent people.](https://i.imgur.com/EJ6pJZM.png) And poor Falco! Poor, poor Falco getting caught in between [while slowly realizing what he just did](https://i.imgur.com/xgl6QJe.png) is so good! - -Willy's speech was also as good as I remember. Also props to him [for putting on that entire stage show!](https://i.imgur.com/BUBRHEl.png) He's really pulling out all the stops so he can rally all these people against the Paradis Islanders. I can't wait for the chaos that will ensue next week! - -As a side note: [This lucky bastard getting a hug from Pieck!](https://i.imgur.com/6rOKbrP.png) I guess this day isn't too bad for him!";False;False;;;;1610305915;;1610321865.0;{};gisecf8;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisecf8/;1610347405;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Crisisofland;;;[];;;;text;t2_7jhkdpjn;False;False;[];;Holy. *Fcking* Shit.;False;False;;;;1610305932;;False;{};gisedks;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisedks/;1610347423;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"*John Cena theme* - -TUTUTURUTUTTTTT 🎺🎺🎺🎺";False;False;;;;1610305932;;False;{};gisedlh;False;t3_kujurp;False;False;t1_gisac08;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisedlh/;1610347423;12;True;False;anime;t5_2qh22;;0;[]; -[];;;DutchHazze;;;[];;;;text;t2_a7js6;False;False;[];;Hell yeah, about three years ago I stopped reading the manga because the I liked the series too much. Now I'm finally at the point where I don't know the story anymore, super hyped!;False;False;;;;1610305937;;False;{};gisee0n;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisee0n/;1610347429;2;True;False;anime;t5_2qh22;;0;[]; -[];;;pintossbm123;;;[];;;;text;t2_25s6ldw9;False;False;[];;I actually do like that version more, but saying it didn’t reach its full potential is quite different from zero impact. The drum buildup in 2volt gave a militaristic tone to it which I quite liked.;False;False;;;;1610305938;;False;{};gisee1s;False;t3_kujurp;False;False;t1_gise58j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisee1s/;1610347430;16;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;Pretty sure he’s a manga reader;False;False;;;;1610305953;;False;{};gisef42;False;t3_kujurp;False;False;t1_gisdwy7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisef42/;1610347446;2;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;EYKO;False;False;;;;1610305956;;False;{};gisefc0;False;t3_kujurp;False;False;t1_giscpcm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisefc0/;1610347449;12;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;Yeah it works as a great opener for E6 before cutting to the destruction and eventually the WHT reveal.;False;False;;;;1610305960;;False;{};gisefnb;False;t3_kujurp;False;False;t1_giscz7r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisefnb/;1610347454;65;True;False;anime;t5_2qh22;;0;[]; -[];;;Inferno792;;MAL;[];;https://myanimelist.net/profile/Inferno792;dark;text;t2_148vlb;False;False;[];;I think it also coincided with the release of the latest manga chapter.;False;False;;;;1610305974;;False;{};gisegnh;False;t3_kujurp;False;False;t1_gisbbwg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisegnh/;1610347471;603;True;False;anime;t5_2qh22;;0;[]; -[];;;14MySterY-;;;[];;;;text;t2_b3n4y;False;False;[];;And so it begins. This train will never stop now.;False;False;;;;1610305988;;False;{};gisehmd;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisehmd/;1610347487;3;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;"This is the only show where people just sitting/standing around talking is more hyped than any action scene. - -Edit: Maybe I should have said ""one of the only action shows""";False;False;;;;1610305988;;1610341818.0;{};gisehmo;False;t3_kujurp;False;False;t1_gisc1bn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisehmo/;1610347487;144;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610305989;;False;{};gisehp8;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisehp8/;1610347488;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;The basement mom, the basement!;False;False;;;;1610305989;;False;{};gisehpt;False;t3_kujurp;False;False;t1_giscz88;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisehpt/;1610347489;490;True;False;anime;t5_2qh22;;0;[]; -[];;;MercifulGuard;;;[];;;;text;t2_11gvvj;False;True;[];;Let’s say, hypothetically, the founding titan is in the hands of Eren Yeager........;False;False;;;;1610305993;;False;{};gisehyz;False;t3_kujurp;False;False;t1_gisahuh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisehyz/;1610347492;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610305998;;False;{};giseiaw;False;t3_kujurp;False;True;t1_gisc1bn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giseiaw/;1610347498;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Voi69;;;[];;;;text;t2_lcnz6;False;False;[];;Yeah I know. I am one of those that like 2Volt, find it good for that scene. However better could have been possible.;False;False;;;;1610305998;;False;{};giseibc;False;t3_kujurp;False;True;t1_gise4vp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giseibc/;1610347498;1;True;False;anime;t5_2qh22;;0;[]; -[];;;everything_is_gone;;;[];;;;text;t2_av1qx;False;False;[];;“I will keep you alive in the most excruciating way possible instead”;False;False;;;;1610305998;;False;{};giseics;False;t3_kujurp;False;False;t1_giscjc4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giseics/;1610347498;600;True;False;anime;t5_2qh22;;0;[]; -[];;;randomkidlol;;;[];;;;text;t2_bg4iz;False;False;[];;he smiled after hearing those words, so its kind of there i guess?;False;False;;;;1610306004;;False;{};giseisu;False;t3_kujurp;False;False;t1_gisbq8r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giseisu/;1610347506;22;True;False;anime;t5_2qh22;;0;[]; -[];;;shadebedlam;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Shadebedlam;light;text;t2_fl41u;False;False;[];;yeah I misread that sorry;False;False;;;;1610306007;;False;{};giseizi;False;t3_kujurp;False;True;t1_gisef42;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giseizi/;1610347508;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610306011;;1610343849.0;{};gisejao;False;t3_kujurp;False;False;t1_gisdu1d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisejao/;1610347513;7;False;False;anime;t5_2qh22;;0;[]; -[];;;Shorter4llele;;MAL;[];;https://myanimelist.net/profile/Shorter4llele;dark;text;t2_r12j0;False;False;[];;This should be top comment;False;False;;;;1610306015;;False;{};gisejme;False;t3_kujurp;False;False;t1_gisa8cr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisejme/;1610347518;2;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;His name is William after all;False;False;;;;1610306023;;1610310362.0;{};gisek9j;False;t3_kujurp;False;False;t1_gisby37;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisek9j/;1610347529;25;True;False;anime;t5_2qh22;;0;[]; -[];;;monsieurvampy;;;[];;;;text;t2_453ax;False;False;[];;If I recall correctly, this is how the bot knows to posts episode discussion threads. While the sub might prohibit pirating, its the only centralize place to know when an episode is available. I think when HorribleSubs closed down. The bot postings were delayed.;False;False;;;;1610306027;;False;{};gisekjb;False;t3_kujurp;False;True;t1_giscp81;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisekjb/;1610347533;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610306044;;False;{};giselr9;False;t3_kujurp;False;True;t1_gisd37d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giselr9/;1610347552;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Inferno792;;MAL;[];;https://myanimelist.net/profile/Inferno792;dark;text;t2_148vlb;False;False;[];;"""I'm just that scary"" - Some 10 year old Eren. - -Almost a decade later...";False;False;;;;1610306048;;False;{};gisem1m;False;t3_kujurp;False;False;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisem1m/;1610347556;7;True;False;anime;t5_2qh22;;0;[]; -[];;;GowtherETC;;;[];;;;text;t2_47ql3fom;False;False;[];;Manga readers (who likely watched raws) tend to build up adaptations in their head to unrealistic standards imo. Happens all the time;False;False;;;;1610306048;;False;{};gisem3n;False;t3_kujurp;False;False;t1_gisbw5o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisem3n/;1610347557;92;True;False;anime;t5_2qh22;;0;[]; -[];;;SoMuchHatred;;;[];;;;text;t2_o15bh;False;False;[];;There are actually ways to determine if someone is an Eldian or not - namely, blood tests. Kruger explains to Grisha that he faked them with the help of a doctor back when Kruger was revealing he had the Attack Titan, but not everyone is going to have that resource. And even if they could just hide in Marley, that wouldn't do anything for the Eldians in the internment camps or those left behind in Paradis anyway.;False;False;;;;1610306055;;False;{};gisemls;False;t3_kujurp;False;False;t1_gisdu1d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisemls/;1610347566;8;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;This episode was one of the best episodes of the entire series, it lived up to the hype and Eren has became one of the best characters in anime.;False;False;;;;1610306057;;False;{};gisemrs;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisemrs/;1610347568;4;True;False;anime;t5_2qh22;;0;[]; -[];;;DJ_AW03;;;[];;;;text;t2_6a2u9w9l;False;True;[];;That's one of the chillest threats I've ever seen;False;False;;;;1610306077;;False;{};giseo6c;False;t3_kujurp;False;False;t1_gisdr7g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giseo6c/;1610347588;518;True;False;anime;t5_2qh22;;0;[]; -[];;;Cryptanark;;;[];;;;text;t2_ira0d;False;False;[];;seriously guys are we doing this already? anime onlies have barely gotten a chance to digest the episode lol;False;False;;;;1610306081;;False;{};giseogu;False;t3_kujurp;False;False;t1_gisaesh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giseogu/;1610347593;69;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Ah shit, here we go dedicating our hearts again.;False;False;;;;1610306094;;False;{};gisepf0;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisepf0/;1610347608;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jinwook;;;[];;;;text;t2_71o3i;False;False;[];;They got it from Reiner when he came back from Paradis;False;False;;;;1610306094;;False;{};gisepft;False;t3_kujurp;False;False;t1_gisbq0k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisepft/;1610347608;129;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;"Yeah for 3 seasons we watched all of Eren's worldviews and beliefs get repeatedly challenged and destroyed. He's watched entire squads of soldiers get slaughtered in front of him, often BECAUSE of him. Everything he ever thought he knew was turned upside down and inside out. Nothing was as he believed. - -And now. . . This is the result.";False;False;;;;1610306099;;False;{};gisepu3;False;t3_kujurp;False;False;t1_gisao83;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisepu3/;1610347613;297;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;"> Hobo Eren 1 - -> Hobo Eren 2 - -Those are the same Screenshot. I did love though how he was casually growing back his leg has Falco and Reiner are realising what's about to happen.";False;False;;;;1610306102;;False;{};giseq10;False;t3_kujurp;False;True;t1_gisecf8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giseq10/;1610347617;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Denzel_Potato09;;;[];;;;text;t2_5upv9a99;False;False;[];;"Completely Agree! Initially I thought it would a run-of-the-mill Music/High School Anime. - -But I am so glad that I was proven wrong, everything from the plot, character, character development, climax, the Art Style, the pacing, etc. Everything was so on point that I was in Awe. Ngl I selfishly want more of it. - -Btw, my favourite character and best girl is Asuka-senpai, how about you?";False;False;;;;1610306104;;False;{};giseq5q;True;t3_kuk2nn;False;True;t1_gisdvlw;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/giseq5q/;1610347619;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;In this sub, this is a declaration of war on karma!;False;False;;;;1610306120;;False;{};giserby;False;t3_kujurp;False;True;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giserby/;1610347637;3;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;"""Titans haven't destroyed my hometown tho."" - -""Yet.""";False;False;;;;1610306134;;False;{};gisesei;False;t3_kujurp;False;False;t1_gisax5b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisesei/;1610347653;217;True;False;anime;t5_2qh22;;0;[]; -[];;;Denzel_Potato09;;;[];;;;text;t2_5upv9a99;False;False;[];;Higurashi, dangg you're definitely a man of culture;False;False;;;;1610306134;;False;{};gisesep;True;t3_kuk2nn;False;True;t1_gise19k;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gisesep/;1610347653;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Crisisofland;;;[];;;;text;t2_7jhkdpjn;False;False;[];;Well it seems like he intended to kill him there though lmao;False;False;;;;1610306135;;False;{};gisesh6;False;t3_kujurp;False;False;t1_gisbikz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisesh6/;1610347654;5;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;So it all started when a random Japanese teen gave up on opening an internet cafe and chose to draw giant naked people for a living instead...;False;False;;;;1610306143;;False;{};giset0g;False;t3_kujurp;False;False;t1_gisbqfm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giset0g/;1610347663;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;Lmaooo;False;False;;;;1610306143;;False;{};giset0z;False;t3_kujurp;False;False;t1_gisdul6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giset0z/;1610347663;10;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;I love that there is canonically a Piek simp squad.;False;False;;;;1610306166;;False;{};giseulo;False;t3_kujurp;False;False;t1_gise7va;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giseulo/;1610347686;555;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610306171;;False;{};giseuzk;False;t3_kujurp;False;True;t1_gisaeyc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giseuzk/;1610347692;1;True;False;anime;t5_2qh22;;0;[]; -[];;;H4wx;;;[];;;;text;t2_ehuq5;False;False;[];;"I feel like the Asian lady and maybe even her whole country are allied to Paradis, since she seemed to know something bad is about to happen and gtfod out of there. - -Also I'm pretty sure Willy ain't getting out of this alive so I'm guessing he's not the holder of the Warhammer Titan.";False;False;;;;1610306176;;False;{};gisevcp;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisevcp/;1610347697;3;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610306184;;False;{};gisevxe;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisevxe/;1610347707;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kind_Yandere;;;[];;;;text;t2_84f2s429;False;False;[];;Just a guess, but maybe it's got something to do with what anime stays on the top of the page. If they air on different dayas they can both stay on the top of the page, and thus gather more attention. If they both air the same day then only one of them will be able to stay on the top.;False;False;;;;1610306194;;False;{};gisewnt;False;t3_kujurp;False;False;t1_gisbt42;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisewnt/;1610347719;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"> this storm facing reddit can all be traced back to the existence of Karma Contests. - -So you're saying Eren is the storm that is approaching";False;False;;;;1610306201;;False;{};gisex56;False;t3_kujurp;False;False;t1_gisb1bh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisex56/;1610347726;27;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610306206;;False;{};gisexh4;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisexh4/;1610347731;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TurbTheCurb;;;[];;;;text;t2_eo71j;False;False;[];;Anime onlys will enjoy this episode but from a manga reader POV it was bungled;False;True;;comment score below threshold;;1610306206;;False;{};gisexhg;False;t3_kujurp;False;True;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisexhg/;1610347731;-42;True;False;anime;t5_2qh22;;0;[]; -[];;;Denzel_Potato09;;;[];;;;text;t2_5upv9a99;False;False;[];;Ouuu FLCL, haven't heard of that title in a while;False;False;;;;1610306214;;False;{};gisey0o;True;t3_kuk2nn;False;False;t1_gisd0yb;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gisey0o/;1610347739;1;True;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;"Eren was like: - -Thank you, falco and good bye.";False;False;;;;1610306228;;False;{};gisez0v;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisez0v/;1610347754;53;True;False;anime;t5_2qh22;;0;[]; -[];;;conqueringdragon;;;[];;;;text;t2_11nm5laj;False;False;[];;I;False;False;;;;1610306232;;False;{};gisezbi;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisezbi/;1610347758;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Prince-Dizzytoon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/princedizzytoon;light;text;t2_mu0df;False;False;[];;Eren got Reiner scared shitless;False;False;;;;1610306244;;False;{};gisf04n;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisf04n/;1610347771;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;Levi's fangirls are gone, they have jumped the Yeager wagon.;False;False;;;;1610306252;;False;{};gisf0rc;False;t3_kujurp;False;False;t1_gisdakp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisf0rc/;1610347780;33;True;False;anime;t5_2qh22;;0;[]; -[];;;SoMuchHatred;;;[];;;;text;t2_o15bh;False;False;[];;"If you mean when this particular set of episodes is ending, the sixteenth episode should come out around February 21st. But that won't be enough to actually finish the story of Attack on Titan and we're not currently sure if a ""Final Season Part 2"" will come out after that or if it'll be finished off in some kind of movie.";False;False;;;;1610306259;;False;{};gisf1b9;False;t3_kujurp;False;True;t1_gisebvi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisf1b9/;1610347788;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;"Stunning episode. Reiner's VA outstanding. The OST choices fit with the tension and the mood absoutely beautifully. - -Had goose bumps when XL-TT was playing and Falco came to the realisation that he'd been played by Eren all along. - -Dialogue was all spot on. Eren S4 is a very different man from Eren S1. Direction for the most part fantastic. Absolutely lived up the hype. The Attack Titan also looked evil AF. Far more threatening than it's depiction in the previous 3 seasons. - -Overall an outstanding episode. Let the games begin.";False;False;;;;1610306265;;False;{};gisf1np;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisf1np/;1610347794;8;True;False;anime;t5_2qh22;;0;[]; -[];;;vagabondeluxe;;;[];;;;text;t2_6xj8vlb9;False;False;[];;"Same! It’s so much more and the characters are so complex, and the story is original and as u said the visuals are so beautiful. - -S2 made me love Asuka so much, and also her relationship with Kumiko, so those two are my favorite characters";False;False;;;;1610306270;;False;{};gisf22c;False;t3_kuk2nn;False;False;t1_giseq5q;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gisf22c/;1610347800;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DJ_AW03;;;[];;;;text;t2_6a2u9w9l;False;True;[];;Guess his armor didn't extend to his heart 😔;False;False;;;;1610306276;;1610307557.0;{};gisf2fs;False;t3_kujurp;False;False;t1_gisb9rv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisf2fs/;1610347805;249;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;Right here? Right now?!;False;False;;;;1610306280;;False;{};gisf2qe;False;t3_kujurp;False;True;t1_gisals3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisf2qe/;1610347810;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;"Never thought I'd see something giving me as much chills as ""that day"" but here we are, - -10/10 episode.";False;False;;;;1610306295;;False;{};gisf3t6;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisf3t6/;1610347827;73;True;False;anime;t5_2qh22;;0;[]; -[];;;TSmasher1000;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_14sxjn;False;False;[];;Eren is a genius-ly written protagonist. He literally starts from being a screaming angry child to someone broken from war and betrayal and finally develops into a soldier that carries the weight of his people on his shoulders that will do anything to protect his people even if it means throwing himself against the weight of the world. It's amazing how Isayama has written him into what he is today in not only such a developed character but with such an artistic, yet realistic portrayal of how someone in his circumstance could develop.;False;False;;;;1610306299;;False;{};gisf43t;False;t3_kujurp;False;False;t1_giscf5k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisf43t/;1610347832;29;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;"That's not the panel u/H-K_47 was talking about, it's [later manga spoilers](/s ""Zeke's reaction to Willy wanting 'the extinction of all Eldians', with the hindsight of knowing what Zeke's plan is it's a nifty piece of foreshadowing"").";False;False;;;;1610306303;;False;{};gisf4fw;False;t3_kujurp;False;False;t1_giseisu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisf4fw/;1610347836;49;True;False;anime;t5_2qh22;;0;[]; -[];;;chandr;;;[];;;;text;t2_9ucfo;False;False;[];;I'm not seeing it up on either crunchyroll or funi yet, where's everyone watching?;False;False;;;;1610306305;;False;{};gisf4kc;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisf4kc/;1610347838;5;True;False;anime;t5_2qh22;;0;[]; -[];;;WolfPl0x;;;[];;;;text;t2_klsu8;False;False;[];;imagine linking to that delusional cesspool of a subreddit in an anime-only thread, cringe my dude;False;True;;comment score below threshold;;1610306306;;False;{};gisf4oe;False;t3_kujurp;False;True;t1_gisbanh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisf4oe/;1610347840;-14;True;False;anime;t5_2qh22;;0;[]; -[];;;SoulTea;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/SoulTea;light;text;t2_6by2x;False;False;[];;"I've never been so hyped for a show in my entire life! Eren has matured so much he's the greatest shounen MC I've ever seen. He actually develops so astoundingly as a character. Likewise you cannot hate Reiner as we all know he was just a kid when he was sent on his mission and just didn't know any better. I truly do feel bad for him. However his suffering isn't over yet! - -I've been rewatching it for the 3rd time now while it was on break and just got to S2 Eren battling Reiner. The first time I rewatched it S3 part 1 had just finished. The first few episodes of S4 expanded on foreshadowing from the first few EPs of S1. Isayama is GOAT status in writing. I've heard that he had learned storyboarding over drawing first which is why the art of the manga is rather poor in the earlier parts, but also why the story, foreshadowing, and all is out of this world. Sasuga Isayama. I'm not a manga reader either, I couldn't handle the wait it's already hard enough waiting for episodes! I've definitely joined the Pieck fanclub. - -Also, the soldier than Pieck was suspicious of...is that one of our original team? I was thinking Armin but he seems way too tall. Although with his newfound Titan ability...can he alter his height? Hmmm.";False;False;;;;1610306312;;False;{};gisf53y;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisf53y/;1610347846;91;True;False;anime;t5_2qh22;;0;[]; -[];;;14MySterY-;;;[];;;;text;t2_b3n4y;False;False;[];;Whose memories are these?;False;False;;;;1610306315;;False;{};gisf5c2;False;t3_kujurp;False;False;t1_gisahvw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisf5c2/;1610347850;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;True;[];;... for that is our curse.;False;False;;;;1610306322;;False;{};gisf5ur;False;t3_kujurp;False;False;t1_gise1ae;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisf5ur/;1610347857;27;True;False;anime;t5_2qh22;;0;[]; -[];;;Aura1661;;;[];;;;text;t2_15n2vi;False;False;[];;Eren is here and he isn't playing any games. Is the soldier who escorted the cart and claw titan Armin?;False;False;;;;1610306326;;False;{};gisf673;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisf673/;1610347862;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bertholts;;;[];;;;text;t2_uk9z6;False;False;[];;that entire last scene was soooooooo sexy;False;False;;;;1610306331;;False;{};gisf6kb;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisf6kb/;1610347868;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Aszbeeguy;;;[];;;;text;t2_8r8n7v52;False;False;[];;"1. A Place further than the Universe -2. Jojo's Bizzare Adventure -3. That time i got reincarnated as a slime -4. Violet Evergarden -5. I want to eat your pancreas/ land of the lustrous/ made in abyss/ a silent voice -Can't decide 5th";False;False;;;;1610306344;;False;{};gisf7fk;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gisf7fk/;1610347882;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Exodor54;;MAL;[];;http://myanimelist.net/animelist/Exodor;dark;text;t2_eex6z;False;False;[];;"It was a decent scene, but quite underwhelming and forgettable in the grand span of things such as, take it for example, the Reiner and Bertholdt scene which is iconic. The sound direction, and other parts, did not deliver as they should have. - -I very much enjoyed the epsiode, sound direction included, until the climax.";False;False;;;;1610306344;;False;{};gisf7ha;False;t3_kujurp;False;True;t1_gisee1s;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisf7ha/;1610347883;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Eren found what he said in the past to be too cringy lol;False;False;;;;1610306348;;1610307011.0;{};gisf7s9;False;t3_kujurp;False;False;t1_gisbyp5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisf7s9/;1610347887;526;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 2, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Shows the Silver Award... and that's it."", 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'icon_width': 512, 'id': 'gid_1', 'is_enabled': True, 'is_new': False, 'name': 'Silver', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;Xavier93;;;[];;;;text;t2_yg6ey;False;False;[];;"Willy Tybur: Guys don't worry, I got a plan. - -&#x200B; - -Willy Tybur left this world.";False;False;;;;1610306355;;False;{'gid_1': 2};gisf892;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisf892/;1610347894;1496;True;False;anime;t5_2qh22;;2;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610306380;;False;{};gisfa3b;False;t3_kujurp;False;True;t1_gisdy79;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfa3b/;1610347923;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;True;[];;Exactly, even if he chose an horrible way to die lol.;False;False;;;;1610306380;;False;{};gisfa4o;False;t3_kujurp;False;False;t1_gisb08f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfa4o/;1610347923;53;True;False;anime;t5_2qh22;;0;[]; -[];;;okbuddybutbruh;;;[];;;;text;t2_9ow7haip;False;False;[];;I predict 18k upvotes.;False;False;;;;1610306394;;False;{};gisfb56;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfb56/;1610347938;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Damarugaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Damarugaki/;light;text;t2_6zyxfkgg;False;False;[];;I'd die happily;False;False;;;;1610306395;;False;{};gisfb6u;False;t3_kujurp;False;False;t1_gisctsk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfb6u/;1610347940;18;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;I think episode 1 is the best handled so far, but hey that may be just me.;False;False;;;;1610306419;;False;{};gisfd06;False;t3_kujurp;False;False;t1_gisea0w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfd06/;1610347968;12;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;He's beyond the realm of simply seeing some shit;False;False;;;;1610306424;;False;{};gisfdbk;False;t3_kujurp;False;False;t1_gisd6cp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfdbk/;1610347972;20;True;False;anime;t5_2qh22;;0;[]; -[];;;josephdrybrough;;;[];;;;text;t2_9k5t8p9x;False;False;[];;Is episode 64 out?;False;False;;;;1610306429;;False;{};gisfdr0;False;t3_kujurp;False;True;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfdr0/;1610347979;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610306430;;False;{};gisfdsm;False;t3_kujurp;False;True;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfdsm/;1610347980;1;True;False;anime;t5_2qh22;;0;[]; -[];;;evermuzik;;;[];;;;text;t2_7c3eb;False;False;[];;Im gonna faint from nutting so hard.;False;False;;;;1610306435;;False;{};gisfe6b;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfe6b/;1610347986;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JackDockz;;;[];;;;text;t2_1wmsbygp;False;False;[];;Meh both played sides played each other.;False;False;;;;1610306439;;False;{};gisfehh;False;t3_kujurp;False;False;t1_gisb08f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfehh/;1610347991;12;True;False;anime;t5_2qh22;;0;[]; -[];;;HMP12;;;[];;;;text;t2_qbo9z;False;False;[];;It is the same for every anime, imagine a anime that doesn't have official release or 6 month late that have no thread is unfair. If a lot people watch episode they should have a thread to discuss.;False;False;;;;1610306440;;False;{};gisfei1;False;t3_kujurp;False;True;t1_giscp81;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfei1/;1610347991;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;Well he couldn't do it. Might as well ask someone who has a reason to.;False;False;;;;1610306440;;False;{};gisfei7;False;t3_kujurp;False;False;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfei7/;1610347991;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;AND WITH THAT, EREN'S YEAGER'S [MAL CHARACTER PAGE](https://myanimelist.net/character/40882/Eren_Yeager) NUMBERS ARE ABOUT TO EXPLODE. IT KEEPS RISING AND MOVING FORWARD!;False;False;;;;1610306450;;False;{};gisff7c;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisff7c/;1610348002;5;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;I wonder when Eren's gonna come on the Joe Rogan podcast;False;False;;;;1610306461;;False;{};gisfg3d;False;t3_kujurp;False;False;t1_gisb0e6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfg3d/;1610348015;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Kind_Yandere;;;[];;;;text;t2_84f2s429;False;False;[];;I remember that! It was in the trailer right? I saw it just a few days before Season 4 started airing.;False;False;;;;1610306462;;False;{};gisfg65;False;t3_kujurp;False;False;t1_gise9wz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfg65/;1610348016;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;As expected of Isayama.;False;False;;;;1610306471;;False;{};gisfgrb;False;t3_kujurp;False;False;t1_gisb4s7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfgrb/;1610348025;418;True;False;anime;t5_2qh22;;0;[]; -[];;;DJ_AW03;;;[];;;;text;t2_6a2u9w9l;False;True;[];;*See* falco, this is why you don't talk to strangers;False;False;;;;1610306473;;1610306678.0;{};gisfgx0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfgx0/;1610348028;578;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;IT WAS SO WELL DONE SASUGA MAPPA;False;False;;;;1610306482;;False;{};gisfhju;False;t3_kujurp;False;False;t1_gisdhr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfhju/;1610348037;23;True;False;anime;t5_2qh22;;0;[]; -[];;;ikilolohdxp1;;;[];;;;text;t2_2hxdd5dv;False;False;[];;Man, this is too good. Might have too read the manga...;False;False;;;;1610306485;;False;{};gisfhsp;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfhsp/;1610348041;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Xavier93;;;[];;;;text;t2_yg6ey;False;False;[];;I think the original quote would fit better in this scene than in the original!;False;False;;;;1610306488;;False;{};gisfhy3;False;t3_kujurp;False;False;t1_giscm2y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfhy3/;1610348044;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;Yeah that's really all that matters. I mean, I would have liked it better, but as long as it works for the anime onlies.;False;False;;;;1610306497;;False;{};gisfin1;False;t3_kujurp;False;True;t1_gisexhg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfin1/;1610348055;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;"You know you've gone full villain when you start giving out the ""You and I are the same"" speech.";False;False;;;;1610306499;;False;{};gisfit0;False;t3_kujurp;False;False;t1_gisadji;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfit0/;1610348058;29;True;False;anime;t5_2qh22;;0;[]; -[];;;Slifer13xx;;MAL;[];;http://myanimelist.net/animelist/Slifer13xx;dark;text;t2_irntz;False;False;[];;Wrong answer, Willy. Wrong answer.;False;False;;;;1610306500;;False;{};gisfiuq;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfiuq/;1610348058;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;"It's gonna be 16 episodes and then there might be a movie or a part 2, so that just would elongate your wait. I'd say just binge all the content so far and hop on with everyone here - ->read the manga for a bit but got annoyed waiting for chapters to come out weekly - - Understandable, It was monthly, waiting for a new chapter can be a pain";False;False;;;;1610306508;;False;{};gisfjfg;False;t3_kujurp;False;True;t1_gisebvi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfjfg/;1610348068;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Chukonoku;;;[];;;;text;t2_85br9;False;False;[];;All according to ~~keikaku~~ PATHS;False;False;;;;1610306511;;False;{};gisfjn8;False;t3_kujurp;False;False;t1_gisbbwg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfjn8/;1610348071;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Lapiz_lasuli;;;[];;;;text;t2_ammk071;False;False;[];;We don't have enough shit nor fans for this.;False;False;;;;1610306521;;False;{};gisfkaq;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfkaq/;1610348081;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Crisisofland;;;[];;;;text;t2_7jhkdpjn;False;False;[];;What. The. Fuck.;False;False;;;;1610306525;;False;{};gisfklp;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfklp/;1610348086;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;Stranger danger!;False;False;;;;1610306527;;False;{};gisfkst;False;t3_kujurp;False;False;t1_gisfgx0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfkst/;1610348088;41;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;Damn Eldian scum.;False;False;;;;1610306527;;False;{};gisfkt0;False;t3_kujurp;False;False;t1_gisbgr0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfkt0/;1610348088;771;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;Well time to put him as favorite on his [MAL character page](https://myanimelist.net/character/40882/Eren_Yeager) now. He will soon reign there as well.;False;False;;;;1610306528;;False;{};gisfkty;False;t3_kujurp;False;False;t1_gisahuh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfkty/;1610348088;11;True;False;anime;t5_2qh22;;0;[]; -[];;;kingwhocares;;;[];;;;text;t2_xrwt8;False;False;[];;You know its not his first playthrough when he is naked and not wearing any armour.;False;False;;;;1610306535;;False;{};gisflcp;False;t3_kujurp;False;False;t1_gisax64;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisflcp/;1610348096;21;True;False;anime;t5_2qh22;;0;[]; -[];;;dkzenzuri;;;[];;;;text;t2_eg7qxv6;False;False;[];;"Eren commit war crimes: its fair - -RBA commit war crimes: unforgivable";False;False;;;;1610306547;;False;{};gisfm65;False;t3_kujurp;False;False;t1_gisdmla;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfm65/;1610348108;24;True;False;anime;t5_2qh22;;0;[]; -[];;;array_of_dots;;;[];;;;text;t2_r3omp65;False;False;[];;So we finally know why paradis is called paradis despite being hellish.;False;False;;;;1610306551;;False;{};gisfmgu;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfmgu/;1610348114;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"**2 weeks later** - ->Open clothes drawers - ->Find LevixErwin fanfic - ->Scold mom even though she claims innocence - -OP's dad: *Breathes a sigh of relief.* - -[](#notlewd)";False;False;;;;1610306556;;False;{};gisfmsu;False;t3_kujurp;False;False;t1_gisehpt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfmsu/;1610348119;73;True;False;anime;t5_2qh22;;0;[]; -[];;;NoDespair;;;[];;;;text;t2_11h1e0;False;False;[];;Was expecting a flashback during the Tybur story time;False;False;;;;1610306563;;False;{};gisfn9n;False;t3_kujurp;False;True;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfn9n/;1610348125;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hanschranz;;;[];;;;text;t2_n2aj9;False;False;[];;"This episode, along with [that one episode on season 3 where](/s ""they are debating for an entire episode on who should receive the titan serum between Armin and Erwin, without any music playing in the background"") was an absolute highlight of tension it's insane.";False;False;;;;1610306573;;False;{};gisfo09;False;t3_kujurp;False;False;t1_gisc1bn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfo09/;1610348136;500;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;Yeah, literally. He also took part in the middle east war.;False;False;;;;1610306574;;False;{};gisfo3t;False;t3_kujurp;False;False;t1_gisd6cp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfo3t/;1610348138;8;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;To be honest ep4 was amazing as well but nothing like ep5, I mean it was one of the best episodes of AoT and Willy's speech was amazing. Reiner and Eren's VA did a phenomenal job, so overall I am pretty happy with how things turned out.;False;False;;;;1610306574;;False;{};gisfo55;False;t3_kujurp;False;True;t1_gisfd06;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfo55/;1610348139;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;His kindness bit him back;False;False;;;;1610306595;;False;{};gisfpmc;False;t3_kujurp;False;False;t1_gise9k9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfpmc/;1610348162;146;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 80, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Everything is better with a good hug', 'end_date': None, 'giver_coin_reward': 0, 'icon_format': 'PNG', 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png', 'icon_width': 2048, 'id': 'award_8352bdff-3e03-4189-8a08-82501dd8f835', 'is_enabled': True, 'is_new': False, 'name': 'Hugz', 'penny_donate': 0, 'penny_price': 0, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16&height=16&auto=webp&s=69997ace3ef4ffc099b81d774c2c8f1530602875', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32&height=32&auto=webp&s=e9519d1999ef9dce5c8a9f59369cb92f52d95319', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48&height=48&auto=webp&s=f076c6434fb2d2f9075991810fd845c40fa73fc6', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64&height=64&auto=webp&s=85527145e0c4b754306a30df29e584fd16187636', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128&height=128&auto=webp&s=b8843cdf82c3b741d7af057c14076dcd2621e811', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16&height=16&auto=webp&s=69997ace3ef4ffc099b81d774c2c8f1530602875', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32&height=32&auto=webp&s=e9519d1999ef9dce5c8a9f59369cb92f52d95319', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48&height=48&auto=webp&s=f076c6434fb2d2f9075991810fd845c40fa73fc6', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64&height=64&auto=webp&s=85527145e0c4b754306a30df29e584fd16187636', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128&height=128&auto=webp&s=b8843cdf82c3b741d7af057c14076dcd2621e811', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;True;[];;And again, it's in a basement!;False;False;;;;1610306603;;False;{};gisfq6x;False;t3_kujurp;False;False;t1_gisau1z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfq6x/;1610348170;891;True;False;anime;t5_2qh22;;1;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;OH MY GOOD. THIS WAS WORTH THE HYPE. HOLY SHIIIIT. I get what the king tried to do but I still fucking hate him. The past Eldians were shit but that doesn't give him the right to leave his people behind to be mistreated by the Marleyans and other races. Giving Marleyans victory and this dumb fuck thought the Tybur family would keep the Eldians safe. Fuck this guy. The sheer number of Eldians and restorationist turned into Titans by Marleyans is wayy too much. Also if they knew Eldians inside the walls wouldn't be a threat, why the fuck did they attack?;False;False;;;;1610306604;;False;{};gisfqbi;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfqbi/;1610348173;14;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;That entire stage play that he produced was insane too!;False;False;;;;1610306612;;False;{};gisfqw0;False;t3_kujurp;False;False;t1_gisaldb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfqw0/;1610348184;10;True;False;anime;t5_2qh22;;0;[]; -[];;;mythriz;;;[];;;;text;t2_d37v0;False;False;[];;Huh is that true *checks* Wakanim in Norway still doesn't have the new episode either, oh well too bad, thought I could watch it there instead.;False;False;;;;1610306624;;False;{};gisfrq7;False;t3_kujurp;False;True;t1_gisann9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfrq7/;1610348196;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"As it always should've been. - -A solid adaptation and we get the greatest conclusion to any season/arc of an anime ever.";False;False;;;;1610306629;;False;{};gisfs3y;False;t3_kujurp;False;False;t1_gisamcu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfs3y/;1610348202;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dat_momo_again;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DatMomoAgain ;light;text;t2_1cd7onl2;False;False;[];;Voice acting and ost was really fucking good. I would've liked a more impactful soundtrack during eren's transformation but honestly this entire play was so great I'm not even mad.;False;False;;;;1610306629;;False;{};gisfs5p;False;t3_kujurp;False;False;t1_gisbw5o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfs5p/;1610348203;14;True;False;anime;t5_2qh22;;0;[]; -[];;;snowhawk1994;;;[];;;;text;t2_ilpcp;False;False;[];;I waited the entire episode for Eren to go rampage and then the episode ended at the worst possible time (should have expected that).;False;False;;;;1610306637;;False;{};gisfspq;False;t3_kujurp;False;False;t1_gisbj8o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfspq/;1610348211;168;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;So does that mean he isn't the Warhammer Titan after all?;False;False;;;;1610306646;;False;{};gisftec;False;t3_kujurp;False;False;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisftec/;1610348222;25;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;That's... That's a lotta money;False;False;;;;1610306655;;False;{};gisfu1r;False;t3_kujurp;False;True;t1_gisbqxz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfu1r/;1610348232;2;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;Can't blame him. Dude has been through too much. Sucks for Falco. Poor kid;False;False;;;;1610306658;;False;{};gisfubl;False;t3_kujurp;False;False;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfubl/;1610348236;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Denzel_Potato09;;;[];;;;text;t2_5upv9a99;False;False;[];;"You can't go wrong with Asuka x Kumiko. - -I love how the anime developed Asuka and Kumiko's relationship, Asuka slowly became Kumiko's Onee-chan since Kumiko's real sister left the household to become independent, but when Asuka graduated and Kumiko said she feels lonely, I was crying so much...";False;False;;;;1610306658;;False;{};gisfubo;True;t3_kuk2nn;False;True;t1_gisf22c;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gisfubo/;1610348236;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Joulesismybetterhalf;;;[];;;;text;t2_bfj85;False;False;[];;The episode isn't showing up for me on either crunchyroll or funimation. Where the heck are y'all watching this?;False;False;;;;1610306664;;False;{};gisfus0;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfus0/;1610348243;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;The amount of anime-onlies who will become manga readers might increase after this episode;False;False;;;;1610306676;;False;{};gisfvmg;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfvmg/;1610348256;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"[So you're saying Magath could have been waiting for Eren to eat his Willy?](https://i.imgur.com/bZccexF.jpg) - -[](#fujostare)";False;False;;;;1610306679;;False;{};gisfvt9;False;t3_kujurp;False;False;t1_gisb08f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfvt9/;1610348259;216;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610306680;;False;{};gisfvxe;False;t3_kujurp;False;True;t1_gisdu1d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfvxe/;1610348262;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;either they already saw the raws, sailed the seas (fansubs) or watched it on wakanim;False;False;;;;1610306682;;False;{};gisfw2u;False;t3_kujurp;False;True;t1_gisf4kc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfw2u/;1610348264;3;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;Isayama foreshadowed 2021 confirmed;False;False;;;;1610306683;;False;{};gisfw6q;False;t3_kujurp;False;False;t1_giscq7t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfw6q/;1610348266;30;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;And it wasn't the shield hero;False;False;;;;1610306697;;False;{};gisfx69;False;t3_kujurp;False;False;t1_gise1ae;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfx69/;1610348281;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Chukonoku;;;[];;;;text;t2_85br9;False;False;[];;"The equivalent to the ""Independence day's"" speech. It's just that in this case, the ""aliens"" were ready to bomb the hell out of them.";False;False;;;;1610306712;;False;{};gisfy8u;False;t3_kujurp;False;False;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfy8u/;1610348298;7;True;False;anime;t5_2qh22;;0;[]; -[];;;TheSkywarriorg2;;;[];;;;text;t2_xlem9ur;False;False;[];;AHHHHHHHHHHHHHHHH AAWWWWWWWW AHHHHHHHHH;False;False;;;;1610306719;;False;{};gisfyse;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisfyse/;1610348306;2;True;False;anime;t5_2qh22;;0;[]; -[];;;arafatnabi;;;[];;;;text;t2_ghvya;False;False;[];;The fan sub is out on illegal sites;False;False;;;;1610306740;;False;{};gisg0b6;False;t3_kujurp;False;True;t1_gisfus0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisg0b6/;1610348328;3;True;False;anime;t5_2qh22;;0;[]; -[];;;snowhawk1994;;;[];;;;text;t2_ilpcp;False;False;[];;well if you want to declare war on someone clearly stronger than you are you can expect to get f\*\*\*\*\*, what you don't expect is for it be at the same moment you declare the said war.;False;False;;;;1610306742;;False;{};gisg0fs;False;t3_kujurp;False;False;t1_gisb9xy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisg0fs/;1610348330;27;True;False;anime;t5_2qh22;;0;[]; -[];;;aarthbhardwaj;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Aarth_Bhardwaj;light;text;t2_5kdsi0g;False;False;[];;The fandom is there for that.;False;False;;;;1610306747;;False;{};gisg0s4;False;t3_kujurp;False;False;t1_gisdgjm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisg0s4/;1610348335;17;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;They're cultured;False;False;;;;1610306753;;False;{};gisg17q;False;t3_kujurp;False;False;t1_giseulo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisg17q/;1610348342;118;True;False;anime;t5_2qh22;;0;[]; -[];;;RockoDyne;;MAL;[];;https://myanimelist.net/profile/RockoDyne;dark;text;t2_g4ooj;False;False;[];;You never seen an animal's eyes reflect light in the dark?;False;False;;;;1610306776;;False;{};gisg2vb;False;t3_kukbld;False;True;t3_kukbld;/r/anime/comments/kukbld/what_is_the_originsignificance_of_a_single/gisg2vb/;1610348367;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuck_Taha_Emre;;;[];;;;text;t2_7zgvwi1l;False;False;[];;Reiner's PTSD was strong with this one;False;False;;;;1610306791;;False;{};gisg3xm;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisg3xm/;1610348382;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ZackDB201;;;[];;;;text;t2_1sxfbwvn;False;False;[];;it'll be up in about and an hour and a half;False;False;;;;1610306800;;False;{};gisg4kg;False;t3_kujurp;False;False;t1_gisf4kc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisg4kg/;1610348393;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NoDespair;;;[];;;;text;t2_11h1e0;False;False;[];;Let's never forget that Marley was the one that declared war on Paradis without even attempting diplomacy;False;False;;;;1610306801;;False;{};gisg4oi;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisg4oi/;1610348395;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sstizzle;;;[];;;;text;t2_e9qm7;False;False;[];;Glad you love the episode! Just curious as a manga reader here where you’d rank this episode among your favorites - where would it land? This was a super hyped moment in the manga so excited to see how newbies feel it stacks up;False;False;;;;1610306804;;False;{};gisg4ua;False;t3_kujurp;False;False;t1_gisf53y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisg4ua/;1610348397;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Bayart;;;[];;;;text;t2_fjfyt;False;False;[];;Such terrific fan art. It looks like a Takehiko Inoue take on SnK.;False;False;;;;1610306806;;False;{};gisg50x;False;t3_kujurp;False;False;t1_gisc9qx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisg50x/;1610348400;25;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;It's like finding your YouTube videos from when you were 13;False;False;;;;1610306815;;False;{};gisg5pr;False;t3_kujurp;False;False;t1_gisf7s9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisg5pr/;1610348410;307;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;"Prob at Wakanim and other official websites. I’m also surprised that this thread has opened before Crunchyroll drop the episode. -Edit : okay, the other person just explained";False;False;;;;1610306816;;False;{};gisg5s7;False;t3_kujurp;False;True;t1_gisfus0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisg5s7/;1610348412;3;True;False;anime;t5_2qh22;;0;[]; -[];;;snowhawk1994;;;[];;;;text;t2_ilpcp;False;False;[];;not more than the ones who get killed by Marley on a daily/minutely basis;False;False;;;;1610306820;;False;{};gisg62o;False;t3_kujurp;False;False;t1_gisc83j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisg62o/;1610348417;4;True;False;anime;t5_2qh22;;0;[]; -[];;;vagabondeluxe;;;[];;;;text;t2_6xj8vlb9;False;False;[];;Same!! When In the end Asuka gave Kumiko the note with ‘Sound! Euphonium!!’ Written there, made me so emotional! I couldn’t stop crying during the last episode;False;False;;;;1610306836;;False;{};gisg78x;False;t3_kuk2nn;False;True;t1_gisfubo;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gisg78x/;1610348436;1;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;I thought everything pre-basement has always been military focused, though I can understand why some people are disappointed by the basement reveal. But most of those people eventually came around when they realized how the basement reveal paved the way for the best parts of the series.;False;False;;;;1610306837;;False;{};gisg7bk;False;t3_kujurp;False;False;t1_gisbw9m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisg7bk/;1610348438;79;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;They always ask who's Reiner but not how's Reiner 😔;False;False;;;;1610306839;;False;{};gisg7fv;False;t3_kujurp;False;False;t1_gisf2fs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisg7fv/;1610348440;34;True;False;anime;t5_2qh22;;0;[]; -[];;;Dat_momo_again;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DatMomoAgain ;light;text;t2_1cd7onl2;False;False;[];;Yup great scene transition;False;False;;;;1610306841;;False;{};gisg7ka;False;t3_kujurp;False;False;t1_gisbr5v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisg7ka/;1610348442;37;True;False;anime;t5_2qh22;;0;[]; -[];;;kingwhocares;;;[];;;;text;t2_xrwt8;False;False;[];;"> He has changed. For better or for worse, that remains to be seen. - - -Given he is about to massacre a bunch of civilians and start a world war, it's worse.";False;False;;;;1610306843;;False;{};gisg7oo;False;t3_kujurp;False;True;t1_gisak3a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisg7oo/;1610348444;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SLeepEasyBreezy;;;[];;;;text;t2_4tpzis2k;False;False;[];;I can see that working for Franky, given his unique body, but not so much for other anime.;False;False;;;;1610306844;;False;{};gisg7rt;True;t3_kukbld;False;False;t1_gisd3ps;/r/anime/comments/kukbld/what_is_the_originsignificance_of_a_single/gisg7rt/;1610348445;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Aizenchair-sama;;;[];;;;text;t2_1l97otho;False;False;[];;"Youseebiggirl version - - -https://youtu.be/ppMTi7v9UdI";False;True;;comment score below threshold;;1610306860;;False;{};gisg8yi;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisg8yi/;1610348465;-14;True;False;anime;t5_2qh22;;0;[]; -[];;;arafatnabi;;;[];;;;text;t2_ghvya;False;False;[];;Ironic how the only person who understood Reiner's pain was the enemy he betrayed. Thats why Reiner bursted into tears because someone finally understood the suffering he was going through.;False;False;;;;1610306862;;False;{};gisg94g;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisg94g/;1610348468;9;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;Basement is the best char in anime;False;False;;;;1610306870;;False;{};gisg9of;False;t3_kujurp;False;False;t1_gisfq6x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisg9of/;1610348476;363;True;False;anime;t5_2qh22;;0;[]; -[];;;woancue;;;[];;;;text;t2_121itc;False;False;[];;let's say, hypothetically, that i keep moving forward until all my enemies are destroyed;False;False;;;;1610306872;;False;{};gisg9ty;False;t3_kujurp;False;False;t1_gisb0e6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisg9ty/;1610348479;601;True;False;anime;t5_2qh22;;0;[]; -[];;;ZackDB201;;;[];;;;text;t2_1sxfbwvn;False;False;[];;He was smashed in half so yeah;False;False;;;;1610306873;;False;{};gisg9uu;False;t3_kujurp;False;True;t1_gisevcp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisg9uu/;1610348479;2;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;Absolutely gave me shivers;False;False;;;;1610306876;;False;{};gisga2a;False;t3_kujurp;False;False;t1_gisai6n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisga2a/;1610348482;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"Eren supremacy has begun! - -QUICK! MAKE HIM [YOUR FAVORITE](https://myanimelist.net/character/40882/Eren_Yeager) NOW!";False;False;;;;1610306883;;False;{};gisgal2;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgal2/;1610348490;4;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;Willy's VA was phenomenal too;False;False;;;;1610306890;;False;{};gisgb3i;False;t3_kujurp;False;False;t1_gisb781;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgb3i/;1610348498;42;True;False;anime;t5_2qh22;;0;[]; -[];;;SoulTea;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/SoulTea;light;text;t2_6by2x;False;False;[];;The guy getting absolutely decimated by a giant rock after Eren's transformation made me lose my shit, I missed it the first time!;False;False;;;;1610306891;;False;{};gisgb6n;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgb6n/;1610348500;4;True;False;anime;t5_2qh22;;0;[]; -[];;;JapanPhoenix;;;[];;;;text;t2_u4vl7;False;False;[];;"Nobody decides when these threads are uploaded it's all automated, but the official streaming services (like Crunchyroll) doesn't have an API that the bot can access so there is no way to automate the posting of these threads based on official sources. - -AFAIK the way AutoLovepon works is that bot scrapes the torrent trackers used by the biggest release groups and when it sees any given episode being released for the first time it automatically posts the thread, since most ""fansubs"" nowadays are just rips from the official sites that means the thread is posted shortly after the official release like clockwork every week. - -But AoT is big enough that one of the *actual* fansubbing groups came out of retirement just to sub it, and with the long delay between the JP release and the official subs this means they are releasing their fansub long before the official one is posted (which triggers the bot to post the discussion thread). - -#TL;DR -The AoT discussion threads are posted the exact same way as every other discussion thread, it's just one of the few Animes big enough to get an real fansubbing group actually translating it.";False;False;;;;1610306892;;False;{};gisgb7b;False;t3_kujurp;False;False;t1_gisabvk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgb7b/;1610348500;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Spiceyhedgehog;;;[];;;;text;t2_143wk0;False;False;[];;I believe he refers to Eren's ability to keep calm and not rage scream about everything.;False;False;;;;1610306907;;False;{};gisgc8y;False;t3_kujurp;False;False;t1_giseafh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgc8y/;1610348516;17;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610306910;;1610343862.0;{};gisgcj1;False;t3_kujurp;False;False;t1_gisfqbi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgcj1/;1610348520;18;False;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;All Wakanim services except Wakanim Nordic get it at that time.;False;False;;;;1610306912;;False;{};gisgcoe;False;t3_kujurp;False;False;t1_gisdx5p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgcoe/;1610348523;5;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;Ordinary people like his mom died so it's only fair;False;True;;comment score below threshold;;1610306915;;False;{};gisgcxz;False;t3_kujurp;False;False;t1_gisaxz3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgcxz/;1610348527;-25;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;"He doesn't need to worry lol, next episode he probably will respawn in the festival or any other checkpoint and will prevent this tragedy from happening. - -Woah wait, wrong anime xD";False;False;;;;1610306924;;False;{};gisgdk6;False;t3_kujurp;False;False;t1_gisbgr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgdk6/;1610348537;74;True;False;anime;t5_2qh22;;0;[]; -[];;;IEID;;;[];;;;text;t2_16zfzq;False;False;[];;2 more hours bois;False;False;;;;1610306930;;False;{};gisge00;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisge00/;1610348544;2;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;Animation, voice acting, everything. Delicious;False;False;;;;1610306932;;False;{};gisge5k;False;t3_kujurp;False;False;t1_gisamk0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisge5k/;1610348546;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Xavier93;;;[];;;;text;t2_yg6ey;False;False;[];;Manga reader here. Felt the same.;False;False;;;;1610306940;;False;{};gisgeti;False;t3_kujurp;False;False;t1_gisbw9m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgeti/;1610348557;7;True;False;anime;t5_2qh22;;0;[]; -[];;;JackC747;;;[];;;;text;t2_1wl1mk6n;False;False;[];;"Death Note: ""Am I a joke to you?""";False;False;;;;1610306949;;False;{};gisgffp;False;t3_kujurp;False;False;t1_gisehmo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgffp/;1610348566;27;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;Dont be sorry, i almost misunderstood his sentence too;False;False;;;;1610306950;;False;{};gisgfku;False;t3_kujurp;False;True;t1_giseizi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgfku/;1610348569;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuck_Taha_Emre;;;[];;;;text;t2_7zgvwi1l;False;False;[];;I think he cheated. Chances of Eren being that lucky is only 1 in 177 billion. Smh. Youtubers these days will do anything to get views.;False;False;;;;1610306959;;False;{};gisgg6f;False;t3_kujurp;False;False;t1_gisax64;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgg6f/;1610348579;27;True;False;anime;t5_2qh22;;0;[]; -[];;;unaviable;;;[];;;;text;t2_1o4qd3;False;True;[];;The music was so fucking good and did justice to the speech and eren reiner talk. Can't wait for next episode and by the looks of it, it will be most likely 2d!;False;False;;;;1610306960;;False;{};gisgg79;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgg79/;1610348579;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dxoxud0814;;;[];;;;text;t2_66erfb7e;False;False;[];;Where can i watch this for free?;False;False;;;;1610306965;;False;{};gisggng;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisggng/;1610348586;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;Eren: Shit it was that easy?;False;False;;;;1610306973;;False;{};gisgh7o;False;t3_kujurp;False;False;t1_gisd4fo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgh7o/;1610348594;15;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;Isayama created him to suffer;False;False;;;;1610306987;;False;{};gisgi6m;False;t3_kujurp;False;False;t1_gisdpnw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgi6m/;1610348609;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Shorter4llele;;MAL;[];;https://myanimelist.net/profile/Shorter4llele;dark;text;t2_r12j0;False;False;[];;Looks like inheriting the Colossal Titan blesses you with a growth spurt, it's crazy how Armin seems to have changed. Assuming it really *is* him;False;False;;;;1610306988;;False;{};gisgi8j;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgi8j/;1610348609;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CO_ORDINATE;;;[];;;;text;t2_kf9hyuw;False;False;[];;i was here!;False;False;;;;1610306992;;False;{};gisgij4;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgij4/;1610348614;2;True;False;anime;t5_2qh22;;0;[]; -[];;;snowhawk1994;;;[];;;;text;t2_ilpcp;False;False;[];;I haven't read the manga but I somehow hope that he brought a lot of titans from the island over and we will just have a reverse episode 1 next week.;False;False;;;;1610306999;;False;{};gisgj3t;False;t3_kujurp;False;False;t1_gisaa7a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgj3t/;1610348622;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kinjo-;;;[];;;;text;t2_1prfc8t0;False;True;[];;Every episode truly is better than the last, so it's okay, keep moving forward.;False;False;;;;1610307002;;False;{};gisgjaf;False;t3_kujurp;False;False;t1_gisbinb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgjaf/;1610348625;34;True;False;anime;t5_2qh22;;0;[]; -[];;;UnPhayzable;;;[];;;;text;t2_jiltt;False;False;[];;Eren: You can have that, I'm gonna have this;False;False;;;;1610307006;;False;{};gisgjma;False;t3_kujurp;False;False;t1_gisar3t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgjma/;1610348629;14;True;False;anime;t5_2qh22;;0;[]; -[];;;aarthbhardwaj;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Aarth_Bhardwaj;light;text;t2_5kdsi0g;False;False;[];;I feel like Isayama raised the bar too high with the previous 3 arcs. So far the only chapters which have met it for me are 130, 131 and 134.;False;False;;;;1610307011;;False;{};gisgk0d;False;t3_kujurp;False;False;t1_gisdnha;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgk0d/;1610348635;5;True;False;anime;t5_2qh22;;0;[]; -[];;;RekklesCami;;;[];;;;text;t2_3ozyz0ye;False;False;[];;">“ Oh, did I say that? Please, forget I said that.” - -As he scratches his ear";False;False;;;;1610307014;;False;{};gisgk85;False;t3_kujurp;False;False;t1_gisbyp5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgk85/;1610348639;28;True;False;anime;t5_2qh22;;0;[]; -[];;;kingwhocares;;;[];;;;text;t2_xrwt8;False;False;[];;The Tanya move.;False;False;;;;1610307015;;False;{};gisgkax;False;t3_kujurp;False;False;t1_gisb9xy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgkax/;1610348640;59;True;False;anime;t5_2qh22;;0;[]; -[];;;Hype_Boi;;;[];;;;text;t2_nkl00;False;False;[];;Uhh are people able to watch this episode yet? It doesn't seem to be out on Hulu, Funimation, or Crunchyroll for me yet.;False;False;;;;1610307033;;False;{};gisglkw;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisglkw/;1610348660;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;Elsewhere.;False;False;;;;1610307041;;False;{};gisgm6i;False;t3_kujurp;False;False;t1_gisf4kc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgm6i/;1610348669;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FutureSage;;;[];;;;text;t2_7jrslhi;False;False;[];;"Willy: “this is a Declaration of War.” - -Eren: “haha, Attack Titan go RAWR xD”";False;False;;;;1610307042;;False;{};gisgmby;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgmby/;1610348671;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BrunoSaurio;;;[];;;;text;t2_f6wy2;False;False;[];;This is why Eren is the most hyped protagonist coming to this season.;False;False;;;;1610307050;;False;{};gisgmw9;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgmw9/;1610348680;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;That he was. I should've mentioned that as well. Thanks for the reminder.;False;False;;;;1610307057;;False;{};gisgnet;False;t3_kujurp;False;False;t1_gisgb3i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgnet/;1610348687;10;True;False;anime;t5_2qh22;;0;[]; -[];;;collax974;;;[];;;;text;t2_374uf9;False;False;[];;Overall a good episode but the climax was kinda underwhelming.;False;False;;;;1610307064;;False;{};gisgnul;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgnul/;1610348694;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Kinderschlager;;;[];;;;text;t2_ci58c;False;False;[];;and hour in and still cant watch it. what gives crunchyroll?!;False;False;;;;1610307069;;False;{};gisgo8q;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgo8q/;1610348700;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wolfsocean;;;[];;;;text;t2_io8r7;False;False;[];;Why isn't the episode up yet?!;False;False;;;;1610307073;;False;{};gisgohm;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgohm/;1610348703;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;It's because the sub posts discussion threads whenever the first *English* release is available, which is DameDesuYo's fansubs for this show. This issue was brought up on the meta thread last month by me and a few others, but the answer was [it's probably not changing and it's just unfortunate that it's happening with a show as popular as AOT](https://old.reddit.com/r/anime/comments/k7iqzn/meta_thread_month_of_december_06_2020/gh92tep/).;False;False;;;;1610307074;;False;{};gisgok3;False;t3_kujurp;False;False;t1_gisg5s7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgok3/;1610348704;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dxoxud0814;;;[];;;;text;t2_66erfb7e;False;False;[];;Where were you able to watch it?;False;False;;;;1610307076;;False;{};gisgor6;False;t3_kujurp;False;True;t1_gisgi8j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgor6/;1610348708;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610307079;;False;{};gisgow9;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgow9/;1610348710;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lemon1412;;;[];;;;text;t2_3m3p3;False;True;[];;Is it? My feelings are very conflicted.;False;False;;;;1610307079;;False;{};gisgowd;False;t3_kujurp;False;False;t1_gisd4wn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgowd/;1610348710;111;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;"""Across the ocean, inside the walls, they are the same"" Beautiful line that signifies Eren's development as a character. - -First, he saw the world as black and white, they will kill the titans and achieve their dream of an ideal. - -Then when the basement hit him, it changed him as a person, the titans he despised so much were once humans who had dreams similar to him. - -Now, he finally spent time under the ""enemy's roof"", he realized everyone is the same, but he has no choice, but to push forward, to look beyond. - -Such masterful writing, I love it.";False;False;;;;1610307082;;False;{};gisgp6a;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgp6a/;1610348715;420;True;False;anime;t5_2qh22;;0;[]; -[];;;Aerys12;;;[];;;;text;t2_lmvdi;False;False;[];;In the seven seas;False;False;;;;1610307087;;False;{};gisgpkk;False;t3_kujurp;False;False;t1_gisfus0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgpkk/;1610348721;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lapiz_lasuli;;;[];;;;text;t2_ammk071;False;False;[];;Well... What's left of it anyway.;False;False;;;;1610307088;;False;{};gisgpmg;False;t3_kujurp;False;False;t1_giscjc4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgpmg/;1610348722;8;True;False;anime;t5_2qh22;;0;[]; -[];;;LordUncleBob;;;[];;;;text;t2_ckedm;False;False;[];;where's the episode? Not showing up on either Crunchyroll or Funimation.;False;False;;;;1610307097;;False;{};gisgqa8;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgqa8/;1610348732;5;True;False;anime;t5_2qh22;;0;[]; -[];;;su_deep9;;;[];;;;text;t2_4iot03sj;False;False;[];;Never been hyped for any epsiode like this mm What an amazing build-up fot the next epsiode. It's gonna be fucking crazy..I feel like crying because it's so good;False;False;;;;1610307099;;False;{};gisgqdh;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgqdh/;1610348733;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;[Sometimes it really do be like that](https://i.imgur.com/mg6FdvD.png);False;False;;;;1610307100;;False;{};gisgqi1;False;t3_kujurp;False;False;t1_gisea3w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgqi1/;1610348735;28;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacksoncic;;;[];;;;text;t2_386mmpr4;False;False;[];;Holy shit;False;False;;;;1610307102;;False;{};gisgqn4;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgqn4/;1610348738;7;True;False;anime;t5_2qh22;;0;[]; -[];;;yachi100;;;[];;;;text;t2_3crjo0im;False;False;[];;"Gotta feel bad for my boy Reiner. The guy just never gets to rest. - -The parallels between Eren ane Reiner are absolutely insane, have been waiting for this chapter to get animated for so long and it truly didn't disappoint. What else am i supposed to say other than that THIS IS CRAZY, INSANE, AND WE ARE ALL HERE TO EXPERIENCE THIS ABSOLUTE TREASURE. LET ME REMIND YOU GUYS THAT FROM THIS EPISODE ONWARDS, EVERY SINGLE EPISODE IS GOING TO BE MIND-BLOWING. - -THEY ABSOLUTELY NAILED IT THIS WEEK, CHILLS ALL THROUGHOUT MY BODY!!!!!!!!!";False;False;;;;1610307103;;1610307623.0;{};gisgqnt;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgqnt/;1610348738;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Nietschzesuperhuman;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Doc_McCoy?status=7&order=4&ord";light;text;t2_vk6p0;False;False;[];;Let's be aware that those up in the building were also Eldians.;False;False;;;;1610307109;;False;{};gisgr47;False;t3_kujurp;False;False;t1_gisgcxz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgr47/;1610348745;56;True;False;anime;t5_2qh22;;0;[]; -[];;;ApolloX-2;;;[];;;;text;t2_asm9d;False;False;[];;Are the subs out yet?;False;False;;;;1610307114;;False;{};gisgrhv;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgrhv/;1610348751;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610307114;;False;{};gisgrjn;False;t3_kujurp;False;False;t1_gisdpnw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgrjn/;1610348752;6;True;False;anime;t5_2qh22;;0;[]; -[];;;macedonianmoper;;;[];;;;text;t2_71boinia;False;False;[];;" Honestly I love how Eren didn't just turn into ""War is terrible, we should avoid it at all costs"" which would probably result in way more people we care about dying. Dude just straight up made a terrorist attack now, killed the worlds mosts important figure, blew up a bunch of people's houses, and will probably do much worse next episode";False;False;;;;1610307115;;False;{};gisgrlf;False;t3_kujurp;False;False;t1_gisc1bn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgrlf/;1610348753;1397;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;LET'S GOOO. I am guessing neither side will win but its gonna be damn entertaining to watch;False;False;;;;1610307121;;False;{};gisgrpn;False;t3_kujurp;False;False;t1_gisboc1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgrpn/;1610348754;296;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"Well I also remember a saying that *an eye for an eye makes the whole world blind.* - -But anyway I understand why Eren did it even if I don't agree with it. He said Reiner and him are the same after all.";False;False;;;;1610307129;;1610307662.0;{};gisgsd6;False;t3_kujurp;False;False;t1_gisgcxz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgsd6/;1610348764;55;True;False;anime;t5_2qh22;;0;[]; -[];;;MilkToastKing;;;[];;;;text;t2_13tvvu;False;False;[];;Eren's transformation gave me crazy chills, holy shit. Damn this show and its amazing cliffhangers;False;False;;;;1610307133;;False;{};gisgsql;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgsql/;1610348771;1;True;False;anime;t5_2qh22;;0;[]; -[];;;braydendzzz;;;[];;;;text;t2_5avmfdeu;False;False;[];;Mappa🐐;False;False;;;;1610307138;;False;{};gisgt51;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgt51/;1610348777;7;True;False;anime;t5_2qh22;;0;[]; -[];;;richdoughnutOG;;;[];;;;text;t2_4icy5ow;False;False;[];;People were right when saying „you are not ready“. Willy for sure wasn‘t ready.;False;False;;;;1610307139;;False;{};gisgt6a;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgt6a/;1610348777;3;True;False;anime;t5_2qh22;;0;[]; -[];;;aarthbhardwaj;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Aarth_Bhardwaj;light;text;t2_5kdsi0g;False;False;[];;They started it.;False;False;;;;1610307140;;False;{};gisgt8n;False;t3_kujurp;False;False;t1_gisfm65;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgt8n/;1610348778;15;True;False;anime;t5_2qh22;;0;[]; -[];;;unaviable;;;[];;;;text;t2_1o4qd3;False;True;[];;"I always find it so tragic when miss kyomi comes up to willy fully knowing he will die just so she can settle with it I guess. Personally I find it sad that willy's purpose is only for the nations to get together. Isayama could have used willy for the end however it will turn out. I think willy would have made a great maerlyan leader after eren will kill most of the leaders next week. - -Also good touch on the Marley soldiers ganging up on the basement. Nice orginial anime detail addition";False;False;;;;1610307152;;1610307459.0;{};gisgu2g;False;t3_kujurp;False;False;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgu2g/;1610348791;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;"And to laugh to themselves after replying ""moving forward"" in every AoT thread.";False;False;;;;1610307158;;False;{};gisgui7;False;t3_kujurp;False;True;t1_gisaex2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgui7/;1610348798;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JuicyDragonCat;;;[];;;;text;t2_45tgc23z;False;False;[];;Even though this episode was largely composed of stills, the direction was still top notch. OST choices were all fantastic (easily the best of the season). The end OST is an acquired taste but I like it. This was like slowly charging up a laser cannon and unleashing it with the end which was Eren's transformation;False;False;;;;1610307168;;False;{};gisgv6o;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgv6o/;1610348808;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Denzel_Potato09;;;[];;;;text;t2_5upv9a99;False;False;[];;Agreed! Man this anime gave me a rollercoaster of emotions, especially when the announcement came that Kitauji made it to Nationals in S2, I was crying my eyes out!;False;False;;;;1610307173;;False;{};gisgvji;True;t3_kuk2nn;False;True;t1_gisg78x;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gisgvji/;1610348814;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mohamez;;;[];;;;text;t2_9p0gp;False;False;[];;Just keep moving forward;False;False;;;;1610307176;;False;{};gisgvqc;False;t3_kujurp;False;False;t1_gisfb56;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgvqc/;1610348816;3;True;False;anime;t5_2qh22;;0;[]; -[];;;tehsigzorz;;;[];;;;text;t2_gwxqygy;False;False;[];;Yeah there was no way to include it here. Wouldve broken all the tension and flow.;False;False;;;;1610307179;;False;{};gisgvzj;False;t3_kujurp;False;False;t1_giscz7r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgvzj/;1610348820;26;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;"Willy's voice actor was incredible in this episode! - -Yeah, was.";False;False;;;;1610307182;;False;{};gisgw84;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgw84/;1610348824;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Chukonoku;;;[];;;;text;t2_85br9;False;False;[];;The actions he is willing to take are not based on an emotional reaction. It's like a chemical reaction, just the mere consequences of what had been happening through out the last years and the spark that will start it all will be Willy's speech.;False;False;;;;1610307189;;False;{};gisgwq8;False;t3_kujurp;False;False;t1_gisak3a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgwq8/;1610348832;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;1900 upvotes in an hour without even needing the CR release or getting to #1 on the sub yet. Hooly shit the karma record is in danger;False;False;;;;1610307196;;False;{};gisgx7a;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgx7a/;1610348840;7;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;Some yes, some no.;False;False;;;;1610307198;;False;{};gisgxd4;False;t3_kujurp;False;True;t1_gisgrhv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgxd4/;1610348842;1;True;False;anime;t5_2qh22;;0;[]; -[];;;unaviable;;;[];;;;text;t2_1o4qd3;False;True;[];;The soundtrack were a absolute banger. The speech was very well made with the music. How tf did people not like it?;False;False;;;;1610307198;;False;{};gisgxek;False;t3_kujurp;False;False;t1_gisbw5o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgxek/;1610348843;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuck_Taha_Emre;;;[];;;;text;t2_7zgvwi1l;False;False;[];;For the sake of this argument, let's say I, Eren Yeager has acquired the power of the founding titan and got into the Marley Empire. Now, let's say that you, reiner and falco were tricked by my unmatched genius into a trap. Are you following? Good. In this circumstance I, Eren Yeager, would turn into my titan form right when Willy declared a war and would kill bunch of people. Check mate Marleyans!;False;False;;;;1610307200;;False;{};gisgxk0;False;t3_kujurp;False;False;t1_gisahuh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgxk0/;1610348845;11;True;False;anime;t5_2qh22;;0;[]; -[];;;taycorp;;;[];;;;text;t2_7fdkqhoj;False;False;[];;"There was an influx of copyright claim enforcements by one of the big companies (don't remember the name) that owns One Piece rights recently. Some official people even got erroneously hit. Not sure if that's the same as what you're talking about. - - -Edit: These DMCA claims were likely not by Shueisha, but a malicious actor, see [this Twitter thread](https://mobile.twitter.com/newworldartur/status/1348333994308489222?s=20)";False;False;;;;1610307203;;1610318898.0;{};gisgxq5;False;t3_kujurp;False;False;t1_gisbhmj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgxq5/;1610348847;14;True;False;anime;t5_2qh22;;0;[]; -[];;;unok157;;;[];;;;text;t2_2o9ks6gg;False;False;[];;Had so many goosebumps from this episode. The music, the voice acting, and the speech were perfect;False;False;;;;1610307209;;False;{};gisgy6p;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgy6p/;1610348854;1;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;I was scratching my body crazy. This shit was intense;False;False;;;;1610307211;;False;{};gisgybm;False;t3_kujurp;False;False;t1_gisb5i0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgybm/;1610348856;9;True;False;anime;t5_2qh22;;0;[]; -[];;;JuicyDragonCat;;;[];;;;text;t2_45tgc23z;False;False;[];;"calling 2volt generic is a disservice. One of sawagoats best man - -It didn't fit the moment that well but don't call the track itself bad";False;False;;;;1610307213;;False;{};gisgyfh;False;t3_kujurp;False;False;t1_gise58j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgyfh/;1610348859;7;True;False;anime;t5_2qh22;;0;[]; -[];;;conqueringdragon;;;[];;;;text;t2_11nm5laj;False;False;[];;Fansubs.;False;False;;;;1610307218;;False;{};gisgyu0;False;t3_kujurp;False;True;t1_gisglkw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgyu0/;1610348866;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NuggetsBuckets;;;[];;;;text;t2_g8fc4r7;False;False;[];;"They could've just use the season 4 trailer OST - -https://www.reddit.com/r/titanfolk/comments/kugyrh/lack_of_ost_was_disappointing_so_i_added_the/";False;False;;;;1610307222;;False;{};gisgz1w;False;t3_kujurp;False;False;t1_gisd37d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgz1w/;1610348869;9;True;False;anime;t5_2qh22;;0;[]; -[];;;collax974;;;[];;;;text;t2_374uf9;False;False;[];;They should have used this : [https://www.reddit.com/r/titanfolk/comments/kugyrh/lack\_of\_ost\_was\_disappointing\_so\_i\_added\_the/](https://www.reddit.com/r/titanfolk/comments/kugyrh/lack_of_ost_was_disappointing_so_i_added_the/);False;False;;;;1610307228;;False;{};gisgzl3;False;t3_kujurp;False;False;t1_gisd37d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgzl3/;1610348878;54;True;False;anime;t5_2qh22;;0;[]; -[];;;Cantcookeggs;;;[];;;;text;t2_qaud77p;False;False;[];;I forgot about AoT since I was so busy so I caught up just yesterday and only had to wait a day after that cliffhanger. And damn that was good and the ending too I was screaming holy shit.;False;False;;;;1610307232;;False;{};gisgzuw;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisgzuw/;1610348882;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;"Episode discussion hasn't been out for 1 hour and yet: - -Almost 600 comments, A ton of Karma, bunch of awards. - -And it isn't available yet in Crunchyroll and other sites. The 20k barrier is looking thin";False;False;;;;1610307236;;False;{};gish04c;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish04c/;1610348886;359;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;True;[];;Next time, he will think twice before sending a letter from a stranger.;False;False;;;;1610307243;;False;{};gish0mk;False;t3_kujurp;False;False;t1_gisbgr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish0mk/;1610348894;256;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;They had it coming;False;False;;;;1610307247;;False;{};gish0wq;False;t3_kujurp;False;False;t1_gisanh5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish0wq/;1610348898;29;True;False;anime;t5_2qh22;;0;[]; -[];;;dkzenzuri;;;[];;;;text;t2_eg7qxv6;False;False;[];;Yep, killing civilians has never been so good. People who had nothing to do with it.;False;False;;;;1610307254;;1610308064.0;{};gish1en;False;t3_kujurp;False;False;t1_gisgt8n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish1en/;1610348906;10;True;False;anime;t5_2qh22;;0;[]; -[];;;PeeClearCheer;;;[];;;;text;t2_1q1sd9ts;False;False;[];;JUST KEEP MOVING FORWARD;False;False;;;;1610307256;;False;{};gish1ij;False;t3_kujurp;False;False;t1_gisadib;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish1ij/;1610348907;9;True;False;anime;t5_2qh22;;0;[]; -[];;;JuicyDragonCat;;;[];;;;text;t2_45tgc23z;False;False;[];;"🦀🦀🦀🦀🦀 -A great character, only there for 2 episodes but left a great impact. Also amazing speech and voice acting";False;False;;;;1610307258;;False;{};gish1o8;False;t3_kujurp;False;False;t1_gisdakp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish1o8/;1610348910;521;True;False;anime;t5_2qh22;;0;[]; -[];;;RekklesCami;;;[];;;;text;t2_3ozyz0ye;False;False;[];;A lot of people are going to miss this the first time. He was the unlucky chosen one;False;False;;;;1610307259;;False;{};gish1q7;False;t3_kujurp;False;True;t1_gisgb6n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish1q7/;1610348911;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MisterFox17;;;[];;;;text;t2_108an1;False;False;[];;Amazing;False;False;;;;1610307261;;False;{};gish1wd;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish1wd/;1610348913;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SoulTea;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/SoulTea;light;text;t2_6by2x;False;False;[];;Willy Tybur delivering his speech had maximum R E S O L V E and best mom Bruno Bucciarati is proud;False;False;;;;1610307271;;False;{};gish2m0;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish2m0/;1610348925;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;Ah, i see, i’m sorry for not researching nor reading the meta threads first. Thank you for the clarification!;False;False;;;;1610307273;;False;{};gish2r9;False;t3_kujurp;False;True;t1_gisgok3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish2r9/;1610348927;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Neronoah;;;[];;;;text;t2_igav3;False;False;[];;Likely, but still...;False;False;;;;1610307276;;False;{};gish2wr;False;t3_kujurp;False;False;t1_gisg62o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish2wr/;1610348929;1;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;Can't wait till the next episode and I have exams this week. Fuck my life;False;False;;;;1610307277;;False;{};gish30c;False;t3_kujurp;False;False;t1_gisae7r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish30c/;1610348931;10;True;False;anime;t5_2qh22;;0;[]; -[];;;unaviable;;;[];;;;text;t2_1o4qd3;False;True;[];;Seriously. The people who always watch raw or the not translated typeset of a chapter have this weird superiority complex. It's more worse than anime only versus manga readers.;False;False;;;;1610307287;;False;{};gish3qr;False;t3_kujurp;False;False;t1_gisem3n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish3qr/;1610348942;36;True;False;anime;t5_2qh22;;0;[]; -[];;;tiramisu169;;;[];;;;text;t2_6pvyyfwz;False;False;[];;"That feel when Willy mauled a few seconds after he declares war - -Talk shit, get hit";False;False;;;;1610307288;;False;{};gish3rl;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish3rl/;1610348942;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hype_Boi;;;[];;;;text;t2_nkl00;False;False;[];;Got a link?;False;False;;;;1610307289;;False;{};gish3w1;False;t3_kujurp;False;True;t1_gisgyu0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish3w1/;1610348944;1;True;False;anime;t5_2qh22;;0;[]; -[];;;deleted-user;;MAL;[];;http://myanimelist.net/animelist/AKC47;dark;text;t2_aj4jy;False;False;[];;With only a half A-press;False;False;;;;1610307296;;False;{};gish4f9;False;t3_kujurp;False;False;t1_gisd3sc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish4f9/;1610348952;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Nietschzesuperhuman;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Doc_McCoy?status=7&order=4&ord";light;text;t2_vk6p0;False;False;[];;That's... the plan.;False;False;;;;1610307296;;False;{};gish4fn;False;t3_kujurp;False;False;t1_gisf892;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish4fn/;1610348953;300;True;False;anime;t5_2qh22;;0;[]; -[];;;mohamez;;;[];;;;text;t2_9p0gp;False;False;[];;This is the anime-onlies we should protect from spoilers, keep going fellow one, we have your back as manga readers.;False;False;;;;1610307302;;False;{};gish4s7;False;t3_kujurp;False;False;t1_gisf53y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish4s7/;1610348957;17;True;False;anime;t5_2qh22;;0;[]; -[];;;MilkToastKing;;;[];;;;text;t2_13tvvu;False;False;[];;Wait HOLY SHIT, Eren pointed out that they were surrounded by the lives of innocents in the building above them, but still transformed completely unfazed. That's brutal, Eren is pulling no punches.;False;False;;;;1610307305;;False;{};gish4zq;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish4zq/;1610348961;2107;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;">imagine linking to that delusional cesspool of a subreddit in an anime-only thread, cringe my dude - -lol? because there are people there that disliked the episode?";False;False;;;;1610307310;;False;{};gish5e6;False;t3_kujurp;False;False;t1_gisf4oe;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish5e6/;1610348966;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Lemon1412;;;[];;;;text;t2_3m3p3;False;True;[];;In all actuality, nobody should ever be saying this kind of shit to people who are watching something for the first time.;False;False;;;;1610307316;;False;{};gish5tu;False;t3_kujurp;False;False;t1_gisaex2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish5tu/;1610348973;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaurav_098;;;[];;;;text;t2_70s2u5yb;False;False;[];;Yeah it's not the best but it was not bad, and honestly even when the OST was not the best I still got goosebumps watching that scene, that was the power of that scene;False;False;;;;1610307323;;False;{};gish6cd;False;t3_kujurp;False;False;t1_gisd37d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish6cd/;1610348982;6;True;False;anime;t5_2qh22;;0;[]; -[];;;tbdunn13;;;[];;;;text;t2_ol753;False;False;[];;Post-123 is like a solid 8.5/10 for me, which is still amazing, but the stuff before it was consistently a 10/10 so it feels just a little bit off lol;False;False;;;;1610307329;;False;{};gish6s9;False;t3_kujurp;False;False;t1_gisgk0d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish6s9/;1610348988;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Sirenoman;;;[];;;;text;t2_cerq3;False;False;[];;it sounded great to me, the march-like drums going on when a war was being declared showed that the war had begun way before this even happened;False;False;;;;1610307350;;False;{};gish89z;False;t3_kujurp;False;True;t1_gisafso;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish89z/;1610349013;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lemon1412;;;[];;;;text;t2_3m3p3;False;True;[];;"Ron Howard: ""He did.""";False;False;;;;1610307355;;False;{};gish8no;False;t3_kujurp;False;False;t1_gisafs9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish8no/;1610349018;23;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610307365;;False;{};gish9c0;False;t3_kujurp;False;True;t1_gisb08f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish9c0/;1610349029;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610307371;;False;{};gish9q5;False;t3_kujurp;False;False;t1_gisadbb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish9q5/;1610349035;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuck_Taha_Emre;;;[];;;;text;t2_7zgvwi1l;False;False;[];;At this point, are we sure Eren killed innocent people before the timeskip?;False;False;;;;1610307373;;False;{};gish9vz;False;t3_kujurp;False;False;t1_giscr3k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gish9vz/;1610349037;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Oh fuck Eren my guy 😂😂😂😂;False;False;;;;1610307376;;False;{};gisha43;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisha43/;1610349041;4;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Draigg;;;[];;;;text;t2_jmliv;False;False;[];;And Eren can really use a Snickers. He isn’t really himself anymore.;False;False;;;;1610307383;;False;{};gishaof;False;t3_kujurp;False;False;t1_gisaihi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishaof/;1610349050;12;True;False;anime;t5_2qh22;;0;[]; -[];;;unaviable;;;[];;;;text;t2_1o4qd3;False;True;[];;Do you believe the transition to erens attack is now better or worse? I personally believe it would have been better to end the episode with eren taking reiners hand and then next week episode for the willy kill and attack on libero start. But that's just my opinion either way it was fucking great.;False;True;;comment score below threshold;;1610307387;;1610308465.0;{};gishayd;False;t3_kujurp;False;True;t1_gisbe5b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishayd/;1610349054;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;"Reiner: But you can't kill all your enemies. - -Eren: But I have to keep moving forward. And I have to attack to move forward. - -Reiner: Where is it written tho? - -Eren: In the name ""Attack Titan""";False;False;;;;1610307395;;False;{};gishbh6;False;t3_kujurp;False;False;t1_gisg9ty;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishbh6/;1610349062;341;True;False;anime;t5_2qh22;;0;[]; -[];;;PeeClearCheer;;;[];;;;text;t2_1q1sd9ts;False;False;[];;the tension, the build-up, the release! jesus fuck this episode is seriously one of the best episodes of anime ever;False;False;;;;1610307396;;False;{};gishbjx;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishbjx/;1610349063;5;True;False;anime;t5_2qh22;;0;[]; -[];;;CelesteRed;;;[];;;;text;t2_461p0jql;False;True;[];;"""We are the same, Reiner."" - -Eren and Reiner hands down have the best dynamic in the entirety of AoT.";False;False;;;;1610307396;;False;{};gishbkh;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishbkh/;1610349063;23;True;False;anime;t5_2qh22;;0;[]; -[];;;zool714;;;[];;;;text;t2_11y457;False;False;[];;The manga community have had this divide for a long time. I’m pretty sure we’ll see the same divide for anime-only audience. That’s the beauty of this story.;False;False;;;;1610307398;;False;{};gishbpf;False;t3_kujurp;False;False;t1_gischn4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishbpf/;1610349067;178;True;False;anime;t5_2qh22;;0;[]; -[];;;SLeepEasyBreezy;;;[];;;;text;t2_4tpzis2k;False;False;[];;"Animal eyes can reflect a number of different colours not just red. - -Both of the animal's eyes would be reflected not just one. - -The reflection would happen only in the dark, which isn't always the case in anime.";False;False;;;;1610307413;;False;{};gishctk;True;t3_kukbld;False;True;t1_gisg2vb;/r/anime/comments/kukbld/what_is_the_originsignificance_of_a_single/gishctk/;1610349083;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;What about 200k civilians that died due to the wall breaking. Eren's mom, Armin's grandpa countless others. I am not even remotely sorry for Marley. They had it coming.;False;False;;;;1610307417;;False;{};gishd2j;False;t3_kujurp;False;False;t1_gisc83j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishd2j/;1610349087;13;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;"When Willy says ""I don't want to die, because I was born into this world', Eren's eyes widen, because he probably thinks he might be similar to him, but then he talks about uniting as one against Paradis, and Eren realizes he has no choice. - -Such a subtle beautiful scene!";False;False;;;;1610307418;;False;{};gishd5x;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishd5x/;1610349088;2162;True;False;anime;t5_2qh22;;0;[]; -[];;;Hochseeflotte;;;[];;;;text;t2_38czhwoh;False;False;[];;Absolutely amazing. The tension was so thick you could have cut it with a knife. One of the best episodes in the shows history. Only the best of S3 P2 can stand toe to toe with this episode.;False;False;;;;1610307433;;False;{};gisheas;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisheas/;1610349108;20;True;False;anime;t5_2qh22;;0;[]; -[];;;deleted-user;;MAL;[];;http://myanimelist.net/animelist/AKC47;dark;text;t2_aj4jy;False;False;[];;And it's pretty evident that all the Eren-patented rage is still there - it's just simmering under the surface, ready to explode at any moment.;False;False;;;;1610307458;;False;{};gishg1w;False;t3_kujurp;False;False;t1_gisao83;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishg1w/;1610349134;38;True;False;anime;t5_2qh22;;0;[]; -[];;;HiMyNameIsAlpha;;;[];;;;text;t2_4g2u06ae;False;False;[];;I always thought it was a Tokyo Ghoul reference;False;False;;;;1610307464;;False;{};gishgif;False;t3_kukbld;False;False;t1_gisg7rt;/r/anime/comments/kukbld/what_is_the_originsignificance_of_a_single/gishgif/;1610349141;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;mapoztofu;;;[];;;;text;t2_ig4auzn;False;False;[];;"***********#Potential Spoilers***********, - -The guard whom pieck saw and said she feels like she has seen him, not to mention the yellow beard - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Is that armin?";False;False;;;;1610307481;;False;{};gishhpl;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishhpl/;1610349158;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SLeepEasyBreezy;;;[];;;;text;t2_4tpzis2k;False;False;[];;Indeed. But wouldn't it feel even angrier if it was both eyes not just one?;False;False;;;;1610307489;;False;{};gishico;True;t3_kukbld;False;True;t1_gisdjoz;/r/anime/comments/kukbld/what_is_the_originsignificance_of_a_single/gishico/;1610349167;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PRIME2332;;;[];;;;text;t2_1b02twmu;False;False;[];;"Unless you're Reiner, in which case it becomes.. - -until my life is destroyed.";False;False;;;;1610307503;;1610307729.0;{};gishjah;False;t3_kujurp;False;False;t1_gisanh4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishjah/;1610349181;6;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;Nah the most hyped scene in Death Note is that mind-bending action sequence involving a potato chip.;False;False;;;;1610307510;;False;{};gishjsk;False;t3_kujurp;False;False;t1_gisgffp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishjsk/;1610349189;50;True;False;anime;t5_2qh22;;0;[]; -[];;;SrCannon;;;[];;;;text;t2_21ftvglj;False;False;[];;Attack on Titan destroyed Attack on Titan's records!!;False;False;;;;1610307510;;False;{};gishjtr;False;t3_kujurp;False;False;t1_gisgx7a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishjtr/;1610349189;11;True;False;anime;t5_2qh22;;0;[]; -[];;;chillininthebasement;;;[];;;;text;t2_ublbp;False;False;[];;Another week another thread filled with manga readers 😩;False;False;;;;1610307511;;False;{};gishjuw;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishjuw/;1610349190;21;True;False;anime;t5_2qh22;;0;[]; -[];;;deleted-user;;MAL;[];;http://myanimelist.net/animelist/AKC47;dark;text;t2_aj4jy;False;False;[];;MarleyOS just got Trojan Horsed by Eren;False;False;;;;1610307526;;False;{};gishky6;False;t3_kujurp;False;False;t1_gisbl4f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishky6/;1610349208;43;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Potatoz;;;[];;;;text;t2_wregl;False;False;[];;"The thing with AOT is that no matter how cruel the characters get, it doesn't feel ""out of place"". Whereas some other series the character is being cruel for the sake of being cruel, aot puts a motive and backstory behind every action and judgement. Makes me feel amazed at the world building and characterization, Isayama is a fkin genius.";False;False;;;;1610307530;;False;{};gishl8w;False;t3_kujurp;False;False;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishl8w/;1610349211;1139;True;False;anime;t5_2qh22;;0;[]; -[];;;ApolloX-2;;;[];;;;text;t2_asm9d;False;False;[];;ffs one day I'll skip the middle man and learn Japanese;False;False;;;;1610307532;;False;{};gishlf1;False;t3_kujurp;False;False;t1_gisgxd4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishlf1/;1610349215;4;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Draigg;;;[];;;;text;t2_jmliv;False;False;[];;Eren sure did get a *leg up* on Marley after regrowing his foot and retaliating first as soon as Willy declared war on Paradis.;False;False;;;;1610307540;;False;{};gishlyn;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishlyn/;1610349223;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"[*Keep moving, Eren-senpai* ♥](https://i.imgur.com/lo8vM7y.jpg) - -[](#lewdgyaru)";False;False;;;;1610307542;;False;{};gishm1x;False;t3_kujurp;False;False;t1_gisf5ur;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishm1x/;1610349224;20;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;/praying for that 20k karma. It truly deserves that high karma for the amazing build up, characterizations, suspense, and pay offs;False;False;;;;1610307544;;False;{};gishm6l;False;t3_kujurp;False;False;t1_gish04c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishm6l/;1610349226;86;True;False;anime;t5_2qh22;;0;[]; -[];;;Sharebear42019;;;[];;;;text;t2_z1jb0;False;False;[];;Hope eren destroys all these mofos #oldgangisbestgang;False;False;;;;1610307544;;False;{};gishm73;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishm73/;1610349226;3;True;False;anime;t5_2qh22;;0;[]; -[];;;zool714;;;[];;;;text;t2_11y457;False;False;[];;Parallels to Bertolt. He said people of Paradis weren’t at fault. But they still had to die.;False;False;;;;1610307544;;False;{};gishm79;False;t3_kujurp;False;False;t1_gisc2jv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishm79/;1610349226;463;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;Psychology of colors. Makes sense;False;False;;;;1610307549;;False;{};gishmk4;False;t3_kukbld;False;False;t1_gisdjoz;/r/anime/comments/kukbld/what_is_the_originsignificance_of_a_single/gishmk4/;1610349232;0;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;Too tall.;False;False;;;;1610307554;;False;{};gishmwu;False;t3_kujurp;False;True;t1_gishhpl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishmwu/;1610349237;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610307555;;False;{};gishmxm;False;t3_kujurp;False;True;t1_gishhpl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishmxm/;1610349237;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Andoitious;;;[];;;;text;t2_1bbli31s;False;False;[];;How did you watch it? It’s not on crunchy or funimation;False;False;;;;1610307564;;False;{};gishnmb;False;t3_kujurp;False;False;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishnmb/;1610349246;5;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;Eren is still the hero in my book. He didn't ask for any of this. 200k people died when the wall fell including Eren's mom and Armin's grandpa . So it's not that much of big deal to me. Also being inside a building with civilians was smart since that meant he could control the situation by keeping them hostage to talk to Reiner;False;False;;;;1610307573;;False;{};gisho83;False;t3_kujurp;False;False;t1_gischn4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisho83/;1610349257;66;True;False;anime;t5_2qh22;;0;[]; -[];;;GaaraOmega;;;[];;;;text;t2_fi02o;False;False;[];;"Mappa’s execution for the ending transformation wasn’t the best. Literally can’t even see the hand slamming Willy. - -Also the OST should’ve been [YOUSEEBIGGIRL](https://youtu.be/aXVE1Rr8XtE) or u/ okmmjyygv’s edit of the new OST. - -Or they could’ve just made the track they used louder, can barely even hear it.";False;True;;comment score below threshold;;1610307582;;1610309030.0;{};gishotd;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishotd/;1610349266;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;Aetherdraw;;;[];;;;text;t2_yjc39;False;False;[];;"Willy: Because I was born into this world! - -Eren: Well damn, you just had to say it huh...?";False;False;;;;1610307583;;False;{};gishoz2;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishoz2/;1610349268;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PhoenixFoxington;;;[];;;;text;t2_33zmnrsa;False;False;[];;I feel so bad for Reiner.;False;False;;;;1610307587;;False;{};gishp4w;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishp4w/;1610349271;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Andoitious;;;[];;;;text;t2_1bbli31s;False;False;[];;How did you guys watch it? I don’t see it on crunchy or funimation;False;False;;;;1610307591;;False;{};gishpgq;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishpgq/;1610349276;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DJ_AW03;;;[];;;;text;t2_6a2u9w9l;False;True;[];;God dammit Eren, you broke Reiner;False;False;;;;1610307610;;False;{};gishquc;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishquc/;1610349297;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610307619;;False;{};gishrg3;False;t3_kujurp;False;True;t1_gishhpl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishrg3/;1610349305;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zhidezoe;;;[];;;;text;t2_qfltg2i;False;False;[];;Eren: I want to, but you have the plot armor;False;False;;;;1610307629;;False;{};gishs6z;False;t3_kujurp;False;True;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishs6z/;1610349317;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dxoxud0814;;;[];;;;text;t2_66erfb7e;False;False;[];;Can i have the links of those illegal sites please?;False;False;;;;1610307635;;False;{};gishsmf;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishsmf/;1610349323;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;I'll say that after watching episode 16, watch all of season 4 again and watch how everything you see will be recontextualized. And if you have the time, rematch from to beginning to see how much Isayama had planned of this series (or just look for manga panels on titan folk);False;False;;;;1610307636;;False;{};gishsn3;False;t3_kujurp;False;False;t1_gisd6up;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishsn3/;1610349324;38;True;False;anime;t5_2qh22;;0;[]; -[];;;deleted-user;;MAL;[];;http://myanimelist.net/animelist/AKC47;dark;text;t2_aj4jy;False;False;[];;Reiner's mom is revealed to be the Warhammer Titan next episode and shows Reiner how Poundtown really works.;False;False;;;;1610307638;;False;{};gishss3;False;t3_kujurp;False;False;t1_giscpjv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishss3/;1610349325;15;True;False;anime;t5_2qh22;;0;[]; -[];;;ZackDB201;;;[];;;;text;t2_1sxfbwvn;False;False;[];;no its not;False;False;;;;1610307639;;False;{};gishsvo;False;t3_kujurp;False;True;t1_gishhpl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishsvo/;1610349327;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Exodor54;;MAL;[];;http://myanimelist.net/animelist/Exodor;dark;text;t2_eex6z;False;False;[];;Yeah, that's fair. It is as you say, I just don't think it specifically fits with the moment.;False;False;;;;1610307647;;False;{};gishthm;False;t3_kujurp;False;False;t1_gisgyfh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishthm/;1610349337;9;True;False;anime;t5_2qh22;;0;[]; -[];;;myrmonden;;;[];;;;text;t2_f0rs6;False;False;[];;" I think a huge difference for this episode in the history of attack on titan compared to the manga is that during Tybur speech, the actors are a lot more clearly ROMANS. So its a lot more hint to the ""true"" True history of attack on titan with the marleys being connected to the roman empire (and lets not forget about Holy Roman Empire which is todays Germany/austria etc) and of coruse the marleys are supposed to be the Germans.";False;False;;;;1610307652;;False;{};gishtsr;False;t3_kujurp;False;False;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishtsr/;1610349341;27;True;False;anime;t5_2qh22;;0;[]; -[];;;dxoxud0814;;;[];;;;text;t2_66erfb7e;False;False;[];;Can i have the links of those illegal sites please?;False;False;;;;1610307663;;False;{};gishum6;False;t3_kujurp;False;True;t1_gisg0b6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishum6/;1610349356;1;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;Probably the second best. The best for me undoubtedly is the episode where Reiner and Bertold were revealed to be titan shifters;False;False;;;;1610307675;;False;{};gishvgv;False;t3_kujurp;False;False;t1_gisg4ua;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishvgv/;1610349368;8;True;False;anime;t5_2qh22;;0;[]; -[];;;BigLittleSloth;;;[];;;;text;t2_cux68;False;False;[];;"WIT stans will criticize this scene until the end of time. But I like how MAPPA did it. The music didn't overpower the scene, the video you've linked is honestly just too much. - -It worked for the Reiner & Bertholdt scene but not for this.";False;False;;;;1610307684;;False;{};gishw4m;False;t3_kujurp;False;False;t1_gisg8yi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishw4m/;1610349378;15;True;False;anime;t5_2qh22;;0;[]; -[];;;methofthewild;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/fedelini;light;text;t2_177yx2;False;False;[];;No I think he probably is. I think he's been injured but that's how he'll transform.;False;False;;;;1610307696;;False;{};gishwyj;False;t3_kujurp;False;False;t1_gisftec;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishwyj/;1610349391;35;True;False;anime;t5_2qh22;;0;[]; -[];;;okbuddybutbruh;;;[];;;;text;t2_9ow7haip;False;False;[];;Reiner and Eren are the most well developed characters in AoT.;False;False;;;;1610307696;;False;{};gishwzj;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishwzj/;1610349392;42;True;False;anime;t5_2qh22;;0;[]; -[];;;deleted-user;;MAL;[];;http://myanimelist.net/animelist/AKC47;dark;text;t2_aj4jy;False;False;[];;/r/anime is in that picture.;False;False;;;;1610307698;;False;{};gishx54;False;t3_kujurp;False;False;t1_gisctsk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishx54/;1610349394;28;True;False;anime;t5_2qh22;;0;[]; -[];;;MobileTortoise;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Mobiletortoise;light;text;t2_gylu5;False;False;[];;We were all a lil jealous of him after that scene;False;False;;;;1610307705;;False;{};gishxn7;False;t3_kujurp;False;False;t1_gisctsk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishxn7/;1610349403;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;"K there's something up with Zeke, first Eren while sending the letter had a baseball glove and said ""it's to my family"". Then today we saw Galliard and Pieck being trapped but not Zeke when he clearly could've been trapped. Also in ep 2 Zeke said 'not in this room'. Either I'm overthinking it or somehow Zeke isn't exactly on the Marleon side. But I kinda doubt he's on the paradis Side either.";False;False;;;;1610307706;;False;{};gishxq3;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishxq3/;1610349404;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;"Lmao imagine 🗿 - -A nice parallel to Kruger's ""Grisha, this is how you use the power of the titans"" - -Karina: ""Reiner, my child, this is how you take everyone to poundtown""";False;False;;;;1610307718;;False;{};gishykv;False;t3_kujurp;False;False;t1_gishss3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishykv/;1610349417;10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610307723;;1610309371.0;{};gishyvz;False;t3_kujurp;False;True;t1_gisg5pr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gishyvz/;1610349422;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iTz_oellampe;;;[];;;;text;t2_qxro3;False;False;[];;The tension building up this episode was really something else. Looking forward to next week already!;False;False;;;;1610307746;;False;{};gisi0h1;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisi0h1/;1610349445;3;True;False;anime;t5_2qh22;;0;[]; -[];;;redboundary;;;[];;;;text;t2_3mzzbdwx;False;False;[];;\*Next episode;False;False;;;;1610307749;;False;{};gisi0s2;False;t3_kujurp;False;False;t1_gisajvw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisi0s2/;1610349451;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Hochseeflotte;;;[];;;;text;t2_38czhwoh;False;False;[];;"Speculation time: - -Who do we think the soldier leading Porco and Pieck to the trap was? There’s one shot of his face and I can’t figure out who they are. Maybe someone figured it out based of the VA?";False;False;;;;1610307753;;False;{};gisi100;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisi100/;1610349454;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;HOW CAN I WAIT A WEEK? AAAAAAAAAAAAAAAAAAAAAAA;False;False;;;;1610307757;;False;{};gisi1aq;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisi1aq/;1610349459;4;True;False;anime;t5_2qh22;;0;[]; -[];;;macedonianmoper;;;[];;;;text;t2_71boinia;False;False;[];;" I love that Eren doens't hesitate now, remember in season 1 where he couldn't even turn into a titan because annie was his friend? Now he didn't even think twice about killing a kid that he considered a good person, aswell as all the people living above him. - - Such a long way, and it's so much better than the classic protagonist that hesitates in doing something and gets someone badly hurt";False;False;;;;1610307760;;False;{};gisi1jl;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisi1jl/;1610349462;636;True;False;anime;t5_2qh22;;0;[]; -[];;;sstizzle;;;[];;;;text;t2_e9qm7;False;False;[];;Nice! Yeah I need to rewatch once official subs are out. It’s early but this one is definitely top 10 or top 5, maybe I’d really need to think about where it would land though.;False;False;;;;1610307764;;False;{};gisi1sz;False;t3_kujurp;False;True;t1_gishvgv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisi1sz/;1610349466;3;True;False;anime;t5_2qh22;;0;[]; -[];;;_the_dark_knight;;;[];;;;text;t2_rwxr0;False;False;[];;Same, just watched that. So many subtle things you miss during the first watch, that is why AOT has such a high re-watch value.;False;False;;;;1610307764;;False;{};gisi1u3;False;t3_kujurp;False;False;t1_gishd5x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisi1u3/;1610349467;41;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610307767;;False;{};gisi20r;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisi20r/;1610349469;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Can someone talk about Armin ? We just saw him lead and trap Galliard and Pieck. I mean I'm guessing it's Armin cox who else could that be 😂?;False;False;;;;1610307771;;False;{};gisi2c0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisi2c0/;1610349474;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;As expected of Eren.;False;False;;;;1610307793;;False;{};gisi3uy;False;t3_kujurp;False;False;t1_gisfgrb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisi3uy/;1610349499;295;True;False;anime;t5_2qh22;;0;[]; -[];;;KA1N3R;;;[];;;;text;t2_li22g;False;False;[];;Man, that sounds crazy. Probably going to start over right now;False;False;;;;1610307821;;False;{};gisi5t8;False;t3_kujurp;False;False;t1_gishsn3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisi5t8/;1610349529;10;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;cant contain my hype im gonna pass out. i just know this episode is gonna be great.;False;False;;;;1610307831;;False;{};gisi6hw;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisi6hw/;1610349539;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610307837;;False;{};gisi6yf;False;t3_kujurp;False;True;t1_gisi2c0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisi6yf/;1610349547;1;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;I wholeheartedly agree with him. They shouldn't have to pay for the King's idiotic decision;False;False;;;;1610307851;;False;{};gisi7ys;False;t3_kujurp;False;False;t1_gisgsd6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisi7ys/;1610349561;11;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;Remember when Eren was once an annoying brat he has grown a lot;False;False;;;;1610307859;;False;{};gisi8hf;False;t3_kujurp;False;False;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisi8hf/;1610349572;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Xinyanbestgirl;;;[];;;;text;t2_983nmdwn;False;False;[];;"I can never move on from this chapter ever since I read it. Reiner, filled with distraught, fear, and regret even more after seeing Eren, hoping to be judged. However, Eren sympathizes with Reiner, acknowledging that both of them (Islanders and Outsiders) are all the same, and that Eren too will destroy his enemies, just as what they did to them, because at the end of the day, they all think they're ""saving the world"". - -The value of perspective really shines here. One of my favourite points to think about when it comes to war and history. - -Well done MAPPA.";False;False;;;;1610307859;;False;{};gisi8hu;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisi8hu/;1610349572;224;True;False;anime;t5_2qh22;;0;[]; -[];;;mapoztofu;;;[];;;;text;t2_ig4auzn;False;False;[];;"Ohh man - -That was my concern too, but then I thought like maybe he had a growth spurt after getting colossal genes - -Since pieck was the cart titan and saved Reiner and zeke, might have seen armin from a distance and hence said so - -Alright - -Better to wait for next week then";False;False;;;;1610307862;;False;{};gisi8qd;False;t3_kujurp;False;True;t1_gishmwu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisi8qd/;1610349577;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;This one is a good example. In fact, he is a very realistic character maybe that's why he's so hated;False;False;;;;1610307864;;False;{};gisi8vq;False;t3_kuk2au;False;True;t1_gisbrfn;/r/anime/comments/kuk2au/characters_you_think_are_overhated/gisi8vq/;1610349579;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Poor Falco. I felt bad for him. He was just so pure-hearted.;False;False;;;;1610307864;;False;{};gisi8vs;False;t3_kujurp;False;False;t1_gisbgr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisi8vs/;1610349579;211;True;False;anime;t5_2qh22;;0;[]; -[];;;AdditionalSystem530;;;[];;;;text;t2_9jlcos5e;False;False;[];;Noice;False;False;;;;1610307883;;False;{};gisia8v;False;t3_kuk28h;False;True;t3_kuk28h;/r/anime/comments/kuk28h/chika_dance_kaguyasama_love_is_war/gisia8v/;1610349599;1;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;He is no longer the emotional kid fueled by revenge. He understands, sympathizes and forgives the person responsible for his mother's death. He knows what needs to be done to free his people from oppression, and he keeps moving forward for that cause.;False;False;;;;1610307895;;False;{};gisib46;False;t3_kujurp;False;False;t1_gisd6cp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisib46/;1610349613;743;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;Innocent Eldians die. Nothing that can be done about it.;False;True;;comment score below threshold;;1610307910;;False;{};gisic8p;False;t3_kujurp;False;True;t1_gisgr47;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisic8p/;1610349662;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;Oh don't start over rn. Episode 15/16 will have a big reveal that'll change your perspective on the events that have occurred and the way Eren acts. So don't rewatch till you have seen the reveal, otherwise its just a waste of time.;False;False;;;;1610307922;;False;{};gisid5m;False;t3_kujurp;False;False;t1_gisi5t8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisid5m/;1610349675;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Neronoah;;;[];;;;text;t2_igav3;False;False;[];;I can't believe I have to say this, but don't confuse civilians with a country.;False;False;;;;1610307923;;False;{};gisid8p;False;t3_kujurp;False;False;t1_gishd2j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisid8p/;1610349676;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;MAPPA really did deliver in that episode. Thought it was outstanding.;False;False;;;;1610307932;;False;{};gisidwb;False;t3_kujurp;False;False;t1_gish04c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisidwb/;1610349688;68;True;False;anime;t5_2qh22;;0;[]; -[];;;SoulTea;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/SoulTea;light;text;t2_6by2x;False;False;[];;"Sorry just checking, as I'm anime only I didn't spoil anything right? Considering I've only watched the show I don't think it's possible. I definitely will read the manga front to back once the show is complete however. - -In rereading old discussion threads of S1 and S2 so far I like to see how the anime differs from the manga. I'd like to see the scenes that never got animated. I know they've nerfed some characters in unfavourable ways while buffing others as well for anime only scenes i.e. Eren S1 I believe and Mike not looking as cool as he should before getting devoured after the Beast titan takes his gear.";False;False;;;;1610307936;;False;{};gisie67;False;t3_kujurp;False;True;t1_gish4s7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisie67/;1610349692;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Notchmeister;;;[];;;;text;t2_36jo87s9;False;False;[];;Finally! The time where declaration of war isn't an anime spoiler anymore, we live in a beautiful world!;False;False;;;;1610307938;;False;{};gisiedz;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisiedz/;1610349695;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkWorld97;;MAL;[];;https://myanimelist.net/profile/;dark;text;t2_aqfg4;False;False;[];;Isayama gives him a lot of direction for extremely important lines. Hell, when Eren and Historia were talking casually back in s3, Isayama was very picky about the tone of Yuki Kaji's voice.;False;False;;;;1610307950;;False;{};gisif8n;False;t3_kujurp;False;False;t1_gisbl86;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisif8n/;1610349708;233;True;False;anime;t5_2qh22;;0;[]; -[];;;silent_assasin29;;;[];;;;text;t2_1rnbkx8a;False;False;[];;Suddenly i remember dutch from rdr 2 🤣;False;False;;;;1610307953;;False;{};gisifgc;False;t3_kujurp;False;False;t1_gisf892;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisifgc/;1610349711;32;True;False;anime;t5_2qh22;;0;[]; -[];;;jarjar4;;;[];;;;text;t2_3ooso9kj;False;False;[];;Aside from the ost played during the denouement, everything was perfect.;False;False;;;;1610307961;;False;{};gisifzk;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisifzk/;1610349719;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bobo0509;;;[];;;;text;t2_8rsq1h6x;False;False;[];;damn the tension and built up in this episode man...;False;False;;;;1610307961;;False;{};gisig1i;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisig1i/;1610349720;4;True;False;anime;t5_2qh22;;0;[]; -[];;;mohamez;;;[];;;;text;t2_9p0gp;False;False;[];;useless fansubs;False;False;;;;1610307962;;False;{};gisig2o;False;t3_kujurp;False;True;t1_gisf4kc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisig2o/;1610349720;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hochseeflotte;;;[];;;;text;t2_38czhwoh;False;False;[];;I know Jean has a beard now but the guards hair was blonde and Jean’s is not. My guess is he is a random Survey Corp member.;False;False;;;;1610307984;;False;{};gisihnp;False;t3_kujurp;False;True;t1_gishhpl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisihnp/;1610349745;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hellokotlinbye;;;[];;;;text;t2_6hjubt1a;False;False;[];;He took porco and pieck to see the sea;False;False;;;;1610307986;;False;{};gisihty;False;t3_kujurp;False;True;t1_gisi100;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisihty/;1610349748;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610307998;;False;{};gisiirk;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisiirk/;1610349764;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cbizzle14;;;[];;;;text;t2_ew2y7;False;False;[];;Has the thread always been early?;False;False;;;;1610308000;;False;{};gisiiwj;False;t3_kujurp;False;True;t1_gisdokm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisiiwj/;1610349766;3;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;Aot is basically an anime villain backstory;False;False;;;;1610308000;;False;{};gisiix8;False;t3_kujurp;False;False;t1_gisfit0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisiix8/;1610349766;20;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610308021;;False;{};gisikf6;False;t3_kujurp;False;True;t1_gishsmf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisikf6/;1610349789;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;Why is your comment giving me manga discussion thread flashbacks from years ago??? Damn are you the same guy? Whose memories are these?;False;False;;;;1610308029;;False;{};gisikzm;False;t3_kujurp;False;False;t1_gisak3a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisikzm/;1610349798;12;True;False;anime;t5_2qh22;;0;[]; -[];;;loqnes;;;[];;;;text;t2_3lygapjx;False;False;[];;"Magath was clearly expecting it when he says ""so it has already started"" when the warriors go missing. Considering willy and magath were planning something beforehand , willy was indeed expecting eren in Marley.";False;False;;;;1610308036;;False;{};gisilkc;False;t3_kujurp;False;False;t1_gish9c0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisilkc/;1610349807;29;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610308037;;1610309069.0;{};gisilm6;False;t3_kujurp;False;True;t1_gishpgq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisilm6/;1610349807;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BadPercussionist;;;[];;;;text;t2_hadc6n0;False;True;[];;Next time?;False;False;;;;1610308045;;False;{};gisim77;False;t3_kujurp;False;False;t1_gish0mk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisim77/;1610349816;36;True;False;anime;t5_2qh22;;0;[]; -[];;;okbuddybutbruh;;;[];;;;text;t2_9ow7haip;False;False;[];;I like the new eren more. He seemed like a dumb protagonist who always needed someone to save his ass in all the seasons. He really has matured now in the anime and the manga;False;False;;;;1610308050;;False;{};gisimjj;False;t3_kujurp;False;False;t1_gisi1jl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisimjj/;1610349822;94;True;False;anime;t5_2qh22;;0;[]; -[];;;Parsly22;;;[];;;;text;t2_8vouunyq;False;False;[];;U are insane this episode was so good wtf;False;False;;;;1610308051;;False;{};gisimlb;False;t3_kujurp;False;False;t1_gisexhg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisimlb/;1610349823;50;True;False;anime;t5_2qh22;;0;[]; -[];;;offoy;;MAL;[];;http://myanimelist.net/animelist/oFFoy;dark;text;t2_7a56z;False;False;[];;The Attack Titan lives up to its name once again!;False;False;;;;1610308053;;False;{};gisimri;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisimri/;1610349825;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;No need to be so assblasted kid. I know you aren't allowed to do anything but fanboy over an episode on r/anime but it needs to be said. Using 2volt messed up the moment.;False;False;;;;1610308057;;False;{};gisin0r;False;t3_kujurp;False;True;t1_gisf4oe;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisin0r/;1610349829;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"What a fantastic episode! The manga readers where right about this episode breaking the internet! - -The exchange between eren and reiner discussing how similar their lives are, while the dude up stairs spreads propaganda, ending in a grand climax as both eren and the blond guy declares war! - -Wow AOT is a poetic masterpiece!";False;False;;;;1610308060;;False;{};gisin8w;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisin8w/;1610349833;16;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;That's why I fucking hate him. Fuck him and his peace;False;False;;;;1610308075;;False;{};gisiod7;False;t3_kujurp;False;True;t1_gisgcj1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisiod7/;1610349850;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zoroastr;;;[];;;;text;t2_ot1pq;False;False;[];;All around a fantastic episode. Tension had me on the edge of my seat the whole time!;False;False;;;;1610308076;;False;{};gisiofq;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisiofq/;1610349851;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sygamar;;;[];;;;text;t2_33t81x0x;False;False;[];;"Willy Tybur: ""To the enemy forces of Paradis, this is the declaration of war!"" -Eren: ""Don't mind if I do""";False;False;;;;1610308078;;False;{};gisiokr;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisiokr/;1610349853;6;True;False;anime;t5_2qh22;;0;[]; -[];;;mapoztofu;;;[];;;;text;t2_ig4auzn;False;False;[];;"It reminds me of ep 11 of s3p1 when Carla tells Keith that eren is special since he was born in this world - -That episode was fantastic too";False;False;;;;1610308080;;False;{};gisioq1;False;t3_kujurp;False;False;t1_gishd5x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisioq1/;1610349856;1001;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;He also knows a thing or two about romance now, with how he realised that Falco was interested in a girl.;False;False;;;;1610308087;;False;{};gisip9e;False;t3_kujurp;False;False;t1_gisib46;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisip9e/;1610349865;517;True;False;anime;t5_2qh22;;0;[]; -[];;;Left-Chance-4564;;;[];;;;text;t2_7p92oo57;False;False;[];;"Well,that's one way to look at it sure.But to the innocent people in that building and to the world leaders and civilians present there, Eren now sure is the embodiment of the ""devil"" that Willy was describing after that spectacle of a transformation heh";False;False;;;;1610308090;;False;{};gisipgr;False;t3_kujurp;False;False;t1_gisho83;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisipgr/;1610349868;29;True;False;anime;t5_2qh22;;0;[]; -[];;;Anon_64;;;[];;;;text;t2_lw5ep;False;False;[];;So yeah, this new episode isn’t appearing for me on Crunchyroll or Funimation:;False;False;;;;1610308096;;False;{};gisipva;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisipva/;1610349874;4;True;False;anime;t5_2qh22;;0;[]; -[];;;lluNhpelA;;;[];;;;text;t2_2x9uo1an;False;False;[];;Eren's eye glowed like the royals' when they had the founding titan, didn't it? Did his father attach a brainwashing to his own bloodline that does the opposite of the King's oath and forces Eren to engage in war? It would explain why Eren is so dead set on killing innocent civilians;False;False;;;;1610308101;;False;{};gisiq8m;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisiq8m/;1610349880;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PhoenixFoxington;;;[];;;;text;t2_33zmnrsa;False;False;[];;The [eastern lady](https://imgur.com/a/TDX2t1A) from the [last episode](https://imgur.com/a/9hk3blO) is in the know. Notice while everyone is heading towards the ceremony, she's the only one shown [leaving the ceremony](https://imgur.com/a/BDYAYg0).;False;False;;;;1610308104;;False;{};gisiqhp;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisiqhp/;1610349883;233;True;False;anime;t5_2qh22;;0;[]; -[];;;MoreGymLessTalk;;;[];;;;text;t2_22q9b9rj;False;False;[];;No but Eren pointed out that they were under a building full of civilians. Eren knew he was going to kill them when he transformed. Also, he was referring to the fact that both of them grew up believing they could save the world and in the process have (and in Eren's case will) kill civilians to do so.;False;False;;;;1610308105;;False;{};gisiqie;False;t3_kujurp;False;False;t1_gish9vz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisiqie/;1610349884;61;True;False;anime;t5_2qh22;;0;[]; -[];;;SomeFreeTime;;;[];;;;text;t2_h9ecq;False;False;[];;"""Because I was born in this world."" - -The exact same words and beliefs that Eren once said as a kid before made him smile. And then he realized that no matter how similar he was to his enemy, he has to exterminate them all.";False;False;;;;1610308107;;False;{};gisiqp2;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisiqp2/;1610349888;2;True;False;anime;t5_2qh22;;0;[]; -[];;;asidopo;;;[];;;;text;t2_16p7u9;False;False;[];;"I am a thousand percent sure the guard that lead Pieck and Porco to the trap is Armin - -Mf was blond and Pieck even says he looks familiar, probably because she saw him at the battle of Shiganshina. I’ll cut my leg like Eren if it isn’t him.";False;False;;;;1610308113;;False;{};gisir3r;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisir3r/;1610349894;1;True;False;anime;t5_2qh22;;0;[]; -[];;;loqnes;;;[];;;;text;t2_3lygapjx;False;False;[];;Also eren's face was scary;False;False;;;;1610308121;;False;{};gisiroy;False;t3_kujurp;False;False;t1_gisd4wn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisiroy/;1610349902;22;True;False;anime;t5_2qh22;;0;[]; -[];;;mapoztofu;;;[];;;;text;t2_ig4auzn;False;False;[];;"Yeah - -Probably";False;False;;;;1610308122;;False;{};gisirr0;False;t3_kujurp;False;False;t1_gisihnp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisirr0/;1610349903;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610308129;;False;{};gisis91;False;t3_kujurp;False;True;t1_gisi2c0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisis91/;1610349911;6;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;He did more damage with a single conversation than he did in any of their actual fights in the previous seasons.;False;False;;;;1610308131;;False;{};gisise0;False;t3_kujurp;False;False;t1_giscjc4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisise0/;1610349913;35;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Xp;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/LordXp/;light;text;t2_jd7a7;False;False;[];;"Loved the episode and the buildup of this episode but that music choice for Eren fell so flat for me. It felt like it didn't escalate with the scene and felt so quiet. Maybe crunchy's sound quality will be better than what i watched, because that kinda put a damper on the scene for me. - -Still loved the episode overall though.";False;False;;;;1610308134;;False;{};gisisla;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisisla/;1610349915;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;hellokotlinbye;;;[];;;;text;t2_6hjubt1a;False;False;[];;RIP willy. I personally enjoy any character kazuhiko voices;False;False;;;;1610308141;;False;{};gisit4m;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisit4m/;1610349923;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SgtNivea;;;[];;;;text;t2_2w8usvyc;False;False;[];;I swear to god this episode was fucking 3 minutes long. I'm left speechless...;False;False;;;;1610308144;;False;{};gisitcq;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisitcq/;1610349927;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZombieWithEbola;;;[];;;;text;t2_131x90;False;False;[];;"This episode was executed perfectly. As a manga reader I knew that this was going to be one of the best episodes and it still blew me away. The soundtrack, the suspense, the speech, everything. 10/10 episode. [For fellow manga readers...](/s ""I think next episode will start with Willy and Magath talking like how chapter 100 started. Them shaking hands agreeing that they are both devils and then it will go back to the present with Eren breaking through the walls and the people panicking. Then the OP starts"")";False;False;;;;1610308147;;False;{};gisitk1;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisitk1/;1610349930;5;True;False;anime;t5_2qh22;;0;[]; -[];;;RockoDyne;;MAL;[];;https://myanimelist.net/profile/RockoDyne;dark;text;t2_g4ooj;False;False;[];;"There are more colors that eyes glow in anime than just red. Blue is another favorite. - -Now did you actually take a moment and think about the emotional experience that's involved with seeing eyes approach in the dead of night, or did you get hung up on the color?";False;False;;;;1610308147;;False;{};gisitkf;False;t3_kukbld;False;True;t1_gishctk;/r/anime/comments/kukbld/what_is_the_originsignificance_of_a_single/gisitkf/;1610349930;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;XIIISkies;;;[];;;;text;t2_p0bqb;False;False;[];;"I reallllyyyy hope Isayama nails the ending. Its been such a long memorable ride, Id honestly hate for it to be mared by a unsatisfying ending - --Yes I know its subjective, and doesnt change everything from the beginning til now, but still...";False;False;;;;1610308149;;False;{};gisitoz;False;t3_kujurp;False;False;t1_gisbtc0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisitoz/;1610349932;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Left-Chance-4564;;;[];;;;text;t2_7p92oo57;False;False;[];;"Yeah, the classic ""X"" vs ""Y"" toxicity that completely ruined the manga fandom,let's see how the anime onlies handle it from here on out!";False;False;;;;1610308151;;False;{};gisitv8;False;t3_kujurp;False;False;t1_gishbpf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisitv8/;1610349934;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Bulbasaur_is_bae;;;[];;;;text;t2_9ecj7vfc;False;False;[];;"I feel so bad for Falco. He's so innocent. He was so excited leading Reiner to the basement. I can only imagine how he felt when he saw the expression on Reiner's face after seeing ""Mr. Kruger"".";False;False;;;;1610308151;;False;{};gisitvw;False;t3_kujurp;False;False;t1_gisbgr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisitvw/;1610349935;29;True;False;anime;t5_2qh22;;0;[]; -[];;;ChiggaOG;;;[];;;;text;t2_3hcondt;False;True;[];;Eren finally goes ham and terrorizes people in this... Finally something good.;False;False;;;;1610308152;;False;{};gisitx4;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisitx4/;1610349935;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;Remember the Annie fight he did cause collateral damage in season 1;False;False;;;;1610308154;;False;{};gisiu2j;False;t3_kujurp;False;False;t1_gish9vz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisiu2j/;1610349937;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;[*Sāba wo sasageyo!*](https://i.imgur.com/alx5PWl.png);False;False;;;;1610308156;;False;{};gisiu70;False;t3_kujurp;False;False;t1_gisas08;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisiu70/;1610349939;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ModieOfTheEast;;;[];;;;text;t2_g7tqk9b;False;False;[];;Well yeah, my point was instead of taking 4 years to plan an attack on the whole world, why not just take this time to travel into different countries and start living there? It doesn't have to be Marley. They could go in the eastern countries as well who also seem to be a lot more open to Eldians in the first place. And as I said, that he wanted to free the ones in the internment camps was my idea as well, but Eren does not seem to care if he kills them, so I am not sure how true that is.;False;False;;;;1610308164;;1610308441.0;{};gisius3;False;t3_kujurp;False;True;t1_gisemls;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisius3/;1610349948;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Crisisofland;;;[];;;;text;t2_7jhkdpjn;False;False;[];;Nah i think it'll be about 18k+ realistically, for some reason episodes reach a peak and 20k is hard to beat, it could but i think it'll be around 18k.;False;False;;;;1610308167;;False;{};gisiuzr;False;t3_kujurp;False;True;t1_gisiirk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisiuzr/;1610349951;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nietschzesuperhuman;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Doc_McCoy?status=7&order=4&ord";light;text;t2_vk6p0;False;False;[];;I really wasn't passing judgement on that. Just an heads up if people think that those are Marleyans.;False;False;;;;1610308168;;False;{};gisiv2a;False;t3_kujurp;False;False;t1_gisic8p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisiv2a/;1610349952;21;True;False;anime;t5_2qh22;;0;[]; -[];;;SoulTea;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/SoulTea;light;text;t2_6by2x;False;False;[];;"I have the memory of a goldfish, so honestly currently even on a 3rd rewatch I still don't remember a lot haha. I would put it right up there with the Reiner-Bertolt reveal, Erwin leading the charge, and Armin almost getting toasted (haven't gotten here in my rewatch yet). - -It beats all of those in terms of pure edge of the seat tension by far however. I really wasn't sure what exactly Eren would do. Although we've been lead to believe they can't transform in tight spaces as evidenced in earlier seasons and even this episode but I just knew Eren would do it. - -Shows rarely elicit a physical reaction out of me but this episode had me cheering, reaction and literally has dropping.";False;False;;;;1610308175;;False;{};gisivkp;False;t3_kujurp;False;False;t1_gisg4ua;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisivkp/;1610349960;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Prettywaffleman;;;[];;;;text;t2_3msnawl9;False;False;[];;What do you mean by anime was saved?;False;False;;;;1610308178;;False;{};gisivsj;False;t3_kujurp;False;True;t1_gisafev;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisivsj/;1610349963;3;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;Puberty finally hit him.;False;False;;;;1610308183;;False;{};gisiw75;False;t3_kujurp;False;False;t1_gisip9e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisiw75/;1610349969;350;True;False;anime;t5_2qh22;;0;[]; -[];;;TSmasher1000;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_14sxjn;False;False;[];;It's so subtle. We see hope in Eren's eyes for a brief second when Willy talks about being born into this world - a thing that Eren can relate to, something possibly to branch the large differences between the two factions. However, the next second Eren regrettably smiles as Willy talks about unification against the Paradis and accepts that there is no hope for a peaceful resolution.;False;False;;;;1610308186;;False;{};gisiwej;False;t3_kujurp;False;False;t1_gisbjvm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisiwej/;1610349971;77;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610308196;;False;{};gisix25;False;t3_kujurp;False;True;t1_gisi2c0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisix25/;1610349982;0;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;What do you think makes up a country?;False;False;;;;1610308203;;False;{};gisixl5;False;t3_kujurp;False;True;t1_gisid8p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisixl5/;1610349989;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;Yes with the exception of episode 1. When the CR stream drops the karma will start to accelerate;False;False;;;;1610308209;;False;{};gisiy1m;False;t3_kujurp;False;True;t1_gisiiwj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisiy1m/;1610349996;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sanon441;;;[];;;;text;t2_p13vd;False;False;[];;"They weren't at war, it was an unprovoked civilian targeted massacre. - -Edit: I was referring to RBA not Eren";False;False;;;;1610308214;;1610326939.0;{};gisiyc6;False;t3_kujurp;False;True;t1_gisfm65;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisiyc6/;1610350000;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610308219;;False;{};gisiyp1;False;t3_kujurp;False;True;t1_gisir3r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisiyp1/;1610350005;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610308224;;False;{};gisiz1h;False;t3_kujurp;False;True;t1_gisi100;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisiz1h/;1610350010;1;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;I knew they were Eldians;False;False;;;;1610308226;;False;{};gisiz79;False;t3_kujurp;False;False;t1_gisiv2a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisiz79/;1610350013;4;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomXxZ;;;[];;;;text;t2_37lbelym;False;False;[];;This show is **too** good.;False;False;;;;1610308228;;False;{};gisizbq;False;t3_kujurp;False;False;t1_gisd65h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisizbq/;1610350014;37;True;False;anime;t5_2qh22;;0;[]; -[];;;Radix3D;;;[];;;;text;t2_4pafckex;False;False;[];;"It's a bit more nuanced than that. The reason why Eren sees Reiner as the same as him is because both of them pushed themselves into hell, instead of it being their environment. They ""keep moving forward"" no matter what, until their goal is complete.";False;False;;;;1610308229;;False;{};gisizez;False;t3_kujurp;False;False;t1_giscr3k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisizez/;1610350016;711;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;"Willy: ""They have the power to annihilate every one of us and there's nothing we can do about it. We should attack them.""";False;False;;;;1610308237;;False;{};gisj00j;False;t3_kujurp;False;False;t1_gisb9xy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj00j/;1610350026;14;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;she was the war hammer titan all along;False;False;;;;1610308240;;False;{};gisj084;False;t3_kujurp;False;True;t1_giscpjv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj084/;1610350029;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610308243;;False;{};gisj0er;False;t3_kujurp;False;True;t1_gisir3r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj0er/;1610350031;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;Check their post history. All their posts from today purely consist of them whining in response to people criticizing the latest episode. I love Attack on Titan but I'm happy not to be a blind and toxic fanboy like WolfPl0x.;False;False;;;;1610308250;;False;{};gisj0vi;False;t3_kujurp;False;True;t1_gish5e6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj0vi/;1610350038;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;WarBlaster;;;[];;;;text;t2_523l3ng0;False;False;[];;Holy shit this callback is insane;False;False;;;;1610308250;;False;{};gisj0wk;False;t3_kujurp;False;False;t1_gisd65h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj0wk/;1610350038;858;True;False;anime;t5_2qh22;;0;[]; -[];;;Phil-Rogers;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/PhilRogers;dark;text;t2_4z5phxus;False;False;[];;Question. Does this episode start with Reiner asking Falco where he's going this late? I watched this episode last week, but thought it was episode 4 since 5 was being delayed for new years?;False;False;;;;1610308254;;False;{};gisj18m;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj18m/;1610350043;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Xp;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/LordXp/;light;text;t2_jd7a7;False;False;[];;The OST was fine during the buildup. It was at the climax of the buildup when the music didn't follow the excitement of the scene is what I was disappointed with. It just stayed flat all the way through.;False;False;;;;1610308258;;False;{};gisj1i9;False;t3_kujurp;False;False;t1_gisbw5o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj1i9/;1610350047;32;True;False;anime;t5_2qh22;;0;[]; -[];;;mandelbrot256;;;[];;;;text;t2_ls828;False;False;[];;[Eren reveals that he's a gamer (854, colorized)](https://i.imgur.com/3zpfyY8.jpg);False;False;;;;1610308269;;False;{};gisj29z;False;t3_kujurp;False;False;t1_giscm9k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj29z/;1610350059;75;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;That's true. Its all up to Perspectives;False;False;;;;1610308276;;False;{};gisj2ph;False;t3_kujurp;False;False;t1_gisipgr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj2ph/;1610350066;23;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Just imagine being Marley in this case, how blissfully ignorant of them to literally just pretend like Paradis can't attack.;False;False;;;;1610308277;;False;{};gisj2s0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj2s0/;1610350067;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BrunoSaurio;;;[];;;;text;t2_f6wy2;False;False;[];;This is why Eren is the most hyped protagonist coming to this season.;False;False;;;;1610308278;;False;{};gisj2ut;False;t3_kujurp;False;False;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj2ut/;1610350068;9;True;False;anime;t5_2qh22;;0;[]; -[];;;okbuddybutbruh;;;[];;;;text;t2_9ow7haip;False;False;[];;27k? I may have supported you before watching the episode but don't get me wrong, the episode was fantastic but the ending ost wasn't fitting considering the wide range of music they had. Eren Titan reveal should've been really huge event even bigger than the Armoured and Collosal reveal according to us manga readers but it wasn't that huge;False;False;;;;1610308278;;False;{};gisj2uv;False;t3_kujurp;False;True;t1_gisiirk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj2uv/;1610350068;1;True;False;anime;t5_2qh22;;0;[]; -[];;;anusblender;;;[];;;;text;t2_d2lid;False;False;[];;I thought maybe Eren will try to ally Reiner after all this time... but NOPE. Destroy all enemies!!! Hype;False;False;;;;1610308281;;False;{};gisj33c;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj33c/;1610350072;139;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomXxZ;;;[];;;;text;t2_37lbelym;False;False;[];;It's not on Crunchyroll yet.;False;False;;;;1610308296;;False;{};gisj45k;False;t3_kujurp;False;False;t1_gisbgc0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj45k/;1610350087;28;True;False;anime;t5_2qh22;;0;[]; -[];;;manormortal;;;[];;;;text;t2_dtc68;False;False;[];;Yes after a 5 minute speech with his witch friend(s).;False;False;;;;1610308302;;False;{};gisj4kc;False;t3_kujurp;False;False;t1_gisim77;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj4kc/;1610350094;12;True;False;anime;t5_2qh22;;0;[]; -[];;;arafatnabi;;;[];;;;text;t2_ghvya;False;False;[];;No that is ep 4.;False;False;;;;1610308322;;False;{};gisj5xy;False;t3_kujurp;False;True;t1_gisj18m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj5xy/;1610350114;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JustTheSaba;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/jojoisbestanime;light;text;t2_2t1d4mm4;False;False;[];;Rest in peace willy. That was nice speech;False;False;;;;1610308334;;False;{};gisj6sz;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj6sz/;1610350126;1;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;Isayama and Mappa obviously planned this out since chapter 1.;False;False;;;;1610308344;;False;{};gisj7h2;False;t3_kujurp;False;False;t1_gisfgrb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj7h2/;1610350136;39;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;the number of times ive seen that meme on titanfolk 🤣;False;False;;;;1610308344;;False;{};gisj7he;False;t3_kujurp;False;False;t1_gisar3t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj7he/;1610350136;26;True;False;anime;t5_2qh22;;0;[]; -[];;;TatteredTongues;;;[];;;;text;t2_xbrbp;False;False;[];;No, that's episode 4, the previous one.;False;False;;;;1610308348;;False;{};gisj7rf;False;t3_kujurp;False;True;t1_gisj18m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj7rf/;1610350141;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610308353;;False;{};gisj85k;False;t3_kujurp;False;True;t1_gisaesh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj85k/;1610350147;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Miseria_25;;;[];;;;text;t2_171f2h;False;False;[];;with proper timing and editing even YouSeeBigGirlTT would have fit way better than the ost they used.;False;True;;comment score below threshold;;1610308357;;False;{};gisj8ds;False;t3_kujurp;False;True;t1_gisd37d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj8ds/;1610350151;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;okbuddybutbruh;;;[];;;;text;t2_9ow7haip;False;False;[];;They had forces ready and expected the attack but didn't think that Eren would directly attack the stage;False;False;;;;1610308358;;False;{};gisj8h4;False;t3_kujurp;False;False;t1_gisj2s0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj8h4/;1610350152;7;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;You mean Trump declaring war on Twitter?;False;False;;;;1610308367;;False;{};gisj962;False;t3_kujurp;False;True;t1_gisai0e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj962/;1610350164;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LaqOfInterest;;MAL a-amq;[];;https://myanimelist.net/animelist/LaqOfInterest;dark;text;t2_6s32u;False;False;[];;It really wouldn't make any sense to end it like that. Chapter 100 ends exactly where this episode does.;False;False;;;;1610308372;;False;{};gisj9il;False;t3_kujurp;False;False;t1_gishayd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj9il/;1610350169;42;True;False;anime;t5_2qh22;;0;[]; -[];;;SSR_Majinken;;;[];;;;text;t2_152dcz;False;False;[];;"Honestly I am at disbelief that this just happened. - -Just as he says: We declare War! EREN: ROAAAAAAAR MOFO. - -This has to be the best anime episode of all the time wth. - -The leadup up to the point where eren gave us the feeling he'd be chill with reiner, he literally was like f this last second and accept the war. - -My man. (Anime only btw) HOLYSHIT";False;False;;;;1610308377;;False;{};gisj9v4;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj9v4/;1610350174;14;True;False;anime;t5_2qh22;;0;[]; -[];;;arafatnabi;;;[];;;;text;t2_ghvya;False;False;[];;Reminder that this is not Naruto.;False;False;;;;1610308378;;False;{};gisj9xn;False;t3_kujurp;False;False;t1_gisj33c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisj9xn/;1610350175;111;True;False;anime;t5_2qh22;;0;[]; -[];;;LittleWompRat;;;[];;;;text;t2_54bxq18h;False;False;[];;"Tbf the previous for the current episode says ""declaration of war"".";False;False;;;;1610308383;;False;{};gisjaby;False;t3_kujurp;False;False;t1_gisbbwg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjaby/;1610350181;6;True;False;anime;t5_2qh22;;0;[]; -[];;;JapanPhoenix;;;[];;;;text;t2_u4vl7;False;False;[];;PATHS;False;False;;;;1610308387;;False;{};gisjald;False;t3_kujurp;False;False;t1_gisfgrb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjald/;1610350186;38;True;False;anime;t5_2qh22;;0;[]; -[];;;b0xel;;;[];;;;text;t2_od250;False;False;[];;Okay where is everyone watching this early. It's not out yet on Crunchyroll;False;False;;;;1610308392;;False;{};gisjaxh;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjaxh/;1610350191;6;True;False;anime;t5_2qh22;;0;[]; -[];;;SpaceMarine_CR;;;[];;;;text;t2_1la1dh3q;False;False;[];;#LETS FUCKING GOOOOOO;False;False;;;;1610308399;;False;{};gisjbgr;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjbgr/;1610350200;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ModieOfTheEast;;;[];;;;text;t2_g7tqk9b;False;False;[];;Well, they wouldn't notice if they don't go all at the same time. They can just do it over 4 years. Not to mention that there also seem to be countries that wouldn't even have a problem with Eldians in the first place. In the end, I am not saying it's a perfect plan but it seems to have a better chance of succeeding compared to basically fighting the whole world by attacking it. I mean, Marley was already at their limits agains just a few nations, now imagine going against all of them with less titan power on your hand.;False;False;;;;1610308400;;False;{};gisjbjo;False;t3_kujurp;False;True;t1_gisejao;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjbjo/;1610350201;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EMP_2014;;;[];;;;text;t2_emvfd;False;False;[];;"problem would be, in a sense, those civilians are quite a big part of why said leaders can take such decisions. the leaders can't built an army and all the stuff needed to go to war by themselves. - -so it probably can be said, to an extent, it is by rather blindly supporting those leaders, things came to be the way they are, hence to some degree, those civilians' responsibility too";False;True;;comment score below threshold;;1610308402;;1610309942.0;{};gisjbp1;False;t3_kujurp;False;True;t1_gish1en;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjbp1/;1610350203;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;the episode was great. the only problem was the music choice towards the end.;False;False;;;;1610308403;;False;{};gisjbq7;False;t3_kujurp;False;False;t1_gisexhg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjbq7/;1610350204;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;Reiner's voice actor deserves an Oscar for that performance. The others did wonderful like usual but my boy Reiner just wow, could feel his suffering;False;False;;;;1610308421;;False;{};gisjd2i;False;t3_kujurp;False;False;t1_gisidwb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjd2i/;1610350226;45;True;False;anime;t5_2qh22;;0;[]; -[];;;okbuddybutbruh;;;[];;;;text;t2_9ow7haip;False;False;[];;">I’ll cut my leg like Eren if it isn’t him. - -👀";False;False;;;;1610308453;;False;{};gisjfdz;False;t3_kujurp;False;True;t1_gisir3r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjfdz/;1610350262;2;True;False;anime;t5_2qh22;;0;[]; -[];;;msklss;;;[];;;;text;t2_8y9actc8;False;False;[];;Do we know if 16 is the final episode or if its gonna be a 2 cour?;False;False;;;;1610308473;;False;{};gisjgwu;False;t3_kujurp;False;True;t1_gisamcu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjgwu/;1610350286;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Y-Kun;;;[];;;;text;t2_n5tm7;False;False;[];;"Okay, this moment was sick, but not going to lie, - -[Soulmadness did it better.](https://youtu.be/B0TIbFGSi-Y?t=1121) - -Also, Eren's titan roar sounded super underwhelming? There's a lack of rage in it, maybe it's just an audio issue?";False;True;;comment score below threshold;;1610308473;;False;{};gisjgxc;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjgxc/;1610350286;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;at least we can say you arent ready for episode 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 and 16;False;False;;;;1610308473;;False;{};gisjgxw;False;t3_kujurp;False;False;t1_gisaex2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjgxw/;1610350286;6;True;False;anime;t5_2qh22;;0;[]; -[];;;PacoTang;;;[];;;;text;t2_zd2uxmw;False;False;[];;😂😂people gonna think WW3 coming;False;False;;;;1610308474;;False;{};gisjh02;False;t3_kujurp;False;False;t1_gisaeyc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjh02/;1610350287;6;True;False;anime;t5_2qh22;;0;[]; -[];;;arafatnabi;;;[];;;;text;t2_ghvya;False;False;[];;The fan sub is out on pirated sites.;False;False;;;;1610308482;;False;{};gisjhlf;False;t3_kujurp;False;True;t1_gisjaxh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjhlf/;1610350297;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hochseeflotte;;;[];;;;text;t2_38czhwoh;False;False;[];;Interesting. He must be at least somewhat close to the top of the Survey Corp if he was given that job;False;False;;;;1610308485;;False;{};gisjhue;False;t3_kujurp;False;True;t1_gisiz1h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjhue/;1610350301;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PortoGuy18;;;[];;;;text;t2_2fidx1m;False;False;[];;The War begins!!! This will never get old.;False;False;;;;1610308487;;False;{};gisjhyv;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjhyv/;1610350303;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomXxZ;;;[];;;;text;t2_37lbelym;False;False;[];;Nah, there are some very toxic people out there who are salty about the music choice + the MAPPA haters, I don't think it will top those episode ratings.;False;False;;;;1610308489;;False;{};gisji3a;False;t3_kujurp;False;False;t1_gisc52c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisji3a/;1610350305;5;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;even episode 14;False;False;;;;1610308490;;False;{};gisji5d;False;t3_kujurp;False;True;t1_gisajvw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisji5d/;1610350306;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dister_;;;[];;;;text;t2_525l8hrt;False;False;[];;Pretty much the same and both the series are among my favorites and they switch places with whos in top if we are talkinga anime or source material;False;False;;;;1610308494;;False;{};gisjiid;False;t3_kujurp;False;False;t1_gisbkjl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjiid/;1610350312;10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610308496;;False;{};gisjinl;False;t3_kujurp;False;False;t1_gisjaxh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjinl/;1610350314;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Kuro2810;;;[];;;;text;t2_zvwr3;False;False;[];;That's exactly why. I was expecting more people to get that, and i loved that moment since Tibur said the exact same thing as his mum, so I thought maybe eren wouldn't destroy the whole place but alas...;False;False;;;;1610308499;;False;{};gisjiu8;False;t3_kujurp;False;False;t1_gisioq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjiu8/;1610350316;503;True;False;anime;t5_2qh22;;0;[]; -[];;;drtoszi;;;[];;;;text;t2_jp26b;False;False;[];;“Ohshitohshitohshit, stop talking stop talking...!!”;False;False;;;;1610308502;;False;{};gisjj1g;False;t3_kujurp;False;False;t1_gisbtzy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjj1g/;1610350319;958;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;and episode 14;False;False;;;;1610308502;;False;{};gisjj1u;False;t3_kujurp;False;True;t1_gisamcu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjj1u/;1610350319;1;True;False;anime;t5_2qh22;;0;[]; -[];;;macedonianmoper;;;[];;;;text;t2_71boinia;False;False;[];;">aot puts a motive and backstory behind every action and judgement. - - And it's amazing how far back you can trace this, like as seasons go on everything changes when you watch it again. - - Reiner's ""hometown"", annie thinking that it was worth saving him the first time he transformed, Ymir being like part of an underground cult and then being turned into a titan (I was like WTF happened, are you really not going to explain it further?). - - I'm so glad I basically just watched this for the first time. I saw season 1 when it first came out but I didn't touch it again until this year when friends insisted I see it. I hate having to wait but at least I can participate in these discussion threads";False;False;;;;1610308508;;False;{};gisjjjc;False;t3_kujurp;False;False;t1_gishl8w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjjjc/;1610350327;524;True;False;anime;t5_2qh22;;0;[]; -[];;;Chenestla;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4gg635nn;False;False;[];;Imagine if this gets on r/all people would be so confused;False;False;;;;1610308511;;False;{};gisjjq5;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjjq5/;1610350330;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NekoWafers;;;[];;;;text;t2_iau18;False;False;[];;I'm so used to the [Loliconics version](https://www.youtube.com/watch?v=gVtuD_6xSrM) that the real one seems weird now.;False;False;;;;1610308519;;False;{};gisjkbx;False;t3_kuk28h;False;True;t3_kuk28h;/r/anime/comments/kuk28h/chika_dance_kaguyasama_love_is_war/gisjkbx/;1610350339;1;True;False;anime;t5_2qh22;;0;[]; -[];;;reddadz;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MysticEyes/;light;text;t2_oek5m;False;True;[];;"Sorry, your comment has been removed. - -- Direction toward specific sources of pirated content of any type is not allowed. This includes links to unofficial scanlations, streams, uploads, and download sources of any copyrighted content. It also includes direction towards specific sites offering this type of content, and watermarks mentioning such sites in uploaded images/videos. - - Discussion of piracy in general is allowed, **but naming, linking to, or hinting towards specific sources is not. Offering to send links via PM is also not allowed.** For more details, see our [full rules on illegal content](https://www.reddit.com/r/anime/wiki/rules#wiki_do_not_link_to_illegal_content). - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610308519;moderator;False;{};gisjkda;False;t3_kujurp;False;True;t1_gisilm6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjkda/;1610350340;0;True;False;anime;t5_2qh22;;0;[]; -[];;;MusicHitsImFine;;;[];;;;text;t2_8y839;False;False;[];;If Shapiro wasn't a fuckin' idiot.;False;False;;;;1610308527;;False;{};gisjkv0;False;t3_kujurp;False;True;t1_gisb0e6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjkv0/;1610350347;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Neverx_13;;;[];;;;text;t2_8708yf9;False;False;[];;16 is only adapting up to a certain point in the manga, should be either another cour or a movie or two after this season, don't worry.;False;False;;;;1610308530;;False;{};gisjl37;False;t3_kujurp;False;False;t1_gisjgwu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjl37/;1610350351;4;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;Reiner's fucking face at the beginning. Yea, you better be terrified buddy.;False;False;;;;1610308535;;False;{};gisjleq;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjleq/;1610350356;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BladerRex17;;;[];;;;text;t2_11zfb6qk;False;False;[];;Anyone with heart problems would've fucking died by now holy shit that was the most intense anime episode I've ever watched. Eren's sudden declaration and turning into a titan at the end was so perfect. One week wait is too much man;False;False;;;;1610308536;;False;{};gisjliy;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjliy/;1610350358;15;True;False;anime;t5_2qh22;;0;[]; -[];;;SweetestPumpkin;;;[];;;;text;t2_15rr31;False;False;[];;When does it come out on cruncyroll?;False;False;;;;1610308541;;False;{};gisjltc;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjltc/;1610350362;2;True;False;anime;t5_2qh22;;0;[]; -[];;;___super_human___;;;[];;;;text;t2_6oooyw30;False;False;[];;that last eye animation was so fucking sick;False;False;;;;1610308546;;False;{};gisjm6j;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjm6j/;1610350369;3;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;EREN IS RUTHLESS. I LOVE OUR BOY SO MUCH. YOU WILL GET YOUR FREEDOM;False;False;;;;1610308549;;False;{};gisjmfu;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjmfu/;1610350374;8;True;False;anime;t5_2qh22;;0;[]; -[];;;arafatnabi;;;[];;;;text;t2_ghvya;False;False;[];;Soulmadness wasnt even close. The only thing good was ost. Mappa's executed it perfectly.;False;False;;;;1610308559;;False;{};gisjn5n;False;t3_kujurp;False;False;t1_gisjgxc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjn5n/;1610350384;9;True;False;anime;t5_2qh22;;0;[]; -[];;;fedfan4life;;;[];;;;text;t2_10jfcn;False;False;[];;He does resemble Armin but he's way too tall.;False;False;;;;1610308560;;False;{};gisjn8z;False;t3_kujurp;False;True;t1_gisir3r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjn8z/;1610350387;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WarBlaster;;;[];;;;text;t2_523l3ng0;False;False;[];;Let's make this #1 in IMDb top 100 episodes;False;False;;;;1610308564;;False;{};gisjnjf;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjnjf/;1610350391;8;True;False;anime;t5_2qh22;;0;[]; -[];;;MilkToastKing;;;[];;;;text;t2_13tvvu;False;False;[];;"Hold on can someone clarify: Why did Marley initially instigate an attack on Paradis if the Tybur's secretly knew that the King would never attack them? - -Edit: So basically - -1) The Tyburs knew and were possibly keeping it secret since they were hands-off - -2) Marely was behind in the technology race and could have easily decided that grabbing the founding titan and other resources would boost its military prowess - -3) We'll continue to see this plot point develop";False;False;;;;1610308568;;1610328202.0;{};gisjnrv;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjnrv/;1610350395;101;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610308586;;False;{};gisjp3k;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjp3k/;1610350416;1;True;False;anime;t5_2qh22;;0;[]; -[];;;deleted-user;;MAL;[];;http://myanimelist.net/animelist/AKC47;dark;text;t2_aj4jy;False;False;[];;"Gintama: ""[Yes](https://www.youtube.com/watch?v=rr473EG4-Yg), and [everything is a joke to me](https://www.youtube.com/watch?v=2hGSfJGBKJ0).""";False;False;;;;1610308591;;False;{};gisjphw;False;t3_kujurp;False;False;t1_gisgffp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjphw/;1610350422;4;True;False;anime;t5_2qh22;;0;[]; -[];;;-MoonStar-;;;[];;;;text;t2_4kcwpfoo;False;False;[];;Same here. The entire episode I had to take a few breaths because damn I was so hyped;False;False;;;;1610308592;;False;{};gisjpkq;False;t3_kujurp;False;False;t1_gisd9iy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjpkq/;1610350423;14;True;False;anime;t5_2qh22;;0;[]; -[];;;drtoszi;;;[];;;;text;t2_jp26b;False;False;[];;*imperial march starts playing*;False;False;;;;1610308596;;False;{};gisjpvy;False;t3_kujurp;False;True;t1_gisg9of;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjpvy/;1610350428;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lucacp_ysoz;;MAL;[];;http://myanimelist.net/profile/SoZLuka;dark;text;t2_gch7f;False;False;[];;"Declares war, is dead 5s after the declaration. - -NICE";False;False;;;;1610308598;;False;{};gisjpz8;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjpz8/;1610350430;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Lil_Peep4Ever;;;[];;;;text;t2_33g5ma4k;False;False;[];;Wait what in the actual fuck, this might be the greatest thing I've ever watched;False;False;;;;1610308603;;False;{};gisjqdw;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjqdw/;1610350436;102;True;False;anime;t5_2qh22;;0;[]; -[];;;yearningcraving;;;[];;;;text;t2_8nj56nhs;False;False;[];;LETS FUCKING GOOOOOOOOOOOOO;False;False;;;;1610308613;;False;{};gisjr45;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjr45/;1610350448;2;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;Lol. I am laughing at the people who are confused af;False;False;;;;1610308615;;False;{};gisjr94;False;t3_kujurp;False;False;t1_gisdul6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjr94/;1610350450;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610308615;;False;{};gisjra4;False;t3_kujurp;False;True;t1_gisg9of;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjra4/;1610350450;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomXxZ;;;[];;;;text;t2_37lbelym;False;False;[];;Delayed release on some sites.;False;False;;;;1610308617;;False;{};gisjrey;False;t3_kujurp;False;True;t1_gisgqa8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjrey/;1610350452;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pitiful_Alps_6246;;;[];;;;text;t2_7xhshv1s;False;False;[];;"I love Eren. - -So - -god damn - -much.";False;False;;;;1610308622;;False;{};gisjrp5;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjrp5/;1610350456;5;True;False;anime;t5_2qh22;;0;[]; -[];;;dark77638;;;[];;;;text;t2_14cb1i;False;False;[];;Dont worry i think we will see you use 5e word again;False;False;;;;1610308635;;False;{};gisjsnt;False;t3_kujurp;False;False;t1_gisbj8o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjsnt/;1610350473;5;True;False;anime;t5_2qh22;;0;[];True -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;3K in an hour and the official subs aren't even out yet. Safe to say it's going to set some records.;False;False;;;;1610308643;;False;{};gisjt8i;False;t3_kujurp;False;True;t1_giscepb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjt8i/;1610350482;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;He has ascended like truck-kun and bench-san;False;False;;;;1610308643;;False;{};gisjta2;False;t3_kujurp;False;False;t1_gisg9of;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjta2/;1610350483;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Biba99;;;[];;;;text;t2_5bwzvqqa;False;False;[];;Eren’s transformation was executed perfectly;False;False;;;;1610308655;;False;{};gisju5i;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisju5i/;1610350497;3;True;False;anime;t5_2qh22;;0;[]; -[];;;greyviewing;;;[];;;;text;t2_44j04vqh;False;False;[];;"WE'RE BACK - -I'm almost glad for that two week wait, it'll make the wait until next week seem like nothing. Anyway: - -The control Eren exerted over the situation with Reiner was amazing. Eren is now perfectly okay with both thinking Falco is a good person, and also being totally ready to hold his life hostage just to talk to Reiner. - -so Bertolt's dad is dead. Really drives in that gritty despair for his character. He had one of the most unglamorous deaths ever, and now his family seems to be basically gone. Annie's father is really interesting - can't see him not showing up later given how he correctly believes Annie to be alive. - -Pieck and Zofia are cute :) - -God, it's insane how much Eren just... *understands.* He literally has Reiner's entire initial motivation and current breakdown down pat, and understands the nuances of his world likely better than anyone else living in it. Yet he still finds that he has to exterminate the Marleyans. It's both terrifying and amazing to see a character who's so simultaneously motivated towards one goal and yet informed of how singular his own vision is. - -Uh, who is that soldier? I assume a Paradisian, but I can't figure it out. I at first thought they were female, but they get referred to as ""he"". They're blond, but they look too tall to be Armin. Honestly stumped on this one. Pieck has apparently seen him before, so unless it's Armin with a growth spurt i'm clueless. - -YES. PIECK FANBOYS CLUB. DON'T DIE. PLEASE - -The way Willy's performance slowly turns into more and more of a sincere speech is amazing. I also love the constant cross-cutting between his speech and Eren and Reiner - the tension-building is masterful. - -Eren forgetting how edgy he was, lol. Really shows his growth, though. - -There's our first big moment, and it was incredible. Can't help but think about how insane this is in-universe - Eren attacks literally *seconds* after his existence is revealed to the world, and he presumably kills Willy, although I think that he may survive since it was cut off right as he was falling. - -A Titan fight next time. It's been ~~four years~~ a while.";False;False;;;;1610308665;;False;{};gisjuyt;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjuyt/;1610350509;51;True;False;anime;t5_2qh22;;0;[]; -[];;;SirVicke;;;[];;;;text;t2_gbh8m;False;False;[];;I have not seen the episode yet but i have read the manga. How far does the Episode go? Are the Titans CGI or drawn?;False;False;;;;1610308666;;False;{};gisjv08;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjv08/;1610350510;1;True;False;anime;t5_2qh22;;0;[]; -[];;;squotty;;;[];;;;text;t2_cs5hz;False;False;[];;Eren is the OG forward movement keeper, dude just can't be stopped.;False;False;;;;1610308669;;False;{};gisjv8c;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjv8c/;1610350514;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Cutler_Beckett;;;[];;;;text;t2_elnw3;False;False;[];;God damn I wish we could have had 3 episodes released at once. I’m a manga reader and I was still so damn hyped. I reread the chapters for this part and they executed things so well with the show.;False;False;;;;1610308669;;False;{};gisjv9g;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjv9g/;1610350514;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610308673;;False;{};gisjvj3;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjvj3/;1610350518;1;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;“oh... did i say that? forget that i did”;False;False;;;;1610308677;;False;{};gisjvtp;False;t3_kujurp;False;False;t1_gisbinb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjvtp/;1610350523;27;True;False;anime;t5_2qh22;;0;[]; -[];;;Neronoah;;;[];;;;text;t2_igav3;False;False;[];;"I can't believe I have to say this, but the decisions of a government may not exactly align with its people. While a country can act in heinous ways, civilians may not necessarily have anything to do with that. - -And even without getting into the whole role propaganda can play in the population, specially with totalitarian governments.";False;False;;;;1610308685;;False;{};gisjwf3;False;t3_kujurp;False;False;t1_gisixl5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjwf3/;1610350532;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;Until my enemies are destroyed;False;False;;;;1610308686;;False;{};gisjwhn;False;t3_kujurp;False;False;t1_gisd65h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjwhn/;1610350533;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"*Action:* I sleep - -*Intense conversations*: **LETS FUCKING GOOOOO**";False;False;;;;1610308687;;False;{};gisjwja;False;t3_kujurp;False;False;t1_gisehmo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjwja/;1610350533;18;True;False;anime;t5_2qh22;;0;[]; -[];;;CO_ORDINATE;;;[];;;;text;t2_kf9hyuw;False;False;[];;people need to realise sound department is the same as last 3 seasons, mappa only animates.;False;False;;;;1610308698;;False;{};gisjxe5;False;t3_kujurp;False;False;t1_gisjn5n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjxe5/;1610350547;16;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;Btw which hash tag is trending. Can't see anything trending in the UK twitter;False;False;;;;1610308710;;False;{};gisjxwp;False;t3_kujurp;False;False;t1_gisdul6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjxwp/;1610350555;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Taha_Amir;;;[];;;;text;t2_23gv6vze;False;False;[];;I was gonna say something but i realised its a spoiler so ill say it when that episode goes out if i remember to say it;False;False;;;;1610308711;;False;{};gisjy0y;False;t3_kujurp;False;False;t1_gisboc1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjy0y/;1610350556;13;True;False;anime;t5_2qh22;;0;[]; -[];;;ZackDB201;;;[];;;;text;t2_1sxfbwvn;False;False;[];;i haven't noticed any CGI so no;False;False;;;;1610308713;;False;{};gisjyam;False;t3_kujurp;False;True;t1_gisjv08;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjyam/;1610350560;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SoMuchHatred;;;[];;;;text;t2_o15bh;False;False;[];;"I'm not sure we should be assuming too much on the state of the eastern countries just yet, considering we only know a little about a single character so far. - -In general though this infiltration plan is easier said than done, considering that Paradis didn't have a navy the last time we saw them and would likely struggle to build one up in just 4 years. And if if they do have one now, it would only take one ship getting caught attempting to infiltrate another country to risk putting the whole world on alert. And if a country decided to do mass testing for Eldian blood, then the whole thing would fall through anyway.";False;False;;;;1610308718;;False;{};gisjyq4;False;t3_kujurp;False;True;t1_gisius3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjyq4/;1610350566;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Technically correct is best correct;False;False;;;;1610308719;;False;{};gisjyu2;False;t3_kujurp;False;False;t1_gisgkax;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisjyu2/;1610350568;14;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;A list i can get behind;False;False;;;;1610309518;;False;{};gislklk;False;t3_kuk2nn;False;True;t1_gise19k;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gislklk/;1610351459;0;True;False;anime;t5_2qh22;;0;[]; -[];;;tenkensmile;;;[];;;dark;text;t2_j0mmc;False;False;[];;"1. Spirited Away - -1. Death Note - -1. JoJo's Bizarre Adventure - -1. Fate/Zero - -1. Dragon Ball";False;False;;;;1610309521;;False;{};gislku0;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gislku0/;1610351462;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IXajll;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ixajii;light;text;t2_ob6j8;False;False;[];;Sieg from Fate/Apocrypha.;False;False;;;;1610309654;;False;{};gislunr;False;t3_kuk2au;False;True;t3_kuk2au;/r/anime/comments/kuk2au/characters_you_think_are_overhated/gislunr/;1610351609;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hamster-and-cheese;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_50rbub1q;False;False;[];;"1. Assassination Classroom - -2. Clannad and Clannad afterstory - -3. Re:Zero - -4. Naruto - -5. Violet Evergarden";False;False;;;;1610310034;;False;{};gismn3w;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gismn3w/;1610352038;3;True;False;anime;t5_2qh22;;0;[]; -[];;;xiavORliab;;;[];;;;text;t2_4dniju7s;False;False;[];;"Malty from Rising Shield Hero -I dont have a reason, its just... well I don't know. - -I also got another character but she isn't from a anime show, she's from a manga series. She's the girl from Love Holiday who cheated on her husband with this guy whose also married to another girl. It just seems so unfair for people to put all the blames on her and not the guy at all. Trust me I've seen the reviews... like god damn.";False;False;;;;1610310214;;False;{};gisn0v1;False;t3_kuk2au;False;True;t3_kuk2au;/r/anime/comments/kuk2au/characters_you_think_are_overhated/gisn0v1/;1610352249;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;SLeepEasyBreezy;;;[];;;;text;t2_4tpzis2k;False;False;[];;This topic is specifically to discuss anime that has 1 (one) red glowing eye. If you'd like to talk about all the other colours and a mixture of a number of eyes, you are welcome to make your own topic.;False;False;;;;1610310362;;False;{};gisnbpn;True;t3_kukbld;False;True;t1_gisitkf;/r/anime/comments/kukbld/what_is_the_originsignificance_of_a_single/gisnbpn/;1610352414;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Did you read my thoughts on him?;False;False;;;;1610310436;;False;{};gisnha1;False;t3_kuk2au;False;False;t1_gisi8vq;/r/anime/comments/kuk2au/characters_you_think_are_overhated/gisnha1/;1610352498;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610310524;;False;{};gisnnok;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gisnnok/;1610352598;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Aureus23;;;[];;;;text;t2_lnlscw0;False;False;[];;Kirito from SAO. Everybody jealous cuz he's cool and gets all the girls!;False;False;;;;1610310573;;False;{};gisnra8;False;t3_kuk2au;False;True;t3_kuk2au;/r/anime/comments/kuk2au/characters_you_think_are_overhated/gisnra8/;1610352655;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;I want to but the link says the page was not found. If you could post again I'd like to read it.;False;False;;;;1610310717;;False;{};giso2e9;False;t3_kuk2au;False;True;t1_gisnha1;/r/anime/comments/kuk2au/characters_you_think_are_overhated/giso2e9/;1610352822;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dragonice06;;;[];;;;text;t2_2bxwjamh;False;False;[];;"1. Clannad After Story -2. Kimi no na wa. -3. Sakurasou no Pet na Kanojo -4. AnoHana -5. A Place Further Than The Universe";False;False;;;;1610310815;;False;{};giso9tg;False;t3_kuk2nn;False;False;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/giso9tg/;1610352932;6;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Click reply on the comment and then click on the link of you're on mobile.;False;False;;;;1610311000;;False;{};gisonkq;False;t3_kuk2au;False;True;t1_giso2e9;/r/anime/comments/kuk2au/characters_you_think_are_overhated/gisonkq/;1610353147;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610312038;;False;{};gisqxnj;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gisqxnj/;1610354362;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610312242;;False;{};gisrdf7;False;t3_kuk2au;False;True;t1_gisn0v1;/r/anime/comments/kuk2au/characters_you_think_are_overhated/gisrdf7/;1610354623;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Rigoku;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Elitar;light;text;t2_2j07de1;False;False;[];;Are there really people who are jealous over some non existant comic book/cartoon character ?;False;False;;;;1610312607;;False;{};giss50d;False;t3_kuk2au;False;True;t1_gisnra8;/r/anime/comments/kuk2au/characters_you_think_are_overhated/giss50d/;1610355047;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;xiavORliab;;;[];;;;text;t2_4dniju7s;False;False;[];;"Yes 100% -I hate the people around her more than her.";False;False;;;;1610312801;;False;{};gissj87;False;t3_kuk2au;False;True;t1_gisrdf7;/r/anime/comments/kuk2au/characters_you_think_are_overhated/gissj87/;1610355265;0;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Alternatively, you could could hover over the link if you're on desktop and it'll show up as the the tooltip as alt-text;False;False;;;;1610312870;;False;{};gissobd;False;t3_kuk2au;False;False;t1_giso2e9;/r/anime/comments/kuk2au/characters_you_think_are_overhated/gissobd/;1610355342;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;"Ok, ok. That's how science progressed in past times and you do have a point. - -In my humble opinion, this is a flaw in the anime. In that time where the FMA:B is situated the ethical values were not the same as today's. If it was happening at the beginning of the 19XX I think Shou Tucker method wouldn't be so disapproved, as of nowadays. - -&#x200B; - -The thing is: is it worth sacrificing lives to give creatures the ability to speak? From an academic standpoint, it seems like a fair price to pay for such an amazing feat. But should things be this way? I guess it goes way against the laws of nature. - -&#x200B; - -I don't know anything about the subject but nice discussion you brought up.";False;False;;;;1610313225;;False;{};gisteau;False;t3_kuk2au;False;True;t1_gisonkq;/r/anime/comments/kuk2au/characters_you_think_are_overhated/gisteau/;1610355734;3;True;False;anime;t5_2qh22;;0;[]; -[];;;punyuni;;;[];;;;text;t2_3q1mvnyh;False;False;[];;"1. Your name -2. Steins Gate -3. Mob Psycho (nealry interchangeable with 2.) -4. kaguya sama (w/ manga) -5. attack on titan";False;False;;;;1610313594;;False;{};gisu4z6;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gisu4z6/;1610356141;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Chadest_senpai;;;[];;;;text;t2_8egaptzh;False;False;[];;"Subaru from Re:Zero. - - -Very complex and well written character. Get saved by emilia dozen of times and devoted himself to help her. He a simp. But when the same thing happens to a cute waifu, she devoted, kind etc.";False;False;;;;1610313649;;False;{};gisu901;False;t3_kuk2au;False;True;t3_kuk2au;/r/anime/comments/kuk2au/characters_you_think_are_overhated/gisu901/;1610356201;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Chadest_senpai;;;[];;;;text;t2_8egaptzh;False;False;[];;I wouldn't say jealous, but this fictional character sure does live rent free in people minds.;False;False;;;;1610313760;;False;{};gisuh37;False;t3_kuk2au;False;False;t1_giss50d;/r/anime/comments/kuk2au/characters_you_think_are_overhated/gisuh37/;1610356323;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheHDEYGuy;;;[];;;;text;t2_45mpp7i4;False;False;[];;"1. Attack on Titan -2. Vinland Saga -3. Made in Abyss (Movie 3) -4. Toradora -5. Demon Slayer (ep 19 hard carry)";False;False;;;;1610314233;;False;{};gisvflh;False;t3_kuk2nn;False;False;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gisvflh/;1610356835;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rasouddress;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/rasouddress/;light;text;t2_p87m5;False;False;[];;GLT, School-Live, Hi Score Girl II, The Demon Girl Next Door, BOFURI;False;False;;;;1610314442;;False;{};gisvusj;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gisvusj/;1610357072;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;I just learned both ways thanks to you.;False;False;;;;1610315306;;False;{};gisxn8r;False;t3_kuk2au;False;True;t1_gissobd;/r/anime/comments/kuk2au/characters_you_think_are_overhated/gisxn8r/;1610358034;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OneMoreDuncanIdaho;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/a_trisolaran;light;text;t2_i31pk;False;False;[];;I think most people from pretty much anytime would view him as unethical, it's his own daughter lol. Even when kids were experimented on or used as slave labor or whatever, they usually used an ethnic excuse or looked down on poor people or something, he used his only child.;False;False;;;;1610315496;;False;{};gisy1rd;False;t3_kuk2au;False;True;t1_gisteau;/r/anime/comments/kuk2au/characters_you_think_are_overhated/gisy1rd/;1610358248;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;"I remember that Spartans used to throw ""defected"" newborn from a cliff because they couldn't become proper warriors. - -These things are madness, literally. But happened in the past more than we know.";False;False;;;;1610315888;;False;{};gisyvft;False;t3_kuk2au;False;False;t1_gisy1rd;/r/anime/comments/kuk2au/characters_you_think_are_overhated/gisyvft/;1610358692;1;True;False;anime;t5_2qh22;;0;[]; -[];;;melvinlee88;;MAL a-amq;[];;https://myanimelist.net/profile/Ryan_Melvin15;dark;text;t2_156788;False;False;[];;"1. Tatami Galaxy - -2. Houseki no Kuni - -3. Shouwa Genroku Rakugo Shinjuu - -4. Soredemo Machi wa Mawatteiru - -5. Katanagatari";False;False;;;;1610316467;;False;{};git033i;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/git033i/;1610359338;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wealldieeventually1;;;[];;;;text;t2_7v5s33r7;False;False;[];;"Evangelion -KareKano -FLCL -Mob psycho -Violet evergarden";False;False;;;;1610316992;;False;{};git18vc;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/git18vc/;1610359968;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OneMoreDuncanIdaho;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/a_trisolaran;light;text;t2_i31pk;False;False;[];;"Sure but even then they had the excuse of ""defectiveness."" If you plopped Shou Tucker in ancient sparta I doubt his neighbors would think him a good guy or ethical for murdering a healthy toddler that's his only child.";False;False;;;;1610317130;;False;{};git1jgi;False;t3_kuk2au;False;True;t1_gisyvft;/r/anime/comments/kuk2au/characters_you_think_are_overhated/git1jgi/;1610360133;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;Thanks!;False;False;;;;1610317162;;False;{};git1lpd;False;t3_kuk2nn;False;True;t1_gislklk;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/git1lpd/;1610360166;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;"I wonder if he actually succeed and created the ""perfect chimera"" if things would turnout differently for him";False;False;;;;1610317420;;False;{};git255k;False;t3_kuk2au;False;True;t1_git1jgi;/r/anime/comments/kuk2au/characters_you_think_are_overhated/git255k/;1610360456;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Well, from an ethical POV, I'd say it's a grey area. From an academic POV, I'm all up for it. For all intents and purposes, I've even signed myself up for such science, that is to say I've decided to donate my body to my university for medical and scientific research purposes.;False;False;;;;1610317597;;1610318674.0;{};git2imr;False;t3_kuk2au;False;True;t1_gisteau;/r/anime/comments/kuk2au/characters_you_think_are_overhated/git2imr/;1610360654;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;Idk if I should upvote you or downvote you. Cuz while I do agree Kirito is overhated, the reason you provide is so weird...;False;False;;;;1610318952;;False;{};git5ddu;False;t3_kuk2au;False;True;t1_gisnra8;/r/anime/comments/kuk2au/characters_you_think_are_overhated/git5ddu/;1610362193;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DimPip007;;;[];;;;text;t2_47byu5m0;False;False;[];;"1. Attack on Titan -2. Legend of the Galactic Heroes -3. Vinland Saga -4. The Promised Neverland -5. Steins; Gate";False;False;;;;1610320174;;False;{};git7waz;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/git7waz/;1610363573;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pranda;;;[];;;;text;t2_8cs12;False;False;[];;"Top 5, in order: - -1. Princess Tutu. Not perfect and potentially not even as good/executed in some aspects to the others below this but probably the perfect mix of my favorite elements of everything: music, fairytale-like setting, great cast of characters... - - -2. Attack on Titan (depends on the ending it may move up or down). I’m an anime only so I have no idea what I’m in for. Debating between this one and... - - -3. K-On! I debated between this and Hibike Euphonium and Hyouka, but K-On is more my style. I would put more KyoAni in here but I want to give some space for other stuff. - - -4. Higurashi S1 and Kai. Haven’t seen the others including the currently airing one. May move depending on my take on it when I get around to watching it. - - -5. Cross Game. Out of the many sports anime, this one takes the cake for the most hype and chill and heart-wrenching and romantic at once.";False;False;;;;1610320611;;False;{};git8t7n;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/git8t7n/;1610364062;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Denzel_Potato09;;;[];;;;text;t2_5upv9a99;False;False;[];;Dangg Shouwa Genroku, I heard great reviews of it, is it that good? I might have to watch it;False;False;;;;1610321389;;False;{};gitad43;True;t3_kuk2nn;False;True;t1_git033i;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gitad43/;1610364921;2;True;False;anime;t5_2qh22;;0;[]; -[];;;melvinlee88;;MAL a-amq;[];;https://myanimelist.net/profile/Ryan_Melvin15;dark;text;t2_156788;False;False;[];;It's pretty good but very very different. At times it doesn't feel like an anime, a very human drama.;False;False;;;;1610323764;;False;{};gitf74u;False;t3_kuk2nn;False;True;t1_gitad43;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gitf74u/;1610367699;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Killvinn;;;[];;;;text;t2_q38u8;False;False;[];;"1. Fullmetal Alchemist Brotherhood -2. Sangatsu no Lion -3. My Hero Academia -4. Haikyuu -5. Rascal Does Not Dream of Bunny Girl Senpai";False;False;;;;1610324778;;False;{};gith9sx;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gith9sx/;1610368958;2;True;False;anime;t5_2qh22;;0;[]; -[];;;S1rRobin;;;[];;;;text;t2_3w20qlc8;False;False;[];;"1. Bunny Girl Senpai -2. Hyouka -3. Steins;gate -4. Violet Evergarden -5. Fate:Zero - -On another note, I adored the ReLIFE manga but I've been hesitant to watch the anime because a few people have told me it isn't as good, so its nice to see that you enjoyed it.";False;False;;;;1610325287;;False;{};gitiam7;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gitiam7/;1610369607;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigfrickenorange;;;[];;;;text;t2_60ujz720;False;False;[];;"1. Hunter x Hunter -2. Toradora! -3. Attack on Titan -4. Full Metal Alchemist Brotherhood -5. Demon Slayer - -I’d say a rather large jump between my top 3 and the other two. I’m not quite done with demon slayer but I think it could pass fmab, I honestly think that it’s super overrated.";False;False;;;;1610327644;;False;{};gitmzpc;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gitmzpc/;1610372724;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KK-Hunter;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/K-Khan&view=tile&status=7";light;text;t2_em45rsk;False;False;[];;"1. Attack on Titan -2. Monogatari Series -3. Berserk (Manga) -4. Spice and Wolf (including the LN) -5. Fate Series (including VNs)";False;False;;;;1610328511;;False;{};gitorn4;False;t3_kuk2nn;False;False;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gitorn4/;1610373876;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bluenu;;;[];;;;text;t2_645b5;False;False;[];;"1. Monster -2. Jojo's Bizarre Adventure -3. Monogatari Series -4. Steins;gate -5. Mob Psycho 100? A lot of competition for this spot.";False;False;;;;1610328825;;False;{};gitpfru;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gitpfru/;1610374318;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hotspur_98;;;[];;;;text;t2_3x0odyiz;False;False;[];;"1. OreGairu - -2. Steins Gate - -3. Bunny Girl Senpai - -4. Fate Stay Night UBW - -5. Dusk Maiden of Amnesia";False;False;;;;1610328960;;False;{};gitppje;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gitppje/;1610374495;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abeneezer;;;[];;;;text;t2_7dumy;False;False;[];;ReLife gang;False;False;;;;1610329466;;False;{};gitqrzn;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gitqrzn/;1610375183;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ODMAN03;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Protogeist/;light;text;t2_16pj5i;False;False;[];;"1. Your Name -2. NGE: End of Evangelion -3. Little Witch Academia -4. Ergo Proxy -5. Yuru Camp";False;False;;;;1610331193;;False;{};gituhst;False;t3_kuk2nn;False;False;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gituhst/;1610377652;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hellthrower;;MAL;[];;https://myanimelist.net/profile/Hellthrower;dark;text;t2_kguh4;False;False;[];;"My top 5 are my favorites (not which I consider the best necessarily). That said: - -1. Fate -2. Re:Zero -3. Kaguya-sama -4. Attack on Titan -5. Monogatari";False;False;;;;1610332785;;False;{};gitxqow;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gitxqow/;1610379834;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Denzel_Potato09;;;[];;;;text;t2_5upv9a99;False;False;[];;Yuru Camp Gang! Love that Anime so much;False;False;;;;1610332992;;False;{};gity52w;True;t3_kuk2nn;False;True;t1_gituhst;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gity52w/;1610380110;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Denzel_Potato09;;;[];;;;text;t2_5upv9a99;False;False;[];;You're a man of culture putting OreGairu at #1!;False;False;;;;1610333126;;False;{};gityegm;True;t3_kuk2nn;False;True;t1_gitppje;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gityegm/;1610380289;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Denzel_Potato09;;;[];;;;text;t2_5upv9a99;False;False;[];;Nice to see people still adoring ReLife;False;False;;;;1610333193;;False;{};gityje7;True;t3_kuk2nn;False;True;t1_gitqrzn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gityje7/;1610380379;1;True;False;anime;t5_2qh22;;0;[]; -[];;;StrangeGuy1787;;;[];;;;text;t2_8kbg2jdk;False;False;[];;"1. Toradora! -2. Your Name -3. Anohana -4. Attack on Titan -5. Golden Time";False;False;;;;1610333586;;False;{};gitzbwr;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gitzbwr/;1610380946;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sharingan123412;;;[];;;;text;t2_wvfr9;False;False;[];;"1. FMAB -2. Steins;Gate -3. Monster -4. Hunter x Hunter 2011 -5. Code Geass - -HMs: Attack on Titan, Mob Psycho 100";False;False;;;;1610333617;;False;{};gitze4l;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gitze4l/;1610380988;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Denzel_Potato09;;;[];;;;text;t2_5upv9a99;False;False;[];;"Hey thanks! Yeah I absolutely loved and adored ReLife, that Anime set the bar high for me but it was finally dethroned haha. - -But still worthy of my Top 5 of course";False;False;;;;1610333951;;False;{};giu0202;True;t3_kuk2nn;False;True;t1_gitiam7;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/giu0202/;1610381451;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Neonyze;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Automemories;light;text;t2_k15fw;False;False;[];;Hibike is godlike, I can't believe it took me so long to watch it. Did not expect to love these characters so much.;False;False;;;;1610336355;;False;{};giu4ks1;False;t3_kuk2nn;False;True;t1_gisc2xp;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/giu4ks1/;1610384780;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SocialLoser739;;;[];;;;text;t2_4ttuko0s;False;False;[];;Zenitsu from demon slayer(I feel like people are just hating him cuz it's a popular anime and people take every chance they can to hate him);False;False;;;;1610339872;;False;{};giub6wp;False;t3_kuk2au;False;True;t3_kuk2au;/r/anime/comments/kuk2au/characters_you_think_are_overhated/giub6wp/;1610389607;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkSpecterr;;;[];;;;text;t2_4fwnyyke;False;False;[];;Thank you. We share 2/5, Higurashi and AOT, and I never expected to see Higurashi in another person’s top 5.;False;False;;;;1610345164;;False;{};giuja12;False;t3_kuk2nn;False;False;t1_gise19k;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/giuja12/;1610395385;1;True;False;anime;t5_2qh22;;0;[]; -[];;;limbo_2004;;;[];;;;text;t2_3c5fh2zj;False;False;[];;"1. Steins; Gate -2. Code Geass -3. Kimi no na wa -4. Attack on Titan -5. Death Note -6. Toradora/Haikyuu (if you don't want to count movies)";False;False;;;;1610345602;;False;{};giujvhy;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/giujvhy/;1610395826;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mango145;;;[];;;;text;t2_7gkwgk8i;False;False;[];;"1. Hikaru no go -2. Hajime no ippo -3. Ranma 1/2 -4. Azumanga Daioh -5. Sword art online";False;False;;;;1610347383;;False;{};gium7ij;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/gium7ij/;1610397462;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jetlightbeam;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;http://www.anime-planet.com/forum/members/;light;text;t2_16fk5q;False;False;[];;"1. Naruto -2. Dragonball -3. Dragonball Z -4. Erased -5. One piece";False;False;;;;1610352013;;False;{};giusibm;False;t3_kuk2nn;False;False;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/giusibm/;1610401710;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zalav0;;;[];;;;text;t2_7cjsby09;False;False;[];;"1.Code Geass - -2.Attack on Titan - -3.JoJo's Bizzare Adventures - -4.The Promised Neverland - -5.Death Parade";False;False;;;;1610352705;;False;{};giutk0g;False;t3_kuk2nn;False;False;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/giutk0g/;1610402419;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Chachovr;;;[];;;;text;t2_5zq0wlc3;False;False;[];;"1. Attack on titan -2. FMA 2003 -3. Vinland Saga -4. One Piece - Mostly due to nostalgia, I dropped it at a certain point due to the quality of the adaptation, but I still follow the manga -5. Hajime no Ippo";False;False;;;;1610352967;;False;{};giuty2t;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/giuty2t/;1610402656;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zodnick11;;MAL;[];;https://myanimelist.net/animelist/Raider11Soccer;dark;text;t2_h0wnd;False;False;[];;Loved Re:Creators! So many of my friends shit on it, but I thoroughly enjoyed it.;False;False;;;;1610355681;;False;{};giuxsd3;False;t3_kuk2nn;False;True;t1_gisbnxg;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/giuxsd3/;1610405001;2;True;False;anime;t5_2qh22;;0;[]; -[];;;theguyyoudontwant;;;[];;;;text;t2_61nzexby;False;False;[];;"1. Attack on Titan -2. Bunny girl Senpai -3. Quintessential Quintuplets -4. Oregairu -5. Kaguya-sama - -Turn any of these up and I'm down any day";False;False;;;;1610374275;;False;{};givribl;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/givribl/;1610421150;1;True;False;anime;t5_2qh22;;0;[]; -[];;;J0shfour;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/Jayfour;dark;text;t2_1du97s1o;False;False;[];;"1. Attack on Titan -2. Death Parade. -3. Promised Neverland -4. Death Note -5. Full Metal Alchemist Brotherhood";False;False;;;;1610383058;;False;{};giwchtg;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/giwchtg/;1610432851;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TroyElric;;;[];;;;text;t2_2zusjlry;False;False;[];;"1)Yu Yu Hakusho -2)Fullmetal Alchemist Brotherhood -3)Hunter x Hunter -4)Clannad -5)Cardcaptor Sakura";False;False;;;;1610387270;;False;{};giwn2xo;False;t3_kuk2nn;False;True;t3_kuk2nn;/r/anime/comments/kuk2nn/what_are_your_top_5_animes_of_all_time_in_order/giwn2xo/;1610438606;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;What a really nice first episode. Those moments where Rudy makes that creepy face were really hilarious. I really like the pacing so far. And damn, the episode actually ended up feeling short, I can't wait until next week.;False;False;;;;1610300942;;False;{};gis58y3;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis58y3/;1610342061;18;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Funilly enough, this was the trend setter. The others copied, but did a garbage tier job at it. This is the proper origin story of Truck-kun XD;False;False;;;;1610300945;;False;{};gis595l;False;t3_kuj1bm;False;False;t1_gis54ue;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis595l/;1610342064;26;True;False;anime;t5_2qh22;;0;[]; -[];;;realrimurutempest;;;[];;;;text;t2_4bauklbm;False;False;[];;Animation was surprisingly good! I look forward to next episode.;False;False;;;;1610300975;;False;{};gis5bba;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis5bba/;1610342103;12;True;False;anime;t5_2qh22;;0;[]; -[];;;yachi100;;;[];;;;text;t2_3crjo0im;False;False;[];;Have never been into isekai anime but this show definitely has my undivided attention. The trailers looked gorgeous and people were praising how well the first ep was animated, really excited.;False;False;;;;1610300989;;False;{};gis5cam;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis5cam/;1610342119;15;True;False;anime;t5_2qh22;;0;[]; -[];;;I_Smoke_Cardboards;;;[];;;;text;t2_xistv;False;False;[];;"This is one of those isekais that I hope won’t get written off and lumped in with the rest. The webnovel is one of the grand daddies of the traditional isekais and I hope the tropes won’t get called out when this series is literally the one that started them lmao - -[The ReZero author has been fanboying on Twitter throughout his watch of the episode and I fucking love it so much](https://twitter.com/nezumiironyanko/status/1348290352768196608?s=21)";False;False;;;;1610300993;;1610302637.0;{};gis5cl6;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis5cl6/;1610342125;337;True;False;anime;t5_2qh22;;0;[]; -[];;;Beybladeer;;;[];;;;text;t2_ionrm5z;False;False;[];;Beatiful. It's beatiful.;False;False;;;;1610301006;;False;{};gis5dke;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis5dke/;1610342142;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Frontier246;;;[];;;;text;t2_an8rjvo;False;False;[];;"In the father of Isekai stories, we start out post truck-kun collision (although considering this is technically the progenitor of truck-kun, I shall henceforth dub him truck-*san*), and Tomokazu Sugita snarkily dying in his old form before reincarnating. Will we have the pleasure of Sugita's snark narrating his entire life in this new world? Is Rudy going to grow up and sound like Sugita? I kind of hope so. - -It was kind of neat that they actually showed us Rudy's birth, complete with everyone speaking the actual language of that world rather than just English from the start (since he hadn't learned the actual language yet). - -So, yeah, Rudy is a unfulfilled virgin old man in the body of a child, so he definitely has less than wholesome thoughts around the women in his life. At least he had the decency to not get off on breast-feeding from his new mom. - -Poor Lillia realizing the child of the house she serves is a degenerate, while his parents just assume he's being a baby... - -Rudy lucked out ending up with such young, loving, attractive, and affectionate parents as Paul and Zenith. I like how they cherish their child and are also obviously still loving as husband and wife, as Paul steals some kisses from his wife and we get to hear them go hot and heavy in the bedroom. Seems like Rudy was too focused on his reading to realize he could hear his parents getting it on. - -Rudy joked about his parents being a knight and a priestess getting together, but that apparently turns out to be the case. In fact they even promised each other that they'd train their child on their specialty depending on the gender, but now it looks like he'll get the training to be the best in both of his parents' specialties. - -Meet Rudy's magic teacher Roxy! Konomi Kohara is once again teaching, but this time she's playing a blunt, moody, blue-haired girl who is probably a little self-conscious about being short in various areas and how she screws up when she doesn't mean to. She's definitely really cute. - -I love how Rudy couldn't keep the act going when he got a flash of Roxy's panties and tried to get a better look. Boy is a bonafide pervert.";False;False;;;;1610301007;;False;{};gis5dlw;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis5dlw/;1610342143;25;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;OH BOY, now THIS is the kind of animation a legacy series deserves. Apparently they are adapting from the LN, not the manga, so I'm in for a few surprises, myself. I love the protagonist, when he is not been weird.;False;False;;;;1610301016;;False;{};gis5e8x;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis5e8x/;1610342154;95;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610301036;;False;{};gis5fqm;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis5fqm/;1610342179;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"The [backgrounds](https://i.imgur.com/QxzGl3z.jpg), the [animations](https://i.imgur.com/znXHvJH.jpg), the art and character designs are gorgeous in this. - -[The way they animated the water magic was superb](https://i.imgur.com/sbayKAd.jpg). It felt quite real and had a more grayish colour and is translucent (like how it should look IRL) compared to blue colour in other anime. - -I also liked how the world is *less videogame-ish* and is more like a *true fantasy*. There is no *HP, MP bars* and Game UI telling the MC *every* detail there is. They have to learn how to use magic by using different incantations and it also has different types and ranks. - -Roxy was an interesting character. [Her expressions are hilarious.](https://i.imgur.com/U5k3F3H.jpg) Same as with the Mom. [She is also very cute and a good parent](https://i.imgur.com/8C1KbX6.jpg). Although the MC is quite perverted but I was prepared for it beforehand so it didn't bother me as much.";False;False;;;;1610301056;;1610311148.0;{};gis5h59;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis5h59/;1610342202;223;True;False;anime;t5_2qh22;;0;[]; -[];;;Fro99ywo99y1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Frat_Snap;light;text;t2_tailh;False;False;[];;"This show looks really fucking good. - -Also Rudy's mom can get it.";False;False;;;;1610301075;;1610301482.0;{};gis5ihv;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis5ihv/;1610342225;511;True;False;anime;t5_2qh22;;0;[]; -[];;;Adab1za;;MAL;[];;http://myanimelist.net/animelist/Dab1za9;dark;text;t2_dwwky;False;False;[];;The Production values in this episodes is insane and it is not just the animation that is strong, character design, background, compositing...etc, are all great, i haven't been this impressed in a long time and the story so far seems enjoyable.;False;False;;;;1610301131;;False;{};gis5mk6;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis5mk6/;1610342298;593;True;False;anime;t5_2qh22;;0;[]; -[];;;nosorrynoyes;;;[];;;;text;t2_1gyhbufm;False;False;[];;Mushoku Tensei is going to be great;False;False;;;;1610301133;;False;{};gis5mo2;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis5mo2/;1610342300;107;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;"Well, most of the discussion ended up on the pre air episode the last few hours because of the delay, so if you want to seriously discuss the episode you will have to go between the pre air discussion and this one. - -The pre air should have never existed tbh.";False;False;;;;1610301143;;False;{};gis5nfv;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis5nfv/;1610342312;47;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610301149;;False;{};gis5nv5;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis5nv5/;1610342319;0;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Small correction, Truck-kun, here known as Truck-san, claimed it's FIRST victim. This is Truck-san Origin story XD;False;False;;;;1610301152;;False;{};gis5o4z;False;t3_kuj1bm;False;False;t1_gis4z3u;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis5o4z/;1610342323;157;True;False;anime;t5_2qh22;;0;[]; -[];;;minecrafthentai6969;;;[];;;;text;t2_3ydnydu5;False;False;[];;Nice episode. Didnt read the novel, so can you tell me why it’s a big deal if you don’t mind me asking?;False;False;;;;1610301157;;False;{};gis5oge;False;t3_kuj1bm;False;False;t1_gis5cl6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis5oge/;1610342329;67;True;False;anime;t5_2qh22;;0;[]; -[];;;YgJb1691;;;[];;;;text;t2_k8dbo5z;False;False;[];;"Lmao, I’ve heard “things” about the MCs personality so the boob fascination didn’t surprise me, the “bush” comment caught me off guard though. - -Also I understand Studio Bind is a joint venture from White Fox and Egg Firm but does it have its own set of staff, or are the production staff the existing staff of White Fox?";False;False;;;;1610301164;;False;{};gis5ozj;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis5ozj/;1610342338;44;True;False;anime;t5_2qh22;;0;[]; -[];;;ZedEarthnut;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ZedEarthnut;light;text;t2_dkyn9;False;False;[];;"Great first episode. The characters are great and I love the animation style. - -Doesn't seem like you're ""just another Isekai"" -Anime. That being said, I sure hope that this doesn't turn into an OP-MC who has no struggles or anything (looking at you, Misfit of Demon King Academy).";False;False;;;;1610301173;;False;{};gis5pow;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis5pow/;1610342350;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Bayart;;;[];;;;text;t2_fjfyt;False;False;[];;"Roxy the besty <3 - -I'm just so fucking happy to see Mushoku Tensei adapted, it's the only IP I really had regrets never made the cut. - -So far the pace seems fine (from my memories of the WN) and the animation pretty good. Although the digital stuff is still visible despite the tricks (blur and grain), overall it's pleasant enough.";False;False;;;;1610301185;;False;{};gis5qju;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis5qju/;1610342364;3;True;False;anime;t5_2qh22;;0;[]; -[];;;artemize;;MAL;[];;myanimelist.net/animelist/naux;dark;text;t2_a9g50;False;False;[];;I can't believe it's finally here. For a studio's first production, this one has mighty impressive visuals.;False;False;;;;1610301258;;False;{};gis5vqx;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis5vqx/;1610342452;151;True;False;anime;t5_2qh22;;0;[]; -[];;;FireFistYamaan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4uscna3;False;False;[];;"I really enjoyed that! So much that I'm probably gonna have to reread everything. There are few LNs that come close to Mushoku Tensei and I've yet to find anything that can satisfy my very specific Mushoku Tensei urge - -The first ep adapted the prologue as well as chapter 1, 3 and the beginning of chapter 4 - -Just a few changes that I noticed, nothing crazy but I thought they were worth pointing out. Somethings like Zenith chant when Rudeus fell over was even better done here as opposed to the LN - -Obviously, the Anime won't he able to adapt every little detail and monologue, but adaptation wise it's a very strong start! - -Here are the changes/alterations: - -• Rudeus died when he was crushed between a concrete wall and the truck, not in the hospital - -• No backstory about Rudeus and how he was up until high school, no mention of his childhood friend - -• Lillia chapter skipped, will probably adapted in an episode or 2 - -• Rudeus actually wet himself in the LN";False;False;;;;1610301260;;1610306992.0;{};gis5vwb;False;t3_kuj1bm;False;False;t1_gis4wdd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis5vwb/;1610342455;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;"> But it looks like our MC for this saved some students -> but they're missing? Why do I feel like that will be important later in the show. - -If there is anything important later with them my guess is that they were the real target of Truck-sama and after he failed his job he just decided whisk then away anyway so they may be in that world too.";False;False;;;;1610301270;;1610308688.0;{};gis5wo1;False;t3_kuj1bm;False;False;t1_gis4z3u;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis5wo1/;1610342468;17;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610301292;;False;{};gis5y9a;False;t3_kuj1bm;False;True;t1_gis5fqm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis5y9a/;1610342493;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TichoSlicer;;;[];;;;text;t2_14tpdf;False;False;[];;"Finally a bot that works! - -Really nice epi! I loved the animation/design and the fucking PERVERTED MC ;p";False;False;;;;1610301307;;False;{};gis5ze7;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis5ze7/;1610342511;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Itz_Xmir;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Thelazylime88;light;text;t2_3ydbdlrw;False;False;[];;Solid first episode. Will this series be two cour?;False;False;;;;1610301330;;False;{};gis6131;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6131/;1610342538;5;True;False;anime;t5_2qh22;;0;[]; -[];;;lock330;;;[];;;;text;t2_pdcgt;False;False;[];;Amazing first episode this along SK8 and Rezero are some of the best premieres I've seen in a while. I have read the web novel when it was being published in english four or five years ago. This was the first isekai series I ever read and definitely what got me into light novels in general. Seeing it all again years later so amazingly animated is so nostalgic. Even tho I was holding I think I am going to start the LN now lol.;False;False;;;;1610301331;;False;{};gis613o;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis613o/;1610342539;11;True;False;anime;t5_2qh22;;0;[]; -[];;;larvyde;;;[];;;;text;t2_60zt3;False;False;[];;[Well, it seems to run in the family...](https://i.imgur.com/bynhqYd.png);False;False;;;;1610301348;;False;{};gis62bq;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis62bq/;1610342560;345;True;False;anime;t5_2qh22;;0;[]; -[];;;Goukenslay;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Goukenslay;light;text;t2_h8wgs;False;False;[];;"you know what i was gonna come in hating this cause im currently annoyed at our MC as much as Shinji from Evangelion cause he all depressed about his ""affliction"" currently in the manga - -&#x200B; - -but you know what after hearing its Sugi-bro doing his inner voice im in. Like Goddamn its sugi.. i meann gintoki's wish to be coddle by a beauty. - -&#x200B; - -the art and 3D animation passes all my expectation especially for a studio's very first animated series. I pretty sure lot of ppl were bummed this wasn't gonna be done by ufotable, madhouse, etc.. they outdone themselves for this 1st ep - -im digging the soung design going into the scenes especially when he got healed - -&#x200B; - -i guess im hyped for this adaptation now especially how they made his face look so cringy trying to do an eroge line";False;False;;;;1610301351;;False;{};gis62mn;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis62mn/;1610342566;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;BlueGuy17;;;[];;;;text;t2_qu1kd;False;False;[];;The VA for the internal monologue seems familiar, is it the same as Kyon's?;False;False;;;;1610301355;;False;{};gis62u2;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis62u2/;1610342569;126;True;False;anime;t5_2qh22;;0;[]; -[];;;ShadowthecatXD;;;[];;;;text;t2_lpruw;False;False;[];;Yeah I'm sure a lot of people have already seen the first two episodes. I wouldn't even have known it was pre aired without the episode 1-2 thread going up last week on here.;False;False;;;;1610301361;;False;{};gis639h;False;t3_kuj1bm;False;False;t1_gis5nfv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis639h/;1610342576;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Aito_SAKO;;;[];;;;text;t2_3dycv044;False;False;[];;pretty good episode but the panty shot was little bit tasteless. None the less seems pretty promising anime!;False;False;;;;1610301388;;False;{};gis659d;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis659d/;1610342610;13;True;False;anime;t5_2qh22;;0;[]; -[];;;black-bull;;;[];;;;text;t2_2v224fiz;False;False;[];;One episode. Literally one episode...;False;False;;;;1610301396;;False;{};gis65ta;False;t3_kuj1bm;False;False;t1_gis58tp;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis65ta/;1610342619;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Ainine9;;;[];;;;text;t2_kwrcn;False;False;[];;"That water animation and sound effect was on fucking point! Especially the visualization of the magic flowing. - -Thought the detail put into the first Waterball was amazing (especially the water trickle after it fully formed) but the Splash Flow spell just blew me away. - -It's just all around amazing honestly.";False;False;;;;1610301408;;False;{};gis66ot;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis66ot/;1610342634;40;True;False;anime;t5_2qh22;;0;[]; -[];;;hkmiadli;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_6dgg9pvc;False;False;[];;Sugita's voice acting caught me off guard. laugh so hard with his inner voice acting. perfection!;False;False;;;;1610301413;;False;{};gis672w;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis672w/;1610342640;2;True;False;anime;t5_2qh22;;0;[]; -[];;;00zau;;;[];;;;text;t2_z3ie0;False;False;[];;"Zenith healing Rudy was when he first realized he was in a different world. Up until that point (combined with seeing ~~daddy~~ Paul working out with a sword, he'd assumed he'd just been reborn onto Earth again, just way out in the sticks (""shit, do they not even have electricity here"" and the like). - -And yeah, seems his parents got it on again right after giving birth. Welcome to being 20. [Spoiler source](/s ""And Paul's family are all notorious horndogs, to boot. Rudy fits right in with them."")";False;False;;;;1610301426;;1610303203.0;{};gis67yk;False;t3_kuj1bm;False;False;t1_gis4z3u;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis67yk/;1610342658;41;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;I meant that since this thread was delayed, there are lots of recent comments made in the last hour starting to discuss the episode as if it were the actual thread, for the lack of a better option.;False;False;;;;1610301436;;False;{};gis68om;False;t3_kuj1bm;False;True;t1_gis639h;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis68om/;1610342670;3;True;False;anime;t5_2qh22;;0;[]; -[];;;A-Glitch-Gnome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/AGlitchGnome;light;text;t2_adirj;False;False;[];;as far as i know it will be a split 2 cour. however idk when the second cour will air, i'm assuming later this year? maybe summer or fall?;False;False;;;;1610301458;;False;{};gis6a7m;False;t3_kuj1bm;False;False;t1_gis6131;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6a7m/;1610342694;15;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610301466;;False;{};gis6asb;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6asb/;1610342704;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"You can also use your lazy comment on the person I replied to or almost any other comment in this thread. - -We're all basing our opinions on one episode, what's your point?";False;False;;;;1610301483;;False;{};gis6c0l;False;t3_kuj1bm;False;False;t1_gis65ta;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6c0l/;1610342723;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610301488;;False;{};gis6cbs;False;t3_kuj1bm;False;True;t1_gis4wdd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6cbs/;1610342729;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aarthbhardwaj;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Aarth_Bhardwaj;light;text;t2_5kdsi0g;False;False;[];;The other guy was dicksucking the show after one episode too.;False;False;;;;1610301496;;False;{};gis6cy3;False;t3_kuj1bm;False;False;t1_gis65ta;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6cy3/;1610342739;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ShadowthecatXD;;;[];;;;text;t2_lpruw;False;False;[];;Should probably spoiler tag this, you saw the second episode since the pre air was 1 + 2.;False;False;;;;1610301511;;False;{};gis6e0f;False;t3_kuj1bm;False;True;t1_gis5y9a;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6e0f/;1610342758;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Garlicbread10;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;ereh;dark;text;t2_8zn7f5o;False;False;[];;Yea I agree the water magic looked really cool and realistic;False;False;;;;1610301512;;False;{};gis6e3g;False;t3_kuj1bm;False;False;t1_gis5h59;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6e3g/;1610342759;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Jataka;;;[];;;;text;t2_478w5;False;False;[];;I had no idea what I was getting into with this. Just holy shit, the quality of every part of this show is obscene. Were it not for how I suspect this doesn't plumb any real depths thematically, I feel like this might be the best anime I've ever seen. It's got such an adult tone and humor, but manages to be really graceful about it. I can't fully articulate what it's doing differently, but goddamn do I wish all anime had this kind of confidence and restraint.;False;False;;;;1610301515;;1610303959.0;{};gis6eaz;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6eaz/;1610342762;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;CamiloDFM;;MAL;[];;http://myanimelist.net/animelist/CamiloDFM;dark;text;t2_iazas;False;False;[];;"I can excuse the shut-in part, but his character is full of 2000-era anime pervy ""comedy"", and it's annoying as hell. The downvotes on your comment are peak /r/anime though.";False;False;;;;1610301522;;1610301705.0;{};gis6es0;False;t3_kuj1bm;False;True;t1_gis58tp;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6es0/;1610342772;0;True;False;anime;t5_2qh22;;0;[]; -[];;;WaifuSIayer;;;[];;;;text;t2_8sm7er55;False;False;[];;"This is actually good? I liked art and animation, story looks good and MC is interesting. I really hope it continues being good. - -I’ve heard that there is going to be some sort of romance, but i’m wondering what sort of and is it with MC? Hand holding or kissing? Kissing or something bigger? I don’t care about spoilers so you can put it in spoilers tag or dm me, thanks!";False;False;;;;1610301551;;False;{};gis6h0j;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6h0j/;1610342812;21;True;False;anime;t5_2qh22;;0;[]; -[];;;I_Smoke_Cardboards;;;[];;;;text;t2_xistv;False;False;[];;I know it isn’t the first other world genre series but it isn’t called “The Original Isekai” for nothing. I’m pretty sure the term isekai got popular over other WNs copying it’s format. It pretty much kickstarted the isekai trend we know today and its evident when you see the tropes that came from the series;False;False;;;;1610301552;;False;{};gis6h0x;False;t3_kuj1bm;False;False;t1_gis5oge;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6h0x/;1610342812;16;True;False;anime;t5_2qh22;;0;[]; -[];;;larvyde;;;[];;;;text;t2_60zt3;False;False;[];;IIRC he first appeared during the teleport incident;False;False;;;;1610301577;;False;{};gis6isl;False;t3_kuj1bm;False;False;t1_gis6cbs;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6isl/;1610342841;12;True;False;anime;t5_2qh22;;0;[]; -[];;;myrmonden;;;[];;;;text;t2_f0rs6;False;False;[];;"LOL this was one of the funniest reincarnation starts ever - -when his dad is like PEEK A BOO and he is fully aware since he was born and is just like UMMM who is this freak that is doing ugly faces :) - -Rudy the Rude boy eh, the poor maid is fully aware that the boy is WAY to interest in her even from an early age ( ͡° ͜ʖ ͡°) - -So he can use magic without incantation etc, surely this is gonna be yet another OP ISEKAI PROTAGNIST - -and he will have a harem, maid, sensei, mom";False;False;;;;1610301596;;False;{};gis6k97;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6k97/;1610342866;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Onithyr;;;[];;;;text;t2_eyl3o;False;False;[];;What are you talking about? Roxy was right there!;False;False;;;;1610301599;;False;{};gis6kht;False;t3_kuj1bm;False;False;t1_gis6cbs;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6kht/;1610342871;18;True;False;anime;t5_2qh22;;0;[]; -[];;;black-bull;;;[];;;;text;t2_2v224fiz;False;False;[];;The fact that you’re acting so smug off watching the literal foundation of the story is what gets me. I was under the assumption that by the other users comment they had already read the novel while I could clearly infer that you had not.;False;False;;;;1610301629;;False;{};gis6m0j;False;t3_kuj1bm;False;True;t1_gis6c0l;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6m0j/;1610342895;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610301636;;False;{};gis6mg2;False;t3_kuj1bm;False;True;t1_gis6c0l;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6mg2/;1610342902;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MyLifeIsStrangeLikeM;;;[];;;;text;t2_pi4itna;False;False;[];;"What a great adaptation, it looks so good! I'm excited! - - -Sundays are stacked with Kemono Jihen, Mushoku and Aot.";False;False;;;;1610301646;;False;{};gis6nkl;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6nkl/;1610342921;5;True;False;anime;t5_2qh22;;0;[]; -[];;;A-Glitch-Gnome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/AGlitchGnome;light;text;t2_adirj;False;False;[];;"this is the webnovel that popularized all the modern isekai tropes example: Truck-kun, sword and socery world, powerful MC etc. - -if you have time this video does a pretty good job of explaining it. - -[https://www.youtube.com/watch?v=PRvlBKrAoYg](https://www.youtube.com/watch?v=PRvlBKrAoYg)";False;False;;;;1610301671;;False;{};gis6pso;False;t3_kuj1bm;False;False;t1_gis5oge;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6pso/;1610342956;158;True;False;anime;t5_2qh22;;0;[]; -[];;;Woeladenchild;;;[];;;;text;t2_668q2xr;False;False;[];;"Sugita? As the MC? In my isekai anime? - -&#x200B; - -I'm in.";False;False;;;;1610301681;;False;{};gis6qgq;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6qgq/;1610342969;12;True;False;anime;t5_2qh22;;0;[]; -[];;;WoLofDarkness;;;[];;;;text;t2_1323we;False;False;[];;"Just watched this new isekai and I think it's great ! - -Tomokazu Sugita voicing the main character is just perfect haha :)";False;False;;;;1610301712;;False;{};gis6sob;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6sob/;1610343005;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610301730;;False;{};gis6tz5;False;t3_kuj1bm;False;True;t1_gis5vwb;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6tz5/;1610343027;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Sorry /u/DarkRuler17, this comment has been removed because some spoiler tags did not include a description of the spoiler content inside the brackets. Please make sure to label all your spoilers so that other users know what is being spoiled and to ensure the visibility of the spoilers with mobile applications. - -[](#yanderebot) - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610301731;moderator;False;{};gis6u1i;False;t3_kuj1bm;False;True;t1_gis6tz5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6u1i/;1610343028;1;False;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;"This show is disgustingly beautiful. - -Great first episode, I'm really digging this so far.";False;False;;;;1610301745;;False;{};gis6v1y;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6v1y/;1610343045;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FluffyNiccu;;;[];;;;text;t2_40gnou7h;False;False;[];;Why was this discussion thread so late? It caused people to move over to the pre-air one to talk, and I feel like that would really affect the karma and comments on this one.;False;False;;;;1610301759;;False;{};gis6w39;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6w39/;1610343062;22;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"This is the episode 1 discussion thread where we discuss what happens in episode 1 of the anime. That's it. - -For discussion about the novel, [please see this chain](https://www.reddit.com/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis4wdd/).";False;False;;;;1610301760;;False;{};gis6w5u;False;t3_kuj1bm;False;False;t1_gis6m0j;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6w5u/;1610343064;13;True;False;anime;t5_2qh22;;0;[]; -[];;;mysistersacretin;;;[];;;;text;t2_6v57c;False;False;[];;That's part of why I love this series, no videogame mechanics. It's a really well designed fantasy world that we get to explore.;False;False;;;;1610301764;;False;{};gis6wex;False;t3_kuj1bm;False;False;t1_gis5h59;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6wex/;1610343067;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Theleux;;MAL a-1milquiz;[];;https://myanimelist.net/profile/Theleux;dark;text;t2_am615;False;False;[];;"###Mushoku Tensei's biggest fault will be it's protagonist and his overly pervy nature. - -Visually this production is really solid. So many fluid sequences that really elevate the experience. Having seen the two pre-air episodes, moments I wasn't even expecting to be hit by really got the job done nicely. - -I do think that it is a real shame that the point I initially mentioned applies, because it is *really hard* to plainly accept many of the acts/ thoughts, even with bits of the MC's background. - -But beyond that we may have something really solid here. Would advise continuing to watch if you enjoyed bits of it, but if you can't handle some parts it will definitely be a good while until you can bare with them. - ---- - -Just an off-hand comment, but regardless what people say, Mushoku is not the 'grand-daddy' or whatever of Isekai. It, among others, definitely set the standard for a lot of series, but the series came out after others such as **Re:Zero** and even **Cheat Magician** funny enough. You will likely however notice a lot of tropes that have become common in other shows though, so it certainly brought on a lot of those.";False;False;;;;1610301768;;False;{};gis6wr7;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6wr7/;1610343073;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Razorhead;;MAL;[];;http://myanimelist.net/animelist/Razorhat;dark;text;t2_4rfgy;False;True;[];;Well the webnovel was originally published in 2012, so I guess the anime is faithful in that regard?;False;False;;;;1610301777;;False;{};gis6xef;False;t3_kuj1bm;False;True;t1_gis6es0;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6xef/;1610343084;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610301784;;False;{};gis6y05;False;t3_kuj1bm;False;True;t1_gis6cy3;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6y05/;1610343094;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kundara_thahab;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sharshabeel_67;light;text;t2_cpimqb2;False;False;[];;i love the animation;False;False;;;;1610301787;;False;{};gis6y62;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis6y62/;1610343096;14;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"> The downvotes on your comment are peak /r/anime though. - -The only thing I'm surprised about there is how fast it was...they're dedicated this time around.";False;False;;;;1610301815;;False;{};gis705z;False;t3_kuj1bm;False;False;t1_gis6es0;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis705z/;1610343130;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Mami-kouga;;;[];;;;text;t2_rdte2zs;False;False;[];;"I watched the pre air but I'm watching it again since the subs back then were kinda shit. - -I thought this back when I saw the trailer but the animation is beautiful, I enjoy how the monologue is layered over the animation unlike the kumo anime (which I had trouble enjoying despite still loving the manga). Though for the main character himself...he's okay when he's focusing on his magic, and the moments when he acts like a giddy child are actually quite cute, but his acts of perviness are very, uh, I don't particularly dislike characters who are horny in and of themselves, but I kind of want to beat him bloody with a broom. Well that is the point I guess, even if I could live without hearing his parents in their moments of deep passion. - -I do overall like a lot of the humour though (particularly Roxy being kind of dumb). And it's got a very genuine feeling to it despite all the horniness that kina reminds me of saihate no paladin.";False;False;;;;1610301828;;1610302697.0;{};gis7161;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7161/;1610343150;46;True;False;anime;t5_2qh22;;0;[]; -[];;;Slurms_McKenzie775;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/solis91;light;text;t2_g5vcr;False;False;[];;I know nothing of this series but this comment has me intrigued. I'm already watching too many shows this season whats one more.;False;False;;;;1610301831;;1610302073.0;{};gis71d4;False;t3_kuj1bm;False;False;t1_gis5cl6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis71d4/;1610343153;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;I was being so positive because I read the LN and know how good it is compared to most other isekai that came after it. Can you stop being a bitter asshole for 5 seconds please?;False;False;;;;1610301840;;False;{};gis7204;False;t3_kuj1bm;False;True;t1_gis6c0l;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7204/;1610343166;3;True;False;anime;t5_2qh22;;0;[]; -[];;;exia00111;;;[];;;;text;t2_8pn04;False;False;[];;"What a great first episode! I'm so glad this series is looking to have an amazing adaptation! - -I hope everyone who is new to this series sticks with it. The story is not what you will probably expect. - -You can watch a great video on the series [here.](https://www.youtube.com/watch?v=PRvlBKrAoYg)";False;False;;;;1610301869;;False;{};gis746k;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis746k/;1610343204;7;False;False;anime;t5_2qh22;;0;[]; -[];;;Onithyr;;;[];;;;text;t2_eyl3o;False;False;[];;"Having read the LN puts a lot of this into a different perspective - -In LN7 it basically hits the reader over the head with the fact that [ln 7 spoilers](/s ""Rudy's creepy/perverted smile is what happens when he forces a smile in an attempt to assuage people so they won't hate him."")";False;False;;;;1610301869;;False;{};gis746r;False;t3_kuj1bm;False;False;t1_gis4wdd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis746r/;1610343204;15;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"How am I being an asshole? lol - -Also if you're a sourcreader, please keep your thoughts [in this chain](https://www.reddit.com/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis4wdd/).";False;True;;comment score below threshold;;1610301898;;False;{};gis768k;False;t3_kuj1bm;False;True;t1_gis7204;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis768k/;1610343240;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;Smudy;;MAL a-amq;[];;https://myanimelist.net/animelist/Smudy;dark;text;t2_nrmt6;False;False;[];;"His parents are the best part, they are so into each other it's hilarious. - -It looks insane, the artstyle is sick. - -The OP is probably my favourite of the season.";False;False;;;;1610301903;;False;{};gis76mj;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis76mj/;1610343247;146;True;False;anime;t5_2qh22;;0;[]; -[];;;I_Smoke_Cardboards;;;[];;;;text;t2_xistv;False;False;[];;I hope you guys don’t find us Mushoku Tensei stans too annoying for hyping this up so much but god damn does it deserve it after years of getting overshadowed by shitty clones;False;False;;;;1610301914;;False;{};gis77e0;False;t3_kuj1bm;False;False;t1_gis71d4;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis77e0/;1610343260;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Theleux;;MAL a-1milquiz;[];;https://myanimelist.net/profile/Theleux;dark;text;t2_am615;False;False;[];;"Unfortunately the MC is the way he is, but thankfully the other elements of the show are rather solid and carry it to be honest. - -It'll have to be a balancing act for the team I think, as I know many people will really take issue with how the MC is, especially with all the monologues featuring the not-so-pleasant content.";False;False;;;;1610301939;;False;{};gis797k;False;t3_kuj1bm;False;False;t1_gis55cq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis797k/;1610343289;14;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePokeMaster100;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Re_Rem-0;light;text;t2_je4xel;False;False;[];;This anime looks extremely good! Seems like this is really going to be a tough season to compete in but overall there is a ton of content to enjoy!;False;False;;;;1610301941;;False;{};gis79e7;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis79e7/;1610343292;7;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkRuler17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/DarkRuler17;light;text;t2_m2pn1;False;False;[];;"I'm honestly slightly surprised they skipped the intro with him in his previous world. [Intro](/s ""It doesn't exactly print a pretty picture for him, with him skipping his father's funeral for loli porn, but it does an important job of setting up who he was and why he decides to change."") I wonder if they're skipping it entirely or going back to it later.";False;False;;;;1610301952;;False;{};gis7a45;False;t3_kuj1bm;False;False;t1_gis5vwb;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7a45/;1610343304;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Wizardo320;;;[];;;;text;t2_8ap5cg1h;False;False;[];;Thankfully, this series has a focus on family :D;False;False;;;;1610301956;;False;{};gis7ael;False;t3_kuj1bm;False;False;t1_gis55cq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7ael/;1610343309;6;True;False;anime;t5_2qh22;;0;[]; -[];;;black-bull;;;[];;;;text;t2_2v224fiz;False;False;[];;I mean that’s understandable thanks for the link, but your comment was just a snide remark though?;False;False;;;;1610301976;;False;{};gis7byv;False;t3_kuj1bm;False;True;t1_gis6w5u;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7byv/;1610343334;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;Because I read the LN and know how good it is compared to other isekai. Did that simple possibility really not cross your mind?;False;False;;;;1610301985;;False;{};gis7cn8;False;t3_kuj1bm;False;False;t1_gis6cy3;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7cn8/;1610343344;11;True;False;anime;t5_2qh22;;0;[]; -[];;;IKnowTheWayToo;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_2jlft1a8;False;False;[];;It's always the creepy one's that get lucky.;False;False;;;;1610301992;;False;{};gis7d5o;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7d5o/;1610343353;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"> Mushoku Tensei's biggest fault will be it's protagonist and his overly pervy nature. - -He's so creepy...if this is only the tip of the iceberg I'm sad for what's to come.";False;False;;;;1610302023;;False;{};gis7fg4;False;t3_kuj1bm;False;False;t1_gis6wr7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7fg4/;1610343391;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Adizcool;;;[];;;;text;t2_2npt5teh;False;False;[];;Well, the reason he didn't know about standard isekais is because this is the grandfather of modern isekai. Most of the commonly used troped in isekais nowadays became popular because of this story.;False;False;;;;1610302024;;False;{};gis7fk0;False;t3_kuj1bm;False;False;t1_gis4z3u;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7fk0/;1610343392;14;True;False;anime;t5_2qh22;;0;[]; -[];;;AGE_OF_HUMILIATION;;;[];;;;text;t2_qxjdg;False;False;[];;More specifically the kickstarter of reincarnation isekai where the MC can't/doesn't want to return to home. I would probably call SAO the granddaddy of isekai since it started 10 years earlier and was the first massively popular isekai.;False;False;;;;1610302032;;False;{};gis7g42;False;t3_kuj1bm;False;False;t1_gis6h0x;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7g42/;1610343402;25;True;False;anime;t5_2qh22;;0;[]; -[];;;MohammaDon;;;[];;;;text;t2_xgv3e;False;False;[];;"Really love that the writer actually included the bad parts of MC's past personality in his new body, you can also see why Rudues was anxious and fidgety when he was sitting on the chair outside while Roxy explained magic to him, due to being a chronic shut-in in his past life. - -&#x200B; - -Edit: grammar";False;False;;;;1610302044;;1610302417.0;{};gis7gyy;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7gyy/;1610343418;170;True;False;anime;t5_2qh22;;0;[]; -[];;;aTrustfulFriend;;;[];;;;text;t2_oppp4;False;False;[];;Haha, that video was gold. Agree with your comment 100%. The anime looks great, at least.;False;False;;;;1610302055;;False;{};gis7hsr;False;t3_kuj1bm;False;False;t1_gis55cq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7hsr/;1610343433;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Smudy;;MAL a-amq;[];;https://myanimelist.net/animelist/Smudy;dark;text;t2_nrmt6;False;False;[];;Well, judging by the last lines of the episode, that's exactly what's gonna happen, for your first point.;False;False;;;;1610302056;;False;{};gis7hto;False;t3_kuj1bm;False;False;t1_gis55cq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7hto/;1610343433;7;True;False;anime;t5_2qh22;;0;[]; -[];;;shingg919;;;[];;;;text;t2_bm88ybb;False;False;[];;The animation is epic .;False;False;;;;1610302061;;False;{};gis7i6w;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7i6w/;1610343440;6;True;False;anime;t5_2qh22;;0;[]; -[];;;dontloseyourway1610;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Marinate1016;light;text;t2_4wegnp53;False;False;[];;Man everyone hyped for the SnK episode today, but this first episode was an absolute masterpiece, my God. It may be the best first isekai episode I’ve ever seen. The visuals, the voice acting, the animation.. it’s simply beautiful. If they do this adaptation justice, it’ll be the best isekai of all time.;False;False;;;;1610302068;;False;{};gis7irl;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7irl/;1610343453;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;Yea same voice actor as Kyon;False;False;;;;1610302071;;False;{};gis7iyz;False;t3_kuj1bm;False;False;t1_gis62u2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7iyz/;1610343456;61;True;False;anime;t5_2qh22;;0;[]; -[];;;Mr_Pogi_In_Space;;;[];;;;text;t2_2kimiqsr;False;False;[];;"> [Looks like Truck-kun claimed another hikikomori neet otaku.](https://i.imgur.com/xne7nmB.png) -> -> Seems like all pretty standard isekai stuff. -> ->Also for an otaku he's surprisingly level headed. Like instead ot thinking magic exists, he first thought his mom was being a chuuni. -> -> [why did he think that he was going to be sent off to an inquisition for casting magic?](https://i.imgur.com/C2TBG4F.png) It's very rare in isekais for kids to be punished for being able to cast magic. - -As mentioned above, this is the first appearance of Truck-kun and this is one the very earliest isekais. As such, isekai tropes didn't exist at all. The MC at first thought he was sent to a very primitive Europe instead of another world where magic exists. - -&#x200B; - -As someone who got hooked on isekai stories only a year ago, it's actually quite refreshing for the story to approach it more realistically instead of going ""it's an isekai, you know the rules, now let's move on"" the more recent ones tend to do. It reminds me of how Western fantasy stories are often slow the first several chapters by having to painstakingly flesh out the world before jumping into the main story. You'll have genealogies and explanation of the political structure, geography lessons, and even some anthropology instead of just going, ""It's fantasy, magic go boom"".";False;False;;;;1610302092;;False;{};gis7khi;False;t3_kuj1bm;False;False;t1_gis4z3u;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7khi/;1610343480;33;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"You replied and singled out my comment calling it out for discussing the thing we're supposed to be discussing in this thread... - -My remark was my opinion of the show through its current run.";False;False;;;;1610302102;;False;{};gis7l7v;False;t3_kuj1bm;False;False;t1_gis7byv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7l7v/;1610343492;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;"> Also if you're a sourcreader, please keep your thoughts [in this chain](https://www.reddit.com/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis4wdd/). - -The source material corner is not for ""hey I'm a source reader and I love this!"" comments.";False;False;;;;1610302106;;False;{};gis7lip;False;t3_kuj1bm;False;False;t1_gis768k;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7lip/;1610343499;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Al-Pharazon;;;[];;;;text;t2_1s32gw1x;False;False;[];;From what I remember Mushoku was first published on January 2012 while Re-Zero was April-May 2012 so this one would be older.;False;False;;;;1610302117;;False;{};gis7mag;False;t3_kuj1bm;False;True;t1_gis6wr7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7mag/;1610343511;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mountebank;;MAL;[];;http://myanimelist.net/profile/Mountebank;dark;text;t2_4r1ew;False;False;[];;"> As a side note: For someone who's an otaku that has thousands of LNs, why did he think that he was going to be sent off to an inquisition for casting magic? -> It's very rare in isekais for kids to be punished for being able to cast magic. - -Since this is one of the first, if the the first, of the modern isekai LN, this was written before all the isekai MCs became genre savvy since there were no isekai LN for him to read.";False;False;;;;1610302123;;False;{};gis7mod;False;t3_kuj1bm;False;False;t1_gis4z3u;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7mod/;1610343518;24;True;False;anime;t5_2qh22;;0;[]; -[];;;I_Smoke_Cardboards;;;[];;;;text;t2_xistv;False;False;[];;From the light novel illustrations, manga and now this. Man they really gave this series the love it deserves. Everyone looks so good;False;False;;;;1610302132;;False;{};gis7ndp;False;t3_kuj1bm;False;False;t1_gis5ihv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7ndp/;1610343530;175;True;False;anime;t5_2qh22;;0;[]; -[];;;TabletopPaintingUK;;;[];;;;text;t2_pgufb2q;False;False;[];;"That was a great first episode. - -Having sex straight after giving birth? Yeah.. - -Laughed when he went to bed and you could hear his parents having sex.";False;False;;;;1610302148;;False;{};gis7ohz;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7ohz/;1610343548;16;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"Hoping they do the balancing well, I've seen it done in shows before so it's definitely possible! - -[](#faito)";False;False;;;;1610302151;;False;{};gis7or2;False;t3_kuj1bm;False;False;t1_gis797k;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7or2/;1610343553;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"I've seen shows focus on family that kill off family... - -[](#shatteredsaten)";False;False;;;;1610302178;;False;{};gis7qpc;False;t3_kuj1bm;False;False;t1_gis7ael;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7qpc/;1610343586;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Florac;;;[];;;;text;t2_vy0sf;False;False;[];;"[spoiler for episode 2(from preair)](/s ""All the Rudeus backstory happens in episode 2"")";False;False;;;;1610302178;;False;{};gis7qqn;False;t3_kuj1bm;False;True;t1_gis5vwb;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7qqn/;1610343587;1;True;False;anime;t5_2qh22;;0;[]; -[];;;asdfernan03;;;[];;;;text;t2_meoty;False;False;[];;EP 2 is up already?;False;False;;;;1610302180;;False;{};gis7qv0;False;t3_kuj1bm;False;False;t1_gis639h;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7qv0/;1610343590;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Oxu90;;;[];;;;text;t2_yxh7y;False;False;[];;"Yes - -Sugiga is great VA, other famous role for him is Gintoki from Gintama";False;False;;;;1610302191;;False;{};gis7rn2;False;t3_kuj1bm;False;False;t1_gis62u2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7rn2/;1610343602;57;True;False;anime;t5_2qh22;;0;[]; -[];;;Florac;;;[];;;;text;t2_vy0sf;False;False;[];;"[spoiler for episode 2(from preair)](/s ""Episode 2 covers it"")";False;False;;;;1610302204;;False;{};gis7sl7;False;t3_kuj1bm;False;True;t1_gis7a45;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7sl7/;1610343618;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;Wait for episode 2, and spoiler tag please;False;False;;;;1610302230;;False;{};gis7ujd;False;t3_kuj1bm;False;True;t1_gis6asb;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7ujd/;1610343650;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"It's hyping it up. - -Sourcereaders should just stay in that corner with comments like that.";False;False;;;;1610302238;;False;{};gis7v4p;False;t3_kuj1bm;False;True;t1_gis7lip;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7v4p/;1610343660;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CosmicPenguin_OV103;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cosmic_Penguin;light;text;t2_1ufwqhs7;False;True;[];;"(Sorry for this somewhat cold water like opinion...) - -As someone who really sees the usual *isekai* genre shows of recent years as a real personal debuff (I have seen a few and the only ones I really enjoy without major problems present are Re:Zero *Season 2 and Frozen Bonds* and No Game No Life *Zero*), yet pulled in to watch this one as my first ever new *isekai* show to follow seasonally by the great animations (which is great so far) and, more importantly, promises of great character development and stories of family relationships down the road, this first episode is...OK, but also telling me that it’s not going to be an easy push over. I knew that this is sort of the original source of all those follow-on novels of this specific genre of the past decade, but the erotic thoughts of our previous world man and, uh, talks about MPs and water gun magic is making me pretty cautious since I struggles with these things in the likes of Konosuba and NGNL. - -Two things are gonna help me to guide through the early parts of Rudeus’ early life though, Tomokazu Sugita’s narration in Kyon’s style made those vulgar thoughts of whoever-Rudeus’-previous-identity-was more passable to me than usual (I was on the brink of giving up by repeated similar things for NGNL’s Sora), and ~~Chika-turned-into-isekai~~ Roxy joining the story. Both are interesting enough that they should power me enough to follow the next episodes with some interest. - -I’m wondering if this is, sorta of, the “CLANNAD of isekai”, at least in terms of family relationships development. If this story does enough to reach similar levels in CLANNAD S1 (not After Story, that’s way too high of a bar I suppose), I think I’m gonna enjoy the long ride. Hopefully we will see evident character growth for Rudeus though, I can wait (remember Tomoya Okazaki was also a struggle to see him at times), but it’s really important that I can see some of that by 12 or so episodes later. Until then, I’m watching this with cautioned interest.";False;False;;;;1610302264;;False;{};gis7wzs;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7wzs/;1610343692;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"> The anime looks great, at least. - -Looks FANTASTIC. - -I just hope its not on a wasted show...";False;False;;;;1610302270;;False;{};gis7xgr;False;t3_kuj1bm;False;False;t1_gis7hsr;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7xgr/;1610343699;5;True;False;anime;t5_2qh22;;0;[]; -[];;;black-bull;;;[];;;;text;t2_2v224fiz;False;False;[];;I didn’t single it out lmao your comment was just there first one, I just didn’t like the fact you were clearly trying to hit out at the other guy who wanted to show their appreciation. If you wanted to show your opinion on the episode you could’ve just made a different comment rather than directly under his.;False;False;;;;1610302277;;False;{};gis7xz3;False;t3_kuj1bm;False;True;t1_gis7l7v;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7xz3/;1610343707;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tyresekg20;;;[];;;;text;t2_3q50z20i;False;False;[];;Gintoki shares the same va I believe.;False;False;;;;1610302329;;False;{};gis81xn;False;t3_kuj1bm;False;False;t1_gis62u2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis81xn/;1610343773;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ShadowthecatXD;;;[];;;;text;t2_lpruw;False;False;[];;Like I said it pre aired last week with both episodes, but it requires you to sail the seas. You'll probably see people mentioning episode 2 content in this thread. The video quality is kinda meh on the pre airing, I'd watch it normally.;False;False;;;;1610302337;;False;{};gis82ho;False;t3_kuj1bm;False;False;t1_gis7qv0;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis82ho/;1610343781;18;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610302348;;False;{};gis83bh;False;t3_kuj1bm;False;True;t1_gis5oge;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis83bh/;1610343794;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;mysistersacretin;;;[];;;;text;t2_6v57c;False;False;[];;I'm guessing we'll get flashbacks to his previous life as relevant moments come up. They only had so many minutes to fit all of this stuff into episode 1 and I think they ended at a perfect spot. If they had focused more on his past life right now, I think the rest of the episode would have suffered. Better to get viewers hooked like this and then go back to the stuff that would have immediately turned some people off of the series.;False;False;;;;1610302369;;False;{};gis84v6;False;t3_kuj1bm;False;True;t1_gis6asb;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis84v6/;1610343821;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"Is it me or is this the first time that ""truck-kun"" actually killed or sent someone to reincarnation? Like this is the first time I'm seeing this memetic plot device actually used, most isekais nowadays, even the popular ones, don't even use the truck as a catalyst for reincarnation or sending someone to another world.";False;False;;;;1610302378;;False;{};gis85ip;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis85ip/;1610343832;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkRuler17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/DarkRuler17;light;text;t2_m2pn1;False;False;[];;"Ah, that makes sense. [MC](/s ""So they're trying to make you like the world and the main character a bit before revealing how much of a piece of shit he was. Probably a better first episode hook."")";False;False;;;;1610302388;;False;{};gis869a;False;t3_kuj1bm;False;False;t1_gis7sl7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis869a/;1610343843;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;Apparently this is the production studio's first ever project. If they are starting this strong then I fear what they will be offering in a couple years. Truly mesmerizing and captivating visuals;False;False;;;;1610302393;;False;{};gis86mc;False;t3_kuj1bm;False;False;t1_gis5mk6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis86mc/;1610343849;316;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"This is an episode discussion thread. Discussions about people's opinions on the show are going to happen. - -Both positive and negative aspects of a show can be discussed in these threads. - -If someone doesn't want to be replied to then they should write their comment in their diary.";False;False;;;;1610302414;;False;{};gis8865;False;t3_kuj1bm;False;False;t1_gis7xz3;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis8865/;1610343874;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Nulazanzal;;;[];;;;text;t2_5pxckj84;False;False;[];;Another super good looking anime. Simple but captivating story with an amazing cast of VAs. Anime in 2021 is really looking insane with their animation and art style. Almost every new and old shows looks crazy good. One Piece, Black Clover, Horimiya and many more.;False;False;;;;1610302441;;False;{};gis8a8e;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis8a8e/;1610343906;9;True;False;anime;t5_2qh22;;0;[]; -[];;;reading_potato;;;[];;;;text;t2_3xi7xrdz;False;False;[];;"It's beautiful. - -I've been waiting for this for so long. - -Though, it seems there is already a small, but relevant, plothole, but that's only relevant for those who've read the entire novel and should not affect the experience. -I'm loving what I've seen so far.";False;False;;;;1610302451;;False;{};gis8ax6;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis8ax6/;1610343916;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Shodan30;;;[];;;;text;t2_103ceu;False;False;[];;So i hear this is an isekai about that baby in Asobi Asobase?;False;False;;;;1610302456;;False;{};gis8bcs;False;t3_kuj1bm;False;False;t1_gis5cl6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis8bcs/;1610343923;50;True;False;anime;t5_2qh22;;0;[]; -[];;;I_Smoke_Cardboards;;;[];;;;text;t2_xistv;False;False;[];;True. I know it’s not the one and true king that started it all. That’s why I said it’s one of the many grand daddies that contributed in this isekai era we’re in right now where there’s isekai shows pumped in every season, alot of them having some sort of inspiration from Mushoku;False;False;;;;1610302477;;1610303101.0;{};gis8cxy;False;t3_kuj1bm;False;True;t1_gis7g42;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis8cxy/;1610343949;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;I loved him all the way through, I'm not sure why but he kind of reminds of Tanya;False;False;;;;1610302493;;False;{};gis8e5b;False;t3_kuj1bm;False;False;t1_gis5e8x;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis8e5b/;1610343968;8;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;With the quality it's shown so far, I can definitely understand how it's popularized them.;False;False;;;;1610302536;;False;{};gis8gb7;False;t3_kuj1bm;False;False;t1_gis6pso;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis8gb7/;1610344002;44;True;False;anime;t5_2qh22;;0;[]; -[];;;El_Jerrynator;;;[];;;;text;t2_43t5hoiv;False;False;[];;"Re zero. -Youjo senki. -Overlord. -Konosuba. -Im a spider so what? - -If people want to help me with the list.";False;False;;;;1610302558;;1610303224.0;{};gis8iiu;False;t3_kuj1bm;False;False;t1_gis54ue;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis8iiu/;1610344038;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Theleux;;MAL a-1milquiz;[];;https://myanimelist.net/profile/Theleux;dark;text;t2_am615;False;False;[];;"You are remembering incorrectly. - -Re:Zero's webnovel started April 20th 2012. - -Mushoku's webnovel started November 22nd 2012.";False;False;;;;1610302569;;False;{};gis8jfa;False;t3_kuj1bm;False;False;t1_gis7mag;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis8jfa/;1610344052;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610302604;;1610315776.0;{};gis8lyp;False;t3_kuj1bm;False;True;t1_gis6k97;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis8lyp/;1610344093;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610302609;;False;{};gis8mbm;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis8mbm/;1610344100;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"I'm liking this already. Yeah I also heard how this series basically kickstarted what the Isekai genre would become now and the source of many of the recurring tropes. - -Hopefully people won't say this show copied others lol";False;False;;;;1610302623;;False;{};gis8ne9;False;t3_kuj1bm;False;False;t1_gis6pso;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis8ne9/;1610344117;41;True;False;anime;t5_2qh22;;0;[]; -[];;;cornpenguin01;;;[];;;;text;t2_147sgq;False;False;[];;Mate re zero doesn’t have an ending. What do mean substandard or bad?;False;False;;;;1610302636;;False;{};gis8occ;False;t3_kuj1bm;False;False;t1_gis83bh;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis8occ/;1610344133;17;True;False;anime;t5_2qh22;;0;[]; -[];;;asdfernan03;;;[];;;;text;t2_meoty;False;False;[];;ah ic ic. I've waited for this anime for a long time already. 1 week is nothing lol;False;False;;;;1610302637;;False;{};gis8oeq;False;t3_kuj1bm;False;False;t1_gis82ho;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis8oeq/;1610344134;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610302677;;False;{};gis8rcq;False;t3_kuj1bm;False;True;t1_gis7cn8;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis8rcq/;1610344183;0;True;False;anime;t5_2qh22;;0;[]; -[];;;MidnightShout;;;[];;;;text;t2_d1c34;False;False;[];;I was worried it'd be another garbage adaptation like many before it, but this, this is almost fucking movie production quality, my god.;False;False;;;;1610302683;;False;{};gis8rsg;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis8rsg/;1610344190;33;True;False;anime;t5_2qh22;;0;[]; -[];;;Marcus-Kobe;;;[];;;;text;t2_30287jwj;False;False;[];;Here it is. The start of a journey on becoming the greatest Isekai series of all time;False;False;;;;1610302712;;False;{};gis8tz6;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis8tz6/;1610344227;15;True;False;anime;t5_2qh22;;0;[]; -[];;;black-bull;;;[];;;;text;t2_2v224fiz;False;False;[];;It happened way later on during the mana calamity arc.;False;False;;;;1610302715;;1610303158.0;{};gis8u5b;False;t3_kuj1bm;False;False;t1_gis6cbs;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis8u5b/;1610344230;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Syfahrur;;;[];;;;text;t2_45bcd8wk;False;False;[];;The godfather finally here!;False;False;;;;1610302733;;False;{};gis8vii;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis8vii/;1610344251;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SnooTangerines6863;;;[];;;;text;t2_7ceoce10;False;False;[];;I expected a let down since i was so overhyped and it managed to improve on my expectations! Now i only hope it stays that way.;False;False;;;;1610302748;;False;{};gis8wkn;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis8wkn/;1610344268;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Ah....the original Truck-kun;False;False;;;;1610302749;;False;{};gis8wm8;False;t3_kuj1bm;False;False;t1_gis5o4z;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis8wm8/;1610344269;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Theleux;;MAL a-1milquiz;[];;https://myanimelist.net/profile/Theleux;dark;text;t2_am615;False;False;[];;"I'd say the issue is that it takes a damn long time for the pervy stuff to stop/ not really be gross for people. It's clear people like the MC (as you could* tell by the downvotes), he does have some decent progression as a character as the story progresses. - -But some things are just real sour notes in an otherwise solid story.";False;False;;;;1610302755;;1610310620.0;{};gis8x1z;False;t3_kuj1bm;False;False;t1_gis7fg4;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis8x1z/;1610344276;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Martinik29;;;[];;;;text;t2_ujpqt;False;False;[];;This is a project that could span a few years after all;False;False;;;;1610302767;;False;{};gis8xya;False;t3_kuj1bm;False;False;t1_gis86mc;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis8xya/;1610344291;89;True;False;anime;t5_2qh22;;0;[]; -[];;;UCCMaster;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://www.fanfiction.net/u/5600262/UCCMaster;dark;text;t2_8o2zkxl;False;False;[];;Cult of Roxy-sensei rise up!!;False;False;;;;1610302771;;False;{};gis8y8c;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis8y8c/;1610344295;57;True;False;anime;t5_2qh22;;0;[]; -[];;;mysistersacretin;;;[];;;;text;t2_6v57c;False;False;[];;Well to be fair, this studio was put together specifically to make this series.;False;False;;;;1610302773;;False;{};gis8yct;False;t3_kuj1bm;False;False;t1_gis86mc;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis8yct/;1610344297;307;True;False;anime;t5_2qh22;;0;[]; -[];;;lock330;;;[];;;;text;t2_pdcgt;False;False;[];;What Rezero have a bad ending? It's not even finished and the latest Arc is considered to be the best arc by quite a lot of people. Also slime LN is pretty different from the web novel so I can't imagine it having the same ending either.;False;False;;;;1610302810;;False;{};gis90z4;False;t3_kuj1bm;False;False;t1_gis83bh;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis90z4/;1610344339;9;True;False;anime;t5_2qh22;;0;[]; -[];;;isagiyoichi;;;[];;;;text;t2_9178f3kk;False;False;[];;A perfect 1st episode for the og isekai. Also would this be how the first episode of tbate would look if it ever got animated ?;False;False;;;;1610302822;;False;{};gis91ue;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis91ue/;1610344353;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;Music to my ears. Its getting the One Punch Man S1 treatment then;False;False;;;;1610302829;;False;{};gis92bx;False;t3_kuj1bm;False;False;t1_gis8yct;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis92bx/;1610344361;144;True;False;anime;t5_2qh22;;0;[]; -[];;;mysistersacretin;;;[];;;;text;t2_6v57c;False;False;[];;"> Hopefully people won't say this show copied others - -With how many people in these threads are constantly mentioning that it created these tropes, I don't think we really have to fear that lol";False;False;;;;1610302849;;False;{};gis93vs;False;t3_kuj1bm;False;False;t1_gis8ne9;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis93vs/;1610344385;22;True;False;anime;t5_2qh22;;0;[]; -[];;;random_throwaway0001;;;[];;;;text;t2_9lx2xvpv;False;False;[];;Yeah, one thing I can see being an issue is that people will judge this as someone watching NGE for the first time today would judge it -- full of generic tropes. But in reality, just like NGE, Mushoku Tensei is either the origin of those tropes or what popularized it. Anime-only watchers should be aware that we've gotten more than a dozen anime adaptations of web/light novels that were inspired by Mushoku Tensei. It was rated #1 on Narou for 3-4 years in a row (until I believe Slime passed it when the anime aired) despite being completed.;False;False;;;;1610302874;;False;{};gis95p1;False;t3_kuj1bm;False;False;t1_gis5o4z;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis95p1/;1610344414;41;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;Movie quality;False;False;;;;1610302878;;False;{};gis960h;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis960h/;1610344419;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Well I don't fear about this in r/anime but elsewhere, like in Twitter.;False;False;;;;1610302913;;False;{};gis98lp;False;t3_kuj1bm;False;False;t1_gis93vs;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis98lp/;1610344460;13;True;False;anime;t5_2qh22;;0;[]; -[];;;I_Smoke_Cardboards;;;[];;;;text;t2_xistv;False;False;[];;No, they should stay in that corner when discussing spoiler and content from the source and not when they want to praise it. It’s literally said in the comment idk why you’re acting kinda pompous in this thread;False;False;;;;1610302915;;False;{};gis98qb;False;t3_kuj1bm;False;False;t1_gis7v4p;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis98qb/;1610344463;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Theleux;;MAL a-1milquiz;[];;https://myanimelist.net/profile/Theleux;dark;text;t2_am615;False;False;[];;"lmao their comment is what I love about these sorts of adaptations. People can't just like multiple things. - -Same shit goes down just because AOT and Re:Zero are airing at the same time. For whatever reason you can't really like both without picking a definitive favourite.";False;False;;;;1610302951;;False;{};gis9bj5;False;t3_kuj1bm;False;False;t1_gis8occ;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9bj5/;1610344507;9;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;"> sword and socery world, powerful MC - -That was pretty abundant in isekai anime (edit: and novels) well before 2012";False;False;;;;1610302999;;1610303322.0;{};gis9dsq;False;t3_kuj1bm;False;False;t1_gis6pso;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9dsq/;1610344544;20;True;False;anime;t5_2qh22;;0;[]; -[];;;WhoiusBarrel;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/darubarrel/animelist;light;text;t2_pdj0b;False;False;[];;God I really hope so, I REALLY want to see this entire story get adapted till the end.;False;False;;;;1610303000;;False;{};gis9dud;False;t3_kuj1bm;False;False;t1_gis8xya;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9dud/;1610344544;82;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"Sourecreaders hyping up future content should be in that chain. - -Shows are always better when sourcereads keep to themselves.";False;False;;;;1610303012;;False;{};gis9e8s;False;t3_kuj1bm;False;True;t1_gis98qb;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9e8s/;1610344551;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Odelschwank;;;[];;;;text;t2_1u7xjtx6;False;False;[];;hell never get with rem and thats a bad in my book;False;False;;;;1610303032;;False;{};gis9fby;False;t3_kuj1bm;False;True;t1_gis8occ;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9fby/;1610344568;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;random_throwaway0001;;;[];;;;text;t2_9lx2xvpv;False;False;[];;"> but I was prepared for it beforehand - -Glad you were told about this before. It's also important to keep in mind that, oftentimes the things Rudeus does aren't as bad as the ones he thinks. Since we know what he thinks, it gets super creepy. I'm sure we've all had super creepy thoughts at one point, that doesn't mean we act on it.";False;False;;;;1610303047;;False;{};gis9g46;False;t3_kuj1bm;False;False;t1_gis5h59;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9g46/;1610344580;122;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"While the episode is good and interesting, I still have to wait for more episodes to see what I can feel, because I still have this uncertain feeling for this series. - -Interestingly enough, Jobless Reincarnation/Mushoku Tensei was one of the most hyped and wished anime adaptations to come around, way way back before the official anime adaptation announcement. The first time I actually stumble this series was on this old [Shield Hero anime announcement thread] (https://www.reddit.com/r/anime/comments/6isb9a/tate_no_yuusha_no_nariagari_anime_announced/), and in the comments there, a lot are wishing for Mushoku Tensei to get adapted (if you're on desktop, search it via ctrl+g and you'll see a lot of Mushoku Tensei comments). - -That's right, Shield Hero and Mushoku Tensei used to be one of the most hyped isekai series before, with some of them at that time wishing for an anime adaptation and both series were called as the ""best isekai"", and now look what happened to Shield Hero after the anime is finished and the reception here in this sub. - -I fear this might happen to this series, overhyped by its fans and readers, but I still have my hopes this will pull through.";False;False;;;;1610303056;;1610309405.0;{};gis9gy1;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9gy1/;1610344593;5;True;False;anime;t5_2qh22;;0;[]; -[];;;YgJb1691;;;[];;;;text;t2_k8dbo5z;False;False;[];;Plus even if you watched episode 2 now you’d then be left waiting 2 weeks for episode 3.;False;False;;;;1610303060;;False;{};gis9h78;False;t3_kuj1bm;False;False;t1_gis8oeq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9h78/;1610344597;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Yindraco;;;[];;;;text;t2_yv1hz;False;False;[];;"Gosh it really was a gorgeous looking episode. You can feel the love and hardwork the studio is putting in this adaptation, they know that this series means a lot to the fans. - -It's been 5 years since I finished reading the WN, since then I've always dreamt of this series receiving an anime. Until recently it was only a pipe dream mostly because the beauty of this series can't really be shown in just one season, so I thought that if it's gonna be bad it's better not to do it. - -I still rememeber the hype and fear I felt when the news of an adaptation were announced, ""What if they butcher this?"", ""What if they decide to do just 12 episodes?"". When it was revealed that it was Split-cour my relief was only momentary, Mushoku Tensei could still receive a mediocre adaptation and just be marked as another trash isekai. - -After watching the first episode, I now know that my fear is gone, the studio and everyone involved did an amazing first episode. I really hope that this does well enough so that one day we'll be able to see the full adaptation, if so we'll be able grow old alongside Rudy.";False;False;;;;1610303069;;False;{};gis9hz1;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9hz1/;1610344608;16;True;False;anime;t5_2qh22;;0;[]; -[];;;DomiXM;;;[];;;;text;t2_c4fuk;False;False;[];;Sugita Tomokazu basically plays himself, just like in Gintama. I love it.;False;False;;;;1610303078;;False;{};gis9it1;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9it1/;1610344621;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zerglinghunter;;;[];;;;text;t2_by2m8;False;False;[];;I'm so excited for this. Been waiting since it was announced. Although I only read the manga. I've got high hopes for this after this episode!;False;False;;;;1610303090;;False;{};gis9jj2;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9jj2/;1610344633;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ObiWan-K;;;[];;;;text;t2_th12zxk;False;False;[];;was that gintoki and chika;False;False;;;;1610303166;;False;{};gis9mgd;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9mgd/;1610344679;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vilstheman;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Neiltheone;light;text;t2_5kuc5bng;False;False;[];;The animation was beautiful. Really looking forward to the rest of the show.;False;False;;;;1610303170;;False;{};gis9mlo;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9mlo/;1610344681;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610303192;;False;{};gis9n9u;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9n9u/;1610344692;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610303206;;False;{};gis9nsc;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9nsc/;1610344700;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Robddit;;;[];;;;text;t2_jyep6js;False;False;[];;"So Konosuba was a straight parody of MT about the shut-in MC being ""hit"" by a Truck in order to save a student. Right?";False;False;;;;1610303223;;False;{};gis9oju;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9oju/;1610344712;14;True;False;anime;t5_2qh22;;0;[]; -[];;;isagiyoichi;;;[];;;;text;t2_9178f3kk;False;False;[];;"Not having read the light novel I wasn't too hyped for this and expected lots of generic troupes given how it's the og and apparently introduced most of the tropes. - -But the 1st episode blew all my expectations out of water. This is how a perfect pilot looks like for a perfect isekai. Honestly, I'm amazed at how it keeps my attention even though I feel like I'm watching this for the 2nd time lol. - -The animation was really smooth. I'm really hyped for the next episode.";False;False;;;;1610303251;;False;{};gis9qqm;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9qqm/;1610344745;74;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610303269;;False;{};gis9roj;False;t3_kuj1bm;False;True;t1_gis5pow;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9roj/;1610344759;6;True;False;anime;t5_2qh22;;0;[]; -[];;;vomitkettle;;;[];;;;text;t2_7pmdj07y;False;False;[];;Looks like this will be great adaptation.;False;False;;;;1610303272;;False;{};gis9rz2;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9rz2/;1610344764;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610303293;;False;{};gis9toi;False;t3_kuj1bm;False;True;t1_gis62bq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9toi/;1610344790;29;True;False;anime;t5_2qh22;;0;[]; -[];;;Leira-Cire;;;[];;;;text;t2_160nyt;False;False;[];;"Omg I remember finishing the webnovel back in 2015 and have waited ever since for an anime adaptation. Everyone pls give this one a chance and dont just classify it as just ""another isekai""";False;False;;;;1610303318;;False;{};gis9vd4;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9vd4/;1610344815;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AcidReign999;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_1vlicrk2;False;False;[];;I can't hear anyone but Gintoki.... Feels like I'm watching an episode of Gintama where Gin got reincarnated;False;False;;;;1610303327;;False;{};gis9vy2;False;t3_kuj1bm;False;False;t1_gis553v;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9vy2/;1610344824;131;True;False;anime;t5_2qh22;;0;[]; -[];;;mysistersacretin;;;[];;;;text;t2_6v57c;False;False;[];;This was truck-kun's first victim based on when the webnovel was published. A lot of tropes you see nowadays started here, so this series doesn't really treat them as tropes.;False;False;;;;1610303332;;False;{};gis9w96;False;t3_kuj1bm;False;False;t1_gis85ip;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9w96/;1610344830;5;True;False;anime;t5_2qh22;;0;[]; -[];;;isagiyoichi;;;[];;;;text;t2_9178f3kk;False;False;[];;">Mushoku Tensei's biggest fault will be it's protagonist and his overly pervy nature. - - -Weak";False;False;;;;1610303342;;False;{};gis9wv0;False;t3_kuj1bm;False;True;t1_gis6wr7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9wv0/;1610344840;0;True;False;anime;t5_2qh22;;0;[]; -[];;;DestroyerOfDoom29;;;[];;;;text;t2_yvqy9eh;False;False;[];;"It had all the traditional elements of an isekai. Old ass shut in virgin, truck, fantasy, ,magic,very gifted in new world. I googled it and apparently its pretty old. Was this one of the manga that set the precedent for isekai? - -Also the random sex stuff sprinkled in really surprised me lol. Seems like this show will be more mature than expected. I found it funny that our boy didnt react at all hearing his mothers screams haha";False;False;;;;1610303390;;1610304167.0;{};gis9zbk;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9zbk/;1610344883;10;True;False;anime;t5_2qh22;;0;[]; -[];;;00zau;;;[];;;;text;t2_z3ie0;False;False;[];;Yeah, we (finally) got confirmation on that not too long ago. Not sure if it's going to be split cour or not yet.;False;False;;;;1610303393;;False;{};gis9zfv;False;t3_kuj1bm;False;False;t1_gis6131;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis9zfv/;1610344884;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Phnrcm;;;[];;;;text;t2_177f3x;False;False;[];;"> is so much of a shut in he can barely be outside? - -It is almost like the story is about someone dealing with his crippling depression and starting a new life.";False;False;;;;1610303409;;False;{};gisa01i;False;t3_kuj1bm;False;True;t1_gis58tp;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisa01i/;1610344896;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"I hope they do that only for this episode or if someone is calling the show out for copying stuff - -Because It'll annoy people pretty fast if this is a recurring thing";False;False;;;;1610303427;;False;{};gisa0sj;False;t3_kuj1bm;False;False;t1_gis93vs;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisa0sj/;1610344907;13;True;False;anime;t5_2qh22;;0;[]; -[];;;I_Smoke_Cardboards;;;[];;;;text;t2_xistv;False;False;[];;">Twitter - -It literally happens every single time but I still fear looking at the tweets about the shows I watch. - -Tbf the Uzaki thing was pretty hilarious";False;False;;;;1610303459;;False;{};gisa1pd;False;t3_kuj1bm;False;False;t1_gis98lp;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisa1pd/;1610344921;16;True;False;anime;t5_2qh22;;0;[]; -[];;;DestroyerOfDoom29;;;[];;;;text;t2_yvqy9eh;False;False;[];;Yeah for sure. He seemed pretty great except the part he was talking about the bush of a loli lol. His general dirty minded ness I didnt mind as much and his narration is really good. Overall I approve;False;False;;;;1610303514;;False;{};gisa2p5;False;t3_kuj1bm;False;False;t1_gis5e8x;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisa2p5/;1610344937;27;True;False;anime;t5_2qh22;;0;[]; -[];;;Martinik29;;;[];;;;text;t2_ujpqt;False;False;[];;It's pretty much the most fleshed out Isekai there is with its own unique spin on lore and history.;False;False;;;;1610303609;;False;{};gisa438;False;t3_kuj1bm;False;True;t1_gis6eaz;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisa438/;1610344958;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Martinik29;;;[];;;;text;t2_ujpqt;False;False;[];;The panty shot is part of the story;False;False;;;;1610303658;;False;{};gisa5z1;False;t3_kuj1bm;False;False;t1_gis659d;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisa5z1/;1610344987;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Phnrcm;;;[];;;;text;t2_177f3x;False;False;[];;God doesn't appear until after the kaboom thing.;False;False;;;;1610303664;;False;{};gisa69a;False;t3_kuj1bm;False;True;t1_gis6cbs;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisa69a/;1610344992;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aXygnus;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Send Vanilla Satella doujins ;dark;text;t2_ws5bk;False;False;[];;From what I've heard from the RZ community, there are plenty of animators from White Fox doing work in Mushoku Tensei, which is quite possibly why the visuals have been a controversial topic for RZ Season 2.;False;False;;;;1610303693;;False;{};gisa7hf;False;t3_kuj1bm;False;False;t1_gis5ozj;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisa7hf/;1610345011;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;Confirmed to be split cour;False;False;;;;1610303731;;False;{};gisa95r;False;t3_kuj1bm;False;False;t1_gis9zfv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisa95r/;1610345037;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Phnrcm;;;[];;;;text;t2_177f3x;False;False;[];;">Wow this MC is pretty trashy...hope he gets better. - -It is almost like people like this series because .....\*drum roll*..... the MC gets better.";False;False;;;;1610303734;;False;{};gisa9bc;False;t3_kuj1bm;False;False;t1_gis55cq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisa9bc/;1610345039;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610303734;;1610304822.0;{};gisa9cb;False;t3_kuj1bm;False;True;t1_gis55cq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisa9cb/;1610345040;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;Pretty sure I know what plot hole you're referring to and I have no idea why they changed that scene from the novels???;False;False;;;;1610303763;;False;{};gisaake;False;t3_kuj1bm;False;True;t1_gis8ax6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisaake/;1610345060;1;True;False;anime;t5_2qh22;;0;[]; -[];;;G1596872;;;[];;;;text;t2_qdv50;False;False;[];;Rudy’s mom though( ͡° ͜ʖ ͡°);False;False;;;;1610303779;;False;{};gisabcj;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisabcj/;1610345072;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mysistersacretin;;;[];;;;text;t2_6v57c;False;False;[];;But his genuine smile is also seen as creepy by a lot of people. To the point where it bothers him and he practices trying to smile normally. It's a pretty funny little detail that carries on through the series.;False;False;;;;1610303793;;False;{};gisabxf;False;t3_kuj1bm;False;False;t1_gis746r;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisabxf/;1610345081;11;True;False;anime;t5_2qh22;;0;[]; -[];;;random_throwaway0001;;;[];;;;text;t2_9lx2xvpv;False;False;[];;"> I sure hope that this doesn't turn into an OP-MC who has no struggles or anything (looking at you, Misfit of Demon King Academy). - -I can assure you, you will be very pleasantly surprised.";False;False;;;;1610303815;;False;{};gisad3a;False;t3_kuj1bm;False;False;t1_gis5pow;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisad3a/;1610345100;4;True;False;anime;t5_2qh22;;0;[]; -[];;;KrazyBean94;;;[];;;;text;t2_110dr6;False;False;[];;So apparently this is the studios first anime according to MAL? It looks REALLY REALLY good.;False;False;;;;1610303847;;False;{};gisaeyn;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisaeyn/;1610345130;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Brook0999;;;[];;;;text;t2_ycupg;False;False;[];;"Yup this is probably grandfather of nowadays isekai ln/manga/anime. - -Jus that the isekai’s copied the bad traits of mushoku tensei ignoring creating a engaging story with good characters.";False;False;;;;1610303857;;1610308980.0;{};gisafh6;False;t3_kuj1bm;False;False;t1_gis9zbk;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisafh6/;1610345139;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Slifer13xx;;MAL;[];;http://myanimelist.net/animelist/Slifer13xx;dark;text;t2_irntz;False;False;[];;MAL description made me roll my eye so hard it hurts, but your comment pique my interest a little bit.;False;False;;;;1610303890;;False;{};gisahac;False;t3_kuj1bm;False;False;t1_gis5cl6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisahac/;1610345166;4;True;False;anime;t5_2qh22;;0;[]; -[];;;FireRifle64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FireRifle64;light;text;t2_29fr8mww;False;False;[];;"Bro, I was not expecting him to say the phrase ""I might cop a feel."" - -People have been wanting this adaption and last season was the first I have heard about it. - -From the PV, the animation looked dope but this episode was really great. I enjoyed the characters and I love how they provide more to the magic system than others.";False;False;;;;1610303926;;False;{};gisaj8q;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisaj8q/;1610345198;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"The daddy of the modern isekai skeleton is finally here. Resisting the urge to start it before the adaption aired was hard but worth. Even the creator of Re:Zero is hyped about this adaptation. - -[](#emiliaohdear)";False;False;;;;1610303928;;False;{};gisajc1;False;t3_kuj1bm;False;False;t1_gis5ihv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisajc1/;1610345200;226;True;False;anime;t5_2qh22;;0;[]; -[];;;unok157;;;[];;;;text;t2_2o9ks6gg;False;False;[];;This looks really fucking good. I'm surprised how detailed and beautiful this is. Haven't been impressed by an isekai for a while. I love the music as well. I love that style of music fantasy shows get.;False;False;;;;1610303931;;False;{};gisajhs;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisajhs/;1610345203;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610303991;;False;{};gisamrh;False;t3_kuj1bm;False;True;t1_gis9e8s;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisamrh/;1610345258;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EverChangingUnicorn;;;[];;;;text;t2_3dcfqg6w;False;False;[];;The fact that his inner voice and the voice of his former Japanese self is Tomokazu Sugita just enhances the show, and my experience.;False;False;;;;1610304009;;False;{};gisannh;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisannh/;1610345272;5;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;Yeah, I don't think she needs to worry about Paul being stolen from her;False;False;;;;1610304009;;False;{};gisanpd;False;t3_kuj1bm;False;False;t1_gis5ihv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisanpd/;1610345273;44;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"There's something poetic about one of the hottest and most unique isekai of the past few years and one of the biggest sources of inspiration of modern isekai stories airing in the same season. Like two giants watching what they've built over time. - -[](#gintamathispleasesme)";False;False;;;;1610304043;;1610312416.0;{};gisapiv;False;t3_kuj1bm;False;False;t1_gis8gb7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisapiv/;1610345300;33;True;False;anime;t5_2qh22;;0;[]; -[];;;EPLWA_Is_Relevant;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/EPLWA/animelist;light;text;t2_hk8ga;False;False;[];;This is the one that deserves to have such high production values. Most modern isekai can only dream of having a well planned story with actual character growth.;False;False;;;;1610304051;;False;{};gisaq05;False;t3_kuj1bm;False;True;t1_gis7xgr;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisaq05/;1610345308;2;True;False;anime;t5_2qh22;;0;[]; -[];;;A-Glitch-Gnome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/AGlitchGnome;light;text;t2_adirj;False;False;[];;Yes that is true, however this novel became so popular that it was the main contributing factor to isekai becoming its own genre. So many that came afterwards ended up copying it and it lead to the explosion of isekai we have seen over the last few years;False;False;;;;1610304082;;False;{};gisarsi;False;t3_kuj1bm;False;False;t1_gis9dsq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisarsi/;1610345336;7;True;False;anime;t5_2qh22;;0;[]; -[];;;NvRFRSKNSangin;;MAL;[];;http://myanimelist.net/profile/SangJin;dark;text;t2_9sr7i;False;False;[];;"Definitely gotta gush about the opening scene; no truck-kun needed, just show the aftereffects and the thought process, such great direction.";False;False;;;;1610304095;;False;{};gisasjw;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisasjw/;1610345348;3;True;False;anime;t5_2qh22;;0;[]; -[];;;00zau;;;[];;;;text;t2_z3ie0;False;False;[];;"[Spoiler source](/s ""Hitogami"") first appears at the [Spoiler source](/s ""teleport incident""), at the end of volume 2/beginning of volume 3. At the current rate that'd be at around episode 8.";False;False;;;;1610304124;;False;{};gisaucs;False;t3_kuj1bm;False;True;t1_gis6cbs;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisaucs/;1610345376;2;True;False;anime;t5_2qh22;;0;[]; -[];;;neito;;;[];;;;text;t2_1tbak;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610304126;moderator;False;{};gisaugy;False;t3_kuj1bm;False;True;t1_gisa9cb;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisaugy/;1610345378;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;DestroyerOfDoom29;;;[];;;;text;t2_yvqy9eh;False;False;[];;"Oh damn I didnt know that. Why is it getting adapted so late? It seems to have a great reputation. -Are there any other anime/manga that began the isekai sub genre idea ?";False;False;;;;1610304139;;1610306509.0;{};gisavbd;False;t3_kuj1bm;False;False;t1_gisafh6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisavbd/;1610345391;6;True;False;anime;t5_2qh22;;0;[]; -[];;;NovaAhki;;;[];;;;text;t2_5wmm4eri;False;False;[];;Unfortunately, he's a pervert at his core. But like he said at the end of this episode, he will try to become better. So he will gain more redeeming points later on, despite still being a pervert.;False;False;;;;1610304145;;False;{};gisavnv;False;t3_kuj1bm;False;True;t1_gis55cq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisavnv/;1610345396;3;True;False;anime;t5_2qh22;;0;[]; -[];;;neito;;;[];;;;text;t2_1tbak;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610304151;moderator;False;{};gisavze;False;t3_kuj1bm;False;True;t1_gis83bh;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisavze/;1610345402;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EPLWA_Is_Relevant;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/EPLWA/animelist;light;text;t2_hk8ga;False;False;[];;I'm really looking forward to see how far the adaption goes, because the journey is long and rewarding. The anime itself is just gorgeous and blows away the fears I had when this was first announced.;False;False;;;;1610304161;;False;{};gisawl1;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisawl1/;1610345411;9;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"Did you even watch the video I posted? - -[](#schemingsaten)";False;False;;;;1610304165;;False;{};gisawuo;False;t3_kuj1bm;False;True;t1_gisa9bc;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisawuo/;1610345415;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheLulzbat;;;[];;;;text;t2_xgsfc;False;False;[];;No not really I don't know why people keep on saying this but minky momo did it in 83.;False;False;;;;1610304175;;False;{};gisaxh5;False;t3_kuj1bm;False;False;t1_gis5o4z;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisaxh5/;1610345425;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610304194;;1610304491.0;{};gisaynt;False;t3_kuj1bm;False;True;t1_gis6h0j;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisaynt/;1610345444;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Theleux;;MAL a-1milquiz;[];;https://myanimelist.net/profile/Theleux;dark;text;t2_am615;False;False;[];;"lol these are the comments I was expecting. - -Every work has it's flaws, and it's not like the MC ain't interesting later on. But to defend the awful parts of his character this early on... - -[](#badday)";False;False;;;;1610304200;;False;{};gisaz1x;False;t3_kuj1bm;False;False;t1_gis9wv0;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisaz1x/;1610345450;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Royal_Heritage;;;[];;;;text;t2_8wglzuge;False;False;[];;"We already had 2 episodes for those of us who watched the early streaming. - -The MC is irredeemeable even if the whole story is about the good deeds he does and how he tries to come out of his neet shell. He will always be a creep and a pedo. - -Seriously, this is a case were fans can't even defend the main character.";False;False;;;;1610304386;;False;{};gisbati;False;t3_kuj1bm;False;False;t1_gis65ta;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisbati/;1610345636;4;False;False;anime;t5_2qh22;;0;[]; -[];;;SomeBruv;;;[];;;;text;t2_669mfgun;False;False;[];;I've seen a lot of people call it that, is it because it came out a while ago and inspired a lot of other isekais, kinda like the Dragon Ball of isekai?;False;False;;;;1610304406;;False;{};gisbc8d;False;t3_kuj1bm;False;False;t1_gisajc1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisbc8d/;1610345660;76;True;False;anime;t5_2qh22;;0;[]; -[];;;AyyDisFaker;;;[];;;;text;t2_3pzo5rys;False;False;[];;"I don't want to hear shit of ""oooh another isekai copy"", ""oooh same formula"", ""oooh lol truck-kun again"". - -This story is the Grandaddy of modern isekai. Everything you see about modern isekai was """"""copied"""""" from this. Former #1 web novel for many years in Narou. - -Difference is this one actually knows what it is doing. Only a few can say that they are in the upper echelon as this work in regards to modern isekai. - -There's a reason why this series is getting such an amazing treatment from the animators.";False;False;;;;1610304425;;False;{};gisbdgu;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisbdgu/;1610345680;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Llooyd_;;;[];;;;text;t2_757o4eob;False;False;[];;And it will remain the only one as this is a joint cooperation specifically for this project.;False;False;;;;1610304448;;False;{};gisbf2n;False;t3_kuj1bm;False;True;t1_gisaeyn;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisbf2n/;1610345706;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KrazyBean94;;;[];;;;text;t2_110dr6;False;False;[];;Hmm. Interesting.;False;False;;;;1610304480;;False;{};gisbh5o;False;t3_kuj1bm;False;True;t1_gisbf2n;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisbh5o/;1610345740;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ISawUOLwreckingTSM;;;[];;;;text;t2_kx6ny;False;False;[];;Both are fucking amazing and some of my favorite animes ever.;False;False;;;;1610304496;;False;{};gisbi73;False;t3_kuj1bm;False;False;t1_gis9bj5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisbi73/;1610345756;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Narewa99;;;[];;;;text;t2_2xaud15z;False;False;[];;"I always adore Isekai needing MC to really reincarnated (instead of just the same person in a different adult body or still the same body). Probably because isekai likes these tend to have good early worldbuilding exposure without the need to progress the story or depending on some plot device. In my opinion, the worldbuilding feels natural and makes me feel how the MC feels when exposed to the new world. There's no need for any shock-value incidents or story-driven event pushing the MC to explore the world. My first impression is that it gives me some urge to get invested in the story's worldbuilding and that is a nice feeling as a writer or a worldbuilder. - -Another great thing in isekai like this is that the MC usually does not have OP skills straight away. MC has to grow up with their past life experiences put into the perspective of the new world and that is translated into how adept they can become without the need for external influences. Not only that but their exposure to the magic system or world element early on without possessing innate skills on the get-go allows creativity in how the characters interpret and apply the magic system with their understanding while also maintaining the merit of the MC actually put some effort into obtaining their skills, which feels more natural. - -So far, this is a very excellent isekai. Kinda wanna go back watching some isekai after so long of distancing myself from isekai genre. Would probably put this in my top world-building anime/LN after Yojou Senki and Knight's and Magic.";False;False;;;;1610304501;;False;{};gisbikk;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisbikk/;1610345762;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Eckish;;;[];;;;text;t2_6b8ao;False;False;[];;"> But it looks like our MC for this saved some students but they're missing? Why do I feel like that will be important later in the show. - -I picked up on that, too. Seems odd to call out the missing part if it isn't important. I'm thinking maybe they are responsible for his reincarnation? Like maybe they were gods or whatever and staged a rescue moment to test him.";False;False;;;;1610304528;;False;{};gisbkfx;False;t3_kuj1bm;False;False;t1_gis4z3u;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisbkfx/;1610345793;8;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;Of course Sugita-san would voice a pervert character. I should've known it.;False;False;;;;1610304537;;False;{};gisbl26;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisbl26/;1610345803;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TUSF;;;[];;;;text;t2_en69f;False;False;[];;"Yeah, there seems to be a lot of people who claim MT is somehow to creator of all these tropes and shit, but that's just plain wrong. It was just utilizing tropes that were getting popular early on. - -The reason there's so many ""grandfather of isekai"" nonsense comments is because Mushoku Tensei was simply the *first* such web novel that got **translated** to English, and for them the stories came into existence when they were translated.";False;False;;;;1610304538;;False;{};gisbl46;False;t3_kuj1bm;False;False;t1_gis8jfa;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisbl46/;1610345803;14;True;False;anime;t5_2qh22;;0;[]; -[];;;JuangWahyu;;;[];;;;text;t2_4cp0pcfu;False;False;[];;I finished the whole WN in 2018, but I've been reading the manga since 2016(?), half a decade of waiting does not disappoint.;False;False;;;;1610304588;;False;{};gisbomp;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisbomp/;1610345859;6;True;False;anime;t5_2qh22;;0;[]; -[];;;FluffyNiccu;;;[];;;;text;t2_40gnou7h;False;False;[];;I’m gonna be waiting to see how watchers are going to feel about Rudeus’s personality and perverted behaviors, and the controversy that could occur from that.;False;False;;;;1610304686;;False;{};gisbvk7;False;t3_kuj1bm;False;True;t1_gis4wdd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisbvk7/;1610345966;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wizardo320;;;[];;;;text;t2_8ap5cg1h;False;False;[];;Best isekai, but this time we mean it :D;False;False;;;;1610304707;;False;{};gisbx6k;False;t3_kuj1bm;False;True;t1_gis9gy1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisbx6k/;1610345991;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;"It's definitely a contributing factor of course, but (unless the info I'm reading is mistaken) there's a whole slew of major ""modern"" isekai that predate it (Re:Zero, Overlord, The Familiar of Zero, Isekai Cheat Magician, and Konosuba and Shield Hero started at the same time, etc.), even if you ignore the traditional isekai like Magic Knight Rayearth and Fushigi Yugi. It might have helped to popularize the genre and establish a few tropes, but a ton of them were already pretty prevalent.";False;False;;;;1610304722;;1610305134.0;{};gisby6v;False;t3_kuj1bm;False;False;t1_gisarsi;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisby6v/;1610346008;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Poodicus;;;[];;;;text;t2_e0xyt;False;False;[];;Indeed. It was one of the first isekais to be written online, and helped to start the craze along with Sword Art Online. This, coupled with the fact that the writer was actually competent in their writing, it made for a decent story that many enjoyed.;False;False;;;;1610304728;;False;{};gisbynu;False;t3_kuj1bm;False;False;t1_gisbc8d;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisbynu/;1610346015;184;True;False;anime;t5_2qh22;;0;[]; -[];;;grady999;;;[];;;;text;t2_120kz1;False;False;[];;"yep; the web novels were written in 2012";False;False;;;;1610304739;;False;{};gisbzex;False;t3_kuj1bm;False;False;t1_gisbc8d;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisbzex/;1610346055;19;True;False;anime;t5_2qh22;;0;[]; -[];;;PoohHauHau;;;[];;;;text;t2_eb0vx;False;False;[];;Maybe i'm an outlier, but I always think of Kyon when I hear Sugita speaking;False;False;;;;1610304752;;False;{};gisc0ba;False;t3_kuj1bm;False;False;t1_gis9vy2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisc0ba/;1610346070;52;True;False;anime;t5_2qh22;;0;[]; -[];;;Onithyr;;;[];;;;text;t2_eyl3o;False;False;[];;"Two of the hottest Isekai of the past few years. - -Re:Zero is continuing from last season, and Tensura will be airing the day after tomorrow.";False;False;;;;1610304776;;False;{};gisc20o;False;t3_kuj1bm;False;False;t1_gisapiv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisc20o/;1610346099;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Martinik29;;;[];;;;text;t2_ujpqt;False;False;[];;Then let's do out part. Sadly while the characters are good I don't think they will move much merch unless we get some blowout performances.;False;False;;;;1610304780;;False;{};gisc2cm;False;t3_kuj1bm;False;False;t1_gis9dud;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisc2cm/;1610346105;32;True;False;anime;t5_2qh22;;0;[]; -[];;;Florac;;;[];;;;text;t2_vy0sf;False;False;[];;"""Isekai"" or stories which involve going to another word is decades old(if not centuries if you stretch your definition). So there isn't really a first.";False;False;;;;1610304812;;False;{};gisc4j7;False;t3_kuj1bm;False;False;t1_gisavbd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisc4j7/;1610346139;8;True;False;anime;t5_2qh22;;0;[]; -[];;;RaQziom;;MAL;[];;http://myanimelist.net/profile/RaQziom;dark;text;t2_90zh0;False;False;[];;Ok I have one problem, if he remembers his previous life why the fuck he behaves like a child, feels kind of stupid. I am not saying he should go full Anos Voldigoad but I don't know somwhere in the middle?;False;False;;;;1610304825;;False;{};gisc5cq;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisc5cq/;1610346153;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Theleux;;MAL a-1milquiz;[];;https://myanimelist.net/profile/Theleux;dark;text;t2_am615;False;False;[];;"Likely the case, yah. Hell there were plenty of other works even outside of anime introducing things we now deem tropes. - -I do think it is noteworthy in some cases, worldbuilding for the series is great in my opinion.";False;False;;;;1610304849;;False;{};gisc71b;False;t3_kuj1bm;False;True;t1_gisbl46;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisc71b/;1610346180;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610304857;;False;{};gisc7jn;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisc7jn/;1610346188;2;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;Lol yeah. I was not patient and almost watched episode 2 immediately. But the big watermark and the bad quality made me think again. We'll see next week then.;False;False;;;;1610304895;;False;{};gisca7j;False;t3_kuj1bm;False;True;t1_gis82ho;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisca7j/;1610346230;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lucacp_ysoz;;MAL;[];;http://myanimelist.net/profile/SoZLuka;dark;text;t2_gch7f;False;False;[];;O M F G, with this level of world building, I think I'm already in love;False;False;;;;1610304912;;False;{};giscbdl;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giscbdl/;1610346249;14;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;That was it's uncle, do know The lore mate.;False;False;;;;1610304964;;False;{};giscf0m;False;t3_kuj1bm;False;False;t1_gisaxh5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giscf0m/;1610346309;10;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;A good VA helps. A Lot!;False;False;;;;1610305011;;False;{};gisci8r;False;t3_kuj1bm;False;False;t1_gisa2p5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisci8r/;1610346359;7;True;False;anime;t5_2qh22;;0;[]; -[];;;0hran-;;;[];;;;text;t2_4fu5lk6m;False;False;[];;First time that it sent someone in reincarnation. However truck kun as claimed a few victim before including a certain magical girl.;False;False;;;;1610305012;;False;{};giscibc;False;t3_kuj1bm;False;True;t1_gis85ip;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giscibc/;1610346360;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zxcv91095;;;[];;;;text;t2_3bv1oneo;False;False;[];;actually, re zero published 6 months before Mushoku Tensei;False;False;;;;1610305014;;False;{};giscifx;False;t3_kuj1bm;False;False;t1_gisbzex;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giscifx/;1610346362;21;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610305027;;False;{};giscjcf;False;t3_kuj1bm;False;True;t1_gis7qpc;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giscjcf/;1610346375;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NovaAhki;;;[];;;;text;t2_5wmm4eri;False;False;[];;"Yeah, kinda like that. It's called ""The pioneer/godfather/OG"" not because it came out first, but because it's so good that it became the inspiration for the modern isekai genre that we see at present. The irony is most of the times, those that try to copy it fail miserably and become the isekai garbages we know of...";False;False;;;;1610305032;;False;{};giscjq4;False;t3_kuj1bm;False;False;t1_gisbc8d;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giscjq4/;1610346381;53;True;False;anime;t5_2qh22;;0;[]; -[];;;Theleux;;MAL a-1milquiz;[];;https://myanimelist.net/profile/Theleux;dark;text;t2_am615;False;False;[];;"If anything I'm glad it took this long, the production it's getting now could have been like many of the other forgotten isekai shows we've seen over the past few years, and that would be a shame. - -As for the stans, most fan bases are like that, best is to just let them do their thing or if they are getting way out of hand in a detrimental fashion, just utilize that down arrow haha.";False;False;;;;1610305078;;False;{};giscn0x;False;t3_kuj1bm;False;False;t1_gis77e0;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giscn0x/;1610346432;6;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;"I didn't watch Tanya yet. It's in my backlog! - -But yeah, Once he grows up a little, I started to like him more.";False;False;;;;1610305127;;False;{};giscqgn;False;t3_kuj1bm;False;True;t1_gis8e5b;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giscqgn/;1610346486;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TUSF;;;[];;;;text;t2_en69f;False;False;[];;"Oh yeah, using a bunch of tropes isn't ""bad"", like some people think it is. Mushoku Tensei itself is a great piece of writing, and there aren't a lot of stories (much less isekai) that have so much detail in their world. - -I just find it dumb fans are averse to being seen as not 100% original.";False;False;;;;1610305151;;False;{};giscs89;False;t3_kuj1bm;False;True;t1_gisc71b;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giscs89/;1610346514;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610305152;;False;{};giscsb1;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giscsb1/;1610346515;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Legendseekersiege5;;;[];;;;text;t2_5nio4gd;False;False;[];;I was wondering because it seemed like some elements like visualizing the magic where straight copied from other shows;False;False;;;;1610305172;;False;{};gisctoq;False;t3_kuj1bm;False;False;t1_gisbynu;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisctoq/;1610346536;47;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;Realistically, how many season do we need to have a full adaptation?;False;False;;;;1610305210;;False;{};giscwk4;False;t3_kuj1bm;False;True;t1_gisawl1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giscwk4/;1610346581;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610305216;;False;{};giscwzb;False;t3_kuj1bm;False;True;t1_gisaynt;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giscwzb/;1610346587;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Theleux;;MAL a-1milquiz;[];;https://myanimelist.net/profile/Theleux;dark;text;t2_am615;False;False;[];;Yep, studio was formed with this production in mind. Of course the actual staff have experience on other series.;False;False;;;;1610305227;;False;{};giscxs4;False;t3_kuj1bm;False;False;t1_gis86mc;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giscxs4/;1610346599;22;True;False;anime;t5_2qh22;;0;[]; -[];;;tedooo;;;[];;;;text;t2_i4le2;False;False;[];;Think the brackets should be switched for it to appear as a spoiler.;False;False;;;;1610305300;;False;{};gisd33c;False;t3_kuj1bm;False;True;t1_gis8lyp;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisd33c/;1610346684;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dunmurdering;;;[];;;;text;t2_206jrtzx;False;False;[];;That's a huge problem for early cross media. Same issue with John Carter of Mars. Everyone's went to see the movie and felt they'd seen all the elements before in different movies, which of course they had, all those movies were inspired by John Carter.;False;False;;;;1610305460;;False;{};gisdehx;False;t3_kuj1bm;False;False;t1_gisctoq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisdehx/;1610346868;136;True;False;anime;t5_2qh22;;0;[]; -[];;;fadasd1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/fadasd;light;text;t2_jbsu6;False;False;[];;You might also recognize him as JOSEPH JOESTAR;False;False;;;;1610305462;;False;{};gisdeo7;False;t3_kuj1bm;False;False;t1_gis62u2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisdeo7/;1610346871;18;True;False;anime;t5_2qh22;;0;[]; -[];;;grizzchan;;;[];;;dark;text;t2_nn6d9;False;True;[];;Yes, but re zero isn't exactly part of the typical isekais.;False;False;;;;1610305496;;False;{};gisdhaz;False;t3_kuj1bm;False;False;t1_giscifx;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisdhaz/;1610346917;28;True;False;anime;t5_2qh22;;0;[]; -[];;;SomeBruv;;;[];;;;text;t2_669mfgun;False;False;[];;That gets me hyped, been getting tired of isekais honestly but I saw the hype surrounding this and I'm already liking it. How long is it, as in do we get to see the mc grow up and learn magic/swordsmanship gradually as he adventures around, or whatever it is that he does?;False;False;;;;1610305504;;False;{};gisdhyd;False;t3_kuj1bm;False;False;t1_gisbynu;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisdhyd/;1610346927;29;True;False;anime;t5_2qh22;;0;[]; -[];;;mysistersacretin;;;[];;;;text;t2_6v57c;False;False;[];;Really? I followed the sidebar and it appears as a spoiler for me on mobile, is it not working for you?;False;False;;;;1610305526;;False;{};gisdjnp;False;t3_kuj1bm;False;True;t1_gisd33c;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisdjnp/;1610346955;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Melbuf;;;[];;;;text;t2_j03jl;False;False;[];;The Vision of Escaflowne predates most - started in '94, anime was in 96;False;False;;;;1610305540;;False;{};gisdkqu;False;t3_kuj1bm;False;True;t1_gisavbd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisdkqu/;1610346978;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;An actual happy couple 😂;False;False;;;;1610305560;;False;{};gisdm9x;False;t3_kuj1bm;False;False;t1_gis7ohz;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisdm9x/;1610347002;14;True;False;anime;t5_2qh22;;0;[]; -[];;;whizmas;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/xjet465;light;text;t2_14gyc2;False;False;[];;lol big if true...;False;False;;;;1610305569;;False;{};gisdmw6;False;t3_kuj1bm;False;False;t1_gisanpd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisdmw6/;1610347013;28;True;False;anime;t5_2qh22;;0;[]; -[];;;TabletopPaintingUK;;;[];;;;text;t2_pgufb2q;False;False;[];;"Heh yeah. - -I only hope this Anime isn't just a series of annoying scenes where the MC is constantly doing lewd stuff.";False;False;;;;1610305607;;False;{};gisdpwv;False;t3_kuj1bm;False;False;t1_gisdm9x;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisdpwv/;1610347058;5;True;False;anime;t5_2qh22;;0;[]; -[];;;whizmas;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/xjet465;light;text;t2_14gyc2;False;False;[];;Yea I got turned off by that at first but its cool how he tries to improve his behavior/thoughts;False;False;;;;1610305637;;False;{};gisds1a;False;t3_kuj1bm;False;False;t1_gis9g46;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisds1a/;1610347091;49;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Apparently it's a One Punch Man S1 situation, where The Studio was created for The sole purpose of animating this project. Hopefully they Go all The way.;False;False;;;;1610305649;;False;{};gisdsy5;False;t3_kuj1bm;False;False;t1_gis5vqx;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisdsy5/;1610347104;98;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610305659;;False;{};gisdtmw;False;t3_kuj1bm;False;True;t1_gis6wr7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisdtmw/;1610347116;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;00zau;;;[];;;;text;t2_z3ie0;False;False;[];;"Basically, all of the common isekai cliches you see in just about every series, MT does them slower and more nuanced. - -One you can see right in the first episode is that, unlike most isekai where the MC is reborn as a child, MT doesn't timeskip to Anime Protagonist Age with no character changes. [meta spoiler](/s ""Rudy won't reach that age for a long time, and will actually be a changed person by then based on the decade plus of new experiences."") - -For a more specific example, we can look at the whole ""introduce Japanese culture"" thing [minor spoiler, ~volume 6](/s ""Rudy finally gets his hands on some rice so he can make omurice or something... and his friends are like 'yeah, it's alright'. He likes it because it reminds him of home, but it's not treated as something special."") - -And so it goes for other cliches. MT takes things slow and generally in depth, so things that became worn-out cliches don't feel like that here, because it's not done in such blatant fashion.";False;False;;;;1610305667;;False;{};gisdu8o;False;t3_kuj1bm;False;False;t1_gis5oge;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisdu8o/;1610347124;27;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Isn’t the daddy of the Isekai skeleton Dragon Quest?;False;False;;;;1610305692;;False;{};gisdw3o;False;t3_kuj1bm;False;False;t1_gisajc1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisdw3o/;1610347154;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;I hope it’s more like WIT where they keep on making good anime after this;False;False;;;;1610305732;;False;{};gisdz17;False;t3_kuj1bm;False;False;t1_gis92bx;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisdz17/;1610347200;51;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Yup. Althou, Konosuba Is a parody of The ones that copied It, not of It itself. Man I miss Konosuba.;False;False;;;;1610305733;;False;{};gisdz38;False;t3_kuj1bm;False;True;t1_gis9oju;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisdz38/;1610347201;0;True;False;anime;t5_2qh22;;0;[]; -[];;;I_Smoke_Cardboards;;;[];;;;text;t2_xistv;False;False;[];;True true. Everything looks great. I’m just wondering how they’ll handle a pacing knowing how the story’s set up;False;False;;;;1610305736;;False;{};gisdzd0;False;t3_kuj1bm;False;True;t1_giscn0x;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisdzd0/;1610347205;0;True;False;anime;t5_2qh22;;0;[]; -[];;;A-Glitch-Gnome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/AGlitchGnome;light;text;t2_adirj;False;False;[];;"you are correct that there were many series that predate this by like 6-8 months. however in terms of popularity, at that time, the isekai ""genre"" didn't exist. it was still a pretty niche story format in the fantasy genre. many of those other shows you mentioned were popular definitely, but that was only amongst those who were already into the niche webnovel fandoms. People only became more aware of those other shows because of how popular Mushoku Tensei became and it broke the isekai format out into a more mainstream fandom. - -in addition, the story format of Mushoku tensei was really easy to copy/paste as an origin and then spin off with your own version. this is exactly because it combined all of those tropes that were already out there. It became the ""grandfather"" of isekai because during it's run, it became the gold standard by which all other isekai were measured. While it didn't originate the tropes, it perfectly executed those tropes and built out a world and characters to a level of depth and scope that many series simply couldn't match. - -i would liken it to how superhero movies definitely existed in the past but the marvel movies defined what the tropes of a ""superhero"" movie is. they became the gold standard for superhero movies and aside from some exeptions like the dark knight series i could attribute them as the ""grandfather"" of superhero movies because they captured the spirit of the genre";False;False;;;;1610305796;;False;{};gise3ty;False;t3_kuj1bm;False;False;t1_gisby6v;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gise3ty/;1610347271;11;True;False;anime;t5_2qh22;;0;[]; -[];;;consolefreakedorigin;;;[];;;;text;t2_2baqt95w;False;False;[];;"The details on those tits -Damm that studio goes above and beyond";False;False;;;;1610305802;;False;{};gise4ae;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gise4ae/;1610347278;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610305812;;False;{};gise4ym;False;t3_kuj1bm;False;True;t1_gis7cn8;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gise4ym/;1610347289;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610305861;;False;{};gise8jp;False;t3_kuj1bm;False;True;t1_gis9roj;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gise8jp/;1610347345;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Second most famous one is probably Joseph Joestar right?;False;False;;;;1610305864;;False;{};gise8rj;False;t3_kuj1bm;False;False;t1_gis7rn2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gise8rj/;1610347349;39;True;False;anime;t5_2qh22;;0;[]; -[];;;Acturio;;MAL;[];;http://myanimelist.net/animelist/Acturio01;dark;text;t2_c1azh;False;False;[];;as someone that really hates the pervy side of the MC i downvoted that comment because its making out the episode like it didnt have anything to be excited about even as a anime only. It was just a stupid comment to make, which is a shame since i think the user is a pretty well known member in here.;False;False;;;;1610305904;;False;{};gisebmv;False;t3_kuj1bm;False;True;t1_gis6es0;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisebmv/;1610347393;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;uu Yuu Hakusho came out 20 years before Mushoku Tensei so it’s hard to say;False;False;;;;1610306045;;False;{};giselt9;False;t3_kuj1bm;False;False;t1_gis9oju;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giselt9/;1610347553;17;True;False;anime;t5_2qh22;;0;[]; -[];;;NeckOnKn33;;;[];;;;text;t2_7gp4o11j;False;False;[];;Animation was pretty good. It's hard to get water right.;False;False;;;;1610306065;;False;{};gisenab;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisenab/;1610347576;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Florac;;;[];;;;text;t2_vy0sf;False;False;[];;I don't know if it's the first or not, but probably Mushoku Tensei popularized it for isekai?;False;False;;;;1610306069;;False;{};gisenks;False;t3_kuj1bm;False;False;t1_gisaxh5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisenks/;1610347580;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Xzcarloszx;;;[];;;;text;t2_886vs;False;False;[];;But they obviously existed or how else would Subaru expect the classic isekai fantasy in the first episode.;False;False;;;;1610306111;;False;{};giseqol;False;t3_kuj1bm;False;True;t1_gisdhaz;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giseqol/;1610347627;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Florac;;;[];;;;text;t2_vy0sf;False;False;[];;Did you know Mushoku tensei is the grandfather of modern isekai?;False;False;;;;1610306119;;False;{};giseram;False;t3_kuj1bm;False;True;t1_gisc7jn;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giseram/;1610347637;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610306137;;False;{};giseslt;False;t3_kuj1bm;False;True;t1_giscwzb;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giseslt/;1610347657;3;True;False;anime;t5_2qh22;;0;[]; -[];;;njnywy;;;[];;;;text;t2_ezo7awz;False;False;[];;One thing I really **really** appreciate about this series is it's an actual isekai, not some game isekai where the protagonist would always have some UI popping up making everything easier for themselves. Rudy actually had to read a damn book with a different language and spent years practicing magic and not some, click here to gain x stat, learn x move etc. Extremely refreshing and I can confidently say this anime would be my AOTS.;False;False;;;;1610306190;;False;{};gisewc1;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisewc1/;1610347713;7;True;False;anime;t5_2qh22;;0;[]; -[];;;messem10;;;[];;;;text;t2_6pcwi;False;False;[];;"Nah, the grandaddy of isekai would be stuff like Inuyasha or Escaflowne. - -I’d also say that Zero no Tsukaima is a mid-00’s attempt at it as well.";False;False;;;;1610306198;;False;{};gisewxe;False;t3_kuj1bm;False;False;t1_gis7g42;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisewxe/;1610347723;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Gmayor61;;;[];;;;text;t2_hsup8;False;False;[];;Trucks killing characters off is actually a pretty old trope, it's been on the rise as a means of sending people to other worlds though;False;False;;;;1610306230;;False;{};gisez56;False;t3_kuj1bm;False;False;t1_gis5o4z;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisez56/;1610347756;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610306254;;False;{};gisf0x1;False;t3_kuj1bm;False;True;t1_gis6h0j;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisf0x1/;1610347782;42;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeSamaDesu;;;[];;;;text;t2_2i45pycv;False;False;[];;YES IS FINALLY HERE! Man i got emotional for a moment My man rudeus:’);False;False;;;;1610306267;;False;{};gisf1th;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisf1th/;1610347796;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610306336;;False;{};gisf6x3;False;t3_kuj1bm;False;True;t1_gisf0x1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisf6x3/;1610347873;13;True;False;anime;t5_2qh22;;0;[]; -[];;;SkyLETV;;MAL;[];;https://myanimelist.net/profile/SkyLETV;dark;text;t2_bn8y64t;False;False;[];;"That was awesome! - -First of all the visuals are impressive, with beautiful character designs and great animation, the quality that both of the water ball scenes had... wow! - -Voice acting is also top notch. Sugita voicing the perv MC is perfect, it would honestly have been creepy to see all that from an adult but seeing it from a baby made it hilarious. - -Hearing his parents having sex is something I didn't expect haha. I guess it makes it more real xD. - -I already love Roxy, she is so cute! Konomi Kohara fits perfectly. And lol with Rudy getting distracted by her panties. - -My favorite premiere so far, looking forward to more.";False;False;;;;1610306342;;False;{};gisf7c0;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisf7c0/;1610347880;7;True;False;anime;t5_2qh22;;0;[]; -[];;;phoenix7240;;;[];;;;text;t2_112sk7;False;False;[];;wanting to beat child rudeus is kinda the point. this is a man trying to change himself so kid rudeus is going to have a near identical personality to the man he was not the man he will aspire to be.;False;False;;;;1610306364;;False;{};gisf8xm;False;t3_kuj1bm;False;False;t1_gis7161;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisf8xm/;1610347905;35;True;False;anime;t5_2qh22;;0;[]; -[];;;gearoflife;;;[];;;;text;t2_11ks6h;False;False;[];;"I'm so happy my favorite WN/LN got an anime. The first episode was soo good I can't wait to se the rest of them already. I believe the author didn't want to do an anime adaptation unless they adapted all of it so I hope its true because this story is amazing. The life of Rudy Greyrat begins. - -Also best girl is yet to be seen";False;False;;;;1610306366;;False;{};gisf92a;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisf92a/;1610347907;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Florac;;;[];;;;text;t2_vy0sf;False;False;[];;Probably 4-5 2 cour seasons(or like 4 2 cour, 1 1 cour) ? LN isn't done yet, but in it's final arc and approaching the final battle, so should be done in 1-2 volumes probably, ending it at 25-26 total. This season will adapt till volume 6. It depends on how they do the pacing for later parts. If I had to make a rough guess, a season 2 would go till volume 12, season 3 to volume 17, season 4 to volume 21 and season 5 for the rest. 4 seasons with 6-7 volumes in each would also work, but doesn't result in as good endings.;False;False;;;;1610306428;;1610317440.0;{};gisfdm4;False;t3_kuj1bm;False;False;t1_giscwk4;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisfdm4/;1610347977;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;IIRC the Author also said that he wanted this series to be adapted in full whenever it happens;False;False;;;;1610306478;;1610309489.0;{};gisfh93;False;t3_kuj1bm;False;False;t1_gis8yct;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisfh93/;1610348034;71;True;False;anime;t5_2qh22;;0;[]; -[];;;Level1Pixel;;;[];;;;text;t2_ffibf94;False;False;[];;"One of my if not most hyped series this season. Of all the fantasy and isekais I have read, nothing can come close to the sense of journey and accomplishment Mushoku Tensei has. - -MT, at its core is a story about self-betterment. It's not about some highschooler or some salaryman reincarnating and just steamrolling everyone with their ""superior"" knowledge. It's about a scum becoming a respectable person. - -I am so glad it got the adaptation it deserves. The pacing. The animation. The attention to detail. *Chief's kiss*";False;False;;;;1610306480;;1610306739.0;{};gisfhei;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisfhei/;1610348036;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DestroyerOfDoom29;;;[];;;;text;t2_yvqy9eh;False;False;[];;I meant more like trunk kun kinda stories;False;False;;;;1610306543;;False;{};gisflxp;False;t3_kuj1bm;False;True;t1_gisc4j7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisflxp/;1610348106;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DestroyerOfDoom29;;;[];;;;text;t2_yvqy9eh;False;False;[];;Thanks!;False;False;;;;1610306583;;False;{};gisfos5;False;t3_kuj1bm;False;True;t1_gisdkqu;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisfos5/;1610348148;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ry-O-Ken;;;[];;;;text;t2_2lrnusrf;False;False;[];;There were definitely others before it with similar tropes, but this was probably the one that significantly helped to popularise them;False;False;;;;1610306595;;False;{};gisfpnd;False;t3_kuj1bm;False;False;t1_gisbc8d;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisfpnd/;1610348163;11;True;False;anime;t5_2qh22;;0;[]; -[];;;deja_entend_u;;;[];;;;text;t2_dcskb;False;False;[];;"> Seems like all pretty standard isekai stuff. - -This is the isekai that MADE this stuff.";False;False;;;;1610306598;;False;{};gisfpvt;False;t3_kuj1bm;False;False;t1_gis4z3u;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisfpvt/;1610348167;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Mami-kouga;;;[];;;;text;t2_rdte2zs;False;False;[];;I know it's kind of the point, I said so myself in the comment.;False;False;;;;1610306623;;False;{};gisfrnv;False;t3_kuj1bm;False;False;t1_gisf8xm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisfrnv/;1610348195;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Ezylo1224;;;[];;;;text;t2_8rr48vxq;False;False;[];;It isn’t better than the others just came first in some respect.;False;False;;;;1610306630;;False;{};gisfs7o;False;t3_kuj1bm;False;True;t1_gis5oge;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisfs7o/;1610348203;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Oxu90;;;[];;;;text;t2_yxh7y;False;False;[];;Absolutely!;False;False;;;;1610306642;;False;{};gisft57;False;t3_kuj1bm;False;False;t1_gise8rj;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisft57/;1610348217;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Culuperino;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/culup;light;text;t2_8ioxidw3;False;False;[];;"I see on some places ""episode 1-2"" is that like a fan sub for the full episode 2?";False;False;;;;1610306665;;False;{};gisfuuj;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisfuuj/;1610348244;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;"And I don't doubt that it has plenty of importance in making isekai more prominent. But this comment chain was about originating the tropes of modern isekai, the bulk of which already existed in popular works, and were being seen in new series that may not have been notable yet, but certainly predate it. Not saying all of the series I mentioned were already popular, but entries like The Familiar of Zero were pretty big on a lot of the typical tropes and was big enough to get four seasons covering a complete story. - -So seeing things like the first poster in this chain saying, ""I hope the tropes won’t get called out when this series is literally the one that started them lmao,"" winds up feeling like a preemptive defense against any criticism of tropiness, even if some of them may be perfectly justified. Though that also stems from a whole separate point of how a lot of people just point out that something is a trope and think that they've made some brilliant critical point.";False;False;;;;1610306695;;False;{};gisfwzd;False;t3_kuj1bm;False;False;t1_gise3ty;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisfwzd/;1610348279;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AsuraTheDestructor;;;[];;;;text;t2_wlndg;False;False;[];;Pretty Cool so far. Its very pretty, too.;False;False;;;;1610306705;;False;{};gisfxqw;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisfxqw/;1610348289;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;He definitely was super creepy (like with his mom and the maid) but if he improves as a person as we move forward then I'll be quite satisfied.;False;False;;;;1610306705;;False;{};gisfxrc;False;t3_kuj1bm;False;False;t1_gis9g46;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisfxrc/;1610348290;47;True;False;anime;t5_2qh22;;0;[]; -[];;;Robddit;;;[];;;;text;t2_jyep6js;False;False;[];;"**Pahail za!** - -Are we going to see any effort of somebody trying to translate their language? It is made-up but follow a pattern. Probably english covered with other characters for each letter.";False;False;;;;1610306721;;False;{};gisfywn;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisfywn/;1610348307;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;">Also Rudy's mom can get it. - -She can definitely get it alright. She's getting *looooooots* of it. ( ͡° ͜ʖ ͡°)";False;False;;;;1610306724;;1610310693.0;{};gisfz5z;False;t3_kuj1bm;False;False;t1_gis5ihv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisfz5z/;1610348311;62;True;False;anime;t5_2qh22;;0;[]; -[];;;Reed1981;;;[];;;;text;t2_tkg7kxi;False;False;[];;You made me remember OPM season 2. You bastard.;False;False;;;;1610306739;;False;{};gisg08a;False;t3_kuj1bm;False;True;t1_gis92bx;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisg08a/;1610348327;2;True;False;anime;t5_2qh22;;0;[]; -[];;;random_throwaway0001;;;[];;;;text;t2_9lx2xvpv;False;False;[];;"I thought I would mention something. This is an adaptation of the light novel, not the manga or web novel. Manga skips a lot of details that will be in the anime, and even if you've read the web novel you'll still be surprised because, in the later volumes, the light novel does some things differently than the web novel. And even then, if you've read the LIGHT NOVEL in English (published by Seven Seas) you'll still see some minor differences between the light novel and the anime because the official translation is censored/degrossified. - -Like in volume 1, the Japanese text implies that, [spoiler](/s ""Paul raped the maid (forceful yobai is what the raw says),"") when he first set his eyes on her 6 years ago. The official translation degrossifies it and makes it sound more like it was consensual, when it clearly wasn't. I also noticed some changes in volume 2 while quickly looking through it, some paragraphs moved, some removed -- Like in the raw, [spoiler](/s ""Rudeus gropes Eris' breasts,"") which became ""eyeing her chest"" in the official translation somehow. And he tries to lift off her skirt to take off her panties to punish her, this becomes ""I decided to pull her shirt over her stomach so she wouldn't catch a cold"". It's pretty gross stuff, so I can't blame them for censoring it, but people who've read the light novels in English and are watching the anime might notice some small differences like that.";False;False;;;;1610306828;;1610335443.0;{};gisg6n0;False;t3_kuj1bm;False;False;t1_gis4wdd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisg6n0/;1610348427;15;True;False;anime;t5_2qh22;;0;[]; -[];;;nsleep;;MAL;[];;https://myanimelist.net/animelist/NeverSleep;dark;text;t2_5u8vg;False;False;[];;People will say he gets better with time, but if the LN this is adapting is like the WN which is what I read then no, it doesn't. If this is turning you off by this point it won't stop, it's played less often later as more important topics are focused but he's still the same creep through and through.;False;False;;;;1610306883;;False;{};gisgalk;False;t3_kuj1bm;False;False;t1_gis7fg4;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisgalk/;1610348490;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Kookospuuro;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Kookospuuro/;light;text;t2_3poom3wa;False;False;[];;Is this the second season of Dogeza?;False;False;;;;1610306908;;False;{};gisgccc;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisgccc/;1610348517;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Florac;;;[];;;;text;t2_vy0sf;False;False;[];;Both were pre-aired, so yes, episode 2 has fansubs;False;False;;;;1610306937;;False;{};gisgek7;False;t3_kuj1bm;False;True;t1_gisfuuj;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisgek7/;1610348552;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Of_Awesomeness;;;[];;;;text;t2_1mx70z4s;False;False;[];;Apparently the series is the entire biography of the MC's new life, from birth to death. So yeah, he'll be training for a while.;False;False;;;;1610306944;;False;{};gisgf31;False;t3_kuj1bm;False;False;t1_gisdhyd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisgf31/;1610348561;78;True;False;anime;t5_2qh22;;0;[]; -[];;;Exodor54;;MAL;[];;http://myanimelist.net/animelist/Exodor;dark;text;t2_eex6z;False;False;[];;Zenith a screamer;False;False;;;;1610306945;;False;{};gisgf63;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisgf63/;1610348562;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kureika;;;[];;;;text;t2_8ajusjrq;False;False;[];;I had exactly the same feeling!;False;False;;;;1610306957;;False;{};gisgg13;False;t3_kuj1bm;False;True;t1_gis9vy2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisgg13/;1610348575;2;True;False;anime;t5_2qh22;;0;[]; -[];;;grizzchan;;;[];;;dark;text;t2_nn6d9;False;True;[];;Of course the concept existed, but what Mushoku Tensei did was popuralize a formula that many isekais after it used.;False;False;;;;1610307003;;False;{};gisgje3;False;t3_kuj1bm;False;False;t1_giseqol;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisgje3/;1610348626;19;True;False;anime;t5_2qh22;;0;[]; -[];;;black-bull;;;[];;;;text;t2_2v224fiz;False;False;[];;I mean that’s understandable I disliked Rudeus perverted actions at the start as well I even dropped it but picked it back up a while afterwards lmao;False;False;;;;1610307022;;False;{};gisgkqx;False;t3_kuj1bm;False;True;t1_gisbati;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisgkqx/;1610348647;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;This was lots of fun. I hope they dont shy from ecchi scenes, I haven't read the source but I've heard they're there. Roxy is looking like best girl of the season.;False;False;;;;1610307032;;False;{};gisglic;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisglic/;1610348659;1;True;False;anime;t5_2qh22;;0;[]; -[];;;N1gHtMaRe99;;;[];;;;text;t2_4hm66djz;False;False;[];;I m given to understand it can span for a few years and its considered the Godfather of Isekai so it should get all the sequels;False;False;;;;1610307071;;False;{};gisgoe9;False;t3_kuj1bm;False;False;t1_gisdhyd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisgoe9/;1610348702;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Rs_Plebian_420;;;[];;;;text;t2_16w7nb;False;False;[];;How old is the webnovel? I mean the truck trope was a thing even in Yu Yu Hakusho.;False;False;;;;1610307088;;False;{};gisgplj;False;t3_kuj1bm;False;False;t1_gis6pso;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisgplj/;1610348721;1;True;False;anime;t5_2qh22;;0;[]; -[];;;random_throwaway0001;;;[];;;;text;t2_9lx2xvpv;False;False;[];;"> How long is it, as in do we get to see the mc grow up and learn magic/swordsmanship gradually as he adventures around, or whatever it is that he does? - -25 volumes, and [answer to that question](/s ""yes."")";False;False;;;;1610307096;;False;{};gisgq71;False;t3_kuj1bm;False;False;t1_gisdhyd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisgq71/;1610348730;30;True;False;anime;t5_2qh22;;0;[]; -[];;;ILikeWeebShit;;MAL;[];;https://myanimelist.net/profile/ILikeWeebShit;dark;text;t2_k4mndkz;False;False;[];;"Solid adaptation so far. Rudy is not your typical isekai protagonist for better or worse. I can't wait to watch him grow and change as a person throughout the rest of the series. This is my favorite isekai and hope a lot of anime-onlys stick around for this series. - -Also, Roxy #1!";False;False;;;;1610307098;;False;{};gisgqce;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisgqce/;1610348733;2;True;False;anime;t5_2qh22;;0;[]; -[];;;N1gHtMaRe99;;;[];;;;text;t2_4hm66djz;False;False;[];;Sao, cautious hero, shield hero too many to name;False;False;;;;1610307126;;False;{};gisgs2t;False;t3_kuj1bm;False;True;t1_giscjq4;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisgs2t/;1610348760;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AlwaysLupus;;;[];;;;text;t2_59xtg;False;False;[];;">The daddy of the modern isekai skeleton is finally here. - -For some reason I thought you were talking about Ainz Ooal Gown (the best isekai skeleton), but now I get it.";False;False;;;;1610307128;;False;{};gisgscm;False;t3_kuj1bm;False;False;t1_gisajc1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisgscm/;1610348764;20;True;False;anime;t5_2qh22;;0;[]; -[];;;am803;;;[];;;;text;t2_2zjtbhr1;False;False;[];;"> It reminds me of how Western fantasy stories are often slow the first several chapters by having to painstakingly flesh out the world before jumping into the main story. - -That's why this series is so great. It's the perfect fusion of western high fantasy and isekai. The story starts as an isekai but expands more like good old epics, with RPG factors like graded skills and ranked adventurers in a more realistic flavor instead of numeral status. You are going to **grow up** along with the protagonist in the new world rather watch the OP player messing around with the game.";False;False;;;;1610307131;;1610312499.0;{};gisgsl2;False;t3_kuj1bm;False;False;t1_gis7khi;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisgsl2/;1610348769;12;True;False;anime;t5_2qh22;;0;[]; -[];;;JUST_CHATTING_FAPPER;;;[];;;;text;t2_2o2uyt3s;False;False;[];;Unironically;False;False;;;;1610307135;;False;{};gisgsw5;False;t3_kuj1bm;False;False;t1_gisa5z1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisgsw5/;1610348773;22;True;False;anime;t5_2qh22;;0;[]; -[];;;random_throwaway0001;;;[];;;;text;t2_9lx2xvpv;False;False;[];;About 10 years old. It definitely wasn't the first one to use the trope, but it definitely popularized it on Narou.;False;False;;;;1610307223;;False;{};gisgz6s;False;t3_kuj1bm;False;False;t1_gisgplj;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisgz6s/;1610348871;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"[Watch your mouth, kid](https://imgur.com/odr1VVa), it's your mom you're talking about! (*I* can call her gorgeous, because she's not my mom). - -But seriously, [the mom is beautiful!](https://imgur.com/7NxEib6) The dad too I guess, kid should grow into a good looking dude! If he ever grows up anyway, I don't even know if we'll see him as an adult, or if he just stays a kid for the entire show. - -Anyway, this was a fun enough first episode! Will have to see how the rest goes, if it's still entertaining, or if it turns more generic, as these shows tend to do more often than not. - -I hope we get to see more of the mom, she's real cute and has a great personality too. (Hopefully I didn't jinx it, and both his parents die in Ep2 or something, to launch his adventure).";False;False;;;;1610307276;;False;{};gish2y1;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gish2y1/;1610348930;15;True;False;anime;t5_2qh22;;0;[]; -[];;;A-Glitch-Gnome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/AGlitchGnome;light;text;t2_adirj;False;False;[];;"fair enough. i think people said the same thing about shield hero when it aired as it came out around the same time as mushoku tensei. I would argue that in the case of mushoku tensei its tropes are used to great effect for character developement and plot points, however it remains to be seen if that will hold true for the anime. - -i am pretty hopeful after this first episode though, the quality of everything was top tier.";False;False;;;;1610307304;;False;{};gish4xc;False;t3_kuj1bm;False;True;t1_gisfwzd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gish4xc/;1610348960;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacksoncic;;;[];;;;text;t2_386mmpr4;False;False;[];;Damn the mom bad af lmao;False;False;;;;1610307325;;False;{};gish6ja;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gish6ja/;1610348984;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610307336;;False;{};gish79i;False;t3_kuj1bm;False;True;t1_gis7ndp;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gish79i/;1610348995;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Nope, It would be idiotic. If he behaving like an adult on a child body already raízes eyebrows, doing Anything too suspicious could end up bad. He doesn't know How this world work, só his best chance of.learning is here. Besides, there is a real chance a medieval world would call him a Demon a exorcise his ass If he started talking nonsense like you think he should.;False;False;;;;1610307380;;False;{};gishag5;False;t3_kuj1bm;False;False;t1_gisc5cq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gishag5/;1610349046;18;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"My reply to their comment was because they said gone are the days of ""uninspired trash"" - -To me, my reply was listed something that was uninspired trash in my opinion that this episode showed. - -> It was just a stupid comment to make, which is a shame since i think the user is a pretty well known member in here. - -I may be well known but well known for stupid comments like this one. I don't plan on changing my comments no matter how ""popular"" I may or may not be.";False;False;;;;1610307461;;False;{};gishg8d;False;t3_kuj1bm;False;True;t1_gisebmv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gishg8d/;1610349137;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DrMobius0;;;[];;;;text;t2_ieiiq;False;False;[];;So you're saying this is the story I can blame for the tropes?;False;False;;;;1610307463;;False;{};gishgfh;False;t3_kuj1bm;False;True;t1_gis7khi;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gishgfh/;1610349140;2;True;False;anime;t5_2qh22;;0;[]; -[];;;deja_entend_u;;;[];;;;text;t2_dcskb;False;False;[];;Zenith smug face at 14:30 is about the most glorious thing I have seen ever.;False;False;;;;1610307465;;False;{};gishgka;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gishgka/;1610349142;15;True;False;anime;t5_2qh22;;0;[]; -[];;;RzdAkira;;;[];;;;text;t2_z3wpc;False;False;[];;"Well, Kyon just dimension slipped into this huh- - -is what I want to say when Rudeus started to narrate. - -I love the production value in this. Its so good!";False;False;;;;1610307467;;False;{};gishgph;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gishgph/;1610349144;4;True;False;anime;t5_2qh22;;0;[]; -[];;;VariousMeet;;;[];;;;text;t2_63veb3s5;False;False;[];;"I never liked the trope of the MC being the first to discover secrets about magic previously never known. I'd much rather have the story follow someone who's just naturally gifted, because then it's at least more excusable. I get that this is the ""godfather"" of isekais, but still, you're trying to tell me absolutely no one has tried to improvise magic anymore than already known except for him? It seems the magic system has been around for at least as long as his mom's age, and they've learned enough about it to assign 7 different classes of it, yet they wouldn't have thought ""maybe we don't even need to do incantations"" at all? Idk, with as loose of a concept as magic is, you'd think the understanding/teaching of it wouldn't be so similar to a horse's blinders. Regardless, this seems like a really good show aside from my pet peeve.";False;False;;;;1610307474;;False;{};gishh99;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gishh99/;1610349152;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiro_Kai;;;[];;;;text;t2_bevm2wi;False;False;[];;Simple but great and elucidating start. Superb animation too.;False;False;;;;1610307489;;False;{};gishib5;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gishib5/;1610349167;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IterativeDFS;;;[];;;;text;t2_1q0tt2hl;False;False;[];;It's beautiful!;False;False;;;;1610307542;;False;{};gishm3c;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gishm3c/;1610349225;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Althalos;;;[];;;;text;t2_9bz5e;False;False;[];;"Didn't really have an issue with the MC of Maou Gakuin being OP as fuck. - -They fully knew he was and leaned in on it. Made the ridiculous shit he kept pulling funnier each time imo. Also helped that he actually had a personality instead of the usual dense as fuck generic OP MC.";False;False;;;;1610307595;;False;{};gishprs;False;t3_kuj1bm;False;True;t1_gis5pow;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gishprs/;1610349281;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;">he will have a harem, maid, sensei, mom - ->mom - -[](#blankblink)";False;False;;;;1610307611;;False;{};gishqx2;False;t3_kuj1bm;False;True;t1_gis6k97;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gishqx2/;1610349297;1;True;False;anime;t5_2qh22;;0;[]; -[];;;piruuu;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/devje/;light;text;t2_fzj11;False;False;[];;Yes, you might also recognize him as Jack, Depp, Hopper and Bathhouse Owner.;False;False;;;;1610307705;;False;{};gishxlu;False;t3_kuj1bm;False;False;t1_gis62u2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gishxlu/;1610349402;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Traffyshotz;;;[];;;;text;t2_2ff337p0;False;False;[];;The romance is very... complex and deep lol;False;False;;;;1610307789;;False;{};gisi3kj;False;t3_kuj1bm;False;False;t1_gis6h0j;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisi3kj/;1610349494;18;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;This is ufotable level holy shit.;False;False;;;;1610307810;;False;{};gisi52z;False;t3_kuj1bm;False;True;t1_gis86mc;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisi52z/;1610349518;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Culuperino;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/culup;light;text;t2_8ioxidw3;False;False;[];;Does that mean today was episode 1's full release?;False;False;;;;1610307817;;False;{};gisi5iy;False;t3_kuj1bm;False;True;t1_gisgek7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisi5iy/;1610349524;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KoHorizon;;;[];;;;text;t2_fcjicb5;False;False;[];;Animation and Character Desgin and World are amazing. Also love the ambiant color they used;False;False;;;;1610307829;;False;{};gisi6cu;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisi6cu/;1610349537;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"> The webnovel is one of the grand daddies of the traditional isekais and I hope the tropes won’t get called out when this series is literally the one that started them lmao - -Didn't know about that! - -Still, I wouldn't say it's wrong if people eventually complain about tropes; What people don't like about tropes is not that ""They copied on someone else!"", it's that they've seen it way too often. - -Even if the author is the one who came up with all that stuff, from the anime-only's perspective it'll still just be something they've seen a million times, and the fact that this is the series that started it all, doesn't really change much for them.";False;False;;;;1610307866;;False;{};gisi90o;False;t3_kuj1bm;False;True;t1_gis5cl6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisi90o/;1610349581;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Florac;;;[];;;;text;t2_vy0sf;False;False;[];;Well, official, it was already released in full before;False;False;;;;1610307923;;False;{};gisid9d;False;t3_kuj1bm;False;True;t1_gisi5iy;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisid9d/;1610349676;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Culuperino;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/culup;light;text;t2_8ioxidw3;False;False;[];;So episode 1 and 2 have already been released in full Japanese and episode 1 was released subbed? I'm somewhat confused on the pre-air and other things.;False;False;;;;1610307966;;False;{};gisigdb;False;t3_kuj1bm;False;False;t1_gisid9d;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisigdb/;1610349725;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610308034;;False;{};gisildu;False;t3_kuj1bm;False;True;t1_gisa2p5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisildu/;1610349804;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Evilmon2;;;[];;;;text;t2_6e943;False;False;[];;"It's not a ""granddaddy of isekai,"" it came out in fucking 2012. Re:Zero and Overlord came out monts to years before, Konosuba and Shield Hero both came out a month after, The Familiar of Zero came out almost a goddamn decade before and it was huge in the anime/manga scene, and then there's stuff like Rayearth, Escaflowne, and Those Who Hunt Elves that came out in the early 1990s. Any attempt to call it a grand daddy of isekai tropes is just trying to distract from the fact that KonoSuba was already mocking those exact same long-standing tropes only a month after the webnovel started.";False;False;;;;1610308049;;1610308445.0;{};gisimgt;False;t3_kuj1bm;False;True;t1_gis71d4;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisimgt/;1610349821;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Florac;;;[];;;;text;t2_vy0sf;False;False;[];;There was a stream in japan they had early for the sake of marketing, which showed the first 2 episodes in full. Some people fansubbed a recording of this stream. Today is when the episode aired on TV in Japan and was officially released subbed.;False;False;;;;1610308088;;False;{};gisipa6;False;t3_kuj1bm;False;True;t1_gisigdb;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisipa6/;1610349865;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cire101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cire101;light;text;t2_oryv2;False;False;[];;"Oh no, his parents are going to die aren't they?(dad saying ""monsters don't come here"" totally a death flag) This will spark his journey? Oh please no they're so wholesome...";False;False;;;;1610308093;;False;{};gisipog;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisipog/;1610349871;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SirDancelotVS;;;[];;;;text;t2_zkklh;False;False;[];;"it is finally here and i am so fucking happy right now - -this show is one of the best isekai stories ever - -and the quality of the anime is so fucking high. - -the voice acting, i recognized almost every voice, even if i could only name Sugita. - -the pacing, it is so fucking perfectly paced. - -forget all trash isekai you may have watched before, this one is a true isekai with that really captures the appeal of isekai";False;False;;;;1610308109;;False;{};gisiqtc;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisiqtc/;1610349889;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;"That was a great first episode. Can't believe this is the studio's first anime. Looking forward to future productions from them. - -Animation was absolute amazing and I really like the character designs. I also like the magic system here. Its almost like programming an object.";False;False;;;;1610308135;;False;{};gisisnm;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisisnm/;1610349916;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Evilmon2;;;[];;;;text;t2_6e943;False;False;[];;Wow, it's amazing that just a month after the first chapter of the original webnovel came out KonoSuba was already mocking it.;False;False;;;;1610308231;;False;{};gisizl9;False;t3_kuj1bm;False;False;t1_gis5o4z;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisizl9/;1610350018;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Gkalaitza;;;[];;;;text;t2_1b8c3m;False;False;[];;Dunbine by Gundam Director Yoshiuki Tomino was probably the first Isekai in anime/manga;False;False;;;;1610308238;;False;{};gisj02i;False;t3_kuj1bm;False;True;t1_gisavbd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisj02i/;1610350026;3;True;False;anime;t5_2qh22;;0;[]; -[];;;flamethrower2;;;[];;;;text;t2_qo55l;False;False;[];;I immediately recognized Truck-kun. It's a little surprising how much Truck-kun has been copied. There are a lot of ways to die, right?;False;False;;;;1610308243;;False;{};gisj0fl;False;t3_kuj1bm;False;False;t1_gisctoq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisj0fl/;1610350031;51;True;False;anime;t5_2qh22;;0;[]; -[];;;Culuperino;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/culup;light;text;t2_8ioxidw3;False;False;[];;Oh I see. Thank you.;False;False;;;;1610308294;;False;{};gisj41a;False;t3_kuj1bm;False;True;t1_gisipa6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisj41a/;1610350086;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;"The dad is one horny mf too. I think you're not supposed to have sex until a few weeks after you've given birth, but this dude does it like a few hours/days after Rudy's birth. - -Also, Rudy seems to be unaffected but the loud noises of his parents having sex, meaning that they do it often enough that he's gotten used to it. Like the dude can read a book and do magic even with all that noise in the background.";False;False;;;;1610308298;;1610313695.0;{};gisj4ce;False;t3_kuj1bm;False;False;t1_gis62bq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisj4ce/;1610350090;284;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610308307;;False;{};gisj4xv;False;t3_kuj1bm;False;True;t1_gisf6x3;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisj4xv/;1610350099;26;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;Should I read the web novel or the light novel then? Or is there no LN to begin with?;False;False;;;;1610308347;;False;{};gisj7qe;False;t3_kuj1bm;False;True;t1_gis5cl6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisj7qe/;1610350140;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CuriousSnowman;;;[];;;;text;t2_1k7pm3v9;False;False;[];;">parody of MT about the shut-in MC being ""hit"" by a Truck in order to save a student. - -Definitely not, if you're thinking like that then every little similar thing that happened between two series would become a parody. Just because there's one scene that are similar to other series doesn't mean it's a parody.";False;False;;;;1610308377;;False;{};gisj9ua;False;t3_kuj1bm;False;False;t1_gis9oju;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisj9ua/;1610350174;5;True;False;anime;t5_2qh22;;0;[]; -[];;;random_throwaway0001;;;[];;;;text;t2_9lx2xvpv;False;False;[];;"> Though, it seems there is already a small, but relevant, plothole, but that's only relevant for those who've read the entire novel and should not affect the experience - -Which plothole? Perhaps it was a change in the light novel (web novel and light novel have some differences). Let me check.";False;False;;;;1610308393;;False;{};gisjaz5;False;t3_kuj1bm;False;True;t1_gis8ax6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisjaz5/;1610350192;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hitmeyay;;;[];;;;text;t2_11qk2u;False;False;[];;"One of the best isekais of all time and certainly one of the first to emerge via light novels. For those who read only the manga so far, I assure you many things will come throughout the future. In fact the manga isn't even close to the full world scope and adventures to come in the future. - -I sincerely hope everyone has the time to read the original source as well, or perhaps the anime could even finish this series in its entirety over the upcoming decade. Though that dream is a bit of a stretch...";False;False;;;;1610308395;;False;{};gisjb5s;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisjb5s/;1610350195;1;True;False;anime;t5_2qh22;;0;[]; -[];;;deja_entend_u;;;[];;;;text;t2_dcskb;False;False;[];;That would be like blaming Jimmy Hendrix for artful rock music and insane solos. Not everyone is going to copy it right, but everyone took a bite of Mushoku and tried their hand at it.;False;False;;;;1610308493;;False;{};gisjiel;False;t3_kuj1bm;False;False;t1_gishgfh;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisjiel/;1610350309;15;True;False;anime;t5_2qh22;;0;[]; -[];;;AGE_OF_HUMILIATION;;;[];;;;text;t2_qxjdg;False;False;[];;"I mean there are isekai that are older than SAO. But SAO gave ""birth"" to the isekai boom we have today, that's why i would call it the granddaddy.";False;False;;;;1610308505;;False;{};gisjjba;False;t3_kuj1bm;False;False;t1_gisewxe;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisjjba/;1610350324;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Evilmon2;;;[];;;;text;t2_6e943;False;False;[];;KonoSuba started just a month after Mushoku Tensei. There were no copies of it yet, KonoSuba is making fun of what Mushoku Tensei was copying.;False;False;;;;1610308515;;False;{};gisjk12;False;t3_kuj1bm;False;False;t1_gisdz38;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisjk12/;1610350335;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610308541;;False;{};gisjluj;False;t3_kuj1bm;False;True;t1_gisc5cq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisjluj/;1610350363;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610308600;;False;{};gisjq66;False;t3_kuj1bm;False;True;t1_giscwzb;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisjq66/;1610350433;2;True;False;anime;t5_2qh22;;0;[]; -[];;;piruuu;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/devje/;light;text;t2_fzj11;False;False;[];;It's refreshing to finally watch MC who's a piece of shit rather than another bland character or perfect, spotless Gary Stu. Obviously it's not for everyone, but I very much like it.;False;False;;;;1610308630;;False;{};gisjsbp;False;t3_kuj1bm;False;False;t1_gisaz1x;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisjsbp/;1610350468;4;False;False;anime;t5_2qh22;;0;[]; -[];;;Evilmon2;;;[];;;;text;t2_6e943;False;False;[];;Because it's not the grandfather of anything. It came out in 2012, after isekais in anime and manga had been a thing for 2 decades.;False;False;;;;1610308659;;False;{};gisjui2;False;t3_kuj1bm;False;False;t1_gisavbd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisjui2/;1610350502;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kiss-aragi;;;[];;;;text;t2_5s91dbr5;False;False;[];;Spicy!;False;False;;;;1610308720;;False;{};gisjywv;False;t3_kuj1bm;False;False;t1_gis8bcs;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisjywv/;1610350569;21;True;False;anime;t5_2qh22;;0;[]; -[];;;PrimeInsanity;;;[];;;;text;t2_d1ga2;False;False;[];;I was blown away by just the pages in the book in a few scenes;False;False;;;;1610308760;;False;{};gisk1sw;False;t3_kuj1bm;False;False;t1_gis5mk6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisk1sw/;1610350614;34;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;">Apparently they are adapting from the LN, not the manga - -This is like saying they're using common sense";False;False;;;;1610308790;;False;{};gisk3xa;False;t3_kuj1bm;False;False;t1_gis5e8x;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisk3xa/;1610350646;44;True;False;anime;t5_2qh22;;0;[]; -[];;;Hrhagadorn;;;[];;;;text;t2_smets;False;False;[];;He does mention his mom doesn't turn him on. So while at first he was letching on momppai she doesn't do anything for him. Maid and roxy are a different story but if they follow the story as I remember it is a minor minor thing.;False;False;;;;1610308853;;False;{};gisk8i5;False;t3_kuj1bm;False;False;t1_gisfxrc;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisk8i5/;1610350715;46;True;False;anime;t5_2qh22;;0;[]; -[];;;PrimeInsanity;;;[];;;;text;t2_d1ga2;False;False;[];;I bet healing magic can get around that limitation.;False;False;;;;1610308871;;False;{};gisk9u2;False;t3_kuj1bm;False;False;t1_gisj4ce;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisk9u2/;1610350736;236;True;False;anime;t5_2qh22;;0;[]; -[];;;lle0nx3;;;[];;;;text;t2_nih5n;False;False;[];;This was amazing;False;False;;;;1610308872;;False;{};gisk9xu;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisk9xu/;1610350738;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Evilmon2;;;[];;;;text;t2_6e943;False;False;[];;Trucks randomly killing someone is an ancient trope in manga and anime. It happened in Minky Momo in 1983, it happened in Yu Yu Hakasho in 1990, and it was so old hat that KonoSuba was mocking it in its first chapter literally just a month after Mushoku Tensei came out.;False;False;;;;1610308885;;False;{};giskau8;False;t3_kuj1bm;False;False;t1_gis85ip;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giskau8/;1610350751;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;"> isekai manga/anime. - -It's light novels mate, why are you being so intentionally wrong?";False;False;;;;1610308935;;False;{};giskeik;False;t3_kuj1bm;False;True;t1_gisafh6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giskeik/;1610350809;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Brook0999;;;[];;;;text;t2_ycupg;False;False;[];;Fixed;False;False;;;;1610308985;;False;{};giski54;False;t3_kuj1bm;False;True;t1_giskeik;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giski54/;1610350869;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrimeInsanity;;;[];;;;text;t2_d1ga2;False;False;[];;Ya, it's a big difference to him acting on his every stay thought;False;False;;;;1610308998;;False;{};giskj1b;False;t3_kuj1bm;False;False;t1_gis9g46;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giskj1b/;1610350884;40;True;False;anime;t5_2qh22;;0;[]; -[];;;0blivionn;;;[];;;;text;t2_c5xm00t;False;False;[];;Follows the typical isekai formula, he even got truck kunned and everything, I love it already lmao. I’m surprised this didn’t come out sooner cause it probably would have been even more popular back then. Looks great though, good production quality and entertaining to watch so I’ll for sure be sticking around!;False;False;;;;1610309005;;False;{};giskjlb;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giskjlb/;1610350893;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;JapanPhoenix;;;[];;;;text;t2_u4vl7;False;False;[];;"> [This part confused me a bit.](https://i.imgur.com/6yOb5Gb.png) So all this time he was just creating and activating the spell and wasn't doing anything of those in between that's why he was only able to make balls of floating water ball before? - -Yup, I guess it's because the steps are: create, set size, set firing speed, execute. - -Since he was trying to make water magic appear he did meet the mental requirements for the 1st step (create), and since he was trying to make a spell happen he did meet the mental requirements for the 4th step (execute) which was apparently enough to activate the spell. - -But since he didn't know about the 2nd step (set size) or the 3rd step (set firing speed) the water ball was just the ""default"" size with 0 speed as he skipped those steps (I guess those are optional).";False;False;;;;1610309012;;1610309291.0;{};giskk1q;False;t3_kuj1bm;False;False;t1_gis4z3u;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giskk1q/;1610350900;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Lupansansei;;;[];;;;text;t2_fm94cdo;False;False;[];;"LN readers of both novels would know how they went out. Shield hero ended in a 3/10 ending, while Mushoku Tensei ended with a 9.5/10 ending. The only Isekai I know that concludes itself as an Isekai anime. That's why people are more hyped bout MT more than shield hero. - -Shield hero has that revenge plot premise at the start which gets viewers heated up and wants to watch more, same as readers from the start but it fell as plot progress and ending goes. - -MT is the kind of story that starts out slow but ends having tied all the plot holes together in a neatly fashion and ends his character perfectly. You would probably get to see the ending in like 5-6 cours if they ever get that far but it'll be worth it honestly";False;False;;;;1610309014;;False;{};giskk6p;False;t3_kuj1bm;False;False;t1_gis9gy1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giskk6p/;1610350903;14;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;True. Lmao, out of all the things healing magic could be used for, I never thought it'd be for sex.;False;False;;;;1610309028;;False;{};giskl7n;False;t3_kuj1bm;False;False;t1_gisk9u2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giskl7n/;1610350919;138;True;False;anime;t5_2qh22;;0;[]; -[];;;PrimeInsanity;;;[];;;;text;t2_d1ga2;False;False;[];;I actually really like them keeping his internal voice as his voice from his old life.;False;False;;;;1610309063;;False;{};gisknsk;False;t3_kuj1bm;False;False;t1_gis4z3u;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisknsk/;1610350958;8;True;False;anime;t5_2qh22;;0;[]; -[];;;SYZekrom;;;[];;;;text;t2_i5y6z;False;False;[];;"Oh so this is one of those isekai where they're literally reincarnated into a baby - -Seen that a lot but guess not in anime actually - -[Bro can this guy stop](https://cdn.discordapp.com/attachments/621713361390010378/797917052479471647/unknown.png) - -I honestly don't know when was the last time I watched something where a character being pervy was so unappealing - -[Dayum](https://cdn.discordapp.com/attachments/621713361390010378/797917721325076530/unknown.png) - -[Ah, of course](https://cdn.discordapp.com/attachments/621713361390010378/797917999532605440/unknown.png) - -[Omg girl](https://cdn.discordapp.com/attachments/621713361390010378/797918251493490748/unknown.png)";False;False;;;;1610309162;;False;{};giskv08;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giskv08/;1610351072;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;i_am_the_kiLLer;;;[];;;;text;t2_kvi84;False;False;[];;As someone who is watching Evangelion rn i have to say the tropes don't really undermine the experience. If the quality is there then the show will prove the critics wrong.;False;False;;;;1610309163;;False;{};giskv12;False;t3_kuj1bm;False;False;t1_gis95p1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giskv12/;1610351072;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Hrhagadorn;;;[];;;;text;t2_smets;False;False;[];;I can't wait till episode 3 or 4. I am expecting episode 4.;False;False;;;;1610309197;;False;{};giskxgt;False;t3_kuj1bm;False;False;t1_gis5mo2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giskxgt/;1610351108;33;True;False;anime;t5_2qh22;;0;[]; -[];;;MasterberryEPD;;;[];;;;text;t2_15ntux;False;False;[];;I watched both episodes since I thought it started airing in December like MAL says and am sad I'll have to wait 2 weeks now.;False;False;;;;1610309235;;False;{};gisl09c;False;t3_kuj1bm;False;True;t1_gis9h78;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisl09c/;1610351152;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;Not sure about that, before the anime even released they announced a mobile game and various merch. They seem to be putting a lot of hope in selling merch for this series which means there must be some kind of consumer market;False;False;;;;1610309388;;False;{};gislb9y;False;t3_kuj1bm;False;False;t1_gisc2cm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gislb9y/;1610351317;31;True;False;anime;t5_2qh22;;0;[]; -[];;;riad59;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RiadTheWeeb1;light;text;t2_1fkfdigh;False;False;[];;"I did and it doesn't apply here, Because Rudy Does Actually get better, - -if you continue this (hopefully) you will understand";False;True;;comment score below threshold;;1610309389;;False;{};gislbco;False;t3_kuj1bm;False;True;t1_gisawuo;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gislbco/;1610351318;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;RandomDrawingForYa;;;[];;;;text;t2_p1lch;False;False;[];;Well, for an isekai with a premise as generic as it can get, this was surprisingly fun.;False;False;;;;1610309390;;False;{};gislbg1;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gislbg1/;1610351319;1;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"I mean it's good to have flaws but being a spiritual pervert is not something to celebrate as a flaw. - -Let alone that side of him let's the anime show some ""interesting shots"" of women.";False;False;;;;1610309398;;1610318470.0;{};gislbxz;False;t3_kuj1bm;False;False;t1_gisjsbp;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gislbxz/;1610351326;4;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;"> i think people said the same thing about shield hero when it aired as it came out around the same time as mushoku tensei - -I feel like I remember it being more that people would say, ""this isn't going to be your typical isekai,"" which was shortly followed by people feeling that it was basically a typical isekai.";False;False;;;;1610309498;;False;{};gislj70;False;t3_kuj1bm;False;False;t1_gish4xc;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gislj70/;1610351438;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610309510;;False;{};gislk0p;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gislk0p/;1610351450;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;">Without spoilers? - -Proceeds to spoil things. Just let people experience things on their own mate, stop being so obnoxious.";False;False;;;;1610309553;;False;{};gisln5w;False;t3_kuj1bm;False;True;t1_gis9roj;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisln5w/;1610351495;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nitsua34;;;[];;;;text;t2_86av8j;False;False;[];;why does this have more traction than skate the infinity;False;True;;comment score below threshold;;1610309569;;False;{};gislod7;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gislod7/;1610351513;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;CuriousSnowman;;;[];;;;text;t2_1k7pm3v9;False;False;[];;This is pretty accurate, though it never got mentioned in the novel seeing that kind of logic really makes sense since the MC is still a baby and anything can easily kill him in that new world.;False;False;;;;1610309573;;False;{};gislolu;False;t3_kuj1bm;False;True;t1_gishag5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gislolu/;1610351517;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RandomDrawingForYa;;;[];;;;text;t2_p1lch;False;False;[];;Tensura is kind of weird. It's about as dumb a show as you can get, but it's just genuinely fun and entertaining to watch.;False;False;;;;1610309671;;False;{};gislvxv;False;t3_kuj1bm;False;True;t1_gisc20o;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gislvxv/;1610351628;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610309677;;False;{};gislwe6;False;t3_kuj1bm;False;True;t1_gishh99;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gislwe6/;1610351636;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"Benji-kun in that video also gets better...just need to wait 50 episodes. That's the point of this video lol - -It 100% applies to this.";False;False;;;;1610309794;;False;{};gism5aa;False;t3_kuj1bm;False;False;t1_gislbco;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gism5aa/;1610351770;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;It was just random gibberish, in the books it's just mentioned that it's a language he doesn't understand.;False;False;;;;1610309890;;False;{};gismca0;False;t3_kuj1bm;False;True;t1_gisfywn;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gismca0/;1610351874;2;True;False;anime;t5_2qh22;;0;[]; -[];;;magicalideal;;MAL;[];;https://myanimelist.net/profile/magicalideal;dark;text;t2_myqeu;False;False;[];;It puts a smile on my face before I even start watching it knowing that it gets such treatment from the studio.;False;False;;;;1610309991;;False;{};gismjv6;False;t3_kuj1bm;False;False;t1_gis5mk6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gismjv6/;1610351991;4;True;False;anime;t5_2qh22;;0;[]; -[];;;crism22;;;[];;;;text;t2_3jsaewqr;False;False;[];;"This anime is the most generic thing that I’ve ever seen, and thats hard because every isekai is the fucking same. But it looks just so good, everything looks incredible, the animation, the soundtrack, the characters, i know that i already know whats going to happen but im really exited about it. This isekai gives me vibes of old jrpgs like final fantasy, and thats weird because any other isekai managed to do that, in my head those shows are categorized as trash isekai, not as fantasy worlds. - -Is easy, they just have to keep up with the awesome production and an acceptable story. - -After so many horrible tries and a few good ones, after having like 7 to 10 shit isekais per season, we might be in front of the ultimate isekai.";False;False;;;;1610310012;;False;{};gismle8;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gismle8/;1610352014;2;True;False;anime;t5_2qh22;;0;[]; -[];;;leviathonlx;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Leviathonlx;light;text;t2_8zce3;False;False;[];;" -[Spoiler wn](/s ""Yea I never bought the whole 'he gets better' thing. For fucks sake the guy ends up impregnating one of his 3 wives when she's 15 so they can't say he changed that much and he very much stays pretty garbage in other ways throughout the story. ."")";False;False;;;;1610310287;;1610310531.0;{};gisn68q;False;t3_kuj1bm;False;True;t1_gisgalk;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisn68q/;1610352330;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Acturio;;MAL;[];;http://myanimelist.net/animelist/Acturio01;dark;text;t2_c1azh;False;False;[];;you could have made the comment in such a way to express your dislikes from the first episode where people could have undestood and agreed with you, as i said i also really dislike the pervyness of the MC and there are other people in the comment section that said that and got upvoted. Making it seem as a problem of the sub for downvoting opinions or w/e op insinuated is pretty disinginenious. My point with you was that i think you wrote reviews so that kinda makes me think you are capable to write constructive criticism, but if you are known for writing stupid comments then i might mistake you for someone else sorry;False;False;;;;1610310415;;False;{};gisnfqj;False;t3_kuj1bm;False;True;t1_gishg8d;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisnfqj/;1610352475;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;It's getting adapted so late because the author was adamant in wanting the entire series adapted. The entire series, all 25 volumes, are one big story and if you were to cut it off anywhere in between you would be left feeling unsatisfied.;False;False;;;;1610310471;;False;{};gisnju5;False;t3_kuj1bm;False;True;t1_gisavbd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisnju5/;1610352539;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ben99ny22;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ben99ny;light;text;t2_14rmpidg;False;False;[];;"its more like WIT studio with attack on titan. - -WIT studio's first project was attack on titan and even though the studio was new, attack on titan had really good production values.";False;False;;;;1610310486;;False;{};gisnkzw;False;t3_kuj1bm;False;False;t1_gis92bx;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisnkzw/;1610352556;102;True;False;anime;t5_2qh22;;0;[]; -[];;;AsterJ;;MAL;[];;http://myanimelist.net/animelist/asteron;dark;text;t2_3zjll;False;False;[];;Yeah I was unimpressed by the source material but the quality in the anime is remarkable.;False;False;;;;1610310509;;False;{};gisnmkd;False;t3_kuj1bm;False;True;t1_gis5mk6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisnmkd/;1610352581;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;If they keep a similar pace of 6 volumes every 24-ish episode season, then that would equal roughly 5 seasons;False;False;;;;1610310573;;False;{};gisnr9x;False;t3_kuj1bm;False;False;t1_giscwk4;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisnr9x/;1610352654;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;I hope they stay on this path and not dismantle like the crew for OPM1;False;False;;;;1610310592;;False;{};gisnsof;False;t3_kuj1bm;False;False;t1_gisnkzw;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisnsof/;1610352676;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bobyessirindeed;;;[];;;;text;t2_4vqsg70y;False;False;[];;Yeah but most people don’t have those creepy thoughts about middle schoolers, and most people don’t have perverted thoughts on such a regular basis.;False;False;;;;1610310602;;False;{};gisntj5;False;t3_kuj1bm;False;False;t1_gis9g46;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisntj5/;1610352689;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;Why do you compare apples and oranges?;False;False;;;;1610310637;;False;{};gisnw8h;False;t3_kuj1bm;False;False;t1_gislod7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisnw8h/;1610352731;6;True;False;anime;t5_2qh22;;0;[]; -[];;;random_throwaway0001;;;[];;;;text;t2_9lx2xvpv;False;False;[];;Most certainly not. While I read the WN, I rarely thought of Rudeus as an adult, because his old self wasn't mature at all, and he kept referring to himself as a kid, but seeing it animated is definitely gonna be more creepy!;False;False;;;;1610310726;;False;{};giso33d;False;t3_kuj1bm;False;False;t1_gisntj5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giso33d/;1610352832;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Martinik29;;;[];;;;text;t2_ujpqt;False;False;[];;Well the consumer market is there, everyone loves the series, were it not it wouldn't have so many copycats. It's sad it took till the waning of the Isekai craze for this series to get an anime. At least it's good enough to remain in memory, unlike all the assembly line trash that beat it to an adaptation. Mostly because they can mostly skip or rush the child arc, while this one is vital to the story;False;False;;;;1610310744;;False;{};giso4fl;False;t3_kuj1bm;False;False;t1_gislb9y;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giso4fl/;1610352852;14;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"> and there are other people in the comment section that said that and got upvoted. - -[I made this comment already as my comment for this thread](https://www.reddit.com/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis55cq/) - -> Making it seem as a problem of the sub for downvoting opinions or w/e op insinuated is pretty disinginenious. - -It's definitely part of it, look at the most controversial posts in this thread and it's people downvoting opinions. This isn't new to r/anime sadly. - -> My point with you was that i think you wrote reviews so that kinda makes me think you are capable to write constructive criticism, but if you are known for writing stupid comments then i might mistake you for someone else sorry - -I NEVER want anything I've posted on /r/anime to be seen as constructive criticism, I'm not a critic and will never be one. Maybe you're thinking of /u/banjothebear ? They're the cool one. - -I only ever post my opinion which people deem as stupid or downvote quite often.";False;False;;;;1610310828;;False;{};gisoat0;False;t3_kuj1bm;False;False;t1_gisnfqj;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisoat0/;1610352947;0;True;False;anime;t5_2qh22;;0;[]; -[];;;random_throwaway0001;;;[];;;;text;t2_9lx2xvpv;False;False;[];;This is not to say, he doesn't act out on some really creepy things. There is no excuse for Rudeus' behavior, and it's a very very solid criticism of the story. Rifujin is a very talented writer, but he definitely has a few screws loose considering the type of shit I've seen him write.;False;False;;;;1610310841;;False;{};gisobst;False;t3_kuj1bm;False;False;t1_giskj1b;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisobst/;1610352963;10;True;False;anime;t5_2qh22;;0;[]; -[];;;TheLunchTrae;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/TheLunchTrae;light;text;t2_38r79vv;False;False;[];;Yeah all I can hear is Gintoki. Honestly though, I think his voice is perfect for it since his internal dialogue is mostly comedic.;False;False;;;;1610310855;;False;{};gisocro;False;t3_kuj1bm;False;False;t1_gis9vy2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisocro/;1610352977;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Theleux;;MAL a-1milquiz;[];;https://myanimelist.net/profile/Theleux;dark;text;t2_am615;False;False;[];;"Uh, do you have a source for that? I know the english translations came out at different times but Re:Zero (which is what I assume you are talking about) predates Mushoku. - -Has the author shared this before?";False;False;;;;1610310979;;False;{};gisom27;False;t3_kuj1bm;False;True;t1_gisapiv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisom27/;1610353124;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mysistersacretin;;;[];;;;text;t2_6v57c;False;False;[];;Read the LN to the current release and then change over to the WN if you want. They're very similar with some extra side stories getting added into the LN (such as all of volume 7).;False;False;;;;1610311016;;False;{};gisooqm;False;t3_kuj1bm;False;False;t1_gisj7qe;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisooqm/;1610353165;5;True;False;anime;t5_2qh22;;0;[]; -[];;;not_tha_father;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/not_tha_father;dark;text;t2_24rkp6ei;False;False;[];;this is the quality i've always wanted from isekai holy shit.;False;False;;;;1610311047;;False;{};gisor1z;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisor1z/;1610353198;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;Thanks;False;False;;;;1610311051;;False;{};gisorca;False;t3_kuj1bm;False;True;t1_gisooqm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisorca/;1610353203;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Claisode;;;[];;;;text;t2_c0kxkfu;False;False;[];;I mean, if we really talk about that. Math has been around for thousands of years, and it wasn’t until Isaac Newton when Calculus got started. Astronomy existed all the way back to the cavemen, but it wasn’t until Galileo did we prove and accept the sun-centric model of the solar system. Innovative thoughts are hard, and it just so happens that Rudy hit the lottery with his Chuunibyou thoughts.;False;False;;;;1610311052;;False;{};gisorfi;False;t3_kuj1bm;False;False;t1_gishh99;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisorfi/;1610353204;7;True;False;anime;t5_2qh22;;0;[]; -[];;;deja_entend_u;;;[];;;;text;t2_dcskb;False;False;[];;Have you read the story? There are a few key things in the art and trailers giving away about where this season will end if you have especially if they are going 24 episodes.;False;False;;;;1610311159;;False;{};gisozcp;False;t3_kuj1bm;False;True;t1_gisdsy5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisozcp/;1610353325;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610311225;;False;{};gisp4ee;False;t3_kuj1bm;False;True;t1_giscwzb;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisp4ee/;1610353402;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610311245;;False;{};gisp5xv;False;t3_kuj1bm;False;True;t1_gis5e8x;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisp5xv/;1610353427;1;True;False;anime;t5_2qh22;;0;[]; -[];;;godblow;;;[];;;;text;t2_kigl8;False;False;[];;I'm not sure if they had that knowledge back in medieval times.;False;False;;;;1610311303;;False;{};gispam0;False;t3_kuj1bm;False;False;t1_gisj4ce;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gispam0/;1610353496;40;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;Yeah, but it'd probably pain a lot if you did it immediately. As another person said, they probably just used healing magic.;False;False;;;;1610311366;;False;{};gispfx2;False;t3_kuj1bm;False;False;t1_gispam0;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gispfx2/;1610353573;64;True;False;anime;t5_2qh22;;0;[]; -[];;;mysistersacretin;;;[];;;;text;t2_6v57c;False;False;[];;Technically it was a sports car in Yu Yu Hakusho.;False;False;;;;1610311388;;False;{};gisphtb;False;t3_kuj1bm;False;True;t1_giselt9;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisphtb/;1610353601;2;True;False;anime;t5_2qh22;;0;[]; -[];;;deja_entend_u;;;[];;;;text;t2_dcskb;False;False;[];;"Truck kun had some vague start in the 80s but this one really solidified it in the modern era for the genres. - -Specifically, the ""neet"" getting hit by the truck trying to save others? That trope started right here, and was STRONGLY parodied by Konosuba. Down to the ""sweats"" I would argue.";False;False;;;;1610311415;;False;{};gispk6r;False;t3_kuj1bm;False;True;t1_gisflxp;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gispk6r/;1610353636;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Weevilthelesser;;;[];;;;text;t2_u2i70wf;False;False;[];;I just watched it 3 times because it is sooo beautiful.;False;False;;;;1610311420;;False;{};gispkk8;False;t3_kuj1bm;False;False;t1_gis5mk6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gispkk8/;1610353641;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Nitsua34;;;[];;;;text;t2_86av8j;False;False;[];;oh. whoops. forgot theres only mushoku fans in this thread;False;True;;comment score below threshold;;1610311468;;False;{};gispojj;False;t3_kuj1bm;False;True;t1_gisnw8h;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gispojj/;1610353700;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;PeeClearCheer;;;[];;;;text;t2_1q1sd9ts;False;False;[];;Sugita speaking wacky or perverted things and derpy laughing really break my immersion because I can't help but laugh.;False;False;;;;1610311479;;False;{};gisppgh;False;t3_kuj1bm;False;False;t1_gis9vy2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisppgh/;1610353713;22;True;False;anime;t5_2qh22;;0;[]; -[];;;deja_entend_u;;;[];;;;text;t2_dcskb;False;False;[];;That movie is BEAUTIFUL fyi. The HD is absolutely art.;False;False;;;;1610311559;;False;{};gispvv3;False;t3_kuj1bm;False;True;t1_gisfos5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gispvv3/;1610353806;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KurtArturII;;;[];;;;text;t2_13vdqfhx;False;False;[];;10/10, anime of the season LET'S GOOOOOOOOO!!!;False;False;;;;1610311570;;False;{};gispws9;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gispws9/;1610353819;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;"Oh this is good. Really good. - -Damn this season is just getting better and better by the show.";False;False;;;;1610311575;;False;{};gispx7l;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gispx7l/;1610353827;1;True;False;anime;t5_2qh22;;0;[]; -[];;;A-Glitch-Gnome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/AGlitchGnome;light;text;t2_adirj;False;False;[];;apparently they did try to put together a bit of an artificial language for this series. there was an interview with the VA's where they talked about it, though maybe they were just making it sound consistent phonetically.;False;False;;;;1610311652;;False;{};gisq33v;False;t3_kuj1bm;False;False;t1_gismca0;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisq33v/;1610353913;3;True;False;anime;t5_2qh22;;0;[]; -[];;;deja_entend_u;;;[];;;;text;t2_dcskb;False;False;[];;"Best visual I have seen for ""healing"" magic and the water magic was absolutely stunning. The detail on the tree getting healed was breathtaking.";False;False;;;;1610311655;;False;{};gisq3dh;False;t3_kuj1bm;False;False;t1_gis9qqm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisq3dh/;1610353917;31;True;False;anime;t5_2qh22;;0;[]; -[];;;asscrackrash;;;[];;;;text;t2_9jhv8y1m;False;False;[];;"wit studio is a small portion of production ig that went independent. and their small studio definitely wasn't prepared for the popularity attack on titan received really fast, [and it showed on the tv broadcast.](https://www.reddit.com/r/ShingekiNoKyojin/comments/cdivv1/anime_spoilers_s1_tv_vs_bluray_comparisons_full/) - -- - -there's normally 1-3 animation director for anime episodes, no matter how action packed they are. the final episode of season 2 for instance has 20+ animation directors, and you can go look it up yourself if you don't believe me. but there's more animation directors working on the episode than *wit has animators.* sounds like a hyperbole, but it ain't. - -the staff lists for seasons 1-3 are completely screwed. - -- - -so yeah, it's a miracle that wit's adaptation was as good as it was. - -and the people to thank are everyone involved in the anime other than the production committee.";False;False;;;;1610311676;;False;{};gisq4wp;False;t3_kuj1bm;False;False;t1_gisnkzw;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisq4wp/;1610353939;55;True;False;anime;t5_2qh22;;0;[]; -[];;;Zecias;;MAL a-amq;[];;http://myanimelist.net/animelist/Zecias;dark;text;t2_7ucex;False;False;[];;SAO came out before mushoku, as did shield hero lol...;False;False;;;;1610311713;;False;{};gisq7nb;False;t3_kuj1bm;False;False;t1_gisgs2t;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisq7nb/;1610353979;16;True;False;anime;t5_2qh22;;0;[]; -[];;;ProGriffith;;;[];;;;text;t2_1zwf6glx;False;False;[];;This looks fucking great so far!;False;False;;;;1610311739;;False;{};gisq9mi;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisq9mi/;1610354006;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SufferingSloth;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/SufferingSloth/;light;text;t2_hrkqt;False;False;[];;"Correct, ReZero was already 104 WN chapters in before Mushoku Tensei even started. -Which would correlate to somewhere in volume 5 / episode 14 of the anime.";False;False;;;;1610311744;;False;{};gisqa0t;False;t3_kuj1bm;False;False;t1_gisom27;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisqa0t/;1610354012;4;True;False;anime;t5_2qh22;;0;[]; -[];;;CringeKage222;;;[];;;;text;t2_2v8v29g9;False;False;[];;Ereh kun is the best way;False;False;;;;1610311776;;False;{};gisqcim;False;t3_kuj1bm;False;False;t1_gisj0fl;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisqcim/;1610354050;10;True;False;anime;t5_2qh22;;0;[]; -[];;;RaQziom;;MAL;[];;http://myanimelist.net/profile/RaQziom;dark;text;t2_90zh0;False;False;[];;This is why I said he shouldn't act completely like an adult but at the same time maybe don't act scared and hug your dad after they said you need to go outside the house;False;False;;;;1610311798;;False;{};gisqe81;False;t3_kuj1bm;False;True;t1_gishag5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisqe81/;1610354075;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BeastMcBeastly;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/munkeh;light;text;t2_91viu;False;False;[];;"This show would be really cool if the MC wasnt a 34 year old creepy NEET. - -The story isn't super unique or anything but this has to have some sort of redeeming value or else why tf would this show have so much effort put into it.";False;False;;;;1610311910;;False;{};gisqnc7;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisqnc7/;1610354209;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610311927;;False;{};gisqotz;False;t3_kuj1bm;False;False;t1_giseqol;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisqotz/;1610354230;4;True;False;anime;t5_2qh22;;0;[];True -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610311933;moderator;False;{};gisqpab;False;t3_kuj1bm;False;False;t1_gisaynt;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisqpab/;1610354237;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EldritchCarver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Pilomotor;light;text;t2_4epcw;False;False;[];;It's weird that they would be missing when our protagonist's body was taken to the hospital, though.;False;False;;;;1610311944;;False;{};gisqq8e;False;t3_kuj1bm;False;True;t1_gis5wo1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisqq8e/;1610354252;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Master10K;;MAL;[];;http://myanimelist.net/profile/Master10K;dark;text;t2_794zx;False;False;[];;"Wow, I love the little details they decided to put in to portray their daily lives, similar to our medieval time period, at 11 minutes in. - -With what they eat, Rudy using a cleaning twig to bush his teeth, going to the toilet, taking a bucket bath. Such little things are so necessary for world building.";False;False;;;;1610311987;;False;{};gisqtoi;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisqtoi/;1610354302;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610312000;;False;{};gisqur3;False;t3_kuj1bm;False;True;t1_gisby6v;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisqur3/;1610354318;1;True;False;anime;t5_2qh22;;0;[];True -[];;;terryaki510;;MAL;[];;https://myanimelist.net/animelist/terryaki510;dark;text;t2_dcips;False;False;[];;Not sure I'd enjoy a show that started a bunch of tropes that I don't like LOL;False;False;;;;1610312336;;False;{};gisrkko;False;t3_kuj1bm;False;True;t1_gis5cl6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisrkko/;1610354738;1;True;False;anime;t5_2qh22;;0;[]; -[];;;isagiyoichi;;;[];;;;text;t2_9178f3kk;False;False;[];;"It honestly doesn't bother me as much. I haven't read the ln/wn but whatever was shown in the first episode was pretty much what I'd expect from an isekai mc. Isn't like every isekai mc pervy to a certain extent? - -Also i found that maid getting scared by his stare pretty funny lol. - -But again I agree it's creepy but anime has already ascended to such a level that this level of perviness doesn't affect me anymore.";False;False;;;;1610312347;;False;{};gisrld8;False;t3_kuj1bm;False;False;t1_gisaz1x;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisrld8/;1610354750;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Arvendial;;;[];;;;text;t2_63jbu80i;False;False;[];;well GODDAMN. that was some good shit right there.;False;False;;;;1610312356;;False;{};gisrm3u;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisrm3u/;1610354761;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;Truck daddy.;False;False;;;;1610312475;;False;{};gisrv1q;False;t3_kuj1bm;False;False;t1_gis8wm8;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisrv1q/;1610354897;4;True;False;anime;t5_2qh22;;0;[]; -[];;;fredthefishlord;;;[];;;;text;t2_ba5at3b;False;False;[];;because this is what all the not unique ones are based on. this is the OG, that spawned all the crappy ones that you see, which is why it gets the massive amount of effort. pretty much the only bad part is the mc being a creepy neet. It's the trend setter, not the trender;False;False;;;;1610312577;;False;{};giss2t0;False;t3_kuj1bm;False;True;t1_gisqnc7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giss2t0/;1610355014;3;True;False;anime;t5_2qh22;;0;[]; -[];;;crossbt;;;[];;;;text;t2_ebzxz;False;False;[];;yes. we see him delevoping and growing in life, that's the story.;False;False;;;;1610312594;;False;{};giss40l;False;t3_kuj1bm;False;True;t1_gisdhyd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giss40l/;1610355033;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EldritchCarver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Pilomotor;light;text;t2_4epcw;False;False;[];;That Time I Got Reincarnated as a Slime. Ascendance of a Bookworm. Grimgar. Log Horizon. No Game No Life. The Hero Is Overpowered but Overly Cautious.;False;False;;;;1610312645;;False;{};giss7qm;False;t3_kuj1bm;False;False;t1_gis8iiu;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giss7qm/;1610355088;8;True;False;anime;t5_2qh22;;0;[]; -[];;;fredthefishlord;;;[];;;;text;t2_ba5at3b;False;False;[];;It's generic because it started that part of the genre. of course you end up being generic when everything came from you to begin with. It's hella good.;False;False;;;;1610312646;;False;{};giss7sy;False;t3_kuj1bm;False;False;t1_gismle8;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giss7sy/;1610355089;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Robddit;;;[];;;;text;t2_jyep6js;False;False;[];;"Epabuhia! Tauwka seio **kwa! Pahail za!** -Ivin kav Zenith! **Pahail za!** -Zevaiah bazalfben kifu zivaikah kwav! -Bukay aiha naiboo! -Zenith, tipen, eyuji, tawka paihail **kwa.** -Evun on. Nora iv aihen kap. - -They did a goog job so, positioning the same words in a way that make sense as if it was a real language (like, with made up words in the place of the real ones)";False;False;;;;1610312687;;False;{};gissas6;False;t3_kuj1bm;False;False;t1_gisq33v;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gissas6/;1610355134;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Guaymaster;;;[];;;;text;t2_7s5u9;False;False;[];;"The big draw of this series is how Rudeus grows as a person when given this second shot at life, the title says something about doing it for real/being serious this time. - -In short, the writing is good, unlike all the cookie cutter isekai.";False;False;;;;1610312696;;False;{};gissbgc;False;t3_kuj1bm;False;False;t1_gisqnc7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gissbgc/;1610355145;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Meem0;;MAL;[];;http://myanimelist.net/animelist/Meem0;dark;text;t2_4olst;False;False;[];;Yes this whole thing felt very Kyon to me, since it's all sarcastic inner monologue. Sugita honestly carried the episode for me, I went from curious to blown away as soon as I realized his role.;False;False;;;;1610312711;;False;{};gisscme;False;t3_kuj1bm;False;False;t1_gisc0ba;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisscme/;1610355164;27;True;False;anime;t5_2qh22;;0;[]; -[];;;Gitgudson_;;;[];;;;text;t2_99x2ywcw;False;False;[];;"> Mid 30's - -> Old - - -lol";False;False;;;;1610312712;;False;{};gisscn8;False;t3_kuj1bm;False;False;t1_gis9zbk;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisscn8/;1610355164;4;True;False;anime;t5_2qh22;;0;[]; -[];;;fredthefishlord;;;[];;;;text;t2_ba5at3b;False;False;[];;That's BECAUSE he was an adult and rembering is past life, not inspite of it. you're critising that as if he shouldn't because he was an adult, when in reality any kid wouldn't think twice about it, and it's because he was an adult he acts like that;False;False;;;;1610312832;;False;{};gissljk;False;t3_kuj1bm;False;False;t1_gisqe81;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gissljk/;1610355300;10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610312908;;False;{};gissr5k;False;t3_kuj1bm;False;True;t1_gisjluj;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gissr5k/;1610355385;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;No mate, I meant that, they should go all the way adapting, not going all the way THIS season you know? Have a season 2 next year, and season 3 after that, and so on and so forth.;False;False;;;;1610313001;;False;{};gissxwx;False;t3_kuj1bm;False;False;t1_gisozcp;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gissxwx/;1610355486;4;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Not at all. Althou, he will one hundred percent agree to do them if you ask him to.;False;False;;;;1610313066;;False;{};gist2oh;False;t3_kuj1bm;False;True;t1_gisdpwv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gist2oh/;1610355557;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EldritchCarver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Pilomotor;light;text;t2_4epcw;False;False;[];;"> Seems like Rudy was too focused on his reading to realize he could hear his parents getting it on. - -Or it happens pretty much every night and he's gotten used to it.";False;False;;;;1610313080;;False;{};gist3qv;False;t3_kuj1bm;False;False;t1_gis5dlw;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gist3qv/;1610355574;12;True;False;anime;t5_2qh22;;0;[]; -[];;;TabletopPaintingUK;;;[];;;;text;t2_pgufb2q;False;False;[];;lol;False;False;;;;1610313087;;False;{};gist496;False;t3_kuj1bm;False;True;t1_gist2oh;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gist496/;1610355581;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;And considering we as readers now KNOW what is out there, yeah, better to lay low. Shit get's tough.;False;False;;;;1610313108;;False;{};gist5ps;False;t3_kuj1bm;False;False;t1_gislolu;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gist5ps/;1610355603;4;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Amém;False;False;;;;1610313125;;False;{};gist70d;False;t3_kuj1bm;False;False;t1_gisk3xa;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gist70d/;1610355623;11;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Wasn't Kazuma hit by something else though? I could swear it wasn't Truck-kun.;False;False;;;;1610313181;;False;{};gistb41;False;t3_kuj1bm;False;True;t1_gisizl9;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gistb41/;1610355687;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Schully;;;[];;;;text;t2_11ckl1;False;False;[];;"\> which is quite possibly why the visuals have been a controversial topic for RZ Season 2. - - -In what way? I saw the first episode of RZ S2 already, but was it that bad?";False;False;;;;1610313202;;False;{};gistcos;False;t3_kuj1bm;False;False;t1_gisa7hf;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gistcos/;1610355709;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Weevilthelesser;;;[];;;;text;t2_u2i70wf;False;False;[];;"We don't know if his body is still in the hospital after his rebirth. - -The kids could have died on impact.";False;False;;;;1610313275;;False;{};gisthyh;False;t3_kuj1bm;False;True;t1_gisqq8e;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisthyh/;1610355789;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;"It's a noble tradition. Carried over from generation to generation. Since the dawn of man kind. - -&#x200B; - -Some said the first HERO (trademark) was hit by truck-kun over Milenia ago. How you ask? Truck-kun time traveled all the way there actually!";False;False;;;;1610313278;;False;{};gisti4o;False;t3_kuj1bm;False;True;t1_gisez56;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisti4o/;1610355792;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Chidox27;;;[];;;;text;t2_33ybw6h1;False;False;[];;My word the animation in this show is insane...;False;False;;;;1610313296;;False;{};gistjfu;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gistjfu/;1610355811;2;True;False;anime;t5_2qh22;;0;[]; -[];;;VariousMeet;;;[];;;;text;t2_63veb3s5;False;False;[];;Fair enough, he could've honestly just gotten really lucky, being that he's new to that world and doesn't fully understand/hasn't been conformed to the rules of it's world. Though I do think there's some flaws comparing his discovery with discoveries in math, but it doesn't really matter.;False;False;;;;1610313471;;False;{};gistw38;False;t3_kuj1bm;False;True;t1_gisorfi;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gistw38/;1610356008;2;True;False;anime;t5_2qh22;;0;[]; -[];;;terryaki510;;MAL;[];;https://myanimelist.net/animelist/terryaki510;dark;text;t2_dcips;False;False;[];;"To all the people excusing the shitty tropes in this anime because it STARTED the shitty tropes: Being the first person to start a bad trend doesn't magically make what you did not bad. To take an extreme example, if a serial killer committing murders results in a bunch of copycat killers cropping up, it doesn't mean that only the copycats deserve jail time. They've all committed the same crime. - -There's a lot to like with this anime, but I was bothered by this logic because it doesn't hold up if you think about it for more than a second. Take the bad with the good.";False;True;;comment score below threshold;;1610313531;;False;{};gisu0hb;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisu0hb/;1610356074;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;not_tha_father;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/not_tha_father;dark;text;t2_24rkp6ei;False;False;[];;"> Rudy is such a hikikomori in his past life that just sitting outdoors is already enough to make him uncomfortable. - -I was confused at that while watching but damn that's actually really cool that the past life is actually a factor in isekai for once, aside from the usual ""i'm an epic gamer so i know how to get good"".";False;False;;;;1610313556;;False;{};gisu2aa;False;t3_kuj1bm;False;False;t1_gis4z3u;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisu2aa/;1610356100;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Griswo27;;;[];;;;text;t2_2udvw7w7;False;False;[];;there is a reason his innervoice is tomokazu sugita aka gintoki(gintama);False;False;;;;1610313618;;False;{};gisu6pq;False;t3_kuj1bm;False;True;t1_gisntj5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisu6pq/;1610356166;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610313754;;False;{};gisugnz;False;t3_kuj1bm;False;True;t1_gissxwx;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisugnz/;1610356317;4;True;False;anime;t5_2qh22;;0;[]; -[];;;EldritchCarver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Pilomotor;light;text;t2_4epcw;False;False;[];;I guess that's true, but I don't see why his old body would magically vanish upon death if he's being reincarnated in a completely different body anyway. It seems unnecessary, and it would be a *[huge](https://tvtropes.org/pmwiki/pmwiki.php/Main/Masquerade)* deal in modern Japan if a person's body suddenly disappeared when it was surrounded by doctors.;False;False;;;;1610313866;;False;{};gisuox6;False;t3_kuj1bm;False;True;t1_gisthyh;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisuox6/;1610356439;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;You'd be surprised at how well this series expands on and explains common isekai topics and tropes like this one, it just takes a bit of time;False;False;;;;1610314150;;False;{};gisv9fd;False;t3_kuj1bm;False;True;t1_gishh99;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisv9fd/;1610356744;0;True;False;anime;t5_2qh22;;0;[]; -[];;;grayrest;;MAL;[];;http://myanimelist.net/animelist/grayrest;dark;text;t2_32m6;False;False;[];;"I'd add 12 Kingdoms. It's not a perfect show but I think it's the best of the Fushigi Yugi / Inuyasha era of isekais. - -Also No Game No Life deserves a mention.";False;False;;;;1610314208;;False;{};gisvdq2;False;t3_kuj1bm;False;False;t1_gis8iiu;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisvdq2/;1610356807;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610314231;;False;{};gisvfen;False;t3_kuj1bm;False;True;t1_gisj4xv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisvfen/;1610356832;4;True;False;anime;t5_2qh22;;0;[]; -[];;;OfficialZlinnt;;;[];;;;text;t2_15dywe;False;False;[];;JESUS CHRIST IVE BEEN WAITING FOR THIS TO GET AN ANIME FOREVER AND IT'S EVEN BETTER THAN i EXPECTED FUCK ME DUDE IM SO HAPPY.;False;False;;;;1610314290;;False;{};gisvjpj;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisvjpj/;1610356899;8;True;False;anime;t5_2qh22;;0;[]; -[];;;susgnome;;AP;[];;http://www.anime-planet.com/users/RoyalRampage;dark;text;t2_50od8;False;False;[];;"It feels so good to relive these moments again. - -It's been 6 years since the *manga* started, I'm so excited to see everything that happens but with motion & colour. - -I have hopes for what's to come.";False;False;;;;1610314332;;False;{};gisvmt3;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisvmt3/;1610356949;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;Yeah SAO is easily one of the oldest ones, iirc the original web novel was published in 2001. Heck Alicization was finished in 2009.;False;False;;;;1610314345;;False;{};gisvntx;False;t3_kuj1bm;False;False;t1_gisq7nb;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisvntx/;1610356965;10;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;Makes me wonder how Tappei did a deconstruction on a genre that was still sort of new.;False;False;;;;1610314381;;False;{};gisvqfx;False;t3_kuj1bm;False;False;t1_gisdhaz;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisvqfx/;1610357006;5;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;Tensei means reincarnation for those wondering.;False;False;;;;1610314440;;False;{};gisvuno;False;t3_kuj1bm;False;True;t1_gisqotz;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisvuno/;1610357069;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610314478;;False;{};gisvxgh;False;t3_kuj1bm;False;True;t1_gisdhyd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisvxgh/;1610357114;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;One of the best first episodes in quite a while, IMO.;False;False;;;;1610314486;;False;{};gisvy0q;False;t3_kuj1bm;False;True;t1_gis5mk6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisvy0q/;1610357122;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RadiumFusion;;;[];;;;text;t2_6xc47;False;False;[];;How exactly is that a OPM S1 situation? S1 was produced at Madhouse which is an old studio that's produced many big tv series and movies.;False;False;;;;1610314489;;False;{};gisvy7t;False;t3_kuj1bm;False;False;t1_gisdsy5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisvy7t/;1610357125;47;True;False;anime;t5_2qh22;;0;[]; -[];;;Schully;;;[];;;;text;t2_11ckl1;False;False;[];;Except growing out of being a pedo is one part of what I enjoyed about his development? If you're going to keep making presumptions based on what other people with low information tells you, then maybe you should just read or keep watching it instead, and save your comments for when you understand more.;False;False;;;;1610314580;;False;{};gisw559;False;t3_kuj1bm;False;True;t1_gisbati;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisw559/;1610357230;2;True;False;anime;t5_2qh22;;0;[]; -[];;;theregretmeter;;;[];;;;text;t2_m0jcsde;False;False;[];;What are you expecting from someone whose last words before dying was wishing he could have lost his virginity.;False;False;;;;1610314615;;False;{};gisw7ow;False;t3_kuj1bm;False;False;t1_gisntj5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisw7ow/;1610357269;29;True;False;anime;t5_2qh22;;0;[]; -[];;;Bloosakuga;;;[];;;;text;t2_110qf0;False;False;[];;OPM was made by Madhouse which exists for multiple decades already.;False;False;;;;1610314636;;False;{};gisw9b0;False;t3_kuj1bm;False;False;t1_gisdsy5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisw9b0/;1610357294;20;True;False;anime;t5_2qh22;;0;[]; -[];;;susgnome;;AP;[];;http://www.anime-planet.com/users/RoyalRampage;dark;text;t2_50od8;False;False;[];;I love this, these tweets are really wholesome.;False;False;;;;1610314756;;False;{};giswi73;False;t3_kuj1bm;False;True;t1_gis5cl6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giswi73/;1610357424;1;True;False;anime;t5_2qh22;;0;[]; -[];;;max_maxima;;;[];;;;text;t2_s1uqi6b;False;False;[];;I liked everything but the pervy weird parts.;False;False;;;;1610314764;;False;{};giswit3;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giswit3/;1610357432;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Theleux;;MAL a-1milquiz;[];;https://myanimelist.net/profile/Theleux;dark;text;t2_am615;False;False;[];;"Yah, Sugita was an interesting surprise. - -If you think of Dogeza (Sugita voices the MC) as the prequel to this, it makes a whole lot more sense haha";False;False;;;;1610314959;;False;{};giswxjl;False;t3_kuj1bm;False;False;t1_gis553v;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giswxjl/;1610357650;28;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRedMiko;;;[];;;;text;t2_6n7vxtim;False;False;[];;Bless this glorious day. For anyone who knows Japanese, I highly recommend the audiobooks on the JP version of Audible. The funnest time I've had during this shitty pandemic has been binging the 14 volumes that have an audiobook form over the course of a couple weeks.;False;False;;;;1610314968;;False;{};giswy7k;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giswy7k/;1610357660;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Slurms_McKenzie775;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/solis91;light;text;t2_g5vcr;False;False;[];;Going into this completely blind I have to say I really enjoyed this first episode. I wasn't going to even check it out but the top comment in this thread convinced me to and I'm really glad I did.;False;False;;;;1610314977;;False;{};giswyty;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giswyty/;1610357670;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zecias;;MAL a-amq;[];;http://myanimelist.net/animelist/Zecias;dark;text;t2_7ucex;False;False;[];;"It's kind of a moot point cuz the stories are pretty different anyways, they don't really borrow from each other very much. Shield hero you could draw a lot more parallels, but they came out at around the same time. - -As far as japanese stories go, the oldest isekai I know is inuyasha. For western stories you have stuff like the lion, the witch, and the wardrobe; The Wizard of OZ; Alice in Wonderland; even dante's inferno could be considered isekai.";False;False;;;;1610315002;;False;{};gisx0pj;False;t3_kuj1bm;False;False;t1_gisvntx;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisx0pj/;1610357698;13;True;False;anime;t5_2qh22;;0;[]; -[];;;EldestElder2800;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/InfiniteList;light;text;t2_54m0quh0;False;False;[];;The water animations were mesmerizing;False;False;;;;1610315126;;False;{};gisx9w3;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisx9w3/;1610357833;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EldestElder2800;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/InfiniteList;light;text;t2_54m0quh0;False;False;[];;It's only day one, but you son of a bitch, I'm in.;False;False;;;;1610315306;;False;{};gisxn97;False;t3_kuj1bm;False;False;t1_gis8y8c;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisxn97/;1610358034;34;True;False;anime;t5_2qh22;;0;[]; -[];;;neovenator250;;;[];;;;text;t2_920kp;False;False;[];;Damn...I'm excited for this show after that;False;False;;;;1610315409;;False;{};gisxv2h;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisxv2h/;1610358148;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EldritchCarver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Pilomotor;light;text;t2_4epcw;False;False;[];;"It's not working for me, either. You did this: -\[Spoiler source](Spoiler goes here) -when you should have done this: -\[Spoiler source](/s ""Spoiler goes here"")";False;False;;;;1610315516;;False;{};gisy3e3;False;t3_kuj1bm;False;True;t1_gisdjnp;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisy3e3/;1610358273;2;True;False;anime;t5_2qh22;;0;[]; -[];;;vitorau111;;;[];;;;text;t2_14gt48;False;False;[];;Wait, the anime only started today??? ive already watched 2 episodes in the last week WTF. When does episode 3 comes out? the show is incredible;False;False;;;;1610315520;;False;{};gisy3or;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisy3or/;1610358278;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phoenix7240;;;[];;;;text;t2_112sk7;False;False;[];;i hate that i have the knowledge that mushoku has an audiobook that i cant listen to.;False;False;;;;1610315535;;False;{};gisy4ss;False;t3_kuj1bm;False;True;t1_giswy7k;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisy4ss/;1610358295;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VariousMeet;;;[];;;;text;t2_63veb3s5;False;False;[];;Oh I wouldn't doubt it. I'm sure it's just a first episode thing, It seems like it'll only get better from here;False;False;;;;1610315658;;False;{};gisye4s;False;t3_kuj1bm;False;False;t1_gisv9fd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisye4s/;1610358435;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Giaguaro80;;;[];;;;text;t2_1rp3im9;False;False;[];;"Some scene didn't need to be that polished but they went the extra mile, there was one scene where the teacher tuck her hair on the side and it looked too fluid, they are flexing on us! - -Everything about the production was superb! I was really surprised, the story seems interesting too, it's been a while since I was annoyed there was no more episodes to watch";False;False;;;;1610315766;;False;{};gisymbc;False;t3_kuj1bm;False;False;t1_gis5mk6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisymbc/;1610358557;18;True;False;anime;t5_2qh22;;0;[]; -[];;;jithinrohith;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/leefez;dark;text;t2_o1yz9j9;False;False;[];;This looks really good! This might actually restore my faith in isekai. Also the Rudy's mom is hot af.;False;False;;;;1610315792;;False;{};gisyo5k;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisyo5k/;1610358585;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mysistersacretin;;;[];;;;text;t2_6v57c;False;False;[];;Got it, thanks! My mobile app hid the /s and quotation marks in the sidebar. I had to reply to your comment to see the text as it was supposed to be.;False;False;;;;1610315842;;False;{};gisyrxg;False;t3_kuj1bm;False;True;t1_gisy3e3;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisyrxg/;1610358641;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;"Just considered it a plan B after the ""crashing into them"" plan failed.";False;False;;;;1610315877;;False;{};gisyuje;False;t3_kuj1bm;False;True;t1_gisqq8e;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisyuje/;1610358678;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dxing2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/dxing;light;text;t2_sbxd9;False;False;[];;Lol ya dude was probably trying to spam press X to skip the dialogue like in a NG+;False;False;;;;1610315886;;False;{};gisyvaf;False;t3_kuj1bm;False;False;t1_gis7gyy;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisyvaf/;1610358689;94;True;False;anime;t5_2qh22;;0;[]; -[];;;Bayart;;;[];;;;text;t2_fjfyt;False;False;[];;The power-scaling in MT is really good. In the grand scheme of things he's never really broken.;False;False;;;;1610315894;;False;{};gisyvui;False;t3_kuj1bm;False;False;t1_gis5pow;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisyvui/;1610358698;4;True;False;anime;t5_2qh22;;0;[]; -[];;;phoenix7240;;;[];;;;text;t2_112sk7;False;False;[];;those were pre aired on nico nico this is the proper broadcast so next sun wiil be ep 2 and then the week after will be ep 3;False;False;;;;1610315898;;False;{};gisyw5n;False;t3_kuj1bm;False;False;t1_gisy3or;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisyw5n/;1610358702;3;True;False;anime;t5_2qh22;;0;[]; -[];;;EldritchCarver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Pilomotor;light;text;t2_4epcw;False;False;[];;Yeah, your spoiler tag works now.;False;False;;;;1610315980;;False;{};gisz2fc;False;t3_kuj1bm;False;True;t1_gisyrxg;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisz2fc/;1610358797;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OfficialZlinnt;;;[];;;;text;t2_15dywe;False;False;[];;Very unironically;False;False;;;;1610316049;;False;{};gisz7pb;False;t3_kuj1bm;False;False;t1_gisgsw5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisz7pb/;1610358876;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Evilmon2;;;[];;;;text;t2_6e943;False;False;[];;He thought it was a truck, but it turned out to be a motor cart thing that barely bumped him and he had a heart attack and died.;False;False;;;;1610316063;;False;{};gisz8qk;False;t3_kuj1bm;False;False;t1_gistb41;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gisz8qk/;1610358891;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Brook0999;;;[];;;;text;t2_ycupg;False;False;[];;Lmao 😂😂😂;False;False;;;;1610316111;;False;{};giszck3;False;t3_kuj1bm;False;True;t1_gis7d5o;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giszck3/;1610358946;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sherlockeb;;MAL;[];;http://myanimelist.net/profile/Sherlockeb;dark;text;t2_f6u9a;False;False;[];;hearing Gintoki while the baby is picking his nose was hilarious;False;False;;;;1610316239;;False;{};giszmbt;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giszmbt/;1610359086;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDampGod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheDampGod;light;text;t2_im4vi;False;False;[];;I've been watching way too many Sugita interviews and other shenanigans on YouTube. Because his narration just feels like him doing a reaction commentary, rather than playing a character. Though there'd probably be more Jojo references if he was completely ad libbing it.;False;False;;;;1610316241;;False;{};giszmg2;False;t3_kuj1bm;False;False;t1_gis553v;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giszmg2/;1610359088;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Level1Pixel;;;[];;;;text;t2_ffibf94;False;False;[];;">it's got a very genuine feeling to it despite all the horniness - -Probably one of the best way to describe this series. MC is not some saint . He is just like most of us. We got our horny moments and we got our genuine moments. - -That said there are times while reading that made me go ""yea, author is definitely writing this because of a fetish"". At the very least, he incorporates them naturally into the story instead of just putting it there as a separate instance.";False;False;;;;1610316384;;False;{};giszwyu;False;t3_kuj1bm;False;False;t1_gis7161;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giszwyu/;1610359246;6;True;False;anime;t5_2qh22;;0;[]; -[];;;EldestElder2800;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/InfiniteList;light;text;t2_54m0quh0;False;False;[];;This is my worry as well. I couldn't get into Fire Force because of the ecchi, and I really hope a show as interesting as this doesn't shoot itself in the foot for cheap jokes or fanservice.;False;False;;;;1610316435;;False;{};git00nj;False;t3_kuj1bm;False;True;t1_gisdpwv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git00nj/;1610359303;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SteadyShift;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_hbgor;False;False;[];;amazing.;False;False;;;;1610316474;;False;{};git03ka;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git03ka/;1610359345;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TabletopPaintingUK;;;[];;;;text;t2_pgufb2q;False;False;[];;I need to watch Fire Force, lol.;False;False;;;;1610316477;;False;{};git03ul;False;t3_kuj1bm;False;True;t1_git00nj;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git03ul/;1610359350;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vinon;;;[];;;;text;t2_hakf0;False;False;[];;I like the manga a lot, but goddamn have I forgotten how cringy the main character starts off as. It gets better later but for now It just completely put me off.;False;False;;;;1610316495;;False;{};git05aw;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git05aw/;1610359371;1;True;False;anime;t5_2qh22;;0;[]; -[];;;messem10;;;[];;;;text;t2_6pcwi;False;False;[];;"There is more content to MT than SAO. Right now SAO has 84 (25+24+24+11) episodes and a movie. - -My guess is that if they do the whole thing, it’ll be 120-150 episodes. Will they do it? I doubt it in this day and age, but who knows.";False;False;;;;1610316578;;False;{};git0bvk;False;t3_kuj1bm;False;False;t1_gis9dud;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git0bvk/;1610359469;6;True;False;anime;t5_2qh22;;0;[]; -[];;;EldestElder2800;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/InfiniteList;light;text;t2_54m0quh0;False;False;[];;Great concept, execution wasn't to my tastes. Enjoy, though!;False;False;;;;1610316585;;False;{};git0cfi;False;t3_kuj1bm;False;True;t1_git03ul;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git0cfi/;1610359479;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mochachiiino;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://twitter.com/Mochachiiino;dark;text;t2_dnn0k;False;False;[];;Sugita isekai lets go;False;False;;;;1610316627;;False;{};git0foe;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git0foe/;1610359530;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cyd_arts;;;[];;;;text;t2_5hfv3fmw;False;False;[];;Damn I remember reading a few volumes of the WN years back, the anime is doing it justice!;False;False;;;;1610316627;;False;{};git0fqq;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git0fqq/;1610359531;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SteadyShift;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_hbgor;False;False;[];;exactly;False;False;;;;1610316631;;False;{};git0g1h;False;t3_kuj1bm;False;True;t1_gis8bcs;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git0g1h/;1610359536;1;True;False;anime;t5_2qh22;;0;[]; -[];;;messem10;;;[];;;;text;t2_6pcwi;False;False;[];;"Yeah, I’ll give you that. - -SAO is to gameified isekai as Infinite Stratos was to the magic high school “genre”.";False;False;;;;1610316672;;False;{};git0j7g;False;t3_kuj1bm;False;True;t1_gisjjba;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git0j7g/;1610359584;3;True;False;anime;t5_2qh22;;0;[]; -[];;;vitorau111;;;[];;;;text;t2_14gt48;False;False;[];;Thanks;False;False;;;;1610316743;;False;{};git0p2q;False;t3_kuj1bm;False;True;t1_gisyw5n;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git0p2q/;1610359671;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mochachiiino;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://twitter.com/Mochachiiino;dark;text;t2_dnn0k;False;False;[];;"The way the baby picked his nose LOL - -""Ya its me, Gintoki""";False;False;;;;1610316766;;False;{};git0r41;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git0r41/;1610359703;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Florac;;;[];;;;text;t2_vy0sf;False;False;[];;You are clearly not a hentai writer!;False;False;;;;1610316780;;False;{};git0s7m;False;t3_kuj1bm;False;False;t1_giskl7n;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git0s7m/;1610359720;94;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610316923;;False;{};git13hz;False;t3_kuj1bm;False;True;t1_gish2y1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git13hz/;1610359888;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ciberrrr;;;[];;;;text;t2_rz6wf;False;False;[];;Welcome new believer of Roxism, we have cookies and you can pray to our sacred artifact.;False;False;;;;1610316986;;False;{};git18fu;False;t3_kuj1bm;False;False;t1_gisxn97;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git18fu/;1610359962;23;True;False;anime;t5_2qh22;;0;[]; -[];;;phoenix7240;;;[];;;;text;t2_112sk7;False;False;[];;i think we may be lucky this season because for as horrible as a human being he is at the start (before he really starts putting in the effort to change himself)... its still nowhere near as bad as what people will see in redo of the healer which will also be airing this season and if we are lucky all the controversy mushoku would get from people no understanding that rudeus being like this at the start is the point will instead go to redo.;False;False;;;;1610317056;;False;{};git1dui;False;t3_kuj1bm;False;False;t1_gisbvk7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git1dui/;1610360041;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Florac;;;[];;;;text;t2_vy0sf;False;False;[];;"4, or maybe even 5, with one single cour season probably. With single cour being [Source spoiler](/s ""starting after princess arc, up till the traitor reveal. Then another 2 cour for the entire final arc+epilogue stuff. Unless they willingly don't stop a season on a high point, would need to stop after volume 17...and 8 volumes for two cour would be too much"")";False;False;;;;1610317175;;False;{};git1msb;False;t3_kuj1bm;False;True;t1_gisugnz;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git1msb/;1610360182;3;True;False;anime;t5_2qh22;;0;[]; -[];;;aXygnus;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Send Vanilla Satella doujins ;dark;text;t2_ws5bk;False;False;[];;Plenty of people are of the opinion that the art style and animation of the second season (overall) isn't quite up to scratch when compared to the first season from 2016.;False;False;;;;1610317261;;False;{};git1t84;False;t3_kuj1bm;False;False;t1_gistcos;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git1t84/;1610360278;6;True;False;anime;t5_2qh22;;0;[]; -[];;;NightmareLight;;MAL;[];;https://myanimelist.net/profile/Yaminomai;dark;text;t2_yqbd4;False;False;[];;"> its still nowhere near as bad as what people will see in redo of the healer which will also be airing this season - -I honestly can't wait for that. Do you want some popcorn while scrolling twitter?";False;False;;;;1610317388;;False;{};git22r4;False;t3_kuj1bm;False;False;t1_git1dui;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git22r4/;1610360421;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Animegamingnerd;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/animegamingnerd;light;text;t2_k7u33;False;False;[];;Was Rudy's voice actor for his past life Sugita Tomokazu? Because he sounded a lot like Joseph and Gintoki.;False;False;;;;1610317553;;False;{};git2f3s;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git2f3s/;1610360602;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MohammaDon;;;[];;;;text;t2_xgv3e;False;False;[];;It do be like that;False;False;;;;1610317553;;False;{};git2f58;False;t3_kuj1bm;False;False;t1_gisyvaf;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git2f58/;1610360603;17;True;False;anime;t5_2qh22;;0;[]; -[];;;A-Glitch-Gnome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/AGlitchGnome;light;text;t2_adirj;False;False;[];;yes it is him;False;False;;;;1610317602;;False;{};git2j1i;False;t3_kuj1bm;False;True;t1_git2f3s;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git2j1i/;1610360659;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Q_sol;;;[];;;;text;t2_16l2kk;False;False;[];;Now I know this is a spoiler.;False;False;;;;1610317623;;False;{};git2knj;False;t3_kuj1bm;False;False;t1_gisanpd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git2knj/;1610360684;5;True;False;anime;t5_2qh22;;0;[]; -[];;;upchucknuts;;;[];;;;text;t2_8zgcp;False;False;[];;Yep, however, I fully expect the first season to be only his childhood phase.;False;False;;;;1610317776;;False;{};git2weg;False;t3_kuj1bm;False;False;t1_gisdhyd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git2weg/;1610360859;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Level1Pixel;;;[];;;;text;t2_ffibf94;False;False;[];;To be fair, all of these did something different to set itself apart from the rest. Mushoku Tensei is pure modern isekai. Neet dies to a truck and reincarnates. That's it but damn does it run with that premise.;False;False;;;;1610317792;;False;{};git2xm2;False;t3_kuj1bm;False;True;t1_gis8iiu;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git2xm2/;1610360879;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Perfect600;;;[];;;;text;t2_dkq29;False;False;[];;A buddy of mine from uni told me to read this one years ago. I should have listened to him sooner lol;False;False;;;;1610317822;;False;{};git2zvq;False;t3_kuj1bm;False;True;t1_gis5cl6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git2zvq/;1610360912;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Animegamingnerd;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/animegamingnerd;light;text;t2_k7u33;False;False;[];;Its not one to one like One Punch Man, but a lot the team who did OPM Season 1 was an all star team of animators that were hired by Madhouse as contractors just to work OPM Season 1;False;False;;;;1610317839;;False;{};git317s;False;t3_kuj1bm;False;False;t1_gisvy7t;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git317s/;1610360932;32;True;False;anime;t5_2qh22;;0;[]; -[];;;BassCreat0r;;;[];;;;text;t2_81037;False;False;[];;God its so great to see this animated. I love this series.;False;False;;;;1610317864;;False;{};git3364;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git3364/;1610360959;1;True;False;anime;t5_2qh22;;0;[]; -[];;;acathode;;;[];;;;text;t2_e35lj;False;False;[];;This. Truck-kun isn't an isekai-specific trope, it's a general anime/manga trope, typically used when a lazy author need to stir up a story that's going stale and needs more drama introduced - so they have one of their characters killed or heavily injured by Truck-kun. It's been used in everything from sports (Touch) to romance (Fuuka) manga.;False;False;;;;1610318037;;False;{};git3g9i;False;t3_kuj1bm;False;True;t1_giskau8;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git3g9i/;1610361158;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CruisinCinnamon;;;[];;;;text;t2_45sei6q;False;False;[];;Main dude a bit much but it’s balanced out it seems like. At the end he seems to hint at character development so that’s nice. Overall enjoyable, surprised parents haven’t had another kid haha. It was funny seeing the spells being said so casually. I echo other sentiments of it being visually impressive. I’m not a stickler for that stuff but I’ll give credit.;False;False;;;;1610318044;;False;{};git3gs0;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git3gs0/;1610361165;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeadingPlayer;;;[];;;;text;t2_c0osog1;False;False;[];;Truck-san strikes again!! The main character is not the kind of MC that would make me stay and the humors sometimes throws me off but.. that animation is gorgeous. I’m also so interested in how this magic system works. Apparently it’s based off a really popular light novel as well so how exciting! I’ll be sticking around, so I hope it impresses with future episodes as well. :);False;False;;;;1610318062;;False;{};git3i6k;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git3i6k/;1610361187;2;True;False;anime;t5_2qh22;;0;[]; -[];;;deja_entend_u;;;[];;;;text;t2_dcskb;False;False;[];;The epilogue could be a single 40min special. There isn't a ton. But good point on the reveal portion, reading that letter would be an insane way to end the season.;False;False;;;;1610318130;;False;{};git3n73;False;t3_kuj1bm;False;True;t1_git1msb;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git3n73/;1610361261;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DrScorcher;;;[];;;;text;t2_2eyxjnbn;False;False;[];;He was genuinely scared of going outside. He lived as a shut-in his entire life and the montage of him practicing magic all took place inside the house. You could see him fidgeting while just sitting on that chair outside because of how uncomfortable he was.;False;False;;;;1610318218;;False;{};git3tr6;False;t3_kuj1bm;False;False;t1_gisqe81;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git3tr6/;1610361357;11;True;False;anime;t5_2qh22;;0;[]; -[];;;RadiumFusion;;;[];;;;text;t2_6xc47;False;False;[];;"They weren't ""hired by Madhouse as contractors just to work OPM Season 1"", most of the talented animators on S1 were there through connections to the director (Shingo Natsume) and the Animation Producer (Yuichiro Fukushi), and have worked with them in the past and since then numerous times.";False;False;;;;1610318239;;False;{};git3vim;False;t3_kuj1bm;False;False;t1_git317s;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git3vim/;1610361383;31;True;False;anime;t5_2qh22;;0;[]; -[];;;slimes007;;;[];;;;text;t2_tgoqs;False;False;[];;That sucks that they took it out. I understand it is kinda gross but I still would of preferred to leave it in so it's a faithful translation instead of self-censoring.;False;False;;;;1610318258;;False;{};git3wy1;False;t3_kuj1bm;False;False;t1_gisg6n0;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git3wy1/;1610361404;7;True;False;anime;t5_2qh22;;0;[]; -[];;;theanimegamer-___-;;;[];;;dark;text;t2_3vm3lj8d;False;False;[];;Oh I thought he had to piss or something and was worried about going outside since he would be away from the toilet. Looks like he's a severe neet.;False;False;;;;1610318314;;False;{};git4193;False;t3_kuj1bm;False;False;t1_gis7gyy;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git4193/;1610361470;64;True;False;anime;t5_2qh22;;0;[]; -[];;;Mochachiiino;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://twitter.com/Mochachiiino;dark;text;t2_dnn0k;False;False;[];;when the baby picked its nose doe LOL;False;False;;;;1610318355;;False;{};git44bg;False;t3_kuj1bm;False;False;t1_gis9vy2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git44bg/;1610361515;8;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"This is ... actually *good*? That was unexpected. MC is an ubercreep, but the actual episode was great! I particularly like how MC's inner voice is his pre-incarnation self, something that I don't remember any Reincarnation Isekai doing unless you count Overlord. I hope that doesn't change as he grows older. - -Also, here's one reincarnee where you definitely cannot make the ""the child's body affects the mind so it's OK for him to be into lolis"" excuse.";False;False;;;;1610318380;;False;{};git465k;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git465k/;1610361543;3;True;False;anime;t5_2qh22;;0;[]; -[];;;_Shashank_08;;;[];;;;text;t2_5jymdpqf;False;False;[];;I can't hear anything but gintoki, further more Rudy even started digging his nose lmao!;False;False;;;;1610318475;;False;{};git4dbn;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git4dbn/;1610361649;3;True;False;anime;t5_2qh22;;0;[]; -[];;;slimes007;;;[];;;;text;t2_tgoqs;False;False;[];;25 volumes of the web novel, which is completed, but the LN is still ongoing;False;False;;;;1610318551;;False;{};git4jc7;False;t3_kuj1bm;False;False;t1_gisgq71;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git4jc7/;1610361738;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;Ore no nawa JACK;False;False;;;;1610318557;;False;{};git4jth;False;t3_kuj1bm;False;False;t1_gishxlu;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git4jth/;1610361746;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Florac;;;[];;;;text;t2_vy0sf;False;False;[];;Was thinking more Redundancy stuff;False;False;;;;1610318593;;False;{};git4mmx;False;t3_kuj1bm;False;True;t1_git3n73;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git4mmx/;1610361789;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"Ah, is that why, while MC is a huge LN reader and immediately recognized that he was reincarnated, he expected it to be modern times on Earth and was surprised when he learned this was a swords&sorcery world?";False;False;;;;1610318631;;False;{};git4piw;False;t3_kuj1bm;False;False;t1_gisajc1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git4piw/;1610361833;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Schully;;;[];;;;text;t2_11ckl1;False;False;[];;Ohhh, I confused all of S2 part 1 with S2 part 2 lol;False;False;;;;1610318649;;False;{};git4qvf;False;t3_kuj1bm;False;True;t1_git1t84;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git4qvf/;1610361853;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"""Honey, the Greater Hardening buff is wearing off, could you renew it please?""";False;False;;;;1610318771;;False;{};git503d;False;t3_kuj1bm;False;False;t1_gist3qv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git503d/;1610361991;4;True;False;anime;t5_2qh22;;0;[]; -[];;;cometssaywhoosh;;;[];;;;text;t2_o9xoz;False;False;[];;This has plenty of potential, will be interested in this show;False;False;;;;1610318773;;False;{};git507u;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git507u/;1610361993;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BadmanProtons;;;[];;;;text;t2_4uhsj;False;False;[];;">There is no excuse for Rudeus' behavior, and it's a very very solid criticism of the story. - -Why does there need to be an excuse for a character flaw? Does every character need to be a Mary Sue / Gary Stu to be a good character in your eyes?";False;False;;;;1610318910;;False;{};git5ab1;False;t3_kuj1bm;False;False;t1_gisobst;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git5ab1/;1610362147;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Fudgeypop;;;[];;;;text;t2_knf3e;False;False;[];;I can't get of enough of the narration, knowing it's gintoki's VA makes it's even more hilarious.;False;False;;;;1610318918;;False;{};git5axc;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git5axc/;1610362157;1;True;False;anime;t5_2qh22;;0;[];True -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;The start of a great story;False;False;;;;1610318986;;False;{};git5g0x;False;t3_kuj1bm;False;False;t1_gisa5z1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git5g0x/;1610362231;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Nufulini;;;[];;;;text;t2_12lzy7;False;False;[];;Just wondering, if they keep this pacing how many episodes will it take to adapt the whole series?;False;False;;;;1610319115;;False;{};git5pld;False;t3_kuj1bm;False;True;t1_gis9hz1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git5pld/;1610362375;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sean-Benn_Must-die;;;[];;;;text;t2_q6vvb;False;False;[];;"yea in fact, it's one of the few isekai that is just ""oh yea you are now warped into this world lol"" no death, no truck kun, nothing.";False;False;;;;1610319388;;False;{};git69uj;False;t3_kuj1bm;False;True;t1_gisdhaz;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git69uj/;1610362684;3;True;False;anime;t5_2qh22;;0;[]; -[];;;REAL_CONSENT_MATTERS;;;[];;;;text;t2_ftyr6;False;False;[];;ojiisan what are you doing on reddit? i can help you if you're lost.;False;False;;;;1610319560;;False;{};git6mx6;False;t3_kuj1bm;False;True;t1_gisscn8;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git6mx6/;1610362885;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheTimon;;;[];;;;text;t2_797ql;False;False;[];;Like who wouldn't think about or mentally comment seeing that? I also think one would get turned on by their own new mom until the live in the family has settlet in and you got familiar with each other.;False;False;;;;1610319602;;False;{};git6q01;False;t3_kuj1bm;False;False;t1_gisk8i5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git6q01/;1610362932;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Nufulini;;;[];;;;text;t2_12lzy7;False;False;[];;Ah that makes sense, I thought he just got impatient with the explanations of the magic system;False;False;;;;1610319668;;False;{};git6uxh;False;t3_kuj1bm;False;False;t1_git3tr6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git6uxh/;1610363007;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Etereke32;;;[];;;;text;t2_11qhl2;False;False;[];;We had a show last season too where Gintoki's VA played the part of a pervert;False;False;;;;1610319717;;False;{};git6yo9;False;t3_kuj1bm;False;True;t1_gis9vy2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git6yo9/;1610363063;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Etereke32;;;[];;;;text;t2_11qhl2;False;False;[];;Maybe this is just the isekai special that was teased for dogeza;False;False;;;;1610319750;;False;{};git717p;False;t3_kuj1bm;False;False;t1_giswxjl;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git717p/;1610363101;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Skyreader13;;;[];;;;text;t2_rixwo;False;False;[];;"Then it's not actually a deconstruction. Just different thing on its own that coincidentally people see as deconstruction later. Personally, i don't really see it as deconstruction as there's some similar stories that published way earlier like Inuyasha. - -Deconstruction is like Madoka Magica in which it redefine the whole magical girl genre. Re zero didn't do that to isekai genre.";False;False;;;;1610319783;;False;{};git73pa;False;t3_kuj1bm;False;False;t1_gisvqfx;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git73pa/;1610363138;12;True;False;anime;t5_2qh22;;0;[]; -[];;;z3onn;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://www.imdb.com/list/ls093600574/;dark;text;t2_10aeas;False;True;[];;The OP? I don't remember seeing it. Is it out just as a standalone right now?;False;False;;;;1610319792;;False;{};git74fd;False;t3_kuj1bm;False;False;t1_gis76mj;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git74fd/;1610363149;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Etereke32;;;[];;;;text;t2_11qhl2;False;False;[];;Holy shit I haven't even realized he is also Joseph's voice;False;False;;;;1610319804;;False;{};git759k;False;t3_kuj1bm;False;False;t1_gise8rj;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git759k/;1610363162;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Beybladeer;;;[];;;;text;t2_ionrm5z;False;False;[];;bitch I like both, what now?;False;False;;;;1610319865;;False;{};git79s7;False;t3_kuj1bm;False;True;t1_gislod7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git79s7/;1610363231;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rzoks;;MAL;[];;https://myanimelist.net/profile/;dark;text;t2_iqsof;False;False;[];;He spent the last 20 years of his old life as a complete shut in. So yeah, coming outside would be nerve-wracking for him.;False;False;;;;1610319881;;False;{};git7ayn;False;t3_kuj1bm;False;False;t1_git4193;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git7ayn/;1610363250;52;True;False;anime;t5_2qh22;;0;[]; -[];;;Greyhaker;;;[];;;;text;t2_5h2f2mge;False;False;[];;"As a 24 year old neet I resonate way too much with this in ways that go beyond any other isekai anime and that fit surpsisingly well... - -and even without that the anime is already godlike";False;False;;;;1610319949;;False;{};git7fsi;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git7fsi/;1610363323;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sp1tfir3x;;;[];;;;text;t2_zm290;False;False;[];;As soon as I heard Sugita’s voice. It put the stupidest grin on my face and my wife looked at me like “wtf are you smiling for”. His voice and Kenjiro Tsuda’s are the ones I can always identify from the first line.;False;False;;;;1610319965;;False;{};git7gya;False;t3_kuj1bm;False;False;t1_gisscme;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git7gya/;1610363340;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Etereke32;;;[];;;;text;t2_11qhl2;False;False;[];;I wish I was told that he is a pervert beforehand, it was actually a bit off-putting at first without mental preparation. But the show itself is so high quality that I just didn't care about that detail by the end of the episode;False;False;;;;1610319970;;False;{};git7hby;False;t3_kuj1bm;False;True;t1_gis5h59;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git7hby/;1610363346;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sp1tfir3x;;;[];;;;text;t2_zm290;False;False;[];;Hopefully they don’t replace his internal monologue down the line with Paku’s voice. If the anime goes all the way, hopefully his actual voice will be Sugita when he grows up.;False;False;;;;1610320035;;False;{};git7lx7;False;t3_kuj1bm;False;False;t1_gisppgh;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git7lx7/;1610363415;5;True;False;anime;t5_2qh22;;0;[]; -[];;;bakato;;;[];;;;text;t2_xti6i;False;False;[];;I'm impressed. They completely cut out his background concerning his former life and the exact circumstances of his death. Smart move 'cause he was a real piece of shit.;False;False;;;;1610320067;;False;{};git7obl;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git7obl/;1610363453;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610320076;;False;{};git7ozm;False;t3_kuj1bm;False;True;t1_gisf0x1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git7ozm/;1610363463;0;True;False;anime;t5_2qh22;;0;[]; -[];;;z3onn;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://www.imdb.com/list/ls093600574/;dark;text;t2_10aeas;False;True;[];;"Was it super creepy? - -It was horny for sure. But it was just acknowledging female breasts in an internal monologue without acting out creepily. A thing that basically every straight male has done in their life. - -Edit: just remembered the bush comment. Yeah that was creepy";False;False;;;;1610320082;;1610320338.0;{};git7pg1;False;t3_kuj1bm;False;False;t1_gisfxrc;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git7pg1/;1610363469;17;True;False;anime;t5_2qh22;;0;[]; -[];;;antiracist_69;;;[];;;;text;t2_40rc1skg;False;False;[];;Believe me, the manga is pretty average, with quite a few good panels in fact, but this reminded me of Kyoto Animation, the... fluffiness, the love from the animators is just coming out, and every other value, from voice actors to direction and camera shots, beautiful;False;False;;;;1610320187;;False;{};git7x76;False;t3_kuj1bm;False;False;t1_gis5mk6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git7x76/;1610363586;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;That's right! Classic Kazuma 😂🤣;False;False;;;;1610320228;;False;{};git80h5;False;t3_kuj1bm;False;True;t1_gisz8qk;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git80h5/;1610363633;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;Don't know what novels you read, but clearly it wasn't mushoku tensei;False;False;;;;1610320269;;False;{};git83lh;False;t3_kuj1bm;False;True;t1_gisdtmw;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git83lh/;1610363680;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Skyreader13;;;[];;;;text;t2_rixwo;False;False;[];;"> this is one the very earliest isekais. - -Nah, just one of the earliest modern isekai - -Classic anime have plenty of isekai already, they just have different feels. Example: Inuyasha, Flower of Escaflowne, etc";False;False;;;;1610320277;;False;{};git846r;False;t3_kuj1bm;False;False;t1_gis7khi;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git846r/;1610363689;4;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;The team that made It was under Madhouse, but The. Team that worked on It was not from Madhouse, It was mostly free lancers.;False;False;;;;1610320297;;False;{};git85qv;False;t3_kuj1bm;False;False;t1_gisw9b0;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git85qv/;1610363712;6;True;False;anime;t5_2qh22;;0;[]; -[];;;mysistersacretin;;;[];;;;text;t2_6v57c;False;False;[];;Assuming 4 books per volume, 108+ episodes. There were 25 volumes for the WN, but the LN added I believe 2 extra volumes and extended some things.;False;False;;;;1610320398;;False;{};git8d9o;False;t3_kuj1bm;False;False;t1_git5pld;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git8d9o/;1610363823;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610320508;;False;{};git8lpr;False;t3_kuj1bm;False;True;t1_git7obl;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git8lpr/;1610363948;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610320549;;False;{};git8oox;False;t3_kuj1bm;False;True;t1_gis7wzs;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git8oox/;1610363992;2;True;False;anime;t5_2qh22;;0;[]; -[];;;random_throwaway0001;;;[];;;;text;t2_9lx2xvpv;False;False;[];;That's just what I noticed from comparing them for 5 minutes. I'm sure there are more things removed. Might compile a list if I've got time from work.;False;False;;;;1610320555;;False;{};git8p55;False;t3_kuj1bm;False;True;t1_git3wy1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git8p55/;1610363999;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;Man you would *not* survive living in a medieval time period, you do realize things were different in that time right?;False;True;;comment score below threshold;;1610320602;;False;{};git8sjm;False;t3_kuj1bm;False;True;t1_gisn68q;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git8sjm/;1610364051;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;Greyhaker;;;[];;;;text;t2_5h2f2mge;False;False;[];;"At first he still couldn't walk, talk, eat or do anything else by himself so he still needed someone to survive. Telling them he is actually over 30 would be a huge risk and there is nobody else who could take care of him. - -Also he is a neet... so I don't think he would be a fan of leaving and surviving on his own either way.";False;False;;;;1610320652;;1610321933.0;{};git8wa4;False;t3_kuj1bm;False;True;t1_gisc5cq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git8wa4/;1610364108;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Eazydoesit88;;;[];;;;text;t2_507pyn1j;False;False;[];;Well shit two good trash anime to watch so far loving this season.;False;False;;;;1610320683;;False;{};git8ym5;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git8ym5/;1610364143;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hugokarenque;;;[];;;;text;t2_4hbyx;False;False;[];;"I think pretty much anyone that has waded through a lot of shitty modern isekai will be able to immediately tell that this is built different. - - From the slow world building to the impressive visuals you can really feel like this is gonna be special. - - I could go on about this for awhile so for now I'll just say that the aspect that I appreciate the most is the focus on the MC's past life, or moreover his regrets that carried over from his past life. In most modern isekai, you get a few lines or scenes about how the MC either hated or was indifferent about their old world but they never explore that past the surface level, I really enjoy it when shows dive deeper into who the characters were before the isekai because it gives us insight on what drives them in the isekai.";False;False;;;;1610320697;;False;{};git8zn7;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git8zn7/;1610364159;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ABoredCompSciStudent;;MAL;[];;https://myanimelist.net/profile/serendipity;dark;text;t2_zqflo;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610320713;moderator;False;{};git90qj;False;t3_kuj1bm;False;True;t1_gis8lyp;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git90qj/;1610364177;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ReiahlTLI;;;[];;;;text;t2_inivd9e;False;False;[];;"It's finally here! The long-awaited Mushoku Tensei anime! I had high hopes for it and it does not disappoint one bit. Everything is pretty much on point from animation to voice-acting which is fantastic and I hope they keep up this quality as we go through this run. - -As an adaptation it looks to be pretty faithful to the source material. However, it’s also taking into consideration the medium it’s working with. For example, while it keeps Rudy’s internal monologue thoughts and touches upon all of the events, it’s not going into painstaking detail on everything (compared to the WN, I haven’t read the LN). It uses the visual elements to really bolster that part, especially the whimsical and humorous aspects. The expressions are fantastic and on this point. It feels like they may have taken notes from the manga adaptation of Mushoku Tensei. There’s some wonderfully amazing facial expressions in that version that are hilarious. - -Actually, on that note, it’s kind of interesting how the events in all of the adaptations are largely the same but there’s a bit of creative arrangements in them depending on who’s working on it. The one that kind of stands out to me in this first episode is where and how they show that Rudy is still a pervert despite being reborn into this world. It happens in different places in each of the versions I’ve read/seen and it’s all kind of interesting. There are also tiny differences in how his parents act or how Rudy reacts to his obstacles that are really interesting. The one that I caught in this episode was how he hugged Paulo after finding out that he’d have to go outside to test things with Roxy. It actually says a lot about his character in that one little gesture. - -I will say that I do miss the Dragon Quest: Adventure of Dai (Check out the anime that’s airing now) reference that they made in the WN version of the events. I had a hearty laugh at that. - -One thing I want to especially highlight is the casting of Tomokazu Sugita as Rudy’s pre-reincarnation voice. This is like absolutely the perfect casting choice for it specifically because it gives Rudy’s narration the perfect blend of humor and seriousness it needs. I laughed quite a bit at the delivery of various lines he does in this episode like the first time he runs out of mana and passes out. My only real complaint is that I strongly associate Sugita’s voice with Gintoki which, considering the style of dialogue, makes sense. It’s just then all I think is that the series is an Isekai Gintama as a result…. - -In any case, I hope they can keep this quality up for this run and that it’s popular enough we get even more. The series is kind of special. It’s not often we get a unique coming of age tale combined with a second chance/redemption story in anime and I’d love to get the full thing.";False;False;;;;1610320812;;False;{};git97k9;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git97k9/;1610364280;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Android19samus;;;[];;;;text;t2_aqbu1;False;False;[];;well the protagonist is the fukin worst and both the characters and setting seem fairly generic so far, but the animation's good and people have been hyping this series up a fair amount, so I'll 3-episode rule it. Probably gonna drop it though, given how much competition it's got this season.;False;False;;;;1610320864;;False;{};git9b86;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git9b86/;1610364337;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EldritchCarver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Pilomotor;light;text;t2_4epcw;False;False;[];;Imagine the implications for BDSM!;False;False;;;;1610320915;;False;{};git9ew0;False;t3_kuj1bm;False;False;t1_giskl7n;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git9ew0/;1610364393;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Nvaaaa;;;[];;;;text;t2_x9kot;False;False;[];;Who the hell thought it would be a good idea to publish a censored version?;False;False;;;;1610321058;;False;{};git9pdr;False;t3_kuj1bm;False;False;t1_gisg6n0;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git9pdr/;1610364554;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Android19samus;;;[];;;;text;t2_aqbu1;False;False;[];;"it gave me big Demon Slayer vibes. I.E. high-quality production wrapped around a story which seems as bog-standard as they come. I assume that will change, but boy does the first episode not have much of a hook beyond ""it sure is an isekai, and our protagonist is the worst.""";False;False;;;;1610321087;;False;{};git9riq;False;t3_kuj1bm;False;False;t1_gis5mk6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git9riq/;1610364588;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Skyreader13;;;[];;;;text;t2_rixwo;False;False;[];;"> you're trying to tell me absolutely no one has tried to improvise magic anymore than already known except for him? - -Yes. Problem is, no one is doing it at very early age like Rudy did.";False;False;;;;1610321178;;False;{};git9y36;False;t3_kuj1bm;False;False;t1_gishh99;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/git9y36/;1610364688;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Android19samus;;;[];;;;text;t2_aqbu1;False;False;[];;so far, Rudy's personality seems to be exclusively bad parts. A bold move, to be sure, and the only one this series has taken thus far. Hope they do something with it.;False;False;;;;1610321219;;False;{};gita0zi;False;t3_kuj1bm;False;False;t1_gis7gyy;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gita0zi/;1610364734;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Adealow;;;[];;;;text;t2_qpdjd;False;False;[];;they change how he died, even though it was tied closely to the plot. He should die on site.;False;False;;;;1610321330;;False;{};gita8ye;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gita8ye/;1610364857;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;"There's a difference between having certain tropes just because it's an isekai, and having those tropes but actually incorporating them into the story so they make sense. I think the reason people bring up the argument of this series starting a lot of tropes is because this series didn't use those tropes because that's what expected of an isekai, the author used them because he had a purpose for using them. Most current series use them simply because ""it's an isekai, these things are expected so they don't have to make sense""";False;False;;;;1610321376;;False;{};gitac6l;False;t3_kuj1bm;False;True;t1_gisu0hb;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitac6l/;1610364906;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Smudy;;MAL a-amq;[];;https://myanimelist.net/animelist/Smudy;dark;text;t2_nrmt6;False;False;[];;"It played at the end of episode 1 as ED. - -It's also out in full on YT.";False;False;;;;1610321395;;False;{};gitadkr;False;t3_kuj1bm;False;False;t1_git74fd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitadkr/;1610364929;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Android19samus;;;[];;;;text;t2_aqbu1;False;False;[];;if this is one of the OGs then I guess it's not surprising that it felt *super* generic for this first episode. With high production values like this people will probably continue to watch it regardless, though. Well, they definitely would have in any other season, at least.;False;False;;;;1610321430;;False;{};gitag2d;False;t3_kuj1bm;False;True;t1_gis5cl6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitag2d/;1610364968;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CosmicPenguin_OV103;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cosmic_Penguin;light;text;t2_1ufwqhs7;False;True;[];;Thanks, gonna lengthen my expectations till at least late this year or even a Season 2 then (this season 1 will be split-cour).;False;False;;;;1610321637;;False;{};gitav08;False;t3_kuj1bm;False;True;t1_git8oox;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitav08/;1610365202;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Android19samus;;;[];;;;text;t2_aqbu1;False;False;[];;Unfortunately, genre pioneers often don't age with grace specifically because so much of what they do becomes codified in tropes. Going back to the origin of a saturated genre has equal likelihood of finding something which tells a genuine and engaging story using elements which have since been reduced to mere window-dressing by its contemporaries, and of finding something that you just can't get into because it was primarily lauded for fresh elements that you've by now seen a thousand times. Well, probably not equal likelihood. I think the second is more common.;False;False;;;;1610321693;;False;{};gitaz2w;False;t3_kuj1bm;False;False;t1_gis8ne9;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitaz2w/;1610365267;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lion12341;;;[];;;;text;t2_12iwvs;False;False;[];;Yeee;False;False;;;;1610321795;;False;{};gitb6lm;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitb6lm/;1610365384;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;"Great first episode, the animation is truly on a whole other level compared to your average isekai. It seems that the producers want to make this the next big isekai in the anime market. But I really don't like the main character, that's my only concern. I hope he develops in the future and other people help him change. - -On another note, I assume those 2 kids that were mentioned to be missing after being hit by the truck will be related to the story too. I hope this is the gateway that connects his old world with the new world so that his old world is not forgotten as in every other isekai there is. - -If The Beginning After the End is based in this series then I assume these two issues will be adressed along the way though. So good so far.";False;False;;;;1610321901;;False;{};gitbep4;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitbep4/;1610365512;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Areouf;;;[];;;;text;t2_3nyxnua3;False;False;[];;"Tropes aren't inherently bad or good. Rather, it is up to each individual viewer to decide what tropes they enjoy or do not enjoy. For example, while people would generally consider fanservice-related tropes to be a bad thing in most series, some people like that stuff and might actively seek it out. With this in mind, it's not so much that the tropes you are referring to are bad, per se; on the contrary, it's more that they have been arguably overused, which as a result makes _you_ consider them to be bad (however, many people don't consider them to be bad, as evidenced by the ongoing popularity of isekai series). - -Additionally, one can, to some extent, consciously change how they perceive a series to enjoy it to a greater or lesser extent. For example, if your best friend, who has a similar taste in films to you, recommends you a movie and says that it is their favourite, you are quite likely to go into it with a very positive mindset, and enjoy it a bit more than you might otherwise have if you had found it by clicking a ""show me a random movie"" button. - -Now, I only skimmed through the comments, so I probably missed a few; however, from the ≈ three comments that I found that mentioned something about excusing these tropes (as you put it), the overall tone of the comments was _not_ ""you must not dislike these tropes, because this series started them"". They were more like ""I hope that people take this into consideration before simply labelling it as another generic isekai"". Which is completely fair. - -Lastly, as for your exact wording, come on, of course the series should be excused for using those tropes! Are you seriously telling me that you judge the sexism in a piece of literature from 50 years ago to the same standards that you use to judge such a work that was created last year? Or that you complain about *insert historical monument of your choice* having been built by slave labour? Basically, at its core, your entire argument becomes ""I don't like those tropes [you clearly don't] and it annoys me when other people say positive things about those tropes [you were annoyed at people asking others to take the age of the series into consideration when judging its freshness], which is why I'm trying to encourage others to join me in disliking those tropes [you made this comment]"", at which point it becomes pretty much irrelevant to whatever comments you were referring to lol - -Anyway, hope you enjoy the series :)";False;False;;;;1610322080;;False;{};gitbs3q;False;t3_kuj1bm;False;False;t1_gisu0hb;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitbs3q/;1610365722;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Al-Pharazon;;;[];;;;text;t2_1s32gw1x;False;False;[];;People hype it precisely because the characters are not generic. Their desings can be, but appearances aside this is perhaps one of the Isekai with best character development. It's slow burn though, in 3 episodes you only see the seeds;False;False;;;;1610322270;;1610322767.0;{};gitc5t1;False;t3_kuj1bm;False;True;t1_git9b86;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitc5t1/;1610365938;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aohige_rd;;;[];;;;text;t2_ttrmj;False;False;[];;"Yeah the publisher is going all-in on this. - -To be fair, they can't really afford to mess this up. It's been highly anticipated for nearly a decade.";False;False;;;;1610322408;;False;{};gitcfxt;False;t3_kuj1bm;False;False;t1_gis8yct;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitcfxt/;1610366097;21;True;False;anime;t5_2qh22;;0;[]; -[];;;TheHeadPatter;;;[];;;;text;t2_5gsty4wo;False;False;[];;It was playing during the end credits.;False;False;;;;1610322566;;False;{};gitcrs9;False;t3_kuj1bm;False;True;t1_git74fd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitcrs9/;1610366281;3;True;False;anime;t5_2qh22;;0;[]; -[];;;random_throwaway0001;;;[];;;;text;t2_9lx2xvpv;False;False;[];;"Ask the people at Seven Seas Entertainment. The thing is unlike other Japanese medium like VNs and anime (where you have the Japanese speech alongside the localization) there is almost no overlap between people who read light novels translated and those who read them raw so publishers can do whatever they want without anyone noticing. Of course it's their product, and as long as the original publisher - Kadokawa agrees, they can change it as they want, but usually people notice these types of censorship and make a big deal out of it. Not with light novels. - -Personally I think changes like this can really affect how characters are viewed (and likely Seven Seas Entertainment wants people to like Paul and Rudeus). To me there is a big difference between Paul being a cheater and Paul being a cheater and a rapist. So those who've read the official translation might have a higher opinion of him.";False;False;;;;1610322661;;False;{};gitcyv8;False;t3_kuj1bm;False;True;t1_git9pdr;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitcyv8/;1610366395;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;That makes a lot more sense. It was really strange how luch time he spent on a limbo between the 2 worlds. Dying on the spot and instantly being reborn in the other world is usually how these type of series go.;False;False;;;;1610322696;;False;{};gitd1gg;False;t3_kuj1bm;False;True;t1_gita8ye;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitd1gg/;1610366435;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610322840;;False;{};gitdbzo;False;t3_kuj1bm;False;True;t1_gis7ohz;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitdbzo/;1610366607;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tppcrpg;;;[];;;;text;t2_yfuow;False;False;[];;need more pp;False;False;;;;1610322848;;False;{};gitdcn5;False;t3_kuj1bm;False;True;t1_git503d;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitdcn5/;1610366623;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Adealow;;;[];;;;text;t2_qpdjd;False;False;[];;Yeah that how he died, and tied closely how he was reincarnated very important plot, by changing it with died in ambulance the plot will not make sense.;False;False;;;;1610322916;;False;{};gitdhkv;False;t3_kuj1bm;False;True;t1_gitd1gg;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitdhkv/;1610366702;1;True;False;anime;t5_2qh22;;0;[]; -[];;;REAL_CONSENT_MATTERS;;;[];;;;text;t2_ftyr6;False;False;[];;"> Yeah, there seems to be a lot of people who claim MT is somehow to creator of all these tropes and shit, but that's just plain wrong. It was just utilizing tropes that were getting popular early on. -> -> - -it can be really confusing to tell what came first with web novels, light novels, manga, and anime versions of a story all being made at different times. - -i was talking about this with slime and spider recently - after some googling i determined that slime's web novel was in fact older, which means it's possible spider drew some inspiration from slime's initial premise (skill based monsters that spoiler, female monotone narrator announcing skills, etc). - -i don't actually know what the first modern monster isekai web novel was though or which ones got popular first, so it's impossible for me to figure out where these tropes originated or were first popularized.";False;False;;;;1610322931;;False;{};gitdin9;False;t3_kuj1bm;False;True;t1_gisbl46;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitdin9/;1610366720;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Calgar43;;;[];;;;text;t2_6l3r8;False;False;[];;Sure, but vehicle accidents are the leading cause of death of people pre-50 years old I think.;False;False;;;;1610322950;;False;{};gitdk3t;False;t3_kuj1bm;False;False;t1_gisj0fl;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitdk3t/;1610366744;24;True;False;anime;t5_2qh22;;0;[]; -[];;;LOTRfreak101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LOTRfreak101;light;text;t2_opd6l;False;False;[];;that fits a little too much. rudy and doge-san would get along too well.;False;False;;;;1610322955;;False;{};gitdkfw;False;t3_kuj1bm;False;True;t1_git717p;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitdkfw/;1610366749;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;I didn't read the LN nor manga, but him being on a limbo ever since he regained conciousness after he was hit is probably how they are going to explain that plot hole. Theh probably wanted to extend the scene lf him dying.;False;False;;;;1610323024;;False;{};gitdpn3;False;t3_kuj1bm;False;True;t1_gitdhkv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitdpn3/;1610366828;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Acara_;;;[];;;;text;t2_msz8n;False;False;[];;You are legit so wrong;False;False;;;;1610323240;;False;{};gite5ib;False;t3_kuj1bm;False;True;t1_gis9w96;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gite5ib/;1610367084;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kvicksilver;;;[];;;;text;t2_p8h0s;False;False;[];;Well, this seems like a really fun anime and the animation is gorgeous, looking forward to next week!;False;False;;;;1610323241;;False;{};gite5lh;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gite5lh/;1610367086;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Adealow;;;[];;;;text;t2_qpdjd;False;False;[];;hmm the reveal will be many episode later, but it will happen in this season because there is a clip of it on youtube.;False;False;;;;1610323313;;False;{};giteapn;False;t3_kuj1bm;False;True;t1_gitdpn3;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giteapn/;1610367168;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;fellowidkname;;;[];;;;text;t2_7sdmf582;False;False;[];;Was this episode leaked before and just got aired today?;False;False;;;;1610323318;;False;{};giteb2r;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giteb2r/;1610367174;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Sai;;AP;[];;http://www.anime-planet.com/users/Sai0/;dark;text;t2_k8fhr;False;False;[];;Damn, that was good.;False;False;;;;1610323446;;False;{};gitek94;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitek94/;1610367322;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610323487;;False;{};giten8p;False;t3_kuj1bm;False;True;t1_git7ozm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giten8p/;1610367369;7;True;False;anime;t5_2qh22;;0;[]; -[];;;YKSVOTRUGOY;;;[];;;;text;t2_7n5cxgqa;False;False;[];;I guess people were right saying it's isekai but good. Do we know the episode count? I know S2 is confirmed but it would be nice if it was 2 cour too.;False;False;;;;1610323500;;1610325082.0;{};giteo4y;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giteo4y/;1610367383;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Adealow;;;[];;;;text;t2_qpdjd;False;False;[];;But not reincarnation and the term isekai not yet popular with SAO. This anime and shield bro make huge wave in western webnovel.;False;False;;;;1610323503;;False;{};giteobw;False;t3_kuj1bm;False;True;t1_gisq7nb;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giteobw/;1610367386;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Al-Pharazon;;;[];;;;text;t2_1s32gw1x;False;False;[];;"There was a pre-release with chapter 1-2, but officially it started today. - -This thread has ""low"" karma and number of comments partly because of that, some people already discussed it there.";False;False;;;;1610323561;;False;{};gitesli;False;t3_kuj1bm;False;False;t1_giteb2r;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitesli/;1610367456;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ishtartravelscooter;;;[];;;;text;t2_4q44p1y5;False;False;[];;This makes no sense? Sao started in 2002 and this in 2012. The impact of this novel is so vastly overstated it’s unbelievable...;False;False;;;;1610323567;;False;{};gitet1e;False;t3_kuj1bm;False;True;t1_gisbynu;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitet1e/;1610367463;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KnightKal;;;[];;;;text;t2_pwr4duc;False;False;[];;it is not like healing magic is something that anyone can use or pay for, but that family just so happens to have a dedicated healer living in the house, so its all free.;False;False;;;;1610323620;;False;{};gitewqv;False;t3_kuj1bm;False;False;t1_gispfx2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitewqv/;1610367528;5;True;False;anime;t5_2qh22;;0;[]; -[];;;fellowidkname;;;[];;;;text;t2_7sdmf582;False;False;[];;Alrigh thanks for clarifying;False;False;;;;1610323649;;False;{};giteytn;False;t3_kuj1bm;False;True;t1_gitesli;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giteytn/;1610367560;1;True;False;anime;t5_2qh22;;0;[]; -[];;;A-Glitch-Gnome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/AGlitchGnome;light;text;t2_adirj;False;False;[];;i expect that to be the same for the next episode as well unfortunately. however if it keeps up this level of quality production and follows the story from the LN normally i can see it blowing up;False;False;;;;1610323805;;False;{};gitfa3i;False;t3_kuj1bm;False;False;t1_gitesli;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitfa3i/;1610367748;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Al-Pharazon;;;[];;;;text;t2_1s32gw1x;False;False;[];;No problem, hope you do enjoy it.;False;False;;;;1610323822;;False;{};gitfbck;False;t3_kuj1bm;False;True;t1_giteytn;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitfbck/;1610367769;0;True;False;anime;t5_2qh22;;0;[]; -[];;;KnightKal;;;[];;;;text;t2_pwr4duc;False;False;[];;"well it is one of the first popular Isekai from the decade of Isekai (when this type of fantasy become super popular). It defines a lot of templates and also covers the entire life of the MC. - -it also has a lot of the bad stuff that recent novels have dropped, like the template that MC must be a loser in life / NEET / fat virgin / etc. Now we have more normal backgrounds with teenager kids being summoned, or just any random person that can die and be isekai. Man it was bad in early 2010s lol, with each character worse than the other.";False;False;;;;1610323886;;False;{};gitfg0z;False;t3_kuj1bm;False;True;t1_gisbc8d;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitfg0z/;1610367847;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Android19samus;;;[];;;;text;t2_aqbu1;False;False;[];;"in that case I think I'll just wait until the season is over and watch it all at once. There's enough else to watch that I don't need to stomach waiting months for a ""slow burn"" to get going.";False;False;;;;1610323898;;False;{};gitfgv6;False;t3_kuj1bm;False;True;t1_gitc5t1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitfgv6/;1610367862;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Backha;;;[];;;;text;t2_ij8tx;False;False;[];;This doesn't cut as just doing justice to source material. This anime looks FRIGGING AMAZING!;False;False;;;;1610323903;;False;{};gitfh7a;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitfh7a/;1610367868;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Al-Pharazon;;;[];;;;text;t2_1s32gw1x;False;False;[];;I hope so, althought part of the problem today is that the thread came very late so people went there to comment. I suppose next time the pre-release thread might be more buried and maybe the real thread will come earlier;False;False;;;;1610323904;;False;{};gitfha2;False;t3_kuj1bm;False;True;t1_gitfa3i;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitfha2/;1610367869;3;True;False;anime;t5_2qh22;;0;[]; -[];;;A-Glitch-Gnome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/AGlitchGnome;light;text;t2_adirj;False;False;[];;yes true. it also doesn't help that the episode drops right before Attack on Titan lol;False;False;;;;1610323978;;False;{};gitfmvq;False;t3_kuj1bm;False;True;t1_gitfha2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitfmvq/;1610367960;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ishtartravelscooter;;;[];;;;text;t2_4q44p1y5;False;False;[];;Glad to see people agree. I heard good things years ago, but I’m very much unconvinced and disappointed. The spoilers I’ve read are even worse.;False;False;;;;1610323982;;False;{};gitfn5b;False;t3_kuj1bm;False;True;t1_gis7fg4;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitfn5b/;1610367966;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CuriousSnowman;;;[];;;;text;t2_1k7pm3v9;False;False;[];;Umm, him being a trash is pretty important to the story. I watch the pre-air episode and his backgroud story will appear in the next episode.;False;False;;;;1610323996;;False;{};gitfo5m;False;t3_kuj1bm;False;False;t1_git7obl;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitfo5m/;1610367982;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Al-Pharazon;;;[];;;;text;t2_1s32gw1x;False;False;[];;That is fair, hope you enjoy it by then.;False;False;;;;1610324038;;False;{};gitfr8w;False;t3_kuj1bm;False;False;t1_gitfgv6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitfr8w/;1610368032;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GibZwilla;;;[];;;;text;t2_3e1os9on;False;False;[];;Hmm, pretty sure it’s just a remark about the damage, not a deathflag.;False;False;;;;1610324071;;False;{};gitftr3;False;t3_kuj1bm;False;True;t1_gisipog;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitftr3/;1610368074;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KnightKal;;;[];;;;text;t2_pwr4duc;False;False;[];;considering the last time he left the house (after 20 years?) he kissed a trunk and died ... yeah he may be a little traumatized about going outside haha;False;False;;;;1610324083;;False;{};gitfulj;False;t3_kuj1bm;False;False;t1_git7ayn;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitfulj/;1610368088;40;True;False;anime;t5_2qh22;;0;[]; -[];;;Nitsua34;;;[];;;;text;t2_86av8j;False;False;[];;Oh fuck oh fuck oh fuck!!! lemme rephrase then im scared...why does this have more traction than skate the infinity?;False;True;;comment score below threshold;;1610324159;;False;{};gitg05j;False;t3_kuj1bm;False;True;t1_git79s7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitg05j/;1610368177;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;random_throwaway0001;;;[];;;;text;t2_9lx2xvpv;False;False;[];;"> If The Beginning After the End is based in this series then - -Turtle basically made TBATE a Mushoku Tensei if the MC wasn't a pervert, but a respectable person. Now in terms of actual plot and character writing Mushoku Tensei is leagues above TBATE but Art/Grey is definitely more likable.";False;False;;;;1610324161;;False;{};gitg0ac;False;t3_kuj1bm;False;True;t1_gitbep4;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitg0ac/;1610368179;0;True;False;anime;t5_2qh22;;0;[]; -[];;;KnightKal;;;[];;;;text;t2_pwr4duc;False;False;[];;"no MP bar, so he needs to count spells like you count bullets in a gun lol. - -One water ball, two water balls, three water balls ... yeah I am out.";False;False;;;;1610324171;;False;{};gitg13b;False;t3_kuj1bm;False;True;t1_gis5h59;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitg13b/;1610368191;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Arkaniux;;;[];;;;text;t2_scx9d;False;False;[];;"Truck driver adds another one to his kill count. - -3 minutes in and this nasty otaku is already horny for his own isekai mom (who is technically younger than him). This is gonna be a standard, I'm guessing. - -Oh nevermind, now he's sniffing hers or the maid's panties. Yikes. - -Gotta say though, this show already looks really pretty. The colors and effects are really easy on the eyes. - -**DAMN!** Papa is just going to town on Mama right there with the kid next door. - -""She looks like her bush hasn't grown in yet."" Oh god, they're really making Rudy seem unlikeable as fuck right now. That's not what your first impressions on a person should be, regardless of whether or not you're a shut-in with no social experience. Called her a loli, still wants to marry her. - -**Y A B E** - -Roxy healed a fucking tree. Well I'll be damned, I guess it technically counts as a living being.";False;False;;;;1610324246;;1610324633.0;{};gitg6qw;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitg6qw/;1610368284;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610324298;;False;{};gitgak2;False;t3_kuj1bm;False;True;t1_giten8p;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitgak2/;1610368348;4;True;False;anime;t5_2qh22;;0;[]; -[];;;CuriousSnowman;;;[];;;;text;t2_1k7pm3v9;False;False;[];;">This show would be really cool if the MC wasnt a 34 year old creepy NEET. - -Maybe, but I doubt it would be as impactful as the current version.";False;False;;;;1610324318;;False;{};gitgbzw;False;t3_kuj1bm;False;False;t1_gisqnc7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitgbzw/;1610368372;2;True;False;anime;t5_2qh22;;0;[]; -[];;;reading_potato;;;[];;;;text;t2_3xi7xrdz;False;False;[];;I think it was to make the introduction flow better.;False;False;;;;1610324390;;False;{};gitgh97;False;t3_kuj1bm;False;True;t1_gisaake;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitgh97/;1610368462;1;True;False;anime;t5_2qh22;;0;[]; -[];;;giasumaru;;;[];;;;text;t2_4xmpp;False;False;[];;"There's the story of Urashima Tarō and the Dragon Palace in the Sea. We're talking about wayyyyy back in the 8th century here. - -That's why people either don't refer to works older then SAO as isekais, or they refer to post-SAO works as modern isekais.";False;False;;;;1610324429;;False;{};gitgk2d;False;t3_kuj1bm;False;False;t1_gisx0pj;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitgk2d/;1610368508;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Alphonseisbest;;;[];;;;text;t2_11a15c;False;False;[];;HOOO BOI I GOT CHILLS!;False;False;;;;1610324550;;False;{};gitgt44;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitgt44/;1610368667;4;True;False;anime;t5_2qh22;;0;[]; -[];;;melongrip;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Dakotah;light;text;t2_gkrni;False;False;[];;Not OP and you’re right, but I think the point he/she was trying to make was that OPM S1 wasn’t so good because of Madhouse, it was the talent they were able to bring in from outside that made it stand out.;False;False;;;;1610324557;;False;{};gitgtly;False;t3_kuj1bm;False;False;t1_git3vim;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitgtly/;1610368675;8;True;False;anime;t5_2qh22;;0;[]; -[];;;reading_potato;;;[];;;;text;t2_3xi7xrdz;False;False;[];;It's from after the ending. If you already finished the story you should know what it is. Otherwise I'll not spoil.;False;False;;;;1610324590;;False;{};gitgw2r;False;t3_kuj1bm;False;True;t1_gisjaz5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitgw2r/;1610368717;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phoenix7240;;;[];;;;text;t2_112sk7;False;False;[];;the biggest theme of mushoku is watching rudeus redeem himself of his past sins and grow past being the gross human garbage that he was....not one fan will disagree with you about early story rudy being a disgusting git as that is the point.;False;False;;;;1610324606;;False;{};gitgx96;False;t3_kuj1bm;False;False;t1_gitg6qw;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitgx96/;1610368740;9;True;False;anime;t5_2qh22;;0;[]; -[];;;KnightKal;;;[];;;;text;t2_pwr4duc;False;False;[];;"he was reading normal fantasy, not isekai, which has rules like - -\- do not teach children magic (until they are at a certain age): it is like giving a loaded gun to a toddler. Would you think that is fine? - -\- magic is restricted to a certain group of people (like nobles), so kids with magic abilities are taken away from home. Think like Star Wars and the Jedi handle kids. - -\- and so on - -Isekai novels made magic and adventurer job more mainstream, altho we still have novels that restrict magic use. - -&#x200B; - -Imagine if it was not an adult in a toddler body, but just a kid there. And he decided to do an intermediary FIRE spell. Goodbye house. Probably goodbye MC too.";False;False;;;;1610324626;;False;{};gitgys8;False;t3_kuj1bm;False;False;t1_gis7mod;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitgys8/;1610368767;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Alphonseisbest;;;[];;;;text;t2_11a15c;False;False;[];;Fair, but that show was still an enjoyable watch none the less;False;False;;;;1610324726;;False;{};gith60x;False;t3_kuj1bm;False;True;t1_git9riq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gith60x/;1610368889;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SungBlue;;;[];;;;text;t2_4t5s3f;False;False;[];;A quick check on Wikipedia shows that The Wizard of Oz was adapted for a feature by Toho in 1982, and it wouldn't surprise me if there were earlier anime where the main character is transported to another world.;False;False;;;;1610324770;;False;{};gith992;False;t3_kuj1bm;False;False;t1_gisewxe;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gith992/;1610368947;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KnightKal;;;[];;;;text;t2_pwr4duc;False;False;[];;"well there is a big difference here. MC died, meaning his body was still there after the accident. While the two kids are missing, or in other words, their bodies were not found. Sounds like a summon instead of a trunk-san event. - -and you may be half right. Maybe he stolen the kids reincarnation event lol. But they are still missing, so something is still up with all that.";False;False;;;;1610324782;;False;{};githa1t;False;t3_kuj1bm;False;False;t1_gis5wo1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/githa1t/;1610368961;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Barnak8;;;[];;;;text;t2_dack2;False;False;[];;"Well, that's was fucking solide. When i saw the trailers, I thought it will not look like that in the real product. - -I wonder, the look remind me a little of Granblue season 1, with the strong black line defining the characters.";False;False;;;;1610324819;;False;{};githcpk;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/githcpk/;1610369005;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Zecias;;MAL a-amq;[];;http://myanimelist.net/animelist/Zecias;dark;text;t2_7ucex;False;False;[];;I thought about mentioning that one, but wouldn't it be considered more time travel than isekai? Actually now that I think about it, Inuyasha was the same... The story of inuyasha was probably inspired by it. But yeah, there's a difference between the isekai template that most people are referring to and other world stories in general. And I would argue that SAO doesn't fit in the isekai template that Mushoku created.;False;False;;;;1610324852;;False;{};githf3a;False;t3_kuj1bm;False;True;t1_gitgk2d;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/githf3a/;1610369046;1;True;False;anime;t5_2qh22;;0;[]; -[];;;reading_potato;;;[];;;;text;t2_3xi7xrdz;False;False;[];;Konosube was mostly environment that Mushoku created, basically it's parody of Mushoku's children and grandchildren.;False;False;;;;1610324866;;False;{};githg1z;False;t3_kuj1bm;False;True;t1_gis9oju;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/githg1z/;1610369061;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Redmon425;;;[];;;;text;t2_15ro6h;False;False;[];;"WOW! I can’t believe how much I enjoyed this. The animation looks really good. - -Love the VA of the MC, and he has good humor for someone reincarnated. - -The mom and dad are funny as well, and aren’t shy about getting it on lol. - -Looking forward to this one!";False;False;;;;1610324895;;False;{};githi6o;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/githi6o/;1610369098;5;True;False;anime;t5_2qh22;;0;[]; -[];;;KnightKal;;;[];;;;text;t2_pwr4duc;False;False;[];;"yeah he figured the incantation is like a formula for the steps, while he needs to do them manually in his head. He even mentioned that incantation = automation. - -interesting part about him doing his own thingy is flexibility. If he can manage to control it, that is. He wouldnt be restricted to know spells.";False;False;;;;1610324942;;False;{};githlkt;False;t3_kuj1bm;False;False;t1_giskk1q;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/githlkt/;1610369155;3;True;False;anime;t5_2qh22;;0;[]; -[];;;reading_potato;;;[];;;;text;t2_3xi7xrdz;False;False;[];;When you have healing magic there is not much need to wait.;False;False;;;;1610325006;;False;{};githq8v;False;t3_kuj1bm;False;True;t1_gis7ohz;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/githq8v/;1610369235;1;True;False;anime;t5_2qh22;;0;[]; -[];;;leviathonlx;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Leviathonlx;light;text;t2_8zce3;False;False;[];;"I'm not sure you realize what the medieval time period was actually like outside wrong tropes. I'll spoiler this just since I'm going to refer to what I spoiled above but [medieval history](/s ""First of all for your average person in the medieval period the average age of marriage was almost 20 if not the 20's for commoners hence childbirth occurred then since unsurprisingly people realized young childbirth was more deadly than it already was when young and they tended to not be as healthy and rich as the nobility. This was the case for nobility as well who, while they'd marry young, still did not have children till their late teens outside some known exceptions where the King was in a rush for a male heir. Also you'd have a hard time finding a medieval European country ok with polygamy (focusing on European since Japanese medieval settings are almost always based on medieval Europe) and in the end you're likely right I wouldn't survive the medieval period since I'd probably catch some disease and die or have my village destroyed in some noble squabble but luckily I live in the year 2021 and can judge a piece of fiction that does some really questionable things. "")";False;False;;;;1610325105;;1610325540.0;{};githxf9;False;t3_kuj1bm;False;True;t1_git8sjm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/githxf9/;1610369369;4;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610325120;;False;{};githyir;False;t3_kuj1bm;False;True;t1_gitgak2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/githyir/;1610369390;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KnightKal;;;[];;;;text;t2_pwr4duc;False;False;[];;web novel, but yeap, not the first, but one of the first big popular ones.;False;False;;;;1610325174;;False;{};giti2dc;False;t3_kuj1bm;False;True;t1_gis9zbk;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giti2dc/;1610369458;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tavorep;;;[];;;;text;t2_2ibemgpl;False;False;[];;"> It's very rare in isekais for kids to be punished for being able to cast magic. - -Obviously we know that. But how is the MC supposed to know that? It's a legitimate question under the circumstances.";False;False;;;;1610325213;;False;{};giti58t;False;t3_kuj1bm;False;True;t1_gis4z3u;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giti58t/;1610369515;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lev559;;;[];;;;text;t2_3jgmeqwb;False;False;[];;Personally I don't mind video game mechanics if they are implemented in a way that makes sense, but a lot of times in isekai you could take the stats and crap out and you would have the same story...which is just stupid.;False;False;;;;1610325289;;1610327219.0;{};gitias9;False;t3_kuj1bm;False;False;t1_gitg13b;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitias9/;1610369609;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Backha;;;[];;;;text;t2_ij8tx;False;False;[];;Gin is kinda jobless? And Gintama ended... so you might be onto something.;False;False;;;;1610325312;;False;{};giticew;False;t3_kuj1bm;False;False;t1_gis9vy2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giticew/;1610369637;5;True;False;anime;t5_2qh22;;0;[]; -[];;;reading_potato;;;[];;;;text;t2_3xi7xrdz;False;False;[];;There will be many sexual themes, but this is no ecchi.;False;False;;;;1610325351;;False;{};gitif7u;False;t3_kuj1bm;False;True;t1_git00nj;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitif7u/;1610369684;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DrewbieWanKenobie;;;[];;;;text;t2_8lei7;False;False;[];;I recently binged this manga and man I fucking loved it so much, been pretty excitied for this;False;False;;;;1610325396;;False;{};gitiihn;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitiihn/;1610369750;4;True;False;anime;t5_2qh22;;0;[]; -[];;;_Ridley;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/_Ridley_;light;text;t2_pmg6p5;False;False;[];;">MC is not some saint . He is just like most of us. We got our horny moments and we got our genuine moments. - -I guess, but I don't really like how anime equates ""horny"" with non-consensual stuff. There's appreciation, and then there's exploitation. - -I'm going to keep watching, but I hope the disgusting comments that show he doesn't think women are people are kept to a minimum.";False;False;;;;1610325416;;False;{};gitik0b;False;t3_kuj1bm;False;False;t1_giszwyu;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitik0b/;1610369781;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Adealow;;;[];;;;text;t2_qpdjd;False;False;[];;the term was used to make the series become more pretentious;False;False;;;;1610325435;;False;{};gitilc4;False;t3_kuj1bm;False;True;t1_git73pa;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitilc4/;1610369805;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Phnrcm;;;[];;;;text;t2_177f3x;False;False;[];;"""get better"" isn't a flip. It is a spectrum. During that 50 episode does Benji-kun try to get better, get better a little bit while still having crippling depression, and then fully get better in 51th episode? - -Or there is no sing of him getting better in 50th episode and sudden on the 51th he get better?";False;False;;;;1610325464;;False;{};gitinfx;False;t3_kuj1bm;False;False;t1_gism5aa;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitinfx/;1610369841;4;True;False;anime;t5_2qh22;;0;[]; -[];;;CuriousSnowman;;;[];;;;text;t2_1k7pm3v9;False;False;[];;The place where the MC dies, him not being dead on the spot is kinda plot hole since it's pretty integral to the twist that come out in the later part of the story.;False;False;;;;1610325495;;False;{};gitipmm;False;t3_kuj1bm;False;False;t1_gisjaz5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitipmm/;1610369880;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Adealow;;;[];;;;text;t2_qpdjd;False;False;[];;the pace is so fast, but episode 4 make more sense;False;False;;;;1610325523;;False;{};gitirrg;False;t3_kuj1bm;False;False;t1_giskxgt;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitirrg/;1610369918;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Backha;;;[];;;;text;t2_ij8tx;False;False;[];;Gonna be one of the instant classics!;False;False;;;;1610325554;;False;{};gitiu7g;False;t3_kuj1bm;False;True;t1_gis5mo2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitiu7g/;1610369961;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610325593;;False;{};gitix78;False;t3_kuj1bm;False;True;t1_gitirrg;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitix78/;1610370011;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610325602;;False;{};gitixvb;False;t3_kuj1bm;False;True;t1_gis659d;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitixvb/;1610370022;1;True;False;anime;t5_2qh22;;0;[]; -[];;;random_throwaway0001;;;[];;;;text;t2_9lx2xvpv;False;False;[];;Ah, that. I'm guessing Rifujin has another plan for it.;False;False;;;;1610325661;;False;{};gitj21b;False;t3_kuj1bm;False;False;t1_gitipmm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitj21b/;1610370105;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SungBlue;;;[];;;;text;t2_4t5s3f;False;False;[];;"It wouldn't surprise me if it was known in prehistoric times - it seems very obvious. - -From what I understand, mediaeval European doctors would have recommended bedrest for several weeks after giving birth.";False;False;;;;1610325753;;False;{};gitj8w9;False;t3_kuj1bm;False;True;t1_gispam0;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitj8w9/;1610370227;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Guillotine_Landlords;;;[];;;;text;t2_62ilgmjp;False;True;[];;"I'm surprised they are taking their time with the first two volumes. - - They are essentially a prologue for the first adventure, but hey, it's way more entertaining than the LN with the pretty animation and good VA. This shit is gonna rock when they get to the meat of it.";False;False;;;;1610325793;;False;{};gitjbuw;False;t3_kuj1bm;False;False;t1_gis4wdd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitjbuw/;1610370278;4;True;False;anime;t5_2qh22;;0;[]; -[];;;StillFreeAudioTwo;;;[];;;;text;t2_7lh6c;False;False;[];;"I know that I am late to the thread, but I can not hold in HOW MUCH MORE HYPE this episode has made me. I had began reading the light novels after stumbling on the manga adaptation and I was hooked. - -I really love what this episode gave. First off, the animation was stellar. I mean, the sword motions of Paul were great enough. However, the water spells were the highlight of the animation. I mean, it’s not often that water spells in anime really LOOK like a formation of water. It was so physical, and beautifully clear. Even the character animations themselves were pretty nice as well. I like how close to the original design the art style took, and how seamless the movement was overall. The setting, of course, was very beautiful for a slightly medieval homestead. However, I reallllly loved the animation used on objects. The healing scene with the tree? Loved it. My wife actually gasped “Oh damn! She can just fix it like that?” and I had a nice chuckle from it. - -Aside from that, this is such a great story to adapt as well. I mean, I think that the death scene of our protagonist from the previous world was a bit more abrupt than the novel. I do understand why they would omit the buildup, but I think it still translated fine here. Otherwise, getting to see the development of Rudy’s skills as a child brought back how hype I felt when reading the novels and watching his progression in learning water ball magic. It’s really intriguing to see a protagonist develop from scratch rather than begin powered-up. Even though Rudeus is a prodigy, there is going to be a lot of learning and experiences shown that I think will be very compelling. - -I even think the visual gags were pretty funny as well. I audibly laughed at quite a few scenes. I know some people won’t like Rudeus’s perverted antics, but I think that they’re toned down a bit here. While I personally didn’t mind most of the antics while reading, I can understand those who did. I thought the Roxy interactions were pretty funny as well, especially when she shot the tree with water. - -However, and I can not stress this enough, my favorite part of the adaptation is the NARRATION. The voice actor chosen is a good voice for Rudy, but it’s not the actor that’s selling the narration for me, it’s the incorporation of him. The thing about Mushoku Tensei, is that it is Rudeus’s story. We are fully aware of his thought process, decision making, whether right or wrong, throughout the entire story. Mushoku Tensei is always explicit in what Rudeus is thinking in situations, which is something I love in this story. I really feel the actions that Rudeus goes through, because he is always thinking it through. I think having the narrator be so prominent in the first episode sets the stage for the future episodes when decisions will be harder than whether or not to shoot a water ball using an incantation or not. It’s amazing how well a good incorporation of the narration gives the decisions in this show much more weight. - -Overall, I’m loving this first episode. I’m excited for the rest, and I can’t wait.";False;False;;;;1610325833;;False;{};gitjer6;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitjer6/;1610370330;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Adealow;;;[];;;;text;t2_qpdjd;False;False;[];;we will get our first holly artifact soon.;False;False;;;;1610325909;;False;{};gitjki3;False;t3_kuj1bm;False;False;t1_git18fu;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitjki3/;1610370437;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610326066;;False;{};gitjw0d;False;t3_kuj1bm;False;True;t1_gitix78;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitjw0d/;1610370642;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610326144;;False;{};gitk1r9;False;t3_kuj1bm;False;True;t1_gitjw0d;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitk1r9/;1610370739;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RadiumFusion;;;[];;;;text;t2_6xc47;False;False;[];;"I mean their original point was comparing how the ""studios were made"" for their respective series, which is completely false. And most anime are made mostly by freelancers, not in house staff. Like OPM S1, FGO Babylonia and Mob Psycho 100 are also really well animated series carried mostly by freelance staff. It's unusual for a studio to be created for a specific series with such strong staff.";False;False;;;;1610326168;;False;{};gitk3lq;False;t3_kuj1bm;False;True;t1_gitgtly;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitk3lq/;1610370772;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ReiahlTLI;;;[];;;;text;t2_inivd9e;False;False;[];;There are shows even older than Inuysaha that involve getting sent to another world/dimension. El-Hazard for one in the mid-90s and you can go back to Aura Battle Dunbine from 1983 for it too.;False;False;;;;1610326290;;False;{};gitkcz1;False;t3_kuj1bm;False;True;t1_gisx0pj;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitkcz1/;1610370934;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bokuwanivre;;;[];;;;text;t2_2c3rr01f;False;False;[];;Its kinda like the dragon ball of isekai y know? Like the others after it was inspired by it.;False;False;;;;1610326314;;False;{};gitketu;False;t3_kuj1bm;False;True;t1_gis9zbk;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitketu/;1610370968;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610326363;;False;{};gitkinf;False;t3_kuj1bm;False;True;t1_gitix78;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitkinf/;1610371035;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Eonwulf;;;[];;;;text;t2_fjaob;False;False;[];;I'm surprised by the number of people here who are anti perversion.;False;False;;;;1610326370;;False;{};gitkj5m;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitkj5m/;1610371043;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610326444;;False;{};gitkofs;False;t3_kuj1bm;False;True;t1_gisc5cq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitkofs/;1610371136;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;"I don't know where you're getting that information from because literally every textbook and online resource I've read in my life has said - -[Spoiler because of content we're talking about](/s ""the typical marriage age for commoners (particularly women) was in their teens, with only special circumstances pushing it into their twenties. I just tried to look it up now after reading your comment and the only places I could find stating people got married in their twenties are a couple of quora posts and a website called Internet Shakespeare. But the medieval period did last roughly 1000 years so the age of marriage could have raised in the latter half. But considering the time period, it's not exactly out of the norm that Sylphy and Rudy had a kid at 16/17 years old, Rudy's mom was only 19 when she got pregnant."")";False;False;;;;1610326454;;False;{};gitkp5c;False;t3_kuj1bm;False;True;t1_githxf9;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitkp5c/;1610371149;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;WickedDemiurge;;;[];;;;text;t2_h481n;False;False;[];;">That's part of why I love this series, no videogame mechanics. - -Honestly, like 90% of the time that's such a shit trope. I can forgive it in Kumo for ""Wall. Wall. Wall. Wall. Wall. Wall. Wall,"" but it usually makes the whole thing feel very artificial, and it's not like fantasy didn't have power-ups before people got isekai experience points.";False;False;;;;1610326464;;False;{};gitkpt7;False;t3_kuj1bm;False;False;t1_gis6wex;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitkpt7/;1610371160;14;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"You do realize that the Benji-kun series doesn't exist right? - -And the joke doesn't imply it's a switch flip, more that it just takes awhile for some shitty characters to seem less shitty.";False;False;;;;1610326467;;False;{};gitkq1y;False;t3_kuj1bm;False;True;t1_gitinfx;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitkq1y/;1610371165;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610326474;;False;{};gitkqjw;False;t3_kuj1bm;False;True;t1_gitkinf;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitkqjw/;1610371175;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hell-schwarz;;;[];;;;text;t2_z247q;False;False;[];;"As far as I am informed this was the LN that made isekais popular in the first place AND the origin of Truck-kun - -It just happened to get a really late adaption, that's all.";False;False;;;;1610326597;;False;{};gitkzj5;False;t3_kuj1bm;False;True;t1_gis5cl6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitkzj5/;1610371340;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610326598;;False;{};gitkzll;False;t3_kuj1bm;False;True;t1_gitk1r9;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitkzll/;1610371342;1;True;False;anime;t5_2qh22;;0;[]; -[];;;I_Smoke_Cardboards;;;[];;;;text;t2_xistv;False;False;[];;Yes. That’s mostly what I said.;False;False;;;;1610326642;;False;{};gitl2oi;False;t3_kuj1bm;False;True;t1_gitkzj5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitl2oi/;1610371402;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hell-schwarz;;;[];;;;text;t2_z247q;False;False;[];;Okay, so as far as I am informed this is THE Isekai, the one that established Truck-kun as a character. It's finally here.;False;False;;;;1610326716;;False;{};gitl7yu;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitl7yu/;1610371520;5;True;False;anime;t5_2qh22;;0;[]; -[];;;reading_potato;;;[];;;;text;t2_3xi7xrdz;False;False;[];; [**AniNews**](https://www.youtube.com/channel/UCchUOUW-eNmDfDqMS_AiZew) made a good video about mushoku and its relevance, today**.**;False;False;;;;1610326720;;False;{};gitl8ap;False;t3_kuj1bm;False;True;t1_gisbc8d;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitl8ap/;1610371525;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Guillotine_Landlords;;;[];;;;text;t2_62ilgmjp;False;True;[];;"It's clearer as it goes on but - -[LN](/s ""He has the memories of his old life, but he's not really a forty year old in a kids body. It's muddier than that. At some point he has dreams where he goes back to how he used to be before dying and he's disgusted with himself"")";False;False;;;;1610326735;;False;{};gitl9b1;False;t3_kuj1bm;False;True;t1_gisc5cq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitl9b1/;1610371544;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Krioniki;;;[];;;;text;t2_518nlfdl;False;False;[];;"Was just introduced to the series by the first episode. Looks like something I’ll definitely enjoy, especially if / when this guy grows up a bit, and quits being such a perv, lol. After that, though, I can see myself liking this, at least until a harem is inevitably introduced. - -But anyway, back to what I was saying, I really enjoyed this first episode. Had some great animation, music, and most importantly for me, worldbuilding. Can’t wait to see more of it! (Also probably gonna start reading the novels, lol.)";False;False;;;;1610326742;;False;{};gitl9tz;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitl9tz/;1610371553;3;True;False;anime;t5_2qh22;;0;[]; -[];;;hell-schwarz;;;[];;;;text;t2_z247q;False;False;[];;I probably replied to the wrong comment;False;False;;;;1610326938;;False;{};gitln9y;False;t3_kuj1bm;False;True;t1_gitl2oi;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitln9y/;1610371816;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lev559;;;[];;;;text;t2_3jgmeqwb;False;False;[];;Yup. While there were earlier Isekai, this is the LN that created the wave of copycat LN isekais...but it does it way better then the vast majority of them;False;False;;;;1610327057;;False;{};gitlvfa;False;t3_kuj1bm;False;True;t1_gis7fk0;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitlvfa/;1610371976;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cyclingkingsley;;;[];;;;text;t2_xuffz;False;False;[];;I'm half hoping that sometime and somewhere during this show, Haruhi will show up;False;False;;;;1610327101;;False;{};gitlyi1;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitlyi1/;1610372051;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fistful-of-Flan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Fistful-of-Flan;light;text;t2_4izmti5h;False;False;[];;"The attention to detail in this episode was great! Some of the little world building details like the Zenith saying a Millis prayer before eating and Paul reading the tale of Perugius to Rudy as a bedtime story were able to make it in. I loved how they showed Rudy's exploration of the house. The fast crawling was hilarious and the roundabout ways he'd clean up a spill or open up a chest had that feeling of childish ingenuity to them. I thought the way they showed how Lilia would always be at least somewhat aware of where Rudy was by having her be the one to turn her head when he'd scuddle by was a nice touch. Or how her and Zenith would occasionally spy on Rudy without him knowing. - -I've always loved the way Rudy got so into magic. I almost never pick magic focused classes in games, but I would immediately jump at using magic if I was in his situation... cause why wouldn't I? It's fuckin' magic. I do think that they probably could have squeezed in a short monologue about Rudy memorizing the feeling of mana flowing through the body while he was practicing the water spell. The animation for it was worked into the scene where he casts magic for the first time though and was a nice touch in and of itself. - -I think the way that they handled Rudy's pre-reincarnation backstory was smart. It honestly is a lot to take in at once, especially for first timers as it would be their first impression of him. As it is now, it should be clear that pre-reincarnation Rudy was, at the very least, a fat NEET in his mid 30's. It can easily be explained next episode. Sugibro being Rudy's inner voice also helps *a lot.* It's really hard to get pissed off at Gintoki after all. I always imagined he'd have a voice similar to someone like Legoshi from Beastars, but Sugita also fits well given Rudy's sense of humor and all the references he makes to otaku culture. - -The current pace is also fantastic. So many little things were packed in and it made the episode feel a lot longer than I expected.";False;False;;;;1610327161;;False;{};gitm2m8;False;t3_kuj1bm;False;False;t1_gis4wdd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitm2m8/;1610372127;13;True;False;anime;t5_2qh22;;0;[]; -[];;;mysistersacretin;;;[];;;;text;t2_6v57c;False;False;[];;"Kumo is a special case in that it has legitimate story reasons for the videogame mechanics and doesn't use it as a simple excuse for powerups. But I won't say anything more because I don't want to spoil anything. - -Otherwise I agree with you and it's usually a lazy writing trope. I much prefer regular fantasy, especially if the magic system is well thought-out.";False;False;;;;1610327178;;False;{};gitm3r3;False;t3_kuj1bm;False;False;t1_gitkpt7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitm3r3/;1610372147;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Necessary_Final;;;[];;;;text;t2_7aw4luqv;False;False;[];;Because it wasn't presented as a flaw but as something funny to watch that he does;False;False;;;;1610327227;;False;{};gitm737;False;t3_kuj1bm;False;True;t1_git5ab1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitm737/;1610372208;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lev559;;;[];;;;text;t2_3jgmeqwb;False;False;[];;"> As a side note: For someone who's an otaku that has thousands of LNs, why did he think that he was going to be sent off to an inquisition for casting magic? It's very rare in isekais for kids to be punished for being able to cast magic - -This story was written way back in 2012, which is way before the wave of trash isekai";False;False;;;;1610327272;;False;{};gitma4m;False;t3_kuj1bm;False;True;t1_gis4z3u;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitma4m/;1610372259;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CryptoParagon;;;[];;;;text;t2_4zl6iesz;False;False;[];;"Was so impressed by the very first scene, first image really set tone. I was getting hype for the rest of the season during every minute of the show. - -The personality of each character is impressive, the voice the action and each scene give them more depth. Don't know if it will hit Re: Zero, K-ON! and Bunny Senpai levels character development but here's hoping.";False;False;;;;1610327465;;False;{};gitmnha;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitmnha/;1610372495;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Lev559;;;[];;;;text;t2_3jgmeqwb;False;False;[];;"I once again would like to recommend that people go read the ""Roxy gets serious"" manga. It's frankly fantastic. I personally like it more then the original and I hope it gets an anime adaption.";False;False;;;;1610327466;;False;{};gitmnk8;False;t3_kuj1bm;False;False;t1_gis8y8c;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitmnk8/;1610372497;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Fistful-of-Flan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Fistful-of-Flan;light;text;t2_4izmti5h;False;False;[];;That scene of Zenith smiling and being unable to contain her excitement was the zenith of cuteness.;False;False;;;;1610327559;;False;{};gitmtw6;False;t3_kuj1bm;False;False;t1_gis62bq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitmtw6/;1610372615;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Lev559;;;[];;;;text;t2_3jgmeqwb;False;False;[];;"> particularly Roxy being kind of dumb - -She was dumb? In what way?";False;False;;;;1610327655;;False;{};gitn0fz;False;t3_kuj1bm;False;True;t1_gis7161;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitn0fz/;1610372739;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MithrilEcho;;;[];;;;text;t2_zyn38;False;False;[];;I was surprised, they truly did an amazing job.;False;False;;;;1610327689;;False;{};gitn2r9;False;t3_kuj1bm;False;True;t1_gis5mk6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitn2r9/;1610372780;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Phnrcm;;;[];;;;text;t2_177f3x;False;False;[];;">Also, Rudy seems to be unaffected but the loud noises of his parents having sex - -He is biological a child so his body doesn't have testosterone and erection yet.";False;False;;;;1610327791;;False;{};gitn9mh;False;t3_kuj1bm;False;False;t1_gisj4ce;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitn9mh/;1610372905;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Jasche7;;;[];;;;text;t2_pu1sf;False;False;[];;It was actually expected to be the opposite, where it's such a grand and unique story that fans thought the adaptation wouldn't do it justice. Looks like they put a lot of love into this adaptation which was encouraging to see, but the story won't be able to show off what it's really about until maybe halfway in this season. Hopefully it will be at least be entertaining for first-time viewers up until then.;False;False;;;;1610327828;;False;{};gitnc8j;False;t3_kuj1bm;False;False;t1_git9riq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitnc8j/;1610372951;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610327925;;False;{};gitnk6f;False;t3_kuj1bm;False;True;t1_giten8p;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitnk6f/;1610373087;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610327997;;False;{};gitnplj;False;t3_kuj1bm;False;True;t1_git83lh;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitnplj/;1610373184;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610328039;;False;{};gitnsn7;False;t3_kuj1bm;False;True;t1_gitfo5m;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitnsn7/;1610373238;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;reading_potato;;;[];;;;text;t2_3xi7xrdz;False;False;[];;"[That's actually](/s ""a biological characteristic of everyone related to Royal Family of that country, the closer to the Royal family, the worse are their sexual inclinations"")";False;False;;;;1610328137;;False;{};gitnzkv;False;t3_kuj1bm;False;False;t1_gis67yk;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitnzkv/;1610373358;6;True;False;anime;t5_2qh22;;0;[]; -[];;;AltairSetsuna989;;;[];;;;text;t2_5wkq2cor;False;False;[];;To see Roxy animated was a fulfilling scene. Now we wait for the others.;False;False;;;;1610328145;;False;{};gito04h;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gito04h/;1610373366;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jasche7;;;[];;;;text;t2_pu1sf;False;False;[];;Yes, this is a double edged sword. The adaptation is doing really well at toning down his problematic qualities so that audiences don't get turned away, but on the other hand it seriously hurts the character development. Right now Rudeus seems like a generic anime protagonist but he's supposed to be a piece of shit who doesn't treat other people like human beings due to completely lacking social skills, and that's what makes his interactions with other characters later so much more impactful.;False;False;;;;1610328209;;False;{};gito4iy;False;t3_kuj1bm;False;False;t1_gitm737;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gito4iy/;1610373446;10;True;False;anime;t5_2qh22;;0;[]; -[];;;nosorrynoyes;;;[];;;;text;t2_1gyhbufm;False;False;[];;It already is a classic, anime only people just need to realize that;False;False;;;;1610328299;;False;{};gitobtt;False;t3_kuj1bm;False;False;t1_gitiu7g;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitobtt/;1610373570;7;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;Going by the ~24 episode model it looks to be about 5 seasons worth of content.;False;False;;;;1610328398;;False;{};gitojh3;False;t3_kuj1bm;False;True;t1_gis9dud;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitojh3/;1610373728;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lev559;;;[];;;;text;t2_3jgmeqwb;False;False;[];;When people say grandfather of isekai, they mean they LN Trash Isekai boom that happened recently. Stuff like Kenja no Majo.;False;False;;;;1610328480;;False;{};gitopg2;False;t3_kuj1bm;False;True;t1_gisjui2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitopg2/;1610373836;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fistful-of-Flan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Fistful-of-Flan;light;text;t2_4izmti5h;False;False;[];;SAO is isekai but it fits under the mmorpg type that was popularized by shows like .hack//Sign.;False;False;;;;1610328533;;False;{};gitotft;False;t3_kuj1bm;False;True;t1_githf3a;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitotft/;1610373909;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Phnrcm;;;[];;;;text;t2_177f3x;False;False;[];;If Benji-kun doesn't exist then why do you think Rudy would be Benji-kun?;False;False;;;;1610328566;;False;{};gitow3n;False;t3_kuj1bm;False;False;t1_gitkq1y;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitow3n/;1610373958;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jasche7;;;[];;;;text;t2_pu1sf;False;False;[];;In the original, Rudeus's personality is much more disgusting. The adaptation toned it down greatly so that the audience could stomach it better. This won't be the end of it too, as a warning. Rudeus is supposed to be a piece of shit who doesn't treat people as human beings due to lacking social skills, but the appeal is that he'll come to meet a lot of people who are good influences on him and make a lot of mistakes that encourage him to become a better person. This is not clear from the first episode, as you could just write off Rudeus as a generic anime protagonist who never changes.;False;False;;;;1610328574;;False;{};gitowr3;False;t3_kuj1bm;False;True;t1_gitik0b;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitowr3/;1610373970;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jokuc;;;[];;;;text;t2_db0l8;False;False;[];;Eeehh.. not really. The studio was created as a collaboration between Studio White Fox and Egg Firm. So it's not really their first project, just their first project under the new name.;False;False;;;;1610328613;;False;{};gitozxs;False;t3_kuj1bm;False;True;t1_gis86mc;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitozxs/;1610374031;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Your_Typical_Weeb;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/YourTypicalWeeb;light;text;t2_4i9tc25;False;False;[];;What the hell, I thought I had Deja vu while watching the episode but remembered reading the manga. I never knew it was getting an anime adaptation, hope it turns out good as the manga or even better!;False;False;;;;1610328715;;False;{};gitp7t1;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitp7t1/;1610374170;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lev559;;;[];;;;text;t2_3jgmeqwb;False;False;[];;"> Im a spider so what? - -This is my favorite WN/LN ever and I hope the anime does it justice. The amount of twists/plot turns is great. First episode did pretty good.";False;False;;;;1610328762;;False;{};gitpbdh;False;t3_kuj1bm;False;True;t1_gis8iiu;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitpbdh/;1610374233;1;True;False;anime;t5_2qh22;;0;[]; -[];;;giasumaru;;;[];;;;text;t2_4xmpp;False;False;[];;I really like the scenes with Rudy and the Maid, since in the WN, IIRC, most of that wasn't actually touched on until ----------------- happened, after which we get the Maid perspective sidestory.;False;False;;;;1610329047;;False;{};gitpvzb;False;t3_kuj1bm;False;True;t1_gis4z3u;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitpvzb/;1610374606;1;True;False;anime;t5_2qh22;;0;[]; -[];;;larana1192;;MAL;[];;http://myanimelist.net/animelist/thefrog1192;dark;text;t2_p7lmo;False;False;[];;"a few years ago some guy did a research of Isekai MC's cause of death,and No.1 is ""unknown"",29.3%. 2nd is ""traffic accident(without truck)"",10.9%.3rd is ""traffic accident(with truck)"",it was 10.6%.";False;False;;;;1610329105;;False;{};gitpzy0;False;t3_kuj1bm;False;False;t1_gisj0fl;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitpzy0/;1610374677;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Master10K;;MAL;[];;http://myanimelist.net/profile/Master10K;dark;text;t2_794zx;False;False;[];;Far to many Isekai like to speedrun this early character development, because those authors just don't know how to make world building and family interactions enjoyable.;False;False;;;;1610329436;;False;{};gitqpid;False;t3_kuj1bm;False;False;t1_gis9qqm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitqpid/;1610375137;28;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610329614;;False;{};gitr3qs;False;t3_kuj1bm;False;True;t1_gitk1r9;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitr3qs/;1610375398;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610329796;;False;{};gitri25;False;t3_kuj1bm;False;True;t1_gitnplj;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitri25/;1610375658;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PotentialSuspect453;;;[];;;;text;t2_872fz37h;False;False;[];;I’ve watched episode 2 and Roxy and Rudy’s mom and dad are super horny dang.;False;False;;;;1610329816;;False;{};gitrjvz;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitrjvz/;1610375689;3;True;False;anime;t5_2qh22;;0;[]; -[];;;tedooo;;;[];;;;text;t2_i4le2;False;False;[];;Ah then guess it was something else and not what I was saying my bad. But yeah it wasn't working at the time.;False;False;;;;1610329820;;False;{};gitrk7m;False;t3_kuj1bm;False;True;t1_gisdjnp;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitrk7m/;1610375695;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Darkjetson01;;;[];;;;text;t2_cia6mw7;False;False;[];;I understood the reference. The Daily lives of High School Boys was way too funny. Sugita's character felt like the MC in that anime;False;False;;;;1610329917;;False;{};gitrsbm;False;t3_kuj1bm;False;False;t1_gishxlu;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitrsbm/;1610375845;6;True;False;anime;t5_2qh22;;0;[]; -[];;;mysistersacretin;;;[];;;;text;t2_6v57c;False;False;[];;It was an issue with my mobile app cutting off some of the spoiler tagging instructions. Thanks for pointing it out;False;False;;;;1610330115;;False;{};gits9f3;False;t3_kuj1bm;False;True;t1_gitrk7m;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gits9f3/;1610376152;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Backha;;;[];;;;text;t2_ij8tx;False;False;[];;I meant as anime. There are plenty of bad anime with great source materials.;False;False;;;;1610330172;;False;{};gitsdvp;False;t3_kuj1bm;False;True;t1_gitobtt;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitsdvp/;1610376234;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Master10K;;MAL;[];;http://myanimelist.net/profile/Master10K;dark;text;t2_794zx;False;False;[];;They didn't have to animate that, I can't help but feel that it's a homage to Gintoki.;False;False;;;;1610330216;;False;{};gitsh5k;False;t3_kuj1bm;False;True;t1_git0r41;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitsh5k/;1610376298;0;True;False;anime;t5_2qh22;;0;[]; -[];;;nosorrynoyes;;;[];;;;text;t2_1gyhbufm;False;False;[];;True;False;False;;;;1610330528;;False;{};gitt5dw;False;t3_kuj1bm;False;True;t1_gitsdvp;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitt5dw/;1610376749;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SeijoVangelta;;;[];;;;text;t2_pbrmz;False;False;[];;First chapter has a part of it that is kinda spoiler but the rest are not;False;False;;;;1610330739;;False;{};gittko0;False;t3_kuj1bm;False;True;t1_gitmnk8;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gittko0/;1610377024;2;True;False;anime;t5_2qh22;;0;[]; -[];;;melongrip;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Dakotah;light;text;t2_gkrni;False;False;[];;I mean yeah that’s what I said, I just think OP meant well and was more or less trying to express what you were saying, even though they were connections through the director, they were still hired and employed by him, as Animegamenerd said. I wasn’t replying to what Jstoru said.;False;False;;;;1610330899;;False;{};gittwc2;False;t3_kuj1bm;False;True;t1_gitk3lq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gittwc2/;1610377252;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aschentei;;;[];;;;text;t2_z1t0l;False;False;[];;"I cannot believe they got Gintoki to voice Rudeus' inner self...goddam I want more of his narration, I love his voice - -The magic visuals so far have been REALLY good, and I mean REALLY good. I was blown away by the visuals in Wandering Witch, but this one also has super crisp magic spells too (at least for the water one's we've seen). For some reason it seems refreshing to get a new studio's take on an isekai. I'm hyped, music and all too.";False;False;;;;1610330935;;False;{};gittz22;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gittz22/;1610377305;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610331079;;1610331416.0;{};gitu9m6;False;t3_kuj1bm;False;True;t1_gitnk6f;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitu9m6/;1610377500;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KnightKal;;;[];;;;text;t2_pwr4duc;False;False;[];;"it was a simplification that many authors use now to not have to explain power level, as most readers also play JRPG and thus are used to those numbers. - -but yeah, there are so many novels where the numbers make no sense at all that they are just mealiness or a bad distraction. Few litRPG actually use proper math.";False;False;;;;1610331079;;False;{};gitu9n3;False;t3_kuj1bm;False;False;t1_gitias9;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitu9n3/;1610377501;4;True;False;anime;t5_2qh22;;0;[]; -[];;;DaGilfish;;;[];;;;text;t2_elba5;False;False;[];;I love the light novels so I was really excited for this one;False;False;;;;1610331084;;False;{};gitua1c;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitua1c/;1610377508;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Katalinya;;;[];;;;text;t2_14aki7;False;False;[];;The instant he spoke I got so excited! I did look at the cast list and was so surprised to hear him. I can’t wait to hear him internal monologue for the whole ride especially since he won’t need to sync with the lips he can go as wild as he can with talking.;False;False;;;;1610331375;;False;{};gituv7n;False;t3_kuj1bm;False;True;t1_gis553v;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gituv7n/;1610377897;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Arkaniux;;;[];;;;text;t2_scx9d;False;False;[];;"Either there was something missing in the light novel or it didn't exist entirely but I feel like Rudeus saying his mom not turning him on isn't a mental status check but a physical one instead. - -He's a newborn kid, he physically CAN'T get turned on from her. He definitely got mentally turned on from her chest. - -I hope he gets past this garbage human being phase in the next 5 episodes or something. He's getting visibly older in that body so I **really** hope I won't see him wearing panties on his face again when he's like 16.";False;False;;;;1610331414;;False;{};gituya7;False;t3_kuj1bm;False;True;t1_gitgx96;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gituya7/;1610377952;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mochachiiino;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://twitter.com/Mochachiiino;dark;text;t2_dnn0k;False;False;[];;it has to be;False;False;;;;1610331417;;False;{};gituyj4;False;t3_kuj1bm;False;True;t1_gitsh5k;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gituyj4/;1610377956;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Rokusi;;;[];;;;text;t2_4cnt8;False;False;[];;I just assumed he was talking about the bait and switch when all those girls were fangirling over his sword practice. I know I certainly thought the mom had tossed the water and not Rudy.;False;False;;;;1610331562;;1610331945.0;{};gitvae8;False;t3_kuj1bm;False;False;t1_git2knj;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitvae8/;1610378185;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Rokusi;;;[];;;;text;t2_4cnt8;False;False;[];;The mom was apparently a healing-magic-using adventurer, so she may have even just healed herself.;False;False;;;;1610331658;;False;{};gitvhjy;False;t3_kuj1bm;False;False;t1_gitewqv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitvhjy/;1610378321;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Lev559;;;[];;;;text;t2_3jgmeqwb;False;False;[];;Oh ya, forgot about that...the first couple pages are massive spoilers for the original story.;False;False;;;;1610331720;;False;{};gitvm1d;False;t3_kuj1bm;False;True;t1_gittko0;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitvm1d/;1610378401;3;True;False;anime;t5_2qh22;;0;[]; -[];;;VPLGD;;MAL;[];;myanimelist.net/profile/Pdev0797;dark;text;t2_pecn2;False;False;[];;"Magnificent! - -Animation was gorgeous. Voice acting was brilliant. Great exposition. - -10/10 adaptation does not disappoint.";False;False;;;;1610331907;;False;{};gitvzmb;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitvzmb/;1610378657;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Suzoku;;;[];;;;text;t2_6qoiz;False;False;[];;Still can't believe this got animated, literally smiling ear to ear throughout the whole episode. Blessed;False;False;;;;1610332265;;False;{};gitwpbj;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitwpbj/;1610379135;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RadiumFusion;;;[];;;;text;t2_6xc47;False;False;[];;Lol I just now noticed I was replying to a different person (animegamenerd) the second post, thought it was the same person until your comment. My bad;False;False;;;;1610332287;;False;{};gitwquq;False;t3_kuj1bm;False;True;t1_gittwc2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitwquq/;1610379165;1;True;False;anime;t5_2qh22;;0;[]; -[];;;melongrip;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Dakotah;light;text;t2_gkrni;False;False;[];;Nah all good! Thought some confusion might have occurred.;False;False;;;;1610332322;;False;{};gitwtb1;False;t3_kuj1bm;False;True;t1_gitwquq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitwtb1/;1610379210;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UsaraDark2014;;;[];;;;text;t2_fjlk7;False;False;[];;That's implying he had good parts to start off with.;False;False;;;;1610332333;;False;{};gitwu3b;False;t3_kuj1bm;False;False;t1_gita0zi;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitwu3b/;1610379223;10;True;False;anime;t5_2qh22;;0;[]; -[];;;fridchikn24;;;[];;;;text;t2_b0c3x;False;False;[];;Yes, it is our fish eyed lord Gintoki;False;False;;;;1610332618;;False;{};gitxeh6;False;t3_kuj1bm;False;False;t1_gis62u2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitxeh6/;1610379601;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fridchikn24;;;[];;;;text;t2_b0c3x;False;False;[];;"> due to being a chronic shut-in in his past life. - -So THAT'S why he was so fidgety";False;False;;;;1610332689;;False;{};gitxjsh;False;t3_kuj1bm;False;False;t1_gis7gyy;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitxjsh/;1610379699;5;True;False;anime;t5_2qh22;;0;[]; -[];;;fridchikn24;;;[];;;;text;t2_b0c3x;False;False;[];;"> The ReZero author has been fanboying on Twitter throughout his watch of the episode and I fucking love it so much - -Now I'm worried it'll get dark as shit.";False;False;;;;1610332758;;False;{};gitxov7;False;t3_kuj1bm;False;True;t1_gis5cl6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitxov7/;1610379798;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fridchikn24;;;[];;;;text;t2_b0c3x;False;False;[];;"> why did he think that he was going to be sent off to an inquisition for casting magic? -> It's very rare in isekais for kids to be punished for being able to cast magic. - -BECAUSE NO ONE EXPECTS THE SPANISH INQUISITION!!!!";False;False;;;;1610332852;;False;{};gitxvdz;False;t3_kuj1bm;False;True;t1_gis4z3u;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitxvdz/;1610379923;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610332903;;False;{};gitxyxe;False;t3_kuj1bm;False;True;t1_gisimgt;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitxyxe/;1610379992;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KnightKal;;;[];;;;text;t2_pwr4duc;False;False;[];;Thus why I said they so happen to have a healer in the house ... meaning, herself.;False;False;;;;1610332905;;False;{};gitxz2h;False;t3_kuj1bm;False;True;t1_gitvhjy;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitxz2h/;1610379995;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SpikeRosered;;;[];;;;text;t2_9mwt7;False;False;[];;"The MC comes off as a bit of a scumbag loser, but I really like the last line where it seems the show will be about him trying to learn how to *NOT* be a scumbag loser. - -It also helps to learn that this story came out before a lot of modern isekai because right off the bat it comes off as very derivative. But it looks like it's actually the other way around.";False;False;;;;1610333024;;False;{};gity7bf;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gity7bf/;1610380152;4;True;False;anime;t5_2qh22;;0;[]; -[];;;hsm4ever10;;;[];;;;text;t2_qixxf;False;False;[];;I didn't expect much going into this but this family is surprisingly wholesome;False;False;;;;1610333029;;False;{};gity7oq;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gity7oq/;1610380159;5;True;False;anime;t5_2qh22;;0;[]; -[];;;slimes007;;;[];;;;text;t2_tgoqs;False;False;[];;I would very much like to learn what else was censored if you have time to make a list. Best place to post it would probably be r/LightNovels.;False;False;;;;1610333148;;False;{};gityg2c;False;t3_kuj1bm;False;True;t1_git8p55;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gityg2c/;1610380320;2;True;False;anime;t5_2qh22;;0;[]; -[];;;I_Smoke_Cardboards;;;[];;;;text;t2_xistv;False;False;[];;Let’s be honest, their generation of isekais are pretty fucking dark;False;False;;;;1610333200;;False;{};gityjyb;False;t3_kuj1bm;False;False;t1_gitxov7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gityjyb/;1610380390;4;True;False;anime;t5_2qh22;;0;[]; -[];;;I_Smoke_Cardboards;;;[];;;;text;t2_xistv;False;False;[];;Well, you could do it after the season ends. It’ll be a looong read though;False;False;;;;1610333254;;False;{};gityo1x;False;t3_kuj1bm;False;True;t1_git2zvq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gityo1x/;1610380465;2;True;False;anime;t5_2qh22;;0;[]; -[];;;I_Smoke_Cardboards;;;[];;;;text;t2_xistv;False;False;[];;Like the other comment said they’re quite similar to the point where they just put the Light Novel illustrations over texts from the Web Novel;False;False;;;;1610333345;;False;{};gityurr;False;t3_kuj1bm;False;True;t1_gisj7qe;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gityurr/;1610380594;2;True;False;anime;t5_2qh22;;0;[]; -[];;;yourheartmelts;;;[];;;;text;t2_lbrhx;False;False;[];;Isekai episode 01 done right, hope that it will continue this flow;False;False;;;;1610333637;;False;{};gitzfgx;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gitzfgx/;1610381015;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Deleeson;;;[];;;;text;t2_5xaz4btz;False;False;[];;sick ass first episode, this better keep up;False;False;;;;1610333935;;False;{};giu00vp;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu00vp/;1610381426;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;Nice to know, thanks for clarifying. I saw WF on the credits but I thought it was an outsource, now I know what it meant;False;False;;;;1610334133;;False;{};giu0ee8;False;t3_kuj1bm;False;True;t1_gitozxs;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu0ee8/;1610381707;1;True;False;anime;t5_2qh22;;0;[]; -[];;;secret_tsukasa;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/Endrance88;dark;text;t2_l06vg;False;False;[];;Is it me or is this isekai gold and not isekai trash?;False;False;;;;1610334182;;False;{};giu0hq9;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu0hq9/;1610381771;3;True;False;anime;t5_2qh22;;0;[]; -[];;;secret_tsukasa;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/Endrance88;dark;text;t2_l06vg;False;False;[];;What studio is it?;False;False;;;;1610334235;;False;{};giu0l7y;False;t3_kuj1bm;False;True;t1_gis86mc;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu0l7y/;1610381851;1;True;False;anime;t5_2qh22;;0;[]; -[];;;larvyde;;;[];;;;text;t2_60zt3;False;False;[];;She isn't, just a klutz...;False;False;;;;1610334452;;False;{};giu1016;False;t3_kuj1bm;False;True;t1_gitn0fz;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu1016/;1610382145;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;Studio Bind, as another person commented, it looks like its a collaboration studio between WhiteFox and EggFirm;False;False;;;;1610334489;;False;{};giu12jq;False;t3_kuj1bm;False;True;t1_giu0l7y;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu12jq/;1610382193;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kaloskatoa;;;[];;;;text;t2_cf53f;False;False;[];;It takes a long time, since this history is about him growing up and spans his whole life. I think you are going to like it;False;False;;;;1610334989;;False;{};giu1zjv;False;t3_kuj1bm;False;True;t1_gita0zi;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu1zjv/;1610382851;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AcidReign999;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_1vlicrk2;False;False;[];;Ikr;False;False;;;;1610335001;;False;{};giu20e7;False;t3_kuj1bm;False;True;t1_git44bg;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu20e7/;1610382869;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RCRDC;;;[];;;;text;t2_vrwyr;False;True;[];;"Lmao this was amazing. Nevermind the great comedic moments, but the animation, character and sound design was on point. The sound when he made that big water ball fly through the sky.. holy shit. - - -So this season is not only packed with absolute top notch sequels, but also great newcomers.";False;False;;;;1610335052;;False;{};giu23qu;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu23qu/;1610382931;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RCRDC;;;[];;;;text;t2_vrwyr;False;True;[];;Instantly recognized the voice, great VA;False;False;;;;1610335178;;False;{};giu2caw;False;t3_kuj1bm;False;True;t1_gis81xn;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu2caw/;1610383108;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeoGiacometti;;;[];;;;text;t2_13n8qv;False;False;[];;I'm waiting for the isekai where mc dies of a heart attack while beating it;False;False;;;;1610335245;;False;{};giu2gsx;False;t3_kuj1bm;False;True;t1_gisj0fl;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu2gsx/;1610383208;3;True;False;anime;t5_2qh22;;0;[]; -[];;;messem10;;;[];;;;text;t2_6pcwi;False;False;[];;Also, at this point we've seen the isekai truck trope so many times, they glazed over it to draw people into the world that he ends up in.;False;False;;;;1610335353;;False;{};giu2ocw;False;t3_kuj1bm;False;True;t1_gis869a;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu2ocw/;1610383368;2;True;False;anime;t5_2qh22;;0;[]; -[];;;random_throwaway0001;;;[];;;;text;t2_9lx2xvpv;False;False;[];;I'll make sure to post it there as well.;False;False;;;;1610335474;;False;{};giu2wsx;False;t3_kuj1bm;False;True;t1_gityg2c;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu2wsx/;1610383534;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HaThatsFunnyRight;;;[];;;;text;t2_16z4wk;False;False;[];;It's gold. This is really really good. And that's coming from a guy with high standards for anime, I fuckin love it!;False;False;;;;1610335665;;False;{};giu39v5;False;t3_kuj1bm;False;True;t1_giu0hq9;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu39v5/;1610383798;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HaThatsFunnyRight;;;[];;;;text;t2_16z4wk;False;False;[];;Roxy 10/10 needs an OVA after this season.;False;False;;;;1610335701;;False;{};giu3c9h;False;t3_kuj1bm;False;False;t1_gitrjvz;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu3c9h/;1610383846;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Considered_Dissent;;;[];;;;text;t2_3ri9v346;False;False;[];;"Not to mention that they are an ""untimely"" death as opposed to say a heart attack or fever, etc so more narratively fitting that they should get a ""second chance"". - -Not to mention that it's external to the person (vs suicide), more impersonal/less graphic (vs guns and weapons) and gives an opportunity for heroicism (being hit saving someone else). - -Also ""truck-kun"" is much older than this - for example Yu Yu Hakusho way back in 1990 started their story with ""car-kun"" and I wouldnt be surprised if there are earlier examples than that.";False;False;;;;1610335835;;False;{};giu3lgk;False;t3_kuj1bm;False;False;t1_gitdk3t;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu3lgk/;1610384028;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Hulkkis;;;[];;;;text;t2_98qda;False;False;[];;I agree, Spider Isekai is pretty damn good;False;False;;;;1610335979;;False;{};giu3vdf;False;t3_kuj1bm;False;True;t1_gisapiv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu3vdf/;1610384242;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610336062;;False;{};giu40xf;False;t3_kuj1bm;False;True;t1_gis58tp;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu40xf/;1610384352;0;True;False;anime;t5_2qh22;;0;[]; -[];;;shinzheru;;;[];;;;text;t2_o5n8r;False;False;[];;"Madoka Magica asked the question""Why are little girls being made to fight in a war which has little to do with them?""";False;False;;;;1610336299;;False;{};giu4gs4;False;t3_kuj1bm;False;True;t1_gitilc4;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu4gs4/;1610384698;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DRK-SHDW;;;[];;;;text;t2_18tf5kz1;False;False;[];;I don't know why anyone who doesn't enjoy tropes would watch an isekai in the first place lol;False;False;;;;1610337033;;False;{};giu5vvx;False;t3_kuj1bm;False;True;t1_gis5cl6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu5vvx/;1610385765;2;True;False;anime;t5_2qh22;;0;[]; -[];;;perfectbluu;;MAL;[];;https://myanimelist.net/profile/MoghyBear;dark;text;t2_12b79d;False;False;[];;"I've become desensitized to isekai tropes over the years, but this episode kept surprising me without being fundamentally different. - -First, there was the language itself. In so many isekais, everyone in the new world just happens to speak japanese, despite being some sort of medieval European-esque fantasy land. Here it's a real barrier to him, and it takes him years to fully figure it out. - -I've also come to expect that isekai MCs already get the premise and can get to action right away. Cautious Hero even jokes about this: ""I always reincarnate an otaku from Japan because they already get it"". It isn't for a couple years that he realizes he isn't on Earth and there is the existence of magic. - -The magic was one of my favorite parts of this episode. You can really see how much thought was put into this system. Most magic systems don't go farther than ""visualizing"", but here it showed an order to the attributes! - -I'm really excited for the series.";False;False;;;;1610337210;;False;{};giu67x7;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu67x7/;1610385991;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Seileach;;;[];;;;text;t2_tkuf6;False;False;[];;"There's the princess that [did the thing](/s ""was accidentally severely wounded and almost got killed by her own bodyguard because she tried to sexually assault her in her sleep"").";False;False;;;;1610337221;;False;{};giu68nb;False;t3_kuj1bm;False;False;t1_gitnzkv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu68nb/;1610386004;5;True;False;anime;t5_2qh22;;0;[]; -[];;;raine_lane;;;[];;;;text;t2_ntju8;False;False;[];;This is the time where truck-kun applied as isekai transporter in Japan;False;False;;;;1610337230;;False;{};giu6986;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu6986/;1610386015;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;"Me: Damn that was really freakin' good. I was so sad when the credits played. I wanted more! - -Credits: *Studio White Fox* - -Me: *A Re:Zero Fanatic* OH MY GOD!!!!!";False;False;;;;1610337451;;False;{};giu6ozv;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu6ozv/;1610386307;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RarestProGamerr;;;[];;;;text;t2_zq3al;False;False;[];;"Man, does it feel good to see the first light novel you read long time ago get an anime adaption and BOI, the animation and artwork is top notch, pure eye candy and the fact that MC's voiced by Gintoki's VA <3 - - --Although, i kind of feel bad for the studio. It is their first anime and it clearly looks like they went all out, everything is beautifully hand-drawn and the animation is so fluid but it is little too late. Hundreds of isekai anime have come and gone since the peak popularity of Mushoku Tensei and the story for the most part is your MC who died and reincarnated into a fantasy world and becomes OP and gets harem. So it will turn away a lot of the people and i don't really see it being popular outside of Japan which should be more than enough if it is Popular there.";False;False;;;;1610337454;;False;{};giu6p75;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu6p75/;1610386311;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ultranoobian;;;[];;;;text;t2_7w85m;False;False;[];;"It's okay, Truck-kun can't hurt him here..... - -But Carriage-ojisan can!";False;False;;;;1610337766;;False;{};giu7av1;False;t3_kuj1bm;False;False;t1_gitfulj;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu7av1/;1610386745;20;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;"This is a brave new trail. - -Unless I've just missed out.";False;False;;;;1610337901;;False;{};giu7k5k;False;t3_kuj1bm;False;True;t1_git0s7m;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu7k5k/;1610386944;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GreenSquishy;;;[];;;;text;t2_9axurs58;False;False;[];;the first episode was already subbed like over a week ago. why'd it take people so long to jump on the train?;False;False;;;;1610338355;;False;{};giu8eys;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu8eys/;1610387612;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Considered_Dissent;;;[];;;;text;t2_3ri9v346;False;False;[];;"> but it requires you to sail the seas - -*Adjusting eyepatch* - -Why I never dear sir!! How could you impugn my honor as an anime connoisseur! - -*Put hand over parrot's beak*";False;False;;;;1610338913;;False;{};giu9fo7;False;t3_kuj1bm;False;True;t1_gis82ho;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu9fo7/;1610388323;1;True;False;anime;t5_2qh22;;0;[]; -[];;;scot911;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/scot911;light;text;t2_e6v5y;False;False;[];;"> you can pray to our sacred artifact. - -... It's panties like in Monogatari with Arararagi and Hanekawa's panties isn't it?";False;False;;;;1610339066;;False;{};giu9qhp;False;t3_kuj1bm;False;False;t1_git18fu;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giu9qhp/;1610388552;7;True;False;anime;t5_2qh22;;0;[]; -[];;;terryaki510;;MAL;[];;https://myanimelist.net/animelist/terryaki510;dark;text;t2_dcips;False;False;[];;"Tropes aren't inherently bad or good, sure. But they do have subjective value that is separate from how overused or stale they are. - -If one finds jokes about groping women to be distasteful, telling them that ""this is the first anime to make jokes about groping women"" is unlikely to make a significant impact on the experience of viewing the show. - -The same holds true even if you're a huge proponent of fanservice. If you like seeing panty shots and cleavage, knowing that this was the series that made those things a genre staple is not going to have much of an impact on how you experience those moments. - -> Are you seriously telling me that you judge the sexism in a piece of literature from 50 years ago to the same standards that you use to judge such a work that was created last year? - -No, I'm not. ""Excuse"" was an inaccurate choice of words on my part. I recently was reading a Lovecraft story rife with usage of the N-word. I think the usage of the word is *excusable* given the time period in which the story was written. However, it was still uncomfortable to read. That's similar to how I feel about some of the moments in this show. Excusable, but uncomfortable to sit through nonetheless. - -Look man, I liked this episode on balance. The magic system is already one of the best that I've seen in any series and I'm excited to learn more about it. I don't get where you got the impression that I'm making a rallying cry to get this show cancelled. I made my original comment because I saw people using ""this show is the progenitor of many tropes"" as a means of preempting/mitigating criticism of those tropes, and I think these people are barking up the wrong tree. If I find it uncomfortable to watch a 34-year-old man sniffing dirty panties, where this show fits in the chronology of the Isekai genre is going to have little bearing on my discomfort.";False;False;;;;1610339228;;1610339800.0;{};giua1b4;False;t3_kuj1bm;False;True;t1_gitbs3q;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giua1b4/;1610388780;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tedooo;;;[];;;;text;t2_i4le2;False;False;[];;"Ah. -No problemo.";False;False;;;;1610339399;;False;{};giuaco7;False;t3_kuj1bm;False;True;t1_gits9f3;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuaco7/;1610389019;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Azure_chan;;MAL;[];;https://myanimelist.net/animelist/TheAzure256;dark;text;t2_yfzbw;False;False;[];;Clearly you haven't heard about [this anime](https://myanimelist.net/anime/40750/Kaifuku_Jutsushi_no_Yarinaoshi) yet;False;False;;;;1610339488;;False;{};giuaii1;False;t3_kuj1bm;False;False;t1_giu7k5k;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuaii1/;1610389128;4;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;Yeah, I was referring to her being clear best girl while the others were lusting after Paul. I hope it's not a spoiler...;False;False;;;;1610339666;;False;{};giuatse;False;t3_kuj1bm;False;False;t1_gitvae8;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuatse/;1610389351;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SyfaOmnis;;;[];;;;text;t2_kh53j;False;False;[];;Eh, he's got motivation and he's resolved to turn over a new leaf by the end of the episode. As far as him being a perv, that's not necessarily *horrible* as long as he isn't well, horrible about it.;False;False;;;;1610339964;;False;{};giubcyw;False;t3_kuj1bm;False;False;t1_gita0zi;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giubcyw/;1610389723;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Considered_Dissent;;;[];;;;text;t2_3ri9v346;False;False;[];;"Im going to call this show ""A bowl of ramen at a 5-star restaurant"" - it's something we've all seen 100 times before, but boy is it done perfectly!";False;False;;;;1610340082;;False;{};giublbs;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giublbs/;1610389882;9;True;False;anime;t5_2qh22;;0;[]; -[];;;turkeygiant;;;[];;;;text;t2_4tzum;False;False;[];;If you ever get a chance to read Isaac Asimov's Foundation novels they read like a like a laundry list of sci-fi and space opera tropes...until you realize he started writing them in 1951 and you would be very hard pressed to find anybody using those tropes before him.;False;False;;;;1610340512;;False;{};giucc0h;False;t3_kuj1bm;False;False;t1_gisdehx;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giucc0h/;1610390472;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sausages_;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/sausages;light;text;t2_6uv87;False;False;[];;What wow was not expecting this quality;False;False;;;;1610340604;;False;{};giuchl4;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuchl4/;1610390579;3;True;False;anime;t5_2qh22;;0;[]; -[];;;thblckjkr;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/thblckjkr;light;text;t2_2v4yfnte;False;False;[];;I just watched the first 5 seconds before posting this comment. And damn, i never expected an anime to hook me so bad at the first seconds.;False;False;;;;1610340608;;False;{};giuchtt;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuchtt/;1610390584;2;True;False;anime;t5_2qh22;;0;[]; -[];;;N1gHtMaRe99;;;[];;;;text;t2_4hm66djz;False;False;[];;I was listing trash isekai;False;False;;;;1610340719;;False;{};giuco9t;False;t3_kuj1bm;False;True;t1_gisq7nb;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuco9t/;1610390705;1;True;False;anime;t5_2qh22;;0;[]; -[];;;killerrin;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/killerrin;light;text;t2_93jfp;False;False;[];;Pretty much confirms the wife is just as horny as the husband. Or the sex is just that good that it warranted healing magic and round 2 immediately after birth.;False;False;;;;1610340850;;False;{};giucw8f;False;t3_kuj1bm;False;False;t1_gitvhjy;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giucw8f/;1610390861;10;True;False;anime;t5_2qh22;;0;[]; -[];;;phoenix7240;;;[];;;;text;t2_112sk7;False;False;[];;"i apologize for this being vague but this is public and i dont want to ruin things for you or others. - - -first does he stop being a pervert?: no he never truly and completely gets rid of it HOWEVER - -does he stop being a weird creepy human trash gremlin who thinks its ok to do and think the things he did in this episode?: yes yes he does. im not going to promise you it happens fast but i can promise you that your hypothetical panties on head at teen+ will not be in the realm of possibility. - - -i honestly dont remember most of the early childhood mental advancements he makes since its been so long since i read that section of the books - -im going to start a reread of the books tonight because im feeling nostalgic but i wont be starting from the beginning im skipping to volume 10 as thats where i really think mushoku starts fulfill on its early story promises.. well its actually ""starts"" at like 6-7 but the manga is at that point so im pretty fresh on that... -oops sorry i started rambling";False;False;;;;1610340996;;False;{};giud4rp;False;t3_kuj1bm;False;True;t1_gituya7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giud4rp/;1610391033;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610341242;;False;{};giudiof;False;t3_kuj1bm;False;True;t1_gitri25;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giudiof/;1610391306;0;True;False;anime;t5_2qh22;;0;[]; -[];;;CuriousSnowman;;;[];;;;text;t2_1k7pm3v9;False;False;[];;That's not possible since the reveal happened at the end of the novel, specifically at the epilogue. There's no way they would be able to show it in this season.;False;False;;;;1610341446;;False;{};giuducd;False;t3_kuj1bm;False;True;t1_giteapn;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuducd/;1610391530;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mami-kouga;;;[];;;;text;t2_rdte2zs;False;False;[];;Maybe dumb is the wrong word (though I tend to use it as a catch all these days), I guess kind of a disaster? Insulting her employers barely under her breath to their faces, destroying the tree without thinking and the like;False;False;;;;1610341846;;False;{};giuegih;False;t3_kuj1bm;False;True;t1_gitn0fz;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuegih/;1610391969;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ALI_2002__;;;[];;;;text;t2_59pf7hho;False;False;[];;All I can say is holy fuck this is amazing.;False;False;;;;1610341943;;False;{};giuelwa;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuelwa/;1610392074;3;True;False;anime;t5_2qh22;;0;[]; -[];;;osoichan;;MAL;[];;http://myanimelist.net/profile/osoichan;dark;text;t2_qsj0n;False;False;[];;"what is wrong with this season omg, so many good series, and each one is better than the other. - - -damn";False;False;;;;1610342276;;False;{};giuf4f6;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuf4f6/;1610392438;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610342285;;False;{};giuf4xh;False;t3_kuj1bm;False;True;t1_giudiof;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuf4xh/;1610392448;0;True;False;anime;t5_2qh22;;0;[]; -[];;;reddadz;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MysticEyes/;light;text;t2_oek5m;False;True;[];;"Sorry, your comment has been removed. - -- You can express a disagreement without targeting other users. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610342430;moderator;False;{};giufcs4;False;t3_kuj1bm;False;True;t1_giu40xf;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giufcs4/;1610392601;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;https://tvtropes.org/pmwiki/pmwiki.php/Main/SeinfeldIsUnfunny;False;False;;;;1610343044;;False;{};giug9j5;False;t3_kuj1bm;False;False;t1_gisdehx;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giug9j5/;1610393263;7;True;False;anime;t5_2qh22;;0;[]; -[];;;GARL1CD0G;;;[];;;;text;t2_z8puq;False;False;[];;The fact that they showed the parents doing the deed in the other room gives me hope that this is going to be a balls to the walls faithful adaptation to the original. Praise be!;False;False;;;;1610343309;;False;{};giugnog;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giugnog/;1610393534;3;True;False;anime;t5_2qh22;;0;[]; -[];;;japzone;;MAL;[];;http://myanimelist.net/animelist/japzone;dark;text;t2_eqp4i;False;False;[];;At the very least they need to cover the entire Youth arc. I can't imagine a decent stopping point before that.;False;False;;;;1610343524;;False;{};giugzbi;False;t3_kuj1bm;False;False;t1_gisfh93;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giugzbi/;1610393750;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;"Why are you all convinced that it's ""super creeeeepy"" for a straight man to have sexual attraction to women?";False;False;;;;1610343615;;False;{};giuh41x;False;t3_kuj1bm;False;True;t1_gis9g46;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuh41x/;1610393840;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Areouf;;;[];;;;text;t2_3nyxnua3;False;False;[];;"Oh, if _that_ (the perverted stuff) is what you meant, then sure lmao. But the way you said it (or rather, _didn't_ say it) made it seem like you were talking about tropes that are specific to or exceptionally common in isekai series, such as Truck-kun, the main character having some reason or other to end up OP, the main character taking their second chance at life as an opportunity to redeem themselves, etc. (which, among other things, is definitely what the vast majority of the comments you were referring to would have meant by ""tropes""). - -Anyway, I'd like to clarify again that most people probably weren't commenting about justifying the tropes themselves, but rather the series' use of them. Like…to give an inoffensive example, it would be illogical to say something like ""ugh another isekai featuring Truck-kun"", because this series isn't just ""another"" such series; however, it would be perfectly fine to say something like ""I don't like Truck-kun"" (although in this particular example, I'm sure there would be a fair few isekai fans taking issue with this slight to the almighty Truck-sama XD)";False;False;;;;1610343742;;False;{};giuhaqf;False;t3_kuj1bm;False;True;t1_giua1b4;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuhaqf/;1610393973;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;Shows incorporate videogame mechanics for the same reason videogames do: to skip over having to tease everything out on one's own. You might be interested to play an RPG where they give you zero help in this regard, but I bet you wouldn't be interested to play a second one.;False;False;;;;1610343847;;False;{};giuhg53;False;t3_kuj1bm;False;True;t1_gis6wex;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuhg53/;1610394077;3;True;False;anime;t5_2qh22;;0;[]; -[];;;japzone;;MAL;[];;http://myanimelist.net/animelist/japzone;dark;text;t2_eqp4i;False;False;[];;I still have that save file;False;False;;;;1610343932;;False;{};giuhke9;False;t3_kuj1bm;False;True;t1_gishxlu;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuhke9/;1610394159;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Axros;;;[];;;;text;t2_b71hi;False;False;[];;">though it never got mentioned in the novel - -I don't really agree on that. It got cut off in the anime, but the maid was genuinely worried that Rudeus was possessed by a demon or something on account of how horny the guy was for his age. There's other parts as well such as the fact that he doesn't or rarely cries that makes people worried. Rudeus does NOT act like a kid his age at all. They're aware, he's aware, and it's reasonable to assume that he'd go out of his way to try and at least not raise too much suspicision.";False;False;;;;1610344755;;False;{};giuipxb;False;t3_kuj1bm;False;True;t1_gislolu;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuipxb/;1610394991;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tiler2;;;[];;;;text;t2_11s570;False;False;[];;Ye his voice screamed gintoki to me, my ears are kind of broken, first time being able to recognise a va;False;False;;;;1610344894;;False;{};giuiwu4;False;t3_kuj1bm;False;True;t1_gis7rn2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuiwu4/;1610395138;1;True;False;anime;t5_2qh22;;0;[]; -[];;;warjoke;;;[];;;;text;t2_dya0s;False;False;[];;I'm not sure if they decided to completely skip Rudy's pre reincarnation life as a neet from the manga but all I can say is, I prefer this. That chapter is really depressing to begin with. The fact that this adaptation did not waste time and ho straight to building the world and power system ON THE FIRST EPISODE was a good decision. We may go back to Rudy's neet life again in a flasback at some point anyway.;False;False;;;;1610345052;;False;{};giuj4nh;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuj4nh/;1610395285;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mrtheliger;;;[];;;;text;t2_11ghbg;False;False;[];;"Beautiful start. I already love that it's not going with overt video game logic and tropes. Pure fantasy is so much more interesting to me, although I will say the skeleton of video game logic is there. - -I would say I had expectations for this.. not low or high, just sort of expected it to be a decent watch alongside Kumo-san, but this blew those expectations out of the water. I can see so much potential for the story, and the way Rudy is deciding to truly live a proper life and have an actual restart, instead of the average isekai cliche of being the exact same person but using your OP RPG buffs to get what you want, is so great. - -Interesting that they mention two more teens that he likely ""saved"" but were missing before his reincarnation..";False;False;;;;1610345153;;False;{};giuj9iq;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuj9iq/;1610395376;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;There's nothing wrong with calling your mom gorgeous…;False;False;;;;1610345365;;False;{};giujjww;False;t3_kuj1bm;False;True;t1_gish2y1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giujjww/;1610395577;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;Wading through the source reader flooding in every thread is gonna be annoying the whole way through this, isn't it;False;False;;;;1610345648;;False;{};giujxv7;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giujxv7/;1610395878;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;"The pearl-clutching in here is hilarious. ""OMG, a person having sexual thoughts! *[Faints from shock]*""";False;False;;;;1610345788;;False;{};giuk4jc;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuk4jc/;1610396009;0;True;False;anime;t5_2qh22;;0;[]; -[];;;__Haku__;;;[];;;;text;t2_4lpgar9x;False;False;[];;it doesn't have floating menu screens and stats does it? I'm honestly sick of that bullshit in isekais where they're not even in a videogame world.;False;False;;;;1610345873;;False;{};giuk8lp;False;t3_kuj1bm;False;True;t1_gisbynu;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuk8lp/;1610396092;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MurasakiZetsubou;;;[];;;;text;t2_3t3esp8d;False;False;[];;"> Gintoki from Gintama - -Fucking knew it. From the second I heard his voice and that sneer towards oppai.";False;False;;;;1610345929;;False;{};giukbay;False;t3_kuj1bm;False;True;t1_gis7rn2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giukbay/;1610396143;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610345993;;False;{};giukee1;False;t3_kuj1bm;False;True;t1_gitnc8j;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giukee1/;1610396209;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ReiahlTLI;;;[];;;;text;t2_inivd9e;False;False;[];;It's getting adapted late probably because of the sheer scale and commitment necessary for the series. The story is very biographical and follow's Rudy as he grows up again, trying to live his life better than he did before. It doesn't have the crazy adventure or fantasy battles thus making it difficult to break into 12-13 episode chunks like a lot of other series.;False;False;;;;1610346090;;False;{};giukiyn;False;t3_kuj1bm;False;True;t1_gisavbd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giukiyn/;1610396298;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Backupusername;;MAL;[];;http://myanimelist.net/profile/Backupusername;dark;text;t2_4fb2a;False;True;[];;Splash Flow was movie-quality. Holy shit, that looked incredible.;False;False;;;;1610346205;;1610349198.0;{};giukofw;False;t3_kuj1bm;False;True;t1_gis5mk6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giukofw/;1610396400;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AZLarlar;;;[];;;;text;t2_6d6peonh;False;False;[];;this was actually so good and better than i expected;False;False;;;;1610346310;;False;{};giuktel;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuktel/;1610396494;3;True;False;anime;t5_2qh22;;0;[]; -[];;;rya11111;;MAL;[];;http://myanimelist.net/animelist/rya11111;dark;text;t2_40uf6;False;False;[];;Wow didnt know that. Well they def did the job lol;False;False;;;;1610346385;;False;{};giukwwv;False;t3_kuj1bm;False;True;t1_git317s;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giukwwv/;1610396566;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Backupusername;;MAL;[];;http://myanimelist.net/profile/Backupusername;dark;text;t2_4fb2a;False;True;[];;I'm torn. On one hand, I love Sugita's voice and I could never get tired of hearing it. On the other hand, this MC was a fat shut-in loser before he died, and a voice as deep and cool as Sugita's doesn't seem fitting to that character.;False;False;;;;1610346397;;False;{};giukxhi;False;t3_kuj1bm;False;False;t1_gis553v;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giukxhi/;1610396576;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rya11111;;MAL;[];;http://myanimelist.net/animelist/rya11111;dark;text;t2_40uf6;False;False;[];;Loved it. The visuals were amazing, the narrative was great, storyline well paced, interesting characters and overall a great vibe.;False;False;;;;1610346448;;False;{};giukzxr;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giukzxr/;1610396631;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610346563;;1610347380.0;{};giul5ab;False;t3_kuj1bm;False;True;t1_giuf4xh;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giul5ab/;1610396730;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Backupusername;;MAL;[];;http://myanimelist.net/profile/Backupusername;dark;text;t2_4fb2a;False;True;[];;Since he said he died a virgin, I'm betting that truck was his first kiss, too.;False;False;;;;1610346570;;False;{};giul5m8;False;t3_kuj1bm;False;False;t1_gitfulj;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giul5m8/;1610396737;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;"[Hah, were you paying for just that before?](https://i.imgur.com/q1cloz9.jpg) - -[Mom knows what you're up to… and she appoves!](https://i.imgur.com/D628kyb.jpg) - -[Poor guy's got a case of Premature Incantation](https://i.imgur.com/BTLJmuU.jpg) [](#kotohoops) - -[Roxy. Now there's a real-world name you rarely see in anime](https://i.imgur.com/clUT3qe.jpeg) - -[Whoops, gonna need a higher level spell than that](https://i.imgur.com/v9C8IKm.jpg) - -[Haha, with that smug grin, this comes off as mockery](https://i.imgur.com/9cvN4mH.jpg) - -[Dude's just eating a whole chicken like it's a sandwich](https://i.imgur.com/E3mWYTg.jpeg)";False;False;;;;1610346771;;False;{};giulf1a;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giulf1a/;1610396914;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Ghekor;;;[];;;;text;t2_ueiyr;False;False;[];;"No but he was like ""Yes big tiddy to suck on"" well that is until he did that and realised he feels nothing since that's his new mom ,the maid tho is another thing xd";False;False;;;;1610346807;;False;{};giulgup;False;t3_kuj1bm;False;False;t1_giujjww;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giulgup/;1610396948;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Eboglaz;;;[];;;;text;t2_2kahaqr2;False;False;[];;as always.;False;False;;;;1610346861;;False;{};giuljcu;False;t3_kuj1bm;False;True;t1_giujxv7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuljcu/;1610396999;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610346936;;False;{};giulmx0;False;t3_kuj1bm;False;True;t1_gisg6n0;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giulmx0/;1610397067;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Backupusername;;MAL;[];;http://myanimelist.net/profile/Backupusername;dark;text;t2_4fb2a;False;True;[];;"Holy shit. I've been a Gintama fan for years, but still the idea that someone's *second*-most famous role would be not only a character from Jojo's Bizarre Adventure, but *the main Jojo of that part* is really a huge testament to how prolific Gintama is, huh? - -Of course, there's also the fact that Gintama, unlike Jojo's, wasn't broken up into ""parts"", meaning that Sugita has been Gintoki for like ten years, whereas he was only Joseph Joestar for one.";False;False;;;;1610346999;;False;{};giulpv7;False;t3_kuj1bm;False;True;t1_gise8rj;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giulpv7/;1610397120;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Backupusername;;MAL;[];;http://myanimelist.net/profile/Backupusername;dark;text;t2_4fb2a;False;True;[];;Shit man, you're right. I'd forgive Tomokazu Sugita for making passes at my mom.;False;False;;;;1610347052;;False;{};giulsb2;False;t3_kuj1bm;False;True;t1_gisci8r;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giulsb2/;1610397165;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Eboglaz;;;[];;;;text;t2_2kahaqr2;False;False;[];;I can see that you are familiar with kumo source but not with MT one? I highly recommend to read it.;False;False;;;;1610347097;;False;{};giulucf;False;t3_kuj1bm;False;True;t1_giuj9iq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giulucf/;1610397210;1;True;False;anime;t5_2qh22;;0;[]; -[];;;random_throwaway0001;;;[];;;;text;t2_9lx2xvpv;False;False;[];;I wouldn't say it's super creepy *yet*. Although wearing panties on your head is kinda creepy.;False;False;;;;1610347198;;False;{};giulyzn;False;t3_kuj1bm;False;True;t1_giuh41x;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giulyzn/;1610397298;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;I mean Jojo’s is bigger than Gintama, but Gintoki is THE face of Gintama, and Sugita is such a massive part of that. His voice and Gintoki are inseparable, whereas Joseph actually has multiple VAs and well no one Joestar is THE face of the series.;False;False;;;;1610347301;;False;{};gium3px;False;t3_kuj1bm;False;False;t1_giulpv7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gium3px/;1610397389;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Backupusername;;MAL;[];;http://myanimelist.net/profile/Backupusername;dark;text;t2_4fb2a;False;True;[];;"> Rudy lucked out ending up with such young, loving, attractive, and affectionate parents as Paul and Zenith. I like how they cherish their child and are also obviously still loving as husband and wife - -I hadn't even considered that but man, in today's grimdark edgy reincarnation VNs, poor Rudy probably would have been born to a broken home and abused by alcoholic parents or something. I'm sure he'll face plenty of hardship later in life, no need to overload it from the start.";False;False;;;;1610347384;;False;{};gium7jh;False;t3_kuj1bm;False;True;t1_gis5dlw;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gium7jh/;1610397462;2;True;False;anime;t5_2qh22;;0;[]; -[];;;yaboijeff69;;;[];;;;text;t2_1h17n80v;False;False;[];;*Perhaps*;False;False;;;;1610347458;;False;{};giumb08;False;t3_kuj1bm;False;False;t1_giu9qhp;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giumb08/;1610397528;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Eboglaz;;;[];;;;text;t2_2kahaqr2;False;False;[];;Because it was officially released only yesterday. So we will have to wait till jan 24 for episode 3.;False;False;;;;1610347523;;False;{};giumdyh;False;t3_kuj1bm;False;True;t1_giu8eys;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giumdyh/;1610397584;2;True;False;anime;t5_2qh22;;0;[]; -[];;;River_sounds;;;[];;;;text;t2_y4vd1;False;False;[];;The production quality is off the charts! Even the pacing is great. This has a lot of potential. I know this will get the popularity it deserves.;False;False;;;;1610348418;;False;{};giunipl;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giunipl/;1610398439;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610348654;;False;{};giunt9z;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giunt9z/;1610398653;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blaen;;;[];;;;text;t2_9606u;False;False;[];;"This series has already hurt me on a deep personal level. - -this is gonna be one of those sorts of rides isn't it. Ok. I'm in.";False;False;;;;1610349195;;False;{};giuohg1;False;t3_kuj1bm;False;True;t1_gis9zbk;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuohg1/;1610399123;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Chiyousagi;;MAL;[];;https://myanimelist.net/animelist/Chiyousagi;dark;text;t2_14d80t;False;False;[];;">full of generic tropes. But in reality, just like NGE, Mushoku Tensei is either the origin of those tropes or what popularized it - -Just curious. Normally tropes is determined by origin of popularity and not origin of creation isn't it? If so, truck kun trope should credit to the web novel that started the isekai trend, and then the numerous reincarnate isekai which draws attention to the common factor. Rather than the first known web novel to use truck kun.";False;False;;;;1610349211;;False;{};giuoi6u;False;t3_kuj1bm;False;True;t1_gis95p1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuoi6u/;1610399139;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saephan93;;;[];;;;text;t2_d20ha;False;False;[];;I really enjoyed the first episode. As an anime only I am really looking forward to following this series!;False;False;;;;1610349226;;False;{};giuoitt;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuoitt/;1610399150;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Iwasforger03;;;[];;;;text;t2_334ksevn;False;False;[];;"So there's a webtoon on Tapas I ran across. I watch Aninews so I'm aware Jobless is based on a webtoon that is like, the OG Isekai, but this webtoon almost perfectly rips off the first episode I just watched. - - -The Webtoon was: ""The beginning after the end."" Has anyone else run across it ans which came first? I get the feeling the webtoon is plagiarizing Jobless but I'm curious if anyone else is aware.";False;False;;;;1610349401;;False;{};giuoqeq;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuoqeq/;1610399294;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Eboglaz;;;[];;;;text;t2_2kahaqr2;False;False;[];;Oh no...;False;False;;;;1610349432;;False;{};giuorr1;False;t3_kuj1bm;False;True;t1_gity7oq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuorr1/;1610399318;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Eboglaz;;;[];;;;text;t2_2kahaqr2;False;False;[];;Hope it gets as good as LN.;False;False;;;;1610350016;;False;{};giupi4m;False;t3_kuj1bm;False;True;t1_gitp7t1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giupi4m/;1610399811;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HattoriSaizoII;;;[];;;;text;t2_72680hhu;False;False;[];;">I really like Sugita as the internal monologue voice. - -Channeling that Kyon aura all over again.";False;False;;;;1610350310;;False;{};giupxkl;False;t3_kuj1bm;False;True;t1_gis553v;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giupxkl/;1610400104;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HattoriSaizoII;;;[];;;;text;t2_72680hhu;False;False;[];;Isekai Transporter Origins;False;False;;;;1610350469;;False;{};giuq5m1;False;t3_kuj1bm;False;False;t1_gis5o4z;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuq5m1/;1610400255;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sergiocamjur;;;[];;;;text;t2_ywsx9wt;False;False;[];;Kyon! Denwa!;False;False;;;;1610350567;;False;{};giuqal0;False;t3_kuj1bm;False;False;t1_gis62u2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuqal0/;1610400340;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Florac;;;[];;;;text;t2_vy0sf;False;False;[];;beginning after the end definitly came later. People often joke it's Mushoku Tensei's edgy cousin(but imo its nowhere near as good);False;False;;;;1610350793;;False;{};giuqnhi;False;t3_kuj1bm;False;False;t1_giuoqeq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuqnhi/;1610400555;5;True;False;anime;t5_2qh22;;0;[]; -[];;;cowpilotgradeA;;;[];;;;text;t2_w5koi;False;False;[];;The details were impressive, all the way down to the windows having that interesting circular design like the glass was melted in a certain fashion. I remember watching a youtube video some time ago about why some European windows have this design, and I was impressed at the detail this studio took.;False;False;;;;1610350885;;False;{};giuqsiv;False;t3_kuj1bm;False;True;t1_gis5mk6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuqsiv/;1610400640;2;True;False;anime;t5_2qh22;;0;[]; -[];;;random_throwaway0001;;;[];;;;text;t2_9lx2xvpv;False;False;[];;It's not even the first one to use it. Truck-kun trope predates Narou web novels anyway. Mushoku Tensei is the one that popularized that trope amongst others. It was the highest-rated and most popular web novel on Narou for 5 years in a row. You would have a very hard time finding an Isekai web/light novel that isn't inspired by it in some way. It just happened so that it didn't get an anime until now so anime community didn't know about it.;False;False;;;;1610351003;;False;{};giuqytm;False;t3_kuj1bm;False;False;t1_giuoi6u;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuqytm/;1610400744;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610351004;;False;{};giuqyvm;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuqyvm/;1610400745;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YunYunForever;;;[];;;;text;t2_78oor7zc;False;False;[];;Look at the number of comments this premiere has already gotten compared to the number of comments most other premieres so far this season have gotten. I think it's safe to say that the show will do fine outside of Japan lol.;False;False;;;;1610351663;;False;{};giurzi0;False;t3_kuj1bm;False;True;t1_giu6p75;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giurzi0/;1610401384;2;True;False;anime;t5_2qh22;;0;[]; -[];;;StarTrotter;;;[];;;;text;t2_7308z;False;False;[];;"Yea and no? - -If you look at a bunch of the more well liked modern isekais a lot of them started as web novels in the same year. This series was November 2012. Konosuba was December 2012. Rezero and no game no life was April 2012. Shield Hero and Tanya started in 2012. Some predate it by several years like Log Horizon and and Overlord which were both 2010. Others like the devil is a part timer came out in 2011. - -So a lot of well liked of popular isekai weren’t really taking from it. That said it has impacted subsequent isekais.";False;False;;;;1610352293;;1610353002.0;{};giusxpy;False;t3_kuj1bm;False;True;t1_gis9zbk;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giusxpy/;1610402008;1;True;False;anime;t5_2qh22;;0;[]; -[];;;seanrodil;;;[];;;;text;t2_1nouwp9h;False;False;[];;Blown away by the first episode, have high hopes for this. Manga and LN are great!;False;False;;;;1610352319;;False;{};giusz1q;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giusz1q/;1610402040;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Cyborg_Sorachi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;I AM SHOCK!;light;text;t2_141iu1;False;False;[];;That's the part where I confirm he is Isekai'd Gintoki;False;False;;;;1610352326;;False;{};giuszfs;False;t3_kuj1bm;False;True;t1_git44bg;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuszfs/;1610402047;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cyborg_Sorachi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;I AM SHOCK!;light;text;t2_141iu1;False;False;[];; **L O R E**;False;False;;;;1610352369;;False;{};giut1q3;False;t3_kuj1bm;False;False;t1_git717p;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giut1q3/;1610402084;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Ksradrik;;;[];;;;text;t2_1wtl783j;False;False;[];;If you need a show to specifically point out that when a character does something bad, he is doing something bad, you dont fullfill the age requirement.;False;False;;;;1610352886;;1610359846.0;{};giutthp;False;t3_kuj1bm;False;False;t1_gitm737;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giutthp/;1610402576;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Oxu90;;;[];;;;text;t2_yxh7y;False;False;[];;Check out his MAL page, he has done plenty of other great characters :D Sugita is treasure;False;False;;;;1610352993;;False;{};giutzkk;False;t3_kuj1bm;False;True;t1_giukbay;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giutzkk/;1610402681;0;True;False;anime;t5_2qh22;;0;[]; -[];;;zz2000;;;[];;;;text;t2_nc21g;False;False;[];;"About how much content could the anime cover? Wikipedia shows there's presently 24 published novel volumes worth of material,which is also 1 WN volume short of adapting the entire original WN. - -https://en.wikipedia.org/wiki/Mushoku_Tensei#Light_novel_volume_list";False;False;;;;1610353563;;False;{};giuutjh;False;t3_kuj1bm;False;True;t1_gitjbuw;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuutjh/;1610403210;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kingovirgin;;;[];;;;text;t2_4j1pznh0;False;False;[];;i imagined paul a little differently but this look works too;False;False;;;;1610353602;;False;{};giuuvh1;False;t3_kuj1bm;False;False;t1_gis7ndp;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuuvh1/;1610403238;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kingovirgin;;;[];;;;text;t2_4j1pznh0;False;False;[];;its a really long story. i think the web novel has 24 volumes;False;False;;;;1610353722;;False;{};giuv1hi;False;t3_kuj1bm;False;True;t1_gisdhyd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuv1hi/;1610403331;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tomato_Ghost72;;;[];;;;text;t2_2vdwq7bh;False;False;[];;Well the mom is already best girl I think there should be no objections about this fact;False;False;;;;1610353739;;False;{};giuv2bq;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuv2bq/;1610403346;5;True;False;anime;t5_2qh22;;0;[]; -[];;;kingovirgin;;;[];;;;text;t2_4j1pznh0;False;False;[];;no the other shows copied from this one. the web novel of this anime is pretty old;False;False;;;;1610353778;;False;{};giuv4dz;False;t3_kuj1bm;False;True;t1_gisctoq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuv4dz/;1610403378;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Martinik29;;;[];;;;text;t2_ujpqt;False;False;[];;Timeline is key here. This is the first one and cautious hero came in later to mock it after all the tropes and cliches were established. If you're not a light novel reader, you're having 10+ years of history jumbled up.;False;False;;;;1610353898;;False;{};giuvayw;False;t3_kuj1bm;False;True;t1_giu67x7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuvayw/;1610403475;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Martinik29;;;[];;;;text;t2_ujpqt;False;False;[];;Oh no...;False;False;;;;1610354016;;False;{};giuvgzs;False;t3_kuj1bm;False;False;t1_gity7oq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuvgzs/;1610403579;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mechl5;;;[];;;;text;t2_7nuu6aq9;False;False;[];;"Mushoku Tensei really is a classic 'men writing woman' story. [Spoilers](/s ""Like the scene the anime will soon get to where it's found that Rudeus' dad cheated on the wife with the maid and got her pregnant. Rudeus then guilt trips his mom into being ok with polygamy."")";False;False;;;;1610354253;;False;{};giuvsou;False;t3_kuj1bm;False;False;t1_gisn68q;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuvsou/;1610403840;3;False;False;anime;t5_2qh22;;0;[]; -[];;;Martinik29;;;[];;;;text;t2_ujpqt;False;False;[];;The author actually put care into his character as a creepy NEET, him being one is very important to the story, not just the basic setting. The author makes it a point of how much of a degenerate creep he is.;False;False;;;;1610354784;;False;{};giuwiec;False;t3_kuj1bm;False;True;t1_gisqnc7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuwiec/;1610404270;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Martinik29;;;[];;;;text;t2_ujpqt;False;False;[];;You don't need to kill the parents to make it tragic...;False;False;;;;1610354872;;False;{};giuwna6;False;t3_kuj1bm;False;True;t1_gisipog;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuwna6/;1610404343;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sdarkpaladin;;;[];;;;text;t2_appfi;False;False;[];;"I was so hyped up for this show. - -After the first episode. I'm even more hyped! - -I wonder where they will adapt till. I probably need to go back and read this classic Isekai story again someday.";False;False;;;;1610354919;;False;{};giuwplx;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuwplx/;1610404378;5;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;No one cares about fujoshi bait. Except for Fujos;False;False;;;;1610354980;;False;{};giuwso0;False;t3_kuj1bm;False;False;t1_gispojj;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuwso0/;1610404429;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Martinik29;;;[];;;;text;t2_ujpqt;False;False;[];;They kind of need to make the languages distinct because there will be more and not all characters can speak all of them, so they kind of need to make them sound distinct when there is a perspective change.;False;False;;;;1610355188;;False;{};giux30o;False;t3_kuj1bm;False;False;t1_gissas6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giux30o/;1610404602;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Iwasforger03;;;[];;;;text;t2_334ksevn;False;False;[];;Cool, thanks.;False;False;;;;1610355275;;False;{};giux7vr;False;t3_kuj1bm;False;True;t1_giuqnhi;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giux7vr/;1610404675;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;24 apparently.;False;False;;;;1610355316;;False;{};giuxa79;False;t3_kuj1bm;False;True;t1_giteo4y;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuxa79/;1610404711;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;You must be New to r/anime;False;False;;;;1610355466;;False;{};giuxhqy;False;t3_kuj1bm;False;True;t1_giujxv7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuxhqy/;1610404830;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LOLCraze;;;[];;;;text;t2_cilxqw6;False;False;[];;I've been waiting for this ever since i read the web novel(one of my first, in fact). I hope they adapt the whole thing. This gives me so much nostalgia. wow.;False;False;;;;1610355737;;False;{};giuxv3l;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuxv3l/;1610405046;3;True;False;anime;t5_2qh22;;0;[]; -[];;;random_throwaway0001;;;[];;;;text;t2_9lx2xvpv;False;False;[];;"> just remembered the bush comment. Yeah that was creepy - -I'm noticing a lot of people finding the bush comment creepy. For me panties and other stuff were a lot creepier. Perhaps it's a cultural difference; So could you tell me why you perceive it as creepier?";False;False;;;;1610356047;;False;{};giuy92v;False;t3_kuj1bm;False;False;t1_git7pg1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuy92v/;1610405275;8;True;False;anime;t5_2qh22;;0;[]; -[];;;RayeKasai;;;[];;;;text;t2_icbab;False;False;[];;Kyon from Haruhi in an isekai. I know this is going to be my new favorite anime.;False;False;;;;1610356064;;False;{};giuy9ru;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuy9ru/;1610405289;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Nitsua34;;;[];;;;text;t2_86av8j;False;False;[];;noone cares about the same anime being repeated over and over again each season in the form of an isekai :p;False;False;;;;1610356134;;False;{};giuyc6s;False;t3_kuj1bm;False;True;t1_giuwso0;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuyc6s/;1610405340;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;TranClan67;;;[];;;;text;t2_5b6qw;False;False;[];;Same. Honestly it's why I hesitated for the longest time before watching Overlord and Slime while pretty much trying to outright avoid VRMMO isekai whatever. I just get annoyed cause it's usually a crutch to avoid trying to write out actual world building or some shit.;False;False;;;;1610356555;;False;{};giuyqzv;False;t3_kuj1bm;False;True;t1_gis6wex;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuyqzv/;1610405637;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TicketCool;;;[];;;;text;t2_9jrr6yuo;False;False;[];;Damn this looks like it's gonna be gooooood. Though I'm not verbose enough to explain why exactly.;False;False;;;;1610356822;;False;{};giuz0ho;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuz0ho/;1610405813;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TicketCool;;;[];;;;text;t2_9jrr6yuo;False;False;[];;Since there's a valid reason and all, why exactly are people triggered by his thoughts and behavior?;False;False;;;;1610357185;;False;{};giuzdep;False;t3_kuj1bm;False;True;t1_gito4iy;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuzdep/;1610406054;0;True;False;anime;t5_2qh22;;0;[]; -[];;;larvyde;;;[];;;;text;t2_60zt3;False;False;[];;"> the bush comment - -I don't know what it's called literature-wise (parallelism? simile? something else?) but he was drawing parallels with his own earlier thoughts: ""Forget *facial* hair, I bet she doesn't even have hair down there yet""";False;False;;;;1610357229;;False;{};giuzey2;False;t3_kuj1bm;False;False;t1_git7pg1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuzey2/;1610406082;7;True;False;anime;t5_2qh22;;0;[]; -[];;;TicketCool;;;[];;;;text;t2_9jrr6yuo;False;False;[];;"At this point people simply are saying it's creepy because other people are saying that it ""is creepy"" and everyone should feel that way because they feel that way. - -I mean yeah it is creepy, but look at the dude's previous life. If males were reborn as babies, you can be damn sure everyone is going to be taking some sort of advantage with their adult mind in baby body.";False;False;;;;1610357321;;False;{};giuzi6p;False;t3_kuj1bm;False;True;t1_giuh41x;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuzi6p/;1610406155;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Devilo94;;;[];;;;text;t2_g0ijo;False;False;[];;This looks really impressive! I wonder at which point will the anime end. Hmm.. anyway looking forward to the rest of it!;False;False;;;;1610357431;;False;{};giuzm01;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuzm01/;1610406223;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Any-Contact2751;;;[];;;;text;t2_82frwqqj;False;False;[];;I believe this studio is a subsidiary of White fox so we can expect more haha;False;False;;;;1610357553;;False;{};giuzqa9;False;t3_kuj1bm;False;False;t1_gis5mk6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuzqa9/;1610406300;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mutei777;;;[];;;;text;t2_1042o4;False;False;[];;"devil's in the details. Notice how rudy acts when made to go outside. Now think about how all isekai ""shut-in"" protags immediately go straight for harem chad thundercock plots. - -This one doesn't let you forget the person that got isekai'd.";False;False;;;;1610357573;;False;{};giuzqx1;False;t3_kuj1bm;False;True;t1_gisbc8d;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuzqx1/;1610406312;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OfficialTuxedoMocha;;;[];;;;text;t2_6zg1objs;False;False;[];;Yeah for all intents and purposes I shouldn't enjoy Tensura. The characters are rather underdeveloped and the plot gets out of hand...a lot. But it's just genuinely enjoyable and funny to watch the MC dunk on everyone despite them underestimating him. It's power fantasy at its best.;False;False;;;;1610357812;;False;{};giuzz57;False;t3_kuj1bm;False;True;t1_gislvxv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giuzz57/;1610406463;2;True;False;anime;t5_2qh22;;0;[]; -[];;;signspace13;;MAL;[];;http://myanimelist.net/animelist/signsapce13;dark;text;t2_i1824;False;False;[];;The world of MT knows and abuses those implacations, which is not a good thing.;False;False;;;;1610358368;;False;{};giv0i5c;False;t3_kuj1bm;False;True;t1_git9ew0;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv0i5c/;1610406807;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Martinik29;;;[];;;;text;t2_ujpqt;False;False;[];;Think around Vol. 6;False;False;;;;1610358581;;False;{};giv0plk;False;t3_kuj1bm;False;True;t1_giuzm01;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv0plk/;1610406939;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Animegamingnerd;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/animegamingnerd;light;text;t2_k7u33;False;False;[];;For me, I hear an deeper Joseph no matter who he is voicing.;False;False;;;;1610358668;;False;{};giv0spk;False;t3_kuj1bm;False;True;t1_gisc0ba;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv0spk/;1610406995;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Devilo94;;;[];;;;text;t2_g0ijo;False;False;[];;Yeah, that would be a good ending point. Considering it is a new arc from that point;False;False;;;;1610358901;;False;{};giv120e;False;t3_kuj1bm;False;True;t1_giv0plk;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv120e/;1610407153;1;True;False;anime;t5_2qh22;;0;[]; -[];;;letterspice;;;[];;;;text;t2_fk90j;False;False;[];;Spider gang 🕷️;False;False;;;;1610359099;;False;{};giv1c7o;False;t3_kuj1bm;False;True;t1_giu3vdf;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv1c7o/;1610407390;2;True;False;anime;t5_2qh22;;0;[]; -[];;;vvarthog;;;[];;;;text;t2_93gm2;False;False;[];;The safeword is “healing”;False;False;;;;1610359535;;False;{};giv1xxs;False;t3_kuj1bm;False;False;t1_git9ew0;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv1xxs/;1610407713;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Lorpo314;;;[];;;;text;t2_134icv;False;False;[];;Man, this adaptation looks EXACTLY like how I wished the anime would look back when I first read it in 2014.;False;False;;;;1610359805;;False;{};giv2bbk;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv2bbk/;1610407920;5;True;False;anime;t5_2qh22;;0;[]; -[];;;vvarthog;;;[];;;;text;t2_93gm2;False;False;[];;I’m glad they invested the time showing his personal spell training, letting the viewer know it took work and dedication. It pays off with interest when he tries the intermediate spell.;False;False;;;;1610359814;;False;{};giv2but;False;t3_kuj1bm;False;True;t1_gis5h59;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv2but/;1610407928;2;True;False;anime;t5_2qh22;;0;[]; -[];;;imsmoothlikebutter;;;[];;;;text;t2_1jcw1qjp;False;False;[];;Having Sugita as the inner voice is the best choice HAHA! Especially when he embraces his weird/pervert side. Can't stop laughing. Can't wait for more!;False;False;;;;1610359877;;False;{};giv2f8b;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv2f8b/;1610407975;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Orsonius2;;;[];;;;text;t2_204y9owl;False;False;[];;"overlord is more DnD mechanics - -kinda like Grimgar (though grimgar is more realistic and less gamey)";False;False;;;;1610359983;;False;{};giv2khx;False;t3_kuj1bm;False;True;t1_giuyqzv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv2khx/;1610408051;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610360210;;False;{};giv2vi7;False;t3_kuj1bm;False;True;t1_gitcyv8;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv2vi7/;1610408214;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xdamm777;;;[];;;;text;t2_oxrkd;False;True;[];;"If everyone watches this in official, legitimate platforms, buys the BDs, LNs and often engage in social media discussions it’s almost assured we’ll get the full adaptation just like Sword Art Online. - -Sadly, that’s a tall order for all but the most devoted fans. This series is very much worth it though, it’s incredible.";False;False;;;;1610360392;;False;{};giv3524;False;t3_kuj1bm;False;True;t1_gis9dud;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv3524/;1610408350;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610360411;;False;{};giv361l;False;t3_kuj1bm;False;True;t1_gitjbuw;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv361l/;1610408364;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vilnae;;;[];;;;text;t2_6mygzpi8;False;False;[];;"No, the world is ""natural"". There are classifications of magic and stuff but they are all man-made, not inherent to the world.";False;False;;;;1610360717;;False;{};giv3l2f;False;t3_kuj1bm;False;True;t1_giuk8lp;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv3l2f/;1610408593;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sergiodsc;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Sergiodsc;light;text;t2_1b6u04a3;False;False;[];;Normally I'd want for the part of him being a kid to be over quickly, but this time I hope he stays like that for a while so we can get as much time as possible with the mom.;False;False;;;;1610360806;;False;{};giv3prs;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv3prs/;1610408665;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Geenoscii;;;[];;;;text;t2_14ozta;False;False;[];;Roxy and Mona from Genshin have the same VA?;False;False;;;;1610360836;;False;{};giv3ra4;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv3ra4/;1610408689;2;True;False;anime;t5_2qh22;;0;[]; -[];;;xdamm777;;;[];;;;text;t2_oxrkd;False;True;[];;Is that the bathing scene? Don’t really recall another over the top moment near the beginning of the story.;False;False;;;;1610361000;;False;{};giv3zbk;False;t3_kuj1bm;False;True;t1_giskxgt;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv3zbk/;1610408813;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610361210;;1610361584.0;{};giv4a2i;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv4a2i/;1610408962;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xdamm777;;;[];;;;text;t2_oxrkd;False;True;[];;Is not good, it’s bloody fantastic. The story does too many things right, including romance.;False;False;;;;1610361222;;False;{};giv4aq1;False;t3_kuj1bm;False;True;t1_gis6h0j;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv4aq1/;1610408972;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Master10K;;MAL;[];;http://myanimelist.net/profile/Master10K;dark;text;t2_794zx;False;False;[];;You're right. As those gamey Isekai worlds tend to promote lazyness, in both story writing and how the characters act. Like in Shield Hero, with how only the Beast race's appearance is tied to their level and no one else... Why?;False;False;;;;1610361329;;False;{};giv4gbs;False;t3_kuj1bm;False;True;t1_gisewc1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv4gbs/;1610409059;2;True;False;anime;t5_2qh22;;0;[]; -[];;;xdamm777;;;[];;;;text;t2_oxrkd;False;True;[];;"Extremely impressed with the quality of the first episode. If they can keep this up during the whole series it will go down in history as one of the best anime adaptations ever. - -Very happy to finally see one of my favorite novels adapted.";False;False;;;;1610361351;;False;{};giv4hii;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv4hii/;1610409078;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MadDany94;;;[];;;;text;t2_zptdk;False;False;[];;The summary screams that its going to be filled with cliche tropes. So I'm kinda iffy on this.;False;False;;;;1610361405;;False;{};giv4k6l;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv4k6l/;1610409118;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shingg919;;;[];;;;text;t2_bm88ybb;False;False;[];;yes.;False;False;;;;1610361435;;False;{};giv4lp5;False;t3_kuj1bm;False;True;t1_giv3ra4;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv4lp5/;1610409141;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Martinik29;;;[];;;;text;t2_ujpqt;False;False;[];;It's not cliche when it's the series that set them. The studio put enough care into it to reflect that;False;False;;;;1610361651;;False;{};giv4x45;False;t3_kuj1bm;False;False;t1_giv4k6l;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv4x45/;1610409307;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Master10K;;MAL;[];;http://myanimelist.net/profile/Master10K;dark;text;t2_794zx;False;False;[];;Reddit comments don't mean much. For the anime to just dip it's toe into the mainstream it'll at least need to be spammed in a couple videos by Watchmojo or Mother's Basement. lol;False;False;;;;1610361736;;False;{};giv51l4;False;t3_kuj1bm;False;True;t1_giurzi0;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv51l4/;1610409371;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Master10K;;MAL;[];;http://myanimelist.net/profile/Master10K;dark;text;t2_794zx;False;False;[];;I have a feeling they may use his inner voice as his outer voice, once he grows up as an adult.;False;False;;;;1610362015;;False;{};giv5fsx;False;t3_kuj1bm;False;True;t1_git465k;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv5fsx/;1610409579;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Al-Pharazon;;;[];;;;text;t2_1s32gw1x;False;False;[];;If we go by used tropes 90% of the media are based on the Hero's Journey archetype that has been used since more than 2.000 years ago. But as you say a trope can be used well or not, Mushoku Tensei is a case of well used tropes while most Isekai are not.;False;False;;;;1610362117;;False;{};giv5lhv;False;t3_kuj1bm;False;False;t1_giv4x45;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv5lhv/;1610409655;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Master10K;;MAL;[];;http://myanimelist.net/profile/Master10K;dark;text;t2_794zx;False;False;[];;Plus the author might change and/or extend the ending in the official LN. Since already doing the same to most volumes now.;False;False;;;;1610362187;;False;{};giv5p5p;False;t3_kuj1bm;False;True;t1_git8d9o;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv5p5p/;1610409707;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jasche7;;;[];;;;text;t2_pu1sf;False;False;[];;"Because it's anime and people don't have the expectation that this kind of character would ever be written with depth and nuance. If you didn't know how the story would go later on, it would be easy to expect that it's just a generic disgusting anime protagonist and immediately stop watching. - -Also some people have no tolerance for this sort of behavior even if there's a valid in-universe reason. They just don't enjoy seeing it and that's all there is to it.";False;False;;;;1610362587;;False;{};giv6a1q;False;t3_kuj1bm;False;False;t1_giuzdep;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv6a1q/;1610409998;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Chiyousagi;;MAL;[];;https://myanimelist.net/animelist/Chiyousagi;dark;text;t2_14d80t;False;False;[];;"I think you misunderstood me. I am not doubting what you told me about mushoku tensi being the most popular novel for 5 years in a row. - -What I meant is where did isekai as a trend started? Also if mushoku is the origin, then it is unlikely for it to also be the one to popularise truck kun due to the nature of the meme. After all, truck kun meme was conceived because of 2 reasons. One being isekai is now a trend, and second being because isekai is a trend, there are lots of isekai story popping up and these stories all choose to get their ""inspiration"" for isekai-ing MC from mushoku. - -Think of it this way. The first person to wear a earring(lets say nobody ever does that up till today) is the origin. However wearing earring only started to become a trend because of idols who saw the origin/source and copy are the ones who actually popularise it. Which is why I mentioned popularity over origin in my above comment. - -Likewise, truck kun is likely popularise by the copy cats rather than mushoku because of the nature of this meme. The value here lies in being used multiple times, not because being bang by a truck is funny by itself without the repeated usage across the genre. The popularity which arises from multiple instances of occurrence unlike iconic stuff like say light saber which is instantly recognise once star war became popular.";False;False;;;;1610362842;;False;{};giv6mwy;False;t3_kuj1bm;False;True;t1_giuqytm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv6mwy/;1610410212;1;True;False;anime;t5_2qh22;;0;[];True -[];;;Eboglaz;;;[];;;;text;t2_2kahaqr2;False;False;[];;Nah, Roxy is best girl.;False;False;;;;1610362855;;False;{};giv6njf;False;t3_kuj1bm;False;True;t1_giuv2bq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv6njf/;1610410221;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PaperSauce;;;[];;;;text;t2_rnyhh0i;False;False;[];;"Jesus I wish I could forget about this show so I don't need to wait weekly. - -I might just end up reading this";False;False;;;;1610362977;;False;{};giv6u6q;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv6u6q/;1610410330;2;True;False;anime;t5_2qh22;;0;[];True -[];;;Eboglaz;;;[];;;;text;t2_2kahaqr2;False;False;[];;All of them have non-japanese names. That\`s refreshing.;False;False;;;;1610363025;;False;{};giv6wr5;False;t3_kuj1bm;False;True;t1_giulf1a;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv6wr5/;1610410365;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Martinik29;;;[];;;;text;t2_ujpqt;False;False;[];;Like I said, this is the series that set most of the tropes and cliches, most other isekai series start as a pale imitation of it.;False;False;;;;1610363134;;False;{};giv72ib;False;t3_kuj1bm;False;True;t1_giv5lhv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv72ib/;1610410448;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610363239;;False;{};giv77p2;False;t3_kuj1bm;False;True;t1_giulmx0;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv77p2/;1610410526;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vilnae;;;[];;;;text;t2_6mygzpi8;False;False;[];;"[LN Spoilers](/s ""There's actual romance to the degree of the MC getting married and having children (and grandchildren), though the anime won't reach that point in the current season of course."")";False;False;;;;1610363310;;False;{};giv7b60;False;t3_kuj1bm;False;True;t1_gis6h0j;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv7b60/;1610410578;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TicketCool;;;[];;;;text;t2_9jrr6yuo;False;False;[];;Lmao it's so obvious that this is a different type of anime tho. But yeah to each their own I guess.;False;False;;;;1610363984;;False;{};giv8awr;False;t3_kuj1bm;False;True;t1_giv6a1q;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv8awr/;1610411081;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KaptainTZ;;skip7;[];;;dark;text;t2_9fhynbf5;False;False;[];;I tried to dislike this show since there's already so much to watch, but I just couldn't :(;False;False;;;;1610364927;;False;{};giv9qr2;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giv9qr2/;1610411802;3;True;False;anime;t5_2qh22;;0;[]; -[];;;YunYunForever;;;[];;;;text;t2_78oor7zc;False;False;[];;"Reddit comments are a better indicator of popularity among the overall anime community than you're giving them credit for. Episode discussions with high traffic typically goes hand-in-hand with high interest just like dead discussions typically go hand-in-hand with flops. I genuinely can't think of even a single exception to that. - -By ""mainstream popularity""do you mean popularity among people that don't typically watch anime? If so, then that's kind of a moot point in the West because mainstream interest straight up doesn't exist here when it comes to like 99% of the shows that Japan has to offer.";False;False;;;;1610365200;;1610365454.0;{};giva6g8;False;t3_kuj1bm;False;True;t1_giv51l4;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giva6g8/;1610412003;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silkhenge;;;[];;;;text;t2_1p0pbftk;False;False;[];;"That's why he askee, ""Outside?"". And clinged to his dad tighter";False;False;;;;1610365612;;False;{};givayvj;False;t3_kuj1bm;False;False;t1_gitxjsh;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givayvj/;1610412360;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Songblade7;;;[];;;;text;t2_z0flbn9;False;False;[];;It was long day at work today but I knew I finally had the first episode of Mushoku Tensei waiting for me, and after years of wanting this to be a thing, I finally got to watch it! I loved the first episode and can't wait to watch more!;False;False;;;;1610365649;;False;{};givb19i;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givb19i/;1610412395;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kfijatass;;;[];;;;text;t2_6tii3;False;False;[];;"Kinda adorable really. The lewd moments feel a little weird, but I guess that's meant to be for a 35 y/o neet. Feels like slice of life, but isekai? Love the internal monologue. -Superb animation. -I get a real cozy feeling in this one as anime-only, will keep watching.";False;False;;;;1610365785;;False;{};givbax9;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givbax9/;1610412518;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nosorrynoyes;;;[];;;;text;t2_1gyhbufm;False;False;[];;"I don't want to be that guy but the Knights & Magic web novel (2010) did it first";False;False;;;;1610366027;;False;{};givbpxy;False;t3_kuj1bm;False;False;t1_gis5o4z;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givbpxy/;1610412720;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sKyBlazer08;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sKyBlazer08;light;text;t2_17ibsr;False;False;[];;"Wtf, that was fucking fantastic. Well I already had a feeling this will be great judging from the preview but, that was even way better. And what is up with those visuals, if this is the type of quality Studio Bind can do then, I look forward to their future. - -I already like Rudeus, sure he's a pervert but it's understandable. Just what you would expect from a 38 year old virgin. I look forward to his development. I have a feeling this will be one of my favorite shows this season and I heard it gets even better, let's go.";False;False;;;;1610366744;;False;{};givd37l;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givd37l/;1610413378;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RedHeadGearHead;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Redheadgearhead/;light;text;t2_7es8i;False;False;[];;Looks like this will be a great adaptation.;False;False;;;;1610366846;;False;{};givda6k;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givda6k/;1610413470;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;oparently we do huh? WAY more then the one you liked it too. What a shame. Better story, better characters, better animation, of course fujo bait was going to lose. But to make you this anoyed? Yikes!;False;False;;;;1610366934;;False;{};givdfyn;False;t3_kuj1bm;False;True;t1_giuyc6s;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givdfyn/;1610413555;2;True;False;anime;t5_2qh22;;0;[]; -[];;;horiami;;;[];;;;text;t2_1vozlmy2;False;False;[];;Everytime i get sick of isekai something decent comes out and I watch it;False;False;;;;1610367308;;False;{};give78r;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/give78r/;1610413910;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610367339;;False;{};give99i;False;t3_kuj1bm;False;True;t1_giul5ab;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/give99i/;1610413939;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Use the source corner if you're discussing the source material - -cc /u/Verberate";False;False;;;;1610368528;moderator;False;{};givgo26;False;t3_kuj1bm;False;True;t1_give99i;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givgo26/;1610415114;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atomosphere;;;[];;;;text;t2_i30fqxe;False;False;[];;This is what happens when a good studio gets insane funding from a good producer. The whole studio was made to adapt this anime, but if it gets popular enough i dont see why it wouldn't be a subsidiary of White Fox. Think CloverWorks to A-1 Pictures.;False;False;;;;1610368558;;False;{};givgq0k;False;t3_kuj1bm;False;False;t1_gis8rsg;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givgq0k/;1610415141;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Bloosakuga;;;[];;;;text;t2_110qf0;False;False;[];;"Like 95% of TV anime made. - -And that team reunited by animation producer Yuichiro Fukushi was already on his previous such as Iron-Man Rise of Technovore, X-men (2012) or Hunter x Hunter The Last Mission.";False;False;;;;1610368634;;False;{};givgurx;False;t3_kuj1bm;False;False;t1_git85qv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givgurx/;1610415208;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Atomosphere;;;[];;;;text;t2_i30fqxe;False;False;[];;Yea, going from his original appearance. It does make sense he's overweight af, all these other isekai MCs are so fit somehow even though all they do is sit-down and stuff their faces with junk food and sodas.;False;False;;;;1610368794;;False;{};givh4kh;False;t3_kuj1bm;False;True;t1_gisbikk;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givh4kh/;1610415355;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MadDany94;;;[];;;;text;t2_zptdk;False;False;[];;"Hmm. Kinda understandable. But it ends up being cliche and stale if the person viewing it has already experienced it dozens of times from - those that followed it. Doesn't matter if they are the origin of said cliche.";False;False;;;;1610368901;;False;{};givhbwq;False;t3_kuj1bm;False;True;t1_giv4x45;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givhbwq/;1610415457;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jesus10101;;;[];;;;text;t2_s6brg;False;False;[];;This studio was put together just for this anime. It includes alot of talented contractors who worked on alot of other anime.;False;False;;;;1610369280;;False;{};givhznk;False;t3_kuj1bm;False;True;t1_gis5vqx;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givhznk/;1610415808;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NovaAhki;;;[];;;;text;t2_5wmm4eri;False;False;[];;Haven't read it but I've heard people saying the author of that manhwa is a fan of Mushoku Tensei and took some inspiration from it.;False;False;;;;1610369421;;False;{};givi8p7;False;t3_kuj1bm;False;True;t1_giuoqeq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givi8p7/;1610415936;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Guillotine_Landlords;;;[];;;;text;t2_62ilgmjp;False;True;[];;Probably the first seven, it's the first big arc.;False;False;;;;1610369994;;False;{};givj87r;False;t3_kuj1bm;False;True;t1_giuutjh;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givj87r/;1610416475;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fretzivan24;;;[];;;;text;t2_3f3fxh6f;False;False;[];;The background music is giving me Land of the lustrous vibes and I don't know why;False;False;;;;1610370293;;False;{};givjr2j;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givjr2j/;1610416788;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Waggles_;;;[];;;;text;t2_d2jiq;False;False;[];;"Having read the webnovel, his inner monologue will probably never change VAs, though Rudeus may get a new VA towards the later half of the series as he matures. - -I don't think Sugita will ever voice Rudeus himself, especially considering how much Rudeus does inner monologue throughout the entire series. It would get really confusing for the audience for that voice to take on both roles.";False;False;;;;1610370431;;False;{};givjzs1;False;t3_kuj1bm;False;True;t1_git7lx7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givjzs1/;1610416949;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BerkofRivia;;;[];;;;text;t2_qjx0o;False;False;[];;I expect it’s when we meet the monster;False;False;;;;1610370677;;False;{};givkfic;False;t3_kuj1bm;False;True;t1_giv3zbk;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givkfic/;1610417208;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;BerkofRivia;;;[];;;;text;t2_qjx0o;False;False;[];;Are you talking about when we meet the monster?;False;False;;;;1610370703;;False;{};givkh6n;False;t3_kuj1bm;False;True;t1_giskxgt;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givkh6n/;1610417231;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aaronn_05;;;[];;;;text;t2_6yi1341u;False;False;[];;The start of the opening sounds really familiar. Is it just me? Feels like I’ve heard it before;False;False;;;;1610371197;;False;{};givle9p;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givle9p/;1610417735;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BerkofRivia;;;[];;;;text;t2_qjx0o;False;False;[];;Yeah I like this anime taking it really slow, remember kenja na mago? That took like 1 ep to go from baby to young adult, I don’t wanna spoil so I can only say this series takes their time with rudeus growing up.;False;False;;;;1610371217;;False;{};givlfm7;False;t3_kuj1bm;False;True;t1_gis9qqm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givlfm7/;1610417752;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Naccarat;;;[];;;;text;t2_99q6u0;False;False;[];;Oh no...;False;False;;;;1610371257;;False;{};givlib8;False;t3_kuj1bm;False;True;t1_gity7oq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givlib8/;1610417792;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Martinik29;;;[];;;;text;t2_ujpqt;False;False;[];;It's still the series which the author utilized these tropes and set the standard high enough almost no series can match it. Mushoku Tensei, Shield Hero, Slime and even Danmachi set the standard for all other work to follow.;False;False;;;;1610371329;;False;{};givln3y;False;t3_kuj1bm;False;False;t1_givhbwq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givln3y/;1610417862;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BerkofRivia;;;[];;;;text;t2_qjx0o;False;False;[];;We might even enshrine it one day.;False;False;;;;1610371520;;False;{};givlzr3;False;t3_kuj1bm;False;False;t1_giumb08;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givlzr3/;1610418054;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Pichucandy;;;[];;;;text;t2_49ju2t1z;False;False;[];;Im speechless. This is going to be an incredible adaptation, they pretty much nailed everything and enhanced it. This kind of animation quality is the stuff of dreams for any source material.;False;False;;;;1610371710;;False;{};givmd59;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givmd59/;1610418257;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Radinax;;;[];;;;text;t2_iextq;False;False;[];;Fucking hell thanks reddit! This anime looks fucking amazing!!;False;False;;;;1610372011;;False;{};givmxfq;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givmxfq/;1610418562;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OmegonAlphariusXX;;;[];;;;text;t2_cmkgc75;False;False;[];;In a novel I read where the main character gave birth, they had insane regeneration and were wandering about with their 15 minute old baby lmao;False;False;;;;1610373599;;False;{};givq4a5;False;t3_kuj1bm;False;True;t1_giskl7n;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givq4a5/;1610420326;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hell_nibba;;;[];;;;text;t2_50260tzs;False;False;[];;I feel like it quality will start to drop though out the series because how they just make first ep this good but overall this is great the studio making this was a first time own project too! I will alway continue to watch this.;False;False;;;;1610375367;;False;{};givtvse;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givtvse/;1610422467;3;True;False;anime;t5_2qh22;;0;[]; -[];;;electric_anteater;;;[];;;;text;t2_ocq5m;False;False;[];;So... a literal strawman?;False;False;;;;1610375470;;False;{};givu3vp;False;t3_kuj1bm;False;False;t1_gitkq1y;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givu3vp/;1610422590;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cire101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cire101;light;text;t2_oryv2;False;False;[];;Well I initially didn’t believe anything tragic would happen so we’ll have to see if anything bad happens.;False;False;;;;1610375793;;False;{};givuton;False;t3_kuj1bm;False;True;t1_giuwna6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givuton/;1610423002;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aman221B;;;[];;;;text;t2_9i59n709;False;False;[];;This episode felt like it was over in 2 minutes ...give me more;False;False;;;;1610349947;;False;{};giupese;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giupese/;1610399749;9;True;False;anime;t5_2qh22;;0;[]; -[];;;drakenastor;;;[];;;;text;t2_lk6t8;False;False;[];;Its moments like these I really wish I had a time machine.....;False;False;;;;1610349951;;False;{};giupf07;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giupf07/;1610399753;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ashutosh29;;;[];;;;text;t2_5w0dob4v;False;False;[];;"Now hold on a second are you pointing out fault in writing or the world or the characters cause if the latter is the case then of fucking course they are a buncha morons in many cases, and dude just read the points just now you wrote and they sadly are quite common in our history. - ->If they were upfront about it, Paradis could have been left alone like they always were. Like it was said in this episode, Paradis supposedly had enough power to level the world, but never did and isolated themselves instead. We can assume that Paradis didn't want to use the titans or they didn't actually have that power- why risk the peace by infiltrating Paradis? Technology would eventually overtake titans in terms of power, so they could just wait it out. - -The first king made a promise, we don't know what will be the case with the future genration and if they really share the same belief or not. Just tell me, a little island that you can crush now if done carefully has a potential to flatten the whole world and all it takes is one pissed mother fucker, which unfortunately is here now. Technology will or will not be as powerful as that isn't known, they don't have nuclear bombs and any human before the time they were invented didn't expect that something like that is possible, they were slaves for years and it's honestly stupid to let them live from my view at least after all that. - -> -Fritz for not being upfront to the citizens of Paradis. I mean, a lot of death could be avoided in the case of a hostile internal takeover of someone who wouldn't tolerate peace. Withholding knowledge from everyone and relying on security by obscurity made it a lot easier to lose the founding titan to a bad actor. - - -People died, since the time they started living in the walls, they are fighting against the ""monsters"" trapped, killed and terrorized with their king doing nothing as he has such an huge sense of guilt in his heart that he doesn't even believe that there is anything wrong with Marley coming one day and killing them, no way the later generations could have disclosed anything. But he could have never made them lose their memory and the answer according to me is no. He from what I know wanted his people to forget about the kind of monsters they were, what they did to the world and what they can do. Without the truth the island is a sanctuary, with the truth it's a prison and people don't like that. - - -> -Marley for aggressive expansion, and the desire of titans in Paradis. - ->The entire world for ostracizing a race. Not an ideology or anything of actual meaning- just ancestry. - ->Everyone who was capable of, but did not accept diplomacy as a potential option. - -Broadly gestures at the history of mankind. - -I missed the last line of blame sorry lol, they are someone to be blamed but I don't think their decisions were just because of that, Tyburs definetly for gain too but there was much more than that, Fritz for guilt rather than hubris according to me. They are to blame but every choice these characters have made is very human I would say. - -I really gotta sleep cause god damn did I dodged the point of your comment like Reiner dodges death.";False;False;;;;1610349965;;False;{};giupfof;False;t3_kujurp;False;False;t1_giunnxf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giupfof/;1610399766;2;True;False;anime;t5_2qh22;;0;[]; -[];;;csdbcjkahsd;;;[];;;;text;t2_6o5ig4yp;False;False;[];;"k. and? - -even then, not even close to war, buddy.";False;False;;;;1610349975;;False;{};giupg77;False;t3_kujurp;False;True;t1_gitsq07;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giupg77/;1610399776;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;LzzyHalesLegs;;;[];;;;text;t2_1ny16mj0;False;False;[];;I checked around a while back for anything above 500 awards but found none. The most non-AoT I think was a teaser image for SAO, bit under 300. The first episode of this season was around 850. If it keeps going like this, this episode will set the bar for a very long time. I can really only see Kaguya-sama, Re:Zero, or Demon Slayer beating this in the near future. And, mind you, this was just some random episode this season, the final episodes will be insane.;False;False;;;;1610350041;;False;{};giupjaa;False;t3_kujurp;False;True;t1_giums7c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giupjaa/;1610399833;0;True;False;anime;t5_2qh22;;0;[]; -[];;;johnnyblack15;;;[];;;;text;t2_f68z2dk;False;False;[];;"But we don't know the full story of the Eldian kingdom. We just have Marley's viewpoint which is likely exaggerated for propaganda. I don't think you can say that until we see what the Eldians were really like when they were in power. - -What do we know for sure about the Eldian Empire? They had an army of titans that they probably used for conquest, there was a civil war that led to their downfall. - -What do we know about Marley? Most of the society is racist, they have committed genocide, they force a whole race to live in a slum with limited access to resources, they have a secret police force that tortures and murders the minority population, they have a program that creates child soliders and forces them to commit war crimes, they have an additional unit composed of the victimized portion of their society who serve as a meatshield, their society is characterized by rampant jingoism, and they constantly waged war against other nations. - -It's probably more nuanced than I am suggesting, but Marley is definitely suffering the consequences of their past actions. - -TLDR: The Eldians may have been shady, Marley definitely was. Marley fucked around and found out.";False;False;;;;1610350199;;1610357340.0;{};giuprkt;False;t3_kujurp;False;True;t1_giucmei;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuprkt/;1610399987;1;True;False;anime;t5_2qh22;;0;[]; -[];;;XylanyX;;;[];;;;text;t2_5l2a5ct5;False;False;[];;"""I am the same as you, i keep moving forward until i destroy my enemies"" this is probably my favorite line in the whole series";False;False;;;;1610350214;;False;{};giupsfd;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giupsfd/;1610400010;20;True;False;anime;t5_2qh22;;0;[]; -[];;;SAY4lyfe;;;[];;;;text;t2_4sva11y6;False;False;[];;I’m gonna cry once this anime ends;False;False;;;;1610350271;;False;{};giupvgn;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giupvgn/;1610400067;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kam_E_luck;;;[];;;;text;t2_3i5m4uwq;False;False;[];;"Well, ""heroes"" or ""villains"" are all based on perspectives. - -Take history for example: A historical figure can be seen as god or devil depends on which parts they are from";False;False;;;;1610350284;;False;{};giupw6l;False;t3_kujurp;False;True;t1_giugbmu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giupw6l/;1610400080;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sittingbull15;;;[];;;;text;t2_jnaof;False;False;[];;Not just some Talk no jutsu? I dig it;False;False;;;;1610350300;;False;{};giupx0o;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giupx0o/;1610400094;24;True;False;anime;t5_2qh22;;0;[]; -[];;;BasicBlood;;;[];;;;text;t2_5rah2npl;False;False;[];;Your version is less nuanced than the one you are responding to;False;False;;;;1610350306;;False;{};giupxcb;False;t3_kujurp;False;True;t1_gisizez;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giupxcb/;1610400100;1;True;False;anime;t5_2qh22;;0;[]; -[];;;czarhans;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/czarhansjericho (not updated);light;text;t2_1ghttgdd;False;False;[];;Intense episode. Another 10/10.;False;False;;;;1610350325;;False;{};giupyca;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giupyca/;1610400117;11;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomXxZ;;;[];;;;text;t2_37lbelym;False;False;[];;We're SMASHING the episode 1 karma record that we set a few weeks ago.;False;False;;;;1610350332;;False;{};giupyoi;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giupyoi/;1610400123;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Unadvisable;;;[];;;;text;t2_6est4;False;False;[];;"holy shit - -that was epic™️";False;False;;;;1610350348;;False;{};giupzjn;False;t3_kujurp;False;True;t1_gitanyk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giupzjn/;1610400152;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Final-Solid;;;[];;;;text;t2_yw0ryp5;False;False;[];;12 hrs, 19.5K;False;False;;;;1610350353;;False;{};giupzte;False;t3_kujurp;False;False;t1_giu7nro;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giupzte/;1610400156;4;True;False;anime;t5_2qh22;;0;[]; -[];;;sittingbull15;;;[];;;;text;t2_jnaof;False;False;[];;Armor Titan may seem tough AF but he is a softboi deep down.;False;False;;;;1610350394;;False;{};giuq1v1;False;t3_kujurp;False;True;t1_gisudbr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuq1v1/;1610400191;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SlaneDidNothingWrong;;MAL;[];;TOURNAMENT ARC;dark;text;t2_tzigz;False;False;[];;"I binge-rewatched all 63 episodes over the last two days, and man, when Eren said “I don’t stop until my enemies are destroyed” I got the biggest shit-eating grin and cackled - -I’ve never smiled that intensely before. ErenDidNothingWrong";False;False;;;;1610350396;;False;{};giuq1zi;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuq1zi/;1610400193;37;True;False;anime;t5_2qh22;;0;[]; -[];;;Rha_psody;;;[];;;;text;t2_98b54u1;False;False;[];;Armin's talk no jutsu failed with Annie and then Bertholdt. It doesn't work in AoT;False;False;;;;1610350456;;False;{};giuq4xc;False;t3_kujurp;False;False;t1_giupx0o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuq4xc/;1610400243;28;True;False;anime;t5_2qh22;;0;[]; -[];;;53NKU;;;[];;;;text;t2_3u5veu6u;False;False;[];;Wait... How does this give more insight?;False;False;;;;1610350470;;False;{};giuq5oh;False;t3_kujurp;False;False;t1_giu7sib;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuq5oh/;1610400257;4;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"> ten of thousands of soldiers/people died a horrible death because of her actions. - -The armored train was the only thing she was responsible for. I don't think there were that many people on it.";False;False;;;;1610350498;;False;{};giuq72g;False;t3_kujurp;False;True;t1_giuonay;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuq72g/;1610400279;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RHO-PI;;;[];;;;text;t2_32yngflb;False;False;[];;"I think early fansubs wrote ""Sie sind die Essen und wir sind die Jaeger"" which translates to ""They are the prey and we are the hunters"". I don't know German so I may be wrong in that translation.";False;False;;;;1610350513;;False;{};giuq7tv;False;t3_kujurp;False;True;t1_giuafci;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuq7tv/;1610400294;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hanshee;;;[];;;;text;t2_au7ra;False;False;[];;"How could falco be alive when a 20 story titan just blew up 1 foot away from him? - -Apparently I’m missing something";False;False;;;;1610350524;;False;{};giuq8dj;False;t3_kujurp;False;False;t1_gise9k9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuq8dj/;1610400302;4;True;False;anime;t5_2qh22;;0;[]; -[];;;sittingbull15;;;[];;;;text;t2_jnaof;False;False;[];;There are some Iraqi Megumins here and there though;False;False;;;;1610350548;;False;{};giuq9kl;False;t3_kujurp;False;False;t1_giuic13;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuq9kl/;1610400322;8;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"I think everybone who commits war crimes should be penalized, regardless of which side they're on. There was nothing ""right"" about Eren's choice.";False;False;;;;1610350553;;False;{};giuq9ur;False;t3_kujurp;False;True;t1_giuoour;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuq9ur/;1610400327;2;True;False;anime;t5_2qh22;;0;[]; -[];;;53NKU;;;[];;;;text;t2_3u5veu6u;False;False;[];;What was the first mistake?;False;False;;;;1610350580;;False;{};giuqbbb;False;t3_kujurp;False;True;t1_gisxncj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuqbbb/;1610400353;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Si7koos;;;[];;;;text;t2_15afye;False;False;[];;Chapter 90;False;False;;;;1610350593;;False;{};giuqbzw;False;t3_kujurp;False;True;t1_gitxl45;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuqbzw/;1610400366;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Chinbie;;;[];;;;text;t2_12h6erpy;False;False;[];;"DECLARATION OF WAR!!!! LETS GO!!! - -EREN AND REINER HAVE SOME TALKS... - -THEN EREN TRANSFORMED INTO A TITAN!!! LETS GO!!!";False;False;;;;1610350608;;False;{};giuqctl;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuqctl/;1610400380;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Si7koos;;;[];;;;text;t2_15afye;False;False;[];;At this pace.. It might Cross S4 Ep1 Record;False;False;;;;1610350662;;False;{};giuqfye;False;t3_kujurp;False;True;t1_gittk56;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuqfye/;1610400430;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sergeantkh2;;;[];;;;text;t2_pbkrs;False;False;[];;I think Reiner needs that therapy session more;False;False;;;;1610350702;;False;{};giuqido;False;t3_kujurp;False;True;t1_gitidxy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuqido/;1610400470;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dark-lord111;;;[];;;;text;t2_5078g247;False;False;[];;!remind me 3 weeks;False;False;;;;1610350720;;1610384467.0;{};giuqjef;False;t3_kujurp;False;False;t1_gishxq3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuqjef/;1610400488;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PogHero;;;[];;;;text;t2_85bgja6;False;False;[];;"Can someone remind me about why Mikasa has the titan face in S3? - -I am also afraid to look things up.";False;False;;;;1610350822;;False;{};giuqp3c;False;t3_kujurp;False;True;t1_gism93w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuqp3c/;1610400580;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ErenIsNotADevil;;;[];;;;text;t2_9rlvlb8w;False;False;[];;(Information Available for Public Disclosure);False;False;;;;1610350865;;False;{};giuqrfm;False;t3_kujurp;False;False;t1_giudxet;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuqrfm/;1610400621;5;True;False;anime;t5_2qh22;;0;[]; -[];;;amberdesu;;;[];;;;text;t2_f7rnz;False;False;[];;A few couple episodes back we do see eren before he talks to his grandpa that he has a baseball mitten with him. That's a huge foreshadow if I've ever seen one;False;False;;;;1610350892;;False;{};giuqsww;False;t3_kujurp;False;False;t1_giuocrk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuqsww/;1610400646;16;True;False;anime;t5_2qh22;;0;[]; -[];;;catmeom;;;[];;;;text;t2_8crwsgoc;False;False;[];;Next episode may break this record for karma and awards;False;False;;;;1610350906;;False;{};giuqtms;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuqtms/;1610400659;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Dragon_Flaming;;;[];;;;text;t2_4zwbpl9m;False;False;[];;Until my enemies are destroyed;False;False;;;;1610350907;;False;{};giuqtpb;False;t3_kujurp;False;True;t1_gisa7d4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuqtpb/;1610400660;2;True;False;anime;t5_2qh22;;0;[]; -[];;;citramon;;;[];;;;text;t2_9vxez;False;False;[];;"Think you got some information mixed up. King Reiss never intended to use the Titans against the world, the tyburs knew this. He thought what the eldians did was beyond saving and brought them to the island just for a moment of paradise; he knew that the day would come when the world would strike, and his ideology would let them.";False;False;;;;1610350937;;False;{};giuqvbt;False;t3_kujurp;False;False;t1_giumfnd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuqvbt/;1610400687;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AH_BareGarrett;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/baregarrett;light;text;t2_f53sz;False;False;[];;I can hear Bryce Papenbrook saying the lines.;False;False;;;;1610351034;;False;{};giur0ie;False;t3_kujurp;False;True;t1_gitjaur;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giur0ie/;1610400771;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sittingbull15;;;[];;;;text;t2_jnaof;False;False;[];;Why are you yelling? Lol;False;False;;;;1610351060;;False;{};giur1vo;False;t3_kujurp;False;False;t1_giuqctl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giur1vo/;1610400805;4;True;False;anime;t5_2qh22;;0;[]; -[];;;-yato_gami-;;;[];;;;text;t2_a9ncdfa;False;False;[];;That end music was so lit , perfectly fit for that part .;False;False;;;;1610351129;;False;{};giur5y0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giur5y0/;1610400873;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Milind_;;;[];;;;text;t2_4r6odvpc;False;False;[];;Well they show us why they need superior titan power in episode1 that titan erra is ending with other nation advancing to tech. Once they got it marley will be unbeatable. that's why they taking risk it by warrior. They know that king of walls ( Fritz family) is full of coward they will not do rumbling cause they renounce the war and that ideology is passing down to shifter even though they decided to eliminate all titans, they handcuffed by ideology ( Frida Riesse). I still don't know why only children warrior sent to that but it seem necessary mabe cause they think why kill bees with canon.;False;False;;;;1610351161;;False;{};giur7sm;False;t3_kujurp;False;True;t1_giumfnd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giur7sm/;1610400902;2;False;False;anime;t5_2qh22;;0;[]; -[];;;Kevin-Garvey-1;;;[];;;;text;t2_qknunjb;False;False;[];;"Reiner: Wants to die, but can't. - -Willy: Wants to live, but can't.";False;False;;;;1610351237;;False;{};giurc5x;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giurc5x/;1610400975;14;True;False;anime;t5_2qh22;;0;[]; -[];;;PortoGuy18;;;[];;;;text;t2_2fidx1m;False;False;[];;Almost 20k in 13 hours. Holy fuck!!;False;False;;;;1610351259;;False;{};giurdd8;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giurdd8/;1610400995;32;True;False;anime;t5_2qh22;;0;[]; -[];;;Darnise;;;[];;;;text;t2_hyfoo;False;False;[];;Remember that the walls are around the size of france;False;False;;;;1610351296;;False;{};giurfb0;False;t3_kujurp;False;False;t1_giujgcg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giurfb0/;1610401026;3;True;False;anime;t5_2qh22;;0;[]; -[];;;arnav1311;;;[];;;;text;t2_81mzmva;False;False;[];;To each his own. We can agree to disagree.;False;False;;;;1610351310;;False;{};giurg2q;False;t3_kujurp;False;False;t1_giui2er;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giurg2q/;1610401040;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Elaego;;;[];;;;text;t2_55zd6hhb;False;False;[];;"As far as I know, the only Walldian survivors of Return to Shiganshina was: -Floch, Levi, Connie, Sasha, Eren, Mikasa, Jean, Hange, and Armin.";False;False;;;;1610351315;;False;{};giurgcq;False;t3_kujurp;False;True;t1_giunrdj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giurgcq/;1610401046;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kevin-Garvey-1;;;[];;;;text;t2_qknunjb;False;False;[];;No way Reiner dies. Just look at the juxtaposition between Willy who wants to live and Reiner who wants to be judged and die. Also, you see Reiner diving towards Falco, presumably to protect him from Eren's transformation.;False;False;;;;1610351354;;1610351791.0;{};giurie2;False;t3_kujurp;False;True;t1_gisc2jv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giurie2/;1610401083;1;True;False;anime;t5_2qh22;;0;[]; -[];;;trashbait1197;;;[];;;;text;t2_1rdmp9ve;False;False;[];;Literally same comment being posted thousand times over the thread you deserve all the downvotes.;False;False;;;;1610351432;;False;{};giurmj2;False;t3_kujurp;False;True;t1_gitcdjd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giurmj2/;1610401151;1;True;False;anime;t5_2qh22;;0;[]; -[];;;StOoPiD_U;;;[];;;;text;t2_9eldp;False;False;[];;So fucking good. God damn this show is so good already. Cannot wait for the next ep!;False;False;;;;1610351451;;False;{};giurnjr;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giurnjr/;1610401174;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Kevin-Garvey-1;;;[];;;;text;t2_qknunjb;False;False;[];;I really don't think they'd use the juxtaposition of Reiner wanting to die and Willy wanting to live simultaneously then kill both. Would make way more sense having both failing to achieve their desires.;False;False;;;;1610351461;;False;{};giuro3v;False;t3_kujurp;False;False;t1_git8ul7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuro3v/;1610401184;10;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;Whoa...TIL!;False;False;;;;1610351484;;False;{};giurp8u;False;t3_kujurp;False;True;t1_git72sm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giurp8u/;1610401207;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Smittsauce;;;[];;;;text;t2_j8y7z;False;False;[];;"Edit: Whoops, misunderstood you. - -FWIW, I don't think Reiner or Eren are bad people, just victims of circumstances. - -Reiner is a victim of propaganda and military service being the only avenue to improve his family's life. - -Eren fighting just for survival from Titans and now Marley.";False;False;;;;1610351504;;1610352334.0;{};giurqc2;False;t3_kujurp;False;False;t1_gitya56;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giurqc2/;1610401226;4;True;False;anime;t5_2qh22;;0;[]; -[];;;bijoyd019;;;[];;;;text;t2_10g0bn;False;False;[];;Uncle Sam would be proud of Marley.;False;False;;;;1610351630;;False;{};giurxmb;False;t3_kujurp;False;True;t1_git0zs0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giurxmb/;1610401353;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610351663;moderator;False;{};giurzgl;False;t3_kujurp;False;True;t1_gisu4sz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giurzgl/;1610401384;2;True;False;anime;t5_2qh22;;0;[]; -[];;;blueasian0682;;;[];;;;text;t2_1mq0q9k2;False;False;[];;Talk no jutsu is just death with extra steps in aot;False;False;;;;1610351666;;False;{};giurzmn;False;t3_kujurp;False;False;t1_giupx0o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giurzmn/;1610401387;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610351703;moderator;False;{};gius1ob;False;t3_kujurp;False;True;t1_giugof7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gius1ob/;1610401427;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ErenIsNotADevil;;;[];;;;text;t2_9rlvlb8w;False;False;[];;Sasuga Troyard-sama;False;False;;;;1610351707;;False;{};gius1w2;False;t3_kujurp;False;False;t1_giuq1zi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gius1w2/;1610401430;7;True;False;anime;t5_2qh22;;0;[]; -[];;;SecretVoodoo1;;;[];;;;text;t2_6cuslfw0;False;False;[];;Nothing personal, I just keep moving forward;False;False;;;;1610351772;;False;{};gius5h6;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gius5h6/;1610401493;5;True;False;anime;t5_2qh22;;0;[]; -[];;;TTC69;;;[];;;;text;t2_hicmehg;False;False;[];;is it Armin though? He didn't look that slim or tall in the promotional art and he literally has a different VA (which I assume is also a woman based on the voice overall);False;False;;;;1610351869;;False;{};giusaee;False;t3_kujurp;False;False;t1_giuna4y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giusaee/;1610401578;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;The only thing that can be said in defense of Eren is that what he does is for Paradis' survival (or at least he believes it is). What he does is evil but it might be the only way to defend his home and people but that doesn't make it morally right.;False;False;;;;1610351882;;False;{};giusb53;False;t3_kujurp;False;True;t1_gisu3rd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giusb53/;1610401590;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dragon_Flaming;;;[];;;;text;t2_4zwbpl9m;False;False;[];;For example Berserk, I don’t think you can make any excuse to choose Griffith over Guts as a protagonist(still a phenomenal character nonetheless);False;False;;;;1610351913;;False;{};giusct2;False;t3_kujurp;False;True;t1_giub0nu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giusct2/;1610401616;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Arsh36160;;;[];;;;text;t2_4e6hj6ao;False;False;[];;Bruh i've watched 800eps and wanna know cause i don't remember;False;False;;;;1610351914;;False;{};giuscuu;False;t3_kujurp;False;True;t1_git6bcd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuscuu/;1610401618;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Electron98;;;[];;;;text;t2_3yly4mby;False;False;[];;"Eren(Attack titan) to tybur guy in last scene: - -Get reckd noob......";False;False;;;;1610351963;;False;{};giusfhl;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giusfhl/;1610401661;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Derpykachu;;;[];;;;text;t2_4z6j9mb;False;False;[];;"Eren waited until the declaration of war to attack. -Wouldn't want to commit a war crime now would'ya?";False;False;;;;1610351975;;False;{};giusg5u;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giusg5u/;1610401673;36;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610351999;moderator;False;{};giushfx;False;t3_kujurp;False;True;t1_giuh6v5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giushfx/;1610401694;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yaminoidles;;;[];;;;text;t2_64rsavk;False;False;[];;Could you be more specific. I have no idea which scene you are refering to.;False;False;;;;1610352019;;False;{};giusino;False;t3_kujurp;False;True;t1_giuqp3c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giusino/;1610401715;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IJustMadeThis;;;[];;;;text;t2_3p5i9;False;False;[];;"Easterners yes, seems likely. - -Side note...the term “Japs” is considered an ethnic slur in the US because of how it was used during our treatment of Japanese Americans in WWII, so maybe best to say Japanese. If you’re not American it may have different connotations though, idk";False;False;;;;1610352045;;1610355417.0;{};giusk68;False;t3_kujurp;False;False;t1_giuosne;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giusk68/;1610401741;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Mugen-Sasuke;;;[];;;;text;t2_4osaql0w;False;False;[];;"OP was pointing out that the innocent people killed at Shiganshina were not even aware of Marley when they were killed, whereas the people here at Liberio were actively planning a war to exterminate the Eldians at Paradis island. So yeah, there is a massive difference here. - -Not saying Eren is a saint or anything, but he has a damn good reason to rampage through Liberio. As from his perspective, it is the only way he could save Paradis.";False;False;;;;1610352160;;False;{};giusqpj;False;t3_kujurp;False;False;t1_giu9wcp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giusqpj/;1610401852;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Jagacin;;;[];;;;text;t2_13054n;False;False;[];;Oh no... Eren got to him before he could finish his sentence. RIP;False;False;;;;1610352191;;False;{};giussdj;False;t3_kujurp;False;True;t1_gisp7zw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giussdj/;1610401881;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dragon_Flaming;;;[];;;;text;t2_4zwbpl9m;False;False;[];;But that’s what’s so good, with the things from later seasons, the previous seasons instantly become better. I recommend to give AOT a rewatch, probably the best series to do a rewatch for.;False;False;;;;1610352219;;False;{};giustub;False;t3_kujurp;False;True;t1_giuae7j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giustub/;1610401907;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PogHero;;;[];;;;text;t2_85bgja6;False;False;[];;I believe it was from when Eren and Mikasa were locked up in jail and it was the ep where we learned about PATHS and lifespan. It could've been from a trailer or a teaser.;False;False;;;;1610352234;;1610352657.0;{};giusumg;False;t3_kujurp;False;True;t1_giusino;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giusumg/;1610401920;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bhupeshpr25;;;[];;;;text;t2_78m9sk7m;False;False;[];;[hole up](https://i.imgur.com/m7eldxD.jpg);False;False;;;;1610352238;;False;{};giusut6;False;t3_kujurp;False;True;t1_giscafj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giusut6/;1610401923;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610352264;;False;{};giusw72;False;t3_kujurp;False;True;t1_git6dur;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giusw72/;1610401970;1;True;False;anime;t5_2qh22;;0;[]; -[];;;top10_bruh_moments;;;[];;;;text;t2_3q9a901q;False;False;[];;Eren been reading The Art of War.;False;False;;;;1610352290;;False;{};giusxk1;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giusxk1/;1610402003;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ColumnsAreGay;;;[];;;;text;t2_9447i2uv;False;False;[];;I agree about Eren and Reiner but that part also only took like 6 minutes of the episode. The rest of the episode is just this long speech which, while I get logically why it's there, is a lazy way to fill in the audience about the remaining parts of Marley's history. It shows a lack of creativity on the part of the writers that they didn't come up with a more dynamic and interesting way to share that information. The broad strokes of the story are coming together well which is to the writers' credit but the attention to detail in the specific scenarios to me is weaker than it has been before.;False;False;;;;1610352312;;False;{};giusyp4;False;t3_kujurp;False;True;t1_giup9mw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giusyp4/;1610402034;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;"It beat (well, it will, soon) EP1's 48 hour record in *13 hours.* - - -Shit's crazy man";False;False;;;;1610352445;;False;{};giut5vt;False;t3_kujurp;False;False;t1_giurdd8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giut5vt/;1610402179;14;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610352480;;False;{};giut7xa;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giut7xa/;1610402215;-38;True;False;anime;t5_2qh22;;0;[]; -[];;;MapleLeafsFan3;;;[];;;;text;t2_aq0uk;False;False;[];;Same, I’m confused af rn;False;False;;;;1610352530;;False;{};giutarg;False;t3_kujurp;False;True;t1_giuq8dj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giutarg/;1610402263;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ItsPulpy;;;[];;;;text;t2_kzqeuv8;False;False;[];;Her actions did save countless eldian soldiers though;False;False;;;;1610352567;;False;{};giutcsm;False;t3_kujurp;False;False;t1_giuonay;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giutcsm/;1610402301;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;Yeah, but if there was any doubt in the other country leaders’ minds, he sure as fuck cleared them.;False;False;;;;1610352674;;False;{};giutigg;False;t3_kujurp;False;False;t1_giuj0eu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giutigg/;1610402389;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Anasthera;;;[];;;;text;t2_7ea1r;False;False;[];;"Cause it adds to his guilt. - -He encouraged Eren, who is now essentially the big bad villain. - -On top of failing his mission, abandoning Annie, getting Berthold killed, and causing probably many Eldians to die in the subsequent war with the mid-eastern forces, he unwittingly helped Eren overcome challenges and survive training because he wanted to be more like Marcel. - -He blames himself for all those things, and he's not entirely wrong either to do so. If he hadn't become such a ""half-assed piece of shit"" maybe all those bad things wouldn't have happened. - -That's how he sees it, at least.";False;False;;;;1610352678;;False;{};giutinj;False;t3_kujurp;False;False;t1_giuq5oh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giutinj/;1610402392;43;True;False;anime;t5_2qh22;;0;[]; -[];;;Jagacin;;;[];;;;text;t2_13054n;False;False;[];;Not gonna lie, I was initially skeptical as to whether this season was going to live up to the hype or not after the news that WIT studio wasn't going to be making the final season after making literally the entirety of the show up to that point. But boy was I wrong. It hasn't just lived up to the hype so far... it has arguably exceeded it. Even with a complete change in studios, this show hasn't missed a beat. Very pleased with the results. This season might just be up there with season 3 part 2 for me.;False;False;;;;1610352680;;False;{};giutiqt;False;t3_kujurp;False;True;t1_gischn4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giutiqt/;1610402393;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;Point is, they have a deterrent. They’re like the only country in the world with nukes.;False;False;;;;1610352749;;False;{};giutma9;False;t3_kujurp;False;True;t1_giul89c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giutma9/;1610402455;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SNIPEZxp;;;[];;;;text;t2_shfufi4;False;False;[];;"That song (youseebiggirl) wouldn't be a good fit simply because of what it represents. Sure it may sound good, but that song has only been used for scenes that have to do with people revealing that they are traitors. Those scenes being Bertold and Reiner reveal, Ymir reveal, and Bertold's reveal in season 3. They seem to be keeping the theme specific for those moments so that it hits harder when they play. - -In this scene, they were trying to portray that Eren isn't really a traitor, he's just doing what he feels is right. He truly believes that the people he is fighting are evil and deserve death. He is staying truly faithful to his beliefs with no regrets. All the other ""traitors"" had doubts as to whether or not the people they were fighting were truly evil. If they used that song, it would have ruined the meaning behind the song and why it hits so hard when it is played. - -Does it sound amazing and makes you super excited when it plays? Yes. But it wouldn't fit with the scenario imo.";False;False;;;;1610352841;;False;{};giutr3g;False;t3_kujurp;False;False;t1_gisu4hw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giutr3g/;1610402536;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Dragon_Flaming;;;[];;;;text;t2_4zwbpl9m;False;False;[];;This story really like introducing REALLY impactful characters for the story and killing them off really quick as well.;False;False;;;;1610352846;;False;{};giutrch;False;t3_kujurp;False;True;t1_gisbntp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giutrch/;1610402540;1;True;False;anime;t5_2qh22;;0;[]; -[];;;randomness7345;;;[];;;;text;t2_11zjs7;False;False;[];;Damn this thread really got to 20k upvotes;False;False;;;;1610352852;;False;{};giutrow;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giutrow/;1610402547;6;True;False;anime;t5_2qh22;;0;[]; -[];;;yaminoidles;;;[];;;;text;t2_64rsavk;False;False;[];;So I went back and checked and saw nothing out of the ordinary. I honestly don't know what you are refering to. The episode you are possibly referring to might be S3E21 which has Mikasa in the preview but no titan face. It's the same episode they learn about PATHS and the lifespan.;False;False;;;;1610352876;;False;{};giutsye;False;t3_kujurp;False;True;t1_giusumg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giutsye/;1610402567;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;TBF as far as fighting for his people goes, this wasn’t necessarily the best course of action. He just made sure to galvanise and consolidate the enemy alliance.;False;False;;;;1610352914;;False;{};giutv35;False;t3_kujurp;False;True;t1_gitf1zc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giutv35/;1610402603;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MonaThiccAss;;;[];;;;text;t2_8stg2bwj;False;False;[];;Unlike Gaby, Eren has standards;False;False;;;;1610352923;;False;{};giutvlg;False;t3_kujurp;False;False;t1_giusg5u;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giutvlg/;1610402610;18;True;False;anime;t5_2qh22;;0;[]; -[];;;MonaThiccAss;;;[];;;;text;t2_8stg2bwj;False;False;[];;"#DECLARATION OF WAR!!!! LETS GO!!! - -#EREN AND REINER HAVE SOME TALKS... - -#THEN EREN TRANSFORMED INTO A TITAN!!! LETS GO!!!";False;False;;;;1610352971;;False;{};giutyar;False;t3_kujurp;False;False;t1_giur1vo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giutyar/;1610402662;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Jagacin;;;[];;;;text;t2_13054n;False;False;[];;He's essentially doing what Reiner did. He's not afraid to be the villain if it means saving everything that he holds dear. Because his home would be annihilated in an all out war. Same reason that Reiner destroyed the wall. He knew it was evil, but a necessary evil to save his nation and loved ones. Almost like an anti-hero.;False;False;;;;1610352976;;False;{};giutykn;False;t3_kujurp;False;False;t1_giugbmu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giutykn/;1610402666;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610353000;;False;{};giutzvq;False;t3_kujurp;False;True;t1_gitu5ej;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giutzvq/;1610402686;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MonaThiccAss;;;[];;;;text;t2_8stg2bwj;False;False;[];;Power of friendship doesn't work in AOT and overlord;False;False;;;;1610353029;;False;{};giuu1go;False;t3_kujurp;False;False;t1_giupx0o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuu1go/;1610402713;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Khronify;;;[];;;;text;t2_41zknosc;False;False;[];;This is a blatant troll post but I still must ask: How the hell would the conversation between Eren and Reiner be more intense in the manga? Afaik the dialogue was exactly the same. The lack of voice acting and music automatically makes that statement invalid.;False;False;;;;1610353056;;False;{};giuu2wd;False;t3_kujurp;False;False;t1_giut7xa;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuu2wd/;1610402738;31;True;False;anime;t5_2qh22;;0;[]; -[];;;MonaThiccAss;;;[];;;;text;t2_8stg2bwj;False;False;[];;I used to think they lived inside the walls for around 1000 years, thats what I remember;False;False;;;;1610353091;;1610368653.0;{};giuu4pk;False;t3_kujurp;False;True;t1_giuodio;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuu4pk/;1610402766;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;veryearlypotato;;;[];;;;text;t2_24bvxq8j;False;False;[];;Eren foot regeneration 👀👀 madlad actually did it;False;False;;;;1610353166;;False;{};giuu8i0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuu8i0/;1610402831;11;True;False;anime;t5_2qh22;;0;[]; -[];;;MonaThiccAss;;;[];;;;text;t2_8stg2bwj;False;False;[];;Both sides;False;False;;;;1610353194;;False;{};giuu9xa;False;t3_kujurp;False;False;t1_giumh3m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuu9xa/;1610402860;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610353221;;False;{};giuubbm;False;t3_kujurp;False;True;t1_gisr82z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuubbm/;1610402886;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nebula-Lynx;;;[];;;;text;t2_6mruvnzg;False;False;[];;"Who does the Hulu subs? Because comparing with YouTube clips some of the subs have *completely* different context. - -Such as when Eren tells Reiner the thing about being born this way near the end. - -Some subs have Eren say “I was born this way” where as Hulu says “We were born this way”. - -Which sounds minor but it really does paint a different picture depending.";False;False;;;;1610353246;;False;{};giuucnt;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuucnt/;1610402924;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;I could totally see that joke in an abridged version of this episode.;False;False;;;;1610353273;;False;{};giuue1r;False;t3_kujurp;False;True;t1_gisesei;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuue1r/;1610402951;3;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;"Very ambitious, but can this break the largest karma increase record previously set by ep1 too? - -Ep1 had 20332 karma, a 5706 increase from the previous record. So this would break the largest increase record if it gets 26039 karma.";False;False;;;;1610353295;;False;{};giuuf57;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuuf57/;1610402972;13;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610353309;;False;{};giuufxy;False;t3_kujurp;False;True;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuufxy/;1610402989;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jagacin;;;[];;;;text;t2_13054n;False;False;[];;The new Eren is sooo much more interesting. I love the direction that his character went. He's no longer an insufferable hot headed brat constantly being overshadowed by other more interesting characters (Levi, Erwin, Mikasa, etc...). He's a character that I actually want to see, and listen to the fascinating stories he has to tell now. *HE'S* now the character that steals the spotlight away from everyone else (ok, except for Levi lol). Our hot headed teenager has grown up lol. Marvelous character development.;False;False;;;;1610353311;;False;{};giuug0n;False;t3_kujurp;False;True;t1_giscvsy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuug0n/;1610402990;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MonaThiccAss;;;[];;;;text;t2_8stg2bwj;False;False;[];;Thats hospital related job or security. Episode was awesome.;False;False;;;;1610353326;;False;{};giuugv4;False;t3_kujurp;False;True;t1_giukqq2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuugv4/;1610403004;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;I guess it's 20k again. Holy shit AoT;False;False;;;;1610353353;;False;{};giuuib2;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuuib2/;1610403027;32;True;False;anime;t5_2qh22;;0;[]; -[];;;LostDelver;;;[];;;;text;t2_1o8p0432;False;False;[];;"It's also safe to assume that Titan shifters who have royal blood would be able to replicate Zeke's titan-creation and control feats. - -Hence why it was ""The Great Titan War"" because the holders of the 9 Titans were likely all royals and are capable of having their own Titan army.";False;False;;;;1610353417;;False;{};giuulxp;False;t3_kujurp;False;False;t1_gismb1y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuulxp/;1610403087;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;It's possible, EP1 set it's record in 48 hours and EP5 broke it in 13 hours. Depends on how strong a wave it'll make but considering it's still trending on twitter I think it's likely.;False;False;;;;1610353421;;False;{};giuum5t;False;t3_kujurp;False;False;t1_giuuf57;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuum5t/;1610403090;24;True;False;anime;t5_2qh22;;0;[]; -[];;;MonaThiccAss;;;[];;;;text;t2_8stg2bwj;False;False;[];;His legs are pointing the opposite direction, what a twist of events;False;False;;;;1610353422;;False;{};giuum8w;False;t3_kujurp;False;True;t1_giugiz9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuum8w/;1610403093;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MonaThiccAss;;;[];;;;text;t2_8stg2bwj;False;False;[];;Trebutech;False;False;;;;1610353466;;False;{};giuuojy;False;t3_kujurp;False;False;t1_giugabd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuuojy/;1610403128;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Nebula-Lynx;;;[];;;;text;t2_6mruvnzg;False;False;[];;"I mean it makes sense, we literally had a scene where Reiner was shoving the barrel to a rifle in his mouth. - -I love Reiners arc, the poor guy. - -He’s in so much internal conflict and pain.";False;False;;;;1610353508;;False;{};giuuqru;False;t3_kujurp;False;True;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuuqru/;1610403165;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MonaThiccAss;;;[];;;;text;t2_8stg2bwj;False;False;[];;Yeah;False;False;;;;1610353513;;False;{};giuur19;False;t3_kujurp;False;False;t1_giudftl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuur19/;1610403170;5;True;False;anime;t5_2qh22;;0;[]; -[];;;diamondcake;;;[];;;;text;t2_9vnme;False;False;[];;Magath and Willy having a talk in a carriage. It's at the the first few pages of chapter 100.;False;False;;;;1610353519;;False;{};giuure0;False;t3_kujurp;False;False;t1_giunrcr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuure0/;1610403175;8;True;False;anime;t5_2qh22;;0;[]; -[];;;faunzo_;;;[];;;;text;t2_5f50frp9;False;False;[];;wow this show truly pieces together the faults in our society truly amazing;False;False;;;;1610353577;;False;{};giuuu9j;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuuu9j/;1610403221;10;True;False;anime;t5_2qh22;;0;[];True -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;Maybe, it'll be very popular with anime onlies but EP6 doesn't have the manga reader hype Episode 5 has.;False;False;;;;1610353605;;False;{};giuuvlk;False;t3_kujurp;False;False;t1_giuqtms;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuuvlk/;1610403240;13;True;False;anime;t5_2qh22;;0;[]; -[];;;blowtorches;;;[];;;;text;t2_2l7vhp6;False;False;[];;The first subs that came out are rough;False;False;;;;1610353625;;False;{};giuuwkm;False;t3_kujurp;False;True;t1_giuucnt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuuwkm/;1610403254;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;Though TBF it’s still a bit of an asspull. The Colossal we know is one of the Nine. These are, what? Mass-produced abnormals? It’s completely off scale with everything else.;False;True;;comment score below threshold;;1610353692;;False;{};giuuzy2;False;t3_kujurp;False;True;t1_giti4xc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuuzy2/;1610403306;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Understanding1247;;;[];;;;text;t2_7kjy5jap;False;False;[];;"Damn... Mappa did it. The last scene which eren transformed , I was so excited. I was about to scream 😂 -Man that scene was fantastic . -I'm so excited for the next episode . I wonder if they're going to show some action or it'll be about the war hammer Titan only . I'm not a big fan of CGI so if they're going for some action I would like to see how are they going to execute it . But damn I love this show . From story perspective I have to give the crown to Isayama ,this guy's a genius .";False;False;;;;1610353707;;False;{};giuv0p7;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuv0p7/;1610403319;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Nano201102;;;[];;;;text;t2_5vl5px2v;False;False;[];;It's not Armin I believe, as the person has a completely different voice actor;False;False;;;;1610353779;;False;{};giuv4gc;False;t3_kujurp;False;False;t1_giun77q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuv4gc/;1610403379;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Left-Chance-4564;;;[];;;;text;t2_7p92oo57;False;False;[];;It is or at least that's my general opinion after seeing how a particular portion reacts to every chapter which don't have a certain character in them as if the story only revolves around them.Don't get me wrong,I also want to see those characters pov but the fans of those characters sometimes act like binch of whiny [kids.It](https://kids.It) got to the point where some of them even started name calling the author but let's not get into that.Again,I am not generalising but this is more or less the impression I got.;False;False;;;;1610353813;;1610396662.0;{};giuv6bb;False;t3_kujurp;False;True;t1_giswu9y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuv6bb/;1610403406;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kekanekiclub03;;;[];;;;text;t2_27ki02is;False;False;[];;Zeke said in season 3 that he'll come to save Eren after the battle;False;False;;;;1610353823;;False;{};giuv6vf;False;t3_kujurp;False;True;t1_giuocrk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuv6vf/;1610403415;2;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;20K in less than 14 hours. Now let's hit it to 25K.;False;False;;;;1610353829;;False;{};giuv79k;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuv79k/;1610403420;39;True;False;anime;t5_2qh22;;0;[]; -[];;;RHO-PI;;;[];;;;text;t2_32yngflb;False;False;[];;I initially thought that the soldier was Connie but you're probably right. Also, they were all present at the Battle of Shiganshina so maybe Pieck recognised him from that time.;False;False;;;;1610353888;;False;{};giuvaf0;False;t3_kujurp;False;True;t1_giugajq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuvaf0/;1610403466;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kucchu;;;[];;;;text;t2_ih8fx48;False;False;[];;And we still have yet to see arguably the best chapters got animated. AOT GOATED.;False;False;;;;1610353895;;False;{};giuvash;False;t3_kujurp;False;False;t1_giut5vt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuvash/;1610403472;7;True;False;anime;t5_2qh22;;0;[]; -[];;;daze1717;;;[];;;;text;t2_vkozr1t;False;False;[];;20k Pog;False;False;;;;1610353933;;False;{};giuvcts;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuvcts/;1610403506;22;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610353952;;False;{};giuvdsw;False;t3_kujurp;False;True;t1_giul66r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuvdsw/;1610403524;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yukihirou_Vi_Ghania;;;[];;;;text;t2_9093txh1;False;False;[];;800 soldiers vs the whole fortress ?;False;False;;;;1610353994;;False;{};giuvfwz;False;t3_kujurp;False;True;t1_giutcsm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuvfwz/;1610403562;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;In an alternate story, Eren’s dead and the Founder is in Santa’s possession. Just a random old man deciding the fate of the world.;False;False;;;;1610354039;;False;{};giuvi4q;False;t3_kujurp;False;False;t1_giu891w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuvi4q/;1610403600;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Kekanekiclub03;;;[];;;;text;t2_27ki02is;False;False;[];;pieck had to go to save Reiner and bertoto after the battle in season 3, so it possible that she remembers any of survey corps;False;False;;;;1610354083;;False;{};giuvk9d;False;t3_kujurp;False;True;t1_giul66r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuvk9d/;1610403643;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ColumnsAreGay;;;[];;;;text;t2_9447i2uv;False;False;[];;I would still say you shouldn't because ethnic groups don't act as units. Like in this case a king many generations ago did that but no one still alive on the island is responsible for that;False;False;;;;1610354130;;False;{};giuvmlc;False;t3_kujurp;False;True;t1_gisxy01;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuvmlc/;1610403688;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610354148;;False;{};giuvni8;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuvni8/;1610403706;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;I think that’s also because the issues hit quite close to home. It’s really a political argument, not one about manga.;False;False;;;;1610354158;;False;{};giuvo0y;False;t3_kujurp;False;True;t1_gituuyl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuvo0y/;1610403717;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRFB_099;;;[];;;;text;t2_85gszqey;False;False;[];;The manga made a point to highlight this. The first cracks caused by Eren's transformation was cutting through the family that was watching through the balcony they showed earlier.;False;False;;;;1610354180;;False;{};giuvp2f;False;t3_kujurp;False;False;t1_git7ib0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuvp2f/;1610403735;11;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazerionX;;;[];;;;text;t2_d15hvpw;False;False;[];;Damn! Not even a day past and already 20k karma? Everyone really wants to destroy that record;False;False;;;;1610354311;;1610354454.0;{};giuvuse;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuvuse/;1610403882;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Spiceyhedgehog;;;[];;;;text;t2_143wk0;False;False;[];;"They said last season that if the titan is lost it will come back with a newborn child. So yea, I suppose you could. But it sounds unnecessarily cruel and impractical. - -Edit: I caen't spiel.";False;False;;;;1610354326;;1610359263.0;{};giuvvcv;False;t3_kujurp;False;True;t1_giu4s5n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuvvcv/;1610403892;2;True;False;anime;t5_2qh22;;0;[]; -[];;;catmeom;;;[];;;;text;t2_8crwsgoc;False;False;[];;"I mean EP 5 is where things pickup so... -There is going to be a solid one next week definitely could break these records";False;False;;;;1610354333;;False;{};giuvvl4;False;t3_kujurp;False;False;t1_giuuvlk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuvvl4/;1610403898;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Suchomemus;;;[];;;;text;t2_77xks1x8;False;False;[];;And then I'll kill the karma record;False;False;;;;1610354350;;False;{};giuvw7x;False;t3_kujurp;False;True;t1_giun32a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuvw7x/;1610403911;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sanic_de_hegehog;;MAL;[];;https://myanimelist.net/profile/sanic_de_hegehog;dark;text;t2_e028fcj;False;False;[];;"Hard agree... if only a certain studio starting with ""W"" and containing the letters ""it"" were animating this season. - -White Fox, we need you!";False;True;;comment score below threshold;;1610354374;;False;{};giuvx24;False;t3_kujurp;False;True;t1_giut7xa;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuvx24/;1610403930;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRFB_099;;;[];;;;text;t2_85gszqey;False;False;[];;It was those weird looking crystals in House Reiss' underground fortress where they do the transference of the founders. It was mentioned in passing that these rocks can fuel a bunch of shit (and iirc including the Thunder Spears).;False;False;;;;1610354404;;False;{};giuvy4j;False;t3_kujurp;False;True;t1_gitm1ee;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuvy4j/;1610403950;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fagotblower;;;[];;;;text;t2_b52cs;False;False;[];;It would have defended from any titan shifters entering the area though and as such the base and navy would not have been talen out. Especially since they had two trains.;False;False;;;;1610354408;;False;{};giuvya4;False;t3_kujurp;False;True;t1_giuq72g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuvya4/;1610403953;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;Those 20k predictions almost look cute now.;False;False;;;;1610354415;;False;{};giuvyip;False;t3_kujurp;False;False;t1_giuv79k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuvyip/;1610403957;33;True;False;anime;t5_2qh22;;0;[]; -[];;;MrKaru;;;[];;;;text;t2_f03pe;False;False;[];;"I'm not sure it's ever said why, outside of randomly deciding they want the power of the founder or the resources, which I find pretty lackluster. - -If it helps, it's my head Canon that after losing the prisoner ship and all its crew (kruger attack), they investigated to find a wreckage that could only have been done by a titan, and thus started worrying that paradis was beginning to make its move.";False;False;;;;1610354449;;False;{};giuw0o4;False;t3_kujurp;False;False;t1_gisjnrv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuw0o4/;1610403988;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Oxu90;;;[];;;;text;t2_yxh7y;False;False;[];;"Imagine ww2 like that? - -Hitler: *declares war against US* - -US: *insgantly detonates a nuke under Hitler's podium where he is given the war declaration speech - -Gg wp";False;False;;;;1610354452;;False;{};giuw0w9;False;t3_kujurp;False;True;t1_giu0ak3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuw0w9/;1610403991;1;True;False;anime;t5_2qh22;;0;[]; -[];;;deavsone;;;[];;;;text;t2_146329cg;False;False;[];;20k broken;False;False;;;;1610354483;;False;{};giuw2ol;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuw2ol/;1610404019;19;True;False;anime;t5_2qh22;;0;[]; -[];;;11Night;;;[];;;;text;t2_my6he90;False;False;[];;Nicely said;False;False;;;;1610354490;;False;{};giuw323;False;t3_kujurp;False;True;t1_giswl49;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuw323/;1610404025;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;On course for ~23.5k if it gets the same karma episode 1 did in between hours 14-48. Gonna need a big push to hit 25k but even if it doesn't I'm pretty sure later episodes will break it instead.;False;False;;;;1610354533;;False;{};giuw5g8;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuw5g8/;1610404063;28;True;False;anime;t5_2qh22;;0;[]; -[];;;no_fluffies_please;;;[];;;;text;t2_np0kt;False;False;[];;"> Now hold on a second are you pointing out fault in writing or the world or the characters - -The characters, of course. - -> just read the points just now you wrote - -The entirety of my previous comment was to refute the statement ""No one has a choice"". The points I listed were choices that people made. Can you elaborate on what you *thought* I was saying? - -> Just tell me, a little island that you can crush now if done carefully has a potential to flatten the whole world and all it takes is one pissed mother fucker, which unfortunately is here now. - -I'm not saying that the Tyburs were wrong to declare war- I'm saying they got themselves into a bad situation by not telling people the truth from the beginning, which lead to fanatics and a false sense of urgency to infiltrate Paradis, which lead to Paradis's walls being breached, which lead to fanatics from Paradis. By not leaving Paradis alone, they got themselves into the mess. If they were truly concerned, they should have had a contingency plan for the titans, *and then* sent the kids there. Or better yet, a diplomat or non-intervening scout. There was nothing to support the sense of urgency, because Paradis had been left alone for centuries. - -> He from what I know wanted his people to forget about the kind of monsters they were, what they did to the world and what they can do. Without the truth the island is a sanctuary, with the truth it's a prison and people don't like that. - -Guilt or not, this resulted in unnecessary death. Ignorance being bliss is certainly a valid point, but think of it this way: by wiping out history, you'd increase the probability of repeating it. Imagine if Germans isolated themselves and wiped WW2 from the history books. Or if Japan just straight up denied war crimes. By wiping out memories, you leave descendants to bicker about who the bad guys were or whether bad deeds were done, rather than 1. accepting that bad deeds should not be done 2. people who did the bad deeds aren't alive, and the descendants have no reason not to get along 3. that people should prevent bad deeds from occurring in the future. Instead, you get this toxic perpetuated nationalism, because people can't even agree on what actually happened. - -> Broadly gestures at the history of mankind. - -Yes, which is why I made those points. Again, the entirety of the previous comment was to refute the statement ""No one has a choice"". Maybe *now* they don't, but that's because they mess up. Even now, there is a choice everyone can make to make it *less* messed up. Even in real world history, you can place blame on people's harmful actions as either self-interested, misinformed, or short-sighted. - -> Fritz for guilt rather than hubris according to me - -I'm not disagreeing that Fritz was motivated more with guilt. Guilt is *fine*, look at Reiner. All I'm saying is that Fritz should be blamed for the hubris of believing that his plan was perfect, that he had all of Paradis in his control, and that his sense of guilt outweighed the lives and agency of others. Guilt did not lead to the above undesirable consequences, but his *hubris* did. - -> I missed the last line of blame sorry lol - -I should have read your whole comment before typing this out. Ah, I'll just comment it anyways. - -Yes, I agree the characters are human and I think this fallibility adds to the realism. But this is not a story where every character is blameless.";False;False;;;;1610354551;;1610355355.0;{};giuw68i;False;t3_kujurp;False;True;t1_giupfof;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuw68i/;1610404076;1;True;False;anime;t5_2qh22;;0;[]; -[];;;11Night;;;[];;;;text;t2_my6he90;False;False;[];;I laughed harder than I should have;False;False;;;;1610354558;;False;{};giuw6jb;False;t3_kujurp;False;True;t1_gisf892;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuw6jb/;1610404081;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sim0n2170;;;[];;;;text;t2_d8h9g;False;False;[];;20k!;False;False;;;;1610354632;;False;{};giuwa5v;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuwa5v/;1610404142;7;True;False;anime;t5_2qh22;;0;[]; -[];;;fagotblower;;;[];;;;text;t2_b52cs;False;False;[];;"Which was actually talked about as a mystery in the show why it went quite a bit underground. I didn't even figure that out. ^^` - - - Thought there might be tunnels.";False;False;;;;1610354646;;False;{};giuwau2;False;t3_kujurp;False;False;t1_giu4exb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuwau2/;1610404154;45;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRFB_099;;;[];;;;text;t2_85gszqey;False;False;[];;[Are you referring to this?](https://youtu.be/crQWX16ir0c?t=190);False;False;;;;1610354702;;False;{};giuwdqi;False;t3_kujurp;False;True;t1_giusumg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuwdqi/;1610404200;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rantae;;;[];;;;text;t2_h618l;False;False;[];;Did you forget about the Titans inside the walls? That was shown at the beginning of season 2;False;False;;;;1610354775;;False;{};giuwhwm;False;t3_kujurp;False;False;t1_giuuzy2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuwhwm/;1610404262;19;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Understanding1247;;;[];;;;text;t2_7kjy5jap;False;False;[];;"I totally agree with you , Eren really is smart . I gotta say for all the spoilers I heard and some unwanted things I know 'cause of social media . -I thought maybe that eren has become someone who doesn't think about anybody else let alone care . But the way he said to Reiner that they're both the same . It just made him one of my favourite protagonists , btw he was already in the list. -But he does know that nobody is right or wrong here , except ofcourse those marley higher up in the past and in the present . Both the sides just see the situation from a different angles and perspectives . -All the warriors had no choice .But when Willy announced that war he knew he also don't have a choice here , he just have to move forward no matter what.";False;False;;;;1610354816;;False;{};giuwk75;False;t3_kujurp;False;False;t1_gisrcy6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuwk75/;1610404293;4;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"The shifters took out the train inside the fort which took them by surprise, the train outside the fort they knew about they could've dealt with too. In any case there was already a plan to deal with the train, but it would've cost most of the Elidan troops' their lives. - -Her warcrime wasn't blowing up the train, it was pretending to be a civilian so she could blow it up.";False;False;;;;1610354823;;False;{};giuwkla;False;t3_kujurp;False;True;t1_giuvya4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuwkla/;1610404299;2;True;False;anime;t5_2qh22;;0;[]; -[];;;luffylando940;;;[];;;;text;t2_9j1dfd40;False;False;[];;I acc thought that she was tipping them off that the soldier was being dodgy;False;False;;;;1610354830;;False;{};giuwkzi;False;t3_kujurp;False;True;t1_gisctsk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuwkzi/;1610404305;3;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;The difference between our world and AOT is that every single Eldian is a walking Weapon of Mass destruction. No single human has the power to destroy the planet like in AoT.;False;False;;;;1610354857;;False;{};giuwmh3;False;t3_kujurp;False;False;t1_giuvmlc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuwmh3/;1610404330;4;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Understanding1247;;;[];;;;text;t2_7kjy5jap;False;False;[];;"Eren really is smart . I gotta say for all the spoilers I heard and some unwanted things I know 'cause of social media . I thought maybe that eren has become someone who doesn't think about anybody else let alone care . -But the way he said to Reiner that they're both the same . It just made him one of my favourite protagonists , btw he was already in the list. -But he does know that nobody is right or wrong here , except ofcourse those marley higher up in the past and in the present . Both the sides just see the situation from a different angles and perspectives . -All the warriors had no choice .But when Willy announced that war he knew he also don't have a choice here , he just have to move forward no matter what. -It's sad how he knows the gravity of what he is doing and how many innocent will suffer but nonetheless he has to do it... -But I think we still need more time to understand how this eren after this much time thinks and reacts.";False;False;;;;1610354863;;False;{};giuwmsk;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuwmsk/;1610404335;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Left-Chance-4564;;;[];;;;text;t2_7p92oo57;False;False;[];;"Holy shit, this did reach 20K.Congrats to the God of Karma. - -Now,I am really curious to see the last ep's karma lol";False;False;;;;1610354945;;False;{};giuwqw5;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuwqw5/;1610404401;24;True;False;anime;t5_2qh22;;0;[]; -[];;;ashutosh29;;;[];;;;text;t2_5w0dob4v;False;False;[];;Well I am glad I wasn't the only oen at least.;False;False;;;;1610354946;;False;{};giuwqy0;False;t3_kujurp;False;True;t1_giuw68i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuwqy0/;1610404402;2;True;False;anime;t5_2qh22;;0;[]; -[];;;XeroPT;;;[];;;;text;t2_65atb;False;False;[];;Nope.;False;False;;;;1610354963;;False;{};giuwrsr;False;t3_kujurp;False;True;t1_giukvz1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuwrsr/;1610404414;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sauike01;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sayukeroa;light;text;t2_1xl2a99x;False;False;[];;damn 20k as of now?! this isn't even the last😆 i can't wait for episode 16.;False;False;;;;1610354980;;False;{};giuwsns;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuwsns/;1610404429;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Nebula-Lynx;;;[];;;;text;t2_6mruvnzg;False;False;[];;He was. But has he said/thought.... just *how* old?;False;False;;;;1610355046;;False;{};giuwvyk;False;t3_kujurp;False;True;t1_gisbfys;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuwvyk/;1610404480;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GowtherETC;;;[];;;;text;t2_47ql3fom;False;False;[];;The karma count for this just keeps moving forward..;False;False;;;;1610355108;;False;{};giuwyu6;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuwyu6/;1610404526;37;True;False;anime;t5_2qh22;;0;[]; -[];;;Ijustwant2beok;;;[];;;;text;t2_xs5jr;False;False;[];;She did jokingly shoot her shot with with that one soldier after he had rebuked her because she was Eldian.;False;False;;;;1610355138;;False;{};giux0c6;False;t3_kujurp;False;True;t1_giswl35;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giux0c6/;1610404549;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Avscum;;;[];;;;text;t2_vk6ev;False;False;[];;"The funny part is that marley was technically the aggressors when they declared war. -It will be even more funny if they'll use that fact as diplomatic use in the future.";False;False;;;;1610355142;;False;{};giux0mf;False;t3_kujurp;False;True;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giux0mf/;1610404553;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nebula-Lynx;;;[];;;;text;t2_6mruvnzg;False;False;[];;Watching on Hulu, being unable to skip the Hulu mature content warning every single episode gets old :(;False;False;;;;1610355217;;False;{};giux4mu;False;t3_kujurp;False;False;t1_gisv209;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giux4mu/;1610404626;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GowtherETC;;;[];;;;text;t2_47ql3fom;False;False;[];;Wasn't he under a civilian building? That's still technically a war crime;False;False;;;;1610355221;;False;{};giux4wf;False;t3_kujurp;False;False;t1_giusg5u;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giux4wf/;1610404631;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Renegade_Jedi314;;;[];;;;text;t2_409sjlc;False;False;[];;Need to hang that in Hajime Isayama's office.;False;False;;;;1610355250;;False;{};giux6gt;False;t3_kujurp;False;True;t1_giu4141;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giux6gt/;1610404655;1;True;False;anime;t5_2qh22;;0;[]; -[];;;flyingkiwi46;;;[];;;;text;t2_br8yv;False;False;[];;">Then when the basement hit him, it changed him as a person - -[Spoiler source](/s ""Historia already changed Eren by accident."")";False;False;;;;1610355258;;1610355489.0;{};giux6xw;False;t3_kujurp;False;True;t1_gisgp6a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giux6xw/;1610404663;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lukwsk;;;[];;;;text;t2_2w8367ps;False;False;[];;I have been scrolling so why is no one pointing out who the the tall blonde soldier is?;False;False;;;;1610355308;;False;{};giux9qs;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giux9qs/;1610404704;19;True;False;anime;t5_2qh22;;0;[]; -[];;;ViperJoe;;;[];;;;text;t2_knoru;False;False;[];;Always has been.;False;False;;;;1610355335;;False;{};giuxb85;False;t3_kujurp;False;True;t1_gisqdjr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuxb85/;1610404728;2;True;False;anime;t5_2qh22;;0;[]; -[];;;conqueringdragon;;;[];;;;text;t2_11nm5laj;False;False;[];;Eren had hostages;False;False;;;;1610355361;;False;{};giuxcls;False;t3_kujurp;False;False;t1_gium8am;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuxcls/;1610404748;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Google-Meister;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SnakySenpai;light;text;t2_zm20o;False;False;[];;Eren is basically Sans?;False;False;;;;1610355362;;False;{};giuxcoj;False;t3_kujurp;False;True;t1_gisdgjm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuxcoj/;1610404749;2;True;False;anime;t5_2qh22;;0;[]; -[];;;vermouth2000;;;[];;;;text;t2_175hu6;False;False;[];;Holy shit, 20k in 14h, this episode is insane.;False;False;;;;1610355372;;False;{};giuxd3w;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuxd3w/;1610404755;36;True;False;anime;t5_2qh22;;0;[]; -[];;;Ijustwant2beok;;;[];;;;text;t2_xs5jr;False;False;[];;"Yeah, fat dude's face made me think she had just told him to come get them if something were to happen. - -Also, I think it might've been disguised Connie because the voice and facial structure did not match Armin (although the blonde hair did) and I don't think Pieck ever had a run in with Armin unless it was inside Marley, but she did see Connie when she rescued Reiner from the scouts";False;False;;;;1610355416;;False;{};giuxfih;False;t3_kujurp;False;False;t1_git560x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuxfih/;1610404793;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JAKZILLASAURUS;;;[];;;;text;t2_6c2ww;False;False;[];;Isn’t he the Warhammer Titan? He looked dead af but we don’t really know the extent of what shifters can survive in terms of physical damage do we?;False;False;;;;1610355427;;False;{};giuxg14;False;t3_kujurp;False;True;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuxg14/;1610404800;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CoolAsTheUnthawed;;;[];;;;text;t2_w2qhf;False;False;[];;oh :(;False;False;;;;1610355451;;False;{};giuxh2k;False;t3_kujurp;False;False;t1_giuv4gc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuxh2k/;1610404818;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ap_Sona_Bot;;;[];;;;text;t2_eqkfp;False;False;[];;Do we know the Ackermans are Eldian? It seems like that would be inconsistent with what we know about the Eldians and getting effected by the founding Titan;False;False;;;;1610355532;;False;{};giuxkxr;False;t3_kujurp;False;True;t1_gitk117;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuxkxr/;1610404882;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tubularical;;;[];;;;text;t2_otp6lx0;False;False;[];;"Manga reader here - -A lot of people agree with you. It is very very sad, but in a way that's good for the story.";False;False;;;;1610355576;;False;{};giuxn4i;False;t3_kujurp;False;True;t1_giswwnu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuxn4i/;1610404918;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ap_Sona_Bot;;;[];;;;text;t2_eqkfp;False;False;[];;Yeah hate to tell you this but if you're allying with Japan in a World War you're probably on the wrong side. China is definitely possible too.;False;False;;;;1610355603;;False;{};giuxohr;False;t3_kujurp;False;True;t1_gisz55m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuxohr/;1610404941;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TeixeiraJRT;;;[];;;;text;t2_x88v8;False;False;[];;I double dare dare you eldian!;False;False;;;;1610355614;;False;{};giuxp4x;False;t3_kujurp;False;True;t1_gitombq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuxp4x/;1610404951;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fagotblower;;;[];;;;text;t2_b52cs;False;False;[];;Oh right. I completely forgot that they had another plan for the train. That would probably have worked too and we would have more casualities in the end actually...;False;False;;;;1610355615;;False;{};giuxp6i;False;t3_kujurp;False;True;t1_giuwkla;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuxp6i/;1610404951;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610355631;;False;{};giuxpx5;False;t3_kujurp;False;True;t1_giux9qs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuxpx5/;1610404962;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;"I think it just surpassed the 24 hours karma & award records of Ep1 !!";False;False;;;;1610355643;;False;{};giuxqix;False;t3_kujurp;False;True;t1_giuqfye;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuxqix/;1610404972;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ViperJoe;;;[];;;;text;t2_knoru;False;False;[];;"Which only goes to reaffirm Eren's belief that they're the same, since they both willingly pushed themselves into hell in order to ""save the world"".";False;False;;;;1610355644;;False;{};giuxqje;False;t3_kujurp;False;False;t1_git75fp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuxqje/;1610404972;5;True;False;anime;t5_2qh22;;0;[]; -[];;;GeekyStuffLeaking;;;[];;;;text;t2_4z6iros;False;False;[];;And people still compare her to Annie, that's like comparing a ferret to a honey badger;False;False;;;;1610355690;;False;{};giuxsvr;False;t3_kujurp;False;False;t1_giudftl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuxsvr/;1610405009;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Lawvamat;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Lavamat;light;text;t2_pbxhw;False;False;[];;from what episode is that first screenshot?;False;False;;;;1610355777;;False;{};giuxwvl;False;t3_kujurp;False;True;t1_gise5nm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuxwvl/;1610405075;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ra7bii;;;[];;;;text;t2_3qybtmw3;False;False;[];;What was the detail of the hand, I understand it was initially cut but how did he transform from that, so you can inflict pain upon yourself and not transform initially? Just prolong it? And why until he shook hands with Reiner;False;False;;;;1610355812;;False;{};giuxyac;False;t3_kujurp;False;True;t1_gisklp9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuxyac/;1610405098;1;True;False;anime;t5_2qh22;;0;[]; -[];;;arafatnabi;;;[];;;;text;t2_ghvya;False;False;[];;Most popular theory right now is Armin got a growth spurt because of Colossal titan.;False;False;;;;1610355875;;False;{};giuy1ed;False;t3_kujurp;False;False;t1_giux9qs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuy1ed/;1610405147;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Ijustwant2beok;;;[];;;;text;t2_xs5jr;False;False;[];;Still a step forward. In S3 he couldn't tell that Hitch liked Marlo, when everyone was berating Marlo for not seeing the signs that she likes him.;False;False;;;;1610355877;;False;{};giuy1ie;False;t3_kujurp;False;False;t1_gitu9q6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuy1ie/;1610405148;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Record for both Karma and awards officially broken, another historical day for the sub, congratulations to everyone involved!;False;False;;;;1610355986;;False;{};giuy6lj;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuy6lj/;1610405232;26;True;False;anime;t5_2qh22;;0;[]; -[];;;XNicTigX;;;[];;;;text;t2_p4i48;False;False;[];;"Holy shit! It really did get over 20k karma! - -And this is just Ep5~now I wonder how many karma will the following Episodes and Ep16 is gonna get, AoT be breaking records left and right!";False;False;;;;1610355990;;False;{};giuy6qe;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuy6qe/;1610405234;22;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;GIVES US YOUR OIL;False;False;;;;1610356031;;False;{};giuy8i1;False;t3_kujurp;False;True;t1_giu50ap;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuy8i1/;1610405264;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;but that isnt genocide, genocide is trying to wipe out a ethnicity;False;False;;;;1610356053;;False;{};giuy9b6;False;t3_kujurp;False;False;t1_gitjhn9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuy9b6/;1610405280;3;True;False;anime;t5_2qh22;;0;[]; -[];;;zool714;;;[];;;;text;t2_11y457;False;False;[];;Congrats ?;False;False;;;;1610356253;;False;{};giuygge;False;t3_kujurp;False;False;t1_giuvni8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuygge/;1610405428;10;True;False;anime;t5_2qh22;;0;[]; -[];;;arnav1311;;;[];;;;text;t2_81mzmva;False;False;[];;"It isn't a false equivalence. And Reiner chose to commit those crimes, as he confessed. He is the same as Eren. Annie and Bertholdt were leaving, Reiner was selfish and wanted to be a hero. He wasn't doing it because of the brainwashing you are being too harsh on Eren and too forgiving of Reiner. - -Initially when Eren said I'm the same as you, he wasn't aware of what transpired after Marcel was eaten. He meant the ""I'm same as you"" as people who've seen both sides. They both know neither sides are devils, but just people. But when Reiner confessed as to why his mom died, Eren realized they are more same than he had initially thought. He knew he was going to commit a war crime. On his own volition. Reiner had just confessed he destroyed the walls because he wanted to be a hero, not because of anything else. The second time Eren says it, he says ""We really are the same"". - -Eren by no means is a ""hero"" after this. But then again, everyone has blood on their hands in the world of Aot. - -Idk if you are an anime only or a manga reader. Let's hope you change your view a bit in the future. Otherwise we can agree to disagree. It's okay to have differing opinions.";False;False;;;;1610356464;;False;{};giuynst;False;t3_kujurp;False;True;t1_gisu3rd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuynst/;1610405581;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sleek-Sword;;;[];;;;text;t2_3wrc7sdi;False;False;[];;Can’t wait for the mini-war next episode! LETS GO eren;False;False;;;;1610356595;;False;{};giuysfl;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuysfl/;1610405663;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610356600;;1610358871.0;{};giuysmb;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuysmb/;1610405667;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;arnav1311;;;[];;;;text;t2_81mzmva;False;False;[];;"""Eren is judged by the hammer of war"". Goosebumps in the preview.";False;False;;;;1610356657;;False;{};giuyupf;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuyupf/;1610405704;29;True;False;anime;t5_2qh22;;0;[]; -[];;;KUKLI1;;;[];;;;text;t2_162wod;False;False;[];;Are you talking about the hanged man who talks to Annie, Reiner and bertholdt scene? It was there in episode 3.;False;False;;;;1610356787;;False;{};giuyz99;False;t3_kujurp;False;False;t1_giuysmb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuyz99/;1610405788;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610356829;;False;{};giuz0ri;False;t3_kujurp;False;True;t1_giutzvq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuz0ri/;1610405818;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610356837;moderator;False;{};giuz127;False;t3_kujurp;False;False;t1_giuxpx5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuz127/;1610405824;8;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;The karma record *was* 20332 (taken at 48 hours), set by the first episode of this season.;False;False;;;;1610356855;;False;{};giuz1pw;False;t3_kujurp;False;True;t1_giums7c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuz1pw/;1610405835;3;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;This is war. You sometimes need to kill one to save a hundred. Classic trolley problem.;False;False;;;;1610356873;;False;{};giuz2e2;False;t3_kujurp;False;True;t1_git4dc5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuz2e2/;1610405847;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ButtholePasta;;;[];;;;text;t2_h1yde;False;False;[];;"I wonder if it's a MAPPA change or an in-story change that the Attack Titan's eyes are blue instead of green now. Or am I tripping and they were always blue? - -Edit: https://imgur.com/a/EbyIWaB";False;False;;;;1610356928;;1610386413.0;{};giuz4c3;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuz4c3/;1610405884;5;True;False;anime;t5_2qh22;;0;[]; -[];;;User12086;;;[];;;;text;t2_69jb2scc;False;False;[];;14 hours, 20.4 k;False;False;;;;1610356981;;False;{};giuz689;False;t3_kujurp;False;False;t1_giupzte;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuz689/;1610405918;3;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;Ep 1 broke the previous record in under 10 hours.;False;False;;;;1610357033;;False;{};giuz82l;False;t3_kujurp;False;True;t1_giuum5t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuz82l/;1610405951;2;True;False;anime;t5_2qh22;;0;[]; -[];;;autumnsnowflake_;;;[];;;;text;t2_3gzioiqr;False;False;[];;I liked that part in the trailer;False;False;;;;1610357096;;False;{};giuzaas;False;t3_kujurp;False;True;t1_gisac08;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuzaas/;1610405991;1;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;Don't know what you mean;False;False;;;;1610357177;;False;{};giuzd3q;False;t3_kujurp;False;False;t1_giuz2e2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuzd3q/;1610406048;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610357206;;False;{};giuze4j;False;t3_kujurp;False;True;t1_giucxoj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuze4j/;1610406066;1;True;False;anime;t5_2qh22;;0;[]; -[];;;farid4847;;;[];;;;text;t2_538xnsol;False;False;[];;Cake;False;False;;;;1610357279;;False;{};giuzgp1;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuzgp1/;1610406126;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Starpower14;;;[];;;;text;t2_4sdcut5f;False;False;[];;I’m anime only, but I’m pretty sure the dude who trapped Pieck and Porco was Armin, I haven’t seen him with a beard yet, but I mean the hair, the eyes, and the voice, it’s gotta be Armin;False;False;;;;1610357320;;False;{};giuzi59;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuzi59/;1610406154;12;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;"One of those cut scenes might be in the next episode. [spoilers](/s ""Apparently Willy's VA is listed for the next episode, and the carriage scene would be a decent way to start it. It would have been hard to fit in this episode."")";False;False;;;;1610357333;;False;{};giuzilt;False;t3_kujurp;False;False;t1_giuysmb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuzilt/;1610406163;10;True;False;anime;t5_2qh22;;0;[]; -[];;;DetectivePokeyboi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PokeyDeathBoi;light;text;t2_3or1e91u;False;False;[];;I thought it was all titans because they said at the end of season 3 that new titans stopped coming (because of the 4 year war that Marley was in. They stopped focusing on Paradis and instead on the people they were at war with.).;False;False;;;;1610357408;;False;{};giuzl7k;False;t3_kujurp;False;False;t1_giu46td;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuzl7k/;1610406209;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ShzMeteor;;;[];;;;text;t2_oj2ee;False;False;[];;"Chekhov's [~~gun~~](/s ""nuke"").";False;False;;;;1610357455;;False;{};giuzmv1;False;t3_kujurp;False;False;t1_gissd2g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuzmv1/;1610406239;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610357492;;False;{};giuzo4z;False;t3_kujurp;False;True;t1_giutzvq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuzo4z/;1610406263;2;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;Hello indeed Raviolla!;False;False;;;;1610357607;;False;{};giuzs2x;False;t3_kujurp;False;True;t1_giumvrm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuzs2x/;1610406333;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Martian_Pudding;;;[];;;;text;t2_345junqs;False;False;[];;Well that is if he figured out how to control them.;False;False;;;;1610357625;;False;{};giuzspl;False;t3_kujurp;False;True;t1_gisuhmp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuzspl/;1610406344;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ButtholePasta;;;[];;;;text;t2_h1yde;False;False;[];;"My speculation is that there was a woman offstage that had somewhat of a unique design and the shot rested on her and the stage actors when Willy looked offstage and said ""Stand there and watch. This is my atonement."" Unless she was an actress in the play also and I just missed her, she could also be the Warhammer. I don't think she was shown with the Tyburs when they were introduced though.";False;False;;;;1610357649;;False;{};giuztj7;False;t3_kujurp;False;True;t1_gisftec;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuztj7/;1610406360;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610357683;;False;{};giuzuo3;False;t3_kujurp;False;True;t1_giuxkxr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuzuo3/;1610406382;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aes110;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aes110;light;text;t2_jj27q;False;True;[];;"Well I've yet to see a single Marley person who didnt treat Eldians like shit and supported the oppression, so I'd like to see the good people he spoke about - -But in any case even if some small amount of the people there are good this is war and a sad sacrifice that Eren needed to make to release all of his people in the walls and the Eldians that are oppressed outside the walls. - -While Reiner saw that everyone in the walls were not devils, then why continue? Why would you destroy these innocent people and give the founding titan to the real devils that played you all your life, instead of joining the people of paradis? What did he need to achieve now? Even without going the paradis and seeing all of that, by that point as an adult he should have understand that the way he and his people are treated is not fair. - -I understand that the circumstances are difficult, and I dont consider Reiner to be like ""top 10 evil anime charcters"" or something like that. But I dont accept what he did, and for me him and Eren are not the same (at least for now)";False;False;;;;1610357696;;1610358053.0;{};giuzv3m;False;t3_kujurp;False;True;t1_gitor1y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuzv3m/;1610406390;0;True;False;anime;t5_2qh22;;0;[]; -[];;;not_martian;;;[];;;;text;t2_1korsrrj;False;False;[];;He means that it gained 20k in 48 hours;False;False;;;;1610357704;;False;{};giuzvf0;False;t3_kujurp;False;True;t1_giuz82l;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuzvf0/;1610406395;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;Anyone else spam watching all the reaction videos on youtube? Haha. What an episode.;False;False;;;;1610357750;;False;{};giuzwzw;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuzwzw/;1610406424;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Invoqwer;;;[];;;;text;t2_88vb3;False;False;[];;Oh, I didn't remember that. I thought she just yoinked Zieck and then bailed out. Hmm;False;False;;;;1610357790;;False;{};giuzydk;False;t3_kujurp;False;True;t1_giuvk9d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuzydk/;1610406450;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MyPrivateCollection;;;[];;;;text;t2_13uew7;False;False;[];;his stunted build is from being malnourished as a kid;False;False;;;;1610357791;;False;{};giuzyek;False;t3_kujurp;False;False;t1_gitkqrn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuzyek/;1610406450;16;True;False;anime;t5_2qh22;;0;[]; -[];;;_LadyForlorn;;;[];;;;text;t2_4yu1dg7c;False;False;[];;This is already 20.5k at 15hrs.;False;False;;;;1610357805;;False;{};giuzyvg;False;t3_kujurp;False;True;t1_giuz1pw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuzyvg/;1610406459;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ShzMeteor;;;[];;;;text;t2_oj2ee;False;False;[];;Hmm, I feel like the original has a better mix of sad/emotional and epic-ness. This one felt a bit too hype for this scene.;False;False;;;;1610357908;;False;{};giv02fr;False;t3_kujurp;False;False;t1_gitanyk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv02fr/;1610406521;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Silverkira;;;[];;;;text;t2_13ihl1;False;False;[];;remember founding titan's eyes are blue. i don't know anything but yeah this is something to take note of.;False;False;;;;1610357922;;False;{};giv02wy;False;t3_kujurp;False;False;t1_giuz4c3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv02wy/;1610406529;13;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610357924;;False;{};giv0304;False;t3_kujurp;False;True;t1_giuop6b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0304/;1610406531;1;True;False;anime;t5_2qh22;;0;[]; -[];;;not_martian;;;[];;;;text;t2_1korsrrj;False;False;[];;I think it only had worked like one time in the Manga , still that had a lot of depth to it .;False;False;;;;1610357925;;False;{};giv030e;False;t3_kujurp;False;True;t1_giupx0o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv030e/;1610406531;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GladHovercraft69420;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/satanluvstiddies/;light;text;t2_75bprk9q;False;False;[];;MaNgA ReAdErs ArEn'T AlLowED /s;False;False;;;;1610357936;;False;{};giv03f3;False;t3_kujurp;False;True;t1_gisamk0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv03f3/;1610406539;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silverkira;;;[];;;;text;t2_13ihl1;False;False;[];;i will keep moving forward.;False;False;;;;1610357955;;False;{};giv043v;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv043v/;1610406551;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ButtholePasta;;;[];;;;text;t2_h1yde;False;False;[];;Billie Eilish is just an Attack on Titan reference?;False;False;;;;1610357980;;False;{};giv04yu;False;t3_kujurp;False;True;t1_gisafs9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv04yu/;1610406566;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610358027;;False;{};giv06kb;False;t3_kujurp;False;True;t1_giuxkxr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv06kb/;1610406596;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Khazu_;;;[];;;;text;t2_r0uud3k;False;False;[];;RIP all other series lol.;False;False;;;;1610358077;;False;{};giv0891;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0891/;1610406627;16;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;then you should know they arent butchering her character lol;False;False;;;;1610358099;;False;{};giv08zi;False;t3_kujurp;False;False;t1_gitxgba;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv08zi/;1610406641;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ButtholePasta;;;[];;;;text;t2_h1yde;False;False;[];;It was really, really obvious in the episode where we see Reiner's perspective of the events of S1E1. An especially notable moment was when it showed the S1 animation of the Armored Titan charging and then cut to the current CG animation of the Armored Titan charging.;False;False;;;;1610358146;;False;{};giv0alb;False;t3_kujurp;False;False;t1_gitc40i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0alb/;1610406670;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610358211;;False;{};giv0crs;False;t3_kujurp;False;True;t1_giuxkxr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0crs/;1610406709;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Sorry /u/Trickslip, this comment has been removed because some spoiler tags did not include a description of the spoiler content inside the brackets. Please make sure to label all your spoilers so that other users know what is being spoiled and to ensure the visibility of the spoilers with mobile applications. - -[](#yanderebot) - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610358212;moderator;False;{};giv0ct3;False;t3_kujurp;False;True;t1_giv0crs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0ct3/;1610406709;1;False;False;anime;t5_2qh22;;0;[]; -[];;;00pirateforever;;;[];;;;text;t2_4jzj2ect;False;False;[];;Yes,If I remember correctly why he hanged was never stated clearly. And meaning behind what he told to warriors.;False;False;;;;1610358235;;False;{};giv0dli;False;t3_kujurp;False;True;t1_giuyz99;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0dli/;1610406725;0;True;False;anime;t5_2qh22;;0;[]; -[];;;capitan_spiff;;MAL;[];;http://myanimelist.net/animelist/capitan_spiff;dark;text;t2_jlcgo;False;False;[];;"Reiner: ""so you where camping here just for spawn killing? that's low"" - -Eren: ""ITS A LEGITIMATE STRATEGY!""";False;False;;;;1610358251;;False;{};giv0e4q;False;t3_kujurp;False;False;t1_gism1mw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0e4q/;1610406733;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Martian_Pudding;;;[];;;;text;t2_345junqs;False;False;[];;Has Eren tried to control titans while touching Historia though? It seemed to still take considerable effort when he did it, so just touching Historia casually doesn't really seem to prove to me that it wouldn't be possible if he tried. I never really understood why he concluded that the royal blooded person he touched would necessarily have to be a titan as well.;False;False;;;;1610358314;;False;{};giv0gbm;False;t3_kujurp;False;False;t1_gism93w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0gbm/;1610406775;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Bendtner6;;;[];;;;text;t2_klmye;False;False;[];;I WANT MORE.;False;False;;;;1610358347;;False;{};giv0hen;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0hen/;1610406794;12;True;False;anime;t5_2qh22;;0;[]; -[];;;00pirateforever;;;[];;;;text;t2_4jzj2ect;False;False;[];;You might be right. But I prefer before the episode for forshowding and build-up. There will be no point in next episode.;False;False;;;;1610358421;;False;{};giv0k0s;False;t3_kujurp;False;True;t1_giuzilt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0k0s/;1610406840;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DiaMat2040;;;[];;;;text;t2_2lszyi2t;False;False;[];;aren't the buildings full of Eldians...?;False;False;;;;1610358443;;False;{};giv0kth;False;t3_kujurp;False;True;t1_gisaxz3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0kth/;1610406854;1;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;"I think “we were born this way” is the official manga translation. - -Anyway from what I’ve seen, the official subs for this season haven’t been that great for both Crunchyroll and Funimation, Crunchyroll has been especially bad imo. So I wouldn’t use the subs for these two as a gold standard and compare Hulu to them.";False;False;;;;1610358467;;False;{};giv0ln3;False;t3_kujurp;False;False;t1_giuucnt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0ln3/;1610406869;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"Reiner wasn't saving anything - -Islanders were blind, stupid and completely harmless and helpless in their little animal enclosure until Reiner started the genocide in the name of his nation - -What Reiner did was unprovoked atrocity, what Eren did was war of survival";False;False;;;;1610358563;;False;{};giv0oyw;False;t3_kujurp;False;True;t1_giutykn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0oyw/;1610406928;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aytiti10892;;;[];;;;text;t2_193axrbq;False;False;[];;The VA was also fucking amazing;False;False;;;;1610358585;;False;{};giv0pqh;False;t3_kujurp;False;False;t1_gisbhcy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0pqh/;1610406941;13;True;False;anime;t5_2qh22;;0;[]; -[];;;bostonian38;;;[];;;;text;t2_12vydv1g;False;False;[];;"“Oh he’s gonna recruit Reiner to his cause.” - -“WHYSASUYEHEBSNSK”";False;False;;;;1610358605;;False;{};giv0qhl;False;t3_kujurp;False;False;t1_giuzwzw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0qhl/;1610406955;32;True;False;anime;t5_2qh22;;0;[]; -[];;;__Aishi__;;;[];;;;text;t2_8y05hl20;False;False;[];;Not even callbacks but from the very beginning Reiner emitted steam when injured like when he got “crushed” by the female titan;False;False;;;;1610358618;;False;{};giv0qx0;False;t3_kujurp;False;False;t1_gisvcjz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0qx0/;1610406963;2;True;False;anime;t5_2qh22;;0;[]; -[];;;space_cowboy27;;;[];;;;text;t2_28gsk4aj;False;False;[];;We've waited over a year for this to be animated. It didn't disappoint.;False;False;;;;1610358640;;False;{};giv0rp5;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0rp5/;1610406978;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;"Nonono he's just killing the higher ups. Everything else is would be.. uh, yeah ""collateral damage"", because they're unlucky, you know? Just like his mom and the rest of Paradisians who had to die to a bunch of ""distractions"". - -Such is war.";False;False;;;;1610358653;;False;{};giv0s5k;False;t3_kujurp;False;False;t1_giu0rdi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0s5k/;1610406985;6;True;False;anime;t5_2qh22;;0;[]; -[];;;bostonian38;;;[];;;;text;t2_12vydv1g;False;False;[];;Also the dude’s as tall as Joel Embiid;False;False;;;;1610358680;;False;{};giv0t3h;False;t3_kujurp;False;False;t1_giuzi59;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0t3h/;1610407002;8;True;False;anime;t5_2qh22;;0;[]; -[];;;mangodxb;;;[];;;;text;t2_8wchv86u;False;False;[];;Hey, I'm hosting an episode discussion at 3pm GMT on an app called Chai ([iOS](https://apps.apple.com/ae/app/chai-your-place-to-talk/id1535744829), [android](https://play.google.com/store/apps/details?id=ae.app.chai)). Feel free to join if you're an Attack on Titan fan! Anime-friendly, no spoilers.;False;False;;;;1610358720;;1610361325.0;{};giv0uhw;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0uhw/;1610407028;2;True;False;anime;t5_2qh22;;0;[]; -[];;;pixeldots;;;[];;;;text;t2_42hhj0qa;False;False;[];;Getting the cliff notes *AFTER* passing the reaction paper lol;False;False;;;;1610358769;;False;{};giv0w7b;False;t3_kujurp;False;False;t1_gistckf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0w7b/;1610407060;2;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;"Yes, hence ""was"" haha.";False;False;;;;1610358779;;False;{};giv0wit;False;t3_kujurp;False;True;t1_giuzyvg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0wit/;1610407065;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kupferkessel;;;[];;;;text;t2_55n0m693;False;False;[];;"I wonder, would he have stepped away, if the little play wouldn't have been a declaration of war, but a ""lets make peace""?";False;False;;;;1610358779;;False;{};giv0wjj;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0wjj/;1610407065;6;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"So was Eren's mother when Reiner & Co massacred her and everyone in the area after these fine folks sent them on their way to do their​ bloody bidding with cheers and celebration - -War is hell, shit happens as well as collateral damage";False;False;;;;1610358799;;False;{};giv0x9s;False;t3_kujurp;False;True;t1_giulyzl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0x9s/;1610407079;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ddd4175;;;[];;;;text;t2_dd7oy;False;False;[];;I feel like every single dialogue in this anime is so well thought out that most of it is intertwined with the entire story. Isayama's a savant;False;False;;;;1610358810;;False;{};giv0xmo;False;t3_kujurp;False;False;t1_gisafs9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0xmo/;1610407084;4;True;False;anime;t5_2qh22;;0;[]; -[];;;RekklesCami;;;[];;;;text;t2_3ozyz0ye;False;False;[];;And here I was thinking that episode 1 would be would not be dethroned. I can't wait to see what it will be like for episode 16;False;False;;;;1610358823;;False;{};giv0y5m;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv0y5m/;1610407093;17;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;Armin still had growing up to do, Eren is also taller now than before;False;False;;;;1610358890;;False;{};giv11e5;False;t3_kujurp;False;True;t1_giujvtu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv11e5/;1610407144;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KUKLI1;;;[];;;;text;t2_162wod;False;False;[];;But the manga didn't have those scenes either? It's assumed that everyone would be able to tell that he hanged himself out of guilt;False;False;;;;1610358947;;False;{};giv14h0;False;t3_kujurp;False;False;t1_giv0dli;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv14h0/;1610407189;7;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;"I didn't forget about them, I'm not saying it's an asspull in that sense. I'm saying that all in all it doesn't really mix together with the rest of the ""ruleset"" for how Titans work. It should be: there are mindless pure Titans, who are just Eldians injected with spinal fluid. And then there are the Nine, whose powers are passed when a pure Titan eats a previous owner, or in case of the owner's death, they just respawn in a random baby. Where do the colossals fit in this? All other Nine have unique appearances that aren't seen in any of the pure Titans. But the Colossal for some reason has a million pure Titans that look just like him, except they're also capable of hardening (hence the Walls). The entire power/magic system surrounding the Titans is a bunch of weird, convenient exceptions tacked on a relatively simple base. I don't mind it much because it makes for a good story about characters and conflict, but on its own, it makes very little internal sense.";False;True;;comment score below threshold;;1610358960;;False;{};giv15bv;False;t3_kujurp;False;True;t1_giuwhwm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv15bv/;1610407289;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;Sujallamichhaneakasl;;;[];;;;text;t2_3i2s1kbj;False;False;[];;"Yooo! Imagine when ""that"" chapter gets animated....the one that completely changed everything. Not to mention that will be the final episode of the season....I can't wait for millions of people to collectively lose their minds when we get ""Stand...."" animated.";False;False;;;;1610358968;;False;{};giv15pa;False;t3_kujurp;False;False;t1_giuvash;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv15pa/;1610407295;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ZedEarthnut;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ZedEarthnut;light;text;t2_dkyn9;False;False;[];;"Damn, I've read the manga, and know what's going to happen. But these episodes build up so much suspense! I don't know how anime-only watchers are able to withstand the urge to read the manga! - -I'm looking forward to watching each episode until the end!";False;False;;;;1610359012;;False;{};giv17y8;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv17y8/;1610407327;10;True;False;anime;t5_2qh22;;0;[]; -[];;;bostonian38;;;[];;;;text;t2_12vydv1g;False;False;[];;2volt;False;False;;;;1610359032;;False;{};giv18x3;False;t3_kujurp;False;False;t1_giur5y0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv18x3/;1610407341;2;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;"My point is that Ep 1 beat the previous record faster, so it will also probably have a larger increase from the previous record. Although I guess my logic would really apply more to the percentage increase, not the raw vote increase, since beating 15k by 6k is a bigger deal than beating 20k by 6k. - -Not sure how the early fansub release will affect that, though.";False;False;;;;1610359043;;False;{};giv19hx;False;t3_kujurp;False;True;t1_giuzvf0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv19hx/;1610407350;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Devilo94;;;[];;;;text;t2_g0ijo;False;False;[];;The next 2-3 episode going to be a fantastic battle. You guys are gonna love it;False;False;;;;1610359080;;False;{};giv1bbu;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv1bbu/;1610407377;23;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610359097;;False;{};giv1c4j;False;t3_kujurp;False;True;t1_giun77q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv1c4j/;1610407388;0;True;False;anime;t5_2qh22;;0;[]; -[];;;kiyotaka_07;;;[];;;;text;t2_8jgjs9s1;False;False;[];;"Most terrific scene of whole episode was - -""To be continued..."" - -I got pissed.";False;False;;;;1610359232;;1610359694.0;{};giv1ijd;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv1ijd/;1610407487;17;True;False;anime;t5_2qh22;;0;[]; -[];;;rjn_clrnc;;;[];;;;text;t2_3ijnakeu;False;False;[];;"Eren also saw good people outside of Paradis like Falco, but why did he still transform? - -""While Reiner saw that everyone in the walls were not devils, then why continue?"" - -Because just like Eren, he had no choice. He has his own priorities. His family lived inside the internment zone. They were treated poorly there before he became a warrior, and by completing his mission, they would become Honorary Marleyans. The Warriors knew the threat of the rumbling and the Founding Titan. By continuing his mission, he'll have save the world from the threat posed by ten million Colossal Titans. He knows that what he's doing is wrong. But again, what choice does he have? - -He can't just side with the Paradisians all willy nilly. Marley has the strongest Military Force in the world. One Armored Titan can't fight against Marley in its own. There are also titan shifters that are loyal to Marley like Pieck and Zeke (spoiler alert: Zeke has his own agenda) - Also, Marley isn't the only nation in the world that hates Eldians. In other countries, the Eldians there are treated far worse than how they're treated in Marley. Because the technology on the island is decades behind the tech in other nations, the only way that Paradis can fight against these nations is through the Rumbling [which would include the genocide of every single human outside Paradis (this is a manga spoiler)]. - - The people of Paradis aren't angels either. There are still corrupt people who are willing to use, enslave, and oppress others there.";False;False;;;;1610359316;;False;{};giv1mih;False;t3_kujurp;False;True;t1_giuzv3m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv1mih/;1610407547;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;"Yeah there's an obvious reference but Isayama didn't forget to switch it all up. The OG ""Nazi"" in the story were Eldians, and the OG ""Jews"" were the rest of the world. Then the Jews became the Nazi (Jewnazi) that oppressed the OG Nazi like they're some Jews (Nazijew). Then the head noble of the Nazijews is actually the leader of the Jewnazis from the shadow, and he hates his own people.";False;False;;;;1610359342;;False;{};giv1nu4;False;t3_kujurp;False;False;t1_gitcllj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv1nu4/;1610407565;11;True;False;anime;t5_2qh22;;0;[]; -[];;;00pirateforever;;;[];;;;text;t2_4jzj2ect;False;False;[];;It was explained in later chapters I think but the his story was build-up.;False;False;;;;1610359364;;False;{};giv1p1j;False;t3_kujurp;False;True;t1_giv14h0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv1p1j/;1610407583;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRandomRGU;;;[];;;;text;t2_f4f77;False;False;[];;One man gets mildly shook up? Maybe crunchyroll is trying to be very inclusive but this is a far cry from Goblin Slayer brutalisation and rape.;False;False;;;;1610359379;;False;{};giv1puv;False;t3_kujurp;False;True;t1_gitxqoo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv1puv/;1610407595;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;4 out of the 6 youtubers I've watched so far have all said something like that lmao.;False;False;;;;1610359388;;False;{};giv1qeb;False;t3_kujurp;False;False;t1_giv0qhl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv1qeb/;1610407603;20;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRandomRGU;;;[];;;;text;t2_f4f77;False;False;[];;The minimal gore I observed is much lower than so many other shows and episodes without a warning.;False;False;;;;1610359428;;False;{};giv1sgg;False;t3_kujurp;False;True;t1_gitz6i6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv1sgg/;1610407631;1;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;he got torn in half not “mildly shook up” lol;False;False;;;;1610359449;;False;{};giv1tln;False;t3_kujurp;False;True;t1_giv1puv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv1tln/;1610407648;1;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;"It's been built up for a while. Way back when they first learned about the Wall Titans, Armin said ""I have a feeling they may go for a walk some day"" around Chapter 34 or so.";False;False;;;;1610359567;;False;{};giv1zik;False;t3_kujurp;False;False;t1_git5usz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv1zik/;1610407737;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Ljh_;;;[];;;;text;t2_vo6evkl;False;False;[];;It was perfectly fit until you see the same scene with the season 4 trailer ost;False;False;;;;1610359587;;False;{};giv20gn;False;t3_kujurp;False;True;t1_giur5y0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv20gn/;1610407753;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rajendraac_13;;;[];;;;text;t2_2s4n5spc;False;False;[];;"THE GREATEST ANIME OF ALL TIME - -Isayama sensei the GOAT";False;False;;;;1610359594;;1610364230.0;{};giv20tc;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv20tc/;1610407759;19;True;False;anime;t5_2qh22;;0;[]; -[];;;ButtholePasta;;;[];;;;text;t2_h1yde;False;False;[];;I mean they kinda already were galvanized and consolidated against Paradis Eldians, especially now thanks to Willy's speech. Surprise attacking them here and killing multiple world leaders probably serves more overall benefit for Eren and gang even if it just causes the enemies to fully recognize the threat of the Paradis Eldians as that was likely to happen eventually anyways.;False;False;;;;1610359617;;False;{};giv21u5;False;t3_kujurp;False;True;t1_giutv35;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv21u5/;1610407775;3;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;3 years to be exact;False;False;;;;1610359631;;1610368195.0;{};giv22j0;False;t3_kujurp;False;False;t1_giv0rp5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv22j0/;1610407784;8;True;False;anime;t5_2qh22;;0;[]; -[];;;InstitutionalizedDon;;;[];;;;text;t2_jv00gvo;False;False;[];;One of the great episodes. It’s only getting better. I wish they had shown reiner’s face in the scene and the dialogue where falco says “you deceived me. i was encouraged by your words and i respected you”. I was so looking forward to this parallel as this is exactly what eren felt towards reiner in season 2.;False;False;;;;1610359647;;False;{};giv23ax;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv23ax/;1610407797;9;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;green ~blue;False;False;;;;1610359691;;False;{};giv25ex;False;t3_kujurp;False;False;t1_giuz4c3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv25ex/;1610407833;3;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;founding titans eyes are purple iirc;False;False;;;;1610359713;;False;{};giv26gr;False;t3_kujurp;False;True;t1_giv02wy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv26gr/;1610407851;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bahernandez02;;;[];;;;text;t2_zxkp3;False;False;[];;When i saw that it caught me off guard to the point it made me hyped for the reason that this is the first time the anime itself has ever placed a disclaimer within the episode signaling that all the horrifying things we have seen so far are just plain potatoes for whats to come. I just hope that this means that the censoreship will not be too bad in future episodes;False;False;;;;1610359752;;False;{};giv28cq;False;t3_kujurp;False;True;t1_gisv209;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv28cq/;1610407878;3;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;o7;False;False;;;;1610359975;;False;{};giv2k2t;False;t3_kujurp;False;True;t1_giuz127;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv2k2t/;1610408043;2;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;until all its enemies are destroyed;False;False;;;;1610359989;;False;{};giv2ktf;False;t3_kujurp;False;False;t1_giuwyu6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv2ktf/;1610408055;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;"What EP1 had to beat was 14K, EP5 had to beat a record 6K higher than that so of course it'd take a while longer. Not to mention there's no premiere hype and the episode thread going up early usually costs the discussion thread a good 1-2K karma. - - -We'd have to look at the karma rate to see how well it's doing compared to episode 1 though";False;False;;;;1610360013;;False;{};giv2m04;False;t3_kujurp;False;False;t1_giuz82l;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv2m04/;1610408073;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PogHero;;;[];;;;text;t2_85bgja6;False;False;[];;Yes, it was this. I'm guessing it's not known yet haha;False;False;;;;1610360016;;False;{};giv2m4u;False;t3_kujurp;False;False;t1_giuwdqi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv2m4u/;1610408075;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Melisaenn;;;[];;;;text;t2_zu13z;False;False;[];;"neverland and rezero already aired first episodes of new season so,, yeah - - -they are also insane, I have no idea how I'm gonna survive this winter with these anime tearing me apart";False;False;;;;1610360047;;False;{};giv2now;False;t3_kujurp;False;False;t1_giu85uq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv2now/;1610408098;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ButtholePasta;;;[];;;;text;t2_h1yde;False;False;[];;I don't think Eren is vindictive and wants to see Reiner suffer though. He's simply accepted the reality of the situation which is gonna involve killing innocents that Reiner cares about. Eren's just emotionally removed like Bertholdt right before he Bert Bombs in S3 part 2.;False;False;;;;1610360059;;False;{};giv2o9s;False;t3_kujurp;False;True;t1_giswntq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv2o9s/;1610408107;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BurcoPresents;;;[];;;;text;t2_3x4y3e13;False;False;[];;Yeah I know.;False;False;;;;1610360072;;False;{};giv2ovv;False;t3_kujurp;False;True;t1_giv2now;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv2ovv/;1610408115;2;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;Well, I'm basically saying I agree with you.;False;False;;;;1610360088;;False;{};giv2pmg;False;t3_kujurp;False;True;t1_giuzd3q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv2pmg/;1610408127;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;"I keep coming back to this thread in excitement, to see how many upvotes it has got. - -This is insane, goddamn, lets goooooo";False;False;;;;1610360096;;False;{};giv2q05;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv2q05/;1610408133;22;True;False;anime;t5_2qh22;;0;[]; -[];;;trowawufei;;;[];;;;text;t2_ifqvm;False;False;[];;TBF if a reputable leader told you that some random American dude had taken control of the U.S. nuclear arsenal, you'd probably consider mounting an invasion. Especially if no one else has nukes.;False;False;;;;1610360110;;False;{};giv2qok;False;t3_kujurp;False;True;t1_git2f7p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv2qok/;1610408143;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rk06;;;[];;;;text;t2_viqut;False;False;[];;yep, reiner did covered up for him. and you know reiner is plot armoured.;False;False;;;;1610360255;;False;{};giv2xv4;False;t3_kujurp;False;False;t1_giupejz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv2xv4/;1610408247;9;True;False;anime;t5_2qh22;;0;[]; -[];;;sanic_de_hegehog;;MAL;[];;https://myanimelist.net/profile/sanic_de_hegehog;dark;text;t2_e028fcj;False;False;[];;LMAO you guys have no sense of humour...;False;False;;;;1610360307;;False;{};giv30nf;False;t3_kujurp;False;True;t1_giuvx24;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv30nf/;1610408285;2;True;False;anime;t5_2qh22;;0;[]; -[];;;trowawufei;;;[];;;;text;t2_ifqvm;False;False;[];;Eren letting Reiner live is only explainable as an act of mercy to him / Falco. He could've killed Reiner when he begged for it and then eaten his spinal fluid. That reduces Marley to only four Titans and gives him Armored Titan abilities... not that they're worth much.;False;False;;;;1610360343;;False;{};giv32iy;False;t3_kujurp;False;False;t1_gisk3tf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv32iy/;1610408311;4;True;False;anime;t5_2qh22;;0;[]; -[];;;KUKLI1;;;[];;;;text;t2_162wod;False;False;[];;No actually, I just went and checked, it's basically identical to the anime, even the placement of the flashback in this episode was the same.;False;False;;;;1610360348;;False;{};giv32sm;False;t3_kujurp;False;False;t1_giv1p1j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv32sm/;1610408315;6;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRandomRGU;;;[];;;;text;t2_f4f77;False;False;[];;Not gonna lie you can hardly tell.;False;False;;;;1610360352;;False;{};giv32zg;False;t3_kujurp;False;True;t1_giv1tln;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv32zg/;1610408318;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cosplaylunatic;;;[];;;;text;t2_8awyhbgf;False;False;[];;Let's gooo!;False;False;;;;1610360406;;False;{};giv35rl;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv35rl/;1610408360;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ButtholePasta;;;[];;;;text;t2_h1yde;False;False;[];;"""THE SAME AS YOU""";False;False;;;;1610360412;;False;{};giv363j;False;t3_kujurp;False;True;t1_gisax5b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv363j/;1610408364;2;True;False;anime;t5_2qh22;;0;[]; -[];;;trowawufei;;;[];;;;text;t2_ifqvm;False;False;[];;Reiss and Fritz families are the same, just to clarify.;False;False;;;;1610360449;;False;{};giv37vb;False;t3_kujurp;False;True;t1_giu95o6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv37vb/;1610408390;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Marcoscb;;;[];;;;text;t2_9knzm;False;False;[];;Yes, in the deep, narrow well where it's explicitly stated in the episode that two titans can't transform and the Paradisians planned that. Sure, he's safe there.;False;False;;;;1610360522;;False;{};giv3be1;False;t3_kujurp;False;False;t1_gismgrx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv3be1/;1610408446;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Marcoscb;;;[];;;;text;t2_9knzm;False;False;[];;"> Which was actually talked about as a mystery in the show why it went quite a bit underground - -I mean, walls need a foundation as well. The key bit was that wall height + foundation = colossal titan height.";False;False;;;;1610360617;;False;{};giv3frx;False;t3_kujurp;False;False;t1_giuwau2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv3frx/;1610408514;40;True;False;anime;t5_2qh22;;0;[]; -[];;;Marcoscb;;;[];;;;text;t2_9knzm;False;False;[];;It may be true, but it also sounded like massive propaganda to make the Marleyans and Eldians even more afraid of Paradis.;False;False;;;;1610360700;;False;{};giv3k4h;False;t3_kujurp;False;True;t1_gisuhmp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv3k4h/;1610408580;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TurbTheCurb;;;[];;;;text;t2_eo71j;False;False;[];;Ok, this episode convinced me to watch attack on titan;False;False;;;;1610360788;;False;{};giv3ouz;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv3ouz/;1610408648;27;True;False;anime;t5_2qh22;;0;[]; -[];;;prashanth_03;;;[];;;;text;t2_33vwxh55;False;False;[];;Damn Eren is trending now with over 250k tweets;False;False;;;;1610360829;;False;{};giv3qyf;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv3qyf/;1610408682;32;True;False;anime;t5_2qh22;;0;[]; -[];;;trowawufei;;;[];;;;text;t2_ifqvm;False;False;[];;"That's not what they said, they said that hole was designed to trap any individual Titan shifter in it, *let alone* two. It's not limited to situations where you put two Titan shifters in it, that'd be a terrible trap. - -Given that Eren transformed without squishing himself (building isn't solid enough to keep him trapped), the same should be true if Reiner transforms.";False;False;;;;1610360883;;False;{};giv3tmf;False;t3_kujurp;False;False;t1_git8ul7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv3tmf/;1610408727;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Xavier93;;;[];;;;text;t2_yg6ey;False;False;[];;Well, if that reputable leader has been maintaining a 100 year old lie and his country has attacked the nuclear weapon base to take the nukes when they knew they were safe and would not be used, then yeah, I would not believe him.;False;False;;;;1610360888;;False;{};giv3tw9;False;t3_kujurp;False;False;t1_giv2qok;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv3tw9/;1610408732;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Nano201102;;;[];;;;text;t2_5vl5px2v;False;False;[];;Bruh this ep was so good that it shot this season to top 3 highest rated anime on MAL lmao;False;False;;;;1610360890;;False;{};giv3tzq;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv3tzq/;1610408732;21;True;False;anime;t5_2qh22;;0;[]; -[];;;trowawufei;;;[];;;;text;t2_ifqvm;False;False;[];;Or he transformed partially.;False;False;;;;1610360923;;False;{};giv3vl5;False;t3_kujurp;False;False;t1_gitco52;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv3vl5/;1610408758;15;True;False;anime;t5_2qh22;;0;[]; -[];;;S_N_I_P_E_R;;;[];;;;text;t2_hoii6jd;False;False;[];;holi shet;False;False;;;;1610360951;;False;{};giv3wy0;False;t3_kujurp;False;False;t1_gisafs9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv3wy0/;1610408779;4;True;False;anime;t5_2qh22;;0;[]; -[];;;trowawufei;;;[];;;;text;t2_ifqvm;False;False;[];;I think Armin was burnt to a crisp by the time Pieck was in a position to see him. But maybe the Cart has super-sharp eyesight, or some shit like that.;False;False;;;;1610361005;;False;{};giv3zin;False;t3_kujurp;False;False;t1_giuvaf0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv3zin/;1610408816;5;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazerionX;;;[];;;;text;t2_d15hvpw;False;False;[];;Came out December 2017 so it's 3 years;False;False;;;;1610361026;;False;{};giv40jn;False;t3_kujurp;False;False;t1_giv22j0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv40jn/;1610408830;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ZeroZelath;;;[];;;;text;t2_7wfvx290;False;False;[];;God this anime is so well written.;False;False;;;;1610361034;;False;{};giv40x0;False;t3_kujurp;False;False;t1_gisafs9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv40x0/;1610408836;6;True;False;anime;t5_2qh22;;0;[]; -[];;;mesmorized95;;;[];;;;text;t2_4dhyb3s3;False;False;[];;Man what a great episode I can’t wait for the next, we get to see what the Warhammer Titan looks like and I know things are about to pop off from hear on out I’m very excited! Truly an amazing anime I don’t want it to end...;False;False;;;;1610361053;;False;{};giv41sj;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv41sj/;1610408848;5;True;False;anime;t5_2qh22;;0;[]; -[];;;trowawufei;;;[];;;;text;t2_ifqvm;False;False;[];;The people at Liberio (Eldians in a ghetto) weren't actively planning a war, Willy Tybur and the Marleyans were.;False;False;;;;1610361057;;False;{};giv41xn;False;t3_kujurp;False;True;t1_giusqpj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv41xn/;1610408850;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;"You and the 20k people that upvoted this post, along with millions. - -Amazing attention to detail by everyone";False;False;;;;1610361072;;False;{};giv42mi;False;t3_kujurp;False;True;t1_giueq1n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv42mi/;1610408861;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;why did you spoil it for yourself?;False;False;;;;1610361100;;False;{};giv43zr;False;t3_kujurp;False;False;t1_giv3ouz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv43zr/;1610408880;28;True;False;anime;t5_2qh22;;0;[]; -[];;;JAKZILLASAURUS;;;[];;;;text;t2_6c2ww;False;False;[];;I agree. The armoured Titan specialises in hardening, I assume he can form a cocoon similar to Annie, he possibly was able to save Falco too perhaps.;False;False;;;;1610361327;;False;{};giv4g9o;False;t3_kujurp;False;True;t1_giso29p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv4g9o/;1610409058;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;"You do make a good point and I need to take my statement back. - -Thanks for correcting me";False;False;;;;1610361375;;False;{};giv4ipe;False;t3_kujurp;False;True;t1_gitg6pb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv4ipe/;1610409097;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JAKZILLASAURUS;;;[];;;;text;t2_6c2ww;False;False;[];;The armoured Titan specialises in hardening. It’s possible he created a cocoon similar to Annie in season 1. He may have even been able to save Falco.;False;False;;;;1610361439;;False;{};giv4lv4;False;t3_kujurp;False;True;t1_git8ul7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv4lv4/;1610409143;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PBTUCAZ;;;[];;;;text;t2_ldqak;False;False;[];;He just waited until after he transformed;False;False;;;;1610361475;;False;{};giv4npl;False;t3_kujurp;False;False;t1_gityihi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv4npl/;1610409170;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dalshiena;;;[];;;;text;t2_vdu3y;False;False;[];;"I’ve been waiting for Kaji Yuki’s take on S4 Eren and MANNNNN HE’s so amazing (as expected of Kaji Yuki-san 👈) - -REINER AND FALCO’s VA delivered stellar performances! - -I’ve waited for this moment since (approx) 3yrs ago";False;False;;;;1610361489;;False;{};giv4oef;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv4oef/;1610409180;19;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610361602;;False;{};giv4u9z;False;t3_kujurp;False;True;t1_giv2m4u;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv4u9z/;1610409267;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KrzyDankus;;;[];;;;text;t2_146zps;False;False;[];;16h and 21k karma, jesus christ;False;False;;;;1610361645;;False;{};giv4wqu;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv4wqu/;1610409302;19;True;False;anime;t5_2qh22;;0;[]; -[];;;trowawufei;;;[];;;;text;t2_ifqvm;False;False;[];;"Reiner was a child and indoctrinated to believe all this. Based on what he ""knew"", breaking Wall Maria was justifiable. He didn't exactly have the option of sashaying into the walls and getting to know the people there before deciding whether he would mass murder them. - -Eren's acting based on an accurate understanding of the situation. Based solely on their POV / prior beliefs, both were equally incorrect or correct... ish. Reiner could've applied more critical thinking to what he was told, but it's unreasonable to expect that of a brainwashed child.";False;False;;;;1610361705;;False;{};giv501n;False;t3_kujurp;False;False;t1_giv0oyw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv501n/;1610409350;6;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRFB_099;;;[];;;;text;t2_85gszqey;False;False;[];;That is a teaser for S4. It has yet to happen.;False;False;;;;1610361720;;False;{};giv50rx;False;t3_kujurp;False;True;t1_giv2m4u;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv50rx/;1610409360;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FeistyKnight;;;[];;;;text;t2_1twmffwo;False;False;[];;Just found out some manga readers are hating on the OST used. Wtf? I've never had a scene of a guy talking on stage captivate me as much as it did;False;False;;;;1610361797;;False;{};giv54qx;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv54qx/;1610409420;46;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610361833;;False;{};giv56mq;False;t3_kujurp;False;True;t1_giv3ouz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv56mq/;1610409448;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Chinbie;;;[];;;;text;t2_12h6erpy;False;False;[];;"Update comment: -We now have 21k karma upvotes and 5.0k conversation thread. Its real... The AOT hype is real and super dominant.";False;False;;;;1610361834;;False;{};giv56o3;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv56o3/;1610409448;19;True;False;anime;t5_2qh22;;0;[]; -[];;;iReddat420;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;weeb;dark;text;t2_15ekd8;False;False;[];;First we thought Falco was gonna inherit Reiner's Armor, but little did we know he was actually supposed to inherit Reiner's crippling depression and self-guilt!;False;False;;;;1610361954;;False;{};giv5cn3;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv5cn3/;1610409533;37;True;False;anime;t5_2qh22;;0;[]; -[];;;aquaglaceon;;;[];;;;text;t2_3ucsvv8x;False;False;[];;In a story where people transforms into titans, it's underwhelming to think about the little things. The stuff's there, the author crafted a nice storyline with what he could. It's too much of a hassle to become a expert in human biochemistry or whatnot to invent excuses of what's possible or not;False;False;;;;1610361969;;False;{};giv5dcy;False;t3_kujurp;False;False;t1_giv15bv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv5dcy/;1610409545;6;True;False;anime;t5_2qh22;;0;[]; -[];;;morgoth834;;;[];;;;text;t2_z8lg7;False;False;[];;It's mainly complaints about the OST used at the very end when Eren transforms and attacks Willy Tybur aka Grim Reminder 2.0. I, and many others, feel like that scene could have had more impact with better direction including a better choice for the OST. It's still a good scene, but it had the potential to be the best scene in the series.;False;False;;;;1610362001;;False;{};giv5f1f;False;t3_kujurp;False;True;t1_giv54qx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv5f1f/;1610409568;2;True;False;anime;t5_2qh22;;0;[]; -[];;;miksu210;;;[];;;;text;t2_110i2j;False;False;[];;I think there's a decent chance that aot s4 will become the new top anime. The entirety of aot is a bit different. I've read the manga, and I think the thing that might drag aot down is the early seasons being a lot weaker then 3 and 4. That's why I think it still will not be regarded as the best anime ever like FMAB is;False;False;;;;1610362010;;False;{};giv5fjs;False;t3_kujurp;False;True;t1_giuamjz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv5fjs/;1610409575;1;True;False;anime;t5_2qh22;;0;[]; -[];;;one-eyed-02;;;[];;;;text;t2_783k5oi0;False;False;[];;Agreed, I was pondering those differences too, but Willy here forms the same kind of linchpin to global politics, because of whose death all countries would wage war, the same way all of Europe got roped in in WW1. This time they would all be on the same side however.;False;False;;;;1610362063;;False;{};giv5igp;False;t3_kujurp;False;True;t1_git12vk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv5igp/;1610409614;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JayWilliamDe;;;[];;;;text;t2_vnmma;False;False;[];;I’m assuming she’s the one that allowed everyone from Paradise to hide out and receive the letters from Eren.;False;False;;;;1610362071;;False;{};giv5iz7;False;t3_kujurp;False;False;t1_gisiqhp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv5iz7/;1610409621;4;True;False;anime;t5_2qh22;;0;[]; -[];;;iReddat420;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;weeb;dark;text;t2_15ekd8;False;False;[];;"Reiner: Hey Falco you want my Armored Titan? - -Falco: Yes! I will save the girl I love! - -Reiner: Haha jokes on you have a slice of my crippling depression and unending self-guilt!";False;False;;;;1610362092;;False;{};giv5k4l;False;t3_kujurp;False;False;t1_giscnq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv5k4l/;1610409635;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_LadyForlorn;;;[];;;;text;t2_4yu1dg7c;False;False;[];;The Karma count just keeps moving forward.;False;False;;;;1610362105;;False;{};giv5kuy;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv5kuy/;1610409646;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Soliquidsnake;;;[];;;;text;t2_p7oxc;False;False;[];;Please ignore my manga reading brethren. Some of them are a bunch of stupid little shits that nitpick at absolutely anything. The episode could of had their OST of choice and they would still find something to complain about. They also complained about the Levi V Beast Titan OST from S3... enjoy the episode as you rightfully should :);False;False;;;;1610362153;;False;{};giv5nfv;False;t3_kujurp;False;False;t1_giv54qx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv5nfv/;1610409684;31;True;False;anime;t5_2qh22;;0;[]; -[];;;ElTalOscar;;;[];;;;text;t2_f9615;False;False;[];;[This guy](https://i.imgur.com/YgOR08I.png) was either really lucky or really unlucky.;False;False;;;;1610362188;;False;{};giv5p80;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv5p80/;1610409708;18;True;False;anime;t5_2qh22;;0;[]; -[];;;_LadyForlorn;;;[];;;;text;t2_4yu1dg7c;False;False;[];;MAKE SURE TO RATE THIS EPISODE IN IMDb AND MAL.;False;False;;;;1610362218;;False;{};giv5qr3;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv5qr3/;1610409729;15;True;False;anime;t5_2qh22;;0;[]; -[];;;TurbTheCurb;;;[];;;;text;t2_eo71j;False;False;[];;I saw that this had like 20,000 upvotes so I decided to see what the hype was about and man it did not disappoint, starting episode 1 tomorrow;False;False;;;;1610362229;;False;{};giv5rag;False;t3_kujurp;False;False;t1_giv43zr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv5rag/;1610409737;14;True;False;anime;t5_2qh22;;0;[]; -[];;;FeistyKnight;;;[];;;;text;t2_1twmffwo;False;False;[];;"Ah ,i can kinda see that ig. But personally i don't think that a more ""hype"" owt would necessarily add to this moment despite how hype it was. (I read that back, and it sounds incredibly stupid, but yea)";False;False;;;;1610362257;;False;{};giv5spd;False;t3_kujurp;False;False;t1_giv5f1f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv5spd/;1610409758;3;True;False;anime;t5_2qh22;;0;[]; -[];;;trowawufei;;;[];;;;text;t2_ifqvm;False;False;[];;Did they know they were safe? Someone took out their ship carrying the Eldian restorationists 22 years ago, with no surviving witnesses to explain wtf happened, if the restorationists died, how the ship was destroyed, etc. They know the Attack Titan is still at large. Probably won't put 2 and 2 together but there's still cause for concern from each of these separate issues. Especially if they know that the Attack Titan's deal is maximum FREEDOM.;False;False;;;;1610362257;;False;{};giv5spg;False;t3_kujurp;False;True;t1_giv3tw9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv5spg/;1610409758;2;True;False;anime;t5_2qh22;;0;[]; -[];;;banned-for-no_reason;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/--Degenerate--;dark;text;t2_6pics463;False;False;[];;Eren is a bad guy. He was spawn camping.;False;False;;;;1610362335;;False;{};giv5wl3;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv5wl3/;1610409814;23;True;False;anime;t5_2qh22;;0;[]; -[];;;PsychoanalyticalPsi;;;[];;;;text;t2_nx90g76;False;False;[];;Eren transformed BEFORE Willy declared war.;False;False;;;;1610362380;;False;{};giv5yq0;False;t3_kujurp;False;False;t1_giusg5u;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv5yq0/;1610409844;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ihei47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JuuzouXIII;light;text;t2_3dhujs;False;False;[];;This is like the 2nd most upvoted episode discussion on this sub, and just behind episode 60 (S4 episode 1) by 1-2k lol;False;False;;;;1610362387;;False;{};giv5z2y;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv5z2y/;1610409850;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Khazu_;;;[];;;;text;t2_r0uud3k;False;False;[];;It feels so good. In 2017 we didn't even know if we ever get season 2... And now here we are on the final season witnessing the end of the story. Feels so good to be fan of this series. Always rewarded by Isayama and studio working on the series :).;False;False;;;;1610362406;;False;{};giv601u;False;t3_kujurp;False;False;t1_giv4oef;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv601u/;1610409865;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Silverkira;;;[];;;;text;t2_13ihl1;False;False;[];;no in titan form eren had these eyes in s1 too at the end.;False;False;;;;1610362414;;False;{};giv60el;False;t3_kujurp;False;True;t1_giv26gr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv60el/;1610409870;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PsychoanalyticalPsi;;;[];;;;text;t2_nx90g76;False;False;[];;That was when Willy said he was born into this world.;False;False;;;;1610362456;;False;{};giv62mi;False;t3_kujurp;False;True;t1_giuovj9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv62mi/;1610409901;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JapanCode;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TheJapanCode/;light;text;t2_bmu83;False;False;[];;"So I'm not fully up to date with the manga (further than the anime is, though). I'm curious, now that we know exactly what chapter the manga will end, is it possible that these 16 episodes will adapt it all? And if not, would there be enough material for a ""season 4 the final season, part 2""? A movie maybe? What do you think?";False;False;;;;1610362483;;False;{};giv6441;False;t3_kujurp;False;True;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv6441/;1610409920;1;True;False;anime;t5_2qh22;;0;[]; -[];;;decapiter;;;[];;;;text;t2_2mbzwkbl;False;False;[];;Reiner can transform. We may not see it but it is plausible.;False;False;;;;1610362567;;False;{};giv68ya;False;t3_kujurp;False;True;t1_giuq8dj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv68ya/;1610409982;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FeistyKnight;;;[];;;;text;t2_1twmffwo;False;False;[];;Agreed, this would have been like an abrupt stop to the slow build up throughout the episode. The original flows into it it flawlessly;False;False;;;;1610362571;;False;{};giv6962;False;t3_kujurp;False;False;t1_giv02fr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv6962/;1610409985;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Rachekocht;;;[];;;;text;t2_4sfh3dxf;False;False;[];;Just like Eren.;False;False;;;;1610362578;;False;{};giv69ka;False;t3_kujurp;False;True;t1_giu29xo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv69ka/;1610409991;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pranavmanu;;;[];;;;text;t2_12h5fo24;False;False;[];;Username checks out :p;False;False;;;;1610362580;;False;{};giv69my;False;t3_kujurp;False;True;t1_giugjhi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv69my/;1610409992;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sim04ful;;;[];;;;text;t2_qamm7;False;False;[];;Not that simple;False;False;;;;1610362581;;False;{};giv69pf;False;t3_kujurp;False;True;t1_git941a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv69pf/;1610409993;1;True;False;anime;t5_2qh22;;0;[]; -[];;;S44F4Y4T;;;[];;;;text;t2_4vm73cj4;False;False;[];;"Reiner:kill me eren -Eren:no -Willy:i want to live cause i born into this world -Eren:no";False;False;;;;1610362582;;False;{};giv69sk;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv69sk/;1610409994;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Crack_bby;;;[];;;;text;t2_1vbp2kfi;False;False;[];;You are in for a good fucking ride;False;False;;;;1610362589;;False;{};giv6a53;False;t3_kujurp;False;False;t1_giv5rag;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv6a53/;1610409999;9;True;False;anime;t5_2qh22;;0;[]; -[];;;ElTalOscar;;;[];;;;text;t2_f9615;False;False;[];;"Me - - ‏‏‎ ‏‏‎ ‏‏‎ ‏‏‎ ‏‏‎ ‏‏‎ ‏‏‎ ‏‏‎ ‏‏‎ ‏‏‎ The consequences of my own actions";False;False;;;;1610362594;;False;{};giv6aek;False;t3_kujurp;False;True;t1_giscm9k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv6aek/;1610410002;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Soliquidsnake;;;[];;;;text;t2_p7oxc;False;False;[];;The scene was amazing as it was and it is the best scene in the series for a lot of people already. Stop coming in here and raining on anime-onlies parade just because your fav OST wasn’t used when you wanted it. Manga readers have had years of anticipation for this scene and that in itself creates a lot of expectations which is made worse by how long the time in between the manga and anime happens.;False;False;;;;1610362606;;False;{};giv6b11;False;t3_kujurp;False;False;t1_giv5f1f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv6b11/;1610410010;12;True;False;anime;t5_2qh22;;0;[]; -[];;;evilresurgence4;;;[];;;;text;t2_3hd7gero;False;False;[];;Of course, a lot of upvotes = a lot of downvotes.;False;False;;;;1610362628;;False;{};giv6c4x;False;t3_kujurp;False;True;t1_giv5z2y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv6c4x/;1610410026;0;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;He only seems have some memories, as he remembered bits of his dad's life and how the titan that killed his mom was his dad's ex-wife. He called it the great link.;False;False;;;;1610362647;;False;{};giv6d55;False;t3_kujurp;False;True;t1_giuicg2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv6d55/;1610410041;3;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;He did look more like Connie to me too... We'll find out next episode I guess.;False;False;;;;1610362757;;False;{};giv6int;False;t3_kujurp;False;True;t1_giuvaf0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv6int/;1610410135;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ihei47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JuuzouXIII;light;text;t2_3dhujs;False;False;[];;98% Upvoted at this moment;False;False;;;;1610362830;;False;{};giv6ma8;False;t3_kujurp;False;False;t1_giv6c4x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv6ma8/;1610410202;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Ganondurf4262;;;[];;;;text;t2_69300sor;False;False;[];;"Amazing episode, Willy's speech gave me chills. I feel bad for Falco, kid was just being kind and helpful to a hobo, but he had no idea what he was doing - -I'm so late to the thread but holy damn, it's still so active comment wise - - -The karma count, the comment count, the awards count, everything got annihilated";False;False;;;;1610362889;;1610363958.0;{};giv6p7v;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv6p7v/;1610410260;15;True;False;anime;t5_2qh22;;0;[]; -[];;;aes110;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aes110;light;text;t2_jj27q;False;True;[];;I appreciate you point of view and our conversation, but please cover up your manga spoilers, maybe you tried and it dosent work right. I'm an anime only and while sadly I already heard about what you described there is no reason to ruin it for others;False;False;;;;1610362889;;False;{};giv6p8s;False;t3_kujurp;False;True;t1_giv1mih;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv6p8s/;1610410260;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ganondurf4262;;;[];;;;text;t2_69300sor;False;False;[];;Some folks can never be satisfied;False;False;;;;1610362962;;False;{};giv6ta2;False;t3_kujurp;False;False;t1_giv54qx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv6ta2/;1610410317;19;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610363007;;False;{};giv6vtg;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv6vtg/;1610410353;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThatBeastFromRP;;;[];;;;text;t2_l1gled1;False;False;[];;Somebody please explain this, and if it requires spoiling just say that I’ll learn eventually. My question is: If King Fritz’s will was to NOT start a war or attack, and that this will was “inherited” as Willy said in this episode’s grand speech. Why is Eren with the Founding Titan an exception? Does King Fritz’s peaceful will only apply to his descendants? Did he guarantee that his offspring and so on won’t attack? I am confused.;False;False;;;;1610363048;;False;{};giv6xz9;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv6xz9/;1610410382;1;True;False;anime;t5_2qh22;;0;[]; -[];;;morgoth834;;;[];;;;text;t2_z8lg7;False;False;[];;Where did I rain on anyone's parade? This was my first post in this thread and I was answering someone's question. I even said the scene in question as good, but I suppose even the barest amount of criticism is unacceptable.;False;False;;;;1610363054;;False;{};giv6yad;False;t3_kujurp;False;False;t1_giv6b11;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv6yad/;1610410386;7;True;False;anime;t5_2qh22;;0;[]; -[];;;SurveyLiving;;;[];;;;text;t2_5pi9rxqd;False;False;[];;"Normal World : Holy Christ -Marley: Holy Helos";False;False;;;;1610363057;;False;{};giv6ygy;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv6ygy/;1610410389;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Downvote_me_2_Upvote;;;[];;;;text;t2_2hkwnjv2;False;False;[];;So you're saying Eren is like [Umaru?](https://thumbs.gfycat.com/ImpossibleFabulousFairybluebird-size_restricted.gif), because she is a seinen protagonist too.;False;False;;;;1610363096;;False;{};giv70ih;False;t3_kujurp;False;True;t1_git956y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv70ih/;1610410419;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KUKLI1;;;[];;;;text;t2_162wod;False;False;[];;Yes, it only applies to his descendants.;False;False;;;;1610363181;;False;{};giv74u8;False;t3_kujurp;False;False;t1_giv6xz9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv74u8/;1610410484;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Runbern;;;[];;;;text;t2_77cqfhat;False;False;[];;The vow to renounce war only bounds those with royal blood, of which Eren has none. Which is why Marley considers him a threat.;False;False;;;;1610363229;;False;{};giv777y;False;t3_kujurp;False;False;t1_giv6xz9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv777y/;1610410518;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Soliquidsnake;;;[];;;;text;t2_p7oxc;False;False;[];;I was speaking in broad terms. Doesn’t take a long search to see many folks from r/Titanfolk coming in here bashing the OST. The OST at the end is not really a criticism that’s valid since the only reason most criticize it is because it wasn’t YOUSEEBIGGIRL.;False;False;;;;1610363245;;False;{};giv7808;False;t3_kujurp;False;False;t1_giv6yad;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv7808/;1610410531;8;True;False;anime;t5_2qh22;;0;[]; -[];;;gridemann;;;[];;;;text;t2_dhsy2;False;False;[];;21k+ Upvotes in less than 24h, damn Reddit, keep it coming. The hype is REAL !;False;False;;;;1610363291;;False;{};giv7a97;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv7a97/;1610410564;31;True;False;anime;t5_2qh22;;0;[]; -[];;;Ganondurf4262;;;[];;;;text;t2_69300sor;False;False;[];;Enjoy the show, First Season was already great but it only gets better and better with more episodes;False;False;;;;1610363350;;False;{};giv7d5j;False;t3_kujurp;False;False;t1_giv5rag;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv7d5j/;1610410607;6;True;False;anime;t5_2qh22;;0;[]; -[];;;engrng;;;[];;;;text;t2_2ug1emh;False;False;[];;"Thanks for this. This is an amazing post for people who have forgotten what was explained in earlier episodes. I have a few questions: - -1. Why are the 9 Titans the only ones that remain sentient while all other Eldians that are turned into Titans become mindless? - -2. Can the Founding Titan control the other 8 Titans? - -3. I don’t quite get Willy Tybur’s motives. He knows that Marley erred in attacking the peaceful Paradis so why didn’t he stop it back then and why is he now intent on destroying them? - -4. Wasn’t Eren using the Founding Titan power back in the earlier seasons when he was in Attack Titan form and commanded them to run at the enemies or something? And I believe he did something similar when he was in human form as well when he stopped a Titan from attacking him and a friend? - -5. How was Fritz able to enforce the pacifism ideal on his descendants? Was it through the power of the Founding Titan? Does it only affect those of royal blood? If so, why does this not affect Zeke who also has royal blood? - -6. What happened to Annie and her Titan? Was it not ever explained?";False;False;;;;1610363366;;False;{};giv7dzw;False;t3_kujurp;False;True;t1_gismb1y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv7dzw/;1610410621;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;It's the highest now, beat EP1'S 48 hour record by 1K;False;False;;;;1610363384;;False;{};giv7ex8;False;t3_kujurp;False;False;t1_giv5z2y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv7ex8/;1610410633;13;True;False;anime;t5_2qh22;;0;[]; -[];;;synmotopompy;;;[];;;;text;t2_oykbw;False;False;[];;"I don't know, this was hyped out to be the greatest AoT episode ever, however to my eyes, nothing spectacular happened. The only """"""dead"""""" person is Willy Tybur, and come on, it's obvious that he's the Warhammer Titan so he's not really dead, he's going to shift any second now.";False;True;;comment score below threshold;;1610363394;;False;{};giv7fho;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv7fho/;1610410640;-36;True;False;anime;t5_2qh22;;0;[]; -[];;;nisemonomk;;;[];;;;text;t2_jc3qp;False;False;[];;i didn't notice the 3d Eren Titan that was very well done;False;False;;;;1610363422;;False;{};giv7h3v;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv7h3v/;1610410661;20;True;False;anime;t5_2qh22;;0;[]; -[];;;not_martian;;;[];;;;text;t2_1korsrrj;False;False;[];;"King fritz made the vow to renounce war so he and his descendants won't be able to activate the collosal titans to rumble the world as they are bound by the vow (only applies to the royal family) . -As eren is not a member of the royal family and has the founding Titan , Marley believes that he can activate the rumbling and destroy the world at any point of time .";False;False;;;;1610363424;;False;{};giv7h7g;False;t3_kujurp;False;False;t1_giv6xz9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv7h7g/;1610410663;16;True;False;anime;t5_2qh22;;0;[]; -[];;;MasterOfChaos6;;;[];;;;text;t2_16xnfi;False;False;[];;Climax? Season 4 is just getting started.;False;False;;;;1610363506;;False;{};giv7ltl;False;t3_kujurp;False;False;t1_giukvz1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv7ltl/;1610410725;4;True;False;anime;t5_2qh22;;0;[]; -[];;;not_martian;;;[];;;;text;t2_1korsrrj;False;False;[];;All I can say is wait for the next episode . But nice assumptions you got there .;False;False;;;;1610363506;;False;{};giv7ltn;False;t3_kujurp;False;False;t1_giv7fho;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv7ltn/;1610410725;18;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;No, this episode's discussion thread has become the most upvoted discussion thread in r/anime as only upvotes from the first 48 hours after the release of the episode are counted. EP 1 had around 20.3K upvotes.;False;False;;;;1610363539;;False;{};giv7nis;False;t3_kujurp;False;False;t1_giv5z2y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv7nis/;1610410747;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;"We don't hate it but we do feel the OST could have used a bit more oomph. -The scene is incredible, OST is the last thing that would affect an anime only's enjoyment and even for us manga readers the OST wasn't a terrible choice, we were just expecting something more powerful.";False;False;;;;1610363550;;False;{};giv7o53;False;t3_kujurp;False;False;t1_giv54qx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv7o53/;1610410756;5;True;False;anime;t5_2qh22;;0;[]; -[];;;cherishhoseok;;;[];;;;text;t2_170ges;False;False;[];;uhmm just wait for the next ep lmaoo;False;False;;;;1610363605;;False;{};giv7qyh;False;t3_kujurp;False;False;t1_giv7fho;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv7qyh/;1610410796;19;True;False;anime;t5_2qh22;;0;[]; -[];;;BestEve;;;[];;;;text;t2_aj93t;False;False;[];;Hype titan is rampaging here just like Eren in AoT.;False;False;;;;1610363655;;False;{};giv7tjv;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv7tjv/;1610410833;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Ganondurf4262;;;[];;;;text;t2_69300sor;False;False;[];;When Eren transformed there, didn't he just destroyed the whole building full of people !! So, Willy isn't the only one dead, and we aren't sure whether he's dead or not;False;False;;;;1610363758;;False;{};giv7yk3;False;t3_kujurp;False;False;t1_giv7fho;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv7yk3/;1610410911;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Wolfofdoom3;;;[];;;;text;t2_1c68nd;False;False;[];;"Did you forget Rod's titan was twice as big as the colossus? - -Or that Eren's titan looks like a normal titan that is just a bit more muscular? What do you think is the difference between Pieck's titan and a normal one? - -Remember how the soldier that killed Grisha's sister said he was going to turn somebody into a 3 meter titan? They can choose how big they make them. - -Anyway, you will see how titan powers actually manifest this season and let me tell you, it will make a lot more sense when you do.";False;False;;;;1610363759;;False;{};giv7yly;False;t3_kujurp;False;False;t1_giv15bv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv7yly/;1610410911;18;True;False;anime;t5_2qh22;;0;[]; -[];;;IC2Flier;;;[];;;;text;t2_wnxu2v6;False;False;[];;Pixis breaking down Blinding Lights, then?;False;False;;;;1610363825;;False;{};giv81zo;False;t3_kujurp;False;True;t1_giuhc0i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv81zo/;1610410958;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rollin340;;;[];;;;text;t2_cmyef;False;False;[];;"Just to make it very clear, what Eren did was technically not a war crime, but legal. He attacked the leader of the nation that declared war his nation AFTER that declaration. Totally legal. :X - -#\#ErenDidNothingWrong";False;False;;;;1610363847;;1610363966.0;{};giv83bk;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv83bk/;1610410976;38;True;False;anime;t5_2qh22;;0;[]; -[];;;ItchyPlatypus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ItchyPlatypus;light;text;t2_x6uza5h;False;False;[];;Gild war of Winter 2019 should have some over 500;False;False;;;;1610363851;;False;{};giv83ji;False;t3_kujurp;False;True;t1_giupjaa;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv83ji/;1610410979;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610363871;;False;{};giv84pf;False;t3_kujurp;False;True;t1_giv1c4j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv84pf/;1610410993;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;We need 1K more comments to break the previous comment record and around 90 some awards to reach to 1000 awards.;False;False;;;;1610363902;;False;{};giv86gl;False;t3_kujurp;False;True;t1_giv56o3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv86gl/;1610411017;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ThatBeastFromRP;;;[];;;;text;t2_l1gled1;False;False;[];;Thanks so much. May I also ask if the royal blood is key to using the full abilities of the Founding Titan? Or such condition does not exist?;False;False;;;;1610363922;;False;{};giv87k2;False;t3_kujurp;False;False;t1_giv777y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv87k2/;1610411033;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThatBeastFromRP;;;[];;;;text;t2_l1gled1;False;False;[];;Thanks!!!;False;False;;;;1610363935;;False;{};giv88bl;False;t3_kujurp;False;True;t1_giv7h7g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv88bl/;1610411043;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Notchmeister;;;[];;;;text;t2_36jo87s9;False;False;[];;Eren did nothing wrong;False;False;;;;1610363948;;False;{};giv890d;False;t3_kujurp;False;False;t1_giv83bk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv890d/;1610411053;6;True;False;anime;t5_2qh22;;0;[]; -[];;;jcruz18;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/jcruz13;light;text;t2_qqttp;False;False;[];;"> The only """"""dead"""""" person is Willy Tybur - -They've only been at war for literally one second lmao";False;False;;;;1610363954;;False;{};giv89ba;False;t3_kujurp;False;False;t1_giv7fho;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv89ba/;1610411058;32;True;False;anime;t5_2qh22;;0;[]; -[];;;sM92Bpb;;;[];;;;text;t2_ecl7n;False;False;[];;"1. So even though that Eren has the founding titan, he still can't use it? Is he able to choose to transform into the attack or founding titan? - -2. What are the titans outside the walls in Paradis? Who made those titans? Where is the titan serum from? - -3. If the walls have colossal titans, does that mean that they are dormant and that the founding titan can 'awaken' them?";False;False;;;;1610363954;;False;{};giv89c9;False;t3_kujurp;False;False;t1_gismb1y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv89c9/;1610411058;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Meapcuteee;;;[];;;;text;t2_1wlio7dc;False;False;[];;But he did killed all those civilians in the building though....;False;False;;;;1610363955;;False;{};giv89fp;False;t3_kujurp;False;False;t1_giv83bk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv89fp/;1610411059;21;True;False;anime;t5_2qh22;;0;[]; -[];;;knokaka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/knokaka?order=4;light;text;t2_ytri4;False;False;[];;"manga panel edit with paralel you:seeBIGGIRL Ost from Reiner & Berholt reveal has been uploaded on youtube years ago.. and it look amazing... manga reader with their fantasy just deny the reality now. - -but I'm glad they didn't do youseeBIGGIRL because it won't be iconic ost for betrayal anymore.";False;False;;;;1610364026;;False;{};giv8d5k;False;t3_kujurp;False;False;t1_giv54qx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv8d5k/;1610411114;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Ganondurf4262;;;[];;;;text;t2_69300sor;False;False;[];;Yes;False;False;;;;1610364029;;False;{};giv8dbn;False;t3_kujurp;False;True;t1_giv87k2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv8dbn/;1610411117;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Meapcuteee;;;[];;;;text;t2_1wlio7dc;False;False;[];;You just rated the whole episode based on your assumption on future episodes? Like wtf?;False;False;;;;1610364048;;False;{};giv8e9n;False;t3_kujurp;False;False;t1_giv7fho;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv8e9n/;1610411133;30;True;False;anime;t5_2qh22;;0;[]; -[];;;RimuZ;;MAL;[];;http://myanimelist.net/animelist/LtCrabcake;dark;text;t2_8df66;False;False;[];;"I've been waiting and hoping for such an Eren for quite some time no. I don't read manga but the readers have been talking about him becoming a great character so I suspected and hoped it would be this. - -His journey from angry, bratty, desperate, broken and now hardened steel really reminds me of Rand al'Thor from Wheel of Time.";False;False;;;;1610364061;;False;{};giv8eyr;False;t3_kujurp;False;True;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv8eyr/;1610411142;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;~~It's a war and people die in war. Blame Willy Tybur for declaring this stupid war and putting so many civilians' lives in danger.~~;False;False;;;;1610364067;;1610364434.0;{};giv8f9e;False;t3_kujurp;False;True;t1_giv89fp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv8f9e/;1610411147;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;A rap song? I think a K-pop song would've fit much better! [See?](https://twitter.com/USurped_/status/1348323108235534337);False;False;;;;1610364085;;False;{};giv8g45;False;t3_kujurp;False;True;t1_giu47fi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv8g45/;1610411158;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Erufailon4;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Erufailon4;light;text;t2_rtyakcn;False;False;[];;Didn't sound like him imo;False;False;;;;1610364136;;False;{};giv8inh;False;t3_kujurp;False;True;t1_giudeb0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv8inh/;1610411193;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"From what has been shown so far In order to use the full abilities of the founding titan you need either royal blood or you have to touch a titan with royal blood - - When Eren touched the smiling titan(zeke's mom) he was able to use the founding titans powers without any of the drawback";False;False;;;;1610364207;;False;{};giv8m4v;False;t3_kujurp;False;False;t1_giv87k2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv8m4v/;1610411244;12;True;False;anime;t5_2qh22;;0;[]; -[];;;jcruz18;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/jcruz13;light;text;t2_qqttp;False;False;[];;Tbf I still think it's gonna be Falco. He's gonna hold a huge grudge against Eren now and will want to get revenge. I'm almost positive it won't be Gabi and the other candidates are pretty irrelevant.;False;False;;;;1610364219;;False;{};giv8mpf;False;t3_kujurp;False;False;t1_giv5cn3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv8mpf/;1610411253;4;True;False;anime;t5_2qh22;;0;[]; -[];;;InfinitySnatch;;;[];;;;text;t2_4amqv;False;False;[];;"A couple questions I'm trying to sort out from this episode's reveal. - -If the Tybur family secretly controls Marley, what was the point of having the 4 warriors infiltrate if there was an agreement to keep the peace between the King of Paradis and the Tyburs? I understand Marley wanted the Founding Titan power for their own use and wanted to remove the threat of the King unleashing the Titans in the walls (even if that part isn't true because of the Kings pacifist nature, Marleyans believed it to be true), but wouldn't an act of aggression like that run a huge risk off the King retaliating? Even though they had agreed to peace were the Tyburs trying to get the Founding Titan back for their own purposes ore did they go hands off and just let there Marley military plan and carry out the operation? - -Sorry if that's long winded. I'm just trying to understand the Tyburs motivations since they're declaring Ware on Paradis because of the threat caused by Eren Jaeger, but their operation caused it's all in the first place.";False;False;;;;1610364247;;False;{};giv8o60;False;t3_kujurp;False;True;t1_gismb1y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv8o60/;1610411275;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rapedcorpse;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Kilimini;light;text;t2_9n73kr1;False;False;[];;Soldiers die in war, killing civillians is a war crime no matter the contest.;False;False;;;;1610364316;;False;{};giv8s41;False;t3_kujurp;False;False;t1_giv8f9e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv8s41/;1610411325;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Meapcuteee;;;[];;;;text;t2_1wlio7dc;False;False;[];;Someone please fix this godamn show and add Youseebiggirl to every scene please;False;False;;;;1610364388;;False;{};giv8w6f;False;t3_kujurp;False;False;t1_giv54qx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv8w6f/;1610411379;10;True;False;anime;t5_2qh22;;0;[]; -[];;;ThatBeastFromRP;;;[];;;;text;t2_l1gled1;False;False;[];;"Yeaaaa now I’m starting to remember. This makes things interesting though. Eren still needs royal influence to fully use the Founding Titan, but at the same time, the royal blood is bound to King Fritz’s vow... - -So I really wonder if Eren is capable of being the big threat he is being made out to be.";False;False;;;;1610364402;;False;{};giv8wzg;False;t3_kujurp;False;True;t1_giv8m4v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv8wzg/;1610411391;3;True;False;anime;t5_2qh22;;0;[]; -[];;;zool714;;;[];;;;text;t2_11y457;False;False;[];;Uhh so as long as they’re at war, killing civilians is ok ?;False;False;;;;1610364415;;False;{};giv8xnj;False;t3_kujurp;False;False;t1_giv83bk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv8xnj/;1610411400;13;True;False;anime;t5_2qh22;;0;[]; -[];;;blueasian0682;;;[];;;;text;t2_1mq0q9k2;False;False;[];;Lol porco looks like a kid behind him.;False;False;;;;1610364424;;False;{};giv8y4s;False;t3_kujurp;False;True;t1_giv0t3h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv8y4s/;1610411406;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yusufucar2010;;;[];;;;text;t2_15asf1;False;False;[];;Answering five, the vow of renouncing war exists to make sure that no royal blooded Founding Titan can use its full potential and fight back. Since zeke doesn't have the founding titan there's no pacifism for him;False;False;;;;1610364443;;False;{};giv8z52;False;t3_kujurp;False;True;t1_giv7dzw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv8z52/;1610411423;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ganondurf4262;;;[];;;;text;t2_69300sor;False;False;[];;Sasageyo;False;False;;;;1610364449;;False;{};giv8zg9;False;t3_kujurp;False;True;t1_giulsxp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv8zg9/;1610411427;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610364457;;False;{};giv8zv9;False;t3_kujurp;False;True;t1_gisyvpl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv8zv9/;1610411434;1;True;False;anime;t5_2qh22;;0;[]; -[];;;haze_xcalibur;;;[];;;;text;t2_4xoo2x6l;False;False;[];;"But if king Frietz truly schemed with the Tybur and fled to the walls to claim peace, was attacking the walls by marley for whatever purpose and killing vast no of innocents not an attack on his peace? - -There's no way marley planned to take the attack titan to achieve peace, the way it is exploiting those titan shifters to wage war on other countries. - -If everyone born to this world has a right to live, then those innocent people of wall Maria too and the thousands of exploited eldians somewhere else in the world deserve their life too, they didn't choose this blood. - - -With this eren is being a bit selfish for his own sake.";False;False;;;;1610364463;;1610365507.0;{};giv9061;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv9061/;1610411439;4;True;False;anime;t5_2qh22;;0;[]; -[];;;zool714;;;[];;;;text;t2_11y457;False;False;[];;He also rates episodes on the number of people who died;False;False;;;;1610364465;;False;{};giv90at;False;t3_kujurp;False;False;t1_giv8e9n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv90at/;1610411441;33;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;"If that's the case then Reiner, Bertholdt and Annie also committed the war crime? - -My apologies for the above comment that didn't make any sense at all.";False;False;;;;1610364503;;False;{};giv929c;False;t3_kujurp;False;False;t1_giv8s41;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv929c/;1610411469;5;True;False;anime;t5_2qh22;;0;[]; -[];;;3nd0p145m1cr371cu1um;;;[];;;;text;t2_9i6qj3qm;False;False;[];;maybe things would have turned out different if pieck gave reiner and eren a group hug;False;False;;;;1610364504;;False;{};giv92b0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv92b0/;1610411470;32;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"Royal bloods who **inherit** the founding titan are bound to King Fritz - -Historia and Zeke are completely fine and not under anyone's control";False;False;;;;1610364553;;False;{};giv94y2;False;t3_kujurp;False;False;t1_giv8wzg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv94y2/;1610411509;4;True;False;anime;t5_2qh22;;0;[]; -[];;;blueasian0682;;;[];;;;text;t2_1mq0q9k2;False;False;[];;Hey it's kill or be killed.;False;False;;;;1610364607;;False;{};giv97ob;False;t3_kujurp;False;True;t1_giv8xnj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv97ob/;1610411547;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;">why the hell I am getting downvoted - -Happens to everyone who doesn't comment ""ZOMG BEST EPISODE IN ANIME HISTORY EVARRR"". Neurotic fanboys are out in full force today.";False;False;;;;1610364650;;False;{};giv99sc;False;t3_kujurp;False;True;t1_giuysmb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv99sc/;1610411578;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TheXskull;;;[];;;;text;t2_x1p3l;False;False;[];;He grabbed his hand making it harder for Reiner to transform. But I doubt Reiner died, he survived far deadlier situations back in season 3. Even if he didn't manage to partially transform like Eren vs the cannonball, his human form seems quite durable.;False;False;;;;1610364651;;False;{};giv99sx;False;t3_kujurp;False;True;t1_gisc2jv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv99sx/;1610411578;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dokutah_Valenti;;;[];;;;text;t2_6mehcoi2;False;False;[];;H I S T O R Y;False;False;;;;1610364657;;False;{};giv9a3r;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv9a3r/;1610411585;10;True;False;anime;t5_2qh22;;0;[]; -[];;;RogueTomat0;;;[];;;;text;t2_x2jp0;False;False;[];;"1) There hasn't been a concrete answer in the anime for this yet. - - -2) Yes the founder can control all titans including the 8 shifters. - - -3) Willy states last episode that the Tyburs stayed out of the affairs of Marley and left them to their own devices. He also implied that he is the first generation of Tyburs in a while to actively attempt to steer Marlyean policy. As for why he didn't stop the previous invasion? He wasn't the head of the family at the time. - - -4) Yes that was the founding titans power. During the end of season 3 he realized he was able to activate the founder because he touched the titan form of Dina Fritz. His father's previous wife and Zeke's mom. Eren needs to touch a titan with royal blood to activate the founders power. - - -5) Karl Fritz used the founding titans power to swear a vow into the power itself. Any Royal who possess's the founding titan is compelled by Karl Fritz's will. Zeke is not affected because he doesn't have the founder. Only royals with the founder are affected. - - -6) The anime hasn't said what happened to Annie yet.";False;False;;;;1610364667;;False;{};giv9al7;False;t3_kujurp;False;True;t1_giv7dzw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv9al7/;1610411595;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ensianto;;;[];;;;text;t2_wmepy;False;False;[];;I don't think Pieck ever saw Armin up close;False;False;;;;1610364696;;False;{};giv9c4k;False;t3_kujurp;False;False;t1_giu2536;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv9c4k/;1610411616;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;So it begins;False;False;;;;1610364705;;False;{};giv9cnf;False;t3_kujurp;False;False;t1_giv83bk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv9cnf/;1610411623;12;True;False;anime;t5_2qh22;;0;[]; -[];;;zool714;;;[];;;;text;t2_11y457;False;False;[];;Hey I totally understand that. In fact I can’t fault Eren for doing what he did. But he did *nothing* wrong ? A bit of a stretch for me;False;False;;;;1610364707;;False;{};giv9cr9;False;t3_kujurp;False;False;t1_giv97ob;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv9cr9/;1610411623;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaneki1000_7;;;[];;;;text;t2_2xzidp4m;False;False;[];;Season 1 is the weakest by far but it’s still a solid 8/10 for me. Aot just keeps getting better with every new season. Enjoy!;False;False;;;;1610364747;;False;{};giv9fg7;False;t3_kujurp;False;False;t1_giv5rag;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv9fg7/;1610411657;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610364753;;False;{};giv9fty;False;t3_kujurp;False;True;t1_giv7fho;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv9fty/;1610411661;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThatBeastFromRP;;;[];;;;text;t2_l1gled1;False;False;[];;So pretty much, direct descendants of the King are bound to his will. Lol this very deep plot gets hard to follow when it is animated every few years.;False;False;;;;1610364763;;False;{};giv9gh0;False;t3_kujurp;False;True;t1_giv94y2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv9gh0/;1610411669;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;I'm actually a manga reader and still of this opinion. I've never felt like any of this makes a lot of sense. Yes, Rod's titan was enormous but also completely useless due to how slow and passive it was. If manufacturing colossals were so easy, e.g. if it was just a matter of how you make the person take in the spinal fluid (injections in different spots, ingestion, etc.), why would Marley worry about being outclassed by technology? They could just start airdropping colossals on their enemies.;False;True;;comment score below threshold;;1610364834;;False;{};giv9l5v;False;t3_kujurp;False;True;t1_giv7yly;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv9l5v/;1610411731;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"King Fritz wouldn't attack the world, he made a vow (its all on this episode), that's why even after Marley Attacked he didn't strike back and never would - -But now the Founding titan is with Eren, that's why Willy thinks he is dangerous, there's no vow biding him";False;False;;;;1610364868;;False;{};giv9nbc;False;t3_kujurp;False;False;t1_giv9061;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv9nbc/;1610411759;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;Yeah AoT has quite a heavy lore which if you aren't refreshed before starting a new season you will be very very confused;False;False;;;;1610364889;;False;{};giv9oje;False;t3_kujurp;False;False;t1_giv9gh0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv9oje/;1610411773;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheFloofIsAmazing;;;[];;;;text;t2_1i3huy2e;False;False;[];;Reiner didn’t do what he did because he was forced to - he did it because he (naively) felt he was doing a good heroic thing (propaganda) and so decided not to turn back. Reiner made the DECISION to break the walls and not retreat like Annie and Bertholdt told him they should do, but the same thing applies for Eren, he didn’t have to transform, he could’ve gone about it another way but he thought it was the thing he had to do. When Eren says “REINAHHH I WAS RIGHT I AM THE SAME AS YOU” he was realising that they both pushed themselves into hell out of their own fruition. There were no outside circumstances FORCING them to do EXACTLY what they did but they did it because they see a world beyond that hell, which makes them even more similar.;False;False;;;;1610364891;;1610365641.0;{};giv9oph;False;t3_kujurp;False;True;t1_gisc2jv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv9oph/;1610411776;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Skyreader13;;;[];;;;text;t2_rixwo;False;False;[];;A but confused here, anyone can explain what's the main goal of Tybur and Eren's group at this point?;False;False;;;;1610364908;;False;{};giv9po6;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv9po6/;1610411788;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaneki1000_7;;;[];;;;text;t2_2xzidp4m;False;False;[];;"Yeah that’s what I was wondering too. I think he might’ve cz of his reaction when Willy said ""because I was born into this world"" but then again the Marleyan soldiers were enclosing on Eren so he probably had no choice to begin with...";False;False;;;;1610364949;;False;{};giv9s1s;False;t3_kujurp;False;False;t1_giv0wjj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv9s1s/;1610411820;5;True;False;anime;t5_2qh22;;0;[]; -[];;;shadiskeith;;;[];;;;text;t2_7741bk1g;False;False;[];;"The amount of karma a whole episode discussion has for other anime on this sub, -is less than the amount of karma that some of the replies to comments in this discussion have. -Truly, the King is back.";False;False;;;;1610365030;;False;{};giv9wkp;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv9wkp/;1610411878;41;True;False;anime;t5_2qh22;;0;[]; -[];;;Telinour;;;[];;;;text;t2_941jahsi;False;False;[];;Because once bear wakes on his own, it can wipe all of humanity?;False;False;;;;1610365066;;False;{};giv9yjc;False;t3_kujurp;False;True;t1_giu21ph;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giv9yjc/;1610411903;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dedezin404;;;[];;;;text;t2_te0fm;False;False;[];;This is why they entered the founding titan, because it has crazy powers. King fritz created the walls from scratch with his powers and erased people's memories. Who knows what else he can do?;False;False;;;;1610365125;;False;{};giva1pd;False;t3_kujurp;False;False;t1_giv9l5v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giva1pd/;1610411946;10;True;False;anime;t5_2qh22;;0;[]; -[];;;offoy;;MAL;[];;http://myanimelist.net/animelist/oFFoy;dark;text;t2_7a56z;False;False;[];;What does the text on the end card say?;False;False;;;;1610365170;;False;{};giva4ep;False;t3_kujurp;False;True;t1_gisaov5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giva4ep/;1610411979;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Meapcuteee;;;[];;;;text;t2_1wlio7dc;False;False;[];;Also the Asian clan lady who left early for some reason, very sus;False;False;;;;1610365172;;False;{};giva4j0;False;t3_kujurp;False;True;t1_giuocrk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giva4j0/;1610411981;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ihei47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JuuzouXIII;light;text;t2_3dhujs;False;False;[];;"Tybur : Sacrifice himself to unite the whole world to finish off Paradis Eldians Titan threat once and for all - -Eren's group : preemptive strike since full scale invasion of Paradis is imminent";False;False;;;;1610365242;;False;{};giva9o6;False;t3_kujurp;False;False;t1_giv9po6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giva9o6/;1610412041;21;True;False;anime;t5_2qh22;;0;[]; -[];;;WolfTitan99;;;[];;;;text;t2_xtl8p;False;False;[];;Yeah most people were more focused on Eren's transformation rather than the music. The damn LIGHTING in the last scene was so cool, I loved the yellow glow contrasted with the night sky.;False;False;;;;1610365302;;False;{};givadxu;False;t3_kujurp;False;False;t1_giv7808;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givadxu/;1610412090;6;True;False;anime;t5_2qh22;;0;[]; -[];;;therealhm2;;;[];;;;text;t2_qeq05;False;False;[];;I was here;False;False;;;;1610365303;;False;{};givae09;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givae09/;1610412091;32;True;False;anime;t5_2qh22;;0;[]; -[];;;blueasian0682;;;[];;;;text;t2_1mq0q9k2;False;False;[];;After Reiner comes back he told everything to the higher ups of Marley, this makes Tybur afraid cuz the king of the walls is now without the founding titan, the king and Tybur know it was all good as long as the king has the founding but now Eren has it they're scared of what he can do with that power. Erens goal is spoilers.;False;False;;;;1610365326;;False;{};givafm7;False;t3_kujurp;False;False;t1_giv9po6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givafm7/;1610412111;24;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;"As I said, I'm happy enough with the story as is. But saying that it's underwhelming, as if it couldn't be made, is just wrong. I'm not expecting the story to provide some sort of fully realistic scientific explanation to titans - that would be too much, and I guess in that case Hange would be the protagonist. But take Fullmetal Alchemist - it's got ""magic"" of sorts, not especially more realistic than Titans, but it also makes a lot more internal sense. Consistency of the rules of the world - not consistency with biology or physics, just rules that you can intuitively work out and then keep applying over and over again - is a key aspect of building tension in a work of fantasy. For example, little details like the pit trap stopping Pieck and Porco from transforming are a clever exploitation of rules we know that however can catch us by surprise. And that kind of thing comes from knowing what is and isn't possible in this fictional world. - -The Wall Titans are a great plot device in terms of pushing the story forward - they create a situation where Eren effectively holds the button to the nuclear option, and thus both give everyone else a reason to fight him and raise the stakes of the situation. However, they don't properly mesh into the logic of the Titans as they've been presented until now. Not in a biochemistry sense, in a purely ""if this possibility always existed, why did things go the way they did?"". For example, a huge factor of the current shift in power is that technology is finally outclassing Titans for good. But if colossals could be created on command in such enormous numbers, that could not possibly be happening. So have these colossals been created? Were they just always there, are they in a limited supply? Can they be used for nothing but the rumbling? And if so, why? They don't seem to fill in a role akin to either the usual pure Titans or the Nine.";False;False;;;;1610365371;;False;{};givaito;False;t3_kujurp;False;True;t1_giv5dcy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givaito/;1610412149;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ihei47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JuuzouXIII;light;text;t2_3dhujs;False;False;[];;"# ErenDidNothingWrong -# Yaegerist - -Edit: idk how to hashtag without making it big lol";False;False;;;;1610365413;;False;{};givalq6;False;t3_kujurp;False;False;t1_giv83bk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givalq6/;1610412184;19;True;False;anime;t5_2qh22;;0;[]; -[];;;WolfTitan99;;;[];;;;text;t2_xtl8p;False;False;[];;I completely cracked after S3, but watching the Anime gives me alot more perspecitve and understanding. I read the manga a year ago and barely remember anything apart from important plot beats, and the anime will stick longer in my head for sure with the animation, VA and music.;False;False;;;;1610365424;;False;{};givamgj;False;t3_kujurp;False;False;t1_giv17y8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givamgj/;1610412193;7;True;False;anime;t5_2qh22;;0;[]; -[];;;rabid_J;;;[];;;;text;t2_753qc;False;False;[];;"Keep in mind Willy said the Tybers gave Marley the freedom to do whatever they want - which immediately turned into conquring the world. Them choosing to try and capture the founding titan was definitely just another way for them to take more territory and resources (aka the fossil fuels below paradis). - - -Marley are warmongering fuckwads with no interest in keeping the peace.";False;False;;;;1610365435;;False;{};givan9l;False;t3_kujurp;False;False;t1_giv9061;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givan9l/;1610412203;7;True;False;anime;t5_2qh22;;0;[]; -[];;;bostonian38;;;[];;;;text;t2_12vydv1g;False;False;[];;sem;False;False;;;;1610365460;;False;{};givaoxi;False;t3_kujurp;False;True;t1_givae09;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givaoxi/;1610412227;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WolfTitan99;;;[];;;;text;t2_xtl8p;False;False;[];;Huh I thought they looked green? At no point did they look blue to me lol;False;False;;;;1610365501;;False;{};givarm6;False;t3_kujurp;False;True;t1_giuz4c3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givarm6/;1610412264;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bostonian38;;;[];;;;text;t2_12vydv1g;False;False;[];;"Ya I just thought it was super smooth 2D - -If they’re using CGI a lot it’d be amazing if it was done like that";False;False;;;;1610365535;;False;{};givatuh;False;t3_kujurp;False;False;t1_giv7h3v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givatuh/;1610412293;7;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;There's also the guy who got hit in the head by a piece of the building, seems like a pretty instant death;False;False;;;;1610365535;;False;{};givatvi;False;t3_kujurp;False;True;t1_giv7yk3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givatvi/;1610412293;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Skyreader13;;;[];;;;text;t2_rixwo;False;False;[];;So, did Tybur actually know that Eren's group are going to attack him on that moment (planning his death, in short)?;False;False;;;;1610365596;;False;{};givaxr9;False;t3_kujurp;False;True;t1_giva9o6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givaxr9/;1610412346;1;True;False;anime;t5_2qh22;;0;[]; -[];;;eldian_man;;;[];;;;text;t2_87o50rzu;False;False;[];;At this point manga readers and occasionally hating on the OST is a hallowed tradition, see K21 and 2Volt (again) last season.;False;False;;;;1610365603;;False;{};givay9a;False;t3_kujurp;False;False;t1_giv54qx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givay9a/;1610412352;5;True;False;anime;t5_2qh22;;0;[]; -[];;;WolfTitan99;;;[];;;;text;t2_xtl8p;False;False;[];;What record are you talking about? An episode discussion on this sub?;False;False;;;;1610365616;;False;{};givaz4l;False;t3_kujurp;False;True;t1_giuvuse;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givaz4l/;1610412364;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rollin340;;;[];;;;text;t2_cmyef;False;False;[];;"Well... technically, he attacked after the declaration of war. And his target was the leader of the nation that that his is at war with. It wasn't pretty, but it wasn't really a terrorist attack. - -What Marley did to Paradis on the other hand was 100% a terrorist attack.";False;False;;;;1610365620;;False;{};givazcg;False;t3_kujurp;False;True;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givazcg/;1610412367;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610365662;moderator;False;{};givb291;False;t3_kujurp;False;True;t1_giuysmb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givb291/;1610412406;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AceTheSlayer;;;[];;;;text;t2_2w893z8g;False;False;[];;Yes;False;False;;;;1610365673;;False;{};givb34g;False;t3_kujurp;False;True;t1_givae09;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givb34g/;1610412417;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ihei47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JuuzouXIII;light;text;t2_3dhujs;False;False;[];;He's too a good boy he won't desire revenge XD;False;False;;;;1610365674;;False;{};givb36v;False;t3_kujurp;False;True;t1_giv8mpf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givb36v/;1610412418;2;True;False;anime;t5_2qh22;;0;[]; -[];;;spiderknight616;;;[];;;;text;t2_vcau4lw;False;False;[];;"He knew they would attack at the festival, and had discussed this with Magath too. Hence, the latter's line ""so it's begun"".";False;False;;;;1610365720;;False;{};givb6hf;False;t3_kujurp;False;True;t1_givaxr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givb6hf/;1610412458;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wolfofdoom3;;;[];;;;text;t2_1c68nd;False;False;[];;"Did you forget you need a goal in mind to turn into a titan? - -Remember when Eren picked up the spoon in season 1?";False;False;;;;1610365721;;False;{};givb6i1;False;t3_kujurp;False;True;t1_giuxyac;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givb6i1/;1610412458;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ensianto;;;[];;;;text;t2_wmepy;False;False;[];;It was hinted at in the previous episode and will probably be explained at the start of the next one;False;False;;;;1610365724;;False;{};givb6r9;False;t3_kujurp;False;False;t1_givaxr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givb6r9/;1610412462;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Natunen;;;[];;;;text;t2_fai5e;False;False;[];;Anime cut a few conversations relating to this but I'd imagine they are in the next ep;False;False;;;;1610365763;;False;{};givb9gf;False;t3_kujurp;False;False;t1_givaxr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givb9gf/;1610412499;8;True;False;anime;t5_2qh22;;0;[]; -[];;;000000000050;;;[];;;;text;t2_hbx41h6;False;False;[];;Hey;False;False;;;;1610365780;;False;{};givbake;False;t3_kujurp;False;True;t1_givae09;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givbake/;1610412513;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ihei47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JuuzouXIII;light;text;t2_3dhujs;False;False;[];;"Well, coz that particular moment (Eren transformation) was the main highlight of this episode, can really blamed us XD - -Thankfully some people already edited the scene with other OSTs like trailer OST or youseebiggirl";False;True;;comment score below threshold;;1610365803;;False;{};givbc2g;False;t3_kujurp;False;True;t1_giv54qx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givbc2g/;1610412532;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;DrPavel_Im_CIA;;;[];;;;text;t2_muhwd;False;False;[];;I'm just a troll for not liking how they handled it? How does that make sense?;False;False;;;;1610365804;;False;{};givbc45;False;t3_kujurp;False;True;t1_git6plk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givbc45/;1610412533;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;McDragan;;;[];;;;text;t2_73i4i;False;False;[];;Just the 3 walls are almost the size of Texas;False;False;;;;1610365833;;False;{};givbe0p;False;t3_kujurp;False;True;t1_gits50y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givbe0p/;1610412557;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MMBook;;;[];;;;text;t2_3pqytndm;False;False;[];;Wow the upvotes 👑;False;False;;;;1610365847;;False;{};givbewr;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givbewr/;1610412569;28;True;False;anime;t5_2qh22;;0;[]; -[];;;spiderknight616;;;[];;;;text;t2_vcau4lw;False;False;[];;I feel bad for finding that funny, but come on, the dude was getting smacked by that rock in slow-mi while others were watching wide-eyed.;False;False;;;;1610365873;;False;{};givbgkg;False;t3_kujurp;False;False;t1_giv5p80;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givbgkg/;1610412590;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;Which is why you might as well call it the Plot Device Titan, it basically does whatever is needed to justify whatever weird shit you need for the story to make sense.;False;False;;;;1610365921;;False;{};givbjks;False;t3_kujurp;False;True;t1_giva1pd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givbjks/;1610412631;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;hecc987654321;;;[];;;;text;t2_jk1lpbl;False;False;[];;"As an r/titanfolk degenerate I didn't mind that it wasn't youseebiggirl, but I just felt like the OST used had a purely heroic connotation just by the way it sounds (didn't even remember that it was used for Levi vs Beast Titan until I read discussions) whereas Eren's actions are... far from heroic. - -It's a good song and it's hype but it's not hype for the right reasons is what I feel.";False;False;;;;1610365928;;False;{};givbk0o;False;t3_kujurp;False;True;t1_giv7808;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givbk0o/;1610412637;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;"Magaths line : ""So it's begun?"" implies that he knows something is going on, but hopefully this will be covered in the next episode to clear up any confusion.";False;False;;;;1610365948;;False;{};givbla0;False;t3_kujurp;False;False;t1_givaxr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givbla0/;1610412653;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Ripamon;;;[];;;;text;t2_fy0p4;False;True;[];;"King Fritz's threat was idle. It was merely an appeal for he and his people to know a momentary peace, which would cease and end in the extermination of his people the moment Marley wished it. No resistance. Instead, acceptance of death. - -Such was the cowardly way of the king. - -There's no selfishness in Eren. He's simply fighting on behalf of his people... For the right to live. Fighting because his king was too cowardly to. Like a true patriot, he has cast aside individual thoughts and feelings(""forget I said that"") to become an instrument of war and save his people.";False;False;;;;1610365983;;False;{};givbnd0;False;t3_kujurp;False;False;t1_giv9061;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givbnd0/;1610412684;16;True;False;anime;t5_2qh22;;0;[]; -[];;;rabid_J;;;[];;;;text;t2_753qc;False;False;[];;"Much like in Expanse right now there are more honorable/moral ways to attack someone than attacking civilians, for example if Eren had exploded the building all those Marleyan commanders were talking in a few episodes ago. Military targets are fair game, an apartment building in the Eldian internment camp is not (imo). - -Sure in war you might think civilian casualties are acceptable losses but mass murder in front of reporters from every newspaper in the world is just going to make every country declare war on Paradis with zero hesitation, and they probably have airplane bombers by now which I don't think a thunderspear can do much about. Willy was saying to declare war on them anyway but if you behave like a genocidal maniac people will see you as only that.";False;False;;;;1610366015;;False;{};givbp92;False;t3_kujurp;False;False;t1_giuwmsk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givbp92/;1610412711;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;"Put one of these \ before the text - -\#Kony2012";False;False;;;;1610366020;;False;{};givbphz;False;t3_kujurp;False;False;t1_givalq6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givbphz/;1610412714;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Alsphomore;;;[];;;;text;t2_1vd1gz3q;False;False;[];;The anticipation and Tensions was just amazing!! 2 weeks of wait, Totally worth it. *LET'S GOOOOOOOO!!!!!!*;False;False;;;;1610366058;;False;{};givbrvb;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givbrvb/;1610412746;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Ripamon;;;[];;;;text;t2_fy0p4;False;True;[];;"Why didn't they try President Truman for Nagasaki and Hiroshima? - -Or the English for Dresden? - -Killing civilians isn't a war crime. It may be unethical and ruthless. But not wrong.";False;False;;;;1610366086;;False;{};givbtnx;False;t3_kujurp;False;True;t1_giv9cr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givbtnx/;1610412772;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GowtherETC;;;[];;;;text;t2_47ql3fom;False;False;[];;"I think Re:Zero being an isekai holds it back tbh. Most people write it off as ""just another edgy isekai"".";False;False;;;;1610366096;;False;{};givbuda;False;t3_kujurp;False;False;t1_giunn60;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givbuda/;1610412781;7;True;False;anime;t5_2qh22;;0;[]; -[];;;rabid_J;;;[];;;;text;t2_753qc;False;False;[];;People really out here thinking killing civilians during war isn't a war crime.;False;False;;;;1610366127;;False;{};givbwmt;False;t3_kujurp;False;True;t1_giux4wf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givbwmt/;1610412811;3;True;False;anime;t5_2qh22;;0;[]; -[];;;spiderknight616;;;[];;;;text;t2_vcau4lw;False;False;[];;They're bluish-green. Wit did light green eyes so it looks a lot more blue in comparison than it actually it;False;False;;;;1610366224;;False;{};givc3ka;False;t3_kujurp;False;True;t1_giuz4c3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givc3ka/;1610412896;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Meia_Ang;;;[];;;;text;t2_oyieq;False;False;[];;Fritz still got it.;False;False;;;;1610366228;;False;{};givc3w4;False;t3_kujurp;False;False;t1_giuk2ns;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givc3w4/;1610412900;13;True;False;anime;t5_2qh22;;0;[]; -[];;;UzEE;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/UzEEInc;light;text;t2_45t2z;False;False;[];;It just boggles my mind that even this was possible. Sure there's been karma inflation in the past two years, but the most upvoted threads on the sub around that time were Re:zero Season 2 announcement or a couple of KyoAni arson related threads. Discussions would barely make half of those numbers and now even those numbers seem beatable.;False;False;;;;1610366284;;False;{};givc7lv;False;t3_kujurp;False;False;t1_giuw5g8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givc7lv/;1610412968;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Ripamon;;;[];;;;text;t2_fy0p4;False;True;[];;"Not just that. They did it first. - -In world war 1 Germany unleashed the mustard gas first. A war crime. - -And then the allies retaliated in kind. Guess who history judged as guilty? - -That's right. So Eren should be less guilty in the eyes of the world. In fact reiner and Co were even worse because they attacked a sovereign kingdom without a declaration of war. Eren at least had the decency to wait before turning the commander into bugsplat";False;False;;;;1610366296;;False;{};givc8cw;False;t3_kujurp;False;True;t1_giv929c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givc8cw/;1610412979;3;True;False;anime;t5_2qh22;;0;[]; -[];;;zool714;;;[];;;;text;t2_11y457;False;False;[];;I think you and I have very different views on what is “wrong”;False;False;;;;1610366309;;False;{};givc97b;False;t3_kujurp;False;True;t1_givbtnx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givc97b/;1610412990;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kupferkessel;;;[];;;;text;t2_55n0m693;False;False;[];;They were enclosing, but if Rainer would have helped, it probably would have been possible to talk him out of there.;False;False;;;;1610366316;;False;{};givc9ns;False;t3_kujurp;False;True;t1_giv9s1s;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givc9ns/;1610412997;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Because you were born into this world;False;False;;;;1610366325;;False;{};givca6h;False;t3_kujurp;False;False;t1_givae09;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givca6h/;1610413004;27;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;https://tvtropes.org/pmwiki/pmwiki.php/Main/TranquilFury;False;False;;;;1610366336;;False;{};givcavc;False;t3_kujurp;False;False;t1_giswz3u;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givcavc/;1610413014;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ripamon;;;[];;;;text;t2_fy0p4;False;True;[];;"So this is what pure, utter stupidity is like. - -Not to mention wrong as well";False;False;;;;1610366338;;False;{};givcb0j;False;t3_kujurp;False;False;t1_giv7fho;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givcb0j/;1610413015;19;True;False;anime;t5_2qh22;;0;[]; -[];;;haze_xcalibur;;;[];;;;text;t2_4xoo2x6l;False;False;[];;Yeah, I dont understand why Eren gets so much hate. He just wants to live and wants to fight for the lives of his people.;False;False;;;;1610366352;;False;{};givcbw4;False;t3_kujurp;False;True;t1_givbnd0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givcbw4/;1610413027;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Wolfofdoom3;;;[];;;;text;t2_1c68nd;False;False;[];;"I suppose that is possible assuming Zeke can control them. Even so they could not do something like this before Zeke was a thing and he will die in one year. And if they start randomly throwing colossals without him, they might be a problem for them as well without the founder titan's power controlling them. - -Also, the king could only get so many titans because he could outright control eldians and told them to stay in line most likely. - -From what I've seen, consuming the spinal fluid of a shifter also grants you some of their powers even if you're a different type of titan such as jaw. - -That's how other titans like Eren and Annie could harden in the first place, that's actually an armor titan specific ability. (and you know... spoilers)";False;False;;;;1610366360;;False;{};givccf7;False;t3_kujurp;False;True;t1_giv9l5v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givccf7/;1610413033;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Regrer47;;;[];;;;text;t2_1wtg17bq;False;False;[];;Nothing wrong legally not morally;False;False;;;;1610366400;;False;{};givcex1;False;t3_kujurp;False;True;t1_giv9cr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givcex1/;1610413069;3;True;False;anime;t5_2qh22;;0;[]; -[];;;spiderknight616;;;[];;;;text;t2_vcau4lw;False;False;[];;Why? There's no traitors here;False;False;;;;1610366405;;False;{};givcf6y;False;t3_kujurp;False;True;t1_giun9qs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givcf6y/;1610413074;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;"It was an attack on their peace, but Fritz was obviously a pacifist wracked by guilt over what his people had done to other races and nations throughout the year, so there was never realistically anyway that the Colossal Titans within the walls were going to be released to flatten the rest of the world. Of course, this was unbeknown to the Marleyans, who planned the attack on Paradis. Their goal was infiltrate the island, smoke the King out, and then capture the Founding Titan. - -Fritz' ideology and vow renouncing war with the Founding Titan was passed down through each of it's holders (Uri, Frieda etc) and stated that should the island be attacked, after a brief period of peace, he effectively wouldn't stand in Marley's way should it invade. That's why the holder of the Founding Titan (Frieda) never retaliated when Season 1 Episode 1 happened, and even if they wanted to, they couldn't due to Fritz's vow. - -Think most of this was covered in S3P1 and P2.";False;False;;;;1610366405;;False;{};givcf94;False;t3_kujurp;False;False;t1_giv9061;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givcf94/;1610413074;8;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmolAngel;;;[];;;;text;t2_4e8nt30r;False;False;[];;Seen a lot of posts about Eren, but how about a round of applause for our blonde tactician who successfully rounded up the other two warriors.;False;False;;;;1610366431;;False;{};givcguh;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givcguh/;1610413097;22;True;False;anime;t5_2qh22;;0;[]; -[];;;rabid_J;;;[];;;;text;t2_753qc;False;False;[];;"https://youtu.be/K0rlvNsC7Eg?t=10 - -They've mentioned 100 years quite a few times iirc.";False;False;;;;1610366432;;False;{};givcgya;False;t3_kujurp;False;False;t1_giuu4pk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givcgya/;1610413098;4;True;False;anime;t5_2qh22;;0;[]; -[];;;spiderknight616;;;[];;;;text;t2_vcau4lw;False;False;[];;It's all shades of grey now. Some darker, some lighter but grey nonetheless;False;False;;;;1610366460;;False;{};givcin9;False;t3_kujurp;False;True;t1_giumh3m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givcin9/;1610413121;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ripamon;;;[];;;;text;t2_fy0p4;False;True;[];;"It'll beat it over 48 hours too. - -Although next episode might break even this record";False;False;;;;1610366473;;False;{};givcjf3;False;t3_kujurp;False;True;t1_giv7ex8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givcjf3/;1610413130;3;True;False;anime;t5_2qh22;;0;[]; -[];;;spiderknight616;;;[];;;;text;t2_vcau4lw;False;False;[];;Not just yet;False;False;;;;1610366523;;False;{};givcmm8;False;t3_kujurp;False;False;t1_giukktd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givcmm8/;1610413174;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pieck-chan;;;[];;;;text;t2_3f7rl7h7;False;False;[];;You know Pieck is best girl when even Marleyans are simping on an Eldian like her.;False;False;;;;1610366563;;False;{};givcphw;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givcphw/;1610413209;38;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;I can't think of one. Anime is generally really good at giving proper motivations behind villains;False;False;;;;1610366566;;False;{};givcpqg;False;t3_kujurp;False;True;t1_gisx15g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givcpqg/;1610413214;2;True;False;anime;t5_2qh22;;0;[]; -[];;;spiderknight616;;;[];;;;text;t2_vcau4lw;False;False;[];;No. All Warriors' families are made honorary Marleyans along with the Warriors themselves, and they get red armbands.;False;False;;;;1610366596;;False;{};givcs39;False;t3_kujurp;False;True;t1_giuj3sl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givcs39/;1610413244;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;Haha yeah, he didn't do anything wrong. He only took out a building full of unsuspecting randoms.;False;False;;;;1610366612;;False;{};givctdi;False;t3_kujurp;False;False;t1_giv83bk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givctdi/;1610413260;16;True;False;anime;t5_2qh22;;0;[]; -[];;;FeistyKnight;;;[];;;;text;t2_1twmffwo;False;False;[];;But ysbg wouldn't have fit at all with the tone of the episode tho. Like at all;False;False;;;;1610366680;;False;{};givcylq;False;t3_kujurp;False;False;t1_givbc2g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givcylq/;1610413322;15;True;False;anime;t5_2qh22;;0;[]; -[];;;spiderknight616;;;[];;;;text;t2_vcau4lw;False;False;[];;Ymir didn't even have a name in S1 and yet she was a main character in S2. You never know;False;False;;;;1610366706;;False;{};givd0fg;False;t3_kujurp;False;False;t1_gitgmlc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givd0fg/;1610413343;5;True;False;anime;t5_2qh22;;0;[]; -[];;;evilresurgence4;;;[];;;;text;t2_3hd7gero;False;False;[];;For some reason I thought you were talking about downvoted;False;False;;;;1610366706;;False;{};givd0gy;False;t3_kujurp;False;True;t1_giv6ma8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givd0gy/;1610413344;1;True;False;anime;t5_2qh22;;0;[]; -[];;;macedonianmoper;;;[];;;;text;t2_71boinia;False;False;[];; I always skip previews, I prefer going in blind for the next episode;False;False;;;;1610366731;;False;{};givd2ax;False;t3_kujurp;False;True;t1_giug17d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givd2ax/;1610413366;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Saberinbed;;;[];;;;text;t2_p00ls;False;False;[];;Saving their budget.... Saving their budget for WHAT? This was the episode they were supposed to use their budget for. They couldn't draw 3 frames of the attack titan moving? Jesus christ man cmon. Stop dickriding mappa.;False;False;;;;1610366734;;False;{};givd2ia;False;t3_kujurp;False;True;t1_gitz03r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givd2ia/;1610413369;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheXskull;;;[];;;;text;t2_x1p3l;False;False;[];;And in this very episode Willy Tybur announces that the worshipped hero helo was a fraud as well.;False;False;;;;1610366766;;False;{};givd4pa;False;t3_kujurp;False;True;t1_gisv30o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givd4pa/;1610413397;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;Fritz's vow of renouncing war is passed down through royal blood. Eren isn't a royal, so technically isn't bound by the same rules and ideology as the previous holders of the FT were i.e Uri and Frieda etc.;False;False;;;;1610366774;;False;{};givd57t;False;t3_kujurp;False;False;t1_giv6xz9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givd57t/;1610413404;13;True;False;anime;t5_2qh22;;0;[]; -[];;;FeistyKnight;;;[];;;;text;t2_1twmffwo;False;False;[];;Ysbg fit perfectly for the reiner bert reveal but would fit horribly for this one imo. It isn't like annie or reiner bert where we are looking for an astonishing reveal. We all know eren is the attack titan and the whole episode built up to that. Ydbg would just not fit, even if a panel edit of just that scene might work well;False;False;;;;1610366804;;False;{};givd7ba;False;t3_kujurp;False;True;t1_giv8d5k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givd7ba/;1610413430;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;98% upvoted seems about standard for this sub.;False;False;;;;1610366835;;False;{};givd9d2;False;t3_kujurp;False;True;t1_giv6ma8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givd9d2/;1610413459;3;True;False;anime;t5_2qh22;;0;[]; -[];;;spiderknight616;;;[];;;;text;t2_vcau4lw;False;False;[];;Going with CG for the Shifters probably helped. And even then the CG they did use is absolutely top-notch.;False;False;;;;1610366839;;False;{};givd9mk;False;t3_kujurp;False;True;t1_giscc4v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givd9mk/;1610413462;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610366854;;False;{};givdaof;False;t3_kujurp;False;True;t1_giuy9b6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givdaof/;1610413477;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zool714;;;[];;;;text;t2_11y457;False;False;[];;"Lol wasn’t aware we are comparing it that way. - -Just a thought though, with what you’re saying, has Marley done nothing wrong as well ? Pretty safe to assume they have laws that say Eldians can be treated like shit.";False;False;;;;1610366872;;False;{};givdbuw;False;t3_kujurp;False;False;t1_givcex1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givdbuw/;1610413492;5;True;False;anime;t5_2qh22;;0;[]; -[];;;spiderknight616;;;[];;;;text;t2_vcau4lw;False;False;[];;"More like - -""I declare war!"" - -""Lol ok""";False;False;;;;1610366955;;False;{};givdhdd;False;t3_kujurp;False;True;t1_gisx731;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givdhdd/;1610413573;1;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;eren: 😳;False;False;;;;1610366969;;False;{};givdic6;False;t3_kujurp;False;False;t1_givca6h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givdic6/;1610413586;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Ripamon;;;[];;;;text;t2_fy0p4;False;True;[];;"People think it's wrong because of scale. - -An island wanting to fight and defend itself against the entire world. - -Forgetting that it's no different from self defense. Self defense in the military realm simply means protecting yourself by eliminating the enemy. - -And that's exactly what he's trying to do.";False;False;;;;1610366979;;False;{};givdj3c;False;t3_kujurp;False;False;t1_givcbw4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givdj3c/;1610413604;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610367091;;False;{};givdru9;False;t3_kujurp;False;True;t1_gitp04n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givdru9/;1610413707;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MuffinFIN;;;[];;;;text;t2_52y6nba;False;False;[];;They both have one of their eyes glowing so it checks out;False;False;;;;1610367100;;False;{};givdsi9;False;t3_kujurp;False;True;t1_giuxcoj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givdsi9/;1610413715;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;"Saving their budget for the next 3 episodes, which are action-heavy, and will require it. - -Cope harder.";False;False;;;;1610367182;;False;{};givdyjp;False;t3_kujurp;False;True;t1_givd2ia;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givdyjp/;1610413796;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Fabiocean;;;[];;;;text;t2_re95n7j;False;False;[];;"Actually, this episode has a lot of speeches. - - - -/s";False;False;;;;1610367188;;False;{};givdyx4;False;t3_kujurp;False;True;t1_gisv2sq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givdyx4/;1610413800;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ripamon;;;[];;;;text;t2_fy0p4;False;True;[];;"If we're talking about wrong in the ethical fashion, that's a whole different kettle of fish. - -But unfortunately, on the wider landscape of law, war and politics, ""unethical wrong"" is one of the first things to be overlooked. - -As normal individuals, of course we have our moral scruples. But this anime has done fantastically well to evolve past such, and in so doing, is establishing parallels with the real world";False;False;;;;1610367189;;False;{};givdz46;False;t3_kujurp;False;True;t1_givdbuw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givdz46/;1610413803;2;True;False;anime;t5_2qh22;;0;[]; -[];;;evilresurgence4;;;[];;;;text;t2_3hd7gero;False;False;[];;Imagine if North Korea was the only country with nukes, that’s basically the situation from Marley’s perspective.;False;False;;;;1610367225;;False;{};give1i9;False;t3_kujurp;False;True;t1_githtph;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/give1i9/;1610413833;1;True;False;anime;t5_2qh22;;0;[]; -[];;;demababo123;;;[];;;;text;t2_1qbxst3t;False;False;[];;Will they really finish the anime within 16 episodes? Or will the anime have an anime only ending?;False;False;;;;1610367269;;False;{};give4lp;False;t3_kujurp;False;True;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/give4lp/;1610413876;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Saberinbed;;;[];;;;text;t2_p00ls;False;False;[];;"I'm going to check back here in a week where the fights look like shit, and laugh at you. - -RemindMe! 1 week";False;False;;;;1610367338;;1610368189.0;{};give966;False;t3_kujurp;False;True;t1_givdyjp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/give966/;1610413937;1;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;in the previous episode they were suspecting there were some “rats” in marley/the army;False;False;;;;1610367387;;False;{};givecij;False;t3_kujurp;False;False;t1_givaxr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givecij/;1610413984;14;True;False;anime;t5_2qh22;;0;[]; -[];;;dedezin404;;;[];;;;text;t2_te0fm;False;False;[];;The bearded soldier sent him elsewhere but we did not have any more screentime for him;False;False;;;;1610367639;;False;{};givevge;False;t3_kujurp;False;True;t1_gittd34;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givevge/;1610414237;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shadow_Swap;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4db8be68;False;False;[];;17 hours, 21.4k;False;False;;;;1610367662;;False;{};givex2w;False;t3_kujurp;False;True;t1_giuz689;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givex2w/;1610414260;3;True;False;anime;t5_2qh22;;0;[]; -[];;;rollin340;;;[];;;;text;t2_cmyef;False;False;[];;"Yeah, I'm talking legally. What Marley did was a war crime; they attacked another nation without any declaration of war, and targeted civilians. They had no actual target, but simply unleashed death upon the masses. - -Eren attack once the declaration of war was given. On top of that, his target was a valid target in war. Yeah, there were collateral damages with the people inside, but that's what it is; collateral damage. Everyone else in the audience aside from the media were ambassadors of the allies of Marley in this war, and the military leaders of Marley's army. - -As fucked up as it may seem, it's probably a legal target in warfare.";False;False;;;;1610367675;;False;{};givey2d;False;t3_kujurp;False;True;t1_givdbuw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givey2d/;1610414273;2;True;False;anime;t5_2qh22;;0;[]; -[];;;zool714;;;[];;;;text;t2_11y457;False;False;[];;Nah man, to me, if it involves innocent people dying, it is never right. And I don’t disagree with what Eren is doing. But to say, he did *nothing* wrong? When innocent lives are lost? It’s a bit much to say that.;False;False;;;;1610367677;;False;{};givey6w;False;t3_kujurp;False;True;t1_givdz46;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givey6w/;1610414275;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Atheist-Gods;;;[];;;;text;t2_bv2s6;False;False;[];;"There was more than enough hints dropped about the bigger story to realize even back then. - -[This](https://www.youtube.com/watch?v=D71TBqyXz_w) happened halfway through season 1.";False;False;;;;1610367701;;False;{};givezv6;False;t3_kujurp;False;False;t1_giu9epc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givezv6/;1610414298;10;True;False;anime;t5_2qh22;;0;[]; -[];;;rollin340;;;[];;;;text;t2_cmyef;False;False;[];;"Yup. So you can just type ""\#\\\#Text"" without the quotation marks, and it'd come out just fine.";False;False;;;;1610367725;;False;{};givf1j4;False;t3_kujurp;False;True;t1_givbphz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givf1j4/;1610414322;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Telinour;;;[];;;;text;t2_941jahsi;False;False;[];;He isn't forced to kill civilians. He choose to do it.;False;False;;;;1610367776;;False;{};givf525;False;t3_kujurp;False;True;t1_git17xy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givf525/;1610414369;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zool714;;;[];;;;text;t2_11y457;False;False;[];;Fair enough;False;False;;;;1610367778;;False;{};givf577;False;t3_kujurp;False;True;t1_givey2d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givf577/;1610414372;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;"So this is what it feels like to be living rent-free inside someone's head? - -Interesting.";False;False;;;;1610367794;;False;{};givf68h;False;t3_kujurp;False;True;t1_give966;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givf68h/;1610414387;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SuperWeeble12;;;[];;;;text;t2_4tsmsg;False;False;[];;Well yeah but eldians are not considered humans in AOT's universe so they were technically not doing anything illegal;False;False;;;;1610367858;;False;{};givfao6;False;t3_kujurp;False;False;t1_givey2d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givfao6/;1610414448;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ihei47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JuuzouXIII;light;text;t2_3dhujs;False;False;[];;Yeah I personally don't want ysbg for this moment. Just wanted trailer music lol;False;False;;;;1610367913;;False;{};givfev7;False;t3_kujurp;False;False;t1_givcylq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givfev7/;1610414508;2;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;"It's so nice to see anime watchers now having the same morality debates manga readers have. - -And by ""nice"" I mean ""oh god oh fuck it's happening again we're all doomed"".";False;False;;;;1610367932;;False;{};givfgek;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givfgek/;1610414529;50;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;its only a war crime if you lost;False;False;;;;1610368046;;False;{};givfp6b;False;t3_kujurp;False;True;t1_givbtnx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givfp6b/;1610414640;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Reikakou;;;[];;;;text;t2_hbzvw;False;False;[];;For a moment, I thought it was Shishio.;False;False;;;;1610368075;;False;{};givfrbw;False;t3_kujurp;False;True;t1_gisaov5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givfrbw/;1610414669;1;True;False;anime;t5_2qh22;;0;[]; -[];;;procmil;;;[];;;;text;t2_2e1wvpb0;False;False;[];;"""Remember... no Marleyan""";False;False;;;;1610368108;;False;{};givfttg;False;t3_kujurp;False;True;t1_gisj33c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givfttg/;1610414702;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ripamon;;;[];;;;text;t2_fy0p4;False;True;[];;"It's unfortunate. But collateral damage will always exist. Even the US with their ""precision strikes"" and""knife missiles"", which they developed to minimize civilian casualties while fighting terrorists in the middle east, still managed to kill far too many civilians unfortunately. - -That's what war is. And nobody has ever found a way to eliminate this in the life or death struggle that is total war. - -So basically, I don't really see any other way for Eren to have gone about this. Regardless of his methods, some innocents would die. If not at the moment of his strike, then in the battle that would obviously take place immediately after. Being too crippled about collateral damage would run the risk of letting a golden opportunity slip, which could lead to losing his people.";False;False;;;;1610368172;;False;{};givfyeb;False;t3_kujurp;False;True;t1_givey6w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givfyeb/;1610414769;2;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;those are the attack titan eyes, when frieda and uri transformed their eyes were purple;False;False;;;;1610368182;;False;{};givfz3n;False;t3_kujurp;False;True;t1_giv60el;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givfz3n/;1610414778;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;The debate is going to be spicier when ch 123-latest chapter getting adapted 😂😂;False;False;;;;1610368201;;False;{};givg0gh;False;t3_kujurp;False;False;t1_givfgek;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givg0gh/;1610414797;16;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;"okay maybe not as exact as i thought lol - -i just thought tying the 4 years into eren saying “its been four years reiner” would be cool";False;False;;;;1610368207;;False;{};givg0x4;False;t3_kujurp;False;True;t1_giv40jn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givg0x4/;1610414803;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];;And in doing so, he's killing innocent people. Sorry bro I'm not endorsing a terrorist, doesn't matter how good his goal is;False;False;;;;1610368218;;False;{};givg1ns;False;t3_kujurp;False;False;t1_givcbw4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givg1ns/;1610414813;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Silverkira;;;[];;;;text;t2_13ihl1;False;False;[];;Ok than that explains the eyes in this episode.;False;False;;;;1610368228;;False;{};givg2dc;False;t3_kujurp;False;True;t1_givfz3n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givg2dc/;1610414823;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Derpykachu;;;[];;;;text;t2_4z6j9mb;False;False;[];;That was the joke.;False;False;;;;1610368235;;False;{};givg2wf;False;t3_kujurp;False;True;t1_giux4wf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givg2wf/;1610414830;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mint_Choco7;;;[];;;;text;t2_6qer3u2n;False;False;[];;The discourse was probably the thing I was dreading to see the most when it came to season 4’s adaptation. I wonder if the general consensus is going to change considering manga readers had more time to just sit and contemplate Eren with there being monthly releases rather than weekly for the anime.;False;False;;;;1610368242;;False;{};givg3c7;False;t3_kujurp;False;False;t1_givfgek;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givg3c7/;1610414836;17;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;yeah;False;False;;;;1610368265;;False;{};givg4ux;False;t3_kujurp;False;True;t1_givg2dc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givg4ux/;1610414855;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crazykev17;;;[];;;;text;t2_czkri;False;False;[];;That has to be Armin that trapped Porco and Pieck, right???;False;False;;;;1610368268;;False;{};givg522;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givg522/;1610414857;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];;Self defense requires proportionality. In this case, Marley didn't even attacked paradis yet, so now it's Marley who's in self defense;False;True;;comment score below threshold;;1610368270;;False;{};givg560;False;t3_kujurp;False;True;t1_givdj3c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givg560/;1610414859;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];;It is a war crime, he killed civilians and the preview shows he killed a lot more;False;False;;;;1610368305;;False;{};givg7lu;False;t3_kujurp;False;False;t1_giv83bk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givg7lu/;1610414892;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Tyranythan;;;[];;;;text;t2_mn70nm;False;False;[];;The Tybur family has been very hands off despite being in control of marley. Willy is seemingly the first Tybur to step in, why didn't he do that before the original attack? well he likely wasn't the head of the family at that point and the Tybur family knew there was no danger. Why Marley attacked despite believing they would get wiped out if they did is not known well, but paradis island is full of fossil fuel and unique resources so the most likely reason is that marley needed resources to stay ahead in their wars.;False;False;;;;1610368305;;False;{};givg7ny;False;t3_kujurp;False;True;t1_giv8o60;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givg7ny/;1610414893;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610368313;;False;{};givg88j;False;t3_kujurp;False;True;t1_givbphz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givg88j/;1610414901;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;Well, there has been a lot of cases were comments in an episode discussion actually had more upvotes that discussion thread itself. Both in the rang of thousand. Considering this is the most upvoted discussion thread of all time and the one with the most comments, it's only natural for the replies to a comment to have more upvotes than most of the episode discussion threads this week.;False;True;;comment score below threshold;;1610368322;;False;{};givg8w2;False;t3_kujurp;False;True;t1_giv9wkp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givg8w2/;1610414910;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610368358;;False;{};givgbre;False;t3_kujurp;False;True;t1_giu7x0r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givgbre/;1610414949;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;https://www.youtube.com/watch?v=NwVNuyfhF0Q;False;False;;;;1610368387;;False;{};givge2a;False;t3_kujurp;False;True;t1_gisk033;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givge2a/;1610414978;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];;Didn't know terrorist attacks were legal, Bin Laden should've tell Bush it was all good and legal;False;False;;;;1610368391;;False;{};givgef9;False;t3_kujurp;False;False;t1_givcex1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givgef9/;1610414982;10;True;False;anime;t5_2qh22;;0;[]; -[];;;zool714;;;[];;;;text;t2_11y457;False;False;[];;I do not have an issue (or rather I’ve accepted and understand) that there’s collateral in war. That is unavoidable. My issue is with people who don’t see anything wrong with it.;False;False;;;;1610368406;;False;{};givgfmk;False;t3_kujurp;False;True;t1_givfyeb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givgfmk/;1610414997;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ihei47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JuuzouXIII;light;text;t2_3dhujs;False;False;[];;\#thanks;False;False;;;;1610368437;;False;{};givgi4r;False;t3_kujurp;False;True;t1_givbphz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givgi4r/;1610415031;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];;Yes, they did. But at least they have the excuse of being child soldiers;False;False;;;;1610368484;;False;{};givglbk;False;t3_kujurp;False;False;t1_giv929c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givglbk/;1610415073;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Regrer47;;;[];;;;text;t2_1wtg17bq;False;False;[];;I'm just trying to convey what the original commenter is trying to say;False;False;;;;1610368496;;False;{};givgm2m;False;t3_kujurp;False;True;t1_givgef9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givgm2m/;1610415084;2;True;False;anime;t5_2qh22;;0;[]; -[];;;officialchourico;;;[];;;;text;t2_125w3v;False;False;[];;"So if that is the case, some random character we haven't met is going to emerge to fight Eren. Which sounds to me like I won't give a shit about them during the fight, which is disappointing. -How hard you are going on this implies to me you're a manga reader, btw, in which case I'd have preferred you just left this alone and went to the manga thread.";False;False;;;;1610368525;;False;{};givgnvv;False;t3_kujurp;False;True;t1_giu82ng;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givgnvv/;1610415112;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ripamon;;;[];;;;text;t2_fy0p4;False;True;[];;"Technically they are still at war. Marley invaded Paradis 4 years ago without so much as a declaration of war. - -And killed hundreds of thousands of Paradis inhabitants. - -This ""official"" declaration of war isn't even directed to Paradis. There are no Paradis envoys of lines or communication to deliver this declaration of war. - -Everything Marley has done is wrong.";False;False;;;;1610368598;;1610370702.0;{};givgsj0;False;t3_kujurp;False;False;t1_givg560;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givgsj0/;1610415176;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;I mean, it only takes writing out an outline ahead of time. Not that I'm any good at it;False;False;;;;1610368616;;False;{};givgto0;False;t3_kujurp;False;True;t1_gisuo6m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givgto0/;1610415192;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;Hm, those walls don't even begin to fit inside Madagascar;False;False;;;;1610368762;;False;{};givh2k8;False;t3_kujurp;False;False;t1_giu6p63;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givh2k8/;1610415321;12;True;False;anime;t5_2qh22;;0;[]; -[];;;engrng;;;[];;;;text;t2_2ug1emh;False;False;[];;"Thanks for the detailed response. - -Just following up on 4. If Eren was able to use the Founding Titan power back then, why is he not able to use it now?";False;False;;;;1610368805;;False;{};givh5fa;False;t3_kujurp;False;True;t1_giv9al7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givh5fa/;1610415366;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];;That's weird but you do you, enjoy it;False;False;;;;1610368811;;False;{};givh5tk;False;t3_kujurp;False;False;t1_giv5rag;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givh5tk/;1610415371;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Atheist-Gods;;;[];;;;text;t2_bv2s6;False;False;[];;"The big question that this revelation leads to is ""Who sent the Warriors to Paradis and why?"" It's clear that the Tyburs and any Marleyans that knew the truth wouldn't have sent them to steal the Founder titan. So was it simply a screwup by Marleyans that didn't know the truth and the Tyburs failed to stop it, which is why Wily decided to actually take control of Marley, or is it people with their own motives such as the Restorationists/Zeke.";False;False;;;;1610368836;;False;{};givh7ih;False;t3_kujurp;False;False;t1_giu7ig5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givh7ih/;1610415394;8;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmolAngel;;;[];;;;text;t2_4e8nt30r;False;False;[];;Has to be! That was a genius move and I only know one (living) Eldian with that kind of idea. Plus he tried a similar trap with Annie back in S1.;False;False;;;;1610368878;;False;{};givhada;False;t3_kujurp;False;False;t1_givg522;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givhada/;1610415436;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;"""Eh. There are loads of dumb kids around here"" —""Kruger""";False;False;;;;1610368942;;False;{};givhepl;False;t3_kujurp;False;False;t1_gisz38d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givhepl/;1610415494;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Fabiocean;;;[];;;;text;t2_re95n7j;False;False;[];;Imo the best part of the series even.;False;False;;;;1610368943;;False;{};givhes5;False;t3_kujurp;False;True;t1_gith4mm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givhes5/;1610415495;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ImrooVRdev;;;[];;;;text;t2_2rysxfcd;False;False;[];;There was metaphorical gun on the table during the talk, and by the end of the scene gun was indeed fired.;False;False;;;;1610368957;;False;{};givhfnt;False;t3_kujurp;False;True;t1_gisc1bn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givhfnt/;1610415507;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OneWingedAngelfan;;;[];;;;text;t2_2hgynpoy;False;False;[];;Who else thought the imposter Marleyan was totally a colossal growth spurted Armin?;False;False;;;;1610368973;;False;{};givhgp2;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givhgp2/;1610415521;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Atheist-Gods;;;[];;;;text;t2_bv2s6;False;False;[];;Reiner jumped on top of him as Eren transformed. Reiner presumably took the brunt of the damage and can heal/protect himself.;False;False;;;;1610368977;;False;{};givhgxv;False;t3_kujurp;False;False;t1_gisu0qc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givhgxv/;1610415525;5;True;False;anime;t5_2qh22;;0;[]; -[];;;fishstiz;;;[];;;;text;t2_13rjdi;False;False;[];;The stupidest nitpicks I've seen are some insignificant things that were cut. Its 2021 and people are still fucking complaining about anime (all anime in general) not adapting 100% of the manga. There's also one complaint about eren's scream????? Seriously it hurts to read because they think they're so smart about it too. r/titanfolk has the worst case of doomer syndrome I've ever seen.;False;False;;;;1610369013;;False;{};givhjfe;False;t3_kujurp;False;False;t1_giv5nfv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givhjfe/;1610415558;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];;Right? The tension was all over the episode, even though it's pretty clear where is heading you can still feel the tension;False;False;;;;1610369059;;False;{};givhmb6;False;t3_kujurp;False;True;t1_giv17y8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givhmb6/;1610415602;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fabiocean;;;[];;;;text;t2_re95n7j;False;False;[];;Exactly.;False;False;;;;1610369071;;False;{};givhn18;False;t3_kujurp;False;False;t1_giv70ih;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givhn18/;1610415613;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shikajaru;;;[];;;;text;t2_4084lrfx;False;False;[];;that's a ram;False;False;;;;1610369071;;False;{};givhn20;False;t3_kujurp;False;False;t1_giskp3x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givhn20/;1610415613;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];;That's why he wanted to hear him;False;False;;;;1610369083;;False;{};givhnrp;False;t3_kujurp;False;True;t1_giv0wjj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givhnrp/;1610415624;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BlooregardQKazoo;;;[];;;;text;t2_3uspr;False;False;[];;"the fact that i'm an anime-only makes me a minority, and i feel like AoT is not made for me. a perfect example is Eren in this season - his scenes don't mean much of anything if you don't already know it is him. and with new characters i don't care about being the focus of the beginning of this season, there's no reason for me to suspect that one new character i don't care about is actually important. - -i feel like that's the AoT experience, anime-onlies saying ""that's ok"" and manga readers saying ""OMG this is the greatest thing ever because [Spoiler].";False;False;;;;1610369134;;False;{};givhquz;False;t3_kujurp;False;False;t1_giucqet;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givhquz/;1610415669;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mot_Schutze;;;[];;;;text;t2_9rfvnta3;False;False;[];;Eren did 9/11?;False;False;;;;1610369143;;False;{};givhrf1;False;t3_kujurp;False;False;t1_gisvm0w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givhrf1/;1610415677;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Ljh_;;;[];;;;text;t2_vo6evkl;False;False;[];;Eren hasn’t killed even 0.001% of the amount of island Eldians who died as a result of Marleys attack;False;False;;;;1610369183;;False;{};givhtq5;False;t3_kujurp;False;False;t1_givg560;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givhtq5/;1610415712;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;Er… does that make Saddam a wise pacifist??;False;False;;;;1610369203;;False;{};givhuvv;False;t3_kujurp;False;True;t1_giu5oab;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givhuvv/;1610415735;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;🐐 this is a goat right, I can't believe myself;False;False;;;;1610369239;;False;{};givhx2j;False;t3_kujurp;False;False;t1_givhn20;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givhx2j/;1610415772;6;True;False;anime;t5_2qh22;;0;[]; -[];;;sKyBlazer08;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sKyBlazer08;light;text;t2_17ibsr;False;False;[];;"Fantastic fucking episode, Willy's speech and Eren and Reiner's conversation were done perfectly. Voice acting was great, music was great. My only complaint would be, the scene where Eren burst through the building could have been better, though I am still happy with what've got. They probably focused on the next episode so that's understandable. - -I am fucking hyped for the next episode, let's fucking go.";False;False;;;;1610369247;;False;{};givhxl1;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givhxl1/;1610415780;17;True;False;anime;t5_2qh22;;0;[]; -[];;;ShadowStormDrift;;;[];;;;text;t2_12hur2;False;False;[];;"Well to be fair, MARLEY'S Titans are slowly being outclassed. And also pointed out in the episode was that King Fritz and the Tyburs conspired the end the fighting and invented ""Helos"". - -So in fact at no point were the Titans losing, King Fritz got tired of war and tried to peace out. Then the Tyburs joined forces with Marley and presumably dealt with the other 8 titans who were described as ""Fighting amongst themselves"". - -I assume that after Fritz had enslaved Marley and saw his own faction start to infight that he must have realised ""Man there is no end to war"". - -Regarding how the colossal titans made the wall, remember back in the crystal caverns when Eren mastered hardening after consuming that vial labelled ""Harden"". Also how Ross turned into that colossal titan after drinking the vial of titan blood. - -All I mean is that we can assume (if we give the author the benefit of the doubt) that the secret to creating colossal titans AND hardening colossal titans lies with the secret nobility of the people of Paradis and in the memories of King Fritz' line. - -Edit: Sorry not titan blood, titan serum. Whatever that stuff is called.";False;False;;;;1610369305;;False;{};givi1cd;False;t3_kujurp;False;True;t1_givaito;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givi1cd/;1610415832;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DragonDDark;;;[];;;;text;t2_dxbq2;False;False;[];;It reached it :D;False;False;;;;1610369392;;False;{};givi6ut;False;t3_kujurp;False;False;t1_gishm6l;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givi6ut/;1610415909;6;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmolAngel;;;[];;;;text;t2_4e8nt30r;False;False;[];;What didn’t you like about Eren’s demolition?;False;False;;;;1610369404;;False;{};givi7nb;False;t3_kujurp;False;False;t1_givhxl1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givi7nb/;1610415922;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Maleficent-Republic;;;[];;;;text;t2_3fu96a5a;False;False;[];;lets get awards to 1000;False;False;;;;1610369460;;False;{};givib6w;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givib6w/;1610415971;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;They're both chess pieces in a brutal back-and-forth game and each seems more or less resigned to that role now.;False;False;;;;1610369500;;False;{};gividmw;False;t3_kujurp;False;True;t1_gischn4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gividmw/;1610416010;2;True;False;anime;t5_2qh22;;0;[]; -[];;;godblow;;;[];;;;text;t2_kigl8;False;False;[];;[In the flashback during Ep 48.](https://youtu.be/ZnT-8dDajGs);False;False;;;;1610369517;;False;{};giviekv;False;t3_kujurp;False;True;t1_giuij90;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giviekv/;1610416022;1;True;False;anime;t5_2qh22;;0;[]; -[];;;greenrai;;;[];;;;text;t2_q2nc7;False;False;[];;Same, I figured he’d just transform into Warhammer but prob not considering all these comments that he’s dead;False;False;;;;1610369611;;False;{};givika0;False;t3_kujurp;False;True;t1_gitvnli;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givika0/;1610416107;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atheist-Gods;;;[];;;;text;t2_bv2s6;False;False;[];;Spinal fluid.;False;False;;;;1610369670;;False;{};givintz;False;t3_kujurp;False;True;t1_givi1cd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givintz/;1610416160;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Santoryu_Zoro;;;[];;;;text;t2_o2n3n;False;False;[];;lesson learned kids, if a stranger hands you a letter, dont mail it;False;False;;;;1610369730;;False;{};givirit;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givirit/;1610416216;10;True;False;anime;t5_2qh22;;0;[]; -[];;;sil3nt_V;;;[];;;;text;t2_3sgpo99k;False;False;[];;Well he did want to start the war, so why not do it as soon as he declared it, and why not at his front door.;False;False;;;;1610369742;;False;{};givisb5;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givisb5/;1610416226;8;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;I just love the fact that she canonically has her own Simp Squad;False;False;;;;1610369825;;False;{};givixlf;False;t3_kujurp;False;False;t1_givcphw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givixlf/;1610416310;19;True;False;anime;t5_2qh22;;0;[]; -[];;;PushEmma;;MAL;[];;http://myanimelist.net/animelist/SleepingWolves;dark;text;t2_m6lcw;False;False;[];;I'm not a manga reader. I just think it just fits its not him. The Titan is interesting by itself and we will surely get development for the other character soon and effective enough. If it's Willy I think its a bit bland (only in comparison to the rest of the developments) but I would also be happy cause Willy is a great character.;False;False;;;;1610369836;;False;{};giviy9q;False;t3_kujurp;False;False;t1_givgnvv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giviy9q/;1610416323;5;True;False;anime;t5_2qh22;;0;[]; -[];;;da_BAT;;;[];;;;text;t2_skfq3;False;False;[];;Did I miss that part? I only saw him killing Willy.;False;False;;;;1610369853;;False;{};givizfv;False;t3_kujurp;False;True;t1_gitbapx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givizfv/;1610416341;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pixeldots;;;[];;;;text;t2_42hhj0qa;False;False;[];;Sorry, manga reader here. Has MAPPA confirmed up to what chapter the last ep would be?;False;False;;;;1610369887;;False;{};givj1ko;False;t3_kujurp;False;True;t1_gismhqj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givj1ko/;1610416373;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Macaconcius;;;[];;;;text;t2_8pv6dol8;False;False;[];;This whole story of the Eldians being the OG ''Nazis'' could also be made up by the Marleyans to justify the antisemitism against them tho, much like the Nazis did with the Jews by writing The Protocols of the Elders of Zion;False;False;;;;1610369909;;False;{};givj2wf;False;t3_kujurp;False;False;t1_giv1nu4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givj2wf/;1610416395;5;True;False;anime;t5_2qh22;;0;[]; -[];;;iloveacademia;;;[];;;;text;t2_3m6fzg6c;False;False;[];;"That just means you’re a coward or willing to do anything to live. - -Do you want others to do the same to you without hesitation may I ask?";False;False;;;;1610369937;;False;{};givj4p5;False;t3_kujurp;False;True;t1_giueads;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givj4p5/;1610416419;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Calhamity;;;[];;;;text;t2_9p79v9ij;False;False;[];;Hey did anyone catch what happened to Kruger?;False;False;;;;1610369968;;False;{};givj6lk;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givj6lk/;1610416450;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Akiraj02;;;[];;;;text;t2_xlqxo;False;False;[];;"#erenshotfirst - -He started transforming before Willy said the declaration of war line";False;False;;;;1610370014;;False;{};givj9iw;False;t3_kujurp;False;True;t1_gisboc1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givj9iw/;1610416499;1;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;">Re:Zero is one of my kindest, but the world build up like dragon from the sky can spit out Puck level spirit users, becsuse the world is like that. It is easier for the writer to make. - - - -Nah, that's not true, reading the novels, you'll see the level of detail put in the world of ReZero is more than AOT's";False;False;;;;1610370026;;False;{};givja8e;False;t3_kujurp;False;True;t1_giswmec;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givja8e/;1610416515;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610370053;;False;{};givjbxq;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givjbxq/;1610416555;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iloveacademia;;;[];;;;text;t2_3m6fzg6c;False;False;[];;"It’s mild. Stuff like this has happened in shows like FMA and I wouldn’t even consider that series dark. - -You really need to read more series if you think this is cruel, maybe then come back to me and when can discuss this then.";False;False;;;;1610370058;;1610370288.0;{};givjc79;False;t3_kujurp;False;False;t1_giu4wde;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givjc79/;1610416560;0;True;False;anime;t5_2qh22;;0;[]; -[];;;MartinaS90;;;[];;;;text;t2_13onma;False;False;[];;The gate guards that were joking with Gabi, Falco, Udo and Zofia were another example of it.;False;False;;;;1610370059;;False;{};givjc9p;False;t3_kujurp;False;False;t1_gitoox3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givjc9p/;1610416562;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Mot_Schutze;;;[];;;;text;t2_9rfvnta3;False;False;[];;"Doubt it, considering Eren's attack has basically confirmed everything Tybur said was right and will unite the world against Paradis. Probably according to his plan. - -I am guessing Tybur foresaw a surprise attack coming (the conversation he had with the General last episode about the decrepit building behind the stage) and he made sure he told one of his true friends not to come to school today. Also explains his nervousness before the speech, he knew in all likelihood he was about to die.";False;False;;;;1610370100;;False;{};givjeqk;False;t3_kujurp;False;True;t1_giuosne;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givjeqk/;1610416601;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kaboos-alt-uwu;;;[];;;;text;t2_4i567lmh;False;False;[];;wuh;False;False;;;;1610370109;;False;{};givjf7n;False;t3_kujurp;False;False;t1_giu7qa8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givjf7n/;1610416608;6;True;False;anime;t5_2qh22;;0;[]; -[];;;DekuIsShit;;;[];;;;text;t2_6pegouou;False;False;[];;"I just watched the episode again, and i noticed that the blonde ""beanpole soldier"" has to be armin. I don't think i'm the first to notice, but i haven't seen people talking about it. - -Just think about it. Blonde, an ally of eren, and peick knows how he looks. - -Peick has briefly seen armin when zeke talked to eren about their father. - -Unless he is some random marlyen that peick has seen once, that's the only solution.";False;False;;;;1610370221;;False;{};givjmf6;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givjmf6/;1610416713;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];;Is that really the measure you want to use? The amount of people killed?;False;False;;;;1610370224;;False;{};givjmky;False;t3_kujurp;False;False;t1_givhtq5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givjmky/;1610416715;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Atheist-Gods;;;[];;;;text;t2_bv2s6;False;False;[];;I wonder if it has anything to do with Zeke's motives. He clearly has his own motives separate from Marley and they could easily match up with him being told to be a double agent by his dad, Eren Kruger's role as a double agent and why the Warriors were sent to Paradis to overthrow a king that was working together with the Tyburs/Marley.;False;False;;;;1610370235;;False;{};givjn90;False;t3_kujurp;False;True;t1_gishsn3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givjn90/;1610416725;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ashish_Trip;;;[];;;;text;t2_2t89pxeq;False;False;[];;"The types that are : ""I hate everyone and gonna kill everyone and no one can stop the me!"" Are the ones that I'm talking about. There's too little emphasis on backstory and their ideals. examples are : Broly, kaguya(naruto), villians in OPM(loved OPM, but still), pokemon villians etc.... There's a lot of them, needless to say : if you depict a villian's story properly then there are no villians left(just like in AOTs case, the war is the real villian). But mostly, the ideals and empthatic sides are left out and only the basic incident that made them bad are shown, I'd call that shallow writing.depicting the villians as psycho is also quite common as you rid yourselves of their ideals and empathy, but it doesn't work like that in real life and that's why I'm not a fan of it. I guess the credit really goes to Isayama on how he managed to weave both side's story so perfectly that we are having this discussion.";False;False;;;;1610370266;;False;{};givjpaz;False;t3_kujurp;False;True;t1_givcpqg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givjpaz/;1610416755;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;You guys are missing the point of the story. War is fucked and good people do bad things and vice versa. Eren is my favorite character in all of fiction but he's definitely committing war crimes.;False;False;;;;1610370297;;False;{};givjrd0;False;t3_kujurp;False;False;t1_givc8cw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givjrd0/;1610416792;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Atheist-Gods;;;[];;;;text;t2_bv2s6;False;False;[];;"People have been saying that the current pacing seems to require a ""final season part 2"".";False;False;;;;1610370301;;False;{};givjrma;False;t3_kujurp;False;True;t1_gitmbb5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givjrma/;1610416796;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kaboos-alt-uwu;;;[];;;;text;t2_4i567lmh;False;False;[];;Declare war on the school lmao;False;False;;;;1610370330;;False;{};givjtgt;False;t3_kujurp;False;True;t1_gish30c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givjtgt/;1610416830;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;If he hadn't, he would have been lying;False;False;;;;1610370343;;False;{};givju8g;False;t3_kujurp;False;True;t1_gita99c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givju8g/;1610416842;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Denpants;;;[];;;;text;t2_ry9v0w1;False;False;[];;Paradis is an island, so I'm just imagining 1000000 colossal titans just swimming like synchronized swimmers in dainty backstroke all the way to marley;False;False;;;;1610370355;;False;{};givjuzs;False;t3_kujurp;False;False;t1_giti4xc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givjuzs/;1610416853;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Atheist-Gods;;;[];;;;text;t2_bv2s6;False;False;[];;">Uh, who is that soldier? I assume a Paradisian, but I can't figure it out. I at first thought they were female, but they get referred to as ""he"". They're blond, but they look too tall to be Armin. Honestly stumped on this one. Pieck has apparently seen him before, so unless it's Armin with a growth spurt i'm clueless. - -Pretty certain it's Armin. Considering that Bertholt was also tall and lanky, holding the power of the Colossus Titan might impact how they grow.";False;False;;;;1610370461;;False;{};givk1pq;False;t3_kujurp;False;False;t1_gisjuyt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givk1pq/;1610416979;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DOAbayman;;;[];;;;text;t2_10yal8;False;False;[];;If it’s inevitable that’s exactly what it means, they have no allies to support them and there’s very little time before they start facing air raids that they can’t stop. The rest of the world is not going to just let them amass an army that was strong enough to rule the world.;False;False;;;;1610370552;;False;{};givk7c6;False;t3_kujurp;False;True;t1_giukgkz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givk7c6/;1610417072;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sjupiter92;;;[];;;;text;t2_s5kns1i;False;False;[];;I'm a manga reader too and I absolutely loved this episode. A bunch of them just like to nitpick and find whatever reason to criticize because it's not animated how they imagined/wanted it to be. Please ignore them.;False;False;;;;1610370556;;False;{};givk7lh;False;t3_kujurp;False;False;t1_giv54qx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givk7lh/;1610417075;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Ripamon;;;[];;;;text;t2_fy0p4;False;True;[];;You haven't responded to my comment above;False;False;;;;1610370677;;False;{};givkfg5;False;t3_kujurp;False;True;t1_givjmky;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givkfg5/;1610417207;0;True;False;anime;t5_2qh22;;0;[]; -[];;;bumbapoppa;;;[];;;;text;t2_53cmo78q;False;False;[];;they even showed the aftermath when hitch and marlo talked to levi in season 3;False;False;;;;1610370711;;False;{};givkhpx;False;t3_kujurp;False;True;t1_giu6wzk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givkhpx/;1610417238;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mingsplosion;;;[];;;;text;t2_zsp8b;False;False;[];;Japan was on the winning side during the First World War.;False;False;;;;1610370714;;False;{};givkhx5;False;t3_kujurp;False;False;t1_giuxohr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givkhx5/;1610417241;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Tidezen;;MAL;[];;http://myanimelist.net/profile/Tidezen;dark;text;t2_e8eff;False;False;[];;This episode was just so good. Just commenting here to mark this epic thread, and I'm sure there will be many more this season. Poor Reiner...;False;False;;;;1610370752;;False;{};givkkhs;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givkkhs/;1610417283;13;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;Yess, i’m so unbelievably happy now!! It even almost breaks 22k upvotes by now !;False;False;;;;1610370764;;False;{};givklce;False;t3_kujurp;False;False;t1_givi6ut;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givklce/;1610417296;5;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;"Gonna turn up all edgy and say, - -THIS SCHOOL SHALL KNOW PAIN";False;False;;;;1610370795;;False;{};givkndk;False;t3_kujurp;False;True;t1_givjtgt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givkndk/;1610417325;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;that's not really sad. especially reiner's mom. who cares ab her;False;False;;;;1610370883;;False;{};givkt3l;False;t3_kujurp;False;True;t1_gitgmlc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givkt3l/;1610417411;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kaboos-alt-uwu;;;[];;;;text;t2_4i567lmh;False;False;[];;Just come in with a deep cut on your hand and say ‘I just keep moving forward’ and you know what the rest is :);False;False;;;;1610370894;;False;{};givktt7;False;t3_kujurp;False;True;t1_givkndk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givktt7/;1610417423;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Alsphomore;;;[];;;;text;t2_1vd1gz3q;False;False;[];;FUCK! That Japanese lady coming to see his face just before his death. Somthing is going on between her and Eren. Hell yeah! This show always gives something more. Love you Isayama;False;False;;;;1610370960;;False;{};givky2r;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givky2r/;1610417488;13;True;False;anime;t5_2qh22;;0;[]; -[];;;kikoano;;;[];;;;text;t2_4nk3h;False;False;[];;But the voice was totally different. Unless Armin can somehow do that voice.;False;False;;;;1610370979;;False;{};givkz6p;False;t3_kujurp;False;False;t1_givjmf6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givkz6p/;1610417505;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Lohtric;;;[];;;;text;t2_10buyw;False;False;[];;It will be just a roller coaster from here on out;False;False;;;;1610371021;;False;{};givl1y3;False;t3_kujurp;False;False;t1_givkkhs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givl1y3/;1610417550;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MAQS357;;;[];;;;text;t2_yske3;False;False;[];;Armin was a burned crisp with no hair though..;False;False;;;;1610371054;;False;{};givl418;False;t3_kujurp;False;False;t1_givjmf6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givl418/;1610417583;7;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomXxZ;;;[];;;;text;t2_37lbelym;False;False;[];;iT wOnT bReAk 2oK!;False;False;;;;1610371073;;False;{};givl5i0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givl5i0/;1610417611;26;True;False;anime;t5_2qh22;;0;[]; -[];;;gulitiasinjurai;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;eh nandake?;light;text;t2_1591dz;False;False;[];;"18 hours later and 21k upvote. Damn, I think this is the most upvoted post on this sub ever - -Fairly deserve. This is such a great episode";False;False;;;;1610371086;;False;{};givl6hh;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givl6hh/;1610417624;19;True;False;anime;t5_2qh22;;0;[]; -[];;;not_martian;;;[];;;;text;t2_1korsrrj;False;False;[];;Wdym ?;False;False;;;;1610371095;;False;{};givl745;False;t3_kujurp;False;False;t1_givj6lk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givl745/;1610417632;8;True;False;anime;t5_2qh22;;0;[]; -[];;;DekuIsShit;;;[];;;;text;t2_6pegouou;False;False;[];;And? Like 3 years have passed. He could just have had a late puberty.;False;False;;;;1610371121;;False;{};givl8vw;False;t3_kujurp;False;False;t1_givkz6p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givl8vw/;1610417659;8;True;False;anime;t5_2qh22;;0;[]; -[];;;RedHeadGearHead;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Redheadgearhead/;light;text;t2_7es8i;False;False;[];;Very likely there's a part 2.;False;False;;;;1610371134;;False;{};givl9sk;False;t3_kujurp;False;False;t1_give4lp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givl9sk/;1610417672;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LawsonTse;;;[];;;;text;t2_15e3qo;False;False;[];;I would argue in favor of France size walls since that's more like the size needed to contain enough titans to flatten the entire world;False;False;;;;1610371135;;False;{};givl9u4;False;t3_kujurp;False;False;t1_giulava;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givl9u4/;1610417673;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lohtric;;;[];;;;text;t2_10buyw;False;False;[];;"The OST was lacking. It wasn't as iconic as it needed to be. This soundtrack would have worked better https://www.youtube.com/watch?t=62&v=LmPH8BTwPKU&feature=youtu.be";False;False;;;;1610371137;;False;{};givl9zi;False;t3_kujurp;False;True;t1_givi7nb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givl9zi/;1610417675;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomXxZ;;;[];;;;text;t2_37lbelym;False;False;[];;"Yep, it's the most upvoted. - -The second most upvoted is Episode 60. We broke the record we set a few weeks ago.";False;False;;;;1610371196;;False;{};givle86;False;t3_kujurp;False;False;t1_givl6hh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givle86/;1610417734;8;True;False;anime;t5_2qh22;;0;[]; -[];;;DOAbayman;;;[];;;;text;t2_10yal8;False;False;[];;They’ve been attacking them for years. they’re the ones who turned their island into giant zombie hellhole by flooding the island with Titans and they were about to wipe them out in a full scale war.;False;False;;;;1610371197;;False;{};givle9j;False;t3_kujurp;False;False;t1_givg560;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givle9j/;1610417735;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Pieck was scouting them for Zeke before they arrived at Shiganshina, so she probably saw all of them;False;False;;;;1610371250;;False;{};givlhsz;False;t3_kujurp;False;False;t1_givl418;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givlhsz/;1610417784;10;True;False;anime;t5_2qh22;;0;[]; -[];;;torching_fire;;;[];;;;text;t2_2a3tc5a9;False;False;[];;I don't get how kaguya sama has more upvotes even though it has fewer users in MAL;False;False;;;;1610371263;;False;{};givliog;False;t3_kujurp;False;True;t1_givl6hh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givliog/;1610417797;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;"It did before the discussion reached 24 hours 💀 - -The real question is how further it will go, I think its unpredictable at this point";False;False;;;;1610371277;;False;{};givljnm;False;t3_kujurp;False;False;t1_givl5i0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givljnm/;1610417811;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;It is the most upvoted discussion for sure, but post in general no;False;False;;;;1610371316;;False;{};givlm8n;False;t3_kujurp;False;False;t1_givl6hh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givlm8n/;1610417850;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Denpants;;;[];;;;text;t2_ry9v0w1;False;False;[];;Would be real awkward down in the basement;False;False;;;;1610371379;;False;{};givlqdb;False;t3_kujurp;False;True;t1_giue5xh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givlqdb/;1610417913;3;True;False;anime;t5_2qh22;;0;[]; -[];;;supertonto2;;;[];;;;text;t2_4g4afvk0;False;False;[];;"Has no one noticed that Eren fully regenerated his leg in less than a damn minute? - -By comparison, in Season 2 where he was captured by the Warriors, he fully regenerated both his arms and legs by several hours from morning to afternoon. - -My man got a lot of growth not just mentally, but he mastered his Titan powers. Can't wait for the next episode's fight!";False;False;;;;1610371426;;False;{};givltgs;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givltgs/;1610417962;13;True;False;anime;t5_2qh22;;0;[]; -[];;;arnav1311;;;[];;;;text;t2_81mzmva;False;False;[];;You are using our world's morality. Of course killing even one person is wrong. You have to think from the morals of this world Isayama has created. It's kill or be killed. Everyone has blood on their hands. It's not as simple as you are making it out to be.;False;False;;;;1610371448;;False;{};givluwt;False;t3_kujurp;False;False;t1_givg1ns;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givluwt/;1610417984;4;True;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;I agree.;False;False;;;;1610371474;;False;{};givlwli;False;t3_kujurp;False;True;t1_givl9zi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givlwli/;1610418007;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bromeek;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Bromek/;light;text;t2_qmc60;False;False;[];;"I really wish to know what is a ""good"" episode for people that voted this episode is ""Bad"".";False;False;;;;1610371478;;False;{};givlwtx;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givlwtx/;1610418011;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Comfortable-Ad-9231;;;[];;;;text;t2_7zgk508v;False;False;[];;I read it in Speedwagon's voice for sure.;False;False;;;;1610371480;;False;{};givlwyk;False;t3_kujurp;False;True;t1_gisui2h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givlwyk/;1610418013;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LittleWompRat;;;[];;;;text;t2_54bxq18h;False;False;[];;Nope. The most upvoted one is SNK 60 with 22k upvotes.;False;False;;;;1610371536;;False;{};givm0yg;False;t3_kujurp;False;True;t1_givlm8n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givm0yg/;1610418072;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Denpants;;;[];;;;text;t2_ry9v0w1;False;False;[];;So basically he's Marley Eren now;False;False;;;;1610371564;;False;{};givm2ve;False;t3_kujurp;False;False;t1_giv8mpf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givm2ve/;1610418103;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;"\#Did it worked ? - -Edit : It did";False;False;;;;1610371571;;False;{};givm3fw;False;t3_kujurp;False;True;t1_givbphz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givm3fw/;1610418111;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610371596;;False;{};givm572;False;t3_kujurp;False;True;t1_givle86;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givm572/;1610418138;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lohtric;;;[];;;;text;t2_10buyw;False;False;[];;Hello Kitty Episode 41;False;False;;;;1610371601;;False;{};givm5l5;False;t3_kujurp;False;False;t1_givlwtx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givm5l5/;1610418144;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;Episode 60 reached that after the 48 Hour mark. In the 48 hour gap it reached 20k something;False;False;;;;1610371606;;False;{};givm5xj;False;t3_kujurp;False;False;t1_givm0yg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givm5xj/;1610418149;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Two different communities, the majority of aot viewers are not here and its much more mainstream than kaguya.;False;False;;;;1610371612;;False;{};givm6c8;False;t3_kujurp;False;False;t1_givliog;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givm6c8/;1610418155;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Denpants;;;[];;;;text;t2_ry9v0w1;False;False;[];;"Pieck: Here guys, have a snickers. You're not you when you're hungry - -Eren and Reiner: wow thanks. lets be friends forever - - -The end";False;False;;;;1610371633;;False;{};givm7ut;False;t3_kujurp;False;False;t1_giv92b0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givm7ut/;1610418177;5;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;Well in S2 that was after he'd fought in a battle and he was exhausted from the last few days (he'd fought Annie the day before and the day before yesterday). This time it's after withholding his healing and he's fresh and ready.;False;False;;;;1610371639;;False;{};givm88w;False;t3_kujurp;False;False;t1_givltgs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givm88w/;1610418183;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Lohtric;;;[];;;;text;t2_10buyw;False;False;[];;tell your friends and parents to come here and upvote too;False;False;;;;1610371650;;False;{};givm90a;False;t3_kujurp;False;True;t1_givl5i0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givm90a/;1610418195;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];;If you want to go by people killed, Eldians have killed the human population x3;False;False;;;;1610371664;;False;{};givma0e;False;t3_kujurp;False;True;t1_givkfg5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givma0e/;1610418210;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];;And the Eldians were the ones who enslaved Marley and others for thousands of years;False;False;;;;1610371705;;False;{};givmcs8;False;t3_kujurp;False;True;t1_givle9j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givmcs8/;1610418252;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aryvd_0103;;;[];;;;text;t2_549u7prl;False;False;[];;HxH is a goat anime , but not a goat level tv show . It has the tropes of anime , like the fights and all done right, but honestly, I don't think it is even close to Aot or Fmab in terms of being the Goat anime. Only episode I remember which was really awesome and had me in the feels like aot was episode 131. Chimera ant arc was great and yorknew was good too . But still , HxH is nowhere near those two in terms of overall plot and quality.;False;False;;;;1610371725;;False;{};givme49;False;t3_kujurp;False;True;t1_gitrjhw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givme49/;1610418271;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;under 48 hours, yeah;False;False;;;;1610371747;;False;{};givmfln;False;t3_kujurp;False;True;t1_givlm8n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givmfln/;1610418293;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"What matters is the first 48 hours to keep things fair, that number that will go on our ranking - -Don't forget episode 60 had a whole month to reach 22k";False;False;;;;1610371778;;False;{};givmhnh;False;t3_kujurp;False;False;t1_givm0yg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givmhnh/;1610418323;10;True;False;anime;t5_2qh22;;0;[]; -[];;;LittleWompRat;;;[];;;;text;t2_54bxq18h;False;False;[];;If I were Eren, I'd just tell everyone that I sus him as the Warhammer.;False;False;;;;1610371784;;False;{};givmi2g;False;t3_kujurp;False;True;t1_givg7lu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givmi2g/;1610418329;1;True;False;anime;t5_2qh22;;0;[]; -[];;;toutoune134;;;[];;;;text;t2_fokbo;False;False;[];;30 hours left to also get the comment record!;False;False;;;;1610371800;;False;{};givmj4c;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givmj4c/;1610418345;9;True;False;anime;t5_2qh22;;0;[]; -[];;;dimchoff;;;[];;;;text;t2_a4xwym;False;False;[];;I am confident now to say that Anime has surpassed TV and film. The tension and juxtaposition between Rainer-Eren/Willy was masterfully done! So much feelings in a single episode, it felt like I was watching a blockbuster in an IMAX cinema. What a show! Thank you Isayama and thank you Mappa!;False;False;;;;1610371809;;False;{};givmjqs;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givmjqs/;1610418353;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];;You're mistaken me, I'm not saying what Eren did wasn't necessary maybe, just that their survival needs don't make an action moral.;False;False;;;;1610371815;;False;{};givmk2e;False;t3_kujurp;False;True;t1_givluwt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givmk2e/;1610418358;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EvenPlastic;;;[];;;;text;t2_5y5szfmd;False;False;[];;lol youseebigwomen;False;False;;;;1610371831;;False;{};givml7a;False;t3_kujurp;False;True;t1_gisbqfm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givml7a/;1610418377;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Everdale;;;[];;;;text;t2_19owu9vi;False;False;[];;I'm sure Eren has improved his titan abilities, but back in Season 2 we have to remember that he was probably exhausted out of his mind. He rode to Castle Utgard all night, then in the morning, has to deal with his best friends revealing themselves as his worst enemies, engage in a 1 on 1 fight against the Armored, and then have the Colossal fall directly on top of him. Not to mention the fight against Annie he had just 1 day prior that he probably hadn't recovered fully from. Makes sense that his body took its sweet time to regenerate after enduring all that in the span of a day.;False;False;;;;1610371852;;False;{};givmmja;False;t3_kujurp;False;False;t1_givltgs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givmmja/;1610418397;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Ripamon;;;[];;;;text;t2_fy0p4;False;True;[];;"Many generations ago. - -So should the native Americans go to war with the US citizens for killing them 200 years ago?";False;False;;;;1610371866;;False;{};givmnht;False;t3_kujurp;False;True;t1_givma0e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givmnht/;1610418412;3;True;False;anime;t5_2qh22;;0;[]; -[];;;arnav1311;;;[];;;;text;t2_81mzmva;False;False;[];;Fair enough. I see this as self defense. Not truly self defense, but yeah. Willy just declared for the extermination of Paradis.;False;False;;;;1610371893;;False;{};givmp9z;False;t3_kujurp;False;True;t1_givmk2e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givmp9z/;1610418440;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silverkira;;;[];;;;text;t2_13ihl1;False;False;[];;how much is it?;False;False;;;;1610371897;;False;{};givmpjv;False;t3_kujurp;False;False;t1_givmj4c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givmpjv/;1610418444;8;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;"All we gotta do is start a few morality wars and we'll hit it in no time. - -[<insert character>] did [nothing/everything] wrong!";False;False;;;;1610371906;;False;{};givmq4t;False;t3_kujurp;False;False;t1_givmj4c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givmq4t/;1610418452;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Karen_kaslana;;;[];;;;text;t2_3n10bo31;False;False;[];;6000 I think;False;False;;;;1610371930;;False;{};givmrpo;False;t3_kujurp;False;True;t1_givmpjv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givmrpo/;1610418481;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kk_213;;;[];;;;text;t2_72ca35r7;False;False;[];;After seeing eren being a hotblooded young kid for 3 seasons, seeing him as a coldblooded bad guy sure is terrifying...felt kinda like a role reversal compared to season 1....eren being kalm and reiner paniking;False;False;;;;1610371934;;False;{};givmrxt;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givmrxt/;1610418484;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerz905;;;[];;;;text;t2_1yglu2m7;False;False;[];;Does Eren have the interconnected memories? The past, the future?;False;False;;;;1610371934;;False;{};givmrxw;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givmrxw/;1610418484;5;True;False;anime;t5_2qh22;;0;[]; -[];;;noname6500;;;[];;;;text;t2_g3rbt;False;False;[];;♬ *Just keep swimming, just keep swimming swimming swimming.* ♫;False;False;;;;1610371940;;False;{};givmsbd;False;t3_kujurp;False;True;t1_gisa7d4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givmsbd/;1610418491;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;6K I believe;False;False;;;;1610371940;;False;{};givmsd6;False;t3_kujurp;False;True;t1_givmpjv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givmsd6/;1610418491;2;True;False;anime;t5_2qh22;;0;[]; -[];;;q_uo;;;[];;;;text;t2_9h79inlb;False;False;[];;Tell me, how many were trialed and sentenced for Hiroshima and Nagasaki?;False;False;;;;1610371968;;False;{};givmubd;False;t3_kujurp;False;True;t1_giv8s41;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givmubd/;1610418520;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;5956;False;False;;;;1610372037;;False;{};givmyz0;False;t3_kujurp;False;False;t1_givmpjv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givmyz0/;1610418585;6;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;It will easily be surpassed then;False;False;;;;1610372118;;False;{};givn4t3;False;t3_kujurp;False;False;t1_givmsd6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givn4t3/;1610418667;2;True;False;anime;t5_2qh22;;0;[]; -[];;;noname6500;;;[];;;;text;t2_g3rbt;False;False;[];;I actually believed for a second Eren was trying to move Reiner to his side.;False;False;;;;1610372150;;False;{};givn6yt;False;t3_kujurp;False;True;t1_gisadib;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givn6yt/;1610418698;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;this record is gonna devoured too;False;False;;;;1610372156;;False;{};givn7bt;False;t3_kujurp;False;False;t1_givmyz0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givn7bt/;1610418702;5;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;THE KARMA WILL KEEP GOING FORWARD;False;False;;;;1610372166;;False;{};givn818;False;t3_kujurp;False;False;t1_givljnm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givn818/;1610418713;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Akiraj02;;;[];;;;text;t2_xlqxo;False;False;[];;And the Eldians all those years ago could've chosen not to oppress Marley and other nationalities... it's a loop;False;False;;;;1610372169;;False;{};givn882;False;t3_kujurp;False;True;t1_gittjf1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givn882/;1610418715;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;"[O-oh my…](https://i.imgur.com/VAA8d2P.jpeg) [](#panickedgakuto) - -[""Time to blow this pop stand before the shit hits the fan. Desu.""](https://i.imgur.com/n5dMQCY.jpg) - -[Is this a real instrument? Almost seems like it should be](https://i.imgur.com/idNUVjG.jpeg) - -[From my point of view, ~~the Jedi~~ you guys were evil!](https://i.imgur.com/9s1SSKk.jpeg) - -[Images taken moments before disaster](https://i.imgur.com/cjqCjUt.jpeg) - -[Ooo, that's gonna sting in the morning](https://i.imgur.com/z7k64hU.jpeg)";False;False;;;;1610372170;;False;{};givn8ar;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givn8ar/;1610418717;7;True;False;anime;t5_2qh22;;0;[]; -[];;;konart;;;[];;;;text;t2_93kfo;False;False;[];;next one. I think many people were expecting this episode to cover what comes next.;False;False;;;;1610372209;;False;{};givnb2i;False;t3_kujurp;False;True;t1_givlwtx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givnb2i/;1610418757;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;I'm a manga reader so I won't say much, but wow, thanks mappa. Really gray episode and a pretty solid adaptation so far.;False;False;;;;1610372221;;False;{};givnbu8;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givnbu8/;1610418768;14;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Around 28 more awards to reach 1K awards and it would be really great if we can reach to 25K upvotes before 48 hours.;False;False;;;;1610372260;;False;{};givnejz;False;t3_kujurp;False;True;t1_givn7bt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givnejz/;1610418812;3;True;False;anime;t5_2qh22;;0;[]; -[];;;stiggy92;;;[];;;;text;t2_qgfi4;False;False;[];;this is going to reach episode 60 upvote count;False;False;;;;1610372275;;False;{};givnfi4;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givnfi4/;1610418826;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;"These threads will reach r/titanfolk levels of heated debates lol - -EDIT :DONT GO TO THAT SUBREDDIT IF YOU'RE ANIME ONLY";False;False;;;;1610372288;;False;{};givngep;False;t3_kujurp;False;False;t1_givg0gh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givngep/;1610418838;7;True;False;anime;t5_2qh22;;0;[]; -[];;;noname6500;;;[];;;;text;t2_g3rbt;False;False;[];;Eren would have mastered so many titan capabilities during those four years. I was wondering if he kept cutting his leg when it regrew. That fast regeneration was insane!;False;False;;;;1610372315;;False;{};givni7y;False;t3_kujurp;False;False;t1_gisropm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givni7y/;1610418865;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Aweignacio;;;[];;;;text;t2_6d5bp1k5;False;False;[];;G O A T;False;False;;;;1610372370;;False;{};givnlx5;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givnlx5/;1610418921;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Emperasque;;;[];;;;text;t2_8goiwqx;False;False;[];;"The anime size makes the number of wall titans around half a million actually. 560k or something. For it to be millions of titans, it would need to be even bigger than that. - -Which means AoT world is actually significantly bigger than our world.";False;False;;;;1610372407;;False;{};givnoem;False;t3_kujurp;False;True;t1_giulava;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givnoem/;1610418957;1;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;Seems like these 16 episodes will only adapt up to Chapter 122, roughly. The rest will have to be adapted in a Part 2 or maybe via movies yeah.;False;False;;;;1610372448;;False;{};givnrh8;False;t3_kujurp;False;True;t1_giv6441;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givnrh8/;1610419003;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;"""As a manga reader I think the OST...""";False;False;;;;1610372463;;False;{};givnsm3;False;t3_kujurp;False;False;t1_givmq4t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givnsm3/;1610419017;20;True;False;anime;t5_2qh22;;0;[]; -[];;;noname6500;;;[];;;;text;t2_g3rbt;False;False;[];;Im still hoping Falco and some of the warrior candidates switch to Team Paradis. Paradis I assume wants to end the Eldian discrimination and thats something they all can agree on.;False;False;;;;1610372482;;False;{};givnu2l;False;t3_kujurp;False;True;t1_gisi8vs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givnu2l/;1610419038;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;Ex-Arm episode 1;False;False;;;;1610372508;;False;{};givnvyx;False;t3_kujurp;False;False;t1_givlwtx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givnvyx/;1610419065;19;True;False;anime;t5_2qh22;;0;[]; -[];;;atulk4;;;[];;;;text;t2_4pz8i8x6;False;False;[];;By past if you mean grisha's and previous AT's memories he does have them, don't think he has something like future memories.;False;False;;;;1610372542;;False;{};givnyij;False;t3_kujurp;False;False;t1_givmrxw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givnyij/;1610419103;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Bruh I’m an anime-only. Anime on lies are still the majority on this sub dude;False;False;;;;1610372550;;False;{};givnz3k;False;t3_kujurp;False;True;t1_givhquz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givnz3k/;1610419113;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerz905;;;[];;;;text;t2_1yglu2m7;False;False;[];;Can confirm, my teeth were grinning the whole episode and blood was boiling. When Eren transformed I was clapping so hard holy shit.;False;False;;;;1610372589;;False;{};givo20k;False;t3_kujurp;False;False;t1_gisv5pt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givo20k/;1610419157;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Voltorb19;;;[];;;;text;t2_14o3w8;False;False;[];;Mappa delivered. The episode was almost perfect imo;False;False;;;;1610372609;;False;{};givo3ev;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givo3ev/;1610419191;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Nietschzesuperhuman;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Doc_McCoy?status=7&order=4&ord";light;text;t2_vk6p0;False;False;[];;Yeah, it has been discussed in the past that SnK's world is somewhat bigger than ours, other than being flipped of course.;False;False;;;;1610372678;;False;{};givo8cm;False;t3_kujurp;False;False;t1_givh2k8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givo8cm/;1610419282;17;True;False;anime;t5_2qh22;;0;[]; -[];;;rapedcorpse;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Kilimini;light;text;t2_9n73kr1;False;False;[];;They were not because the winners dont get judged, but still it was a breach of international law.;False;False;;;;1610372689;;False;{};givo940;False;t3_kujurp;False;True;t1_givmubd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givo940/;1610419294;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;pfft ! First episode was masterclass. I feel bad for mangaka;False;False;;;;1610372703;;False;{};givoa2z;False;t3_kujurp;False;False;t1_givnvyx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givoa2z/;1610419309;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerz905;;;[];;;;text;t2_1yglu2m7;False;False;[];;Eren basically became the Devil they always thought Paradisians are.;False;False;;;;1610372715;;False;{};givoax0;False;t3_kujurp;False;False;t1_gistkhb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givoax0/;1610419322;6;True;False;anime;t5_2qh22;;0;[]; -[];;;evilresurgence4;;;[];;;;text;t2_3hd7gero;False;False;[];;Umm, it already beat episode 1 a couple hours ago;False;False;;;;1610372742;;False;{};givod1y;False;t3_kujurp;False;False;t1_givnfi4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givod1y/;1610419352;14;True;False;anime;t5_2qh22;;0;[]; -[];;;ranabananana;;;[];;;;text;t2_4s6584xy;False;False;[];;I very vaguely remember this. Do you remember where this is from?;False;False;;;;1610372792;;False;{};givogr8;False;t3_kujurp;False;True;t1_gisif8n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givogr8/;1610419406;3;True;False;anime;t5_2qh22;;0;[]; -[];;;atherw3;;;[];;;;text;t2_rk061eh;False;False;[];;dont forget they're marleyans and still risk their own lives to simp for pieck! Pieck is the actual one who's trying to end racism and not Ereh Yegga;False;False;;;;1610372866;;False;{};givolxh;False;t3_kujurp;False;False;t1_gisctsk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givolxh/;1610419486;4;True;False;anime;t5_2qh22;;0;[];True -[];;;PlanetViking;;;[];;;;text;t2_kd4uf;False;False;[];;~200 more upvotes you reach #1 discussion all time!;False;False;;;;1610372917;;False;{};givopud;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givopud/;1610419546;9;True;False;anime;t5_2qh22;;0;[]; -[];;;PalongOrPoland;;MAL;[];;https://myanimelist.net/profile/PalongOrPoland;dark;text;t2_krn3c;False;False;[];;That's just the German word for armour. Though parallels with European culture aren't an alien concept by this point of the story.;False;False;;;;1610372943;;False;{};givoru8;False;t3_kujurp;False;True;t1_git168m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givoru8/;1610419574;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MartinaS90;;;[];;;;text;t2_13onma;False;False;[];;Whose memories are these?;False;False;;;;1610372953;;False;{};givosle;False;t3_kujurp;False;False;t1_giuk2ns;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givosle/;1610419585;16;True;False;anime;t5_2qh22;;0;[]; -[];;;braydendzzz;;;[];;;;text;t2_5avmfdeu;False;False;[];;Almost at 22k insane;False;False;;;;1610372959;;False;{};givot21;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givot21/;1610419592;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Zhawk1992;;;[];;;;text;t2_a8v1q;False;False;[];;I read ahead in the manga the week before this episode came out, all I gotta say is my mind is blown. I can’t wait to see next weeks episode !;False;False;;;;1610372987;;False;{};givov4d;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givov4d/;1610419623;7;True;False;anime;t5_2qh22;;0;[]; -[];;;csdbcjkahsd;;;[];;;;text;t2_6o5ig4yp;False;False;[];;says 21.9k for me;False;False;;;;1610372994;;False;{};givovmr;False;t3_kujurp;False;False;t1_givod1y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givovmr/;1610419631;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610373013;;False;{};givox1s;False;t3_kujurp;False;True;t1_giv7fho;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givox1s/;1610419652;1;True;False;anime;t5_2qh22;;0;[]; -[];;;clikplay;;;[];;;;text;t2_db345;False;False;[];;"Dude the content of the festival makes absolutely no difference to the fact that eren is killing hundreds of innocent civilians(eldians nonetheless) as well as many ambassadors from other countries, which obviously is gonna make it worse as even if they knew it was for war it doesn't matter as it got people from their country killed. - For that reasoning, do you think that the other countries would see that Paradis attacked Marley and then suddenly they would ally with them to attack the eldians, because ""they initiated the conflict"" instead???????????? -Yeah they would definitely not be able to de escalate the conflict with marley but the other countries pretty much had barely any reason to help Marley before Eren killing their people with his actions and setting in stone that prejudice they have against eldians is ""real""";False;False;;;;1610373017;;1610374298.0;{};givoxbi;False;t3_kujurp;False;True;t1_giup7mw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givoxbi/;1610419656;1;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Zookeepergame_594;;;[];;;;text;t2_89m9eak5;False;False;[];;20K barrier LETSGO!!!;False;False;;;;1610373036;;False;{};givoys2;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givoys2/;1610419677;18;True;False;anime;t5_2qh22;;0;[]; -[];;;krfz41;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/krfz41/;light;text;t2_dojxn;False;False;[];;they mean [the current episode 60 points](https://www.reddit.com/r/anime/comments/k81c6z/shingeki_no_kyojin_the_final_season_episode_60/) probably.;False;False;;;;1610373078;;False;{};givp1x1;False;t3_kujurp;False;False;t1_givod1y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givp1x1/;1610419734;6;True;False;anime;t5_2qh22;;0;[]; -[];;;evilresurgence4;;;[];;;;text;t2_3hd7gero;False;False;[];;I meant the 48 hour karma total, episode 1 has had a month in total;False;False;;;;1610373115;;False;{};givp4m9;False;t3_kujurp;False;False;t1_givovmr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givp4m9/;1610419777;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;Wow, I had an inclination that this episode would have easily topped 19k, but had no idea it would reach almost 22k in less than 20 hours. Insane karma count.;False;False;;;;1610373258;;False;{};givpeo2;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givpeo2/;1610419933;27;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;If they do that then I would not resent them. If someone is in a position like Reiner and I knew about it I would not hold any bad will to him like Reiner.;False;False;;;;1610373325;;False;{};givpjle;False;t3_kujurp;False;True;t1_givj4p5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givpjle/;1610420010;1;True;False;anime;t5_2qh22;;0;[]; -[];;;erka1004;;;[];;;;text;t2_4hno32ba;False;False;[];;"Yo I never realized that.. - -im a manga reader - -(I wont spoil anyone. your friendly observer here :))";False;False;;;;1610373362;;False;{};givpmlg;False;t3_kujurp;False;True;t1_gismf1p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givpmlg/;1610420055;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Already is, we count the first 48 hours;False;False;;;;1610373365;;False;{};givpmua;False;t3_kujurp;False;False;t1_givopud;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givpmua/;1610420059;17;True;False;anime;t5_2qh22;;0;[]; -[];;;krfz41;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/krfz41/;light;text;t2_dojxn;False;False;[];;"*I just keep moving forward until I break all the records.* - -[Here is the episode discussion threads sorted by points for those curious.](https://www.reddit.com/r/anime/search/?q=episode%20discussion&restrict_sr=1&sort=top)";False;False;;;;1610373382;;False;{};givpo2g;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givpo2g/;1610420078;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerz905;;;[];;;;text;t2_1yglu2m7;False;False;[];;Wasn't there some plot point with his father and the Owl? How he saw Mikasa, Armin and Eren before they were born?;False;False;;;;1610373393;;False;{};givpoy1;False;t3_kujurp;False;False;t1_givnyij;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givpoy1/;1610420090;4;True;False;anime;t5_2qh22;;0;[]; -[];;;stiggy92;;;[];;;;text;t2_qgfi4;False;False;[];;based on time frame yeah, no doubt it is going to exceed that episode's total current count now;False;False;;;;1610373403;;False;{};givppti;False;t3_kujurp;False;True;t1_givp4m9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givppti/;1610420103;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;There's probably never been a war that's been fought fairly, also you can't take the noble way out when your enemy doesn't hesitate even once to break those war crimes. It's like if the USA and Russia went to war. Both have nukes but if the USA ethically decided not to use em if required they'd be destroyed by russia.;False;False;;;;1610373407;;False;{};givpq3a;False;t3_kujurp;False;True;t1_giuq9ur;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givpq3a/;1610420107;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;Lol i get this reference;False;False;;;;1610373422;;False;{};givpr5c;False;t3_kujurp;False;True;t1_gitdf1t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givpr5c/;1610420122;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;4 paralel dimensions ahead of you;False;False;;;;1610373446;;False;{};givpsys;False;t3_kujurp;False;True;t1_gish4f9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givpsys/;1610420149;1;True;False;anime;t5_2qh22;;0;[]; -[];;;geolink;;;[];;;;text;t2_4fxl5;False;False;[];;Well this is probably gonna become the most up voted episode in anime history so far.;False;False;;;;1610373451;;False;{};givpte1;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givpte1/;1610420155;18;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;I'm pretty sure that didn't set s reminder,;False;False;;;;1610373457;;False;{};givptug;False;t3_kujurp;False;True;t1_giuqjef;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givptug/;1610420162;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wolfsocean;;;[];;;;text;t2_io8r7;False;False;[];;It actually isn't a loop that is what the king wanted to stop but the regime of marley brain washed the eldians with them north korean style levels of propoganda and took away all basic human rights away from the eldians that live with them. If they wanted Peace after the great titan war it was possible but they choose not to and instigated this whole anime.;False;False;;;;1610373458;;1610373689.0;{};givptwt;False;t3_kujurp;False;True;t1_givn882;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givptwt/;1610420163;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GGABueno;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GGABueno;light;text;t2_ebmks;False;False;[];;They didn't die and I'm anime only, but I don't think it's crazy to assume a bunch of people/soldiers are going to die soon.;False;False;;;;1610373478;;False;{};givpvcc;False;t3_kujurp;False;True;t1_gisw1na;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givpvcc/;1610420185;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LordMonocle21;;;[];;;;text;t2_1i4axjgu;False;False;[];;So who we thinking the soldier who dropped Porco and Pieck into the hole is? He was blonde but different voice to Armin;False;False;;;;1610373492;;False;{};givpwdk;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givpwdk/;1610420201;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610373567;;False;{};givq1um;False;t3_kujurp;False;True;t1_givpwdk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givq1um/;1610420288;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Nietschzesuperhuman;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Doc_McCoy?status=7&order=4&ord";light;text;t2_vk6p0;False;False;[];;He does not have access to any titan with royal blood that he can touch. We only know of two royals right now: Historia and Zeke. The former is not a titan and the latter is... not easy to touch I guess?;False;False;;;;1610373591;;False;{};givq3nf;False;t3_kujurp;False;True;t1_givh5fa;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givq3nf/;1610420315;2;True;False;anime;t5_2qh22;;0;[]; -[];;;newguy208;;;[];;;;text;t2_yxsfs;False;False;[];;What a dick;False;False;;;;1610373598;;False;{};givq467;False;t3_kujurp;False;False;t1_git8hfo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givq467/;1610420324;11;True;False;anime;t5_2qh22;;0;[]; -[];;;renannmhreddit;;;[];;;;text;t2_n50we;False;False;[];;Nope, he just talked about that and pointed up to show his hand already cut to Reiner. Showing that he had hostages and was already prepared to transform if there was need to.;False;False;;;;1610373613;;False;{};givq5a1;False;t3_kujurp;False;False;t1_gium8am;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givq5a1/;1610420342;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The_8th_Enigma;;;[];;;;text;t2_j360e;False;False;[];;I've been wondering about this, has there been any indication that you can stack Titan abilities? I kind of assume you can, but I don't think it's been addressed yet. (I haven't read the manga for season 4, so if this is something which will be addressed I'll stop digging.);False;False;;;;1610373644;;False;{};givq7hs;False;t3_kujurp;False;True;t1_giv32iy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givq7hs/;1610420374;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nietschzesuperhuman;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Doc_McCoy?status=7&order=4&ord";light;text;t2_vk6p0;False;False;[];;It's somewhat touched upon in passing in ep.2 of season 4 when he talks with Colt. Colt is amazed by his abilities considering he thinks Zeke is not a royal, and Zeke keeps his mouth shut. It's one of those things that acquire more meaning on rewatches.;False;False;;;;1610373751;;False;{};givqexr;False;t3_kujurp;False;True;t1_git1o0i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givqexr/;1610420492;0;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;"It wouldn't work. Reiner gives a shit about his family and the warrior candidates. If Marley is defeated then the world will sluaghter the mainland Eldians. Paradis would prob eat him aswell because he has nothing to offer. - -He is as powerless as he was before.";False;False;;;;1610373795;;False;{};givqidn;False;t3_kujurp;False;False;t1_gitz3dc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givqidn/;1610420542;6;True;False;anime;t5_2qh22;;0;[]; -[];;;evilresurgence4;;;[];;;;text;t2_3hd7gero;False;False;[];;It just did;False;False;;;;1610373801;;False;{};givqitp;False;t3_kujurp;False;False;t1_givppti;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givqitp/;1610420549;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610373801;;False;{};givqiw2;False;t3_kujurp;False;True;t1_givnyij;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givqiw2/;1610420550;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;"I mean your not understanding that Reiner has the same limitations as Falco. - -Falco would be eaten by Paradis as there is no reason they should trust him - -Falco's family would be eaten - -If Marley is defeated all the mainland Eldians would be sluaghtered";False;False;;;;1610373877;;False;{};givqom2;False;t3_kujurp;False;True;t1_git5l25;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givqom2/;1610420639;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Anime22Geek;;;[];;;;text;t2_w4mzhjs;False;False;[];;Anyone else notice the guys head get caved in with a rock? Subtle, but so brutal.;False;False;;;;1610373911;;False;{};givqr33;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givqr33/;1610420677;20;True;False;anime;t5_2qh22;;0;[]; -[];;;blowtorches;;;[];;;;text;t2_2l7vhp6;False;False;[];;They also hated Levi vs zeke ....;False;False;;;;1610373943;;False;{};givqtfs;False;t3_kujurp;False;False;t1_giv54qx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givqtfs/;1610420712;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610373951;;False;{};givqu2c;False;t3_kujurp;False;True;t1_givfgek;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givqu2c/;1610420721;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptainPikmin;;;[];;;;text;t2_10w5w9;False;False;[];;Oh my... 22k! I can't believe it. Is 25k actually a possibility?;False;False;;;;1610373968;;False;{};givqvar;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givqvar/;1610420742;22;True;False;anime;t5_2qh22;;0;[]; -[];;;kk_213;;;[];;;;text;t2_72ca35r7;False;False;[];;This episode was sooo good on so many different levels!!...i don't think i can even explain how psyched i am;False;False;;;;1610373988;;False;{};givqwqd;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givqwqd/;1610420764;20;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;"This will beat every single record, until there is none left. - -We just keep moving forward, now that Eren Yeager is here!";False;False;;;;1610374032;;False;{};givqzzk;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givqzzk/;1610420813;26;True;False;anime;t5_2qh22;;0;[]; -[];;;aryvd_0103;;;[];;;;text;t2_549u7prl;False;False;[];;Why do you forget that Eren has the power of a million collosal titans and can destroy those who oppose him . Not just Marley.;False;False;;;;1610374047;;False;{};givr11b;False;t3_kujurp;False;True;t1_givqidn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givr11b/;1610420830;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rollin340;;;[];;;;text;t2_cmyef;False;False;[];;So because they are sub-human to the world, the laws don't apply. That's... interesting. lol;False;False;;;;1610374053;;False;{};givr1ha;False;t3_kujurp;False;False;t1_givfao6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givr1ha/;1610420836;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Notchmeister;;;[];;;;text;t2_36jo87s9;False;False;[];;"""That one frame looked a bit off that shows for half a second, animation bad, Mappa screwed up...""";False;False;;;;1610374085;;False;{};givr3sj;False;t3_kujurp;False;False;t1_givnsm3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givr3sj/;1610420875;9;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;"The closest real life inspiration for Ackermans are European Jews. - -Levi is a Jewish name and based on one of the tribes of Israel - -Kuchel (Levi's mom) is a Hebrew Name - -Ackerman is a traditional name that European Jews adopted - -They are persecuted even though they don't look that different";False;False;;;;1610374103;;False;{};givr556;False;t3_kujurp;False;False;t1_gitbv31;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givr556/;1610420900;14;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;"The episode manga readers have been waiting to be adapted for three years, it was definitely one of the most hyped episodes of all time. - -Next few pes might be more ""hype"" as per se, but this is iconic, an episode that will be remembered.";False;False;;;;1610374146;;False;{};givr8ap;False;t3_kujurp;False;False;t1_givpeo2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givr8ap/;1610420955;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;Grisha ate the founding titan that's why he has the founder and the attack titan;False;False;;;;1610374187;;False;{};givrbad;False;t3_kujurp;False;False;t1_givq7hs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givrbad/;1610421009;5;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;"The ""nobles"" in the walls aren't nobles. They became nobles because they were non Eldians in the walls and were trusted by the king.";False;False;;;;1610374195;;False;{};givrbsu;False;t3_kujurp;False;False;t1_gith241;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givrbsu/;1610421017;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;Karma usually tails off quite drastically after 24 hours. I'd say it'll probably be closer to 24k than 25k after 48 hours but it wouldn't surprise me.;False;False;;;;1610374206;;False;{};givrcqe;False;t3_kujurp;False;False;t1_givqvar;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givrcqe/;1610421035;14;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;The Asians are not Eldians that's why they are not affected. The nobles in the walls are just non Eldians;False;False;;;;1610374237;;False;{};givrf8k;False;t3_kujurp;False;False;t1_gith7r0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givrf8k/;1610421090;4;True;False;anime;t5_2qh22;;0;[]; -[];;;rollin340;;;[];;;;text;t2_cmyef;False;False;[];;"Actually, no, it isn't. It's not a line in the sand, but the necessity and proportion matters when looking into if it is one. - -With the amount of key valid targets, and the fact that the casualties, so far at least, was only the 1 building, and the target was the head of the opposing nation, and possibly its military leaders, it'd probably be considered as proportionate, or acceptable. - -I'm not saying it's morally right, but legally, it's probably totally legal.";False;False;;;;1610374349;;False;{};givro0p;False;t3_kujurp;False;False;t1_givg7lu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givro0p/;1610421238;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;It can happen, but the post has to stay on top of the hot tab for as long as possible, anime corner posted their annual Ranking here and that'll probably be on the top soon, after that the Monday episodes will be posted so we will see a diminishing number of upvotes here;False;False;;;;1610374386;;False;{};givrqtn;False;t3_kujurp;False;False;t1_givqvar;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givrqtn/;1610421280;9;True;False;anime;t5_2qh22;;0;[]; -[];;;demababo123;;;[];;;;text;t2_1qbxst3t;False;False;[];;Probably. 16 episodes is just a very weird and specific format so I got kinda worried considering how much happens in the Manga.;False;False;;;;1610374410;;False;{};givrsnd;False;t3_kujurp;False;True;t1_givl9sk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givrsnd/;1610421308;1;True;False;anime;t5_2qh22;;0;[]; -[];;;atulk4;;;[];;;;text;t2_4pz8i8x6;False;False;[];;Well kruger did mention names mikasa and armin (not eren) but I think it was never shown that he saw them, reason for this will be explained later on.;False;False;;;;1610374416;;False;{};givrt4k;False;t3_kujurp;False;True;t1_givpoy1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givrt4k/;1610421317;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610374467;;False;{};givrwwm;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givrwwm/;1610421379;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nightmare_Pasta;;;[];;;;text;t2_150ywo;False;False;[];;And Hitch wasn't sleeping like Marlow thought, but staying awake worrying for Marlow;False;False;;;;1610374480;;False;{};givrxya;False;t3_kujurp;False;False;t1_gitl9y0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givrxya/;1610421394;11;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610374484;;False;{};givryao;False;t3_kujurp;False;True;t1_givh2k8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givryao/;1610421400;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Naternaught;;;[];;;;text;t2_9oe8n3q;False;False;[];;Sausage gay, yo.;False;False;;;;1610374500;;False;{};givrzhq;False;t3_kujurp;False;True;t1_giv8zg9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givrzhq/;1610421419;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Most likely they have rearranged that scene to the next episode.;False;False;;;;1610374513;;False;{};givs0hd;False;t3_kujurp;False;False;t1_givrwwm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givs0hd/;1610421434;13;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;Knowing most my school is non weeb, they would be confused af lmao;False;False;;;;1610374528;;False;{};givs1mo;False;t3_kujurp;False;True;t1_givktt7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givs1mo/;1610421452;2;True;False;anime;t5_2qh22;;0;[]; -[];;;noname6500;;;[];;;;text;t2_g3rbt;False;False;[];;Im still hoping Falco and some of the warrior candidates switch to Team Paradis. Paradis I assume wants to end the Eldian discrimination and thats something they all can agree on.;False;False;;;;1610374540;;False;{};givs2la;False;t3_kujurp;False;True;t1_gise9k9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givs2la/;1610421466;1;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;He is very similar to Berthold;False;False;;;;1610374547;;False;{};givs32u;False;t3_kujurp;False;True;t1_giscvsy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givs32u/;1610421474;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MartinaS90;;;[];;;;text;t2_13onma;False;False;[];;Attack on Titan always had end cards. WIT used to do end cards for each episode too.;False;False;;;;1610374554;;False;{};givs3jq;False;t3_kujurp;False;True;t1_giskxst;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givs3jq/;1610421481;2;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;Eren is now very similar to Berthold at the end of season 3.;False;False;;;;1610374583;;False;{};givs5ne;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givs5ne/;1610421514;11;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;Lmao ikr, almost everyday there’s always a debate between two sides;False;False;;;;1610374594;;False;{};givs6l6;False;t3_kujurp;False;True;t1_givngep;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givs6l6/;1610421529;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];;No, but should they kill civilians if it was some years ago?;False;False;;;;1610374628;;False;{};givs931;False;t3_kujurp;False;True;t1_givmnht;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givs931/;1610421569;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Zonca;;;[];;;;text;t2_11odu8;False;True;[];;"In theory yeah, founding titan can do that, but Eren can't use it. - - -But remember, Eren did use founding powers once at the end of S2...";False;False;;;;1610374642;;False;{};givsa1w;False;t3_kujurp;False;True;t1_gisuhmp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givsa1w/;1610421584;1;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;"Eren can't activate this power yet. If he would he would not be on Marley. Remember he needs a titan shifters with royal blood. - -Also millions of collasal titans are not really an accurate weopon. You won't be able to sepreate Eldians on the mainland from everyone else";False;False;;;;1610374694;;False;{};givse8n;False;t3_kujurp;False;False;t1_givr11b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givse8n/;1610421648;5;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;It's no longer at the top right now, the Cells at Work visual overtook it.;False;False;;;;1610374818;;False;{};givso7m;False;t3_kujurp;False;False;t1_givrqtn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givso7m/;1610421810;6;True;False;anime;t5_2qh22;;0;[]; -[];;;MartinaS90;;;[];;;;text;t2_13onma;False;False;[];;"Yeah, that nihilistic state of ""nobody is in the wrong but death must occur""";False;False;;;;1610374976;;False;{};givt0ga;False;t3_kujurp;False;False;t1_givs5ne;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givt0ga/;1610422000;21;True;False;anime;t5_2qh22;;0;[]; -[];;;_LadyForlorn;;;[];;;;text;t2_4yu1dg7c;False;False;[];;I predict all of the next three of episode will have 20k karma. Let's see.;False;False;;;;1610374976;;False;{};givt0hq;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givt0hq/;1610422000;11;True;False;anime;t5_2qh22;;0;[]; -[];;;94Temimi;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;LOVE IS WAR;dark;text;t2_13udx4;False;False;[];;By the time episode 16 airs, everyone on this sub will have gone bankrupt due to the sheer amount of awards each coming episode will get.;False;False;;;;1610374977;;False;{};givt0jc;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givt0jc/;1610422000;32;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;Nah he's the opposite of Bert. Eren always had the drive to move forward and act on his desires. Bert was more meek and prone to getting swept up by the flow.;False;True;;comment score below threshold;;1610375029;;False;{};givt4md;False;t3_kujurp;False;True;t1_givs5ne;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givt4md/;1610422064;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;remmanuelv;;;[];;;;text;t2_mfjwf;False;True;[];;I unintentionally laughed when I saw it.;False;False;;;;1610375115;;False;{};givtb7t;False;t3_kujurp;False;False;t1_givqr33;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givtb7t/;1610422166;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610375297;;False;{};givtq71;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givtq71/;1610422386;1;True;False;anime;t5_2qh22;;0;[]; -[];;;venusaires;;;[];;;;text;t2_8sbivqt1;False;False;[];;I bet he definitely rehearsed this meeting with Reiner in those four years too ahaha;False;False;;;;1610375325;;False;{};givtse9;False;t3_kujurp;False;False;t1_givni7y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givtse9/;1610422418;5;True;False;anime;t5_2qh22;;0;[]; -[];;;drago2000plus;;;[];;;;text;t2_4rkbb4;False;False;[];;But Dany makes sense. It was one of the few things that weren' t rushed in the show lmao. They litteraly show from ss far as Season 2 that she will become the Queen of Ashes, and she costantly shows signs of rage, that the people around her stop and placate. When everyone she cares about dies, she snaps.;False;False;;;;1610375416;;1610375926.0;{};givtzr2;False;t3_kujurp;False;True;t1_gisrp6d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givtzr2/;1610422526;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;It'd be even more impressive if it was mostly paid awards. Kaguya S1 finale still has the most value of paid awards on an r/anime post;False;False;;;;1610375440;;False;{};givu1l6;False;t3_kujurp;False;True;t1_givt0jc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givu1l6/;1610422556;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Karen_kaslana;;;[];;;;text;t2_3n10bo31;False;False;[];;Let's hope we can get to 1200 awards;False;False;;;;1610375473;;False;{};givu43s;False;t3_kujurp;False;False;t1_givt0jc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givu43s/;1610422593;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"By the end of the 6 month locking period it definitely will. - -48 hour depends on how much competition it'll get";False;False;;;;1610375513;;False;{};givu71h;False;t3_kujurp;False;False;t1_givqvar;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givu71h/;1610422640;12;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;Same here. Especially after the previous 3 breaking only 13k. Episode 3 would've likely broken 14/15k tho but it had a lot of competition on hot that day;False;False;;;;1610375592;;False;{};givudax;False;t3_kujurp;False;False;t1_givpeo2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givudax/;1610422738;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Akalistaric;;;[];;;;text;t2_3wqdhmyj;False;False;[];;You bitch and moan everywhere, whatcha talking about, little guy?;False;False;;;;1610375595;;False;{};givudl1;False;t3_kujurp;False;True;t1_gitq0qf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givudl1/;1610422743;1;True;False;anime;t5_2qh22;;0;[]; -[];;;apinkparfait;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/beazacha/;light;text;t2_3p3fau4c;False;False;[];;He's trying his best okay?!;False;False;;;;1610375608;;False;{};givueog;False;t3_kujurp;False;True;t1_giv0w7b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givueog/;1610422758;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Cheesewithmold;;;[];;;;text;t2_7mkpb;False;False;[];;There were two fantastic cards, I think in season 1, telling a story of a man who was so desperate to get past the inner walls to get a better life that he started digging underneath the walls. But no matter how deep he dug, the walls just kept going. Until one day the man and the hole disappeared.;False;False;;;;1610375734;;False;{};givuox8;False;t3_kujurp;False;False;t1_giu4exb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givuox8/;1610422913;39;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;They spent 450k coins in that episode, roughly more than 1.000 dollars;False;False;;;;1610375836;;False;{};givux2f;False;t3_kujurp;False;False;t1_givu1l6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givux2f/;1610423060;8;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Understanding1247;;;[];;;;text;t2_7kjy5jap;False;False;[];;"I totally agree with you that other ways of attacking the enemy exists. I really don't think that even in war civilian casualties are acceptable . But the thing one have to think about viability of those other ways. -As you have mentioned that eren could have exploded the building in which all Marleyan commanders were talking , but in that case we are talking about a meeting between top officials and sneaking in such a building have hell lots of problems and thus is not viable , on the other hand sneaking inside the building in the festival was much easier comparatively , also eren knew where that festivals gonna be held but it's quite difficult to know where were those commanders having that meeting. -And if we talk about killing people in front of journalists from around the world. Let's someone were to come and say xxxx terrorist is actually not a terrorist or a criminal then would you or anyone beleive , no nobody will beleive that because they have already made their mind and think that Eldians are devil's and I don't think anything would change that and they're going to attack Paradis island anyway. -Don't get me wrong I'm not here to defend such genocide. I just think other options are no viable enough. No matter what you do you're going to make someone suffer , even just by existing . So every action he'll take while trying to keep civilians out of it will either be not viable or will somehow end up putting him at a disadvantage which to be frank is not something you want when you're against whole world for your freedom and to prove that their (all Eldians ) existence matter. -Sorry this reply ended up being lengthy. -But again I'm not defending something that is wrong I'm just trying to think from Eren's perspective . Peace out.";False;False;;;;1610375843;;False;{};givuxlq;False;t3_kujurp;False;True;t1_givbp92;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givuxlq/;1610423069;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;how is attacking an army after THEY declared the war / extermination upon you inherently bad?;False;False;;;;1610375914;;False;{};givv328;False;t3_kujurp;False;True;t1_giug5o4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givv328/;1610423154;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KiwiAura;;;[];;;;text;t2_yyc17;False;False;[];;"Damn it I don't know who to cheer for anymore. What Marley did to the Eldians is wrong, but I feel like what Eldians from Paradis is going to do to back to them is gonna be the same. Really makes you think who are the good guys here, everyone is just trying to ""Move Forward."" This episode has me so hyped that I am rewatching it, I wonder who the Warhammer titan is, Falco and Reiner are probably both fine but I wonder what is going to happen to them since they were in the middle of that. Also the woman and the guards vising that Tybur dude is interesting, I wonder who they are seeing from that scene they must be an important figure, and they aren't even in the crowd. Also, the comment from Annie's dad to Reiner's mom feels like foreshadowing, something tells me that Annie will come back, after all, there is a reason the author decided to crystalize her. I have no idea what role she will play in the story though. I wonder who will be in the next episode, Eren referenced his allies, shit is about to go down next episode for sure, the ending of this episode was the biggest goosebump moment. I wonder if Mikasa, Levi, Armin, and the others are there. I wonder why they are even there, to attack before the opposition can attack? Everything seems to be in favor of Eren and his group right now, they even have the Marley titans trapped. The only wild card is the Warhammer titan, things will definitely get interesting from now on. I also wonder what role everyone will play this season, Mikasa, Armin, Eren, Levi, etc... Another interesting thing seems to be that Eren has mastered the titan ability way more, he has cut himself preemptively and can control his healing abilities at will it seems. I wonder what all he has learned about those powers, I also wonder how Armin is doing with the colossal titan powers, and to what extent has he perfected them. Overall super hyped for this season, I never write comments like this but felt compelled to.";False;False;;;;1610375935;;False;{};givv4nz;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givv4nz/;1610423179;12;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"The MAL score movement is even more insane than the karma score right now. - - -Went from 9.07/8 to 9.11 with only a 5% increase in total number of votes. Even the boost during S3 P2 (Hero) wasn't as fast iirc - - -Did the math and if the stats were all new votes the raw average would be roughly 9.82 since the episode dropped. (Old votes changing score isn't properly able to be easily accounted for together since we have little info on the stats page but I don't think it affects the average heavily) - - -This is despite having a 1% 1/10s in the last 24 hrs. A weighted average would likely be even higher the raw average - - -Certainly won't maintain this but still makes a 9.3+ overall to be very likely permanently after it ends";False;False;;;;1610375999;;1610376959.0;{};givv9ih;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givv9ih/;1610423261;19;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;What scene?;False;False;;;;1610376004;;False;{};givv9yk;False;t3_kujurp;False;True;t1_givs0hd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givv9yk/;1610423268;2;True;False;anime;t5_2qh22;;0;[]; -[];;;apinkparfait;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/beazacha/;light;text;t2_3p3fau4c;False;False;[];;The only difference on Re:0's writing is how trope-ish the characters are so people who doesn't watch anime will find it off-putting... everything else is indeed pretty mainstream, the plot have a really broad appeal.;False;False;;;;1610376015;;False;{};givvaxr;False;t3_kujurp;False;False;t1_giunn60;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givvaxr/;1610423283;5;True;False;anime;t5_2qh22;;0;[]; -[];;;braydendzzz;;;[];;;;text;t2_5avmfdeu;False;False;[];;At this rate is 30k possible for the finale?;False;False;;;;1610376045;;False;{};givvdf4;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givvdf4/;1610423321;13;True;False;anime;t5_2qh22;;0;[]; -[];;;csdbcjkahsd;;;[];;;;text;t2_6o5ig4yp;False;False;[];;"it's called weight of lives btw. - -i think ""Eren Zahyo"" would've been better";False;False;;;;1610376062;;False;{};givvevj;False;t3_kujurp;False;True;t1_givl9zi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givvevj/;1610423353;1;True;False;anime;t5_2qh22;;0;[]; -[];;;alivinci;;;[];;;;text;t2_mf59t;False;False;[];;"Anything can be a ""plot device"" if you choose to see it that way";False;False;;;;1610376086;;False;{};givvgyd;False;t3_kujurp;False;False;t1_givbjks;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givvgyd/;1610423384;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;Does anyone have a list of all the r/anime records?;False;False;;;;1610376131;;False;{};givvkmc;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givvkmc/;1610423440;9;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;"[I'll mark it as a spoiler just in case anyone wants to read]( /s ""Willy and Magath conversation which will be shifted to next episode"" ) - -Edit: if you're on mobile and can't able to see the spoiler, go to the reply of my comment and click on that spoiler.";False;False;;;;1610376144;;1610376648.0;{};givvlr8;False;t3_kujurp;False;False;t1_givv9yk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givvlr8/;1610423457;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Pussyslayer_Ornstein;;;[];;;;text;t2_15rvfq;False;False;[];;"> Also making their eyes purple - -[Oh no](https://i.imgur.com/A5TPsjGg.png)";False;False;;;;1610376207;;False;{};givvqx9;False;t3_kujurp;False;True;t1_giuca9h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givvqx9/;1610423548;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"Over the 6 month period of voting definitely. 48 hour period who knows? - - -It'll be hyped regardless of the quality but a great adaptation makes it likely tbh";False;False;;;;1610376264;;False;{};givvvlb;False;t3_kujurp;False;False;t1_givvdf4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givvvlb/;1610423617;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Akatsuki_90210;;;[];;;;text;t2_3giqplia;False;False;[];;"Light Yagami, Lelouch, Kiritsugu emiya: - -""Welcome to the party""";False;False;;;;1610376320;;False;{};givw07j;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givw07j/;1610423688;13;True;False;anime;t5_2qh22;;0;[]; -[];;;_alua_;;;[];;;;text;t2_653aqv55;False;False;[];;1000 AWARDS LETS GOOOOOOO;False;False;;;;1610376331;;False;{};givw12i;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givw12i/;1610423701;10;True;False;anime;t5_2qh22;;0;[]; -[];;;apinkparfait;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/beazacha/;light;text;t2_3p3fau4c;False;False;[];;"WIT had such a massive bias that you only realize once you reads the manga; they would literally switch characters on scenes for no reason other than push certain pairings wich would end the narrative moving forward cause certain relationships need more development on screen to work as impactfuly.";False;False;;;;1610376426;;False;{};givw8hj;False;t3_kujurp;False;True;t1_gisqla1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givw8hj/;1610423820;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;100%. Especially if people who were saving up episodes to binge time it so that the finish episode 15 right before 16 airs.;False;False;;;;1610376441;;False;{};givw9ld;False;t3_kujurp;False;False;t1_givvdf4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givw9ld/;1610423838;27;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;We need 10 more awards to reach that target.;False;False;;;;1610376464;;False;{};givwbiu;False;t3_kujurp;False;False;t1_givw12i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givwbiu/;1610423866;5;True;False;anime;t5_2qh22;;0;[]; -[];;;realFIZZY;;;[];;;;text;t2_3cmcm49e;False;False;[];;"The tension in this episode is crazy.....this is a radically different eren but still the same. He's doing what must be done. I can't wait for the character interactions with og characters and see how they've changed and where they're going. - -I also just realized myself eren has never been the good guy, hes the protagonist but he's consumed by rage and vengeance and I think his grey areas will start to show going forward....";False;False;;;;1610376470;;False;{};givwc2t;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givwc2t/;1610423874;9;True;False;anime;t5_2qh22;;0;[]; -[];;;csdbcjkahsd;;;[];;;;text;t2_6o5ig4yp;False;False;[];;oh well it doesn't matter now, the ep just crossed 22.1k;False;False;;;;1610376495;;False;{};givwe63;False;t3_kujurp;False;False;t1_givp4m9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givwe63/;1610423904;5;True;False;anime;t5_2qh22;;0;[]; -[];;;KiwiAura;;;[];;;;text;t2_yyc17;False;False;[];;very nice how you said its one of your favorite things of the ARC, makes me excited for the whole season.;False;False;;;;1610376503;;False;{};givwex4;False;t3_kujurp;False;False;t1_gisa5o0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givwex4/;1610423915;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BellsDeep69;;;[];;;;text;t2_4iu7wi7o;False;False;[];;Eren activating his transformation and reiner and falco's reaction to see what exactly is about to happen gave me chills.;False;False;;;;1610376504;;False;{};givwf0h;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givwf0h/;1610423917;3;True;False;anime;t5_2qh22;;0;[]; -[];;;apinkparfait;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/beazacha/;light;text;t2_3p3fau4c;False;False;[];;In conclusion: it's all Willy's fault;False;False;;;;1610376547;;False;{};givwim8;False;t3_kujurp;False;False;t1_gissl4e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givwim8/;1610423969;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jcwild;;;[];;;;text;t2_ulv20;False;False;[];;"Eren was honestly terrifying this episode, and I think more so than in the manga. When he showed his cut hand to Falco, I felt nothing but dread and anxiety! - -I'm really happy with the way Mappa animated this, even if the last part was still images lol";False;False;;;;1610376551;;False;{};givwj0e;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givwj0e/;1610423975;17;True;False;anime;t5_2qh22;;0;[]; -[];;;DJ_AW03;;;[];;;;text;t2_6a2u9w9l;False;True;[];;The first episode also reached 22k;False;False;;;;1610376551;;False;{};givwj0x;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givwj0x/;1610423975;14;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;"Yes, however things that accumulate multiple functions without any apparent in-world logical connection are especially *egregious* plot devices. - -Storytelling is like a stage magician's act. You know it's all fake anyway, but you'll still enjoy it more if you can't see the wires.";False;False;;;;1610376592;;False;{};givwmd5;False;t3_kujurp;False;True;t1_givvgyd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givwmd5/;1610424023;1;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;Rewatch s3 p2 bert;False;False;;;;1610376613;;False;{};givwo5v;False;t3_kujurp;False;False;t1_givt4md;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givwo5v/;1610424052;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Alphonaeisback;;;[];;;;text;t2_88mtaq7a;False;False;[];;Holy shit. 11 Awards away from 1000 awards;False;False;;;;1610376633;;False;{};givwpu8;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givwpu8/;1610424077;15;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;I took a whole month for that episode to reach 22K but this episode is already here and not even 24 hours have passed;False;False;;;;1610376639;;False;{};givwqap;False;t3_kujurp;False;False;t1_givwj0x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givwqap/;1610424085;23;True;False;anime;t5_2qh22;;0;[]; -[];;;thedicestoppedrollin;;;[];;;;text;t2_3uzc4kbl;False;False;[];;There was an Asian clan within the walls that used to be loyal to the Reiss/Fritz line. I'm assuming that clan also has ties to that nation;False;False;;;;1610376681;;False;{};givwtsl;False;t3_kujurp;False;False;t1_giudhck;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givwtsl/;1610424141;3;True;False;anime;t5_2qh22;;0;[]; -[];;;officialchourico;;;[];;;;text;t2_125w3v;False;False;[];;I suppose that's true. I just think it'd be a little out of nowhere to introduce another Tybur now, in the middle of a fight, with no build-up. I actually thought we'd briefly meet a few Tyburs when they were talking about how it could be any of them, but we only focused on Willy. Again, I compare it to the Reiner situation. It was always apparent he was the Armored Titan, the reveal wasn't focused on his identity so much as why and how it was done. I'd figure the same for Willy.;False;False;;;;1610376776;;False;{};givx1j4;False;t3_kujurp;False;True;t1_giviy9q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givx1j4/;1610424258;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;Was like top 3 most gilded posts on the entire site for quite some time;False;False;;;;1610376843;;False;{};givx6yi;False;t3_kujurp;False;False;t1_givux2f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givx6yi/;1610424354;5;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;Reminds me of Jurassic Bark. Fry thinking that his dog lived a full happy life.;False;False;;;;1610376856;;False;{};givx817;False;t3_kujurp;False;True;t1_givrxya;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givx817/;1610424371;1;True;False;anime;t5_2qh22;;0;[]; -[];;;000000000050;;;[];;;;text;t2_hbx41h6;False;False;[];;6k comments lets goooooo;False;False;;;;1610376868;;False;{};givx8yz;False;t3_kujurp;False;False;t1_givw12i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givx8yz/;1610424386;8;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;"BTW this kind of ""reverse oppression"" stuff is about exclusively a right-wing talking point/conspiracy theory IRL";False;False;;;;1610376888;;False;{};givxahh;False;t3_kujurp;False;True;t1_giv1nu4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givxahh/;1610424413;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;"That's alotta damage - -Also: As God is my witness, the man is broken in half";False;False;;;;1610376993;;False;{};givxjpi;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givxjpi/;1610424551;11;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;I felt the opposite tbh. Reiner Eren talk was pretty good but the ending seemed to move too quick. Eren grew his leg back really quick and they kinda glanced over 'I keep moving forward'.;False;False;;;;1610377106;;False;{};givxtcn;False;t3_kujurp;False;True;t1_giudeb5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givxtcn/;1610424697;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CO_ORDINATE;;;[];;;;text;t2_kf9hyuw;False;False;[];;i feel like still images have some sort of air of finality impact with them, which coupled well with the cliffhanger;False;False;;;;1610377271;;False;{};givy6y1;False;t3_kujurp;False;False;t1_givwj0e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givy6y1/;1610424907;7;True;False;anime;t5_2qh22;;0;[]; -[];;;arcimillio;;;[];;;;text;t2_8xakpfwx;False;False;[];;just 6 more it will only take 10 minutes to reach the unreachable.;False;False;;;;1610377278;;False;{};givy7i2;False;t3_kujurp;False;False;t1_givwpu8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givy7i2/;1610424916;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Pussyslayer_Ornstein;;;[];;;;text;t2_15rvfq;False;False;[];;I think she did, but he looked a little... [different](https://i.imgur.com/1NRSZ2H.png);False;False;;;;1610377279;;False;{};givy7m5;False;t3_kujurp;False;True;t1_giv9c4k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givy7m5/;1610424918;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nobabtheweeb;;;[];;;;text;t2_4kw3n615;False;False;[];;I don't think that's a fair record since people now won't spend that much money on bot accounts any more. Even Kaguya sama in the future won't get there, that episode just got lucky with the timing and the quality.;False;False;;;;1610377389;;False;{};givygo2;False;t3_kujurp;False;False;t1_givu1l6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givygo2/;1610425054;1;True;False;anime;t5_2qh22;;0;[]; -[];;;athyrson06;;;[];;;;text;t2_jaq4g;False;False;[];;Tatakae;False;False;;;;1610377474;;False;{};givynzr;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givynzr/;1610425163;15;True;False;anime;t5_2qh22;;0;[]; -[];;;KiwiAura;;;[];;;;text;t2_yyc17;False;False;[];;"Yeah really tough now, can't simply say these are the good guys and those are the bad guys, they are all ""moving forward"" for the hope of survival.";False;False;;;;1610377518;;False;{};givyrle;False;t3_kujurp;False;True;t1_gischn4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givyrle/;1610425214;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;They have novel threads you just have to label them so. I didn't realize I was outside of those when I mentioned that I was looking forward to a character's antics in the next arc. I got nuked.;False;False;;;;1610377542;;False;{};givytmj;False;t3_kujurp;False;True;t1_giu82eq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givytmj/;1610425246;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;Also known as Attack on Titan: But it's inside your body;False;False;;;;1610377553;;False;{};givyum7;False;t3_kujurp;False;True;t1_givso7m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givyum7/;1610425260;3;True;False;anime;t5_2qh22;;0;[]; -[];;;erunks;;;[];;;;text;t2_dalk3;False;False;[];;"I can't believe I haven't seen anyone bring up the mysterious soldier. [Spoiler?](/s ""I'm really hoping that the soldier Pieck recognized is Armin. It would really make the next couple of episodes extra interesting"")";False;False;;;;1610377576;;1610385228.0;{};givywhu;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givywhu/;1610425288;14;True;False;anime;t5_2qh22;;0;[]; -[];;;el_mugurcio;;;[];;;;text;t2_2llrrwi2;False;False;[];;"The absolute anxiety this episode gave me, so tense, so great! - -Eren is ready to keep moving forward.";False;False;;;;1610377583;;False;{};givywzy;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givywzy/;1610425295;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;I will give more 6;False;False;;;;1610377587;;False;{};givyxcb;False;t3_kujurp;False;False;t1_givy7i2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givyxcb/;1610425300;6;True;False;anime;t5_2qh22;;0;[]; -[];;;AHxCode;;;[];;;;text;t2_diubv;False;False;[];;Wanna see my horse cock collection?;False;False;;;;1610377625;;False;{};givz0fh;False;t3_kujurp;False;True;t1_givpr5c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givz0fh/;1610425345;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DJ_AW03;;;[];;;;text;t2_6a2u9w9l;False;True;[];;1k awards 🎉🎉🎉;False;False;;;;1610377632;;False;{};givz0zz;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givz0zz/;1610425354;18;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;Yeah Yuki Kaiji really delivered with Eren's voice, his voice felt really somber yet focused, and showed he has changed.;False;False;;;;1610377658;;False;{};givz31t;False;t3_kujurp;False;False;t1_givwj0e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givz31t/;1610425383;8;True;False;anime;t5_2qh22;;0;[]; -[];;;arcimillio;;;[];;;;text;t2_8xakpfwx;False;False;[];;only 3 more needed well...;False;False;;;;1610377661;;False;{};givz3cc;False;t3_kujurp;False;False;t1_givyxcb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givz3cc/;1610425388;6;True;False;anime;t5_2qh22;;0;[]; -[];;;DrizzyRhyme;;;[];;;;text;t2_ntwq6;False;False;[];;Omg I remember that, Isayama really had all this planned out since the beginning;False;False;;;;1610377663;;False;{};givz3gb;False;t3_kujurp;False;False;t1_givuox8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givz3gb/;1610425390;13;True;False;anime;t5_2qh22;;0;[]; -[];;;thedicestoppedrollin;;;[];;;;text;t2_3uzc4kbl;False;False;[];;I'm anime only and while i completely agree, scenes like thus one make me miss WiT a little. The scene succeeds because of the story, but WiT had a way of making the scene excel (both music and style) that MAPPA is still figuring out;False;False;;;;1610377676;;False;{};givz4i7;False;t3_kujurp;False;True;t1_giv8d5k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givz4i7/;1610425405;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;"Ayy, this episode is officially the most upvoted in r/anime history!!!!!! Let's keep moving forward until we hit 30K+ on the 16th episode!!! - -And to top it off, AoT has now dethroned Steins;Gate and claimed the number 2 spot on MAL.";False;False;;;;1610377718;;1610379916.0;{};givz7v2;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givz7v2/;1610425458;41;True;False;anime;t5_2qh22;;0;[]; -[];;;DJ_AW03;;;[];;;;text;t2_6a2u9w9l;False;True;[];;1k barrier officially broken;False;False;;;;1610377725;;False;{};givz8ik;False;t3_kujurp;False;False;t1_givyxcb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givz8ik/;1610425468;8;True;False;anime;t5_2qh22;;0;[]; -[];;;arcimillio;;;[];;;;text;t2_8xakpfwx;False;False;[];;1000 Awards reached AOT is back from a break breaking every record left. It crushed its own record of upvotes and awards.;False;False;;;;1610377746;;1610377985.0;{};givza8j;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givza8j/;1610425495;35;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Already done, even more than 1.000 now - -I have to leave my retirement and start to post again to earn my coins back haha";False;False;;;;1610377753;;False;{};givzarz;False;t3_kujurp;False;False;t1_givz3cc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givzarz/;1610425503;8;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;Not a One Piece watcher or reader. I looked through these and they sound like callbacks. Apart from callbacks, I wonder if there are also plans set far in advance the way there are in AoT.;False;False;;;;1610377754;;False;{};givzau6;False;t3_kujurp;False;True;t1_git5125;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givzau6/;1610425504;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;"It's pretty much highly possible. I believe the episode adapting chapter 112 will break the comment record. - -The last episode though, ahem, that's gonna cause a hurricane. 35k not out of reach.";False;False;;;;1610377772;;False;{};givzca3;False;t3_kujurp;False;False;t1_givw9ld;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givzca3/;1610425527;9;True;False;anime;t5_2qh22;;0;[]; -[];;;rabid_J;;;[];;;;text;t2_753qc;False;False;[];;Well we know only the colossal titan is as tall as/taller than the wall and no one else comes close, we also have seen the face of one in the season 1 after-credits/season 2 ep 1.;False;False;;;;1610377777;;False;{};givzcmy;False;t3_kujurp;False;True;t1_giu754z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givzcmy/;1610425532;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BoltOfBlazingGold;;;[];;;;text;t2_11qb6gnq;False;False;[];;"No, they were never going to help Paradis regardless because the entire world already hates/fears them (don't understand how you think they don't), but whether it's among themselves or in the moment they get to dialog they can say that they weren't the ones to declare like ""it was your fault if the war **you** wanted blew on your face"" (arguing that Willy dragged those people to their death might be a valid point too, since he seemingly knew what was gonna happen, but I dunno), conflict was inevitable. If you can't see that then there's no further point to make. About the attack itself, already talked about morality and said the veredict depends on the role of warhammer and how there seems to be no other option in time (because somehow it's set in stone that cannons just won't work), but not gonna pretend like a faction is in the rigth when any path available seems to include death.";False;False;;;;1610377801;;False;{};givzejy;False;t3_kujurp;False;True;t1_givoxbi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givzejy/;1610425560;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BladerRex17;;;[];;;;text;t2_11zfb6qk;False;False;[];;Oh, I wasn't around during the WIT seasons, these are cool tho;False;False;;;;1610377812;;False;{};givzfj0;False;t3_kujurp;False;True;t1_givs3jq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givzfj0/;1610425575;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;"It is quirky. Literally every character has some sort of weirdness to them. Roswaal being a clown with odd speech patterns. Beatrice and ""I suppose"" and ""In fact."" Rem and Ram speaking in third person. Emilia drawing out words. That's not even mentioning Subaru, who's a basket case of mental issues.";False;False;;;;1610377836;;False;{};givzhrn;False;t3_kujurp;False;True;t1_giulou4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givzhrn/;1610425605;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;thedicestoppedrollin;;;[];;;;text;t2_3uzc4kbl;False;False;[];;People want YSBG because its epic, its hype, and frankly just a fantastic composition that elevated the reveal from S2. I agree it's the wrong choice for this scene, but I was hoping for something equivalent. This OST doesn't blow me away (yet) like Sawano's have;False;False;;;;1610377858;;False;{};givzjoj;False;t3_kujurp;False;True;t1_givd7ba;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givzjoj/;1610425633;1;True;False;anime;t5_2qh22;;0;[]; -[];;;arcimillio;;;[];;;;text;t2_8xakpfwx;False;False;[];;lol AOT crushed its own records of karma and awards which were also ironically made by a single episode of this season.;False;False;;;;1610377864;;False;{};givzk7d;False;t3_kujurp;False;False;t1_givzarz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givzk7d/;1610425640;5;True;False;anime;t5_2qh22;;0;[]; -[];;;rabid_J;;;[];;;;text;t2_753qc;False;False;[];;He probably just puts his consciousness into his big toe or some other fucking retarded bullshit. God I hated that shit last season. Dumbest thing Isayama ever thought up.;False;False;;;;1610377867;;False;{};givzkgg;False;t3_kujurp;False;True;t1_giu5qhp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givzkgg/;1610425643;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;"I know right, and especially the increase in favourites of Eren, he has been rapidly gaining favourites more than any other character. - -After the last episode airs, I'm sure this will be considered as a modern masterpiece.";False;False;;;;1610377868;;False;{};givzkjp;False;t3_kujurp;False;False;t1_givv9ih;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givzkjp/;1610425644;5;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;HOLY SHIT, we have reached 1K awards. Thanks to everyone who gave their free awards and paid awards.;False;False;;;;1610377878;;False;{};givzlil;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givzlil/;1610425660;28;True;False;anime;t5_2qh22;;0;[]; -[];;;arcimillio;;;[];;;;text;t2_8xakpfwx;False;False;[];;ironically those awards were also made by a single episode this season. The unachievable award goal has been achieved.;False;False;;;;1610377941;;False;{};givzqva;False;t3_kujurp;False;False;t1_givza8j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givzqva/;1610425737;16;True;False;anime;t5_2qh22;;0;[]; -[];;;TheoRaan;;;[];;;;text;t2_zdwtk;False;False;[];;"That's because Reiner is the protagonist from the Marleyan perspective. Honorary Marleyan. Rises from nothing. Persecuted and oppressed. Wants to be a hero for a Nation that doesn't accept him. Starts off meek but grows into his role and a leader and hero for his people. Unique ability that makes him super useful in battle. Forced to do things that he deeply regrets and wants to redeem himself. - -This is protagonist 101.";False;False;;;;1610377963;;False;{};givzspw;False;t3_kujurp;False;True;t1_giscr3k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givzspw/;1610425764;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tyranythan;;;[];;;;text;t2_mn70nm;False;False;[];;Titanfolk has a lot of idiots, that much is very clear when you read any discussion thread. I understand most of the complaints about the anime and somewhat agree. remember all these complaints boil down to 'I fucking love this series and wish they did this instead so it would be a 10 instead of a 9.9'. usually manga discussion is way better there, anime is just fucked because we allready know what happens so pay more attention to tiny details.;False;False;;;;1610377968;;False;{};givzt3i;False;t3_kujurp;False;True;t1_gitfuqr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givzt3i/;1610425769;1;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;I'm confused about the pre-cut hand. Doesn't cutting his hand cause him to transform? How did he control his transformation to happen long after cutting it?;False;False;;;;1610377975;;False;{};givztny;False;t3_kujurp;False;True;t1_gisrm9j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givztny/;1610425778;3;True;False;anime;t5_2qh22;;0;[]; -[];;;rabid_J;;;[];;;;text;t2_753qc;False;False;[];;Having grown up in the Liberio Internment Camp I don't think Grisha would've wanted Eren to smash an Eldian apartment building. Don't think that's what Grisha had in mind for the Restorationists.;False;False;;;;1610378014;;False;{};givzwt5;False;t3_kujurp;False;True;t1_giu5206;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givzwt5/;1610425827;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePreciseClimber;;;[];;;;text;t2_kjl4o;False;False;[];;You'll see...;False;False;;;;1610378025;;False;{};givzxqm;False;t3_kujurp;False;True;t1_givv328;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/givzxqm/;1610425841;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;HishigiRyuuji;;;[];;;;text;t2_11ebnz;False;False;[];;I have this question as well. Hopefully it will be explained in the anime, if not, then I need someone to explain it to me.;False;False;;;;1610378204;;False;{};giw0crn;False;t3_kujurp;False;True;t1_givh7ih;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw0crn/;1610426069;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akiraj02;;;[];;;;text;t2_xlqxo;False;False;[];;"You can't really blame only Marley this hard they were oppressed by Eldians for centuries, Marley is in the wrong because they took their revenge too far. There's some exposition later in the manga that furthest drives this point but basically if we take AOT as an WW2 (which there are clear parallels too) allegory Eldians are Nazis and Marley Jews that took it too far with the whole ""you have to repay and suffer for the sins of your ancestors""";False;False;;;;1610378269;;False;{};giw0i6x;False;t3_kujurp;False;True;t1_givptwt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw0i6x/;1610426152;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DaFinnesseKid;;;[];;;;text;t2_17j86r;False;False;[];;22k as of now!!! We'll just keep moving forward, until all the records are broken;False;False;;;;1610378292;;False;{};giw0k8j;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw0k8j/;1610426182;21;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;How does that work? The transformation confused me.;False;False;;;;1610378300;;False;{};giw0kyu;False;t3_kujurp;False;True;t1_giuia5a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw0kyu/;1610426192;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;AoT is now sitting at #2 on MAL holy shit. We're witnessing history rn;False;False;;;;1610378345;;False;{};giw0oty;False;t3_kujurp;False;False;t1_givzca3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw0oty/;1610426251;14;True;False;anime;t5_2qh22;;0;[]; -[];;;CCSlim;;;[];;;;text;t2_zcmqx;False;False;[];;"A lot of people died when the colossal Titan destroyed the wall. - -It’s a parallel between the first episode";False;False;;;;1610378366;;False;{};giw0qma;False;t3_kujurp;False;False;t1_gish4zq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw0qma/;1610426277;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RazorStrider_Hugo;;;[];;;;text;t2_zwtg3qj;False;False;[];;The tension in the air with Eren's confrontation of Reiner was palpable. Their talk was interweaved beautifully with Willy's speech giving that climactic moment all the build up it needed to throw all of us off the edge of our seats.;False;False;;;;1610378384;;False;{};giw0s5x;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw0s5x/;1610426302;18;True;False;anime;t5_2qh22;;0;[]; -[];;;_alua_;;;[];;;;text;t2_653aqv55;False;False;[];;Isn‘t it great that the most hyped (so far) episode of AoT is an episode that consists mostly of dialogue? Really shows how well-written this story is.;False;False;;;;1610378519;;False;{};giw13nk;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw13nk/;1610426481;64;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;True. That episode was a culmination of competition throughout the season as well. Mob Psycho posts were getting heavily gilded as well and even Shield Hero received 500 silvers on an episode back then to reference a mention of silver in the episode. So Kaguya just hit a step up;False;False;;;;1610378622;;False;{};giw1cbt;False;t3_kujurp;False;False;t1_givygo2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw1cbt/;1610426610;5;True;False;anime;t5_2qh22;;0;[]; -[];;;2rio2;;;[];;;;text;t2_7p6or;False;True;[];;"Find someone to love inside the walls - -If you can't we're doomed to repeat it all again. - -The same history. - -The same mistakes. - -Again and again.";False;False;;;;1610378633;;False;{};giw1d99;False;t3_kujurp;False;True;t1_givv4nz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw1d99/;1610426623;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Maleficent-Republic;;;[];;;;text;t2_3fu96a5a;False;False;[];;everyone....lets break comment record;False;False;;;;1610378637;;False;{};giw1dl9;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw1dl9/;1610426629;12;True;False;anime;t5_2qh22;;0;[]; -[];;;nobabtheweeb;;;[];;;;text;t2_4kw3n615;False;False;[];;"Alright where is Eren now in your top mc list? - -Mine: -Eren Fuking Yeager -Lelouch -Light -Luffy -Asta( timeskip) - - - -Eren used to be nowhere near the top 5 but now he's in the absolute top looking down on everyone else. I can't comprehend how much he has grown from that angry teenager we knew. Definitely peak character growth I've seen. I still can't believe how a single episode turned me around so much lmao.";False;False;;;;1610378683;;False;{};giw1hhy;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw1hhy/;1610426690;35;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610378711;;False;{};giw1jt3;False;t3_kujurp;False;True;t1_givz7v2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw1jt3/;1610426725;14;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Around 400 more comments are needed to break the record. The current record is 5965 comments and that was made by AoT S4 ep1.;False;False;;;;1610378728;;False;{};giw1ldj;False;t3_kujurp;False;False;t1_giw1dl9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw1ldj/;1610426750;13;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610378795;;False;{};giw1r64;False;t3_kujurp;False;True;t1_giw1dl9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw1r64/;1610426836;6;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;Your loved ones, always.;False;False;;;;1610378822;;False;{};giw1tgd;False;t3_kujurp;False;True;t1_git9hqp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw1tgd/;1610426871;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Erenblade07;;;[];;;;text;t2_3x7o1z4h;False;False;[];;The best episode of 2021 and we are just 10 days in;False;False;;;;1610378834;;False;{};giw1ukd;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw1ukd/;1610426887;16;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610378854;;False;{};giw1w9h;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw1w9h/;1610426911;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RekklesCami;;;[];;;;text;t2_3ozyz0ye;False;False;[];;Eren, Lelouch and Light for me too;False;False;;;;1610378872;;False;{};giw1xta;False;t3_kujurp;False;False;t1_giw1hhy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw1xta/;1610426936;13;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;"my dude i have read the manga, we are discussing here the anime, i dont understand why would you spoil the manga in an anime episode discussion - -fuck off with your ""hints""";False;False;;;;1610378909;;False;{};giw2134;False;t3_kujurp;False;False;t1_givzxqm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw2134/;1610426986;7;True;False;anime;t5_2qh22;;0;[]; -[];;;harisaashraf7;;;[];;;;text;t2_4jfzaue2;False;False;[];;Anyone mad at them for using still images rather animating erens raid;False;False;;;;1610378916;;False;{};giw21om;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw21om/;1610426995;4;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"Eren will hit top 10 by the end of this season at worst imo. Might contest top 3 by end of year depending on manga events and has chances of #1 in 2022 even without the anime continuation - ->he has been rapidly gaining favourites more than any other character - -Not as much as the botting contest going on with Levi Vs Luffy. - -Levi was on track to naturally overtake Luffy around the time this season started but as soon as it got close, Luffy started gaining faves even faster which was very unnatural and Levi was the same (albeit less botting imo since S1-S3P2 have gained a lot of viewers as well to catch up to S4 due to hype)";False;False;;;;1610378942;;False;{};giw23we;False;t3_kujurp;False;True;t1_givzkjp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw23we/;1610427029;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610378963;;False;{};giw25q4;False;t3_kujurp;False;True;t1_giw1jt3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw25q4/;1610427062;11;True;False;anime;t5_2qh22;;0;[]; -[];;;saladass269;;;[];;;;text;t2_1k2x5f9o;False;False;[];;he's the one who controls his transformations. having a cut or wound does nothing, he needs to make the decision and to have a clear goal in his mind to transform. so he can just sit around with a wound without transforming as long as he explicitly doesn't want to transform;False;False;;;;1610378979;;False;{};giw26yn;False;t3_kujurp;False;False;t1_givztny;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw26yn/;1610427083;23;True;False;anime;t5_2qh22;;0;[]; -[];;;JimmyCWL;;;[];;;;text;t2_16ddjx;False;False;[];;">but he was committed to his attack before that. - -No, Willy said ""... join me in the attack on Paradis Island!"" before Eren initiated his transformation.";False;False;;;;1610379022;;False;{};giw2atx;False;t3_kujurp;False;True;t1_giuia5a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw2atx/;1610427137;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Erenblade07;;;[];;;;text;t2_3x7o1z4h;False;False;[];;MadLadMappa;False;False;;;;1610379035;;False;{};giw2byc;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw2byc/;1610427154;12;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePreciseClimber;;;[];;;;text;t2_kjl4o;False;False;[];;"""You'll see"" isn't a hint. Rather, it means ""End of discussion, wait until the anime progresses further.""";False;False;;;;1610379050;;False;{};giw2d9f;False;t3_kujurp;False;False;t1_giw2134;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw2d9f/;1610427173;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SuperWeeble12;;;[];;;;text;t2_4tsmsg;False;False;[];;Well I didn't say I approved but yes, no human rights for you if everyone thinks you're a devil.;False;False;;;;1610379071;;False;{};giw2f31;False;t3_kujurp;False;True;t1_givr1ha;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw2f31/;1610427198;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;I didn't mind the still images but rather the way they're trying to mask the CG with smoke. Wish they went for a 2D cut for the Attack Titan for the last cut since it's so short;False;False;;;;1610379099;;False;{};giw2hj0;False;t3_kujurp;False;False;t1_giw21om;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw2hj0/;1610427233;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Erenblade07;;;[];;;;text;t2_3x7o1z4h;False;False;[];;Next episode is about to be LIT;False;False;;;;1610379129;;False;{};giw2k8u;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw2k8u/;1610427272;21;True;False;anime;t5_2qh22;;0;[]; -[];;;WeNTuS;;;[];;;;text;t2_btiic;False;False;[];;Sorry but I aint gonna become a murderer to protect my family. I would try run away or something but not genociding entire nation;False;False;;;;1610379140;;False;{};giw2l2l;False;t3_kujurp;False;True;t1_giw1tgd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw2l2l/;1610427284;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610379182;;False;{};giw2orm;False;t3_kujurp;False;True;t1_giw25q4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw2orm/;1610427338;3;True;False;anime;t5_2qh22;;0;[]; -[];;;harisaashraf7;;;[];;;;text;t2_4jfzaue2;False;False;[];;They literally used 4 still images there is an animator @hone_honeHONE on twitter that guy nailed this scene.;False;False;;;;1610379197;;False;{};giw2q5i;False;t3_kujurp;False;False;t1_giw2hj0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw2q5i/;1610427357;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610379214;;False;{};giw2rne;False;t3_kujurp;False;True;t1_giw25q4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw2rne/;1610427381;4;True;False;anime;t5_2qh22;;0;[]; -[];;;RCRDC;;;[];;;;text;t2_vrwyr;False;True;[];;My ass is ready for Levi;False;False;;;;1610379236;;False;{};giw2tq6;False;t3_kujurp;False;True;t1_gittztg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw2tq6/;1610427413;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ravioli_Heicho;;;[];;;;text;t2_3bls5ou;False;False;[];;Unfortunately, that’s probably as high as it will go. Last season was briefly within grasping reach of the #1 spot after *Hero* released, but then all the FMAB lunatics came out of the woodwork and review bombed it back down.;False;False;;;;1610379298;;False;{};giw2z5s;False;t3_kujurp;False;False;t1_giw0oty;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw2z5s/;1610427496;11;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;then discuss the episode my dude, that is what this post is for;False;False;;;;1610379299;;False;{};giw2z9d;False;t3_kujurp;False;False;t1_giw2d9f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw2z9d/;1610427498;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610379341;;False;{};giw32xn;False;t3_kujurp;False;True;t1_giw2orm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw32xn/;1610427551;6;True;False;anime;t5_2qh22;;0;[]; -[];;;RazorStrider_Hugo;;;[];;;;text;t2_zwtg3qj;False;False;[];;"More than the talk, the eyes spoke louder words. Who would've thought someone across the ocean had the same pov about not wishing to die for they were born into this world? Willy just struck a chord in Eren then he just had to declare war on his ass. - -Reiner though, I'd like to think that Eren gave him enough time to react and protect Falco right before he transformed. His pleas and desire to vanish were a nice callback to Historia choosing to be an enemy of humanity by freeing the crybaby Eren in season 3. Eren truly felt for Reiner and wanted him freed from the guilt that has consumed his sanity. Isayama's such a masterful storyteller.";False;False;;;;1610379348;;False;{};giw33i0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw33i0/;1610427564;28;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;Yeah fuck those FMAB ppl. How jobless and insecure does one gave to be to review bomb an anime cause it got a better rating than your personal favourite anime. They also bombed interspecies reviewers when it became number 1.;False;False;;;;1610379389;;False;{};giw370d;False;t3_kujurp;False;True;t1_giw2z5s;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw370d/;1610427617;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610379415;;False;{};giw398d;False;t3_kujurp;False;True;t1_giw1jt3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw398d/;1610427652;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePreciseClimber;;;[];;;;text;t2_kjl4o;False;False;[];;"Fine. Eren killed kids. - -Happy?";False;False;;;;1610379464;;False;{};giw3djn;False;t3_kujurp;False;True;t1_giw2z9d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw3djn/;1610427720;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610379530;;False;{};giw3jcg;False;t3_kujurp;False;True;t1_giw32xn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw3jcg/;1610427807;3;True;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;Nah. 2 hours left. I think it will sit around 22.5k;False;False;;;;1610379549;;False;{};giw3l1d;False;t3_kujurp;False;True;t1_givqvar;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw3l1d/;1610427833;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;absolutely based;False;False;;;;1610379580;;False;{};giw3npk;False;t3_kujurp;False;True;t1_giw3djn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw3npk/;1610427875;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TatteredTongues;;;[];;;;text;t2_xbrbp;False;False;[];;It doesn't make sense for it to be Armin because she never saw him, they were on opposite sides of the Walls, and when she entered Shiganshina, Armin was unrecognizable.;False;False;;;;1610379698;;False;{};giw3yfb;False;t3_kujurp;False;False;t1_givywhu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw3yfb/;1610428043;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Karen_kaslana;;;[];;;;text;t2_3n10bo31;False;False;[];;The weekly wait will be an absolute pain for the next 3 eps;False;False;;;;1610379710;;False;{};giw3zhn;False;t3_kujurp;False;False;t1_giw2k8u;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw3zhn/;1610428061;31;True;False;anime;t5_2qh22;;0;[]; -[];;;clikplay;;;[];;;;text;t2_db345;False;False;[];;"What? Obviously they were not gonna help Paradis, when did I say anything like that? -Can't you see how that ""dialog"" of ""Ha it wasn't me who started it lol"" is something out of a children's quarrel and not a war? -There has been **4 years** since they exterminated the titans on paradis, there's no way there wasn't another opportunity to attack Marley even when worrying about the warhammer";False;False;;;;1610379713;;False;{};giw3ztj;False;t3_kujurp;False;True;t1_givzejy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw3ztj/;1610428075;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;i read the manga homie. eren is literally nothing like bert;False;False;;;;1610379768;;False;{};giw44mh;False;t3_kujurp;False;True;t1_givwo5v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw44mh/;1610428181;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Lfvbf;;;[];;;;text;t2_3fuhoa6h;False;False;[];;"1. He can only transform into one titan form, he is not royal blooded and as such cannot use the Founding Titan's powers by himself. -2. Marley developed Titan Serum as a way to turn subjects of Ymir into Pure Titans without needing the Founder's powers. -3. Yes and no. In season 2 we see that they are dormant inside the walls but when sunlight hits it, the titan stat waking up. So we can assume the Founder can just force them to wake up but they could be forced by other means (still, Founder can control them).";False;False;;;;1610379792;;False;{};giw46s5;False;t3_kujurp;False;True;t1_giv89c9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw46s5/;1610428216;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SuperSceptile2821;;;[];;;;text;t2_t0fs4;False;False;[];;Re: Zero has multiple maid characters, one of which is a child, and consistently uses Isekai tropes (even if it’s mostly to subvert them). AoT simply has a more widespread appeal and plenty of people who usually don’t watch anime watch AoT. Re: Zero is about as popular as a show can get for anime fans but it doesn’t appeal to anyone outside of that bubble.;False;False;;;;1610379854;;False;{};giw4cc1;False;t3_kujurp;False;True;t1_giulou4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw4cc1/;1610428299;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Karen_kaslana;;;[];;;;text;t2_3n10bo31;False;False;[];;Can we be real thou the look in erens eyes as he was transforming could literally burn the whole world into the ground, contrast to the rest of the eps where he had nothing but a cold hard glare;False;False;;;;1610379855;;False;{};giw4cfh;False;t3_kujurp;False;False;t1_giw33i0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw4cfh/;1610428301;8;True;False;anime;t5_2qh22;;0;[]; -[];;;nanoman92;;;[];;;;text;t2_j2h04;False;False;[];;What do you predict he's going to do next;False;False;;;;1610379856;;False;{};giw4cio;False;t3_kujurp;False;True;t1_givro0p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw4cio/;1610428302;1;True;False;anime;t5_2qh22;;0;[]; -[];;;0Megabyte;;;[];;;;text;t2_i93up;False;False;[];;I mean, is it really a terrorist attack when they literally just declared war on you, personally?;False;False;;;;1610379973;;False;{};giw4muu;False;t3_kujurp;False;True;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw4muu/;1610428461;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TerrainIII;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TerrainIII;light;text;t2_128jjr;False;False;[];;In reckon he’s got to the point where he can stop his healing if he wants to, otherwise he’d be disposing of spare legs every so often.;False;False;;;;1610379993;;False;{};giw4okj;False;t3_kujurp;False;False;t1_givni7y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw4okj/;1610428487;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Karen_kaslana;;;[];;;;text;t2_3n10bo31;False;False;[];;Moving forward has never felt so badass;False;False;;;;1610380023;;False;{};giw4rag;False;t3_kujurp;False;True;t1_gisa7d4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw4rag/;1610428525;1;True;False;anime;t5_2qh22;;0;[]; -[];;;satella2020;;;[];;;;text;t2_3efxbpvc;False;False;[];;Which country?;False;False;;;;1610380105;;False;{};giw4yqq;False;t3_kujurp;False;True;t1_giv3qyf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw4yqq/;1610428637;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Augustends;;;[];;;;text;t2_6vt5i;False;False;[];;Because Marley really just wants to control all the titans. Can't do that with diplomacy.;False;False;;;;1610380193;;False;{};giw56q4;False;t3_kujurp;False;True;t1_gito8uu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw56q4/;1610428769;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;26 hours actually. But I think it will fall short either way.;False;False;;;;1610380219;;False;{};giw594f;False;t3_kujurp;False;True;t1_giw3l1d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw594f/;1610428804;3;True;False;anime;t5_2qh22;;0;[]; -[];;;guynumbers;;;[];;;;text;t2_nj6kc;False;False;[];;You're forgetting that it was used for when Eren used the coordinate for the first time.;False;False;;;;1610380230;;False;{};giw5a3g;False;t3_kujurp;False;True;t1_giutr3g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw5a3g/;1610428817;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610380313;;False;{};giw5heq;False;t3_kujurp;False;True;t1_giw3jcg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw5heq/;1610428922;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sanon441;;;[];;;;text;t2_p13vd;False;False;[];;The worst/best part is what could Eren do differently? It's not like Marley would be willing to negotiate, they certainly didn't try. And Marley needs the island for it's own future stability. They need the founding Titan to shore up they war machine for the next few decades and they need the resources on the island to fuel their technological advancements so that when titans are finally obsolete they still stand the strongest. They were come to destroy Paradis with or without the rest of the world and nothing was going to stop them.;False;False;;;;1610380342;;False;{};giw5k17;False;t3_kujurp;False;True;t1_giu4fm9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw5k17/;1610428962;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ezr1n_;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ezr1n_;light;text;t2_6p0i529t;False;False;[];;"Well we did it boys, episode 64 has surpassed the karma of the Final Season's premier episode. - -*I used Attack on Titan to destroy Attack on Titan.*";False;False;;;;1610380517;;False;{};giw5zwi;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw5zwi/;1610429210;65;True;False;anime;t5_2qh22;;0;[]; -[];;;anonymous_idunno;;;[];;;;text;t2_3k8uz38q;False;False;[];;The scene would have been pretty weird/awkward if they hadn't used still images. They wanted to keep it as close to the manga panels as possible. I had a fear that they would've fucked this up very badly, but they matched my expectations.;False;False;;;;1610380549;;False;{};giw62uq;False;t3_kujurp;False;False;t1_giw21om;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw62uq/;1610429252;28;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaneki1000_7;;;[];;;;text;t2_2xzidp4m;False;False;[];;Are you a manga reader only? I saw your posts on r/titanfolk;False;False;;;;1610380565;;False;{};giw64f2;False;t3_kujurp;False;True;t1_giv3ouz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw64f2/;1610429275;1;True;False;anime;t5_2qh22;;0;[]; -[];;;genasugelan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Genasugelan;light;text;t2_15kv3y;False;False;[];;"""Don't mind if I do.""";False;False;;;;1610380586;;False;{};giw669v;False;t3_kujurp;False;True;t1_gisafs9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw669v/;1610429305;3;True;False;anime;t5_2qh22;;0;[]; -[];;;anonymous_idunno;;;[];;;;text;t2_3k8uz38q;False;False;[];;Wait for the next episode when shit actually hits the fan;False;False;;;;1610380608;;False;{};giw68ag;False;t3_kujurp;False;False;t1_giw1ukd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw68ag/;1610429337;5;True;False;anime;t5_2qh22;;0;[]; -[];;;spiderknight616;;;[];;;;text;t2_vcau4lw;False;False;[];;Still images for scenes like this are much more impactful imo;False;False;;;;1610380677;;False;{};giw6emh;False;t3_kujurp;False;False;t1_giw21om;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw6emh/;1610429434;34;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;Broo you were right. We are at 22k and havent even been a full day yet;False;False;;;;1610380732;;False;{};giw6jrf;False;t3_kujurp;False;True;t1_gitsvmx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw6jrf/;1610429507;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sir-Odin;;;[];;;;text;t2_909yanql;False;False;[];;Now no one is the good guy.;False;False;;;;1610380780;;False;{};giw6o1d;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw6o1d/;1610429567;24;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;"Why are people even thinking it's him? The soldier doesn't sound like him and is significantly taller. - -I really don't understand some people on this.";False;False;;;;1610380784;;False;{};giw6oez;False;t3_kujurp;False;False;t1_giw3yfb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw6oez/;1610429571;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ADisplayName;;MAL;[];;http://myanimelist.net/animelist/ADisplayName;dark;text;t2_s1kt6;False;False;[];;"""Now it's your turn to be the starving orphan with the knife.""";False;False;;;;1610380791;;False;{};giw6p44;False;t3_kujurp;False;True;t1_gisafs9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw6p44/;1610429582;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RazorStrider_Hugo;;;[];;;;text;t2_zwtg3qj;False;False;[];;His seiyuu did him justice. Almost reduced me to tears Poor Reiner. 😓;False;False;;;;1610380818;;False;{};giw6rp2;False;t3_kujurp;False;False;t1_gisbhcy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw6rp2/;1610429618;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610380826;moderator;False;{};giw6sew;False;t3_kujurp;False;True;t1_giw1jt3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw6sew/;1610429628;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610380836;moderator;False;{};giw6tgt;False;t3_kujurp;False;True;t1_giw25q4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw6tgt/;1610429642;1;True;False;anime;t5_2qh22;;0;[]; -[];;;harisaashraf7;;;[];;;;text;t2_4jfzaue2;False;False;[];;Opinions i guess. You are wrong about them ruining the people at studio are very capable people.they could easily made this into a beautiful sakugafest.;False;False;;;;1610380878;;False;{};giw6x9n;False;t3_kujurp;False;True;t1_giw62uq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw6x9n/;1610429698;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610380909;;False;{};giw702z;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw702z/;1610429739;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;you're still the good guy in my eyes;False;False;;;;1610381015;;False;{};giw79jw;False;t3_kujurp;False;False;t1_giw6o1d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw79jw/;1610429875;12;True;False;anime;t5_2qh22;;0;[]; -[];;;ChornoyeSontse;;;[];;;;text;t2_8vjfuk9d;False;False;[];;Crunchyroll probably added it because they learned from Goblin Slayer that people are so sensitive they need mommy Crunchyroll to warn them of no-no content and they don't wanna get canceled.;False;True;;comment score below threshold;;1610381023;;False;{};giw7acn;False;t3_kujurp;False;True;t1_giuc7lb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw7acn/;1610429887;-15;True;False;anime;t5_2qh22;;0;[]; -[];;;harisaashraf7;;;[];;;;text;t2_4jfzaue2;False;False;[];;Opinions i guess. I respect yours;False;False;;;;1610381032;;False;{};giw7b5j;False;t3_kujurp;False;False;t1_giw6emh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw7b5j/;1610429898;11;True;False;anime;t5_2qh22;;0;[]; -[];;;imadethistoshitpostt;;;[];;;;text;t2_z6c22;False;False;[];;I liked him but he was still a delusional murderer;False;False;;;;1610381051;;False;{};giw7cvj;False;t3_kujurp;False;False;t1_giukw34;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw7cvj/;1610429924;4;True;False;anime;t5_2qh22;;0;[]; -[];;;genasugelan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Genasugelan;light;text;t2_15kv3y;False;False;[];;"""I possibly killed my country""";False;False;;;;1610381098;;False;{};giw7h3y;False;t3_kujurp;False;True;t1_gisbgr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw7h3y/;1610429989;1;True;False;anime;t5_2qh22;;0;[]; -[];;;genasugelan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Genasugelan;light;text;t2_15kv3y;False;False;[];;Right here, right here we see this show turn into an absolute masterpiece.;False;False;;;;1610381217;;False;{};giw7rqb;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw7rqb/;1610430153;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];;Oh that's a good one, never thought of the tybur as something like the Habsburg;False;False;;;;1610381243;;False;{};giw7u44;False;t3_kujurp;False;False;t1_git72sm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw7u44/;1610430189;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NewYearDodo;;;[];;;;text;t2_16wkxf;False;False;[];;You can give your opinion all you want. What makes you a troll is being rude/condescending about it.;False;False;;;;1610381286;;False;{};giw7y07;False;t3_kujurp;False;True;t1_givbc45;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw7y07/;1610430246;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Cheesemacher;;;[];;;;text;t2_b4wfb;False;False;[];;"I thought that at the end there Eren was going to [spoiler?](/s ""eat Willy and get the Warhammer titan, but then the preview played"")";False;False;;;;1610381333;;False;{};giw829q;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw829q/;1610430309;9;True;False;anime;t5_2qh22;;0;[]; -[];;;jsmith4567;;;[];;;;text;t2_mw9uj;False;False;[];;Yes let's.;False;False;;;;1610381336;;False;{};giw82ji;False;t3_kujurp;False;True;t1_giw1dl9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw82ji/;1610430312;3;True;False;anime;t5_2qh22;;0;[]; -[];;;erunks;;;[];;;;text;t2_dalk3;False;False;[];;Oh, that's true. It's been so long that I had forgotten the Cart Titan didn't get inside the walls untill after what happened to him.;False;False;;;;1610381341;;False;{};giw82zt;False;t3_kujurp;False;True;t1_giw3yfb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw82zt/;1610430319;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Good guys still exist, look at Falco!;False;False;;;;1610381344;;False;{};giw8371;False;t3_kujurp;False;False;t1_giw6o1d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw8371/;1610430323;38;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"And waking it up intentionally is *giving it a reason* to wipe out all of humanity. - -They already said technology is improving and getting the better of Titans. Would've been far better to wait for it to improve more so they can face Paradis on an even footing instead of just their sharp poking stick.";False;False;;;;1610381400;;False;{};giw888e;False;t3_kujurp;False;True;t1_giv9yjc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw888e/;1610430407;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Goldface;;;[];;;;text;t2_4xga2;False;False;[];;Yeah but why does Shinji just choose to not get into EVA?;False;False;;;;1610381453;;False;{};giw8d5b;False;t3_kujurp;False;True;t1_gisp4ex;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw8d5b/;1610430476;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jsmith4567;;;[];;;;text;t2_mw9uj;False;False;[];;Remember the Survey Corp passed the Cart on their way to Shinganshima. She may have also gotten a look at his burnt body when she carried Zeke passed Eren.;False;False;;;;1610381481;;False;{};giw8for;False;t3_kujurp;False;True;t1_giw3yfb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw8for/;1610430512;2;True;False;anime;t5_2qh22;;0;[]; -[];;;anonymous_idunno;;;[];;;;text;t2_3k8uz38q;False;False;[];;"After next couple of episodes, Eren will have his own tier. - - -""He just keeps moving forward until his enemies are destroyed""";False;False;;;;1610381487;;False;{};giw8g9e;False;t3_kujurp;False;False;t1_giw1hhy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw8g9e/;1610430522;10;True;False;anime;t5_2qh22;;0;[]; -[];;;anonymous_idunno;;;[];;;;text;t2_3k8uz38q;False;False;[];;Doesn't that make it cheating too?;False;False;;;;1610381527;;False;{};giw8jy6;False;t3_kujurp;False;False;t1_giw1r64;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw8jy6/;1610430579;7;True;False;anime;t5_2qh22;;0;[]; -[];;;erunks;;;[];;;;text;t2_dalk3;False;False;[];;To be fair, the first time we saw Eren again, I had to double take because he looked and sounded so different from what I remembered. So who was to say the same thing didn't happen for Armin? In any case u/TatteredTongues made a good point.;False;False;;;;1610381535;;False;{};giw8ko2;False;t3_kujurp;False;True;t1_giw6oez;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw8ko2/;1610430592;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RazorStrider_Hugo;;;[];;;;text;t2_zwtg3qj;False;False;[];;Basement-kun is final boss. Calling it.;False;False;;;;1610381537;;False;{};giw8ksu;False;t3_kujurp;False;True;t1_gisfq6x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw8ksu/;1610430594;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;i recommend u dont watch the previews. they spoil way too much;False;False;;;;1610381547;;False;{};giw8lp3;False;t3_kujurp;False;False;t1_giw829q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw8lp3/;1610430611;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];;"Think of it like the Gulf War lead by the United States Coalition. Iraq supposedly had nukes so they invaded before it was too late. -It's a threat that they feel needs to be dealt with";False;False;;;;1610381547;;False;{};giw8lps;False;t3_kujurp;False;False;t1_gito8uu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw8lps/;1610430611;4;True;False;anime;t5_2qh22;;0;[]; -[];;;KrzyDankus;;;[];;;;text;t2_146zps;False;False;[];;theyre probably saving that for the next few episodes.;False;False;;;;1610381570;;False;{};giw8nti;False;t3_kujurp;False;False;t1_giw6x9n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw8nti/;1610430642;13;True;False;anime;t5_2qh22;;0;[]; -[];;;anonymous_idunno;;;[];;;;text;t2_3k8uz38q;False;False;[];;All of the hyped up episodes in manga from until this point are like these. And trust me, they just keep getting better and better;False;False;;;;1610381666;;False;{};giw8wel;False;t3_kujurp;False;False;t1_giw13nk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw8wel/;1610430771;10;True;False;anime;t5_2qh22;;0;[]; -[];;;kk_213;;;[];;;;text;t2_72ca35r7;False;False;[];;This Eren and Reiner conversation is easily one of the best in AOT so far....heck one of the best in all of anime imo;False;False;;;;1610381755;;False;{};giw94j4;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw94j4/;1610430890;36;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;"Does Paradise even have a way to source Titan spinal fluid? Annie hasn’t been eaten yet unless the trailer showed a flashback. - -All I know is that the Eren x Reiner bro moment has planted seeds of doubt in Falco; he sees someone he respects dearly on his knees apologizing to a devil for his sins against him. Once that illusion is shattered there’s no reason to fight for Marley";False;False;;;;1610381755;;False;{};giw94lg;False;t3_kujurp;False;True;t1_givqom2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw94lg/;1610430890;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;Just because enemy soldiers killed innocent people on your side doesn't mean you are morally justified in killing innocent people on their side.;False;False;;;;1610381769;;False;{};giw95v8;False;t3_kujurp;False;False;t1_giv0s5k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw95v8/;1610430909;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;anonymous_idunno;;;[];;;;text;t2_3k8uz38q;False;False;[];;"It will just keep breaking it's record again and again. Like Eren said, ""I just keep moving forward""";False;False;;;;1610381824;;False;{};giw9ase;False;t3_kujurp;False;True;t1_givzqva;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw9ase/;1610430986;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rha_psody;;;[];;;;text;t2_98b54u1;False;False;[];;Attack on Attack on Titan.;False;False;;;;1610381857;;False;{};giw9dv9;False;t3_kujurp;False;False;t1_giw5zwi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw9dv9/;1610431032;24;True;False;anime;t5_2qh22;;0;[]; -[];;;harisaashraf7;;;[];;;;text;t2_4jfzaue2;False;False;[];;I hope so.;False;False;;;;1610381864;;False;{};giw9eiz;False;t3_kujurp;False;False;t1_giw8nti;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw9eiz/;1610431043;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackkatsu01;;;[];;;;text;t2_47wigk61;False;False;[];;Amazing epsidoe. 10/10;False;False;;;;1610381866;;False;{};giw9esg;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw9esg/;1610431047;13;True;False;anime;t5_2qh22;;0;[]; -[];;;supaboss2015;;;[];;;;text;t2_qrx17;False;False;[];;Fair;False;False;;;;1610381908;;False;{};giw9itf;False;t3_kujurp;False;True;t1_giw7cvj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw9itf/;1610431103;1;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;"> Does Paradise even have a way to source Titan spinal fluid? - -Maybe but Marley doesnt know that - -> Annie hasn’t been eaten yet unless the trailer showed a flashback. - -They cant get through the crystal - -> All I know is that the Eren x Reiner bro moment has planted seeds of doubt in Falco; he sees someone he respects dearly on his knees apologizing to a devil for his sins against him. Once that illusion is shattered there’s no reason to fight for Marley - -Reiner does not believe in the BS of Marley at all but can't do anything. Falco doesn't believe in it etheir and states that episode 2. It doesnt change the last 2 points of why they cant rebel";False;False;;;;1610381942;;False;{};giw9m31;False;t3_kujurp;False;True;t1_giw94lg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw9m31/;1610431151;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RazorStrider_Hugo;;;[];;;;text;t2_zwtg3qj;False;False;[];;More like the Marleyan Erwin Smith for pure hype speeches. Both died fulfilling the duties they were entrusted to. They are certainly the Devils.;False;False;;;;1610381962;;False;{};giw9nvz;False;t3_kujurp;False;True;t1_gistbee;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw9nvz/;1610431177;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Si7koos;;;[];;;;text;t2_15afye;False;False;[];;How are you;False;False;;;;1610382011;;False;{};giw9skl;False;t3_kujurp;False;False;t1_giw1r64;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giw9skl/;1610431246;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;You forgot Homura dude, tho mb she is technically a deuteragonist? In any case there's my top 5 characters;False;False;;;;1610382102;;False;{};giwa142;False;t3_kujurp;False;True;t1_givw07j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwa142/;1610431373;2;True;False;anime;t5_2qh22;;0;[]; -[];;;asscrackrash;;;[];;;;text;t2_9jhv8y1m;False;False;[];;21 hours, karma record.;False;False;;;;1610382117;;False;{};giwa2dk;False;t3_kujurp;False;True;t1_givex2w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwa2dk/;1610431392;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;"Reiner- Please, just kill me - -Eren- No - -Willy Tybur- But I don't want to die - -Eren- LMFAO ok";False;False;;;;1610382156;;False;{};giwa61a;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwa61a/;1610431446;41;True;False;anime;t5_2qh22;;0;[]; -[];;;Cheesewithmold;;;[];;;;text;t2_7mkpb;False;False;[];;"I agree. Objectively speaking, Eren's act is still within the boundaries of being morally justifiable. Reiner's isn't. In one scenario there is a very clear, solidified, and obvious threat. In the other, it's manufactured for political gain and to ensure the continuation of a hegemonic power. Nobody should really be debating the morality of these two situations imo. - -But from child Reiner's perspective it is the complete same. ""I'm committing this evil act to save the world."" And both Eren and Reiner completely believed that when committing their respective ""sins"". - -I can't really remember anything that Reiner did where, by taking into account the stuff that he was brainwashed into believing which you can't really hold against him, you can claim that he was morally wrong. Maybe when he captured Eren after transforming on the walls in season 2? But even then, that was to just get back to Marley. I guess you can make the argument that he didn't *have* to capture Eren to go back home. But still... - -\#ReinerDidNothingWrong";False;False;;;;1610382184;;False;{};giwa8os;False;t3_kujurp;False;True;t1_giv501n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwa8os/;1610431482;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610382215;;False;{};giwabia;False;t3_kujurp;False;True;t1_givywhu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwabia/;1610431524;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;"Comment, Karma and Award record were held by ReZero Season 2 EP12, ReZero Season 2 EP1 and Kaguya Season 1 EP1. All 3 were broken by AoT S4 EP1. Now, EP5 broke EP1's Karma record and Award record and is about 300 comments away from beating the Comment record. - - -There's also episode rating, apparently the current record holder is Chihayafuru 3 at 9.84, idk if this is correct tho. Animekarma list shows that Demon Slayer episode 19 is the hgihest rated at 4.96, followed by AoT S3 Episode 17 at 4.91 and this episode at 4.90. - - -There's also highest average poll rating, currently held by Run with the Wind. and highest average karma currently held by ReZero S2P1. S4 already beat it I think but it did so with only 4 episodes so I'm not sure if it counts or not.";False;False;;;;1610382218;;False;{};giwabu7;False;t3_kujurp;False;True;t1_givvkmc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwabu7/;1610431528;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PM_ME_UR_SOCKS_GIRL;;;[];;;;text;t2_phrxn;False;False;[];;I understood that part, but what was the point of the scene lol?;False;False;;;;1610331845;;False;{};gitvv2m;False;t3_kujurp;False;True;t1_gituyjb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitvv2m/;1610378571;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bbc_her;;;[];;;;text;t2_52uvmgfj;False;True;[];;unconfirmed;False;False;;;;1610331852;;False;{};gitvvlg;False;t3_kujurp;False;False;t1_gitv4pe;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitvvlg/;1610378581;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ErwinSmith850;;;[];;;;text;t2_4nbfck6o;False;False;[];;They could do a part 2, a movie, or end it at chapter 122. No one really knows;False;False;;;;1610331923;;False;{};gitw0py;False;t3_kujurp;False;False;t1_gitv4pe;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitw0py/;1610378678;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AlikeWolf;;;[];;;;text;t2_13pwz0;False;False;[];;Holy shit;False;False;;;;1610331923;;False;{};gitw0qw;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitw0qw/;1610378678;13;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;"""Not gonna lie kinda miss when the setting was more crueler and darker. "" - -Oh, boy this comment wont age well. All I'm going to say is what happen later will eat the previous season for breakfast, you want cruel you will get it and may wish you didn't ask for it.";False;False;;;;1610331932;;False;{};gitw1ee;False;t3_kujurp;False;False;t1_gituijw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitw1ee/;1610378691;21;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;How do you cross a freeway? Take the f out of free and take the f out of way.;False;False;;;;1610331932;;False;{};gitw1fs;False;t3_kujurp;False;False;t1_gitigb4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitw1fs/;1610378691;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610331997;;1610343954.0;{};gitw66r;False;t3_kujurp;False;False;t1_gittp6n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitw66r/;1610378782;6;False;False;anime;t5_2qh22;;0;[]; -[];;;evilresurgence4;;;[];;;;text;t2_3hd7gero;False;False;[];;we normally see it surrounded by massive walls that's why it looks smaller;False;False;;;;1610332007;;False;{};gitw6xv;False;t3_kujurp;False;True;t1_giss3ph;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitw6xv/;1610378796;2;True;False;anime;t5_2qh22;;0;[]; -[];;;vieris123;;;[];;;;text;t2_1yqzj4z;False;False;[];;He understands and forgives Reiner's actions but at the end of the day they're fighting on opposite sides of the war and he has to do what he must, it's just not personal anymore.;False;False;;;;1610332040;;False;{};gitw9bx;False;t3_kujurp;False;True;t1_giswuqe;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitw9bx/;1610378840;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610332071;;1610343947.0;{};gitwbio;False;t3_kujurp;False;True;t1_gitvv2m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitwbio/;1610378881;8;False;False;anime;t5_2qh22;;0;[]; -[];;;GloinMyPimp;;;[];;;;text;t2_606gtsao;False;False;[];;"> blowing up a building full of oppressed people just to make a statement and to get at one guy. - -?????? - -He was under that building because it was the safest place for him to be. Did you miss the parts of the episode where there were troops everywhere expecting some sort of attack? He also wasn't trying to ""get at"" Reiner, idk how you can interpret their conversation that way. Eren completely understands why Reiner did what he did.";False;False;;;;1610332076;;False;{};gitwbvn;False;t3_kujurp;False;True;t1_gitun26;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitwbvn/;1610378889;4;True;False;anime;t5_2qh22;;0;[]; -[];;;XenOmega;;;[];;;;text;t2_b6j19;False;False;[];;Flashback to the Big Lebowski : this is what happens when you fk a stranger in the ass...;False;False;;;;1610332088;;False;{};gitwcqm;False;t3_kujurp;False;True;t1_gisfgx0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitwcqm/;1610378905;2;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;“we” as in from eren’s POV?;False;False;;;;1610332111;;False;{};gitwedx;False;t3_kujurp;False;True;t1_gituijw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitwedx/;1610378934;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LaggerOW;;;[];;;;text;t2_pf4xlr3;False;False;[];;But Eren inherit the memories of the Attack Titan though. So you dont really gain memories from previous titan wielders? I noticed Zeke told Colt that he would gain Zeke's memories when he inherit the Beast Titan in the future. Does it not apply to everyone?;False;False;;;;1610332111;;False;{};gitwefo;False;t3_kujurp;False;True;t1_gitvfcp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitwefo/;1610378935;1;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;Nothing wrong in that there was no other choice he could make. Every other choice would have lead to him and his family dying a horrible death;False;False;;;;1610332139;;False;{};gitwgda;False;t3_kujurp;False;True;t1_gitvcrd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitwgda/;1610378972;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GloinMyPimp;;;[];;;;text;t2_606gtsao;False;False;[];;Ok man.;False;False;;;;1610332142;;False;{};gitwgks;False;t3_kujurp;False;True;t1_gitvrml;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitwgks/;1610378975;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610332156;;False;{};gitwhl6;False;t3_kujurp;False;True;t1_gitvv2m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitwhl6/;1610378993;11;True;False;anime;t5_2qh22;;0;[]; -[];;;evilresurgence4;;;[];;;;text;t2_3hd7gero;False;False;[];;falco was basically a hostage incase reiner tried anything;False;False;;;;1610332157;;False;{};gitwho2;False;t3_kujurp;False;True;t1_giten7e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitwho2/;1610378994;1;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;the 145th king’s will took over;False;False;;;;1610332166;;False;{};gitwic7;False;t3_kujurp;False;False;t1_gittp6n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitwic7/;1610379006;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Nicowiwi;;;[];;;;text;t2_23pc8ld;False;False;[];;Man, I really need to rewatch those episodes explaining everything from last season. Clearly I forgot a lot. Thanks for the explanation;False;False;;;;1610332191;;False;{};gitwk2y;False;t3_kujurp;False;True;t1_gitq9r9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitwk2y/;1610379037;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PushEmma;;MAL;[];;http://myanimelist.net/animelist/SleepingWolves;dark;text;t2_m6lcw;False;False;[];;Yeah that was awesome this episode;False;False;;;;1610332234;;False;{};gitwn28;False;t3_kujurp;False;False;t1_gitozkj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitwn28/;1610379093;26;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;Eren does inherit the memories of the Attack Titan but he's not bound by King Fritz's will because he's not royal blooded.;False;False;;;;1610332280;;False;{};gitwqek;False;t3_kujurp;False;True;t1_gitwefo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitwqek/;1610379156;3;True;False;anime;t5_2qh22;;0;[]; -[];;;x3tan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Koshiba;light;text;t2_6shxr;False;False;[];;Poor kid;False;False;;;;1610332329;;False;{};gitwtul;False;t3_kujurp;False;True;t1_gisbfys;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitwtul/;1610379219;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Reikakou;;;[];;;;text;t2_hbzvw;False;False;[];;"The anime gave me a new appreciation of the Marley arc given the incredible pacing. - -On another note, was Ymir's backstory condensed in fast slide show when Historia touched the letter?";False;False;;;;1610332331;;False;{};gitwtxg;False;t3_kujurp;False;True;t1_git44eg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitwtxg/;1610379221;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iloveacademia;;;[];;;;text;t2_3m6fzg6c;False;False;[];;"What’s so cruel about that though? That’s happened before. - -Hell that even happened in our world. - -All I’m saying is I’ve seen darker series, wish things were more dark just my opinion";False;True;;comment score below threshold;;1610332334;;False;{};gitwu73;False;t3_kujurp;False;True;t1_gitvryn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitwu73/;1610379226;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;Saucy_Totchie;;;[];;;;text;t2_n6mml;False;False;[];;"Willy: Yo fuck Paradis Island, right?! - -Everyone in the crowd: Yeah! - -[Eren](http://imgur.com/a/r91V7oM)";False;False;;;;1610332355;;False;{};gitwvme;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitwvme/;1610379252;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Spiceyhedgehog;;;[];;;;text;t2_143wk0;False;False;[];;Yes, but you can still be old if you ate the previous shifter at an older age.;False;False;;;;1610332358;;False;{};gitwvts;False;t3_kujurp;False;False;t1_gitvsiu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitwvts/;1610379255;5;True;False;anime;t5_2qh22;;0;[]; -[];;;iloveacademia;;;[];;;;text;t2_3m6fzg6c;False;False;[];;we as in Humanity;False;False;;;;1610332370;;False;{};gitwwpw;False;t3_kujurp;False;False;t1_gitwedx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitwwpw/;1610379272;1;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;tbh though people are giving this post platinum and gold;False;False;;;;1610332403;;False;{};gitwz2e;False;t3_kujurp;False;False;t1_gitr30j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitwz2e/;1610379314;3;True;False;anime;t5_2qh22;;0;[]; -[];;;honestlytbh;;;[];;;;text;t2_piqxa;False;False;[];;Might be a fake beard. I think that's why Pieck points it out.;False;False;;;;1610332425;;False;{};gitx0nw;False;t3_kujurp;False;False;t1_git7clr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitx0nw/;1610379343;9;True;False;anime;t5_2qh22;;0;[]; -[];;;medven;;;[];;;;text;t2_d3k7j;False;False;[];;"These are some questions I've always thought about but too afraid to look up - -1. Why did Ymir's titan appearance not change from before/after eating Marcel? - -2. Why didn't any of the warriors recognize Eren's last name being the same as Zeke? or did they know and just not care - -3. What happens to the titans that Marley uses in their wars after the battle is done. Do they individually kill them or just leave them there";False;False;;;;1610332431;;False;{};gitx136;False;t3_kujurp;False;False;t1_gismb1y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitx136/;1610379352;11;True;False;anime;t5_2qh22;;0;[]; -[];;;AsianSquirrel;;;[];;;;text;t2_3vynsrfo;False;False;[];;"Yea I feel you. It's nice to hear that someone else experiences this problem. I'm genuinely concerned that the thirst for moral ambiguity in fiction being a problem of which people extract to real life. - -Eren is no longer the protagonist and Isayama certainly make several nuanced attempts to portray Eren's actions as unjustified and terrible. I get that the anime is only beginning to expose Eren's current inner workings, but I fear that many people don't care whether or not Eren's actions are justified and instead project themselves onto an indignant soldier who would flatten the planet for petty reasons, especially when other options exist.";False;False;;;;1610332444;;False;{};gitx200;False;t3_kujurp;False;True;t1_gittng2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitx200/;1610379368;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cormorant_;;;[];;;;text;t2_4jw94ekp;False;False;[];;">kinda miss when the setting was more crueler and darker - -Eren just intentionally demolished an entire building that dozens of citizens were living in, after acknowledging that he’s about to do what Reiner did to Eren a decade ago and that innocent people will die and he doesn’t care at all, and is about to rampage over a festival of hundreds - if not thousands - of people (where kids are present) who will get caught in the crossfire. How much more cruel and dark do you want it to be wtf - -And that’s not even taking into account that we’re watching an ethnic group be segregated from a society they’re raised to live and die for, and are taught from a young age that they’re the scum of the planet and deserve nothing but death. They even have to wear fucking Star of David style armbands smh";False;False;;;;1610332456;;1610332744.0;{};gitx2vs;False;t3_kujurp;False;False;t1_gituijw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitx2vs/;1610379384;26;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;soulmadness’ motion manga;False;False;;;;1610332473;;False;{};gitx43n;False;t3_kujurp;False;True;t1_gitqoan;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitx43n/;1610379409;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;This season ends at ep 16 which will adapt up to Chapter 122 of the manga. It's unconfirmed but most likely the rest of the manga will be adapted into Part 2 of this season. MAPPA confirmed that they're adapting the full story;False;False;;;;1610332480;;False;{};gitx4ly;False;t3_kujurp;False;False;t1_gitv4pe;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitx4ly/;1610379418;6;True;False;anime;t5_2qh22;;0;[]; -[];;;DarKav1411;;;[];;;;text;t2_28hr9sci;False;False;[];;Sure looks like it.;False;False;;;;1610332494;;False;{};gitx5kp;False;t3_kujurp;False;False;t1_gitp04n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitx5kp/;1610379436;16;True;False;anime;t5_2qh22;;0;[]; -[];;;BoltOfBlazingGold;;;[];;;;text;t2_11qb6gnq;False;False;[];;"How would he know? I see him getting in the know of a lot of things, but about the effectiveness of those weapons, apart from how much of a liability they were for Eldians and how much talked it was that titan dominance was coming to an end I don't see supporting evidence. - -An alliance against them has formed so it's not out of the qustion that they would share the know how and deploy factories as fast as they could. They might lose a few battles by pure numbers, but if they pump them out with the support of countless nations (add how many more are there that we don't know about) then I don't see a victorious campaign so clear cut. A point was made in previous episodes that this was a race against time, so the fastest and most effective approach was the only option he had.";False;False;;;;1610332501;;False;{};gitx63o;False;t3_kujurp;False;True;t1_gitnbyi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitx63o/;1610379445;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;I don't think Ymir's death was shown in the manga. It was just implied through dialogue. Her death happened offscreen.;False;False;;;;1610332538;;False;{};gitx8oj;False;t3_kujurp;False;False;t1_gitwtxg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitx8oj/;1610379493;1;True;False;anime;t5_2qh22;;0;[]; -[];;;medven;;;[];;;;text;t2_d3k7j;False;False;[];;I vaguely remember it being mentioned at the end of s3. During one of the exposition bombs;False;False;;;;1610332556;;False;{};gitx9z2;False;t3_kujurp;False;False;t1_gitn4k6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitx9z2/;1610379519;14;True;False;anime;t5_2qh22;;0;[]; -[];;;iloveacademia;;;[];;;;text;t2_3m6fzg6c;False;False;[];;"yea you’re kinda right, I guess I’d kill off a whole civilization for my family too. - -**Not** are you crazy?";False;False;;;;1610332585;;False;{};gitxc26;False;t3_kujurp;False;True;t1_gitwgda;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxc26/;1610379557;1;True;False;anime;t5_2qh22;;0;[]; -[];;;medven;;;[];;;;text;t2_d3k7j;False;False;[];;Avatar style;False;False;;;;1610332585;;False;{};gitxc2o;False;t3_kujurp;False;False;t1_gitsrgy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxc2o/;1610379557;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Sir_CuckHolder;;;[];;;;text;t2_77zyg45n;False;False;[];;I agree, the way it was presented in the trailer made me expect it to be more dramatic in the show.;False;False;;;;1610332594;;False;{};gitxcqm;False;t3_kujurp;False;True;t1_git3lhn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxcqm/;1610379570;2;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;are you a manga reader?;False;False;;;;1610332604;;False;{};gitxdhn;False;t3_kujurp;False;True;t1_gitnxkp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxdhn/;1610379584;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DarKav1411;;;[];;;;text;t2_28hr9sci;False;False;[];;He is the best hero precisely because he’s fictional. Just like Superman.;False;False;;;;1610332618;;False;{};gitxehb;False;t3_kujurp;False;False;t1_git29v8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxehb/;1610379601;13;True;False;anime;t5_2qh22;;0;[]; -[];;;LorenzoApophis;;;[];;;;text;t2_2cbj4o9v;False;False;[];;Obviously yes;False;False;;;;1610332642;;False;{};gitxgba;False;t3_kujurp;False;True;t1_gitxdhn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxgba/;1610379636;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;he didnt want the war to happen;False;False;;;;1610332644;;False;{};gitxghb;False;t3_kujurp;False;True;t1_gitnfqb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxghb/;1610379638;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iloveacademia;;;[];;;;text;t2_3m6fzg6c;False;False;[];;"Much more cruel bro. - -But like I said before it’s my opinion.";False;True;;comment score below threshold;;1610332648;;False;{};gitxgq8;False;t3_kujurp;False;True;t1_gitx2vs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxgq8/;1610379642;-14;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"When someone inherits a titan powers they also inherit it's previous wielder or future wielder(Owl got Eren's memories) - -But when a person of royal blood inherits the founding titan they also inherit King Fritz will in addition to the memories";False;False;;;;1610332689;;False;{};gitxjrk;False;t3_kujurp;False;True;t1_gitwefo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxjrk/;1610379699;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PushEmma;;MAL;[];;http://myanimelist.net/animelist/SleepingWolves;dark;text;t2_m6lcw;False;False;[];;Are this spoilers?;False;False;;;;1610332695;;False;{};gitxkc1;False;t3_kujurp;False;True;t1_giswl49;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxkc1/;1610379709;0;True;False;anime;t5_2qh22;;0;[]; -[];;;LaggerOW;;;[];;;;text;t2_pf4xlr3;False;False;[];;at what chapter the s3 anime stopped? Planning on reading it;False;False;;;;1610332706;;False;{};gitxl45;False;t3_kujurp;False;False;t1_gitw66r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxl45/;1610379724;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ravioli_Heicho;;;[];;;;text;t2_3bls5ou;False;False;[];;Episodes 14, 15, and 16 will all unquestionably break 20k.;False;False;;;;1610332711;;False;{};gitxli3;False;t3_kujurp;False;False;t1_gitshz0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxli3/;1610379731;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Trevor1969;;;[];;;;text;t2_15fyt2;False;False;[];;As an anime only, fairly sure that the person who trapped pieke was armin. Yeah the voice was different and he was much taller, but you could account for it with the collosal titan changing him physically.;False;False;;;;1610332718;;False;{};gitxm12;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxm12/;1610379740;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Awesome6472;;;[];;;;text;t2_gg5ps;False;False;[];;"As an anime only, it's really confusing. I still don't fully understand Kenny's role in the story. - -Not completely adapting chapter 96 was probably the biggest mistake ever imo. It really clears up how Annie, Reiner, and Bertholt were able to infiltrate Wall Maria.";False;False;;;;1610332755;;False;{};gitxonj;False;t3_kujurp;False;True;t1_gitw66r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxonj/;1610379794;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610332781;;False;{};gitxqed;False;t3_kujurp;False;True;t1_gitcxim;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxqed/;1610379826;0;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;did you not see the final part of the episode?;False;False;;;;1610332785;;False;{};gitxqoo;False;t3_kujurp;False;True;t1_gitip5o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxqoo/;1610379834;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrPakoras;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/MrPakoras?status=7;light;text;t2_1y4p13vi;False;False;[];;Warhammer Titan? More like Struck by the ban hammer titan.;False;False;;;;1610332790;;False;{};gitxr0p;False;t3_kujurp;False;True;t1_gisf892;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxr0p/;1610379840;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;Eren went from a naive victim who lost his mother to a ruthless perpetrator who just slaughtered innocent people. The story is way darker now. Just because there's less gore overall doesn't mean its less dark.;False;False;;;;1610332812;;False;{};gitxskj;False;t3_kujurp;False;False;t1_gitwu73;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxskj/;1610379869;4;True;False;anime;t5_2qh22;;0;[]; -[];;;honestlytbh;;;[];;;;text;t2_piqxa;False;False;[];;Annie's dad does not look like the same person they were showing in her flashbacks.;False;False;;;;1610332835;;False;{};gitxu7s;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxu7s/;1610379900;2;True;False;anime;t5_2qh22;;0;[]; -[];;;86ronin;;;[];;;;text;t2_1adivp4x;False;False;[];;Damn what’s more cruel than genocide;False;False;;;;1610332842;;False;{};gitxupp;False;t3_kujurp;False;False;t1_gitwu73;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxupp/;1610379910;9;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;I LOVE Re:Zero, it's my number one with a bullet, but I don't think it can reach as wide of an audience as AoT can since it's so quirky.;False;False;;;;1610332859;;False;{};gitxvwq;False;t3_kujurp;False;False;t1_gisewnt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxvwq/;1610379933;11;True;False;anime;t5_2qh22;;0;[]; -[];;;AussieManny;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Nauran;light;text;t2_13tmtu;False;False;[];;"So this is the ""shit hits the fan"" episode... Goddamn, that was intense. - -I'm thinking that tall soldier who led the warriors into the trap was Armin, with a massive growth spurt and/or an affect of the Colossal Titan transformation.";False;False;;;;1610332869;;1610361507.0;{};gitxwkf;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxwkf/;1610379946;8;True;False;anime;t5_2qh22;;0;[]; -[];;;theshinycelebi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/SH1NGEK1/animelist/Completed;light;text;t2_eawxa;False;True;[];;Season 1, Episode 4 at about 5:42 right after Shadis finishes introducing the main cast to the audience.;False;False;;;;1610332876;;False;{};gitxx3c;False;t3_kujurp;False;False;t1_gitm2ka;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxx3c/;1610379955;8;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;yeah his design was lowkey retconned. gotta say i prefer this design tho;False;False;;;;1610332885;;False;{};gitxxo1;False;t3_kujurp;False;False;t1_gitxu7s;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxxo1/;1610379967;11;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;"its not pain that triggers the transformation, its blood - - he decided to transform at that time";False;False;;;;1610332888;;False;{};gitxxwh;False;t3_kujurp;False;True;t1_giti337;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxxwh/;1610379972;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IamDuyi;;;[];;;;text;t2_2iqmf4mn;False;False;[];;Uhh, I doubt that if they don't want it to be shit. Pretty much everything would have to be cut, then;False;False;;;;1610332891;;False;{};gitxy3i;False;t3_kujurp;False;False;t1_git5ukb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxy3i/;1610379976;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Alright come on I love AOT but that’s not entirely true. Many of the rich dirtbags within the walls don’t really have a motive;False;False;;;;1610332903;;False;{};gitxyvz;False;t3_kujurp;False;True;t1_gishl8w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitxyvz/;1610379991;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Border_Bandit;;;[];;;;text;t2_16q1nq;False;False;[];;My only issue with this episode is that they decided to use a CGI model for a 3 second scene with barely any movement from the titan. They could have animated that easily. Everything else other than that was great.;False;False;;;;1610332919;;False;{};gity012;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gity012/;1610380012;9;True;False;anime;t5_2qh22;;0;[]; -[];;;yolo_swag_for_satan;;;[];;;;text;t2_2aloc4yu;False;False;[];;"There's nothing that says that he had to assassinate the dude at a crowded public event in a residential area. He's intentionally doing a terrorism. He's the moral equivalent of a dudes who blow up cars in public squares. - -This is a work of fiction and the author specifically constructed a scenario to show that Erehh is a heartless enough piece of shit to blow up a building full of innocent people. He tried to blow up Falco (who he could've let go, an innocent kid who's been nothing but a friend to him) and the episode preview implies that more of the candidate children will die next ep. No reason other than being a dick to slaughter people in the crowd. I think his actions are super unambiguously asshole things to do and needlessly violent. I went into this thread expecting /r/anime people to defend him and I'm not surprised, agree to disagree and letting you know ahead of time that there is nothing anyone can say to justify his actions to me since, whatever his intentions are, he still chose to kill innocent people.";False;False;;;;1610332924;;False;{};gity0do;False;t3_kujurp;False;True;t1_gitwbvn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gity0do/;1610380020;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Yeah, still think they made the wrong decision but we’ll see.;False;False;;;;1610332939;;False;{};gity1dk;False;t3_kujurp;False;False;t1_gisfo09;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gity1dk/;1610380037;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MilkToastKing;;;[];;;;text;t2_13tvvu;False;False;[];;"Pretty fucked considering that the announcement was held in the Eldian Internment Zone, these are technically his people. Still though: ""I just keep moving forward""";False;False;;;;1610332956;;False;{};gity2km;False;t3_kujurp;False;False;t1_gitvlst;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gity2km/;1610380061;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SnowdenBlvd;;;[];;;;text;t2_39yvh7k6;False;False;[];;"Is it just me or did the OST feel very underwhelming ? -I liked this one a lot more: https://youtu.be/DcPk3xB1VsE";False;True;;comment score below threshold;;1610332968;;False;{};gity3f9;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gity3f9/;1610380078;-21;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;Selective squishing spree;False;False;;;;1610332970;;False;{};gity3i8;False;t3_kujurp;False;False;t1_gitp04n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gity3i8/;1610380079;25;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610332970;;False;{};gity3jq;False;t3_kujurp;False;True;t1_gittd34;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gity3jq/;1610380080;-12;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;We've reached a golden season. Almost every day starting today is a new episode of something I'm looking forward to. Many days have two or even three shows that I'm hyped for. This is our reward for sticking out an abysmal fall and shitty 2020.;False;False;;;;1610332975;;False;{};gity3uo;False;t3_kujurp;False;False;t1_gisbkjl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gity3uo/;1610380087;4;True;False;anime;t5_2qh22;;0;[]; -[];;;aryvd_0103;;;[];;;;text;t2_549u7prl;False;False;[];;They should have used Vogel I'm kafig., Or the unreleased ost.;False;False;;;;1610332989;;False;{};gity4ve;False;t3_kujurp;False;False;t1_gisanh2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gity4ve/;1610380106;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sinkies;;MAL;[];;http://myanimelist.net/animelist/KokoroZ;dark;text;t2_e2v04;False;False;[];;"The rumbling is 10x more dangerous than a nuke and could be activated by a single guy. If Grisha could steal the founding titan from King fritz, some evil organization could probably steal the founding titan easily too. Most of the higher up in paradise would probably use the founding titan to oppress the rest of the world once Eren die. - -US/UN constantly sanction North Korea to force them to denuclearize which causes millions of North Korean to die due to famine.";False;False;;;;1610332999;;False;{};gity5m4;False;t3_kujurp;False;True;t1_githtph;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gity5m4/;1610380120;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ultackerman;;;[];;;;text;t2_450lqodo;False;False;[];;"""I just keep moving forward until my enemies are destroyed."" - -FINALLY. The most awaited episode. Thank you so much MAPPA! The episode is excellent. - -The tension and build up is insane. Goosebumps. Even without action scenes, it keeps you on edge. Reiner and Eren scene. Willy's speech. Together with the OST, it's so perfect. The voice actors performances nailed it too! No one can stop Eren now. Willy declared war but Eren has already decided that if there's no future for Paradis then he will make one, he'll just keep moving forward. - -The war begins. Can't wait for the next episodes, it will be hell.";False;False;;;;1610333010;;False;{};gity6co;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gity6co/;1610380135;8;True;False;anime;t5_2qh22;;0;[]; -[];;;evan058311;;;[];;;;text;t2_vgwumie;False;False;[];;Holy fuck that line “same reason you did” and then immediately seeing the dread in reiners face as he realizes what eren meant, just fantastic;False;False;;;;1610333040;;False;{};gity8fl;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gity8fl/;1610380174;18;True;False;anime;t5_2qh22;;0;[]; -[];;;KaiserNazrin;;;[];;;dark;text;t2_h8zvz;False;False;[];;Considering the Founding Titan can control them, they probably don't have will of their own unlike Titan Shifter.;False;False;;;;1610333053;;False;{};gity9co;False;t3_kujurp;False;False;t1_gitnut1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gity9co/;1610380191;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Sharrakor;;MAL;[];;http://myanimelist.net/animelist/Sharrakor;dark;text;t2_4yz8q;False;False;[];;When Eren transformed to fight Annie in the forest I was *sure* the episode was going to end.;False;False;;;;1610333061;;False;{};gity9wc;False;t3_kujurp;False;True;t1_gitd48q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gity9wc/;1610380201;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;So it's the same type of person as Reiner;False;False;;;;1610333065;;False;{};gitya56;False;t3_kujurp;False;False;t1_gismdf0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitya56/;1610380206;7;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;I am no longer friends with the Titans. Levi is my new best friend.;False;False;;;;1610333071;;False;{};gityakg;False;t3_kujurp;False;False;t1_git8eqm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gityakg/;1610380214;14;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;the walls are made out of colossal titans, if they’re released then the world will be flattened;False;False;;;;1610333092;;False;{};gityc3t;False;t3_kujurp;False;True;t1_gitg2qq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gityc3t/;1610380243;1;True;False;anime;t5_2qh22;;0;[]; -[];;;funkerbuster;;;[];;;;text;t2_7mx1p;False;False;[];;Try to separate that brainwashing is not the same as memory inheritance. Only the founding titan is all about mind control, and Eren bypassed it by not being of royal blood.;False;False;;;;1610333094;;False;{};gityc6j;False;t3_kujurp;False;True;t1_gitwefo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gityc6j/;1610380245;1;True;False;anime;t5_2qh22;;0;[]; -[];;;V8_Only;;;[];;;;text;t2_5yjbt8wi;False;False;[];;Can anyone photoshop that last scene of eren changing with a let’s fucking go caption?;False;False;;;;1610333114;;False;{};gitydnq;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitydnq/;1610380273;4;True;False;anime;t5_2qh22;;0;[]; -[];;;PikachusAnalCavity;;;[];;;;text;t2_6kahtlla;False;False;[];;"It’s not revised it’s the true history, and in the end revealing it works in Marley’s benefit because now everyone is going to stop fighting each other temporarily to focus on Paradis. So doesn’t really make sense to kill him there and incite a bloodbath amongst everyone. - -Also Magath was one of the head in charge of the defense so I doubt he’d let a fellow Marleyan shoot Willy lol";False;False;;;;1610333154;;1610333390.0;{};gitygho;False;t3_kujurp;False;False;t1_git389f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitygho/;1610380328;11;False;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;Also he probably wants to use the disappearance of the threat in paradis island, if they can get rid of it, as a way of stopping some of the hate against the non paradisian Eldians around the world.;False;False;;;;1610333177;;False;{};gityi89;False;t3_kujurp;False;False;t1_gitu5ej;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gityi89/;1610380358;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;He ran out of shouting tho;False;False;;;;1610333181;;False;{};gityihi;False;t3_kujurp;False;True;t1_git6p6n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gityihi/;1610380363;1;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;he never really empathised with the islanders, more so explain how they weren’t as guilty as people make it out to be.;False;False;;;;1610333207;;False;{};gitykj2;False;t3_kujurp;False;True;t1_gith4uv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitykj2/;1610380401;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LittleWompRat;;;[];;;;text;t2_54bxq18h;False;False;[];;" ->tossing your money away - -And ironically, many of these people probably watch fansubs which don't give any money to Isayama or Mappa.";False;False;;;;1610333210;;False;{};gitykra;False;t3_kujurp;False;True;t1_gitqj7z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitykra/;1610380404;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SmartRaccoon3643;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;echidna cultist;dark;text;t2_7jtp3l74;False;False;[];;"Just found out through a coincidence on my twitter feed it is indeed not Armin but a new character, as we can see from this image. https://imgur.com/LPD4jpE -The voice actress for the person we saw is Mitsuki Saiga but Armin is voiced by Inoue Marina. -My mistake as well, it is a helmet strap.";False;False;;;;1610333286;;False;{};gityqdt;False;t3_kujurp;False;False;t1_gitx0nw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gityqdt/;1610380508;6;True;False;anime;t5_2qh22;;0;[]; -[];;;atgot;;;[];;;;text;t2_1uf2l6rh;False;False;[];;"Something I really liked about that scene is that it is actually a pararel to when Eren asked Historia to eat him. Hell, it even had King Fritz backstory being told. And also Eren saying he is the villain while Historia said she is humanity's enemy. -This episode was full of amazing callbacks and pararels, really shows how the series has developed.";False;False;;;;1610333290;;False;{};gityqox;False;t3_kujurp;False;True;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gityqox/;1610380514;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aryvd_0103;;;[];;;;text;t2_549u7prl;False;False;[];;I don't know man , I feel what Eren was trying to say and for me ,there is no divide , because all of them are the same and honestly, I think i understood Reiner and forgave him way to easily.;False;False;;;;1610333330;;False;{};gitytpn;False;t3_kujurp;False;True;t1_gischn4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitytpn/;1610380570;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610333351;;False;{};gityv6z;False;t3_kujurp;False;True;t1_gitgtnp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gityv6z/;1610380604;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;thiagohc;;;[];;;;text;t2_mbxv2;False;False;[];;I don't think it's him. My bet is that it is one of the children.;False;False;;;;1610333391;;False;{};gityy11;False;t3_kujurp;False;True;t1_gisftec;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gityy11/;1610380661;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NeonSignMissionaires;;;[];;;;text;t2_18felsdv;False;False;[];;"You're a dumbass. How do you think wars happen? Every combatant just lines up single file and go to a vast area where there are no ""civilians"", and just start blasting each other? Yeah, innocent people die - tough break. - -Eren is no saint, but he's still the most justifiable character in the entire series.";False;False;;;;1610333418;;False;{};gityzxm;False;t3_kujurp;False;True;t1_gity0do;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gityzxm/;1610380698;0;False;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;I'm hoping they're saving their budget for the next few episodes.;False;False;;;;1610333420;;False;{};gitz03r;False;t3_kujurp;False;False;t1_gity012;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitz03r/;1610380700;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;It just didnt fit the scene imo. Nothing more than that, I just didnt like it. The main problem is that people are treating this fact like I shot their mother in the back.;False;False;;;;1610333423;;False;{};gitz0az;False;t3_kujurp;False;True;t1_gitl54b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitz0az/;1610380705;4;True;False;anime;t5_2qh22;;0;[]; -[];;;aryvd_0103;;;[];;;;text;t2_549u7prl;False;False;[];;Well to be fair , him joining hands with Reiner was totally plausible. Both are titan shifters and both understand each other , so eren may just convince him to join hands. But he didn't do it . Because this tactic failed miserably for Reiner (although Eren didn't have any context at that time );False;False;;;;1610333466;;False;{};gitz3dc;False;t3_kujurp;False;False;t1_gisj9xn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitz3dc/;1610380771;13;True;False;anime;t5_2qh22;;0;[]; -[];;;TheEnergizer1985;;;[];;;;text;t2_do39o;False;False;[];;Well, it's a bad opinion.;False;False;;;;1610333491;;False;{};gitz54i;False;t3_kujurp;False;False;t1_gitxgq8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitz54i/;1610380811;12;True;False;anime;t5_2qh22;;0;[]; -[];;;TheStrictlySeries;;;[];;;;text;t2_7urup3f;False;False;[];;We think it’s Armin too. His hair looks somewhat similar to the new hairstyle we see in the key visual. Our guess is maybe he had a growth spurt after inheriting the Colossal Titan. Bertholdt was super tall too which could’ve been for the same reason.;False;False;;;;1610333495;;False;{};gitz5e2;False;t3_kujurp;False;False;t1_gisot5f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitz5e2/;1610380816;5;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;What a coinkedink, I've been wanting Reiner to disappear ever since the first time he cheated death in the series.;False;False;;;;1610333503;;False;{};gitz5wk;False;t3_kujurp;False;True;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitz5wk/;1610380825;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;Yeah I have literally no idea why that was there.;False;False;;;;1610333511;;False;{};gitz6i6;False;t3_kujurp;False;True;t1_gitip5o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitz6i6/;1610380837;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aryvd_0103;;;[];;;;text;t2_549u7prl;False;False;[];;"I thought people knew something was going to happen . Remember "" house infested with rats"" . And some remarks of the commander made it seem like they were expecting some sort of attack.";False;False;;;;1610333527;;False;{};gitz7lg;False;t3_kujurp;False;False;t1_gisiqhp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitz7lg/;1610380858;4;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"Whoa, tens of millions **Colossal** Titans formed the Walls? Can the Founding Titan create any type of titan it wants at will? - -Race traitor whose self-hate and inaction were responsible for literally all the shit that's happened in this series so far: **""Here and now, as representative of the Marleyan government I proclaim, to the enemy forces of Paradis - a declaration of war!""** - -Eren: **""Yorokonde!""** - -Seriously though, how stupid was the Tybur guy if his plan is ""Founding Titan is a world-ending doomsday nuke in the hands of an unstable dude who could blow up the world. Lets all go poke him!""";False;False;;;;1610333546;;1610334119.0;{};gitz8xk;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitz8xk/;1610380884;6;True;False;anime;t5_2qh22;;0;[]; -[];;;clikplay;;;[];;;;text;t2_db345;False;False;[];;"He would know that all they fought were normal titans (and some of the shifters) and of course he knows that the wall titans are pretty much colossal size and in a very higher number -The race against time would be applied only to marley as they are the ones about to lose a war -As eren says there has been 4 years since last season's time, during which a lot could've been done, even nothing was not possible that long ago, he could've easily hindered Willy's show and declaration, there's no evidence that the other countries would actually really help marley even after his speech let alone before";False;False;;;;1610333559;;False;{};gitz9yb;False;t3_kujurp;False;True;t1_gitx63o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitz9yb/;1610380906;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Eric_T_Meraki;;;[];;;;text;t2_745es03a;False;False;[];;They would also get access to control the giant titan's inside the wall as well right? Seems like a huge advantage for taking over the entire world.;False;False;;;;1610333567;;False;{};gitzah4;False;t3_kujurp;False;False;t1_giskpwg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitzah4/;1610380917;6;True;False;anime;t5_2qh22;;0;[]; -[];;;AegonVandelay;;;[];;;;text;t2_cdp3x;False;False;[];;Oh damn. That's a good point. I was amazed by how great the setup and fakeout was. The metaphor between the old man who hanged himself and Reiner being judged. Such good writing to have so many details come together.;False;False;;;;1610333595;;False;{};gitzck6;False;t3_kujurp;False;True;t1_gisz87c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitzck6/;1610380959;1;True;False;anime;t5_2qh22;;0;[]; -[];;;funkerbuster;;;[];;;;text;t2_7mx1p;False;False;[];;Kenny is surprised by Uri's kindness despite a fucked up society and wants the founding titan for himself to be like Uri.;False;False;;;;1610333609;;False;{};gitzdl0;False;t3_kujurp;False;False;t1_gitxonj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitzdl0/;1610380977;5;False;False;anime;t5_2qh22;;0;[]; -[];;;LonSik;;MAL;[];;https://myanimelist.net/profile/LonsdaleMax;dark;text;t2_hrhmz;False;False;[];;"> Boy do we miss those days. - -Nah. I like this Eren more.";False;False;;;;1610333633;;False;{};gitzf83;False;t3_kujurp;False;False;t1_giscvsy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitzf83/;1610381010;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;"Does the audience know it's what actually happened? Considering what they've been taught about the Eldians and the titan war they took Willy's story surprisingly well. I was sure there'd be grumblings and cries of ""traitor. He's with the devils!"". After all he flipped the believed narrative about the evil King Fritz on its head. - -As for him being shot, well any radical taking matters into their own hands could. Look at real history.";False;False;;;;1610333646;;False;{};gitzg5c;False;t3_kujurp;False;False;t1_gitygho;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitzg5c/;1610381027;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;No, no it hasn’t. Attack on Titan is a pretty unique series, so what’s makes it good doesn’t necessarily equally apply to other anime. I hear people say the same thing for FMAB, and I think it’s equally whack.;False;False;;;;1610333678;;False;{};gitzijy;False;t3_kujurp;False;True;t1_giti2y7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitzijy/;1610381076;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;In_a_silentway;;;[];;;;text;t2_n3mvw;False;False;[];;What King Fritz should of done was make all them unfertile. That way they can live in peace and no one can inherit his power.;False;False;;;;1610333681;;False;{};gitzis1;False;t3_kujurp;False;True;t1_giskx96;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitzis1/;1610381083;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Estelindis;;;[];;;;text;t2_95j08;False;False;[];;I think Eren believes in furthering his goal whether innocents die or not. That's why he said he was just like Reiner. He was simultaneously acknowledging the humanity of everyone and casting it aside.;False;False;;;;1610333687;;False;{};gitzj6w;False;t3_kujurp;False;False;t1_git27nn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitzj6w/;1610381091;11;True;False;anime;t5_2qh22;;0;[]; -[];;;THEGUYINTHEPICT;;;[];;;;text;t2_4059sf4r;False;False;[];;Finally. The declaration of war;False;False;;;;1610333721;;False;{};gitzlml;False;t3_kujurp;False;False;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitzlml/;1610381140;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Fish_Grillson;;;[];;;;text;t2_13q9y6;False;False;[];;"I feel like this is the moment where Falco is so badly hurt and Reiner already wants to die, so he gives him his titan to survive. But that would make the theory that Falco joins Eren obsolete. Which would be hard to imagine after this episode in the first place. - -The guy you tried to help by carrying his letters directly supported this planned out moment and he just slaughtered a bunch of innocent people. So im not sure where we are going with Falco considering he got so much screen time. Its hard to imagine he was just a tool for the letters or show that there are ""nice warriors"" that are not out for blood. Eren transforming right next to that poor kid either crushed him under that building or he is barely alive to be able to recieve the armored Titan, there is no other option IMO (how would he be able to transform to eat Reiner though?). Considering all things he will probably fight Eren for killing his beloved Reiner who just sacrificed himself.";False;False;;;;1610333744;;False;{};gitzn9v;False;t3_kujurp;False;False;t1_gisi1jl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitzn9v/;1610381170;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;"I dont understand why a small statement, ending with ""in my opinion"" deserves to be downvoted. What is the deal here?";False;False;;;;1610333747;;1610336183.0;{};gitznid;False;t3_kujurp;False;True;t1_gitgsn4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitznid/;1610381174;3;True;False;anime;t5_2qh22;;0;[]; -[];;;yaminoidles;;;[];;;;text;t2_64rsavk;False;False;[];;"1. Ymir's Titan did change albeit only slightly. Her teeth changed from human teeth to sharp razor teeth. Also her mindless form looked a bit more malnourished whereas her Jaw Titan was more ripped. - - A more accurate reason for why Ymir's Titan doesn't look like the Galliard brothers' Titans is because Isayama (the author of the manga) hadn't fully realised the idea of the 9 Titans. This is notable in the manga where Ymir's Titan was retconed to look different before and after consuming Marcel. Originally they both had sharp teeth and no notable change but in future chapters when depicting this scene in a flshback he used the new design. Also Isayama needed Reiner and Berthodlt to recognise her titan so the change couldn't be too drastic. - -2. Jaeger is probably a common surname. There's even a character named Moses Braun who died in the very first episode who has no relation to Reiner. - -3. They very likely dispose of them since they have served their purpose. - -EDIT: grammar";False;False;;;;1610333750;;1610336377.0;{};gitznpj;False;t3_kujurp;False;False;t1_gitx136;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitznpj/;1610381177;11;True;False;anime;t5_2qh22;;0;[]; -[];;;PushEmma;;MAL;[];;http://myanimelist.net/animelist/SleepingWolves;dark;text;t2_m6lcw;False;False;[];;That obviously wasn't Reiner's death.;False;False;;;;1610333780;;False;{};gitzpwq;False;t3_kujurp;False;False;t1_git8ul7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitzpwq/;1610381220;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Luckily enough I’ve seen two anime in the past 6 months or so which have had me shaking in an episode. But regardless, incredible stuff this episode;False;False;;;;1610333785;;False;{};gitzq8e;False;t3_kujurp;False;True;t1_gisv5pt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitzq8e/;1610381226;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Kureimi;;;[];;;;text;t2_13l673;False;False;[];;Niceee;False;False;;;;1610333805;;False;{};gitzrpb;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitzrpb/;1610381257;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Estelindis;;;[];;;;text;t2_95j08;False;False;[];;Completely agree. I think the two things that make Isayama top-tier are his empathy and his planning. The empathy is rooted in what you say, that each person in their own story's protagonist. And the planning lets him set up stunning moments where this is shown to devastating emotional effect.;False;False;;;;1610333815;;1610380745.0;{};gitzse8;False;t3_kujurp;False;False;t1_git6p9i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitzse8/;1610381271;6;True;False;anime;t5_2qh22;;0;[]; -[];;;LostInTime0;;;[];;;;text;t2_7b6yiw9z;False;False;[];;Now he is a chad hobo.;False;False;;;;1610333819;;False;{};gitzsmm;False;t3_kujurp;False;False;t1_giscvsy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitzsmm/;1610381275;14;True;False;anime;t5_2qh22;;0;[]; -[];;;GloinMyPimp;;;[];;;;text;t2_606gtsao;False;False;[];;"> There's nothing that says that he had to assassinate the dude at a crowded public event in a residential area. He's intentionally doing a terrorism. He's the moral equivalent of a dudes who blow up cars in public squares. - -Yes. And guess what? Terrorism can be justified. - -> specifically constructed a scenario to show that Erehh is a heartless enough piece of shit to blow up a building full of innocent people. - -Actually the entire story is specifically constructed to show you what lead Eren to this point and how he's developed as a person. This specific scenario was made to show that Eren will do anything to accomplish his goal. He is no longer hesitating like he did back in season 1. Whether or not you see him as a POS for his actions is on you, the author doesn't portray it thatway. - -> letting you know ahead of time that there is nothing anyone can say to justify his actions to me since, whatever his intentions are, he still chose to kill innocent people. - -That's because you're a moron who can't talk about why he actually believes what he believes.";False;False;;;;1610333836;;False;{};gitztvz;False;t3_kujurp;False;True;t1_gity0do;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitztvz/;1610381297;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TexhnolyzeAndKaiba;;;[];;;;text;t2_781er1nk;False;True;[];;"I seriously dig with swift response to a declaration of war. ""**BAD MOVE!** We're already here!""";False;False;;;;1610333842;;False;{};gitzucm;False;t3_kujurp;False;True;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitzucm/;1610381305;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ry7xsfo;;;[];;;;text;t2_7bmg6rri;False;False;[];;Yeah hype was real, glad that this episode is exploding;False;False;;;;1610333856;;False;{};gitzvd1;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitzvd1/;1610381326;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;I see thanks;False;False;;;;1610333884;;False;{};gitzx9u;False;t3_kujurp;False;True;t1_gitr8e6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitzx9u/;1610381360;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;Thx;False;False;;;;1610333908;;False;{};gitzz0d;False;t3_kujurp;False;True;t1_gitxxwh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitzz0d/;1610381392;2;True;False;anime;t5_2qh22;;0;[]; -[];;;centuryblessings;;;[];;;;text;t2_11n45g;False;False;[];;The episode was great. Even the music choice at the end wasn't that big a deal in light of how good the scenes between Eren and Reiner were.;False;False;;;;1610333940;;False;{};giu019d;False;t3_kujurp;False;False;t1_gisexhg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu019d/;1610381434;5;True;False;anime;t5_2qh22;;0;[]; -[];;;14MySterY-;;;[];;;;text;t2_b3n4y;False;False;[];;The Carla one was further back in AoT timeline because Eren was a toddler in that.;False;False;;;;1610333945;;False;{};giu01l5;False;t3_kujurp;False;False;t1_gitljl4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu01l5/;1610381442;5;True;False;anime;t5_2qh22;;0;[]; -[];;;In_a_silentway;;;[];;;;text;t2_n3mvw;False;False;[];;King Fritz was the only one with a conscious to inherit the fonder's power. What he should of done was end the Elderians.;False;False;;;;1610334009;;False;{};giu05yq;False;t3_kujurp;False;True;t1_gitg3q1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu05yq/;1610381532;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;16k in 8 hours meaning it's ahead of episode 1 by 2.5~k at this point. I have no clue how high it'll end up;False;False;;;;1610334014;;1610335195.0;{};giu06c0;False;t3_kujurp;False;True;t1_git3msn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu06c0/;1610381540;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iloveacademia;;;[];;;;text;t2_3m6fzg6c;False;False;[];;I’d prefer my opinion to be a cruel opinion;False;True;;comment score below threshold;;1610334033;;False;{};giu07ne;False;t3_kujurp;False;True;t1_gitz54i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu07ne/;1610381570;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;Rody2k6;;;[];;;;text;t2_b4bkv;False;False;[];;I totally thought Eren was gonna go the underground resistance route and show the Eldians in Marley that the real enemy is Marley and not the Eldians over at the island. But heck no I prefer this Eren lol. All he wants is revenge and to fuck shit up because his shit was fucked a ton in the past. Love it;False;False;;;;1610334057;;False;{};giu09b6;False;t3_kujurp;False;True;t1_gitx2vs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu09b6/;1610381603;3;True;False;anime;t5_2qh22;;0;[]; -[];;;midtharp;;;[];;;;text;t2_2tkeqy5s;False;False;[];;Cite your evidence!;False;False;;;;1610334070;;False;{};giu0a6c;False;t3_kujurp;False;False;t1_gitzpwq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu0a6c/;1610381619;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gravelord-_Nito;;;[];;;;text;t2_aulvp;False;True;[];;"Tybur: *declares war on Paradis and Eren Yeager* - -Eren: *Literally immediately assassinates the leader of the enemy army seconds after war is declared* - -any% world record speedrun of war";False;False;;;;1610334076;;False;{};giu0ak3;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu0ak3/;1610381629;17;True;False;anime;t5_2qh22;;0;[]; -[];;;honestlytbh;;;[];;;;text;t2_piqxa;False;False;[];;I'm not convinced tbh. Pieck's comments strongly suggest it's someone she's seen before, and the other Marleyan soldiers don't have that strap on their helmets. Assuming this VA is totally new to the series, among the people Pieck saw on Paradis, Armin is the one who's most likely to have had his voice changed due to acquiring the Colossal Titan (which would explain the growth spurt too). Could be wrong though.;False;False;;;;1610334078;;False;{};giu0aom;False;t3_kujurp;False;False;t1_gityqdt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu0aom/;1610381631;13;True;False;anime;t5_2qh22;;0;[]; -[];;;no_fluffies_please;;;[];;;;text;t2_np0kt;False;False;[];;"As an anime-only viewer, IMO not enough information has been revealed to accurately judge the characters. For example, was there an attempt from either side at diplomacy or peace? Was there an opportunity for de-escalation? Was there something miscommunicated or lost in translation? - -For example, if the Tyburs reached out and wanted peace but Eren just wanted to inflict equivalent suffering- that's on Eren. If Eren reached out and wanted peace, but the Tyburs wanted to maintain power and start a war- that's on them. If neither side wanted to negotiate- that's on both of them. No matter how you slice it, new information can make it appear that either one, both, or none are ""justified"". - -The only one I would give a pass to is Reiner- he wasn't the one who made the decision in anything, as he was just following orders and believed what he was told via another's greater design. Yet he's supposed to carry the burdens of the world for what he did at a young and impressionable age? Even though he showed empathy, remorse, unease, or suffering at every opportunity he had control over? He's what you get when you make a lawful-good guy do awful things that pit lawful against good.";False;False;;;;1610334093;;False;{};giu0bnt;False;t3_kujurp;False;False;t1_gisho83;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu0bnt/;1610381649;7;True;False;anime;t5_2qh22;;0;[]; -[];;;blueasian0682;;;[];;;;text;t2_1mq0q9k2;False;False;[];;I wish there was an option for that to counter anything below 10/10;False;False;;;;1610334116;;False;{};giu0d8d;False;t3_kujurp;False;True;t1_gitvtl6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu0d8d/;1610381684;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PushEmma;;MAL;[];;http://myanimelist.net/animelist/SleepingWolves;dark;text;t2_m6lcw;False;False;[];;But what would be the reason? I think its as likely it is just a coincidence with a cool shot. Without a parallel I see more differences than anything.;False;False;;;;1610334142;;False;{};giu0f0z;False;t3_kujurp;False;False;t1_gitaxas;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu0f0z/;1610381720;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Espada_6;;;[];;;;text;t2_sb5ghaa;False;False;[];;Did you miss the whole “secret leaders of Marley” thing;False;False;;;;1610334158;;False;{};giu0g3d;False;t3_kujurp;False;True;t1_gisbq0k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu0g3d/;1610381739;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TexhnolyzeAndKaiba;;;[];;;;text;t2_781er1nk;False;True;[];;I'm going to lose my mind next episode. It's going to be on par, if not better than, the Marleyan titan war episode.;False;False;;;;1610334161;;False;{};giu0gaf;False;t3_kujurp;False;True;t1_gisc2jv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu0gaf/;1610381743;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shotsfordrake;;MAL;[];;http://myanimelist.net/profile/shotsfordrake;dark;text;t2_g1gnf;False;False;[];;I fucking love this show;False;False;;;;1610334186;;False;{};giu0hzv;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu0hzv/;1610381776;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Rody2k6;;;[];;;;text;t2_b4bkv;False;False;[];;Yeah I think it's Armin also as a cold blooded killer like Eren has become.;False;False;;;;1610334196;;False;{};giu0in7;False;t3_kujurp;False;True;t1_gitxwkf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu0in7/;1610381788;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ravioli_Heicho;;;[];;;;text;t2_3bls5ou;False;False;[];;"[Manga Spoilers](/s ""Omnicide"")";False;False;;;;1610334247;;False;{};giu0m29;False;t3_kujurp;False;True;t1_gitxupp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu0m29/;1610381871;2;True;False;anime;t5_2qh22;;0;[]; -[];;;blueasian0682;;;[];;;;text;t2_1mq0q9k2;False;False;[];;STOP IN THE NAME OF THE LAW!!!! you're entering very dangerous spoiler territory here, just wait for your questions to be answered in the anime.;False;False;;;;1610334261;;False;{};giu0mzk;False;t3_kujurp;False;False;t1_gitwefo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu0mzk/;1610381891;6;True;False;anime;t5_2qh22;;0;[]; -[];;;mebert31415;;;[];;;;text;t2_x4trk;False;False;[];;Best episode yet imo.;False;False;;;;1610334264;;False;{};giu0n7j;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu0n7j/;1610381894;10;True;False;anime;t5_2qh22;;0;[]; -[];;;FlashMuse;;;[];;;;text;t2_avtyv;False;False;[];;[This is the OST we deserved.](https://www.youtube.com/watch?v=DcPk3xB1VsE);False;True;;comment score below threshold;;1610334285;;False;{};giu0onz;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu0onz/;1610381925;-18;True;False;anime;t5_2qh22;;0;[]; -[];;;SmartRaccoon3643;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;echidna cultist;dark;text;t2_7jtp3l74;False;False;[];;"You're probably right, i could be totally wrong here but then again looking back at this image https://imgur.com/DELPK6Y -we can see there are 13 scouts atop the roof of the building. Adding 5 ontop of the main cast (jean, hange, levi, sasha, connie, armin, jean, and mikasa). -This could be a new character with just a resemblance of Armin.";False;False;;;;1610334310;;False;{};giu0qc3;False;t3_kujurp;False;False;t1_giu0aom;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu0qc3/;1610381957;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;Looks like your prayers are working 👀;False;False;;;;1610334315;;False;{};giu0qo4;False;t3_kujurp;False;False;t1_gishm6l;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu0qo4/;1610381963;4;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;Yeah, I don't see how it's a good idea for him to wipe out all the high placed foreign politicals in that place though - it was only Marley that declared war at this point. But sounds from the preview that he's killing everyone.;False;False;;;;1610334326;;False;{};giu0rdi;False;t3_kujurp;False;False;t1_gitp04n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu0rdi/;1610381977;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;So far I still have S3P2 higher up than S4, but it’s also only been 5 episodes.;False;False;;;;1610334345;;False;{};giu0sni;False;t3_kujurp;False;False;t1_gisvou9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu0sni/;1610382004;5;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;Omg I thought that was just me. Yeah I kept wondering too if Willy is in cahoots with Eren or not.;False;False;;;;1610334358;;False;{};giu0tis;False;t3_kujurp;False;False;t1_gitozkj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu0tis/;1610382021;22;True;False;anime;t5_2qh22;;0;[]; -[];;;cashmerefox;;;[];;;;text;t2_unjpq;False;False;[];;I just realized how badly Eren saying “forget I said that” rattled Reiner. It shows Eren isn’t a hot headed little shit anymore... he’s completely in control and what he’s about to do is completely cold and calculated. I could visually see the chill run up Reiners spine.;False;False;;;;1610334368;;False;{};giu0u8g;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu0u8g/;1610382033;18;True;False;anime;t5_2qh22;;0;[]; -[];;;BolZac;;;[];;;;text;t2_6ydnca1o;False;False;[];;I think you read a different manga after chapter 100 then :/;False;False;;;;1610334414;;False;{};giu0xd5;False;t3_kujurp;False;False;t1_giscn9q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu0xd5/;1610382093;7;True;False;anime;t5_2qh22;;0;[]; -[];;;TexhnolyzeAndKaiba;;;[];;;;text;t2_781er1nk;False;True;[];;Dat piano music! It reminded me of the excellent piano music from Tokyo Ghoul.;False;False;;;;1610334420;;False;{};giu0xsn;False;t3_kujurp;False;False;t1_gisanh2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu0xsn/;1610382101;2;True;False;anime;t5_2qh22;;0;[]; -[];;;maliwanag0712;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/clear1109;light;text;t2_1461js;False;False;[];;It seems that the 20-25k karma for this episode is definitely achievable, given that by the time I comment this it's already at 16.5k (8 hours since the episode thread is posted). Maybe it will reach 25-30k for the next 24-48 hours. Let's see.;False;False;;;;1610334423;;1610335207.0;{};giu0xz2;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu0xz2/;1610382104;15;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"Yeah, it's not like he *continued* on that path or anything after learning the Paradisians weren't ""devils""! Oh wait....";False;False;;;;1610334424;;False;{};giu0y2p;False;t3_kujurp;False;True;t1_gism3vz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu0y2p/;1610382106;4;True;False;anime;t5_2qh22;;0;[]; -[];;;zeooss;;;[];;;;text;t2_42e41jhq;False;False;[];;There was no turning back the moment you killed my mom - Erenman;False;False;;;;1610334448;;False;{};giu0zp7;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu0zp7/;1610382137;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;"maybe I am just dumb but I did not like this version at all. Seemed much less suspenseful and destroys the silence of the moment - -And just fyi, this is my favorite theme in AOT. I listen it when I go to the gym every day";False;False;;;;1610334504;;1610335392.0;{};giu13ju;False;t3_kujurp;False;False;t1_giu0onz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu13ju/;1610382213;13;True;False;anime;t5_2qh22;;0;[]; -[];;;officialchourico;;;[];;;;text;t2_125w3v;False;False;[];;Because there hasn't been any apparent set-up for added complexity or any precedent for a twist. Reiner and Bertholdt's identites were obvious too, the twist itself wasn't the interesting part.;False;False;;;;1610334508;;False;{};giu13u4;False;t3_kujurp;False;True;t1_gitvaj2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu13u4/;1610382218;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BolZac;;;[];;;;text;t2_6ydnca1o;False;False;[];;Eren at this point understands almost everyone's side but he doesnt have any choice. It's kill or be killed after that declaration. He definately feels pity for the innocent but he cares more about his home.;False;False;;;;1610334520;;False;{};giu14m2;False;t3_kujurp;False;False;t1_gisk3tf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu14m2/;1610382235;7;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"I don't see how murdering hundreds of innocent people just to make a dramatic entrance is ""morally grey"".";False;False;;;;1610334538;;False;{};giu15sk;False;t3_kujurp;False;True;t1_git2e9y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu15sk/;1610382258;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TexhnolyzeAndKaiba;;;[];;;;text;t2_781er1nk;False;True;[];;"[Spoiler](/s ""People have no idea."") - -[^""Hype!""](https://tse3.mm.bing.net/th?id=OIP.jnEkC_t1yBq1pcOMlajCdQHaHa&pid=Api)";False;False;;;;1610334539;;False;{};giu15tq;False;t3_kujurp;False;True;t1_gise5ad;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu15tq/;1610382258;0;True;False;anime;t5_2qh22;;0;[]; -[];;;BolZac;;;[];;;;text;t2_6ydnca1o;False;False;[];;he needs TITAN royal blood\* this detail is important;False;False;;;;1610334587;;False;{};giu190o;False;t3_kujurp;False;False;t1_git8g73;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu190o/;1610382319;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PushEmma;;MAL;[];;http://myanimelist.net/animelist/SleepingWolves;dark;text;t2_m6lcw;False;False;[];;Not all great stories need this, but its very good to see.;False;False;;;;1610334614;;False;{};giu1asu;False;t3_kujurp;False;False;t1_git6p9i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1asu/;1610382352;16;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610334631;;False;{};giu1c0r;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1c0r/;1610382374;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;"darkest=best? - -This is dark as it is and it gets dark as hell in the coming episodes. I do not know if making it darker would mean retaining a semblance of realism";False;False;;;;1610334641;;False;{};giu1cnc;False;t3_kujurp;False;True;t1_gitwu73;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1cnc/;1610382387;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;opening your deviantart account from when you were 13;False;False;;;;1610334664;;False;{};giu1e7x;False;t3_kujurp;False;False;t1_gisg5pr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1e7x/;1610382418;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Orange5151;;;[];;;;text;t2_grs4v;False;False;[];;Peace was never an option;False;False;;;;1610334716;;False;{};giu1hnc;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1hnc/;1610382484;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AustinM1617;;;[];;;;text;t2_5o4sy1oe;False;False;[];;Me too, and Reiner try’s to protect Falco.;False;False;;;;1610334720;;False;{};giu1hy9;False;t3_kujurp;False;True;t1_gito6qg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1hy9/;1610382489;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Espada_6;;;[];;;;text;t2_sb5ghaa;False;False;[];;There doesn’t really need to be a reason. Just a call back to a cool scene from earlier in the series;False;False;;;;1610334727;;False;{};giu1iez;False;t3_kujurp;False;True;t1_giu0f0z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1iez/;1610382497;1;True;False;anime;t5_2qh22;;0;[]; -[];;;uncen5ored;;;[];;;;text;t2_800mwmv;False;False;[];;Yes, this moment in the manga is what made it my favorite story. I never READ something that had me on the edge of my seat like this. I’m really happy to see the anime do it justice, making other people feel the same;False;False;;;;1610334732;;False;{};giu1ipy;False;t3_kujurp;False;False;t1_gitvtl6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1ipy/;1610382503;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ma103;;;[];;;;text;t2_icj74;False;False;[];;These people need to move on from the godly animation and otherworldly OST from S1 and S2. That said, MAPPA has been doing an excellent job so far.;False;False;;;;1610334740;;False;{};giu1j7e;False;t3_kujurp;False;True;t1_gits62o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1j7e/;1610382513;0;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;All the rage and hatred has solidified and caramelized into a tranquil fury and bitterness;False;False;;;;1610334749;;False;{};giu1jsd;False;t3_kujurp;False;False;t1_gisepu3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1jsd/;1610382524;7;True;False;anime;t5_2qh22;;0;[]; -[];;;yolo_swag_for_satan;;;[];;;;text;t2_2aloc4yu;False;False;[];;"> How do you think wars happen? Every combatant just lines up single file and go to a vast area where there are no ""civilians"", and just start blasting each other? - -Record scratch- are you literally not familiar with the concept of ""war crimes""? Google it. It's interesting. Check out ethics and humanism after that.";False;False;;;;1610334762;;False;{};giu1kn9;False;t3_kujurp;False;False;t1_gityzxm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1kn9/;1610382542;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;No, the first to die were the hundreds of civilians in the building.;False;False;;;;1610334763;;False;{};giu1kq7;False;t3_kujurp;False;False;t1_gisd9sy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1kq7/;1610382543;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Kmattmebro;;;[];;;;text;t2_gvxts;False;False;[];;And that's the tragedy. You have two groups of otherwise normal people trapped in a conflict of extermination. Only someone truly Arminpilled could talk their way out of generations of racism at the brink of war.;False;False;;;;1610334777;;False;{};giu1lmh;False;t3_kujurp;False;False;t1_gittaka;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1lmh/;1610382562;66;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;"“B-but Promised Neverland and Re:Zero are gonna pop off too, and Jujutsu Kaisen was really dope even with all the delays last seaso- - -**ANIME IS SAVED**";False;False;;;;1610334783;;False;{};giu1m0k;False;t3_kujurp;False;False;t1_gisafev;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1m0k/;1610382569;5;True;False;anime;t5_2qh22;;0;[]; -[];;;yolo_swag_for_satan;;;[];;;;text;t2_2aloc4yu;False;False;[];;"> Yes. And guess what? Terrorism can be justified. - -Ok, bye sis.";False;False;;;;1610334784;;False;{};giu1m2i;False;t3_kujurp;False;True;t1_gitztvz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1m2i/;1610382570;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;Wait what? There’s a difference? So he can only get it from zeke?;False;False;;;;1610334786;;False;{};giu1m8e;False;t3_kujurp;False;True;t1_giu190o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1m8e/;1610382574;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Positive_Magician_52;;;[];;;;text;t2_4sz9duif;False;False;[];;\- Isayama, probably.;False;False;;;;1610334795;;False;{};giu1mvp;False;t3_kujurp;False;True;t1_giseics;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1mvp/;1610382586;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PushEmma;;MAL;[];;http://myanimelist.net/animelist/SleepingWolves;dark;text;t2_m6lcw;False;False;[];;Watched many of these. I wasn't even a mega fan from SNK from season 1, but right now I say none of those touch SNK at all. It simply is above any series I have seen.;False;False;;;;1610334865;;False;{};giu1rcm;False;t3_kujurp;False;False;t1_gitjvji;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1rcm/;1610382674;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Green_elite;;;[];;;;text;t2_13ytjea8;False;False;[];;This entire exchange is way funnier than it should be to me.;False;False;;;;1610334882;;False;{};giu1sh8;False;t3_kujurp;False;False;t1_gitkvns;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1sh8/;1610382698;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Tigre3;;;[];;;;text;t2_2n0k3z7c;False;False;[];;Am i the only one who thinks there’s no way Willy Tybur dies here? I mean they spent a lot of time giving him plot and layer to the upcoming events, I don’t think he’s going out this easy;False;False;;;;1610334884;;False;{};giu1sn1;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1sn1/;1610382700;11;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;The revelation is that they are **Colossal** Titans.;False;False;;;;1610334889;;False;{};giu1syn;False;t3_kujurp;False;False;t1_giszndf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1syn/;1610382707;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;That was done beautifully. Now I want someone to photoshop Eren as Emilia;False;False;;;;1610334903;;False;{};giu1tvg;False;t3_kujurp;False;True;t1_gitlupj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1tvg/;1610382724;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;Colossal Titan was at least a head higher than the walls. Are they all crouching or something?;False;False;;;;1610334924;;False;{};giu1v9w;False;t3_kujurp;False;False;t1_giti4xc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1v9w/;1610382753;36;True;False;anime;t5_2qh22;;0;[]; -[];;;slowdrem20;;;[];;;;text;t2_c7n2y;False;False;[];;Marleyans haven’t encountered someone from paradis ever in their lifetimes. I think it’s a reach for them to really think that Paradis is a genocidal or regime that’s killed no one...;False;False;;;;1610334926;;False;{};giu1vd0;False;t3_kujurp;False;True;t1_gitnl90;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1vd0/;1610382754;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PushEmma;;MAL;[];;http://myanimelist.net/animelist/SleepingWolves;dark;text;t2_m6lcw;False;False;[];;... No other work of fiction;False;False;;;;1610334931;;False;{};giu1vpy;False;t3_kujurp;False;True;t1_gisnxpk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1vpy/;1610382763;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sh14w4s3;;;[];;;;text;t2_784hz4ad;False;False;[];;"""SHUT UP. SHUT THE FUCK UP WILLY. SHUT YOUR FUCKING MOUTH.""";False;False;;;;1610334932;;False;{};giu1vsg;False;t3_kujurp;False;False;t1_gisbtzy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1vsg/;1610382764;8;True;False;anime;t5_2qh22;;0;[]; -[];;;OhMilla;;;[];;;;text;t2_84kkn;False;False;[];;I unfortunately have a different opinion :/;False;False;;;;1610334936;;False;{};giu1w00;False;t3_kujurp;False;True;t1_giu0xd5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1w00/;1610382769;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;Lmao what is that;False;False;;;;1610334948;;False;{};giu1wsx;False;t3_kujurp;False;False;t1_gisyn7m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1wsx/;1610382786;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Frakshaw;;HB;[];;https://kitsu.io/users/Reege/library;dark;text;t2_a4jhc;False;False;[];;"> Also, the soldier than Pieck was suspicious of...is that one of our original team? I was thinking Armin but he seems way too tall. Although with his newfound Titan ability...can he alter his height? Hmmm. - -I rewatched the battle of Shiganshina and there's no way Pieck (cart titan) could recognize Armin. The only time she was present was after Armin was seared to the brink of death, but she did see everyone else alive from the scouts.";False;False;;;;1610334965;;False;{};giu1xzm;False;t3_kujurp;False;True;t1_gisf53y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1xzm/;1610382816;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;"Every time you ask ""is this intentional"" on AoT most of the times the answer is ""yes""";False;False;;;;1610334973;;False;{};giu1yld;False;t3_kujurp;False;True;t1_gismf1p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1yld/;1610382829;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Espada_6;;;[];;;;text;t2_sb5ghaa;False;False;[];;It’s literally in the comment;False;False;;;;1610334988;;False;{};giu1zhr;False;t3_kujurp;False;False;t1_git17ge;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu1zhr/;1610382850;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;So he determined that he needs to poke the bear that can wipe it out? How does that make any sense?;False;False;;;;1610335021;;False;{};giu21ph;False;t3_kujurp;False;False;t1_gitsq98;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu21ph/;1610382895;4;True;False;anime;t5_2qh22;;0;[]; -[];;;sero-zan;;;[];;;;text;t2_3dgjbx;False;False;[];;honestly all you did by putting that in spoiler tags was make it impossible for mobile users to respond to you;False;False;;;;1610335061;;False;{};giu24dz;False;t3_kujurp;False;False;t1_gisfo09;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu24dz/;1610382943;4;True;False;anime;t5_2qh22;;0;[]; -[];;;honestlytbh;;;[];;;;text;t2_piqxa;False;False;[];;Ah ok, that image is more convincing actually. Still seems like fake beard and someone Pieck knows, but probably not Armin.;False;False;;;;1610335072;;False;{};giu2536;False;t3_kujurp;False;False;t1_giu0qc3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2536/;1610382957;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Positive_Magician_52;;;[];;;;text;t2_4sz9duif;False;False;[];;Historia too.;False;False;;;;1610335073;;False;{};giu256e;False;t3_kujurp;False;True;t1_giu1m8e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu256e/;1610382958;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Fuck man I waited 2 weeks for just two minutes??? Come on MAPPA step it up!;False;False;;;;1610335079;;False;{};giu25k6;False;t3_kujurp;False;False;t1_gisvvoe;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu25k6/;1610382966;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Not-Phun;;;[];;;;text;t2_6az7p59c;False;False;[];;This is why you dont talk to strangers Falco;False;False;;;;1610335088;;False;{};giu266g;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu266g/;1610382979;13;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;Helping a vet meet with his old friend! (GONE WRONG?!) (NOT SEXUAL);False;False;;;;1610335092;;False;{};giu26fv;False;t3_kujurp;False;False;t1_gisbgr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu26fv/;1610382984;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Featherwick;;;[];;;;text;t2_dlek2;False;False;[];;Pretty sure it's 1, the Tyburs don't tell people in the military anything before now. General Magath did not know the story of Helos being fake before Tybur told him for example.;False;False;;;;1610335099;;False;{};giu26x4;False;t3_kujurp;False;True;t1_gisjnrv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu26x4/;1610382993;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;Gold 🏅;False;False;;;;1610335099;;False;{};giu26x8;False;t3_kujurp;False;True;t1_git20lu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu26x8/;1610382993;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"""For a long time I thought everyone across the sea was my enemy. Then I came here and saw that they're normal people. But yeah, I'm still gonna kill them all.""";False;False;;;;1610335130;;False;{};giu2931;False;t3_kujurp;False;False;t1_gisrns1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2931/;1610383038;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;I’m sorry but howsm’t the fuck can someone be disappointed by the basement reveal?!?;False;False;;;;1610335143;;False;{};giu29xo;False;t3_kujurp;False;True;t1_gisg7bk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu29xo/;1610383059;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;any% speedrun;False;False;;;;1610335156;;False;{};giu2asf;False;t3_kujurp;False;True;t1_gisch0n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2asf/;1610383074;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PushEmma;;MAL;[];;http://myanimelist.net/animelist/SleepingWolves;dark;text;t2_m6lcw;False;False;[];;Your answer, for now at least, is you can look asian ish but not being asian.;False;False;;;;1610335169;;False;{};giu2bod;False;t3_kujurp;False;False;t1_gitkqrn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2bod/;1610383096;7;True;False;anime;t5_2qh22;;0;[]; -[];;;GrimMind;;;[];;;;text;t2_5s3q5;False;False;[];;"I mean, I agree with your sentiment. But that is precisely why she is well written. - -Also, the hate might just be getting started.";False;False;;;;1610335170;;False;{};giu2bsa;False;t3_kujurp;False;False;t1_gitg3lp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2bsa/;1610383099;17;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;He said Titan royal blood, can historia get it without being a Titan or did he mean fritz bloodline;False;False;;;;1610335173;;False;{};giu2c0k;False;t3_kujurp;False;True;t1_giu256e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2c0k/;1610383102;3;True;False;anime;t5_2qh22;;0;[]; -[];;;yolo_swag_for_satan;;;[];;;;text;t2_2aloc4yu;False;False;[];;"> Yea I feel you. It's nice to hear that someone else experiences this problem. I'm genuinely concerned that the thirst for moral ambiguity in fiction being a problem of which people extract to real life. - -This is EXACTLY my main issue with it. This is just a cartoon but it's personally disturbing to see people fall into this line of reasoning even when it's just fiction. - -And I feel like a lot of nuance in series gets glossed over, especially online. Like, your comment was one of only ones I found that was actually critical. Both in the sense of actually analyzing the show and in disapproving of what Eren's doing.";False;False;;;;1610335175;;False;{};giu2c52;False;t3_kujurp;False;True;t1_gitx200;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2c52/;1610383106;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;It’s not really a tournament arc when it’s just one series flexing on everyone lol;False;False;;;;1610335201;;False;{};giu2dvm;False;t3_kujurp;False;True;t1_gisutvw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2dvm/;1610383145;3;True;False;anime;t5_2qh22;;0;[]; -[];;;gril69;;;[];;;;text;t2_jff04;False;False;[];;falco the 3rd impostor;False;False;;;;1610335237;;False;{};giu2ga4;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2ga4/;1610383197;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jephersyn;;;[];;;;text;t2_vrc8f5o;False;False;[];;Lol he dead;False;False;;;;1610335249;;False;{};giu2h1o;False;t3_kujurp;False;False;t1_giu1sn1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2h1o/;1610383214;5;True;False;anime;t5_2qh22;;0;[]; -[];;;GloinMyPimp;;;[];;;;text;t2_606gtsao;False;False;[];;If you can't think up a scenario where it could be then you're a fucking moron that isn't worth talking to anyways.;False;False;;;;1610335254;;False;{};giu2hf2;False;t3_kujurp;False;True;t1_giu1m2i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2hf2/;1610383223;0;True;False;anime;t5_2qh22;;0;[]; -[];;;exozaln;;;[];;;;text;t2_x135v;False;False;[];;It's okay but doesn't completely fit the atmosphere;False;False;;;;1610335285;;False;{};giu2jkw;False;t3_kujurp;False;True;t1_giu0onz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2jkw/;1610383271;1;True;False;anime;t5_2qh22;;0;[]; -[];;;slowdrem20;;;[];;;;text;t2_c7n2y;False;False;[];;They’ve been supporting the extinction of Paradis long before this declaration of war. I will not give someone the excuse, “oh I fell for propaganda.” Trump supporters are still being jailed for storming the capital because at the end of the day you are responsible for your own actions. There is almost nothing in this world that can justify wishing for the extinction of another race. Especially if it’s a race of people you haven’t ever encountered in your lifetimes. How can I wish death upon people I’ve never met, my grandparents have never met and etc? They’ve literally had 0 effect on your life and yet you’re celebrating their extinction.;False;False;;;;1610335302;;False;{};giu2ksu;False;t3_kujurp;False;True;t1_gitlq48;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2ksu/;1610383296;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Again that same trailer music, I am sick and tired of this ost.;False;False;;;;1610335313;;False;{};giu2ljj;False;t3_kujurp;False;False;t1_giu0onz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2ljj/;1610383313;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Redo-Master;;;[];;;;text;t2_7yfxxyjj;False;False;[];;Most episodes from now on will be record breaking.;False;False;;;;1610335336;;False;{};giu2n5f;False;t3_kujurp;False;True;t1_gittczk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2n5f/;1610383344;2;True;False;anime;t5_2qh22;;0;[]; -[];;;swordmalice;;MAL;[];;http://myanimelist.net/animelist/swordmalice;dark;text;t2_doqci;False;False;[];;"I was shaking the entire time during Tybur's speech and Eren and Reiner's talk. The tension was so thick; in my mind I thought I knew where things were going up until the *second I saw the lightning from Eren's hand* and then I went ""OH SHIT"". I have so many theories about what's going down now but I have to keep them to myself for now and it's tearing me up so bad. - -Manga readers were right. Us anime-onllines were NOT ready for this. Holy. Shit.";False;False;;;;1610335343;;False;{};giu2nni;False;t3_kujurp;False;True;t1_gisc1bn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2nni/;1610383355;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;"“Sind Sie das Essen?” - -“Nein, wir sind der Jäger!” - -That’s the first line of the first opening of the series!!! Fucking hell Isayama you’ve made something for the ages here";False;False;;;;1610335377;;False;{};giu2q0q;False;t3_kujurp;False;True;t1_git0ik2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2q0q/;1610383399;1;True;False;anime;t5_2qh22;;0;[]; -[];;;arafatnabi;;;[];;;;text;t2_ghvya;False;False;[];;I think Eren mercy killed Reiner. He forgave him as the judgement thats why killed him so he wont have to endure this any longer.;False;False;;;;1610335380;;False;{};giu2q8a;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2q8a/;1610383403;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Positive_Magician_52;;;[];;;;text;t2_4sz9duif;False;False;[];;Guys guys, am I the only one who thought it was actually ARMIN who was leading the warrior candidates away from the stage??? That can also be why the Cart Titan (Pieck) remembers him, she has been on the island. Can this be Armin pulling off his 200 IQ moves.. Anime only here btw.;False;False;;;;1610335390;;False;{};giu2qxd;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2qxd/;1610383416;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;"We need a shounen manga about english teachers. - -""Oho I was expecting that plot twist! Your foreshadowing came to be the reason of your fall!""";False;False;;;;1610335392;;False;{};giu2r1q;False;t3_kujurp;False;False;t1_gittljc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2r1q/;1610383418;18;True;False;anime;t5_2qh22;;0;[]; -[];;;turdfergusn;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/julzachu/;light;text;t2_n69js;False;False;[];;I liked the OST they used but the only thing that I think could have worked better is a version of Eren Zahyo (my faaaavorite ost);False;False;;;;1610335403;;False;{};giu2rs3;False;t3_kujurp;False;True;t1_gisanh2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2rs3/;1610383432;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Espada_6;;;[];;;;text;t2_sb5ghaa;False;False;[];;I know you’re joking but they have to include that disclaimer in every episode;False;False;;;;1610335416;;False;{};giu2spm;False;t3_kujurp;False;True;t1_giswxpp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2spm/;1610383449;0;True;False;anime;t5_2qh22;;0;[]; -[];;;lacking-name;;;[];;;;text;t2_hyec8wa;False;False;[];;"These 20 minute episode go by way too quickly. So far this season exceeds my expectations substantially. I can't wait for the next episode! - -Eren Yeager is becoming my favorite anime protagonist real fast.";False;False;;;;1610335427;;False;{};giu2thw;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2thw/;1610383464;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610335464;;1610343940.0;{};giu2w3x;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2w3x/;1610383520;2;False;False;anime;t5_2qh22;;0;[]; -[];;;fullofregrets2009;;;[];;;;text;t2_2f8kpqge;False;False;[];;"I don’t know how I feel about this side of Eren, I thought after four years, he would sympathize a little more, and he did, he sounded like he did, but now he’s killing innocent people who weren’t going to even be involved in the war against them. Now he literally has become the villain of the story, as soon as he killed innocent people for pretty much no reason. - -Please don’t hate on me, I love this show.";False;False;;;;1610335467;;False;{};giu2wb3;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2wb3/;1610383524;19;True;False;anime;t5_2qh22;;0;[]; -[];;;ma103;;;[];;;;text;t2_icj74;False;False;[];;"?? - -Promised Neverland adaptation was as faithful as you can get";False;False;;;;1610335477;;False;{};giu2x0w;False;t3_kujurp;False;True;t1_git89ug;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2x0w/;1610383538;1;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;I have a couple friends who were disappointed. They either felt underwhelmed because they thought it wasn't worth the 5-year hype, or they were expecting something different.;False;False;;;;1610335478;;False;{};giu2x3e;False;t3_kujurp;False;False;t1_giu29xo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2x3e/;1610383539;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;Yeah, but having a few nutcrack sadists in high military isn't exactly unrealistic.;False;False;;;;1610335486;;False;{};giu2xmm;False;t3_kujurp;False;False;t1_gitihz8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2xmm/;1610383550;7;True;False;anime;t5_2qh22;;0;[]; -[];;;swordmalice;;MAL;[];;http://myanimelist.net/animelist/swordmalice;dark;text;t2_doqci;False;False;[];;"Eren's attack now puts an even more extreme, melancholic and morally grey twinge on his quest for revenge now. The people responsible for his trauma are no different than he was; ignorant of the truth of the world, scared of the Titans. And now, even knowing that he is doing this to Eldian and Marleyans alike, I can't even imagine his emotional state after all that's happened. This is God-Tier storytelling and character development. Bravo, Iseyama-san. Bravo.";False;False;;;;1610335505;;False;{};giu2z0c;False;t3_kujurp;False;True;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2z0c/;1610383577;2;True;False;anime;t5_2qh22;;0;[]; -[];;;000TragicSolitude;;;[];;;;text;t2_12c5bk;False;False;[];;"> I will keep moving forward. - -Eren Yaeger will never compromise, not even in the face of Armageddon ... that he will bring about himself right about now. Welp.";False;False;;;;1610335516;;False;{};giu2zsp;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu2zsp/;1610383593;9;False;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;"Do we know how Grisha managed to get the Founding Titan? I kinda forgot - -Attack Titan and Founding Titan are different right, just that they're now in the same person?";False;False;;;;1610335536;;1610336600.0;{};giu314y;False;t3_kujurp;False;False;t1_gism93w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu314y/;1610383622;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ArjunSudheer001;;;[];;;;text;t2_3b5wpo6e;False;False;[];;First time here. But i remember the last time I was shaking from watching something. That Day from S3P2;False;False;;;;1610335555;;False;{};giu32h8;False;t3_kujurp;False;True;t1_gisv5pt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu32h8/;1610383647;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Taurus24Silver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Taurus-Silver;light;text;t2_826uaxw;False;False;[];;"I have watched the episode 3 times already - - -Somebody help me - - -The hype is too much for me to handle";False;False;;;;1610335557;;False;{};giu32ks;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu32ks/;1610383649;18;True;False;anime;t5_2qh22;;0;[]; -[];;;MrJAppleseed;;;[];;;;text;t2_fj1en;False;False;[];;Eh, in this case, *The seems pretty appropriate. Defeating the Marleyans is basically the same as saving the world.;False;False;;;;1610335561;;False;{};giu32u6;False;t3_kujurp;False;True;t1_git4ut5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu32u6/;1610383654;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThoricMeerkat;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Thoric;light;text;t2_njjo0;False;False;[];;"The OST this season is absolutely outstanding, I consistently catch myself watching scenes twice because I want to hear the score again. -It accompanies the crescendos of the show and brings you for a ride like you're on a fucking rollercoaster.";False;False;;;;1610335567;;False;{};giu336h;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu336h/;1610383661;9;True;False;anime;t5_2qh22;;0;[]; -[];;;artymcparty;;;[];;;;text;t2_yzm3a;False;False;[];;I don’t think the manga community is toxic except when it comes to one character in particular. Most are loving the latest chapters unliked game of thrones which changed everything in like one episode and was terribly rushed it was a build up and no matter what happens it will be satisfying;False;False;;;;1610335571;;False;{};giu33g0;False;t3_kujurp;False;True;t1_gisitv8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu33g0/;1610383667;3;True;False;anime;t5_2qh22;;0;[]; -[];;;swordmalice;;MAL;[];;http://myanimelist.net/animelist/swordmalice;dark;text;t2_doqci;False;False;[];;I was literally shaking the entire time.;False;False;;;;1610335604;;False;{};giu35n6;False;t3_kujurp;False;False;t1_giscpr1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu35n6/;1610383712;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;"Lmao yesterday I read a post about some guy thinking UBW ended on a cliffhanger. - -Poor mf didn't know about UBW Season 2 lol.";False;False;;;;1610335608;;False;{};giu35xt;False;t3_kujurp;False;False;t1_gist47y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu35xt/;1610383718;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;lol;False;False;;;;1610335613;;False;{};giu368o;False;t3_kujurp;False;True;t1_giu2x3e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu368o/;1610383725;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Davidfreeze;;;[];;;;text;t2_chijx;False;False;[];;Exactly. Even during the exposition dump episode where we find out about the original Ymir, it’s made clear it’s impossible to know which version of the story is true. Are they devils or gods? It doesn’t matter cuz you can’t know. You can’t just sit down and talk this war out. It’s so deeply engrained in cultural memory on both sides and the truth is impossible to access. All that’s left to do is end it. And you can’t feel like either side is the “bad” or wrong one. Both have done horrible things in the past.;False;False;;;;1610335625;;False;{};giu373i;False;t3_kujurp;False;False;t1_gishl8w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu373i/;1610383741;6;True;False;anime;t5_2qh22;;0;[]; -[];;;disposable202;;;[];;;;text;t2_3595mwpa;False;False;[];;Which subs did you watch that had that translation? Mine was slightly different.;False;False;;;;1610335634;;False;{};giu37pm;False;t3_kujurp;False;True;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu37pm/;1610383755;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaurav_098;;;[];;;;text;t2_70s2u5yb;False;False;[];;This is my greatest episode of Aot followed by Probably hero or perfect game;False;False;;;;1610335638;;False;{};giu3808;False;t3_kujurp;False;True;t1_gitohjp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3808/;1610383761;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bios1023;;;[];;;;text;t2_11hqwg;False;False;[];;Just keep moving forward;False;False;;;;1610335659;;False;{};giu39h5;False;t3_kujurp;False;False;t1_giu32ks;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu39h5/;1610383791;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;They're the same people who thought Caesar was DIO lmao;False;False;;;;1610335670;;False;{};giu3a5i;False;t3_kujurp;False;False;t1_gitiavj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3a5i/;1610383805;10;True;False;anime;t5_2qh22;;0;[]; -[];;;artymcparty;;;[];;;;text;t2_yzm3a;False;False;[];;Clannad is great but the first part was really boring unless you like shoujo, part 2 is when it becomes a really good drama.;False;False;;;;1610335670;;False;{};giu3a5w;False;t3_kujurp;False;True;t1_gitjvji;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3a5w/;1610383805;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610335709;;False;{};giu3cuj;False;t3_kujurp;False;True;t1_giu2w3x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3cuj/;1610383856;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Taurus24Silver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Taurus-Silver;light;text;t2_826uaxw;False;False;[];;"Yeah, this is just my personal list man - -AOT must hit a perfect ending to become the GOAT anime - -Code geass ending was absolutely 10/10 and I suspect that AOT will top it soon";False;False;;;;1610335710;;False;{};giu3cvc;False;t3_kujurp;False;False;t1_giu1rcm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3cvc/;1610383856;3;True;False;anime;t5_2qh22;;0;[]; -[];;;swordmalice;;MAL;[];;http://myanimelist.net/animelist/swordmalice;dark;text;t2_doqci;False;False;[];;And the Braun in his name stands for the color of his pants after today's episode!;False;False;;;;1610335721;;False;{};giu3do4;False;t3_kujurp;False;False;t1_gisl84r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3do4/;1610383874;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Elaego;;;[];;;;text;t2_55zd6hhb;False;False;[];;Most people living now have never encountered a Nazi but we believe they were genocidal. There are such things as history books, which are usually trusted.;False;False;;;;1610335728;;False;{};giu3e3a;False;t3_kujurp;False;False;t1_giu1vd0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3e3a/;1610383883;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hartman_;;;[];;;;text;t2_7bp19;False;False;[];;You are exactly right. People are gonna say he had no choice but that is what this show is about. Ending the cycle of violence when it seems there is no other choice but violence. It's not about who is right or wrong, hurting innocent people should never be an option.;False;False;;;;1610335735;;False;{};giu3ekl;False;t3_kujurp;False;True;t1_giu2wb3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3ekl/;1610383893;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;"Don't worry. The moral conundrums that are going through your head right now are exactly what manga readers went through at the time the chapters were released. - -He's essentially become what Reiner was in S1, just older, more mature, and more aware of the consequences of his actions.";False;False;;;;1610335747;;False;{};giu3fbm;False;t3_kujurp;False;False;t1_giu2wb3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3fbm/;1610383907;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Taurus24Silver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Taurus-Silver;light;text;t2_826uaxw;False;False;[];;After Story is my second favorite romance anime ever;False;False;;;;1610335749;;False;{};giu3fgt;False;t3_kujurp;False;True;t1_giu3a5w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3fgt/;1610383910;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SleepingwithHistoria;;;[];;;;text;t2_8gjvnphq;False;False;[];;"Let’s bring this to the top bois - -https://www.imdb.com/title/tt13605714/?ref_=adv_li_tt";False;False;;;;1610335765;;False;{};giu3gmy;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3gmy/;1610383932;4;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;I've watched it two times myself, and would watch again before going to sleep lol;False;False;;;;1610335767;;False;{};giu3gsl;False;t3_kujurp;False;False;t1_giu32ks;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3gsl/;1610383935;6;True;False;anime;t5_2qh22;;0;[]; -[];;;CoffeeCannon;;;[];;;;text;t2_12ofx8;False;False;[];;"He literally says ""speaking on behalf of the Marleyan goverment"" or something along those lines. So. Yeah.";False;False;;;;1610335785;;False;{};giu3hye;False;t3_kujurp;False;True;t1_gisptwp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3hye/;1610383958;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AStartingPoint;;;[];;;;text;t2_74e7pgty;False;False;[];;So close to 20K!;False;False;;;;1610335803;;False;{};giu3j88;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3j88/;1610383985;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ruthekangaroo;;MAL;[];;https://myanimelist.net/animelist/ruthekangaroo;dark;text;t2_bit0e;False;False;[];;I rarely comment after episodes but that was fucking crazy.;False;False;;;;1610335809;;False;{};giu3jls;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3jls/;1610383992;10;True;False;anime;t5_2qh22;;0;[]; -[];;;kolpcowman4;;;[];;;;text;t2_2x9ix8zu;False;False;[];;It might even be jean;False;False;;;;1610335811;;False;{};giu3jr3;False;t3_kujurp;False;True;t1_gitxwkf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3jr3/;1610383994;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SoulTea;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/SoulTea;light;text;t2_6by2x;False;False;[];;Good call! I don't remember any that stuff, I'll finish my rewatch before next EP and be fully prepared!;False;False;;;;1610335822;;False;{};giu3kiw;False;t3_kujurp;False;True;t1_giu1xzm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3kiw/;1610384009;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Taurus24Silver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Taurus-Silver;light;text;t2_826uaxw;False;False;[];;I will watch it the 4 time after work;False;False;;;;1610335823;;False;{};giu3kln;False;t3_kujurp;False;True;t1_giu3gsl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3kln/;1610384011;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Positive_Magician_52;;;[];;;;text;t2_4sz9duif;False;False;[];;I think you need to be the 'founding' titan and have royal blood. You need both to control titans. Beast titan can somewhat control the dumb ones too IIRC but not sure. And you need to be a conscious titan to do so or else Zeke's mother would've been able to do it. So those 3 things are required I guess. Not exactly sure though, I would need to go revisit some old episodes it seems.;False;False;;;;1610335829;;False;{};giu3kyt;False;t3_kujurp;False;True;t1_giu2c0k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3kyt/;1610384017;2;True;False;anime;t5_2qh22;;0;[]; -[];;;iloveacademia;;;[];;;;text;t2_3m6fzg6c;False;False;[];;"I prefer darker stories over lighter ones it’s a component that can make a story good to me. - -I mean this is the show that talks about how cruel it’s world is a lot. I’m just here to see that. - -I don’t see any problem with realism sometimes you have to go outside our reality to find the darkest things.";False;False;;;;1610335829;;1610336048.0;{};giu3kyx;False;t3_kujurp;False;True;t1_giu1cnc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3kyx/;1610384017;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610335829;;False;{};giu3kzb;False;t3_kujurp;False;True;t1_giu2w3x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3kzb/;1610384018;12;True;False;anime;t5_2qh22;;0;[]; -[];;;burgerdaging;;;[];;;;text;t2_5exafgn3;False;False;[];;the dude that trapped Pieck Finger and Falco Grice must be very high iq, he tricked two warriors. The same individuals that are trained for war mentally and physically. At this point it should be obvious that he was eren's ally but who??;False;False;;;;1610335831;;False;{};giu3l4a;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3l4a/;1610384021;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PikachusAnalCavity;;;[];;;;text;t2_6kahtlla;False;False;[];;"The audience believed Helos and the Tyburs saved the world. Tybur revealed Fritz “saved the world”. People got surprised at that and started questioning what was the point of all this fear if Paradis is never even going to attack. But while the crowd is confused and before that turns to anger or outrage Willy continued immediately with the global threat of Eren and the Rumbling, which presents a more important motive for the world to unite against. He also renouncing his and his family’s status as a Tybur by revealing all this, so doesn’t really make sense he’d be lying to just put himself down. - -And if people still didn’t believe him then, I mean, Eren stormed out like 30 sec later in response to the declaration of war, so it’s kinda confirmed now Willy’s concerns were right. Either way they’ll all be worried about their own lives now considering a Titan is in their midst. - -As for a radical shooting Willy, I presumed all the military watching over the event probably screened civilians when they originally entered to prevent any weapons on them. Seems like the reasonable thing to do in any big political gathering. Then again, you could say Eren was the “radical” in this case who assassinated Willy before any pissed off military man had the chance.";False;False;;;;1610335831;;1610336206.0;{};giu3l63;False;t3_kujurp;False;False;t1_gitzg5c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3l63/;1610384022;9;False;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;Got broken like a shaken spear.;False;False;;;;1610335837;;False;{};giu3lku;False;t3_kujurp;False;True;t1_gisek9j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3lku/;1610384030;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;Rageful problems require rageful solutions;False;False;;;;1610335841;;False;{};giu3lvb;False;t3_kujurp;False;True;t1_giu1hnc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3lvb/;1610384036;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TSmasher1000;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_14sxjn;False;False;[];;Don't feel bad about it. Eren's actions are quite controversial within the community with some people thinking he is the most vile person ever and others thinking the opposite. The thing is that neither of these things are exactly true. Eren has developed greatly as a character. He has learned that the world is not so black and white as he initially thought and has developed towards a gray and gray mindset. However, I don't think he should be classified as the villain of the show as he is completely right when he says that he's in the same circumstances as Reiner. Reiner believed that his world was in danger and rose to arms to destroy Paradis. Reiner has killed plenty of innocents and his actions have caused more innocent lives to be taken than Eren's actions. Eren *knows* his world is in grave danger if he has no actions to save it and that's why he tells Reiner that he doesn't have a choice and that he's the same as him.;False;False;;;;1610335863;;False;{};giu3ncr;False;t3_kujurp;False;False;t1_giu2wb3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3ncr/;1610384084;12;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;I’m aware the founding Titan needs it but unsure if it has to be TITAN blood like we saw in season 2 with the smiling Titan or just fritz blood which is historia and zeke;False;False;;;;1610335892;;False;{};giu3pas;False;t3_kujurp;False;True;t1_giu3kyt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3pas/;1610384126;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;Hobos get what they can;False;False;;;;1610335895;;False;{};giu3pi2;False;t3_kujurp;False;False;t1_gisuzxx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3pi2/;1610384130;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dazzlehoff;;MAL;[];;http://myanimelist.net/animelist/Dazzlehoff;dark;text;t2_agrvz;False;False;[];;I know this aint really a spoiler, but could you still please not. It still takes something away;False;False;;;;1610335900;;False;{};giu3pvo;False;t3_kujurp;False;False;t1_gitxqed;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3pvo/;1610384137;5;True;False;anime;t5_2qh22;;0;[]; -[];;;rocky_iwata;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/banninghamma;light;text;t2_i9ys0;False;False;[];;"The path has been laid. - -Those who are waiting less talks and more action will certainly get it next week!";False;False;;;;1610335931;;False;{};giu3ryq;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3ryq/;1610384174;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazzlike_Razzmatazz;;;[];;;;text;t2_5ybf9h66;False;False;[];;I don't understand why you all make such a big deal of downvote??;False;False;;;;1610335934;;False;{};giu3s7s;False;t3_kujurp;False;False;t1_gitznid;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3s7s/;1610384179;8;True;False;anime;t5_2qh22;;0;[]; -[];;;PushEmma;;MAL;[];;http://myanimelist.net/animelist/SleepingWolves;dark;text;t2_m6lcw;False;False;[];;Pretty sure it wasn't cut. Never read the manga and heard it before. I thought it was like an excuse from the Marleyian empire though, but it also makes sense.;False;False;;;;1610335951;;False;{};giu3tgn;False;t3_kujurp;False;False;t1_gitn4k6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3tgn/;1610384204;13;True;False;anime;t5_2qh22;;0;[]; -[];;;LemmyKoopa2099;;;[];;;;text;t2_5c5kgiak;False;False;[];;Amazing episode, that last scene when Eren transformed and killed that Willy dude was lit.🔥🔥🔥;False;False;;;;1610335955;;False;{};giu3tpo;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3tpo/;1610384208;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610335980;;False;{};giu3vgp;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3vgp/;1610384243;1;True;False;anime;t5_2qh22;;0;[]; -[];;;psychsucks;;;[];;;;text;t2_7pinf0kz;False;False;[];;That’s Maze Runner in a nutshell LOL;False;False;;;;1610336007;;False;{};giu3x9y;False;t3_kujurp;False;True;t1_git7r7t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3x9y/;1610384279;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Stonewindow;;;[];;;;text;t2_13fxov;False;False;[];;ALL of the world hates Paradis, including the Eldians in Marley. It's not Paradis vs Marley, it's Paradis vs the world.;False;False;;;;1610336011;;False;{};giu3xia;False;t3_kujurp;False;False;t1_giu32u6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu3xia/;1610384282;24;True;False;anime;t5_2qh22;;0;[]; -[];;;BolZac;;;[];;;;text;t2_6ydnca1o;False;False;[];;That's true! But still I don't think you can call the rest of the series as bad in an objective point of view. It has everything tension, plot twists, deaths and does it extremely well.;False;False;;;;1610336064;;False;{};giu411t;False;t3_kujurp;False;True;t1_giu1w00;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu411t/;1610384355;3;True;False;anime;t5_2qh22;;0;[]; -[];;;randomkidlol;;;[];;;;text;t2_bg4iz;False;False;[];;"[a high quality meme template](https://i.imgur.com/o22Ax7r.png) - -https://i.redd.it/x2ukspo4bre31.png";False;False;;;;1610336065;;False;{};giu4141;False;t3_kujurp;False;False;t1_giu1wsx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4141/;1610384356;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazzlike_Razzmatazz;;;[];;;;text;t2_5ybf9h66;False;False;[];;What did you do to deserve that ost??;False;False;;;;1610336080;;False;{};giu422k;False;t3_kujurp;False;False;t1_giu0onz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu422k/;1610384378;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaneghi;;;[];;;;text;t2_3lba9law;False;False;[];;It will be explained;False;False;;;;1610336091;;False;{};giu42v6;False;t3_kujurp;False;False;t1_giu3l4a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu42v6/;1610384395;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Acheroni;;;[];;;;text;t2_8kyb7;False;False;[];;I've only seen anime so nah;False;False;;;;1610336104;;False;{};giu43ov;False;t3_kujurp;False;False;t1_gitxkc1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu43ov/;1610384412;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Taurus24Silver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Taurus-Silver;light;text;t2_826uaxw;False;False;[];;"Exactly. That is the most difficult task for any GOAT contender. FMAB/HxH and Steins gate did that successfully. Gintama is a completely different topic - - -But when those shows ended, we knew at that time that they will become instant classics - - -Chapter 122/ EP16 will be THAT moment for AOT, when most of us will admit that the show has become an instant classic, if they haven't admitted it already";False;False;;;;1610336129;;False;{};giu45et;False;t3_kujurp;False;False;t1_gitrjhw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu45et/;1610384470;5;True;False;anime;t5_2qh22;;0;[]; -[];;;hapibanana;;;[];;;;text;t2_fsjkq;False;False;[];;I haven't watched 4-7 but I agree for the first 3. They all had dips in their stories (maybe FMA:B a lot less) but AOT was just pure hype all the time. Not to mention how crazy good the callbacks are in AOT which rewards you for paying attention to every single detail there is.;False;False;;;;1610336134;;False;{};giu45qa;False;t3_kujurp;False;True;t1_giu1rcm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu45qa/;1610384477;1;True;False;anime;t5_2qh22;;0;[]; -[];;;smog_alado;;;[];;;;text;t2_63jkh;False;False;[];;What stuff would you recommend this season?;False;False;;;;1610336148;;False;{};giu46pu;False;t3_kujurp;False;True;t1_gisl9kg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu46pu/;1610384496;3;True;False;anime;t5_2qh22;;0;[]; -[];;;xRazuux;;;[];;;;text;t2_tgivp15;False;False;[];;I think they just meant all the titans within the walls not on the entire island;False;False;;;;1610336150;;False;{};giu46td;False;t3_kujurp;False;False;t1_gitsruw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu46td/;1610384498;7;True;False;anime;t5_2qh22;;0;[]; -[];;;LemmyKoopa2099;;;[];;;;text;t2_5c5kgiak;False;False;[];;IKR, They should've played a rap song when he transformed and killed that one guy.;False;False;;;;1610336159;;False;{};giu47fi;False;t3_kujurp;False;True;t1_gisbanh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu47fi/;1610384511;2;True;False;anime;t5_2qh22;;0;[]; -[];;;luvkr;;;[];;;;text;t2_2zbpg2zl;False;False;[];;Ereh yeaga woke up on festival day and straight up chose merciless violence.;False;False;;;;1610336163;;1610337107.0;{};giu47or;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu47or/;1610384516;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Dazzlehoff;;MAL;[];;http://myanimelist.net/animelist/Dazzlehoff;dark;text;t2_agrvz;False;False;[];;No body - no death, is the usual rule;False;False;;;;1610336181;;False;{};giu48xx;False;t3_kujurp;False;False;t1_giu0a6c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu48xx/;1610384542;32;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaneghi;;;[];;;;text;t2_3lba9law;False;False;[];;I think that person was a little bit too tall to be armin and the voice didnt match up;False;False;;;;1610336189;;False;{};giu49g8;False;t3_kujurp;False;True;t1_giu2qxd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu49g8/;1610384551;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PushEmma;;MAL;[];;http://myanimelist.net/animelist/SleepingWolves;dark;text;t2_m6lcw;False;False;[];;"Mmm I still give the award to the ""Do we do it? Right here?"" second half of the episode. Best stuff ever.";False;False;;;;1610336193;;False;{};giu49nz;False;t3_kujurp;False;True;t1_gisbj8o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu49nz/;1610384554;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaneghi;;;[];;;;text;t2_3lba9law;False;False;[];;Oh well;False;False;;;;1610336201;;False;{};giu4a83;False;t3_kujurp;False;True;t1_giu2q8a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4a83/;1610384566;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Stonewindow;;;[];;;;text;t2_13fxov;False;False;[];;"Eren aknowledges that the rest of the world are humans and not devils, but he still isn't a pacifist denouncing war like Karl Fritz, who is a meek man ridden with guilt, who is willing to let his people die because of their past as colonizers, slavers and genociders. Eren rejects this idea fully, and ""pushes himself into hell"" by killing other people to protect his own.";False;False;;;;1610336205;;1610336537.0;{};giu4ah0;False;t3_kujurp;False;False;t1_giscn0f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4ah0/;1610384570;17;True;False;anime;t5_2qh22;;0;[]; -[];;;burnoutbrighter;;;[];;;;text;t2_apv2f;False;False;[];;God damn, what an episode. The tension has been building so steadily, now shit is about to pop off. This next week better go by quickly!;False;False;;;;1610336237;;False;{};giu4clf;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4clf/;1610384612;9;True;False;anime;t5_2qh22;;0;[]; -[];;;izzes;;;[];;;;text;t2_nrfon;False;False;[];;I'm betting here that she whispered something to him, akin to letting them know something was off and they'll get them out of the pit.;False;False;;;;1610336245;;False;{};giu4d40;False;t3_kujurp;False;True;t1_gisctsk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4d40/;1610384621;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yaminoidles;;;[];;;;text;t2_64rsavk;False;False;[];;"In S3E6, we see Grisha massacre the Reiss family and consume Freida. So yes we know he got the founding titan. - -And in S3P2, we see Kruger give Grisha the Attack titan. So we can conclude that they are different and that Eren has both.";False;False;;;;1610336269;;False;{};giu4erj;False;t3_kujurp;False;False;t1_giu314y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4erj/;1610384655;6;True;False;anime;t5_2qh22;;0;[]; -[];;;OhMilla;;;[];;;;text;t2_84kkn;False;False;[];;I mean, can't really say anything from an objective point of view lol. It's all subjective. I think the rest of the series is a huge step below what it used to be.;False;False;;;;1610336269;;False;{};giu4esa;False;t3_kujurp;False;True;t1_giu411t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4esa/;1610384655;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexVRI;;;[];;;;text;t2_3gz2r6so;False;False;[];;The walls extend a little underground;False;False;;;;1610336272;;False;{};giu4exb;False;t3_kujurp;False;False;t1_giu1v9w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4exb/;1610384658;112;True;False;anime;t5_2qh22;;0;[]; -[];;;swordmalice;;MAL;[];;http://myanimelist.net/animelist/swordmalice;dark;text;t2_doqci;False;False;[];;It's also a slight call-back to when Reiner healed his arm in front of Eren back when he revealed himself as the Armored Titan and just before transforming. What amazing writing.;False;False;;;;1610336277;;False;{};giu4f9e;False;t3_kujurp;False;False;t1_gisxylb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4f9e/;1610384665;61;True;False;anime;t5_2qh22;;0;[]; -[];;;BolZac;;;[];;;;text;t2_6ydnca1o;False;False;[];;All eren needs to do to activate the founder is touch a titan with royal blood or titan shifter. Dina was a mindless titan with royal blood and when eren touched her he activated the coordinate (founding titan). And also he can just touch zeke too to activate it since he is a shifter with royal blood. But touching historia won't activate it. He touched her at the end of s3 part 2 but the only thing that happened was the he unlocked some hidden memories of his dad which we still don't know what they were.;False;False;;;;1610336282;;False;{};giu4fly;False;t3_kujurp;False;True;t1_giu1m8e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4fly/;1610384673;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;"So basically Willy turned Eldia vs Marley to World vs Paradis ""for the sake of humanity"". - -Moreover, his death also strengthened the hatred against ""Eren and his bunch of Paradisians"". - -Can't waaaaaiiiiittttt!!!";False;False;;;;1610336283;;False;{};giu4fm9;False;t3_kujurp;False;False;t1_gitr2lu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4fm9/;1610384673;5;True;False;anime;t5_2qh22;;0;[]; -[];;;izzes;;;[];;;;text;t2_nrfon;False;False;[];;We'll need a bigger boat;False;False;;;;1610336319;;False;{};giu4i6j;False;t3_kujurp;False;True;t1_giu3xia;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4i6j/;1610384728;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Duwang-;;;[];;;;text;t2_48n6ugpg;False;False;[];;At some point in season 1 there was a card in the middle of an episode saying that the walls extend underground too;False;False;;;;1610336320;;False;{};giu4i85;False;t3_kujurp;False;False;t1_giu1v9w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4i85/;1610384729;64;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazzlike_Razzmatazz;;;[];;;;text;t2_5ybf9h66;False;False;[];;"God these haters .....they really need to do some work... seriously they only watch episode to find its faults lik wtf i understand about ost..but what's wrong with eren face , attack titan' jaw, willy's VA etc.... really they need to grow up. - -If comments work this way i can find countless animation errors in naruto, code geass. death note.... they judge aot by animation only and think these animes have best animation ever.";False;False;;;;1610336327;;1610336813.0;{};giu4iqh;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4iqh/;1610384737;16;True;False;anime;t5_2qh22;;0;[]; -[];;;LackingTact19;;AP;[];;http://www.anime-planet.com/users/furfeyl;dark;text;t2_95wby;False;False;[];;I was expecting Armin to be there and to do a colossal titan detonation to wipe out all the VIPs;False;False;;;;1610336342;;False;{};giu4jw4;False;t3_kujurp;False;False;t1_gisbgr0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4jw4/;1610384760;9;True;False;anime;t5_2qh22;;0;[]; -[];;;ten-of-wands;;;[];;;;text;t2_2biem5w0;False;False;[];;"*Two bros* - -*Chillin in the basement* - -*Five feet apart ‘cause they’re the same*";False;False;;;;1610336343;;False;{};giu4jy2;False;t3_kujurp;False;True;t1_gisc1bn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4jy2/;1610384762;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BirameNdiaye;;;[];;;;text;t2_32rl3kjs;False;False;[];;Best comment;False;False;;;;1610336349;;False;{};giu4kdf;False;t3_kujurp;False;True;t1_gisp7zw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4kdf/;1610384770;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaneghi;;;[];;;;text;t2_3lba9law;False;False;[];;Yeah I dont think so;False;False;;;;1610336358;;False;{};giu4l07;False;t3_kujurp;False;True;t1_gitxm12;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4l07/;1610384785;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zathural;;;[];;;;text;t2_14d5pv;False;False;[];;"That's the purpose of the traces on their face from transforming. You can do an initial transformation while injured (no face trace) but you can't transform again until your injuries are healed with the transformation trace (like Eren and Ymir on the trees or Zeke after escaping from Levi). - -Another well thought detail by Isayama";False;False;;;;1610336359;;False;{};giu4l2t;False;t3_kujurp;False;False;t1_gisxylb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4l2t/;1610384786;26;True;False;anime;t5_2qh22;;0;[]; -[];;;NotAlphonae;;;[];;;;text;t2_6im0hgvx;False;False;[];;He's like Marley's Eren Kruger. Makes an appearance for a short period of time, but has a long lasting impact on the story.;False;False;;;;1610336380;;False;{};giu4mlx;False;t3_kujurp;False;True;t1_giu1sn1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4mlx/;1610384817;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LemmyKoopa2099;;;[];;;;text;t2_5c5kgiak;False;False;[];;More than a 100k;False;False;;;;1610336393;;False;{};giu4nl2;False;t3_kujurp;False;True;t1_gistqk9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4nl2/;1610384843;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;I was just pointing out that a relatively mild statement was completely rejected for seemingly no reason.;False;False;;;;1610336433;;False;{};giu4qfg;False;t3_kujurp;False;True;t1_giu3s7s;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4qfg/;1610384925;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Flying_Oven_1;;;[];;;;text;t2_3ffdx1g4;False;False;[];;What’s MAL?;False;False;;;;1610336444;;False;{};giu4r8z;False;t3_kujurp;False;True;t1_gits62o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4r8z/;1610384941;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;Makes me think. Could a newborn be made a titan? Every 13 years his sibling will eat the titan until a new child is born. Viable strat;False;False;;;;1610336457;;False;{};giu4s5n;False;t3_kujurp;False;True;t1_gitwvts;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4s5n/;1610384963;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lemon1412;;;[];;;;text;t2_3m3p3;False;True;[];;"> Pre-cut hand - -For some reason, when I watched it, I initially thought the blood on his hand was from clenching his fist so hard he drove his fingernails into his palm because he had to hold back his anger seeing Reiner.";False;False;;;;1610336458;;False;{};giu4s8q;False;t3_kujurp;False;False;t1_gisrm9j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4s8q/;1610384965;14;True;False;anime;t5_2qh22;;0;[]; -[];;;BolZac;;;[];;;;text;t2_6ydnca1o;False;False;[];;No no, to be an objectively good story I think we both agree that there need to be good plot twists or even action scenes with high stakes and stuff like that. The remaining chapters have almost everything of that and they are extremely well presented too, meaning with no plot holes.;False;False;;;;1610336466;;False;{};giu4ssx;False;t3_kujurp;False;True;t1_giu4esa;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4ssx/;1610384978;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lp_phnx327;;;[];;;;text;t2_66rsi;False;False;[];;It's almost an oxymoron.;False;False;;;;1610336476;;False;{};giu4tl7;False;t3_kujurp;False;True;t1_gisai6n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4tl7/;1610384995;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaneghi;;;[];;;;text;t2_3lba9law;False;False;[];;".....the setting is literally as cruel if not even worse. Man you dont have a ""cruel"" opinion, just a dumbass one";False;False;;;;1610336517;;False;{};giu4wde;False;t3_kujurp;False;False;t1_giu07ne;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4wde/;1610385052;5;True;False;anime;t5_2qh22;;0;[]; -[];;;legalizeweedinjapan;;;[];;;;text;t2_9a2gb8j6;False;False;[];;watching this episode gave me a natural high holy shit this is the pinnacle television right here;False;False;;;;1610336548;;False;{};giu4yjy;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu4yjy/;1610385094;18;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;I’m so happyy, but still i’ll wait for it to break 20k karma then i shall rejoice;False;False;;;;1610336570;;False;{};giu501u;False;t3_kujurp;False;False;t1_giu0qo4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu501u/;1610385123;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;DO NOT RESIST. LET FREEDOM ENGULP YOU!!;False;False;;;;1610336574;;False;{};giu50ap;False;t3_kujurp;False;False;t1_gisd2jv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu50ap/;1610385128;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Positive_Magician_52;;;[];;;;text;t2_4sz9duif;False;False;[];;Oh, okay. I went to youtube to check on this and S3 Ep 21 shows Eren having a theory that just historia (fritz blood) is enough. So I guess we don't have full clarity on the subject.;False;False;;;;1610336597;;False;{};giu51tj;False;t3_kujurp;False;True;t1_giu3pas;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu51tj/;1610385161;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BoltOfBlazingGold;;;[];;;;text;t2_11qb6gnq;False;False;[];;"He would know also that they only succeeded because they rained titans all over the enemy. I'm not sure if Paradis has the engines to propel a zeppelin (have we even seen an engine inside the walls?) and/or would deem their people as expendable. A direct fight would be different, but the methods used and the locations might vary a lot, so that's whataboutism territory. But remember, it took them 4 years to win against a single faction using titans, shifters and weaponry. - -If they sit and take their time, the other nations might unite in fear (and develop even better weapons). And given the natural resources Paradies have the reasons to attack double. The evidence is because it has been established that next to the entire world hates/fears Paradis. There would also be no tension if the protagonist is able to easily overcome his enemies. I just can't fathom how you make it sound that it is so easy.";False;False;;;;1610336598;;False;{};giu51x2;False;t3_kujurp;False;True;t1_gitz9yb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu51x2/;1610385163;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AussieManny;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Nauran;light;text;t2_13tmtu;False;False;[];;"Me trying to piece everything together: - -This whole thing (the walls being destroyed) started because the Marleyans (the subjugators of the Eldians on the mainland) dreaded the other nations of the world over-powering them with technology greater than titans, so they decided to seek out the fossil fuel resources on Paradis Island. The Marleyan government hid this motive for resources behind the ""threat"" of the Paradis Island Eldians coming to the mainland and annihilating their world, *even though* King Fritz, holder of the Founding Titan (who can control other titans), promised to never return and start a war. - -Though Fritz held true to this peace and would have even let himself be killed ""to atone for the Eldians' history"", time went on, the Marleyans' doubt and fear of the other nations (and possibly the Paradis Eldians as well) grew, and eventually they rallied their country behind this false mission to ""destroy the Eldian threat"" and sent Reiner, Bertholdt, Annie and Marcel to go and take the Founding Titan power, thus eliminating the threat of the Paradis Island ""devils"", solidifying Marley's security by collecting the Island's fossil fuels to strengthen their armies, and continue their rule over the Eldians. - -Grisha (Eren's father) was entrusted with the Attack Titan by Kruger. Grisha wanted to fulfil the Restorationists' dream of freeing Eldians from Marley's subjugation. Once the walls came down, he sought the King out, who refused to fight, so he stole the Founding Titans' power, which he could use without succumbing to King Fritz' pacifist will (because he lacked royal blood), and could then finally wage war against the Marleyans and give freedom to all the Eldians. - -Things didn't go well though, so Grisha ultimately decided to ""hide"" the power of both the Founding Titan and the Attack Titan in Eren by letting him consume him, passing the powers on, hoping one day Eren would continue his life goal of waging war against Marley and freeing the Eldians. - -Grisha succeeded where Marley's ""warriors"" failed. [And here we are.](https://i.postimg.cc/Wz2V9XRH/vlcsnap-2021-01-11-15h18m15s737.jpg)";False;False;;;;1610336599;;1610372301.0;{};giu5206;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5206/;1610385165;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Pepethedankmeme;;;[];;;;text;t2_12kn4b;False;False;[];;Ngl I haven't read the manga but this this page looks a bit better than how they handled it in the anime. Having Eren (titan form) with Willy in the same frame looks more impactful to me, also in the manga you can see people watching the festival right when Eren starts transforming, that shot looks so good whereas the anime didn't show anyone above the explosion. Not to say the moment wasn't incredible in that anime, just interesting to see the differences.;False;False;;;;1610336599;;1610346393.0;{};giu520r;False;t3_kujurp;False;False;t1_git56d1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu520r/;1610385165;8;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;Thanks a lot!;False;False;;;;1610336607;;False;{};giu52he;False;t3_kujurp;False;True;t1_giu4erj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu52he/;1610385174;1;True;False;anime;t5_2qh22;;0;[]; -[];;;midtharp;;;[];;;;text;t2_2tkeqy5s;False;False;[];;*habeas corpus* seems more useful for Titans than Redditors;False;False;;;;1610336609;;False;{};giu52mh;False;t3_kujurp;False;True;t1_giu48xx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu52mh/;1610385177;0;True;False;anime;t5_2qh22;;0;[]; -[];;;lp_phnx327;;;[];;;;text;t2_66rsi;False;False;[];;"S1-S3pt1: Has his world destroyed. - -S3pt2: Doesn't. - -S4: My turn.";False;False;;;;1610336614;;False;{};giu531l;False;t3_kujurp;False;False;t1_gisropm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu531l/;1610385184;44;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;Some Eren fanboys might downvote you now and in future episodes, but don't worry about the hate because this show is not black and white.;False;False;;;;1610336638;;False;{};giu54p9;False;t3_kujurp;False;False;t1_giu2wb3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu54p9/;1610385216;5;True;False;anime;t5_2qh22;;0;[]; -[];;;swordmalice;;MAL;[];;http://myanimelist.net/animelist/swordmalice;dark;text;t2_doqci;False;False;[];;I have a sneaking feeling that Tybur is the War Hammer Titan. We'll see if I'm wrong next week!;False;False;;;;1610336652;;False;{};giu55n2;False;t3_kujurp;False;True;t1_gisf892;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu55n2/;1610385235;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;Lmao he had already started since the last episode ended. Man could have built a wall for Marley;False;False;;;;1610336656;;False;{};giu55xj;False;t3_kujurp;False;False;t1_giu3do4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu55xj/;1610385241;8;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;He got sliced in half. He's dead unless he's the War Hammer.;False;False;;;;1610336695;;False;{};giu58og;False;t3_kujurp;False;False;t1_giu1sn1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu58og/;1610385300;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Tigre3;;;[];;;;text;t2_2n0k3z7c;False;False;[];;I feel like he is but I’m probably wrong;False;False;;;;1610336736;;False;{};giu5bpd;False;t3_kujurp;False;True;t1_giu58og;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5bpd/;1610385363;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr_MoRpHed;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jdfpmfj;False;False;[];;The Method Acting Titan;False;False;;;;1610336744;;False;{};giu5c73;False;t3_kujurp;False;False;t1_gisxdii;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5c73/;1610385373;14;True;False;anime;t5_2qh22;;0;[]; -[];;;lp_phnx327;;;[];;;;text;t2_66rsi;False;False;[];;Eren: Don't look me, you started it 1 second earlier.;False;False;;;;1610336751;;False;{};giu5csz;False;t3_kujurp;False;True;t1_gisboc1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5csz/;1610385385;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SPARTAN-PRIME-2017;;;[];;;;text;t2_48zbvqz;False;False;[];;Don't you think you should be stabbing me for food, you orphan?;False;False;;;;1610336761;;False;{};giu5dgi;False;t3_kujurp;False;False;t1_git12hx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5dgi/;1610385398;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Tigre3;;;[];;;;text;t2_2n0k3z7c;False;False;[];;Okay I see;False;False;;;;1610336761;;False;{};giu5dh6;False;t3_kujurp;False;True;t1_giu4mlx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5dh6/;1610385400;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazzlike_Razzmatazz;;;[];;;;text;t2_5ybf9h66;False;False;[];;"So you think downvote Mean rejection ig you are completely wrong downvote is used to filter the comment ppl want to see. - -Even if its a rejection that's their opinion you think we can't reject opinions? - -And comments like that that are based on opinion completely disses the hard work done by Mappa they think their opinion is greater than mappa work.";False;False;;;;1610336763;;False;{};giu5dm1;False;t3_kujurp;False;False;t1_giu4qfg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5dm1/;1610385404;4;True;False;anime;t5_2qh22;;0;[]; -[];;;swordmalice;;MAL;[];;http://myanimelist.net/animelist/swordmalice;dark;text;t2_doqci;False;False;[];;What is WITH this show and having children experience terrible psychological trauma? LOL but not really, it's truly sad.;False;False;;;;1610336785;;False;{};giu5f3j;False;t3_kujurp;False;True;t1_gise9k9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5f3j/;1610385438;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Tidezen;;MAL;[];;http://myanimelist.net/profile/Tidezen;dark;text;t2_e8eff;False;False;[];;The rabbit hole of Reiner's mental trauma is one of the most fucked-up things of this entire manga. And that's saying *a lot*.;False;False;;;;1610336811;;False;{};giu5gx0;False;t3_kujurp;False;True;t1_gitpkk8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5gx0/;1610385481;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;At its current pace it could very well beat the comment, awards and karma records again lol. The previous time this happened was on the premier, we are witnessing r/anime history right b4 our eyes;False;False;;;;1610336840;;False;{};giu5iv3;False;t3_kujurp;False;False;t1_giu501u;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5iv3/;1610385517;8;True;False;anime;t5_2qh22;;0;[]; -[];;;swordmalice;;MAL;[];;http://myanimelist.net/animelist/swordmalice;dark;text;t2_doqci;False;False;[];;He looks so much like his Dad now...like father like son, perhaps in more ways than one...;False;False;;;;1610336843;;False;{};giu5izs;False;t3_kujurp;False;False;t1_gisaov5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5izs/;1610385520;1;True;False;anime;t5_2qh22;;0;[]; -[];;;stormhunter2;;;[];;;;text;t2_2d0p5yp7;False;False;[];;Ok, thank you;False;False;;;;1610336843;;False;{};giu5j10;False;t3_kujurp;False;False;t1_gitx4ly;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5j10/;1610385520;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610336860;;False;{};giu5k5u;False;t3_kujurp;False;True;t1_gishd5x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5k5u/;1610385541;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BasedFunnyValentine;;;[];;;;text;t2_2dv5gtho;False;False;[];;My anime list;False;False;;;;1610336861;;False;{};giu5k8n;False;t3_kujurp;False;True;t1_giu4r8z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5k8n/;1610385543;1;True;False;anime;t5_2qh22;;0;[]; -[];;;orangeforblood;;;[];;;;text;t2_73ihx7rc;False;False;[];;Magath knew the story about Helos was fake, that's why he said Helos' statue was hollow last episode. But the military didn't know about the vow to renounce war, only the Fritz (Reiss) and Tybur family knew.;False;False;;;;1610336901;;False;{};giu5mvn;False;t3_kujurp;False;False;t1_giu26x4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5mvn/;1610385592;4;True;False;anime;t5_2qh22;;0;[]; -[];;;swordmalice;;MAL;[];;http://myanimelist.net/animelist/swordmalice;dark;text;t2_doqci;False;False;[];;Bingo.;False;False;;;;1610336921;;False;{};giu5oab;False;t3_kujurp;False;False;t1_gitqdiv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5oab/;1610385618;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610336939;;False;{};giu5phg;False;t3_kujurp;False;True;t1_gisgrpn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5phg/;1610385640;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TicketCool;;;[];;;;text;t2_9jrr6yuo;False;False;[];;but HOLY SHIT STILL INSANE CALLBACK HOLY SHIT;False;False;;;;1610336940;;False;{};giu5plb;False;t3_kujurp;False;True;t1_gisrk1g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5plb/;1610385642;3;True;False;anime;t5_2qh22;;0;[]; -[];;;the-laughing-joker;;;[];;;;text;t2_40j9sr4o;False;False;[];;I'm a little dissapointed that the audio wasn't as loud and clear as the trailer for that;False;False;;;;1610336949;;False;{};giu5q5w;False;t3_kujurp;False;True;t1_gisac08;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5q5w/;1610385653;2;True;False;anime;t5_2qh22;;0;[]; -[];;;boopboopbeebeep;;;[];;;;text;t2_7izj12wg;False;False;[];;Eren: Calm down Reiner else I will kill those innocent civilians which I will kill anyways.;False;False;;;;1610336953;;False;{};giu5qgd;False;t3_kujurp;False;True;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5qgd/;1610385658;1;True;False;anime;t5_2qh22;;0;[]; -[];;;politemotherfucker;;;[];;;;text;t2_1zxdd0vq;False;False;[];;Are reiner and falco dead or is it not confirmed yet?;False;False;;;;1610336954;;False;{};giu5qhp;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5qhp/;1610385659;3;True;False;anime;t5_2qh22;;0;[]; -[];;;legalizeweedinjapan;;;[];;;;text;t2_9a2gb8j6;False;False;[];;um what? this is a HUGE spoiler how fucking stupid are you;False;True;;comment score below threshold;;1610336961;;False;{};giu5qxv;False;t3_kujurp;False;True;t1_gismgrx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5qxv/;1610385667;-19;True;False;anime;t5_2qh22;;0;[]; -[];;;newguy208;;;[];;;;text;t2_yxsfs;False;False;[];;I HAVE BEEN WAITING FOR THREE YEARS!!!;False;False;;;;1610336964;;False;{};giu5r5y;False;t3_kujurp;False;True;t1_gisjqdw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5r5y/;1610385672;3;True;False;anime;t5_2qh22;;0;[]; -[];;;eragonisdragon;;;[];;;;text;t2_6pf5k;False;False;[];;They were officially at war at that point. Collateral damage will always happen in war.;False;False;;;;1610336973;;False;{};giu5rr3;False;t3_kujurp;False;True;t1_gism3q6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5rr3/;1610385683;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Dazzlehoff;;MAL;[];;http://myanimelist.net/animelist/Dazzlehoff;dark;text;t2_agrvz;False;False;[];;"> the Founding Titan’s powers only affect Eldians ... - -What IS the power of the Founding Titan that affects people? The mind-control to forget?";False;False;;;;1610336985;;False;{};giu5skc;False;t3_kujurp;False;True;t1_gismb1y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5skc/;1610385698;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TatteredTongues;;;[];;;;text;t2_xbrbp;False;False;[];;"If I recall correctly, that's the ""front"" they were putting up; of course they want the FT, but they were also looking to acquire the large quantities of fossil fuel on Paradis. - - -It's a battle for resources either way. - - -As Kruger said, there will inevitably come a time where a choice will be made: either the Eldians are kept alive (in the ideal scenario Marley has all Titan powers including the Founding Titan, and/or can use the Rumbling as a deterrent), or they are finally purged from this world since Titan powers will become obsolete. - - -In the 2nd scenario, the resources on Paradis are indispensable for Marley as a substitute/something to give them a headstart after losing the Titan powers.";False;False;;;;1610336987;;False;{};giu5so4;False;t3_kujurp;False;False;t1_giu5206;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5so4/;1610385700;6;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;What are you saying? This episode has been loved by most of the people in this discussion thread, it even got a 9.9 rating in IMDb (min of 1000 votes), some even said that this is one of the best episodes anime has ever seen. So far the only complaint I see is from the manga readers who were expecting YSBG ost. I think so most of the hate is nitpick and If you enjoyed the episode then MAPPA has done a phenomenal job with this episode.;False;False;;;;1610336990;;False;{};giu5swv;False;t3_kujurp;False;False;t1_giu4iqh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5swv/;1610385705;13;True;False;anime;t5_2qh22;;0;[]; -[];;;yolo_swag_for_satan;;;[];;;;text;t2_2aloc4yu;False;False;[];;I said good day.;False;False;;;;1610337001;;False;{};giu5tmv;False;t3_kujurp;False;True;t1_giu2hf2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5tmv/;1610385719;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazerionX;;;[];;;;text;t2_d15hvpw;False;False;[];;Until they show the bodies they are not dead;False;False;;;;1610337021;;False;{};giu5uz1;False;t3_kujurp;False;False;t1_giu5qhp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5uz1/;1610385745;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Flossgod;;;[];;;;text;t2_uew3b;False;False;[];;😳;False;False;;;;1610337030;;False;{};giu5vli;False;t3_kujurp;False;False;t1_gisif8n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5vli/;1610385759;9;True;False;anime;t5_2qh22;;0;[]; -[];;;TatteredTongues;;;[];;;;text;t2_xbrbp;False;False;[];;Yeah cause Reiner and gang ate all the pizza :(;False;False;;;;1610337057;;False;{};giu5xh9;False;t3_kujurp;False;False;t1_giu47or;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5xh9/;1610385796;5;True;False;anime;t5_2qh22;;0;[]; -[];;;swordmalice;;MAL;[];;http://myanimelist.net/animelist/swordmalice;dark;text;t2_doqci;False;False;[];;"Speaking of things needing explanation, I have a question; when Marcel was eaten by Ymir, she inherited his power and reverted into a human becoming a Titan shifter. When Eren was eaten in Season 1, why didn't the Titan inherit HIS power as the Attack Titan right away? How was Eren able to get out of that? (Don't answer if it'll be explained later, of course)";False;False;;;;1610337065;;False;{};giu5y0s;False;t3_kujurp;False;False;t1_gisk5gg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5y0s/;1610385807;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Stonewindow;;;[];;;;text;t2_13fxov;False;False;[];;"He did seem pretty sympathetic to his ""fellow patriots"" at the end of Season 3 though.";False;False;;;;1610337084;;False;{};giu5zaj;False;t3_kujurp;False;True;t1_gite82s;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5zaj/;1610385830;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aerohed;;;[];;;;text;t2_xjmyo;False;False;[];;"Eren: I'm going to keep moving forward. - -Reiner:... AAAAND SCENE! - -Eren: Whew, I was really getting into it, there. Wanna grab lunch, or something?";False;False;;;;1610337085;;False;{};giu5zbr;False;t3_kujurp;False;False;t1_giu5c73;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5zbr/;1610385831;8;True;False;anime;t5_2qh22;;0;[]; -[];;;SmartRaccoon3643;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;echidna cultist;dark;text;t2_7jtp3l74;False;False;[];;Oops, i am blind.;False;False;;;;1610337091;;False;{};giu5zqf;False;t3_kujurp;False;True;t1_giu1zhr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu5zqf/;1610385838;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sanic_de_hegehog;;MAL;[];;https://myanimelist.net/profile/sanic_de_hegehog;dark;text;t2_e028fcj;False;False;[];;"Don't mean to be that guy, but Australia is over 10x larger than the likes of France or Afghanistan. Incidentally, Madagascar is only slightly smaller than France (but that is the whole island, potential walled area would only be maybe 40%). - -The other thing is the wall radius mentioned in the anime does not exist in the manga and actually contradicts how Isayama originally [drew the walls](https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSpcOitpuEXYGtAm3F6vE8pM3dxkq2LjtoKgg&usqp=CAU) so best not to take those numbers too seriously.";False;False;;;;1610337124;;1610337912.0;{};giu621x;False;t3_kujurp;False;False;t1_gits50y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu621x/;1610385882;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;Do you really the original comment was stating their opinion was greater than mappa's work?;False;False;;;;1610337129;;False;{};giu62e4;False;t3_kujurp;False;True;t1_giu5dm1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu62e4/;1610385888;0;True;False;anime;t5_2qh22;;0;[]; -[];;;legalizeweedinjapan;;;[];;;;text;t2_9a2gb8j6;False;False;[];;first natural high i've ever gotten watching this shit;False;False;;;;1610337150;;False;{};giu63we;False;t3_kujurp;False;False;t1_gisv5pt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu63we/;1610385915;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Wolfe244;;;[];;;;text;t2_yjsbn;False;False;[];;What do you mean the opening line?;False;False;;;;1610337178;;False;{};giu65se;False;t3_kujurp;False;False;t1_git6qq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu65se/;1610385950;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610337185;;False;{};giu669d;False;t3_kujurp;False;True;t1_giu2qxd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu669d/;1610385961;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazzlike_Razzmatazz;;;[];;;;text;t2_5ybf9h66;False;False;[];;"Well in yt and Twitter i have seen much hate comments i was just addressing them. - -Imo this episode was phenomenal 10/10.";False;False;;;;1610337204;;False;{};giu67hv;False;t3_kujurp;False;False;t1_giu5swv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu67hv/;1610385983;2;True;False;anime;t5_2qh22;;0;[]; -[];;;swordmalice;;MAL;[];;http://myanimelist.net/animelist/swordmalice;dark;text;t2_doqci;False;False;[];;"> 9 Titans - -I saw Tybur say Eight Titans in his speech. Was that a translation error or...?";False;False;;;;1610337209;;False;{};giu67u3;False;t3_kujurp;False;True;t1_gism93w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu67u3/;1610385990;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ronwantread;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SadBoiTime;light;text;t2_tdj3p3u;False;False;[];;This episode...the buildup, music, goddamn...this is all weve been waiting for;False;False;;;;1610337215;;False;{};giu687q;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu687q/;1610385997;12;True;False;anime;t5_2qh22;;0;[]; -[];;;HattoriSaizoII;;;[];;;;text;t2_72680hhu;False;False;[];;Basically rushing the enemy spawn site.;False;False;;;;1610337218;;False;{};giu68g7;False;t3_kujurp;False;True;t1_gisax64;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu68g7/;1610386001;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Arcius777;;;[];;;;text;t2_1bj36ty5;False;False;[];;Aaaaaaaaaa;False;False;;;;1610337268;;False;{};giu6bsj;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu6bsj/;1610386061;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SyphilisJuice;;;[];;;;text;t2_mdahl;False;False;[];;Eren gobbles willy;False;False;;;;1610337275;;False;{};giu6caw;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu6caw/;1610386072;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;"it really confuses me. Manga readers are aware that this is a hype moment and so they want the hypest music with it. - -But anime readers would see where the plot is going a mile away and would not be able to experience the suspense and silence the manga readers did with YSBG. - -I have legit seen comments saying a single OST choice ruined their AOT experience as a whole and it's so bizarre. I want to respect their opinion, and I really do, but I am very confused by it.";False;False;;;;1610337282;;False;{};giu6cph;False;t3_kujurp;False;False;t1_giu5swv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu6cph/;1610386078;8;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;I see but I am pretty sure even if they would have gotten the best adaptation possible they'll still nitpick, so it's better to ignore their comments as it ruins the enjoyment.;False;False;;;;1610337372;;False;{};giu6j6n;False;t3_kujurp;False;False;t1_giu67hv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu6j6n/;1610386199;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;Oh, absolutely! I think it might reach 20k by the next 3-6 hours. And i’m also sure the awards and comments in this ep could definitely beat the first episode;False;False;;;;1610337403;;False;{};giu6lj4;False;t3_kujurp;False;False;t1_giu5iv3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu6lj4/;1610386241;8;True;False;anime;t5_2qh22;;0;[]; -[];;;cemanresu;;;[];;;;text;t2_s5dwy;False;False;[];;Don't know if they give the exact amount straight up, but they give the distance between each wall and they are circles. I think the center one is about 100 miles across, and then its 100 and 150 between each wall for the other two walls. So a 350 mile radius, which is fucking giant.;False;False;;;;1610337404;;False;{};giu6ljv;False;t3_kujurp;False;False;t1_gitu4m2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu6ljv/;1610386241;9;True;False;anime;t5_2qh22;;0;[]; -[];;;humanityyy;;;[];;;;text;t2_6p7qyx;False;False;[];;"Yeah when Willy Tybur said ""I don't want to die because I was born into this world."", you see Eren's eyes widen slightly. I interpreted that as him maybe thinking that there is hope that Willy Tybur might say ""aight let's stop fighting and just have a peaceful world yall. let's leave the walldians alone"". That maybe he did not have to kill all these people after all. But he still goes on to declare war, and Eren knew he really had no choice.";False;False;;;;1610337425;;False;{};giu6n5u;False;t3_kujurp;False;False;t1_gitrn1s;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu6n5u/;1610386272;10;True;False;anime;t5_2qh22;;0;[]; -[];;;yaminoidles;;;[];;;;text;t2_64rsavk;False;False;[];;8 Titans fought amongst themselves and the Founding Titan served as the peacekeeper.;False;False;;;;1610337427;;False;{};giu6n9n;False;t3_kujurp;False;False;t1_giu67u3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu6n9n/;1610386274;8;True;False;anime;t5_2qh22;;0;[]; -[];;;HattoriSaizoII;;;[];;;;text;t2_72680hhu;False;False;[];;Paradis Island send their regards.;False;False;;;;1610337442;;False;{};giu6ocr;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu6ocr/;1610386294;15;True;False;anime;t5_2qh22;;0;[]; -[];;;BlooregardQKazoo;;;[];;;;text;t2_3uspr;False;False;[];;"someone created a google map where you could move the walls around and see just how big they are: - -http://davidmear.com/snk/map/";False;False;;;;1610337454;;False;{};giu6p63;False;t3_kujurp;False;False;t1_gits50y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu6p63/;1610386311;56;True;False;anime;t5_2qh22;;0;[]; -[];;;Beiki;;;[];;;;text;t2_5vetn;False;False;[];;SUSUME;False;False;;;;1610337459;;False;{};giu6pko;False;t3_kujurp;False;True;t1_gisizez;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu6pko/;1610386318;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;And expose the precious Tyburs to the heartbreak of losing a child? Never;False;False;;;;1610337459;;False;{};giu6pl4;False;t3_kujurp;False;True;t1_gitvsiu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu6pl4/;1610386320;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TicketCool;;;[];;;;text;t2_9jrr6yuo;False;False;[];;"meh it was mostly infrastructure damage, the roads were empty which leads me to think everyone was evacuated. With how populated Paradis Island is, I doubt without any evacuation, the road would be absolutely empty. - -me thinks the church praying dumbasses just refused to move from their spot.";False;False;;;;1610337565;;False;{};giu6wzk;False;t3_kujurp;False;True;t1_gismcx7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu6wzk/;1610386464;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;I think so manga readers have some over-the-moon expectations which can't be fulfilled in any circumstances. I mean it's not their fault but anime has so far lived up to the hype and expectations, MAPPA has been doing tremendous work and maybe because of studio change they are focusing more on mistakes and are nitpicking in every way possible.;False;False;;;;1610337594;;False;{};giu6yzj;False;t3_kujurp;False;False;t1_giu6cph;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu6yzj/;1610386501;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GhostOfLight;;;[];;;;text;t2_go8xe;False;False;[];;"What an amazing episode, only complaint is that it was 5 minutes long. Some thoughts: - -Willy's Speech: I came into this episode half expecting Willy to call for death to all Eldians and the army would start mowing down the crowd, but was pretty surprised by him revealing the truth about Paradis. About halfway through the speech I thought there was a possibility that he and Eren had planned this together; with Willy explaining that the real enemy was Eren, not the people inside the wall, and Eren basically agreed to take the heat to save Paradis. The actual declaration of war was still pretty terrifying. - -Eren+Reiner: What a nice reunion. Both of them need some serious therapy. Eren has gone from someone who always let his emotions take control to the coldest mf'er in the room. Seeing him acknowledge that him and Reiner aren't so different was a nice little moment. And then Eren transforming right there was wild to me. Obviously seeing him transform after he pointed out the building of innocents was shock, but what shocked me most was that he did it with Falco in the room. I'm almost certain he survived either by Reiner protecting him or Eren going more up than out when transforming, but it shows that Eren is willing to sacrifice one of the innocent people he's met and talked to. - -Other: That's gotta be Armin who put Pieck and Jaw in the pit right? Puts on a hell of a big boy voice. I'd also be interested to know where the rest of the gang is and who's at the event vs. who's j chilling elsewhere.";False;False;;;;1610337620;;False;{};giu70ub;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu70ub/;1610386536;11;True;False;anime;t5_2qh22;;0;[]; -[];;;HattoriSaizoII;;;[];;;;text;t2_72680hhu;False;False;[];;That's my best girl.;False;False;;;;1610337635;;False;{};giu71v4;False;t3_kujurp;False;False;t1_gise7va;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu71v4/;1610386555;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CatCryogenic;;;[];;;;text;t2_16nq9n;False;False;[];;"Holy shit bros, 17k karma! - -Edit: Jesus christ...";False;False;;;;1610337655;;1610385437.0;{};giu734w;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu734w/;1610386581;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Thorgarthebloodedone;;;[];;;;text;t2_16d712;False;False;[];;Great Season Great episode so happy;False;False;;;;1610337656;;False;{};giu737d;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu737d/;1610386582;5;True;False;anime;t5_2qh22;;0;[]; -[];;;CR7LM10KM10;;;[];;;;text;t2_37t6wutg;False;False;[];;The hype is real;False;False;;;;1610337662;;False;{};giu73m9;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu73m9/;1610386592;6;True;False;anime;t5_2qh22;;0;[]; -[];;;BurcoPresents;;;[];;;;text;t2_3x4y3e13;False;False;[];;Was only there for 2 episodes, but one of the most memorable characters for me. Idk why I just really liked his character for some reason.;False;False;;;;1610337672;;False;{};giu74dg;False;t3_kujurp;False;False;t1_gisdakp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu74dg/;1610386611;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GGG100;;;[];;;;text;t2_n30n6;False;False;[];;Nah, Re Zero S2P2 is Willy declaring war on AoT for karma and AoT S4 is Eren smashing the competition before it even begins;False;False;;;;1610337673;;1610338023.0;{};giu74em;False;t3_kujurp;False;False;t1_gisdt4n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu74em/;1610386612;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Sendhentaiandyiff;;;[];;;;text;t2_5siyko1h;False;False;[];;"Eh, with the timeskip, it makes it just go like ""they look different because they were way younger"" to me.";False;False;;;;1610337675;;False;{};giu74kl;False;t3_kujurp;False;False;t1_gist6ce;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu74kl/;1610386614;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Bob8644;;null a-amq;[];;;dark;text;t2_q5pk2;False;False;[];;"End of ep. 63: Target neutralized. - -The letters: Tango down.";False;False;;;;1610337679;;False;{};giu74uv;False;t3_kujurp;False;True;t1_giscnq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu74uv/;1610386622;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lp_phnx327;;;[];;;;text;t2_66rsi;False;False;[];;"It never occurred to me that the wall titans could be considered ""colossal titans"" as Willy describes. Was it ever mentioned that the Founding Titan had the power to transform any Eldian into that size-class titan or is this new information?";False;False;;;;1610337683;;1610340510.0;{};giu754z;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu754z/;1610386626;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Bob8644;;null a-amq;[];;;dark;text;t2_q5pk2;False;False;[];;""" Wait wha- """;False;False;;;;1610337707;;False;{};giu76si;False;t3_kujurp;False;True;t1_gisanh4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu76si/;1610386662;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Beiki;;;[];;;;text;t2_5vetn;False;False;[];;That's one of my favorite scenes where Armin is trying to get in touch with Eren so he can control the titan and move the boulder. Armin asks him why he wanted to go beyond the walls and Eren answers because he was born into this world.;False;False;;;;1610337709;;False;{};giu76xy;False;t3_kujurp;False;True;t1_gishd5x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu76xy/;1610386665;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;Agh sorry. I get too excited because I love the story so much. I blasted through the web novel after the S2 part one episode with the parents and it's hard to find people to talk to. My wife gives zero fucks and I was stupid enough to get temp banned from /r/Re_Zero for a VERY minor infraction but they don't fuck around in there. I deleted the comment. I should know better. Sorry...;False;False;;;;1610337732;;False;{};giu78ja;False;t3_kujurp;False;True;t1_giu3pvo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu78ja/;1610386698;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JBard_;;;[];;;;text;t2_13nafyqg;False;False;[];;"The German bit in first op. I think it says something like ""are we the prey or are we the hunters.""";False;False;;;;1610337758;;False;{};giu7aal;False;t3_kujurp;False;False;t1_giu65se;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7aal/;1610386731;17;True;False;anime;t5_2qh22;;0;[]; -[];;;PushEmma;;MAL;[];;http://myanimelist.net/animelist/SleepingWolves;dark;text;t2_m6lcw;False;False;[];;Then don't spoil.;False;False;;;;1610337792;;False;{};giu7cli;False;t3_kujurp;False;True;t1_gisx5d3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7cli/;1610386782;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Positive_Magician_52;;;[];;;;text;t2_4sz9duif;False;False;[];;Ahh okayy. I thought blonde guy + Pieck finds him familiar = Armin. But you're right, I might've jumped the gun;False;False;;;;1610337800;;False;{};giu7d5o;False;t3_kujurp;False;True;t1_giu669d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7d5o/;1610386793;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Stonewindow;;;[];;;;text;t2_13fxov;False;False;[];;We have known that since season 2. Just remember how massive the face of the Wall titan was, and how high up it was. Also we saw drawings of the titans hardening to create the walls in Grisha's flashbacks.;False;False;;;;1610337815;;False;{};giu7e6e;False;t3_kujurp;False;False;t1_giu1syn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7e6e/;1610386818;17;True;False;anime;t5_2qh22;;0;[]; -[];;;clikplay;;;[];;;;text;t2_db345;False;False;[];;"Idk what are you on about regarding titan rain but yeah I'm pretty sure they do, if anything they now have them from marley's ships -Exactly, Marley suffered to fight paradis with them lacking almost any preparation WHILE having a political war. Now 4 years have passed, it's been 4 years that paradis doesn't have wandering titans and doesn't fight marley while Marley has been in war with other countries, yeah I'm pretty sure they would be able to fight -If the other countries were oh so scared of eldians they wouldn't enter an eldian internment camp as well as listen to the words of a guy with eldian blood. And if they were really scared, Eren just made it worse by alllowing Willy's whole speech and declaration of war against paradis lol -The way for the protagonist to have a ""hard"" time overcoming his enemies to have some sort of ""tension"" is him exterminating innocent people? lmao";False;False;;;;1610337842;;1610338068.0;{};giu7fx7;False;t3_kujurp;False;True;t1_giu51x2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7fx7/;1610386856;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Positive_Magician_52;;;[];;;;text;t2_4sz9duif;False;False;[];;Maybe colossal titan side effect?;False;False;;;;1610337866;;False;{};giu7ho2;False;t3_kujurp;False;True;t1_giu49g8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7ho2/;1610386894;2;True;False;anime;t5_2qh22;;0;[]; -[];;;csbsju_guyyy;;;[];;;;text;t2_aiy98;False;False;[];;Hmm, could be some sort of 4d chess and Willy basically set up Eren's punchline and was planning on being sacrificed?;False;False;;;;1610337877;;False;{};giu7ig5;False;t3_kujurp;False;False;t1_giu0tis;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7ig5/;1610386910;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Kureimi;;;[];;;;text;t2_13l673;False;False;[];;Damnnn;False;False;;;;1610337900;;False;{};giu7k2y;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7k2y/;1610386943;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PushEmma;;MAL;[];;http://myanimelist.net/animelist/SleepingWolves;dark;text;t2_m6lcw;False;False;[];;I know it is technically bad, but I don't feel pity. They were portrayed as quite dumb for believing such an obvius prick and they never felt bad about the oppressed Eldians. The Eren squad has to do something also against an entire empire.;False;False;;;;1610337913;;False;{};giu7l00;False;t3_kujurp;False;True;t1_gisurtq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7l00/;1610386963;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bob8644;;null a-amq;[];;;dark;text;t2_q5pk2;False;False;[];;""" Damn, that's crazy, Eren...do you know who Brock Lesnar is? """;False;False;;;;1610337941;;False;{};giu7mzk;False;t3_kujurp;False;True;t1_gisfg3d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7mzk/;1610387004;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kureimi;;;[];;;;text;t2_13l673;False;False;[];;Perfect timing;False;False;;;;1610337952;;False;{};giu7nqw;False;t3_kujurp;False;True;t1_gisb4s7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7nqw/;1610387022;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BurcoPresents;;;[];;;;text;t2_3x4y3e13;False;False;[];;9 hours, 17.1k;False;False;;;;1610337952;;False;{};giu7nro;False;t3_kujurp;False;False;t1_gitq6iv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7nro/;1610387023;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610337954;;False;{};giu7nv5;False;t3_kujurp;False;True;t1_gislyf5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7nv5/;1610387027;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PushEmma;;MAL;[];;http://myanimelist.net/animelist/SleepingWolves;dark;text;t2_m6lcw;False;False;[];;Ymir dying off screen is one thing. Won't happen to Reiner.;False;False;;;;1610337955;;False;{};giu7nzz;False;t3_kujurp;False;False;t1_giu0a6c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7nzz/;1610387030;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Kureimi;;;[];;;;text;t2_13l673;False;False;[];;🙄;False;False;;;;1610337964;;False;{};giu7on6;False;t3_kujurp;False;False;t1_gisi3uy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7on6/;1610387046;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kureimi;;;[];;;;text;t2_13l673;False;False;[];;Lmao;False;False;;;;1610337972;;False;{};giu7p53;False;t3_kujurp;False;True;t1_gisbgr0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7p53/;1610387058;3;True;False;anime;t5_2qh22;;0;[]; -[];;;enshrowdofficial;;;[];;;;text;t2_f9j44y7;False;False;[];;not really sure if it’s a callback but i’m pretty sure i thought i saw Jean in one of the earlier S4 episodes buying a newspaper with that disguise he had back in S3 i believe;False;False;;;;1610337980;;False;{};giu7pqm;False;t3_kujurp;False;False;t1_gislyf5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7pqm/;1610387091;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;I didnt;False;False;;;;1610337981;;False;{};giu7pr6;False;t3_kujurp;False;False;t1_giu7cli;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7pr6/;1610387091;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BurcoPresents;;;[];;;;text;t2_3x4y3e13;False;False;[];;wuh;False;False;;;;1610337988;;False;{};giu7qa8;False;t3_kujurp;False;False;t1_gitarlc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7qa8/;1610387104;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;Until you don't see one of their shoes flying off in the distance you have to assume they are alive.;False;False;;;;1610338002;;False;{};giu7r7d;False;t3_kujurp;False;True;t1_giu5qhp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7r7d/;1610387133;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610338017;;False;{};giu7saf;False;t3_kujurp;False;True;t1_gisbq8r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7saf/;1610387164;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Anasthera;;;[];;;;text;t2_7ea1r;False;False;[];;"Gives you more insight on his statement when he revealed himself. - -""If only there weren't people this... I wouldn't have become a half-assed piece of shit!""";False;False;;;;1610338020;;False;{};giu7sib;False;t3_kujurp;False;False;t1_gisxncj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7sib/;1610387169;38;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazzlike_Razzmatazz;;;[];;;;text;t2_5ybf9h66;False;False;[];;"I was talking about in general. - -Let's se OC was saying animation could have been better imo ..and ppl at mappa think this is the best they could deliver in Their opinion so imo OC comments override Their opinions or Maybe i reading too much.";False;False;;;;1610338032;;False;{};giu7td3;False;t3_kujurp;False;True;t1_giu62e4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7td3/;1610387188;3;True;False;anime;t5_2qh22;;0;[]; -[];;;swordmalice;;MAL;[];;http://myanimelist.net/animelist/swordmalice;dark;text;t2_doqci;False;False;[];;Got it, thanks.;False;False;;;;1610338038;;False;{};giu7tr8;False;t3_kujurp;False;True;t1_giu6n9n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7tr8/;1610387198;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Anasthera;;;[];;;;text;t2_7ea1r;False;False;[];;"It's just like Eren said. - -""I didn't have a choice."" - -What do you do when the entire world declares war on you? - -You do what Eren did.";False;False;;;;1610338082;;False;{};giu7wv8;False;t3_kujurp;False;False;t1_gishl8w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7wv8/;1610387260;10;True;False;anime;t5_2qh22;;0;[]; -[];;;TicketCool;;;[];;;;text;t2_9jrr6yuo;False;False;[];;I thought in the earlier episodes that everyone who inherited the Founding Titan immediately became passive towards Marley? Does Eren not inherit the passiveness because he also has the Attack Titan? Damn, Grisha Yeager has a large head.;False;False;;;;1610338084;;False;{};giu7x0r;False;t3_kujurp;False;False;t1_giu4ah0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7x0r/;1610387263;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BurcoPresents;;;[];;;;text;t2_3x4y3e13;False;False;[];;Attack On Karma;False;False;;;;1610338086;;False;{};giu7x4g;False;t3_kujurp;False;False;t1_gisdt4n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7x4g/;1610387265;5;True;False;anime;t5_2qh22;;0;[]; -[];;;GosuGian;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GosuDRM;light;text;t2_mu7ij;False;False;[];;"What an entrance! - -Next Episode: War Hammer Titan :O";False;False;;;;1610338093;;False;{};giu7xlu;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu7xlu/;1610387276;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Powerful_Quality_207;;;[];;;;text;t2_98vrm2t5;False;False;[];;Was the hand cut just to show that he could transform at any time?;False;False;;;;1610338137;;False;{};giu80o5;False;t3_kujurp;False;True;t1_gisa5o0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu80o5/;1610387336;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kureimi;;;[];;;;text;t2_13l673;False;False;[];;😮;False;False;;;;1610338145;;False;{};giu816h;False;t3_kujurp;False;True;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu816h/;1610387345;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610338148;;False;{};giu81d6;False;t3_kujurp;False;True;t1_giu754z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu81d6/;1610387349;1;True;False;anime;t5_2qh22;;0;[]; -[];;;joe4553;;MAL;[];;https://myanimelist.net/animelist/EmiyaRin;dark;text;t2_nujxw;False;False;[];;So did Eren also kill Reiner or is he just going to let him watch?;False;False;;;;1610338153;;False;{};giu81ot;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu81ot/;1610387356;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mang0es;;;[];;;;text;t2_7l75r;False;False;[];;19:15 is that Mikasa?;False;False;;;;1610338157;;False;{};giu81y1;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu81y1/;1610387361;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;It's a group of manga readers. They have been jerking off to fan animations of this episode with Youseebiggirl for years now. So, when they saw the declaration of war scene without that ost, they became furious. Now they are trying to nitpick everything wrong with the episode, going so far as to say there are some idle animations as if this were a movie.;False;False;;;;1610338162;;False;{};giu828t;False;t3_kujurp;False;False;t1_giu5swv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu828t/;1610387367;14;True;False;anime;t5_2qh22;;0;[]; -[];;;eepicprimee;;;[];;;;text;t2_gbmpm;False;False;[];;Yup;False;False;;;;1610338162;;False;{};giu8291;False;t3_kujurp;False;True;t1_giu80o5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu8291/;1610387367;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dazzlehoff;;MAL;[];;http://myanimelist.net/animelist/Dazzlehoff;dark;text;t2_agrvz;False;False;[];;It's cool I'm probably a little too strict about it! Don't think they have LN discussions on /r/Re_Zero ?;False;False;;;;1610338165;;False;{};giu82eq;False;t3_kujurp;False;True;t1_giu78ja;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu82eq/;1610387369;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PushEmma;;MAL;[];;http://myanimelist.net/animelist/SleepingWolves;dark;text;t2_m6lcw;False;False;[];;They implied someone in the family could be the Titan and digged in that possibility. It being Willy would simply destroy that part. He seems to be good in his role which is not a fighter, also. And would be an obvious choice for anyone when they want to keep the identity of the titan secret. I think we were basically given information its not him.;False;False;;;;1610338169;;False;{};giu82ng;False;t3_kujurp;False;False;t1_giu13u4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu82ng/;1610387373;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;You are most definitely reading into things too much. Also, while downvotes were originally intended to filter out irrelevant comments, they have almost always been used as a dislike button, thus a downvoted comment is rejected.;False;False;;;;1610338202;;False;{};giu84vb;False;t3_kujurp;False;True;t1_giu7td3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu84vb/;1610387416;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AussieManny;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Nauran;light;text;t2_13tmtu;False;False;[];;"Ah, thank you. That struggle for resources is important. - -I'll edit my comment.";False;False;;;;1610338214;;False;{};giu85mh;False;t3_kujurp;False;True;t1_giu5so4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu85mh/;1610387431;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BurcoPresents;;;[];;;;text;t2_3x4y3e13;False;False;[];;I think promised neverland, re zero, dr stone are gonna have a 2nd season this month right?;False;False;;;;1610338217;;False;{};giu85uq;False;t3_kujurp;False;False;t1_giu46pu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu85uq/;1610387437;11;True;False;anime;t5_2qh22;;0;[]; -[];;;TicketCool;;;[];;;;text;t2_9jrr6yuo;False;False;[];;Tbh even rn Marley tryna kill everyone in Paradis Island and get the Founding Titan. Seems to be an obvious eventuality that they were gonna have to kill each other at some point just to survive.;False;False;;;;1610338233;;False;{};giu86uq;False;t3_kujurp;False;True;t1_gisnfjh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu86uq/;1610387457;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;I dont know what you mean by ‘this is AOT after all’ but your issue of titan shifter transformation has been addressed in Season 1 and many people have answered it so yeah;False;False;;;;1610338241;;False;{};giu87dg;False;t3_kujurp;False;False;t1_gitkpsz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu87dg/;1610387466;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rha_psody;;;[];;;;text;t2_98b54u1;False;False;[];;"You have to consume their spinal fluid. The titan that ate Eren did not bite his spine, he just swallowed him ""whole"".";False;False;;;;1610338267;;False;{};giu891w;False;t3_kujurp;False;False;t1_giu5y0s;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu891w/;1610387497;11;True;False;anime;t5_2qh22;;0;[]; -[];;;danja386;;;[];;;;text;t2_2umvp5g8;False;False;[];;Since they started killing them all the time and have thos titan slayer guillotines at the walls;False;False;;;;1610338267;;False;{};giu8931;False;t3_kujurp;False;True;t1_gituzb8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu8931/;1610387498;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PushEmma;;MAL;[];;http://myanimelist.net/animelist/SleepingWolves;dark;text;t2_m6lcw;False;False;[];;Then its not a callback like others IMO.;False;False;;;;1610338293;;False;{};giu8awb;False;t3_kujurp;False;True;t1_giu1iez;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu8awb/;1610387534;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fullbryte;;;[];;;;text;t2_d9ued;False;False;[];;As expected of Chadren;False;False;;;;1610338348;;False;{};giu8eht;False;t3_kujurp;False;True;t1_gitega4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu8eht/;1610387603;3;True;False;anime;t5_2qh22;;0;[]; -[];;;swordmalice;;MAL;[];;http://myanimelist.net/animelist/swordmalice;dark;text;t2_doqci;False;False;[];;"Got it; wow talk about attention to details. God I love this story.";False;False;;;;1610338355;;False;{};giu8ezl;False;t3_kujurp;False;False;t1_giu891w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu8ezl/;1610387613;4;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;Should be Eren. Looks just like him and fits in with his lines about having lived among them.;False;False;;;;1610338367;;False;{};giu8fs0;False;t3_kujurp;False;False;t1_giu81y1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu8fs0/;1610387633;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Ljh_;;;[];;;;text;t2_vo6evkl;False;False;[];;Are you talking about Reiner the plot armour titan xD;False;False;;;;1610338373;;False;{};giu8g4y;False;t3_kujurp;False;False;t1_giu5qhp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu8g4y/;1610387639;18;True;False;anime;t5_2qh22;;0;[]; -[];;;reeposterr;;;[];;;;text;t2_3hze6430;False;False;[];;That xl-tt soundtrack though... Can't wait for the next episode.;False;False;;;;1610338418;;False;{};giu8j2y;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu8j2y/;1610387696;3;True;False;anime;t5_2qh22;;0;[]; -[];;;csbsju_guyyy;;;[];;;;text;t2_aiy98;False;False;[];;What episode was this? I'm thinking it was the one where the trainees are trapped in the supply building?;False;False;;;;1610338442;;False;{};giu8koh;False;t3_kujurp;False;True;t1_git1v9j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu8koh/;1610387726;3;True;False;anime;t5_2qh22;;0;[]; -[];;;psychsucks;;;[];;;;text;t2_7pinf0kz;False;False;[];;I wouldn’t classify AoT as shounen, but as a Seinen instead;False;False;;;;1610338447;;False;{};giu8l1y;False;t3_kujurp;False;True;t1_gisf53y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu8l1y/;1610387733;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TripleDet;;;[];;;;text;t2_fqb14;False;False;[];;That’s the roar of the Titan that set Eren on this path in the first place...and now Eren gets to give that exact experience, pose and all, to some child in the audience that just watched him kill a house full of people. Full circle.;False;False;;;;1610338463;;False;{};giu8m1j;False;t3_kujurp;False;False;t1_giu0f0z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu8m1j/;1610387752;43;True;False;anime;t5_2qh22;;0;[]; -[];;;Sendhentaiandyiff;;;[];;;;text;t2_5siyko1h;False;False;[];;We saw them in the wall already? No-skin and all? How is this a revelation?;False;False;;;;1610338479;;False;{};giu8n3g;False;t3_kujurp;False;False;t1_giu1syn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu8n3g/;1610387773;4;True;False;anime;t5_2qh22;;0;[]; -[];;;csbsju_guyyy;;;[];;;;text;t2_aiy98;False;False;[];;"""don't jump the gun here Reiner, it's in the works""";False;False;;;;1610338540;;False;{};giu8qz6;False;t3_kujurp;False;True;t1_gisy26e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu8qz6/;1610387846;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MrYurMomm;;;[];;;;text;t2_a7vxs;False;True;[];;In this context, I understand;False;False;;;;1610338557;;False;{};giu8s37;False;t3_kujurp;False;False;t1_git827w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu8s37/;1610387869;12;True;False;anime;t5_2qh22;;0;[]; -[];;;JBard_;;;[];;;;text;t2_13nafyqg;False;False;[];;So I haven't seen anyone saying this yet but that was totally Armin who trapped Cart and Jaw right?;False;False;;;;1610338563;;False;{};giu8shv;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu8shv/;1610387877;13;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;"Man, this is just hype here, hype there, hype everywhere lol. - -Willy got clapped a second after his declaration of war lmao. - -R.I.P Willy, you will not be remembered.";False;False;;;;1610338575;;False;{};giu8t90;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu8t90/;1610387891;21;True;False;anime;t5_2qh22;;0;[]; -[];;;agentdoubleohio;;;[];;;;text;t2_kaqpu;False;False;[];;Now you be the starving orphan;False;False;;;;1610338592;;False;{};giu8uee;False;t3_kujurp;False;True;t1_gisafs9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu8uee/;1610387913;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HattoriSaizoII;;;[];;;;text;t2_72680hhu;False;False;[];;Eren spent years on maxing out his build before joining the team clash.;False;False;;;;1610338595;;False;{};giu8ukp;False;t3_kujurp;False;True;t1_gisch0n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu8ukp/;1610387917;1;True;False;anime;t5_2qh22;;0;[]; -[];;;csbsju_guyyy;;;[];;;;text;t2_aiy98;False;False;[];;"""I see absolutely no issue with this"" - Falco";False;False;;;;1610338658;;False;{};giu8ykf;False;t3_kujurp;False;False;t1_gisti7g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu8ykf/;1610387989;4;True;False;anime;t5_2qh22;;0;[]; -[];;;danja386;;;[];;;;text;t2_2umvp5g8;False;False;[];;Is it german? Because I never understood anything else other then Jäger even tho im german;False;False;;;;1610338711;;False;{};giu926g;False;t3_kujurp;False;False;t1_giu7aal;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu926g/;1610388058;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Espada_6;;;[];;;;text;t2_sb5ghaa;False;False;[];;It’s still a callback;False;False;;;;1610338718;;False;{};giu92nj;False;t3_kujurp;False;True;t1_giu8awb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu92nj/;1610388067;3;True;False;anime;t5_2qh22;;0;[]; -[];;;YakubTheCreat0r;;;[];;;;text;t2_375tul6u;False;False;[];;I agree! I have long waited for this scene. I’m still happy, but there was room for improvement, and you stated those points that would have made it even more amazing. Getting a better view of Eren killing those civilians also made a huge impact when we discussed the chapter;False;False;;;;1610338742;;False;{};giu9480;False;t3_kujurp;False;False;t1_giu520r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9480/;1610388097;6;True;False;anime;t5_2qh22;;0;[]; -[];;;owliverqueen;;;[];;;;text;t2_13dr9h;False;False;[];;Eren does not have the cuck genes of the founder. Only royalty of the Reiss and Fritz bloodlines will be affected by King Karl’s will. This was explained in season 3 part 2.;False;False;;;;1610338763;;False;{};giu95o6;False;t3_kujurp;False;False;t1_giu7x0r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu95o6/;1610388124;35;True;False;anime;t5_2qh22;;0;[]; -[];;;Shortstop88;;;[];;;;text;t2_b6ar6;False;False;[];;If everyone around during a war declaration dies, is there a war declared? Seems like a tree in the woods situation.;False;False;;;;1610338822;;False;{};giu99k3;False;t3_kujurp;False;False;t1_gish1o8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu99k3/;1610388201;3;True;False;anime;t5_2qh22;;0;[]; -[];;;inv0kr;;;[];;;;text;t2_ebfs3;False;False;[];;Nope that wasn’t cut. It was said during “that day” I’m pretty sure. I very much remember this since I’m currently rewatching all of attack on titan;False;False;;;;1610338838;;False;{};giu9aq3;False;t3_kujurp;False;False;t1_gitn4k6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9aq3/;1610388222;10;True;False;anime;t5_2qh22;;0;[]; -[];;;YouthCurse;;;[];;;;text;t2_5eoufet0;False;False;[];;But are we sure that he's not the warhammer? I don't read manga so I don't know, and please keep the suspense;False;False;;;;1610338841;;False;{};giu9av2;False;t3_kujurp;False;True;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9av2/;1610388225;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"I mean AoT has extreme amounts of foreshadowing and callbacks as well as subtle details which come up as major plot points later; I concluded that Eren pre cutting his hand earlier was a major detail or something and had to do with making reiner activate his transformation - -I was surprised to know it wasn't such a big deal - -It was just a wild theory from lack of proper understanding of titan transformation";False;False;;;;1610338853;;False;{};giu9bqn;False;t3_kujurp;False;True;t1_giu87dg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9bqn/;1610388243;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazzlike_Razzmatazz;;;[];;;;text;t2_5ybf9h66;False;False;[];;So its simple means ppl don't agree or share your opinion. What's wrong with that then..its the simplest way to show opinion without writing the comments.;False;False;;;;1610338865;;False;{};giu9ciq;False;t3_kujurp;False;True;t1_giu84vb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9ciq/;1610388258;2;True;False;anime;t5_2qh22;;0;[]; -[];;;csbsju_guyyy;;;[];;;;text;t2_aiy98;False;False;[];;[EP5 Falco](https://i.imgur.com/onktyEr.mp4);False;False;;;;1610338874;;False;{};giu9d4l;False;t3_kujurp;False;True;t1_gisc3ca;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9d4l/;1610388269;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lordofdepression;;;[];;;;text;t2_75f08;False;False;[];;He's one of the good ones!;False;False;;;;1610338888;;False;{};giu9e27;False;t3_kujurp;False;False;t1_gitnoq0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9e27/;1610388287;8;True;False;anime;t5_2qh22;;0;[]; -[];;;DoILookUnsureToYou;;;[];;;;text;t2_2wwz4mit;False;False;[];;">Only people who haven’t seen the show - -Past season 1, because season 1 was a shonen anime with ""heroes fighting giant man eating titans""";False;False;;;;1610338897;;1610368815.0;{};giu9epc;False;t3_kujurp;False;False;t1_gitadvh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9epc/;1610388301;22;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610338913;;1610349515.0;{};giu9fqf;False;t3_kujurp;False;True;t1_giu7pr6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9fqf/;1610388324;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DarKav1411;;;[];;;;text;t2_28hr9sci;False;False;[];;"Will it remain secret if he reveals it to everyone? And will it work on us non-Eldians? - -These are the real questions that need to be answered dammit, screw this Declaration of War!";False;False;;;;1610338931;;False;{};giu9gvy;False;t3_kujurp;False;True;t1_gitny91;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9gvy/;1610388347;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lordofdepression;;;[];;;;text;t2_75f08;False;False;[];;"He has never been the bad guy to me - -My fellow Yeagerists rise up!";False;False;;;;1610338941;;False;{};giu9hjm;False;t3_kujurp;False;False;t1_gisxncj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9hjm/;1610388361;16;True;False;anime;t5_2qh22;;0;[]; -[];;;csbsju_guyyy;;;[];;;;text;t2_aiy98;False;False;[];;Yeah had to go back and find it too, but definitely dude's head meeting a flying piece of rubble;False;False;;;;1610338960;;False;{};giu9ipe;False;t3_kujurp;False;False;t1_git2bzz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9ipe/;1610388393;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Momo--Sama;;;[];;;;text;t2_573blgrj;False;False;[];;The basement is a pathway to many abilities, some considered to be unnatural.;False;False;;;;1610338963;;False;{};giu9ixu;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9ixu/;1610388399;12;True;False;anime;t5_2qh22;;0;[]; -[];;;YouthCurse;;;[];;;;text;t2_5eoufet0;False;False;[];;I wouldn't be surprised if he splits again and sides with Team Paradis;False;False;;;;1610338984;;False;{};giu9ke9;False;t3_kujurp;False;True;t1_gise6z3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9ke9/;1610388429;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TicketCool;;;[];;;;text;t2_9jrr6yuo;False;False;[];;Antagonist does not mean bad, and protagonist does not mean good. If the show showed things in Reiner's perspective, and Reiner was the main character, Reiner would be the protagonist and not Eren.;False;False;;;;1610338989;;False;{};giu9kr6;False;t3_kujurp;False;True;t1_gistz0c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9kr6/;1610388436;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Holy shit, I'm only seeing now the number of karma here, 3k to beat the record, I'm very impressed, I expected this from episode 6;False;False;;;;1610339027;;1610339218.0;{};giu9nle;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9nle/;1610388496;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackkage1;;;[];;;;text;t2_5rhv16l9;False;False;[];;Imma just say that episode was stretched out so long I’m the manga wren turns into a titan 5 minutes into the conversation.can they really end the show this season ?;False;True;;comment score below threshold;;1610339034;;False;{};giu9o44;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9o44/;1610388506;-31;True;False;anime;t5_2qh22;;0;[]; -[];;;TicketCool;;;[];;;;text;t2_9jrr6yuo;False;False;[];;Yeah soz I totally forgot about what Willy Tybur was explaining right in this episode lulz;False;False;;;;1610339047;;False;{};giu9p1j;False;t3_kujurp;False;False;t1_giu95o6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9p1j/;1610388524;7;True;False;anime;t5_2qh22;;0;[]; -[];;;eggydrums115;;;[];;;;text;t2_8vrp9;False;False;[];;"It’s clear to me that the writer is reaching high in terms of scope and ambition with where he wants to take the themes in the series. I feel like what’s being presented is bigger than the immediate characters we’ve come to love. - -Loving every second of it.";False;False;;;;1610339098;;False;{};giu9sr0;False;t3_kujurp;False;False;t1_gischn4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9sr0/;1610388601;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CO_ORDINATE;;;[];;;;text;t2_kf9hyuw;False;False;[];;it's kill or be killed bro;False;False;;;;1610339106;;False;{};giu9t9h;False;t3_kujurp;False;True;t1_gitz8xk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9t9h/;1610388611;1;True;False;anime;t5_2qh22;;0;[]; -[];;;prettydirtyboy;;;[];;;;text;t2_1dnzz13c;False;False;[];;Was hoping for more. Even as an anime only watcher I’ve seen fan animations of what happens I was hoping for Eren’s opponent to come out but also wasn’t surprised cause what happens next is the real hype;False;True;;comment score below threshold;;1610339108;;False;{};giu9tfu;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9tfu/;1610388615;-17;True;False;anime;t5_2qh22;;0;[]; -[];;;Thundestroyer;;;[];;;;text;t2_45unx4e2;False;False;[];;Well, the area within Wall Maria is about France, and the walled off area is a pretty small part of Paradis, making it reasonable to compare it to Australia.;False;False;;;;1610339114;;False;{};giu9ts2;False;t3_kujurp;False;False;t1_giu621x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9ts2/;1610388622;10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610339122;;False;{};giu9ub7;False;t3_kujurp;False;True;t1_git7ib0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9ub7/;1610388635;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kirameka;;;[];;;;text;t2_1pxgick3;False;False;[];;I think Eren actually didn't want to kill Falco, he basically told him that he is one of good guys here.;False;False;;;;1610339129;;False;{};giu9utl;False;t3_kujurp;False;False;t1_giu70ub;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9utl/;1610388646;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TicketCool;;;[];;;;text;t2_9jrr6yuo;False;False;[];;You say that from the comfort of your bed.;False;False;;;;1610339139;;False;{};giu9vge;False;t3_kujurp;False;True;t1_gite60v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9vge/;1610388658;0;True;False;anime;t5_2qh22;;0;[]; -[];;;cadence_the_sad;;;[];;;;text;t2_1xfcc87z;False;False;[];;Don't pretend that a declaration of war changes anything about Eren flattening civilians lmao;False;True;;comment score below threshold;;1610339152;;False;{};giu9wcp;False;t3_kujurp;False;True;t1_git39gg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9wcp/;1610388677;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;The only thing I said was the reaction of the fandom. I didnt mention anything about the story.;False;False;;;;1610339154;;False;{};giu9wgh;False;t3_kujurp;False;True;t1_giu9fqf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9wgh/;1610388680;1;True;False;anime;t5_2qh22;;0;[]; -[];;;uncen5ored;;;[];;;;text;t2_800mwmv;False;False;[];;"No worries, that’s the question Isayama wants you to ask. Because an enemy nation destroyed your hometown, killed your mother and made your life hell...& then you witness them have a speech asking for your extinction and declare war against your people with the ENTIRE WORLD...does that justify a sneak attack that includes civilians to kill their leader? Even if the enemy nation also killed civilians? This show doesn’t shy from the cruelties of war, and even THE main character isnt spared. It’s why Eren “keeps moving forward,” despite knowing what his actions will do. I know it’s taboo to mention this show now, but the Marley Arc began entering (peak) Game of Thrones levels of morally grey for me. Some of my favorite characters, who did want good things, did terrible things to Achieve them. I prefer this level of writing over the cliche black & white, good vs evil writing many stories have. This is closer to reality, and definitely harder to nail";False;False;;;;1610339158;;False;{};giu9ws1;False;t3_kujurp;False;False;t1_giu2wb3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9ws1/;1610388686;13;True;False;anime;t5_2qh22;;0;[]; -[];;;OhMilla;;;[];;;;text;t2_84kkn;False;False;[];;Yea sorry dawg we're gonna have to agree to disagree. I can't objectively call the series good when most of the characters have gone to shit with paths making no sense.;False;False;;;;1610339163;;False;{};giu9x3v;False;t3_kujurp;False;True;t1_giu4ssx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9x3v/;1610388693;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;arafatnabi;;;[];;;;text;t2_ghvya;False;False;[];;It was more stretched out in manga. You probably binge read the manga skipping panels.;False;False;;;;1610339166;;False;{};giu9xag;False;t3_kujurp;False;False;t1_giu9o44;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9xag/;1610388697;16;True;False;anime;t5_2qh22;;0;[]; -[];;;sitwm;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/BlueMoon01;light;text;t2_xft1z;False;False;[];;This episode just speed ran Eren's character development, what a sight to behold;False;False;;;;1610339172;;False;{};giu9xoj;False;t3_kujurp;False;False;t1_gisrcy6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9xoj/;1610388709;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackkage1;;;[];;;;text;t2_5rhv16l9;False;False;[];;I really do;False;True;;comment score below threshold;;1610339187;;False;{};giu9yn7;False;t3_kujurp;False;True;t1_giu9xag;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9yn7/;1610388726;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;PushEmma;;MAL;[];;http://myanimelist.net/animelist/SleepingWolves;dark;text;t2_m6lcw;False;False;[];;Yeah now that was actually good.;False;False;;;;1610339203;;False;{};giu9znq;False;t3_kujurp;False;False;t1_giu8m1j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giu9znq/;1610388746;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackkage1;;;[];;;;text;t2_5rhv16l9;False;False;[];;I still have a hard time believing they’ll end the show though unless it’s like 24 episodes;False;False;;;;1610339222;;False;{};giua0yd;False;t3_kujurp;False;True;t1_giu9xag;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giua0yd/;1610388773;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;cantaneer;;;[];;;;text;t2_1ib8wxpm;False;False;[];;they won’t end the show this season. either there will be a part 2 or movie. also in manga it took 2 fucking chapters for eren to transform. we waited literally 2 months;False;False;;;;1610339236;;False;{};giua1vs;False;t3_kujurp;False;False;t1_giu9o44;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giua1vs/;1610388790;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Vestarne;;HB;[];;hummingbird.me/users/Azoth/feed;dark;text;t2_e1jgb;False;False;[];;I can't believe Eren reference Billie Eilish like that;False;False;;;;1610339252;;False;{};giua2z0;False;t3_kujurp;False;False;t1_gisw1ro;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giua2z0/;1610388812;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DarKav1411;;;[];;;;text;t2_28hr9sci;False;False;[];;"Eren: Oh, I forgot my wallet on Paradis. - -Reiner: *flashbacks to the previous episode*";False;False;;;;1610339264;;False;{};giua3sw;False;t3_kujurp;False;False;t1_giu5zbr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giua3sw/;1610388828;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Toeknee99;;;[];;;;text;t2_axsw5;False;False;[];;Yeah, I was dreading this season as a manga reader because now there are going to be even more [Eren apologists].;False;False;;;;1610339289;;False;{};giua5gq;False;t3_kujurp;False;True;t1_git7ib0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giua5gq/;1610388863;0;True;False;anime;t5_2qh22;;0;[]; -[];;;PushEmma;;MAL;[];;http://myanimelist.net/animelist/SleepingWolves;dark;text;t2_m6lcw;False;False;[];;If it was just an animation callback I would have added more similar lightning and all. But other user provided an interesting correlation.;False;False;;;;1610339302;;False;{};giua69c;False;t3_kujurp;False;True;t1_giu92nj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giua69c/;1610388879;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;I see, i cant blame you for analyzing every minor plot points due to how much the author has planned ahead. And glad that now you understand the scene and your question has been answered !;False;False;;;;1610339318;;False;{};giua7as;False;t3_kujurp;False;False;t1_giu9bqn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giua7as/;1610388897;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DarKav1411;;;[];;;;text;t2_28hr9sci;False;False;[];;"> potato scene - -You mean the most heinous crime in the history of the world?";False;False;;;;1610339325;;False;{};giua7rq;False;t3_kujurp;False;False;t1_git9zqe;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giua7rq/;1610388908;16;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610339326;;False;{};giua7v4;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giua7v4/;1610388911;6;True;False;anime;t5_2qh22;;0;[]; -[];;;OneHappyMelon;;;[];;;;text;t2_ll14b;False;False;[];;"As Eren stated, from here on out, hell do whatever he has to do. If it takes killing a bunch of civilians in a residential building to take out Marley's shadow leader, he did it. If killing the heads of several world governments will place at least a few countries into temporary political turmoil, buying Paradis at least some extra time to prepare, hell do it. If using all of this to draw out the Warhammer Titan and take it out before it gets sent to Paradis for the war means the deaths of civilians in Liberio, he'll do it. - - -Eren knows that this is a war for survival now. His enemies want genocide. He has to hold nothing back. Not even his own morals.";False;False;;;;1610339361;;False;{};giuaa62;False;t3_kujurp;False;False;t1_gisaxz3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuaa62/;1610388971;10;True;False;anime;t5_2qh22;;0;[]; -[];;;amberdesu;;;[];;;;text;t2_f7rnz;False;False;[];;AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA! - Goku;False;False;;;;1610339393;;False;{};giuacb3;False;t3_kujurp;False;False;t1_gitqwl9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuacb3/;1610389012;5;True;False;anime;t5_2qh22;;0;[]; -[];;;GhostOfLight;;;[];;;;text;t2_go8xe;False;False;[];;I definitely don't think he wants to kill Falco, but he (probably) knows that by transforming underground right next to him there's a good chance Falco doesn't survive.;False;False;;;;1610339405;;False;{};giuad2m;False;t3_kujurp;False;False;t1_giu9utl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuad2m/;1610389026;7;True;False;anime;t5_2qh22;;0;[]; -[];;;BADMANvegeta_;;;[];;;;text;t2_13ne3x;False;False;[];;For me AOT didn’t reach the next level till the end of season 3 when they revealed all that stuff. Before that this anime was above average at best.;False;False;;;;1610339422;;False;{};giuae7j;False;t3_kujurp;False;True;t1_giu45et;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuae7j/;1610389047;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackkage1;;;[];;;;text;t2_5rhv16l9;False;False;[];;Yeah true that bro at the very least this next episode will be awesome assuming you already know what happens.I but it will be super stretched out though;False;True;;comment score below threshold;;1610339426;;False;{};giuaei9;False;t3_kujurp;False;True;t1_giua1vs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuaei9/;1610389051;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;Zipstream7;;;[];;;;text;t2_hj1pl;False;False;[];;Great episode;False;False;;;;1610339432;;False;{};giuaeuj;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuaeuj/;1610389058;3;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;"They really did Eren's subtle expression justice, especially during ""Let's forget about that"" and ""Because I was born into this world"".";False;False;;;;1610339438;;False;{};giuafai;False;t3_kujurp;False;True;t1_gisiwej;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuafai/;1610389066;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JBard_;;;[];;;;text;t2_13nafyqg;False;False;[];;"""Seid ihr das Essen? Nein, wir sind die Jäger!"" - -This is the quote. It's sung in a Japanese accent so it makes sense that it would be hard to distinguish. I'm a persona fan so I know the perils of trying to understand words sung outside of their native language. Also it looks like I got the line wrong. You could tell me better but I think that says ""are we the food? No we're the hunters!"" - -Also there's apparently a spoken intro in Japanese that the person might've been referring to but I don't speak Japanese and google translate just got me some nonsense about a kid in a basket so who knows.";False;False;;;;1610339439;;1610339669.0;{};giuafci;False;t3_kujurp;False;False;t1_giu926g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuafci/;1610389067;13;True;False;anime;t5_2qh22;;0;[]; -[];;;blowtorches;;;[];;;;text;t2_2l7vhp6;False;False;[];;"There are 9 shifters - -The colossal titans in the walls are giant mindless titans that are colossally sized made by the first king";False;False;;;;1610339440;;False;{};giuafee;False;t3_kujurp;False;True;t1_giswh9h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuafee/;1610389068;2;True;False;anime;t5_2qh22;;0;[]; -[];;;arthurkindragon;;;[];;;;text;t2_x542p;False;False;[];;This is mirroring what happened when they busted the two walls. Either sides are not wrong because that’s what they are taught to/have to do. But that doesn’t made them right either. Which is why this is morally grey.;False;False;;;;1610339461;;False;{};giuagr2;False;t3_kujurp;False;False;t1_giu15sk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuagr2/;1610389093;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kirameka;;;[];;;;text;t2_1pxgick3;False;False;[];;There's also Reiner here, Eren might count on him to save Falco;False;False;;;;1610339520;;False;{};giuakjp;False;t3_kujurp;False;True;t1_giuad2m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuakjp/;1610389174;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Valkonn;;;[];;;;text;t2_dx7hj;False;False;[];;"I would say FMA:B never really has dips either. None of the episodes are useless and they're all really great. It's a slightly different genre than AOT (lot less dark) but it's just as good imo. - -I think FMAB is a GOAT contender but I didn't like the ending that much. I will say Edward's final dialogue with God is amazing. - -I'd say they're about equal right now but AOT has a good shot of climbing above if the ending turns out to be fire.";False;False;;;;1610339552;;False;{};giuamjz;False;t3_kujurp;False;False;t1_giu45qa;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuamjz/;1610389213;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ChillYoshi;;;[];;;;text;t2_5elicb64;False;False;[];;Ok maybe it’s just me, but if Eren knows there’s good people. Why did he just kill a bunch of innocent people when he transformed? I get fighting back and defending yourself. But here, he takes the first punch.;False;False;;;;1610339555;;False;{};giuamqv;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuamqv/;1610389217;10;True;False;anime;t5_2qh22;;0;[]; -[];;;danja386;;;[];;;;text;t2_2umvp5g8;False;False;[];;Wow I really never understood anything other than the Jäger and yeah your translation here is right.;False;False;;;;1610339556;;False;{};giuamuo;False;t3_kujurp;False;False;t1_giuafci;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuamuo/;1610389219;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Ghostly-Apparition;;;[];;;;text;t2_793fgnyj;False;False;[];;Kakashi's voice actor from Naruto, dude's a champ. I recognize that anywhere.;False;False;;;;1610339561;;False;{};giuan4k;False;t3_kujurp;False;False;t1_gish1o8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuan4k/;1610389224;5;True;False;anime;t5_2qh22;;0;[]; -[];;;BoltOfBlazingGold;;;[];;;;text;t2_11qb6gnq;False;False;[];;"Raining titans, as seen in S4E1 when they dropped them on top of the base from a zeppelin. I don't see Paradis emploiyng the very same tactic. - -I'm sure too they would be able to fight, but to stomp an alliance? Marley alone I'm inclined to agree. They are scared of the eldians of Paradis, a distinction has been made throught the season how eldians in Marley are second class citizens and how they want to separate themselves from the ""demons"" that live in the island and are willing to go as far as to be war meatshields to prove they aren't enemies of humanity. If they didn't have fear then they would've not accepted to go because there would not be any need of alliance and neither would have cheered for war as they did in this episode. - -How did Eren make it worse? if he attacked without provokation then it would validate all the misconceptions against his people, but in this case it falls under simple retaliation, this has even been said all around the thread.";False;False;;;;1610339570;;False;{};giuanoi;False;t3_kujurp;False;True;t1_giu7fx7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuanoi/;1610389235;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_bored_again;;;[];;;;text;t2_6yyjhjlm;False;False;[];;I'm so excited to see the war hammer fight animated:)));False;False;;;;1610339586;;False;{};giuaool;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuaool/;1610389253;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610339586;;False;{};giuaoq9;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuaoq9/;1610389255;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;ashutosh29;;;[];;;;text;t2_5w0dob4v;False;False;[];;"To answer you from what I know. - -Marley and the world will ask Paradis for the death of the founding titan most likely, cause that is the biggest threat. But can Paradis really believe them, we need to keep in mind that Marley was one of the best places for Eldians in the whole world, seriously? Paradis doesn't have any means to protect themselves other than the rumbling from the world but Malrey also can't let a power like that alone. - -No one has a choice, but they all have to keep moving forward.";False;False;;;;1610339631;;False;{};giuark4;False;t3_kujurp;False;False;t1_giu0bnt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuark4/;1610389307;6;True;False;anime;t5_2qh22;;0;[]; -[];;;MavadoBouche;;;[];;;;text;t2_2sxfd6nj;False;False;[];;If you listen closely to willy rumbling can not be used by royal blood because of king fritz, HOWEVER, Eren is not royal blood;False;False;;;;1610339649;;False;{};giuasp6;False;t3_kujurp;False;False;t1_gitu5ej;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuasp6/;1610389329;11;True;False;anime;t5_2qh22;;0;[]; -[];;;GhostOfLight;;;[];;;;text;t2_go8xe;False;False;[];;I'd guess that too, but even then it's not a sure thing. Though Falco being there might also be the only thing that motivates a broken Reiner to transform and not just die.;False;False;;;;1610339672;;False;{};giuau63;False;t3_kujurp;False;True;t1_giuakjp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuau63/;1610389359;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BolZac;;;[];;;;text;t2_6ydnca1o;False;False;[];;Yeah dawg everything makes sense with paths. Try reading a reddit post about Chap 121. You can easily find it. If you read that and still can't understand what happens with paths then the problem is with you. Because almost everyone at least on titan folk subreddit can understand what happened.;False;False;;;;1610339681;;False;{};giuauqj;False;t3_kujurp;False;True;t1_giu9x3v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuauqj/;1610389370;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;Eren was neither taught nor did he have to do this in the way that he did.;False;False;;;;1610339694;;False;{};giuavj0;False;t3_kujurp;False;True;t1_giuagr2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuavj0/;1610389384;2;True;False;anime;t5_2qh22;;0;[]; -[];;;owliverqueen;;;[];;;;text;t2_13dr9h;False;False;[];;I don’t know man, Hunter x Hunter is great and all but it’s both unfinished and lacks a cohesive overarching story. It’s like monalisa but without the smile.;False;False;;;;1610339697;;False;{};giuavpk;False;t3_kujurp;False;False;t1_gitrjhw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuavpk/;1610389388;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Valkonn;;;[];;;;text;t2_dx7hj;False;False;[];;"I would add Cowboy Bebop to the masterpiece list. - -All of these shows are ~10-15 years old but Bebop is now almost ~21 years old and is still as popular as the lower end of your list. It's truly stood the test of time.";False;False;;;;1610339724;;False;{};giuaxh5;False;t3_kujurp;False;False;t1_gitjvji;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuaxh5/;1610389421;5;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;"My interpretation is that he doesn't hate Reiner aka the warriors anymore after finding out the truth, but he now hates the persons aka Marley that corrupted them and send the warriors to paradise. - -So his statement wasn't towards Reiner. - -Someone has another interpretation that I saw, but that is how I interprete it.";False;False;;;;1610339731;;False;{};giuaxxh;False;t3_kujurp;False;True;t1_giua7v4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuaxxh/;1610389430;2;True;False;anime;t5_2qh22;;0;[]; -[];;;moltenshrimp;;;[];;;;text;t2_vdo9r;False;False;[];;Also known as the Female Titan?;False;False;;;;1610339747;;False;{};giuaywh;False;t3_kujurp;False;False;t1_gitvgws;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuaywh/;1610389449;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610339750;;False;{};giuaz2h;False;t3_kujurp;False;True;t1_giua7v4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuaz2h/;1610389453;1;True;False;anime;t5_2qh22;;0;[]; -[];;;diamondcake;;;[];;;;text;t2_9vnme;False;False;[];;True, it worked for AoT because of the story set up and stuff. It doesn't necessarily mean it has to be like that for every other series that won't fit the narrative.;False;False;;;;1610339775;;False;{};giub0nu;False;t3_kujurp;False;False;t1_giu1asu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giub0nu/;1610389487;6;True;False;anime;t5_2qh22;;0;[]; -[];;;rastabrah38;;;[];;;;text;t2_d4vni;False;False;[];;"Rigby voice: ""stop talking""";False;False;;;;1610339812;;False;{};giub33k;False;t3_kujurp;False;True;t1_gisac08;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giub33k/;1610389534;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsurii897;;;[];;;;text;t2_gguew;False;False;[];;That was basically the titan equivalent of holding Reiner at gunpoint during their talk.;False;False;;;;1610339819;;False;{};giub3jx;False;t3_kujurp;False;False;t1_gisxmio;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giub3jx/;1610389542;75;True;False;anime;t5_2qh22;;0;[]; -[];;;TotallyBullshiting;;;[];;;;text;t2_10pxgo;False;False;[];;Budget savings;False;False;;;;1610339841;;False;{};giub4ws;False;t3_kujurp;False;True;t1_giu0f0z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giub4ws/;1610389568;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Freak5_5;;;[];;;;text;t2_9khgmg0;False;False;[];;Holy shit;False;False;;;;1610339846;;False;{};giub589;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giub589/;1610389574;7;True;False;anime;t5_2qh22;;0;[]; -[];;;MalaysianinPerth;;;[];;;;text;t2_16dwvnnp;False;False;[];;"Here are some that have been done - -https://m.youtube.com/watch?v=f1CXCbfTz0M - -https://m.youtube.com/watch?v=suePJOwECkM";False;False;;;;1610339847;;False;{};giub5as;False;t3_kujurp;False;True;t1_git18wl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giub5as/;1610389575;2;True;False;anime;t5_2qh22;;0;[]; -[];;;turtledragon27;;;[];;;;text;t2_kylr4;False;False;[];;"I don't think HxH deserves the hype or ranking that it has. While I liked it a lot, the ending of a series is just so critical to my overall opinion. It could absolutely stick the landing like AoT appears to be doing or FMAB has done, or it could (albeit extremely unlikely) take a downturn like SAO or Darling in the Franxx. I really want the hiatus to end so we can all evaluate it in its entirety but until then I can't consider it among pieces like Steins; Gate or (soon-ish) AoT";False;False;;;;1610339849;;False;{};giub5ej;False;t3_kujurp;False;True;t1_gitrup8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giub5ej/;1610389578;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OhMilla;;;[];;;;text;t2_84kkn;False;False;[];;Yea I understand what happened. I don't know why AOT fans can't wrap their brain around someone not liking the series.;False;False;;;;1610339866;;False;{};giub6j3;False;t3_kujurp;False;False;t1_giuauqj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giub6j3/;1610389599;1;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;"They adapted 2 chapters even skip a scene that will be in the next episode. So the pacing was pretty good. It would be impossible to adapt 3 chapters in one episode and that would ruin this episode. - -Also this is going to have a part 2.";False;False;;;;1610339893;;False;{};giub8bx;False;t3_kujurp;False;True;t1_giuaei9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giub8bx/;1610389633;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Runningman0301;;MAL;[];;https://myanimelist.net/animelist/Runningman0301?status=7;dark;text;t2_hh6nr;False;False;[];;That look of fear as he tilted his head back to see that horrific sight of a monster staring down at him and swiping him in the air...brutal way to go out. Pouring one for him tonight;False;False;;;;1610339930;;False;{};giubapa;False;t3_kujurp;False;False;t1_giu8t90;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giubapa/;1610389680;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Runningman0301;;MAL;[];;https://myanimelist.net/animelist/Runningman0301?status=7;dark;text;t2_hh6nr;False;False;[];;That’s what I wonder, it would brutal if he literally transformed millions of innocent eldians to just become wall Titans for x amount of years;False;False;;;;1610340012;;False;{};giubghv;False;t3_kujurp;False;False;t1_giu754z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giubghv/;1610389789;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DarKav1411;;;[];;;;text;t2_28hr9sci;False;False;[];;SASAGEYO;False;False;;;;1610340021;;False;{};giubh4n;False;t3_kujurp;False;True;t1_giu6pko;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giubh4n/;1610389800;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BlooregardQKazoo;;;[];;;;text;t2_3uspr;False;False;[];;"i thought the basement reveal was like 2 minutes of the interesting worldbuilding stuff followed by multiple boring episodes of Eren's father's story. and since the worldbuilding stuff was so rushed and incomplete i had to go to the wiki and look it up after the episode ended. - -for the absurd amount of build-up it had, and how much information had been needlessly held back, i didn't think it delivered very well. - -i'm sure the way the anime did it was much better if you already knew everything.";False;False;;;;1610340041;;False;{};giubiki;False;t3_kujurp;False;False;t1_giu29xo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giubiki/;1610389828;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Runningman0301;;MAL;[];;https://myanimelist.net/animelist/Runningman0301?status=7;dark;text;t2_hh6nr;False;False;[];;As well as Eldian restorationists from Liberio. The Owl finally got his end result;False;False;;;;1610340077;;False;{};giubl0c;False;t3_kujurp;False;True;t1_giu6ocr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giubl0c/;1610389876;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DarKav1411;;;[];;;;text;t2_28hr9sci;False;False;[];;Eren: Yeah, friends, of course. And friends sometimes beat the shit out of each other.;False;False;;;;1610340080;;False;{};giubl5z;False;t3_kujurp;False;True;t1_gito6az;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giubl5z/;1610389879;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;"Because he is willing to do anything to destroy his enemies, including killing innocent people. That's what he means by moving forward. Why did he choose to kill innocent people here? Because he is trying a surprise attack to steal the war hammer and kill some world leaders. - -Is he right? No, I don't think so. He is a grey and complex character and he is not above things that are wrong morally to achieve his objective.";False;False;;;;1610340080;;1610354320.0;{};giubl7l;False;t3_kujurp;False;False;t1_giuamqv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giubl7l/;1610389880;16;True;False;anime;t5_2qh22;;0;[]; -[];;;JewJewJubes;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Jubes44/;light;text;t2_n7agk;False;False;[];;"I would describe Reiner & Eren's relationship as ""Complicated"" - - -Also, I shouldn't watch AoT before going to bed. I'm too hyped to sleep now.";False;False;;;;1610340098;;False;{};giubmea;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giubmea/;1610389907;14;True;False;anime;t5_2qh22;;0;[]; -[];;;BADMANvegeta_;;;[];;;;text;t2_13ne3x;False;False;[];;"imo the fact that HxH can be that highly regarded while not even having an ending speaks to how good it is. also i just think it's not fair to consider the ending with this anime's rating when it doesn't even have one, it should only be judged on what actually exists. - -as it stands now, it's really a great anime and if an ending ever happens it either hurt or improve it. but unless that happens it shouldn't be taken into consideration.";False;False;;;;1610340151;;False;{};giubpya;False;t3_kujurp;False;True;t1_giub5ej;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giubpya/;1610389994;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Yup, as a fellow German speaker I never noticed that it’s there until I looked up the lyrics too if it makes you feel better;False;False;;;;1610340162;;False;{};giubqnt;False;t3_kujurp;False;False;t1_giu926g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giubqnt/;1610390010;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DarKav1411;;;[];;;;text;t2_28hr9sci;False;False;[];;Poor Reiner has nothing left to be broken.;False;False;;;;1610340216;;False;{};giubtzo;False;t3_kujurp;False;True;t1_gitp4nj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giubtzo/;1610390116;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;S4 so far has mainly been from the perspective of Marley and Reiner. Right now Eren is the antagonist imo;False;False;;;;1610340229;;False;{};giubuub;False;t3_kujurp;False;True;t1_giu9kr6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giubuub/;1610390138;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Verybluevans;;MAL;[];;;dark;text;t2_cj4fl;False;False;[];;His father could be Asian, we've never seen or heard anything about him.;False;False;;;;1610340250;;False;{};giubw56;False;t3_kujurp;False;False;t1_git3p4l;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giubw56/;1610390163;6;True;False;anime;t5_2qh22;;0;[]; -[];;;danja386;;;[];;;;text;t2_2umvp5g8;False;False;[];;Stupid anime only falco vs chad manga eren;False;False;;;;1610340255;;False;{};giubwgf;False;t3_kujurp;False;True;t1_gitg8gz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giubwgf/;1610390169;3;True;False;anime;t5_2qh22;;0;[]; -[];;;atulk4;;;[];;;;text;t2_4pz8i8x6;False;False;[];;Marley upper brass might have been actually terrified of rumbling, I think only tybur family/willy knew abt this through the memories of war hammer titan after all willy was saying in last episode how none of his predecessor tried to take this responsibility.;False;False;;;;1610340264;;False;{};giubx1e;False;t3_kujurp;False;True;t1_giu5so4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giubx1e/;1610390181;1;True;False;anime;t5_2qh22;;0;[]; -[];;;InfernumIrae;;;[];;;;text;t2_10fkm206;False;False;[];;Hopefully not;False;False;;;;1610340270;;False;{};giubxf7;False;t3_kujurp;False;False;t1_git5ukb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giubxf7/;1610390189;5;True;False;anime;t5_2qh22;;0;[]; -[];;;BADMANvegeta_;;;[];;;;text;t2_13ne3x;False;False;[];;i consider HxH to be in the same vein as One Piece, Naruto or Pokemon. the main character has one kinda vague/arbitrary goal (Gon wants to be the best hunter, Luffy the best pirate, Ash the best trainer, naruto the hokage) and the author uses this to continue the series for as long as they want. the lack of overarching story is intentional.;False;False;;;;1610340272;;False;{};giubxiy;False;t3_kujurp;False;True;t1_giuavpk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giubxiy/;1610390190;3;True;False;anime;t5_2qh22;;0;[]; -[];;;brighterside;;;[];;;;text;t2_6vvc4;False;False;[];;You guys are saying the same shit, just differently.;False;False;;;;1610340274;;False;{};giubxok;False;t3_kujurp;False;True;t1_gisizez;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giubxok/;1610390193;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SartretinaLoaded;;;[];;;;text;t2_5b32wkhr;False;False;[];;"To me it does not make much sense. Eren is very compassionate of that one Titan they encounter crawling on the floor and calls them a ""fellow patriot"" and somehow now you want me to believe he wouldn't mind blasting a building full with ""fellow patriots"" who are having a horrible life under Marley? I guess there's going to the moral retribution against Eren at some point, but it still feels disjointed.";False;False;;;;1610340275;;False;{};giubxqn;False;t3_kujurp;False;True;t1_gisrcy6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giubxqn/;1610390194;3;True;False;anime;t5_2qh22;;0;[]; -[];;;araxara_;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/gabaok;light;text;t2_5tb1sao6;False;False;[];;I can't think of many shows that have me on the edge of my seat like this. Absolutely insane.;False;False;;;;1610340308;;False;{};giubzpn;False;t3_kujurp;False;True;t1_gisb5i0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giubzpn/;1610390232;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Stonewindow;;;[];;;;text;t2_13fxov;False;False;[];;Regarding the millions of colossal titans, the Eldian Empire existed for 2000 years, and King Fritz created the walls only 100 years ago. Who knows maybe throughout the millenia the previous 144 kings ruling each created many titans, and eventually the 145th kong ended up with a huge reserve arsenal of colossal titans. Maybe they already were used for walls in a different place previously.;False;False;;;;1610340319;;False;{};giuc0bv;False;t3_kujurp;False;True;t1_gisgcj1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuc0bv/;1610390245;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ashutosh29;;;[];;;;text;t2_5w0dob4v;False;False;[];;">Regarding Eren, I have the faintest hope that someone evacuated the building, but that surely isn't true. However I'm fine with him killing these people because it's a small necessary sacrifice, similar to the battle vs Annie. And while most of the people in Marley are ""nazis"" to Eldians, I hope Eren doesn't start just killing everyone. - -Nope. Not a chance. The Marley army was checking for every small movement and Eren won't take such a risk, he simply can't. And no one here has a choice to look or be good anymore dude, they have to survive and for that they have to make the WHOLE world believe that they can't do anything to them. - -> -Regarding Reiner, I am seeing all of those comments in this thread and it kinda feels like I'm the only kid who didnt grow up, but I dont forgive Reiner or accept what he did. The very first breaking of the wall? He was a kid so that is totally fine. But everything from the battle of Trost forward is inexcusable. Reiner, had grown up for years in the walls and saw how everything he was ever thought is a lie, and how all of these people in the walls, and his people outside the walls are living because of his own devil of a country, then still continued everything as planned. - ->Everything thing is morally grey, but Eren is much more to the white side while Reiner is much more to the dark side. - -With Reiner I am pretty sure that he didn't knew all that but the one's who sent him already knew that there weren't ""devils"" on the island, as it was mentioned now they were sent to attack and check how the king will react and was all he said true or not about not retaliating. Then they wanted to get the founding titan to make sure they never face the rumbling and well after getting to know who got the founding titan as Reiner said, Eren was the worst person to have it. He was saving the world all the time he was there and following orders, he had family in Marley too, beytrayal wasn't an option. - -In the end, each and every character had reason for their actions and that is simply because Isamaya first made the world for his story and the characters he needed to do what is happening rn, not the other way around. Every action they make was required for the story. - -Well that's what I think, the story has no plot holes. Morally was he right or not? You have the freedom to believe what you want there.";False;False;;;;1610340341;;False;{};giuc1ll;False;t3_kujurp;False;False;t1_git5zf1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuc1ll/;1610390268;4;True;False;anime;t5_2qh22;;0;[]; -[];;;InfernumIrae;;;[];;;;text;t2_10fkm206;False;False;[];;"It’s war. - -No marching lines from the 1800’s - -It’s an incredibly dirty urban fight - -Not like Eren started this";False;False;;;;1610340358;;False;{};giuc2nw;False;t3_kujurp;False;False;t1_gittaka;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuc2nw/;1610390290;25;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610340369;;False;{};giuc3aw;False;t3_kujurp;False;True;t1_giuaxxh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuc3aw/;1610390302;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Euferes;;;[];;;;text;t2_68pdt0b7;False;False;[];;"Editor: Isayama, how many characters will die in the whole franchise? - -Isayama: Yes!";False;False;;;;1610340383;;False;{};giuc46x;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuc46x/;1610390319;5;True;False;anime;t5_2qh22;;0;[]; -[];;;araxara_;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/gabaok;light;text;t2_5tb1sao6;False;False;[];;Literally a perfect episode. 10/10.;False;False;;;;1610340387;;False;{};giuc4fc;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuc4fc/;1610390323;14;True;False;anime;t5_2qh22;;0;[]; -[];;;bhupeshpr25;;;[];;;;text;t2_78m9sk7m;False;False;[];;Week 5 of saving my free award for an AoT episode...;False;False;;;;1610340430;;False;{};giuc75i;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuc75i/;1610390377;33;True;False;anime;t5_2qh22;;0;[]; -[];;;MavadoBouche;;;[];;;;text;t2_2sxfd6nj;False;False;[];;I don’t think you realize AoT has NEVER HAD THAT DISCLAIMER BEFORE;False;False;;;;1610340437;;False;{};giuc7lb;False;t3_kujurp;False;False;t1_giu2spm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuc7lb/;1610390386;41;True;False;anime;t5_2qh22;;0;[]; -[];;;Dr3xion;;;[];;;;text;t2_2q4qefai;False;False;[];;That Willy pack hit different lool;False;False;;;;1610340459;;False;{};giuc8un;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuc8un/;1610390410;2;True;False;anime;t5_2qh22;;0;[]; -[];;;yaminoidles;;;[];;;;text;t2_64rsavk;False;False;[];;The only abilities that we are aware of is the ability to manipulate memories and controlling Titans. Also making their eyes purple, a very nice party trick if I say so myself.;False;False;;;;1610340483;;False;{};giuca9h;False;t3_kujurp;False;False;t1_giu5skc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuca9h/;1610390439;11;True;False;anime;t5_2qh22;;0;[]; -[];;;KC_Cheefs;;;[];;;;text;t2_9ie5f;False;False;[];;I'm going to need you to take a seat;False;False;;;;1610340484;;False;{};giucac4;False;t3_kujurp;False;True;t1_giso482;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giucac4/;1610390440;1;True;False;anime;t5_2qh22;;0;[]; -[];;;geraldho;;;[];;;;text;t2_phy0a;False;False;[];;jesus the tension in this episode HOLY SHIT;False;False;;;;1610340486;;False;{};giucagp;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giucagp/;1610390443;11;True;False;anime;t5_2qh22;;0;[]; -[];;;danja386;;;[];;;;text;t2_2umvp5g8;False;False;[];;You reading with closed eyes or while sleeping or how did you miss them all?;False;False;;;;1610340489;;False;{};giucamn;False;t3_kujurp;False;False;t1_git79a7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giucamn/;1610390446;5;True;False;anime;t5_2qh22;;0;[]; -[];;;NotAlphonae;;;[];;;;text;t2_6im0hgvx;False;False;[];;That's what war is. You don't hate your enemies, but what has to be done, has to be done;False;False;;;;1610340509;;False;{};giucbvw;False;t3_kujurp;False;False;t1_giuamqv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giucbvw/;1610390470;21;True;False;anime;t5_2qh22;;0;[]; -[];;;PieckIsExactlyRight;;;[];;;;text;t2_k0kfxhz;False;False;[];;This Island can literally flatten the surface of the earth at will. Better declare war on them.;False;False;;;;1610340611;;False;{};giuci0c;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuci0c/;1610390587;19;True;False;anime;t5_2qh22;;0;[]; -[];;;antelope591;;;[];;;;text;t2_n62ap;False;False;[];;Who would dream that the Eren we saw in S1 would be the Eren we see today. I have an insane amount of respect for Isayama and where he took this story. He could've easily have had just as much success just keeping it vanilla like most mainstream anime. But these last 2 seasons have just been on some next level shit. Amazing stuff.;False;False;;;;1610340661;;False;{};giuckvt;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuckvt/;1610390642;23;True;False;anime;t5_2qh22;;0;[]; -[];;;danja386;;;[];;;;text;t2_2umvp5g8;False;False;[];;Any info of when new dr stone episodes are coming?;False;False;;;;1610340677;;False;{};giuclr0;False;t3_kujurp;False;False;t1_gity3uo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuclr0/;1610390658;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Stonewindow;;;[];;;;text;t2_13fxov;False;False;[];;Eldians benefitted from genocide, colonization and slavery for hundreds of years. Doesn't that by your logic mean that they deserve to now be on the receiving end of oppression?;False;False;;;;1610340688;;False;{};giucmei;False;t3_kujurp;False;True;t1_gitmh7z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giucmei/;1610390671;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Runningman0301;;MAL;[];;https://myanimelist.net/animelist/Runningman0301?status=7;dark;text;t2_hh6nr;False;False;[];;"As Keith shadis said when he saw Eren in the scouts training excercises “ I saw the same fire in his eyes that would set the world ablaze”. - - The same fire as his father, Keith mentions. Same words echoed by Kruger when he was with Gross explaining to the Jaegar’s how Faye “ drowned “ and Grisha was in the corner with a blank face";False;False;;;;1610340708;;False;{};giucnlh;False;t3_kujurp;False;True;t1_giu2zsp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giucnlh/;1610390692;2;True;False;anime;t5_2qh22;;0;[]; -[];;;iiZEze;;MAL;[];;;dark;text;t2_pvrk3;False;False;[];;Hi! Thank you for this, without spoiling, could you please explain something to me? So I love recontextualizing in this series. With the reveal of King Fritz having peaceful motivations in a different light, based on the interactions with Kenny and the King in S2, what has changed? I remember then a lot of philosophical discussion about being a slave to something, being friends based on power, but I don't remember too much. Could you shed any light on what those interactions meant based on what we know from this episode?;False;False;;;;1610340710;;False;{};giucnpg;False;t3_kujurp;False;True;t1_gism93w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giucnpg/;1610390695;2;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;"I'm a manga reader, I don't want to indirectly spoil anyone which is why I am careful with my words, but at the same time whether they are puppets are not they are the ones that used the Eldians to attack Eren. - -He has no hate towards Falco but he didn't hesitate to transform nonetheless.";False;False;;;;1610340715;;False;{};giuco0g;False;t3_kujurp;False;True;t1_giuc3aw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuco0g/;1610390701;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BolZac;;;[];;;;text;t2_6ydnca1o;False;False;[];;I completely respect you not liking it. I really do. I'm just trying to discuss with you that the rest of the series from this point on is actually good (and for me God like) but let's say not to your tastes which is completely understandable. Sorry if you got a different vibe from this. I hope you at least enjoy the 3 last chapters we got left!;False;False;;;;1610340720;;False;{};giucodu;False;t3_kujurp;False;True;t1_giub6j3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giucodu/;1610390708;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OrangeRabbit;;;[];;;;text;t2_bjsaq;False;False;[];;On Isayama's desk, there used to be a big piece of artwork of Reiner with the shotgun in his mouth. Reiner is Isayama's favorite character and the tragedy of him makes it easy to see why;False;False;;;;1610340738;;False;{};giucpgf;False;t3_kujurp;False;True;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giucpgf/;1610390728;1;True;False;anime;t5_2qh22;;0;[]; -[];;;danja386;;;[];;;;text;t2_2umvp5g8;False;False;[];;No more gear 3 eren;False;False;;;;1610340742;;False;{};giucpoh;False;t3_kujurp;False;False;t1_gisw4ru;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giucpoh/;1610390733;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Well I’m not gonna say you’re wrong, but “That Day” has a 9.9/10 on imdb so you’re definitely in the minority here. Eren’s Father’s Story was a fucking perfect payoff to me and a lot of people, but I at least hope you enjoyed this episode as much as the rest of us enjoyed the first basement reveal;False;False;;;;1610340754;;False;{};giucqet;False;t3_kujurp;False;False;t1_giubiki;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giucqet/;1610390747;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610340808;;False;{};giuctpc;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuctpc/;1610390813;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610340872;;False;{};giucxkr;False;t3_kujurp;False;True;t1_giuco0g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giucxkr/;1610390887;1;True;False;anime;t5_2qh22;;0;[]; -[];;;newguy208;;;[];;;;text;t2_yxsfs;False;False;[];;How do I use this spoiler tag? What is 'Spoiler source' here?;False;False;;;;1610340874;;False;{};giucxoj;False;t3_kujurp;False;True;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giucxoj/;1610390889;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DarKav1411;;;[];;;;text;t2_28hr9sci;False;False;[];;*Hoshii no sa*;False;False;;;;1610340876;;False;{};giucxth;False;t3_kujurp;False;False;t1_gitpc07;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giucxth/;1610390891;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;Just cut it short and tell her you joined the army;False;False;;;;1610340903;;False;{};giuczdb;False;t3_kujurp;False;True;t1_gisbqfm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuczdb/;1610390924;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;All according to keikaku;False;False;;;;1610340943;;False;{};giud1o4;False;t3_kujurp;False;False;t1_gisi3uy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giud1o4/;1610390972;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinsekai21;;;[];;;;text;t2_10od0m;False;False;[];;"I see. That makes senses. - -Personally, I think Eren is ""hero"" to most of us is because we have followed him for a long time. If we start AoT with the Warriors, I wonder if we still feel the same - - -Regarding the casualties, I dont know how to feel about it. Because at the end of the day, innocent people die. For us, they are the unfortunate collateral damages as Eren is the Hero. But to Reiner and his people, Eren is their Grim Reminder. Just like how Reiner viewed his action back then justified as he was ""trying to save the world"".";False;False;;;;1610340985;;False;{};giud44l;False;t3_kujurp;False;True;t1_gisho83;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giud44l/;1610391020;1;True;False;anime;t5_2qh22;;0;[]; -[];;;owliverqueen;;;[];;;;text;t2_13dr9h;False;False;[];;But One Piece and Naruto both have overarching narratives. For one piece it’s finding one piece and for naruto it’s Madara’s plan. All major arcs in story support that main arc. For Hunter, it started to get hazy sometime after greed island. I suppose Hunter x hunter will be somewhat similar to Yuyu Hakusho in its story structure, with a different story every arc but with a similar theme. It’s a great story but still feels unfinished.;False;False;;;;1610340994;;False;{};giud4li;False;t3_kujurp;False;False;t1_giubxiy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giud4li/;1610391029;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Taurus24Silver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Taurus-Silver;light;text;t2_826uaxw;False;False;[];;"Yeah. Bebop is in my top 10 - -The soundtrack is pure insanity";False;False;;;;1610340994;;False;{};giud4ma;False;t3_kujurp;False;True;t1_giuaxh5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giud4ma/;1610391029;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SilentCaveat;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RazorSharp;light;text;t2_6408fp9z;False;False;[];;"Yeah that's why I said ""other"" lol";False;False;;;;1610341023;;False;{};giud6a0;False;t3_kujurp;False;False;t1_gita2lu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giud6a0/;1610391065;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Sullan08;;;[];;;;text;t2_5go83;False;False;[];;Yeah Eren doesn't give a fuck about being morally right. He's past the point of giving a fuck and will do whatever he has to. He's not a hero, he's just a man on a mission.;False;False;;;;1610341041;;False;{};giud7b0;False;t3_kujurp;False;True;t1_gisgsd6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giud7b0/;1610391084;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;If Reiner was ordinary human he would have been grey from stress before 16 years of age :);False;False;;;;1610341047;;False;{};giud7m8;False;t3_kujurp;False;True;t1_gise6z3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giud7m8/;1610391090;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gvfaujdar;;;[];;;;text;t2_13jzrq;False;False;[];;Well , well , well .How the turntables ...;False;False;;;;1610341067;;False;{};giud8so;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giud8so/;1610391115;5;True;False;anime;t5_2qh22;;0;[]; -[];;;athyrson06;;;[];;;;text;t2_jaq4g;False;False;[];;I hope I receive a free one tomorrow;False;False;;;;1610341068;;False;{};giud8uo;False;t3_kujurp;False;False;t1_giuc75i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giud8uo/;1610391116;3;True;False;anime;t5_2qh22;;0;[]; -[];;;nobabtheweeb;;;[];;;;text;t2_4kw3n615;False;False;[];;"I think before Eren's enemies were pretty obvious and specific like Titans, Annie, Berthold and Reiner. However now he doesn't see them as his direct enemies because he understands them. When he said ""until my enemies are destroyed!"" He isn't specifying who the enemy is because the enemy is whoever's in the way. If you're in the way then you are enemy even if innocent. If you're not in the way you're not the enemy even if you're evil.";False;False;;;;1610341084;;False;{};giud9ra;False;t3_kujurp;False;True;t1_giua7v4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giud9ra/;1610391134;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"And I fucking LOVE him for it! - -Finally shonen protagonist who is not a bitch, all hail Eren!!!";False;False;;;;1610341126;;False;{};giudc4c;False;t3_kujurp;False;True;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giudc4c/;1610391180;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fat_flounder;;;[];;;;text;t2_oy4ytfd;False;False;[];;Think Armin was the one who trapped Pock and Piek.;False;False;;;;1610341165;;False;{};giudeb0;False;t3_kujurp;False;False;t1_giu4jw4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giudeb0/;1610391222;8;True;False;anime;t5_2qh22;;0;[]; -[];;;dhikapow;;;[];;;;text;t2_13mu2c;False;False;[];;"I thought this episode was a letdown. We were so looking forward to Reiner finally talking with Eren from the last episode. But I felt like it failed to portray the same emotional feeling as the manga. - -But that ending was pretty good though.";False;False;;;;1610341166;;False;{};giudeb5;False;t3_kujurp;False;True;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giudeb5/;1610391222;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Clemenx00;;;[];;;;text;t2_i99bz;False;False;[];;"At what point does the blame stop being the eldians tho? - -Eldians in Paradis were chilling in their island for 100 years and would have remained there forever if undisturbed. - -Marley had no need to send the warrirors but they wanted to get the remaining titans toget more power.";False;False;;;;1610341177;;False;{};giudey5;False;t3_kujurp;False;True;t1_giucxkr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giudey5/;1610391235;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DogmaErgosphere;;;[];;;;text;t2_18ieyu;False;False;[];;Sofia yelping and covering her ears when the trumpets started playing was so adorable.;False;False;;;;1610341192;;False;{};giudftl;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giudftl/;1610391251;37;True;False;anime;t5_2qh22;;0;[]; -[];;;ShinobuLoliBestGirl;;;[];;;;text;t2_9p5gez4t;False;False;[];;She's Oriental. Mikasa is Oriental. I have a feeling that the family she's from and Mikasa's family are somehow linked together but I could be wrong. It just felt like they kept focusing on the fact she was Oriental (and previous seasons would reference Mikasa being Oriental too);False;False;;;;1610341219;;False;{};giudhck;False;t3_kujurp;False;False;t1_giswxwm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giudhck/;1610391281;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;He died for his art;False;False;;;;1610341232;;False;{};giudi2v;False;t3_kujurp;False;False;t1_gisby37;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giudi2v/;1610391294;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Logan_Sucks;;;[];;;;text;t2_3cl936l7;False;False;[];;Well.. Fuck;False;False;;;;1610341297;;False;{};giudlsq;False;t3_kujurp;False;False;t1_gisafs9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giudlsq/;1610391369;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Stonewindow;;;[];;;;text;t2_13fxov;False;False;[];;Yes, Eldia IS guilty of a lot of what Marley says they did. They genuinely did commit genocide, slavery, colonization etc but Marley also blow it out of proportion to make it seem like they were even worse. They didn't kill Marleyans non-stop for 2000 years for example. Krüger addressed this when talking with Grisha.;False;False;;;;1610341330;;False;{};giudnt0;False;t3_kujurp;False;True;t1_git8vzs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giudnt0/;1610391406;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"It's called collateral damage - -And considering that this is total war of extermination fully instigated by their beloved homeland it's perfectly kosher - -I doubt they would have been heartbroken over Eren's mom and other islanders getting eaten several years ago";False;False;;;;1610341333;;False;{};giudny1;False;t3_kujurp;False;False;t1_gisaxz3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giudny1/;1610391409;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinsekai21;;;[];;;;text;t2_10od0m;False;False;[];;"Fair point. - -I love Reiner and I feel his pain and guilt. Still, that does not make him any less guilty";False;False;;;;1610341337;;False;{};giudo6n;False;t3_kujurp;False;True;t1_git5zf1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giudo6n/;1610391413;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OrangeRabbit;;;[];;;;text;t2_bjsaq;False;False;[];;Very much a beautiful scene. Even though it wasn't the most action packed of episodes, easily in my top 5 episodes of the series as it was just a beautiful message (even if the consequences would be complicated);False;False;;;;1610341413;;False;{};giudsgd;False;t3_kujurp;False;True;t1_giswpjq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giudsgd/;1610391495;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Chapeaux;;;[];;;;text;t2_798iv;False;False;[];;Wow thanks for this link;False;False;;;;1610341420;;False;{};giudsuq;False;t3_kujurp;False;False;t1_giu6p63;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giudsuq/;1610391502;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Lordofdepression;;;[];;;;text;t2_75f08;False;False;[];;"Yes but to activate the founding titan you need royal blood anyway. Which will overwrite the activation. - -Like I said, further discussion is manga territory.";False;False;;;;1610341459;;False;{};giuduze;False;t3_kujurp;False;False;t1_giuasp6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuduze/;1610391543;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jeroz;;;[];;;;text;t2_4qy3a;False;False;[];;That's why they waited 4 years;False;False;;;;1610341460;;False;{};giudv0y;False;t3_kujurp;False;False;t1_gisb4s7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giudv0y/;1610391543;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinsekai21;;;[];;;;text;t2_10od0m;False;False;[];;"I highly recommend Shinsekai Yori if you have some time. - -It is similar to AoT as they are both ""stories about perspective"". No black or white but morally grey";False;False;;;;1610341465;;False;{};giudvb5;False;t3_kujurp;False;True;t1_gitjvji;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giudvb5/;1610391549;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"And the world started this war against helpless amnesiacs for no reason whatsoever - -Paradis get to be the good guys here";False;False;;;;1610341472;;False;{};giudvok;False;t3_kujurp;False;False;t1_giu3xia;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giudvok/;1610391556;9;True;False;anime;t5_2qh22;;0;[]; -[];;;BambooVan;;;[];;;;text;t2_7kpkxe2u;False;False;[];;Great write up, thank you!;False;False;;;;1610341474;;False;{};giudvtq;False;t3_kujurp;False;True;t1_gismb1y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giudvtq/;1610391559;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;(Translator's note: keikaku means plan.);False;False;;;;1610341504;;False;{};giudxet;False;t3_kujurp;False;False;t1_giud1o4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giudxet/;1610391594;12;True;False;anime;t5_2qh22;;0;[]; -[];;;huntrshado;;;[];;;;text;t2_404y4;False;False;[];;Potentially. They know that you need Founding + Royal Blood to activate the Rumbling. But nobody else really knows that, so they could threaten the Rumbling same as Paradis does not, because they would control the Founding.;False;False;;;;1610341504;;False;{};giudxgx;False;t3_kujurp;False;False;t1_gitzah4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giudxgx/;1610391595;3;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;"Fritz is not alive, so Eren can't attack him, and now the rest of the world is planning to attack Paradise island. - -So who is Eren enemies now? the world? So yeah, you could be right and Eren simple troll Reiner when he made those last comments, but I know for fact Eren does not forgive him but he does now understand Reiner and where he is coming from. - -As we saw he went and attack Willy, so this wasn't really about Reiner, but Reiner and Falco are simple collateral damage.";False;False;;;;1610341518;;False;{};giudy84;False;t3_kujurp;False;True;t1_giucxkr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giudy84/;1610391610;1;True;False;anime;t5_2qh22;;0;[]; -[];;;erens10abs;;;[];;;;text;t2_98k098ar;False;False;[];;What a fucking masterpiece;False;False;;;;1610341553;;False;{};giue06y;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giue06y/;1610391647;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Bykerigan;;;[];;;;text;t2_bt2mb;False;False;[];;At the time, I took it more as him saying to forget he said that in the moment, because in a little bit I'm about to ruin your life.;False;False;;;;1610341556;;False;{};giue0aa;False;t3_kujurp;False;False;t1_gise5wc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giue0aa/;1610391648;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610341579;;False;{};giue1kt;False;t3_kujurp;False;True;t1_gisak3a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giue1kt/;1610391673;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;uh_ke;;;[];;;;text;t2_4l34zskk;False;False;[];;"Then he did some math - - -trust math";False;False;;;;1610341634;;False;{};giue4mh;False;t3_kujurp;False;True;t1_gisbfys;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giue4mh/;1610391734;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OiMasaru;;;[];;;;text;t2_3ptitskh;False;False;[];;its like foreplay before getting down to business, holy shit;False;False;;;;1610341643;;False;{};giue538;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giue538/;1610391743;10;True;False;anime;t5_2qh22;;0;[]; -[];;;BadAnonymous;;;[];;;;text;t2_20bquz6q;False;False;[];;I've a feeling like if Willy wouldn't have declared war on paradis island, Eren wouldn't have transformed.;False;False;;;;1610341658;;False;{};giue5xh;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giue5xh/;1610391758;29;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;">cuck genes of the founder - -Most accurate description";False;False;;;;1610341668;;False;{};giue6ip;False;t3_kujurp;False;False;t1_giu95o6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giue6ip/;1610391769;16;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610341669;;False;{};giue6kd;False;t3_kujurp;False;True;t1_gishl8w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giue6kd/;1610391770;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BADMANvegeta_;;;[];;;;text;t2_13ne3x;False;False;[];;"i think you're giving OP and naruto too much credit, at least OP for sure. theres definitely no overarching story you can literally watch arcs in any order and not be too confused. the story is literally ""i wanna find the one piece and become the best pirate"" and then luffy goes and does whatever he wants and theres no way to know if hes getting closer to this goal or not. luffy's goal is just a device the author needed to give him a reason to begin his adventure in the first place. its concrete enough where you can consider it an actual goal, but open ended enough that the author has a lot of freedom to go where they want with the story. - -as for naruto yeah i guess it does have an overarching story youre right, but the goal naruto is given is just like OP. concrete enough to give the main character a reason to begin their adventure, but vague enough that the author can do whatever they want and have the story go on for as long as they want. these types of animes aren't like others where eventually the story will stall and get too boring if the plot isn't moved forward. things were intentionally made vague so that the authors can take as long as they want to get to the conclusion. like naruto didn't have to be nearly as long as it was, but because of how the author set things up he was able to drag the story out until he felt like being done with it. the OP author is the same way he notoriously does not plan anything ahead because he really doesn't have to.";False;False;;;;1610341707;;False;{};giue8nn;False;t3_kujurp;False;False;t1_giud4li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giue8nn/;1610391809;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Jeroz;;;[];;;;text;t2_4qy3a;False;False;[];;The new Robert Paulson;False;False;;;;1610341711;;False;{};giue8vg;False;t3_kujurp;False;False;t1_gisac08;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giue8vg/;1610391813;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hiddim;;;[];;;;text;t2_2ywyv3w9;False;False;[];;imagine knowing japanese audience getting a movie while you have to wait an entire year to watch in your own country if it even screens.;False;False;;;;1610341711;;False;{};giue8wg;False;t3_kujurp;False;False;t1_git5ukb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giue8wg/;1610391814;23;True;False;anime;t5_2qh22;;0;[];True -[];;;Reikakou;;;[];;;;text;t2_hbzvw;False;False;[];;I'm not talking about her death, her back story being tricked that she is the reincarnation of Ymir until she was turned into a mindless titan.;False;False;;;;1610341720;;False;{};giue9ex;False;t3_kujurp;False;True;t1_gitx8oj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giue9ex/;1610391823;1;True;False;anime;t5_2qh22;;0;[]; -[];;;huntrshado;;;[];;;;text;t2_404y4;False;False;[];;"Not oil. Just ""resources"" have been specified in the anime so far.";False;False;;;;1610341723;;False;{};giue9jq;False;t3_kujurp;False;True;t1_giskpwg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giue9jq/;1610391825;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ivnwng;;;[];;;;text;t2_14ra88;False;False;[];;It is when you don't have Twitter, and a generally inactive social media presence.;False;False;;;;1610341729;;False;{};giue9wi;False;t3_kujurp;False;True;t1_gisdxo0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giue9wi/;1610391832;2;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;"If he doesn't then his entire race back home would be exterminated. - -I feel that the right to live is the most important right a human has. If someone puts a gun to my head and forces me to kill someone you should have 0 moral judgment";False;False;;;;1610341738;;False;{};giueads;False;t3_kujurp;False;True;t1_gitxc26;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giueads/;1610391851;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jsmslap;;;[];;;;text;t2_wf9qu;False;False;[];;I am blown away.;False;False;;;;1610341761;;False;{};giueboh;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giueboh/;1610391876;12;True;False;anime;t5_2qh22;;0;[]; -[];;;KorraLover123;;;[];;;;text;t2_j979k;False;False;[];;I loved the part where Eren burst through the building, and while everyone stared in shock that one person was getting hit in the face with debris.;False;False;;;;1610341770;;False;{};giuec6h;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuec6h/;1610391887;27;True;False;anime;t5_2qh22;;0;[]; -[];;;echykr4;;;[];;;;text;t2_k4xht;False;False;[];;"Unlikely, Inoue Marina will still be returning to voice Armin. - -I thought maybe its Jean with his hair dyed or something.";False;False;;;;1610341779;;False;{};giuecog;False;t3_kujurp;False;True;t1_giu7ho2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuecog/;1610391897;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610341791;;False;{};giuedbp;False;t3_kujurp;False;True;t1_giuaoq9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuedbp/;1610391909;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"It's called war - -Those innocents would have done (and have done) the same and worse to Eren's people - -Don't start what you can't finish, Marley is about to learn this this hard way";False;False;;;;1610341793;;False;{};giuedgu;False;t3_kujurp;False;False;t1_gish4zq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuedgu/;1610391912;0;True;False;anime;t5_2qh22;;0;[]; -[];;;danja386;;;[];;;;text;t2_2umvp5g8;False;False;[];;What about in s4 when they showed how they all transformed after being the new titans. Iirc berthold was sitting in a building at his transformation timing;False;False;;;;1610341820;;False;{};giuef13;False;t3_kujurp;False;True;t1_gitsa3m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuef13/;1610391942;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDarkRobotix;;;[];;;;text;t2_byh84;False;False;[];;She must've whispered something to him, she knew something was up;False;False;;;;1610341853;;False;{};giuegum;False;t3_kujurp;False;True;t1_gisctsk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuegum/;1610391975;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ivnwng;;;[];;;;text;t2_14ra88;False;False;[];;Was that Reiner that told him that back then?;False;False;;;;1610341883;;False;{};giueijc;False;t3_kujurp;False;True;t1_gislw40;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giueijc/;1610392006;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Potater1802;;;[];;;;text;t2_ya1av;False;False;[];;Reiner is definitely not dead. He's not the plot armor titan for no reason. Also, they've drawn so many parallels between Reiner and Eren that I don't think they're done just yet.;False;False;;;;1610341908;;False;{};giuejxh;False;t3_kujurp;False;False;t1_gisc2jv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuejxh/;1610392033;8;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDarkRobotix;;;[];;;;text;t2_byh84;False;False;[];;Omg Isayama you crazy bastard;False;False;;;;1610341934;;False;{};giueles;False;t3_kujurp;False;False;t1_gise5nm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giueles/;1610392065;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610341940;;False;{};giuelqs;False;t3_kujurp;False;True;t1_giudey5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuelqs/;1610392071;0;True;False;anime;t5_2qh22;;0;[]; -[];;;sittingbull15;;;[];;;;text;t2_jnaof;False;False;[];;Which anime has the record?;False;False;;;;1610341959;;False;{};giuemu0;False;t3_kujurp;False;True;t1_giu9nle;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuemu0/;1610392092;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"He would have given them a chance - -And then Willy went full Fuhrer and made decision for him";False;False;;;;1610342001;;False;{};giuep7q;False;t3_kujurp;False;False;t1_gisvxzw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuep7q/;1610392136;4;True;False;anime;t5_2qh22;;0;[]; -[];;;dkzenzuri;;;[];;;;text;t2_eg7qxv6;False;False;[];;I fucking love this show man;False;False;;;;1610342016;;False;{};giueq1n;False;t3_kujurp;False;True;t1_gistgdl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giueq1n/;1610392151;2;True;False;anime;t5_2qh22;;0;[]; -[];;;assessmentdeterred;;;[];;;;text;t2_7au8t;False;False;[];;It's at this point in the story where AOT is confirmed as probably the most well-written and nuanced anime/manga I'm familiar with. It's deeply compelling and directly applicable to the real world international system.;False;False;;;;1610342043;;False;{};giuerka;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuerka/;1610392178;39;True;False;anime;t5_2qh22;;0;[]; -[];;;ivnwng;;;[];;;;text;t2_14ra88;False;False;[];;Those are Marleyans, right? They don't have arm bands.;False;False;;;;1610342047;;False;{};giuersy;False;t3_kujurp;False;True;t1_gisctsk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuersy/;1610392183;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ivnwng;;;[];;;;text;t2_14ra88;False;False;[];;The simp squad are Marleyans, right? Since they have no arm bands.;False;False;;;;1610342066;;False;{};giuests;False;t3_kujurp;False;False;t1_gise7va;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuests/;1610392203;6;True;False;anime;t5_2qh22;;0;[]; -[];;;torching_fire;;;[];;;;text;t2_2a3tc5a9;False;False;[];;I think the actual life expectancy at that time might be around 45 years. So , if you are 20 year old it's almost half of your life.;False;False;;;;1610342068;;False;{};giuesyv;False;t3_kujurp;False;True;t1_giu5f3j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuesyv/;1610392205;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Old_Life_3476;;;[];;;;text;t2_70nbcd50;False;False;[];; Didn;False;False;;;;1610342089;;False;{};giueu4g;False;t3_kujurp;False;True;t1_giudxet;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giueu4g/;1610392229;1;True;False;anime;t5_2qh22;;0;[]; -[];;;towerofdoge;;;[];;;;text;t2_5sb0hoaa;False;False;[];;That's exactly where it ended in the manga chapter too though.;False;False;;;;1610342094;;False;{};giueuch;False;t3_kujurp;False;True;t1_gisfspq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giueuch/;1610392233;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610342115;;False;{};giuevi2;False;t3_kujurp;False;True;t1_giu5k5u;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuevi2/;1610392255;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ido-100;;;[];;;;text;t2_4eqi3dcn;False;False;[];;"Virgin ""through the support of my friends, I'll never give up!"" Vs Chad ""Despite being the same as my enemy, I will use the cursed abilities in my body to keep moving forward.""";False;False;;;;1610342140;;False;{};giuewuh;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuewuh/;1610392281;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Taurus24Silver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Taurus-Silver;light;text;t2_826uaxw;False;False;[];;"Shinsekai is one of my favorites - -What a great anime with incredible OST";False;False;;;;1610342161;;False;{};giuey31;False;t3_kujurp;False;True;t1_giudvb5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuey31/;1610392305;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Overlord_Laharl;;;[];;;;text;t2_11bgpb;False;False;[];;Episode one of AOT S4;False;False;;;;1610342163;;False;{};giuey66;False;t3_kujurp;False;False;t1_giuemu0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuey66/;1610392307;8;True;False;anime;t5_2qh22;;0;[]; -[];;;M_onStar;;;[];;;;text;t2_2lnxk39d;False;False;[];;Eren's goal is to defend Paradis from the rest of the world who just declared war.;False;False;;;;1610342203;;False;{};giuf0bz;False;t3_kujurp;False;False;t1_giswaoe;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuf0bz/;1610392350;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SolemnDemise;;;[];;;;text;t2_bersu;False;False;[];;This one. AoT s4e1 had 20k upvotes. Now, s4e5 has only 2k upvotes to tie it.;False;False;;;;1610342258;;False;{};giuf3fc;False;t3_kujurp;False;False;t1_giuemu0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuf3fc/;1610392420;13;True;False;anime;t5_2qh22;;0;[]; -[];;;MavadoBouche;;;[];;;;text;t2_2sxfd6nj;False;False;[];;I read the manga I’m all caught up lmao 😂😂😂 but it was discussed in the episode;False;False;;;;1610342261;;False;{};giuf3kq;False;t3_kujurp;False;False;t1_giuduze;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuf3kq/;1610392422;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sloppy_Goldfish;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/stormsky92;light;text;t2_rxi9z;False;False;[];;I'm glad I don't use Twitter.;False;False;;;;1610342280;;False;{};giuf4mv;False;t3_kujurp;False;True;t1_gisdxo0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuf4mv/;1610392442;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"Eren is about to massacre world's entire military and political leadership - -That's how you answer declaration of war";False;False;;;;1610342284;;False;{};giuf4um;False;t3_kujurp;False;True;t1_gisboc1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuf4um/;1610392447;1;True;False;anime;t5_2qh22;;0;[]; -[];;;clikplay;;;[];;;;text;t2_db345;False;False;[];;"Oh yes of course! Attacking marley like a normal war would ""validate all the misconceptions"", but turning into a titan during a festival and killing multiple civilians and probably a lot of the ambassadors as well is fine now, simple retaliation and doesn't make it worse, totally won't make them completely confirm their prejudice! -Can't you see how braindead that take is? I know it's easy to have a bias towards the main character but to this point...";False;False;;;;1610342307;;1610343747.0;{};giuf63x;False;t3_kujurp;False;True;t1_giuanoi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuf63x/;1610392471;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sebax820;;;[];;;;text;t2_3by4d95l;False;False;[];;"Eren: ""You were trying to save the world"" - ""I understand you had no choice"" - -Reiner: ""So that means we are friends now?"" - -Eren: **SYKE!**";False;False;;;;1610342345;;1610349526.0;{};giuf85l;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuf85l/;1610392511;13;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610342366;;False;{};giuf998;False;t3_kujurp;False;True;t1_giuf3kq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuf998/;1610392530;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRFB_099;;;[];;;;text;t2_85gszqey;False;False;[];;It covers 99 and 100, but with an entire scene missing (which will probably be in the next ep).;False;False;;;;1610342369;;False;{};giuf9gu;False;t3_kujurp;False;False;t1_gitjn8c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuf9gu/;1610392535;9;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePreciseClimber;;;[];;;;text;t2_kjl4o;False;False;[];;"Better use of music could've elevated it to 9/10, I think. Check this edit. It's rough but gets the idea across: - -[https://youtu.be/DcPk3xB1VsE](https://youtu.be/DcPk3xB1VsE)";False;False;;;;1610342384;;False;{};giufaag;False;t3_kujurp;False;False;t1_giswisj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giufaag/;1610392550;4;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;Those people above him wouldn't have hesitated either if roles were reversed;False;False;;;;1610342422;;False;{};giufccw;False;t3_kujurp;False;True;t1_gisi1jl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giufccw/;1610392593;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610342425;;False;{};giufciw;False;t3_kujurp;False;True;t1_gisw1ro;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giufciw/;1610392596;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610342448;;False;{};giufdsr;False;t3_kujurp;False;True;t1_giuf998;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giufdsr/;1610392621;0;True;False;anime;t5_2qh22;;0;[]; -[];;;phoncible;;;[];;;;text;t2_5tai7;False;False;[];;"Eren: ""we're the same Reiner"" - -Reiner: ""no, you're wrong, I could've stopped and turned back but went ahead anyway"" - -Eren: ""did i fucking stutter?""";False;False;;;;1610342457;;False;{};giufe9j;False;t3_kujurp;False;False;t1_giscr8m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giufe9j/;1610392629;23;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610342488;;False;{};giuffwh;False;t3_kujurp;False;True;t1_giuevi2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuffwh/;1610392661;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ABoredCompSciStudent;;MAL;[];;https://myanimelist.net/profile/serendipity;dark;text;t2_zqflo;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610342529;moderator;False;{};giufi3k;False;t3_kujurp;False;True;t1_giuaoq9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giufi3k/;1610392708;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OhMilla;;;[];;;;text;t2_84kkn;False;False;[];;Very respectful of you. I'm just hoping the ending is well done, don't mind either way what happens.;False;False;;;;1610342552;;False;{};giufjcz;False;t3_kujurp;False;True;t1_giucodu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giufjcz/;1610392733;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"He isn't but in next episode Hammer Titan will activate - -My guess is that he will get tag teamed by Eren and Armin (yes that sleek motherfucker has to be Armin, I am betting some serious cash on that)";False;False;;;;1610342559;;False;{};giufjoq;False;t3_kujurp;False;True;t1_git44o5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giufjoq/;1610392739;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Ozone416;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Dissonance3;light;text;t2_x44bi;False;False;[];;I was here.;False;False;;;;1610342565;;False;{};giufjzm;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giufjzm/;1610392745;9;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;Well he did;False;False;;;;1610342628;;False;{};giufncm;False;t3_kujurp;False;False;t1_gisbfys;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giufncm/;1610392810;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ABoredCompSciStudent;;MAL;[];;https://myanimelist.net/profile/serendipity;dark;text;t2_zqflo;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610342656;moderator;False;{};giufowp;False;t3_kujurp;False;True;t1_giu2w3x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giufowp/;1610392841;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BloodyGaki;;;[];;;;text;t2_4sjtnqhf;False;False;[];;Final season my ballz;False;False;;;;1610342713;;False;{};giufrvd;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giufrvd/;1610392900;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TicketCool;;;[];;;;text;t2_9jrr6yuo;False;False;[];;yeah these panels look way better;False;False;;;;1610342733;;False;{};giufsyd;False;t3_kujurp;False;True;t1_giu520r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giufsyd/;1610392920;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jeroz;;;[];;;;text;t2_4qy3a;False;False;[];;"Oh sht imagine this. - -They mounted a revolution, looks toward the sea, and ""next season"" we're at a completely foreign place, Reiner is the only returning character, and now Eren ~~is hot and~~ mounts a terrorist attack.";False;False;;;;1610342757;;False;{};giufua7;False;t3_kujurp;False;False;t1_gissof7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giufua7/;1610392947;6;True;False;anime;t5_2qh22;;0;[]; -[];;;MAQS357;;;[];;;;text;t2_yske3;False;False;[];;And that is more frightening than if he ignored their humanity and just saw them as the bad guys.;False;False;;;;1610342770;;False;{};giufv15;False;t3_kujurp;False;False;t1_gitzj6w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giufv15/;1610392962;9;True;False;anime;t5_2qh22;;0;[]; -[];;;petrichorE6;;;[];;;;text;t2_dcx4n;False;False;[];;Reiner pushed himself past hell only to see another hell, Eren pushed himself forward and saw hope on the other side.;False;False;;;;1610342791;;False;{};giufw2o;False;t3_kujurp;False;False;t1_giswl49;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giufw2o/;1610392986;7;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;Valid targets;False;False;;;;1610342792;;False;{};giufw4q;False;t3_kujurp;False;True;t1_giu1kq7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giufw4q/;1610392987;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610342818;;False;{};giufxhv;False;t3_kujurp;False;True;t1_giufdsr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giufxhv/;1610393019;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ABoredCompSciStudent;;MAL;[];;https://myanimelist.net/profile/serendipity;dark;text;t2_zqflo;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - -- Also let the anime onlies speculate please, this is their first watch so it's more fun for everyone if they can come up with their own theories, rather than manga reader btw. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610342864;moderator;False;{};giufzwa;False;t3_kujurp;False;True;t1_giu669d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giufzwa/;1610393068;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sloppy_Goldfish;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/stormsky92;light;text;t2_rxi9z;False;False;[];;I only remembered it because someone posted that scene in this sub a few days ago. Probably a manga reader did it intentionally.;False;False;;;;1610342883;;False;{};giug0xi;False;t3_kujurp;False;True;t1_gisioq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giug0xi/;1610393089;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UsedToPlayForSilver;;;[];;;;text;t2_37p5tjim;False;False;[];;"But these colossals aren't doing their atom-bomb skydive move. They'd just be walking, very slowly, across the ocean, right? - -Unless the Founding Titan has the power to free them from the walls, revert them into humans, then *back* to colossals for an air-raid maneuver like Zeke/Reiner did in the first episode of this season.";False;False;;;;1610342884;;False;{};giug0ze;False;t3_kujurp;False;True;t1_gitbc9i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giug0ze/;1610393090;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phoncible;;;[];;;;text;t2_5tai7;False;False;[];;">Killed the worlds most important figure - -You didn't catch the preview then huh? Willy Tyber, guy talking who Eren smashed, is the War Hammer Titan and he activates next episode, which is titled ""The War Hammer Titan"".";False;False;;;;1610342888;;False;{};giug17d;False;t3_kujurp;False;True;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giug17d/;1610393097;0;True;False;anime;t5_2qh22;;0;[]; -[];;;DiegooFlp;;;[];;;;text;t2_77v7win7;False;False;[];;Which animes?;False;False;;;;1610342891;;False;{};giug1cb;False;t3_kujurp;False;True;t1_gitzq8e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giug1cb/;1610393099;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MAQS357;;;[];;;;text;t2_yske3;False;False;[];;He is the seinen protagonist trapping a shonen anime, and AOT was not exactly a typical shonen to begin with.;False;False;;;;1610342897;;False;{};giug1oj;False;t3_kujurp;False;True;t1_gitts1g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giug1oj/;1610393106;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ScriptLoL;;;[];;;;text;t2_adaxv;False;False;[];;How so? You can definitely assume that shit is hiring the titan-sized fan for all the people in the general vicinity, which is exactly where falco would've been.;False;False;;;;1610342907;;False;{};giug29n;False;t3_kujurp;False;False;t1_giu5qxv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giug29n/;1610393118;23;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;">after the ""hero"" of the story basically killed the innocent civilians in the building while reiner rushed to save falco - -Eren is still the hero and those civilians weren't innocent and would have done same and worse to Eren's people (some of them already have) - -As for Reiner there is nothing he can do that will absolve him for what he did, it was him who started this war with an act of pure unprovoked genocide";False;False;;;;1610342962;;False;{};giug566;False;t3_kujurp;False;True;t1_gischn4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giug566/;1610393176;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePreciseClimber;;;[];;;;text;t2_kjl4o;False;False;[];;It's kind of like a reverse Zuko arc. Eren is inherently a bad person while Zuko was inherently good.;False;False;;;;1610342972;;False;{};giug5o4;False;t3_kujurp;False;True;t1_gisu3rd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giug5o4/;1610393187;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610342986;;False;{};giug6fk;False;t3_kujurp;False;True;t1_gitj69m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giug6fk/;1610393202;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrPootisBrights;;;[];;;;text;t2_e5ro6;False;False;[];;"He's doing exactly what Marley did to them when the walls were attacked. You can notice Eren hesitating at first when Tybur said he was born into this world, but still decided to declare war. - - Tybur had a chance to treat them with empathy and maybe go forward with a diplomatic solution, but no.";False;False;;;;1610342999;;False;{};giug73j;False;t3_kujurp;False;False;t1_giuamqv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giug73j/;1610393217;11;True;False;anime;t5_2qh22;;0;[]; -[];;;mo2memes;;;[];;;;text;t2_82ucdlhw;False;False;[];;The war theme that was in ep1 and in the trailer was better.;False;False;;;;1610343032;;False;{};giug8tv;False;t3_kujurp;False;True;t1_git5uq9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giug8tv/;1610393250;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;xin234;;;[];;;;text;t2_87y7e;False;False;[];;"Not that one. - -That page is actually great because iirc someone predicted/explained [manga spoilers](/s ""Zeke's goal, and its conflict with Eren's"") in a discussion thread or something and used that as one of the evidences to point out the subtle foreshadowing. - -If you look closely at how it was paneled: - -Willy says ""I wished for the extinction of all Eldians"" then [manga spoilers](/s ""it focuses on Zeke. It reflects his goal of wanting to sterilize all Eldians so they will just grow old and die peacefully without having children."") - -After that, he says ""But I do not wish to die"" then [manga spoilers](/s ""the next panel is Eren's face. Which basically is his mantra or something, that he just wants his people (wall guys) to survive and live on."")";False;False;;;;1610343034;;False;{};giug8yp;False;t3_kujurp;False;False;t1_giseisu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giug8yp/;1610393253;8;True;False;anime;t5_2qh22;;0;[]; -[];;;honestlytbh;;;[];;;;text;t2_piqxa;False;False;[];;Something I haven't really thought about with the whole rumbling thing: how do they expect the Wall Titans to get across the sea? Are Titans supposed to be able to swim or something?;False;False;;;;1610343059;;False;{};giugabd;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugabd/;1610393279;5;True;False;anime;t5_2qh22;;0;[]; -[];;;UsedToPlayForSilver;;;[];;;;text;t2_37p5tjim;False;False;[];;"Wonder if Armin is the blond soldier who lured Pieck and Porco? - -Pieck ""recognizing"" him could be from some war material/report/mugshot type thing. Seems a little tall, but some time *has* passed. Maybe puberty just hit real strong.";False;False;;;;1610343063;;False;{};giugajq;False;t3_kujurp;False;False;t1_gits0o0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugajq/;1610393285;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"He is a hero - -If he doesn't save his people they will all be slaughtered and he is stepping up";False;False;;;;1610343083;;False;{};giugbmu;False;t3_kujurp;False;True;t1_gism5gm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugbmu/;1610393307;0;True;False;anime;t5_2qh22;;0;[]; -[];;;yaminoidles;;;[];;;;text;t2_64rsavk;False;False;[];;"> With the reveal of King Fritz having peaceful motivations in a different light, based on the interactions with Kenny and the King in S2, what has changed? - -I guessing you mean S3E10 ""Friends"" right? - -With the recent reveal of Willy Tybur, the idea of the king being a pacifist and allowing themselves is proven by the dialogue between Uri and Kenny, where Uri tells Kenny that the future within the walls is limited but during the remaining time he wants to construct a paradise. - -So the 'reveal' of the history has already been showed to us as early as S3P1 or at least foreshadowed. I can't think of a scene where it puts it in a different light but it does make the motivation of the king more clearer. - -He then asks Kenny what was it that made them friends when they were so close to killing each other. - -> ""Was it violence? No idea."" - -> ""But even so, I believe in the miracle that happened on that day."" - -I would definitely recommend rewatching this scene as it implies that the conflict between the Ackerman and the Royal family was resolved due to some miracle which resembles the conflict between Eldia and the world. What was it that allowed them to become friends? If we are able to figure that out then if they can replicate it once more then maybe Paradis don't have to go to war with the world. - -Kenny then monologues about the power of the Titans being passed on and how they were able preach such useless shit and comes to the conclusion that if he is able to harness that much power then maybe even he could become like Uri. Maybe he will finally understand his perspective. This is of course incorrect as we now know that it comes from the vow of pacifism that all royal blooded individuals will come to agree upon once they inherit the founding titan. So he would have remained the same regardless. - -As he is dying, he says that everyone has to be drunk on something to keep on going and that everyone is a slave to something. Even Uri who is driven by the idea of peace.";False;False;;;;1610343086;;False;{};giugbsl;False;t3_kujurp;False;True;t1_giucnpg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugbsl/;1610393310;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610343113;;False;{};giugd9z;False;t3_kujurp;False;True;t1_giug0ze;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugd9z/;1610393340;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Demhandlebars;;;[];;;;text;t2_tccv4;False;False;[];;Subaru?;False;False;;;;1610343142;;False;{};giugesz;False;t3_kujurp;False;False;t1_gisj4kc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugesz/;1610393370;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ABoredCompSciStudent;;MAL;[];;https://myanimelist.net/profile/serendipity;dark;text;t2_zqflo;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610343160;moderator;False;{};giugfts;False;t3_kujurp;False;True;t1_gisx5d3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugfts/;1610393389;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePreciseClimber;;;[];;;;text;t2_kjl4o;False;False;[];;Also, unless there's going to be a big plot twist later on, we know why he's doing all this. He's doing it for himself. It's a selfish desire. He's like Walter White but a hundred times worse.;False;False;;;;1610343171;;False;{};giuggce;False;t3_kujurp;False;True;t1_gitgwsi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuggce/;1610393398;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"Not really - -Those outside the walls are still hell bent on genociding those inside the walls - -Nowhere near the same";False;False;;;;1610343175;;False;{};giugglb;False;t3_kujurp;False;True;t1_gistujh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugglb/;1610393402;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;OrangeRabbit;;;[];;;;text;t2_bjsaq;False;False;[];;"He has a more archetypal Jewish look tbh. And the name Levi, like Leviticus. Also that Yiddish sounding last name of Ackerman - -Names often have meaning in this show. Ymir, Levi, Armin, etc. - -Armin being short for the German hero of Tannenburg, Arminius - who crushed the Roman army so bad in a surprise attack that he basically caused Rome's implosion by making them too scared to venture past the Rhine.";False;False;;;;1610343190;;False;{};giughf7;False;t3_kujurp;False;False;t1_git3p4l;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giughf7/;1610393418;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Multipl;;;[];;;;text;t2_mi3bz;False;False;[];;"Willy is the ""true"" commander-in-chief of the Marleyan military.";False;False;;;;1610343219;;False;{};giugix6;False;t3_kujurp;False;True;t1_gisbq0k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugix6/;1610393446;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ivnwng;;;[];;;;text;t2_14ra88;False;False;[];;[Guys, is Willy gonna be alright?](https://i.imgur.com/WyfGJ9g.png) 🤔;False;False;;;;1610343220;;1610344102.0;{};giugiz9;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugiz9/;1610393448;9;True;False;anime;t5_2qh22;;0;[]; -[];;;GowtherETC;;;[];;;;text;t2_47ql3fom;False;False;[];;Honestly the saltfests have been really good recently. Good side dish for each chapter release.;False;False;;;;1610343226;;False;{};giugjbq;False;t3_kujurp;False;False;t1_gituuyl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugjbq/;1610393453;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Deca-Dence episode 10, my favourite episode of anime ever;False;False;;;;1610343230;;False;{};giugjhi;False;t3_kujurp;False;True;t1_giug1cb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugjhi/;1610393456;0;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"And what about 200,000 people who Reiner and his flunkies killed while those ""innocent"" people cheered? - -Everyone already forgot? - -Devils were in that building";False;False;;;;1610343288;;False;{};giugmkq;False;t3_kujurp;False;True;t1_gisipgr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugmkq/;1610393514;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;For a mass-murdering war criminal, sure.;False;False;;;;1610343289;;False;{};giugmmu;False;t3_kujurp;False;False;t1_giufw4q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugmmu/;1610393515;3;True;False;anime;t5_2qh22;;0;[]; -[];;;2rio2;;;[];;;;text;t2_7p6or;False;True;[];;Loss of innocence/moment of destiny when someone's path is set to a destructive end they no longer have control over.;False;False;;;;1610343293;;False;{};giugmuf;False;t3_kujurp;False;False;t1_giu0f0z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugmuf/;1610393518;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610343322;;False;{};giugodo;False;t3_kujurp;False;True;t1_giug29n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugodo/;1610393548;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610343323;;False;{};giugof7;False;t3_kujurp;False;True;t1_giugabd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugof7/;1610393548;12;True;False;anime;t5_2qh22;;0;[]; -[];;;atulk4;;;[];;;;text;t2_4pz8i8x6;False;False;[];;"It looked to me like eren was probably hopeful when willy said ""because I was born into this world"" but the next moment all his hopes came crashing down.";False;False;;;;1610343350;;False;{};giugptl;False;t3_kujurp;False;False;t1_giue5xh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugptl/;1610393575;19;True;False;anime;t5_2qh22;;0;[]; -[];;;TatteredTongues;;;[];;;;text;t2_xbrbp;False;False;[];;"> But here, he takes the first punch. - - -I mean he waited for the whole world to declare war on them.";False;False;;;;1610343402;;False;{};giugsn6;False;t3_kujurp;False;False;t1_giuamqv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugsn6/;1610393628;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Killcode2;;;[];;;;text;t2_15lr8u;False;False;[];;your mom raised a pleb, but at least she ain't one;False;False;;;;1610343402;;False;{};giugsnn;False;t3_kujurp;False;False;t1_giskjzs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugsnn/;1610393629;15;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610343429;;1610343629.0;{};giugu4x;False;t3_kujurp;False;True;t1_giufxhv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugu4x/;1610393656;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TicketCool;;;[];;;;text;t2_9jrr6yuo;False;False;[];;Just because the story has moved forward from another perspective doesn't change who the protag is.;False;False;;;;1610343429;;False;{};giugu5t;False;t3_kujurp;False;True;t1_giubuub;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugu5t/;1610393656;2;True;False;anime;t5_2qh22;;0;[]; -[];;;N1gHtMaRe99;;;[];;;;text;t2_4hm66djz;False;False;[];;The rewatch potential of AOT is unmatched, especially so after the manga ends;False;False;;;;1610343430;;False;{};giugu8w;False;t3_kujurp;False;False;t1_gisjjjc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugu8w/;1610393658;19;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"Eren still has long way to go until he reaches gray zone (if it's even possible, his side are ones who are being targeted for extermination and are just defending themselves) - -And Reiner still leads by at least 200,000 civilians killed (unlike Eren completely unprovoked)";False;False;;;;1610343456;;False;{};giugvmg;False;t3_kujurp;False;True;t1_gisvr4w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugvmg/;1610393684;0;True;False;anime;t5_2qh22;;0;[]; -[];;;wtfwdym;;;[];;;;text;t2_51o4xi63;False;False;[];;Excited to see the war hammer titan next week;False;False;;;;1610343473;;False;{};giugwkl;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugwkl/;1610393701;7;True;False;anime;t5_2qh22;;0;[]; -[];;;RogerRabbit200;;;[];;;;text;t2_3di7fley;False;False;[];;His shoes stayed on. He'll be fine.;False;False;;;;1610343501;;False;{};giugy3v;False;t3_kujurp;False;False;t1_giugiz9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugy3v/;1610393728;18;True;False;anime;t5_2qh22;;0;[]; -[];;;2rio2;;;[];;;;text;t2_7p6or;False;True;[];;Keep watching. It's going to get even better.;False;False;;;;1610343528;;False;{};giugzj6;False;t3_kujurp;False;False;t1_git4f0w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giugzj6/;1610393755;8;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"Amen - -He wasn't this emo when he was slaughtering civilians - -Karma must be a titanic bitch, eh?";False;False;;;;1610343546;;False;{};giuh0fb;False;t3_kujurp;False;True;t1_gisx54z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuh0fb/;1610393771;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Joacquin;;;[];;;;text;t2_5jlmcvzv;False;False;[];;It’ll be explained in the next episode.;False;False;;;;1610343578;;False;{};giuh238;False;t3_kujurp;False;True;t1_gitvv2m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuh238/;1610393802;1;True;False;anime;t5_2qh22;;0;[]; -[];;;2rio2;;;[];;;;text;t2_7p6or;False;True;[];;"""Eldia's Spear and Shield"" as he called them.";False;False;;;;1610343591;;False;{};giuh2ug;False;t3_kujurp;False;False;t1_gisuxc9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuh2ug/;1610393816;31;True;False;anime;t5_2qh22;;0;[]; -[];;;RX0Invincible;;;[];;;;text;t2_10wg4b;False;False;[];;The saltfest for this ep led to some really funny OST memes, the saltfest for 136 was just cringe toxicity;False;False;;;;1610343602;;False;{};giuh3dg;False;t3_kujurp;False;False;t1_giugjbq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuh3dg/;1610393825;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610343605;;False;{};giuh3k7;False;t3_kujurp;False;True;t1_giugu4x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuh3k7/;1610393829;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"If he hadn't he would have been complicit in extermination of his own people - -This were not some innocent civilians, they were the enemy";False;False;;;;1610343618;;False;{};giuh477;False;t3_kujurp;False;True;t1_gitor1y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuh477/;1610393844;3;True;False;anime;t5_2qh22;;0;[]; -[];;;2rio2;;;[];;;;text;t2_7p6or;False;True;[];;It's hard to believe but true. It's going to keep escalating until that Ep 16 climax.;False;False;;;;1610343635;;False;{};giuh55i;False;t3_kujurp;False;True;t1_gisv4ii;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuh55i/;1610393861;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DrySecurity4;;;[];;;;text;t2_69a1axol;False;False;[];;Warhammer and Founder apparently worked together in the past. Coincidence? I have no idea;False;False;;;;1610343649;;False;{};giuh5vs;False;t3_kujurp;False;False;t1_giu7ig5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuh5vs/;1610393876;17;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610343668;;False;{};giuh6v5;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuh6v5/;1610393894;1;True;False;anime;t5_2qh22;;0;[]; -[];;;danja386;;;[];;;;text;t2_2umvp5g8;False;False;[];;Succesful invade getting min 1 penta and all camps;False;False;;;;1610343703;;False;{};giuh8qd;False;t3_kujurp;False;False;t1_gisvk6p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuh8qd/;1610393930;4;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"Would you prefer if he let his people get exterminated? - -Marleyans made the decision for him, he just implemented​ it";False;False;;;;1610343715;;1610360681.0;{};giuh9c9;False;t3_kujurp;False;False;t1_git7m4q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuh9c9/;1610393943;0;True;False;anime;t5_2qh22;;0;[]; -[];;;N1gHtMaRe99;;;[];;;;text;t2_4hm66djz;False;False;[];;That scene reminded me of Breaking Bad, the tention and the voice acting, the direction everything was on point;False;False;;;;1610343745;;False;{};giuhavf;False;t3_kujurp;False;True;t1_gisc1bn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuhavf/;1610393976;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DarKav1411;;;[];;;;text;t2_28hr9sci;False;False;[];;But we need ~~MONEH~~ TITANS!;False;False;;;;1610343764;;False;{};giuhbtd;False;t3_kujurp;False;True;t1_gist0od;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuhbtd/;1610393993;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mysightisurs93;;;[];;;;text;t2_o2tam;False;False;[];;And Commander Pixis is the Bald Guy;False;False;;;;1610343767;;False;{};giuhc0i;False;t3_kujurp;False;True;t1_giua2z0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuhc0i/;1610393997;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"Eren is saving his people - -He has the moral high ground here";False;False;;;;1610343789;;False;{};giuhd6y;False;t3_kujurp;False;True;t1_gisi8hu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuhd6y/;1610394020;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Killcode2;;;[];;;;text;t2_15lr8u;False;False;[];;I'm convinced no one can appreciate aot to the fullest until they rewatch, as a manga reader + anime watcher, I notice so much that I missed before now that I know the future. AoT is the kind of series that improves on rewatch, instead of the opposite.;False;False;;;;1610343835;;False;{};giuhfkj;False;t3_kujurp;False;True;t1_gislyf5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuhfkj/;1610394065;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"And I can't fucking wait - -Word wants​ war of extermination against innocent amnesiacs for shits and giggles? Chew on this, bitches!";False;False;;;;1610343843;;False;{};giuhfyj;False;t3_kujurp;False;True;t1_gisuhmp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuhfyj/;1610394074;2;True;False;anime;t5_2qh22;;0;[]; -[];;;2rio2;;;[];;;;text;t2_7p6or;False;True;[];;Homie just getting warmed up.;False;False;;;;1610343871;;False;{};giuhhbg;False;t3_kujurp;False;False;t1_gitj642;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuhhbg/;1610394100;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;Tis just a flesh wound;False;False;;;;1610343907;;False;{};giuhj2y;False;t3_kujurp;False;False;t1_giugiz9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuhj2y/;1610394134;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ComfyMonogatari;;;[];;;;text;t2_xyvic;False;False;[];;"I'll be frank, that's the best part. - -It's a story based on people willing to kill each other to protect their loved ones and survive. There's no bad guy and innocent people will die as the guys with the most power battle each other out to achieve their goals. Not only that, they all believe that what they're all doing is good and justified. Every single person in this show is trying to do what they believe is right, what is right anymore? It's so subjective and that subjectivity reflects the best parts of humanity. - -This will sound harsh but I'm glad they showed how atrocious they're willing to go through with their plans. There's no mercy, this is a real fight and war. People will die, there's no coming back from this. - -It's well-written because it acknowledges how bad war is and showcases it on-screen without being unnecessarily super edgy about the action itself.";False;False;;;;1610343949;;False;{};giuhlb1;False;t3_kujurp;False;False;t1_gislhdz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuhlb1/;1610394178;7;True;False;anime;t5_2qh22;;0;[]; -[];;;anonymous_idunno;;;[];;;;text;t2_3k8uz38q;False;False;[];;The war has just begun!;False;False;;;;1610343966;;False;{};giuhm6h;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuhm6h/;1610394195;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePreciseClimber;;;[];;;;text;t2_kjl4o;False;False;[];;"There's also this version where the bombastic part kicks in when you see lightning on Eren's hand: - -[https://youtu.be/DcPk3xB1VsE](https://youtu.be/DcPk3xB1VsE) - -It's a bit rough but I think I like this version the most.";False;False;;;;1610343974;;False;{};giuhmjo;False;t3_kujurp;False;True;t1_gisbanh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuhmjo/;1610394203;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thesenutzonurchin;;;[];;;;text;t2_3o6qa6hk;False;False;[];;Just commenting for history. Also God damn this episode was so good. Can't WAIT til next week;False;False;;;;1610343990;;False;{};giuhne4;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuhne4/;1610394219;11;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"So they are just as big of assholes as old Elidians? - -That's settles who the bad guys are in this story (as if it wasn't already crystal clear)";False;False;;;;1610343995;;False;{};giuhnnm;False;t3_kujurp;False;True;t1_gitzah4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuhnnm/;1610394224;1;True;False;anime;t5_2qh22;;0;[]; -[];;;not-a-sound;;;[];;;;text;t2_cu71t;False;False;[];;"Question: how come Eren can transform underground, but Annie couldn't in S1 (""I won't go down there""), and Pieck & other guy in the hole also talk about how they can't transform in this episode? - -Is the Attack Titan special in a way with respect to this? No manga spoilers pls. Phenomenal episode. Honestly 10/10 work, Mappa!";False;False;;;;1610344000;;False;{};giuhnwn;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuhnwn/;1610394228;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePreciseClimber;;;[];;;;text;t2_kjl4o;False;False;[];;Oh God, Season 3 cave flashbacks... The crippling anxiety and regret! :P;False;False;;;;1610344031;;False;{};giuhpi3;False;t3_kujurp;False;True;t1_giu47fi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuhpi3/;1610394264;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hafhaf93;;;[];;;;text;t2_5ttkz1y6;False;False;[];;Waitt. I like that boy. Dont kill him please. He seem more open minded.;False;False;;;;1610344039;;False;{};giuhpxl;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuhpxl/;1610394274;7;True;False;anime;t5_2qh22;;0;[]; -[];;;three_firstnames;;;[];;;;text;t2_2asj14;False;False;[];;So many other chairs in that basement, and Eren couldn't even put one out for Falco...;False;False;;;;1610344065;;False;{};giuhr6o;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuhr6o/;1610394298;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Killcode2;;;[];;;;text;t2_15lr8u;False;False;[];;I have yet to see the source for this one, I just can't believe this it's so memey;False;False;;;;1610344068;;False;{};giuhrcj;False;t3_kujurp;False;False;t1_git349s;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuhrcj/;1610394301;18;True;False;anime;t5_2qh22;;0;[]; -[];;;i_love_rem;;;[];;;;text;t2_yb6o5zf;False;False;[];;I dun goofed;False;False;;;;1610344100;;False;{};giuhsyb;False;t3_kujurp;False;True;t1_giud6a0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuhsyb/;1610394332;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"Maybe they should have tried to be the good guys and not watch genocidal psychopath give warmongering speech, eh? - -Good kills";False;True;;comment score below threshold;;1610344141;;False;{};giuhv1v;False;t3_kujurp;False;True;t1_git7ib0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuhv1v/;1610394373;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610344190;;False;{};giuhxf5;False;t3_kujurp;False;True;t1_gisu4sz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuhxf5/;1610394418;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610344230;;False;{};giuhzfn;False;t3_kujurp;False;True;t1_giugabd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuhzfn/;1610394455;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;banned-for-no_reason;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/--Degenerate--;dark;text;t2_6pics463;False;False;[];;Next episode.;False;False;;;;1610344268;;False;{};giui1bd;False;t3_kujurp;False;False;t1_giu81ot;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giui1bd/;1610394492;3;True;False;anime;t5_2qh22;;0;[]; -[];;;YanDoe;;;[];;;;text;t2_130z2a;False;False;[];;Wish I never saw those posters of Eren with long hair, still great episode.;False;False;;;;1610344284;;False;{};giui27c;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giui27c/;1610394511;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ColumnsAreGay;;;[];;;;text;t2_9447i2uv;False;False;[];;Does anyone else feel like this episode exposed some weak points in the writing? Like I thought the ending was great, but what already had been a slower, borderline boring arc culminates in a long speech where a guy explains history, half of which we already know. Also the fact that Eren and Falco ever crossed paths seems like just luck. It just doesn't seem as masterful as earlier scenes like when Reiner and Bertholdt reveal their identities to Eren;False;True;;comment score below threshold;;1610344288;;1610347053.0;{};giui2er;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giui2er/;1610394517;-27;True;False;anime;t5_2qh22;;0;[]; -[];;;Naternaught;;;[];;;;text;t2_9oe8n3q;False;False;[];;As expected of Mikasa;False;False;;;;1610344295;;False;{};giui2sn;False;t3_kujurp;False;False;t1_gitej0x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giui2sn/;1610394524;9;True;False;anime;t5_2qh22;;0;[]; -[];;;galileotheweirdo;;MAL;[];;myanimelist.net/animelist/galileotheweirdo;dark;text;t2_gwyf6;False;False;[];;The day his mom died, his ordinariness died with her.;False;False;;;;1610344311;;False;{};giui3lk;False;t3_kujurp;False;False;t1_gisvtvk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giui3lk/;1610394540;8;True;False;anime;t5_2qh22;;0;[]; -[];;;RogerRabbit200;;;[];;;;text;t2_3di7fley;False;False;[];;"Considering how Eren rose all the way to the top of the building, I don't think Eren was even that deep underground. - -As for the Pieck and Porco, their main concern seem to be the fact that simultaneously transforming in such a narrow space might end up crippling each other and potentially kill off one another.";False;False;;;;1610344331;;False;{};giui4l3;False;t3_kujurp;False;True;t1_giuhnwn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giui4l3/;1610394561;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;"And those inside the Walls, or at least Eren, doesn't seem to be much better now, when it comes to their respective enemies. - -""I want to kill _every. last. Titan._"" - -When we believed the Titans to be the enemy, that's what they felt. Has that sentiment changed? - -""We're all the same"" - -Everyone wants the same thing, everyone does the same things. The only thing that changes are the targets.";False;False;;;;1610344351;;False;{};giui5lx;False;t3_kujurp;False;True;t1_giugglb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giui5lx/;1610394582;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rk06;;;[];;;;text;t2_viqut;False;False;[];;"the threat of ""end of the world"" is not fake. the founding titan is capable of it. Eren can't do it as he is not from royal bloodline. however, Reiner has witnessed eren using founder's power, so Marley are taking the threat seriously";False;False;;;;1610344369;;False;{};giui6k5;False;t3_kujurp;False;True;t1_gisyx42;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giui6k5/;1610394601;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Valkonn;;;[];;;;text;t2_dx7hj;False;False;[];;"Remember that after they reached the basement Eren's demeanor completely changes. He has to walk into his old house right where his mom was eaten and he realizes it's all because of Reiner. He reads his father's book and realizes it's all because of Marley. - -Eren isn't fighting for all Eldians. He is fighting for the people within the wall. The Eldians living on the mainland are his enemy and he knows that. - -Eren was depressed all of season 3 regarding his powerlessness but in S3 part 2 he becomes quite competent. There is a small timeskip where we know he trained a lot (when he's learning to harden). He's quite powerful now, isn't as reckless, has coped with tremendous loss, and knows who his enemy is. - -I think Eren's character growth makes a lot of sense.";False;False;;;;1610344378;;False;{};giui70u;False;t3_kujurp;False;False;t1_giubxqn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giui70u/;1610394610;12;True;False;anime;t5_2qh22;;0;[]; -[];;;funkerbuster;;;[];;;;text;t2_7mx1p;False;False;[];;"For Annie, the problem was not the underground, but the ambush. Eren could have burst out of that tunnel in season 1 just fine. - -For pieck and Porco, the problem was that the pit cannot easily be destroyed since there’s barely any free space outside to burst out of the hole without injuring themselves.";False;False;;;;1610344418;;False;{};giui92q;False;t3_kujurp;False;False;t1_giuhnwn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giui92q/;1610394649;9;False;False;anime;t5_2qh22;;0;[]; -[];;;mudermarshmallows;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Hazok;light;text;t2_gpemp;False;False;[];;He has already initiated his transformation when Willy declared war. He timed it so he fully transformed after the declaration, but he was committed to his attack before that.;False;False;;;;1610344439;;False;{};giuia5a;False;t3_kujurp;False;True;t1_gitrn1s;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuia5a/;1610394669;1;True;False;anime;t5_2qh22;;0;[]; -[];;;McSOUS;;;[];;;;text;t2_5goqa;False;False;[];;Shout out to Reiner's VA;False;False;;;;1610344445;;False;{};giuiafn;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuiafn/;1610394676;9;True;False;anime;t5_2qh22;;0;[]; -[];;;pepperminthippos;;;[];;;;text;t2_9esi1c4;False;False;[];;they can turn themselves into surfboards, so they pair up with one upright and one laying down and surf across the ocean while mad dripping;False;False;;;;1610344458;;False;{};giuib50;False;t3_kujurp;False;False;t1_giugabd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuib50/;1610394689;21;True;False;anime;t5_2qh22;;0;[]; -[];;;ivnwng;;;[];;;;text;t2_14ra88;False;False;[];;So where the fuck are the Iraqi Titans!?? D:;False;False;;;;1610344475;;False;{};giuic13;False;t3_kujurp;False;False;t1_giu5oab;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuic13/;1610394708;11;True;False;anime;t5_2qh22;;0;[]; -[];;;trivinium;;;[];;;;text;t2_gu9oz;False;False;[];;Does that not apply only to the ones with royal blood?;False;False;;;;1610344483;;False;{};giuicg2;False;t3_kujurp;False;True;t1_gitga09;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuicg2/;1610394715;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"They are better by default - -Marleyans started the war, committed genocide as part of the strategy and would not stop ever until Islanders are exterminated - -Only way Islanders can be the bad guys now is if this war ends on a peace treaty and later they start a new one unprovoked - -Until then Islanders are the good guys and those outside the wall are monsters (who still owe them 200,000 dead civilians)";False;False;;;;1610344586;;False;{};giuihk5;False;t3_kujurp;False;True;t1_giui5lx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuihk5/;1610394821;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Killcode2;;;[];;;;text;t2_15lr8u;False;False;[];;"it wasn't about retaliation or revenge, eren did it because it's the only obstacle he sees in front of him and he wants to keep moving forward, there was no ""delivering karma"" involved, he did what he thought he had to";False;False;;;;1610344604;;False;{};giuiig3;False;t3_kujurp;False;False;t1_gish0wq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuiig3/;1610394839;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ivnwng;;;[];;;;text;t2_14ra88;False;False;[];;When did her mom said that again?;False;False;;;;1610344620;;False;{};giuij90;False;t3_kujurp;False;True;t1_gisst1c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuij90/;1610394856;2;True;False;anime;t5_2qh22;;0;[]; -[];;;arafatnabi;;;[];;;;text;t2_ghvya;False;False;[];;The reason they wanted to take Annie underground was that if she transforms she will be restricted by rubble. Here Eren was in the basement of the building behind the stage. He wont be restricted as he isnt down enough. Pieck and Porco are restrcited because they literally fell down into a pit.;False;False;;;;1610344663;;False;{};giuilh1;False;t3_kujurp;False;False;t1_giuhnwn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuilh1/;1610394902;24;True;False;anime;t5_2qh22;;0;[]; -[];;;JokulaOfficial;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/Jokula;dark;text;t2_7kqsxhj;False;True;[];;HOW CAN IT END THERE AHHHH;False;False;;;;1610344819;;False;{};giuit3c;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuit3c/;1610395062;4;True;False;anime;t5_2qh22;;0;[]; -[];;;easyusername15;;;[];;;;text;t2_u634w;False;False;[];;"https://www.reddit.com/r/ShingekiNoKyojin/comments/7mcgl8/manga_spoilers_isayama_actually_has_this_hung_in/?utm_medium=android_app&utm_source=share - -Post is from three years ago, so no spoilers past this point in the anime.";False;False;;;;1610344820;;False;{};giuit4h;False;t3_kujurp;False;False;t1_giuhrcj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuit4h/;1610395063;50;True;False;anime;t5_2qh22;;0;[]; -[];;;Multipl;;;[];;;;text;t2_mi3bz;False;False;[];;"He's not wrong, to the people present there, Eren really is the ""devil"".";False;False;;;;1610344872;;False;{};giuivrv;False;t3_kujurp;False;True;t1_giugmkq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuivrv/;1610395115;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DeTroyes1;;;[];;;;text;t2_awtnhf;False;False;[];;"Tybur: ""We must declare war on Paradis Island!"" - -Eren: ""Your terms are acceptable.""";False;False;;;;1610344887;;False;{};giuiwhy;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuiwhy/;1610395131;6;True;False;anime;t5_2qh22;;0;[]; -[];;;arafatnabi;;;[];;;;text;t2_ghvya;False;False;[];;If you wouldve complained about Reiner and Berthold reveal it wouldve made sense since it was out of nowhere but youre complaining about well written character development for both Reiner and Eren culminating to transformation. Sorry bud youre completely off on this one.;False;False;;;;1610344900;;False;{};giuix45;False;t3_kujurp;False;False;t1_giui2er;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuix45/;1610395144;28;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"Correct - -But those people don't exactly have the full set of of data required to make accurate assessment";False;False;;;;1610344966;;False;{};giuj0dp;False;t3_kujurp;False;True;t1_giuivrv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuj0dp/;1610395207;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DOAbayman;;;[];;;;text;t2_10yal8;False;False;[];;Marley is trying to get everyone to support the war which is the entire point of that speech. From their reactions many seemed to be supportive so they’re now the enemies as well.;False;False;;;;1610344967;;False;{};giuj0eu;False;t3_kujurp;False;False;t1_giu0rdi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuj0eu/;1610395208;11;True;False;anime;t5_2qh22;;0;[]; -[];;;galileotheweirdo;;MAL;[];;myanimelist.net/animelist/galileotheweirdo;dark;text;t2_gwyf6;False;False;[];;I also think it’s Armin because he is the only blond Scout we know of. Pieck would have seen him while spying on the Scouts during Battle of Shiganshina. But he looks significantly taller.;False;False;;;;1610344973;;False;{};giuj0qz;False;t3_kujurp;False;True;t1_gisx4ky;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuj0qz/;1610395214;1;True;False;anime;t5_2qh22;;0;[]; -[];;;danja386;;;[];;;;text;t2_2umvp5g8;False;False;[];;Did you even watch one piece or did you just write a whole roman stated like facts about your theory?;False;False;;;;1610344985;;False;{};giuj1c0;False;t3_kujurp;False;False;t1_giue8nn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuj1c0/;1610395225;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DiscombobulatedGuava;;;[];;;;text;t2_zbkc0od;False;False;[];;This is why im so hyped to rewatch the entire series. I can't wait for this to be finished so i can go from the start and see all the hints along the way. Also don't have to wait a week in between!;False;False;;;;1610344994;;False;{};giuj1r0;False;t3_kujurp;False;True;t1_gislyf5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuj1r0/;1610395233;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ivnwng;;;[];;;;text;t2_14ra88;False;False;[];;War...War never changes.;False;False;;;;1610345021;;False;{};giuj34p;False;t3_kujurp;False;True;t1_gisurtq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuj34p/;1610395258;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AudieMurphy135;;;[];;;;text;t2_75g06;False;False;[];;I'm pretty sure you're getting downvoted because your reply is way off topic, but holy shit, that music goes *perfectly* with that scene.;False;False;;;;1610345031;;False;{};giuj3mq;False;t3_kujurp;False;False;t1_gisph1o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuj3mq/;1610395267;9;True;False;anime;t5_2qh22;;0;[]; -[];;;YoggsCans;;;[];;;;text;t2_48psaqtv;False;False;[];;"I'm not sure how relevant this detail is but when Eren transforms, his left eye is greyed out just like how his human form had a damaged left eye. It's cool to see details like that :) - -&#x200B; - -Also is Annie's dad a different race? He seems a bit darker than the other characters. Again might not be relevant, but interesting";False;False;;;;1610345035;;False;{};giuj3sl;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuj3sl/;1610395269;4;True;False;anime;t5_2qh22;;0;[]; -[];;;jung2019;;;[];;;;text;t2_171etn;False;False;[];;Careful, we are reaching the critical levels of based here.;False;False;;;;1610345039;;False;{};giuj3z7;False;t3_kujurp;False;True;t1_giu9o44;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuj3z7/;1610395272;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;SPARTAN-PRIME-2017;;;[];;;;text;t2_48zbvqz;False;False;[];;There's a little box off to the side that has a column of all the currently trending tags, either locally or worldwide.;False;False;;;;1610345043;;False;{};giuj479;False;t3_kujurp;False;True;t1_githbd5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuj479/;1610395277;3;True;False;anime;t5_2qh22;;0;[]; -[];;;torching_fire;;;[];;;;text;t2_2a3tc5a9;False;False;[];;I actually think Eren thought he was the warhammer titan and did not expect him to die;False;False;;;;1610345044;;False;{};giuj49g;False;t3_kujurp;False;False;t1_giugiz9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuj49g/;1610395278;6;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;"No one is the good guy by default - -Yes Marley did all that shit and the Paradisians doing the same thing now doesn't make it any better. It's incredibly shortsighted to think that lives taken are owed. If one side kills 200k innocent people and the other side does the same in return, you don't end with anything positive in your hands. The only thing you get are 400k innocent corpses. - -And guess what, the reason Marley took those hundreds of thousands of lives was because they felt justified since the Eldian Empire did the same to them. - -The cycle extends 2000 years back from now, and if nothing changes it will continue forever and no one will get anything they want in the end. At this point, justice/revenge is a sunk cost fallacy. It simply isn't worth it.";False;False;;;;1610345058;;False;{};giuj4y1;False;t3_kujurp;False;True;t1_giuihk5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuj4y1/;1610395291;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Tux-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Mantux31;light;text;t2_9zxw6;False;False;[];;#**RAMPAGE**;False;False;;;;1610345060;;False;{};giuj503;False;t3_kujurp;False;False;t1_gito2kz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuj503/;1610395292;4;True;False;anime;t5_2qh22;;0;[]; -[];;;saephan93;;;[];;;;text;t2_d20ha;False;False;[];;Omg this is crazy! Shit is finally going to go down and i cant fucking wait! EREN Lets gooo!!;False;False;;;;1610345073;;False;{};giuj5o4;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuj5o4/;1610395304;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackkage1;;;[];;;;text;t2_5rhv16l9;False;False;[];;What ?;False;False;;;;1610345087;;False;{};giuj6ax;False;t3_kujurp;False;True;t1_giuj3z7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuj6ax/;1610395317;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Justified_Eren;;;[];;;;text;t2_28tyuzkt;False;False;[];;If Willy has the Warhammer he can still transform though;False;False;;;;1610345164;;False;{};giuja2o;False;t3_kujurp;False;False;t1_git7ib0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuja2o/;1610395385;6;True;False;anime;t5_2qh22;;0;[]; -[];;;DOAbayman;;;[];;;;text;t2_10yal8;False;False;[];;Likely yes because the sentiment and means is still there. Marley would still be a massive threat to Paradis that wants to enslave or kill all the Eldians.;False;False;;;;1610345244;;False;{};giuje1s;False;t3_kujurp;False;False;t1_gisore3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuje1s/;1610395459;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Ijustwant2beok;;;[];;;;text;t2_xs5jr;False;False;[];;Yea, that chapter must've been wild. I saw it trending like everywhere, even far outside manga circles.;False;False;;;;1610345247;;False;{};giuje78;False;t3_kujurp;False;False;t1_gisegnh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuje78/;1610395461;2;True;False;anime;t5_2qh22;;0;[]; -[];;;drtoszi;;;[];;;;text;t2_jp26b;False;False;[];;"Hahaha! Yeah I’m into the visuals. Half the time I forget to even hear what’s going on since I just love the anime artstyle so much. - -On the other hand, Mom’s from another country from the get go so she’s been used to subs since childhood since a lot of things don’t get dubbed for her to begin with.";False;False;;;;1610345261;;False;{};giujewu;False;t3_kujurp;False;True;t1_giugsnn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giujewu/;1610395476;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;">No one is the good guy by default - -Wrong - -If Paradisians don't do it they will be signing their own death warrant - -Big difference - -Self defense, pure and simple - ->since the Eldian Empire did the same to them - -Empire has been gone for over a century, Marley is the empire now and Islanders are amnesiacs and completely innocent - -Even genocidal butchers like Marleyans know this - -Everything that happens is on them";False;False;;;;1610345268;;1610345477.0;{};giujf92;False;t3_kujurp;False;False;t1_giuj4y1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giujf92/;1610395481;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;We just keep moving forward, until all karma and comment records are destroyed.;False;False;;;;1610345286;;False;{};giujg4r;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giujg4r/;1610395500;28;True;False;anime;t5_2qh22;;0;[]; -[];;;alphamone;;;[];;;;text;t2_myfbn;False;False;[];;"With all these people, I can only think that Eren is planning to make a very dramatic entrance during the declaration. - -If this wasn't major propaganda this would be an amazing play. - -Is that mystery guard Armin? - -Half over already, damn these episodes just fly by. - -So that's what the brainwashing was about. - -Tens of millions... That's why the wall preacher wanted them covered. Though I wonder if the math works out? - -Ooh, that theme again. - -Freaking cliffhangers... though it looks like the action starts from next week.";False;False;;;;1610345290;;False;{};giujgcg;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giujgcg/;1610395505;4;True;False;anime;t5_2qh22;;0;[]; -[];;;galileotheweirdo;;MAL;[];;myanimelist.net/animelist/galileotheweirdo;dark;text;t2_gwyf6;False;False;[];;Yep. Just straight up blew up an apartment complex full of civilians. Ice cold killer.;False;False;;;;1610345327;;False;{};giuji4m;False;t3_kujurp;False;False;t1_githrp4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuji4m/;1610395541;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610345328;;False;{};giuji61;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuji61/;1610395541;3;True;False;anime;t5_2qh22;;0;[]; -[];;;honestlytbh;;;[];;;;text;t2_piqxa;False;False;[];;shit then i hope there's an even number of them so one doesnt get left out;False;False;;;;1610345329;;False;{};giuji7g;False;t3_kujurp;False;False;t1_giuib50;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuji7g/;1610395543;5;True;False;anime;t5_2qh22;;0;[]; -[];;;FireMonkey95;;;[];;;;text;t2_9czr9kxl;False;False;[];;Maybe they float. Colossals were full of hot air.;False;False;;;;1610345359;;False;{};giujjmf;False;t3_kujurp;False;False;t1_giugabd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giujjmf/;1610395572;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Raezak_Am;;MAL;[];;;dark;text;t2_a3q5c;False;False;[];;Better than the seven or so years us anime only waited to see the basement (which still gives me goosebumps);False;False;;;;1610345396;;False;{};giujleh;False;t3_kujurp;False;True;t1_gisbqfm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giujleh/;1610395607;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"The reactions of ambassadors or whatever - they may have cheered but their governments never declared any wars on Paradis? And civilians, including children? - -I have no problems with him killing the Marley leaders and soldiers and shifters. I have big problem with him killing civilians. And killing the enemy ambassadors is just a huge fuckup as that guarantees war with the rest of the world when at this time the only beef is with Marley.";False;False;;;;1610345404;;False;{};giujlu6;False;t3_kujurp;False;True;t1_giuj0eu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giujlu6/;1610395615;2;True;False;anime;t5_2qh22;;0;[]; -[];;;galileotheweirdo;;MAL;[];;myanimelist.net/animelist/galileotheweirdo;dark;text;t2_gwyf6;False;False;[];;Reiner was shaking in his boots the whole episode, and it truly rattled me to see someone who was so strong and confident when we first met him cowering in genuine fear, knowing full well what was going to happen.;False;False;;;;1610345455;;False;{};giujoba;False;t3_kujurp;False;True;t1_giu0u8g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giujoba/;1610395674;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KinoTheMystic;;;[];;;;text;t2_ew11o;False;False;[];;Yes but sometimes info like that flies over people's heads. When that episode aired, was their lots of discussion about that?;False;False;;;;1610345480;;False;{};giujpho;False;t3_kujurp;False;True;t1_giti4xc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giujpho/;1610395701;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610345491;;False;{};giujq27;False;t3_kujurp;False;True;t1_giuji61;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giujq27/;1610395717;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FireMonkey95;;;[];;;;text;t2_9czr9kxl;False;False;[];;Think Willy knows that Eren cant use the founder's powers without touching a royal, so he might be trying to end it before Eren figures out how to control his powers and starts the rumbling.;False;False;;;;1610345495;;False;{};giujqag;False;t3_kujurp;False;False;t1_giuci0c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giujqag/;1610395722;7;True;False;anime;t5_2qh22;;0;[]; -[];;;pepperminthippos;;;[];;;;text;t2_9esi1c4;False;False;[];;iirc in the manga theres an odd number so armin helps the last colossal titan onto his back and starts swimming while ysbg plays and everyone starts crying;False;False;;;;1610345571;;False;{};giujty7;False;t3_kujurp;False;False;t1_giuji7g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giujty7/;1610395797;14;True;False;anime;t5_2qh22;;0;[]; -[];;;DiscombobulatedGuava;;;[];;;;text;t2_zbkc0od;False;False;[];;Need to turn into a titan first .... so unless Reiner has a serum, hes gone cheif. Spirit gonna check out and reincarnate somewhere else.;False;False;;;;1610345577;;False;{};giuju96;False;t3_kujurp;False;True;t1_gitzn9v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuju96/;1610395803;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610345594;;False;{};giujv46;False;t3_kujurp;False;True;t1_giugabd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giujv46/;1610395819;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;BADMANvegeta_;;;[];;;;text;t2_13ne3x;False;False;[];;Yeah I watched everything up to dressrosa, most of the arcs in that anime could easily be treated as stand alone things lol/;False;False;;;;1610345595;;False;{};giujv5u;False;t3_kujurp;False;True;t1_giuj1c0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giujv5u/;1610395819;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;kheprislayer22;;;[];;;;text;t2_4ejjqqw2;False;False;[];;the soldier guy who trapped the other shifters? i thought that was jean cause they mentioned his facial hair. also, he's tall;False;False;;;;1610345608;;False;{};giujvtu;False;t3_kujurp;False;False;t1_giufjoq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giujvtu/;1610395831;5;True;False;anime;t5_2qh22;;0;[]; -[];;;SartretinaLoaded;;;[];;;;text;t2_5b32wkhr;False;False;[];;Yeah but that one encounter was after the basement when they were going to the sea!;False;False;;;;1610345653;;False;{};giujy3q;False;t3_kujurp;False;True;t1_giui70u;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giujy3q/;1610395882;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610345657;;False;{};giujyag;False;t3_kujurp;False;True;t1_giuji61;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giujyag/;1610395885;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DiscombobulatedGuava;;;[];;;;text;t2_zbkc0od;False;False;[];;He's just send his consciousness into his left toe, all good!;False;False;;;;1610345661;;False;{};giujyho;False;t3_kujurp;False;False;t1_gitlcsp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giujyho/;1610395889;10;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Don't forget the awards record, I think so it's already broken.;False;False;;;;1610345683;;False;{};giujzja;False;t3_kujurp;False;False;t1_giujg4r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giujzja/;1610395908;9;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;"Nazi Germany also twisted ""self-defense"" into invading the majority of Europe. The US nowadays twists national ""defense"" into establishing bases all around the world and getting involved in various foreign conflicts, often fucking shit up way more than it already was. - -The line between protecting yourself and bodying the current threat is thinner than it initially appears. After all, the best defense is a strong attack. But that's not a universal statement, since theres no such thing. It only works sometimes and in the long run, it won't work here. - -There are other ways of reducing a threat to non threat level. A fight should _always_ be the last resort, because when a fight starts, both sides are gonna bleed and out the other side there's not a winner and a loser. There's only one guy who got beat up and another guy who got beat up less.";False;False;;;;1610345693;;False;{};giujzzv;False;t3_kujurp;False;True;t1_giujf92;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giujzzv/;1610395918;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DOAbayman;;;[];;;;text;t2_10yal8;False;False;[];;It’s not though, Marley is actually considered humane for treating them like subhumans but the rest of the world hates and fears them just as much if not more. War was likely inevitable.;False;False;;;;1610345707;;False;{};giuk0ns;False;t3_kujurp;False;False;t1_giujlu6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuk0ns/;1610395932;14;True;False;anime;t5_2qh22;;0;[]; -[];;;River_sounds;;;[];;;;text;t2_y4vd1;False;False;[];;Such a good episode setting up the scene for the next one!;False;False;;;;1610345708;;False;{};giuk0pq;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuk0pq/;1610395933;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Killcode2;;;[];;;;text;t2_15lr8u;False;False;[];;wait a minute, I see I've upvoted this post 3 years ago, how do I not remember seeing this? maybe I erased it from my memory for some reason...;False;False;;;;1610345749;;False;{};giuk2ns;False;t3_kujurp;False;False;t1_giuit4h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuk2ns/;1610395969;26;True;False;anime;t5_2qh22;;0;[]; -[];;;aryvd_0103;;;[];;;;text;t2_549u7prl;False;False;[];;Its at 18.7k already.;False;False;;;;1610345783;;False;{};giuk4an;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuk4an/;1610396000;21;True;False;anime;t5_2qh22;;0;[]; -[];;;THERAPISTS_for_200;;;[];;;;text;t2_watvr;False;False;[];;I’m guessing that other soldier was Armin, puberty must have hit him hard because he grew like 7 inches.;False;False;;;;1610345805;;False;{};giuk5cp;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuk5cp/;1610396027;12;True;False;anime;t5_2qh22;;0;[]; -[];;;funkerbuster;;;[];;;;text;t2_7mx1p;False;False;[];;He had the armband so I doubt it;False;False;;;;1610345918;;False;{};giukasb;False;t3_kujurp;False;True;t1_giuj3sl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giukasb/;1610396134;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NotFruity_Mango;;;[];;;;text;t2_4gcwp4qw;False;False;[];;But if he was trown to paradise he would have been turned into a titan or prob killed by eren but thats a good theory;False;False;;;;1610345941;;False;{};giukbwq;False;t3_kujurp;False;False;t1_gitcy2w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giukbwq/;1610396154;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"""Inevitable"" does not mean he should be the one starting it. He can just tell the world they'll be left in peace if they send him all their Eldians.";False;False;;;;1610346045;;False;{};giukgkz;False;t3_kujurp;False;True;t1_giuk0ns;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giukgkz/;1610396253;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jeroz;;;[];;;;text;t2_4qy3a;False;False;[];;"""and I shall fight this war with you";False;False;;;;1610346059;;False;{};giukhhb;False;t3_kujurp;False;False;t1_gisf892;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giukhhb/;1610396270;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CharSlayer729;;;[];;;;text;t2_3nyxdiea;False;False;[];;"That's also exactly what he says when he first starts controlling his Titan. When he was slumped over on the boulder in Trost, and Armin is asking him why he's fighting for freedom, he finally pushes himself to pick up the boulder with that epic crescendo and his delusion being burned away: [https://www.youtube.com/watch?v=fa8M5CKsIjg&ab\_channel=Sxvlis](https://www.youtube.com/watch?v=fa8M5CKsIjg&ab_channel=Sxvlis)";False;False;;;;1610346070;;False;{};giuki0a;False;t3_kujurp;False;True;t1_gisvy49;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuki0a/;1610396280;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;As expected of Erwin;False;False;;;;1610346081;;False;{};giukije;False;t3_kujurp;False;False;t1_giui2sn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giukije/;1610396290;9;True;False;anime;t5_2qh22;;0;[]; -[];;;TheGoldenCatch;;;[];;;;text;t2_1l917jtf;False;False;[];;How is that bad writing? Just because there was no action doesn't mean the writing was bad. The writing has only gotten better and better. Anyways you'll get your action in the episodes to come.;False;False;;;;1610346111;;False;{};giukjzx;False;t3_kujurp;False;False;t1_giui2er;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giukjzx/;1610396319;18;True;False;anime;t5_2qh22;;0;[]; -[];;;kiddfrommars;;;[];;;;text;t2_9g0m11qu;False;False;[];;ATTACK ON TITAN GOATED;False;False;;;;1610346129;;False;{};giukktd;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giukktd/;1610396334;24;True;False;anime;t5_2qh22;;0;[]; -[];;;SPARTAN-PRIME-2017;;;[];;;;text;t2_48zbvqz;False;False;[];;You: Oh, did I see this? I guess I did. Please forget it.;False;False;;;;1610346169;;1610352305.0;{};giukmqa;False;t3_kujurp;False;False;t1_giuk2ns;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giukmqa/;1610396370;36;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610346180;moderator;False;{};giukn9i;False;t3_kujurp;False;False;t1_giuhzfn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giukn9i/;1610396379;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dickyeah1985;;;[];;;;text;t2_xgxoo;False;False;[];;I got home from working a 16 hour overnight shift and put this on. I was exhausted but as soon as the episode started it felt like I was wired. I can’t remember the last time I watched an episode of television with that much tension. Truly awesome.;False;False;;;;1610346255;;False;{};giukqq2;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giukqq2/;1610396443;28;True;False;anime;t5_2qh22;;0;[]; -[];;;shivam-ind;;;[];;;;text;t2_10bd8dkn;False;False;[];;Hey man say what you want about the sub but the the sub boasts one of the most premium quality shit posts. You should check them out.;False;False;;;;1610346258;;False;{};giukqvd;False;t3_kujurp;False;True;t1_gitglqt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giukqvd/;1610396445;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610346267;;False;{};giukrcz;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giukrcz/;1610396454;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kraker313;;;[];;;;text;t2_6lmfb6y3;False;False;[];;It would be shame if someone killed everyone in this apartment;False;False;;;;1610346310;;False;{};giuktek;False;t3_kujurp;False;False;t1_gisdr7g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuktek/;1610396494;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;He does tho, he's trying to take control and build a social intimidation for Paradis. In wa, this kinda thing really matters, something as simple as this could build a fear in Marleon soldiers and lower morale. Also he must have an objective as to why he attacked at that moment.;False;False;;;;1610346315;;False;{};giuktoc;False;t3_kujurp;False;True;t1_giuavj0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuktoc/;1610396499;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kraker313;;;[];;;;text;t2_6lmfb6y3;False;False;[];;We are in Climax of S4 do not compare it to ReZero;False;True;;comment score below threshold;;1610346365;;1610350600.0;{};giukvz1;False;t3_kujurp;False;True;t1_gisapik;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giukvz1/;1610396547;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;sstizzle;;;[];;;;text;t2_e9qm7;False;False;[];;"Just a little fucked up detail about this episode is that when Falco was talking about feeling betrayed and lamented that he looked up to “Kruger,” Falco’s specific wording is EXACTLY how Eren felt about Reiner during his time in Paradis when Eren realized he was betrayed by the big brother figure in the 104th - Reiner. - -So as an extra little dose of torture for Reiner during all this, he also watched the same horror he inflicted on Eren to be repeated on someone he cares a lot about, Falco, BY the same person he hurt in the first place, which set this shit-show all in motion and adding even more to his guilt and suffering. - -Oh, Reiner!";False;False;;;;1610346367;;False;{};giukw1s;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giukw1s/;1610396548;38;True;False;anime;t5_2qh22;;0;[]; -[];;;supaboss2015;;;[];;;;text;t2_qrx17;False;False;[];;You must be one of the people who didn’t like Light Yagami;False;False;;;;1610346368;;False;{};giukw34;False;t3_kujurp;False;True;t1_giso482;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giukw34/;1610396550;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;The best vantage point to wipe out the important people and make it a newspaper headline was to do what he did. Something like this in a newspaper would shatter marley's belief they're superior, and it'd lower soldiers morals. By attacking at such a point Paradis is making a statement and gaining the upper hand.;False;False;;;;1610346435;;False;{};giukzap;False;t3_kujurp;False;False;t1_git3rez;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giukzap/;1610396618;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kraker313;;;[];;;;text;t2_6lmfb6y3;False;False;[];;The S in Leiner stands for suffer;False;False;;;;1610346465;;False;{};giul0p7;False;t3_kujurp;False;False;t1_git50a0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giul0p7/;1610396644;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wuskers;;;[];;;;text;t2_pase4;False;False;[];;"I love how Willy was like ""we are declaring war on paradis"" and Eren's like ""aight bet"", seriously perfect timing to crash the party. I do wonder if Eren had any intention to back off if they hadn't declared war and made him public enemy #1. It was just hilarious how willy barely even finished his sentence before he's suddenly being thrown in the air by a titan. - -Also it's kinda fucked up that they conveniently leave Grisha out of this. I guess they might not know Grisha's whole story, but Grisha was the one who actually stole the founding titan and he only did that to oppose Marley after the mistreatment he suffered and was only on Paradis in the first place because of Marley, granted he was plotting as a revolutionary but he only did that because his sister was literally fed to dogs at the hands of a Marleyan and no one did anything about it. All these events can be traced back to ""That Day"", and could have been avoided if Marleyans could be not egregiously racist for a bit. Like ""Marley brutally murdered Grisha Yeager's sister and set him on the path that eventually lead his son to where he is now"" is a pretty important part of how we ended up here, and then they go and make it EVEN WORSE when they attacked paradis out of nowhere. Granted idk what kinda person Eren would have been had they not attacked but if they'd just been left alone idk that Eren would have done all this. This is basically Marley being like ""well well well, if it isn't the consequences of my own actions"".";False;False;;;;1610346497;;False;{};giul29u;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giul29u/;1610396676;11;True;False;anime;t5_2qh22;;0;[]; -[];;;janoDX;;;[];;;;text;t2_bowtb;False;False;[];;Colt is the tall one, Falco is Tanjiro.;False;False;;;;1610346498;;False;{};giul2ak;False;t3_kujurp;False;True;t1_githuk4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giul2ak/;1610396676;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Keep in mind Paradis is not against just Marley, they're against 100-200 fucking countries, they can't win by playing morally just.;False;False;;;;1610346502;;False;{};giul2hb;False;t3_kujurp;False;True;t1_git6488;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giul2hb/;1610396679;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ColumnsAreGay;;;[];;;;text;t2_9447i2uv;False;False;[];;I mean I wasn't really referring to Reiner and Eren's conversation. Most of the episode is Willy's speech which is mostly information we already knew but with a few bits added to complete the story, all told through Willy just explaining in monologue. In terms of the plot I understand why it happens but presenting that information through straight exposition feels lazy. The last third or so of the episode where Reiner and Eren have their development is much better but I just didn't think the first part was very interesting;False;False;;;;1610346535;;False;{};giul41z;False;t3_kujurp;False;True;t1_giuix45;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giul41z/;1610396708;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Invoqwer;;;[];;;;text;t2_88vb3;False;False;[];;"Anime only here. Cool episode. Pieck says she recognizes the soldier. So I guess that has to be Annie? AFAIK there is no other character that COULD be helping Eren's side that she would recognize besides Annie, Erwin, Levi. Erwin is dead, Levi is way too short for that, so it has to be Annie right? - -= - -What a twist this all is. I kept going back and forth with how I thought this would play out. :0";False;False;;;;1610346583;;False;{};giul66r;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giul66r/;1610396749;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Pye_guy77;;;[];;;;text;t2_3b75inc2;False;True;[];;"I kind of hated this episode since it was delayed and it seemed like a cliffhanger to push the rest of the season. still 10/10 - -willy got spawnkilled";False;False;;;;1610346590;;False;{};giul6i5;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giul6i5/;1610396754;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Ijustwant2beok;;;[];;;;text;t2_xs5jr;False;False;[];;Yea, killing all those officials **guarantees** they are all in when it comes to this war. But as far as the Eldians in Paradis are concerned they are already at war with the whole world, so they might just be ok and prepared for that eventuality.;False;False;;;;1610346628;;False;{};giul89c;False;t3_kujurp;False;True;t1_giukgkz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giul89c/;1610396787;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sanic_de_hegehog;;MAL;[];;https://myanimelist.net/profile/sanic_de_hegehog;dark;text;t2_e028fcj;False;False;[];;"I would contest the walls being the size of France in the first place. As I mentioned in the previous comment, the radius of wall Maria as specified in the anime is non-canon and contradicts how Isayama drew the walls and travel times on horseback (think back to when they went around the circumferance of Wall Rose looking for a breach). Same with the non-scale drawings of Paradis Island and what proportion of the island is enclosed by walls. The most common headcanon is that Paradis is supposed to be an upside-down version of Madagascar, with the Marlean mainland being upside-down Africa. - -I haven't done the math, but the walled area should be 1/4 or less of what the anime states with a radius of about 200 km.";False;False;;;;1610346685;;1610347787.0;{};giulava;False;t3_kujurp;False;False;t1_giu9ts2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giulava/;1610396835;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Galactic;;;[];;;;text;t2_3x10y;False;False;[];;Daniel Day Titan;False;False;;;;1610346711;;False;{};giulc3b;False;t3_kujurp;False;False;t1_giu5c73;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giulc3b/;1610396858;5;True;False;anime;t5_2qh22;;0;[]; -[];;;WeNTuS;;;[];;;;text;t2_btiic;False;False;[];;Eren also just wiped out his fellow Eldians lol. I cannot sympathise with his struggle at all;False;True;;comment score below threshold;;1610346725;;False;{};giulcss;False;t3_kujurp;False;True;t1_gitf1zc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giulcss/;1610396871;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;univoco;;;[];;;;text;t2_9nrjrmc9;False;False;[];;"Didn´t the nazis and neo-nazis believe jewish people are like puppet masters in the shadows of the global elite? - -I do not in any form condone this views, I just happen to know about them.";False;False;;;;1610346726;;False;{};giulcuh;False;t3_kujurp;False;False;t1_git8m7t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giulcuh/;1610396871;8;True;False;anime;t5_2qh22;;0;[]; -[];;;DemonMuffins;;;[];;;;text;t2_5yvbv;False;False;[];;wen u nut but she still suckin;False;False;;;;1610346838;;False;{};giulibf;False;t3_kujurp;False;True;t1_gismf1p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giulibf/;1610396976;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BeckQuillion89;;;[];;;;text;t2_11czx8;False;False;[];;The sad part is how he says now beyond the sea, it was the same thing as on the island. I think that part really helped push eren over the edge because that hope of freedom and amazing new lands is what helped bring him (and armin) this far;False;False;;;;1610346903;;False;{};giulldy;False;t3_kujurp;False;False;t1_gitj11p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giulldy/;1610397037;8;True;False;anime;t5_2qh22;;0;[]; -[];;;VariousMeet;;;[];;;;text;t2_63veb3s5;False;False;[];;"I'm not necessarily ""cheering the vengeance"", more so how the role-reversal as an example fits perfectly in the story. It doesn't feel like it's simply just there for revenge sake, rather it has an underlying theme beneath it and one that has been fabricated since the beginning. Isayama planned everything out to fit as it does, and there's absolutely no loose threads- it's like an ouroboros. To call it ""bleak"" I think is somewhat ignorant. But that's not really your fault, I've just been paying too much attention to the more hidden details of the show. If you're a casual watcher, there's no reason for believing it's that insane of a scene.";False;False;;;;1610346914;;1610347094.0;{};giullwh;False;t3_kujurp;False;True;t1_gitc9vc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giullwh/;1610397047;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;Marley is the only one that has been attacking Paradis, so I don't see why they want this to be a Paradis vs The World situation. Who wins from that?;False;False;;;;1610346919;;False;{};giulm3j;False;t3_kujurp;False;False;t1_giul89c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giulm3j/;1610397051;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ihileath;;MAL;[];;http://myanimelist.net/animelist/Ihileath;dark;text;t2_rsvva;False;False;[];;"I think you've kinda missed the point of the impact of this scene. Eren himself talks about how, like Reiner, he has and slept eaten under the same roof as the enemy. Learned that they are the same as the people from back home. That some are good, and that some are bad. And that he's gonna fuckin kill them nonetheless because he feels he has no choice. This wasn't done out of a lack of emotion. He knows what he is doing. - -I'm not taking a side in the EREN DID NOTHING WRONG versus EREN DID EVERYTHING WRONG debate. I'm just saying that, y'know, it's a war crime, and Eren took innocent people dying into account in his plan before going through with it. Whether he cares about them wasn't even the question anyway - it's irrelevant to the fact that he's acting without any regard for civilian casualties, and is perfectly resolved to make countless ones.";False;False;;;;1610346938;;False;{};giuln0h;False;t3_kujurp;False;True;t1_gitcb94;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuln0h/;1610397068;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kind_Yandere;;;[];;;;text;t2_84f2s429;False;False;[];;It's not 'quirky'. It's as mainstream as you can get with Anime.;False;False;;;;1610346977;;False;{};giulou4;False;t3_kujurp;False;False;t1_gitxvwq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giulou4/;1610397103;9;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;There was no need to kill all the civilians. Taking out the Marley leadership and soldiers would've served the purpose well enough.;False;False;;;;1610346989;;False;{};giulpe1;False;t3_kujurp;False;True;t1_giuktoc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giulpe1/;1610397113;1;True;False;anime;t5_2qh22;;0;[]; -[];;;perrude;;;[];;;;text;t2_3dpw71a6;False;True;[];;The wall's 50 meters tall above the ground and 10 meters into the ground, hence why Bert was towering over the wall by 10m. alas 60 meters as a colossal;False;False;;;;1610347009;;False;{};giulqa2;False;t3_kujurp;False;False;t1_giu1v9w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giulqa2/;1610397129;37;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610347011;;False;{};giulqcz;False;t3_kujurp;False;True;t1_gitbryf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giulqcz/;1610397130;5;True;False;anime;t5_2qh22;;0;[]; -[];;;aperios_pixse;;;[];;;;text;t2_1kq1d0tl;False;False;[];;Sasuga Erwin-sama!;False;False;;;;1610347066;;False;{};giulsxp;False;t3_kujurp;False;False;t1_giukije;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giulsxp/;1610397177;5;True;False;anime;t5_2qh22;;0;[]; -[];;;European_Badger;;;[];;;;text;t2_h5oxgc;False;False;[];;The part where he throws Willy is CGI, I didnt notice it at first either, which seems to be a trend with mappa CGI.;False;False;;;;1610347124;;False;{};giulvl7;False;t3_kujurp;False;True;t1_gitk0gw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giulvl7/;1610397233;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sgtshootsalot;;;[];;;;text;t2_bmvjz;False;False;[];;"""you did it to save the world, right?"" - -thats a menacing line in disguise.";False;False;;;;1610347129;;False;{};giulvsj;False;t3_kujurp;False;False;t1_gishl8w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giulvsj/;1610397236;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WhipsandPetals;;;[];;;;text;t2_4ivofw5e;False;False;[];;Checkmate reverse uno;False;False;;;;1610347178;;False;{};giuly1t;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuly1t/;1610397280;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Elaego;;;[];;;;text;t2_55zd6hhb;False;False;[];;They were literally just sitting in their homes. If a major politician made a speech in what is basically your backyard, wouldn't you listen, regardless on if you supported them or not?;False;False;;;;1610347198;;False;{};giulyzl;False;t3_kujurp;False;False;t1_giuhv1v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giulyzl/;1610397298;20;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610347226;;1610347478.0;{};gium0a5;False;t3_kujurp;False;True;t1_giulqcz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gium0a5/;1610397323;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;omgtehvampire;;;[];;;;text;t2_s1ewm;False;False;[];;Meh. There weren’t even any fights;False;True;;comment score below threshold;;1610347227;;False;{};gium0c0;False;t3_kujurp;False;True;t1_gisaeyc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gium0c0/;1610397324;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;Shit u rite! Willy is saved!;False;False;;;;1610347232;;False;{};gium0kl;False;t3_kujurp;False;False;t1_giujyho;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gium0kl/;1610397330;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;If he'd have come from any other angle most likely, he'd just be attacked by war hammer before he can reach him. What'd you do ? Your whole country will die if you loose, do you take the moral route where you save a couple people but it might fail. Or the route that kills some people but huarantees your success. I'd for sure pick my love ones and my country over some civilians. It wasn't necessary but I'd it was the logical thing to do.;False;False;;;;1610347261;;False;{};gium1wb;False;t3_kujurp;False;False;t1_giulpe1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gium1wb/;1610397353;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Leafs_fan_cucked_you;;;[];;;;text;t2_87v4f619;False;False;[];;Yeah spoilers are all over YouTube and Twitter;False;False;;;;1610347287;;False;{};gium31y;False;t3_kujurp;False;True;t1_gisdxo0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gium31y/;1610397376;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BeckQuillion89;;;[];;;;text;t2_11czx8;False;False;[];;"It really is incredible that Isayama was able to take the initial concept of men vs Titans and turn it in its head without losing story quality. In fact it’s gotten even better as a result. - -I can think of many ways in which this change of story could’ve flopped spectacularly and yet he managed to pull it off.";False;False;;;;1610347371;;1610348878.0;{};gium6zz;False;t3_kujurp;False;False;t1_gisgp6a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gium6zz/;1610397454;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Ijustwant2beok;;;[];;;;text;t2_xs5jr;False;False;[];;"Is he though? He just retaliated to an attack that Marley launched against his people when they hadn't disturbed anyone in the 100 years they'd been on Paradis. - -Even, with that reason in hand he waited to hear out Willy in hopes that he would not further antagonize them, but Willy decided to instead rally the rest of the world and declare war on Paradis and everything/everyone Eren loves. - -From Eren's persepective, his hands are tied.";False;False;;;;1610347378;;False;{};gium79u;False;t3_kujurp;False;False;t1_gitohkf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gium79u/;1610397458;43;True;False;anime;t5_2qh22;;0;[]; -[];;;FeistyKnight;;;[];;;;text;t2_1twmffwo;False;False;[];;"I took eren saying to reiner that they're ""under a building filled with ordinary people"" as a warning that he shouldn't transform. Dude then proceeds to do it himself anyway lmao.";False;False;;;;1610347400;;1610352478.0;{};gium8am;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gium8am/;1610397478;21;True;False;anime;t5_2qh22;;0;[]; -[];;;mike_2797;;;[];;;;text;t2_8qbcq38;False;False;[];;Let's go bois break the karma record 22k here we come.;False;False;;;;1610347402;;False;{};gium8d1;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gium8d1/;1610397479;12;True;False;anime;t5_2qh22;;0;[]; -[];;;omgtehvampire;;;[];;;;text;t2_s1ewm;False;False;[];;YOU WANT A WAR?! YOU GOT IT!!!!;False;False;;;;1610347419;;False;{};gium95z;False;t3_kujurp;False;True;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gium95z/;1610397494;1;True;False;anime;t5_2qh22;;0;[]; -[];;;omgtehvampire;;;[];;;;text;t2_s1ewm;False;False;[];;YOU WANT A WAR?! YOU GOT IT!!!!;False;False;;;;1610347456;;False;{};giumax1;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giumax1/;1610397526;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sgtshootsalot;;;[];;;;text;t2_bmvjz;False;False;[];;This season has put everything before it in a different context. Its incredible.;False;False;;;;1610347483;;False;{};giumc5d;False;t3_kujurp;False;False;t1_gishm79;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giumc5d/;1610397548;43;True;False;anime;t5_2qh22;;0;[]; -[];;;taken_the_easy_way;;;[];;;;text;t2_chz8n9o;False;False;[];;That's why you be ready when you Declare War. Marley has almost all country leaders at that event it's a no brainer to attack when war was declared;False;False;;;;1610347503;;False;{};giumd1x;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giumd1x/;1610397566;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Multipl;;;[];;;;text;t2_mi3bz;False;False;[];;Don't worry, those are great thoughts to have. Don't let other people here dictate how you should feel about Eren.;False;False;;;;1610347541;;False;{};giumesl;False;t3_kujurp;False;False;t1_giu2wb3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giumesl/;1610397600;8;True;False;anime;t5_2qh22;;0;[]; -[];;;GaleWulf;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Arachnophobic;light;text;t2_2mv8micg;False;False;[];;"(Anime-only) - -Hoooly crap. The absolute madlad. - -[](#grandmawhy) - -Armin (probably) is a beanpole now! As befitting his station. (Although I'm a little miffed that apparently there are *millions* of Colossal Titans. I suppose there is just one who can be a shifter, and the rest are mindless?) - -I'm having trouble understanding the thought process behind Marley sending the kids to infiltrate Paradis and steal the Founding Titan's power, since the Tyburs *knew* that they would risk stirring the hornet's nest by going against Fritz's condition. Were they really *that* desperate for Titan power that they'd risk the so-called 'Rumbling'? Honestly it sounds like a terrible, *terrible* plan the more I think about it, and what they'll now reap is just desserts. - -I know the Attack Titan stealing the Co-ordinate was an unexpected variable they had no idea about, but still the plan seems needlessly reckless.";False;False;;;;1610347560;;False;{};giumfnd;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giumfnd/;1610397619;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Yeagerenist;;;[];;;;text;t2_81fpj3ue;False;False;[];;As expected of spinal cord creature;False;False;;;;1610347578;;False;{};giumgk0;False;t3_kujurp;False;False;t1_gisx424;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giumgk0/;1610397638;4;True;False;anime;t5_2qh22;;0;[]; -[];;;eajwoo;;;[];;;;text;t2_7gane8t7;False;False;[];;the height difference-;False;False;;;;1610347588;;False;{};giumgzd;False;t3_kujurp;False;True;t1_gisafs9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giumgzd/;1610397647;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Loxer150;;;[];;;;text;t2_1fux4rud;False;False;[];;So... who’s actually the bad one now? I think I remember back in season 3 that the Titans were actually good and Marleyans killed them, but now Willy said that the Titans brought destruction upon themselves;False;False;;;;1610347590;;False;{};giumh3m;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giumh3m/;1610397649;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ColumnsAreGay;;;[];;;;text;t2_9447i2uv;False;False;[];;I mean idk if I'd call it learning, it seems like Eren is not necessarily in a great place atm and that morally dubious move is a prime example. Super interesting direction for his character but maybe not Eren's best self;False;False;;;;1610347611;;False;{};giumi2i;False;t3_kujurp;False;True;t1_gislcam;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giumi2i/;1610397669;2;True;False;anime;t5_2qh22;;0;[]; -[];;;iDeshh;;;[];;;;text;t2_s4n8v;False;False;[];;"Willy Tybur: ""I'm doing my part!"".";False;False;;;;1610347674;;False;{};giumkw0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giumkw0/;1610397726;6;True;False;anime;t5_2qh22;;0;[]; -[];;;HawkBlawk;;;[];;;;text;t2_86o86ule;False;False;[];;I need whatever that band jam was when they began the play to hit spotify.;False;False;;;;1610347732;;False;{};giumnh3;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giumnh3/;1610397792;5;True;False;anime;t5_2qh22;;0;[]; -[];;;seiriyu;;;[];;;;text;t2_acx9l;False;False;[];;yup. eren's now turning it back on him. reiner is his own worst enemy.;False;False;;;;1610347739;;1610347990.0;{};giumnt9;False;t3_kujurp;False;True;t1_giueijc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giumnt9/;1610397799;0;True;False;anime;t5_2qh22;;0;[]; -[];;;sgtshootsalot;;;[];;;;text;t2_bmvjz;False;False;[];;He did it to save the world.;False;False;;;;1610347801;;False;{};giumqmq;False;t3_kujurp;False;False;t1_git17xy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giumqmq/;1610397854;5;True;False;anime;t5_2qh22;;0;[]; -[];;;_LadyForlorn;;;[];;;;text;t2_4yu1dg7c;False;False;[];;What is r/anime karma and awards record for a discussion post?;False;False;;;;1610347836;;False;{};giums7c;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giums7c/;1610397902;10;True;False;anime;t5_2qh22;;0;[]; -[];;;HawkBlawk;;;[];;;;text;t2_86o86ule;False;False;[];;I think it was an excellent way to show us the lengths Eren is willing to go and what he's prepared to do for his cause vs what others see their limits as.;False;False;;;;1610347844;;False;{};giumsm3;False;t3_kujurp;False;False;t1_gium8am;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giumsm3/;1610397909;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Ijustwant2beok;;;[];;;;text;t2_xs5jr;False;False;[];;"Not a manga reader, so don't tell me anything I shouldn't know but from the intel Reiner brought back, they should believe Eren is somehow able to control the founding titan without being affected by the king's vow from what they saw him do at the end of S2. - -From their perspective they have no way of knowing it was a fluke. A 1 in a million chance because of Eren touching a royal.";False;False;;;;1610347858;;False;{};giumt9n;False;t3_kujurp;False;False;t1_giuduze;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giumt9n/;1610397924;11;True;False;anime;t5_2qh22;;0;[]; -[];;;IJustMadeThis;;;[];;;;text;t2_3p5i9;False;False;[];;"This whole episode had me guessing everyone’s intentions until the end. When Willy’s speech took the first turn I thought maybe he somehow got on Paradis’ side in the last 4 years, but...nope. - -Madam Azumabito (Easterner, where Mikasa is from) made a point to say hi to Willy before his speech but then left immediately after...she had to have known what was coming.";False;False;;;;1610347878;;1610348542.0;{};giumu67;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giumu67/;1610397942;29;True;False;anime;t5_2qh22;;0;[]; -[];;;cornpenguin01;;;[];;;;text;t2_147sgq;False;False;[];;Holy shit this episode is going to SLAUGHTER the karma and comment record;False;False;;;;1610347882;;False;{};giumuc8;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giumuc8/;1610397945;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Credar;;;[];;;;text;t2_e1djq;False;False;[];;Whatever this post will be in like 12 hours.;False;False;;;;1610347904;;False;{};giumvct;False;t3_kujurp;False;False;t1_giums7c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giumvct/;1610397967;28;True;False;anime;t5_2qh22;;0;[]; -[];;;Raviolla;;;[];;;;text;t2_rmwlm;False;False;[];;hi hk fancy seeing you here good sir;False;False;;;;1610347913;;False;{};giumvrm;False;t3_kujurp;False;True;t1_gisarcw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giumvrm/;1610397976;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Homie_F;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/kn1ghtm4re;light;text;t2_x959aj;False;False;[];;Those titans, the kind eren saw when going to the sea, are normally created from the punishment they receive for going against marley, are they not? Like, with the fluid injected into them and then thrown off the wall? Wouldn't it be fine for him to feel bad for that titan and then not care for the actual eldians in Marley? Don't think he considers those living in Marley to be patriots at all.;False;False;;;;1610347930;;False;{};giumwhd;False;t3_kujurp;False;False;t1_giujy3q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giumwhd/;1610397993;5;True;False;anime;t5_2qh22;;0;[]; -[];;;TicketCool;;;[];;;;text;t2_9jrr6yuo;False;False;[];;"Atleast war here in the anime has understandable moral reasons. - -War nowadays tho... Oil.";False;False;;;;1610347944;;False;{};giumx66;False;t3_kujurp;False;True;t1_giuhlb1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giumx66/;1610398007;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sanic_de_hegehog;;MAL;[];;https://myanimelist.net/profile/sanic_de_hegehog;dark;text;t2_e028fcj;False;False;[];;"> I think I remember back in season 3 that the Titans were actually good - -The Eldian restorationists thought they were good, however that doesn't mean this was really the truth. As Eren Kruger says, all it takes for something be the truth is for people to believe it.";False;False;;;;1610347961;;False;{};giumxyu;False;t3_kujurp;False;False;t1_giumh3m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giumxyu/;1610398022;17;True;False;anime;t5_2qh22;;0;[]; -[];;;iamquitecertain;;;[];;;;text;t2_kobbk;False;False;[];;"Hell even if it screens in theaters, it's probably not a good idea to even go to a theater to see it because, ya know, the thing. So we'll have to wait even longer for the movie to come out digitally/DVD/Blu-ray before we can see it. - -In other words, pretty much the same situation the Demon Slayer movie is in rn";False;False;;;;1610347961;;False;{};giumxzg;False;t3_kujurp;False;False;t1_giue8wg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giumxzg/;1610398023;5;True;False;anime;t5_2qh22;;0;[]; -[];;;FeistyKnight;;;[];;;;text;t2_1twmffwo;False;False;[];;Definitely, the tension building up to it too. Beyond excited for what's to come;False;False;;;;1610347970;;False;{};giumyev;False;t3_kujurp;False;False;t1_giumsm3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giumyev/;1610398031;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Chinbie;;;[];;;;text;t2_12h6erpy;False;False;[];;Im just about to watch the current episode but we already have 19k karma upvotes in just 12 hours... lets go...;False;False;;;;1610347999;;False;{};giumzpo;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giumzpo/;1610398057;20;True;False;anime;t5_2qh22;;0;[]; -[];;;iamquitecertain;;;[];;;;text;t2_kobbk;False;False;[];;#SHINZOU WO SASAGEYO;False;False;;;;1610348052;;False;{};giun231;False;t3_kujurp;False;True;t1_giulsxp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giun231/;1610398103;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blueasian0682;;;[];;;;text;t2_1mq0q9k2;False;False;[];;Iirc hange said in one of her research that titans are not dense at all, they're just heavy cuz they're huge, so they probably can float on a large body of water.;False;False;;;;1610348056;;False;{};giun29j;False;t3_kujurp;False;False;t1_giugabd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giun29j/;1610398106;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Leafs_fan_cucked_you;;;[];;;;text;t2_87v4f619;False;False;[];;After the first episode where Erin watches his mom get eaten everyone's mother would be horrified and stop watching the show;False;False;;;;1610348070;;False;{};giun2v8;False;t3_kujurp;False;False;t1_gisbqfm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giun2v8/;1610398119;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheHDEYGuy;;;[];;;;text;t2_45mpp7i4;False;False;[];;Give up your karma and die.;False;False;;;;1610348074;;False;{};giun32a;False;t3_kujurp;False;False;t1_giujg4r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giun32a/;1610398123;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610348105;;False;{};giun4iy;False;t3_kujurp;False;True;t1_gium6zz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giun4iy/;1610398150;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sanic_de_hegehog;;MAL;[];;https://myanimelist.net/profile/sanic_de_hegehog;dark;text;t2_e028fcj;False;False;[];;"> Anime only here. Cool episode. - -... - ->Cool episode. - -Manga readers crying rn";False;False;;;;1610348105;;False;{};giun4jb;False;t3_kujurp;False;True;t1_giul66r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giun4jb/;1610398150;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Leafs_fan_cucked_you;;;[];;;;text;t2_87v4f619;False;False;[];;I thought that was the point though. Like going on stage he knew he was about to die and be the sacrificial lamb as a way of retribution for his family's sins.;False;False;;;;1610348131;;False;{};giun5o5;False;t3_kujurp;False;True;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giun5o5/;1610398173;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ATMisboss;;;[];;;;text;t2_2yvbt4ri;False;False;[];;Holy hell this episode was a masterpiece. The tension was so well done and then. Boom.;False;False;;;;1610348155;;False;{};giun6s0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giun6s0/;1610398194;14;True;False;anime;t5_2qh22;;0;[]; -[];;;CoolAsTheUnthawed;;;[];;;;text;t2_w2qhf;False;False;[];;So we're not gonna talk about how that was definitely Armin who lead Pieck and other dude to that pit?? My boy is so tall now! Got that colossal in him;False;False;;;;1610348164;;False;{};giun77q;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giun77q/;1610398203;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Elaego;;;[];;;;text;t2_55zd6hhb;False;False;[];;"Not thrown to paradise, he wouldn't have been discovered yet. I am talking about paradis the island, not the figurative ""paradise"" that defectors are sent to.";False;False;;;;1610348177;;False;{};giun7rm;False;t3_kujurp;False;True;t1_giukbwq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giun7rm/;1610398219;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Leafs_fan_cucked_you;;;[];;;;text;t2_87v4f619;False;False;[];;Bruh do you remember the almost suicide from a few episodes ago? Dude just straight up wants to die at this point.;False;False;;;;1610348193;;False;{};giun8i2;False;t3_kujurp;False;True;t1_gislx79;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giun8i2/;1610398232;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Phoenix_of_Steel;;;[];;;;text;t2_7g965q4r;False;False;[];;"Eren needs to shout ""Kono uragirimonogaaaa!"" in next episode!";False;False;;;;1610348220;;False;{};giun9qs;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giun9qs/;1610398255;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TOXIC--HATER;;;[];;;;text;t2_62mbtzqp;False;False;[];;How is no one talking about Armin in disguise?;False;False;;;;1610348228;;False;{};giuna4y;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuna4y/;1610398265;18;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;36*;False;False;;;;1610348264;;False;{};giunbpl;False;t3_kujurp;False;False;t1_giumvct;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giunbpl/;1610398298;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Leafs_fan_cucked_you;;;[];;;;text;t2_87v4f619;False;False;[];;It's overkill but I appreciate the spoiler tags;False;False;;;;1610348342;;False;{};giunfb3;False;t3_kujurp;False;True;t1_gisfo09;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giunfb3/;1610398371;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sabersober;;skip7;[];;;dark;text;t2_2jyhgtlk;False;False;[];;Someone please make an anime about Reiner and his therapist, I would pay to watch that show!;False;False;;;;1610348351;;False;{};giunfr6;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giunfr6/;1610398379;15;True;False;anime;t5_2qh22;;0;[]; -[];;;airiest;;;[];;;;text;t2_13dioj;False;False;[];;Awesome! I never realized how big it actually was.;False;False;;;;1610348372;;False;{};giungn0;False;t3_kujurp;False;False;t1_giu6p63;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giungn0/;1610398399;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Regrer47;;;[];;;;text;t2_1wtg17bq;False;False;[];;I kinda wish I haven't read the manga now;False;False;;;;1610348397;;False;{};giunhrm;False;t3_kujurp;False;False;t1_gisv5pt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giunhrm/;1610398419;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Leafs_fan_cucked_you;;;[];;;;text;t2_87v4f619;False;False;[];;Definitely it was heavily implied that Willy knew he was dying on that stage beforehand;False;False;;;;1610348402;;False;{};giunhz9;False;t3_kujurp;False;False;t1_gisb08f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giunhz9/;1610398422;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TSDan;;;[];;;;text;t2_12uv1ebg;False;True;[];;Exactly, they were innocent people;False;False;;;;1610348443;;False;{};giunjuk;False;t3_kujurp;False;False;t1_giulyzl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giunjuk/;1610398462;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Invoqwer;;;[];;;;text;t2_88vb3;False;False;[];;"> Manga readers crying rn - -¯\\\_(ツ )_/¯";False;False;;;;1610348444;;False;{};giunjw3;False;t3_kujurp;False;False;t1_giun4jb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giunjw3/;1610398463;6;True;False;anime;t5_2qh22;;0;[]; -[];;;MelonElbows;;;[];;;;text;t2_5leqv6e;False;False;[];;You Eldians sure are a contentious people;False;False;;;;1610348464;;False;{};giunku1;False;t3_kujurp;False;True;t1_git36ag;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giunku1/;1610398483;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"War Hammer could be any one of the Tyburs. Why would the leader who ""doesn't want to die"" saddle himself with a 13 year death sentence? In fact the next episode preview shows that War Hammer Titan is gonna be fighting him. So where's that ""guarantee"", what were all those civvies, children among them, get murdered for? - -It was a hell of a dramatic entrance, but that wasn't worth all those innocent lives.";False;False;;;;1610348486;;False;{};giunlrp;False;t3_kujurp;False;True;t1_gium1wb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giunlrp/;1610398501;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kam_E_luck;;;[];;;;text;t2_3i5m4uwq;False;False;[];;ReZero aint as mainstream as AoT tho. ReZero is alot more niche with its time travel premise while AOT is easier to get into;False;False;;;;1610348517;;False;{};giunn60;False;t3_kujurp;False;False;t1_giulou4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giunn60/;1610398532;12;True;False;anime;t5_2qh22;;0;[]; -[];;;no_fluffies_please;;;[];;;;text;t2_np0kt;False;False;[];;"I get that, but in a world where everyone wants to avoid war, there are a couple decisions that lead to it: - -- The Tyburs for not being upfront about the truth until it was more convenient for them, by treating Paradis as a boogeyman and destroying the walls until they changed the narrative to ""Fritz was the good guy all along and Eren is actually a terrorist, whoops"". If they were upfront about it, Paradis could have been left alone like they always were. Like it was said in this episode, Paradis supposedly had enough power to level the world, but never did and isolated themselves instead. We can assume that Paradis didn't *want* to use the titans or they didn't actually have that power- why risk the peace by infiltrating Paradis? Technology would eventually overtake titans in terms of power, so they could just wait it out. - -- Fritz for not being upfront to the citizens of Paradis. I mean, a lot of death could be avoided in the case of a hostile internal takeover of someone who *wouldn't* tolerate peace. Withholding knowledge from everyone and relying on security by obscurity made it a lot easier to lose the founding titan to a bad actor. - -- Marley for aggressive expansion, and the desire of titans in Paradis. - -- The entire world for ostracizing a race. Not an ideology or anything of actual meaning- just ancestry. - -- Everyone who was capable of, but did not accept diplomacy as a potential option. - -When you have two bubbles with incomplete information who believe that the other side is the enemy of humanity, you're gonna have a bad time. It allows fanatics like Gabi or Eren to commit atrocities and believe themselves to be justified. It means people like Erwin die chasing knowledge when they could be doing something more productive. Withholding information is cruel- Tyburs did it for gain, Fritz for hubris. IMO these people carry the bulk of the blame: they were in the position to make a choice, but made the wrong ones.";False;False;;;;1610348533;;False;{};giunnxf;False;t3_kujurp;False;True;t1_giuark4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giunnxf/;1610398546;0;True;False;anime;t5_2qh22;;0;[]; -[];;;PikachusAnalCavity;;;[];;;;text;t2_6kahtlla;False;False;[];;"I think it’s because Isayama had a lot of it planned out and made sure everything had a purpose. Nothings random, so much stuff is interconnected, and as such when we learn about Marley it feels like a natural extension of what came before. - -Most authors who do a mystery don’t really do the same level of planning, they kinda use the idea of the mystery to propel themselves and it works for a couple of seasons but then it kinda fizzles out. I think Isayama both built up to the mystery but also laid out a ton of stuff to set up that the mystery was just a gateway to another story. - -Also it helps when you create GOAT characters like Erwin who hype us up each episode lol";False;False;;;;1610348536;;False;{};giuno1z;False;t3_kujurp;False;False;t1_gium6zz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuno1z/;1610398549;31;True;False;anime;t5_2qh22;;0;[]; -[];;;iamquitecertain;;;[];;;;text;t2_kobbk;False;False;[];;"You just reminded me that we've never seen Armin transform into the Colossal Titan yet. It's gonna be absolutely *sick*. And that's probably going to be true from both the ""awesome"" meaning and the literal ""sick""/disgusting meaning";False;False;;;;1610348579;;False;{};giunq0t;False;t3_kujurp;False;False;t1_giu4jw4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giunq0t/;1610398588;4;True;False;anime;t5_2qh22;;0;[]; -[];;;HarisBosch;;;[];;;;text;t2_7k4uogqc;False;False;[];;lol wasn't one of the reasons Marley attacked the island literally for oil?;False;False;;;;1610348584;;False;{};giunq7o;False;t3_kujurp;False;True;t1_giumx66;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giunq7o/;1610398591;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Leafs_fan_cucked_you;;;[];;;;text;t2_87v4f619;False;False;[];;I mean he did just murder a bunch of innocent civilians by destroying that apartment building and will probably murder a lot more next episode;False;False;;;;1610348585;;False;{};giunq9i;False;t3_kujurp;False;True;t1_gisw1ro;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giunq9i/;1610398592;3;True;False;anime;t5_2qh22;;0;[]; -[];;;rhyrhygogo;;;[];;;;text;t2_2ur6eaq9;False;False;[];;That trending got me scared for a bit;False;False;;;;1610348599;;False;{};giunqvm;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giunqvm/;1610398603;20;True;False;anime;t5_2qh22;;0;[]; -[];;;saltyjellybeans;;;[];;;;text;t2_rqu7qx6;False;False;[];;what carriage scene?;False;False;;;;1610348610;;False;{};giunrcr;False;t3_kujurp;False;False;t1_giscz7r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giunrcr/;1610398612;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Bensemus;;;[];;;;text;t2_oxor2;False;False;[];;She was there at the fight at the end of S3. Going through those episodes could show us who she's seen but it wasn't many. None of the guys are thin enough to be the soldier but Armin but he's too short and wrong voice.;False;False;;;;1610348610;;False;{};giunrdj;False;t3_kujurp;False;True;t1_gitazoo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giunrdj/;1610398612;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ColumnsAreGay;;;[];;;;text;t2_9447i2uv;False;False;[];;To me the writing was definitely better last season. It's not the lack of action - the scene with Reiner and Bertholdt talking to Eren prior to their fight is still interesting because it builds tension very carefully with separate conversations and characters moving away or listening in. The way Willy's speech is presented doesn't have the same intensity or intrigue for me;False;False;;;;1610348626;;False;{};giuns2q;False;t3_kujurp;False;True;t1_giukjzx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuns2q/;1610398627;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Leafs_fan_cucked_you;;;[];;;;text;t2_87v4f619;False;False;[];;Were you two friends on that forum?;False;False;;;;1610348640;;False;{};giunsp6;False;t3_kujurp;False;True;t1_git5mea;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giunsp6/;1610398639;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IJustMadeThis;;;[];;;;text;t2_3p5i9;False;False;[];;Did they ever show him after he ate the Colossal? I thought he was a lot shorter before;False;False;;;;1610348685;;False;{};giununl;False;t3_kujurp;False;False;t1_giuna4y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giununl/;1610398681;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Yukihirou_Vi_Ghania;;;[];;;;text;t2_9093txh1;False;False;[];;Gabi did nothing wrong though ?;False;False;;;;1610348691;;False;{};giunuyo;False;t3_kujurp;False;True;t1_giugmmu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giunuyo/;1610398686;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PikachusAnalCavity;;;[];;;;text;t2_6kahtlla;False;False;[];;There should be a spin-off series where Falco has to fight gigantic mailboxes;False;False;;;;1610348728;;False;{};giunwlh;False;t3_kujurp;False;True;t1_gise9k9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giunwlh/;1610398717;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HarisBosch;;;[];;;;text;t2_7k4uogqc;False;False;[];;yeah but Eren cannot control titans using the founding titan at will. The only time he ever did so was when he was touching someone who had royal blood;False;False;;;;1610348766;;False;{};giuny8c;False;t3_kujurp;False;True;t1_gisuhmp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuny8c/;1610398750;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;She's no innocent, but she hasn't mass murdered any civilians yet.;False;False;;;;1610348795;;False;{};giunzim;False;t3_kujurp;False;True;t1_giunuyo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giunzim/;1610398775;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Bro it's war, morals only hold you back in war. Everything is fair in love and war my friend;False;False;;;;1610348799;;False;{};giunzot;False;t3_kujurp;False;True;t1_giunlrp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giunzot/;1610398778;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PikachusAnalCavity;;;[];;;;text;t2_6kahtlla;False;False;[];;You’re not alone;False;False;;;;1610348811;;False;{};giuo07m;False;t3_kujurp;False;True;t1_gisv5pt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuo07m/;1610398789;2;True;False;anime;t5_2qh22;;0;[]; -[];;;1Estel1;;;[];;;;text;t2_7wrrlos6;False;False;[];;They do emit steam though;False;False;;;;1610348849;;False;{};giuo1w6;False;t3_kujurp;False;True;t1_giswymf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuo1w6/;1610398822;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rin_at_hunt_17A;;;[];;;;text;t2_4lb7h7hy;False;False;[];;This episode was a beautiful cluster of nostalgic callbacks to every single thing that's happened in the last three seasons. And the highlight of the episode remains the moment when Eren is shown as a caricature in the theater screen that doubles up as the grim foretelling of what actually happened next.;False;False;;;;1610348856;;False;{};giuo28y;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuo28y/;1610398828;14;True;False;anime;t5_2qh22;;0;[]; -[];;;TOXIC--HATER;;;[];;;;text;t2_62mbtzqp;False;False;[];;The last time we saw him was on that beach.. he was towering over pock in today's episode tho;False;False;;;;1610348858;;False;{};giuo2be;False;t3_kujurp;False;False;t1_giununl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuo2be/;1610398829;8;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"> Everything is fair in love and war - -Rapists and war criminals agree, but no-one else should.";False;False;;;;1610348952;;False;{};giuo6k2;False;t3_kujurp;False;True;t1_giunzot;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuo6k2/;1610398911;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TicketCool;;;[];;;;text;t2_9jrr6yuo;False;False;[];;Yeah, to prepare for future technology.;False;False;;;;1610349049;;False;{};giuob00;False;t3_kujurp;False;True;t1_giunq7o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuob00/;1610398997;2;True;False;anime;t5_2qh22;;0;[]; -[];;;almosthighenough;;;[];;;;text;t2_1klqsos;False;False;[];;Yeah he is one of the few scouts alive Pieck would recognize. Maybe he hit a growth spurt. Or maybe growing taller is a side effect of being the colossal Titan. Bertholdt was much taller than everyone else as well. I think it showed Armins blue eyes too.;False;False;;;;1610349050;;False;{};giuob0u;False;t3_kujurp;False;True;t1_giuj0qz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuob0u/;1610398998;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mathematician-Weekly;;;[];;;;text;t2_6xid6wl4;False;False;[];;Am i the only one who literaly forgot to breath? Like seriously, my heart dropped to the core of the earth...;False;False;;;;1610349079;;False;{};giuoca0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuoca0/;1610399021;15;True;False;anime;t5_2qh22;;0;[]; -[];;;GGG100;;;[];;;;text;t2_n30n6;False;False;[];;Something interesting that dawned upon me -- Both the Jaw and Cart titan were lured into a trap by someone, most likely as part of Eren's plan, yet Zeke, who has the most powerful titan in Marley (or second most powerful, I guess we'll find out next episode once the warhammer titan is properly introduced), was left out. With Marley's officers being distrustful of him, it's possible that Zeke might be in on whatever Eren's planning and might even be the man responsible for getting him in undetected.;False;False;;;;1610349090;;False;{};giuocrk;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuocrk/;1610399030;23;True;False;anime;t5_2qh22;;0;[]; -[];;;aaa1e2r3;;;[];;;;text;t2_pckox;False;False;[];;I'm a bit confused about the timeline of things. In the play Willy says that the deal with Fritz was 100 years ago. But that would mean that between Fritz and the current generation is at most 4 generations' worth of people. From the previous seasons, it was implied multiple generations since the Eldians came to Paradise Island. 4 generations was enough for the Eldians on Paradise to forget the existence of the outside world, forget their nature as eldians, invent the maneuver gear and operate under the assumption that titans were this natural threat from the outside world?;False;False;;;;1610349107;;False;{};giuodio;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuodio/;1610399044;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yukihirou_Vi_Ghania;;;[];;;;text;t2_9093txh1;False;False;[];;"Yup, it's Marley thirst for world domination. In other words, human ""greed"". - -It's entirely king Fritz and the Tybur family's fault for letting these events to happen.";False;False;;;;1610349150;;False;{};giuofe3;False;t3_kujurp;False;False;t1_giuhnnm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuofe3/;1610399084;3;True;False;anime;t5_2qh22;;0;[]; -[];;;iamquitecertain;;;[];;;;text;t2_kobbk;False;False;[];;I didn't know I needed this series until now;False;False;;;;1610349275;;False;{};giuokxy;False;t3_kujurp;False;True;t1_giu2r1q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuokxy/;1610399191;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Yukihirou_Vi_Ghania;;;[];;;;text;t2_9093txh1;False;False;[];;War crime is still war crime, ten of thousands of soldiers/people died a horrible death because of her actions. No sugar coating it.;False;False;;;;1610349328;;False;{};giuonay;False;t3_kujurp;False;True;t1_giunzim;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuonay/;1610399235;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;K take out love, i just meant war. But do you seriously think in ww2 it was only the Germans who commited war crimes ? Many other countries did, but only the Germans got penalized coz they lost. Eren made the right choice here.;False;False;;;;1610349362;;False;{};giuoour;False;t3_kujurp;False;True;t1_giuo6k2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuoour/;1610399263;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sharmarahulkohli;;;[];;;;text;t2_12gbee;False;False;[];;You forgot that the King altered/wiped out the memories of Every Eldian inside the walls;False;False;;;;1610349370;;False;{};giuop6b;False;t3_kujurp;False;False;t1_giuodio;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuop6b/;1610399272;50;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"When someone from the royal family that has access to the ""full power"" (whatever that means) they gain all the memories since the first king (and maybe the future? I can't recall). With those memories they become trapped into following the plan and as part of that refuse to tell anyone what that plan is.";False;False;;;;1610349385;;False;{};giuopry;False;t3_kujurp;False;True;t1_gittp6n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuopry/;1610399283;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cybersteel;;;[];;;;text;t2_dpy8o;False;False;[];;On That Day, Humanity Received a Grim Reminder...;False;False;;;;1610349386;;False;{};giuopsi;False;t3_kujurp;False;False;t1_giuo28y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuopsi/;1610399283;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Cybersteel;;;[];;;;text;t2_dpy8o;False;False;[];;Paradiso allied with the Japs?;False;False;;;;1610349452;;False;{};giuosne;False;t3_kujurp;False;False;t1_giumu67;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuosne/;1610399335;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TOXIC--HATER;;;[];;;;text;t2_62mbtzqp;False;False;[];;man's grew 2 feet and an ugly ass beard in 2 years :/;False;False;;;;1610349472;;False;{};giuotj0;False;t3_kujurp;False;False;t1_giuo2be;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuotj0/;1610399351;9;True;False;anime;t5_2qh22;;0;[]; -[];;;oncheese;;;[];;;;text;t2_8ijciebo;False;False;[];;i survived spoilers because i had an exam today. so i didnt touch my phone. lucky me. i just saw ep 5. it was legendary;False;False;;;;1610349504;;False;{};giuoux0;False;t3_kujurp;False;False;t1_gisea3w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuoux0/;1610399381;4;True;False;anime;t5_2qh22;;0;[]; -[];;;DanTan3machi;;;[];;;;text;t2_9m53i2fb;False;False;[];;That look of resignation on Eren's face when willy declared war was so well done.;False;False;;;;1610349519;;False;{};giuovj9;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuovj9/;1610399393;17;True;False;anime;t5_2qh22;;0;[]; -[];;;iLiftHeavyThingsUp;;;[];;;;text;t2_v66nm;False;False;[];;"Reiner: - -""Eren you can stop being the bad guy now.""";False;False;;;;1610349614;;False;{};giuozoj;False;t3_kujurp;False;False;t1_gisafs9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giuozoj/;1610399477;8;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;4 years.;False;False;;;;1610349651;;False;{};giup0v4;False;t3_kujurp;False;False;t1_giuotj0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giup0v4/;1610399498;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Lordofdepression;;;[];;;;text;t2_75f08;False;False;[];;"Fair point! - -In S3 it's actually discussed that Eren's activation was a mystery to Paradis leadership (and Eren is reluctant to share the information regarding Dina) so both Paradis and Marleyan government assumed that there's another hidden set of activation rules that they didn't know about. (Which of course false) - -But even then it can be argued that Eren in S2 didn't fully access the power of founding titan and merely able to use the coordinate, without actually accessing the path dimension as shown in S3 part 1, as that dimension is only accessible to the royal family and again like S3 part 1 and 2 establish, has the abilty to manipulate Titans that transcend space and time. (to the point that one can theoretically wish the titans away using the founding titan, like many of the king successors tried to do before being overwritten by the will of the pacifist king) - -I think at the time of the show right now, both Paradis and Marleyan government only work with the assumption that Eren Jaeger has access to the coordinate as proof that he is the bearer of the Founding Titan but doesn't fully control the Founding Titan full powers due to being a non-royal blood. - -Again using S3 part 2 and earlier episodes of this season, the Royal family and Zeke in marley hides their identity because of the assumption that Marley knows full well about the Founding Titan abilities, rules and activation condition included.";False;False;;;;1610349653;;False;{};giup0zu;False;t3_kujurp;False;True;t1_giumt9n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giup0zu/;1610399501;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Cybersteel;;;[];;;;text;t2_dpy8o;False;False;[];;Sometimes you have to do what you have to do. It can't be helped.;False;False;;;;1610349660;;False;{};giup1gq;False;t3_kujurp;False;True;t1_giuamqv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giup1gq/;1610399508;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Thundestroyer;;;[];;;;text;t2_45unx4e2;False;False;[];;Not sure if you edited your original comment or if I'm blind, but I didn't see the 2nd part mentioning the inaccuracy of the anime. Nevertheless, your point makes sense and is probably more realistic;False;False;;;;1610349696;;False;{};giup2z3;False;t3_kujurp;False;False;t1_giulava;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giup2z3/;1610399539;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Cybersteel;;;[];;;;text;t2_dpy8o;False;False;[];;I mean there's good people on both sides.;False;False;;;;1610349726;;False;{};giup47d;False;t3_kujurp;False;True;t1_giu9utl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giup47d/;1610399563;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BoltOfBlazingGold;;;[];;;;text;t2_11qb6gnq;False;False;[];;"You're toning it down by just simply calling it a festival, like pretending it's a group of friends that want to have fun, it's like you have bias yourself. It's not your average and simple festival if you declare war and hold military presence, like, come on, let's not get pedantic about it. - -Yeah, because allowing the declaration of war is something that can be used to provide an antecedent at some point that Paradis was not the faction that initiated the conflict that just started and that will probably drag thousands to their death. Because is has been hammered by the show that they would not be able to de escalate by means of goodwill, seems you couldn't grasp that and mistook it for me saying something along the lines that attacking afterwards will make the world think they are good and thus would be okay and justify the deaths of innocents like I didn't understand the grey morality that's been across the show, so let's resort to sarcastic retorts and laugh. And let's not even touch upong how grossly you misunderstood the tension point ""He is perfectly able to figth back..."" ""...cannons do nothing..."", do I have to spell it out now? In any case I did forget to say that he might have not done something prior due to the warhammer titan and the implication that he has a plan, but that's wait and see. I'm also already tired.";False;False;;;;1610349801;;False;{};giup7mw;False;t3_kujurp;False;True;t1_giuf63x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giup7mw/;1610399627;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Infamous-QB;;;[];;;;text;t2_8f3u139z;False;False;[];;I didn't miss anything though, I've read the manga. All I'm saying is that Eren is perfectly aware of what kind of atrocities he's comitting, but if the choice is between his loved ones lives and the others, he'll always choose the former.;False;False;;;;1610349828;;False;{};giup8y7;False;t3_kujurp;False;False;t1_giuln0h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giup8y7/;1610399648;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheGoldenCatch;;;[];;;;text;t2_1l917jtf;False;False;[];;Ok you didn't feel like it was as intense but the writing is much better than before. It has been the best AOT has ever been for me. Everything that was built up in the past 4 episodes with Reiner, the Tyber family and Eren being in Marley was all paid off at the same time. This season has had the highest stakes and everything about Reiner and Eren's relationship throughout the series came full circle in this one episode. It's fine if you aren't liking it but to say that the writing specifically has gotten worse just doesn't really make sense.;False;False;;;;1610349842;;False;{};giup9mw;False;t3_kujurp;False;False;t1_giuns2q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giup9mw/;1610399659;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AznLuvsMusic;;;[];;;;text;t2_93shr;False;False;[];;"Eren planned the meeting out so well. I love how he demonstrated the leverage he had in the situation. Showed his cut hand to Reiner as a threat to demonstrate that he doesn’t need to act to transform, that he’s already damaged enough to do it on the spot. Pointed out the civilians in the building directly above them. Not to mention their proximity to the stage and Willy Tybur. - -Most of all, he made Falco stay. Not to distress the poor kid with his and Reiner’s history, I imagine, because he does think Falco is a good person. Rather, he knows that if he transforms that Reiner will prioritize protecting Falco over fighting Eren. - -Eren has matured so much since his training corps days. Just shrugging off his violent threat that he had declared to Reiner a mere four years ago. Essentially doing what Reiner did and coming to know that not all enemies outside his home are bad people. - -But I think a key difference between him and Reiner is that Eren is more prepared to make the necessary sacrifices to achieve his goal. As soon as Willy declared war he did not hesitate to transform and kill those civilians. - -While Reiner did indirectly kill several civilians when he destroyed the wall, as he grew to live with other civilians in the walls and train with the training corps, he became more torn about his mission to save the world. He continued to serve his hometown, but clearly it’s been distressing to him and he’s suffering over it. - -I think that this difference is a matter of an age difference, and Eren’s inheritance of the Founding Titan. Reiner was a kid when he destroyed the wall and spent his teens growing up with that burden. With the timeskip, Eren’s an adult and spent a part of his late teen years with the burden of knowledge that came with the Founding Titan. - -Overall I just appreciate the parallels between them. When I first started watching shortly after the first season aired, I never thought that Reiner of all people would end up serving as the parallel character to Eren.";False;False;;;;1610349901;;False;{};giupcla;False;t3_kujurp;False;False;t1_gish4zq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giupcla/;1610399710;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Archlegendary;;;[];;;;text;t2_ximy7;False;False;[];;Nah they're not dead;False;False;;;;1610349922;;False;{};giupdlp;False;t3_kujurp;False;True;t1_gisw1na;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giupdlp/;1610399729;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hanshee;;;[];;;;text;t2_au7ra;False;False;[];;I would have assumed anyone in that room was dead. So falco is alive?;False;False;;;;1610349942;;False;{};giupejz;False;t3_kujurp;False;True;t1_gismgrx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giupejz/;1610399745;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;I always thought of it as Terminator reference.;False;False;;;;1610305309;;False;{};gisd3ps;False;t3_kukbld;False;False;t3_kukbld;/r/anime/comments/kukbld/what_is_the_originsignificance_of_a_single/gisd3ps/;1610346694;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;I suppose it is just because it is supposed to look cool and convey power and rage.;False;False;;;;1610305364;;False;{};gisd7n5;False;t3_kukbld;False;False;t3_kukbld;/r/anime/comments/kukbld/what_is_the_originsignificance_of_a_single/gisd7n5/;1610346753;10;True;False;anime;t5_2qh22;;0;[]; -[];;;harvorus;;;[];;;;text;t2_42jmwcnn;False;False;[];;You should watch ore monogatari now that you're at it. It's similar vibe and will treat that post anime depression too;False;False;;;;1610305471;;False;{};gisdfc9;False;t3_kukf0x;False;True;t3_kukf0x;/r/anime/comments/kukf0x/wolf_girl_and_black_prince/gisdfc9/;1610346883;0;True;False;anime;t5_2qh22;;0;[]; -[];;;juances19;;HB;[];;https://kitsu.io/users/juances;dark;text;t2_17a18d;False;False;[];;"Red is just an ""angry"" color. IDK what's the science behind it but like I wouldn't get the same vibes if it was pink or green.";False;False;;;;1610305526;;False;{};gisdjoz;False;t3_kukbld;False;False;t3_kukbld;/r/anime/comments/kukbld/what_is_the_originsignificance_of_a_single/gisdjoz/;1610346955;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Torque-A;;;[];;;;text;t2_ghmo2;False;False;[];;You mean a government that severely encroaches on the rights of others, doing more to imprison than to protect, and being controlled by a group of bubble-headed elites who can do whatever the hell they want because they’re rich?;False;False;;;;1610306524;;False;{};gisfkiy;False;t3_kukqwj;False;False;t3_kukqwj;/r/anime/comments/kukqwj/can_a_one_piece_government_exist_irl/gisfkiy/;1610348085;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;Its a light novel series;False;False;;;;1610306890;;False;{};gisgb4b;False;t3_kukruw;False;True;t3_kukruw;/r/anime/comments/kukruw/so_what_im_a_spider/gisgb4b/;1610348498;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeMod;;;[];;;;text;t2_6wrl6;False;False;[];;You can only submit one fanart every 7 days.;False;False;;;;1610306894;moderator;False;{};gisgbdk;False;t3_kukx69;False;True;t3_kukx69;/r/anime/comments/kukx69/cute_erichan_fanart_made_by_me/gisgbdk/;1610348503;1;True;True;anime;t5_2qh22;;0;[]; -[];;;joshuaduzzit;;;[];;;;text;t2_8ohgbntn;False;False;[];;Yeah that one but what I want to know how the world would be. Like are there gonna be militias or something of the sort.;False;False;;;;1610307039;;False;{};gisgm2z;True;t3_kukqwj;False;True;t1_gisfkiy;/r/anime/comments/kukqwj/can_a_one_piece_government_exist_irl/gisgm2z/;1610348668;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Same color, the colors in the anime are for illustration purposes;False;False;;;;1610307113;;False;{};gisgrf5;False;t3_kukylr;False;False;t3_kukylr;/r/anime/comments/kukylr/question_regarding_the_quintessential_quintuplets/gisgrf5/;1610348750;12;True;False;anime;t5_2qh22;;0;[]; -[];;;NintendoMasterNo1;;MAL;[];;http://myanimelist.net/animelist/NintendoMaster1;dark;text;t2_eg21m;False;False;[];;I think they made them have slightly different colors in the anime so the audience can tell them apart. In the manga, where it's all black and white and there's no voice acting, they are much harder to tell apart and the scene where Futaro has them put their hair in ponytails makes more sense.;False;False;;;;1610307122;;False;{};gisgrys;False;t3_kukylr;False;True;t3_kukylr;/r/anime/comments/kukylr/question_regarding_the_quintessential_quintuplets/gisgrys/;1610348758;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FDeeKay;;;[];;;;text;t2_fgpm72;False;False;[];;I think that In lore their hair colors are exactly the same. The anime makes it different so itms easier for us to tell the difference;False;False;;;;1610307133;;False;{};gisgsqr;False;t3_kukylr;False;False;t3_kukylr;/r/anime/comments/kukylr/question_regarding_the_quintessential_quintuplets/gisgsqr/;1610348771;6;True;False;anime;t5_2qh22;;0;[]; -[];;;PrinceKazeKage;;;[];;;;text;t2_vqki37;False;False;[];;I’m currently reading the manga adaption until I start the LN but I was just wondering if I was interpreting the tone wrong. If feels more like a comedy than it’s counterpart.;False;False;;;;1610307164;;False;{};gisguvq;True;t3_kukruw;False;True;t1_gisgb4b;/r/anime/comments/kukruw/so_what_im_a_spider/gisguvq/;1610348804;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Slifer13xx;;MAL;[];;http://myanimelist.net/animelist/Slifer13xx;dark;text;t2_irntz;False;False;[];;USA. That's what he was insinuating.;False;False;;;;1610307231;;False;{};gisgzt7;False;t3_kukqwj;False;False;t1_gisgm2z;/r/anime/comments/kukqwj/can_a_one_piece_government_exist_irl/gisgzt7/;1610348882;12;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;This could turn into a heated discussion;False;False;;;;1610307427;;False;{};gishdv8;False;t3_kukqwj;False;True;t1_gisgzt7;/r/anime/comments/kukqwj/can_a_one_piece_government_exist_irl/gishdv8/;1610349101;1;True;False;anime;t5_2qh22;;0;[]; -[];;;joshuaduzzit;;;[];;;;text;t2_8ohgbntn;False;False;[];;LOL people try so hard to start beef over something. I just wanna know if something like one piece could actually exist.;False;False;;;;1610307525;;False;{};gishkvo;True;t3_kukqwj;False;True;t1_gisgzt7;/r/anime/comments/kukqwj/can_a_one_piece_government_exist_irl/gishkvo/;1610349206;1;True;False;anime;t5_2qh22;;0;[]; -[];;;juances19;;HB;[];;https://kitsu.io/users/juances;dark;text;t2_17a18d;False;False;[];;I find the first volumes of the manga hilarious too, comedy is a big part of the series, with the spider always doing funny poses when she wins or when she tries to cast new skills. It only gets serious during some battles.;False;False;;;;1610307864;;False;{};gisi8va;False;t3_kukruw;False;False;t3_kukruw;/r/anime/comments/kukruw/so_what_im_a_spider/gisi8va/;1610349579;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"I have season 1 and 2 on my Funimation equivalent (animelab) - -And the Netflix jail is for new series that are currently airing in Japan but don't get an official simulcast here because of Netflix - -Its actually great for an older series to be there";False;False;;;;1610308048;;False;{};gisimdp;False;t3_kul9a7;False;True;t3_kul9a7;/r/anime/comments/kul9a7/looks_like_season_1_of_log_horizon_might_be_in/gisimdp/;1610349819;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;What;False;False;;;;1610308078;;False;{};gisiokw;False;t3_kulby7;False;True;t3_kulby7;/r/anime/comments/kulby7/i_am_justice_l/gisiokw/;1610349853;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;I agree with what Light was doing though.;False;False;;;;1610308117;;False;{};gisirf7;False;t3_kulby7;False;True;t3_kulby7;/r/anime/comments/kulby7/i_am_justice_l/gisirf7/;1610349898;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;"""Netflix Jail"" is usually only used to refer to anime that are airing/recently aired that Netflix has the rights to and is willingly holding back for a batch release. Something streaming on Netflix exclusively typically isn't referred to as such. Also I wouldn't worry too much about what's streaming on CR Japan in relation to the rest of the world. I don't think there's much correlation between something being on CR Japan and it being available in other regions. For now, Sentai Filmworks holds the license.";False;False;;;;1610308148;;False;{};gisitnd;False;t3_kul9a7;False;False;t3_kul9a7;/r/anime/comments/kul9a7/looks_like_season_1_of_log_horizon_might_be_in/gisitnd/;1610349931;6;True;False;anime;t5_2qh22;;0;[]; -[];;;PrinceKazeKage;;;[];;;;text;t2_vqki37;False;False;[];;I was honestly blanking when it came to the beginning of the series so I wasn’t sure if the anime was doing it justice with the comedic approach. Thank you I appreciate you;False;False;;;;1610308157;;False;{};gisiua3;True;t3_kukruw;False;True;t1_gisi8va;/r/anime/comments/kukruw/so_what_im_a_spider/gisiua3/;1610349940;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;In the manga, they all have the same hair color and the same voice;False;False;;;;1610308187;;False;{};gisiwh3;False;t3_kukylr;False;False;t3_kukylr;/r/anime/comments/kukylr/question_regarding_the_quintessential_quintuplets/gisiwh3/;1610349972;8;True;False;anime;t5_2qh22;;0;[]; -[];;;xiavORliab;;;[];;;;text;t2_4dniju7s;False;False;[];;I think it already does exist. Isn't the world of One Piece inspire by real life event. So basically the government structure of One Piece is already happening in our world. So yes it can exsist because it already does;False;False;;;;1610308263;;False;{};gisj1tw;False;t3_kukqwj;False;False;t3_kukqwj;/r/anime/comments/kukqwj/can_a_one_piece_government_exist_irl/gisj1tw/;1610350052;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;Not just the Japanese lol;False;False;;;;1610308282;;False;{};gisj35z;False;t3_kukv89;False;False;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gisj35z/;1610350073;204;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610308289;moderator;False;{};gisj3mj;False;t3_kulg6l;False;True;t3_kulg6l;/r/anime/comments/kulg6l/i_need_fast_a_suggestion/gisj3mj/;1610350080;1;False;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;Pretty sure Hidive has the first 2 seasons.;False;False;;;;1610308320;;False;{};gisj5t6;False;t3_kul9a7;False;True;t3_kul9a7;/r/anime/comments/kul9a7/looks_like_season_1_of_log_horizon_might_be_in/gisj5t6/;1610350112;1;True;False;anime;t5_2qh22;;0;[]; -[];;;___-M-___;;;[];;;;text;t2_2ll0x7h8;False;False;[];;"That time I got reincarnated as a slime. - -S2 is coming soon";False;False;;;;1610308395;;False;{};gisjb5v;False;t3_kulg6l;False;True;t3_kulg6l;/r/anime/comments/kulg6l/i_need_fast_a_suggestion/gisjb5v/;1610350195;1;True;False;anime;t5_2qh22;;0;[]; -[];;;joshuaduzzit;;;[];;;;text;t2_8ohgbntn;False;False;[];;Europe back in the day was like that huh? Imagine if Europe conquered the whole world. That would’ve been cool.;False;False;;;;1610308449;;False;{};gisjf1o;True;t3_kukqwj;False;True;t1_gisj1tw;/r/anime/comments/kukqwj/can_a_one_piece_government_exist_irl/gisjf1o/;1610350257;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bam_Bam0352;;;[];;;;text;t2_8hqb2na6;False;False;[];;Gintama;False;False;;;;1610308495;;False;{};gisjikz;False;t3_kulg6l;False;True;t3_kulg6l;/r/anime/comments/kulg6l/i_need_fast_a_suggestion/gisjikz/;1610350313;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;You guys make me want to rewatch the whole anime again;False;False;;;;1610308548;;False;{};gisjmd3;False;t3_kulby7;False;True;t3_kulby7;/r/anime/comments/kulby7/i_am_justice_l/gisjmd3/;1610350371;0;True;False;anime;t5_2qh22;;0;[]; -[];;;juances19;;HB;[];;https://kitsu.io/users/juances;dark;text;t2_17a18d;False;False;[];;"I just don't get how a platform is so out of touch with what it's own users would like to see. - -With all the data they must have from users, series ratings, reviews, etc, they should've figured out the show was not up to par.";False;False;;;;1610308734;;False;{};gisjzwq;False;t3_kukv89;False;False;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gisjzwq/;1610350585;225;True;False;anime;t5_2qh22;;0;[]; -[];;;reliweeb;;;[];;;;text;t2_9ai93fa8;False;False;[];;I was introduced first to the manga series and altough it was it wasnt my cub of tea, and I dropped later on, this made me have have a bad perception to the series until I gave a try to novel, it made me have 180° difference in attitude, and its currently my favourite novel.;False;False;;;;1610308899;;False;{};giskbwn;False;t3_kukruw;False;True;t3_kukruw;/r/anime/comments/kukruw/so_what_im_a_spider/giskbwn/;1610350769;3;True;False;anime;t5_2qh22;;0;[]; -[];;;gibethegreat;;;[];;;;text;t2_7vf56x5v;False;False;[];;i saw season one some time ago and i loved it;False;False;;;;1610308987;;False;{};giskiav;True;t3_kulg6l;False;True;t1_gisjb5v;/r/anime/comments/kulg6l/i_need_fast_a_suggestion/giskiav/;1610350871;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gibethegreat;;;[];;;;text;t2_7vf56x5v;False;False;[];;"ill try - -edit: LOL the first 3 seasons are not avaiable in any way in my country because they hate me";False;False;;;;1610309003;;False;{};giskjfv;True;t3_kulg6l;False;True;t1_gisjikz;/r/anime/comments/kulg6l/i_need_fast_a_suggestion/giskjfv/;1610350891;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;I am assuming that every thing the guy says is a lie right.;False;False;;;;1610309133;;1610309372.0;{};gisksvq;False;t3_kukvwm;False;True;t3_kukvwm;/r/anime/comments/kukvwm/shido_tries_to_make_origami_hate_him_date_a_live/gisksvq/;1610351039;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610309331;moderator;False;{};gisl78o;False;t3_kultgl;False;True;t3_kultgl;/r/anime/comments/kultgl/attack_on_titan_with_russian_subtitles/gisl78o/;1610351254;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Erased;False;False;;;;1610309401;;False;{};gislc7e;False;t3_kulpvd;False;True;t3_kulpvd;/r/anime/comments/kulpvd/whats_an_anime_ill_wish_i_could_watch_for_the/gislc7e/;1610351330;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PrinceKazeKage;;;[];;;;text;t2_vqki37;False;False;[];;So far I am hearing good reviews of the novel so I might have to give it a try. Thank you I appreciate you;False;False;;;;1610309413;;False;{};gisld0u;True;t3_kukruw;False;True;t1_giskbwn;/r/anime/comments/kukruw/so_what_im_a_spider/gisld0u/;1610351343;2;True;False;anime;t5_2qh22;;0;[]; -[];;;reliweeb;;;[];;;;text;t2_9ai93fa8;False;False;[];;Give it a try, if u liked the manga then I'm pretty sure you will love the novel;False;False;;;;1610309489;;False;{};gislik0;False;t3_kukruw;False;True;t1_gisld0u;/r/anime/comments/kukruw/so_what_im_a_spider/gislik0/;1610351428;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RockoDyne;;MAL;[];;https://myanimelist.net/profile/RockoDyne;dark;text;t2_g4ooj;False;False;[];;Nah, it's just as applicable to the EU. It's hard to find a place that doesn't experience it, really.;False;False;;;;1610309508;;False;{};gisljvu;False;t3_kukqwj;False;True;t1_gisgzt7;/r/anime/comments/kukqwj/can_a_one_piece_government_exist_irl/gisljvu/;1610351448;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610309515;moderator;False;{};gislkck;False;t3_kulvs2;False;True;t3_kulvs2;/r/anime/comments/kulvs2/attack_on_titan_newest_episode_isnt_showing_up_on/gislkck/;1610351455;1;False;False;anime;t5_2qh22;;0;[]; -[];;;mindiBobo;;;[];;;;text;t2_7gwhxrkv;False;False;[];;Baka and Test;False;False;;;;1610309536;;False;{};gisllwp;False;t3_kulg6l;False;True;t3_kulg6l;/r/anime/comments/kulg6l/i_need_fast_a_suggestion/gisllwp/;1610351478;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;More 30 minutes just wait a little;False;False;;;;1610309571;;False;{};gisloh8;False;t3_kulvs2;False;True;t3_kulvs2;/r/anime/comments/kulvs2/attack_on_titan_newest_episode_isnt_showing_up_on/gisloh8/;1610351515;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jslice4ever;;;[];;;;text;t2_2wvi51tm;False;False;[];;Really? Why is the episode discussion thread already up? I thought that didn't go up till after the episode did.;False;False;;;;1610309638;;False;{};gislte6;False;t3_kulvs2;False;True;t1_gisloh8;/r/anime/comments/kulvs2/attack_on_titan_newest_episode_isnt_showing_up_on/gislte6/;1610351591;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610309704;moderator;False;{};gislyil;False;t3_kuly6a;False;True;t3_kuly6a;/r/anime/comments/kuly6a/is_there_any_romance_in_anime_another/gislyil/;1610351669;1;False;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;It releases earlier on [Wakanim](https://www.wakanim.tv/de/v2/catalogue/show/1116/attack-on-titan-final-season/season/2318/final-season) (Europe), and fansubs are out as well.;False;False;;;;1610309726;;False;{};gism08e;False;t3_kulvs2;False;True;t1_gislte6;/r/anime/comments/kulvs2/attack_on_titan_newest_episode_isnt_showing_up_on/gism08e/;1610351693;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jslice4ever;;;[];;;;text;t2_2wvi51tm;False;False;[];;Oh I see.;False;False;;;;1610309754;;False;{};gism299;False;t3_kulvs2;False;True;t1_gism08e;/r/anime/comments/kulvs2/attack_on_titan_newest_episode_isnt_showing_up_on/gism299/;1610351723;1;True;False;anime;t5_2qh22;;0;[]; -[];;;akashstar12;;;[];;;;text;t2_1189qn;False;False;[];;Well if you watch it, you would find out;False;False;;;;1610309756;;False;{};gism2ei;False;t3_kuly6a;False;False;t3_kuly6a;/r/anime/comments/kuly6a/is_there_any_romance_in_anime_another/gism2ei/;1610351726;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Bam_Bam0352;;;[];;;;text;t2_8hqb2na6;False;False;[];;Awe, bummer! It's free on Hulu (at least in the US). A man needs a VPN these days.;False;False;;;;1610309766;;False;{};gism36i;False;t3_kulg6l;False;False;t1_giskjfv;/r/anime/comments/kulg6l/i_need_fast_a_suggestion/gism36i/;1610351738;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gibethegreat;;;[];;;;text;t2_7vf56x5v;False;False;[];;"I dont have any money cuz im 13 -And also, dont i need to pay for Hulu?";False;False;;;;1610309822;;False;{};gism7cq;True;t3_kulg6l;False;True;t1_gism36i;/r/anime/comments/kulg6l/i_need_fast_a_suggestion/gism7cq/;1610351802;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;"Discussion threads on this sub get posted as soon as English subs are available. But those subs don't have to be the *official* English ones, so DameDesuYo fansubbing the new episode a few hours faster than the official release = the thread is up before the official subs are. - -Tbh even though I watch the fansub I'm not a fan of it, but when I brought this up on the meta thread last month the mods said they don't want to change the rule so ¯\\\_(ツ)_/¯";False;False;;;;1610309837;;False;{};gism8ib;False;t3_kulvs2;False;True;t1_gislte6;/r/anime/comments/kulvs2/attack_on_titan_newest_episode_isnt_showing_up_on/gism8ib/;1610351818;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610309896;moderator;False;{};gismcp7;False;t3_kum0n4;False;True;t3_kum0n4;/r/anime/comments/kum0n4/brand_new_to_anime_looking_for_recommendations/gismcp7/;1610351880;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi SquinkyEXE, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610309896;moderator;False;{};gismcqh;False;t3_kum0n4;False;True;t3_kum0n4;/r/anime/comments/kum0n4/brand_new_to_anime_looking_for_recommendations/gismcqh/;1610351881;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610309954;;False;{};gismh1s;False;t3_kum0n4;False;True;t3_kum0n4;/r/anime/comments/kum0n4/brand_new_to_anime_looking_for_recommendations/gismh1s/;1610351948;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Don't watch too much. People get burned out from watching, and I think it's because they watch too much. - -I know you're new, but it's good to create an anime list of what you've seen ahead of time. You can do it at myanimelist.net. It's free to use. It helps you remember what you've seen and helps us, so we don't recommend you stuff you've seen. - -Trust me, better to create one now, instead of later on when you've completed 100 anime or so. - -Anohana - -The Promised Neverland - -Death Note - -Psycho-Pass - -Death Parade - -Banana Fish - -Vinland Saga - -Hunter x Hunter 2011 - -Cowboy Bebop - -Gurren Lagann - -Erased - -Black Lagoon - -Seirei no Moribito";False;False;;;;1610310161;;False;{};gismws0;False;t3_kum0n4;False;True;t3_kum0n4;/r/anime/comments/kum0n4/brand_new_to_anime_looking_for_recommendations/gismws0/;1610352188;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KingHythetic;;;[];;;;text;t2_17evkf;False;False;[];;Baki, is a good martial arts anime.;False;False;;;;1610310171;;False;{};gismxkh;False;t3_kum0n4;False;True;t3_kum0n4;/r/anime/comments/kum0n4/brand_new_to_anime_looking_for_recommendations/gismxkh/;1610352200;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Fullmetal Alchemist Brotherhood - -Hunter x Hunter 2011 - -Shirobako - -Sora yori mo Tooi Basho - -Matou Shoujo Madoka Magica";False;False;;;;1610310214;;False;{};gisn0vf;False;t3_kulpvd;False;True;t3_kulpvd;/r/anime/comments/kulpvd/whats_an_anime_ill_wish_i_could_watch_for_the/gisn0vf/;1610352249;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;"Mob Psycho 100 - -Golden Kamuy - -Hunter x Hunter (2011) - -Demon Slayer - -Vinland Saga - -Noragami";False;False;;;;1610310287;;False;{};gisn679;False;t3_kum0n4;False;True;t3_kum0n4;/r/anime/comments/kum0n4/brand_new_to_anime_looking_for_recommendations/gisn679/;1610352330;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bam_Bam0352;;;[];;;;text;t2_8hqb2na6;False;False;[];;Yeah I forgot you have to pay now, sorry.;False;False;;;;1610310367;;False;{};gisnc3o;False;t3_kulg6l;False;True;t1_gism7cq;/r/anime/comments/kulg6l/i_need_fast_a_suggestion/gisnc3o/;1610352420;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dude0112;;;[];;;;text;t2_aj0u4va;False;False;[];;I double checked, if you try to follow the link on hidive it says not available;False;False;;;;1610310507;;False;{};gisnmhw;True;t3_kul9a7;False;True;t1_gisj5t6;/r/anime/comments/kul9a7/looks_like_season_1_of_log_horizon_might_be_in/gisnmhw/;1610352580;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xiavORliab;;;[];;;;text;t2_4dniju7s;False;False;[];;Well Europe is a continent so who among them would be the #1 to rule the world. And I guess it would be interesting to see what the world would look like if they did rule the world. But I doubt they would be able to rule the whole world because in order to rule the whole world, they gotta also rule North and South America. We safe over here.;False;False;;;;1610310647;;False;{};gisnwyn;False;t3_kukqwj;False;True;t1_gisjf1o;/r/anime/comments/kukqwj/can_a_one_piece_government_exist_irl/gisnwyn/;1610352741;1;True;False;anime;t5_2qh22;;0;[]; -[];;;smiley-rell;;;[];;;;text;t2_9iaznvjw;False;False;[];;Nice seeing my favorite anime make it to the main anime subreddit 🥰;False;False;;;;1610310720;;False;{};giso2l9;False;t3_kum3pa;False;False;t3_kum3pa;/r/anime/comments/kum3pa/yuu_slowly_falling_for_touko_bloom_into_you/giso2l9/;1610352825;14;True;False;anime;t5_2qh22;;0;[]; -[];;;LandPumkin;;;[];;;;text;t2_9r848t29;False;False;[];;Hello, this is a comment that is not hatespeech;False;True;;comment score below threshold;;1610310755;;False;{};giso5a2;False;t3_kum3pa;False;True;t3_kum3pa;/r/anime/comments/kum3pa/yuu_slowly_falling_for_touko_bloom_into_you/giso5a2/;1610352865;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;Raptor12225;;;[];;;;text;t2_1174as;False;False;[];;Steins gate,Hunter x hunter, Attack on titan;False;False;;;;1610310805;;False;{};giso8zn;False;t3_kulpvd;False;True;t3_kulpvd;/r/anime/comments/kulpvd/whats_an_anime_ill_wish_i_could_watch_for_the/giso8zn/;1610352919;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"# Source Material Corner - -Reply to this comment for any source-related discussion, future spoilers (including future characters, events and general hype about future content), comparison of the anime adaptation to the original, or just general talk about the source material. **You are still required to tag all spoilers.** Discussions about the source outside of this comment tree will be removed, and replying with spoilers outside of the source corner will lead to bans. - -The spoiler syntax is: -`[Spoiler source](/s ""Spoiler goes here"")` - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610310877;moderator;False;{};gisoeg4;False;t3_kumcrs;False;True;t3_kumcrs;/r/anime/comments/kumcrs/yami_shibai_season_8_episode_1_discussion/gisoeg4/;1610353008;1;False;True;anime;t5_2qh22;;0;[]; -[];;;Noriakikukyoin;;;[];;;;text;t2_3nu5xp1t;False;False;[];;I'm still hoping for a season 2 of this fantastic anime. The rest of the wonderful manga deserves to be animated!;False;False;;;;1610310900;;False;{};gisog5c;False;t3_kum3pa;False;False;t3_kum3pa;/r/anime/comments/kum3pa/yuu_slowly_falling_for_touko_bloom_into_you/gisog5c/;1610353034;22;True;False;anime;t5_2qh22;;0;[]; -[];;;VeryFunnyValentine;;;[];;;;text;t2_4uph3tsh;False;False;[];;Berserk 2016 called, it wants its CGI back;False;False;;;;1610310989;;False;{};gisomrq;False;t3_kukv89;False;False;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gisomrq/;1610353135;89;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Meemeli;;;[];;;;text;t2_2o1rogl;False;False;[];;Are you aware of the movie?;False;False;;;;1610311022;;False;{};gisop7n;False;t3_kulzjn;False;True;t3_kulzjn;/r/anime/comments/kulzjn/kimetsu_no_yaiba_demon_slayer/gisop7n/;1610353172;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Yadia-puebla;;;[];;;;text;t2_85sgrxn2;False;False;[];;Jojo part 5 ending song;False;False;;;;1610311157;;False;{};gisoz6t;False;t3_kumeck;False;True;t3_kumeck;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/gisoz6t/;1610353323;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptainRedBeard35;;;[];;;;text;t2_2vxt6oiv;False;False;[];;Its definitely one of my favorites, watching yuu and touko try and figure themselves out, all the while struggling with trying to love each other is done perfectly. And this scene stands above all and is one of the most beautiful moments in anime.;False;False;;;;1610311166;;False;{};gisozuq;True;t3_kum3pa;False;False;t1_giso2l9;/r/anime/comments/kum3pa/yuu_slowly_falling_for_touko_bloom_into_you/gisozuq/;1610353332;7;True;False;anime;t5_2qh22;;0;[]; -[];;;SunYeee;;;[];;;;text;t2_5ofnhuak;False;False;[];;i think u can google that in 5 secs;False;False;;;;1610311179;;False;{};gisp0va;False;t3_kuly6a;False;True;t3_kuly6a;/r/anime/comments/kuly6a/is_there_any_romance_in_anime_another/gisp0va/;1610353349;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yadia-puebla;;;[];;;;text;t2_85sgrxn2;False;False;[];;Bleach ending song 7;False;False;;;;1610311204;;False;{};gisp2pu;False;t3_kumeck;False;True;t3_kumeck;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/gisp2pu/;1610353378;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610311213;moderator;False;{};gisp3hd;False;t3_kumgu1;False;True;t3_kumgu1;/r/anime/comments/kumgu1/anime_in_which_everyone_dies_in_the_first_episode/gisp3hd/;1610353389;1;False;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;"Either Violet Evergarden ED, Diamond No Jundo Yukino Ballade or Prover from Fate GO Babylonia. - -[Violet Evergarden](https://open.spotify.com/track/5KpUgOcUVkO1nA8H50pf9q?si=lEal7MiyRreNAoqxaegi2w), [Oregairu 3, Yukino Ballade](https://open.spotify.com/track/0i1f3Tl2oy8QSjMmBYYFPy?si=n9aDO2J_QY24yTdiTdJH5Q), [Prover](https://open.spotify.com/track/4yNkKzy9UEyEq4KCc3jskc?si=SQYhBNIQRaC6BXZsfOdCaw)";False;False;;;;1610311226;;1610311739.0;{};gisp4h1;False;t3_kumeck;False;True;t3_kumeck;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/gisp4h1/;1610353403;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MiddleSheep;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;myanimelist.net/profile/middlesheep anilist.co/user/middlesheep;light;text;t2_knyjh;False;False;[];;"Some of my favourites: - -1. [Hazy](https://animethemes.moe/video/HanasakuIroha-ED2.webm) - *Hanasaku Iroha* - -2. [Everyday World](https://animethemes.moe/video/OreGairuS2-ED1.webm) - *Oregairu Zoku* - -3. [Freesia](https://animethemes.moe/video/SakuraQuest-ED1.webm) - *Sakura Quest* - -4. [Koko kara, Koko kara](https://animethemes.moe/video/Yorimoi-ED1.webm) - *A Place Further than the Universe* - -5. [Secret Base](https://animethemes.moe/video/Anohana-ED2v2.webm) - *Anohana* - -7. [Hectopascal](https://animethemes.moe/video/YagateKimiNiNaru-ED1.webm) - Bloom Into You";False;False;;;;1610311232;;False;{};gisp4xp;False;t3_kumeck;False;False;t3_kumeck;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/gisp4xp/;1610353413;5;True;False;anime;t5_2qh22;;0;[]; -[];;;TenthZeRo;;;[];;;;text;t2_6cthnh0c;False;False;[];;Bakemonogatari ed;False;False;;;;1610311241;;False;{};gisp5nm;False;t3_kumeck;False;False;t3_kumeck;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/gisp5nm/;1610353423;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;That is [Ga-Rei: Zero](https://myanimelist.net/anime/4725).;False;False;;;;1610311282;;False;{};gisp8u6;False;t3_kumgu1;False;False;t3_kumgu1;/r/anime/comments/kumgu1/anime_in_which_everyone_dies_in_the_first_episode/gisp8u6/;1610353470;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Glass-Maintenance-30;;;[];;;;text;t2_8uewtavv;False;False;[];;What is it called;False;False;;;;1610311297;;False;{};gispa5o;False;t3_kukvwm;False;True;t3_kukvwm;/r/anime/comments/kukvwm/shido_tries_to_make_origami_hate_him_date_a_live/gispa5o/;1610353490;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SquinkyEXE;;;[];;;;text;t2_w58mh;False;False;[];;Good idea Ill do that! Thanks a lot for your recommendations I'll look into these. I forgot to mention I actually did watch death note. It was my first anime about 10 years ago. Not just a great anime but probably one of the best shows I've seen period.;False;False;;;;1610311318;;False;{};gispbxw;False;t3_kum0n4;False;True;t1_gismws0;/r/anime/comments/kum0n4/brand_new_to_anime_looking_for_recommendations/gispbxw/;1610353516;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dragonice06;;;[];;;;text;t2_2bxwjamh;False;False;[];;"Dango Daikazoku - Clannad After Story - -Secret Base - Anohana";False;False;;;;1610311351;;False;{};gispeo2;False;t3_kumeck;False;True;t3_kumeck;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/gispeo2/;1610353554;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Falsus;;;[];;;;text;t2_c6qmw;False;False;[];;It is pretty similar to the light novel so far, with the Spider Girl being a dofus. The manga isn't a very good adaptation.;False;False;;;;1610311371;;False;{};gispgd4;False;t3_kukruw;False;True;t3_kukruw;/r/anime/comments/kukruw/so_what_im_a_spider/gispgd4/;1610353579;2;True;False;anime;t5_2qh22;;0;[]; -[];;;YouHrdKlm;;;[];;;;text;t2_5roxsiz7;False;False;[];;Kaguya sama Love is War ED 2 - Chika Dance;False;False;;;;1610311410;;False;{};gispjrc;False;t3_kumeck;False;True;t3_kumeck;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/gispjrc/;1610353629;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"Def sounds like it. - -One of the only ""Everyone dies in ep 1"" kinda shows too. - -[](#chitogheh)";False;False;;;;1610311473;;False;{};gispoyx;False;t3_kumgu1;False;True;t1_gisp8u6;/r/anime/comments/kumgu1/anime_in_which_everyone_dies_in_the_first_episode/gispoyx/;1610353705;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dragonice06;;;[];;;;text;t2_2bxwjamh;False;False;[];;"Clannad and Clannad After Story - -Sora yori mo Tooi Basho - -Kimi no Na wa. - -AnoHana";False;False;;;;1610311505;;False;{};gisprmd;False;t3_kulpvd;False;True;t3_kulpvd;/r/anime/comments/kulpvd/whats_an_anime_ill_wish_i_could_watch_for_the/gisprmd/;1610353745;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrinceKazeKage;;;[];;;;text;t2_vqki37;False;False;[];;Yeah I wasn’t sure if I was mistaken or not so I thought I should get a second opinion. I didn’t wanna right it off as a bad show just based on that alone. Thank you I appreciate you;False;False;;;;1610311529;;False;{};gisptll;True;t3_kukruw;False;True;t1_gispgd4;/r/anime/comments/kukruw/so_what_im_a_spider/gisptll/;1610353773;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Also: Crunchyroll is a free streaming service (with ads unless you have Adblock). - -And you're welcome. P.S: Look at the Autobot, they give out useful animation, from the flow chart recommendations (Just pick an anime that looks most interesting), to where you can watch anime.";False;False;;;;1610311535;;False;{};gispu2p;False;t3_kum0n4;False;True;t1_gispbxw;/r/anime/comments/kum0n4/brand_new_to_anime_looking_for_recommendations/gispu2p/;1610353779;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Radiant-Change-3223;;;[];;;;text;t2_8bmusc6l;False;False;[];;All of jojo’s music is groovy, and they just make you want to get up and go fight someone with your stand;False;False;;;;1610311581;;False;{};gispxn8;True;t3_kumeck;False;True;t1_gisoz6t;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/gispxn8/;1610353833;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;MyImaginaryGFLeftMe;;;[];;;;text;t2_3iv09npo;False;False;[];;Yes;False;False;;;;1610311624;;False;{};gisq0y6;False;t3_kumljv;False;True;t3_kumljv;/r/anime/comments/kumljv/can_manga_have_filler/gisq0y6/;1610353882;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Radiant-Change-3223;;;[];;;;text;t2_8bmusc6l;False;False;[];;I like the chika dance a lot too, just her casually singing while shirogane and shimonya get to school;False;False;;;;1610311745;;False;{};gisqa3b;True;t3_kumeck;False;True;t1_gispjrc;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/gisqa3b/;1610354013;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AAAAAUserName;;;[];;;;text;t2_9rc19snk;False;False;[];;Not a hate speech comment;False;False;;;;1610311781;;False;{};gisqcy5;False;t3_kumeck;False;True;t3_kumeck;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/gisqcy5/;1610354057;1;True;False;anime;t5_2qh22;;0;[]; -[];;;drasheed132;;;[];;;;text;t2_39t8myjk;False;False;[];;B the beginning;False;False;;;;1610311815;;False;{};gisqflo;False;t3_kumeck;False;True;t3_kumeck;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/gisqflo/;1610354095;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Raptor12225;;;[];;;;text;t2_1174as;False;False;[];;Konosuba 1000000%;False;False;;;;1610311816;;False;{};gisqfoi;False;t3_kulg6l;False;False;t3_kulg6l;/r/anime/comments/kulg6l/i_need_fast_a_suggestion/gisqfoi/;1610354096;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gibethegreat;;;[];;;;text;t2_7vf56x5v;False;False;[];;no problem, thanks anyway, have a good day, have a good day for me ok?;False;False;;;;1610311863;;False;{};gisqjfo;True;t3_kulg6l;False;True;t1_gisnc3o;/r/anime/comments/kulg6l/i_need_fast_a_suggestion/gisqjfo/;1610354152;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SquinkyEXE;;;[];;;;text;t2_w58mh;False;False;[];;Thank you! I've heard a lot of good things about hunter x and demon slayer. Adding those to watch later;False;False;;;;1610311878;;False;{};gisqkqp;False;t3_kum0n4;False;True;t1_gisn679;/r/anime/comments/kum0n4/brand_new_to_anime_looking_for_recommendations/gisqkqp/;1610354171;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Radiant-Change-3223;;;[];;;;text;t2_8bmusc6l;False;False;[];;Not a hate speech comment?;False;False;;;;1610311881;;False;{};gisqkz4;True;t3_kumeck;False;True;t1_gisqcy5;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/gisqkz4/;1610354174;0;True;False;anime;t5_2qh22;;0;[]; -[];;;futzu96;;;[];;;;text;t2_8opif4fv;False;False;[];;"I loved that song from the beginning, but man, after that stargazing scene... Are ga Deneb, Altair, Vega. <3";False;False;;;;1610311891;;False;{};gisqltp;False;t3_kumeck;False;True;t1_gisp5nm;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/gisqltp/;1610354187;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gibethegreat;;;[];;;;text;t2_7vf56x5v;False;False;[];;ah, i see you are a men of culture as well, i saw it all twice, i hope i will still be alive for season 3;False;False;;;;1610311950;;False;{};gisqqql;True;t3_kulg6l;False;False;t1_gisqfoi;/r/anime/comments/kulg6l/i_need_fast_a_suggestion/gisqqql/;1610354260;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;Hope you enjoy!;False;False;;;;1610311985;;False;{};gisqtjr;False;t3_kum0n4;False;False;t1_gisqkqp;/r/anime/comments/kum0n4/brand_new_to_anime_looking_for_recommendations/gisqtjr/;1610354300;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Castform5;;MAL;[];;https://myanimelist.net/animelist/Castform5;dark;text;t2_141rtc;False;False;[];;They have the data, but none of the passion. A similar case woul be how sega just can not make a passable sonic game, while even the fan games made as a joke (like sanic ball) are better sonic games than the official sonic games.;False;False;;;;1610312025;;False;{};gisqwo1;False;t3_kukv89;False;False;t1_gisjzwq;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gisqwo1/;1610354346;147;True;False;anime;t5_2qh22;;0;[]; -[];;;Matrix_A-M;;;[];;;;text;t2_8vqw2qxi;False;False;[];;Not sure about all time, but some I can think of off the top of my head are Kekkai Sensen, Kuzu no Honkai, and Rent-a-Girlfriend.;False;False;;;;1610312037;;False;{};gisqxkc;False;t3_kumeck;False;True;t3_kumeck;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/gisqxkc/;1610354361;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610312080;moderator;False;{};gisr100;False;t3_kumre9;False;True;t3_kumre9;/r/anime/comments/kumre9/anime_pin_bud_thing_help_me_pls/gisr100/;1610354419;1;False;False;anime;t5_2qh22;;0;[]; -[];;;svefnpurka;;MAL;[];;http://myanimelist.net/animelist/svefnpurka;dark;text;t2_9ouly;False;False;[];;Let's see if this season's getting better again.;False;False;;;;1610312099;;False;{};gisr2eh;False;t3_kumcrs;False;True;t3_kumcrs;/r/anime/comments/kumcrs/yami_shibai_season_8_episode_1_discussion/gisr2eh/;1610354444;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610312154;;False;{};gisr6pl;False;t3_kumre9;False;True;t3_kumre9;/r/anime/comments/kumre9/anime_pin_bud_thing_help_me_pls/gisr6pl/;1610354514;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Master10K;;MAL;[];;http://myanimelist.net/profile/Master10K;dark;text;t2_794zx;False;False;[];;Yeah, this feels just about the same as the LN. We'll definitely know the tone this series will want to take once it gets to the more serious stuff, like next episode's fire and when she encounters adventurers in the future.;False;False;;;;1610312191;;False;{};gisr9i6;False;t3_kukruw;False;True;t3_kukruw;/r/anime/comments/kukruw/so_what_im_a_spider/gisr9i6/;1610354562;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Radiant-Change-3223;;;[];;;;text;t2_8bmusc6l;False;False;[];;That’s a great ending, B the beginning is so underrated and it deserves a second chance the music adds to the anime;False;False;;;;1610312235;;False;{};gisrct2;True;t3_kumeck;False;True;t1_gisqflo;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/gisrct2/;1610354614;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Bugmario99;;;[];;;;text;t2_5e0in075;False;False;[];;Yes, how can I send a photo tho?;False;False;;;;1610312253;;False;{};gisre8p;True;t3_kumre9;False;True;t1_gisr6pl;/r/anime/comments/kumre9/anime_pin_bud_thing_help_me_pls/gisre8p/;1610354637;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610312274;moderator;False;{};gisrftu;False;t3_kumts1;False;True;t3_kumts1;/r/anime/comments/kumts1/where_to_watch_anime/gisrftu/;1610354662;2;False;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;"r/whowouldwin - -r/lostredditors as well";False;False;;;;1610312276;;False;{};gisrfyc;False;t3_kums91;False;True;t3_kums91;/r/anime/comments/kums91/rick_sanchez_vs_thanos_full_infinity_gauntlet/gisrfyc/;1610354663;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;[Inferno Cop](https://myanimelist.net/anime/16774/Inferno_Cop), [Shimoneta](https://myanimelist.net/anime/29786/Shimoneta_to_Iu_Gainen_ga_Sonzai_Shinai_Taikutsu_na_Sekai), maybe [Space Dandy](https://myanimelist.net/anime/20057/Space%E2%98%86Dandy) or something. [Bobobo-bo Bo-bobo](https://myanimelist.net/anime/1050/Bobobo-bo_Bo-bobo) is also really good. [Cautious Hero](https://myanimelist.net/anime/38659/Shinchou_Yuusha__Kono_Yuusha_ga_Ore_Tueee_Kuse_ni_Shinchou_Sugiru) (or its dub at least, I've heard from people who have watched the sub not enjoy that version that much) is pretty hillarious. Isekai Quartet is pretty funny too although you'll want to watch the four isekais that make up that before watching that series (or else forget the idea altogether.);False;False;;;;1610312292;;1610312614.0;{};gisrh66;False;t3_kulg6l;False;True;t3_kulg6l;/r/anime/comments/kulg6l/i_need_fast_a_suggestion/gisrh66/;1610354683;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Davidsda;;;[];;;;text;t2_x7jiq;False;False;[];;"> With all the data they must have from users, series ratings, reviews, etc - -I'm pretty sure you don't need any of that if you have eyes.";False;False;;;;1610312321;;False;{};gisrjf5;False;t3_kukv89;False;False;t1_gisjzwq;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gisrjf5/;1610354719;28;True;False;anime;t5_2qh22;;0;[]; -[];;;DracoSoull;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/DracoSoull;light;text;t2_3cyn3o57;False;False;[];;yep Hunter x hunter is kinda different from normal shonens too;False;False;;;;1610312330;;False;{};gisrk45;False;t3_kum0n4;False;True;t1_gisqkqp;/r/anime/comments/kum0n4/brand_new_to_anime_looking_for_recommendations/gisrk45/;1610354730;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RegrettableLiving26;;;[];;;;text;t2_8n0rsoo9;False;False;[];;Looks awesome!!!! Please post update picks on how the tattoo matures;False;False;;;;1610312339;;False;{};gisrks6;False;t3_kumqd1;False;True;t3_kumqd1;/r/anime/comments/kumqd1/my_naruto_tattoo/gisrks6/;1610354741;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PrinceKazeKage;;;[];;;;text;t2_vqki37;False;False;[];;Thanks I appreciate you;False;False;;;;1610312353;;False;{};gisrluv;True;t3_kukruw;False;False;t1_gisr9i6;/r/anime/comments/kukruw/so_what_im_a_spider/gisrluv/;1610354758;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gibethegreat;;;[];;;;text;t2_7vf56x5v;False;False;[];;"Im going to check them, thanks -I already saw isekai quartet and i loved it, have a nice day";False;False;;;;1610312374;;False;{};gisrngv;True;t3_kulg6l;False;True;t1_gisrh66;/r/anime/comments/kulg6l/i_need_fast_a_suggestion/gisrngv/;1610354782;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;Crunchyroll is free with ads. You can also look at auto mod, they give you the answer there too.;False;False;;;;1610312380;;False;{};gisrnxy;False;t3_kumts1;False;True;t3_kumts1;/r/anime/comments/kumts1/where_to_watch_anime/gisrnxy/;1610354789;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;False;[];;"* Shiki no Uta - Samurai Champloo -* Real Folk Blues - Cowboy Bebop -* Lost in Paradise - Jujustu Kaisen -* Fukashigi no Carte - Bunny Girl Senpai -* Win - The God of High School -* Transparent - Phantom: Requiem for the Phantom -* Literally every single ED of FMA:B";False;False;;;;1610312404;;False;{};gisrpnd;False;t3_kumeck;False;True;t3_kumeck;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/gisrpnd/;1610354815;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Joey-Zaddy;;;[];;;;text;t2_9kbfmifb;False;False;[];;I do thank you ! I am new to reditt so I don’t know how to reply with an image lol 😂;False;False;;;;1610312419;;False;{};gisrqs7;True;t3_kumqd1;False;True;t1_gisrks6;/r/anime/comments/kumqd1/my_naruto_tattoo/gisrqs7/;1610354830;3;True;False;anime;t5_2qh22;;0;[]; -[];;;farmvr;;;[];;;;text;t2_5dvbzeri;False;False;[];;yeah i just am so used to watching without ads on the other website. i was looking for ones without it;False;False;;;;1610312527;;False;{};gisrz1x;True;t3_kumts1;False;True;t1_gisrnxy;/r/anime/comments/kumts1/where_to_watch_anime/gisrz1x/;1610354958;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;"Oh nice! Yeah, I started isekai quartet the other day (I paused at around episode 4 because I got busy with other stuff) but I'm amazed at the quality, by all counts that series ought to be cringey or something but it *works.* Idk. - -[Arifureta](https://myanimelist.net/anime/36882/Arifureta_Shokugyou_de_Sekai_Saikyou) might be another funny isekai, lots of people see it as a so-bad-it's-good type of anime and some of the CGI isn't great (and the LNs are supposed to be more complex) but that might be another consideration if you haven't seen that yet. Best of luck! If you end up checking any of those out I'd be a little curious to hear how it goes (but no obligation ofc), have a good one :-)";False;False;;;;1610312558;;False;{};giss1dh;False;t3_kulg6l;False;True;t1_gisrngv;/r/anime/comments/kulg6l/i_need_fast_a_suggestion/giss1dh/;1610354992;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yurabe;;;[];;;;text;t2_9jjed5dw;False;False;[];;"Haven't seen any trailers or previews for anime in a while. Is Exarm full CGI? - - -Edit: I finally watched the trailer. It looks so cheap and bad. Removed from ptw. It doesn't look like anime to me.";False;False;;;;1610312561;;1610334417.0;{};giss1jc;False;t3_kukv89;False;False;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giss1jc/;1610354994;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;Shock from AOT gives me a special feeling that makes me really pumped for the next episode even tough it isn't even my favourite ed song.;False;False;;;;1610312566;;False;{};giss1yb;False;t3_kumeck;False;False;t3_kumeck;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/giss1yb/;1610355000;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;We are not allowed to recommend illegal sites on here. You have to search for them yourselves.;False;False;;;;1610312597;;False;{};giss48o;False;t3_kumts1;False;True;t1_gisrz1x;/r/anime/comments/kumts1/where_to_watch_anime/giss48o/;1610355036;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi I_Wear_16_Shoes, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610312726;moderator;False;{};gissdp9;False;t3_kumzbf;False;True;t3_kumzbf;/r/anime/comments/kumzbf/looking_for_a_new_anime_to_watch/gissdp9/;1610355179;1;False;False;anime;t5_2qh22;;0;[]; -[];;;oujicrows;;;[];;;;text;t2_9nz9ftrh;False;False;[];;You should start Hunter x Hunter;False;False;;;;1610312746;;False;{};gissf9b;False;t3_kumzbf;False;True;t3_kumzbf;/r/anime/comments/kumzbf/looking_for_a_new_anime_to_watch/gissf9b/;1610355203;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YoCodingJosh;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/CodingJosh;light;text;t2_4oan1u9a;False;True;[];;Crunchyroll works with uBlock Origin and I think Funimation does as well.;False;False;;;;1610312770;;False;{};gissh0k;False;t3_kumts1;False;True;t1_gisrz1x;/r/anime/comments/kumts1/where_to_watch_anime/gissh0k/;1610355231;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;"HxH and Demon Slayer are good picks. - -Kekkaishi - -Hajime no Ippo - -Dororo - -Promare";False;False;;;;1610312804;;False;{};gissjgg;False;t3_kumzbf;False;False;t3_kumzbf;/r/anime/comments/kumzbf/looking_for_a_new_anime_to_watch/gissjgg/;1610355269;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cyclone_96;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CrazyCyclone96;light;text;t2_es52y62;False;False;[];;Watch the trailer, it speaks for itself honestly.;False;False;;;;1610312843;;False;{};gissmdt;False;t3_kukv89;False;False;t1_giss1jc;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gissmdt/;1610355312;63;True;False;anime;t5_2qh22;;0;[]; -[];;;I_Wear_16_Shoes;;;[];;;;text;t2_4tq08u86;False;False;[];;I haven't seen much about it just a few snippets and it looks decent. If it fits in with my post then I should enjoy it. Thanks for the suggestion;False;False;;;;1610312858;;False;{};gissnfa;True;t3_kumzbf;False;True;t1_gissf9b;/r/anime/comments/kumzbf/looking_for_a_new_anime_to_watch/gissnfa/;1610355329;1;True;False;anime;t5_2qh22;;0;[]; -[];;;oujicrows;;;[];;;;text;t2_9nz9ftrh;False;False;[];;Yeah np;False;False;;;;1610312879;;False;{};gissp01;False;t3_kumzbf;False;True;t1_gissnfa;/r/anime/comments/kumzbf/looking_for_a_new_anime_to_watch/gissp01/;1610355353;1;True;False;anime;t5_2qh22;;0;[]; -[];;;grandpa-starfish;;;[];;;;text;t2_4lm5izij;False;False;[];;Demon slayer sword art online;False;False;;;;1610312895;;False;{};gissq6b;False;t3_kumzbf;False;False;t3_kumzbf;/r/anime/comments/kumzbf/looking_for_a_new_anime_to_watch/gissq6b/;1610355370;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LuluShmu;;;[];;;;text;t2_9rcgl63a;False;False;[];;That looks amazing!;False;False;;;;1610312961;;False;{};gissuxt;False;t3_kumqd1;False;True;t3_kumqd1;/r/anime/comments/kumqd1/my_naruto_tattoo/gissuxt/;1610355440;3;True;False;anime;t5_2qh22;;0;[]; -[];;;yurabe;;;[];;;;text;t2_9jjed5dw;False;False;[];;Will probably try that later. Haven't been watching trailers or read synopses for a reason.;False;False;;;;1610313023;;False;{};gisszk6;False;t3_kukv89;False;False;t1_gissmdt;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gisszk6/;1610355511;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Joey-Zaddy;;;[];;;;text;t2_9kbfmifb;False;False;[];;Thank you much appreciated :);False;False;;;;1610313147;;False;{};gist8n1;True;t3_kumqd1;False;True;t1_gissuxt;/r/anime/comments/kumqd1/my_naruto_tattoo/gist8n1/;1610355648;2;True;False;anime;t5_2qh22;;0;[]; -[];;;farmvr;;;[];;;;text;t2_5dvbzeri;False;False;[];;oh gotcha. appreciate it;False;False;;;;1610313196;;False;{};gistc6y;True;t3_kumts1;False;True;t1_giss48o;/r/anime/comments/kumts1/where_to_watch_anime/gistc6y/;1610355702;0;True;False;anime;t5_2qh22;;0;[]; -[];;;gibethegreat;;;[];;;;text;t2_7vf56x5v;False;False;[];;Oh i saw arifureta some days ago, and its amazing, the only problem is the cgi, the cgi is visually good, but the cgi animations are terrible;False;False;;;;1610313297;;False;{};gistji0;True;t3_kulg6l;False;False;t1_giss1dh;/r/anime/comments/kulg6l/i_need_fast_a_suggestion/gistji0/;1610355812;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fiirenz;;;[];;;;text;t2_10wfdv;False;False;[];;Fate Zero;False;False;;;;1610313316;;False;{};gistkxp;False;t3_kumzbf;False;True;t3_kumzbf;/r/anime/comments/kumzbf/looking_for_a_new_anime_to_watch/gistkxp/;1610355836;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nikky2905;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/nikky2905;light;text;t2_4aflqsva;False;False;[];;No. It's not even close to being a romance anime, so why would there be things like confessions or kisses?;False;False;;;;1610313399;;False;{};gistqxh;False;t3_kuly6a;False;False;t3_kuly6a;/r/anime/comments/kuly6a/is_there_any_romance_in_anime_another/gistqxh/;1610355931;4;True;False;anime;t5_2qh22;;0;[]; -[];;;smiley-rell;;;[];;;;text;t2_9iaznvjw;False;False;[];;My favorite scene is episode 6 under the bridge 🥺;False;False;;;;1610313430;;False;{};gistt8b;False;t3_kum3pa;False;True;t1_gisozuq;/r/anime/comments/kum3pa/yuu_slowly_falling_for_touko_bloom_into_you/gistt8b/;1610355967;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ominous_Strix;;;[];;;;text;t2_3km5xr5i;False;False;[];;There are videogames from the 2000s that are better animated than this nonsense;False;False;;;;1610313560;;False;{};gisu2l9;False;t3_kukv89;False;False;t1_giss1jc;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gisu2l9/;1610356105;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Roammeoh;;;[];;;;text;t2_8kn72w2e;False;False;[];;Now that’s a quality tatt.;False;False;;;;1610313669;;False;{};gisuagj;False;t3_kumqd1;False;True;t3_kumqd1;/r/anime/comments/kumqd1/my_naruto_tattoo/gisuagj/;1610356224;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Morbid_Fatwad;;;[];;;dark;text;t2_ol3rd;False;False;[];;It's not even the CGI that bothers me. It's the damn lip flaps being so out of sync.;False;False;;;;1610313769;;False;{};gisuhr1;False;t3_kukv89;False;False;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gisuhr1/;1610356332;14;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;Well, there is a central relationship that *could* easily turn romantic -- if circumstances in the story were totally different. But not enough time off from mayhem for this to develop in the course of the show.;False;False;;;;1610313812;;False;{};gisukwj;False;t3_kuly6a;False;True;t1_gistqxh;/r/anime/comments/kuly6a/is_there_any_romance_in_anime_another/gisukwj/;1610356380;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Joey-Zaddy;;;[];;;;text;t2_9kbfmifb;False;False;[];;Thank you 10 hours later lol 😂;False;False;;;;1610313821;;False;{};gisull0;True;t3_kumqd1;False;True;t1_gisuagj;/r/anime/comments/kumqd1/my_naruto_tattoo/gisull0/;1610356390;5;True;False;anime;t5_2qh22;;0;[]; -[];;;nikky2905;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/nikky2905;light;text;t2_4aflqsva;False;False;[];;"Yeah, the main characters could end up in a romantic relationship but the anime is not about that and I'm sure they didn't really have the time to consider dating each other given the circumstances of the plot. - -Like I said, not remotely close to being a romance anime, so not a lot of romance in it. I think Another is one of the worst choices if all you're looking for is ""confessions and kisses"".";False;False;;;;1610313921;;False;{};gisussp;False;t3_kuly6a;False;True;t1_gisukwj;/r/anime/comments/kuly6a/is_there_any_romance_in_anime_another/gisussp/;1610356496;1;True;False;anime;t5_2qh22;;0;[]; -[];;;punyuni;;;[];;;;text;t2_3q1mvnyh;False;False;[];;I heavily heavily recommend Mob Psycho 100. Or vinland saga.;False;False;;;;1610313981;;False;{};gisux4f;False;t3_kumzbf;False;True;t3_kumzbf;/r/anime/comments/kumzbf/looking_for_a_new_anime_to_watch/gisux4f/;1610356560;3;True;False;anime;t5_2qh22;;0;[]; -[];;;garfe;;;[];;;;text;t2_18gnef;False;False;[];;Pretty sure it's a laughing stock for everybody right now;False;False;;;;1610314048;;False;{};gisv204;False;t3_kukv89;False;False;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gisv204/;1610356634;100;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610314160;moderator;False;{};gisva5o;False;t3_kungxe;False;True;t3_kungxe;/r/anime/comments/kungxe/help_me_remember_romance_anime_where_one_of_the/gisva5o/;1610356755;1;False;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;"\> Another is one of the worst choices if all you're looking for is ""confessions -\> and kisses"" - -Absolutely. Not sure why I got downvoted for essentially agreeing with you.";False;False;;;;1610314296;;False;{};gisvk6n;False;t3_kuly6a;False;True;t1_gisussp;/r/anime/comments/kuly6a/is_there_any_romance_in_anime_another/gisvk6n/;1610356907;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MahTheMeatloaf_;;;[];;;;text;t2_6yys3kok;False;False;[];;"Hunter x Hunter - -Jujutsu Kaisen - -Multiple Food Wars ed";False;False;;;;1610314395;;False;{};gisvrei;False;t3_kumeck;False;True;t3_kumeck;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/gisvrei/;1610357020;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CoolDudeJosh;;;[];;;;text;t2_52x68v7m;False;False;[];;Love this anime;False;False;;;;1610314397;;False;{};gisvrjz;False;t3_kum3pa;False;True;t3_kum3pa;/r/anime/comments/kum3pa/yuu_slowly_falling_for_touko_bloom_into_you/gisvrjz/;1610357022;3;True;False;anime;t5_2qh22;;0;[]; -[];;;tasuketeJESUS;;;[];;;dark;text;t2_9cbqm;False;False;[];;That sounds like [Ano Natsu de Matteru](https://myanimelist.net/anime/11433/Ano_Natsu_de_Matteru);False;False;;;;1610314454;;False;{};gisvvn0;False;t3_kungxe;False;True;t3_kungxe;/r/anime/comments/kungxe/help_me_remember_romance_anime_where_one_of_the/gisvvn0/;1610357084;3;True;False;anime;t5_2qh22;;0;[]; -[];;;notathrowaway75;;MAL;[];;https://myanimelist.net/profile/notathrowaway75;dark;text;t2_fomut;False;False;[];;"> I just don't get how a platform is so out of touch with what it's own users would like to see. - -To be fair they released Tower of God and The God of High School just last year. They definitely weren't the best adaptations but Tower of God was decently well received.";False;False;;;;1610314478;;False;{};gisvxf7;False;t3_kukv89;False;False;t1_gisjzwq;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gisvxf7/;1610357114;50;True;False;anime;t5_2qh22;;0;[]; -[];;;WilliShaker;;;[];;;;text;t2_3xli3wjy;False;False;[];;There are some semblance of romance in it with two important characters loving each other, but there aren’t any kiss or confession;False;False;;;;1610314490;;False;{};gisvy99;False;t3_kuly6a;False;True;t3_kuly6a;/r/anime/comments/kuly6a/is_there_any_romance_in_anime_another/gisvy99/;1610357126;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaori_iu;;;[];;;;text;t2_1gtjectn;False;False;[];;Perfect.;False;False;;;;1610314495;;False;{};gisvyp6;True;t3_kungxe;False;True;t1_gisvvn0;/r/anime/comments/kungxe/help_me_remember_romance_anime_where_one_of_the/gisvyp6/;1610357132;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610314538;;False;{};gisw1xw;False;t3_kunl3z;False;True;t3_kunl3z;/r/anime/comments/kunl3z/looking_for_short_anime/gisw1xw/;1610357183;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MahTheMeatloaf_;;;[];;;;text;t2_6yys3kok;False;False;[];;"Snow Drop & Kyokyojitsujitsu - Food Wars to be exact";False;False;;;;1610314579;;False;{};gisw50i;False;t3_kumeck;False;True;t1_gisvrei;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/gisw50i/;1610357228;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rasouddress;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/rasouddress/;light;text;t2_p87m5;False;False;[];;"The Saga of Tanya the Evil - -Machikado Mazoku - -HxH 3 and 5 - -Girls Last Tour - -School Live";False;False;;;;1610314676;;False;{};giswccj;False;t3_kumeck;False;True;t3_kumeck;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/giswccj/;1610357339;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;Zankyou no terror: Almost no romance, only 11 episodes, but still feels complete enough, no fantasy.;False;False;;;;1610314775;;False;{};giswjno;False;t3_kunl3z;False;True;t3_kunl3z;/r/anime/comments/kunl3z/looking_for_short_anime/giswjno/;1610357445;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dashznt315;;;[];;;;text;t2_96r24;False;False;[];;A good one for action is God of Highschool.;False;False;;;;1610314870;;False;{};giswqnz;False;t3_kuno7f;False;True;t3_kuno7f;/r/anime/comments/kuno7f/give_me_some_emotional_and_action_based_anime/giswqnz/;1610357549;0;True;False;anime;t5_2qh22;;0;[]; -[];;;I_Wear_16_Shoes;;;[];;;;text;t2_4tq08u86;False;False;[];;A mate of mine said mob psycho is really good, he also mentioned one called cowboy bebop... I have a few animes I need to watch but its deciding which ones to watch first is the killer🤣;False;False;;;;1610314952;;False;{};giswwxm;True;t3_kumzbf;False;True;t1_gisux4f;/r/anime/comments/kumzbf/looking_for_a_new_anime_to_watch/giswwxm/;1610357641;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DerfK;;;[];;;;text;t2_cm26w;False;False;[];;"> with what it's own users would like to see - -The thing is, Ex-Arm is probably something a sizeable number of users would like to see adapted. Maybe in a few years a director and studio will step up to the task. Until then everyone will just pretend this doesn't exist.";False;False;;;;1610315074;;False;{};gisx61f;False;t3_kukv89;False;False;t1_gisjzwq;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gisx61f/;1610357778;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Gundalorian;;;[];;;;text;t2_73oujqt9;False;False;[];;Majitsu no sorcerer;False;False;;;;1610315126;;False;{};gisx9vu;False;t3_kuno7f;False;False;t3_kuno7f;/r/anime/comments/kuno7f/give_me_some_emotional_and_action_based_anime/gisx9vu/;1610357833;1;True;False;anime;t5_2qh22;;0;[]; -[];;;onefootstout;;;[];;;;text;t2_qyi54;False;False;[];;Not specifically Genshin Impact, like the story would be okay but I would like to see the battle mechanic of switching in and out characters for attacks at a sped up rate would look really cool animated.;False;False;;;;1610315130;;False;{};gisxa5h;False;t3_kunpfr;False;True;t3_kunpfr;/r/anime/comments/kunpfr/would_you_like_an_anime_adaptation_of_genshin/gisxa5h/;1610357836;2;True;False;anime;t5_2qh22;;0;[]; -[];;;N0TS4FEOfficial;;;[];;;;text;t2_5bfva4t4;False;False;[];;If genshin got a anime i feel like it would be like P5A, who didn't play the game woukd just get extremely confused at some parts because they just cut stuff out of the game that is somewhat important to the plot or what's happening at the moment;False;False;;;;1610315148;;False;{};gisxbim;False;t3_kunpfr;False;True;t3_kunpfr;/r/anime/comments/kunpfr/would_you_like_an_anime_adaptation_of_genshin/gisxbim/;1610357858;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610315315;moderator;False;{};gisxnw8;False;t3_kunw1g;False;True;t3_kunw1g;/r/anime/comments/kunw1g/anyone_know_if_haikyuu_to_the_top_is_dubbed_yet/gisxnw8/;1610358044;1;False;False;anime;t5_2qh22;;0;[]; -[];;;ssr2gokublack;;;[];;;;text;t2_4grcph20;False;False;[];;"New game -Kobayashi dragon maid -Squid girl -Eromanga sensei -Helpful fox senko-san -Another -Blend S -Is the order a rabbit -Rent-A-Girlfriend -Rascal does not dream of bunny girl senpai - -These are just some that I know have 12 episodes in general or per season";False;False;;;;1610315336;;False;{};gisxpfl;False;t3_kunl3z;False;True;t3_kunl3z;/r/anime/comments/kunl3z/looking_for_short_anime/gisxpfl/;1610358066;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Darkp3;;;[];;;;text;t2_wo1u0;False;False;[];;Looks absolutely amazing!;False;False;;;;1610315337;;False;{};gisxpjg;False;t3_kunnpu;False;True;t3_kunnpu;/r/anime/comments/kunnpu/shingeki_no_kyojin_episode_64_end_card_by_episode/gisxpjg/;1610358067;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Soupkitten;;MAL;[];;http://myanimelist.net/profile/Soupkitten;dark;text;t2_nfzxm;False;False;[];;Who is Hiecchi?;False;False;;;;1610315427;;False;{};gisxwf5;False;t3_kukv89;False;False;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gisxwf5/;1610358169;52;True;False;anime;t5_2qh22;;0;[]; -[];;;MetaThPr4h;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MetaThPr4h/;light;text;t2_fbwjt;False;False;[];;"The thing that hurts me the most is that it will be way more watched than [D4DJ First Mix](https://myanimelist.net/anime/39681/D4DJ__First_Mix), an anime that is not only lots of fun, but is showing with each episode that CGI anime can look amazing in the proper hands. - -3 hours in and the discussion thread already has double the upvotes any D4DJ episode had, yes I know it's basically to mock how bad it is, but it hurts anyways. [Guess I will go eat my frustration away.](https://youtu.be/QAx5mJBqPmM)";False;False;;;;1610315571;;False;{};gisy7kz;False;t3_kukv89;False;False;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gisy7kz/;1610358337;40;True;False;anime;t5_2qh22;;0;[]; -[];;;punyuni;;;[];;;;text;t2_3q1mvnyh;False;False;[];;I'm biased, but start with mob psycho you won't regret it at all. The fight scenes are movie + tier.;False;False;;;;1610315816;;False;{};gisypz0;False;t3_kumzbf;False;True;t1_giswwxm;/r/anime/comments/kumzbf/looking_for_a_new_anime_to_watch/gisypz0/;1610358611;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;"Can't get over the fact you called Ga-Rei Zero, which aired in 2008, a ""late 80s or 90s anime"". I don't think you know what 80s and 90s anime actually look like.";False;False;;;;1610315832;;1610316026.0;{};gisyr64;False;t3_kumgu1;False;True;t3_kumgu1;/r/anime/comments/kumgu1/anime_in_which_everyone_dies_in_the_first_episode/gisyr64/;1610358629;2;True;False;anime;t5_2qh22;;0;[]; -[];;;punyuni;;;[];;;;text;t2_3q1mvnyh;False;False;[];;But jjk is good too if you enjoy stuff like mha and bc;False;False;;;;1610315840;;False;{};gisyrsu;False;t3_kumzbf;False;True;t1_gisypz0;/r/anime/comments/kumzbf/looking_for_a_new_anime_to_watch/gisyrsu/;1610358639;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;Eren fucking Yeager.;False;False;;;;1610316001;;False;{};gisz41u;False;t3_kunxad;False;False;t3_kunxad;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/gisz41u/;1610358821;79;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;It is not dubbed yet;False;False;;;;1610316026;;False;{};gisz5xg;False;t3_kunw1g;False;True;t3_kunw1g;/r/anime/comments/kunw1g/anyone_know_if_haikyuu_to_the_top_is_dubbed_yet/gisz5xg/;1610358849;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rebith;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Rebbith;light;text;t2_r3rnph6;False;False;[];;Currently watching season 4 and yes I now understand after today’s ep;False;False;;;;1610316040;;False;{};gisz6z3;True;t3_kunxad;False;False;t1_gisz41u;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/gisz6z3/;1610358866;35;True;False;anime;t5_2qh22;;0;[]; -[];;;KDoge9;;;[];;;;text;t2_10b070vr;False;False;[];;Oooooh dear friend I know the aching pain and sorrow you’re experiencing after finishing that journey which was both beautiful and heartbreaking the best thing that I did was watch a lot of comedy anime’s to mend the heart;False;False;;;;1610316120;;False;{};giszd7p;False;t3_kuo290;False;True;t3_kuo290;/r/anime/comments/kuo290/guys_i_did_it_i_finished_your_lie_in_april/giszd7p/;1610358955;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ObsidianSkyKing;;MAL;[];;"https://myanimelist.net/animelist/Freehaven&view=tile&status=7";dark;text;t2_6w6rr;False;False;[];;Great tat. Terrible filter, terrible music. Could've done without;False;False;;;;1610316129;;False;{};giszdwu;False;t3_kumqd1;False;True;t3_kumqd1;/r/anime/comments/kumqd1/my_naruto_tattoo/giszdwu/;1610358965;2;True;False;anime;t5_2qh22;;0;[]; -[];;;smiley-rell;;;[];;;;text;t2_9iaznvjw;False;False;[];;I really want to see it too😭but how do you think they would adaptated the play portion of the manga?;False;False;;;;1610316210;;False;{};giszk5z;False;t3_kum3pa;False;False;t1_gisog5c;/r/anime/comments/kum3pa/yuu_slowly_falling_for_touko_bloom_into_you/giszk5z/;1610359056;4;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;The Terror of Liberio.;False;False;;;;1610316337;;False;{};gisztl5;False;t3_kunnpu;False;True;t3_kunnpu;/r/anime/comments/kunnpu/shingeki_no_kyojin_episode_64_end_card_by_episode/gisztl5/;1610359194;1;True;False;anime;t5_2qh22;;0;[]; -[];;;firelordUK;;;[];;;;text;t2_71nes;False;False;[];;for every sonic game which just looks like it's the bare minimum, you get a Yakuza or Persona which are just oozing with passion, you can't blame SEGA for Sonic Team's failures;False;False;;;;1610316345;;False;{};giszu5u;False;t3_kukv89;False;False;t1_gisqwo1;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giszu5u/;1610359203;94;True;False;anime;t5_2qh22;;0;[]; -[];;;Joey-Zaddy;;;[];;;;text;t2_9kbfmifb;False;False;[];;All good everyone has a preference !;False;False;;;;1610316369;;False;{};giszvxd;True;t3_kumqd1;False;True;t1_giszdwu;/r/anime/comments/kumqd1/my_naruto_tattoo/giszvxd/;1610359230;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CalmingVisionary;;;[];;;;text;t2_vy281c9;False;False;[];;Alucard from *Hellsing*, the main cast of *Black Lagoon*, Guts from *Berserk*, Ciel from *Black Butler*, and Ken Kaneki from *Tokyo Ghoul*, just from the top of my head;False;False;;;;1610316653;;False;{};git0hq3;False;t3_kunxad;False;False;t3_kunxad;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/git0hq3/;1610359561;17;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610316653;moderator;False;{};git0hre;False;t3_kuod2g;False;True;t3_kuod2g;/r/anime/comments/kuod2g/is_there_any_anime_website_that_has_a_wider/git0hre/;1610359561;1;False;False;anime;t5_2qh22;;0;[]; -[];;;xkingjamez;;;[];;;;text;t2_9mypc2h9;False;False;[];;"Goblin Slayer - -God of High School - -Gate";False;False;;;;1610316731;;False;{};git0o2e;False;t3_kumzbf;False;True;t3_kumzbf;/r/anime/comments/kumzbf/looking_for_a_new_anime_to_watch/git0o2e/;1610359656;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610316752;;False;{};git0pvl;False;t3_kunpfr;False;True;t3_kunpfr;/r/anime/comments/kunpfr/would_you_like_an_anime_adaptation_of_genshin/git0pvl/;1610359684;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Erased - -Death Parade - -Houseki no Kuni - -Daily Lives of High School Boys - -Grand Blue - -ReLife - -Gakkou-Gurashi - -Mahou Shoujo Madoka Magica - -Made in Abyss - -Please create an anime list at myanimelist.net it's free and useful to use. Helps you remember what you've seen and helps us know what you've seen.";False;False;;;;1610316792;;False;{};git0t6m;False;t3_kunl3z;False;True;t3_kunl3z;/r/anime/comments/kunl3z/looking_for_short_anime/git0t6m/;1610359734;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"[Anilist](https://anilist.co) can do the following: - -* 100 point system (e.g. 75) -* 10 point decimal system (e.g. 7.5) -* 10 point system -* 5 star system -* 3 point smiley system (e.g. :) :| :( for the three)";False;False;;;;1610316818;;False;{};git0v9q;False;t3_kuod2g;False;True;t3_kuod2g;/r/anime/comments/kuod2g/is_there_any_anime_website_that_has_a_wider/git0v9q/;1610359764;10;True;False;anime;t5_2qh22;;0;[]; -[];;;gamer607;;;[];;;;text;t2_1crtm5fz;False;False;[];;"Congratulationsi feel you. If you want to continue the sadness you can watch -{Eat your pancreas} -{Silent voice} -{Your name} -These the first thing that came to my mind";False;False;;;;1610316828;;False;{};git0w0y;False;t3_kuo290;False;False;t3_kuo290;/r/anime/comments/kuo290/guys_i_did_it_i_finished_your_lie_in_april/git0w0y/;1610359775;3;True;False;anime;t5_2qh22;;0;[]; -[];;;EdwardElric69;;;[];;;;text;t2_14flsc;False;False;[];;Been a while since ive been in this sub, do you still get the medal for making one of these posts?;False;False;;;;1610316870;;False;{};git0zbz;False;t3_kuo290;False;True;t3_kuo290;/r/anime/comments/kuo290/guys_i_did_it_i_finished_your_lie_in_april/git0zbz/;1610359826;0;True;False;anime;t5_2qh22;;0;[]; -[];;;vmalarcon;;;[];;;;text;t2_cb0l;False;False;[];;Jiraya-sama! One of my favorites!;False;False;;;;1610316935;;False;{};git14dc;False;t3_kumqd1;False;True;t3_kumqd1;/r/anime/comments/kumqd1/my_naruto_tattoo/git14dc/;1610359901;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Affectionate-Youth-6;;;[];;;;text;t2_79cusihh;False;False;[];;Woah, that's a lot of options! Thanks;False;False;;;;1610316968;;False;{};git170g;True;t3_kuod2g;False;True;t1_git0v9q;/r/anime/comments/kuod2g/is_there_any_anime_website_that_has_a_wider/git170g/;1610359940;1;True;False;anime;t5_2qh22;;0;[]; -[];;;reddadz;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MysticEyes/;light;text;t2_oek5m;False;True;[];;"Sorry, your submission has been removed. - -- It looks like you want to talk about anime, but don't have much to say. We don't allow short, low-effort discussion posts here, but feel free to take some time to think more about what made your watching experience stand out, and make another post when you have some more thoughts down. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610316973;moderator;False;{};git17fh;False;t3_kuogkk;False;True;t3_kuogkk;/r/anime/comments/kuogkk/my_friend_things_love_is_war_is_better_than_aot/git17fh/;1610359946;1;True;False;anime;t5_2qh22;;0;[]; -[];;;reddadz;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MysticEyes/;light;text;t2_oek5m;False;True;[];;"Sorry, your submission has been removed. - -- All fanart must be submitted as a text post (with the proper flair) and **have the source anime in the title somewhere.** If there are multiple anime in your art, you can leave a comment instead. - - All non-OC (original content) fanart must be posted with a link to an album of three or more related images, as described [here](https://www.reddit.com/r/anime/wiki/rules#wiki_fanart). - - If you are sharing something that you found or isn't traditional fanart like a tattoo or a mural, please use the [Fanart] flair, you can post it with just one image. - - [Please read the fanart rules here](https://www.reddit.com/r/anime/wiki/rules#wiki_fanart) to avoid your posts being taken down in the future. - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610316995;moderator;False;{};git194v;False;t3_kumqd1;False;True;t3_kumqd1;/r/anime/comments/kumqd1/my_naruto_tattoo/git194v/;1610359972;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PopPunkTeacher;;;[];;;;text;t2_3q70c5ad;False;False;[];;I think love is war is better also. But I think AoT is pretty boring so that’s not a hard accomplishment to be better.;False;False;;;;1610316999;;False;{};git19f5;False;t3_kuogkk;False;True;t3_kuogkk;/r/anime/comments/kuogkk/my_friend_things_love_is_war_is_better_than_aot/git19f5/;1610359976;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mechalony;;;[];;;;text;t2_6fmiph8m;False;False;[];;No idea if this will get taken down but It does include anime 😳. https://m.youtube.com/channel/UCUdEiBDCzfNuYjMyNXcOdpQ/videos;False;False;;;;1610317018;;False;{};git1azl;False;t3_kuog8h;False;True;t3_kuog8h;/r/anime/comments/kuog8h/they_call_him_the_edp445_of_the_anime_community/git1azl/;1610359998;0;True;False;anime;t5_2qh22;;0;[]; -[];;;PopPunkTeacher;;;[];;;;text;t2_3q70c5ad;False;False;[];;I like Weathering With You more;False;False;;;;1610317030;;False;{};git1bw5;False;t3_kuoa79;False;True;t3_kuoa79;/r/anime/comments/kuoa79/i_did_a_video_essay_comparing_your_name_and/git1bw5/;1610360012;3;True;False;anime;t5_2qh22;;0;[]; -[];;;hakyona;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sirenix;light;text;t2_3wiakb4f;False;False;[];;... Why? Everyone can have their own opinion?? If your friend prefers kaguya sama maybe... Ya know... MAYBE that is their own preference / style?? and honestly I personally am not a big fan of snk either for many reasons.;False;False;;;;1610317067;;False;{};git1eok;False;t3_kuogkk;False;True;t3_kuogkk;/r/anime/comments/kuogkk/my_friend_things_love_is_war_is_better_than_aot/git1eok/;1610360054;1;True;False;anime;t5_2qh22;;0;[]; -[];;;I_Wear_16_Shoes;;;[];;;;text;t2_4tq08u86;False;False;[];;I have heard of jujutsu kaisen, just looked at the plot and I can see how it has similarities to MHA;False;False;;;;1610317077;;False;{};git1feh;True;t3_kumzbf;False;True;t1_gisyrsu;/r/anime/comments/kumzbf/looking_for_a_new_anime_to_watch/git1feh/;1610360071;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;";)";False;False;;;;1610317083;;False;{};git1fuz;False;t3_kunxad;False;False;t1_gisz6z3;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/git1fuz/;1610360078;7;True;False;anime;t5_2qh22;;0;[]; -[];;;hakyona;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sirenix;light;text;t2_3wiakb4f;False;False;[];;.... Why? Everyone can have their own opinion especially if kaguya sama fits more of their preferences /likes (AND it is a good show). My personal opinion - I prefer kaguya sama over snk too cause I just don't like it for MANY reasons. Not everyone has the same style /and likes and honestly snk doesn't fit everyone's type.;False;False;;;;1610317150;;False;{};git1kx4;False;t3_kuogkk;False;True;t3_kuogkk;/r/anime/comments/kuogkk/my_friend_things_love_is_war_is_better_than_aot/git1kx4/;1610360155;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;Myanimelist does decimals I believe;False;False;;;;1610317286;;False;{};git1v3j;False;t3_kuod2g;False;True;t3_kuod2g;/r/anime/comments/kuod2g/is_there_any_anime_website_that_has_a_wider/git1v3j/;1610360305;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;It'd airing on Toonami only right now;False;False;;;;1610317341;;False;{};git1zbf;False;t3_kuojpi;False;False;t3_kuojpi;/r/anime/comments/kuojpi/does_funimation_already_have_the_dub_for_aot_s4/git1zbf/;1610360370;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;As a general rule, if I love a show on first watching, I love it even more on re-watching.;False;False;;;;1610317375;;False;{};git21tg;False;t3_kulpvd;False;True;t3_kulpvd;/r/anime/comments/kulpvd/whats_an_anime_ill_wish_i_could_watch_for_the/git21tg/;1610360407;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Matrix_A-M;;;[];;;;text;t2_8vqw2qxi;False;False;[];;I'm not sure if I could personally pick between them. I got to see both in theaters and I was blown away both times. I'm really looking forward to Shinka's next film, since it's apparently supposed to be post-apocalpytic.;False;False;;;;1610317423;;False;{};git25cs;True;t3_kuoa79;False;True;t1_git1bw5;/r/anime/comments/kuoa79/i_did_a_video_essay_comparing_your_name_and/git25cs/;1610360459;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mrculi;;;[];;;;text;t2_af85joc;False;False;[];;"Fate/Zero Fate/Stay night - -Psycho-Pass - -Nanatsu no Taizai ss1&2 - -Cowboy Bebop - -Samurai Champloo - -Vampire hunter d Bloodlust (maybe?)";False;False;;;;1610317544;;False;{};git2ed9;False;t3_kumzbf;False;True;t3_kumzbf;/r/anime/comments/kumzbf/looking_for_a_new_anime_to_watch/git2ed9/;1610360591;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OceanSause;;;[];;;;text;t2_4ikrg3vq;False;False;[];;Fr??? How can I watch it? I dont have cable;False;False;;;;1610317547;;False;{};git2emm;True;t3_kuojpi;False;False;t1_git1zbf;/r/anime/comments/kuojpi/does_funimation_already_have_the_dub_for_aot_s4/git2emm/;1610360595;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610317560;moderator;False;{};git2foy;False;t3_kuoonn;False;True;t3_kuoonn;/r/anime/comments/kuoonn/is_adenela_supposed_to_be_a_yandere/git2foy/;1610360610;0;False;False;anime;t5_2qh22;;0;[]; -[];;;PopPunkTeacher;;;[];;;;text;t2_3q70c5ad;False;False;[];;I mean I enjoyed both of them, just weathering with you stuck with me more and I’ve rewatched it multiple times where as your name I never had that same urge to rewatch;False;False;;;;1610317721;;False;{};git2s2f;False;t3_kuoa79;False;True;t1_git25cs;/r/anime/comments/kuoa79/i_did_a_video_essay_comparing_your_name_and/git2s2f/;1610360794;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;That's a shame. Ex-Arm obviously looks like total shit, but the writing is not even close to how close of a trainwreck Gibiate was. In fact, I actually liked the first episode.;False;False;;;;1610317779;;False;{};git2wng;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/git2wng/;1610360863;124;True;False;anime;t5_2qh22;;0;[]; -[];;;Affectionate-Youth-6;;;[];;;;text;t2_79cusihh;False;False;[];;*From what I know*, it actually doesn't.;False;False;;;;1610317791;;False;{};git2xhb;True;t3_kuod2g;False;True;t1_git1v3j;/r/anime/comments/kuod2g/is_there_any_anime_website_that_has_a_wider/git2xhb/;1610360877;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Sur0z, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610317941;moderator;False;{};git396c;False;t3_kuotg6;False;True;t3_kuotg6;/r/anime/comments/kuotg6/would_i_have_a_more_impactful_experience_watching/git396c/;1610361051;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610318000;moderator;False;{};git3dk6;False;t3_kuou5n;False;True;t3_kuou5n;/r/anime/comments/kuou5n/is_there_any_legal_website_to_download_anime/git3dk6/;1610361118;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Ston35hip, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610318011;moderator;False;{};git3edn;False;t3_kuoua4;False;True;t3_kuoua4;/r/anime/comments/kuoua4/any_recommendations_of_horror_scary_mistery_anime/git3edn/;1610361130;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610318077;moderator;False;{};git3jbu;False;t3_kuov1a;False;True;t3_kuov1a;/r/anime/comments/kuov1a/anime_to_binge_watch/git3jbu/;1610361203;1;False;False;anime;t5_2qh22;;0;[]; -[];;;MysticWarriorZz_;;;[];;;;text;t2_4cetl4uw;False;False;[];;Seen overlord?;False;False;;;;1610318145;;False;{};git3oa2;False;t3_kuoua4;False;True;t3_kuoua4;/r/anime/comments/kuoua4/any_recommendations_of_horror_scary_mistery_anime/git3oa2/;1610361277;1;True;False;anime;t5_2qh22;;0;[]; -[];;;2Embarrassed2Admit;;;[];;;;text;t2_5xifwscb;False;False;[];;Hit the nail on the head. Thanks for the fast work. I was definitely looking into the wrong time frame for this series too yet you brought it around soundly.;False;False;;;;1610318161;;False;{};git3pha;True;t3_kumgu1;False;True;t1_gisp8u6;/r/anime/comments/kumgu1/anime_in_which_everyone_dies_in_the_first_episode/git3pha/;1610361295;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OfficialTomCruise;;;[];;;;text;t2_11cv57;False;False;[];;"I'm guessing they figured it out and just had to stick with it for contractual reasons. - -If anyone at Crunchyroll thinks this is what people want their money going towards they should be fired.";False;False;;;;1610318176;;False;{};git3qo1;False;t3_kukv89;False;False;t1_gisjzwq;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/git3qo1/;1610361312;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Massaman95;;;[];;;;text;t2_zxb3m;False;False;[];;I'd say you have enough in your plan to watch that's good enough to binge.;False;False;;;;1610318245;;False;{};git3vxa;False;t3_kuov1a;False;True;t3_kuov1a;/r/anime/comments/kuov1a/anime_to_binge_watch/git3vxa/;1610361389;3;True;False;anime;t5_2qh22;;0;[]; -[];;;seaninja2;;;[];;;;text;t2_bm3e5cu;False;False;[];;Try turn a gundam;False;False;;;;1610318261;;False;{};git3x72;False;t3_kuov1a;False;True;t3_kuov1a;/r/anime/comments/kuov1a/anime_to_binge_watch/git3x72/;1610361407;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crixx93;;;[];;;;text;t2_twrpm1;False;False;[];;Durarara. Its by the same author as Baccano;False;False;;;;1610318291;;False;{};git3zfp;False;t3_kuov1a;False;True;t3_kuov1a;/r/anime/comments/kuov1a/anime_to_binge_watch/git3zfp/;1610361443;2;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;"No. - -In part because video games tend to be built with much larger stories, and trying to condense them down p much always hurts their quality. The other part is because I don't think Genshin Impact is very good, and would rather have adaptations of good things over not good things.";False;False;;;;1610318363;;False;{};git44ug;False;t3_kunpfr;False;True;t3_kunpfr;/r/anime/comments/kunpfr/would_you_like_an_anime_adaptation_of_genshin/git44ug/;1610361523;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SpellTyson99;;;[];;;;text;t2_2s0cvdz5;False;False;[];;Sorry guys i forgot to mention that list is not really uptated so many of them i have finished even it seems not;False;False;;;;1610318385;;False;{};git46j4;True;t3_kuov1a;False;True;t3_kuov1a;/r/anime/comments/kuov1a/anime_to_binge_watch/git46j4/;1610361548;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YumiYuuki;;;[];;;;text;t2_9ip4ro3r;False;False;[];;"Depends on where you live, some countries have exclusive anime services but in North America there is Netflix, Prime, Crave(this is shit), Crunchyroll, Funimation and VRV are the only legal ones that come to mind - -There may be more but websites that pirate are all illegal unless they possess the license to do so";False;False;;;;1610318421;;False;{};git495c;False;t3_kuou5n;False;True;t3_kuou5n;/r/anime/comments/kuou5n/is_there_any_legal_website_to_download_anime/git495c/;1610361589;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SpellTyson99;;;[];;;;text;t2_2s0cvdz5;False;False;[];;I watched couple of episodes but idk why i dropped it, gonna re keep that for sure;False;False;;;;1610318431;;False;{};git49wc;True;t3_kuov1a;False;True;t1_git3zfp;/r/anime/comments/kuov1a/anime_to_binge_watch/git49wc/;1610361599;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SpellTyson99;;;[];;;;text;t2_2s0cvdz5;False;False;[];;"Im finishin gurren lagann at the moment, but is the only one with evangelion that keeps me in. -Im not really into gundam otherwise";False;False;;;;1610318494;;False;{};git4evy;True;t3_kuov1a;False;True;t1_git3x72;/r/anime/comments/kuov1a/anime_to_binge_watch/git4evy/;1610361672;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Joey-Zaddy;;;[];;;;text;t2_9kbfmifb;False;False;[];;Mine as well !;False;False;;;;1610318514;;False;{};git4ge5;True;t3_kumqd1;False;True;t1_git14dc;/r/anime/comments/kumqd1/my_naruto_tattoo/git4ge5/;1610361694;1;True;False;anime;t5_2qh22;;0;[]; -[];;;seaninja2;;;[];;;;text;t2_bm3e5cu;False;False;[];;Yu yu hakusu;False;False;;;;1610318521;;False;{};git4h0c;False;t3_kuov1a;False;True;t1_git4evy;/r/anime/comments/kuov1a/anime_to_binge_watch/git4h0c/;1610361705;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Joey-Zaddy;;;[];;;;text;t2_9kbfmifb;False;False;[];;Can I edit it so it won’t be taken down ?;False;False;;;;1610318542;;False;{};git4in4;True;t3_kumqd1;False;True;t1_git194v;/r/anime/comments/kumqd1/my_naruto_tattoo/git4in4/;1610361728;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OfficialTomCruise;;;[];;;;text;t2_11cv57;False;False;[];;That CGI looks great in D4DJ. I'm just not interested in music/idol anime that much. I wish I could watch that because I love good animation but I'm not going to force myself to.;False;False;;;;1610318560;;False;{};git4k0s;False;t3_kukv89;False;False;t1_gisy7kz;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/git4k0s/;1610361749;27;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;"Have a listen to [this](https://open.spotify.com/track/59heMF0LTYzIu3gNkdCWic?si=39ZwNbJbSB2IWkg-v9STTA ""It's 2Volt from S2 OST. It's the track they used at the end"")";False;False;;;;1610318582;;False;{};git4lse;False;t3_kuovg0;False;True;t3_kuovg0;/r/anime/comments/kuovg0/attack_on_titan_the_final_epic_season/git4lse/;1610361776;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Ma7tt;;;[];;;;text;t2_z6347;False;False;[];;thought so, so ill probably have to buy them on prime. Then download them. That's better then nothing at least. Thanks for the help;False;False;;;;1610318589;;False;{};git4mbw;True;t3_kuou5n;False;True;t1_git495c;/r/anime/comments/kuou5n/is_there_any_legal_website_to_download_anime/git4mbw/;1610361785;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SpellTyson99;;;[];;;;text;t2_2s0cvdz5;False;False;[];;"Omg thats a good one, but is the anime great? -Is kinda old and idk if is worth watching it rather than read the manga";False;False;;;;1610318597;;False;{};git4myt;True;t3_kuov1a;False;False;t1_git4h0c;/r/anime/comments/kuov1a/anime_to_binge_watch/git4myt/;1610361795;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;Think it'll be streaming on Funimation tomorrow maybe;False;False;;;;1610318673;;False;{};git4spf;False;t3_kuojpi;False;True;t1_git2emm;/r/anime/comments/kuojpi/does_funimation_already_have_the_dub_for_aot_s4/git4spf/;1610361880;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YumiYuuki;;;[];;;;text;t2_9ip4ro3r;False;False;[];;"Prime is absolute garbage as most of them are unavailable to watch or dont give english subs (which doesn't bother me but I know a lot dont understand Japanese) - -Best bet would be for you to go Crunchyroll, I use it and the mobile app is honestly really good";False;False;;;;1610318703;;False;{};git4v0k;False;t3_kuou5n;False;True;t1_git4mbw;/r/anime/comments/kuou5n/is_there_any_legal_website_to_download_anime/git4v0k/;1610361915;2;True;False;anime;t5_2qh22;;0;[]; -[];;;seaninja2;;;[];;;;text;t2_bm3e5cu;False;False;[];;Do what you choose did you try kekkai sensen or doroharo and you can try ushio and tora;False;False;;;;1610318783;;False;{};git50yb;False;t3_kuov1a;False;True;t1_git4myt;/r/anime/comments/kuov1a/anime_to_binge_watch/git50yb/;1610362005;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SpellTyson99;;;[];;;;text;t2_2s0cvdz5;False;False;[];;I dont know the First one, for the second if u mean dororo yes i tried it;False;False;;;;1610318863;;False;{};git56si;True;t3_kuov1a;False;True;t1_git50yb;/r/anime/comments/kuov1a/anime_to_binge_watch/git56si/;1610362094;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Massaman95;;;[];;;;text;t2_zxb3m;False;False;[];;"What's the use of using a spoiler tag if you put the spoiler in name of your post? - -I don't want to know ahead of time when he is going to transform...";False;False;;;;1610318868;;False;{};git576d;False;t3_kup03v;False;True;t3_kup03v;/r/anime/comments/kup03v/spoilers_for_attack_on_titan_season_4_episode_5/git576d/;1610362100;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Animistaa;;;[];;;;text;t2_9d19ccz5;False;False;[];;❤️❤️❤️;False;False;;;;1610318922;;False;{};git5b7v;True;t3_kuovg0;False;True;t1_git4lse;/r/anime/comments/kuovg0/attack_on_titan_the_final_epic_season/git5b7v/;1610362162;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lukeboi8;;;[];;;;text;t2_3aqglzrd;False;False;[];;Most iconic moment in anime history;False;False;;;;1610318945;;False;{};git5cxx;False;t3_kuovg0;False;True;t3_kuovg0;/r/anime/comments/kuovg0/attack_on_titan_the_final_epic_season/git5cxx/;1610362186;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Based on what you enjoy, you would like Tokyo Ghoul and Demon Slayer. You'll also really enjoy Black Butler;False;False;;;;1610318970;;False;{};git5etn;False;t3_kuoua4;False;False;t3_kuoua4;/r/anime/comments/kuoua4/any_recommendations_of_horror_scary_mistery_anime/git5etn/;1610362213;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Animistaa;;;[];;;;text;t2_9d19ccz5;False;False;[];;Yess!!!;False;False;;;;1610318985;;False;{};git5fvx;True;t3_kuovg0;False;True;t1_git5cxx;/r/anime/comments/kuovg0/attack_on_titan_the_final_epic_season/git5fvx/;1610362229;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SpellTyson99;;;[];;;;text;t2_2s0cvdz5;False;False;[];;Ill check the third one;False;False;;;;1610319001;;False;{};git5h4g;True;t3_kuov1a;False;True;t1_git56si;/r/anime/comments/kuov1a/anime_to_binge_watch/git5h4g/;1610362247;1;True;False;anime;t5_2qh22;;0;[]; -[];;;keithohara;;;[];;;;text;t2_gbzf7q;False;True;[];;I feel bad for 2voltz. in any other anime that would be a goat track but the AOT fanbase depises it;False;False;;;;1610319002;;False;{};git5h76;False;t3_kup03v;False;True;t3_kup03v;/r/anime/comments/kup03v/spoilers_for_attack_on_titan_season_4_episode_5/git5h76/;1610362248;1;True;False;anime;t5_2qh22;;0;[]; -[];;;whalehome;;;[];;;;text;t2_albkj;False;False;[];;Give jujutsu kaisen a try.;False;False;;;;1610319074;;False;{};git5mk6;False;t3_kumzbf;False;True;t3_kumzbf;/r/anime/comments/kumzbf/looking_for_a_new_anime_to_watch/git5mk6/;1610362328;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;"I mean they are also funding Yuru Camp this season and have done so with quite a few other beloved shows like A Place Further Than the Universe. - -I don't think a few missteps makes them out of touch. - -Edit: I also forgot Reincarnated as a Spider which they help fund this season as well.";False;False;;;;1610319110;;1610322286.0;{};git5p7c;False;t3_kukv89;False;False;t1_gisjzwq;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/git5p7c/;1610362369;37;True;False;anime;t5_2qh22;;0;[]; -[];;;soracte;;;[];;;;text;t2_6jyuy;False;True;[];;"Creeping, morally-complex dread: - -* [From the New World](https://myanimelist.net/anime/13125/Shinsekai_yori?q=from%20the%20new%20world&cat=anime) (a bit like Promised Neverland) -* [Shiki](https://myanimelist.net/anime/7724/Shiki?q=shiki&cat=anime) (if you can cope with the outrageous haircuts & fashion sense) - -Violent, mysterious apocalypses: - -* [Devilman Crybaby](https://myanimelist.net/anime/35120/Devilman__Crybaby?q=devilman&cat=anime) -* the '97 [Berserk](https://myanimelist.net/anime/33/Kenpuu_Denki_Berserk) - -Psychological thrillers: - -* [Perfect Blue](https://myanimelist.net/anime/437/Perfect_Blue?q=perfect%20blue&cat=anime) -* [Monster](https://myanimelist.net/anime/19/Monster) -* [Gankutsuou](https://myanimelist.net/anime/239/Gankutsuou) (less horror, but good for chilling mystery) - -Horror-styled action: - -* [Garo: Honoo no Kokuin](https://myanimelist.net/anime/23311/Garo__Honoo_no_Kokuin) -* [Vampire Hunter D: Bloodlust](https://myanimelist.net/anime/543/Vampire_Hunter_D_2000) -* I guess you could file [Fate/Zero](https://myanimelist.net/anime/10087/Fate_Zero) here. - -> Some of my friends say I should watch Tokyo Ghoul and Demon Slayer, are they really that good? - -They're both decent and worth trying. Demon Slayer is maybe more an action vehicle with some horror elements. Tokyo Ghoul has action but pushes the horror and thriller side a bit more.";False;False;;;;1610319111;;False;{};git5pck;False;t3_kuoua4;False;True;t3_kuoua4;/r/anime/comments/kuoua4/any_recommendations_of_horror_scary_mistery_anime/git5pck/;1610362371;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;"I cummed ........... - - -ok maybe I was exaggerated lol, however it is one of the best episodes of the whole anime";False;False;;;;1610319114;;False;{};git5pi7;False;t3_kuovg0;False;False;t3_kuovg0;/r/anime/comments/kuovg0/attack_on_titan_the_final_epic_season/git5pi7/;1610362374;4;True;False;anime;t5_2qh22;;0;[]; -[];;;punyuni;;;[];;;;text;t2_3q1mvnyh;False;False;[];;I'd defiantly give it a shot. It even has an all might esque character in the MC's teacher.;False;False;;;;1610319114;;False;{};git5pji;False;t3_kumzbf;False;True;t1_git1feh;/r/anime/comments/kumzbf/looking_for_a_new_anime_to_watch/git5pji/;1610362374;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LegendaryRQA;;;[];;;;text;t2_hszyq;False;False;[];;Normally stuff like this does not get made because of data but because of licensing and contracts.;False;False;;;;1610319115;;False;{};git5plh;False;t3_kukv89;False;True;t1_gisjzwq;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/git5plh/;1610362375;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OGusername1;;;[];;;;text;t2_il7tt;False;False;[];;Attack on titan is amazing and the last season is airing right now.;False;False;;;;1610319127;;False;{};git5qlb;False;t3_kuno7f;False;True;t3_kuno7f;/r/anime/comments/kuno7f/give_me_some_emotional_and_action_based_anime/git5qlb/;1610362390;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ma7tt;;;[];;;;text;t2_z6347;False;False;[];;You're an actual saint, I have funimation and can download 12 episodes, but with crunchy roll I can download 100. I will be buying a subscription then. I was just about to make a prime account and buy some to. Thank you so much! Side note- I might even have to make 2 Crunchyroll accounts to have 200 episodes. Thanks again!;False;False;;;;1610319238;;False;{};git5yqq;True;t3_kuou5n;False;True;t1_git4v0k;/r/anime/comments/kuou5n/is_there_any_legal_website_to_download_anime/git5yqq/;1610362512;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Aadi-K;;;[];;;;text;t2_4klu6o3e;False;False;[];;Good art;False;False;;;;1610319241;;False;{};git5ywn;False;t3_kup6e9;False;True;t3_kup6e9;/r/anime/comments/kup6e9/art_done_by_me_nakano_miku/git5ywn/;1610362513;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610319290;moderator;False;{};git62h3;False;t3_kup95s;False;True;t3_kup95s;/r/anime/comments/kup95s/higurashi_no_naku_koro_ni/git62h3/;1610362566;1;False;False;anime;t5_2qh22;;0;[]; -[];;;EmotiveG;;HB;[];;;dark;text;t2_c9f4m;False;False;[];;Also check out The Garden of Words, OP!;False;False;;;;1610319354;;False;{};git676v;False;t3_kuo290;False;True;t1_git0w0y;/r/anime/comments/kuo290/guys_i_did_it_i_finished_your_lie_in_april/git676v/;1610362645;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;Vrv (Which is a product of crunchyroll) you can download stuff for offline;False;False;;;;1610319356;;False;{};git67cp;False;t3_kuou5n;False;True;t3_kuou5n;/r/anime/comments/kuou5n/is_there_any_legal_website_to_download_anime/git67cp/;1610362648;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AlphaBetaXZT;;;[];;;;text;t2_5wksns20;False;False;[];;"I can’t really explain it myself but here’s a video explaining it. - -https://youtu.be/escc512WoDw";False;False;;;;1610319358;;False;{};git67jv;False;t3_kup95s;False;True;t3_kup95s;/r/anime/comments/kup95s/higurashi_no_naku_koro_ni/git67jv/;1610362651;1;True;False;anime;t5_2qh22;;0;[]; -[];;;juances19;;HB;[];;https://kitsu.io/users/juances;dark;text;t2_17a18d;False;False;[];;It helps that it's based on an existing manga, which probably had potential on it's own but got butchered by the animation.;False;False;;;;1610319465;;False;{};git6fnb;False;t3_kuoq3c;False;False;t1_git2wng;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/git6fnb/;1610362771;84;True;False;anime;t5_2qh22;;0;[]; -[];;;Darkmew94;;;[];;;;text;t2_24rnfh4;False;False;[];;hunterxhunter, clannad;False;False;;;;1610319486;;False;{};git6hai;False;t3_kulpvd;False;True;t3_kulpvd;/r/anime/comments/kulpvd/whats_an_anime_ill_wish_i_could_watch_for_the/git6hai/;1610362796;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Julimex;;;[];;;;text;t2_228tdpw3;False;False;[];;It’s a mystery anime, not knowing what happens why is part of the show. This means you have to spoil yourself to answer your questions;False;False;;;;1610319518;;False;{};git6js1;False;t3_kup95s;False;False;t3_kup95s;/r/anime/comments/kup95s/higurashi_no_naku_koro_ni/git6js1/;1610362834;4;True;False;anime;t5_2qh22;;0;[]; -[];;;I_Wear_16_Shoes;;;[];;;;text;t2_4tq08u86;False;False;[];;I think I'll start with mob psycho for a change of style... thanks for the suggestions;False;False;;;;1610319536;;False;{};git6l6n;True;t3_kumzbf;False;True;t1_git5pji;/r/anime/comments/kumzbf/looking_for_a_new_anime_to_watch/git6l6n/;1610362857;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;Your questions will be answered later;False;False;;;;1610319567;;False;{};git6ngg;False;t3_kup95s;False;False;t3_kup95s;/r/anime/comments/kup95s/higurashi_no_naku_koro_ni/git6ngg/;1610362893;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ImPerezofficial;;;[];;;;text;t2_49pgr7z2;False;False;[];;Damn, I actually expected the trailer to look really bad, but it still blew all my expectations with ease in first 10 seconds.;False;False;;;;1610319567;;False;{};git6ngm;False;t3_kukv89;False;False;t1_gissmdt;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/git6ngm/;1610362893;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Ston35hip;;;[];;;;text;t2_7ptsbwdo;False;False;[];; Someone told me the name of this one long time ago but I forgot about it, thanks!;False;False;;;;1610319683;;1610320266.0;{};git6w4f;True;t3_kuoua4;False;True;t1_git3oa2;/r/anime/comments/kuoua4/any_recommendations_of_horror_scary_mistery_anime/git6w4f/;1610363025;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shockzz123;;;[];;;;text;t2_g0cyr;False;False;[];;You don't need all that data to see it wasn't up to par lol. You can use your eyes and ears to see and hear that it's a mess.;False;False;;;;1610319778;;False;{};git73c8;False;t3_kukv89;False;True;t1_gisjzwq;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/git73c8/;1610363133;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PickledPokute;;;[];;;;text;t2_st0d4;False;False;[];;"I doubt there are many platforms that don't produce misses for the shows they fund... - -The plans for this one might've looked great a year ago.";False;False;;;;1610319786;;False;{};git73yv;False;t3_kukv89;False;False;t1_gisjzwq;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/git73yv/;1610363142;8;True;False;anime;t5_2qh22;;0;[]; -[];;;sir_stabby_III;;;[];;;;text;t2_7ipahwrm;False;False;[];;its not a bad comedy, but the romance definitely takes the back seat;False;False;;;;1610319816;;False;{};git7684;False;t3_kupb0s;False;False;t3_kupb0s;/r/anime/comments/kupb0s/is_love_tyrant_worth_a_watch/git7684/;1610363177;4;True;False;anime;t5_2qh22;;0;[]; -[];;;juances19;;HB;[];;https://kitsu.io/users/juances;dark;text;t2_17a18d;False;False;[];;The main cast includes a yandere that loves the guy to death but still I'd say it's fully comedy driven, it won't scratch that romance itch.;False;False;;;;1610319874;;False;{};git7agh;False;t3_kupb0s;False;False;t3_kupb0s;/r/anime/comments/kupb0s/is_love_tyrant_worth_a_watch/git7agh/;1610363242;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ston35hip;;;[];;;;text;t2_7ptsbwdo;False;False;[];;Black Butler was awesome! I was watching it during lockdown.;False;False;;;;1610319936;;False;{};git7ewb;True;t3_kuoua4;False;True;t1_git5etn;/r/anime/comments/kuoua4/any_recommendations_of_horror_scary_mistery_anime/git7ewb/;1610363309;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DM_Streety;;;[];;;;text;t2_28v3v1mj;False;False;[];;I said it was a spoiler in the post;False;False;;;;1610320020;;False;{};git7kwa;True;t3_kup03v;False;True;t1_git576d;/r/anime/comments/kup03v/spoilers_for_attack_on_titan_season_4_episode_5/git7kwa/;1610363399;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;"Hello! - -Your usual streaming services like Netflix, Hulu, Prime video, etc. will have a library of anime for you to watch. I'm not sure if you already have one of those, but if you do that's an easy place to start. - -There are also anime specific streaming services like Crunchyroll, Funimation, or VRV. - -I can recommend you shows depending on which of these you have if any.";False;False;;;;1610320052;;False;{};git7n6o;False;t3_kupgdx;False;True;t3_kupgdx;/r/anime/comments/kupgdx/hello_i_am_new_here/git7n6o/;1610363435;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Massaman95;;;[];;;;text;t2_zxb3m;False;False;[];;"And 1 word later, you post the spoiler. In the title. - -Save it for the actual post.";False;False;;;;1610320084;;False;{};git7pkf;False;t3_kup03v;False;True;t1_git7kwa;/r/anime/comments/kup03v/spoilers_for_attack_on_titan_season_4_episode_5/git7pkf/;1610363471;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YumiYuuki;;;[];;;;text;t2_9ip4ro3r;False;False;[];;No problem;False;False;;;;1610320089;;False;{};git7pzj;False;t3_kuou5n;False;True;t1_git5yqq;/r/anime/comments/kuou5n/is_there_any_legal_website_to_download_anime/git7pzj/;1610363478;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ducati_Don;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/CaptainGiri;light;text;t2_4by5kwm2;False;True;[];;The first episode is 5/10. Not good, not bad. The outro is the beat of all seasons;False;False;;;;1610320104;;False;{};git7r4t;False;t3_kumcrs;False;True;t3_kumcrs;/r/anime/comments/kumcrs/yami_shibai_season_8_episode_1_discussion/git7r4t/;1610363495;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SalaciousCrumb17;;;[];;;;text;t2_ve7uc70;False;False;[];;SEGA has great studios working under its belt! Alien Isolation still is my favorite horror game;False;False;;;;1610320180;;False;{};git7woz;False;t3_kukv89;False;False;t1_giszu5u;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/git7woz/;1610363579;34;True;False;anime;t5_2qh22;;0;[]; -[];;;SpaghettiPunch;;;[];;;;text;t2_8u4po52;False;False;[];;"small brain: crunchyroll published ex-arm because they thought it would be good - -huge brain: crunchyroll published ex-arm because they knew people would want to watch it to see how bad it is";False;False;;;;1610320204;;False;{};git7yi1;False;t3_kukv89;False;False;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/git7yi1/;1610363605;30;True;False;anime;t5_2qh22;;0;[]; -[];;;MysticWarriorZz_;;;[];;;;text;t2_4cetl4uw;False;False;[];;No....guy gets trapped in a game and it becomes real....he decides to take over the world with his overwhelming power;False;False;;;;1610320227;;False;{};git80dj;False;t3_kuoua4;False;True;t1_git6w4f;/r/anime/comments/kuoua4/any_recommendations_of_horror_scary_mistery_anime/git80dj/;1610363632;1;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"Welcome to the Anime Community!! This lengthy but general list seeks to help you find shows that will cater to your needs as well as making you aware of the various titles out there from a variety of genres and eras. - -Genres are marked in bold. Pick one you like and browse through until you find a show you may enjoy. - -Openings/trailers are linked to give you a feel for the show. Legal streams or lack of them will be found after the description in the () as well as any extra info about the show or any other genres it could fit into as some could shows could fit into two. - -If this list still is a bit intimidating for you don’t hesitate to just simply tell me what you enjoy in other media, and I will direct you to something on this list or maybe something I haven’t included. - - - -**Fantasy** (Stories or settings that either take place in entirely different worlds or takes place in our world while having some fantastic quality or aspect such as magic): - -- Attack on Titan (2013) Eren, Armin and Mikasa are three kids trapped behind one of the three outer walls that protects humanity from the monsters outside called Titans. Desperate to see the outside world their dreams are dashed on a fateful day where a new titan is able to breach the once impenetrable walls. This memorable day will challenge their will, beliefs and general perception of humanity as they fight to save it. -(Crunchyroll/VRV, Funimation, Hulu, Netflix S1 only) - -[Attack on Titan OP 1](https://www.youtube.com/watch?v=GvpZHdC80lE) - -- Hunter x Hunter (2011) A boy named Gon embarks on an adventure to become a Hunter an incredibly sought-after profession that is both very lucrative but incredibly dangerous in the hopes of understanding why his father abandoned him as a young child. (There are two versions of HxH the 1999 version you can check out but the 2011 is considered the superior adaption and has adapted more of the story) -(Crunchyroll, Hulu doesn’t have the full show only 76 episodes/Netflix doesn’t have the full show only 76 episodes) - -[Hunter X Hunter OP 1](https://www.youtube.com/watch?v=faqmNf_fZlE) - -- Full Metal Alchemist Brotherhood (2009) Two boys Ed and Alphonse make a Faustian bargain that deeply curse both of them. To revert the consequences, they must go on an adventure to find a mystical stone of alchemy the philosopher stone. The show deals with imperialism, militarism, redemption, forgiveness, the value of human life and the danger of the extremes of pure faith and rationality. (recommend the dub as a sub watcher) - (Crunchyroll/VRV, Hulu, Netflix ) - -[FMAB OP 1](https://www.youtube.com/watch?v=X59yPeVk_70) - -- Spice and Wolf (2008) Kraft Lawrence a merchant makes his living peddling goods as he goes town to town. After making one of these stops, he encounters an old wolf deity by the name of Holo who has not awakened in a very long time. Holo accompanies Lawrence on his travels to see the changes in the world she long forgot while helping Lawrence in his job as a merchant. -(Funimation) (Slice of Life) - -[Spice and Wolf OP](https://www.youtube.com/watch?v=MN_WgwEmRaw) - -- Kimetsu no Yaiba (2019) Action series set during the Taisho Era in Japan about a young demon slayer who after finding his family murdered must find a cure to save his sister from turning into a demon. (Crunchyroll/VRV, Hulu, Funimation) (Historical) - -[Kimetsu no Yaiba OP]( https://www.youtube.com/watch?v=pmanD_s7G3U) - - - -- Re:Zero (2016) Subaru Natsuki a normal Japanese guy is suddenly transported to another world. After various entanglements he realizes he has both a remarkable and horrifying power the ability to return to a certain point of time after dying. Can he use this power to save him and his friends? -(CR/Funimation) - -[Re:Zero OP](https://www.youtube.com/watch?v=0Vwwr3VGsYg) - -- Yona of the Dawn (2014) Yona is a young princess that has lived in luxury most of her life thanks to her benevolent father. This all changes after one day when he is murdered in a palace coup. She is saved by her only loyal retainer Hak and must grow up in a harsh unforgiving world as she looks to take back her kingdom. -(Crunchyroll/VRV, Funimation/Hulu) - -[Yona of the Dawn OP 1](https://www.youtube.com/watch?v=3Tz3vxwJf6I) - -- Mushishi (2005) Ambient supernatural show about a Mushishi a doctor who specializes in healing the afflicted of diseases usually caused by supernatural beings called Mushi. Stories can range from heartwarming to tragic with various messages about family or the relation between humanity and nature. -(Crunchyroll/VRV, Hulu, Funimation) (Slice of Life) - -[Mushishi Trailer](https://www.youtube.com/watch?v=CXhPRWY1L0E) - -- Naruto (2002) After a powerful monster known as the Nine Tailed Fox attacks the Leaf Village the Hokage the greatest ninja and leader of the village seals it into a young boy known as Naruto. As he grows up Naruto hopes to one day become Hokage himself so that one day the villagers that fear him and his teachers, seniors and classmates that look down on him will one day recognize him. (Does have filler just look up a filler guide. That said the filler episode around Kakashi’s mask and the Itachi Shiden arcs you should watch basically canon) -(Crunchyroll/VRV, Netflix all of Part 1 and Part 2 up to Five Kage arc) - -[Naruto OP 1](https://www.youtube.com/watch?v=4t__wczfpRI) - - -- Spirited Away (2001) A girl named Chihiro and her family accidently enter a world dominated by various spirits. After her parents are turned into pigs by the witch Yubaba Chihiro must find a way to turn them back to normal and escape. -(Blu-Ray/Netflix) - -[Spirited Away English Dub trailer]( https://www.youtube.com/watch?v=ByXuk9QqQkk) - - -**Science Fiction** (Stories taking place in the future or near future that don’t feature giant robots) - -- Cowboy Bebop (1998) Spike Spiegel a former syndicate member gangs up with a small crew known as Jet, Faye and Ed as they pursue various criminals around the Solar system while he keeps an eye out for former syndicate member Vicious. Mostly episodic but with an overarching plotline. (recommend the dub as a sub watcher) (Funimation) - -[Cowboy Bebop OP]( https://www.youtube.com/watch?v=NRI_8PUXx2A) - -- Akira (1988) A dark sci fi anime about a bunch of biker kids getting caught up in a government project that firmly tests their bonds and the fragile system that exists in Neo Tokyo. (Hulu/BD) - -[Akira 25th Anniversary English Trailer](https://www.youtube.com/watch?v=-UhLderbuGI) - - -- Steins;Gate (2011) A few nerdy college friends and one genius scientist accidentally create a time machine out of a microwave. This initial sense of achievement is turned to dread as they must avoid the organization SERN and save the world from a devastating fate. (Funimation/Hulu) - -[Steins;Gate OP](https://www.youtube.com/watch?v=dd7BILZcYAY) - -- Legend of the Galactic Heroes (OVA 1988-1997) A great epic space opera with a conflict focused on a corrupt democracy fighting an enlightened despot. Discussions on both the benefits and issues of both systems along with the huge epic space battles. Recent remake not a bad adaptation but it is a bit rushed and only covers the first two books of 10 original has covered all. (Watch the first two prequel films My Conquest is A Sea of Stars and Overture to a New War and skip the first two episodes of the main series after seeing the films. Overture covers the first two episodes better. Extra content you can watch after the fact is the prequel Gaiden and the remake). -(Hidive/VRV) - - [Legend of the Galactic Heroes OP 3]( https://www.youtube.com/watch?v=Hryo6H57y6I) - -- Redline (2009) Every five years one insane race is held called Redline. There is only one rule that there are no rules. Adrenaline the anime with some of the most amazing animation out there. (Amazon Prime) - -[Redline Trailer](https://www.youtube.com/watch?v=2t26m_Q6ENo) - -- Space Battleship Yamato 2199 (2012). After humanity encounters alien life for the first time the Gamilas as they are known destroy Earth’s atmosphere forcing humanity underground. Hope however, manifests after another alien race from the planet Iscandar helps humanity construct a new spaceship capable of FTL to venture to their planet for a possible hope for the dying Earth. (a remake of the classic series and pretty good worth watching the original as well) -(Funimation) - -[Space Battleship Yamato 2199 OP](https://www.youtube.com/watch?v=51PjegTadWU) - -- Ghost in the Shell (Film 1995) (SAC 2002) Set in the mid 21st century in a world that has allowed people to easily modify their bodies with some becoming entirely cybernetic. Matoko Kusanagi is one such cyborg who works for the Public Security Section 9 task force whose main objectives are to deal with crime and counter terrorism. -(Films and the SAC series are independent. Films are more philosophical vs SAC which tends to be more a crime drama) -(Amazon Prime has the official dub release but if you want to watch sub look elsewhere) - - -[Ghost in the Shell: S.A.C. 2nd GIG OP](https://www.youtube.com/watch?v=YQIqgxeNtl0) - - -- Psycho Pass (2012) A cyberpunk detective story in an over monitored state that actively tracks your brain and marks you out as a criminal if your criminality potential goes overboard. Series focuses on Inspector Akane and Kogami an enforcer a controlled agent whose criminal coefficient has gone over as they try to track down a prolific criminal mastermind. -(Funimation/Hulu) - -[Psycho Pass OP 2]( https://www.youtube.com/watch?v=3DSQmBQ9EJk)";False;False;;;;1610320350;;1610320824.0;{};git89lx;False;t3_kupgdx;False;False;t3_kupgdx;/r/anime/comments/kupgdx/hello_i_am_new_here/git89lx/;1610363769;2;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"**Mecha** (Stories that do feature giant robots the plots can be fairly diverse honestly): - -- Neon Genesis Evangelion (1995) Three teens are the only hope for humanity. Synced up to massive robots to fight aliens/monsters known as Angels. Quite a few themes like a look at the writer's ongoing depression play a huge role in the series. (make sure you watch the film End of Evangelion for the ending) (there is also the Rebuild films which is another alternative take on the story) -(Netflix) - -[Neon Genesis Evangelion OP]( https://www.youtube.com/watch?v=nU21rCWkuJw) - - -- Code Geass (2006) Set in an alternate history where the world is divided between three great superpowers the former country of Japan is occupied by the Holy Britannian Empire and is renamed as Area 11. A young Britanian by the name of Lelouch after gaining a power that gives him command over a person’s actions seeks to help the Japanese rebel against the tyrannical state but is faced with difficult decisions as he leads the revolution down a radical path. (Funimation/Hulu/Netflix) - -[Code Geass OP 1](https://www.youtube.com/watch?v=cZ7zQbMxm28) - -- Gurren Lagann (2007) Two boys Kamina and Simon are raised in a deep underground village. One day they discover a massive robot from an ancient war. Along with Yoko a new friend they wander through the wasteland of the surface world as they fight off beastmen and powerful robots called gunmen. (Netflix) - -[Gurren Laggan OP](https://www.youtube.com/watch?v=1Iqd7hhmXMc) - - -- Mobile Suit Gundam Iron Blood Orphans (2015) Child soldiers get wrapped up in a push for Martian indepence against a Sci Fi version of the East Indian Company. (stand-alone Gundam series you need no experience with other Gundam titles) -(Crunchyroll/VRV, Funimation, Netflix) - -[Mobile Suit Gundam Iron Blood Orphans OP](https://www.youtube.com/watch?v=FjXS_lbU2TU) - -**Comedy** (Stories whose main focus is on comedy): - -- Mob Psycho 100 (2016) Action comedy about a psychic boy and his mentor a con artist fighting other psychics and the various spirits that plague their city while he learns to grow as a person. (Crunchyroll/Funimation) (Action/Adventure Other) - -[Mob Psycho 100 OP] (https://www.youtube.com/watch?v=0lpApXzwAP0&index=2&list=FLsNBO_i0YOwmyoaxjB-AZ7g&t=0s) - - -- Kaguya-Sama Love is War (2019) One of the most overdramatic romance anime out there. A battle of the minds where the two love interests try to get the other to confess first in order to save their pride. Pretty humorous and funny if you like very overdramatized comedy. (Crunchyroll/VRV, Hulu, Funimation) (Romance) - -[Kaguya-Sama Love is War OP](https://www.youtube.com/watch?v=_4NjEOtSQww) - - -- Nichijou (2011) Series focuses on the daily antics of three childhood friends and their activities that vary from the normal to the borderline extraordinary. -(Funimation) (Slice of Life) - -[Nichijou OP](https://www.youtube.com/watch?v=qUk1ZoCGqsA) - - -**Action/Adventure (Other)** (Action series that didn’t fit neatly into a genre on my list): - -- My Hero Academia (2016) After a birth of a glowing baby humanity is slowly altered to the point that at the present day most of humanity features some sort of genetic mutation or super-power in a way. Izuku Midoriya is one of those few people in the world that doesn’t possess a superpower but he still desires to be a hero. After impressing the world’s greatest hero All Might he is a given an opportunity to become one. -(Crunchyroll/VRV, Hulu, Funimation ) - -[My Hero Academia OP 1](https://www.youtube.com/watch?v=yu0HjPzFYnY) - -- JoJo's Bizarre Adventure (2012) Generational action series that involves multiple characters throughout time. Has a very unique sense of style with a really creative battle system that makes it standout from many other action titles. Each part is it’s own story in a way but they are connected. -(Would give it until episode 12 to know if it’s for you) (Part 1 is considered the weakest of the 8 but don’t skip parts) -(Crunchyroll/VRV, Hulu (only up to Part 4), Netflix (only up to Part 3)) - -[JoJo's Bizarre Adventure Part 4 OP](https://www.youtube.com/watch?v=wlXqw2_IYzs) - -- Black Lagoon (2006) Rakuro Okajima also known as Rock is a Japanese salaryman who gets involved with a pirate gang in South East Asia on the Black Lagoon after a certain deal goes wrong. (recommend the dub as a sub watcher) (Hulu, Funimation) - -[Black Lagoon OP]( https://www.youtube.com/watch?v=qCPOzUTCb8g) - - -- The Great Pretender (2020) Edamura Masato a Japanese con man gets himself swindled by an infamous French Mafia member and gets pulled into his line of dirty work. -(Netflix) - -[The Great Pretender OP](https://www.youtube.com/watch?v=Yjv_yFgHYc0) - - - -**Slice of Life** (Stories that focus on the mundane aspects of life. Can vary between more dramatic to relaxed content): - - -- Violet Evergarden (2018) Violet Evergarden a child soldier whose emotional growth has been incredibly stunted by the war takes up a job in conveying the emotions of others. Through this profession she hopes that one day she can understand what one man said to her long ago. -(Netflix) - -[Violet Evergarden OP](https://www.youtube.com/watch?v=BGn6WOw6BtA) - - -- March Comes in Like A Lion (2016) Rei Kiriyama a pro shogi player (Shogi is like chess though there are a few differences) is depressed caused by a dysfunctional adopted family and pressure from those that see him as a genius. As he meets others near his home and those in the shogi federation, he starts to gain confidence in himself and begins to maybe have fun with the game he depends so much on. -(Crunchyroll/VRV, Netflix) - -[3-Gatsu No Lion S2 OP](https://www.youtube.com/watch?v=YvOK6DiZw1M) - - -- A Silent Voice (2016) Shouya Ishida has an incredible sense of guilt due to remembering his elementary days where he used to bully a deaf girl named Shouko. After by chance meeting her again, he hopes to redeem himself with the goal of giving her a fun summer. Would also recommend the manga as while the movie is great it does skips over stuff. (Netflix) - -[A Silent Voice Trailer](https://www.youtube.com/watch?v=nfK6UgLra7g) - -- Girls Last Tour (2017) After the world has been destroyed by an apocalyptic war two girls traverse the broken world laid out before them. Both relaxing and wholesome but also can be quite sad. (HiDive/Prime) - -[Girls Last Tour OP](https://www.youtube.com/watch?v=mF5MKNwbRhg) - -- Barakamon(2014) A Pro calligrapher named Handa is exiled to an isolated island away from Tokyo to reflect on his actions after attacking a well-respected calligrapher after critiquing his work. Story is mostly a comedy/slice of life with various antics with the locals and Handa but can also be fairly introspective and heartwarming. (Funimation) - -[Barakamon OP](https://www.youtube.com/watch?v=_vvL3z3pAs0) - - -- Yuru Camp (2018) A bunch of girls enjoying their outdoor hobby of Fall Camping. Soothing show. -(Crunchyroll/VRV) - -[Yuru Camp OP](https://www.youtube.com/watch?v=7-EwChG1WTA) - - - - -**Sports** (anime based around playing sports whether that be the technical/emotional aspect of the sport or the drama around it): - -- Haikyuu! (2014) Shouyou Hinata a small volleyball player must work with his former rival Tobio Kageyama to rebuild a former HS volleyball powerhouse. -(Crunchyroll/VRV/HiDive, Hulu, Netflix) - -[Haikyuu! OP 1](https://www.youtube.com/watch?v=XS-N8KfZ5EU) - - -- Ping Pong the Animation (2014) “Peco” an aspiring Ping Pong pro journeys through the harsh struggle that a pro must face with his friend “Smile” after Wenge “China” Kong a skilled Chinese ping pong player moves to Japan. Sports anime that combines hyper action with an unique art style and a psychological element. -(Funimation) - -[Ping Pong Trailer]( https://www.youtube.com/watch?v=XgPGtZH0EjQ) - -- Major (2004) A baseball anime about one young boy’s entire career from little leaguer to playing in the MLB. - (No official release for the original sail the seas) (Major 2nd is a sequel focusing on MC’s kid) - -[Major S6 OP](https://www.youtube.com/watch?v=l62pw6Is_Ks) - -- Yuri on Ice (2016) Figure skating anime that focuses on an underperforming figure skater Yuuri Katsuki. After wowing the internet with a practice performance famous Russian skater Victor Nikiforov vows to be his coach. As they work together more a friendship and maybe something else forms. -(Crunchyroll/Funimation) - -[Yuri on Ice OP](https://www.youtube.com/watch?v=ORDXWrL5EuQ)";False;False;;;;1610320368;;1610321079.0;{};git8azt;False;t3_kupgdx;False;True;t1_git89lx;/r/anime/comments/kupgdx/hello_i_am_new_here/git8azt/;1610363791;0;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"**Thriller** (Stories that rely on suspense as the MC uncovers more in my list these are mostly crime dramas): - -- Death Note (2006) Light Yagami a normal HS student and son of the Chief of the Police agency one day stumbles on a book that has the power to kill any person in the world. With this and Ryuk a Shiginami (Gods of Death) he aims to create his utopia where no crime exists while the police try to stop him from creating this nightmarish “utopia”. (Funimation, Hulu, Netflix ) - -[Death Note OP 1]( https://www.youtube.com/watch?v=8QE9cmfxx4s) - -- Monster (2004) Kenzo Tenma a Japanese surgeon living in Germany life changes drastically after he saves an incredibly dangerous man known as Johan Liebert. After learning the truth about Johan Kenzo decides no matter what he must find and kill him. - (going to have to sail the seas) - -[Monster OP](https://www.youtube.com/watch?v=msTB5r8nUHU) - - -**Historical** (stories based in any historic time period): - - -- Showa Genroku Rakugo Shinjuu (2016) Period drama that focuses on Rakugo (a form of Japanese theater) actors. Takes place throughout the entire Showa Period (1920’s-80’s) and beyond as these actors attempt to preserve the dying theater art form through interpersonal and historic struggles. -(Crunchyroll/VRV) - -[Shouwa Genroku Rakugo Shinjuu S2 OP](https://www.youtube.com/watch?v=t1HjJfGt_xk) - - -- Sword of the Stranger (2007) A boy Kotarou is on the run stealing from various villagers just to survive while being pursued by Ming assassins. Luckily he meets up with Nanashi a nameless ronin who after being offered a gem decides to join him as a bodyguard. (Funimation) - -[Sword of the Stranger English Dub Trailer](https://www.youtube.com/watch?v=3vUpmcZRkRY) - -- Vinland Saga(2019) Takes place in the early 11th century towards the end of the Viking Age. Thorfinn a young Icelander aims to take the head of Askeladd a leader of a band of Viking pirates to one day avenge his father Thors. - (Amazon Prime) - -[Vinland Saga OP]( https://www.youtube.com/watch?v=7U7BDn-gU18) - -- Rose of Versailes (1979) Oscar François de Jarjeyes is a French noble and head of the Royal guard. There is one secret though he is actually a she. She quickly forms an attachment with the new Queen Marie Antoinette. As France’s political and social state changes, she is forced to decide her loyalty between her queen and the people. (sail the seas) - -[Rose of Versailes OP](https://www.youtube.com/watch?v=eJIeJIqw-J0) - - - - - - - - - -**Romance** (stories where the romantic relationship is the main narrative focus): - - -- Toradora! (2008) A scary looking kind guy and a crass cute girl form a pact to help one another get closer to each other’s crush. -(CR/VRV, Prime, Netflix) - -[Toradora! OP](https://www.youtube.com/watch?v=Y3Xmzu0OtS8) - -- Paradise Kiss (2005) Romance anime that deals with the fashion industry as well as one girl’s desire for independence from her parents and her venture into maturity. -(no official release sail the seas) - -[Paradise Kiss OP](https://www.youtube.com/watch?v=glcG4G2XWsA) - - - -- Nodame Cantabile (2007) A top disciplined perfectionist musician by the name of Shinichi Chiaki comes into contact with an a slobish girl by the name of Meguimi Noda. When he hears her for the first time, he is in awe of the music she creates and slowly a romance is born between the two opposites. (sail the seas) - -[Nodame Cantabile OP](https://www.youtube.com/watch?v=gfZh80kZm3g) - - -- My Love Story (2015) An incredibly macho but kindhearted Takeo Gouda often can’t find love as most girls don’t find him attractive, but he soon finds that he too is deserving of love. (Crunchyroll/HiDive/VRV, Hulu, ) - -[My Love Story OP]( https://www.youtube.com/watch?v=lmznkTDDoS8) - - - -- Your Lie in April (2014) A piano prodigy suffers a serious tragedy and loses the ability to hear his own playing then later vowing to never play on stage again. Through the help of a girl, he meets he soon rediscovers his passion for playing the piano. -(Crunchyroll/VRV, Netflix ) - -[Your Lie In April OP](https://www.youtube.com/watch?v=lkdi6eK05OA) - -- Love, Chunibyo & Other Delusions! (2012) Yuuta Togashi wants to put the embarrassing past of his middle school years behind him when he once operated under the name the “Dark Flame Master”. His hopes are somewhat shattered after he encounters Rikka Takanashi a girl that had once eavesdropped on his delusions claiming to be the “Wielder of the Wicked Eye” and declaring they are attached. A romance anime about maturity and the various things we do to cope with the reality around us. -(watch the film for ending) (Crunchyroll and Neflix have S1/2, the film is on HiDive/VRV or you can buy it on Blu ray) - -[Love, Chunibyo & Other Delusions! OP](https://www.youtube.com/watch?v=GRNhN8et8WE) - - -**Ecchi** (Series that have a heavy focus on fanservice. Series dealing with sexual/lewd imagery/content but not explicit enough to be hentai aka porn): - -- Kill la Kill (2013) Delinquent girl Ryuko Matoi seeks to avenge her father’s killer. Through the power of scissor shaped longsword and a sentient sailor uniform she does battle to find her father’s killer. (Netflix CR/VRV, Hulu) - -[Kill La Kill OP](https://www.youtube.com/watch?v=8dKFxu-_oIE) - - -- Interspecies Reviewers (2020) A bunch of adventures decide to assess the age old question of what species is the most sexy by visiting various brothels around the world. -(heads up the uncensored version kinda just teeters on being a straight hentai rather than ecchi series) (Animelab which is only available in certain countries outside of that will have to sail the seas) - -[Interspecies Reviewers Trailer](https://www.youtube.com/watch?v=5bb4RPbovZ4)";False;False;;;;1610320381;;False;{};git8bzp;False;t3_kupgdx;False;True;t1_git8azt;/r/anime/comments/kupgdx/hello_i_am_new_here/git8bzp/;1610363805;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;"Crunchyroll's ""Originals"" program had already been kinda questionable, with many series being kinda dissapointing (In/Spectre, God of Highschool), but this anime definitely semented Crunchyrolls Originals as a fricking joke.";False;True;;comment score below threshold;;1610320435;;1610321017.0;{};git8g9l;False;t3_kukv89;False;True;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/git8g9l/;1610363868;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;Denpants;;;[];;;;text;t2_ry9v0w1;False;False;[];;Light Yagami;False;False;;;;1610320448;;False;{};git8ha4;False;t3_kunxad;False;False;t3_kunxad;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/git8ha4/;1610363884;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Rebith;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Rebbith;light;text;t2_r3rnph6;False;False;[];;Thanks;False;False;;;;1610320504;;False;{};git8le2;True;t3_kunxad;False;True;t1_git0hq3;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/git8le2/;1610363944;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rebith;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Rebbith;light;text;t2_r3rnph6;False;False;[];;Watched it check post;False;False;;;;1610320519;;False;{};git8mg8;True;t3_kunxad;False;True;t1_git8ha4;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/git8mg8/;1610363959;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;"Favourite of the day goes to [Shunkan Sentimental (WARNING SPOILERS)](https://youtu.be/yxkyElx0pXI) from FMAB. The song straight up slaps - -Next is the criminally underrated [U Can Do It](https://youtu.be/fU4zb23tKLM) from Naruto that didn't even make the bracket last year. If you're going to listen to any of these suggestions please watch this one. The song is awesome and the fighting animation is spectacular - -Rounding it out with a soft one, [Beautiful](https://youtu.be/Ug77yhO97-I) from Seven Deadly Sins. Beautiful voice, beautiful song, on beautiful watercolor paintings of beautiful Elizabeth. The last note still gives me chills";False;False;;;;1610320584;;1610320886.0;{};git8r85;False;t3_kupcoh;False;True;t3_kupcoh;/r/anime/comments/kupcoh/best_ending_6_listen_to_salt_fourth_eliminations/git8r85/;1610364032;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NewRevenue3;;;[];;;;text;t2_6h89t4ih;False;False;[];;Bunny girl senpai, and Bottom-tier Character Tomozaki(which just released Friday);False;False;;;;1610320630;;False;{};git8unw;False;t3_kup7uv;False;False;t3_kup7uv;/r/anime/comments/kup7uv/hello_any_animes_with_the_romantic_elements_like/git8unw/;1610364083;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610320637;moderator;False;{};git8v73;False;t3_kuporv;False;True;t3_kuporv;/r/anime/comments/kuporv/just_started_watching_monster_museme/git8v73/;1610364090;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;Shitiness transcend language bariers;False;False;;;;1610320639;;False;{};git8vbu;False;t3_kukv89;False;False;t1_gisj35z;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/git8vbu/;1610364093;68;True;False;anime;t5_2qh22;;0;[]; -[];;;MEMKILLER;;;[];;;;text;t2_3ks2ckrs;False;False;[];;So it will explain itself like another?;False;False;;;;1610320796;;False;{};git95y9;True;t3_kup95s;False;False;t1_git6js1;/r/anime/comments/kup95s/higurashi_no_naku_koro_ni/git95y9/;1610364256;1;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;They also released Onyx Equinox and Gibaite. The former isn't even anime, and the latter is p notorious.;False;False;;;;1610320896;;False;{};git9dih;False;t3_kukv89;False;False;t1_gisvxf7;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/git9dih/;1610364374;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Julimex;;;[];;;;text;t2_228tdpw3;False;False;[];;Yes, it eventually makes sense;False;False;;;;1610320907;;False;{};git9eaw;False;t3_kup95s;False;True;t1_git95y9;/r/anime/comments/kup95s/higurashi_no_naku_koro_ni/git9eaw/;1610364385;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Cynderaquil;;;[];;;;text;t2_3hyccqum;False;False;[];;You don’t need to sensor the word lol;False;False;;;;1610320948;;False;{};git9h7d;False;t3_kuporv;False;False;t3_kuporv;/r/anime/comments/kuporv/just_started_watching_monster_museme/git9h7d/;1610364429;11;True;False;anime;t5_2qh22;;0;[]; -[];;;v_a_ibhav;;;[];;;;text;t2_3j6pg6aj;False;False;[];;I think people at Crunchyroll greenlitted it for shits and giggles only.;False;False;;;;1610320981;;False;{};git9jpd;False;t3_kukv89;False;False;t1_gisv204;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/git9jpd/;1610364468;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeralyos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Zeralyos;light;text;t2_dphmj32;False;False;[];;"Alright, here are my standouts of this round. Feel free to give me links to your favorites, so I can give them a chance too. - -[Hold Me Now](https://animethemes.moe/video/CaroleAndTuesday-ED1.webm) - Carole & Tuesday - -[Ishukan Communication](https://animethemes.moe/video/KobayashiSanChiNoMaidDragon-ED1.webm) - Kobayashi-san Chi no Maid Dragon - -[Veil](https://animethemes.moe/video/EnenNoShouboutai-ED1.webm) - Fire Force - -[Styx Helix](https://animethemes.moe/video/ReZero-ED1.webm) - Re:Zero kara Hajimeru Isekai Seikatsu - -[Lucky Ending](https://animethemes.moe/video/FruitsBasket2019-ED1.webm) - Fruits Basket - -[Fukashigi no Carte](https://animethemes.moe/video/Aobuta-ED2.webm) ([v2](https://animethemes.moe/video/Aobuta-ED3.webm), [v3](https://animethemes.moe/video/Aobuta-ED4.webm), [v4](https://animethemes.moe/video/Aobuta-ED5.webm), [v5](https://animethemes.moe/video/Aobuta-ED6.webm)) - Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai (Had to link all the individual versions, they're great) - -[étoile et toi [édition le blanc]](https://animethemes.moe/video/Kizumonogatari3-ED1.webm) - Kizumonogatari III: Reiketsu-hen - -[Kimi no Gin no Niwa](https://animethemes.moe/video/MadokaMagicaHangyaku-ED1.webm) - Puella Magi Madoka Magica the Movie: Rebellion";False;False;;;;1610320982;;False;{};git9jrv;False;t3_kupcoh;False;False;t3_kupcoh;/r/anime/comments/kupcoh/best_ending_6_listen_to_salt_fourth_eliminations/git9jrv/;1610364469;15;True;False;anime;t5_2qh22;;0;[]; -[];;;MacronIsaNecrophile;;;[];;;;text;t2_2w91i0i;False;False;[];;"[Desert punk](https://www.youtube.com/watch?v=AOJyNNW7a6I)'s(watch the dub) main character only cares about making money and getting babes, he finds orphaned children and tries to sell them to a slave market. - -[EAT MAN'97](https://www.youtube.com/watch?v=MkmdVBL2LDo) is neutral on all the conflicts he involves himself in, but his solutions to these conflicts are often unexpected. one episode involves a woman wanting to leave her job and and follow her dream, her guardian wont let her do this for her own safety. rather than help the girl escape and chase her dream, eat man instead makes her understand why her guardian is keeping her, as well as make the guardian see the pain she is in.";False;False;;;;1610321019;;False;{};git9mio;False;t3_kunxad;False;True;t3_kunxad;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/git9mio/;1610364512;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LordTrinity;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/LordTrinity;light;text;t2_muxil3i;False;False;[];;"Lets go again! - - -**Sentimental Crisis** is such a nice ed! Thank you Kaguya-sama. - - **Kimi no Gin no Niwa** is amazing. And in the context Madoka has... Super amazing! - - -Wow, today is a stacked day! I don't think I'll be able to say how many eds I'll vote for. Always feel nice to listen to some of it again";False;False;;;;1610321112;;False;{};git9t9w;False;t3_kupcoh;False;False;t3_kupcoh;/r/anime/comments/kupcoh/best_ending_6_listen_to_salt_fourth_eliminations/git9t9w/;1610364614;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610321184;;False;{};git9yi6;False;t3_kupgdx;False;True;t3_kupgdx;/r/anime/comments/kupgdx/hello_i_am_new_here/git9yi6/;1610364694;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;"I haven't even seen Re:Zero, but i love any song by Myth&Roid";False;False;;;;1610321216;;False;{};gita0qw;False;t3_kupcoh;False;False;t1_git9jrv;/r/anime/comments/kupcoh/best_ending_6_listen_to_salt_fourth_eliminations/gita0qw/;1610364730;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeralyos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Zeralyos;light;text;t2_dphmj32;False;False;[];;Same, honestly. They have an album on Spotify that I listen to a lot, and Styx Helix is one of my favorites on it.;False;False;;;;1610321264;;False;{};gita466;False;t3_kupcoh;False;True;t1_gita0qw;/r/anime/comments/kupcoh/best_ending_6_listen_to_salt_fourth_eliminations/gita466/;1610364783;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bbbggghhh;;;[];;;;text;t2_2f2ehzzz;False;False;[];;"I mean isn't Equinox the one that was actually made by a Crunchyroll studio? - -As far as I saw this whole ""Crunchyroll Originals"" is like ""A netflix original anime"" in which they just put the money for exclusivity and sometime they actually invest on it (like the manwha adptations). - -Like Tonikaku was announced as a Crunchy OG just weeks prior debut when before that it wasn't.";False;False;;;;1610321291;;False;{};gita64u;False;t3_kukv89;False;False;t1_gisjzwq;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gita64u/;1610364815;15;True;False;anime;t5_2qh22;;0;[]; -[];;;SwampyBogbeard;;;[];;;;text;t2_6na87;False;False;[];;"Personal (lesser known) favourites that I recommend checking out: - -[SHaVaDaVa in AMAZING♪](https://www.youtube.com/watch?v=3m3mTCJ-a38) -[Yoimachi Cantare](https://www.youtube.com/watch?v=AdrmGyf-3pA) (I know this is relatively popular on this sub, but there's still a lot of people here who never touch shows like this) -[Last Proof](https://www.youtube.com/watch?v=RsLyrdv_18c) (One more of my all-time favourites. Fucking love the whistle parts) -[Fantastic Magic](https://www.youtube.com/watch?v=trxVcyRhuLU) This sub loves Unraveled so much that it has won one of the Best Opening contests, so how about this amazing song from the same guy? In my opinion, it's even better. Another one of my overall favourites - -Also voted for 'Sister, Friend, Lover', 'happily ever after' and ""Kimi no Gin no Niwa"" and want them to get high seeds. - -Someone already mentioned it a few days ago, but Tokohana has two entries and already appeared on the first elimination day.";False;False;;;;1610321309;;False;{};gita7ed;False;t3_kupcoh;False;False;t3_kupcoh;/r/anime/comments/kupcoh/best_ending_6_listen_to_salt_fourth_eliminations/gita7ed/;1610364833;5;True;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;Just keep watching;False;False;;;;1610321354;;False;{};gitaama;False;t3_kup95s;False;True;t3_kup95s;/r/anime/comments/kup95s/higurashi_no_naku_koro_ni/gitaama/;1610364883;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;"It's pretty funny. It's not amazing though. There's a yandere girl if you're into that - -If you want true heartfelt romance I wouldn't really categorize it as that.";False;False;;;;1610321393;;False;{};gitadd1;False;t3_kupb0s;False;False;t3_kupb0s;/r/anime/comments/kupb0s/is_love_tyrant_worth_a_watch/gitadd1/;1610364925;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ambermareep;;;[];;;;text;t2_vxoe4l1;False;False;[];;This show contains “question arcs” and “answer arcs” and everything that is confusing to you right now should be answered later on. Assuming you’re watching the new one, you actually get a good bit of context in the recent episode. Old series, you don’t find out what’s going on until season 2.;False;False;;;;1610321472;;False;{};gitaj2v;False;t3_kup95s;False;False;t3_kup95s;/r/anime/comments/kup95s/higurashi_no_naku_koro_ni/gitaj2v/;1610365016;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;At least it's not a lower score than Pupa right now;False;False;;;;1610321517;;False;{};gitamcu;False;t3_kuoq3c;False;False;t1_git2wng;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gitamcu/;1610365066;15;True;False;anime;t5_2qh22;;0;[]; -[];;;ANIM3XXW33B;;;[];;;;text;t2_9ax12vfo;False;False;[];;How was your day?;False;False;;;;1610321520;;False;{};gitamm3;False;t3_kuoa79;False;True;t3_kuoa79;/r/anime/comments/kuoa79/i_did_a_video_essay_comparing_your_name_and/gitamm3/;1610365070;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;"I'll highlight some good ED's that might get overlooked: - -The Sayonara Zetsubou Sensei ED's are both stylish as hell, if it was up to me I'd put all the SZS ending theme's on this list!: [Zessei Bijin](https://vimeo.com/130534759) and [Koiji Romanesque](https://www.dailymotion.com/video/x914bp) - -[Zettai Kibou Birthday](https://www.youtube.com/watch?v=oyx1CdZ4Y3s&ab_channel=SheTrust%E8%8B%A5%E3%81%84) \- Sung by seiyuu Megumi Ogata if I'm not mistaken. Guaranteed to break your heart if you listen to it after finishing Danganronpa's Despair arc. - -[Etoile et Toi](https://www.youtube.com/watch?v=_sZ-qfttUCA&ab_channel=PainzerTensei) \- Now I'm not one to tear up over anime, but this one did it for me. Hits like a brick after finishing Kizumonogatari. - -[Ride on Shooting Star](https://www.youtube.com/watch?v=xCKtq_hANrw) \- Where my alternative rock fans at? The Pillows are an amazing band (and I'm secretly hoping they do the ED for the upcoming Chainsaw Man anime) - -[Akatsuki](https://www.youtube.com/watch?v=fypFcKiU7gQ&ab_channel=AyakashiSama) \- Starts off slow but has a very satisfying second half. - -EDIT: I completely overlooked it, listen to [Resuscicated Hope](https://www.youtube.com/watch?v=HyHx4oNGGOQ&ab_channel=AnimeAvisVideos) from Gosick!!! My favorite goth loli deserves some recognition!!";False;False;;;;1610321695;;False;{};gitaz7f;False;t3_kupcoh;False;False;t3_kupcoh;/r/anime/comments/kupcoh/best_ending_6_listen_to_salt_fourth_eliminations/gitaz7f/;1610365269;12;True;False;anime;t5_2qh22;;0;[]; -[];;;turbochargedautism;;;[];;;;text;t2_6ioblsnk;False;False;[];; ありませんがが!ばいいは。腹巻きはなのだけど伊達じゃ山派🏔生ラサなど抜けて原町別院町の駐車場は高速鉄道模型博物館美術館に関するぐらいいなくなってしまうところありますはおやすみ😘🌙⭐💤ばいい伊達じゃまた咲き誇れば写真🤳ですがないのました咲きます咲き誇りをかけたところありますはかけたところありますありがとうわかりましたありがとうございましたお時間あればあるほど嬉しい😂😂😂😂!( ͡° ͜ʖ ͡°)( ͡° ͜ʖ ͡°)( ͡° ͜ʖ ͡°)( ͡° ͜ʖ ͡°)( ͡° ͜ʖ ͡°)( ͡° ͜ʖ ͡°)( ͡° ͜ʖ ͡°)( ͡° ͜ʖ ͡°)( ͡° ͜ʖ ͡°)( ͡° ͜ʖ ͡°)( ͡° ͜ʖ ͡°);False;False;;;;1610321730;;False;{};gitb1su;True;t3_kuq0mq;False;True;t3_kuq0mq;/r/anime/comments/kuq0mq/ありませんががばいいは腹巻きはなのだけど伊達じゃ山派生ラサなど抜けて原町別院町の駐車場は高速鉄道模型/gitb1su/;1610365310;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;Legend of the Galactic Heroes technically two MCs and Yang is pretty morally principled but Reinhard is way more flexible.;False;False;;;;1610321772;;False;{};gitb4xn;False;t3_kunxad;False;False;t3_kunxad;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/gitb4xn/;1610365359;4;True;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;"- Bunny girl senpai - -- Nagi no Asu kara - -- Plastic Memories (maybe) - -- Your name (most people have watched it, but still) - -- Ishuukan friends - -- Inu x Boku SS (another maybe)";False;False;;;;1610321780;;False;{};gitb5ie;False;t3_kup7uv;False;True;t3_kup7uv;/r/anime/comments/kup7uv/hello_any_animes_with_the_romantic_elements_like/gitb5ie/;1610365368;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vindicare605;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aresendez88;light;text;t2_656ck;False;False;[];;I will keep voting for the [Real Folk Blues](https://www.youtube.com/watch?v=Q7-va0hr3aY) until it wins goddamnit!;False;False;;;;1610321974;;False;{};gitbk5h;False;t3_kupcoh;False;False;t3_kupcoh;/r/anime/comments/kupcoh/best_ending_6_listen_to_salt_fourth_eliminations/gitbk5h/;1610365598;15;True;False;anime;t5_2qh22;;0;[]; -[];;;13rahma;;;[];;;;text;t2_1wqu8d41;False;True;[];;Username checks out.;False;False;;;;1610322013;;False;{};gitbn4i;False;t3_kuq0mq;False;True;t3_kuq0mq;/r/anime/comments/kuq0mq/ありませんががばいいは腹巻きはなのだけど伊達じゃ山派生ラサなど抜けて原町別院町の駐車場は高速鉄道模型/gitbn4i/;1610365645;7;True;False;anime;t5_2qh22;;0;[]; -[];;;turbochargedautism;;;[];;;;text;t2_6ioblsnk;False;False;[];; ୟୋ ମୋ ଡିକ୍ ଠିକ୍ ଏକ ପିକ୍ ବିଚ୍ ପରି ମୁଁ ପିକ୍ ରିକ୍;False;False;;;;1610322047;;False;{};gitbpmg;True;t3_kuq0mq;False;True;t1_gitbn4i;/r/anime/comments/kuq0mq/ありませんががばいいは腹巻きはなのだけど伊達じゃ山派生ラサなど抜けて原町別院町の駐車場は高速鉄道模型/gitbpmg/;1610365684;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;turbochargedautism;;;[];;;;text;t2_6ioblsnk;False;False;[];; ୟୋ ମୋ ଡିକ୍ ଠିକ୍ ଏକ ପିକ୍ ବିଚ୍ ପରି ମୁଁ ପିକ୍ ରିକ୍;False;False;;;;1610322055;;False;{};gitbq7t;True;t3_kuq0mq;False;True;t3_kuq0mq;/r/anime/comments/kuq0mq/ありませんががばいいは腹巻きはなのだけど伊達じゃ山派生ラサなど抜けて原町別院町の駐車場は高速鉄道模型/gitbq7t/;1610365693;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;SunYeee;;;[];;;;text;t2_5ofnhuak;False;False;[];;"#Hentai is art - - - - - - - - - - - -*and good*";False;False;;;;1610322197;;False;{};gitc0l3;False;t3_kuporv;False;False;t3_kuporv;/r/anime/comments/kuporv/just_started_watching_monster_museme/gitc0l3/;1610365855;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;Yesn’t;False;False;;;;1610322198;;False;{};gitc0me;False;t3_kuq0mq;False;True;t3_kuq0mq;/r/anime/comments/kuq0mq/ありませんががばいいは腹巻きはなのだけど伊達じゃ山派生ラサなど抜けて原町別院町の駐車場は高速鉄道模型/gitc0me/;1610365857;1;True;False;anime;t5_2qh22;;0;[]; -[];;;infinite_lyy;;;[];;;;text;t2_9lftz77s;False;False;[];;"Gintama! Don't be put off by the comedy,, once the action starts, it's really one of the best out there 🤩 - -Katekyo Hitman Reborn!! - underrated battle shounen - -Bleach - has pretty awesome fights :) you can skip the fillers - -HxH and Demon Slayer are both pretty good tbh";False;False;;;;1610322245;;False;{};gitc41s;False;t3_kumzbf;False;True;t3_kumzbf;/r/anime/comments/kumzbf/looking_for_a_new_anime_to_watch/gitc41s/;1610365911;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610322259;moderator;False;{};gitc50t;False;t3_kuq6tw;False;True;t3_kuq6tw;/r/anime/comments/kuq6tw/please_help_me_find_this_anime/gitc50t/;1610365926;1;False;False;anime;t5_2qh22;;0;[]; -[];;;TheHaterDebater;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TheHaterDebater/animelist;light;text;t2_2k9yn2w5;False;False;[];;English teachers: Ahh yes, this tells a very deep and complex story!;False;False;;;;1610322269;;False;{};gitc5rt;False;t3_kuq0mq;False;True;t3_kuq0mq;/r/anime/comments/kuq0mq/ありませんががばいいは腹巻きはなのだけど伊達じゃ山派生ラサなど抜けて原町別院町の駐車場は高速鉄道模型/gitc5rt/;1610365938;2;True;False;anime;t5_2qh22;;0;[]; -[];;;turbochargedautism;;;[];;;;text;t2_6ioblsnk;False;False;[];;fantastic great jobs and the pencil;False;False;;;;1610322284;;False;{};gitc6v2;True;t3_kuq0mq;False;True;t1_gitc0me;/r/anime/comments/kuq0mq/ありませんががばいいは腹巻きはなのだけど伊達じゃ山派生ラサなど抜けて原町別院町の駐車場は高速鉄道模型/gitc6v2/;1610365955;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;Finally watched Cowboy Bebop this year, and this song was stuck in my head for months;False;False;;;;1610322457;;False;{};gitcjhm;False;t3_kupcoh;False;True;t1_gitbk5h;/r/anime/comments/kupcoh/best_ending_6_listen_to_salt_fourth_eliminations/gitcjhm/;1610366153;3;True;False;anime;t5_2qh22;;0;[]; -[];;;infinite_lyy;;;[];;;;text;t2_9lftz77s;False;False;[];;The manga has a completed story and it isn't too long, so why not :P the art is pretty and the anime only covers a little less than half the content;False;False;;;;1610322584;;False;{};gitct3n;False;t3_kukf0x;False;True;t3_kukf0x;/r/anime/comments/kukf0x/wolf_girl_and_black_prince/gitct3n/;1610366302;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MoonDragon72;;;[];;;;text;t2_82hwmqc3;False;False;[];;I have no idea who that guy is;False;False;;;;1610322634;;False;{};gitcwu9;False;t3_kukv89;False;False;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gitcwu9/;1610366361;31;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"Crunchyroll has fucked up not once, not twice, but THREE TIMES LAST YEAR and it seems like they're not slowing down this year! - -First the crappy webtoons, then this abomination of an “anime” if you could even call it that...";False;True;;comment score below threshold;;1610322720;;1610329300.0;{};gitd38g;False;t3_kukv89;False;False;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gitd38g/;1610366467;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610322736;;False;{};gitd4gx;False;t3_kuq6vr;False;False;t3_kuq6vr;/r/anime/comments/kuq6vr/why_does_everyone_suddenly_hate_crunchyroll/gitd4gx/;1610366486;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610322781;;False;{};gitd7qm;False;t3_kunxad;False;False;t3_kunxad;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/gitd7qm/;1610366539;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Imintoomanyfandoms12;;;[];;;;text;t2_74st6ic3;False;False;[];;I have prime video and I’m thinking about getting Netflix, any shows on there?;False;False;;;;1610322782;;False;{};gitd7te;True;t3_kupgdx;False;True;t1_git7n6o;/r/anime/comments/kupgdx/hello_i_am_new_here/gitd7te/;1610366540;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Elaxor;;;[];;;;text;t2_djk6f;False;False;[];;Fate/Zero;False;False;;;;1610322799;;False;{};gitd90u;False;t3_kunxad;False;False;t3_kunxad;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/gitd90u/;1610366559;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;Accelerator anyone?;False;False;;;;1610322895;;False;{};gitdg1w;False;t3_kunxad;False;True;t3_kunxad;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/gitdg1w/;1610366677;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Roketsu86;;;[];;;;text;t2_hwze9;False;False;[];;There's a difference between CR being on the committee (like with Shield Hero for example) and CR making an original anime (Ex-Arm). Also, Ex-Arm is really really bad, so there's that too.;False;False;;;;1610322914;;False;{};gitdhh2;False;t3_kuq6vr;False;False;t3_kuq6vr;/r/anime/comments/kuq6vr/why_does_everyone_suddenly_hate_crunchyroll/gitdhh2/;1610366700;14;True;False;anime;t5_2qh22;;0;[]; -[];;;gst4158;;;[];;;;text;t2_bcltr;False;False;[];;"Probably my favorite scene from the whole anime. The music in this show is so amazing and the [show OP](https://www.youtube.com/watch?v=0hgwUqC5_mM) is just packed with symbolism. - -Recently did a re-watch and, finished, and then went back and read manga start to finish. If they ever adapted the rest of the story, this could easily become a 10/10 show for me.";False;False;;;;1610322973;;False;{};gitdlsn;False;t3_kum3pa;False;False;t3_kum3pa;/r/anime/comments/kum3pa/yuu_slowly_falling_for_touko_bloom_into_you/gitdlsn/;1610366770;8;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;The first one that comes to mind is Vinland Saga. It also has Psycho Pass on there i believe which is also very good.;False;False;;;;1610322979;;False;{};gitdm9i;False;t3_kupgdx;False;False;t1_gitd7te;/r/anime/comments/kupgdx/hello_i_am_new_here/gitdm9i/;1610366777;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your comment has been removed. - -- Link shorteners aren't allowed across Reddit because of their scamming potential. Please use an unshortened link instead. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610323005;moderator;False;{};gitdo7a;False;t3_kupgdx;False;True;t1_git9yi6;/r/anime/comments/kupgdx/hello_i_am_new_here/gitdo7a/;1610366806;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GigaTomato;;;[];;;;text;t2_10gss5;False;False;[];;">God of Highschool - -Is not a Crunchyroll original.";False;True;;comment score below threshold;;1610323017;;False;{};gitdp49;False;t3_kukv89;False;True;t1_git8g9l;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gitdp49/;1610366819;-16;True;False;anime;t5_2qh22;;0;[]; -[];;;CT_BINO;;MAL;[];;https://myanimelist.net/profile/CT_BINO;dark;text;t2_pa5vv;False;False;[];;"> CR making an original anime (Ex-Arm) - -Ex-Arm is an adaptation of a manga btw.";False;False;;;;1610323025;;False;{};gitdprb;False;t3_kuq6vr;False;False;t1_gitdhh2;/r/anime/comments/kuq6vr/why_does_everyone_suddenly_hate_crunchyroll/gitdprb/;1610366830;9;True;False;anime;t5_2qh22;;0;[]; -[];;;erryky;;MAL;[];;https://myanimelist.net/profile/;dark;text;t2_rviqf;False;False;[];;Someone should make an edit of JK's Sukuna and Mahito laughing out of this.;False;False;;;;1610323066;;False;{};gitdsqh;False;t3_kukv89;False;False;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gitdsqh/;1610366878;7;True;False;anime;t5_2qh22;;0;[]; -[];;;sebosebosebo111;;;[];;;;text;t2_78en87a9;False;False;[];;"Monster - psychological thriller kinda like death note but realistic (in the sense no demons) and more in depth story - -97 Berserk - violence lots of violence - -Devilmancry baby - my personal favourite anime, a short 10 ep which is probably best described as a graphic mess that somehow isn’t a mess and it also combines like 10 genres into 1 it’s kind of nuts";False;False;;;;1610323090;;False;{};gitduhm;False;t3_kuoua4;False;True;t3_kuoua4;/r/anime/comments/kuoua4/any_recommendations_of_horror_scary_mistery_anime/gitduhm/;1610366907;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Davidsda;;;[];;;;text;t2_x7jiq;False;False;[];;">Might be like how steam has so many awful games on it's service, they just don't do enough filtration. - -There's a difference between allowing something on your store, and being involved in its production.";False;False;;;;1610323122;;False;{};gitdwxh;False;t3_kuq6vr;False;False;t3_kuq6vr;/r/anime/comments/kuq6vr/why_does_everyone_suddenly_hate_crunchyroll/gitdwxh/;1610366946;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Roketsu86;;;[];;;;text;t2_hwze9;False;False;[];;"Right, I meant that CR was producing it as a CR original instead of simply on the committee. Similar to how Netflix labels all anime they get as ""Netflix Original"" but really only something like Devilman Crybaby is actually a Netflix Original.";False;False;;;;1610323167;;False;{};gite085;False;t3_kuq6vr;False;False;t1_gitdprb;/r/anime/comments/kuq6vr/why_does_everyone_suddenly_hate_crunchyroll/gite085/;1610367000;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Radiant-Change-3223;;;[];;;;text;t2_8bmusc6l;False;False;[];;The only one I’ve seen is anohana which has a great opening, absolutely beautiful and catchy (even though i don’t know the lyrics);False;False;;;;1610323178;;False;{};gite11o;True;t3_kumeck;False;True;t1_gisp4xp;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/gite11o/;1610367014;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610323200;;False;{};gite2o6;False;t3_kuporv;False;True;t3_kuporv;/r/anime/comments/kuporv/just_started_watching_monster_museme/gite2o6/;1610367040;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"A lot of people ""hate"" Crunchyroll and Funimation, just go on YouTube and see how many clickbait videos people made about how they are destroying the industry. This is mostly because this type of arguments are very popular with people that have the resources but choose to pirate anime, makes them feel better because they are not supporting the bad guys and are right in pirating it. - -So all this hate for anything they do isn't unheard of - -That said they have a lot of control on this project, if the studio is not on the committee they are basically a contractor responsible for the animation and anything that involves. The production committee will be responsible for the rest, and also The budget is not important, its just a meme.";False;False;;;;1610323408;;False;{};gitehje;False;t3_kuq6vr;False;False;t3_kuq6vr;/r/anime/comments/kuq6vr/why_does_everyone_suddenly_hate_crunchyroll/gitehje/;1610367277;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;I really curious to know why, so please explain how that would happen;False;False;;;;1610323619;;False;{};gitewoq;False;t3_kuqk3x;False;True;t3_kuqk3x;/r/anime/comments/kuqk3x/goku_vs_issei_from_high_school_dxd/gitewoq/;1610367528;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PotatoKaboose;;;[];;;;text;t2_47iz2hsb;False;False;[];;"By extension, wouldn't people generally praise production committees whenever a show went right? Like I never see people saying ""Kadokawa really hit it out of the park with this one"", they generally reference the studio instead";False;False;;;;1610323662;;False;{};gitezqj;True;t3_kuq6vr;False;True;t1_gitdwxh;/r/anime/comments/kuq6vr/why_does_everyone_suddenly_hate_crunchyroll/gitezqj/;1610367576;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JustWolfram;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Wolfram-san;light;text;t2_mwn5b;False;False;[];;"Tokyo Ghoul and KnY aren't particularly any of the genres you're looking for, TG anime also has some pretty big continuity problems so you're better off reading the manga. - -You should check out Blood-C, especially if you like the more gorey stuff.";False;False;;;;1610323671;;False;{};gitf0db;False;t3_kuoua4;False;True;t3_kuoua4;/r/anime/comments/kuoua4/any_recommendations_of_horror_scary_mistery_anime/gitf0db/;1610367587;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PotatoKaboose;;;[];;;;text;t2_47iz2hsb;False;False;[];;"But doesn't CR label a ton of stuff ""crunchyroll original""s, like Dr. Stone had that pop up before every episode and Crunchyroll isn't even listed on MAL";False;False;;;;1610323746;;False;{};gitf5um;True;t3_kuq6vr;False;False;t1_gite085;/r/anime/comments/kuq6vr/why_does_everyone_suddenly_hate_crunchyroll/gitf5um/;1610367677;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;Room Camp, which I believe is the English title they gave to Heya Camp, are just short episodes that came out between the first two seasons of Yuru Camp (Laid Back Camp).;False;False;;;;1610323775;;False;{};gitf7xh;False;t3_kuqn3y;False;True;t3_kuqn3y;/r/anime/comments/kuqn3y/room_camp_and_laid_back_camp/gitf7xh/;1610367711;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bouncy_mp4;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/bouncy_mp4;dark;text;t2_29ip2gcb;False;False;[];;“PLOT”;False;False;;;;1610323813;;False;{};gitfao4;False;t3_kuqk3x;False;True;t1_gitewoq;/r/anime/comments/kuqk3x/goku_vs_issei_from_high_school_dxd/gitfao4/;1610367757;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Roketsu86;;;[];;;;text;t2_hwze9;False;False;[];;Exactly, they label anything they're on the committee for as a CR Original, but they are directly producing Ex-Arm and not just a committee member. That was my point.;False;False;;;;1610323818;;False;{};gitfb28;False;t3_kuq6vr;False;False;t1_gitf5um;/r/anime/comments/kuq6vr/why_does_everyone_suddenly_hate_crunchyroll/gitfb28/;1610367763;9;True;False;anime;t5_2qh22;;0;[]; -[];;;ZomZike;;;[];;;;text;t2_9mfxiz8t;False;False;[];;That's where you wrong kiddo,we already hate crunchy originals ages ago;False;False;;;;1610323838;;False;{};gitfcgp;False;t3_kuq6vr;False;False;t3_kuq6vr;/r/anime/comments/kuq6vr/why_does_everyone_suddenly_hate_crunchyroll/gitfcgp/;1610367788;3;True;False;anime;t5_2qh22;;0;[]; -[];;;tenkensmile;;;[];;;dark;text;t2_j0mmc;False;False;[];;"Fate/Zero - -Hellsing Ultimate - -Legend of Galactic Heroes";False;False;;;;1610323985;;False;{};gitfncj;False;t3_kunxad;False;False;t3_kunxad;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/gitfncj/;1610367969;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Sodra;;MAL a-amq;[];;https://myanimelist.net/profile/sodra;dark;text;t2_5o34w;False;False;[];;[AniDB](https://anidb.net/) and [Anime News Network](https://www.animenewsnetwork.com/encyclopedia/) have extensive staff listings;False;False;;;;1610324055;;False;{};gitfskn;False;t3_kuqobz;False;False;t3_kuqobz;/r/anime/comments/kuqobz/websites_related_to_the_animation_industry_who/gitfskn/;1610368054;7;True;False;anime;t5_2qh22;;0;[]; -[];;;mrv3;;;[];;;;text;t2_fe649;False;True;[];;"I dislike funimation because the service sucks in the most basic ways imaginable like bad subtitles, skipping issues, etc. - -If piracy offers a better experience, price aside, then that's really bad. - -I have pirated a Netflix show, BNA because Netflix jail and Hellsing ultimate (audio sync problems) - -I a few months before cancelling funimation pirated every show I watched on funi, the service became a way for me to watch the first episode before deciding to download the series. - -How ridiculous is that? That the funi service is so bad I pirated shows I had legal and ideally easy access to.";False;False;;;;1610324098;;1610324578.0;{};gitfvoe;False;t3_kuq6vr;False;True;t1_gitehje;/r/anime/comments/kuq6vr/why_does_everyone_suddenly_hate_crunchyroll/gitfvoe/;1610368105;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;HopeIsOver;;;[];;;;text;t2_3wcsusnw;False;False;[];;i watched first season but it was a bit too much for me;False;False;;;;1610324108;;False;{};gitfwhq;True;t3_kuno7f;False;True;t1_git5qlb;/r/anime/comments/kuno7f/give_me_some_emotional_and_action_based_anime/gitfwhq/;1610368118;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Radiant-Change-3223;;;[];;;;text;t2_8bmusc6l;False;False;[];;Those all have amazing endings, I personally have to say that jujutsu kaisen has the best ending in this instance because the art and the music blend in to make a amazing ending;False;False;;;;1610324144;;False;{};gitfz0i;True;t3_kumeck;False;True;t1_gisvrei;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/gitfz0i/;1610368159;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VegetaShouldBeBetter;;;[];;;;text;t2_6oen3rmx;False;False;[];;Because the average person (like me) never even watched that show lol so by default Goku wins;False;False;;;;1610324203;;False;{};gitg3kj;False;t3_kuqk3x;False;True;t3_kuqk3x;/r/anime/comments/kuqk3x/goku_vs_issei_from_high_school_dxd/gitg3kj/;1610368231;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Wex_Pyke;;;[];;;;text;t2_3n1e7ki7;False;False;[];;Yes, because the Japanese never released any bad anime with bad CGI ever.;False;False;;;;1610324210;;False;{};gitg415;False;t3_kukv89;False;False;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gitg415/;1610368238;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Arksbaum;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Arksbaum;dark;text;t2_4uziz4s;False;False;[];;Wakfu;False;False;;;;1610324216;;False;{};gitg4h1;False;t3_kuq6tw;False;False;t3_kuq6tw;/r/anime/comments/kuq6tw/please_help_me_find_this_anime/gitg4h1/;1610368245;4;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;Ride on a Shooting Star needs to win one of these contests. It sucks that only one song can win per year, and every year it doesn't win, the chances of it winning in the future decreases because more songs get added;False;False;;;;1610324355;;False;{};gitgery;False;t3_kupcoh;False;False;t1_gitaz7f;/r/anime/comments/kupcoh/best_ending_6_listen_to_salt_fourth_eliminations/gitgery/;1610368419;5;True;False;anime;t5_2qh22;;0;[]; -[];;;-ImPerium;;;[];;;;text;t2_44cdu51d;False;False;[];;Thanks!;False;False;;;;1610324439;;False;{};gitgktv;True;t3_kuqobz;False;True;t1_gitfskn;/r/anime/comments/kuqobz/websites_related_to_the_animation_industry_who/gitgktv/;1610368523;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KawaiiMajinken;;;[];;;;text;t2_102m81;False;False;[];;There's only so much you can do with just good CGI.;False;True;;comment score below threshold;;1610324464;;False;{};gitgmn5;False;t3_kukv89;False;True;t1_gisy7kz;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gitgmn5/;1610368553;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;Radiant-Change-3223;;;[];;;;text;t2_8bmusc6l;False;False;[];;Those are all great, the 2 of my favorites are jujutsu kaisen’s lost in paradise and cowboy bebop’s real folk blues;False;False;;;;1610324721;;False;{};gith5nl;True;t3_kumeck;False;True;t1_gisrpnd;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/gith5nl/;1610368884;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hitogomi911;;;[];;;;text;t2_83ec5qv5;False;False;[];;"[DXD](/s "" Issei can increase his power by 2 exponentially indefinitely. 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024 and so on. As long his body hold it."") Have only seen the first season so don't know of any power ups he got after that.";False;False;;;;1610324795;;1610325604.0;{};githb16;False;t3_kuqk3x;False;True;t1_gitewoq;/r/anime/comments/kuqk3x/goku_vs_issei_from_high_school_dxd/githb16/;1610368977;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Radiant-Change-3223;;;[];;;;text;t2_8bmusc6l;False;False;[];;Attack on titan’s music is always banger and shock is no exception, shock is a great song and it leaves you feeling hyped for what’s happening next.;False;False;;;;1610324848;;False;{};githeqs;True;t3_kumeck;False;True;t1_giss1yb;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/githeqs/;1610369040;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_Pinguino_;;skip7;[];;;dark;text;t2_8rggs9k7;False;False;[];;"https://wiki.seesaa.jp/ - -https://w.atwiki.jp/sakuga/";False;False;;;;1610324991;;False;{};githp2y;False;t3_kuqobz;False;True;t3_kuqobz;/r/anime/comments/kuqobz/websites_related_to_the_animation_industry_who/githp2y/;1610369215;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gty567fr;;;[];;;;text;t2_5xkqe0q3;False;False;[];;So issei has the ability to half his opponents power each second while simultaneously double his own so let's say he has a power level of 2 after just 60 seconds his power becomes 2^60 so his power will exponentially grow where as goku power will decrease significantly to begin with and continue to decrease therefore issei should be able to win easily.;False;False;;;;1610325041;;False;{};githstd;True;t3_kuqk3x;False;True;t1_gitewoq;/r/anime/comments/kuqk3x/goku_vs_issei_from_high_school_dxd/githstd/;1610369290;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Retromorpher;;;[];;;;text;t2_3x42wxsp;False;False;[];;They had exclusive rights to stream it and were on the production committee. That's what being under the 'Crunchyroll Original' umbrella means in this case. It's the same way that Netflix stamps its name on things it put the lion's share of funding money into - in spite of them being adaptations of existing work. No one is saying that GoH is a completely original animated only work.;False;False;;;;1610325060;;False;{};githu5t;False;t3_kukv89;False;False;t1_gitdp49;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/githu5t/;1610369313;9;True;False;anime;t5_2qh22;;0;[]; -[];;;rlramirez12;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Sailanarmo;light;text;t2_fo8fw;False;False;[];;"No, there isn't decent romance in it at all. This is a harem anime where a dude legitimately tries to manage his harem. One is a Yandere girl who is always trying to kill him, but for plot reasons, he cannot die. - -The show is mainly about comedy and the comedy is really bad or stupid. I did enjoy watching the show but the same jokes got used a ton. I wouldn't rewatch the show at all but it was a little entertaining.";False;False;;;;1610325087;;False;{};githw3j;False;t3_kupb0s;False;True;t3_kupb0s;/r/anime/comments/kupb0s/is_love_tyrant_worth_a_watch/githw3j/;1610369346;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;Seems like a mix? I've seen 2D and 3D characters together though, which is...odd.;False;False;;;;1610325117;;False;{};githyb8;False;t3_kukv89;False;True;t1_giss1jc;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/githyb8/;1610369385;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"BOOOSTO! Of course I know about it, I'm a big fan - -Still don't make sense at all, and I am looking forward for the op explanation";False;False;;;;1610325148;;False;{};giti0b5;False;t3_kuqk3x;False;True;t1_githb16;/r/anime/comments/kuqk3x/goku_vs_issei_from_high_school_dxd/giti0b5/;1610369421;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;"It is a Crunchyroll original. It's listed under their ""originals"" page.";False;False;;;;1610325198;;False;{};giti45h;False;t3_kukv89;False;False;t1_gitdp49;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giti45h/;1610369492;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Just to be clear you are assuming Ultra Instinct Goku fighting seriously at full power like the universe depends on Issei's defeat?;False;False;;;;1610325424;;False;{};gitikk5;False;t3_kuqk3x;False;True;t1_githstd;/r/anime/comments/kuqk3x/goku_vs_issei_from_high_school_dxd/gitikk5/;1610369791;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KiritosSideHoe;;;[];;;;text;t2_3w11iqv5;False;False;[];;I think this fight depends entirely on Goku's attitude and how much he knows. Goku can fly at Issei and beat him up in less than a second if he goes all out and is aware of what his opponent's power is, therefore basically negating it. But Goku is known for playing around at a low power level for a few minutes first to gauge his opponents, in which case Issei wins if he applies the debuff during that period. So like I said, depends on what Goku does.;False;False;;;;1610325448;;False;{};gitimak;False;t3_kuqk3x;False;True;t1_githstd;/r/anime/comments/kuqk3x/goku_vs_issei_from_high_school_dxd/gitimak/;1610369821;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MahTheMeatloaf_;;;[];;;;text;t2_6yys3kok;False;False;[];;I agree. I usually skip the op and ed on later episodes of shows, but I still watch the entire thing with JJK. It’s just so good, such a vibe. Haha;False;False;;;;1610325513;;False;{};gitir0d;False;t3_kumeck;False;True;t1_gitfz0i;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/gitir0d/;1610369906;2;True;False;anime;t5_2qh22;;0;[]; -[];;;UzEE;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/UzEEInc;light;text;t2_45t2z;False;False;[];;"Simping for [""**Song Played by the Stars**"" \(Steins;Gate 0 Spoilers\)](https://animethemes.moe/video/SteinsGateZero-ED4.webm) (Hoshi no Kanaderu Uta) today. It's not a visual spectacle but it just fits the mood at the time and the vocal performance by Kana Hanazawa and Megumi Han is great. Not to mention how important the song and lyrics are for the theme of the show.";False;False;;;;1610325675;;False;{};gitj35w;False;t3_kupcoh;False;True;t3_kupcoh;/r/anime/comments/kupcoh/best_ending_6_listen_to_salt_fourth_eliminations/gitj35w/;1610370126;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Radiant-Change-3223;;;[];;;;text;t2_8bmusc6l;False;False;[];;Those are all great endings, the one that’s my favorite is hxh, now that you mentioned it I want to talk about how misleading school live is, it looks like a slice of life but then we go to zombies.;False;False;;;;1610325692;;False;{};gitj4eq;True;t3_kumeck;False;True;t1_giswccj;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/gitj4eq/;1610370148;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Retromorpher;;;[];;;;text;t2_3x42wxsp;False;False;[];;"[Star Overhead](https://files.catbox.moe/su5cfz.webm) is worth a look for cool stop motion. - -[Wasa Wasa Wasa](https://files.catbox.moe/5ui88z.webm) Is an absolute banger with great stop motion. - -[Kokoro](https://files.catbox.moe/3b3kwn.webm) is a really mellow piece, that's pretty lacking in animation but has some good vibes. Definitely more of a personal favorite than a must see. - -[Shadow Monster](https://files.catbox.moe/q09tjy.webm) This one stands no chance - as no one watched Gurazeni - but it has rollercoasters and old men breakdancing!";False;False;;;;1610325707;;1610327018.0;{};gitj5i3;False;t3_kupcoh;False;True;t1_git9jrv;/r/anime/comments/kupcoh/best_ending_6_listen_to_salt_fourth_eliminations/gitj5i3/;1610370167;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dont--panic;;;[];;;;text;t2_7lr8z;False;False;[];;"I've only read the LN but according to people who have read both the manga focuses on Kumoko's parts and skips the human parts while the LN is roughly 50/50. The manga is probably going to have to cover the human parts eventually but it hasn't gotten far enough for readers to need to know what happens in the skipped chapters. - -The anime appears to be covering at least some of the human scenes so if you want to keep ahead of it you should read the novel instead of the manga, or read both.";False;False;;;;1610325817;;False;{};gitjdnf;False;t3_kukruw;False;False;t1_gisguvq;/r/anime/comments/kukruw/so_what_im_a_spider/gitjdnf/;1610370310;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hitogomi911;;;[];;;;text;t2_83ec5qv5;False;False;[];;Goku can do a similar thing, increase his power indefinitely. So doubt Issei can beat him. Goku should have enough power to destroy big planets by the end of DBZ. Im assuming this on that Frieza can destroy planets in her base form.;False;False;;;;1610325820;;False;{};gitjdup;False;t3_kuqk3x;False;True;t1_giti0b5;/r/anime/comments/kuqk3x/goku_vs_issei_from_high_school_dxd/gitjdup/;1610370313;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeowlite;;;[];;;;text;t2_xyzpq;False;False;[];;Goku have fought enemy that almost have similar power...that goatman moro in the manga are worst than Issei in my opinion since he just take all the power in one move...guess what? ...goku beat him;False;False;;;;1610325916;;False;{};gitjl1o;False;t3_kuqk3x;False;True;t1_githstd;/r/anime/comments/kuqk3x/goku_vs_issei_from_high_school_dxd/gitjl1o/;1610370452;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cire101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cire101;light;text;t2_oryv2;False;False;[];;Well that's obvious with all their original content. They don't care what their users want, which one could argue is okay in art but not when your service is anime and this is the product they release.;False;False;;;;1610325955;;False;{};gitjnz3;False;t3_kukv89;False;True;t1_gisqwo1;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gitjnz3/;1610370502;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JUSTpleaseSTOP;;;[];;;;text;t2_jyrli;False;False;[];;Hello, yours is the only comment that even...mentions it at all? This comment section is supportive overall.;False;False;;;;1610326181;;False;{};gitk4m7;False;t3_kum3pa;False;False;t1_giso5a2;/r/anime/comments/kum3pa/yuu_slowly_falling_for_touko_bloom_into_you/gitk4m7/;1610370788;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Admirable-Web-3192;;;[];;;;text;t2_8twmgjot;False;False;[];;I thought Tonikawa was fantastic.;False;False;;;;1610326266;;False;{};gitkb51;False;t3_kukv89;False;False;t1_git8g9l;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gitkb51/;1610370904;15;False;False;anime;t5_2qh22;;0;[]; -[];;;rattpack18;;;[];;;;text;t2_2uahjdtr;False;False;[];;That’s a good one. Probably anime of the year for 2020.;False;False;;;;1610326305;;False;{};gitke5t;False;t3_kur9gl;False;True;t3_kur9gl;/r/anime/comments/kur9gl/i_just_started_watching_this_anime_called_haikyuu/gitke5t/;1610370956;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;enfrozt;;;[];;;;text;t2_5718w;False;True;[];;"A lot of crunchy roll originals are great, and a lot aren't. Netflix is similar, any streaming service that does originals is similar. Hit or miss. - -Just ignore the negative nancies. There's a lot of elitism in the anime community, can't help it.";False;False;;;;1610326305;;False;{};gitke6y;False;t3_kuq6vr;False;True;t3_kuq6vr;/r/anime/comments/kuq6vr/why_does_everyone_suddenly_hate_crunchyroll/gitke6y/;1610370957;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Admirable-Web-3192;;;[];;;;text;t2_8twmgjot;False;False;[];;"OG doesn't mean original. It stands for Original Gangster. Meant to disignate something as cool, old-school, etc. So I'm not sure that fits here. - -Also have no idea who this person is. They aren't verified. The trailer for this show looks bad but not a person's opinion I care about";False;True;;comment score below threshold;;1610326389;;False;{};gitkkjl;False;t3_kukv89;False;True;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gitkkjl/;1610371067;-28;False;False;anime;t5_2qh22;;0;[]; -[];;;spokesthebrony;;;[];;;;text;t2_6uo3t;False;False;[];;"It has great synergy between 3D models and 2D animation effects. But that is predominantly what is keeping me watching, because the characters are kinda 1-dimensional (lol), pacing is weird, and some of their comedy elements fall flat for me because I can't tell if they're trying to be funny or padding the runtime to reach broadcast length. - -Do check out the episode threads, though, the clips are good.";False;False;;;;1610326393;;False;{};gitkktz;False;t3_kukv89;False;True;t1_git4k0s;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gitkktz/;1610371072;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610326495;moderator;False;{};gitks27;False;t3_kurhzx;False;True;t3_kurhzx;/r/anime/comments/kurhzx/redo_of_healer_cultured_version/gitks27/;1610371199;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;The majority of streaming services don't have CC for English dubs, so of course it wouldn't match, the sub is referring to the Japanese version;False;False;;;;1610326603;;False;{};gitkzys;False;t3_kur9gl;False;True;t3_kur9gl;/r/anime/comments/kur9gl/i_just_started_watching_this_anime_called_haikyuu/gitkzys/;1610371350;1;True;False;anime;t5_2qh22;;0;[]; -[];;;keithohara;;;[];;;;text;t2_gbzf7q;False;True;[];;The episode ain't out yet man;False;False;;;;1610326693;;False;{};gitl6ak;False;t3_kurhzx;False;True;t3_kurhzx;/r/anime/comments/kurhzx/redo_of_healer_cultured_version/gitl6ak/;1610371490;4;True;False;anime;t5_2qh22;;0;[]; -[];;;theanimegamer-___-;;;[];;;dark;text;t2_3vm3lj8d;False;False;[];;Seven Deadly Sins got competition;False;False;;;;1610326739;;False;{};gitl9l6;False;t3_kukv89;False;True;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gitl9l6/;1610371548;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PeterGriffenttv;;;[];;;;text;t2_5gvxyq1r;False;False;[];;I know, but.... I need to know where so that I can go to it when it comes out, yes I am lonely thank you;False;False;;;;1610326745;;False;{};gitla00;True;t3_kurhzx;False;True;t1_gitl6ak;/r/anime/comments/kurhzx/redo_of_healer_cultured_version/gitla00/;1610371555;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;Yeah Funimation is probably the worst streaming service I actively use. It almost made me just start pirating anything on Funimation only;False;False;;;;1610326776;;False;{};gitlc7o;False;t3_kuq6vr;False;True;t1_gitfvoe;/r/anime/comments/kuq6vr/why_does_everyone_suddenly_hate_crunchyroll/gitlc7o/;1610371598;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PrinceKazeKage;;;[];;;;text;t2_vqki37;False;False;[];;Thanks I appreciate you;False;False;;;;1610326835;;False;{};gitlg6w;True;t3_kukruw;False;True;t1_gitjdnf;/r/anime/comments/kukruw/so_what_im_a_spider/gitlg6w/;1610371673;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610326853;;False;{};gitlhgn;False;t3_kuporv;False;True;t3_kuporv;/r/anime/comments/kuporv/just_started_watching_monster_museme/gitlhgn/;1610371696;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mrv3;;;[];;;;text;t2_fe649;False;True;[];;"It's mind boggingly stupidly bad. Like it requires deliberation to make it that bad. - -Piracy sites with no income, operating outside the law, potentially made with non-qualified coders are better. - -Netflix is the bar services should aim for, stability should be the minimum requirement, and basic functionality a no brainer. - -Funimation fails at all three. The app doesn't expose content well, it crashes and is rife with bugs and missed come key features.";False;False;;;;1610326909;;False;{};gitllcw;False;t3_kuq6vr;False;True;t1_gitlc7o;/r/anime/comments/kuq6vr/why_does_everyone_suddenly_hate_crunchyroll/gitllcw/;1610371781;1;True;False;anime;t5_2qh22;;0;[]; -[];;;melcarba;;;[];;;;text;t2_ywnzr;False;False;[];;Dr. Stone isn't a CR co-production.;False;False;;;;1610326963;;False;{};gitlp14;False;t3_kuq6vr;False;True;t1_gitf5um;/r/anime/comments/kuq6vr/why_does_everyone_suddenly_hate_crunchyroll/gitlp14/;1610371850;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mitosis;;;[];;;;text;t2_4ck3g;False;False;[];;"Tonikawa too, which was very well regarded. - -Acting like this show is indicative of the Crunchyroll name is ridiculous. If anything, it's saying the Crunchyroll name means nothing -- the show could be anything from awful to great.";False;False;;;;1610327178;;False;{};gitm3pv;False;t3_kukv89;False;False;t1_gisvxf7;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gitm3pv/;1610372147;54;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Yuru camp or Quints, you should ask this next week, there's still a lot of shows to air;False;False;;;;1610327191;;False;{};gitm4oe;False;t3_kurlsw;False;True;t3_kurlsw;/r/anime/comments/kurlsw/with_the_first_week_of_the_winter_season/gitm4oe/;1610372163;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Playful_Soup;;;[];;;;text;t2_9oi8v2ho;False;False;[];;"No, I do not recommend getting an anime profile picture of any kind. - -If you do decide to get one, you will be considered very cringe. - -It is not my words. It is widely agreed that if you have one you are a cringe person.";False;False;;;;1610327219;;False;{};gitm6je;False;t3_kurnax;False;True;t3_kurnax;/r/anime/comments/kurnax/zetsu_from_naruto_shippuden_profile_picture/gitm6je/;1610372197;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Regit_Jo;;;[];;;;text;t2_l66lgfd;False;False;[];;can someone drop that Demo D pasta;False;False;;;;1610327346;;False;{};gitmf65;False;t3_kum3pa;False;False;t3_kum3pa;/r/anime/comments/kum3pa/yuu_slowly_falling_for_touko_bloom_into_you/gitmf65/;1610372347;0;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your comment has been removed. - -- Direction toward specific sources of pirated content of any type is not allowed. This includes links to unofficial scanlations, streams, uploads, and download sources of any copyrighted content. It also includes direction towards specific sites offering this type of content, and watermarks mentioning such sites in uploaded images/videos. - - Discussion of piracy in general is allowed, **but naming, linking to, or hinting towards specific sources is not. Offering to send links via PM is also not allowed.** For more details, see our [full rules on illegal content](https://www.reddit.com/r/anime/wiki/rules#wiki_do_not_link_to_illegal_content). - - - -- Very NSFW content (""not safe for work,"" e.g. female nipples, genitals of either gender, heavily implied sexual content, sexual contact between two characters) isn't allowed. Female nipples from episode screenshots, manga panels, or uncensored art is allowed in comments, but only if it's relevant to the discussion and called out as NSFW. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610327360;moderator;False;{};gitmg6f;False;t3_kuporv;False;True;t1_gitlhgn;/r/anime/comments/kuporv/just_started_watching_monster_museme/gitmg6f/;1610372364;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mountebank;;MAL;[];;http://myanimelist.net/profile/Mountebank;dark;text;t2_4r1ew;False;False;[];;That's why they should let Ryu Ga Gotoku studio make the next Sonic game like they've asked to.;False;False;;;;1610327391;;False;{};gitmidx;False;t3_kukv89;False;False;t1_giszu5u;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gitmidx/;1610372404;21;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610327506;moderator;False;{};gitmqbg;False;t3_kurt0x;False;True;t3_kurt0x;/r/anime/comments/kurt0x/help_me_with_lupin_the_3rd_and_ill_give_you_a/gitmqbg/;1610372550;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610327544;moderator;False;{};gitmsuz;False;t3_kurtf5;False;True;t3_kurtf5;/r/anime/comments/kurtf5/when_is_it_best_to_watch_my_hero_fist_movie/gitmsuz/;1610372596;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi ajanithewise, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610327605;moderator;False;{};gitmwy9;False;t3_kuru1v;False;True;t3_kuru1v;/r/anime/comments/kuru1v/weird_request_does_anyone_have_any/gitmwy9/;1610372668;1;False;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;"Crunchyroll should have all five of the main ""Parts"" of the series. You can pick any of them to start off with, everything is pretty episodic.";False;False;;;;1610327608;;False;{};gitmx6c;False;t3_kurt0x;False;False;t3_kurt0x;/r/anime/comments/kurt0x/help_me_with_lupin_the_3rd_and_ill_give_you_a/gitmx6c/;1610372672;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610327622;moderator;False;{};gitmy7d;False;t3_kuru8e;False;True;t3_kuru8e;/r/anime/comments/kuru8e/5_days_ago_i_returned_to_anime_but_with_rule_to/gitmy7d/;1610372690;0;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Comrade_Jelonov, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610327623;moderator;False;{};gitmy8r;False;t3_kuru8e;False;True;t3_kuru8e;/r/anime/comments/kuru8e/5_days_ago_i_returned_to_anime_but_with_rule_to/gitmy8r/;1610372690;0;False;False;anime;t5_2qh22;;0;[]; -[];;;Strickout;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Strickout?status=2;light;text;t2_1szolp7k;False;False;[];;"Only thing from the new season I've watched so far is *Suppose a Kid from the Last Dungeon Boonies Moved to a Starter Town* - -It's pretty good, but it's also a generic OP MC Fantasy so maybe not for everyone";False;False;;;;1610327645;;False;{};gitmzrt;False;t3_kurlsw;False;True;t3_kurlsw;/r/anime/comments/kurlsw/with_the_first_week_of_the_winter_season/gitmzrt/;1610372726;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BTGz;;;[];;;;text;t2_bctmn;False;False;[];;"Rent a Girlfriend - -Highschool DxD - -Highschool of the Dead";False;False;;;;1610327683;;False;{};gitn2cp;False;t3_kuru8e;False;True;t3_kuru8e;/r/anime/comments/kuru8e/5_days_ago_i_returned_to_anime_but_with_rule_to/gitn2cp/;1610372772;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Pudding_Upstairs, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610327715;moderator;False;{};gitn4jl;False;t3_kurv8p;False;False;t3_kurv8p;/r/anime/comments/kurv8p/need_an_anime_to_watch_please/gitn4jl/;1610372814;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Bryrtaya;;;[];;;;text;t2_3qll8zbm;False;False;[];;Food wars, other worldly restaurant.;False;False;;;;1610327725;;False;{};gitn576;False;t3_kuru1v;False;True;t3_kuru1v;/r/anime/comments/kuru1v/weird_request_does_anyone_have_any/gitn576/;1610372825;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Monogatari Series (Starts with Bakemonogatari);False;False;;;;1610327728;;False;{};gitn5d4;False;t3_kuru8e;False;True;t3_kuru8e;/r/anime/comments/kuru8e/5_days_ago_i_returned_to_anime_but_with_rule_to/gitn5d4/;1610372828;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Food wars is the obvious one, but I assume you already watched that;False;False;;;;1610327758;;False;{};gitn7fm;False;t3_kuru1v;False;True;t3_kuru1v;/r/anime/comments/kuru1v/weird_request_does_anyone_have_any/gitn7fm/;1610372865;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RockStarZero23;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Animeniac;light;text;t2_42anxyev;False;False;[];;"There is a lot of them online. Just type ""anime title"" then ""watch online"" should pop up a bunch of sites.";False;False;;;;1610327783;;False;{};gitn94a;False;t3_kurt0x;False;True;t3_kurt0x;/r/anime/comments/kurt0x/help_me_with_lupin_the_3rd_and_ill_give_you_a/gitn94a/;1610372896;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;Oregairu;False;False;;;;1610327791;;False;{};gitn9mj;False;t3_kurv8p;False;True;t3_kurv8p;/r/anime/comments/kurv8p/need_an_anime_to_watch_please/gitn9mj/;1610372905;2;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;Spirited Away has some great looking food scenes and is from the same studio that made From Up on Poppy Hill.;False;False;;;;1610327799;;False;{};gitna71;False;t3_kuru1v;False;True;t3_kuru1v;/r/anime/comments/kuru1v/weird_request_does_anyone_have_any/gitna71/;1610372914;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;"I would recommend watching the first movie after episode 20 of season 3. - -You should watch the second movie after you finish the series although it will have a tiny bit of season 5 spoilers";False;False;;;;1610327822;;False;{};gitnbqi;False;t3_kurtf5;False;False;t3_kurtf5;/r/anime/comments/kurtf5/when_is_it_best_to_watch_my_hero_fist_movie/gitnbqi/;1610372943;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Doublethree1;;;[];;;;text;t2_hsmbd;False;False;[];;Gourmet Girl Graffiti;False;False;;;;1610327835;;False;{};gitncs6;False;t3_kuru1v;False;True;t3_kuru1v;/r/anime/comments/kuru1v/weird_request_does_anyone_have_any/gitncs6/;1610372961;2;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;Quintessential Quintuplets;False;False;;;;1610327851;;False;{};gitne2h;False;t3_kuru8e;False;True;t3_kuru8e;/r/anime/comments/kuru8e/5_days_ago_i_returned_to_anime_but_with_rule_to/gitne2h/;1610372982;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PleaseDoMeTheLearn;;;[];;;;text;t2_80e97qi1;False;False;[];;ReLIFE;False;False;;;;1610327859;;False;{};gitneqw;False;t3_kurv8p;False;True;t3_kurv8p;/r/anime/comments/kurv8p/need_an_anime_to_watch_please/gitneqw/;1610372995;1;True;False;anime;t5_2qh22;;0;[]; -[];;;panosk1304;;;[];;;;text;t2_19qvhtzg;False;False;[];;Hating on the horrible anime streaming services that exist aint something new. Almost no streaming service has something original and just say that cause they get licence to stream it but when something like Ex arm comes out people see how waste their money is. If somebody makes a k.....anime with a good player then yeah that a service that deserves money and if they don't have dubs to have lower subscription even better.;False;False;;;;1610327863;;False;{};gitnf2f;False;t3_kuq6vr;False;True;t3_kuq6vr;/r/anime/comments/kuq6vr/why_does_everyone_suddenly_hate_crunchyroll/gitnf2f/;1610373000;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dan298;;;[];;;;text;t2_m6y45;False;False;[];;Classroom of the Elite. It takes a bit to realize but the MC is a really interesting character.;False;False;;;;1610327863;;False;{};gitnf2l;False;t3_kunxad;False;False;t3_kunxad;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/gitnf2l/;1610373000;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Rebith;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Rebbith;light;text;t2_r3rnph6;False;False;[];;Watched and read it sorry;False;False;;;;1610327889;;False;{};gitnh92;True;t3_kunxad;False;False;t1_gitnf2l;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/gitnh92/;1610373037;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KendotsX;;;[];;;;text;t2_j6nbtko;False;False;[];;Lupin III is mostly episodic, so you can start anywhere. Crunchyroll has the fourth and fifth seasons.;False;False;;;;1610327924;;False;{};gitnk16;False;t3_kurt0x;False;True;t3_kurt0x;/r/anime/comments/kurt0x/help_me_with_lupin_the_3rd_and_ill_give_you_a/gitnk16/;1610373084;2;True;False;anime;t5_2qh22;;0;[]; -[];;;melcarba;;;[];;;;text;t2_ywnzr;False;False;[];;A show is good because the people actually working on it made it good. A show went bad because the higher-ups fucked up somewhere in the decision making process while the people actually working on it tries their best to salvage the production. There might be some nuances but this is generally the gist of it.;False;False;;;;1610327952;;False;{};gitnm9q;False;t3_kuq6vr;False;False;t1_gitezqj;/r/anime/comments/kuq6vr/why_does_everyone_suddenly_hate_crunchyroll/gitnm9q/;1610373124;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Denzel_Potato09;;;[];;;;text;t2_5upv9a99;False;False;[];;"Just Because! - -Tsuki ga Kirei - -Skilled Teaser Takagi-San - -The Pet Girl of Sakurasou";False;False;;;;1610327994;;False;{};gitnpet;False;t3_kurv8p;False;True;t3_kurv8p;/r/anime/comments/kurv8p/need_an_anime_to_watch_please/gitnpet/;1610373181;2;True;False;anime;t5_2qh22;;0;[]; -[];;;baquea;;;[];;;;text;t2_j3k0u;False;True;[];;As far as I can tell, the fully uncensored version will only be available on AT-X (and presumably BD, once they're released), so piracy would be your only choice if you don't live in Japan. Sounds like a partially(?) uncensored version will be available on streaming sites though, but you'd have to wait until it actually airs to know what the difference is.;False;False;;;;1610327997;;False;{};gitnpoh;False;t3_kurhzx;False;True;t3_kurhzx;/r/anime/comments/kurhzx/redo_of_healer_cultured_version/gitnpoh/;1610373185;3;True;False;anime;t5_2qh22;;0;[]; -[];;;k4r6000;;;[];;;;text;t2_3q0qar7q;False;False;[];;They are there, or at least they used to be, and are free with ads. That's how I watched Part 1-3. Fujiko Mine is not, and I don't remember any of the films being on there. Castle of Cagliostro is on Netflix though if you happen to already have a subscription.;False;False;;;;1610328005;;1610328206.0;{};gitnq7p;False;t3_kurt0x;False;False;t1_gitmx6c;/r/anime/comments/kurt0x/help_me_with_lupin_the_3rd_and_ill_give_you_a/gitnq7p/;1610373194;5;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;"If you haven't seen Toradora then watch that. It's great slice of life + romance and the only dub that I prefer over sub. -For slice of life check out K-On!, Little Witch Academia, Yuru Camp, and Non Non Biyori. -For romance check out Kare Kano, Gamers!, or Kaguya-sama. - -edit: I know most of these have dubs but I'm not sure about Yuru Camp and Non Non Biyori. Also, the Gamers! dub ruins the show so if you only watch dub then stay away from that one";False;False;;;;1610328015;;False;{};gitnqwr;False;t3_kurv8p;False;True;t3_kurv8p;/r/anime/comments/kurv8p/need_an_anime_to_watch_please/gitnqwr/;1610373208;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rattpack18;;;[];;;;text;t2_2uahjdtr;False;False;[];;Quints, that rascal bunny girl one, toradora!;False;False;;;;1610328016;;False;{};gitnr0i;False;t3_kurv8p;False;True;t3_kurv8p;/r/anime/comments/kurv8p/need_an_anime_to_watch_please/gitnr0i/;1610373210;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ceforestier;;;[];;;;text;t2_2hhypzyn;False;False;[];;Thanks a lot dude. Appreciate it;False;False;;;;1610328039;;False;{};gitnsmu;True;t3_kurtf5;False;True;t1_gitnbqi;/r/anime/comments/kurtf5/when_is_it_best_to_watch_my_hero_fist_movie/gitnsmu/;1610373238;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeralyos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Zeralyos;light;text;t2_dphmj32;False;False;[];;I can't find your second entry here in today's poll, which one is it?;False;False;;;;1610328058;;False;{};gitntzp;False;t3_kupcoh;False;True;t1_gitj5i3;/r/anime/comments/kupcoh/best_ending_6_listen_to_salt_fourth_eliminations/gitntzp/;1610373262;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;No problem;False;False;;;;1610328058;;False;{};gitntzr;False;t3_kurtf5;False;True;t1_gitnsmu;/r/anime/comments/kurtf5/when_is_it_best_to_watch_my_hero_fist_movie/gitntzr/;1610373262;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;Silver Spoon and Yuru Camp are both slice of life with lots of food;False;False;;;;1610328064;;False;{};gitnudg;False;t3_kuru1v;False;True;t3_kuru1v;/r/anime/comments/kuru1v/weird_request_does_anyone_have_any/gitnudg/;1610373269;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PotatoKaboose;;;[];;;;text;t2_47iz2hsb;False;False;[];;isn't possible that the people working on it did their jobs poorly, or maybe it just didn't come together for a reason other than just higher ups? (not that higher ups can't be responsible, just wondering why crunchyroll is generally getting most of the blame for these particular works);False;False;;;;1610328077;;False;{};gitnvam;True;t3_kuq6vr;False;False;t1_gitnm9q;/r/anime/comments/kuq6vr/why_does_everyone_suddenly_hate_crunchyroll/gitnvam/;1610373285;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Toradora or Rascal Does Not Dream of Bunny Girl Senpai;False;False;;;;1610328097;;False;{};gitnwp7;False;t3_kurv8p;False;True;t3_kurv8p;/r/anime/comments/kurv8p/need_an_anime_to_watch_please/gitnwp7/;1610373308;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PreludeToHell;;;[];;;;text;t2_yec5f;False;False;[];;"[Sweetness & Lightning](https://myanimelist.net/anime/32828/Amaama_to_Inazuma): follows the same structure, 1st half of an episode is spent doing something, 2nd half is making/eating food.";False;False;;;;1610328106;;False;{};gitnxdl;False;t3_kuru1v;False;True;t3_kuru1v;/r/anime/comments/kuru1v/weird_request_does_anyone_have_any/gitnxdl/;1610373321;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Strickout;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Strickout?status=2;light;text;t2_1szolp7k;False;False;[];;"That might depend entirely on what kinds of powers Issei actually has access to. Divine Dividing and Juggernaut Drive literally kill him so it's safe to assume he wouldn't use those. And True Queen isn't even close to strong enough to beat Ultra Instinct Goku. So without the caveat that using Divine Dividing won't decrease his life force then it's definitely Goku's win. - -But it could be a different conversation if we're talking about Light Novel Issei who I can't really go into without massive LN spoilers";False;False;;;;1610328113;;False;{};gitnxw4;False;t3_kuqk3x;False;True;t3_kuqk3x;/r/anime/comments/kuqk3x/goku_vs_issei_from_high_school_dxd/gitnxw4/;1610373330;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;Yeah Fujiko Mine was taken down about two years ago. Damn shame since that's my favorite Lupin content.;False;False;;;;1610328116;;False;{};gitny1k;False;t3_kurt0x;False;True;t1_gitnq7p;/r/anime/comments/kurt0x/help_me_with_lupin_the_3rd_and_ill_give_you_a/gitny1k/;1610373332;3;True;False;anime;t5_2qh22;;0;[]; -[];;;rattpack18;;;[];;;;text;t2_2uahjdtr;False;False;[];;Watch jojos;False;False;;;;1610328128;;False;{};gitnyyl;False;t3_kuru8e;False;False;t3_kuru8e;/r/anime/comments/kuru8e/5_days_ago_i_returned_to_anime_but_with_rule_to/gitnyyl/;1610373347;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuck_Shinji;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Fuck Shinji(fate);light;text;t2_7xrbju2m;False;False;[];;Lmao fucking koikatsu has better graphics than that;False;False;;;;1610328140;;False;{};gitnzr9;False;t3_kukv89;False;False;t1_gissmdt;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gitnzr9/;1610373360;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Comrade_Jelonov;;;[];;;;text;t2_44yhkuq5;False;False;[];;Already done waiting for part 6 anime;False;False;;;;1610328180;;False;{};gito2fv;True;t3_kuru8e;False;True;t1_gitnyyl;/r/anime/comments/kuru8e/5_days_ago_i_returned_to_anime_but_with_rule_to/gito2fv/;1610373408;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomWolf83;;;[];;;;text;t2_wxq1l;False;False;[];;"* Isekai Shokudou - -* Isekai Izakaya - -* Food Wars - -* Koufuku Graffiti - -* Amaama to Inazuma";False;False;;;;1610328239;;False;{};gito6uy;False;t3_kuru1v;False;False;t3_kuru1v;/r/anime/comments/kuru1v/weird_request_does_anyone_have_any/gito6uy/;1610373486;4;True;False;anime;t5_2qh22;;0;[]; -[];;;rattpack18;;;[];;;;text;t2_2uahjdtr;False;False;[];;It’s not going to happen :(((;False;False;;;;1610328239;;False;{};gito6vt;False;t3_kuru8e;False;True;t1_gito2fv;/r/anime/comments/kuru8e/5_days_ago_i_returned_to_anime_but_with_rule_to/gito6vt/;1610373487;0;True;False;anime;t5_2qh22;;0;[]; -[];;;smoledman;;;[];;;;text;t2_d8z79;False;False;[];;Nice.;False;False;;;;1610328245;;False;{};gito7ek;False;t3_kumcrs;False;True;t3_kumcrs;/r/anime/comments/kumcrs/yami_shibai_season_8_episode_1_discussion/gito7ek/;1610373496;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Retromorpher;;;[];;;;text;t2_3x42wxsp;False;False;[];;Ah fuck, I can't believe I've done this. I thought it was in today's elims - but it looks like somehow it got deleted as a contest entry :(.;False;False;;;;1610328267;;False;{};gito960;False;t3_kupcoh;False;True;t1_gitntzp;/r/anime/comments/kupcoh/best_ending_6_listen_to_salt_fourth_eliminations/gito960/;1610373525;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;False;[];;"[Koufuku Graffiti](https://myanimelist.net/anime/24629/Koufuku_Graffiti?q=koufuku&cat=anime)";False;False;;;;1610328272;;False;{};gito9lt;False;t3_kuru1v;False;True;t3_kuru1v;/r/anime/comments/kuru1v/weird_request_does_anyone_have_any/gito9lt/;1610373532;2;True;False;anime;t5_2qh22;;0;[]; -[];;;melcarba;;;[];;;;text;t2_ywnzr;False;False;[];;"The problem is the Crunchyroll deliberately decides on what shows among their co-productions to brand as an original. The **morons** working on Crunchyroll marketing decide to brand horse shit like Gibiate, and EX-ARM as a Crunchyroll original, [yet they decide not to brand one of their best co-productions last year as an original?](https://www.animenewsnetwork.com/encyclopedia/anime.php?id=22014) [Note that Crunchyroll is just the 4th in the list for EX-ARM's production committee, if I'm reading the moonrunes right, so I don't think that CR has that much control over EX-ARM.](https://imgur.com/a/B0f1bRB) - -EDIT: Added screencap of EX-ARM's outro credits.";False;False;;;;1610328368;;1610331448.0;{};gitoh6a;False;t3_kuq6vr;False;True;t3_kuq6vr;/r/anime/comments/kuq6vr/why_does_everyone_suddenly_hate_crunchyroll/gitoh6a/;1610373685;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Nisekoi and Saekano;False;False;;;;1610328404;;False;{};gitojy5;False;t3_kuru8e;False;True;t3_kuru8e;/r/anime/comments/kuru8e/5_days_ago_i_returned_to_anime_but_with_rule_to/gitojy5/;1610373736;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sendhelp404;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_39x4uqma;False;False;[];;"Yumeiro Pâtissière focuses on baking - -Kakuriyo no yadomeshi - -When marnie was there has a scene with tomatoes that lives in my head rent free";False;False;;;;1610328446;;False;{};gitomzx;False;t3_kuru1v;False;True;t3_kuru1v;/r/anime/comments/kuru1v/weird_request_does_anyone_have_any/gitomzx/;1610373793;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NoMemory4137;;;[];;;;text;t2_5lyomu44;False;False;[];;canada would be the stone and usa would be the mist and scandinavia would be the leaf;False;False;;;;1610328483;;False;{};gitopmz;False;t3_kus1yg;False;True;t3_kus1yg;/r/anime/comments/kus1yg/what_if_naruto_took_place_in_the_modern_world/gitopmz/;1610373839;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Well it is ecchi;False;False;;;;1610328487;;False;{};gitopxw;False;t3_kuporv;False;True;t3_kuporv;/r/anime/comments/kuporv/just_started_watching_monster_museme/gitopxw/;1610373846;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mamertine;;;[];;;;text;t2_fet3t;False;False;[];;"Hulu has the most recent reboot. I bet green jacket on YouTube. - -As others have said, it's episodic. You can watch it on any order. - -It's been rebooted 5 or so times. Most reboots, he wears a different color jacket. Green, red, pink, blue. Most people refer to the reboot/seasons by the jacket color. - -There are a few movies too. - -There's also a subreddit for him. It's not super active, but if you have more questions come find it. ~/r/lupinthethird I think~ - -Edit it's /r/LupinIII";False;False;;;;1610328521;;1610332430.0;{};gitoshm;False;t3_kurt0x;False;True;t3_kurt0x;/r/anime/comments/kurt0x/help_me_with_lupin_the_3rd_and_ill_give_you_a/gitoshm/;1610373891;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rayahdah;;;[];;;;text;t2_3id87j6o;False;False;[];;Tsuki ga kirei was kinda sleeper it was alright but the ending made no sense and was way too unrealistic lmao, but it was a bad ending Inna funny way;False;False;;;;1610328576;;False;{};gitowxx;False;t3_kurv8p;False;True;t1_gitnpet;/r/anime/comments/kurv8p/need_an_anime_to_watch_please/gitowxx/;1610373974;0;True;False;anime;t5_2qh22;;0;[]; -[];;;k4r6000;;;[];;;;text;t2_3q0qar7q;False;False;[];;It is being re-released on Blu-Ray this year at least.;False;False;;;;1610328590;;False;{};gitoy1y;False;t3_kurt0x;False;True;t1_gitny1k;/r/anime/comments/kurt0x/help_me_with_lupin_the_3rd_and_ill_give_you_a/gitoy1y/;1610373996;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;They are in the modern world. They have computers, satellites dishes and mobile phones.;False;False;;;;1610328621;;False;{};gitp0ku;False;t3_kus1yg;False;False;t3_kus1yg;/r/anime/comments/kus1yg/what_if_naruto_took_place_in_the_modern_world/gitp0ku/;1610374040;10;True;False;anime;t5_2qh22;;0;[]; -[];;;TheSilentWaltz;;;[];;;;text;t2_3msy1vhu;False;False;[];;"Food Wars - -Restaurant to Another World";False;False;;;;1610328641;;False;{};gitp23j;False;t3_kuru1v;False;True;t3_kuru1v;/r/anime/comments/kuru1v/weird_request_does_anyone_have_any/gitp23j/;1610374067;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"Oishinbo - -Yakitate! Japan";False;False;;;;1610328649;;False;{};gitp2r5;False;t3_kuru1v;False;True;t3_kuru1v;/r/anime/comments/kuru1v/weird_request_does_anyone_have_any/gitp2r5/;1610374078;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;I already picked up the BD cause damn I needed that shit in my life.;False;False;;;;1610328661;;False;{};gitp3m9;False;t3_kurt0x;False;True;t1_gitoy1y;/r/anime/comments/kurt0x/help_me_with_lupin_the_3rd_and_ill_give_you_a/gitp3m9/;1610374094;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Rayahdah;;;[];;;;text;t2_3id87j6o;False;False;[];;Yuru camp is like if lo-fi was a group of girls;False;False;;;;1610328686;;False;{};gitp5k3;False;t3_kuru1v;False;True;t1_gitnudg;/r/anime/comments/kuru1v/weird_request_does_anyone_have_any/gitp5k3/;1610374128;3;True;False;anime;t5_2qh22;;0;[]; -[];;;rattpack18;;;[];;;;text;t2_2uahjdtr;False;False;[];;Does everyone in naruto have chakra? I honestly don’t remember;False;False;;;;1610328820;;False;{};gitpffi;False;t3_kus1yg;False;True;t3_kus1yg;/r/anime/comments/kus1yg/what_if_naruto_took_place_in_the_modern_world/gitpffi/;1610374310;1;True;False;anime;t5_2qh22;;0;[]; -[];;;baquea;;;[];;;;text;t2_j3k0u;False;True;[];;If by 'average person' you mean 'average anime fan' then according to MAL more have watched DxD than DBZ.;False;False;;;;1610328896;;False;{};gitpkzf;False;t3_kuqk3x;False;True;t1_gitg3kj;/r/anime/comments/kuqk3x/goku_vs_issei_from_high_school_dxd/gitpkzf/;1610374412;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ken_NT;;;[];;;;text;t2_56zdq;False;False;[];;[I don’t get why we keep coming back to Sonic](https://youtu.be/pVI6Agm1-kY);False;False;;;;1610328989;;1610331133.0;{};gitprqd;False;t3_kukv89;False;False;t1_giszu5u;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gitprqd/;1610374532;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;So, boruto basically;False;False;;;;1610329012;;False;{};gitptc3;False;t3_kus1yg;False;False;t3_kus1yg;/r/anime/comments/kus1yg/what_if_naruto_took_place_in_the_modern_world/gitptc3/;1610374559;8;True;False;anime;t5_2qh22;;0;[]; -[];;;oh_ijustbrowsemain;;;[];;;;text;t2_4t17gabh;False;False;[];;We're in a new year my dude;False;False;;;;1610329079;;False;{};gitpy6t;False;t3_kukv89;False;False;t1_gitd38g;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gitpy6t/;1610374645;8;True;False;anime;t5_2qh22;;0;[]; -[];;;justendmeffs;;;[];;;;text;t2_616awwfq;False;False;[];;Pupa was something else. I remember the first episode airing like it was yesterday.;False;False;;;;1610329111;;False;{};gitq0el;False;t3_kuoq3c;False;False;t1_gitamcu;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gitq0el/;1610374685;24;True;False;anime;t5_2qh22;;0;[]; -[];;;TheIntrovertedFinn;;;[];;;;text;t2_9hrkp0h6;False;False;[];;I dont think so, only some people are born with the ability to mold chakra;False;False;;;;1610329160;;False;{};gitq3zf;False;t3_kus1yg;False;True;t1_gitpffi;/r/anime/comments/kus1yg/what_if_naruto_took_place_in_the_modern_world/gitq3zf/;1610374752;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rattpack18;;;[];;;;text;t2_2uahjdtr;False;False;[];;They would just be hunted and experimented on. :(;False;False;;;;1610329196;;False;{};gitq6oq;False;t3_kus1yg;False;True;t1_gitq3zf;/r/anime/comments/kus1yg/what_if_naruto_took_place_in_the_modern_world/gitq6oq/;1610374799;1;True;False;anime;t5_2qh22;;0;[]; -[];;;k4r6000;;;[];;;;text;t2_3q0qar7q;False;False;[];;For a series this popular and long-lasting, it kind of surprises me there isn't more discussion about it.;False;False;;;;1610329237;;False;{};gitq9k5;False;t3_kurt0x;False;False;t1_gitoshm;/r/anime/comments/kurt0x/help_me_with_lupin_the_3rd_and_ill_give_you_a/gitq9k5/;1610374849;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Pudding_Upstairs;;;[];;;;text;t2_85ruvnjm;False;False;[];;You know where I could watch it?;False;False;;;;1610329250;;False;{};gitqahd;True;t3_kurv8p;False;True;t1_gitneqw;/r/anime/comments/kurv8p/need_an_anime_to_watch_please/gitqahd/;1610374866;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"It deserves to be in the void of trash, but it doesn't deserve to be lower than Pupa! - -Not because Ex-arm has anything good, but because Pupa is the definition of TRASH!";False;False;;;;1610329256;;False;{};gitqaw1;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gitqaw1/;1610374873;19;True;False;anime;t5_2qh22;;0;[]; -[];;;TheIntrovertedFinn;;;[];;;;text;t2_9hrkp0h6;False;False;[];;Bruh they would have chakra, i dont think it would be that easy to kill someone who can just cast some genjutsu on their ass;False;False;;;;1610329269;;False;{};gitqbwh;False;t3_kus1yg;False;True;t1_gitq6oq;/r/anime/comments/kus1yg/what_if_naruto_took_place_in_the_modern_world/gitqbwh/;1610374893;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rattpack18;;;[];;;;text;t2_2uahjdtr;False;False;[];;I didn’t say it would be easy. Aside from the obvious Kage level shinobi if you send in enough soldiers, jets, tanks you’re going to capture them eventually;False;False;;;;1610329433;;False;{};gitqp9l;False;t3_kus1yg;False;True;t1_gitqbwh;/r/anime/comments/kus1yg/what_if_naruto_took_place_in_the_modern_world/gitqp9l/;1610375132;0;True;False;anime;t5_2qh22;;0;[]; -[];;;8andahalfby11;;MAL;[];;https://myanimelist.net/animelist/thereIwasnt;dark;text;t2_kvyfg;False;False;[];;It's at 3.05 now. Let's see if it reaches 2.something before it's all over.;False;False;;;;1610329474;;False;{};gitqsna;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gitqsna/;1610375196;12;True;False;anime;t5_2qh22;;0;[]; -[];;;TheIntrovertedFinn;;;[];;;;text;t2_9hrkp0h6;False;False;[];;Thats fair;False;False;;;;1610329489;;False;{};gitqtvq;False;t3_kus1yg;False;True;t1_gitqp9l;/r/anime/comments/kus1yg/what_if_naruto_took_place_in_the_modern_world/gitqtvq/;1610375220;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ElmekiaLance;;;[];;;;text;t2_yvmud2z;False;False;[];;"These are some of my favourites in this round: - -* [Open your eyes](https://www.youtube.com/watch?v=iQjwzaiMiNw) (Occultic;Nine) - -* [Hibana](https://www.youtube.com/watch?v=kQo4KwtCBw8) (Golden Kamuy) - -* [Kokuhaku](https://animethemes.moe/video/UchuuKyoudai-ED2.webm) (Uchuu Kyoudai) - -* [Mikazuki](https://www.youtube.com/watch?v=-kQlqI9YNps) (Ranpo Kitan: Game of Laplace) - -* [My Will](https://www.youtube.com/watch?v=eI_el2XhI8s) (Inuyasha) - -* [I Want You](https://animethemes.moe/video/JojoNoKimyouNaBoukenS4-ED1.webm) (JoJo's Bizarre Adventure: Diamond is Unbreakable) - -* [Niniele](https://www.youtube.com/watch?v=X21WORLKLrE) (Kabaneri of the iron fortress)";False;False;;;;1610329762;;False;{};gitrf2g;False;t3_kupcoh;False;False;t3_kupcoh;/r/anime/comments/kupcoh/best_ending_6_listen_to_salt_fourth_eliminations/gitrf2g/;1610375605;4;True;False;anime;t5_2qh22;;0;[]; -[];;;punyuni;;;[];;;;text;t2_3q1mvnyh;False;False;[];;sick, lmk how u like it;False;False;;;;1610329872;;False;{};gitroez;False;t3_kumzbf;False;True;t1_git6l6n;/r/anime/comments/kumzbf/looking_for_a_new_anime_to_watch/gitroez/;1610375775;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FalconPunchInDaFace;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FalconPunchFace;light;text;t2_4fi02812;False;False;[];;"Today's Menu for the Emiya Family - -It’s the cooking show in the Fate universe. You can watch Saber eat.";False;False;;;;1610329964;;1610334880.0;{};gitrwpy;False;t3_kuru1v;False;True;t3_kuru1v;/r/anime/comments/kuru1v/weird_request_does_anyone_have_any/gitrwpy/;1610375922;3;True;False;anime;t5_2qh22;;0;[]; -[];;;8andahalfby11;;MAL;[];;https://myanimelist.net/animelist/thereIwasnt;dark;text;t2_kvyfg;False;False;[];;Now it is.;False;False;;;;1610329994;;False;{};gitrz6f;False;t3_kuoq3c;False;False;t1_gitamcu;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gitrz6f/;1610375967;8;True;False;anime;t5_2qh22;;0;[]; -[];;;bigfrickenorange;;;[];;;;text;t2_60ujz720;False;False;[];;I second toradora. Just finished it and has moved into my top 3 anime;False;False;;;;1610330040;;False;{};gits35c;False;t3_kurv8p;False;True;t1_gitnqwr;/r/anime/comments/kurv8p/need_an_anime_to_watch_please/gits35c/;1610376037;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptainRedBeard35;;;[];;;;text;t2_2vxt6oiv;False;False;[];;100%. Yuri stuff aside, the character development is really well done, and I've never been more invested in any external relationship as much as yuu and touko, if s2 continues as well as s1, its probably gonna be in like my top 3, for sure top 5.;False;False;;;;1610330047;;False;{};gits3ph;True;t3_kum3pa;False;False;t1_gitdlsn;/r/anime/comments/kum3pa/yuu_slowly_falling_for_touko_bloom_into_you/gits3ph/;1610376047;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;Toriko is the anime you’re looking for, literally everything revolves around food. The world building, the animals, plants, etc. It may be long but it was very enjoyable.;False;False;;;;1610330084;;False;{};gits6tz;False;t3_kuru1v;False;True;t3_kuru1v;/r/anime/comments/kuru1v/weird_request_does_anyone_have_any/gits6tz/;1610376103;2;True;False;anime;t5_2qh22;;0;[]; -[];;;k4r6000;;;[];;;;text;t2_3q0qar7q;False;False;[];;I flipflop between it and Kill la Kill as being my favourite anime of the decade. It is absolutely gorgeous to look at.;False;False;;;;1610330120;;False;{};gits9r3;False;t3_kurt0x;False;True;t1_gitp3m9;/r/anime/comments/kurt0x/help_me_with_lupin_the_3rd_and_ill_give_you_a/gits9r3/;1610376158;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LegendaryRQA;;;[];;;;text;t2_hszyq;False;False;[];;"Anime was, is, and probably always will be short for アニメーション (or ""A NI ME SHIyo N""). If it is animated, it is anime. At least according to the Japanese.";False;True;;comment score below threshold;;1610330158;;1610336198.0;{};gitscre;False;t3_kukv89;False;True;t1_git9dih;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gitscre/;1610376213;-19;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;"Berserk 1997, Vampire Hunter D, Shoujo Tsubaki, A Kite, Amon: Devilman Mokushiroku, Happy Sugar Life, Ninja Scroll movie, Violence Voyager, & Nekojiru-sou";False;False;;;;1610330681;;False;{};gittgjd;False;t3_kuoua4;False;True;t3_kuoua4;/r/anime/comments/kuoua4/any_recommendations_of_horror_scary_mistery_anime/gittgjd/;1610376948;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610330724;;False;{};gittjlw;False;t3_kus1yg;False;True;t3_kus1yg;/r/anime/comments/kus1yg/what_if_naruto_took_place_in_the_modern_world/gittjlw/;1610377005;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Verzwei;;;[];;;;text;t2_cmzqb;False;False;[];;"> h*nati - -You can say ""henati"" on the internet. - -You can say ""hentai"" on the internet, too.";False;False;;;;1610330794;;False;{};gittoiv;False;t3_kuporv;False;True;t3_kuporv;/r/anime/comments/kuporv/just_started_watching_monster_museme/gittoiv/;1610377092;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;Fairy Tail;False;False;;;;1610330803;;False;{};gittp7y;False;t3_kuno7f;False;True;t3_kuno7f;/r/anime/comments/kuno7f/give_me_some_emotional_and_action_based_anime/gittp7y/;1610377105;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PotatoKaboose;;;[];;;;text;t2_47iz2hsb;False;False;[];;wait they're 4TH ON THE PRODUCTION LIST? holy shit they've really been taking a pounding for little reason besides branding then;False;False;;;;1610330826;;False;{};gittqwz;True;t3_kuq6vr;False;True;t1_gitoh6a;/r/anime/comments/kuq6vr/why_does_everyone_suddenly_hate_crunchyroll/gittqwz/;1610377135;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TSPhoenix;;;[];;;;text;t2_3tob1;False;False;[];;"> you can't blame SEGA for Sonic Team's failures - -The more I've looked into it the more I think you can. - -There is a pretty strong correlation between how bad a Sonic game is and how rushed it is. This applies both to Sonic Team's games and to ones developed externally (ie. Sonic Boom). - -For whatever reason SEGA just doesn't seem to care if a game is good or not to slap the Sonic branding on it.";False;False;;;;1610330865;;False;{};gitttop;False;t3_kukv89;False;False;t1_giszu5u;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gitttop/;1610377187;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Verzwei;;;[];;;;text;t2_cmzqb;False;False;[];;"I'd say it's barely worth watching in general unless you want to see comedy involving multiple yanderes. - -_Specifically_ for your request, I'd say it's super not worth watching. It's not a true romance anime, it's not heartfelt (though the final arc hints at it a little bit before ultimately doing nothing) and the romance isn't decent.";False;False;;;;1610330911;;False;{};gittx8j;False;t3_kupb0s;False;True;t3_kupb0s;/r/anime/comments/kupb0s/is_love_tyrant_worth_a_watch/gittx8j/;1610377271;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NekoWafers;;;[];;;;text;t2_iau18;False;False;[];;"[SK8](https://animethemes.moe/video/SK8-OP1.webm) - -[So I'm a Spider, So What?](https://www.youtube.com/watch?v=2hyDlt_yvv4) - -[Jaku-Chara Tomozaki-kun](https://animethemes.moe/video/JakuCharaTomozakiKun-OP1.webm) - -[Horimiya](https://animethemes.moe/video/Horimiya-OP1.webm)";False;False;;;;1610330927;;False;{};gittyha;False;t3_kurlsw;False;False;t3_kurlsw;/r/anime/comments/kurlsw/with_the_first_week_of_the_winter_season/gittyha/;1610377295;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Drunkenlegaladvice;;;[];;;;text;t2_juehb;False;False;[];;Now watch 5 centimeters per second;False;False;;;;1610331017;;False;{};gitu56a;False;t3_kuo290;False;True;t3_kuo290;/r/anime/comments/kuo290/guys_i_did_it_i_finished_your_lie_in_april/gitu56a/;1610377418;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sworp123;;;[];;;;text;t2_70kjkn0w;False;False;[];;what's so bad about it?;False;False;;;;1610331034;;False;{};gitu6em;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gitu6em/;1610377442;28;True;False;anime;t5_2qh22;;0;[]; -[];;;melcarba;;;[];;;;text;t2_ywnzr;False;False;[];;"Then its still the producer's fault. Why would they hire an incompetent team in the first place? Why would they decide to air anime X during this timeframe when its obvious that the product looks like unwatchable? - -In terms of EX-ARM, Crunchyroll is getting the blame (and deservedly so!) because they claimed it as an Crunchyroll original. We don't know who else is in the production committee for the show, only until yesterday, when it was shown that CR is just 4th in the list.";False;False;;;;1610331173;;False;{};gitugeb;False;t3_kuq6vr;False;True;t1_gitnvam;/r/anime/comments/kuq6vr/why_does_everyone_suddenly_hate_crunchyroll/gitugeb/;1610377626;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;Aikatsu Planet;False;False;;;;1610331345;;False;{};gituszl;False;t3_kurlsw;False;False;t3_kurlsw;/r/anime/comments/kurlsw/with_the_first_week_of_the_winter_season/gituszl/;1610377857;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Verzwei;;;[];;;;text;t2_cmzqb;False;False;[];;[Here's](https://i.imgur.com/QLOcsSK.png) a cropped down version of OP's image that fits in the filesize requirement for discord emojis, in case anyone is interested in that sort of thing...;False;False;;;;1610331575;;False;{};gitvbdl;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gitvbdl/;1610378203;12;True;False;anime;t5_2qh22;;0;[]; -[];;;ej_stephens;;;[];;;;text;t2_3d6h2d18;False;False;[];;I went in totally blind to check out episode 1. I was watching the OP and thinking it looked a little weird but the characters looked alright. Then the actual animation came in screen... That is just atrocious.;False;False;;;;1610331749;;False;{};gitvo2w;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gitvo2w/;1610378438;151;True;False;anime;t5_2qh22;;0;[]; -[];;;melcarba;;;[];;;;text;t2_ywnzr;False;False;[];;[They aren't directly producing EX-ARM though. You can see in the credits that they're only the 4th in the production committee list for EX-ARM.](https://imgur.com/a/B0f1bRB) [If it is directly funded by Crunchyroll, then they should be at the top or they're the ones solely credited just like the one in God of Highschool](https://imgur.com/a/5nie1g3);False;False;;;;1610331800;;False;{};gitvrqx;False;t3_kuq6vr;False;True;t1_gitfb28;/r/anime/comments/kuq6vr/why_does_everyone_suddenly_hate_crunchyroll/gitvrqx/;1610378508;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DecentlySizedPotato;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/ocha94;light;text;t2_5f0gxk9t;False;False;[];;"SANZIGEN has been putting out solid full CG anime for a while. Turns out a lot of their anime end up being mediocre so not a lot of people watch it, but the animation was really good in all of them, and they know how to make use of the possibilities CG offers over hand drawn animation. First anime of them I saw was Aoki Hagane no Arpeggio (which I really liked), that was released in 2013, and it looks really good. Looks like CG, sure, but it's well made CG imo. They also do some CG for other studios. - -And D4DJ in particular is one of my favourite recent anime, would have been AOTS last season if it wasn't for Haikyuu.";False;False;;;;1610331906;;1610332104.0;{};gitvzhx;False;t3_kukv89;False;False;t1_gisy7kz;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gitvzhx/;1610378655;9;True;False;anime;t5_2qh22;;0;[]; -[];;;leviathonlx;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Leviathonlx;light;text;t2_8zce3;False;False;[];;I remember being so excited for Pupa when it first for announced when we knew nothing else about the episode count/length.;False;False;;;;1610332111;;False;{};gitwefk;False;t3_kuoq3c;False;False;t1_gitq0el;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gitwefk/;1610378935;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahou_Shoujo_Ramune;;;[];;;;text;t2_4vs4l2r6;False;False;[];;Senran Kagura but without the tits;False;False;;;;1610332123;;False;{};gitwf9v;False;t3_kus1yg;False;True;t3_kus1yg;/r/anime/comments/kus1yg/what_if_naruto_took_place_in_the_modern_world/gitwf9v/;1610378951;2;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;"We aren't speaking Japanese on this forum though, and in English, the word ""anime"" has been adapted to mean ""Japanese animated productions,"" to specifically separate it from western-produced animation.";False;False;;;;1610332170;;False;{};gitwil2;False;t3_kukv89;False;False;t1_gitscre;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gitwil2/;1610379011;19;True;False;anime;t5_2qh22;;0;[]; -[];;;DecentlySizedPotato;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/ocha94;light;text;t2_5f0gxk9t;False;False;[];;I honestly didn't pay much attention to the episode as I was mostly laughing and commenting it with friends, but from what I got, the story felt like it could make for at least a decent seasonal anime if it was ~~properly~~ animated.;False;False;;;;1610332274;;False;{};gitwpyb;False;t3_kuoq3c;False;False;t1_git2wng;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gitwpyb/;1610379148;36;True;False;anime;t5_2qh22;;0;[]; -[];;;ElmekiaLance;;;[];;;;text;t2_yvmud2z;False;False;[];;"Akatsuki is wonderful! The erhu and Shikata Akiko's vocals sound great. Thank you, I'll have to add it to my playlist. - -Yeah, all the Sayonara Zetsubou Sensei EDs have lots of style and personality. I was tempted to nominate more of them, but I managed to restrain myself in the end, hah.";False;False;;;;1610332297;;False;{};gitwrmd;False;t3_kupcoh;False;True;t1_gitaz7f;/r/anime/comments/kupcoh/best_ending_6_listen_to_salt_fourth_eliminations/gitwrmd/;1610379178;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cire101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cire101;light;text;t2_oryv2;False;False;[];;I still don't think MAL should allow ratings to be visible when there's only 1 episode out lol;False;False;;;;1610332512;;False;{};gitx6vs;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gitx6vs/;1610379460;41;True;False;anime;t5_2qh22;;0;[]; -[];;;Enemigo_Poderoso;;;[];;;;text;t2_6nwqvcos;False;False;[];;Fell asleep with the first half of Kokuhaku, the second part wasn't enough to compensate...;False;False;;;;1610332521;;False;{};gitx7ia;False;t3_kupcoh;False;True;t1_gitrf2g;/r/anime/comments/kupcoh/best_ending_6_listen_to_salt_fourth_eliminations/gitx7ia/;1610379472;0;True;False;anime;t5_2qh22;;0;[]; -[];;;jaidling;;;[];;;;text;t2_15o01o;False;False;[];;Jormungand and Tanya the Evil;False;False;;;;1610332624;;False;{};gitxey6;False;t3_kunxad;False;False;t3_kunxad;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/gitxey6/;1610379609;5;True;False;anime;t5_2qh22;;0;[]; -[];;;irisverse;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/usernamesarehard;light;text;t2_1dzbqjh4;False;False;[];;Literally who gives a fuck;False;False;;;;1610332891;;False;{};gitxy28;False;t3_kus5kt;False;True;t3_kus5kt;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/gitxy28/;1610379975;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sairoch;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Sairoch/animelist;light;text;t2_a4st0;False;False;[];;"https://en.wiktionary.org/wiki/anime#English - -It's become an English loanword over time, the meaning of which is more restricted to Japanese animation or the general style of it. Kind of an interesting etymological path. I wonder how many times a word has been borrowed from one language to another and then back again like that.";False;False;;;;1610332918;;False;{};gitxzzm;False;t3_kukv89;False;False;t1_gitscre;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gitxzzm/;1610380011;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Melbuf;;;[];;;;text;t2_j03jl;False;False;[];;"3 times in 10 days - -oof";False;False;;;;1610333011;;False;{};gity6es;False;t3_kukv89;False;True;t1_gitd38g;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gity6es/;1610380136;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jer2356;;;[];;;;text;t2_61pcvcrj;False;False;[];;"Higurashi is adapted from a Visual Novel and VNs are known for having different Routes. The point of most VNs including Higurashi is tell the same premise but in different scenarios to flesh out different character perspectives that are otherwise hard to tell in a linear timeline storytelling. VNs usually don't have to give a reason why diffrent routes exist besides alterate mutliverse and most anime adaptations of VN just combines the routes in a single timeline defeating the point of routes. Higurashi is the only adaption of a VN besides Fate thatt I could think of that adpats route as it is. This is because Higurashi as a mystery needs this mechanic to tell the story. - -In Higurashi's case, there is a mystery and the truth is hidden among different arcs/routes, if you're a keen observer you can piece the mystery before it is revealed by comparing what is different and similar among timelines. Each arc/timeline can be viewed as a route giving focus to a different character i.e Rena is the 1st arc, Mion, the 2nd and so on. Another user alreay stated that Higurashi is dived into two sets of arcs, the answer arcs beginning from the 5th arc gives solutions to their corresponding arcs i.e there is a Rena anwer arc for the 1st arc.";False;False;;;;1610333050;;False;{};gity960;False;t3_kup95s;False;True;t3_kup95s;/r/anime/comments/kup95s/higurashi_no_naku_koro_ni/gity960/;1610380187;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;People form opinions based on what they've seen. That's just sort of how it goes. I watched the first episode of *Otherside Picnic* and really liked it. I watched the first episode of *The Hidden Dungeon Only I Can Enter* and didn't like it. Not a big deal or anything.;False;False;;;;1610333162;;False;{};gityh20;False;t3_kus5kt;False;True;t1_gitqegz;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/gityh20/;1610380338;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;Yes. Lots of interesting camp-out cooking scenes in Yurucamp.;False;False;;;;1610333203;;False;{};gityk91;False;t3_kuru1v;False;True;t1_gitp5k3;/r/anime/comments/kuru1v/weird_request_does_anyone_have_any/gityk91/;1610380395;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KoalaNugget;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Koalasso;light;text;t2_lqnau;False;False;[];;"Hard to argue that this is crunchy failing to see what their users want to watch, when people are clearly watching this. - -There's plenty of shows airing this season that don't get even a fraction of the attention this has gotten only after the first episode. - -Like with Gibiate, shitposts do find their audience.";False;False;;;;1610333465;;1610361132.0;{};gitz38r;False;t3_kukv89;False;True;t1_gisjzwq;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gitz38r/;1610380769;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Denzel_Potato09;;;[];;;;text;t2_5upv9a99;False;False;[];;Might be an unrealistic ending but I still really enjoyed it (at least for me);False;False;;;;1610333693;;False;{};gitzjoh;False;t3_kurv8p;False;True;t1_gitowxx;/r/anime/comments/kurv8p/need_an_anime_to_watch_please/gitzjoh/;1610381101;2;True;False;anime;t5_2qh22;;0;[]; -[];;;StrangeGuy1787;;;[];;;;text;t2_8kbg2jdk;False;False;[];;Have you seen Anohana yet?;False;False;;;;1610333816;;False;{};gitzsh0;False;t3_kuo290;False;False;t3_kuo290;/r/anime/comments/kuo290/guys_i_did_it_i_finished_your_lie_in_april/gitzsh0/;1610381272;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SolidPrevious;;;[];;;;text;t2_7dvst76d;False;False;[];;Wandering witch Elaina. More recent anime, with the character often letting shit just play out;False;False;;;;1610333921;;False;{};gitzzww;False;t3_kunxad;False;True;t3_kunxad;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/gitzzww/;1610381407;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;Well he is getting kinda dark grey but I agree.;False;False;;;;1610333930;;False;{};giu00id;False;t3_kunxad;False;False;t1_gisz41u;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/giu00id/;1610381420;7;True;False;anime;t5_2qh22;;0;[]; -[];;;alucab1;;;[];;;;text;t2_12fuop;False;False;[];;Akatsuki is one of the GOAT EDs IMO at least in terms of music.;False;False;;;;1610333975;;False;{};giu03nw;False;t3_kupcoh;False;True;t1_gitaz7f;/r/anime/comments/kupcoh/best_ending_6_listen_to_salt_fourth_eliminations/giu03nw/;1610381485;1;True;False;anime;t5_2qh22;;0;[]; -[];;;baquea;;;[];;;;text;t2_j3k0u;False;True;[];;You can certainly say whether or not it was a strong start or otherwise, but I don't think you can fairly go much beyond that. There's been times when I've utterly hated the first episode of an anime and then given it a 10/10 by the end and other times when the first episode has really hooked me but by the end I've totally lost interest and ended up really disliking the show.;False;False;;;;1610334019;;False;{};giu06p1;False;t3_kus5kt;False;True;t1_gityh20;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/giu06p1/;1610381545;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Papidoru;;;[];;;;text;t2_12qhez;False;False;[];;another laundering scheme???;False;False;;;;1610334176;;False;{};giu0hc1;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giu0hc1/;1610381764;12;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;Isn't that basically all this is though? It's a few people commenting on how they think the first episode is.;False;False;;;;1610334216;;False;{};giu0jyl;False;t3_kus5kt;False;True;t1_giu06p1;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/giu0jyl/;1610381817;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ChestaCooke;;;[];;;;text;t2_4hr49l1r;False;False;[];;Well, that's the thing. They know what people want, but they hate that. They want to make what people *should* like. What they feel needs to be the change in the industry.;False;False;;;;1610334593;;False;{};giu19eq;False;t3_kukv89;False;True;t1_gisjzwq;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giu19eq/;1610382326;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Snowboy8;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_33bq9awf;False;False;[];;Lot of stand outs, from Veil, to Hyori Ittai, to The Real Folk Blues!;False;False;;;;1610334880;;False;{};giu1sc3;False;t3_kupcoh;False;True;t3_kupcoh;/r/anime/comments/kupcoh/best_ending_6_listen_to_salt_fourth_eliminations/giu1sc3/;1610382695;3;True;False;anime;t5_2qh22;;0;[]; -[];;;yurabe;;;[];;;;text;t2_9jjed5dw;False;False;[];;"`tldr: It's a 3.xx for a reason.` -You can still use it as a point of reference. Even if there's only 1 episode, people definitely rated it because of bad animation. - - -though I agree with this kind of system. hiding scores in anime page until a specific episode count threshold is met like 4 episodes for 1 cour show, 6 or 8 for 2 cours.";False;False;;;;1610334899;;False;{};giu1tmt;False;t3_kuoq3c;False;False;t1_gitx6vs;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giu1tmt/;1610382719;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Gogomagickitten;;;[];;;;text;t2_15cbfu;False;False;[];;It was the fried rice scene where the main character was 3D and his brother was 2D. It was so bad.;False;False;;;;1610334971;;False;{};giu1ygp;False;t3_kukv89;False;False;t1_githyb8;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giu1ygp/;1610382824;6;True;False;anime;t5_2qh22;;0;[]; -[];;;yurabe;;;[];;;;text;t2_9jjed5dw;False;False;[];;"I actually like gibiate's story during its early episodes. I watched it weekly. The CGI really is bad and I'm not even a CGI hater. The 2nd problem was the story gets worse every episode with super cheap dialogues and the characters are terrible too. - - -I already deleted Ex-arm from my list after watching the official trailer and I don't want to experience this kind of thing ever again.";False;False;;;;1610335208;;False;{};giu2ec0;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giu2ec0/;1610383157;7;True;False;anime;t5_2qh22;;0;[]; -[];;;made-with-jeans;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;http://www.anime-planet.com/forum/members/;light;text;t2_6y5uft6g;False;False;[];;Food wars, toriko;False;False;;;;1610335244;;False;{};giu2go5;False;t3_kuru1v;False;True;t3_kuru1v;/r/anime/comments/kuru1v/weird_request_does_anyone_have_any/giu2go5/;1610383205;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Batmanhasgame;;ANI;[];;http://anilist.co/animelist/8203/ImBatman;dark;text;t2_7s1kj;False;False;[];;I pretty much watch everything and finish whatever I watch. I finished Gibate and quite honestly it wasn't as bad as people make it out to be. Don't get me wrong it was fucking dog shit but compared to this show holy shit. I legit will not watch this show its just that bad.;False;False;;;;1610335255;;False;{};giu2hft;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giu2hft/;1610383224;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ben99ny22;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ben99ny;light;text;t2_14rmpidg;False;False;[];;just watch the trailer and you'll see why.;False;False;;;;1610335347;;False;{};giu2nx6;False;t3_kuoq3c;False;False;t1_gitu6em;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giu2nx6/;1610383360;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AdmirableFondant0;;;[];;;;text;t2_3u7avr5f;False;False;[];;if we wanted to watch CGI we wouldn't be watching anime;False;True;;comment score below threshold;;1610335384;;False;{};giu2qji;False;t3_kukv89;False;False;t1_gisy7kz;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giu2qji/;1610383409;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;MyLittleRocketShip;;;[];;;;text;t2_yg6qc;False;False;[];;crunchyroll original no wonder lmafo;False;False;;;;1610335597;;False;{};giu3561;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giu3561/;1610383701;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AwakenedSheeple;;;[];;;;text;t2_bm454;False;False;[];;"Hey, Generations was great... but it happened to be the last one that was great. -Somehow, despite using the same foundation for its gameplay, Forces was a piece of shit. -I get that Sonic Team has a desire to always make something new, to recreate the wheel, but they can't ever be half-assed enough to not ruin their own winning formula.";False;False;;;;1610335743;;False;{};giu3f3r;False;t3_kukv89;False;False;t1_gisqwo1;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giu3f3r/;1610383903;6;True;False;anime;t5_2qh22;;0;[]; -[];;;rocky_iwata;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/banninghamma;light;text;t2_i9ys0;False;False;[];;"Terrible 3DCG animation. - -Terrible character faces' animation. - -Terrible patching jobs with some terribly animated 2D shots added right beside terrible the 3DCG animation. - -Terrible special effects. - -Terrible directing. It looks more like a slideshow. - -Etc. - -It makes Berserk (2016) looks like a masterpiece.";False;False;;;;1610335781;;False;{};giu3hox;False;t3_kuoq3c;False;False;t1_gitu6em;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giu3hox/;1610383953;115;True;False;anime;t5_2qh22;;0;[]; -[];;;Sworp123;;;[];;;;text;t2_70kjkn0w;False;False;[];;sooo another arifureta?;False;False;;;;1610335837;;False;{};giu3lk5;False;t3_kuoq3c;False;True;t1_giu3hox;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giu3lk5/;1610384030;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VegetaShouldBeBetter;;;[];;;;text;t2_6oen3rmx;False;False;[];;Nah just the average little kid around my age growing up watching tv lol that show didn't come on cartoon network......for obvious reasons;False;False;;;;1610336004;;False;{};giu3x3b;False;t3_kuqk3x;False;True;t1_gitpkzf;/r/anime/comments/kuqk3x/goku_vs_issei_from_high_school_dxd/giu3x3b/;1610384275;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rocky_iwata;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/banninghamma;light;text;t2_i9ys0;False;False;[];;I did watch some Arifureta. It is much better.;False;False;;;;1610336063;;False;{};giu40yc;False;t3_kuoq3c;False;False;t1_giu3lk5;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giu40yc/;1610384353;29;True;False;anime;t5_2qh22;;0;[]; -[];;;MrMooster915;;;[];;;;text;t2_r32le0e;False;False;[];;Don’t forget the first scene with the classmates where MC was 3d and his classmates arms were infront of him in 2d;False;False;;;;1610336118;;False;{};giu44ne;False;t3_kukv89;False;False;t1_giu1ygp;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giu44ne/;1610384432;6;True;False;anime;t5_2qh22;;0;[]; -[];;;s0ulf000d;;;[];;;;text;t2_8ip1ogav;False;False;[];;What? OG also stands for original what are you talking about;False;False;;;;1610336174;;False;{};giu48he;False;t3_kukv89;False;False;t1_gitkkjl;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giu48he/;1610384531;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Segaco;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Segaco;light;text;t2_nyy5v;False;False;[];;"I think it's nice to know how an anime's score changes from the moment it airs to when it's over (and beyond) - -There's a MAL group that records that";False;False;;;;1610336391;;False;{};giu4ngc;False;t3_kuoq3c;False;False;t1_giu1tmt;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giu4ngc/;1610384841;20;True;False;anime;t5_2qh22;;0;[]; -[];;;reading_potato;;;[];;;;text;t2_3xi7xrdz;False;False;[];;"Well the answer for the what makes this unique is the development of the characters and world. But those are not things that will shine immediately. - -And having read it and read and seen many of the works that were inspired by it, I can still say that it is way better. Something good desn't stop being good only because it inspired others, and something that isn't good would not inspire so many. - -Not to mention that even half a decade after its ending, it still is in the top5, above others acclaimed works that had animes to support their success, like Re: Rero and Overlord.";False;False;;;;1610336411;;False;{};giu4otk;False;t3_kus5kt;False;True;t1_gitxgmb;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/giu4otk/;1610384889;0;True;False;anime;t5_2qh22;;0;[]; -[];;;aorimiku;;;[];;;;text;t2_qhc821l;False;False;[];;"> You can watch Saber eat. - -That's the best part.";False;False;;;;1610336422;;False;{};giu4pmn;False;t3_kuru1v;False;False;t1_gitrwpy;/r/anime/comments/kuru1v/weird_request_does_anyone_have_any/giu4pmn/;1610384905;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;We are on the verge of greatness, we are this close;False;False;;;;1610336496;;1610337020.0;{};giu4uy1;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giu4uy1/;1610385024;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Pogboom67;;;[];;;;text;t2_14f131;False;False;[];;For Tokyo ghoul read the manga rather than the anime to get the full extent of ken Kaneki;False;False;;;;1610336506;;False;{};giu4vmj;False;t3_kunxad;False;False;t1_git8le2;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/giu4vmj/;1610385037;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ecchi-ja-nai;;;[];;;;text;t2_11x3ls2m;False;False;[];;Or is it?;False;False;;;;1610336863;;False;{};giu5kb6;False;t3_kuporv;False;True;t1_gitopxw;/r/anime/comments/kuporv/just_started_watching_monster_museme/giu5kb6/;1610385544;1;True;False;anime;t5_2qh22;;0;[]; -[];;;reading_potato;;;[];;;;text;t2_3xi7xrdz;False;False;[];;"Yes, a series can be the first and be pretty bad, but to cause such an impact in the whole genre and make so many try to copy it, it needs to be pretty good. - -But numbers also work, since its the best seller from the publisher, and like I said in another reply, it's still firm in the top5 of where it was originally published, half a decade after already ending. It's above even some pretty well known like Re: Zero and Overlord.";False;False;;;;1610336935;;False;{};giu5p8l;False;t3_kus5kt;False;True;t1_gitvd7q;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/giu5p8l/;1610385635;0;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;Just Because! ED is a thing of beauty;False;False;;;;1610336965;;False;{};giu5r72;False;t3_kupcoh;False;True;t3_kupcoh;/r/anime/comments/kupcoh/best_ending_6_listen_to_salt_fourth_eliminations/giu5r72/;1610385672;1;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;"If that development is actually as good as you say it is, then those people's opinions will likely change. If not, they won't. They are, after all, only reviewing the first episode. - -Something being inspirational doesn't inherently mean it will hold up over time. It just means it was the first to do something, and that thing was so well-received that others took inspiration from it to make their own version.";False;False;;;;1610337174;;False;{};giu65ig;False;t3_kus5kt;False;True;t1_giu4otk;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/giu65ig/;1610385946;1;True;False;anime;t5_2qh22;;0;[]; -[];;;reading_potato;;;[];;;;text;t2_3xi7xrdz;False;False;[];;"I see you would never touch Tolkien, Harry Potter, 1984, etc... Since they inspired so many bad works, they should obviously be pretty bad right. - -Maybe you probably should never watch Akira or GitS, or even Star Wars, star wars inspired quite a bit of terrible copies... well I really can't recommend the new trilogy, though. - -Despite inspiring many other good works, they also inspired a whole lot of terrible shit, so by you logic they also must be terrible, right?";False;False;;;;1610337359;;False;{};giu6i7a;False;t3_kus5kt;False;False;t1_gitxku6;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/giu6i7a/;1610386180;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;EstebanIsAGamerWord;;;[];;;;text;t2_4vhvkb76;False;False;[];;"I was curious after reading this, went on YouTube and already knew it'd be bad when I read ""a crunchyroll original"" in the video title, but I never thought it'd be THIS bad.";False;False;;;;1610337420;;False;{};giu6mqo;False;t3_kuoq3c;False;False;t1_gitvo2w;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giu6mqo/;1610386265;52;True;False;anime;t5_2qh22;;0;[]; -[];;;Exodus2791;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Exodus27;light;text;t2_atamv;False;True;[];;Is this the one that people thought the trailer was a joke because it looked that bad?;False;False;;;;1610337490;;False;{};giu6rri;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giu6rri/;1610386361;28;True;False;anime;t5_2qh22;;0;[]; -[];;;randxalthor;;;[];;;;text;t2_sykvo;False;False;[];;"The trailer made Gigguk say on stream something to the effect of ""Monty Oum [creator of RWBY] is rolling over in his grave."" Not a direct quote, but you get the idea. I think he also said it looked like somebody spent an hour playing around in Blender and decided they could make an anime.";False;False;;;;1610337619;;False;{};giu70ql;False;t3_kuoq3c;False;False;t1_gitu6em;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giu70ql/;1610386535;24;True;False;anime;t5_2qh22;;0;[]; -[];;;yolo_swag_for_satan;;;[];;;;text;t2_2aloc4yu;False;False;[];;"I don't have crunchyroll but I watched a clip on there, and the PV on MAL. The animation quality looks on par with something you might see independently produced for youtube. - -Who is the studio making this? The animation is clearly not great but it feels kind of bad to make fun if it's being produced by 3 people in a basement or something.";False;False;;;;1610337691;;False;{};giu75o3;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giu75o3/;1610386638;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sworp123;;;[];;;;text;t2_70kjkn0w;False;False;[];;"RWBY was good in like 2004 lmao - -so basically this is another Seven deadly sins S3";False;False;;;;1610337975;;False;{};giu7pe4;False;t3_kuoq3c;False;False;t1_giu70ql;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giu7pe4/;1610387067;14;True;False;anime;t5_2qh22;;0;[]; -[];;;irisverse;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/usernamesarehard;light;text;t2_1dzbqjh4;False;False;[];;"I think the operative part here is the ""inspiring many other good works"" part. -I've yet to see any evidence of Mushoku Tensei doing the same.";False;False;;;;1610338001;;False;{};giu7r76;False;t3_kus5kt;False;True;t1_giu6i7a;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/giu7r76/;1610387133;1;True;False;anime;t5_2qh22;;0;[]; -[];;;reading_potato;;;[];;;;text;t2_3xi7xrdz;False;False;[];;"I hope so, I honestly didn't even expect that so many people would reply to my post. - - -I posted it mostly because the community was kind of aware of how some points would be seen by the mainstream reviewers, such as those from ANN, and found it funny how it happened exactly was predicted.";False;False;;;;1610338029;;False;{};giu7t61;False;t3_kus5kt;False;False;t1_giu65ig;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/giu7t61/;1610387183;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gogomagickitten;;;[];;;;text;t2_15cbfu;False;False;[];;I think I've seen fan made ecchi games better animated then this show.;False;False;;;;1610338120;;False;{};giu7zh8;False;t3_kukv89;False;False;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giu7zh8/;1610387312;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LegendaryRQA;;;[];;;;text;t2_hszyq;False;False;[];;"Just watched the first episode. - -My opinion: 2/10. Not as bad as Gibiate which is a hard 1. This at least had a cool fight in it and interesting enough plot. It's probably around Kemono Friends Levels of bad for me.";False;False;;;;1610338389;;False;{};giu8h6s;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giu8h6s/;1610387659;9;True;False;anime;t5_2qh22;;0;[]; -[];;;CyberiumShadow;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cyberiumshadow;light;text;t2_gb4uf;False;False;[];;2.95 already;False;False;;;;1610338499;;False;{};giu8oc4;False;t3_kuoq3c;False;False;t1_gitqsna;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giu8oc4/;1610387795;11;True;False;anime;t5_2qh22;;0;[]; -[];;;AnybodyMassive1610;;;[];;;;text;t2_5931nb9r;False;False;[];;Like nearly every movie from Studio Ghibli has great food and drink. Even Ponyo has beautiful ramen...;False;False;;;;1610338579;;False;{};giu8tjt;False;t3_kuru1v;False;True;t1_gitna71;/r/anime/comments/kuru1v/weird_request_does_anyone_have_any/giu8tjt/;1610387896;3;True;False;anime;t5_2qh22;;0;[]; -[];;;reading_potato;;;[];;;;text;t2_3xi7xrdz;False;False;[];;"It's the same in this case, it's a really good story about growth, responsibility, and actions and consequences, and redemption. I got heated before and I apologize. But really would like if you gave it a chance. - -I don't know which way the anime will go, but every person I know that read the novel got sucked into the story and couldn't stop.";False;False;;;;1610338743;;False;{};giu94b3;False;t3_kus5kt;False;False;t1_giu7r76;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/giu94b3/;1610388100;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnybodyMassive1610;;;[];;;;text;t2_5931nb9r;False;False;[];;"Princess Connect:ReDive - -Their adventurer group is a gourmet guild, one of the characters eats (a lot), and every episode is named after a dish - and it is pretty funny, too.";False;False;;;;1610338756;;False;{};giu956g;False;t3_kuru1v;False;True;t3_kuru1v;/r/anime/comments/kuru1v/weird_request_does_anyone_have_any/giu956g/;1610388115;2;True;False;anime;t5_2qh22;;0;[]; -[];;;turdfergusn;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/julzachu/;light;text;t2_n69js;False;False;[];;So from what I remember, I think they hired a director that only worked on live action stuff before because they wanted to make it \~feel like a live action\~.... but surprise, if you hire a bunch of people who dont understand how animation works to make an animation, its going to look amateurish and not good at all.;False;False;;;;1610338832;;False;{};giu9aa5;False;t3_kuoq3c;False;False;t1_giu75o3;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giu9aa5/;1610388214;12;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;Yep, the show is basically 24 minutes of that;False;False;;;;1610339179;;False;{};giu9y5b;True;t3_kuoq3c;False;False;t1_giu6rri;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giu9y5b/;1610388717;15;True;False;anime;t5_2qh22;;0;[]; -[];;;sabishyryu;;MAL;[];;http://myanimelist.net/animelist/Sabishiryu;dark;text;t2_h1hid;False;False;[];;People that use that argument only want to consider anime the shows that they like, but would never consider the Simpsons or Phineas and Ferb as an anime. Its an dishonest point.;False;False;;;;1610339312;;False;{};giua6xe;False;t3_kukv89;False;False;t1_gitscre;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giua6xe/;1610388891;9;True;False;anime;t5_2qh22;;0;[]; -[];;;WeeabooVoid;;;[];;;;text;t2_6hwibewj;False;False;[];;"Its nice how all of my favorites somehow ended up on the same elimination day. - -Sentimental Crisis - Kaguya Sama - -Fukashigi No Carte - Bunny Girl Senpai - -Dango Daikazoku - Clannad";False;False;;;;1610339511;;False;{};giuajy5;False;t3_kupcoh;False;True;t3_kupcoh;/r/anime/comments/kupcoh/best_ending_6_listen_to_salt_fourth_eliminations/giuajy5/;1610389162;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LegendaryRQA;;;[];;;;text;t2_hszyq;False;False;[];;In Japan both of those are considered anime.;False;True;;comment score below threshold;;1610339530;;False;{};giual55;False;t3_kukv89;False;True;t1_giua6xe;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giual55/;1610389185;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;SingularCheese;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/lonelyCheese;light;text;t2_rgv21;False;False;[];;After visiting the episode discussion threads, I came here to say plenty of English speaking watchers are making fun of it. Two weeks ago one of the biggest Chinese ani-tubers was already poking fun of the PV, so it's an international joke by this point.;False;False;;;;1610339642;;False;{};giuas8n;False;t3_kukv89;False;False;t1_gisj35z;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giuas8n/;1610389320;23;True;False;anime;t5_2qh22;;0;[]; -[];;;WeeabooVoid;;;[];;;;text;t2_6hwibewj;False;False;[];;"The anime ended off in a weird place. Doesn't make my love for it any less, I've read the manga and I will say that it's one of my favorites. - -We just need a season 2, all that it needs.";False;False;;;;1610339649;;False;{};giuasqi;False;t3_kum3pa;False;False;t3_kum3pa;/r/anime/comments/kum3pa/yuu_slowly_falling_for_touko_bloom_into_you/giuasqi/;1610389329;6;True;False;anime;t5_2qh22;;0;[]; -[];;;beargrimzly;;;[];;;;text;t2_tumwc;False;False;[];;A crunchyroll original turned out to be shit? Wow what a surprise. Who could have seen this coming?;False;False;;;;1610339763;;False;{};giuazy9;False;t3_kukv89;False;False;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giuazy9/;1610389472;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;BI01;;;[];;;;text;t2_zl6tr;False;False;[];;its a brand new studio lol;False;False;;;;1610339870;;False;{};giub6tl;False;t3_kuoq3c;False;False;t1_giu75o3;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giub6tl/;1610389604;4;True;False;anime;t5_2qh22;;0;[]; -[];;;yolo_swag_for_satan;;;[];;;;text;t2_2aloc4yu;False;False;[];;oh, oops.;False;False;;;;1610339917;;False;{};giub9v2;False;t3_kuoq3c;False;False;t1_giu9aa5;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giub9v2/;1610389663;7;True;False;anime;t5_2qh22;;0;[]; -[];;;SingularCheese;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/lonelyCheese;light;text;t2_rgv21;False;False;[];;I mean, Tonikawa also had some pretty cheap animations and was carried by the source material and voice acting. Crunchyroll's batting rate is not great.;False;False;;;;1610339963;;False;{};giubcyo;False;t3_kukv89;False;False;t1_gitm3pv;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giubcyo/;1610389723;24;True;False;anime;t5_2qh22;;0;[]; -[];;;JamieF4563;;;[];;;;text;t2_12an5n;False;False;[];;You can make full CGI work, it doesn't look as good as hand drawn 2D animation, but with some effort you can make something good out of it. This is what it looks like with no effort at all. The movement is just so unbelievably awful;False;False;;;;1610339975;;False;{};giubduz;False;t3_kukv89;False;True;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giubduz/;1610389738;2;True;False;anime;t5_2qh22;;0;[]; -[];;;yolo_swag_for_satan;;;[];;;;text;t2_2aloc4yu;False;False;[];;Uggghhhhh I forgot about Pupa uggggghhhhh.;False;False;;;;1610339992;;False;{};giubf47;False;t3_kuoq3c;False;False;t1_gitqaw1;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giubf47/;1610389763;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Slurms_McKenzie775;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/solis91;light;text;t2_g5vcr;False;False;[];;Berserk getting such a shitty anime adaptation is a crime against humanity.;False;False;;;;1610340003;;False;{};giubfvf;False;t3_kuoq3c;False;False;t1_giu3hox;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giubfvf/;1610389777;54;True;False;anime;t5_2qh22;;0;[]; -[];;;Lambo256;;;[];;;;text;t2_3jot49a9;False;False;[];;Nice;False;False;;;;1610340359;;False;{};giuc2q3;False;t3_kuoq3c;False;True;t1_gitvbdl;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuc2q3/;1610390291;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;Oishinbo;False;False;;;;1610340390;;False;{};giuc4mj;False;t3_kuru1v;False;True;t3_kuru1v;/r/anime/comments/kuru1v/weird_request_does_anyone_have_any/giuc4mj/;1610390328;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sabishyryu;;MAL;[];;http://myanimelist.net/animelist/Sabishiryu;dark;text;t2_h1hid;False;False;[];;"And yet they would never enter in any best anime or best character anime contest, and no one would ask for them. They are just not part of the anime community. - -If you asked a fan of Avatar or RWBY (the most obsessed fandom with that definition of anime) what are the top 5 anime movies with more revenue in Japan, none of them would ever mention Frozen.";False;False;;;;1610340749;;False;{};giucq45;False;t3_kukv89;False;False;t1_giual55;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giucq45/;1610390741;12;True;False;anime;t5_2qh22;;0;[]; -[];;;HelloMagikarphowRyou;;;[];;;;text;t2_11jn0d9;False;False;[];;There Is a Reason, Dango, and Shiori LETS GOOOOOOOOOOO;False;False;;;;1610340847;;False;{};giucw2a;False;t3_kupcoh;False;True;t3_kupcoh;/r/anime/comments/kupcoh/best_ending_6_listen_to_salt_fourth_eliminations/giucw2a/;1610390859;3;True;False;anime;t5_2qh22;;0;[]; -[];;;akeyjavey;;MAL;[];;http://myanimelist.net/animelist/akeyjavey;dark;text;t2_5qui7;False;False;[];;Wait, didn't the manga for this just start a few months ago?;False;False;;;;1610340857;;False;{};giucwo1;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giucwo1/;1610390870;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;"Ben-To - -Ristorante Paradisio";False;False;;;;1610340947;;False;{};giud1y0;False;t3_kuru1v;False;True;t3_kuru1v;/r/anime/comments/kuru1v/weird_request_does_anyone_have_any/giud1y0/;1610390977;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MejaBersihBanget;;;[];;;;text;t2_4a6wkvny;False;False;[];;The manga's been complete for a while, it ran from 2015 to 2019. Not sure why it's suddenly getting an anime.;False;False;;;;1610341234;;False;{};giudi5y;False;t3_kuoq3c;False;False;t1_giucwo1;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giudi5y/;1610391297;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Insecticide;;;[];;;;text;t2_a6x2b;False;False;[];;I was about to say I survived hand shakers and was going to ask what the deal about this one was but after checking the mal pages I noticed it somehow is 2 points worse than hand shakers so it must be really bad;False;False;;;;1610341432;;False;{};giudtj9;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giudtj9/;1610391514;1;True;False;anime;t5_2qh22;;0;[]; -[];;;akeyjavey;;MAL;[];;http://myanimelist.net/animelist/akeyjavey;dark;text;t2_5qui7;False;False;[];;Really? After looking up the title on r/manga I realized that chapter 1 of the translation came out over a year ago...Covidbrain got me fucked up;False;False;;;;1610341615;;False;{};giue3jy;False;t3_kuoq3c;False;True;t1_giudi5y;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giue3jy/;1610391712;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Iliansic;;;[];;;;text;t2_oaano;False;False;[];;Nah, production committee just thought it was a good idea to call live-action director on an anime production.;False;False;;;;1610341721;;False;{};giue9ht;False;t3_kuoq3c;False;False;t1_giu0hc1;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giue9ht/;1610391824;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Shame that the Manga has good art and cannot be compared to the trashy animation in the adaptation.;False;False;;;;1610342018;;1610380219.0;{};giueq5f;False;t3_kuoq3c;False;False;t1_git2wng;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giueq5f/;1610392154;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Kuramhan;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Kuramhan/;light;text;t2_esa7n;False;False;[];;The first episode tells you a lot. And people want to know what people are liking as soon as the season starts. If they hide the ratings, people would just look for seasonal impressions elsewhere.;False;False;;;;1610342115;;False;{};giuevik;False;t3_kuoq3c;False;False;t1_gitx6vs;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuevik/;1610392255;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"Ikr I felt the same. Someone in the discussion thread told me that the Manga is better and has good art so I'm reading that instead. - -Funny how I'm forced to read the Manga since the adaptation is so trashy.";False;False;;;;1610342144;;1610351047.0;{};giuex1k;False;t3_kuoq3c;False;False;t1_gitvo2w;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuex1k/;1610392284;21;True;False;anime;t5_2qh22;;0;[]; -[];;;linkinstreet;;;[];;;;text;t2_71lbm;False;True;[];;It's like watching a Final Year animated project, but instead of being made by the whole 10 person team, 90% was made by just one person and the rest just appeared the day before it was supposed to be presented to the lecturer;False;False;;;;1610342289;;False;{};giuf558;False;t3_kuoq3c;False;False;t1_gitu6em;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuf558/;1610392453;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Unabatedtuna;;;[];;;;text;t2_dscmn;False;False;[];;Handshakers made me motion sick. I usually finish everything I watch, but it made me literally vomit so.... guess Im passin on this one;False;False;;;;1610342321;;False;{};giuf6u8;False;t3_kuoq3c;False;True;t1_giudtj9;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuf6u8/;1610392485;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cin_anime;;;[];;;;text;t2_93wi75rs;False;False;[];;Video is good, I went and watched it on YT;False;False;;;;1610342436;;False;{};giufd4g;False;t3_kuq508;False;True;t3_kuq508;/r/anime/comments/kuq508/after_watching_rascal_does_not_dream_of_bunny/giufd4g/;1610392607;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cin_anime;;;[];;;;text;t2_93wi75rs;False;False;[];;went and watched your video on YT. Very much Feel good vibes;False;False;;;;1610342675;;False;{};giufpvv;False;t3_kuotts;False;True;t3_kuotts;/r/anime/comments/kuotts/wholesome_anime_to_brighten_your_day/giufpvv/;1610392860;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BigDickChromMain69;;;[];;;;text;t2_7n2eug5u;False;False;[];;">2014: Akira Natsume seems to almost have a phobia of electrical devices while also being very good at diagnosing them. He resolves to change himself for the better and get a girlfriend like his older brother did. ...But then Akira suddenly dies in an accident. 16 years later a special policewoman and her android partner retrieve and activate a highly advanced AI and superweapon called EX-ARM and put it into full control of their ship as a last resort. Turns out the AI is actually just Akira's brain! - -what";False;False;;;;1610342738;;False;{};giuft96;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuft96/;1610392927;103;True;False;anime;t5_2qh22;;0;[]; -[];;;FarrelMFajar;;;[];;;;text;t2_13bxx0;False;False;[];;Wait this is an adaptation? I thought it's an anime original. I feel sorry for the mangaka, I wonder if they pretend the anime never happen after this.;False;False;;;;1610342805;;False;{};giufwsi;False;t3_kuoq3c;False;False;t1_git2wng;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giufwsi/;1610393004;7;True;False;anime;t5_2qh22;;0;[]; -[];;;zxHellboyxz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Mattinator95;light;text;t2_27t5u6vk;False;False;[];;Isn't it made by Japanese staff ?;False;False;;;;1610342917;;False;{};giug2rw;False;t3_kukv89;False;False;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giug2rw/;1610393126;10;True;False;anime;t5_2qh22;;0;[]; -[];;;EasternOtaku1422;;;[];;;;text;t2_2vuogh9i;False;False;[];;">probably around Kemono Friends Levels of bad for me -both S1 and S2?";False;False;;;;1610342989;;False;{};giug6kz;False;t3_kuoq3c;False;False;t1_giu8h6s;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giug6kz/;1610393205;4;True;False;anime;t5_2qh22;;0;[]; -[];;;myleggggggg;;;[];;;;text;t2_381o71zo;False;False;[];;i read the manga after i finished watching the anime. its hella good;False;False;;;;1610343129;;False;{};giuge59;False;t3_kum3pa;False;False;t3_kum3pa;/r/anime/comments/kum3pa/yuu_slowly_falling_for_touko_bloom_into_you/giuge59/;1610393357;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MejaBersihBanget;;;[];;;;text;t2_4a6wkvny;False;False;[];;Then it took a while for a scanlation group to pick it up.;False;False;;;;1610343222;;False;{};giugj3a;False;t3_kuoq3c;False;False;t1_giue3jy;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giugj3a/;1610393449;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Triptacraft;;;[];;;;text;t2_6ex49dy8;False;False;[];;The OP made it look like they were really showing off the fact that they were using 3D animation...;False;False;;;;1610343428;;False;{};giugu54;False;t3_kuoq3c;False;False;t1_gitvo2w;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giugu54/;1610393656;6;True;False;anime;t5_2qh22;;0;[]; -[];;;banned-for-no_reason;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/--Degenerate--;dark;text;t2_6pics463;False;False;[];;Should I watch Gibiate? Like is it too bad it's funny? Or just bland?;False;False;;;;1610343718;;False;{};giuh9h4;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuh9h4/;1610393947;1;True;False;anime;t5_2qh22;;0;[]; -[];;;imaforgetthis;;;[];;;;text;t2_2d7gcwde;False;False;[];;"It's only fair that the most stacked anime season ever also happens to air the worst anime ever. - -*Perfectly balanced, as all things should be.*";False;False;;;;1610344088;;False;{};giuhsct;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuhsct/;1610394321;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Diabolos_Prince;;;[];;;;text;t2_xnemyss;False;False;[];;Arifureta is much more better if you compare that to this monstrosity.;False;False;;;;1610344667;;False;{};giuilmq;False;t3_kuoq3c;False;False;t1_giu3lk5;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuilmq/;1610394904;24;True;False;anime;t5_2qh22;;0;[]; -[];;;cojoB_;;;[];;;;text;t2_27b35u6d;False;False;[];;Saw the animation and after finishing gibiate in summer I couldn't force myself to do it again;False;False;;;;1610344688;;False;{};giuimnk;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuimnk/;1610394924;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KorekaBii;;skip7;[];;;dark;text;t2_66h9fxxk;False;False;[];;"I was always curious as to what the Japanese thought of GIBIATE. Especially since it was being sold as a ""celebration of Japanese culture!"" (trying to tie into the now defunct 2020 Olympics)";False;False;;;;1610344693;;False;{};giuimwn;False;t3_kukv89;False;False;t1_gisj35z;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giuimwn/;1610394930;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Goomoonryoung;;;[];;;;text;t2_glalv;False;False;[];;Yukoku no Moriarty;False;False;;;;1610344704;;False;{};giuineb;False;t3_kunxad;False;False;t3_kunxad;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/giuineb/;1610394938;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GonvVasq;;;[];;;;text;t2_c4mzn;False;False;[];;That looks like RWBY;False;False;;;;1610344909;;False;{};giuixln;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuixln/;1610395155;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Critical-Film;;;[];;;;text;t2_kexbnai;False;False;[];;Yes it was a crime. I never have faith in humanity ever.;False;False;;;;1610345064;;False;{};giuj56u;False;t3_kuoq3c;False;False;t1_giubfvf;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuj56u/;1610395296;14;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;It's a plot point that he can't do it with them so yes. Anything that happens is still softcore;False;False;;;;1610345131;;False;{};giuj8gb;False;t3_kuporv;False;True;t1_giu5kb6;/r/anime/comments/kuporv/just_started_watching_monster_museme/giuj8gb/;1610395356;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Admirable-Web-3192;;;[];;;;text;t2_8twmgjot;False;False;[];;https://lmgtfy.app/?q=OG;False;True;;comment score below threshold;;1610345174;;False;{};giujaiu;False;t3_kukv89;False;False;t1_giu48he;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giujaiu/;1610395395;-12;False;False;anime;t5_2qh22;;0;[]; -[];;;s0ulf000d;;;[];;;;text;t2_8ip1ogav;False;False;[];;Are you ok?;False;False;;;;1610345401;;False;{};giujloo;False;t3_kukv89;False;False;t1_giujaiu;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giujloo/;1610395612;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Uyq62048;;;[];;;;text;t2_3kvtpc3n;False;False;[];;....Not really.;False;False;;;;1610345564;;False;{};giujtm7;False;t3_kukv89;False;True;t1_giug2rw;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giujtm7/;1610395790;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;RobinTheKing;;;[];;;;text;t2_t7zl0sg;False;False;[];;This is a historic moment;False;False;;;;1610345593;;False;{};giujv2e;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giujv2e/;1610395817;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EstebanIsAGamerWord;;;[];;;;text;t2_4vhvkb76;False;False;[];;I would consider Griffith grey too.;False;False;;;;1610345929;;False;{};giukbb6;False;t3_kunxad;False;True;t1_git0hq3;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/giukbb6/;1610396143;1;True;False;anime;t5_2qh22;;0;[]; -[];;;scykl3;;skip7;[];;;dark;text;t2_7y96hlr5;False;False;[];;"\*depression cured -arigato";False;False;;;;1610346141;;False;{};giukle3;False;t3_kuotts;False;True;t3_kuotts;/r/anime/comments/kuotts/wholesome_anime_to_brighten_your_day/giukle3/;1610396344;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BlueDragon101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Xcal1bur?status=7&order=4&orde";light;text;t2_11q4nx;False;False;[];;As someone who read GoH, Jesus fuck that was butchered. Like, episode 12 covered 14 chapters and cut out 2 whole fights. Namely Daewi vs Ma Bora (who now has no reason to exist in the anime and there’s no payoff to her confronting Daewi in the bathroom) and the first stage of the Jegal final boss fight where he makes a fuckton of clones and Mori first uses Totally Not Kaioken.;False;False;;;;1610346178;;False;{};giukn5g;False;t3_kukv89;False;False;t1_gisvxf7;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giukn5g/;1610396377;10;True;False;anime;t5_2qh22;;0;[]; -[];;;notathrowaway75;;MAL;[];;https://myanimelist.net/profile/notathrowaway75;dark;text;t2_fomut;False;False;[];;I read the manhwa after each episode and it was insane how much they cut out.;False;False;;;;1610346344;;False;{};giukuzp;False;t3_kukv89;False;False;t1_giukn5g;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giukuzp/;1610396525;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LegendaryRQA;;;[];;;;text;t2_hszyq;False;False;[];;S1, haven't seen S2 cuz i heard it was even worse.;False;False;;;;1610346966;;False;{};giulobb;False;t3_kuoq3c;False;True;t1_giug6kz;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giulobb/;1610397092;1;True;False;anime;t5_2qh22;;0;[]; -[];;;throwaway95135745685;;;[];;;;text;t2_36m1bzrr;False;False;[];;Wonder if MAL will decide to delete the raid votes again;False;False;;;;1610347472;;False;{};giumbnd;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giumbnd/;1610397540;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;Talentless Nana, can’t really explain how watch episode 1;False;False;;;;1610347884;;False;{};giumugg;False;t3_kunxad;False;True;t3_kunxad;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/giumugg/;1610397948;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Espada_6;;;[];;;;text;t2_sb5ghaa;False;False;[];;Gibiate is still the anti-goat until ex arm finishes airing. MAL scores after 1 episode are pointless;False;False;;;;1610348084;;False;{};giun3ii;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giun3ii/;1610398131;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Chinbie;;;[];;;;text;t2_12h6erpy;False;False;[];;"AOT be like: DECLARATION OF WAR - -GIBIATE: 3.93 MAL score (current) - -Ex ARM: 2.86 MAL score (current) - -we have some WAR of scores going on right now... hahaha";False;False;;;;1610348097;;False;{};giun44l;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giun44l/;1610398142;46;True;False;anime;t5_2qh22;;0;[]; -[];;;Chinbie;;;[];;;;text;t2_12h6erpy;False;False;[];;this confirms it-- EX ARM IS THE ANIME OF THE DECADE.... hahaha;False;False;;;;1610348155;;False;{};giun6qv;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giun6qv/;1610398194;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610348176;;False;{};giun7qr;False;t3_kuoq3c;False;True;t1_giu0hc1;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giun7qr/;1610398219;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Chinbie;;;[];;;;text;t2_12h6erpy;False;False;[];;arifureta is nothing compared to this masterpiece... hahaha;False;False;;;;1610348192;;False;{};giun8h7;False;t3_kuoq3c;False;False;t1_giu3lk5;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giun8h7/;1610398232;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Chinbie;;;[];;;;text;t2_12h6erpy;False;False;[];;"EX arm > AOT, Re Zero, Promise Neverland, Dr Stone, Horimiya, jujutsu kaisen combined... hahaha";False;False;;;;1610348275;;False;{};giunc96;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giunc96/;1610398309;18;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;"All of Crunchyrolls Originals have had them as part of the production committee so investing in the show, although I'm not sure on the funding setup of the likes of Onyx Equinox. - -Netflix generally just pay for streaming rights really early on, it's very rare you'll see Netflix specifically mentioned in the production committee and rather it'll be in association with them.";False;False;;;;1610348547;;False;{};giunok0;False;t3_kukv89;False;False;t1_gita64u;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giunok0/;1610398558;8;True;False;anime;t5_2qh22;;0;[]; -[];;;AikaSkies;;;[];;;;text;t2_3wbty3ew;False;False;[];;"Don't remind me that its been over 9 years since the last great mainline game.. - -Let's hope they come through this year, they've had 4 years to develop it. I just want a game that's at least on the same graphical level as Unleashed, ideally higher.";False;False;;;;1610348696;;False;{};giunv65;False;t3_kukv89;False;False;t1_gisqwo1;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giunv65/;1610398691;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;"In regards to God of Highschool there's only 2 names on the production committee as well, Crunchyroll and Webtoons with Crunchyroll given top billing. - -Netflix are rarely on the production committee and their original works usually just say in association with Netflix or something of that ilk instead.";False;False;;;;1610348768;;False;{};giunybm;False;t3_kukv89;False;True;t1_githu5t;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giunybm/;1610398752;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sanic_de_hegehog;;MAL;[];;https://myanimelist.net/profile/sanic_de_hegehog;dark;text;t2_e028fcj;False;False;[];;Hard diss on RWBY there mate;False;False;;;;1610348819;;False;{};giuo0kj;False;t3_kuoq3c;False;True;t1_giuixln;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuo0kj/;1610398796;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lost-NotFound;;;[];;;;text;t2_57xayenq;False;False;[];;how people at CR that approved giabiate still working and approve this lol;False;False;;;;1610349095;;False;{};giuocz5;False;t3_kukv89;False;True;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giuocz5/;1610399034;1;True;False;anime;t5_2qh22;;0;[]; -[];;;River_sounds;;;[];;;;text;t2_y4vd1;False;False;[];;I ain't never seen an anime start at 2.86 on MAL. The lowest i usually see when a new anime starts airing is a 5 or 6.;False;False;;;;1610349170;;False;{};giuogci;False;t3_kukv89;False;False;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giuogci/;1610399102;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hintofinsanity;;;[];;;;text;t2_b5isf;False;False;[];;"Moriarty the Patriot - -Redo of Healer (first episode airs with a week or so)";False;False;;;;1610349402;;False;{};giuoqfr;False;t3_kunxad;False;True;t3_kunxad;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/giuoqfr/;1610399295;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DarthDookieMan;;;[];;;;text;t2_1dejjq00;False;False;[];;The word “kinda” is really understating it to be honest.;False;False;;;;1610349718;;False;{};giup3u9;False;t3_kunxad;False;False;t1_giu00id;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/giup3u9/;1610399556;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610349855;;False;{};giupac4;False;t3_kurhzx;False;True;t3_kurhzx;/r/anime/comments/kurhzx/redo_of_healer_cultured_version/giupac4/;1610399671;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Prudent_Handle17, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610349856;moderator;False;{};giupacz;False;t3_kurhzx;False;True;t1_giupac4;/r/anime/comments/kurhzx/redo_of_healer_cultured_version/giupacz/;1610399671;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Prudent_Handle17;;;[];;;;text;t2_7dlf17xq;False;False;[];;also, it might not work if you have adblockers on but don't worry they wont interrupt the anime just banners under the videos if you fullscreen you'll be fine;False;False;;;;1610349962;;False;{};giupfk3;False;t3_kurhzx;False;True;t1_giupac4;/r/anime/comments/kurhzx/redo_of_healer_cultured_version/giupfk3/;1610399764;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kuddlesworth9419;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kuddlesworth;light;text;t2_btage;False;False;[];;I've not seen it yet, now I'm excited.;False;False;;;;1610349987;;False;{};giupgry;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giupgry/;1610399787;3;True;False;anime;t5_2qh22;;0;[]; -[];;;n080dy123;;;[];;;;text;t2_139f6y;False;False;[];;"The thing is ""Crunchyroll Original"" means very little. Tower of God and God of High School were ""Crunchyroll Originals"" and both of them looked great, hell GoHS was a visual fucking spectacle that made the entire thing a great watch ever after the story went to shit in the back half. CR also claimed In/Spectre as a ""CR Original"" as well iirc, lotta people loved that. - -Edit: Oh yeah, and Tonikawa, people LOVED Tonikawa.";False;False;;;;1610350164;;1610350846.0;{};giuppme;False;t3_kuoq3c;False;False;t1_giu6mqo;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuppme/;1610399945;102;True;False;anime;t5_2qh22;;0;[]; -[];;;n080dy123;;;[];;;;text;t2_139f6y;False;False;[];;No Ex-Arm is exponentially worse. And I FELL ASLEEP during the first episode of Arifureta.;False;False;;;;1610350258;;False;{};giupusb;False;t3_kuoq3c;False;False;t1_giu3lk5;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giupusb/;1610400054;5;True;False;anime;t5_2qh22;;0;[]; -[];;;n080dy123;;;[];;;;text;t2_139f6y;False;False;[];;Oh shit he did a trailer stream? I never saw that since he must not have put it up in YT. I guess that makes sense, very high risk of copyright claims.;False;False;;;;1610350316;;False;{};giupxvn;False;t3_kuoq3c;False;True;t1_giu70ql;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giupxvn/;1610400108;3;True;False;anime;t5_2qh22;;0;[]; -[];;;n080dy123;;;[];;;;text;t2_139f6y;False;False;[];;True but low initial ratings scare people off, and some hyped up adaptations or sequels just get snubbed by people who only watch the first episode. See: the Magia Record anime, which got bombed because people were angry it wasn't a direct sequel to the original Madoka Magica.;False;False;;;;1610350527;;False;{};giuq8iq;False;t3_kuoq3c;False;True;t1_giuevik;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuq8iq/;1610400304;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;Also, if you're a manga reader the foreshadowing it has is amazing(well that's true for every opening and ending in aot though);False;False;;;;1610350599;;False;{};giuqcb9;False;t3_kumeck;False;True;t1_giss1yb;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/giuqcb9/;1610400371;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Devin__;;;[];;;;text;t2_hx0lq;False;False;[];;I feel bad for the author... There's terrible adaptations, then there's this...;False;False;;;;1610350719;;False;{};giuqjbm;False;t3_kuoq3c;False;False;t1_git6fnb;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuqjbm/;1610400486;81;True;False;anime;t5_2qh22;;0;[]; -[];;;n080dy123;;;[];;;;text;t2_139f6y;False;False;[];;"That means nothing. God of High School, Tonikawa, Tower of God, and In/Spectre were all ""Crunchyroll Originals"" which varied from ""okay"" to ""great"".";False;False;;;;1610350773;;False;{};giuqmd5;False;t3_kuoq3c;False;False;t1_giu3561;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuqmd5/;1610400538;6;True;False;anime;t5_2qh22;;0;[]; -[];;;n080dy123;;;[];;;;text;t2_139f6y;False;False;[];;Studio Visual Flight, who have absolutely nothing to their name.;False;False;;;;1610350928;;False;{};giuqutn;False;t3_kuoq3c;False;False;t1_giu75o3;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuqutn/;1610400679;4;True;False;anime;t5_2qh22;;0;[]; -[];;;n080dy123;;;[];;;;text;t2_139f6y;False;False;[];;At least the people who made RWBY knew what they were doing. Season 1 kinda looked like shit but it still had some totally awesome fight scenes, and at least worked well enough outside that. This show doesn't even have functioning lipsync, on the 2D or the 3D models.;False;False;;;;1610351088;;False;{};giur3ij;False;t3_kuoq3c;False;False;t1_giuixln;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giur3ij/;1610400835;10;True;False;anime;t5_2qh22;;0;[]; -[];;;PM_ME_YOUR_SPUDS;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/voodoochile/;light;text;t2_iw23v;False;False;[];;"I'm late on this, but did seriously nobody mention Youjo Senki starring Tanya ""Well see, it's not _technically_ a War Crime"" Degurechaff?";False;False;;;;1610351331;;False;{};giurh6t;False;t3_kunxad;False;False;t3_kunxad;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/giurh6t/;1610401060;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;Crunchy seems to be alternating between a good original and bad one, good are pretty solid but holy the fuck the bad are BAD;False;False;;;;1610352026;;False;{};giusj0c;False;t3_kuoq3c;False;False;t1_giuppme;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giusj0c/;1610401721;19;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptainRedBeard35;;;[];;;;text;t2_2vxt6oiv;False;False;[];;I really enjoyed that scene too! There just so many good moments between them that you cant help but fall in love with them;False;False;;;;1610352056;;False;{};giuskx7;True;t3_kum3pa;False;True;t1_gistt8b;/r/anime/comments/kum3pa/yuu_slowly_falling_for_touko_bloom_into_you/giuskx7/;1610401754;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;Lets gooooo;False;False;;;;1610352096;;False;{};giusn5z;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giusn5z/;1610401790;3;True;False;anime;t5_2qh22;;0;[]; -[];;;islamu015;;;[];;;;text;t2_3xg5g3iy;False;False;[];;hello, Life sucks;False;False;;;;1610352270;;False;{};giuswie;False;t3_kuotts;False;True;t3_kuotts;/r/anime/comments/kuotts/wholesome_anime_to_brighten_your_day/giuswie/;1610401977;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;...and produced for Japanese audience. Without that you are saying that many outsourced American cartoons are anime;False;False;;;;1610352285;;False;{};giusxb1;False;t3_kukv89;False;False;t1_gitwil2;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giusxb1/;1610401998;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610352765;;False;{};giutn4n;False;t3_kurhzx;False;True;t3_kurhzx;/r/anime/comments/kurhzx/redo_of_healer_cultured_version/giutn4n/;1610402468;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Prudent_Handle17, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610352766;moderator;False;{};giutn5r;False;t3_kurhzx;False;False;t1_giutn4n;/r/anime/comments/kurhzx/redo_of_healer_cultured_version/giutn5r/;1610402469;1;False;False;anime;t5_2qh22;;0;[]; -[];;;OctavePearl;;;[];;;;text;t2_76v4vt7b;False;False;[];;But Kemono Friends was 10/10;False;False;;;;1610352813;;False;{};giutpmv;False;t3_kuoq3c;False;False;t1_giu8h6s;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giutpmv/;1610402510;11;True;False;anime;t5_2qh22;;0;[]; -[];;;sitslikenami;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/snowybxt;light;text;t2_6xa74yt9;False;False;[];;"Didn't see it. Never heard of it. Watched [the PV on MAL](https://www.youtube.com/watch?v=gTX3wT5ynec) because of this thread and that convinced me to never waste time with it. - -[What is this even?](https://twitter.com/Hi3cchi/status/1348312212750950407)";False;False;;;;1610352966;;1610353229.0;{};giuty13;False;t3_kuoq3c;False;False;t1_gitu6em;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuty13/;1610402655;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;I swear to god, people should stop saying that Arifureta is one of the worst anime ever. It even was top 1 on bilibili iirc and got another season because of popularity;False;False;;;;1610353080;;False;{};giuu43v;False;t3_kuoq3c;False;False;t1_giu3lk5;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuu43v/;1610402757;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Mitosis;;;[];;;;text;t2_4ck3g;False;False;[];;If you're shitting on Tonikawa your standard for seasonal anime is ridiculous. Not every show is going to be a timeless masterpiece.;False;False;;;;1610353242;;False;{};giuucew;False;t3_kukv89;False;True;t1_giubcyo;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giuucew/;1610402919;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Cryzzalis;;MAL a-amq;[];;http://myanimelist.net/animelist/Charaxify;dark;text;t2_7j04d;False;False;[];;Fwiw it's the laughing stock of the west too.;False;False;;;;1610353402;;False;{};giuul4o;False;t3_kukv89;False;True;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giuul4o/;1610403073;3;True;False;anime;t5_2qh22;;0;[]; -[];;;n080dy123;;;[];;;;text;t2_139f6y;False;False;[];;"It's also worth noting that CR is one of 6 companies credited as ""producers"" for this. CR isn't responsible for this mess, at least not purely them";False;False;;;;1610353442;;False;{};giuunb5;False;t3_kukv89;False;False;t1_gitm3pv;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giuunb5/;1610403110;14;True;False;anime;t5_2qh22;;0;[]; -[];;;n080dy123;;;[];;;;text;t2_139f6y;False;False;[];;"Because Crunchyroll is one of 6 companies credited as ""producers"" for the show. It's not like this show was made by a board of people at CR. - -Regardless that's the narrative people are gonna push cuz so many people hate CR so much for some reason, and they don't know any better.";False;False;;;;1610353559;;False;{};giuutcx;False;t3_kukv89;False;False;t1_gisjzwq;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giuutcx/;1610403207;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Lazy_Sans;;;[];;;;text;t2_14i72c;False;False;[];;I read several chapters, it's ok, but not some underrated gem.;False;False;;;;1610353854;;False;{};giuv8mp;False;t3_kuoq3c;False;False;t1_git6fnb;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuv8mp/;1610403440;27;True;False;anime;t5_2qh22;;0;[]; -[];;;HappyVlane;;;[];;;;text;t2_6cxhc;False;False;[];;Then you aren't watching a lot of anime, because anime is full of CGI.;False;False;;;;1610354222;;False;{};giuvr6e;False;t3_kukv89;False;False;t1_giu2qji;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giuvr6e/;1610403813;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Lil-Chem;;;[];;;;text;t2_3280exhk;False;False;[];;The lip flaps...They haunt my nightmares;False;False;;;;1610354342;;False;{};giuvvwb;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuvvwb/;1610403904;7;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;CR, Netflix... someone should standardise what “Original” means because right now it sure as fuck means nothing.;False;False;;;;1610354367;;False;{};giuvws4;False;t3_kuoq3c;False;False;t1_giuppme;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuvws4/;1610403924;75;True;False;anime;t5_2qh22;;0;[]; -[];;;sdd264;;;[];;;;text;t2_1g5wqrbo;False;False;[];;"Here it comes -https://i.kym-cdn.com/photos/images/facebook/000/039/120/1265680768214.jpg";False;False;;;;1610354415;;False;{};giuvyij;False;t3_kupcoh;False;False;t3_kupcoh;/r/anime/comments/kupcoh/best_ending_6_listen_to_salt_fourth_eliminations/giuvyij/;1610403957;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeGirlMariam;;;[];;;;text;t2_5k8efnfk;False;False;[];;"Moriarty the patroit -I also recommend to read the webtoon 'I am the grim reaper'. It tackles this in a really good way";False;False;;;;1610354497;;False;{};giuw3fk;False;t3_kunxad;False;True;t3_kunxad;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/giuw3fk/;1610404030;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Imintoomanyfandoms12;;;[];;;;text;t2_74st6ic3;False;False;[];;Thanks for your help;False;False;;;;1610354515;;False;{};giuw4gk;True;t3_kupgdx;False;True;t1_gitdm9i;/r/anime/comments/kupgdx/hello_i_am_new_here/giuw4gk/;1610404047;1;True;False;anime;t5_2qh22;;0;[]; -[];;;n080dy123;;;[];;;;text;t2_139f6y;False;False;[];;Right? It's confusing as fuck.;False;False;;;;1610354763;;False;{};giuwh5v;False;t3_kuoq3c;False;False;t1_giuvws4;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuwh5v/;1610404252;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Vinirik;;;[];;;;text;t2_j2s4l;False;False;[];;Both of those were Korean comics. They made their money from first stealing Japanese shows, before they started licensing them. Maybe support the people who made your company what it is.;False;True;;comment score below threshold;;1610354776;;False;{};giuwhyv;False;t3_kukv89;False;True;t1_gisvxf7;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giuwhyv/;1610404263;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;Vinirik;;;[];;;;text;t2_j2s4l;False;False;[];;Galaxy brain: Crunchyroll published ex-arm because they are involved in a money laundering scheme.;False;False;;;;1610354873;;False;{};giuwnd5;False;t3_kukv89;False;True;t1_git7yi1;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giuwnd5/;1610404343;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;NakolHira;;;[];;;;text;t2_5mvpkj1m;False;False;[];;I have asked few of my friends who didn’t use MAL before to open an account and then give it a 1 😌;False;True;;comment score below threshold;;1610354909;;False;{};giuwp3w;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuwp3w/;1610404370;-15;True;False;anime;t5_2qh22;;0;[]; -[];;;HitsuWTG;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;http://myanimelist.net/profile/Hitsu;light;text;t2_i37oi;False;False;[];;Mania was a thing, you know. Especially after Denuvo got removed from the PC version. Then again, you could make a point that it was done by a different team, I guess.;False;False;;;;1610354939;;False;{};giuwqkp;False;t3_kukv89;False;False;t1_giu3f3r;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giuwqkp/;1610404396;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Siri2611;;;[];;;;text;t2_73wxd26r;False;False;[];;How about we all rate this 10 and make it no 1 on the list. That would be hilarious;False;True;;comment score below threshold;;1610355272;;False;{};giux7qa;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giux7qa/;1610404673;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;MetaThPr4h;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MetaThPr4h/;light;text;t2_fbwjt;False;False;[];;I personally love keeping track of how scores move over time since statistics appeal to me really hard... but as a fan of cute girls/idol anime I sure as hell know how you feel, most start below the 7/10 on MAL and from there few recover, I'm sure people see their initial score and nope out q_q;False;False;;;;1610355512;;False;{};giuxjub;False;t3_kuoq3c;False;True;t1_gitx6vs;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuxjub/;1610404864;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gty567fr;;;[];;;;text;t2_5xkqe0q3;False;False;[];;So my overall assumption is that goku wouldn't take issei seriously so wouldn't start the fight at his strongest. So since issei can double his own power and half the power of others by the time goku realise what's going on issei will have a close enough power level in order to survive longer and then the longer he lives the easier it is for him to win. Maths is on the side of issei;False;False;;;;1610355805;;False;{};giuxy0a;True;t3_kuqk3x;False;True;t3_kuqk3x;/r/anime/comments/kuqk3x/goku_vs_issei_from_high_school_dxd/giuxy0a/;1610405093;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Neidhardto;;;[];;;;text;t2_7m4w539t;False;False;[];;No idea who Hiecchi is, but they seem to be under the impression this is a completely western made animation, and have no idea it's a Japanese studio(lots of japanese production companies outside of just crunchyroll too). I'd avoid using them as a source for news or information in the future if they can't even do basic research on that.;False;False;;;;1610355893;;False;{};giuy29v;False;t3_kukv89;False;False;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giuy29v/;1610405160;10;True;False;anime;t5_2qh22;;0;[]; -[];;;slimes007;;;[];;;;text;t2_tgoqs;False;False;[];;Hilarious to know that Crunchyroll has both the second and first lowest anime and them being Crunchyroll originals. There were some good originals but they are more likely to be bad. Not just bad but some of the worst anime ever.;False;False;;;;1610356107;;False;{};giuyb9d;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuyb9d/;1610405317;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hat_Machine;;;[];;;;text;t2_4mah6vru;False;False;[];;Havent seen anyone promote Kimi to Deaeru Hi yet so I'm here to tell you I think it's the most underrated ED here and everyone should give it a listen;False;False;;;;1610356135;;False;{};giuyc8b;False;t3_kupcoh;False;True;t3_kupcoh;/r/anime/comments/kupcoh/best_ending_6_listen_to_salt_fourth_eliminations/giuyc8b/;1610405341;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheFiftGuy;;;[];;;;text;t2_rvzmq;False;False;[];;"It has officially hit the lowest ranked ""TV Show"" on MAL";False;False;;;;1610356489;;False;{};giuyoof;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuyoof/;1610405596;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlitzMcKrieg;;;[];;;;text;t2_b5wt2;False;False;[];;"Anybody else notice the first episode has a shot for shot recreation of Kingsman in it? - -[Take a look.](https://imgur.com/a/A3K46rF)";False;False;;;;1610356579;;False;{};giuyrv8;False;t3_kukv89;False;False;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giuyrv8/;1610405653;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Gmayor61;;;[];;;;text;t2_hsup8;False;False;[];;"I've found that very roughly, 7 times out of 10 a shoddy anime adaptation just doesn't do the original story much service even if it's a somewhat average one. - -Seeing people give the story a lot of flak for something out of the actual author's hands sucks, doesn't help that a lot of redditors prefer to stick their heads up their asses and pretend the original material doesn't exist.";False;False;;;;1610357003;;False;{};giuz6yw;False;t3_kuoq3c;False;False;t1_git6fnb;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuz6yw/;1610405931;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Jagacin;;;[];;;;text;t2_13054n;False;False;[];;It's incredible how they could mess it up so badly when it's based off a source material that's a literal masterpiece. Reminds me of the M. Night Shyamalan directed Avatar The last Airbender movie lol. How do they manage to take a beloved series with a universally praised story and mess it up to such an unimaginable extent? It's like... the hard part is already done for you, just sitting there on your lap lol. Berserk deserved better.;False;False;;;;1610357267;;1610366568.0;{};giuzg9c;False;t3_kuoq3c;False;False;t1_giubfvf;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuzg9c/;1610406118;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Gmayor61;;;[];;;;text;t2_hsup8;False;False;[];;"But it was as far as adaptations go, it was a rushed clusterfuck and doesn't do even 10% justice to the source material. - -Can't speak for bilibili users but I still watched it just to see the characters voiced and some select scenes animated, as shoddy as it was.";False;False;;;;1610357416;;False;{};giuzlhe;False;t3_kuoq3c;False;False;t1_giuu43v;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuzlhe/;1610406214;9;True;False;anime;t5_2qh22;;0;[]; -[];;;asslavz;;;[];;;;text;t2_6z9yqdla;False;False;[];;It's like they made this specifically to be bad;False;False;;;;1610357587;;False;{};giuzrec;False;t3_kuoq3c;False;False;t1_giugu54;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuzrec/;1610406321;6;True;False;anime;t5_2qh22;;0;[]; -[];;;CritSrc;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/;light;text;t2_h3ztt;False;False;[];;It just means that they also commissioned it for some kind of limited exclusivity in their regional licensing agreement or the sort. The rest is marketing fluff.;False;False;;;;1610357714;;False;{};giuzvr2;False;t3_kuoq3c;False;False;t1_giuvws4;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giuzvr2/;1610406401;39;True;False;anime;t5_2qh22;;0;[]; -[];;;BearbertDondarrion;;;[];;;;text;t2_30hjvye;False;False;[];;Crunchyroll doesn’t make them, they partially fun their production. It doesn’t correlate at all with quality;False;False;;;;1610358219;;False;{};giv0d2d;False;t3_kuoq3c;False;False;t1_giusj0c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giv0d2d/;1610406714;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Gmayor61;;;[];;;;text;t2_hsup8;False;False;[];;"It feels as if crunchyroll just provides a bit extra pocket change to random shows which gives the studios some leeway to throw together something to keep hands busy. - -On rare occasions they pitch in to something with a sizable following so the anime is decent but most of the time they're just throwing money in the dark and a gibiate comes out. I genuinely can't tell what's going through the minds of the CR business people. Kinda suspecting that nothing much does. - -Real question is, did Ex-arm happen _with_ sony's permission or not?";False;False;;;;1610358228;;False;{};giv0dch;False;t3_kuoq3c;False;True;t1_giuppme;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giv0dch/;1610406720;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BearbertDondarrion;;;[];;;;text;t2_30hjvye;False;False;[];;That’s the Netflix originals. Crunchyroll is on the production commitee when it is a Crunchyroll original.;False;False;;;;1610358278;;False;{};giv0f1o;False;t3_kuoq3c;False;False;t1_giuzvr2;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giv0f1o/;1610406751;21;True;False;anime;t5_2qh22;;0;[]; -[];;;BearbertDondarrion;;;[];;;;text;t2_30hjvye;False;False;[];;I know Togashi praised the manga at some point, he also praised Demon Slayer so I’m not taking his word as gospel( no hate towards Demon Slayer from me, just found it middle of the road);False;False;;;;1610358368;;False;{};giv0i5d;False;t3_kuoq3c;False;True;t1_git2wng;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giv0i5d/;1610406807;3;True;False;anime;t5_2qh22;;0;[]; -[];;;heimdal77;;;[];;;;text;t2_6qr37;False;False;[];;Full episode dedicated to a play. There was another anime in last couple years that had a whole episode that was just the play being put on and it was fantastic.;False;False;;;;1610358610;;False;{};giv0qn1;False;t3_kum3pa;False;False;t1_giszk5z;/r/anime/comments/kum3pa/yuu_slowly_falling_for_touko_bloom_into_you/giv0qn1/;1610406957;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;It's worse, to me it feels outright fraudulent. Sometimes Netflix Originals for example are genuine Netflix productions and exclusives. But other times they're just random foreign productions they dub or sub into English and slap a label on. They may even have aired on TV before Netflix in their countries. That to me skirts very close to literally taking the credit for something they didn't create, because lots of times people will see the Originals label and will interpret it that way.;False;False;;;;1610359196;;False;{};giv1gt0;False;t3_kuoq3c;False;False;t1_giuwh5v;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giv1gt0/;1610407457;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Razraffion;;;[];;;;text;t2_krob2;False;False;[];;"I'd rather watch Douluo Dalu. - -&#x200B; - -And it's a good Chinese 3D anime for me too.";False;False;;;;1610359361;;False;{};giv1ov3;False;t3_kukv89;False;True;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giv1ov3/;1610407580;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;So, it's ok fastfood compared to bad fast food? Why grade anime differently depending on when they were released?;False;False;;;;1610359560;;False;{};giv1z7h;False;t3_kukv89;False;False;t1_giuucew;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giv1z7h/;1610407733;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Etereke32;;;[];;;;text;t2_11qhl2;False;False;[];;I kinda disagree, it does help people decide what to follow as things air, which is useful for people that don't have time to follow more than a few shows each season;False;False;;;;1610359895;;False;{};giv2g5c;False;t3_kuoq3c;False;True;t1_gitx6vs;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giv2g5c/;1610407987;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;It's laughing stock for us filthy gaijins as well 😁;False;False;;;;1610359967;;False;{};giv2joj;False;t3_kukv89;False;False;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giv2joj/;1610408038;5;True;False;anime;t5_2qh22;;0;[]; -[];;;FeistyKnight;;;[];;;;text;t2_1twmffwo;False;False;[];;How did they allow this shot to air lmao. Sirely they knew how awful it was;False;False;;;;1610360049;;False;{};giv2nrx;False;t3_kukv89;False;True;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giv2nrx/;1610408100;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-wwzzz-;;;[];;;;text;t2_1c8bcrw0;False;False;[];;classic downvote farmer lol;False;False;;;;1610360293;;False;{};giv2zw3;False;t3_kukv89;False;True;t1_giujloo;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giv2zw3/;1610408275;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sanic_de_hegehog;;MAL;[];;https://myanimelist.net/profile/sanic_de_hegehog;dark;text;t2_e028fcj;False;False;[];;This sort of low-effort crap should not be encouraged. Note: I understand the people responsible for this worked hard on it, but the end result is still low-effort compared to the other works of art this industry is capable of.;False;False;;;;1610360700;;False;{};giv3k5u;False;t3_kuoq3c;False;True;t1_giux7qa;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giv3k5u/;1610408580;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cheesechimp;;;[];;;;text;t2_5dkua;False;False;[];;I tried submitting it with the OH DESIRE Kinzo face meme as the image, but it looks like the contest mods went with a different pic.;False;False;;;;1610361725;;False;{};giv510s;False;t3_kupcoh;False;False;t1_giuvyij;/r/anime/comments/kupcoh/best_ending_6_listen_to_salt_fourth_eliminations/giv510s/;1610409363;4;True;False;anime;t5_2qh22;;0;[]; -[];;;chazmerg;;;[];;;;text;t2_cw1emrm;False;False;[];;I remember Togashi from HxH gave the Ex-Arm manga a positive quote to use for advertisements at the same time he gave one to Kimetsu no Yaiba.;False;False;;;;1610362031;;False;{};giv5gnk;False;t3_kuoq3c;False;False;t1_git6fnb;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giv5gnk/;1610409589;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Nariakioshi;;;[];;;;text;t2_15f06ewf;False;False;[];;Engrish;False;False;;;;1610362237;;False;{};giv5rp8;False;t3_kum3pa;False;True;t3_kum3pa;/r/anime/comments/kum3pa/yuu_slowly_falling_for_touko_bloom_into_you/giv5rp8/;1610409743;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;AKSHAT1234A;;;[];;;;text;t2_5o8p1t9t;False;False;[];;Wth did I just read.;False;False;;;;1610362327;;False;{};giv5w6r;False;t3_kuoq3c;False;False;t1_giuft96;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giv5w6r/;1610409808;31;True;False;anime;t5_2qh22;;0;[]; -[];;;AppleWithGravy;;;[];;;;text;t2_9mcpu;False;False;[];;Looks like a high school project where someone used random free 3d models and just animated them;False;False;;;;1610362528;;False;{};giv66rp;False;t3_kukv89;False;True;t1_gissmdt;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giv66rp/;1610409954;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;Lmao its 2.76 rn;False;False;;;;1610362744;;False;{};giv6i0o;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giv6i0o/;1610410120;1;True;False;anime;t5_2qh22;;0;[]; -[];;;watrmeln420;;;[];;;;text;t2_3oq54ccz;False;False;[];;"Why does the MC look like shit, but when he was cooking, the rice and his friend or whatever looked decent? - -Edit: never fucking mind I broke into tears at the 5:35 mark, what the fuck.";False;False;;;;1610362939;;False;{};giv6rx8;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giv6rx8/;1610410297;6;True;False;anime;t5_2qh22;;0;[]; -[];;;_Zig;;;[];;;;text;t2_r3byl;False;False;[];;"There are only two conspiracy theories I believe in this world: 1) is that the director/studio intentionally made it shit as a joke because they're just madlads; or 2) they intentionally made it shit because they're salty the manga is ranked #1 on MAL. - -Because nothing else makes any sense.";False;False;;;;1610363076;;False;{};giv6zgt;False;t3_kuoq3c;False;True;t1_giubfvf;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giv6zgt/;1610410404;2;True;False;anime;t5_2qh22;;0;[]; -[];;;M8gazine;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/M8gazine;light;text;t2_kkdz5;False;False;[];;Lol, weeb.;False;False;;;;1610363327;;False;{};giv7by4;False;t3_kukv89;False;True;t1_gitscre;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giv7by4/;1610410589;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Pedarsen;;;[];;;;text;t2_eup7i;False;False;[];;It felt like something someone would do as a hobby, not professional animators.;False;False;;;;1610363511;;False;{};giv7m2v;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giv7m2v/;1610410728;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Crunchy Onigiri?;False;False;;;;1610363773;;False;{};giv7z9d;False;t3_kuq6vr;False;True;t1_gitvrqx;/r/anime/comments/kuq6vr/why_does_everyone_suddenly_hate_crunchyroll/giv7z9d/;1610410920;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610363959;;1610364145.0;{};giv89le;False;t3_kuoq3c;False;True;t1_giu2hft;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giv89le/;1610411061;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;melcarba;;;[];;;;text;t2_ywnzr;False;False;[];;Probably the name of CR's JP company or something.;False;False;;;;1610364007;;False;{};giv8c5r;False;t3_kuq6vr;False;False;t1_giv7z9d;/r/anime/comments/kuq6vr/why_does_everyone_suddenly_hate_crunchyroll/giv8c5r/;1610411098;1;True;False;anime;t5_2qh22;;0;[]; -[];;;waitforittorain;;;[];;;;text;t2_8x085fxq;False;False;[];;Or they just unintentionally made it awful.;False;False;;;;1610364036;;False;{};giv8dos;False;t3_kuoq3c;False;False;t1_giv6zgt;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giv8dos/;1610411124;6;True;False;anime;t5_2qh22;;0;[]; -[];;;karen_pls;;;[];;;;text;t2_7fslgyoe;False;False;[];;"Don't get excited yet. Most people don't rate until the end of a show, and a 2.9 leaves a LOT of room for a few people to boost it up to like, a 4 or 5. - -Unlike Gibiate, this has a source that I hear is really decent. So fans alone may vote it up just for existing and possibly not butchering the story.";False;False;;;;1610364458;;False;{};giv8zwy;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giv8zwy/;1610411435;2;True;False;anime;t5_2qh22;;0;[]; -[];;;waitforittorain;;;[];;;;text;t2_8x085fxq;False;False;[];;What;False;False;;;;1610364498;;False;{};giv91zt;False;t3_kuoq3c;False;False;t1_giuft96;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giv91zt/;1610411465;3;True;False;anime;t5_2qh22;;0;[]; -[];;;karen_pls;;;[];;;;text;t2_7fslgyoe;False;False;[];;"> 7 times out of 10 a shoddy anime adaptation just doesn't do the original story much service even if it's a somewhat average one. - -Ehh, I'd say it's way less than that. There's merit just to having movement to convey a scene compared to a manga, so I wouldn't want to mistake ""bad"" for ""not taking full potential of the medium""";False;False;;;;1610364553;;False;{};giv94xj;False;t3_kuoq3c;False;False;t1_giuz6yw;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giv94xj/;1610411509;5;True;False;anime;t5_2qh22;;0;[]; -[];;;POTATOplays101;;;[];;;;text;t2_5waykguv;False;False;[];;This was a anime I though it was a fan made video game;False;False;;;;1610364669;;False;{};giv9aoh;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giv9aoh/;1610411596;3;True;False;anime;t5_2qh22;;0;[]; -[];;;karen_pls;;;[];;;;text;t2_7fslgyoe;False;False;[];;"tbf, drawing is hard, and even good studios can't nail the animation 100% of the time. Given the conditions, I can't ever truly be angry at bad animation. - -Avatar was purely bad directing, full stop. I'm sure Shyamalan had 10x the funding of the source to work with, and not many A list actors to suck those funds away. Even if I look past the horrible CG, there was tons of mistakes in pretty much ever other aspect, from the casting to the cinematography to the pacing.";False;False;;;;1610364850;;False;{};giv9m56;False;t3_kuoq3c;False;True;t1_giuzg9c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giv9m56/;1610411743;2;True;False;anime;t5_2qh22;;0;[]; -[];;;karen_pls;;;[];;;;text;t2_7fslgyoe;False;False;[];;"yea, hanlon's razor. - -If I had to guess, it probably came down to budget. Like, last minute, contracts were disputed or otherwise fucked and they got like, 2/3rd's less funding than expected. So you get what you paid for, I guess.";False;False;;;;1610364956;;False;{};giv9sg1;False;t3_kuoq3c;False;True;t1_giv8dos;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giv9sg1/;1610411825;2;True;False;anime;t5_2qh22;;0;[]; -[];;;karen_pls;;;[];;;;text;t2_7fslgyoe;False;False;[];;"people will always compare adaptations to its source, and the source was highly acclaimed. - -But yes, to some degree I agree that a lot of it comes down to an inherent bias this community has against any and all 3D in anime.";False;False;;;;1610365042;;False;{};giv9x8s;False;t3_kuoq3c;False;True;t1_giuu43v;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giv9x8s/;1610411886;1;True;False;anime;t5_2qh22;;0;[]; -[];;;karen_pls;;;[];;;;text;t2_7fslgyoe;False;False;[];;"> Even if there's only 1 episode, people definitely rated it because of bad animation. - -In all fairness (and while I doubt it was the case here), there are such things as shaky/slow starts to what end up being more liked later. Jojo is a prime example of this. I think Goutobun S1 was a more recent example of something criticized for its animation as well (but at least the BD's did some re-touching).";False;False;;;;1610365211;;False;{};giva7c2;False;t3_kuoq3c;False;True;t1_giu1tmt;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giva7c2/;1610412014;1;True;False;anime;t5_2qh22;;0;[]; -[];;;karen_pls;;;[];;;;text;t2_7fslgyoe;False;False;[];;"I still don't think it's a bad idea given Japan's current experience with 3D. a LA background can give some assistence with cinematography that can be hard for a 2D animator to quickly convey. - -But at some point, execution matters. And you can't replace 3D artists.";False;False;;;;1610365328;;False;{};givafq1;False;t3_kuoq3c;False;False;t1_giue9ht;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givafq1/;1610412113;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LTPrototype;;;[];;;;text;t2_gfnb8;False;False;[];;You want to run that by me again?;False;False;;;;1610365344;;False;{};givagyi;False;t3_kuoq3c;False;False;t1_giuft96;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givagyi/;1610412127;9;True;False;anime;t5_2qh22;;0;[]; -[];;;KaptainTZ;;skip7;[];;;dark;text;t2_9fhynbf5;False;False;[];;This is glorious. A must-see for all abime fans;False;False;;;;1610365349;;False;{};givahaw;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givahaw/;1610412131;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SenjougaharaHaruhi;;;[];;;;text;t2_40iiyjgc;False;False;[];;"The manga art actually looks REALLY good to me: - -https://twitter.com/jump_bookstore/status/1348306859422142468";False;False;;;;1610365462;;False;{};givap4s;False;t3_kuoq3c;False;False;t1_giuex1k;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givap4s/;1610412229;48;True;False;anime;t5_2qh22;;0;[]; -[];;;karen_pls;;;[];;;;text;t2_7fslgyoe;False;False;[];;"it has no official translation (and given this reception, good bye any chances of that), so the chapter you saw was probably some fan translation group who threw it out there as a ""probe"". A way to see if people wanted more or if a more interested translation group wanted to take it up long term. - -I'd go to mangaupdates to get an idea on how far something is in Japan. There are many times where manga like this will just never get touched, so it can feel like it ""just came out"", when in reality it ended 2 years ago.";False;False;;;;1610365560;;False;{};givavfa;False;t3_kuoq3c;False;True;t1_giue3jy;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givavfa/;1610412312;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GrimMashedPotatos;;;[];;;;text;t2_pec4i5o;False;False;[];;"I enjoyed arifureta. I've even given the whole season several rewatches. Im a flat sucker for overpowered isekai plots. - -EXArm is like 20mins of chinese knockoff PS2 RPG cutscenes. Think Xen0beers for the Somy PZ2 levels of bad. - -Its even cut weird, pieces of scenes are just....missing. - -::Picks up girl, runs away down hallway <cut, no transition> fight with bad guy already started, girl who was being carried is....talking from 5ft away to both fighters:: - -Early in the episode, both female characters are dealing with the bad guy after meeting the briefcase brain of main character. Literally locked in what was being set up as a no win situation. Scene cuts....and they're somewhere else....somehow....now hiding from the bad guy. - -The gun fight at the start has zero sense of scale, tempo, or even equipment. Its just bad ultra john wick. At one point, a random bad dude ""takes aim through a scope and hits the girl android to no effect"" we're even treated to a second scoped in scene.....only to show him being 10ft away with an ironsighted knockoff mac-10.";False;False;;;;1610365649;;False;{};givb1a2;False;t3_kuoq3c;False;True;t1_giu3lk5;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givb1a2/;1610412395;1;True;False;anime;t5_2qh22;;0;[]; -[];;;karen_pls;;;[];;;;text;t2_7fslgyoe;False;False;[];;"> and at least worked well enough outside that. - -ehh. outside the fight scenes, S1's between scenes were some of the most boring exposition I've watched. and I really love SoL/school setting stuff. - -but that's not unexpected when I watch a free fan animation on Youtube made by like 10 people, especially in 2015.";False;False;;;;1610365802;;False;{};givbbzi;False;t3_kuoq3c;False;True;t1_giur3ij;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givbbzi/;1610412532;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610365876;;False;{};givbgs0;False;t3_kunxad;False;True;t1_giup3u9;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/givbgs0/;1610412593;1;True;False;anime;t5_2qh22;;0;[]; -[];;;karen_pls;;;[];;;;text;t2_7fslgyoe;False;False;[];;"It shouldn't. but at the same time, I expect at this point that there'll be people voting it down for sport, just to say they helped vote down the lowest rated anime to begin with. Without even watching the show. - -There's no winning here.";False;False;;;;1610365916;;False;{};givbj9o;False;t3_kuoq3c;False;True;t1_giv3k5u;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givbj9o/;1610412626;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fair_Cause_1166;;;[];;;;text;t2_8tj1k0eq;False;False;[];;"As an oldschool Sonic fan I can't stop thinking how gameplay elements do not go well together and everyone pretends that they're fine because the games lack direction. - -There's a scoring system but nothing stops you from abusing it, no leaderboards. Then there's a reward of a 1-up for reaching a certain score but why do we have 1-ups bound to scoring when all you need is hit a 1-up monitor or get 100 rings? Is the score system even useful as a performance metric at this point? - -Then there's the whole punishment for being hit by an enemy. It's so lenient you can keep grabbing the same ring(s) over and over non stop. And it's made lenient to compensate for the objects you had no idea were coming into view because you were going fast hit you. - -Then there's a timer. Why is there a timer? Why not just bind a reward for going fast and scrap the whole ""go out of time"" concept for those who don't care about the reward and just want to explore the stage? Maybe if you let me explore the stage I can start thinking about ""fastest/better path to take"" on my next run. - -And don't get me started with how half-assed Super/Hyper Sonic is. And I mean from a gameplay perspective, not as a concept. Sonic 2 had you forcefully shift to the form the moment you have 7 emeralds, reach 50 rings and decide to jump. Because who would've thought about hitting jump again. - -Drop dash was the single best concept I've seen. Casual friendly, ditches the asinine button mashing of spin dash, and pro friendly as well. - -No wonder Mario won the mascot war. Can you imagine a ""Sonic Maker""? I can't. Mario dominates on precise platforming, Sonic is about... fast screen scrolling? - -The most eye-opening moment for me was watching Lirik playing Sonic Mania and wording his thoughts out loud. ""So am I supposed to know where to go next?"" during chemical zone after running up a wall that made him land in the middle of a bridge. ""So it's just about feeling like going fast but in 2D?"" - -It's like someone in SEGA knows the series needs a complete revamp but they're scared of stirring the waters. At least they try, but the price of radical change is irritating your established fans. - -And don't get me started on Sonic Racing. Transformed was brilliant, then Racing happens. Uhhh, okay?";False;False;;;;1610366379;;1610366823.0;{};givcdk6;False;t3_kukv89;False;False;t1_gitttop;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/givcdk6/;1610413048;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Fartikus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Zachk;light;text;t2_6z5ky;False;False;[];;Best Isekai ever;False;False;;;;1610366404;;False;{};givcf66;False;t3_kuoq3c;False;False;t1_giuft96;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givcf66/;1610413073;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Radiant-Change-3223;;;[];;;;text;t2_8bmusc6l;False;False;[];;In my opinion, all of monogatari’s music is a bop and leave you tapping your foot and trying to sing even though you don’t know the lyrics;False;False;;;;1610366419;;False;{};givcg4i;True;t3_kumeck;False;False;t1_gisp5nm;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/givcg4i/;1610413086;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;I feel really bad for the mangaka.;False;False;;;;1610366421;;False;{};givcg9q;False;t3_kuoq3c;False;False;t1_givap4s;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givcg9q/;1610413089;57;True;False;anime;t5_2qh22;;0;[]; -[];;;Radiant-Change-3223;;;[];;;;text;t2_8bmusc6l;False;False;[];;They are both amazing endings, but in my opinion I would say that the one from clannad after story is better, if you have another opinion that’s fine and I still respect you.;False;False;;;;1610366577;;False;{};givcqlq;True;t3_kumeck;False;True;t1_gispeo2;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/givcqlq/;1610413225;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dragonice06;;;[];;;;text;t2_2bxwjamh;False;False;[];;I think same. Dango daikazoku better but secret base was good too.;False;False;;;;1610366738;;False;{};givd2rv;False;t3_kumeck;False;False;t1_givcqlq;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/givd2rv/;1610413372;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sworp123;;;[];;;;text;t2_70kjkn0w;False;False;[];;I liked it but people said the animation was bad, I thought it was ehh but the plot was funny so I was fine with it.;False;False;;;;1610367082;;False;{};givdr3y;False;t3_kuoq3c;False;True;t1_giuu43v;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givdr3y/;1610413698;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TSPhoenix;;;[];;;;text;t2_3tob1;False;False;[];;"Funnily enough your suggested fixes to how Sonic is designed now is exactly how Sonic used to be designed. In old Sonic games there was no timer because they game didn't want to force you to rush, you were supposed to go as fast as you can handle and the reward for getting better was going faster. It didn't matter if something didn't give you much time to react to it as your 1st time through the stage you could just take it slower. - -But the perception that Sonic must always go fast started to infect their game design.";False;False;;;;1610367212;;False;{};give0n6;False;t3_kukv89;False;True;t1_givcdk6;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/give0n6/;1610413822;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SolomonSinclair;;;[];;;;text;t2_1lf7i8;False;False;[];;">Reminds me of the M. Night Shyamalan directed Avatar The last Airbender movie lol. - -What are you talking about? There was ***never*** a Last Airbender movie.";False;False;;;;1610367372;;False;{};givebha;False;t3_kuoq3c;False;False;t1_giuzg9c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givebha/;1610413970;19;True;False;anime;t5_2qh22;;0;[]; -[];;;TichoSlicer;;;[];;;;text;t2_14tpdf;False;False;[];;"Yeah man, every shitty anime that i watch, this is the first thing that comes to my mind... ;/ The author puts so much effort to create their ""child"" and then someone comes in and completely DESTROYS it with a shitty adaptation that will turn off everyone that didn't read the source material before hand... ;/";False;False;;;;1610367567;;False;{};giveq25;False;t3_kuoq3c;False;False;t1_givcg9q;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giveq25/;1610414162;42;True;False;anime;t5_2qh22;;0;[]; -[];;;Algent;;;[];;;;text;t2_8101e;False;True;[];;Wow I went to check it out quickly and you guy aren't joking. It may be the most butchered thing I saw in a long time. I've seen a few chapter of the manga and while it's not crazy good it's nowhere that bad.;False;False;;;;1610367604;;False;{};givestr;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givestr/;1610414202;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ainine9;;;[];;;;text;t2_kwrcn;False;False;[];;"Not even close Arifureta was at least mostly 2D with the monsters being 3DCG. - -This is like the early days of RWBY but with none of the fighting choreography.";False;False;;;;1610367672;;False;{};givexti;False;t3_kuoq3c;False;False;t1_giu3lk5;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givexti/;1610414270;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DutchDread;;;[];;;;text;t2_6i2jqhl9;False;False;[];;"Good, I hope Japan takes a good look at everything the west does, and how it's fucking awful. - - -My biggest worry is that the Japanese actually listen to people in the west who think they can tell them how to make anime. - - -Never try to mimic the west, never listen to the west, never capitulate to the west. - - -Do anime the way you've always done it, that's why we left western media behind us and started watching anime, because the west is filled with idiots who don't know what the west wants.";False;False;;;;1610367718;;False;{};givf10m;False;t3_kukv89;False;True;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/givf10m/;1610414315;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ijiolokae;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/corvoatano;light;text;t2_15k31w;False;False;[];;I think we already passed that point long ago;False;False;;;;1610367980;;False;{};givfk9b;False;t3_kuoq3c;False;False;t1_giu4uy1;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givfk9b/;1610414576;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Mitosis;;;[];;;;text;t2_4ck3g;False;False;[];;"Because if you're only going to consume the top 2% of the medium spanning decades, and judge everything by that standard, by definition the rest of it is garbage to you and so the discussion is moot. - -Great things are great partially because they're scarce. That doesn't mean everything else is shit.";False;False;;;;1610368288;;False;{};givg6gf;False;t3_kukv89;False;True;t1_giv1z7h;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/givg6gf/;1610414877;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;KiongSS;;;[];;;;text;t2_26pmxngw;False;False;[];;looks like a game adaptation of every anime game;False;False;;;;1610368399;;False;{};givgf41;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givgf41/;1610414991;2;True;False;anime;t5_2qh22;;0;[];True -[];;;WANNFH;;;[];;;;text;t2_13q2to;False;False;[];;"That was discussed for a long time, but basically - it was a result of one complete development clusterfuck where the anime production screwed up all scheduling and everyone was at fault for that. - -Better to compare it to Terminator: Dark Fate than The Last Airbender - they basically had everything to make it right and quite an experienced team, but it still turned out complete shit that somehow looks even worse than the previous iterations of the franchise because of the team internal conflicts that affected the production. - -Heck, after the Berserk its director worked on Cop Craft and now working on Kumo Desu Ga anime, which totally not have the same issues as the Berserk.";False;False;;;;1610368829;;False;{};givh729;False;t3_kuoq3c;False;False;t1_giuzg9c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givh729/;1610415387;10;True;False;anime;t5_2qh22;;0;[]; -[];;;MemeTroubadour;;;[];;;;text;t2_12zvqj;False;False;[];;oh god when she started talking it looked like gmod;False;False;;;;1610369270;;False;{};givhz1r;False;t3_kuoq3c;False;True;t1_giuty13;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givhz1r/;1610415801;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"The one notable stain in the otherwise ""perfect resume"" of the series.";False;False;;;;1610369728;;False;{};givirco;False;t3_kuoq3c;False;True;t1_giubfvf;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givirco/;1610416213;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;Arifureta actually did got better in the second half, they still made it work despite the low and limited resources.;False;False;;;;1610369781;;False;{};giviuu9;False;t3_kuoq3c;False;True;t1_giu3lk5;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giviuu9/;1610416269;1;True;False;anime;t5_2qh22;;0;[]; -[];;;0be000;;;[];;;;text;t2_6ybf3v50;False;False;[];;People: Watch it illegally or for free (such as Muse Asia);False;False;;;;1610370041;;False;{};givjb7a;False;t3_kukv89;False;True;t1_git7yi1;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/givjb7a/;1610416544;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Riker3946;;;[];;;;text;t2_8zclbnva;False;False;[];;Don’t forget Onyx Equinox, that was a pretty good one;False;False;;;;1610370338;;False;{};givjtxe;False;t3_kuoq3c;False;True;t1_giuppme;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givjtxe/;1610416837;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JeanKB;;;[];;;;text;t2_nudpu;False;False;[];;Effort means nothing, though, since the manga is also terrible. He should be thankful it ever got an adaptation.;False;True;;comment score below threshold;;1610370410;;False;{};givjyha;False;t3_kuoq3c;False;False;t1_giveq25;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givjyha/;1610416919;-20;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"Well ""Made in USA"" can just mean that the last step of assembly happened in the US, it all is just window dressing";False;False;;;;1610370418;;False;{};givjz12;False;t3_kuoq3c;False;False;t1_giuvws4;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givjz12/;1610416934;8;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;On the other hand, everyone will hear of Ex-Arm's infamy and maybe enough people check out the manga out of curiosity and actually like it;False;False;;;;1610370491;;False;{};givk3kl;False;t3_kuoq3c;False;False;t1_givcg9q;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givk3kl/;1610417016;10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610370702;;False;{};givkh42;False;t3_kuoq3c;False;True;t1_gitvo2w;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givkh42/;1610417230;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkChaplain;;;[];;;;text;t2_3zc84;False;False;[];;So you don't consider Sonic Mania a mainline game, I take it?;False;False;;;;1610370804;;False;{};givknzc;False;t3_kukv89;False;True;t1_giunv65;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/givknzc/;1610417334;3;True;False;anime;t5_2qh22;;0;[]; -[];;;linearstargazer;;;[];;;;text;t2_wkywf;False;False;[];;"In the case of Tower of God and God of High School, it's because Crunchyroll were leads on the production committee, rather than just purchasing the streaming rights, meaning they had a say in what was adapted, when it would air, and funded part of the production. - -Especially for God of High School, Crunchyroll was the *only one* on the production committee, so feel free to place all the blame for how rushed it was on Crunchyroll.";False;False;;;;1610370931;;False;{};givkw41;False;t3_kuoq3c;False;False;t1_giuzvr2;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givkw41/;1610417459;17;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkChaplain;;;[];;;;text;t2_3zc84;False;False;[];;"And in Japan they use Arbeit / beito as a term for part-time jobbing. It's loaned from German, where Arbeit is simply that: work, a job, as a whole, and often used with negative connotations. - -And don't get me started on their meat patties being called ""hamburgers"" when they're clearly Buletten or Frikadellen....";False;False;;;;1610371071;;False;{};givl5bv;False;t3_kukv89;False;True;t1_gitscre;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/givl5bv/;1610417608;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AikaSkies;;;[];;;;text;t2_3wbty3ew;False;False;[];;It's not by Sonic Team, so yeah not mainline. Phenomenal game though, one of the best 2D platformers ever made.;False;False;;;;1610371377;;False;{};givlq9p;False;t3_kukv89;False;True;t1_givknzc;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/givlq9p/;1610417912;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ItsSuperDefective;;;[];;;;text;t2_1c0uqsbu;False;False;[];;Hey, it's a laughing stock to westeners too.;False;False;;;;1610371444;;False;{};givlunk;False;t3_kukv89;False;True;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/givlunk/;1610417979;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Aeris_24;;;[];;;;text;t2_ffn2p;False;False;[];;Oh geez, I just watched the trailer. I feel like I'm watching a low budget PSP rpg.;False;False;;;;1610371682;;False;{};givmb58;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givmb58/;1610418228;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkChaplain;;;[];;;;text;t2_3zc84;False;False;[];;"But if we make the studio the defining point of what's a mainline game and what isn't, we'd also have to acknowledge something like Sonic Forces or Sonic Runners mainline games, wouldn't we? - -Forces would be the last ""big"" Sonic by them since Lost World, which was in 2013. Not a great track record. - -Gameplay-wise, I'd be calling Mania a mainline game in a heartbeat, while looking at Forces and others as poor spinoffs. To be honest, I'd be completely fine with Sonic Team getting renamed and taken off the IP, if they can't get Sonic right.";False;False;;;;1610371748;;False;{};givmfod;False;t3_kukv89;False;True;t1_givlq9p;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/givmfod/;1610418294;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Uyq62048;;;[];;;;text;t2_3kvtpc3n;False;False;[];;"And since people don't seem to believe me, take a look at the credits for the CG staff roles such as[Modeling, and animation](https://i.imgur.com/Sh4y3UC.jpg) as well as [Lighting and rendering](https://i.imgur.com/OMQSjdV.jpg). Note how all the names are Chinese despite Visual Flight being a Japanese company. (And note the [Chinese companies](https://i.imgur.com/FgNEPe2.jpg) listed under Production Assitance.) - -Even the 2D works weren't done in Japan, instead being handled by [korean animators](https://i.imgur.com/P733xIT.jpg) who, funnily enough, don't go credited by their full names.";False;False;;;;1610371850;;False;{};givmmdm;False;t3_kukv89;False;False;t1_giujtm7;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/givmmdm/;1610418395;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Leaves_Swype_Typos;;;[];;;;text;t2_arcs5;False;False;[];;"They weren't ""shitting on"" it. They just said it ""had some pretty cheap animations"" (and art), [which it absolutely did](https://imgur.com/tZWenqh). Check your defensiveness.";False;False;;;;1610372541;;False;{};givnyg9;False;t3_kukv89;False;False;t1_giuucew;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/givnyg9/;1610419102;12;True;False;anime;t5_2qh22;;0;[]; -[];;;hydraxiv;;;[];;;;text;t2_5wvchq00;False;False;[];;Crunchyroll in general has been slacking. Bout to cancel and pick up funimation;False;False;;;;1610372762;;False;{};givoeqr;False;t3_kukv89;False;True;t3_kukv89;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/givoeqr/;1610419375;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Seth0x7DD;;;[];;;;text;t2_dwsit;False;False;[];;"Think GITS technology but worse/different. He's just a brain but ""naturally"" can interface with other technical components. [Maybe Manga Info](/s ""EX-ARM are 'beyond science super weapons'""). I haven't watched the first episode yet, so I don't know whenever that was in the anime or not. - -The [ANN article](https://www.animenewsnetwork.com/feature/2020-11-09/why-does-the-crunchyroll-original-series-ex-arm-look-so-awful/.166117) made me read the manga ... (emphasis by me) - -> Ultimately, this series appears to be ruined by unwarranted confidence and a lack of interest in animation. Despite being well-aware of the fact that live-action directors rarely direct anime, director Yoshikatsu Kimura claimed, “I have experience as a director, so I decided to give it a shot.” - -> ... - -> The production team chose to bring on a live-action director, despite the fact that 2D anime staff have consistently made for great 3D anime directors as well. There was Takahiko Kyōgoku's Land of the Lustrous, Seiji Mizushima's Expelled from Paradise, Daizen Komatsuda's BBK/BRNK, Yoshiki Yamakawa's Hi Score Girl, and many, many more. **But instead of someone with experience, they chose a director who had such little respect for anime that, in his attempt to make something “never seen before”, he turned the adaptation of HiRock and Shinya Komi's manga into a laughing stock.** - -> ... - -> The lessons from EX-ARM are clear and obvious: Anime is best produced by those who understand and respect animation. And if you, the reader, understood this already, then congratulations. You would have made a better director of EX-ARM. - -Especially that last paragraph was a nice burn.";False;False;;;;1610372800;;1610398105.0;{};givohc8;False;t3_kuoq3c;False;False;t1_giv5w6r;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givohc8/;1610419415;23;True;False;anime;t5_2qh22;;0;[]; -[];;;AikaSkies;;;[];;;;text;t2_3wbty3ew;False;False;[];;"In my eyes, it has to be a platformer and developed by Sonic Team to be considered mainline. So even though something like Riders/Zero Gravity was partially developed by Sonic Team, they don't count. I believe usually others go by these two points as well, but there's some debate in regards to the two storybook titles. - -Also yeah, definitely a terrible track record. The fact that there was a 4 year long gap between Lost World(which is decent at best) to Forces(imo the worst mainline title) was awful. I don't know about Sonic Team being dissolved, I personally would want it to stick around and for them to get more talented/passionate people on board. The love and passion that was put into something like Unleashed just isn't there anymore(at least as far as 2017). I believe the director of Unleashed even stated he set out to make the greatest 3D Sonic game, which is a great mindset to have when going into developing a game(and I think he succeeded). With every game after Black Knight it just feels like they're making the games for the sake of making them. Even Sonic 06, which was a broken mess, was ambitious as hell, and you could see they actually tried to make a great game.";False;False;;;;1610372886;;False;{};givonk0;False;t3_kukv89;False;False;t1_givmfod;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/givonk0/;1610419512;0;True;False;anime;t5_2qh22;;0;[]; -[];;;OmegonAlphariusXX;;;[];;;;text;t2_cmkgc75;False;False;[];;I was super looking forward to it because the art I saw looked really astounding and I thought if the anime all looked like that it’d be really fun. I got 30 seconds into it and just stopped because I can’t stand CG anime;False;False;;;;1610373767;;False;{};givqg77;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givqg77/;1610420509;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GigaTomato;;;[];;;;text;t2_10gss5;False;False;[];;Then they are lying they were on the production comite but that doen't mean it's an original and I'm sure Yongje Park would love to hear that it is a Crunchyroll original too.;False;False;;;;1610374082;;False;{};givr3ls;False;t3_kukv89;False;True;t1_giti45h;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/givr3ls/;1610420872;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;This needs more upvotes;False;False;;;;1610374100;;False;{};givr4xk;False;t3_kukv89;False;True;t1_gitdsqh;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/givr4xk/;1610420897;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MohammaDon;;;[];;;;text;t2_xgv3e;False;False;[];;"Can't wait for Gigguk's ""Winter 2021 anime in a nutshell"" video";False;False;;;;1610374638;;False;{};givs9rz;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givs9rz/;1610421580;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PacoTaco321;;;[];;;;text;t2_8yxkb;False;False;[];;Since anime is usually an ad for the manga, I guess it did its job then technically.;False;False;;;;1610375059;;False;{};givt6up;False;t3_kuoq3c;False;False;t1_giuex1k;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givt6up/;1610422098;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610375240;;1610375541.0;{};givtloi;False;t3_kunxad;False;True;t3_kunxad;/r/anime/comments/kunxad/anime_with_a_morally_grey_mc/givtloi/;1610422321;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610375851;;1610376479.0;{};givuy9m;False;t3_kukv89;False;True;t1_giujloo;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/givuy9m/;1610423079;-1;False;False;anime;t5_2qh22;;0;[]; -[];;;VeryFunnyValentine;;;[];;;;text;t2_4uph3tsh;False;False;[];;Not even half of January and we already have strong pretender for Worst anime of the year title;False;False;;;;1610375851;;False;{};givuyb7;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givuyb7/;1610423080;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610375891;;False;{};givv1f8;False;t3_kukv89;False;True;t1_giv2zw3;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/givv1f8/;1610423128;-3;False;False;anime;t5_2qh22;;0;[]; -[];;;Potatolantern;;;[];;;;text;t2_2muaukp;False;False;[];;"Same with every LN author that gets a shitty adapation. - -It sucks so much when you read a LN and it's brilliant, you love it, it's got so much potential, it could be a huge thing. And then it gets a shitty anime adaptation, and it's like a massive capstone has been put on it's potential success. It'll never be the next Konosuba or Haruhi, it's just going to be a LN that continues, sells decently enough and eventually finishes. - -Potentially even worse than for manga, since manga has more visibility at least.";False;False;;;;1610375893;;False;{};givv1je;False;t3_kuoq3c;False;False;t1_givcg9q;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givv1je/;1610423130;21;True;False;anime;t5_2qh22;;0;[]; -[];;;imaprince;;;[];;;;text;t2_m9jud;False;False;[];;That's pretty harsh. I've read way less interesting and trite manga than Ex-Arm to call it anything other rhan average. Why do you think its terrible?;False;False;;;;1610376210;;False;{};givvr92;False;t3_kuoq3c;False;False;t1_givjyha;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givvr92/;1610423553;12;True;False;anime;t5_2qh22;;0;[]; -[];;;VeryFunnyValentine;;;[];;;;text;t2_4uph3tsh;False;False;[];;I'll never forgive the Japanese.;False;False;;;;1610376217;;False;{};givvrt3;False;t3_kuoq3c;False;True;t1_giubfvf;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givvrt3/;1610423561;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;">It sucks so much when you read a LN and it's brilliant, you love it, it's got so much potential, it could be a huge thing. And then it gets a shitty anime adaptation, and it's like a massive capstone has been put on it's potential success. - -True. For example, the Toaru series disappoints me in the sense that the LN had so much potential but the anime failed to capture that.";False;False;;;;1610376996;;False;{};givxjy3;False;t3_kuoq3c;False;False;t1_givv1je;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givxjy3/;1610424555;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;I guess lol.;False;False;;;;1610377028;;False;{};givxmqu;False;t3_kuoq3c;False;True;t1_givt6up;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givxmqu/;1610424597;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Potatolantern;;;[];;;;text;t2_2muaukp;False;False;[];;"That's Index right? I thought that stuff was really popular? I don't follow it, but i thought Index was huge. - -Personally, I was thinking of Master of Ragnarok, which is a really original and well told story in a sea of Isekai, and the anime's considered pretty much a generic joke.";False;False;;;;1610377294;;False;{};givy8t7;False;t3_kuoq3c;False;False;t1_givxjy3;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givy8t7/;1610424936;8;True;False;anime;t5_2qh22;;0;[]; -[];;;adragondil;;;[];;;;text;t2_93ytd;False;False;[];;"Speaning of Alien; ""Aliens: Colonial Marines"" is a close second for best horror game. Thinking of that game still makes me shiver";False;False;;;;1610377482;;False;{};givyokp;False;t3_kukv89;False;False;t1_git7woz;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/givyokp/;1610425171;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"Well, its Railgun that's more popular compared to Index. If Index's anime was well made and captured how good the LN's were then it'd have been even more popular. - -Haven't read Master of Ragnarok but I did hear the LN's were better as with all LN adaptations.";False;False;;;;1610377529;;1610382435.0;{};givysjg;False;t3_kuoq3c;False;False;t1_givy8t7;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/givysjg/;1610425229;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Potatolantern;;;[];;;;text;t2_2muaukp;False;False;[];;"Ah, it's a ""Spinoff gets more popular than the original"" thing? That sucks";False;False;;;;1610378358;;False;{};giw0pwa;False;t3_kuoq3c;False;False;t1_givysjg;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giw0pwa/;1610426267;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JoshJones18;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JoshuaJones16;light;text;t2_hdlfuf2;False;False;[];;We do not speak of.....THAT movie;False;False;;;;1610378360;;False;{};giw0q34;False;t3_kuoq3c;False;True;t1_giuzg9c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giw0q34/;1610426270;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spitfire9107;;;[];;;;text;t2_8jz99;False;False;[];;worse than berserk adaptation? Berserk manga is godly and one of the best manga series for those that read it. But 2016 version was bad;False;False;;;;1610378395;;False;{};giw0t2l;False;t3_kuoq3c;False;False;t1_giuqjbm;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giw0t2l/;1610426317;4;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"D4DJ gives me the uncanny valley creeps just like VTubers do and the first episode was not strong enough to force myself through it, which is sad since it might have been an idol show closer to my musical tastes than usual. - -On the other hand, idol shows without any promo from big anitubers never do well on Reddit";False;False;;;;1610378616;;False;{};giw1btz;False;t3_kukv89;False;True;t1_gisy7kz;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giw1btz/;1610426602;2;True;False;anime;t5_2qh22;;0;[]; -[];;;the_dau604;;;[];;;;text;t2_xtmy8;False;False;[];;Rip this show. Dropped it within 10 seconds past the op...;False;False;;;;1610379775;;False;{};giw45ay;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giw45ay/;1610428192;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bonvantius;;;[];;;;text;t2_10dvn3;False;False;[];;Yeah, but Gibiate was still way worse. Ex-arm at least had some kind of enjoyable fight sequence. It's a close 2nd worst for me.;False;False;;;;1610379846;;False;{};giw4bmt;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giw4bmt/;1610428289;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MichaelJahrling;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Michael_Jahrling;light;text;t2_7ebl5;False;False;[];;That makes zero sense lol. It’s like saying Jimmy Neutron isn’t a cartoon because it’s CGI.;False;False;;;;1610379867;;False;{};giw4der;False;t3_kukv89;False;True;t1_giu2qji;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giw4der/;1610428317;2;False;False;anime;t5_2qh22;;0;[]; -[];;;PhenomsServant;;;[];;;;text;t2_xladq;False;False;[];;I never thought Berserk 2016 could ever be surpassed in term of CGI attrocity. I was sorely mistaken;False;False;;;;1610380671;;False;{};giw6e55;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giw6e55/;1610429427;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Doomroar;;MAL;[];;http://myanimelist.net/profile/Doomroar;dark;text;t2_bk6ee;False;False;[];;Ah shit here we go again.;False;False;;;;1610381009;;False;{};giw7910;False;t3_kumcrs;False;True;t3_kumcrs;/r/anime/comments/kumcrs/yami_shibai_season_8_episode_1_discussion/giw7910/;1610429868;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SenjougaharaHaruhi;;;[];;;;text;t2_40iiyjgc;False;False;[];;Tbh, the Toaru LN’s have so much potential that the anime has (yet) to fully capture. The universe and mechanics in the series is by far one of the most interesting I’ve ever seen. I truly believe that if the adaptations were done fully well and with more releases, it could have been up there with some of the most popular series out there.;False;False;;;;1610381417;;False;{};giw89r0;False;t3_kuoq3c;False;False;t1_givy8t7;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giw89r0/;1610430428;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Shardwing;;;[];;;;text;t2_739y0;False;False;[];;I would buy Hari-Nezumi Ga Gotoku.;False;False;;;;1610381455;;False;{};giw8db4;False;t3_kukv89;False;True;t1_gitmidx;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giw8db4/;1610430478;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hungryhippos1751;;;[];;;;text;t2_g5466;False;False;[];;It's the 200 IQ move, don't be famous, be infamous.;False;False;;;;1610381553;;False;{};giw8m9v;False;t3_kuoq3c;False;False;t1_givk3kl;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giw8m9v/;1610430619;6;True;False;anime;t5_2qh22;;0;[]; -[];;;KuroShiroTaka;;;[];;;;text;t2_qs5po;False;False;[];;Wasn't TLA something of a troubled production? From what I hear, Paramount kinda deserved a lot of blame;False;False;;;;1610381989;;False;{};giw9qif;False;t3_kuoq3c;False;True;t1_giuzg9c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giw9qif/;1610431215;1;True;False;anime;t5_2qh22;;0;[]; -[];;;s0ulf000d;;;[];;;;text;t2_8ip1ogav;False;False;[];;"Holy shit, you got issues man - -I said OG also stands for ''original'' and not just ''original gangster'' and it's weird and even ironic how you actually try to come off as knowledgeable, but achieve the exact opposite with your odd behaviour. I don't know why you get so emotional over this. Are Reddit points definig your overall mood or are you just actually unstable?";False;False;;;;1610382503;;1610383072.0;{};giwb2e7;False;t3_kukv89;False;True;t1_givuy9m;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giwb2e7/;1610431976;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SucyTA;;;[];;;;text;t2_j7lhuj0;False;False;[];;2.59;False;False;;;;1610382946;;False;{};giwc7g1;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giwc7g1/;1610432648;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;"RWBY looked fine for an early 10s cg animated series, with no budget. Of course it looks much better now, but at least you could see some heart put into it. - - -This is souless garbage";False;False;;;;1610383330;;False;{};giwd7fh;False;t3_kuoq3c;False;True;t1_giu7pe4;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giwd7fh/;1610433267;3;True;False;anime;t5_2qh22;;0;[]; -[];;;YouJustGotDabbedOn;;;[];;;;text;t2_9idi21mg;False;False;[];;Yo bro we meet again 🤣;False;False;;;;1610384077;;False;{};giwf59w;False;t3_kukv89;False;True;t1_givr4xk;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giwf59w/;1610434312;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Makimgmyselfuseful;;;[];;;;text;t2_16v6nw;False;False;[];;"I forced myself to like it cause I love the manga so much - -I still don’t understand why it’s treated this way";False;False;;;;1610384330;;False;{};giwft80;False;t3_kuoq3c;False;True;t1_giw0t2l;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giwft80/;1610434664;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AwakenedSheeple;;;[];;;;text;t2_bm454;False;False;[];;Well yeah. It wasn't Sonic Team.;False;False;;;;1610384358;;False;{};giwfvs7;False;t3_kukv89;False;True;t1_giuwqkp;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giwfvs7/;1610434699;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Saleenseven;;MAL;[];;https://myanimelist.net/animelist/Saleenseven;dark;text;t2_9jdyo;False;False;[];;Shame cuz the manga art is really nice...classic that Crunchyroll would censor this;False;False;;;;1610384778;;False;{};giwgz03;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giwgz03/;1610435243;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Saleenseven;;MAL;[];;https://myanimelist.net/animelist/Saleenseven;dark;text;t2_9jdyo;False;False;[];;can you link the MAL group? i would like to see the history of some anime like Darling (from 8.3 to where it is now) or Great Pretender (5.5 to 8.6? i think to where it is now);False;False;;;;1610384874;;False;{};giwh7wi;False;t3_kuoq3c;False;True;t1_giu4ngc;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giwh7wi/;1610435372;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Saleenseven;;MAL;[];;https://myanimelist.net/animelist/Saleenseven;dark;text;t2_9jdyo;False;False;[];;well magia record anime didnt finish strong either tbh;False;False;;;;1610384901;;False;{};giwhabs;False;t3_kuoq3c;False;True;t1_giuq8iq;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giwhabs/;1610435408;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610385341;;False;{};giwigbj;False;t3_kukv89;False;True;t1_giwb2e7;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giwigbj/;1610436005;0;False;False;anime;t5_2qh22;;0;[]; -[];;;fadasd1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/fadasd;light;text;t2_jbsu6;False;False;[];;"He was actually praising it but also stating that it was essentially just colored in manga pages with voice acting. - -I read the manga and am loving it, watched the anime and liked it, it's good-great and most would agree to that.";False;False;;;;1610385562;;False;{};giwj19m;False;t3_kukv89;False;True;t1_giuucew;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giwj19m/;1610436300;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;Aye, it's been a while 🤣;False;False;;;;1610385675;;False;{};giwjc18;False;t3_kukv89;False;True;t1_giwf59w;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giwjc18/;1610436464;1;True;False;anime;t5_2qh22;;0;[]; -[];;;s0ulf000d;;;[];;;;text;t2_8ip1ogav;False;False;[];;??? I literally told you 3 times that original gangster is not the only meaning of OG and this is not an opinion, it's just straight facts. Talking about incapability but your only ''argument'' was to tell me to google Original Gangster? Seriously dude, you're either on drugs or something is just terribly going wrong in your life. Whatever it is, you will get through it but at least get off the internet for a while;False;False;;;;1610385724;;False;{};giwjgkz;False;t3_kukv89;False;True;t1_giwigbj;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/giwjgkz/;1610436528;1;True;False;anime;t5_2qh22;;0;[]; -[];;;No_cuts;;;[];;;;text;t2_4xqjq4eu;False;False;[];;Weird, I don’t feel like there’s a lot of new anime that interest me this season.;False;False;;;;1610385816;;False;{};giwjpcj;False;t3_kuoq3c;False;True;t1_giuhsct;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giwjpcj/;1610436678;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AwakenedSheeple;;;[];;;;text;t2_bm454;False;False;[];;"RWBY still had fantastically animated fight scenes even when the rest of the scenes were jank. -This is consistently bad.";False;False;;;;1610386038;;False;{};giwkakn;False;t3_kuoq3c;False;True;t1_giu7pe4;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giwkakn/;1610437013;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ThomasTheTrashEngine;;;[];;;;text;t2_82jlxp8;False;False;[];;What was censored?;False;False;;;;1610386187;;False;{};giwkofr;False;t3_kuoq3c;False;True;t1_giwgz03;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giwkofr/;1610437215;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NeverGonnaSimp;;;[];;;;text;t2_9pkuih4r;False;False;[];;We'll see if it stays there when it finishes airing. It would be absolutely hilarious if it does.;False;False;;;;1610387244;;False;{};giwn0r5;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giwn0r5/;1610438571;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HarleyFox92;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/HarleyFox92/;light;text;t2_16s322;False;False;[];;I really feel sorry for the artist behind the original manga/LN;False;False;;;;1610387262;;False;{};giwn28y;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giwn28y/;1610438595;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spacesaur;;;[];;;;text;t2_1qiub1vn;False;False;[];;Pretty much any BBC drama on Netflix is labeled Netflix original, kinda amusing when you watched it when it was originally airing.;False;False;;;;1610387906;;False;{};giwoimf;False;t3_kuoq3c;False;False;t1_giv1gt0;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giwoimf/;1610439373;4;True;False;anime;t5_2qh22;;0;[]; -[];;;csdbcjkahsd;;;[];;;;text;t2_6o5ig4yp;False;False;[];;the next ufotable;False;False;;;;1610388819;;False;{};giwqjkv;False;t3_kuoq3c;False;False;t1_giuqutn;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giwqjkv/;1610440452;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal-Part958;;;[];;;;text;t2_8v1vt5d1;False;False;[];;If that op wasn’t the fattest turn off then what is;False;False;;;;1610389083;;False;{};giwr4ow;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giwr4ow/;1610440764;1;True;False;anime;t5_2qh22;;0;[]; -[];;;n080dy123;;;[];;;;text;t2_139f6y;False;False;[];;"That's besides the point, we're talking about animation here. - -Also RWBY's also not a fan animation and it was produced by FAR more than 10 people. RoosterTeeth already had a full internal animation team that had worked on Red vs Blue.";False;False;;;;1610389597;;False;{};giws9tm;False;t3_kuoq3c;False;True;t1_givbbzi;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giws9tm/;1610441389;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mochi49;;;[];;;;text;t2_fgvgx;False;False;[];;"I had some amazing laughs at the expense of Gibiate but I honestly wouldn't recommend it. It was a pendulum of being angry at it and finding it so horribly hilarious. Characters barely have motivations, the fight sequences are exceptionally flat with quite piss poor choreography, some people like the 90s/early 2000s art style and music but even then it's iffy at best. - -&#x200B; - -[Recorded this](https://www.youtube.com/watch?v=JIjBHC-CwFg) for a friend who wanted a quick decision. It really doesn't show just how terribly the 3D animated monsters are placed and animated, but it's probably the best choreographed fight in the series.";False;False;;;;1610390345;;False;{};giwtxhn;False;t3_kuoq3c;False;True;t1_giuh9h4;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giwtxhn/;1610442290;1;True;False;anime;t5_2qh22;;0;[]; -[];;;banned-for-no_reason;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/--Degenerate--;dark;text;t2_6pics463;False;False;[];;"Man ngl this looks hilarious. Into the watch list >.<";False;False;;;;1610390597;;False;{};giwuhr4;False;t3_kuoq3c;False;True;t1_giwtxhn;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giwuhr4/;1610442584;1;True;False;anime;t5_2qh22;;0;[]; -[];;;karen_pls;;;[];;;;text;t2_7fslgyoe;False;False;[];;"> we're talking about animation here. - -you brought up how RWBY had other redeeming values. I simply disagreed for early RWBY. - -And I was talking about the animation specifically for staff (ofc there's VA's, music. storyboarding, etc). there were only 10 artists total credited for the first episode. Still a pretty small team for full length animation. [Hazbin hotel](https://www.imdb.com/title/tt7216636/fullcredits/?ref_=tt_ov_st_sm) has 4 times the art staff for what was ultimately a very polished pilot. call it indie instead if you want to bikeshed the name, but my point wasn't to engage in some comparison on what's better or even good. - -Not looking to start a fight over RWBY again (this sub does that enough).";False;False;;;;1610390748;;False;{};giwuty0;False;t3_kuoq3c;False;True;t1_giws9tm;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giwuty0/;1610442761;1;True;False;anime;t5_2qh22;;0;[]; -[];;;n080dy123;;;[];;;;text;t2_139f6y;False;False;[];;"> you brought up how RWBY had other redeeming values. - -Sorry if that's how it came across, I only meant that the animation was serviceable outside the fight scenes.";False;False;;;;1610391636;;False;{};giwwtm7;False;t3_kuoq3c;False;True;t1_giwuty0;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giwwtm7/;1610443799;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Radiant-Change-3223;;;[];;;;text;t2_8bmusc6l;False;False;[];;Those are all great endings but the one I find to be most catchy is rent a girlfriend’s ending because it’s so cheerful;False;False;;;;1610392154;;False;{};giwxylc;True;t3_kumeck;False;True;t1_gisqxkc;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/giwxylc/;1610444407;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dcresistance;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/dcresistance/;light;text;t2_fskcw;False;False;[];;"> classic that Crunchyroll would censor this - -Like with all anime that airs with censors on CR, they get the TV masters that are censored to air on TV";False;False;;;;1610392518;;False;{};giwyrjp;False;t3_kuoq3c;False;True;t1_giwgz03;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giwyrjp/;1610444825;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dcresistance;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/dcresistance/;light;text;t2_fskcw;False;False;[];;There aren't any Netflix-produced anime just yet, the Eden ONA will be the first;False;False;;;;1610392761;;False;{};giwzaz9;False;t3_kuoq3c;False;True;t1_giv1gt0;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giwzaz9/;1610445104;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tampix77;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/tampix;light;text;t2_gr59z;False;False;[];;"That's why people should avoid only watching full-length anime and give a try to glorious shorts, like Pupa. - -(/s)";False;False;;;;1610394356;;False;{};gix2uuc;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gix2uuc/;1610446994;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lunawalker;;;[];;;;text;t2_12pwid;False;False;[];;"They're often called ""can badge covers"" and you can find them usually in most anime related stores in Japan or online, or on Western sites like ebay/amazon etc";False;False;;;;1610394446;;False;{};gix31xj;False;t3_kumre9;False;True;t3_kumre9;/r/anime/comments/kumre9/anime_pin_bud_thing_help_me_pls/gix31xj/;1610447103;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LegendaryRQA;;;[];;;;text;t2_hszyq;False;False;[];;"The western market is not a consideration _AT ALL_. Usually Anime is released as a supplement to the source material or to cross promote artists and singers. Take the Index Anime for example. The only reason we got a S3 was to promote a mobile game. The Japanese have access to as many manga and light novels as they want. It's more of a ""And wile your here, don't forget to record that show we got airing next month!"".";False;False;;;;1610394556;;False;{};gix3apq;False;t3_kukv89;False;True;t1_givf10m;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gix3apq/;1610447233;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tampix77;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/tampix;light;text;t2_gr59z;False;False;[];;I remember too sadly. Imo, it's the worst shit I ever watched. It's even worse than Hametsu no Mars or Tenkuu Danzai Skelter+Heaven and those are already without any redeeming feature...;False;False;;;;1610394557;;False;{};gix3auv;False;t3_kuoq3c;False;True;t1_gitq0el;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gix3auv/;1610447235;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DutchDread;;;[];;;;text;t2_6i2jqhl9;False;False;[];;Good, let's hope it stays that way.;False;False;;;;1610394861;;False;{};gix3yzu;False;t3_kukv89;False;True;t1_gix3apq;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gix3yzu/;1610447599;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Saleenseven;;MAL;[];;https://myanimelist.net/animelist/Saleenseven;dark;text;t2_9jdyo;False;False;[];;"both the violence and nudity. or any real try to give the source material justice. - -(NSFW) [here is an example, one of many](https://twitter.com/ddddddddddddd_n/status/1348306033769205764?s=21) - -The source material is him beginning to cut out her organs with a knife as it is seen all over the room than he harvests organs to sell. The anime was censored to make the entire room empty, and him using a finger which is confusing as hell in terms of what he is trying to do (from an anime only stand point)... also nudity censorship completely but i think the violence censorship is worse.";False;False;;;;1610395456;;False;{};gix5a17;False;t3_kuoq3c;False;True;t1_giwkofr;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gix5a17/;1610448318;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TRLegacy;;;[];;;;text;t2_e8dkk;False;False;[];;imo CGI human in anime still have a long way go go. CGI mech on the other hand is super awesome. I still go back to watch Knight of Sidonia once in a while.;False;False;;;;1610399097;;False;{};gixdag4;False;t3_kukv89;False;True;t1_gisy7kz;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gixdag4/;1610452768;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LegendaryRQA;;;[];;;;text;t2_hszyq;False;False;[];;If you're going to be scared about a country other then Japan influencing media, look at china. They're already doing it. Like changing Gunha's shirt in Railgun T.;False;False;;;;1610399258;;False;{};gixdmvn;False;t3_kukv89;False;False;t1_gix3yzu;/r/anime/comments/kukv89/hiecchi_on_twitter_socrunchyrolls_og_anime_exarm/gixdmvn/;1610452970;2;True;False;anime;t5_2qh22;;0;[]; -[];;;-xXxMangoxXx-;;;[];;;;text;t2_16ifp07p;False;False;[];;I wouldnt really agree with that. A lot of the time if the anime is bad people just forget about the series or don't want to continue after they finish the anime. Good adaptations are a far better advertisement because people want to read more and see what happens after.;False;False;;;;1610399543;;False;{};gixe96x;False;t3_kuoq3c;False;True;t1_givt6up;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gixe96x/;1610453333;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;Devilman Crybaby?;False;False;;;;1610400490;;False;{};gixgbj0;False;t3_kuoq3c;False;True;t1_giwzaz9;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gixgbj0/;1610454562;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;dcresistance;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/dcresistance/;light;text;t2_fskcw;False;False;[];;They just licensed it, the production committee was Dynamic Planning (Go Nagai's company) and Aniplex;False;False;;;;1610400560;;False;{};gixgh09;False;t3_kuoq3c;False;False;t1_gixgbj0;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gixgh09/;1610454655;5;True;False;anime;t5_2qh22;;0;[]; -[];;;capttaain;;;[];;;;text;t2_pzne71r;False;False;[];; i would say ex arm massacred GIBIATE;False;False;;;;1610402153;;False;{};gixjw31;False;t3_kuoq3c;False;True;t1_giun44l;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gixjw31/;1610456801;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MemeTroubadour;;;[];;;;text;t2_12zvqj;False;False;[];;I do remember hearing about Ex-Arm being kinda good a long time ago. If I could feasibly buy manga, I'd buy a volume to support the mangaka through the shitshow this is looking to be.;False;False;;;;1610403558;;False;{};gixmtvr;False;t3_kuoq3c;False;True;t1_givk3kl;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gixmtvr/;1610458715;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"I fear it won't ever be English licensed now, but the fan TLs are available and the raws are here: - -https://www.amazon.co.jp/gp/product/B074CFPHZL - -https://bookwalker.jp/series/51334/ - -https://ebookjapan.yahoo.co.jp/";False;False;;;;1610404178;;False;{};gixo3rz;False;t3_kuoq3c;False;True;t1_gixmtvr;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gixo3rz/;1610459562;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Silver_1_Dont_Judge;;;[];;;;text;t2_6oi4lw4m;False;False;[];;Christ it's at 2.47 now. I went into this blind for the most part off a recommendation, but I took me a little too long to realise they were being sarcastic about the animation.;False;False;;;;1610405593;;False;{};gixr0na;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gixr0na/;1610461476;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jazzman19;;;[];;;;text;t2_3x3gecd;False;False;[];;Sounds good. Any idea what chapter I should start on?;False;False;;;;1610409342;;False;{};gixyi65;True;t3_kukf0x;False;True;t1_gitct3n;/r/anime/comments/kukf0x/wolf_girl_and_black_prince/gixyi65/;1610467047;1;True;False;anime;t5_2qh22;;0;[]; -[];;;infinite_lyy;;;[];;;;text;t2_9lftz77s;False;False;[];;The anime ends at chapter 21, so you can start from chapter 22. It isn't too long tho so I'd still suggest reading from the beginning :) enjoy!!;False;False;;;;1610409446;;False;{};gixypi1;False;t3_kukf0x;False;True;t1_gixyi65;/r/anime/comments/kukf0x/wolf_girl_and_black_prince/gixypi1/;1610467192;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chaderenabs;;;[];;;;text;t2_8yuqmavz;False;False;[];;Berserk was born this way;False;False;;;;1610414315;;False;{};giy85wj;False;t3_kuoq3c;False;True;t1_giwft80;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giy85wj/;1610473894;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MagwitchOo;;;[];;;;text;t2_tlvsh;False;False;[];;Not sure about the group but I am a big fan of the [In Numbers](https://myanimelist.net/featured/2309/In_Numbers__The_Best_Anime_of_the_Decade) articles on MAL.;False;False;;;;1610419732;;False;{};giyiz05;False;t3_kuoq3c;False;True;t1_giwh7wi;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giyiz05/;1610481494;2;True;False;anime;t5_2qh22;;0;[]; -[];;;adeleke5140;;;[];;;;text;t2_10tpx9;False;False;[];;This destroyed my eyes, my night and my everything;False;False;;;;1610419879;;False;{};giyja57;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giyja57/;1610481719;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MagwitchOo;;;[];;;;text;t2_tlvsh;False;False;[];;My favourite video on YouTube is actually [a graduation project](https://youtu.be/4qCbiCxBd2M) made by 3 people in Taiwan.;False;False;;;;1610420197;;False;{};giyjxs7;False;t3_kuoq3c;False;True;t1_giuf558;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giyjxs7/;1610482189;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Segaco;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Segaco;light;text;t2_nyy5v;False;False;[];;"I just checked and apparently they don't record anime scores once they are finished :( - -[It's this one](https://myanimelist.net/clubs.php?cid=59197)";False;False;;;;1610420249;;False;{};giyk1jt;False;t3_kuoq3c;False;True;t1_giwh7wi;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giyk1jt/;1610482276;2;True;False;anime;t5_2qh22;;0;[]; -[];;;graytotoro;;MAL;[];;https://myanimelist.net/animelist/graytotoro;dark;text;t2_6mvyf;False;False;[];;It’s a bummer it’s getting reamed, because the story might have some promise and the still art in the credits is pretty good. Shame the animation is not.;False;False;;;;1610420274;;False;{};giyk3b5;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giyk3b5/;1610482313;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerdy314159265;;;[];;;;text;t2_752wc;False;False;[];;"How bad was the Berserk adaptation? - -This anime's mouth animation is below sock puppet level. They literally talk like fish gaping their mouth.";False;False;;;;1610424619;;False;{};giysdn8;False;t3_kuoq3c;False;True;t1_giw0t2l;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giysdn8/;1610488159;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerdy314159265;;;[];;;;text;t2_752wc;False;False;[];;Emphasis on the flaps in this one.;False;False;;;;1610426336;;False;{};giyvfzj;False;t3_kuoq3c;False;True;t1_giuvvwb;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giyvfzj/;1610490375;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerdy314159265;;;[];;;;text;t2_752wc;False;False;[];;"> 2.xx";False;False;;;;1610426366;;False;{};giyvhwh;False;t3_kuoq3c;False;True;t1_giu1tmt;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giyvhwh/;1610490424;1;True;False;anime;t5_2qh22;;0;[]; -[];;;summoned_an_owl;;;[];;;;text;t2_3e4jzfj3;False;False;[];;Ex-Arm is absolutely the worst animation I've ever seen by a very wide margin. Nothing I've ever seen comes anywhere close. I'm usually able to look past stuff like this. But this is on a completely new level of terrible. I don't know what that other guy is saying, Berserk was far better.;False;False;;;;1610427073;;1610427657.0;{};giywpsl;False;t3_kuoq3c;False;True;t1_giysdn8;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/giywpsl/;1610491251;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SpecialChain;;;[];;;;text;t2_7tv0lefo;False;False;[];;There is no ATLA movie in Ba Sing Se;False;False;;;;1610439071;;False;{};gizc69v;False;t3_kuoq3c;False;False;t1_givebha;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gizc69v/;1610501297;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SpecialChain;;;[];;;;text;t2_7tv0lefo;False;False;[];;thank you, now you have sold me to watch it.;False;False;;;;1610439192;;False;{};gizcav3;False;t3_kuoq3c;False;True;t1_giuty13;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gizcav3/;1610501376;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hyperactiv3hedgehog;;;[];;;;text;t2_6hn633nc;False;False;[];;"so ended up watching only to see how bad it was - OP with all it's character with their unnerving stare - -and then I watched the whole episode, what an absolute shit show...MC's head moving while his bro was talking was unnerving - -then the fight sequence...too much garbage to unpack";False;False;;;;1610440234;;False;{};gizddlf;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gizddlf/;1610502044;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chris10023;;;[];;;;text;t2_6mgro;False;False;[];;That was the late Monty Oum for you, Dead Fantasy and Haloid had some amazing fights in them.;False;False;;;;1610441920;;False;{};gizf2jf;False;t3_kuoq3c;False;False;t1_giwkakn;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gizf2jf/;1610503140;2;True;False;anime;t5_2qh22;;0;[]; -[];;;capttaain;;;[];;;;text;t2_pzne71r;False;False;[];;what do you mean we got aot final season, re zero, season 2, jujutsu kaisen, log horizon, the slime anime, beaststars, and plenty more i cant name all of them this is the most stacked season we had in years;False;False;;;;1610452927;;False;{};gizq611;False;t3_kuoq3c;False;True;t1_giwjpcj;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gizq611/;1610510274;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Radiant-Change-3223;;;[];;;;text;t2_8bmusc6l;False;False;[];;Bleach has great music and animation, it’s endings are no exception, the endings just make you want to watch more to listen to the music more;False;False;;;;1610454501;;False;{};gizs0fv;True;t3_kumeck;False;True;t1_gisp2pu;/r/anime/comments/kumeck/what_is_your_favorite_anime_ending/gizs0fv/;1610511452;1;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;Aren't advertisements supposed to be good then I mean hell mobile game developers spend most of their budget on ads and the games are shitty.;False;False;;;;1610457702;;False;{};gizwbal;False;t3_kuoq3c;False;True;t1_givt6up;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gizwbal/;1610514378;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610459286;;False;{};gizysyy;False;t3_kuou5n;False;True;t3_kuou5n;/r/anime/comments/kuou5n/is_there_any_legal_website_to_download_anime/gizysyy/;1610515866;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DeTroyes1;;;[];;;;text;t2_awtnhf;False;False;[];;"You could always wait until Sentai Filmworks releases the Blu Ray of it. - -I'm betting it'll end up being their biggest seller.";False;False;;;;1610466569;;False;{};gj0cdc7;False;t3_kurhzx;False;True;t3_kurhzx;/r/anime/comments/kurhzx/redo_of_healer_cultured_version/gj0cdc7/;1610523638;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Saleenseven;;MAL;[];;https://myanimelist.net/animelist/Saleenseven;dark;text;t2_9jdyo;False;False;[];;i see :( thanks for the link tho!;False;False;;;;1610471038;;False;{};gj0lsy3;False;t3_kuoq3c;False;True;t1_giyk1jt;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gj0lsy3/;1610528782;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PeterGriffenttv;;;[];;;;text;t2_5gvxyq1r;False;False;[];;How long must I wait?;False;False;;;;1610471921;;False;{};gj0nqp1;True;t3_kurhzx;False;False;t1_gj0cdc7;/r/anime/comments/kurhzx/redo_of_healer_cultured_version/gj0nqp1/;1610529846;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DeTroyes1;;;[];;;;text;t2_awtnhf;False;False;[];;"The series hasn't even been aired yet. - -I figure Sentai will probably release the BR in the fall or early 2022.";False;False;;;;1610472935;;False;{};gj0pzqs;False;t3_kurhzx;False;False;t1_gj0nqp1;/r/anime/comments/kurhzx/redo_of_healer_cultured_version/gj0pzqs/;1610531076;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PeterGriffenttv;;;[];;;;text;t2_5gvxyq1r;False;False;[];;Ahhhhhhh shit;False;False;;;;1610474992;;False;{};gj0uktn;True;t3_kurhzx;False;False;t1_gj0pzqs;/r/anime/comments/kurhzx/redo_of_healer_cultured_version/gj0uktn/;1610533569;1;True;False;anime;t5_2qh22;;0;[]; -[];;;itsmebucky;;;[];;;;text;t2_10y1i0;False;False;[];;"Hey, if you know can you explain the ending? I didn't understand *""Now you're it.""* and the color of the handkerchief.";False;False;;;;1610476544;;False;{};gj0y18e;False;t3_kumcrs;False;True;t1_git7r4t;/r/anime/comments/kumcrs/yami_shibai_season_8_episode_1_discussion/gj0y18e/;1610535529;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rocky_iwata;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/banninghamma;light;text;t2_i9ys0;False;False;[];;2.35 now. Will it get below 2?;False;False;;;;1610499453;;False;{};gj2a0l6;False;t3_kuoq3c;False;False;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gj2a0l6/;1610568346;2;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;Honestly there should be a contest of what is the worst anime, and there should be a gibiate sequel that tries to be EVEN worse than exarm;False;False;;;;1610506311;;False;{};gj2msro;False;t3_kuoq3c;False;False;t1_gixjw31;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gj2msro/;1610577379;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NeverGonnaSimp;;;[];;;;text;t2_9pkuih4r;False;False;[];;I hope so. Hilarity will ensue.;False;False;;;;1610510844;;False;{};gj2uw8b;False;t3_kuoq3c;False;True;t1_gj2a0l6;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gj2uw8b/;1610582985;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;Much like its theme, Berserk was always destined for suffering and pain.;False;False;;;;1610527453;;False;{};gj3g3qj;False;t3_kuoq3c;False;True;t1_giy85wj;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gj3g3qj/;1610596821;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Injustice289;;;[];;;;text;t2_2kakdrw6;False;False;[];;Found it yet?;False;False;;;;1610576465;;False;{};gj5viz2;False;t3_kurhzx;False;True;t3_kurhzx;/r/anime/comments/kurhzx/redo_of_healer_cultured_version/gj5viz2/;1610651194;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PeterGriffenttv;;;[];;;;text;t2_5gvxyq1r;False;False;[];;I am looking everywhere, apparently it aired at 4:00am JP time. So i am trying my best;False;False;;;;1610576800;;False;{};gj5w9b6;True;t3_kurhzx;False;True;t1_gj5viz2;/r/anime/comments/kurhzx/redo_of_healer_cultured_version/gj5w9b6/;1610651704;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Comrade_Jelonov;;;[];;;;text;t2_44yhkuq5;False;False;[];;That was exactly what I was looking for, thanks;False;False;;;;1610586223;;False;{};gj6ff61;True;t3_kuru8e;False;True;t1_gitne2h;/r/anime/comments/kuru8e/5_days_ago_i_returned_to_anime_but_with_rule_to/gj6ff61/;1610665137;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610593242;;False;{};gj6stnr;False;t3_kurhzx;False;True;t1_gj5w9b6;/r/anime/comments/kurhzx/redo_of_healer_cultured_version/gj6stnr/;1610673604;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hi gamingunfinished, your post has been removed because it links to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610593243;moderator;False;{};gj6stq9;False;t3_kurhzx;False;True;t1_gj6stnr;/r/anime/comments/kurhzx/redo_of_healer_cultured_version/gj6stq9/;1610673605;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Sparemepain;;;[];;;;text;t2_1pkz23hl;False;False;[];;Link it again imo;False;False;;;;1610636112;;False;{};gj8di91;False;t3_kurhzx;False;False;t1_giupfk3;/r/anime/comments/kurhzx/redo_of_healer_cultured_version/gj8di91/;1610707716;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Piromysl;;;[];;;;text;t2_4w6z82lr;False;False;[];;Imagine the misery original creator has to go through.;False;False;;;;1610695988;;False;{};gjbn1x6;False;t3_kuoq3c;False;True;t3_kuoq3c;/r/anime/comments/kuoq3c/only_several_hours_after_airing_exarm_stole/gjbn1x6/;1610784347;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zachomara;;;[];;;;text;t2_8stkn84y;False;False;[];;I think you need to DM sparemepain on the site.;False;False;;;;1610746482;;False;{};gjdygf9;False;t3_kurhzx;False;True;t1_giupfk3;/r/anime/comments/kurhzx/redo_of_healer_cultured_version/gjdygf9/;1610837632;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rude_Representative3;;;[];;;;text;t2_7hpwva5t;False;False;[];;How long do we have to wait to get ep2 uncensored;False;False;;;;1611160605;;False;{};gjyj2un;False;t3_kurhzx;False;True;t3_kurhzx;/r/anime/comments/kurhzx/redo_of_healer_cultured_version/gjyj2un/;1611283860;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1611208576;;False;{};gk19m6q;False;t3_kukn4g;False;True;t3_kukn4g;/r/anime/comments/kukn4g/finding_probably_old_atashinchi_episodes/gk19m6q/;1611342744;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Second93;;;[];;;;text;t2_671rqji9;False;False;[];;Eren so cold he don’t care falco was in there when he transformed I hope Reiner will protect him somehow but damn Eren about to kill all these people because they leave him no choice even after knowing the truth this is sad but he gotta do what he can to try protect the island;False;False;;;;1610314412;;False;{};gisvso8;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvso8/;1610357039;7;True;False;anime;t5_2qh22;;0;[]; -[];;;damageis_done;;;[];;;;text;t2_47n90bpm;False;False;[];;Guess fucking over Grice family is a family sport for Jeager family.;False;False;;;;1610314413;;False;{};gisvspd;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvspd/;1610357040;52;True;False;anime;t5_2qh22;;0;[]; -[];;;Giaguaro80;;;[];;;;text;t2_1rp3im9;False;False;[];;"That part at 15:23 where they were playing the drums as his BGM and then the chorus of ""[ətˈæk 0N tάɪtn](https://www.youtube.com/watch?v=yYYLbii-izA&ab_channel=HachimanHikigaya)"" came in to play, that was something else, like those were part of BGM for the speech";False;False;;;;1610314413;;False;{};gisvspx;False;t3_kujurp;False;False;t1_gisbdpc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvspx/;1610357040;10;True;False;anime;t5_2qh22;;0;[]; -[];;;ConvolutedBoy;;;[];;;;text;t2_5dp2r;False;False;[];;"I was expecting a ""I have my own world to save"" but I guess Eren didn't need to make that clear.";False;False;;;;1610314418;;False;{};gisvt4k;False;t3_kujurp;False;True;t1_giscr3k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvt4k/;1610357046;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BreadKrumb;;;[];;;;text;t2_j2ydj;False;False;[];;More than just Eren thinking they might be similar, Eren said almost the same thing just before transforming to lift the boulder in the first season.;False;False;;;;1610314424;;False;{};gisvtit;False;t3_kujurp;False;True;t1_gishd5x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvtit/;1610357052;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sharmarahulkohli;;;[];;;;text;t2_12gbee;False;False;[];;"Attack Titan has no specified abilities - -The founding Titan can control all Titans(remember when in s2e12 Eren used titans to attack Dina Titan,he partially used some ability of The Founding Titan)";False;False;;;;1610314428;;False;{};gisvtth;False;t3_kujurp;False;True;t1_gisvlmv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvtth/;1610357056;2;True;False;anime;t5_2qh22;;0;[]; -[];;;darkram00;;;[];;;;text;t2_6bkpifgi;False;False;[];;Eren thinking about his mom in this episode made me remember how badly she wanted her son to be a normal boy, with no responsibilities and powers. If only she knew that now her son is the enemy of the world...;False;False;;;;1610314429;;False;{};gisvtvk;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvtvk/;1610357057;42;True;False;anime;t5_2qh22;;0;[]; -[];;;thedancingpaperclip;;;[];;;;text;t2_3oe8dhkn;False;False;[];;They spent three whole episodes fleshing out reiners character and humanising him just to tear it all down in this one episode;False;False;;;;1610314436;;False;{};gisvucr;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvucr/;1610357064;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kk_victory;;;[];;;;text;t2_2nbz5to3;False;False;[];;That’s the thing - Eren understands EXACTLY what he is doing and does it anyway. He isn’t demonizing these people - he’s lived under their roof, gotten to know them, but still does this attack because it’s the only way. It’s not for revenge, it’s to save the world. That’s why him and Reiner are the same.;False;False;;;;1610314447;;False;{};gisvv62;False;t3_kujurp;False;False;t1_gish4zq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvv62/;1610357077;119;True;False;anime;t5_2qh22;;0;[]; -[];;;officialchourico;;;[];;;;text;t2_125w3v;False;False;[];;I'd imagine he is the Warhammer titan and is going to transform next episode. He is the only Tybur really given any focus so it would be weird if it wasn't him.;False;False;;;;1610314452;;False;{};gisvvhb;False;t3_kujurp;False;False;t1_gislr34;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvvhb/;1610357082;20;True;False;anime;t5_2qh22;;0;[]; -[];;;UzEE;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/UzEEInc;light;text;t2_45t2z;False;False;[];;## WHY WAS THIS EPISODE ONLY 2 MINUTES LONG??!!!!;False;False;;;;1610314454;;False;{};gisvvoe;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvvoe/;1610357085;51;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Smile;;;[];;;;text;t2_49lx518v;False;False;[];;This is the nost amazing episode of anything ive seen in a long time;False;False;;;;1610314456;;False;{};gisvvul;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvvul/;1610357090;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kingfirejet;;;[];;;;text;t2_jjiqo;False;False;[];;"""I used the Eldians to destroy the Eldians.""";False;False;;;;1610314457;;False;{};gisvvws;False;t3_kujurp;False;False;t1_gisfkt0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvvws/;1610357091;336;True;False;anime;t5_2qh22;;0;[]; -[];;;IC2Flier;;;[];;;;text;t2_wnxu2v6;False;False;[];;That this scene will be parodied again like the first one.;False;False;;;;1610314459;;False;{};gisvw10;False;t3_kujurp;False;False;t1_gisanh5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvw10/;1610357093;14;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610314460;;False;{};gisvw4i;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvw4i/;1610357094;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheOSSJ;;;[];;;;text;t2_16beob;False;False;[];;r/fuckyouinparticular;False;False;;;;1610314468;;False;{};gisvwpb;False;t3_kujurp;False;False;t1_gisuya6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvwpb/;1610357103;48;True;False;anime;t5_2qh22;;0;[]; -[];;;H4wx;;;[];;;;text;t2_ehuq5;False;False;[];;"It makes sense that there is some nation out there that is willing to ally with the Eldians, either because they legitimately sympathize with their plight or because they think it's advantageous to them, or perhaps both. - -Also there was a group of Oriental people inside the Walls so perhaps they're old Allies of some sort?";False;False;;;;1610314468;;False;{};gisvwpr;False;t3_kujurp;False;False;t1_gisiqhp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvwpr/;1610357103;93;True;False;anime;t5_2qh22;;0;[]; -[];;;Frost787;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JoseSM;light;text;t2_i4r59;False;False;[];;Really fucking hype! It's finally here!! I was on the edge of my seat waiting for it to happen and it didn't let me down! I'm really pleased!;False;False;;;;1610314475;;False;{};gisvx8t;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvx8t/;1610357111;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NiamhHA;;;[];;;;text;t2_4iywrflx;False;False;[];;No wonder💀.;False;False;;;;1610314485;;False;{};gisvxx2;False;t3_kujurp;False;True;t1_gisarcw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvxx2/;1610357121;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;Yep. This is exactly it. I truly believe Eren was going to give them a chance. Multiple instances where it looked like he was gonna back down.;False;False;;;;1610314486;;False;{};gisvxzw;False;t3_kujurp;False;False;t1_gishd5x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvxzw/;1610357122;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Acheroni;;;[];;;;text;t2_8kyb7;False;False;[];;"Another call back: - -Willy said he's doing this because he was born into this world. - -Eren's mom said Eren didn't need to be special, look at him, he was born into this world.";False;False;;;;1610314487;;False;{};gisvy49;False;t3_kujurp;False;False;t1_gislyf5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvy49/;1610357124;453;True;False;anime;t5_2qh22;;0;[]; -[];;;Lumaro;;;[];;;;text;t2_1302qz;False;False;[];;Honestly, I’m just glad that anime-onlies seem to be supportive of him. All it took were a few manga chapter focused on Marley for some manga readers to completely forget everything Marley did to Paradis, like Eren is some big bad terrorist for refusing to die.;False;False;;;;1610314502;;1610314877.0;{};gisvz7t;False;t3_kujurp;False;False;t1_gisaesh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvz7t/;1610357141;9;True;False;anime;t5_2qh22;;0;[]; -[];;;StuDevo;;;[];;;;text;t2_bmn0r;False;False;[];;So hyped with that ending. Wondering what the Asian lady knows especially as she left before things went down. 🤔;False;False;;;;1610314508;;False;{};gisvzma;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvzma/;1610357146;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Voi69;;;[];;;;text;t2_lcnz6;False;False;[];;Grisha is Eren's dad. You are thinking about his other son : Zeke;False;False;;;;1610314509;;False;{};gisvzqg;False;t3_kujurp;False;True;t1_gisva0b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvzqg/;1610357148;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SupedoSpade;;;[];;;;text;t2_e8yut;False;False;[];;Wasn't that right before Reiner was gonna kill himself to?? So instead of getting away with that he then hears those same words come back as Eren explodes seemingly killing one of his reasons to live instantly. What. The. Fuck. I still remember that twisted piano as he was recalling that moment;False;False;;;;1610314510;;False;{};gisvzrm;False;t3_kujurp;False;False;t1_gisd65h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvzrm/;1610357148;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Insecticide;;;[];;;;text;t2_a6x2b;False;False;[];;This might be a bit of a stretch to some of you but I like to consider that everything up until this point was the prologue of the story and what we are getting from now is the midgame. Since I am commenting under the source material corner, I think you guys know when the endgame starts and it is going to be even more hype.;False;False;;;;1610314512;;False;{};gisvzy0;False;t3_kujurp;False;True;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisvzy0/;1610357151;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Ashish_Trip;;;[];;;;text;t2_2t89pxeq;False;False;[];;"That's the crux of this episode, Eren already knew but had to hear from Willy himself. I think there might have been a fleeting hope in him after Willy told the truth about paradis. But alas.... - -God, I can't believe what must have gone through Reiner's head. He was the one who created Eren, while things could have panned out differently had he gone back with annie and berthold.";False;False;;;;1610314518;;False;{};gisw0fq;False;t3_kujurp;False;False;t1_gisore3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw0fq/;1610357158;56;True;False;anime;t5_2qh22;;0;[]; -[];;;Aerohed;;;[];;;;text;t2_xjmyo;False;False;[];;"I’d like to believe that Eren’s group evacuated the apartments above them before he did the thing, but things are never that convenient in this series if it would cause something happy to happen. - -Looks like Eren’s begun the war with a war crime, as seems to be the favored starting move in this series.";False;False;;;;1610314534;;False;{};gisw1n2;False;t3_kujurp;False;False;t1_giscr3k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw1n2/;1610357178;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GlassesFreekJr;;;[];;;;text;t2_51mnzs;False;False;[];;Who says they're dead? I never got that impression watching the episode. Was that a spoiler? Please tell me that wasn't a spoiler.;False;False;;;;1610314534;;False;{};gisw1na;False;t3_kujurp;False;False;t1_gisctsk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw1na/;1610357178;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Voi69;;;[];;;;text;t2_lcnz6;False;False;[];;That and memes. Funny to see memes I have been seeing for 3 years on an anime thread.;False;False;;;;1610314536;;False;{};gisw1qo;False;t3_kujurp;False;False;t1_gisv9yq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw1qo/;1610357180;15;True;False;anime;t5_2qh22;;0;[]; -[];;;taprik;;;[];;;;text;t2_1rdvdqg5;False;False;[];;Yet Eren is like I am the bad guy;False;False;;;;1610314536;;False;{};gisw1ro;False;t3_kujurp;False;False;t1_gisrcy6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw1ro/;1610357180;310;True;False;anime;t5_2qh22;;0;[]; -[];;;-yeseen-;;;[];;;;text;t2_4z1jg7m7;False;False;[];;gg Willy;False;False;;;;1610314541;;False;{};gisw24c;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw24c/;1610357185;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lonystal;;;[];;;;text;t2_3lg5t9v;False;False;[];;WIT would've ruined it, not because they're a bad studio but because they wouldn't be able to handle the season. If they had enough time to make it they would've made it godlike, but it would've taken them too long. I mean season 2 took 2 years to make 12 episodes but damn the quality was awesome. If they had that much time to make this they would've pulled it out perfectly, which unfortunately they didn't get the chance!;False;False;;;;1610314544;;False;{};gisw2ff;False;t3_kujurp;False;False;t1_gisp6qd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw2ff/;1610357190;5;True;False;anime;t5_2qh22;;0;[]; -[];;;hinakura;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;http://myanimelist.net/profile/astarcalledspica;light;text;t2_dyigg;False;False;[];;This is everything I wanted from the cliffhanger of last chapter. Oh god. It's a declaration of war and Eren has the upper hand.;False;False;;;;1610314545;;False;{};gisw2h8;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw2h8/;1610357191;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Atharaphelun;;;[];;;;text;t2_gawd5;False;False;[];;"> fanfic - -*There's more than just fanfic*";False;False;;;;1610314550;;False;{};gisw2uy;False;t3_kujurp;False;False;t1_gisfmsu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw2uy/;1610357195;18;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;"> just like nazi soldiers were just ""following orders"" something that plays a part sure but it's still you who's doing a massacre - -I mean the big reason why Nazi soldiers were not allowed to plead this defense as we have 0 records of Soldiers being killed for refusing to carry out War Crimes. Legally if someone put a gun to your head and told you to kill someone innocent, you cant do it but I can argue that your allowed to do so morally.";False;False;;;;1610314551;;False;{};gisw2yo;False;t3_kujurp;False;False;t1_gisnfjh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw2yo/;1610357198;6;True;False;anime;t5_2qh22;;0;[]; -[];;;skilless14;;;[];;;;text;t2_1lsc12wv;False;False;[];;Aot for anime of the year?;False;False;;;;1610314553;;False;{};gisw33r;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw33r/;1610357200;8;True;False;anime;t5_2qh22;;0;[]; -[];;;detention_doggo;;;[];;;;text;t2_5b8xasnj;False;False;[];;They can’t leave us on a cliff hanger like that;False;False;;;;1610314554;;False;{};gisw36i;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw36i/;1610357201;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jason3b93;;;[];;;;text;t2_4exum8;False;False;[];;"Great episode, though I have some very small nitpicks, like Eren's Titan looking weird in that body shot and I wish they made some sasuga with Willy's death. Although, since the panel is very memorable in the manga, I see why they did the way the did it. Also, I imagine they focused their time and energy to give the upcoming fight justice, so I can't really complain that much. - -I liked the way they've been reorganizing some scenes, like Berthold's dream. It's a little moment that really stuck up to me when I've read, so I'm very pleased they used it to open this episode. - -Great voice acting for Willy, Reiner and Eren - they have basically every line of the episode and they were able to carry. - -Man, it's crazy to remember that this exchange between Reiner and Eren took what, two months? One of the most tense dialogues I've seen in any media.";False;False;;;;1610314555;;False;{};gisw37g;False;t3_kujurp;False;False;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw37g/;1610357201;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610314572;;False;{};gisw4hv;False;t3_kujurp;False;False;t1_gisu7si;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw4hv/;1610357220;1;True;False;anime;t5_2qh22;;0;[]; -[];;;theanimegamer-___-;;;[];;;dark;text;t2_3vm3lj8d;False;False;[];;He made one cut on his hand way scarier than biting ferociously into his thumb.;False;False;;;;1610314575;;False;{};gisw4ru;False;t3_kujurp;False;False;t1_gisdr7g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw4ru/;1610357224;35;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;"Dang i hooe im wrong and it gets real high - -I just keep my exçectations low - -Either way fantastic episode. Crap the tension and music was fire";False;False;;;;1610314579;;False;{};gisw50c;False;t3_kujurp;False;True;t1_gisuwga;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw50c/;1610357228;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Voi69;;;[];;;;text;t2_lcnz6;False;False;[];;I am a manga reader. Curious to hear you.;False;False;;;;1610314585;;False;{};gisw5h5;False;t3_kujurp;False;False;t1_gisut43;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw5h5/;1610357235;4;True;False;anime;t5_2qh22;;0;[]; -[];;;IC2Flier;;;[];;;;text;t2_wnxu2v6;False;False;[];;You have no idea how well this analogy works.;False;False;;;;1610314586;;False;{};gisw5m2;False;t3_kujurp;False;False;t1_gisqex6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw5m2/;1610357237;7;True;False;anime;t5_2qh22;;0;[]; -[];;;bugxter;;;[];;;;text;t2_ahdtc;False;False;[];;I feel like Eren is going to pull a Lelouch, right?;False;False;;;;1610314590;;False;{};gisw5wh;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw5wh/;1610357242;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;Truly the goat.;False;False;;;;1610314592;;False;{};gisw600;False;t3_kujurp;False;False;t1_gisj7h2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw600/;1610357244;9;True;False;anime;t5_2qh22;;0;[]; -[];;;flyingelephante;;;[];;;;text;t2_wlpmo;False;True;[];;"""This is just a feeling, but I think that man might have wanted [someone to judge him.](https://imgur.com/a/CkZRUux)"" - -Reiner had wanted Eren to judge him for his actions, but instead Eren offers forgiveness and understanding. For Reiner who is consumed by guilt and self-loathing, Eren refusing to judge him even while he begs for it is actually the greater punishment that Reiner causes more mental torture than any blame or condemnation would have.";False;False;;;;1610314593;;False;{};gisw64z;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw64z/;1610357246;38;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610314604;;False;{};gisw6x4;False;t3_kujurp;False;True;t1_gisvw4i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw6x4/;1610357257;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Serpentine812;;;[];;;;text;t2_4kcit4gk;False;False;[];;Now I know what people meant when they talked about Eren being the best character in AOT, a certified goat;False;False;;;;1610314605;;False;{};gisw6yj;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw6yj/;1610357258;21;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;"> -> ->The world: *Declares war* -> ->Eren: *Instantly retaliates* - -I mean technically no one authorized anything. It was just a speach";False;False;;;;1610314607;;False;{};gisw73m;False;t3_kujurp;False;True;t1_gisboc1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw73m/;1610357260;0;True;False;anime;t5_2qh22;;0;[]; -[];;;c0smic_0wl;;;[];;;;text;t2_f064a;False;False;[];;"So that tall soldier has to be Armin! I didn't think so at first because he's too tall. BUT he's blonde and he likely had a growth spurt after acquiring the colossal titan power. - -Also fitting to see both of them use the same strategy they used against Annie by leading their targets underground.";False;False;;;;1610314614;;False;{};gisw7nh;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw7nh/;1610357268;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NKG_and_Sons;;;[];;;;text;t2_4fdbwxso;False;False;[];;"I don't think it's indicated that they're actually closing in on Eren, rather just generally getting ready for a seemingly impending attack. - -Kinda didn't like it, because it basically guaranteed Eren was about to transform :/ - -Oh well, hardly matters.";False;False;;;;1610314626;;False;{};gisw8jy;False;t3_kujurp;False;False;t1_giskygn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw8jy/;1610357282;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610314630;;1610314848.0;{};gisw8st;False;t3_kujurp;False;True;t1_gisviqd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw8st/;1610357286;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TurbidusQuaerenti;;;[];;;;text;t2_g9rwp;False;False;[];;"Wow. What an amazing episode. The tension was unbelievable. I was shocked when it was over already. I also was not expecting the time between the declaration of war and Eren attacking to be that short. Damn. - -I also feel like I'm one of the only ones who's kinda sad about how Eren has turned out. Don't get me wrong, it's an amazing change story-wise, but it feels like everyone is like ""yeah, kill them all!"" instead of ""damn, he really just killed all those people with no hesitation"". I'm gonna be really sad if it turns out Falco is dead.";False;False;;;;1610314638;;False;{};gisw9fo;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw9fo/;1610357296;6;True;False;anime;t5_2qh22;;0;[]; -[];;;theanimegamer-___-;;;[];;;dark;text;t2_3vm3lj8d;False;False;[];;These things are why Isayama is a GENIUS. Intentional or not.;False;False;;;;1610314642;;False;{};gisw9po;False;t3_kujurp;False;False;t1_gisafs9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisw9po/;1610357300;57;True;False;anime;t5_2qh22;;0;[]; -[];;;conqueringdragon;;;[];;;;text;t2_11nm5laj;False;False;[];;"He also said it himself: ""I am free because I was born into this world"" or so, when Armin woke him from the titan rampage when he transformed to plug the hole in the first half of season 1.";False;False;;;;1610314655;;False;{};giswao2;False;t3_kujurp;False;False;t1_gisioq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswao2/;1610357314;16;True;False;anime;t5_2qh22;;0;[]; -[];;;bugxter;;;[];;;;text;t2_ahdtc;False;False;[];;But I don't get it, what's Eren's goal at this point? Just kill all the marleyans?;False;False;;;;1610314655;;False;{};giswaoe;False;t3_kujurp;False;True;t1_gisadib;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswaoe/;1610357314;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WFCtothemoon;;;[];;;;text;t2_93t7qog4;False;False;[];;"When it all goes downhill, or... atleast my eren x mikase ship - -lol";False;False;;;;1610314655;;False;{};giswapx;False;t3_kujurp;False;True;t1_gisajvw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswapx/;1610357315;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Crisisofland;;;[];;;;text;t2_7jhkdpjn;False;False;[];;I know but Eren's intention was not their well being, he intended on killing them by just transforming.;False;False;;;;1610314657;;False;{};giswat0;False;t3_kujurp;False;True;t1_gispmai;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswat0/;1610357316;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sominius;;;[];;;;text;t2_16ezzc;False;False;[];;Thank you for this;False;False;;;;1610314661;;False;{};giswb4x;False;t3_kujurp;False;False;t1_gism93w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswb4x/;1610357321;4;True;False;anime;t5_2qh22;;0;[]; -[];;;pepperminthippos;;;[];;;;text;t2_9esi1c4;False;False;[];;amazing episode, mappa really shines on dialogue and buildup but admittedly i can now see why the actual transformation wasnt as hype as say s2e6 or s1e24;False;False;;;;1610314665;;False;{};giswbh8;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswbh8/;1610357326;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ragequitx;;;[];;;;text;t2_694ig;False;False;[];;Dam theres so many Pieck simps that they're even in the anime itself;False;False;;;;1610314676;;False;{};giswccu;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswccu/;1610357339;103;True;False;anime;t5_2qh22;;0;[]; -[];;;onetrickponySona;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/tsunderek0;light;text;t2_tyzf0;False;False;[];;"""sorry, that was my edgy high school phase""";False;False;;;;1610314677;;False;{};giswcen;False;t3_kujurp;False;False;t1_gisak3a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswcen/;1610357340;2;True;False;anime;t5_2qh22;;0;[]; -[];;;iamkwang;;;[];;;;text;t2_d71x2;False;False;[];;Remember in the first half of the series where everyone wanted Reiner and Bertolt to die cause they killed innocent people, what do these people think of Eren now?;False;False;;;;1610314686;;False;{};giswd0w;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswd0w/;1610357350;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Nefarias_Bredd;;;[];;;;text;t2_9yxoj;False;False;[];;"Episode 31 - Warrior [right before the Titan reveal] - -Reiner: It's been three years surrounded by nothing but idiots. We were just kids, we didn't know anything. If only I never knew that there were people like this I wouldn't have become such a half-assed piece of shit! - - -Episode 64 - Declaration of War [around minute 19] - -Eren: You guys were taught everyone in the walls was a devil. -You were just kids who didn't know anything, it was drilled into you. -You were just kids. What could you even do?";False;False;;;;1610314688;;1610315064.0;{};giswd6u;False;t3_kujurp;False;False;t1_gisj0wk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswd6u/;1610357352;15;True;False;anime;t5_2qh22;;0;[]; -[];;;officialchourico;;;[];;;;text;t2_125w3v;False;False;[];;He says himself in this episode he was talking to his comrades through the letters.;False;False;;;;1610314692;;False;{};giswdh3;False;t3_kujurp;False;False;t1_gisqcfm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswdh3/;1610357357;19;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;Eren has both.;False;False;;;;1610314694;;False;{};giswdmw;False;t3_kujurp;False;False;t1_gisvobu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswdmw/;1610357359;40;True;False;anime;t5_2qh22;;0;[]; -[];;;Perrenekton;;;[];;;;text;t2_q18f1;False;False;[];;Yeah I re-read the Manga after that and I had totally forgot it. But still, that's not something that Marley knows;False;False;;;;1610314700;;False;{};giswe25;False;t3_kujurp;False;False;t1_gisrhzo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswe25/;1610357365;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GabortionFund;;;[];;;;text;t2_4p9mm4nr;False;False;[];;I’m going to try and last to the end of the season lol, but after that there’s no way I can stop myself;False;False;;;;1610314708;;False;{};giswelx;False;t3_kujurp;False;True;t1_gissu7u;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswelx/;1610357372;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610314710;;False;{};gisweqh;False;t3_kujurp;False;True;t1_gisore3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisweqh/;1610357374;2;True;False;anime;t5_2qh22;;0;[]; -[];;;alternate4unkwn;;;[];;;;text;t2_2ombesvf;False;False;[];;Eren just committed homicide.;False;False;;;;1610314721;;False;{};giswfld;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswfld/;1610357387;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Zhidezoe;;;[];;;;text;t2_qfltg2i;False;False;[];;They are NOT ready for episode 6;False;False;;;;1610314721;;False;{};giswflh;False;t3_kujurp;False;True;t1_gisajvw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswflh/;1610357387;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610314724;;False;{};giswftn;False;t3_kujurp;False;True;t1_gispetq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswftn/;1610357390;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ashish_Trip;;;[];;;;text;t2_2t89pxeq;False;False;[];;I guess it's a letter to survey corp members, eren had already laid out a plan and it will unfold in #65. With the fall of warhammer titan, Marley will crumble.;False;False;;;;1610314725;;False;{};giswfvn;False;t3_kujurp;False;False;t1_gisqcfm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswfvn/;1610357391;4;True;False;anime;t5_2qh22;;0;[]; -[];;;GamerDylan;;;[];;;;text;t2_9luxkbc;False;False;[];;It seems like that for every episode! Along with controlling titans apparently Eren and Annie are controlling time too;False;False;;;;1610314726;;False;{};giswfz6;False;t3_kujurp;False;True;t1_gisvvoe;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswfz6/;1610357393;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;"It has been revealed that the attack titan can transcend time when it comes to memories (Eren Kruger having memories of Mikasa and Armin). It is largely still a mysterious entity. - -The founding titan is essentially Eldian god, as described by Rod Reiss. It has as of yet unexplored abilities, but we know it can achieve things like erasing memories and commanding titans with willpower.";False;False;;;;1610314727;;False;{};giswg2b;False;t3_kujurp;False;True;t1_gisvlmv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswg2b/;1610357394;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LordofSpuds;;;[];;;;text;t2_t8u4u;False;False;[];;I’ve never rewatched an episode so much in my fucking life holy shit...;False;False;;;;1610314729;;False;{};giswg6k;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswg6k/;1610357396;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Lil_Peep4Ever;;;[];;;;text;t2_33g5ma4k;False;False;[];;I got the idea that Eren knew what willy was gonna say all along, he knew that it was a war declaration, and was prepared to transform.. No? What im saying is he made the decision before Willys speech, not during. That's what I thought at least.;False;False;;;;1610314736;;False;{};giswgoc;False;t3_kujurp;False;False;t1_gishd5x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswgoc/;1610357402;3;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;I actually don't understand that scene. What did Eren showing his cut hand signify?;False;False;;;;1610314736;;False;{};giswgow;False;t3_kujurp;False;True;t1_gisa5o0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswgow/;1610357402;2;True;False;anime;t5_2qh22;;0;[]; -[];;;realrimurutempest;;;[];;;;text;t2_4bauklbm;False;False;[];;"Willy: “I Declare War!!” - -Eren: “Alright, bet”";False;False;;;;1610314737;;False;{};giswgsd;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswgsd/;1610357404;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610314738;;False;{};giswgw5;False;t3_kujurp;False;True;t1_gisv5pt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswgw5/;1610357405;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vindicare605;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aresendez88;light;text;t2_656ck;False;False;[];;"So this whole time there were only 8 Titans not 9, The collosal titan was just one of millions?! The collosal titan was arguably the most powerful villain in previous arcs only matched by Beast Titan. How does that make sense that the great Titan War would be between the other 8 lesser titans? - -Am I missing something or does this seem a little off power scaling wise. Collosal Titan went from being one of the most powerful of the 9 to being not special at all. - -EDIT: Thanks for the responses, that cleared that up. So Armin is still one of the most powerful.";False;False;;;;1610314744;;1610319762.0;{};giswh9h;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswh9h/;1610357411;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LethalCS;;;[];;;;text;t2_er74b;False;False;[];;Holy fuck that is an amazing end card;False;False;;;;1610314744;;False;{};giswhbe;False;t3_kujurp;False;False;t1_gisaov5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswhbe/;1610357411;5;True;False;anime;t5_2qh22;;0;[];True -[];;;exozaln;;;[];;;;text;t2_x135v;False;False;[];;"Basically, the founder titan's powers can only be used by people with royal blood, and it's meant to be possessed by them, but Eren's father stole it, passing it down to Eren along with the attack titan. - -But there's a catch, royal people upon inheriting the founder are to obey the king's will. - -Eren bypassed that by not having royal blood, but he still can't use the powers. I guess it's like a way for the King's will to always be fulfilled.";False;False;;;;1610314749;;False;{};giswhng;False;t3_kujurp;False;False;t1_gisvlmv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswhng/;1610357416;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;Reddit itself was down for a few minutes after DameDesuYo's release came out. That was a hilarious coincidence.;False;False;;;;1610314750;;False;{};giswhs2;False;t3_kujurp;False;False;t1_gisv5wa;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswhs2/;1610357418;9;True;False;anime;t5_2qh22;;0;[]; -[];;;ayunahako;;;[];;;;text;t2_2v2fvz0k;False;False;[];;The fastest reply to declaration of war🔥🔥;False;False;;;;1610314752;;False;{};giswhx9;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswhx9/;1610357420;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;"Yup that was it. It's implied that he knew how it's gonna go but still wanted to give that chance. Nothing he can do when Willy went ahead to declare war other than say, ""If you insist.""";False;False;;;;1610314760;;False;{};giswii6;False;t3_kujurp;False;False;t1_gispetq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswii6/;1610357428;40;True;False;anime;t5_2qh22;;0;[]; -[];;;GamerDylan;;;[];;;;text;t2_9luxkbc;False;False;[];;She needs to come back as a ghost and slap Eren back to reality;False;False;;;;1610314762;;False;{};giswioa;False;t3_kujurp;False;False;t1_gisvtvk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswioa/;1610357430;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ItchyPlatypus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ItchyPlatypus;light;text;t2_x6uza5h;False;False;[];;Great episode but like every episode of this anime (especially this one) source readers hyped this up to be some kind of masterpiece. There are going to be a considerable amount of people disappointed due to source readers raising expectations considerably. 8/10 episode for me. Not enough Eren and Reiner and too much exposition. Good build up episode though. Things are finally picking up, looking forward to the next episode.;False;False;;;;1610314764;;False;{};giswisj;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswisj/;1610357432;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;Not the first time. He has killed people ever since he was a kid.;False;False;;;;1610314786;;False;{};giswkh0;False;t3_kujurp;False;False;t1_giswfld;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswkh0/;1610357457;8;True;False;anime;t5_2qh22;;0;[]; -[];;;hollowXvictory;;MAL;[];;http://myanimelist.net/animelist/h0ll0wxvict0ry;dark;text;t2_6hn3t;False;False;[];;Just noticed none of those guys have an armband. Piek's charms cannot be stopped by discrimination.;False;False;;;;1610314794;;False;{};giswl35;False;t3_kujurp;False;False;t1_gisctsk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswl35/;1610357466;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Acheroni;;;[];;;;text;t2_8kyb7;False;False;[];;"Eren and Reiner's stories are also reverses of eachother. - -Reiner begins the story by pushing himself to commit an atrocity, and ends the story being full of regret about not being able to do anything. - -Eren begins the story being full of regret about not being able to do anything to stop the titans, and is ending the story by pushing himself to commit an atrocity.";False;False;;;;1610314795;;False;{};giswl49;False;t3_kujurp;False;False;t1_gisizez;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswl49/;1610357467;443;True;False;anime;t5_2qh22;;0;[]; -[];;;sparklingbluelight;;;[];;;;text;t2_8e94c;False;False;[];;Seriously? Fucking manga readers using manga memes before anime onlies even understand them.;False;False;;;;1610314796;;False;{};giswl8g;False;t3_kujurp;False;False;t1_gisaesh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswl8g/;1610357468;4;True;False;anime;t5_2qh22;;0;[]; -[];;;redlaWw;;;[];;;;text;t2_9wwod;False;False;[];;I'm really glad they had Eren show his hand and talk about the innocent people above them and then *didn't* have Reiner give an inner monologue about what that meant. It's too rare that anime allow me the opportunity to realise the implications of something for myself.;False;False;;;;1610314807;;False;{};giswm05;False;t3_kujurp;False;False;t1_gisa5o0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswm05/;1610357480;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerellos;;;[];;;;text;t2_qohtkfa;False;False;[];;"Me too. I choose AoT because the world has limits, and Isayama(manga writer) makes the story within it. - -Re:Zero is one of my kindest, but the world build up like dragon from the sky can spit out Puck level spirit users, becsuse the world is like that. It is easier for the writer to make.";False;False;;;;1610314812;;False;{};giswmec;False;t3_kujurp;False;True;t1_gisbeg8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswmec/;1610357487;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Perrenekton;;;[];;;;text;t2_q18f1;False;False;[];;I agree that he sympathized with Reiner but I'm waiting for more Eren action before declaring him revenge-free;False;False;;;;1610314813;;False;{};giswmen;False;t3_kujurp;False;True;t1_gisua0i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswmen/;1610357487;3;True;False;anime;t5_2qh22;;0;[]; -[];;;linksis33;;;[];;;;text;t2_ouigu;False;False;[];;So eren has both the attack titan and the founding titan. However eren can’t actually use the founding titan because he doesn’t have royal blood, so he requires touching someone who does to temporarily activate it. This is also super dangerous because eren isn’t bound to the will of the king which prevents anyone with royal blood from activating the rumbling, so marley is freaking out because eren can activate the rumbling.;False;False;;;;1610314813;;False;{};giswmf7;False;t3_kujurp;False;False;t1_gisvlmv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswmf7/;1610357487;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LethalCS;;;[];;;;text;t2_er74b;False;False;[];;They're the people that don't listen to dialogue and just wanna see SMASH SMASH POW PSHHHHH WAP WAP WAP PSH PSH PSH KABLOOM;False;False;;;;1610314814;;False;{};giswmii;False;t3_kujurp;False;False;t1_gisk8yv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswmii/;1610357488;42;True;False;anime;t5_2qh22;;0;[];True -[];;;PM_me_ur_crisis;;;[];;;;text;t2_fjrpazx;False;False;[];;Will we finally be free then?;False;False;;;;1610314817;;False;{};giswmp9;False;t3_kujurp;False;True;t1_gisg9ty;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswmp9/;1610357491;3;True;False;anime;t5_2qh22;;0;[]; -[];;;VegetoSF;;;[];;;;text;t2_14x88i;False;False;[];;Same here, this episode was literally breathtaking.;False;False;;;;1610314826;;False;{};giswne4;False;t3_kujurp;False;True;t1_gisd9iy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswne4/;1610357501;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TLKv3;;;[];;;;text;t2_5u9bc;False;False;[];;"I 100% without a fucking doubt believed Armin was gonna come Colossal-ing his way from below the stage but between Reiner/Eren. That way Eren could watch Reiner anguish hearing the screams of everyone dying and then *MAYBE* hearing his mother call out for him as she gets eaten. - -That would have absolutely fucking *BROKE* Reiner on the spot and Eren could've just stood up and said ""Now we're the same."" before walking out the door as the room collapsed around Reiner & Falco from Colossal's weight. - -I genuinely thought that's where this entire scene was going. I did *NOT* expect Eren to be the one initiating.";False;False;;;;1610314832;;False;{};giswntq;False;t3_kujurp;False;False;t1_gish4zq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswntq/;1610357508;21;True;False;anime;t5_2qh22;;0;[]; -[];;;GamerDylan;;;[];;;;text;t2_9luxkbc;False;False;[];;I think Eren will do a rumbling and that's why there will be a split because animating thousands of colossal titans sounds like a CHORE! Don't spoil me though please;False;False;;;;1610314838;;False;{};giswoa8;False;t3_kujurp;False;True;t1_gisw5h5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswoa8/;1610357514;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CrossFire43;;AP;[];;http://www.anime-planet.com/users/CrossFire43;dark;text;t2_9ndun;False;False;[];;Years back I remember seeing both AOT and GOT being the number 1 things on torrent sites. Watching the 2 Duke it out as #1 made me always wonder...which would come out on top in terms of the best overall show. GOT is by leaps and bounds more financially successful...but AOT might win the war on what show will start and finish best.;False;False;;;;1610314839;;False;{};giswodb;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswodb/;1610357516;15;True;False;anime;t5_2qh22;;0;[]; -[];;;M_onStar;;;[];;;;text;t2_2lnxk39d;False;False;[];;Reiner = Reek, but with pp, I guess.;False;False;;;;1610314843;;False;{};giswonf;False;t3_kujurp;False;False;t1_gisdpnw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswonf/;1610357520;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Jason3b93;;;[];;;;text;t2_4exum8;False;False;[];;I was watching old Attack on Titan scenes the other day and that one specifically made me cry. Like, a lot. What a beautiful speech, with some great soundtrack, voice acting and imagery to boot. I believe that was the first moment I actually cried watching AoT in a scene that I didn't cry reading the manga.;False;False;;;;1610314855;;False;{};giswpjq;False;t3_kujurp;False;False;t1_gisioq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswpjq/;1610357533;9;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"Oh well shitfire !!! - -This anime has too many characters - -Fixed";False;False;;;;1610314866;;False;{};giswqdx;False;t3_kujurp;False;True;t1_gisvzqg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswqdx/;1610357545;1;True;False;anime;t5_2qh22;;0;[]; -[];;;neemzter;;;[];;;;text;t2_422zq7wg;False;False;[];;Who would’ve known that the true Declaration of War would end up being between the OST enjoyers/haters. Isayama breaking the 4th wall;False;False;;;;1610314874;;False;{};giswr0w;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswr0w/;1610357555;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Voi69;;;[];;;;text;t2_lcnz6;False;False;[];;I have no intention on spoiling anything. Just satiating my curiosity.;False;False;;;;1610314875;;False;{};giswr1y;False;t3_kujurp;False;True;t1_giswoa8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswr1y/;1610357555;1;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;"I half regret not binging this and have to wait for next week. - -Damn it's so hype!";False;False;;;;1610314881;;False;{};giswrj2;False;t3_kujurp;False;True;t1_gisb5i0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswrj2/;1610357562;2;True;False;anime;t5_2qh22;;0;[]; -[];;;raknor88;;;[];;;;text;t2_67otf;False;False;[];;I love how Falco was able to connect the dots with only the vague information he was given.;False;False;;;;1610314891;;False;{};gisws8p;False;t3_kujurp;False;False;t1_giscnq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisws8p/;1610357573;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Cooljizz;;;[];;;;text;t2_ipjf2;False;False;[];;eren and the eldian’s motivations elude me. but it’s such a great route to go for the story;False;False;;;;1610314892;;False;{};giswsaf;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswsaf/;1610357574;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610314892;;False;{};giswsay;False;t3_kujurp;False;True;t1_giswaoe;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswsay/;1610357574;1;True;False;anime;t5_2qh22;;0;[]; -[];;;3dsgeek333;;MAL;[];;https://myanimelist.net/profile/SinnohGeek;dark;text;t2_kwh7t;False;False;[];;This whole thing is just so damn sad. Both Willy and Eren were almost on the right track. Heck, neither started out wanting to destroy the other side at all. If they decided to solve things diplomatically, they'd both probably manage to come together and find a solution to end the war between Marley and Paradis. Instead they both march towards war against a side they know nothing about, because, like with titans, they believed humanity cannot survive without a common enemy to persecute. Fighting racism with... more racism. Amazing how a series about slicing up naked giants like a fidget spinner became so deep.;False;False;;;;1610314894;;False;{};giswsho;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswsho/;1610357577;8;True;False;anime;t5_2qh22;;0;[]; -[];;;SoMuchHatred;;;[];;;;text;t2_o15bh;False;False;[];;Obviously we can't really say what the military situation or plan is yet. That said, I would absolutely not assume that Marley didn't expect anything at all, considering how on guard Magath was this episode and how unsurprised he was when things started to kick off.;False;False;;;;1610314902;;False;{};giswt36;False;t3_kujurp;False;True;t1_gist1hx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswt36/;1610357586;1;True;False;anime;t5_2qh22;;0;[]; -[];;;murfsters;;;[];;;;text;t2_60isjpko;False;False;[];;So just to clear up my adrenaline rushed, hyper active mine right now. Wren basically said “I’m just like you riener, I came here to do a job, realized the people here are just like those at home, but also have come to realize I still have to do my job”? He sympathizes with him and I guess the other people on the island, but then proceeds to transform and kill a bunch of them, so the message I got is that he knows that what he is doing means good people die but it’s the only way. Is this correct?;False;False;;;;1610314909;;False;{};giswtmz;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswtmz/;1610357594;29;True;False;anime;t5_2qh22;;0;[]; -[];;;thedicestoppedrollin;;;[];;;;text;t2_3uzc4kbl;False;False;[];;According to the greater international community he does;False;False;;;;1610314915;;False;{};giswu2u;False;t3_kujurp;False;False;t1_gisptwp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswu2u/;1610357599;27;True;False;anime;t5_2qh22;;0;[]; -[];;;DahDutcher;;;[];;;;text;t2_mcxlb;False;False;[];;Everything I wanted, one of my favourite episodes of the anime for sure!;False;False;;;;1610314915;;False;{};giswu35;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswu35/;1610357600;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Infamous-QB;;;[];;;;text;t2_8f3u139z;False;False;[];;"It's not ""toxicity"", nobody's in the wrong in this story. We're so split because we just support the side we care more about, while completely understanding the other.";False;False;;;;1610314917;;False;{};giswu9y;False;t3_kujurp;False;False;t1_gisitv8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswu9y/;1610357602;75;True;False;anime;t5_2qh22;;0;[]; -[];;;realstrikemasterice;;;[];;;;text;t2_6ekdd;False;False;[];;"This story is insane. The time-skip perspective switch and now the switch back to Eren now. -* OST from episode 1 wall break plays as Eren recalls those events. -* Eren's attack and his setup is crazy well-though-out. But it also has some problems? -* Either Willy is the War Hammer Titan and is going to brawl Eren now, or Willy just got martyred after giving amazing propaganda. -* What does Eren want of Reiner? ""Forgot what I said about killing you in the most painful way."" But then transforms right next to him in a basement... -* Eren shakes Reiner's hand and I'm like ""He forgives and wants Reiner to join him?!"" - Psyche! Transforms without warning. Armored Titan can survive but what about Falco? If Eren's intending to kill them is this really the best way? Why give Reiner time to react? And if he's not intending to kill them what is he thinking? What is this half-hearted attempt to kill? -* I need to know!";False;False;;;;1610314923;;False;{};giswuqe;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswuqe/;1610357610;16;True;False;anime;t5_2qh22;;0;[]; -[];;;M_onStar;;;[];;;;text;t2_2lnxk39d;False;False;[];;Pro gamer move.;False;False;;;;1610314931;;False;{};giswvbp;False;t3_kujurp;False;False;t1_gisdyxw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswvbp/;1610357618;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SirJasonCrage;;;[];;;;text;t2_bvi1y;False;False;[];;Imagine defending Brotherhood, lol. That's not even the best FMA.;False;False;;;;1610314937;;False;{};giswvqa;False;t3_kujurp;False;False;t1_gisuzne;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswvqa/;1610357624;5;True;False;anime;t5_2qh22;;0;[]; -[];;;pepperminthippos;;;[];;;;text;t2_9esi1c4;False;False;[];;i think they're colossal titans that cant transform back, so armin is still special;False;False;;;;1610314940;;False;{};giswvz6;False;t3_kujurp;False;False;t1_giswh9h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswvz6/;1610357627;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Kuro2810;;;[];;;;text;t2_zvwr3;False;False;[];;Even better of a moment than I thought;False;False;;;;1610314942;;False;{};gisww6m;False;t3_kujurp;False;False;t1_gissl4e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisww6m/;1610357630;16;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;"I thought it was Armin at first to. But you're right he's too tall and furthermore Pieck didn't see Armin in his unburnt state. - -Currently I'm debating between it being Mikasa or Hanji, both of whom Pieck saw and would more closely fit the physical appearance of Impostor Marleyan Soldier.";False;False;;;;1610314948;;False;{};giswwmu;False;t3_kujurp;False;True;t1_gisf53y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswwmu/;1610357637;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TurbidusQuaerenti;;;[];;;;text;t2_g9rwp;False;False;[];;I can understand why he feels he has no choice, but I certainly don't like it. Really makes me sad to see what Eren has become. Seems like I might be in the minority on that, though.;False;False;;;;1610314948;;False;{};giswwnu;False;t3_kujurp;False;False;t1_gisurtq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswwnu/;1610357637;21;True;False;anime;t5_2qh22;;0;[]; -[];;;jmangan11;;;[];;;;text;t2_16o39l;False;False;[];;I bet Pieck whispered something in there ear warning them because she looked like she thought something was up with the tall guy.;False;False;;;;1610314953;;False;{};giswwzv;False;t3_kujurp;False;False;t1_gisctsk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswwzv/;1610357642;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Voi69;;;[];;;;text;t2_lcnz6;False;False;[];;Its story is so engaging and character driven that it is a must to either do a rewatch or be a complete fanboy to not forget the characters.;False;False;;;;1610314953;;False;{};giswx0s;False;t3_kujurp;False;True;t1_giswqdx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswx0s/;1610357643;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ItchyPlatypus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ItchyPlatypus;light;text;t2_x6uza5h;False;False;[];;I understand him though, it was great but it wasn’t the second coming of Jesus for anime that the source readers have being saying nonstop for the past two weeks. Loads will be disappointed, people need to ignore source readers, they’re really bad for the more popular anime only fanbases.;False;False;;;;1610314957;;False;{};giswxd9;False;t3_kujurp;False;True;t1_gisvkht;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswxd9/;1610357648;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LordTachancka;;;[];;;;text;t2_5imdwka4;False;False;[];;Basement-kun, way better than table-kun;False;False;;;;1610314961;;False;{};giswxo9;False;t3_kujurp;False;False;t1_giskbpx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswxo9/;1610357652;9;True;False;anime;t5_2qh22;;0;[]; -[];;;hoochiex21;;;[];;;;text;t2_66zb9;False;False;[];;I laughed when I saw that disclaimer. It was like who ever decided to include that never watched the series before.;False;False;;;;1610314961;;False;{};giswxpp;False;t3_kujurp;False;False;t1_gisv209;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswxpp/;1610357653;37;True;False;anime;t5_2qh22;;0;[]; -[];;;TheMexicanAvatar;;;[];;;;text;t2_xmvpo;False;False;[];;"Lady Kiyomi really said GOOD LUCK WILLY and dipped out of there so fast. - -I'm really interested to see what role she plays";False;False;;;;1610314964;;False;{};giswxwm;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswxwm/;1610357656;124;True;False;anime;t5_2qh22;;0;[]; -[];;;taprik;;;[];;;;text;t2_1rdvdqg5;False;False;[];;I love how the final season is mirrowing the good and bad side. I litterally feel sorry for Rainer, Anni, and Berthord. Oh and Eren is like the Devil in it. I love it;False;False;;;;1610314970;;False;{};giswyc2;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswyc2/;1610357662;2;True;False;anime;t5_2qh22;;0;[]; -[];;;archersrevenge;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Billaowski?;light;text;t2_7ua8l;False;False;[];;The war started a bit sooner than Willy had anticipated.;False;False;;;;1610314973;;False;{};giswyk3;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswyk3/;1610357665;10;True;False;anime;t5_2qh22;;0;[]; -[];;;cantaneer;;;[];;;;text;t2_1ib8wxpm;False;False;[];;million colossal titans are not titan shifters. they are mindless titans inside the wall. and armin’s colossal titan can emit steam but other colossals can’t;False;False;;;;1610314974;;False;{};giswymf;False;t3_kujurp;False;True;t1_giswh9h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswymf/;1610357666;3;True;False;anime;t5_2qh22;;0;[]; -[];;;galileotheweirdo;;MAL;[];;myanimelist.net/animelist/galileotheweirdo;dark;text;t2_gwyf6;False;False;[];;Can we just give Eren props for getting his Titan control down so well that he can just cut his hand, keep the injury there and then transform *whenever* without having to do it immediately? Remember when our boy had trouble even doing it at the same time?;False;False;;;;1610314978;;False;{};giswyyp;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswyyp/;1610357671;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Jason3b93;;;[];;;;text;t2_4exum8;False;False;[];;The scene he said that was in season 2, when him and Ymir were kidnapped and having a conversation with Bert and Reiner. Ymir scolds Eren for acting like an angry child and sides with Bert and Reiner. Eren had a burning hot rage. Now, he is pure cold, and that's terrifying.;False;False;;;;1610314980;;False;{};giswz3u;False;t3_kujurp;False;False;t1_gisn5pf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giswz3u/;1610357673;49;True;False;anime;t5_2qh22;;0;[]; -[];;;thedicestoppedrollin;;;[];;;;text;t2_3uzc4kbl;False;False;[];;"Technically this could count as a strike at a weapons factory. Eldians aren't even internationally recognized as ""human"" anyways";False;False;;;;1610314995;;False;{};gisx07m;False;t3_kujurp;False;False;t1_gistkwa;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx07m/;1610357691;5;True;False;anime;t5_2qh22;;0;[]; -[];;;linksis33;;;[];;;;text;t2_ouigu;False;False;[];;The colossal is one of the 9, the wall titan were created by the king and are mindless titans.;False;False;;;;1610314995;;False;{};gisx08r;False;t3_kujurp;False;False;t1_giswh9h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx08r/;1610357691;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiinobu-;;;[];;;;text;t2_x5ks7;False;False;[];;"Eren can use the power of the founding titan when in contact with someone with royal blood, remember the last episode of s3p2 when Eren wanted to say something to the audience, that something was him explaining the power he only knows about, but refused to say so because it would mean that either Historia would have become a child factory for her kids to eat Eren and keep using the founding titan with the will of the king or making Historia eat Eren for her to be the founding titan. When the power is unlocked, the user can control titans and Eldian's wills. - -The attack titan is just an infantry type titan, agile, strong and tall enough to face normal titans and other same size shifters.";False;False;;;;1610315001;;False;{};gisx0nb;False;t3_kujurp;False;False;t1_gisvlmv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx0nb/;1610357697;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Darnise;;;[];;;;text;t2_hyfoo;False;False;[];;The colossal titans in the walls are mindless i think. Remember rod reiss titan? It was also huge but mindless. Berthold can control his titan.;False;False;;;;1610315006;;False;{};gisx11q;False;t3_kujurp;False;False;t1_giswh9h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx11q/;1610357703;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Ashish_Trip;;;[];;;;text;t2_2t89pxeq;False;False;[];;That's a common pitfall in many famous animes. The phrase 'a villian is someone whose story hasn't been told' comes to mind. Based on this episode, I can safely say that neither of the two are villians, just that Reiner became too short sighted and childish by destroying the wall, and in the process created his own nightmare (Eren).;False;False;;;;1610315008;;False;{};gisx15g;False;t3_kujurp;False;False;t1_gishl8w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx15g/;1610357705;33;True;False;anime;t5_2qh22;;0;[]; -[];;;alternate4unkwn;;;[];;;;text;t2_2ombesvf;False;False;[];;Yeah but this time bystanders,innocents, kids.;False;False;;;;1610315010;;False;{};gisx1a2;False;t3_kujurp;False;False;t1_giswkh0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx1a2/;1610357707;6;True;False;anime;t5_2qh22;;0;[]; -[];;;BeyondN;;;[];;;;text;t2_ubtjo;False;False;[];;Yes this is correct;False;False;;;;1610315028;;False;{};gisx2nm;False;t3_kujurp;False;True;t1_giswtmz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx2nm/;1610357726;1;True;False;anime;t5_2qh22;;0;[]; -[];;;alemfi;;;[];;;;text;t2_5r8mw;False;False;[];;It was the foot. The foot regeneratiom pushed it over the line.;False;False;;;;1610315031;;False;{};gisx2uj;False;t3_kujurp;False;False;t1_gisq5v8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx2uj/;1610357729;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PjDisko;;;[];;;;text;t2_xz13o;False;False;[];;Willy declared war first.;False;False;;;;1610315036;;False;{};gisx379;False;t3_kujurp;False;True;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx379/;1610357735;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;The Tyburs are essentially Marley's ''deepstate'' and they just declared war. That timing couldn't be better.;False;False;;;;1610315046;;False;{};gisx3yp;False;t3_kujurp;False;False;t1_gisdygj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx3yp/;1610357745;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Vivienne_Yui;;;[];;;;text;t2_68cqc3vi;False;False;[];;As expected of Ymir;False;False;;;;1610315047;;False;{};gisx424;False;t3_kujurp;False;False;t1_gisi3uy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx424/;1610357747;37;True;False;anime;t5_2qh22;;0;[]; -[];;;almosthighenough;;;[];;;;text;t2_1klqsos;False;False;[];;"My favorite moment of the episode was during Willy's speech when the dummers started drumming. Animated very well and highlighted the intensity of the scene. It gave me goosebumps. This is it. Their world is forever changed. - - -I also haven't seen anyone mention it, granted I haven't read all of the comments yet. Anyone have an idea who the now tall, blond, scrawny guy is that led the warriors into the trap? I haven't read the manga, or any manga honestly. But that seems to be the favorite, the man who inspired a generation to see the world. A sea as far as the eye can see. Fire water. Snow. An ocean of sand. I don't know who else it could be. Anyone else catch this?";False;False;;;;1610315055;;False;{};gisx4ky;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx4ky/;1610357755;19;True;False;anime;t5_2qh22;;0;[]; -[];;;mario61752;;;[];;;;text;t2_10d49q;False;False;[];;Reiner.exe could not terminate. Please close the application and try again.;False;False;;;;1610315055;;False;{};gisx4nh;False;t3_kujurp;False;False;t1_gisbl4f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx4nh/;1610357756;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Anjunabeast;;;[];;;;text;t2_9n4ff;False;False;[];;Both going undercover to infiltrate the “enemy”, learning to sympathize with the enemy, but continuing their mission to be heroes/save the world.;False;False;;;;1610315059;;False;{};gisx4y9;False;t3_kujurp;False;False;t1_gisrkmq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx4y9/;1610357761;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Android19samus;;;[];;;;text;t2_aqbu1;False;False;[];;lol get fucked Reiner;False;False;;;;1610315062;;False;{};gisx54z;False;t3_kujurp;False;False;t1_gischn4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx54z/;1610357764;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerellos;;;[];;;;text;t2_qohtkfa;False;False;[];;Dont forget Eren eyes when Tybur claimed moving forward. 10/10 for mappa. And some manga readers cry about the ost, this scence was the best, with this setup.;False;False;;;;1610315065;;False;{};gisx5cq;False;t3_kujurp;False;False;t1_gisa5o0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx5cq/;1610357767;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610315065;;False;{};gisx5d3;False;t3_kujurp;False;True;t1_giswwnu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx5d3/;1610357767;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Rambo_sonn;;;[];;;;text;t2_94q889g9;False;False;[];;Was that Armin or Connie that trapped Pieck and Porco?;False;False;;;;1610315066;;False;{};gisx5ei;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx5ei/;1610357767;5;True;False;anime;t5_2qh22;;0;[]; -[];;;TLKv3;;;[];;;;text;t2_5u9bc;False;False;[];;"It parallels the fictional story the Marleyans believed for decades. They believed a ""hero allied with an enemy force"" to beat the Eldians back. - -But now, its the Eldian hero allying with another enemy force to beat the Marleyans down. - -Its a great, subtle clue that I think we're going to see unfold in the aftermath of this attack. I'm excited to see just how far their alliance might go or if it was just for this one instance?";False;False;;;;1610315072;;False;{};gisx5uf;False;t3_kujurp;False;False;t1_gisiqhp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx5uf/;1610357774;20;True;False;anime;t5_2qh22;;0;[]; -[];;;MechaMat91;;;[];;;;text;t2_1vfr55z0;False;False;[];;"this episode in a nutshell: - -talk talk talk talk talk, tension tension tension, talk talk talk, apparent understanding, ""I declare war"", ""LOL no you don't"" **\*smash\***";False;False;;;;1610315088;;False;{};gisx731;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx731/;1610357793;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;"_Almost._ - -He waited for the declaration but he did kill civilians. So now instead of a terrorist attack it's a warcrime.";False;False;;;;1610315099;;False;{};gisx7x6;False;t3_kujurp;False;False;t1_gisgkax;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx7x6/;1610357806;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610315102;;False;{};gisx84t;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx84t/;1610357809;3;True;False;anime;t5_2qh22;;0;[]; -[];;;VegetoSF;;;[];;;;text;t2_14x88i;False;False;[];;I cannot remember I was ever so hyped about an Anime. I thought it could not get better than season 3 and now I am sitting here week after week and calling each episode the pinnacle of anime. Holy shit, this is going to be easily my favourite anime of all time.;False;False;;;;1610315108;;False;{};gisx8jt;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx8jt/;1610357814;20;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;Yeah. He sympathizes and forgives Reiner, but then Willy and the whole world literally declares war on Eren, leaving him no choice but to fight.;False;False;;;;1610315115;;False;{};gisx930;False;t3_kujurp;False;False;t1_giswtmz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx930/;1610357821;30;True;False;anime;t5_2qh22;;0;[]; -[];;;S0phon;;;[];;;;text;t2_3wmta549;False;False;[];;How would Willy know Eren was in Marley? And what would be the point of luring Eren out?;False;False;;;;1610315117;;False;{};gisx991;False;t3_kujurp;False;False;t1_gisb08f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx991/;1610357824;5;True;False;anime;t5_2qh22;;0;[]; -[];;;mike_2797;;;[];;;;text;t2_8qbcq38;False;False;[];;Can I have a F in the chat for Willy.;False;False;;;;1610315125;;False;{};gisx9tr;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx9tr/;1610357832;4;True;False;anime;t5_2qh22;;0;[]; -[];;;mattwrld25;;;[];;;;text;t2_7apbhygb;False;False;[];;The funny thing is is that the sound direction is from the same people as s1-3...;False;False;;;;1610315126;;False;{};gisx9wy;False;t3_kujurp;False;True;t1_gisji3a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisx9wy/;1610357834;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;"Who was eren throwing into his mouth? Was it the daughter of tybur who could be the war hammer? Doubt they would do it like that cause we see the War Hammer in the trailers but idk - -Edit: It was William Tybur I am just blind";False;False;;;;1610315130;;1610315657.0;{};gisxa84;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxa84/;1610357837;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PortoGuy18;;;[];;;;text;t2_2fidx1m;False;False;[];;Yes.;False;False;;;;1610315132;;False;{};gisxaby;False;t3_kujurp;False;True;t1_giswtmz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxaby/;1610357839;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;Spawn camping;False;False;;;;1610315132;;False;{};gisxae7;False;t3_kujurp;False;False;t1_gisqxi7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxae7/;1610357840;12;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;To a bot;False;False;;;;1610315142;;False;{};gisxb2d;False;t3_kujurp;False;False;t1_gisfu1r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxb2d/;1610357850;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Justice_Chip;;;[];;;;text;t2_oaxvq;False;False;[];;They had one job and that was to use Vogel Im Kafig at eren's transformation call me disappointed;False;True;;comment score below threshold;;1610315146;;False;{};gisxbet;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxbet/;1610357856;-14;True;False;anime;t5_2qh22;;0;[]; -[];;;Fimpish;;;[];;;;text;t2_dfe7k;False;False;[];;Toyota mascot;False;False;;;;1610315147;;False;{};gisxbh4;False;t3_kujurp;False;False;t1_gislw40;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxbh4/;1610357857;6;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;Bravo Mappa, the adaptation this episode was perfect.;False;False;;;;1610315150;;False;{};gisxbnv;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxbnv/;1610357860;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PizzaInSoup;;;[];;;;text;t2_5dks7kbe;False;False;[];;I fully expect there to be a few weeks where Re:Zero takes the top spot, but the majority of them will go to AoT.;False;False;;;;1610315159;;False;{};gisxcbx;False;t3_kujurp;False;False;t1_gislzp3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxcbx/;1610357869;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ashish_Trip;;;[];;;;text;t2_2t89pxeq;False;False;[];;bruh the whole buildup from the moment the curtain rose to the moment Eren rose to the moment where they talked about wall rose. 🤣😂lots of roses;False;False;;;;1610315163;;False;{};gisxcof;False;t3_kujurp;False;False;t1_giscpr1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxcof/;1610357874;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Aerohed;;;[];;;;text;t2_xjmyo;False;False;[];;Eren’s just *really* dedicated to the bit.;False;False;;;;1610315174;;False;{};gisxdii;False;t3_kujurp;False;False;t1_gisafs9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxdii/;1610357886;22;True;False;anime;t5_2qh22;;0;[]; -[];;;TheHungryHybrid;;;[];;;;text;t2_nmbqu;False;False;[];;Wakanim delays the eng subs of snk, while German and French subs gets it 2 hours after Japan. But crunchyroll Sweden gets it 21:45;False;False;;;;1610315177;;False;{};gisxdo6;False;t3_kujurp;False;True;t1_gisfrq7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxdo6/;1610357888;2;True;False;anime;t5_2qh22;;0;[]; -[];;;raknor88;;;[];;;;text;t2_67otf;False;False;[];;The real friends we met were the titans we met along the way?;False;False;;;;1610315182;;False;{};gisxe3j;False;t3_kujurp;False;True;t1_gisebjb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxe3j/;1610357896;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610315190;;False;{};gisxepk;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxepk/;1610357906;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KaitoHope;;;[];;;;text;t2_16ztlf;False;False;[];;Willy is so hypocritical. He's saying that it's shameful to him that his family acted like people of their own race are subhuman and basically pushed a Nazi ideology against them and then he just declares war on Paradis (to again act against people of his own race) without even trying to make peace with them. I don't think that a declaration of war is an intelligent thing to do in this situation (especially considering they do not have current accurate information about Paradis (it's been 4 years since Reiner got back, so all info is outdated), it's an awful idea to attack someone whose exact situation you do not know).;False;False;;;;1610315217;;False;{};gisxgol;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxgol/;1610357936;14;True;False;anime;t5_2qh22;;0;[]; -[];;;xjustwaitx;;;[];;;;text;t2_3u0fy9uv;False;False;[];;And with this episode, the holocaust parallels abruptly ended. I'm pretty sure Hitler wasn't eaten a second after announcing the final solution.;False;False;;;;1610315222;;False;{};gisxh11;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxh11/;1610357941;18;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;Wait, so then my other comment is wrong. There really was no warcrime commited here. All perfectly legal.;False;False;;;;1610315223;;False;{};gisxh4w;False;t3_kujurp;False;False;t1_gisdmla;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxh4w/;1610357943;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Huhwtfbleh;;;[];;;;text;t2_gnf5em;False;False;[];;"I'm sure the concept exists but never fully given thought. Anything goes as long as you can ultimately win. - -As we see from Gabi and how quick Magath was willing to use her ruse to win the war.";False;False;;;;1610315223;;False;{};gisxh5i;False;t3_kujurp;False;True;t1_gisuhat;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxh5i/;1610357943;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610315225;;False;{};gisxhb3;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxhb3/;1610357945;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Philarete;;MAL a-amq;[];;https://myanimelist.net/profile/WizardMcKillin;dark;text;t2_9pgqv;False;False;[];;I'm assuming that's why it was staged there.;False;False;;;;1610315228;;False;{};gisxhjn;False;t3_kujurp;False;False;t1_gisp388;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxhjn/;1610357949;5;True;False;anime;t5_2qh22;;0;[]; -[];;;murfsters;;;[];;;;text;t2_60isjpko;False;False;[];;That’s so good story writing imo. I love that he sympathizes and forgives him, but also realized they are inherently enemies.;False;False;;;;1610315240;;False;{};gisxidx;False;t3_kujurp;False;False;t1_gisx930;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxidx/;1610357962;15;True;False;anime;t5_2qh22;;0;[]; -[];;;tiour;;;[];;;;text;t2_5ktwaudn;False;False;[];;It was willy himself;False;False;;;;1610315250;;False;{};gisxj2z;False;t3_kujurp;False;True;t1_gisxa84;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxj2z/;1610357972;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ksradrik;;;[];;;;text;t2_1wtl783j;False;False;[];;LEVIS FOOT IS THE KEY, YOU MUST NEVER FORGET!;False;False;;;;1610315260;;False;{};gisxjub;False;t3_kujurp;False;False;t1_gisehpt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxjub/;1610357983;14;True;False;anime;t5_2qh22;;0;[]; -[];;;exozaln;;;[];;;;text;t2_x135v;False;False;[];;There's been 2D titans in the last two episodes\*;False;False;;;;1610315262;;False;{};gisxjys;False;t3_kujurp;False;True;t1_gisuds1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxjys/;1610357985;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610315273;;False;{};gisxksi;False;t3_kujurp;False;True;t1_giswisj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxksi/;1610357997;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sittingbull15;;;[];;;;text;t2_jnaof;False;False;[];;Lol;False;False;;;;1610315280;;False;{};gisxlb5;False;t3_kujurp;False;True;t1_gisvspd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxlb5/;1610358005;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jerryz0522;;;[];;;;text;t2_3j5095ln;False;False;[];;Willy;False;False;;;;1610315285;;False;{};gisxlnl;False;t3_kujurp;False;False;t1_gisxa84;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxlnl/;1610358011;6;True;False;anime;t5_2qh22;;0;[]; -[];;;0greman;;;[];;;;text;t2_12k0knel;False;False;[];;The wall titans are just big regular titans that look like the colossal titan, its always been 9;False;False;;;;1610315289;;False;{};gisxlxp;False;t3_kujurp;False;False;t1_giswh9h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxlxp/;1610358015;7;True;False;anime;t5_2qh22;;0;[]; -[];;;DebonairTeddy;;;[];;;;text;t2_yinry;False;False;[];;I think the point of this series is that there are no heroes in war. It's all tragedy that we're forced into.;False;False;;;;1610315290;;False;{};gisxm0d;False;t3_kujurp;False;False;t1_gisgowd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxm0d/;1610358016;68;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;Falco is just fucking dead right? If pieck and the other dude would be crushed unless reiner clutched I don't see how falco survived that;False;False;;;;1610315293;;False;{};gisxm99;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxm99/;1610358020;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Leeemon;;;[];;;;text;t2_7en9g;False;False;[];;"I was trembling and cried a bit. It's magnificent to see a chapter this important getting the treatment it always deserved. - -The tension was spot on throught, amazing dialogues all around.";False;False;;;;1610315293;;False;{};gisxm9z;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxm9z/;1610358020;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610315297;;False;{};gisxmia;False;t3_kujurp;False;True;t1_gisx5d3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxmia/;1610358023;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610315297;;False;{};gisxmig;False;t3_kujurp;False;True;t1_gisg17q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxmig/;1610358023;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Count5or6;;;[];;;;text;t2_49le5kiw;False;False;[];;Oh, I didn't piece that together. I was a little lost about what had happened to his hand. That makes perfect sense.;False;False;;;;1610315297;;False;{};gisxmio;False;t3_kujurp;False;False;t1_gisrm9j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxmio/;1610358023;114;True;False;anime;t5_2qh22;;0;[]; -[];;;XenialShot;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/xenialshot;light;text;t2_c92tb;False;False;[];;fuck shit was lit;False;False;;;;1610315305;;False;{};gisxn6j;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxn6j/;1610358033;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwaze17;;;[];;;;text;t2_1b3ty54n;False;False;[];;When u help a hobo deliver some letters LOL;False;False;;;;1610315307;;False;{};gisxna1;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxna1/;1610358035;3;True;False;anime;t5_2qh22;;0;[]; -[];;;flood55;;;[];;;;text;t2_xwtg4;False;False;[];;"This was Reiner's second mistake. Giving the rookie protagonist the will to go on not realizing he will be the ""bad guy"" later on.";False;False;;;;1610315308;;False;{};gisxncj;False;t3_kujurp;False;False;t1_gislw40;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxncj/;1610358036;284;True;False;anime;t5_2qh22;;0;[]; -[];;;hpanandikar;;;[];;;;text;t2_d5qxl;False;False;[];;I've watched this episode now twice in a row. It is one of the best TV episodes I have ever seen.;False;False;;;;1610315320;;False;{};gisxoa3;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxoa3/;1610358048;7;True;False;anime;t5_2qh22;;0;[]; -[];;;cyclops274;;;[];;;;text;t2_1n0717z;False;False;[];;When Tybur mentioned Colossal titan you can hear the music played when Colossal Titan first appeared in the first episode. How does Tybur know about Eren?;False;False;;;;1610315320;;False;{};gisxoa9;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxoa9/;1610358048;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Guaymaster;;;[];;;;text;t2_7s5u9;False;False;[];;Well, being a titan means you'll die a few years later, so it's quite possible the current family head isn't the one holding it. I'd think the passing of the family head's baton would be quite eventful, so it would be kinda weird if they did it regularly.;False;False;;;;1610315323;;False;{};gisxofu;False;t3_kujurp;False;True;t1_giso5ws;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxofu/;1610358051;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;"I think you underestimate how many people pirate it. I already see almost 5k downloads on the fansub from one website. Also, it was under 5k, not over 6k. The karma has been spiking since the official release. - -Also, I brought up the source material to point out that this happens for any anime with a big source reader base, not to discuss the quality of the episode. But this would never happen: - -> The animation studio could've came out and completely changed the story for this episode, and people still wouldn't have cared, because they didn't watch it, and they only cared about making it look like it lived up to the hype, even if it didn't - -and I'm pretty sure most of those people did actually watch it, but okay. There are tons of source readers complaining about anime adaptations all the time, from things like CGI to cutting one panel. - -> They're even mass-downvoting other big anime episode discussions to make their ""achievements"" look even bigger, without watching those episodes as well. - -If you're referring to the latest Re:Zero thread, it's at 97% upvoted, which is a little lower than the normal 98% but even if that is only AOT fans who didn't watch the Re:Zero episode, which you have zero evidence for, that's not a mass downvote. That's a small number of obnoxious fans.";False;False;;;;1610315325;;False;{};gisxom5;False;t3_kujurp;False;True;t1_gisw8st;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxom5/;1610358053;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Housenkai;;;[];;;;text;t2_z6wi7;False;False;[];;Remember that the tank squad are Marleyans. Simping knows no race.;False;False;;;;1610315332;;False;{};gisxp4i;False;t3_kujurp;False;False;t1_giseulo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxp4i/;1610358061;40;True;False;anime;t5_2qh22;;0;[]; -[];;;ZiegelPy;;;[];;;;text;t2_1v57yaq;False;False;[];;exactly;False;False;;;;1610315335;;False;{};gisxpec;False;t3_kujurp;False;False;t1_gisufgp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxpec/;1610358065;13;True;False;anime;t5_2qh22;;0;[]; -[];;;secret_tsukasa;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/Endrance88;dark;text;t2_l06vg;False;False;[];;Non manga reader here: HOLY CLOSURE THANK YOU I'VE WAITED SO LONG;False;False;;;;1610315342;;False;{};gisxpx9;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxpx9/;1610358073;16;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610315345;;False;{};gisxq4v;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxq4v/;1610358076;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vivienne_Yui;;;[];;;;text;t2_68cqc3vi;False;False;[];;I second this.;False;False;;;;1610315348;;False;{};gisxqcz;False;t3_kujurp;False;False;t1_gisrmrj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxqcz/;1610358079;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;That was during the flashback EP with Annie/Bertholdt/Reiner right?;False;False;;;;1610315351;;False;{};gisxqma;False;t3_kujurp;False;False;t1_gismgwo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxqma/;1610358082;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Timeforanotheracct51;;;[];;;;text;t2_2uokn3nb;False;False;[];;Attack on titan has always made 23m feel like 30 seconds somehow;False;False;;;;1610315352;;False;{};gisxqoi;False;t3_kujurp;False;False;t1_gisfspq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxqoi/;1610358083;45;False;False;anime;t5_2qh22;;0;[]; -[];;;IC2Flier;;;[];;;;text;t2_wnxu2v6;False;False;[];;Imagine a trained Dina with either the Beast, Female or Attack Titan. Actually no, I don't want to merely imagine it. I gotta pay someone to draw it.;False;False;;;;1610315353;;False;{};gisxqrd;False;t3_kujurp;False;False;t1_gismf1p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxqrd/;1610358084;44;True;False;anime;t5_2qh22;;0;[]; -[];;;exozaln;;;[];;;;text;t2_x135v;False;False;[];;He's a troll, look at his comments, he just begs for downvotes, not worth your time, move on;False;False;;;;1610315360;;False;{};gisxr98;False;t3_kujurp;False;True;t1_gisucic;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxr98/;1610358092;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cyclops274;;;[];;;;text;t2_1n0717z;False;False;[];;Armin in this episode.;False;False;;;;1610315363;;False;{};gisxris;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxris/;1610358096;5;True;False;anime;t5_2qh22;;0;[]; -[];;;dizlike1997;;;[];;;;text;t2_6qgidrqo;False;False;[];;"It's just war. - -jus ad bellum";False;False;;;;1610315366;;False;{};gisxrqo;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxrqo/;1610358099;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Voi69;;;[];;;;text;t2_lcnz6;False;False;[];;I am a source reader and I don't get why you are downvoted. I love this episode but you can have your own opinion. I hope you don't take it to heart.;False;False;;;;1610315372;;False;{};gisxs70;False;t3_kujurp;False;False;t1_giswisj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxs70/;1610358106;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinsekai21;;;[];;;;text;t2_10od0m;False;False;[];;Good points.;False;False;;;;1610315373;;False;{};gisxsbb;False;t3_kujurp;False;True;t1_giswmen;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxsbb/;1610358107;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlackFancy;;;[];;;;text;t2_12psbe;False;False;[];;I couldn't even sit still while watching this! The tension was way too real - like a volcano on the verge of eruption. What a rush that was haha.;False;False;;;;1610315374;;False;{};gisxsf3;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxsf3/;1610358109;4;True;False;anime;t5_2qh22;;0;[]; -[];;;contonmivar;;;[];;;;text;t2_108f1d;False;False;[];;Reiner's report when he got back from Paradis;False;False;;;;1610315376;;False;{};gisxsiw;False;t3_kujurp;False;False;t1_gisxoa9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxsiw/;1610358111;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Kingyexiu;;;[];;;;text;t2_7vq2r05t;False;False;[];;Fact;False;False;;;;1610315382;;False;{};gisxszu;False;t3_kujurp;False;True;t1_gistslu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxszu/;1610358117;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NorwegianLion;;;[];;;;text;t2_2m2idjye;False;False;[];; Spend three racks on a new Nade;False;False;;;;1610315383;;False;{};gisxt2h;False;t3_kujurp;False;False;t1_gisr7fp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxt2h/;1610358118;15;True;False;anime;t5_2qh22;;0;[]; -[];;;LeHoustonJames;;;[];;;;text;t2_1jcfo1oz;False;False;[];;The older and more experience you get the wiser. I appreciate the character growth a lot;False;False;;;;1610315383;;False;{};gisxt3b;False;t3_kujurp;False;True;t1_gisao83;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxt3b/;1610358119;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Belckan;;;[];;;;text;t2_7an0u;False;False;[];;More like elementary.;False;False;;;;1610315390;;False;{};gisxto9;False;t3_kujurp;False;False;t1_giscafj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxto9/;1610358127;12;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;What are you, the US during the Vietnam War?;False;False;;;;1610315398;;False;{};gisxu8b;False;t3_kujurp;False;False;t1_gisk0ps;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxu8b/;1610358136;9;True;False;anime;t5_2qh22;;0;[]; -[];;;CallMeGhaul;;;[];;;;text;t2_46gnd29y;False;False;[];;Holy SHIT Eren’s Titan looks absolutely incredible;False;False;;;;1610315401;;False;{};gisxuht;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxuht/;1610358139;4;True;False;anime;t5_2qh22;;0;[]; -[];;;lurker_registered;;;[];;;;text;t2_7owjw;False;False;[];;And why aren't they wearing armbands?;False;False;;;;1610315416;;False;{};gisxvmo;False;t3_kujurp;False;False;t1_giswwzv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxvmo/;1610358157;5;True;False;anime;t5_2qh22;;0;[]; -[];;;gratifiedlonging;;;[];;;;text;t2_93iwn0o7;False;False;[];;Which episode was this from again?;False;False;;;;1610315418;;1610350771.0;{};gisxvr6;False;t3_kujurp;False;False;t1_gisoc26;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxvr6/;1610358159;3;True;False;anime;t5_2qh22;;0;[]; -[];;;salty-caramel;;;[];;;;text;t2_l55lby8;False;False;[];;Was the tybur family aware that fritz isn’t the real king or were they lied to?;False;False;;;;1610315420;;False;{};gisxvvn;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxvvn/;1610358161;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;I love how he waited until the SECOND war was officially declared and then turned.;False;False;;;;1610315421;;False;{};gisxvyi;False;t3_kujurp;False;False;t1_gish4zq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxvyi/;1610358162;28;True;False;anime;t5_2qh22;;0;[]; -[];;;Vivienne_Yui;;;[];;;;text;t2_68cqc3vi;False;False;[];;"This is why your mom told you not to talk to strangers, Falco. smh this kid never learns. - -Episode rating : 11/10 - -EREN GIGACHAD EREN";False;False;;;;1610315439;;False;{};gisxxbg;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxxbg/;1610358182;14;True;False;anime;t5_2qh22;;0;[]; -[];;;MrPootisBrights;;;[];;;;text;t2_e5ro6;False;False;[];;There are 9 titan powers, therefore up to 9 shifters. The founding titan being the most powerful Titan can make colossals, hence the walls.;False;False;;;;1610315441;;False;{};gisxxgy;False;t3_kujurp;False;True;t1_giswh9h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxxgy/;1610358184;3;True;False;anime;t5_2qh22;;0;[]; -[];;;yungkumquat;;;[];;;;text;t2_1r4avfbs;False;False;[];;THIS WAS THE SHORTEST EPISODE EVER;False;False;;;;1610315442;;False;{};gisxxj3;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxxj3/;1610358186;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ValkyrieCain9;;;[];;;;text;t2_1c39d6;False;False;[];;I love how this declaration of war was made as a stage production because it perfectly symbolises the whole mess between Marley and Paradis. So many things have just been for show, the “king” in Paradis just turned out to be a fake, the fact that the Marelian government is actually controlled by and Eldian family. So many lies have circulated to build the basis of this war.;False;False;;;;1610315447;;False;{};gisxxyr;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxxyr/;1610358191;5;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;I mean the point of what your supposed to get from this episode is it's technically not their fault to an extent. Would you not hate an entire group if they slaughtered the world and ran to an island and at any moment they can destroy the planet?;False;False;;;;1610315448;;False;{};gisxy01;False;t3_kujurp;False;False;t1_gisdb9b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxy01/;1610358192;5;True;False;anime;t5_2qh22;;0;[]; -[];;;squeakypop28;;;[];;;;text;t2_92aiocsn;False;False;[];;"Can someone edit the ""are you sure about that"" meme onto titan Erens face?";False;False;;;;1610315448;;False;{};gisxy1c;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxy1c/;1610358192;4;True;False;anime;t5_2qh22;;0;[]; -[];;;schnazzums;;;[];;;;text;t2_9gr96;False;False;[];;Wait is Crunchyroll not official? Or am I missing something?;False;False;;;;1610315450;;False;{};gisxy6g;False;t3_kujurp;False;False;t1_giscqsk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxy6g/;1610358194;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610315450;;False;{};gisxy7f;False;t3_kujurp;False;True;t1_gisxmia;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxy7f/;1610358195;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610315455;;False;{};gisxyji;False;t3_kujurp;False;True;t1_giscz88;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxyji/;1610358199;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;Only thing with the hand, he can't turn while his leg is gone correct? So he healed it while they were talking so he could turn;False;False;;;;1610315455;;False;{};gisxylb;False;t3_kujurp;False;False;t1_gisrm9j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxylb/;1610358201;50;True;False;anime;t5_2qh22;;0;[]; -[];;;Ksradrik;;;[];;;;text;t2_1wtl783j;False;False;[];;I personally disagree, if youre a child packed with propaganda you get to do pretty much whatever and Ill still feel sorry for you *and* your victims.;False;False;;;;1610315462;;False;{};gisxz3z;False;t3_kujurp;False;False;t1_gislx79;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxz3z/;1610358209;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KearLoL;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/vollizie;light;text;t2_46k87az;False;False;[];;I had no issues.;False;False;;;;1610315466;;False;{};gisxzfv;False;t3_kujurp;False;True;t1_gisbgc0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxzfv/;1610358214;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ajax1108;;;[];;;;text;t2_9f2k1c9e;False;False;[];;So does Eren have both the attack titan and the founding titan? He just can't access all of the abilities of the founding titan (that we know of at the moment) because he doesn't have royal blood?;False;False;;;;1610315470;;False;{};gisxzq4;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisxzq4/;1610358218;7;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;What's crazy is that this episode was all about talking with very minimum action scene.;False;False;;;;1610315476;;False;{};gisy070;False;t3_kujurp;False;False;t1_gisbhem;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy070/;1610358226;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cyclops274;;;[];;;;text;t2_1n0717z;False;False;[];;They were human traffickers who deserved death.;False;False;;;;1610315478;;False;{};gisy0br;False;t3_kujurp;False;True;t1_giswkh0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy0br/;1610358228;2;True;False;anime;t5_2qh22;;0;[]; -[];;;shader301202;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/shader/;light;text;t2_qqbox;False;False;[];;Blitzkrieg;False;False;;;;1610315484;;False;{};gisy0vx;False;t3_kujurp;False;True;t1_gisax64;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy0vx/;1610358236;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Truegamer5;;;[];;;;text;t2_jmn2f;False;False;[];;I wish I could've had that tension but the fucking thumbnail in Hulu is the shot of Eren's eye glowing to transform. So fucking frustrating;False;False;;;;1610315491;;False;{};gisy1fk;False;t3_kujurp;False;True;t1_gisc1bn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy1fk/;1610358244;1;True;False;anime;t5_2qh22;;0;[]; -[];;;perrude;;;[];;;;text;t2_3dpw71a6;False;True;[];;Nope;False;False;;;;1610315501;;False;{};gisy25b;False;t3_kujurp;False;False;t1_gisvw4i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy25b/;1610358255;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FallenKnightGX;;;[];;;;text;t2_4q3la;False;True;[];;"""I meant the same as you five minutes from now.""";False;False;;;;1610315501;;False;{};gisy26e;False;t3_kujurp;False;False;t1_gisax5b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy26e/;1610358255;8;True;False;anime;t5_2qh22;;0;[]; -[];;;sharmarahulkohli;;;[];;;;text;t2_12gbee;False;False;[];;Reiner told Marley ofcourse;False;False;;;;1610315501;;False;{};gisy26t;False;t3_kujurp;False;False;t1_gisxoa9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy26t/;1610358255;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Rha_psody;;;[];;;;text;t2_98b54u1;False;False;[];;And notice they don't have armbands, meaning they're Marleyans. Even Marleyans can't resist Eldia's greatest ass.;False;False;;;;1610315502;;False;{};gisy2a6;False;t3_kujurp;False;False;t1_giswccu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy2a6/;1610358256;69;True;False;anime;t5_2qh22;;0;[]; -[];;;The_nickums;;MAL;[];;http://myanimelist.net/profile/Snakpak;dark;text;t2_9gxz1;False;False;[];;"Watching this episode gave me a bit more insight [manga](/s ""into Eren's conversation with Armin later. The timing of Eren saying 'we really are the same' after Reiner begs for his life to end. Eren probably feels the same way on that level too, that's why he gave them the choice to let him be or kill him."")";False;False;;;;1610315522;;False;{};gisy3ui;False;t3_kujurp;False;False;t1_gisbqod;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy3ui/;1610358280;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Ashish_Trip;;;[];;;;text;t2_2t89pxeq;False;False;[];;The only difference here being that Reiner broke the wall to see how Fritz responds, while eren responded to the declaration of war. The cause and effect are inverse in both cases, one may argue that if Reiner had gone back, eren wouldn't be here killing people.;False;False;;;;1610315527;;False;{};gisy484;False;t3_kujurp;False;True;t1_giscr3k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy484/;1610358287;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinsekai21;;;[];;;;text;t2_10od0m;False;False;[];;"Yup. That actually also highlights this episodes. - -Ymir, by eating Marcel, was able to see and understand Reiner and Bert's situation. Thus, she scolded Eren for being naive and hot headed. - -Also, with Marcel's memory, she understood that R, B would be heavily punished if they returned empty handed. Thus, that pushed her to give herself in so that Reiner and Bert could escape death";False;False;;;;1610315527;;False;{};gisy48k;False;t3_kujurp;False;False;t1_giswz3u;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy48k/;1610358287;35;True;False;anime;t5_2qh22;;0;[]; -[];;;okokokok1111;;;[];;;;text;t2_5ca3lfb5;False;False;[];;"1. Yes -2. Yes";False;False;;;;1610315528;;False;{};gisy4b7;False;t3_kujurp;False;False;t1_gisxzq4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy4b7/;1610358287;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ModieOfTheEast;;;[];;;;text;t2_g7tqk9b;False;False;[];;"In the end, we will see. I thought, the ""on guard"" part was because they held this whole thing where all the Eldians live. Considering there have been Eldians who revolted against the system before, with all of these important figures there on one place, you have to be on guard. He didn't seem to monitor his titan shifters that much if they can get kidnapped while it is said the order came from him.";False;False;;;;1610315537;;False;{};gisy4yk;False;t3_kujurp;False;False;t1_giswt36;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy4yk/;1610358297;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;That was the most 3 minutes feeling 24 minutes of my life;False;False;;;;1610315545;;False;{};gisy5l5;False;t3_kujurp;False;True;t1_gisxxj3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy5l5/;1610358306;3;True;False;anime;t5_2qh22;;0;[]; -[];;;raknor88;;;[];;;;text;t2_67otf;False;False;[];;That was amazing. Though I'll be sad that so many innocent Eldians will die with Eren's attack. Or even already did when he transformed. There was an apartment building full of them above Eren when he transformed.;False;False;;;;1610315548;;False;{};gisy5tw;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy5tw/;1610358311;5;True;False;anime;t5_2qh22;;0;[]; -[];;;mf_ghost;;;[];;;;text;t2_dhuwg;False;False;[];;">he has the high ground - -Nope, he didn't have the high ground he was underground";False;False;;;;1610315551;;False;{};gisy625;False;t3_kujurp;False;True;t1_gisc1bn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy625/;1610358314;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PotentialSuspect453;;;[];;;;text;t2_872fz37h;False;False;[];;RAWRRRRRRR;False;False;;;;1610315553;;False;{};gisy67f;False;t3_kujurp;False;False;t1_giscr8m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy67f/;1610358316;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Mogsike;;;[];;;;text;t2_ae7tq;False;False;[];;im confused on the significance of the cut hand;False;False;;;;1610315559;;False;{};gisy6p8;False;t3_kujurp;False;False;t1_gisa5o0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy6p8/;1610358323;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Ampulla_of_Vater;;;[];;;;text;t2_gzeao;False;False;[];;He can't access the founding titan's abilities by himself, but it seems he is able to access some of the abilities if he is in contact with a titan of royal blood. That's how he was able to direct the titans in season 2 after punching Dina Fritz.;False;False;;;;1610315567;;False;{};gisy78j;False;t3_kujurp;False;False;t1_gisxzq4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy78j/;1610358332;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;Those walls GOTTA be coming down or imma riot. The foreshadowing of them being powerless, wouldn't be suprised if they are already on their way over, I wonder if the inner walls would trample the wall cities tho...;False;False;;;;1610315570;;False;{};gisy7gq;False;t3_kujurp;False;False;t1_gisgrpn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy7gq/;1610358335;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Verbaliskaiser91;;;[];;;;text;t2_qe6dbsn;False;False;[];;"Eren: Where’s reiner’s mom? - -Mikasa: she’s in the crowd you just murdered - -Eren: KARMA";False;False;;;;1610315571;;False;{};gisy7lu;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy7lu/;1610358337;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;" 2\. Yes. Grisha and Eren are both holders of multiple titans. - 3. It is assumed that holding multiple titans doesn't effect the holder's lifespan. Their lifespan will be according to the first titan. Grisha for example was at the end of his life when he robbed the Founder. As for abilities it's unknown what holding multiple titans would do when it comes to physical abilities. The basic gist will be made clear in the coming episodes but even we manga readers don't know what would happen if the Armor is combined with, say, the Colossal.";False;False;;;;1610315572;;False;{};gisy7o2;False;t3_kujurp;False;False;t1_gisvobu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy7o2/;1610358338;31;True;False;anime;t5_2qh22;;0;[]; -[];;;Ksradrik;;;[];;;;text;t2_1wtl783j;False;False;[];;If you had to choose between the propaganda drilled into him and his mental instability, which one of those would make him more qualified as a judge?;False;False;;;;1610315581;;False;{};gisy8az;False;t3_kujurp;False;False;t1_gisrdho;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy8az/;1610358347;15;True;False;anime;t5_2qh22;;0;[]; -[];;;cyclops274;;;[];;;;text;t2_1n0717z;False;False;[];;Mappa Reiner doesn't look like Brock Lesnar.;False;False;;;;1610315586;;False;{};gisy8p7;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy8p7/;1610358353;3;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;"Eren was never really a shounen Character even if he spoke like 1 in season 1. His actions, his consequences, and his mindset are very realistic. - -The power of friendship led to his entire squad being turned into meat crayons in 20 seconds by the Female Titan.";False;False;;;;1610315588;;False;{};gisy8vo;False;t3_kujurp;False;False;t1_giss1ul;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy8vo/;1610358357;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ItchyPlatypus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ItchyPlatypus;light;text;t2_x6uza5h;False;False;[];;I don’t care about the downvotes tbh it happened on S3 P2 when I called out some of the source readers. Because that’s all I did in this post. The rest of this post is positive but some of the AoT fan base is 10/10 or it’s downvote time. Reiner and Eren scenes were excellent and we needed more of it which is the downside to this episode especially when you don’t get moments like this often in AoT.;False;False;;;;1610315589;;1610315895.0;{};gisy8yz;False;t3_kujurp;False;True;t1_gisxs70;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy8yz/;1610358358;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;That's still homicide though. Even if they deserve death. That's how real life works, you can't just go kn a killing spree killing rapists or killers and expect not to be put on prison.;False;False;;;;1610315593;;False;{};gisy990;False;t3_kujurp;False;True;t1_gisy0br;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy990/;1610358361;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Raknel;;;[];;;;text;t2_xwf5o;False;False;[];;Yeah, GoT became rather hard to rewatch after S8. Meanwhile you can go back and rewatch AoT after each season with the new info you have and it's like watching a new series.;False;False;;;;1610315593;;False;{};gisy9a0;False;t3_kujurp;False;True;t1_giswodb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy9a0/;1610358362;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Runningman0301;;MAL;[];;https://myanimelist.net/animelist/Runningman0301?status=7;dark;text;t2_hh6nr;False;False;[];;the whole crowd representing the world cheering on Tybur only further convinced eren that there truly is no hope of peace for his people;False;False;;;;1610315595;;False;{};gisy9ez;False;t3_kujurp;False;False;t1_gisvxzw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy9ez/;1610358364;17;True;False;anime;t5_2qh22;;0;[]; -[];;;TheBestInBusiness;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/paradi_GM?status=7&order=4&ord";light;text;t2_jde3v;False;False;[];;"So, in conclusion, War Crimes Galore! - -God I love the final season";False;False;;;;1610315597;;False;{};gisy9jy;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy9jy/;1610358366;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610315600;;1610318850.0;{};gisy9r6;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisy9r6/;1610358369;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;"Lol basically 4 episodes of buildup hugh - -But its worth it";False;False;;;;1610315611;;False;{};gisyalt;False;t3_kujurp;False;True;t1_gisxpx9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyalt/;1610358383;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;My watch literally gave me a high heart rate warning what the fuck is this level of hype I’m feeling;False;False;;;;1610315614;;False;{};gisyasi;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyasi/;1610358386;14;True;False;anime;t5_2qh22;;0;[]; -[];;;beyondthegong;;;[];;;;text;t2_kno77;False;False;[];;OH MY GOD IM SO HYPED!! THANK GOD MAPPA IS SUCH AN AMAZING STUDIO!! Best fucking anime ever the amount of S+ detail, effort, lore, characters, and music makes this such a masterpiece!;False;False;;;;1610315624;;False;{};gisybk0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisybk0/;1610358396;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Cluelesswolfkin;;;[];;;;text;t2_16967h;False;False;[];;Omg. Could they be Ackermans?!;False;False;;;;1610315625;;False;{};gisybnx;False;t3_kujurp;False;True;t1_gisvwpr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisybnx/;1610358398;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;As of writing, this thread is 3.5 hours old and it already has 8.5K karma. I was predicting 17-18K but it seems I may have underestimated AoT once again.;False;False;;;;1610315630;;False;{};gisyc0t;False;t3_kujurp;False;False;t1_gish04c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyc0t/;1610358403;21;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;"> Zeke's titans, for whatever reason, were capable of that - -Its prob because he has royal blood";False;False;;;;1610315631;;False;{};gisyc2f;False;t3_kujurp;False;True;t1_gismkvp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyc2f/;1610358404;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sittingbull15;;;[];;;;text;t2_jnaof;False;False;[];;She is the best girl for me. A new character, crazy ass insane woman but man, sexy as fuck. Her devotion turn me on.;False;False;;;;1610315633;;False;{};gisyc84;False;t3_kujurp;False;True;t1_gisn9df;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyc84/;1610358406;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Danne660;;;[];;;;text;t2_17ed9b;False;False;[];;I would say not hesitating when deciding whether to kill innocent people is a bad thing, and not hesitating when you have decided to do so is a good thing.;False;False;;;;1610315639;;False;{};gisycom;False;t3_kujurp;False;False;t1_gisvfkm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisycom/;1610358413;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Belckan;;;[];;;;text;t2_7an0u;False;False;[];;[There's a solution here you're not seeing](https://www.youtube.com/watch?v=qYbG0-FtMrE);False;False;;;;1610315642;;False;{};gisycy8;False;t3_kujurp;False;False;t1_gisf892;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisycy8/;1610358417;9;True;False;anime;t5_2qh22;;0;[]; -[];;;LethalCS;;;[];;;;text;t2_er74b;False;False;[];;"> We see Falco process dawning dread then anguished betrayal as he slowly realizes this fellow soldier he developed a friendship with is not only no friend of Reiner's, but a foe of Marley - -Not just a foe either, but literally the final boss of Marley (given how he has what they want, and is the sole reason Paradis is now a threat again)";False;False;;;;1610315643;;False;{};gisyczn;False;t3_kujurp;False;False;t1_gisrns1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyczn/;1610358417;10;True;False;anime;t5_2qh22;;0;[];True -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;lmao;False;False;;;;1610315649;;False;{};gisydfz;False;t3_kujurp;False;True;t1_gissfgb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisydfz/;1610358425;1;True;False;anime;t5_2qh22;;0;[]; -[];;;doggomlems;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nebbeh;light;text;t2_1ycdzuxu;False;False;[];;The simping was so strong that they were able to get isekai'd by willpower;False;False;;;;1610315653;;False;{};gisydq8;False;t3_kujurp;False;False;t1_giswccu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisydq8/;1610358429;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;He was a bit of both, idk what to expect anymore;False;False;;;;1610315653;;False;{};gisydsn;False;t3_kujurp;False;True;t1_gisulbp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisydsn/;1610358430;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GlassesFreekJr;;;[];;;;text;t2_51mnzs;False;False;[];;"King Fritz had fundamentally good intentions, but went about achieving them in an incredibly horrifying way. Turning his subjects into caged animals, livestock that do not know why they are being slaughtered. He failed to take into account that people are not responsible for the sins of their ancestors. - -Might be a weird take, but Fritz kind of slots into the same category as confederate general Robert E. Lee: Someone who fundamentally believes they are doing the right thing - but only in the context of their own morality. Despite being an honorable and righteous leader, someone who could be rightly called a hero in his own right, Robert E. Lee was also a deeply racist slave-owner who *legitimately* believed that such servitude was for the uplifting and ""betterment of their race."" - -By trying to do what they believed was right, without considering the ultimate consequences of their respective worldviews, they damned (or might have damned in Lee's case) millions to cruel horror and depersonalization on a massive scale. They thought they knew what was best, but in the end, they didn't. - -It's unbelievably tragic that, if both Fritz and Lee had been brought up in circumstances that were less cruel, like nowadays, they might have been as righteous and heroic in the eyes of God or whichever other objective morality you subscribe to as they yearned to be.";False;False;;;;1610315656;;False;{};gisydyw;False;t3_kujurp;False;False;t1_gismdpb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisydyw/;1610358433;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;The amazingness of AOT honestly stresses me when anime so widely outside of those of us who like it has such a bad reputation. It deserves to be completely mainstream.;False;False;;;;1610315663;;False;{};gisyejb;False;t3_kujurp;False;True;t1_gisc1bn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyejb/;1610358441;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;Lol;False;False;;;;1610315668;;False;{};gisyewp;False;t3_kujurp;False;True;t1_gisxh11;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyewp/;1610358446;3;True;False;anime;t5_2qh22;;0;[]; -[];;;starf05;;;[];;;;text;t2_4hvvltp4;False;False;[];;Fritz is the original surname of the royal family. When they settled in Paradis island they changed their surname to Reiss. Grisha's first wife, also a member of the royal family, was called Dina Fritz.;False;False;;;;1610315675;;False;{};gisyfe6;False;t3_kujurp;False;False;t1_gisxvvn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyfe6/;1610358454;8;True;False;anime;t5_2qh22;;0;[]; -[];;;SingularCheese;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/lonelyCheese;light;text;t2_rgv21;False;False;[];;"> killed the worlds mosts important figure - -Tried to kill. We don't know who actually is the war hammer titan yet, and the next episode preview purposefully didn't reveal it neither. He could be the titan and thus continue campaigning for the war after this attack.";False;False;;;;1610315678;;False;{};gisyfo5;False;t3_kujurp;False;True;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyfo5/;1610358458;1;True;False;anime;t5_2qh22;;0;[]; -[];;;haitamsusanoo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/hsusanoo/;light;text;t2_1x2dcesp;False;False;[];;"Tybur: ""I don't want to die"" - -Tybur: ""I declare War"" - -Tybur 1s later: \*chopped in three pieces\*";False;False;;;;1610315698;;False;{};gisyh4b;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyh4b/;1610358479;3;True;False;anime;t5_2qh22;;0;[]; -[];;;pepperminthippos;;;[];;;;text;t2_9esi1c4;False;False;[];;yo am i trippin or is this thread headed towards 24k according to past karma trajectories (https://cdn.discordapp.com/attachments/476391825590976522/731524072004911113/karma_track.png)?;False;False;;;;1610315700;;False;{};gisyhbm;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyhbm/;1610358482;3;True;False;anime;t5_2qh22;;0;[]; -[];;;saileee;;;[];;;;text;t2_td92c;False;False;[];;(Reiner is still the bad guy (just sympathetic));False;False;;;;1610315704;;False;{};gisyhkk;False;t3_kujurp;False;False;t1_gisvimi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyhkk/;1610358486;9;True;False;anime;t5_2qh22;;0;[]; -[];;;cyclops274;;;[];;;;text;t2_1n0717z;False;False;[];; In a trial he will be found not guilty for saving a girl from being trafficked.;False;False;;;;1610315710;;False;{};gisyi1l;False;t3_kujurp;False;True;t1_gisy990;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyi1l/;1610358493;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610315719;;1610318520.0;{};gisyiq3;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyiq3/;1610358503;3;True;False;anime;t5_2qh22;;0;[]; -[];;;H4wx;;;[];;;;text;t2_ehuq5;False;False;[];;The Orientals and the Ackermans are not the same people.;False;False;;;;1610315719;;1610316249.0;{};gisyirv;False;t3_kujurp;False;False;t1_gisybnx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyirv/;1610358504;56;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;Ah, I saw the dress and assumed it was the daughter, I rewatched and his body is MANGLED BAD;False;False;;;;1610315722;;False;{};gisyiyx;False;t3_kujurp;False;True;t1_gisxj2z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyiyx/;1610358507;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mozzafella;;;[];;;;text;t2_d15ljuc;False;False;[];;Is he? He's literally sat a dozen yards from a man declaring war on his home, threating to kill his people.;False;False;;;;1610315726;;False;{};gisyjab;False;t3_kujurp;False;False;t1_gistdj3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyjab/;1610358512;33;True;False;anime;t5_2qh22;;0;[]; -[];;;etayle;;;[];;;;text;t2_11y7iz;False;False;[];;I wait 4 thies few years, so great moment!;False;False;;;;1610315744;;False;{};gisykp1;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisykp1/;1610358534;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cluelesswolfkin;;;[];;;;text;t2_16967h;False;False;[];;Well shit there goes my theory lol thanks for the clarification !;False;False;;;;1610315752;;False;{};gisyl9v;False;t3_kujurp;False;False;t1_gisyirv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyl9v/;1610358543;23;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;Ngl. That's really petty.;False;False;;;;1610315756;;False;{};gisyljw;False;t3_kujurp;False;False;t1_giskeiy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyljw/;1610358547;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Clemenx00;;;[];;;;text;t2_i99bz;False;False;[];;"Not really a terrorist attack. Dude waited until war was declared. - -He isn't even the agressor!";False;False;;;;1610315757;;False;{};gisyllx;False;t3_kujurp;False;True;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyllx/;1610358548;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UzEE;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/UzEEInc;light;text;t2_45t2z;False;False;[];;I wonder how much of an impact the threads going up early would have at the end. Not that I've done any analysis on this, but given the scale of AoT, it might even come down to several hundred votes.;False;False;;;;1610315758;;False;{};gisylng;False;t3_kujurp;False;True;t1_gisk0vh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisylng/;1610358548;3;True;False;anime;t5_2qh22;;0;[]; -[];;;venusverenice;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/virtualvere;light;text;t2_1jq6bd1e;False;False;[];;rest in peace willy, it's a shame he never got to see the rest of season 4;False;False;;;;1610315760;;False;{};gisylvm;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisylvm/;1610358552;5;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;pls rewatch the whole season and every peace of dialogue in this episode;False;False;;;;1610315762;;False;{};gisylzz;False;t3_kujurp;False;True;t1_gismghr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisylzz/;1610358554;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610315763;;False;{};gisym2n;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisym2n/;1610358555;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;okokokok1111;;;[];;;;text;t2_5ca3lfb5;False;False;[];;I feel like every OST that uses words would not have been usable in that case (like Vogel im Kafig or YouSeeBigGirl), I think that the leaked OST would have worked very well, but overall i still think that this episode is nigh perfect. The OST during the entirety of the episode was absolutely awesome and built so much tension;False;False;;;;1610315770;;False;{};gisymk3;False;t3_kujurp;False;True;t1_gisxbet;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisymk3/;1610358562;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610315771;;False;{};gisymoa;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisymoa/;1610358563;1;True;False;anime;t5_2qh22;;0;[]; -[];;;uncen5ored;;;[];;;;text;t2_800mwmv;False;False;[];;"Eren & Reiner’s VA, with the backdrop of amazing music throughout the whole episode, was PHENOMENAL! Peak character development. If you’re a fan of writing, there’s no way you can’t enjoy the development, dialogue, and parallels in this episode";False;False;;;;1610315772;;False;{};gisympo;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisympo/;1610358564;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;If it takes more than 1 or 2 head-to-head matches I'll be perfectly satisfied. Being able to put up any sort of resistance is stupidly impressive, and I doubt any other show could do nearly as well.;False;False;;;;1610315773;;False;{};gisymri;False;t3_kujurp;False;False;t1_gisxcbx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisymri/;1610358565;5;True;False;anime;t5_2qh22;;0;[]; -[];;;randomkidlol;;;[];;;;text;t2_bg4iz;False;False;[];;[this](https://i.imgur.com/JhLjsAJ.png) but falco version;False;False;;;;1610315779;;False;{};gisyn7m;False;t3_kujurp;False;False;t1_gise6z3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyn7m/;1610358571;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Kyseraphym;;;[];;;;text;t2_n5pkb;False;False;[];;The Ackerman family aren't Asian. Mikasa's mother was Asian and her father was an Ackerman - she's both. Mikasa and her mother are explicitly called the last Asians in the Walls when they were attacked when she was a child. Levi and Kenny have no Asian blood.;False;False;;;;1610315788;;False;{};gisynuw;False;t3_kujurp;False;False;t1_gisybnx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisynuw/;1610358581;83;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;Am guilty I couldn't contain the hype and watched the raw the moment it was out. Still shed some hype tears when the sub came around.;False;False;;;;1610315790;;False;{};gisyo1g;False;t3_kujurp;False;True;t1_gisdokm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyo1g/;1610358584;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cyclops274;;;[];;;;text;t2_1n0717z;False;False;[];;You can Colossal Titan theme when Willy mention the name. That is the best song in the show.;False;False;;;;1610315791;;False;{};gisyo36;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyo36/;1610358584;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ashish_Trip;;;[];;;;text;t2_2t89pxeq;False;False;[];;🤣😂🤣;False;False;;;;1610315800;;False;{};gisyoqf;False;t3_kujurp;False;True;t1_gistld5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyoqf/;1610358594;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;As expected of Pieck;False;False;;;;1610315803;;False;{};gisyoyo;False;t3_kujurp;False;True;t1_gisbbwg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyoyo/;1610358597;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Inner-North2121;;;[];;;;text;t2_9rcztst5;False;False;[];;" But Pieck was a little bit of a spy, remember? She was the one whi spotted the Erwin squad first and informed Zeke. She must know every guy that was there. - - Im an animeonly, so please don't spoil. But yeah Im thinking its him.";False;False;;;;1610315806;;False;{};gisyp93;False;t3_kujurp;False;False;t1_giswwmu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyp93/;1610358601;6;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;they are in around ww1 level of technology not too many tanks and planes yet;False;False;;;;1610315807;;False;{};gisypa3;False;t3_kujurp;False;False;t1_gisv00z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisypa3/;1610358601;4;True;False;anime;t5_2qh22;;0;[]; -[];;;brownguy6391;;;[];;;;text;t2_3et2u982;False;False;[];;I mean I loved it but yeah I guess it's subjective. I tend to not really set expectations either so I tend to be more satisfied most of the time;False;False;;;;1610315816;;False;{};gisyq01;False;t3_kujurp;False;True;t1_giswxd9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyq01/;1610358612;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;No it's fairly common but not all anime have it.;False;False;;;;1610315820;;False;{};gisyq9f;False;t3_kujurp;False;False;t1_giskxst;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyq9f/;1610358616;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Android19samus;;;[];;;;text;t2_aqbu1;False;False;[];;"In the end, I realize, -you were just like me, tried to make history - -but who's to judge, the right from wrong, -when the cards are down I think we'll both agree - -that violence breeds violence - -but in the end it has to be this way";False;False;;;;1610315826;;False;{};gisyqri;False;t3_kujurp;False;True;t1_gisadji;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyqri/;1610358624;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fayezabdd;;;[];;;;text;t2_1vo7dygx;False;False;[];;I have watched the episode pirated 3 hours before its premiere :p relax some fansubbers are just crazy fucking fast translators.. People really like to hate on aot don't they.;False;False;;;;1610315827;;False;{};gisyqsa;False;t3_kujurp;False;True;t1_gistyad;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyqsa/;1610358624;1;True;False;anime;t5_2qh22;;0;[]; -[];;;darthgera;;;[];;;;text;t2_2zl52zv6;False;False;[];;Personally Hero was high point because I had no clue whatsoever how they are going to get out and their sacrifices were amazing. That said the basement reveal did change history didnt it;False;False;;;;1610315828;;False;{};gisyqxb;False;t3_kujurp;False;True;t1_gisv1yk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyqxb/;1610358626;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ksradrik;;;[];;;;text;t2_1wtl783j;False;False;[];;Although they *did* just declare war on him, you dont really get to nuke a country multiple times, *then* declare war on them and *then* complain about them fighting back.;False;False;;;;1610315830;;False;{};gisyr15;False;t3_kujurp;False;False;t1_gistdj3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyr15/;1610358628;39;True;False;anime;t5_2qh22;;0;[]; -[];;;N4mFlashback;;;[];;;;text;t2_35i32vyw;False;False;[];;I think the Tybers and Eren are planning someting, this feels like a huge jebait;False;False;;;;1610315835;;False;{};gisyrgd;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyrgd/;1610358634;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gridemann;;;[];;;;text;t2_dhsy2;False;False;[];;"And so we pass the point of no return. -They really nailed the tension building this episode. -I was hoping so much they'd use the YOUSEEBIGGIRL soundtrack but alas it was not meant to be. - -Small tidbit in they Manga willi mentions in his speech that the King named the 3 Walls Maria, Rose, Sina [Manga Spoilers](/s ""after the 3 daughters of the founder Imir"") but that info isnt really Plot relevant and will most likely come up again at a later point in the season";False;False;;;;1610315840;;False;{};gisyrug;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyrug/;1610358639;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Degrasssi;;;[];;;;text;t2_7j6rjan5;False;False;[];;"Marley: Breached the walls of Paradis and caused thousands of innocent people to die - -Eren: “I’m gonna do what’s called a pro gamer move”";False;False;;;;1610315843;;False;{};gisys30;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisys30/;1610358643;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Corviasbir;;;[];;;;text;t2_96ehmwh6;False;False;[];;Theory: Eren was rejected from art school which is the true reason why he started going on war with everyone. And also the reason he became obsessed with the survey corps a.k.a eldia’s military force.;False;False;;;;1610315846;;False;{};gisysa5;False;t3_kujurp;False;False;t1_giscafj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisysa5/;1610358646;27;True;False;anime;t5_2qh22;;0;[]; -[];;;exeia;;;[];;;;text;t2_mc7v3;False;False;[];;"you know how people say ""I wish I was alive in the 80s!"" I am fucking happy to be around this time to witness such a masterpiece. Every episode I watch from AoT I think ""THIS IS INSANE, HOW CAN IT GET BETTER"" and I'm proven wrong every single time. god bless this fucking beautiful anime.";False;False;;;;1610315849;;False;{};gisyshi;False;t3_kujurp;False;True;t1_gisbtc0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyshi/;1610358649;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Joshthe1337;;;[];;;;text;t2_erutk;False;False;[];;The tension in this episode was insane.;False;False;;;;1610315850;;False;{};gisysiz;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisysiz/;1610358650;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Raknel;;;[];;;;text;t2_xwf5o;False;False;[];;Arguably 3 seasons of buildup;False;False;;;;1610315852;;False;{};gisysol;False;t3_kujurp;False;True;t1_gisyalt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisysol/;1610358652;3;True;False;anime;t5_2qh22;;0;[]; -[];;;raknor88;;;[];;;;text;t2_67otf;False;False;[];;"> It’s not for revenge, it’s to save the world. - -Thing is, they both are/were trying to save their respective worlds. Eren's world was destroyed 9 years ago so that Reiner's world could stay intact. Now Eren is destroying Reiner's world to try and keep The Walls intact.";False;False;;;;1610315857;;False;{};gisyt3a;False;t3_kujurp;False;False;t1_gisvv62;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyt3a/;1610358658;42;True;False;anime;t5_2qh22;;0;[]; -[];;;seninn;;MAL;[];;http://myanimelist.net/animelist/Senninn0;dark;text;t2_fw8p2;False;False;[];;Wuh;False;False;;;;1610315871;;False;{};gisyu53;False;t3_kujurp;False;False;t1_giso285;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyu53/;1610358673;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Cluelesswolfkin;;;[];;;;text;t2_16967h;False;False;[];;Oooo more clarification! Thank you! I completely forgot that detail! Thank you for reminding me! Makes me wonder more then on her part in the supposed aide of the eldians;False;False;;;;1610315877;;False;{};gisyul6;False;t3_kujurp;False;False;t1_gisynuw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyul6/;1610358679;14;True;False;anime;t5_2qh22;;0;[]; -[];;;MilkToastKing;;;[];;;;text;t2_13tvvu;False;False;[];;Yes, but that was after Marley already launched the attack, when I asked the question I was referring to deciding to launch in the first place;False;False;;;;1610315879;;False;{};gisyupc;False;t3_kujurp;False;False;t1_gisufl8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyupc/;1610358681;3;True;False;anime;t5_2qh22;;0;[]; -[];;;vodkamasta;;MAL;[];;http://myanimelist.net/animelist/Vahlokdotiid;dark;text;t2_l7ucz;False;False;[];;Not really a terrorist attack, they just declared war. Then war it is.;False;False;;;;1610315881;;False;{};gisyuvo;False;t3_kujurp;False;False;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyuvo/;1610358683;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheWorthlessGuy;;;[];;;;text;t2_6hhgjoi;False;False;[];;The whole episode was godly except until the end. I did not like the ost when Eren transformed. AoT is infamous for its amazing and hype soundtrack, yet they used something more serious. People may like it but it killed the vibe for me. I just hope in the future we will see more of the original soundtracks, because if this keeps going, the ost aspect will be weak. This is my humble opinion, please, do not kill me.;False;False;;;;1610315884;;False;{};gisyv3k;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyv3k/;1610358687;7;True;False;anime;t5_2qh22;;0;[]; -[];;;macedonianmoper;;;[];;;;text;t2_71boinia;False;False;[];;" It's not a good thing as in ""this defines a good person"" but it's good in the context of ""This is refreshing as a character""";False;False;;;;1610315884;;False;{};gisyv4e;False;t3_kujurp;False;False;t1_gisvfkm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyv4e/;1610358687;148;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;I wonder how MAL will react. Could it finally dethrone FMAB? Even despite the army against it? I've kinda got hopes now.;False;False;;;;1610315888;;False;{};gisyveb;False;t3_kujurp;False;False;t1_gisbfkv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyveb/;1610358692;11;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610315889;;False;{};gisyvgx;False;t3_kujurp;False;True;t1_gisxy7f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyvgx/;1610358693;2;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;3 chapters left.;False;False;;;;1610315890;;False;{};gisyvj5;False;t3_kujurp;False;False;t1_gist8l6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyvj5/;1610358693;9;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;"> Marley repeatedly attacked Paradis over the past decade and is actively planning to attack - -Did you not watch the episode? From the knowledge of Marley the only reason that Paradis has not destroyed the planet is due to pure luck.";False;False;;;;1610315892;;False;{};gisyvpl;False;t3_kujurp;False;True;t1_gisazrh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyvpl/;1610358696;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;mobbedbyllamas;;;[];;;;text;t2_1yj5tqi6;False;False;[];;They are not the same. Grisha inherited the attack titan from Eren Kruger/the Owl the day he arrived on Paradis. He then gained the founding Titan after consuming Frieda Reiss, the previous holder, the same day the walls were breached by the colossal titan. Eren then gained both when he ate Grisha. There doesn't appear to be a way to separate the two titans now they are both held by Eren. Yes, one holder can possess multiple titans. As far as we're aware, the lifespans do not stack, the effect on the physical appearance of the titan doesn't appear to change (not with the addition of the founding Titan at least) and all abilities available to both can be manifested by Eren.;False;False;;;;1610315892;;False;{};gisyvpn;False;t3_kujurp;False;False;t1_gisvobu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyvpn/;1610358696;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Lordrice;;;[];;;;text;t2_8yby8;False;False;[];;"That ""soldier"" who led Pieck and Galliard into the pitfall has got to be Armin. Pieck said that she feels like she has seen him before and it was probably when she was saving Zeke and Reiner at the Shiganshina district back when the scouts were sent to retake Wall Maria. - -Also it looks like [Pieck has a little crush on Armin](https://imgur.com/gJNU1oC)";False;False;;;;1610315898;;False;{};gisyw75;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyw75/;1610358703;3;True;False;anime;t5_2qh22;;0;[]; -[];;;pepperminthippos;;;[];;;;text;t2_9esi1c4;False;False;[];;cus pieck-chan too cute;False;False;;;;1610315902;;False;{};gisywfq;False;t3_kujurp;False;False;t1_gisym2n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisywfq/;1610358706;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sunmiche;;;[];;;;text;t2_41idt98k;False;False;[];;I've enjoyed all of the past episodes this season so far, but after watching today's episode, I can't wait for the next few weeks! The next fight is going to be insane!!!;False;False;;;;1610315909;;False;{};gisywzf;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisywzf/;1610358714;6;True;False;anime;t5_2qh22;;0;[]; -[];;;camthegodoflol;;;[];;;;text;t2_g4fs0;False;False;[];;Seems to me like Tybur is trying to unite the world by making the enemies Paradis Island so the countries can all come out of it with closer relationships. I could be completely wrong this is just my reading.;False;False;;;;1610315911;;False;{};gisyx42;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyx42/;1610358716;14;True;False;anime;t5_2qh22;;0;[]; -[];;;yungsolipsist;;;[];;;;text;t2_3rmpx0y1;False;False;[];;holy fucking shit holy fucking shit;False;False;;;;1610315917;;False;{};gisyxji;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyxji/;1610358723;11;True;False;anime;t5_2qh22;;0;[]; -[];;;TheCatBarbarian;;;[];;;;text;t2_lhf1eey;False;False;[];;">nobody's in the wrong in this story - -oh boy, I'd argue over that but this is not the place to do so, no spoilers !";False;True;;comment score below threshold;;1610315931;;False;{};gisyyo2;False;t3_kujurp;False;True;t1_giswu9y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyyo2/;1610358739;-14;True;False;anime;t5_2qh22;;0;[]; -[];;;NathyWanty;;;[];;;;text;t2_6ocnt;False;False;[];;So if the Manga hasn’t finished yet, are we getting a Final Season part 2? Or are they shortening the Anime ending?;False;False;;;;1610315937;;False;{};gisyz6i;False;t3_kujurp;False;False;t1_gista05;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyz6i/;1610358747;13;True;False;anime;t5_2qh22;;0;[]; -[];;;hideyuke;;;[];;;;text;t2_i19uh;False;False;[];;"Quickest first blood ever. - -Also, Poor Falco used and discarded.";False;False;;;;1610315946;;False;{};gisyztd;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyztd/;1610358756;6;True;False;anime;t5_2qh22;;0;[]; -[];;;raining-in-konoha;;;[];;;;text;t2_2f7xqstx;False;False;[];;I was giggling like a schoolgirl the entire time;False;False;;;;1610315947;;False;{};gisyzwj;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisyzwj/;1610358757;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TurbidusQuaerenti;;;[];;;;text;t2_g9rwp;False;False;[];;That makes sense.;False;False;;;;1610315949;;False;{};gisz01a;False;t3_kujurp;False;False;t1_gisyv4e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz01a/;1610358759;21;True;False;anime;t5_2qh22;;0;[]; -[];;;jez124;;;[];;;;text;t2_492iwgft;False;False;[];;"its pretty important part of the manga/anime. Eren wanting to be free, and the sort of birthright humans have. ""we are special, each of us by just being born"". - -Eren was awakened from losing control ins1 after titanising and basically stated that since he was born in this world he wont be caged by the walls - -Love the repetition of that phrase";False;False;;;;1610315958;;1610317888.0;{};gisz0sr;False;t3_kujurp;False;False;t1_gisioq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz0sr/;1610358772;11;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;"It absolutely was. He was in civilian clothing and specifically chose an area below an apartment building to hold a bunch of civilians hostage. - -Also, there was no official declaration of war yet.";False;False;;;;1610315959;;False;{};gisz0u8;False;t3_kujurp;False;True;t1_gistkve;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz0u8/;1610358772;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;wayl8r;;;[];;;;text;t2_o5p9d;False;False;[];;honest, the pacing has been so good so far with amazing build ups. However, i worry about the pacing to the end with only 11 episodes left, and over 30 chapters. Unless episode length increases, I’m a bit worried about what’ll be cut.;False;False;;;;1610315960;;False;{};gisz0xf;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz0xf/;1610358774;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Voi69;;;[];;;;text;t2_lcnz6;False;False;[];;"Expect both. - -When there is non repetitive movement : CGI - -Stills, or repetitive movement : Maybe no CGI";False;False;;;;1610315963;;False;{};gisz15v;False;t3_kujurp;False;True;t1_gisydsn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz15v/;1610358777;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610315964;;False;{};gisz19u;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz19u/;1610358779;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GirtabulluBlues;;;[];;;;text;t2_3c6d45zo;False;False;[];;I mean, is this really shounen?;False;False;;;;1610315968;;False;{};gisz1iv;False;t3_kujurp;False;True;t1_gisf53y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz1iv/;1610358782;3;True;False;anime;t5_2qh22;;0;[]; -[];;;shablam96;;;[];;;;text;t2_g4g38p1;False;False;[];;really? I don't see how they could wrap it up in just 3 more chapters tbh;False;False;;;;1610315968;;False;{};gisz1ks;False;t3_kujurp;False;False;t1_gisyvj5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz1ks/;1610358784;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Rha_psody;;;[];;;;text;t2_98b54u1;False;False;[];;"Well frankly that reaction is entirely the fault of the audience. Isayama has and will continue to make it clear that almost everyone in this world is shitty and has done shitty things. Eren stated that he fully empathizes with both sides, but he still has to keep moving forward. - -Remember in S3P2 where Sergeant Gross talked to Grisha on the wall? Through Gross, Isayama basically called the audience out for enjoying violence. Isayama 100% knows how split the community will become regarding controversial events.";False;False;;;;1610315973;;False;{};gisz1wm;False;t3_kujurp;False;True;t1_gisw9fo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz1wm/;1610358789;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SoMuchHatred;;;[];;;;text;t2_o15bh;False;False;[];;"There were meant to be soldiers escorting the Warriors, though it's reported to Magath that they went missing. And when he learns this, he only says ""so it begins."" Whatever he's expecting, he was clearly expecting *something*, and he seemed quite certain that it was coming.";False;False;;;;1610315977;;False;{};gisz27f;False;t3_kujurp;False;True;t1_gisy4yk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz27f/;1610358794;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lukas04;;;[];;;;text;t2_16mozp;False;False;[];;"i think its less so that the basement reveal was bad, its really good. -it just has the consequence that the show lost most of its mystery with the reveal and the start of season 4. -Its still extremly good, but i can understand if you are less hooked than before.";False;False;;;;1610315984;;False;{};gisz2qx;False;t3_kujurp;False;False;t1_gisg7bk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz2qx/;1610358803;10;True;False;anime;t5_2qh22;;0;[]; -[];;;yungkumquat;;;[];;;;text;t2_1r4avfbs;False;False;[];;"mr. kruger: hey come here kid - -falco: no - -*roll credits*";False;False;;;;1610315990;;False;{};gisz38d;False;t3_kujurp;False;False;t1_gisfgx0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz38d/;1610358810;29;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;"What about 2000 years of Eldian Genocide? - -From the knowledge of Marley the Eldians never stopped fighting. They just fled to the island and could destroy the world at any second.";False;False;;;;1610315996;;False;{};gisz3or;False;t3_kujurp;False;False;t1_gisgt8n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz3or/;1610358816;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Raknel;;;[];;;;text;t2_xwf5o;False;False;[];;"They need this as a distraction tho. The world is catching up to Marley in technology and they aren't exactly well liked as seen earlier this season. - -They are basically pulling a ""yeah we are kinda bad, but you know who's *even worse*? Paradis, we should focus on them"" move here.";False;False;;;;1610316000;;False;{};gisz3xt;False;t3_kujurp;False;False;t1_gisxgol;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz3xt/;1610358819;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Ksradrik;;;[];;;;text;t2_1wtl783j;False;False;[];;"Is it really terrorism if its a legitimate war though? - -Its not even like they started it, in fact they've been attacked *before* being declared war on.";False;False;;;;1610316000;;False;{};gisz3ym;False;t3_kujurp;False;True;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz3ym/;1610358820;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DontKnowHowToEnglish;;;[];;;;text;t2_v960p;False;False;[];;It was Eren talking about how they were the same, Reiner was just shaking and imploring to be killed.;False;False;;;;1610316000;;False;{};gisz3yz;False;t3_kujurp;False;True;t1_giscr8m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz3yz/;1610358820;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CCSlim;;;[];;;;text;t2_zcmqx;False;False;[];;"Reiner was scared when he heard Falco delivered letters to Erebs comrades. - -Thunder spears and spinning top captain incoming";False;False;;;;1610316002;;False;{};gisz44t;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz44t/;1610358822;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;Different va;False;False;;;;1610316011;;False;{};gisz4t1;False;t3_kujurp;False;False;t1_gisyw75;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz4t1/;1610358832;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;thedicestoppedrollin;;;[];;;;text;t2_3uzc4kbl;False;False;[];;Ever since we saw her I knew she would be important. The Asian Clan was loyal to the King within the walls (at some point) and I bet that connection still exists. Also, the World War parallels would suggest an alliance with Japan;False;False;;;;1610316015;;False;{};gisz55m;False;t3_kujurp;False;False;t1_gisiqhp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz55m/;1610358837;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Voi69;;;[];;;;text;t2_lcnz6;False;False;[];;Going to end before the end of the mange for sure.;False;False;;;;1610316020;;False;{};gisz5jn;False;t3_kujurp;False;True;t1_gisz0xf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz5jn/;1610358843;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nanoman92;;;[];;;;text;t2_j2h04;False;False;[];;"Now say hello to the Attack on Pearl Harbor parallels. - -They even started this season on December 7.";False;False;;;;1610316022;;False;{};gisz5nz;False;t3_kujurp;False;False;t1_gisxh11;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz5nz/;1610358845;9;True;False;anime;t5_2qh22;;0;[]; -[];;;salty-caramel;;;[];;;;text;t2_l55lby8;False;False;[];;That makes so much sense! So why did the Reiss family relinquish power to the fake fritz?;False;False;;;;1610316023;;False;{};gisz5rg;False;t3_kujurp;False;True;t1_gisyfe6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz5rg/;1610358846;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;"Oh shit you're right. Tho I don't think she'd been able to see their individual faces in such lighting, and they wore their hoods as well. She only saw that the enemy force was approaching. - -Also thinking about it now, Pieck didn't see Mikasa during their retreat from Shiganshina. So that leaves most probably Hanji. I think it's her now.";False;False;;;;1610316025;;False;{};gisz5wv;False;t3_kujurp;False;True;t1_gisyp93;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz5wv/;1610358849;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;i don't need to rewatch the series. you're implying i don't understand it. you're wrong. i do understand it. i still don't have to like Reiner. literally deal with it.;False;False;;;;1610316026;;False;{};gisz5xx;False;t3_kujurp;False;True;t1_gisylzz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz5xx/;1610358849;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;"If you look at it thta way - -Maybe a year of buildup after season 3 ended. People got this info dump and were curious were the story went from there and have been waiting";False;False;;;;1610316031;;False;{};gisz6cf;False;t3_kujurp;False;True;t1_gisysol;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz6cf/;1610358855;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;"the re zero curves aren't really applicable here because of the delayed releases, I think the curves for episode 2,3 and 4 of AOT are more useful: https://cdn.discordapp.com/attachments/476391825590976522/793854102308126730/karma_track.png - -In half an hour we'll know its 4-hour score and based on the 4-hour scores of those three episodes that should end up being approximately 40% of its final 48-hour score.";False;False;;;;1610316038;;False;{};gisz6ub;False;t3_kujurp;False;True;t1_gisyhbm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz6ub/;1610358864;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cantaneer;;;[];;;;text;t2_1ib8wxpm;False;False;[];;it’s part 1-2 or movie. there is no fucking way that mappa fits 40 chapters in 11 episodes;False;False;;;;1610316043;;False;{};gisz777;False;t3_kujurp;False;False;t1_gisz0xf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz777/;1610358869;6;True;False;anime;t5_2qh22;;0;[]; -[];;;jez124;;;[];;;;text;t2_492iwgft;False;False;[];;my bro wanted to die and atone so bad.He for sure would have given up his life glad if it mean his family-gabi as well as falco etc live on.;False;False;;;;1610316045;;False;{};gisz7by;False;t3_kujurp;False;False;t1_gisk1jh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz7by/;1610358871;30;True;False;anime;t5_2qh22;;0;[]; -[];;;BUTthehoeslovemetho;;;[];;;;text;t2_xc68f;False;False;[];;"""DAMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN"" -my whole reaction to this episode";False;False;;;;1610316049;;False;{};gisz7oh;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz7oh/;1610358876;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PoseidonUltor;;;[];;;;text;t2_23ok22mt;False;False;[];;"why does this only have 8k upvotes lmao - -EDIT: Nvm the upvotes were just lagging";False;False;;;;1610316050;;1610316523.0;{};gisz7rg;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz7rg/;1610358877;11;True;False;anime;t5_2qh22;;0;[]; -[];;;SoMuchHatred;;;[];;;;text;t2_o15bh;False;False;[];;That's definitely the core reason, from what we currently know. I just meant we don't know the exact mechanics of it since that part has never really been explained... though obviously the sunlight connection hasn't been touched on much either.;False;False;;;;1610316052;;False;{};gisz7z3;False;t3_kujurp;False;True;t1_gisyc2f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz7z3/;1610358880;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dyvius;;;[];;;;text;t2_gfzwl;False;False;[];;"The beauty of Eren waiting for Willy to formally declare war before attacking, technically making his action defensive in nature. - -Fuck I was sitting here just shivering with anticipation all episode.";False;False;;;;1610316055;;False;{};gisz87c;False;t3_kujurp;False;False;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz87c/;1610358883;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Aerohed;;;[];;;;text;t2_xjmyo;False;False;[];;"1 second into the new war: - -- Enemy leader has been killed in front of a massive audience - -- Eren commits a similar war crime to the one Reiner did - -Already off to a fine start, as usual. - -Also, was Armin the tall guy? It’d be kinda funny if he hit a growth spurt after getting the colossal.";False;False;;;;1610316057;;False;{};gisz8bf;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz8bf/;1610358884;9;True;False;anime;t5_2qh22;;0;[]; -[];;;BreezyBlink;;;[];;;;text;t2_l49gf;False;False;[];;It's so strange to see like a cool and calm Eren, very very good episode!;False;False;;;;1610316061;;False;{};gisz8n6;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz8n6/;1610358889;5;True;False;anime;t5_2qh22;;0;[]; -[];;;raining-in-konoha;;;[];;;;text;t2_2f7xqstx;False;False;[];;Can't wait to see Eren glitching through walls and only equipping items during some sort of action like opening doors, climbing a ladder or using an elevator;False;False;;;;1610316070;;False;{};gisz9bn;False;t3_kujurp;False;False;t1_gisd3sc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisz9bn/;1610358899;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Ashish_Trip;;;[];;;;text;t2_2t89pxeq;False;False;[];;Agreed, although eren knew, but he still waited for Willy's declaration of war to attack him. He is not some usual shonen twerp who shouts and cries about being righteous, he's a sinner who recognizes his actions and accepts his role in the sins that he's going to commit. But he has his people to protect and he won't stop at anything now.;False;False;;;;1610316084;;False;{};giszaff;False;t3_kujurp;False;False;t1_gisu430;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszaff/;1610358915;14;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;Was it Armin who trapped Pieck and the other dude? Or was it Jean? We know Jean is in the city from episode 1 but I am confused who it's supposed to be, Idk if Pieck ever saw jean but she saw Armin for sure.;False;False;;;;1610316124;;False;{};giszdki;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszdki/;1610358961;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;No corpse has been shown, so take that how you will.;False;False;;;;1610316125;;False;{};giszdlx;False;t3_kujurp;False;True;t1_gisxm99;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszdlx/;1610358961;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;I agree with this, but you are much better off convincing people and making them value your perspective if you don't call their perspective braindead.;False;False;;;;1610316126;;False;{};giszdou;False;t3_kujurp;False;False;t1_gist3ng;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszdou/;1610358962;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Runningman0301;;MAL;[];;https://myanimelist.net/animelist/Runningman0301?status=7;dark;text;t2_hh6nr;False;False;[];;"> He understands, sympathizes and forgives the person responsible for his mother's death. - -he literally said this ep to reiner ' why reiner, why was my mother eaten by a titan ?'.";False;False;;;;1610316130;;False;{};gisze0u;False;t3_kujurp;False;True;t1_gisib46;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisze0u/;1610358966;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Frostbite2806;;;[];;;;text;t2_13evjt;False;False;[];;I don’t think you can ”just kill” veteran titan shifters.;False;False;;;;1610316131;;False;{};gisze3m;False;t3_kujurp;False;False;t1_gisym2n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisze3m/;1610358968;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TheCatBarbarian;;;[];;;;text;t2_lhf1eey;False;False;[];;I understand why but I was really hyped for the moment right after this lmao. But I reckon it'll be its own episode now;False;False;;;;1610316132;;False;{};gisze57;False;t3_kujurp;False;False;t1_gisfspq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisze57/;1610358968;12;True;False;anime;t5_2qh22;;0;[]; -[];;;bakuhatsuda;;;[];;;;text;t2_kaggg;False;False;[];;Well...that was literally everything I could have asked for in adapting those chapters.;False;False;;;;1610316132;;False;{};gisze5w;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisze5w/;1610358968;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IsecoranI;;;[];;;;text;t2_38at04ro;False;False;[];;Probably Marleyan soldiers.;False;False;;;;1610316134;;False;{};giszec8;False;t3_kujurp;False;False;t1_gisxvmo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszec8/;1610358971;28;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;Seems like they're only adapting up to around Chapter 122 this season. The rest will be done in a Part 2 or perhaps via movies.;False;False;;;;1610316149;;False;{};giszfii;False;t3_kujurp;False;True;t1_gisz0xf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszfii/;1610358988;3;True;False;anime;t5_2qh22;;0;[]; -[];;;spaghetti_freak;;;[];;;;text;t2_fv67w;False;False;[];;Yes but the argument was about systemic reasons for you to be put in a position where youre 'supposed' to kill someone;False;False;;;;1610316150;;False;{};giszfmi;False;t3_kujurp;False;True;t1_gisw2yo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszfmi/;1610358990;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;/u/miltonmerloxd You confident with 16-18K still? We're already at like 9K. Not to go against time travel but Holy Shit.;False;False;;;;1610316162;;False;{};giszgik;False;t3_kujurp;False;True;t1_giscepb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszgik/;1610359002;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jez124;;;[];;;;text;t2_492iwgft;False;False;[];;yea the Attack Titan is all about Moving Forward. Funnily enough Reiner is all about that too in some ways.;False;False;;;;1610316164;;False;{};giszgp4;False;t3_kujurp;False;True;t1_gisd65h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszgp4/;1610359005;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mattwrld25;;;[];;;;text;t2_7apbhygb;False;False;[];;Anyone know how many upvotes ep1 had at this time?;False;False;;;;1610316166;;False;{};giszgt1;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszgt1/;1610359006;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;True, probably gonna find out pretty quick into next episode what happened w/ reiner and falco;False;False;;;;1610316166;;False;{};giszgtw;False;t3_kujurp;False;True;t1_giszdlx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszgtw/;1610359007;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610316177;;False;{};giszhll;False;t3_kujurp;False;True;t1_gisx5ei;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszhll/;1610359018;0;True;False;anime;t5_2qh22;;0;[]; -[];;;okokokok1111;;;[];;;;text;t2_5ca3lfb5;False;False;[];;The voice acting and the OST were truly perfect. They managed to reach level of tension that i didn't thought were reachable. I kept on getting goosebumps;False;False;;;;1610316184;;False;{};giszi54;False;t3_kujurp;False;False;t1_gisysiz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszi54/;1610359026;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Clemenx00;;;[];;;;text;t2_i99bz;False;False;[];;The basement was so genius tho. The series could have gone in an infinite number of ways. THe fact that what he chose is amazing is a miracle.;False;False;;;;1610316187;;False;{};giszifo;False;t3_kujurp;False;False;t1_gisbw9m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszifo/;1610359031;10;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;I think that soldier is Hanji, she's the only one who Pieck saw who would fit the bill, save the apparently blonde hair. I'll have to watch the episode again to solidify my theories tho.;False;False;;;;1610316188;;False;{};giszihh;False;t3_kujurp;False;False;t1_gisjuyt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszihh/;1610359032;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Cheetah357;;;[];;;;text;t2_6h532l18;False;False;[];;The comment was made 3 hours ago. During that time there still was about an hour or two left until it released on Crunchyroll and other American sites.;False;False;;;;1610316193;;False;{};gisziwc;False;t3_kujurp;False;False;t1_gisxy6g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisziwc/;1610359037;10;True;False;anime;t5_2qh22;;0;[]; -[];;;yungkumquat;;;[];;;;text;t2_1r4avfbs;False;False;[];;i was just waiting for eren to switch up on his tone and finally be like: “i feel bad... but not bad enough to kill everyone here.”;False;False;;;;1610316199;;False;{};giszjb6;False;t3_kujurp;False;False;t1_gisag7i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszjb6/;1610359043;4;True;False;anime;t5_2qh22;;0;[]; -[];;;schnazzums;;;[];;;;text;t2_9gr96;False;False;[];;Well you see the soldiers going down to where Reiner and Eren were talking, so they must know he’s here.;False;False;;;;1610316200;;False;{};giszjdq;False;t3_kujurp;False;True;t1_gisx991;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszjdq/;1610359044;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Runningman0301;;MAL;[];;https://myanimelist.net/animelist/Runningman0301?status=7;dark;text;t2_hh6nr;False;False;[];;i agree with you, if eren didnt care about revenge, why would he ask reiner today ' why was my mother eaten by a titan ?;False;False;;;;1610316203;;False;{};giszjlz;False;t3_kujurp;False;False;t1_giswmen;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszjlz/;1610359047;4;True;False;anime;t5_2qh22;;0;[]; -[];;;problemo04;;;[];;;;text;t2_3ql5305f;False;False;[];;I gave in my desire to read the manga and personally I regret it. Story is amazing as expected but honestly going raw into the episodes is breathtaking. I'd recommend waiting. (tho on the flipside you gotta avoid spoilers like your life depends on it).;False;False;;;;1610316207;;False;{};giszjvy;False;t3_kujurp;False;True;t1_gisfhsp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszjvy/;1610359052;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Levani_Exiled;;;[];;;;text;t2_5857rrcq;False;False;[];;"Just watched ""Declaration of war"". 1 week of waiting turns into 2, because they literally showed nothing in that episode. The only important part was Eren's and Reiner's dialogue everything else waste of time. I think everyone knew, just like me, that Eren would turn into a titan in the middle of that city. Nothing unexpected there. - -I hate that they do this in every single anime. Stretch story line with pointless stuff so they have more time. It is inconvenient and tiring. Waiting this whole week and getting literally nothing. At least make their dialogue longer or something. 1 episode wasted. Anticipation no longer exists for me.";False;True;;comment score below threshold;;1610316208;;False;{};giszk0b;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszk0b/;1610359053;-29;True;False;anime;t5_2qh22;;0;[]; -[];;;kris12k4;;;[];;;;text;t2_9jx1j;False;True;[];;Are Eren and Reiner still friends? :c;False;False;;;;1610316211;;False;{};giszk8c;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszk8c/;1610359057;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jont828;;;[];;;;text;t2_cj0qf;False;False;[];;"""Those letters weren't for your family, were they"" - -""Unfortunately they didn't get to my family. They did get to my allies though"" - -Holy shit that line";False;False;;;;1610316213;;False;{};giszkbw;False;t3_kujurp;False;False;t1_giscnq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszkbw/;1610359058;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;Okay this episode is on track to reach 10k karma in under 4 hours and certified nuts.;False;False;;;;1610316221;;False;{};giszkyz;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszkyz/;1610359067;10;True;False;anime;t5_2qh22;;0;[]; -[];;;yungkumquat;;;[];;;;text;t2_1r4avfbs;False;False;[];;bruh moment;False;False;;;;1610316236;;False;{};giszm4g;False;t3_kujurp;False;False;t1_gisc3ca;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszm4g/;1610359083;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Jont828;;;[];;;;text;t2_cj0qf;False;False;[];;Willy became the first casualty one second in to the war, and since Eren waited it's not an unprovoked attack;False;False;;;;1610316242;;False;{};giszmk1;False;t3_kujurp;False;True;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszmk1/;1610359089;3;True;False;anime;t5_2qh22;;0;[]; -[];;;S0phon;;;[];;;;text;t2_3wmta549;False;False;[];;The soldiers are looking for Pieck and Porco. A few minutes ago Magath literally gave that order.;False;False;;;;1610316249;;False;{};giszn12;False;t3_kujurp;False;False;t1_giszjdq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszn12/;1610359097;36;True;False;anime;t5_2qh22;;0;[]; -[];;;kingwhocares;;;[];;;;text;t2_xrwt8;False;False;[];;Not really. It was a legitimate military target and thus not a warcrime as it wasn't specifically targeting civilians. Furthermore, they didn't declare war on Eren but Paradis Island and thus this can be counted as retaliation, which rules out terrorism.;False;False;;;;1610316252;;False;{};giszn8q;False;t3_kujurp;False;False;t1_gisx7x6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszn8q/;1610359099;15;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610316253;;1610343995.0;{};giszndf;False;t3_kujurp;False;False;t1_gisuhmp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszndf/;1610359101;34;False;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;you dont have to like anything but your litterly missing the themes being shoved down your throat for the past 5 episodes of Reiner doing nothing wrong;False;False;;;;1610316261;;False;{};gisznvz;False;t3_kujurp;False;True;t1_gisz5xx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisznvz/;1610359109;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thedicestoppedrollin;;;[];;;;text;t2_3uzc4kbl;False;False;[];;I mean, I still prefer the WiT team, but that doesnt mean I cant love the new stuff or get hyped;False;False;;;;1610316270;;False;{};giszojz;False;t3_kujurp;False;True;t1_gisji3a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszojz/;1610359120;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Arsh36160;;;[];;;;text;t2_4e6hj6ao;False;False;[];;What? One piece does that? When?;False;False;;;;1610316275;;False;{};giszoxo;False;t3_kujurp;False;True;t1_gislyf5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszoxo/;1610359126;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;wolfmasterk87;;;[];;;;text;t2_qaoz1;False;False;[];;Lololol;False;False;;;;1610316277;;False;{};giszp2g;False;t3_kujurp;False;True;t1_gisar3t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszp2g/;1610359128;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Runningman0301;;MAL;[];;https://myanimelist.net/animelist/Runningman0301?status=7;dark;text;t2_hh6nr;False;False;[];;he was advanced catfish'd;False;False;;;;1610316289;;False;{};giszpyu;False;t3_kujurp;False;True;t1_gisyztd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszpyu/;1610359140;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;about the same as this one but it was growing slower;False;False;;;;1610316291;;False;{};giszq3x;False;t3_kujurp;False;False;t1_giszgt1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszq3x/;1610359143;7;True;False;anime;t5_2qh22;;0;[]; -[];;;JoseInx;;;[];;;;text;t2_iy0jb;False;False;[];;And now we know why the top 10 students had the chance to go to the Military Police. In words of Willy, Fritz accepted an attack from Marley as their rightful punishment, so he never wanted any real army against titans.;False;False;;;;1610316292;;1610316785.0;{};giszq6w;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszq6w/;1610359144;10;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;Yeah lots of people are freaking out over that. It is possible though I guess.;False;False;;;;1610316297;;False;{};giszqkg;False;t3_kujurp;False;False;t1_gisz1ks;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszqkg/;1610359150;18;True;False;anime;t5_2qh22;;0;[]; -[];;;NewYearDodo;;;[];;;;text;t2_16wkxf;False;False;[];;"> Personally, I would have liked something more similar to this. -https://youtu.be/500N3UNA30k - -I'm not sure I can agree with that. I'm going to wait for the next episode to see how they handle the tone before forming my full opinion. But it seems like they weren't trying to make it the ""epic hype"" moment, your example creates. - -Not using the OST to carry the scene, allows the focus to be placed on the destruction and horror. Creating a much more solemn tone. Personaly I'm far more afraid and sad for Eren in the original.";False;False;;;;1610316312;;False;{};giszrny;False;t3_kujurp;False;False;t1_gissotf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszrny/;1610359166;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610316326;;False;{};giszsql;False;t3_kujurp;False;True;t1_gisy9r6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszsql/;1610359182;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lohtric;;;[];;;;text;t2_10buyw;False;False;[];;yup- u mad?;False;True;;comment score below threshold;;1610316327;;False;{};giszss0;False;t3_kujurp;False;True;t1_gisyljw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszss0/;1610359182;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;dobiks;;;[];;;;text;t2_8uqri;False;False;[];;He did turn without his leg and a hand in season 1. He probably can't turn while being tired. And regenerating eats a lot of stamina;False;False;;;;1610316332;;False;{};giszt5t;False;t3_kujurp;False;False;t1_gisxylb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszt5t/;1610359188;118;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610316340;;False;{};gisztsj;False;t3_kujurp;False;True;t1_gisb08f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gisztsj/;1610359196;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeadingPlayer;;;[];;;;text;t2_c0osog1;False;False;[];;Read the manga panels for this scene (YouTube recommendations are wild) and man, bravo anime. This is incredible. May be my favorite episode of the anime so far. Simply incredible.;False;False;;;;1610316352;;False;{};giszuo8;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszuo8/;1610359211;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Retrixy;;;[];;;;text;t2_6h4v3v8c;False;False;[];;the time has come;False;False;;;;1610316355;;False;{};giszuwa;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszuwa/;1610359215;4;True;False;anime;t5_2qh22;;0;[]; -[];;;PortoGuy18;;;[];;;;text;t2_2fidx1m;False;False;[];;give it time, but honestly 8k upvotes in 3 hours is kind of record;False;False;;;;1610316368;;False;{};giszvun;False;t3_kujurp;False;False;t1_gisz7rg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszvun/;1610359229;6;True;False;anime;t5_2qh22;;0;[]; -[];;;yomomaspimp;;;[];;;;text;t2_kkzmu;False;False;[];;The mangaka is a really good storyteller. Such an incredible writer, jesus, speechless.;False;False;;;;1610316372;;False;{};giszw69;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszw69/;1610359234;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Ksradrik;;;[];;;;text;t2_1wtl783j;False;False;[];;If they are the shadow rulers they probably have every single piece of info the military has, since its *their* military.;False;False;;;;1610316374;;False;{};giszwa5;False;t3_kujurp;False;False;t1_giscu82;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszwa5/;1610359236;31;True;False;anime;t5_2qh22;;0;[]; -[];;;thejuiceburgler;;;[];;;;text;t2_gh2q8;False;False;[];;"Erens line ""you were just a kid, you didn't know anything"" fuckin got me, calling back to the moments before reiner and berthold transformed";False;False;;;;1610316384;;False;{};giszx0j;False;t3_kujurp;False;False;t1_gislyf5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszx0j/;1610359247;54;True;False;anime;t5_2qh22;;0;[]; -[];;;brownguy6391;;;[];;;;text;t2_3et2u982;False;False;[];;The Identity of the Warhammer is still unknown;False;False;;;;1610316387;;False;{};giszx7e;False;t3_kujurp;False;True;t1_gisym2n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszx7e/;1610359251;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okokokok1111;;;[];;;;text;t2_5ca3lfb5;False;False;[];;I actually agree. Many people are now posting the same scene with a different OST, and it really seems to fit better for me. But i also feel like i am the one who does not understand why they would have chosen this kind of OST, maybe there is some reason that I am not aware of (for example people hypotesized how maybe they didn't want a music that will overwhelm the rest od the scene too much).;False;False;;;;1610316395;;False;{};giszxsa;False;t3_kujurp;False;True;t1_gisyv3k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszxsa/;1610359262;2;True;False;anime;t5_2qh22;;0;[]; -[];;;one-eyed-02;;;[];;;;text;t2_783k5oi0;False;False;[];;Chemistry class with a live demo be like;False;False;;;;1610316396;;False;{};giszxuh;False;t3_kujurp;False;True;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszxuh/;1610359262;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mf_ghost;;;[];;;;text;t2_dhuwg;False;False;[];;And now we have gone full circle. Marley got their grim reminder just like Paradis did all those years ago;False;False;;;;1610316400;;False;{};giszy6a;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszy6a/;1610359267;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Enosh25;;;[];;;;text;t2_dkrlm;False;False;[];;"as far as minor nitpicks go, I have to say I preferred ""...until my enemies are destroyed""";False;False;;;;1610316405;;False;{};giszyhs;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszyhs/;1610359271;8;True;False;anime;t5_2qh22;;0;[]; -[];;;schnazzums;;;[];;;;text;t2_9gr96;False;False;[];;Ah makes sense. Thanks;False;False;;;;1610316405;;False;{};giszyik;False;t3_kujurp;False;False;t1_gisziwc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszyik/;1610359272;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;There's gonna be a part 2 to this season. Either that or a movie. 16 episodes are NOT the end. These 16 episodes will only cover up to 122. The manga will end at 139 and there will no doubt be more episodes from MAPPA cuz they said they're covering the entire story.;False;False;;;;1610316410;;1610317159.0;{};giszyww;False;t3_kujurp;False;False;t1_gisz0xf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszyww/;1610359278;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Runningman0301;;MAL;[];;https://myanimelist.net/animelist/Runningman0301?status=7;dark;text;t2_hh6nr;False;False;[];;red wedding vibes;False;False;;;;1610316425;;False;{};giszzxu;False;t3_kujurp;False;False;t1_giswxwm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giszzxu/;1610359293;37;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610316428;;1610343989.0;{};git004e;False;t3_kujurp;False;False;t1_giszk0b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git004e/;1610359296;7;False;False;anime;t5_2qh22;;0;[]; -[];;;Buglante;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Vinland saga goat;light;text;t2_6nah75po;False;False;[];;cause its only 3 hours in LMAO;False;False;;;;1610316435;;False;{};git00nz;False;t3_kujurp;False;False;t1_gisz7rg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git00nz/;1610359303;7;True;False;anime;t5_2qh22;;0;[]; -[];;;justsyr;;;[];;;;text;t2_b8iza;False;False;[];;My guess was that Eren wanted him to stay thinking Reiner would protect him. Otherwise would let him go up with the others knowing about what was going to happen next.;False;False;;;;1610316435;;False;{};git00o7;False;t3_kujurp;False;False;t1_gismtd5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git00o7/;1610359304;36;True;False;anime;t5_2qh22;;0;[]; -[];;;Ukey;;;[];;;;text;t2_kae2s;False;False;[];;Eren is fully functioning with a heart/soul that's so ravaged that he's lost the glimmer in his eye (he's the only one in the ep without an eye highlight). His Dead Inside levels must be so high, and he's going to fuck all the shit up without remorse.;False;False;;;;1610316439;;False;{};git00ye;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git00ye/;1610359307;4;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;"I think Eren was asking the rhetorically to get to his final point: ""you have suffered haven't you? I think now I understand""";False;False;;;;1610316451;;False;{};git01u4;False;t3_kujurp;False;False;t1_gisze0u;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git01u4/;1610359320;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Daserion;;;[];;;;text;t2_ix5ld;False;False;[];;I hit my table the moment that 'To be Continued' showed up. Like the fucking hype.;False;False;;;;1610316462;;False;{};git02p5;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git02p5/;1610359333;3;True;False;anime;t5_2qh22;;0;[]; -[];;;10484629103641904;;;[];;;;text;t2_8u2b75dj;False;False;[];;Eren is on another level.;False;False;;;;1610316472;;False;{};git03fr;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git03fr/;1610359343;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TurbidusQuaerenti;;;[];;;;text;t2_g9rwp;False;False;[];;Good points.;False;False;;;;1610316474;;False;{};git03mf;False;t3_kujurp;False;True;t1_gisz1wm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git03mf/;1610359346;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610316478;;False;{};git03yc;False;t3_kujurp;False;True;t1_gisrvq9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git03yc/;1610359351;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610316478;;False;{};git03yj;False;t3_kujurp;False;True;t1_git00nz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git03yj/;1610359351;1;True;False;anime;t5_2qh22;;0;[]; -[];;;brownguy6391;;;[];;;;text;t2_3et2u982;False;False;[];;Didn't expect an F1 meme here lmao;False;False;;;;1610316480;;False;{};git042q;False;t3_kujurp;False;True;t1_gisy7lu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git042q/;1610359353;1;True;False;anime;t5_2qh22;;0;[]; -[];;;imaforgetthis;;;[];;;;text;t2_2d7gcwde;False;False;[];;"Similarly, a famous fish once said, ""Just keep swimming.""";False;False;;;;1610316518;;False;{};git075w;False;t3_kujurp;False;True;t1_gisa7d4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git075w/;1610359400;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Clemenx00;;;[];;;;text;t2_i99bz;False;False;[];;Reiner's scared shitless face is the best thing about the episode.;False;False;;;;1610316519;;False;{};git077m;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git077m/;1610359401;2;True;False;anime;t5_2qh22;;0;[]; -[];;;starf05;;;[];;;;text;t2_4hvvltp4;False;False;[];;They didn't. As long as you have the power of the founding titan you possess the same power of a God. The Fritz in the island were kings in name only, they didn't have any real power. They also existed as a decoy. If someone had the idea to harm the king, they would have harmed the wrong king.;False;False;;;;1610316529;;False;{};git080h;False;t3_kujurp;False;True;t1_gisz5rg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git080h/;1610359413;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PoseidonUltor;;;[];;;;text;t2_23ok22mt;False;False;[];;true, my upvotes are just lagging;False;False;;;;1610316534;;False;{};git08f6;False;t3_kujurp;False;True;t1_git00nz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git08f6/;1610359418;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CloudMountainJuror;;;[];;;;text;t2_hbfr1;False;False;[];;"The episode was good, but the animation limits are really showing. Especially in comparison to season 1, the more I watch the more cheap it looks. Eren's transformation was a successfully big moment in the story, but it looked stiff, which made it feel kinda anticlimactic. - -(And for the record, this is coming from an anime-only.)";False;False;;;;1610316535;;False;{};git08i1;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git08i1/;1610359419;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;Re: Zero never stood a chance. This is on track to beat Re: zero's 48h karma in 5 hours.;False;False;;;;1610316545;;False;{};git09ad;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git09ad/;1610359431;14;True;False;anime;t5_2qh22;;0;[]; -[];;;PortoGuy18;;;[];;;;text;t2_2fidx1m;False;False;[];;Yeah, and even then, the Survey Corps probably only existed because the kings wanted the more radical people to die against the Titans beyond the walls.;False;False;;;;1610316568;;False;{};git0b3l;False;t3_kujurp;False;False;t1_giszq6w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0b3l/;1610359458;5;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;They had 4 years to prepare. So I hope not;False;False;;;;1610316571;;False;{};git0bcm;False;t3_kujurp;False;False;t1_gisy7gq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0bcm/;1610359461;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610316586;;False;{};git0cic;False;t3_kujurp;False;True;t1_giszdki;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0cic/;1610359480;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aniviasrevenge;;;[];;;;text;t2_64n5l;False;False;[];;"As brutal as his transformation was given the building above him, now that I think about it, Eren was careful to wait until Willie declared war to transform, making his attack-- in a very technical sense-- a defensive one since Marley declared war first. - -The stage was masterfully set.";False;False;;;;1610316593;;1610317482.0;{};git0d2o;False;t3_kujurp;False;False;t1_gish4zq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0d2o/;1610359488;63;True;False;anime;t5_2qh22;;0;[]; -[];;;Karl_the_stingray;;;[];;;;text;t2_5y6ceb3k;False;False;[];;Yeah, definitely very vivid, but easy to miss if you weren't watching properly - some quick red frames of titan flesh being created;False;False;;;;1610316594;;False;{};git0d42;False;t3_kujurp;False;True;t1_gispx1g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0d42/;1610359489;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Philarete;;MAL a-amq;[];;https://myanimelist.net/profile/WizardMcKillin;dark;text;t2_9pgqv;False;False;[];;"Anime only; my guess is Armin. Not sure if she saw Jean either, but given how skinny the soldier was, I think it fits Armin better.";False;False;;;;1610316596;;False;{};git0dbo;False;t3_kujurp;False;True;t1_giszdki;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0dbo/;1610359492;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kraker313;;;[];;;;text;t2_6lmfb6y3;False;False;[];;MY SOLDIERS HYPEEEEE;False;False;;;;1610316606;;False;{};git0e1l;False;t3_kujurp;False;False;t1_gisdt4n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0e1l/;1610359504;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Karl_the_stingray;;;[];;;;text;t2_5y6ceb3k;False;False;[];;Did it seem like Eden to you too?;False;False;;;;1610316611;;False;{};git0eh3;False;t3_kujurp;False;True;t1_gisrwzq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0eh3/;1610359510;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Verbaliskaiser91;;;[];;;;text;t2_qe6dbsn;False;False;[];;yeah can’t wait for alonso to come back next year.;False;False;;;;1610316617;;False;{};git0exx;False;t3_kujurp;False;True;t1_git042q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0exx/;1610359518;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Runningman0301;;MAL;[];;https://myanimelist.net/animelist/Runningman0301?status=7;dark;text;t2_hh6nr;False;False;[];;she'd be proud.;False;False;;;;1610316620;;False;{};git0f6w;False;t3_kujurp;False;True;t1_gisvtvk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0f6w/;1610359522;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thedicestoppedrollin;;;[];;;;text;t2_3uzc4kbl;False;False;[];;"From a logical perspective: - -1. They are the enemy -2. War was declared, so fair game -3. Liberio is literally a weapon factory/plant -4. If you can end the war now, less people will die overall - -From a more human perspective: -Was there no other way?";False;False;;;;1610316628;;False;{};git0ftf;False;t3_kujurp;False;False;t1_gisurtq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0ftf/;1610359532;22;True;False;anime;t5_2qh22;;0;[]; -[];;;AttemptFailed;;;[];;;;text;t2_48sbjdpk;False;False;[];;#**ITS SLAM AND JAM TIME**;False;False;;;;1610316651;;False;{};git0hlx;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0hlx/;1610359559;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PortoGuy18;;;[];;;;text;t2_2fidx1m;False;False;[];;It was never going to be a war in the first place. Only for the 2nd and 3rd place and so on.;False;False;;;;1610316652;;False;{};git0hmw;False;t3_kujurp;False;False;t1_git09ad;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0hmw/;1610359560;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Lordrice;;;[];;;;text;t2_8yby8;False;False;[];;Okay, but hear me out, what if Armin just hit puberty and they had to get a different VA because his voice would be deeper lol;False;False;;;;1610316652;;False;{};git0hmx;False;t3_kujurp;False;False;t1_gisz4t1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0hmx/;1610359560;4;True;False;anime;t5_2qh22;;0;[]; -[];;;raknor88;;;[];;;;text;t2_67otf;False;False;[];;"Everyone is losing their shit about Eren, I'm now wondering what Armin is going to do. That was Armin that trapped the Cart and Jaw Titan in the hole. Eren may just be the distraction while Armin goes into the Marley city and could possible nuke the Marleyan military HQ. Eren takes out the political leaders while Armin takes out the military leaders leftover. - -Also, was Zeke in on it too? That'd be the only reason I can think of that they didn't trap him with the other Warriors as well.";False;False;;;;1610316661;;False;{};git0ibw;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0ibw/;1610359570;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;To be honest, animating S4 with it's shenanigans is a monumental task, more so with the limited time they had.;False;False;;;;1610316663;;False;{};git0ihq;False;t3_kujurp;False;False;t1_git08i1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0ihq/;1610359572;8;True;False;anime;t5_2qh22;;0;[]; -[];;;VariousMeet;;;[];;;;text;t2_63veb3s5;False;False;[];;This show is a masterpiece. The look of deep regret by Reiner as he hears about the trauma titans have done on the world, while simultaneously having Eren tell him 'we are here to do the same as you did to us' gives me the biggest boner. Truly the roles have been reversed, and Reiner is now seeing what it feels like to be in the Paradis people's shoes.;False;False;;;;1610316664;;False;{};git0ik2;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0ik2/;1610359573;19;True;False;anime;t5_2qh22;;0;[]; -[];;;goodboy_jj;;;[];;;;text;t2_5cvc3j3g;False;False;[];;They didnt relinquish their power they just set upva fake puppet king. The Reiss was and is still the ruler.;False;False;;;;1610316664;;False;{};git0ild;False;t3_kujurp;False;True;t1_gisz5rg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0ild/;1610359574;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Avscum;;;[];;;;text;t2_vk6ev;False;False;[];;"My favorite episode yet, the whole thing is a constant buildup to the last scene. - -And man Eren is really being the antagonist in this episode. :s";False;False;;;;1610316677;;1610316929.0;{};git0jmq;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0jmq/;1610359590;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IamDuyi;;;[];;;;text;t2_2iqmf4mn;False;False;[];;"We get 16 episodes now and a part 2 later with the rest. There's still about 30% of the story left. We're still just getting started ;)";False;False;;;;1610316679;;False;{};git0jsa;False;t3_kujurp;False;False;t1_gisyz6i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0jsa/;1610359592;51;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610316680;;False;{};git0ju1;False;t3_kujurp;False;True;t1_gisyw75;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0ju1/;1610359593;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;Lol;False;False;;;;1610316682;;False;{};git0k0r;False;t3_kujurp;False;True;t1_git0hmx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0k0r/;1610359596;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Runningman0301;;MAL;[];;https://myanimelist.net/animelist/Runningman0301?status=7;dark;text;t2_hh6nr;False;False;[];;"WHY DID WE PUT OUR FAITH IN YOU GRISHA ! ELDIA IS FINISHED..! - -Eren "" hold up mr grice hold up """;False;False;;;;1610316684;;False;{};git0k6e;False;t3_kujurp;False;False;t1_gisvspd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0k6e/;1610359598;13;True;False;anime;t5_2qh22;;0;[]; -[];;;gmarvin;;;[];;;;text;t2_7p5g7;False;False;[];;Except last week;False;False;;;;1610316686;;False;{};git0kbi;False;t3_kujurp;False;False;t1_gisbb5j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0kbi/;1610359600;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheAsianOne88;;;[];;;;text;t2_587e7kzp;False;False;[];;It all started 4 years ago and had something to do with walls;False;False;;;;1610316688;;False;{};git0kfm;False;t3_kujurp;False;True;t1_gisbqfm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0kfm/;1610359602;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;"If you watch aot only for the action.... -You need to watch another anime, because aot is more than ""only action anime""";False;False;;;;1610316693;;False;{};git0kuh;False;t3_kujurp;False;True;t1_giszk0b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0kuh/;1610359609;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;No? Just stating the fact;False;False;;;;1610316700;;False;{};git0lc9;False;t3_kujurp;False;True;t1_giszss0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0lc9/;1610359616;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mMeister_5;;;[];;;;text;t2_49p4u9ur;False;False;[];;Hm. r/all, maybe? Or am I too hopeful?;False;False;;;;1610316710;;False;{};git0m4a;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0m4a/;1610359627;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dmtgemini;;;[];;;;text;t2_11138d;False;False;[];;Holy shit...;False;False;;;;1610316726;;False;{};git0nmi;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0nmi/;1610359651;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Philarete;;MAL a-amq;[];;https://myanimelist.net/profile/WizardMcKillin;dark;text;t2_9pgqv;False;False;[];;I hope the contents of the letters get revealed at some point. Was it just coordinating this attack, or did it involve any diplomacy? Poor Falco realizing he unintentionally helped destroy his home.;False;False;;;;1610316734;;False;{};git0oc4;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0oc4/;1610359660;10;True;False;anime;t5_2qh22;;0;[]; -[];;;lurker_registered;;;[];;;;text;t2_7owjw;False;False;[];;But they're wearing the pins on their uniforms...;False;False;;;;1610316744;;False;{};git0p4p;False;t3_kujurp;False;True;t1_giszec8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0p4p/;1610359672;1;True;False;anime;t5_2qh22;;0;[]; -[];;;brownguy6391;;;[];;;;text;t2_3et2u982;False;False;[];;I think r/anime chose not to be in r/all;False;False;;;;1610316761;;False;{};git0qnn;False;t3_kujurp;False;False;t1_git0m4a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0qnn/;1610359695;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Allaban;;;[];;;;text;t2_bku27;False;False;[];;"I've noticed the animation quality dropped a bit. The plot was 10/10 though. - -The guy said Eren had acquired the founder powers?? Wow, so Eren is the first who inherited the king ideology that actually wanted to keep fighting!! This is how big his resolve is wow";False;False;;;;1610316763;;1610316998.0;{};git0qt7;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0qt7/;1610359698;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Runningman0301;;MAL;[];;https://myanimelist.net/animelist/Runningman0301?status=7;dark;text;t2_hh6nr;False;False;[];;So eren can activate it right now by touching historia ? why is he in marley killing tybur ?;False;False;;;;1610316777;;False;{};git0ryr;False;t3_kujurp;False;True;t1_giswmf7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0ryr/;1610359716;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AuthenticWeeb;;;[];;;;text;t2_yi9p8;False;False;[];;Spawncamping as juggernaut is the worst. Not cool Eren.;False;False;;;;1610316790;;False;{};git0t0b;False;t3_kujurp;False;False;t1_gisbgr0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0t0b/;1610359731;29;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;They didn't. The Reiss family IS the Fritz family. They just changed their names and put up a homeless man as a puppet king and gave him the old name of Fritz.;False;False;;;;1610316801;;False;{};git0tv6;False;t3_kujurp;False;False;t1_gisz5rg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0tv6/;1610359743;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Frostbite2806;;;[];;;;text;t2_13evjt;False;False;[];;Good ole bath scenes;False;False;;;;1610316803;;False;{};git0u1r;False;t3_kujurp;False;False;t1_git0qnn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0u1r/;1610359745;7;True;False;anime;t5_2qh22;;0;[]; -[];;;okokokok1111;;;[];;;;text;t2_5ca3lfb5;False;False;[];;And it has been only about 2 hours since the official eng subbed release, so many people still have to watch it. I predict it to reach 22-23k;False;False;;;;1610316816;;False;{};git0v3r;False;t3_kujurp;False;True;t1_giszvun;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0v3r/;1610359761;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoseInx;;;[];;;;text;t2_iy0jb;False;False;[];;"Or to save face, as a way of saying ""see! We are trying!... But not really lol""";False;False;;;;1610316825;;False;{};git0vrp;False;t3_kujurp;False;True;t1_git0b3l;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0vrp/;1610359772;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kinderschlager;;;[];;;;text;t2_ci58c;False;False;[];;that soldier that cut the cord was SO armin. can not wait to see his debue;False;False;;;;1610316830;;False;{};git0w82;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0w82/;1610359778;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Lohtric;;;[];;;;text;t2_10buyw;False;False;[];;A fact that no one asked for lmao;False;True;;comment score below threshold;;1610316837;;False;{};git0wr5;False;t3_kujurp;False;True;t1_git0lc9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0wr5/;1610359785;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;Middle_November;;;[];;;;text;t2_6b09rvm5;False;False;[];;Sleep well Falco;False;False;;;;1610316841;;False;{};git0x1g;False;t3_kujurp;False;False;t1_gisez0v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0x1g/;1610359791;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TatteredTongues;;;[];;;;text;t2_xbrbp;False;False;[];;"They didn't relinquish anything. - - -Rod Reiss was always calling the shots from the shadows, as were his predecessors. - - -The ""fake King"" was literally just some dummy guy that was told to sit there and pretend that he was King, that's all he had to do. - - -They did this so that the fake King, a nobody in every sense of the word, would be targeted instead of the real royal family.";False;False;;;;1610316855;;False;{};git0y70;False;t3_kujurp;False;True;t1_gisz5rg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0y70/;1610359808;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kraker313;;;[];;;;text;t2_6lmfb6y3;False;False;[];;Oh ep16 will be true Climax;False;False;;;;1610316857;;False;{};git0yam;False;t3_kujurp;False;True;t1_giss950;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0yam/;1610359809;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Down_The_Rabbithole;;;[];;;;text;t2_bgzcy;False;False;[];;It doesn't;False;True;;comment score below threshold;;1610316861;;False;{};git0ylm;False;t3_kujurp;False;True;t1_giszoxo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0ylm/;1610359814;-19;True;False;anime;t5_2qh22;;0;[]; -[];;;Audrey_spino;;;[];;;;text;t2_11jl4w;False;False;[];;Gotta give props to Reiner's VA. Really nailed how Reiner's soul was slowly getting sucked dry in that basement.;False;False;;;;1610316861;;False;{};git0ylt;False;t3_kujurp;False;False;t1_gisacff;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0ylt/;1610359814;4;True;False;anime;t5_2qh22;;0;[]; -[];;;PortoGuy18;;;[];;;;text;t2_2fidx1m;False;False;[];;The king ideology only affected the royal family but since Eren isn't of the royal bloodline he is not affected. This part was explained in Season 3 Part 1. But still, you are right, Eren's resolve is pretty big.;False;False;;;;1610316863;;False;{};git0ysh;False;t3_kujurp;False;False;t1_git0qt7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0ysh/;1610359818;5;True;False;anime;t5_2qh22;;0;[]; -[];;;VerbNounPair;;;[];;;;text;t2_171d3240;False;False;[];;">Also, there is a cache of fossil fuels in Paradis. - -lmao, fucking perfect";False;False;;;;1610316876;;False;{};git0zs0;False;t3_kujurp;False;False;t1_gismb1y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0zs0/;1610359831;41;True;False;anime;t5_2qh22;;0;[]; -[];;;_LadyForlorn;;;[];;;;text;t2_4yu1dg7c;False;False;[];;"Eren's voice actor did a such a fine job of portraying the lifelessness in Eren which we had a glimpse in s3 part 2 last episode. The character development is insane. - - -From someone who gave into rage so easily to someone calm and calculating and 10 times more vicious is just awe-inspiring. He knows if he wants to save his people he has to go to war. And Willy Tyburs speech just confirmed it for him. Any chance of talk no jutsu was thrown down the drain.";False;False;;;;1610316878;;False;{};git0zyf;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git0zyf/;1610359835;6;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;In that case, neither was your original comment :);False;False;;;;1610316879;;False;{};git101i;False;t3_kujurp;False;False;t1_git0wr5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git101i/;1610359836;4;True;False;anime;t5_2qh22;;0;[]; -[];;;IamDuyi;;;[];;;;text;t2_2iqmf4mn;False;False;[];;We just gotta trust in Yams! I mean, has he let us down so far?!;False;False;;;;1610316895;;False;{};git1199;False;t3_kujurp;False;False;t1_giszqkg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1199/;1610359853;10;True;False;anime;t5_2qh22;;0;[]; -[];;;seficarnifex;;MAL;[];;http://myanimelist.net/animelist/SeanMKimball;dark;text;t2_cd1zo;False;False;[];;He said in to flaco right after the flash back, like literally 4 minutes later in the episode.;False;False;;;;1610316898;;False;{};git11kd;False;t3_kujurp;False;False;t1_gisd65h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git11kd/;1610359858;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NickoBlackmen;;;[];;;;text;t2_33p2etg;False;False;[];;Quick question, is the manga and anime caught up right now? As in is the ending releasing at the same time? If so, has there been any other manga series of note thats done this?;False;False;;;;1610316899;;False;{};git11ky;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git11ky/;1610359858;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Orzislaw;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Orzi/;light;text;t2_h8rc3;False;False;[];;As long as it's that way it's fine. But everywhere there are people who thinks their opinion is absolute and are really toxic about imposing it. The bigger fandom is the more people like that.;False;False;;;;1610316899;;False;{};git11ll;False;t3_kujurp;False;False;t1_giswu9y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git11ll/;1610359858;19;True;False;anime;t5_2qh22;;0;[]; -[];;;SadSceneryBoi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SadSceneryBoi;light;text;t2_393c1ioj;False;False;[];;Don't you think the title of this training is a little inapropriate?;False;False;;;;1610316911;;False;{};git12hx;False;t3_kujurp;False;False;t1_gisslbl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git12hx/;1610359873;19;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;"There are basically 3 big factions, right? - -1. Marleyan: They are the one who started the war after King Fritz ""retreat"" to Paradis Island. Hate and oppressed the Marley Eldian, but use them as tools of war. Surprisingly, in this episode it's revealed that they're actually given this privilege by King Fritz rather than getting their independence themselves. In the past, they have been oppressed by Eldian for hundred of years. - -Marleyan is currently having several wars with other countries by borrowing the power of Warrior Titan. Willy's speech on this episode was made to end the other war and appeal the other country to join the fight against ""Eren Yaeger"". - -2. Eldian Restoration Faction: Due to the oppression by Marley, they want to gain their independence. They decided to infiltrate Paradis to obtain the founding titan's power (Grisha). Grisha managed to give founding titan's power to Eren, but died in the process. However, I'm not sure about this faction position's right nowas even most Marleyan Eldian has been brainwashed to hate Paradis Island Eldian. - -3. Paradis Island Eldian: They actually lived peacefully behind the wall until Colossus Titan attack. However, it's a fake peace due to being manipulated by King Fritz's power. Grisha's action broke this cycle of manipulation by giving Founding Titan's power to Eren. Currently, they assumed that the whole world outside of the wall are their enemies. I think for them, it's better to attack first rather than be attacked like several years ago. - -By summarising it like this, it become hard for me to decide which factions is right or wrong. - -If left by themselves, Paradis Island should actually be safe and peaceful. Marleyan's action of infiltrating with colossus titan and the restoration faction's intervention with the Founding Titan's power are what fuels the Paradis Island Eldian to attack the outside world.";False;False;;;;1610316912;;False;{};git12kj;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git12kj/;1610359873;4;True;False;anime;t5_2qh22;;0;[]; -[];;;xjustwaitx;;;[];;;;text;t2_3u0fy9uv;False;False;[];;BDW this is based on the second world war, not the first. You can judge by the level of tech and the concentration/internment camps. I'm not sure your historical parallel works either, because Eren waited until Willy declared war.;False;False;;;;1610316916;;False;{};git12vk;False;t3_kujurp;False;True;t1_gisuri7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git12vk/;1610359878;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AsianSquirrel;;;[];;;;text;t2_3vynsrfo;False;False;[];;"No, it's not 'fair.' Whenever a piece of fiction has war & cycle of vengeance as themes, it seems that people come out of the woodworks to defend in the indefensible. Killing/intend on killing innocent civilians, including little kids, ***just to make a point*** is among the most evil of war crimes. This is not to mention Eren intending to kill Falco, which is obscenely inhumane considering their relationship. - -Intent matters. Reiner was on a mission. He committed war crimes as collateral damage with the singular goal of seizing the Founding Titan in mind. Eren actually wants to kill everyone to make the world simpler for himself and those around him. In real wars, the winning side usually don't make a point to intentionally mass murder civilians and annihilate entire nations. What Eren did is nothing short of carrying a rifle and open firing at a public square. - -There will inevitably be collateral damage when war happens. You don't retaliate by murdering everyone and especially not murdering civilians to make a point. The world continues to function in part because of not enough people romanticizing genocide as some sort of justifiable form of vengeance. It worries that these sort of opinions carry over, and certainly does, to real world scenarios. - -Eren may sympathize and relate to Reiner, but he is absolutely not empathetic. He commits his actions will full knowledge of the workings of the world and is motivated primarily by hate. The tragedies that he has experienced over the first 3 seasons has molded him into a unstoppable sociopath.";False;False;;;;1610316930;;False;{};git141e;False;t3_kujurp;False;True;t1_gisgcxz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git141e/;1610359896;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wolfsocean;;;[];;;;text;t2_io8r7;False;False;[];;"I don't know about every one else but I am already seeing people talk about how Eren is about to start killing innocent people in the crowed etc. and feel bad for Riner like give me a freaken break! This man as Eren pointed out killed innocent people as well SO ANYTHING that happens to the people of Marley; The Regime of Marley are to blame for and The Tybur Family for all of their propaganda they have done to the Eldians on the Island. The Blood is on their hands not Erens. - - -Eren is just defending himself and his people because even though they ""Won"" the battle in Season 3 They weren't going to be left alone as we saw in the past four episodes. I don't know about many people here but I am riding and dying with Eren anything he does is justifiable as they have the moral highroad in this not The Regime of Marley or The Tybur Family.";False;False;;;;1610316933;;False;{};git1480;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1480/;1610359899;5;True;False;anime;t5_2qh22;;0;[]; -[];;;EMP_2014;;;[];;;;text;t2_emvfd;False;False;[];;"dunno how there would be rules about ""how it works"", in this case it kinda comes down to civilians relatively indirectly supporting some leaders, that at the time decide to go on war vs an island that has enough power to answer back and quite wipe them out - -mean, if u put ur life in the hands of said leaders, u kinda have no choice but to follow on w/ their decisions; if they go into war vs an enemy that can wipe u all out, what else do u have? if u want to have full agency on ur life, u kinda just don't put it in others' hands";False;False;;;;1610316939;;1610317133.0;{};git14po;False;t3_kujurp;False;True;t1_gisop6x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git14po/;1610359906;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NotDrigon;;;[];;;;text;t2_p59gp;False;False;[];;I mean, that's the name of the episode and it was known since the episode before this.;False;False;;;;1610316939;;False;{};git14pp;False;t3_kujurp;False;True;t1_gisbbwg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git14pp/;1610359906;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Orzislaw;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Orzi/;light;text;t2_h8rc3;False;False;[];;It turned out that up until now we had lenghty villain origin story.;False;False;;;;1610316940;;False;{};git14sx;False;t3_kujurp;False;False;t1_gischn4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git14sx/;1610359908;7;True;False;anime;t5_2qh22;;0;[]; -[];;;bravergrain;;;[];;;;text;t2_150x2q;False;False;[];;Attack on Titan has been on another level since this season started. 5 episodes in and with barely any action and I'm glued to my seat to just watch every minute. This has been some of the best anime I have ever seen and the season has just begun. I can't wait to see what the future episodes are like.;False;False;;;;1610316943;;False;{};git151w;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git151w/;1610359912;14;True;False;anime;t5_2qh22;;0;[]; -[];;;OneTrueGodDoom;;;[];;;;text;t2_4114vcnk;False;False;[];;[Eren be like:](https://youtu.be/yjZcT8ZP7qI?t=11);False;False;;;;1610316947;;False;{};git15co;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git15co/;1610359916;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lunetttt;;;[];;;;text;t2_2gc9xgxo;False;False;[];;Fuck me, Eren's change keeps surprising me. I still can't believe how much he has changed. Also I hope we get to see Falco thinking about Eren's speech instead of going what i have done mode.;False;False;;;;1610316951;;False;{};git15mf;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git15mf/;1610359920;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;She called them the Panzer squad...is Marley the Nazis?;False;False;;;;1610316958;;False;{};git168m;False;t3_kujurp;False;False;t1_giseulo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git168m/;1610359929;12;True;False;anime;t5_2qh22;;0;[]; -[];;;daandedodl;;;[];;;;text;t2_c8gtl7w;False;False;[];;This was amazing;False;False;;;;1610316965;;False;{};git16rg;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git16rg/;1610359936;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DontKnowHowToEnglish;;;[];;;;text;t2_v960p;False;False;[];;"""really, so we're chill"" - -""Yeah-"" - -""We declare war on Paradis!"" - -""Fuck, well excuse me Reiner I have something to do""";False;False;;;;1610316966;;False;{};git16uq;False;t3_kujurp;False;True;t1_gisadib;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git16uq/;1610359937;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SmartRaccoon3643;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;echidna cultist;dark;text;t2_7jtp3l74;False;False;[];;Where do you find these raw drawings from Mappa?;False;False;;;;1610316974;;False;{};git17ge;False;t3_kujurp;False;False;t1_gisaov5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git17ge/;1610359946;5;True;False;anime;t5_2qh22;;0;[]; -[];;;murfsters;;;[];;;;text;t2_60isjpko;False;False;[];;But it’s not like he didn’t think twice because he doesn’t care, it’s because he feels it’s what he’s forced to do. I think there’s a big difference between characters with those two mindsets.;False;False;;;;1610316980;;False;{};git17xy;False;t3_kujurp;False;False;t1_gisi1jl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git17xy/;1610359953;112;True;False;anime;t5_2qh22;;0;[]; -[];;;DrPavel_Im_CIA;;;[];;;;text;t2_muhwd;False;False;[];;"And imagine how much better it could have been if it was handled by a competent director! - -https://youtu.be/Mx5olrmRTMA";False;True;;comment score below threshold;;1610316980;;1610317215.0;{};git17yo;False;t3_kujurp;False;True;t1_gisbj8o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git17yo/;1610359954;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;spacedude997;;;[];;;;text;t2_2vc9b398;False;True;[];;MY SOLDIERS UPVOTE;False;False;;;;1610316982;;False;{};git182w;False;t3_kujurp;False;False;t1_git0e1l;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git182w/;1610359955;22;True;False;anime;t5_2qh22;;0;[]; -[];;;baronlz;;;[];;;;text;t2_d28zi;False;False;[];;He's at war, he waited for the declaration of war to strike. He knew it was coming and didn't wait to be hurt to strike. So far he only acted in self defense. The casualties are all on Mahr there, there is no moral dilemma.;False;False;;;;1610316991;;False;{};git18uc;False;t3_kujurp;False;True;t1_gisurtq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git18uc/;1610359968;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;"Someone edit the videos of the riot with My War. - -EDIT: on second thought, probably better not, the jackasses might get ideas.";False;False;;;;1610316992;;False;{};git18wl;False;t3_kujurp;False;False;t1_gisbril;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git18wl/;1610359969;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Philarete;;MAL a-amq;[];;https://myanimelist.net/profile/WizardMcKillin;dark;text;t2_9pgqv;False;False;[];;I'm really curious how he will invoke it this season. Did they bring Historia with them? Or will they need to use Zeke somehow?;False;False;;;;1610316997;;False;{};git1999;False;t3_kujurp;False;True;t1_gisy78j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1999/;1610359974;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ihileath;;MAL;[];;http://myanimelist.net/animelist/Ihileath;dark;text;t2_rsvva;False;False;[];;I mean, he did choose his location to meet Reiner based on the fact that innocent civilians were right above. So it was targeted in that sense.;False;False;;;;1610317001;;False;{};git19mf;False;t3_kujurp;False;False;t1_giszn8q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git19mf/;1610359979;11;True;False;anime;t5_2qh22;;0;[]; -[];;;arara69;;;[];;;;text;t2_16j57v;False;False;[];;This was so much easier to understand than the manga version;False;False;;;;1610317004;;False;{};git19ux;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git19ux/;1610359983;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610317005;;False;{};git19vl;False;t3_kujurp;False;False;t1_gisvxzw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git19vl/;1610359983;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610317008;;False;{};git1a6m;False;t3_kujurp;False;True;t1_gisc0xk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1a6m/;1610359987;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Roliq;;;[];;;;text;t2_18vnwg;False;False;[];;You can see in the audience looking at Titan Eren that one person is getting crushed by debris, next episode is going to be brutal;False;False;;;;1610317016;;1610317279.0;{};git1asb;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1asb/;1610359995;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;Absolutely phenomenal from start to end. The execution of Eren's transformation was beyond outstanding.;False;False;;;;1610317024;;False;{};git1bdm;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1bdm/;1610360004;9;True;False;anime;t5_2qh22;;0;[]; -[];;;DeusDosTanques;;;[];;;;text;t2_2mq569t7;False;False;[];;End of part 1 of season 3;False;False;;;;1610317063;;False;{};git1eb5;False;t3_kujurp;False;False;t1_gisxvr6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1eb5/;1610360047;10;True;False;anime;t5_2qh22;;0;[]; -[];;;cyclops274;;;[];;;;text;t2_1n0717z;False;False;[];;Is the Warriors kid with the glasses going to be titan candidate?;False;False;;;;1610317063;;False;{};git1eba;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1eba/;1610360047;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IamDuyi;;;[];;;;text;t2_2iqmf4mn;False;False;[];;Oh it 100% is;False;False;;;;1610317066;;False;{};git1ekp;False;t3_kujurp;False;False;t1_gisku4q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1ekp/;1610360052;14;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;What's he supposed to do? Get eradicated with rest of his race?;False;False;;;;1610317067;;False;{};git1en0;False;t3_kujurp;False;False;t1_git141e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1en0/;1610360053;11;True;False;anime;t5_2qh22;;0;[]; -[];;;sharmarahulkohli;;;[];;;;text;t2_12gbee;False;False;[];;"Fullmetal Has done this - -But most leakers are saying,they will only adapt till 122 in this season,so we'll probably get a part 2 or a movie(s)";False;False;;;;1610317071;;False;{};git1eyb;False;t3_kujurp;False;False;t1_git11ky;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1eyb/;1610360058;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;I've somehow been able to avoid almost every spoiler for this season. I only went into it having some vague understanding of a war between Marley and the Eldians.;False;False;;;;1610317074;;False;{};git1f6u;False;t3_kujurp;False;False;t1_gisdxo0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1f6u/;1610360061;5;True;False;anime;t5_2qh22;;0;[]; -[];;;CakeBoss16;;;[];;;;text;t2_9kc33;False;False;[];;To be fair Willy started the fight. Seeing Eren in this state is really exciting as it seems like he has grown as a character. Might just pick up the manga.;False;False;;;;1610317083;;False;{};git1fwl;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1fwl/;1610360079;4;True;False;anime;t5_2qh22;;0;[]; -[];;;seninn;;MAL;[];;http://myanimelist.net/animelist/Senninn0;dark;text;t2_fw8p2;False;False;[];;WUH;False;False;;;;1610317084;;False;{};git1fxm;False;t3_kujurp;False;False;t1_gisb2jd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1fxm/;1610360079;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;3 chapters of 50 pages each;False;False;;;;1610317099;;False;{};git1h1n;False;t3_kujurp;False;False;t1_gisz1ks;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1h1n/;1610360095;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Eckowns;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Eckowns;light;text;t2_rrnm1;False;True;[];;Re:Zero: Fine then you and me straight bet, see who wins the karma wars.;False;False;;;;1610317099;;False;{};git1h4a;False;t3_kujurp;False;False;t1_gisapik;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1h4a/;1610360096;37;True;False;anime;t5_2qh22;;0;[]; -[];;;ulothrixboi;;;[];;;;text;t2_2wgr58zm;False;False;[];;bro why this got 90+ wholesome awards;False;False;;;;1610317112;;False;{};git1i2y;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1i2y/;1610360113;32;True;False;anime;t5_2qh22;;0;[]; -[];;;0blivionn;;;[];;;;text;t2_c5xm00t;False;False;[];;Absolutely insane, chills the whole time. They outdid themselves with how hype they were able to make this ep. The music and the voice acting were just amazing. It’s crazy how they managed to capture the same “holy shit” feeling of season 1 when titans were invading in a scene where the characters are just talking. One of the best anime in a long time for sure.;False;False;;;;1610317119;;False;{};git1im5;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1im5/;1610360121;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuyou_lilienthal_yu;;;[];;;;text;t2_74nij6hu;False;False;[];;"I remember in persona 4 a question being 'how long was the shortest war?' with the choices being - -- 40 days, - -- 40 hours, - -- 40 minutes. -With the correct answer being 40 minutes and then we have Eren over here smashing that 40 minutes into less than 4 seconds";False;False;;;;1610317147;;False;{};git1kpm;False;t3_kujurp;False;False;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1kpm/;1610360152;12;True;False;anime;t5_2qh22;;0;[]; -[];;;NiamhHA;;;[];;;;text;t2_4iywrflx;False;False;[];;I swear, that man is above us mortals.;False;False;;;;1610317171;;False;{};git1mha;False;t3_kujurp;False;False;t1_gisfgrb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1mha/;1610360177;4;True;False;anime;t5_2qh22;;0;[]; -[];;;A_Humpier_Rogue;;;[];;;;text;t2_o8xip;False;False;[];;Not only did a whole church get crushed, there were also several scenes talking about cleaning up and identifiyng the dead, as well as in general people being angry at the destruction that was caused in Stoess.;False;False;;;;1610317175;;False;{};git1mt4;False;t3_kujurp;False;False;t1_giskn0m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1mt4/;1610360182;4;True;False;anime;t5_2qh22;;0;[]; -[];;;KMark67;;;[];;;;text;t2_3es92ndg;False;False;[];;"For those who don't like Eren and Rieners talk: -It's not about how grand the talk is or how good Willy's speech is or how well the transformation was animated its about Eren's mindset. -Eren is not the edge lord he was back on the Island, he tells Reiner they are the same, he treats Falco with respect he, knows they are not monsters but people, he knows that if he goes through with this he will kill a lot a people civilians to but he has to because thats what needed for freedom. -Thats the true purpose of this scene.";False;False;;;;1610317190;;False;{};git1nwr;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1nwr/;1610360197;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MilkToastKing;;;[];;;;text;t2_13tvvu;False;False;[];;">Zeke has exhibited some degree of power similar to the Founding Titan due to his royal blood. He can remotely control the transformation of Eldian's that have been drugged previously. Also, his titans are able to move at night. - -I don't remember this ever being explicitly explained in anime. We knew was that he could turn Eldians into titans with his scream and control them to a limited degree, he's good at throwing things long distances, and he can talk in his titan form. While the Marlyean summary in episode 3 only lists his rock-throwing, we've never had confirmation regarding which of his other abilities are due to blood. Not ultimately a big deal because I guess you can say we should have inferred it, but I still thought it was relevant to bring up";False;False;;;;1610317192;;False;{};git1o0i;False;t3_kujurp;False;False;t1_gism93w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1o0i/;1610360200;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Makku-san;;;[];;;;text;t2_19h365gp;False;False;[];;"Another wonderfully directed episode from MAPPA. It seems like they’ll stick with 2D titans for the important shots and 3D for less significant ones, which is good. - -I do wonder, though, what will MAPPA do after the 16th episode. A second cour? A movie? No way are they going to be able to conclude the story in just 11 more episodes..";False;False;;;;1610317199;;False;{};git1okp;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1okp/;1610360208;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;It seriously is. No typical anime-isms that turn non anime watchers off, a plot that keep getting better and deeper, some of the most realistic grey shaded characters instead of cliche spouting archetypes, an excellent production quality to bring it all together.;False;False;;;;1610317208;;False;{};git1p7l;False;t3_kujurp;False;False;t1_gisdygj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1p7l/;1610360218;22;True;False;anime;t5_2qh22;;0;[]; -[];;;arara69;;;[];;;;text;t2_16j57v;False;False;[];;Ok somone remind me why eren is old af now? Isnt the timeskip only like 5 years? He should be early 20s mid 20s at most;False;False;;;;1610317214;;False;{};git1pov;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1pov/;1610360225;3;True;False;anime;t5_2qh22;;0;[]; -[];;;seninn;;MAL;[];;http://myanimelist.net/animelist/Senninn0;dark;text;t2_fw8p2;False;False;[];;CHADREN;False;False;;;;1610317214;;False;{};git1ppp;False;t3_kujurp;False;True;t1_giscf5k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1ppp/;1610360225;1;True;False;anime;t5_2qh22;;0;[]; -[];;;theythemwumbo;;;[];;;;text;t2_2rnvzove;False;False;[];;If they played you see big girl at the end I literally would have orgasmed.;False;False;;;;1610317223;;False;{};git1qb6;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1qb6/;1610360234;0;True;False;anime;t5_2qh22;;0;[]; -[];;;tiramisu169;;;[];;;;text;t2_6pvyyfwz;False;False;[];;You can argue about the morality of their actions, but I honestly don't think anyone is the bad guy. AoT is more nuanced than that, inside and outside the walls, they're all the same.;False;False;;;;1610317229;;False;{};git1qqu;False;t3_kujurp;False;False;t1_gisyhkk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1qqu/;1610360241;10;True;False;anime;t5_2qh22;;0;[]; -[];;;starf05;;;[];;;;text;t2_4hvvltp4;False;False;[];;You should. Reading and discussing the new chapters each month is amazing. Plus if you read the manga you will be able to avoid spoilers.;False;False;;;;1610317236;;False;{};git1rbv;False;t3_kujurp;False;False;t1_git1fwl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1rbv/;1610360249;7;True;False;anime;t5_2qh22;;0;[]; -[];;;linksis33;;;[];;;;text;t2_ouigu;False;False;[];;Hes 19 lol;False;False;;;;1610317241;;False;{};git1rml;False;t3_kujurp;False;False;t1_git1pov;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1rml/;1610360254;7;True;False;anime;t5_2qh22;;0;[]; -[];;;SoMuchHatred;;;[];;;;text;t2_o15bh;False;False;[];;I think it's safe to say that the Eldian Restoration ring that Grisha was apart of is now defunct after Zeke turned them in. At the very least everyone we knew who was part of that group has either been turned into a titan or been eaten by one. It's possible that there are other groups seeking Eldian Restoration that are currently operative, but it's hard to say if a group of that kind will play any role in the current conflict.;False;False;;;;1610317241;;False;{};git1rni;False;t3_kujurp;False;False;t1_git12kj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1rni/;1610360254;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TheOSSJ;;;[];;;;text;t2_16beob;False;False;[];;I think early 20s;False;False;;;;1610317243;;False;{};git1rsp;False;t3_kujurp;False;True;t1_git1pov;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1rsp/;1610360256;0;True;False;anime;t5_2qh22;;0;[]; -[];;;GmbDarien;;;[];;;;text;t2_cmulr;False;False;[];;Good episode overall, fish the ending had dif ost but it s what it is;False;False;;;;1610317243;;False;{};git1ru2;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1ru2/;1610360258;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cyclops274;;;[];;;;text;t2_1n0717z;False;False;[];;Cart Titan never saw Armin close. When Zeke first met with Eren , Armin is good as a charcoal. How did she notice him while wearing a hat and disguise.;False;False;;;;1610317247;;False;{};git1s4k;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1s4k/;1610360262;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ihileath;;MAL;[];;http://myanimelist.net/animelist/Ihileath;dark;text;t2_rsvva;False;False;[];;"Both set out to save the world. Both learn that people on both sides are the same. And bothmassacre civilians to continue trying to save the world. Even just in the act of transforming, Eren has knowingly killed a shit tonne of people - he himself said residential buildings were right above the basement. Even after learning how good some of the people there were. It's exactly the same as what Reiner did. How Reiner kept on pursuing his mission even after making friends as a young adult with members of the survey corps. - -Remember when Eren spoke about what Reiner did? That if it was for the sake of saving the world he had no choice other than to commit a massive atrocity? Eren doesn't even personally blame him for it anymore. And it's partly because he recognises Reiner was manipulated from a young age. But it's also partly because he's doing *the exact same thing that Reiner did right now.* Starting a war with a devastating attack in a civilian area. Reiner understood exactly what Eren meant when he said they were the same too - that's part of why he started having a panic attack *immediately* afterwards.";False;False;;;;1610317251;;1610317808.0;{};git1sf5;False;t3_kujurp;False;False;t1_gisrkmq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1sf5/;1610360265;7;True;False;anime;t5_2qh22;;0;[]; -[];;;majintrunks86;;;[];;;;text;t2_6l1kr9dk;False;False;[];;This whole entire episode was just beyond amazing! They nailed the unraveling tension throughout and the stellar soundtrack emphasized it even more. I loved the dual message of the speech and how Reiner comes full circle in front of Eren and Falco. This was definitely worth the wait!;False;False;;;;1610317252;;False;{};git1sh8;False;t3_kujurp;False;False;t1_gishd5x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1sh8/;1610360267;5;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;he’s 19, he just grew facial hair;False;False;;;;1610317253;;False;{};git1slw;False;t3_kujurp;False;False;t1_git1pov;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1slw/;1610360269;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610317255;;False;{};git1sqv;False;t3_kujurp;False;True;t1_gisapik;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1sqv/;1610360271;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;NiamhHA;;;[];;;;text;t2_4iywrflx;False;False;[];;"*2 minutes later - -Eren: you called?";False;False;;;;1610317257;;False;{};git1sx1;False;t3_kujurp;False;True;t1_gisac08;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1sx1/;1610360274;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rhaps0dy;;;[];;;;text;t2_5oo2u;False;True;[];;It's like someone you know commenting on a ragecomic you made 7 years ago.(not from personal experience or anything...);False;False;;;;1610317261;;False;{};git1t7z;False;t3_kujurp;False;False;t1_gisg5pr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1t7z/;1610360278;17;True;False;anime;t5_2qh22;;0;[]; -[];;;johnnyblack15;;;[];;;;text;t2_f68z2dk;False;False;[];;You prefer the first FMA to brotherhood? What makes the first series superior to Brotherhood?;False;False;;;;1610317264;;False;{};git1tg3;False;t3_kujurp;False;False;t1_giswvqa;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1tg3/;1610360282;13;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610317274;;False;{};git1u71;False;t3_kujurp;False;True;t1_gism93w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1u71/;1610360292;1;True;False;anime;t5_2qh22;;0;[]; -[];;;creeper1117;;;[];;;;text;t2_3fcojo;False;False;[];;That he was ready to transform;False;False;;;;1610317275;;False;{};git1uag;False;t3_kujurp;False;False;t1_giswgow;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1uag/;1610360293;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;"The last manga chapter is going to be release around the same time as the last episode of the season (I think it's either the same week or 1 week after the season ends). - -S4 started around chapter 90 of the manga and it will end around chapter 122, and the manga will end at chapter 139. With seasom 4 pacing it's enough for 8-9 more episodes, wich means they could, techincally, announce that they are going to extend the seasom for 8 or 9 more episodes to conclude the series, but I doubt it. - -The anime will most likely end with a 10 episode final season part 2 or 2 movies.";False;False;;;;1610317279;;False;{};git1ukn;False;t3_kujurp;False;False;t1_git11ky;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1ukn/;1610360297;5;True;False;anime;t5_2qh22;;0;[]; -[];;;cantaneer;;;[];;;;text;t2_1ib8wxpm;False;False;[];;eren just snapped and broke the internet lmao;False;False;;;;1610317285;;False;{};git1v2h;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1v2h/;1610360305;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Xavier93;;;[];;;;text;t2_yg6ey;False;False;[];;[https://www.youtube.com/watch?v=vPoQ8zHXs9s](https://www.youtube.com/watch?v=vPoQ8zHXs9s);False;False;;;;1610317288;;False;{};git1v9j;False;t3_kujurp;False;False;t1_gisycy8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1v9j/;1610360308;4;True;False;anime;t5_2qh22;;0;[]; -[];;;CloudMountainJuror;;;[];;;;text;t2_hbfr1;False;False;[];;"I'm just so tired of following multi-season anime series only for the quality to fluctuate so heavily between seasons. Mob Psycho 100 season 2 was animated gorgeously but its pacing was ludicrously fast, My Hero Academia's season 4's first half looked cheap because they were working on the second MHA movie at the same time, Titan's animation quality has dropped overall since season 1 (even in season 3 I noticed cracks starting to show)... All three of these were shows I really liked/loved and now I feel bitter about to varying extents. - -It's making me start to question if anime is even worth feeling hype over anymore, when the level of quality control seems to be so inconsistent? I know the work conditions in the anime industry are apparently not very good, which would explain this recurring issue. But whether there's a reason or not, the pattern is noticeable and it's getting to be pretty discouraging.";False;False;;;;1610317292;;False;{};git1vjz;False;t3_kujurp;False;False;t1_git0ihq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1vjz/;1610360313;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;As expected of... uh, Reiner.;False;False;;;;1610317295;;False;{};git1vrp;False;t3_kujurp;False;False;t1_gisx424;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1vrp/;1610360316;18;True;False;anime;t5_2qh22;;0;[]; -[];;;SungBlue;;;[];;;;text;t2_4t5s3f;False;False;[];;"I mean, it's not just ""technically"" defensive. I don't think there's any reason to believe that Eren would have attacked if Tybur had, in his speech, declared a desire for peace with Paradis.";False;False;;;;1610317297;;False;{};git1w03;False;t3_kujurp;False;False;t1_git0d2o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1w03/;1610360320;46;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;theyre ending at chapter 122 as the rumours have said;False;False;;;;1610317299;;False;{};git1w4m;False;t3_kujurp;False;False;t1_git1okp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1w4m/;1610360322;9;True;False;anime;t5_2qh22;;0;[]; -[];;;JaaReDz;;;[];;;;text;t2_zmb1s;False;False;[];;People complaining about the ost is making my brain hurt. Jesus Christ go do something productive other than bitching about an ost;False;False;;;;1610317300;;1610317574.0;{};git1w7t;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1w7t/;1610360323;22;True;False;anime;t5_2qh22;;0;[]; -[];;;SoulTea;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/SoulTea;light;text;t2_6by2x;False;False;[];;It's argued a lot, I do feel like it's more seinen but at the core of it I think it's still considered a shounen as it's serialized in Kodansha's Bessatsu Shōnen Magazine (bold and italics is from copy and paste from Wikipedia) so I guess that settles it.;False;False;;;;1610317307;;False;{};git1wq9;False;t3_kujurp;False;True;t1_gisz1iv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1wq9/;1610360331;3;True;False;anime;t5_2qh22;;0;[]; -[];;;25sigma;;;[];;;;text;t2_6lqatok5;False;False;[];;Eren will probably be extremely morally questionable throughout this season. Very warranted!;False;False;;;;1610317312;;False;{};git1x3n;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1x3n/;1610360336;10;True;False;anime;t5_2qh22;;0;[]; -[];;;cantaneer;;;[];;;;text;t2_1ib8wxpm;False;False;[];;titan shifters grow faster;False;False;;;;1610317328;;False;{};git1yar;False;t3_kujurp;False;True;t1_git1pov;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1yar/;1610360353;0;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;everyone with free awards gilded;False;False;;;;1610317333;;False;{};git1yqz;False;t3_kujurp;False;False;t1_git1i2y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1yqz/;1610360360;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Frostbite2806;;;[];;;;text;t2_13evjt;False;False;[];;I’m certain the Restorationists group also ceased to exist when Grisha - its last member - died;False;False;;;;1610317337;;False;{};git1yzy;False;t3_kujurp;False;False;t1_git12kj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1yzy/;1610360363;4;True;False;anime;t5_2qh22;;0;[]; -[];;;IlonggoProgrammer;;;[];;;;text;t2_1303ba2;False;False;[];;Reiner probably transformed into the armored titan and shielded him though;False;False;;;;1610317337;;False;{};git1z1p;False;t3_kujurp;False;True;t1_gisu0qc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1z1p/;1610360365;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TheOSSJ;;;[];;;;text;t2_16beob;False;False;[];;Lmao what?;False;False;;;;1610317340;;False;{};git1za9;False;t3_kujurp;False;False;t1_git0u1r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1za9/;1610360368;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;I love it. Best shounen protag by miles. Even better with him understanding Reiner and Marley.;False;False;;;;1610317342;;False;{};git1ze1;False;t3_kujurp;False;False;t1_gisq9q0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git1ze1/;1610360371;28;True;False;anime;t5_2qh22;;0;[]; -[];;;Middle_November;;;[];;;;text;t2_6b09rvm5;False;False;[];;Willy be talking mad shit for someone in the Attack titan's range;False;False;;;;1610317358;;False;{};git20lu;False;t3_kujurp;False;False;t1_giscr8m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git20lu/;1610360389;32;True;False;anime;t5_2qh22;;0;[]; -[];;;macedonianmoper;;;[];;;;text;t2_71boinia;False;False;[];; Yeah definitely, but it's really different from like in season 1 where he knew Annie was the titan and nevertheless hesitated because he wanted to believe in her.;False;False;;;;1610317360;;False;{};git20rw;False;t3_kujurp;False;False;t1_git17xy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git20rw/;1610360391;36;True;False;anime;t5_2qh22;;0;[]; -[];;;NiamhHA;;;[];;;;text;t2_4iywrflx;False;False;[];;This is too perfect.;False;False;;;;1610317362;;False;{};git20w5;False;t3_kujurp;False;True;t1_gisa8cr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git20w5/;1610360392;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fireblast654;;;[];;;;text;t2_ugwq2;False;False;[];;AS EXPECTED OF PIECK;False;False;;;;1610317363;;False;{};git20y8;False;t3_kujurp;False;False;t1_gisx424;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git20y8/;1610360394;41;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;">For those who don't like Eren and Rieners talk: - -Literally no one is saying that, it was the best part of the epsiode lol";False;False;;;;1610317370;;False;{};git21i1;False;t3_kujurp;False;False;t1_git1nwr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git21i1/;1610360402;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610317378;;False;{};git222d;False;t3_kujurp;False;True;t1_gislyf5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git222d/;1610360410;2;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;Has it ever been confirmed that Grisha is the last member? I mean, he even inherited the attack titan from someone that we thought was loyal to Marley.;False;False;;;;1610317402;;False;{};git23t4;False;t3_kujurp;False;True;t1_git1yzy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git23t4/;1610360437;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Radix3D;;;[];;;;text;t2_4pafckex;False;False;[];;Yes;False;False;;;;1610317404;;False;{};git23z1;False;t3_kujurp;False;True;t1_gisxqma;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git23z1/;1610360439;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Tacitus_;;;[];;;;text;t2_4v1er;False;False;[];;He's the attack titan, not the peace titan.;False;False;;;;1610317406;;False;{};git2435;False;t3_kujurp;False;False;t1_gisore3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2435/;1610360440;26;True;False;anime;t5_2qh22;;0;[]; -[];;;melindypants;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_bb5qq9o;False;False;[];;">I was shaking by last scene - -HELL YES!!! The built up tension was insane! I screamed when he transformed with 0 fucks.";False;False;;;;1610317414;;False;{};git24qi;False;t3_kujurp;False;False;t1_gisc2jv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git24qi/;1610360451;7;True;False;anime;t5_2qh22;;0;[]; -[];;;FrizFroz;;;[];;;;text;t2_razrj;False;False;[];;"Eren extending his arm to help Reiner up the wall in S2E6. - -Reiner extending his (titan) arm to catch Eren in the ending of S2E6. - -Reiner extending his arm to help Eren up in his flashback in S4E3. - -Eren extending his arm to help Reiner up in S4E5. - -Enemies and compatriots. Two sides of the same coin. - -*”I am the same as you. I keep moving forward.”*";False;False;;;;1610317422;;False;{};git25at;False;t3_kujurp;False;False;t1_gislyf5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git25at/;1610360458;41;True;False;anime;t5_2qh22;;0;[]; -[];;;Jagacin;;;[];;;;text;t2_13054n;False;False;[];;Eren Yeager Overdoses on Ketamine and Dies any% WR;False;False;;;;1610317425;;False;{};git25hw;False;t3_kujurp;False;False;t1_gisax64;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git25hw/;1610360462;5;True;False;anime;t5_2qh22;;0;[]; -[];;;FrizFroz;;;[];;;;text;t2_razrj;False;False;[];;"Eren extending his arm to help Reiner up the wall in S2E6. - -Reiner extending his (titan) arm to catch Eren in the ending of S2E6. - -Reiner extending his arm to help Eren up in his flashback in S4E3. - -Eren extending his arm to help Reiner up in S4E5. - -Enemies and compatriots. Two sides of the same coin. - -*”I am the same as you. I keep moving forward.”*";False;False;;;;1610317437;;False;{};git26eo;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git26eo/;1610360475;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;I feel so bad for him yet definitely satisfied whenever we hear about Paradis doing something that stuffed up the Marleyan's plans, like only one Warrior returning or their scouting ships disappearing.;False;False;;;;1610317440;;False;{};git26mf;False;t3_kujurp;False;True;t1_gisd4wn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git26mf/;1610360478;1;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;It's the hobo aesthetic.;False;False;;;;1610317443;;False;{};git26vy;False;t3_kujurp;False;False;t1_git1pov;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git26vy/;1610360482;6;True;False;anime;t5_2qh22;;0;[]; -[];;;DontKnowHowToEnglish;;;[];;;;text;t2_v960p;False;False;[];;I would've preferred Eren attack to be more quick rather than him screaming for 5 seconds but that's just nitpicking, I think everything was excellently conveyed;False;False;;;;1610317447;;False;{};git276h;False;t3_kujurp;False;True;t1_gisanh2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git276h/;1610360486;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IAmSona;;;[];;;;text;t2_11x652;False;False;[];;I think in terms of most karma, Re Zero is going to get maybe 2 or 3 wins over AoT, which is actually in itself a victory just from the sheer quality that both series are.;False;False;;;;1610317448;;False;{};git27al;False;t3_kujurp;False;True;t1_gisxcbx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git27al/;1610360488;3;True;False;anime;t5_2qh22;;0;[]; -[];;;murfsters;;;[];;;;text;t2_60isjpko;False;False;[];;As cool as this episode was it made me really sad because I can’t tell if Eren is okay doing all of this. At least with revenge they have a drive, but I think this is close to being backed into a corner, forced to fight.;False;False;;;;1610317453;;False;{};git27nn;False;t3_kujurp;False;False;t1_git20rw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git27nn/;1610360493;34;True;False;anime;t5_2qh22;;0;[]; -[];;;aniviasrevenge;;;[];;;;text;t2_64n5l;False;False;[];;"That's a fair point and it did seem like Eren hesitated for a moment when Willie said he wanted to live because he was born into this world. - -On the other hand, he's been coordinating with allies for some time now to set preparations for an attack on Marleyan soil via Falco's letters. Cart and Jaw Titans are ambushed and incapacitated before Willie declares war, which is in itself arguably an act of war. - -Doesn't seem like Eren and his allies are on the fence about what's going to happen the night that Willie gives the speech...";False;False;;;;1610317458;;1610319273.0;{};git280t;False;t3_kujurp;False;False;t1_git1w03;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git280t/;1610360498;25;True;False;anime;t5_2qh22;;0;[]; -[];;;OneirionKnight;;;[];;;;text;t2_1kghpz3x;False;False;[];;Is it really Armin?;False;False;;;;1610317463;;False;{};git28ef;False;t3_kujurp;False;False;t1_git1s4k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git28ef/;1610360504;3;True;False;anime;t5_2qh22;;0;[]; -[];;;John9tv;;;[];;;;text;t2_130n18;False;False;[];;bro what will live be without attack on titan.;False;False;;;;1610317464;;False;{};git28h6;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git28h6/;1610360504;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lemon1412;;;[];;;;text;t2_3m3p3;False;True;[];;">I think the point of this series is that there are no heroes in war. - -Except Helos! - -oh wait";False;False;;;;1610317484;;False;{};git29v8;False;t3_kujurp;False;False;t1_gisxm0d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git29v8/;1610360526;53;True;False;anime;t5_2qh22;;0;[]; -[];;;XxMemeStar69xX;;;[];;;;text;t2_2wkyq0u;False;False;[];;"It’s not really a terrorist attack; he attacked after the declaration of war.";False;False;;;;1610317488;;False;{};git2a5w;False;t3_kujurp;False;True;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2a5w/;1610360530;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"All the time lol - -They reference things that happened hundreds of episodes earlier and suddenly you get answers to something you never thought was a major deal.";False;False;;;;1610317488;;False;{};git2a8d;False;t3_kujurp;False;False;t1_giszoxo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2a8d/;1610360531;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Inori-Yu;;;[];;;;text;t2_165x6q;False;False;[];;Who knew an episode that was nothing but buildup could be so tense? I need the next episode right now!;False;False;;;;1610317492;;False;{};git2ah3;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2ah3/;1610360535;6;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;Perfectly fitting for an episode where old friends reunite to watch a play.;False;False;;;;1610317493;;False;{};git2ajo;False;t3_kujurp;False;False;t1_git1i2y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2ajo/;1610360536;50;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;I'm not sure if he is or not. His whole family could be it;False;False;;;;1610317493;;1610318127.0;{};git2alk;False;t3_kujurp;False;False;t1_gisftec;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2alk/;1610360537;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Allaban;;;[];;;;text;t2_bku27;False;False;[];;"I thought the king ideology was the memories passed, and it seems to me Eren has acquired those memories, that would explain why he is a bit down now like previous kings, but even so, he stills wants to ""susume!""";False;False;;;;1610317496;;False;{};git2as0;False;t3_kujurp;False;True;t1_git0ysh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2as0/;1610360539;1;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;He will look younger once he shaves, you will be surprise how a beard can age someone appearance drastically.;False;False;;;;1610317497;;False;{};git2atc;False;t3_kujurp;False;True;t1_git1pov;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2atc/;1610360540;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptainPikmin;;;[];;;;text;t2_10w5w9;False;False;[];;That new rendition of XL-TT gave me chills. What a perfect choice for Willy Tybur's speech.;False;False;;;;1610317503;;False;{};git2bbi;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2bbi/;1610360547;8;True;False;anime;t5_2qh22;;0;[]; -[];;;gridemann;;;[];;;;text;t2_dhsy2;False;False;[];;Damn, I was looking so hard for it and still missed it. But they went out of their way, PRAISE MAPPA;False;False;;;;1610317513;;False;{};git2bzz;False;t3_kujurp;False;False;t1_gisrf8w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2bzz/;1610360556;20;True;False;anime;t5_2qh22;;0;[]; -[];;;KMark67;;;[];;;;text;t2_3es92ndg;False;False;[];;If you go down the comment section you will notive that there are a lot a people who dislike this scene because Eren and Reiner's talk didn't live up to the manga/hype.;False;False;;;;1610317528;;False;{};git2d5t;False;t3_kujurp;False;False;t1_git21i1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2d5t/;1610360574;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;Heck. I didn't take this into account, but yeah, you're right. This series has become so morally grey (a good thing).;False;False;;;;1610317543;;False;{};git2e9y;False;t3_kujurp;False;False;t1_gisu1vx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2e9y/;1610360590;22;True;False;anime;t5_2qh22;;0;[]; -[];;;saga999;;;[];;;;text;t2_9ppe9;False;False;[];;Be careful what you wish for.;False;False;;;;1610317544;;False;{};git2efc;False;t3_kujurp;False;False;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2efc/;1610360592;1;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;the one who had the attack titan was the leader of the restorationists, eren kruger, and now he’s gone theres no person to lead them all;False;False;;;;1610317545;;False;{};git2egu;False;t3_kujurp;False;True;t1_git23t4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2egu/;1610360593;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PortoGuy18;;;[];;;;text;t2_2fidx1m;False;False;[];;"There was a post in the titanfolk reddit, where someone wanted to make a petiton or something like that in order for MAPPA to remade the episode with a different OST at end scene. - -The entitlement of these people...";False;False;;;;1610317550;;False;{};git2ev1;False;t3_kujurp;False;False;t1_git1w7t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2ev1/;1610360599;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Xavier93;;;[];;;;text;t2_yg6ey;False;False;[];;The people in the audience were just cheerfuly celebrating a declaration of war, they've got it coming.;False;False;;;;1610317554;;False;{};git2f7p;False;t3_kujurp;False;False;t1_gisldmu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2f7p/;1610360604;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;He also knows his time is limited. Revenge like that wouldn't be worth the time;False;False;;;;1610317562;;False;{};git2fuv;False;t3_kujurp;False;False;t1_gisrcy6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2fuv/;1610360612;48;True;False;anime;t5_2qh22;;0;[]; -[];;;TeddyNL;;;[];;;;text;t2_ei6u6;False;False;[];;Attack on Titan just keeps moving forward.;False;False;;;;1610317564;;False;{};git2fzj;False;t3_kujurp;False;True;t1_git0hmw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2fzj/;1610360614;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;[Insert fresh Pieck meme format](https://i.imgur.com/mlkLWnv.png);False;False;;;;1610317568;;False;{};git2gcl;False;t3_kujurp;False;False;t1_gist6l3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2gcl/;1610360620;51;True;False;anime;t5_2qh22;;0;[]; -[];;;KarlKrabit;;;[];;;;text;t2_10zup4;False;False;[];;Great voice acting all around, i enjoyed the more somber music choices as opposed to epic tracks even tho ive read alot of complaints already. Our protagonist that has been perceived as the 'good guy' so far just killed countless civilians, also Reiner is super depressed and Eren wouldnt even give him the anger and judgement he wants sooo badly, perfect OST choices i think.;False;False;;;;1610317573;;False;{};git2gqm;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2gqm/;1610360625;7;True;False;anime;t5_2qh22;;0;[]; -[];;;mrtwitles;;;[];;;;text;t2_6m2vk;False;False;[];;"Awesome episode but if the soldiers figured something might happen why did they let their titans walk away so easily? Do they think they would be useless anyway since if they transformed everyone would die? -Also cool way of thinking, if you had the power to stop a full war but had to kill 10,000 people would you take it? I mean world war 1-2 had about 90 million deaths of people just killing each other for the sake of war.";False;False;;;;1610317576;;False;{};git2gzc;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2gzc/;1610360629;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AStartingPoint;;;[];;;;text;t2_74e7pgty;False;False;[];;RIP Willy Tybur.;False;False;;;;1610317582;;False;{};git2heq;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2heq/;1610360636;5;True;False;anime;t5_2qh22;;0;[]; -[];;;kingwhocares;;;[];;;;text;t2_xrwt8;False;False;[];;It was also right behind the commander of the enemy forces, multiple other military commanders and the Warhammer titan. It's rather one side intentionally choosing a civilian area for military use.;False;False;;;;1610317593;;False;{};git2ibs;False;t3_kujurp;False;False;t1_git19mf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2ibs/;1610360649;14;True;False;anime;t5_2qh22;;0;[]; -[];;;thorppeed;;;[];;;;text;t2_nmgx5pm;False;True;[];;Reiner was 12 so that's middle school age;False;False;;;;1610317594;;False;{};git2ifi;False;t3_kujurp;False;False;t1_gisxto9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2ifi/;1610360651;19;True;False;anime;t5_2qh22;;0;[]; -[];;;JaaReDz;;;[];;;;text;t2_zmb1s;False;False;[];;It’s disgusting. The scene isn’t even bad;False;False;;;;1610317603;;False;{};git2j34;False;t3_kujurp;False;False;t1_git2ev1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2j34/;1610360660;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;The ones who should be punished, at least first, are the Marleyans who oppressed the Eldians living among them and who used the titans to conquer other countries.;False;False;;;;1610317619;;False;{};git2kbd;False;t3_kujurp;False;False;t1_giso3my;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2kbd/;1610360679;18;True;False;anime;t5_2qh22;;0;[]; -[];;;SmartRaccoon3643;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;echidna cultist;dark;text;t2_7jtp3l74;False;False;[];;THANK YOU!;False;False;;;;1610317627;;False;{};git2kzn;False;t3_kujurp;False;False;t1_gism93w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2kzn/;1610360689;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dadscope;;;[];;;;text;t2_173u0i;False;False;[];;"I feel like Eren played directly into Tyburs plan here. So I'm curious, as a non-manga reader, how this is going to go. - -Didn't they refer to the ""Set"" in the previous episodes and there still being ""rats"" to take care of?";False;False;;;;1610317664;;False;{};git2nr5;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2nr5/;1610360729;7;True;False;anime;t5_2qh22;;0;[]; -[];;;arara69;;;[];;;;text;t2_16j57v;False;False;[];;Is eren Jaeger named that because of eren kruger?;False;False;;;;1610317672;;False;{};git2ofo;False;t3_kujurp;False;False;t1_gism93w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2ofo/;1610360739;10;True;False;anime;t5_2qh22;;0;[]; -[];;;saga999;;;[];;;;text;t2_9ppe9;False;False;[];;Nothing personal man. We all got to do what we got to do.;False;False;;;;1610317680;;False;{};git2p1f;False;t3_kujurp;False;True;t1_giscr3k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2p1f/;1610360749;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;"[Warhammer titans, form up](https://th.bing.com/th/id/OIP.wHQz5O4Py7rRd2jDtUPr3gHaFj?pid=Api&rs=1)";False;False;;;;1610317684;;False;{};git2pdq;False;t3_kujurp;False;False;t1_git2alk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2pdq/;1610360754;11;True;False;anime;t5_2qh22;;0;[]; -[];;;PortoGuy18;;;[];;;;text;t2_2fidx1m;False;False;[];;Nah. The King's ideology has no effect over Eren, only over other members of the royal family that possess the Founding Titan. So, Eren can susume all he wants.;False;False;;;;1610317685;;False;{};git2pep;False;t3_kujurp;False;False;t1_git2as0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2pep/;1610360754;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Xavier93;;;[];;;;text;t2_yg6ey;False;False;[];;The bystander. Such a great episode.;False;False;;;;1610317687;;False;{};git2pjr;False;t3_kujurp;False;True;t1_gisioq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2pjr/;1610360755;3;True;False;anime;t5_2qh22;;0;[]; -[];;;uncen5ored;;;[];;;;text;t2_800mwmv;False;False;[];;"Eren has one of my favorite developments of all time. Yes, he was somewhat annoying initially but his emotions were valid. But to see him go from that, to a mental breakdown, to calling a Titan a fellow patriot, to his dark ocean monologue, to this....where he even told Reiner to “forget” his death wish he had for Reiner, and acknowledging that the world isn’t as black & white as he initially thought...cmon, it’s just incredible writing.";False;False;;;;1610317688;;False;{};git2pof;False;t3_kujurp;False;False;t1_git1fwl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2pof/;1610360757;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Tacitus_;;;[];;;;text;t2_4v1er;False;False;[];;"The term you're looking for is ""villain protagonist"".";False;False;;;;1610317692;;False;{};git2pxr;False;t3_kujurp;False;False;t1_gistz0c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2pxr/;1610360761;5;True;False;anime;t5_2qh22;;0;[]; -[];;;SweetestPumpkin;;;[];;;;text;t2_15rr31;False;False;[];;Is this subreddit shadow banned from all?;False;False;;;;1610317710;;False;{};git2r9e;False;t3_kujurp;False;True;t1_git0u1r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2r9e/;1610360782;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bluedragon711;;;[];;;;text;t2_371pggvo;False;False;[];;This will age like milk bro;False;False;;;;1610317710;;False;{};git2rat;False;t3_kujurp;False;False;t1_giskjel;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2rat/;1610360782;9;True;False;anime;t5_2qh22;;0;[]; -[];;;CommandoDude;;;[];;;;text;t2_9jqno;False;False;[];;Whoops. Did I just accidentally a war?;False;False;;;;1610317710;;False;{};git2rbc;False;t3_kujurp;False;True;t1_gisboc1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2rbc/;1610360782;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JimmyBoombox;;;[];;;;text;t2_919f4;False;False;[];;"> Dude just straight up made a terrorist attack now, killed the worlds mosts important figure, blew up a bunch of people's houses, and will probably do much worse next episode - -Yeah, it can be technically called a terrorist attack because civilians were there but the attack was strategic in nature since all the top military brass and their titans were there. Plus declaration of war was made beforehand.";False;False;;;;1610317717;;False;{};git2rt9;False;t3_kujurp;False;True;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2rt9/;1610360790;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;He made a good impression with his little screen time. A lot to take from him based on his appearance, manner, interactions he gives and others give him, and then most of all his speech.;False;False;;;;1610317739;;False;{};git2tet;False;t3_kujurp;False;False;t1_gislr34;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2tet/;1610360816;14;True;False;anime;t5_2qh22;;0;[]; -[];;;PortoGuy18;;;[];;;;text;t2_2fidx1m;False;False;[];;The scene is not bad, but it's not what they want, so they think that they own the series and therefore it should be remade until it has satisfied all of their needs.;False;False;;;;1610317744;;False;{};git2ts2;False;t3_kujurp;False;False;t1_git2j34;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2ts2/;1610360821;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Hussor;;MAL;[];;http://myanimelist.net/animelist/Hussor;dark;text;t2_j55xp;False;False;[];;"Both wanted to kill all the titans too ;)";False;False;;;;1610317746;;False;{};git2tyj;False;t3_kujurp;False;False;t1_giswl49;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2tyj/;1610360824;87;True;False;anime;t5_2qh22;;0;[]; -[];;;antiracist_69;;;[];;;;text;t2_40rc1skg;False;False;[];;So... what the actual hell just happened? and why is my pp harder than when Reiner and Berthold showed their true colours or when Eren fought Annie in titan form? In fact, why is Attack on Titan so good? I don't want to sound fanboy, but this episode deserves it. And something tells me that next episode is gonna be even wilder;False;False;;;;1610317748;;False;{};git2u28;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2u28/;1610360825;31;True;False;anime;t5_2qh22;;0;[]; -[];;;seninn;;MAL;[];;http://myanimelist.net/animelist/Senninn0;dark;text;t2_fw8p2;False;False;[];;No one is ready fot ep 16.;False;False;;;;1610317755;;False;{};git2uma;False;t3_kujurp;False;True;t1_gisajvw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2uma/;1610360834;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Frostbite2806;;;[];;;;text;t2_13evjt;False;False;[];;IIRC the sub voluntarily went into hiding from r/all;False;False;;;;1610317760;;False;{};git2v13;False;t3_kujurp;False;False;t1_git2r9e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2v13/;1610360840;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;He definitely does or it seems that way at least;False;False;;;;1610317764;;False;{};git2vcr;False;t3_kujurp;False;False;t1_gisptwp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2vcr/;1610360845;8;True;False;anime;t5_2qh22;;0;[]; -[];;;gridemann;;;[];;;;text;t2_dhsy2;False;False;[];;Jokes aside, the mangled Willy (nvm LUL) at the end of the episode wouldve probably been censored under WIT.;False;False;;;;1610317768;;False;{};git2vqs;False;t3_kujurp;False;False;t1_gisq5v8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2vqs/;1610360849;6;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptainPikmin;;;[];;;;text;t2_10w5w9;False;False;[];;We've passed 10k upvotes!!! Keep moving forward until all of the karma is destroyed!;False;False;;;;1610317778;;False;{};git2wid;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2wid/;1610360861;18;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;yea we're definitely hitting 20k a the minimum;False;False;;;;1610317789;;False;{};git2xdf;False;t3_kujurp;False;True;t1_giszgik;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2xdf/;1610360875;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jung2019;;;[];;;;text;t2_171etn;False;False;[];;Absolutely based;False;False;;;;1610317791;;False;{};git2xhu;False;t3_kujurp;False;True;t1_giszk0b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2xhu/;1610360877;3;True;False;anime;t5_2qh22;;0;[]; -[];;;generalofhel;;;[];;;;text;t2_2lr01no7;False;False;[];;It was everything i wanted. The music, the atmosphere, Falco's confusion, Reiner trying to shield Falco, the final shot straight from the manga, EVERYTHING;False;False;;;;1610317814;;False;{};git2zan;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2zan/;1610360904;6;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;bruh all i have to say is YOU ARE NOT PREPARED. i hope you don't get spoiled because this story is a masterpiece.;False;False;;;;1610317823;;False;{};git2zyb;False;t3_kujurp;False;False;t1_git2u28;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git2zyb/;1610360913;8;True;False;anime;t5_2qh22;;0;[]; -[];;;SoMuchHatred;;;[];;;;text;t2_o15bh;False;False;[];;Technically not. Grisha's specific ring was assisted by the Owl/Kruger who is certainly now dead. It's possible that Kruger was also associated with other groups, though there's not necessarily much prove of this. That said, Kruger did mention that a doctor helped him fake his blood tests so he could pass as a Marleyean, which means Kruger likely had at least one other unseen associate. So it is theoretically possible that the ring was wider than we realized and could even be currently active.;False;False;;;;1610317828;;False;{};git30cs;False;t3_kujurp;False;True;t1_git23t4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git30cs/;1610360919;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HighSchoolThrowAw4y;;;[];;;;text;t2_g66tg;False;False;[];;One thing you should keep in mind is that this is all going to go down in the Eldian ghetto of a Marleyan city. So apart from the Marleyan officials and army and international diplomats the majority of casualties will be Eldians. They might be 'brainwashed' by 100+ years of propaganda, discrimination and pogroms but they're still Eldian not Marleyan.;False;False;;;;1610317829;;False;{};git30en;False;t3_kujurp;False;True;t1_git1480;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git30en/;1610360920;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;Nah that was early Game Of Thrones too. Then it went downhill;False;False;;;;1610317835;;False;{};git30uz;False;t3_kujurp;False;False;t1_gisehmo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git30uz/;1610360925;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;I heard vague stuff about Falco being a popular new character. I'm certain I now understand why. He stands out from the other kids and even from Gabi.;False;False;;;;1610317849;;False;{};git320l;False;t3_kujurp;False;False;t1_gise6z3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git320l/;1610360943;8;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;Magath himself dispatched the soldiers to call for Pieck and Galliard. He didn't know that those same soldiers were sketchy.;False;False;;;;1610317860;;1610318178.0;{};git32vf;False;t3_kujurp;False;False;t1_git2gzc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git32vf/;1610360955;7;True;False;anime;t5_2qh22;;0;[]; -[];;;gmarvin;;;[];;;;text;t2_7p5g7;False;False;[];;"Way too late for anyone to answer this, but I have some questions. - -That shot with all of the Colossal Titans lined up... was that real, or just illustrating Willy's speech? Did the Paradisians actually take down the walls and mobilize them for war using Eren's Founding Titan power? - -Also, if the Colossal Titan isn't unique and there are in fact tens of millions of them inside the walls, what does that mean for the one inherited by Berthold and Armin?";False;False;;;;1610317871;;False;{};git33q8;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git33q8/;1610360967;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ENKlDU;;;[];;;;text;t2_4scvchzo;False;False;[];;"Episode was great until the final scene - -As I saw someone say it was kinda like a wet fart lol, also willy speech i wish it was more emotional but I’ll take it - -Edit: reddit amirite";False;True;;comment score below threshold;;1610317873;;1610318321.0;{};git33vw;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git33vw/;1610360969;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;Hussor;;MAL;[];;http://myanimelist.net/animelist/Hussor;dark;text;t2_j55xp;False;False;[];;Isayama literally keeps a picture of Reiner's suicide attempt on his desk, and he says Reiner is his favourite character.;False;False;;;;1610317878;;False;{};git349s;False;t3_kujurp;False;False;t1_gisrgm7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git349s/;1610360976;182;True;False;anime;t5_2qh22;;0;[]; -[];;;Butch3RR;;;[];;;;text;t2_21gmdnq3;False;False;[];;# HOLY FUCKING SHIT;False;False;;;;1610317879;;False;{};git34cr;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git34cr/;1610360976;10;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;yea, genocide isn't wrong.;False;False;;;;1610317879;;False;{};git34eb;False;t3_kujurp;False;True;t1_gisznvz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git34eb/;1610360977;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;seninn;;MAL;[];;http://myanimelist.net/animelist/Senninn0;dark;text;t2_fw8p2;False;False;[];;These final chapters have been the peak of the series imo.;False;False;;;;1610317881;;False;{};git34jt;False;t3_kujurp;False;True;t1_gisdnha;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git34jt/;1610360979;2;True;False;anime;t5_2qh22;;0;[]; -[];;;toutoune134;;;[];;;;text;t2_fokbo;False;False;[];;This thread is now tracking above episode 60 in term of karma!;False;False;;;;1610317883;;False;{};git34po;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git34po/;1610360981;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Lawvamat;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Lavamat;light;text;t2_pbxhw;False;False;[];;I was in tears, it was so good;False;False;;;;1610317886;;False;{};git34xw;False;t3_kujurp;False;True;t1_gisb5i0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git34xw/;1610360985;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SweetestPumpkin;;;[];;;;text;t2_15rr31;False;False;[];;If you think mha, aot and mob psycho of all animes suffer from bad animation later in the series then you are spoiled.;False;False;;;;1610317894;;False;{};git35lk;False;t3_kujurp;False;False;t1_git1vjz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git35lk/;1610360996;2;True;False;anime;t5_2qh22;;0;[]; -[];;;zool714;;;[];;;;text;t2_11y457;False;False;[];;Yeah, for all we know, Eren may have created another “Eren” amongst the rubbles that he created.;False;False;;;;1610317901;;False;{};git3649;False;t3_kujurp;False;False;t1_gisipgr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3649/;1610361003;8;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Age2469;;;[];;;;text;t2_96qmf3qs;False;False;[];;"> Damn Eldian scum. - -Willy is also Eldian tho!";False;False;;;;1610317903;;False;{};git36ag;False;t3_kujurp;False;False;t1_gisfkt0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git36ag/;1610361006;26;True;False;anime;t5_2qh22;;0;[]; -[];;;ENKlDU;;;[];;;;text;t2_4scvchzo;False;False;[];;Agreed it was a bit of a wet fart;False;True;;comment score below threshold;;1610317918;;False;{};git37f9;False;t3_kujurp;False;True;t1_gisci8n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git37f9/;1610361025;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;slowdrem20;;;[];;;;text;t2_c7n2y;False;False;[];;Marley started it first.;False;False;;;;1610317919;;False;{};git37i3;False;t3_kujurp;False;True;t1_gisurtq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git37i3/;1610361026;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;I was also surprised he kept going without someone shooting him. Like the militarised, propaganda heavy Marleyan Empire just let their king(?) give a completely revised version of the history they all know?;False;False;;;;1610317929;;False;{};git389f;False;t3_kujurp;False;False;t1_gisbq0k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git389f/;1610361037;8;True;False;anime;t5_2qh22;;0;[]; -[];;;SigmundFreud;;;[];;;;text;t2_3cp72;False;False;[];;I think Isayama spends every night saying curse words at Reiner until he falls asleep.;False;False;;;;1610317931;;False;{};git38ge;False;t3_kujurp;False;False;t1_gisrgm7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git38ge/;1610361040;29;True;False;anime;t5_2qh22;;0;[]; -[];;;ihileath;;MAL;[];;http://myanimelist.net/animelist/Ihileath;dark;text;t2_rsvva;False;False;[];;True. But one can't claim the civilian casualties were entirely just collateral damage - after all, Eren literally used them as hostages against Reiner, right up until the point he snuffed them out to start his own attack. The civilians being there was part of his plan.;False;False;;;;1610317934;;False;{};git38nk;False;t3_kujurp;False;False;t1_git2ibs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git38nk/;1610361043;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Illustrious_Tower_25;;;[];;;;text;t2_4z4ectcw;False;False;[];;Absolute masterpiece;False;False;;;;1610317934;;False;{};git38og;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git38og/;1610361043;7;True;False;anime;t5_2qh22;;0;[]; -[];;;antiracist_69;;;[];;;;text;t2_40rc1skg;False;False;[];;Reiner and Falco's anxiety kicking in:;False;False;;;;1610317938;;False;{};git38yq;False;t3_kujurp;False;False;t1_gisk1jh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git38yq/;1610361047;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Xavier93;;;[];;;;text;t2_yg6ey;False;False;[];;Except Shiganshina was minding their own business while Liberio was celebrating a Declaration of War.;False;False;;;;1610317945;;False;{};git39gg;False;t3_kujurp;False;False;t1_gisagr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git39gg/;1610361055;27;True;False;anime;t5_2qh22;;0;[]; -[];;;Jagacin;;;[];;;;text;t2_13054n;False;False;[];;By forcing him to watch Boco no Pico on repeat.;False;False;;;;1610317977;;False;{};git3but;False;t3_kujurp;False;True;t1_giseics;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3but/;1610361091;0;True;False;anime;t5_2qh22;;0;[]; -[];;;paull___;;;[];;;;text;t2_2ekliasb;False;False;[];;The music was amazing in this episode. I love how most of the episode is just two dudes talking in a basement but it's so well written and setup that it's tense and exciting. I also love how this season has been a twisted mirror image of the first season. Eren and Reiner switch their roles from the first season and it's brilliant.;False;False;;;;1610317978;;False;{};git3byi;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3byi/;1610361094;6;True;False;anime;t5_2qh22;;0;[]; -[];;;GamerDylan;;;[];;;;text;t2_9luxkbc;False;False;[];;One thing I'm wondering is if Eren is going to eat Willy. If Willy was the Warhammer Titan he would have transformed as soon as he saw Eren's Titan. If Eren eats Willy then Eren does not know who the Warhammer Titan is.;False;False;;;;1610317995;;False;{};git3d80;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3d80/;1610361113;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sharmarahulkohli;;;[];;;;text;t2_12gbee;False;False;[];;"1) Just illustration - -2)no - -3)the one which Armin has is a shifter,the one inside the walls are Mindless";False;False;;;;1610317997;;False;{};git3dbm;False;t3_kujurp;False;False;t1_git33q8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3dbm/;1610361114;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuyou_lilienthal_yu;;;[];;;;text;t2_74nij6hu;False;False;[];;*commiting war crimes since last Thursday*;False;False;;;;1610318000;;False;{};git3diy;False;t3_kujurp;False;False;t1_gismgw8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3diy/;1610361117;15;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610318005;;False;{};git3dx6;False;t3_kujurp;False;True;t1_gisuimw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3dx6/;1610361123;1;True;False;anime;t5_2qh22;;0;[]; -[];;;majintrunks86;;;[];;;;text;t2_6l1kr9dk;False;False;[];;Anyone else think this is one of the best episodes they've made? This whole entire episode was just beyond awesome! They nailed the unraveling tension throughout and the stellar soundtrack emphasized it even more. I loved the dual message of the speech and how Reiner comes full circle in front of Eren and Falco. I really wish that i didn't read this in the manga, but it was definitely amazing and will go down as one of my favorites.;False;False;;;;1610318006;;False;{};git3e08;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3e08/;1610361124;9;True;False;anime;t5_2qh22;;0;[]; -[];;;IAteTheCheezyNacho;;;[];;;;text;t2_3iuac3br;False;False;[];;The warriors were led away by someone in the marleyan military uniform so I guess thats why they were led away so easilly.;False;False;;;;1610318008;;False;{};git3e65;False;t3_kujurp;False;False;t1_git2gzc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3e65/;1610361127;4;True;False;anime;t5_2qh22;;0;[]; -[];;;damageis_done;;;[];;;;text;t2_47n90bpm;False;False;[];;"He only fazed for a moment when Willy said ""I was born into this world."". It was his mother's words and he adds to his mother's words that ""We have all been special since the day we were born, we're free."". That words are symbolise his drive for freedom.";False;False;;;;1610318010;;False;{};git3eaf;False;t3_kujurp;False;False;t1_gish4zq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3eaf/;1610361129;15;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;"Probably just manga readers, as one myself I was very happy with it. People should understand that anime will never be a 1:1 to the manga/light novel version. - -They skipped or rearranged a certain convo and I've seen people complain about the final OST but they both had nothing to do with the Eren/Reiner discussion. I feel like you're responding to such a minority that it's not worth a post defending it tbh.";False;False;;;;1610318011;;False;{};git3edj;False;t3_kujurp;False;False;t1_git2d5t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3edj/;1610361130;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Runbern;;;[];;;;text;t2_77cqfhat;False;False;[];;Just an illustration. Eren can't use the Founding Titan unless touching a titan(shifter) with royal blood. That's why he was only capable of using it for a short period while touching the Dina Fritz as a titan.;False;False;;;;1610318013;;False;{};git3ehi;False;t3_kujurp;False;False;t1_git33q8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3ehi/;1610361131;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610318031;;False;{};git3fus;False;t3_kujurp;False;True;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3fus/;1610361152;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Infamous-QB;;;[];;;;text;t2_8f3u139z;False;False;[];;So what? If people are so sensitive they can't handle a bit of banter, they should grow a pair.;False;False;;;;1610318031;;False;{};git3fv9;False;t3_kujurp;False;False;t1_git11ll;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3fv9/;1610361152;14;True;False;anime;t5_2qh22;;0;[]; -[];;;AStartingPoint;;;[];;;;text;t2_74e7pgty;False;False;[];;Dies 3 seconds later.;False;False;;;;1610318044;;False;{};git3gr6;False;t3_kujurp;False;True;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3gr6/;1610361165;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xavier93;;;[];;;;text;t2_yg6ey;False;False;[];;If he wants to become the Armored Titan better be preparing some good trauma beforehand.;False;False;;;;1610318045;;False;{};git3gvu;False;t3_kujurp;False;True;t1_gise9k9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3gvu/;1610361167;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mo2memes;;;[];;;;text;t2_82ucdlhw;False;False;[];;" Everything was fine but the way Willy Tybur said ""His name is Eren Yeager"" was more interesting in trailer. It was plain in anime. I guess because of the OST. It wasn't nothing special. No goosebump moments. They should have done it with the OST that was in the trailer.";False;True;;comment score below threshold;;1610318051;;False;{};git3h9v;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3h9v/;1610361173;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;There's more to it than that, Reiner admitted he also wanted the glory and didn't want himself to die since the mission already failed so early on;False;False;;;;1610318059;;False;{};git3hy2;False;t3_kujurp;False;True;t1_giscr3k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3hy2/;1610361182;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610318063;;1610318357.0;{};git3i7o;False;t3_kujurp;False;True;t1_git1en0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3i7o/;1610361187;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Orzislaw;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Orzi/;light;text;t2_h8rc3;False;False;[];;"It's great character developement and something excellent to watch in my safe home, without threat of war outside, knowing these are all fictional characters. It's atrocity, but also fascinating to watch. - -I don't know if the story will take this turn, but I can see and kinda want it to turn into anti-war manifesto. Done right, without platitudes and exegarrated villains, just showing how terrible and stupid it is.";False;False;;;;1610318074;;1610319018.0;{};git3j4g;False;t3_kujurp;False;False;t1_gisurtq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3j4g/;1610361200;5;True;False;anime;t5_2qh22;;0;[]; -[];;;TheOSSJ;;;[];;;;text;t2_16beob;False;False;[];;Dont listen to them, people complained about the Ost during Levi vs Beast Titan.;False;False;;;;1610318078;;False;{};git3jep;False;t3_kujurp;False;False;t1_git1w7t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3jep/;1610361204;10;True;False;anime;t5_2qh22;;0;[]; -[];;;antiracist_69;;;[];;;;text;t2_40rc1skg;False;False;[];;it was the Warhammer rising;False;False;;;;1610318080;;False;{};git3jku;False;t3_kujurp;False;False;t1_gisfx69;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3jku/;1610361207;12;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;i can hope;False;False;;;;1610318083;;False;{};git3js0;False;t3_kujurp;False;False;t1_git2rat;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3js0/;1610361210;4;True;False;anime;t5_2qh22;;0;[]; -[];;;galileotheweirdo;;MAL;[];;myanimelist.net/animelist/galileotheweirdo;dark;text;t2_gwyf6;False;False;[];;Isayama seems to have this streak of very fleeting appearances who leave a huge impact on the overall story. Frieda Reiss, Marcel Galliard, Kenny Ackerman, Eren Kruger, Dina Fritz, heck even Grisha Jaeger only appeared for 5 episodes tops, and now Willy Tybur. Honestly was not expecting Willy to go out like that, but tbh, fits his character.;False;False;;;;1610318088;;False;{};git3k5j;False;t3_kujurp;False;False;t1_gish1o8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3k5j/;1610361215;55;True;False;anime;t5_2qh22;;0;[]; -[];;;Reikakou;;;[];;;;text;t2_hbzvw;False;False;[];;"Damn... Just caught up with the anime. - -Took manga readers months to see time skip Eren and gang I almost abhorred the Marleyan Arc given how many chapters were dedicated to it.";False;False;;;;1610318090;;False;{};git3kak;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3kak/;1610361217;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;She wanted to see her childhood friend one last time before his death;False;False;;;;1610318091;;False;{};git3kdn;False;t3_kujurp;False;False;t1_gisiqhp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3kdn/;1610361219;13;True;False;anime;t5_2qh22;;0;[]; -[];;;ThunderSmurf48;;;[];;;;text;t2_116216;False;False;[];;I honestly didn't expect him to die this early lmao;False;False;;;;1610318092;;False;{};git3kfh;False;t3_kujurp;False;True;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3kfh/;1610361219;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Frostbite2806;;;[];;;;text;t2_13evjt;False;False;[];;The one inherited by Berthold and Armin is taller than the Wall Titans - the walls are 50m tall, Colossal is 60m;False;False;;;;1610318096;;False;{};git3kpq;False;t3_kujurp;False;True;t1_git33q8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3kpq/;1610361224;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;Cinematic execution and music is a huge part of any film medium, anime included. For good reason the most popular shows and episodes almost always excel at this.;False;False;;;;1610318098;;False;{};git3kvt;False;t3_kujurp;False;False;t1_giscpr1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3kvt/;1610361226;4;True;False;anime;t5_2qh22;;0;[]; -[];;;mo2memes;;;[];;;;text;t2_82ucdlhw;False;False;[];;" Everything was fine but the way Willy Tybur said ""His name is Eren Yeager"" was more interesting in trailer. It was plain in anime. I guess because of the OST. It wasn't nothing special. No goosebump moments. They should have done it with the OST that was in the trailer.";False;False;;;;1610318107;;False;{};git3lhn;False;t3_kujurp;False;True;t1_gisac08;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3lhn/;1610361234;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;whymauri;;;[];;;;text;t2_a8rrh;False;True;[];;wait a second, did you use to post on Battlelog?;False;False;;;;1610318116;;False;{};git3m5w;False;t3_kujurp;False;False;t1_git2fuv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3m5w/;1610361245;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Theink-Pad;;;[];;;;text;t2_itu5ekl;False;False;[];;"Reiner: Eren, mouse issues, please don't unpause. - -Willy: -*Unpausing in 3.....* -*Unpausing in 2.....* -*Unpausing in 1.....* -I DECLARE WAR! - -Eren: Sorry Reiner, match is starting. - -**FIRST BLOOD**";False;False;;;;1610318121;;False;{};git3mgz;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3mgz/;1610361250;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Aliensinnoh;;;[];;;;text;t2_x0aq3c;False;False;[];;If you’re a manga reader and you’re saying that definitely happens you’re the one doing spoilers. This observation can easily come from an anime only. It’s reasonable to assume he’s dead from the final shot of him. If you go around claiming assumptions to be spoilers, you’re verifying it to everyone who sees your comment.;False;False;;;;1610318121;;False;{};git3mim;False;t3_kujurp;False;False;t1_gisztsj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3mim/;1610361251;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TSmasher1000;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_14sxjn;False;False;[];;Wow 10k already? This show keeps moving forward, seeking to destroy all karma wars. Its name is... Shingeki no Kyojin.;False;False;;;;1610318122;;False;{};git3mjn;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3mjn/;1610361251;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;"10.2k karma after 4 hours puts the thread [ahead of the premiere that reached 20.3k karma](https://cdn.discordapp.com/attachments/476391825590976522/793854102308126730/karma_track.png) despite being a few thousand points behind early on because of the delay. - -Going off the curves from the other episodes that had a delay this should represent approximately 40% of its final total which means it's projected to reach a staggering **25.5k** after 48 hours. - -Even if the rate slows and it tracks more like episode 1 from here on out it should still reach **21.8k** karma.";False;False;;;;1610318124;;1610318320.0;{};git3msn;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3msn/;1610361255;25;True;False;anime;t5_2qh22;;0;[]; -[];;;AStartingPoint;;;[];;;;text;t2_74e7pgty;False;False;[];;You love to see it.;False;False;;;;1610318125;;False;{};git3muz;False;t3_kujurp;False;True;t1_gisao83;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3muz/;1610361256;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ENKlDU;;;[];;;;text;t2_4scvchzo;False;False;[];;"AoT fans just love to downvote anything that goes against it lol - -I agree as well, the ep was nice (willys speech could of been a bit more emotional) - -But u would think the biggest reveal in the series would of been u know more bombastic? Here’s hoping they do better next ep 🔥";False;False;;;;1610318129;;False;{};git3n40;False;t3_kujurp;False;False;t1_gisc8sb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3n40/;1610361259;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexxxandreS;;;[];;;;text;t2_25oteqzx;False;False;[];;Ain't nobody hyped for the next episode? We finally get to see the last titan, and we'll finally see our boys attacking and for the first time not just trying to survive something...;False;False;;;;1610318133;;False;{};git3ned;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3ned/;1610361264;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptainPikmin;;;[];;;;text;t2_10w5w9;False;False;[];;"The shot was for illustrating Willy's speech, showing the threat Eren now poses to the world as someone who can activate all of the colossal titans within the walls. - -&#x200B; - -The Colossal Titan is still unique. Remember that it still has its nuke ability. The colossus titans in the walls are just gargantuan mindless titans.";False;False;;;;1610318138;;False;{};git3ns7;False;t3_kujurp;False;False;t1_git33q8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3ns7/;1610361269;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;His background actors were cool.;False;False;;;;1610318142;;False;{};git3o1m;False;t3_kujurp;False;False;t1_gisfqw0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3o1m/;1610361273;4;True;False;anime;t5_2qh22;;0;[]; -[];;;rathyAro;;;[];;;;text;t2_mo04u;False;False;[];;I'm pretty sure he remembers saying that and is just bullshitting there.;False;False;;;;1610318153;;False;{};git3ow6;False;t3_kujurp;False;True;t1_gisak3a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3ow6/;1610361286;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;Then why does Levi *look* Asian?;False;False;;;;1610318156;;False;{};git3p4l;False;t3_kujurp;False;True;t1_gisynuw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3p4l/;1610361289;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wolfsocean;;;[];;;;text;t2_io8r7;False;False;[];;"While this is tragic its all more reason the Regime of Marley needs to end. So the people can finally learn the truth and their Deaths belong right at the feet of Marley and the tybur family. - - -I can fully understand you can't change people overnight especially with all of the propaganda they have been spoon feed. But it has to start some were and ending the Regime of marley is where it starts.";False;False;;;;1610318159;;False;{};git3pcj;False;t3_kujurp;False;True;t1_git30en;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3pcj/;1610361293;0;True;False;anime;t5_2qh22;;0;[]; -[];;;VariousMeet;;;[];;;;text;t2_63veb3s5;False;False;[];;"Can anyone explain why he says to forget about him wanting to brutally massacre everyone but then ends up doing it? I get why he still attacks marley even after learning they're people just like him, just not why he acts like he wasn't about to attack them but ends up saying ""SIKE"" basically? Is it purely him being a troll?";False;False;;;;1610318167;;False;{};git3pxv;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3pxv/;1610361301;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TatteredTongues;;;[];;;;text;t2_xbrbp;False;False;[];;"> If Willy was the Warhammer Titan he would have transformed as soon as he saw Eren's Titan. - - -It's not that simple, remember Marcel? - - -> If Eren eats Willy then Eren does not know who the Warhammer Titan is - -If Eren gains a new power then he would obviously know right away.";False;False;;;;1610318170;;False;{};git3q4q;False;t3_kujurp;False;True;t1_git3d80;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3q4q/;1610361304;2;True;False;anime;t5_2qh22;;0;[]; -[];;;seninn;;MAL;[];;http://myanimelist.net/animelist/Senninn0;dark;text;t2_fw8p2;False;False;[];;We told you guys, but you thought we were overexaggerating.;False;False;;;;1610318171;;False;{};git3qa1;False;t3_kujurp;False;False;t1_gisjqdw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3qa1/;1610361306;8;True;False;anime;t5_2qh22;;0;[]; -[];;;vilemoo17;;MAL;[];;;dark;text;t2_5sh3g;False;False;[];;He is the one who knocks.;False;False;;;;1610318174;;False;{};git3qih;False;t3_kujurp;False;False;t1_gisw1ro;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3qih/;1610361310;117;True;False;anime;t5_2qh22;;0;[]; -[];;;Lordrice;;;[];;;;text;t2_8yby8;False;False;[];;"*Eren doing his Titan roar* - -Me: Do you hear that? That is the sound of **FREEDOM**";False;False;;;;1610318179;;False;{};git3qwy;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3qwy/;1610361316;5;True;False;anime;t5_2qh22;;0;[]; -[];;;toutoune134;;;[];;;;text;t2_fokbo;False;False;[];;"Not just this scene, there is also the [end of S1E12 during Eren's introspection](https://external-preview.redd.it/NIdo9F-ADc-qGgqsY_HXgX1tF8eVPfpd1nuD7TXhPJg.jpg?auto=webp&s=15c2d5146e8a7e98a53b2dce7e1dbe1f0bc165db)";False;False;;;;1610318182;;False;{};git3r2k;False;t3_kujurp;False;False;t1_gisioq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3r2k/;1610361318;10;True;False;anime;t5_2qh22;;0;[]; -[];;;XxMemeStar69xX;;;[];;;;text;t2_2wkyq0u;False;False;[];;Where he wouldn’t get the chance to be a chad in front of Reiner?;False;False;;;;1610318185;;False;{};git3rau;False;t3_kujurp;False;False;t1_gisrvq9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3rau/;1610361321;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Aliensinnoh;;;[];;;;text;t2_x0aq3c;False;False;[];;Well, at least they have since they ruined the situation that they knew about that was stable.;False;False;;;;1610318186;;False;{};git3rdz;False;t3_kujurp;False;True;t1_gisajw0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3rdz/;1610361322;3;True;False;anime;t5_2qh22;;0;[]; -[];;;clikplay;;;[];;;;text;t2_db345;False;False;[];;He is perfectly able to fight back without killing thousands of innocent civilians. It isn't just because he suffered that kind of thing that now it's excusable to do that, and it's even worse when you think that the people dying are also eldians that had no park on the attack on paradis.;False;False;;;;1610318186;;False;{};git3rez;False;t3_kujurp;False;True;t1_gisyr15;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3rez/;1610361322;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptainPikmin;;;[];;;;text;t2_10w5w9;False;False;[];;Keep moving forward! I think we can break the record!;False;False;;;;1610318194;;False;{};git3rze;False;t3_kujurp;False;True;t1_git34po;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3rze/;1610361330;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;Could be worse, there is a parallel universe that doesn’t have AOT;False;False;;;;1610318200;;False;{};git3sf3;False;t3_kujurp;False;False;t1_giskeg7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3sf3/;1610361337;12;True;False;anime;t5_2qh22;;0;[]; -[];;;AStartingPoint;;;[];;;;text;t2_74e7pgty;False;False;[];;How do people remember this stuff.;False;False;;;;1610318200;;False;{};git3shr;False;t3_kujurp;False;True;t1_gisd65h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3shr/;1610361338;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;He knew, that's why he was there in the first place. He just wanted to give them a chance. He even smiled approvingly at what Willy said at one point.;False;False;;;;1610318212;;False;{};git3tbf;False;t3_kujurp;False;False;t1_giswgoc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3tbf/;1610361350;14;True;False;anime;t5_2qh22;;0;[]; -[];;;slowdrem20;;;[];;;;text;t2_c7n2y;False;False;[];;200k dead due to Marley. This is 100% justified.;False;False;;;;1610318213;;False;{};git3ter;False;t3_kujurp;False;True;t1_gisn579;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3ter/;1610361352;0;True;False;anime;t5_2qh22;;0;[]; -[];;;HawkBlawk;;;[];;;;text;t2_86o86ule;False;False;[];;"That final line from Eren had me more hyped than I've ever been watching a show. The conviction with which he says it after ""forgiving"" Reiner is so good.";False;False;;;;1610318229;;False;{};git3uo0;False;t3_kujurp;False;False;t1_gisag7i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3uo0/;1610361371;6;True;False;anime;t5_2qh22;;0;[]; -[];;;pepperminthippos;;;[];;;;text;t2_9esi1c4;False;False;[];;mate, you gotta be asking if anyone is NOT hyped for the next episode(s);False;False;;;;1610318235;;False;{};git3v79;False;t3_kujurp;False;False;t1_git3ned;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3v79/;1610361378;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Ksradrik;;;[];;;;text;t2_1wtl783j;False;False;[];;"Furthermore, the declaration doesnt really matter in the grand scheme of things, because they already did the equivalent of nuking their country multiple times *before* declaring war. - -At that point you kinda surrender any right to complain about rules.";False;False;;;;1610318247;;False;{};git3w23;False;t3_kujurp;False;False;t1_giszn8q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3w23/;1610361391;5;True;False;anime;t5_2qh22;;0;[]; -[];;;taprik;;;[];;;;text;t2_1rdvdqg5;False;False;[];;Or brakes the wall;False;False;;;;1610318251;;False;{};git3wao;False;t3_kujurp;False;False;t1_git3qih;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3wao/;1610361395;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Notchmeister;;;[];;;;text;t2_36jo87s9;False;False;[];;It was just an illistration, Eren can't use the founding titan's full abilities, without touching a titan with royal blood. Only way he could do that is for Historia to turn into a titan, which Eren did not want to happen. For the second question, the difference is that Bertholdt and Armin can shift back to human and vice versa, while the colossals in the walls probably can't (Just imagine them as pure titans but they're 50 to 60 ft tall);False;False;;;;1610318253;;False;{};git3wgj;False;t3_kujurp;False;False;t1_git33q8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3wgj/;1610361397;6;True;False;anime;t5_2qh22;;0;[]; -[];;;lynxo;;;[];;;;text;t2_a5r9b;False;False;[];;This entire show/manga has been building up to those last 30 seconds. That declaration of war.;False;False;;;;1610318256;;False;{};git3wpf;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3wpf/;1610361401;4;True;False;anime;t5_2qh22;;0;[]; -[];;;XxMemeStar69xX;;;[];;;;text;t2_2wkyq0u;False;False;[];;People are downvoting you because you’re saying the truth lol;False;False;;;;1610318257;;False;{};git3wsf;False;t3_kujurp;False;False;t1_giskvyz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3wsf/;1610361402;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;ENKlDU;;;[];;;;text;t2_4scvchzo;False;False;[];;"Downvoted the post myself - -But good luck!";False;True;;comment score below threshold;;1610318260;;False;{};git3x1v;False;t3_kujurp;False;False;t1_gisak16;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3x1v/;1610361406;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;"It's crazy how much more it is than a simple battle shounen of ""heroes fight giant man eating titans""";False;False;;;;1610318260;;False;{};git3x43;False;t3_kujurp;False;False;t1_gisjjjc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3x43/;1610361406;56;True;False;anime;t5_2qh22;;0;[]; -[];;;Oxu90;;;[];;;;text;t2_yxh7y;False;False;[];;Paradis is 'MURICA;False;False;;;;1610318262;;False;{};git3x88;False;t3_kujurp;False;True;t1_git3qwy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3x88/;1610361409;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Cheshires_Shadow;;;[];;;;text;t2_2u6l2y3;False;False;[];;That's my secret Reiner. I'm always angry.;False;False;;;;1610318268;;False;{};git3xpy;False;t3_kujurp;False;False;t1_gistdo5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3xpy/;1610361416;14;True;False;anime;t5_2qh22;;0;[]; -[];;;arara69;;;[];;;;text;t2_16j57v;False;False;[];;Is levi and mikasa cousin?;False;False;;;;1610318269;;False;{};git3xs1;False;t3_kujurp;False;True;t1_gisynuw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3xs1/;1610361417;1;True;False;anime;t5_2qh22;;0;[]; -[];;;seninn;;MAL;[];;http://myanimelist.net/animelist/Senninn0;dark;text;t2_fw8p2;False;False;[];;You're probably just tired, right?;False;False;;;;1610318285;;False;{};git3yzc;False;t3_kujurp;False;False;t1_gisb939;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3yzc/;1610361436;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NotFruity_Mango;;;[];;;;text;t2_4gcwp4qw;False;False;[];;We still need to count in the ppl that eren will kill in the next ep;False;False;;;;1610318287;;False;{};git3z5x;False;t3_kujurp;False;False;t1_git2e9y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3z5x/;1610361439;7;True;False;anime;t5_2qh22;;0;[]; -[];;;AStartingPoint;;;[];;;;text;t2_74e7pgty;False;False;[];;Can someone explain to me why Eren’s hand was slightly cut before he transformed?;False;False;;;;1610318292;;False;{};git3zkd;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3zkd/;1610361444;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lohtric;;;[];;;;text;t2_10buyw;False;False;[];;Not even yours. And yet you keep replying;False;False;;;;1610318293;;False;{};git3zme;False;t3_kujurp;False;True;t1_git101i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3zme/;1610361446;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;"He said forget about it, he was talking about killing Reiner and Bertholdt in the most horrible way, but now he realize its not Reiner or the warriors he should do that to but more specifically Marley that sent the warriors here in the first place. - -That is how I interpreted.";False;False;;;;1610318294;;False;{};git3zq7;False;t3_kujurp;False;False;t1_git3pxv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git3zq7/;1610361448;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexxxandreS;;;[];;;;text;t2_25oteqzx;False;False;[];;Bro I'm just saying this because I didn't see a single comment about the next episode, and usually there's at least a few talking about what's happening next...;False;False;;;;1610318303;;False;{};git40dl;False;t3_kujurp;False;True;t1_git3v79;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git40dl/;1610361457;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mrtwitles;;;[];;;;text;t2_6m2vk;False;False;[];;Yah I understand that but I feel like wouldn’t they have a officer or something that watched over them to make sure they are around when needed? I dunno, just pondering;False;False;;;;1610318303;;False;{};git40e2;False;t3_kujurp;False;True;t1_git3e65;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git40e2/;1610361458;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;He's different now cuz he knows that there is no good and bad in this world, and that everyone in the walls and beyond is the same. He harbors no hatred or resentment anymore. He accepts that Reiner was forced by his environment. However, he's still gonna move forward, until all his enemies are destroyed.;False;False;;;;1610318311;;False;{};git410n;False;t3_kujurp;False;False;t1_git3pxv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git410n/;1610361467;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Lrekkk;;;[];;;;text;t2_6bubk4h;False;False;[];;I cried in that exchange between Reiner and Eren. I didn't thought I would and in the manga I just felt sorry but damn. Animation and music really brought it to life. Well done.;False;False;;;;1610318312;;False;{};git413c;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git413c/;1610361468;4;True;False;anime;t5_2qh22;;0;[]; -[];;;cyclops274;;;[];;;;text;t2_1n0717z;False;False;[];;It is Armin.;False;False;;;;1610318323;;False;{};git41xx;False;t3_kujurp;False;True;t1_git28ef;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git41xx/;1610361481;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BarnacleMANN;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Dankbum;light;text;t2_cck32;False;False;[];;"My god, the tension this whole episode. - -Eren is fucking scary in the basement talk man. They defiantly did justice to some epic manga panels at the end.";False;False;;;;1610318333;;False;{};git42nr;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git42nr/;1610361491;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Hussor;;MAL;[];;http://myanimelist.net/animelist/Hussor;dark;text;t2_j55xp;False;False;[];;Better than 120-122? Those 3 chapters to me are the peak. 130 and 131 came close and 137 is looking good too from what we saw in 136.;False;False;;;;1610318340;;False;{};git437i;False;t3_kujurp;False;False;t1_git34jt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git437i/;1610361499;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FierceAlchemist;;;[];;;;text;t2_fcfw8;False;False;[];;It also felt a little like Eren’s memories are confused, the mixing of his with the past owners.;False;False;;;;1610318340;;False;{};git4395;False;t3_kujurp;False;True;t1_gisak3a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4395/;1610361499;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Orzislaw;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Orzi/;light;text;t2_h8rc3;False;False;[];;"Or just move on from people ""a bit of bantering"" for them to choke on their own spit. Their choice.";False;False;;;;1610318354;;False;{};git447m;False;t3_kujurp;False;True;t1_git3fv9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git447m/;1610361513;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;Marley arc was perfection.;False;False;;;;1610318356;;False;{};git44eg;False;t3_kujurp;False;False;t1_git3kak;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git44eg/;1610361516;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Legendseekersiege5;;;[];;;;text;t2_5nio4gd;False;False;[];;Unless he is the hammer titan;False;False;;;;1610318360;;False;{};git44o5;False;t3_kujurp;False;False;t1_gisdakp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git44o5/;1610361520;8;True;False;anime;t5_2qh22;;0;[]; -[];;;cantaneer;;;[];;;;text;t2_1ib8wxpm;False;False;[];;he has to hurt himself to transform. so he came prepared. like a threat to reiner. “we are sitting under a building with full of people and if you do a move i will transform instantly”;False;False;;;;1610318373;;False;{};git45na;False;t3_kujurp;False;False;t1_git3zkd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git45na/;1610361534;5;True;False;anime;t5_2qh22;;0;[]; -[];;;OneirionKnight;;;[];;;;text;t2_1kghpz3x;False;False;[];;So he can transform lol;False;False;;;;1610318382;;False;{};git469k;False;t3_kujurp;False;True;t1_git3zkd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git469k/;1610361544;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ksradrik;;;[];;;;text;t2_1wtl783j;False;False;[];;*again*;False;False;;;;1610318390;;False;{};git46w7;False;t3_kujurp;False;False;t1_gisj00j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git46w7/;1610361555;7;True;False;anime;t5_2qh22;;0;[]; -[];;;pepperminthippos;;;[];;;;text;t2_9esi1c4;False;False;[];;i think its partially cus we know whats going down to a certain extent—erens gonna be rampaging and the warhammer's gonna transform (based on the ep preview);False;False;;;;1610318395;;False;{};git479z;False;t3_kujurp;False;True;t1_git40dl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git479z/;1610361561;2;True;False;anime;t5_2qh22;;0;[]; -[];;;myrmonden;;;[];;;;text;t2_f0rs6;False;False;[];;"[SHOCKED PIECK FACE](https://pbs.twimg.com/media/ErYqtFiWMAcGhXH?format=png&name=small)";False;False;;;;1610318402;;False;{};git47r2;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git47r2/;1610361568;7;True;False;anime;t5_2qh22;;0;[]; -[];;;seninn;;MAL;[];;http://myanimelist.net/animelist/Senninn0;dark;text;t2_fw8p2;False;False;[];;wuh;False;False;;;;1610318404;;False;{};git47un;False;t3_kujurp;False;False;t1_gisvsc5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git47un/;1610361569;17;True;False;anime;t5_2qh22;;0;[]; -[];;;blitzbom;;;[];;;;text;t2_6h9w1;False;False;[];;"Assuming Eren and crew knew that Willy's family had the Warhammer Titan why didn't they capture or kill all of them ? - -Prehaps to flush it out so they wouldn't lose it?";False;False;;;;1610318406;;False;{};git480o;False;t3_kujurp;False;True;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git480o/;1610361571;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;Because we've spent the most time with Paradis they're the protagonists (not counting the Marleyans and Eldians we've been with this season) so him taking the fight to a country that's been oppressing his it's hugely satisfying for him to have revenge. Of course I don't want to see innocent Marleyans and Eldians killed, but the military and the government? Well they have what's coming to them.;False;False;;;;1610318421;;False;{};git4951;False;t3_kujurp;False;True;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4951/;1610361589;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DarthNoob;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/darthnoob;light;text;t2_91lna;False;False;[];;"I was under the impression that 'eren goes through so much growth this season' meant he becomes [vinland saga manga spoilers](/s ""thorfinn, a character who people talk about in exactly the same way""). but i guess eren does have some enemies";False;False;;;;1610318430;;False;{};git49tj;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git49tj/;1610361598;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AStartingPoint;;;[];;;;text;t2_74e7pgty;False;False;[];;True. He must be alive next episode.;False;False;;;;1610318442;;False;{};git4arg;False;t3_kujurp;False;False;t1_git00o7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4arg/;1610361612;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Starmoses;;;[];;;;text;t2_i3klk;False;False;[];;I mean it's horrible but at the same time Marley just said theye were gonna wipe out everyone in Paradis so it's not like the attack wasn't justified.;False;False;;;;1610318451;;False;{};git4bfw;False;t3_kujurp;False;False;t1_gisurtq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4bfw/;1610361622;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Infamous-QB;;;[];;;;text;t2_8f3u139z;False;False;[];;No shit.;False;False;;;;1610318453;;False;{};git4bm5;False;t3_kujurp;False;True;t1_git447m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4bm5/;1610361625;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sp1dre;;;[];;;;text;t2_2s57p9ji;False;False;[];;My mouth was just gaped open for a solid minute after the ending, what an episode;False;False;;;;1610318457;;False;{};git4bwr;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4bwr/;1610361628;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IHaveAnS5;;;[];;;;text;t2_iupib;False;False;[];;It's a power move. It's to let Reiner and Falco know he's in control of the situation and can transform whenever so they don't try anything silly.;False;False;;;;1610318467;;False;{};git4cqi;False;t3_kujurp;False;False;t1_git3zkd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4cqi/;1610361641;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacob_Mango;;;[];;;;text;t2_j8q90;False;False;[];;10k at 3 hours, so beating episode 60 now;False;False;;;;1610318468;;False;{};git4cro;False;t3_kujurp;False;True;t1_gisvah3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4cro/;1610361641;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PlebSlayer27;;;[];;;;text;t2_14sjh1;False;False;[];;"I think it's kind of a threat. As in ""See, I could transform at any moment""";False;False;;;;1610318468;;False;{};git4crq;False;t3_kujurp;False;False;t1_git3zkd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4crq/;1610361641;15;True;False;anime;t5_2qh22;;0;[]; -[];;;caped_crusader8;;;[];;;;text;t2_54lgmm6z;False;False;[];;"I don't care much for karma.so it's fine. - -I do get why they are down voting since it might come across as inhumane";False;False;;;;1610318475;;False;{};git4dc5;False;t3_kujurp;False;True;t1_git3wsf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4dc5/;1610361649;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;If Armin turned into the Colossal right then and there, the entire cast would be obliterated. The Colossal transformation is basically a tactical nuke.;False;False;;;;1610318478;;False;{};git4dlp;False;t3_kujurp;False;False;t1_giswntq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4dlp/;1610361653;38;True;False;anime;t5_2qh22;;0;[]; -[];;;appleandapples;;;[];;;;text;t2_kvrvf;False;False;[];;Seeing this animated was great, Eren's resolve is so well done. Reiner's suffering continues.;False;False;;;;1610318482;;False;{};git4dv1;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4dv1/;1610361657;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;I doubt it though it's definitely possible;False;False;;;;1610318484;;False;{};git4e0h;False;t3_kujurp;False;False;t1_gisudtu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4e0h/;1610361659;12;True;False;anime;t5_2qh22;;0;[]; -[];;;blitzbom;;;[];;;;text;t2_6h9w1;False;False;[];;He is the one who knocks... down a residential building;False;False;;;;1610318494;;False;{};git4evl;False;t3_kujurp;False;False;t1_git3qih;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4evl/;1610361672;88;True;False;anime;t5_2qh22;;0;[]; -[];;;aniviasrevenge;;;[];;;;text;t2_64n5l;False;False;[];;"Same-- first time ever posting despite watching the anime for years. - - -This was something truly special.";False;False;;;;1610318496;;False;{};git4f0w;False;t3_kujurp;False;False;t1_gisv5pt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4f0w/;1610361674;19;True;False;anime;t5_2qh22;;0;[]; -[];;;NotFruity_Mango;;;[];;;;text;t2_4gcwp4qw;False;False;[];;Wait would it not be faster if armin nuked the whole place;False;False;;;;1610318505;;False;{};git4fnx;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4fnx/;1610361684;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Xavier93;;;[];;;;text;t2_yg6ey;False;False;[];;And I took that personally.;False;False;;;;1610318506;;False;{};git4ft5;False;t3_kujurp;False;False;t1_gismnlh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4ft5/;1610361686;12;True;False;anime;t5_2qh22;;0;[]; -[];;;RenPaulable;;;[];;;;text;t2_e6wnyfy;False;False;[];;Armin joining paradis basketball assoc with his growth spurt;False;False;;;;1610318508;;False;{};git4fwl;False;t3_kujurp;False;False;t1_git0w82;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4fwl/;1610361687;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Curiositygun;;;[];;;;text;t2_9oe2n;False;False;[];;"He's not out to destroy Reiner, kind of like ""nothing personal"" sort of quote. He's not doing what he's doing as a personal vendetta against Reiner.";False;False;;;;1610318508;;False;{};git4fyi;False;t3_kujurp;False;True;t1_gisoy3w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4fyi/;1610361688;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GamerDylan;;;[];;;;text;t2_9luxkbc;False;False;[];;Marcel was a nervous kid. Willy is a confident adult in front of thousands of people.;False;False;;;;1610318511;;False;{};git4g5s;False;t3_kujurp;False;True;t1_git3q4q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4g5s/;1610361691;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610318518;;False;{};git4gs5;False;t3_kujurp;False;True;t1_gisympo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4gs5/;1610361701;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aerohed;;;[];;;;text;t2_xjmyo;False;False;[];;I saw that. I would've laughed if not for the fact that I could barely breathe for most of the episode due to how tense it was.;False;False;;;;1610318520;;False;{};git4gwy;False;t3_kujurp;False;False;t1_gisuya6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4gwy/;1610361703;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Orzislaw;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Orzi/;light;text;t2_h8rc3;False;False;[];;Knowing AoT he won't. This anime shown us countless times already that people often die before completing their goals.;False;False;;;;1610318524;;False;{};git4h8n;False;t3_kujurp;False;False;t1_gisvou9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4h8n/;1610361708;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610318529;;False;{};git4ho8;False;t3_kujurp;False;False;t1_git41xx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4ho8/;1610361713;1;True;False;anime;t5_2qh22;;0;[]; -[];;;uncen5ored;;;[];;;;text;t2_800mwmv;False;False;[];;"I’m very glad they didn’t cut Bert’s message in the beginning of thinking that the man just wanted to be judged. It’s a small touch, but it connects with how Reiner pretty much rejected Eren’s excuses and wanted to be judged and even killed. It’s a theme of guilt that I don’t see tackled often. - -Actually; the fact that Mappa adapted almost 2 chapters worth of pure dialogue with almost no cuts is amazing. They did cut one thing, but it was probably moved and makes more sense to do so.";False;False;;;;1610318537;;False;{};git4i8t;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4i8t/;1610361722;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;"> The Eren - -Biggest character development right here. When you become such a famous badass you become The Eren.";False;False;;;;1610318539;;False;{};git4iff;False;t3_kujurp;False;False;t1_gispdld;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4iff/;1610361725;19;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexxxandreS;;;[];;;;text;t2_25oteqzx;False;False;[];;Yeah that's true, but I thought I'd see people talking about the war hammer titan since its debut is finally happening. I'm hyped af to see what's it like and of course, everything else happening;False;False;;;;1610318546;;False;{};git4ize;False;t3_kujurp;False;True;t1_git479z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4ize/;1610361734;1;True;False;anime;t5_2qh22;;0;[]; -[];;;papoluca12;;;[];;;;text;t2_4ulzi5xy;False;False;[];;This is true. Every time I rewatch the first two seasons, I find a new detail that adds to the context of the story;False;False;;;;1610318552;;False;{};git4jex;False;t3_kujurp;False;True;t1_gishsn3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4jex/;1610361739;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BarnacleMANN;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Dankbum;light;text;t2_cck32;False;False;[];;I saw it and ignored it, thinking it was some dumb shit a politician said in response to certain happenings. I'm having a good laugh now that I know it was AoT.;False;False;;;;1610318556;;False;{};git4jqo;False;t3_kujurp;False;False;t1_gisaeyc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4jqo/;1610361745;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ThunderClap448;;;[];;;;text;t2_hkf4v;False;False;[];;Also started feeling for the people on the opposing side. Realized they're not utter evil but what has to be done, has to be done.;False;False;;;;1610318561;;False;{};git4k3z;False;t3_kujurp;False;False;t1_gisizez;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4k3z/;1610361751;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610318570;;False;{};git4ktn;False;t3_kujurp;False;True;t1_git3i7o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4ktn/;1610361762;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EdvinM;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PZenith;light;text;t2_68hqn;False;False;[];;"> Eren then gained both when he ate Grisha. - -When exactly did that happen? Was it during the timeskip between the wall breach and when Eren got recruited into the Scout Corp (or whatever it was called; I'm too afraid to Google it)?";False;False;;;;1610318573;;False;{};git4l2y;False;t3_kujurp;False;True;t1_gisyvpn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4l2y/;1610361766;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;As reflected in the poster art for the season.;False;False;;;;1610318578;;False;{};git4lhl;False;t3_kujurp;False;True;t1_gistz0c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4lhl/;1610361772;1;True;False;anime;t5_2qh22;;0;[]; -[];;;galileotheweirdo;;MAL;[];;myanimelist.net/animelist/galileotheweirdo;dark;text;t2_gwyf6;False;False;[];;I was thinking it could be Connie. If Pieck has seen the soldier, he had to have been in the Battle for Shiganshina. But the hair color isn't right. So either Connie or Armin...;False;False;;;;1610318579;;False;{};git4lku;False;t3_kujurp;False;True;t1_gisf53y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4lku/;1610361773;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Phortieniyn;;;[];;;;text;t2_j7czw;False;False;[];;I'm picturing Reiner sitting in the rubble of that building, crying and munching on his Kitkat while Eren rages in the background.;False;False;;;;1610318580;;1610320508.0;{};git4lmn;False;t3_kujurp;False;False;t1_gisaihi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4lmn/;1610361774;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;AoT fully commiting to being a mecha show finally;False;False;;;;1610318584;;False;{};git4lyr;False;t3_kujurp;False;False;t1_git2pdq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4lyr/;1610361780;6;True;False;anime;t5_2qh22;;0;[]; -[];;;FierceAlchemist;;;[];;;;text;t2_fcfw8;False;False;[];;Such a well directed tense episode. Major props to Yoshimasa Hosoya, the voice actor for Reiner. He was amazing for that whole conversation.;False;False;;;;1610318586;;False;{};git4m50;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4m50/;1610361782;8;True;False;anime;t5_2qh22;;0;[]; -[];;;KMark67;;;[];;;;text;t2_3es92ndg;False;False;[];;"I read the manga as well I think they did a good job it was a bit to rushed for me but I loved how they captured the essence of the conversation, but I still felt like I needed to defend it from the uncalled/untrue ""Wit would have done it better"", ""This scene was underwhelming"" comments.";False;False;;;;1610318591;;False;{};git4mje;False;t3_kujurp;False;True;t1_git3edj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4mje/;1610361789;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610318595;;False;{};git4msn;False;t3_kujurp;False;True;t1_gisbw9m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4msn/;1610361792;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SillyDifference;;;[];;;;text;t2_2lgnmcv0;False;False;[];;SNK gonna save this decade;False;False;;;;1610318605;;False;{};git4nj5;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4nj5/;1610361803;8;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;You will understand the objective here, in the next few episodes.;False;False;;;;1610318638;;False;{};git4q0y;False;t3_kujurp;False;False;t1_git4fnx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4q0y/;1610361840;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cantaneer;;;[];;;;text;t2_1ib8wxpm;False;False;[];;armin wouldn’t do that. he has limits.;False;False;;;;1610318644;;False;{};git4qid;False;t3_kujurp;False;False;t1_git4fnx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4qid/;1610361847;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Ksradrik;;;[];;;;text;t2_1wtl783j;False;False;[];;"> He is perfectly able to fight back without killing thousands of innocent civilians. - -Lol yeah, he could just severely cripple his options to assure there wont be any civilian casualties on their side, and if that makes him lose and gets hit entire country exterminated, thats just shit luck then, at least hes got more moral highground, which he really needs after the enemy did the equivalent of a preemptive nuclear strike.";False;False;;;;1610318644;;False;{};git4qin;False;t3_kujurp;False;False;t1_git3rez;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4qin/;1610361847;16;True;False;anime;t5_2qh22;;0;[]; -[];;;dmtgemini;;;[];;;;text;t2_11138d;False;False;[];;And the week long wait begins... Every episode gives me post anime depression;False;False;;;;1610318663;;False;{};git4rxv;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4rxv/;1610361869;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;I still can't believe that completely stupid looking titan is one of the main Warriors and its holder is, well, her. The complete opposite of dear Berty - a plain guy with an awesome titan vs an awesome woman with a dumb titan.;False;False;;;;1610318664;;False;{};git4s0p;False;t3_kujurp;False;False;t1_gise7va;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4s0p/;1610361870;12;True;False;anime;t5_2qh22;;0;[]; -[];;;IsecoranI;;;[];;;;text;t2_38at04ro;False;False;[];;I'm pretty sure the pins are just for the decorated soldiers in general.;False;False;;;;1610318665;;False;{};git4s4s;False;t3_kujurp;False;False;t1_git0p4p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4s4s/;1610361872;18;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;Eren is the opposite of his character. Literally.;False;False;;;;1610318676;;False;{};git4syh;False;t3_kujurp;False;False;t1_git49tj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4syh/;1610361884;7;True;False;anime;t5_2qh22;;0;[]; -[];;;MashiroSunao;;;[];;;;text;t2_8w3qf;False;False;[];;[RIP that guy in the back](https://i.imgur.com/WwylaO4.jpg);False;False;;;;1610318680;;False;{};git4tan;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4tan/;1610361890;11;True;False;anime;t5_2qh22;;0;[]; -[];;;TheIronkun;;;[];;;;text;t2_7d6poxrl;False;False;[];;There was a lot of subtle messages in this episode and your post basically cleared it all up for me. Its been awhile since I've watched the earlier seasons, but holy shit, this feel like what Game of Thone later seasons should've been. The entire anime has been leading to this point and its happening beautifully.;False;False;;;;1610318681;;False;{};git4tbi;False;t3_kujurp;False;False;t1_gisrcy6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4tbi/;1610361890;45;True;False;anime;t5_2qh22;;0;[]; -[];;;SourmanTheWise;;;[];;;;text;t2_1100cd;False;False;[];;*his world;False;False;;;;1610318700;;False;{};git4ut5;False;t3_kujurp;False;False;t1_gisuj0d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4ut5/;1610361912;47;True;False;anime;t5_2qh22;;0;[]; -[];;;matigno;;;[];;;;text;t2_pppli;False;False;[];;It is during that timeskip yes;False;False;;;;1610318721;;False;{};git4wc8;False;t3_kujurp;False;True;t1_git4l2y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4wc8/;1610361935;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Im_Greatness;;;[];;;;text;t2_2v5bcqyo;False;False;[];;It is.;False;False;;;;1610318728;;False;{};git4ww0;False;t3_kujurp;False;False;t1_gisku4q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4ww0/;1610361944;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Astan92;;MAL;[];;http://myanimelist.net/animelist/Astan92;dark;text;t2_57f8u;False;False;[];;Full of people;False;False;;;;1610318730;;False;{};git4x1d;False;t3_kujurp;False;False;t1_git4evl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4x1d/;1610361945;50;True;False;anime;t5_2qh22;;0;[]; -[];;;Taurus24Silver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Taurus-Silver;light;text;t2_826uaxw;False;False;[];;"There were a lot of speculations, and eveeyone was waiting for ep 5 to air to see whether MAPPA can nail the HYPE eps or not, and they just fckin did - -THE ANIME COMMUNITY HAS RECEIVED THE GRIM REMINDER - -THE KING IS GOING STRAIGHT TO THE TOPPPP";False;False;;;;1610318738;;False;{};git4xlp;False;t3_kujurp;False;False;t1_gisyveb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4xlp/;1610361953;11;True;False;anime;t5_2qh22;;0;[]; -[];;;taprik;;;[];;;;text;t2_1rdvdqg5;False;False;[];;Attack Titan SMASH!;False;False;;;;1610318742;;False;{};git4xz1;False;t3_kujurp;False;False;t1_git4evl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4xz1/;1610361959;20;True;False;anime;t5_2qh22;;0;[]; -[];;;uncen5ored;;;[];;;;text;t2_800mwmv;False;False;[];;"He wished that on Reiner & Bert because he blamed them for his suffering, mom’s death, and pain. By saying that he no longer wishes it, he’s admitting that he no longer views Reiner that way & even understands where he’s coming from, but that doesn’t erase the fact that they are still enemy nations.";False;False;;;;1610318761;;False;{};git4zco;False;t3_kujurp;False;False;t1_git3pxv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4zco/;1610361980;10;True;False;anime;t5_2qh22;;0;[]; -[];;;choybok77;;;[];;;;text;t2_7mwj24up;False;False;[];;I couldn't breathe during this episode. Absolutely mind-blowing. I just know the next episode will have me passed out halfway through.;False;False;;;;1610318761;;False;{};git4zdg;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4zdg/;1610361981;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lordrice;;;[];;;;text;t2_8yby8;False;False;[];;I'm not sure how the titan transformation works exactly, but it seems to me that titan shifters have to draw blood in order to transform. It could be that Eren intentionally cut his hand so that he could shift into his titan form on demand in that moment.;False;False;;;;1610318763;;False;{};git4zgy;False;t3_kujurp;False;False;t1_git3zkd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git4zgy/;1610361982;8;True;False;anime;t5_2qh22;;0;[]; -[];;;SoulTea;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/SoulTea;light;text;t2_6by2x;False;False;[];;I think they are too tall to be quite a few of the characters including Connie as well. They are tall enough to be Jean and He's pretended to be Eren before but it didn't sound like him either. I suppose they may have a way to dye hair.;False;False;;;;1610318771;;False;{};git503i;False;t3_kujurp;False;True;t1_git4lku;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git503i/;1610361991;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThunderClap448;;;[];;;;text;t2_hkf4v;False;False;[];;The H in Reiner Braun stands for happiness.;False;False;;;;1610318774;;False;{};git50a0;False;t3_kujurp;False;False;t1_gisl84r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git50a0/;1610361994;78;True;False;anime;t5_2qh22;;0;[]; -[];;;Kyseraphym;;;[];;;;text;t2_n5pkb;False;False;[];;Distantly, yes. They're both descendants of the same family line but Mikasa's branch of the family went to Shingashina to hide in hopes of escaping persecution by the Royal Family. Kenny says this to his grandfather back in season 3.;False;False;;;;1610318776;;False;{};git50hi;False;t3_kujurp;False;False;t1_git3xs1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git50hi/;1610361998;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Elaego;;;[];;;;text;t2_55zd6hhb;False;False;[];;I think part of it though is Eren needed to eat Willy, since he might have the Warhammer titan, and if he does, then they get another titan power. If they nuked it, that couldn't happen. And Armin might play a role later, which would mean that they couldn't use him for this, since the Colossal has the worst stamina.;False;False;;;;1610318777;;False;{};git50iw;False;t3_kujurp;False;False;t1_git4fnx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git50iw/;1610361998;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MrHarpuia;;;[];;;;text;t2_l06ow;False;False;[];;[Here's a list.](https://tvtropes.org/pmwiki/pmwiki.php/CallBack/OnePiece) Spoilers of course. Though they are spoiler tagged so you should be fine if you want to look at it. I actually think there's some missing from that but I'm not sure.;False;False;;;;1610318784;;False;{};git5125;False;t3_kujurp;False;False;t1_giszoxo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5125/;1610362006;17;True;False;anime;t5_2qh22;;0;[]; -[];;;John9tv;;;[];;;;text;t2_130n18;False;False;[];;what is the big difference between the well kind of structure that the two eldian/marleyan titan shifters fell into and the basement Eren is in? Is it not all brick in both cases? Maybe the floor in the house is wood idk;False;False;;;;1610318787;;False;{};git51ba;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git51ba/;1610362010;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CloudMountainJuror;;;[];;;;text;t2_hbfr1;False;False;[];;"If you read what I said I said that Mob Pscyho's animation was gorgeous - it's the story's pacing that was botched. - -And it's not that MHA or AoT suffer from ""bad"" animation, it's that their animation quality has noticeably gotten worse overall over time. Go back to MHA season 1 or AoT season 1 and see how relatively spotless and polished everything looks, how dynamic everything feels. Then look at the first half of MHA season 4 or this episode of AoT and note the differences, where budget/time-saving techniques are being used in the way of things feeling more...stiff, more motionless, less expressive. Way more panning shots, way more characters having one expression for the duration of an entire panning shot to save time on giving them actual movement to make them look like they're actually alive, less detail in environments, less ""dimension"" overall in the cinematography... They're not *bad*, but they're definitely a shadow of what they used to be. The quality standard has lowered, and it makes the show less immersive. - -It just gets harder to feel excited about things when I can't have faith that the quality control is going to be reasonably consistent across seasons. This is a smaller example but, for instance, it kinda depresses me that the Colossal Titan never looked as good as it did in episodes 1 and 5 of the anime ever again, because it was replaced with distracting CGI in every appearance afterwards. I don't feel like I ever *really* saw the same Colossal Titan that ruined Eren's life again.";False;False;;;;1610318792;;1610319004.0;{};git51oj;False;t3_kujurp;False;False;t1_git35lk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git51oj/;1610362015;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;What’s clear is Magath clearly knows something is going down;False;False;;;;1610318796;;False;{};git51ws;False;t3_kujurp;False;False;t1_gisfvt9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git51ws/;1610362019;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Radix3D;;;[];;;;text;t2_4pafckex;False;False;[];;"This is moving the goal-posts all the way to the moon. The original commentator was talking about the laws of war. My reply was highlighting that killing non-combatants is also a war crime. - -Also, Nation A killing innocents in Nation B doesn't somehow give Nation B the right to then start killing innocents in Nation A.";False;False;;;;1610318797;;False;{};git520s;False;t3_kujurp;False;True;t1_git3ter;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git520s/;1610362020;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ENKlDU;;;[];;;;text;t2_4scvchzo;False;False;[];;Could of been better;False;False;;;;1610318808;;False;{};git52tc;False;t3_kujurp;False;True;t1_gisaldb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git52tc/;1610362033;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Snoop_Sheep;;;[];;;;text;t2_g25zn;False;False;[];;manga reader for sure. farming karma;False;False;;;;1610318829;;False;{};git54bx;False;t3_kujurp;False;True;t1_gisgrpn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git54bx/;1610362056;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Armensis;;;[];;;;text;t2_35bh6crf;False;False;[];;Quite the juxtaposition with Reiner;False;False;;;;1610318833;;False;{};git54nr;False;t3_kujurp;False;True;t1_gisao83;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git54nr/;1610362062;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LordHandQyburn;;;[];;;;text;t2_g6rj5j;False;False;[];;Im not rooting for Eren on this one;False;False;;;;1610318844;;False;{};git55e1;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git55e1/;1610362073;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Kayounenka;;;[];;;;text;t2_979nn22a;False;False;[];;Falco is so pure, him and his brother Colt are so pure, poor Grice bros;False;False;;;;1610318847;;False;{};git55oa;False;t3_kujurp;False;False;t1_giscnq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git55oa/;1610362077;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Sew_chef;;;[];;;;text;t2_7xse4595;False;False;[];;Also, I bet he's been training like hell to be able to do things he previously thought were impossible. To destroy the world, you need to always be able to show *more* strength than anyone else.;False;False;;;;1610318848;;False;{};git55p8;False;t3_kujurp;False;False;t1_giszt5t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git55p8/;1610362077;102;True;False;anime;t5_2qh22;;0;[]; -[];;;FiveDividedByZero;;;[];;;;text;t2_12qlqr;False;False;[];;Oh my god. That was an amazing episode. The pacing. The parallels. The tension. So good.;False;False;;;;1610318848;;False;{};git55py;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git55py/;1610362078;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NotFruity_Mango;;;[];;;;text;t2_4gcwp4qw;False;False;[];;True he could not prosses that he ate the God of destuction aka bertold;False;False;;;;1610318849;;False;{};git55t6;False;t3_kujurp;False;True;t1_git4qid;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git55t6/;1610362079;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TatteredTongues;;;[];;;;text;t2_xbrbp;False;False;[];;"Marcel was a highly trained warrior who had already killed people/help take down an entire country. - - -If any of the 2 was more ""fit"" to react on the spot, it would be Marcel, especially when you take into account that whoever is the War Hammer Titan probably has yet to put it to use ever since they inherited it.";False;False;;;;1610318851;;False;{};git55y3;False;t3_kujurp;False;True;t1_git4g5s;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git55y3/;1610362081;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rarely_exactly_right;;;[];;;;text;t2_6o90vqzf;False;False;[];; I've been waiting so long for this episode and it did not disappoint. One of the best Attack on Titan episodes. The build up was phenomenal and the payoff even more so.;False;False;;;;1610318852;;False;{};git55zm;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git55zm/;1610362083;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Yami_Bas;;;[];;;;text;t2_8jrya;False;False;[];;I though this was Pieck being smart and not trusting the disguised Armin and passed a message?;False;False;;;;1610318852;;False;{};git560x;False;t3_kujurp;False;False;t1_gisctsk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git560x/;1610362083;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ErBaut;;;[];;;;text;t2_w10av;False;False;[];;Next chapter: embrace the darkness and let the feast begins;False;False;;;;1610318856;;False;{};git569p;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git569p/;1610362087;3;True;False;anime;t5_2qh22;;0;[]; -[];;;YakubTheCreat0r;;;[];;;;text;t2_375tul6u;False;False;[];;[how the manga chapter looked like](https://i.imgur.com/h4C9AOf.jpg). Even more brutal;False;False;;;;1610318857;;False;{};git56d1;False;t3_kujurp;False;False;t1_gish4zq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git56d1/;1610362087;26;True;False;anime;t5_2qh22;;0;[]; -[];;;aniviasrevenge;;;[];;;;text;t2_64n5l;False;False;[];;"It was such a bleak moment the more I think about it. - -Eren offers forgiveness to Reiner and in fact apologizes for threatening to engage in a personal war of misery on Reiner and his countrymen in a fit of rage years ago... - - -...but at the last moment, without breaking stride, reveals that of course he still plans to destroy them all. It just isn't personal anymore, it's about saving his own countrymen.";False;False;;;;1610318868;;1610319570.0;{};git577n;False;t3_kujurp;False;False;t1_gisw64z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git577n/;1610362101;18;True;False;anime;t5_2qh22;;0;[]; -[];;;fluskar;;;[];;;;text;t2_1tmcep31;False;False;[];;eren casually traumatizing falco;False;False;;;;1610318875;;False;{};git57pf;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git57pf/;1610362108;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Taurus24Silver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Taurus-Silver;light;text;t2_826uaxw;False;False;[];;"It still has some competition for now, but yeah - -It is going straight to the top once chapter 119-122 is adapted";False;False;;;;1610318880;;False;{};git5827;False;t3_kujurp;False;False;t1_gism62t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5827/;1610362113;8;True;False;anime;t5_2qh22;;0;[]; -[];;;vodkamasta;;MAL;[];;http://myanimelist.net/animelist/Vahlokdotiid;dark;text;t2_l7ucz;False;False;[];;What Eren is doing is basically what the US did to Japan. He nuked them to end the war faster. Just throwing it out there for people to think about it.;False;False;;;;1610318891;;False;{};git58wq;False;t3_kujurp;False;False;t1_gisxu8b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git58wq/;1610362127;4;True;False;anime;t5_2qh22;;0;[]; -[];;;jcruz18;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/jcruz13;light;text;t2_qqttp;False;False;[];;That was one of the most insane episodes of anything I've ever seen. I'm speechless.;False;False;;;;1610318893;;False;{};git591c;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git591c/;1610362128;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Space_Dwarf;;;[];;;;text;t2_w8dso;False;False;[];;Yes, particularly Manga spoiler;False;False;;;;1610318894;;False;{};git594q;False;t3_kujurp;False;True;t1_git0eh3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git594q/;1610362129;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThunderClap448;;;[];;;;text;t2_hkf4v;False;False;[];;"Doubt. I mean, at that point there's nothing to stop it. That would be the last chapter because that's the equivalent ""and then they nuked everything except themselves"".";False;False;;;;1610318898;;False;{};git59ed;False;t3_kujurp;False;False;t1_gisy7gq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git59ed/;1610362133;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Elaego;;;[];;;;text;t2_55zd6hhb;False;False;[];;It probably took a whole one second for Eren to transform, then crush Willy. And a very injured titan shifter can't transform. Not that much time to react.;False;False;;;;1610318903;;False;{};git59uw;False;t3_kujurp;False;True;t1_git4g5s;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git59uw/;1610362141;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Anime_Cuck;;;[];;;;text;t2_70sbgk61;False;False;[];;I've been giggling like a little school girl for half an hour now;False;False;;;;1610318904;;False;{};git59wc;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git59wc/;1610362141;8;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaiinessa;;;[];;;;text;t2_yyh9ap7;False;False;[];;i just cant wait for next episode this one was great but i cant wait for whats next;False;False;;;;1610318914;;False;{};git5alr;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5alr/;1610362152;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610318922;;False;{};git5b8i;False;t3_kujurp;False;True;t1_giszsql;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5b8i/;1610362162;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;For the Emperor! Death to the Heretics!;False;False;;;;1610318924;;False;{};git5bd4;False;t3_kujurp;False;True;t1_gisapyn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5bd4/;1610362163;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;The well is much more narrow and also goes deeper. They also can't transform without risking killing eachother in the explosion.;False;False;;;;1610318929;;False;{};git5bqu;False;t3_kujurp;False;True;t1_git51ba;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5bqu/;1610362169;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;Yup. The morning of the wall breach Grisha went to the Reiss and took the Founding Titan. He picked up Eren at the shelter that night then proceeded to feed himself to him.;False;False;;;;1610318930;;False;{};git5bt8;False;t3_kujurp;False;False;t1_git4l2y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5bt8/;1610362169;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;We are Megumin. Only one upvote a day.;False;False;;;;1610318932;;False;{};git5bzh;False;t3_kujurp;False;False;t1_gisbt42;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5bzh/;1610362172;8;True;False;anime;t5_2qh22;;0;[]; -[];;;tossino;;;[];;;;text;t2_eb8ys;False;False;[];;Poor kid, seriously;False;False;;;;1610318938;;False;{};git5cdy;False;t3_kujurp;False;False;t1_giscnq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5cdy/;1610362178;10;True;False;anime;t5_2qh22;;0;[]; -[];;;claudiohp;;;[];;;;text;t2_hrdl1;False;False;[];;"Well, you know the saying. - -**YOU REAP WHAT YOU SOW.** - -You caused many innocent civilians casualties due to your war, and now Eren is doing the same, about to cause many innocent civilians casualties.";False;False;;;;1610318945;;False;{};git5cwa;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5cwa/;1610362185;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Taurus24Silver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Taurus-Silver;light;text;t2_826uaxw;False;False;[];;WTF is this shit??;False;False;;;;1610318946;;False;{};git5cz9;False;t3_kujurp;False;True;t1_gisrbou;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5cz9/;1610362187;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NotFruity_Mango;;;[];;;;text;t2_4gcwp4qw;False;False;[];;Armin did capture the jaw and kart right but how did she know him he would have only seen him toasted or as a small dot on the wall;False;False;;;;1610318971;;False;{};git5ewy;False;t3_kujurp;False;False;t1_git50iw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5ewy/;1610362214;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cojoB_;;;[];;;;text;t2_27b35u6d;False;False;[];;Eren declared the world as his enemy and attacked. What a masterpiece;False;False;;;;1610318973;;False;{};git5f1y;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5f1y/;1610362216;4;True;False;anime;t5_2qh22;;0;[]; -[];;;RDOoM;;;[];;;;text;t2_i9bs4;False;False;[];;"Reiner : *says anything* - -Eren : I'm just like you. - - -Going by the story so far, if what Willie said is true, tho Eren and the eldians, might kill some innocents going forward, but this seems to be all on Marley. They fired the first shot when all Frietz wanted was peace trough any means necessary. - -And even if his founding titan was stolen at one point, Eren is out for blood starting from the revenge he sought for his mom. If the wall wasn't broken like that, it's not as certain that Eren would have become what he is today. - -Also, is Willie the warhammer titan after all? Why did Eren go straight for turning him into a snack? And how did Eren even know that?";False;False;;;;1610318997;;False;{};git5gst;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5gst/;1610362242;3;True;False;anime;t5_2qh22;;0;[]; -[];;;no-fun-intended-69;;;[];;;;text;t2_41z80lii;False;False;[];;Did anyone else nut when eren transformed?;False;False;;;;1610319008;;False;{};git5hof;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5hof/;1610362255;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ENKlDU;;;[];;;;text;t2_4scvchzo;False;False;[];;"Would of made the scene 2x better for sure - -Also im surprised u weren’t downvoted lol";False;False;;;;1610319013;;False;{};git5i0y;False;t3_kujurp;False;True;t1_gisgzl3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5i0y/;1610362260;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tenroku;;;[];;;;text;t2_fx8kyu;False;False;[];;**A R T**;False;False;;;;1610319013;;False;{};git5i1v;False;t3_kujurp;False;True;t1_git5cz9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5i1v/;1610362261;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;I loved how he offered his hand to Reiner and Reiner took it.;False;False;;;;1610319016;;False;{};git5ia8;False;t3_kujurp;False;False;t1_gisrcy6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5ia8/;1610362264;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Elaego;;;[];;;;text;t2_55zd6hhb;False;False;[];;There was though. If there wasn't, it wouldn't have been reported to Magath that they were missing.;False;False;;;;1610319032;;False;{};git5jf7;False;t3_kujurp;False;True;t1_git40e2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5jf7/;1610362282;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HighSchoolThrowAw4y;;;[];;;;text;t2_g66tg;False;False;[];;Idk about the structural analysis but its probably a more reinforced well. And if one of them transformed they would literally squish the other to death.;False;False;;;;1610319036;;False;{};git5jnz;False;t3_kujurp;False;True;t1_git51ba;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5jnz/;1610362286;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;Yeah;False;False;;;;1610319036;;False;{};git5jpl;False;t3_kujurp;False;False;t1_git3m5w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5jpl/;1610362286;7;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;Shifters can transform whenever they want so long as they sustain a physical injury. That's why he didn't randomly transform even though his leg was missing.;False;False;;;;1610319041;;False;{};git5k1p;False;t3_kujurp;False;True;t1_git4zgy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5k1p/;1610362291;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ConArtist98;;;[];;;;text;t2_a133ktc;False;False;[];;"The brilliant setting, the stark contrast of both Eren's and Reiner's attitudes compared to when Eren was kidnapped in S2, Tybur fulfilling his duty of swapping one convenient ""truth"" for another and paying the price immediately. I genuinely didn't think it was possible to top part 2 of S3 but these motherfuckers are doing it.";False;False;;;;1610319049;;1610319317.0;{};git5ko2;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5ko2/;1610362300;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ThunderClap448;;;[];;;;text;t2_hkf4v;False;False;[];;Reiner prolly shielded him. Too crucial a character.;False;False;;;;1610319051;;False;{};git5kt7;False;t3_kujurp;False;False;t1_gisudtu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5kt7/;1610362302;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610319054;;False;{};git5l0x;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5l0x/;1610362306;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;"I have hope for falco, trailer shows him hanging on to someone with ODM gear mid flight - -My hope? Falco takes the Armor Titan and joins the Eldians of Paradise in an attempt to save Gabi from herself";False;False;;;;1610319054;;False;{};git5l25;False;t3_kujurp;False;False;t1_gisj33c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5l25/;1610362306;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Heavellan1;;;[];;;;text;t2_8o039n92;False;False;[];;LMAO *that doesn't sound good.*;False;False;;;;1610319055;;False;{};git5l55;False;t3_kujurp;False;True;t1_gisaeyc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5l55/;1610362307;2;True;False;anime;t5_2qh22;;0;[]; -[];;;pecimaut;;;[];;;;text;t2_47d5gsgb;False;False;[];;"Bruh i couldn't tell what Eren/Will Tybur's gonna say or do at any moment in this ep. One moment they seem nice and the next they're like ""oh we're evil"". - -10/10 episode";False;False;;;;1610319056;;False;{};git5l5m;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5l5m/;1610362308;7;True;False;anime;t5_2qh22;;0;[]; -[];;;whymauri;;;[];;;;text;t2_a8rrh;False;True;[];;small world, i used to post there as Mauri9001;False;False;;;;1610319072;;False;{};git5mea;False;t3_kujurp;False;False;t1_git5jpl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5mea/;1610362326;8;True;False;anime;t5_2qh22;;0;[]; -[];;;uncen5ored;;;[];;;;text;t2_800mwmv;False;False;[];;"Yup, I remember on the SnK sub people were getting very impatient to the point they were hating the arc and even dropping it, in particularly around chapter 96...we hadn’t seen Eren & co for almost half a year (though there were speculations that amputee-kun might be him) & ppl felt the plot was moving slow due to Reiner’s flashbacks being spread out. - -But the payoff was absolutely worth it; and it’s why Marley Arc is my favorite arc. It elevated the world & characters of AOT to another level, and the first half of dialogue heavy build up leads to crazy shit";False;False;;;;1610319075;;False;{};git5mmo;False;t3_kujurp;False;True;t1_git3kak;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5mmo/;1610362330;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;One of the highlights was Eren offering his hand to Reiner and Reiner accepting it.;False;False;;;;1610319075;;False;{};git5mmq;False;t3_kujurp;False;True;t1_gisc1bn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5mmq/;1610362330;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mario61752;;;[];;;;text;t2_10d49q;False;False;[];;MY SOLDIERS CUM ^for ^ereh;False;False;;;;1610319076;;False;{};git5mny;False;t3_kujurp;False;False;t1_git182w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5mny/;1610362331;14;True;False;anime;t5_2qh22;;0;[]; -[];;;MundoTundo;;;[];;;;text;t2_hgwd3;False;False;[];;"The end of this episode had me questioning who really is the bad guy? What makes Eren (and his comrades) any different from the people on the other side? And I guess Eren answered the question when talking to Reiner: “I’m the same as you”. - -10/10";False;False;;;;1610319080;;False;{};git5myd;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5myd/;1610362335;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Taurus24Silver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Taurus-Silver;light;text;t2_826uaxw;False;False;[];;OHHHHHH;False;False;;;;1610319084;;False;{};git5nan;False;t3_kujurp;False;True;t1_git5i1v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5nan/;1610362340;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BetaBoy777;;;[];;;;text;t2_m7mqrnm;False;False;[];;Can we talk about Eren’s character development? This guy went from your typical shonen protagonist to this...idk even know what to call him. Eren is so cold and calculating but so understanding of other’s pain at the same time. I don’t see how people could possibly say he’s not a top 10 anime character of all time.;False;False;;;;1610319085;;False;{};git5nbt;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5nbt/;1610362341;25;True;False;anime;t5_2qh22;;0;[]; -[];;;LEI1O;;;[];;;;text;t2_2i80ie67;False;False;[];;Bruh;False;False;;;;1610319086;;False;{};git5nfe;False;t3_kujurp;False;False;t1_gislbq5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5nfe/;1610362342;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610319089;;False;{};git5nnn;False;t3_kujurp;False;True;t1_git30uz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5nnn/;1610362345;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kupferkessel;;;[];;;;text;t2_55n0m693;False;False;[];;"From a german point of view, when reading the manga it was very on the nose that this is a ""Nazi - Jew thing"" that was going on there with the Eldians and Marley. With the ghetto probably inspired by Warschau, the armbands, the sin from the past...";False;False;;;;1610319093;;False;{};git5nz5;False;t3_kujurp;False;False;t1_gishtsr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5nz5/;1610362351;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Snoop_Sheep;;;[];;;;text;t2_g25zn;False;False;[];;A lot of manga readers in this thread pretending to be anime-only. Kinda cringy. LOVED the ep by the way;False;False;;;;1610319108;;False;{};git5p2x;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5p2x/;1610362367;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Tyrath;;MAL;[];;https://myanimelist.net/animelist/Tyrath;dark;text;t2_63lpq;False;False;[];;That episode also felt 1 second long. Holy Helos, I've read the manga and was still so tense during the whole thing.;False;False;;;;1610319109;;False;{};git5p6l;False;t3_kujurp;False;False;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5p6l/;1610362369;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Elaego;;;[];;;;text;t2_55zd6hhb;False;False;[];;It's too tall to be him. Since Pieck has seen them before, they must be from Marley, so they are probably an Eldian Restorationist that teamed up with Paradis.;False;False;;;;1610319116;;False;{};git5pq1;False;t3_kujurp;False;True;t1_git41xx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5pq1/;1610362377;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NotFruity_Mango;;;[];;;;text;t2_4gcwp4qw;False;False;[];;"He said they would not go at war with us - -Well that was a lie";False;False;;;;1610319119;;False;{};git5py6;False;t3_kujurp;False;True;t1_gisad63;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5py6/;1610362380;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;I'm incredibly intrigued to see how far he'll go and what he'll do. Even more to see if Reiner transforms to try to stop him.;False;False;;;;1610319125;;False;{};git5qdd;False;t3_kujurp;False;False;t1_git3z5x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5qdd/;1610362386;4;True;False;anime;t5_2qh22;;0;[]; -[];;;CelesteRed;;;[];;;;text;t2_461p0jql;False;True;[];;He's basically saying that he doesn't WANT to do it like he used to, but at the same time, he has no choice.;False;False;;;;1610319130;;False;{};git5qsg;False;t3_kujurp;False;False;t1_git3pxv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5qsg/;1610362393;8;True;False;anime;t5_2qh22;;0;[]; -[];;;RenaissanceMasochist;;;[];;;;text;t2_81l5fu3h;False;False;[];;I’m anime only but I feel like Falco is going to be the solution to all of this somehow;False;False;;;;1610319133;;False;{};git5r2g;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5r2g/;1610362396;5;True;False;anime;t5_2qh22;;0;[]; -[];;;dp_kl;;;[];;;;text;t2_mexrh;False;False;[];;Holy shit 10k already and we are still far from the peak of the series.;False;False;;;;1610319165;;False;{};git5tgk;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5tgk/;1610362431;4;True;False;anime;t5_2qh22;;0;[]; -[];;;RDOoM;;;[];;;;text;t2_i9bs4;False;False;[];;Wow... he sure got taller. Is it because he ate the collosal titan or what?;False;False;;;;1610319166;;False;{};git5ti9;False;t3_kujurp;False;True;t1_git41xx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5ti9/;1610362432;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610319167;;False;{};git5tkf;False;t3_kujurp;False;True;t1_git4ktn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5tkf/;1610362433;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;I guess so yeah. But this season has been from perspective of the Marleyans, so I think you can make a case for Eren being the antagonist in AoT S4 so far;False;False;;;;1610319171;;False;{};git5tvz;False;t3_kujurp;False;True;t1_git2pxr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5tvz/;1610362437;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jobe1105;;;[];;;;text;t2_wccn6;False;False;[];;Falco literally that one guy that watches the AoT recap episodes lmao;False;False;;;;1610319177;;False;{};git5uci;False;t3_kujurp;False;False;t1_gistckf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5uci/;1610362445;57;True;False;anime;t5_2qh22;;0;[]; -[];;;ali_1707;;;[];;;;text;t2_3s2yzsam;False;False;[];;We might just get a 3 hour movie instead;False;False;;;;1610319180;;False;{};git5ukb;False;t3_kujurp;False;False;t1_git0jsa;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5ukb/;1610362448;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Sujallamichhaneakasl;;;[];;;;text;t2_3i2s1kbj;False;False;[];;What are you talking about? Didn't you hear the main theme of the entire goddamn series playing in the back. How was that not fucking amazing,;False;False;;;;1610319182;;False;{};git5uq9;False;t3_kujurp;False;False;t1_git3h9v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5uq9/;1610362450;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Kupferkessel;;;[];;;;text;t2_55n0m693;False;False;[];;Exactly my thought. I didn't even remember the event being foreshadowed;False;False;;;;1610319184;;False;{};git5usz;False;t3_kujurp;False;False;t1_gissd2g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5usz/;1610362452;5;True;False;anime;t5_2qh22;;0;[]; -[];;;blitzbom;;;[];;;;text;t2_6h9w1;False;False;[];;"Hmmmmm. You got me thinking. - -Eren has the coordinate, the king used it's power to make those Titans harden into the walls. - -Can Eren undo the hardening?";False;False;;;;1610319196;;False;{};git5vr7;False;t3_kujurp;False;False;t1_gisy7gq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5vr7/;1610362467;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;That means this scene did its job. Eren is my favorite character but he's no doubt commiting war crimes now.;False;False;;;;1610319200;;False;{};git5w04;False;t3_kujurp;False;False;t1_git55e1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5w04/;1610362470;8;True;False;anime;t5_2qh22;;0;[]; -[];;;BestGirlPieck;;;[];;;;text;t2_4pr9icvi;False;False;[];;Where do i sign up?;False;False;;;;1610319206;;False;{};git5wfh;False;t3_kujurp;False;False;t1_gisc0j3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5wfh/;1610362476;7;True;False;anime;t5_2qh22;;0;[]; -[];;;TheWorthlessGuy;;;[];;;;text;t2_6hhgjoi;False;False;[];;"Yup, I saw the edited ""YouSeeBigGirl"" version and I was speechless and I even got shivers. But other than that, the anime is so far great.";False;False;;;;1610319208;;False;{};git5wjx;False;t3_kujurp;False;True;t1_giszxsa;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5wjx/;1610362479;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ampulla_of_Vater;;;[];;;;text;t2_gzeao;False;False;[];;I don't think Eren wants to involve Historia, so she's probably not part of this counter-assault.;False;False;;;;1610319209;;False;{};git5wnx;False;t3_kujurp;False;True;t1_git1999;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5wnx/;1610362480;2;True;False;anime;t5_2qh22;;0;[]; -[];;;vagabondchris;;;[];;;;text;t2_9re79isd;False;False;[];;I’m assuming the soldier that escorted Pieck and Porco is Armin? Am I correct lol? Anyways, this episode was beyond HYPE. Had my heart racing the entire time during Reiner and Eren’s dialogue. I also love how calm Eren was even though he knew he was there to fuck shit up from the start.;False;False;;;;1610319216;;False;{};git5x4c;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5x4c/;1610362488;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuck_Taha_Emre;;;[];;;;text;t2_7zgvwi1l;False;False;[];;Ahh... I see... Welp, that is pretty fucked up.;False;False;;;;1610319220;;False;{};git5xeu;False;t3_kujurp;False;True;t1_git1mt4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5xeu/;1610362492;1;True;False;anime;t5_2qh22;;0;[]; -[];;;John9tv;;;[];;;;text;t2_130n18;False;False;[];;yeah that's a good point. What about transforming partly. Can't they do that? Annie was able to transform just her arm and so was the king inside the walls that Kenny was friends with. Both of their titan forms do seem pretty small so idk if they somehow transformed in a vertical way maybe there would be more space?;False;False;;;;1610319226;;False;{};git5xv6;False;t3_kujurp;False;True;t1_git5jnz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5xv6/;1610362499;1;True;False;anime;t5_2qh22;;0;[]; -[];;;slowdrem20;;;[];;;;text;t2_c7n2y;False;False;[];;"Yea but its different if Nation A's, ""innocents"" actively support the killing and extermination of Nation B's innocents.";False;False;;;;1610319229;;False;{};git5y20;False;t3_kujurp;False;True;t1_git520s;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5y20/;1610362502;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThunderClap448;;;[];;;;text;t2_hkf4v;False;False;[];;"My fav part was when Willy used Wren's line about being born into this world. - -A slightly self-reflecting, ironic smirk showed more than I hoped for.";False;False;;;;1610319234;;False;{};git5yfa;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5yfa/;1610362507;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PortoGuy18;;;[];;;;text;t2_2fidx1m;False;False;[];;I am a manga reader, i haven't said anything spoilerish, i only corrected some people on events and things that were said in Season 3 Part 1. But if there is anyone here trying to spoil people, then yeah, dick move.;False;False;;;;1610319236;;False;{};git5yjt;False;t3_kujurp;False;False;t1_git5p2x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5yjt/;1610362509;5;True;False;anime;t5_2qh22;;0;[]; -[];;;aes110;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aes110;light;text;t2_jj27q;False;True;[];;"Regarding Eren, I have the faintest hope that someone evacuated the building, but that surely isn't true. However I'm fine with him killing these people because it's a small necessary sacrifice, similar to the battle vs Annie. And while most of the people in Marley are ""nazis"" to Eldians, I hope Eren doesn't start just killing everyone. - -Regarding Reiner, I am seeing all of those comments in this thread and it kinda feels like I'm the only kid who didnt grow up, but I dont forgive Reiner or accept what he did. The very first breaking of the wall? He was a kid so that is totally fine. But everything from the battle of Trost forward is inexcusable. Reiner, had grown up for years in the walls and saw how everything he was ever thought is a lie, and how all of these people in the walls, and his people outside the walls are living because of his own devil of a country, then still continued everything as planned. - -Everything thing is morally grey, but Eren is much more to the white side while Reiner is much more to the dark side.";False;False;;;;1610319248;;False;{};git5zf1;False;t3_kujurp;False;False;t1_gischn4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5zf1/;1610362522;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;The King supposedly told the Tyburs that if he allowed Paradise a brief moment of peace he’d accept their eventual retribution. Therefore, the Tyburs gave him 100 years before entering the walls to take Founding Titan and the military might that came with it;False;False;;;;1610319252;;False;{};git5znq;False;t3_kujurp;False;False;t1_gisjnrv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git5znq/;1610362525;10;True;False;anime;t5_2qh22;;0;[]; -[];;;saga999;;;[];;;;text;t2_9ppe9;False;False;[];;"""Chill man, we're cool. You got to do what you got to do. I understand perfectly now. No, don't apologize. You have no choice man. And neither do I. We're the same. I don't want this to happen. Look, I just want to tell you we're cool man. It's really important that you to hear this from me before I kill everyone you love.""";False;False;;;;1610319261;;False;{};git60ca;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git60ca/;1610362536;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Episode 4 had non-repetitive movement done in 2D for the female titan. The CG shot of Eren was pretty much a still;False;False;;;;1610319266;;False;{};git60qn;False;t3_kujurp;False;True;t1_gisz15v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git60qn/;1610362542;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sim0n2170;;;[];;;;text;t2_d8h9g;False;False;[];;Crazy episode;False;False;;;;1610319269;;False;{};git60wk;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git60wk/;1610362544;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SungBlue;;;[];;;;text;t2_4t5s3f;False;False;[];;From what we've seen so far, Eren and co were equally prepared for war or peace. If Willie had made a different speech and the Marleyan army was onside, Eren could have made a very different dramatic appearance on stage.;False;False;;;;1610319282;;False;{};git61wu;False;t3_kujurp;False;False;t1_git280t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git61wu/;1610362558;17;True;False;anime;t5_2qh22;;0;[]; -[];;;blitzbom;;;[];;;;text;t2_6h9w1;False;False;[];;"I love this parallel. - -The world ""let's go to war!"" - -Eren ""War is here, but it's on your shores, not ours.""";False;False;;;;1610319283;;False;{};git61xv;False;t3_kujurp;False;False;t1_gisboc1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git61xv/;1610362558;9;True;False;anime;t5_2qh22;;0;[]; -[];;;bbybokuto;;;[];;;;text;t2_8cftym0v;False;False;[];;Eren asked because he wanted Reiner to understand what he meant when he said they’re the same. He wanted Reiner to say himself that he did everything for the sake of his people, so that Eren could drive home the point that he too was doing everything he did for the people of Paradis;False;False;;;;1610319289;;False;{};git62cu;False;t3_kujurp;False;False;t1_giszjlz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git62cu/;1610362564;15;True;False;anime;t5_2qh22;;0;[]; -[];;;cantaneer;;;[];;;;text;t2_1ib8wxpm;False;False;[];;we’re just trying to live the same hype as anime onlies without spoiling them;False;False;;;;1610319290;;False;{};git62fv;False;t3_kujurp;False;True;t1_git5p2x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git62fv/;1610362566;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Pedarsen;;;[];;;;text;t2_eup7i;False;False;[];;IT WAS WORTH THE WAIT. GOD DAMN.;False;False;;;;1610319303;;False;{};git63eb;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git63eb/;1610362581;2;True;False;anime;t5_2qh22;;0;[]; -[];;;clikplay;;;[];;;;text;t2_db345;False;False;[];;You are acting as if one action on the war would suddenly make paradis lose, if it was like that marley would've already gotten the founder titan lol I wouldn't expect him to be Jesus on earth or something like that but it wouldn't be hard for him to be better than an animal like a couple of the marleyans acted;False;False;;;;1610319315;;False;{};git6488;False;t3_kujurp;False;True;t1_git4qin;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6488/;1610362593;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sew_chef;;;[];;;;text;t2_7xse4595;False;False;[];;Wow, I haven't seen anyone talking about [this shot](https://i.imgur.com/IniPXKp.png) right after Eren transformed showing a random person getting pointlessly killed by a falling rock in the background. I love the things MAPPA does with the backgrounds in this show, it's a great way to highlight the random and careless cruelty of their world.;False;False;;;;1610319320;;False;{};git64m6;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git64m6/;1610362599;12;True;False;anime;t5_2qh22;;0;[]; -[];;;TSDan;;;[];;;;text;t2_12uv1ebg;False;True;[];;exactly the same!!;False;False;;;;1610319334;;False;{};git65os;False;t3_kujurp;False;False;t1_gisv5pt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git65os/;1610362615;7;True;False;anime;t5_2qh22;;0;[]; -[];;;NotFruity_Mango;;;[];;;;text;t2_4gcwp4qw;False;False;[];;You see the war hammer titan pop up in the post credit so prob gonna focus on him;False;False;;;;1610319348;;False;{};git66qd;False;t3_kujurp;False;False;t1_git5qdd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git66qd/;1610362638;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Runningman0301;;MAL;[];;https://myanimelist.net/animelist/Runningman0301?status=7;dark;text;t2_hh6nr;False;False;[];;it was rhetorical but he hasn't let that go. there's no way that his mothers death isnt a massive driving point behind what he is doing;False;False;;;;1610319359;;False;{};git67md;False;t3_kujurp;False;True;t1_git01u4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git67md/;1610362652;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LordTachancka;;;[];;;;text;t2_5imdwka4;False;False;[];;"Better wording is ""Eren run!"" To ""Eren, run!""";False;False;;;;1610319386;;False;{};git69o6;False;t3_kujurp;False;False;t1_gisv772;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git69o6/;1610362681;14;True;False;anime;t5_2qh22;;0;[]; -[];;;cantaneer;;;[];;;;text;t2_1ib8wxpm;False;False;[];;"Eren wasn’t Reiner’s judge. Eren put a mirror in front of Reiner so he could be his own judge. - -“I’m the same as you”";False;False;;;;1610319391;;False;{};git6a1x;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6a1x/;1610362687;32;True;False;anime;t5_2qh22;;0;[]; -[];;;ali_1707;;;[];;;;text;t2_3s2yzsam;False;False;[];;Still hasn’t realized mikasa after legit 7 years at least;False;False;;;;1610319392;;False;{};git6a37;False;t3_kujurp;False;False;t1_gisip9e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6a37/;1610362687;9;True;False;anime;t5_2qh22;;0;[]; -[];;;KujoJoseph;;;[];;;;text;t2_2m0d6qts;False;False;[];;Poor Falco. I said in the last episodes comments that it's real shitty that Eren played him like this because Falco is a good, selfless kid. It's extra shitty that Eren even acknowledges this, then proceeds to transform, an act that will likely kill that same selfless child.;False;False;;;;1610319395;;False;{};git6ac4;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6ac4/;1610362691;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Credar;;;[];;;;text;t2_e1djq;False;False;[];;Eren T-Poses over the crowd.;False;False;;;;1610319397;;False;{};git6ahl;False;t3_kujurp;False;False;t1_gisd4fo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6ahl/;1610362693;8;True;False;anime;t5_2qh22;;0;[]; -[];;;mobbedbyllamas;;;[];;;;text;t2_1yj5tqi6;False;False;[];;Yes, in episode two he was taken from the refugee camp to the woods and injected with the titan serum by Grisha.;False;False;;;;1610319399;;False;{};git6am5;False;t3_kujurp;False;False;t1_git4l2y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6am5/;1610362695;4;True;False;anime;t5_2qh22;;0;[]; -[];;;skeet_skrrt;;;[];;;;text;t2_een39c;False;False;[];;Had a dude shoot himself in season one;False;False;;;;1610319400;;False;{};git6aq5;False;t3_kujurp;False;False;t1_gisv209;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6aq5/;1610362697;21;True;False;anime;t5_2qh22;;0;[]; -[];;;digbicks845;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;god ussop;dark;text;t2_12n6ju;False;False;[];;Just say you haven’t seen one piece;False;False;;;;1610319408;;False;{};git6bcd;False;t3_kujurp;False;False;t1_git0ylm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6bcd/;1610362706;11;True;False;anime;t5_2qh22;;0;[]; -[];;;inyourimagination_;;;[];;;;text;t2_9oof2671;False;False;[];;Eren Jaeger, Shingeki no Kyojin's best character, just made his debut, ladies and gentlemen.;False;False;;;;1610319409;;False;{};git6beg;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6beg/;1610362707;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Sew_chef;;;[];;;;text;t2_7xse4595;False;False;[];;Pardon me while I go throw up from remembering my own ragecomics.;False;False;;;;1610319411;;False;{};git6blk;False;t3_kujurp;False;False;t1_git1t7z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6blk/;1610362710;11;True;False;anime;t5_2qh22;;0;[]; -[];;;TheBeatifulDoggo;;;[];;;;text;t2_8zj97ldc;False;False;[];;Love it 😍;False;False;;;;1610319420;;False;{};git6cas;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6cas/;1610362720;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AStartingPoint;;;[];;;;text;t2_74e7pgty;False;False;[];;Next episode is going to be insane.;False;False;;;;1610319426;;False;{};git6cpm;False;t3_kujurp;False;True;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6cpm/;1610362726;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;"Marley had it coming to them tbh. I fully expect Reiner’s mom to die in the next episode, as well as Annie’s dad. You don’t start a war without consequences. - -Honestly I compare this to the bombing of Tokyo in WW2. The war is something across the world that doesn’t concern you, that is until the enemy gets into bombing range.";False;False;;;;1610319432;;False;{};git6d7p;False;t3_kujurp;False;True;t1_gisurtq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6d7p/;1610362733;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MiltonMerloXD;;;[];;;;text;t2_7p59l5sh;False;False;[];;Just wait;False;False;;;;1610319441;;False;{};git6dur;False;t3_kujurp;False;True;t1_giszgik;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6dur/;1610362744;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Reyziak;;;[];;;;text;t2_1a2a0kh;False;False;[];;You can see the exact moment his heart tears in two.;False;False;;;;1610319444;;False;{};git6e40;False;t3_kujurp;False;False;t1_giscnq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6e40/;1610362749;15;True;False;anime;t5_2qh22;;0;[]; -[];;;gratifiedlonging;;;[];;;;text;t2_93iwn0o7;False;False;[];;"Thanks for the hint; found it (episode 48, starts at 5:55).";False;False;;;;1610319456;;False;{};git6f03;False;t3_kujurp;False;False;t1_git1eb5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6f03/;1610362762;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MartinaS90;;;[];;;;text;t2_13onma;False;False;[];;He meant his goal isn't revenge anymore. He understands they are just people that are not evil. But then proceeds to kill them, because he needs to, because he keeps moving forward until his enemies are destroyed, but he doesn't hate them.;False;False;;;;1610319460;;False;{};git6fas;False;t3_kujurp;False;False;t1_git3pxv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6fas/;1610362766;5;True;False;anime;t5_2qh22;;0;[]; -[];;;EngselPintu;;;[];;;;text;t2_3tvotq6g;False;False;[];;wuh;False;False;;;;1610319497;;False;{};git6i4o;False;t3_kujurp;False;False;t1_git47un;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6i4o/;1610362808;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Radix2309;;;[];;;;text;t2_praen;False;False;[];;"Wait. They took 5 episodes to get through 10 chapters. How are they supposed to get through 39 more with 11? - -Anime-only here.";False;False;;;;1610319527;;False;{};git6khr;False;t3_kujurp;False;False;t1_gisatbg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6khr/;1610362845;7;True;False;anime;t5_2qh22;;0;[]; -[];;;midtharp;;;[];;;;text;t2_2tkeqy5s;False;False;[];;Two epic tales... meantime, outside is reality.;False;False;;;;1610319533;;False;{};git6kxj;False;t3_kujurp;False;False;t1_gisx3yp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6kxj/;1610362853;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Elaego;;;[];;;;text;t2_55zd6hhb;False;False;[];;The manga's ending this April. And the show isn't ending by April, just part 1 of season 4.;False;False;;;;1610319549;;False;{};git6m3h;False;t3_kujurp;False;True;t1_gisz5jn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6m3h/;1610362872;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AIManiak;;;[];;;;text;t2_8v2yjgsn;False;False;[];;I just find it hilarious how Attack on fucking Titan is now warning viewers that things are about to get graphic.;False;False;;;;1610319589;;False;{};git6p0r;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6p0r/;1610362917;11;True;False;anime;t5_2qh22;;0;[]; -[];;;mug1wara26;;;[];;;;text;t2_wv4y4r1;False;False;[];;damn he going super saiyan;False;False;;;;1610319591;;False;{};git6p6n;False;t3_kujurp;False;False;t1_giscm9k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6p6n/;1610362919;4;True;False;anime;t5_2qh22;;0;[]; -[];;;min-m1n;;;[];;;;text;t2_6l7jg71t;False;False;[];;Amazing. Just amazing;False;False;;;;1610319591;;False;{};git6p7q;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6p7q/;1610362919;4;True;False;anime;t5_2qh22;;0;[]; -[];;;blitzbom;;;[];;;;text;t2_6h9w1;False;False;[];;"Good stories have protagonists. Great stories realize that each character is the protagonist of thier story and writes them as such. - -Once again Isayama shows himself to be a master.";False;False;;;;1610319592;;False;{};git6p9i;False;t3_kujurp;False;False;t1_giswu9y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6p9i/;1610362921;30;True;False;anime;t5_2qh22;;0;[]; -[];;;NewYearDodo;;;[];;;;text;t2_16wkxf;False;False;[];;Ah you're just a troll, makes sense.;False;False;;;;1610319597;;False;{};git6plk;False;t3_kujurp;False;False;t1_git17yo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6plk/;1610362926;4;True;False;anime;t5_2qh22;;0;[]; -[];;;digbicks845;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;god ussop;dark;text;t2_12n6ju;False;False;[];;Wow Eren;False;False;;;;1610319603;;False;{};git6q23;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6q23/;1610362932;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sorrowful_Panda;;;[];;;;text;t2_1d4ecnt2;False;False;[];;"Didn't like he removal of Zeke, family shot just before Eren transforms and how the soldiers are right outside the door which might make it seem like Eren was forced to transform there as nitpicks. - -Wasn't as bad as some people make it out to be, was more disappointed with most recent manga chapter :)";False;False;;;;1610319606;;False;{};git6qaz;False;t3_kujurp;False;False;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6qaz/;1610362936;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Definitely intention, even the opening line to Guren no Yumina is international. It’s fucking insane, and what makes me consider yes even the early parts of AoT a masterpiece;False;False;;;;1610319612;;False;{};git6qq1;False;t3_kujurp;False;False;t1_gisw9po;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6qq1/;1610362942;62;True;False;anime;t5_2qh22;;0;[]; -[];;;VegetoSF;;;[];;;;text;t2_14x88i;False;False;[];;"Two questions on my mind: - -Why was Zeke not lured into the trap? -Magath seems to know that something is going to happen?";False;False;;;;1610319616;;False;{};git6r22;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6r22/;1610362947;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GenSec;;;[];;;;text;t2_hk63q;False;False;[];;Black AF1 Eren is here fuck yeah;False;False;;;;1610319617;;False;{};git6r51;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6r51/;1610362949;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MartinaS90;;;[];;;;text;t2_13onma;False;False;[];;Yes, but it's true that, at the time, when it was being released monthly, the fandom was very toxic shithole that was constantly shitting on the Marley arc. Many claimed that dropped the manga during that arc. I was having a blast with it, but I can't deny that it was a very divisive arc for the fandom when it was being released monthly, just like the Uprising arc.;False;False;;;;1610319621;;False;{};git6rda;False;t3_kujurp;False;True;t1_git44eg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6rda/;1610362952;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aiyuhan;;;[];;;;text;t2_40g3uelq;False;False;[];;Its hella cringe actually, they should just go to their own thread.;False;False;;;;1610319621;;False;{};git6reg;False;t3_kujurp;False;True;t1_git5p2x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6reg/;1610362953;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ApolloX-2;;;[];;;;text;t2_asm9d;False;False;[];;"Eren finally understands Reiner's torment because living and sleeping with your enemy and seeing they are people with good and bad in them just like everyone else makes it difficult to kill them all and continue having that grudge. - -How many lives could have been saved if Reiner just decided to not go through with the plan of Paradis Island. Return home and tell them there are no monsters on that Island except the ones Marley injected with Titan juice. - -Just heartbreaking and shows why revenge at the end is bad because your enemy has people who loved them and they will come after you and your loved ones and then the reverse again just carrying this torment and suffering for generations and for reasons long forgotten.";False;False;;;;1610319627;;False;{};git6ru4;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6ru4/;1610362960;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;"And now [Eren](https://twitter.com/search?q=Eren&src=trend_click&vertical=trends) is the one trending.";False;False;;;;1610319635;;False;{};git6sfj;False;t3_kujurp;False;True;t1_gisarcw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6sfj/;1610362969;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ARIKITE;;;[];;;;text;t2_34keicvy;False;False;[];;I’m just guessing this but I might be completely wrong, is the disguise soldier who trapped pieck and galliard seems like conny to me. Does anyone think the same?;False;False;;;;1610319636;;False;{};git6si9;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6si9/;1610362970;11;True;False;anime;t5_2qh22;;0;[]; -[];;;OneirionKnight;;;[];;;;text;t2_1kghpz3x;False;False;[];;No it's not Armin;False;False;;;;1610319652;;False;{};git6tqe;False;t3_kujurp;False;True;t1_git5ti9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6tqe/;1610362989;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Perrenekton;;;[];;;;text;t2_q18f1;False;False;[];;But doesn't Eren even care about driving the point home to Reiner? He is about to kill him. For me it was more about seeing if Reiner had any remorse. And also what you said : to show why they are the sameb but for us viewers;False;False;;;;1610319653;;False;{};git6tsq;False;t3_kujurp;False;True;t1_git62cu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6tsq/;1610362990;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;The meaning is completely different though. Wilbur thinks he deserves nice things because he was born, no matter who he steps on. Eren’s mom realizes that life itself is a gift.;False;False;;;;1610319660;;False;{};git6u9g;False;t3_kujurp;False;False;t1_gisst1c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6u9g/;1610362998;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Dawyken;;;[];;;;text;t2_3nl6wlyg;False;False;[];;It seems to me that Eren broke a world record, faster assassination of enemy leader since a war is declared.;False;False;;;;1610319663;;False;{};git6uhs;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6uhs/;1610363000;27;True;False;anime;t5_2qh22;;0;[]; -[];;;Raknel;;;[];;;;text;t2_xwf5o;False;False;[];;Don't think I've ever witnessed tension building this good in any series not just anime, 11/10;False;False;;;;1610319699;;False;{};git6xbh;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6xbh/;1610363043;17;True;False;anime;t5_2qh22;;0;[]; -[];;;OzieteRed;;;[];;;;text;t2_17736b;False;False;[];;why is this a declaration of war? weren't they at war since day 1? like everyone was against the paradise island to begin with.;False;False;;;;1610319699;;1610341908.0;{};git6xbx;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6xbx/;1610363043;3;True;False;anime;t5_2qh22;;0;[]; -[];;;xin234;;;[];;;;text;t2_87y7e;False;False;[];;"> Not exactly this - -Pretty sure when someone's talking about out-of-character actions, they'd be referring to exactly this. Especially in an AoT discussion, an anime that was once called ""the Game of Thrones of anime"". At least when that used to be a compliment.";False;False;;;;1610319709;;1610340851.0;{};git6y39;False;t3_kujurp;False;False;t1_gisrp6d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6y39/;1610363054;14;True;False;anime;t5_2qh22;;0;[]; -[];;;midtharp;;;[];;;;text;t2_2tkeqy5s;False;False;[];;"Orson Welles' ""War of the Worlds"" radio broadcast remains the model for this.";False;False;;;;1610319715;;False;{};git6yih;False;t3_kujurp;False;True;t1_gisst66;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6yih/;1610363060;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;pieck of the series*;False;False;;;;1610319723;;False;{};git6z4j;False;t3_kujurp;False;False;t1_git5tgk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6z4j/;1610363070;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;My guess is Jean (based on Pieck using male pronouns) or Mikasa (based on the voice);False;False;;;;1610319724;;False;{};git6z71;False;t3_kujurp;False;True;t1_git5x4c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6z71/;1610363071;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bbybokuto;;;[];;;;text;t2_8cftym0v;False;False;[];;andddddd, upon watching that scene again, I think he wanted Falco to fully understand that the world they live in isn’t black and white - to Falco, Reiner was a hero and someone to look up to. Through Eren revealing Reiner to partly be the cause of his mother’s death, he is able to shatter this illusion and reveal to Falco how nobody is really fully right or fully wrong (although personally, I’m supporting Eren till the end ❤️);False;False;;;;1610319725;;False;{};git6z7n;False;t3_kujurp;False;False;t1_git62cu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git6z7n/;1610363071;11;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610378836;moderator;False;{};giw1uqd;False;t3_kv4sjc;False;True;t3_kv4sjc;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw1uqd/;1610426889;0;False;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;I think it'll hover around the 9.05-9.15 range while it airs with trolls and fans bumping it up and down throughout. Once it finishes and the majority of people actually rate it I think it'll take #1. Whether it will hold it will remain to be seen.;False;False;;;;1610378936;;False;{};giw23ce;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw23ce/;1610427022;586;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Yes, it's really good. But... - -The thing is that Fate **HAS NO ANIME STARTING POINT**. - -**This series has always been for Visual Novel readers** (the watch order now becomes incredibly easy after you've read the VN). - -Why do you think the Grand Order anime are aired out of order, it's because it's for the mobile game players. - -If Fate sounds interesting, **I recommend watching the Garden of Sinners instead**. - -It's basically the same world but doesn't connect with Fate. The visuals and sound is also done by the same people that did Fate/Zero. This is the probably the reason why you want to watch fate. - -The watch order is 1, 2, 3, 4, 6, 5, recap, 7, 8. Watching it this way makes the 6th and recap movie exponentially better and the 5th movie even better. - -If you *really* want to watch fate without reading the visual novel. (I highly discourage watching the anime before reading the visual novel.) - -Fate/Stay Night (2006) Fan Edit -> Fate/Stay Night Unlimited Blade Works (TV series not the movie) -> Heaven's Feel Movie Trilogy -> Fate/Zero -> any other fate you want. - -If you are really impatient, you can watch Fate/Zero after the second heaven's feel movie but I wouldn't recommend it.";False;False;;;;1610378964;;False;{};giw25sm;False;t3_kv4sjc;False;False;t3_kv4sjc;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw25sm/;1610427063;6;True;False;anime;t5_2qh22;;0;[]; -[];;;YumiYuuki;;;[];;;;text;t2_9ip4ro3r;False;False;[];;"Yup, the anime is great, just make sure you watch it in the correct order, - -Ufotable did a phenomenal job with animation overall a great show";False;False;;;;1610378990;;False;{};giw27yh;False;t3_kv4sjc;False;False;t3_kv4sjc;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw27yh/;1610427097;5;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;">Will this climb continue ? - -No. - -Anytime anyone makes a post like this the score goes down. Also how has this season scored higher than Season 3 Part 2?";False;False;;;;1610378991;;False;{};giw284f;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw284f/;1610427100;92;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"[Here's the /r/fatestaynight guide.](https://www.reddit.com/r/fatestaynight/comments/df8rvo/rfatestaynights_official_viewing_order_guide_v2/) - -Some are generally well received (Unlimited Blade Works, Heaven's Feel, Zero), some aren't (Apocrypha, Extra). - -I enjoy the lore of the setting and the shows that have fun with the characters once you know them (Carnival Phantasm, Today's Menu for the Emiya Family).";False;False;;;;1610379005;;False;{};giw29cb;False;t3_kv4sjc;False;True;t3_kv4sjc;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw29cb/;1610427116;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"People mass voting 1 on the series incoming - -[saving the current number for posterity ](https://imgur.com/a/2XWIRwf)";False;False;;;;1610379020;;1610379524.0;{};giw2an7;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw2an7/;1610427134;1612;True;False;anime;t5_2qh22;;0;[]; -[];;;monnzzo;;;[];;;;text;t2_75e18yx0;False;False;[];;It's technically 3 but still its a great place to be and I hope it dethrones the king (FMAB if anyone didn't know) I've seen both anime and read the manga for AOT and I think it will probably dethrone Steins: Gate and possibly FMAB;False;False;;;;1610379021;;False;{};giw2asb;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw2asb/;1610427137;134;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;The main Fate story is... Okay? I mean I like the Type Moon universe and I think the show is worth watching for certain moments and all of the spinoffs but I don't think the main story of Fate/Stay Night is all that good.;False;False;;;;1610379028;;False;{};giw2bd4;False;t3_kv4sjc;False;False;t3_kv4sjc;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw2bd4/;1610427145;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;The VN is literally like 100 hours, I would never suggest that someone start with that as their introduction.;False;False;;;;1610379072;;False;{};giw2f7k;False;t3_kv4sjc;False;True;t1_giw25sm;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw2f7k/;1610427200;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;"Same, i think It'll, also since FMAB is a show that aired a decade ago and a lot of the fan base is inactive. A huge number of them still remain toxic and downvote other series however it's not as big as it was during the 2010s. AOT has 11 more chances and if it's gonna be as hype as the manga readers say. It's gonna be a ride worth the wait. - - -(It's wild saying 2010s is a decade that's passed )";False;False;;;;1610379095;;False;{};giw2h6g;True;t3_kv4s8z;False;False;t1_giw23ce;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw2h6g/;1610427228;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Its number 2 here;False;False;;;;1610379101;;False;{};giw2hq9;False;t3_kv4s8z;False;False;t1_giw2asb;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw2hq9/;1610427235;29;True;False;anime;t5_2qh22;;0;[]; -[];;;monnzzo;;;[];;;;text;t2_75e18yx0;False;False;[];;huh that's really weird it says 3 for me;False;False;;;;1610379145;;False;{};giw2lhg;False;t3_kv4s8z;False;False;t1_giw2hq9;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw2lhg/;1610427291;9;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Coz it's already shaping up to be a lot grander then s3's last arc.;False;False;;;;1610379147;;False;{};giw2lm2;True;t3_kv4s8z;False;False;t1_giw284f;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw2lm2/;1610427293;44;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;True, let's see how that goes;False;False;;;;1610379159;;False;{};giw2moh;True;t3_kv4s8z;False;False;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw2moh/;1610427307;15;True;False;anime;t5_2qh22;;0;[]; -[];;;shadowmonarch123;;;[];;;;text;t2_95l65f1c;False;False;[];;The climb will not continue because aot is crap;False;True;;comment score below threshold;;1610379184;;False;{};giw2oz2;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw2oz2/;1610427341;-42;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Not to mention it already has more than 3K 1 star and that's a lot.;False;False;;;;1610379219;;False;{};giw2s5a;False;t3_kv4s8z;False;False;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw2s5a/;1610427390;659;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;I think it's should take down FMAB which imo is just a well executed Shonen that's been over hyped too much. Japan rates FMAB properly by putting it around the 19th spot or so in most rankings.;False;False;;;;1610379223;;False;{};giw2sk0;True;t3_kv4s8z;False;False;t1_giw2asb;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw2sk0/;1610427396;13;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"Only 5 episodes are out. - -S3P2 proved itself with consisntely brilliant episodes.";False;False;;;;1610379254;;False;{};giw2v9m;False;t3_kv4s8z;False;False;t1_giw2lm2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw2v9m/;1610427435;32;True;False;anime;t5_2qh22;;0;[]; -[];;;adeherod;;;[];;;;text;t2_9mrc4tc;False;False;[];;It is not something that started as an anime, so it is not a must watch. But reading the source material is highly advisable! In fact you cannot experience the story any other way for a number of reasons.;False;False;;;;1610379273;;False;{};giw2wwf;False;t3_kv4sjc;False;False;t3_kv4sjc;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw2wwf/;1610427459;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;It will, you're clearly someone who hasn't watched what the shows been building upto. Or just a salty FMAB fan.;False;False;;;;1610379274;;False;{};giw2x1n;True;t3_kv4s8z;False;False;t1_giw2oz2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw2x1n/;1610427461;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Have you read the Visual Novel? - -It is the definitive way to start fate. - -The issues of watch orders is gone. Watching the anime first ruins your experience with the fate series because Nasu wrote it in a way where information is delivered in a specific way. Gen wrote Fate/Zero assuming one read the visual novel and many story beats aren't understood if you haven't read the visual novel.";False;False;;;;1610379294;;False;{};giw2yts;False;t3_kv4sjc;False;True;t1_giw2f7k;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw2yts/;1610427491;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;True, but the high ratings coz of the promise it'll be even better;False;False;;;;1610379299;;False;{};giw2z7i;True;t3_kv4s8z;False;False;t1_giw2v9m;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw2z7i/;1610427497;16;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;how nice, a hater who does not know how to give reasons, sorry if aot has passed your favorite amine;False;False;;;;1610379304;;False;{};giw2zpf;False;t3_kv4s8z;False;True;t1_giw2oz2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw2zpf/;1610427505;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nat_Jam_Gam;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;#FateSeriesForTheWin;light;text;t2_67hdr124;False;False;[];;The Fate Series is my favourite, would definitely rate 10/10, you’re bound to enjoy it if you just go with the flow :);False;False;;;;1610379308;;False;{};giw2zze;False;t3_kv4sjc;False;True;t3_kv4sjc;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw2zze/;1610427510;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;monnzzo;;;[];;;;text;t2_75e18yx0;False;False;[];;I really like FMAB and I think it should be top 10 but not number 1;False;False;;;;1610379312;;False;{};giw30et;False;t3_kv4s8z;False;False;t1_giw2sk0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw30et/;1610427515;41;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Watch ep5 of S4, that was some of the best episodes in anime. Animation, Voice acting, ost and dialogue, everything was spot on and that's why it has higher score than S3P2.;False;False;;;;1610379323;;False;{};giw31by;False;t3_kv4s8z;False;False;t1_giw284f;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw31by/;1610427529;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Same, I'd personally put it around 11th or 12th;False;False;;;;1610379343;;False;{};giw3337;True;t3_kv4s8z;False;True;t1_giw30et;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw3337/;1610427555;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SadaharuShogun;;;[];;;;text;t2_7y9jbm5;False;False;[];;"Wasn't Ishuzoku Reviewers the top at one point? - -Not trying to detract from either show but the title of number 1 on MAL seems kinda pointless after that";False;False;;;;1610379418;;False;{};giw39h7;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw39h7/;1610427655;55;True;False;anime;t5_2qh22;;0;[]; -[];;;AnxiousSquirrel3812;;;[];;;;text;t2_9rs1frb4;False;False;[];;Or someone who just doesn't like it. We exist, you know.;False;False;;;;1610379495;;False;{};giw3gap;False;t3_kv4s8z;False;False;t1_giw2x1n;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw3gap/;1610427759;13;True;False;anime;t5_2qh22;;0;[]; -[];;;jicuhrabbitkim;;;[];;;;text;t2_6po9il13;False;False;[];;"The source materials ? Yes - -The adaptations ? Hit ot Miss. - - Some were great ( Fate Stay Night UBW and Heaven’s Feel, Fate/Zero, Fate/ Grand Order: Babylonia, Carnival Phantasm) - -Some are decent ( Fate/ Kaleid Liner, Fate/ Apocrypha, Case Files of Lord El Melloi) - -Some are bad ( Fate/ Stay Night, Fate/ Extra: Last Encore). - -It really depends on the studio that will handle tbh. The best way to enjoy Fate series buy how it was originally made.";False;False;;;;1610379504;;1610379986.0;{};giw3h3y;False;t3_kv4sjc;False;False;t3_kv4sjc;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw3h3y/;1610427771;9;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"I have seen it.... - -Everything was not spot on particularly the OST. The blur was even harder to look at because it was an episode set at night too. - -It was a great episode I won't deny that. My point is there is only 5 episodes out and it is outscoring S3P2 which had incredibly episodes like Hero, Perfect Game, Midnight Sun, That Day and the finale. Episode 5 was not on the same level as those episodes.";False;True;;comment score below threshold;;1610379523;;False;{};giw3irk;False;t3_kv4s8z;False;True;t1_giw31by;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw3irk/;1610427797;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;That was just people memeing and trolling;False;False;;;;1610379531;;False;{};giw3jdv;True;t3_kv4s8z;False;False;t1_giw39h7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw3jdv/;1610427807;37;True;False;anime;t5_2qh22;;0;[]; -[];;;ZomZike;;;[];;;;text;t2_9mfxiz8t;False;False;[];;i can see various FMAB group/discord ready rallying mass dowvote lol;False;False;;;;1610379539;;False;{};giw3k59;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw3k59/;1610427819;14;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Pitty, but i doubt they'll amount to anything more than 5k voters. If that happens and aot continues to pull in the 10's from actual fans it still has a chance.;False;True;;comment score below threshold;;1610379594;;False;{};giw3owe;True;t3_kv4s8z;False;False;t1_giw3k59;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw3owe/;1610427893;-12;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;"We know, however, at least argues. -only haters do like him, writing ""hahaha garbage""";False;False;;;;1610379605;;1610379990.0;{};giw3puo;False;t3_kv4s8z;False;False;t1_giw3gap;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw3puo/;1610427906;13;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;Maybe, but we should judge after it's complete.;False;False;;;;1610379606;;1610404867.0;{};giw3px5;False;t3_kv4s8z;False;False;t1_giw2z7i;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw3px5/;1610427907;32;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Maybe other people like it more and S3P2 is in 6th position. We should be very happy to see that two seasons of AoT are in the top 10.;False;False;;;;1610379622;;False;{};giw3rgf;False;t3_kv4s8z;False;False;t1_giw3irk;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw3rgf/;1610427928;6;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;"No, but if the Fate VN was the only ""proper"" way to experience the series I 100% guarantee you I would never touch the Fate series. I'm just not going to sink nearly 100 hours into a series that I don't think is all that amazing.";False;False;;;;1610379627;;False;{};giw3rxp;False;t3_kv4sjc;False;True;t1_giw2yts;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw3rxp/;1610427935;0;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;Yeh I guess this season for me has been great but also a tad disappointing. I really miss WIT. MAPPA is doing a great job though.;False;False;;;;1610379682;;False;{};giw3x2p;False;t3_kv4s8z;False;True;t1_giw3rgf;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw3x2p/;1610428018;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;I think it's it's a little hyperbolic to say that you can't experience it any other way. The spoilers from either Fate Zero into F/SN or F/SN into Zero aren't all that huge and never negatively affected my watching of the series.;False;False;;;;1610379729;;False;{};giw4180;False;t3_kv4sjc;False;True;t1_giw2wwf;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw4180/;1610428111;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;Have you read the original Visual Novel?;False;False;;;;1610379737;;False;{};giw41z5;False;t3_kv4sjc;False;True;t1_giw3rxp;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw41z5/;1610428124;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;True but manga readers have promised it's amazing. So this comes from mainly trust in manga readers and the stellar production quality atleast so far.;False;False;;;;1610379758;;False;{};giw43rj;True;t3_kv4s8z;False;False;t1_giw3px5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw43rj/;1610428151;11;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;No, I said that in my response here. I'm telling you that if you tell people that the only decent way to experience Fate is to read the VN 99% of them just aren't going to get into Fate.;False;False;;;;1610379813;;False;{};giw48ny;False;t3_kv4sjc;False;True;t1_giw41z5;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw48ny/;1610428245;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Let's assume someone is only going to watch the ufotable adaptations and starts with Fate/Zero (and moves on to UBW then HF). - -Let's start with the first spoiler of [Irisviel and Kiritsugu](/s ""Their daughter, which is Illya. Illya is the half sister of Shirou""), What do you think people are going to think when the first bad guy of Unlimited Blade Works [spoiler](/s ""When Illya is fighting her own brother""). You feel conflicted on who to root for, if someone had started with Unlimited Blade Works first, [they would know for sure who to root for](/s ""They would root for Shirou and not Illya because the viewer doesn't know about their relationship"") - -Let's go to the second spoiler of [A certain girl](/s ""Sakura who is worm infested and the Matou Family""). If someone started with Fate/Zero, they would've wondered when she would show up, and they would be disappointed that she wouldn't show up. The fact is that she is mostly relevant to the plot of Heaven's Feel. For the previous two routes, you were supposed to think of her as a background character like Taiga. - -Someone with a keen observation (who watched Fate/Zero first) would notice that [a certain someone](/s ""Matou Zouken, who only appears in the Heaven's Feel Route"") said that Kariya has a [certain property](/s ""He is the last Matou to have working command circuits"") and someone might catch on that [a certain master in Unlimited Blade Works is lying.](/s ""Shinji isn't actually a master and the real master is actually Sakura borrowing Rider to Shinji"") You're not supposed to think about that until Heaven's Feel. - -Take Saber, one of the most important characters. With her character development in Fate/Zero, it's basically a Chekov's gun that doesn't work. Why? Because her character development is in the fate route. Some viewers will be frustrated at the lack of character development for Saber because in Unlimited Blade Works and Heaven's Feel, she becomes a side character unlike in the Fate route. - - -Other minor spoilers that might watch Fate/Zero might ruin. [Spoiler 1](/s ""In Unlimited Blade Works, we're meant to think that Gilgamesh wished for the destruction instead of the viewers knowing it's corrupted and the fact that it's corrupted is only revealed in the third movie""), [Spoiler 2](/s ""Waver does not appear until the epilogue and not once in the heaven's feel movie, some people might feel unsatisfied"") [spoiler 3](/s ""Kotomine telling Tohsaka he killed her father in Unlimited Blade Works makes you even hate Kotomine more and is supposed to be dramatic but now it's just a oh ok moment I knew that already"")";False;False;;;;1610379834;;1610380335.0;{};giw4al5;False;t3_kv4sjc;False;True;t1_giw4180;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw4al5/;1610428274;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"You're heavily underestimating the score especially considering the algorithm helps counteract brigading. S3P2 kept rising continuously despite the fact this anti brigading system wasn't in place - -I'm willing to bet 9.4 for a short period after it ends if the adaptation isn't faulty and a long term 9.3.";False;False;;;;1610379851;;False;{};giw4c2c;False;t3_kv4s8z;False;False;t1_giw23ce;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw4c2c/;1610428295;216;True;False;anime;t5_2qh22;;0;[]; -[];;;immortal_phoenix69;;;[];;;;text;t2_73kh235v;False;False;[];;it's okay if you don't like it but crap it is not;False;False;;;;1610379908;;False;{};giw4h4m;False;t3_kv4s8z;False;False;t1_giw3gap;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw4h4m/;1610428376;14;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;I would love to discuss this with you but your spoiler tags don't work.;False;False;;;;1610379954;;False;{};giw4l4i;False;t3_kv4sjc;False;True;t1_giw4al5;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw4l4i/;1610428435;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610379957;;False;{};giw4len;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw4len/;1610428440;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Leajey;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Leajey;light;text;t2_wwomk;False;False;[];;">just make sure you watch it in the correct order, - -Lmao";False;False;;;;1610379978;;False;{};giw4ncu;False;t3_kv4sjc;False;False;t1_giw27yh;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw4ncu/;1610428469;11;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;">The MAL score movement is even more insane than the karma score right now. - ->Went from 9.07/8 to 9.12 with only a 5% increase in total number of votes. Even the boost during S3 P2 (Hero) wasn't as fast iirc - ->Did the math and if the stats were all new votes the raw average would be roughly 9.82 since the episode dropped. (Old votes changing score isn't properly able to be easily accounted for together since we have little info on the stats page but I don't think it affects the average heavily) - ->This is despite having a 1% 1/10s in the last 24 hrs. A weighted average would likely be even higher the raw average - ->Certainly won't maintain this but still makes a 9.3+ overall to be very likely permanently after it ends - -Copied my cmt from the episode discussion post to here since it applies here as well";False;False;;;;1610379979;;1610381297.0;{};giw4nd9;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw4nd9/;1610428469;43;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Honestly loved how EREN became Eren;False;False;;;;1610380012;;False;{};giw4q8o;True;t3_kv4s8z;False;False;t1_giw4len;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw4q8o/;1610428510;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Daaamnn, 9.3 would he crazy 😳 I'm pumped;False;False;;;;1610380095;;False;{};giw4xsa;True;t3_kv4s8z;False;False;t1_giw4nd9;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw4xsa/;1610428624;5;True;False;anime;t5_2qh22;;0;[]; -[];;;shadowmonarch123;;;[];;;;text;t2_95l65f1c;False;False;[];;I’m not a fmab fan and I’ve watched up to the basement and beast titan;False;True;;comment score below threshold;;1610380101;;False;{};giw4ybe;False;t3_kv4s8z;False;True;t1_giw2x1n;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw4ybe/;1610428631;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;MAL implemented their in the works anti brigading system soon after Ishuzoku happened. Brigading and trolling despite showing up on stats doesn't actually affect the weighted score shown heavily;False;False;;;;1610380106;;False;{};giw4yrc;False;t3_kv4s8z;False;False;t1_giw39h7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw4yrc/;1610428637;10;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;It's alright some people just lack taste 🤷 no need to beat yourself up about it;False;False;;;;1610380136;;False;{};giw51gx;True;t3_kv4s8z;False;False;t1_giw4ybe;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw51gx/;1610428691;7;True;False;anime;t5_2qh22;;0;[]; -[];;;YumiYuuki;;;[];;;;text;t2_9ip4ro3r;False;False;[];;I didn't the first time and it ruined it for me, so I had to rewatch the whole show again lol;False;False;;;;1610380137;;False;{};giw51mi;False;t3_kv4sjc;False;True;t1_giw4ncu;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw51mi/;1610428693;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610380192;moderator;False;{};giw56o0;False;t3_kv58jr;False;True;t3_kv58jr;/r/anime/comments/kv58jr/tell_me_why_manag_is_actually_good4_a_friend_whho/giw56o0/;1610428768;1;False;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"S3P2 was around a similar score at this point when it aired fyi. (Despite S4 being a weaker adaptation so far the material itself is enough for it to be elevated heavily) - -S3P2 actually started at around the same score as well. - - -Before Perfect Game aired S3P2 was at 9.04, a week after 9.08. - -A week after Hero dropped, 9.13. - -A week after Midnight Sun 9.16 - -By the time S3P2 concluded 9.23";False;False;;;;1610380244;;1610419268.0;{};giw5bac;False;t3_kv4s8z;False;True;t1_giw284f;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw5bac/;1610428835;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"The difference between reading the visual novel and watching the anime is night and day, and the anime adaptations by ufotable are amazing. There's a reason why Fate/Stay night is highly rated as a visual novel. - -Except for the fact as a fate fan, I can't tell them to experience the story wrongly. I never promote the fate franchise, because I know telling people who are only used to watching anime - -Nasu wrote the story in a specific way. [Fate route and Unlimited Blade Works spoilers](/s ""Caster appears in the fate route briefly and is defeated by Gilgamesh, so we the reader underestimate the strength of Gilgamesh, this also has the effect of making Gilgamesh look more of a threat. And Shirou defeating him is an incredible feat."")";False;False;;;;1610380290;;False;{};giw5fb9;False;t3_kv4sjc;False;True;t1_giw48ny;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw5fb9/;1610428891;0;True;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;r/manga;False;False;;;;1610380320;;False;{};giw5i14;False;t3_kv58jr;False;True;t3_kv58jr;/r/anime/comments/kv58jr/tell_me_why_manag_is_actually_good4_a_friend_whho/giw5i14/;1610428931;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;Edited.;False;False;;;;1610380341;;False;{};giw5jzo;False;t3_kv4sjc;False;True;t1_giw4l4i;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw5jzo/;1610428961;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;There is no right order for an anime only.;False;False;;;;1610380366;;False;{};giw5m9j;False;t3_kv4sjc;False;False;t1_giw51mi;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw5m9j/;1610428994;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Zylda;;;[];;https://myanimelist.net/profile/Zylda;;text;t2_xbww7;False;False;[];;"Sorry, your submission has been removed. - -- This doesn't appear to be about [anime per our definition](https://www.reddit.com/r/anime/wiki/rules#wiki_everything_posted_here_must_be_anime_specific). - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610380428;moderator;False;{};giw5s2p;False;t3_kv58jr;False;True;t3_kv58jr;/r/anime/comments/kv58jr/tell_me_why_manag_is_actually_good4_a_friend_whho/giw5s2p/;1610429085;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;"(as if that's not what AoT fanboys have been doing to FMA:B. Their behavior on this subreddit alone is worse than anything FMA:B fanboys have done.) - -Edit: My point has been proven valid, evident by the brigade of downvotes anyone receives for saying anything not-positive about AoT.";False;True;;comment score below threshold;;1610380474;;1610393100.0;{};giw5w6v;False;t3_kv4s8z;False;True;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw5w6v/;1610429155;-40;True;False;anime;t5_2qh22;;0;[]; -[];;;Vindicare605;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aresendez88;light;text;t2_656ck;False;False;[];;If you're looking for a fun harem anime it doesn't get much better than High School DxD. IMO that is the king of the genre at the moment. Give it a look.;False;False;;;;1610380547;;False;{};giw62n3;False;t3_kv5b1r;False;True;t3_kv5b1r;/r/anime/comments/kv5b1r/good_haremcomedy_anime_to_watch_like/giw62n3/;1610429249;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;"> You're not supposed to think about that until Heaven's Feel. - -My main disagreeance is that I knew all the Fate spoilers and it never once made me dislike the series or anything like that. If anything knowing the plot twists helped me see where and why certain things were happening and I actually really preferred that way of seeing it. - -I just don't see the minor spoilers as a reason to sink 100 extra hours into one story.";False;False;;;;1610380562;;False;{};giw643z;False;t3_kv4sjc;False;True;t1_giw4al5;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw643z/;1610429270;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Al-Pharazon;;;[];;;;text;t2_1s32gw1x;False;False;[];;Oh sure there is, go watch the Heavens Feel movies without UBW and you will see how much Ufotable (and the source material for that matter) takes for granted you have watched the previous routes.;False;False;;;;1610380573;;False;{};giw653d;False;t3_kv4sjc;False;True;t1_giw5m9j;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw653d/;1610429286;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;I get that the VN is highly acclaimed, but you're still not getting people who don't know anything about Fate to get into the series by recommending them a 17 year old, extremely long game that isn't even easily accessible.;False;False;;;;1610380654;;False;{};giw6ci3;False;t3_kv4sjc;False;True;t1_giw5fb9;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw6ci3/;1610429400;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kleber115;;;[];;;;text;t2_3a2jmy6m;False;False;[];;Episode 5 if s3p2 was hero, that episode was able to beat ozymandias(peak breaking bad) it's not far fetched to say itll take number 1, especially with 11 still to be aired;False;False;;;;1610380669;;False;{};giw6dx6;False;t3_kv4s8z;False;False;t1_giw2v9m;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw6dx6/;1610429424;21;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;">Episode 5 if s3p2 was hero, that episode was able to beat ozymandias(peak breaking bad) - -But we're comparing episodes to each other here. Not 5 episodes vs a complete MAL entry.";False;True;;comment score below threshold;;1610380719;;False;{};giw6ili;False;t3_kv4s8z;False;True;t1_giw6dx6;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw6ili/;1610429492;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;shnick9996;;;[];;;;text;t2_405jha7v;False;True;[];;"To Love RU, Grisaia, Monster Musume. - -Almost any power fantasy isekai.";False;False;;;;1610380749;;False;{};giw6l97;False;t3_kv5b1r;False;True;t3_kv5b1r;/r/anime/comments/kv5b1r/good_haremcomedy_anime_to_watch_like/giw6l97/;1610429527;3;True;False;anime;t5_2qh22;;0;[]; -[];;;blackmagemasta;;MAL;[];;https://myanimelist.net/profile/blackmagemasta;dark;text;t2_aceb1;False;False;[];;"Some people think it's good, others think it's bad. I really like it, but no anime is a ""must watch"". Watch things that bring you enjoyment. - -The short answer to the watch order is Fate/stay Night from 2006, Unlimited Blade Works from 2014, the three Heaven's Feel movies from 2017, 2019, and 2020, and lastly Fate/Zero from 2011. This is the order that the story was originally told, the order I followed, and the order used in the recent [Fate rewatch](https://www.reddit.com/r/anime/wiki/rewatches/rewatch_archive/2020#wiki_fate). - -However, not everyone agrees with this. It's a bit complicated, so here's some context. - -Fate started with a visual novel (VN) called Fate/stay Night comprised of three ""routes"". These are like 3 ""what if"" scenarios. Each covers the same event and time period, but asks ""what if things happened differently?"" These three routes are called Fate, Unlimited Blade Works (UBW), and Heaven's Feel (HF), and they happen in that order. Fate is the simplest route and does a lot of the introductions and worldbuilding. UBW takes all of that and builds on it. And then HF takes the things established in Fate and UBW and builds on them to tell a new story. After the VN, a prequel light novel was written called Fate/Zero (FZ) that gives more backstory and context to the events of the VN. - -So, 1 VN of 3 routes and a light novel prequel. - -Therefore, as I said before, if you're following the order that the story was written, the watch order is Fate/stay Night (FSN) from 2006, UBW from 2014, the three HF movies from 2017, 2019, and 2020, and lastly FZ from 2011. So why would anyone disagree with this? Why would you watch the anime out of order? There are two reasons: - -1. The F/SN (2006) anime isn't great. It's older, isn't super high quality, and for some reason mixes the various routes. There's a fan edit that fixes the route mixing, but you can't fix being lower quality/budget. I think it's ok, but I'm older and grew up with older anime so while it objectively isn't as good as UBW, I don't think that it's bad. - -2. As you might have noticed from the dates, FZ was animated before UBW^1 and Heaven's Feel. So many Fate fans started with FZ and believe that this is the correct way to do things. It might have been back in 2011 when FZ existed in its own bubble and UBW and HF weren't made, but they are now. Don't start with FZ. It spoils some MAJOR reveals for the rest of the series because it was written after the VN under the assumption that readers would have already read the VN. - -If F/SN is truly unwatchable for you due to the older style, read a recap or summary and start with UBW. Or find a playthrough of the VN on youtube. Or read the VN for yourself. - -Everything else is all spinoffs, isn't part of the main story, and can be watched in any order. So don't bother with it until you've seen FSN, UBW, HF, and FZ. By then, you should know enough to understand what all of the spinoffs are. - -_________ - -^1 Technically, there are two UBWs. The first is a movie made in 2010 by Deen, the same company who made 2006's FSN. The second, the one I recommend, is a 2-part series from 2014 by Ufotable. They also made FZ and HF. The 2010 version isn't *bad*, and is in fact a step up from 2006's FSN, but it's nowhere near as good as ufotable's version. Ufotable is able to tell the full story (since they aren't constrained by a movie's run time) and their series is gorgeously animated.";False;False;;;;1610380761;;1610392331.0;{};giw6mby;False;t3_kv4sjc;False;True;t3_kv4sjc;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw6mby/;1610429543;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;" ->Japan rates FMAB properly by putting it around the 19th spot or so in most rankings. - -I didn't know there was a ""proper"" way to express my subjective enjoyment of something on a scale of 1-10.";False;False;;;;1610380797;;False;{};giw6pp1;False;t3_kv4s8z;False;False;t1_giw2sk0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw6pp1/;1610429590;126;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"The point is that this is the tip of the iceberg of spoilers, this is just a copy-paste reply to why someone should watch Fate/Zero last (if they're an anime only). - -&#x200B; - -> My main disagreeance is that I knew all the Fate spoilers and it never once made me dislike the series or anything like that. If anything knowing the plot twists helped me see where and why certain things were happening and I actually really preferred that way of seeing it. - -Oh yes, but is it the intended way you're supposed to enjoy the story? No. - -If someone actively spoiled themselves about what the basement revealed of Attack on titan, they'd still enjoy it, but they're **ignoring the original intent of the author.**";False;False;;;;1610380816;;False;{};giw6rhi;False;t3_kv4sjc;False;False;t1_giw643z;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw6rhi/;1610429615;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;"I am wrong, or FMAB fanboy rate 1 EVERY anime that can surpased him? -And the other anime fans they take their revenge, and I would say rightly";False;False;;;;1610380829;;False;{};giw6so2;False;t3_kv4s8z;False;False;t1_giw5w6v;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw6so2/;1610429631;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"I don't doubt it, but we all remember the interspecies reviewers incident - -And FMAB is 11 years on Mal, 0.7% voted 1 (9k people), aot s4 is 40 days there and 3.3% voted 1 (3.6k) - -You can see that there's something wrong and unproportional";False;False;;;;1610380888;;False;{};giw6y5a;False;t3_kv4s8z;False;False;t1_giw5w6v;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw6y5a/;1610429711;46;True;False;anime;t5_2qh22;;0;[]; -[];;;kleber115;;;[];;;;text;t2_3a2jmy6m;False;False;[];;Wdym? These past 5 episodes have already been great and had consistently good writing on all of the episodes, I'm saying that s4 is also proving that it can be better than s3p2 especially when hero outside of the basement reveal was the high bar of s3p2;False;False;;;;1610380888;;False;{};giw6y5g;False;t3_kv4s8z;False;False;t1_giw6ili;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw6y5g/;1610429711;18;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"Dude the FMAB score trolling by AOT fans has actually died down pretty hard. The trolls spamming against AoT however are still stronger than ever. - - -I've kept track for the last 3 days and FMAB has received 130 1s whilst AoT has received 330 - - -It doesn't impact score but holy shit the dedication of whoever is making those trolls accounts on both sides is admirable";False;False;;;;1610380918;;1610381784.0;{};giw70uo;False;t3_kv4s8z;False;False;t1_giw5w6v;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw70uo/;1610429750;16;True;False;anime;t5_2qh22;;0;[]; -[];;;aqrt21;;;[];;;;text;t2_4laedvos;False;False;[];;Rent a girlfriend is absolutely dogshit;False;True;;comment score below threshold;;1610380952;;False;{};giw73sj;False;t3_kv5b1r;False;True;t3_kv5b1r;/r/anime/comments/kv5b1r/good_haremcomedy_anime_to_watch_like/giw73sj/;1610429796;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610380983;moderator;False;{};giw76kq;False;t3_kv5itq;False;True;t3_kv5itq;/r/anime/comments/kv5itq/searching_for_comedy_animes/giw76kq/;1610429834;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Kacperuss;;;[];;;;text;t2_7389yloe;False;False;[];;And i also like dark comedy like prison school;False;False;;;;1610381008;;False;{};giw78yz;True;t3_kv5itq;False;True;t3_kv5itq;/r/anime/comments/kv5itq/searching_for_comedy_animes/giw78yz/;1610429867;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;I don't disagree, I just think that approaching someone looking to get into the anime that the ONLY way you should watch it is through the source. All stories are adapted and changed but only Fate is treated this way, even with shows like Nisekoi where the story is done out of order and improperly the source isn't considered the only valid way to consume it.;False;False;;;;1610381026;;False;{};giw7alf;False;t3_kv4sjc;False;False;t1_giw6rhi;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw7alf/;1610429890;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Falsus;;;[];;;;text;t2_c6qmw;False;False;[];;Would say Fate/Zero was a fairly good show. I would rate it a 7/10 to 8/10. I think every other part of the franchise is fairly bad to mediocre though.;False;False;;;;1610381127;;False;{};giw7jqv;False;t3_kv4sjc;False;True;t3_kv4sjc;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw7jqv/;1610430029;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;AoT had a huge amount of positiv brigading positive brigading as from what we can judge from the statistics. 55+% 10/10s would usually mean 9.2+ easily since the negative brigading is obvious and cancelled out but the score was 'only' 9.06 as we had huge early brigading;False;False;;;;1610381129;;False;{};giw7jyw;False;t3_kv4s8z;False;False;t1_giw6y5a;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw7jyw/;1610430031;8;True;False;anime;t5_2qh22;;0;[]; -[];;;shadowmonarch123;;;[];;;;text;t2_95l65f1c;False;False;[];;For your information I like solo levelling and that’s way better than aot so I do have taste;False;True;;comment score below threshold;;1610381150;;False;{};giw7lta;False;t3_kv4s8z;False;True;t1_giw51gx;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw7lta/;1610430062;-17;True;False;anime;t5_2qh22;;0;[]; -[];;;Dependent_Text2792;;;[];;;;text;t2_67zw6fyc;False;False;[];;Golden Boy;False;False;;;;1610381249;;False;{};giw7upc;False;t3_kv5itq;False;True;t3_kv5itq;/r/anime/comments/kv5itq/searching_for_comedy_animes/giw7upc/;1610430197;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610381261;moderator;False;{};giw7vt6;False;t3_kv5m94;False;True;t3_kv5m94;/r/anime/comments/kv5m94/which_should_i_watch_one_piece_or_dragon_balls/giw7vt6/;1610430211;1;False;False;anime;t5_2qh22;;0;[]; -[];;;MuIder;;;[];;;;text;t2_16ozyf;False;False;[];;B A L L S;False;False;;;;1610381277;;False;{};giw7x7p;False;t3_kv5m94;False;False;t3_kv5m94;/r/anime/comments/kv5m94/which_should_i_watch_one_piece_or_dragon_balls/giw7x7p/;1610430233;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Dependent_Text2792;;;[];;;;text;t2_67zw6fyc;False;False;[];;I'm an absolutely pile dogshit so that explains everything. Thank you!;False;False;;;;1610381322;;False;{};giw819k;False;t3_kv5b1r;False;True;t1_giw73sj;/r/anime/comments/kv5b1r/good_haremcomedy_anime_to_watch_like/giw819k/;1610430294;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RogerRabbit200;;;[];;;;text;t2_3di7fley;False;False;[];;"Realistically, I don't think so. The hype might allow it to overtake FMAB sooner or later, but once the season ends and the hype settles the score will most likely drop as more viewers who aren't affected by the hype watches the season and gives their score. - -I recalled S3P2 managing to reach 9.17 during its peak, but after the season ends, it slowly fell until it settled at its current score.";False;False;;;;1610381322;;False;{};giw819m;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw819m/;1610430294;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Camrynblue;;;[];;;;text;t2_58n0ctbl;False;False;[];;One piece;False;False;;;;1610381329;;False;{};giw81xw;False;t3_kv5m94;False;True;t3_kv5m94;/r/anime/comments/kv5m94/which_should_i_watch_one_piece_or_dragon_balls/giw81xw/;1610430304;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal_Ebb_238;;;[];;;;text;t2_8nmkui77;False;False;[];;Welcome to demon highschool is my recent favorite.;False;False;;;;1610381361;;False;{};giw84qw;False;t3_kv5itq;False;True;t3_kv5itq;/r/anime/comments/kv5itq/searching_for_comedy_animes/giw84qw/;1610430346;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Let me tell you three scenarios for anime only people: - -A: Fate/Stay Night (2006) Fan Edit first: Many things are still missing from the original fate route - -B: Fate/Stay Night Unlimited Blade Works first: Oh look, you just straight up receive answers to questions you never had [Fate route spoilers](/s ""Who is Caster, who is the master of Assassin, why does Archer hate Shirou and what is his identity, etc.""), don't forget the Fate/Zero references - -C: Fate/Zero first: First 3 episodes spoil the biggest plot twists of the three routes.";False;False;;;;1610381388;;False;{};giw8773;False;t3_kv4sjc;False;True;t1_giw653d;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw8773/;1610430390;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi ThiccDaddy1198, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610381463;moderator;False;{};giw8e1g;False;t3_kv5oy9;False;True;t3_kv5oy9;/r/anime/comments/kv5oy9/help_a_newbie_anime_fan/giw8e1g/;1610430489;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Wowza, well considering Your Name pretty much got to that level it’s possible. On a side note, what the fuck happened with the ratings of Your Name in the past 4 or 5 years, it’s below a 9 now;False;False;;;;1610381514;;False;{};giw8ipm;False;t3_kv4s8z;False;False;t1_giw4c2c;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw8ipm/;1610430561;129;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;Pokémon is the best selling media franchise ever because it continues to appeal to people of all ages and newcomers alike. Focusing on only appealing to people who watched it in the 90s would be a financial mistake. It would also make the franchise awful.;False;False;;;;1610381689;;False;{};giw8yjy;False;t3_kv5k55;False;False;t3_kv5k55;/r/anime/comments/kv5k55/issues_with_the_pokémon_anime/giw8yjy/;1610430802;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Penguinman077;;;[];;;;text;t2_17z1u0yr;False;False;[];;Do you have any better options for us to choose from?;False;False;;;;1610381705;;False;{};giw901t;False;t3_kv5m94;False;False;t3_kv5m94;/r/anime/comments/kv5m94/which_should_i_watch_one_piece_or_dragon_balls/giw901t/;1610430823;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"[Stats before the episode dropped](http://imgur.com/a/I6J9a1B) - -The jump in 10/10 score % is ridiculously impressive. Something like 80+% 10/10 over the last day - -I've kept screenshots of this season's movement regularly lol along with the manga since it's moving really fast as well. - -S1-S3P2 are also rising. - -Last time I checked the average from Dec 21- Jan 2 (Too lazy to calculate rn) was - -S1 8.8 - - -S2 8.74 - - -S3 8.86 - - -S3P2 9.26 - -Manga has been at a steady 9.3ish for the last month or two as well. - -The above scores are only counting scores from the time period mentioned so please don't jump to random conclusions.";False;False;;;;1610381709;;1610397617.0;{};giw90d5;False;t3_kv4s8z;False;False;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw90d5/;1610430828;166;True;False;anime;t5_2qh22;;0;[]; -[];;;Ominous_Strix;;;[];;;;text;t2_3km5xr5i;False;False;[];;That goddamn speech about war and understanding both sides, it was like 10 minutes but felt like a single moment I was so entranced;False;False;;;;1610381766;;False;{};giw95md;False;t3_kv4s8z;False;False;t1_giw2asb;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw95md/;1610430905;152;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610381777;moderator;False;{};giw96lu;False;t3_kv5sza;False;True;t3_kv5sza;/r/anime/comments/kv5sza/trying_to_find_the_name_of_an_anime_i_was_going/giw96lu/;1610430918;1;False;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Daily Lives of High School Boys - -Grand Blue - -Gekkan Shoujo Nozaki-kun - -Toradora - -K-On - -Non Non Biyori - -Amaama to Inazuma - -Barakamon - -Flying Witch - -Ore Monogatari (Note not part of the Monogatari Series).";False;False;;;;1610381843;;False;{};giw9clg;False;t3_kv5oy9;False;False;t3_kv5oy9;/r/anime/comments/kv5oy9/help_a_newbie_anime_fan/giw9clg/;1610431013;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Our_Lord_Bauer;;;[];;;;text;t2_502zwb6g;False;False;[];;"The Fate VN is incredibly accessible to patch and play. You’re always 2 clicks away from the necessary files, and even if you’ve never played a PC game before in your life you’ll still have no trouble getting set up. - -As for the length: it’s a book, it’s meant to be a long-term investment. Read it in a week, or read it in small chunks for months, who cares? I’ve never heard a single argument from someone saying “but the VN is xxxxx hours long! You can’t expect someone to invest that much of time into it!” that didn’t make them sound lazy as hell. - -It’s not even a difficult book to read either, in fact, the English translation tends to dumb down the prose a bit too. If you’ve read through something like Harry Potter, you can read Fate. Read 1-2 hours a night and you’ll finish.";False;False;;;;1610381844;;False;{};giw9co0;False;t3_kv4sjc;False;True;t1_giw6ci3;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw9co0/;1610431015;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ominous_Strix;;;[];;;;text;t2_3km5xr5i;False;False;[];;"FMAB probably won't be dethroned since it is ""better"" for a wider audience. AOT has a lot of gore and much darker themes which won't appeal to everyone. FMAB is my go to to get people into anime and it has worked every time";False;False;;;;1610381850;;False;{};giw9d8u;False;t3_kv4s8z;False;False;t1_giw2sk0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw9d8u/;1610431022;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Star_Lux22;;;[];;;;text;t2_22d262q9;False;False;[];;Imagine caring about MAL rankings lol;False;False;;;;1610381893;;False;{};giw9hbo;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw9hbo/;1610431082;430;True;False;anime;t5_2qh22;;0;[]; -[];;;Orakisko;;;[];;;;text;t2_1525te;False;False;[];;“Ghost stories” dub is pretty hilarious and “Mob psycho 100” is a light hearted show that has some laughs;False;False;;;;1610381903;;False;{};giw9i9k;False;t3_kv5oy9;False;False;t3_kv5oy9;/r/anime/comments/kv5oy9/help_a_newbie_anime_fan/giw9i9k/;1610431094;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Wolfyminecraft;;;[];;;;text;t2_apzgp;False;False;[];;I haven't even seen the show past the first season and even I know this is a cold take;False;False;;;;1610381907;;False;{};giw9io8;False;t3_kv4s8z;False;False;t1_giw2oz2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw9io8/;1610431101;27;True;False;anime;t5_2qh22;;0;[]; -[];;;Karen_kaslana;;;[];;;;text;t2_3n10bo31;False;False;[];;S3p2 reached even higher numbers, but it won't matter cause The toxic FMAB fanbase on mal have been known to score manipulate the top 10 and prevent any anime series from surpassing FMAB. TBH Its kind of appalling how mentally ill some of these ppl are especially one of the cases where a guy literally created 300 MAL accounts to spam scores of 1 to all the other anime reaching 9 and above;False;False;;;;1610381908;;False;{};giw9is4;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw9is4/;1610431102;884;True;False;anime;t5_2qh22;;0;[]; -[];;;nothizispatrick;;;[];;;;text;t2_2yrrrxlq;False;False;[];;Lmao solo leveling is generic shit;False;False;;;;1610381929;;False;{};giw9ktv;False;t3_kv4s8z;False;False;t1_giw7lta;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw9ktv/;1610431132;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Tinkai;;;[];;;;text;t2_5upv9;False;False;[];;I mean, in the same coin AoT fan boys just mass vote 10's so it isn't any different.;False;True;;comment score below threshold;;1610381935;;False;{};giw9lc7;False;t3_kv4s8z;False;True;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw9lc7/;1610431140;-18;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;It's only the MC, the girls are great.;False;False;;;;1610381995;;False;{};giw9r4m;False;t3_kv5b1r;False;True;t1_giw73sj;/r/anime/comments/kv5b1r/good_haremcomedy_anime_to_watch_like/giw9r4m/;1610431223;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"> On a side note, what the fuck happened with the ratings of Your Name in the past 4 or 5 years, it’s below a 9 now - -Community reception changed pretty rapidly of Your Name I guess. Like now it's considered overrated and the anime fanbase doesn't consider it as highly as it used to. - - -It crashed really hard this year though. I tried digging it's average in yearly intervals for the last few years and it was already going down but this year the average score was close to 8.8";False;False;;;;1610381999;;1610383963.0;{};giw9rig;False;t3_kv4s8z;False;False;t1_giw8ipm;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw9rig/;1610431229;129;True;False;anime;t5_2qh22;;0;[]; -[];;;Tinkai;;;[];;;;text;t2_5upv9;False;False;[];;"Because the fan boys just mass vote 10's. I read people saying the first episode of the final was the greatest episode in anime, in terms of everything. - -I think these people haven't watched many animes.";False;False;;;;1610382032;;False;{};giw9upp;False;t3_kv4s8z;False;False;t1_giw284f;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw9upp/;1610431279;6;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;My guy, you're missing the point here. It might be an easy book but it's still incredibly dated and dry and it's not on Steam, people just aren't gonna do it they're just gonna pick something else on Crunchyroll.;False;False;;;;1610382050;;False;{};giw9wfn;False;t3_kv4sjc;False;True;t1_giw9co0;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw9wfn/;1610431305;0;True;False;anime;t5_2qh22;;0;[]; -[];;;shadowmonarch123;;;[];;;;text;t2_95l65f1c;False;False;[];;Wdym a cold take;False;True;;comment score below threshold;;1610382053;;False;{};giw9wnl;False;t3_kv4s8z;False;True;t1_giw9io8;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw9wnl/;1610431307;-15;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;Both positive and negative brigading is targeted in the weighted score btw;False;False;;;;1610382053;;False;{};giw9wpf;False;t3_kv4s8z;False;False;t1_giw9lc7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giw9wpf/;1610431308;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Except none of the fate adaptations do the original source justice. - -Nisekoi understood what made the original source good and made changes to make it better. - -The people behind Monogatari understood what made the original books good and didn't adapt it faithfully, they adapted it in a way that captured the orignal spirit - -You won't understand how much the fate adaptations changed from the original visual novel. - -Fate/Stay Night went from a deep dive into Shirou's mind, the story was told from his perspective. The ufotable adaptations just instead make it a story that's more hype and battle shounen-y. - -One of the biggest moments in Unlimited Blade Works, [spoilers](/s ""Shirou beating Archer"") is supposed to be this understanding that [spoilers](/s ""Yes, I know my ideal is flawed, but I have people who'll prevent me from going to the same path"") whereas in the anime it's more of a [spoiler](/s ""I'll beat you future me, I can't lose to myself. All the while last stardust, a song meant to hype you up is blasting in the background."")";False;False;;;;1610382056;;False;{};giw9wzf;False;t3_kv4sjc;False;True;t1_giw7alf;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giw9wzf/;1610431311;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RikkYT;;;[];;;;text;t2_i7tkthq;False;False;[];;I didn't ask for opinion on the anime, instead on something good that I should watch next.;False;False;;;;1610382087;;False;{};giw9zr1;True;t3_kv5b1r;False;False;t1_giw73sj;/r/anime/comments/kv5b1r/good_haremcomedy_anime_to_watch_like/giw9zr1/;1610431353;8;True;False;anime;t5_2qh22;;0;[]; -[];;;generalmillscrunch;;;[];;;;text;t2_zofoh;False;False;[];;With a quarter of the members it’s likely going to drop as more people who arnt as hyped on the series to watch it weekly end up watching it. MAL recently changed their algorithms to supposedly prevent brigading, but we’ll see if that actually does anything. Also there’s more people that don’t use MAL than those that do, it’s important to remember it’s a heavily skew older male audience that uses that site predominantly. It’s not really indicative of anything more than a baseline;False;False;;;;1610382113;;False;{};giwa22j;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwa22j/;1610431389;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wolfyminecraft;;;[];;;;text;t2_apzgp;False;False;[];;I think your opinion is likely not representative of the large majority of anime fans and that most likely AOT will maintain a high rank, even if it's not top 3;False;False;;;;1610382122;;False;{};giwa2vg;False;t3_kv4s8z;False;False;t1_giw9wnl;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwa2vg/;1610431401;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Our_Lord_Bauer;;;[];;;;text;t2_502zwb6g;False;False;[];;"What’s dated about it? It’s a fantasy story, that’s like saying “my guy, Lord of the Rings is dated.” - -Like I said, you’re two clicks away from downloading and patching it. You still sound lazy.";False;False;;;;1610382123;;False;{};giwa303;False;t3_kv4sjc;False;True;t1_giw9wfn;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giwa303/;1610431403;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;They did make it hype but Shirou literally has three episodes of dialogue with Archer explaining why, you can still get the message of the story.;False;False;;;;1610382144;;False;{};giwa4zn;False;t3_kv4sjc;False;True;t1_giw9wzf;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giwa4zn/;1610431431;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Karen_kaslana;;;[];;;;text;t2_3n10bo31;False;False;[];;Lol you have no idea what FMAB fans have done at all, even before AOT S3 came and started cementing itself as one of the best, FMAB fans on MAL were alr manipulating the top 10, if you don't believe me you can ask all your fellow steins Gate/gintama fans;False;False;;;;1610382165;;False;{};giwa6w2;False;t3_kv4s8z;False;False;t1_giw5w6v;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwa6w2/;1610431458;33;True;False;anime;t5_2qh22;;0;[]; -[];;;Tinkai;;;[];;;;text;t2_5upv9;False;False;[];;"""various"" - -Meanwhile if you go to the AoT subreddit and check the first episode of the final it's just people telling others to mass vote 10's.";False;False;;;;1610382183;;False;{};giwa8ke;False;t3_kv4s8z;False;False;t1_giw3k59;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwa8ke/;1610431481;51;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;">but you're still not getting people who don't know anything about Fate to get into the series by recommending them a 17 year old, - -I'm not going to recommend fate to anyone I know that isn't interested in visual novels. - -I only just tell them, if you want to enjoy it in the best way, visual novel is the best way. - -I also recommend the Garden of Sinners because I know 80% of the people that are interested in the fate franchise are interested because they want to see ufotable animation.";False;False;;;;1610382194;;False;{};giwa9kr;False;t3_kv4sjc;False;True;t1_giw6ci3;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giwa9kr/;1610431495;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610382219;;False;{};giwabvz;False;t3_kv5m94;False;True;t3_kv5m94;/r/anime/comments/kv5m94/which_should_i_watch_one_piece_or_dragon_balls/giwabvz/;1610431529;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;"> You still sound lazy - -I've played VN's before, I just don't think Fate Stay Night is worth the time. I don't think it's worth playing. - -As for it being dated, the entire art style? Playing a visual novel at all in 2020 in English???";False;False;;;;1610382237;;False;{};giwadkb;False;t3_kv4sjc;False;True;t1_giwa303;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giwadkb/;1610431555;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;">Wdym? These past 5 episodes have already been great and had consistently good writing - -The writing has always beem great. But let's look at the first 5 episodes properly: - -Episode 1 - Had bad CGI that was the focal point of the action unlike S3P2 it was used for regular titans not the colossal and the titan's also liked weight. At least WIT's CG titans still had weight to them. There was also the Gabi scene where the soldiers were dumb enough to allow her to blow up the tank. - -Episode 2 - I have nothing bad to say about episode 2. - -Episode 3 - They rushed through Reiner's backstory, the soundtrack wasn't utilised properly, cut to the OP awkwardly and lost the emotional weight from the manga. WIT rushed through the chapter 'That Day' adapted yet they were smart with the cuts they made and the emotional weight was still there and the OST elevated everything. Whereas MAPPA cut out important parts. - -Episode 4 - I have nothing bad to say about this episode. - -Episode 5 - The OST was off and the roar should have been louder. But still an amazing episode. - -Also the art people say is better but that only seems to be the case for Reiner. Even Zeke's art is off quite a few times. Also the use of CG for small scenes that don't require it like Reiner breaking the wall either 1) Use an impact still and save time, it would look much better or 2) Reuse what WIT produced for that scene. - -The blur really bothers me because I know without it the show would look much better.";False;True;;comment score below threshold;;1610382258;;False;{};giwafi8;False;t3_kv4s8z;False;True;t1_giw6y5g;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwafi8/;1610431586;-31;True;False;anime;t5_2qh22;;0;[]; -[];;;reddadz;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MysticEyes/;light;text;t2_oek5m;False;True;[];;"Sorry, your submission has been removed. - -- This looks like it's - a short video edit. - This is a form of restricted content that isn't allowed as a full post on the sub. You might consider posting about this sort of thing in the [weekly Casual Discussion Fridays megathread](https://www.reddit.com/r/anime/search?q=title%3A%22Casual+Discussion+Fridays%22+subreddit%3Aanime+author%3AAnimeMod&restrict_sr=on&sort=new&t=week) if it applies. See [our rules page](https://www.reddit.com/r/anime/wiki/rules#wiki_restricted_content) for a full list of restricted content categories. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610382258;moderator;False;{};giwafia;False;t3_kv5joq;False;True;t3_kv5joq;/r/anime/comments/kv5joq/mha_insane_edit_sorry_if_not_good/giwafia/;1610431586;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Al-Pharazon;;;[];;;;text;t2_1s32gw1x;False;False;[];;"IMO not understanding some Zero references as some songs or original scenes is miles better than having the main plot points of FSN spoiled. There is that, but even if we took all your three scenarios as equally valid entries there is still a right watch order. - -You should not see Lord El Mellois Case Files without Zero, seeing Carnival Phantasm without knowing the characters can be fun, but it is a worse experience. Nobody should go to Heavens Feel without having seen a least UBW. - -You cannot start with whatever series you want, that was my point.";False;False;;;;1610382287;;False;{};giwai67;False;t3_kv4sjc;False;True;t1_giw8773;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giwai67/;1610431625;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Our_Lord_Bauer;;;[];;;;text;t2_502zwb6g;False;False;[];;"Can’t help you there then. There’s no accounting for bad taste imo. - -Realta Nua (the version you’d be playing) is the HD PC remaster that was released back in 2012, with clean sprites. The art style isn’t bad, go play Tsukihime if you want to see what poor drawing looks like. - -Also, I honestly don’t see what your point about playing a VN in 2020 is supposed to mean. It’s a good story, those don’t get old.";False;False;;;;1610382476;;False;{};giwazxc;False;t3_kv4sjc;False;False;t1_giwadkb;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giwazxc/;1610431924;2;True;False;anime;t5_2qh22;;0;[]; -[];;;parsimo2010;;;[];;;;text;t2_47z2etoq;False;False;[];;For people that haven’t read the manga, this last episode was such a huge reveal. I would expect a big boost in score. I don’t know if it will stay that high for the rest of the season because I don’t think they can have every episode be that impactful.;False;False;;;;1610382503;;False;{};giwb2f1;False;t3_kv4s8z;False;False;t1_giw90d5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwb2f1/;1610431976;99;True;False;anime;t5_2qh22;;0;[]; -[];;;GhostOfLight;;;[];;;;text;t2_go8xe;False;False;[];;">the roar should've been louder - -Have manga readers nitpicking gone too far?";False;False;;;;1610382536;;False;{};giwb5jc;False;t3_kv4s8z;False;False;t1_giwafi8;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwb5jc/;1610432021;34;True;False;anime;t5_2qh22;;0;[]; -[];;;seninn;;MAL;[];;http://myanimelist.net/animelist/Senninn0;dark;text;t2_fw8p2;False;False;[];;Joke's on you, I rated it 10/10 even before NuxTaku sent out an army.;False;False;;;;1610382551;;False;{};giwb6wk;False;t3_kv4s8z;False;False;t1_giw3jdv;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwb6wk/;1610432045;65;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;Ah, so the 9k+ 1s FMA:B has are legitimate and the 3-4k that the other three have are FMA:B fans manipulating the top anime. Gotcha'. I should've known everyone else was innocent.;False;True;;comment score below threshold;;1610382570;;False;{};giwb8i8;False;t3_kv4s8z;False;True;t1_giwa6w2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwb8i8/;1610432070;-25;True;False;anime;t5_2qh22;;0;[]; -[];;;ThiccDaddy1198;;;[];;;;text;t2_95xnujhs;False;False;[];;Thank youuu;False;False;;;;1610382576;;False;{};giwb92o;True;t3_kv5oy9;False;True;t1_giw9clg;/r/anime/comments/kv5oy9/help_a_newbie_anime_fan/giwb92o/;1610432079;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;I am one of the manga readers who considers the anime better than the manga. So I am not just hating for the sake of it. It is a minor thing though.;False;False;;;;1610382582;;False;{};giwb9k2;False;t3_kv4s8z;False;True;t1_giwb5jc;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwb9k2/;1610432091;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;kleber115;;;[];;;;text;t2_3a2jmy6m;False;False;[];;The majority of those complaints are not on the writing but on the animation and cgi, sure I wish the titan on ep1 weren't cgi but eren's titan and the flashback on ep 3 was also animated, your thoughts about the ost use and how the characters looks is more of a subjective stance, even if it has animation bumps the writing makes up for it, especially considering everything taht happens post declaration of war so yeah sure we still dont know if it'll be number 1 but it definitely can achieve taht feat;False;False;;;;1610382586;;False;{};giwb9y4;False;t3_kv4s8z;False;True;t1_giwafi8;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwb9y4/;1610432095;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ThiccDaddy1198;;;[];;;;text;t2_95xnujhs;False;False;[];;I will check it out, thank you;False;False;;;;1610382595;;False;{};giwbar7;True;t3_kv5oy9;False;True;t1_giw9i9k;/r/anime/comments/kv5oy9/help_a_newbie_anime_fan/giwbar7/;1610432110;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"This isn't the only example you know right? There are tones of examples. - -Another [UBW anime spoiler](/s ""Shirou defeats Gilgamesh because Gilgamesh hesitated about taking EA, Shirou wins for the sole fact that Gilgamesh was being too arrogant, if Gilgamesh didn't hesitate, shirou would've lost"" whereas in the visual novel and even the Unlimited Blade Works movie, [spoiler](/s ""Shirou wins both because Gilgamesh didn't take out EA in the beginning, but also because of his determination to beat Gilgamesh to be the best user"") - -Honestly look at the Deen vs ufotable of that fight, disregard the animation, and you'll see how the fight is different.";False;False;;;;1610382606;;1610383101.0;{};giwbbt1;False;t3_kv4sjc;False;True;t1_giwa4zn;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giwbbt1/;1610432123;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;"> There’s no accounting for bad taste imo - -Tohsaka's defenseless anus, truly amazing literature";False;False;;;;1610382612;;False;{};giwbcd4;False;t3_kv4sjc;False;True;t1_giwazxc;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giwbcd4/;1610432131;0;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"It'll go up as long as it doesn't disappoint heavily but at a slower pace since a 9.8 average for a 24 hour period is near unsustainable no matter how good. - -Expect it to slowly climb till the finale where it'll receive an even bigger boost";False;False;;;;1610382693;;False;{};giwbjr1;False;t3_kv4s8z;False;False;t1_giwb2f1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwbjr1/;1610432269;62;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;No problem. I know that you're new, but I highly suggest to create an anime list. Sooner rather than later. You can create one at either: Myanimelist.net, anilist.co, kitsu or anime-planet. All 4 are free and easy to use. Helps you remember what you've seen and helps us so we aren't suggesting you what you've seen already.;False;False;;;;1610382704;;False;{};giwbkvx;False;t3_kv5oy9;False;True;t1_giwb92o;/r/anime/comments/kv5oy9/help_a_newbie_anime_fan/giwbkvx/;1610432286;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610382728;;False;{};giwbn1p;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwbn1p/;1610432316;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"I get your point, I'm sorry for misunderstanding. - -My point was that for people that watch fate as an anime-only, they will always have a problem with the watch order. - -I'm glad we cleared up the misconception.";False;False;;;;1610382728;;False;{};giwbn1z;False;t3_kv4sjc;False;True;t1_giwai67;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giwbn1z/;1610432316;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;It's shaping up to be one of the greatest series of all time, wdym ?;False;False;;;;1610382771;;False;{};giwbr0c;True;t3_kv4s8z;False;False;t1_giwbn1p;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwbr0c/;1610432376;9;True;False;anime;t5_2qh22;;0;[]; -[];;;chika2chi;;;[];;;;text;t2_4dkz2y8e;False;False;[];;this is why I don't consider MAL reliable anymore. literally in the beginning of the season, only 5 episodes out that were mostly buildup and already a hundred thousand people voted. it started at like 9.1 or something. the fans were spamming 10/10 stars with literally the first episode. this shit is just stupid.;False;False;;;;1610382783;;False;{};giwbs46;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwbs46/;1610432391;62;True;False;anime;t5_2qh22;;0;[]; -[];;;Our_Lord_Bauer;;;[];;;;text;t2_502zwb6g;False;False;[];;"Then don’t play with hentai scenes tacked on, Nasu didn’t even write them. There’s a setting you can toggle to remove that content, which constitutes 20 minutes out of a 60 hour story. Good meme though. - -There’s a reason why those were removed in every subsequent release since 2006. The game was originally marketed as an eroge to sell copies, but once it achieved mainstream success they dropped that aspect since those scenes were never the author’s original intent.";False;False;;;;1610382834;;1610395538.0;{};giwbx0b;False;t3_kv4sjc;False;True;t1_giwbcd4;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giwbx0b/;1610432461;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ThiccDaddy1198;;;[];;;;text;t2_95xnujhs;False;False;[];;Sure, I'll check that out. Thanks for letting me know about this.;False;False;;;;1610382838;;False;{};giwbxcl;True;t3_kv5oy9;False;True;t1_giwbkvx;/r/anime/comments/kv5oy9/help_a_newbie_anime_fan/giwbxcl/;1610432467;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;But the series has built up to this, the fact they're fans that passionate is crazy. The series has had amazing build up and also the first 5 épisodes have had amazing world building;False;True;;comment score below threshold;;1610382848;;False;{};giwbyct;True;t3_kv4s8z;False;True;t1_giwbs46;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwbyct/;1610432481;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;Ufotable adapted that scene fine. The exact message you think isn't being portrayed is exactly what they put on screen, if not word for word.;False;False;;;;1610382925;;False;{};giwc5j3;False;t3_kv4sjc;False;True;t1_giwbbt1;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giwc5j3/;1610432618;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;It's about mass appeal, any show that has a mass appeal does good there.;False;False;;;;1610383023;;False;{};giwcejm;True;t3_kv4s8z;False;True;t1_giwa22j;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwcejm/;1610432795;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;I mean mal did say they're gonna do something to stop the fake ratings;False;False;;;;1610383052;;False;{};giwch86;True;t3_kv4s8z;False;False;t1_giw9is4;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwch86/;1610432844;357;True;False;anime;t5_2qh22;;0;[]; -[];;;Totally_not_sad;;;[];;;;text;t2_6d2anr8y;False;False;[];;"love is war - - -rent a gf -konosuba -5 quintessential quintuplets";False;False;;;;1610383103;;False;{};giwcm1n;False;t3_kv5oy9;False;True;t3_kv5oy9;/r/anime/comments/kv5oy9/help_a_newbie_anime_fan/giwcm1n/;1610432913;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chika2chi;;;[];;;;text;t2_4dkz2y8e;False;False;[];;"stop being delusional. this is fans spamming 10/10s. the build up wasn't ""amazing"", no build up gets these numbers, let alone this one. I'm telling you it was at like 9.1 from the first episode.";False;False;;;;1610383108;;False;{};giwcmib;False;t3_kv4s8z;False;False;t1_giwbyct;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwcmib/;1610432920;34;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;Lol this thread is filled with salt.;False;False;;;;1610383127;;False;{};giwco75;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwco75/;1610432948;298;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Nah, FMAB isn't that original and lacks a strong hook. The series takes around 10 épisodes to get started. also Aot does have gore but remember it's animated. Most people don't really care about animated gore.;False;True;;comment score below threshold;;1610383188;;False;{};giwctsq;True;t3_kv4s8z;False;True;t1_giw9d8u;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwctsq/;1610433043;-14;True;False;anime;t5_2qh22;;0;[]; -[];;;zombiemusician;;;[];;;;text;t2_8dqsg2id;False;False;[];;I personally like Dragon Ball series;False;False;;;;1610383276;;False;{};giwd295;False;t3_kv5m94;False;False;t3_kv5m94;/r/anime/comments/kv5m94/which_should_i_watch_one_piece_or_dragon_balls/giwd295/;1610433169;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;True it'll drop after the hype However the series in itself without the hype is good enough to become the best. So let's keep on watching what'll happen but i feel like it'll.;False;False;;;;1610383288;;False;{};giwd3cb;True;t3_kv4s8z;False;False;t1_giw819m;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwd3cb/;1610433187;6;True;False;anime;t5_2qh22;;0;[]; -[];;;AdmirableFondant0;;;[];;;;text;t2_3u7avr5f;False;False;[];;Season 3 was much better,story is carrying S4 extremely hard;False;True;;comment score below threshold;;1610383327;;False;{};giwd779;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwd779/;1610433263;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Mass audience appeal is what I'm talking about, your opinion isn't fact but the accumulated opinions of thousands Is as close fact and you can get.;False;True;;comment score below threshold;;1610383337;;False;{};giwd85d;True;t3_kv4s8z;False;True;t1_giw6pp1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwd85d/;1610433279;-32;True;False;anime;t5_2qh22;;0;[]; -[];;;peanut-buttr;;;[];;;;text;t2_76evn7go;False;False;[];;Believe me it will;False;False;;;;1610383377;;False;{};giwdby4;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwdby4/;1610433348;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Solo leveling is absolute repetitive garbage 😂 ya trash taste confirmed. https://youtu.be/uNDjVH5qiyM;False;False;;;;1610383378;;False;{};giwdbz2;True;t3_kv4s8z;False;True;t1_giw7lta;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwdbz2/;1610433348;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kirikoh;;;[];;;;text;t2_qa58w;False;False;[];;"It started falling when it overtook FMAB and Koe no katachi fans brigaded it as well. - -It was a similar incident to what happened with Vinland Saga fans vote brigading Chihayafuru S3.";False;False;;;;1610383424;;False;{};giwdg7d;False;t3_kv4s8z;False;False;t1_giw9rig;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwdg7d/;1610433426;80;True;False;anime;t5_2qh22;;0;[]; -[];;;oneVanquisher;;;[];;;;text;t2_75ngnv7j;False;False;[];;Monogatari series;False;False;;;;1610383455;;False;{};giwdj1j;False;t3_kv5b1r;False;True;t3_kv5b1r;/r/anime/comments/kv5b1r/good_haremcomedy_anime_to_watch_like/giwdj1j/;1610433482;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ominous_Strix;;;[];;;;text;t2_3km5xr5i;False;False;[];;"A lot of people are still off put by the gore, for many it's the concept of gore not the visuals themselves. - -I'll agree that FMAB doesn't have a great hook, but just a few episodes in it gets rolling. Idk how you think FMAB isn't that original, never seen a western production like it plus it introduces you to character tropes in anime";False;False;;;;1610383491;;False;{};giwdmd5;False;t3_kv4s8z;False;False;t1_giwctsq;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwdmd5/;1610433535;6;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;"You have to consider that aot has 3.9k 1 rated, and the serie starts 40 days ago. -Aot s4, deverse the 2nd or maybe the 1st position";False;False;;;;1610383505;;False;{};giwdnmb;False;t3_kv4s8z;False;True;t1_giwbs46;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwdnmb/;1610433554;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheSoaringDingo;;;[];;;;text;t2_2yc2u07x;False;False;[];;Love is war is really good;False;False;;;;1610383508;;False;{};giwdnvf;False;t3_kv5itq;False;True;t3_kv5itq;/r/anime/comments/kv5itq/searching_for_comedy_animes/giwdnvf/;1610433557;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"If you can't see the difference I'll use another example. This time from Heaven's Feel. - -[Spoilers for the first Heaven's Feel](/s ""Saber getting sucked by the darkness felt like she got devoured by an unknown force, whereas in the visual novel every of the choices leads to saber being gone and you're like, wait that can't happen Saber was with us for the previous two routes."") - -[Spoilers for the second Heaven's Feel films](/s ""We are supposed to see the suffering of Sakura from the worms to see how evil Zouken really is, also not to mention we see Zouken actually eat the pedestrians whereas it's just mentioned in the news. We don't actually know how bad Zouken is."") - -[Spoilers for the third Heaven's Feel film even though it got skipped-ish](/s ""The visual novel made a big moment out of saving Illya, where all three of the options was 'Save Illya'"") - -Ultimately, the ufotable adaptations are unable to adapt the monologues, the interactivity (and the bad ends).";False;False;;;;1610383534;;False;{};giwdqd0;False;t3_kv4sjc;False;True;t1_giwc5j3;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giwdqd0/;1610433591;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ya, but how can you be so dumb ? You're acting like it's the first 5 episodes when it's really not. These are Epsiodes 60-64, all the characters have been built up in the series already, and everything holds greater significance. The way the series has revealed the world has been crazy and we're just getting to know that world. Something even as little as how the houses on marley are built Is super interesting cox of the journey we've taken here. The series has already built itself to an 10/10. The fans aren't just watching s4, they're pretty much watching the culmination of everything.;False;False;;;;1610383535;;False;{};giwdqee;True;t3_kv4s8z;False;True;t1_giwcmib;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwdqee/;1610433591;0;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;Gamers!, Miss Kobayashi's Dragon Maid, K-On!, Yuru Camp, Kaguya-sama;False;False;;;;1610383550;;False;{};giwdrvf;False;t3_kv5oy9;False;True;t3_kv5oy9;/r/anime/comments/kv5oy9/help_a_newbie_anime_fan/giwdrvf/;1610433613;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Lowkey true 😂;False;True;;comment score below threshold;;1610383579;;False;{};giwduh2;True;t3_kv4s8z;False;True;t1_giwco75;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwduh2/;1610433651;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;It's in its build up phase my guy, that's like saying s3 was trash by the first 2 épisodes of cour 2. Where they're just heading to the walls.;False;False;;;;1610383595;;False;{};giwdw38;True;t3_kv4s8z;False;False;t1_giwd779;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwdw38/;1610433673;27;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;I think so as well;False;False;;;;1610383630;;False;{};giwdz8w;True;t3_kv4s8z;False;True;t1_giwdby4;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwdz8w/;1610433718;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;">With a quarter of the members it’s likely going to drop as more people who arnt as hyped on the series to watch it weekly end up watching it. - -At worst it'll maintain this score. The season will continue to rise similar to what S3P2 did when it aired due to the sheer quality of the material covered unless the adaptation drops in quality significantly. - -I predict a steady rise to around atleast 9.2s until the last few episodes airs and crack 9.3+ easily when it ends. - ->but we’ll see if that actually does anything - -It's been doing its thing since the start. - - -> a heavily skew older male audience that uses that site predominantly. - -More closer to a teen - middle aged males. However this usually is only affecting popularity of a said series rather than score. - -There are plenty of high rated Shoujo/Josei near the top and stuff such as Given (mostly the manga) and Haikyuu having huge female fanbases are also rated really high";False;False;;;;1610383636;;1610383836.0;{};giwdzqj;False;t3_kv4s8z;False;True;t1_giwa22j;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwdzqj/;1610433725;1;True;False;anime;t5_2qh22;;0;[]; -[];;;padperascha;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/swappong;light;text;t2_pjclzwj;False;False;[];;You just explained it yourself why its rated so high. Survivorship bias, the only people who are rating it highly are people who've been watching AoT from the beginning and love it, everyone who probably wouldn't like it are already gone. Same reason why Symphogear XV is so high (comparatively to the other seasons), the only people who watched that season are hardcore Symphogear fans.;False;False;;;;1610383662;;False;{};giwe29l;False;t3_kv4s8z;False;False;t1_giwbyct;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwe29l/;1610433759;38;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;I mean that's pretty standard for every adaptation, this isn't a Fate exclusive thing.;False;False;;;;1610383684;;False;{};giwe4fu;False;t3_kv4sjc;False;True;t1_giwdqd0;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giwe4fu/;1610433790;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chika2chi;;;[];;;;text;t2_4dkz2y8e;False;False;[];;the season has 16 episodes. 100k people voting on 5 build up episodes, whether it's 1 or 10, is stupid and wrong. but we know which way the voting skews given where the rating at right now and it's not towards the 1.;False;False;;;;1610383752;;False;{};giweazc;False;t3_kv4s8z;False;False;t1_giwdnmb;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giweazc/;1610433883;15;True;False;anime;t5_2qh22;;0;[]; -[];;;AvnvPS;;;[];;;;text;t2_569vyqq2;False;False;[];;Lmao funniest shit ever;False;False;;;;1610383753;;False;{};giweb28;False;t3_kv4s8z;False;False;t1_giw7lta;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giweb28/;1610433885;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610383770;;1610383964.0;{};giwecpe;False;t3_kv4s8z;False;True;t1_giw2s5a;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwecpe/;1610433907;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;It's just a Shonen executed really well, it feels like a Shonen. AOT just has a different feel where it feels like a grand tale of the world's kinda like Legend of the Galactic heroes. The way Aot slowly builds itself up and goes from a normal Shonen with a good concept to where it is now isn't something FMAB gets even close to doing. It has great villains and stuff but to some extent to me at least the story doesn't feel extremely unique. Like for example the villains want immortality but it's never really explained well. It's a unique story but lacks the thrill that Aot has.;False;True;;comment score below threshold;;1610383797;;False;{};giwefam;True;t3_kv4s8z;False;True;t1_giwdmd5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwefam/;1610433944;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;ThiccDaddy1198;;;[];;;;text;t2_95xnujhs;False;False;[];;Thank youu;False;False;;;;1610383798;;False;{};giwefdt;True;t3_kv5oy9;False;True;t1_giwcm1n;/r/anime/comments/kv5oy9/help_a_newbie_anime_fan/giwefdt/;1610433945;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;">The majority of those complaints are not on the writing - -I know I literally said that. - -""The writing has always been great. But let's look at the first 5 episodes properly:"" - -These episodes were written well but none are at the height of the great episodes in S3P2 yet. I know it will happen soon.";False;False;;;;1610383824;;False;{};giwehr0;False;t3_kv4s8z;False;True;t1_giwb9y4;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwehr0/;1610433983;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ravioli_Heicho;;;[];;;;text;t2_3bls5ou;False;False;[];;"> do you think it'll be able to take out the king Fullmetal alchemist brotherhood ? - -It absolutely *should*, it’s a much better show... but it won’t. Every time a show comes anywhere near catching up to *Brotherhood*, their community on MAL shows up and review bombs en masse to prevent it from being overtaken.";False;False;;;;1610383875;;False;{};giwemmi;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwemmi/;1610434050;84;True;False;anime;t5_2qh22;;0;[]; -[];;;Fierce-Mushroom;;;[];;;;text;t2_9851jvsi;False;False;[];;If it does it'll be a travesty. AoT is just ok at its highest point.;False;True;;comment score below threshold;;1610383917;;False;{};giweqfh;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giweqfh/;1610434103;-27;True;False;anime;t5_2qh22;;0;[]; -[];;;Ominous_Strix;;;[];;;;text;t2_3km5xr5i;False;False;[];;"It very much doesn't feel like other shounen shows that have a new villain every arc, the pacing of arcs in FMAB feels a lot more fluid and he doesn't commit to spending 12 episodes on every plot point. - -Also the villain's motives are explained very well...";False;False;;;;1610383940;;False;{};giwesms;False;t3_kv4s8z;False;False;t1_giwefam;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwesms/;1610434134;13;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ya, except the fact aot doesn't have many haters, especially when compared to show like re zero or steins gate. Those are popular but it's easy to find haters where as for aot haters are rare to come by. Which just shows how mass the appeal of Aot is. There is something for everyone, a mystery, action, world building and etc. It covers a lot of genres and has practically no fan service. So most people who watch it watch it all the way.;False;True;;comment score below threshold;;1610383983;;False;{};giwewqj;True;t3_kv4s8z;False;True;t1_giwe29l;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwewqj/;1610434190;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Pretty pretentious lol, and this is coming from someone who prefers Koe no Katachi;False;False;;;;1610383987;;False;{};giwex4c;False;t3_kv4s8z;False;True;t1_giw9rig;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwex4c/;1610434195;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chika2chi;;;[];;;;text;t2_4dkz2y8e;False;False;[];;"the vote is literally for this season and the rating shows up for s4. anyone voting for the entire series is stupid. the build up is literally in Marely, the characters that the series ""built up"" are not there except Reiner (eren shows up later). none of your excuses make sense. you can convince yourself that those people voting 10s are impressed with the houses or some shit or you can accept the obvious reality that the fans are spamming the rating.";False;False;;;;1610384045;;False;{};giwf2gz;False;t3_kv4s8z;False;False;t1_giwdqee;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwf2gz/;1610434271;35;True;False;anime;t5_2qh22;;0;[]; -[];;;Hochseeflotte;;;[];;;;text;t2_38czhwoh;False;False;[];;"NOOOOOOOOOOO Steins;Gate! - -Joking aside good for AOT. I may prefer Steins;Gate slightly though they are both 10s for me. If anything is taking down FMA:B it may be AOT.";False;False;;;;1610384057;;False;{};giwf3nn;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwf3nn/;1610434288;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Honestly it's so pitty, FMAB imo is an absolutely amazing show but it doesn't compare to what Aot has accomplished with the way it's built up its world. We literally went from titan vs humans to nazi vs Jews. What other show can claim that kinda major shift. Fmab is from the start government conspiracy against MC;False;False;;;;1610384075;;False;{};giwf51a;True;t3_kv4s8z;False;False;t1_giwemmi;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwf51a/;1610434309;12;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;I love steins gate, it's my 4th favorite but Aot is my first fav so ya 😂;False;False;;;;1610384104;;False;{};giwf7wa;True;t3_kv4s8z;False;True;t1_giwf3nn;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwf7wa/;1610434350;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;">FMAB and Koe no katachi fans - -I wasn't on the site back then unfortunately but right now the score is likely free of any brigading as it as a 0.3% of 1s. It's facing a natural decline - -Chihayafuru 3's case is much more confusing imo. Some claim it was VS fans, whilst some claim it was Chinese bots due to the author's comments on Hong Kong iirc";False;False;;;;1610384129;;False;{};giwfabn;False;t3_kv4s8z;False;False;t1_giwdg7d;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwfabn/;1610434383;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Heaven's Feels is the biggest offender of ""shounen-izing"" of fate. - -[Also Heaven's Feel 2 spoilers](/s ""Salter vs Berserker made the monster less scary and made it focused on action. In the original, Berserker just gets swallowed."") - -[Also Heaven's Feel 2 spoilers](/s ""Sakura not knowing about the monster makes her feel like the damsel in distress, she just happened to have an evil possess her, whereas in the original visual novel she knew very well that she was the monster and knows that she is a threat to the world. Heaven's Feel dealt with the Jungian Horror of the Shadow taking over, whereas Heaven's Feel in the visual novel was a psychological horror, the movies are more action based with a horror element"") - -At this point if after I say these and none of them affect your views on why reading the visual novel first should be the best way to enjoy fate, then nothing except you yourself reading the visual novel can change your perspective.";False;False;;;;1610384141;;False;{};giwfbhz;False;t3_kv4sjc;False;True;t1_giwe4fu;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giwfbhz/;1610434398;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fadasd1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/fadasd;light;text;t2_jbsu6;False;False;[];;This argument is ridiculously flawed, thousands of anti-vaxxers believing vaccines cause autism doesn't make that a fact.;False;False;;;;1610384179;;False;{};giwff31;False;t3_kv4s8z;False;False;t1_giwd85d;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwff31/;1610434448;23;True;False;anime;t5_2qh22;;0;[]; -[];;;ItchyPlatypus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ItchyPlatypus;light;text;t2_x6uza5h;False;False;[];;"The fake ratings/brigading has been solved. That’s not a valid point anymore. Also ngl if people actually reserved their judgement until the anime is over it wouldn’t gain as many ‘toxic’ ratings. - -The 10/10 ratings for a handful of episodes is just as bad. Like the OP claiming it’s official. It’s not because it’s unfinished, this could just end awfully for all we know adaptations are never perfect. MAL should just remove any unfinished season on the list besides the ongoing anime with over 100 episodes. It just leads to spite voting and also leads to obnoxious fans also chiming in with fake accounts for 10/10s.";False;False;;;;1610384179;;False;{};giwff55;False;t3_kv4s8z;False;False;t1_giw9is4;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwff55/;1610434448;172;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;That's just a flaw with Mal, you can't really jugde inherently seperate pieces of the same story. All of the stuff Aot has built upto is being judged there. What you're pretty much saying is that people should jugde it like they just started watching it the show at s4. Which just simply isn't right.;False;False;;;;1610384224;;False;{};giwfj9x;True;t3_kv4s8z;False;True;t1_giwf2gz;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwfj9x/;1610434508;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;That's science that can be proven, this is entirely opinionated. And mass opinion can decide what's in general better;False;True;;comment score below threshold;;1610384274;;False;{};giwfnys;True;t3_kv4s8z;False;True;t1_giwff31;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwfnys/;1610434582;-17;True;False;anime;t5_2qh22;;0;[]; -[];;;AdmirableFondant0;;;[];;;;text;t2_3u7avr5f;False;False;[];;"i just said the story is carrying it hard,my problem was with the animation and direction not the story. - -Lets hope the next episode is great";False;False;;;;1610384279;;False;{};giwfoep;False;t3_kv4s8z;False;False;t1_giwdw38;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwfoep/;1610434589;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Nr, Aot has evolved so much over the course of its story. Fmab isn't even close.;False;False;;;;1610384307;;False;{};giwfr2a;True;t3_kv4s8z;False;False;t1_giweqfh;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwfr2a/;1610434633;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Karen_kaslana;;;[];;;;text;t2_3n10bo31;False;False;[];;"This argument is absolutely stupid I nearly got a stroke, - -1st Point, FMAB is literally one of the oldest anime in the top 10 with the most members over 2 million, no shit that over 10 years they would have collected way more 1s compared to all the other anime that are around literally half the time or less (fuck even the best AOT seasons are around for a year at most) - -2nd point, I Have literally seen the scores of the top 10 move randomly out of nowhere, most of the time this happens when an anime score is coming close to FMAB's *cough cough * Gintama *cough cough* AOT. Let's take AOT S3P2 for example, when their score at the end of the season was om par at 9.21, AOT score suddenly dropped the next day and FMAB's score rose. While you can argue that AOT was just settling into the score it "" belongs "", please explain to me how and why FMAB increase by a score of 0.06 in a matter of a day when it was literally stagnant for months and had no new content in 10 years? - -3rd point, comparing the numbers is stupid after you realise who is pointing heads at each other. How often do you see steins Gates fans, HXH fans, gintama fans and AOT fans shit talking each other ? Compare that to how much dissent there is towards the FMAB fanbase on MAL, no shit there will be many diff types of ppl who will vote 1 on your fav anime just to spite you when you make that many enemies. - -4th point: rmb kimi no nawa? Rmb what happened to it literally a day after it surpassed FMAB in ranking? Literally got brigaded to hell. - -Yes, the AOT fandom rightnow is toxic and yes its uncontrollable with their forceful opinions, but make no mistake, FMAB fans are still the ones who started the score Manipulation on MAL years ago and are still the main offenders today";False;False;;;;1610384310;;1610384649.0;{};giwfrcn;False;t3_kv4s8z;False;False;t1_giwb8i8;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwfrcn/;1610434637;24;True;False;anime;t5_2qh22;;0;[]; -[];;;emeraldwolf34;;;[];;;;text;t2_5ii972bi;False;False;[];;Did it really beat Gintama? Gintama's been clashing with FMAB for what feels like centuries;False;False;;;;1610384324;;False;{};giwfslr;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwfslr/;1610434656;37;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;I mean Gintama is like 400 épisodes so it fails to capture a lot of new audience especially since it's episodic at points;False;False;;;;1610384369;;False;{};giwfwub;True;t3_kv4s8z;False;False;t1_giwfslr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwfwub/;1610434714;27;True;False;anime;t5_2qh22;;0;[]; -[];;;fadasd1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/fadasd;light;text;t2_jbsu6;False;False;[];;"Thousands of opinions together still never turn into fact, they merely represent what the average human being is likely to think. - -Your argument becomes no less flawed.";False;False;;;;1610384390;;False;{};giwfypr;False;t3_kv4s8z;False;False;t1_giwfnys;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwfypr/;1610434739;22;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;I mean story is really what everyone cares about, and the animation is alright. Not too bad;False;False;;;;1610384414;;False;{};giwg10s;True;t3_kv4s8z;False;False;t1_giwfoep;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwg10s/;1610434769;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;I said as close to fact as it can be, damn people lack reading skills;False;True;;comment score below threshold;;1610384441;;False;{};giwg34j;True;t3_kv4s8z;False;True;t1_giwfypr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwg34j/;1610434800;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;Karen_kaslana;;;[];;;;text;t2_3n10bo31;False;False;[];;Giving ratings to unfinished anime shouldn't be a thing, but spite voting/false reviews are even worse imo;False;False;;;;1610384461;;False;{};giwg5d8;False;t3_kv4s8z;False;False;t1_giwff55;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwg5d8/;1610434832;209;True;False;anime;t5_2qh22;;0;[]; -[];;;UDani11;;;[];;;;text;t2_3urk0qno;False;False;[];;Dunno man, i feel like steins gate was better. But ye it's one above steins gate on mal.;False;False;;;;1610384626;;False;{};giwgks5;False;t3_kv4s8z;False;True;t1_giw2asb;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwgks5/;1610435048;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;kleber115;;;[];;;;text;t2_3a2jmy6m;False;False;[];;"I would disagree with this, - -Episode from s3p2 was just build up, outside the ending nothing important happened just like ep from s4, but with the exception taht it showed us how the eldians are treated in battle and tha we are going to follow a new cast of characters - -Episode 2 was only the battle between eren and reiner, nothing more, the fight wasn't as well animated as their first and it wasn't as impactful. S4 ep2 showed us how the military works, the warriors place on the military and gave us more understanding of Reiner's and the warriors motivation - -Episode 3 again, outside the ending conversation between berthold and armin nothing impactful happened. S4ep3 showed us Reiner's backstory and started the redemption arc for reiner, it gave a way deeper look on reiner than s3p2 did with bert - -Episode 4 is the only one where s3p2 was better than s4, erwins character skyrocketed on writing, his speech was flawless, the tension with the colossal and the beast titan was gigantic and the ending was incredible -S4ep4 was the calm before the storm, it introduced us to willy and maggath and gave us a wholesome moment with the kids but nothing as good as s3p2 - -Episode 5 is equal to s4ep5 both had an gigantic tension, were the conclusions to the build up made by the last 4 episodes had emotional writing and moments and are easily 2 of the best aot episodes - -S3p2 post hero had only 4 episodes, meanwhile theres 11 episodes yet to adapted, these were on the same level (arguably even better than s3p2) and it's only the beginning of the best aot arc, so yeah aot s4 can take the number 1 spot and probably will";False;False;;;;1610384632;;False;{};giwglew;False;t3_kv4s8z;False;False;t1_giwehr0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwglew/;1610435057;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;You're welcome.;False;False;;;;1610384671;;False;{};giwgp43;False;t3_kv5oy9;False;True;t1_giwbxcl;/r/anime/comments/kv5oy9/help_a_newbie_anime_fan/giwgp43/;1610435109;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;But FMAB too has lots of mass audience appeal? Compared to AoT I think it has some things it's better at, though in general its approach to many of their shared themes is more classic. Besides, they also express quite different ideological viewpoints in many respects, so people may simply agree with one or the other and like them more or less as a consequence.;False;False;;;;1610384708;;False;{};giwgsjj;False;t3_kv4s8z;False;False;t1_giwd85d;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwgsjj/;1610435157;17;True;False;anime;t5_2qh22;;0;[]; -[];;;chika2chi;;;[];;;;text;t2_4dkz2y8e;False;False;[];;the story is continuous but the seasons are not. all stories have different arcs that the fans rate differently even in the manga that has no seasons. so the division is not arbitrary. the idea that 100k voted 10 when there are 11 episodes left and you have no idea how good or bad they are is bullshit. this will heavily skew the finished rating. I don't know why you're making excuses for this obvious and deliberate spamming.;False;False;;;;1610384737;;False;{};giwgv70;False;t3_kv4s8z;False;False;t1_giwfj9x;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwgv70/;1610435192;22;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"Wasn't meant to be pretentious. Back when I joined MAL in 2018 and started properly following anime, I always noticed Your Name being universally praisedon every social media which isn't what I see anymore. - - -A lot more threads and comments of 'Your Name is overrated' started coming around over the last 2 years online in anime communities. It's still a movie which is considered really good but I don't see as many people considering it the best movie in comparison to the when it released. - - -Stuff like I want to eat your pancreas, Maquia and Bunny Girl Senpai movie eventually started dominating discussion in the tearjerker/romance genre of movies so now Your Name isn't alone in that genre for the post 2015 time period. - -Your Name will always remain a standout in the general audience though I believe since it's often many people's first anime movie and has a wide appeal along with having the recognition of its incredible box office run - - -Pretty much the reverse case of how AoT has been treated over time. (Though different circumstances)";False;False;;;;1610384773;;1610385016.0;{};giwgyhm;False;t3_kv4s8z;False;False;t1_giwex4c;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwgyhm/;1610435237;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ItchyPlatypus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ItchyPlatypus;light;text;t2_x6uza5h;False;False;[];;Yeah but you’re not judging this season as an individual season. You just basically said in your first sentence ‘well I liked the first 60 episodes so these 5 are also 10/10’ you just said you’re rating these based on everything that came before the season. Which isn’t this season. You can’t make judgements on a season without seeing the final product. It’s just plain fanboyism.;False;False;;;;1610384820;;False;{};giwh2v7;False;t3_kv4s8z;False;False;t1_giwdqee;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwh2v7/;1610435297;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Fierce-Mushroom;;;[];;;;text;t2_9851jvsi;False;False;[];;"AoT IMO is nearly unwatchable. I saw the first six episodes when it first came out and hated it. FMAB may not be the greatest anime but its about a 1000 times better then AoT. - -The greatest anime is Cowboy Bebop btw. Second place should be One Piece with Outlaw Star as a solid third.";False;True;;comment score below threshold;;1610384821;;False;{};giwh2vp;False;t3_kv4s8z;False;True;t1_giwfr2a;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwh2vp/;1610435297;-24;True;False;anime;t5_2qh22;;0;[]; -[];;;Dodger7777;;;[];;;;text;t2_edm9d;False;False;[];;Date-a-live;False;False;;;;1610384849;;False;{};giwh5l9;False;t3_kv5b1r;False;True;t3_kv5b1r;/r/anime/comments/kv5b1r/good_haremcomedy_anime_to_watch_like/giwh5l9/;1610435339;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fadasd1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/fadasd;light;text;t2_jbsu6;False;False;[];;It doesn't change that an opinion and a fact are still 2 things on entirely different scales, many people believing 1 thing does not bring it any closer to being a fact.;False;False;;;;1610384908;;False;{};giwhaz4;False;t3_kv4s8z;False;False;t1_giwg34j;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwhaz4/;1610435418;14;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;"To be fair, FMAB's problems in that sense are sadly adaptation ones; early on it was clearly bogged by the staff worrying that they were adapting stuff already covered by the 2003 anime and so they ended up pointlessly shaking things up - making them almost always worse. The real turning point comes already at the episode where Roy fights Lust. From then on, it is indeed stellar. - -That said I'm fairly sure there's lots of people who would care. I watched FMAB with my girlfriend, I'm 100% sure she wouldn't care for Attack on Titan due to how gritty and dark it is. It's not just the gore, the entire thing is often depressing as fuck. It doesn't make it bad, but it does make it not for everyone.";False;False;;;;1610384909;;False;{};giwhb2p;False;t3_kv4s8z;False;False;t1_giwctsq;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwhb2p/;1610435419;11;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;I reiterate that it's an adaptation.;False;False;;;;1610384913;;False;{};giwhbie;False;t3_kv4sjc;False;True;t1_giwfbhz;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giwhbie/;1610435426;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;"> I'll agree that FMAB doesn't have a great hook - -I dunno, I think the concept of ""alchemy"" the way it's done in the show is actually quite original. Though I guess a western viewer could see it as ""oh wait is this Edward guy an earthbender? Wait, why is his commander a firebender instead?"".";False;False;;;;1610384978;;False;{};giwhhkn;False;t3_kv4s8z;False;False;t1_giwdmd5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwhhkn/;1610435516;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ItchyPlatypus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ItchyPlatypus;light;text;t2_x6uza5h;False;False;[];;It’s just as bad, one may be positive and the other negative but either side is in the wrong, neither have seen the final product but now the algorithm has changed, the 10/10 are the ones with the most effect.;False;True;;comment score below threshold;;1610385011;;False;{};giwhkok;False;t3_kv4s8z;False;True;t1_giwg5d8;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwhkok/;1610435572;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;It's just on the promise that aot will deliver. And rightfully so becuase it's a show that's showed it's audience it's ok to expect it to be amazing. People just trust it's going to be amazing since it's been amazing for so long. I'm not saying that's the best way to go about it. But it is what's happening.;False;False;;;;1610385016;;False;{};giwhl6e;True;t3_kv4s8z;False;True;t1_giwgv70;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwhl6e/;1610435580;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"Episode 1 - They got back to their hometown and found Reiner it was a big moment with a lot of tension. The Beast Titan's transformation at the end was full of hype. - -Episode 2 - The reunion with Reiner happened, the Beast titan was cutting off their paths of escape and killing their soliders. More than just the battle with Eren and Reiner. - -Episode 3 - We get a Reiner and Berholdt flashback seeing what happened moments before, Bertholdt gets thrown into the inner part of tha wall, comes up with a smart strategy to keep Reiner alive, faces off with Armin and Mikasa and then it leads to his transformation which is one of the best scenes in the entire anime. - -Episode 4 - Erwin's final charge. One of the best episodes in the entire anime. All of the build up was there and you could feel the emotional weight. - -Episode 5 - Erwin's charge, Levi vs The Beast Titan and Armin's sacrifice is far better than S4E5. - -Add on the fact these episodes had better direction and musical score made things all that greater. The writing in Season 4 is great I never denied that.";False;False;;;;1610385095;;False;{};giwhstz;False;t3_kv4s8z;False;True;t1_giwglew;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwhstz/;1610435683;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ominous_Strix;;;[];;;;text;t2_3km5xr5i;False;False;[];;"I think they mean plot hook, it's ok at best. I think AOT has a much stronger hook with the wall breaking and mom dying. - -But both are unique enough concepts it keeps people engaged, FMAB immediately has likable characters";False;False;;;;1610385172;;False;{};giwi0bl;False;t3_kv4s8z;False;False;t1_giwhhkn;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwi0bl/;1610435788;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Cowboy bebop a shitty episodic series 😂 that at best had episodes that were a 7/10 😂😂😏😂😂 k ya, your taste is crappy. Like whatever you like 🤷;False;True;;comment score below threshold;;1610385179;;False;{};giwi10j;True;t3_kv4s8z;False;True;t1_giwh2vp;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwi10j/;1610435797;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;generalmillscrunch;;;[];;;;text;t2_zofoh;False;False;[];;Yeah I meant more in the long term once the season ends and over the course of the year, like what happened with Owarimonogatari or Mob Pyscho;False;False;;;;1610385183;;False;{};giwi1cm;False;t3_kv4s8z;False;True;t1_giwdzqj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwi1cm/;1610435802;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AdmirableFondant0;;;[];;;;text;t2_3u7avr5f;False;False;[];;"Yeah Its decent/mediocre but AOT doesn't deserve that level,the OSTs and music usage is awful compared to araki. - -the story is insane though and likely to carry it regardless,unless they majorly fuck up like ex-arm";False;True;;comment score below threshold;;1610385192;;False;{};giwi29x;False;t3_kv4s8z;False;True;t1_giwg10s;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwi29x/;1610435814;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;You shouldn't but that's what's happening and also the why shouldn't it ? The series has showed that fans can expect it to be good and it'll deliver for 5 arcs now.;False;True;;comment score below threshold;;1610385244;;False;{};giwi77k;True;t3_kv4s8z;False;True;t1_giwh2v7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwi77k/;1610435882;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;TexhnolyzeAndKaiba;;;[];;;;text;t2_781er1nk;False;True;[];;Chio's School Road is great if you like video games like Payday and Metal Gear Solid. The main character is an eccentric outcast and the story follows her adventures during her walks to and from school. During the first episode, she pretends like she's an assassin from Assassin's Creed, climbing and jumping across rooftops.;False;False;;;;1610385250;;False;{};giwi7s1;False;t3_kv5itq;False;True;t3_kv5itq;/r/anime/comments/kv5itq/searching_for_comedy_animes/giwi7s1/;1610435889;2;True;False;anime;t5_2qh22;;0;[]; -[];;;padperascha;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/swappong;light;text;t2_pjclzwj;False;False;[];;I'd argue it's actually easy to find AoT haters considering it's extremely mainstream.;False;False;;;;1610385277;;False;{};giwia2p;False;t3_kv4s8z;False;False;t1_giwewqj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwia2p/;1610435919;22;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;True there's only 1 good music track so far. The one used in the trailer. Besides that it's average.;False;False;;;;1610385283;;False;{};giwian0;True;t3_kv4s8z;False;True;t1_giwi29x;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwian0/;1610435928;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;ResurgentRex18;;;[];;;;text;t2_4dwqdfmd;False;False;[];;I doubt it will beat FMA B. As much as I love aot it's not happening. Fmab fans won't let anyone close there anime even if season 4 adapts till chapter 122. Tbf it's always unfair to compare a season to an entire 64 episode anime tbh. I will be happy it becomes #1 but there is like 5 % chance;False;False;;;;1610385291;;False;{};giwibg8;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwibg8/;1610435939;8;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;That boost from 9.07 to 9.12 in less than 24 hours is just terrifying... I think it’s pretty safe to assume that majority of the anime-onlies loved that last episode and proves its hype;False;False;;;;1610385308;;False;{};giwid7f;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwid7f/;1610435962;135;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;"So, you rate a series shitty after seeing six episodes -Really good";False;False;;;;1610385308;;False;{};giwid7l;False;t3_kv4s8z;False;False;t1_giwh2vp;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwid7l/;1610435962;23;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;But percentage wise I'd argue Aot would have less haters than re zero or steins gate;False;True;;comment score below threshold;;1610385319;;False;{};giwie8q;True;t3_kv4s8z;False;True;t1_giwia2p;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwie8q/;1610435976;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;True;False;False;;;;1610385353;;False;{};giwihge;True;t3_kv4s8z;False;True;t1_giwibg8;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwihge/;1610436020;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Cire101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cire101;light;text;t2_oryv2;False;False;[];;"Most of the time entries tend to peak immediately after it's done airing and slowly climb down. Your name used to be top 5 I think and now it's below a 9. - -Not saying AOT can't hold this spot or even overthrow FMAB but trends are a thing for a reason lol";False;False;;;;1610385401;;False;{};giwim27;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwim27/;1610436082;101;True;False;anime;t5_2qh22;;0;[]; -[];;;chika2chi;;;[];;;;text;t2_4dkz2y8e;False;False;[];;"I don't really care. if their fanboyism is so fucking insane that they take it on faith that an entire season worth of episode is just going to be amazing without having seen it doesn't mean that they should spam a rating website. as I said these 10s will heavily skew the finished rating. It gets in the way of people like me who use the website to get reliable rating and destroys its credibility. -next time I check a rating on an anime I'm considering watching I'll have to think whether this rating actually reflects the quality of the show or whether the fans spammed it high ""on the promise that it will deliver'.";False;False;;;;1610385421;;False;{};giwinz2;False;t3_kv4s8z;False;False;t1_giwhl6e;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwinz2/;1610436109;19;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;True let's see;False;False;;;;1610385463;;False;{};giwirtd;True;t3_kv4s8z;False;True;t1_giwim27;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwirtd/;1610436163;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hon3ynuts;;;[];;;;text;t2_auvkjqo;False;False;[];;It's like Game of thrones but every season gets better instead of worse;False;False;;;;1610385468;;False;{};giwis7f;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwis7f/;1610436169;232;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ikr, didn't know it was possible;False;False;;;;1610385485;;False;{};giwitxb;True;t3_kv4s8z;False;False;t1_giwis7f;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwitxb/;1610436193;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Kirikoh;;;[];;;;text;t2_qa58w;False;False;[];;"The nature of brigading has long gone past bombarding 1/10s as the systems detect it m better. It's now about creating accounts that have ""watched"" a fair share of anime all with mediocre scores and 10/10s for their favourites - -For Chihayafuru, it was both but the bots were easily and swiftly removed. However, there were many account like I described above where notably they all seemed to watch both shows and give VS 10 and Chihayafuru low scores. There was an entire MAL thread dedicated to weeding them out.";False;False;;;;1610385495;;False;{};giwiuw2;False;t3_kv4s8z;False;False;t1_giwfabn;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwiuw2/;1610436206;13;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;"Yeah, in FMAB the initial hook seems to be just ""these guys need to find the Philosopher's Stone to get their bodies back"", but the world and its magic are intriguing in their own way, and in addition, we see the Homunculi already from the get go too (Lust and Gluttony appear to kill Cornello at the end of the first arc). So we also know there's some kind of conspiracy lurking behind the scenes, we just don't know what it is or how big it is. Funnily enough the same happens with Attack on Titan too; while the beginning *is* all sound and fury and can be instantly gripping, it's by all means not a good indication of what the real draw and core of the series is. You might initially dismiss Attack on Titan as just a silly, over-the-top show about giant zombies and steampunk spiderman soldiers, and that's really what Season 1 felt like to many people. By the end of it you start seeing the bigger picture, but it's only after that it really starts hitting its stride when it comes to its political themes.";False;False;;;;1610385548;;False;{};giwizw7;False;t3_kv4s8z;False;False;t1_giwi0bl;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwizw7/;1610436282;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Zonca;;;[];;;;text;t2_11odu8;False;True;[];;"Man, 52 people giving it 1/10 after the last episode just by comparing this and the other pic from 1 hour ago... - -I think it would be cool if rating 1/10 was just a bait for haters and you could view the ratings without them (though if that was known, haters would just rate 2/10)";False;False;;;;1610385564;;False;{};giwj1dw;False;t3_kv4s8z;False;False;t1_giw90d5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwj1dw/;1610436301;48;True;False;anime;t5_2qh22;;0;[]; -[];;;arafatnabi;;;[];;;;text;t2_ghvya;False;False;[];;This is the funniest shit. Imagine unironically using I like solo levelling to justify your taste. If anything that proved you have trash taste.;False;False;;;;1610385644;;False;{};giwj93d;False;t3_kv4s8z;False;False;t1_giw7lta;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwj93d/;1610436420;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"[This video is about watchmen and why an adaptation of it is impossible..](https://www.youtube.com/watch?v=5oltd-Jsi2I) - -Fate/Stay Night best shines when it's a visual novel, obviously adapting some of it is impossible due to it being a linear format without options. But the thing is that it doesn't even capture the original spirit of the visual novel. - -Please just read the visual novel. I can't continue to convince you when we have an information imbalance.";False;False;;;;1610385657;;False;{};giwja9p;False;t3_kv4sjc;False;True;t1_giwhbie;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giwja9p/;1610436439;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ominous_Strix;;;[];;;;text;t2_3km5xr5i;False;False;[];;I actually think the second episode of FMAB (the church one, or is it the third episode?) is the hook for the series, I find the first episode to be very skippable;False;False;;;;1610385726;;False;{};giwjgr9;False;t3_kv4s8z;False;True;t1_giwizw7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwjgr9/;1610436531;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Fierce-Mushroom;;;[];;;;text;t2_9851jvsi;False;False;[];;Says the dude watching AoT. Your boos mean nothing to me. Cowboy Bebop is a masterpiece and AoT is just subpar trash.;False;False;;;;1610385741;;False;{};giwji5m;False;t3_kv4s8z;False;False;t1_giwi10j;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwji5m/;1610436549;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;ItchyPlatypus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ItchyPlatypus;light;text;t2_x6uza5h;False;False;[];;I’m just not going to reply to this, you’re replies show you won’t see sense. Enjoy the fanboyism, I hope the anime doesn’t disappoint.;False;False;;;;1610385755;;False;{};giwjji8;False;t3_kv4s8z;False;False;t1_giwi77k;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwjji8/;1610436568;12;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Cowboy is grabage, since you like it and think Aot is bad. I can tell your age demographic. Need me to cut the side corners of your bread ?;False;False;;;;1610385791;;False;{};giwjmx5;True;t3_kv4s8z;False;False;t1_giwji5m;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwjmx5/;1610436641;6;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;Can we meet in the middle and acknowledge that their fundamentally two different takes on the story and that the adaptation isn't garbage?;False;False;;;;1610385882;;False;{};giwjvl2;False;t3_kv4sjc;False;True;t1_giwja9p;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giwjvl2/;1610436793;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kleber115;;;[];;;;text;t2_3a2jmy6m;False;False;[];;"1 The encounter with reiner only happened and the ending, and if you want to get technical s4ep1 was way more hype than s3p2 because it's the first episode of the last season right after aot took the spot as one of the greatest anime out there - - -2 Again, the beast titan wasn't the main focus of the episode, Reiner's confrontation with eren was and as I said it wasn't nearly as good as the first one - -3 again, sure the flashback was nice and berthold conversation was good,but it wasn't nearly as impactful as Seeing how the invasion happened or reiner attempting to commit suicide, it also had the eren cliffhanger - -I agree with you, that episode is among one of the best of aot - - -5- yeah no, chapter 100/s4ep5 is the most important chapter in aot, we got to see Reiner's and eren's reunion, it was filled with foreshadowing and tension, the dialogue was flawless and put everything that reiner felt with the invasion in perspective, we saw eren after a 4 year timeskip, willy tybur telling the truth about the great titan war showed us a new perspective about the world, we also had the mysterious aura behind eren and gave us a lot of questions about what had happened on this timeskip and willy's declaration was far more important and intense, also eren transforming was super important to his character because it showed us he was prepared to kill civilians for the protection of paradis";False;False;;;;1610385900;;False;{};giwjxa8;False;t3_kv4s8z;False;True;t1_giwhstz;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwjxa8/;1610436825;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ifureadthisursogay;;;[];;;;text;t2_6xcy8w41;False;False;[];;One piece;False;False;;;;1610385905;;False;{};giwjxs1;False;t3_kv5m94;False;False;t3_kv5m94;/r/anime/comments/kv5m94/which_should_i_watch_one_piece_or_dragon_balls/giwjxs1/;1610436831;2;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;If you're a fanboy voting 10 because you enjoyed it, that seems much more valid than voting a 1 because you hated it (especially if you didn't even watch it);False;False;;;;1610385940;;False;{};giwk16h;False;t3_kv4s8z;False;False;t1_giw9lc7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwk16h/;1610436879;26;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"The only brigading which can't be countered is favourite characters. -Levi Vs Luffy rn is a botting mess. Levi was on track to overtake but One Piece fans or a fan with too much time started botting and since it's been pretty tight. Even Levi is almost certainly getting bots to boost since his pace picked up quick as well. - -Score brigading is still obvious though unless someone goes leaps and bounds. Positive brigading is spotted as well which is why AoT wasn't #1 off the get go. I doubt the system designers were incompetent. - -Gintama went from 9.11 to 9.09 in a day a couple of weeks ago at the height of AoT and FMAB brigading when 5/6 spams were happening but it got fixed quite quickly. - -Anyways it's easy enough to notice if it's happening on a relavent size since it'd cause statistical outliers in the algorithm on a significant scale.";False;False;;;;1610386025;;False;{};giwk9ca;False;t3_kv4s8z;False;False;t1_giwiuw2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwk9ca/;1610436996;7;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;Looks like we juat enjoy different things. For me S3P2 so far has been better I genuinely don't really see why you prefer S4 even with your explanations. But I won't try and make you see things my and I doubt I could. Both seasons are great though.;False;False;;;;1610386042;;False;{};giwkayu;False;t3_kv4s8z;False;True;t1_giwjxa8;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwkayu/;1610437018;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;"So your argument is that FMA:B is old, therefore the amount of 1s is fair. Sorry, that will never convince me. - -Also, I never said FMA:B fans were innocent of brigading. But singling them out as you and the original commenter I replied to have done as the problem with the top MAL anime brigading, despite it being targeted as well, is unfair.";False;True;;comment score below threshold;;1610386129;;1610386329.0;{};giwkj99;False;t3_kv4s8z;False;True;t1_giwfrcn;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwkj99/;1610437136;-22;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;Interesting, looks like some 7s and 8s changed their votes;False;False;;;;1610386143;;False;{};giwkki7;False;t3_kv4s8z;False;False;t1_giw90d5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwkki7/;1610437156;4;True;False;anime;t5_2qh22;;0;[]; -[];;;kleber115;;;[];;;;text;t2_3a2jmy6m;False;False;[];;That's true both seasons are great, imo the basement was peak s3p2, I was only arguing with you because you said that it couldn't take the spot as the number 1 anime and I disagree with that, but Its fine, everyone has different opinions and they are free to like something, I just wanted to point why I feel s4 is better and can take the number 1 spot;False;False;;;;1610386176;;False;{};giwknib;False;t3_kv4s8z;False;True;t1_giwkayu;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwknib/;1610437201;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"*argumentum ad temperantiam* logical fallacy. - -The only good thing about the ufotable adaptations is the animation and the music. - -As an anime, it's pretty good. - -But... As an adaptation, it completely butchers the original work by simplifying the source material and doesn't understand why the original was so good.";False;False;;;;1610386266;;False;{};giwkuvp;False;t3_kv4sjc;False;True;t1_giwjvl2;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giwkuvp/;1610437306;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;">Man, 52 people giving it 1/10 after the last episode just by comparing this and the other pic from 1 hour ago... - -My SS was from yesterday. I sent it to show how huge of a boost it got in the 10/10 department - - -4258 -758 --19 --85 --17 --2 --1 -5 -1 -48 - - -This was what the gains were the last time I compared yesterday to today - -The reception was so great that all the scores between 4-8 dropped despite 5k new scorers";False;False;;;;1610386268;;False;{};giwkuzt;False;t3_kv4s8z;False;False;t1_giwj1dw;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwkuzt/;1610437309;8;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"Fair enough. - -I think from a writing standpoint it can but I don't think it will. Not because it wont be good but because. - -1) No new anime seems to be able to pass FMAB it's managed to hold on for 10yrs. I don't really get the love for it, it's a great show but not as amazing to me as AOT. - -2) I think it will end on a cliffhanger that will sour people. There's rumours season 4 will end at chapter 126 and then the final chapters will be adapted in another way.";False;False;;;;1610386327;;False;{};giwkzrz;False;t3_kv4s8z;False;True;t1_giwknib;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwkzrz/;1610437389;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ikmal1997;;;[];;;;text;t2_80tamrb;False;False;[];;Yes cause the fanbois are insane, they're almost kpop fan level;False;False;;;;1610386338;;False;{};giwl0m6;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwl0m6/;1610437402;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;IronicTonic;;;[];;;;text;t2_5o542;False;False;[];;Can't wait for it to tank after the ending sucks;False;True;;comment score below threshold;;1610386346;;False;{};giwl18h;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwl18h/;1610437412;-12;True;False;anime;t5_2qh22;;0;[]; -[];;;kleber115;;;[];;;;text;t2_3a2jmy6m;False;False;[];;"The main reason fmab is always at number is mostly because vote manipulation is a thing(not saying it's the only reason) - - -Iirc itll end on chapter 122 so the first part will end on peak aot IMO";False;False;;;;1610386462;;False;{};giwlaf5;False;t3_kv4s8z;False;True;t1_giwkzrz;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwlaf5/;1610437550;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;Quite a decent amount changed their votes most likely considering how 5k total votes have been added since then as well.;False;False;;;;1610386521;;False;{};giwlewb;False;t3_kv4s8z;False;False;t1_giwkki7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwlewb/;1610437617;4;True;False;anime;t5_2qh22;;0;[]; -[];;;raceraot;;;[];;;;text;t2_61r8xh6u;False;False;[];;It deserves it. It's an amazing series. It's going to be number one soon.;False;False;;;;1610386538;;False;{};giwlgaa;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwlgaa/;1610437638;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;">Iirc itll end on chapter 122 so the first part will end on peak aot IMO - -We will have to wait and see. - -Out of curiousity do you prefer WIT or MAPPA?";False;False;;;;1610386615;;False;{};giwlmhv;False;t3_kv4s8z;False;True;t1_giwlaf5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwlmhv/;1610437737;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;Yes, Also the other fanboy anime are incredible, rate a series 1 only because it is better;False;False;;;;1610386641;;False;{};giwlolq;False;t3_kv4s8z;False;True;t1_giwl0m6;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwlolq/;1610437770;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fierce-Mushroom;;;[];;;;text;t2_9851jvsi;False;False;[];;Not my fault the majority of anime fails when compared to the glory days. Cowboy Bebop, Outlaw Star, Wolf Rain, S-Cry-ED, even Tenchi Muyo far outstrips anything thats been released recently.;False;False;;;;1610386645;;False;{};giwlov6;False;t3_kv4s8z;False;True;t1_giwjmx5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwlov6/;1610437775;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kleber115;;;[];;;;text;t2_3a2jmy6m;False;False;[];;Both are good, but I need to see more episodes to have a complete answer;False;False;;;;1610386673;;False;{};giwlr5f;False;t3_kv4s8z;False;True;t1_giwlmhv;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwlr5f/;1610437813;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;"Church episode is the third one but it's chapter 1 of the manga, it makes sense because the first episode is pure anime-original filler. Ironically I think they made it as a ""hook"" because for some reason they thought the original one wasn't good enough and they wanted to just present all of the important alchemists in one go. Then episode 2 is the flashback to when they tried to bring back their mother, which is a really good episode, but was brought forward compared to the manga order for no good reason. Again, I suppose they were exactly worried about not giving viewers a good enough hook. But in reality the manga is actually better paced since it introduces things progressively and leaves enough mystery to then explain things with the flashback later on.";False;False;;;;1610386740;;False;{};giwlwnn;False;t3_kv4s8z;False;True;t1_giwjgr9;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwlwnn/;1610437917;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;Fair enough.;False;False;;;;1610386791;;False;{};giwm0ow;False;t3_kv4s8z;False;True;t1_giwlr5f;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwm0ow/;1610437984;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GoldMercy;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/xFSN_Archer;light;text;t2_tx7nw;False;False;[];;Very suspicious /s;False;False;;;;1610386892;;False;{};giwm8vx;False;t3_kv4s8z;False;False;t1_giw2s5a;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwm8vx/;1610438117;37;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Agreed man, it really deserves it, while FMAB is good it's just not even close;False;False;;;;1610387192;;False;{};giwmwmt;True;t3_kv4s8z;False;True;t1_giwlgaa;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwmwmt/;1610438492;4;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"It's hard to compare Mob Psycho and Owarimonogatari's case to AoT rn since the scale and peak will certainly be much higher but you are right. - - -Thing is AoT's reception took an entire 180 for many after S3P2 and the source material for this season is universally praised and both arcs being regarded in a much higher status than the Return to Shiganshina -Like JoJo Part 7/Berserk Golden Age levels of praise. - - -And since the finale this season won't be a conclusion like Mob Psycho/Owari (They both have remaining material but I think you get what I'm trying to say) rather a climax leading to the ending, how heavy the drop will be is kinda hard to predict. It could very well be a case of stabilizing then permanently holding its score like some shows do. - - -Even the scores of all the previous seasons are rising as new watchers are starting AoT due to how hyped S4 so it could peak so damn high and have a solid legacy that it won't drop low enough to ever fall out of #1. - - -I think how the manga ends will also affect the score of this season in the long run. When a source material fails to stick the landing, it leads to much less hype for previous stuff as well. TPN is the perfect example of this on MAL.";False;False;;;;1610387207;;False;{};giwmxud;False;t3_kv4s8z;False;True;t1_giwi1cm;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwmxud/;1610438511;1;True;False;anime;t5_2qh22;;0;[]; -[];;;therealpaukars;;;[];;;;text;t2_26fdvlg4;False;False;[];;Yeah, Gintama should have the first 11 spots with Gintama° on 1st, but that's just my opinion.;False;False;;;;1610387216;;False;{};giwmylq;False;t3_kv4s8z;False;False;t1_giw3337;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwmylq/;1610438523;36;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Old fan stuck in the past, modern day animes like Death note, code geass, Anohana, steins gate, Aot, fmab all out class that old crap. The only good animes from that period were really, serial experiment lane, neon genesis Evangelion and legend of the Galactic heroes. The stuff you listed is just garbage.;False;False;;;;1610387260;;False;{};giwn222;True;t3_kv4s8z;False;True;t1_giwlov6;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwn222/;1610438592;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"It deserves a very high rating, not sure where I would put it in the top 10 but it belongs there. - -However, there will soon be a bunch of no-life losers on MAL spam 1 votes to knock AOT down. Unless MAL finally fixed the spam problem?";False;False;;;;1610387294;;False;{};giwn4x6;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwn4x6/;1610438634;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomXxZ;;;[];;;;text;t2_37lbelym;False;False;[];;It's obviously not completely fair, but his point still stands to some degree.;False;False;;;;1610387370;;False;{};giwnb2d;False;t3_kv4s8z;False;True;t1_giwkj99;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwnb2d/;1610438726;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;They say they fixed it but I'm not sure how they'd fix it. Maybe they're targeting the accounts that have less then 5 animes and have it rated really bad. So mainly the people who make another account to make it drop ranks.;False;False;;;;1610387376;;False;{};giwnbj4;True;t3_kv4s8z;False;True;t1_giwn4x6;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwnbj4/;1610438733;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ravioli_Heicho;;;[];;;;text;t2_3bls5ou;False;False;[];;Nah, the last 3 episodes of this season will be the highest point of the whole series.;False;False;;;;1610387427;;False;{};giwnfnd;False;t3_kv4s8z;False;False;t1_giwl18h;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwnfnd/;1610438795;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ThiccDaddy1198;;;[];;;;text;t2_95xnujhs;False;False;[];;Yes, on my list. :);False;False;;;;1610387532;;False;{};giwno1o;True;t3_kv5oy9;False;True;t1_giwdrvf;/r/anime/comments/kv5oy9/help_a_newbie_anime_fan/giwno1o/;1610438923;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dandantian5;;;[];;;dark;text;t2_1v9140m;False;False;[];;To be fair, having a big change in setting is not necessarily a virtue in and of itself, nor is having a single overarching plot a bad thing.;False;False;;;;1610387621;;False;{};giwnv9l;False;t3_kv4s8z;False;False;t1_giwf51a;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwnv9l/;1610439034;85;True;False;anime;t5_2qh22;;0;[]; -[];;;Izanagi___;;;[];;;;text;t2_6wmop5vl;False;False;[];;I can't believe people are really so upset over a meaningless number on MAL.;False;False;;;;1610387625;;False;{};giwnvn5;False;t3_kv4s8z;False;False;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwnvn5/;1610439039;104;True;False;anime;t5_2qh22;;0;[]; -[];;;emeraldwolf34;;;[];;;;text;t2_5ii972bi;False;False;[];;It's 367 episodes, but yes, it is sometimes hard to get into Gintama, but I have not met someone who has dropped it after Benizakura.;False;False;;;;1610387653;;False;{};giwnxwz;False;t3_kv4s8z;False;False;t1_giwfwub;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwnxwz/;1610439072;31;True;False;anime;t5_2qh22;;0;[]; -[];;;Fierce-Mushroom;;;[];;;;text;t2_9851jvsi;False;False;[];;NGE is crap, Gundam Wing was far better. Death note was just ok until it stopped following the manga then it became shit, FMA:B is actually very good. Children like you just have no taste.;False;False;;;;1610387689;;False;{};giwo0t2;False;t3_kv4s8z;False;True;t1_giwn222;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwo0t2/;1610439115;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Mad_Pianist;;;[];;;;text;t2_396xgd1;False;False;[];;"However, the “10” is closer to the AoT’s actual worth than a “1” so what is your point? - -Let’s say that objectively speaking at it’s lowest possible worth it should be a score of 8. That there means that a mass vote of 10 is only 2 stars above it’s objective worth, but a mass vote of 1 is a whole 8 stars below it’s objective worth. See the problem here?";False;True;;comment score below threshold;;1610387743;;False;{};giwo58h;False;t3_kv4s8z;False;True;t1_giwa8ke;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwo58h/;1610439178;-27;True;False;anime;t5_2qh22;;0;[]; -[];;;NixUoatan;;;[];;;;text;t2_5fgw07j0;False;False;[];;Threads about ratings will always be full of salt.;False;False;;;;1610387767;;False;{};giwo77v;False;t3_kv4s8z;False;False;t1_giwco75;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwo77v/;1610439207;156;True;False;anime;t5_2qh22;;0;[];True -[];;;MAQS357;;;[];;;;text;t2_yske3;False;False;[];;"S3P2 did even better, still got brought down to about 5-7th place. - -Final season wont be different. - -And I say this as the biggest AOT fan, I have been around MAL long enough to know the balance that exist there.";False;False;;;;1610387957;;False;{};giwomof;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwomof/;1610439433;25;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;I hope it can dethrone fmab and hold it but let's see 🤷;False;False;;;;1610388003;;False;{};giwoqdm;True;t3_kv4s8z;False;False;t1_giwomof;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwoqdm/;1610439488;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;You're calling me a child while you think a childish episodic show like cowboy bebop was a masterpiece, ya right;False;False;;;;1610388042;;False;{};giwotjb;True;t3_kv4s8z;False;False;t1_giwo0t2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwotjb/;1610439534;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NixUoatan;;;[];;;;text;t2_5fgw07j0;False;False;[];;Well the people in this thread certainly does lmao.;False;False;;;;1610388055;;False;{};giwoukh;False;t3_kv4s8z;False;False;t1_giw9hbo;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwoukh/;1610439550;103;True;False;anime;t5_2qh22;;0;[];True -[];;;SkepticDrinker;;;[];;;;text;t2_8upmc4sd;False;False;[];;So dumb. I think the force awakens had the same thing happen;False;False;;;;1610388081;;False;{};giwowqa;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwowqa/;1610439580;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomXxZ;;;[];;;;text;t2_37lbelym;False;False;[];;You're one of *those* people.;False;False;;;;1610388118;;False;{};giwozp3;False;t3_kv4s8z;False;True;t1_giwlov6;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwozp3/;1610439623;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Yep people care a lot, just look at the number of comments in this post, it's getting more traction than some anime airing today;False;False;;;;1610388178;;False;{};giwp4ev;False;t3_kv4s8z;False;False;t1_giwnvn5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwp4ev/;1610439692;48;True;False;anime;t5_2qh22;;0;[]; -[];;;NixUoatan;;;[];;;;text;t2_5fgw07j0;False;False;[];;"I think you mean hot take? - -Cold take means the mass agrees with you. While a hot take is controversial opinion.";False;False;;;;1610388179;;False;{};giwp4h9;False;t3_kv4s8z;False;False;t1_giwa2vg;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwp4h9/;1610439694;4;True;False;anime;t5_2qh22;;0;[];True -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"The algorithm detects 10/10 brigading just as well as 1/10s and anything else. AoT S4 is literally the perfect example. For the first few days after dropping 60+% 10/10s and 5% or so 1/10s. If the algorithm targeted 1s only the score would be raised to the 9.3 range at that point. -Yet it was only at 9.05/6. This meant at that point if even only 10% of the 1/10 scores were counted, well over a third of every single 10/10 score given wasn't taken into the weighted calculation. - - -Heck right now if we applied the same parameters to get the current score you'd need to ignore close to 25% of the 10/10 scores given";False;False;;;;1610388205;;False;{};giwp6jw;False;t3_kv4s8z;False;False;t1_giwhkok;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwp6jw/;1610439723;19;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomXxZ;;;[];;;;text;t2_37lbelym;False;False;[];;"You're trying to use Solo Leveling as an argument, - -As to why you have taste, - -By comparing it to AoT, - -On an AoT dominant subreddit. - -&#x200B; - -You aren't very smart, are you?";False;False;;;;1610388249;;False;{};giwpa1b;False;t3_kv4s8z;False;False;t1_giw7lta;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwpa1b/;1610439780;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Makes sense tho, the quality of Aot is miles ahead of anything FMAB could ever hope to achieve;False;False;;;;1610388252;;False;{};giwpa9q;True;t3_kv4s8z;False;False;t1_giwowqa;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwpa9q/;1610439783;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheIndianJedi;;;[];;;;text;t2_syeg1;False;False;[];;Yeah since 2020 the rating for Your Name on MAL has dropped quite a bit. Kind of makes me sad because I love that movie so much, but at the same time as more people watch the movie, the rating will change. However, the rating for Your Name has drastically changed in the past few years. I have seen some people say it's overrated, but I think for the most part it's still widely praised. I feel like it's some of the Silent Voice fans who constantly bash the movie and that's why there is this dumb competition between the two movies.;False;False;;;;1610388265;;1610433493.0;{};giwpbdf;False;t3_kv4s8z;False;False;t1_giw9rig;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwpbdf/;1610439798;109;True;False;anime;t5_2qh22;;0;[]; -[];;;SkepticDrinker;;;[];;;;text;t2_8upmc4sd;False;False;[];; It really isnt. The first season had a horrific issue with pacing;False;False;;;;1610388300;;1610388518.0;{};giwpe3r;False;t3_kv4s8z;False;True;t1_giwpa9q;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwpe3r/;1610439838;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TTC69;;;[];;;;text;t2_hicmehg;False;False;[];;Lmao it already has more 1 star votes than Season 3 Part 2 while having like 500k less votes in total;False;False;;;;1610388359;;False;{};giwpisx;False;t3_kv4s8z;False;False;t1_giw2s5a;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwpisx/;1610439907;478;True;False;anime;t5_2qh22;;0;[]; -[];;;Ravioli_Heicho;;;[];;;;text;t2_3bls5ou;False;False;[];;"> Second place should be One Piece - -Lmao, imagine rating a show with >100 episodes of filler, and an even larger number that only adapt one 15 page chapter apiece, the second greatest of all time. It’s got a few highlights here and there, but by and large it’s meandering, terribly paced schlock. - -One Piece (the manga) is absolutely in contention for a top 3 ranking, but One Piece (the anime) shouldn’t even broach the top 20 of any sensible list.";False;False;;;;1610388380;;1610388567.0;{};giwpkf7;False;t3_kv4s8z;False;False;t1_giwh2vp;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwpkf7/;1610439931;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Sebaz00;;;[];;;;text;t2_ndeja;False;False;[];;as a non manga reader the fact that the manga is rated at at 9.3 brings me great joy. I was watching GoT when s3 came out and the last thing I need is another show that goes down the gutter. I'm so excited for every moment of this;False;False;;;;1610388411;;False;{};giwpmue;False;t3_kv4s8z;False;False;t1_giw90d5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwpmue/;1610439965;34;True;False;anime;t5_2qh22;;0;[]; -[];;;MAQS357;;;[];;;;text;t2_yske3;False;False;[];;It wont, the best case scenario is that it stays in the current 2nd and that is being generous.;False;False;;;;1610388466;;False;{};giwpr6c;False;t3_kv4s8z;False;True;t1_giwoqdm;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwpr6c/;1610440028;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;This big of a boost for such a high rated anime already is unheard of. The biggest airing boost I've seen was when S3P2 aired (when Hero dropped) and that was a rise of .05 over the course of an entire week.;False;False;;;;1610388474;;False;{};giwprth;False;t3_kv4s8z;False;False;t1_giwid7f;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwprth/;1610440038;49;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;It was still much better than the pacing of the first 10 episodes of FMAB, that shit had me falling asleep at points. The only bad part in Aot was the court case.;False;False;;;;1610388492;;False;{};giwpt9r;True;t3_kv4s8z;False;True;t1_giwpe3r;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwpt9r/;1610440060;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;I think it could, it's got 11 chances;False;False;;;;1610388510;;False;{};giwpuq8;True;t3_kv4s8z;False;True;t1_giwpr6c;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwpuq8/;1610440081;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;utsuriga;;;[];;;;text;t2_894zi;False;False;[];;"Which just goes to show that MAL ratings don't mean anything regarding quality. The more popular and long-running something is, the higher rating it'll get (since after a point only fans will be watching & rating it).";False;False;;;;1610388541;;False;{};giwpx5b;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwpx5b/;1610440119;41;True;False;anime;t5_2qh22;;0;[]; -[];;;SkepticDrinker;;;[];;;;text;t2_8upmc4sd;False;False;[];;Huh? Brotherhood pacing was super fast since it tried to wrap up what we ready from the 2003 version;False;False;;;;1610388564;;False;{};giwpywh;False;t3_kv4s8z;False;False;t1_giwpt9r;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwpywh/;1610440145;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ruhaan_01;;;[];;;;text;t2_2jt2om52;False;False;[];;yea a lot of top animes are filled with bots and spammed reviews.. not saying that they shouldn't be there though.;False;False;;;;1610388585;;False;{};giwq0mf;False;t3_kv4s8z;False;False;t1_giwco75;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwq0mf/;1610440173;7;True;False;anime;t5_2qh22;;0;[]; -[];;;unaviable;;;[];;;;text;t2_1o4qd3;False;True;[];;"Look I am not looking for a fight but I think ""score manipulation"" is a issue with a lot of fandoms.";False;False;;;;1610388618;;False;{};giwq39p;False;t3_kv4s8z;False;False;t1_giw9is4;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwq39p/;1610440212;37;True;False;anime;t5_2qh22;;0;[]; -[];;;Vickty12;;;[];;;;text;t2_480sz7cl;False;False;[];;Ah I see you are fellow person of culture.;False;False;;;;1610388621;;False;{};giwq3ke;False;t3_kv4s8z;False;False;t1_giwmylq;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwq3ke/;1610440217;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Bighollab0;;;[];;;;text;t2_rurdv;False;False;[];;It’s gonna go down as the GOAT of anime;False;False;;;;1610388807;;False;{};giwqiim;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwqiim/;1610440436;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Sebaz00;;;[];;;;text;t2_ndeja;False;False;[];;had goosebumps the entire time for me man. this is so hype;False;False;;;;1610388848;;False;{};giwqlx2;False;t3_kv4s8z;False;False;t1_giw95md;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwqlx2/;1610440486;36;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexNae;;;[];;;;text;t2_13yqvf;False;False;[];;who really cares about mal ? it's a dead site;False;False;;;;1610388867;;False;{};giwqndr;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwqndr/;1610440507;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Fierce-Mushroom;;;[];;;;text;t2_9851jvsi;False;False;[];;Quite honestly I forget filler exist most of the time since I skip all filler episodes. But even then still top ten material. I'll admit I probably should have given second place to Gundam Wing. I agree with you on the manga front though, top 3 for certain.;False;False;;;;1610388907;;False;{};giwqqm5;False;t3_kv4s8z;False;True;t1_giwpkf7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwqqm5/;1610440555;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Minisabel;;;[];;;;text;t2_2a3z01mv;False;False;[];;I'm confident the end of the season will top this episode. Potentially by a lot.;False;False;;;;1610389102;;False;{};giwr66c;False;t3_kv4s8z;False;False;t1_giwb2f1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwr66c/;1610440784;20;True;False;anime;t5_2qh22;;0;[]; -[];;;AhoWaifu;;;[];;;;text;t2_388gzex0;False;False;[];;Ah yes, FMAB is the overhyped one;False;False;;;;1610389177;;False;{};giwrc46;False;t3_kv4s8z;False;False;t1_giw2sk0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwrc46/;1610440871;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Wolfyminecraft;;;[];;;;text;t2_apzgp;False;False;[];;You might like K-On or Nichijou, if you're looking for light and funny. Kyoto Animation in general makes good stuff.;False;False;;;;1610389222;;False;{};giwrfq6;False;t3_kv5oy9;False;True;t3_kv5oy9;/r/anime/comments/kv5oy9/help_a_newbie_anime_fan/giwrfq6/;1610440924;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lunatoons291;;;[];;;;text;t2_16nhl574;False;False;[];;You will not be disappointed. The most recent manga chapter that came out was bonkers. You’re in for a ride;False;False;;;;1610389247;;False;{};giwrho1;False;t3_kv4s8z;False;False;t1_giwpmue;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwrho1/;1610440954;44;True;False;anime;t5_2qh22;;0;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;We know, but the FMAB community is undoubtedly the worst offender of vote manipulation. No other fandom comes even close.;False;False;;;;1610389254;;False;{};giwri74;False;t3_kv4s8z;False;False;t1_giwq39p;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwri74/;1610440962;82;True;False;anime;t5_2qh22;;0;[]; -[];;;TheMortalOne;;;[];;;;text;t2_7lhna;False;False;[];;"I think what they mean is not that there aren't better orders, but that there is no one order that is ideal, they all have their own issues. - -&#x200B; - -There might not be a right watch order, but there are many wrong watch orders.";False;False;;;;1610389307;;False;{};giwrmhr;False;t3_kv4sjc;False;False;t1_giw653d;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giwrmhr/;1610441028;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sebaz00;;;[];;;;text;t2_ndeja;False;False;[];;I'm honestly so excited. Seen a few spoilers but nothing too ruining. Was the latest chaper the one before the last? Either way I'm just so glad this show has never let me down ever since I started watching it as a young teenager back in 2013/14;False;False;;;;1610389320;;False;{};giwrnh2;False;t3_kv4s8z;False;False;t1_giwrho1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwrnh2/;1610441043;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Makimasfeet;;;[];;;;text;t2_95imk08u;False;False;[];;I'm not the biggest fan of the s4 adaptation but God I'm so tired of seeing fmab at the top so LET'S FUCKING GOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO;False;False;;;;1610389430;;False;{};giwrw7s;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwrw7s/;1610441174;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ya not a lot if young watchers are adopting it;False;True;;comment score below threshold;;1610389440;;False;{};giwrx1c;True;t3_kv4s8z;False;True;t1_giwqndr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwrx1c/;1610441187;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Fax;False;False;;;;1610389460;;False;{};giwryn2;True;t3_kv4s8z;False;False;t1_giwqiim;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwryn2/;1610441210;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Super fast doesn't mean good, i bet according to the manga it was super fast but as an anime only it felt so slow and boring;False;False;;;;1610389501;;False;{};giws1xh;True;t3_kv4s8z;False;False;t1_giwpywh;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giws1xh/;1610441271;5;True;False;anime;t5_2qh22;;0;[]; -[];;;lunatoons291;;;[];;;;text;t2_16nhl574;False;False;[];;Nope there are 3 chapters remaining;False;False;;;;1610389507;;False;{};giws2g1;False;t3_kv4s8z;False;False;t1_giwrnh2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giws2g1/;1610441278;21;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;AOT is one case where quality meets quantity, it's an absolute Masterpiece.;False;True;;comment score below threshold;;1610389534;;False;{};giws4ns;True;t3_kv4s8z;False;False;t1_giwpx5b;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giws4ns/;1610441313;-17;True;False;anime;t5_2qh22;;0;[]; -[];;;SkepticDrinker;;;[];;;;text;t2_8upmc4sd;False;False;[];;Well you're definitely in the minority with that opinion;False;False;;;;1610389583;;False;{};giws8pk;False;t3_kv4s8z;False;False;t1_giws1xh;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giws8pk/;1610441373;6;True;False;anime;t5_2qh22;;0;[]; -[];;;shadowmonarch123;;;[];;;;text;t2_95l65f1c;False;False;[];;Yes well I’m not gonna bring up how sl is better than aot in r/sololeveling, that’s just a bit random and weird;False;False;;;;1610389585;;False;{};giws8ta;False;t3_kv4s8z;False;True;t1_giwpa1b;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giws8ta/;1610441375;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;okbuddybutbruh;;;[];;;;text;t2_9ow7haip;False;False;[];;The toxic fmab MFS won't let that happen;False;False;;;;1610389683;;False;{};giwsgtp;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwsgtp/;1610441496;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;No pretty sure I'm not, Aot instantly hooks you, FMAB not so much. The series only gets interesting ep 10 onwards;False;False;;;;1610389698;;False;{};giwsi1p;True;t3_kv4s8z;False;True;t1_giws8pk;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwsi1p/;1610441515;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Let's see,;False;False;;;;1610389707;;False;{};giwsiu9;True;t3_kv4s8z;False;True;t1_giwsgtp;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwsiu9/;1610441527;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610389747;;False;{};giwsm0r;False;t3_kv4s8z;False;True;t1_giw3px5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwsm0r/;1610441576;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SkepticDrinker;;;[];;;;text;t2_8upmc4sd;False;False;[];;You're only one I've ever heard say that;False;False;;;;1610389755;;False;{};giwsmpi;False;t3_kv4s8z;False;False;t1_giwsi1p;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwsmpi/;1610441586;5;True;False;anime;t5_2qh22;;0;[]; -[];;;kraker313;;;[];;;;text;t2_6lmfb6y3;False;False;[];;Welp we still do not saw Chapter 122 animated xd;False;False;;;;1610389763;;False;{};giwsna8;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwsna8/;1610441595;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;"Translated, it just means their opinion more accurately mirrors that of the Japanese market. - -FMA:B is still a top 5 show for me.";False;False;;;;1610389801;;False;{};giwsqdd;False;t3_kv4s8z;False;False;t1_giw6pp1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwsqdd/;1610441641;21;True;False;anime;t5_2qh22;;0;[]; -[];;;TheMightyKutKu;;;[];;;;text;t2_z03n2;False;False;[];;Last episode had some pretty good use of music, the whole controversy about the music of the last scene aside. I do agree I haven't heard any stand out new tracks beside the trailer/titan air drop one but we've still yet to go into combat episodes.;False;False;;;;1610389853;;False;{};giwsuj8;False;t3_kv4s8z;False;True;t1_giwi29x;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwsuj8/;1610441709;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomXxZ;;;[];;;;text;t2_37lbelym;False;False;[];;"See, that's what I mean. You don't understand why it makes you look stupid. - -You're trying to use how SL is better than AoT as an ARGUMENT - -IN AN AOT DOMINANT SUB. - -That's so dumb.";False;False;;;;1610389883;;False;{};giwswvt;False;t3_kv4s8z;False;True;t1_giws8ta;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwswvt/;1610441744;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fierce-Mushroom;;;[];;;;text;t2_9851jvsi;False;False;[];;"You keep saying it's ""episodic"" like it doesn't tell a bigger consistant story through out the entire series. Each episode is a small fraction of that story. That you seem to miss that speaks volumes about your comprehensive abilities and not for the better I'm afraid.";False;False;;;;1610389886;;False;{};giwsx3a;False;t3_kv4s8z;False;True;t1_giwotjb;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwsx3a/;1610441747;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PREM___;;;[];;;;text;t2_3pqnn53g;False;False;[];;As a manga reader, I can confirm. Shit is going to get wilder than s3p2.;False;False;;;;1610389897;;False;{};giwsy0r;False;t3_kv4s8z;False;False;t1_giw43rj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwsy0r/;1610441760;7;True;False;anime;t5_2qh22;;0;[]; -[];;;HamstersAreReal;;MAL;[];;https://myanimelist.net/profile/StudentOfTheGame;dark;text;t2_j0kft;False;False;[];;I'd say it's worse to vote it a 1.;False;False;;;;1610389901;;False;{};giwsyah;False;t3_kv4s8z;False;False;t1_giw9lc7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwsyah/;1610441764;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BadPercussionist;;;[];;;;text;t2_hadc6n0;False;True;[];;If you give a rating to an unfinished anime, you're at least judging some of the episodes. If you vote out of spite, you're not judging anything. They're both bad, but spite voting is worse.;False;False;;;;1610389961;;False;{};giwt37d;False;t3_kv4s8z;False;False;t1_giwhkok;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwt37d/;1610441839;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Sujallamichhaneakasl;;;[];;;;text;t2_3i2s1kbj;False;False;[];;If episode 16 doesn't get Aot to the top then I don't know what will.;False;False;;;;1610389971;;False;{};giwt3zo;False;t3_kv4s8z;False;False;t1_giwbjr1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwt3zo/;1610441853;55;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;Even after 10 years? I didn't think there was much of an FMA:B community left in order to strategically brigade an anime anymore.;False;False;;;;1610389985;;False;{};giwt529;False;t3_kv4s8z;False;False;t1_giwemmi;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwt529/;1610441869;31;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;"https://www.reddit.com/r/anime/comments/jlpi1i/when_does_fmab_get_better/?utm_medium=android_app&utm_source=share - - - -You can find hundered of posts like these";False;False;;;;1610389990;;False;{};giwt5fr;True;t3_kv4s8z;False;False;t1_giwsmpi;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwt5fr/;1610441874;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;There's absolutely no over arching story in the show, it's got some character arcs which has decent solutions but other wise at best average. Also are your seriously telling me a kid being scared of a rat alien, buying drug mushrooms and shit is a masterpiece ? You're comparing that with a deep story with huge lore and scale ? Legend of the Galactic heroes is the only show where I get the argument its better than Aot.;False;False;;;;1610390033;;False;{};giwt8tk;True;t3_kv4s8z;False;True;t1_giwsx3a;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwt8tk/;1610441926;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;"It became 9.11. - - -THANK YOU FMAB FANBOY";False;False;;;;1610390087;;False;{};giwtd3y;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwtd3y/;1610441988;1;True;False;anime;t5_2qh22;;0;[]; -[];;;huntrshado;;;[];;;;text;t2_404y4;False;False;[];;"Honestly think if something would dethrone FMAB, it should be this show. - -Read the manga recently and I can think of a very specific moment that could cause it to shoot to 1st. Assuming that the score manipulation on MAL was properly dealt with.";False;False;;;;1610390108;;False;{};giwterz;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwterz/;1610442013;80;True;False;anime;t5_2qh22;;0;[]; -[];;;Unwittness;;;[];;;;text;t2_eeqd9u4;False;False;[];;Who cares about MAL ratings lol;False;False;;;;1610390148;;False;{};giwthxl;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwthxl/;1610442060;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Minisabel;;;[];;;;text;t2_2a3z01mv;False;False;[];;"Hero is in my opinion highly overrated. - -Too many special effects, pure heroic action, Hange coming out of nowhere. - -Still a good episode but 16, 18, 21 and 22 easily top it. And out of those 4 I'd say only 22 is better than the episode we just got.";False;False;;;;1610390149;;False;{};giwti00;False;t3_kv4s8z;False;True;t1_giwhstz;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwti00/;1610442061;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chadgum;;;[];;;;text;t2_yy4nhd9;False;False;[];;Why are people allowed to vote before the series is finished? No one will be able to judge the season as a whole until watching every episode.;False;False;;;;1610390154;;False;{};giwtieb;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwtieb/;1610442068;73;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;"Not going to disagree with that. 4 of my 10 favourite anime episodes of all time were from that season alone. This was the first episode this season that matched those, and it was primarily dialogue. - -Have a feeling that Episode 15 and 16 of this season will also be bangers, if adapted well, along with a couple of others.";False;False;;;;1610390164;;False;{};giwtj60;False;t3_kv4s8z;False;False;t1_giw2v9m;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwtj60/;1610442079;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Since this post has gotten around 400 hundered upvotes people certainly do care 😳;False;True;;comment score below threshold;;1610390182;;False;{};giwtkkr;True;t3_kv4s8z;False;True;t1_giwthxl;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwtkkr/;1610442099;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;Tasthar;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tasthar;light;text;t2_1fhlyiyc;False;False;[];;"Still yet to find a single person who actually hates steins;gate. And it's not very far from AoT in terms of popularity.";False;False;;;;1610390192;;False;{};giwtlbw;False;t3_kv4s8z;False;False;t1_giwie8q;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwtlbw/;1610442110;15;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610390200;;False;{};giwtm0l;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwtm0l/;1610442120;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Reavx;;;[];;;;text;t2_gjya3;False;False;[];;fma over rated i hope it dors;False;True;;comment score below threshold;;1610390200;;False;{};giwtm1i;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwtm1i/;1610442121;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Eh can't really agree with that since if you were to not enjoy a show, and drop it. Does that mean you can't have an opinion on it ?;False;True;;comment score below threshold;;1610390222;;False;{};giwtnp3;True;t3_kv4s8z;False;True;t1_giwtieb;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwtnp3/;1610442145;-16;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Facts, it should be around 9th;False;False;;;;1610390237;;False;{};giwtoyc;True;t3_kv4s8z;False;True;t1_giwtm1i;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwtoyc/;1610442164;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;No I've found many people who find steins gate crappy, just search up reddit threads.;False;False;;;;1610390279;;False;{};giwtsao;True;t3_kv4s8z;False;True;t1_giwtlbw;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwtsao/;1610442214;0;True;False;anime;t5_2qh22;;0;[]; -[];;;HamstersAreReal;;MAL;[];;https://myanimelist.net/profile/StudentOfTheGame;dark;text;t2_j0kft;False;False;[];;"I'll never understand it. Silent Voice manga is one my favorites. But people that liked the movie adaption got so butthurt that Your Name dominated the conversation at the time. Even today. - -And I'm convinced FMA:B fans hate any anime within a 1.0 range of their masterpiece. Like the immaturity is insane.";False;False;;;;1610390298;;False;{};giwttr3;False;t3_kv4s8z;False;False;t1_giwdg7d;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwttr3/;1610442234;59;True;False;anime;t5_2qh22;;0;[]; -[];;;SFDemon;;;[];;;;text;t2_j2sbr;False;False;[];;i might be in the minority here. But i just didnt like AOT that much. for me it was like OK after the first season. Only the first half was imo good but meh. Maybe i will rewatch it once its done.;False;False;;;;1610390461;;False;{};giwu6td;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwu6td/;1610442423;22;True;False;anime;t5_2qh22;;0;[]; -[];;;utsuriga;;;[];;;;text;t2_894zi;False;False;[];;I don't agree, but okay.;False;False;;;;1610390504;;False;{};giwuadm;False;t3_kv4s8z;False;False;t1_giws4ns;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwuadm/;1610442474;18;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;">as a non manga reader the fact that the manga is rated at at 9.3 brings me great joy. - -Dunno if you're slightly misinterpreting or not it as the current score but anyways ever since the finale of this season dropped around 1.5 years ago the overall score has climbed from 8.51 to 8.69 where it's at now. -What makes it impressive is since the AoT manga already has a really high number of votes, to raise its score requires a much higher average otherwise it'll take years. - - -The average during that interval has been around 9.1 or so and this is accelerating currently. I'll be keeping track of month long intervals as I have nothing else to do. - - -We're now 3 chapters from the manga ending and the fanbase right now is the most uncertain it's been in a while. Month long gaps have turned the manga groups insane, new binge readers are seemingly the much more delighted ones lol. No one is sure about how it'll end and a portion are even seemingly disappointed. - - -But most are optimistic in Isayama's execution due to him never failing a climax to an arc as even during the Marley arc airing right now, many were confused, disappointed and such for almost a year till the payoff came in the chapters covered this episode. Isayama's ability to deliver a big moment has always been incredible, every anime only experienced how impressive the Perfect Game-Hero-Midnight Sun chain of non stop climaxes, the S2 Reiner/Bertholdt reveal, the Basement reveal all were. Isayama himself said he didn't want the ending to be like GoT and a disappointment. - - -I'm certain AoT will end with *at worst* a solid ending, enough to cement its legacy but not an improvement over previous arcs but we'll likely see something great and maybe even the greatest ending in anime/manga but who knows. - - -But anime onlies can rest assured for this season at least to be better than all of the previous seasons in terms of the content. MAPPA pls elevate it. - - -Don't worry about manga reader complaints in the future regarding the ending though as the only reason most complaints will be happening is because this season sets the bar so high that it's for many it's impossible to top. The final arc at minimum be as amazing as Return to Shiganshina at even if it turns out to be an *okay* ending imo so even if it doesn't satisfy some it'll likely provide a great conclusion for most.";False;False;;;;1610390510;;False;{};giwuaug;False;t3_kv4s8z;False;False;t1_giwpmue;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwuaug/;1610442481;27;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610390511;;False;{};giwuawb;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwuawb/;1610442481;1;True;False;anime;t5_2qh22;;0;[]; -[];;;InsomniaEmperor;;;[];;;;text;t2_5x68hmc4;False;False;[];;"Strike The Blood and Date A Live if you want action with deep plot too. - -Yuuna and the Haunted Hot Springs, OniAi, and Hensuki for more focused ecchi action.";False;False;;;;1610390527;;False;{};giwuc7y;False;t3_kv5b1r;False;True;t3_kv5b1r;/r/anime/comments/kv5b1r/good_haremcomedy_anime_to_watch_like/giwuc7y/;1610442501;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wrenerry;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;no flair;light;text;t2_zapsv;False;True;[];;Masterpiece absolutely not! I don’t think anyone on r/anime actually even watches anime metropolis is a masterpiece texnoylze is a masterpiece parasite dolls is better than attack on titan alone story wise I mean attack on titan is such an 1/10 story steins gate is a masterpiece no one here cares about actual story or art only blood and gore with lame story attack on titan is a 0/10 absolutely worst anime of all time;False;True;;comment score below threshold;;1610390572;;False;{};giwufta;False;t3_kv4s8z;False;True;t1_giws4ns;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwufta/;1610442554;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"For me: - -That Day (3x20) > Midnight Sun (3x18) > Hero (3x17) = Perfect Game (3x16)";False;False;;;;1610390670;;False;{};giwunpc;False;t3_kv4s8z;False;True;t1_giwti00;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwunpc/;1610442671;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hephaestus_God;;;[];;;;text;t2_wp7nx;False;False;[];;"9.11 rating with 500k votes it impressive. - -However 3rd place having a 9.10 with 2 Million is even more impressive. If you take into account the number of people voting it makes sense why the number is higher. - -Not saying AoT doesn’t deserve to be up their, but if you make the sample size the same and people don’t give it a higher score it will go back down.";False;False;;;;1610390725;;False;{};giwus4a;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwus4a/;1610442736;16;True;False;anime;t5_2qh22;;0;[]; -[];;;nuraHx;;;[];;;;text;t2_f44kl;False;False;[];;Jesus christ. Weebs are fucking cringe gods;False;False;;;;1610390755;;False;{};giwuuhu;False;t3_kv4s8z;False;False;t1_giwdg7d;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwuuhu/;1610442768;50;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;More importantly, the source material will be done before the adaptation;False;False;;;;1610390778;;False;{};giwuwem;False;t3_kv4s8z;False;False;t1_giwis7f;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwuwem/;1610442795;35;True;False;anime;t5_2qh22;;0;[]; -[];;;Kyeloph_;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/OmegaBlue_;dark;text;t2_5eaors7v;False;False;[];;I was iffy on the new art style because the old one fit the show so well but the show is quite different now and this art style fits it much better;False;False;;;;1610390787;;False;{};giwux53;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwux53/;1610442806;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"Your Name is the most extreme case of this though tbh. 9.09 to 8.98 is really fast - -AoT's reception in general improved massively after S3P2 and the manga reception is even better so expect atleast this season to drop only very little after the ending peak. The final arc I'm unsure of as we don't know the ending yet";False;False;;;;1610390824;;False;{};giwv07x;False;t3_kv4s8z;False;False;t1_giwim27;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwv07x/;1610442851;25;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610390862;;False;{};giwv36h;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwv36h/;1610442894;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fierce-Mushroom;;;[];;;;text;t2_9851jvsi;False;False;[];;Thank you for proving my point. It has an over arcing story that gets told piecemeal throughout the series, maybe you should go back and watch it again with your eyes open this time.;False;False;;;;1610390917;;False;{};giwv7ou;False;t3_kv4s8z;False;True;t1_giwt8tk;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwv7ou/;1610442958;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Nobody talking about the final Gintama movie lol, it could very easily swoop into that number 1 spot;False;False;;;;1610390925;;False;{};giwv8bc;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwv8bc/;1610442968;9;True;False;anime;t5_2qh22;;0;[]; -[];;;nuraHx;;;[];;;;text;t2_f44kl;False;False;[];;Is the final season not gonna have a part 2 with a break in between? Is there really only 11 episodes until it's all over? 😭;False;False;;;;1610390932;;False;{};giwv8u5;False;t3_kv4s8z;False;True;t1_giw2h6g;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwv8u5/;1610442976;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"You see, this movie franchise is told out of order, watching it this way maximizes mystery and enjoyment. And the recap movie makes more sense. - -Also movie 6 has a reputation of being ""meh"" out of the bunch because movie 5 answers the questions movie 4 asked, but doesn't ask any questions.";False;False;;;;1610390936;;False;{};giwv969;False;t3_kv5us6;False;True;t1_giwuxa5;/r/anime/comments/kv5us6/series_similiar_to_fatezero_series_with_dark/giwv969/;1610442981;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;Solid pasta;False;False;;;;1610390956;;False;{};giwvavd;False;t3_kv4s8z;False;False;t1_giwufta;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwvavd/;1610443006;12;True;False;anime;t5_2qh22;;0;[]; -[];;;FleraAnkor;;;[];;;;text;t2_185ttwzu;False;False;[];;"Id you not watch FMAB? - -The first half was just shit and the only reason I pushed through it was because I had watched the original and people told me it would get better. Had it not been for that I would have dropped it. After that it was fucking amazing though.";False;False;;;;1610390968;;False;{};giwvbrq;False;t3_kv4s8z;False;True;t1_giwpe3r;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwvbrq/;1610443018;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ashteron;;;[];;;;text;t2_10ndkv;False;False;[];;Your name used to be top 1.;False;False;;;;1610390992;;False;{};giwvdn2;False;t3_kv4s8z;False;False;t1_giwim27;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwvdn2/;1610443046;64;True;False;anime;t5_2qh22;;0;[]; -[];;;SkepticDrinker;;;[];;;;text;t2_8upmc4sd;False;False;[];;Ah young people, can't appreciate quality;False;False;;;;1610391011;;False;{};giwvf85;False;t3_kv4s8z;False;True;t1_giwvbrq;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwvf85/;1610443068;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gangrainette;;MAL;[];;https://myanimelist.net/profile/bouletos;dark;text;t2_vlti1;False;False;[];;"I've read the first route because the chance of getting a good adaptation are low and I found it boring. - -Had I not started with zero I would never have liked Fate";False;False;;;;1610391017;;False;{};giwvfpr;False;t3_kv4sjc;False;True;t1_giw2yts;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giwvfpr/;1610443075;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;No it'll probably have a cour 2 or a movie but the final season listing would be over. It'd become final season P2, but ahhh i don't want it to end as well bro 😭😭😭.;False;False;;;;1610391028;;False;{};giwvgli;True;t3_kv4s8z;False;True;t1_giwv8u5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwvgli/;1610443088;2;True;False;anime;t5_2qh22;;0;[]; -[];;;spencer1886;;;[];;;;text;t2_28yo97jg;False;False;[];;500 upvotes and 300 comments? My god...;False;False;;;;1610391030;;False;{};giwvgt0;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwvgt0/;1610443091;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610391036;;False;{};giwvh8p;False;t3_kv4s8z;False;True;t1_giwinz2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwvh8p/;1610443098;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kirikoh;;;[];;;;text;t2_qa58w;False;False;[];;"I was a manga reader that loved it as well but the subsequent narrative after the film release almost left distaste in my mouth because so much of the discussion was how it was supposedly """"underrated"""" and deserved to be higher up. - -FMAB fans are infamous, any show (including SnK S3. Your Name etc.) that overtakes it, will be dragged down.";False;False;;;;1610391043;;False;{};giwvhth;False;t3_kv4s8z;False;False;t1_giwttr3;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwvhth/;1610443106;29;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Eh the hype for it will probably die since it's gonna take fuckin centuries to release it here;False;False;;;;1610391058;;False;{};giwvj0u;True;t3_kv4s8z;False;True;t1_giwv8bc;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwvj0u/;1610443124;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;new_shinigami;;;[];;;;text;t2_y2o79n;False;False;[];;I don't think it is official. We have been seeing the upward amd downwaed trend of the final season. It's the best score they have got till now. If the upcoming episodes will be good then it can certainly overtake FMAB. But there is a good gap between them. Still, I think AoT can overtake FMAB on MAL if not IMdb.;False;False;;;;1610391078;;False;{};giwvkm4;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwvkm4/;1610443147;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Santaire1;;;[];;;;text;t2_91ro3cg;False;False;[];;"Will it beat FMA:B? Probably, at least for now, though I'd imagine the score will drift down over time as less hyped people watch and produce less glowing reviews (Getting so many 10/10s less than halfway in? That's absolutely getting inflated by hype). - -Should it? **¯\\\_(ツ)\_/¯** . - -I prefer FMA. I find Ed and Al to be more consistent as characters than Eren, and more sympathetic as well. Once you get past the opening sprint, FMA's pace feels better to me (though part of that is AoT's massive gap between seasons). I prefer the tone of FMA, with a nice balance between light and dark, where AoT feels like it starts off dark and only gets worse. FMA has better villains IMO (though AoT has obviously gone for a very different direction in terms of how to approach evil). I feel that FMA got better use out of its ensemble cast than AoT has - obviously, they both have amazing characters, and they both have excellent side characters as well, but I feel that FMA handles side stories and development just a little better. AoT has amazing animation and a great art style, but FMA is a little more consistent (understandably, since it was produced all in one go rather than being split into multiple seasons and now handed off to a different studio).";False;False;;;;1610391084;;1610398912.0;{};giwvl4d;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwvl4d/;1610443154;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;ajver19;;;[];;;;text;t2_3haraaue;False;True;[];;"I'm more just baffled at the sheer worship that FMA: B gets. - -I liked it too, hell I even liked the original series but I don't put it on this pedestal that so many do.";False;False;;;;1610391102;;False;{};giwvmjp;False;t3_kv4s8z;False;False;t1_giw9hbo;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwvmjp/;1610443174;148;True;False;anime;t5_2qh22;;0;[]; -[];;;FleraAnkor;;;[];;;;text;t2_185ttwzu;False;False;[];;Mate. How old do you think I am?;False;False;;;;1610391103;;False;{};giwvmmc;False;t3_kv4s8z;False;True;t1_giwvf85;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwvmmc/;1610443175;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"S3P2 peaked at ~~9.17~~ 9.23 - -It would've overtaken for a while had it not been brigaded down. It fell pretty abruptly but settled eventually and the score system change happened pushing it to 9.09. It still naturally declined to 9.07 but over the last month it's climbed back up to 9.09";False;False;;;;1610391107;;1610419400.0;{};giwvmz5;False;t3_kv4s8z;False;True;t1_giw819m;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwvmz5/;1610443180;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Verethragna97;;;[];;;;text;t2_11jxsh;False;False;[];;"It's a sequel, so not like it counts. - -Also, mal ranking is worthless anyways. - -I don't know a single person who would call Full Metal Alchemist their favourite anime, it's just good. - -People have been pretty much vote bombing everything on MAL for years too.";False;False;;;;1610391110;;False;{};giwvn7m;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwvn7m/;1610443184;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SkepticDrinker;;;[];;;;text;t2_8upmc4sd;False;False;[];;Hmmmm 20;False;False;;;;1610391131;;False;{};giwvowy;False;t3_kv4s8z;False;True;t1_giwvmmc;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwvowy/;1610443210;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;I got better things to do then to waste my time watching garbage. Just fuck off, this is a thread about aot. how sad is your life that to need to shove in your hate everywhere ? IDC about what you think.;False;False;;;;1610391135;;False;{};giwvp9t;True;t3_kv4s8z;False;True;t1_giwv7ou;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwvp9t/;1610443215;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wholelottavex;;skip7;[];;;dark;text;t2_99s2nkky;False;False;[];;Fmab is so mid lmao I don’t understand why it’s so loved;False;False;;;;1610391175;;False;{};giwvsgj;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwvsgj/;1610443262;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Did you read it with a walkthrough? - -For real, there are many visual novel readers out there who didn't like Fate and Unlimited Blade Works, even in the visual novel. But there has never been a single person who thought Heaven's Feel was a waste of time.";False;False;;;;1610391192;;False;{};giwvtur;False;t3_kv4sjc;False;True;t1_giwvfpr;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giwvtur/;1610443284;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;It does count tho 😳 ? It's part of 1 show. But I do think all shows should be put into one and not divided into sequals. Cox the continuation of the same story isn't a fucking sequal.;False;False;;;;1610391193;;False;{};giwvtvl;True;t3_kv4s8z;False;True;t1_giwvn7m;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwvtvl/;1610443284;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;PuzzySlayer69xdPL;;;[];;;;text;t2_3rz62akk;False;False;[];;Ahh, ok then, thanks again!;False;False;;;;1610391195;;False;{};giwvu2a;True;t3_kv5us6;False;True;t1_giwv969;/r/anime/comments/kv5us6/series_similiar_to_fatezero_series_with_dark/giwvu2a/;1610443287;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Same bro, it's at best a 8/10.;False;False;;;;1610391210;;False;{};giwvvaf;True;t3_kv4s8z;False;False;t1_giwvsgj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwvvaf/;1610443305;7;True;False;anime;t5_2qh22;;0;[]; -[];;;FleraAnkor;;;[];;;;text;t2_185ttwzu;False;False;[];;And then some;False;False;;;;1610391234;;False;{};giwvx6o;False;t3_kv4s8z;False;True;t1_giwvowy;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwvx6o/;1610443332;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Same;False;False;;;;1610391272;;False;{};giww0a1;True;t3_kv4s8z;False;True;t1_giwvkm4;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giww0a1/;1610443377;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chadgum;;;[];;;;text;t2_yy4nhd9;False;False;[];;That’s only one scenario. Another is where a series has a strong beginning, middle, yet no resolution. Obviously we would be uninformed if we came to judge a work if we only knew the first two. What’s there to disagree with here? I said judge as a whole, not it’s parts. By definition it would be impossible to judge the entirety of a work without understanding every part of it.;False;False;;;;1610391294;;1610392043.0;{};giww22w;False;t3_kv4s8z;False;False;t1_giwtnp3;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giww22w/;1610443403;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahantam_PACE;;;[];;;;text;t2_7kk0ny8w;False;False;[];;I can see the future where there will be a post like this saying it has become no. 1 as I am a Future titan;False;False;;;;1610391308;;False;{};giww36r;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giww36r/;1610443419;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"SG has way fewer haters imo. Re Zero has much more hate though but it isn't a proper comparison. - -AoT has the biggest fanbase of any anime outside of One Piece and Naruto imo hence finding people disliking it is pretty easy";False;False;;;;1610391308;;False;{};giww378;False;t3_kv4s8z;False;False;t1_giwie8q;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giww378/;1610443419;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Alejando2774;;;[];;;;text;t2_2o2eqy2e;False;False;[];;Attack will climb to no.1 spot by the end of this season just watch.;False;False;;;;1610391310;;False;{};giww3bw;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giww3bw/;1610443421;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;If youve just watched s1, you don't know what you're missing out on. I agree s1 was just 8/10. But every arc after that improves miles.;False;False;;;;1610391330;;False;{};giww50p;True;t3_kv4s8z;False;True;t1_giwu6td;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giww50p/;1610443445;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Troll 🤣;False;False;;;;1610391386;;False;{};giww9ew;True;t3_kv4s8z;False;False;t1_giwufta;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giww9ew/;1610443508;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;I hope so;False;False;;;;1610391406;;False;{};giwwaxc;True;t3_kv4s8z;False;False;t1_giww3bw;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwwaxc/;1610443531;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cancertoad;;;[];;;;text;t2_37fwxi3g;False;False;[];;I hate how individual seasons are on Mal's top 100. Average that shit out to just one series ffs.;False;False;;;;1610391410;;False;{};giwwb7x;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwwb7x/;1610443535;243;True;False;anime;t5_2qh22;;0;[]; -[];;;Verethragna97;;;[];;;;text;t2_11jxsh;False;False;[];;"I mean that it is a general community rule that sequels don't count cause they almost always get higher ratings. - -Someone that doesn't like a show isn't gonna watch the sequels, so the ratings are naturally biased towards the top. - -Pretty much every show where the studio didn't change between seasons is continually getting higher ratings with every season.";False;False;;;;1610391440;;False;{};giwwdrt;False;t3_kv4s8z;False;False;t1_giwvtvl;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwwdrt/;1610443572;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Eh that's not true, they've been many seuqals that have gotten worse ratings than s1;False;False;;;;1610391489;;False;{};giwwhqm;True;t3_kv4s8z;False;True;t1_giwwdrt;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwwhqm/;1610443628;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ikr, like how TF does it make sens to make 1 story into 5 seperate listings;False;False;;;;1610391525;;False;{};giwwkkr;True;t3_kv4s8z;False;False;t1_giwwb7x;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwwkkr/;1610443671;4;True;False;anime;t5_2qh22;;0;[]; -[];;;aohige_rd;;;[];;;;text;t2_ttrmj;False;False;[];;"I have no doubt that if GoT's end was based on a novel written and published by GRRM it would have been great. GoT was a classic case of ""anime original end"" equivalent. - -Thankfully AoT will not have this problem as there is no lack of source material. - -In fact AoT most closely resemble FMA:b in that it's a popular non-Jump shonen manga that is timing its conclusion to coincide with the anime. (That is of course if they do another split cour... Which I am sure they will)";False;False;;;;1610391578;;False;{};giwwowt;False;t3_kv4s8z;False;False;t1_giwpmue;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwwowt/;1610443732;53;True;False;anime;t5_2qh22;;0;[]; -[];;;SFDemon;;;[];;;;text;t2_j2sbr;False;False;[];;maybe, but shouldnt 1 season get me interested enough to watch the next ones?? And i know im not missing much cz i used to read the manga for some time after season 1 but never got the itch to actually watch it;False;False;;;;1610391614;;False;{};giwwrva;False;t3_kv4s8z;False;False;t1_giww50p;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwwrva/;1610443774;8;True;False;anime;t5_2qh22;;0;[]; -[];;;snapthesnacc;;;[];;;;text;t2_56qhnxv4;False;False;[];;I honestly don't think anyone will overtake Fullmetal Alchemist Brotherhood. Hardcore brigading or something else prevents it every single time. Demon Slayer and Your Name are both the equivalent of FMA:B in terms of being great for anime newcomers, popular, and financially successful. Attack on Titan S3 P2 is by all means very well written and well animated. If NONE of those 3 could topple FMAB, then nothing will.;False;False;;;;1610391638;;False;{};giwwtq1;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwwtq1/;1610443801;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Wex_Pyke;;;[];;;;text;t2_3n1e7ki7;False;False;[];;">Edit: Lol the salty FMAB fans are a site to behold - -Thank God AoT fans never mass voted 1s for other shows and... - -Oh.";False;False;;;;1610391691;;False;{};giwwxww;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwwxww/;1610443861;126;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;It's been a decade since FMAB aired, the fan base isn't as active anymore. Also I almost never see anyone list FMAB as there favorite anime here or anywhere else. I don't get how it's one tbh;False;False;;;;1610391726;;False;{};giwx0my;True;t3_kv4s8z;False;True;t1_giwwtq1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwx0my/;1610443900;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;That's retaliation since FMAB fans are doing it and Mal can't do anything about it.;False;True;;comment score below threshold;;1610391766;;False;{};giwx3q1;True;t3_kv4s8z;False;False;t1_giwwxww;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwx3q1/;1610443946;-23;True;False;anime;t5_2qh22;;0;[]; -[];;;Melaninkasa;;;[];;;;text;t2_fn682l0;False;False;[];;"Why are we still blaming ""fanboys vote brigading"" when it's a problem that has been dealt with? It's time to change the script. - -And if we want to talk about it mass voting the entire season 10/10 after a peak episode is also stupid btw.";False;False;;;;1610391774;;False;{};giwx4e3;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwx4e3/;1610443963;19;True;False;anime;t5_2qh22;;0;[]; -[];;;nightlink011;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/nightlink011;light;text;t2_gshqkgk;False;False;[];;"Every very popular show will have a fan base worshipping it and it will have very big critics, I don't think Fma:B is anything above any other popular show in terms of overall fanbase, it's just the way fans are and every community has some toxic people. - -Also we all know the real number 1 is Pingu in the city.";False;False;;;;1610391844;;False;{};giwx9vt;False;t3_kv4s8z;False;False;t1_giwvmjp;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwx9vt/;1610444046;54;True;False;anime;t5_2qh22;;0;[]; -[];;;Wex_Pyke;;;[];;;;text;t2_3n1e7ki7;False;False;[];;The mass 1 votes I refer to isn't with FMAB, but ok;False;False;;;;1610391850;;False;{};giwxacd;False;t3_kv4s8z;False;False;t1_giwx3q1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwxacd/;1610444052;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Reaperdude97;;;[];;;;text;t2_7yk28;False;False;[];;If Chapter 122 is this season, it might.;False;False;;;;1610391864;;False;{};giwxbgy;False;t3_kv4s8z;False;False;t1_giwb2f1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwxbgy/;1610444069;20;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Trust me it gets better and better, s1 is just decent. But it's 100% worth watching. Coz the series will get better each arc. The only time that doesn't happen is from arc 1 to arc 2. Arc 3 is absorutely fire and keeps on getting better and has crazy twists. Then arc 4 is crazy political thriller. Arc 5 is everything together. And arc 6 which is s4 is shaping up to be one of the greatest animes of the modern era.;False;False;;;;1610391878;;False;{};giwxcl2;True;t3_kv4s8z;False;True;t1_giwwrva;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwxcl2/;1610444085;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;">10s will heavily skew the finished rating. - -Uhh no? Positive brigading scores are also targeted. - -Anyways the people giving it 10s already will be the very first people to lower the score as soon it starts disappointing them. - -Take the previous season as an example. Started off high, ended higher and is still higher than where it started back then. - -Expecting a low score is like expecting something with a fanbase to not vote positively if it satisfies them. If Berserk got a remake and the first episode seems solid, the fans of the manga will of course rate it a 10/10 because the material being covered is so damn good. - -If we went by how you expect stuff should be scored no one should rate any anime above an 8/10 regardless unless it's halfway through";False;False;;;;1610391887;;False;{};giwxdch;False;t3_kv4s8z;False;True;t1_giwinz2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwxdch/;1610444096;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;"The FMAB fans vote 1 EVERY show that can surpased it. Not Only aot. -Amd i never see conflict against aot and HxH, aot and steins:gate, aot and death note......";False;True;;comment score below threshold;;1610391946;;False;{};giwxi2s;False;t3_kv4s8z;False;True;t1_giwwxww;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwxi2s/;1610444165;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;How did they deal with it ? They only targeted double accounts with less then 5 animes rated. So the second accounts, it still doesn't take into account the primary votes.;False;False;;;;1610391946;;False;{};giwxi3e;True;t3_kv4s8z;False;False;t1_giwx4e3;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwxi3e/;1610444165;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MusicM3000;;;[];;;;text;t2_116bnuwu;False;False;[];;But why the hate from the fans? An anime could be #1 on the list but at the end of the day its all just opinions. All because MOST people like an anime doesn't mean YOU will like it. I love both FMAB and AOT and consider them the greatest work in anime out there. I recommend both to my friends getting into anime. All because your favorite anime isn't #1 on a list doesn't stop it from being #1 in your list.;False;False;;;;1610391953;;False;{};giwxine;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwxine/;1610444173;29;True;False;anime;t5_2qh22;;0;[]; -[];;;sligaro;;;[];;;;text;t2_ia1m7;False;False;[];;I remember when steins gate 0 was rated like top 5 with only 1 episode out if my memory serves lol;False;False;;;;1610391953;;False;{};giwxioq;False;t3_kv4s8z;False;False;t1_giwim27;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwxioq/;1610444174;41;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;">Final season wont be different. - -It'll be much different that the anti brigading system is in place. That's on top of S4 material being considered better by literally every manga reader so it'll peak higher";False;False;;;;1610391987;;False;{};giwxlcb;False;t3_kv4s8z;False;False;t1_giwomof;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwxlcb/;1610444212;12;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Not i was just referring to how childish many FMAB fans were acting in the comments, steins gate fans were much more chill and were like whatever, both are great. Fmab fans were getting triggered like someone assaulted there mom;False;True;;comment score below threshold;;1610392038;;False;{};giwxpbx;True;t3_kv4s8z;False;True;t1_giwxine;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwxpbx/;1610444269;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;DevelopmentClean1473;;;[];;;;text;t2_9q25jov0;False;False;[];;"The amount of devotion FMAB fans have to bringing it up on mal, for better or for worse, will ensure that FMAB keeps the top spot. I would say AOT is also way more controversial, so there are also going to be diehard haters that keep downvoting it no matter what. - -All in all, I would say only a 10-20% chance but to AOT's credit it has gotten closer than any anime before it.";False;False;;;;1610392044;;False;{};giwxpvd;False;t3_kv4s8z;False;False;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwxpvd/;1610444277;68;True;False;anime;t5_2qh22;;0;[]; -[];;;Melaninkasa;;;[];;;;text;t2_fn682l0;False;False;[];;I don't remember the extent of it but they made a quite lenghty post about it if interested (don't have the link tho it must be somewhere in their forum).;False;False;;;;1610392056;;False;{};giwxqsi;False;t3_kv4s8z;False;True;t1_giwxi3e;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwxqsi/;1610444291;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;yeah i was with you except that the last chapters were fucking garbage;False;False;;;;1610392058;;False;{};giwxqw4;False;t3_kv4s8z;False;True;t1_giwis7f;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwxqw4/;1610444292;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Bighollab0;;;[];;;;text;t2_rurdv;False;False;[];;Lmaooo the salt bro 😭😭;False;False;;;;1610392060;;False;{};giwxr3u;False;t3_kv4s8z;False;False;t1_giwryn2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwxr3u/;1610444295;9;True;False;anime;t5_2qh22;;0;[]; -[];;;SFDemon;;;[];;;;text;t2_j2sbr;False;False;[];;will probably watch it when its done and i have semester vacation;False;False;;;;1610392090;;False;{};giwxti7;False;t3_kv4s8z;False;True;t1_giwxcl2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwxti7/;1610444331;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ikr 🤣 FMAB fans be pissed.;False;False;;;;1610392094;;False;{};giwxtsz;True;t3_kv4s8z;False;False;t1_giwxr3u;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwxtsz/;1610444336;12;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;K, trust me it's gonna be worth the watch, you won't regret it one bit.;False;False;;;;1610392116;;False;{};giwxvib;True;t3_kv4s8z;False;True;t1_giwxti7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwxvib/;1610444362;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;">Why are people allowed to vote before the series is finished? No one will be able to judge the season as a whole until watching every episode. - -not really but ok";False;True;;comment score below threshold;;1610392122;;False;{};giwxvzr;False;t3_kv4s8z;False;True;t1_giwtieb;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwxvzr/;1610444369;-12;True;False;anime;t5_2qh22;;0;[]; -[];;;Wex_Pyke;;;[];;;;text;t2_3n1e7ki7;False;False;[];;"I see a lot of conflict with all those fanbases you mentioned except Steins;Gate, maybe because the circles I usually frequent just happen to not have such a large following for this show.";False;False;;;;1610392136;;False;{};giwxx3p;False;t3_kv4s8z;False;False;t1_giwxi2s;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwxx3p/;1610444385;14;True;False;anime;t5_2qh22;;0;[]; -[];;;MusicM3000;;;[];;;;text;t2_116bnuwu;False;False;[];;Well thats what I mean. FMAB fans shouldn't be upset about it :/;False;True;;comment score below threshold;;1610392143;;False;{};giwxxp6;False;t3_kv4s8z;False;True;t1_giwxpbx;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwxxp6/;1610444394;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;irade1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Irade1;light;text;t2_20vypg5k;False;False;[];;I didn’t even scroll down but I know that this comment section is a war zone.;False;False;;;;1610392149;;False;{};giwxy5e;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwxy5e/;1610444400;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Terrashock;;MAL;[];;http://myanimelist.net/animelist/Terrashock;dark;text;t2_fhgi5;False;False;[];;"My god, both of you sound like absolutely insufferable children. - -Let people enjoy what they enjoy and dislike what they dislike.";False;False;;;;1610392164;;False;{};giwxzbv;False;t3_kv4s8z;False;False;t1_giwi10j;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwxzbv/;1610444418;7;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;yeah?;False;True;;comment score below threshold;;1610392177;;False;{};giwy0c2;False;t3_kv4s8z;False;True;t1_giwid7l;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwy0c2/;1610444433;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;elissass;;;[];;;;text;t2_4p4dtw65;False;False;[];;cant really trust MAL after the drama with the mass bad rating;False;False;;;;1610392204;;False;{};giwy2g4;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwy2g4/;1610444462;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;True;False;False;;;;1610392224;;False;{};giwy401;True;t3_kv4s8z;False;True;t1_giwy2g4;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwy401/;1610444485;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;it is not ok to call a cartoon crap? HAHAHAHAHA;False;False;;;;1610392234;;False;{};giwy4uf;False;t3_kv4s8z;False;True;t1_giw4h4m;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwy4uf/;1610444499;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;ToeAny5031;;;[];;;;text;t2_7n9tiyl4;False;False;[];;"Honestly Im more of a fan of FMAB, but I can see why AOT may surpass it. It appeals to a more varied audience and has a more comprehensible storyline, making it easier for younger fans to watch and enjoy it. - -FMAB has a bit more mature of a story. It may not be as graphic and gory, but it focuses on mature topics. The horrors of war, human psychology, morality, etc. It's a little bit harder for younger audiences to enjoy. - -AOT has a storyline that is gruesome and delves into war, but its a lot more watered down to be more digestible. AOT is still a great series (Not really my favorite but its alright) and it has a widely appealing narrative. - -So, do I think AOT will surpass FMAB? Yes. Do I like AOT? A little bit. Does it deserve to pass FMAB? Yes, if this many people like it then there is a massive audience for it. - -Also FMAB fans stop being so toxic. It's okay if it isn't number 1 anymore. That doesn't change the quality of the story. It will forever be one of my favorite anime. Just learn to accept that not everyone shares your view. (I am not saying all FMAB fans are like this, just too many are) Also, I enjoy FMAB more than AOT.";False;False;;;;1610392240;;False;{};giwy5bw;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwy5bw/;1610444506;5;True;False;anime;t5_2qh22;;0;[]; -[];;;OminousDrac;;;[];;;;text;t2_7pu8ekus;False;False;[];;Damn I'm reading all these comments and lord I didn't know fmab had such a toxic presence on mal. I thought it was there because people just liked it that much more. Like it's a top 5 anime for me but so is aot. I really hope aot gives it a good competition and all this fanbase gets a grip on life lmao.;False;False;;;;1610392241;;False;{};giwy5ep;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwy5ep/;1610444507;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"MAL's Twitter and FB pages increased followers by 3rd this year and looking at him of members on anime increasing at incredible rates, I'm fairly certain it's doing better than ever traffic wise. Lockdown improved anime traffic as a whole - -I fairly certain MAL's reach in SEA and South Asia has improved tremendously the last year as well";False;False;;;;1610392249;;False;{};giwy617;False;t3_kv4s8z;False;False;t1_giwrx1c;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwy617/;1610444516;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Honestly, i agree, i did act a little immature there but some people man. You gotta dumb down so children can understand.;False;False;;;;1610392265;;False;{};giwy7cd;True;t3_kv4s8z;False;True;t1_giwxzbv;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwy7cd/;1610444535;0;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;people are not expected not obligated to write you a 10000 pages report of why they disliked something,holy shit;False;False;;;;1610392284;;False;{};giwy8u4;False;t3_kv4s8z;False;True;t1_giw3puo;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwy8u4/;1610444556;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Two of the best beginner animes imo are Attack on titan and Death note you should defintaly check them out;False;False;;;;1610392295;;False;{};giwy9p7;False;t3_kv5oy9;False;True;t3_kv5oy9;/r/anime/comments/kv5oy9/help_a_newbie_anime_fan/giwy9p7/;1610444569;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;learn another word;False;False;;;;1610392309;;False;{};giwyaug;False;t3_kv4s8z;False;False;t1_giw2zpf;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwyaug/;1610444585;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mimdahey;;;[];;;;text;t2_8ar8dwwp;False;False;[];;Yada yada MAL, you can stop right there;False;False;;;;1610392318;;False;{};giwyblf;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwyblf/;1610444596;15;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;Didn't MAL implement some sort of protection against specifically that? It's pretty obvious that when 1000 new accounts are made and the only thing they do is rate a show 1 that those aren't valid.;False;False;;;;1610392335;;False;{};giwyczl;False;t3_kv4s8z;False;False;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwyczl/;1610444617;16;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;I'm not even sure how it's up there tbh, cox i almost never hear anyone put it on there top 5 animes on this sub. It's always steins gate, death note, code geass, Attack on Titan or my hero academia. Don't see fmab that often.;False;False;;;;1610392356;;False;{};giwyeow;True;t3_kv4s8z;False;True;t1_giwy5ep;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwyeow/;1610444642;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SpeeDy_GjiZa;;MAL;[];;http://myanimelist.net/profile/SpeeDy_G;dark;text;t2_gsfq5;False;False;[];;I will fight you IRL about FMAB being the number one anime ever.... BUT... when Attack on Titan ends (and I think it's not gonna dissapoint) I can see it surpassing FMAB. For me they have a lot in common and the similarites are even more noticeable imo in the upcoming season, but I think the way AoT is structured is a masterpiece of writing/storytelling. It gives new perspective of previous events with each new chapter and widens our understanding of the story and characters in a way that no other media in so far that I have read/watched has ever been able to do. I think when AoT ends we FMAB fans will have to reconcile with the fact that it indeed might be the better story if not anime (because of the season splits/animation quality whatever).;False;False;;;;1610392358;;False;{};giwyeuh;False;t3_kv4s8z;False;False;t1_giw9is4;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwyeuh/;1610444644;49;True;False;anime;t5_2qh22;;0;[]; -[];;;Permanoxx;;;[];;;;text;t2_3hwherkr;False;False;[];;Aot (9.11) is still .10 away from Fmab (9.21) which is a lot so it will be really hard to get that #1;False;False;;;;1610392366;;False;{};giwyffu;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwyffu/;1610444653;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sylinmino;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/SylinMino;light;text;t2_60gxk;False;False;[];;Personally, I'm all caught up except on the latest episode, but S1 is still my favorite to date.;False;False;;;;1610392381;;False;{};giwygm0;False;t3_kv4s8z;False;True;t1_giww50p;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwygm0/;1610444669;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;OMG, bro pure Respect for you. I didn't know finding someone who acknowledged this was this hard. You're a respectable and amazing human being. Have an amazing life !;False;False;;;;1610392439;;False;{};giwyl6h;True;t3_kv4s8z;False;True;t1_giwy5bw;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwyl6h/;1610444733;2;True;False;anime;t5_2qh22;;0;[]; -[];;;wayayoshitaka;;MAL a-amq;[];;https://myanimelist.net/profile/weiss;dark;text;t2_sazyd;False;False;[];;we'll see in 2 years if it holds up. Gintama has gone past FMA:B many times, but the average score usually drops over time;False;False;;;;1610392447;;False;{};giwylvd;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwylvd/;1610444744;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Huh, weird;False;False;;;;1610392450;;False;{};giwym4h;True;t3_kv4s8z;False;True;t1_giwygm0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwym4h/;1610444747;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Let's see 🤷 only time will tell;False;False;;;;1610392469;;False;{};giwynpk;True;t3_kv4s8z;False;False;t1_giwylvd;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwynpk/;1610444771;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Jason3b93;;;[];;;;text;t2_4exum8;False;False;[];;">The algorithm detects 10/10 brigading just as well as 1/10s and anything else - -What about 9/10 and 2/10 brigading? I'll just create bots to spam these ratings for my faves and the shows I hate instead. Sorry, MyAnimeList, I am two steps ahead. - -Rollsafe.jpg - -^^^^^/s";False;False;;;;1610392485;;False;{};giwyoxk;False;t3_kv4s8z;False;False;t1_giwp6jw;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwyoxk/;1610444788;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;True but it has 11 more tries so maybe;False;False;;;;1610392489;;False;{};giwyp9f;True;t3_kv4s8z;False;True;t1_giwyffu;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwyp9f/;1610444792;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;"Ikr, this post was almost like a ""declaration of war"" - - - - - - -Sorry for the bad joke 🤣 i couldn't resist";False;False;;;;1610392530;;False;{};giwysgs;True;t3_kv4s8z;False;True;t1_giwxy5e;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwysgs/;1610444840;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Watch Fate/Zero then unlimited blade works then heavens feel, some people say you should watch Zero after Heavens feel but I personally say to watch it before since if I began with UBW I probably would have dropped it;False;False;;;;1610392565;;False;{};giwyva9;False;t3_kv4sjc;False;True;t3_kv4sjc;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/giwyva9/;1610444878;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Choumuske07;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Chomusuke07;light;text;t2_3i1j3rbo;False;False;[];;"Steins;Gate is 0.01 better with more people watching it";False;False;;;;1610392618;;False;{};giwyzhc;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwyzhc/;1610444939;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kiralala7956;;;[];;;;text;t2_d2iez;False;False;[];;To be fair we aren't talking hypotheticals here, there are 2 clear comparisons being made, AoT and FMB. How radically AoT changed its setting and how far back you can trace foreshadowings without it being obvious in any way is simply a masterpiece of storytelling, whereas FMAB is an above average shonen with all the classic cliches and slapstick humor to boot.;False;False;;;;1610392632;;False;{};giwz0m3;False;t3_kv4s8z;False;False;t1_giwnv9l;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwz0m3/;1610444956;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;It wasn't when I made the post, i added an edit.;False;False;;;;1610392662;;False;{};giwz2xw;True;t3_kv4s8z;False;True;t1_giwyzhc;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwz2xw/;1610444989;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thismise4u;;MAL;[];;http://myanimelist.net/animelist/xltra;dark;text;t2_iv5pr;False;False;[];;I've never understood the hype for FMA:B. It's a good anime sure, but I don't think I would even put it in my top25 all time. The first half is 10/10 but somewhere along the way it really falls flat on it's face.;False;False;;;;1610392715;;1610393047.0;{};giwz79n;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwz79n/;1610445050;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jejmaze;;;[];;;;text;t2_6bwf7;False;False;[];;I fucking hate MAL splitting things by season. Gintama is Gintama, damn it!;False;False;;;;1610392720;;False;{};giwz7oo;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwz7oo/;1610445056;9;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ikr tho, i agree. It's 1 show why TF are they splitting it.;False;False;;;;1610392747;;False;{};giwz9t5;True;t3_kv4s8z;False;True;t1_giwz7oo;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwz9t5/;1610445087;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Same, I'd put it at around my 10-15th spot. I just don't see how it could be considered better than stuff like Legend of the Galactic heroes.;False;False;;;;1610392790;;False;{};giwzdf3;True;t3_kv4s8z;False;False;t1_giwz79n;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwzdf3/;1610445140;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Ashteron;;;[];;;;text;t2_10ndkv;False;False;[];;">People mass voting 1 on the series incoming - -Meanwhile AoT being the first or at least near the top of the ranking before the first episode aired.";False;False;;;;1610392847;;False;{};giwzi18;False;t3_kv4s8z;False;False;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwzi18/;1610445207;27;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;Except the people who actually listen and go vote 10 are the ones who would honestly be rating it a 10. It's not like people are going to rate it a 10 if they don't think they deserve it, unless it's their really roundabout way of trying to knock FMA out of 1st place. Whereas voting a 1 pretty clearly means you're trying to bring the score down.;False;True;;comment score below threshold;;1610392877;;False;{};giwzkgo;False;t3_kv4s8z;False;True;t1_giwa8ke;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwzkgo/;1610445241;-17;True;False;anime;t5_2qh22;;0;[]; -[];;;BlueDragon101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Xcal1bur?status=7&order=4&orde";light;text;t2_11q4nx;False;False;[];;Guys c'mon it's been 5 episodes. This feels mildly premature.;False;False;;;;1610392937;;False;{};giwzpbi;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwzpbi/;1610445311;38;True;False;anime;t5_2qh22;;0;[]; -[];;;MAQS357;;;[];;;;text;t2_yske3;False;False;[];;And yet LOGH still after so long has a higher ratio of 1/10s than this final season....;False;False;;;;1610392949;;False;{};giwzq9t;False;t3_kv4s8z;False;True;t1_giwxlcb;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwzq9t/;1610445325;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ShinaMashir0;;;[];;;;text;t2_rhsd8;False;False;[];;Also the plot of SNK is way more complex than that, it's not even nazy vs jew lmao;False;False;;;;1610392961;;False;{};giwzr8w;False;t3_kv4s8z;False;True;t1_giwnv9l;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwzr8w/;1610445338;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thismise4u;;MAL;[];;http://myanimelist.net/animelist/xltra;dark;text;t2_iv5pr;False;False;[];;"or Steins;Gate, A Silent Voice, Vinland Saga, Code Geass, Fate/Zero, ect. I can keep going in the amount of shows that I enjoyed far more than FMA:B.";False;False;;;;1610392961;;False;{};giwzraa;False;t3_kv4s8z;False;True;t1_giwzdf3;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwzraa/;1610445338;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Every fan will give a high score to their favorite series, Horimiya and Re Zero are in the 8.7+ range on Mal, aot started with 9.05, so this 0.35 more makes the aot fandom worse than the series that I mentioned? Or they are all wrong and should not rate their favs that high with just 1 episode? - -I think it's totally fine, the problem is rating others 1 for reasons..";False;False;;;;1610393049;;False;{};giwzyej;False;t3_kv4s8z;False;False;t1_giwzi18;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/giwzyej/;1610445449;9;True;False;anime;t5_2qh22;;0;[]; -[];;;oops_i_made_a_typi;;;[];;;;text;t2_9ywbq;False;False;[];;It's GoT but the source material is actually there to back the adaptation;False;False;;;;1610393108;;False;{};gix038b;False;t3_kv4s8z;False;False;t1_giwis7f;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix038b/;1610445522;116;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;It is, but this is the inherent problem with Mal splitting up seasons. Everyone's thinking of it like it's ep 60-64 which is the right way of thinking about it.;False;False;;;;1610393113;;False;{};gix03mz;True;t3_kv4s8z;False;True;t1_giwzpbi;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix03mz/;1610445529;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ashteron;;;[];;;;text;t2_10ndkv;False;False;[];;I mean it was highly rated BEFORE the first episode even aired.;False;False;;;;1610393131;;False;{};gix050z;False;t3_kv4s8z;False;False;t1_giwzyej;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix050z/;1610445549;17;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ikr for sure, vinland, code geass and steins are all much better imo them fmab. I just hope vinland gets a s2 soon;False;False;;;;1610393157;;False;{};gix0750;True;t3_kv4s8z;False;True;t1_giwzraa;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix0750/;1610445583;2;True;False;anime;t5_2qh22;;0;[]; -[];;;brownguy6391;;;[];;;;text;t2_3et2u982;False;False;[];;I'm not gonna lie I do think it is overhyped just from my perspective. Like it's a perfectly executed ending but I don't think at any point the show takes any risks or unexpected turns. It's subjective tho;False;False;;;;1610393420;;False;{};gix0sey;False;t3_kv4s8z;False;False;t1_giwrc46;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix0sey/;1610445901;12;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;I love FMAB, it's my favorite series. But caring so much about the top #1 is just so crazy. We will never agree on the top #1 favorite, and that's okay. But don't put so much stock on the number #1 favorite.;False;False;;;;1610393460;;False;{};gix0vk1;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix0vk1/;1610445947;1;True;False;anime;t5_2qh22;;0;[]; -[];;;monnzzo;;;[];;;;text;t2_75e18yx0;False;False;[];;i’ve never seen gintama can you summarize what it’s about with no spoilers please i want to see if i would like it;False;False;;;;1610393461;;False;{};gix0vml;False;t3_kv4s8z;False;True;t1_giwq3ke;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix0vml/;1610445948;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Melaninkasa;;;[];;;;text;t2_fn682l0;False;False;[];;"Maybe not on this sub (I've seen it even there but hey) but fmab is generally a loved anime and hardly miss a best of all time conversation. - -You and anybody have all the right to not like it tho.";False;False;;;;1610393486;;False;{};gix0xnb;False;t3_kv4s8z;False;False;t1_giwyeow;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix0xnb/;1610445976;4;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"9 brigading is the most interesting for high rated shows because it has practically zero effect lol. - -Anyways this comment here explains how the algorithm likely works - -https://www.reddit.com/r/anime/comments/f2ourd/mal_address_changes_made_to_combat_illegitimate/fher9mj?utm_medium=android_app&utm_source=share&context=3";False;False;;;;1610393489;;False;{};gix0xw0;False;t3_kv4s8z;False;False;t1_giwyoxk;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix0xw0/;1610445978;6;True;False;anime;t5_2qh22;;0;[]; -[];;;f-69;;;[];;;;text;t2_128uj6aq;False;False;[];;? game of thrones was never even the best HBO show;False;False;;;;1610393503;;False;{};gix0z09;False;t3_kv4s8z;False;True;t1_giwis7f;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix0z09/;1610445995;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cuminaburger;;;[];;;;text;t2_6n7yv23g;False;False;[];;who care about MAL ratings... or imdb ratings;False;False;;;;1610393509;;False;{};gix0zhv;False;t3_kv4s8z;False;False;t1_giwco75;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix0zhv/;1610446002;80;True;False;anime;t5_2qh22;;0;[]; -[];;;Yubisaki_Milk_Tea;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/;light;text;t2_m2aw7;False;False;[];;What is generally the top 10 over in Japan?;False;False;;;;1610393571;;False;{};gix14jv;False;t3_kv4s8z;False;False;t1_giw2sk0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix14jv/;1610446076;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Blenji_;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Blenji;light;text;t2_q8m52bs;False;False;[];;AoT has more than a 3rd of the 1 ratings that FMAB has with about 1/12 of the total ratings. Definitely being bombarded with 1s at a record rate lol;False;False;;;;1610393584;;False;{};gix15lg;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix15lg/;1610446092;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chika2chi;;;[];;;;text;t2_4dkz2y8e;False;False;[];;">those people have read the manga and already know what’s coming - -imagine reviewing a movie based on the book it's adapting or on the screenplay. ->so the only outlying variable is the competence of MAPPA at adapting it. - -so the only outlaying variable is the anime itself. great insight. -> 5 episodes is more than enough time to assess that - -no it isn't lol. the anime is 16 episodes. that's like watching the first 40 mintues of a 2 hour movie and giving it a 10/10 because you assume the rest of it can't go bad. ->people can always change their rating. - -I doubt people spamming 10/10 because they're somehow emotionally invested in having this anime be highly regarded will be able to asses a drop in quality(save something quite horrible) or change their vote for that reason.";False;False;;;;1610393603;;False;{};gix176t;False;t3_kv4s8z;False;False;t1_giwvh8p;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix176t/;1610446115;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ivan0226;;;[];;;;text;t2_48wyjcgc;False;False;[];;"I still think Steins;Gate is one of the best fiction ever created, but aot deserves it";False;False;;;;1610393653;;False;{};gix1b7e;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix1b7e/;1610446171;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;You'd need to do research on that, but fmab isn't that high on those list. Here's a list I found https://www.sbs.com.au/popasia/blog/2017/05/04/100-best-anime-all-time-according-nhk;False;False;;;;1610393664;;False;{};gix1bz8;True;t3_kv4s8z;False;True;t1_gix14jv;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix1bz8/;1610446182;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Same, steins gate is amazing, I'd rather have it be 1;False;False;;;;1610393729;;False;{};gix1h77;True;t3_kv4s8z;False;True;t1_gix1b7e;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix1h77/;1610446260;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yubisaki_Milk_Tea;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/;light;text;t2_m2aw7;False;False;[];;Pffft, Tiger and Bunny at No.1. I like Tiger and Bunny. But let’s be real, you just plucked some random list that proved your points are waving it around like it’s gospel.;False;False;;;;1610393768;;False;{};gix1k9p;False;t3_kv4s8z;False;False;t1_gix1bz8;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix1k9p/;1610446306;5;True;False;anime;t5_2qh22;;0;[]; -[];;;genasugelan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Genasugelan;light;text;t2_15kv3y;False;False;[];;Yeah, I haven't rated it yet. My only exception in rating something before having it finished is when I catch up to releasing manga and after watching 100 episodes of Gintama.;False;False;;;;1610393785;;False;{};gix1ln7;False;t3_kv4s8z;False;True;t1_giwff55;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix1ln7/;1610446327;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;This is kinda what it hate about defending a show. I like FMAB and I stand by it but when I'm defending Aot it seems like I hate FMAB which it really don't. It's a show I've re-watched and I think is worth watching.;False;False;;;;1610393802;;False;{};gix1n25;True;t3_kv4s8z;False;False;t1_gix0xnb;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix1n25/;1610446349;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sir-Odin;;;[];;;;text;t2_909yanql;False;False;[];;People always say mal is shit along with its reviews but then when they got something to announce... Mal.;False;False;;;;1610393825;;False;{};gix1ox4;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix1ox4/;1610446375;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chika2chi;;;[];;;;text;t2_4dkz2y8e;False;False;[];;"> Uhh no? Positive brigading scores are also targeted. - -explain ->Anyways the people giving it 10s already will be the very first people to lower the score as soon it starts disappointing them. - -I highly doubt people spamming 10/10 on a product they have barely seen any of will somehow develop rational judgment down the line. -> If Berserk got a remake and the first episode seems solid, the fans of the manga will of course rate it a 10/10 because the material being covered is so damn good. - -yeah that would also be stupid ->If we went by how you expect stuff should be scored no one should rate any anime above an 8/10 regardless unless it's halfway through - -in a sane world people who rate a show should have seen at least most of it.";False;False;;;;1610393830;;False;{};gix1pb6;False;t3_kv4s8z;False;True;t1_giwxdch;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix1pb6/;1610446381;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;No that's NHK's which is the biggest anime TV channel in japan. They took a survey online for it. That's the real deal. I'm not even joking;False;False;;;;1610393870;;False;{};gix1sgf;True;t3_kv4s8z;False;True;t1_gix1k9p;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix1sgf/;1610446427;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610393878;;False;{};gix1t45;False;t3_kv4s8z;False;True;t1_giwuaug;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix1t45/;1610446436;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"They deleted the scores in the Interspecies case, but I think that was a special thing, it was public that Nux was trying to manipulate the score - -From the time I posted the screenshot to now more 116 users rated s4 1, and its already out of the position 2";False;False;;;;1610393926;;False;{};gix1ws1;False;t3_kv4s8z;False;False;t1_giwyczl;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix1ws1/;1610446490;24;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;Its likely a combination of many factors. Well liked source material, became pretty mainstream, great dub, easy to get into, a great overarching theme, a fantasy setting and also being a great show (I didn't personally like it much but I'll hopefully change my mind on a rewatch one day) on top of being a completed series.;False;False;;;;1610393943;;False;{};gix1y3j;False;t3_kv4s8z;False;False;t1_giwvmjp;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix1y3j/;1610446510;39;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;I respect you as a human man, you have my respect for being chill about it.;False;False;;;;1610393950;;False;{};gix1ynv;True;t3_kv4s8z;False;True;t1_gix0vk1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix1ynv/;1610446519;2;True;False;anime;t5_2qh22;;0;[]; -[];;;historybuff6969;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/historybuff6969;light;text;t2_81d7u2ay;False;False;[];;well, yeah, I assume that's also how attack on titan reached number two. The alternative is that people actually think attack on titan is good, and that's just unfathomable.;False;False;;;;1610393953;;False;{};gix1ywi;False;t3_kv4s8z;False;True;t1_giw3jdv;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix1ywi/;1610446522;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Laughing_Koffin;;;[];;;;text;t2_8335f3y8;False;False;[];;This mentality sucks;False;False;;;;1610393953;;False;{};gix1yxn;False;t3_kv4s8z;False;False;t1_giw2s5a;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix1yxn/;1610446522;489;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Of_Awesomeness;;;[];;;;text;t2_1mx70z4s;False;False;[];;Technically it had already aired in Japan by then, right?;False;False;;;;1610393969;;False;{};gix2041;False;t3_kv4s8z;False;False;t1_gix050z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix2041/;1610446540;5;True;False;anime;t5_2qh22;;0;[]; -[];;;BenN3T1700;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BenNet1700;light;text;t2_uklck;False;False;[];;I honestly get annoyed when I see series that are airing and are already spammed with ratings, I read the manga but I still would wait for the show to actually finish to give it a score.;False;False;;;;1610393972;;False;{};gix20f9;False;t3_kv4s8z;False;False;t1_giwbs46;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix20f9/;1610446544;7;True;False;anime;t5_2qh22;;0;[]; -[];;;genasugelan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Genasugelan;light;text;t2_15kv3y;False;False;[];;Yeah, after that blew over, I gave it a 9 because it's genuinely fucking fun and the studio went plus ultra with that adaptation.;False;False;;;;1610394016;;False;{};gix23x6;False;t3_kv4s8z;False;False;t1_giwb6wk;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix23x6/;1610446596;21;True;False;anime;t5_2qh22;;0;[]; -[];;;RavenWolf1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RavenWolf1;light;text;t2_9rao2;False;False;[];;I do care. It is important tool to find anime to watch. It not best of absolute perfect but it gives some pointers what are watchable and what aren't. Pretty sure all top 1000 anime are absolute blast to watch if it is your genre anime. Imagine if there were no ratings at all on any anime. God, it would be very hard to find anything good to watch.;False;True;;comment score below threshold;;1610394030;;False;{};gix24z3;False;t3_kv4s8z;False;True;t1_giwthxl;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix24z3/;1610446612;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;Yubisaki_Milk_Tea;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/;light;text;t2_m2aw7;False;False;[];;"I know who NHK are. But they are more than just an anime broadcast service. Anime is a mere fraction of what they do between primarily news + other stuff. it’s still a random list you plucked off the Internet. If the BBC polled for Top Anime and we’d probably see crap like ATLA or The Simpsons on Top 5. - -I’d much rather trust Anikore (Japanese MAL equivalent for dedicated anime fans) for this. And their ratings list don’t have FMAB at 19th - which is why I asked you where you were getting shit from.";False;False;;;;1610394053;;False;{};gix26u0;False;t3_kv4s8z;False;False;t1_gix1sgf;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix26u0/;1610446639;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Melaninkasa;;;[];;;;text;t2_fn682l0;False;False;[];;"When I say not like it I meant more so that if you think it's overrated you have the right too. - -But I feel like saying you don't see people talking about it as good like that is dishonest imo, cause people definitely do.";False;False;;;;1610394120;;False;{};gix2c5u;False;t3_kv4s8z;False;False;t1_gix1n25;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix2c5u/;1610446717;4;True;False;anime;t5_2qh22;;0;[]; -[];;;dunnoman6400;;;[];;;;text;t2_3udmexfw;False;False;[];;Insanely well written plot that intertwines elements from real life to create a show horrific yet beautiful, but that doesn't matter cuz a certain fanbase with a superiority complex is gonna review bomb it;False;False;;;;1610394138;;1610394850.0;{};gix2dje;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix2dje/;1610446736;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;">explain - -Just judging solely through stats. If negative brigading was only targeted, AOT's current score would be 9.27~. - -MAL algorithm obviously detected heavy brigading hence bringing the score down. Roughly 25% of the total 10/10s given would have to be ignored to get the current score of negative brigading was also targeted";False;False;;;;1610394155;;False;{};gix2ev8;False;t3_kv4s8z;False;True;t1_gix1pb6;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix2ev8/;1610446755;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mike9184;;;[];;;;text;t2_ozwt8;False;False;[];;Regardless of the series, it's always been so damn dumb to me that people review and give a score to a series before it's even over. Nothing but pure fanboyism that may turn a lot of people off from a series before even giving it a chance.;False;False;;;;1610394166;;False;{};gix2fsm;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix2fsm/;1610446769;18;True;False;anime;t5_2qh22;;0;[]; -[];;;RavenWolf1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RavenWolf1;light;text;t2_9rao2;False;False;[];;How is it dead site when it is the biggest anime database site? It has most users etc.;False;False;;;;1610394173;;False;{};gix2gcb;False;t3_kv4s8z;False;False;t1_giwqndr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix2gcb/;1610446777;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Dinoswarleaf;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Dinoswarleaf;light;text;t2_eo4sf;False;False;[];;I predicted before the season started when learning where it will end that it'll end up at #1 on MAL. If the CGI in fights is pretty decent like episode 1 I'll stick by my prediction (esp since there's pretty ugly cgi in FMA:B);False;False;;;;1610394174;;False;{};gix2gg1;False;t3_kv4s8z;False;False;t1_giwbjr1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix2gg1/;1610446779;12;True;False;anime;t5_2qh22;;0;[]; -[];;;genasugelan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Genasugelan;light;text;t2_15kv3y;False;False;[];;"Shorter things are always easier to rate. I really had a dilemma when I rated Jojo since part 1 and 2 are in the same season and I think part 1 was actually boring but part 2 is my absolute favourite, so I had to do a compromise. - -I can only imagine how hard it is to rate long ongoing anime like Black Clover since I heard the beginning sucked but got continually better and better.";False;False;;;;1610394264;;False;{};gix2nju;False;t3_kv4s8z;False;True;t1_giwibg8;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix2nju/;1610446883;1;True;False;anime;t5_2qh22;;0;[]; -[];;;genasugelan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Genasugelan;light;text;t2_15kv3y;False;False;[];;Haven't dropped it after Benizakura. The arcs just keep fucking getting better and better. How the hell are they able to pull all that shit?;False;False;;;;1610394344;;False;{};gix2ty6;False;t3_kv4s8z;False;False;t1_giwnxwz;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix2ty6/;1610446981;14;True;False;anime;t5_2qh22;;0;[]; -[];;;mike9184;;;[];;;;text;t2_ozwt8;False;False;[];;Giving an opinion on a show and handing out a score on an unfinished series are two whole different things. What are people even trying to imply? That the current 5 episodes of AoT are better than the whole series of Hunter X Hunter? That's just ridiculous.;False;False;;;;1610394365;;False;{};gix2vli;False;t3_kv4s8z;False;False;t1_giwtnp3;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix2vli/;1610447005;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Coolstorylucas;;;[];;;;text;t2_6yxoc;False;False;[];;Doubt it, that only applies to interspecies reviewer.;False;False;;;;1610394387;;False;{};gix2xc2;False;t3_kv4s8z;False;False;t1_giwch86;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix2xc2/;1610447032;207;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;Shit, I thought they actually improved it. This just proves, once again, that MAL scores should be taken as rough suggestions and not definitive rankings. It's best to look at each show with a +/-1.5 Score margin of error I think.;False;False;;;;1610394401;;False;{};gix2ydm;False;t3_kv4s8z;False;False;t1_gix1ws1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix2ydm/;1610447049;20;True;False;anime;t5_2qh22;;0;[]; -[];;;genasugelan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Genasugelan;light;text;t2_15kv3y;False;False;[];;Can confirm. Got hyped to heavens by manga readers, the episode still delivered and even exceeded my expectations. The hype train was fucking real.;False;False;;;;1610394410;;False;{};gix2z1r;False;t3_kv4s8z;False;False;t1_giwid7f;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix2z1r/;1610447059;31;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Let's be real it's virtually impossible to seperate a sequal from the rest of the series. People aren't saying ep 1-5 are better than hxh. They're saying ep 60-64 ar better then hxh. A lot of the stuff before is influencing that, and how would it not ? It's the same show. Mal needs to stop slitting sequals;False;True;;comment score below threshold;;1610394479;;False;{};gix34je;True;t3_kv4s8z;False;True;t1_gix2vli;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix34je/;1610447140;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;Having only 50k total votes and being the MAL users favourite target of abuse does take its toll. Also one of the few anime having a higher RedditAnimeList score than its MAL score;False;False;;;;1610394490;;False;{};gix35f8;False;t3_kv4s8z;False;True;t1_giwzq9t;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix35f8/;1610447155;3;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;"Well its same for the opposite people spamming 1/10 score to bring down the score as well. - -But if they were to not rate series until its over, series like one piece would not have any ratings then.";False;False;;;;1610394492;;False;{};gix35kw;False;t3_kv4s8z;False;True;t1_gix2fsm;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix35kw/;1610447156;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Crackborn;;;[];;;;text;t2_nt21d;False;False;[];;"Yes. - -3 chapters remain";False;False;;;;1610394508;;False;{};gix36sr;False;t3_kv4s8z;False;True;t1_gix1t45;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix36sr/;1610447174;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OK_Computer_1997;;;[];;;;text;t2_93pqabhr;False;False;[];;Never have I seen a community that cares more about what place on a website their show/movie/game/album is ranked than the anime community.;False;False;;;;1610394521;;False;{};gix37uz;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix37uz/;1610447190;10;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Except it's just dumb to split up sequals, the series is 1 and people will rate every part as if they're rating the whole series. You can seperate it;False;False;;;;1610394561;;False;{};gix3b4l;True;t3_kv4s8z;False;True;t1_gix2fsm;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix3b4l/;1610447239;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;It was announced officially it ends on Chapter 139 (3 chapters from now) which will release on April 9th. It'd been rumoured for months and was confirmed last week;False;False;;;;1610394580;;False;{};gix3cp4;False;t3_kv4s8z;False;True;t1_gix1t45;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix3cp4/;1610447264;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OneMoreDuncanIdaho;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/a_trisolaran;light;text;t2_i31pk;False;False;[];;A Silent Voice fans talk about Your Name more than Your Name fans do;False;False;;;;1610394593;;False;{};gix3don;False;t3_kv4s8z;False;False;t1_giwttr3;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix3don/;1610447278;73;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Honestly so true, I wonder who the fan base you're referring to is cough cough Fmab cough cough;False;False;;;;1610394614;;False;{};gix3ffm;True;t3_kv4s8z;False;True;t1_gix2dje;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix3ffm/;1610447304;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;That doesn’t matter, it’s gonna be number 1 at least for a brief bit;False;False;;;;1610394660;;False;{};gix3j0d;False;t3_kv4s8z;False;False;t1_giwvj0u;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix3j0d/;1610447356;7;True;False;anime;t5_2qh22;;0;[]; -[];;;zamasu2020;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/zamasu2020;light;text;t2_4nzu0ubo;False;False;[];;thanks.;False;False;;;;1610394684;;False;{};gix3kwi;False;t3_kv4s8z;False;True;t1_gix3cp4;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix3kwi/;1610447385;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Let's see 🤷;False;False;;;;1610394702;;False;{};gix3may;True;t3_kv4s8z;False;True;t1_gix3j0d;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix3may/;1610447407;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;It was higher rated because the fanbase was huge enough that enough people voted early to give it a score before airing. Also before the episode dropped with subs a lot of us were watching the first episode through NHK livestream on twitch or whatever website possible;False;False;;;;1610394707;;False;{};gix3mrd;False;t3_kv4s8z;False;False;t1_gix050z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix3mrd/;1610447414;9;True;False;anime;t5_2qh22;;0;[]; -[];;;chika2chi;;;[];;;;text;t2_4dkz2y8e;False;False;[];;I mean did they announce that they would be targeting brigading? if so how? and what kind of algorithm are they using in the first place?;False;False;;;;1610394815;;False;{};gix3v8w;False;t3_kv4s8z;False;True;t1_gix2ev8;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix3v8w/;1610447540;1;True;False;anime;t5_2qh22;;0;[]; -[];;;General_Ordek;;;[];;;;text;t2_9mfe4f74;False;False;[];;No;False;False;;;;1610394887;;False;{};gix4129;False;t3_kv4s8z;False;True;t1_gix2041;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix4129/;1610447631;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Webotama;;;[];;;;text;t2_om62j;False;False;[];;MAL is just Rotten Tomatoes for Anime.;False;False;;;;1610394999;;False;{};gix4a4g;False;t3_kv4s8z;False;True;t1_giwbs46;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix4a4g/;1610447766;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;"I rather just not vote, when it is such a shitfest anyway. Whenever I hear that something is first highly rated and then ""later considered overrated"" I just know ratings are meaningless. Your Name is not my cup of tea, but I would never think it's good that there is now a ""trend"" to score it lower than before. - -Either you like something or don't, whatever others think about it should be irrelevant or your opinion is weak.";False;False;;;;1610395003;;False;{};gix4ai0;False;t3_kv4s8z;False;True;t1_giwuuhu;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix4ai0/;1610447772;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Exotic_Grade;;;[];;;;text;t2_7fp75p5q;False;False;[];;Even if trash taste confirmed that doesn't make it garbage. Everyone has their opinion on solo leveling.;False;False;;;;1610395051;;False;{};gix4e9u;False;t3_kv4s8z;False;False;t1_giwdbz2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix4e9u/;1610447829;0;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;FMAB and Evangelion fans sure as hell do;False;False;;;;1610395064;;False;{};gix4fbf;False;t3_kv4s8z;False;True;t1_giw9hbo;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix4fbf/;1610447846;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610395071;;1610395636.0;{};gix4fvu;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix4fvu/;1610447855;1;True;False;anime;t5_2qh22;;0;[]; -[];;;seninn;;MAL;[];;http://myanimelist.net/animelist/Senninn0;dark;text;t2_fw8p2;False;False;[];;When the Virgin Lizard turned into a wizard in the final episode, I fucking clapped! It had no right to be as good as it was!;False;False;;;;1610395097;;False;{};gix4hx2;False;t3_kv4s8z;False;False;t1_gix23x6;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix4hx2/;1610447886;13;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Welcome to the circle jerk;False;False;;;;1610395130;;False;{};gix4kie;True;t3_kv4s8z;False;True;t1_gix4fvu;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix4kie/;1610447928;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Coolstorylucas;;;[];;;;text;t2_6yxoc;False;False;[];;Tbf s3p2 is better than the final season from what I've read, currently up to date. Maybe wit studio is better at making anime than Izayama is at writing Manga since I only picked it up after S3p2. If this is how his manga has always been written and wit studio are the one's who take it to the next level maybe current season could beat s3p2 if mappa can make it better than wit. Mappa was able to make me like Gabi even though I hated her in the manga, and still currently hate her in the manga.;False;False;;;;1610395144;;False;{};gix4lm6;False;t3_kv4s8z;False;True;t1_giwv07x;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix4lm6/;1610447947;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ok ya, it's not garbage. It's decent;False;False;;;;1610395153;;False;{};gix4mc9;True;t3_kv4s8z;False;True;t1_gix4e9u;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix4mc9/;1610447957;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"This is the thread where they announced the update. - -https://myanimelist.net/forum/?topicid=1824703 - ->The only change visible to users will be the weighted score. All other statistics will include rating troll counts (to make it more difficult to break the system). Furthermore, entries with insufficient votes will display N/A to dissuade manipulation - - -They don't address the methods specifically but this comment here tries to assume what they might be doing - -https://www.reddit.com/r/anime/comments/f2ourd/mal_address_changes_made_to_combat_illegitimate/fher9mj?utm_medium=android_app&utm_source=share&context=3";False;False;;;;1610395174;;False;{};gix4nz9;False;t3_kv4s8z;False;True;t1_gix3v8w;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix4nz9/;1610447981;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fredmander0;;;[];;;;text;t2_153uaq;False;False;[];;You are so right;False;False;;;;1610395184;;False;{};gix4os4;False;t3_kv4s8z;False;False;t1_giwg5d8;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix4os4/;1610447993;5;True;False;anime;t5_2qh22;;0;[]; -[];;;OK_Computer_1997;;;[];;;;text;t2_93pqabhr;False;False;[];;I'm only up to episode 30 myself but FMAB seems to have very consistent and smooth animation and drawing going for it which is an essential component of evaluating a complete production, whereas AOT has struggled with rushed/unfinished/collapsing production in every season before 4 with the animation and art style degrading over the course of the WIT days. Dunno about others but for me that's a big deal in why FMAB is rated so highly.;False;False;;;;1610395209;;False;{};gix4quo;False;t3_kv4s8z;False;False;t1_gix1y3j;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix4quo/;1610448024;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;"Or Reddit karma rankings. - -The only popularity poll I've respected is the CSM reader poll that put Kobeni's fucking car ahead of her. Actually lighthearted instead of whatever this thread is about.";False;False;;;;1610395247;;False;{};gix4ts7;False;t3_kv4s8z;False;False;t1_giw9hbo;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix4ts7/;1610448067;83;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;a show that legit deserves high ratings;False;False;;;;1610395268;;False;{};gix4veo;False;t3_kv4s8z;False;False;t1_gix2xc2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix4veo/;1610448092;43;True;False;anime;t5_2qh22;;0;[]; -[];;;Kinthebar;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_4vh49cvs;False;False;[];;And then we might just get Lord Nuxanor to help fix that...;False;False;;;;1610395412;;False;{};gix56i2;False;t3_kv4s8z;False;False;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix56i2/;1610448264;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610395440;;False;{};gix58s9;False;t3_kv4s8z;False;True;t1_giwxpvd;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix58s9/;1610448299;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OK_Computer_1997;;;[];;;;text;t2_93pqabhr;False;False;[];;You can have an opinion, but you sure shouldn't be rating it.;False;False;;;;1610395525;;False;{};gix5fgt;False;t3_kv4s8z;False;False;t1_giwtnp3;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix5fgt/;1610448401;11;True;False;anime;t5_2qh22;;0;[]; -[];;;OK_Computer_1997;;;[];;;;text;t2_93pqabhr;False;False;[];;Not to mention movies in the same list as series. Just doesn't make sense.;False;False;;;;1610395571;;False;{};gix5j0s;False;t3_kv4s8z;False;False;t1_giwwb7x;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix5j0s/;1610448452;51;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;"The real war was in the thread all along. - - -Will be interesting to see how it goes with anti-brigading system MAL has in place for the 10's and the 1's spamming";False;False;;;;1610395580;;False;{};gix5jop;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix5jop/;1610448463;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YgJb1691;;;[];;;;text;t2_k8dbo5z;False;False;[];;The content yet to come in the anime is the reason I gave the manga a 10 in the first place, before I had it an 8.;False;False;;;;1610395613;;False;{};gix5m9r;False;t3_kv4s8z;False;False;t1_giwpmue;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix5m9r/;1610448503;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ToeAny5031;;;[];;;;text;t2_7n9tiyl4;False;False;[];;"This is honestly the sweetest thing I've been told today. Too many people place a shows value based on how popular it is. If that was the end all for every show, then many wouldn't be as good as they are. - -Too much value is placed on how popular a show is rather than how much effort and love was put into it.";False;False;;;;1610395615;;False;{};gix5mey;False;t3_kv4s8z;False;True;t1_giwyl6h;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix5mey/;1610448505;2;True;False;anime;t5_2qh22;;0;[]; -[];;;O-Mesmerine;;;[];;;;text;t2_1473vw;False;False;[];;people need to remember there is a huge outpouring of positive scores given when a show / film series is concluded well (the last harry potter film is by far the highest rated and by a *huge* margin has the most votes). AoT is about to go down as one of the best shows of all time, and if the trajectory of the show is anything to go by, is about to have one of the best conclusions of all time. Make no mistake, when all is said and done, AoT is taking the crown and keeping it;False;False;;;;1610395622;;1610396348.0;{};gix5myo;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix5myo/;1610448513;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610395624;;False;{};gix5n4m;False;t3_kv4s8z;False;True;t1_giwt529;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix5n4m/;1610448515;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jvene1;;;[];;;;text;t2_agm4j;False;False;[];;And it's not like you can't update your score as the anime progresses. Spite voting is so pathetic and weird lmao. Imagine having so much of your identity tied up in an anime that you go out of your way to create accounts and give 1/10s to another show just because it's getting close to your beloved show.;False;False;;;;1610395651;;False;{};gix5p70;False;t3_kv4s8z;False;False;t1_giwt37d;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix5p70/;1610448547;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;"What bothered me the most about FMA:B was cartoony/joke villains that have either no depth or a single-minded motivation that can be dismantled by the protagonist making a speech that ""hits home"". Talk no Jutsu has no place in any immersive story unless there are parallels with the character delivering that speech. But I'm biased and dislike a lot of shit like the ""talking is a free action"" trope that this particular anime also incorporates quite happily into its action scenes. A movie version of that same trope is usually the villain making those speeches while trying to kill the protagonist, giving them time to recover or figure out a way to defeat said villain. I guess you can argue these are just stylistic choices that can't be considered flaws.";False;True;;comment score below threshold;;1610395657;;False;{};gix5pns;False;t3_kv4s8z;False;True;t1_giwnv9l;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix5pns/;1610448554;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;iMmthYT;;;[];;;;text;t2_5vzgbsy5;False;False;[];;Some FMAB fans did the same downvote thing when HxH/gintama/death note almost got no 1;False;False;;;;1610395672;;False;{};gix5qtg;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix5qtg/;1610448572;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;It's called build up, not every chapter is killing lmao;False;False;;;;1610395737;;False;{};gix5vux;False;t3_kv4s8z;False;False;t1_giwxqw4;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix5vux/;1610448646;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;One of the reasons why I refuse to be part of a particular fandom. I like to discuss anime as a whole and not obsess about meaningless things such as fandom wars and being #1 on MAL.;False;False;;;;1610395770;;1610396116.0;{};gix5yg6;False;t3_kv4s8z;False;False;t1_giwp4ev;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix5yg6/;1610448685;5;True;False;anime;t5_2qh22;;0;[]; -[];;;THExDANKxKNIGHT;;;[];;;;text;t2_inlbb;False;False;[];;I genuinely have no interest anymore. Too much jumping around and flashbacks. I can't stay interested when characters and setting change every 3 episodes.;False;False;;;;1610395777;;False;{};gix5z09;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix5z09/;1610448692;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"S1 production is the major one which was glaringly obvious when it was airing. - -Most people including me since it aired have watched the BD version since depending on the site used which had over 3000 corrections iirc so S1 would most likely be a much better experience for those who watched it somewhere else on the BD vers after it aired rather than while it was airing - -S2 consistently imo had a solid level of production and looked incredoble. - -S3 was struggling but WIT's art was why I never really gave too much attention to the animation as long as the vital moments were animated well which they usually were. - -Then S3P2 despite having what was a hellish production, they managed to execute it okay enough for the slightly less important episodes but pulled off the most important episodes perfectly imo both visually and narratively. (Perfect Game, Hero, Midnight Sun, That Day and Ocean) - -S4 so far has been the strangest one yet, despite seemingly having a hellish production schedule, the staff list so far has not reflected it. It looks consistent yet personally some of the choices such as the blur really irks me.";False;False;;;;1610395810;;False;{};gix61kd;False;t3_kv4s8z;False;True;t1_gix4quo;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix61kd/;1610448730;4;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;"Why are people using MAL over AniList? - -AniList is so much better.";False;False;;;;1610395830;;False;{};gix632h;False;t3_kv4s8z;False;True;t1_giwy617;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix632h/;1610448752;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;There's always gonna be those people, you can't generalize the entire fandom with just them, other fandoms have mass fanboys as well, personally, I rated the first episode 8, I think pretty accurate for the action packed episode it was;False;False;;;;1610395901;;False;{};gix68h6;False;t3_kv4s8z;False;True;t1_giw9upp;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix68h6/;1610448832;3;True;False;anime;t5_2qh22;;0;[]; -[];;;gangrainette;;MAL;[];;https://myanimelist.net/profile/bouletos;dark;text;t2_vlti1;False;False;[];;"> I've read the **first route** - -And yeah I think that Saber and Shirou are boring in it.";False;False;;;;1610395923;;False;{};gix6a8e;False;t3_kv4sjc;False;True;t1_giwvtur;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/gix6a8e/;1610448858;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;THExDANKxKNIGHT;;;[];;;;text;t2_inlbb;False;False;[];;It's one of the few anime im ok with them taking a slightly different route than the manga with. I also love the action, they do it so well while still maintaining that feeling that it's not entirely serious.;False;False;;;;1610395936;;False;{};gix6b6t;False;t3_kv4s8z;False;False;t1_gix2ty6;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix6b6t/;1610448872;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;I mean it is a crown jewel in its genre, right? 10/10 is not out of the question.;False;False;;;;1610395952;;False;{};gix6ch1;False;t3_kv4s8z;False;False;t1_giwb6wk;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix6ch1/;1610448893;10;True;False;anime;t5_2qh22;;0;[]; -[];;;brbee;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Riot99;light;text;t2_kgono;False;False;[];;"Why is it always FMAB with you people? I'm pretty sure that not even 50% of people that are giving 1 star are people that enjoyed FMAB. It can also be S;G fans, HxH fans etc. I don't know where you got this idea that only FMAB fans are doing this";False;False;;;;1610395982;;False;{};gix6eun;False;t3_kv4s8z;False;False;t1_giw9is4;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix6eun/;1610448928;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;">when it’s a problem that has been dealt with - -Can really tell it’s dealt with when it has 3700 1 ratings already yet something like hxh that’s been out for almost 10 years has 4200...";False;False;;;;1610395991;;False;{};gix6fjl;False;t3_kv4s8z;False;False;t1_giwx4e3;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix6fjl/;1610448938;6;True;False;anime;t5_2qh22;;0;[]; -[];;;WeNTuS;;;[];;;;text;t2_btiic;False;False;[];;I wonder where FMAB fans mobilise? Do they have some kind of discord or twitter chat groups where they plan what to downvote lol;False;False;;;;1610396001;;False;{};gix6gcl;False;t3_kv4s8z;False;False;t1_giw2s5a;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix6gcl/;1610448950;96;True;False;anime;t5_2qh22;;0;[]; -[];;;Mikeng_0106;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MichaelK0106;light;text;t2_5ktn94g8;False;False;[];;"Again, it’s not fair for S;G and FMA:B. AoT get multiple seasons, which means the audiences become less diverse (mostly fans stays for multiple seasons), the total number of ratings are lower and the production quality stays high due to companies having breaks each seasons (even switching companies). S;G and FMA:B only have one season (or the first season ended up on top), the viewership is bigger in quantity and more diverse and the production team only have one take on producing the anime.";False;False;;;;1610396015;;1610404289.0;{};gix6hgz;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix6hgz/;1610448967;38;True;False;anime;t5_2qh22;;0;[]; -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;to each their own;False;False;;;;1610396020;;False;{};gix6ht9;False;t3_kv4s8z;False;False;t1_giwvl4d;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix6ht9/;1610448972;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;"People just love superlatives and those who don't, are less motivated to give their ""8/10"" opinions online.";False;False;;;;1610396042;;False;{};gix6jmx;False;t3_kv4s8z;False;False;t1_giw9upp;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix6jmx/;1610449000;4;True;False;anime;t5_2qh22;;0;[]; -[];;;PeaceFShit;;;[];;;;text;t2_53jwmeg4;False;False;[];;"All the way to the top!! -Sincerely, a die hard One Piece fan.";False;False;;;;1610396068;;False;{};gix6loj;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix6loj/;1610449030;2;True;False;anime;t5_2qh22;;0;[]; -[];;;StanLay281;;;[];;;;text;t2_x5qvm;False;False;[];;I love FMAB too but if this last season of AoT is executed well then I have no problem putting AoT in the GOAT category alongside it;False;False;;;;1610396088;;False;{};gix6nbi;False;t3_kv4s8z;False;False;t1_giw9is4;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix6nbi/;1610449054;21;True;False;anime;t5_2qh22;;0;[]; -[];;;rvfharrier;;;[];;;;text;t2_12b8lz;False;True;[];;AoT has learned from GoT's mistake, ending at Season 4.;False;False;;;;1610396173;;False;{};gix6txb;False;t3_kv4s8z;False;True;t1_giwpmue;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix6txb/;1610449153;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OK_Computer_1997;;;[];;;;text;t2_93pqabhr;False;False;[];;What I don't understand is why FMAB was treated so well (completed production ahead of time, by one of the top studios) while AOT gets rushed every season and bounced around studios. SnK is one of the top selling mangas ever and has outsold FMA, you would think it wouldn't get such a short stick.;False;False;;;;1610396182;;False;{};gix6uo3;False;t3_kv4s8z;False;True;t1_gix61kd;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix6uo3/;1610449164;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hadouukken;;;[];;;;text;t2_3fopu84;False;False;[];;"and mind you the anime has only 5 episodes adapted so far 💀 - -JUST WAIT TILL CHAPTERS 125 ish-136 GET ANIMATED, it will easily become #1";False;False;;;;1610396183;;False;{};gix6urt;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix6urt/;1610449167;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FCT77;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/FCT;light;text;t2_16txdd;False;False;[];;"> Besides, they also express quite different ideological viewpoints in many respects, so people may simply agree with one or the other and like them more or less as a consequence. - -Could you explain what you mean by this? I think both shows are very similar in what they are trying to say.";False;False;;;;1610396192;;False;{};gix6vga;False;t3_kv4s8z;False;False;t1_giwgsjj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix6vga/;1610449177;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shivam-ind;;;[];;;;text;t2_10bd8dkn;False;False;[];;Ahhh yes ofcourse and the fanbase of a series that will score bomb any series which comes near it, is such an amazing community which respects other people's opinion and not at all toxic.;False;False;;;;1610396227;;False;{};gix6y85;False;t3_kv4s8z;False;True;t1_giwl0m6;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix6y85/;1610449219;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WeNTuS;;;[];;;;text;t2_btiic;False;False;[];;why FMAB fans rate this anime so high a decade later? I mean, when I watched it I thought it's GOAT but since then shitton of great anime came out. I no longer feel FMAB hold the water to other titles.;False;False;;;;1610396229;;False;{};gix6ydg;False;t3_kv4s8z;False;False;t1_giwyeuh;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix6ydg/;1610449221;42;True;False;anime;t5_2qh22;;0;[]; -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;Same sound director as other seasons....;False;False;;;;1610396245;;False;{};gix6znj;False;t3_kv4s8z;False;True;t1_giwi29x;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix6znj/;1610449241;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HamstersAreReal;;MAL;[];;https://myanimelist.net/profile/StudentOfTheGame;dark;text;t2_j0kft;False;False;[];;"Your Name have been brigaded by Silent Voice Movie fans in all kinds of way since 2016. - -Every single thread that Your Name is mentioned on any forum. Someone HAS to mention Silent Voice and they usually imply that it's better. It's hilarious to me. - -I've been a big fan of Silent Voice since I first read the manga 6+ years ago, but I've grown disgusted with the fan base since the movie release. The immaturity is unreal.";False;False;;;;1610396265;;1610396542.0;{};gix71a4;False;t3_kv4s8z;False;False;t1_giwim27;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix71a4/;1610449267;40;True;False;anime;t5_2qh22;;0;[]; -[];;;necrohellion;;MAL;[];;http://myanimelist.net/profile/Necrohellion;dark;text;t2_jbz1h;False;False;[];;Right here, I think Steins Gate is aggressively mediocre and the fact it is held up as a pinnacle of anime disappoints me;False;False;;;;1610396283;;False;{};gix72ov;False;t3_kv4s8z;False;True;t1_giwtlbw;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix72ov/;1610449288;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;Nope, a mix of 2d and CGI, CGI for motions and 2d for close-ups and transformations, you can see in the preview if you see carefully;False;False;;;;1610396320;;False;{};gix75lz;False;t3_kv4s8z;False;True;t1_giwtm0l;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix75lz/;1610449331;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sylinmino;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/SylinMino;light;text;t2_60gxk;False;False;[];;"The thing is, I think Attack on Titan's world is really cool, and it's got a great sense of conflict and thrill to it. And it was especially strong for me when much of the world was still full of mystery. When it started out, it also had a real sense of character vulnerability--like main characters can die at any time by making even a simple mistake. - -Over time, the show started focusing less on the world and more on the character cast--who always struck me as very bland compared to other shows I love. Mysteries got unraveled and the world bathed in full limelight is not quite as interesting to me. And [spoiler](/s ""staple characters almost completely stopped dying. After Season 1, it took another 30 or so episodes for a real staple character to die. And the characters started running into scenarios where they were newbies fighting against people way more experienced and ruthless than them...and would win with zero casualties. The fight in the crystal caverns was the most egregious example of this--how the hell did they beat all of Kenny's squad with ZERO casualties?""). The villains are now still cool like they were originally...but they're not as *scary* as a result. The show's moved onto more epic moments that bring a lot of anticipated ideas full circle, but it's lost some of the edge and allure that the original season had for me. - -So yeah, I still really prefer the first season. I have it as a 9/10 on my MAL list, with the following seasons as 8, 7, and 8, respectively. Still have S4 unscored.";False;False;;;;1610396351;;False;{};gix781x;False;t3_kv4s8z;False;False;t1_giwym4h;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix781x/;1610449366;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;It's actually true to the source work so this is the actual art style :);False;False;;;;1610396353;;False;{};gix787q;False;t3_kv4s8z;False;True;t1_giwux53;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix787q/;1610449369;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SHIIZAAAAAAAA;;;[];;;;text;t2_3q9y01p1;False;False;[];;In other words, Breaking Bad.;False;False;;;;1610396382;;False;{};gix7aln;False;t3_kv4s8z;False;False;t1_giwis7f;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix7aln/;1610449406;17;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;"Oh great, fans are spamming 10/10s after 5 episodes in a season. - -How this better than spamming 1/10 is beyond me. The anime es exceptionally good, but these people are just mindless fanboys.";False;False;;;;1610396437;;False;{};gix7eww;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix7eww/;1610449473;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AccursedBear;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AccursedBear;light;text;t2_16nby8;False;False;[];;"Wasn't Owarimonogatari part 2 like, WAY up at the top when it came out? It stayed there for a while but eventually came back down. Iirc the same happened with some Gintama seasons and Your Name. - -I don't think FMAB is *that* good, but it's about the least divisive anime that exists. That's why it stays on top long term.";False;False;;;;1610396446;;False;{};gix7fol;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix7fol/;1610449486;5;True;False;anime;t5_2qh22;;0;[]; -[];;;TakenNameButOk;;;[];;;;text;t2_40eaiyx0;False;False;[];;True;False;False;;;;1610396479;;False;{};gix7iat;False;t3_kv4s8z;False;True;t1_giwtm1i;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix7iat/;1610449524;2;True;False;anime;t5_2qh22;;0;[]; -[];;;shivam-ind;;;[];;;;text;t2_10bd8dkn;False;False;[];;I find it so funny that you are fuming so much and without even watching the series you are calling it trash. Truly the boomer of anime community;False;False;;;;1610396486;;False;{};gix7isl;False;t3_kv4s8z;False;True;t1_giwji5m;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix7isl/;1610449532;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Toasted_FlapJacks;;;[];;;;text;t2_a9ikm;False;False;[];;"Yeah, people would rather have their favorite series perceived as the best (so they rate 1's on all other competitors) vs it actually being the consensus best with balanced voting. - -Oh well.";False;False;;;;1610396524;;False;{};gix7lr0;False;t3_kv4s8z;False;False;t1_gix1yxn;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix7lr0/;1610449577;412;True;False;anime;t5_2qh22;;0;[]; -[];;;fechan;;;[];;;;text;t2_o95at;False;False;[];;"> It absolutely should, it’s a much better show... - -Citation needed. - -Seriously though, people are forgetting that FMA:B is a tremendous masterpiece. It's my personal 3rd/4th highest rated anime. As to SnK, I'm extremely curious how the season will pan out, but before I see it, I won't have any expectations that it will leave the same impression as FMA:B. It has a good chance though. - -On a kinda related note, I think it sucks that every season and every season's part gets their own rank in MAL. The icon of this ""Final Season"" also contains spoilers, so does the description (obviously). If a beginner accidentally opens them, that would really suck.";False;False;;;;1610396525;;False;{};gix7ls6;False;t3_kv4s8z;False;False;t1_giwemmi;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix7ls6/;1610449577;51;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;"> Makes sense tho, the quality of Aot is miles ahead of anything FMAB could ever hope to achieve - -Now you are just sounding like a drooling fanboy.";False;False;;;;1610396574;;False;{};gix7pr1;False;t3_kv4s8z;False;False;t1_giwpa9q;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix7pr1/;1610449636;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Let's see 🤷;False;False;;;;1610396606;;False;{};gix7sag;True;t3_kv4s8z;False;True;t1_gix5jop;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix7sag/;1610449675;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Nah you should be rating it;False;True;;comment score below threshold;;1610396626;;False;{};gix7txd;True;t3_kv4s8z;False;True;t1_gix5fgt;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix7txd/;1610449699;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;killing what?;False;False;;;;1610396643;;False;{};gix7v97;False;t3_kv4s8z;False;True;t1_gix5vux;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix7v97/;1610449719;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"I still find MAL's aesthetic more appealing tbh. Though I have both Anilist doesn't feel like a list website to me but that's just personal preference. - -Anyways random thing in Anilist which makes me incredibly salty and petty is the favourite characters list. Holy shit are most old characters shafted (Kamina not even top 100? due to how much heavier recency bias is on the site and even the characters near the top make me salty. (Ichigo from DITF one place below Edward)";False;False;;;;1610396769;;False;{};gix857n;False;t3_kv4s8z;False;False;t1_gix632h;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix857n/;1610449873;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Castielstablet;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TaBleT;light;text;t2_146yxa;False;False;[];;It never took the number 1 spot, only the number 2. After that MAL admins took action.;False;False;;;;1610396796;;False;{};gix87dq;False;t3_kv4s8z;False;True;t1_giw39h7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix87dq/;1610449904;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheBlazingTorchic_;;;[];;;;text;t2_u881g79;False;False;[];;I don’t really like Attack on Titan, but it’s plain childish to do what the FMAB stans are doing. It’s a good show, and it desverves praise. Don’t let your opinion be swayed by people hating on it just because it’s popular, or people giving it a 10 because of hype and peer pressure.;False;False;;;;1610396799;;False;{};gix87mk;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix87mk/;1610449908;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WeNTuS;;;[];;;;text;t2_btiic;False;False;[];;">I am one of the manga readers who considers the anime better than the manga. - -Pretty sure thats the common opinion among manga readers from what I've seen in online discussion. I'm myself (while being anime-only) looked through iconic season 1-3 moments to check for myself and I never felt even 10% of what I felt while watching anime.";False;False;;;;1610396825;;False;{};gix89p1;False;t3_kv4s8z;False;True;t1_giwb9k2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix89p1/;1610449940;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610396849;;False;{};gix8bk5;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix8bk5/;1610449968;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AirRave;;;[];;;;text;t2_10bsou;False;False;[];;If I rate a show that I’m currently watching, I be sure to reevaluate when I finish the season and mark it completed. I’m sure plenty of others do the same;False;False;;;;1610396861;;False;{};gix8civ;False;t3_kv4s8z;False;False;t1_giwg5d8;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix8civ/;1610449983;23;True;False;anime;t5_2qh22;;0;[]; -[];;;YfiCaptions;;;[];;;;text;t2_8yd43hb;False;False;[];;I'd be 3rd highest if Interspecies Reviewers didn't get robbed.;False;False;;;;1610396869;;False;{};gix8d4q;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix8d4q/;1610449992;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Yarzu89;;;[];;;;text;t2_1ub1u1d6;False;False;[];;I remember a while back ppl made Interspecies Reviewers jump up in the ratings and there was a ton of backlash. People really take these ratings seriously for some reason.;False;False;;;;1610396905;;False;{};gix8g2b;False;t3_kv4s8z;False;False;t1_giwnvn5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix8g2b/;1610450035;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ImmortalRJD;;;[];;;;text;t2_8ow2oult;False;False;[];;Why?;False;False;;;;1610396984;;False;{};gix8mbs;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix8mbs/;1610450133;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shivam-ind;;;[];;;;text;t2_10bd8dkn;False;False;[];;Wait attack on titan was about to reach number 1 but salty fans took it down? No way! Next you're gonna tell me people die when they're killed!!!;False;False;;;;1610396994;;False;{};gix8n3d;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix8n3d/;1610450146;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ig0n;;;[];;;;text;t2_2l7wflv5;False;False;[];;I already put the final season as a 10, it’s just so fucking good;False;False;;;;1610397118;;False;{};gix8wrd;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix8wrd/;1610450290;0;True;False;anime;t5_2qh22;;0;[]; -[];;;shivam-ind;;;[];;;;text;t2_10bd8dkn;False;False;[];;One of the major reasons I don't rate the series I watch on mal, I just make it to keep it as a list. Just the amount of salt being thrown is unreal.;False;False;;;;1610397154;;False;{};gix8zjy;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix8zjy/;1610450334;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Castielstablet;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TaBleT;light;text;t2_146yxa;False;False;[];;"Well actually after the interspecies incident last year, MAL admins banned accounts which were created just to give 1 or 10 to certain series. After that, each of the top 10anime series's ratings went up and the biggest upwards change was fmab. If you are number one, there will be a lot more people who give 1 out of spite, just because ""why my favorite anime is not the number 1"" mentality. I personally do not believe fmab fandom is the worst offender, I believe this stuff evens out each other.";False;False;;;;1610397227;;False;{};gix959v;False;t3_kv4s8z;False;True;t1_giwri74;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix959v/;1610450419;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xxerox;;;[];;;;text;t2_cm5sv;False;False;[];;Mass voting max stars also sucks tbh. There are plenty of series that got voted max stars to oblivion by crazed fans;False;False;;;;1610397228;;False;{};gix95be;False;t3_kv4s8z;False;False;t1_gix1yxn;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix95be/;1610450419;92;True;False;anime;t5_2qh22;;0;[]; -[];;;n0nen0ne;;;[];;;;text;t2_7fh2i42t;False;False;[];;"Lmao i remember your name topping the charts just to fall out of top10.. in hope that it doesn't happen to aot ;";False;False;;;;1610397263;;False;{};gix9824;False;t3_kv4s8z;False;True;t1_giwch86;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix9824/;1610450460;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fechan;;;[];;;;text;t2_o95at;False;False;[];;"I don't know what people you hang out with, but I have friends who just stopped watching AoT after like 20 episodes because it was too dramatic/tragic for their taste. I wouldn't call them haters but they were very upset with the extreme sinister atmosphere. - -I also know a lot of friends that found Steins Gate way too immature and stopped watching a few episodes in. I mean, I get it, for non-otakus the first 10 episodes are a real struggle. I wasn't particularly amazed by them either.";False;False;;;;1610397301;;False;{};gix9b0z;False;t3_kv4s8z;False;True;t1_giwie8q;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix9b0z/;1610450504;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vellsii;;;[];;;;text;t2_2tid8dx4;False;False;[];;"I think the biggest issue AoT has, when you look at all the seasons, is pacing. AoT has some of the highest highs but a lot of really boring moments as well. - -That said, AoT is one of the few long running series that actually seems to be sticking the landing (imo FMA:B did not) and for that alone I think it deserves a top spot. The only other long running series I genuinely enjoyed the ending of was HxH, but AoT will almost certainly top that.";False;False;;;;1610397356;;False;{};gix9fdc;False;t3_kv4s8z;False;False;t1_giwz0m3;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix9fdc/;1610450573;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Ravioli_Heicho;;;[];;;;text;t2_3bls5ou;False;False;[];;"> Citation needed. - -My personal opinion, lol. We’re discussing something that’s inherently subjective. - ->Seriously though, people are forgetting that FMA:B is a tremendous masterpiece. - -Eh, agree to disagree - I’d give it like a solid 8/10. I think it does a lot of things very well, and is enjoyable throughout, but I wouldn’t say it’s spectacular. In fact, for large parts of the show, I honestly prefer *FMA* (2003) to *Brotherhood*. - ->As to SnK, I'm extremely curious how the season will pan out, but before I see it, I won't have any expectations that it will leave the same impression as FMA:B. It has a good chance though. - -Yeah, to be fair to FMA, I’m a long time Manga reader of SnK, so I was always going to be more invested in the latter than the former. That being said, knowing where the story goes, I definitely think *SnK* will leave a lasting impact. - ->On a kinda related note, I think it sucks that every season and every season's part gets their own rank in MAL. - -I agree completely. It’s so unbelievably stupid that Gintama and Attack on Titan take up multiple slots in the top 10, but FMA:B and Legend of the Galactic Heroes each only get one slot. I’d prefer they change to one entry per series, but if they don’t, they should at least develop a more consistent metric for when and how to group shows.";False;False;;;;1610397369;;1610407519.0;{};gix9gd7;False;t3_kv4s8z;False;True;t1_gix7ls6;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix9gd7/;1610450590;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Elias_Mo;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Yukinoshita and Emilia Cultist;dark;text;t2_3e7u37ah;False;False;[];;as someone whos favorite animes are hxh, rezero and aot i cant be happier;False;False;;;;1610397406;;False;{};gix9j9w;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix9j9w/;1610450635;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"They definitely did improve it. But brigading on this large of a scale on both positive and negative side is really hard to balance perfectly. The score will definitely fix itself soon enough. - -Since episode 5 dropped the score moved incredibly fast so trying to figure how to manage brigading during such huge movements is probably pretty hard. I don't think it'll drop any further though but might even continue to rise. Next site score update will show us what's likely";False;False;;;;1610397489;;False;{};gix9py0;False;t3_kv4s8z;False;False;t1_gix2ydm;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix9py0/;1610450736;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeFan0311;;;[];;;;text;t2_87j1cg16;False;False;[];;I’m a manga reader and that was a masterpiece to see animated, I can’t imagine how excited anime-onlies were;False;False;;;;1610397496;;False;{};gix9qih;False;t3_kv4s8z;False;False;t1_giwid7f;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix9qih/;1610450746;22;True;False;anime;t5_2qh22;;0;[]; -[];;;TheBabou268;;;[];;;;text;t2_2nvhi1xh;False;False;[];;It's my favorite anime, but that's probably because I watched like 3 animes;False;False;;;;1610397504;;False;{};gix9r3l;False;t3_kv4s8z;False;True;t1_giwx0my;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix9r3l/;1610450754;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Laughing_Koffin;;;[];;;;text;t2_8335f3y8;False;False;[];;If they are crazy fans, ofc in their opinion that particular anime deserves the 10 star. But if they start creating multiple accounts to give them full star rating, then it's bad.;False;False;;;;1610397591;;False;{};gix9xyi;False;t3_kv4s8z;False;False;t1_gix95be;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gix9xyi/;1610450858;139;True;False;anime;t5_2qh22;;0;[]; -[];;;Laughing_Koffin;;;[];;;;text;t2_8335f3y8;False;False;[];;Is there any way to know how many downvotes you got?;False;False;;;;1610397663;;False;{};gixa3hp;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixa3hp/;1610450943;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CelesteRed;;;[];;;;text;t2_461p0jql;False;True;[];;"....I happen to be the first one then lol - -Benizakura was so good the set of episodic comedy episodes up till the Kyuubey arc began felt really boring in comparison to the greatness I came off of and it made me lose interest in continuing, by the time I got to good stuff again - like the Kyuubey arc, I just wasn't as invested anymore and fell off";False;False;;;;1610397704;;False;{};gixa6u1;False;t3_kv4s8z;False;False;t1_giwnxwz;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixa6u1/;1610450995;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ricochet48;;;[];;;;text;t2_7e1sp;False;False;[];;"You can easily filter for TV, Movies, OVA's, etc. - -The separate seasons listings are odd though as noted (unless it's a spin off or not directly related).";False;False;;;;1610397723;;False;{};gixa8b0;False;t3_kv4s8z;False;False;t1_gix5j0s;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixa8b0/;1610451017;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Vickty12;;;[];;;;text;t2_480sz7cl;False;False;[];;Gintama is the ultimate comedic slice of life shounen that surrounds the lives and hijinks of Gintoki, a diabetic samurai who runs an odd jobs business (yorozuya), and his acquaintances within an alternate version of Edo Japan where aliens (Amanto) took over. It parodies an insane amount of anime and other media, has an incredibly entertaining cast of characters, a setting that allows for limitless creativity, and fantastic fight scenes. It has what numerous fans call a slow start and is mostly episodic for long into its run, but do not let either of those factors stop you from trying it out.;False;False;;;;1610397831;;False;{};gixagx5;False;t3_kv4s8z;False;True;t1_gix0vml;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixagx5/;1610451157;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MaxtheBat;;MAL;[];;http://myanimelist.net/profile/IonUmbrella;dark;text;t2_fdhln;False;False;[];;Not really. Chihayafuru season 3 was bombed with 1's but MAL fixed that up and now it's at a rightfully deserved score.;False;False;;;;1610397870;;False;{};gixajwq;False;t3_kv4s8z;False;False;t1_gix2xc2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixajwq/;1610451203;128;True;False;anime;t5_2qh22;;0;[]; -[];;;fechan;;;[];;;;text;t2_o95at;False;False;[];;"> Eh, agree to disagree - I’d give it like a solid 8/10. I think it does a lot of things very well, and is enjoyable throughout, but I wouldn’t say it’s spectacular. In fact, for large parts of the show, I honestly prefer FMA (2003) to Brotherhood. - -I see where you're coming from, but I think it's fair to say that it's completely subjective as to what is a masterpiece. I know people who just stopped watching AoT after 20 episodes. The same probably applies to FMA:B. But if we ignore the fan's brigading aspect, we can agree that the opinion of the many will be reflected in one leaderboard or the other. And FMA:B is at the top in MAL, and I can completely understand why. It's not absurd or unrelatable at all.";False;False;;;;1610397871;;False;{};gixajxw;False;t3_kv4s8z;False;False;t1_gix9gd7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixajxw/;1610451204;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Elvem;;;[];;;;text;t2_2kzpixx3;False;False;[];;I care in the sense that it’ll give me a rough estimate of if the anime is worth my time. Who’s highest though? Yeah who cares.;False;False;;;;1610397871;;False;{};gixajy5;False;t3_kv4s8z;False;False;t1_giw9hbo;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixajy5/;1610451204;5;True;False;anime;t5_2qh22;;0;[]; -[];;;biryaniwala;;;[];;;;text;t2_so237;False;False;[];;Don't see this surpassing FMAB though, not for a few years at least(there's way too many FMAB fanboys on MAL). It may peak to #1 momentarily though.;False;False;;;;1610397921;;False;{};gixanwy;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixanwy/;1610451269;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;you're super right, i complement with you, someone who uses their brain;False;False;;;;1610398005;;False;{};gixaujo;False;t3_kv4s8z;False;True;t1_gix87mk;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixaujo/;1610451376;0;True;False;anime;t5_2qh22;;0;[]; -[];;;CartographerStreet30;;;[];;;;text;t2_78vkaoxg;False;False;[];;I don't know how people can possibly watch FMAB,and think yes, this is the greatest anime of all time.;False;False;;;;1610398019;;False;{};gixavm8;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixavm8/;1610451395;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fapashi_kashi;;;[];;;;text;t2_wfaks;False;False;[];;"can't argue with[ this guy](https://i.imgur.com/6W1vCGA.png) -he already [completed it!](https://i.imgur.com/8BjZH21.png)";False;False;;;;1610398054;;False;{};gixaydw;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixaydw/;1610451440;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;I agree that there is recency bias but it's a newer site so that's to be a expected. This will improve with time.;False;False;;;;1610398077;;False;{};gixb08l;False;t3_kv4s8z;False;True;t1_gix857n;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixb08l/;1610451471;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Perrenekton;;;[];;;;text;t2_q18f1;False;False;[];;I think I get what you meant to say but this episode wasn't much of a reveal? It was just pure 10/10 tension;False;False;;;;1610398089;;False;{};gixb13x;False;t3_kv4s8z;False;False;t1_giwb2f1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixb13x/;1610451485;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ikr 🙄lunatics;False;False;;;;1610398104;;False;{};gixb28c;True;t3_kv4s8z;False;True;t1_gixaydw;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixb28c/;1610451503;1;True;False;anime;t5_2qh22;;0;[]; -[];;;flat0earth;;;[];;;;text;t2_2rk4z6dn;False;False;[];;FMA is my favourite anime of all time but i wouldn't give Attack on Titan 1 point just to make it 2nd. That's just being an asshole;False;False;;;;1610398134;;False;{};gixb4kr;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixb4kr/;1610451539;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ikr, I'd put it around the 12th spot or so. Like you seriously telling me you perfect fmab over stuff like death note, steins gate, code geass ?;False;False;;;;1610398141;;False;{};gixb54z;True;t3_kv4s8z;False;True;t1_gixavm8;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixb54z/;1610451548;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;You have my respect sir;False;False;;;;1610398153;;False;{};gixb62y;True;t3_kv4s8z;False;True;t1_gixb4kr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixb62y/;1610451562;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MathManGetsPaid;;;[];;;;text;t2_44cmsrm5;False;False;[];;I assume you mean chapter 122;False;False;;;;1610398158;;False;{};gixb6ik;False;t3_kv4s8z;False;False;t1_giwterz;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixb6ik/;1610451569;30;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;No, it doesn't even show me 😭;False;False;;;;1610398178;;False;{};gixb84x;True;t3_kv4s8z;False;True;t1_gixa3hp;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixb84x/;1610451594;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hyrulia;;;[];;;;text;t2_5d3xk;False;False;[];;Oh no it's the 3rd again.. anyway!;False;False;;;;1610398199;;False;{};gixb9sp;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixb9sp/;1610451621;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"This raises issues for scores of non completed series. Old stuff which is completed gets its entirety judged as a whole and since the ending is so important for most people's score newly aired stuff with year breaks are at kind of a huge advantage and disadvantage. Since between seasons shows lose viewers their rating which impact the score without the show being completed could make the score inflated or deflated after it ends. A show which drops in quality in the end will have an inflated score and the opposite is true - -Unless you add a separate list made for franchises after ONLY completion, you aren't making much improvement.";False;False;;;;1610398201;;False;{};gixb9yq;False;t3_kv4s8z;False;False;t1_giwwb7x;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixb9yq/;1610451623;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ikr same, my favs are Aot, Legends of the Galactic heroes and re Zero.;False;False;;;;1610398219;;False;{};gixbbfu;True;t3_kv4s8z;False;True;t1_gix9j9w;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixbbfu/;1610451646;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The-high-ground-;;;[];;;;text;t2_1yi8hfjd;False;False;[];;I agree it's 8/10 but 8/10 is not mid lol, thats a good freaking rating;False;False;;;;1610398257;;False;{};gixbefn;False;t3_kv4s8z;False;False;t1_giwvvaf;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixbefn/;1610451692;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;You have my respect sir, I'll say it in French. tu as mon respect monsieur;False;False;;;;1610398298;;False;{};gixbhph;True;t3_kv4s8z;False;True;t1_gix87mk;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixbhph/;1610451744;2;True;False;anime;t5_2qh22;;0;[]; -[];;;flat0earth;;;[];;;;text;t2_2rk4z6dn;False;False;[];;So screw Nina and a whole genocide;False;False;;;;1610398306;;False;{};gixbicn;False;t3_kv4s8z;False;True;t1_gix0sey;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixbicn/;1610451754;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Coz it's a masterpeice;False;False;;;;1610398318;;False;{};gixbjaf;True;t3_kv4s8z;False;True;t1_gix8mbs;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixbjaf/;1610451768;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UncoJimmie;;;[];;;dark;text;t2_yxpax;False;False;[];;"Remember when Great Pretender had like a 3/10 before it even aired just because it was Studio Wit? - -Lmao AoT fans are just as bad as the FMAB fans they complain about";False;False;;;;1610398360;;False;{};gixbmpr;False;t3_kv4s8z;False;False;t1_giwwxww;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixbmpr/;1610451821;93;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ikr, like even something as simple as the logic behind warrior selection is extremely intriguing;False;False;;;;1610398371;;False;{};gixbnkq;True;t3_kv4s8z;False;False;t1_gix8wrd;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixbnkq/;1610451835;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Agreed, It's good not amazing just good.;False;False;;;;1610398419;;False;{};gixbrg0;True;t3_kv4s8z;False;True;t1_gixbefn;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixbrg0/;1610451896;5;True;False;anime;t5_2qh22;;0;[]; -[];;;port_also_fdisco_ver;;;[];;;;text;t2_5adleu9h;False;False;[];;"HxH fans are chill we don’t bother with these petty internet debates & rating manipulations";False;False;;;;1610398460;;False;{};gixbup9;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixbup9/;1610451950;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jejmaze;;;[];;;;text;t2_6bwf7;False;False;[];;I just dislike how inconsistent it is. Some shows are clearly meant to be seen as separate seasons but are still one show on MAL, whereas other shows are clearly meant to be one continuous thing but MAL still splits them up. At least add some sort of aggregate mode that puts all seasons together!;False;False;;;;1610398473;;False;{};gixbvno;False;t3_kv4s8z;False;True;t1_giwz9t5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixbvno/;1610451965;2;True;False;anime;t5_2qh22;;0;[]; -[];;;asian_hans;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Shadow_Haunter12;light;text;t2_btv3xjy;False;False;[];;That is the most pettiest thing ever;False;False;;;;1610398554;;False;{};gixc2pa;False;t3_kv4s8z;False;False;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixc2pa/;1610452071;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Psychomantis200;;;[];;;;text;t2_akb0ljt;False;False;[];;Yeah FMAB is way too overrated nowadays.;False;False;;;;1610398621;;False;{};gixc9et;False;t3_kv4s8z;False;False;t1_gix6ydg;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixc9et/;1610452163;4;True;False;anime;t5_2qh22;;0;[]; -[];;;iiiiiiiiiiip;;;[];;;;text;t2_i7ekk;False;False;[];;Should we do the same with 10/10 votes? Maybe only have 9/10 be legitimate too?;False;False;;;;1610398650;;False;{};gixcbqi;False;t3_kv4s8z;False;False;t1_giwj1dw;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixcbqi/;1610452201;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Killcode2;;;[];;;;text;t2_15lr8u;False;False;[];;also giving it 10 as soon as episode 1 airs is also a sucky mentality, I can only hope the idiots cancel each other out, but if the scores from 2-9 ever mattered in mal the top 100 would have been very different;False;False;;;;1610398703;;False;{};gixcfxr;False;t3_kv4s8z;False;False;t1_gix1yxn;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixcfxr/;1610452271;67;True;False;anime;t5_2qh22;;0;[]; -[];;;DominelKira;;;[];;;;text;t2_3s08wif3;False;False;[];;Honestly it doesn't matter. Like honesty.;False;False;;;;1610398717;;False;{};gixcgzq;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixcgzq/;1610452290;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SliderGamer55;;;[];;;;text;t2_xu233;False;False;[];;"I like Steins;Gate more than either of them so hopefully they destroy each other. (jk, no one should care about MAL rankings)";False;False;;;;1610398740;;False;{};gixciux;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixciux/;1610452320;24;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;">The first half is 10/10 but somewhere along the way it really falls flat on it's face. - -Wow this is an opinion you don't see often. Never heard someone liking the start but not the end but I've heard the opposite countless times.";False;False;;;;1610398741;;False;{};gixciw3;False;t3_kv4s8z;False;True;t1_giwz79n;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixciw3/;1610452321;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;It really doesn't, but it's fun seeing the circle jerk;False;False;;;;1610398757;;False;{};gixck6x;True;t3_kv4s8z;False;True;t1_gixcgzq;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixck6x/;1610452344;0;True;False;anime;t5_2qh22;;0;[]; -[];;;iiiiiiiiiiip;;;[];;;;text;t2_i7ekk;False;False;[];;That's a matter of opinion the last two chapters have certainly been controversial. I think the current and next two episodes are definitely the highest point of the entire series so far.;False;False;;;;1610398761;;False;{};gixckhn;False;t3_kv4s8z;False;False;t1_giwrho1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixckhn/;1610452349;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;😂😂😂😂😂;False;False;;;;1610398772;;False;{};gixclbm;True;t3_kv4s8z;False;True;t1_gixciux;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixclbm/;1610452363;3;True;False;anime;t5_2qh22;;0;[]; -[];;;asscrackrash;;;[];;;;text;t2_9jhv8y1m;False;False;[];;"I've found many people who find attack on titan crappy, just search up reddit threads. - -you're spreading some garbage takes on this thread fam.";False;False;;;;1610398772;;False;{};gixclc0;False;t3_kv4s8z;False;False;t1_giwtsao;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixclc0/;1610452363;8;True;False;anime;t5_2qh22;;0;[]; -[];;;polo61965;;;[];;;;text;t2_phjcg;False;False;[];;I've loved FMAB since I saw it years ago, and I still loved it when I rewatched it over again a couple of months back, but I'm ready to give up the top spot to AoT. I haven't seen an anime more worthy to take the top spot than AoT, especially season 3 and even 4 is stepping up as an equal contender even with the few episodes it has come out with so far. There are no wasted episodes in those seasons, the conflict grows and evolves as we go, and the hype has transitioned from the gorefest of season 1 to the world building in the recent seasons. It's honestly amazing how much it has grown as an anime. It's pathetic that some would rate it a 1* just to prevent it from surpassing FMAB, that's just nostalgia taking hold of them. If they don't like it as much, just rate it lower than FMAB, but give it a fair rating based on valid points. Same goes to those giving FMAB 1* to tank the average. Just divisive and childish behavior.;False;False;;;;1610398794;;False;{};gixcn1k;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixcn1k/;1610452391;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dead-HC-Taco;;;[];;;;text;t2_1jhkucxf;False;False;[];;After yesterdays episode, im not suprised. That ending was CRAZY;False;False;;;;1610398795;;False;{};gixcn5k;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixcn5k/;1610452393;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ya, Legends of the Galactic heroes is 4 seasons but it's put into 1. FMAB was also produced in 2 seasons. So what's going on here ?;False;False;;;;1610398839;;False;{};gixcqjz;True;t3_kv4s8z;False;True;t1_gixbvno;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixcqjz/;1610452451;2;True;False;anime;t5_2qh22;;0;[]; -[];;;iiiiiiiiiiip;;;[];;;;text;t2_i7ekk;False;False;[];;No rating system is perfect and do you not think there's people that also do the same to more popular series hoping their fav claims top spot?;False;False;;;;1610398848;;False;{};gixcrbo;False;t3_kv4s8z;False;True;t1_gix2ydm;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixcrbo/;1610452464;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ikr,;False;False;;;;1610398850;;False;{};gixcrfl;True;t3_kv4s8z;False;True;t1_gixcn5k;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixcrfl/;1610452465;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DominelKira;;;[];;;;text;t2_3s08wif3;False;False;[];;You can filter them out;False;False;;;;1610398863;;False;{};gixcsi9;False;t3_kv4s8z;False;True;t1_gix5j0s;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixcsi9/;1610452483;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ImmortalRJD;;;[];;;;text;t2_8ow2oult;False;False;[];;The author has no plan and just makes shit up as he goes. Plus Mikasa is a Mary Sue with the personality of a flank steak;False;False;;;;1610398873;;False;{};gixctas;False;t3_kv4s8z;False;True;t1_gixbjaf;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixctas/;1610452496;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610398908;;False;{};gixcw05;False;t3_kv4s8z;False;True;t1_giwwkkr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixcw05/;1610452539;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mrtheliger;;;[];;;;text;t2_11ghbg;False;False;[];;Popularity polls for WSJ titles actually can affect where the story goes on occasion though, so that's not really a fair comparison;False;False;;;;1610398932;;False;{};gixcxtt;False;t3_kv4s8z;False;False;t1_gix4ts7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixcxtt/;1610452569;16;True;False;anime;t5_2qh22;;0;[]; -[];;;spoonburb;;;[];;;;text;t2_m0fgt;False;False;[];;tbf you can’t really weigh the rating of a single season the same as an entire series. Generally the ones watching season 5 are people who enjoyed the series long enough to still be watching so they probably would not give it a low rating;False;False;;;;1610398939;;False;{};gixcydd;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixcydd/;1610452577;1;True;False;anime;t5_2qh22;;0;[]; -[];;;realToukafan4life;;;[];;;;text;t2_97ow482i;False;False;[];;They only watched 3 animes. Kny, aot, fmab.;False;False;;;;1610398952;;False;{};gixczfw;False;t3_kv4s8z;False;False;t1_gix6ydg;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixczfw/;1610452594;27;True;False;anime;t5_2qh22;;0;[]; -[];;;Toasted_FlapJacks;;;[];;;;text;t2_a9ikm;False;False;[];;It was the best between 2011-2019 imo.;False;False;;;;1610398967;;False;{};gixd0km;False;t3_kv4s8z;False;False;t1_gix0z09;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixd0km/;1610452611;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Bruhhhhhhh you can call AOT anything but unplanned. The series has been meticulously planned from ep 1. You've clearly not watched past s2. The series is not having call backs to plot points set in s1. It's crazy how the series has evolved and how well planned it's been. Idk wtf you're taking about;False;False;;;;1610398982;;False;{};gixd1oh;True;t3_kv4s8z;False;False;t1_gixctas;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixd1oh/;1610452629;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Naruto was still one piece with the same characters, and should be rated as that;False;False;;;;1610399039;;False;{};gixd61w;True;t3_kv4s8z;False;True;t1_gixcw05;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixd61w/;1610452698;0;True;False;anime;t5_2qh22;;0;[]; -[];;;iiiiiiiiiiip;;;[];;;;text;t2_i7ekk;False;False;[];;"How about the Shingeki fandom that thinks their show not being #1 is only because of ""cheating"" by other fandoms? - -Despite Shingeki being a gateway anime for a ton of people who have little experience outside of Shingeki so proclaim it to be the greatest thing ever.";False;False;;;;1610399079;;1610400447.0;{};gixd93w;False;t3_kv4s8z;False;False;t1_giwri74;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixd93w/;1610452746;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Ig0n;;;[];;;;text;t2_2l7wflv5;False;False;[];;It just feels like such a realistic story. The characters feel as though they’re regular humans put into these situations rather than fictitious characters. Especially in the final season;False;False;;;;1610399116;;False;{};gixdbvu;False;t3_kv4s8z;False;True;t1_gixbnkq;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixdbvu/;1610452791;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thecomicguybook;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Comicman;light;text;t2_cfb58;False;False;[];;"Eh, this is the 4/5th season of the show depending on how you count it so the fans are hyped. The score will go down if it disappoints, but it doesn't look like it right now. - -On the other hand, anyone who is giving this a 1 probably hasn't watched it until 5 seasons into the show. They are just dragging the score down out of spite. - -The main conclusion should be that this score is meaningless, but I would rather have some fanboys than people trying to manipulate the system by giving shows they don't watch low scores.";False;False;;;;1610399141;;False;{};gixddr9;False;t3_kv4s8z;False;False;t1_gixcfxr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixddr9/;1610452821;54;True;False;anime;t5_2qh22;;0;[]; -[];;;LegendaryRQA;;;[];;;;text;t2_hszyq;False;False;[];;No, because there are too many people giving it a 1.;False;False;;;;1610399165;;False;{};gixdfmh;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixdfmh/;1610452851;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;For sure, i mean if i was in the same situation as Reiner I'd probably act the same way.;False;False;;;;1610399173;;False;{};gixdg6a;True;t3_kv4s8z;False;True;t1_gixdbvu;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixdg6a/;1610452861;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Let's see if they can be overpowered by the 10's;False;False;;;;1610399196;;False;{};gixdi1j;True;t3_kv4s8z;False;True;t1_gixdfmh;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixdi1j/;1610452892;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;janoDX;;;[];;;;text;t2_bowtb;False;False;[];;">I don’t think they can have every episode be that impactful. - -The score will get even higher. Watch.";False;False;;;;1610399266;;False;{};gixdngu;False;t3_kv4s8z;False;False;t1_giwb2f1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixdngu/;1610452978;6;True;False;anime;t5_2qh22;;0;[]; -[];;;iiiiiiiiiiip;;;[];;;;text;t2_i7ekk;False;False;[];;It's an extremely well done and consistent series hitting basically every anime trope. Shingeki fans are honestly a lot more toxic in their own communities than other popular series like FMA:B.;False;False;;;;1610399269;;False;{};gixdno9;False;t3_kv4s8z;False;True;t1_giwvmjp;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixdno9/;1610452982;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DoublerZ;;;[];;;;text;t2_to2pt;False;False;[];;I mean I never rate stuff until I fully finish it, but I don't see how giving a 10 to something you love and enjoy watching is the same as giving it a 1 without even seeing a single episode because you want your favorite to stay on top.;False;False;;;;1610399297;;False;{};gixdpws;False;t3_kv4s8z;False;True;t1_giw9lc7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixdpws/;1610453019;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JustinXT;;;[];;;;text;t2_hp9sf;False;False;[];;"There's a lot more that goes behind it then just characters are the story. There could be other differences between seasons like different animation/ sound directors, different studios, and more. - -Like imagine Hunter X Hunter 1999 and Hunter X Hunter 2011 being in the same series. (Ex. FMA and FMA:B or AOT S1 to 3 and AOT S4). - -While animes like One Piece and Detective Conan have been airing for long enough to see a difference in animation, sound, and all of the above, they are still just listed as their main title name even by the publishers.";False;False;;;;1610399451;;False;{};gixe1yd;False;t3_kv4s8z;False;True;t1_gixd61w;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixe1yd/;1610453217;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iiiiiiiiiiip;;;[];;;;text;t2_i7ekk;False;False;[];;A much better show *in your opinion*, personally while I think Shingeki has better highs (and an absurd animation budget) there are plenty of flaws and even more flaws in the anime version, leveled out it's still great but it's toxic western fanbase definitely overhypes it.;False;False;;;;1610399463;;False;{};gixe2vt;False;t3_kv4s8z;False;False;t1_giwemmi;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixe2vt/;1610453232;6;True;False;anime;t5_2qh22;;0;[]; -[];;;AlberS16;;;[];;;;text;t2_z2x7i46;False;False;[];;Latest episode has 3 1/10 ratings(reviews) on IMDB and all 3 are trolls. One literally said I didn’t watch the episode but I know its crap.;False;False;;;;1610399477;;False;{};gixe3zt;False;t3_kv4s8z;False;True;t1_giwy8u4;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixe3zt/;1610453249;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LegendaryRQA;;;[];;;;text;t2_hszyq;False;False;[];;It's not just FAM fans. It's haters in general. AoT has plenty of detractors.;False;False;;;;1610399570;;False;{};gixebck;False;t3_kv4s8z;False;False;t1_gix6gcl;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixebck/;1610453369;87;True;False;anime;t5_2qh22;;0;[]; -[];;;iiiiiiiiiiip;;;[];;;;text;t2_i7ekk;False;False;[];;As a manga reader this was the highest point in the entire series, there are a few other smaller peaks too but nothing that compares with these 2-3 episodes.;False;False;;;;1610399599;;False;{};gixedmd;False;t3_kv4s8z;False;True;t1_giw43rj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixedmd/;1610453406;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ReinersTongue;;;[];;;;text;t2_9il0t356;False;False;[];;Why did it get bombed?;False;False;;;;1610399628;;False;{};gixefvq;False;t3_kv4s8z;False;False;t1_gixajwq;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixefvq/;1610453445;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Santaire1;;;[];;;;text;t2_91ro3cg;False;False;[];;Agreed. Honestly, as far as I'm concerned once a show hits 8/10 it stops being about whether it's good and starts being semantics. Everyone (or almost everyone) agrees that AoT and FMA: B are both fantastic shows, which one is better just depends on personal preference.;False;False;;;;1610399635;;False;{};gixege6;False;t3_kv4s8z;False;False;t1_gix6ht9;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixege6/;1610453453;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610399642;;False;{};gixegyb;False;t3_kv4s8z;False;True;t1_gixbicn;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixegyb/;1610453461;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SomeBruv;;;[];;;;text;t2_669mfgun;False;False;[];;120-122 are some of my fav chapters in recent manga and if the leaks are true, thats where the season is ending, hell of a cliffhanger;False;False;;;;1610399665;;False;{};gixeit0;False;t3_kv4s8z;False;False;t1_gixb6ik;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixeit0/;1610453492;31;True;False;anime;t5_2qh22;;0;[]; -[];;;SpeeDy_GjiZa;;MAL;[];;http://myanimelist.net/profile/SpeeDy_G;dark;text;t2_gsfq5;False;False;[];;Because it did so many things well and the story is rock solid even after all these years. FMAB is something that is highely reccomended even outside of strictly anime circles beacause of how well it does things like worldbuilduing, magic systems, themes of military confilct, genocide etc etc that are really well written. It's a work that comes up a lot on other communities, like the fantasy one. It's just a really well written work and that can't be said for a lot of anime. Being older doesn't mean that is lesser than other works.;False;False;;;;1610399720;;False;{};gixen1t;False;t3_kv4s8z;False;False;t1_gix6ydg;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixen1t/;1610453562;68;True;False;anime;t5_2qh22;;0;[]; -[];;;Guwigo09;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AbstractRasy;light;text;t2_emcpje7;False;False;[];;That’s not true. They started building that way before interspecies was a thing;False;False;;;;1610399862;;False;{};gixey4e;False;t3_kv4s8z;False;False;t1_gix2xc2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixey4e/;1610453743;3;True;False;anime;t5_2qh22;;0;[]; -[];;;atropicalpenguin;;MAL;[];;http://myanimelist.net/animelist/atropicalpenguin;dark;text;t2_vxkvm;False;False;[];;I mean, the best girl contest is pretty meaningless but people still set bots to vote for their favourite character and brigade the contest. There's some very angry and devoted fans.;False;False;;;;1610399927;;False;{};gixf38l;False;t3_kv4s8z;False;False;t1_giwnvn5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixf38l/;1610453828;3;False;False;anime;t5_2qh22;;0;[]; -[];;;kenkion00;;;[];;;;text;t2_3tvre1f2;False;False;[];;Broooo that fucking cliffhanger in the recent episode was sooooooo fucking good!;False;False;;;;1610399946;;False;{};gixf4p3;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixf4p3/;1610453852;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kotathekidd;;;[];;;;text;t2_4shd3zdw;False;False;[];;"We must fight back and rate fmab 1 star this is unacceptable -Edit: spelling";False;True;;comment score below threshold;;1610399947;;False;{};gixf4qz;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixf4qz/;1610453853;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;brownguy6391;;;[];;;;text;t2_3et2u982;False;False;[];;"Nina was a side character and I guess the genocide kinda counts. I was thinking mainly of the main cast . I did however like [spoiler](/s""Hughes'"") Death.";False;False;;;;1610399961;;False;{};gixf5v0;False;t3_kv4s8z;False;False;t1_gixbicn;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixf5v0/;1610453871;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dwilsons;;;[];;;;text;t2_qwwm7;False;False;[];;And now you can’t enter a thread about Your Name without the inevitable “Silent Voice was better” comment lol.;False;False;;;;1610400013;;False;{};gixfa0m;False;t3_kv4s8z;False;False;t1_giwttr3;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixfa0m/;1610453940;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Cypr3s5;;;[];;;;text;t2_77olxjfe;False;False;[];;"Speaking of the current top 3 shows on MAL, I think FMA:B is a bit overrated... - -Hate me all you want, but the first 40ish episodes were amazing compared to the closing episodes of the show. It had an amazing, a bit slow, buildup with brilliant writing and it all came down to the standard ""friendship beats an immortal villain"" end. - -At one point I felt like the show is gonna sink into deep despair, that Al has no chance of getting his body back, that him and Edward have an impossible dream, that many more important characters would lose their life...etc - -Don't get me wrong, the show is still one of my favorite shows of all time despite all of that, but AoT is slowly outclassing it by some margin imo. - -Stein's Gate is my favorite of the three, but I gotta admit it's not on the same level as these two, at least for me.";False;False;;;;1610400015;;False;{};gixfa57;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixfa57/;1610453942;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Killcode2;;;[];;;;text;t2_15lr8u;False;False;[];;"people who give 1s are trolls but people who spam 10s are fans? that kind of thinking is why mal sucks so bad. I'll probably end up giving season 4 a (for me rare) 10 when it ends, but anime fans in general only give everything 1s and 10s and only singling out the ""negative people"" as trolls is in of itself a bad mentality - -even if the ""fans"" change their score after the anime finishes airing, what's even the point of mal then if every anime has a high score when it's airing? it's practically useless for anyone thinking whether they should watch a new show or not";False;False;;;;1610400019;;1610401712.0;{};gixfael;False;t3_kv4s8z;False;False;t1_gixddr9;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixfael/;1610453947;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Brutal2003;;;[];;;;text;t2_lu35ak1;False;False;[];;MAL? eh they remove Interspecies Reviewers from the top, crap website.;False;False;;;;1610400096;;False;{};gixfgge;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixfgge/;1610454044;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dwilsons;;;[];;;;text;t2_qwwm7;False;False;[];;I think it’s just the usual progression of something getting really popular and then being considered overrated. Happens with a lot of stuff.;False;False;;;;1610400110;;False;{};gixfhj2;False;t3_kv4s8z;False;False;t1_giwpbdf;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixfhj2/;1610454061;63;True;False;anime;t5_2qh22;;0;[]; -[];;;vinsmokesanji3;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/ChrispyAurora;dark;text;t2_84xqi4;False;False;[];;If a different studio makes a different season, it feels wrong to just average it out. One punch s2 was a lot worse than s1. I think they shouldn’t be averaged into one score.;False;False;;;;1610400145;;False;{};gixfkaa;False;t3_kv4s8z;False;False;t1_giwwb7x;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixfkaa/;1610454108;142;True;False;anime;t5_2qh22;;0;[]; -[];;;MilkAzedo;;;[];;;;text;t2_2rfllvoe;False;False;[];;down to third now;False;False;;;;1610400240;;False;{};gixfru0;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixfru0/;1610454235;0;True;False;anime;t5_2qh22;;0;[]; -[];;;European_Badger;;;[];;;;text;t2_h5oxgc;False;False;[];;"Have you even seen it? ""Gateway"" anime my ass.";False;True;;comment score below threshold;;1610400269;;False;{};gixfu3y;False;t3_kv4s8z;False;False;t1_gixd93w;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixfu3y/;1610454272;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;flat0earth;;;[];;;;text;t2_2rk4z6dn;False;False;[];;Fma and Aot are equal in my eyes but i wouldn't belittle fma just because it's fans are crazy. Whole winry - scar revenge thing , roy and envys thing , cost of a human soul are the main themes of fma and all of them are truly amazing . I don't think it's overhyped, it's just loved by western weebs a lot. If an anime reigns for a decade as the best anime of all time it's not because it had hype, hype burns out quickly. But i hop aot surpasses fma just to refresh things;False;False;;;;1610400309;;False;{};gixfxc5;False;t3_kv4s8z;False;False;t1_gixf5v0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixfxc5/;1610454326;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ivnwng;;;[];;;;text;t2_14ra88;False;False;[];;“No plan”, did you even watch the show at all?;False;False;;;;1610400352;;False;{};gixg0mk;False;t3_kv4s8z;False;False;t1_gixctas;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixg0mk/;1610454382;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MaxtheBat;;MAL;[];;http://myanimelist.net/profile/IonUmbrella;dark;text;t2_fdhln;False;False;[];;"A combination of factors. - -It aired back when the Hong Kong protests were at their peak and the author of the manga made some comments in support of the protestors. Chinese users got pissed and began review bombing it. - -Also it also coincided with the airing of Vinland Saga and both shows had high scores. Some angry and toxic Vinland Saga fans didn't want Chihayafuru's score to eclipse their own show so they began the review bombing. - -In total, around 25% of Chihayafuru Season 3's reviews were a score of 1 when it obviously deserved better.";False;False;;;;1610400352;;False;{};gixg0ox;False;t3_kv4s8z;False;False;t1_gixefvq;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixg0ox/;1610454382;79;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;"I think AoT is a lot more pessimistic. We still need to see the ending, but while both confront topics of discrimination and the difficulty of overcoming differences and living together, my feeling is that FMAB is fundamentally optimistic about human nature (""living together in peace is good and we can get there with some effort"") and AoT more pessimistic (""living together in peace would be good but circumstances and the weight of the past mean it's almost impossible to get there""). We'll see what the full message is once AoT ends, but this is my general impression.";False;False;;;;1610400354;;False;{};gixg0ub;False;t3_kv4s8z;False;False;t1_gix6vga;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixg0ub/;1610454385;4;True;False;anime;t5_2qh22;;0;[]; -[];;;iiiiiiiiiiip;;;[];;;;text;t2_i7ekk;False;False;[];;"Shingeki? Obviously.. I'm not sure there's another series with the sheer amount of ""I don't watch much anime but Shingeki is amazing"" fans.";False;False;;;;1610400386;;False;{};gixg3ef;False;t3_kv4s8z;False;True;t1_gixfu3y;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixg3ef/;1610454426;0;True;False;anime;t5_2qh22;;0;[]; -[];;;peerzy;;;[];;;;text;t2_cerzo;False;False;[];;So hype. Hopefully in a couple episodes AOT will reach Interspecies reviewers level of quality.;False;False;;;;1610400413;;False;{};gixg5k7;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixg5k7/;1610454463;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thecomicguybook;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Comicman;light;text;t2_cfb58;False;False;[];;"Well, as I said the main takeaway should be that MAL scores are meaningless. - -> singling out the ""negative people"" as trolls is in of itself a bad mentality - -That is misrepresenting what I said. I said that anyone who gives the show a 1 **60+ episodes** in, probably isn't actually watching it (unless obviously the show goes to shit, but according to popular consensus AoT is better than ever). AoT obviously has a lot of fans who think it is a 10, and a lot of haters too, but if somebody thinks it is a 1 should they really go through every season, even those they probably didn't watch to bring the score down? That I think is quite petty. - -Me, personally I only really score shows after the halfway point or dozens of episodes in or whatever. You won't find me arguing that you shouldn't post a score before finishing it, but that is not the reality we live in right now. But you also have to keep in mind all the manga readers or people who already thought 60+ episodes of it were a 10. They don't feel the need to wait for months before giving their score, and I think that is understandable too. - -> it's practically useless for anyone thinking whether they should watch a new show or not - -Yes, this is obviously true. I think pretty much every review on that site is pretty terrible from an analytical perspective as well. - -[](#yuishrug)";False;False;;;;1610400433;;False;{};gixg738;False;t3_kv4s8z;False;False;t1_gixfael;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixg738/;1610454488;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Cactusblah;;;[];;;;text;t2_e0pc4;False;False;[];;There should be another ranking category that combines each series. Having Gintama take up nearly half of the top 20 is dumb.;False;False;;;;1610400462;;False;{};gixg9do;False;t3_kv4s8z;False;True;t1_giwwb7x;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixg9do/;1610454526;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Ravioli_Heicho;;;[];;;;text;t2_3bls5ou;False;False;[];;"> A much better show *in your opinion* - -I mean... no shit? There’s no objective standard by which the quality of a show can be measured. A comparison of two shows is *always* an opinion! - ->leveled out it's still great but it's toxic western fanbase definitely overhypes it. - -I disagree, but you’re entitled to your opinion. Personally, I think it completely deserves the hype, and is easily in contention for GOAT-status.";False;False;;;;1610400478;;False;{};gixgakp;False;t3_kv4s8z;False;True;t1_gixe2vt;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixgakp/;1610454547;0;True;False;anime;t5_2qh22;;0;[]; -[];;;CrackTrap;;;[];;;;text;t2_131xtt;False;False;[];;Watch the anime and you will see why. We had huge episodes already that build incredibly off the previous seasons. Blame it more on series being split into seasons on mal;False;False;;;;1610400534;;False;{};gixgf03;False;t3_kv4s8z;False;True;t1_gix7eww;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixgf03/;1610454621;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;wildbee12;;;[];;;;text;t2_2xgka2r;False;False;[];;For real lmao. Before the show even aired it got mass voted with 1s. Waaaaa, how dare wit decide to make great pretender instead of AoT.;False;False;;;;1610400563;;False;{};gixgh7u;False;t3_kv4s8z;False;False;t1_gixbmpr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixgh7u/;1610454658;32;True;False;anime;t5_2qh22;;0;[]; -[];;;CrackTrap;;;[];;;;text;t2_131xtt;False;False;[];;Some people here can't seem to reconcile that AOT is better than their favourite anime xD.;False;False;;;;1610400577;;False;{};gixgi95;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixgi95/;1610454676;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Hououin_;;;[];;;;text;t2_6xpo9uwt;False;False;[];;"Tbh I’m a little salty that FMAB is #1. I prefer Steins;Gate to them both, but I feel there are plenty better shows regardless. I wouldn’t be too upset to see AOT take the crown for a bit tho";False;False;;;;1610400583;;False;{};gixgiqr;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixgiqr/;1610454684;0;True;False;anime;t5_2qh22;;0;[]; -[];;;wildbee12;;;[];;;;text;t2_2xgka2r;False;False;[];;Hypocrisy at its finest. Both fanbases have their shit fans.;False;False;;;;1610400659;;False;{};gixgomj;False;t3_kv4s8z;False;False;t1_giwwxww;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixgomj/;1610454784;29;True;False;anime;t5_2qh22;;0;[]; -[];;;CEO_of_piss;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Hameru Did Nothing Wrong;light;text;t2_46l8k5id;False;False;[];;Sure it’s really good, but there are a ton of really good anime out there;False;False;;;;1610400662;;False;{};gixgowt;False;t3_kv4s8z;False;False;t1_gixbefn;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixgowt/;1610454788;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dezoufinous;;;[];;;;text;t2_3i5289;False;False;[];;let's make it 1!!!;False;False;;;;1610400717;;False;{};gixgt2u;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixgt2u/;1610454859;1;True;False;anime;t5_2qh22;;0;[]; -[];;;y-c-c;;;[];;;;text;t2_abw7a;False;True;[];;"Don’t want to drag too much politics into this but in electoral reforms discussions there are always some people advocating for cardinal (aka scoring) systems (compared to ranked choice) which to me seems impossible to implement in real life. If people will 1 star bomb MAL scores they will definitely do that for politicians as well rendering the system useless. - -In a more principled way of voting maybe MAL can use relative scores to determine ranking (e.g. FMB 10, AoT 6, Steins Gate 9 means FMB > Steins Gate > AOT for this user) and use that to elect the winner. This only works if most users vote on multiple anime though as otherwise it’s hard to count users who only voted on 1 or 2 shows. - -(Or I guess we could just agree that MAL scores are just for fun and move on and not 1 star bomb) - ---- - -Edit: there was a deleted reply saying what I suggested seems like Bayesian averages and I already typed a reply but can’t post it to the deleted comment so here it is: - -I think there are some subtle differences but it’s unclear to me which one is better if the users aren’t completely gaming the system. - -E.g. in Bayesian average you can still 1-star bomb AoT by assigning it the lowest score; but in ranked choice it doesn’t matter: whether you vote FMA > Steins > … > (trash shows) > AoT, or FMA > AoT > … > (trash shows), it wouldn’t matter for the showdown between FMA and AoT. Ultimately it boils down to how many rated FMA higher than AOT versus how many AoT higher than FMA.";False;False;;;;1610400718;;1610411178.0;{};gixgt5s;False;t3_kv4s8z;False;False;t1_gix7lr0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixgt5s/;1610454860;58;True;False;anime;t5_2qh22;;0;[]; -[];;;iiiiiiiiiiip;;;[];;;;text;t2_i7ekk;False;False;[];;"The way you first presented made it sound like fact, not an opinion. And you jumped straight to blaming review bombs, even Japan doesn't consider Shingeki #1. - -Shingeki is amazing no doubt about that and it's high positions are all deserved, but the narrative of ""easily best ever"" is driven by western fans a large amount of which were introduced to anime by Shingeki. It is a great gateway anime but again that just inflates it's rankings even further.";False;False;;;;1610400725;;False;{};gixgtno;False;t3_kv4s8z;False;False;t1_gixgakp;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixgtno/;1610454867;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Ravioli_Heicho;;;[];;;;text;t2_3bls5ou;False;False;[];;Well, I guess you clearly haven’t seen past season 1.;False;False;;;;1610400727;;False;{};gixgtsn;False;t3_kv4s8z;False;True;t1_gixctas;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixgtsn/;1610454871;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dracogladio1741;;;[];;;;text;t2_152ganmm;False;False;[];;I have watched a lot of anime and FMA:B remains my favorite just pipping the likes of Death Note, Steins Gate and Gintama by a sliver. I have seen AOT and feel that it is superb but FMA:B has something I can't quite explain. It remains unsurpassed for me, a few come close though as I wrote.;False;False;;;;1610400818;;False;{};gixh0sq;False;t3_kv4s8z;False;False;t1_gix9r3l;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixh0sq/;1610454992;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Comander-07;;;[];;;;text;t2_6qc7kgv;False;False;[];;"Push forward and take the top spot - -sacrifice your hearts and FMAB - -SASAGEYO";False;False;;;;1610400923;;False;{};gixh91v;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixh91v/;1610455139;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;sushiwalker29;;;[];;;;text;t2_fmfkqto;False;False;[];;Shoulda been pingu in the city on the top, but nooo the damn full metal MAL scumbags are like this.;False;False;;;;1610400937;;False;{};gixha3z;False;t3_kv4s8z;False;True;t1_giwemmi;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixha3z/;1610455157;0;True;False;anime;t5_2qh22;;0;[]; -[];;;sushiwalker29;;;[];;;;text;t2_fmfkqto;False;False;[];;They did it with ishuzoku reviewers.;False;False;;;;1610400984;;False;{};gixhdr2;False;t3_kv4s8z;False;False;t1_giwt529;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixhdr2/;1610455225;6;True;False;anime;t5_2qh22;;0;[]; -[];;;RhythmicDisruption;;;[];;;;text;t2_15box70z;False;False;[];;"AoT can take the spot, FMA:B is dear to me but even an old great anime will eventually be outshone by newer anime that would have evolved from the past. Hell, I'm a bigger fan of the manga anyways and its author liked AoT enough to make fanart of it. - -But while I can't speak for Steins Gate because I haven't had time for it yet, Brotherhood imo is miles better than Code Geass and Death Note. Brotherhood has been an amazing gateway into anime, with wider appeal, and the story is pretty fucking amazing esp given it adapted a manga that started 2001. I hold it dear to my heart and while I liked Code Geass and Death Note, brushing off FMAB so easily in favour of those two is a shit take.";False;False;;;;1610401009;;False;{};gixhfp0;False;t3_kv4s8z;False;True;t1_gixb54z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixhfp0/;1610455259;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"> They deleted the scores in the Interspecies case, but I think that was a special thing, it was public that Nux was trying to manipulate the score - -It was not a special thing for Interspecies Reviewers. [It was a change that they had been planning long before Interspecies Reviewers even aired.](https://myanimelist.net/forum/?topicid=1824703) And it wasn't removed after Interspecies Reviewers, either. From that thread: - -> the rating troll scoring system is not fixed, done, never to be looked at again. We anticipate malicious individuals will continue to try to break our new system and create even more accounts to manipulate votes in the future. From here, we will be monitoring for usual changes in scoring patterns and will attempt to deal with illegitimate accounts before they grab a foothold. If they do manage to get past us, we will attempt to correct it as speedily as possible. - - -There was an additional algorithm to try to fix Interspecies Reviewers vote brigading from non-sockpuppet users, but that was only part of the story. What the main MAL change does is detect sockpuppet account ratings and not count them in the actual score average, while still including them in the score distribution you see.";False;False;;;;1610401045;;1610401459.0;{};gixhiiv;False;t3_kv4s8z;False;False;t1_gix1ws1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixhiiv/;1610455307;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Oujii;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Oujii/;light;text;t2_gk9to;False;False;[];;There are 3k 1\*, I don't think it has been solved yet.;False;False;;;;1610401107;;False;{};gixhnkc;False;t3_kv4s8z;False;True;t1_giwff55;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixhnkc/;1610455390;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610401121;;False;{};gixholv;False;t3_kv4s8z;False;True;t1_gixf4p3;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixholv/;1610455409;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Honestly, I wish it didn't come to this but if we'll have to do it then we'll have to do it;False;True;;comment score below threshold;;1610401180;;False;{};gixht44;True;t3_kv4s8z;False;True;t1_gixf4qz;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixht44/;1610455495;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;No, that other user was wrong. [MAL didn't make their anti vote manipulation algorithm specifically for Interspecies Reviewers](https://myanimelist.net/forum/?topicid=1824703) (they were creating it long before Reviewers), and they kept it after Reviewers. What MAL's algorithm does is detect sockpuppet accounts and discounts scores from those accounts in their tally while still keeping those scores visible in the score distribution.;False;False;;;;1610401212;;False;{};gixhvkc;False;t3_kv4s8z;False;False;t1_gix2ydm;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixhvkc/;1610455538;21;True;False;anime;t5_2qh22;;0;[]; -[];;;yeetskeet3;;;[];;;;text;t2_232wjff8;False;False;[];;Honestly 115-125 is literal peak fiction to me;False;False;;;;1610401216;;False;{};gixhvuz;False;t3_kv4s8z;False;False;t1_gixeit0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixhvuz/;1610455543;27;True;False;anime;t5_2qh22;;0;[]; -[];;;FH261169;;;[];;;;text;t2_80zctk82;False;False;[];;i never got why fmab was number one. i never really enjoyed it, compared to attack on titan where im jumping for joy every second.;False;False;;;;1610401223;;False;{};gixhwd2;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixhwd2/;1610455551;0;True;False;anime;t5_2qh22;;0;[]; -[];;;bigbrother_Dogtooth;;;[];;;;text;t2_2s9h609c;False;False;[];;"FMAB also has a ""Nazi vs Jews"" plot point. - -It's the entire Ishvalan war and occupation by an Imperial European esque power whose Leader is called ""Fuhrer"".";False;False;;;;1610401231;;False;{};gixhwzv;False;t3_kv4s8z;False;False;t1_giwf51a;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixhwzv/;1610455563;12;True;False;anime;t5_2qh22;;0;[]; -[];;;drag0n_l0rd;;;[];;;;text;t2_13kc0q;False;False;[];;Not arguing, just genuinely curious, but what other ratings should one go by? I thought MAL was the IMDb/Metacritic of the Anime and Manga world. I’ve been basing what I watch and read around that for years. If there is a rating system or a site that is more accurate I would love to know. Thanks!;False;False;;;;1610401264;;False;{};gixhzlj;False;t3_kv4s8z;False;True;t1_giw9hbo;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixhzlj/;1610455608;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KiRiT000000;;;[];;;;text;t2_43xro46x;False;False;[];;No they are not thinking it like that, they are thinking it as aot S4 their favourite anime and they should just give it 10/10 without any context. I mean hell, 5 episodes is better then steins gate? Hxh? Or other underated masterpiece like owarimonogatari S2???? Its just obsurd.;False;False;;;;1610401275;;False;{};gixi0gz;False;t3_kv4s8z;False;False;t1_gix03mz;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixi0gz/;1610455623;20;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ikr😂;False;False;;;;1610401277;;False;{};gixi0kp;True;t3_kv4s8z;False;True;t1_gixgi95;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixi0kp/;1610455624;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Yes !;False;False;;;;1610401293;;False;{};gixi1ra;True;t3_kv4s8z;False;True;t1_gixh91v;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixi1ra/;1610455645;2;True;False;anime;t5_2qh22;;0;[]; -[];;;yeetskeet3;;;[];;;;text;t2_232wjff8;False;False;[];;120-122?;False;False;;;;1610401294;;False;{};gixi1wo;False;t3_kv4s8z;False;True;t1_gixedmd;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixi1wo/;1610455647;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Vintrial;;;[];;;;text;t2_dx6ct;False;False;[];;re-watch fmab and you will still say its top3 easily;False;False;;;;1610401317;;False;{};gixi3mt;False;t3_kv4s8z;False;False;t1_gix6ydg;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixi3mt/;1610455676;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;That wasn't developed as well as I'd like. Remember the we're talking about an anime that will be considered the best of all time. All time, there's no room for error.;False;True;;comment score below threshold;;1610401330;;False;{};gixi4la;True;t3_kv4s8z;False;True;t1_gixhwzv;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixi4la/;1610455691;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;Cancertoad;;;[];;;;text;t2_37fwxi3g;False;False;[];;The way it is now there are completed series and then individual seasons on the same list. It says top 100 anime, therefore it should be the whole anime and not seasons. A big problem with having individual seasons rated is that only fans of season 1 are going to watch season 2 of something. So the score for season 2 will be inflated. That's how pretty much every season of Gintama is all over the top 100 list.;False;False;;;;1610401357;;False;{};gixi6lm;False;t3_kv4s8z;False;False;t1_gixb9yq;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixi6lm/;1610455726;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ikr, it's crazy. Fmab for me at best is a 8/10;False;False;;;;1610401374;;False;{};gixi7ya;True;t3_kv4s8z;False;True;t1_gixhwd2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixi7ya/;1610455749;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Dedicate your hearts to humanity !!!!!;False;False;;;;1610401388;;False;{};gixi8zs;True;t3_kv4s8z;False;True;t1_gixgt2u;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixi8zs/;1610455768;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aldorn;;;[];;;;text;t2_hmmdr;False;False;[];;I think it deserves to be 1. Incredible show;False;False;;;;1610401494;;False;{};gixih9y;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixih9y/;1610455910;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigbrother_Dogtooth;;;[];;;;text;t2_2s9h609c;False;False;[];;"*All* shows have imperfections and errors. - -So there's always room for error.";False;False;;;;1610401499;;False;{};gixihlx;False;t3_kv4s8z;False;False;t1_gixi4la;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixihlx/;1610455916;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ChickenCola22;;;[];;;;text;t2_7k6ugx50;False;False;[];;Impressive. FMAB has been unsurpassed for so long. Well although I love FMAB and will be a little sad to see it dethroned, it would be even sadder if anime were to never reach such heights again;False;False;;;;1610401588;;False;{};gixioj9;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixioj9/;1610456037;1;True;False;anime;t5_2qh22;;0;[]; -[];;;icatsouki;;;[];;;;text;t2_u8e1k;False;False;[];;wait this season won't continue until the end of the story?;False;False;;;;1610401612;;False;{};gixiqfc;False;t3_kv4s8z;False;True;t1_gixeit0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixiqfc/;1610456068;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MathManGetsPaid;;;[];;;;text;t2_44cmsrm5;False;False;[];;That’s where the first part is ending I’ve heard. There’s either going to be a second part to finish up the story once the manga is done or a movie to wrap up the rest;False;False;;;;1610401620;;False;{};gixir5b;False;t3_kv4s8z;False;True;t1_gixeit0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixir5b/;1610456081;1;True;False;anime;t5_2qh22;;0;[]; -[];;;brownguy6391;;;[];;;;text;t2_3et2u982;False;False;[];;FMA definitely is an amazing show which I can appreciate for what it is;False;False;;;;1610401652;;False;{};gixitks;False;t3_kv4s8z;False;True;t1_gixfxc5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixitks/;1610456121;3;True;False;anime;t5_2qh22;;0;[]; -[];;;icatsouki;;;[];;;;text;t2_u8e1k;False;False;[];;never watched it, is it great?;False;False;;;;1610401658;;False;{};gixiu1c;False;t3_kv4s8z;False;True;t1_gix2ty6;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixiu1c/;1610456129;1;True;False;anime;t5_2qh22;;0;[]; -[];;;genasugelan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Genasugelan;light;text;t2_15kv3y;False;False;[];;Lmao, yes. I totally forgot about that. That was so glorious.;False;False;;;;1610401667;;False;{};gixiurk;False;t3_kv4s8z;False;True;t1_gix4hx2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixiurk/;1610456142;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lunatoons291;;;[];;;;text;t2_16nhl574;False;False;[];;No way, it’s definitely later on once paths comes into play;False;False;;;;1610401670;;False;{};gixiv0t;False;t3_kv4s8z;False;False;t1_gixckhn;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixiv0t/;1610456146;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Sharebear42019;;;[];;;;text;t2_z1jb0;False;False;[];;AoT fans can be just as brutal as FMA fans lol;False;False;;;;1610401685;;False;{};gixiw64;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixiw64/;1610456167;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"[Literally false](https://myanimelist.net/forum/?topicid=1824703): - -> This system has been in planning for 6 months. Before Chihayafuru 3, before Ishuzoku Reviewers.";False;False;;;;1610401726;;False;{};gixiz7y;False;t3_kv4s8z;False;False;t1_gix2xc2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixiz7y/;1610456221;6;True;False;anime;t5_2qh22;;0;[]; -[];;;FH261169;;;[];;;;text;t2_80zctk82;False;False;[];;the series was planned 5 years prior to the first chapter releasing;False;False;;;;1610401743;;False;{};gixj0jk;False;t3_kv4s8z;False;False;t1_gixctas;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixj0jk/;1610456244;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Sharebear42019;;;[];;;;text;t2_z1jb0;False;False;[];;That’s an opinion, not a fact;False;False;;;;1610401780;;False;{};gixj3dt;False;t3_kv4s8z;False;True;t1_giwfr2a;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixj3dt/;1610456292;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;genasugelan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Genasugelan;light;text;t2_15kv3y;False;False;[];;It's amazing. Just skip the first 2 episodes since they are just weak filler celebration for manga readers. The story begins on episode 3 and by episode 20 it gets super fucking funny. The humor is next-level shit and the story arcs are super good.;False;False;;;;1610401792;;False;{};gixj49u;False;t3_kv4s8z;False;False;t1_gixiu1c;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixj49u/;1610456308;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Sharebear42019;;;[];;;;text;t2_z1jb0;False;False;[];;The only salt I see in this thread is AoT fans saying FMA is overrated lmao there’s like 1 single comment saying the opposite;False;False;;;;1610401851;;False;{};gixj8wj;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixj8wj/;1610456386;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Ravioli_Heicho;;;[];;;;text;t2_3bls5ou;False;False;[];;"> The way you first presented made it sound like fact, not an opinion. - -No. - -Discussions on the quality of a tv show are always, literally *always*, subjective. There is no objective metric to measure them by. So you don’t have to specify that you’re expressing an opinion, because it’s implicit in the nature of the discussion - it couldn’t be anything else. - ->And you jumped straight to blaming review bombs, - -It *is* being review bombed, and very obviously so. *FMA:B* has 12 times as many total reviews as Season 4, but only 3 times as many 1-star reviews. *Stein’s Gate* has 9 times the total reviews, but only a thousand more 1-stars. HunterxHunter has 9 times as many total reviews, but only 400 more 1-stars. - -These are not normal distributions. It is immediately and blatantly apparent that people are flooding the show with poor reviews to manipulate the rankings. - - ->even Japan doesn't consider Shingeki #1. - -So? Why should what *I* like be in any way based on what *Japan* likes? - -Also, just for the record, Shingeki wasn’t a gateway anime for me, and that isn’t why I like it. I like it because it’s an absolute masterclass in writing.";False;False;;;;1610401856;;1610410202.0;{};gixj99g;False;t3_kv4s8z;False;True;t1_gixgtno;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixj99g/;1610456393;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;YolloKars;;;[];;;;text;t2_zxxla;False;False;[];;"I actually agree with him funnily. Chapter 131 was 5 months ago and every new chapter since has been mediocre or worse imo. - -Last chapter dialogue was a joke, completely out of tone with the situation and whatever ending Isayama is going for this doesn't help a bit. Now I'm more hyped for the anime than for the end of the manga. - -I just want it to not end bad, but Isayama's reference for the type of ending he wants now doesn't leave me very hopeful. Let's just wait and see for now.";False;False;;;;1610401952;;False;{};gixjgtu;False;t3_kv4s8z;False;False;t1_gix5vux;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixjgtu/;1610456527;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Inferno007;;MAL;[];;http://myanimelist.net/animelist/Inferno007;dark;text;t2_7zx4i;False;False;[];;I don’t think that’s a very good argument for what makes a show great. You’re also forgetting that FMA’s world building was grandiose on its own scale. By the end of the series the door is still left open as to what the brothers can discover in regards to Alchemy from other countries. Just because show shifts from A vs B to C vs D does not make it a great show on its own.;False;False;;;;1610401977;;False;{};gixjir5;False;t3_kv4s8z;False;True;t1_giwf51a;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixjir5/;1610456560;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ILOVETOSWEAR;;;[];;;;text;t2_sea8x;False;False;[];;If you look at it that way, I agree;False;False;;;;1610402071;;False;{};gixjprz;False;t3_kv4s8z;False;False;t1_gixfkaa;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixjprz/;1610456685;48;True;False;anime;t5_2qh22;;0;[]; -[];;;mimrat6;;;[];;;;text;t2_z75k2;False;False;[];;"I think if what’s going on in the manga currently continues it won’t stay there for long. - -***Slight SPOILER WARNING*** - The manga is towards the end and currently feels like Isayama is rushing through to the end. I once had trust in him but lately that trust has dwindled with the rushed new Avengers Eldian Dream Team.";False;False;;;;1610402098;;False;{};gixjrvd;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixjrvd/;1610456723;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Toasted_FlapJacks;;;[];;;;text;t2_a9ikm;False;False;[];;Ah yes, the tried and true, fight fire with fire method.;False;False;;;;1610402127;;False;{};gixju4e;False;t3_kv4s8z;False;False;t1_giwx3q1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixju4e/;1610456764;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ILOVETOSWEAR;;;[];;;;text;t2_sea8x;False;False;[];;Very, takes me back to dbz times when something awesome happened (like goku ssj first time) and you wanted to discuss it immediately with your friends. Aot really is a different breed.;False;False;;;;1610402314;;False;{};gixk8f2;False;t3_kv4s8z;False;False;t1_gix9qih;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixk8f2/;1610457020;5;True;False;anime;t5_2qh22;;0;[]; -[];;;RogueKT;;;[];;;;text;t2_voen9;False;False;[];;Season 3 part 2 was also number 1 at some point we have to wait until the season is over to see where it will settle but honestly AoT deserves the no.1 spot.;False;False;;;;1610402349;;False;{};gixkb1u;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixkb1u/;1610457083;0;True;False;anime;t5_2qh22;;0;[]; -[];;;DominelKira;;;[];;;;text;t2_3s08wif3;False;False;[];;"How is this fun in any way? These threads just breed toxicity. - -Threads like these are a staple on MAL , and now on here too. What a shame.";False;False;;;;1610402353;;False;{};gixkbdt;False;t3_kv4s8z;False;False;t1_gixck6x;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixkbdt/;1610457089;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Toasted_FlapJacks;;;[];;;;text;t2_a9ikm;False;False;[];;"A lot of people think S1 was just above average. For me, I remember being blown away by the show's concept, OST, and action that season, so I rate it higher. - -I respect your opinion though. Some popular anime don't resonate with everyone. For me, it was Steins;Gate which I struggled to even finish.";False;False;;;;1610402359;;False;{};gixkbv0;False;t3_kv4s8z;False;False;t1_giwu6td;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixkbv0/;1610457097;14;True;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;The story is phenomenal;False;False;;;;1610402377;;False;{};gixkdab;False;t3_kv4s8z;False;False;t1_giwvsgj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixkdab/;1610457121;10;True;False;anime;t5_2qh22;;0;[]; -[];;;spinfinity;;;[];;;;text;t2_6czvz;False;False;[];;"FMAB will always be my favorite anime by a pretty wide margin but I don't really care if AoT overtakes it, MAL isn't the end-all-be-all objective source of what is ""best,"" which entirely subjective anyway. - -That said, AoT is also an excellent series and it would deserve it! I'll never really understand why so many people get up in arms about anime opinions (I know, the internet... but still).";False;False;;;;1610402526;;False;{};gixkoml;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixkoml/;1610457329;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DopeTroller;;;[];;;;text;t2_2x9f3vuh;False;False;[];;I'm curious about what you consider a masterpiece;False;False;;;;1610402551;;False;{};gixkqic;False;t3_kv4s8z;False;True;t1_giwuadm;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixkqic/;1610457362;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mad_Scientist_Senku;;;[];;;;text;t2_3a2in6vv;False;False;[];;Imagine caring about MAL scores;False;False;;;;1610402594;;False;{};gixktri;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixktri/;1610457427;9;True;False;anime;t5_2qh22;;0;[]; -[];;;iiiiiiiiiiip;;;[];;;;text;t2_i7ekk;False;False;[];;Another great moment but a smaller peak. It was great but the turn in the narrative was already building up to that. This moment was especially great because it cemented a turn in the story.;False;False;;;;1610402614;;False;{};gixkv8l;False;t3_kv4s8z;False;True;t1_gixi1wo;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixkv8l/;1610457454;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ryan29081996;;;[];;;;text;t2_3qfsjgan;False;False;[];;Why do you have such hate boner against FMAB so much??;False;False;;;;1610402618;;False;{};gixkvl9;False;t3_kv4s8z;False;False;t1_giwctsq;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixkvl9/;1610457460;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDarkerKniht;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/olukun;light;text;t2_oksam;False;False;[];;its just annoying when im looking for a masterpiece and after i watch the top ranked anime im dissappointed;False;False;;;;1610402633;;False;{};gixkwp8;False;t3_kv4s8z;False;True;t1_giw9hbo;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixkwp8/;1610457480;1;True;False;anime;t5_2qh22;;0;[]; -[];;;An-Omlette-NamedZoZo;;;[];;;;text;t2_u7ef7;False;False;[];;Idk why people care so much about MAL rankings lmao it’s just a number that means nothing;False;False;;;;1610402672;;False;{};gixkzlm;False;t3_kv4s8z;False;True;t1_giw9is4;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixkzlm/;1610457533;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MilkToastKing;;;[];;;;text;t2_13tvvu;False;False;[];;Time to see how well MAL's recent anti-brigading algorithm does against new accounts which inevitably will be made to spam 1's;False;False;;;;1610402709;;False;{};gixl2bx;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixl2bx/;1610457581;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;On [Anikore, which is the Japanese equivalent of MAL, the top spot is...Konosuba Season 2](https://www.anikore.jp/pop_ranking/). However, this isn't the highest rated, per se, but a based on a weighted score for which I'm not completely sure of the algorithm. The top spot when it comes to rating is [3gatsu no Lion Season 2](https://www.anikore.jp/pop_ranking/oc:reviewRank/).;False;False;;;;1610402715;;False;{};gixl2sg;False;t3_kv4s8z;False;True;t1_gix1bz8;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixl2sg/;1610457589;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Crossx1993;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/crossx1993;light;text;t2_2ix77wrd;False;False;[];;one piece;False;False;;;;1610402731;;False;{};gixl3y5;False;t3_kv5m94;False;True;t3_kv5m94;/r/anime/comments/kv5m94/which_should_i_watch_one_piece_or_dragon_balls/gixl3y5/;1610457609;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iiiiiiiiiiip;;;[];;;;text;t2_i7ekk;False;False;[];;Paths are great in some ways, a cop out in others and definitely weaken some of the tight story telling up until that point.;False;True;;comment score below threshold;;1610402738;;False;{};gixl4g4;False;t3_kv4s8z;False;True;t1_gixiv0t;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixl4g4/;1610457618;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;Weebs-Chan;;;[];;;;text;t2_976fajx4;False;False;[];;It's the only anime (and I watched hundreds of anime) that made me laugh. A real laugh. With my voice. That's a really funny anime. Recommended even if it's pretty long.;False;False;;;;1610402754;;False;{};gixl5pj;False;t3_kv4s8z;False;False;t1_gixiu1c;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixl5pj/;1610457639;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"On [Anikore, which is the Japanese equivalent of MAL, the top spot is...Konosuba Season 2](https://www.anikore.jp/pop_ranking/). However, this isn't the highest rated, per se, but a based on a weighted score for which I'm not completely sure of the algorithm. The top spot when it comes to rating is [3gatsu no Lion Season 2](https://www.anikore.jp/pop_ranking/oc:reviewRank/). - -This would probably differ from the general Japanese public, since Anikore is likely mostly used by otaku.";False;False;;;;1610402779;;False;{};gixl7mr;False;t3_kv4s8z;False;False;t1_gix14jv;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixl7mr/;1610457673;6;True;False;anime;t5_2qh22;;0;[]; -[];;;PotatoKaboose;;;[];;;;text;t2_47iz2hsb;False;False;[];;GoT had 8 seasons, the first few were critically acclaimed but the last two (particularly season 8) went way off the rails in the worst of ways. If they were all rated together, they would all have the same awful score, despite the first few seasons being some of the best TV in the past few years;False;False;;;;1610402786;;False;{};gixl864;False;t3_kv4s8z;False;False;t1_giwwkkr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixl864/;1610457682;22;True;False;anime;t5_2qh22;;0;[]; -[];;;LeXxleloxx;;;[];;;;text;t2_14m50a;False;False;[];;FMAB get ready to be dethroned;False;False;;;;1610402817;;False;{};gixlalc;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixlalc/;1610457722;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yubisaki_Milk_Tea;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/;light;text;t2_m2aw7;False;False;[];;And IMBD is what we use for normies in the West.;False;False;;;;1610402823;;False;{};gixlb0k;False;t3_kv4s8z;False;True;t1_gixl7mr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixlb0k/;1610457730;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MilkToastKing;;;[];;;;text;t2_13tvvu;False;False;[];;They should make a separate list if they wanted to go that route, seeing the differences between certain seasons and entries is very useful imo.;False;False;;;;1610402831;;1610403192.0;{};gixlbmr;False;t3_kv4s8z;False;True;t1_giwwb7x;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixlbmr/;1610457740;2;True;False;anime;t5_2qh22;;0;[]; -[];;;pepperminthippos;;;[];;;;text;t2_9esi1c4;False;False;[];;SAO;False;False;;;;1610402861;;False;{};gixldxj;False;t3_kv4s8z;False;False;t1_gixg3ef;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixldxj/;1610457787;12;True;False;anime;t5_2qh22;;0;[]; -[];;;ryan29081996;;;[];;;;text;t2_3qfsjgan;False;False;[];;"I'm a big fan of FMAB, but what's the worse thing hardcore FMA fans have done before? The only time I would consider FMA fans as ""bad"" is when people argue which series is better than which, but that's about it. If you join the FMA sub, it's mostly memes and fan arts or anything related to the series, nothing that would nearly be as ""toxic"" as the other fandoms.";False;False;;;;1610402878;;False;{};gixlf8a;False;t3_kv4s8z;False;False;t1_gixbmpr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixlf8a/;1610457810;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610402918;;False;{};gixli4d;False;t3_kv4s8z;False;True;t1_gixcfxr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixli4d/;1610457860;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;PotatoKaboose;;;[];;;;text;t2_47iz2hsb;False;False;[];;"I see what you mean, but a major reason people go to sites like MAL is to see what airing shows are good, so if there was no way to tell what shows are currently good, you wouldn't be able to pick which shows to try out. - -Basically a way of ranking which currently airing shows are the best so far is useful for determining which shows right now are worth your time";False;False;;;;1610402928;;False;{};gixlisj;False;t3_kv4s8z;False;False;t1_giwtieb;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixlisj/;1610457872;4;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;It might. It depends on How well The anime onlies Will like The Avengers.;False;False;;;;1610402958;;False;{};gixll26;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixll26/;1610457914;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeXxleloxx;;;[];;;;text;t2_14m50a;False;False;[];;no;False;True;;comment score below threshold;;1610402970;;False;{};gixllyt;False;t3_kv4s8z;False;True;t1_giwzpbi;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixllyt/;1610457928;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;WhosYourDade;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Pota/animelist;light;text;t2_gybsb;False;False;[];;happens every time because fanboys give it a 10 before it even reaches 1/4 of the episodes;False;False;;;;1610402986;;False;{};gixln3o;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixln3o/;1610457948;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Toasted_FlapJacks;;;[];;;;text;t2_a9ikm;False;False;[];;Exactly. When I first binged it, I thought it was great but not amazing. After some reflection on the gravity of the story, how the characters fit in, and the overall presentation, it's top tier.;False;False;;;;1610403022;;False;{};gixlps7;False;t3_kv4s8z;False;True;t1_gixkdab;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixlps7/;1610457992;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dopamine-high;;;[];;;;text;t2_3k3ttaax;False;False;[];;Nah not really. One of the gintama seasons was above FMA:B before it’s airing and Your Name held the #1 spot at one point.;False;False;;;;1610403049;;False;{};gixlrpg;False;t3_kv4s8z;False;False;t1_giwxpvd;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixlrpg/;1610458025;32;True;False;anime;t5_2qh22;;0;[]; -[];;;fuzzynavel34;;MAL;[];;http://myanimelist.net/animelist/hoosierdaddy0827;dark;text;t2_fwokc;False;False;[];;I am waiting to binge this last season, it’s been awful waiting lol;False;False;;;;1610403051;;False;{};gixlrtq;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixlrtq/;1610458027;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wholelottavex;;skip7;[];;;dark;text;t2_99s2nkky;False;False;[];;Just couldn’t click for me, story didn’t grab me;False;False;;;;1610403052;;False;{};gixlrwb;False;t3_kv4s8z;False;True;t1_gixkdab;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixlrwb/;1610458028;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Weebs-Chan;;;[];;;;text;t2_976fajx4;False;False;[];;"ngl my mad scientist heart is still proud to see steins;gate 2nd. Hope it will stay in the top 3. Ik it's not important but it's a good way too recommend it to friends (even if fmab is first and I hate it). And Gintama deserve to be 3rd. Anyway. El. Psy. Kongroo";False;False;;;;1610403057;;False;{};gixls95;False;t3_kv4s8z;False;True;t1_gixciux;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixls95/;1610458035;2;True;False;anime;t5_2qh22;;0;[]; -[];;;iiiiiiiiiiip;;;[];;;;text;t2_i7ekk;False;False;[];;Hah, you've definitely got me there, extremely comparable in that sense.;False;False;;;;1610403079;;False;{};gixltxd;False;t3_kv4s8z;False;False;t1_gixldxj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixltxd/;1610458063;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ChallengingGravity;;;[];;;;text;t2_reb1hdw;False;False;[];;Since I don't think FMA: Brotherhood is anywhere close to the best anime, I dont think Ill give any Fs if Attack on Titan takes the irrelevant placing.;False;False;;;;1610403081;;False;{};gixlu24;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixlu24/;1610458065;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OhMilla;;;[];;;;text;t2_84kkn;False;False;[];;AOT fans might be the only fans that care about imdb single episode ratings;False;False;;;;1610403087;;False;{};gixluh2;False;t3_kv4s8z;False;False;t1_gix0zhv;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixluh2/;1610458072;72;True;False;anime;t5_2qh22;;0;[]; -[];;;MilkToastKing;;;[];;;;text;t2_13tvvu;False;False;[];;"No, it's estimated to end with a few chapters still left to go. Some people speculate a ""Final season part 2"", others expect a movie or other such OVA to cap it off. I've heard Manga fans in favor of the Movie route if only so that the ending can get high production values and not have to censor anything for television, but I'm not a manga reader so I have no personal take";False;False;;;;1610403101;;1610403449.0;{};gixlvie;False;t3_kv4s8z;False;False;t1_gixiqfc;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixlvie/;1610458089;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Weebs-Chan;;;[];;;;text;t2_976fajx4;False;False;[];;Why are you downvoted ?;False;False;;;;1610403145;;False;{};gixlytr;False;t3_kv4s8z;False;False;t1_giww50p;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixlytr/;1610458146;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Deadqoop;;;[];;;;text;t2_10r7m8;False;False;[];;No you don't, just ignore them lmao.;False;False;;;;1610403172;;False;{};gixm0vs;False;t3_kv4s8z;False;True;t1_giwy7cd;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixm0vs/;1610458183;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kvorncage;;;[];;;;text;t2_6k4b6is2;False;False;[];;Bro I am a hardcore aot lover. But your points aren't valid:\ cowboy bebop is actually a really good anime. Although I don't agree with him but I do know cowboy bebop is one of it's kind.;False;False;;;;1610403209;;False;{};gixm3n8;False;t3_kv4s8z;False;True;t1_giwi10j;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixm3n8/;1610458231;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Humorn1k;;;[];;;;text;t2_5v1a75xy;False;False;[];;I dont understand, why you rate anime that has not finished yet;False;False;;;;1610403214;;False;{};gixm3yu;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixm3yu/;1610458237;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Weebs-Chan;;;[];;;;text;t2_976fajx4;False;False;[];;"Actually steins;gate has 2 season but you're point isn't really wrong";False;False;;;;1610403246;;False;{};gixm6fo;False;t3_kv4s8z;False;True;t1_gix6hgz;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixm6fo/;1610458283;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Demolution-Gamer786;;;[];;;;text;t2_2y4pbcre;False;False;[];;"MAL < MPL (My personal list)";False;False;;;;1610403255;;False;{};gixm737;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixm737/;1610458294;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JoelMahon;;;[];;;;text;t2_ebf9d;False;False;[];;yeah, literally 1 in 30 people think it's utter garbage (no chance), or rather, are butthurt that it's popular and they think it's mediocre;False;False;;;;1610403261;;False;{};gixm7lz;False;t3_kv4s8z;False;True;t1_giw2s5a;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixm7lz/;1610458303;2;True;False;anime;t5_2qh22;;0;[]; -[];;;deedeekei;;MAL;[];;http://myanimelist.net/animelist/Chronicx;dark;text;t2_ex7i1;False;False;[];;Everything in real life is literally like this welcome to politics;False;False;;;;1610403323;;False;{};gixmc91;False;t3_kv4s8z;False;True;t1_giwuuhu;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixmc91/;1610458385;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pepperminthippos;;;[];;;;text;t2_9esi1c4;False;False;[];;"weeeell say its not rly an immaculate comparison because with aot s1 it got rly mainstream and had a lot of ""dont watch anime, only aot"" fans but after the 6-year wait and especially at this pt with final season it isnt like that anymore";False;False;;;;1610403344;;False;{};gixmdso;False;t3_kv4s8z;False;False;t1_gixltxd;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixmdso/;1610458413;5;True;False;anime;t5_2qh22;;0;[]; -[];;;uglythingss;;;[];;;;text;t2_23wc3u8t;False;False;[];;How can you have so little going on in your life that you have to maipulate ratings on an anime site.;False;False;;;;1610403346;;False;{};gixmdxo;False;t3_kv4s8z;False;True;t1_giw9is4;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixmdxo/;1610458415;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Weebs-Chan;;;[];;;;text;t2_976fajx4;False;False;[];;Hello, dear snk hater;False;False;;;;1610403375;;False;{};gixmg3x;False;t3_kv4s8z;False;True;t1_giwtd3y;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixmg3x/;1610458454;1;True;False;anime;t5_2qh22;;0;[]; -[];;;royaldocks;;;[];;;;text;t2_gb8kz;False;False;[];;"AOT is a great anime newcomers too. - -Its like Fate/Zero (Although nowhere near as accessible as AOT) Despite all the physiological things going on there is a lot of shounen seque action to hook newcomers up.";False;False;;;;1610403426;;False;{};gixmk10;False;t3_kv4s8z;False;True;t1_giwwtq1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixmk10/;1610458522;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JoelMahon;;;[];;;;text;t2_ebf9d;False;False;[];;"there's a good composite system imo, you take the median, putting 1 is as bad as putting 7 (or anything below the resultant median). - -Sure, it can drag it down, but no more than their honest score could, which we assume is below FMAB's score if they're voting. - -The actual problem is that not everyone votes on everything, if they did the result would be pretty ideal. Not practical for MAL, but mandatory voting is possible for real elections and policies.";False;False;;;;1610403450;;False;{};gixmlrr;False;t3_kv4s8z;False;False;t1_gixgt5s;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixmlrr/;1610458552;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Kae_Jae;;;[];;;;text;t2_hlb56;False;False;[];;s4 so far has proved itself as good if not better than s3p2 imo;False;False;;;;1610403515;;False;{};gixmql4;False;t3_kv4s8z;False;True;t1_giw2v9m;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixmql4/;1610458655;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FinixDon;;;[];;;;text;t2_7jv5j585;False;False;[];;They deserve it. It's amazeballs!!;False;False;;;;1610403554;;False;{};gixmtk0;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixmtk0/;1610458710;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Weebs-Chan;;;[];;;;text;t2_976fajx4;False;False;[];;"Steins;gate fans ! Rise up ! We must protect aot ! We tried for years but we can't take the 1st place. Now we must help aot !!! Nah joking. But don't want to see FMAB first anymore.";False;False;;;;1610403597;;False;{};gixmwqq;False;t3_kv4s8z;False;True;t1_giwf3nn;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixmwqq/;1610458767;2;True;False;anime;t5_2qh22;;0;[]; -[];;;uglythingss;;;[];;;;text;t2_23wc3u8t;False;False;[];;GoT went downhill starting season 5, before that it got better with each season in my eyes with season 4 being the best season.;False;False;;;;1610403599;;False;{};gixmwvi;False;t3_kv4s8z;False;True;t1_giwis7f;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixmwvi/;1610458769;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Maybe for other WSJ titles, but not for Fujimoto's works at least haha;False;False;;;;1610403611;;False;{};gixmxsa;False;t3_kv4s8z;False;False;t1_gixcxtt;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixmxsa/;1610458785;7;True;False;anime;t5_2qh22;;0;[]; -[];;;tekkenjin;;;[];;;;text;t2_ymz1t;False;False;[];;I hate the fmab fans that will ensure that nothing will surpass it. I do like fma but the fandom can be a little toxic.;False;False;;;;1610403616;;False;{};gixmy6r;False;t3_kv4s8z;False;False;t1_giwxpvd;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixmy6r/;1610458792;26;True;False;anime;t5_2qh22;;0;[]; -[];;;GetMekdBro;;MAL;[];;https://myanimelist.net/profile/GetMekdBro;dark;text;t2_129uj3;False;False;[];;It deserves it. Out of the super popular anime AoT is by far the best;False;False;;;;1610403630;;False;{};gixmz9h;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixmz9h/;1610458811;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Satanish;;MAL;[];;http://myanimelist.net/profile/Tsuke;dark;text;t2_cpjsk;False;False;[];;">Lmao AoT fans are just as bad as the FMAB fans they complain about - -Exactly. People are too scared to acknowledge that ""their side"" makes the same mistake as the ""other side"".";False;False;;;;1610403725;;False;{};gixn6ac;False;t3_kv4s8z;False;False;t1_gixbmpr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixn6ac/;1610458937;29;True;False;anime;t5_2qh22;;0;[]; -[];;;Gundam2024;;;[];;;;text;t2_7v8z1jsb;False;False;[];;Whelp, it is what it is... the normies are coming... and they’re either gonna be chads and let anime stay the way it is or just turn it into a Facebook/Twitter echo box...;False;False;;;;1610403831;;False;{};gixndy8;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixndy8/;1610459075;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FrancisGalloway;;;[];;;;text;t2_az31w;False;False;[];;"I love both AoT and FMA, but I really don't know if AoT deserves the top spot. It's had some hype moments, and a really well rolled-out story, but frankly, it's far from perfect. We'll obviously have to wait and see how it ends; one of the biggest reasons FMA is #1 is because it had a satisfying, well-earned conclusion.";False;False;;;;1610403832;;False;{};gixne1o;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixne1o/;1610459076;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NALittleFox;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Aruria;light;text;t2_za2um;False;False;[];;dunno why mal allows shows to go on leaderboards while theyre still airing. They can keep the score there but it makes no sense for it to impact the top spots when all of those shows have been done for many years.;False;False;;;;1610403965;;False;{};gixnntt;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixnntt/;1610459252;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cuminaburger;;;[];;;;text;t2_6n7yv23g;False;False;[];;Whatever gets their nipples hard I guess;False;False;;;;1610404058;;False;{};gixnuu4;False;t3_kv4s8z;False;False;t1_gixluh2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixnuu4/;1610459379;31;True;False;anime;t5_2qh22;;0;[]; -[];;;its_real_I_swear;;;[];;;;text;t2_emsbs;False;False;[];;At least it's a valid opinion that it's one of the best anime of all time. Not one I share, but you can argue it. Since it is animated all the way through and tells some kind of coherent story there is no argument that it's one of the worst anime of all time.;False;False;;;;1610404180;;False;{};gixo3x3;False;t3_kv4s8z;False;False;t1_gix95be;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixo3x3/;1610459564;30;True;False;anime;t5_2qh22;;0;[]; -[];;;FrancisGalloway;;;[];;;;text;t2_az31w;False;False;[];;It's just hard to think of anything FMA did *wrong*. Other shows have done certain things better, but every part of FMA:B was good.;False;False;;;;1610404190;;False;{};gixo4nz;False;t3_kv4s8z;False;False;t1_gix6ydg;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixo4nz/;1610459577;19;True;False;anime;t5_2qh22;;0;[]; -[];;;_Zig;;;[];;;;text;t2_r3byl;False;False;[];;Seems someone’s salty their fave animu isn’t in the top.;False;False;;;;1610404221;;False;{};gixo713;False;t3_kv4s8z;False;True;t1_giwthxl;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixo713/;1610459618;0;True;False;anime;t5_2qh22;;0;[]; -[];;;_Zig;;;[];;;;text;t2_r3byl;False;False;[];;Gintama has eclipsed FMAB multiple times, a few anime have as well, but it keeps returning on top eventually.;False;False;;;;1610404276;;False;{};gixob4j;False;t3_kv4s8z;False;False;t1_giwfslr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixob4j/;1610459690;6;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;But i find it so frustrating that Gintama got bombarded by FMA fans... it’s so goddam annoying that such a good show can’t take the no.1 rank;False;False;;;;1610404292;;1610413240.0;{};gixocbe;False;t3_kv4s8z;False;False;t1_gixebck;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixocbe/;1610459713;47;True;False;anime;t5_2qh22;;0;[]; -[];;;_Alljokesaside;;;[];;;;text;t2_i06vy;False;False;[];;Posts like this make people mass vote it down;False;False;;;;1610404334;;False;{};gixoff8;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixoff8/;1610459771;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DevelopmentClean1473;;;[];;;;text;t2_9q25jov0;False;False;[];;"I honestly feel that FMAB deserves that spot. What it has done for countless anime fans is undeniable. - -That being said, the fact that it is up there because of toxic fans, as you say, is just stupid and makes it feel cheap.";False;False;;;;1610404359;;False;{};gixoh2m;False;t3_kv4s8z;False;False;t1_gixmy6r;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixoh2m/;1610459800;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DevelopmentClean1473;;;[];;;;text;t2_9q25jov0;False;False;[];;I mean, like, contiguously. For a solid six months at least, and after AoT is done.;False;False;;;;1610404384;;False;{};gixoixc;False;t3_kv4s8z;False;False;t1_gixlrpg;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixoixc/;1610459842;20;True;False;anime;t5_2qh22;;0;[]; -[];;;naughtilidae;;;[];;;;text;t2_f35sqhw;False;False;[];;"Game of Thrones proved that rating a show before its finished is really, really stupid. - -Nobody even want to re-watch early stuff the ending was so bad. - -I'll also say rating seasons as separate shows is down right the dumbest shit ever. Like... Ratings by season and episode are great, but gitama should hold 30 different spots. It dilutes the charts impact significantly. - -Cause if it was a site for regular TV, you would have 5 season of GOT at the top, but no way of knowing that the show end so badly you shouldn't even watch those seasons.";False;False;;;;1610404400;;False;{};gixok3m;False;t3_kv4s8z;False;False;t1_giwff55;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixok3m/;1610459862;16;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;🤷;False;False;;;;1610404403;;False;{};gixokan;True;t3_kv4s8z;False;True;t1_gixoff8;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixokan/;1610459865;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;jeffjeffersonthe3rd;;;[];;;;text;t2_12dplj;False;False;[];;Being a manga reader who knows what is yet to come, there’s a very good chance.;False;False;;;;1610404415;;False;{};gixol6l;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixol6l/;1610459881;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CristolPalace;;;[];;;;text;t2_ynia92;False;False;[];;"Well, tbf the current number is not exactly fair either. A lot of new accounts rating SnK 10/10 and FMA 1/10. - -Toxic fanboys are everywhere, this scores don't matter at all.";False;False;;;;1610404462;;False;{};gixoopo;False;t3_kv4s8z;False;True;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixoopo/;1610459944;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;For sure, like stuff like ds and mha are good but they don't even compare;False;False;;;;1610404517;;False;{};gixosts;True;t3_kv4s8z;False;True;t1_gixmz9h;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixosts/;1610460016;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Agreed;False;False;;;;1610404524;;False;{};gixotbq;True;t3_kv4s8z;False;True;t1_gixmtk0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixotbq/;1610460026;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Makes sense;False;False;;;;1610404533;;False;{};gixou3g;True;t3_kv4s8z;False;True;t1_gixm737;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixou3g/;1610460039;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;🤷 but i mean all seasons are unfinished chunks of 1 story and we still rate em;False;False;;;;1610404542;;False;{};gixouql;True;t3_kv4s8z;False;True;t1_gixm3yu;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixouql/;1610460052;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BetaBoy777;;;[];;;;text;t2_m7mqrnm;False;False;[];;They should have a separate section for currently airing shows/season then.;False;False;;;;1610404565;;False;{};gixowh2;False;t3_kv4s8z;False;False;t1_gixlisj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixowh2/;1610460084;7;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;And GOT fans, dexter fans, mr robot fans, westworld fans, Breaking bad fans... generally some of the best tv show fans... Fans like me care a lot about this page.;False;False;;;;1610404577;;1610413342.0;{};gixoxf7;False;t3_kv4s8z;False;False;t1_gixluh2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixoxf7/;1610460101;26;True;False;anime;t5_2qh22;;0;[]; -[];;;utsuriga;;;[];;;;text;t2_894zi;False;False;[];;"Some examples of ""fucking great anime, according to me"": - -* Gankutsuou -* Ping Pong: The Animation -* Legend of the Galactic Heroes (OVA) -* Mouryou no Hako -* Ghost in the Shell: Stand Alone Complex Gigs 1-2 -* Tsuritama -* Gundam 0080 -* Utena -* bunch more";False;False;;;;1610404600;;1610406072.0;{};gixoz6c;False;t3_kv4s8z;False;False;t1_gixkqic;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixoz6c/;1610460131;9;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;That's your opinion, imo cowboy bebop is garbage. Something like the great pretender over it any day;False;False;;;;1610404611;;False;{};gixozyt;True;t3_kv4s8z;False;True;t1_gixm3n8;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixozyt/;1610460145;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;psychsucks;;;[];;;;text;t2_7pinf0kz;False;False;[];;It still didn’t manage to beat Interspecies Reviewers that one time;False;False;;;;1610404616;;False;{};gixp0dx;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixp0dx/;1610460154;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrPringles23;;;[];;;;text;t2_bjtdc;False;False;[];;"After S2 started airing and I binged the manga I called it that it was worthy of being ""up there"" with the likes of FMA:B as something the wider anime audience could recommend and be proud to show people as a way to get them into the medium. - -A few years later and having read more and more of the manga as its released... I genuinely don't think I've seen such detail and foremost PLANNING that has gone into a story than this one. - -Maybe the GoT books come close, but until santa finishes those (LOL JK) its impossible to judge, since there's so much that has to wrap up perfectly. - -That's the difference between series that just start writing with loose ideas about where its going and AoT. - -Isayama apparently had the entire thing storyboarded - start to finish before he started working on the first chapter. - -Not sure how detailed those boards were, or if it was even true, but given how well things tie together, how much foreshadowing is there and just how pretty much every panel/scene has an actual purpose... I'd like to believe it.";False;False;;;;1610404625;;False;{};gixp10s;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixp10s/;1610460165;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Salty FMAB fans 😂;False;False;;;;1610404637;;False;{};gixp1wo;True;t3_kv4s8z;False;True;t1_gixlytr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixp1wo/;1610460181;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatuk;;;[];;;;text;t2_thi8q;False;False;[];;"16th episode is supposed to be around [AoT S4 spoilers](/s ""From you 2000 years from now"")";False;False;;;;1610404661;;False;{};gixp3r9;False;t3_kv4s8z;False;True;t1_giwxbgy;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixp3r9/;1610460216;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kvorncage;;;[];;;;text;t2_6k4b6is2;False;False;[];;Well that's your opinion I guess.;False;False;;;;1610404708;;False;{};gixp77t;False;t3_kv4s8z;False;True;t1_gixozyt;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixp77t/;1610460278;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CristolPalace;;;[];;;;text;t2_ynia92;False;False;[];;I mean, if i had to pick, Shingeki no Kyojin comes at second place lol;False;False;;;;1610404709;;False;{};gixp796;False;t3_kv4s8z;False;True;t1_giwri74;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixp796/;1610460279;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;You can tell he's had it planned coz stuff in the first 10 episodes were foreshadowing 50 episodes down the line. A simple line giving the MC inspiration turned out to inspire him 60 épisodes later.;False;False;;;;1610404752;;False;{};gixpaed;True;t3_kv4s8z;False;True;t1_gixp10s;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixpaed/;1610460335;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Well not garbage but I'd say 6/10 at best;False;False;;;;1610404771;;False;{};gixpbtt;True;t3_kv4s8z;False;True;t1_gixp77t;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixpbtt/;1610460360;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Be careful of spoilers bro;False;False;;;;1610404800;;False;{};gixpdxa;True;t3_kv4s8z;False;True;t1_gixlrtq;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixpdxa/;1610460399;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SlimmyShammy;;;[];;;;text;t2_5ay3rszh;False;False;[];;"Everyone’s saying FMAB this and AOT that - -Steins;Gate fans just wanna barbecue";False;False;;;;1610404827;;False;{};gixpfza;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixpfza/;1610460437;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;It's gotten past 1/4 by now, also the fact it's made fan boys who trust it so much as to give it a 10 before they've seen it just speaks to how amazing the story is to have captivated people this much;False;False;;;;1610404849;;False;{};gixphmb;True;t3_kv4s8z;False;False;t1_gixln3o;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixphmb/;1610460466;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;"Yes, this is ""the declaration of war""";False;False;;;;1610404874;;False;{};gixpjf2;True;t3_kv4s8z;False;True;t1_gixlalc;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixpjf2/;1610460499;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;playby_apple;;;[];;;;text;t2_93hu85x2;False;False;[];;I tried to watch FMAB and I have no idea why it's so highly rated. It's just childish jokes every few minutes. Is it just popular amongst teenagers?;False;False;;;;1610404883;;False;{};gixpk0w;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixpk0w/;1610460510;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Agreed;False;False;;;;1610404885;;False;{};gixpk6e;True;t3_kv4s8z;False;True;t1_gixih9y;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixpk6e/;1610460513;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lunatoons291;;;[];;;;text;t2_16nhl574;False;False;[];;Lol you’re on one for that the reveals have been really incredible story telling and made eren into one of the most complex characters ever tbh;False;False;;;;1610404887;;False;{};gixpkcm;False;t3_kv4s8z;False;False;t1_gixl4g4;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixpkcm/;1610460517;7;True;False;anime;t5_2qh22;;0;[]; -[];;;hiddentheory;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/hiddentheory;light;text;t2_h1i22;False;False;[];;"Fuck FMAB fans, most obnoxious ones that I've ever faced. - -Put 6 on a title and they started bitching about it.";False;False;;;;1610404890;;False;{};gixpkk5;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixpkk5/;1610460520;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ikr, I love how chill steins gate fans are 😂 I'm one myself actually. I think steins gate should be 2 and Aot should be one. But eh 😂;False;False;;;;1610404929;;False;{};gixpnec;True;t3_kv4s8z;False;True;t1_gixpfza;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixpnec/;1610460570;0;True;False;anime;t5_2qh22;;0;[]; -[];;;theanimegamer-___-;;;[];;;dark;text;t2_3vm3lj8d;False;False;[];;Giving a score before the show even ends is complete nonsense anyways. These aren't episode rankings. The score is for how the show is overall, but these weebs don't understand that.;False;False;;;;1610404939;;False;{};gixpo5k;False;t3_kv4s8z;False;False;t1_gixcfxr;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixpo5k/;1610460584;9;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ikr;False;False;;;;1610404947;;False;{};gixpoq4;True;t3_kv4s8z;False;True;t1_gixpkk5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixpoq4/;1610460595;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Well score can play a part in a series popularity, for example, I can name off a few shows I probably wouldn't have usually bothered with but high score made me interested in watching them;False;False;;;;1610404959;;False;{};gixppmu;False;t3_kv4s8z;False;False;t1_gix8g2b;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixppmu/;1610460612;4;True;False;anime;t5_2qh22;;0;[]; -[];;;CristolPalace;;;[];;;;text;t2_ynia92;False;False;[];;"Yes please! I don't even care about user ratings, but i want my own list with franchises averaged with an ""expand"" button where it shows the individual ratings for each season. - -That way you can either rate the whole thing with one score or every season separately. It would look sooo much better.";False;False;;;;1610404987;;False;{};gixprp8;False;t3_kv4s8z;False;True;t1_giwwb7x;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixprp8/;1610460651;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Nah it's got a really slow start, the series does become a bit better but never crosses 8/10. What's the kicker here is Mal mainly has college students on it. So idk how TF it's so popular;False;False;;;;1610404989;;False;{};gixprup;True;t3_kv4s8z;False;True;t1_gixpk0w;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixprup/;1610460655;2;True;False;anime;t5_2qh22;;0;[]; -[];;;letouriste1;;;[];;;;text;t2_g1rr39u;False;False;[];;"well, it's important to know which shows struggle to go over 6 or 6.5. Means it's probably bad and you should check the spoiler-free reviews. - -Also, shows above 8 are always worth checking out even if you were not interested in it before. - -These ratings help casual watchers to choose which seasonal show to try";False;False;;;;1610405029;;False;{};gixputj;False;t3_kv4s8z;False;False;t1_giwtieb;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixputj/;1610460707;7;True;False;anime;t5_2qh22;;0;[]; -[];;;SlimmyShammy;;;[];;;;text;t2_5ay3rszh;False;False;[];;"I can’t comment on Attack on Titan, only read a bit of the manga but it seems pretty darn good. - -FMAB is definitely one of my favorite anime but it doesn’t crack my top 5 - in my perfect world it’s Steins;Gate #1 and Monster #2, but that would require Monster to have a big surge in popularity I can’t see it having aha";False;False;;;;1610405039;;False;{};gixpvl9;False;t3_kv4s8z;False;True;t1_gixpnec;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixpvl9/;1610460722;1;True;False;anime;t5_2qh22;;0;[]; -[];;;psychsucks;;;[];;;;text;t2_7pinf0kz;False;False;[];;FMAB stans are just salty that Interspecies Reviewers managed to overtake it for the #1 spot that one time;False;False;;;;1610405042;;False;{};gixpvqu;False;t3_kv4s8z;False;False;t1_giwvhth;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixpvqu/;1610460724;14;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;We can but rightfully so, coz everything is fair in war;False;True;;comment score below threshold;;1610405050;;False;{};gixpwfu;True;t3_kv4s8z;False;False;t1_gixiw64;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixpwfu/;1610460737;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;What are you doing, watch attack on Titan my guy 😂;False;False;;;;1610405075;;False;{};gixpy80;True;t3_kv4s8z;False;True;t1_gixpvl9;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixpy80/;1610460769;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Let's see 🤷;False;False;;;;1610405133;;False;{};gixq2k6;True;t3_kv4s8z;False;True;t1_gixl2bx;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixq2k6/;1610460848;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Retsam19;;;[];;;;text;t2_aa4uq;False;False;[];;"While it's true there can be wide differences in the quality between multiple seasons. But unless something can reasonably be watched on its own, it doesn't seem useful to have its own rating. - -Nobody is going out to go watch ""Attack on Titan Season 3 Part 2"" without having actually watched the first 2 and a half seasons, so it's not like that having its own rating is useful. - -If a season of an anime is bad, I think it's totally fair that the ratings of the show gets brought down, because... well... that's part of the show. - -And I particularly don't think the studio change matters. The point of ratings is to be useful to people looking to watch a show or not, not to allocate blame amongst the different studios. That's entirely a ""how the sausage is made"" sort of detail that only really matters to ""hyperfans"".";False;False;;;;1610405153;;False;{};gixq41g;False;t3_kv4s8z;False;False;t1_gixfkaa;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixq41g/;1610460875;5;True;False;anime;t5_2qh22;;0;[]; -[];;;yeetskeet3;;;[];;;;text;t2_232wjff8;False;False;[];;How’s that any different from 100 tho. If anything 120-122 gave us so much story and changed how the story was going forward.;False;False;;;;1610405154;;False;{};gixq43q;False;t3_kv4s8z;False;True;t1_gixkv8l;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixq43q/;1610460876;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lelouch4705;;;[];;;;text;t2_jo65c;False;False;[];;Friendly reminder that no one should give a shit;False;False;;;;1610405164;;False;{};gixq4t1;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixq4t1/;1610460888;7;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDarkSwordsman;;;[];;;;text;t2_jakj8;False;False;[];;This is the single reason why SAO and some others have such low ratings. Season 2 is about a 7.3 when it could easily be a 7.8/7.9 without the mass 1 star votes that many other top anime have.;False;False;;;;1610405183;;False;{};gixq67t;False;t3_kv4s8z;False;True;t1_gix1yxn;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixq67t/;1610460913;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SlimmyShammy;;;[];;;;text;t2_5ay3rszh;False;False;[];;Like I said, I’ve been reading the manga. I find myself more willing to enjoy stuff if I read the manga over watching the anime - like Hunter x Hunter;False;False;;;;1610405187;;False;{};gixq6hq;False;t3_kv4s8z;False;True;t1_gixpy80;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixq6hq/;1610460917;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sharebear42019;;;[];;;;text;t2_z1jb0;False;False;[];;Sounds kinda hypocritical to bash on one fan base while supporting the other for the same exact thing;False;False;;;;1610405197;;False;{};gixq78o;False;t3_kv4s8z;False;False;t1_gixpwfu;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixq78o/;1610460931;15;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Nah I like FMAB quite a bit and it's got a spot in my top 15. It just sounds like I hate it when I'm defending Aot since it's not even close in competition;False;False;;;;1610405219;;False;{};gixq8vk;True;t3_kv4s8z;False;True;t1_gixkvl9;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixq8vk/;1610460960;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Humorn1k;;;[];;;;text;t2_5v1a75xy;False;False;[];;Well, you have a good point;False;False;;;;1610405228;;False;{};gixq9il;False;t3_kv4s8z;False;False;t1_gixouql;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixq9il/;1610460971;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;It's got 3k votes so people clearly do give shits. 3k of them in total;False;True;;comment score below threshold;;1610405242;;False;{};gixqam4;True;t3_kv4s8z;False;True;t1_gixq4t1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixqam4/;1610460991;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ik 😂 🤷;False;False;;;;1610405279;;False;{};gixqdby;True;t3_kv4s8z;False;True;t1_gixq78o;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixqdby/;1610461045;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;bigthinknibba;;;[];;;;text;t2_rf4wa7m;False;False;[];;"I think it's a bit ridiculous that part of a single season of a series that isn't even finished yet can overtake one of the greatest completed anime works, but I also don't really give a shit about MAL ratings. - -What I am mostly upset about is the mob mentality of this whole thing. AOT and Fullmetal Alchemist are both amazing series, and I would consider both to be some of the best anime I've ever seen. - -Still, MAL's rating system is inflated as hell, there is no distinction between rating based on enjoyment and rating based on quality, and because of this many mediocre anime become hyperinflated when it comes to ratings and recommendations. If you compare MAL ratings to other rating boards such as IMDB, you'll notice that the threshold for what is considered ""good"" is much lower than mal. On iMDB, I would consider a 6 or higher to be ""good"", but on MAL something with a 6 is typically regarded as terrible. I believe this is because IMDB scores tend to be more based on objectivity than mal, which is based more on just enjoyment. Rating on enjoyment is not in itself a negative thing, but even disregarding how subjective enjoyment really is, one thing this does do is lower the actual value of ratings on MAL. - -If everyone rated anime with more grounded scale, I genuinely think almost every series on the platform would drop an entire point if not more. That isn't to say there aren't tens, I have rated some anime a 10, but I myself have rated off enjoyment, then looked back a while later at a series, and then changed my opinion and lowered it one or two points. - -Tldr; mal ratings do not really matter at all and people are wrong for attributing the quality of an anime entirely to an inflated, arbitrary number.";False;False;;;;1610405294;;False;{};gixqedv;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixqedv/;1610461072;12;True;False;anime;t5_2qh22;;0;[]; -[];;;CristolPalace;;;[];;;;text;t2_ynia92;False;False;[];;Retaliation? Do you even listen to yourself dude? It's not a war;False;False;;;;1610405294;;False;{};gixqeev;False;t3_kv4s8z;False;False;t1_giwx3q1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixqeev/;1610461072;26;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Oh kk, i thought you said you dropped the manga after reading a bit.;False;False;;;;1610405308;;False;{};gixqfh1;True;t3_kv4s8z;False;True;t1_gixq6hq;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixqfh1/;1610461090;2;True;False;anime;t5_2qh22;;0;[]; -[];;;revmun;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/revmun;light;text;t2_vfv3k;False;False;[];;This happens time and time again, whenever there is a top tier anime. Can MAL not detect waves of 1's in their system?;False;False;;;;1610405312;;False;{};gixqfsm;False;t3_kv4s8z;False;True;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixqfsm/;1610461097;1;True;False;anime;t5_2qh22;;0;[]; -[];;;huntrshado;;;[];;;;text;t2_404y4;False;False;[];;Yes, the big revelation chapters, which line up perfectly for around ep 15/16 of this season;False;False;;;;1610405338;;1610406265.0;{};gixqhoq;False;t3_kv4s8z;False;True;t1_gixb6ik;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixqhoq/;1610461134;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SlimmyShammy;;;[];;;;text;t2_5ay3rszh;False;False;[];;Nah nah, not at all. Just taking my time with it!;False;False;;;;1610405340;;False;{};gixqhui;False;t3_kv4s8z;False;True;t1_gixqfh1;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixqhui/;1610461136;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;People like to win, so inevitably people will fight coz it's just fun;False;True;;comment score below threshold;;1610405350;;False;{};gixqija;True;t3_kv4s8z;False;True;t1_gixqedv;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixqija/;1610461149;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;You should honestly;False;False;;;;1610405364;;False;{};gixqjl2;True;t3_kv4s8z;False;True;t1_gixqhui;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixqjl2/;1610461167;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CristolPalace;;;[];;;;text;t2_ynia92;False;False;[];;Finally some sense, both fanbases are horribly toxic. Judging by the comments, tho, there are a lot of AoT fanboys here.;False;False;;;;1610405368;;False;{};gixqjw4;False;t3_kv4s8z;False;False;t1_giwwxww;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixqjw4/;1610461172;23;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;I mean 😂 it's technically not but It's fun to pretend it is;False;True;;comment score below threshold;;1610405400;;False;{};gixqm97;True;t3_kv4s8z;False;True;t1_gixqeev;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixqm97/;1610461214;-15;True;False;anime;t5_2qh22;;0;[]; -[];;;huntrshado;;;[];;;;text;t2_404y4;False;False;[];;I am guessing season will end at like 125 with a movie to cover the remainder;False;False;;;;1610405404;;False;{};gixqmio;False;t3_kv4s8z;False;True;t1_gixeit0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixqmio/;1610461218;1;True;False;anime;t5_2qh22;;0;[]; -[];;;POJJERZ;;;[];;;;text;t2_8gbldbpp;False;False;[];;AoT: I'll just keep moving forward, until all the other anime are ranked below me.;False;False;;;;1610405440;;False;{};gixqp8d;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixqp8d/;1610461268;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Bruh, 😂 look in the discussions not just the comment;False;False;;;;1610405451;;False;{};gixqpzk;True;t3_kv4s8z;False;True;t1_gixj8wj;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixqpzk/;1610461283;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;😂😂😂😂;False;False;;;;1610405464;;False;{};gixqqxn;True;t3_kv4s8z;False;True;t1_gixqp8d;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixqqxn/;1610461300;3;True;False;anime;t5_2qh22;;0;[]; -[];;;huntrshado;;;[];;;;text;t2_404y4;False;False;[];;The duration that is left in the manga is too long for just an OVA - it would have to be a movie, part 2 of the series, of an anime original ending (hopefully not);False;False;;;;1610405466;;False;{};gixqr50;False;t3_kv4s8z;False;True;t1_gixlvie;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixqr50/;1610461303;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Reaperdude97;;;[];;;;text;t2_7yk28;False;False;[];;I am completely hyped for that. Can't wait to see it all animated.;False;False;;;;1610405488;;False;{};gixqsrg;False;t3_kv4s8z;False;True;t1_gixp3r9;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixqsrg/;1610461332;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;It honestly does;False;False;;;;1610405494;;False;{};gixqt93;True;t3_kv4s8z;False;True;t1_gixkb1u;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixqt93/;1610461341;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Bruh😂 let people have fun and vent there frustration of life somewhere. What's better ? Some one taking out there anger on there sibling or shitting on an anime 🤔;False;False;;;;1610405545;;False;{};gixqx37;True;t3_kv4s8z;False;True;t1_gixkbdt;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixqx37/;1610461413;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;huntrshado;;;[];;;;text;t2_404y4;False;False;[];;"We won't know for sure until episode 16, but the manga has about 39 chapters left after where the anime currently is (ep 5) and it adapts about 2 chapters per episode. That puts it on pace to end around chapters 120-125, which is that perfect place in the story that I mentioned above for it to cut off that will lead to it taking #1 on MAL. - -After that begins the final arc, which could be covered either in an additional season or a movie.";False;False;;;;1610405571;;False;{};gixqyyo;False;t3_kv4s8z;False;True;t1_gixiqfc;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixqyyo/;1610461445;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Um did I say it was a fact ?;False;False;;;;1610405599;;False;{};gixr13t;True;t3_kv4s8z;False;True;t1_gixj3dt;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixr13t/;1610461485;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mr_sto0pid;;;[];;;dark;text;t2_13ckn3;False;True;[];;It's insane that no other anime has even made it to the 9.2 range except FMAB;False;False;;;;1610405632;;False;{};gixr3n2;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixr3n2/;1610461533;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;b..but bu-t...it was;False;True;;comment score below threshold;;1610405644;;False;{};gixr4hr;False;t3_kv4s8z;False;True;t1_gixfa0m;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixr4hr/;1610461549;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;bigthinknibba;;;[];;;;text;t2_rf4wa7m;False;False;[];;"It is a bit like betting on horses isn't it? I understand that aspect of it, but at some point we stop really caring about the quality of a series and instead value how much people can circle jerk around it. So I am not a fan of the current rating system. I think if there were two separate rating systems for each anime, one based on enjoyment and one based on objectivity, that would be interesting. - -But I also think that would not work because people would still give perfect scores and ones for the objective system as well as enjoyment.";False;False;;;;1610405657;;False;{};gixr5jf;False;t3_kv4s8z;False;True;t1_gixqija;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixr5jf/;1610461568;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lelouch4705;;;[];;;;text;t2_jo65c;False;False;[];;I'd Google what should means;False;False;;;;1610405716;;False;{};gixr9tt;False;t3_kv4s8z;False;False;t1_gixqam4;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixr9tt/;1610461646;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRealTerwilliger;;;[];;;;text;t2_r1voh;False;False;[];;Please take #1;False;False;;;;1610405736;;False;{};gixrbby;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixrbby/;1610461676;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheIsaia;;;[];;;;text;t2_kmnjs;False;False;[];;"scrolling through some of the most recent ratings of the season on mal I found [this](https://gyazo.com/e0b8e3d5be90a5efaa705a49caff6cb8), these are the only 3 shows on his list. Id love to know where he is watching it since hes seen all 16 episodes already. - - I think I found about 5-10 ish similar cases on the first 1000 most recent ratings";False;False;;;;1610405760;;False;{};gixrd48;False;t3_kv4s8z;False;True;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixrd48/;1610461711;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Reeeee_Boi;;;[];;;;text;t2_2qatvclh;False;False;[];;Fools all of you fools for not using anilist;False;False;;;;1610405791;;False;{};gixrfgk;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixrfgk/;1610461753;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Neko_chan-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/neko-chan;light;text;t2_52vgkabq;False;False;[];;Already did it I was arguing the other day with my frien about steins gate vs aot and the only reason I won my argument was steins gate was 2 and it is the best anime of all time in my opinion so 1 star rated;False;False;;;;1610405814;;False;{};gixrh6d;False;t3_kv4s8z;False;True;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixrh6d/;1610461786;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DominelKira;;;[];;;;text;t2_3s08wif3;False;False;[];;"What are you even talking about? How is this fun for anyone , except for you probably? Senseless toxicity ruins fandoms. Anime fandom sucks in general and these threads just pour gasoline into this dumpster fire of a community. - -Idk man , it's just annoying.";False;False;;;;1610405819;;False;{};gixrhkb;False;t3_kv4s8z;False;False;t1_gixqx37;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixrhkb/;1610461793;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Reeeee_Boi;;;[];;;;text;t2_2qatvclh;False;False;[];;This is a joke btw too many salty people I’m worried people won’t get it;False;False;;;;1610405827;;False;{};gixri4c;False;t3_kv4s8z;False;True;t1_gixrfgk;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixri4c/;1610461804;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OneDayEveryDay;;;[];;;;text;t2_ppf32;False;False;[];;Attack on Titan is pretty damn good, but what will really make it or break it in the end is the ending. If they don't stick the ending, expect mass 1-stars and review bombs on it later. It might pass brotherhood temporarily, but it's still up in the air.;False;False;;;;1610405885;;False;{};gixrmbk;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixrmbk/;1610461881;1;True;False;anime;t5_2qh22;;0;[]; -[];;;danthom1704;;;[];;;;text;t2_2n6kdnsw;False;False;[];;Watch out Ex-Arm might over take it.;False;False;;;;1610405940;;False;{};gixrqbl;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixrqbl/;1610461955;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Practicalaviationcat;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/PACat;light;text;t2_dtmoc;False;False;[];;Having two lists would be nice. One for individual seasons and one for aggregate scores of series.;False;False;;;;1610405970;;False;{};gixrsgl;False;t3_kv4s8z;False;False;t1_gixfkaa;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixrsgl/;1610461993;35;True;False;anime;t5_2qh22;;0;[]; -[];;;vinsmokesanji3;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/ChrispyAurora;dark;text;t2_84xqi4;False;False;[];;"Wow, that’s so ridiculous I don’t know what to say. By your logic, all Harry Potter movies and Star Wars movies should be averaged into one score since “studio and director changes don’t matter” and they’re all “part of the same sausage” and only hyperfans care about individual movies. - -Or even something like the Office. The Office has many seasons but the approach for Season 1 was a lot different than the approach for Season 2 and later. Even though the actors and directors were the same, it is not correct to average out the scores for seasons of the Office into one score. I would recommend people to start from S2 because S1 tried to mimic the british Office and didn’t do well in the US.";False;False;;;;1610406037;;False;{};gixrx8y;False;t3_kv4s8z;False;True;t1_gixq41g;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixrx8y/;1610462077;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;WhosYourDade;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Pota/animelist;light;text;t2_gybsb;False;False;[];;"> fan boys who trust it so much as to give it a 10 before they've seen - -lots of shows have them, which is why it happens every time, and then they fall lower almost every time. imagine unironically rating something you haven't even seen";False;False;;;;1610406038;;False;{};gixrxc1;False;t3_kv4s8z;False;False;t1_gixphmb;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixrxc1/;1610462079;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mike9184;;;[];;;;text;t2_ozwt8;False;False;[];;Wrong. Game of Thrones Season 4 is a 10/10 and Season 8 is an absolute dumpster fire that should have never seen the light of day. Same show, same characters and an abysmal difference in quality. Fans are getting way too excited for a show whose ending is still up in the air until April when the manga concludes and who we are still not sure how is going to be adapted.;False;False;;;;1610406086;;False;{};gixs0po;False;t3_kv4s8z;False;False;t1_gix34je;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixs0po/;1610462144;3;True;False;anime;t5_2qh22;;0;[]; -[];;;degenerated_weeb;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Can’t escape the peko hole;dark;text;t2_3cku6n8b;False;False;[];;You’re the one who who called AoT a cartoon...;False;False;;;;1610406146;;False;{};gixs50j;False;t3_kv4s8z;False;True;t1_giwyaug;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixs50j/;1610462229;0;True;False;anime;t5_2qh22;;0;[]; -[];;;vitaminar;;;[];;;;text;t2_ikhcm;False;False;[];;WIT Studios on suicide watch;False;False;;;;1610406152;;False;{};gixs5dx;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixs5dx/;1610462237;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tealart;;;[];;;;text;t2_4svh8g68;False;False;[];;I highly recommend Hunter x Hunter and Fullmetal Alchemist BROTHERHOOD that's the good one! Oh and for something more light maybe BNHA or No Game No Life.;False;False;;;;1610406161;;False;{};gixs612;False;t3_kv5oy9;False;True;t3_kv5oy9;/r/anime/comments/kv5oy9/help_a_newbie_anime_fan/gixs612/;1610462250;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gamingonion;;;[];;;;text;t2_lfgrh;False;False;[];;This was so upsetting to me. Chihayafuru is such a fantastic niche show, and a bunch of people just decided that they didn't think it deserved to be rated highly. Doesn't make any sense.;False;False;;;;1610406243;;False;{};gixsbv0;False;t3_kv4s8z;False;False;t1_gixg0ox;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixsbv0/;1610462373;13;True;False;anime;t5_2qh22;;0;[]; -[];;;xxMeiaxx;;;[];;;;text;t2_6mlaqm9o;False;False;[];;I care because honestly, AOT is the only anime that deserves to sit with all the other legendary shows (of all time).;False;True;;comment score below threshold;;1610406245;;False;{};gixsc1b;False;t3_kv4s8z;False;True;t1_gixluh2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixsc1b/;1610462377;-12;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"I love AOT but those four episode are not worthy ""second best anime of all time"", at least wait for the season to end. - -At the moment is not even better than season 3 part 2.";False;False;;;;1610406280;;False;{};gixsejw;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixsejw/;1610462426;6;True;False;anime;t5_2qh22;;0;[]; -[];;;psychsucks;;;[];;;;text;t2_7pinf0kz;False;False;[];;You’re goddamn right;False;False;;;;1610406283;;False;{};gixses7;False;t3_kv4s8z;False;False;t1_gix4veo;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixses7/;1610462431;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Boredwitch;;;[];;;;text;t2_3bm2e1qe;False;False;[];;Yeah ppl shit on Got the show for good reasons but boy, if Martins completed the books in time... like NOTHING would’ve surpassed it.;False;False;;;;1610406321;;False;{};gixshj5;False;t3_kv4s8z;False;False;t1_gix038b;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixshj5/;1610462489;38;True;False;anime;t5_2qh22;;0;[]; -[];;;gusta__125;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tserriednich4;light;text;t2_21s88ok8;False;False;[];;Pisses me off honestly I respected fmab as 1 even tho it's nowhere near a 10 or a 9 imo, they need to let go already. If there's any show that'll dethrone fmab this decade it's aot. So many people care about it and it surpassed our expectations again and again every season building up to this massive finale.;False;False;;;;1610406347;;False;{};gixsjdk;False;t3_kv4s8z;False;False;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixsjdk/;1610462526;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zxHellboyxz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Mattinator95;light;text;t2_27t5u6vk;False;False;[];;...got when down the gutter partly due to not having a final book to work with as martin is taking ages to finish it;False;False;;;;1610406352;;False;{};gixsjqf;False;t3_kv4s8z;False;True;t1_giwpmue;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixsjqf/;1610462537;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lotus-Vale;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/LotusViridis/;light;text;t2_v09gt;False;False;[];;"I think the words ""officially"" and ""take out the king"" and ""ruling"" is just putting way too much edginess into everything this is about. Yes Attack on Titan could easily pass it, yes attack on titan could just as easily never pass it, yes FMAB has been passed before, and no there's not much logic in comparing the two when one hasn't even finished airing. - - -I like checking up on the MAL list as much as the next guy but goodness.";False;False;;;;1610406371;;False;{};gixsl1m;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixsl1m/;1610462582;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chartingyou;;;[];;;;text;t2_1pzf12n2;False;False;[];;">Either you like something or don't, whatever others think about it should be irrelevant or your opinion is weak. - -I wish my anime fans would take this to heart, this statement is so true. I'll rank things on Mal but tbh I don't put that much stock into the ratings.";False;False;;;;1610406452;;False;{};gixsr07;False;t3_kv4s8z;False;False;t1_gix4ai0;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixsr07/;1610462705;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sharebear42019;;;[];;;;text;t2_z1jb0;False;False;[];;You said “fma isn’t even close” as if it was lol otherwise you would say imo;False;False;;;;1610406475;;False;{};gixssol;False;t3_kv4s8z;False;True;t1_gixr13t;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixssol/;1610462742;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610406510;;False;{};gixsv8y;False;t3_kv4s8z;False;True;t1_gixl864;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixsv8y/;1610462805;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;Nyluta;;;[];;;;text;t2_ylzkzxy;False;False;[];;Idk why ppl do this I love both series and they both deserve top 1 honestly;False;False;;;;1610406525;;False;{};gixswd7;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixswd7/;1610462829;4;True;False;anime;t5_2qh22;;0;[]; -[];;;voyeristictacos;;;[];;;;text;t2_5si0oc0o;False;False;[];;Should be top of the class;False;False;;;;1610406525;;False;{};gixswds;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixswds/;1610462829;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Chadest_senpai;;;[];;;;text;t2_8egaptzh;False;False;[];;"Honestly i don't care for both FMAB or AOT but MAL should honestly wait for the show to be over for people to be able to vote. - -But they need to find a way to fix trolls account that make alt to lower a show rating or boost it either way.";False;False;;;;1610406539;;False;{};gixsxes;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixsxes/;1610462857;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xxMeiaxx;;;[];;;;text;t2_6mlaqm9o;False;False;[];;Because most anime are unfinished. Even the best ones.;False;False;;;;1610406554;;False;{};gixsyid;False;t3_kv4s8z;False;False;t1_giwtieb;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixsyid/;1610462882;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Cuddlyaxe;;;[];;;;text;t2_ftpsl;False;True;[];;"The new Gintama movie just came out and it already got review bombed by FMAB fans and is a 6.7 when it hasn't even come out in America yet - -It's legit annoying";False;False;;;;1610406586;;False;{};gixt0tl;False;t3_kv4s8z;False;True;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixt0tl/;1610462933;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThisOneTimeAtLolCamp;;;[];;;;text;t2_7mzko;False;False;[];;This serves no purpose other than to promote brigading and/or vote manipulation all because you're an AoT fanboy.;False;False;;;;1610406616;;False;{};gixt31h;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixt31h/;1610462987;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Link1112;;;[];;;;text;t2_2mt5pfx;False;False;[];;Brand new sentence;False;False;;;;1610406647;;False;{};gixt59q;False;t3_kv4s8z;False;True;t1_gix4hx2;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixt59q/;1610463027;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;">FMAB has a bit more mature of a story. It may not be as graphic and gory, but it focuses on mature topics. The horrors of war, human psychology, morality, etc. It's a little bit harder for younger audiences to enjoy. - -I agree with all that you said but AOT does explore nearly all of the stuff you mentioned here pretty well and will only explore them even further in later episodes, Are you caught up to AOT?";False;False;;;;1610406664;;False;{};gixt6ip;False;t3_kv4s8z;False;False;t1_giwy5bw;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixt6ip/;1610463052;5;True;False;anime;t5_2qh22;;0;[]; -[];;;OhMilla;;;[];;;;text;t2_84kkn;False;False;[];;I know you care, that's why I said AOT fans are the only ones that care about it lol;False;False;;;;1610406676;;False;{};gixt7ew;False;t3_kv4s8z;False;False;t1_gixsc1b;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixt7ew/;1610463068;21;True;False;anime;t5_2qh22;;0;[]; -[];;;BigBangZebraMan;;;[];;;;text;t2_bs10y0y;False;False;[];;Eh, why should we care about other peoples opinions anyways. At the end of the day we can still like them.;False;False;;;;1610406696;;False;{};gixt8u0;False;t3_kv4s8z;False;False;t1_giwpbdf;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixt8u0/;1610463094;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;eh. show has more of a circlejerk going on that JoJo did. Glad people enjoy it, but I still think its overrated. Not as overrated as JoJo, but yeah.;False;False;;;;1610406728;;False;{};gixtb60;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixtb60/;1610463143;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cuddlyaxe;;;[];;;;text;t2_ftpsl;False;True;[];;"It's a 6.7 because of brigaders rn - -Not many users have it added so it might not go as high as you think";False;False;;;;1610406747;;False;{};gixtcik;False;t3_kv4s8z;False;True;t1_giwv8bc;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixtcik/;1610463168;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;zxHellboyxz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Mattinator95;light;text;t2_27t5u6vk;False;False;[];;Happens with every new show that gets over 8.30 or sequal;False;False;;;;1610406787;;False;{};gixtfih;False;t3_kv4s8z;False;True;t1_giwnvn5;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixtfih/;1610463223;2;True;False;anime;t5_2qh22;;0;[]; -[];;;impendinggreatness;;;[];;;;text;t2_13c2yv;False;False;[];;Why don’t people just 1 star review Fmab to show those fuckers;False;False;;;;1610406788;;False;{};gixtfnv;False;t3_kv4s8z;False;True;t1_giw2an7;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixtfnv/;1610463225;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chartingyou;;;[];;;;text;t2_1pzf12n2;False;False;[];;I feel like people don't really care about imdb ratings, but MAL ratings are a lot more contentious for whatever reason;False;False;;;;1610406794;;False;{};gixtg25;False;t3_kv4s8z;False;True;t1_gix0zhv;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixtg25/;1610463233;0;True;False;anime;t5_2qh22;;0;[]; -[];;;kimbolll;;;[];;;;text;t2_4dzc32vx;False;False;[];;"Holy shit, Steins;Gate is 3?! I’ve been out the game a while.";False;False;;;;1610406805;;False;{};gixtgw2;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixtgw2/;1610463248;1;True;False;anime;t5_2qh22;;0;[]; -[];;;stant0n;;;[];;;;text;t2_8blma;False;False;[];;Cowboy bebop is 26th on this list? Yeah, I'll be regarding this site as irrelevant.;False;False;;;;1610406806;;False;{};gixtgyk;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixtgyk/;1610463249;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jokuc;;;[];;;;text;t2_db0l8;False;False;[];;aot overrated imo;False;False;;;;1610406852;;False;{};gixtk5a;False;t3_kv4s8z;False;False;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixtk5a/;1610463315;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Maxzzs;;;[];;;;text;t2_r5b9kdt;False;False;[];;"“The king that’s been ruling for over a decade” - -Bruh did you even read your cringe before posting it, holy shit. - -Like I hope you understand that this circlejerk of spamming 10s for a show 5 episodes in is just as cringe as the autists who brigade titles with 1s.";False;False;;;;1610406881;;False;{};gixtm96;False;t3_kv4s8z;False;True;t3_kv4s8z;/r/anime/comments/kv4s8z/attack_on_titan_has_officially_become_the_2nd/gixtm96/;1610463353;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wishbone-Lost;;;[];;;;text;t2_568u16y0;False;False;[];;"Fate/Zero is holy grail of the fate frachise. I would say it the best - -Fate/ Unlimited blade work the 24 ep not movie is also great - -Fate Heaven feel the three part movie is great - - The Case files of Lord El-Melloi II is good actually this ties in with fate/zero quite well. Note that this one is more mystery then flashy battle - -Garden of sinners is also good more detail on the magician side of thing - -fate Babylonian is also a fun watch but this more to watching Gilgamesh cause he is fun - -The other fate work is either alright or waste of time. Fate/kaleid liner pirsma illya never watched so cant judge it";False;False;;;;1610408727;;False;{};gixxa7x;False;t3_kv4sjc;False;True;t3_kv4sjc;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/gixxa7x/;1610466179;2;True;False;anime;t5_2qh22;;0;[]; -[];;;whalehome;;;[];;;;text;t2_albkj;False;False;[];;Watch kekkai sensen and jujutsu kaisen;False;False;;;;1610409950;;False;{};gixzoik;False;t3_kv5oy9;False;True;t3_kv5oy9;/r/anime/comments/kv5oy9/help_a_newbie_anime_fan/gixzoik/;1610467866;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThiccDaddy1198;;;[];;;;text;t2_95xnujhs;False;False;[];;Will check it out;False;False;;;;1610422125;;False;{};giynqhd;True;t3_kv5oy9;False;True;t1_giwrfq6;/r/anime/comments/kv5oy9/help_a_newbie_anime_fan/giynqhd/;1610484899;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThiccDaddy1198;;;[];;;;text;t2_95xnujhs;False;False;[];;Yeah ok;False;False;;;;1610422150;;False;{};giyns4e;True;t3_kv5oy9;False;True;t1_giwy9p7;/r/anime/comments/kv5oy9/help_a_newbie_anime_fan/giyns4e/;1610484937;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThiccDaddy1198;;;[];;;;text;t2_95xnujhs;False;False;[];;Yes okay;False;False;;;;1610422163;;False;{};giynt27;True;t3_kv5oy9;False;True;t1_gixs612;/r/anime/comments/kv5oy9/help_a_newbie_anime_fan/giynt27/;1610484955;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRealMansiz;;;[];;;;text;t2_51teovtp;False;False;[];;ahh ic;False;False;;;;1610464717;;False;{};gj08vty;True;t3_kv4sjc;False;True;t1_giw3h3y;/r/anime/comments/kv4sjc/is_the_fate_series_any_good/gj08vty/;1610521726;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"# Source Material Corner - -Reply to this comment for any source-related discussion, future spoilers (including future characters, events and general hype about future content), comparison of the anime adaptation to the original, or just general talk about the source material. **You are still required to tag all spoilers.** Discussions about the source outside of this comment tree will be removed, and replying with spoilers outside of the source corner will lead to bans. - -The spoiler syntax is: -`[Spoiler source](/s ""Spoiler goes here"")` - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610300767;moderator;False;{};gis4wdd;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis4wdd/;1610341838;1;False;True;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 80, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Everything is better with a good hug', 'end_date': None, 'giver_coin_reward': 0, 'icon_format': 'PNG', 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png', 'icon_width': 2048, 'id': 'award_8352bdff-3e03-4189-8a08-82501dd8f835', 'is_enabled': True, 'is_new': False, 'name': 'Hugz', 'penny_donate': 0, 'penny_price': 0, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16&height=16&auto=webp&s=69997ace3ef4ffc099b81d774c2c8f1530602875', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32&height=32&auto=webp&s=e9519d1999ef9dce5c8a9f59369cb92f52d95319', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48&height=48&auto=webp&s=f076c6434fb2d2f9075991810fd845c40fa73fc6', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64&height=64&auto=webp&s=85527145e0c4b754306a30df29e584fd16187636', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128&height=128&auto=webp&s=b8843cdf82c3b741d7af057c14076dcd2621e811', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16&height=16&auto=webp&s=69997ace3ef4ffc099b81d774c2c8f1530602875', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32&height=32&auto=webp&s=e9519d1999ef9dce5c8a9f59369cb92f52d95319', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48&height=48&auto=webp&s=f076c6434fb2d2f9075991810fd845c40fa73fc6', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64&height=64&auto=webp&s=85527145e0c4b754306a30df29e584fd16187636', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128&height=128&auto=webp&s=b8843cdf82c3b741d7af057c14076dcd2621e811', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;"* [Roxy Stitch](https://i.imgur.com/TecL9f7.jpg) - -[Looks like Truck-kun claimed another hikikomori neet otaku.](https://i.imgur.com/xne7nmB.png) But it looks like our MC for this [saved some students](https://i.imgur.com/wR4CUOV.png) but they're missing? Why do I feel like that will be important later in the show. - -[He just got out of the womb and he's already making comments about his mom's tits](https://i.imgur.com/HC3zsfH.png) What a guy. [Looks like he didn't get turned on](https://i.imgur.com/fsRvJAZ.png) with his mom so I guess she's safe. Also did his [mom and dad just started having sex?](https://i.imgur.com/lZzMqVi.png) Didn't she just gave birth? xD - - -[This fucking kid creeping on their maid.](https://i.imgur.com/36YvUxz.png) No wonder they got Sugita to do his inner voice. Its him perfectly! [Looks like Lilia is catching on that something is wrong though,](https://i.imgur.com/SI1GNvU.png) - -[Zenith healing Rudy was a beautiful sequence!](https://i.imgur.com/ZKB5aFF.png) Also for an otaku he's surprisingly level headed. Like instead ot thinking magic exists, he first thought his mom was being a chuuni. - -[Alright looks like we're about to learn this world's magic system.](https://i.imgur.com/3n3KuZ8.png) But as expected, after Rudy tried reciting an incantation, [he was also able to do it without.](https://i.imgur.com/arKSRgV.png) Seems like all pretty standard isekai stuff. - - -That fade to black with Zenith and Paul doing it had me laughing! I love how the sex noises are still audible [while he was reading his books!](https://i.imgur.com/pT7IIsj.png) I thought he'd scream at them for being so loud xD - -[Okay at this point his parents have to wonder what he's doing with all of those containers.](https://i.imgur.com/Ua55jdy.png) I know that Zenith watched over him when he was reading the book for the first time but does she know that he's now able to cast a water ball spell? - -[I love this scene.](https://i.imgur.com/C2h2xXY.png) Paul practicing with his sword [while some girls are fangirling about him](https://i.imgur.com/8qe6QLW.png) and Zenith is just there all chill. I think she's flexing on everyone on how hot her husband is xD - -[This part confused me a bit.](https://i.imgur.com/6yOb5Gb.png) So all this time he was just creating and activating the spell and wasn't doing anything of those in between that's why he was only able to make balls of floating water ball before? - -[The animation for that Splash Flow spell looked really good!](https://i.imgur.com/Q09OhaE.png) Holy shit! Also RIP [wall and window!](https://i.imgur.com/5HggZ0b.png) - -[Zenith's reaction when she finally realized what Rudy did is hilarious!](https://i.imgur.com/Ndi6qVM.png) Look at her being so smug about her son being able to cast magic like her! And apparently she's smug because [Rudy was supposed to learn how to use swords](https://i.imgur.com/R3edoGK.png) but because of him being able to use intermediate magic, that's completely out of the window now. - -As a side note: For someone who's an otaku that has thousands of LNs, [why did he think that he was going to be sent off to an inquisition for casting magic?](https://i.imgur.com/C2TBG4F.png) It's very rare in isekais for kids to be punished for being able to cast magic. - -Anyway, [Lillia knows exactly what to say to the bickering couple.](https://i.imgur.com/NiVCopn.png) And just like that [they've instantly made up](https://i.imgur.com/fDCv6SN.png) xD - -They're quick to find him a magic tutor! [Enter Roxy Migurdia!](https://i.imgur.com/L6SbH91.png) Looks like she'll be another girl [for Rudy to perv on.](https://i.imgur.com/t6dEay8.png) - -Her job hasn't even started [and she's already tired.](https://i.imgur.com/jFBaFlg.png) She's already expecting Rudy to be just like other ""prodigies"" that she was hired to teach before. - - -Rudy is such a hikikomori in his past life that [just sitting outdoors is already enough to make him uncomfortable.](https://i.imgur.com/VDhVpR1.png) - -Apparently in this world healing spells isn't just for humans [but also works on trees too.](https://i.imgur.com/NHzwV2G.png) I guess anything that is a living being can be healed by magic in this world. - - -[Rudy getting distracted by Roxy's panties](https://i.imgur.com/ujpc12X.png) that he ended up spilling the beans about [his secret no incantation magic.](https://i.imgur.com/JHHjtS3.png) Well if she wasn't convinced at first, [Roxy is definitely convinced now!](https://i.imgur.com/EogSNMZ.png) - -Ah Rudy doing the classic, ""using a line from a dating sim"" instead of using actual people skills. [He definitely came off creepy](https://i.imgur.com/2GqYD7i.png) with that smile but it looks like it still worked for Roxy. - - -[I really do hope Rudy plans to make himself better](https://i.imgur.com/rUY1mo2.png) in this second chance that he got and not just live out his life just like the same on Earth. - -I don't think there's anything much else to say here. If you can't tell by this wall of text, I am alraedy invested. I want to see where this story goes and considering how many I've seen recommend the LN, this is probably very much worth it to watch.";False;False;;;;1610300805;;1610315738.0;{};gis4z3u;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis4z3u/;1610341888;148;True;False;anime;t5_2qh22;;1;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;Now THIS is what good isekai looks like. Gone are the days of isekai being called uninspired trash!;False;False;;;;1610300885;;False;{};gis54ue;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis54ue/;1610341990;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Damarugaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Damarugaki/;light;text;t2_6zyxfkgg;False;False;[];;"I love how detailed the animation is in this show. - -I really like Sugita as the internal monologue voice.";False;False;;;;1610300889;;False;{};gis553v;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis553v/;1610341995;248;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"Wow this MC is pretty trashy...hope [he gets better](https://youtu.be/4ikGvLUbOuU). - -Other than him I'm pretty into this one? The mom is by far the best character, if they kill her off like so many other anime moms I will be quite upset.";False;False;;;;1610300893;;False;{};gis55cq;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis55cq/;1610341999;13;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;A pervert who's excited to suck on his mother's breasts and is so much of a shut in he can barely be outside?;False;True;;comment score below threshold;;1610300941;;False;{};gis58tp;False;t3_kuj1bm;False;True;t1_gis54ue;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis58tp/;1610342058;-26;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Sauce?;False;False;;;;1610301405;;False;{};gis66h2;False;t3_kuj6jf;False;True;t3_kuj6jf;/r/anime/comments/kuj6jf/official_art_for_episode_64/gis66h2/;1610342630;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"# Source Material Corner - -Reply to this comment for any source-related discussion, future spoilers (including future characters, events and general hype about future content), comparison of the anime adaptation to the original, or just general talk about the source material. **You are still required to tag all spoilers.** Discussions about the source outside of this comment tree will be removed, and replying with spoilers outside of the source corner will lead to bans. - -The spoiler syntax is: -`[Spoiler source](/s ""Spoiler goes here"")` - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610302069;moderator;False;{};gis7isz;False;t3_kujgcq;False;True;t3_kujgcq;/r/anime/comments/kujgcq/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gis7isz/;1610343453;1;False;True;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610302218;moderator;False;{};gis7tls;False;t3_kuji5v;False;True;t3_kuji5v;/r/anime/comments/kuji5v/need_the_sauce_found_it_from_a_meme_but_the/gis7tls/;1610343634;0;False;False;anime;t5_2qh22;;0;[]; -[];;;Goukenslay;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Goukenslay;light;text;t2_h8wgs;False;False;[];;"isnt this the girl whose in love with Mya-nee - -&#x200B; - -edit nvm she has black hair";False;False;;;;1610302315;;False;{};gis80sa;False;t3_kuji5v;False;True;t3_kuji5v;/r/anime/comments/kuji5v/need_the_sauce_found_it_from_a_meme_but_the/gis80sa/;1610343755;0;True;False;anime;t5_2qh22;;0;[]; -[];;;NewYearDodo;;;[];;;;text;t2_16wkxf;False;False;[];;The movies were pretty well done for what they were...;False;False;;;;1610302331;;False;{};gis822d;False;t3_kujfr0;False;True;t3_kujfr0;/r/anime/comments/kujfr0/me_when_someone_says_anime_is_lame_meh/gis822d/;1610343775;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610302348;;False;{};gis83bw;False;t3_kujfr0;False;True;t3_kujfr0;/r/anime/comments/kujfr0/me_when_someone_says_anime_is_lame_meh/gis83bw/;1610343795;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610302404;moderator;False;{};gis87gi;False;t3_kujkdm;False;True;t3_kujkdm;/r/anime/comments/kujkdm/looking_for_a_new_anime_to_watch/gis87gi/;1610343863;1;False;False;anime;t5_2qh22;;0;[]; -[];;;mostMANICaboutMUSIC;;;[];;;;text;t2_168zfg;False;False;[];;Baccano!;False;False;;;;1610302434;;False;{};gis89nw;False;t3_kujkdm;False;True;t3_kujkdm;/r/anime/comments/kujkdm/looking_for_a_new_anime_to_watch/gis89nw/;1610343897;0;True;False;anime;t5_2qh22;;0;[]; -[];;;juances19;;HB;[];;https://kitsu.io/users/juances;dark;text;t2_17a18d;False;False;[];;"[I was thinking Ayase from Oreimo because of the hair and clothes](https://static.wikia.nocookie.net/oreimo/images/2/26/Smile.png/revision/latest/scale-to-width-down/340?cb=20190430065628&path-prefix=es) But I'm not sure.";False;False;;;;1610302456;;False;{};gis8bd0;False;t3_kuji5v;False;True;t3_kuji5v;/r/anime/comments/kuji5v/need_the_sauce_found_it_from_a_meme_but_the/gis8bd0/;1610343923;1;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Ocelot2118;;;[];;;;text;t2_6nhxvcvp;False;False;[];;Is it on Netflix or Hulu?;False;False;;;;1610302462;;False;{};gis8bsm;True;t3_kujkdm;False;False;t1_gis89nw;/r/anime/comments/kujkdm/looking_for_a_new_anime_to_watch/gis8bsm/;1610343930;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Avery-Bradley;;;[];;;;text;t2_175rqp;False;False;[];;Miss Caretaker of Sunohara-san;False;False;;;;1610302464;;False;{};gis8bxi;False;t3_kuji5v;False;True;t3_kuji5v;/r/anime/comments/kuji5v/need_the_sauce_found_it_from_a_meme_but_the/gis8bxi/;1610343932;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Masou Gakuen;False;False;;;;1610302489;;False;{};gis8dtx;False;t3_kujkdm;False;True;t3_kujkdm;/r/anime/comments/kujkdm/looking_for_a_new_anime_to_watch/gis8dtx/;1610343963;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610302542;;False;{};gis8go8;False;t3_kujkdm;False;True;t1_gis89nw;/r/anime/comments/kujkdm/looking_for_a_new_anime_to_watch/gis8go8/;1610344009;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi mostMANICaboutMUSIC, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610302543;moderator;False;{};gis8gr8;False;t3_kujkdm;False;True;t1_gis8go8;/r/anime/comments/kujkdm/looking_for_a_new_anime_to_watch/gis8gr8/;1610344010;0;False;False;anime;t5_2qh22;;0;[]; -[];;;Avery-Bradley;;;[];;;;text;t2_175rqp;False;False;[];;Re:Zero or Kill la Kill;False;False;;;;1610302578;;False;{};gis8k3z;False;t3_kujkdm;False;True;t3_kujkdm;/r/anime/comments/kujkdm/looking_for_a_new_anime_to_watch/gis8k3z/;1610344063;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ambsase;;;[];;;;text;t2_5q2uk;False;False;[];;You don't seem to have Kimi no na wa listed, so probably that?;False;False;;;;1610302610;;False;{};gis8me6;False;t3_kujfux;False;True;t3_kujfux;/r/anime/comments/kujfux/searching_for_movies_to_watch/gis8me6/;1610344101;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ErRomano_69;;;[];;;;text;t2_7m5sji0g;False;False;[];;Souce;False;False;;;;1610302611;;False;{};gis8mhe;False;t3_kuji5v;False;True;t3_kuji5v;/r/anime/comments/kuji5v/need_the_sauce_found_it_from_a_meme_but_the/gis8mhe/;1610344102;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610302641;;False;{};gis8oqe;False;t3_kujkdm;False;True;t1_gis89nw;/r/anime/comments/kujkdm/looking_for_a_new_anime_to_watch/gis8oqe/;1610344140;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi mostMANICaboutMUSIC, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610302642;moderator;False;{};gis8osf;False;t3_kujkdm;False;True;t1_gis8oqe;/r/anime/comments/kujkdm/looking_for_a_new_anime_to_watch/gis8osf/;1610344141;0;False;False;anime;t5_2qh22;;0;[]; -[];;;Fiirenz;;;[];;;;text;t2_10wfdv;False;False;[];;I haven’t watched a lot of movies (only the ones everyone knows about) but if manga is an option, check out “I sold my life for 10000 yen per year”. It’s pretty short;False;False;;;;1610302719;;False;{};gis8ufw;False;t3_kujfux;False;True;t3_kujfux;/r/anime/comments/kujfux/searching_for_movies_to_watch/gis8ufw/;1610344234;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;"If I recall correctly the part after where the anime left off is a big tone change from everything before it. Almost like a whole new story kind of thing. Probably wouldn’t have gone over well with the fans very well in all honesty. - -Realistically it probably just didn’t make enough money so they didn’t continue on and instead made adventures of sinbad which IMO just isn’t as good at all.";False;False;;;;1610302733;;False;{};gis8vig;False;t3_kujhlx;False;True;t3_kujhlx;/r/anime/comments/kujhlx/question_is_there_any_hope_for_magi_to_get/gis8vig/;1610344251;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;The sad and unfortunate answers is that there is no hope. The second season got little to no attention when it came out. It just didn't sell well and wasn't super popular :(;False;False;;;;1610302734;;False;{};gis8vkv;False;t3_kujhlx;False;True;t3_kujhlx;/r/anime/comments/kujhlx/question_is_there_any_hope_for_magi_to_get/gis8vkv/;1610344252;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pablo_Thicasso;;;[];;;;text;t2_8qyr98ei;False;False;[];;Retcon galore, my friend. Yes, if you want to see the characters again, but that's about it. Lots of fanservice (involving Suzaku) and once more, we see Britannian nobles and the main characters alike just flip flopping their outlooks for the sake of the plot. But then again, I'm sure someone down here is willing to defend this as a good movie. I personally didn't like it one bit;False;False;;;;1610302735;;False;{};gis8vnd;False;t3_kujm2d;False;True;t3_kujm2d;/r/anime/comments/kujm2d/is_it_worth_watching_lelouch_of_the_resurrection/gis8vnd/;1610344253;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tbu987;;;[];;;;text;t2_et89x;False;False;[];;Yes its not amazing but if u want to revisit the cast and see how the story could continue with even more closure then watch it. Theres a few differences between the tv series and movie trilogy worth looking up on before watching.;False;False;;;;1610302792;;False;{};gis8zr6;False;t3_kujm2d;False;True;t3_kujm2d;/r/anime/comments/kujm2d/is_it_worth_watching_lelouch_of_the_resurrection/gis8zr6/;1610344319;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;The Garden Of Words;False;False;;;;1610302810;;False;{};gis90zf;False;t3_kujfux;False;True;t3_kujfux;/r/anime/comments/kujfux/searching_for_movies_to_watch/gis90zf/;1610344339;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610302830;moderator;False;{};gis92fm;False;t3_kujp8x;False;True;t3_kujp8x;/r/anime/comments/kujp8x/where_is_this_from_its_so_beautiful/gis92fm/;1610344363;1;False;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;"YES. Lots of people will type in ""only seasons 1 and 2 are necessary, but if you *LOVE* Code Geass you could also watch Akito the Exiled and these 4 movies!,"" but at the bare minimum, the fourth movie (Lelouch of the Resurrection) is worth it. The movies do take place in a separate cinematic universe, and they make at least a couple of deviations from what the main series does so it technically cannot be canon... but these changes are easy enough to pick up on at the beginning of Lelouch of the Resurrection to not warrant having to see the first 3 movies if you don't want to IMO. - -If it's something you'd be into, you'll get to see a lot of different plot threads get resolved and it should be a lot of fun--it should give you a good idea on what probably happens after R2. If you end up hating it, you can tell yourself it's not canon (because technically it isn't) and write it off in your mind entirely. If you watched all of the main series I would highly recommend that.";False;False;;;;1610302875;;1610303065.0;{};gis95tl;False;t3_kujm2d;False;True;t3_kujm2d;/r/anime/comments/kujm2d/is_it_worth_watching_lelouch_of_the_resurrection/gis95tl/;1610344416;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;"Gu Zheng Wei - -If you simply right click an image you can reverse search it to find where it came from.";False;False;;;;1610302962;;False;{};gis9cf9;False;t3_kujp8x;False;True;t3_kujp8x;/r/anime/comments/kujp8x/where_is_this_from_its_so_beautiful/gis9cf9/;1610344523;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fiirenz;;;[];;;;text;t2_10wfdv;False;False;[];;Tbh, it’s pretty hard without knowing what you’ve already seen or which ones you liked. Have you checked out TTGL?;False;False;;;;1610302984;;False;{};gis9da0;False;t3_kujkdm;False;True;t3_kujkdm;/r/anime/comments/kujkdm/looking_for_a_new_anime_to_watch/gis9da0/;1610344536;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Massaman95;;;[];;;;text;t2_zxb3m;False;False;[];;[https://www.google.com/search?tbs=sbi:AMhZZivzwnXO6hStXKGKzEGIaZeFIpR85xY2YumVMjregtOlVc8u3imLfW-KPEwk\_10oEG5iUervnCnMG6Bfmcg766Ktoocdnd\_1XB4p8at0qhQZSD5BD1JeQvS0O2BqrOo4MUEQHW-CsUGm7iuP7fjJbyeYIv1YJk--78Gl5hlQLRU\_1lcEK1sqhIzV0TFxtpiGCmlAOlUvfquXTzmG-qgCPBet1zw6aGAVqaZXdRn9SYg48bLiGMAPISM5MLe\_1qOWQ26E08fnD4VqHaQf4PLcKasq8G\_18xn1KPygssBnZrOku56epXqhfrsBwpxKsVAYjd3nFz1yBcV2zjBrP9aa\_1jRIXWqTXB7o63g](https://www.google.com/search?tbs=sbi:AMhZZivzwnXO6hStXKGKzEGIaZeFIpR85xY2YumVMjregtOlVc8u3imLfW-KPEwk_10oEG5iUervnCnMG6Bfmcg766Ktoocdnd_1XB4p8at0qhQZSD5BD1JeQvS0O2BqrOo4MUEQHW-CsUGm7iuP7fjJbyeYIv1YJk--78Gl5hlQLRU_1lcEK1sqhIzV0TFxtpiGCmlAOlUvfquXTzmG-qgCPBet1zw6aGAVqaZXdRn9SYg48bLiGMAPISM5MLe_1qOWQ26E08fnD4VqHaQf4PLcKasq8G_18xn1KPygssBnZrOku56epXqhfrsBwpxKsVAYjd3nFz1yBcV2zjBrP9aa_1jRIXWqTXB7o63g);False;False;;;;1610303011;;False;{};gis9e8b;False;t3_kujp8x;False;True;t3_kujp8x;/r/anime/comments/kujp8x/where_is_this_from_its_so_beautiful/gis9e8b/;1610344551;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;This doesn't look like an anime to me, it seems like some sort of OC by an artist. Maybe try reverse image searching with Tin Eye;False;False;;;;1610303017;;False;{};gis9eh7;False;t3_kujp8x;False;True;t3_kujp8x;/r/anime/comments/kujp8x/where_is_this_from_its_so_beautiful/gis9eh7/;1610344555;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FalconPunchInDaFace;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FalconPunchFace;light;text;t2_4fi02812;False;False;[];;5 Centimeters per Second;False;False;;;;1610303024;;False;{};gis9etl;False;t3_kujfux;False;True;t3_kujfux;/r/anime/comments/kujfux/searching_for_movies_to_watch/gis9etl/;1610344559;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;This doesn't look like an anime to me, it seems like some sort of OC by an artist. Maybe try reverse image searching with Tin Eye;False;False;;;;1610303029;;False;{};gis9f3s;False;t3_kujp8x;False;True;t3_kujp8x;/r/anime/comments/kujp8x/where_is_this_from_its_so_beautiful/gis9f3s/;1610344564;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610303063;;False;{};gis9hh8;False;t3_kujfux;False;True;t3_kujfux;/r/anime/comments/kujfux/searching_for_movies_to_watch/gis9hh8/;1610344601;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Goukenslay;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Goukenslay;light;text;t2_h8wgs;False;False;[];;This i tried using google reverse image search went through hoops;False;False;;;;1610303195;;False;{};gis9ndx;False;t3_kuji5v;False;True;t1_gis8bxi;/r/anime/comments/kuji5v/need_the_sauce_found_it_from_a_meme_but_the/gis9ndx/;1610344694;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thesharingan_kakashi;;;[];;;;text;t2_8dtdvfg1;False;False;[];;My teen romantic comedy snafu;False;False;;;;1610303222;;False;{};gis9oj4;False;t3_kujru8;False;True;t3_kujru8;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gis9oj4/;1610344712;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thesharingan_kakashi;;;[];;;;text;t2_8dtdvfg1;False;False;[];;My teen romantic comedy snafu;False;False;;;;1610303227;;False;{};gis9ot4;False;t3_kujru8;False;False;t3_kujru8;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gis9ot4/;1610344716;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ShadeOfNothing;;;[];;;;text;t2_3n1zaq0a;False;True;[];;Violet Evergarden moved me to tears;False;False;;;;1610303245;;False;{};gis9q7v;False;t3_kujru8;False;False;t3_kujru8;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gis9q7v/;1610344738;6;True;False;anime;t5_2qh22;;0;[]; -[];;;BKR_57;;;[];;;;text;t2_8zyh377b;False;False;[];;akame ga kill;False;False;;;;1610303281;;False;{};gis9ss2;False;t3_kujru8;False;True;t3_kujru8;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gis9ss2/;1610344776;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;"what a clever disguise for a ""Netflix Berserk Sucks!!!!"" post, what a brave take to make";False;False;;;;1610303302;;False;{};gis9ubr;False;t3_kujfr0;False;True;t3_kujfr0;/r/anime/comments/kujfr0/me_when_someone_says_anime_is_lame_meh/gis9ubr/;1610344799;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ExplorersxMuse;;;[];;;;text;t2_6qa2gbdc;False;False;[];;"Grimgar no Gensou - -Your Lie in April - -FMA 03";False;False;;;;1610303325;;False;{};gis9vtj;False;t3_kujru8;False;True;t3_kujru8;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gis9vtj/;1610344822;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Into2Dpeople;;;[];;;;text;t2_471ct9ep;False;False;[];;I still have to watch the last 3 episodes of that :(;False;False;;;;1610303353;;False;{};gis9xk2;True;t3_kujru8;False;True;t1_gis9q7v;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gis9xk2/;1610344853;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hajimeri;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Montrachet;light;text;t2_ap99cz2;False;False;[];;"It is usually whatever i watched last. I go crazy and give it max points and non-stop talk about it. Then after weeks(maybe months) with the addition of new shows i see, the hype moves away and - -maybe that show wasnt a 9... 7. - -BUT ON THE OTHER HAND THIS ANIME I AM JUST WATCHING REALLY DESERVES A 9 ITS SO GOOD. - -Edit: For a real answer ill say Love Live, it was one of my first animes(6 years ago when i watched it) and i still think about it from time to time. And they still make new series with different casts!";False;False;;;;1610303376;;False;{};gis9yr7;False;t3_kujru8;False;True;t3_kujru8;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gis9yr7/;1610344873;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PhoenixFoxington;;;[];;;;text;t2_33zmnrsa;False;False;[];;"Konosuba or Attack on Titan. -I started with all the basics, Naruto, Bleach, One Piece, Death Note. When I watched AOT everything else became muted, and in terms of comedy nothing comes close to Konosuba. The only other that may come close to me is Hunter X Hunter.";False;False;;;;1610303445;;False;{};gisa1e2;False;t3_kujru8;False;False;t3_kujru8;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gisa1e2/;1610344916;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Into2Dpeople;;;[];;;;text;t2_471ct9ep;False;False;[];;Is that the one called oregairu?;False;False;;;;1610303453;;False;{};gisa1jw;True;t3_kujru8;False;False;t1_gis9ot4;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gisa1jw/;1610344919;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ShadeOfNothing;;;[];;;;text;t2_3n1zaq0a;False;True;[];;It Gets sadder;False;False;;;;1610303616;;False;{};gisa46d;False;t3_kujru8;False;True;t1_gis9xk2;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gisa46d/;1610344960;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thesharingan_kakashi;;;[];;;;text;t2_8dtdvfg1;False;False;[];;Yeah;False;False;;;;1610303771;;False;{};gisaayk;False;t3_kujru8;False;False;t1_gisa1jw;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gisaayk/;1610345067;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610303830;;False;{};gisadz4;False;t3_kujru8;False;False;t3_kujru8;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gisadz4/;1610345114;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Denzel_Potato09;;;[];;;;text;t2_5upv9a99;False;False;[];;I just watched and finished Hibike! Euphonium (Sound! Euphonium) and goodness me I have never felt SO EMPTY after watching an Anime before, and I selfishly want more of this Anime.;False;False;;;;1610304162;;False;{};gisawnx;False;t3_kujru8;False;True;t3_kujru8;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gisawnx/;1610345412;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cobl-t;;;[];;;;text;t2_44t7f0ef;False;False;[];;"ERASED -The premise is incredibly interesting, character design and depth is amazing, and so is the animation. 10/10, best 12 episodes of anime I’ve ever watched - -I second violet evergarden. It was beautiful. - -And lastly, I’d say Usagi drop. -I hope you like these as much as I did. :)";False;False;;;;1610304163;;1610304775.0;{};gisawq4;False;t3_kujru8;False;True;t3_kujru8;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gisawq4/;1610345413;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bam_Bam0352;;;[];;;;text;t2_8hqb2na6;False;False;[];;Gurren Lagann and Darling in the Franxx. Trigger is such a good studio!;False;False;;;;1610304221;;False;{};gisb0cn;False;t3_kujru8;False;True;t3_kujru8;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gisb0cn/;1610345469;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610304301;;False;{};gisb5ei;False;t3_kujkdm;False;True;t3_kujkdm;/r/anime/comments/kujkdm/looking_for_a_new_anime_to_watch/gisb5ei/;1610345552;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bam_Bam0352;;;[];;;;text;t2_8hqb2na6;False;False;[];;Infinite Strtos, Trinity Seven, Sekirei, Darling in the Franxx;False;False;;;;1610304368;;False;{};gisb9ex;False;t3_kujkdm;False;True;t3_kujkdm;/r/anime/comments/kujkdm/looking_for_a_new_anime_to_watch/gisb9ex/;1610345613;0;True;False;anime;t5_2qh22;;0;[]; -[];;;kokichu;;;[];;;;text;t2_60aouxs7;False;False;[];;"I really liked steins;gate";False;False;;;;1610304401;;False;{};gisbbu4;False;t3_kujru8;False;True;t3_kujru8;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gisbbu4/;1610345654;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;Hunter X Hunter. I thought about it so much I couldn't even sleep without thinking what's going to happen next;False;False;;;;1610304507;;False;{};gisbiy1;False;t3_kujru8;False;True;t3_kujru8;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gisbiy1/;1610345770;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bam_Bam0352;;;[];;;;text;t2_8hqb2na6;False;False;[];;Oh yeah more recently Deca-Dence. That show was surprisingly great and came out of nowhere for me. The plot is nuts in a good way.;False;False;;;;1610304675;;False;{};gisbus1;False;t3_kujru8;False;False;t3_kujru8;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gisbus1/;1610345953;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;The asterisk war;False;False;;;;1610305125;;False;{};giscqb4;False;t3_kujkdm;False;True;t3_kujkdm;/r/anime/comments/kujkdm/looking_for_a_new_anime_to_watch/giscqb4/;1610346483;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KarlMihel;;;[];;;;text;t2_3ktxpt07;False;False;[];;"Then I forgot to list it, cause I already seen it - -But thanks";False;False;;;;1610305156;;False;{};giscski;True;t3_kujfux;False;True;t1_gis8me6;/r/anime/comments/kujfux/searching_for_movies_to_watch/giscski/;1610346519;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KarlMihel;;;[];;;;text;t2_3ktxpt07;False;False;[];;Will give that a try;False;False;;;;1610305177;;False;{};giscu4r;True;t3_kujfux;False;True;t1_gis8ufw;/r/anime/comments/kujfux/searching_for_movies_to_watch/giscu4r/;1610346542;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KarlMihel;;;[];;;;text;t2_3ktxpt07;False;False;[];;Thanks;False;False;;;;1610305199;;False;{};giscvo1;True;t3_kujfux;False;True;t1_gis90zf;/r/anime/comments/kujfux/searching_for_movies_to_watch/giscvo1/;1610346566;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hyperactiv3hedgehog;;;[];;;;text;t2_6hn633nc;False;False;[];;yes, if only for the love of CC;False;False;;;;1610305204;;False;{};giscw1d;False;t3_kujm2d;False;True;t3_kujm2d;/r/anime/comments/kujm2d/is_it_worth_watching_lelouch_of_the_resurrection/giscw1d/;1610346572;0;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;"Death Note, Toradora! and Higurashi had this effect on me. That's why they are my top 3. - -Gantz also left me sleepless for a long time, but mainly because it's so incredibly brutal.";False;False;;;;1610305672;;False;{};gisdunr;False;t3_kujru8;False;True;t3_kujru8;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gisdunr/;1610347130;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FoOd_aNime;;;[];;;;text;t2_6l8ocida;False;False;[];;Death note...i had it spoiled for me before I considered watching then I couldn’t stop thinking about it for months after finishing it;False;False;;;;1610306248;;False;{};gisf0f5;False;t3_kujru8;False;True;t3_kujru8;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gisf0f5/;1610347774;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ben99ny22;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ben99ny;light;text;t2_14rmpidg;False;False;[];;"as a fan of the 2 seasons, i didn't like the movie. - -There is some kind of code geass project coming up, probably a t.v. series. It might be based on the movie but not sure. - -The movie isn't a sequel to the seasons, its a sequel to the 3 movies. - -If you do want to see the movie then you do and kinda don't need to watch the 3 recap movies because they make a major change and has an original scene but i don't remember these changes being important in the movie.";False;False;;;;1610306851;;False;{};gisg8a8;False;t3_kujm2d;False;False;t3_kujm2d;/r/anime/comments/kujm2d/is_it_worth_watching_lelouch_of_the_resurrection/gisg8a8/;1610348453;6;True;False;anime;t5_2qh22;;0;[]; -[];;;BKR_57;;;[];;;;text;t2_8zyh377b;False;False;[];;Really konosuba!!! Comedy, are you serious??;False;False;;;;1610306943;;False;{};gisgezg;False;t3_kujru8;False;True;t1_gisa1e2;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gisgezg/;1610348560;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MegaRayquayza;;;[];;;;text;t2_5lodie8o;False;False;[];;My hero academia;False;False;;;;1610307138;;False;{};gisgt4u;False;t3_kujkdm;False;True;t3_kujkdm;/r/anime/comments/kujkdm/looking_for_a_new_anime_to_watch/gisgt4u/;1610348777;1;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Ocelot2118;;;[];;;;text;t2_6nhxvcvp;False;False;[];;I watched hunter x hunter and my hero academia that’s all I’m just getting into anime;False;False;;;;1610308013;;False;{};gisijvd;True;t3_kujkdm;False;True;t1_gis9da0;/r/anime/comments/kujkdm/looking_for_a_new_anime_to_watch/gisijvd/;1610349781;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fiirenz;;;[];;;;text;t2_10wfdv;False;False;[];;"Some solid action choices that I can think about right and should be (mostly) easy to find on mainstream platforms regardless of where you are from (Netflix, Crunchyroll, etc) are: FMAB, TTGL, Fate Zero, Black Lagoon, Re:Zero, Youjo Senki, Kimetsu no Yaiba and Madoka Magica. -If you are just starting, my recommendation would be to try 3 or 4 episodes before deciding wether to drop or not a show, and trying different genres, as there are a lot of great stories out there -I hope you can find something you like";False;False;;;;1610308924;;False;{};giskdpa;False;t3_kujkdm;False;True;t1_gisijvd;/r/anime/comments/kujkdm/looking_for_a_new_anime_to_watch/giskdpa/;1610350797;1;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Ocelot2118;;;[];;;;text;t2_6nhxvcvp;False;False;[];;Thank you!!!;False;False;;;;1610308965;;False;{};giskgnb;True;t3_kujkdm;False;True;t1_giskdpa;/r/anime/comments/kujkdm/looking_for_a_new_anime_to_watch/giskgnb/;1610350843;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Razertomb1;;;[];;;;text;t2_6nwzzld6;False;False;[];;Honestly? No.;False;False;;;;1610309763;;False;{};gism2zb;False;t3_kujm2d;False;True;t3_kujm2d;/r/anime/comments/kujm2d/is_it_worth_watching_lelouch_of_the_resurrection/gism2zb/;1610351735;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GAMEjamin;;;[];;;;text;t2_5ukkxzhi;False;False;[];;Kino's journey;False;False;;;;1610310711;;False;{};giso1xf;False;t3_kujkdm;False;True;t3_kujkdm;/r/anime/comments/kujkdm/looking_for_a_new_anime_to_watch/giso1xf/;1610352816;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xiavORliab;;;[];;;;text;t2_4dniju7s;False;False;[];;Never saw it but base on what I've heard about it, and the little clips I've seen... I say no.;False;False;;;;1610310810;;False;{};giso9gc;False;t3_kujm2d;False;True;t3_kujm2d;/r/anime/comments/kujm2d/is_it_worth_watching_lelouch_of_the_resurrection/giso9gc/;1610352926;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sgt_Meowmers;;;[];;;;text;t2_61t28;False;False;[];;"Its great. I thought it was gonna be a shit show bringing him back but they handled it very well. - -You have to know however the movie follows the recap movies storyline which changes a few things. A certain character isn't dead for instance which could be confusing but they had to cut out that arch to save time in the movies.";False;False;;;;1610311391;;False;{};gispi3h;False;t3_kujm2d;False;True;t3_kujm2d;/r/anime/comments/kujm2d/is_it_worth_watching_lelouch_of_the_resurrection/gispi3h/;1610353605;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Eesti_pwner;;;[];;;;text;t2_d3vcs;False;False;[];;"It's pretty bland imo. - -I did not find it horrible but there isn't much in the movie that is surprising or inventive. - -So if you are a big fan of the characters, you can watch it, but don't expect anything as good as S1 and S2.";False;False;;;;1610311527;;1610324462.0;{};gisptge;False;t3_kujm2d;False;False;t3_kujm2d;/r/anime/comments/kujm2d/is_it_worth_watching_lelouch_of_the_resurrection/gisptge/;1610353770;4;True;False;anime;t5_2qh22;;0;[]; -[];;;OmegaAvenger_HD;;;[];;;;text;t2_156b6n;False;False;[];;If you liked CG, definitely. Whole movie is just quality fan service. Don't expect original series level story, but it's still good. Basically a good ending for everyone, also it's set in a parallel timeline so it doesn't ruin the original.;False;False;;;;1610311733;;False;{};gisq964;False;t3_kujm2d;False;True;t3_kujm2d;/r/anime/comments/kujm2d/is_it_worth_watching_lelouch_of_the_resurrection/gisq964/;1610354000;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Matrix_A-M;;;[];;;;text;t2_8vqw2qxi;False;False;[];;The most recent one I can think of would probably be Made in Abyss. I haven't been that entranced by world building in a long time.;False;False;;;;1610311776;;False;{};gisqci2;False;t3_kujru8;False;True;t3_kujru8;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gisqci2/;1610354049;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;Aot i didn't just tought about it for days i think about it ***EVERYDAY***.;False;False;;;;1610312188;;False;{};gisr989;False;t3_kujru8;False;False;t3_kujru8;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gisr989/;1610354557;10;True;False;anime;t5_2qh22;;0;[]; -[];;;rasouddress;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/rasouddress/;light;text;t2_p87m5;False;False;[];;Girls Last Tour;False;False;;;;1610314494;;False;{};gisvylb;False;t3_kujru8;False;True;t3_kujru8;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gisvylb/;1610357131;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tbu987;;;[];;;;text;t2_et89x;False;False;[];;You need to watch Gintama/Saiki Kusuo/Daily Lives of highschool boys;False;False;;;;1610320620;;False;{};git8tvc;False;t3_kujru8;False;True;t1_gisa1e2;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/git8tvc/;1610364071;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tbu987;;;[];;;;text;t2_et89x;False;False;[];;Same whatever is the latest thing I watched that is good. Happens for all shounen that I watched where each one I thought was amazing then got heavily invested in lore and whatnot.;False;False;;;;1610320773;;False;{};git952a;False;t3_kujru8;False;True;t1_gis9yr7;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/git952a/;1610364243;1;True;False;anime;t5_2qh22;;0;[]; -[];;;winasta;;;[];;;;text;t2_pgljym5;False;False;[];;same bro. but this season is just a whole different level of thinking, i legit hours and hours just thinking about what just happened and what's going to happen especially with now the huge concentration on politics i really can't stop thinking about.i'm also a bit in disbelieve with how much it has changed.;False;False;;;;1610323700;;False;{};gitf2dk;False;t3_kujru8;False;True;t1_gisr989;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gitf2dk/;1610367619;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JDantesInferno;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/BigBodyBepis;light;text;t2_20ieunh;False;False;[];;"Definitely Toradora. If there was a poll of “the top anime that gave you PADS, I’m sure that Toradora would be at least in the top 3. - -It just stuck in my mind for so long afterwards, and it gets better in retrospect IMO.";False;False;;;;1610324568;;False;{};gitgudy;False;t3_kujru8;False;True;t3_kujru8;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gitgudy/;1610368688;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JUSTpleaseSTOP;;;[];;;;text;t2_jyrli;False;False;[];;Buckle up;False;False;;;;1610326287;;False;{};gitkcs3;False;t3_kujru8;False;True;t1_gis9xk2;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gitkcs3/;1610370931;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mikecgonz;;;[];;;;text;t2_84qzc0gd;False;False;[];;Evangelion has been in my head for decades.;False;False;;;;1610326884;;False;{};gitljlr;False;t3_kujru8;False;False;t3_kujru8;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/gitljlr/;1610371746;3;True;False;anime;t5_2qh22;;0;[]; -[];;;professorMaDLib;;;[];;;;text;t2_hgwvg;False;False;[];;"Golden Kamuy. It doesn't start off great but there's a point you reach where you realize that it's going to be one of the wildest rides you've ever been on, and once you're on the ride it gets better and better until it becomes one of the greatest adventures. - -There are series out there that specialize in Drama and do it really well, there are those that do comedy really well, same for mystery, etc. Meanwhile Golden Kamuy just decides what if I wanted to do all of them at once, and it blows those specialized series out of the water at their own genre whenever it wants to. And that's not even mentioning the manga, which has none of the weaknesses of the anime and starts off strong only to get better and better. - -It's so good that it made me reevaluate what I thought was 10/10.";False;False;;;;1610339372;;False;{};giuaawf;False;t3_kujru8;False;True;t3_kujru8;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/giuaawf/;1610388985;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Into2Dpeople;;;[];;;;text;t2_471ct9ep;False;False;[];;Thanks so much ill watch erased and usagi drop next;False;False;;;;1610341409;;False;{};giuds6a;True;t3_kujru8;False;True;t1_gisawq4;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/giuds6a/;1610391490;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Into2Dpeople;;;[];;;;text;t2_471ct9ep;False;False;[];;"Ah me too -The ending was so beautiful :’) -Its so underrated it hurts..";False;False;;;;1610341648;;False;{};giue5ey;True;t3_kujru8;False;True;t1_gisbbu4;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/giue5ey/;1610391749;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Into2Dpeople;;;[];;;;text;t2_471ct9ep;False;False;[];;i had it spoiled while watching the show :’(;False;False;;;;1610341887;;False;{};giueisy;True;t3_kujru8;False;True;t1_gisf0f5;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/giueisy/;1610392011;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;For real. I can spend hours thinking about the themes of the show while listening to the amazing osts like the call of silence .;False;False;;;;1610349648;;False;{};giup0oj;False;t3_kujru8;False;True;t1_gisr989;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/giup0oj/;1610399495;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;I watched it 1 or 2 years ago and I still think about it occasionally.;False;False;;;;1610349698;;False;{};giup31a;False;t3_kujru8;False;True;t1_gitljlr;/r/anime/comments/kujru8/whats_that_one_anime_you_watched_which_so_good/giup31a/;1610399540;1;True;False;anime;t5_2qh22;;0;[]; -[];;;anonymous_idunno;;;[];;;;text;t2_3k8uz38q;False;False;[];;Tatakae Tatakae Tatakae Tatakae;False;False;;;;1610382235;;False;{};giwadci;False;t3_kujurp;False;False;t1_givynzr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwadci/;1610431549;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;"The crystal is just hardened Titan skin, something Paradise has access to thanks to Eren. The only reason I can think Annie hasn’t been pried out is because doing so without means of eating her would be too dangerous. - -As for Reiner he is sort of forced to side with Marley given that he is directly responsible for the deaths of 1/3 of Paradise. Pardisians would never again accept him as one of their own. The same can’t be said for Falco. Plus, Paradise will be heavily dependent on foreign allies, as alluded to with the loyalty of neo-Japan. Having a battle ready armored Titan would be a huge boon, and all you really need to check his loyalty is to see him massacre a Marley detachment";False;False;;;;1610382274;;False;{};giwagyi;False;t3_kujurp;False;True;t1_giw9m31;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwagyi/;1610431606;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Meme_Master_Dude;;;[];;;;text;t2_1l7vjpvx;False;False;[];;Eren: It's free real estate;False;False;;;;1610382275;;False;{};giwah4h;False;t3_kujurp;False;False;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwah4h/;1610431608;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cheesewithmold;;;[];;;;text;t2_7mkpb;False;False;[];;What's the barrier for? Does passing 20k make it the most upvoted discussion thread in the subreddit or something?;False;False;;;;1610382284;;False;{};giwahw4;False;t3_kujurp;False;False;t1_givklce;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwahw4/;1610431621;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Radix3D;;;[];;;;text;t2_4pafckex;False;False;[];;It's because I'm trying not to say too much, but the main point still stands: they are the same, not necessarily because they are killing innocents for their goals, but because they always move forward no matter what. This involves more than simply killing innocents.;False;False;;;;1610382316;;False;{};giwakua;False;t3_kujurp;False;False;t1_giupxcb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwakua/;1610431661;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610382328;;1610382563.0;{};giwam2h;False;t3_kujurp;False;True;t1_giw7rqb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwam2h/;1610431683;1;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;"> The same can’t be said for Falco. - -Why would Paradis trust a warrior candidate with their titan. If they have the means to transfer it they will give it a soldier they know is 100% loyal. - -You also forgot about my 2 other points. If Marley is defeated then Falco's entire race will die and his family and friends will be tortured to death by Marley. - -> . Having a battle ready armored Titan would be a huge boon, and all you really need to check his loyalty is to see him massacre a Marley detachment - -It would not be huge. It could affect some battles but once you get to battles the size of ww1 they would not make a difference in the whole war. A massive colonial empire like Marley could take on a 100 armored Titans.";False;False;;;;1610382492;;False;{};giwb1dy;False;t3_kujurp;False;False;t1_giwagyi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwb1dy/;1610431960;1;True;False;anime;t5_2qh22;;0;[]; -[];;;genasugelan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Genasugelan;light;text;t2_15kv3y;False;False;[];;What BurcoPresents said but also Beastars.;False;False;;;;1610382506;;False;{};giwb2ow;False;t3_kujurp;False;True;t1_giu46pu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwb2ow/;1610431980;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BitterSweetLemonCake;;;[];;;;text;t2_2lb13cng;False;False;[];;">Terrorism can be justified. - -I'm laughing my ass off, how can anyone think like that. Like, what? Are you an IS-soldier? - -I'm sure most terrorists can find an excuse why they should blow up some civilians. In the name of a god, or because they got hardcore bullied. - -It may at most make it understandable, but not justified.";False;False;;;;1610382616;;False;{};giwbcsy;False;t3_kujurp;False;True;t1_gitztvz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwbcsy/;1610432137;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;genasugelan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Genasugelan;light;text;t2_15kv3y;False;False;[];;AoT is absolutely full with tragicomic scenarios and irony.;False;False;;;;1610382669;;False;{};giwbhpj;False;t3_kujurp;False;True;t1_gisuya6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwbhpj/;1610432238;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SwanJumper;;;[];;;;text;t2_bo59v;False;False;[];;Holy shit;False;False;;;;1610382719;;False;{};giwbm7h;False;t3_kujurp;False;False;t1_giu4f9e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwbm7h/;1610432304;9;True;False;anime;t5_2qh22;;0;[]; -[];;;BoltOfBlazingGold;;;[];;;;text;t2_11qb6gnq;False;False;[];;You where just suggesting I somehow thought about them helping the island. About the quarrel, yeah, if you put it that way it is, but that same idea can save your ass in court when there is proof, it's not something that you can just sweep under the rug like it's not big deal, when they stop fighting this might matter to settle peace. As for the 4 years, there's two things, one is that they migth have not wanted to strike before due to being unprepared for a big scale conflict in case it went bad, additionaly, we can also see how he seemed relieved when it appeared that Willy was going to take the peaceful route and maybe it left him with no other option when he declared, which takes us to thing two, and it's that there's pieces missing to the puzzle. If further down the line it turns out there was no hard requirement for the attack then I will gladly admit you were right, but now it's not all that possible to tell.;False;False;;;;1610382866;;False;{};giwbzzp;False;t3_kujurp;False;True;t1_giw3ztj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwbzzp/;1610432505;1;True;False;anime;t5_2qh22;;0;[]; -[];;;realrimurutempest;;;[];;;;text;t2_4bauklbm;False;False;[];;Over 1000 awards bois 🔥🔥🔥;False;False;;;;1610382892;;False;{};giwc2ja;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwc2ja/;1610432563;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Jahva__;;;[];;;;text;t2_4f0g464s;False;False;[];;This was refreshing to read;False;False;;;;1610382897;;False;{};giwc30h;False;t3_kujurp;False;True;t1_givv4nz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwc30h/;1610432577;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MAQS357;;;[];;;;text;t2_yske3;False;False;[];;At night? That far away? Does she have sniper eyes in titan form?;False;False;;;;1610382910;;False;{};giwc46f;False;t3_kujurp;False;True;t1_givlhsz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwc46f/;1610432597;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lupin_AAGL;;;[];;;;text;t2_kb897;False;False;[];;It was on the island, that slow one on the way to the beach was the last titan in Paradis;False;False;;;;1610382914;;False;{};giwc4jb;False;t3_kujurp;False;True;t1_giu46td;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwc4jb/;1610432602;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tylermccomb1;;;[];;;;text;t2_383b4qgl;False;False;[];;I really hope this season plays out with Erin being the super edgy badass who is more of a villain than a protagonist like Light Yagami or Leluche;False;False;;;;1610382960;;False;{};giwc8n6;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwc8n6/;1610432681;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;"There are several ways the family hostage factor can be eliminated: paradise can repatriate continental eldians leaving only zealots like Gabi behind. The family could be killed in the battle, or purged afterwards. Don’t forget also that Eren knows the truth about Grice and the cruelty he experienced. The founding Titan can give Eldians memories I believe, they talked a little bit about it in S3. Imagine Eren gives Falco the memory of his uncle being used as Titan bait. Might make one realize safety in Marley is an illusion. - -I also think loyalty in this sense is pretty black and white, Paradise isn’t looking for zealots after all. Once you commit crimes against Marley there’s no going back. - -Also recall that Marley’s military is almost totally reliant on Titan power, while the rest of the world has been developing anti-Titan weaponry to fight Marley. I don’t think it’s fair to say Marley can take on 100 Armored Titans, I think they’d be hard pressed to take out a gaggle of pure Titans. I’m looking forwards to the initial stages of the war where Marlians are drafted for the first time ever and are utterly helpless against Paradise";False;False;;;;1610382973;;False;{};giwc9uf;False;t3_kujurp;False;True;t1_giwb1dy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwc9uf/;1610432715;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jahva__;;;[];;;;text;t2_4f0g464s;False;False;[];;He is in that they both realized that their enemies aren’t evil or devils, but they have to die anyways;False;False;;;;1610382976;;False;{};giwca3n;False;t3_kujurp;False;False;t1_giw44mh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwca3n/;1610432719;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BluestarDolphin;;;[];;;;text;t2_okm0w;False;False;[];;Unnecessary censorshipment. It is not nice.;False;False;;;;1610383020;;False;{};giwce6m;False;t3_kujurp;False;True;t1_giu3s7s;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwce6m/;1610432791;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Koolaidkid13;;;[];;;;text;t2_67rrv1x9;False;False;[];;Damn that was a good episode. Best on so far for me;False;False;;;;1610383045;;False;{};giwcgjj;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwcgjj/;1610432833;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Lordofdepression;;;[];;;;text;t2_75f08;False;False;[];;So after what the founding titan did in the newest chapters... you're still banal about how the founding titan is able to create more than one colossal titan?;False;False;;;;1610383154;;False;{};giwcqo1;False;t3_kujurp;False;False;t1_giv9l5v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwcqo1/;1610432991;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lordofdepression;;;[];;;;text;t2_75f08;False;False;[];;So after what the founding titan did in the newest chapters... you're still banal about how the founding titan is able to create more than one colossal titan?;False;False;;;;1610383169;;False;{};giwcs1o;False;t3_kujurp;False;True;t1_giv9l5v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwcs1o/;1610433011;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_alua_;;;[];;;;text;t2_653aqv55;False;False;[];;Yep, I’m caught up with the manga, can’t wait for the next episode;False;False;;;;1610383176;;False;{};giwcsr7;False;t3_kujurp;False;False;t1_giw8wel;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwcsr7/;1610433025;5;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;"> There are several ways the family hostage factor can be eliminated: paradise can repatriate continental eldians leaving only zealots like Gabi behind. - -This is next to impossible. The Population of mainland Eldians is larger than Paradis by many times. Imagine moving millions of people to Paradis in a wartime when Paradis doesn't even have a navy. Its never going to happen. - -> Also recall that Marley’s military is almost totally reliant on Titan power - -Except we see this is litterly not true. Marley has a ton of soldiers and cordinates soldiers with air and ground attacks. Titans cannot be everywhere. Titans may win key battles but Marley would still wipe the floor with Paradis in a conventional war.";False;False;;;;1610383222;;False;{};giwcx31;False;t3_kujurp;False;True;t1_giwc9uf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwcx31/;1610433097;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BluestarDolphin;;;[];;;;text;t2_okm0w;False;False;[];;Shifters never needed sunlight.;False;False;;;;1610383382;;False;{};giwdcbf;False;t3_kujurp;False;True;t1_git9jgw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwdcbf/;1610433354;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;Lol il seeing a theme here;False;False;;;;1610383461;;False;{};giwdjke;False;t3_kujurp;False;False;t1_giw1xta;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwdjke/;1610433490;4;True;False;anime;t5_2qh22;;0;[]; -[];;;KiwiAura;;;[];;;;text;t2_yyc17;False;False;[];;Thank you! I just felt compelled to write something after this much hype the show gave me.;False;False;;;;1610383470;;False;{};giwdkec;False;t3_kujurp;False;True;t1_giwc30h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwdkec/;1610433504;2;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;"Oh dang thats actually lower than I expected the top comments to be - -But I guess nit everyone that watches these shows likes going to threads to discuss";False;False;;;;1610383522;;False;{};giwdp7f;False;t3_kujurp;False;False;t1_giw1ldj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwdp7f/;1610433576;4;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;He was so good that he innocently ended up doing something so bad for others;False;False;;;;1610383527;;False;{};giwdpq1;False;t3_kujurp;False;False;t1_giw8371;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwdpq1/;1610433582;8;True;False;anime;t5_2qh22;;0;[]; -[];;;TatteredTongues;;;[];;;;text;t2_xbrbp;False;False;[];;"> Remember the Survey Corp passed the Cart on their way to Shinganshima. - - -Yeah but everyone had their hoods covering their heads, even on their way there, and it's not as if she ever got close enough to see what Armin looked like. - - -> She may have also gotten a look at his burnt body when she carried Zeke passed Eren. - - -Okay but that still would make it impossible for her to recognize him since she never saw him in a ""normal"" state, she has no idea what he looks like.";False;False;;;;1610383656;;False;{};giwe1ms;False;t3_kujurp;False;False;t1_giw8for;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwe1ms/;1610433751;4;True;False;anime;t5_2qh22;;0;[]; -[];;;rabid_J;;;[];;;;text;t2_753qc;False;False;[];;"If you'd have seen the memories of the last 2,000 years of bloodshed it'd probably make you reconsider your beliefs. It's one thing to read about your ancestors atrocities in history books but it'd be another to see it through memories. Makes sense to choose pacifism and wiping peoples memories so they can live regular people lives. - -If Marley didn't turn into a warmongering bunch of jackasses Paradis potentially could've gone on like that for way more than 100 years.";False;False;;;;1610383657;;False;{};giwe1sq;False;t3_kujurp;False;True;t1_gitkzq3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwe1sq/;1610433753;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinsekai21;;;[];;;;text;t2_10od0m;False;False;[];;"Interesting take. I see. - -Personally I feel Ymir's decision makes senses. - -Ymir was an orphan who got picked up and worshipped by a cult. When that cult is caught, she decided to keep playing that role to protect those people, or so she thought. It did not work out. She got humiliated, tortured and turned into a mindless Titan as we all know. Ymir regretted that she did not live for herself as she practically spent her whole life as Ymir. - -When Ymir ate Marcel and turned back into human, she felt graceful. She was granted a second chance. She vowed to live for herself only. Her conversations with Historia in season 2 highlights this part. - -The thing is, Ymir is also aware that her second life was not ""granted"" by god. By eating Marcel, though accidentally and unconsciously, she ""stole"" Marcel's life for herself. She felt that she owned it to him. Also, since she got access to Marcel's memory, she knew about the Warrior's situations very well. She understood RBA's pain and guilt and sympathized with them. As others have pointed out, she scolded Eren when he was rambling about revenge and such in season 2. - -When Ymir was running back with Historia in season, she heard and saw Reiner/Bert's struggle to get rid of the mindless Titan. She suddenly stopped and went help them. Her survival guilt as well as her sympathy for the warriors made Ymir decide to give herself in. By doing so, she hoped the Reiner and Bert's punishment for failing the mission would be less severe. That was her payback to them as she felt she ""owned"" her second life to them. - -I can see why we as the reader were confused by this decision. However, I think we forget the fact that Ymir herself is a selfless person. All Jaw titan holders have that very same personality.";False;False;;;;1610383687;;False;{};giwe4pt;False;t3_kujurp;False;True;t1_gitecdi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwe4pt/;1610433793;3;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;"Good point. Its also an interesting study on stakes in stories also - -We felt the tension due to a mixture of factors. Understanding both characters backstories, some mystery behind where the story would proceed, feeling that any action could or would be performed by either characters(no moral limitations) - -Im not too smart but I feel someone could really look into this. Rarely do stakes in any show make a viewer feel on edge like its supoosed too but something felt right here";False;False;;;;1610383733;;False;{};giwe956;False;t3_kujurp;False;False;t1_giw13nk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwe956/;1610433857;8;True;False;anime;t5_2qh22;;0;[]; -[];;;rabid_J;;;[];;;;text;t2_753qc;False;False;[];;The money only ever goes to reddit and never the user right?;False;False;;;;1610383737;;False;{};giwe9i8;False;t3_kujurp;False;True;t1_gitkpbx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwe9i8/;1610433862;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TatteredTongues;;;[];;;;text;t2_xbrbp;False;False;[];;"That's true, but also to be fair, Armin is shown in the trailer (which I assume anime-onlies have all seen), and in this episode there's a clear shot of the soldier's face. - - -But, I understand how most people would associate Pieck being in Shiganshina but not realizing she never actually saw Armin.";False;False;;;;1610383783;;False;{};giwedza;False;t3_kujurp;False;True;t1_giw8ko2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwedza/;1610433925;2;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;Whats number one?;False;False;;;;1610383792;;False;{};giweetb;False;t3_kujurp;False;True;t1_givz7v2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giweetb/;1610433936;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rabid_J;;;[];;;;text;t2_753qc;False;False;[];;"Willy did say to Magath ""Can you tell which one of us is the war hammer titan?"" so it's a fair assumption it's not Willy himself.";False;False;;;;1610383873;;False;{};giwemdt;False;t3_kujurp;False;False;t1_giw829q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwemdt/;1610434047;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Regrer47;;;[];;;;text;t2_1wtg17bq;False;False;[];;Exact same plus kiritsugu and spike;False;False;;;;1610383970;;False;{};giweveo;False;t3_kujurp;False;True;t1_giw1xta;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giweveo/;1610434172;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rabid_J;;;[];;;;text;t2_753qc;False;False;[];;"https://www.youtube.com/watch?v=ETLE4RaCTkM - -This is where Bertholdt stops being meek/going with the flow.";False;False;;;;1610384075;;False;{};giwf4zk;False;t3_kujurp;False;False;t1_giw44mh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwf4zk/;1610434308;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jahva__;;;[];;;;text;t2_4f0g464s;False;False;[];;That sub is terrible now;False;False;;;;1610384076;;False;{};giwf53m;False;t3_kujurp;False;True;t1_givhjfe;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwf53m/;1610434310;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;"The episode has broken the karma and awards records, and is awfully close to the comment record all in less than 24 hours. The season has gone up to the second place in top anime of all time in MAL. - -Wild times";False;False;;;;1610384104;;False;{};giwf7ve;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwf7ve/;1610434350;40;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;I'd avoid discussing this here because spoilers, but, fair point I guess.;False;False;;;;1610384221;;False;{};giwfj29;False;t3_kujurp;False;True;t1_giwcs1o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwfj29/;1610434505;1;True;False;anime;t5_2qh22;;0;[]; -[];;;clikplay;;;[];;;;text;t2_db345;False;False;[];;"I never said anything about the world helping Paradis, I said about them helping Marley -Well, I really don't think that ""not having attacked first"" would have even remotely help them get peace when in the process many ambassadors get killed, I don't think the countries rulers would take the argument of who attacked first over the very own life of their ambassadors. It's almost like saying that(it's kind of a stretch but yeah) if it's true what Willy said this episode and Eldians started this conflict by slaving the Marleyans and the world, it's now fine what they are doing eldians and paradis as you know, they ""provoked"" first. -Yeah, we indeed need to see the rest to know more about this anyway, we should know then";False;False;;;;1610384240;;False;{};giwfkvc;False;t3_kujurp;False;True;t1_giwbzzp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwfkvc/;1610434536;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jahva__;;;[];;;;text;t2_4f0g464s;False;False;[];;USA;False;False;;;;1610384366;;False;{};giwfwjy;False;t3_kujurp;False;True;t1_giw4yqq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwfwjy/;1610434710;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rabid_J;;;[];;;;text;t2_753qc;False;False;[];;He could've positioned himself or a simple IED below where all the Marleyan military were sitting in the stands. He didn't have to blow up an Eldian apartment building.;False;False;;;;1610384449;;False;{};giwg3xn;False;t3_kujurp;False;True;t1_givmp9z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwg3xn/;1610434813;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;All records set by itself. Lol;False;False;;;;1610384503;;False;{};giwg98e;False;t3_kujurp;False;False;t1_giwf7ve;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwg98e/;1610434887;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Peatrex;;;[];;;;text;t2_8jtr7;False;False;[];;22H hours in and already broke records, we still have 2 hours in, aot is only competing with its next episodes at this point.;False;False;;;;1610384519;;False;{};giwgao8;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwgao8/;1610434908;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Tinywampa;;;[];;;;text;t2_xhcd5;False;False;[];;Now that line makes sense, absolutely brutal from Eren.;False;False;;;;1610384542;;False;{};giwgcsg;False;t3_kujurp;False;True;t1_giufe9j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwgcsg/;1610434936;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rejus_crust;;;[];;;;text;t2_ely0h;False;False;[];;Honestly the wait is going to be painful the rest of the entire series;False;False;;;;1610384558;;False;{};giwgebt;False;t3_kujurp;False;False;t1_giw3zhn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwgebt/;1610434957;8;True;False;anime;t5_2qh22;;0;[]; -[];;;NewYearDodo;;;[];;;;text;t2_16wkxf;False;False;[];;Full metal;False;False;;;;1610384594;;False;{};giwghru;False;t3_kujurp;False;False;t1_giweetb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwghru/;1610435006;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610384607;;False;{};giwgizr;False;t3_kujurp;False;True;t1_givpoy1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwgizr/;1610435023;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Icy_Instance;;;[];;;;text;t2_4ewa9iiu;False;False;[];;When did eren say that exactly? I remember he said it but don't remember where..;False;False;;;;1610384611;;False;{};giwgjbw;False;t3_kujurp;False;True;t1_gitfbsq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwgjbw/;1610435027;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;26 hours actually, the official numbers are after 48 hours;False;False;;;;1610384620;;False;{};giwgk7f;False;t3_kujurp;False;False;t1_giwgao8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwgk7f/;1610435040;18;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;The most upvoted episode discussion, yes. Usually there’s a weekly chart of the overall airing anime karma and as a fan, I’d love to see my fav show going to the top.;False;False;;;;1610384657;;False;{};giwgnsn;False;t3_kujurp;False;True;t1_giwahw4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwgnsn/;1610435091;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GmbDarien;;;[];;;;text;t2_cmulr;False;False;[];;Light was villain since first few eps of death note, he s psycho murderer with god complex;False;False;;;;1610384684;;False;{};giwgqc3;False;t3_kujurp;False;False;t1_giwc8n6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwgqc3/;1610435127;17;True;False;anime;t5_2qh22;;0;[]; -[];;;viliml;;MAL;[];;myanimelist.net/animelist/VilimL;dark;text;t2_btyra;False;False;[];;you should tell people to install RES first;False;False;;;;1610384687;;False;{};giwgqkj;False;t3_kujurp;False;True;t1_git7hv3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwgqkj/;1610435131;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GmbDarien;;;[];;;;text;t2_cmulr;False;False;[];;You should read chapters 99/100, i liked anime version but i think manga version was done better cause of all dif facial expressions.;False;False;;;;1610384753;;False;{};giwgwna;False;t3_kujurp;False;False;t1_giw94j4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwgwna/;1610435211;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Regrer47;;;[];;;;text;t2_1wtg17bq;False;False;[];;This season still haven't reached its climax so there's still hope;False;False;;;;1610384764;;False;{};giwgxox;False;t3_kujurp;False;True;t1_giw2z5s;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwgxox/;1610435227;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rabid_J;;;[];;;;text;t2_753qc;False;False;[];;"It's absolutely not legal to blow up a civilian residence. You may personally find them ""acceptable losses"" if the target is Willy but that doesn't make it legal. - -https://www.un.org/en/genocideprevention/war-crimes.shtml -2b - -Eren could've sat under where the military guys were sitting but instead chose an apartment building that was close to the stage.";False;False;;;;1610384767;;False;{};giwgxxz;False;t3_kujurp;False;True;t1_givro0p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwgxxz/;1610435229;3;True;False;anime;t5_2qh22;;0;[]; -[];;;buttcheeksontoast;;;[];;;;text;t2_k8bd2;False;False;[];;Oh is source only with RES? I've always had it and took it for granted tbh, I have no idea.;False;False;;;;1610384789;;False;{};giwh005;False;t3_kujurp;False;True;t1_giwgqkj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwh005/;1610435257;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bukuna3;;;[];;;;text;t2_16ca4h;False;False;[];;Damn Parallel World Germany declaring WW1 :/;False;False;;;;1610384806;;False;{};giwh1lo;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwh1lo/;1610435280;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;"Does the 48 hour sand clock start when the episode airs? Or does it start when the discussion thread is posted? - -I know there are delays that vary between streaming services and countries in the world";False;False;;;;1610384814;;False;{};giwh2ak;False;t3_kujurp;False;True;t1_giwgk7f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwh2ak/;1610435289;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptainPikmin;;;[];;;;text;t2_10w5w9;False;False;[];;We actually get 48 hours, not 24. So we still have a whole day.;False;False;;;;1610384870;;False;{};giwh7m5;False;t3_kujurp;False;True;t1_giw3l1d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwh7m5/;1610435368;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rabid_J;;;[];;;;text;t2_753qc;False;False;[];;Vocal minority;False;False;;;;1610384880;;False;{};giwh8ef;False;t3_kujurp;False;True;t1_givqtfs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwh8ef/;1610435380;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dark77638;;;[];;;;text;t2_14cb1i;False;False;[];;"It started when discussion thread drop here. - -And discussion thread drop when the first fansub anime drop in.";False;False;;;;1610384882;;False;{};giwh8kl;False;t3_kujurp;False;False;t1_giwh2ak;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwh8kl/;1610435383;8;True;False;anime;t5_2qh22;;0;[];True -[];;;dark77638;;;[];;;;text;t2_14cb1i;False;False;[];;What’s the first?;False;False;;;;1610384906;;False;{};giwhasg;False;t3_kujurp;False;False;t1_giwf7ve;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwhasg/;1610435415;4;True;False;anime;t5_2qh22;;0;[];True -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;Fullmetal alchemist brotherhood;False;False;;;;1610384936;;False;{};giwhdo2;False;t3_kujurp;False;False;t1_giwhasg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwhdo2/;1610435458;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Cheesemacher;;;[];;;;text;t2_b4wfb;False;False;[];;Could have been misdirection;False;False;;;;1610385101;;False;{};giwhtev;False;t3_kujurp;False;False;t1_giwemdt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwhtev/;1610435690;4;True;False;anime;t5_2qh22;;0;[]; -[];;;erunks;;;[];;;;text;t2_dalk3;False;False;[];;Yeah I haven't read the manga at all, and I must've missed the shot of the soldier a face then, or thought it was a different soldier. In any case, I'm excited for the role they play in the future.;False;False;;;;1610385198;;False;{};giwi2uf;False;t3_kujurp;False;True;t1_giwedza;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwi2uf/;1610435822;2;True;False;anime;t5_2qh22;;0;[]; -[];;;arnav1311;;;[];;;;text;t2_81mzmva;False;False;[];;That was the building behind the stage. I think he intended to attack Willy. That position makes sense if that was his aim. Either way, I think Eren understands there will be casualties in this. Just like any war in the real world. He said he had no choice. Let's see now.;False;False;;;;1610385299;;False;{};giwicam;False;t3_kujurp;False;True;t1_giwg3xn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwicam/;1610435950;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ensianto;;;[];;;;text;t2_wmepy;False;False;[];;Lol;False;False;;;;1610385329;;False;{};giwif8f;False;t3_kujurp;False;True;t1_givy7m5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwif8f/;1610435991;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OdinTyr-;;;[];;;;text;t2_3tiioz1b;False;False;[];;Shut the fuck up.;False;False;;;;1610385404;;False;{};giwimbi;False;t3_kujurp;False;True;t1_giue1kt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwimbi/;1610436085;1;False;False;anime;t5_2qh22;;0;[]; -[];;;StormyIce;;;[];;;;text;t2_s8ct4;False;False;[];;The last six minutes or so were absolutely phenomenal;False;False;;;;1610385550;;False;{};giwj059;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwj059/;1610436285;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Dragoner7;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Dragoner7/;light;text;t2_ojq7s;False;False;[];;Here, the government literary issued a statement to close all cinemas (and restaurants etc.). Not like they would screen it anyway. At least you guys, have a choice.;False;False;;;;1610385672;;False;{};giwjbqd;False;t3_kujurp;False;True;t1_giumxzg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwjbqd/;1610436460;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GloinMyPimp;;;[];;;;text;t2_606gtsao;False;False;[];;"You're laughing because you're a privileged white dude who has never had to even consider what it would be like to be a part of some oppressed group of people in a random country that no one cares about. Terrorism can be justified and if you're so confident that you're ""laughing your ass off"" then you should hop on discord and destroy me :)";False;False;;;;1610385702;;1610391840.0;{};giwjej5;False;t3_kujurp;False;True;t1_giwbcsy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwjej5/;1610436499;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_LadyForlorn;;;[];;;;text;t2_4yu1dg7c;False;False;[];;Second or third? I checked few hours back and Steins Gate was second.;False;False;;;;1610385704;;False;{};giwjeoz;False;t3_kujurp;False;False;t1_giwf7ve;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwjeoz/;1610436501;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jahva__;;;[];;;;text;t2_4f0g464s;False;False;[];;"<3";False;False;;;;1610385712;;False;{};giwjfhm;False;t3_kujurp;False;True;t1_giwdkec;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwjfhm/;1610436512;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kk_213;;;[];;;;text;t2_72ca35r7;False;False;[];;Oh k, thx man!;False;False;;;;1610385762;;False;{};giwjk7l;False;t3_kujurp;False;True;t1_giwgwna;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwjk7l/;1610436580;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;AoT Went up to 2nd recently, unless it dropped again.;False;False;;;;1610385770;;False;{};giwjkwl;False;t3_kujurp;False;False;t1_giwjeoz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwjkwl/;1610436603;9;True;False;anime;t5_2qh22;;0;[]; -[];;;BoltOfBlazingGold;;;[];;;;text;t2_11qb6gnq;False;False;[];;"Pardon me there then, context heavily leaned in the other way and glossed over ""attacking the eldians"". As for who attacked first, if there's ever going to be peace in their lifetimes, the moment they start discussing it it should matter. Thing is, current Eldians weren't the perpetrators back then (as far as we know), lived in relative peace and had their memories wiped, so the argument does indeed apply. Is does to the citizens, and does not to the nation, like you just said. Ohh but the reverse applies for the innocents civilians right? yes, but that connects to whether he had the option to not attack.";False;False;;;;1610385876;;False;{};giwjv26;False;t3_kujurp;False;True;t1_giwfkvc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwjv26/;1610436786;1;True;False;anime;t5_2qh22;;0;[]; -[];;;throwaway_1313132939;;;[];;;;text;t2_8hv5bkfe;False;False;[];;yeah i don't remember where he said it before now?;False;False;;;;1610385985;;False;{};giwk5k3;False;t3_kujurp;False;True;t1_giwgjbw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwk5k3/;1610436942;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Deribercci;;;[];;;;text;t2_9la10o4j;False;False;[];;I have a question, were those guys with Fezzes Turks?;False;False;;;;1610386044;;False;{};giwkb6l;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwkb6l/;1610437022;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Thundamuffinz;;;[];;;;text;t2_bc660bn;False;False;[];;He came close to the death any% tho;False;False;;;;1610386100;;False;{};giwkgh4;False;t3_kujurp;False;True;t1_gisvejl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwkgh4/;1610437097;1;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;they represented the mid east alliance people from episode 1 so yeah;False;False;;;;1610386127;;False;{};giwkiz1;False;t3_kujurp;False;False;t1_giwkb6l;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwkiz1/;1610437132;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610386137;;False;{};giwkjx8;False;t3_kujurp;False;True;t1_giwjkwl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwkjx8/;1610437147;0;True;False;anime;t5_2qh22;;0;[]; -[];;;NaNaBadal;;;[];;;;text;t2_3f9qbwp2;False;False;[];;"If you notice when willy says ""i was born into this world"" eren stops for a second";False;False;;;;1610386182;;False;{};giwko1g;False;t3_kujurp;False;True;t1_gisore3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwko1g/;1610437209;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blowtorches;;;[];;;;text;t2_2l7vhp6;False;False;[];;Just pointing it out since it was for the same reason;False;False;;;;1610386206;;False;{};giwkpzh;False;t3_kujurp;False;True;t1_giwh8ef;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwkpzh/;1610437238;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheFlyingButter;;;[];;;;text;t2_j5kl6;False;False;[];;on Titan;False;False;;;;1610386232;;False;{};giwks6z;False;t3_kujurp;False;False;t1_giw9dv9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwks6z/;1610437268;3;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;shingeki no shingeki no kyojin;False;False;;;;1610386242;;False;{};giwksyb;False;t3_kujurp;False;False;t1_giw9dv9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwksyb/;1610437279;4;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;"im fine how are you - -how did you like the episode";False;False;;;;1610386329;;False;{};giwkzy8;False;t3_kujurp;False;True;t1_giw9skl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwkzy8/;1610437391;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ButtholePasta;;;[];;;;text;t2_h1yde;False;False;[];;"https://imgur.com/a/EbyIWaB - -Looks different to me at least compared to how they did the green eyes in S1.";False;False;;;;1610386339;;False;{};giwl0q1;False;t3_kujurp;False;True;t1_givarm6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwl0q1/;1610437405;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_LadyForlorn;;;[];;;;text;t2_4yu1dg7c;False;False;[];;Yes I see now. It's at second position. I expect Eren to enter the top 10 favorite character list by the end of the 16 ep. Let's see.;False;False;;;;1610386350;;False;{};giwl1jt;False;t3_kujurp;False;False;t1_giwjkwl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwl1jt/;1610437418;9;True;False;anime;t5_2qh22;;0;[]; -[];;;NaNaBadal;;;[];;;;text;t2_3f9qbwp2;False;False;[];;Another callback to the very first line of the show about humanity receiving a grim reminder of living under the fear of titans. ambassadors from around the world are present here;False;False;;;;1610386393;;False;{};giwl4wm;False;t3_kujurp;False;True;t1_gisj0wk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwl4wm/;1610437467;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PK_RocknRoll;;;[];;;;text;t2_2vw8kzkh;False;False;[];;"Especially after seeing him get so full of rage and anger when he was younger. - - -A calm rage is so much more terrifying in comparison";False;False;;;;1610386409;;False;{};giwl67h;False;t3_kujurp;False;True;t1_gisai6n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwl67h/;1610437487;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Skittyish16;;;[];;;;text;t2_1fyj58uq;False;False;[];;It was always a masterpiece... people just never gave it the credit it deserved.;False;False;;;;1610386498;;False;{};giwld6p;False;t3_kujurp;False;False;t1_giw7rqb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwld6p/;1610437593;8;True;False;anime;t5_2qh22;;0;[]; -[];;;TatteredTongues;;;[];;;;text;t2_xbrbp;False;False;[];;"> I must've missed the shot of the soldier a face then - - -Right before they cut the rope and Pieck/Porco fall down, in case you want to see for yourself.";False;False;;;;1610386545;;False;{};giwlgs5;False;t3_kujurp;False;False;t1_giwi2uf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwlgs5/;1610437645;1;True;False;anime;t5_2qh22;;0;[]; -[];;;medven;;;[];;;;text;t2_d3k7j;False;False;[];;You're the best! Thank you;False;False;;;;1610386625;;False;{};giwln8t;False;t3_kujurp;False;True;t1_gitznpj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwln8t/;1610437748;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Peatrex;;;[];;;;text;t2_8jtr7;False;False;[];;Happy cake day;False;False;;;;1610386673;;False;{};giwlr78;False;t3_kujurp;False;False;t1_giwh8kl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwlr78/;1610437815;4;True;False;anime;t5_2qh22;;0;[]; -[];;;galileotheweirdo;;MAL;[];;myanimelist.net/animelist/galileotheweirdo;dark;text;t2_gwyf6;False;False;[];;I love the spotlight she got. My favorite part of Season 2. Great “limited-edition” character who was fleshed out really well within one season and had a huge impact, but who didn’t live past it.;False;False;;;;1610386682;;False;{};giwlrwy;False;t3_kujurp;False;True;t1_givd0fg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwlrwy/;1610437838;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ColumnsAreGay;;;[];;;;text;t2_9447i2uv;False;False;[];;I mean sort of but it's still not their fault and most of them never use that power. Saying that justifies hating them just seems like a lot;False;False;;;;1610386874;;False;{};giwm7ei;False;t3_kujurp;False;False;t1_giuwmh3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwm7ei/;1610438095;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotAlphonae;;;[];;;;text;t2_6im0hgvx;False;False;[];;At this rate, we might break the comments record too;False;False;;;;1610386874;;False;{};giwm7em;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwm7em/;1610438095;17;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;Oh okay yeah makes sense;False;False;;;;1610386879;;False;{};giwm7sq;False;t3_kujurp;False;True;t1_giwghru;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwm7sq/;1610438101;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SnowyPersianDawn;;;[];;;;text;t2_f0fzy;False;False;[];;"Re: the last paragraph, capturing Eren had become the main objective of their mission by that point. They knew he was a shifter, and though at that point I don't think they knew which Titan exactly he had (I'll have to rewatch to confirm), there was a possibility that it was the Founding Titan they'd come for, and that possibility alone made it of paramount importance that they captured him and brought him back to Marley. Capturing Eren was ofc the whole objective of Annie's rampage in the S1 arc too. - -So, Reiner *did* ""have"" to capture Eren to go back home, because otherwise he'd be going back having failed the mission. But (shaken and beginning to crack as he was), he tries convincing Eren to come quietly, so that they don't have to spill any more blood. That's why Reiner pulls the move of the reveal and the capture where and when he does in the first place. - -So, you can actually argue that this whole event was *less* morally wrong than the other stuff he'd done before.";False;False;;;;1610387033;;False;{};giwmjzu;False;t3_kujurp;False;False;t1_giwa8os;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwmjzu/;1610438299;3;True;False;anime;t5_2qh22;;0;[]; -[];;;New_Reading5000;;;[];;;;text;t2_9g7e58qy;False;True;[];;Maybe not hating them but fear is very justified. Its easy to see how fear can turn into hate though.;False;False;;;;1610387088;;False;{};giwmoc7;False;t3_kujurp;False;True;t1_giwm7ei;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwmoc7/;1610438365;2;True;False;anime;t5_2qh22;;0;[]; -[];;;seedyweedy;;;[];;;;text;t2_1k2dlhj6;False;False;[];;I imagine them doggy paddling instead, much more terrifying.;False;False;;;;1610387146;;False;{};giwmt10;False;t3_kujurp;False;False;t1_givjuzs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwmt10/;1610438435;4;True;False;anime;t5_2qh22;;0;[]; -[];;;yolotitan;;;[];;;;text;t2_11xmno;False;False;[];;SUSUME;False;False;;;;1610387163;;False;{};giwmuba;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwmuba/;1610438454;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610387201;;False;{};giwmxda;False;t3_kujurp;False;True;t1_giugbmu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwmxda/;1610438503;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AvalancheZ250;;;[];;;;text;t2_14490n;False;False;[];;The beauty and cruelty of Attack on Titan.;False;False;;;;1610387267;;False;{};giwn2lq;False;t3_kujurp;False;False;t1_giumc5d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwn2lq/;1610438600;8;True;False;anime;t5_2qh22;;0;[]; -[];;;iloveacademia;;;[];;;;text;t2_3m6fzg6c;False;False;[];;"Then again that’s nothing like reiners situation because he saw this as a honor to kill them and insisted on it. - -So someone considers slaughtering you an honor and is proud to do it. Are you still going to be neutral, that’d be a bit far fetch to believe you if you said yes";False;False;;;;1610387324;;False;{};giwn7cz;False;t3_kujurp;False;True;t1_givpjle;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwn7cz/;1610438670;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AvalancheZ250;;;[];;;;text;t2_14490n;False;False;[];;Eren clearly still has this empathy. But what sets him apart is that his conviction has surpassed his empathy. He will keep moving forwards...;False;False;;;;1610387463;;False;{};giwnigw;False;t3_kujurp;False;True;t1_gisi1jl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwnigw/;1610438838;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;The person who executes the plan doesn't have to be the one who comes up with the plan. The Marleyans said that the soldiers sent to get the warriors went missing, so there must have been other people involved as well.;False;False;;;;1610387614;;False;{};giwnuqc;False;t3_kujurp;False;False;t1_givhada;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwnuqc/;1610439025;1;True;False;anime;t5_2qh22;;0;[]; -[];;;galileotheweirdo;;MAL;[];;myanimelist.net/animelist/galileotheweirdo;dark;text;t2_gwyf6;False;False;[];;It was so cute! And Pieck giving her so much affection when she says “we’re the center of the world”. Melted my heart.;False;False;;;;1610387675;;False;{};giwnzop;False;t3_kujurp;False;True;t1_giudftl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwnzop/;1610439098;3;True;False;anime;t5_2qh22;;0;[]; -[];;;_Roronoa_Zoro-;;skip7;[];;;dark;text;t2_6glp1tyo;False;False;[];;"Yeah, AoT is already reigning king in r/Anime, ain’t nothing touching it for a while.. The only competition it really has left on Reddit is One Piece’s Chapter 1000 - -AoT Episode 5 (23 hours in) - -•22.5k karma - -•5.8k comments - -•1,013 awards - - - -One Piece Chapter 1000 (48 hours in) - -•28,250 karma - -•13,240 comments - -•3275 Awards";False;False;;;;1610387684;;1610388227.0;{};giwo0f3;False;t3_kujurp;False;True;t1_giwgao8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwo0f3/;1610439109;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TTC69;;;[];;;;text;t2_hicmehg;False;False;[];;Too bad you can't hear the phenomenal voice acting in the manga, but yeah the manga chapter still feels more iconic;False;False;;;;1610387739;;False;{};giwo4wt;False;t3_kujurp;False;False;t1_giwgwna;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwo4wt/;1610439173;5;True;False;anime;t5_2qh22;;0;[]; -[];;;celerym;;;[];;;;text;t2_a9tbm;False;False;[];;The founding Titan hasn’t been active in Eren or Grisha, so we don’t know the effects on the titan form appearance.;False;False;;;;1610387742;;False;{};giwo55v;False;t3_kujurp;False;True;t1_gisyvpn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwo55v/;1610439177;1;True;False;anime;t5_2qh22;;0;[]; -[];;;galileotheweirdo;;MAL;[];;myanimelist.net/animelist/galileotheweirdo;dark;text;t2_gwyf6;False;False;[];;“Japs” is 100% a slur, as is “Oriental”. Getting a lot of casual racism against Asians in this fandom. Ironic, bcs, you know, anime;False;False;;;;1610387969;;False;{};giwonma;False;t3_kujurp;False;True;t1_giusk68;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwonma/;1610439446;2;True;False;anime;t5_2qh22;;0;[]; -[];;;James_Rex;;;[];;;;text;t2_5yxfxetm;False;False;[];;Jesus Christ 1000 awards;False;False;;;;1610388002;;False;{};giwoqc6;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwoqc6/;1610439487;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Milind_;;;[];;;;text;t2_4r6odvpc;False;False;[];;the episode is fantastic voice acting to directing, Its just absolute amazing;False;False;;;;1610388067;;False;{};giwovkj;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwovkj/;1610439563;6;True;False;anime;t5_2qh22;;0;[]; -[];;;IIPIGGAII;;;[];;;;text;t2_3hglvpc;False;False;[];;Holy crap 1k awards and almost 23 upvotes! Deserves it tho;False;False;;;;1610388235;;False;{};giwp8x0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwp8x0/;1610439765;15;True;False;anime;t5_2qh22;;0;[]; -[];;;BelizariuszS;;;[];;;;text;t2_1dicu0i;False;False;[];;"while carrying the boulder to block the Trost. - -[https://www.youtube.com/watch?v=fa8M5CKsIjg&ab\_channel=Sxvlis](https://www.youtube.com/watch?v=fa8M5CKsIjg&ab_channel=Sxvlis)";False;False;;;;1610388237;;False;{};giwp934;False;t3_kujurp;False;True;t1_giwgjbw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwp934/;1610439767;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ensianto;;;[];;;;text;t2_wmepy;False;False;[];;You mean Falco;False;False;;;;1610388287;;False;{};giwpd35;False;t3_kujurp;False;False;t1_giun9qs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwpd35/;1610439824;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YagDhuL;;;[];;;;text;t2_dm3ra;False;False;[];;"Holy shit this episode had enough tension to snap a person in half. What a masterpiece! - -I'm really enjoying the ""new"" Eren! So calm and collected! He actually empathises with Reiner. Masterfully done character development. Add Falco having a front seat to see both sides of the incoming war talking to mutual understanding, which will only further his internal conflict and wow... I can *feel* his innocence being stripped away. I just hope he hasn't been squished. - -I can't help to feel bad for Reiner, and see Eren as a sort of villain now. At least Eren knows both sides of the story while Reiner was brainwashed before he committed genocide and only learnt the truth after... Even though it's clear that Eren was hoping he wouldn't need to use violence, as he hesitated a bit during Willy's speech when he mentioned he didn't want to die and only attacked after war was declared. - -I honestly could just list all the moments on the episode... everything was so meaningful, so important to adding to the overall tension. And yet another huge cliffhanger!! The world's enemy is right in front of the whole world. In spotlight! Surrounded by the world's strongest military!";False;False;;;;1610388305;;False;{};giwpeiu;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwpeiu/;1610439845;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Voi69;;;[];;;;text;t2_lcnz6;False;False;[];;"> almost 23 upvotes - -That's a lot";False;False;;;;1610388381;;False;{};giwpkfr;False;t3_kujurp;False;False;t1_giwp8x0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwpkfr/;1610439931;38;True;False;anime;t5_2qh22;;0;[]; -[];;;Cheetah357;;;[];;;;text;t2_6h532l18;False;False;[];;I think he's gonna be neither a total villain or the protagonist that we knew. I think Isayama is trying to say that there is are no heroes/villains in war. People can be heroes from one perspective and villains from another perspective;False;False;;;;1610388407;;False;{};giwpmhi;False;t3_kujurp;False;False;t1_giwc8n6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwpmhi/;1610439960;11;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610388436;;False;{};giwpos5;False;t3_kujurp;False;True;t1_givika0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwpos5/;1610439994;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Peatrex;;;[];;;;text;t2_8jtr7;False;False;[];;Does the anime get similar stats, i never seen it here on /r/anime;False;False;;;;1610388437;;False;{};giwpov8;False;t3_kujurp;False;False;t1_giwo0f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwpov8/;1610439995;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_Roronoa_Zoro-;;skip7;[];;;dark;text;t2_6glp1tyo;False;False;[];;"Nope, it usually only gets a few hundred upvotes in r/Anime since the main discussion for the episodes are at r/OnePiece - - -Even then, the majority of users in the One Piece sub are manga readers so the episodes don’t get nearly the same amount of upvotes - - -(Maybe you’d see it in the chart for this week though.. This weeks discussion thread gained over 2,000 upvotes)";False;False;;;;1610388576;;1610388805.0;{};giwpzx6;False;t3_kujurp;False;False;t1_giwpov8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwpzx6/;1610440162;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kohlossal;;;[];;;;text;t2_iyp6b;False;False;[];;Mr. Robot did that as well in its final season. One entire episode with basically 0 talking and then one entire episode where all it is is talking.;False;False;;;;1610388609;;False;{};giwq2n2;False;t3_kujurp;False;True;t1_gisc1bn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwq2n2/;1610440203;1;True;False;anime;t5_2qh22;;0;[]; -[];;;McDragan;;;[];;;;text;t2_73i4i;False;False;[];;I think he did say he was the one who held it right?;False;False;;;;1610388666;;False;{};giwq76z;False;t3_kujurp;False;False;t1_giuja2o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwq76z/;1610440271;1;True;False;anime;t5_2qh22;;0;[]; -[];;;indominus26;;;[];;;;text;t2_3txpl2b5;False;False;[];;You'll get to know in the coming episodes...;False;False;;;;1610388926;;False;{};giwqs53;False;t3_kujurp;False;True;t1_givq7hs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwqs53/;1610440577;0;True;False;anime;t5_2qh22;;0;[]; -[];;;d_nt_;;;[];;;;text;t2_4h04z5qo;False;False;[];;don't fuck with the quiet kid;False;False;;;;1610389063;;False;{};giwr33h;False;t3_kujurp;False;True;t1_giscafj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwr33h/;1610440739;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Vickty12;;;[];;;;text;t2_480sz7cl;False;False;[];;What's the comment record?;False;False;;;;1610389102;;False;{};giwr67s;False;t3_kujurp;False;True;t1_giwm7em;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwr67s/;1610440784;3;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;Calling it, 30k karma for episode 15 and 16.;False;False;;;;1610389108;;False;{};giwr6lt;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwr6lt/;1610440790;35;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;6k;False;False;;;;1610389134;;False;{};giwr8qr;False;t3_kujurp;False;False;t1_giwr67s;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwr8qr/;1610440821;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Kam_E_luck;;;[];;;;text;t2_3i5m4uwq;False;False;[];;"ReZero is trope-ish on purpose so that it can subvert and deconstruct them later on. - -Tho i would say that many long time anime watchers would like and appreciate ReZero more than the non-anime watchers. - -AoT, on the other hand, even non-anime watchers know about it and it was alot more easy to get into and advertising";False;False;;;;1610389139;;False;{};giwr94r;False;t3_kujurp;False;True;t1_givvaxr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwr94r/;1610440827;2;True;False;anime;t5_2qh22;;0;[]; -[];;;killyjoker;;;[];;;;text;t2_zbrlnm4;False;False;[];;Masterpiece of an episode, gave me even more chills than when I read the manga, Mappa made all my fears go away with this episode;False;False;;;;1610389356;;False;{};giwrqb9;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwrqb9/;1610441087;11;True;False;anime;t5_2qh22;;0;[]; -[];;;galileotheweirdo;;MAL;[];;myanimelist.net/animelist/galileotheweirdo;dark;text;t2_gwyf6;False;False;[];;And for some reason Zeke is left free... hmmm. That’s sus. Guess we will find out why.;False;False;;;;1610389419;;False;{};giwrva9;False;t3_kujurp;False;True;t1_givcguh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwrva9/;1610441160;1;True;False;anime;t5_2qh22;;0;[]; -[];;;clikplay;;;[];;;;text;t2_db345;False;False;[];;"Yeah it wasn't current Eldians that's why I said it was kind of a stretch. I still would like to believe that if and when leaders of their countries were to discuss something about peace they would vastly be biased towards their ambassadors getting killed during a speech than who said some words asking for war. As from the information we have now Eren really seems to just have made stuff worse as there's no reason to believe that the world would help Marley -against Paradis before Willly's speech(Even if they hate or are scared of edians they each should have their own business to worry more than some story about people turning into giants and some countries were even on war with Marley) **or after even,** if eren didn't attack there, as there were only diplomats and not the rulers which would actually make the decision to attack the island. -I don't really get what you mean on that later part but anyway, yeah we can just wait and see more of the full picture";False;False;;;;1610389550;;1610390086.0;{};giws5yn;False;t3_kujurp;False;True;t1_giwjv26;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giws5yn/;1610441331;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wuzzum;;;[];;;;text;t2_i66hh;False;False;[];;"Really curious to see how life on the island has changed. No Titans now, right? - Dunno if they stopped dropping new ones off, but it seems they have that single port. Makes it easier to stop them ever getting close. - -It’s been mentioned the scouting ships haven’t made it back. So I wonder how much they could reverse engineer. Will they have new weapons more focused on humans? Though the blades are pretty effective there too - -If they get caught up enough technology-wise, they conveniently have oil (coal?) right underneath";False;False;;;;1610389562;;False;{};giws6x1;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giws6x1/;1610441345;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Kam_E_luck;;;[];;;;text;t2_3i5m4uwq;False;False;[];;"Another reason why many people put off by ReZero is properly the protagonist. - -Dont get me wrong, both Subaru & Eren are some of the most amazing and well-written protagonists in anime. But people would be more tolerant towards Eren than Subaru tbh. - -Eren was annoying in the beginning but he had a tragic backstory in the beginning and he's also hard-working. The setting of AOT also allow action-pack scenes with cool battles. - -Subaru was well.... How do i describe it. He was basically us in the most negative light. Subaru represent the worst of us when we were at our lowest. That only will put off alot of people since they dont want to be remind of the reality. Subaru was also powerless in ReZero world unlike Eren, who are still strong enough to defend himself in his world.";False;False;;;;1610389733;;False;{};giwsktm;False;t3_kujurp;False;True;t1_givbuda;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwsktm/;1610441558;1;True;False;anime;t5_2qh22;;0;[]; -[];;;harisaashraf7;;;[];;;;text;t2_4jfzaue2;False;False;[];;This deserves my free wholesome award;False;False;;;;1610389844;;False;{};giwsttb;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwsttb/;1610441698;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Omnix_01;;;[];;;;text;t2_64o6rn19;False;False;[];;Amazing Episode! Mappa Goat;False;False;;;;1610389918;;False;{};giwszqo;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwszqo/;1610441786;16;True;False;anime;t5_2qh22;;0;[]; -[];;;edutam1;;;[];;;;text;t2_2k4gsbdi;False;False;[];;"Awards record - complete. -Karma record - complete. -Comments record - waiting.";False;False;;;;1610389990;;False;{};giwt5h2;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwt5h2/;1610441875;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;"We're close aren't we? -How many more left?";False;False;;;;1610390042;;False;{};giwt9lr;False;t3_kujurp;False;False;t1_giwt5h2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwt9lr/;1610441937;5;True;False;anime;t5_2qh22;;0;[]; -[];;;edutam1;;;[];;;;text;t2_2k4gsbdi;False;False;[];;I'm not sure. First episode has 6k comments. So a 200 more for that. I don't know overall record.;False;False;;;;1610390196;;False;{};giwtlpe;False;t3_kujurp;False;False;t1_giwt9lr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwtlpe/;1610442116;6;True;False;anime;t5_2qh22;;0;[]; -[];;;macedonianmoper;;;[];;;;text;t2_71boinia;False;False;[];; Yes he clearly knows he's hurting other people, but he's also not naïve to the point where that would stop him from protecting those he loves, usually this would resolve into him refusing to fight until something awful happened. Eren clearly is taking action now and I love him for it;False;False;;;;1610390209;;False;{};giwtmnt;False;t3_kujurp;False;True;t1_giwnigw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwtmnt/;1610442129;1;True;False;anime;t5_2qh22;;0;[]; -[];;;banned-for-no_reason;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/--Degenerate--;dark;text;t2_6pics463;False;False;[];;This wasn't really wholesome though heehee;False;False;;;;1610390209;;False;{};giwtmp4;False;t3_kujurp;False;False;t1_giwsttb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwtmp4/;1610442129;10;True;False;anime;t5_2qh22;;0;[]; -[];;;TSmasher1000;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_14sxjn;False;False;[];;AoT eyeing the comment record again like Eren stares down at Reiner and Falco like they're his quarry and prey.;False;False;;;;1610390242;;False;{};giwtpc1;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwtpc1/;1610442169;15;True;False;anime;t5_2qh22;;0;[]; -[];;;harisaashraf7;;;[];;;;text;t2_4jfzaue2;False;False;[];;Haha! Yeah the episode was depressing but the recognition its getting really is wholesome.;False;False;;;;1610390326;;False;{};giwtvyl;False;t3_kujurp;False;False;t1_giwtmp4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwtvyl/;1610442266;9;True;False;anime;t5_2qh22;;0;[]; -[];;;RazorOfSimplicity;;;[];;;;text;t2_17jcpn;False;False;[];;"Ah, the ol' ""We're not so different, you and I"" trope.";False;True;;comment score below threshold;;1610390377;;False;{};giwu01c;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwu01c/;1610442327;-30;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;🐐🐐🐐 isayama as well;False;False;;;;1610390436;;False;{};giwu4u5;False;t3_kujurp;False;False;t1_giwszqo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwu4u5/;1610442395;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;100% my guy. I had my doubts here and there but seeing how this episode has performed, there is no doubt it will break 30 on the finale;False;False;;;;1610390546;;False;{};giwudq1;False;t3_kujurp;False;False;t1_giwr6lt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwudq1/;1610442523;11;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;Ah, them too! Those guys were pretty cool.;False;False;;;;1610390688;;False;{};giwup36;False;t3_kujurp;False;True;t1_givjc9p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwup36/;1610442692;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ChanceFour;;;[];;;;text;t2_49zt059z;False;False;[];;''This is my last war'', coincidence?, I think not!;False;False;;;;1610390709;;False;{};giwuqsb;False;t3_kujurp;False;False;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwuqsb/;1610442716;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thekarmagiver;;;[];;;;text;t2_exvgj;False;False;[];;Oh shiiiiiit;False;False;;;;1610390857;;False;{};giwv2ta;False;t3_kujurp;False;True;t1_gisafs9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwv2ta/;1610442889;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SoMuchHatred;;;[];;;;text;t2_o15bh;False;False;[];;Of course it was. What could possibly be more wholesome than two old friends getting the chance to catch up and talk about the good old days?;False;False;;;;1610390874;;False;{};giwv45i;False;t3_kujurp;False;False;t1_giwtmp4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwv45i/;1610442908;21;True;False;anime;t5_2qh22;;0;[]; -[];;;warmturtle5758;;;[];;;;text;t2_ajt27;False;True;[];;I doubt it. I think the second Eren revealed himself to Reiner things were set in stone.;False;False;;;;1610390940;;False;{};giwv9jp;False;t3_kujurp;False;True;t1_giue5xh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwv9jp/;1610442986;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;">bert and reiner believed that without doing this the rumbling would happen and the rest of humanity would be slaughtered - -They may have believed that (possibly maybe) but those who gave the order knew perfectly well that it wasn't the truth and that Cuck King wasn't going to do anything - ->That's the thing there are no heroes in war. - -Wrong - ->There's no good and bad side. - -Wrong - ->It's just death. - -Wrong to extent - -We have a clear case of war of extermination instigated by one side without any provocation from the other hence other side has only two options: victory or death";False;False;;;;1610391112;;False;{};giwvndw;False;t3_kujurp;False;True;t1_giwmxda;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwvndw/;1610443186;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;MartinaS90;;;[];;;;text;t2_13onma;False;False;[];;First episode has 6158 comments currently.;False;False;;;;1610391138;;False;{};giwvpha;False;t3_kujurp;False;True;t1_giwtlpe;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwvpha/;1610443219;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DJ_AW03;;;[];;;;text;t2_6a2u9w9l;False;True;[];;"6158 is the total comments for the first episode. - -The comments record (48hrs) is 5.9k which was set by the first episode, so that will easily be beaten soon and AOT could be the first show to reach 6k comments in 48hrs";False;False;;;;1610391191;;False;{};giwvtsb;False;t3_kujurp;False;False;t1_giwtlpe;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwvtsb/;1610443283;7;True;False;anime;t5_2qh22;;0;[]; -[];;;CommandoDude;;;[];;;;text;t2_9jqno;False;False;[];;What a dumb take;False;False;;;;1610391248;;False;{};giwvybi;False;t3_kujurp;False;False;t1_giv7fho;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwvybi/;1610443348;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pnin_;;;[];;;;text;t2_6q6l6l5l;False;False;[];;"This show makes my heart ache because hopelessness is such a huge theme. Throughout seasons one, two, and three - we see people we love lose so much for the smallest of victories. - -Season four has set it up for us to understand the pain of Reiner and company and the hopelessness of their situation. Now, another war is it honestly feels like no one is ""good"" - it's just pain and intergenerational trauma.";False;False;;;;1610391434;;False;{};giwwd8s;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwwd8s/;1610443564;13;True;False;anime;t5_2qh22;;0;[]; -[];;;DeGlasse;;;[];;;;text;t2_51u8aadz;False;False;[];;He respects and likes Reiner as a person, he knows Reiner did what he did thanks to years of brainwashing. A part of him was sad knowing Willy was going to make him do what he was about to do.;False;False;;;;1610391480;;False;{};giwwh05;False;t3_kujurp;False;True;t1_git5mmq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwwh05/;1610443618;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pure-Charity3749;;;[];;;;text;t2_4ubsdh5b;False;False;[];;This was one of the things that stood to me the most this episode, and I started gushing about just how important this line was in our understanding of Eren’s character arc in a reaction video I made. I instantly paused at this line and made an on the spot analysis (I don’t want to rehash what I said since I’m lazy). I’m glad others caught just how great this line is among the many others in this episode.;False;False;;;;1610391554;;False;{};giwwmyx;False;t3_kujurp;False;True;t1_gisak3a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwwmyx/;1610443703;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pepperminthippos;;;[];;;;text;t2_9esi1c4;False;False;[];;commenting to break the comment record :);False;False;;;;1610391654;;False;{};giwwv14;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwwv14/;1610443820;13;True;False;anime;t5_2qh22;;0;[]; -[];;;glitter-k;;;[];;;;text;t2_56zvdluk;False;False;[];;"Holy shit that was def worth the wait - -I wonder how strong the war hammer titan is hopefully it can stand up against Eren";False;False;;;;1610391667;;False;{};giwww1y;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwww1y/;1610443835;13;True;False;anime;t5_2qh22;;0;[]; -[];;;CommandoDude;;;[];;;;text;t2_9jqno;False;False;[];;"All of this was started because Willy did nothing while Marley invaded Paradise. And because when that turned out poorly, he decided to unite the world in another attack on Paradise. - -If there's anyone who is really, truly a villain here, it's this guy.";False;False;;;;1610391686;;False;{};giwwxhu;False;t3_kujurp;False;True;t1_giuwmsk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwwxhu/;1610443855;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610391712;;False;{};giwwzka;False;t3_kujurp;False;True;t1_gishd5x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwwzka/;1610443886;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Altin1337;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Aysidia;light;text;t2_xt2b5;False;False;[];;"Holy shit! That piano playing during the final moments constantly gave me chills! - -Does anyone know the name of the song/OST or have a link to it?";False;False;;;;1610391747;;False;{};giwx296;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwx296/;1610443923;19;True;False;anime;t5_2qh22;;0;[]; -[];;;BoltOfBlazingGold;;;[];;;;text;t2_11qb6gnq;False;False;[];;"Last part meant that just like current Eldians didn't start the conflict, some of the civiliands didn't as well, and that would fuel the circle of violence by the same token of ""we weren't the first"". I think it's pretty reasonable to expect that the nations would unite after the speech given the overwhelming reaction of the attendants, otherwise the show would have made an effort to not display such support for Willy or made a point about it, even if subtle, instead of pointing all the ligths to the ""no turning back"" sign. If anything, not supporting would have been the unlikely outcome. Similarly, pre-speech they might let Marley burn and then attack.";False;False;;;;1610391758;;False;{};giwx345;False;t3_kujurp;False;True;t1_giws5yn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwx345/;1610443936;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pari666;;;[];;;;text;t2_46bxf75d;False;False;[];;2volt;False;False;;;;1610392263;;False;{};giwy759;False;t3_kujurp;False;False;t1_giwx296;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwy759/;1610444533;7;True;False;anime;t5_2qh22;;0;[]; -[];;;AStartingPoint;;;[];;;;text;t2_74e7pgty;False;False;[];;1,070 rewards... holy shit.;False;False;;;;1610392383;;False;{};giwygs6;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwygs6/;1610444672;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;"I've been tracking the karma progress of this episode, and it seems to be on course to end with 23.5k-24k. If the post hasn't fallen off the front page by tomorrow's prime time there's a small chance that it reaches 25k but karma progress rarely deviates from its [curve](https://imgur.com/dv7HkhP) unless something unnatural happens (like that bump at 6k mark, that was when the episode was officially released, probably). - -I'm gonna put the high estimate at somewhere around 24.3k, if the post manages to stay on the frontpage by tomorrow morning. In any case the episode will certainly end up in the top 10 *posts* of all time after the 6 months voting period is over.";False;False;;;;1610392409;;False;{};giwyiso;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwyiso/;1610444700;29;True;False;anime;t5_2qh22;;0;[]; -[];;;MartinaS90;;;[];;;;text;t2_13onma;False;False;[];;When Reiner had his break down and was asking Eren to kill him, I think that was [進撃pf-adlib-c20130218巨人](https://www.youtube.com/watch?v=SAw6JkTl5B4), near the end of the song.;False;False;;;;1610392640;;False;{};giwz153;False;t3_kujurp;False;False;t1_giwx296;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwz153/;1610444963;12;True;False;anime;t5_2qh22;;0;[]; -[];;;RavenWolf1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RavenWolf1;light;text;t2_9rao2;False;False;[];;Holy shit this was intensive! I loved this episode. I can't remember last time I watched anime which held me so captivated.;False;False;;;;1610392693;;False;{};giwz5hi;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwz5hi/;1610445025;14;True;False;anime;t5_2qh22;;0;[]; -[];;;MAQS357;;;[];;;;text;t2_yske3;False;False;[];;"You all wanna know what makes this episode more impressive? - -Specially for a AOT episode and action series in general? - -Not only is the fact that it was mostly dialogue, but that the animation itself was not much to speak off. - -Usually these episodes that make a huge splash, are action heavy ones, or ones with a lot of sakuga moments, and this episode was completely sakugaless. - - -Storytelling, art style, acting, direction, these are the things that carried the episode and made it such a great one. - -You dont need high quality animation for a great series, what you do need though is everything this episode had.";False;False;;;;1610392787;;False;{};giwzd4r;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwzd4r/;1610445135;61;True;False;anime;t5_2qh22;;0;[]; -[];;;clikplay;;;[];;;;text;t2_db345;False;False;[];;I don't think their reaction means barely anything, it's almost like an emotional or epic movie that they got absorbed into, in the end when the curtains fall and they are back to their countries, it would just be a spectacle by some eldian blood guy in a far away place and it would be really disappointing if politics and war were as simple as making a dramatic show and speech and now everyone are friends. Similarly, there hasn't been shown any concrete reason on why they would attack the island pre-speech;False;False;;;;1610392793;;False;{};giwzdlr;False;t3_kujurp;False;True;t1_giwx345;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwzdlr/;1610445142;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Skyrospect;;MAL;[];;myanimelist.net/profile/Skyrospect;dark;text;t2_twdcu;False;False;[];;I was here to witness history!;False;False;;;;1610392924;;False;{};giwzoag;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giwzoag/;1610445295;16;True;False;anime;t5_2qh22;;0;[]; -[];;;chalo1227;;;[];;;;text;t2_fs667;False;False;[];;He knew it was coming , I think he expected it , him watching the family and saying I will show my resolve and crying while saying the speech seems like it was expected maybe not by a titan but he probably knew his life was on the line;False;False;;;;1610393182;;False;{};gix0951;False;t3_kujurp;False;False;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix0951/;1610445614;1;True;False;anime;t5_2qh22;;0;[]; -[];;;StormyIce;;;[];;;;text;t2_s8ct4;False;False;[];;"Lmao how are people supposed to search for that. - -Hiroyuki sawano naming his soundtracks 🤝 Me mashing my keyboard";False;False;;;;1610393388;;False;{};gix0pru;False;t3_kujurp;False;False;t1_giwz153;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix0pru/;1610445864;12;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;yeah... not really the animation is going to suck ass;False;False;;;;1610393443;;False;{};gix0u7s;False;t3_kujurp;False;True;t1_giw8nti;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix0u7s/;1610445927;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LittleWompRat;;;[];;;;text;t2_54bxq18h;False;False;[];;" ->its [curve](https://imgur.com/dv7HkhP) - -How did you get this data?";False;False;;;;1610393522;;False;{};gix10kv;False;t3_kujurp;False;False;t1_giwyiso;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix10kv/;1610446018;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ramenriderjt;;;[];;;;text;t2_5lks4igi;False;False;[];;pog;False;False;;;;1610393586;;False;{};gix15q6;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix15q6/;1610446094;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610393622;;False;{};gix18o0;False;t3_kujurp;False;True;t1_giwygs6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix18o0/;1610446137;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MartinaS90;;;[];;;;text;t2_13onma;False;False;[];;"Haha for real, in this case as it was a piano melody, I looked for the songs that started with ""pf"" which means ""piano forte"", the ones starting with ""st"" mean ""strings"", etc.";False;False;;;;1610393664;;False;{};gix1bzj;False;t3_kujurp;False;False;t1_gix0pru;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix1bzj/;1610446182;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Voi69;;;[];;;;text;t2_lcnz6;False;False;[];;Things can be tropy and well executed. In this instance there are a lot of layers of them being the same. It's actually why Eren says is 2-3 times during the episode.;False;False;;;;1610393727;;False;{};gix1h1g;False;t3_kujurp;False;False;t1_giwu01c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix1h1g/;1610446258;27;True;False;anime;t5_2qh22;;0;[]; -[];;;BoltOfBlazingGold;;;[];;;;text;t2_11qb6gnq;False;False;[];;I agree to completely disagree on this one. Not much to add other than vague interpretations or different takes on the author's intentions.;False;False;;;;1610393885;;False;{};gix1tlc;False;t3_kujurp;False;True;t1_giwzdlr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix1tlc/;1610446443;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZackDB201;;;[];;;;text;t2_1sxfbwvn;False;False;[];;lets gooo;False;False;;;;1610393963;;False;{};gix1zo6;False;t3_kujurp;False;False;t1_giwwv14;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix1zo6/;1610446533;4;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptainPikmin;;;[];;;;text;t2_10w5w9;False;False;[];;5956 is the number of comments to beat set by the premiere. I think we're surpassing it. Let's go all the way to 6000 comments!;False;False;;;;1610394068;;False;{};gix281c;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix281c/;1610446657;17;True;False;anime;t5_2qh22;;0;[]; -[];;;ZackDB201;;;[];;;;text;t2_1sxfbwvn;False;False;[];;we got this;False;False;;;;1610394077;;False;{};gix28r7;False;t3_kujurp;False;True;t1_giwr8qr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix28r7/;1610446667;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Altin1337;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Aysidia;light;text;t2_xt2b5;False;False;[];;This is what I was looking for! Thanks!;False;False;;;;1610394408;;False;{};gix2yvw;False;t3_kujurp;False;True;t1_giwz153;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix2yvw/;1610447056;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;I have it open on [Reddit Insight](https://www.redditinsight.com/#trackpost). The not-so-great thing is there's no way to save raw data so you can't really extrapolate the curve (I guess it can be done if you write some userscript/extension that polls the data it for you, but I don't know how to do that). And it only tracks a post for as long as you have the tracker open, from the point that you have it open (which I assume is for good reason, like not killing the server).;False;False;;;;1610394420;;1610394616.0;{};gix2zw4;False;t3_kujurp;False;False;t1_gix10kv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix2zw4/;1610447071;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Dinoswarleaf;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Dinoswarleaf;light;text;t2_eo4sf;False;False;[];;Ah shoot! Was hoping for 25k but 24k is insane. I think the season finale will be a stronger contender for reaching 25k (I randomly predict 28k);False;False;;;;1610394480;;False;{};gix34kz;False;t3_kujurp;False;False;t1_giwyiso;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix34kz/;1610447141;6;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;Who tf awarded the auto moderator lmao;False;False;;;;1610394488;;False;{};gix35a2;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix35a2/;1610447151;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Insecticide;;;[];;;;text;t2_a6x2b;False;False;[];;This sub likes battle shonens and isekais a lot so maybe the action episodes are expected to rank higher than the story ones;False;False;;;;1610394567;;False;{};gix3bp6;False;t3_kujurp;False;False;t1_givlwtx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix3bp6/;1610447249;1;True;False;anime;t5_2qh22;;0;[];True -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;"When someone asks you what makes AoT so great, - -You don't say its the action, the animation, or even the music, it is cohesive and masterful writing that develops characters over time and pays it off with chilling dialogue, the peak of AoT.";False;False;;;;1610394706;;False;{};gix3mne;False;t3_kujurp;False;False;t1_giwzd4r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix3mne/;1610447413;30;True;False;anime;t5_2qh22;;0;[]; -[];;;SNIPEZxp;;;[];;;;text;t2_shfufi4;False;False;[];;The soldier's were outside in the manga too, it just wasn't shown as clearly. In the manga you could see them running towards the building Eren was in, Mappa just made it more clear what was happening;False;False;;;;1610394732;;False;{};gix3or6;False;t3_kujurp;False;False;t1_git6qaz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix3or6/;1610447444;4;True;False;anime;t5_2qh22;;0;[]; -[];;;jcwild;;;[];;;;text;t2_ulv20;False;False;[];;Yes! It was brilliant. He sounded like Eren but completely dead inside lmao;False;False;;;;1610394738;;False;{};gix3p6t;False;t3_kujurp;False;True;t1_givz31t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix3p6t/;1610447450;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;"It went from 98% to 97%, there is some downvoting going on... - -not surprised lol";False;False;;;;1610394755;;False;{};gix3qkf;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix3qkf/;1610447471;32;True;False;anime;t5_2qh22;;0;[]; -[];;;jcwild;;;[];;;;text;t2_ulv20;False;False;[];;yeah I’m fine with the still images tbh!;False;False;;;;1610394764;;False;{};gix3r7s;False;t3_kujurp;False;True;t1_givy6y1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix3r7s/;1610447481;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Teshuma;;;[];;;;text;t2_15rj29;False;False;[];;Not at all, it was all a ruse, a disguise to lure the unsuspecting anime fan into a much more deep and dark story. If you rewatch S1, 2 and 3, its a COMPLETELY different experience. The characters expressions, words, actions, it all changes. This is a fucking masterpiece;False;False;;;;1610394799;;False;{};gix3tz7;False;t3_kujurp;False;False;t1_giu9epc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix3tz7/;1610447522;9;True;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;How do free awards work?;False;False;;;;1610394935;;False;{};gix44zs;False;t3_kujurp;False;True;t1_giwsttb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix44zs/;1610447689;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jcwild;;;[];;;;text;t2_ulv20;False;False;[];;the scene where eren asks reiner a series of questions about the fall of wall maria has such a nice cadence lol the voice acting was superb;False;False;;;;1610395036;;False;{};gix4d3q;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix4d3q/;1610447811;10;True;False;anime;t5_2qh22;;0;[]; -[];;;mario61752;;;[];;;;text;t2_10d49q;False;False;[];;Not like this number can be hurt by some ~200 downvotes now lol;False;False;;;;1610395082;;False;{};gix4gre;False;t3_kujurp;False;False;t1_gix3qkf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix4gre/;1610447869;23;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;Lmfao yes, if someone s trying to push it down they aint doing well;False;False;;;;1610395139;;False;{};gix4l7o;False;t3_kujurp;False;False;t1_gix4gre;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix4l7o/;1610447940;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;"Yeah from my rough observation of previous posts, the last 24 hours barely get any vote, just in the tens per hour. A post tapers off hard after the first 12 hours, even harder after the first 24 hours. - -This episode for example got 18.8k upvotes in the first 12 hours, and only another 3.7k by the 24-hour mark. You can roughly guesstimate the last 24-hour tally by taking that reduction percentage and apply it to that 3.7k gain, which would be something like 720 upvotes (this is a totally baseless method I just pull out of my ass, but I think it's not far off from the real thing). - -Edit: Some correction - for the first few hours of the last 24 hours (right now), the post still gets around 100 upvotes per hour. The rate will gradually decrease until it only gets tens per hour. Not sure when that is, probably around 36-hour mark. Well we'll know when we're done with the tracking.";False;False;;;;1610395163;;1610395708.0;{};gix4n2v;False;t3_kujurp;False;False;t1_gix34kz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix4n2v/;1610447968;1;True;False;anime;t5_2qh22;;0;[]; -[];;;drkqwsr;;;[];;;;text;t2_woc02;False;False;[];;can someone spoil me, who was the soldier that trapped pieck and porco?;False;False;;;;1610395179;;False;{};gix4oc3;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix4oc3/;1610447987;8;True;False;anime;t5_2qh22;;0;[]; -[];;;harisaashraf7;;;[];;;;text;t2_4jfzaue2;False;False;[];;Theres a coin on the top right conor in reddit they occasionally give free awards to users.;False;False;;;;1610395255;;False;{};gix4ufx;False;t3_kujurp;False;True;t1_gix44zs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix4ufx/;1610448078;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SoMuchHatred;;;[];;;;text;t2_o15bh;False;False;[];;I'll pm you.;False;False;;;;1610395284;;False;{};gix4wo8;False;t3_kujurp;False;False;t1_gix4oc3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix4wo8/;1610448112;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610395318;;False;{};gix4zap;False;t3_kujurp;False;True;t1_gix4oc3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix4zap/;1610448153;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;iiZEze;;MAL;[];;;dark;text;t2_pvrk3;False;False;[];;This is exactly what I was looking for, you hit it on the nail. Thank you so much, seriously. I'm gonna have to go back and rewatch those episodes. I love this shit so much. The friend discussion, Kenny's discussion on being a slave to something—straight up god-tier writing.;False;False;;;;1610395319;;False;{};gix4zeb;False;t3_kujurp;False;True;t1_giugbsl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix4zeb/;1610448155;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DOAbayman;;;[];;;;text;t2_10yal8;False;False;[];;I wouldn't even say that because at the beginning there wasn't much of that, there was a lot of set up for shit we didn't know was coming but we all stuck around because of the action then got blind sided by a great story.;False;False;;;;1610395329;;False;{};gix5064;False;t3_kujurp;False;False;t1_gix3mne;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix5064/;1610448167;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Justified_Eren;;;[];;;;text;t2_28tyuzkt;False;False;[];;Tybur family kept it secret, most likely for safety reasons. No one knows who has the Warhammer titan, even Marleyan officials. My bet is either Willy has it or the tall guard that always follows him.;False;False;;;;1610395404;;False;{};gix55vx;False;t3_kujurp;False;True;t1_giwq76z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix55vx/;1610448255;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;You might be interested in u/appu1232's [graphs](https://cdn.discordapp.com/attachments/476391825590976522/793854102308126730/karma_track.png) that he sometimes posts in the weekly thread. If this post follows episode 1's trajectory for the final 24 hours we can expect another 1k upvotes. Since hour 2 however (official release) it has been consistently tracking faster so I would expect a little bit more on top of that, putting us slap bang at your 23.5-24k estimate with decent chances of going a little higher.;False;False;;;;1610395510;;False;{};gix5e6m;False;t3_kujurp;False;False;t1_gix4n2v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix5e6m/;1610448383;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Zer0323;;;[];;;;text;t2_pmdvs;False;False;[];;"that beach scene was supposed to hint at the point we are at right now. eren asked his friends ""if I kill them all over there are we finally free?"" realizing that his peoples freedom is dependent on a war which will cost innocent lives.";False;False;;;;1610395650;;False;{};gix5p41;False;t3_kujurp;False;True;t1_git7m4q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix5p41/;1610448546;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;Yeah lol I got kinda carried away. Season 1 was just good for me, but then slowly it became much more than just 'walking dead' type anime. Its one of those shows where the quality increases each season.;False;False;;;;1610395682;;False;{};gix5rkr;False;t3_kujurp;False;False;t1_gix5064;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix5rkr/;1610448583;8;True;False;anime;t5_2qh22;;0;[]; -[];;;eybul;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Eybul;light;text;t2_148fq0;False;False;[];;"I want to be part of history too; have a good day you all!";False;False;;;;1610395691;;False;{};gix5s8w;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix5s8w/;1610448593;21;True;False;anime;t5_2qh22;;0;[]; -[];;;DopeTroller;;;[];;;;text;t2_2x9f3vuh;False;False;[];;Specifically 5.9k. The first 48 hours are counted towards karma, comment and award records.;False;False;;;;1610395886;;False;{};gix67cg;False;t3_kujurp;False;True;t1_gix28r7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix67cg/;1610448816;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;"Oh this is very nice. Kinda what I wanted to do but couldn't, so I just observe the post casually for fun. Very nice, thanks. - -Yeah about another 1k upvotes or thereabout is what I'm guessing. If the curve follows the premiere, it can definitely go higher.";False;False;;;;1610395998;;False;{};gix6g46;False;t3_kujurp;False;False;t1_gix5e6m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix6g46/;1610448947;4;True;False;anime;t5_2qh22;;0;[]; -[];;;jamesnahhh;;;[];;;;text;t2_6x2nds;False;False;[];;Literally perfect.;False;False;;;;1610396088;;False;{};gix6n9x;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix6n9x/;1610449053;20;True;False;anime;t5_2qh22;;0;[]; -[];;;saracennn;;;[];;;;text;t2_t23n8;False;False;[];;Yeah, but those were the ones that rebelled against Marley;False;False;;;;1610396269;;False;{};gix71ly;False;t3_kujurp;False;True;t1_giu5zaj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix71ly/;1610449272;2;True;False;anime;t5_2qh22;;0;[]; -[];;;normiesEXPLODE;;;[];;;;text;t2_17bsjz;False;False;[];;I think it was explained in S2 or S3 by Kenny that they possess modified titan powers that makes Ackermans physically strong but be unable to turn into titans. It's a result of titan experimentation, which implies Eldian;False;False;;;;1610396297;;False;{};gix73sd;False;t3_kujurp;False;True;t1_giuxkxr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix73sd/;1610449304;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TheEnergizer1985;;;[];;;;text;t2_do39o;False;False;[];;Just watched it for the 4th time lmao;False;False;;;;1610396550;;False;{};gix7nu1;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix7nu1/;1610449607;21;True;False;anime;t5_2qh22;;0;[]; -[];;;LorenzoApophis;;;[];;;;text;t2_2cbj4o9v;False;False;[];;I disagree;False;False;;;;1610397024;;False;{};gix8pf9;False;t3_kujurp;False;True;t1_giv08zi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix8pf9/;1610450180;1;True;False;anime;t5_2qh22;;0;[]; -[];;;the_mighty_slime;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/v0lt/;light;text;t2_54lk0ll4;False;False;[];;I did;False;False;;;;1610397030;;False;{};gix8pw1;False;t3_kujurp;False;False;t1_gix35a2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix8pw1/;1610450187;15;True;False;anime;t5_2qh22;;0;[]; -[];;;the_mighty_slime;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/v0lt/;light;text;t2_54lk0ll4;False;False;[];;The free rewards kinda help tho;False;False;;;;1610397116;;False;{};gix8wmu;False;t3_kujurp;False;False;t1_giwygs6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix8wmu/;1610450288;5;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;Absolute madlad;False;False;;;;1610397145;;False;{};gix8yvh;False;t3_kujurp;False;False;t1_gix8pw1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix8yvh/;1610450324;9;True;False;anime;t5_2qh22;;0;[]; -[];;;fishstiz;;;[];;;;text;t2_13rjdi;False;False;[];;I still sub for the funny memes but the discussions are hot trash. They always regurgitate the same shallow arguments and with the same words like a true hivemind. They're at least getting put aside with the sub becoming more active. The downtimes between chapters always have the worst/toxic discussions because the sub isn't as active.;False;False;;;;1610397311;;1610398231.0;{};gix9bsi;False;t3_kujurp;False;True;t1_giwf53m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix9bsi/;1610450516;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BitterSweetLemonCake;;;[];;;;text;t2_2lb13cng;False;False;[];;"Like, for example, in the Israel-Palestine conflict? Where both groups hate each other passionately, for each and every generation? Where one oppressed group literally lost its land? - -I said that circumstance makes certain decisions understandable. For example, a Palestinian man going and killing each and every Israeli he sees with his gun in the capital of Israel may be understandable. - -His whole life he was oppressed by these people, robbed by his land and his people suffer because of it. His father and his grandfather died young, his mom misses a leg and is blind, his sister has long been shot on the streets. To him, life has been a shitshow, barely worth living. - -I realize that people have lived in circumstances beyond their control and that they have been pushed into hell. As Eren said, most get pushed into hell by their circumstances. And that palestini certainly is one of them. - -If we know his story, it makes us understand why he did what he did, why he killed kids, elderly, men and women indiscriminately. Because, of course they are Israeli and it's those people who made his life shit. - -However, we have to consider this kid whom the Palestinian killed. What has it done, other than to be born into their country, as an Israeli? What crime did that kid do to get killed? Be born? However understandable the motive of the shooter is, however noble he may seem, on this day, he stole innocent lives. - -Good people, bad people, it soesn't matter. To kill people who commited no crime against you is never justified. - -You're right, I didn't live in a war-torn country, and I'm able to live a comfortable life. I realize that I'm privileged. But none of my ancestors were. I have aunts and uncles tell me of how war shaped their lives, I've seen buildings destroyed by bombs. I have aunts and uncles whose kids got abducted by the government because they were of a certain ethnicity. - -I understand very well that people have their rage, and I understand that it's way easier to preach morality than it is to follow. Especially if you have to fight through your life as violently as some people have to do. - -However, terrorism stays terrorism, and killing innocent civilians is plainly wrong. You can mark it as anything you want, you can tell me how people have no choice, I know it. - -Circumstance makes us understand what is unjust.";False;False;;;;1610397605;;False;{};gix9z13;False;t3_kujurp;False;True;t1_giwjej5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gix9z13/;1610450875;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610397882;;False;{};gixaksr;False;t3_kujurp;False;True;t1_gix73sd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixaksr/;1610451217;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ASenshi;;;[];;;;text;t2_k55sfzh;False;False;[];;Wow, talk about connecting all the dots by Tybur. This was marvelous with Eren starting the feast right away.;False;False;;;;1610398200;;False;{};gixb9uz;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixb9uz/;1610451621;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Demortus;;;[];;;;text;t2_130cjr;False;False;[];;"So, it's actually a really interesting decision from her perspective. Ymir is an Eldian from Marley who lost her life once because she selflessly sacrificed herself to save those who believed her to be a goddess. She never had a chance to live a life of her own. Marcel, in death, gave her that gift and Ymir promised to herself that she would use this opportunity to live her life for herself. Yet, throughout season 1 and 2, despite her superficially acting like a selfish-person, she instantly attached to others (Christa, Sasha, Connie) and freely dispensed advice to help them grow as people. - -In particular, Ymir saw her inner self in Christa and wanted to help her avoid the consequences of being totally selfless that she knew all too well, because she was a hippocrate. Ymir, despite her statements, had never stopped caring for others and that became clear when she nearly sacrificed her life to save the scouts in the tower. - -Later, when she and Eren had been kidnapped by Reiner and Bert, she acted in a way that she believed would offer the best protection for Christa: sacrificing herself in exchange for a promise from Reiner would protect Christa when Marley inevitably came to destroy Paradis. However, after learning that Eren had control of the coordinate, she realized that Paradis may be able to protect itself from Marley after all, and that Christa may not need her sacrifice. - -After that, Ymir was presented with a choice: return to the scouts and face judgement for her actions (helping Bert and Reiner, kidnapping Christa, etc) or repay Marcel's sacrifice by saving his friends from certain death. Here, Ymir's internal conflict came to a head, between her fake selfish persona and her altruistic core. Clearly, her altruistic core won and she decided to sacrifice her life yet another time in the service of the group of people who had given her a second chance at life. - -Ymir lived up to her namesake, living a life of self-sacrifice, in her first life and her second.";False;False;;;;1610398382;;1610429119.0;{};gixbofp;False;t3_kujurp;False;False;t1_gitecdi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixbofp/;1610451848;5;True;False;anime;t5_2qh22;;0;[]; -[];;;normiesEXPLODE;;;[];;;;text;t2_17bsjz;False;False;[];;I don't think it's a spoiler though if it came from earlier AoT seasons;False;False;;;;1610398413;;False;{};gixbqy8;False;t3_kujurp;False;True;t1_gixaksr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixbqy8/;1610451888;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cxxper01;;;[];;;;text;t2_14lyjl;False;False;[];;Eren being calm is actually somewhat more intimidating;False;False;;;;1610398877;;False;{};gixctkx;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixctkx/;1610452500;23;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;If you look carefully in the background when the audience is shown you can see an unfocused slow-mo of a guy being hit and bloodied in the face by rubble from the Titan spawn. It's clear that innocents will are dying.;False;False;;;;1610399094;;False;{};gixda9z;False;t3_kujurp;False;False;t1_gish4zq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixda9z/;1610452766;2;True;False;anime;t5_2qh22;;0;[]; -[];;;masterkm117;;;[];;;;text;t2_1pcg9x9f;False;False;[];;BEST EPISODE YET;False;False;;;;1610399181;;False;{};gixdgsh;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixdgsh/;1610452871;9;True;False;anime;t5_2qh22;;0;[]; -[];;;JusKen;;;[];;;;text;t2_9vjkj;False;False;[];;Didn't they ride around Wall Rose to find a breach in season 2? That would basically mean that, together, they rode the length of Germany's border (2000 or so miles).;False;False;;;;1610399304;;False;{};gixdqgq;False;t3_kujurp;False;False;t1_givo8cm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixdqgq/;1610453028;10;True;False;anime;t5_2qh22;;0;[]; -[];;;rajendraac_13;;;[];;;;text;t2_2s4n5spc;False;False;[];;Lets rate this episode 10/10 on Imdb my fellow Patriots;False;False;;;;1610399601;;False;{};gixedr9;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixedr9/;1610453408;18;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610399708;;1610401559.0;{};gixem44;False;t3_kujurp;False;True;t1_gisz1ks;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixem44/;1610453547;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DJ_AW03;;;[];;;;text;t2_6a2u9w9l;False;True;[];;I can't help but smile when I see all the upvotes, awards and comments;False;False;;;;1610399853;;False;{};gixexg2;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixexg2/;1610453732;15;True;False;anime;t5_2qh22;;0;[]; -[];;;MathManGetsPaid;;;[];;;;text;t2_44cmsrm5;False;False;[];;Shiiiit ff at 15;False;False;;;;1610399929;;False;{};gixf3er;False;t3_kujurp;False;True;t1_giuh8qd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixf3er/;1610453831;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuiger;;;[];;;;text;t2_nb484;False;False;[];;"Watching season 1 for the first time is kinda just ""hype and entertaining"". - -Watching season 1 after finishing the rest of the seires is kinda like ""Holy shit this is a masterpiece""";False;False;;;;1610400069;;False;{};gixfed5;False;t3_kujurp;False;False;t1_gix5rkr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixfed5/;1610454010;8;True;False;anime;t5_2qh22;;0;[]; -[];;;pinkdaisiesss;;;[];;;;text;t2_z04cd;False;False;[];;Well deserving of my free award :);False;False;;;;1610400089;;False;{};gixffvq;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixffvq/;1610454035;13;True;False;anime;t5_2qh22;;0;[]; -[];;;advancesoup;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_elr0blt;False;False;[];;Poggers;False;False;;;;1610400143;;False;{};gixfk2o;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixfk2o/;1610454103;9;True;False;anime;t5_2qh22;;0;[]; -[];;;TheMightyKutKu;;;[];;;;text;t2_z03n2;False;False;[];;I hope the season keep the great animation, Episode 1 was beautiful (well beside the beast titan cgi but Eren looks beautiful in cgi in this episode) and E2 had some great rotoscoping and dynamic camera work which I feel like could have been used in the last episode and I hope they'll use it again occasionally;False;False;;;;1610400302;;False;{};gixfws7;False;t3_kujurp;False;True;t1_gix3mne;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixfws7/;1610454317;2;True;False;anime;t5_2qh22;;0;[]; -[];;;impetu0usness;;;[];;;;text;t2_jvx6m;False;True;[];;Feels great to be part of history;False;False;;;;1610400616;;False;{};gixglcc;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixglcc/;1610454728;11;True;False;anime;t5_2qh22;;0;[]; -[];;;AussieManny;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Nauran;light;text;t2_13tmtu;False;False;[];;On that occasion Eren was a tad overzealous.;False;False;;;;1610400660;;1610401827.0;{};gixgos6;False;t3_kujurp;False;True;t1_givzwt5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixgos6/;1610454786;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheMightyKutKu;;;[];;;;text;t2_z03n2;False;False;[];;Just think about the probable months long wait between the two cour...;False;False;;;;1610400755;;False;{};gixgw09;False;t3_kujurp;False;True;t1_giwgebt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixgw09/;1610454909;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dkzenzuri;;;[];;;;text;t2_eg7qxv6;False;False;[];;The founding titan not could but CAN control them, its why they were there.;False;False;;;;1610401187;;False;{};gixhtoq;False;t3_kujurp;False;True;t1_giti4xc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixhtoq/;1610455505;2;True;False;anime;t5_2qh22;;0;[]; -[];;;asidopo;;;[];;;;text;t2_16p7u9;False;False;[];;"I don’t think so though - -When Willy said he didn’t want to die because he was born into this world, Eren’s eyes changed expression and it actually looked like he was about to not do anything until Willy declared war on Paradis and Eren’s eyes turned back to normal. A little bit of hope extinguished as quick as it came by.";False;False;;;;1610401276;;False;{};gixi0jz;False;t3_kujurp;False;True;t1_giwv9jp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixi0jz/;1610455624;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LittleWompRat;;;[];;;;text;t2_54bxq18h;False;False;[];;I gave this post 11 awards.;False;False;;;;1610401279;;False;{};gixi0rj;False;t3_kujurp;False;False;t1_gix35a2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixi0rj/;1610455628;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Xavier93;;;[];;;;text;t2_yg6ey;False;False;[];;Yes, I think it was episode 7.;False;False;;;;1610401332;;False;{};gixi4qq;False;t3_kujurp;False;True;t1_giu8koh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixi4qq/;1610455695;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;dude's so stone cold its terrifying;False;False;;;;1610401369;;False;{};gixi7j7;False;t3_kujurp;False;False;t1_gixctkx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixi7j7/;1610455742;9;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;it was me;False;False;;;;1610401378;;False;{};gixi886;False;t3_kujurp;False;False;t1_gix4oc3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixi886/;1610455754;13;True;False;anime;t5_2qh22;;0;[]; -[];;;ZackDB201;;;[];;;;text;t2_1sxfbwvn;False;False;[];;23K lets goooo;False;False;;;;1610401379;;False;{};gixi8bi;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixi8bi/;1610455755;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Xavier93;;;[];;;;text;t2_yg6ey;False;False;[];;After seeing what Reiner can do, if he is the warhammer he might be alive.;False;False;;;;1610401405;;False;{};gixiacu;False;t3_kujurp;False;True;t1_gitvnli;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixiacu/;1610455791;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Onihige;;;[];;;;text;t2_8bp37;False;False;[];;I bet he's gonna choke after setting up RTSR.;False;False;;;;1610401418;;False;{};gixibcx;False;t3_kujurp;False;True;t1_gisz9bn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixibcx/;1610455809;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SigmundFreud;;;[];;;;text;t2_3cp72;False;False;[];;That's true, sort of. Isayama could have decided that it was impossible to control them because they were out of battery, but I suppose even then all they'd need to do is break open enough of the wall to free one titan, and then set off a loop of freed titans tearing down the walls to free the rest.;False;False;;;;1610401464;;False;{};gixiexk;False;t3_kujurp;False;True;t1_gixhtoq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixiexk/;1610455868;1;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;Chad;False;False;;;;1610401587;;False;{};gixiofy;False;t3_kujurp;False;False;t1_gixi0rj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixiofy/;1610456035;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610401668;;False;{};gixiuur;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixiuur/;1610456144;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chalo1227;;;[];;;;text;t2_fs667;False;False;[];;So i think he was ready to die , the word choices when looking at the family and the fact that he was crying makes me think its expected , maybe he didnt expect for that to be by a titan , but I think he knew it was risking his life , the whole I am showing my resolve speech sounds like death flag to me;False;False;;;;1610401744;;False;{};gixj0o3;False;t3_kujurp;False;True;t1_givika0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixj0o3/;1610456246;3;True;False;anime;t5_2qh22;;0;[]; -[];;;EffectiveLimit;;;[];;;;text;t2_1n00mzx8;False;False;[];;"I mean, in existing circumstances this is pretty easy - [manga spoilers ofc](/s ""just make everybody die. They kill Eren, all important characters die with him, titans don't stop and make the whole world (what's left) a wasteland, happy end. Or Eren kills everybody and does some other shit (i saw an unconfirmed spoiler of the ending, but won't write it even here) to conclude it. Genocide is pretty quick, especially when half of it is already done."")";False;False;;;;1610401849;;False;{};gixj8qy;False;t3_kujurp;False;True;t1_gisz1ks;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixj8qy/;1610456384;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610401902;;False;{};gixjcs9;False;t3_kujurp;False;True;t1_gisd6cp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixjcs9/;1610456458;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610402076;;False;{};gixjq5y;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixjq5y/;1610456692;11;True;False;anime;t5_2qh22;;0;[]; -[];;;greenrai;;;[];;;;text;t2_q2nc7;False;False;[];;Yeah and also strategically, you wouldn’t want the head of the family to be the warhammer.;False;False;;;;1610402209;;False;{};gixk0dd;False;t3_kujurp;False;True;t1_gixj0o3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixk0dd/;1610456877;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Blue_z;;;[];;;;text;t2_9f81y;False;False;[];;Excellent episode, only critique would be choice of OST in the last minute but otherwise perfect imo;False;False;;;;1610402297;;False;{};gixk74k;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixk74k/;1610456996;5;True;False;anime;t5_2qh22;;0;[]; -[];;;LeanderN;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/aLeegatou;light;text;t2_16k2bzww;False;False;[];;Ost might not have hit as hard as expected, in my eyes that's because you cannot end an episode on a full blasting ost like that, but I'm expecting some better osts for next week. Still one of the best episodes in AoT up till today;False;False;;;;1610402501;;False;{};gixkmro;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixkmro/;1610457293;11;True;False;anime;t5_2qh22;;0;[]; -[];;;alexthetruth230;;;[];;;;text;t2_n84uan6;False;False;[];;Didn't we learn this was propaganda? I'm pretty sure either Rod or the King in Kenny's flashback said it was a bluff to keep Marley away;False;False;;;;1610402782;;False;{};gixl7w8;False;t3_kujurp;False;False;t1_giti4xc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixl7w8/;1610457677;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaneghi;;;[];;;;text;t2_3lba9law;False;False;[];;What do you think is cruel then?;False;False;;;;1610402852;;False;{};gixldad;False;t3_kujurp;False;True;t1_givjc79;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixldad/;1610457776;1;True;False;anime;t5_2qh22;;0;[]; -[];;;s_theslasher;;;[];;;;text;t2_17h3g7;False;False;[];;And it was Marley declaring war not the whole world. A crowd with embassadors (who sympathize with willy) and journalists applauding is not enough to say all the nation's would agree with Marley...;False;False;;;;1610402855;;False;{};gixldgn;False;t3_kujurp;False;True;t1_gisw73m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixldgn/;1610457779;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DJ_AW03;;;[];;;;text;t2_6a2u9w9l;False;True;[];;23k barrier now broken 🎉🎉🎉🎉;False;False;;;;1610402895;;False;{};gixlgha;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixlgha/;1610457831;22;True;False;anime;t5_2qh22;;0;[]; -[];;;s_theslasher;;;[];;;;text;t2_17h3g7;False;False;[];;Marley was the one declaring war. The embassadors (who are friends with willy) and journalists applauding Willy's speech can't take decisions for their nations...;False;False;;;;1610402943;;False;{};gixljx5;False;t3_kujurp;False;True;t1_gisboc1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixljx5/;1610457893;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jung2019;;;[];;;;text;t2_171etn;False;False;[];;2volt, perhaps the most anticlimactic soundtrack of this series.;False;True;;comment score below threshold;;1610403040;;False;{};gixlr0g;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixlr0g/;1610458014;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;Basementduck;;;[];;;;text;t2_14r4ggrr;False;False;[];;If Reiner and Falco are dead, Eren had the opportunity to save Falco's life, who he regarded as a good person, but insisted he should stay to listen to him and Reiner talk. Crazy how much he's changed.;False;False;;;;1610403206;;False;{};gixm3dz;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixm3dz/;1610458227;9;True;False;anime;t5_2qh22;;0;[]; -[];;;koryaku;;;[];;;;text;t2_iti6cz;False;False;[];;*John Cena entrance theme intensifies*;False;False;;;;1610403219;;False;{};gixm4fc;False;t3_kujurp;False;True;t1_gisac08;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixm4fc/;1610458245;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610403352;;False;{};gixmee3;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixmee3/;1610458423;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610403628;;False;{};gixmz3h;False;t3_kujurp;False;True;t1_gixmee3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixmz3h/;1610458807;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610403660;;False;{};gixn1hj;False;t3_kujurp;False;True;t1_gixjq5y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixn1hj/;1610458849;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OdinTyr-;;;[];;;;text;t2_3tiioz1b;False;False;[];;Has nothing to do with your question, but you mean Pieck and Porco. Marcel is Porco's older brother and he got eaten when saving Reiner from Ymir 9 years ago when they landed on Paradis.;False;False;;;;1610403679;;False;{};gixn2tx;False;t3_kujurp;False;False;t1_gixmee3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixn2tx/;1610458872;5;False;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;"I liked it but isn't this over-selling it a bit? It was very tense, sure. It had a decent reveal but it was done through an exposition dump (a well executed one of course). - -While Hero exists? And Madoka episode 10, etc.?";False;False;;;;1610403721;;False;{};gixn5zu;False;t3_kujurp;False;True;t1_gisdhr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixn5zu/;1610458930;2;True;False;anime;t5_2qh22;;0;[]; -[];;;shockzz123;;;[];;;;text;t2_g0cyr;False;False;[];;"There is. Oda, the author of One Piece, has said he's had the ending in his head since before he started the series, and has majority of the major plot points planned out in his head, some of them since the start and others years in advance before he actually gets to them in the story. - -Of course, One Piece wasn't meant to be 20+ years long in the first place (Oda's first estimate was 5 years lmao), so he's had to come up with a lot of stuff he didn't initially plan (this is where him having stuff planned out years in advance rather than the start comes into play) but the way he weaves it in so seamlessly makes it seem like he's had it all planned from the start lol.";False;False;;;;1610403760;;False;{};gixn87e;False;t3_kujurp;False;True;t1_givzau6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixn87e/;1610458971;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;I mean, it's recycled. If I had never heard it before, I would be impressed. Now it's just okay.;False;False;;;;1610403819;;False;{};gixncza;False;t3_kujurp;False;True;t1_gixlr0g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixncza/;1610459057;1;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;"Damn that works well. - -Maybe they are saving that track for bigger moments?";False;False;;;;1610403926;;False;{};gixnkyp;False;t3_kujurp;False;True;t1_gisgz1w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixnkyp/;1610459202;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EllesarisEllendil;;;[];;;;text;t2_kxonu;False;False;[];;Pretty sure that's just due to his jumbled memories from the other Attack Titans.;False;False;;;;1610403953;;False;{};gixnmyc;False;t3_kujurp;False;True;t1_gisak3a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixnmyc/;1610459237;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610403978;;False;{};gixnotr;False;t3_kujurp;False;True;t1_gixjq5y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixnotr/;1610459270;6;True;False;anime;t5_2qh22;;0;[]; -[];;;bostonian38;;;[];;;;text;t2_12vydv1g;False;False;[];;How can you say that when it was played for frickin Levi vs. Beast Titan...;False;False;;;;1610404251;;False;{};gixo9ax;False;t3_kujurp;False;False;t1_gixlr0g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixo9ax/;1610459657;15;True;False;anime;t5_2qh22;;0;[]; -[];;;DevelopmentClean1473;;;[];;;;text;t2_9q25jov0;False;False;[];;"Can someone please explain why Eren said that he and Reiner are the same, both victims of their societies and all that, and proceeded to kill him (or at least try to)? - -Other than that, What. An. Episode.";False;False;;;;1610404470;;False;{};gixopcc;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixopcc/;1610459954;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610404649;;False;{};gixp2t0;False;t3_kujurp;False;True;t1_gixjq5y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixp2t0/;1610460198;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EllesarisEllendil;;;[];;;;text;t2_kxonu;False;False;[];;">basically caused Rome's implosion by making them too scared to venture past the Rhine. - -Basically is lifting heavy there bro. The Romans returned and laid waste under Germanicus, not to mention lasting some 4 extra centuries in the west.";False;False;;;;1610404675;;False;{};gixp4qr;False;t3_kujurp;False;True;t1_giughf7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixp4qr/;1610460233;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MaintenanceOk2194;;;[];;;;text;t2_80yli806;False;False;[];;Pretty sure it was only 1/4 of the wall, but that's still very long.;False;False;;;;1610404691;;False;{};gixp5y3;False;t3_kujurp;False;True;t1_gixdqgq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixp5y3/;1610460255;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hurr1canE_;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Empiiriic;light;text;t2_10rivu;False;False;[];;I was honestly expecting to have Armin be sitting right under the stage and transform at the climax of the play, and just flop down and squash every since person attending.;False;False;;;;1610404715;;False;{};gixp7p4;False;t3_kujurp;False;True;t1_gisttga;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixp7p4/;1610460286;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EllesarisEllendil;;;[];;;;text;t2_kxonu;False;False;[];;Odds are he is the hammer titan, so not dead.;False;False;;;;1610404762;;False;{};gixpb24;False;t3_kujurp;False;True;t1_gisd9sy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixpb24/;1610460347;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EllesarisEllendil;;;[];;;;text;t2_kxonu;False;False;[];;No such thing as heroes in war, only people doing what they need to survive. At this point, anybody that does not get that has been watching a different show.;False;False;;;;1610404854;;False;{};gixphyw;False;t3_kujurp;False;True;t1_gischn4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixphyw/;1610460474;1;True;False;anime;t5_2qh22;;0;[]; -[];;;trowawufei;;;[];;;;text;t2_ifqvm;False;False;[];;I guess maybe with Grisha and Eren? There aren’t any specific abilities related to the Attack Titan (so far) but they did gain the Coordinate from eating the Founding.;False;False;;;;1610404949;;False;{};gixpowa;False;t3_kujurp;False;True;t1_givq7hs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixpowa/;1610460598;1;True;False;anime;t5_2qh22;;0;[]; -[];;;exozaln;;;[];;;;text;t2_x135v;False;False;[];;"Both of them were doing what they had to do in order to survive - -And Marley had just said they wanted to kill Eren and probably every paradisian by declaring war on them. - -Eren is trying to save his world, his people, by attacking first, just like Reiner was trying to save his world, his people, by attacking years ago on paradise.";False;False;;;;1610404980;;False;{};gixpr5s;False;t3_kujurp;False;False;t1_gixopcc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixpr5s/;1610460642;14;True;False;anime;t5_2qh22;;0;[]; -[];;;StormyIce;;;[];;;;text;t2_s8ct4;False;False;[];;"Its not that he actually wants to kill Reiner, we even see him sympathizing with Reiner in this episode. It connects to what he said earlier ""I'm here because I didn't have a choice"". As to what he actually means by that, you'll have to wait and see :)";False;False;;;;1610404989;;False;{};gixpru0;False;t3_kujurp;False;False;t1_gixopcc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixpru0/;1610460653;12;True;False;anime;t5_2qh22;;0;[]; -[];;;ABC_Ajax;;;[];;;;text;t2_qrjhlzm;False;False;[];;Reiner attacked Paradis to protect Marley from the rumbling (or so he thought since Paradis was never gonna attack anyway but Marley wanted the founding titan's power). Eren attacked Marley to save Paradis from the war that Willy declare upon them last episode.;False;False;;;;1610405004;;False;{};gixpsw7;False;t3_kujurp;False;False;t1_gixopcc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixpsw7/;1610460674;10;True;False;anime;t5_2qh22;;0;[]; -[];;;MuddiestMudkip;;;[];;;;text;t2_406pyaqh;False;False;[];;Because they declared war on Paradis, which made Reiner his enemy. You could see eren give a small pained smile when war was declades.;False;False;;;;1610405019;;False;{};gixpu3i;False;t3_kujurp;False;False;t1_gixopcc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixpu3i/;1610460695;13;True;False;anime;t5_2qh22;;0;[]; -[];;;DevelopmentClean1473;;;[];;;;text;t2_9q25jov0;False;False;[];;"Okay, so basically the conclusion Eren makes is that while he respects and understands Reiner, at the end of the day he must fulfill his duty as an Eldian, protector of Eldia, and thus attacker of Marley? Including Reiner? - -On another note, why did Eren lead Reiner to the basement with Falco in the first place? Why not just get the soldier to do it?";False;False;;;;1610405175;;False;{};gixq5ng;False;t3_kujurp;False;False;t1_gixpr5s;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixq5ng/;1610460902;11;True;False;anime;t5_2qh22;;0;[]; -[];;;jung2019;;;[];;;;text;t2_171etn;False;False;[];;It was very anticlimactic for that scene as well. Scene would have been more hype with a better soundtrack.;False;False;;;;1610405409;;False;{};gixqmws;False;t3_kujurp;False;True;t1_gixo9ax;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixqmws/;1610461227;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610405473;;False;{};gixqrnf;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixqrnf/;1610461312;9;True;False;anime;t5_2qh22;;0;[]; -[];;;exozaln;;;[];;;;text;t2_x135v;False;False;[];;Well Reiner may not have trusted a random soldier and maybe Eren wanted Falco to pick up some things from the Reiner conversation? Idk it would be pointless if they're killed after that;False;False;;;;1610405562;;False;{};gixqyau;False;t3_kujurp;False;False;t1_gixq5ng;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixqyau/;1610461433;4;True;False;anime;t5_2qh22;;0;[]; -[];;;trowawufei;;;[];;;;text;t2_ifqvm;False;False;[];;Yeah I think you're right, they couldn't know for sure that it was the Founding Titan until he used the Coordinate. Doubt there's any other way to verify it, and no one seemed to have any fucking clue what the Attack Titan had been up to in the past century.;False;False;;;;1610405575;;False;{};gixqzal;False;t3_kujurp;False;True;t1_giwmjzu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixqzal/;1610461451;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Raknel;;;[];;;;text;t2_xwf5o;False;False;[];;Who didn't?;False;False;;;;1610405579;;False;{};gixqzmt;False;t3_kujurp;False;True;t1_gix35a2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixqzmt/;1610461457;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610405605;;1610409167.0;{};gixr1l2;False;t3_kujurp;False;True;t1_gixjq5y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixr1l2/;1610461494;4;True;False;anime;t5_2qh22;;0;[]; -[];;;DevelopmentClean1473;;;[];;;;text;t2_9q25jov0;False;False;[];;Ok...is the first point right? Altho it's more opinion-based but yeah.;False;False;;;;1610405672;;False;{};gixr6lz;False;t3_kujurp;False;False;t1_gixqyau;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixr6lz/;1610461589;3;True;False;anime;t5_2qh22;;0;[]; -[];;;myrmonden;;;[];;;;text;t2_f0rs6;False;False;[];;also WW1 started with the assassination of Franz, the heir to the Austria/Hungarian empire which was the remnants of the HRE in the early 1900, here instead Tybur gathers up the other countries to start a coalition war against Paradise, basically igniting ww1 in attack on titan universe.;False;False;;;;1610405719;;False;{};gixra0y;False;t3_kujurp;False;True;t1_giw7u44;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixra0y/;1610461650;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Madular;;;[];;;;text;t2_5d0is;False;False;[];;Griffith pre eclipse is that. Post eclipse there is a solid argument to be made that he is a different character, not as in character growth, but as a fundamentally different entity.;False;False;;;;1610406078;;False;{};gixs05d;False;t3_kujurp;False;True;t1_giusct2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixs05d/;1610462132;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610406102;;False;{};gixs1u5;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixs1u5/;1610462167;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tbhkysfam;;;[];;;;text;t2_k68l1e0;False;False;[];;They cut a scene from the manga that gives us a better idea of what Willy and Magath were expecting. It will hopefully be included in the next episode.;False;False;;;;1610406157;;False;{};gixs5r4;False;t3_kujurp;False;False;t1_gisjz07;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixs5r4/;1610462244;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];;23k, let's go for 24k;False;False;;;;1610406386;;False;{};gixsm60;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixsm60/;1610462607;18;True;False;anime;t5_2qh22;;0;[]; -[];;;FlawlessBoltX;;;[];;;;text;t2_6a110;False;False;[];;Waited over three years for this episode... Totally worth it!;False;False;;;;1610406481;;False;{};gixst6a;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixst6a/;1610462750;13;True;False;anime;t5_2qh22;;0;[]; -[];;;c0smic_0wl;;;[];;;;text;t2_f064a;False;False;[];;"Definitely wondering this too. It didn't take long to produce the spears after the uprising arc. Plus Kenny's squad already had those weapons. - -What I want to know is how did they get to Marley? They need ships of their own and they didn't even know the ocean existed. Titans can help build ships but it's still tough if they have no knowledge of sailing.";False;False;;;;1610406499;;False;{};gixsugj;False;t3_kujurp;False;True;t1_giws6x1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixsugj/;1610462783;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tylermccomb1;;;[];;;;text;t2_383b4qgl;False;False;[];;True but in his eyes he thinks he’s making the world a better place by getting rid of the “bad” people. He later starts to kill anyone he thinks could stand in his way even if they are a good person.;False;False;;;;1610406627;;False;{};gixt3tz;False;t3_kujurp;False;True;t1_giwgqc3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixt3tz/;1610463001;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dedezin404;;;[];;;;text;t2_te0fm;False;False;[];;Even today it is accepted legally if civilians die as collateral damage if it's proportionate. It would be too easy to put civilians in military targets to protect them otherwise. However, by today's standard I think Eren's action would be disproportionate and thus war crimes. On the other hand, the world is more like WW1 so perhaps other standards apply inside their world.;False;False;;;;1610406690;;False;{};gixt8ew;False;t3_kujurp;False;True;t1_giv8s41;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixt8ew/;1610463086;2;True;False;anime;t5_2qh22;;0;[]; -[];;;psychsucks;;;[];;;;text;t2_7pinf0kz;False;False;[];;"That’s very interesting - -When you put it like that, it would seem that Ymir was a hypocrite the whole time, so it wouldn’t be inconsistent for her to sacrifice herself for Berthold and Reiner since Ymir has already secured a future for Christa";False;False;;;;1610406759;;False;{};gixtdi0;False;t3_kujurp;False;True;t1_gixbofp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixtdi0/;1610463187;3;True;False;anime;t5_2qh22;;0;[]; -[];;;tylermccomb1;;;[];;;;text;t2_383b4qgl;False;False;[];;I didn’t think of it that way I agree with that. I just like how the first 4 episodes of the season didn’t even have Erin or anyone from the walls so that we would begin to follow the lives of the Malayans and Eldians. Because Isayama wrote it that way Erin kind of becomes a villain in their eyes and the audience’s;False;False;;;;1610406884;;False;{};gixtmff;False;t3_kujurp;False;True;t1_giwpmhi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixtmff/;1610463355;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FlawlessBoltX;;;[];;;;text;t2_6a110;False;False;[];;Yeah that was a little ridiculous honestly.;False;False;;;;1610406945;;False;{};gixtqtg;False;t3_kujurp;False;True;t1_gisv209;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixtqtg/;1610463435;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FlawlessBoltX;;;[];;;;text;t2_6a110;False;False;[];;God, just imagine how terrifying that would actually be though! Enjoying a play one second and then the next...;False;False;;;;1610407162;;False;{};gixu6e2;False;t3_kujurp;False;True;t1_gisuya6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixu6e2/;1610463723;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Apprehensive_Visit89;;;[];;;;text;t2_844no0vi;False;False;[];;What an amazing episode;False;False;;;;1610407384;;False;{};gixum35;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixum35/;1610464027;13;True;False;anime;t5_2qh22;;0;[]; -[];;;imreallybored00;;;[];;;;text;t2_6a6580or;False;False;[];;Eren's development is insane;False;False;;;;1610407435;;False;{};gixupr8;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixupr8/;1610464102;21;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610407467;;False;{};gixus1m;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixus1m/;1610464145;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chaderenabs;;;[];;;;text;t2_8yuqmavz;False;False;[];;He's so matured he'd break the heart of the who loves him, yeah about that.....;False;False;;;;1610407543;;False;{};gixuxeh;False;t3_kujurp;False;True;t1_gisip9e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixuxeh/;1610464253;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610407580;;False;{};gixv02u;False;t3_kujurp;False;True;t1_gixqrnf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixv02u/;1610464307;2;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;wuh;False;False;;;;1610407607;;False;{};gixv1z4;False;t3_kujurp;False;False;t1_givjf7n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixv1z4/;1610464344;4;True;False;anime;t5_2qh22;;0;[]; -[];;;DJ_AW03;;;[];;;;text;t2_6a2u9w9l;False;True;[];;Hopefully it can make it;False;False;;;;1610407616;;False;{};gixv2m4;False;t3_kujurp;False;False;t1_gixsm60;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixv2m4/;1610464356;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;I'm extremely happy with what it has accomplished so far, but damn 24k or 25K would be saucy and difficult to beat;False;False;;;;1610407656;;False;{};gixv5gq;False;t3_kujurp;False;False;t1_gixsm60;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixv5gq/;1610464416;16;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610407704;;False;{};gixv8z3;False;t3_kujurp;False;True;t1_gixqrnf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixv8z3/;1610464495;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chaderenabs;;;[];;;;text;t2_8yuqmavz;False;False;[];;Um no when they reunite in future episodes he already FOR SURE knows she loves him after a fck decade lol;False;False;;;;1610407725;;False;{};gixvahp;False;t3_kujurp;False;False;t1_gitu9q6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixvahp/;1610464525;1;True;False;anime;t5_2qh22;;0;[]; -[];;;neito;;;[];;;;text;t2_1tbak;False;False;[];;After consultation with the other mods, I had interperted the rule incorrectly, and I've restored this post.;False;False;;;;1610408103;moderator;False;{};gixw1h4;False;t3_kujurp;False;True;t1_gixbqy8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixw1h4/;1610465040;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610408139;;False;{};gixw410;False;t3_kujurp;False;True;t1_gixi0rj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixw410/;1610465089;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nietschzesuperhuman;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Doc_McCoy?status=7&order=4&ord";light;text;t2_vk6p0;False;False;[];;On the one hand I think they didn't ride the entire perimeter, only in the south (either south-east or south-west I don't remember). On the other hand I think that sometimes Isayama fucks up it with magnitudes of this kind, so it's not that surprising that some things are out of whack.;False;False;;;;1610408145;;False;{};gixw4hm;False;t3_kujurp;False;False;t1_gixdqgq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixw4hm/;1610465103;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;Easy;False;False;;;;1610408173;;False;{};gixw6jc;False;t3_kujurp;False;True;t1_gix281c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixw6jc/;1610465154;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MMBook;;;[];;;;text;t2_3pqytndm;False;False;[];;I know its only gonna get better;False;False;;;;1610408265;;False;{};gixwd19;False;t3_kujurp;False;False;t1_gixupr8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixwd19/;1610465329;14;True;False;anime;t5_2qh22;;0;[]; -[];;;chaderenabs;;;[];;;;text;t2_8yuqmavz;False;False;[];;Reiner is literally cursed he can't die lmao;False;False;;;;1610408482;;False;{};gixwsry;False;t3_kujurp;False;True;t1_giso29p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixwsry/;1610465759;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aidree1;;;[];;;;text;t2_11cbls;False;False;[];;"Hmmmmm - -https://youtu.be/frMmgiUEpQk";False;False;;;;1610408509;;False;{};gixwunh;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixwunh/;1610465826;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;"Officially beat all 3 records once again: karma, comments, and awards which were set by episode 60 about a month ago. - -Can the Karma monster do it again? Guess we'll find out in the next episodes - -(It will lol)";False;False;;;;1610408539;;1610408744.0;{};gixwwrr;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixwwrr/;1610465877;29;True;False;anime;t5_2qh22;;0;[]; -[];;;Naskr;;;[];;;;text;t2_hoc18;False;False;[];;Reiner immediately turned around and grabbed Falco, I doubt he would bother if he couldn't do something.;False;False;;;;1610408566;;False;{};gixwyrl;False;t3_kujurp;False;True;t1_giv68ya;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixwyrl/;1610465917;2;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;"A few of the ones I think are on par... - -Madoka Magika is perfection in 12 episodes. 2 of those episodes are just as good as Hero. The character arcs simply could not be better. World-shattering twists, deeply thought-provoking story beats, and realistic character drama. Watch it during the downtime between SnK episodes. It's a quick watch but you will never forget it. - -Kaiji is the most tense show ever made (even surpasses Death Note in tension). Moves slow but keeps you engaged like nothing else. The resolutions are incredible, and it only gets to them after intense philosophical lessons for a brilliant but heavily flawed MC. It's not too popular so you won't see it mentioned much. - -And Gurren Lagann is hype distilled onto screen format. Nothing will ever have as much energy or motivational power. It'll move your heart and make you feel like you can do anything.";False;False;;;;1610408567;;False;{};gixwyts;False;t3_kujurp;False;True;t1_giti2y7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixwyts/;1610465918;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;Parallels;False;False;;;;1610408595;;False;{};gixx0tt;False;t3_kujurp;False;False;t1_gixwunh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixx0tt/;1610465957;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610408637;;False;{};gixx3wu;False;t3_kujurp;False;True;t1_gixnotr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixx3wu/;1610466025;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chaderenabs;;;[];;;;text;t2_8yuqmavz;False;False;[];;"The blondie soldier is a woman anyway & Armin is a shortie while this soldier is the tallest character in aot overall";False;False;;;;1610408667;;False;{};gixx621;False;t3_kujurp;False;False;t1_giugajq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixx621/;1610466085;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Naskr;;;[];;;;text;t2_hoc18;False;False;[];;"It's really cool since the entire set-up of Marley feels like it could be the first chapter of a completely different story told from the perspective of Falco or Gabi. Eren is the mysterious, calm and collected antagonist from another land, the big bad. - -...but then there's 59 episodes of this dude's backstory and he's just an angry normal kid for most of it. It's easy enough to make an antagonist sympathetic with a few flashbacks, but this guy has his entire life story right there. - -In terms of showing how someone's enemies are just ordinary people, it's very effective.";False;False;;;;1610408813;;False;{};gixxg8u;False;t3_kujurp;False;True;t1_gisf43t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixxg8u/;1610466310;1;True;False;anime;t5_2qh22;;0;[]; -[];;;appu1232;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/appu1232/;light;text;t2_6yghz;False;False;[];;"[Trajectory so far](https://cdn.discordapp.com/attachments/476391825590976522/798336569739313182/karma_track.png) -[Rate of karma so far](https://cdn.discordapp.com/attachments/476391825590976522/798336635443478558/karma_track.png)";False;False;;;;1610408819;;False;{};gixxgpi;False;t3_kujurp;False;False;t1_gix5e6m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixxgpi/;1610466319;5;True;False;anime;t5_2qh22;;0;[]; -[];;;WaterPot75;;;[];;;;text;t2_1lzc6cbg;False;False;[];;Go back to r/conservative or something idfk;False;False;;;;1610408868;;False;{};gixxk6z;False;t3_kujurp;False;False;t1_giw7acn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixxk6z/;1610466385;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;"He was drawing parallels between the two of them. They both infiltrated the enemy and their societies, and understood that there were good people and bad people on both sides. He understood how Reiner was feeling because he's in Reiner's position now. - -So whilst acknowledging that things weren't what they seemed, or so black and white, he still moved forward despite knowing the consequences of what he was about to do. Exactly like Reiner during his time in Paradis. - -Eren offering Reiner his hand was a throwback to a previous episode where the opposite took place on Paradis when they were younger. - -It was actually pretty clever writing.";False;False;;;;1610408886;;1610409122.0;{};gixxlg5;False;t3_kujurp;False;False;t1_gixopcc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixxlg5/;1610466416;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Naskr;;;[];;;;text;t2_hoc18;False;False;[];;To Americans I guess it is, but they don't decide global culture.;False;False;;;;1610408994;;False;{};gixxtaj;False;t3_kujurp;False;True;t1_giwonma;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixxtaj/;1610466569;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610409144;;False;{};gixy41t;False;t3_kujurp;False;True;t1_gixx3wu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixy41t/;1610466772;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;Wow, that rate at the beginning was so high the delay wasn't even as noticeable as usual, the hype from manga readers/raw watchers alone almost beat out the hype for episode 1. Thanks as ever for logging these!;False;False;;;;1610409180;;False;{};gixy6k6;False;t3_kujurp;False;False;t1_gixxgpi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixy6k6/;1610466823;5;True;False;anime;t5_2qh22;;0;[]; -[];;;drgmonkey;;;[];;;;text;t2_81v77;False;False;[];;"Dory: Just keep swimming - -Eren: hold my beer";False;False;;;;1610409193;;False;{};gixy7ho;False;t3_kujurp;False;False;t1_gistvy3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixy7ho/;1610466839;1;True;False;anime;t5_2qh22;;0;[]; -[];;;drink_bleach_and_die;;;[];;;;text;t2_bdftnf2;False;False;[];;He was one one Grisha's buddies so Marley would probably be fucked if he got it;False;False;;;;1610409269;;False;{};gixycwq;False;t3_kujurp;False;False;t1_giuvi4q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixycwq/;1610466942;4;True;False;anime;t5_2qh22;;0;[]; -[];;;drgmonkey;;;[];;;;text;t2_81v77;False;False;[];;"See this is weird though, isn’t this the same as how Annie wouldn’t go into the basement? They’ve been setting up the whole time “you can’t transform in a cramped area” and then eren just busts through all that no problem - -The dialogue even says “too small for even ONE of us to transform”";False;False;;;;1610409649;;False;{};gixz3qj;False;t3_kujurp;False;True;t1_gitco52;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixz3qj/;1610467479;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimaLepton;;;[];;;;text;t2_15y9af6k;False;False;[];;\#BlameReiner;False;False;;;;1610410024;;1610411302.0;{};gixztkx;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixztkx/;1610467961;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610410079;;False;{};gixzxaf;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gixzxaf/;1610468030;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ZackDB201;;;[];;;;text;t2_1sxfbwvn;False;False;[];;"> Guess we'll find out in the next episodes -> ->(It will lol) - -If it doesn't do it next episode it will surely do it once episode 16 airs";False;False;;;;1610410281;;False;{};giy0bae;False;t3_kujurp;False;False;t1_gixwwrr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy0bae/;1610468291;13;True;False;anime;t5_2qh22;;0;[]; -[];;;NItmash;;;[];;;;text;t2_ezhqt;False;False;[];;"I anyone scared they are gonna give Eren ""the Daenerys treatment""?";False;False;;;;1610410697;;False;{};giy14g5;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy14g5/;1610468828;6;True;False;anime;t5_2qh22;;0;[]; -[];;;IWentToJellySchool;;MAL;[];;http://myanimelist.net/profile/Sadforyou;dark;text;t2_jdozv;False;False;[];;They have boats in season 1. They escaped in one down the river in like episode 2;False;False;;;;1610411017;;False;{};giy1qzb;False;t3_kujurp;False;False;t1_gixsugj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy1qzb/;1610469249;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LorenzoApophis;;;[];;;;text;t2_2cbj4o9v;False;False;[];;This is the closest they've done to a panel-for-panel adaptation so far;False;False;;;;1610411122;;False;{};giy1yk8;False;t3_kujurp;False;True;t1_giu9o44;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy1yk8/;1610469397;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sim0n2170;;;[];;;;text;t2_d8h9g;False;False;[];;6k comments!;False;False;;;;1610411265;;False;{};giy28mx;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy28mx/;1610469597;10;True;False;anime;t5_2qh22;;0;[]; -[];;;AOTloverNo0;;;[];;;;text;t2_vv5bj9p;False;False;[];;23K! LETS FUCKING GOOOO;False;False;;;;1610411508;;False;{};giy2poo;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy2poo/;1610469938;11;True;False;anime;t5_2qh22;;0;[]; -[];;;jassyp;;;[];;;;text;t2_4y2o3;False;False;[];;I think that after so much emotional trauma, after the rage and anger has burned away from his youth all he is left with is a job that has to be done. It's not a choice, because they took that choice away from him as a child, and now.;False;False;;;;1610411854;;False;{};giy3e19;False;t3_kujurp;False;False;t1_git17xy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy3e19/;1610470419;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610412050;;False;{};giy3s09;False;t3_kujurp;False;True;t1_gixjq5y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy3s09/;1610470717;2;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610412551;moderator;False;{};giy4qz4;False;t3_kujurp;False;True;t1_gixp2t0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy4qz4/;1610471417;0;True;False;anime;t5_2qh22;;0;[]; -[];;;thegoobyking;;;[];;;;text;t2_jjby6;False;False;[];;"hahhahaha so quirky just like umaru XD >:3";False;False;;;;1610412719;;False;{};giy52n0;False;t3_kujurp;False;True;t1_giv70ih;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy52n0/;1610471666;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610412720;;False;{};giy52pz;False;t3_kujurp;False;True;t1_gixqrnf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy52pz/;1610471668;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wutasilos;;;[];;;;text;t2_2ac6qhmy;False;False;[];;"Can someone explain to me about the scene with pieck and the other squad and about the ""rift"" they have? I was a little confused about that";False;False;;;;1610412875;;False;{};giy5dlm;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy5dlm/;1610471871;5;True;False;anime;t5_2qh22;;0;[]; -[];;;renannmhreddit;;;[];;;;text;t2_n50we;False;False;[];;Maybe Eren also has the weight of his actions eating away at him, and he also wanted to be judged. Same as Reiner.;False;False;;;;1610412957;;False;{};giy5jfn;False;t3_kujurp;False;True;t1_gixr6lz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy5jfn/;1610471983;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610412980;;False;{};giy5l1o;False;t3_kujurp;False;True;t1_giy5dlm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy5l1o/;1610472013;11;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;"Yeah and Willy declaring war on Eren left him no choice but to strike first. - -As for Falco, Eren probably wanted Falco to listen to his conversation with Reiner. Eren wanted Falco to learn what happened to his hometown and his mum. He hoped Falco can understand that the Paradisians are not devils. Eren even looked at Falco to say ""over the sea, within the wall, it's the same"".";False;False;;;;1610412982;;False;{};giy5l51;False;t3_kujurp;False;False;t1_gixq5ng;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy5l51/;1610472014;4;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610413519;moderator;False;{};giy6mxc;False;t3_kujurp;False;True;t1_gixqrnf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy6mxc/;1610472785;2;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610413765;moderator;False;{};giy7435;False;t3_kujurp;False;False;t1_giscn9q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy7435/;1610473129;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sullan08;;;[];;;;text;t2_5go83;False;False;[];;I think it was left out but iirc he knew he was likely to die. He knew infiltrators were there, just didn't know who or how many.;False;False;;;;1610413825;;False;{};giy784m;False;t3_kujurp;False;True;t1_gisf892;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy784m/;1610473207;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PsychoEliteNZ;;MAL;[];;http://myanimelist.net/animelist/PsychoEliteNZ;dark;text;t2_g0ms2;False;False;[];;that well is very different from a basement, it narrow and much deeper in the ground. The basement isn't and also, simple wood flooring making it easy for Eren to transform up without squishing himself and everyone inside it like the well.;False;False;;;;1610413828;;False;{};giy78bi;False;t3_kujurp;False;False;t1_gitco52;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy78bi/;1610473211;4;True;False;anime;t5_2qh22;;0;[]; -[];;;sex_files;;;[];;;;text;t2_94n6d5c6;False;False;[];;*imperialist japan has entered the chat*;False;False;;;;1610413832;;False;{};giy78lv;False;t3_kujurp;False;True;t1_git8gdq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy78lv/;1610473217;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JinglerTingler;;;[];;;;text;t2_14novi;False;False;[];;Very excited to see how their Blu Ray comes out;False;False;;;;1610413834;;False;{};giy78s3;False;t3_kujurp;False;True;t1_giscc4v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy78s3/;1610473220;1;True;False;anime;t5_2qh22;;0;[]; -[];;;midtharp;;;[];;;;text;t2_2tkeqy5s;False;False;[];;"Two separate issues here: 1) the nature of the room, and 2) what happens to humans in a room if one of them transforms into a Titan. - -The trap the two Titan kids fell into looked like a reinforced well shaft, with thick enough rock walls to do serious damage to any transforming Titan confined inside it. In other words, the trap room was purpose-built. - -Whereas the room Eren lured Reiner and Falco into is presumably a normal underground room which happens to be in the perfect place for Eren to do his revenge thing upstairs. In other words, this room is not purpose-built, which means a transforming Titan might be able to blow out the room without incurring any serious bodily damage, which is precisely what Eren seems to have done. - -But note in this latter case the separate issue of what it's like to be a human in that same room when your fellow room occupant transforms into a Titan. Presumably you get lethally stuck between a rock and a hard place – the walls of the room, and the expanding Titan body pressing out against those walls and blowing them apart. Doesn't seem like a good place for a human to be, to vastly understate the predicament.";False;False;;;;1610413943;;1610414603.0;{};giy7gam;False;t3_kujurp;False;False;t1_gixz3qj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy7gam/;1610473370;4;True;False;anime;t5_2qh22;;0;[]; -[];;;c0smic_0wl;;;[];;;;text;t2_f064a;False;False;[];;"Boats. Not ships. They need to learn to use sails or steam/diesel both of which require technical and practical knowledge they don't have. Not to mention navigation at sea. Plus the marley have a navy. - -I'm guessing they captured some of the enemy ships but may not know how to use them";False;False;;;;1610414129;;False;{};giy7t34;False;t3_kujurp;False;True;t1_giy1qzb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy7t34/;1610473639;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GhostRiley7998;;;[];;;;text;t2_84wej7g;False;False;[];;This is just the starting episode and already got 9.9 rating on IMDB. This show is insane.;False;False;;;;1610414335;;False;{};giy87b5;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy87b5/;1610473923;18;True;False;anime;t5_2qh22;;0;[]; -[];;;PsychoEliteNZ;;MAL;[];;http://myanimelist.net/animelist/PsychoEliteNZ;dark;text;t2_g0ms2;False;False;[];;I was freaking our through most of this episode but I was screaming and clapping as Eren transformed. This anime is pure gold.;False;False;;;;1610414419;;False;{};giy8d60;False;t3_kujurp;False;True;t1_gisb5i0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy8d60/;1610474035;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cyclops274;;;[];;;;text;t2_1n0717z;False;False;[];;Getting hug by a girl would cause a rift.;False;False;;;;1610414828;;False;{};giy95r4;False;t3_kujurp;False;False;t1_giy5dlm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy95r4/;1610474601;6;True;False;anime;t5_2qh22;;0;[]; -[];;;cyclops274;;;[];;;;text;t2_1n0717z;False;False;[];;For the love of the anime make Armin voice as a man. I don't want Armin to sound like a girl when he is 21 years old.;False;False;;;;1610414984;;False;{};giy9gya;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giy9gya/;1610474816;14;True;False;anime;t5_2qh22;;0;[]; -[];;;galileotheweirdo;;MAL;[];;myanimelist.net/animelist/galileotheweirdo;dark;text;t2_gwyf6;False;False;[];;So you can go around saying the n-word in Europe even though it has origins in America? Nah. If Asians (specifically Asian Americans) say that word is racist, it’s racist.;False;False;;;;1610415481;;False;{};giyag2r;False;t3_kujurp;False;True;t1_gixxtaj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyag2r/;1610475508;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ma103;;;[];;;;text;t2_icj74;False;False;[];;Not hating on the OST but if it were to use the same OST as armoured and colossal titan reveal, it will likely broke 30k karma.;False;True;;comment score below threshold;;1610415495;;False;{};giyah0d;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyah0d/;1610475526;-23;True;False;anime;t5_2qh22;;0;[]; -[];;;Taurus24Silver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Taurus-Silver;light;text;t2_826uaxw;False;False;[];;Madoka Magica has the BEST ANIME OST OF ALL TIME;False;False;;;;1610415672;;False;{};giyatv6;False;t3_kujurp;False;True;t1_gixwyts;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyatv6/;1610475765;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bostonian38;;;[];;;;text;t2_12vydv1g;False;False;[];;Really? When I watched it for the first time I thought the OST was legendary. I actually got more hype when I heard 2volt in the last episode because it reminded me of that fight.;False;False;;;;1610416094;;False;{};giybnwu;False;t3_kujurp;False;True;t1_gixqmws;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giybnwu/;1610476340;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ChornoyeSontse;;;[];;;;text;t2_8vjfuk9d;False;False;[];;"Lel how DARE I imply that grown adults can handle adult content. - -And I would never associate with such a milquetoast community.";False;True;;comment score below threshold;;1610416362;;False;{};giyc6ms;False;t3_kujurp;False;True;t1_gixxk6z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyc6ms/;1610476698;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;impetu0usness;;;[];;;;text;t2_jvx6m;False;True;[];;"Quick question: could Eren actually transform at the start of the episode, or was that a well done bluff? Because we know shifters can't transform if they have body parts that need healing (Eren's missing a leg). - -Maybe he was hoping Reiner's mental breakdown would cloud his judgement?";False;False;;;;1610416469;;False;{};giyce4r;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyce4r/;1610476848;6;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;Knowing your clan would be murdered if you don't do anything?;False;False;;;;1610416502;;False;{};giycggq;False;t3_kujurp;False;True;t1_giw2l2l;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giycggq/;1610476893;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DJ_AW03;;;[];;;;text;t2_6a2u9w9l;False;True;[];;He could. Remember his first transformation happened when he lost an arm and a leg;False;False;;;;1610416642;;False;{};giycqdd;False;t3_kujurp;False;False;t1_giyce4r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giycqdd/;1610477086;15;True;False;anime;t5_2qh22;;0;[]; -[];;;SolemnDemise;;;[];;;;text;t2_bersu;False;False;[];;">4 generations was enough for the Eldians on Paradise to forget the existence of the outside world, forget their nature as eldians, invent the maneuver gear and operate under the assumption that titans were this natural threat from the outside world? - -Founding Titan rewrote the memories of every inhabitant on Paradis except for a select few noble bloodlines and the Ackermann clan. They didn't ""forget,"" their memories were taken from them.";False;False;;;;1610416675;;False;{};giycsra;False;t3_kujurp;False;True;t1_giuodio;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giycsra/;1610477131;1;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;"Bit of terror now can stop worse terror down the line. Like Hiroshima. - -Not saying it'll work this way, but that may be the intention. To end it all in one fell swoop. A lot of innocents dying would pressure the government to surrender.";False;False;;;;1610416705;;False;{};giycus7;False;t3_kujurp;False;True;t1_gittaka;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giycus7/;1610477168;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;_dsmith23;;;[];;;;text;t2_q9zbacg;False;False;[];;why do people wanna use the same 3-4 osts so much ?;False;False;;;;1610416751;;False;{};giycy14;False;t3_kujurp;False;False;t1_giyah0d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giycy14/;1610477229;14;True;False;anime;t5_2qh22;;0;[]; -[];;;impetu0usness;;;[];;;;text;t2_jvx6m;False;True;[];;Ohh true, the healing restriction only happens after they've transformed and reverted to human form. Thanks!;False;False;;;;1610417011;;False;{};giydg7v;False;t3_kujurp;False;True;t1_giycqdd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giydg7v/;1610477581;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OneirionKnight;;;[];;;;text;t2_1kghpz3x;False;False;[];;Isayama is a competent writer unlike those who wrote the final season of GOT;False;False;;;;1610417072;;False;{};giydkju;False;t3_kujurp;False;False;t1_giy14g5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giydkju/;1610477669;12;True;False;anime;t5_2qh22;;0;[]; -[];;;HMP12;;;[];;;;text;t2_qbo9z;False;False;[];;"You can see he heal instantly when he want so he can heal and then transform in the begin. - -He can't transform if he at limit after transform, his body will heal slowly and can't transform.";False;False;;;;1610417229;;False;{};giydvts;False;t3_kujurp;False;False;t1_giyce4r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giydvts/;1610477903;6;True;False;anime;t5_2qh22;;0;[]; -[];;;zoo-wee-ma-ma;;;[];;;;text;t2_4kro05s7;False;False;[];;Eren’s eyes looked so dead and lifeless. It didn’t have that same glint that everyone else’s did. It made everything he said even more chilling because he lacked the intense emotion that we had seen so much from him before. MAPPA did a phenomenal job.;False;False;;;;1610417629;;False;{};giyeoug;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyeoug/;1610478479;15;True;False;anime;t5_2qh22;;0;[]; -[];;;HMP12;;;[];;;;text;t2_qbo9z;False;False;[];;"They are both do bad thing but it is opposite than ""Daenerys treatment"". - -While Daenerys going crazy, lose her mine, doing nonsense, throw her core ideal out of windows. Eren is more calm, less crazy than he is in the past, more understand his enemy and the world, using his logic instead of emotion, stay true to his ideal till the end.";False;False;;;;1610417806;;False;{};giyf1ac;False;t3_kujurp;False;False;t1_giy14g5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyf1ac/;1610478715;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Lekaetos;;;[];;;;text;t2_13vf4c;False;False;[];;they all simp for her but only one gets a dm despite their tier 3 sub;False;False;;;;1610417880;;False;{};giyf6nq;False;t3_kujurp;False;False;t1_giy5dlm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyf6nq/;1610478813;28;True;False;anime;t5_2qh22;;0;[]; -[];;;Kureimi;;;[];;;;text;t2_13l673;False;False;[];;👍;False;False;;;;1610417981;;False;{};giyfe5k;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyfe5k/;1610478958;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;Honestly the ideal scenario for me was not to place any OST at all. I saw an edit and trust me it was phenomenal. The massacre would be decorated by the Attack Titan's roar, the sound of the falling rubble and the scream of the scared people;False;False;;;;1610417982;;False;{};giyfe7i;False;t3_kujurp;False;False;t1_giyah0d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyfe7i/;1610478959;12;True;False;anime;t5_2qh22;;0;[]; -[];;;sim0n2170;;;[];;;;text;t2_d8h9g;False;False;[];;Eren literally just spawned killed him;False;False;;;;1610418191;;False;{};giyft9h;False;t3_kujurp;False;True;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyft9h/;1610479240;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Graywolves;;;[];;;;text;t2_5o5g4;False;True;[];;It reminds me of an Alfred Hitchcock quote about suspense, a simple conversation with a bomb under the table and the audience knows it's there and about to go off.;False;False;;;;1610418631;;False;{};giygoo4;False;t3_kujurp;False;True;t1_gisc1bn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giygoo4/;1610479856;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sex_files;;;[];;;;text;t2_94n6d5c6;False;False;[];;wtf did reiner die;False;False;;;;1610418644;;False;{};giygppl;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giygppl/;1610479880;6;True;False;anime;t5_2qh22;;0;[]; -[];;;rollin340;;;[];;;;text;t2_cmyef;False;False;[];;"Is it though? So far, 1 building of civilians, but the head of the enemy nation, the representatives of those allied with said nation, and ALL of its military leaders and its elite forces. - -No country would ever miss such a golden opportunity. Fucked up, but it's just the way it is. War is not pretty, and shit hitting the fan is a constant.";False;False;;;;1610418919;;False;{};giyha3u;False;t3_kujurp;False;True;t1_gixt8ew;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyha3u/;1610480302;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Reax51;;;[];;;;text;t2_4x1bz4jx;False;False;[];;It has been 3 years since they reached the ocean, them figuring out how to cross it is a given;False;False;;;;1610419188;;False;{};giyhtx6;False;t3_kujurp;False;False;t1_giy7t34;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyhtx6/;1610480681;2;True;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;It doesn't fit the scene tbh.;False;False;;;;1610419221;;False;{};giyhwd8;False;t3_kujurp;False;False;t1_giyah0d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyhwd8/;1610480729;12;True;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;"> (It will lol) - -It all depends on MAPPA tbh. If it was WIT i would've agreed with you, but we will have to see.";False;True;;comment score below threshold;;1610419321;;False;{};giyi3rr;False;t3_kujurp;False;False;t1_gixwwrr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyi3rr/;1610480873;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;Reax51;;;[];;;;text;t2_4x1bz4jx;False;False;[];;He would've transformed;False;False;;;;1610419363;;False;{};giyi6w3;False;t3_kujurp;False;False;t1_giwhtev;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyi6w3/;1610480937;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CatSezWoof;;;[];;;;text;t2_ddlau;False;False;[];;In a couple of years 23-24k karma could become the norm for highly anticipated shows so let’s see how long AoT can hold the crown for;False;False;;;;1610419463;;False;{};giyieab;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyieab/;1610481087;10;True;False;anime;t5_2qh22;;0;[]; -[];;;LetsHaveTon2;;;[];;;;text;t2_s6j8k;False;False;[];;Eren literally says that he's the bad guy bro he knows he's being evil it's not a mystery lol;False;False;;;;1610419500;;False;{};giyih12;False;t3_kujurp;False;True;t1_giunq9i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyih12/;1610481142;3;False;False;anime;t5_2qh22;;0;[]; -[];;;rollin340;;;[];;;;text;t2_cmyef;False;False;[];;"Who said that there is nothing wrong about it. - -It's a shit situation, and it's morally a terribly thing to do. But legally, in times of war, it'd probably be construed as a justified attack.";False;False;;;;1610419536;;False;{};giyijsl;False;t3_kujurp;False;True;t1_givgfmk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyijsl/;1610481195;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FiveTalents;;;[];;;;text;t2_i7x5f;False;False;[];;Just as good as the Red Wedding build up imo;False;False;;;;1610419601;;False;{};giyioow;False;t3_kujurp;False;False;t1_giscpr1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyioow/;1610481290;2;True;False;anime;t5_2qh22;;0;[]; -[];;;klonklonklin;;;[];;;;text;t2_54rci17m;False;False;[];;[https://trends24.in/](https://trends24.in/);False;False;;;;1610419787;;False;{};giyj36v;False;t3_kujurp;False;True;t1_githbd5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyj36v/;1610481575;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Telinour;;;[];;;;text;t2_941jahsi;False;False;[];;"You are looking at it too much from the point of view of Eldians. For the rest of the world, Eldians are the race that oppressed and slaughtered the rest humanity for 100s of years. They think they were the chosen race. All of them can turn into a killing machine. The only reason Marley won is because the Eldian king knew that there can't be no peace between the other races, so to end the endless slaughter, he ran to an island and make them forget their history. - -But Grisha wanted the return of the old glorious of Eldia to take revenge from Marley. So he killed the ""coward"" king (queen?), which according to him was averting his eyes from his duty to take back the glory of Eldia. Thanks to Grisha, now the power of the king is at the hand of a teenager that wants freedom no matter what the cost is. And you want them to just HOPE that they don't kill the rest of humanity???";False;False;;;;1610419789;;False;{};giyj3aj;False;t3_kujurp;False;True;t1_giw888e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyj3aj/;1610481577;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hiddim;;;[];;;;text;t2_2ywyv3w9;False;False;[];;Hey cake day buddy, have a good cake day;False;False;;;;1610419922;;False;{};giyjda8;False;t3_kujurp;False;True;t1_giumxzg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyjda8/;1610481795;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610419965;;1610420607.0;{};giyjgfp;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyjgfp/;1610481863;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FiveTalents;;;[];;;;text;t2_i7x5f;False;False;[];;Do y'all think Eren had two plans? If Willy did not declare war, would Eren still attack?;False;False;;;;1610420060;;False;{};giyjnnc;False;t3_kujurp;False;True;t1_gish4zq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyjnnc/;1610481996;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610420433;;False;{};giyker3;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyker3/;1610482540;2;True;False;anime;t5_2qh22;;0;[]; -[];;;funkerbuster;;;[];;;;text;t2_7mx1p;False;False;[];;Check episode 58 again;False;False;;;;1610420535;;False;{};giykm2l;False;t3_kujurp;False;False;t1_giyker3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giykm2l/;1610482704;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NotLightYagami;;HB;[];;;dark;text;t2_qahdi;False;False;[];;Eren: I choose violence;False;False;;;;1610420599;;False;{};giykqn4;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giykqn4/;1610482790;13;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;"And Eren is antagonist 101 ,has a tragic backstory in which his Mother gets killed,initially naive and good natured though with a desire for revenge and this along with various other tragic experiences molds him into a cynical terrorist who then proceeds to cause war crimes just to save his people with good intentions despite using questionable methods. - -Also starts using a child to do his bidding and uses blackmail to ensure that Reiner sits down so he can talk with him.";False;False;;;;1610420608;;False;{};giykr92;False;t3_kujurp;False;True;t1_givzspw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giykr92/;1610482801;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610420619;;False;{};giykrxc;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giykrxc/;1610482815;26;True;False;anime;t5_2qh22;;0;[]; -[];;;bakedanana;;;[];;;;text;t2_6o58fgdf;False;False;[];;I'm so glad I waited for it.;False;False;;;;1610420683;;False;{};giykwhc;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giykwhc/;1610482897;9;True;False;anime;t5_2qh22;;0;[]; -[];;;anweisz;;;[];;;;text;t2_kt2x6;False;False;[];;"Not all chapters are made equal. Action-packed or disaster-packed chapters or sections of a chapter can taker as much space as plot-heavy sections despite not being as dense. So when they get adapted the former end up taking up much less episode time than the latter. Also, even plot-heavy sections can be different. Up until now chapters adapted have been very dense with different scenes, cuts and plot points, but a plot-oriented chapter that's more focused on one scene will take up less time when adapted into an episode. - -Edit: Oh, sorry, I just realized you only said 11 more and didn't take into account that the season is a 2 parter. So there's that to take into account too. There'll be more.";False;False;;;;1610420704;;1610421079.0;{};giykxxu;False;t3_kujurp;False;True;t1_git6khr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giykxxu/;1610482924;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;They already did homie;False;False;;;;1610420706;;False;{};giyky3t;False;t3_kujurp;False;False;t1_giyker3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyky3t/;1610482930;3;True;False;anime;t5_2qh22;;0;[]; -[];;;zool714;;;[];;;;text;t2_11y457;False;False;[];;"I mean you literally said in bold “Eren did nothing wrong”. Can’t blame me for taking your word for it. - -But hey I’ve already reread that comment and saw you already brought in legality into it and have already responded with “fair enough”";False;False;;;;1610420783;;False;{};giyl3gv;False;t3_kujurp;False;True;t1_giyijsl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyl3gv/;1610483041;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NItmash;;;[];;;;text;t2_ezhqt;False;False;[];;Maybe, but I feel like the scene when he mentions how many people are in this building and then destroys is hinting at him becoming ruthless and blind in fight for freedom. Maybe it's set up for Armin or others to change him. But it's definitely trying to say that there is no good and evil, and it's not that simple;False;False;;;;1610420868;;False;{};giyl98g;False;t3_kujurp;False;False;t1_giyf1ac;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyl98g/;1610483173;6;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Zookeepergame_594;;;[];;;;text;t2_89m9eak5;False;False;[];;"What? The mindset of peace is only passed down to those who have royal blood; eren does not have royal blood, so he cannot be affected by the King's vow. This has been explained in s3 part 2.";False;False;;;;1610420978;;False;{};giylh32;False;t3_kujurp;False;False;t1_giyker3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giylh32/;1610483326;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;The plot armored titan never dies;False;False;;;;1610421263;;False;{};giym15h;False;t3_kujurp;False;False;t1_giygppl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giym15h/;1610483701;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Frixeeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Frixeeeeeen;light;text;t2_4gckndhg;False;False;[];;Rip Reiners Mentality;False;False;;;;1610421292;;False;{};giym3xg;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giym3xg/;1610483745;15;True;False;anime;t5_2qh22;;0;[]; -[];;;bobsjobisfob;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/bobsjobisfob;light;text;t2_g11wq;False;False;[];;"i can pull up pretty much any scene, and you can see how they cut out a lot of things while also adding in some parts that werent in the manga (that dont add anything). take mama breaking emma's leg in episode 8 vs chapter 25: in the manga you can see emma and norman having inner thoughts as they try to analyze the situation, but none of that is in the anime. on top of that, they make emma and norman say things out loud that werent in the manga like ""5, not 3?"" or ""i dont want any fake smiles!"" which would give away that they know whats going on. - - - -of course, you can make the argument that the anime is as faithful as it can get if they only have 12 episodes to cover the first arc, which is 37 chapters. thats 3 chapters per episode so of course they arent going to be able to cover it as well as they could if they had more episodes. but i think the problem was that 37 chapters is a weird number where 24 episodes would be too many episodes and 12 is too little, so at that point i guess they just decided to cut everything out except the bare minimum plot";False;False;;;;1610421394;;False;{};giymcb6;False;t3_kujurp;False;True;t1_giu2x0w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giymcb6/;1610483890;1;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Zookeepergame_594;;;[];;;;text;t2_89m9eak5;False;False;[];;"The restriction only applies largely due to the condition of user's stamina. Eren was not able to transform after his fight with Reiner in s2 was because he is beaten up, forced out of his titan form and got two arms ripped out. His body is out of stamina just by healing his body alone. Fast forward a couple of months to Maria operation, he could already transform twice with some training with Hange; imagine what he can now do after 4 years, so nope, it's not a bluff. Even if his leg doesn't heal, I am pretty sure he can still transform.";False;False;;;;1610421537;;False;{};giymm97;False;t3_kujurp;False;False;t1_giydg7v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giymm97/;1610484091;8;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Zookeepergame_594;;;[];;;;text;t2_89m9eak5;False;False;[];;I don't share your sentiment but I respect that.;False;False;;;;1610421720;;False;{};giymyyg;False;t3_kujurp;False;False;t1_giy9gya;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giymyyg/;1610484330;8;True;False;anime;t5_2qh22;;0;[]; -[];;;FiveTalents;;;[];;;;text;t2_i7x5f;False;False;[];;Ah I guess I forgot, thx;False;False;;;;1610421797;;False;{};giyn4af;False;t3_kujurp;False;True;t1_giylh32;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyn4af/;1610484441;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mint_Choco7;;;[];;;;text;t2_6qer3u2n;False;False;[];;Yes! I think this scene and some others later on really show that Eren has a desire to be understood.;False;False;;;;1610422566;;False;{};giyok43;False;t3_kujurp;False;True;t1_giy5jfn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyok43/;1610485448;2;True;False;anime;t5_2qh22;;0;[]; -[];;;atulk4;;;[];;;;text;t2_4pz8i8x6;False;False;[];;"Eren is posing as an eldian, there is no way he can ask a ""highly"" marleyan soldier to lead vice chief of warriors to the basement and yeah he must want falco to listen too.";False;False;;;;1610422657;;False;{};giyoq91;False;t3_kujurp;False;False;t1_gixq5ng;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyoq91/;1610485558;3;True;False;anime;t5_2qh22;;0;[]; -[];;;atulk4;;;[];;;;text;t2_4pz8i8x6;False;False;[];;Nope I think eren isn't indecisive anymore. He has firmly made his decision to keep moving forward not like warriors who were brainwashed into doing all the things they did and now reiner regrets it.;False;False;;;;1610422892;;False;{};giyp5zq;False;t3_kujurp;False;True;t1_giy5jfn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyp5zq/;1610485850;2;True;False;anime;t5_2qh22;;0;[]; -[];;;impetu0usness;;;[];;;;text;t2_jvx6m;False;True;[];;Thanks, that actually makes a lot of sense. I wonder how far you can train your stamina as a shifter;False;False;;;;1610423291;;False;{};giypwy1;False;t3_kujurp;False;False;t1_giymm97;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giypwy1/;1610486386;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;Trust in Isayama;False;False;;;;1610423485;;False;{};giyq9r9;False;t3_kujurp;False;False;t1_giyl98g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyq9r9/;1610486633;6;True;False;anime;t5_2qh22;;0;[]; -[];;;kgold535;;;[];;;;text;t2_hm7y7;False;False;[];;I've never read the manga so I don't know how many differences there are, but, I absolutely love how the final season starts like the very first season, but everyone's roles are essentially reversed. It's such a clever and vengeful way to tell the story. I honestly had no clue that was Eren until they showed him after the credits in episode 3. I can't imagine how hard shit is going to hit the fan.;False;False;;;;1610424130;;False;{};giyrh2c;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyrh2c/;1610487522;31;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;yeah they probably don't wanna get spoiled since a lot of people spoil in these threads;False;False;;;;1610424454;;False;{};giys2qf;False;t3_kujurp;False;True;t1_giwdp7f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giys2qf/;1610487955;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;"Fair point, especially with AOT where peopke spoil or imply unintentionally - -But heyyy we passed the comment record";False;False;;;;1610424522;;False;{};giys7bi;False;t3_kujurp;False;True;t1_giys2qf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giys7bi/;1610488039;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"> But Grisha wanted the return of the old glorious of Eldia to take revenge from Marley. So he killed the ""coward"" king (queen?), which according to him was averting his eyes from his duty to take back the glory of Eldia. - -I thought he killed the king to avenge his second wife who got munched with the king doing nothing to protect his people from the titans. - -Either way, it makes no sense for the world to want a war with Paradis until they at least have better weapons.";False;False;;;;1610424615;;False;{};giysdfe;False;t3_kujurp;False;True;t1_giyj3aj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giysdfe/;1610488155;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jimmy_Two_Fingers;;;[];;;;text;t2_p4rb6;False;False;[];;This is one of the best episodes of any media that I've watched. Holy shit.;False;False;;;;1610424631;;False;{};giysefp;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giysefp/;1610488174;26;True;False;anime;t5_2qh22;;0;[]; -[];;;TheoRaan;;;[];;;;text;t2_zdwtk;False;False;[];;No I mean Eren is also the protagonist. They both are. Just from different perspectives.;False;False;;;;1610424786;;False;{};giysokv;False;t3_kujurp;False;True;t1_giykr92;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giysokv/;1610488369;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jimmy_Two_Fingers;;;[];;;;text;t2_p4rb6;False;False;[];;Gotta be dumber than Falco the Postman if you make it this far without realizing that there's some graphic content.;False;False;;;;1610424922;;False;{};giysxqi;False;t3_kujurp;False;True;t1_gisv209;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giysxqi/;1610488543;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ghostlima;;;[];;;;text;t2_33dypa4;False;False;[];;The current arc of one piece has the best build up of anything i have ever scene in anime. I know its different from this more convoluted narratives but is also sensational and and every emotion is 100% earned. Idk, after reading chapter 1000 one piece is on my top 3 alongside brotherhood and AOT. All of them are masterpieces but for different reasons, although FMA and AOT are more comparable. Its going to be a fun debate because AOT is still going to blow peoples minds a lot more.;False;False;;;;1610425113;;False;{};giytae1;False;t3_kujurp;False;True;t1_giubxiy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giytae1/;1610488805;1;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;"""Griffith did nothing wrong""";False;False;;;;1610425310;;False;{};giytn83;False;t3_kujurp;False;True;t1_giusct2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giytn83/;1610489060;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Karen_kaslana;;;[];;;;text;t2_3n10bo31;False;False;[];;I mean we haven't seen armin yet soooo let's hope;False;False;;;;1610425936;;False;{};giyur27;False;t3_kujurp;False;False;t1_giy9gya;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyur27/;1610489842;6;True;False;anime;t5_2qh22;;0;[]; -[];;;InHaUse;;;[];;;;text;t2_kxgc6;False;False;[];;"So if Marley have never set foot on the island non of this would've happened? - -I guess I understand their fear of someday a new ruler coming who wants world domination and uses the founding titan. - -Wait but if Fritz came up with the plan, then he must've told the Tyburs that he would erase the memories of the Eldians right? In that case I don't think the risk of them remembering is worth getting the founding titan.";False;False;;;;1610426890;;False;{};giyweef;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyweef/;1610491041;13;True;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;Honeslty, it all depends on MAPPA and how the animation will turn out to be.;False;False;;;;1610427460;;False;{};giyxcwh;False;t3_kujurp;False;False;t1_giykrxc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyxcwh/;1610491685;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Honestly-a-mistake;;;[];;;;text;t2_4crzlx3n;False;False;[];;"Well yeah, killing civilians isn’t actually automatically a war crime in legal term. Purposefully targeting civilians in a manner that’s irrelevant to the war effort is a war crime, but Eren could argue his target was the military and heads of state present and the civilians were just collateral damage. -Plus said heads of state and military had just announced their commitment to commit genocide, which is definitely a war crime.";False;False;;;;1610427471;;False;{};giyxdlw;False;t3_kujurp;False;True;t1_givbwmt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyxdlw/;1610491702;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Reikakou;;;[];;;;text;t2_hbzvw;False;False;[];;Remember that Marley sent 32 ships to Paradis in the last 4 years and none returned? yeah... go figure.;False;False;;;;1610427778;;False;{};giyxvfn;False;t3_kujurp;False;True;t1_gixsugj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyxvfn/;1610492040;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Reikakou;;;[];;;;text;t2_hbzvw;False;False;[];;"Posting to be part of r/anime history. - -Then again, I guess I'll be posting until episode 16 after AoT keeps moving forward breaking its own record every week. - -If anime-onlies are already this hyped on this episode alone, boy, we're just at the tip of the iceberg.";False;False;;;;1610428342;;False;{};giyyqwv;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyyqwv/;1610492664;29;True;False;anime;t5_2qh22;;0;[]; -[];;;AtlasExiled;;;[];;;;text;t2_5lyd9wlg;False;False;[];;It really seemed like there was a possibility for diplomacy there. You know an anime is good when it makes you question the morality of its own main character.;False;False;;;;1610428389;;False;{};giyytlz;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyytlz/;1610492718;27;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;Not overhyping, the nuance and magnificent characterization of Eren's character, along with his moral complexity is going to make him one of the best characters of all time after this season ends.;False;False;;;;1610428608;;False;{};giyz5wh;False;t3_kujurp;False;False;t1_giyytlz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giyz5wh/;1610492961;30;True;False;anime;t5_2qh22;;0;[]; -[];;;TheFlyingHobo;;;[];;;;text;t2_91gva;False;False;[];;Eldian's can't choose to transform into titans tho? Only a select few (8, Tyburs are practically slaves to Marley) and that's if you don't just give them all to an even smaller number. And the ones that have been transformed into titans have mainly been forced to by Marleys when they throw them on Paradis, not to mention that Eldians on Paradis haven't transformed into titans for 100 years.;False;False;;;;1610429469;;False;{};giz0h64;False;t3_kujurp;False;True;t1_giuwmh3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz0h64/;1610493819;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;"I think with the content that's going to be adapted in it, episode 11 will break the comment record as well. - -Episode 16 with the shit that will be adapted, finale hype, the content(120-122 is the peak of AoT aside from 130-131), and the cliffhanger, will have the potential to reach 30k or even 35k based on manga readers' reception.";False;False;;;;1610429560;;False;{};giz0m0h;False;t3_kujurp;False;False;t1_giykrxc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz0m0h/;1610493921;8;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;Looking at the [Demon Slayer](https://youpoll.me/18153/r) and [AoT S3](https://youpoll.me/13863/r) polls, one thing to note is that they were on a scale of 10, so I don't know if it really makes sense to compare the average (doubtful that 9s are equally likely to turn into a 4/5 or 5/5, and 1s drag the average down more on a scale of 10). Though the Demon Slayer episode at least definitely has a higher proportion of 10s than this episode does 5s.;False;False;;;;1610429959;;False;{};giz16o6;False;t3_kujurp;False;True;t1_giwabu7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz16o6/;1610494301;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cxxper01;;;[];;;;text;t2_14lyjl;False;False;[];;Eren: nothing personal Reiner, but I am still going to kill everyone out there;False;False;;;;1610430213;;False;{};giz1k39;False;t3_kujurp;False;True;t1_gixi7j7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz1k39/;1610494543;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MuckyMinge;;;[];;;;text;t2_7ekk1myk;False;False;[];;Holy shit that ending. Was fully expecting Tybur and Eren to be in cahoots, but nope. I've never been so hyped for a show before;False;False;;;;1610430722;;False;{};giz2a4q;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz2a4q/;1610495020;24;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimaLepton;;;[];;;;text;t2_15y9af6k;False;False;[];;"Carla said it too - -https://imgur.com/RJV5ldD";False;False;;;;1610430870;;False;{};giz2hg9;False;t3_kujurp;False;True;t1_giwgjbw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz2hg9/;1610495155;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iamquitecertain;;;[];;;;text;t2_kobbk;False;False;[];;Thanks! You have a good one too;False;False;;;;1610431881;;False;{};giz3vfh;False;t3_kujurp;False;True;t1_giyjda8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz3vfh/;1610496106;2;True;False;anime;t5_2qh22;;0;[];True -[];;;sharmarahulkohli;;;[];;;;text;t2_12gbee;False;False;[];;Ch 112 adaptation will break this record next,I feel;False;False;;;;1610431985;;False;{};giz40n2;False;t3_kujurp;False;False;t1_giykrxc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz40n2/;1610496202;6;True;False;anime;t5_2qh22;;0;[]; -[];;;yosayoran;;;[];;;;text;t2_8k723;False;False;[];;"I'm anime only, but I do believe tge founder titan has basically full control of other titans - -Even zeke who just has royal blood can command them and transform people into titans";False;False;;;;1610432438;;False;{};giz4m8n;False;t3_kujurp;False;True;t1_giug0ze;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz4m8n/;1610496596;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Milind_;;;[];;;;text;t2_4r6odvpc;False;False;[];;not overhyping but this is just a tip of iceberg that AOT will deliver in upcoming ep;False;False;;;;1610433312;;False;{};giz5ptz;False;t3_kujurp;False;False;t1_giyrh2c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz5ptz/;1610497294;13;True;False;anime;t5_2qh22;;0;[]; -[];;;jung2019;;;[];;;;text;t2_171etn;False;False;[];;Whatever works for you I guess. It definitely fits LvB more because of Levi's heroic triumph compared to the current setup where our protagonist committed a terrorist attack.;False;False;;;;1610433693;;False;{};giz66lu;False;t3_kujurp;False;True;t1_giybnwu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz66lu/;1610497590;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lxilind;;;[];;;;text;t2_168cr2;False;False;[];;Holy shit what a cuck.;False;False;;;;1610433751;;False;{};giz693l;False;t3_kujurp;False;True;t1_giw2l2l;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz693l/;1610497634;0;True;False;anime;t5_2qh22;;0;[]; -[];;;69Human69;;;[];;;;text;t2_2atj6iu9;False;False;[];;"I'd let mappa ram my bussy 😏😏😏💦💦🥴💦💦🤤🤤😍😍😍🥵🤤🥵🤤😍🤤😍🥴💦🥴😳😳😳 - -^sorry";False;False;;;;1610433765;;False;{};giz69qn;False;t3_kujurp;False;True;t1_givhn20;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz69qn/;1610497645;1;True;False;anime;t5_2qh22;;0;[]; -[];;;69Human69;;;[];;;;text;t2_2atj6iu9;False;False;[];;My mom said that too. We made a deal that she would watch a few episode and I would watch a few episodes of something she likes. I didn't even have to watch anything because she instantly fell in love. You should try something like that too.;False;False;;;;1610433999;;False;{};giz6jtz;False;t3_kujurp;False;True;t1_gisc1pe;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz6jtz/;1610497816;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MexicansInParis;;;[];;;;text;t2_152x0d;False;False;[];;I mean, he was about to shotgun himself just a couple of episodes ago lol;False;False;;;;1610434126;;False;{};giz6p81;False;t3_kujurp;False;True;t1_gisbl4f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz6p81/;1610497910;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SpecialChain;;;[];;;;text;t2_7tv0lefo;False;False;[];;This hole is made for me!;False;False;;;;1610434151;;False;{};giz6q9t;False;t3_kujurp;False;True;t1_givuox8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz6q9t/;1610497928;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheSkywarriorg2;;;[];;;;text;t2_xlem9ur;False;False;[];;Lol mine too. It was so wholesome seeing old friends reuniting.;False;False;;;;1610434631;;False;{};giz7axo;False;t3_kujurp;False;True;t1_giwsttb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz7axo/;1610498285;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PTBRULES;;MAL;[];;http://myanimelist.net/animelist/PTBRULES;dark;text;t2_kfuqo;False;False;[];;It's subtlety mentioned, but Marley wants the Island for it's natural resources, which is why they have stired up the threat of the King invading.;False;False;;;;1610434634;;False;{};giz7b0l;False;t3_kujurp;False;False;t1_giyweef;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz7b0l/;1610498286;25;True;False;anime;t5_2qh22;;0;[]; -[];;;JuicyDragonCat;;;[];;;;text;t2_45tgc23z;False;False;[];;In our real world, is it alright when two countries are at war and for one one country to assassinate the head of state of the other as Eren did this episode? I was thinking bout that, I would assume its not allowed since head of states between 2 wartime countries are necessary for communication;False;False;;;;1610434726;;False;{};giz7f1b;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz7f1b/;1610498362;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WeNTuS;;;[];;;;text;t2_btiic;False;False;[];;First of all, if it's entire world vs one clan... then it's just unfortunate but you cannot do much. If you're like Eren and have a super power, you should decide what's worth more - your clan or entire world. In that case, logically speaking, entire world is more important than one clan. Emotions tell otherwise but not everyone can be easily pushed by emotions.;False;False;;;;1610434757;;False;{};giz7ga7;False;t3_kujurp;False;True;t1_giycggq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz7ga7/;1610498387;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;kgold535;;;[];;;;text;t2_hm7y7;False;False;[];;Fuccccck;False;False;;;;1610434778;;False;{};giz7h63;False;t3_kujurp;False;False;t1_giz5ptz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz7h63/;1610498402;9;True;False;anime;t5_2qh22;;0;[]; -[];;;SpecialChain;;;[];;;;text;t2_7tv0lefo;False;False;[];;completely looking ecstatic about it too! Like life is so hell that a suicide attempt overwhelms you with joy. That scene is pretty disturbing.;False;False;;;;1610435004;;False;{};giz7qp7;False;t3_kujurp;False;False;t1_git6aq5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz7qp7/;1610498567;7;True;False;anime;t5_2qh22;;0;[]; -[];;;PTBRULES;;MAL;[];;http://myanimelist.net/animelist/PTBRULES;dark;text;t2_kfuqo;False;False;[];;While I never watched any GOT, the problem there was that they just adopted the novels until they ran out. While AOT is ahead of the Show and the author is apart of the adaptation.;False;False;;;;1610435051;;False;{};giz7sl5;False;t3_kujurp;False;True;t1_giydkju;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz7sl5/;1610498601;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SpecialChain;;;[];;;;text;t2_7tv0lefo;False;False;[];;this guy goes around giving people breakdown like Santa Claus on Christmas night;False;False;;;;1610435128;;False;{};giz7vrf;False;t3_kujurp;False;True;t1_giskirp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz7vrf/;1610498656;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuiger;;;[];;;;text;t2_nb484;False;False;[];;I honestly believe even the next episodes will get close to this amount of karma, from now on I don't think there is an episode that doesn't include a fucking amazing moment.;False;False;;;;1610435887;;False;{};giz8qtq;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz8qtq/;1610499176;20;True;False;anime;t5_2qh22;;0;[]; -[];;;BelCifer-Z;;;[];;;;text;t2_3ds19pk9;False;False;[];;">nothing to do with our world - ->a conflict where one side simply refuses to see you as a human being - -Pick one";False;False;;;;1610436415;;False;{};giz9c1f;False;t3_kujurp;False;True;t1_gisuimw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz9c1f/;1610499530;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Great_Creator;;;[];;;;text;t2_444wj26u;False;False;[];;10/10 Holy crap really intense episode. And the reveals, plot twists, tension, drama, everything was really incredible to see. (The ost choice for the last scene was great, and fit the scene well. idk why the hate). Extremely hyped for the future episodes!;False;False;;;;1610436936;;False;{};giz9wjh;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giz9wjh/;1610499892;23;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610437762;;False;{};gizasf0;False;t3_kujurp;False;True;t1_giy5l1o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizasf0/;1610500435;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmolAngel;;;[];;;;text;t2_4e8nt30r;False;False;[];;That is true but Armin has been involved in almost/if not all of his own plans throughout the series plus he was basically slated to take Ervin’s role who was also a great planner. I can only assume the whole squad is somewhere near by in the shadows.;False;False;;;;1610438242;;False;{};gizbax2;False;t3_kujurp;False;True;t1_giwnuqc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizbax2/;1610500753;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RickyAA;;;[];;;;text;t2_15m29e2a;False;False;[];;Each titan shifter’s Titan is different, depending on the person they maybe be shorter or higher than the ‘normal’ titan. For instance Bertolt was significantly taller than everyone else in the Scout Regiment, therefore he will be taller than other Colossal titans.;False;False;;;;1610438297;;False;{};gizbd0a;False;t3_kujurp;False;True;t1_giu1v9w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizbd0a/;1610500790;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610438346;;False;{};gizbev3;False;t3_kujurp;False;True;t1_givkhx5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizbev3/;1610500823;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RickyAA;;;[];;;;text;t2_15m29e2a;False;False;[];;Bruh season 1 the Guards in the building put a shotty to the brain;False;False;;;;1610438505;;False;{};gizbkwt;False;t3_kujurp;False;True;t1_gisv209;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizbkwt/;1610500927;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ytudkdvdurif;;;[];;;;text;t2_5mmocbfy;False;False;[];;Sono tori da;False;False;;;;1610439289;;False;{};gizceht;False;t3_kujurp;False;True;t1_gise7va;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizceht/;1610501439;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610439606;;False;{};gizcqd9;False;t3_kujurp;False;True;t1_gizasf0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizcqd9/;1610501646;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hyperactiv3hedgehog;;;[];;;;text;t2_6hn633nc;False;False;[];;Eren about to deliver fooking freedom to the Rest of World;False;False;;;;1610439945;;False;{};gizd2tz;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizd2tz/;1610501860;18;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610440019;;False;{};gizd5l6;False;t3_kujurp;False;True;t1_gizcqd9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizd5l6/;1610501906;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DekuIsShit;;;[];;;;text;t2_6pegouou;False;False;[];;"I mean she is build something like a hunting animal in titan form, her eyes are poking forward. We can assume that she can see pretty well at night. - -And you bring up a fair point, but the facial structure should have remained the same even when he was toast. She could have saw a mild resemblence and just bearly remember him.";False;False;;;;1610440494;;False;{};gizdn1i;False;t3_kujurp;False;True;t1_giwc46f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizdn1i/;1610502207;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rajendraac_13;;;[];;;;text;t2_2s4n5spc;False;False;[];;Do not forget to rate this masterpiece on MyAnimeList guys. This show truely deserves the no.1 spot;False;False;;;;1610440548;;1610441502.0;{};gizdowz;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizdowz/;1610502240;23;True;False;anime;t5_2qh22;;0;[]; -[];;;rajendraac_13;;;[];;;;text;t2_2s4n5spc;False;False;[];;Damn the hype. Can’t wait to watch it (anime only);False;False;;;;1610440883;;False;{};gize15g;False;t3_kujurp;False;True;t1_giyxcwh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gize15g/;1610502462;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bostonian38;;;[];;;;text;t2_12vydv1g;False;False;[];;It’s not a really heroic sounding track imo, it’s pitched weirdly enough to be kinda ominous;False;False;;;;1610441306;;False;{};gizegia;False;t3_kujurp;False;True;t1_giz66lu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizegia/;1610502736;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tsukisun;;;[];;;;text;t2_4k3es9ni;False;False;[];;Legendary;False;False;;;;1610441342;;False;{};gizehu5;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizehu5/;1610502759;11;True;False;anime;t5_2qh22;;0;[]; -[];;;rajendraac_13;;;[];;;;text;t2_2s4n5spc;False;False;[];;Same :);False;False;;;;1610441386;;False;{};gizejd2;False;t3_kujurp;False;True;t1_gixexg2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizejd2/;1610502787;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rajendraac_13;;;[];;;;text;t2_2s4n5spc;False;False;[];;Aot is not just an anime show, ITS A WAY OF LIFE;False;False;;;;1610441473;;False;{};gizemiw;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizemiw/;1610502848;25;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;if i had that power i'd surely tear bodies apart just fo the sake of my ppl, i would't care about anyone else. especially if they are megalomaniacs themselves. if the world's gonna burn anyways and be a shithole, i'd set it on fire under my own terms.;False;False;;;;1610442493;;False;{};gizfn17;False;t3_kujurp;False;True;t1_giz7ga7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizfn17/;1610503499;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WeNTuS;;;[];;;;text;t2_btiic;False;False;[];;The world is fine. It's Eldians make it a shithole because they can turn Titans. That's why the humanity want to eradicate them.;False;False;;;;1610443049;;False;{};gizg6r2;False;t3_kujurp;False;False;t1_gizfn17;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizg6r2/;1610503847;0;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;If Eren believes Willy is the Warhammer Titan, then he also counts as a soldier and a military asset.;False;False;;;;1610443764;;False;{};gizgw0v;False;t3_kujurp;False;False;t1_giz7f1b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizgw0v/;1610504287;14;True;False;anime;t5_2qh22;;0;[]; -[];;;squotty;;;[];;;;text;t2_cs5hz;False;False;[];;Not if it's a total war. You don't need communication if your goal is to completely exterminate the enemy.;False;False;;;;1610443869;;False;{};gizgzt7;False;t3_kujurp;False;False;t1_giz7f1b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizgzt7/;1610504350;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Astorica;;;[];;;;text;t2_qlq1s;False;False;[];;"Nah, the bluff was the king actually using the titans to fight back. Since he swore to be a pacifist, he himself and his descendants would never use the walls for real. - -The walls really are made up of titans though, and the size of Paradise lines up with there being millions.";False;False;;;;1610444307;;False;{};gizhfeq;False;t3_kujurp;False;False;t1_gixl7w8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizhfeq/;1610504617;4;True;False;anime;t5_2qh22;;0;[]; -[];;;JuicyDragonCat;;;[];;;;text;t2_45tgc23z;False;False;[];;well in most wars the objective isn't to exterminate the enemy but to wear them down enough for them to surrender. For that, communication is necessary;False;False;;;;1610444326;;False;{};gizhg2w;False;t3_kujurp;False;True;t1_gizgzt7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizhg2w/;1610504630;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JuicyDragonCat;;;[];;;;text;t2_45tgc23z;False;False;[];;Oh yeah that makes sense;False;False;;;;1610444338;;False;{};gizhghg;False;t3_kujurp;False;False;t1_gizgw0v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizhghg/;1610504637;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Matilozano96;;;[];;;;text;t2_10ly89;False;False;[];;"I once read that the territory win wall Rose should’ve been enough to house and feed the refugees from wall Maria. - -Isayama might’ve overshot the size of the walls tbh. Or maybe a big part is non fertile, Idk.";False;False;;;;1610444513;;False;{};gizhmk0;False;t3_kujurp;False;True;t1_gits50y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizhmk0/;1610504742;1;True;False;anime;t5_2qh22;;0;[]; -[];;;conqueringdragon;;;[];;;;text;t2_11nm5laj;False;False;[];;No, eren is a war criminal and terrorist. And Willy is not head of state, he's a civilian shadow ruler.;False;False;;;;1610445640;;False;{};giziprw;False;t3_kujurp;False;True;t1_giz7f1b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giziprw/;1610505440;0;True;False;anime;t5_2qh22;;0;[]; -[];;;richardtengcy;;;[];;;;text;t2_h2nmdl5;False;False;[];;I rewatch the episode again today, Eren reacting to Willy speech when he said He doesn’t wish to die because he was born into this world was subtle but it’s there. I think that’s the differences between anime and manga. It was so quick that you hardly notice it that made some of the manga readers thought that Mappa did not include the reaction in the scenes.;False;False;;;;1610446081;;False;{};gizj4pj;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizj4pj/;1610505705;10;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;I mean, he wasn't, but realistically he also had zero reason to go directly fuck with the US ever, WMDs or not. No one who's not utterly stupid and overconfident would, even fucking Kim Jong Un knows better than that.;False;False;;;;1610446108;;False;{};gizj5nt;False;t3_kujurp;False;True;t1_givhuvv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizj5nt/;1610505722;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Brex_667;;;[];;;;text;t2_2oml643o;False;False;[];;was that Armin who trapped Pieck and that other guy;False;False;;;;1610446606;;False;{};gizjn1u;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizjn1u/;1610506040;8;True;False;anime;t5_2qh22;;0;[]; -[];;;not_martian;;;[];;;;text;t2_1korsrrj;False;False;[];;Tyber family never told any marleyans about erasing the memories of eldians until willy talked about it . We also know tybers didn't interfere with any of eldian vs marleyan wars .;False;False;;;;1610446927;;False;{};gizjy82;False;t3_kujurp;False;True;t1_giyweef;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizjy82/;1610506247;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;"Nice. So the curve does hit a ""soft wall"" at around 36h mark. Normally the upvote/hour would've bottomed out but the post is so big it's still getting around 30 upvotes per hour even after the soft wall. - -Looks like I was right on the money on where it will end too. Probably gonna finish just shy of 24k, or if there's a boost at the 42h mark like the premiere it can potentially reach 24k. IIRC the premiere was still on the front page during that second prime time at 42h mark though, and this one has dropped off, so maybe there's not gonna be any last minute boost.";False;False;;;;1610447563;;False;{};gizkkkq;False;t3_kujurp;False;True;t1_gixxgpi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizkkkq/;1610506683;3;True;False;anime;t5_2qh22;;0;[]; -[];;;pamagiclol;;;[];;;;text;t2_5dmvf1ev;False;False;[];;"Maybe you need to go outside instead, maybe that's the issue. - -weeb shit";False;False;;;;1610448172;;False;{};gizl5u4;False;t3_kujurp;False;True;t1_gisut9z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizl5u4/;1610507079;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ikatatlo;;;[];;;;text;t2_5hu3bjau;False;False;[];;Im surprised to see this so far down;False;False;;;;1610448176;;False;{};gizl5ya;False;t3_kujurp;False;False;t1_git20y8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizl5ya/;1610507081;4;True;False;anime;t5_2qh22;;0;[]; -[];;;squotty;;;[];;;;text;t2_cs5hz;False;False;[];;In most wars yes, but in this war, the objective is to exterminate the eldians, meaning complete genocide.;False;False;;;;1610448181;;False;{};gizl64n;False;t3_kujurp;False;False;t1_gizhg2w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizl64n/;1610507085;6;True;False;anime;t5_2qh22;;0;[]; -[];;;YllMatina;;;[];;;;text;t2_82slvx8t;False;False;[];;Willy was still the most important figure either way, did you see how much the other nationa leaders liked him?;False;False;;;;1610448610;;False;{};gizllfz;False;t3_kujurp;False;True;t1_gisyfo5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizllfz/;1610507364;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Telinour;;;[];;;;text;t2_941jahsi;False;False;[];;"> I thought he killed the king to avenge his second wife who got munched with the king doing nothing to protect his people from the titans. - -The main reason that they attacked the wall was because they wanted to force Frieda to the Shiganshina and then steal the Founding Titan. Going to the wall would mean too much risk. If they take the titan, it's game over for Paradi Island. - -Grisha's goal was to eat Frieda from the start. Even if she saved the people from the titans, Grisha would have still probably murdered Frieda. Also, Grisha didn't even knew his wife died yet. He knew after he stole the titan. - -If Grisha wouldn't have killed Frieda, she would have definitely do something about the wall at some point. By killing her and giving his titan to Eren with little information about it, the humanity inside the wall almost died because of his actions lol. - -> Either way, it makes no sense for the world to want a war with Paradis until they at least have better weapons. - -It's like people at Paradi Island don't know that, lol. At the same time, Paradi Island is also probably improving their technology. Their technology was like decades behind of Marley and even with that they won against the titans. With the knowledge from the outside, they will improve at breakneck speed. Also if the Founding Titan's power gets activated, they will probably have no chance even with technological improvements.";False;False;;;;1610448860;;False;{};gizluix;False;t3_kujurp;False;True;t1_giysdfe;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizluix/;1610507519;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ikatatlo;;;[];;;;text;t2_5hu3bjau;False;False;[];;"They need the sun for them to ""activate""";False;False;;;;1610449161;;False;{};gizm5p1;False;t3_kujurp;False;True;t1_gixiexk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizm5p1/;1610507715;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YouKnewMe_;;;[];;;;text;t2_1sus7ju3;False;False;[];;You’re definitely in the minority even among anime onlies my dude;False;False;;;;1610450160;;False;{};gizn72o;False;t3_kujurp;False;True;t1_givhquz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizn72o/;1610508359;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ensianto;;;[];;;;text;t2_wmepy;False;False;[];;It was an act of war;False;False;;;;1610451581;;False;{};gizoovs;False;t3_kujurp;False;False;t1_giz66lu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizoovs/;1610509336;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Raknel;;;[];;;;text;t2_xwf5o;False;False;[];;"And also to shift the focus from Marley to Paradis. - -Marley is pretty much universally hated and they are starting to lose their advantage in war. So instead of the world uniting against Marley as the common enemy, Marley is getting everyone on their side against Paradis by painting them as the real enemy.";False;False;;;;1610451648;;False;{};gizorhq;False;t3_kujurp;False;False;t1_giz7b0l;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizorhq/;1610509382;10;True;False;anime;t5_2qh22;;0;[]; -[];;;LittleWompRat;;;[];;;;text;t2_54bxq18h;False;False;[];;"Well, Marley and the alliance are planning to exterminate & massacre the Paradis. In terms of War crime, what Eren did is pale in comparison to what Marley are planning to do.";False;False;;;;1610451668;;False;{};gizos95;False;t3_kujurp;False;False;t1_giz7f1b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizos95/;1610509394;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Icyfire11;;;[];;;;text;t2_1w55hht;False;False;[];;Good episode, but I prefer the manga's slower pace and attention to detail.;False;False;;;;1610451724;;False;{};gizouev;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizouev/;1610509431;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JuicyDragonCat;;;[];;;;text;t2_45tgc23z;False;False;[];;They didn't say that, they just said they were going to war. Willy never stated, they were planning on killing every single eldian on the island;False;False;;;;1610451833;;False;{};gizoyj3;False;t3_kujurp;False;True;t1_gizos95;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizoyj3/;1610509502;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LittleWompRat;;;[];;;;text;t2_54bxq18h;False;False;[];;" ->episode 11 - -Which chapter would it be?";False;False;;;;1610451852;;False;{};gizozas;False;t3_kujurp;False;False;t1_giz0m0h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizozas/;1610509516;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Raknel;;;[];;;;text;t2_xwf5o;False;False;[];;The problem with her wasn't where she ended up but how quickly she got there. I feel like Eren's development is more fleshed out, and we still have almost an entire season left to see where it really goes. Dany just kinda flipped in the last 2 episodes of the show.;False;False;;;;1610452386;;False;{};gizpkek;False;t3_kujurp;False;False;t1_giy14g5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizpkek/;1610509886;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Steppy117;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Steppy117;light;text;t2_13oqbeb9;False;False;[];;Kyojin;False;False;;;;1610452559;;False;{};gizpra8;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizpra8/;1610510009;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Ubernicken;;;[];;;;text;t2_dnla0;False;False;[];;Nooooooononononono NO;False;False;;;;1610452608;;False;{};gizpt77;False;t3_kujurp;False;True;t1_giz6q9t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizpt77/;1610510042;1;True;False;anime;t5_2qh22;;0;[]; -[];;;arnav1311;;;[];;;;text;t2_81mzmva;False;False;[];;"You have to take a very extreme case in our real world. Best example is when the US nuked Japan, and post that does Japan have the right to attack US and assassinate the President? - -Because Marley and the rest of the world have done terrible things to Paradis. It isn't a common real world situation.";False;False;;;;1610453485;;False;{};gizqsut;False;t3_kujurp;False;True;t1_giz7f1b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizqsut/;1610510666;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MrBallins;;;[];;;;text;t2_7bkalmz;False;False;[];;"> Technology would eventually overtake titans in terms of power, so they could just wait it out. - -This is exactly why, Marley has built its entire empire on the use of titans so technology surpassing them is really bad for the empire. The Founding Titan is a massive force multiplier that would let them keep their supremacy for longer";False;False;;;;1610453486;;False;{};gizqsw8;False;t3_kujurp;False;True;t1_giunnxf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizqsw8/;1610510668;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rabid_J;;;[];;;;text;t2_753qc;False;False;[];;Freeing their souls from their bodies perhaps;False;False;;;;1610453705;;False;{};gizr1xt;False;t3_kujurp;False;False;t1_gizd2tz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizr1xt/;1610510822;7;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;We're moving at about 2 chapters per episode so that should include 111 and 112, I think.;False;False;;;;1610453946;;False;{};gizrc9l;False;t3_kujurp;False;False;t1_gizozas;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizrc9l/;1610511000;5;True;False;anime;t5_2qh22;;0;[]; -[];;;jung2019;;;[];;;;text;t2_171etn;False;False;[];;By killing innocent civilians?;False;False;;;;1610454053;;False;{};gizrgtl;False;t3_kujurp;False;True;t1_gizoovs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizrgtl/;1610511083;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RaDiOaCtIvEpUnK;;;[];;;;text;t2_wz2s1;False;False;[];;I hated season 1 when it released because of this reason back in the day. I actually didn’t like this series back then, and only watched it because all my friends were super hyped about it, so I sticked with it. I thought it was just gonna end up some generic forgettable anime, fast forward to now after this episode, and boy how wrong I was. But damn am I glad to be wrong.;False;False;;;;1610454336;;False;{};gizrt4o;False;t3_kujurp;False;True;t1_gisao83;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizrt4o/;1610511310;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Meapcuteee;;;[];;;;text;t2_1wlio7dc;False;False;[];;And imdb too, episode 5 is currently at 9.9/10 with roughly 10k votes;False;False;;;;1610454382;;False;{};gizrv6v;False;t3_kujurp;False;False;t1_gizdowz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizrv6v/;1610511358;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Ensianto;;;[];;;;text;t2_wmepy;False;False;[];;Collateral damage;False;False;;;;1610454453;;False;{};gizryc2;False;t3_kujurp;False;True;t1_gizrgtl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizryc2/;1610511414;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Meapcuteee;;;[];;;;text;t2_1wlio7dc;False;False;[];;"This is really hard/impossible to give a clear answer tbh, it depends a lot on the situation we're talking here but if you're worried about communication, there will always be another head of state after that dead guy so... -Beside, Willy was never the true ruler or king of Marley, he run everything in shadow, people only know his family as the one who works with Helos to push the King to Paradis.";False;False;;;;1610455162;;False;{};gizsto1;False;t3_kujurp;False;False;t1_giz7f1b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizsto1/;1610511964;4;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;Think we can hit 24K before the 48 hour limit? Only about 5 hours left.;False;False;;;;1610455390;;False;{};gizt4ai;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizt4ai/;1610512152;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Kanigami-sama;;;[];;;;text;t2_1id4scsm;False;False;[];;The long forgotten power of the orange titan. The royal family’s best kept secret.;False;False;;;;1610455446;;False;{};gizt6vj;False;t3_kujurp;False;False;t1_gist431;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizt6vj/;1610512195;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Meapcuteee;;;[];;;;text;t2_1wlio7dc;False;False;[];;"Do you even watching? He literally said ""i wished for the eradication of the Eldian"" and you're telling me he's not planning on fucking kill them all?";False;False;;;;1610455514;;False;{};gizt9x9;False;t3_kujurp;False;False;t1_gizoyj3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizt9x9/;1610512247;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Meapcuteee;;;[];;;;text;t2_1wlio7dc;False;False;[];;"I don't think so lol, Willy literally said ""i wished for the eradication of the Eldian"" and united the world against this race who can transfer into Titan/have the power to end the world at any time so...nope";False;False;;;;1610455743;;False;{};giztkgh;False;t3_kujurp;False;False;t1_giyytlz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giztkgh/;1610512432;4;True;False;anime;t5_2qh22;;0;[]; -[];;;deproxyacct;;;[];;;;text;t2_59kpi7wi;False;False;[];;"Don't mind me, I'm just reading all these comments while listening to ""Attack on Titan Final Season Opening \[ My War \] (1 Hour Version). """;False;False;;;;1610456576;;False;{};gizupag;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizupag/;1610513207;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;We've fallen off the front page and about to fall off the second page too, so I'm not counting on it. There's probably around 100 upvotes left. It's gonna be real close though. Gonna end at 23.8k-ish.;False;False;;;;1610456794;;False;{};gizv03c;False;t3_kujurp;False;False;t1_gizt4ai;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizv03c/;1610513404;6;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;Ah, well. It was a magnificent run regardless!;False;False;;;;1610457025;;False;{};gizvbqk;False;t3_kujurp;False;False;t1_gizv03c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizvbqk/;1610513641;6;True;False;anime;t5_2qh22;;0;[]; -[];;;nuclearshockwave;;;[];;;;text;t2_wbx7a;False;False;[];;Blood for the blood god !;False;False;;;;1610457596;;False;{};gizw5lb;False;t3_kujurp;False;False;t1_git3jku;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizw5lb/;1610514284;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;Yeah this is already insane. The episode-to-episode karma increase is gonna be more than 10k, which should be the highest ever I think?;False;False;;;;1610457856;;1610461401.0;{};gizwjnh;False;t3_kujurp;False;False;t1_gizvbqk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizwjnh/;1610514518;8;True;False;anime;t5_2qh22;;0;[]; -[];;;JamzWhilmm;;;[];;;;text;t2_su23knh;False;False;[];;Underrated comment;False;False;;;;1610458116;;False;{};gizwy0o;False;t3_kujurp;False;True;t1_givosle;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizwy0o/;1610514753;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RazorOfSimplicity;;;[];;;;text;t2_17jcpn;False;False;[];;"I didn't say it was bad; just another example.";False;False;;;;1610458931;;False;{};gizy828;False;t3_kujurp;False;True;t1_gix1h1g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizy828/;1610515518;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DirtySockz;;;[];;;;text;t2_ehixg;False;False;[];;Armin being that tall? My guess is no way. Also sounded like a woman trying to sound manly.;False;False;;;;1610459107;;False;{};gizyiej;False;t3_kujurp;False;False;t1_gizjn1u;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizyiej/;1610515689;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Dmalikhammer4;;;[];;;;text;t2_12csac;False;False;[];;Armin is tall damn. He grew a lot.;False;False;;;;1610459222;;False;{};gizyp5l;False;t3_kujurp;False;True;t1_gisi2c0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizyp5l/;1610515804;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;Next episode is very much guaranteed to surpass 20K+ , no episode will fall under 15K from now on, and last two episodes will reach 25K+ and maybe even 30K+ which would be absolutely wild;False;False;;;;1610459569;;False;{};gizz9sq;False;t3_kujurp;False;False;t1_giz8qtq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizz9sq/;1610516148;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Krymea;;;[];;;;text;t2_robj9;False;False;[];;How do I convince someone to watch AoT? Tie them to a chair?;False;False;;;;1610459851;;False;{};gizzr2i;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gizzr2i/;1610516432;16;True;False;anime;t5_2qh22;;0;[]; -[];;;coughcough;;;[];;;;text;t2_4qz9w;False;False;[];;Crunchy on the outside, soft and chewy in the middle;False;False;;;;1610460373;;False;{};gj00nf9;False;t3_kujurp;False;True;t1_giuq1v1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj00nf9/;1610516988;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;"Oh, so another record, totalling 4? Count me in - -Come to think of it it is true, we went from the season's lowest episode karma (13k) to almost 24k, the new peak, insanity";False;False;;;;1610460986;;False;{};gj01qjx;False;t3_kujurp;False;False;t1_gizwjnh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj01qjx/;1610517612;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;Can we hit 1200 awards? 👀;False;False;;;;1610461104;;False;{};gj01y6v;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj01y6v/;1610517736;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610461134;;False;{};gj0204k;False;t3_kujurp;False;True;t1_gizzr2i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0204k/;1610517768;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;To be fair, armin's voice actor is a woman xD;False;False;;;;1610461183;;False;{};gj023b9;False;t3_kujurp;False;False;t1_gizyiej;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj023b9/;1610517819;13;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;There are around 4 hours remaining and it's 1197 awards atm, so definitely yeah;False;False;;;;1610462951;;False;{};gj05dla;False;t3_kujurp;False;False;t1_gj01y6v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj05dla/;1610519763;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SigmundFreud;;;[];;;;text;t2_3cp72;False;False;[];;That's what I was suggesting.;False;False;;;;1610463067;;False;{};gj05lrv;False;t3_kujurp;False;True;t1_gizm5p1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj05lrv/;1610519893;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hydraflux;;;[];;;;text;t2_hpewv;False;False;[];;"> Only someone truly Arminpilled - -The hero we NEED";False;False;;;;1610463128;;False;{};gj05q4i;False;t3_kujurp;False;True;t1_giu1lmh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj05q4i/;1610519968;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;Yeh, Demon Slayer should have been the previous record and that increase was just shy of 10k.;False;False;;;;1610463174;;1610468535.0;{};gj05tbh;False;t3_kujurp;False;True;t1_gizwjnh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj05tbh/;1610520017;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"> Grisha's goal was to eat Frieda from the start. Even if she saved the people from the titans, Grisha would have still probably murdered Frieda. Also, Grisha didn't even knew his wife died yet. He knew after he stole the titan. - -What kind of insane coincidence is it then that he took the Founding Titan around the same time as the Shifters attacked the wall??";False;False;;;;1610463228;;False;{};gj05x25;False;t3_kujurp;False;True;t1_gizluix;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj05x25/;1610520075;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DJ_AW03;;;[];;;;text;t2_6a2u9w9l;False;False;[];;Seems 24k isn't happening tho, probably tops out at 23.8k;False;False;;;;1610463330;;False;{};gj06463;False;t3_kujurp;False;False;t1_gj05dla;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj06463/;1610520188;7;True;False;anime;t5_2qh22;;0;[]; -[];;;FullmetalPain22;;;[];;;;text;t2_m9gag;False;False;[];;Eren wants to make Reiner experience what he experienced when Reiner broke the walls and Dina ate Eren's mom;False;False;;;;1610463460;;False;{};gj06d8d;False;t3_kujurp;False;True;t1_giv32iy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj06d8d/;1610520330;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;Yup, it won't make it to 24K now;False;False;;;;1610463486;;False;{};gj06f61;False;t3_kujurp;False;True;t1_gj06463;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj06f61/;1610520361;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;Reddit do be an echo chamber doe;False;False;;;;1610463583;;False;{};gj06m5k;False;t3_kujurp;False;False;t1_git33vw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj06m5k/;1610520469;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;" [Like this](/s ""Black Holes and Revelations"") - -gives you - -[Like this](/s ""Black Holes and Revelations"")";False;False;;;;1610463658;;False;{};gj06rg0;False;t3_kujurp;False;True;t1_giucxoj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj06rg0/;1610520548;2;True;False;anime;t5_2qh22;;0;[]; -[];;;newguy208;;;[];;;;text;t2_yxsfs;False;False;[];;Oh so that's what the spoiler source is. Thank you!;False;False;;;;1610463889;;False;{};gj077wn;False;t3_kujurp;False;True;t1_gj06rg0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj077wn/;1610520801;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DrJWilson;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/drjwilson/animelist;light;text;t2_6zykq;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610464029;moderator;False;{};gj07hro;False;t3_kujurp;False;False;t1_gj0204k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj07hro/;1610520952;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;I kinda misinterpreted you, spoiler source here is the manga, but **spoiler Source** can be game, vn or on too or you can just write anything in lieu of **spoiler source**;False;False;;;;1610465329;;False;{};gj0a2a9;False;t3_kujurp;False;True;t1_gj077wn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0a2a9/;1610522367;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610465337;;False;{};gj0a2v4;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0a2v4/;1610522376;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610466901;;False;{};gj0d0mw;False;t3_kujurp;False;True;t1_giy14g5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0d0mw/;1610523995;1;True;False;anime;t5_2qh22;;0;[]; -[];;;newguy208;;;[];;;;text;t2_yxsfs;False;False;[];;Understood thank you.;False;False;;;;1610467751;;False;{};gj0er07;False;t3_kujurp;False;True;t1_gj0a2a9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0er07/;1610524930;3;True;False;anime;t5_2qh22;;0;[]; -[];;;woamityo;;;[];;;;text;t2_15ur6m;False;False;[];;You've got it dude 😎;False;False;;;;1610468364;;False;{};gj0g0z1;False;t3_kujurp;False;False;t1_gj01y6v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0g0z1/;1610525640;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;You are awesome 🐐🐐🐐;False;False;;;;1610468401;;False;{};gj0g3ug;False;t3_kujurp;False;False;t1_gj0g0z1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0g3ug/;1610525682;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ModieOfTheEast;;;[];;;;text;t2_g7tqk9b;False;False;[];;"Sorry, wrong timeline in my head, but the point still stands. When Krüger rescued Eren's dad he destroyed the fleet. When it was not coming back, Marley had to suspect something was happening. Only titans would be able to destroy the ships. One option would be the king himself since he still has the founding titan. So they wanted to know if the king betrayed them or if it was something else. - -Other option might be that they wanted the power of the founding titan to keep the Eldians on the main land in check. They started to rebel after all.";False;False;;;;1610468974;;False;{};gj0hbr2;False;t3_kujurp;False;True;t1_gisyupc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0hbr2/;1610526339;1;True;False;anime;t5_2qh22;;0;[]; -[];;;idan5;;;[];;;;text;t2_zuxyo;False;False;[];;Is your name Kiritsugu by chance ?;False;False;;;;1610469180;;False;{};gj0hrc2;False;t3_kujurp;False;True;t1_giz7ga7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0hrc2/;1610526571;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Justified_Eren;;;[];;;;text;t2_28tyuzkt;False;False;[];;Not really, Mappa sucks at eyes. In manga Eren's eyes showed way way more emotions than in the recent episode. And I am saying this without bias, as I prefer anime over manga. You should certainly read chapter 100 and see on your own.;False;False;;;;1610469484;;False;{};gj0ienu;False;t3_kujurp;False;True;t1_giyeoug;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0ienu/;1610526914;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zoo-wee-ma-ma;;;[];;;;text;t2_4kro05s7;False;False;[];;No I get what you mean - I’ve been keeping up with the manga for years. I just think it’s interesting that Eren’s eyes seemed so flat compared to everyone else’s (whether it was intentional or not).;False;False;;;;1610470088;;False;{};gj0jq7b;False;t3_kujurp;False;True;t1_gj0ienu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0jq7b/;1610527636;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;We need 215 upvotes to reach 24k, 2 hours to go;False;False;;;;1610470093;;False;{};gj0jqlt;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0jqlt/;1610527642;14;True;False;anime;t5_2qh22;;0;[]; -[];;;DJ_AW03;;;[];;;;text;t2_6a2u9w9l;False;False;[];;I don't think we're gonna make it 😢;False;False;;;;1610470272;;False;{};gj0k4lz;False;t3_kujurp;False;False;t1_gj0jqlt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0k4lz/;1610527850;14;True;False;anime;t5_2qh22;;0;[]; -[];;;renannmhreddit;;;[];;;;text;t2_n50we;False;False;[];;Eldians are comprised by those on Marley as well. Anyway, he obviously admires King Fritz's pacifism either way, despite his personal feelings.;False;False;;;;1610471564;;False;{};gj0myce;False;t3_kujurp;False;True;t1_gizt9x9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0myce/;1610529419;2;True;False;anime;t5_2qh22;;0;[]; -[];;;-V0lD;;;[];;;;text;t2_xapna;False;True;[];;"Statements>calcs";False;False;;;;1610471901;;False;{};gj0np1y;False;t3_kujurp;False;True;t1_gisvhvl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0np1y/;1610529822;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Blupoisen;;;[];;;;text;t2_2etbcve1;False;False;[];;You mean the maid?;False;False;;;;1610472744;;False;{};gj0pkex;False;t3_kujurp;False;True;t1_giuztj7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0pkex/;1610530842;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BasroilII;;;[];;;;text;t2_2yjoujdz;False;False;[];;I have been waiting for ages now for this scene to be animated, and it was done so perfectly.;False;False;;;;1610473218;;False;{};gj0qmlt;False;t3_kujurp;False;True;t1_gisc1bn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0qmlt/;1610531417;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cersei505;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_14gmny;False;False;[];;"Holy shit i didnt expect to see an unironic hiroshima apologist here lmao, you must be really tone deaf to this show and its theme to even try to make this parallel and then further it by saying it was a ''necessary evil''. Anyone with a brain knows the USA just bombed the shit out of japan to showcase they had atomic bombs in their hands ready to use. - -&#x200B; - -It wasnt some ''kind'' or ''humanitary'' act to hold off worse evil, just a decision to maintain the U.S at the top.";False;False;;;;1610473375;;False;{};gj0qzcu;False;t3_kujurp;False;True;t1_giycus7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0qzcu/;1610531605;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bombehjort;;;[];;;;text;t2_kuqtx;False;False;[];;This is especially obvious, when you consider that the anime’s opening contained details, which hints to plottwists, which at that point, the manga has not teached yet. It was insane to read those plottwist, and then realize it was hinted in the anime for some time;False;False;;;;1610474442;;False;{};gj0tddd;False;t3_kujurp;False;True;t1_gisif8n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0tddd/;1610532908;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610474917;;False;{};gj0uewc;False;t3_kujurp;False;True;t1_givwmd5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0uewc/;1610533480;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cersei505;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_14gmny;False;False;[];;"but there IS an in-world logic - -If you are a manga reader like you say, you should know more than anyone else that the founding titan is connected to every eldian and can change their biological properties at will via PATHS(and we know who is in paths doing all this hard work) - -So creating this mindless colossal titans has nothing to do with injections, king fritz clearly did that solely with the founding titan powers. Their appearance as colossals are also different, the fact they have no skin and only muscle tissue is due to them being so big that they produce too much steam and are too hot to even have skin at all) - -Its no different from the pure regular titans and the rest of the 9. Their appearances are not what gives them their unique titles of 9 titans, its merely the fact that they can remain counscious while in titan form that do, nothing more and nothing less. The only titan that has a real, special ''power'' is the founding titan, because of the reasons already stated above)";False;False;;;;1610475022;;False;{};gj0un90;False;t3_kujurp;False;True;t1_givwmd5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0un90/;1610533605;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;Seriously, advice for your own good, stop posting spoilers. I've said much less than this by sheer mistake once and ended up slammed with a 2 weeks ban.;False;False;;;;1610475785;;False;{};gj0wc8r;False;t3_kujurp;False;True;t1_gj0un90;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0wc8r/;1610534567;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Tommybeast;;;[];;;;text;t2_a5c2t;False;False;[];;the lack of a cohesive overarching goal is one of hxh defining features that differentiates it from other competing shounen. It's very wandering and twists and pulls in whatever direction it wants without being constrained to a traditional shounen structure. It is unfinished, but it's unclear if it would ever have a clear finish because they can always pivot to other perspectives, as has happened after the end of the anime;False;False;;;;1610475988;;False;{};gj0wsic;False;t3_kujurp;False;True;t1_giuavpk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0wsic/;1610534819;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_light__;;;[];;;;text;t2_n6jlr;False;False;[];;Do you have any sources for that claim? Like interviews or something? Not trying to put you under the spotlight or anything, I'm just really curious!;False;False;;;;1610476647;;False;{};gj0y9gc;False;t3_kujurp;False;True;t1_gisif8n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0y9gc/;1610535677;1;True;False;anime;t5_2qh22;;0;[]; -[];;;evilstop4;;;[];;;;text;t2_pwwxi4p;False;False;[];;What makes you so sure that’s armin?;False;False;;;;1610476897;;False;{};gj0ytii;False;t3_kujurp;False;True;t1_giy9gya;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0ytii/;1610536007;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Iknwican;;;[];;;;text;t2_8b5tr;False;False;[];;Does that mean someone killed him or it was too deep?;False;False;;;;1610477284;;False;{};gj0zoo4;False;t3_kujurp;False;False;t1_givuox8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0zoo4/;1610536499;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;~23.838 the final karma number and ~6.239 comments;False;False;;;;1610477307;;False;{};gj0zqim;False;t3_kujurp;False;False;t1_gj0k4lz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0zqim/;1610536530;6;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;"Seems the 48 hours are all done now. Didn't hit 24K, but was still one hell of a show. Records smashed, which were previously set by the same show anyway. - -I am proud to have fought alongside you. Here's to more to come!";False;False;;;;1610477344;;False;{};gj0zti4;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj0zti4/;1610536579;29;True;False;anime;t5_2qh22;;0;[]; -[];;;Bainos;;MAL skip7;[];;https://myanimelist.net/animelist/Bainos;dark;text;t2_e226y;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610477473;moderator;False;{};gj103ri;False;t3_kujurp;False;True;t1_givzxqm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj103ri/;1610536740;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;So uhhh same time next week?;False;False;;;;1610478035;;False;{};gj11de6;False;t3_kujurp;False;False;t1_gj0zti4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj11de6/;1610537470;12;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;It's a date, then.;False;False;;;;1610478249;;False;{};gj11u3p;False;t3_kujurp;False;False;t1_gj11de6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj11u3p/;1610537734;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Cheesewithmold;;;[];;;;text;t2_7mkpb;False;False;[];;"Before he disappeared he had told a friend about his plan, that's how we know of his disappearance to begin with. - -It's implied that the military police figured out his plan so they killed him and filled the hole in. If you remember back in season 3 the military police that Hange and co. captured confessed to killing all the people who tried to escape/find the truth about humanity. Including Erwin's father the teacher, and Armin's parents who tried to escape in a hot air balloon.";False;False;;;;1610478457;;False;{};gj12afs;False;t3_kujurp;False;False;t1_gj0zoo4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj12afs/;1610537995;9;True;False;anime;t5_2qh22;;0;[]; -[];;;sittingbull15;;;[];;;;text;t2_jnaof;False;False;[];;There is not just Eren attacking, there is a coup behind plotted by Tybur and Margath. Why do you think all Marley military higher ups are gathered in one small spot under seating arrangement. They were like sitting ducks, lol.;False;False;;;;1610478883;;False;{};gj137z2;False;t3_kujurp;False;True;t1_giz7f1b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj137z2/;1610538531;0;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkWorld97;;MAL;[];;https://myanimelist.net/profile/;dark;text;t2_aqfg4;False;False;[];;Video must've been taken down. It involved Yuki Kaji doing a line read, Isayama telling him to do a little different, Kaji nailing the 2nd time, and Isayama feeling like he overstepped his bounds.;False;False;;;;1610479073;;False;{};gj13n41;False;t3_kujurp;False;True;t1_gj0y9gc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj13n41/;1610538776;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomXxZ;;;[];;;;text;t2_37lbelym;False;False;[];;It's the buildup, and the payoff at the end, + the animation, the OST's, everything was just amazing. That's what puts this episode on the same level as Hero for me, if not better.;False;False;;;;1610480113;;False;{};gj15y47;False;t3_kujurp;False;True;t1_gixn5zu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj15y47/;1610540145;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MMBook;;;[];;;;text;t2_3pqytndm;False;False;[];;Next week should beat it haha, if mappa keep it up there are episodes all over that will reach 20k+;False;False;;;;1610480667;;False;{};gj175t6;False;t3_kujurp;False;False;t1_gj0zti4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj175t6/;1610540932;7;True;False;anime;t5_2qh22;;0;[]; -[];;;MMBook;;;[];;;;text;t2_3pqytndm;False;False;[];;24k so close 👑;False;False;;;;1610480694;;False;{};gj177xh;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj177xh/;1610540968;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Iknwican;;;[];;;;text;t2_8b5tr;False;False;[];;What a world thank you for the explanation!;False;False;;;;1610480697;;False;{};gj1787n;False;t3_kujurp;False;True;t1_gj12afs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj1787n/;1610540972;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;Ep 16 takes it further if not any of the previous ones (its very probable);False;False;;;;1610481105;;False;{};gj184fz;False;t3_kujurp;False;False;t1_gj177xh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj184fz/;1610541550;16;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomXxZ;;;[];;;;text;t2_37lbelym;False;False;[];;23.9K is where it ended, I think.;False;False;;;;1610481130;;False;{};gj186ho;False;t3_kujurp;False;True;t1_gitr43t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj186ho/;1610541586;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;Yup final tally 23844, give or take a few votes.;False;False;;;;1610481271;;False;{};gj18hpb;False;t3_kujurp;False;False;t1_gj0zti4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj18hpb/;1610541794;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;"Let's meet again in the next battlefield comrade. - -I assume that will be episode 6, and then maybe 7 and then again for the final 2 episodes. - - -**SHINZOU WA SASAGEYO**";False;False;;;;1610481474;;False;{};gj18xpc;False;t3_kujurp;False;False;t1_gj0zti4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj18xpc/;1610542078;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;23847 officially on animetrics with 6243 comments https://animetrics.co/anime/610;False;False;;;;1610481823;;False;{};gj19p35;False;t3_kujurp;False;False;t1_gj18hpb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj19p35/;1610542577;10;True;False;anime;t5_2qh22;;0;[]; -[];;;DJ_AW03;;;[];;;;text;t2_6a2u9w9l;False;False;[];;I could see next episode also reaching 20k;False;False;;;;1610481865;;False;{};gj19sfu;False;t3_kujurp;False;False;t1_gj184fz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj19sfu/;1610542645;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Ravioli_Heicho;;;[];;;;text;t2_3bls5ou;False;False;[];;"Final 3 episodes, honestly. - -14 will probably end where 119 did, which will generate an **enormous** uproar. - -Then 15 should adapt 120-121, and 16 should cover 122 and most of 123. - -All three of those episodes are going to be huge.";False;False;;;;1610482283;;1610482643.0;{};gj1apdh;False;t3_kujurp;False;False;t1_gj18xpc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj1apdh/;1610543277;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Demortus;;;[];;;;text;t2_130cjr;False;False;[];;Exactly. Given her second chance, Ymir wanted to give up her selfless nature, but ultimately failed. You could see her internal struggle when Ymir at first tried to tell Christa that she was trying to save her. When Christa pointed out that this selfless act contradicted all of the advice Ymir had given, Ymir decided to hide her selflessness with an explicit lie: that Ymir was only protecting Christa to save herself.;False;False;;;;1610482300;;False;{};gj1aqna;False;t3_kujurp;False;True;t1_gixtdi0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj1aqna/;1610543302;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;"Haha. Man it's crazy. This episode is gonna end in the top 10 posts after 6 months, and the premiere in the top 20. I never thought an episode discussion could make it up there. - -And there's 11 more to go.";False;False;;;;1610482863;;False;{};gj1bynk;False;t3_kujurp;False;False;t1_gj19p35;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj1bynk/;1610544115;6;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;Sit down reiner;False;False;;;;1610482930;;False;{};gj1c3uk;False;t3_kujurp;False;False;t1_gizzr2i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj1c3uk/;1610544209;13;True;False;anime;t5_2qh22;;0;[]; -[];;;ccfnicolas;;;[];;;;text;t2_1120z6;False;False;[];;"Marley arc reaches its ~~Pieck~~ peak, at last. - -Reading chapter 100 ('Declaration of war') felt like witnessing history in the making. The anime had the tough job of having to measure up to the manga in that regard, and imo it did so with flying colors. This episode is twice as gratifying because of the response it got. It fucking deserves it.";False;False;;;;1610482944;;False;{};gj1c50w;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj1c50w/;1610544230;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;I had to scroll all the way down to 103rd before I reached Re:Zero S2E1 which is 3rd all time for discussion threads.;False;False;;;;1610483330;;False;{};gj1cz9x;False;t3_kujurp;False;False;t1_gj1bynk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj1cz9x/;1610544827;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;I think 6 and 7 have a shot too tbh, there are plenty of hype moments in it and imo it's the best action out of the whole manga. I recall some staff member saying they've put a lot of effort into the liberio raid so I'm sure it'll look great as well.;False;False;;;;1610484521;;False;{};gj1flae;False;t3_kujurp;False;False;t1_gj1apdh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj1flae/;1610546587;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610484952;;False;{};gj1gk9s;False;t3_kujurp;False;False;t1_gisho83;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj1gk9s/;1610547243;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610485692;;False;{};gj1i6zv;False;t3_kujurp;False;True;t1_gisvm0w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj1i6zv/;1610548422;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Levani_Exiled;;;[];;;;text;t2_5857rrcq;False;False;[];;I don't watch it for action and I mentioned it. I prefer longer dialogue. Episode was kinda wasted.;False;False;;;;1610485948;;False;{};gj1ir83;False;t3_kujurp;False;True;t1_git0kuh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj1ir83/;1610548829;1;True;False;anime;t5_2qh22;;0;[]; -[];;;00pirateforever;;;[];;;;text;t2_4jzj2ect;False;False;[];;I will rewatch it later. But I don't remember.;False;False;;;;1610486017;;False;{};gj1iwrs;False;t3_kujurp;False;False;t1_giv32sm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj1iwrs/;1610548933;1;True;False;anime;t5_2qh22;;0;[]; -[];;;00pirateforever;;;[];;;;text;t2_4jzj2ect;False;False;[];;"Yes I have seen in many community. People doesn't remember that everyone taste differ from one another. I like aot from my heart so if I don't get why I like it in the first place then there is not any point to watch it. - -People are downvoting me bc they thought it was perfect episode. I liked it but I didn't felt the impact at all. Ost choice and transition effects are not good in my opinion.";False;False;;;;1610486223;;False;{};gj1jcz4;False;t3_kujurp;False;True;t1_giv99sc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj1jcz4/;1610549251;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KUKLI1;;;[];;;;text;t2_162wod;False;False;[];;Do re-watch it, AoT is a great series to re-watch anyways lol;False;False;;;;1610486619;;False;{};gj1k84e;False;t3_kujurp;False;True;t1_gj1iwrs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj1k84e/;1610549887;1;True;False;anime;t5_2qh22;;0;[]; -[];;;00pirateforever;;;[];;;;text;t2_4jzj2ect;False;False;[];;You definitely have point there.;False;False;;;;1610486692;;False;{};gj1kdqn;False;t3_kujurp;False;True;t1_gj1k84e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj1kdqn/;1610549996;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OneirionKnight;;;[];;;;text;t2_1kghpz3x;False;False;[];;Sure but any competent writer would've still written anything vastly better than the trainwreck we received.;False;False;;;;1610486876;;False;{};gj1ks71;False;t3_kujurp;False;True;t1_giz7sl5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj1ks71/;1610550293;2;True;False;anime;t5_2qh22;;0;[]; -[];;;julo20;;;[];;;;text;t2_5wr25;False;False;[];;"That buildup was absolutely masterful. - -""It's like Willy says--I'm the bad guy. I might just destroy the world."" -Eren has an idea about what Willy is about to do, and what that means. He has to retailiate, to protect Paradis. - -""Reiner, I'm the same as you."" -But even though he KNOWS what he must do, CAN he? Can he kill these innocent people that will get caught up in the fight, just to protect his people? At this point I believe he still isn't sure if he can go through with it. - -""Across the sea, within the walls... It's the same."" -He sees himself exactly where Reiner was 4 years ago, when Reiner revealed he was the Armored Titan. Reiner had lived with them for years, as a close friend, but at the critical moment, Reiner chose duty over compassion for Paradis. Eren at the time saw it as the ultimate betrayal. But now, he himself has lived among the Eldians, and is caught between duty and compassion. - -Willy: ""But I do not wish to die. And that is because I was born into this world."" -Eren gives a subtle reaction to that line. He is at the edge, and seriously considers compassion. But then Willy forsakes Paradis. And the people cheer. Eren bows his head with a smile. It is at this moment, he chooses to go through with his plan. - -""Like I thought, I'm the same as you."" -He makes the same decision that Reiner was faced with 4 years ago. And seeing it from his side, he can finally forgive Reiner. - -This is no longer Eren fueled by reckless emotion. He is purely driven by the will to do whatever it takes to protect Paradis, even if there are casualties. Families caught up in the middle. Just like his own mother.";False;False;;;;1610487564;;False;{};gj1ma10;False;t3_kujurp;False;True;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj1ma10/;1610551324;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;"Right? That's what so crazy about it. There's a large wall between 15k/16k and 20k threads, and this season just broke it twice. It was unthinkable that a discussion thread could make top 100, let alone top 50 and even top 10, because when a big one comes around it would always get pushed down by some art or news or something thread soon. - -I'm kinda excited to see what records the finale would smash. 30k for the top spot seems tough but I reckon it would at least get in top 5.";False;False;;;;1610489138;;False;{};gj1ppc2;False;t3_kujurp;False;False;t1_gj1cz9x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj1ppc2/;1610553759;7;True;False;anime;t5_2qh22;;0;[]; -[];;;jung2019;;;[];;;;text;t2_171etn;False;False;[];;Not gonna lie, your comment got me to listen it in that perspective and can see why you said that. It does sound a bit sinister in the middle part.;False;False;;;;1610489787;;False;{};gj1r3kn;False;t3_kujurp;False;True;t1_gizegia;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj1r3kn/;1610554762;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;Next week's episode will tell us more I think. If it can maintain 20k+ or even exceed the episode 5 score I think we'll be in for a once-in-a-decade season where everything just snowballs and builds every week, at which point 30k might be on the table. It helps that the material for the last three episodes will be the peak of the season, I wouldn't write off 35k for the finale to put the discussion thread at #1 all-time.;False;False;;;;1610490553;;False;{};gj1spxq;False;t3_kujurp;False;False;t1_gj1ppc2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj1spxq/;1610555939;4;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;"Holy dumb comment batman. - ->Anyone with a brain knows the USA just bombed the shit out of japan to showcase they had atomic bombs in their hands ready to use. - -Again, holy dumb comment batman. Did you think about what you typed, even a little? - -In the unlikely event that you learn to read at some point, [here's some historians discussing the decision to drop the bomb](https://www.historyextra.com/period/second-world-war/atomic-bomb-hiroshima-nagasaki-justified-us-debate-bombs-death-toll-japan-how-many-died-nuclear/). The one you reduced to ""to showcase they had it lol"". - -Fucking people pulling out the ""apologist"" card at the slightest discussion about a controversial topic. Blight of the earth.";False;False;;;;1610490956;;False;{};gj1tjym;False;t3_kujurp;False;True;t1_gj0qzcu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj1tjym/;1610556532;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DJ_AW03;;;[];;;;text;t2_6a2u9w9l;False;False;[];;I think its very likely that next episode will reach 20k, not sure if it will break this episode's record tho. That's actually insane that we're able to say things like this now lol.;False;False;;;;1610491368;;False;{};gj1ue8a;False;t3_kujurp;False;False;t1_gj1spxq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj1ue8a/;1610557131;4;True;False;anime;t5_2qh22;;0;[]; -[];;;viece;;;[];;;;text;t2_48iz8;False;False;[];;has surpassed FMA brotherhood for me;False;False;;;;1610492853;;False;{};gj1xefp;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj1xefp/;1610559329;29;True;False;anime;t5_2qh22;;0;[]; -[];;;iloveacademia;;;[];;;;text;t2_3m6fzg6c;False;False;[];;When I think of cruel worlds I think of things like bier automata;False;False;;;;1610494204;;False;{};gj202rd;False;t3_kujurp;False;True;t1_gixldad;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj202rd/;1610561217;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptainPikmin;;;[];;;;text;t2_10w5w9;False;False;[];;Excellent.;False;False;;;;1610495460;;False;{};gj22hwl;False;t3_kujurp;False;True;t1_gj186ho;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj22hwl/;1610562943;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Elaego;;;[];;;;text;t2_55zd6hhb;False;False;[];;And it looks a lot like they have a fake beard (Pieck comments on the beard as well) so it probably is a woman disguised as a man.;False;False;;;;1610495738;;False;{};gj2314x;False;t3_kujurp;False;False;t1_gizyiej;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj2314x/;1610563350;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Elaego;;;[];;;;text;t2_55zd6hhb;False;False;[];;He would probably be able to transform before the roof collapses on him and Falco.;False;False;;;;1610496083;;False;{};gj23ouw;False;t3_kujurp;False;True;t1_giygppl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj23ouw/;1610563854;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atreides-42;;;[];;;;text;t2_3l5gplft;False;False;[];;"One possibility is that the walls could be double stacked with titans, or that there are titans half buried in the earth to form foundations, potentially tripling that number. - -But yeah, ""Millions"" of colossal titans just doesn't really fit what we've been shown.";False;False;;;;1610496363;;False;{};gj2480p;False;t3_kujurp;False;True;t1_givnoem;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj2480p/;1610564265;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atreides-42;;;[];;;;text;t2_3l5gplft;False;False;[];;Remember that Zeke's titans and any of the Nine titans can work at night. Sunlight only seems to be nessicary for automatic mode, once founding titan power gets involved you can do whatever.;False;False;;;;1610496451;;False;{};gj24dyb;False;t3_kujurp;False;True;t1_gixiexk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj24dyb/;1610564388;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OneirionKnight;;;[];;;;text;t2_1kghpz3x;False;False;[];;"Hey guys can we please get this to 24k? - -Thanks";False;False;;;;1610496459;;1610516824.0;{};gj24eik;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj24eik/;1610564400;15;True;False;anime;t5_2qh22;;0;[]; -[];;;OneirionKnight;;;[];;;;text;t2_1kghpz3x;False;False;[];;You're right, I'm sorry;False;False;;;;1610496523;;False;{};gj24itf;False;t3_kujurp;False;False;t1_git8lt7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj24itf/;1610564507;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atreides-42;;;[];;;;text;t2_3l5gplft;False;False;[];;"We don't know the full extent of the founding titan's power, not even close. We know it can do *wacky* shit like mind-wiping people, and Zeke, a royal blood person *without* the founding titan, can transform people at will. - -Considering that, it's very likely that the Founding Titan can control the size and shape of the titans it creates, creating whatever abnormals it wants. The only limits then are how much flesh is actually contained within the ""Paths"" and the square cube law limiting how big shit can get. - -Also remember the Royal Family *experimented*. The Ackermanns were an experiment with the paths and bloodlines, and it resulted in power completely different to the titans at first glance. There's no telling what bizzare horrifying skeletons lie in the royal closet.";False;False;;;;1610496738;;False;{};gj24x9q;False;t3_kujurp;False;True;t1_giuuzy2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj24x9q/;1610564801;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Constipated_Llama;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ConstipatedLlama;light;text;t2_8s9iu;False;False;[];;Or for a more apt comparison with what happens when he transforms, holding his thumb over a detonator;False;False;;;;1610496751;;False;{};gj24y6b;False;t3_kujurp;False;True;t1_giub3jx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj24y6b/;1610564818;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sex_files;;;[];;;;text;t2_94n6d5c6;False;False;[];;wouldnt that kill the people above him;False;False;;;;1610498154;;False;{};gj27le5;False;t3_kujurp;False;True;t1_gj23ouw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj27le5/;1610566685;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Elaego;;;[];;;;text;t2_55zd6hhb;False;False;[];;Eren's already doing that with his transformation.;False;False;;;;1610498501;;False;{};gj288vo;False;t3_kujurp;False;True;t1_gj27le5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj288vo/;1610567125;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sex_files;;;[];;;;text;t2_94n6d5c6;False;False;[];;call me crazy but 2 bombs would probably injure more people than one.;False;False;;;;1610498640;;False;{};gj28i6c;False;t3_kujurp;False;True;t1_gj288vo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj28i6c/;1610567303;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Koolaidkid13;;;[];;;;text;t2_67rrv1x9;False;False;[];;We broke the record for most commented, most upvoted, and most awarded sheesh. We just keep moving forward;False;False;;;;1610500141;;False;{};gj2ba1h;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj2ba1h/;1610569181;27;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610501709;;False;{};gj2e6n4;False;t3_kujurp;False;True;t1_gj184fz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj2e6n4/;1610571172;15;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610502322;;False;{};gj2fb0y;False;t3_kujurp;False;True;t1_giuxohr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj2fb0y/;1610571939;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Credar;;;[];;;;text;t2_e1djq;False;False;[];;"[manga spoilers](/s ""eight for most comments lol that thread is gonna be madness."")";False;False;;;;1610502526;;False;{};gj2fomg;False;t3_kujurp;False;True;t1_gj1flae;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj2fomg/;1610572205;3;True;False;anime;t5_2qh22;;0;[]; -[];;;gorby97;;;[];;;;text;t2_hxeo6;False;False;[];;I high-key think it is the tall Tybur personal guard dude.;False;False;;;;1610502529;;False;{};gj2foth;False;t3_kujurp;False;True;t1_givx1j4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj2foth/;1610572208;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rajendraac_13;;;[];;;;text;t2_2s4n5spc;False;False;[];;24k yes;False;False;;;;1610503145;;False;{};gj2gu1r;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj2gu1r/;1610573037;15;True;False;anime;t5_2qh22;;0;[]; -[];;;FoxSquall;;;[];;;;text;t2_7zof6;False;False;[];;He's the titan that just keeps on attacking on.;False;False;;;;1610504305;;False;{};gj2j06w;False;t3_kujurp;False;True;t1_gislw40;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj2j06w/;1610574658;1;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;Thank you my guy lol;False;False;;;;1610504711;;False;{};gj2jrt7;False;t3_kujurp;False;True;t1_gitpl7m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj2jrt7/;1610575201;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610512561;;False;{};gj2xr8l;False;t3_kujurp;False;True;t1_gj2gu1r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj2xr8l/;1610584884;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ILoveBrats825;;;[];;;;text;t2_442v3nn2;False;False;[];;Now kiss;False;False;;;;1610514389;;False;{};gj30lbt;False;t3_kujurp;False;True;t1_git9zjo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj30lbt/;1610586740;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ILoveBrats825;;;[];;;;text;t2_442v3nn2;False;False;[];;Hunter killer that you lmao?;False;False;;;;1610515441;;False;{};gj3248b;False;t3_kujurp;False;True;t1_giseulo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3248b/;1610587731;2;True;False;anime;t5_2qh22;;0;[]; -[];;;amandalunox1271;;;[];;;;text;t2_1r2q2uor;False;False;[];;"What do you mean? He already planned on eating her anyway. What the dude above you meant is that he knew about his wife's death after eating the Founder, so saying that he had done that for revenge doesn't make sense. - -The ""better technology"" here does not apply for Merleyans. This is all just about anti titan cannons and flying bomber stuff of the other countries which are being invaded. Marleyans have much weaker military technology due to them relying to much on the power of the Titans. Even the Marleyan dude whom Magath spoke to about those weapons in ep 1 reacted with ""dont we have some kinda flying titans?"" - -All of the Marleyans think of Eldians as demons already, knowing that those demons actually have access to millions of giant titans certainly would freak them out, which is why they would advocate war on Paradis. Willy is especially concerned about this, because he knows that if someone other than those affected by King Fritz's will is to have that kind of power, the whole world is not safe. Also he didn't do it for himself, it's for his country. He already knew full well that he would get himself killed if he declared war, if it isn't obvious enough the last episode have several character hint this, including Magath and the Asian woman.";False;False;;;;1610515714;;False;{};gj32i42;False;t3_kujurp;False;True;t1_gj05x25;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj32i42/;1610587978;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"> What do you mean? He already planned on eating her anyway. What the dude above you meant is that he knew about his wife's death after eating the Founder, so saying that he had done that for revenge doesn't make sense. - -What I'm saying that it's too huge a coincidence for him to live there just fine with his family for however many years it was before deciding to go after the King and that happened to be at the same exact time as the Shifters decided to bring down the wall and infiltrate Paradis. - -Where does it show that he only found out about his wife dying after eating the Founding Titan?";False;False;;;;1610516108;;False;{};gj331wg;False;t3_kujurp;False;True;t1_gj32i42;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj331wg/;1610588323;1;True;False;anime;t5_2qh22;;0;[]; -[];;;amandalunox1271;;;[];;;;text;t2_1r2q2uor;False;False;[];;Ohhhh okay got what you meant. These two events actually RELATE to each other, but I cannot tell you any further because it involves a major spoiler for future episodes. But if you are already a manga reader, or if you are still curious, then DM me. Also, you will know what that episode is when it comes, so don't worry about forgetting on this matter. Him knowing about Carla death after eating the founder is also a spoiler, but this has nothing to do with being the founder titan though, so don't try too hard to speculate things. Also if you are trying to look for it on the wiki page, there's also spoilers there.;False;False;;;;1610517369;;False;{};gj34rsf;False;t3_kujurp;False;True;t1_gj331wg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj34rsf/;1610589401;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mylaur;;MAL;[];;https://myanimelist.net/animelist/Mylaur;dark;text;t2_gtwu7;False;False;[];;You should install a reddit app;False;False;;;;1610521115;;False;{};gj39dwv;False;t3_kujurp;False;True;t1_gitq8eu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj39dwv/;1610592416;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CriticalGoku;;;[];;;;text;t2_mt81rwk;False;False;[];;"King Fritz has the better philosophy. - -It's more moral to let yourself be killed than commit atrocities to defend yourself and others.";False;False;;;;1610522665;;False;{};gj3b50o;False;t3_kujurp;False;True;t1_giu4ah0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3b50o/;1610593580;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TerrainIII;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TerrainIII;light;text;t2_128jjr;False;False;[];;I’m using the Reddit official app.;False;False;;;;1610528100;;False;{};gj3gr40;False;t3_kujurp;False;True;t1_gj39dwv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3gr40/;1610597240;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mr_1ightning;;;[];;;;text;t2_nbboscz;False;False;[];;"They literally have ghettos and force the oppressed minority that looks the same as them wear designation armbands, of course they are. - -It just seems they aren't racist in the usual sence, since black and brown people are doing just fine in political meetings, also probably gay marriage is allowed since Ymir regretted not marrying Historia (although it might be just in Paradis)";False;False;;;;1610530299;;False;{};gj3iwea;False;t3_kujurp;False;True;t1_git168m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3iwea/;1610598568;1;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;I think he just graduated from Shonen to Seinen Mc;False;False;;;;1610530928;;False;{};gj3ji0x;False;t3_kujurp;False;True;t1_gisl1jx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3ji0x/;1610598942;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mr_1ightning;;;[];;;;text;t2_nbboscz;False;False;[];;"The king wouldn't fight, the founder being stolen by someone was the worst case scenario for Marley - -*""Why did the coordinate have to fall into the hands of the worst person imaginable?! I can say without a doubt, the one person in the world I wouldn't want to have it is you Eren""* - --Reiner, in season 2 episode 12 when Eren controlled mindless titans";False;False;;;;1610531201;;False;{};gj3jrn3;False;t3_kujurp;False;True;t1_givh7ih;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3jrn3/;1610599105;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mr_1ightning;;;[];;;;text;t2_nbboscz;False;False;[];;Explained it above;False;False;;;;1610531275;;False;{};gj3ju6q;False;t3_kujurp;False;True;t1_giw0crn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3ju6q/;1610599147;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mr_1ightning;;;[];;;;text;t2_nbboscz;False;False;[];;"They don't know he needs a royal blood titan/shifter for that. From Reiner's perspective he just suddenly started using the coordinate at the end of season 2, as if he doesn't need any assistance. - -Paradis doesn't know about royal blood touch thing at all, Eren kept it a secret because he was afraid they'd try to make Historia a shifter";False;False;;;;1610531611;;False;{};gj3k5ve;False;t3_kujurp;False;True;t1_gisuhmp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3k5ve/;1610599345;1;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;Well the whole world was already against his people so might as well retaliate.;False;False;;;;1610532062;;False;{};gj3klp6;False;t3_kujurp;False;True;t1_giutv35;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3klp6/;1610599606;1;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;"Well those fellow Eldians supported the massacre of an island full of fellow Eldians and labelled them as ""devils"" so Eren is not fighting for Eldians he is fighting for Paradisians.";False;False;;;;1610532159;;False;{};gj3kp35;False;t3_kujurp;False;True;t1_giulcss;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3kp35/;1610599665;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mr_1ightning;;;[];;;;text;t2_nbboscz;False;False;[];;"If there was a canonical size of the walls written anywhere, Isayama was way off. You can see [""satellite"" view](https://qph.fs.quoracdn.net/main-qimg-a40b7f669751bb82ed9f4da60b17f4e1.webp) of the walls on one of the lore information pages in the early manga chapters and you can clearly see that the walls aren't that large when compared to the cities inside (keep in mind, cities like Shiganshina are probably smaller than Manhattan island) - -Also Paradis is supposed to be Madagascar since the world map is just real world mirrored and turned upside down";False;False;;;;1610532289;;1610532510.0;{};gj3ktm6;False;t3_kujurp;False;True;t1_giu6p63;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3ktm6/;1610599741;2;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;"Well in the previous episodes they were mentioning that ships sent to Paradis did not return implying that the ships were ambushed by Eren's group so it points to the fact that Eren would have still went through with the plan it's just speculation though. - -Also the fact that it was all prepared meticulously with holding hostages and a pre-cut hand indicates that he is going to transform once the speech is over however he must have hesitated when Willy stated that he was born into this world but strengthened his resolve and followed through with it.";False;False;;;;1610532468;;False;{};gj3kzsj;False;t3_kujurp;False;True;t1_giyjnnc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3kzsj/;1610599844;1;True;False;anime;t5_2qh22;;0;[]; -[];;;uchihasasuke5;;;[];;;dark;text;t2_5qt26p57;False;False;[];;His people are the inhabitants of Paradis;False;False;;;;1610532619;;False;{};gj3l524;False;t3_kujurp;False;True;t1_gity2km;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3l524/;1610599930;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mr_1ightning;;;[];;;;text;t2_nbboscz;False;False;[];;*because canon ship*;False;False;;;;1610532697;;False;{};gj3l7ql;False;t3_kujurp;False;True;t1_gisif8n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3l7ql/;1610599975;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zairaner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/zairaner;light;text;t2_166xh0;False;False;[];;"Isn't him [quoting eren](https://www.youtube.com/watch?v=fa8M5CKsIjg&t=1m25s) the more obvious reference, especially since this was one of the climaxes of season 1?";False;False;;;;1610533145;;False;{};gj3ln46;False;t3_kujurp;False;True;t1_gisst1c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3ln46/;1610600230;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mr_1ightning;;;[];;;;text;t2_nbboscz;False;False;[];;Her commander allowed that to happen so...;False;False;;;;1610533545;;False;{};gj3m0xl;False;t3_kujurp;False;True;t1_giunuyo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3m0xl/;1610600457;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mr_1ightning;;;[];;;;text;t2_nbboscz;False;False;[];;"Idk if you're being serious but just in case - -#no.";False;False;;;;1610533945;;False;{};gj3mesk;False;t3_kujurp;False;True;t1_giytn83;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3mesk/;1610600691;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mr_1ightning;;;[];;;;text;t2_nbboscz;False;False;[];;"Funny OST memes - -. -. - -And bullying the director on twitter to the point that he has closed his account";False;False;;;;1610534029;;False;{};gj3mhqj;False;t3_kujurp;False;True;t1_giuh3dg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3mhqj/;1610600741;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;"24.1k jesus christ - - -aot final season episode 5, you ll be remembered";False;False;;;;1610534227;;False;{};gj3mok8;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3mok8/;1610600855;10;True;False;anime;t5_2qh22;;0;[]; -[];;;ursasmash;;;[];;;;text;t2_1720hx;False;False;[];;I was scrolling through comments trying to find the answer to this... I also thought it was Armin and was wondering if anyone else was “hidden” around town.;False;False;;;;1610534353;;False;{};gj3msut;False;t3_kujurp;False;True;t1_gizjn1u;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3msut/;1610600929;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Brex_667;;;[];;;;text;t2_2oml643o;False;False;[];;The big reason I think it's armin is because he has blond hair that looks like with a bowl cut and pieck mentioned that she thought she saw him before;False;False;;;;1610534620;;False;{};gj3n26v;False;t3_kujurp;False;True;t1_gj3msut;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3n26v/;1610601089;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RX0Invincible;;;[];;;;text;t2_10wg4b;False;False;[];;My comment aged like milk.... Thought it was just a select few in this sub. Didn't think it was widespread on twitter too;False;False;;;;1610535429;;False;{};gj3nv4b;False;t3_kujurp;False;True;t1_gj3mhqj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3nv4b/;1610601569;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yukihirou_Vi_Ghania;;;[];;;;text;t2_9093txh1;False;False;[];;As expected from the one that ordered suicide bombing Eldian troopers...;False;False;;;;1610537292;;False;{};gj3ps8k;False;t3_kujurp;False;True;t1_gj3m0xl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3ps8k/;1610602683;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Stonewindow;;;[];;;;text;t2_13fxov;False;False;[];;"Fuck morals, kill or be killed. That said I'd argue it's more moral to defend yourself and your people, instead off mindlessly adhering to your own ""moral code"" though.";False;False;;;;1610537679;;1610537979.0;{};gj3q6zp;False;t3_kujurp;False;True;t1_gj3b50o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3q6zp/;1610602971;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610541744;;False;{};gj3uwpk;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3uwpk/;1610605749;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CO_ORDINATE;;;[];;;;text;t2_kf9hyuw;False;False;[];;he's 19 rn;False;False;;;;1610543822;;False;{};gj3xr4k;False;t3_kujurp;False;True;t1_giy9gya;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3xr4k/;1610607433;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Epsilight;;;[];;;;text;t2_pb39f;False;False;[];;Use your mind child, if marley didn't send the 4 to steal the founding titan, nothing of this sort would ever happen. They signed their own death warrant. Consequences exist in the real world.;False;False;;;;1610544121;;False;{};gj3y733;False;t3_kujurp;False;True;t1_giujzzv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj3y733/;1610607696;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rakall12;;;[];;;;text;t2_7u1eq42;False;False;[];;"How is it the shortest war? - -Willy just united the world and declared war and convinced everyone they must be destroyed. - -Eren killing him just intensified it.";False;False;;;;1610545682;;False;{};gj40nyl;False;t3_kujurp;False;False;t1_git1kpm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj40nyl/;1610609070;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cadian_105th;;;[];;;;text;t2_4oggtzwi;False;False;[];;What about the other people within the walls? the ones who have no idea of those past sins, is it moral to let them die too?;False;False;;;;1610546246;;False;{};gj41m86;False;t3_kujurp;False;False;t1_gj3b50o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj41m86/;1610609593;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SSB_GoGeta;;;[];;;;text;t2_768ece;False;False;[];;Honestly the size of the walls is a bit of a plot hole. Like, why would you even need any more land if the size of your country is as big as France? Especially when the insides of the walls are usable and dangerous monsters lerk outside which you cant easily take out. And horses are definitely not adequate for traveling around that big of an area. But its not a big deal and doesnt detract from the rest of the story.;False;False;;;;1610546580;;False;{};gj426qd;False;t3_kujurp;False;False;t1_gixdqgq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj426qd/;1610609905;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rakall12;;;[];;;;text;t2_7u1eq42;False;False;[];;What do you think happened after 9/11?;False;False;;;;1610546978;;False;{};gj42v7s;False;t3_kujurp;False;True;t1_git2f7p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj42v7s/;1610610277;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;"And if the Eldian Empire hadn't massacred humanity none of this would've happened either. Both sides are guilty at this point and are deserving of this ""consequences"". If they both keep persuing justice for their own people they'll just keep fucking each other up forever with no one gaining anything ever, just piling up the corpses higher and higher.";False;False;;;;1610547165;;False;{};gj436zd;False;t3_kujurp;False;True;t1_gj3y733;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj436zd/;1610610459;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Epsilight;;;[];;;;text;t2_pb39f;False;False;[];;Taking revenge of the distant past? They fucking achieved peace omg.;False;False;;;;1610548253;;False;{};gj4569r;False;t3_kujurp;False;True;t1_gj436zd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj4569r/;1610611546;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;"But the general public doesn't have that information. And even with it, the only one who achieved peace was the King and not everyone agreed with him, both inside and outside Paradis. - -Thinking about it further, Willy and the King called it peace but it's actually hardly that. A peace treaty requires that both parties talk face to face and decide the conditions for the cessation of hostilities as well as vowing to keep it that way for as long as possible. - -The King didn't do that, he straight up surrendered out of his own guilt and on top of that kept that fact a secret from most everyone else.";False;False;;;;1610550114;;False;{};gj48qst;False;t3_kujurp;False;True;t1_gj4569r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj48qst/;1610613506;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeGirlMariam;;;[];;;;text;t2_5k8efnfk;False;False;[];;24k babyyyyyy;False;False;;;;1610550859;;False;{};gj4a9oc;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj4a9oc/;1610614332;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Epsilight;;;[];;;;text;t2_pb39f;False;False;[];;Willy is the one who controls marley and knew of it all. He fucked up and the world deserves to die since they want to erase all eldians. The rest of the world treats eldians much worse than marley. Eldians can either fight or die. Simple as that.;False;False;;;;1610551561;;False;{};gj4bpbk;False;t3_kujurp;False;True;t1_gj48qst;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj4bpbk/;1610615101;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YourW1feandK1ds;;;[];;;;text;t2_jq9ti;False;False;[];;I don't that's correct. The whole point of the conversation between Reiner and Eren is that it's not personal. Eren was just doing what he had to do. He doesn't hold any animosity towards Reiner because he understands Reiner was also just doing what he had to do. They're both trying to save the world.;False;False;;;;1610551804;;False;{};gj4c7fl;False;t3_kujurp;False;True;t1_gj06d8d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj4c7fl/;1610615374;0;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;"You've missed the point of the whole story if you think _anyone_ is deserving of death. S3P1 especially, was dedicated to forwarding the idea that everyone deserves to live and to be free, simply because they were born. - -Besides, the same logic that you're using to justify genocide also applies to the rest of the world if they're attacked by a force hell bent on killing or enslaving them all. It's as you put it, they can either fight or die. They have no reason to sit idly and wait for the guillotine to drop. - -Everyone wants to live. If you raise the stakes to ""kill or be killed"" then any moral debate concerning who deserves to loose is completely pointless and invalid. When you reach this point, the only true reason for the bloodshed is preservation of your own side.";False;False;;;;1610552021;;False;{};gj4cnuq;False;t3_kujurp;False;True;t1_gj4bpbk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj4cnuq/;1610615616;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Epsilight;;;[];;;;text;t2_pb39f;False;False;[];;"> Everyone wants to live. If you raise the stakes to ""kill or be killed"" then any moral debate concerning who deserves to loose is completely pointless and invalid. When you reach this point, the only true reason for the bloodshed is preservation of your own side. - -Thus eren is based, he realised the truth of the world, morality and ethics are backed by violence nothing else.";False;False;;;;1610553326;;False;{};gj4fe28;False;t3_kujurp;False;True;t1_gj4cnuq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj4fe28/;1610617093;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;_Only_ if you reach that point. And if you do really you have already lost the battle. Which unfortunately might be the case here but that shouldn't stop you from realizing how fucked the situation is, condemning it and thinking of alternatives.;False;False;;;;1610553690;;False;{};gj4g5on;False;t3_kujurp;False;True;t1_gj4fe28;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj4g5on/;1610617511;1;True;False;anime;t5_2qh22;;0;[]; -[];;;McDeath;;;[];;;;text;t2_3a315;False;False;[];;I feel you, my heart was just pounding the whole time.;False;False;;;;1610556471;;False;{};gj4m8bp;False;t3_kujurp;False;False;t1_gisv5pt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj4m8bp/;1610620887;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Epsilight;;;[];;;;text;t2_pb39f;False;False;[];;I think its based to just genocide the people ypu can't see eye to eye with, peace is a meme, most humans are animals that can't be reasoned with.;False;False;;;;1610560204;;False;{};gj4ume6;False;t3_kujurp;False;True;t1_gj4g5on;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj4ume6/;1610625680;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;"That's just wrong. If humans were truly unable of cooperation on a large scale we wouldn't have built civilizations as we have to begin with. What the meme really is here is the myth perpetrated by popular media that without the illusion of social order humanity devolves into self-serving beasts. But real life evidence suggests that the opposite tendency is true. In situations like natural disasters for example, when government response is delayed or non existent, the general populace are perfectly able to organize their own rescue and recovery operations and carry them out effectively. Sure, there's always some looting and some assholes who only care about getting out of there by any means possible, but they're small exceptions. - -Overall cooperation and peace are entirely possible. Most people want the exact same thing: a happy long life. You don't even need to see eye-to-eye with everyone to have an agreement, you just need to convince them that your interests and their's align.";False;False;;;;1610563251;;False;{};gj51jcq;False;t3_kujurp;False;True;t1_gj4ume6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj51jcq/;1610630044;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TooMuchR;;;[];;;;text;t2_7v82gg1j;False;False;[];;is it just me or is the animation is just so terrible. i mean like for such a great anime, it deserves so much better. and that gutted feeling makes it so hard to enjoy;False;True;;comment score below threshold;;1610563624;;False;{};gj52e2p;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj52e2p/;1610630595;-14;True;False;anime;t5_2qh22;;0;[]; -[];;;MartinaS90;;;[];;;;text;t2_13onma;False;False;[];;Marley would totally kill Historia anyway, or worse, kidnap her and use her as a royal breeding machine.;False;False;;;;1610563709;;False;{};gj52l2b;False;t3_kujurp;False;True;t1_giz7f1b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj52l2b/;1610630723;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610563731;;False;{};gj52mtl;False;t3_kujurp;False;True;t1_gj2fomg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj52mtl/;1610630755;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dare555;;;[];;;;text;t2_6k3zwl8o;False;False;[];;I so hope he gets eaten and doesn't get away with some titan transformation...?;False;False;;;;1610563809;;False;{};gj52t7n;False;t3_kujurp;False;True;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj52t7n/;1610630874;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JuicyDragonCat;;;[];;;;text;t2_45tgc23z;False;False;[];;Historia isn't the head of state btw, shes just a figurehead leader. Paradis's supreme leader is Darius Zackley;False;False;;;;1610563831;;False;{};gj52v8b;False;t3_kujurp;False;True;t1_gj52l2b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj52v8b/;1610630918;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dare555;;;[];;;;text;t2_6k3zwl8o;False;False;[];;Kill Reiner Eren kill him !! He even asked for it himself... Nobody deserves to die more then that fucker who has countless of innocent blood on his hands;False;False;;;;1610563895;;False;{};gj530lb;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj530lb/;1610631017;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Dare555;;;[];;;;text;t2_6k3zwl8o;False;False;[];;Should have killed Reiner right there right now.... He even asked for it himself... Nobody deserves to die more then that fucker who has countless of innocent blood on his hands;False;False;;;;1610564056;;False;{};gj53dac;False;t3_kujurp;False;True;t1_giscjc4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj53dac/;1610631272;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dare555;;;[];;;;text;t2_6k3zwl8o;False;False;[];;Should have started with Reiner end that bastard killer right here right now aaah !!! Now it seems Reiner will survive fuck;False;False;;;;1610564132;;False;{};gj53jjm;False;t3_kujurp;False;True;t1_gisadib;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj53jjm/;1610631412;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Dare555;;;[];;;;text;t2_6k3zwl8o;False;False;[];;Eren is MJ confirmed;False;False;;;;1610564158;;False;{};gj53lsj;False;t3_kujurp;False;True;t1_gisar3t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj53lsj/;1610631462;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dare555;;;[];;;;text;t2_6k3zwl8o;False;False;[];;Should have done it...end fucking Reiner he deserves it;False;False;;;;1610564273;;False;{};gj53vbl;False;t3_kujurp;False;True;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj53vbl/;1610631678;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dare555;;;[];;;;text;t2_6k3zwl8o;False;False;[];;oooh is he killing her ? that would be one way to get revenge tho i dont like it ..should have just killed Reiner right there right now;False;False;;;;1610564446;;False;{};gj549j8;False;t3_kujurp;False;True;t1_gisax5b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj549j8/;1610631935;2;True;False;anime;t5_2qh22;;0;[]; -[];;;woancue;;;[];;;;text;t2_121itc;False;False;[];;nah reiner is great;False;False;;;;1610564514;;False;{};gj54f3e;False;t3_kujurp;False;False;t1_gj53jjm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj54f3e/;1610632036;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MartinaS90;;;[];;;;text;t2_13onma;False;False;[];;You are talking about the ambassadors cheering Willy's speech. They were talking about the actual powerless civilians in the building above the stage, the one Eren destroyed. Those people were probably not celebrating anything.;False;False;;;;1610565080;;False;{};gj55oug;False;t3_kujurp;False;True;t1_giusqpj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj55oug/;1610632887;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dare555;;;[];;;;text;t2_6k3zwl8o;False;False;[];;"nah Reiner is a killer that has blood of thousands innocent on his hands including Eren mom and ""comrades"" from scout squad. He killed so many that there is no redemption for him . Thats like saying irl "" Himmler is great""";False;False;;;;1610565102;;False;{};gj55ql3;False;t3_kujurp;False;True;t1_gj54f3e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj55ql3/;1610632921;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Epsilight;;;[];;;;text;t2_pb39f;False;False;[];;*Yawn*;False;False;;;;1610566505;;False;{};gj58y94;False;t3_kujurp;False;True;t1_gj51jcq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj58y94/;1610635171;0;True;False;anime;t5_2qh22;;0;[]; -[];;;_dsmith23;;;[];;;;text;t2_q9zbacg;False;False;[];;Uhm, what are you expecting in a dialogue heavy episode ? Even so, i've seen nothing wrong with it. Tell me, what exactly looks terrible ?;False;False;;;;1610566909;;False;{};gj59upb;False;t3_kujurp;False;False;t1_gj52e2p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj59upb/;1610635808;15;True;False;anime;t5_2qh22;;0;[]; -[];;;woancue;;;[];;;;text;t2_121itc;False;False;[];;you better be saying the same about eren and the 104th in the next few episodes then;False;False;;;;1610567164;;False;{};gj5af9c;False;t3_kujurp;False;True;t1_gj55ql3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj5af9c/;1610636218;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ursasmash;;;[];;;;text;t2_1720hx;False;False;[];;It has to be him. Guess we’ll find out next episode? It wouldn’t make a whole lot of sense for Eren to be the only Titan on his crew to be there. I’ll come back to this comment on Sunday, haha.;False;False;;;;1610568482;;False;{};gj5devf;False;t3_kujurp;False;True;t1_gj3n26v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj5devf/;1610638349;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MartinaS90;;;[];;;;text;t2_13onma;False;False;[];;Apparently next episode will be directed by the same director that directed episode 2, the one that used rotoscoping.;False;False;;;;1610569331;;False;{};gj5fadw;False;t3_kujurp;False;True;t1_gixfws7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj5fadw/;1610639650;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheMightyKutKu;;;[];;;;text;t2_z03n2;False;False;[];;really? Wikipedia gives Atsushi Tsukasa and Takahiro Kaneko for the next episode whcih don't seem to have directed any of the previous episodes (which were each directed by somebody different), now who knows if it matters since we don't know how MAPPA works internally.;False;False;;;;1610569943;;False;{};gj5gnbl;False;t3_kujurp;False;True;t1_gj5fadw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj5gnbl/;1610640619;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MartinaS90;;;[];;;;text;t2_13onma;False;False;[];;He is one of the animation directors: Dae Yeol Park, that's the guy responsible for the rotoscoping;False;False;;;;1610572072;;False;{};gj5lehx;False;t3_kujurp;False;True;t1_gj5gnbl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj5lehx/;1610643952;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610572441;;False;{};gj5m92t;False;t3_kujurp;False;True;t1_gisvy49;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj5m92t/;1610644541;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheMightyKutKu;;;[];;;;text;t2_z03n2;False;False;[];;Ah thanks! Interesting, so he's working on the next episode? Hope he 's going to regularly work on this season.;False;False;;;;1610572541;;False;{};gj5mhif;False;t3_kujurp;False;False;t1_gj5lehx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj5mhif/;1610644709;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fiftey;;;[];;;;text;t2_ixf7u;False;False;[];;You forget a lot of spoiler with no context;False;False;;;;1610576479;;False;{};gj5vk12;False;t3_kujurp;False;True;t1_giuk2ns;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj5vk12/;1610651215;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fiftey;;;[];;;;text;t2_ixf7u;False;False;[];;I read the manga until cha. 105 or so because I really couldn't wait anymore but I really wish I hadn't :(;False;False;;;;1610576886;;False;{};gj5wg49;False;t3_kujurp;False;True;t1_gisamk0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj5wg49/;1610651831;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cosmic_Shari;;;[];;;;text;t2_901f4nrm;False;False;[];;"This is why they said this is a morally grey series now. Obviously we think Marley is wrong and if you think Eren's actions are morally wrong as well then that means you think neither side is right. Which is the point, nobody is ""right"".";False;False;;;;1610577670;;False;{};gj5y5c6;False;t3_kujurp;False;True;t1_giuq9ur;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj5y5c6/;1610653012;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ya it reminds me of tokyo ghoul manga, that's one of the best morally grey series I've ever seen;False;False;;;;1610578118;;False;{};gj5z42v;False;t3_kujurp;False;True;t1_gj5y5c6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj5z42v/;1610653730;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;I think people just trying to live their lives without hurting other innocent people are right.;False;False;;;;1610578774;;False;{};gj60i7d;False;t3_kujurp;False;True;t1_gj5y5c6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj60i7d/;1610654712;1;True;False;anime;t5_2qh22;;0;[]; -[];;;einsteinwasdumb;;;[];;;;text;t2_8htvzhci;False;False;[];;"Guys seriously tho, if Eldians are titan blood, then why cant Ackermanns become titans? -Eren looked nice";False;False;;;;1610582177;;False;{};gj67fmx;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj67fmx/;1610659591;2;True;False;anime;t5_2qh22;;0;[]; -[];;;einsteinwasdumb;;;[];;;;text;t2_8htvzhci;False;False;[];;Kakashi Senpai;False;False;;;;1610582254;;False;{};gj67l65;False;t3_kujurp;False;True;t1_gisaoxm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj67l65/;1610659692;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610582701;;False;{};gj68h2g;False;t3_kujurp;False;True;t1_gj67fmx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj68h2g/;1610660308;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_Lost_Sin_;;;[];;;;text;t2_6q7mby4d;False;False;[];;"Holy shit what a dumb fucking comment lmao. - -Ignoring all of the bad history, and ignoring your ignorance of the show's many themes. - -**A show having a theme does not mean you have to agree with it**. **Nor does it mean the theme is ""moral"" or ""right"", just because it's a good story.**";False;False;;;;1610583039;;False;{};gj6955z;False;t3_kujurp;False;True;t1_gj0qzcu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj6955z/;1610660791;0;False;False;anime;t5_2qh22;;0;[]; -[];;;Xodiak0709;;;[];;;;text;t2_yt9pd;False;False;[];;Are they GOT S8’ing this. I feel like a lot of stuff/info is getting skipped. Every episode I’m like what when did that happen;False;True;;comment score below threshold;;1610583055;;False;{};gj6969t;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj6969t/;1610660813;-18;True;False;anime;t5_2qh22;;0;[]; -[];;;Cersei505;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_14gmny;False;False;[];;Yes im the one not getting the story and its themes, not the guy who thinks that said themes arent objectivelly good or moral lmfao.;False;False;;;;1610583198;;False;{};gj69gi7;False;t3_kujurp;False;True;t1_gj6955z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj69gi7/;1610661015;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cosmic_Shari;;;[];;;;text;t2_901f4nrm;False;False;[];;Ngl I lost a ton of interest in the series after S2. I have heard the manga was good though, should I check it out?;False;False;;;;1610584740;;False;{};gj6ci7e;False;t3_kujurp;False;True;t1_gj5z42v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj6ci7e/;1610663131;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cosmic_Shari;;;[];;;;text;t2_901f4nrm;False;False;[];;And you're completely right from a moral standpoint. In a perfect world neither side would be murdering each other but they are. There are no good guys, just bad guys. That's the point.;False;False;;;;1610584793;;False;{};gj6cm08;False;t3_kujurp;False;True;t1_gj60i7d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj6cm08/;1610663198;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;True;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610585815;moderator;False;{};gj6emon;False;t3_kujurp;False;False;t1_gj68h2g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj6emon/;1610664584;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Ya, the manga is a masterpiece, the anime literally butchered it soooooo hard. Read the manga from chapter 1 of tokyo ghoul and then read Tokyo ghoul re. I definitely recommend reading it from the start cox where the anime is faithful they cut out so much good character development.;False;False;;;;1610588199;;False;{};gj6j82x;False;t3_kujurp;False;True;t1_gj6ci7e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj6j82x/;1610667653;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dangerous_Ad_1872;;;[];;;;text;t2_941gqdfn;False;False;[];;"I don't know about respecting or liking, but I think he definitely understands. I guess that was the point of the whole speech. ""I understand why you did what you did, so now you understand why I'm gonna do the same thing"".";False;False;;;;1610588357;;False;{};gj6jj18;False;t3_kujurp;False;True;t1_giwwh05;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj6jj18/;1610667845;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dangerous_Ad_1872;;;[];;;;text;t2_941gqdfn;False;False;[];;"""Hit me first pussy""";False;False;;;;1610588463;;False;{};gj6jqds;False;t3_kujurp;False;True;t1_gisz87c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj6jqds/;1610667972;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dangerous_Ad_1872;;;[];;;;text;t2_941gqdfn;False;False;[];;I'm pretty sure he does need to injure himself at some point, but it can be well in advance. It's why annie had that stabby ring I think.;False;False;;;;1610588758;;False;{};gj6kb4i;False;t3_kujurp;False;True;t1_giw26yn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj6kb4i/;1610668363;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dangerous_Ad_1872;;;[];;;;text;t2_941gqdfn;False;False;[];;But it says the walls and towns aren't supposed to be accurate/to scale;False;False;;;;1610589176;;False;{};gj6l4jd;False;t3_kujurp;False;True;t1_gj3ktm6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj6l4jd/;1610668872;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dangerous_Ad_1872;;;[];;;;text;t2_941gqdfn;False;False;[];;I see it the same way I see how the US nuked japan. It's fucked up but they're at war. Eren and the people in paradis didn't start it but he sure as hell is gonna end it.;False;False;;;;1610589287;;False;{};gj6lcd7;False;t3_kujurp;False;True;t1_gischn4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj6lcd7/;1610669010;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dangerous_Ad_1872;;;[];;;;text;t2_941gqdfn;False;False;[];;Do you knoe why zeke can control pure titans too? He's got royal blood too but I thought thag was only something the coordinate titan could do.;False;False;;;;1610589453;;False;{};gj6lnua;False;t3_kujurp;False;True;t1_gj3k5ve;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj6lnua/;1610669207;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dangerous_Ad_1872;;;[];;;;text;t2_941gqdfn;False;False;[];;I don't know man, AoT has been a masterpiece since at least season 2 imo.;False;False;;;;1610589688;;False;{};gj6m48r;False;t3_kujurp;False;True;t1_gitr4f8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj6m48r/;1610669486;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dangerous_Ad_1872;;;[];;;;text;t2_941gqdfn;False;False;[];;Not that I agree with them, but to be fair, technically most of that development happened during a time skip.;False;False;;;;1610590301;;False;{};gj6naol;False;t3_kujurp;False;True;t1_gitjrvb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj6naol/;1610670201;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Dangerous_Ad_1872;;;[];;;;text;t2_941gqdfn;False;False;[];;I think it's fucked up but necessary. They're at war, eren is just trying to end it without risking his people.;False;False;;;;1610590688;;False;{};gj6o1hz;False;t3_kujurp;False;True;t1_gisurtq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj6o1hz/;1610670647;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dangerous_Ad_1872;;;[];;;;text;t2_941gqdfn;False;False;[];;I know you don't have bad intentions but this kind of shit is indirectly a spoiler. It's harder to be mind blown by something when we know something is supposed to blow our minds.;False;False;;;;1610590801;;False;{};gj6o944;False;t3_kujurp;False;True;t1_git2zyb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj6o944/;1610670778;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dangerous_Ad_1872;;;[];;;;text;t2_941gqdfn;False;False;[];;I think he went in with the assumption that he would have to transform and fight, but I think if willy spoke about peace he night have changed his mind.;False;False;;;;1610590891;;False;{};gj6of68;False;t3_kujurp;False;True;t1_giwv9jp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj6of68/;1610670885;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dangerous_Ad_1872;;;[];;;;text;t2_941gqdfn;False;False;[];;Imma go with 25-26k for this and easily 30k+ for the finale;False;False;;;;1610591220;;False;{};gj6p1b4;False;t3_kujurp;False;True;t1_givljnm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj6p1b4/;1610671260;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Lost_Sin_;;;[];;;;text;t2_6q7mby4d;False;False;[];;Didn't Eren just bust through a building of Eldians like it was nothing? I feel like they just want Marley destroyed.;False;False;;;;1610600755;;False;{};gj75orp;False;t3_kujurp;False;True;t1_givnu2l;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj75orp/;1610681846;2;False;False;anime;t5_2qh22;;0;[]; -[];;;noname6500;;;[];;;;text;t2_g3rbt;False;False;[];;"that completely went over my head. lol - -on one hand he was contemplating about people in paradis and marley being the same, about who the actual enemy is, but on the other hand he did just kill a bunch of innocent people. and those were Eldians even. - -maybe you're right.";False;False;;;;1610601413;;False;{};gj76oxd;False;t3_kujurp;False;True;t1_gj75orp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj76oxd/;1610682479;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Lost_Sin_;;;[];;;;text;t2_6q7mby4d;False;False;[];;"And people can have conflicting opinions and talk about that with text lmao. - -Is this somehow a new concept to you? Are you just going to keep describing normal human interaction and act like the next step is somehow the odd one out?";False;False;;;;1610604066;;False;{};gj7agu0;False;t3_kujurp;False;False;t1_giu9ciq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj7agu0/;1610684903;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Mr_1ightning;;;[];;;;text;t2_nbboscz;False;False;[];;It is his royal blood, it gives him a weaker link to the coordinate. It's only the titans with his spinal fluid injected in them prior to transforming though;False;False;;;;1610606533;;False;{};gj7dlcm;False;t3_kujurp;False;True;t1_gj6lnua;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj7dlcm/;1610686806;2;True;False;anime;t5_2qh22;;0;[]; -[];;;5iftyy;;;[];;;;text;t2_47wboxio;False;False;[];;Bruh i said i hated her not that she wasn’t written well 😭;False;False;;;;1610607575;;False;{};gj7etaf;False;t3_kujurp;False;True;t1_giu2bsa;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj7etaf/;1610687564;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;can we get this to 25k and make history pls?;False;False;;;;1610607776;;False;{};gj7f1iq;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj7f1iq/;1610687704;9;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;it s already made history tho lmao, we just keep moving forward;False;False;;;;1610607803;;False;{};gj7f2m6;False;t3_kujurp;False;False;t1_gj7f1iq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj7f2m6/;1610687727;10;True;False;anime;t5_2qh22;;0;[]; -[];;;arnav1311;;;[];;;;text;t2_81mzmva;False;False;[];;I think it's a you problem. Maybe rewatch the show. Not once did 99.9999% people watching this thought when did this happen.;False;False;;;;1610608193;;False;{};gj7fige;False;t3_kujurp;False;False;t1_gj6969t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj7fige/;1610688013;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazzlike_Razzmatazz;;;[];;;;text;t2_5ybf9h66;False;False;[];;You think all ppl want to Talk about conflicting opinions with text some might don't have that much time and don't even bother to write comments ..what do you think people like this should do if they want to show Their disagreement without writing comments.;False;False;;;;1610609500;;False;{};gj7gy2e;False;t3_kujurp;False;True;t1_gj7agu0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj7gy2e/;1610688938;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FruitJuicante;;;[];;;;text;t2_9ezln;False;False;[];;Lol. It's the best anime ever made IMHO. Guess there's always someone.;False;False;;;;1610612468;;False;{};gj7k250;False;t3_kujurp;False;False;t1_gj6969t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj7k250/;1610691195;8;True;False;anime;t5_2qh22;;0;[]; -[];;;FruitJuicante;;;[];;;;text;t2_9ezln;False;False;[];;What do you consider good looking anime? This is one of the best looking animated shows I've ever seen ever.;False;False;;;;1610612513;;False;{};gj7k3pf;False;t3_kujurp;False;False;t1_gj52e2p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj7k3pf/;1610691222;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;"It will certainly break into top 10 posts of all time before the 6 months is up. - -Fun fact - the closest episode thread to AoT in karma is Re:Zero in the 103rd place.";False;False;;;;1610618552;;False;{};gj7q1zb;False;t3_kujurp;False;False;t1_gj7f1iq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj7q1zb/;1610694801;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;"> Lowest episode karma -> 13k - -Lol this karma overflow is getting out of control.";False;False;;;;1610618771;;False;{};gj7q9hh;False;t3_kujurp;False;True;t1_gj01qjx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj7q9hh/;1610694920;1;True;False;anime;t5_2qh22;;0;[]; -[];;;toutoune134;;;[];;;;text;t2_fokbo;False;False;[];;A few scenes and dialogues were skipped, with Reiner's flashback being the most impacted, but it's nothing like GOT S8.;False;False;;;;1610620566;;False;{};gj7s0f1;False;t3_kujurp;False;False;t1_gj6969t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj7s0f1/;1610695909;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610624491;;False;{};gj7w2ip;False;t3_kujurp;False;True;t1_gj530lb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj7w2ip/;1610698188;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheXskull;;;[];;;;text;t2_x1p3l;False;False;[];;Hanji lost an eye, though... Doubt it's her;False;False;;;;1610627180;;False;{};gj7z4nc;False;t3_kujurp;False;True;t1_giszihh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj7z4nc/;1610699836;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TAR1QYT;;;[];;;;text;t2_1htz9f4y;False;False;[];;"To be fair, part of it is because Anime Gabi is less annoying. I don't know if my memory is off, but manga Gabi was a lot more annoying than that. - -The anime has done a good job with Gabi, Falco, Udo and Zophia/Sophia. Especially the latter two who are better in the anime along with Gabi.";False;False;;;;1610632942;;False;{};gj87ky8;False;t3_kujurp;False;True;t1_gisuaj4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj87ky8/;1610704459;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TAR1QYT;;;[];;;;text;t2_1htz9f4y;False;False;[];;Pretty much. What also hints at that is that Netflix Japan is apparently listing this season as S4 Part 1 IIRC.;False;False;;;;1610632976;;False;{};gj87n01;False;t3_kujurp;False;False;t1_git8xp9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj87n01/;1610704489;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TAR1QYT;;;[];;;;text;t2_1htz9f4y;False;False;[];;I unironically prefer this to the manga for this specific episode (and its respective chapters). I have problems with the others (still good) but for this one I think I enjoy the way the anime handled it better.;False;False;;;;1610633052;;False;{};gj87rol;False;t3_kujurp;False;True;t1_gisbw5o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj87rol/;1610704560;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TAR1QYT;;;[];;;;text;t2_1htz9f4y;False;False;[];;I don't even get it... Like do they know the language? Because based on the discussion, some clearly don't.;False;False;;;;1610633233;;False;{};gj882yu;False;t3_kujurp;False;True;t1_gish3qr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj882yu/;1610704728;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TAR1QYT;;;[];;;;text;t2_1htz9f4y;False;False;[];;Probably, I don't expect to like an episode more until we reach the flashbacks around 120ish.;False;False;;;;1610633337;;False;{};gj889kk;False;t3_kujurp;False;False;t1_gisjyxy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj889kk/;1610704831;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;Rewatching the episode there was a moment where they showed Impostor Soldier's eyes that I missed the first time so... yeah can't be Hanji.;False;False;;;;1610635306;;False;{};gj8bw20;False;t3_kujurp;False;True;t1_gj7z4nc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj8bw20/;1610706814;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LordThomasBlackwood;;;[];;;;text;t2_2r4s6761;False;False;[];;30%? You mean 3%;False;False;;;;1610636409;;False;{};gj8e40u;False;t3_kujurp;False;True;t1_git0jsa;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj8e40u/;1610708055;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IamDuyi;;;[];;;;text;t2_2iqmf4mn;False;False;[];;Uhh no? Lol. We're at chapter 100 right now, and the manga will end with chapter 139. So you do the math, friend;False;False;;;;1610639244;;False;{};gj8k3ni;False;t3_kujurp;False;True;t1_gj8e40u;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj8k3ni/;1610711583;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sebaz00;;;[];;;;text;t2_ndeja;False;False;[];;he did figure it out in season 3. But it meant he would have to sacrifice historia;False;False;;;;1610641155;;False;{};gj8o9mv;False;t3_kujurp;False;True;t1_giuzspl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj8o9mv/;1610714242;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Erenblade07;;;[];;;;text;t2_3x7o1z4h;False;False;[];;Bro things gets omitted and changed in the whole series not just this season . S3 part 1 skipped way too much but it was still great and the context was still there .. Season 1 plenty of things were changed e.g Eren vs Annie's fight in Stohess was LARGELY different than what was in the manga but what matters is that it was still GREAT;False;False;;;;1610641368;;False;{};gj8oqrm;False;t3_kujurp;False;True;t1_gj6969t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj8oqrm/;1610714558;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Erenblade07;;;[];;;;text;t2_3x7o1z4h;False;False;[];;Always has been better . No offense to FMAB . It's still great;False;False;;;;1610641464;;False;{};gj8oydk;False;t3_kujurp;False;False;t1_gj1xefp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj8oydk/;1610714699;4;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;Technically we don't know if they can't. All we know is that they're evidently immune to the mind wipes.;False;False;;;;1610652566;;False;{};gj9dvzs;False;t3_kujurp;False;True;t1_gj67fmx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj9dvzs/;1610732286;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRealHagriddd;;;[];;;;text;t2_9oiicorx;False;False;[];;They’re pure titans. Only 9 shifters.;False;False;;;;1610655195;;False;{};gj9jlzr;False;t3_kujurp;False;True;t1_gitnut1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj9jlzr/;1610736516;1;True;False;anime;t5_2qh22;;0;[]; -[];;;circlebust;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jamais_vu;light;text;t2_dr5zq;False;False;[];;"It's not a ""plot hole"". This term is thrown around way too much. More like ""backstory controversy"". But the actual reasons: the kingdom was structured around 3 walls, not 2, so any reduction would create pressure. And they did manage, it's not like they were about to starve without the wall. And humans *would* definitely attempt to retake the wall even if not necessary. I don't understand your objection.";False;False;;;;1610656636;;False;{};gj9n08v;False;t3_kujurp;False;False;t1_gj426qd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj9n08v/;1610738806;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Xodiak0709;;;[];;;;text;t2_yt9pd;False;False;[];;Lol the Stan fans are out! But yeah this what I meant not that it was bad but mostly that it(GoTS8) was rushed, and a lot of stuff was omitted, and lost.;False;False;;;;1610656658;;False;{};gj9n2fb;False;t3_kujurp;False;True;t1_gj8oqrm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gj9n2fb/;1610738843;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Martian_Pudding;;;[];;;;text;t2_345junqs;False;False;[];;I never really got that tbh. Like it worked with titan-Dina, but why did he immediately assume that it would only work with a royal blood titan and not with a royal blood normal person? I don't recall that he ever tried doing it with historia or any of the other royals.;False;False;;;;1610662701;;False;{};gja1si4;False;t3_kujurp;False;True;t1_gj8o9mv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gja1si4/;1610748792;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sebaz00;;;[];;;;text;t2_ndeja;False;False;[];;after rod reiss transformed he tried controlling the mindless titan he turned into whilst historia was touching his back I believe, to no effect. So as far as we know it can only be used with someone who has royal blood turned titan.;False;False;;;;1610662868;;False;{};gja24u4;False;t3_kujurp;False;True;t1_gja1si4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gja24u4/;1610749041;1;True;False;anime;t5_2qh22;;0;[]; -[];;;youssef369;;;[];;;;text;t2_3i74zdcl;False;False;[];;"is eren eye really blind? - -because even in his titan form his eye still white";False;False;;;;1610664853;;False;{};gja65gm;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gja65gm/;1610751781;2;True;False;anime;t5_2qh22;;0;[]; -[];;;begentlewithmyheart;;;[];;;;text;t2_14b7b1;False;False;[];;AOT is the most meticulously planned story I've ever experienced tbh;False;False;;;;1610668107;;False;{};gjacj0n;False;t3_kujurp;False;True;t1_gittljc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjacj0n/;1610756121;2;True;False;anime;t5_2qh22;;0;[]; -[];;;funkerbuster;;;[];;;;text;t2_7mx1p;False;False;[];;Whatever injuries he had will completely heal from the transformation anyway. This one is just cool laser eye effects.;False;False;;;;1610671851;;False;{};gjajrlx;False;t3_kujurp;False;False;t1_gja65gm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjajrlx/;1610760814;4;False;False;anime;t5_2qh22;;0;[]; -[];;;Dakb00;;;[];;;;text;t2_fwjte;False;False;[];;(Sorry for late reply but need to get this out) I love how that also applies to Eren as Reiner is the only one who can actually, fairly, judge him for what he is about to do.;False;False;;;;1610673473;;False;{};gjamvnn;False;t3_kujurp;False;True;t1_gisbr5v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjamvnn/;1610762858;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Awesome6472;;;[];;;;text;t2_gg5ps;False;False;[];;Sure, but it just wasn't that well written imo. I didn't really understand the v2 Military Police working under Kenny and their loyalty to him. Should've elaborated more on the underground city as well. That's just my opinion though.;False;False;;;;1610673939;;False;{};gjanr94;False;t3_kujurp;False;True;t1_gitzdl0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjanr94/;1610763429;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mishin_n;;;[];;;;text;t2_1138g4;False;False;[];;how did Eren manage to keep his leg from growing back for days?;False;False;;;;1610675110;;False;{};gjaq04x;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjaq04x/;1610764922;2;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;First one came out today!;False;False;;;;1610675809;;False;{};gjarbka;False;t3_kujurp;False;True;t1_giuclr0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjarbka/;1610765749;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SquishedMemoryFoam;;;[];;;;text;t2_yihfqlf;False;False;[];;She's the same person who was standing behind the sofa which was flipped over by the kids I think.;False;False;;;;1610676689;;False;{};gjaszyl;False;t3_kujurp;False;True;t1_giuztj7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjaszyl/;1610766824;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Miihoohoho;;;[];;;;text;t2_17gsg8ws;False;False;[];;"It’s truly incredible. I remember thinking that Eren would be stopping the cycle of hatred here but he knows it’s not that simple and that’s why he says he understands Reiner. Reiner could have stopped it back in the day too but he had no choice but to press on. Same as Eren, he can’t stop here because the enemies wouldn’t stop either. They really are in the same situation. - -We can see Eren so calm and collected but Reiner should know that all of this is not easy for Eren since he’s going to have a lot of civilian casualties on his hand too.";False;False;;;;1610677115;;False;{};gjatstq;False;t3_kujurp;False;True;t1_gisrns1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjatstq/;1610767331;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hiddim;;;[];;;;text;t2_2ywyv3w9;False;False;[];;its just a down vote, people like they upvote, people dont like they downvote;False;False;;;;1610677598;;False;{};gjaupc4;False;t3_kujurp;False;True;t1_gitznid;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjaupc4/;1610767913;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DJ_AW03;;;[];;;;text;t2_6a2u9w9l;False;False;[];;He just paused the healing process from occurring. They can control their healing, we saw in season 2 that when reined saved Connie from the titan his hand got bitten, but he didn't heal it until he revealed himself as the armored titan.;False;False;;;;1610679701;;False;{};gjayl1y;False;t3_kujurp;False;False;t1_gjaq04x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjayl1y/;1610770286;11;True;False;anime;t5_2qh22;;0;[]; -[];;;danja386;;;[];;;;text;t2_2umvp5g8;False;False;[];;Thanks for telling me ill check it out after I finish decadence;False;False;;;;1610684466;;False;{};gjb754h;False;t3_kujurp;False;False;t1_gjarbka;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjb754h/;1610775385;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThrowCarp;;;[];;;;text;t2_79cxz;False;False;[];;I love that he just owns up to it rather than trying to mental gymnastics his way out of it.;False;False;;;;1610688217;;False;{};gjbd4s6;False;t3_kujurp;False;True;t1_gisw1ro;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjbd4s6/;1610778852;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610714012;;False;{};gjc5qpi;False;t3_kujurp;False;False;t1_gj6969t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjc5qpi/;1610794663;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dhikapow;;;[];;;;text;t2_13mu2c;False;False;[];;now that you mention it yeah, I agree about the leg part. Overall I just find the pace really rushed that I didn't feel the tension as when I read the original;False;False;;;;1610718671;;False;{};gjcchib;False;t3_kujurp;False;True;t1_givxtcn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjcchib/;1610798386;2;True;False;anime;t5_2qh22;;0;[]; -[];;;yoongi410;;;[];;;;text;t2_3uadv6gp;False;False;[];;I love the fact that the last episodes were about the point of view of the Marleyans and the Eldians living with them. And in their point of view, the Eldians within the walls are demons and savages. It's really a cool parallel how Eren is basically the same as Reiner, fighting for humanity in his own way. Isayama is fucking brilliant.;False;False;;;;1610723902;;False;{};gjcm9db;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjcm9db/;1610804177;5;True;False;anime;t5_2qh22;;0;[]; -[];;;nja546;;;[];;;;text;t2_z0k650v;False;False;[];;You are;False;False;;;;1610732771;;False;{};gjd5a6y;False;t3_kujurp;False;True;t1_gisac08;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjd5a6y/;1610817391;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wtfduud;;;[];;;;text;t2_bv3xi;False;False;[];;Genius use of the bandage to make it look like a skull.;False;False;;;;1610738090;;False;{};gjdgw2l;False;t3_kujurp;False;False;t1_gisq9q0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjdgw2l/;1610825464;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wtfduud;;;[];;;;text;t2_bv3xi;False;False;[];;He's really channeling his inner Lelouch here.;False;False;;;;1610738157;;False;{};gjdh14z;False;t3_kujurp;False;True;t1_git1ze1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjdh14z/;1610825553;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610740207;;False;{};gjdld46;False;t3_kujurp;False;True;t1_giub3jx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjdld46/;1610828588;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Deto_San;;;[];;;;text;t2_8glsgk1s;False;False;[];;"Actually Zeke isn't hiding his identity , he don't know that he has a royal blood -The only one who knows is eren through his old man memories";False;False;;;;1610770031;;False;{};gjf5qxh;False;t3_kujurp;False;True;t1_giup0zu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjf5qxh/;1610864588;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Archlegendary;;;[];;;;text;t2_ximy7;False;False;[];;He can stop his healing, just like Reiner did with his arm in season 2.;False;False;;;;1610772792;;False;{};gjfa2x8;False;t3_kujurp;False;True;t1_givni7y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjfa2x8/;1610866976;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kmlshblr;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/tsubasaneko;light;text;t2_1d7fzwwh;False;False;[];;Here before 25k, lets gooo;False;False;;;;1610780086;;False;{};gjfjsoi;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjfjsoi/;1610872304;7;True;False;anime;t5_2qh22;;0;[]; -[];;;guitarjadereddit;;;[];;;;text;t2_6o2q26cr;False;False;[];;Willy got his Wonka kicked 😔👌;False;False;;;;1610785091;;False;{};gjfp38p;False;t3_kujurp;False;True;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjfp38p/;1610875160;1;True;False;anime;t5_2qh22;;0;[]; -[];;;guitarjadereddit;;;[];;;;text;t2_6o2q26cr;False;False;[];;"Reiner in season 3 : Uno -Eren in season 4 : Dos";False;False;;;;1610785147;;False;{};gjfp58h;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjfp58h/;1610875186;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mr_1ightning;;;[];;;;text;t2_nbboscz;False;False;[];;I mean...;False;False;;;;1610797045;;False;{};gjg2xrw;False;t3_kujurp;False;True;t1_givhrf1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjg2xrw/;1610882019;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zarerion;;MAL;[];;http://myanimelist.net/animelist/Zarerion;dark;text;t2_i5puu;False;False;[];;And even that only scratched the surface, as Erwin was referring to the King and the government inside the walls, not a foreign country invading and slaughtering all Paradisians.;False;False;;;;1610800395;;False;{};gjg8ttr;False;t3_kujurp;False;True;t1_givezv6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjg8ttr/;1610884683;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Zarerion;;MAL;[];;http://myanimelist.net/animelist/Zarerion;dark;text;t2_i5puu;False;False;[];;Don't forget that controlling yourself as a titan is non-trivial. A baby would probably just go on a rampage.;False;False;;;;1610800635;;False;{};gjg99mc;False;t3_kujurp;False;True;t1_giuvvcv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjg99mc/;1610884887;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DeithWX;;;[];;;;text;t2_6jgkl;False;False;[];;It was just dialogue, no action, but the fucking suspense made me clench my fists and hold my breath. What the fuck. I'm fucking shaking it was so tense.;False;False;;;;1610801577;;False;{};gjgb08s;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjgb08s/;1610885706;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Zarerion;;MAL;[];;http://myanimelist.net/animelist/Zarerion;dark;text;t2_i5puu;False;False;[];;It's a perfect parallel. The cycle of revenge never ends, and everyone is bound by their past and unable to stop. They just keep moving forward.;False;False;;;;1610803313;;False;{};gjgeasw;False;t3_kujurp;False;True;t1_givm2ve;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjgeasw/;1610887304;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cyclops274;;;[];;;;text;t2_1n0717z;False;False;[];;But Piek never saw Armin. How can she know who is Armin. He was fried human in the roof top.;False;False;;;;1610804265;;False;{};gjgg829;False;t3_kujurp;False;False;t1_gj3n26v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjgg829/;1610888270;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Brex_667;;;[];;;;text;t2_2oml643o;False;False;[];;God dammit you're right, We just have to wait and see;False;False;;;;1610812953;;False;{};gjgza6z;False;t3_kujurp;False;True;t1_gjgg829;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjgza6z/;1610899220;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CiraKazanari;;;[];;;;text;t2_9hnk77y4;False;False;[];;I freaking love that manga. I can’t wait for the anime.;False;False;;;;1610813319;;False;{};gjh04v8;False;t3_kujurp;False;True;t1_gisvcma;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjh04v8/;1610899750;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Firebanan58;;;[];;;;text;t2_7reckzfj;False;False;[];;I got so hyped at the end and the wait is torture i just hope that we finally see some titan fights and not some backstory episode of the warhammer family;False;False;;;;1610820842;;False;{};gjhiql3;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjhiql3/;1610911462;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Firebanan58;;;[];;;;text;t2_7reckzfj;False;False;[];;I had goodebumbs the entire episode;False;False;;;;1610820939;;False;{};gjhizsu;False;t3_kujurp;False;True;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjhizsu/;1610911612;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChanceFour;;;[];;;;text;t2_49zt059z;False;False;[];;Yeah he used everyone in the house above them and Falco as hostages against Reiner;False;False;;;;1610827906;;False;{};gjhyhqk;False;t3_kujurp;False;False;t1_gisr212;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjhyhqk/;1610921914;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChanceFour;;;[];;;;text;t2_49zt059z;False;False;[];;Rewatched S3 recently, and Armin was cooked and fried at the time Pieck would’ve seen him, so it can’t be him that she recognised;False;False;;;;1610828229;;False;{};gjhz8x7;False;t3_kujurp;False;True;t1_gisdu1d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjhz8x7/;1610922408;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fatuous_uvula;;;[];;;;text;t2_l8zfb;False;False;[];;I want to gush and gush over how incredible the suspenseful build up was. Everything from the music to the conversation between Erin and Reiner to the history lesson of Eldia was meticulously setup. I'm so wonderfully happy this arc got the full attention by Mappa it deserves.;False;False;;;;1610829100;;False;{};gji1fu5;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gji1fu5/;1610923752;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shoddy-Car-8689;;;[];;;;text;t2_8s8n6pyx;False;False;[];;Will it reach 25k ??;False;False;;;;1610830975;;False;{};gji64xt;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gji64xt/;1610926581;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610835685;;False;{};gjifyc5;False;t3_kujurp;False;True;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjifyc5/;1610932679;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tobi_Granbell55;;;[];;;;text;t2_6l67ov9x;False;False;[];;"[Spoiler source](/s ""Is the next episode when sasha dies? Or do we still have a bit more?"")";False;False;;;;1610835789;;False;{};gjig5nh;False;t3_kujurp;False;True;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjig5nh/;1610932800;1;True;False;anime;t5_2qh22;;0;[]; -[];;;everyday_lurker;;;[];;;;text;t2_7ikewlps;False;False;[];;More specifically Reiner took off the bandages and it began healing. Eren untied his pants and it began healing. I dont know if they are truly controlling it apart from just obstructing the limb from being exposed.;False;False;;;;1610840171;;False;{};gjiorrq;False;t3_kujurp;False;True;t1_gjayl1y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjiorrq/;1610938228;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ModieOfTheEast;;;[];;;;text;t2_g7tqk9b;False;False;[];;Sorry, can't discuss it further, since Manga readers spoiled it for me already (not even hidden, they just put the name in the title of a YouTube video). So to make sure I don't do the same, I won't say anything anymore.;False;False;;;;1610840374;;False;{};gjip5o5;False;t3_kujurp;False;True;t1_gjhz8x7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjip5o5/;1610938469;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DJ_AW03;;;[];;;;text;t2_6a2u9w9l;False;False;[];;"Healing happens immediately when they get injured and the steam appears alongside it. Reiner got bitten, lift the titan, walked up those stairs with the titan, stood at the window, went back down the stairs then had historia pour alcohol on it which she then tied up, at no time during these events did we see any steam from Reiner nor did his injury heal even though it was very minor and would have healed in just seconds. He purposefully delayed it from happening. - -Secondly, in season 3 part 2 we see bertholdt on the roof with armin then mikasa comes behind him and cuts his ear, his healing never occurred because he delayed it so he could use it as a trigger for him to transform.";False;False;;;;1610840691;;False;{};gjiprg3;False;t3_kujurp;False;False;t1_gjiorrq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjiprg3/;1610938877;1;True;False;anime;t5_2qh22;;0;[]; -[];;;everyday_lurker;;;[];;;;text;t2_7ikewlps;False;False;[];;You’re right. I forgot about that detail.;False;False;;;;1610841101;;False;{};gjiqjca;False;t3_kujurp;False;True;t1_gjiprg3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjiqjca/;1610939375;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DJ_AW03;;;[];;;;text;t2_6a2u9w9l;False;False;[];;Also, the best example is from this very same episode. Eren had his hand cut from the very beginning and didn't heal it during their long conversation even though we saw him heal his leg. He avoided healing his hand so he could use the injury as a trigger to transform.;False;False;;;;1610841442;;False;{};gjir723;False;t3_kujurp;False;False;t1_gjiqjca;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjir723/;1610939785;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610841568;;1610842948.0;{};gjirfzv;False;t3_kujurp;False;True;t1_giswl49;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjirfzv/;1610939952;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Lost_Sin_;;;[];;;;text;t2_6q7mby4d;False;False;[];;">objectively good - -xd";False;False;;;;1610853387;;False;{};gjjdhh9;False;t3_kujurp;False;True;t1_gj69gi7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjjdhh9/;1610953265;1;False;False;anime;t5_2qh22;;0;[]; -[];;;lilykitsune;;;[];;;;text;t2_1169wze1;False;False;[];;I just caught up today, and I just find myself bothered by their choice of exposition timeline. They easily could have written it differently without just dropping the stupid basement hint in the beginning and then leaving it and all the other exposition until seasons later. It's a frustrating decision, and only moreso because they really do tie things together, it's just an unsatisfying way of telling the story. Introducing the idea of memory wonkiness but not using it effectively sooner makes it seem like a copout. They could have been using that the whole time. Made the basement not seem like a cheap mystery. Built on that intrigue instead of a big flashback exposition dump seasons later.;False;False;;;;1610853645;;False;{};gjjdyau;False;t3_kujurp;False;True;t1_giustub;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjjdyau/;1610953552;1;True;False;anime;t5_2qh22;;0;[]; -[];;;metalmetal1;;MAL;[];;I hate you all;dark;text;t2_10dqex;False;False;[];;This series is amazing;False;False;;;;1610863865;;False;{};gjjutkr;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjjutkr/;1610962820;6;True;False;anime;t5_2qh22;;0;[]; -[];;;SedentaryOwl;;;[];;;;text;t2_6iakfd3u;False;False;[];;You’ll see in a bit. Also, never said I hadn’t read it.;False;False;;;;1610871941;;False;{};gjk4axs;False;t3_kujurp;False;True;t1_gitfrro;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjk4axs/;1610967809;1;True;False;anime;t5_2qh22;;0;[]; -[];;;raizen0106;;;[];;;;text;t2_mr74y;False;False;[];;"late reply to this thread but i was bingeing from S2 til now and the whole time i kept thinking about how AoT is what we GoT fans expected GoT to be - -and since the manga is ending, we'll definitely get the ending we deserve. honestly even as a manga reader i'm still getting chills from watching the anime, it could definitely become big like GoT if hollywood adapted AoT into a tv series";False;False;;;;1610872759;;False;{};gjk553p;False;t3_kujurp;False;True;t1_giyioow;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjk553p/;1610968258;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Vhunterman;;;[];;;;text;t2_15d2dr;False;False;[];;I was having recap marathon for the previous season. Shit looks so different after watching the declaration of war episode 😱;False;False;;;;1610872985;;False;{};gjk5d75;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjk5d75/;1610968378;3;True;False;anime;t5_2qh22;;0;[]; -[];;;antibiotics1219;;;[];;;;text;t2_5d8lckg0;False;False;[];;The thing about war is not about what's morally right.;False;False;;;;1610881623;;False;{};gjkgkdn;False;t3_kujurp;False;False;t1_giujlu6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjkgkdn/;1610974025;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GosuGian;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GosuDRM;light;text;t2_mu7ij;False;False;[];;OOF;False;False;;;;1610881718;;False;{};gjkgqyy;False;t3_kujurp;False;True;t1_gisafs9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjkgqyy/;1610974114;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wrave;;MAL;[];;no;dark;text;t2_eaxcs;False;False;[];;Looking toward the sea was at the very end of season 3 part 2.;False;False;;;;1610883662;;False;{};gjkkf3w;False;t3_kujurp;False;True;t1_giufua7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjkkf3w/;1610975927;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jeroz;;;[];;;;text;t2_4qy3a;False;False;[];;Iirc there was a teaser before the part 2 footage;False;False;;;;1610885793;;False;{};gjkpccv;False;t3_kujurp;False;True;t1_gjkkf3w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjkpccv/;1610978361;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DonPax;;;[];;;;text;t2_15yhk7;False;False;[];;Iirc from the 3rd episode of the Final Season.;False;False;;;;1610893841;;False;{};gjlak4h;False;t3_kujurp;False;True;t1_giuxwvl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjlak4h/;1610989835;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610904903;;False;{};gjmemrq;False;t3_kujurp;False;True;t1_giti4xc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjmemrq/;1611012200;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zarerion;;MAL;[];;http://myanimelist.net/animelist/Zarerion;dark;text;t2_i5puu;False;False;[];;Dude, the horse. You know the one.;False;False;;;;1610905416;;False;{};gjmg9bx;False;t3_kujurp;False;True;t1_giwbhpj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjmg9bx/;1611013095;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sew_chef;;;[];;;;text;t2_7xse4595;False;False;[];;Once wall Rose fell, there was a famine in episode 2 that was the central point of the episode. It's not that unrealistic though since yes there's land but crops need time to grow and it's not like they were farming way more than they needed to, they pretty much subsistence farmers. Even in modern times there's a food shortage when a disaster happens just due to the system getting overwhelmed by way more people than it normally handles.;False;False;;;;1610908490;;False;{};gjmrj5n;False;t3_kujurp;False;True;t1_gj9n08v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjmrj5n/;1611019067;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"So it's OK for everyone to be Literally Hitler because ""it's just a war, bro!""";False;False;;;;1610914788;;False;{};gjn6rkv;False;t3_kujurp;False;False;t1_gjkgkdn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjn6rkv/;1611027882;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ADmax27;;;[];;;;text;t2_6jrfh9b;False;False;[];;there’s another fucking god tier episode coming and that ones 100% dialogue too;False;False;;;;1610915709;;False;{};gjn8mjx;False;t3_kujurp;False;True;t1_giw13nk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjn8mjx/;1611029083;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thrwawy_laterdater;;;[];;;;text;t2_15cqud;False;False;[];;"Because a loud, obnoxious OST makes Eren’s actions obvious (especially to anime-only). Keeping it silent until the last minute, when he hears the declaration of war, THEN transforms, keeps it unclear as to how Eren will act. - -It’s a fantastic choice, and far better than the laughingly obvious music that gives things away in other animes.";False;False;;;;1610916274;;False;{};gjn9t8e;False;t3_kujurp;False;True;t1_gisquzt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjn9t8e/;1611029814;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610935880;;False;{};gjoe3sr;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjoe3sr/;1611052728;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ijustwant2beok;;;[];;;;text;t2_xs5jr;False;False;[];;I mean sure but do they have the launch codes for said nukes?;False;False;;;;1610939322;;False;{};gjokpf4;False;t3_kujurp;False;True;t1_giutma9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjokpf4/;1611056442;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ijustwant2beok;;;[];;;;text;t2_xs5jr;False;False;[];;"The problem is that like Ymir said and Hange has deduced, as well we the audience have been told by Udo and others the whole world hates Eldians. So there is no telling that attacking Marley wouldn't have united the world against them anyway and now after Willy had rallied the world to fight the old threat that terrorized us for centuries Eldia. - -The only problem is the optics, this looks terrible for Paradis. The civillian casualities, the dead foreign dignitaries and the press here to document it all. The hate for Eldia will be at an all-time high. - -Willy created to perfected script with Eren and Eldia as the villain and Eren couldn't find a way out of that role.";False;False;;;;1610940115;;False;{};gjom3f2;False;t3_kujurp;False;True;t1_giulm3j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjom3f2/;1611057246;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;Looks to me like this is the role Eren *wants*.;False;False;;;;1610940341;;False;{};gjomhgg;False;t3_kujurp;False;True;t1_gjom3f2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjomhgg/;1611057474;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ashai1994;;;[];;;;text;t2_13vlu5sv;False;False;[];;LOLLL COOL LASER EYE EFFECTS? --- **i think animators made a mistake.... it makes no sense to have 2 different eye colours**;False;False;;;;1610945901;;False;{};gjovgqu;False;t3_kujurp;False;False;t1_gjajrlx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjovgqu/;1611063157;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ashai1994;;;[];;;;text;t2_13vlu5sv;False;False;[];;That makes sense. Zackley has more administrative experience.;False;False;;;;1610946998;;False;{};gjox3sj;False;t3_kujurp;False;True;t1_gj52v8b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjox3sj/;1611064247;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ashai1994;;;[];;;;text;t2_13vlu5sv;False;False;[];;">I love the fact that the last episodes were about the point of view of the Marleyans and the Eldians living with them. And in their point of view, the Eldians within the walls are demons and savages. It's really a cool parallel how Eren is basically the same as Reiner, fighting for humanity in his own way. Isayama is fucking brilliant. - -**I had respect for Eren until the very end of episode 5. It makes sense that he threatens Reiner by cutting his hand** (1st step to transformation) **so that he doesn't run away and sits down. However, he ACTUALLY transformed and he is going to kill a bunch of civillians...moreover, it's not even Marley, there are a bunch of journalists and visitiors from around the world.** - -&#x200B; - -I really hope there will be atleast a single protagonist that condemns both Marley's actions as well as Eren's... - -Seasons 1,2,3 were far superior in terms of writing than what I've seen so far.";False;False;;;;1610948475;;1611039026.0;{};gjoz8ye;False;t3_kujurp;False;True;t1_gjcm9db;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjoz8ye/;1611065692;0;True;False;anime;t5_2qh22;;0;[]; -[];;;sanic_de_hegehog;;MAL;[];;https://myanimelist.net/profile/sanic_de_hegehog;dark;text;t2_e028fcj;False;False;[];;Or that there aren't millions at all. Willy is an unreliable narrator, remember. And it's not like they counted the titans or anything.;False;False;;;;1610953166;;False;{};gjp5jjj;False;t3_kujurp;False;True;t1_gj2480p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjp5jjj/;1611070062;1;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;True;[];;Inevitable.;False;False;;;;1610955722;;False;{};gjp8juh;False;t3_kujurp;False;False;t1_gji64xt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjp8juh/;1611072095;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NotKenni;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3n608z1h;False;False;[];;What's sad is, I have a feeling that if they didn't declare war, Eren and the gang might have actually walked away;False;False;;;;1610970075;;False;{};gjpncol;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjpncol/;1611082685;3;True;False;anime;t5_2qh22;;0;[]; -[];;;rajendraac_13;;;[];;;;text;t2_2s4n5spc;False;False;[];;25k please please;False;False;;;;1610977640;;False;{};gjpwff5;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjpwff5/;1611089324;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Saberinbed;;;[];;;;text;t2_p00ls;False;False;[];;Sup. So how was the budget save? CG scouts? Berserk level CG?;False;False;;;;1610982140;;False;{};gjq3opx;False;t3_kujurp;False;True;t1_givf68h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjq3opx/;1611094485;0;True;False;anime;t5_2qh22;;0;[]; -[];;;swordmalice;;MAL;[];;http://myanimelist.net/animelist/swordmalice;dark;text;t2_doqci;False;False;[];;"> The Founding Titan’s powers only affect Eldians hence why some people in the walls are not affected because they were not Eldians. - -Which people within the walls aren't Eldians? I thought everyone on Paradis were Eldians?";False;False;;;;1610984382;;False;{};gjq7pmj;False;t3_kujurp;False;True;t1_gismb1y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjq7pmj/;1611097279;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YondaimeHokage7;;;[];;;;text;t2_5tgysx8m;False;False;[];;You might want to add spoiler alert to your comment :О;False;False;;;;1610993637;;False;{};gjqqalj;False;t3_kujurp;False;True;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjqqalj/;1611109368;0;True;False;anime;t5_2qh22;;0;[]; -[];;;juniorg13;;;[];;;;text;t2_dvj54;False;False;[];;I've been waiting 3 years to see this animated and wow did it not dissapoint;False;False;;;;1611000850;;False;{};gjr52yz;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjr52yz/;1611118507;3;True;False;anime;t5_2qh22;;0;[]; -[];;;yaminoidles;;;[];;;;text;t2_64rsavk;False;False;[];;"The nobles weren't eldians. Also, in Kenny's flashback with his grandfather it mentions that the other ""families"" other than the Asians and the Ackermans joined hands with the royal family hence the persecution of the Asians and Ackermans.";False;False;;;;1611015744;;False;{};gjry79s;False;t3_kujurp;False;True;t1_gjq7pmj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjry79s/;1611134618;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yoongi410;;;[];;;;text;t2_3uadv6gp;False;False;[];;I don't really get your point;False;False;;;;1611032259;;False;{};gjsshap;False;t3_kujurp;False;True;t1_gjoz8ye;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjsshap/;1611152304;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rajendraac_13;;;[];;;;text;t2_2s4n5spc;False;False;[];;100 votes short 🥺;False;False;;;;1611043530;;False;{};gjt74ih;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjt74ih/;1611162388;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OrfeasZem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/orpheus_;light;text;t2_12lxh0;False;False;[];;"Anime is a medium like any other and it sucks that so many people think it's just ahegao. Sure, it has it's fair share of trash tropes and bad shows, but that's to be expected of a medium in it's infancy without a lot of talent/funding. At least, underneath all the trash are some amazing works that can compete with other masterpieces of any medium. AOT especially has helped ""destroy"" the perception that a lot of people have for anime. - -I honestly think that if some more acclaimed manga get adapted at a competent level, anime might hit the mainstream. Just imagine if something like Berserk gets a competent studio and good direction and cinematography. Instant classic. - -So many works are waiting to be found by the public and that all depends on anime like AOT going big and creating more interest in the medium.";False;False;;;;1611052915;;False;{};gjtgrmu;False;t3_kujurp;False;False;t1_gisyejb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjtgrmu/;1611169263;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cultman2k45;;;[];;;;text;t2_32nu0x72;False;False;[];;yay it hit 25k upvotes;False;False;;;;1611122872;;False;{};gjx2vxy;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjx2vxy/;1611250157;6;True;False;anime;t5_2qh22;;0;[]; -[];;;cookiedough320;;;[];;;;text;t2_xhgvj;False;False;[];;You'd kill 10 other families to save your own?;False;False;;;;1611127225;;False;{};gjx88lz;False;t3_kujurp;False;True;t1_giycggq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjx88lz/;1611253989;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cookiedough320;;;[];;;;text;t2_xhgvj;False;False;[];;And its not enough to say each individual within the world would agree either. Especially since none of them have the full information of what is really occurring in the world. Some people in this thread seem insane saying that it'd be totally justified to kill everyone else in the world just because they've been tricked into believing that the Eldians on Paradis are devils.;False;False;;;;1611127497;;False;{};gjx8jy0;False;t3_kujurp;False;False;t1_gixldgn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjx8jy0/;1611254229;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cookiedough320;;;[];;;;text;t2_xhgvj;False;False;[];;And those people above him have been tricked and lie to. They're not knowledgable of the full situation.;False;False;;;;1611127772;;False;{};gjx8v7a;False;t3_kujurp;False;True;t1_giufccw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjx8v7a/;1611254445;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cookiedough320;;;[];;;;text;t2_xhgvj;False;False;[];;So you agree that Eren killing the people in those buildings was just as fine as Reinger killing the people within Eren's neighbourhood?;False;False;;;;1611128624;;False;{};gjx9thn;False;t3_kujurp;False;True;t1_giv0x9s;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjx9thn/;1611255095;0;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;">They're not knowledgable of the full situation - -Neither were people on the island, in fact they were completely oblivious unlike these folks who cheered their ''heroes'' as they set off to commit unprovoked genocide - -War is no joke so don't start it if you are worried about getting killed";False;False;;;;1611140788;;1611141050.0;{};gjxmdat;False;t3_kujurp;False;True;t1_gjx8v7a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjxmdat/;1611263838;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;"Reiner killing the people (all 200.000 of them, not just neighborhood) was never fine - -Eren killing people in the building is collateral damage, necessary evil and direct consequence of Reiner and his folks being genocidal assholes - -Marley started the war, now all bets are off - -Kill or be killed";False;False;;;;1611140934;;False;{};gjxmisd;False;t3_kujurp;False;True;t1_gjx9thn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjxmisd/;1611263937;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cookiedough320;;;[];;;;text;t2_xhgvj;False;False;[];;"What happened to war is hell, shit happens as well as collateral damage? - -Is the world trying to get revenge not a consequence of the Eldians oppressing all of society through their titan powers? - -And are those civilians not being manipulated? If there actually were people that previously destroyed the humanity you knew and are still hellbent on doing so, lying in wait until some undetermined time where they would launch their unbeatable attack and finally finish you off, would it not make sense to try and take them out? Would it not be a noble cause to destroy them before they could destroy you? Because that's exactly what Eren is doing here, and it's exactly what the rest of humanity are being told about the Eldians. - -The real villains are the ones trying to keep the civilians from the truth. The more people that can make their choice of attack or defend with full knowledge of the situation the better. Because then the villains can be found out while the real innocents can stay alive.";False;False;;;;1611144885;;False;{};gjxqzky;False;t3_kujurp;False;True;t1_gjxmisd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjxqzky/;1611266916;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;">Is the world trying to get revenge not a consequence of the Eldians oppressing all of society through their titan powers? - -War was over for over a century - -Islanders were all third generation of amnesiacs who had no clue outside world even existed and never would - -They would have stayed in their little animal enclosure blind, deaf and stupid forever while rest of the world would be cracking atom and exploring outer space - -But Marleyans and their Elidian lapdogs couldn't leave well enough alone and had to go full Final Solution and this is when the new war started, not one between Marleyans and Elidians but one between all mainland humans and Islanders - -Now Islanders face two options: do nothing and get exterminated or fight back for your survival - -There is no third option and they don't have a single day to waste, if they don't strike back immediately technology will take away their one chance of survival just like it made Marleyan military power obsolete - -This cycle did not start in some distant past, that story was long over - -It started when Reiner slaughtered all those innocent people in the name of his owners - -They are the villains now - -Everything else is just empty talk - ->If there actually were people that previously destroyed the humanity you knew and are still hellbent on doing so, lying in wait until some undetermined time where they would launch their unbeatable attack and finally finish you off - -We know it isn't the case thanks to Cuck King's orders, Marley knew this very well and still they decided to start the unprovoked war - - ->would it not make sense to try and take them out? - -If they pose no danger whatsoever and never would and you know that perfectly well? - -No - ->Would it not be a noble cause to destroy them before they could destroy you? - -If they are planning on destroying you? - -Yes - -But we all know that wasn't the case - ->Because that's exactly what Eren is doing here - -Not exactly - -Islanders were not a threat to anyone anymore, Cuck King made sure of it - -Marleyans and their Elidian lapdogs however definitely are a confirmed threat to Islanders - ->The real villains are the ones trying to keep the civilians from the truth - -To those civilians maybe - -To islanders the villains are people who are trying to exterminated them in unprovoked genocidal war - -Truth is a sideshow now, time for truth was several decades ago - -This is about survival";False;False;;;;1611172433;;False;{};gjzak5d;False;t3_kujurp;False;True;t1_gjxqzky;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gjzak5d/;1611299793;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cookiedough320;;;[];;;;text;t2_xhgvj;False;False;[];;"You seem to think everyone outside of Paradis knows the truth of what is happening. - ->We know it isn't the case thanks to Cuck King's orders, Marley knew this very well and still they decided to start the unprovoked war - ->If they pose no danger whatsoever and never would and you know that perfectly well? - ->Islanders were not a threat to anyone anymore, Cuck King made sure of it - -How many people know this? It's the very few people at the top of the chain who are manipulating the rest and tricking them into thinking otherwise. Have you not realised that the civilians don't know this to be truth? We know the truth because we're viewers who are shown everything. - -The civilians within Marley believe full-well that the people on that island are going to come and destroy them at any point, and that the more they wait, the closer they come to death. They didn't know anything close to the truth until they were told just last episode. And then they were convinced of another lie, that the islanders are *now* coming to kill them. - -You wouldn't be any different. If you were in Marley, you'd believe the same thing everyone else was, and I wouldn't fault you for it. Or think that you deserve death just because you were manipulated by the government. - -I don't give a damn about what methods the Paradisians have to go through to survive. I'm not arguing about that. I'm arguing purely about if the civilians with no knowledge of the truth deserve to die or are even doing the wrong thing. In which you think they deserve to die just because they live in a nation ruled by corrupt leaders that have manipulated them. You believe that if the USA started yet another war with some country in the Middle East, that it'd be perfectly fine for that country to bomb your home town because ""war is hell, shit happens as well as collateral damage"".";False;False;;;;1611190912;;False;{};gk0dn4c;False;t3_kujurp;False;True;t1_gjzak5d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gk0dn4c/;1611321948;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fhaarkas;;;[];;;;text;t2_g5ifa;False;False;[];;300 more for top 10 of all time let's gooo.;False;False;;;;1611194719;;False;{};gk0l2w3;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gk0l2w3/;1611326630;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;">How many people know this? - -Military leadership knows, this is enough - -They are responsible for well-being of their citizens and they dropped the ball - -Blame game is now between them - -As for Islanders they have their own survival to think about, they are at a massive disadvantage and clock is ticking - -Halfassing their response is tantamount to suicidal treason under those circumstances - ->You wouldn't be any different - -Correct - -In war there are only two things: your side and the enemy - -Engaging in any moralistic bullshit AFTER hostilities start means that you are giving advantage to the enemy - -And hostilities started long ago - ->I'm arguing purely about if the civilians with no knowledge of the truth deserve to die or are even doing the wrong thing - -War is on - -Those civilians are hostile towards you - -Truth is irelevant now and unless they sue for peace there's no point discussing all this - -This isn't some petty conflict over politics, this is total war of extermination initiated by their side and those civilians are valid targets simply by existing - ->In which you think they deserve to die just because they live in a nation ruled by corrupt leaders that have manipulated them. - -Are we forgetting genocide of segments of their own society? It wasn't as simple as ""muh corrupt leaders"" manipulating - ->You believe that if the USA started yet another war with some country in the Middle East, that it'd be perfectly fine for that country to bomb your home town because ""war is hell, shit happens as well as collateral damage"" - -I'm not from USA, they can both go to town on each other as far as I'm concerned";False;False;;;;1611195879;;False;{};gk0nd86;False;t3_kujurp;False;True;t1_gk0dn4c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gk0nd86/;1611328083;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cookiedough320;;;[];;;;text;t2_xhgvj;False;False;[];;">Those civilians are hostile towards you - ->Truth is irelevant now and unless they sue for peace there's no point discussing all this - ->This isn't some petty conflict over politics, this is total war of extermination initiated by their side and those civilians are valid targets simply by existing - -And thus you've justified Reiner killing the civilians within Paradis. Truth is irrelevant, what he believes is that those islanders are devils who will kill him and his people eventually, his people are at a massive disadvantage and the clock is ticking. Half-assing his response or engaging in moralistic bullshit is giving the advantage to the enemy (and his belief was that hostilities had already started). - -You've spent this entire post somehow trying to condemn what Reiner was doing while justifying what Eren was doing. Did you not listen to Eren's speech? He and Reiner are the same. They're both just as good as each other in this. They both had the same beliefs about the opposing side and it's flown way over your head. - ->I'm not from USA, they can both go to town on each other as far as I'm concerned - -And you wouldn't care about the innocent civilians who are just chilling in their houses, trying to live their lives? It doesn't matter where you're from, replace USA with the country you're in and would you still not care that Iraq decided to bomb you because you belonged to the same country that had leaders declaring war on them?";False;False;;;;1611205791;;False;{};gk15jhx;False;t3_kujurp;False;True;t1_gk0nd86;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gk15jhx/;1611340074;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iamkhatkar;;;[];;;;text;t2_yk5fl;False;False;[];;"For a moment i thought Willy is Eren's ally and he ia going to declare war against Marylene on stage and then covert into Hammer titan killing all the diplomats and Eren will show Riener that how all the Eldians have come together to declare war against others who belittle them and he should join us too. -Well, poor Willy";False;False;;;;1611219972;;False;{};gk1mc6z;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gk1mc6z/;1611351025;2;True;False;anime;t5_2qh22;;0;[]; -[];;;catmeom;;;[];;;;text;t2_8crwsgoc;False;False;[];;Did this breach 25k?;False;False;;;;1611221649;;False;{};gk1nzxu;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gk1nzxu/;1611352100;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;">And thus you've justified Reiner killing the civilians within Paradis. - -How so? - -Those civilians Reiner massacred had no knowledge of past, no clue outside world even existed, they held no ill will towards anyone and never planned on going anywhere let alone attacking anyone - -You are reaching big time here - ->what he believes is that those islanders are devils who will kill him and his people eventually - -Which is bullshit, he knew that, his owners knew that but they all still went through with unprovoked genocide - ->his people are at a massive disadvantage - -His people have advantage, other side is stuck in pre-industrial era and isn't even aware that enemies exist - ->and the clock is ticking - -Clock is ticking towards the moment when Islanders will no longer be able to defend themselves - -Couple of decades from now Titans will be made completely obsolete by technology (as we saw in S4E1) and Islanders would be ripe for extermination - ->and his belief was that hostilities had already started - -He knows full well that hostilities haven't started - ->You've spent this entire post somehow trying to condemn what Reiner was doing while justifying what Eren was doing. - -Eren's actions are fully justified by Reiner's and later Willie's and rest of Marleyan government (and those who keep them in charge) - ->Did you not listen to Eren's speech? He and Reiner are the same. - -Eren may think they are the same but they never could be - -One has to be the first and take all the blame and it was Reiner - -Had Eren been the first then he would be one to blame but he wasn't - -**Fact remains that Marleyans went looking for the Devil and in the end the Devil came looking** - ->replace USA with the country you're in and would you still not care that Iraq decided to bomb you because you belonged to the same country that had leaders declaring war on them? - -If Iraq did that I would care about killing each and every one of Iraqis as payback - -Moralistic bullshit would have to wait until after, don't start what you can't finish";False;False;;;;1611254913;;1611255182.0;{};gk388hx;False;t3_kujurp;False;True;t1_gk15jhx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gk388hx/;1611385750;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610240120;moderator;False;{};gippx3o;False;t3_ku3qi0;False;True;t3_ku3qi0;/r/anime/comments/ku3qi0/what_is_the_animemanga_that_made_you_cry_the_most/gippx3o/;1610282879;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;Love Live! Sunshine!!;False;False;;;;1610240186;;False;{};gipq1ny;False;t3_ku3qi0;False;True;t3_ku3qi0;/r/anime/comments/ku3qi0/what_is_the_animemanga_that_made_you_cry_the_most/gipq1ny/;1610282959;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Either Violet Evergarden or Your Lie in April. They were the only ones that caused me to have some form of negative emotional response.;False;False;;;;1610240309;;1610240596.0;{};gipqa6o;False;t3_ku3qi0;False;False;t3_ku3qi0;/r/anime/comments/ku3qi0/what_is_the_animemanga_that_made_you_cry_the_most/gipqa6o/;1610283096;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Echo2200;;;[];;;;text;t2_5d5ppgsv;False;False;[];;"Violet evergarden got to me after the midway point of the series. -Clannad Afterstory hit me pretty hard.";False;False;;;;1610240483;;False;{};gipqluq;False;t3_ku3qi0;False;True;t3_ku3qi0;/r/anime/comments/ku3qi0/what_is_the_animemanga_that_made_you_cry_the_most/gipqluq/;1610283286;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;Kanon (2006);False;False;;;;1610240516;;False;{};gipqo1p;False;t3_ku3qi0;False;True;t3_ku3qi0;/r/anime/comments/ku3qi0/what_is_the_animemanga_that_made_you_cry_the_most/gipqo1p/;1610283321;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jicuhrabbitkim;;;[];;;;text;t2_6po9il13;False;False;[];;Sound Euphonium it hits hard because I can relate to some of the stuff the characters experience.;False;False;;;;1610240586;;False;{};gipqsxl;False;t3_ku3qi0;False;True;t3_ku3qi0;/r/anime/comments/ku3qi0/what_is_the_animemanga_that_made_you_cry_the_most/gipqsxl/;1610283400;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Strickout;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Strickout?status=2;light;text;t2_1szolp7k;False;False;[];;Anohana is the only anime that has ever made me cry. Shigatsu wa Kimi no Uso came close, but Anohana is the only one that's actually done it;False;False;;;;1610240890;;False;{};giprd6b;False;t3_ku3qi0;False;False;t3_ku3qi0;/r/anime/comments/ku3qi0/what_is_the_animemanga_that_made_you_cry_the_most/giprd6b/;1610283733;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rjta7fortheu;;;[];;;;text;t2_8ov87dz2;False;False;[];;"On the top of my head the ones I remember are: -Naruto, Hunter x Hunter, Kaguya Love is War, Kimetsu no Yaiba, Anohana, Angel Beats, Jojo's Bizarre Adventure, Sakimichi no Apollon.";False;False;;;;1610240898;;False;{};giprdra;False;t3_ku3qi0;False;True;t3_ku3qi0;/r/anime/comments/ku3qi0/what_is_the_animemanga_that_made_you_cry_the_most/giprdra/;1610283742;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TohaHeavyIndustries_;;;[];;;;text;t2_1f3b6iu;False;False;[];;AnoHana, Clannad After Story and Violet Evergarden;False;False;;;;1610240976;;False;{};gipriyq;False;t3_ku3qi0;False;True;t3_ku3qi0;/r/anime/comments/ku3qi0/what_is_the_animemanga_that_made_you_cry_the_most/gipriyq/;1610283829;2;True;False;anime;t5_2qh22;;0;[]; -[];;;azellevi;;;[];;;;text;t2_6mp2joga;False;False;[];;anohana gmfu every damn time lol. i once watched it again 3 or so years after i initially watched it and still cried like a baby lol;False;False;;;;1610241153;;False;{};giprv6q;False;t3_ku3qi0;False;False;t1_giprd6b;/r/anime/comments/ku3qi0/what_is_the_animemanga_that_made_you_cry_the_most/giprv6q/;1610284032;2;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your submission has been removed. - -- This looks like it's - a single image. - This is a form of restricted content that isn't allowed as a full post on the sub. You might consider posting about this sort of thing in the [weekly Casual Discussion Fridays megathread](https://www.reddit.com/r/anime/search?q=title%3A%22Casual+Discussion+Fridays%22+subreddit%3Aanime+author%3AAnimeMod&restrict_sr=on&sort=new&t=week) if it applies. See [our rules page](https://www.reddit.com/r/anime/wiki/rules#wiki_restricted_content) for a full list of restricted content categories. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610241847;moderator;False;{};gipt6dd;False;t3_ku48e0;False;True;t3_ku48e0;/r/anime/comments/ku48e0/havent_watched_or_heard_of_that_one_but_ok/gipt6dd/;1610284812;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;"[https://myanimelist.net/anime/39534/Jibaku\_Shounen\_Hanako-kun](https://myanimelist.net/anime/39534/Jibaku_Shounen_Hanako-kun) - -&#x200B; - -the art and voice actors for this one are pretty great if you need something new to watch :)";False;False;;;;1610241993;;False;{};giptg3u;False;t3_ku47b4;False;False;t3_ku47b4;/r/anime/comments/ku47b4/grimgar_ashes_and_illusions/giptg3u/;1610284970;5;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;"I blind bought it as part of last years Sentai Filmworks Sale and really enjoyed it. -I also got Grimoire of Zero, Agami Brilliant Park";False;False;;;;1610242040;;False;{};giptj48;False;t3_ku47b4;False;False;t3_ku47b4;/r/anime/comments/ku47b4/grimgar_ashes_and_illusions/giptj48/;1610285020;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ItsSnowyy;;;[];;;;text;t2_1xqwwdzc;False;False;[];;Thank you so much! Always looking for new suggestions :)));False;False;;;;1610242108;;False;{};giptnor;True;t3_ku47b4;False;True;t1_giptg3u;/r/anime/comments/ku47b4/grimgar_ashes_and_illusions/giptnor/;1610285093;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ItsSnowyy;;;[];;;;text;t2_1xqwwdzc;False;False;[];;Ooo might have to check those others out too!;False;False;;;;1610242136;;False;{};giptpkv;True;t3_ku47b4;False;True;t1_giptj48;/r/anime/comments/ku47b4/grimgar_ashes_and_illusions/giptpkv/;1610285126;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;re:creators;False;False;;;;1610242525;;False;{};gipufff;False;t3_ku4fpg;False;True;t3_ku4fpg;/r/anime/comments/ku4fpg/good_isekai_anime_to_watch/gipufff/;1610285559;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cookiesrdelishus;;;[];;;;text;t2_5eu4u9uc;False;False;[];;Have you watched Grimgar? Its not the most crazy isekai out there. Its a good show tho, for isekai standards at least.;False;False;;;;1610242590;;False;{};gipujru;False;t3_ku4fpg;False;False;t3_ku4fpg;/r/anime/comments/ku4fpg/good_isekai_anime_to_watch/gipujru/;1610285630;7;True;False;anime;t5_2qh22;;0;[];True -[];;;bimmertaco;;;[];;;;text;t2_6on2n9o7;False;False;[];;thanks;False;False;;;;1610242614;;False;{};gipulcr;True;t3_ku4fpg;False;True;t1_gipujru;/r/anime/comments/ku4fpg/good_isekai_anime_to_watch/gipulcr/;1610285657;1;True;False;anime;t5_2qh22;;0;[]; -[];;;farson135;;;[];;;;text;t2_bp6v36d;False;False;[];;If you really like the series, I would recommend checking out the Light Novels. The anime ends with the second volume, but the 18th volume was recently translated.;False;False;;;;1610242876;;1610243078.0;{};gipv2pz;False;t3_ku47b4;False;False;t3_ku47b4;/r/anime/comments/ku47b4/grimgar_ashes_and_illusions/gipv2pz/;1610285950;9;True;False;anime;t5_2qh22;;0;[]; -[];;;H-Ryougi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DizzyAvocado/animelist;light;text;t2_pr24s;False;False;[];;Hop in your time machine and jump a few months into the future when the BD is out.;False;False;;;;1610243013;;False;{};gipvc0f;False;t3_ku4l8p;False;False;t3_ku4l8p;/r/anime/comments/ku4l8p/does_anyone_know_where_i_can_watch_the_demon/gipvc0f/;1610286109;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"Swim to Japan and buy a theater ticket. - -Every time someone asks this question, they push back the worldwide release by one day";False;False;;;;1610243097;;False;{};gipvhrn;False;t3_ku4l8p;False;False;t3_ku4l8p;/r/anime/comments/ku4l8p/does_anyone_know_where_i_can_watch_the_demon/gipvhrn/;1610286211;7;True;False;anime;t5_2qh22;;0;[]; -[];;;daze3x;;MAL;[];;http://myanimelist.net/animelist/daze3x;dark;text;t2_zwirf;False;False;[];;Easily in my top 5 anime of all time. The attention to detail when it comes to character expression is something that's rare in even the best of anime. Grimgar blew me away. I need to rewatch this show;False;False;;;;1610243183;;False;{};gipvniy;False;t3_ku47b4;False;False;t3_ku47b4;/r/anime/comments/ku47b4/grimgar_ashes_and_illusions/gipvniy/;1610286311;4;True;False;anime;t5_2qh22;;0;[]; -[];;;smiley-rell;;;[];;;;text;t2_9iaznvjw;False;False;[];;Lol If only covid didn't happen.;False;False;;;;1610243238;;False;{};gipvr5d;False;t3_ku4l8p;False;True;t1_gipvhrn;/r/anime/comments/ku4l8p/does_anyone_know_where_i_can_watch_the_demon/gipvr5d/;1610286372;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610243247;moderator;False;{};gipvrqi;False;t3_ku4o9u;False;True;t3_ku4o9u;/r/anime/comments/ku4o9u/which_anime_is_this_motherfucker_from/gipvrqi/;1610286384;1;False;False;anime;t5_2qh22;;0;[]; -[];;;JurassicKing;;;[];;;;text;t2_hyiytoq;False;False;[];;Shield hero;False;False;;;;1610243301;;False;{};gipvvcd;False;t3_ku4fpg;False;True;t3_ku4fpg;/r/anime/comments/ku4fpg/good_isekai_anime_to_watch/gipvvcd/;1610286452;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bimmertaco;;;[];;;;text;t2_6on2n9o7;False;False;[];;done;False;False;;;;1610243317;;False;{};gipvwef;True;t3_ku4fpg;False;True;t1_gipvvcd;/r/anime/comments/ku4fpg/good_isekai_anime_to_watch/gipvwef/;1610286470;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Shimoneta;False;False;;;;1610243322;;False;{};gipvwog;False;t3_ku4o9u;False;True;t3_ku4o9u;/r/anime/comments/ku4o9u/which_anime_is_this_motherfucker_from/gipvwog/;1610286474;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SuckDragon;;;[];;;;text;t2_4adk84sj;False;False;[];;Then why is it not just the original OP?;False;False;;;;1610243361;;False;{};gipvzf3;False;t3_ku3zd7;False;True;t3_ku3zd7;/r/anime/comments/ku3zd7/aot_s4_op_but_it_has_spoilers/gipvzf3/;1610286521;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;He's the MC from Shimoneta;False;False;;;;1610243395;;False;{};gipw1pb;False;t3_ku4o9u;False;True;t3_ku4o9u;/r/anime/comments/ku4o9u/which_anime_is_this_motherfucker_from/gipw1pb/;1610286560;0;True;False;anime;t5_2qh22;;0;[]; -[];;;_Linsu_;;;[];;;;text;t2_7m5mj0sz;False;False;[];;Shimoneta: a boring world where the concept of dirty jokes doesn’t exist.;False;False;;;;1610243414;;False;{};gipw2xq;False;t3_ku4o9u;False;True;t3_ku4o9u;/r/anime/comments/ku4o9u/which_anime_is_this_motherfucker_from/gipw2xq/;1610286583;0;True;False;anime;t5_2qh22;;0;[]; -[];;;mr4fawkes;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Mr4Fawkes;light;text;t2_fpmke;False;False;[];;My favourite is Masaki Yuuasa, so pretty much anything he has worked on is kinda weird. Out of those [Kick-Heart](https://youtu.be/bjTzr-ZjDlw) probably takes the cake tho.;False;False;;;;1610243441;;False;{};gipw4se;False;t3_ku4i0e;False;True;t3_ku4i0e;/r/anime/comments/ku4i0e/what_is_a_weird_anime_the_director_of_your/gipw4se/;1610286613;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;Because it doesn't have them unless you make a complete analysis for every frame and at that point it's foreshadowing.;False;False;;;;1610243444;;False;{};gipw50j;True;t3_ku3zd7;False;True;t1_gipvzf3;/r/anime/comments/ku3zd7/aot_s4_op_but_it_has_spoilers/gipw50j/;1610286618;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;like, its not a hard question to find on the internet and with a little common sense. yikes.;False;False;;;;1610243465;;False;{};gipw6g4;False;t3_ku4l8p;False;True;t1_gipvhrn;/r/anime/comments/ku4l8p/does_anyone_know_where_i_can_watch_the_demon/gipw6g4/;1610286645;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Voice_Overall;;;[];;;;text;t2_7zgxbynh;False;False;[];;What’s your favorite work from him? I think I have an idea;False;False;;;;1610243595;;False;{};gipwf72;True;t3_ku4i0e;False;True;t1_gipw4se;/r/anime/comments/ku4i0e/what_is_a_weird_anime_the_director_of_your/gipwf72/;1610286801;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;if ya watch it lmk what you think;False;False;;;;1610243663;;False;{};gipwjqj;False;t3_ku47b4;False;True;t1_giptnor;/r/anime/comments/ku47b4/grimgar_ashes_and_illusions/gipwjqj/;1610286881;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Axton_of_Rivia;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AxtonofRivia;light;text;t2_4h3evk7j;False;False;[];;"- Goblin Slayer. It somehow is an isekai. - -- There was kuma kuma kuma bear airing this autumn. Mostly cute girl doing cute things but in an isekai. - -- Kami-tachi nu Hirowareta Otoko aired this autumn too. Chill isekai/slice of life show to watch if you're not looking for fights - -- Knight's and magic, mecha isekai - -- Otherside picnic, started airing, yuri romance it seems. - -- Re:Zero, i think i don't need to explain this one. - -- 100 Man no inochi, aired this autumn. Meh. Could have been better. - -- Dendrogram infinite, not really sure it's an isekai cause i can't remember if players are able to disconnect from the game. - -- Gate, japanese military blasting through a medieval type isekai. - -- Konosuba, isekai harem parody. - -- Maou-sama, retry ! Meh. - -- Log Horizon. Gonna need to rewatch this one season 3 will start airing soon. - -- Tensei shitara slime datta ken, very good slice of life isekai, season 2 coming soon. - -I'll edit if i remember another one.";False;False;;;;1610244106;;1610244576.0;{};gipxdkl;False;t3_ku4fpg;False;False;t3_ku4fpg;/r/anime/comments/ku4fpg/good_isekai_anime_to_watch/gipxdkl/;1610287415;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"# Source Material Corner - -Reply to this comment for any source-related discussion, future spoilers (including future characters, events and general hype about future content), comparison of the anime adaptation to the original, or just general talk about the source material. **You are still required to tag all spoilers.** Discussions about the source outside of this comment tree will be removed, and replying with spoilers outside of the source corner will lead to bans. - -The spoiler syntax is: -`[Spoiler source](/s ""Spoiler goes here"")` - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610244238;moderator;False;{};gipxmkn;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gipxmkn/;1610287569;1;False;True;anime;t5_2qh22;;0;[]; -[];;;skaiyly;;;[];;;;text;t2_wv6ac;False;False;[];;If you design some stuff on the sleeves and/or back I would think about. What's the shipping cost like, what site you going to use. Not to be a jerk but how is your stuff any different than other peoples clothing, looks like stuff you see a thousand times on Etsy/instagram;False;False;;;;1610244260;;False;{};gipxo3t;False;t3_ku4wwy;False;True;t3_ku4wwy;/r/anime/comments/ku4wwy/would_yall_buy_so_ive_been_thinking_of_making_a/gipxo3t/;1610287595;1;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;P sure you can't legally do that, but good luck.;False;False;;;;1610244330;;False;{};gipxsvb;False;t3_ku4wwy;False;True;t3_ku4wwy;/r/anime/comments/ku4wwy/would_yall_buy_so_ive_been_thinking_of_making_a/gipxsvb/;1610287676;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ramirez_hertz;;;[];;;;text;t2_3l0fsane;False;False;[];;Can’t make my own clothes or sell it either?;False;False;;;;1610244391;;False;{};gipxx02;False;t3_ku4wwy;False;True;t1_gipxsvb;/r/anime/comments/ku4wwy/would_yall_buy_so_ive_been_thinking_of_making_a/gipxx02/;1610287748;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ramirez_hertz;;;[];;;;text;t2_3l0fsane;False;False;[];;Free shipping and yea they do I would add more like wat you said about something on the sleeve tho;False;False;;;;1610244462;;False;{};gipy1px;False;t3_ku4wwy;False;True;t1_gipxo3t;/r/anime/comments/ku4wwy/would_yall_buy_so_ive_been_thinking_of_making_a/gipy1px/;1610287842;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Byakko168;;;[];;;;text;t2_5b903zap;False;False;[];;Honestly though, if I got a dollar for every time someone asked this question, I’d be a millionaire;False;False;;;;1610244521;;False;{};gipy5ro;False;t3_ku4l8p;False;True;t1_gipvhrn;/r/anime/comments/ku4l8p/does_anyone_know_where_i_can_watch_the_demon/gipy5ro/;1610287921;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;its ok;False;False;;;;1610244525;;False;{};gipy60s;False;t3_ku50xo;False;False;t3_ku50xo;/r/anime/comments/ku50xo/does_anyone_watches_babylon/gipy60s/;1610287926;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;Correction: it was a really good anime till after ep 7 then it fell off a cliff;False;False;;;;1610244562;;False;{};gipy8di;False;t3_ku50xo;False;True;t3_ku50xo;/r/anime/comments/ku50xo/does_anyone_watches_babylon/gipy8di/;1610287967;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;It’s not hard to find since people ask about it every hour here...;False;False;;;;1610244572;;False;{};gipy91i;False;t3_ku4l8p;False;True;t1_gipw6g4;/r/anime/comments/ku4l8p/does_anyone_know_where_i_can_watch_the_demon/gipy91i/;1610287979;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610244601;moderator;False;{};gipyaz8;False;t3_ku52i6;False;True;t3_ku52i6;/r/anime/comments/ku52i6/anime_where_femboy_wins_mcs_heart/gipyaz8/;1610288010;1;False;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;Can't sell. Making your own is fine. Selling is copyright infringement.;False;False;;;;1610244641;;False;{};gipydo2;False;t3_ku4wwy;False;True;t1_gipxx02;/r/anime/comments/ku4wwy/would_yall_buy_so_ive_been_thinking_of_making_a/gipydo2/;1610288062;1;True;False;anime;t5_2qh22;;0;[]; -[];;;smiley-rell;;;[];;;;text;t2_9iaznvjw;False;False;[];;Lol it has more spoilers for other series than AOT;False;False;;;;1610244698;;False;{};gipyhh0;False;t3_ku3zd7;False;True;t3_ku3zd7;/r/anime/comments/ku3zd7/aot_s4_op_but_it_has_spoilers/gipyhh0/;1610288128;1;True;False;anime;t5_2qh22;;0;[]; -[];;;skaiyly;;;[];;;;text;t2_wv6ac;False;False;[];;They mean you can get in trouble for using anime characters that are not originally yours. Like technically you can get sue for using dragon ball characters.theres was around it though basically need a disclaimer on your store;False;False;;;;1610244733;;False;{};gipyjun;False;t3_ku4wwy;False;True;t1_gipxx02;/r/anime/comments/ku4wwy/would_yall_buy_so_ive_been_thinking_of_making_a/gipyjun/;1610288175;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ayanami15;;;[];;;;text;t2_86quz05x;False;False;[];;Yeah it was a really good anime but then nearing the end its just super confusing and theres too much unanswered question. Which makes it super annoying and confusing. But overall i think its okay.;False;False;;;;1610244805;;False;{};gipyopz;True;t3_ku50xo;False;True;t1_gipy8di;/r/anime/comments/ku50xo/does_anyone_watches_babylon/gipyopz/;1610288273;1;True;False;anime;t5_2qh22;;0;[]; -[];;;maullido;;;[];;;;text;t2_knqi8;False;False;[];;isekai restaurant subgenre (?;False;False;;;;1610245020;;False;{};gipz30p;False;t3_ku4fpg;False;True;t3_ku4fpg;/r/anime/comments/ku4fpg/good_isekai_anime_to_watch/gipz30p/;1610288525;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bimmertaco;;;[];;;;text;t2_6on2n9o7;False;False;[];;thanks man;False;False;;;;1610245050;;False;{};gipz4ye;True;t3_ku4fpg;False;False;t1_gipxdkl;/r/anime/comments/ku4fpg/good_isekai_anime_to_watch/gipz4ye/;1610288559;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;Imagawa was the writer for Violinist of Hameln;False;False;;;;1610245083;;False;{};gipz777;False;t3_ku4i0e;False;True;t3_ku4i0e;/r/anime/comments/ku4i0e/what_is_a_weird_anime_the_director_of_your/gipz777/;1610288597;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;Futher correction: Episode 2 was the only good episode and everything else was somewhere in the range of mediocre to complete garbage.;False;False;;;;1610245087;;False;{};gipz7hp;False;t3_ku50xo;False;True;t1_gipy8di;/r/anime/comments/ku50xo/does_anyone_watches_babylon/gipz7hp/;1610288602;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;I never said the spoilers were specifically from AOT;False;False;;;;1610245146;;False;{};gipzbbw;True;t3_ku3zd7;False;False;t1_gipyhh0;/r/anime/comments/ku3zd7/aot_s4_op_but_it_has_spoilers/gipzbbw/;1610288669;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;"I really hated it. The entire thing is based on some dumb premise of ""What if Japan legalized suicide?"" and tried to show how awful that would be for society, but apparently they never bothered to research and discover that suicide is already legal in Japan.";False;False;;;;1610245159;;False;{};gipzc85;False;t3_ku50xo;False;True;t3_ku50xo;/r/anime/comments/ku50xo/does_anyone_watches_babylon/gipzc85/;1610288685;0;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;Sadly those stories are mostly limited to manga.;False;False;;;;1610245191;;False;{};gipzed9;False;t3_ku52i6;False;False;t3_ku52i6;/r/anime/comments/ku52i6/anime_where_femboy_wins_mcs_heart/gipzed9/;1610288725;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"In baka test and Oregairu the Mc would definitely bang the femboy, but nothing happens and its just a crush - -If you really want to see more than that only the doujins will help you";False;False;;;;1610245323;;False;{};gipzn7k;False;t3_ku52i6;False;False;t3_ku52i6;/r/anime/comments/ku52i6/anime_where_femboy_wins_mcs_heart/gipzn7k/;1610288888;6;True;False;anime;t5_2qh22;;0;[]; -[];;;LoopZoop2tokyodrift;;;[];;;;text;t2_1qq4jc66;False;False;[];;Need that ong. Lob?;False;False;;;;1610245371;;False;{};gipzqh0;True;t3_ku52i6;False;True;t1_gipzed9;/r/anime/comments/ku52i6/anime_where_femboy_wins_mcs_heart/gipzqh0/;1610288943;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;ayanami15;;;[];;;;text;t2_86quz05x;False;False;[];;"It was a good anime untill it went downhill. Though the premise of ""What if Japan legalized suicide"" was kinda abnormal and suicide is already legal there for me the anime is ok. I cant say that its an excellent anime but i can say that the anime is not that bad.";False;False;;;;1610245389;;False;{};gipzrqx;True;t3_ku50xo;False;True;t1_gipzc85;/r/anime/comments/ku50xo/does_anyone_watches_babylon/gipzrqx/;1610288966;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LoopZoop2tokyodrift;;;[];;;;text;t2_1qq4jc66;False;False;[];;Need that, know any?;False;False;;;;1610245424;;False;{};gipzu5i;True;t3_ku52i6;False;True;t1_gipzn7k;/r/anime/comments/ku52i6/anime_where_femboy_wins_mcs_heart/gipzu5i/;1610289014;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610245442;moderator;False;{};gipzvd0;False;t3_ku5b5y;False;True;t3_ku5b5y;/r/anime/comments/ku5b5y/the_rising_of_the_shield_hero_and_interstellar/gipzvd0/;1610289036;1;False;False;anime;t5_2qh22;;0;[]; -[];;;MusubiKazesaru;;;[];;;;text;t2_oh8ti;False;False;[];;"It could've been very good, but it started to head towards a cliff in episode 3 and it just kept going farther and farther even when it ran out of land to travel on. I didn't care for the suicide plot but the political stuff could've been interesting. - -I'd like to point out that direction was outstanding.";False;False;;;;1610245476;;1610246678.0;{};gipzxp1;False;t3_ku50xo;False;True;t3_ku50xo;/r/anime/comments/ku50xo/does_anyone_watches_babylon/gipzxp1/;1610289078;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LasDen;;MAL;[];;http://myanimelist.net/animelist/LasDen;dark;text;t2_enav7;False;False;[];;I mean, most likely it's inspired by that track. The similarities are too close to be anything else...;False;False;;;;1610245570;;False;{};giq042i;False;t3_ku5b5y;False;False;t3_ku5b5y;/r/anime/comments/ku5b5y/the_rising_of_the_shield_hero_and_interstellar/giq042i/;1610289207;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Not really just put the femboy + story arc in the search, or just femboy and put filter by popularity of all time - -Assuming you know what I am talking about, otherwise I can't link it here";False;False;;;;1610245649;;False;{};giq09gp;False;t3_ku52i6;False;True;t1_gipzu5i;/r/anime/comments/ku52i6/anime_where_femboy_wins_mcs_heart/giq09gp/;1610289300;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jejemonster2121;;MAL;[];;http://myanimelist.net/profile/Vippy_;dark;text;t2_nc4j2;False;False;[];;Props to Toei, this episode was on some movie quality. from direction ,storyboard, composite etc. its probably the best looking ep of the series.;False;False;;;;1610245663;;False;{};giq0afo;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giq0afo/;1610289316;211;True;False;anime;t5_2qh22;;0;[]; -[];;;LoopZoop2tokyodrift;;;[];;;;text;t2_1qq4jc66;False;False;[];;I get you;False;False;;;;1610245701;;False;{};giq0d1o;True;t3_ku52i6;False;True;t1_giq09gp;/r/anime/comments/ku52i6/anime_where_femboy_wins_mcs_heart/giq0d1o/;1610289365;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610245770;;False;{};giq0hos;False;t3_ku4l8p;False;True;t3_ku4l8p;/r/anime/comments/ku4l8p/does_anyone_know_where_i_can_watch_the_demon/giq0hos/;1610289448;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi DapperGentleMan40, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610245771;moderator;False;{};giq0hqm;False;t3_ku4l8p;False;True;t1_giq0hos;/r/anime/comments/ku4l8p/does_anyone_know_where_i_can_watch_the_demon/giq0hqm/;1610289449;1;False;False;anime;t5_2qh22;;0;[]; -[];;;raichudoggy;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/raichudoggy;light;text;t2_93aur;False;False;[];;"Wait, huh? - -...is that... is that really it for King Byo-gen? That intangible form was really him, and he was really healed? *Surely* that was just a projection, right? This battle was too weak-sauce for a final boss! - -I refuse to believe we actually got him. If he's not back by the finale then something's really not right here! The writers haven't given up, right!? - -[](#flustered) - -Not to mention I really thought [best girl](https://i.imgur.com/p6wCBD5.png) would come in mid-fight since she was busy making herself ready to appear before King Byogen. - -Whaaaaaaaaaat is going on here. - -[](#mindmelt)";False;False;;;;1610245794;;False;{};giq0j9y;False;t3_ku4e5w;False;True;t3_ku4e5w;/r/anime/comments/ku4e5w/healin_goodprecure_episode_39_discussion/giq0j9y/;1610289474;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"Ew a meme on r/anime - -It isn’t even an anime meme lmao";False;False;;;;1610245840;;False;{};giq0mi1;False;t3_ku5csg;False;True;t3_ku5csg;/r/anime/comments/ku5csg/nooo_i_dont_wanna_be_a_sandwich/giq0mi1/;1610289531;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"“News” - -When covid restrictions get lifted probably";False;False;;;;1610245867;;False;{};giq0obf;False;t3_ku5dds;False;False;t3_ku5dds;/r/anime/comments/ku5dds/does_anybody_know_when_the_demon_slayer_movie_is/giq0obf/;1610289562;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ayanami15;;;[];;;;text;t2_86quz05x;False;False;[];;Yeah couldve gone better. The thing is theres so many plotholes and the story was left hanging. Also they drift off from a mystery full of action to just philosphy-ish kinda thing which just doesnt feel right. But its still enjoyable though (for me atleast);False;False;;;;1610245968;;False;{};giq0v5s;True;t3_ku50xo;False;False;t1_gipzxp1;/r/anime/comments/ku50xo/does_anyone_watches_babylon/giq0v5s/;1610289680;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;In Australia they already announced a theater release soon, so the only thing stopping the rest of the world is covid and the distributors;False;False;;;;1610246126;;False;{};giq15lz;False;t3_ku5dds;False;True;t3_ku5dds;/r/anime/comments/ku5dds/does_anybody_know_when_the_demon_slayer_movie_is/giq15lz/;1610289866;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PsycDrone63;;;[];;;;text;t2_58e1z5ml;False;False;[];;This is the best episode of the series since... EVER!;False;False;;;;1610246139;;False;{};giq16fv;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giq16fv/;1610289881;186;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"Jesus the quality of this episode is insane! - - Looking like one piece gold over here! - -I loved the reverie arc in the manga, and it seems like Toei is bringing out the budget for this arc";False;False;;;;1610246300;;False;{};giq1h7n;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giq1h7n/;1610290322;81;True;False;anime;t5_2qh22;;0;[]; -[];;;Garenmain180k;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PhantomDancer04;light;text;t2_7v58rk4z;False;False;[];;r/lostredditors;False;False;;;;1610246548;;False;{};giq1y2y;False;t3_ku5csg;False;True;t3_ku5csg;/r/anime/comments/ku5csg/nooo_i_dont_wanna_be_a_sandwich/giq1y2y/;1610290606;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hereforenudes;;;[];;;;text;t2_6h7apswo;False;False;[];;I'm just curious 😐;False;False;;;;1610246593;;False;{};giq2147;False;t3_ku4l8p;False;True;t1_gipy5ro;/r/anime/comments/ku4l8p/does_anyone_know_where_i_can_watch_the_demon/giq2147/;1610290662;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hereforenudes;;;[];;;;text;t2_6h7apswo;False;False;[];;I looked it up and only found illegal sites that's why i wanna find a way to watch it legit;False;False;;;;1610246617;;False;{};giq22qb;False;t3_ku4l8p;False;True;t1_gipw6g4;/r/anime/comments/ku4l8p/does_anyone_know_where_i_can_watch_the_demon/giq22qb/;1610290689;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRiyria;;MAL a-amq;[];;https://myanimelist.net/profile/TheRiyria;dark;text;t2_zcnep;False;False;[];;"[](#kotourashock) - -[What is going on?](https://imgur.com/ZbxJApY) I'm not used to the Big Bads bowing out this suddenly or early. This is weird. I have no idea where Healin' Good is going to go from here. But I have a feeling it is setting up Daruizen as the final boss. - -[And Latte is a bright puppy!](https://imgur.com/YqMyIid)";False;False;;;;1610246737;;False;{};giq2aj2;False;t3_ku4e5w;False;False;t3_ku4e5w;/r/anime/comments/ku4e5w/healin_goodprecure_episode_39_discussion/giq2aj2/;1610290827;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Quantanamo-Bae;;;[];;;;text;t2_dne4hks;False;False;[];;THE LORE DUMP;False;False;;;;1610247230;;False;{};giq36e3;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giq36e3/;1610291402;72;True;False;anime;t5_2qh22;;0;[]; -[];;;giangerd;;;[];;;;text;t2_1byk5f1m;False;False;[];;Let's gooooooo!!;False;False;;;;1610247301;;False;{};giq3b0f;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giq3b0f/;1610291483;21;True;False;anime;t5_2qh22;;0;[]; -[];;;slothfulwaffle;;;[];;;;text;t2_zl6ae0u;False;False;[];;The animation in today's episode was insane! The pacing, visuals, cinematics, dynamic angles, transitions, lighting.... everything was on point!! Definitely one of the best episodes in the anime so far 🔥🔥🔥;False;False;;;;1610247513;;False;{};giq3om8;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giq3om8/;1610291729;130;True;False;anime;t5_2qh22;;0;[]; -[];;;good_wolf_1999;;;[];;;;text;t2_53pf2wxg;False;False;[];;This was some serious movie quality episode. Looks like Toei really wants to go all out for Act 3;False;False;;;;1610247532;;False;{};giq3pue;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giq3pue/;1610291750;90;True;False;anime;t5_2qh22;;0;[]; -[];;;Strickout;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Strickout?status=2;light;text;t2_1szolp7k;False;False;[];;Hachiman X Saika OTP;False;False;;;;1610247539;;False;{};giq3qba;False;t3_ku52i6;False;True;t1_gipzn7k;/r/anime/comments/ku52i6/anime_where_femboy_wins_mcs_heart/giq3qba/;1610291758;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"The funny thing about Hans Zimmer is that he *also* wears his influences on his sleeve--Zimmer's style is usually borrowed from the minimalist composer Philip Glass (I think sometimes Steve Reich as well) but louder and/or more dramatic (often fewer repetitions, too). - -So, if Penkin was indeed inspired by Zimmer's Interstellar OST there, he would be referencing a reference. - -That being said, I'm fairly familiar with the Interstellar OST, and after listening to ""Singularity,"" I'm not sure if there is a direct connection there. There might well be, but Penkin could have equally likely been more generally drawing upon the Hollywood compositional style that's popular these days--which is, not incidentally, heavily influenced by Hans Zimmer.";False;False;;;;1610247559;;1610247853.0;{};giq3rn9;False;t3_ku5b5y;False;False;t3_ku5b5y;/r/anime/comments/ku5b5y/the_rising_of_the_shield_hero_and_interstellar/giq3rn9/;1610291782;6;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610247565;moderator;False;{};giq3rzp;False;t3_ku5ws8;False;True;t3_ku5ws8;/r/anime/comments/ku5ws8/question_about_naruto_episode_3/giq3rzp/;1610291789;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610247605;;False;{};giq3uln;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giq3uln/;1610291838;12;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610247612;moderator;False;{};giq3v46;False;t3_ku5xa0;False;True;t3_ku5xa0;/r/anime/comments/ku5xa0/what_on_earth_is_this_anime_please_help_i_watched/giq3v46/;1610291848;1;False;False;anime;t5_2qh22;;0;[]; -[];;;WatsHizFase;;;[];;;;text;t2_182xuh5m;False;False;[];;Rosario to Vampire;False;False;;;;1610247689;;False;{};giq406n;False;t3_ku5xa0;False;True;t3_ku5xa0;/r/anime/comments/ku5xa0/what_on_earth_is_this_anime_please_help_i_watched/giq406n/;1610291945;4;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 125, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'When you come across a feel-good thing.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'icon_width': 2048, 'id': 'award_5f123e3d-4f48-42f4-9c11-e98b566d5897', 'is_enabled': True, 'is_new': False, 'name': 'Wholesome', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;Sygamar;;;[];;;;text;t2_33t81x0x;False;False;[];;When one of the best animated of moments of the series is Morgans beating the shit out of a government agent and I am not complaining. Big news!;False;False;;;;1610247716;;False;{};giq41yi;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giq41yi/;1610291979;198;True;False;anime;t5_2qh22;;1;[]; -[];;;Somer-_-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Somer-_-;light;text;t2_95bkc;False;False;[];;That episode was beautiful. Especially that Morgans segment.;False;False;;;;1610247751;;False;{};giq446q;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giq446q/;1610292018;18;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610247798;moderator;False;{};giq4757;False;t3_ku5zcx;False;True;t3_ku5zcx;/r/anime/comments/ku5zcx/can_someone_tell_me_what_this_anime_is_called_my/giq4757/;1610292069;2;False;False;anime;t5_2qh22;;0;[]; -[];;;Byakko168;;;[];;;;text;t2_5b903zap;False;False;[];;Hataraku Maou-sama;False;False;;;;1610247837;;False;{};giq49mg;False;t3_ku5zcx;False;True;t3_ku5zcx;/r/anime/comments/ku5zcx/can_someone_tell_me_what_this_anime_is_called_my/giq49mg/;1610292114;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Darkfrozen537;;;[];;;;text;t2_16wnb2zs;False;False;[];;Holy shit animation looks like a movie and the story is fucking good.;False;False;;;;1610247879;;False;{};giq4cc1;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giq4cc1/;1610292167;60;True;False;anime;t5_2qh22;;0;[]; -[];;;keithohara;;;[];;;;text;t2_gbzf7q;False;True;[];;As a manga reader I can only be so erect;False;False;;;;1610247931;;False;{};giq4fkb;False;t3_ku5zpj;False;False;t3_ku5zpj;/r/anime/comments/ku5zpj/tomorrow_attack_on_titans_most_anticipated/giq4fkb/;1610292227;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ThatBump;;;[];;;;text;t2_4pz0uwg2;False;False;[];;Devil as a part timer;False;False;;;;1610248065;;False;{};giq4o1c;False;t3_ku5zcx;False;True;t3_ku5zcx;/r/anime/comments/ku5zcx/can_someone_tell_me_what_this_anime_is_called_my/giq4o1c/;1610292387;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kalinnkandii;;;[];;;;text;t2_85bvm8qs;False;False;[];;thank you! :);False;False;;;;1610248102;;False;{};giq4qdc;False;t3_ku5zcx;False;True;t1_giq4o1c;/r/anime/comments/ku5zcx/can_someone_tell_me_what_this_anime_is_called_my/giq4qdc/;1610292436;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Diego237;;;[];;;;text;t2_n70ll;False;False;[];;Budget has very little to do with how great this arc looks. This episode was directed by Megumi Ishitani and had some great animators in it, she seems to be an amazing director at Toei;False;False;;;;1610248113;;False;{};giq4r2c;False;t3_ku4yjy;False;False;t1_giq1h7n;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giq4r2c/;1610292449;69;True;False;anime;t5_2qh22;;0;[]; -[];;;ProfessorJackH0ff;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/;light;text;t2_4y844c07;False;False;[];;Yes, but rules unfortunately remove anyone who says them out loud. So, good luck!;False;False;;;;1610248226;;False;{};giq4yjl;False;t3_ku634v;False;True;t3_ku634v;/r/anime/comments/ku634v/noooo_anyone_have_any_website_recommendations/giq4yjl/;1610292585;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610248282;;False;{};giq524d;False;t3_ku634v;False;True;t1_giq4yjl;/r/anime/comments/ku634v/noooo_anyone_have_any_website_recommendations/giq524d/;1610292653;0;True;False;anime;t5_2qh22;;0;[]; -[];;;R4yuga61;;;[];;;;text;t2_94ct5fop;False;False;[];;This is what EPICness known as, this arc gonna rock;False;False;;;;1610248284;;False;{};giq5292;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giq5292/;1610292655;31;True;False;anime;t5_2qh22;;0;[]; -[];;;Roketsu86;;;[];;;;text;t2_hwze9;False;False;[];;"Here's a list of legal streaming services. Most of them have free options: - -http://reddit.com/r/anime/w/legal_streams - -Use https://www.justwatch.com/ to find where a particular show is streaming.";False;False;;;;1610248359;;False;{};giq577a;False;t3_ku634v;False;True;t3_ku634v;/r/anime/comments/ku634v/noooo_anyone_have_any_website_recommendations/giq577a/;1610292749;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Domzxc104;;;[];;;;text;t2_3wx6qtxz;False;False;[];;So where does acidic and holy tittie milk from queens Blade go into affect here;False;False;;;;1610248400;;False;{};giq59sh;False;t3_ku63wp;False;True;t3_ku63wp;/r/anime/comments/ku63wp/how_many_types_of_spiritual_power_systems_are/giq59sh/;1610292801;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DireSickFish;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/DireSickFish;light;text;t2_mfrxc;False;False;[];;Really upset there won't be more seasons. That first goblin fight really set the tone for the show. And I liked how terrible they were at the whole thing.;False;False;;;;1610248464;;False;{};giq5dx0;False;t3_ku47b4;False;False;t3_ku47b4;/r/anime/comments/ku47b4/grimgar_ashes_and_illusions/giq5dx0/;1610292881;8;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;I'd be remiss not to point out the fact that the event in question may be cancelled because of the ongoing COVID-19 pandemic.;False;False;;;;1610248551;;False;{};giq5jji;False;t3_ku5tqf;False;True;t3_ku5tqf;/r/anime/comments/ku5tqf/anime_expo_general_questions/giq5jji/;1610292987;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;I dropped the manga after chapter 100 since I wanted to experience it thru animation after this episode;False;False;;;;1610248647;;False;{};giq5ps7;False;t3_ku5zpj;False;True;t3_ku5zpj;/r/anime/comments/ku5zpj/tomorrow_attack_on_titans_most_anticipated/giq5ps7/;1610293100;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610248697;moderator;False;{};giq5swl;False;t3_ku68jk;False;True;t3_ku68jk;/r/anime/comments/ku68jk/whats_the_one_anime_where_the_female_side/giq5swl/;1610293160;1;False;False;anime;t5_2qh22;;0;[]; -[];;;smiley-rell;;;[];;;;text;t2_9iaznvjw;False;False;[];;My dick is so hard waiting for this episode. After this it will be the gabi episode.;False;False;;;;1610248720;;False;{};giq5ud2;False;t3_ku5zpj;False;True;t1_giq4fkb;/r/anime/comments/ku5zpj/tomorrow_attack_on_titans_most_anticipated/giq5ud2/;1610293186;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610248806;moderator;False;{};giq5ztn;False;t3_ku69k6;False;True;t3_ku69k6;/r/anime/comments/ku69k6/need_help_to_identify_where_this_picture_is_from/giq5ztn/;1610293285;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;Ladies Vs Butlers I guess? It happens there though she's a main girl;False;False;;;;1610248833;;False;{};giq61lw;False;t3_ku68jk;False;True;t3_ku68jk;/r/anime/comments/ku68jk/whats_the_one_anime_where_the_female_side/giq61lw/;1610293318;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bionines;;;[];;;;text;t2_7d3xged8;False;False;[];;This is an amazing series you have to keep watching :);False;False;;;;1610248848;;False;{};giq62kb;False;t3_ku65n3;False;False;t3_ku65n3;/r/anime/comments/ku65n3/made_in_abyss_episode_1_2_review/giq62kb/;1610293338;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LoomingOrangutan;;;[];;;;text;t2_2gla9z23;False;False;[];;I want to eat your pancreas.;False;False;;;;1610248892;;False;{};giq65by;False;t3_ku69k6;False;True;t3_ku69k6;/r/anime/comments/ku69k6/need_help_to_identify_where_this_picture_is_from/giq65by/;1610293388;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kingjester88;;;[];;;;text;t2_u7gmz;False;False;[];;Literally one of the best Anime IMO. The sound and environments are amazing and characters are all really interesting.;False;False;;;;1610248905;;False;{};giq6668;False;t3_ku65n3;False;True;t3_ku65n3;/r/anime/comments/ku65n3/made_in_abyss_episode_1_2_review/giq6668/;1610293403;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hentaifan69;;;[];;;;text;t2_2py862cl;False;False;[];;Thank you;False;False;;;;1610248994;;False;{};giq6bxk;True;t3_ku69k6;False;True;t1_giq65by;/r/anime/comments/ku69k6/need_help_to_identify_where_this_picture_is_from/giq6bxk/;1610293509;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lovelattae;;;[];;;;text;t2_3woghbhi;False;False;[];;"Been waiting For 2 weeks! -Finally!";False;False;;;;1610249082;;1610249407.0;{};giq6hp7;False;t3_ku5zpj;False;True;t3_ku5zpj;/r/anime/comments/ku5zpj/tomorrow_attack_on_titans_most_anticipated/giq6hp7/;1610293615;1;True;False;anime;t5_2qh22;;0;[]; -[];;;l3reezer;;;[];;;;text;t2_8uq96;False;False;[];;That scene had some good Lupin the Third-type vibes going on;False;False;;;;1610249275;;False;{};giq6u0m;False;t3_ku4yjy;False;False;t1_giq41yi;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giq6u0m/;1610293846;46;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610249278;moderator;False;{};giq6u9s;False;t3_ku6e71;False;True;t3_ku6e71;/r/anime/comments/ku6e71/on_funimation_the_episode_of_one_piece_says_its/giq6u9s/;1610293850;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi KyleR9173, it seems like you might be looking for a show's watch order! - -On our [watch order wiki](https://www.reddit.com/r/anime/wiki/watch_order) you can find suggested orders for a ton of shows (hopefully including the one you're looking for), as well as information that will help you decide on what to watch for the more complicated series <cough> Gundam <cough>. - -[](#heartbot) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610249341;moderator;False;{};giq6yg8;False;t3_ku6etx;False;False;t3_ku6etx;/r/anime/comments/ku6etx/kara_no_kyoukai_watch_order/giq6yg8/;1610293924;1;False;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Release order is fine.;False;False;;;;1610249360;;False;{};giq6zol;False;t3_ku6etx;False;False;t3_ku6etx;/r/anime/comments/ku6etx/kara_no_kyoukai_watch_order/giq6zol/;1610293945;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LoomingOrangutan;;;[];;;;text;t2_2gla9z23;False;False;[];;No prob. It’s a good movie. Highly recommended.;False;False;;;;1610249423;;False;{};giq73r5;False;t3_ku69k6;False;True;t1_giq6bxk;/r/anime/comments/ku69k6/need_help_to_identify_where_this_picture_is_from/giq73r5/;1610294020;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;Which episode;False;False;;;;1610249447;;False;{};giq75ef;False;t3_ku6e71;False;True;t3_ku6e71;/r/anime/comments/ku6e71/on_funimation_the_episode_of_one_piece_says_its/giq75ef/;1610294048;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;In release order;False;False;;;;1610249448;;False;{};giq75hc;False;t3_ku6etx;False;True;t3_ku6etx;/r/anime/comments/ku6etx/kara_no_kyoukai_watch_order/giq75hc/;1610294050;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610249502;moderator;False;{};giq794d;False;t3_ku6gej;False;True;t3_ku6gej;/r/anime/comments/ku6gej/please_help_me_find_a_new_shojo_anime_to_watch/giq794d/;1610294126;1;False;False;anime;t5_2qh22;;0;[]; -[];;;bnichols924;;;[];;;;text;t2_15y03a;False;False;[];;It almost feels like they cut back on animation budget for the first two acts to throw it all into this one. At least that’s my hope.;False;False;;;;1610249535;;False;{};giq7bat;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giq7bat/;1610294167;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Melonmans;;;[];;;;text;t2_9kom32s2;False;False;[];;If you haven’t watched Naruto bleach and hunterxhunter you should;False;False;;;;1610249674;;False;{};giq7kuq;False;t3_ku6h36;False;True;t3_ku6h36;/r/anime/comments/ku6h36/my_anime_watch_list_recommendations_please/giq7kuq/;1610294344;2;True;False;anime;t5_2qh22;;0;[]; -[];;;braedentmg_1;;;[];;;;text;t2_4gxwypz5;False;False;[];;Check out the website myanimelist, it gives you a tone of good ideas for shows to watch;False;False;;;;1610249702;;False;{};giq7mv9;False;t3_ku6h36;False;True;t3_ku6h36;/r/anime/comments/ku6h36/my_anime_watch_list_recommendations_please/giq7mv9/;1610294380;2;True;False;anime;t5_2qh22;;0;[]; -[];;;q_3;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;https://www.anime-planet.com/users/qqq333/anime/watching;light;text;t2_56s4r;False;False;[];;Looks like Guaiwaru pulled off a top 10 anime betrayal.;False;False;;;;1610249706;;False;{};giq7n5t;False;t3_ku4e5w;False;False;t3_ku4e5w;/r/anime/comments/ku4e5w/healin_goodprecure_episode_39_discussion/giq7n5t/;1610294384;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;"Hajime no Ippo - -Aria the Animation - -Dororo - -Girls Last Tour";False;False;;;;1610249708;;False;{};giq7n92;False;t3_ku6h36;False;True;t3_ku6h36;/r/anime/comments/ku6h36/my_anime_watch_list_recommendations_please/giq7n92/;1610294387;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thievingthestral;;;[];;;;text;t2_5so5nq5p;False;False;[];;Hunter x Hunter!;False;False;;;;1610249728;;False;{};giq7ook;False;t3_ku6h36;False;True;t3_ku6h36;/r/anime/comments/ku6h36/my_anime_watch_list_recommendations_please/giq7ook/;1610294411;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Klimz18;;;[];;;;text;t2_6dbos64f;False;False;[];;I recommend Konosuba;False;False;;;;1610249736;;False;{};giq7p73;False;t3_ku6h36;False;True;t3_ku6h36;/r/anime/comments/ku6h36/my_anime_watch_list_recommendations_please/giq7p73/;1610294421;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WindbreakerHD2;;;[];;;;text;t2_15g8j4kb;False;False;[];;I recommend Accel World;False;False;;;;1610249736;;False;{};giq7p83;False;t3_ku6h36;False;True;t3_ku6h36;/r/anime/comments/ku6h36/my_anime_watch_list_recommendations_please/giq7p83/;1610294421;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Weepin-_-Bystander;;;[];;;;text;t2_3nn2qtdo;False;False;[];;Thanks I’ll give these a look!;False;False;;;;1610249742;;False;{};giq7plr;True;t3_ku6h36;False;True;t1_giq7n92;/r/anime/comments/ku6h36/my_anime_watch_list_recommendations_please/giq7plr/;1610294429;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Btw_kek;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SouvlakiSpace7;light;text;t2_i0pj6;False;False;[];;[this is release order](https://imgur.com/gkyFuPE);False;False;;;;1610249745;;False;{};giq7puc;False;t3_ku6etx;False;True;t3_ku6etx;/r/anime/comments/ku6etx/kara_no_kyoukai_watch_order/giq7puc/;1610294433;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Weepin-_-Bystander;;;[];;;;text;t2_3nn2qtdo;False;False;[];;Thank you!;False;False;;;;1610249752;;False;{};giq7qb3;True;t3_ku6h36;False;True;t1_giq7mv9;/r/anime/comments/ku6h36/my_anime_watch_list_recommendations_please/giq7qb3/;1610294442;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;"Heartcatch Precure - -They Were 11";False;False;;;;1610249762;;False;{};giq7qz7;False;t3_ku6gej;False;True;t3_ku6gej;/r/anime/comments/ku6gej/please_help_me_find_a_new_shojo_anime_to_watch/giq7qz7/;1610294461;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gachalife101;;;[];;;;text;t2_4ja28ijs;False;False;[];;Psst watch fate zero if u like eddgy physiological stuff;False;False;;;;1610249766;;False;{};giq7ra1;False;t3_ku6h36;False;True;t3_ku6h36;/r/anime/comments/ku6h36/my_anime_watch_list_recommendations_please/giq7ra1/;1610294472;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;release order;False;False;;;;1610249772;;False;{};giq7rns;False;t3_ku6etx;False;False;t3_ku6etx;/r/anime/comments/ku6etx/kara_no_kyoukai_watch_order/giq7rns/;1610294483;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Weepin-_-Bystander;;;[];;;;text;t2_3nn2qtdo;False;False;[];;I’ve heard hunter x hunter is good, thanks for the recommendation;False;False;;;;1610249773;;False;{};giq7rs0;True;t3_ku6h36;False;True;t1_giq7kuq;/r/anime/comments/ku6h36/my_anime_watch_list_recommendations_please/giq7rs0/;1610294487;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Have you watched FuruBa 2019?;False;False;;;;1610249774;;False;{};giq7rtj;False;t3_ku6gej;False;False;t3_ku6gej;/r/anime/comments/ku6gej/please_help_me_find_a_new_shojo_anime_to_watch/giq7rtj/;1610294487;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MSPainter0830;;;[];;;;text;t2_66fujtho;False;False;[];;Try these! Monthly Girl’s Nozaki-kun, Kaichou wa Maid Sama, Re:Life, K;False;False;;;;1610249776;;False;{};giq7rzv;False;t3_ku6gej;False;False;t3_ku6gej;/r/anime/comments/ku6gej/please_help_me_find_a_new_shojo_anime_to_watch/giq7rzv/;1610294492;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Weepin-_-Bystander;;;[];;;;text;t2_3nn2qtdo;False;False;[];;Ahh! I forgot to add that to it, I’ve watch date and date zero but I don’t think any of the other ones;False;False;;;;1610249820;;False;{};giq7uym;True;t3_ku6h36;False;True;t1_giq7ra1;/r/anime/comments/ku6h36/my_anime_watch_list_recommendations_please/giq7uym/;1610294550;1;True;False;anime;t5_2qh22;;0;[]; -[];;;braedentmg_1;;;[];;;;text;t2_4gxwypz5;False;False;[];;No worries, I use it and it’s great for keeping track of anime you’ve seen as well;False;False;;;;1610249827;;False;{};giq7vfz;False;t3_ku6h36;False;True;t1_giq7qb3;/r/anime/comments/ku6h36/my_anime_watch_list_recommendations_please/giq7vfz/;1610294561;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aggravating-Bus-4019;;;[];;;;text;t2_7vv6t9je;False;False;[];;"That was the best episode in One Piece History - -The lighting mad my dick rise - -Boa for the first time mad me hard - -Dracula looked like a fucking boss - -Fuji Looked like a boss - -Holy fucking shit they even re did flashbacks they’ve never done that never ever holy shit";False;False;;;;1610249906;;False;{};giq80qx;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giq80qx/;1610294670;32;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;Banana fish;False;False;;;;1610250002;;False;{};giq879m;False;t3_ku6gej;False;True;t3_ku6gej;/r/anime/comments/ku6gej/please_help_me_find_a_new_shojo_anime_to_watch/giq879m/;1610294811;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;7 seeds;False;False;;;;1610250142;;False;{};giq8gdl;False;t3_ku6gej;False;True;t3_ku6gej;/r/anime/comments/ku6gej/please_help_me_find_a_new_shojo_anime_to_watch/giq8gdl/;1610294987;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;GabbytheAbby;;;[];;;;text;t2_5z4u22e0;False;False;[];;B R O!!!! You have good taste (: ....but I already watched them lol;False;False;;;;1610250261;;False;{};giq8o18;True;t3_ku6gej;False;True;t1_giq7rzv;/r/anime/comments/ku6gej/please_help_me_find_a_new_shojo_anime_to_watch/giq8o18/;1610295132;0;True;False;anime;t5_2qh22;;0;[]; -[];;;GabbytheAbby;;;[];;;;text;t2_5z4u22e0;False;False;[];;),: season 2 is not on hulu so I have not been able to watch it!!!!;False;False;;;;1610250331;;1610250580.0;{};giq8smg;True;t3_ku6gej;False;True;t1_giq7rtj;/r/anime/comments/ku6gej/please_help_me_find_a_new_shojo_anime_to_watch/giq8smg/;1610295217;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Text-Expert;;;[];;;;text;t2_8ryveixr;False;False;[];;"Watch them in the chronological order - -https://www.anime-planet.com/users/ShiroiNekoNoSoburin/lists/kara-no-kyoukai-series-chronological-ord-106698 - -Or the whole saga will be very confusing to you.";False;True;;comment score below threshold;;1610250359;;1610285175.0;{};giq8udi;False;t3_ku6etx;False;True;t3_ku6etx;/r/anime/comments/ku6etx/kara_no_kyoukai_watch_order/giq8udi/;1610295249;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;redddditer420;;;[];;;;text;t2_23au3gdw;False;False;[];;Oh boy....;False;False;;;;1610250404;;False;{};giq8x96;False;t3_ku65n3;False;False;t3_ku65n3;/r/anime/comments/ku65n3/made_in_abyss_episode_1_2_review/giq8x96/;1610295301;6;True;False;anime;t5_2qh22;;0;[]; -[];;;GabbytheAbby;;;[];;;;text;t2_5z4u22e0;False;False;[];;Really? For a shojo recommendation? Your choice is a post-apocalyptic story? I am not judging you...but its an interesting choice!;False;False;;;;1610250542;;False;{};giq9651;True;t3_ku6gej;False;False;t1_giq8gdl;/r/anime/comments/ku6gej/please_help_me_find_a_new_shojo_anime_to_watch/giq9651/;1610295464;0;True;False;anime;t5_2qh22;;0;[]; -[];;;kmacroxs;;;[];;;;text;t2_ly9zz;False;False;[];;If you have Netflix, there's Fate/Apocrypha, Fate/Extra Last Encore, Fate/Grand Order: First Order (movie), and Fate/Stay Night: Unlimited Blade Works on there.;False;False;;;;1610250562;;False;{};giq97f6;False;t3_ku6h36;False;True;t1_giq7uym;/r/anime/comments/ku6h36/my_anime_watch_list_recommendations_please/giq97f6/;1610295486;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;its one of the few animes ive seen with a shoujo tag. its not my genre for sure as a grown man, and was surprised it had the shoujo tag. I think maybe something Fruit Baskets is the only other anime I can think of that qualifies and thats pretty main stream common.;False;False;;;;1610250740;;False;{};giq9ik0;False;t3_ku6gej;False;True;t1_giq9651;/r/anime/comments/ku6gej/please_help_me_find_a_new_shojo_anime_to_watch/giq9ik0/;1610295698;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ashioksucks;;;[];;;;text;t2_738hklv0;False;False;[];;It ran in a shoujo magazine. It’s a shoujo.;False;False;;;;1610250772;;False;{};giq9kn1;False;t3_ku6gej;False;True;t1_giq9651;/r/anime/comments/ku6gej/please_help_me_find_a_new_shojo_anime_to_watch/giq9kn1/;1610295743;0;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;Lovely Complex, Skip Beat!, Ouran High School Host Club, Nodame Cantabile (josei);False;False;;;;1610250836;;False;{};giq9oqm;False;t3_ku6gej;False;True;t3_ku6gej;/r/anime/comments/ku6gej/please_help_me_find_a_new_shojo_anime_to_watch/giq9oqm/;1610295825;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bvblara;;;[];;;;text;t2_8d01xs66;False;False;[];;That’s the same with me, no point watching if I already know what it’s like;False;False;;;;1610250852;;False;{};giq9pqb;False;t3_ku6slw;False;True;t3_ku6slw;/r/anime/comments/ku6slw/is_it_still_worth_it_watching_naruto/giq9pqb/;1610295845;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Paradoxer5;;;[];;;;text;t2_46o0vxrr;False;False;[];;You can always try the first few episodes to see if you’ll get into it;False;False;;;;1610250956;;False;{};giq9whx;False;t3_ku6slw;False;True;t3_ku6slw;/r/anime/comments/ku6slw/is_it_still_worth_it_watching_naruto/giq9whx/;1610295976;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;What about Wotakoi?;False;False;;;;1610250987;;False;{};giq9ye3;False;t3_ku6gej;False;True;t1_giq8smg;/r/anime/comments/ku6gej/please_help_me_find_a_new_shojo_anime_to_watch/giq9ye3/;1610296009;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DoubleDuke101;;MAL;[];;https://myanimelist.net/profile/LadyAtna;dark;text;t2_xe8l3;False;False;[];;Does Calcifer from Howls Moving Castle count?;False;False;;;;1610251050;;False;{};giqa2dj;False;t3_ku6uoz;False;False;t3_ku6uoz;/r/anime/comments/ku6uoz/this_may_be_a_odd_question_but_what_are_some/giqa2dj/;1610296083;5;True;False;anime;t5_2qh22;;0;[]; -[];;;crypto_261;;;[];;;;text;t2_89gxyqnf;False;False;[];;"U could try my little monster , kimi ni todoke , kaichou wo maid sama.. -Or maybe Relife (don't know if it's shoujo but its very good)";False;False;;;;1610251104;;False;{};giqa5tw;False;t3_ku6gej;False;True;t3_ku6gej;/r/anime/comments/ku6gej/please_help_me_find_a_new_shojo_anime_to_watch/giqa5tw/;1610296155;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;There are tons of those in Fire Force;False;False;;;;1610251110;;False;{};giqa67v;False;t3_ku6uoz;False;False;t3_ku6uoz;/r/anime/comments/ku6uoz/this_may_be_a_odd_question_but_what_are_some/giqa67v/;1610296162;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;"I like it enough to say yes, but only you can really answer that. - -Watch some of it, and either stick with it if you like it, and drop it if you don't";False;False;;;;1610251137;;False;{};giqa7yn;False;t3_ku6slw;False;False;t3_ku6slw;/r/anime/comments/ku6slw/is_it_still_worth_it_watching_naruto/giqa7yn/;1610296200;2;True;False;anime;t5_2qh22;;0;[]; -[];;;caz_the_harper;;;[];;;;text;t2_11dica;False;False;[];;I mean..... you wanna tell them or should I?;False;False;;;;1610251198;;False;{};giqabt2;False;t3_ku65n3;False;True;t1_giq8x96;/r/anime/comments/ku65n3/made_in_abyss_episode_1_2_review/giqabt2/;1610296279;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RedDragonCats17;;;[];;;;text;t2_synl5ql;False;False;[];;Don't know who that is, so only one way to find out. To the Google dome!;False;False;;;;1610251274;;False;{};giqagtv;True;t3_ku6uoz;False;True;t1_giqa2dj;/r/anime/comments/ku6uoz/this_may_be_a_odd_question_but_what_are_some/giqagtv/;1610296374;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DoubleDuke101;;MAL;[];;https://myanimelist.net/profile/LadyAtna;dark;text;t2_xe8l3;False;False;[];;Google Fire Force while you're there.;False;False;;;;1610251316;;False;{};giqajid;False;t3_ku6uoz;False;True;t1_giqagtv;/r/anime/comments/ku6uoz/this_may_be_a_odd_question_but_what_are_some/giqajid/;1610296424;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AKG511;;;[];;;;text;t2_7dpk5tnf;False;False;[];;If the flames being red/orange isn't necessary, then I guess dimple from mob psycho counts?;False;False;;;;1610251322;;False;{};giqajx4;False;t3_ku6uoz;False;True;t3_ku6uoz;/r/anime/comments/ku6uoz/this_may_be_a_odd_question_but_what_are_some/giqajx4/;1610296432;1;True;False;anime;t5_2qh22;;0;[]; -[];;;A_Vicarious_Death;;;[];;;;text;t2_62kna;False;False;[];;"[Hype](/s ""Lmao all of these people talking about how this is the best episode yet are going to be..._rocked_ by the next episode."")";False;False;;;;1610251323;;False;{};giqak1h;False;t3_ku4yjy;False;False;t1_gipxmkn;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqak1h/;1610296435;7;True;False;anime;t5_2qh22;;0;[]; -[];;;theanimegamer-___-;;;[];;;dark;text;t2_3vm3lj8d;False;False;[];;"OH SHIIIIIITT! Everything went from 0 to 100, including my hype. - -Those were the smoothest transitions ever but DAMN there is no way that Sabo is dead. Oda knows that the anime is slow and is doing this to torment us on purpose.";False;False;;;;1610251349;;False;{};giqalqt;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqalqt/;1610296470;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Itakie;;;[];;;;text;t2_fmch9;False;False;[];;"Damn really great episode! The worldbuilding ""off-topic"" episodes/chapters are always the best. And it really was about time to abolish the Warlords. We saw Crocodile save a city from pirates in one episode but the rest always just did their own evil stuff 'till Marineford. And even there some members did not even want to help or betrayed the World Government anyway (Blackbeard). They should have just hired them as Marines/CP something and not let them keep their work as pirates lol. - -But who can even fight them without the admirals? Except Garp and maybe Smoker, no one of the Vice Admrals is really on the same level of the Warlords. Numbers don't really work in One Piece, even 1000 Marine soldiers are nothing against Mihawk. Well... maybe Vegapunk invented some new shit.";False;False;;;;1610251367;;False;{};giqamvv;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqamvv/;1610296493;29;True;False;anime;t5_2qh22;;0;[]; -[];;;friedwormsandwich;;;[];;;;text;t2_12dx02;False;False;[];;I definitely disagree with everyone saying this was the BEST EPISODE EVER! What show are ya'll watching? The animation was good, but it was literally all dialogue/reactions and one punch to the face, so not much animation was really needed. Not trying to be a contrarian, but I'm a little shocked that my fellow One Piece fans think THIS was the best episode especially considering none of the main characters were in it lol.;False;True;;comment score below threshold;;1610251607;;False;{};giqb2oj;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqb2oj/;1610296789;-29;True;False;anime;t5_2qh22;;0;[]; -[];;;NekoWafers;;;[];;;;text;t2_iau18;False;False;[];;That was a hit of nostalgia. Fukai Mori is a decent fit as well.;False;False;;;;1610251661;;1610251849.0;{};giqb5za;False;t3_ku6qdg;False;True;t3_ku6qdg;/r/anime/comments/ku6qdg/yashahime_second_ending_with_my_will/giqb5za/;1610296852;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;He's not a flame though, he's just a spirit.;False;False;;;;1610251681;;False;{};giqb78m;False;t3_ku6uoz;False;True;t1_giqajx4;/r/anime/comments/ku6uoz/this_may_be_a_odd_question_but_what_are_some/giqb78m/;1610296874;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FlugonNine;;;[];;;;text;t2_hwd8h;False;False;[];;Calcifer from Howls moving castle come on people.;False;False;;;;1610251692;;False;{};giqb7zd;False;t3_ku6uoz;False;True;t3_ku6uoz;/r/anime/comments/ku6uoz/this_may_be_a_odd_question_but_what_are_some/giqb7zd/;1610296889;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FlugonNine;;;[];;;;text;t2_hwd8h;False;False;[];;Whoops didn't see your post lol, exactly this;False;False;;;;1610251758;;False;{};giqbc60;False;t3_ku6uoz;False;True;t1_giqa2dj;/r/anime/comments/ku6uoz/this_may_be_a_odd_question_but_what_are_some/giqbc60/;1610296971;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AKG511;;;[];;;;text;t2_7dpk5tnf;False;False;[];;He still looks like a flame though;False;False;;;;1610251768;;False;{};giqbcqh;False;t3_ku6uoz;False;False;t1_giqb78m;/r/anime/comments/ku6uoz/this_may_be_a_odd_question_but_what_are_some/giqbcqh/;1610296982;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;Some scenes from Promare;False;False;;;;1610251811;;False;{};giqbfh4;False;t3_ku6uoz;False;True;t3_ku6uoz;/r/anime/comments/ku6uoz/this_may_be_a_odd_question_but_what_are_some/giqbfh4/;1610297034;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi batuuu22, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610251819;moderator;False;{};giqbfxu;False;t3_ku72xf;False;True;t3_ku72xf;/r/anime/comments/ku72xf/good_romance_anime_movies/giqbfxu/;1610297043;1;False;False;anime;t5_2qh22;;0;[]; -[];;;farson135;;;[];;;;text;t2_bp6v36d;False;False;[];;Release order. KnK is a mystery show, and it is told out of order for a reason.;False;False;;;;1610251823;;False;{};giqbg7p;False;t3_ku6etx;False;True;t3_ku6etx;/r/anime/comments/ku6etx/kara_no_kyoukai_watch_order/giqbg7p/;1610297049;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lycantail;;;[];;;;text;t2_1ixooshh;False;False;[];;It's about the journey, not the destination.;False;False;;;;1610251906;;False;{};giqblcn;False;t3_ku6slw;False;True;t3_ku6slw;/r/anime/comments/ku6slw/is_it_still_worth_it_watching_naruto/giqblcn/;1610297145;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FlugonNine;;;[];;;;text;t2_hwd8h;False;False;[];;"If you're looking for something to use as inspiration, im not really sure. Even Fire force has hard lines and defined limbs for the fire people, although the flames surround and emanate from them, theres still physical form, so not really what your idea is. - -It may be too time consuming trying to get that look and movement down pat, I'd say practice drawing over some silhouettes and see if having the base and removing it after helps get you closer to your vision.";False;False;;;;1610252034;;False;{};giqbtr5;False;t3_ku6uoz;False;False;t3_ku6uoz;/r/anime/comments/ku6uoz/this_may_be_a_odd_question_but_what_are_some/giqbtr5/;1610297305;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GhoulTinzal;;;[];;;;text;t2_2q6i7k2r;False;False;[];;I think speaking from just production side this is defo up there, but it was kind of an infodump;False;False;;;;1610252085;;False;{};giqbx4z;False;t3_ku4yjy;False;False;t1_giqb2oj;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqbx4z/;1610297369;10;True;False;anime;t5_2qh22;;0;[]; -[];;;mug_O_bun;;;[];;;;text;t2_5ddhm7xf;False;False;[];;Maybe wotakoi;False;False;;;;1610252092;;False;{};giqbxko;False;t3_ku72xf;False;True;t3_ku72xf;/r/anime/comments/ku72xf/good_romance_anime_movies/giqbxko/;1610297377;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Darius_Skucas;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Darius_03;light;text;t2_30wsu7u0;False;False;[];;Bunny girl does not dream of a dreaming girl;False;False;;;;1610252105;;False;{};giqbyhh;False;t3_ku72xf;False;True;t3_ku72xf;/r/anime/comments/ku72xf/good_romance_anime_movies/giqbyhh/;1610297393;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610252115;moderator;False;{};giqbz5d;False;t3_ku75jk;False;True;t3_ku75jk;/r/anime/comments/ku75jk/if_anybody_could_tell_me_the_name_of_this_anime/giqbz5d/;1610297405;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Voice_Overall;;;[];;;;text;t2_7zgxbynh;False;False;[];;"Love, Chunibyo & Other Delusions: Take on Me - -Tamako-Love-Story - -A Silent Voice - -Your name";False;False;;;;1610252248;;False;{};giqc7tl;False;t3_ku72xf;False;True;t3_ku72xf;/r/anime/comments/ku72xf/good_romance_anime_movies/giqc7tl/;1610297587;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RedDragonCats17;;;[];;;;text;t2_synl5ql;False;False;[];;"I know what my characters look like. I'm just wondering if it's been done before and if it's a pain in the butt. I'm no artist, in fact I'm gonna commission these characters to one of 2 artists I know who can draw in a 90's anime style. I already commissioned 2 characters, and I can show them, but I don't want to just post them right off the bat. After posting one of them to another community which revolves around character designer, I don't necessarily feel comfortable posting them in reddit. I just want a audience and the okay from said audience. - -When will I commission the flame characters? Honestly, I have no clue since I don't have an audience that's interested in this thing, since it's ambitious as all living hell.";False;False;;;;1610252358;;False;{};giqcevj;True;t3_ku6uoz;False;False;t1_giqbtr5;/r/anime/comments/ku6uoz/this_may_be_a_odd_question_but_what_are_some/giqcevj/;1610297723;0;True;False;anime;t5_2qh22;;0;[]; -[];;;_cjessop18_;;;[];;;;text;t2_2zh548gv;False;False;[];;Best episode of One Piece to have aired in years. Anime of the year if they finish Act 3 and keep up this level of quality before 2022;False;False;;;;1610252642;;False;{};giqcxa3;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqcxa3/;1610298106;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;"I want to eat your pancreas - -Your name";False;False;;;;1610252994;;False;{};giqdj5v;False;t3_ku72xf;False;False;t3_ku72xf;/r/anime/comments/ku72xf/good_romance_anime_movies/giqdj5v/;1610298562;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610253059;moderator;False;{};giqdnc4;False;t3_ku7f60;False;True;t3_ku7f60;/r/anime/comments/ku7f60/searching_for_a_movie/giqdnc4/;1610298643;1;False;False;anime;t5_2qh22;;0;[]; -[];;;YuriAddict7;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/R1seKujikawa/;light;text;t2_3zn8celm;False;False;[];;Damn i havemt watched one piece anime sonce thriller bark. It looks actually decent now wtf;False;False;;;;1610253100;;False;{};giqdq13;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqdq13/;1610298693;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610253160;moderator;False;{};giqdtwh;False;t3_ku7g5h;False;True;t3_ku7g5h;/r/anime/comments/ku7g5h/anyone_know_where_i_can_watch_celestial_method/giqdtwh/;1610298772;1;False;False;anime;t5_2qh22;;0;[]; -[];;;reseph;;MAL;[];;http://myanimelist.net/profile/Zenoxio/;dark;text;t2_37jka;False;False;[];;Why you have to spoil this to us anime viewers?;False;False;;;;1610253479;;False;{};giqeea5;False;t3_ku4yjy;False;False;t1_giq3uln;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqeea5/;1610299234;24;True;False;anime;t5_2qh22;;0;[]; -[];;;TrailOfEnvy;;;[];;;;text;t2_o6dtk1;False;False;[];;The manga and anime are in same act right now;False;False;;;;1610253570;;False;{};giqejzc;False;t3_ku4yjy;False;False;t1_giq3uln;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqejzc/;1610299346;9;True;False;anime;t5_2qh22;;0;[]; -[];;;TouretteCanBeFun;;;[];;;;text;t2_2sm068d8;False;False;[];;Summer wars;False;False;;;;1610253649;;False;{};giqeosb;False;t3_ku7f60;False;False;t3_ku7f60;/r/anime/comments/ku7f60/searching_for_a_movie/giqeosb/;1610299442;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610253677;moderator;False;{};giqeqhi;False;t3_ku7ky7;False;True;t3_ku7ky7;/r/anime/comments/ku7ky7/is_yuki_from_vampire_knights_a_trap/giqeqhi/;1610299475;1;False;False;anime;t5_2qh22;;0;[]; -[];;;ShaftDoughnuts;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/xCurious?q=xCurious;light;text;t2_1cow84qw;False;False;[];;There is an all flame Digimon! I don't know its name though;False;False;;;;1610253694;;False;{};giqergr;False;t3_ku6uoz;False;True;t3_ku6uoz;/r/anime/comments/ku6uoz/this_may_be_a_odd_question_but_what_are_some/giqergr/;1610299493;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vz-Rei;;;[];;;;text;t2_jsfq9;False;False;[];;DBZ and Yu gi oh are classics so I wouldn't say it's that low. Just you're newer;False;False;;;;1610253721;;False;{};giqet0j;False;t3_ku7jrv;False;True;t3_ku7jrv;/r/anime/comments/ku7jrv/i_realized_ive_set_the_bar_too_low_for_anime_that/giqet0j/;1610299525;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Except for the French thing they are all anime and not all of them are for kids unless you watched the 4kids version that's literally for kids lol;False;False;;;;1610253731;;False;{};giqetm9;False;t3_ku7jrv;False;True;t3_ku7jrv;/r/anime/comments/ku7jrv/i_realized_ive_set_the_bar_too_low_for_anime_that/giqetm9/;1610299535;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TrailOfEnvy;;;[];;;;text;t2_o6dtk1;False;False;[];;The chapter that this episode adapted was one of the hypest chapter in 2019;False;False;;;;1610253745;;False;{};giqeugr;False;t3_ku4yjy;False;False;t1_giqb2oj;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqeugr/;1610299551;10;True;False;anime;t5_2qh22;;0;[]; -[];;;TouretteCanBeFun;;;[];;;;text;t2_2sm068d8;False;False;[];;Drifters is a sort of isekai;False;False;;;;1610253756;;False;{};giqev54;False;t3_ku6une;False;True;t3_ku6une;/r/anime/comments/ku6une/need_some_new_anime/giqev54/;1610299563;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lycopenegold;;;[];;;;text;t2_l4bucny;False;False;[];;goddamn this episode felt like a 20-minute movie;False;False;;;;1610253766;;False;{};giqevqw;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqevqw/;1610299576;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Techsreddit;;;[];;;;text;t2_k1qfbfy;False;False;[];;Well yea on the French thing, it’s just code Lyoko was in my folder labeled anime, which I made 4 years ago.;False;False;;;;1610253794;;False;{};giqexdo;True;t3_ku7jrv;False;True;t1_giqetm9;/r/anime/comments/ku7jrv/i_realized_ive_set_the_bar_too_low_for_anime_that/giqexdo/;1610299608;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ByakuGuy;;;[];;;;text;t2_3kxvc0kw;False;False;[];;You care too much what others think of you;False;False;;;;1610253821;;False;{};giqeyy9;False;t3_ku7jrv;False;False;t3_ku7jrv;/r/anime/comments/ku7jrv/i_realized_ive_set_the_bar_too_low_for_anime_that/giqeyy9/;1610299650;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Techsreddit;;;[];;;;text;t2_k1qfbfy;False;False;[];;Thanks;False;False;;;;1610253826;;False;{};giqez8o;True;t3_ku7jrv;False;True;t1_giqet0j;/r/anime/comments/ku7jrv/i_realized_ive_set_the_bar_too_low_for_anime_that/giqez8o/;1610299656;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TouretteCanBeFun;;;[];;;;text;t2_2sm068d8;False;False;[];;"Naruro & Naruto shippuden yes, boruto no";False;False;;;;1610253829;;False;{};giqezgr;False;t3_ku6slw;False;True;t3_ku6slw;/r/anime/comments/ku6slw/is_it_still_worth_it_watching_naruto/giqezgr/;1610299659;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KDnuni;;MAL;[];;http://myanimelist.net/animelist/KDnuni;dark;text;t2_couvg;False;False;[];;Big News! Big Quality!;False;False;;;;1610253898;;False;{};giqf3gj;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqf3gj/;1610299741;13;True;False;anime;t5_2qh22;;0;[]; -[];;;tailor31415;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/tailor31415;light;text;t2_zr3cx;False;False;[];;she is established as a girl from the start, what are you talking about;False;False;;;;1610253993;;False;{};giqf90w;False;t3_ku7ky7;False;False;t3_ku7ky7;/r/anime/comments/ku7ky7/is_yuki_from_vampire_knights_a_trap/giqf90w/;1610299904;3;True;False;anime;t5_2qh22;;0;[]; -[];;;winter_wager;;;[];;;;text;t2_2e3ltea1;False;False;[];;I’m pretty much caught on Boruto. I’m in too deep, I can’t quit now 😭;False;False;;;;1610254020;;False;{};giqfam7;True;t3_ku6slw;False;True;t1_giqezgr;/r/anime/comments/ku6slw/is_it_still_worth_it_watching_naruto/giqfam7/;1610299933;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RageHivemind;;;[];;;;text;t2_4dcaqeq7;False;False;[];;Oh well i might have gotten confused then. Thank you;False;False;;;;1610254033;;False;{};giqfbc1;True;t3_ku7ky7;False;True;t1_giqf90w;/r/anime/comments/ku7ky7/is_yuki_from_vampire_knights_a_trap/giqfbc1/;1610299945;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Aromatic-Net8882;;;[];;;;text;t2_9qz5yvan;False;False;[];;[redacted];False;False;;;;1610254037;;False;{};giqfblh;False;t3_ku7g5h;False;True;t3_ku7g5h;/r/anime/comments/ku7g5h/anyone_know_where_i_can_watch_celestial_method/giqfblh/;1610299950;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RocielKuromiko;;;[];;;;text;t2_w89ub9;False;False;[];;Nahhh that series gets kinky in other taboo ways.;False;False;;;;1610254139;;False;{};giqfhic;False;t3_ku7ky7;False;True;t3_ku7ky7;/r/anime/comments/ku7ky7/is_yuki_from_vampire_knights_a_trap/giqfhic/;1610300055;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610254152;moderator;False;{};giqfi8l;False;t3_ku7p92;False;True;t3_ku7p92;/r/anime/comments/ku7p92/recommend_me_a_recent_anime_please/giqfi8l/;1610300068;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi skragglenuts, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610254153;moderator;False;{};giqfi9b;False;t3_ku7p92;False;True;t3_ku7p92;/r/anime/comments/ku7p92/recommend_me_a_recent_anime_please/giqfi9b/;1610300069;1;False;False;anime;t5_2qh22;;0;[]; -[];;;thefoxking1802;;;[];;;;text;t2_6n816ly5;False;False;[];;So this kinda has wizards in it but dorohedoro;False;False;;;;1610254197;;False;{};giqfkt2;False;t3_ku7p92;False;True;t3_ku7p92;/r/anime/comments/ku7p92/recommend_me_a_recent_anime_please/giqfkt2/;1610300114;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MyDreamsAreMemesNow;;;[];;;;text;t2_owlifqv;False;False;[];;I agree this is not the best episode EVER but I I do think this is definitely one of the best in Wano arc so far. Hopefully they keep up the good work;False;False;;;;1610254246;;False;{};giqfnon;False;t3_ku4yjy;False;False;t1_giqb2oj;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqfnon/;1610300165;12;True;False;anime;t5_2qh22;;0;[]; -[];;;MrRoboto12345;;;[];;;;text;t2_kk0qi;False;False;[];;"Anyone who has watched DB GT has their bar set too low - -I never liked code lyoko cause of the animation style - -As for beyblade and digimon... Interesting choices";False;False;;;;1610254350;;False;{};giqftqg;False;t3_ku7jrv;False;True;t3_ku7jrv;/r/anime/comments/ku7jrv/i_realized_ive_set_the_bar_too_low_for_anime_that/giqftqg/;1610300281;0;True;False;anime;t5_2qh22;;0;[]; -[];;;some314;;;[];;;;text;t2_jxdjh;False;False;[];;"nothing inherently wrong with watching anime ""for kids."" there's a ton of great content to be had there (and in basically every genre) - -a low bar is great! especially since you already seem open to exploring what else is out there--lots of room for upward growth";False;False;;;;1610254384;;False;{};giqfvme;False;t3_ku7jrv;False;False;t3_ku7jrv;/r/anime/comments/ku7jrv/i_realized_ive_set_the_bar_too_low_for_anime_that/giqfvme/;1610300317;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Basically you want Gurren Lagann and Kill la Kill - -You didn't watch anything after the 2000s?";False;False;;;;1610254386;;False;{};giqfvrx;False;t3_ku7p92;False;True;t3_ku7p92;/r/anime/comments/ku7p92/recommend_me_a_recent_anime_please/giqfvrx/;1610300320;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Briaria;;MAL;[];;https://myanimelist.net/profile/Briaria;dark;text;t2_mt0w3;False;False;[];;"Yeah ok One Piece. - -You can try pulling that ""Sabo is dead"" shit again, but I aint falling for it. Fool me once...";False;False;;;;1610254388;;False;{};giqfvwb;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqfvwb/;1610300322;155;True;False;anime;t5_2qh22;;0;[]; -[];;;Techsreddit;;;[];;;;text;t2_k1qfbfy;False;False;[];;"First on Gt, I said I watched it, not that I liked it, - -Secondly Code Lyoko was cool for the time and the country of origin being a shot in the dark for my idea of “anime” although you can’t call it that.";False;False;;;;1610254441;;False;{};giqfyys;True;t3_ku7jrv;False;True;t1_giqftqg;/r/anime/comments/ku7jrv/i_realized_ive_set_the_bar_too_low_for_anime_that/giqfyys/;1610300381;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610254461;moderator;False;{};giqg05e;False;t3_ku7s45;False;True;t3_ku7s45;/r/anime/comments/ku7s45/help_me_find_gl_harem/giqg05e/;1610300404;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi minty_bop, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610254462;moderator;False;{};giqg07c;False;t3_ku7s45;False;True;t3_ku7s45;/r/anime/comments/ku7s45/help_me_find_gl_harem/giqg07c/;1610300405;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610254478;moderator;False;{};giqg150;False;t3_ku7s98;False;True;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqg150/;1610300422;2;False;False;anime;t5_2qh22;;0;[]; -[];;;Techsreddit;;;[];;;;text;t2_k1qfbfy;False;False;[];;Yep, it’s nice to start simple and work your way up!;False;False;;;;1610254491;;False;{};giqg1v7;True;t3_ku7jrv;False;True;t1_giqfvme;/r/anime/comments/ku7jrv/i_realized_ive_set_the_bar_too_low_for_anime_that/giqg1v7/;1610300436;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BackgroundDirection8;;;[];;;;text;t2_7gn67g8s;False;False;[];;Wait frrr? I thought they were ahead of us?;False;False;;;;1610254532;;False;{};giqg47t;False;t3_ku4yjy;False;True;t1_giqejzc;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqg47t/;1610300478;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MrRoboto12345;;;[];;;;text;t2_kk0qi;False;False;[];;I heard the first like two seasons of digimon are good then it went down but not sure;False;False;;;;1610254536;;False;{};giqg4ht;False;t3_ku7jrv;False;True;t1_giqfyys;/r/anime/comments/ku7jrv/i_realized_ive_set_the_bar_too_low_for_anime_that/giqg4ht/;1610300484;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Techsreddit;;;[];;;;text;t2_k1qfbfy;False;False;[];;We don’t talk about anything beyond season 2, only season 1 and 2 exist in my book;False;False;;;;1610254582;;False;{};giqg742;True;t3_ku7jrv;False;True;t1_giqg4ht;/r/anime/comments/ku7jrv/i_realized_ive_set_the_bar_too_low_for_anime_that/giqg742/;1610300536;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thangpv2;;;[];;;;text;t2_57i3uhi1;False;False;[];;OMG, an anime from Ufotable;False;False;;;;1610254609;;False;{};giqg8ni;True;t3_ku7qyd;False;True;t3_ku7qyd;/r/anime/comments/ku7qyd/tsukihime_remake_official_op/giqg8ni/;1610300565;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;skythrill_kruger;;;[];;;;text;t2_9jpkqc41;False;False;[];;I watched one of them so far from your list which death note it’s a physiological thriller which has amazing designs, dialogues and screenplay. Personally for me it got me really interested in the anime from episode 1/2. I highly recommend to also watch Attack on Titan;False;False;;;;1610254695;;False;{};giqgdnd;False;t3_ku7s98;False;False;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqgdnd/;1610300658;12;True;False;anime;t5_2qh22;;0;[]; -[];;;skragglenuts;;;[];;;;text;t2_8lxr390h;False;False;[];;"No, not really. Life. - -Now with streaming available and lots of shows and movies available I'm trying to find some to watch, but want something to scratch a specific itch. - -I even started playing Xenosaga again.";False;False;;;;1610254696;;False;{};giqgdnx;True;t3_ku7p92;False;True;t1_giqfvrx;/r/anime/comments/ku7p92/recommend_me_a_recent_anime_please/giqgdnx/;1610300658;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Voice_Overall;;;[];;;;text;t2_7zgxbynh;False;False;[];;Watch Miss Kobayashi’s Dragon Maid. But of those five I’d start with Violet evergarden or demon slayer;False;False;;;;1610254749;;False;{};giqggmj;False;t3_ku7s98;False;True;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqggmj/;1610300760;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheGlassesGuy;;;[];;;;text;t2_xx7yj;False;False;[];;should note that this is the Opening for the VN remake not an anime OP;False;False;;;;1610254758;;False;{};giqgh5x;False;t3_ku7qyd;False;True;t3_ku7qyd;/r/anime/comments/ku7qyd/tsukihime_remake_official_op/giqgh5x/;1610300769;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Vint73;;;[];;;;text;t2_8acthgua;False;False;[];;"I own the 2003 series, & I'm sure to enjoy & collect this version too 🖤";False;False;;;;1610254787;;False;{};giqgiuv;False;t3_ku7qyd;False;True;t3_ku7qyd;/r/anime/comments/ku7qyd/tsukihime_remake_official_op/giqgiuv/;1610300804;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yoonisverse;;;[];;;;text;t2_873hfwc3;False;False;[];;It seem like you like shounen series. I recommend Attack on Titan, Fullmetal Alchemist Brotherhood, My Hero Academia, and Code Geass. These a popular and well liked series. I recommend going on myanimelist to explore and find niche shows!;False;False;;;;1610254859;;False;{};giqgmvr;False;t3_ku7s98;False;True;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqgmvr/;1610300878;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jessy-ra;;;[];;;;text;t2_8o3u3uth;False;False;[];;Im leaning towards demon slayer but i will also add miss kobayashi's dragon maid to my list;False;False;;;;1610254894;;False;{};giqgowf;True;t3_ku7s98;False;True;t1_giqggmj;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqgowf/;1610300913;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jessy-ra;;;[];;;;text;t2_8o3u3uth;False;False;[];;Yeah death note looks really interesting and i'll add attack on titan;False;False;;;;1610254943;;False;{};giqgrnv;True;t3_ku7s98;False;False;t1_giqgdnd;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqgrnv/;1610300966;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Cinder47;;;[];;;;text;t2_7bpslqq8;False;False;[];;"Toradora is pretty great - -My Little Monster - -Golden time";False;False;;;;1610254984;;False;{};giqgu0z;False;t3_ku72xf;False;True;t3_ku72xf;/r/anime/comments/ku72xf/good_romance_anime_movies/giqgu0z/;1610301007;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;yoonisverse;;;[];;;;text;t2_873hfwc3;False;False;[];;No. She’s just stating her boundaries. Why would you think she’s a “trap”?;False;False;;;;1610254985;;False;{};giqgu3l;False;t3_ku7ky7;False;True;t3_ku7ky7;/r/anime/comments/ku7ky7/is_yuki_from_vampire_knights_a_trap/giqgu3l/;1610301008;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Voice_Overall;;;[];;;;text;t2_7zgxbynh;False;False;[];;"I’d also suggest watching spice & Wolf and wandering witch but you may not like those";False;False;;;;1610254993;;False;{};giqgujl;False;t3_ku7s98;False;True;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqgujl/;1610301016;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TrailOfEnvy;;;[];;;;text;t2_o6dtk1;False;False;[];;Well, ...this episode adapt interlude between act 2 and act 3. We may enter act 3 in anime in next month. The manga currently still in act 3.;False;False;;;;1610254998;;False;{};giqguud;False;t3_ku4yjy;False;False;t1_giqg47t;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqguud/;1610301021;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Voice_Overall;;;[];;;;text;t2_7zgxbynh;False;False;[];;It’s fucking adorable;False;False;;;;1610255015;;False;{};giqgvua;False;t3_ku7s98;False;True;t1_giqgowf;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqgvua/;1610301039;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jessy-ra;;;[];;;;text;t2_8o3u3uth;False;False;[];;Oh ok thanks. I was just going off of names i've heard of but i'll check out myanimelist;False;False;;;;1610255031;;False;{};giqgwr5;True;t3_ku7s98;False;False;t1_giqgmvr;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqgwr5/;1610301054;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TaiDoll;;;[];;;;text;t2_rnumc;False;False;[];;It was said before that the main reason the gov't allowed this was because they had a replacement via Vegapunk so it's not out of the question. But I doubt anyone other than Buggy is getting captured here.;False;False;;;;1610255034;;False;{};giqgwwx;False;t3_ku4yjy;False;False;t1_giqamvv;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqgwwx/;1610301058;16;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;"Lol - -It is very rare to see a Lesbian harem, but - -check out ""ASSAULT LILY BOUQUET"" it has lots of lesbian harem vibes.";False;False;;;;1610255110;;False;{};giqh18y;False;t3_ku7s45;False;True;t3_ku7s45;/r/anime/comments/ku7s45/help_me_find_gl_harem/giqh18y/;1610301146;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jessy-ra;;;[];;;;text;t2_8o3u3uth;False;False;[];;Ok thanks! I'll look into them anyway;False;False;;;;1610255124;;False;{};giqh20d;True;t3_ku7s98;False;True;t1_giqgujl;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqh20d/;1610301160;1;True;False;anime;t5_2qh22;;0;[]; -[];;;uspnuts;;;[];;;;text;t2_3xc0j59i;False;False;[];;watch one piece u wont regret;False;False;;;;1610255150;;False;{};giqh3h0;False;t3_ku7s98;False;True;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqh3h0/;1610301186;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;yoonisverse;;;[];;;;text;t2_873hfwc3;False;False;[];;If you have a series that you already like, myanimelist will direct you to similar shows. It’s a great website;False;False;;;;1610255167;;False;{};giqh4fi;False;t3_ku7s98;False;True;t1_giqgwr5;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqh4fi/;1610301205;2;True;False;anime;t5_2qh22;;0;[]; -[];;;skythrill_kruger;;;[];;;;text;t2_9jpkqc41;False;False;[];;Awesome! Enjoy🙂;False;False;;;;1610255189;;False;{};giqh5mx;False;t3_ku7s98;False;False;t1_giqgrnv;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqh5mx/;1610301224;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jessy-ra;;;[];;;;text;t2_8o3u3uth;False;False;[];;Ok! I'll add it to the list;False;False;;;;1610255202;;False;{};giqh6ep;True;t3_ku7s98;False;True;t1_giqh3h0;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqh6ep/;1610301237;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610255220;;False;{};giqh7cw;False;t3_ku7s98;False;True;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqh7cw/;1610301256;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Play xenoblade 2 if you want to be up-to-date lol, one of my favorites games of all time;False;False;;;;1610255252;;False;{};giqh92s;False;t3_ku7p92;False;True;t1_giqgdnx;/r/anime/comments/ku7p92/recommend_me_a_recent_anime_please/giqh92s/;1610301289;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Code Lyoko was the shit when I was younger. I recall taping it on VHS once and I had a DvD with an episode;False;False;;;;1610255331;;False;{};giqhdea;False;t3_ku7jrv;False;True;t3_ku7jrv;/r/anime/comments/ku7jrv/i_realized_ive_set_the_bar_too_low_for_anime_that/giqhdea/;1610301367;2;True;False;anime;t5_2qh22;;0;[]; -[];;;yoonisverse;;;[];;;;text;t2_873hfwc3;False;False;[];;There’s nothing wrong with dub. Watch whatever you prefer. If you like these series, continue watching it. Anime is just a form of media and there’s many diverse shows. If you’re looking to explore, I recommend on going to myanimelist to find more series.;False;False;;;;1610255347;;False;{};giqhed1;False;t3_ku7jrv;False;True;t3_ku7jrv;/r/anime/comments/ku7jrv/i_realized_ive_set_the_bar_too_low_for_anime_that/giqhed1/;1610301385;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;"I Want To Eat Your Pancreas - -Your Name - -The Garden Of Words";False;False;;;;1610255411;;False;{};giqhhsx;False;t3_ku72xf;False;True;t3_ku72xf;/r/anime/comments/ku72xf/good_romance_anime_movies/giqhhsx/;1610301448;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Resident_Chemist_619;;;[];;;;text;t2_9993kzaf;False;False;[];;Attack on Titan, Mob Psycho 100, Naruto and Hunter X Hunter 2011 are some of my favourites so I recommend them.;False;False;;;;1610255427;;False;{};giqhiof;False;t3_ku7s98;False;False;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqhiof/;1610301465;7;True;False;anime;t5_2qh22;;0;[]; -[];;;TheTruthVeritas;;;[];;;;text;t2_1056nw;False;False;[];;Definitely, Code Lyoko was so good as a kid. It's one of a kind for sure. There's absolutely no shame in liking it.;False;False;;;;1610255495;;False;{};giqhmbo;False;t3_ku7jrv;False;True;t1_giqhdea;/r/anime/comments/ku7jrv/i_realized_ive_set_the_bar_too_low_for_anime_that/giqhmbo/;1610301530;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Its the VN's Opening.;False;False;;;;1610255510;;False;{};giqhn5n;False;t3_ku7qyd;False;True;t1_giqg8ni;/r/anime/comments/ku7qyd/tsukihime_remake_official_op/giqhn5n/;1610301544;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jessy-ra;;;[];;;;text;t2_8o3u3uth;False;False;[];;I have started naruto, but i'll definitely add the others to my list;False;False;;;;1610255513;;False;{};giqhn9s;True;t3_ku7s98;False;True;t1_giqhiof;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqhn9s/;1610301546;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;Dorohedoro is something else. Damn good though.;False;False;;;;1610255523;;False;{};giqhnut;False;t3_ku7p92;False;True;t1_giqfkt2;/r/anime/comments/ku7p92/recommend_me_a_recent_anime_please/giqhnut/;1610301555;3;True;False;anime;t5_2qh22;;0;[]; -[];;;thefoxking1802;;;[];;;;text;t2_6n816ly5;False;False;[];;It’s great;False;False;;;;1610255546;;False;{};giqhp3u;False;t3_ku7p92;False;True;t1_giqhnut;/r/anime/comments/ku7p92/recommend_me_a_recent_anime_please/giqhp3u/;1610301578;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheTruthVeritas;;;[];;;;text;t2_1056nw;False;False;[];;Digimon was actually pretty good. The first seasons and movie were quite nice. One of the later seasons that also featured Agumon and that guy that punched Digimon was also really damn good.;False;False;;;;1610255571;;False;{};giqhqj6;False;t3_ku7jrv;False;True;t3_ku7jrv;/r/anime/comments/ku7jrv/i_realized_ive_set_the_bar_too_low_for_anime_that/giqhqj6/;1610301604;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Resident_Chemist_619;;;[];;;;text;t2_9993kzaf;False;False;[];;If you haven’t been told this already, skip the fillers in Naruto. It’ll reduce the episode count from 720 to around 400, most fillers are boring and pointless.;False;False;;;;1610255602;;False;{};giqhsa2;False;t3_ku7s98;False;False;t1_giqhn9s;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqhsa2/;1610301680;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610255659;;False;{};giqhvgd;False;t3_ku4yjy;False;True;t1_giq16fv;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqhvgd/;1610301740;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"Tachibanakan Triangle. (The anime, at least, is *super* fast paced with little substance, though.) - -My Life as a Villainess has a harem with both yuri and het ships.";False;False;;;;1610255672;;False;{};giqhw50;False;t3_ku7s45;False;True;t3_ku7s45;/r/anime/comments/ku7s45/help_me_find_gl_harem/giqhw50/;1610301753;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jessy-ra;;;[];;;;text;t2_8o3u3uth;False;False;[];;Oh lol thanks, its a good thing im im learning this now because im not too far in yet;False;False;;;;1610255765;;False;{};giqi18y;True;t3_ku7s98;False;True;t1_giqhsa2;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqi18y/;1610301848;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ARandomRap;;;[];;;;text;t2_10515u;False;False;[];;Wait. I havent read any spoilers, I just want to know,, One piece started back up again!?? Give me some time to catch back up. I took a break!!!!!;False;False;;;;1610255850;;False;{};giqi5r9;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqi5r9/;1610301931;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TatteredTongues;;;[];;;;text;t2_xbrbp;False;False;[];;We're about 1 year's worth of anime ahead I think, maybe a little more.;False;False;;;;1610255897;;False;{};giqi88w;False;t3_ku4yjy;False;False;t1_giqg47t;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqi88w/;1610301978;9;True;False;anime;t5_2qh22;;0;[]; -[];;;MChattiGaming;;;[];;;;text;t2_1xployro;False;False;[];;Like bruh sabo better not die;False;False;;;;1610255924;;False;{};giqi9oy;False;t3_ku4yjy;False;False;t1_giqalqt;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqi9oy/;1610302006;7;True;False;anime;t5_2qh22;;0;[]; -[];;;TatteredTongues;;;[];;;;text;t2_xbrbp;False;False;[];;I think the idea they're trying to sell is that someone died/was assassinated (Vivi/her dad?) and they're blaming it on Sabo.;False;False;;;;1610255973;;False;{};giqicax;False;t3_ku4yjy;False;False;t1_giqfvwb;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqicax/;1610302056;92;True;False;anime;t5_2qh22;;0;[]; -[];;;Resident_Chemist_619;;;[];;;;text;t2_9993kzaf;False;False;[];;"Well, let’s just say weekly airing Shonen anime like Naruto, Onepiece, Blackclover or Bleach have tons of fillers, skipping them will make the viewing experience much better. - -Here’s a list of fillers in [Naruto ](https://www.animefillerlist.com/shows/naruto) - -Here’s a list of fillers in [Naruto Shippuden ](https://www.animefillerlist.com/shows/naruto-shippuden) - -You can always visit r/Naruto, r/Onepiece or related sub if you have any doubts regarding a particular anime. - -Or you can avoid weekly airing Shonen and just watch seasonal anime like My Hero Academia, Jujutsu Kaisen, Attack on Titan and Mob Psycho 100, if you’re short on time. You should know that It takes a couple of months to finish Onepiece or Naruto so it’s a big commitment, decide accordingly.";False;False;;;;1610255991;;1610256315.0;{};giqid8o;False;t3_ku7s98;False;False;t1_giqi18y;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqid8o/;1610302074;6;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Egg0__, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610256094;moderator;False;{};giqiio7;False;t3_ku87rv;False;True;t3_ku87rv;/r/anime/comments/ku87rv/am_bored_and_need_an_anime/giqiio7/;1610302171;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Mystic8ball;;;[];;;;text;t2_hpgps;False;False;[];;This isn't the OP for the anime, it's for the VN.;False;False;;;;1610256109;;False;{};giqijgv;False;t3_ku7qyd;False;True;t1_giqg8ni;/r/anime/comments/ku7qyd/tsukihime_remake_official_op/giqijgv/;1610302185;1;True;False;anime;t5_2qh22;;0;[]; -[];;;doomgiver98;;;[];;;;text;t2_6wkz0;False;False;[];;It's a really big time investment, but I think it is worth it.;False;False;;;;1610256115;;False;{};giqijsd;False;t3_ku6slw;False;True;t3_ku6slw;/r/anime/comments/ku6slw/is_it_still_worth_it_watching_naruto/giqijsd/;1610302191;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MChattiGaming;;;[];;;;text;t2_1xployro;False;False;[];;Like they didn't have to show the goa kingdom like that. They be hurting me on purpose. If drake tells luffy before the fight we might as well give up on defeating kaido for a while...;False;False;;;;1610256173;;False;{};giqimr7;False;t3_ku4yjy;False;False;t1_giqfvwb;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqimr7/;1610302252;4;True;False;anime;t5_2qh22;;0;[]; -[];;;_Zig;;;[];;;;text;t2_r3byl;False;False;[];;sorry mate but only gigguk's videos get any attention here, no point sharing other creators;False;False;;;;1610256222;;False;{};giqipe5;False;t3_ku855e;False;True;t3_ku855e;/r/anime/comments/ku855e/soon_attack_on_titan_will_break_you_spoilers_for/giqipe5/;1610302307;1;True;False;anime;t5_2qh22;;0;[]; -[];;;turiyoOTAKU;;;[];;;;text;t2_45xtwg9u;False;False;[];;Bleach;False;False;;;;1610256252;;False;{};giqiqyf;False;t3_ku87rv;False;True;t3_ku87rv;/r/anime/comments/ku87rv/am_bored_and_need_an_anime/giqiqyf/;1610302335;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FragrantSandwich;;;[];;;;text;t2_3yuz2s7t;False;False;[];;"Check out Jujutsu Kaisen, Mob Psycho 100, One Punch Man, and Yu Yu Hakusho. Jujutsu is only half way done airing, but its really good and only the first season. - -Yu Yu Hakusho is a classic, done by the same author as Hunter x Hunter. Watch the English dub, its a must. Honestly? Its the comfiest show ive watched. it just has that 90s saturday morning cartoon vibe while still holding up great 30 years later. - - -If your looking for some more darker shows, Goblin Slayer, Dororo, Dorohedoro, and Hakata Tonokotsu Ramens are some good choices.";False;False;;;;1610256268;;False;{};giqirrs;False;t3_ku7s98;False;False;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqirrs/;1610302350;10;True;False;anime;t5_2qh22;;0;[]; -[];;;IntonerFour;;;[];;;;text;t2_3x8xfqee;False;False;[];;"Violet Evargarden is my favorite out of this list, but I'd also recommend: - -\- Clannad - -\- Kaguya-Sama: Love is War - -\- Toradora - -\- Puella Magi Madoka Magica - -\- Konosuba - -\- Neon Genesis Evangelion";False;False;;;;1610256305;;False;{};giqitoq;False;t3_ku7s98;False;False;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqitoq/;1610302384;8;True;False;anime;t5_2qh22;;0;[]; -[];;;FragrantSandwich;;;[];;;;text;t2_3yuz2s7t;False;False;[];;One Piece has nearly 1000 episodes, and the pacing is terrible later on. Id recommend reading the manga if u ever get into it, but dont watch the anime past like 200s;False;False;;;;1610256347;;False;{};giqivx9;False;t3_ku7s98;False;False;t1_giqh6ep;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqivx9/;1610302432;7;True;False;anime;t5_2qh22;;0;[]; -[];;;aphenphosmphobia;;MAL;[];;https://myanimelist.net/profile/haphephobia;dark;text;t2_abgulx;False;False;[];;Hello World;False;False;;;;1610256350;;False;{};giqiw2j;False;t3_ku72xf;False;True;t3_ku72xf;/r/anime/comments/ku72xf/good_romance_anime_movies/giqiw2j/;1610302434;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610256361;;False;{};giqiwlz;False;t3_ku4yjy;False;True;t1_giqeea5;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqiwlz/;1610302444;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610256386;;False;{};giqixz9;False;t3_ku4yjy;False;True;t1_giq3uln;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqixz9/;1610302468;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Bamboozled2319;;;[];;;;text;t2_2y9vepec;False;False;[];;Full metal alchemist brotherhood;False;False;;;;1610256419;;False;{};giqizqj;False;t3_ku87rv;False;True;t3_ku87rv;/r/anime/comments/ku87rv/am_bored_and_need_an_anime/giqizqj/;1610302504;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheCrows7;;;[];;;;text;t2_57cnvnvx;False;False;[];;{My Hero Academia} it has 4 seasons at the moment and they are planning on releasing a 5th season not far from now. One of my favorite animes;False;False;;;;1610256437;;False;{};giqj0p4;False;t3_ku87rv;False;True;t3_ku87rv;/r/anime/comments/ku87rv/am_bored_and_need_an_anime/giqj0p4/;1610302560;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TXToastermassacre;;;[];;;;text;t2_71k2wbv7;False;False;[];;"Grimgar is an excellent show, but you dare call cowboy bebop an ""odd"" show? Blasphemy.";False;False;;;;1610256465;;False;{};giqj25u;False;t3_ku47b4;False;True;t3_ku47b4;/r/anime/comments/ku47b4/grimgar_ashes_and_illusions/giqj25u/;1610302585;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LukaLaurent;;;[];;;;text;t2_1hvdrskz;False;False;[];;"Nothing wrong with a game starting point, these are series that can ease you into the medium. - -Also nothing wrong with dub, if that’s what you prefer. I’ll happily say I’m a dub only watcher. No shame in it.";False;False;;;;1610256661;;False;{};giqjchp;False;t3_ku7jrv;False;True;t3_ku7jrv;/r/anime/comments/ku7jrv/i_realized_ive_set_the_bar_too_low_for_anime_that/giqjchp/;1610302771;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Darkelementzz;;;[];;;;text;t2_11yf1u;False;False;[];;It's ahead, but the Wano arc is split into 3 or maybe 4 acts. Anime is just about to start act 3 and the manga is nearing the end of act 3.;False;False;;;;1610256838;;False;{};giqjlun;False;t3_ku4yjy;False;False;t1_giqg47t;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqjlun/;1610302937;5;True;False;anime;t5_2qh22;;0;[]; -[];;;attack_on_titan_Andy;;;[];;;;text;t2_24j093j1;False;False;[];;"manga readers and anime onlys are so close you would have trouble differentiating one from the other when you read what they say. -I remember a year ago Luffy being in prison both in the manga and in the anime. Covid anime break really helped the peace otherwise I don't know what would have happened, they are so close...";False;False;;;;1610256989;;False;{};giqjtkc;False;t3_ku4yjy;False;False;t1_giqeea5;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqjtkc/;1610303710;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Darkelementzz;;;[];;;;text;t2_11yf1u;False;False;[];;"CP0 was covering up something, so likely they ""killed"" Vivi for Im to do something with off-the-books";False;False;;;;1610257045;;False;{};giqjwfx;False;t3_ku4yjy;False;False;t1_giqicax;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqjwfx/;1610303809;34;True;False;anime;t5_2qh22;;0;[]; -[];;;uzuoika;;;[];;;;text;t2_9lh1x0pf;False;False;[];;Naruto, magi;False;False;;;;1610257056;;False;{};giqjwz1;False;t3_ku87rv;False;False;t3_ku87rv;/r/anime/comments/ku87rv/am_bored_and_need_an_anime/giqjwz1/;1610303822;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Why are so many series or series related reccomend ations here, didn't the op asked for stand alone movies;False;False;;;;1610257099;;False;{};giqjz4i;False;t3_ku72xf;False;True;t3_ku72xf;/r/anime/comments/ku72xf/good_romance_anime_movies/giqjz4i/;1610303866;1;True;False;anime;t5_2qh22;;0;[]; -[];;;weebu4laifu;;;[];;;;text;t2_7nij0alj;False;True;[];;Inuyasha should keep you occupied;False;False;;;;1610257117;;False;{};giqk03a;False;t3_ku87rv;False;True;t3_ku87rv;/r/anime/comments/ku87rv/am_bored_and_need_an_anime/giqk03a/;1610303885;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TatteredTongues;;;[];;;;text;t2_xbrbp;False;False;[];;Personally, I can't fathom Vivi being killed off-screen, or at all, so I'd bet on her father who was already sick/dying(?).;False;False;;;;1610257124;;False;{};giqk0fg;False;t3_ku4yjy;False;False;t1_giqjwfx;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqk0fg/;1610303893;51;True;False;anime;t5_2qh22;;0;[]; -[];;;JadeDragon56;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/JadeDragon56;light;text;t2_ee93o;False;False;[];;Subarashi;False;False;;;;1610257158;;False;{};giqk259;False;t3_ku65n3;False;True;t1_giqabt2;/r/anime/comments/ku65n3/made_in_abyss_episode_1_2_review/giqk259/;1610303931;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PotatEXTomatEX;;;[];;;;text;t2_tdgrv;False;False;[];;Should be 5 acts;False;False;;;;1610257201;;False;{};giqk4fa;False;t3_ku4yjy;False;True;t1_giqjlun;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqk4fa/;1610303972;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610257208;moderator;False;{};giqk4qv;False;t3_ku8i4u;False;True;t3_ku8i4u;/r/anime/comments/ku8i4u/should_i_watch_the_horimiya_ovas_are_they_related/giqk4qv/;1610303978;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Misfit, caution hero, shield hero, slime, modachi tachi;False;False;;;;1610257223;;False;{};giqk5is;False;t3_ku6une;False;True;t3_ku6une;/r/anime/comments/ku6une/need_some_new_anime/giqk5is/;1610303992;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shadow_slayer-666;;;[];;;;text;t2_3j4rq6rf;False;False;[];;Knights and magic, it’s short but good, much like no game no life;False;False;;;;1610257258;;False;{};giqk7b4;False;t3_ku87rv;False;True;t3_ku87rv;/r/anime/comments/ku87rv/am_bored_and_need_an_anime/giqk7b4/;1610304023;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Redmon425;;;[];;;;text;t2_15ro6h;False;False;[];;"HOLY HELL!!! What an episode!! - -I can't believe that they are getting rid of the 7 warlords of the sea! - -BUT OMG, maybe our best girl Boa will join up with Luffy now!! Plus, Koby is on the boat going after her? I bet they just talk about Luffy lol. - -AND WHAT THE HELL HAPPENED TO SABO!? I mean no way they kill him off screen after his storyline was about him being presumed to be dead. - -And Drake is a traitor working for the Navy!? NANI!?";False;False;;;;1610257273;;1610300547.0;{};giqk81k;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqk81k/;1610304036;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Redmon425;;;[];;;;text;t2_15ro6h;False;False;[];;"So I noticed this during the Reverie arc, but I low-key feel like the building name legit shows us how this series will end and what the One Piece is. - -The main building name in Mariejois is legit named ""Pangaea"" and that is legit the name of the supercontinent from history when all the continents on Earth were one before splitting up into 7. Like this is real history. - -But this totally means that the ""One Piece"" is going to be the reveal that there used to not be all these islands, and it used to be just one big continent, right? Like I am sure that also means being unified with no wars and things like that. - -Plus it also would complete the goals of our crew: - -Sanji wanting to find the 'All Blue', which is where the 4 oceans connect. If the world was indeed 1 big continent (One Piece), then all the oceans would be connected making an 'All Blue"". - -Nami wants to travel the entire world seeing all the islands, and if they are connected she can do that. - -Like am I crazy or does 1 single building name totally spoil how the series will end!?!?!";False;False;;;;1610257304;;False;{};giqk9ld;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqk9ld/;1610304064;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Darkelementzz;;;[];;;;text;t2_11yf1u;False;False;[];;Maybe, but the way Garp was talking makes it seem like it was Vivi, since Shirahoshi spent a lot of time with her. I HIGHLY doubt they'd kill off Vivi off-screen;False;False;;;;1610257304;;False;{};giqk9m4;False;t3_ku4yjy;False;False;t1_giqk0fg;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqk9m4/;1610304064;24;True;False;anime;t5_2qh22;;0;[]; -[];;;MonDking;;;[];;;;text;t2_21ff5t7v;False;False;[];;"This episode was absolutely brilliant. The animation was fantastic. The pacing was spot on. Never felt like it dragged on, even though it adapted just 1 chapter. Storyboarding was amazing. - -And I loved the scene transitions. That was best part of this episode for me.";False;False;;;;1610257312;;False;{};giqk9zi;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqk9zi/;1610304070;28;True;False;anime;t5_2qh22;;0;[]; -[];;;anonymous1742;;;[];;;;text;t2_9lwh73xf;False;False;[];;Attack on titan and the seven deadly sins are my two absolute recommendations but violet evergarden and my hero academia is very close;False;False;;;;1610257422;;False;{};giqkfjr;False;t3_ku7s98;False;True;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqkfjr/;1610304174;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TatteredTongues;;;[];;;;text;t2_xbrbp;False;False;[];;"Oh but Shirahoshi only reacted to the mention of ""Alabasta"", right? Because she knows Vivi is directly tied to it, it's not as if she heard something else that we did not, I don't think this was the case. - - -Shira's exclamation/sadness while saying ""Vivi...!"" could also perfectly fit the news that her friend just lost her father and is now in pain.";False;False;;;;1610257536;;False;{};giqkldr;False;t3_ku4yjy;False;False;t1_giqk9m4;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqkldr/;1610304266;15;True;False;anime;t5_2qh22;;0;[]; -[];;;ramalhoplays;;;[];;;;text;t2_3kk51o;False;False;[];;The quality in this episode was insane. I'm just reading the Manga because of the low quality of the anime, but this episode spark something inside me. The question is the next episode will be the same?;False;False;;;;1610257551;;False;{};giqkm2z;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqkm2z/;1610304279;17;True;False;anime;t5_2qh22;;0;[]; -[];;;sendhelp404;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_39x4uqma;False;False;[];;If you want more content you could, but they’re not really relevant to the main storyline and they’re quite rough. They’re not related and I expect there will probably be some overlap between the two!;False;False;;;;1610257665;;False;{};giqkrwa;False;t3_ku8i4u;False;False;t3_ku8i4u;/r/anime/comments/ku8i4u/should_i_watch_the_horimiya_ovas_are_they_related/giqkrwa/;1610304381;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Darkelementzz;;;[];;;;text;t2_11yf1u;False;False;[];;Maybe. I took the don't hate humans wording Garp used to mean something happened to Vivi (someone she was close to), as the last time those words were used was when Shirahoshi's mother was shot;False;False;;;;1610257775;;False;{};giqkxir;False;t3_ku4yjy;False;False;t1_giqkldr;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqkxir/;1610304481;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Venator850;;;[];;;;text;t2_bz2ld;False;False;[];;Oh my God that was beautiful.;False;False;;;;1610257808;;False;{};giqkz5b;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqkz5b/;1610304510;7;True;False;anime;t5_2qh22;;0;[]; -[];;;y0Mark;;;[];;;;text;t2_pkkuy;False;False;[];;Gintama;False;False;;;;1610257820;;False;{};giqkzqq;False;t3_ku87rv;False;False;t3_ku87rv;/r/anime/comments/ku87rv/am_bored_and_need_an_anime/giqkzqq/;1610304518;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;"Fate/stay night: UBW - -Manabi Straight! - -Hajime no Ippo - -Gallery Fake";False;False;;;;1610257855;;False;{};giql1h6;False;t3_ku7s98;False;True;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giql1h6/;1610304546;1;True;False;anime;t5_2qh22;;0;[]; -[];;;condoriano_ismyname;;;[];;;;text;t2_ispj5;False;False;[];;It's from the direction, lighting, coloring side of it. Perhaps not narratively or emotionally, but animation-wise.;False;False;;;;1610257922;;False;{};giql4wj;False;t3_ku4yjy;False;False;t1_giqb2oj;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giql4wj/;1610304598;2;False;False;anime;t5_2qh22;;0;[]; -[];;;Seribral_Lord;;;[];;;;text;t2_5n6m5clk;False;False;[];;Trigun older anime set in a futuristic western with the average person having old time technology, starts off wacky and light hearted than becomes seriously philosophical and serious raising very strong moral questions and the characters are fantastic truly a classic;False;False;;;;1610257972;;False;{};giql7db;False;t3_ku7s98;False;True;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giql7db/;1610304633;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Please create an anime list at myanimelist.net, free and helpful to have. Helps remember what you've seen, and helps us know what you've seen. - -Hunter x Hunter 2011: Technically has ""one season"", but has many episodes. - -Haikyuu - -My Hero Academia - -Psycho-Pass";False;False;;;;1610258050;;1610258845.0;{};giqlb77;False;t3_ku87rv;False;True;t3_ku87rv;/r/anime/comments/ku87rv/am_bored_and_need_an_anime/giqlb77/;1610304695;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Turk1911;;;[];;;;text;t2_3c0y5cze;False;False;[];;I just watched that a couple months ago;False;False;;;;1610258053;;False;{};giqlbdp;False;t3_ku8htf;False;True;t3_ku8htf;/r/anime/comments/ku8htf/who_remembers_knights_and_magic/giqlbdp/;1610304698;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FederalMango;;;[];;;;text;t2_1dx7eet;False;False;[];;Damn, they really went all out with this episode, it was pure concentrated hype. Good job Toei.;False;False;;;;1610258272;;False;{};giqlm6f;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqlm6f/;1610304897;8;True;False;anime;t5_2qh22;;0;[]; -[];;;NeXBilly;;;[];;;;text;t2_3wyblkv8;False;False;[];;ngl kinda spot on but i dont think literally the islands are gonna be connected to one big continent but the walls are gonna be broken instead;False;False;;;;1610258317;;False;{};giqlof7;False;t3_ku4yjy;False;False;t1_giqk9ld;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqlof7/;1610304941;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;Not unless you really want to. It isn’t related to the current adaptation;False;False;;;;1610258334;;False;{};giqlp8v;False;t3_ku8i4u;False;True;t3_ku8i4u;/r/anime/comments/ku8i4u/should_i_watch_the_horimiya_ovas_are_they_related/giqlp8v/;1610304956;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"I highly suggesting checking out different genres as well. Anime is a medium filled with different genres. - -Don't watch so many so fast. People end up getting burned out, and I think it's because they watch so many so fast. - -Also: I know you're new, but it'd be better to create an anime list sooner rather than later. Myanimelist.net, is free and useful to have. It helps you remember what you've seen and helps us know what you've seen. Trust me, it's nice to create one sooner, before you complete 100 or more anime. - -I've seen Violet Evergarden, Hunter x Hunter 2011 and Death Note, enjoyed all 3. - -Some other choices: - -Anohana - -Your Lie in April - -A Silent Voice - -Spirited Away - -Erased - -The Promised Neverland - -Banana Fish - -Vinland Saga - -Fullmetal Alchemist Brotherhood - -Hibike Euphonium - -Sora yori mo Tooi Basho - -Gurren Lagann - -Cowboy Bebop - -Howl's Moving Castle";False;False;;;;1610258346;;False;{};giqlpur;False;t3_ku7s98;False;False;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqlpur/;1610304967;5;True;False;anime;t5_2qh22;;0;[]; -[];;;UncoJimmie;;;[];;;dark;text;t2_yxpax;False;False;[];;She debuted in the industry by directing the finale for Dragon Ball Super. One of the most promising young directors for sure.;False;False;;;;1610258387;;False;{};giqlrud;False;t3_ku4yjy;False;False;t1_giq4r2c;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqlrud/;1610305006;44;True;False;anime;t5_2qh22;;0;[]; -[];;;ThisIsCrap12;;;[];;;;text;t2_7i3zsxe3;False;False;[];;"Never watched OP, but I have a question for y’all if you don’t mind. - -I saw that the manga reached its 1000th chapter recently, but the anime has already reached Ep.957?? Isn’t that too fast? How many chapters does one episode contain? 1?";False;False;;;;1610258429;;False;{};giqltyw;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqltyw/;1610305044;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Mediakiller;;;[];;;;text;t2_l9c0i;False;True;[];;Not weird.;False;False;;;;1610258477;;False;{};giqlwfi;False;t3_ku8t28;False;False;t3_ku8t28;/r/anime/comments/ku8t28/do_you_think_im_weird/giqlwfi/;1610305091;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Byakko168;;;[];;;;text;t2_5b903zap;False;False;[];;"Go to the episode’s [discussion thread](https://www.reddit.com/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/?utm_source=share&utm_medium=ios_app&utm_name=iossmf)";False;False;;;;1610258486;;False;{};giqlwve;False;t3_ku8mmx;False;True;t3_ku8mmx;/r/anime/comments/ku8mmx/spoilers_the_hidden_dungeon_only_i_can_enter_ep1/giqlwve/;1610305099;4;True;False;anime;t5_2qh22;;0;[]; -[];;;XtremeLotus02;;;[];;;;text;t2_6nt4ymsj;False;False;[];;Id Invaded;False;False;;;;1610258500;;False;{};giqlxjy;False;t3_ku7p92;False;False;t3_ku7p92;/r/anime/comments/ku7p92/recommend_me_a_recent_anime_please/giqlxjy/;1610305111;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610258513;;False;{};giqly6p;False;t3_ku8i4u;False;True;t1_giqkrwa;/r/anime/comments/ku8i4u/should_i_watch_the_horimiya_ovas_are_they_related/giqly6p/;1610305123;1;True;False;anime;t5_2qh22;;0;[]; -[];;;findercutename;;;[];;;;text;t2_8rmmqqbt;False;False;[];;"It's your wish, personally I like to be cliffhanged. It has this emotion;the feeling of happiness and desire to get my answer in the next episode and wait an entire week";False;False;;;;1610258628;;False;{};giqm3sh;False;t3_ku8t28;False;False;t3_ku8t28;/r/anime/comments/ku8t28/do_you_think_im_weird/giqm3sh/;1610305225;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NenBE4ST;;;[];;;;text;t2_57p0ycnd;False;False;[];;I would read it personally but sure I don't see why not. Knowing the plot of Naruto doesn't really matter;False;False;;;;1610258654;;False;{};giqm521;False;t3_ku6slw;False;True;t3_ku6slw;/r/anime/comments/ku6slw/is_it_still_worth_it_watching_naruto/giqm521/;1610305247;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Redmon425;;;[];;;;text;t2_15ro6h;False;False;[];;"Yeah. I actually remember about a year ago seeing a theory like this, so most of my thoughts are based on it. - -And that makes sense as well. It’s just when you name a building Pangaea and the ultimate treasure is “One Piece”. - -It just seems kind of clear what the end game will be. Especially when you realize the world has constantly not been connected as “one” and have been fighting wars with each other.";False;False;;;;1610258698;;False;{};giqm791;False;t3_ku4yjy;False;True;t1_giqlof7;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqm791/;1610305283;4;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;No you're not weird, it's called binge-watching and it's pretty common.;False;False;;;;1610258770;;False;{};giqmarz;False;t3_ku8t28;False;False;t3_ku8t28;/r/anime/comments/ku8t28/do_you_think_im_weird/giqmarz/;1610305344;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Toppcom;;;[];;;;text;t2_a0y6c;False;False;[];;"> Hunter x Hunter 2022 - -God I wish";False;False;;;;1610258811;;False;{};giqmcqz;False;t3_ku87rv;False;True;t1_giqlb77;/r/anime/comments/ku87rv/am_bored_and_need_an_anime/giqmcqz/;1610305382;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;Not weird, I do the same thing. Plus I like watching as many or as few episodes as I want.;False;False;;;;1610258819;;False;{};giqmd5l;False;t3_ku8t28;False;False;t3_ku8t28;/r/anime/comments/ku8t28/do_you_think_im_weird/giqmd5l/;1610305389;5;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;lmao, I didn't realize I did that. Thank you for pointing it out, I edited it.;False;False;;;;1610258873;;False;{};giqmfpj;False;t3_ku87rv;False;True;t1_giqmcqz;/r/anime/comments/ku87rv/am_bored_and_need_an_anime/giqmfpj/;1610305436;1;True;False;anime;t5_2qh22;;0;[]; -[];;;findercutename;;;[];;;;text;t2_8rmmqqbt;False;False;[];;"Yeah I remember that. I watched it during quarantine in 2020. This anime came up everytime I searched ""anime episode 1"" on youtube";False;False;;;;1610258891;;False;{};giqmgl9;False;t3_ku8htf;False;False;t3_ku8htf;/r/anime/comments/ku8htf/who_remembers_knights_and_magic/giqmgl9/;1610305452;4;True;False;anime;t5_2qh22;;0;[]; -[];;;VisasHateMe;;;[];;;;text;t2_qt6ie;False;False;[];;">go all out for **Act 3** - -Kirr da Wano hoe";False;False;;;;1610258894;;False;{};giqmgpd;False;t3_ku4yjy;False;False;t1_giq3pue;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqmgpd/;1610305454;41;True;False;anime;t5_2qh22;;0;[]; -[];;;Verzwei;;;[];;;;text;t2_cmzqb;False;False;[];;"Nothing weird about it. - -I end up doing it for a lot of shows because sometimes I can't just keep up watching a show from week-to-week so I fall off the wagon, then once the show is done I'll think 'Oh yeah, I meant to watch this' and then binge through it. - -And if you wait a _really_ long time, you can watch the BD version which might have fixed or improved artwork or uncensored content.";False;False;;;;1610258894;;False;{};giqmgpj;False;t3_ku8t28;False;True;t3_ku8t28;/r/anime/comments/ku8t28/do_you_think_im_weird/giqmgpj/;1610305454;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sharkbayer1;;;[];;;;text;t2_3x8xbsgs;False;False;[];;I have to be really invested in an anime to watch it as it's airing, so no.;False;False;;;;1610258979;;False;{};giqmkup;False;t3_ku8t28;False;True;t3_ku8t28;/r/anime/comments/ku8t28/do_you_think_im_weird/giqmkup/;1610305528;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sakura0312;;;[];;;;text;t2_7iasogkz;False;False;[];;Me and my friend are always one anime season behind because of the same reason. I don't binge watch the shows but I don't like cliffhangers either. This actually makes it easier to watch more shows in less time. Many of us hv studies to do uk... *Sigh*;False;False;;;;1610259010;;False;{};giqmmce;False;t3_ku8t28;False;True;t3_ku8t28;/r/anime/comments/ku8t28/do_you_think_im_weird/giqmmce/;1610305556;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sethgabriel;;;[];;;;text;t2_8qnqv8zu;False;False;[];;So I really want to watch this anime but it just aired it's first episode about at the same time I don't wanna watch it because if I watch a series I want to watch a lot of episodes so should I watch it or not.;False;False;;;;1610259053;;False;{};giqmof3;True;t3_ku8t28;False;True;t3_ku8t28;/r/anime/comments/ku8t28/do_you_think_im_weird/giqmof3/;1610305595;1;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"I mean a lot of us got into anime through kids shows and they still have their own appeal and plenty of people even after seeing all there is in anime still look forward to that content. - -I wouldn't say that's setting the bar low you just got to see more what is in the medium.";False;False;;;;1610259074;;False;{};giqmpeg;False;t3_ku7jrv;False;True;t3_ku7jrv;/r/anime/comments/ku7jrv/i_realized_ive_set_the_bar_too_low_for_anime_that/giqmpeg/;1610305615;2;True;False;anime;t5_2qh22;;0;[]; -[];;;findercutename;;;[];;;;text;t2_8rmmqqbt;False;False;[];;Steins gate. If you havent already. It is a 2cour with 25 episodes and 3 movies. Idk what steins gate 0 is considered;False;False;;;;1610259088;;False;{};giqmq0x;False;t3_ku87rv;False;True;t3_ku87rv;/r/anime/comments/ku87rv/am_bored_and_need_an_anime/giqmq0x/;1610305626;1;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"Great Pretender might be up your alley if you like Bebop. I feel it has kinda similar vibes though it's about heists rather than being space bounty hunters. Sci Fi and mecha aren't super common you got some upcoming titles like 86 and Pluto (same mangaka of Monster if you have seen that) though. Akudama Drive is one sci fi original that got a lot of praise that came out recently though again like a lot of recent new shows it doesn't have a dub yet I think. - -Swords is vague Vinland Saga is good but no dub on that afraid. Mob Psycho 100 has great fight scenes (some of the best TV animated stuff out there) so that is one to check out. Writing is good too. - -I guess it would help to define how new you mean because does this mean like in the last few years or the entire 2010 decade?";False;False;;;;1610259150;;1610259424.0;{};giqmt48;False;t3_ku7p92;False;True;t3_ku7p92;/r/anime/comments/ku7p92/recommend_me_a_recent_anime_please/giqmt48/;1610305684;1;True;False;anime;t5_2qh22;;0;[]; -[];;;r0ll1n4;;;[];;;;text;t2_jkl5e;False;False;[];;I think it's fun, I loved it, I loved how it concluded. I loved the lessons it taught, and the messages it contained. I feel like it was amazing. Is it the best anime ever? No, hands down, I can think of several that I find more enjoyable than Naruto espeically as an adult. But honestly, your opinion is just as valid for you, as mine is for me.;False;False;;;;1610259329;;False;{};giqn1ph;False;t3_ku8yf1;False;False;t3_ku8yf1;/r/anime/comments/ku8yf1/ok_is_it_just_me_or_is_naruto_super_overrated/giqn1ph/;1610305854;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Eroue;;;[];;;;text;t2_11tx3m;False;False;[];;Its a great starter anime for 14 year olds, but honestly don't go back to watch it as an adult. Its super cringy.;False;False;;;;1610259367;;False;{};giqn3ld;False;t3_ku8yf1;False;False;t3_ku8yf1;/r/anime/comments/ku8yf1/ok_is_it_just_me_or_is_naruto_super_overrated/giqn3ld/;1610305889;8;True;False;anime;t5_2qh22;;0;[]; -[];;;GabbytheAbby;;;[];;;;text;t2_5z4u22e0;False;False;[];;Quick question- Will relife emotionally drain me?;False;False;;;;1610259367;;False;{};giqn3mg;True;t3_ku6gej;False;True;t1_giqa5tw;/r/anime/comments/ku6gej/please_help_me_find_a_new_shojo_anime_to_watch/giqn3mg/;1610305889;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Halfpent;;;[];;;;text;t2_1fj8wniu;False;False;[];;If you're willing to put in the time, yes. If not, no.;False;False;;;;1610259415;;False;{};giqn5yz;False;t3_ku6slw;False;True;t3_ku6slw;/r/anime/comments/ku6slw/is_it_still_worth_it_watching_naruto/giqn5yz/;1610305936;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GabbytheAbby;;;[];;;;text;t2_5z4u22e0;False;False;[];;lol I just watched that;False;False;;;;1610259466;;False;{};giqn8f4;True;t3_ku6gej;False;True;t1_giq9ye3;/r/anime/comments/ku6gej/please_help_me_find_a_new_shojo_anime_to_watch/giqn8f4/;1610305984;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xkingjamez;;;[];;;;text;t2_9mypc2h9;False;False;[];;"Assassination Classroom - -Fire Force - -Mob Psycho - -One-Punch Man";False;False;;;;1610259477;;False;{};giqn8z1;False;t3_ku87rv;False;True;t3_ku87rv;/r/anime/comments/ku87rv/am_bored_and_need_an_anime/giqn8z1/;1610305994;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GabbytheAbby;;;[];;;;text;t2_5z4u22e0;False;False;[];;That a bit odd....but I will trust your words!!!;False;False;;;;1610259495;;False;{};giqn9td;True;t3_ku6gej;False;True;t1_giq9kn1;/r/anime/comments/ku6gej/please_help_me_find_a_new_shojo_anime_to_watch/giqn9td/;1610306011;1;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;I would recommend posting a MAL or anilist. If you want something more obscure and older Rose of Versailes is good but yeah it would help if you provided a list of what you have seen.;False;False;;;;1610259506;;False;{};giqnac1;False;t3_ku6gej;False;False;t3_ku6gej;/r/anime/comments/ku6gej/please_help_me_find_a_new_shojo_anime_to_watch/giqnac1/;1610306019;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GabbytheAbby;;;[];;;;text;t2_5z4u22e0;False;False;[];;**Memories of The last episode of Ouran High school host club and sheds a single tear***;False;False;;;;1610259569;;False;{};giqnd8q;True;t3_ku6gej;False;True;t1_giq9oqm;/r/anime/comments/ku6gej/please_help_me_find_a_new_shojo_anime_to_watch/giqnd8q/;1610306070;2;True;False;anime;t5_2qh22;;0;[]; -[];;;iw2kl;;;[];;;;text;t2_9k8gikvs;False;False;[];;That's not weird at all. What you do with your time and how you enjoy to the fullest watching something, is your business and anyone calling you weird for something like that is very misdirected or maybe just doesn't understand you. Either way you aren't weird for that.;False;False;;;;1610259638;;False;{};giqngg2;False;t3_ku8t28;False;True;t3_ku8t28;/r/anime/comments/ku8t28/do_you_think_im_weird/giqngg2/;1610306126;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iw2kl;;;[];;;;text;t2_9k8gikvs;False;False;[];;Do what will make you enjoy the show to the fullest.;False;False;;;;1610259668;;False;{};giqnht6;False;t3_ku8t28;False;True;t1_giqmof3;/r/anime/comments/ku8t28/do_you_think_im_weird/giqnht6/;1610306152;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610259779;moderator;False;{};giqnn22;False;t3_ku4yjy;False;True;t1_giq3uln;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqnn22/;1610306248;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tomotomi;;MAL;[];;http://myanimelist.net/animelist/tomotomi;dark;text;t2_kgs70;False;False;[];;"Yeah, because it's extremely popular there's going to be a lot more people singing its praises just in general, but believe me there are plenty of detractors that do not like Naruto. I loved it a lot growing up but I don't really enjoy watching or reading it much anymore because I lost interest, and the flaws outweighed what I enjoyed about it, personally. - -In the end, it's up to preference! It's cool if you aren't a fan but some people genuinely really like it and all the power to them.";False;False;;;;1610259816;;False;{};giqnosc;False;t3_ku8yf1;False;True;t3_ku8yf1;/r/anime/comments/ku8yf1/ok_is_it_just_me_or_is_naruto_super_overrated/giqnosc/;1610306279;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610259920;moderator;False;{};giqntm0;False;t3_ku95q6;False;True;t3_ku95q6;/r/anime/comments/ku95q6/where_do_you_normally_buy_your_figures_manga_and/giqntm0/;1610306368;1;False;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your comment has been removed. - -- Do not attack, insult or harass other Redditors. The fastest way to deal with things like this is to report and move along. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610259988;moderator;False;{};giqnwps;False;t3_ku4yjy;False;False;t1_giqixz9;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqnwps/;1610306424;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GabbytheAbby;;;[];;;;text;t2_5z4u22e0;False;False;[];;ok;False;False;;;;1610260025;;False;{};giqnyjn;True;t3_ku6gej;False;True;t1_giqnac1;/r/anime/comments/ku6gej/please_help_me_find_a_new_shojo_anime_to_watch/giqnyjn/;1610306460;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sethgabriel;;;[];;;;text;t2_8qnqv8zu;False;False;[];;Thank you everyone now I know what to do. 😊;False;False;;;;1610260078;;False;{};giqo10t;True;t3_ku8t28;False;True;t3_ku8t28;/r/anime/comments/ku8t28/do_you_think_im_weird/giqo10t/;1610306503;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vpeyjilji57;;;[];;;;text;t2_15ti6p1p;False;False;[];;Basically. They had the choice of stretching the pacing of each episode, going on hiatus's, or doing filler arcs. They chose the first. They recently started adding filler scenes that happened off-screen in the manga.;False;False;;;;1610260114;;False;{};giqo2ri;False;t3_ku4yjy;False;False;t1_giqltyw;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqo2ri/;1610306535;49;False;False;anime;t5_2qh22;;0;[]; -[];;;Zeta42;;;[];;;;text;t2_bjdm4;False;False;[];;The best episode of the series *so far.*;False;False;;;;1610260324;;False;{};giqocpy;False;t3_ku4yjy;False;False;t1_giq16fv;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqocpy/;1610306715;86;True;False;anime;t5_2qh22;;0;[]; -[];;;NahuelSeba;;;[];;;;text;t2_1c9kituh;False;False;[];;"The fact that this episode was good and that the next chapter broke the community when it came out makes clear that people loves their OP's worldbuilding. So i dont know what the fuck are you talking about. Also, the whole argument that isnt that good because ""considering none of the main characters were in it"" its trash to. One of the best thing about the One Piece world is that shit happens outside the main characters's journey, people love to discover what happened around the world once an arc is over.";False;False;;;;1610260375;;False;{};giqof5j;False;t3_ku4yjy;False;False;t1_giqb2oj;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqof5j/;1610306765;7;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"Hunter X hunter is the highest quality by FAAAAR imo. - -If you want a phenomenal battle shounen, then give HxH a watch. It starts off slow, but increases in quality heavily in every arc! - -Death note is a classic as well, but falls off in the second half. - -Violent evergarden is a beautiful anime about a nigh-mute girl discovering herself, and helping others with their problems. If you want a very emotional anime with movie quality animation, then give it a watch! Also has romance elements. - -Demon slayer is a great shounen with movie level animation. It's a perfect entry anime for new fans like you. - -So overall, I recommend demon slayer if you want a cool action anime, or death note for an amazing philosophical anime that focuses on battle of the mind. Both strong entry anime, but the other anime are amazing as well! - - -If you wanted more anime to watch other than your list, click on [https://myanimelist.net/animelist/TheRantMan321]myanimelist profile. I have a strong list of mostly great anime.";False;False;;;;1610260969;;False;{};giqp6ld;False;t3_ku7s98;False;True;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqp6ld/;1610307301;0;True;False;anime;t5_2qh22;;0;[]; -[];;;_Sebab_;;;[];;;;text;t2_5kh7la3e;False;False;[];;Crunchyroll;False;False;;;;1610261024;;False;{};giqp91m;False;t3_ku93ss;False;True;t3_ku93ss;/r/anime/comments/ku93ss/android_apps_to_watch_anime/giqp91m/;1610307346;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mynewaccount5;;;[];;;;text;t2_d1vwt;False;False;[];;Yeah. Until next week.;False;False;;;;1610261117;;False;{};giqpdb8;False;t3_ku4yjy;False;False;t1_giqocpy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqpdb8/;1610307425;67;True;False;anime;t5_2qh22;;0;[]; -[];;;FuruiOnara;;;[];;;;text;t2_477q2pi9;False;False;[];;Plex. Tubi. Hbo Max. Amazon Prime video. Crunchyroll. Funimation. Netflix. Hulu.;False;False;;;;1610261172;;False;{};giqpfrc;False;t3_ku93ss;False;True;t3_ku93ss;/r/anime/comments/ku93ss/android_apps_to_watch_anime/giqpfrc/;1610307473;1;True;False;anime;t5_2qh22;;0;[]; -[];;;digbicks845;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;god ussop;dark;text;t2_12n6ju;False;False;[];;Imagine trying to arrest Mihawk;False;False;;;;1610261299;;False;{};giqplk1;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqplk1/;1610307578;175;True;False;anime;t5_2qh22;;0;[]; -[];;;crypto_261;;;[];;;;text;t2_89gxyqnf;False;False;[];;No, rather it soothes you...;False;False;;;;1610261350;;False;{};giqpnt4;False;t3_ku6gej;False;True;t1_giqn3mg;/r/anime/comments/ku6gej/please_help_me_find_a_new_shojo_anime_to_watch/giqpnt4/;1610307623;1;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;For me manga (I will add if it's just manga and not anything anime related you should ask this on r/manga) I usually either buy online through Amazon or my local comic book shop which has a very good stock of manga.;False;False;;;;1610261363;;False;{};giqpod5;False;t3_ku95q6;False;True;t3_ku95q6;/r/anime/comments/ku95q6/where_do_you_normally_buy_your_figures_manga_and/giqpod5/;1610307635;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"~~Start with Toradora~~ - -Well then. - -Give Akagami no Shirayuki-hime a look.";False;False;;;;1610261605;;False;{};giqpz3v;False;t3_ku9j4h;False;False;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqpz3v/;1610307840;4;True;False;anime;t5_2qh22;;0;[]; -[];;;seyruh-nyan;;;[];;;;text;t2_rrmps;False;False;[];;Bungou Stray Dogs has 3 seasons.;False;False;;;;1610261652;;False;{};giqq17v;False;t3_ku87rv;False;True;t3_ku87rv;/r/anime/comments/ku87rv/am_bored_and_need_an_anime/giqq17v/;1610307881;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Sorry I tried but I just haven't found a tsundere this annoying;False;False;;;;1610261660;;False;{};giqq1l9;True;t3_ku9j4h;False;False;t1_giqpz3v;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqq1l9/;1610307888;5;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;Nodame Cantabile is my favorite;False;False;;;;1610261666;;False;{};giqq1t9;False;t3_ku9j4h;False;False;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqq1t9/;1610307892;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash175;;;[];;;;text;t2_31ejfc6n;False;False;[];;There is horimiya airing rn, try that;False;False;;;;1610261677;;False;{};giqq2cj;False;t3_ku9j4h;False;False;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqq2cj/;1610307903;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Peacemkr45;;;[];;;;text;t2_15b5b7;False;False;[];;Try space battleship Yamato.;False;False;;;;1610261689;;False;{};giqq2um;False;t3_ku7p92;False;True;t3_ku7p92;/r/anime/comments/ku7p92/recommend_me_a_recent_anime_please/giqq2um/;1610307913;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;My personal fav is [My Little Monster](https://myanimelist.net/anime/14227/Tonari_no_Kaibutsu-kun);False;False;;;;1610261690;;False;{};giqq2wd;False;t3_ku9j4h;False;True;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqq2wd/;1610307914;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ghfvjuggvk23;;;[];;;;text;t2_709dwt4p;False;False;[];;Anyone know if the quality is going to stay consistent after this episode or is it just a one time thing;False;False;;;;1610261708;;False;{};giqq3pw;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqq3pw/;1610307929;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Thanks;False;False;;;;1610261713;;False;{};giqq3xu;True;t3_ku9j4h;False;True;t1_giqq1t9;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqq3xu/;1610307933;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TravisScotch--;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/TravisScotch/;light;text;t2_7fexh1u7;False;False;[];;"Why not ToraDora. It seems like a good starter romance. - - -Golden Time, Love Chuuyinbo, and Bunny Girl Senpai";False;False;;;;1610261724;;False;{};giqq4fq;False;t3_ku9j4h;False;True;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqq4fq/;1610307942;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Al right;False;False;;;;1610261725;;False;{};giqq4h8;True;t3_ku9j4h;False;True;t1_giqq2cj;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqq4h8/;1610307943;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Well then I am gonna ignore the mal rating and comment as always;False;False;;;;1610261823;;False;{};giqq8sg;True;t3_ku9j4h;False;True;t1_giqq2wd;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqq8sg/;1610308028;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeta42;;;[];;;;text;t2_bjdm4;False;False;[];;The sad thing is, I can totally see Oda repeating Marineford but with Sabo this time. Except I'm sure Luffy will not fail again.;False;False;;;;1610261826;;False;{};giqq8wy;False;t3_ku4yjy;False;False;t1_giqfvwb;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqq8wy/;1610308030;22;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;"1. Howl's moving castle -2. Kaicho wa maid sama -3. Clannad and clannad after story";False;False;;;;1610261845;;False;{};giqq9s1;False;t3_ku9j4h;False;False;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqq9s1/;1610308045;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;I just find the tsundere of toradora really annoying sometimes;False;False;;;;1610261863;;False;{};giqqahy;True;t3_ku9j4h;False;False;t1_giqq4fq;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqqahy/;1610308059;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Thanks;False;False;;;;1610261895;;False;{};giqqbw5;True;t3_ku9j4h;False;True;t1_giqq9s1;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqqbw5/;1610308084;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MortalMachine;;;[];;;;text;t2_xcsw8nn;False;False;[];;I'd probably say that Shippuden is overrated and Naruto is pretty good. But I watched it for my first time starting 6 years ago at age 21 as a newbie to battle shonen. Haven't rewatched it and never will because of the length of both series, and the slow pacing and less Interesting story of Shippuden.;False;False;;;;1610261907;;1610262525.0;{};giqqcep;False;t3_ku8yf1;False;True;t3_ku8yf1;/r/anime/comments/ku8yf1/ok_is_it_just_me_or_is_naruto_super_overrated/giqqcep/;1610308094;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheAussieUser;;;[];;;;text;t2_au69h;False;False;[];;No don't start with the best.... Work your way up to the best, as there won't be anything that beats it...;False;False;;;;1610261913;;False;{};giqqco7;False;t3_ku9j4h;False;False;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqqco7/;1610308099;3;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;It looks like OP hates abusive tsundere female MC who likes to hit innocent MC for no reason whatsoever.;False;False;;;;1610261922;;False;{};giqqd0p;False;t3_ku9j4h;False;True;t1_giqq4fq;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqqd0p/;1610308104;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Oh I never saw it that way .;False;False;;;;1610261957;;False;{};giqqeiv;True;t3_ku9j4h;False;False;t1_giqqco7;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqqeiv/;1610308132;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lilyvess;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Lilyvess;light;text;t2_8o7qa;False;False;[];;"I'm really hoping you got some angry Latte images! I wish I could make latte bark gifs. She's so cute! - -but yeah, how crazy is it to see the big bad just beaten so early?";False;False;;;;1610261969;;False;{};giqqezu;False;t3_ku4e5w;False;True;t1_giq2aj2;/r/anime/comments/ku4e5w/healin_goodprecure_episode_39_discussion/giqqezu/;1610308141;3;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Howl's moving castle is a movie and a very good movie, do watch it first and I am pretty sure you'll like it.;False;False;;;;1610261979;;False;{};giqqfev;False;t3_ku9j4h;False;True;t1_giqqbw5;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqqfev/;1610308150;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610261996;moderator;False;{};giqqg5r;False;t3_ku9m3j;False;True;t3_ku9m3j;/r/anime/comments/ku9m3j/can_someone_tell_me_the_name_of_this_anime_please/giqqg5r/;1610308163;1;False;False;anime;t5_2qh22;;0;[]; -[];;;warewolf_adi;;;[];;;;text;t2_3vk9o6dp;False;False;[];;"tamako market and tamako love story -oregairu - -sakura sou no pet na kanajo - -love is war";False;False;;;;1610262026;;False;{};giqqhga;False;t3_ku9j4h;False;True;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqqhga/;1610308187;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TravisScotch--;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/TravisScotch/;light;text;t2_7fexh1u7;False;False;[];;Taiga is a dick but she comes around near the end of the series. Not really tsundere by definition. She stops hitting him after she realizes her feelings;False;False;;;;1610262030;;False;{};giqqhlr;False;t3_ku9j4h;False;False;t1_giqqd0p;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqqhlr/;1610308190;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Love is war was way more of funny really loved it;False;False;;;;1610262085;;False;{};giqqk0i;True;t3_ku9j4h;False;True;t1_giqqhga;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqqk0i/;1610308233;3;True;False;anime;t5_2qh22;;0;[]; -[];;;QuieroEstar;;;[];;;;text;t2_8tud3fvw;False;False;[];;Legal ones have already been mentioned, animezone is a good piracy app;False;False;;;;1610262112;;False;{};giqql5o;False;t3_ku93ss;False;False;t3_ku93ss;/r/anime/comments/ku93ss/android_apps_to_watch_anime/giqql5o/;1610308254;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610262227;;False;{};giqqq2g;False;t3_ku8htf;False;True;t1_giqmgl9;/r/anime/comments/ku8htf/who_remembers_knights_and_magic/giqqq2g/;1610308351;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi shadow_slayer-666, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610262228;moderator;False;{};giqqq3c;False;t3_ku8htf;False;True;t1_giqqq2g;/r/anime/comments/ku8htf/who_remembers_knights_and_magic/giqqq3c/;1610308352;1;False;False;anime;t5_2qh22;;0;[]; -[];;;shadow_slayer-666;;;[];;;;text;t2_3j4rq6rf;False;False;[];;Ya it doesn’t have a big following;False;False;;;;1610262244;;False;{};giqqqsb;True;t3_ku8htf;False;False;t1_giqlbdp;/r/anime/comments/ku8htf/who_remembers_knights_and_magic/giqqqsb/;1610308364;3;True;False;anime;t5_2qh22;;0;[]; -[];;;destiny24;;;[];;;;text;t2_85zu3;False;False;[];;"One Piece usually drags, so it isn't really fast at all. It depends though. - -Sometimes its 1 episode per chapter, sometimes you could get 3 episodes for 1 chapter.";False;False;;;;1610262277;;False;{};giqqs8d;False;t3_ku4yjy;False;False;t1_giqltyw;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqqs8d/;1610308398;23;True;False;anime;t5_2qh22;;0;[]; -[];;;lilyvess;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Lilyvess;light;text;t2_8o7qa;False;False;[];;"King Byo-gen is Dead! - -Long Live King Guaiwaru! - -[](#protest) - -I expected it to be a projection. A fake out before revealing the true big bad. But no, it was just him and it really was just that easy. - -I like the decision. I always love it when Precure (and other anime) subvert expectations by downplaying the giant ball of evil as the final enemy and instead put the weight of the climax onto the villain we actually know, care about, and has a tangible relationship with the Protagonists. Precure has done it a few times, but it's rare for them to see it this early.";False;False;;;;1610262313;;False;{};giqqtqp;False;t3_ku4e5w;False;True;t1_giq0j9y;/r/anime/comments/ku4e5w/healin_goodprecure_episode_39_discussion/giqqtqp/;1610308429;2;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Yeah, but that comes after 13th or 14th episode and it's understandable as well that why many people will not like to wait that long. I enjoyed the series but at the same time I can understand why many people not like it and it's just speculation on OP's behalf.;False;False;;;;1610262355;;False;{};giqqvio;False;t3_ku9j4h;False;True;t1_giqqhlr;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqqvio/;1610308465;4;True;False;anime;t5_2qh22;;0;[]; -[];;;feartheslayer;;;[];;;;text;t2_9qxx89ts;False;False;[];;"Is consistent and many people grew up with Naruto so not sure if is the same for you but I think is popular/mainstream so people defend it. - -The transition to Shippuden is also good . Probably you didnt enjoy it as much as the die hard fans but is not a bad anime.";False;False;;;;1610262546;;False;{};giqr3jv;False;t3_ku8yf1;False;True;t3_ku8yf1;/r/anime/comments/ku8yf1/ok_is_it_just_me_or_is_naruto_super_overrated/giqr3jv/;1610308622;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Diego237;;;[];;;;text;t2_n70ll;False;False;[];;Yup, very promising. I wonder if she'll work on World Trigger since I'm very on board with that;False;False;;;;1610262566;;False;{};giqr4e8;False;t3_ku4yjy;False;False;t1_giqlrud;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqr4e8/;1610308639;11;True;False;anime;t5_2qh22;;0;[]; -[];;;CounterfeitTacos;;;[];;;;text;t2_8oixffc3;False;False;[];;Wow they even got Elizabeth to appear too!;False;False;;;;1610262596;;False;{};giqr5oy;False;t3_ku64l6;False;False;t3_ku64l6;/r/anime/comments/ku64l6/how_mangaka_sorachi_hideaki_recorded_his_lines/giqr5oy/;1610308667;8;True;False;anime;t5_2qh22;;0;[]; -[];;;VooDoo452;;;[];;;;text;t2_2njs8256;False;True;[];;Fruits Basket and Toradora. Also Gamers is a bunch of comedy/cringe romance.;False;False;;;;1610262633;;False;{};giqr76h;False;t3_ku9j4h;False;True;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqr76h/;1610308709;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kurumi_bst;;;[];;;;text;t2_5jklnw07;False;False;[];;Your lie in April;False;False;;;;1610262647;;False;{};giqr7s8;False;t3_ku9j4h;False;True;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqr7s8/;1610308725;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MortalMachine;;;[];;;;text;t2_xcsw8nn;False;False;[];;"Don't overthink it. You don't have to concern yourself with trying to be ""normal"".";False;False;;;;1610262688;;False;{};giqr9f1;False;t3_ku8t28;False;False;t3_ku8t28;/r/anime/comments/ku8t28/do_you_think_im_weird/giqr9f1/;1610308756;1;True;False;anime;t5_2qh22;;0;[]; -[];;;River_sounds;;;[];;;;text;t2_y4vd1;False;False;[];;It's totally fine, everyone has their own preferences.;False;False;;;;1610262735;;False;{};giqrbd7;False;t3_ku8t28;False;True;t3_ku8t28;/r/anime/comments/ku8t28/do_you_think_im_weird/giqrbd7/;1610308793;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaitonic;;MAL;[];;https://myanimelist.net/profile/kaitonic;dark;text;t2_122bsm;False;False;[];;This was an amazing episode seeing most everyone and Mihawk never look so menacing before. Big respect for Big News Morgan to go against the government xD;False;False;;;;1610262813;;False;{};giqren5;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqren5/;1610308853;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeta42;;;[];;;;text;t2_bjdm4;False;False;[];;Even greater visuals than usual for the Wano arc. I suppose they wanted to compensate for the absolute lack of substance? This is definitely an unpopular opinion, but I hate Oda's habit of withholding info from the audience but not from the characters. This is a very shoddy way of writing mysteries.;False;True;;comment score below threshold;;1610262915;;False;{};giqriw5;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqriw5/;1610308934;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;onefootstout;;;[];;;;text;t2_qyi54;False;False;[];;"I have really mixed feelings about this anime. As someone who considers Mecha one of their main anime genres it's a cool anime and at the same time I kind of deeply dislike it for a missed potential/ disregard for an important part of the Mecha genre. - -In the end I think the anime was too much of the ""Wow cool robot meme"" and in the LN otaku wish fulfillment camp for me to actually like it and not enough Mecha.";False;False;;;;1610263048;;False;{};giqroi0;False;t3_ku8htf;False;False;t3_ku8htf;/r/anime/comments/ku8htf/who_remembers_knights_and_magic/giqroi0/;1610309038;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lBluelMoon;;;[];;;;text;t2_5gdi71pr;False;False;[];;"Kimi ni todoke <3";False;False;;;;1610263076;;False;{};giqrppg;False;t3_ku9j4h;False;True;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqrppg/;1610309061;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AdiosCorea;;;[];;;;text;t2_m3z6o;False;False;[];;Surprised nobody mentioned Full metal Alchemist;False;False;;;;1610263083;;False;{};giqrq06;False;t3_ku7s98;False;True;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqrq06/;1610309068;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ihavesways;;;[];;;;text;t2_8sf7wjx;False;False;[];;Tonikawa: Over the moon for you is really good, I recommend it;False;False;;;;1610263101;;False;{};giqrqpb;False;t3_ku9j4h;False;False;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqrqpb/;1610309081;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Careless_Pudding_327;;;[];;;;text;t2_8rj9fyvi;False;False;[];;"> We saw Crocodile save a city from pirates in one episode - -Also saw Mihawk wipe out Don Krieg's fleet lol - ->But who can even fight them without the admirals? - -If the Navy was smart it'd send the admirals after them for sure. They know where Mihawk lives right now, once he is on the run they are going to have an extremely hard time getting him and an admiral to cross paths again.";False;False;;;;1610263111;;False;{};giqrr42;False;t3_ku4yjy;False;False;t1_giqamvv;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqrr42/;1610309087;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Insecticide;;;[];;;;text;t2_a6x2b;False;False;[];;Anime onlies this guy is trying to fuck you up. This video contain manga spoilers.;False;False;;;;1610263154;;False;{};giqrsuq;False;t3_ku9rgt;False;True;t3_ku9rgt;/r/anime/comments/ku9rgt/attack_on_titan_size_comparison/giqrsuq/;1610309128;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Adaminite;;;[];;;;text;t2_4h0i1937;False;False;[];;I’m amazed no one put Golden Time. It seriously is fantastic. It’s a story of an amnesiac’s college life after he loses his memories in a high school accident. It’s a Rom-Com with a lot of drama. It’s brilliant and I gave it a 10/10.;False;False;;;;1610263280;;False;{};giqry1z;False;t3_ku9j4h;False;True;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqry1z/;1610309250;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BroYouDroppedTheKek;;;[];;;;text;t2_8cjbse7w;False;False;[];;"- Righstuf - -- Amazon - -- Mercari - -- eBay - -- Facebook Marketplace";False;False;;;;1610263307;;False;{};giqrz5j;False;t3_ku95q6;False;True;t3_ku95q6;/r/anime/comments/ku95q6/where_do_you_normally_buy_your_figures_manga_and/giqrz5j/;1610309281;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RevaniteAnime;;MAL;[];;https://myanimelist.net/profile/RevaniteAnime;dark;text;t2_epon4p;False;True;[];;I usually buy new figures by pre-ordering from [AmiAmi.com](https://AmiAmi.com) because I get them as early as they are released, I don't have to wait for Crunchyroll's shop to receive it's shipment, and it's usually cheaper by a little.;False;False;;;;1610263352;;False;{};giqs0z8;False;t3_ku95q6;False;False;t3_ku95q6;/r/anime/comments/ku95q6/where_do_you_normally_buy_your_figures_manga_and/giqs0z8/;1610309330;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610263478;;False;{};giqs695;False;t3_ku4yjy;False;True;t1_giqpdb8;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqs695/;1610309438;-45;True;False;anime;t5_2qh22;;0;[]; -[];;;Careless_Pudding_327;;;[];;;;text;t2_8rj9fyvi;False;False;[];;There's been a theory around for years that One Piece is one of the ancient super weapons, and that they will use it to blow up Reverse Mountain and the City of Mariejois, that this will affect the currents to remove the Calm Belt, and essentially unite all four oceans + the Grant Line into One Piece. This would allow Sanji to find All Blue, Luffy would become the freest man in the world being able to sail wherever he feels, Nami will be able to map the whole world, etc.;False;False;;;;1610263623;;False;{};giqscb7;False;t3_ku4yjy;False;False;t1_giqk9ld;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqscb7/;1610309565;8;True;False;anime;t5_2qh22;;0;[]; -[];;;CuriousFunction;;;[];;;;text;t2_6n3v3my3;False;False;[];;Clannad;False;False;;;;1610263624;;False;{};giqscd1;False;t3_ku9j4h;False;False;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqscd1/;1610309566;5;True;False;anime;t5_2qh22;;0;[]; -[];;;xkingjamez;;;[];;;;text;t2_9mypc2h9;False;False;[];;"I'm on the same boat; the only thing is that it's hard to avoid spoilers but that's the way the cookie crumbles :p";False;False;;;;1610263634;;1610263907.0;{};giqscrn;False;t3_ku8t28;False;True;t3_ku8t28;/r/anime/comments/ku8t28/do_you_think_im_weird/giqscrn/;1610309572;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash175;;;[];;;;text;t2_31ejfc6n;False;False;[];;Kaga koko for life;False;False;;;;1610263662;;False;{};giqsdve;False;t3_ku9j4h;False;True;t1_giqry1z;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqsdve/;1610309602;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EquivalentGur3072;;;[];;;;text;t2_84bevo8q;False;False;[];;"""Overrated"" is subjective, so you can say it's overrated, and I say it's not, and we both can be right. - -Very few people are calling it a true masterpiece, so I wouldn't call it overrated. I didn't love it personally, but it's not particularly bad either, which seems like the general consensus. You might be letting the popularity get to you. Popular and not a masterpiece doesn't equal overrated. Said to be a masterpiece and is (subjectively) not a masterpiece is overrated.";False;False;;;;1610263663;;False;{};giqsdwv;False;t3_ku8yf1;False;False;t3_ku8yf1;/r/anime/comments/ku8yf1/ok_is_it_just_me_or_is_naruto_super_overrated/giqsdwv/;1610309603;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PheonixSummersault;;;[];;;;text;t2_afp1w;False;False;[];;Black Lagoon and jormungand are right down your ally. Black Lagoon has an amazing dub and Jormungand is good too;False;False;;;;1610263804;;False;{};giqsjri;False;t3_ku7p92;False;True;t3_ku7p92;/r/anime/comments/ku7p92/recommend_me_a_recent_anime_please/giqsjri/;1610309729;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sethgabriel;;;[];;;;text;t2_8qnqv8zu;False;False;[];;😂;False;False;;;;1610263823;;False;{};giqskjz;True;t3_ku8t28;False;True;t1_giqscrn;/r/anime/comments/ku8t28/do_you_think_im_weird/giqskjz/;1610309744;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Redmon425;;;[];;;;text;t2_15ro6h;False;False;[];;"Yeah. I actually do remember reading about a very similar theory nearly 2 years ago. - -It’s definitely what I based my stuff on. - -It’s just feels like it has to be something like this, with an important building being called ‘Pangaea’ and the actual show being called ‘One Piece’. - -Like those two things are so insanely connected.";False;False;;;;1610263835;;False;{};giqsl13;False;t3_ku4yjy;False;True;t1_giqscb7;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqsl13/;1610309754;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EquivalentGur3072;;;[];;;;text;t2_84bevo8q;False;False;[];;"Steins;Gate is also incredible as a psychological thriller. - -If you end up liking some of the battle shonen you see, then I'd also recommend Attack on Titan and Fullmetal Alchemist: Brotherhood. - -One Punch Man (season 1) is a short and sweet critique of the ""overpowered protagonist."" Very entertaining and worth the 12 episode watch.";False;False;;;;1610264135;;False;{};giqsx5x;False;t3_ku7s98;False;False;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqsx5x/;1610310003;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Nitsua34;;;[];;;;text;t2_86av8j;False;False;[];;ok?;False;False;;;;1610264213;;False;{};giqt0a3;False;t3_ku4yjy;False;False;t1_giqs695;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqt0a3/;1610310071;17;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Master-Salamander, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610264248;moderator;False;{};giqt1ne;False;t3_kua4tq;False;True;t3_kua4tq;/r/anime/comments/kua4tq/looking_for_recommendations_similar_to_erased/giqt1ne/;1610310099;1;False;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;What do I do if I want to get into One Piece but don't want to commit months (over a year?) of my leisure time to catch up?;False;False;;;;1610264599;;1610264865.0;{};giqtfjx;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqtfjx/;1610310379;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dudeshutup_;;;[];;;;text;t2_dpg4syu;False;False;[];;What anime is this?;False;False;;;;1610264634;;False;{};giqtgwf;False;t3_kua6rh;False;True;t3_kua6rh;/r/anime/comments/kua6rh/ill_never_forget_how_warm_it_sounds/giqtgwf/;1610310406;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mohamd52378;;;[];;;;text;t2_4cy24mkk;False;False;[];;The marines can be dumb sometimes;False;False;;;;1610264667;;False;{};giqti75;False;t3_ku4yjy;False;False;t1_giqplk1;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqti75/;1610310430;50;True;False;anime;t5_2qh22;;0;[]; -[];;;Babygaharabestgirl;;;[];;;;text;t2_7r8sx3ez;False;True;[];;Hibike! Euphonium!;False;False;;;;1610264752;;False;{};giqtlh3;True;t3_kua6rh;False;True;t1_giqtgwf;/r/anime/comments/kua6rh/ill_never_forget_how_warm_it_sounds/giqtlh3/;1610310504;6;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Death Note - -The Promised Neverland - -Banana Fish - -Psycho-Pass - -Anohana - -Your Lie in April - -Gekkan Shoujo Nozaki-kun - -Yuri on Ice - -Chihayafuru - -I suggest creating an anime list at myanimelist.net, free and useful to have. Helps you remember what you've seen and helps us know what you've seen.";False;False;;;;1610264774;;False;{};giqtmd3;False;t3_kua4tq;False;True;t3_kua4tq;/r/anime/comments/kua4tq/looking_for_recommendations_similar_to_erased/giqtmd3/;1610310522;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AnyaAny18;;;[];;;;text;t2_yfjmub2;False;False;[];;Nana is by far the best romance I watched. If you're looking for smth painfully realistic and more mature than some high schoolers falling in love for the first time, watch Nana.;False;False;;;;1610264795;;False;{};giqtn85;False;t3_ku9j4h;False;True;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqtn85/;1610310539;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610264912;;False;{};giqtruk;False;t3_ku9rgt;False;True;t1_giqrsuq;/r/anime/comments/ku9rgt/attack_on_titan_size_comparison/giqtruk/;1610310631;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;">am in the process of watching Haikyu, hxh, Toradora, ouran high school host club, the promised neverland, Angel Beats - -Finish what you’re watching before you worry about adding more anime";False;False;;;;1610265142;;False;{};giqu0uq;False;t3_kua4tq;False;True;t3_kua4tq;/r/anime/comments/kua4tq/looking_for_recommendations_similar_to_erased/giqu0uq/;1610310809;2;True;False;anime;t5_2qh22;;0;[]; -[];;;furyofzion;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/furyofzion;light;text;t2_n5dwu;False;False;[];;Damn, very good choice. One of my favorite EDs of all times.;False;False;;;;1610265213;;False;{};giqu3kk;False;t3_ku6qdg;False;True;t3_ku6qdg;/r/anime/comments/ku6qdg/yashahime_second_ending_with_my_will/giqu3kk/;1610310866;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sgt_Meowmers;;;[];;;;text;t2_61t28;False;False;[];;Great show that unfortunately wasn't as popular as it should have been. It felt real, much more so than the other shows of its genre.;False;False;;;;1610265223;;False;{};giqu3xt;False;t3_ku47b4;False;True;t3_ku47b4;/r/anime/comments/ku47b4/grimgar_ashes_and_illusions/giqu3xt/;1610310874;2;True;False;anime;t5_2qh22;;0;[]; -[];;;youngthugisyourmom;;;[];;;;text;t2_16lpt2vl;False;False;[];;"One piece is broadcasted weekly in Japan due to its popularity, so they have to make almost 50 episodes a year to make the quota. - -Recently, they’ve just stretched the pace instead of using filler, which sucks.";False;False;;;;1610265354;;False;{};giqu8yp;False;t3_ku4yjy;False;False;t1_giqltyw;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqu8yp/;1610310990;20;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;Clannad.;False;False;;;;1610265487;;False;{};gique57;False;t3_ku9j4h;False;False;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/gique57/;1610311091;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Master-Salamander;;;[];;;;text;t2_58bieiq0;False;False;[];;I wanted more show recommendations because I’m watching a lot of the shows listed above with groups of people, and I can’t progress unless the whole group can. Currently, I am only watching haikyu, hxh, and ouran high school host club on my own.;False;False;;;;1610265491;;1610265870.0;{};giqueal;True;t3_kua4tq;False;True;t1_giqu0uq;/r/anime/comments/kua4tq/looking_for_recommendations_similar_to_erased/giqueal/;1610311094;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Episode_12;;;[];;;;text;t2_5h1b5k47;False;False;[];;HOLY CRAP THERE'S SO MUCH THAT HAPPENED THIS EPISODE. THIS HAS GOT TO BE ONE OF THE BEST, NO, THE BEST ONE PIECE EPISODE I HAVE WATCHED.;False;False;;;;1610265552;;False;{};giqugnh;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqugnh/;1610311138;15;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 150, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Thank you stranger. Shows the award.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'icon_width': 2048, 'id': 'award_f44611f1-b89e-46dc-97fe-892280b13b82', 'is_enabled': True, 'is_new': False, 'name': 'Helpful', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16&height=16&auto=webp&s=a5662dfbdb402bf67866c050aa76c31c147c2f45', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32&height=32&auto=webp&s=a6882eb3f380e8e88009789f4d0072e17b8c59f1', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48&height=48&auto=webp&s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64&height=64&auto=webp&s=8e5bb2e76683cb6b161830bcdd9642049d6adc11', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128&height=128&auto=webp&s=eda4a9246f95f42ee6940cc0ec65306fd20de878', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;yachi100;;;[];;;;text;t2_3crjo0im;False;False;[];;The Asuka arc was magnificent, really solidified my love for this show. Can't wait to eventually rewatch it!!;False;False;;;;1610265619;;False;{};giquj9c;False;t3_kua6rh;False;True;t3_kua6rh;/r/anime/comments/kua6rh/ill_never_forget_how_warm_it_sounds/giquj9c/;1610311186;5;True;False;anime;t5_2qh22;;1;[]; -[];;;A4LI;;;[];;;;text;t2_9qul5u0;False;False;[];;This episode wouldn’t look out of place in the Stampede movie. 10/10.;False;False;;;;1610265660;;False;{};giquks3;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giquks3/;1610311218;10;True;False;anime;t5_2qh22;;0;[]; -[];;;thewunandonly;;;[];;;;text;t2_16iqqnfn;False;False;[];;Tsukigakirei for sure, most realistic depiction of navigating first love as an adolescent imo;False;False;;;;1610265689;;False;{};giqulxz;False;t3_ku9j4h;False;False;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqulxz/;1610311243;8;True;False;anime;t5_2qh22;;0;[]; -[];;;TravisScotch--;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/TravisScotch/;light;text;t2_7fexh1u7;False;False;[];;r/ihadastroke;False;False;;;;1610265701;;False;{};giqumdm;False;t3_kua4tq;False;True;t1_giqueal;/r/anime/comments/kua4tq/looking_for_recommendations_similar_to_erased/giqumdm/;1610311252;0;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;Deku's mom in My Hero Academia is one awesome mama;False;False;;;;1610265786;;False;{};giqupnl;False;t3_ku9ssn;False;False;t3_ku9ssn;/r/anime/comments/ku9ssn/we_all_have_our_waifus_but_what_about_our_okaasans/giqupnl/;1610311322;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610265791;moderator;False;{};giqupts;False;t3_kuag8c;False;True;t3_kuag8c;/r/anime/comments/kuag8c/another_season_or_movie_of_kabeneri_of_the_iron/giqupts/;1610311325;1;False;False;anime;t5_2qh22;;0;[]; -[];;;theanimegamer-___-;;;[];;;dark;text;t2_3vm3lj8d;False;False;[];;Skip fillers. Skip openings (after hearing them once of course). Skip recaps that are at the beginning of some episodes. That's all.;False;False;;;;1610265837;;False;{};giqurkn;False;t3_ku4yjy;False;False;t1_giqtfjx;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqurkn/;1610311369;9;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;There is a sequel movie to the TV Series.;False;False;;;;1610265919;;False;{};giquura;False;t3_kuag8c;False;True;t3_kuag8c;/r/anime/comments/kuag8c/another_season_or_movie_of_kabeneri_of_the_iron/giquura/;1610311431;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;The second Hibike Euphonium movie contains the entire Asuka arc with added scenes and longer performances.;False;False;;;;1610265936;;False;{};giquvdv;False;t3_kua6rh;False;True;t1_giquj9c;/r/anime/comments/kua6rh/ill_never_forget_how_warm_it_sounds/giquvdv/;1610311443;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Literally any order of those series works, they are all fucking fantastic. I’ll just say that Violet Evergarden and Monster have a bit of a reputation for having viewers who lose attention, or in other words aren’t meant for hooking you in. If you want to be hooked in, Demon Slayer and Death Note are the way to go;False;False;;;;1610265998;;False;{};giquxs0;False;t3_ku7s98;False;True;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giquxs0/;1610311489;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;Mandarake's web shop.;False;False;;;;1610266011;;False;{};giquy9z;False;t3_ku95q6;False;False;t3_ku95q6;/r/anime/comments/ku95q6/where_do_you_normally_buy_your_figures_manga_and/giquy9z/;1610311499;3;True;False;anime;t5_2qh22;;0;[]; -[];;;thewunandonly;;;[];;;;text;t2_16iqqnfn;False;False;[];;Ebay, offer up, depop, facebook marketplace are pretty good secondhand places to stumble across deals. Bigbadtoystore, crunchyroll’s store, ukiyokumo, and rightstuf, are some good officially licensed online shops. Might want to research for local hobby/specialty shops around your area too, always fun to check out those.;False;False;;;;1610266020;;False;{};giquymq;False;t3_ku95q6;False;True;t3_ku95q6;/r/anime/comments/ku95q6/where_do_you_normally_buy_your_figures_manga_and/giquymq/;1610311507;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AmbitionXI;;;[];;;;text;t2_5hn10q8b;False;False;[];;I watched all of the stuff, I think I should’ve been more specific;False;False;;;;1610266054;;False;{};giquzxt;True;t3_kuag8c;False;False;t1_giquura;/r/anime/comments/kuag8c/another_season_or_movie_of_kabeneri_of_the_iron/giquzxt/;1610311532;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xNOOBinTRAINING;;;[];;;;text;t2_8kl8i;False;False;[];;Different opinions. You can have super impressive animation outside of fights. The atmosphere, direction and overall quality was incredible. I'd say it was one of the best produced episodes we've gotten easily.;False;False;;;;1610266211;;False;{};giqv5yw;False;t3_ku4yjy;False;True;t1_giqb2oj;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqv5yw/;1610311640;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sir_aphim;;;[];;;;text;t2_7qpo130j;False;False;[];;Spice and wolf;False;False;;;;1610266296;;False;{};giqv9ab;False;t3_ku9j4h;False;True;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqv9ab/;1610311697;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610266399;moderator;False;{};giqvczy;False;t3_kuakn6;False;True;t3_kuakn6;/r/anime/comments/kuakn6/i_need_a_manga_pirating_website/giqvczy/;1610311766;1;False;False;anime;t5_2qh22;;0;[]; -[];;;sir_aphim;;;[];;;;text;t2_7qpo130j;False;False;[];;Its was an entertaining anime. I recently ordered an model kit from this series. Makes me kind of want to rewatch this series.;False;False;;;;1610266480;;False;{};giqvfwx;False;t3_ku8htf;False;True;t3_ku8htf;/r/anime/comments/ku8htf/who_remembers_knights_and_magic/giqvfwx/;1610311818;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sevillianrites;;;[];;;;text;t2_bmgp2;False;False;[];;"Steins;gate is a series that will turn an anime liker into an anime lover.";False;False;;;;1610266487;;False;{};giqvg6r;False;t3_ku7s98;False;False;t1_giqsx5x;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqvg6r/;1610311824;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mama_oooh;;;[];;;;text;t2_6cq1xh2q;False;False;[];;Decent? Nah mate this episode in particular is KINO;False;False;;;;1610266498;;False;{};giqvglb;False;t3_ku4yjy;False;False;t1_giqdq13;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqvglb/;1610311830;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;Nope, not according to this sub's rules. You're gonna have to look for it yourself.;False;False;;;;1610266538;;False;{};giqvi1s;False;t3_kuakn6;False;True;t3_kuakn6;/r/anime/comments/kuakn6/i_need_a_manga_pirating_website/giqvi1s/;1610311856;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Btw_kek;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SouvlakiSpace7;light;text;t2_i0pj6;False;False;[];;nah;False;False;;;;1610266540;;False;{};giqvi5j;False;t3_kuakn6;False;True;t3_kuakn6;/r/anime/comments/kuakn6/i_need_a_manga_pirating_website/giqvi5j/;1610311858;2;True;False;anime;t5_2qh22;;0;[]; -[];;;baquea;;;[];;;;text;t2_j3k0u;False;True;[];;r/manga;False;False;;;;1610266577;;False;{};giqvjjm;False;t3_kuakn6;False;True;t3_kuakn6;/r/anime/comments/kuakn6/i_need_a_manga_pirating_website/giqvjjm/;1610311884;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;To be honest, I don't understand it either.;False;False;;;;1610266604;;False;{};giqvkis;False;t3_kuajof;False;True;t3_kuajof;/r/anime/comments/kuajof/demon_slayer_kimetsu_no_yaiba/giqvkis/;1610311911;0;True;False;anime;t5_2qh22;;0;[]; -[];;;xkingjamez;;;[];;;;text;t2_9mypc2h9;False;False;[];;I think it has to do with the portrayal of Demons in Japanese Folklore. The anime is based on the good/bad spiritual identities of different demons the slayers face.;False;False;;;;1610266620;;False;{};giqvl4u;False;t3_kuajof;False;False;t3_kuajof;/r/anime/comments/kuajof/demon_slayer_kimetsu_no_yaiba/giqvl4u/;1610311924;7;True;False;anime;t5_2qh22;;0;[]; -[];;;TrailOfEnvy;;;[];;;;text;t2_o6dtk1;False;False;[];;And for Brooke to be able to meet Laboon;False;False;;;;1610266703;;False;{};giqvobf;False;t3_ku4yjy;False;False;t1_giqscb7;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqvobf/;1610311988;5;True;False;anime;t5_2qh22;;0;[]; -[];;;findercutename;;;[];;;;text;t2_8rmmqqbt;False;False;[];;Omg. That's something I havent seen in my 4 years of otaku life;False;False;;;;1610266888;;False;{};giqvv9f;False;t3_kuan5i;False;True;t3_kuan5i;/r/anime/comments/kuan5i/are_there_really_any_actual_anime_shows_that_are/giqvv9f/;1610312131;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"High production value and wide general appeal. - -Ufotable worked its magic and demon slayer looks incredible. Those fight scenes, the ost, the overall atmosphere and scenery, etc. are all really good.";False;False;;;;1610266891;;False;{};giqvvdh;False;t3_kuajof;False;False;t3_kuajof;/r/anime/comments/kuajof/demon_slayer_kimetsu_no_yaiba/giqvvdh/;1610312133;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Since you are Japanese why not ask your friends or family about it, or even in a Japanese network. People here are not experts;False;False;;;;1610266939;;False;{};giqvx6f;False;t3_kuajof;False;False;t3_kuajof;/r/anime/comments/kuajof/demon_slayer_kimetsu_no_yaiba/giqvx6f/;1610312167;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ExL-Oblique;;;[];;;;text;t2_wdikl;False;False;[];;"less than 1 sometimes lmao.... - -the anime's pacing is so bad even if the visuals improved things get stretched out to an absurd degree. Search up some one piece vs one pace comparisons to see how bad it is.";False;False;;;;1610266993;;False;{};giqvz6i;False;t3_ku4yjy;False;False;t1_giqltyw;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqvz6i/;1610312208;14;True;False;anime;t5_2qh22;;0;[]; -[];;;AKASHI2341;;;[];;;;text;t2_6dvsdx4w;False;False;[];;Yea I did, I just wanted to know what foreigners thought about it as well. Also I’m not expecting some “expert” opinion either, sorry if it seemed that way.;False;False;;;;1610266997;;False;{};giqvzcy;True;t3_kuajof;False;True;t1_giqvx6f;/r/anime/comments/kuajof/demon_slayer_kimetsu_no_yaiba/giqvzcy/;1610312213;2;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;False;[];;I gotchu boo [Girl Chan in Paradise](https://youtu.be/_CLgpd241Aw);False;False;;;;1610267076;;False;{};giqw2b8;False;t3_kuan5i;False;True;t3_kuan5i;/r/anime/comments/kuan5i/are_there_really_any_actual_anime_shows_that_are/giqw2b8/;1610312273;2;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;Nope.;False;False;;;;1610267098;;False;{};giqw36k;False;t3_kuan5i;False;True;t3_kuan5i;/r/anime/comments/kuan5i/are_there_really_any_actual_anime_shows_that_are/giqw36k/;1610312290;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Every single one of them, they went with the generic anime look, and they are parodying battle shounens like Dragon ball that you probably heard about;False;True;;comment score below threshold;;1610267114;;False;{};giqw3r3;False;t3_kuan5i;False;True;t3_kuan5i;/r/anime/comments/kuan5i/are_there_really_any_actual_anime_shows_that_are/giqw3r3/;1610312300;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;MCSenss;;;[];;;;text;t2_iq9id;False;False;[];;"The ending was also fucking hilarious :D - -Right when you think he actually became a badass";False;False;;;;1610267188;;False;{};giqw6n2;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqw6n2/;1610312362;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;"It’s a simple story, about bonds, mainly familial. It resonates with the viewers/readers. - -The characters are all fun (only Zenitsu is complained about). - -The anime is a treat to watch. It has beautiful music, amazing sound design, and ofcourse the godtier animation. - -The manga, as a story, is relatively short (for battle-Shounen), and to the point. The characters just become likeable as the story progresses (even Zenitsu). - -All in all, it’s a story that can be enjoyed and appreciated by anyone regardless of age, gender, or being an anime fan.";False;False;;;;1610267231;;False;{};giqw88p;False;t3_kuajof;False;False;t3_kuajof;/r/anime/comments/kuajof/demon_slayer_kimetsu_no_yaiba/giqw88p/;1610312396;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Soul_Advent;;;[];;;;text;t2_h6ppv;False;False;[];;Was legit got shookted when I watched this episode tf. I thought the ASL arc’s the peak of anime, but hell naw.;False;False;;;;1610267246;;False;{};giqw8tk;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqw8tk/;1610312409;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chickenfoot4less;;;[];;;;text;t2_13cms4;False;False;[];;Never seen past seasons 1 and here to read spoilers cause who tf is gonna watch 957 episodes?;False;True;;comment score below threshold;;1610267553;;False;{};giqwk9p;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqwk9p/;1610312639;-30;True;False;anime;t5_2qh22;;0;[]; -[];;;findercutename;;;[];;;;text;t2_8rmmqqbt;False;False;[];;Sunohara sou no kanrinin san. (Kanrinin san) my okaasan.;False;False;;;;1610267710;;False;{};giqwq0p;False;t3_ku9ssn;False;False;t3_ku9ssn;/r/anime/comments/ku9ssn/we_all_have_our_waifus_but_what_about_our_okaasans/giqwq0p/;1610312760;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePhantomRaven;;;[];;;;text;t2_45tqag6z;False;False;[];;Probably. Chapter 957 is one step above chapter 956 imo so lets see;False;False;;;;1610267746;;False;{};giqwrcr;False;t3_ku4yjy;False;False;t1_giqkm2z;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqwrcr/;1610312790;13;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePhantomRaven;;;[];;;;text;t2_45tqag6z;False;False;[];;The story from here on is pure hype so lets see;False;False;;;;1610267844;;False;{};giqwv3g;False;t3_ku4yjy;False;False;t1_giqq3pw;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqwv3g/;1610312859;8;True;False;anime;t5_2qh22;;0;[]; -[];;;FightStylesFight;;;[];;;;text;t2_156t1h;False;False;[];;Awesome thanks bro I’ll check that out;False;False;;;;1610267864;;False;{};giqwvuc;True;t3_kuan5i;False;True;t1_giqw3r3;/r/anime/comments/kuan5i/are_there_really_any_actual_anime_shows_that_are/giqwvuc/;1610312873;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePhantomRaven;;;[];;;;text;t2_45tqag6z;False;False;[];;And the next one is even better;False;False;;;;1610267891;;False;{};giqwwtw;False;t3_ku4yjy;False;True;t1_giqeugr;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqwwtw/;1610312891;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazzlike_Razzmatazz;;;[];;;;text;t2_5ybf9h66;False;False;[];;Maybe not you but many will.;False;False;;;;1610267908;;False;{};giqwxfs;False;t3_ku4yjy;False;False;t1_giqwk9p;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqwxfs/;1610312901;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Steins gate was honestly pretty easy to understand, all the stuff were explained properly, I actually found it far harder to understand in lain or texhnolyze, where you might lose clue of whatever is going on if you get distracted for even a moment;False;False;;;;1610267960;;False;{};giqwzff;False;t3_kuapyx;False;False;t3_kuapyx;/r/anime/comments/kuapyx/spoiler_for_all_the_mad_scientist_out_there_who/giqwzff/;1610312944;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;If you didn't like the S1, then it's not worth it, honestly the S1 is the peak of the series, it just gets worse later on;False;False;;;;1610268016;;False;{};giqx1h2;False;t3_kuapmf;False;True;t3_kuapmf;/r/anime/comments/kuapmf/date_a_live_discussion/giqx1h2/;1610312987;3;True;False;anime;t5_2qh22;;0;[]; -[];;;findercutename;;;[];;;;text;t2_8rmmqqbt;False;False;[];;Thanks for the reply. I think this was a spoiler for me too though. I think I've left something;False;False;;;;1610268026;;False;{};giqx1ud;True;t3_kuapyx;False;True;t1_giqwzff;/r/anime/comments/kuapyx/spoiler_for_all_the_mad_scientist_out_there_who/giqx1ud/;1610312994;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610268051;;1610268249.0;{};giqx2p3;False;t3_kuan5i;False;False;t3_kuan5i;/r/anime/comments/kuan5i/are_there_really_any_actual_anime_shows_that_are/giqx2p3/;1610313010;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610268090;moderator;False;{};giqx42r;False;t3_kuax0b;False;True;t3_kuax0b;/r/anime/comments/kuax0b/yo_where_all_my_fellow_pirates_go_to_watch_anime/giqx42r/;1610313044;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610268113;;False;{};giqx4w1;False;t3_kuax0b;False;True;t3_kuax0b;/r/anime/comments/kuax0b/yo_where_all_my_fellow_pirates_go_to_watch_anime/giqx4w1/;1610313060;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi nicethrice, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610268113;moderator;False;{};giqx4wo;False;t3_kuax0b;False;True;t1_giqx4w1;/r/anime/comments/kuax0b/yo_where_all_my_fellow_pirates_go_to_watch_anime/giqx4wo/;1610313060;1;False;False;anime;t5_2qh22;;0;[]; -[];;;salvagedbot;;;[];;;;text;t2_x5wqu;False;False;[];;"Watch onepiece till episode 195 and then move to one pace ( edited version of one piece matching the manga 1/1) after that . The pacing of the anime get really bad around that, then after 600+ instead of one chapter they go 1/2 a chapter. So far from 891 till now been good if not the best one piece anime ever been some of these ep are movie quality 👌 just like today's episode. - -Or u can read the manga on shounen jump app which is like 2$ a month and u can read 100 chapters a day for one piece, my hero, jujuitsu bleanch, Naruto u name it. Read one piece till chapter 910 then start on ep 891. - -Manga is really fantastic no pacing issues at all and u get cover story (the anime only animated three but they are important to the plot). I only seen oda does that. - -From wiki - -usually shorted to Cover Stories or Cover Arcs, are a series of supplemental stories told through the cover pages of select chapters. With few exceptions, they focus on the activities of various antagonists and side-characters after their initial encounters with the Straw Hat Pirates. -Cover arcs follow a simpler, more decompressed format than the manga storyline proper; their pages are never subdivided into panels, and most of their dialogue and narration runs in a numbered page-bottom caption (their few dialogue balloons usually featuring pictograms instead of words). However, they are equally Canonical, many having introduced or explained elements pivotal to the main storyline – e.g.";False;False;;;;1610268127;;False;{};giqx5f6;False;t3_ku4yjy;False;False;t1_giqtfjx;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqx5f6/;1610313070;7;True;False;anime;t5_2qh22;;0;[]; -[];;;sendhelp404;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_39x4uqma;False;False;[];;rule #5 dude;False;False;;;;1610268189;;False;{};giqx7o2;False;t3_kuax0b;False;True;t3_kuax0b;/r/anime/comments/kuax0b/yo_where_all_my_fellow_pirates_go_to_watch_anime/giqx7o2/;1610313112;1;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;torrent websites that cannot be posted on this subreddit.;False;False;;;;1610268204;;False;{};giqx880;False;t3_kuax0b;False;True;t3_kuax0b;/r/anime/comments/kuax0b/yo_where_all_my_fellow_pirates_go_to_watch_anime/giqx880/;1610313123;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Echo2200;;;[];;;;text;t2_5d5ppgsv;False;False;[];;Whats rule 5?;False;False;;;;1610268215;;False;{};giqx8ko;False;t3_kuax0b;False;True;t1_giqx7o2;/r/anime/comments/kuax0b/yo_where_all_my_fellow_pirates_go_to_watch_anime/giqx8ko/;1610313130;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Olafapoo;;;[];;;;text;t2_5p66c5js;False;False;[];;Uwu arr;False;False;;;;1610268218;;False;{};giqx8oe;False;t3_kuax0b;False;True;t3_kuax0b;/r/anime/comments/kuax0b/yo_where_all_my_fellow_pirates_go_to_watch_anime/giqx8oe/;1610313131;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Echo2200;;;[];;;;text;t2_5d5ppgsv;False;False;[];;Ah, ill delete then;False;False;;;;1610268245;;False;{};giqx9od;False;t3_kuax0b;False;True;t3_kuax0b;/r/anime/comments/kuax0b/yo_where_all_my_fellow_pirates_go_to_watch_anime/giqx9od/;1610313150;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Soupremeee;;;[];;;;text;t2_8c6rhfhb;False;False;[];;Read the manga . it'll be done quick;False;False;;;;1610268262;;False;{};giqxab0;False;t3_ku4yjy;False;False;t1_giqtfjx;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqxab0/;1610313164;9;True;False;anime;t5_2qh22;;0;[]; -[];;;sendhelp404;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_39x4uqma;False;False;[];;We can’t link illegal content in this sub, which includes streams;False;False;;;;1610268263;;False;{};giqxabv;False;t3_kuax0b;False;True;t1_giqx8ko;/r/anime/comments/kuax0b/yo_where_all_my_fellow_pirates_go_to_watch_anime/giqxabv/;1610313164;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FightStylesFight;;;[];;;;text;t2_156t1h;False;False;[];;Dude thank you for this response lol everyone else just shit on this question lol i appreciate your genuine response. I’ll check out that stuff you said, thanks bro 🙏💪;False;False;;;;1610268351;;False;{};giqxdiu;True;t3_kuan5i;False;True;t1_giqx2p3;/r/anime/comments/kuan5i/are_there_really_any_actual_anime_shows_that_are/giqxdiu/;1610313231;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610268352;moderator;False;{};giqxdk7;False;t3_kuayqh;False;True;t3_kuayqh;/r/anime/comments/kuayqh/where_can_i_watch_trava_fist_planet/giqxdk7/;1610313231;2;False;False;anime;t5_2qh22;;0;[]; -[];;;maddoxprops;;;[];;;;text;t2_oojn7;False;False;[];;God damn the quality of that hair animation made me a little hard. I always forget how little/simply hair tends to be animated until I see good hair and it makes me realize it again.;False;False;;;;1610268464;;False;{};giqxhto;False;t3_kua6rh;False;True;t3_kua6rh;/r/anime/comments/kua6rh/ill_never_forget_how_warm_it_sounds/giqxhto/;1610313316;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gangrainette;;MAL;[];;https://myanimelist.net/profile/bouletos;dark;text;t2_vlti1;False;False;[];;Funko pops are ugly. Get Nendoroid.;False;False;;;;1610268506;;False;{};giqxjdf;False;t3_ku95q6;False;True;t3_ku95q6;/r/anime/comments/ku95q6/where_do_you_normally_buy_your_figures_manga_and/giqxjdf/;1610313346;1;True;False;anime;t5_2qh22;;0;[]; -[];;;reconman;;;[];;;;text;t2_a8p2j;False;False;[];;"If Crunchyroll doesn't have it, then the chance of a legal stream existing is very low. - -I can't check Crunchyroll since I'm not from the US.";False;False;;;;1610268771;;False;{};giqxt8g;False;t3_ku7g5h;False;True;t3_ku7g5h;/r/anime/comments/ku7g5h/anyone_know_where_i_can_watch_celestial_method/giqxt8g/;1610313555;1;True;False;anime;t5_2qh22;;0;[]; -[];;;passtiramisu;;;[];;;;text;t2_7sobn2vz;False;False;[];;Yes, like a kabuki play having a five-**act** structure.;False;False;;;;1610268800;;False;{};giqxuaj;False;t3_ku4yjy;False;True;t1_giqk4fa;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqxuaj/;1610313576;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SA090;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/SA090/;light;text;t2_6oq2rdq4;False;False;[];;"> I understand it is a very good anime - -> lives up to the expectations - -> but honestly don’t think it is that good - -Contradicting yourself there buddy.";False;False;;;;1610268811;;False;{};giqxup9;False;t3_ku8yf1;False;True;t3_ku8yf1;/r/anime/comments/ku8yf1/ok_is_it_just_me_or_is_naruto_super_overrated/giqxup9/;1610313585;1;True;False;anime;t5_2qh22;;0;[]; -[];;;irisverse;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/usernamesarehard;light;text;t2_1dzbqjh4;False;False;[];;Ninja Slayer;False;False;;;;1610268959;;False;{};giqy03u;False;t3_kuan5i;False;True;t3_kuan5i;/r/anime/comments/kuan5i/are_there_really_any_actual_anime_shows_that_are/giqy03u/;1610313686;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610268984;;False;{};giqy10s;False;t3_kuayqh;False;True;t3_kuayqh;/r/anime/comments/kuayqh/where_can_i_watch_trava_fist_planet/giqy10s/;1610313704;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your submission has been removed. - -- Please use the links provided by AutoModerator to look for legal streams. We will be unable to provide you with sources of unlicensed content. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610268994;moderator;False;{};giqy1ei;False;t3_ku7g5h;False;True;t3_ku7g5h;/r/anime/comments/ku7g5h/anyone_know_where_i_can_watch_celestial_method/giqy1ei/;1610313712;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;"Take an example of Detective Conan, it's very popular in Japan and its movies earn in 10 billion yen every year but Conan just solve a case, hits soccer ball and saves Ran from enemy or any kind of trouble, that's it and they earn billions of yen. - -Same thing happens with Demon Slayer its plot is easy to understand and animation is tremendous, its protagonist is just like Conan who helps everyone and cares about Nezuko ( just like how Conan cares about Ran). Moreover, it's based on Japanese history and people love to know more about their history.";False;False;;;;1610269049;;False;{};giqy3cn;False;t3_kuajof;False;True;t3_kuajof;/r/anime/comments/kuajof/demon_slayer_kimetsu_no_yaiba/giqy3cn/;1610313748;1;True;False;anime;t5_2qh22;;0;[]; -[];;;irisverse;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/usernamesarehard;light;text;t2_1dzbqjh4;False;False;[];;Akari from Sangatsu no Lion. Never mind the fact that she's a year younger than me.;False;False;;;;1610269078;;False;{};giqy4f9;False;t3_ku9ssn;False;False;t3_ku9ssn;/r/anime/comments/ku9ssn/we_all_have_our_waifus_but_what_about_our_okaasans/giqy4f9/;1610313768;5;True;False;anime;t5_2qh22;;0;[]; -[];;;FightStylesFight;;;[];;;;text;t2_156t1h;False;False;[];;Word, thanks;False;False;;;;1610269095;;False;{};giqy50x;True;t3_kuan5i;False;True;t1_giqy03u;/r/anime/comments/kuan5i/are_there_really_any_actual_anime_shows_that_are/giqy50x/;1610313780;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Spade-Demon;;;[];;;;text;t2_5tkn0i2y;False;False;[];;I watched the entire clip not just focusing on the animation part, what exactly are you looking for? This short anime style action sequences seems like a homage to Japanese animation but you can experience Japanese animation style in anime, lol.;False;False;;;;1610269125;;1610269406.0;{};giqy63v;False;t3_kuan5i;False;True;t1_giqxdiu;/r/anime/comments/kuan5i/are_there_really_any_actual_anime_shows_that_are/giqy63v/;1610313802;1;True;False;anime;t5_2qh22;;0;[]; -[];;;irisverse;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/usernamesarehard;light;text;t2_1dzbqjh4;False;False;[];;That's what I do.;False;False;;;;1610269152;;False;{};giqy71y;False;t3_ku8t28;False;True;t3_ku8t28;/r/anime/comments/ku8t28/do_you_think_im_weird/giqy71y/;1610313820;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRealLoneWarWolf;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_1bfonb4;False;False;[];;God the quality for this episode was beautiful;False;False;;;;1610269215;;False;{};giqy99m;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqy99m/;1610313866;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ecstatic949;;;[];;;;text;t2_4dgh2miz;False;False;[];;HOLY MOLY 957?! Is it worth it;False;False;;;;1610269236;;False;{};giqya17;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqya17/;1610313885;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610269238;moderator;False;{};giqya37;False;t3_ku9rgt;False;True;t1_giqtruk;/r/anime/comments/ku9rgt/attack_on_titan_size_comparison/giqya37/;1610313886;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your submission has been removed. - -- Your post looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler tagging posts, make sure you include the name of the show you're spoiling in the title of your post. We can't add it for you after the fact. You can then tag your post as containing spoilers by using the ""spoiler"" button, either when submitting or afterwards. - - If you're submitting a text-based post and need to mark spoilers for multiple series, you should use the same spoiler format as for comments. Use the editor's Markdown mode if you're on new Reddit, and then use the `[Work title](/s ""my favorite character dies"")` format to tag specific parts of your text. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610269259;moderator;False;{};giqyavn;False;t3_ku9rgt;False;True;t3_ku9rgt;/r/anime/comments/ku9rgt/attack_on_titan_size_comparison/giqyavn/;1610313901;1;True;False;anime;t5_2qh22;;0;[]; -[];;;merrymapleleaf;;;[];;;;text;t2_5pf22e74;False;False;[];;MAID sama !! my first romcom too :) definitely got me hooked;False;False;;;;1610269314;;False;{};giqyctp;False;t3_ku9j4h;False;False;t1_giqq9s1;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqyctp/;1610313939;5;True;False;anime;t5_2qh22;;0;[]; -[];;;FightStylesFight;;;[];;;;text;t2_156t1h;False;False;[];;Well i just meant like the high action fighting with like the over the top dialogue and stuff like that. It’s kind of like the stereotype you like always tend to see even anime is depicted in like pop culture uk?;False;False;;;;1610269458;;False;{};giqyi1t;True;t3_kuan5i;False;True;t1_giqy63v;/r/anime/comments/kuan5i/are_there_really_any_actual_anime_shows_that_are/giqyi1t/;1610314035;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Spade-Demon;;;[];;;;text;t2_5tkn0i2y;False;False;[];;Ahh okay, seems like others have recommended you a few things. Have a good day.;False;False;;;;1610269554;;False;{};giqylhc;False;t3_kuan5i;False;True;t1_giqyi1t;/r/anime/comments/kuan5i/are_there_really_any_actual_anime_shows_that_are/giqylhc/;1610314097;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;"There's one thing which I am still confused about Steins;Gate. Please help me if you have understood the entire story. Here's my one Okabe lost question though. - ->We saw how Okabe saved Kurisu but there should be three Okabes( 1st episode Okabe, 23rd episode Okabe and 24th episode Okabe) but we only saw two Okabe in the ending episode ( 1st episode one and 24th one), so where did one Okabe got lost? Now you can say that 23rd episode Okabe has done the time travel to become the 24th one so there were always two Okabe all along not three but I don't think so time works like this because he's literally time traveling not passing his future memories";False;False;;;;1610269593;;False;{};giqymv3;False;t3_kuapyx;False;True;t3_kuapyx;/r/anime/comments/kuapyx/spoiler_for_all_the_mad_scientist_out_there_who/giqymv3/;1610314127;1;True;False;anime;t5_2qh22;;0;[]; -[];;;merrymapleleaf;;;[];;;;text;t2_5pf22e74;False;False;[];;Fullmetal alchemist brotherhood (fmab) definitely the best :’). Definitely try Attack on Titan too;False;False;;;;1610269684;;False;{};giqyq3p;False;t3_ku7s98;False;True;t1_giqlpur;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/giqyq3p/;1610314194;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePhantomRaven;;;[];;;;text;t2_45tqag6z;False;False;[];;Drags a bit before this but u can read the manga during those parts which is complete fire. Also the current wano arc has been top tier in the anime and this episode was just HD movie quality and from here on the the hype will just keep building;False;False;;;;1610269741;;False;{};giqys2e;False;t3_ku4yjy;False;False;t1_giqya17;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqys2e/;1610314241;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Khuter;;;[];;;;text;t2_smyb4;False;False;[];;Steins Gate 0 should be able to answer that question if I'm understanding your confusion correctly;False;False;;;;1610269742;;False;{};giqys3h;False;t3_kuapyx;False;True;t1_giqymv3;/r/anime/comments/kuapyx/spoiler_for_all_the_mad_scientist_out_there_who/giqys3h/;1610314242;1;True;False;anime;t5_2qh22;;0;[]; -[];;;findercutename;;;[];;;;text;t2_8rmmqqbt;False;False;[];;Sorry I dont understand;False;False;;;;1610269774;;False;{};giqyt75;True;t3_kuapyx;False;True;t1_giqymv3;/r/anime/comments/kuapyx/spoiler_for_all_the_mad_scientist_out_there_who/giqyt75/;1610314263;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Thanks for the reply.;False;False;;;;1610269830;;False;{};giqyv5c;False;t3_kuapyx;False;True;t1_giqys3h;/r/anime/comments/kuapyx/spoiler_for_all_the_mad_scientist_out_there_who/giqyv5c/;1610314299;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tomytronics;;;[];;;;text;t2_y5py1;False;False;[];;Just... don't. Let OP find out if the anime stays really good to the end or not.;False;False;;;;1610269868;;False;{};giqywgw;False;t3_ku65n3;False;True;t1_giqk259;/r/anime/comments/ku65n3/made_in_abyss_episode_1_2_review/giqywgw/;1610314323;2;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;I mean when Okabe saved Kurisu, we saw two Okabe one was with Mayuri and the other was trying to save Kurisu from her father. But there was one more Okabe in 23rd episode who time-traveled to the first episode but was failed to save Kurisu. So overall there must be three Okabe in ep1 but we only saw two Okabe, so where did one Okabe go?;False;False;;;;1610270044;;False;{};giqz2nc;False;t3_kuapyx;False;True;t1_giqyt75;/r/anime/comments/kuapyx/spoiler_for_all_the_mad_scientist_out_there_who/giqz2nc/;1610314444;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ARandomBrowserIThink;;;[];;;;text;t2_3u3dk84d;False;False;[];;AM I WATCHING ONE PIECE RN?! This episode was amazing holy shit. Nice job toei!;False;False;;;;1610270169;;False;{};giqz77b;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqz77b/;1610314534;23;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;Ao-chan Can't Study - unlike most recommendations here it's just a short and hilarious romcom, nothing more, nothing less. And only 12x12 minutes long, even less if you skip OP/ED songs.;False;False;;;;1610270212;;False;{};giqz8ml;False;t3_ku9j4h;False;True;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqz8ml/;1610314561;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SYACACA;;;[];;;;text;t2_3cczj904;False;False;[];;esports sounds interesting as gigguk has mentioned, but in my case, I do want to see the life of a DJ or a streamer made into an anime. I guess we do have hololive for the streamer but imagine the life of a DJ in an anime form.;False;False;;;;1610270262;;False;{};giqzaff;False;t3_kub9ui;False;True;t3_kub9ui;/r/anime/comments/kub9ui/in_the_same_vein_as_food_wars_foodcooking_and/giqzaff/;1610314594;0;True;False;anime;t5_2qh22;;0;[]; -[];;;kuttle_yt;;;[];;;;text;t2_4ag3zeoa;False;False;[];;One of the best changes in one piece;False;False;;;;1610270291;;False;{};giqzbhk;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqzbhk/;1610314616;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bluephazon;;;[];;;;text;t2_54m44ye6;False;False;[];;The dishes and techniques you see in Food Wars is all based off the real world. The speed in which they do some things is highly exaggerated but can be overlooked given it's an anime. Also, some of the more whacky stuff you see with like the underground chefs with their chainsaw blades and circus balls is of course for entertainment purposes.;False;False;;;;1610270664;;False;{};giqzots;False;t3_kub9ui;False;True;t3_kub9ui;/r/anime/comments/kub9ui/in_the_same_vein_as_food_wars_foodcooking_and/giqzots/;1610314872;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badheartveil;;;[];;;;text;t2_13j052;False;False;[];;True tears, relife, kimi no iru machi - I will admit with the latter two I chose to read WEBTOON/manga.;False;False;;;;1610270756;;False;{};giqzs3y;False;t3_ku9j4h;False;False;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/giqzs3y/;1610314936;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Arbata-Asher;;;[];;;;text;t2_dgsblpf;False;False;[];;Well, I really hope One Piece get to the karms chart this week;False;False;;;;1610270780;;False;{};giqzszk;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giqzszk/;1610314953;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RandomRedditorWithNo;;ANI a-1milquiz;[];;https://anilist.co/user/lafferstyle;dark;text;t2_tt0a1;False;True;[];;Isn't that what D4DJ is about?;False;False;;;;1610271030;;False;{};gir020s;False;t3_kub9ui;False;True;t1_giqzaff;/r/anime/comments/kub9ui/in_the_same_vein_as_food_wars_foodcooking_and/gir020s/;1610315129;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SYACACA;;;[];;;;text;t2_3cczj904;False;False;[];;honestly yeah but I want something more in-depth with an interesting story plot. D4DJ's story wasn't bad nor was it really good. The music was nice tho.;False;False;;;;1610271217;;False;{};gir08su;False;t3_kub9ui;False;True;t1_gir020s;/r/anime/comments/kub9ui/in_the_same_vein_as_food_wars_foodcooking_and/gir08su/;1610315256;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Damarugaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Damarugaki/;light;text;t2_6zyxfkgg;False;False;[];;Man, I have never been so happy watching the anime. The quality of this was movie like.;False;False;;;;1610271326;;False;{};gir0cmx;False;t3_ku4yjy;False;False;t1_giq16fv;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir0cmx/;1610315333;16;True;False;anime;t5_2qh22;;0;[]; -[];;;ShimaDango;;;[];;;;text;t2_ozyfbhi;False;False;[];;At this point the marine are more like sending fodders just to appease the masses.;False;False;;;;1610271751;;False;{};gir0rnl;False;t3_ku4yjy;False;False;t1_giqplk1;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir0rnl/;1610315617;35;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610271783;moderator;False;{};gir0ssd;False;t3_kubmpk;False;True;t3_kubmpk;/r/anime/comments/kubmpk/how_do_people_keep_up_with_anime_studios_staff/gir0ssd/;1610315637;2;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610272139;moderator;False;{};gir15cg;False;t3_kubp30;False;True;t3_kubp30;/r/anime/comments/kubp30/please_help_me_remember_an_upcoming_anime/gir15cg/;1610315874;1;False;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;"Most people don't. The average anime fan really doesn't know the difference between any of the aspects that make up anime production on a base level, much less understand any directorial quirks that aren't regularly a point of discussion in the anime community. That just ain't what most people get into anime for. - -Those whose directorial knowledge expands beyond popular movies and mainstream tv shows tend to be the nerds who are active in the sakuga subcommunity.";False;False;;;;1610272203;;False;{};gir17mq;False;t3_kubmpk;False;False;t3_kubmpk;/r/anime/comments/kubmpk/how_do_people_keep_up_with_anime_studios_staff/gir17mq/;1610315915;6;True;False;anime;t5_2qh22;;0;[]; -[];;;wubbbalubbadubdub;;;[];;;;text;t2_io4pp;False;False;[];;"I don't know how long the whole OVA is supposed to be but this might be all of it on YouTube. - -https://www.youtube.com/watch?v=3pT7gadYPso";False;False;;;;1610272518;;False;{};gir1ipt;False;t3_kuayqh;False;True;t3_kuayqh;/r/anime/comments/kuayqh/where_can_i_watch_trava_fist_planet/gir1ipt/;1610316133;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KuroShiroTaka;;;[];;;;text;t2_qs5po;False;False;[];;Then don't bring it up.;False;False;;;;1610272554;;False;{};gir1k1l;False;t3_ku4yjy;False;False;t1_giqs695;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir1k1l/;1610316161;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Chillmice;;;[];;;;text;t2_47tgfxl9;False;False;[];;Ain't gonna look at comments, just here to say that if this was apparently the best episode so far, then that's enough hype to get me through this, currently on episode 112;False;False;;;;1610272931;;False;{};gir1xfi;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir1xfi/;1610316423;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610272939;;False;{};gir1xq0;False;t3_kubp30;False;False;t3_kubp30;/r/anime/comments/kubp30/please_help_me_remember_an_upcoming_anime/gir1xq0/;1610316427;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi canillascarl15, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610273101;moderator;False;{};gir23j7;False;t3_kubw4n;False;True;t3_kubw4n;/r/anime/comments/kubw4n/any_anime_recommendations_to_watch/gir23j7/;1610316548;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"Start looking at who made your favorite shows. (On MyAnimeList, AnidB, etc.) See what else they made. Note any stylistic similarities. You might have some a-ha moments of discovery about when you discover something about a show's creators that totally makes sense. (I remember very clearly that the first time this happened for me was when I realized that SHAFT's adaptation of Ume Aoki's manga Hidamari Sketch and her involvement in it was eventually what led to her being the character designer for Madoka Magica.) - -For animators, browse clips on Sakugabooru--look at cuts from your favorite shows, see who made them, and again, start making those connections. - -For an example of what this might look like--several days ago, I finished watching Bloom into You. That show has some strong stylistic flair in directing choices, but sometimes I think it misses the mark or maybe transparently tries too hard to be ""artsy."" Regardless, I think it *is* a very well-directed show, and the director clearly wanted to make a stylistic anime. So I looked up the director. Who is it? Makoto Kato. What else did he direct? Of anime that I've seen (part of), Beautiful Bones: Sakurako's Investigation. That show also has some stylistic flair to it, and it's by the same studio--Troyca. So what do I know now? Kato is a director associated with Studio Troyca. He is still developing his artistic style, and his work is sometimes uneven, but he shows significant promise. In other words, he is a director to keep eyes out for--considering the strong sense of directorial flair in Bloom into You and Beautiful Bones, he might go and direct some true masterpieces in the future.";False;False;;;;1610273160;;1610273834.0;{};gir25pf;False;t3_kubmpk;False;False;t3_kubmpk;/r/anime/comments/kubmpk/how_do_people_keep_up_with_anime_studios_staff/gir25pf/;1610316591;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Formeralucardbradley;;;[];;;;text;t2_8roc74ql;False;False;[];;Very surprised to see one piece thread here getting 100 comments and 650 upvotes.;False;False;;;;1610273265;;False;{};gir29bq;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir29bq/;1610316669;9;True;False;anime;t5_2qh22;;0;[]; -[];;;nickelopewnd;;;[];;;;text;t2_3tjywvwj;False;False;[];;Sorry, but it's an upcoming anime. Just changed the details cause it's the wrong one.;False;False;;;;1610273331;;False;{};gir2bm7;False;t3_kubp30;False;False;t1_gir1xq0;/r/anime/comments/kubp30/please_help_me_remember_an_upcoming_anime/gir2bm7/;1610316712;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Formeralucardbradley;;;[];;;;text;t2_8roc74ql;False;False;[];;Ofcourse we dont know. The episode didnt air.;False;False;;;;1610273467;;False;{};gir2gap;False;t3_ku4yjy;False;False;t1_giqs695;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir2gap/;1610316802;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TravisScotch--;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/TravisScotch/;light;text;t2_7fexh1u7;False;False;[];;"Akame makes the whole show. The characters are bland and after the first death you would have to turn your brain off to not see every other death coming. - - -Akame is the only good part of the show by far";False;False;;;;1610273483;;False;{};gir2gw5;False;t3_kuajy0;False;True;t3_kuajy0;/r/anime/comments/kuajy0/my_views_on_akame_ga_kill_the_anime_heavy/gir2gw5/;1610316814;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vagabondeluxe;;;[];;;;text;t2_6xj8vlb9;False;False;[];;"My opinion because everyone can enjoy it, not only anime fans but even casual watchers and older people, for example my parents don’t watch anime at all but they enjoyed Kimetsu no Yaiba. - -It’s a very basic shonen but maybe cuz of its simplicity it’s appreciated, also we have to admit that Ufotable did an amazing job with the adaptation";False;False;;;;1610273505;;False;{};gir2ho3;False;t3_kuajof;False;True;t3_kuajof;/r/anime/comments/kuajof/demon_slayer_kimetsu_no_yaiba/gir2ho3/;1610316829;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Constant_Borborygmus;;;[];;;;text;t2_kz3fvly;False;False;[];;What types of non-anime shows/movies/books/games do you generally enjoy? A basic idea of what kind of genres and tones you’re into can go a long way for recommendations!;False;False;;;;1610273515;;False;{};gir2i0q;False;t3_ku7s98;False;True;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/gir2i0q/;1610316838;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nuf3x;;;[];;;;text;t2_1lx0e7kc;False;False;[];;Have to agree. The show feels very bland and leaves you with a bad taste in your mouth.;False;False;;;;1610273771;;False;{};gir2qz6;True;t3_kuajy0;False;True;t1_gir2gw5;/r/anime/comments/kuajy0/my_views_on_akame_ga_kill_the_anime_heavy/gir2qz6/;1610317017;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610273838;;False;{};gir2tae;False;t3_ku4yjy;False;True;t1_gir1k1l;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir2tae/;1610317061;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;False;[];;"To know what particular staff members signatures are, you would just have to see what they've done and find some commonalities among their work. Like, for a simple example, you mentioned head tilts. If you watch shows from studio Shaft, you'll notice that as a commonality among most stuff that comes out of the studio, despite the fact that all of what comes out of the studio has different staff members. If you look to see who is a common name among all of their works, you'll see Akiyuki Shinbou's name attached to basically all of them, so it would be easy to conclude that this is a stylistic choice he brought to the studio and taught staff members. - -That's ultimately what it comes down to. Check out your favorite shows and see what staff they share, or look at your favorite animation cuts on Sakugabooru and see what else that particular animator has worked on. Find shows with your favorite character designs and look at what else the character designer has worked on, or take a show with an art style you find interesting and look into the art director (or background artists if you like the backgrounds). If you see all of their stuff, you'll eventually notice the commonalities that make up their signatures. And you'll notice other things, like what studio they seem to have a preference for working at, or what kinds of shows/cuts they tend to specialize in (if any). You can generally find the basic information on who played what roles on what shows just by looking at sites like MAL and ANN, though sometimes there are some inaccuracies or misleading credits (such as the aforementioned Akiyuki Shinbou's name being listed as director on every Shaft show, when he hasn't actually directed any of them and generally serves as a mentor and manager role for the actual directors). - -And don't be afraid to learn about staff from other sources, other people have already done most of the work for you. Sakugablog is a fantastic source for learning about anime creative staff for example, if you want to learn about talented directors and animators, and what makes them work, I highly recommend checking out the site. You can also look for interviews with staff members you like to learn more about them and what they're thinking when making their work. I think it's great to know about the people who worked on your favorite shows, it's enlightening in it's own right and will help you to better understand your taste and especially help you know what shows to look out for.";False;False;;;;1610273878;;False;{};gir2uoq;False;t3_kubmpk;False;True;t3_kubmpk;/r/anime/comments/kubmpk/how_do_people_keep_up_with_anime_studios_staff/gir2uoq/;1610317086;2;True;False;anime;t5_2qh22;;0;[]; -[];;;THEKING07JB;;;[];;;;text;t2_63rwtyz3;False;False;[];;Exiting as hell all I will say;False;False;;;;1610274020;;False;{};gir2zms;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir2zms/;1610317192;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BBoca;;;[];;;;text;t2_6l0jm;False;False;[];;"HOLY CRAP This episode was so not One piece style. SO MUCH JUICYYYYY Info and reveals. - -Wow I am impressed this was such a cool episode my mind is fucking blown wtf....";False;False;;;;1610274082;;False;{};gir31r1;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir31r1/;1610317236;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TravisScotch--;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/TravisScotch/;light;text;t2_7fexh1u7;False;False;[];;"The show is generally disliked but a lot of people who start watching anime start on Netflix and since Akame Ga Kill is one of the bigger shows they start out with it. People tend to have the newer watcher affect where everything you first watch is amazing to you because it’s one of the first times you’ve been exposed to the medium of anime. - - -This take isn’t that unpopular but there is a vocal minority who protects the show at all costs";False;False;;;;1610274153;;False;{};gir345m;False;t3_kuajy0;False;True;t1_gir2qz6;/r/anime/comments/kuajy0/my_views_on_akame_ga_kill_the_anime_heavy/gir345m/;1610317280;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BBoca;;;[];;;;text;t2_6l0jm;False;False;[];;"Dude watch OnePace. It honestly will fly by and it really cuts out so much filler/pacing issues. Its just continual movies practically of One piece. Really recommend it to anyone that hasnt watched One Piece. - -This show has become part of my life...";False;False;;;;1610274214;;False;{};gir369h;False;t3_ku4yjy;False;False;t1_giqtfjx;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir369h/;1610317319;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CyberpunkV2077;;;[];;;;text;t2_2r9n2te8;False;False;[];;What did they say?;False;False;;;;1610274276;;False;{};gir38e7;False;t3_ku4yjy;False;False;t1_giq36e3;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir38e7/;1610317357;6;True;False;anime;t5_2qh22;;0;[]; -[];;;CyberpunkV2077;;;[];;;;text;t2_2r9n2te8;False;False;[];;What chapter did it adapt?;False;False;;;;1610274418;;False;{};gir3dbg;False;t3_ku4yjy;False;False;t1_giqk9zi;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir3dbg/;1610317447;7;True;False;anime;t5_2qh22;;0;[]; -[];;;jward;;;[];;;;text;t2_3ct0;False;False;[];;I haven't seen Monster, but the rest are all top notch. Death Note can be pretty binary and people either love it or hate it.;False;False;;;;1610274442;;False;{};gir3e5j;False;t3_ku7s98;False;False;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/gir3e5j/;1610317462;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BigBangZebraMan;;;[];;;;text;t2_bs10y0y;False;False;[];;The content doesn't matter. What matters is that we didn't get dragged out scenes of everyones reactions, people actually spoke like human beings, and there was no repitition in what they were saying!;False;False;;;;1610274576;;False;{};gir3isz;False;t3_ku4yjy;False;True;t1_giqb2oj;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir3isz/;1610317550;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MonDking;;;[];;;;text;t2_21ff5t7v;False;False;[];;956;False;False;;;;1610274592;;False;{};gir3jct;False;t3_ku4yjy;False;False;t1_gir3dbg;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir3jct/;1610317561;15;True;False;anime;t5_2qh22;;0;[]; -[];;;BBoca;;;[];;;;text;t2_6l0jm;False;False;[];;THIS EPISODE WAS NUTS OH MA GAWDDDDDDDD;False;False;;;;1610274599;;False;{};gir3jln;False;t3_ku4yjy;False;False;t1_gir29bq;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir3jln/;1610317566;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Zap-Brannigan;;MAL;[];;http://myanimelist.net/animelist/ZappBrannigan;dark;text;t2_5acme;False;False;[];;"If you're any particularly interested in ones where couples are together for a large portion of the series, I think of these two at the moment: - -Paradise Kiss is a nice serious drama romance. Kinda reminded me of a soap opera. Some people give soap operas a lot of flack, so I want to clarify that I don't mean anything bad by this. - -Ore Monogatari is kinda nice, cozy/fuzzy.";False;False;;;;1610274615;;False;{};gir3k58;False;t3_ku9j4h;False;True;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/gir3k58/;1610317577;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SatouSmith;;;[];;;;text;t2_85ir9527;False;True;[];;Anime watchers forgot a medium called Manga. It was published in one of the most popular magazines. Heard 3 volumes crossed the 5 million mark each.;False;False;;;;1610274639;;False;{};gir3kxp;False;t3_kuajof;False;True;t1_gir2ho3;/r/anime/comments/kuajof/demon_slayer_kimetsu_no_yaiba/gir3kxp/;1610317592;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Surrideo;;MAL;[];;http://myanimelist.net/profile/Choa77;dark;text;t2_6lqhd;False;False;[];;"THIS! This is what One Piece could be if it didn't have to deal with filler or budget constraints (due to being a long running show). If One Piece ever gets remastered once it ends, this is the quality I could expect from a 24 episode seasonal anime. - -Also, I love Mihawk. We rarely see him, but he has such a massive presence. I hope Oda starts incorporating him more once we're past Wano and dealing with Shanks.";False;False;;;;1610274718;;False;{};gir3noc;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir3noc/;1610317652;17;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610274739;;False;{};gir3odn;False;t3_ku4yjy;False;True;t1_giqt0a3;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir3odn/;1610317666;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;"Here are a few recommendations outside the typical battle shounen shows, a bit of everything: - -&#x200B; - -Ao-chan can't study - sweet romantic comedy with funny twists in someone's head - -Violet Evergarden - heavy weight drama, beautiful animation - -Laid-back Camp - ultralight weight cosy slice of life featuring campfire - -A Place Further Than The Universe - adventure, comedy - -Girls Und Panzer - high school sport story with tanks - -Rising Of The Shield Hero - fantasy, adventure, action, drama - -GATE : Thus the JSDF fought there - modern day military in a fantasy world. Action, fantasy, adventure - -The Pet Girl Of Sakurasou - unusual high schoolers in a dormitory. Romance, comedy, slice of life - -The Saga of Tanya the Evil - a little psychopath girl soldier in an alternative version of World War I. Action, military, magic - -Goblin Slayer - dark, graphic fantasy with lot of action, not for the feint hearted. (R-17+) - -Shirobako - anime about making anime, filled with scenes like [this](https://youtu.be/FHv2Ph22VSQ). :D - -KonoSuba - great comedy/parody, though better watch some other ""isekai"" (Like GATE or Shield Hero) to get better context. - -Dusk Maiden Of Amnesia - romantic horror or horrific romance...? Anyway, one of them is a ghost. - -&#x200B; - -All of them are relatively short, 12-25 episodes.";False;False;;;;1610274784;;False;{};gir3pxf;False;t3_kubw4n;False;True;t3_kubw4n;/r/anime/comments/kubw4n/any_anime_recommendations_to_watch/gir3pxf/;1610317697;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cockmanthecatfucker;;;[];;;;text;t2_9hn4j1el;False;False;[];;I already have;False;False;;;;1610275227;;False;{};gir457v;False;t3_ku4yjy;False;False;t1_giqwk9p;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir457v/;1610317999;4;True;False;anime;t5_2qh22;;0;[]; -[];;;vagabondeluxe;;;[];;;;text;t2_6xj8vlb9;False;False;[];;the manga was published since 2016 and it didn't have the popularity it has now, and for sure wasn't selling those numbers before the anime, it's undeniable the adaptation made by Ufotable boosted its popularity immensely;False;False;;;;1610275360;;False;{};gir49vi;False;t3_kuajof;False;True;t1_gir3kxp;/r/anime/comments/kuajof/demon_slayer_kimetsu_no_yaiba/gir49vi/;1610318106;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610275426;;False;{};gir4cap;False;t3_ku7s98;False;True;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/gir4cap/;1610318150;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SatouSmith;;;[];;;;text;t2_85ir9527;False;True;[];;"Anime brought the series to more people. You won't have seen many of the ""good"" anime if they weren't adapted. Anime increased its VISIBILITY. Anime did its job. - - Heck the promised Neverland and made in Abyss is only popular because of anime.";False;False;;;;1610275796;;1610292607.0;{};gir4pe1;False;t3_kuajof;False;False;t1_gir49vi;/r/anime/comments/kuajof/demon_slayer_kimetsu_no_yaiba/gir4pe1/;1610318395;5;True;False;anime;t5_2qh22;;0;[]; -[];;;jward;;;[];;;;text;t2_3ct0;False;False;[];;" -* Bunny Girl Senpai is by far my favorite anime with a romance tag. The entire title and thumbnail is clickbait. It's also not a rom-com or harem which is a nice change of pace from most romances. -* Spice & Wolf is different. It's a romance set in a fantasy world with an economics lesson as the backdrop. And it's way better than that description makes it sound. It also has the only tsundre main character I don't want to replace with a blender. -* Maid Sama & Ouren Host Club are nice light rom-coms. They're just kinda fun. -* Tonikawa is basically diabetes with how sweet it is. The central conflict seems to be the two main characters trying to convince the other they love them the mostest. -* Domestic Girlfriend is straight up trash. But the trash that is on fire in the dumpster is romance scented. I found it very... refreshing because it hits standard romance / harem tropes but attached real world consequences to those tropes. But it's straight up trash. If you don't like the first episode, you won't like the series.";False;False;;;;1610275923;;False;{};gir4tup;False;t3_ku9j4h;False;True;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/gir4tup/;1610318481;2;True;False;anime;t5_2qh22;;0;[]; -[];;;External-Net7300;;;[];;;;text;t2_70qvfvio;False;False;[];;"I will recommend: - -1. Erased -2. Steins Gate -3. Food wars -4. That time I got reincarnated as a slime -5. Oregairu -6. Sword Art Online -7. Assassination Classroom -8. Hyouka -9. Mirai Nikki -10. Nisekoi";False;False;;;;1610275936;;False;{};gir4ub8;False;t3_ku7s98;False;True;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/gir4ub8/;1610318490;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Here to recommend you **the Garden of sinners**, it is this urban fantasy movie series mixed with romance, murder-mystery, action, and philosophy. I recommend watching it in the series in the order of 1, 2, 3, 4, 6, 5, recap, 7, 8 to maximize your enjoyment of this series. - -This show still has action but it's not the main focus. - -If you're more of a fan of Action, then the isekai genre is going to be right up your valley.";False;False;;;;1610276007;;False;{};gir4wt3;False;t3_kubw4n;False;True;t3_kubw4n;/r/anime/comments/kubw4n/any_anime_recommendations_to_watch/gir4wt3/;1610318534;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Borna44_;;;[];;;;text;t2_3qq4vqe6;False;False;[];;Definently Jujutsu kaisen, it's currently airing with 13/24 episodes out. It's a battle shounen with amazing characters and fights;False;False;;;;1610276030;;False;{};gir4xmz;False;t3_kubw4n;False;True;t3_kubw4n;/r/anime/comments/kubw4n/any_anime_recommendations_to_watch/gir4xmz/;1610318551;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Leiothrix;;;[];;;;text;t2_1210nz;False;False;[];;"Holo from Spice & Wolf. She would be a great wife, but she's also a great mum. Mayuri has had a lot of fun growing up.";False;False;;;;1610276167;;False;{};gir52h7;False;t3_ku9ssn;False;False;t3_ku9ssn;/r/anime/comments/ku9ssn/we_all_have_our_waifus_but_what_about_our_okaasans/gir52h7/;1610318642;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Pure_Afternoon_4974;;;[];;;;text;t2_9eed9gdd;False;False;[];;"when hawk-eye said ""hisashi buri dana"" it sent down shivers of excitement up my belly.";False;False;;;;1610276319;;False;{};gir57zr;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir57zr/;1610318741;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Karitora4022;;;[];;;;text;t2_1eduwmmm;False;False;[];;Episode WHAT now?;False;False;;;;1610276386;;False;{};gir5adi;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir5adi/;1610318786;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Pure_Afternoon_4974;;;[];;;;text;t2_9eed9gdd;False;False;[];;i think its the point. Oda is kinda going to build like a contrast, from Old Marineford where Luffy was simply helpless to the new Marineford Where now he can stand up to the best in the World and fight them.;False;False;;;;1610276501;;False;{};gir5ekl;False;t3_ku4yjy;False;False;t1_giqq8wy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir5ekl/;1610318864;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Recently trying maid sama;False;False;;;;1610276616;;False;{};gir5ipg;True;t3_ku9j4h;False;True;t1_gir4tup;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/gir5ipg/;1610318940;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Pure_Afternoon_4974;;;[];;;;text;t2_9eed9gdd;False;False;[];;i am hoping Navy will bring out Various kinds of Pacifista not just Kuma Clones but more.. more epic ones and then an army of those epic ones.;False;False;;;;1610276628;;False;{};gir5j53;False;t3_ku4yjy;False;False;t1_giqgwwx;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir5j53/;1610318947;4;True;False;anime;t5_2qh22;;0;[]; -[];;;lil_icebear;;;[];;;;text;t2_elnjx;False;False;[];;Tell then what?;False;False;;;;1610277182;;False;{};gir62sv;False;t3_ku65n3;False;True;t1_giqabt2;/r/anime/comments/ku65n3/made_in_abyss_episode_1_2_review/gir62sv/;1610319312;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BossandKings;;;[];;;;text;t2_5ifr53k7;False;False;[];;"I recommend - -Shigatsu wa kimi no Uso: it has good romance and is nice to look at visually and stunning in sound design and music. Music is an important part of the story - -Midori No hibi: feel good, heartwarming and wholesome slice of life about a right hand girlfriend - -Kaiba: unique art style, great treatment of the amnesia theme";False;False;;;;1610277317;;1610280647.0;{};gir67nj;False;t3_ku9j4h;False;False;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/gir67nj/;1610319401;1;True;False;anime;t5_2qh22;;0;[]; -[];;;utente007;;;[];;;;text;t2_5abo7ug0;False;False;[];;He didn’t fail the first time either, Ace failed himself lol;False;False;;;;1610277584;;False;{};gir6he9;False;t3_ku4yjy;False;False;t1_giqq8wy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir6he9/;1610319579;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Cyclone_96;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CrazyCyclone96;light;text;t2_es52y62;False;False;[];;7.56 isn’t a bad rating for MAL. A bad rating IMO is around a 6 or so;False;False;;;;1610277622;;False;{};gir6iq6;False;t3_ku9j4h;False;False;t1_giqq8sg;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/gir6iq6/;1610319602;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Espada_6;;;[];;;;text;t2_sb5ghaa;False;False;[];;If you’re gonna recommend a fate series, you should mention the order so they don’t get confused and possibly hate the series;False;False;;;;1610277633;;False;{};gir6j3a;False;t3_ku7s98;False;True;t1_giql1h6;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/gir6j3a/;1610319608;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ijiolokae;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/corvoatano;light;text;t2_15k31w;False;False;[];;"Fodder Marine: Wait, you sending us to arrest Mihawk? the Guy that Apparently regularly clashed with the Yonko shanks? That Mihawk? - -World Gov: Yes, please try not to lose too many ship";False;False;;;;1610277696;;False;{};gir6leb;False;t3_ku4yjy;False;False;t1_gir0rnl;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir6leb/;1610319651;40;True;False;anime;t5_2qh22;;0;[]; -[];;;Man_Without_Fear;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PlsBuff;light;text;t2_a37ql;False;False;[];;I think it was explained in the VN but not the anime. Going back in the time machine put them in a slightly different world line that diverged just enough to avoid the paradox of running into the previous Okabe.;False;False;;;;1610277810;;False;{};gir6pe0;False;t3_kuapyx;False;True;t1_giqymv3;/r/anime/comments/kuapyx/spoiler_for_all_the_mad_scientist_out_there_who/gir6pe0/;1610319730;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Espada_6;;;[];;;;text;t2_sb5ghaa;False;False;[];;I’d recommend ID: Invaded, Akudama Drive, Fire Force, Golden Kamuy, and Dr. Stone. I left out stuff like My Hero Academia and Attack On Titan because others mentioned them.;False;False;;;;1610277892;;False;{};gir6sbs;False;t3_ku7s98;False;True;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/gir6sbs/;1610319793;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fighterzx_;;;[];;;;text;t2_6dam9nnj;False;False;[];;"If you want Romance depression I’d recommend Darling in the FRANXX. - -If you want *more* romance depression I’d recommend Your Lie in April. - -If you want *extreme* levels of depression I’d recommend Rascal Doesn’t Dream of A Bunny Girl Senpai, along with it’s movie. - -If you can get through the slow development I’d recommend Sakurasou no Pet Kanojo. - -If you can get through *even* slower development I’d recommend Gotoubun no Hanayome. - -If you want something trashy I’d recommend Domestic na Kanojo. - -If you want *romantic comedy* I’d recommend Tonikaku Kawaii. - -The best romaces require patience and willpower, but in the end it will all be worth it.";False;False;;;;1610278380;;1610278586.0;{};gir79x2;False;t3_ku9j4h;False;True;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/gir79x2/;1610320127;2;True;False;anime;t5_2qh22;;0;[]; -[];;;myrmonden;;;[];;;;text;t2_f0rs6;False;False;[];;"yes no war has ever been done on 1 big continent between different countries on the same continent. - -All blue would be way worse off if it was Pangea, instead of having a place where all water is connected in a choke point so all fishes are there, u would have all the water around all the ground spread out to the max, making it the worst possible way to connect all fishes on 1 location.";False;False;;;;1610278996;;False;{};gir7vji;False;t3_ku4yjy;False;True;t1_giqk9ld;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir7vji/;1610320525;1;True;False;anime;t5_2qh22;;0;[]; -[];;;falkner97;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/falkner99;light;text;t2_6y92q69v;False;False;[];;very nice anime;False;False;;;;1610279256;;False;{};gir84kq;False;t3_ku8htf;False;True;t3_ku8htf;/r/anime/comments/ku8htf/who_remembers_knights_and_magic/gir84kq/;1610320694;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VenomMurks;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_90jsdux;False;False;[];;"I'm also going to recommend bunny girl senpai. I really liked that it was a bit more than just romance. It was the added depth to help me get into romance shows a bit more and was really good. - -If you want more straight up romance with depression try your lie in April. - -I'd you want something that isnt straight up romance but more like a secondary plot point try monogatari or even Steins gate. Both are in my top 5 anime of all time.";False;False;;;;1610279936;;False;{};gir8t5n;False;t3_ku9j4h;False;True;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/gir8t5n/;1610321177;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610279962;;False;{};gir8u20;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir8u20/;1610321193;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;phayzing;;;[];;;;text;t2_8qkl8g6s;False;False;[];;I swear if they'll fix the pacing, this show's gonna boom like crazy. But they probably never will. Maybe after the manga ends idk;False;False;;;;1610279967;;False;{};gir8uai;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir8uai/;1610321197;19;True;False;anime;t5_2qh22;;0;[]; -[];;;seviothelegenda;;;[];;;;text;t2_6x5fy;False;False;[];;we're finally getting somewhere;False;False;;;;1610279987;;False;{};gir8uzy;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir8uzy/;1610321211;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Adealow;;;[];;;;text;t2_qpdjd;False;False;[];;stay tune for the fire next episode;False;False;;;;1610280003;;False;{};gir8vlb;False;t3_ku4yjy;False;False;t1_giqugnh;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir8vlb/;1610321221;6;True;False;anime;t5_2qh22;;0;[]; -[];;;_Episode_12;;;[];;;;text;t2_5h1b5k47;False;False;[];;I definitely will!;False;False;;;;1610280027;;False;{};gir8wh6;False;t3_ku4yjy;False;True;t1_gir8vlb;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir8wh6/;1610321236;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WeNTuS;;;[];;;;text;t2_btiic;False;False;[];;Except why would everyone cry hearing Sabo's news if he was just a murderer? That makes no sense. Also they mentioned they lost a contact with Sabo's team;False;False;;;;1610280057;;False;{};gir8xl7;False;t3_ku4yjy;False;False;t1_giqicax;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir8xl7/;1610321257;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"> he hasn't actually directed any of them - -He's directed *some*. Unless the various English language sources are wrong, he was the sole director on at least Sayonara Zetsubou-sensei (season 1) and Hidamari Sketchx365, I believe. - -Also, this is more for the OP, but for sources to add on to Sakugablog, [Anipages](http://www.pelleas.net/aniTOP/index.php) and [Fullfrontal](https://fullfrontal.moe) (and its predecessor [Wave Motion Cannon](https://wavemotioncannon.com)), among others, are great resources.";False;False;;;;1610280146;;1610280439.0;{};gir90ve;False;t3_kubmpk;False;True;t1_gir2uoq;/r/anime/comments/kubmpk/how_do_people_keep_up_with_anime_studios_staff/gir90ve/;1610321315;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WeNTuS;;;[];;;;text;t2_btiic;False;False;[];;">And Drake is a traitor working for the Navy!? NANI!? - -He is a special forces team member, not a traitor. At least that the way he was called on a title card. Basically an undercover agent";False;False;;;;1610280207;;False;{};gir9346;False;t3_ku4yjy;False;False;t1_giqk81k;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir9346/;1610321357;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Whoknvws;;;[];;;;text;t2_10jqce;False;False;[];;he’ll regret it when he’s on his deathbed and only at episode 680;False;False;;;;1610280254;;False;{};gir94ra;False;t3_ku7s98;False;True;t1_giqh3h0;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/gir94ra/;1610321388;3;True;False;anime;t5_2qh22;;0;[]; -[];;;flybypost;;;[];;;;text;t2_e4p0i;False;False;[];;"> Start looking at who made your favorite shows. (On MyAnimeList, AnidB, etc.) - -For those who are curious, that stuff gets populated by people who go through the credits. And animators also post gifs or videos of their genga/key animation on twitter which helps (also when they sometimes use pseudonyms or were not credited for some reason). - -A medium like the internet makes this type of work much easier (see: wikipedia and all kinds of other wikis that were made by unpaid helpers and fans).";False;False;;;;1610280297;;False;{};gir96a4;False;t3_kubmpk;False;True;t1_gir25pf;/r/anime/comments/kubmpk/how_do_people_keep_up_with_anime_studios_staff/gir96a4/;1610321415;2;True;False;anime;t5_2qh22;;0;[]; -[];;;csdbcjkahsd;;;[];;;;text;t2_6o5ig4yp;False;False;[];;">sometimes - -all the time";False;False;;;;1610280325;;False;{};gir97am;False;t3_ku4yjy;False;False;t1_giqti75;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir97am/;1610321435;41;True;False;anime;t5_2qh22;;0;[]; -[];;;thejokersjoker;;;[];;;;text;t2_3qpqfnit;False;False;[];;It’s been awhile since someone significant has died, I think oda realized this. No deaths makes every battle lose meaning and this episode really strikes home the nothing is as it seems effect that makes shows entertaining through multiple venues drake,sabo etc.;False;False;;;;1610280714;;False;{};gir9l88;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir9l88/;1610321686;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EdwardVH;;;[];;;;text;t2_pti99yf;False;False;[];;Check out FLCL it’s only 6 episodes, you can either click off your brain and enjoy the ride it portrays or pay attention to detail to notice deeper meanings behind its coming of age story. Also the soundtrack is very enjoyable , one of my favorites !;False;False;;;;1610281068;;False;{};gir9y5j;False;t3_ku7s98;False;True;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/gir9y5j/;1610321920;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheFlyingButter;;;[];;;;text;t2_j5kl6;False;False;[];;That's the first time I've seen One Piece above 100 upvotes in a while, I suppose something big for the series must have happened;False;False;;;;1610281084;;False;{};gir9yr3;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gir9yr3/;1610321931;39;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"(Incidentally, I've been doing a [decent bit](https://en.wikipedia.org/wiki/Special:Contributions/Sandtalon) of Wikipedia editing--recently, it's mostly been on hentai-related articles, in large part because I'm reading a book on eromanga that was just released in English. My proudest moment of editing, however, is probably changing the article on Eiji Otsuka's theory of narrative consumption--which was [a mess](https://en.wikipedia.org/w/index.php?title=Narrative_consumption&oldid=805623270)--to an [actually decent short article](https://en.wikipedia.org/wiki/Narrative_consumption) that can be expanded on.)";False;False;;;;1610281224;;False;{};gira3tg;False;t3_kubmpk;False;True;t1_gir96a4;/r/anime/comments/kubmpk/how_do_people_keep_up_with_anime_studios_staff/gira3tg/;1610322021;3;True;False;anime;t5_2qh22;;0;[]; -[];;;_Nonso;;;[];;;;text;t2_1xygu1ye;False;False;[];;Because they got a hype episode? Why does it bother you.;False;False;;;;1610281388;;False;{};gira9xk;False;t3_ku4yjy;False;True;t1_gir8u20;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gira9xk/;1610322128;3;True;False;anime;t5_2qh22;;0;[]; -[];;;l3reezer;;;[];;;;text;t2_8uq96;False;False;[];;Gonna guess no unfortunately, seemed to be a special guest directing kind of deal similar to her stint with Dragon Ball Super. She works at Toei but I'm not sure why there isn't a lot of credits attached to her name. At the same time, other parts of Wano have been pretty quality as well and done by other people so depends on what you mean exactly by the same quality;False;False;;;;1610281647;;False;{};girajjs;False;t3_ku4yjy;False;False;t1_giqq3pw;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girajjs/;1610322303;4;True;False;anime;t5_2qh22;;0;[]; -[];;;astralradish;;MAL;[];;"http://myanimelist.net/animelist/AstralRadish&status=1&order=0";dark;text;t2_r1xvw;False;False;[];;Weird that Kuma wasn't mentioned when all the shichibukai were listed;False;False;;;;1610281695;;False;{};giralbz;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giralbz/;1610322339;9;True;False;anime;t5_2qh22;;0;[]; -[];;;cuniuk;;;[];;;;text;t2_obuxx;False;False;[];;"I thought he was going to say the cheesecake line again. - -The moment he started uho-uho-ing I know the movie's gonna be good.";False;False;;;;1610281891;;False;{};girasow;False;t3_ku64l6;False;False;t3_ku64l6;/r/anime/comments/ku64l6/how_mangaka_sorachi_hideaki_recorded_his_lines/girasow/;1610322484;6;True;False;anime;t5_2qh22;;0;[]; -[];;;JadeDragon02;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Anime only watcher;dark;text;t2_ommdm;False;False;[];;"YOYOOYO, where did this come from? Wtf. -Did they speed up their pacing? lmao - -But for real, did they keep up the pacing or something? I am not used to that information overflow. Cant tell if we are just used to OP in general or it was indeed just a little bit.";False;False;;;;1610281928;;False;{};girau2m;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girau2m/;1610322507;9;True;False;anime;t5_2qh22;;0;[]; -[];;;l3reezer;;;[];;;;text;t2_8uq96;False;False;[];;"I don't think you really can do anything other than start watching the new episodes and over time watching from the start as well. - -Maybe read synopsis of what happened so far but a lot of people (myself included) will say that's ruining it. The pre-time-skip and post-time-skip material is pretty different in tone/focus (and I think the consensus would agree the first half is better so you'd be ruining the experience of the best parts of One Piece just to placate your FOMO), and the plot is pretty much in endgame content now despite there being years ahead. - -Even reading or watching the fan-cut versions will take months.";False;False;;;;1610281931;;False;{};girau7p;False;t3_ku4yjy;False;True;t1_giqtfjx;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girau7p/;1610322510;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePhantomRaven;;;[];;;;text;t2_45tqag6z;False;False;[];;Wano was just preparatory till now. The flashback and Onigashima will be pure hype. Wano itself feels like an anime on its own lol;False;False;;;;1610281948;;False;{};girauvt;False;t3_ku4yjy;False;False;t1_giq5292;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girauvt/;1610322521;15;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePhantomRaven;;;[];;;;text;t2_45tqag6z;False;False;[];;Op seriously needs a reboot. That anime would surpass most of the top ranking anime presently;False;False;;;;1610282037;;False;{};giray86;False;t3_ku4yjy;False;False;t1_gir8uai;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giray86/;1610322578;18;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePhantomRaven;;;[];;;;text;t2_45tqag6z;False;False;[];;MF arc is also pretty hype. Its just this episode felt like a movie;False;False;;;;1610282112;;False;{};girb15s;False;t3_ku4yjy;False;True;t1_gir1xfi;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girb15s/;1610322632;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JadeDragon02;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Anime only watcher;dark;text;t2_ommdm;False;False;[];;"> usually drags, so it isn't really fast at all. - -That is an understatement lmao -cries in corner ... oh well, we are still here.";False;False;;;;1610282131;;False;{};girb1xg;False;t3_ku4yjy;False;False;t1_giqqs8d;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girb1xg/;1610322647;10;True;False;anime;t5_2qh22;;0;[]; -[];;;l3reezer;;;[];;;;text;t2_8uq96;False;False;[];;Either way, the point is still that it was a fantastic episode. Just ignore the people who overhype and give into recency bias if it annoys you;False;False;;;;1610282133;;False;{};girb1zi;False;t3_ku4yjy;False;True;t1_giqb2oj;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girb1zi/;1610322647;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Inferno792;;MAL;[];;https://myanimelist.net/profile/Inferno792;dark;text;t2_148vlb;False;False;[];;Best is subjective. What may be best for someone may be olay for others. He's right to try to ask for the best anime since one of those will get him hooked.;False;False;;;;1610282151;;False;{};girb2mx;False;t3_ku9j4h;False;False;t1_giqqco7;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/girb2mx/;1610322659;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MisakaMikotoxKuroko;;;[];;;;text;t2_hw7cbmp;False;False;[];;"As other people have mentioned, go slow, branch out and definitely dig into the hidden gems. - -Among my favorite hiddens are Tamayura, One Outs, Ghost Hunt, and Dantalian no Shoka";False;False;;;;1610282211;;False;{};girb4ut;False;t3_ku7s98;False;True;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/girb4ut/;1610322698;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePhantomRaven;;;[];;;;text;t2_45tqag6z;False;False;[];;Well pedro dies recently and Moria in teach's territory is pretty worrying. Also we still dont know if anybody died but yea the stakes r high and many characters r there with status unknown;False;False;;;;1610282214;;False;{};girb4z1;False;t3_ku4yjy;False;True;t1_gir9l88;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girb4z1/;1610322701;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePhantomRaven;;;[];;;;text;t2_45tqag6z;False;False;[];;Kuma is basically a slave so no need to be captured. He is as good as dead as far as we know;False;False;;;;1610282257;;False;{};girb6lo;False;t3_ku4yjy;False;False;t1_giralbz;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girb6lo/;1610322730;10;True;False;anime;t5_2qh22;;0;[]; -[];;;thejokersjoker;;;[];;;;text;t2_3qpqfnit;False;False;[];;This year has been so crazy I almost forgot about Pedro;False;False;;;;1610282269;;False;{};girb712;False;t3_ku4yjy;False;True;t1_girb4z1;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girb712/;1610322738;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ColdCold_DFLO;;;[];;;;text;t2_s70nt3r;False;False;[];;This episode adapted only one chapter - Ch. 956. That chapter just happens to essentially be a giant info dump jumping between various characters and locations, which lent well to the pacing in this episode. It gave them a chance to add just a tiny bit of cool anime-original content to each scene/location to help fill out the runtime.;False;False;;;;1610282353;;1610282704.0;{};girbac6;False;t3_ku4yjy;False;False;t1_girau2m;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girbac6/;1610322814;13;True;False;anime;t5_2qh22;;0;[]; -[];;;l3reezer;;;[];;;;text;t2_8uq96;False;False;[];;It's literally the best selling manga series of all time, lol. And you reading about .1% of a story without the context of the rest of 99.9% and not being able to make any sense of it is ironically a bigger waste of time.;False;False;;;;1610282573;;False;{};girbir4;False;t3_ku4yjy;False;False;t1_giqwk9p;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girbir4/;1610322968;7;True;False;anime;t5_2qh22;;0;[]; -[];;;BenIsTaken;;;[];;;;text;t2_7sdfdvau;False;False;[];;Attack on Titan is the first show I'd recommend, especially in the past few years. HOWEVER it could easily set a high expectation for you, like playing GTA V first or watching Godfather as a first film. It's fantastic but maybe watch something mediocre you are super interested in like a skating or volleyball anime before.;False;False;;;;1610282579;;False;{};girbiyt;False;t3_ku7s98;False;False;t1_giqgrnv;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/girbiyt/;1610322972;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok_Lengthiness2433;;;[];;;;text;t2_88ct8dlh;False;False;[];;"Also pretty new and am adding some of the suggestions in the comments to my list to watch. My suggestions - -Anohana - -Weathering with you - -Yorimoi - -My hero academia - -A silent voice - -7 deadly sins - -Mob psycho 100";False;False;;;;1610282708;;False;{};girbo08;False;t3_ku7s98;False;True;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/girbo08/;1610323067;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Akai-AC;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Akai-AC;light;text;t2_3af1hwm4;False;False;[];;"At first I thought it was the king, but they say that someone is dead and that there was a murder attempt. So maybe it's Chaka (iirc he was with the Alabasta group in reverie) who died - protecting the King. - -Unless the murder attempt was on Vivi, then it could be the king that died. But in that case they should have been concentrating on the murder (because it's the king) rather than on the attempt. - -I too believe that there's no way that they kill off Vivi or Sabo - in this manner.";False;False;;;;1610282839;;False;{};girbt28;False;t3_ku4yjy;False;False;t1_giqk0fg;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girbt28/;1610323159;7;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;"The awful Dressrossa arc made people forget how absolutely amazing the anime can be, but over the last arcs, it's been reminding people why the manga is still rightfully on the top of the world. - -And it's still only going to get better.";False;False;;;;1610282841;;False;{};girbt4h;False;t3_ku4yjy;False;False;t1_giqz77b;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girbt4h/;1610323160;18;True;False;anime;t5_2qh22;;0;[]; -[];;;AnActualPlatypus;;;[];;;;text;t2_15kte5;False;False;[];;Use Onepace;False;False;;;;1610282874;;False;{};girbugz;False;t3_ku4yjy;False;True;t1_giqtfjx;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girbugz/;1610323184;1;True;False;anime;t5_2qh22;;0;[]; -[];;;caelum007;;;[];;;;text;t2_o48xg;False;False;[];;gets reposted on weeabo pages in other websites and social media groups.;False;False;;;;1610282951;;False;{};girbxig;False;t3_kubmpk;False;True;t3_kubmpk;/r/anime/comments/kubmpk/how_do_people_keep_up_with_anime_studios_staff/girbxig/;1610323235;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;flybypost;;;[];;;;text;t2_e4p0i;False;False;[];;"> My proudest moment of editing, however, is probably changing the article on Eiji Otsuka's theory of narrative consumption--which was a mess--to an actually decent short article -> that can be expanded on.) - -Mess is being nice to it. It's like somebody put down some notes (that they knew what they were about) and then forgot about it. The cleaned up articles is rather good and that bit at the end about database consumption rings true, and how fan/otaku culture has evolved over time (and thanks to the internet) for better and worse. - -I really love the idea of participatory culture and our culture being more than media to be consumed. I tend to point at [Everything is a Remix](https://www.youtube.com/watch?v=nJPERZDfyWc) when it comes to and transformative work (and when somebody shallowly criticises fan works) and also like to use this Henry Jenkins quote: - -> “Fanfiction is a way of the culture repairing the damage done in a system where contemporary myths are owned by corporations instead of owned by folk.” - -The original has a bit of a different context and phrasing but apparently he likes this succinct version too (funny that it's a remix of his quote). - -That article gives me an interesting jumping off point to look into more stuff. Thanks for the link! - -This database consumption thing is also probably how quite a few of those pedants were born, people who care more about tiny (but irrelevant) details than about how and why it's part of the narrative. Also how some media criticism has devolved into this thing that's lacking fundamental media literacy, the ""cinema sins"" effect being the prime example: - -https://en.wikipedia.org/wiki/CinemaSins#Controversy_and_criticisms - -> The filmmakers assert that the channel largely fails as genuine criticism because of its excessive and trivial nitpicking, lack of understanding of the filmmaking process, and its often mean-spirited, reductive nature - -A lot of people have taken that type of ""criticism"" as being good, probably missing the point that it's also supposed to be somewhat humorous and not taken too literally. Like how the Futurama ""technically correct"" joke became a meme and then, as it lost its context, kinda evolved into a defence that nitpicky asshole use to congratulated each other.";False;False;;;;1610283012;;False;{};girbzwj;False;t3_kubmpk;False;True;t1_gira3tg;/r/anime/comments/kubmpk/how_do_people_keep_up_with_anime_studios_staff/girbzwj/;1610323277;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LegitimatePenguin;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/andrewb99;dark;text;t2_qeh4u;False;False;[];;It is a long slog and drags a LOT in places but if you can catch up it is 100% worth it trust me;False;False;;;;1610283142;;False;{};girc56v;False;t3_ku4yjy;False;True;t1_gir1xfi;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girc56v/;1610323367;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Amanktk;;;[];;;;text;t2_qu6iqo0;False;False;[];;Holy shit was this episode worth the wait. The animation was CLEANNNNNNNNNNN;False;False;;;;1610283442;;False;{};girch4b;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girch4b/;1610323600;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Adealow;;;[];;;;text;t2_qpdjd;False;False;[];;the VAs is too old.;False;False;;;;1610283516;;False;{};girck5h;False;t3_ku4yjy;False;False;t1_giray86;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girck5h/;1610323654;10;True;False;anime;t5_2qh22;;0;[]; -[];;;windsoftheblood;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/windsoftheblood;light;text;t2_2ve1yta;False;False;[];;Well I thought One Piece anime didn't really have any charm to make me watch it every week. At least this was what I thought until Wano arc. With Wano arc, Toei finally started to add something from themselves making the anime easily watchable every week even though they're adapting a manga chapter per episode.;False;False;;;;1610283729;;False;{};gircsy8;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gircsy8/;1610323818;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BetaBoy777;;;[];;;;text;t2_m7mqrnm;False;False;[];;Portage D Rouge was a stripper in her youth at a club Gol D Roger frequented. Mihawk is also Kaido’s estranged son and Buggy used to pick on him when they met as kids.;False;False;;;;1610284233;;False;{};girdemk;False;t3_ku4yjy;False;False;t1_gir38e7;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girdemk/;1610324213;73;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;There's alot your missing but Im obliged to recommend Attack on titan since it's my favorite show;False;False;;;;1610284306;;False;{};girdhpj;False;t3_ku7s98;False;True;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/girdhpj/;1610324269;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CyberpunkV2077;;;[];;;;text;t2_2r9n2te8;False;False;[];;What does this mean?;False;True;;comment score below threshold;;1610284385;;False;{};girdl0d;False;t3_ku4yjy;False;True;t1_girdemk;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girdl0d/;1610324329;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;JadeDragon02;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Anime only watcher;dark;text;t2_ommdm;False;False;[];;"I guess, I am overall happy about the progression. - -> It gave them a chance to add just a tiny bit of cool anime-original content to each scene/location to help fill out the runtime. - -I wish this detail work & feeling is applied to any other episode as well - meanwhile they are stalling the shit out of everything, animation recycle, flashbacks, intro, previous ep, preview, - -thanks for sharing :)";False;False;;;;1610284669;;False;{};girdx1r;False;t3_ku4yjy;False;False;t1_girbac6;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girdx1r/;1610324541;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePhantomRaven;;;[];;;;text;t2_45tqag6z;False;False;[];;Yea thats a good point. I hope they do one with suitable replacements tho. We can still capture the spirits since talent is endless and there r probably people out there who can replicate the old vocal feelings with a very good accuracy;False;False;;;;1610284743;;False;{};gire0ay;False;t3_ku4yjy;False;False;t1_girck5h;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gire0ay/;1610324603;10;True;False;anime;t5_2qh22;;0;[]; -[];;;dramonkiller19;;;[];;;;text;t2_7r953otq;False;False;[];;Fodder marines: Ok, understandable, have a nice day.;False;False;;;;1610284746;;False;{};gire0gl;False;t3_ku4yjy;False;False;t1_gir6leb;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gire0gl/;1610324605;18;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;An anime about software development would be nice. We've got Kobyasshi's Dragon Maid but that really doesn't go into that much detail.;False;False;;;;1610284755;;False;{};gire0u0;False;t3_kub9ui;False;True;t3_kub9ui;/r/anime/comments/kub9ui/in_the_same_vein_as_food_wars_foodcooking_and/gire0u0/;1610324613;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;Apparently the next episode will be super hype as well since that chapter is the one that got 20k upvotes over on the one piece sub;False;False;;;;1610284871;;False;{};gire5vu;False;t3_ku4yjy;False;False;t1_gir9yr3;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gire5vu/;1610324702;41;True;False;anime;t5_2qh22;;0;[]; -[];;;tmunchies;;;[];;;;text;t2_caozg2c;False;False;[];;I believe you’re mistaken here. When people are referring to this being “the best episode” they are more talking about the quality of animation, not the story itself. Although I definitely think the story was really good. They adapted it really well and made the filler parts flow with the source material very well, especially compared to other filler parts within the anime overall. Although it was dialog heavy, they still brought out smooth transitions and very solid out of the box thinking. Just because the strawhats aren’t in it, doesn’t mean the episode is automatically lesser. World building is literally what makes one piece so good. A lot of the parts that make one piece so great don’t even have the main characters directly involved.;False;False;;;;1610285209;;False;{};girekni;False;t3_ku4yjy;False;True;t1_giqb2oj;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girekni/;1610324977;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KeeKooZ;;;[];;;;text;t2_14a8of;False;False;[];;"This episode was fire 🔥🔥🔥 - -man one piece is something else i wish my friends were into it";False;False;;;;1610285457;;False;{};girevmy;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girevmy/;1610325204;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nettysocks;;;[];;;;text;t2_s8d167o;False;False;[];;"Golden Time -Rent A Girflriend - -Wolf Girl and Black prince - -All fairly short and easy to digest. - - - -#";False;False;;;;1610285466;;False;{};girew0w;False;t3_ku9j4h;False;True;t3_ku9j4h;/r/anime/comments/ku9j4h/i_need_a_romance_anime_this_will_be_my_first/girew0w/;1610325211;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kishenp11;;;[];;;;text;t2_8y8b4;False;False;[];;I'd get used to Oda off-screening ppl from this point on...;False;False;;;;1610285480;;False;{};girewoa;False;t3_ku4yjy;False;False;t1_giqk0fg;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girewoa/;1610325223;4;True;False;anime;t5_2qh22;;0;[]; -[];;;psychobserver;;;[];;;;text;t2_1ep65oks;False;False;[];;I just sent her an email of thank you, she gave me some hope for this series again lol. Send her some feedback on her twitter/email, it might help to push TOEI to give her some more important episodes;False;False;;;;1610285641;;False;{};girf3wi;False;t3_ku4yjy;False;False;t1_giq4r2c;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girf3wi/;1610325350;8;True;False;anime;t5_2qh22;;0;[]; -[];;;AmexNoCap800Score;;;[];;;;text;t2_4vvp6s39;False;False;[];;I dont know why you're being downvoted that's literally what it says he's a special undercover agent;False;False;;;;1610286126;;False;{};girfq0i;False;t3_ku4yjy;False;False;t1_gir9346;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girfq0i/;1610325752;6;True;False;anime;t5_2qh22;;0;[]; -[];;;yggdrashit;;;[];;;;text;t2_2305390q;False;False;[];;The scene and transitions when they show the warlords is pure pure gold i swear;False;False;;;;1610286405;;False;{};girg372;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girg372/;1610325993;1;True;False;anime;t5_2qh22;;0;[]; -[];;;archjones;;;[];;;;text;t2_9h4c6;False;False;[];;"Berserk - -Dragonball - -Gundam 00 - -Code Geass - -Space Dandy - -91 days";False;False;;;;1610286536;;False;{};girg9f9;False;t3_ku7s98;False;True;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/girg9f9/;1610326111;3;True;False;anime;t5_2qh22;;0;[]; -[];;;phayzing;;;[];;;;text;t2_8qkl8g6s;False;False;[];;Maybe they'll reboot like db kai with a new cast a few years later. A man can dream;False;False;;;;1610286576;;False;{};girgbbx;False;t3_ku4yjy;False;True;t1_giray86;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girgbbx/;1610326154;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jackens12;;;[];;;;text;t2_110999ur;False;False;[];;Oda mentioned sabo and vivi getting into trouble at jump Festa in 2019 I believe so I'm confident that its vivi;False;False;;;;1610286587;;False;{};girgbvp;False;t3_ku4yjy;False;False;t1_giqk0fg;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girgbvp/;1610326167;4;True;False;anime;t5_2qh22;;0;[]; -[];;;PokemonSpecial;;;[];;;;text;t2_id04b;False;False;[];;There are some earlier filler arcs that bloat the episode count like the rainbow mist and g8.;False;False;;;;1610286650;;False;{};girget7;False;t3_ku4yjy;False;False;t1_giqo2ri;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girget7/;1610326226;14;True;False;anime;t5_2qh22;;0;[]; -[];;;ShadowOvertaker;;MAL;[];;https://myanimelist.net/profile/ShadowOvertaker;dark;text;t2_mmc72;False;False;[];;"Yep, sort of an addendum to the recommendation to make an MAL, I'd say start anywhere! You'll eventually figure out what genres you like and what you don't like, and can guide your future decisions from there. I'd highly recommend a 3 episode rule, if something isn't enjoyable within 3 episodes, just don't bother watching it. There are some highly rated shows that you might drop if you employ this rule (off the top of my head, I dropped Steins;Gate and Made in Abyss, (both in the top 50 of MAL) after a couple episodes the first time I watched them, but after a while, a couple of years in Abyss' case, I finished watching them and now they rank in the best 10 or 15 shows I've ever watched). However, these are the exception, and you can usually get a judgement of the feel of a show from the beginning, at least in terms of base characters, art style, and animation quality.";False;False;;;;1610286786;;False;{};girgl96;False;t3_ku7s98;False;True;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/girgl96/;1610326344;1;True;False;anime;t5_2qh22;;0;[]; -[];;;unHolyKnightofBihar;;;[];;;;text;t2_9a23lkt;False;False;[];;This means Akainu will cause heat death of the One Piece universe;False;False;;;;1610286816;;False;{};girgmo9;False;t3_ku4yjy;False;False;t1_girdl0d;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girgmo9/;1610326377;15;True;False;anime;t5_2qh22;;0;[]; -[];;;imnonoob99;;;[];;;;text;t2_j8p5y;False;False;[];;I almost guarantee it's to hit 1000 for the same moment as chapter 1000;False;False;;;;1610286859;;False;{};girgorj;False;t3_ku4yjy;False;False;t1_girdx1r;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girgorj/;1610326417;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Yubisaki_Milk_Tea;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/;light;text;t2_m2aw7;False;False;[];;It's why Ace was always half naked in his appearances. Also it's obvious that's why Mihawk is so powerful. Why would a random dude from who knows where cut a ship in half with a tiny dagger. Also why he's mates with Shanks because that's Buggy's best/worst frenemy. And the old saying goes that an enemy of an enemy is a friend.;False;False;;;;1610287002;;False;{};girgvfo;False;t3_ku4yjy;False;False;t1_girdl0d;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girgvfo/;1610326551;11;True;False;anime;t5_2qh22;;0;[]; -[];;;raichudoggy;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/raichudoggy;light;text;t2_93aur;False;False;[];;"Considering the amount of time King Byo-gen gets, I suppose it's true that him actually being the final boss would be anti-climatic anyway... - -So I'm interested now in how it'll go with Villains we actually know and care about, but I still think King Byo-Gen shouldn't have been this anti-climatic, weakened state or not. - -[We'll have to see](#mugiwait)";False;False;;;;1610287150;;False;{};girh2fq;False;t3_ku4e5w;False;True;t1_giqqtqp;/r/anime/comments/ku4e5w/healin_goodprecure_episode_39_discussion/girh2fq/;1610326685;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jessy-ra;;;[];;;;text;t2_8o3u3uth;False;False;[];;Hmm ok thanks, that'll probably save me a lot of time (which is great because now i have a very long list);False;False;;;;1610287156;;False;{};girh2pb;True;t3_ku7s98;False;True;t1_girgl96;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/girh2pb/;1610326689;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Boujoulo;;;[];;;;text;t2_6iczsif5;False;False;[];;Wasn’t it the 16th? Don’t even think 18th volume is out yet. But yes check out the LN, they r really interesting.;False;False;;;;1610287244;;False;{};girh6y9;False;t3_ku47b4;False;True;t1_gipv2pz;/r/anime/comments/ku47b4/grimgar_ashes_and_illusions/girh6y9/;1610326761;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LukeWhostalkin;;;[];;;;text;t2_9ia3va1x;False;False;[];;Out of those, I recommend you to start with Death Note, because it's short and really addictive. Be aware that only the first half is really good, the second arc is OK, just not that brilliant, but you'll want to watch it anyway. Then you can either move to Demon Slayer or Hunter x Hunter. Both are great, but the story takes a while to develop so they will grow on you slowly. Once you have finished those, (if you liked them, if not you can drop them of course) check out Monster. It is the slowest of them all, it has no fantasy elements, it requires more patience, but it is a masterpiece. So it needs a more experienced anime watcher IMO. I can't comment on Violet Evergarden, I haven't seen it.;False;False;;;;1610287739;;False;{};girhvk6;False;t3_ku7s98;False;True;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/girhvk6/;1610327188;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mcmanybucks;;;[];;;;text;t2_7j2zw;False;True;[];;"This is why it's weird for the captains to say ""We've got 500,000 men on our ships!"" - -When 90% of them are no-name marines/crewmembers who only exist as fodder.";False;False;;;;1610287895;;False;{};giri39i;False;t3_ku4yjy;False;False;t1_gir97am;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giri39i/;1610327321;12;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;I hope they go all out for next week's episode too!;False;False;;;;1610287895;;False;{};giri39t;False;t3_ku4yjy;False;False;t1_giq0afo;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giri39t/;1610327321;47;True;False;anime;t5_2qh22;;0;[]; -[];;;XylanyX;;;[];;;;text;t2_5l2a5ct5;False;False;[];;Anyone know why the animation now gets so much better?;False;False;;;;1610287995;;False;{};giri8ax;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giri8ax/;1610327410;2;True;False;anime;t5_2qh22;;0;[]; -[];;;astralradish;;MAL;[];;"http://myanimelist.net/animelist/AstralRadish&status=1&order=0";dark;text;t2_r1xvw;False;False;[];;Doflamingo was named even though he's already in Impel down. I'm referring to when all the past and present members were named.;False;False;;;;1610288154;;False;{};girigc3;False;t3_ku4yjy;False;False;t1_girb6lo;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girigc3/;1610327550;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ANINETEEN;;;[];;;;text;t2_4g33jvxm;False;False;[];;Just perfection 👌🔥;False;False;;;;1610288255;;False;{};giriljg;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giriljg/;1610327636;5;True;False;anime;t5_2qh22;;0;[]; -[];;;CampOpening1108;;;[];;;;text;t2_841qxw8r;False;False;[];;Admiral green bull, Admiral Fujitora knows about the real strength of Mihawk, yet they still think Seven warlords are obsolete against the new Vegapunk weapons. They are probably bringing the new vegapunk weapons before trying to capture Mihawk;False;False;;;;1610288365;;False;{};girirb6;False;t3_ku4yjy;False;False;t1_giqplk1;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girirb6/;1610327734;9;True;False;anime;t5_2qh22;;0;[]; -[];;;XylanyX;;;[];;;;text;t2_5l2a5ct5;False;False;[];;I really might go back to the anime because of this single episode;False;False;;;;1610288376;;False;{};girirw7;False;t3_ku4yjy;False;True;t1_giqkm2z;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girirw7/;1610327744;2;True;False;anime;t5_2qh22;;0;[]; -[];;;XylanyX;;;[];;;;text;t2_5l2a5ct5;False;False;[];;I really might go back to the anime because of this single episode;False;False;;;;1610288382;;False;{};giris6o;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giris6o/;1610327749;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Darkfrozen537;;;[];;;;text;t2_16wnb2zs;False;False;[];;If i remember correctly it got trending Twitter and Reddit for 3 straight weeks lmao;False;False;;;;1610288441;;False;{};girivbj;False;t3_ku4yjy;False;False;t1_gire5vu;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girivbj/;1610327804;15;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610288691;;False;{};girj8f8;False;t3_ku4yjy;False;True;t1_giqalqt;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girj8f8/;1610328042;0;True;False;anime;t5_2qh22;;0;[]; -[];;;OzieteRed;;;[];;;;text;t2_17736b;False;False;[];;"Why are regular soilders fighting ex warlords? it's a one sided battle, Boa Hancock is just gonna charm the whole army. -Also I thought Sabo died.";False;False;;;;1610288755;;1610288960.0;{};girjbrw;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girjbrw/;1610328097;3;True;False;anime;t5_2qh22;;0;[]; -[];;;YuriAddict7;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/R1seKujikawa/;light;text;t2_3zn8celm;False;False;[];;Yea ill be very surprised if luffy's va can make it to the end. Japanese lives long but that doesnt mean she can always maintain all that yelling;False;False;;;;1610288775;;False;{};girjctu;False;t3_ku4yjy;False;True;t1_girck5h;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girjctu/;1610328115;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrDuckRocks;;;[];;;;text;t2_11zu5d;False;False;[];;This is a short arc with major revelation and they probably want to do justice.;False;False;;;;1610288926;;False;{};girjky0;False;t3_ku4yjy;False;True;t1_giri8ax;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girjky0/;1610328254;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jessy-ra;;;[];;;;text;t2_8o3u3uth;False;False;[];;Ok thanks! Yeah i've heard that monster takes some patience but that its amazing and worth it;False;False;;;;1610289135;;False;{};girjw15;True;t3_ku7s98;False;True;t1_girhvk6;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/girjw15/;1610328451;1;True;False;anime;t5_2qh22;;0;[]; -[];;;l_one;;;[];;;;text;t2_3c8ce;False;False;[];;"Wait... I remember One Piece from way back in Anime Club in college... it's still going? There's almost a thousand episodes now? WTF? - -I... feel so old.";False;False;;;;1610289343;;False;{};girk77m;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girk77m/;1610328651;5;True;False;anime;t5_2qh22;;0;[]; -[];;;11Night;;;[];;;;text;t2_my6he90;False;False;[];;I need to start watching one piece on regular basis :(;False;False;;;;1610289369;;False;{};girk8kp;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girk8kp/;1610328677;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Aerohed;;;[];;;;text;t2_xjmyo;False;False;[];;"World Gov.: We've got some budget cuts to make. - -Mihawk: I'll help.";False;False;;;;1610289448;;False;{};girkcso;False;t3_ku4yjy;False;False;t1_gir6leb;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girkcso/;1610328762;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Speedwagon96;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Speedwagon96/;light;text;t2_12lmdk;False;False;[];;Nah no thanks, don't want a Marineford copy paste. Rather this time it's something else and way bigger than saving just one person.;False;False;;;;1610289491;;False;{};girkf7f;False;t3_ku4yjy;False;False;t1_giqq8wy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girkf7f/;1610328802;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Maurichio1;;skip7;[];;;dark;text;t2_7ory0w2o;False;False;[];;"My suggestions are (with some clues as to their contents): - -Death Note (psychological thriller, mind games, cat and mouse chase, police investigations) - -Shingeki No Kyojin (action, violent & gory , mystery, story driven) - -One Punch Man (action, comedy, over the top, superhero, light hearted) - -Re:Zero (dark fantasy, emotional, psychological thriller, drama, violent & gory, story driven, tons of mystery) - -Konosuba (fantasy, comedy, harem, light hearted, over the top) - -Fullmetal Alchemist Brotherhood (fantasy, story driven, mystery, action, drama) - -Stein's Gate (,psychological thriller, time-travel , drama, thought provoking, ""realistic"") - -Anohana (drama, psychological, emotional, realistic) - -Your Lie in April (drama, psychological, emotional, realistic) - -**Jojo's Bizzare Adventure** ( action, adventure, Bizzare, WAY over the top, INFINITE meme potential, story driven, you either love it or you hate it) - -Dr Stone (realistic, adventure, science, time-jump, mystery, original) - -**ALSO:** *Check out Castlevania (it's on Netflix). It's western animation but thanks to some garbage purity spiral in this community its not counted as ""anime"". Therefore if you want to discuss the likes of Castlevania, you can only make posts in the ""cartoons"" subreddit, among the actual cartoon shows like Pepa the Pig, Dora the explorer and children shows.* - -Personally i would suggest staying away from most of the shounen anime (depending on your age of course) like Dragon Ball, Demon Slayer, Naruto, Bleach etc. as these types of shows tend to focus a lot on fighting but end up being VERY formulaic, predictable and ran out of juice quite fast. (ass pull power-ups, weak plot lines, tons of filler episodes, power of friendship BS etc.) - -I would only suggest Demon Slayer for the great visuals.";False;False;;;;1610289622;;1610290765.0;{};girkmj1;False;t3_ku7s98;False;False;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/girkmj1/;1610328929;3;True;False;anime;t5_2qh22;;0;[]; -[];;;stiveooo;;;[];;;;text;t2_9amaa;False;False;[];;were they hinting that Vivi is dead?;False;False;;;;1610289656;;False;{};girkoc8;False;t3_ku4yjy;False;True;t1_giqfvwb;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girkoc8/;1610328958;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lansboen;;;[];;;;text;t2_x276p;False;False;[];;They can't capture buggy, he will become a yonko. Mark my words.;False;False;;;;1610289936;;False;{};girl3qn;False;t3_ku4yjy;False;False;t1_giqgwwx;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girl3qn/;1610329227;5;True;False;anime;t5_2qh22;;0;[]; -[];;;chops51991;;;[];;;;text;t2_cnhda;False;False;[];;They said this in the episode? I must have missed that;False;False;;;;1610289972;;False;{};girl5qr;False;t3_ku4yjy;False;True;t1_girdemk;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girl5qr/;1610329259;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610289988;;1610290514.0;{};girl6ms;False;t3_kubmpk;False;True;t3_kubmpk;/r/anime/comments/kubmpk/how_do_people_keep_up_with_anime_studios_staff/girl6ms/;1610329274;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Maurichio1;;skip7;[];;;dark;text;t2_7ory0w2o;False;False;[];;"Seven Deadly Sins is terrible. The main characters looks like a 9 year old, and that bimbo Elizabeth looks 19, the dynamic between them feels really weird and awkward. The characters look like they couldn't care less if the entire world was destroyed overnight, fan service is horrible, and the most important one: Hawks is still alive and kicking by episode 8. - -That gobbler should have been the first ""character"" in the series who gets off'ed.";False;False;;;;1610290448;;False;{};girlr04;False;t3_ku7s98;False;True;t1_giqkfjr;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/girlr04/;1610329647;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TatteredTongues;;;[];;;;text;t2_xbrbp;False;False;[];;"Because something like ""Revolutionary Army's nº2 has killed (or tried to) the King of Alabasta"" would be a massive blow to the Revolutionary Army and what they're attempting to do, the ideas they stand for, etc. - - -Perception could shift around the world and undermine all the work they've done over the years. - - -And/or also because he might've been caught in the process.";False;False;;;;1610290521;;False;{};girlup9;False;t3_ku4yjy;False;False;t1_gir8xl7;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girlup9/;1610329710;12;True;False;anime;t5_2qh22;;0;[]; -[];;;strobelobe;;;[];;;;text;t2_oydak;False;False;[];;When he pulled his sword and it glimmered for a moment I literally laughed out loud. RIP Marines.;False;False;;;;1610290831;;False;{};girmbna;False;t3_ku4yjy;False;False;t1_giqplk1;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girmbna/;1610330021;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sleepy_Sleeper;;;[];;;;text;t2_nsbck;False;False;[];;Yasopp's father is also Kaido.;False;False;;;;1610290983;;False;{};girmk8t;False;t3_ku4yjy;False;False;t1_girdemk;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girmk8t/;1610330180;17;True;False;anime;t5_2qh22;;0;[]; -[];;;XylanyX;;;[];;;;text;t2_5l2a5ct5;False;False;[];;yeah, i read the manga too... i hope the flashback will get a good animation like this one.;False;False;;;;1610291041;;False;{};girmngj;False;t3_ku4yjy;False;True;t1_girjky0;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girmngj/;1610330241;2;True;False;anime;t5_2qh22;;0;[]; -[];;;joshipoo59419;;;[];;;;text;t2_imabniz;False;False;[];;I think that's called cliffhanger 101.;False;False;;;;1610291117;;False;{};girmrso;False;t3_ku4yjy;False;False;t1_giqriw5;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girmrso/;1610330318;5;True;False;anime;t5_2qh22;;0;[]; -[];;;coolgaara;;;[];;;;text;t2_7nslb;False;False;[];;Holy hell. Never seen One Piece episode discussion with these many upvotes before. Guess I'll watch this one;False;False;;;;1610291231;;False;{};girmy8i;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girmy8i/;1610330439;3;True;False;anime;t5_2qh22;;0;[]; -[];;;electronbox;;;[];;;;text;t2_gw6wj;False;False;[];;Well hes a traitor for kaidos gang;False;False;;;;1610291365;;False;{};girn5x7;False;t3_ku4yjy;False;False;t1_gir9346;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girn5x7/;1610330576;7;True;False;anime;t5_2qh22;;0;[]; -[];;;jessy-ra;;;[];;;;text;t2_8o3u3uth;False;False;[];;Thanks! And i honestly didnt even know what shounen anime was until some of the comments mentioned it, but i'll be sure to branch out further;False;False;;;;1610291698;;False;{};girnpes;True;t3_ku7s98;False;True;t1_girkmj1;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/girnpes/;1610330935;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Archilian;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_1jw9y2dz;False;False;[];;It even used the stampede track for the Morgan’s scene was way too hype for what it was.;False;False;;;;1610291699;;False;{};girnpfx;False;t3_ku4yjy;False;False;t1_giq0afo;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girnpfx/;1610330936;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeta42;;;[];;;;text;t2_bjdm4;False;False;[];;Cliffhangers aren't usually abandoned for years.;False;True;;comment score below threshold;;1610291919;;False;{};giro2zo;False;t3_ku4yjy;False;True;t1_girmrso;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giro2zo/;1610331175;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;ctheturk;;MAL;[];;http://myanimelist.net/animelist/ctheturk;dark;text;t2_alfk2;False;False;[];;"Yeah, even though it did recap quite a lot, the recaps themselves were presented in such a way that it wasn't a slog to watch at all. And to be fair there are quite a lot of kids, etc. in Japan who started watching the anime/reading the manga partway through, as crazy as that sounds to me. So without the recaps they'd have no clue what was going on. If Toei could spice up the ""filler"" in this way all the time, I'd have no problem watching it.";False;False;;;;1610292080;;False;{};giroci2;False;t3_ku4yjy;False;False;t1_giqk9zi;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giroci2/;1610331340;11;True;False;anime;t5_2qh22;;0;[]; -[];;;condoriano_ismyname;;;[];;;;text;t2_ispj5;False;False;[];;Watch one episode a day or something. Don't watch fillers.;False;False;;;;1610292124;;False;{};girof5f;False;t3_ku4yjy;False;True;t1_giqtfjx;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girof5f/;1610331387;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yoeblue;;;[];;;;text;t2_rbo3n;False;False;[];;"Holy shit, this episode was straight up movie quality - -Even though I've read the manga, seeing it animated this well got me so hyped";False;False;;;;1610292157;;False;{};giroh5f;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giroh5f/;1610331422;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tikihc;;;[];;;;text;t2_12st4k;False;False;[];;g8 was one of the best filler arcs of any anime;False;False;;;;1610292319;;False;{};giroqyc;False;t3_ku4yjy;False;False;t1_girget7;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giroqyc/;1610331592;11;True;False;anime;t5_2qh22;;0;[]; -[];;;PhoenixFoxington;;;[];;;;text;t2_33zmnrsa;False;False;[];;"This episode is the first episode Ive enjoyed for God knows how long. -Buggy looks so amazing in that robe, but hes still a coward which makes me love him even more 😂 -Some of the shots in this episode were straight up insane. From the introduction of the warlords to the warlords preparing to counter attack. Hopefully they keep this version of One Piece up!";False;False;;;;1610293247;;False;{};girqcl7;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girqcl7/;1610332650;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KamazoQueen;;;[];;;;text;t2_45yt1s34;False;False;[];;I don't follow the anime, but when an episode gets this many upvotes I have to check it out. This was a great adaptation of an amazing chapter, I can see why everyone is excited.;False;False;;;;1610293286;;False;{};girqf69;False;t3_ku4yjy;False;False;t1_gipxmkn;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girqf69/;1610332704;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Custom_sKing_SKARNER;;;[];;;;text;t2_z6ngv;False;False;[];;"I always found odd the Kizaru kick scene, now it makes sense, they are allies https://youtu.be/vM3wWpaTBSs?t=174 - -At least, Drake knew that.";False;False;;;;1610293535;;False;{};girqv0u;False;t3_ku4yjy;False;True;t1_giqk81k;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girqv0u/;1610332994;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610293628;;False;{};girr0uw;False;t3_ku4yjy;False;True;t1_giq0afo;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girr0uw/;1610333100;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610293653;;False;{};girr2gl;False;t3_ku4yjy;False;True;t1_giq0afo;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girr2gl/;1610333129;3;True;False;anime;t5_2qh22;;0;[]; -[];;;thesenutzonurchin;;;[];;;;text;t2_3o6qa6hk;False;False;[];;Damn this episode was good;False;False;;;;1610294060;;False;{};girrsf1;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girrsf1/;1610333627;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OneEyedTurkey;;;[];;;;text;t2_p65tx;False;False;[];;And the interlude after that too!;False;False;;;;1610294291;;False;{};girs7kv;False;t3_ku4yjy;False;False;t1_giri39t;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girs7kv/;1610333900;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Fransferdy;;;[];;;;text;t2_161rth;False;False;[];;Moria's friend is also very dead;False;False;;;;1610295062;;False;{};girtltk;False;t3_ku4yjy;False;False;t1_girb4z1;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girtltk/;1610334806;4;True;False;anime;t5_2qh22;;0;[]; -[];;;farson135;;;[];;;;text;t2_bp6v36d;False;False;[];;"I'm including the side stories; 15+ and 15++.";False;False;;;;1610295441;;False;{};girub9w;False;t3_ku47b4;False;True;t1_girh6y9;/r/anime/comments/ku47b4/grimgar_ashes_and_illusions/girub9w/;1610335250;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jezamiah;;;[];;;;text;t2_8ovh9;False;False;[];;Toei are actually trying now? I might come back;False;False;;;;1610295502;;False;{};girufdw;False;t3_ku4yjy;False;True;t1_giq16fv;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girufdw/;1610335324;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Somer-_-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Somer-_-;light;text;t2_95bkc;False;False;[];;She*;False;False;;;;1610295806;;False;{};giruzzi;False;t3_ku4yjy;False;False;t1_girr2gl;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giruzzi/;1610335687;20;True;False;anime;t5_2qh22;;0;[]; -[];;;lamustagi;;;[];;;;text;t2_h0xz6;False;False;[];;How did you buy Grimgar as part of Sentai's sale when it's a Funimation license?;False;False;;;;1610296069;;False;{};girvhkh;False;t3_ku47b4;False;True;t1_giptj48;/r/anime/comments/ku47b4/grimgar_ashes_and_illusions/girvhkh/;1610335991;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"I just need Sabo and Vivi to be fine. I'm not worried about any of this at all, not one bit - -[](#maxshock) - -[](#scaredmio)";False;False;;;;1610296127;;False;{};girvldi;False;t3_ku4yjy;False;True;t1_giqfvwb;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girvldi/;1610336056;1;True;False;anime;t5_2qh22;;0;[]; -[];;;keanureeves345;;;[];;;;text;t2_603pienr;False;False;[];;Skip violet its a shit show;False;False;;;;1610296299;;False;{};girvx06;False;t3_ku7s98;False;True;t3_ku7s98;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/girvx06/;1610336253;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GowtherETC;;;[];;;;text;t2_47ql3fom;False;False;[];;Yeah I remember that. That's prolly the best chapter of One Piece I've read;False;False;;;;1610296307;;False;{};girvxhy;False;t3_ku4yjy;False;False;t1_giqpdb8;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girvxhy/;1610336263;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"The recaps were a thing of beauty. Like, the way they went through the history of the Seven Warlords of the Sea was so satisfying to watch. - -[](#awe) - -I've been familiar with the world of One Piece ever since I was a kid but every now and then, it's good to be reminded of so many of these previous events, especially after spending one and a half years almost uninterrupted in Wano Kuni.";False;False;;;;1610296395;;False;{};girw3hz;False;t3_ku4yjy;False;True;t1_giroci2;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girw3hz/;1610336366;1;True;False;anime;t5_2qh22;;0;[]; -[];;;skragglenuts;;;[];;;;text;t2_8lxr390h;False;False;[];;Ty;False;False;;;;1610296439;;False;{};girw6ft;True;t3_ku7p92;False;False;t1_giqsjri;/r/anime/comments/ku7p92/recommend_me_a_recent_anime_please/girw6ft/;1610336416;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;It's an original anime and WIT has some other projects. If they did not immediately announce more it maybe was not that successful. But as it is from 2019, not having an announcement yet after what was 2020 is not too worrying yet;False;False;;;;1610296609;;False;{};girwhx6;False;t3_kuag8c;False;True;t3_kuag8c;/r/anime/comments/kuag8c/another_season_or_movie_of_kabeneri_of_the_iron/girwhx6/;1610336624;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mynewaccount5;;;[];;;;text;t2_d1vwt;False;False;[];;Can't wait to catch up. I'm only on episode 2.;False;False;;;;1610296711;;False;{};girwox6;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girwox6/;1610336745;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"According to hyped manga readers on r/OnePiece, there's some crazy shit that's going to happen in the coming episodes. - -[](#dekuhype) - -Crazy how I'm still as excited about this series as I was twenty years ago when I saw it for the first time as a kid. This kind of longevity and relevancy is just unheard of.";False;False;;;;1610296748;;False;{};girwrgd;False;t3_ku4yjy;False;False;t1_gire5vu;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girwrgd/;1610336788;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;Black Clover last week and OP this week. The year is starting strong for the older jump adaptations.;False;False;;;;1610297091;;False;{};girxfbc;False;t3_ku4yjy;False;False;t1_giq3om8;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girxfbc/;1610337198;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;I first watched it when I was 7 or so and I can't believe it's still a regular part of my week lmao;False;False;;;;1610297168;;False;{};girxkrt;False;t3_ku4yjy;False;False;t1_girk77m;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girxkrt/;1610337290;5;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;Only in One Piece are the interludes even more hype than the main event.;False;False;;;;1610297309;;False;{};girxueo;False;t3_ku4yjy;False;False;t1_girs7kv;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girxueo/;1610337456;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Iliansic;;;[];;;;text;t2_oaano;False;False;[];;Little did we know, that Gorilla-sensei wasn't censored specifically in this clip, he just constantly wears mosaic to hide his gorillaness.;False;False;;;;1610297500;;False;{};giry7w9;False;t3_ku64l6;False;False;t3_ku64l6;/r/anime/comments/ku64l6/how_mangaka_sorachi_hideaki_recorded_his_lines/giry7w9/;1610337698;5;True;False;anime;t5_2qh22;;0;[]; -[];;;breadman_chris;;;[];;;;text;t2_8qbvfz5b;False;False;[];;"So excited for the next episode. It was good to see Coby again. But I actually wanted to know what happened to Sabo. - -To be continued I guess :D";False;False;;;;1610297575;;False;{};giryd46;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giryd46/;1610337788;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gudisey1;;;[];;;;text;t2_1hlu3c4g;False;False;[];;It's a great chapter but don't overhype yourself. As with anything you will be disappointed if you hype it up and it doesn't live up to your expectations. But the stuff that comes after is bae.;False;False;;;;1610297660;;False;{};giryj25;False;t3_ku4yjy;False;False;t1_girwrgd;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giryj25/;1610337889;8;True;False;anime;t5_2qh22;;0;[]; -[];;;SpaceMarine_CR;;;[];;;;text;t2_1la1dh3q;False;False;[];;BIG NEWS 🐔;False;False;;;;1610297686;;False;{};girykue;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girykue/;1610337919;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SpaceMarine_CR;;;[];;;;text;t2_1la1dh3q;False;False;[];;They even tried to arrest Buggy, they are in a world of pain now;False;False;;;;1610297739;;False;{};giryojl;False;t3_ku4yjy;False;False;t1_giqti75;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giryojl/;1610337983;6;True;False;anime;t5_2qh22;;0;[]; -[];;;SpaceMarine_CR;;;[];;;;text;t2_1la1dh3q;False;False;[];;BEEEECH;False;False;;;;1610297776;;False;{};giryr6y;False;t3_ku4yjy;False;False;t1_giqmgpd;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giryr6y/;1610338028;5;True;False;anime;t5_2qh22;;0;[]; -[];;;SpaceMarine_CR;;;[];;;;text;t2_1la1dh3q;False;False;[];;Buggy is going to wipe the floor with the marines what are you talking about?;False;False;;;;1610297951;;False;{};girz3s7;False;t3_ku4yjy;False;True;t1_giqgwwx;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girz3s7/;1610338236;1;True;False;anime;t5_2qh22;;0;[]; -[];;;joshipoo59419;;;[];;;;text;t2_imabniz;False;False;[];;Cliffhangers can hang as long as the author wants it to. As long as they reveal the next event eventually I am fine with it.;False;False;;;;1610297985;;False;{};girz6ab;False;t3_ku4yjy;False;True;t1_giro2zo;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girz6ab/;1610338281;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRiyria;;MAL a-amq;[];;https://myanimelist.net/profile/TheRiyria;dark;text;t2_zcnep;False;False;[];;"[You think a face this cute could get angry?](https://imgur.com/4tX2HXQ) When [happy Latte is best?](https://imgur.com/8xO9rVi) - -[That isn't very nice.](https://imgur.com/GtXrOh9) - -> how crazy is it to see the big bad just beaten so early? - -It's so weird thinking that this is early because it's only episode 39. But timewise, we're in early January and should be at climax time. Which means the Big Bad could be dying right around now and worse things are yet to come.";False;False;;;;1610298109;;False;{};girzf0o;False;t3_ku4e5w;False;True;t1_giqqezu;/r/anime/comments/ku4e5w/healin_goodprecure_episode_39_discussion/girzf0o/;1610338436;3;True;False;anime;t5_2qh22;;0;[]; -[];;;digbicks845;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;god ussop;dark;text;t2_12n6ju;False;False;[];;Nah dude trust me. It will surpass hype;False;False;;;;1610298140;;False;{};girzh65;False;t3_ku4yjy;False;True;t1_giryj25;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girzh65/;1610338475;1;True;False;anime;t5_2qh22;;0;[]; -[];;;digbicks845;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;god ussop;dark;text;t2_12n6ju;False;False;[];;You won’t regret it :);False;False;;;;1610298315;;False;{};girztne;False;t3_ku4yjy;False;True;t1_giris6o;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girztne/;1610338688;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"One Piece has never let me down, so I'm not worried - -[](#scrumptiouslymoe)";False;False;;;;1610298395;;False;{};girzzc6;False;t3_ku4yjy;False;False;t1_giryj25;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/girzzc6/;1610338787;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Itakie;;;[];;;;text;t2_fmch9;False;False;[];;"True, totally forgot about Don Krieg lol. Would be cool to see Gin again. Full powered up with Haki and new weapons :D - -Maybe he is chilling with Blackbeard and his crew.";False;False;;;;1610298704;;False;{};gis0lvx;False;t3_ku4yjy;False;True;t1_giqrr42;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gis0lvx/;1610339180;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PoetryofMead;;;[];;;;text;t2_9bwijcp;False;False;[];;OnePace is apparently pretty good. No matter what it's going to take time. I binged it during this summer, and I regret talking shit about it and not watching sooner.;False;False;;;;1610298753;;False;{};gis0pm4;False;t3_ku4yjy;False;True;t1_giqtfjx;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gis0pm4/;1610339243;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OutrageousBreath5017;;;[];;;;text;t2_4c8wot21;False;False;[];;"Hi guys, first time here, my friends don’t really know how to talk about anime/don’t talk about anime much so here I am. - -Its usually like: - -Me - “Omg did you see what happened with person xyz? It was crazy when we saw blablabla and this happen to that person and did you catch the callback from episode xyz? The foreshadowing was wilddd” - -Them - “Yeah seriously” - -Me - “😕” - -Safe to say if you guys give me any more than that, which shouldn’t be hard, I’ll be happy to be here 😂";False;False;;;;1610299633;;False;{};gis2jxk;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gis2jxk/;1610340371;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610299806;;False;{};gis2wwm;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gis2wwm/;1610340588;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SoccerForEveryone;;;[];;;;text;t2_sylzo;False;False;[];;"I think the one scene this whole episode that spooked me the most was the girl running to see the sea gulls thinking it’s a happy scene for her, but the vase breaks with the parents crying in the background. I felt that, I teared up because we don’t know who or what happened yet. I know the location of that scene, so wow I just have the hair up through that scene and the rest of the episode. - -That Dressrosa transition!!! With Donflamingo’s glasses seeing the Strawhat and Hearts alliance wreck his scene. Just a incredible episode...! - -I can’t believe it has been more than a decade of me watching this series!";False;False;;;;1610299887;;False;{};gis330g;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gis330g/;1610340693;3;True;False;anime;t5_2qh22;;0;[]; -[];;;noriakiyoshi;;;[];;;;text;t2_6gsilcas;False;False;[];;what about “new game”? :o;False;False;;;;1610299965;;False;{};gis392d;False;t3_kub9ui;False;True;t1_gire0u0;/r/anime/comments/kub9ui/in_the_same_vein_as_food_wars_foodcooking_and/gis392d/;1610340800;2;True;False;anime;t5_2qh22;;0;[]; -[];;;muazmueh;;;[];;;;text;t2_2tpmdr56;False;False;[];;You can do it!! it only took me 3 months with about 10-12 episodes per day. best decition ive ever made;False;False;;;;1610300190;;False;{};gis3q6w;False;t3_ku4yjy;False;False;t1_girwox6;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gis3q6w/;1610341093;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MasterRazz;;;[];;;;text;t2_4lqipx1i;False;False;[];;Drake is a triple agent. He was introduced as a former-Rear Admiral that became a pirate, but he's actually a Marine that became a Pirate that was still a Marine the whole time.;False;False;;;;1610300412;;False;{};gis46gw;False;t3_ku4yjy;False;False;t1_giqk81k;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gis46gw/;1610341373;4;True;False;anime;t5_2qh22;;0;[]; -[];;;turroflux;;;[];;;;text;t2_c10nv;False;False;[];;He is a double agent.;False;False;;;;1610300520;;False;{};gis4e8q;False;t3_ku4yjy;False;True;t1_gir9346;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gis4e8q/;1610341522;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jessy-ra;;;[];;;;text;t2_8o3u3uth;False;False;[];;Really why? I've only heard good things;False;False;;;;1610301141;;False;{};gis5n96;True;t3_ku7s98;False;True;t1_girvx06;/r/anime/comments/ku7s98/im_fresh_to_the_anime_scene_but_im_super/gis5n96/;1610342310;1;True;False;anime;t5_2qh22;;0;[]; -[];;;giangerd;;;[];;;;text;t2_1byk5f1m;False;False;[];;"Yooo what? Dressrosa is one of the absolute best arcs in the series. - -The adaption being at its worst at that point, has nothing to do with Dressrosa as an arc";False;False;;;;1610301357;;False;{};gis630x;False;t3_ku4yjy;False;False;t1_girbt4h;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gis630x/;1610342572;9;True;False;anime;t5_2qh22;;0;[]; -[];;;llodoroo;;;[];;;;text;t2_uhqhw;False;False;[];;This is exactly what I was thinking, the whole episode felt Lupinesque;False;False;;;;1610301383;;False;{};gis64w0;False;t3_ku4yjy;False;False;t1_giq6u0m;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gis64w0/;1610342604;5;True;False;anime;t5_2qh22;;0;[]; -[];;;giangerd;;;[];;;;text;t2_1byk5f1m;False;False;[];;Definitely deserved! This episode was beautiful;False;False;;;;1610301610;;False;{};gis6lbs;False;t3_ku4yjy;False;True;t1_gir29bq;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gis6lbs/;1610342884;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeta42;;;[];;;;text;t2_bjdm4;False;False;[];;There's nothing Odadrones won't forgive their Goda is there;False;False;;;;1610301732;;False;{};gis6u4q;False;t3_ku4yjy;False;True;t1_girz6ab;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gis6u4q/;1610343030;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;giangerd;;;[];;;;text;t2_1byk5f1m;False;False;[];;"It is impossible to stay like this all the time, this was straight up movie quality. But I expect to keep it up! - -Also from now on the story is even more amazing and hype";False;False;;;;1610301753;;False;{};gis6vnp;False;t3_ku4yjy;False;True;t1_giqq3pw;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gis6vnp/;1610343054;1;True;False;anime;t5_2qh22;;0;[]; -[];;;giangerd;;;[];;;;text;t2_1byk5f1m;False;False;[];;Lucky you! Have fun!;False;False;;;;1610301821;;False;{};gis70nu;False;t3_ku4yjy;False;True;t1_girwox6;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gis70nu/;1610343138;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MasterRazz;;;[];;;;text;t2_4lqipx1i;False;False;[];;Watch One Pace. There's also Episode of East Blue which condenses ~61 episodes into an hour and a half or so.;False;False;;;;1610301823;;False;{};gis70sa;False;t3_ku4yjy;False;True;t1_giqya17;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gis70sa/;1610343140;1;True;False;anime;t5_2qh22;;0;[]; -[];;;giangerd;;;[];;;;text;t2_1byk5f1m;False;False;[];;Still going and still AMAZING;False;False;;;;1610301836;;False;{};gis71o3;False;t3_ku4yjy;False;False;t1_girk77m;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gis71o3/;1610343160;4;True;False;anime;t5_2qh22;;0;[]; -[];;;giangerd;;;[];;;;text;t2_1byk5f1m;False;False;[];;If by back up again you mean if it's fucking awesome then the answer is yes!;False;False;;;;1610301905;;False;{};gis76qj;False;t3_ku4yjy;False;True;t1_giqi5r9;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gis76qj/;1610343249;1;True;False;anime;t5_2qh22;;0;[]; -[];;;giangerd;;;[];;;;text;t2_1byk5f1m;False;False;[];;"Start watching and then you will beg for more, it happens 100% of the time! - -Have fun, no need to rush, it is not a commitment, it is entertainment";False;False;;;;1610302067;;False;{};gis7inn;False;t3_ku4yjy;False;True;t1_giqtfjx;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gis7inn/;1610343451;2;True;False;anime;t5_2qh22;;0;[]; -[];;;giangerd;;;[];;;;text;t2_1byk5f1m;False;False;[];;Yes it does! I highly suggest it to any anime fan;False;False;;;;1610302105;;False;{};gis7lgw;False;t3_ku4yjy;False;True;t1_giqya17;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gis7lgw/;1610343497;2;True;False;anime;t5_2qh22;;0;[]; -[];;;giangerd;;;[];;;;text;t2_1byk5f1m;False;False;[];;Have fun!!;False;False;;;;1610302253;;False;{};gis7w85;False;t3_ku4yjy;False;True;t1_gir1xfi;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gis7w85/;1610343678;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xxamnat;;;[];;;;text;t2_h9vmp;False;False;[];;"Manga reader here, haven’t watched the anime since Dressrosa but decided to check it out because this was so heavily upvoted. - -Wow... this might actually be the best One Piece episode so far. Hope it continues like this!";False;False;;;;1610302699;;False;{};gis8sxb;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gis8sxb/;1610344209;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Toli2810;;;[];;;;text;t2_w2j0xty;False;False;[];;same, lets hope they will do the next chapter also justice;False;False;;;;1610302894;;False;{};gis9750;False;t3_ku4yjy;False;True;t1_girqf69;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gis9750/;1610344437;1;True;False;anime;t5_2qh22;;0;[]; -[];;;giangerd;;;[];;;;text;t2_1byk5f1m;False;False;[];;"Apparently we all like the way Oda writes his story and especially how masterrully he handles mysteries for decades. Ain't gonna defend anything there is no need to. - -I won't even comment about the ""absolute lack of substance"" cause it's a very extreme comment on your part. Make me start thinking that you don't even read the story";False;False;;;;1610302933;;False;{};gis9a18;False;t3_ku4yjy;False;True;t1_giqriw5;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gis9a18/;1610344483;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Goukenslay;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Goukenslay;light;text;t2_h8wgs;False;False;[];;lmfao he came in to do some monke noises;False;False;;;;1610303318;;False;{};gis9ve9;False;t3_ku64l6;False;True;t3_ku64l6;/r/anime/comments/ku64l6/how_mangaka_sorachi_hideaki_recorded_his_lines/gis9ve9/;1610344816;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePhantomRaven;;;[];;;;text;t2_45tqag6z;False;False;[];;Oh yea that makes sense cuz even law, Moria, jinbe and croc were mentioned;False;False;;;;1610304001;;False;{};gisan9h;False;t3_ku4yjy;False;True;t1_girigc3;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gisan9h/;1610345265;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePhantomRaven;;;[];;;;text;t2_45tqag6z;False;False;[];;Yes but many people dont consider him a major character. I do tho;False;False;;;;1610304066;;False;{};gisaqvu;False;t3_ku4yjy;False;True;t1_girtltk;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gisaqvu/;1610345322;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;False;[];;Not sure about Hidamari (though I'm pretty sure it's still not Shinbou), but I thought Zetsubou-sensei was helmed by Tatsuya Oishi with heavy assistance from Naoyuki Tatsuwa. Could be wrong on that I suppose. I know some of the credits on Zetsubou-sensei are very unusual, and it can be hard to tell who really played what role on a lot of Shaft shows.;False;False;;;;1610304276;;False;{};gisb3ss;False;t3_kubmpk;False;True;t1_gir90ve;/r/anime/comments/kubmpk/how_do_people_keep_up_with_anime_studios_staff/gisb3ss/;1610345527;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlueBirdBeak;;;[];;;;text;t2_74hhsd8f;False;False;[];;they definitely put a lot more effort into this one;False;False;;;;1610305067;;False;{};giscm9e;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giscm9e/;1610346420;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WeNTuS;;;[];;;;text;t2_btiic;False;False;[];;"I'm pretty sure it was implied that newspaper told about his death, judging by Dadan expression alone. ""I only now found out he was alive all that time and now...""";False;False;;;;1610305571;;False;{};gisdn36;False;t3_ku4yjy;False;True;t1_girlup9;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gisdn36/;1610347016;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610306082;;False;{};giseoj7;False;t3_ku4yjy;False;True;t1_girvxhy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giseoj7/;1610347594;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeta42;;;[];;;;text;t2_bjdm4;False;False;[];;">how masterfully he handles mysteries for decades - -Gave me a good laugh, have an upvote";False;False;;;;1610306176;;False;{};gisevdy;False;t3_ku4yjy;False;True;t1_gis9a18;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gisevdy/;1610347698;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gangrelatedscientist;;;[];;;;text;t2_2jeb5zh0;False;False;[];;He died trying to save Luffy... :(;False;False;;;;1610306697;;False;{};gisfx6t;False;t3_ku4yjy;False;True;t1_gir6he9;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gisfx6t/;1610348282;2;True;False;anime;t5_2qh22;;0;[]; -[];;;giangerd;;;[];;;;text;t2_1byk5f1m;False;False;[];;"Dude again, I ain't gonna defend anything. You can have your opinion. If you don't like the way an author writes you can read something else from another author. - -Stop wasting out time with your nonsense";False;False;;;;1610307063;;False;{};gisgntf;False;t3_ku4yjy;False;True;t1_gisevdy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gisgntf/;1610348693;2;True;False;anime;t5_2qh22;;0;[]; -[];;;utente007;;;[];;;;text;t2_5abo7ug0;False;False;[];;If you prefer to remember it like this is up to you.;False;False;;;;1610307616;;False;{};gishr7v;False;t3_ku4yjy;False;True;t1_gisfx6t;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gishr7v/;1610349302;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spinfinity;;;[];;;;text;t2_6czvz;False;False;[];;Well, I'm finally excited to be watching One Piece again but please, for the love of god, let's have some better pacing moving forward.;False;False;;;;1610308314;;False;{};gisj5fg;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gisj5fg/;1610350107;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NeroVang;;;[];;;;text;t2_4rxrpk0e;False;False;[];;If Sabo was dead, the RA would know for sure because of his vivre card going up in flames;False;False;;;;1610308640;;False;{};gisjszw;False;t3_ku4yjy;False;True;t1_gisdn36;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gisjszw/;1610350478;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spinfinity;;;[];;;;text;t2_6czvz;False;False;[];;"I don't read the manga but I was actually hoping that Wano would fix a lot of the pacing issues that plagued essentially every arc when there wasn't something remotely exciting or interesting happening, but it's had those issues too... just dressed up with a better art style and some slick animation. I actually stopped watching it once we got to the prison labor segment because it was just dragging SO much and I wasn't in it, but I decided to catch back up recently. - -Despite the intricate plot and lots of backstory, simple sections stretch out over several episodes and we still get numerous exposition dumps and flashbacks, but I think the last few episodes have been fine and advanced the story in a good-enough way to where I can be excited about the upcoming Fire Festival battle. I just really hope we don't get too much padding.";False;False;;;;1610308693;;False;{};gisjwyq;False;t3_ku4yjy;False;True;t1_gir8uai;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gisjwyq/;1610350540;3;True;False;anime;t5_2qh22;;0;[]; -[];;;voornaam1;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://www.anime-planet.com/users/Max4444;dark;text;t2_3yiwp1ue;False;False;[];;Sweetness and Lightning has good recipes, I haven't watched Food Wars yet but I heard sonewhere Sweetness and Lightning is better if you want to learn to cook.;False;False;;;;1610308977;;False;{};giskhk8;False;t3_kub9ui;False;True;t3_kub9ui;/r/anime/comments/kub9ui/in_the_same_vein_as_food_wars_foodcooking_and/giskhk8/;1610350859;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BeckQuillion89;;;[];;;;text;t2_11czx8;False;False;[];;"""I never get bored of this world"" - -Me too Doflamingo...me too";False;False;;;;1610309087;;False;{};giskphr;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giskphr/;1610350985;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aznfanta;;;[];;;;text;t2_9yiqu;False;False;[];;I don't think in the next part of wano he yells much except towards the beginning;False;False;;;;1610309560;;False;{};gislnop;False;t3_ku4yjy;False;True;t1_girjctu;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gislnop/;1610351504;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tronistica;;;[];;;;text;t2_wsmhi;False;False;[];;I’m surprised this episode got so many karma on this subreddit. I thought y’all only like the flashy animated fights for long running shonen jump properties haha! One piece has such incredible world building;False;False;;;;1610310680;;False;{};gisnzmf;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gisnzmf/;1610352782;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeMaster9;;;[];;;;text;t2_5mdd4ag0;False;False;[];;watch One Pace;False;False;;;;1610311260;;False;{};gisp705;False;t3_ku4yjy;False;True;t1_girwox6;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gisp705/;1610353443;0;True;False;anime;t5_2qh22;;0;[]; -[];;;xDownInPainx;;;[];;;;text;t2_4dvmgc3q;False;False;[];;If I was Marine in that situation, I jump in the ocean as soon as he starts his attack lol;False;False;;;;1610312664;;False;{};giss91u;False;t3_ku4yjy;False;False;t1_gire0gl;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giss91u/;1610355108;6;True;False;anime;t5_2qh22;;0;[]; -[];;;jsmith4567;;;[];;;;text;t2_mw9uj;False;False;[];;The only hope Coby has is to say Luffy.;False;False;;;;1610313849;;False;{};gisunpf;False;t3_ku4yjy;False;True;t1_girjbrw;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gisunpf/;1610356421;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Euas;;;[];;;;text;t2_tct7u;False;False;[];;kinda hard when you can only adapt one chapter per week xD;False;False;;;;1610313944;;False;{};gisuui7;False;t3_ku4yjy;False;True;t1_gisj5fg;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gisuui7/;1610356521;1;True;False;anime;t5_2qh22;;0;[]; -[];;;European_Badger;;;[];;;;text;t2_h5oxgc;False;False;[];;"I think he did mean ""awful dressrosa arc"" as ""awful adaptation/animation"", in the context of the animation being the talking point of this whole thread.";False;False;;;;1610314481;;False;{};gisvxol;False;t3_ku4yjy;False;False;t1_gis630x;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gisvxol/;1610357117;12;True;False;anime;t5_2qh22;;0;[]; -[];;;giangerd;;;[];;;;text;t2_1byk5f1m;False;False;[];;Yeah you are probably right;False;False;;;;1610314581;;False;{};gisw58b;False;t3_ku4yjy;False;True;t1_gisvxol;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gisw58b/;1610357231;2;True;False;anime;t5_2qh22;;0;[]; -[];;;joshipoo59419;;;[];;;;text;t2_imabniz;False;False;[];;We call him God's for a reason. He never lets us down!;False;False;;;;1610314837;;False;{};giswo8f;False;t3_ku4yjy;False;True;t1_gis6u4q;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giswo8f/;1610357514;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Deadwolf_YT;;;[];;;;text;t2_132jui;False;False;[];;I mean even if ace tried to run luffy had collapsed, and imo shanks was waiting for ace to get killed before making his appearance so that the WG would end the war;False;False;;;;1610314890;;False;{};gisws5h;False;t3_ku4yjy;False;True;t1_gishr7v;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gisws5h/;1610357572;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VariousMeet;;;[];;;;text;t2_63veb3s5;False;False;[];;"I think ""Big News"" Morgans might be my new favourite character in One Piece. It's nice to know that he's the reason why seagulls spread the news around the world.";False;False;;;;1610315457;;False;{};gisxyr8;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gisxyr8/;1610358204;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spinfinity;;;[];;;;text;t2_6czvz;False;False;[];;Is that why it sucks? Ugh yeah, I guess... I'd almost be okay with it being biweekly if it means they adapt more chapters into an episode and kick it up a notch.;False;False;;;;1610315478;;False;{};gisy0dt;False;t3_ku4yjy;False;True;t1_gisuui7;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gisy0dt/;1610358229;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkBladeEkkusu;;;[];;;;text;t2_r60ay;False;False;[];;Teach (Blackbeard) was mentioned as well.;False;False;;;;1610315610;;False;{};gisyagq;False;t3_ku4yjy;False;True;t1_gisan9h;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gisyagq/;1610358381;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Raezak_Am;;MAL;[];;;dark;text;t2_a3q5c;False;False;[];;It triggered my PTSD from the episode where they climbed to Zou. Painful.;False;False;;;;1610316622;;False;{};git0fb6;False;t3_ku4yjy;False;True;t1_girb1xg;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/git0fb6/;1610359524;3;True;False;anime;t5_2qh22;;0;[]; -[];;;_Roronoa_Zoro-;;skip7;[];;;dark;text;t2_6glp1tyo;False;False;[];;Anime is 40 chapters away from the manga so they are kinda forced to have this pacing;False;False;;;;1610316629;;False;{};git0fv9;False;t3_ku4yjy;False;True;t1_gisy0dt;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/git0fv9/;1610359534;2;True;False;anime;t5_2qh22;;0;[]; -[];;;abibyama;;;[];;;;text;t2_12he31;False;False;[];;When was the last it was upvoted this much? I think it was since the first wano episode;False;False;;;;1610317388;;False;{};git22rm;False;t3_ku4yjy;False;True;t1_girqf69;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/git22rm/;1610360421;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Barkle11;;;[];;;;text;t2_pwdlw3b;False;False;[];;Everything is falling into place. The warlords are back into being normal pirates again. Just a small inch closer to the final war arc;False;False;;;;1610317758;;False;{};git2uwz;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/git2uwz/;1610360838;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EnoughBake6233;;;[];;;;text;t2_4ygnzl37;False;False;[];;I guess they’re probs some spin off marine power obtained story lol;False;False;;;;1610318623;;False;{};git4oz4;False;t3_ku4yjy;False;True;t1_giss91u;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/git4oz4/;1610361825;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hmmandathon;;;[];;;;text;t2_68lhnqv8;False;False;[];;Also Boa Hancock busting Luffy into Impel Down and using a moment of chaos to pass a message to Ace. I don’t see the navy fairing well against Milhawk and I’m so ready for it;False;False;;;;1610318738;;False;{};git4xlu;False;t3_ku4yjy;False;True;t1_giqrr42;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/git4xlu/;1610361953;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pizza_Rum24;;;[];;;;text;t2_5qjt7r72;False;False;[];;As much as I look forward to the end of long story arc's, I think I actually enjoy the short interlude arc's even more. So much plot packed into such a short time. It's amazing!;False;False;;;;1610320006;;False;{};git7jvy;False;t3_ku4yjy;False;False;t1_girxueo;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/git7jvy/;1610363384;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Xerxora;;;[];;;;text;t2_5fj2gx7m;False;False;[];;More like 5-minute;False;False;;;;1610320417;;False;{};git8esk;False;t3_ku4yjy;False;True;t1_giqevqw;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/git8esk/;1610363846;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pizza_Rum24;;;[];;;;text;t2_5qjt7r72;False;False;[];;I've been waiting for this week's and next week's episodes for a long time! As someone who reads OP, it was such a treat to see how much effort was put into the anime production. If they keep up this level of production next week, it may break the internet!;False;False;;;;1610320482;;False;{};git8jrg;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/git8jrg/;1610363919;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spinfinity;;;[];;;;text;t2_6czvz;False;False;[];;Yeah, understandable.;False;False;;;;1610320648;;False;{};git8w0v;False;t3_ku4yjy;False;True;t1_git0fv9;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/git8w0v/;1610364103;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;Who wouldn't have needed saving if Ace wouldn't have answered to Akainu's provocation.;False;False;;;;1610320757;;False;{};git93yl;False;t3_ku4yjy;False;True;t1_gisfx6t;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/git93yl/;1610364227;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pisspoopisspoopiss;;;[];;;;text;t2_mlbyp;False;False;[];;"This episode was insane. - -I hope even just 1 other episode of Wano will look and be directed this good.";False;False;;;;1610321928;;False;{};gitbgoc;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gitbgoc/;1610365542;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Waterburst789;;;[];;;;text;t2_134kz1;False;False;[];;They had no right making Morgans looking that menacing lmao;False;False;;;;1610322643;;False;{};gitcxjm;False;t3_ku4yjy;False;False;t1_giq41yi;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gitcxjm/;1610366373;5;True;False;anime;t5_2qh22;;0;[]; -[];;;shockzz123;;;[];;;;text;t2_g0cyr;False;False;[];;It wasn't just the Dressrosa arc tbh. The anime adaptation from Fishman Island till the end of Dressrosa (which is like 5 years) was consistently absolutely awful.;False;False;;;;1610325025;;False;{};githrkg;False;t3_ku4yjy;False;True;t1_girbt4h;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/githrkg/;1610369269;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DiwatangHandsome;;;[];;;;text;t2_824mrs0u;False;False;[];;I've read the manga but I'm still screaming from excitement. And next episode, for sure I'll scream more. Look forward to it fellow crews!;False;False;;;;1610326632;;False;{};gitl21j;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gitl21j/;1610371391;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CouchRadish;;;[];;;;text;t2_6fxtr;False;False;[];;"Just the fact that every former warlord had a goddamn gorgeous animated sequence and any previously shown scenes were reanimated in the new style blew me away. - -People can complain about the anime and rightfully so, but Wano has been without a doubt the best the anime has ever been.";False;False;;;;1610326800;;False;{};gitldst;False;t3_ku4yjy;False;True;t1_girw3hz;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gitldst/;1610371627;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RedShenron;;;[];;;;text;t2_4fzdirgp;False;False;[];;"Dbz is still a very good battle shonen so it's definitely not a low-bar anime. - -Yugioh is pretty good overall, and some series are by far some of the best shonens i've seen (i know it sounds ridicoulus, but they are very well written, at least some of them). - -Anyway, you really shouldn't care. I like a good amount of animes that are generally considered bad or have pretty low rating on Myanimelist (6.5 or lower) but still, i don't care because everyone should be free to like what he wants.";False;False;;;;1610327573;;False;{};gitmusd;False;t3_ku7jrv;False;True;t3_ku7jrv;/r/anime/comments/ku7jrv/i_realized_ive_set_the_bar_too_low_for_anime_that/gitmusd/;1610372629;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Techsreddit;;;[];;;;text;t2_k1qfbfy;False;False;[];;Yea, I agree, and I don’t care what others think but just from what I’ve seen on this sub (hell, probably even some google searches) made me second guess my self.;False;False;;;;1610327668;;False;{};gitn1al;True;t3_ku7jrv;False;True;t1_gitmusd;/r/anime/comments/ku7jrv/i_realized_ive_set_the_bar_too_low_for_anime_that/gitn1al/;1610372753;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RedShenron;;;[];;;;text;t2_4fzdirgp;False;False;[];;I'm going to get downvoted if someone reads this however this sub a lot of times is very annoying. Many people that liks to tell others what they should like, hell even downvoting for liking x more than y even if y if considered better.;False;False;;;;1610327805;;False;{};gitnal6;False;t3_ku7jrv;False;True;t1_gitn1al;/r/anime/comments/ku7jrv/i_realized_ive_set_the_bar_too_low_for_anime_that/gitnal6/;1610372922;2;True;False;anime;t5_2qh22;;0;[]; -[];;;llllllllllllllIIll;;;[];;;;text;t2_7ib253eg;False;False;[];;Perfect animation and pacing? I guess I’ll forget about the previous arcs Toei.;False;False;;;;1610328299;;False;{};gitobt1;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gitobt1/;1610373570;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Brandwein;;;[];;;;text;t2_c1g5d;False;False;[];;"Ace died because he was too easily taunted due to his pride of being whitebeards ""son"". If he had not listened to Akainus mockery and just ran away, Luffy would not need saving. So yeah, u/utente007 is right with him failing himself. Dude was kind of strong but shackled by his insecurities concerning his real dad.";False;False;;;;1610328940;;False;{};gitpo39;False;t3_ku4yjy;False;False;t1_gisfx6t;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gitpo39/;1610374468;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Zangrieff;;;[];;;;text;t2_3n92cv;False;False;[];;This episode made me speechless. They truly took a chapter from the manga and elevated it in this episode. Never thought I'd see Toei do something this great;False;False;;;;1610329330;;False;{};gitqgg7;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gitqgg7/;1610374973;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePhantomRaven;;;[];;;;text;t2_45tqag6z;False;False;[];;Ah yes;False;False;;;;1610331693;;False;{};gitvk1e;False;t3_ku4yjy;False;True;t1_gisyagq;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gitvk1e/;1610378365;1;True;False;anime;t5_2qh22;;0;[]; -[];;;l0lloo;;;[];;;;text;t2_o7m3y;False;False;[];;tbf shanks wasn't an emepror when they fought, and early in the story mihawk goes to tell shanks about luffy and acts like he wouldn't fight with someone who lost his arm, not saying mihawk couldn't easily handle some battleships and with vice admirals etc, just that we have no idea what their powerlevels were back when they used to fight;False;False;;;;1610333146;;1610333403.0;{};gityfvk;False;t3_ku4yjy;False;True;t1_gir6leb;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gityfvk/;1610380317;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hot_Cryptographer249;;;[];;;;text;t2_87kdp7fu;False;False;[];;"One of my favorite things in the world of One Piece, is its political system. Since the Dressrosa Arc, I was extremely excited about the introduction of Admiral Fujitora due to our shared beliefs on the corruption of the Three Great Powers and what should be done about them. From all the way in Alabadta to Dressrosa, we as fans clearly saw the evilness of one of those Three Great Powers, that being the Seven Warlords power system. In our real world, corruptions are non-fiction. They exist in our countries governments, and have been shown to destroy lives. Watching the crimes of Crocodile and learning how the World Government assisted him in that journey, I always felt anger. I felt anger because Justice is what the World Government stands for, Justice is their entire existence. But what’s Justice if the power under it allows criminals to commit war crimes and demolish the well-being of countries and their citizens? What’s Justice if the World Government is allowed to chase Luffy, who even as a pirate, managed to do what they preach to do, but fail to act on. - -So from Alabasta to Dressrosa, I always wanted to to meet someone in the One Piece world who saw the World Government hypocrisy, and criticized their authoritarian reign. When I met Fujitora, I was beyond happy. I was happy because Issho was someone who saw the World Government and it’s representative, the Navy, for what it was: a political system that in some ways (although I like to say in so many ways), is no different then the pirates they live to chase. It’s the reason that he was mentally challenged to chase Luffy after he defeated Doflamingo. On one hand, Luffy just saved an entire Kingdom from an evil reign, a reign that was bought upon by the World Government itself. On the other hand, Luffy was a pirate. This writing piece is why I live for One Piece. It’s a writing piece that reminds me of the many debates that I tend to have with my conservative friends. But what makes this even more beautiful, is that he ends the Arc by shameless lowering the Navy to the public, a move that angered Fleet Admiral Sakazuki, a man who’s as authoritarian as they come. - -Episode 957 delivered for me. The dissolution of the Seven Warlords just adds oil to the fire that brought me to One Piece. I don’t know if this will ever happen, but the I hope this action brought to us by the Reverie marks the beginning of the World Government transformation into a governing body that is just and fair. A governing body that speaks out against the many social practices that much of the real world has abolished, slavery being an example.";False;False;;;;1610335848;;False;{};giu3mb4;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giu3mb4/;1610384045;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Barucyl;;;[];;;;text;t2_m31s4;False;False;[];;Another victim entering the Abyss.;False;False;;;;1610336603;;False;{};giu529a;False;t3_ku65n3;False;True;t3_ku65n3;/r/anime/comments/ku65n3/made_in_abyss_episode_1_2_review/giu529a/;1610385170;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aaronrules380;;;[];;;;text;t2_x33la;False;False;[];;manga just reached chapter 1000 lol;False;False;;;;1610337516;;False;{};giu6tkm;False;t3_ku4yjy;False;True;t1_girk77m;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giu6tkm/;1610386396;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sidechick66;;;[];;;;text;t2_5my22hx0;False;False;[];;but Wano has been getting better I think pacing wise and overall, also 957 was perfect, so they're definitely doing something right now;False;False;;;;1610338030;;False;{};giu7t7r;False;t3_ku4yjy;False;True;t1_giqvz6i;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giu7t7r/;1610387184;3;True;False;anime;t5_2qh22;;0;[]; -[];;;-playboi-;;;[];;;;text;t2_81mf3b7q;False;False;[];;Mans was looking like a demon;False;False;;;;1610338741;;False;{};giu944u;False;t3_ku4yjy;False;False;t1_gitcxjm;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giu944u/;1610388096;5;True;False;anime;t5_2qh22;;0;[]; -[];;;sitwm;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/BlueMoon01;light;text;t2_xft1z;False;False;[];;"Those pieces of information Oda casually dropped in the next episode will be shocking; really excited to see how the anime will step it up";False;False;;;;1610338883;;False;{};giu9dra;False;t3_ku4yjy;False;True;t1_girivbj;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giu9dra/;1610388281;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GoldenDude;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GoldenBoy808;light;text;t2_ay8d1;False;False;[];;This episode was beautiful;False;False;;;;1610340848;;False;{};giucw3i;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giucw3i/;1610390859;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BetaXP;;;[];;;;text;t2_f9r03;False;False;[];;"I know black clover is pretty healthily into it's manga and anime at this point but it still feels kinda weird to call it an ""older"" jump adaptation - -I mean I guess it technically is, relative to the rest of the magazine, but still";False;False;;;;1610342974;;False;{};giug5rv;False;t3_ku4yjy;False;False;t1_girxfbc;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giug5rv/;1610393188;5;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Meat7888;;;[];;;;text;t2_9isycpqz;False;False;[];;Lol ikr💀;False;False;;;;1610344180;;False;{};giuhwx2;False;t3_ku4yjy;False;False;t1_giqplk1;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giuhwx2/;1610394409;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TrailOfEnvy;;;[];;;;text;t2_o6dtk1;False;False;[];;"I hope this thread will surpass [One Piece episode 9001 discussion](https://www.reddit.com/r/anime/comments/d15kf4/one_piece_episode_9001_discussion/?utm_source=amp&utm_medium=&utm_content=comments_view_all)";False;False;;;;1610344320;;False;{};giui41n;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giui41n/;1610394550;1;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Meat7888;;;[];;;;text;t2_9isycpqz;False;False;[];;IKR I thought it was only me who noticed;False;False;;;;1610344323;;False;{};giui46h;False;t3_ku4yjy;False;False;t1_giq3om8;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giui46h/;1610394553;1;True;False;anime;t5_2qh22;;0;[]; -[];;;expressive_introvert;;;[];;;;text;t2_544dl5nv;False;False;[];;That also explains that how God Usopp can endure so much hits.;False;False;;;;1610346156;;False;{};giukm2y;False;t3_ku4yjy;False;True;t1_girgvfo;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giukm2y/;1610396357;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Naha-;;;[];;;;text;t2_s8bby;False;False;[];;Since I started following animes seasons in 2011, at least is the best Winter season from what I remember. So many good series to watch.;False;False;;;;1610346260;;False;{};giukqzb;False;t3_kubxb2;False;True;t3_kubxb2;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/giukqzb/;1610396448;2;True;False;anime;t5_2qh22;;0;[]; -[];;;utente007;;;[];;;;text;t2_5abo7ug0;False;False;[];;Exactly, there was no need for that, they could just ran away with his power but his stupid proud made him die. It’s like in those movies the villain calls the protagonist a coward while he is walking away from a useless fight and the protagonist reacts proudly and goes into the fighting without thinking straight and loses.;False;False;;;;1610351738;;False;{};gius3l5;False;t3_ku4yjy;False;False;t1_gitpo39;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gius3l5/;1610401460;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Grandline123;;;[];;;;text;t2_7kbkxi1m;False;False;[];;That will be bad writting;False;False;;;;1610354908;;False;{};giuwp2c;False;t3_ku4yjy;False;False;t1_giqq8wy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giuwp2c/;1610404370;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pointless_crayon0398;;;[];;;;text;t2_7kz9bv02;False;False;[];;"Just because a show is ""explicitly shonen"" doesn't mean it's like most shonen . We're evolving past a point where those labels don't really mean much anymore except the magazine the manga was published in . This season of AoT has more ""depth"" of seinen anime than most seinen anime I've seen .";False;False;;;;1610357178;;False;{};giuzd4u;False;t3_kubxb2;False;True;t1_girv8lq;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/giuzd4u/;1610406049;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610358991;;False;{};giv16wf;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giv16wf/;1610407311;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ExpeI;;MAL;[];;myanimelist.net/profile/GirlsPenetration;dark;text;t2_ircu0;False;False;[];;Thats what happens when u adapt a 20 minute episode from 1 chapter... tons of padding. Although the pacing hasn’t been as bad lately this will always be an issue as long as the manga is running.;False;False;;;;1610359213;;False;{};giv1hmz;False;t3_ku4yjy;False;True;t1_gisjwyq;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giv1hmz/;1610407471;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Brook0999;;;[];;;;text;t2_ycupg;False;False;[];;"The whole Kaido arc had superb art and animation so far. - -But this episode had perfect everything it was like a movie.";False;False;;;;1610360523;;False;{};giv3bey;False;t3_ku4yjy;False;True;t1_giqkm2z;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giv3bey/;1610408446;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Humg12;;MAL;[];;http://myanimelist.net/animelist/Humg12;dark;text;t2_d5fn6;False;False;[];;When One Piece Brotherhood gets made in 15 years, it'll take the top of the anime world too, I'm sure.;False;False;;;;1610366270;;False;{};givc6ot;False;t3_ku4yjy;False;True;t1_girbt4h;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/givc6ot/;1610412951;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bnichols924;;;[];;;;text;t2_15y03a;False;False;[];;He doesn’t think they are obsolete, he just thinks it’s wrong to allow pirates to have that much protection from punishment. To be honest, Crocodile and Don Flamingo kind of proved his point.;False;False;;;;1610370474;;False;{};givk2id;False;t3_ku4yjy;False;False;t1_girirb6;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/givk2id/;1610416992;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Radinax;;;[];;;;text;t2_iextq;False;False;[];;What is her Twitter?;False;False;;;;1610377479;;False;{};givyoc7;False;t3_ku4yjy;False;True;t1_girf3wi;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/givyoc7/;1610425168;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Doomroar;;MAL;[];;http://myanimelist.net/profile/Doomroar;dark;text;t2_bk6ee;False;False;[];;Mihawk is Usopp's uncle confirmed!;False;False;;;;1610385756;;False;{};giwjjlj;False;t3_ku4yjy;False;False;t1_girmk8t;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giwjjlj/;1610436569;1;True;False;anime;t5_2qh22;;0;[]; -[];;;arroweyneee;;;[];;;;text;t2_9pg3ofgk;False;False;[];;"Could be in response to either a Cobra or Vivi assassination. Guarantee that him and Neptune became good buddies just off their daughters interactions plus their common savior in Luffy. - -That saying ""Birds of a feather, flock together"" is very true for people of Alabasta or Fishman Island and their rulers.";False;False;;;;1610393418;;False;{};gix0s7g;False;t3_ku4yjy;False;True;t1_giqkxir;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gix0s7g/;1610445898;1;True;False;anime;t5_2qh22;;0;[]; -[];;;arroweyneee;;;[];;;;text;t2_9pg3ofgk;False;False;[];;Time for a re-read since I can't member shit.;False;False;;;;1610393526;;False;{};gix10ud;False;t3_ku4yjy;False;True;t1_giu9dra;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gix10ud/;1610446022;1;True;False;anime;t5_2qh22;;0;[]; -[];;;antiracist_69;;;[];;;;text;t2_40rc1skg;False;False;[];;"Ok so, believe, even if i'm a manga reader I would give my panties to Brook to have an issue of the WEJ of this episode... Ok so my theories (no spoilers for the manga): - --Vivi has most likely been kidnapped, and people think that she's dead. - --Sabo was framed responsible and he has now been captured (that's why the Revolutionary Army and everyone back in Goa reacted that way, probably thinking of what happened to Ace) - --Wapol has done something... big. - -Now regarding the emperors (a very small manga spoiler, and a medium one): - --The world will never be the same after Wano, and somehow Buggy will manage to suck up the empty power after the fall of at least one enperor, be it Kaido or Big Mom, becoming an Emeperor. Either that or he gets an alliance with Shanks. - --Weevil due to his personal hatred towards Blackbeard COULD join the Strawhats as allies (that's if his kother gets captured, since she hates the whitebeard crew and wouldn't like the idea of Marco helping out Luffy). - --Hancock will either find Luffy and become part of the crew or will meet Bartolomeo (who is in Shank's territory) and join the Grand Fleet. - --Milhawk will probably just fuck off to nowhere cutting down more pirate ships, or join Shanks, who looks like he respects the most of the emperors. - --Crocodile, I hope, he reveals what he has been up to, and joins as an ally of Luffy, since he has been keeping track of him after Marineford. - --Bon Clay took the power of level 5.5 in Impel Down, and most likely will lead a massive escape, destroying the whole place. In the unlikely event (except for Hancock, which has the most numbers to be captured) that the marine have defeated any of the warlords and put them in Impel Down, Doflamingo, eventhough he is in Level 6 will escape and become a force of chaos unaffiliated to anyone. And if he affiliates with anyone, will be most likely with Blackbeard. - --Moria attacked the beehive, Blackbeard's territory so he is wither dead or joined the crew, which I see the most likely.";False;False;;;;1610394743;;False;{};gix3plw;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gix3plw/;1610447457;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Playful_Reception_59;;;[];;;;text;t2_74vz1k29;False;False;[];;Can somebody tell me to which chapter this episode is related?;False;False;;;;1610395511;;False;{};gix5ea6;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gix5ea6/;1610448384;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hypersonicblabla618;;;[];;;;text;t2_4wiu4uat;False;False;[];;does anyone know the theme music that is played when buggy asks to show some guts to his nakama?;False;False;;;;1610396280;;False;{};gix72iu;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gix72iu/;1610449285;1;True;False;anime;t5_2qh22;;0;[]; -[];;;arroweyneee;;;[];;;;text;t2_9pg3ofgk;False;False;[];;That whole Morgan's scene with the POV shot from the gun was clutch and heightened the tension. Plus it just made Morgan a total badass and the ending with buggy was just clutch as usual.;False;False;;;;1610397059;;False;{};gix8s5m;False;t3_ku4yjy;False;False;t1_girbac6;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gix8s5m/;1610450220;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TipsyLore;;;[];;;;text;t2_6xgpj9o2;False;False;[];;They're def taking an L from BOA and Mihawk. Lol;False;False;;;;1610398057;;False;{};gixayob;False;t3_ku4yjy;False;True;t1_giqplk1;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gixayob/;1610451445;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TipsyLore;;;[];;;;text;t2_6xgpj9o2;False;False;[];;Did SABO DIE!?!?! Please tell me he didn't. He was one of my favorite :(;False;False;;;;1610398093;;False;{};gixb1dy;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gixb1dy/;1610451489;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TipsyLore;;;[];;;;text;t2_6xgpj9o2;False;False;[];;I just can't see it though. How can luffy fight Big Mom and Kaido then rush to save Sabo. I think Oda does a marineford incident this time without luffy to show how powerful his allies are. That would be epic.;False;False;;;;1610398216;;False;{};gixbb83;False;t3_ku4yjy;False;True;t1_gir5ekl;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gixbb83/;1610451643;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pure_Afternoon_4974;;;[];;;;text;t2_9eed9gdd;False;False;[];;"actually he totally can. -the battle is supposed to happen on the night of fire festival. Hence most likely by the time Dawn arrives the battle will be over (yes it will take like a gazillion episodes, but still one night). -Then there will be the signature Luffy after-party. which may take another day and then Luffy should set off. -Now whatever is happening at marineford won't happen in a day, so luffy will be able to reach there comfortably (maybe even gather the grandfleet). -Remember the whole Wano arc is basically one week. -It has pretty much always been like this, if u exclude the time-skip, Luffy and crew has basically travelled together for 4-6months.";False;False;;;;1610399242;;False;{};gixdlmc;False;t3_ku4yjy;False;True;t1_gixbb83;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gixdlmc/;1610452948;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TipsyLore;;;[];;;;text;t2_6xgpj9o2;False;False;[];;"I can see that but I dont want another Marineford copy cat type of scenario. Hopefully he stirs it up something big and we have all the great powers come together igniting the great War arc. I'm curious how he'll fit the Elbaf arc in there. - -Correct me if I'm wrong though, I believe they've been traveling together for 9 months?";False;False;;;;1610402600;;False;{};gixku72;False;t3_ku4yjy;False;False;t1_gixdlmc;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gixku72/;1610457435;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pure_Afternoon_4974;;;[];;;;text;t2_9eed9gdd;False;False;[];;"oda's story telling has evolved a lot since old marineford so he'll sure spice things up. -i also feel it may happen closer to Marijoa as when we last saw Sabo he was there. - -i am also curious to see how he fits elbaf and whether he will bring out Shanks or not. - - -as for the time i was making approximation. 9 months may be correct :)";False;False;;;;1610405368;;False;{};gixqjwp;False;t3_ku4yjy;False;False;t1_gixku72;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gixqjwp/;1610461172;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;BIGU NEWS!;False;False;;;;1610408555;;False;{};gixwxxd;False;t3_ku4yjy;False;True;t1_gir9yr3;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gixwxxd/;1610465901;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Weepin-_-Bystander;;;[];;;;text;t2_3nn2qtdo;False;False;[];;What’s the order I should watch them in?;False;False;;;;1610415366;;False;{};giya80h;True;t3_ku6h36;False;True;t1_giq97f6;/r/anime/comments/ku6h36/my_anime_watch_list_recommendations_please/giya80h/;1610475357;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kmacroxs;;;[];;;;text;t2_ly9zz;False;False;[];;The only one you absolutely have to watch first is Unlimited Blade Works. The others can be watched in any particular order, because they are alternate timelines. Fate/Grand Order: First Order follows the first chapter of the smartphone app Fate/Grand Order.;False;False;;;;1610416220;;False;{};giybwul;False;t3_ku6h36;False;True;t1_giya80h;/r/anime/comments/ku6h36/my_anime_watch_list_recommendations_please/giybwul/;1610476511;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Orrphic;;;[];;;;text;t2_tw9abey;False;False;[];;956;False;False;;;;1610419051;;False;{};giyhjvv;False;t3_ku4yjy;False;True;t1_gix5ea6;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/giyhjvv/;1610480491;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AKASHI2341;;;[];;;;text;t2_6dvsdx4w;False;False;[];;Yea that’s what I heard as well, ig it’s really easy to watch for ppl of all ages. Plus the production and music are top notch.;False;False;;;;1610433320;;False;{};giz5q6f;True;t3_kuajof;False;True;t1_gir2ho3;/r/anime/comments/kuajof/demon_slayer_kimetsu_no_yaiba/giz5q6f/;1610497300;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AKASHI2341;;;[];;;;text;t2_6dvsdx4w;False;False;[];;Makes sense, thx.;False;False;;;;1610433338;;False;{};giz5qyq;True;t3_kuajof;False;True;t1_giqy3cn;/r/anime/comments/kuajof/demon_slayer_kimetsu_no_yaiba/giz5qyq/;1610497313;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AKASHI2341;;;[];;;;text;t2_6dvsdx4w;False;False;[];;Yea that’s what my friends said, it’s enjoyable regardless of age. Yea and I agree the production was very good and the music (homura by LiSA) is very enjoyable.;False;False;;;;1610433413;;False;{};giz5ua1;True;t3_kuajof;False;False;t1_giqw88p;/r/anime/comments/kuajof/demon_slayer_kimetsu_no_yaiba/giz5ua1/;1610497371;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AKASHI2341;;;[];;;;text;t2_6dvsdx4w;False;False;[];;I see, good explanation. Thanks!;False;False;;;;1610433434;;False;{};giz5v82;True;t3_kuajof;False;True;t1_giqvl4u;/r/anime/comments/kuajof/demon_slayer_kimetsu_no_yaiba/giz5v82/;1610497388;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AKASHI2341;;;[];;;;text;t2_6dvsdx4w;False;False;[];;As others pointed out, ig the characters are great, production and music are top notch and above all it’s enjoyable regardless of age.;False;False;;;;1610433475;;False;{};giz5wye;True;t3_kuajof;False;False;t1_giqvkis;/r/anime/comments/kuajof/demon_slayer_kimetsu_no_yaiba/giz5wye/;1610497418;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AKASHI2341;;;[];;;;text;t2_6dvsdx4w;False;False;[];;Ig it wouldn’t become this popular if everything wasn’t perfect. I guess I should rematch it again lol, thx for the reply!;False;False;;;;1610433752;;False;{};giz6956;True;t3_kuajof;False;True;t1_giqvvdh;/r/anime/comments/kuajof/demon_slayer_kimetsu_no_yaiba/giz6956/;1610497635;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;I've seen it, so I'm well aware. I still don't really understand this massive explosion in popularity, but oh well.;False;False;;;;1610434090;;False;{};giz6nq5;False;t3_kuajof;False;True;t1_giz5wye;/r/anime/comments/kuajof/demon_slayer_kimetsu_no_yaiba/giz6nq5/;1610497884;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AKASHI2341;;;[];;;;text;t2_6dvsdx4w;False;False;[];;Yea I’m still w u although I love the music. Imma try to rewatch it tho.;False;False;;;;1610434178;;False;{};giz6rhr;True;t3_kuajof;False;True;t1_giz6nq5;/r/anime/comments/kuajof/demon_slayer_kimetsu_no_yaiba/giz6rhr/;1610497949;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Eoussama;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Eoussama;light;text;t2_16yavf;False;False;[];;Facts;False;False;;;;1610452350;;False;{};gizpixq;False;t3_ku4yjy;False;True;t1_giroqyc;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gizpixq/;1610509861;3;True;False;anime;t5_2qh22;;0;[]; -[];;;contraptionfour;;;[];;;;text;t2_fs4ki;False;False;[];;"Bit late but for what it's worth, this is the whole thing- all the eps as edited together for the standalone DVD release, with added fansubs. - -u/XChainedUpX just in case";False;False;;;;1610468618;;False;{};gj0gkci;False;t3_kuayqh;False;True;t1_gir1ipt;/r/anime/comments/kuayqh/where_can_i_watch_trava_fist_planet/gj0gkci/;1610525932;2;True;False;anime;t5_2qh22;;0;[]; -[];;;skragglenuts;;;[];;;;text;t2_8lxr390h;False;False;[];;"Gurren Lagann is pretty good so far, thanks. - -Shame it isn't dubbed";False;False;;;;1610483041;;False;{};gj1ccqj;True;t3_ku7p92;False;True;t1_giqh92s;/r/anime/comments/ku7p92/recommend_me_a_recent_anime_please/gj1ccqj/;1610544389;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Noob_shs;;;[];;;;text;t2_1knnvofb;False;False;[];;where do you see who directed this ep?;False;False;;;;1610502093;;False;{};gj2evqd;False;t3_ku4yjy;False;True;t1_giq4r2c;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gj2evqd/;1610571645;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kjm6351;;;[];;;;text;t2_12rkze;False;False;[];;Best animated episode of One Piece so far, hands down!;False;False;;;;1610512916;;False;{};gj2ybxc;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gj2ybxc/;1610585249;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TDLRBurntnipples;;;[];;;;text;t2_8po6ydd3;False;False;[];;Hey, it may be a weird question but does anyone know who spoke at the end of the episode?;False;False;;;;1610581247;;False;{};gj65kng;False;t3_ku4yjy;False;False;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gj65kng/;1610658320;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SogePrinceSama;;MAL;[];;http://myanimelist.net/animelist/teacake911;dark;text;t2_p55wn;False;False;[];;Morgans is like the nightmare on Sesame Street version of Big Bird-- honestly I wouldn't want to square up against regular Big Bird in a dark alley either;False;False;;;;1610595246;;False;{};gj6wfun;False;t3_ku4yjy;False;True;t1_giu944u;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gj6wfun/;1610675821;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Owchez;;;[];;;;text;t2_1pilchg;False;False;[];;I wonder what will happen to Koby when he meets Hancock?;False;False;;;;1610600357;;False;{};gj752sq;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gj752sq/;1610681467;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sohail0967;;;[];;;;text;t2_9taubptp;False;False;[];;Who thinks this is the best episode in one piece?;False;False;;;;1610619249;;False;{};gj7qpv0;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gj7qpv0/;1610695181;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Enigma512;;;[];;;;text;t2_16ckyd;False;False;[];;And he's absolutely right lol. The Warlord system is flawed on many levels and had bred far more negatives than positives. Doflamingo, Crocodile, and Blackbeard proved that and hell, even Hancock with some of her antics before/during the war had to have pissed off the WG/Marines.;False;False;;;;1610684350;;False;{};gjb6y30;False;t3_ku4yjy;False;True;t1_givk2id;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gjb6y30/;1610775276;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610774883;;False;{};gjfd3il;False;t3_ku65n3;False;True;t1_giqabt2;/r/anime/comments/ku65n3/made_in_abyss_episode_1_2_review/gjfd3il/;1610868627;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Midislife;;;[];;;;text;t2_xt1aj;False;False;[];;When was this said in the episode?;False;False;;;;1610795176;;False;{};gjfzp68;False;t3_ku4yjy;False;True;t1_girdemk;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gjfzp68/;1610880577;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RIAPOSW;;;[];;;;text;t2_2pkndizm;False;False;[];;This episode was QUALITY!! Soo good, the animation when they're explaining the Shichibukai was fantastic. The also relaying a lot of information in a digestible way. Also something about the Morgans part was really great as well, the way how they animated it.;False;False;;;;1610814531;;False;{};gjh2x4s;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gjh2x4s/;1610901503;1;True;False;anime;t5_2qh22;;0;[]; -[];;;legored;;;[];;;;text;t2_9959o;False;False;[];;Fuck that, if you have no clue what’s coming let your hype reach the fucking sky my boi. What’s coming is the type of shit that blows minds.;False;False;;;;1610837573;;False;{};gjijpnj;False;t3_ku4yjy;False;True;t1_girzzc6;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gjijpnj/;1610934996;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealot_Alec;;;[];;;;text;t2_5ru4e;False;False;[];;Are they going after the former Warlords as well? There really should have been a Croc laughing reaction shot as he and Doffy greatly helped in ending the Warlord system;False;False;;;;1611107424;;False;{};gjwd6ps;False;t3_ku4yjy;False;True;t1_givk2id;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gjwd6ps/;1611233468;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealot_Alec;;;[];;;;text;t2_5ru4e;False;False;[];;Luffy beat 3/7 Warlords won the heart of 1/7 has a quasi bromance with Buggy, *Jinbe* might join his crew, Zoro Mihawk - wonder how many will join the SHA 5000 strong force;False;False;;;;1611107803;;False;{};gjwdwcz;False;t3_ku4yjy;False;True;t3_ku4yjy;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gjwdwcz/;1611233893;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealot_Alec;;;[];;;;text;t2_5ru4e;False;False;[];;There goes my hope for a surprise Mihawk appearance in Wano;False;False;;;;1611107964;;False;{};gjwe76u;False;t3_ku4yjy;False;True;t1_girmbna;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gjwe76u/;1611234086;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealot_Alec;;;[];;;;text;t2_5ru4e;False;False;[];;Mihawk joins up with Moria and crew then later Croc and Baroque Works, Boa and Amazons making the Warlord Pirates;False;False;;;;1611108422;;False;{};gjwf1di;False;t3_ku4yjy;False;False;t1_giqrr42;/r/anime/comments/ku4yjy/one_piece_episode_957_discussion/gjwf1di/;1611234620;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610218550;moderator;False;{};gioigmf;False;t3_ktwwkq;False;True;t3_ktwwkq;/r/anime/comments/ktwwkq/what_is_this_characters_name_if_anyone_knows/gioigmf/;1610258908;1;False;False;anime;t5_2qh22;;0;[]; -[];;;thought_cheese;;;[];;;;text;t2_2k3hujq8;False;False;[];;Where can I find this? And is there a dub for it?;False;False;;;;1610218666;;False;{};gioipbc;False;t3_ktwrnr;False;True;t3_ktwrnr;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/gioipbc/;1610259045;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GMorelli;;;[];;;;text;t2_13n5gj;False;False;[];;Its Corona-chan;False;False;;;;1610218675;;False;{};gioiq1m;False;t3_ktwwkq;False;True;t3_ktwwkq;/r/anime/comments/ktwwkq/what_is_this_characters_name_if_anyone_knows/gioiq1m/;1610259057;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;Idk each year had it's own specials for me;False;False;;;;1610218806;;False;{};gioizzr;False;t3_ktwy3i;False;True;t3_ktwy3i;/r/anime/comments/ktwy3i/looking_at_mal_or_one_of_the_sites_what_year_do/gioizzr/;1610259211;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;I don't know what region you are in but it's available legally on crunchyroll in my country (UK) https://www.crunchyroll.com/en-gb/cells-at-work;False;False;;;;1610218807;;False;{};gioj03e;True;t3_ktwrnr;False;False;t1_gioipbc;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/gioj03e/;1610259213;7;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610218995;moderator;False;{};giojemp;False;t3_ktx21k;False;False;t3_ktx21k;/r/anime/comments/ktx21k/why_do_people_say_sakura_is_useless_and_people/giojemp/;1610259443;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Professor_Garfield;;;[];;;;text;t2_32p182pb;False;False;[];;Ok so the whole Sakura thing stems from her relationship to Naruto and Sasuke, the most powerful characters in the series, and so compare to them she's pretty weak, but in retrospect, she's really powerful as a medical nin;False;False;;;;1610219077;;False;{};giojks7;False;t3_ktx21k;False;True;t3_ktx21k;/r/anime/comments/ktx21k/why_do_people_say_sakura_is_useless_and_people/giojks7/;1610259538;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Wolfe244;;;[];;;;text;t2_yjsbn;False;False;[];;She does almost nothing in the story;False;False;;;;1610219306;;False;{};giok2e6;False;t3_ktx21k;False;False;t3_ktx21k;/r/anime/comments/ktx21k/why_do_people_say_sakura_is_useless_and_people/giok2e6/;1610259810;11;True;False;anime;t5_2qh22;;0;[]; -[];;;CT_BINO;;MAL;[];;https://myanimelist.net/profile/CT_BINO;dark;text;t2_pa5vv;False;False;[];;"2011 I guess. Madoka, Steins;Gate, Idolmaster, Chihaya, HxH, Nichijou, Gintama´, Usagi Drop, Natsume, Mawaru Penguindrum, Yuru Yuri and a lot others.";False;False;;;;1610219543;;False;{};giokkee;False;t3_ktwy3i;False;False;t3_ktwy3i;/r/anime/comments/ktwy3i/looking_at_mal_or_one_of_the_sites_what_year_do/giokkee/;1610260087;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackheart595;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Blackheart595/;light;text;t2_l0756;False;False;[];;"Not having seen Shippuuden, it's really the story of Naruto and Sasuke. Sakura is in their team, but remove her from the show and there's barely anything that needs even just slight adjustments for that change. - -That being said I still wouldn't call her useless, but I can get where the sentiment comes from.";False;False;;;;1610219773;;False;{};giol1wf;False;t3_ktx21k;False;True;t3_ktx21k;/r/anime/comments/ktx21k/why_do_people_say_sakura_is_useless_and_people/giol1wf/;1610260358;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;"I had fun in 2014 because of stuff like: - -Kill la kill - -Parasyte - -Seven deadly sins - -Sao 2 - -Tokyo Goul - -No Game No Life - -Hunter x Hunter 2011 (specifically the chimera ant arc that year) - -Jojo’s bizarre adventure part 3 - -Rage of Bahamut: Genesis - -Space Dandy";False;False;;;;1610220032;;False;{};giollog;False;t3_ktwy3i;False;False;t3_ktwy3i;/r/anime/comments/ktwy3i/looking_at_mal_or_one_of_the_sites_what_year_do/giollog/;1610260663;4;True;False;anime;t5_2qh22;;0;[]; -[];;;kotomeha;;;[];;;;text;t2_14taky;False;False;[];;2018 was pretty good. Fall season alone was pretty stacked.;False;False;;;;1610220073;;False;{};giolooz;False;t3_ktwy3i;False;True;t3_ktwy3i;/r/anime/comments/ktwy3i/looking_at_mal_or_one_of_the_sites_what_year_do/giolooz/;1610260710;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;"1998 we seen the start of: - -Cowboy bebop - -Trigun - -Cardcaptor Sakura - -Yugioh - -Initial D - -Serial experiments lain";False;False;;;;1610220169;;False;{};giolw4k;False;t3_ktwy3i;False;False;t3_ktwy3i;/r/anime/comments/ktwy3i/looking_at_mal_or_one_of_the_sites_what_year_do/giolw4k/;1610260838;8;True;False;anime;t5_2qh22;;0;[]; -[];;;jnd3r;;MAL;[];;https://myanimelist.net/profile/jnd3r;dark;text;t2_12gd36;False;False;[];;Omg I fucking loved this first episode. I laughed, i got hyped and it has pretty boys and cray cray villains. The animation looked beautiful, too.;False;False;;;;1610220209;;False;{};giolzd1;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giolzd1/;1610260893;118;True;False;anime;t5_2qh22;;0;[]; -[];;;jeffweeking;;;[];;;;text;t2_9yqfl;False;False;[];;Loved the sequence once Langa figured out everything. Definitely looking forward to this on Saturdays now. ED was great too;False;False;;;;1610220361;;False;{};giomb8l;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giomb8l/;1610261077;79;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;True;[];;"The eyecatches are going to be really funny each week. - -This project looks so cool and fun. It's good to have Bones working an original skateboard anime.";False;False;;;;1610220474;;1610222721.0;{};giomjoy;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giomjoy/;1610261224;27;True;False;anime;t5_2qh22;;0;[]; -[];;;BlakeTheViper;;;[];;;;text;t2_171tks;False;False;[];;Bones is definitely not slacking with the character animation. Every shot is just so full of life. This series is gonna be so much fun.;False;False;;;;1610220582;;False;{};giomry7;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giomry7/;1610261365;61;True;False;anime;t5_2qh22;;0;[]; -[];;;PreludeToHell;;;[];;;;text;t2_yec5f;False;False;[];;It looks gorgeous and I love Langa's design. Fun first episode I expect a lot of craziness every week.;False;False;;;;1610220636;;False;{};giomwbt;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giomwbt/;1610261431;29;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;"That was an amazing start. The characters are fun, the art-style is great, and the commercial animations were awesome. I especially liked the snow animation. - -Snowboarding anime when?";False;False;;;;1610220695;;False;{};gion0yp;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gion0yp/;1610261518;30;True;False;anime;t5_2qh22;;0;[]; -[];;;BlakeTheViper;;;[];;;;text;t2_171tks;False;False;[];;The fact that the ED is just the characters failing in spectacular ways captures the culture of skating so well. Skaters hurt themselves so much trying to do a big new trick and it’s a fun space to show the characters in.;False;False;;;;1610220766;;1610222614.0;{};gion6ez;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gion6ez/;1610261601;109;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"Bones should do an anime adaptation of SSX3. Three seasons for each peak and have Mac as the MC. - -The animation is so nice. It makes me want an SSX anime even more. It would be the first snowboarding anime too. - -The game has anime art too as unlockables.";False;False;;;;1610220789;;1610220993.0;{};gion88w;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gion88w/;1610261627;8;True;False;anime;t5_2qh22;;0;[]; -[];;;danguelo;;;[];;;;text;t2_14e059;False;False;[];;You can delete her from the series and nothing changes;False;False;;;;1610220813;;False;{};giona7n;False;t3_ktx21k;False;False;t3_ktx21k;/r/anime/comments/ktx21k/why_do_people_say_sakura_is_useless_and_people/giona7n/;1610261657;10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610220833;;False;{};gionbss;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gionbss/;1610261680;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;Pikagreg;;MAL;[];;http://myanimelist.net/animelist/Pikagreg;dark;text;t2_5qs90;False;False;[];;SK8 is like himbo Fast and the Furious with the cute moments of Banana Fish and I am all for it.;False;False;;;;1610220875;;False;{};gionf5k;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gionf5k/;1610261730;54;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;"Good opening episode... love the Fennic Fox pet in the show... so I'm in. - -Although the first school shot is very ""GUESS THE PROTAGONIST!""... - -Girl with brown hair, guy with brown fuzzy hair... Red ""Tyson from Beyblade"" Hair with Bandana and not really in the school uniform... blue hair with a look that he's not all in the same world as everyone else.";False;False;;;;1610220881;;False;{};gionfmw;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gionfmw/;1610261738;38;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;">Snowboarding anime when? - -Hopefully animated by Bones. An adaptation of SSX 3 would be cool.";False;False;;;;1610220885;;False;{};gionfx1;False;t3_ktxcly;False;False;t1_gion0yp;/r/anime/comments/ktxcly/sk_episode_1_discussion/gionfx1/;1610261742;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Jon_Anime;;;[];;;;text;t2_1h5qs34h;False;False;[];;"Director: Ok, so how much cool and hot you want the anime to be? - -Production committee: Yes.";False;False;;;;1610220892;;False;{};giongil;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giongil/;1610261751;160;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;SSX was the best! Some of those courses were absolutely bonkers just like S.;False;False;;;;1610220920;;False;{};gionio0;False;t3_ktxcly;False;False;t1_gion88w;/r/anime/comments/ktxcly/sk_episode_1_discussion/gionio0/;1610261782;4;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;They must not be aware of other sports by everything he does.;False;False;;;;1610220934;;False;{};gionjol;False;t3_ktxcly;False;False;t1_giomb8l;/r/anime/comments/ktxcly/sk_episode_1_discussion/gionjol/;1610261798;11;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"Such a good game and it had anime art too as unlockables so they could use that. - ->Some of those courses were absolutely bonkers - -My favourite was Snow Jam.";False;False;;;;1610220971;;False;{};gionmgi;False;t3_ktxcly;False;False;t1_gionio0;/r/anime/comments/ktxcly/sk_episode_1_discussion/gionmgi/;1610261840;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;"I do wonder if there will be a snowboarding episode in the show... - -Although extreme sports are sort of very few and far between at the moment... more regular sports.";False;False;;;;1610221034;;False;{};gionr8h;False;t3_ktxcly;False;False;t1_gion88w;/r/anime/comments/ktxcly/sk_episode_1_discussion/gionr8h/;1610261912;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KrazyBean94;;;[];;;;text;t2_110dr6;False;False;[];;"Khun Aguero Agnes skateboarding? Lets GOOOO! - -I've always wanted an Air Gear anime reboot, so having a show like this makes me super happy. Bones flexing once again.";False;False;;;;1610221195;;False;{};gioo375;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioo375/;1610262111;10;True;False;anime;t5_2qh22;;0;[]; -[];;;HereticalAegis;;;[];;;;text;t2_6xeubalv;False;False;[];;Leave it to BONES to get someone like me interested in a skating show. Not a fan of sports shows in general, but this is so fucking cool.;False;False;;;;1610221235;;False;{};gioo681;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioo681/;1610262157;88;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"[Truly Canadian.](https://i.imgur.com/pHHGfWg.png) - -ED song is soo good! - -And anime itself was pretty fun, looking forward to more!";False;False;;;;1610221449;;False;{};gioolvi;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioolvi/;1610262405;58;True;False;anime;t5_2qh22;;0;[]; -[];;;sciencebottle;;;[];;;;text;t2_3a8pxec0;False;False;[];;"Because Kishimoto struggles with writing female characters. So Sakura was set up from the beginning as only really having her crush on Sasuke, and then inevitably falling behind because Sasuke and Naruto are of course Very Special and have essentially godlike powers. That, and lot of people self insert with Naruto and felt personally offended when she refused his affection. Honestly now, it's less about her actually being useless (because she isn't) and more about people just being frustrated with her for a variety of not always so great reasons and then communicating it as her being 'useless'. - -I've been following naruto since it started airing and the reasons as to why people hate Sakura have morphed so much over the years. I think she's fine as she is now. She grew and got stronger. There was no way she was ever going to match Naruto and Sasuke with the way Kishimoto set things up. - -If anything, I actually like her a lot more than some of the other characters- I prefer watching a character with real grating flaws get their development in due time. - -^(also people she was literally 10-11 years old when she had her annoying crush on Sasuke for fucks sake she was TEN of course she was irritating)";False;False;;;;1610221472;;False;{};gioonkc;False;t3_ktx21k;False;True;t3_ktx21k;/r/anime/comments/ktx21k/why_do_people_say_sakura_is_useless_and_people/gioonkc/;1610262433;1;True;False;anime;t5_2qh22;;0;[]; -[];;;realrimurutempest;;;[];;;;text;t2_4bauklbm;False;False;[];;The red blood cell girl that rolled the steroid there is too pure for this world 🥺;False;False;;;;1610221516;;False;{};giooqvo;False;t3_ktwrnr;False;False;t3_ktwrnr;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/giooqvo/;1610262488;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;True;[];;We even had Dio, but instead of being calm, he was having a blast with Beethoven in the background.;False;False;;;;1610221532;;1610222556.0;{};gioos2q;False;t3_ktxcly;False;False;t1_giolzd1;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioos2q/;1610262507;72;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;Weak!;False;False;;;;1610221590;;False;{};gioowb2;False;t3_ktxcly;False;False;t1_gionbss;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioowb2/;1610262572;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Superfight10;;;[];;;;text;t2_jnsf8;False;False;[];;"That guy does have some Dio vibes to him, even has his Voice actor as well. - -Looking forward to more of him.";False;False;;;;1610221769;;False;{};giop9nk;False;t3_ktxcly;False;False;t1_gioos2q;/r/anime/comments/ktxcly/sk_episode_1_discussion/giop9nk/;1610262772;30;True;False;anime;t5_2qh22;;0;[]; -[];;;jslice4ever;;;[];;;;text;t2_2wvi51tm;False;False;[];;Bones not slacking whatsoever when it comes to the animation in this show. Definitely gonna be one of my favorites of the season.;False;False;;;;1610221823;;False;{};giopdnp;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giopdnp/;1610262835;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Easy2013_;;;[];;;;text;t2_9phh2w67;False;False;[];;Why do u need my email;False;False;;;;1610221991;;False;{};gioppo0;False;t3_kty0cx;False;True;t3_kty0cx;/r/anime/comments/kty0cx/could_you_fill_out_this_survey_on_animation/gioppo0/;1610263026;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Falvey11;;;[];;;;text;t2_4ynbp28t;False;False;[];;Hey it says I need permission;False;False;;;;1610222053;;False;{};giopu23;False;t3_kty0cx;False;True;t3_kty0cx;/r/anime/comments/kty0cx/could_you_fill_out_this_survey_on_animation/giopu23/;1610263093;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NobodyDuck;;;[];;;;text;t2_3e8xq8ne;False;False;[];;It should be working now;False;False;;;;1610222166;;False;{};gioq2db;True;t3_kty0cx;False;True;t1_gioppo0;/r/anime/comments/kty0cx/could_you_fill_out_this_survey_on_animation/gioq2db/;1610263217;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;https://www.reddit.com/r/anime/comments/krpmqj/yakusoku_no_neverland_season_2_episode_1/?depth=6;False;False;;;;1610222179;;False;{};gioq3a6;False;t3_kty1yz;False;True;t3_kty1yz;/r/anime/comments/kty1yz/promised_neverland_seasone_2_ep1_discussion/gioq3a6/;1610263231;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NobodyDuck;;;[];;;;text;t2_3e8xq8ne;False;False;[];;I have fixed the problem i think;False;False;;;;1610222179;;False;{};gioq3c9;True;t3_kty0cx;False;True;t1_giopu23;/r/anime/comments/kty0cx/could_you_fill_out_this_survey_on_animation/gioq3c9/;1610263231;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cold_Rock123;;;[];;;;text;t2_8cxw9w0b;False;False;[];;Ok i delete this post;False;False;;;;1610222224;;False;{};gioq6o2;False;t3_kty1yz;False;True;t1_gioq3a6;/r/anime/comments/kty1yz/promised_neverland_seasone_2_ep1_discussion/gioq6o2/;1610263280;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;"Holy fuck what a first episode this was! This is already pretty much expected with Bones but goddamn the animation of this just looks so fuck smooth and pretty! Like I was already sold with that opening scene [with that tracking shot of Reki doing simple tricks](https://i.imgur.com/GHjKX6t.png) on an empty street! But then they just had to flex even more with the Tokyo Drift-style [downhill skateboard races!](https://i.imgur.com/9LZq5os.png) And that was only the first 3 minutes of the episode! - -As for the rest of the episode we get introduced to our two main characters. Reki, [an enthusiastic skater](https://i.imgur.com/jUCPJLh.png) who is willing to drag anyone into his hobby and Langa, [a half-canadian/half-japanese transfer student](https://i.imgur.com/yj2o1EK.png) who gets dragged by Reki into the world of [super secret underground skateboard racing called ""S""](https://i.imgur.com/ss5aGx1.png) just because he needed a part-time job. - -The real shit comes at the third act though where Langa ends up skating for their client. My first thought was the same as everyone in the show. [Why the fuck is this dumbass strapping himself to the board?](https://i.imgur.com/Xggxash.png) Only when Langa was shown having flashbacks of going downhill on snow where things made sense! Langa is a fucking snowboarder! Of course he is! He's from Canada! [Motherfucker just did a revert carve](https://i.imgur.com/I9nY6TS.png) to make that sharp turn! I think that's what it's called, it's been a while since the last time I snowboarded. - -Anyway, that final race was just amazing! It's gonna be fun to see Langa apply snowboarding logic to skateboard but I hope he learns how to properly skate in the future! This show is definitely going on my watch list! I look forward to see how crazy the races and the skaters in this will get! - - -[And they really just had to confirm Langa is Canadian with the next episode preview banter xD](https://i.imgur.com/ujfu71a.png)";False;False;;;;1610222234;;1610223847.0;{};gioq7dl;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioq7dl/;1610263291;41;True;False;anime;t5_2qh22;;0;[]; -[];;;keithohara;;;[];;;;text;t2_gbzf7q;False;True;[];;God damn we have some good sports animes this season;False;False;;;;1610222273;;False;{};gioqa8n;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioqa8n/;1610263331;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;True;[];;"What's funny is the SK∞'s director is also the director behind the first two seasons of Free. - -They knew what they were doing.";False;False;;;;1610222378;;1610223503.0;{};gioqi3d;False;t3_ktxcly;False;False;t1_giongil;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioqi3d/;1610263450;84;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"The only problem here is that ""anime"" is more than one style. Ping Pong the Animation is different from is Panty and Stocking with Garterbelt, which is different from Evangelion.";False;False;;;;1610222475;;False;{};gioqp7z;False;t3_kty0cx;False;True;t3_kty0cx;/r/anime/comments/kty0cx/could_you_fill_out_this_survey_on_animation/gioqp7z/;1610263553;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Arnie15;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Arunato/;light;text;t2_dwsfk;False;False;[];;I don't care what anyone says, for me the title is Skinfinity;False;False;;;;1610222476;;False;{};gioqpbp;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioqpbp/;1610263554;37;True;False;anime;t5_2qh22;;0;[]; -[];;;Falvey11;;;[];;;;text;t2_4ynbp28t;False;False;[];;Did it it’s not the best but I tried;False;False;;;;1610222503;;False;{};gioqraf;False;t3_kty0cx;False;True;t3_kty0cx;/r/anime/comments/kty0cx/could_you_fill_out_this_survey_on_animation/gioqraf/;1610263582;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"[Finally some representation in anime!!](https://i.imgur.com/jzM1Q46.jpg) - -Did not expect this to be as good as it was wow, maybe best show of the season for me so far!";False;False;;;;1610222513;;False;{};gioqs14;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioqs14/;1610263593;56;True;False;anime;t5_2qh22;;0;[]; -[];;;NobodyDuck;;;[];;;;text;t2_3e8xq8ne;False;False;[];;I realize that but when i am said anime i meant less of different styles of different shows and more of what all the shows have in common and things you can find in the genre as a whole;False;False;;;;1610222624;;False;{};gioqzzm;True;t3_kty0cx;False;True;t1_gioqp7z;/r/anime/comments/kty0cx/could_you_fill_out_this_survey_on_animation/gioqzzm/;1610263710;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"> [Truly Canadian.](https://i.imgur.com/xUmq3lD.jpg) - -Fixed for you.";False;False;;;;1610222629;;False;{};gior0cf;False;t3_ktxcly;False;False;t1_gioolvi;/r/anime/comments/ktxcly/sk_episode_1_discussion/gior0cf/;1610263716;36;True;False;anime;t5_2qh22;;0;[]; -[];;;notathrowaway75;;MAL;[];;https://myanimelist.net/profile/notathrowaway75;dark;text;t2_fomut;False;False;[];;"> pretty boys - -He was a sk8ter boy she said see ya later boy";False;False;;;;1610222652;;False;{};gior1zy;False;t3_ktxcly;False;False;t1_giolzd1;/r/anime/comments/ktxcly/sk_episode_1_discussion/gior1zy/;1610263741;37;True;False;anime;t5_2qh22;;0;[]; -[];;;CringeKage222;;;[];;;;text;t2_2v8v29g9;False;False;[];;People hate the boruto anime because it's a huge filler were nothing happens, it adapted 15 chapters in 180 episodes so far for fuck sake;False;False;;;;1610222673;;False;{};gior3j2;False;t3_ktx21k;False;True;t3_ktx21k;/r/anime/comments/ktx21k/why_do_people_say_sakura_is_useless_and_people/gior3j2/;1610263764;3;True;False;anime;t5_2qh22;;0;[]; -[];;;YxngWally;;;[];;;;text;t2_88sip7lb;False;False;[];;Yeah but there is some anime canon also, but so much filler😔. The next 4 episodes is 4 manga chapters each.;False;False;;;;1610222765;;False;{};giora9s;True;t3_ktx21k;False;False;t1_gior3j2;/r/anime/comments/ktx21k/why_do_people_say_sakura_is_useless_and_people/giora9s/;1610263876;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi WilliamJWags, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610222782;moderator;False;{};giorbkp;False;t3_ktya3r;False;True;t3_ktya3r;/r/anime/comments/ktya3r/what_anime_platform_to_use/giorbkp/;1610263898;1;False;False;anime;t5_2qh22;;0;[]; -[];;;bluejaysart;;;[];;;;text;t2_2qhy7ae8;False;False;[];;"One of the few brand new anime I'm watching this season alongside the sequels, and it did not disappoint! Love the contrast of the world between day and night, and how vibrant and spectacular the skateboarding world looks. What a strong introduction for an episode. - - -Also, was that Dio's voice I heard briefly during the episode? I'm sure Koyasu will bring great flair to the character!";False;False;;;;1610222808;;False;{};giordj5;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giordj5/;1610263930;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Trublu_Swablu;;;[];;;;text;t2_5v0zq5t1;False;False;[];;Omg I thought the same thing when I watched Kotoura-San. And I keep feeling bad for her through the first few episodes. There is comedy later on but I didn’t think the show would be so “dark” based on the poster art.;False;False;;;;1610222819;;False;{};giorede;False;t3_kty7w1;False;True;t3_kty7w1;/r/anime/comments/kty7w1/i_just_got_done_watching_episode_1_of_kotourasan/giorede/;1610263944;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FuneralThrowAway14;;;[];;;;text;t2_2ry4anu9;False;False;[];;"Legit, the whole show just upset me more than it made me laugh. I just can't get into it. Like, I appreciate the sentiment it's trying but then... gawd, stuff I can't say out loud. There's stuff that just makes me keep going ""WHY!?!?!?!""";False;False;;;;1610222834;;False;{};giorfe8;False;t3_kty7w1;False;True;t3_kty7w1;/r/anime/comments/kty7w1/i_just_got_done_watching_episode_1_of_kotourasan/giorfe8/;1610263961;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610222862;;False;{};giorhd8;False;t3_ktxcly;False;True;t1_gioowb2;/r/anime/comments/ktxcly/sk_episode_1_discussion/giorhd8/;1610263991;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;CelesteRed;;;[];;;;text;t2_461p0jql;False;True;[];;"That was incredible!! They nailed the animation, pure eye candy and god that episode was hype! I was jumping in my seat with excitement!! - -The dynamic between the two MCs is super good too! I love the whole ice and fire opposites thing they have going on, and the show is just so colorful and exciting in general! - -If AoT didn't exist this would easily have my vote for the best first episode of the season, pure greatness. I loved it! I'm really rooting for this show to be great all the way to the end because of how hooked I am on episode one alone!";False;False;;;;1610222880;;False;{};giorion;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giorion/;1610264012;7;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;I do wonder how easy it'd be to transfer skills between Snowboard and Skateboard... he admits he forgot he had tyres to consider when he tried to corner...;False;False;;;;1610222911;;False;{};giorkzm;False;t3_ktxcly;False;False;t1_gioq7dl;/r/anime/comments/ktxcly/sk_episode_1_discussion/giorkzm/;1610264049;13;True;False;anime;t5_2qh22;;0;[]; -[];;;YxngWally;;;[];;;;text;t2_88sip7lb;False;False;[];;"In the movies than kishimoto doesn't write, she is stronger and more useful than naruto for the first half of the movie. But then naruto being the mc gets a massive boost and saves the day with rasengan. Happens in all the part 1 movies and some of shippuden movies and she doesn't need any help taking down the enemy in 1v1. - -All the female characters are kinda useless.";False;False;;;;1610222914;;False;{};giorl6w;True;t3_ktx21k;False;True;t1_gioonkc;/r/anime/comments/ktx21k/why_do_people_say_sakura_is_useless_and_people/giorl6w/;1610264052;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CringeKage222;;;[];;;;text;t2_2v8v29g9;False;False;[];;">Yeah but there is some anime canon - -It's filler that doesn't fit in the timeline at all and also mostly garbage - - -> The next 4 episodes is 4 manga chapters each - -It will probably be more given how they are starting to adapt the ao arc (which is basically the start of the plot)";False;False;;;;1610222930;;False;{};giormdm;False;t3_ktx21k;False;True;t1_giora9s;/r/anime/comments/ktx21k/why_do_people_say_sakura_is_useless_and_people/giormdm/;1610264072;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Funimation is good enough if you are trying to stick to legal means, you can also use crunchyroll for animes that aren't available in funi.;False;False;;;;1610222936;;False;{};giormrq;False;t3_ktya3r;False;False;t3_ktya3r;/r/anime/comments/ktya3r/what_anime_platform_to_use/giormrq/;1610264078;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Cold_Rock123, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610222963;moderator;False;{};gioronp;False;t3_ktyc7w;False;True;t3_ktyc7w;/r/anime/comments/ktyc7w/i_am_looking_for_anime_movie_to_wachwhats_your/gioronp/;1610264110;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610222972;;1610227405.0;{};giorp96;False;t3_kty0cx;False;True;t3_kty0cx;/r/anime/comments/kty0cx/could_you_fill_out_this_survey_on_animation/giorp96/;1610264121;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WilliamJWags;;;[];;;;text;t2_42wjzdjj;False;False;[];;Thx;False;False;;;;1610222986;;False;{};giorqay;True;t3_ktya3r;False;True;t1_giormrq;/r/anime/comments/ktya3r/what_anime_platform_to_use/giorqay/;1610264137;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;aachi and ssipak;False;False;;;;1610223010;;False;{};giors0t;False;t3_ktyc7w;False;True;t3_ktyc7w;/r/anime/comments/ktyc7w/i_am_looking_for_anime_movie_to_wachwhats_your/giors0t/;1610264164;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"[](#taigasigh) - -Not even gay, just enjoy good romance and don't care between who! - -Edit: Okay, I lied, I am picky and do care between who... but very rarely depends on the gender.";False;False;;;;1610223045;;1610223258.0;{};gioruht;False;t3_ktxcly;False;False;t1_giorhd8;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioruht/;1610264202;11;True;False;anime;t5_2qh22;;0;[]; -[];;;YxngWally;;;[];;;;text;t2_88sip7lb;False;False;[];;Yeah I can't see how they can fit in filler until after Kawaki is brought to Konoha. So I think we can get like 10 episodes of manga canon. Max;False;False;;;;1610223088;;False;{};giorxo7;True;t3_ktx21k;False;True;t1_giormdm;/r/anime/comments/ktx21k/why_do_people_say_sakura_is_useless_and_people/giorxo7/;1610264253;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610223103;;False;{};gioryth;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioryth/;1610264273;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;For the dynamic with two of the characters, which aren't even that funny;False;False;;;;1610223151;;False;{};gios2b8;False;t3_kty7w1;False;True;t3_kty7w1;/r/anime/comments/kty7w1/i_just_got_done_watching_episode_1_of_kotourasan/gios2b8/;1610264329;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Grave of fire flies, I want to eat your pancreas, maquia, some other ghilbi movies, if you are looking for action then, promare and sword of the stranger, if you are looking for psychological then ghost in the shell, perfect blue, paprika;False;False;;;;1610223204;;False;{};gios6h8;False;t3_ktyc7w;False;False;t3_ktyc7w;/r/anime/comments/ktyc7w/i_am_looking_for_anime_movie_to_wachwhats_your/gios6h8/;1610264395;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CringeKage222;;;[];;;;text;t2_2v8v29g9;False;False;[];;I can totally see like 100 filler episodes in the 6 mouths time skip we got after naruto adopted kawaki;False;False;;;;1610223255;;False;{};giosagx;False;t3_ktx21k;False;True;t1_giorxo7;/r/anime/comments/ktx21k/why_do_people_say_sakura_is_useless_and_people/giosagx/;1610264456;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610223281;;False;{};gioscft;False;t3_ktxcly;False;True;t1_giomry7;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioscft/;1610264486;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;Spirited Away;False;False;;;;1610223379;;False;{};gioskoa;False;t3_ktyc7w;False;True;t3_ktyc7w;/r/anime/comments/ktyc7w/i_am_looking_for_anime_movie_to_wachwhats_your/gioskoa/;1610264609;1;True;False;anime;t5_2qh22;;0;[]; -[];;;asscrackrash;;;[];;;;text;t2_9jhv8y1m;False;False;[];;utsumi's also the director behind banana fish.;False;False;;;;1610223402;;False;{};giosni4;False;t3_ktxcly;False;True;t1_gioqi3d;/r/anime/comments/ktxcly/sk_episode_1_discussion/giosni4/;1610264651;1;True;False;anime;t5_2qh22;;0;[]; -[];;;asscrackrash;;;[];;;;text;t2_9jhv8y1m;False;False;[];;utsumi's also the director behind banana fish.;False;False;;;;1610223402;;False;{};gioso1t;False;t3_ktxcly;False;False;t1_gioqi3d;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioso1t/;1610264660;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cojoB_;;;[];;;;text;t2_27b35u6d;False;False;[];;Really like how they captured the grungieness of skate culture. Not sure how it is in japan vs the us but still very excited for this show;False;False;;;;1610223441;;False;{};giosqlt;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giosqlt/;1610264699;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;If you’re more comfortable with dubs, then stick with Funimation. It has the largest dub library out of all the legal sites.;False;False;;;;1610223460;;False;{};gioss0h;False;t3_ktya3r;False;True;t3_ktya3r;/r/anime/comments/ktya3r/what_anime_platform_to_use/gioss0h/;1610264721;3;True;False;anime;t5_2qh22;;0;[]; -[];;;asscrackrash;;;[];;;;text;t2_9jhv8y1m;False;False;[];;look at him, he is afraid of getting infected by the gay.;False;False;;;;1610223492;;False;{};giosuac;False;t3_ktxcly;False;False;t1_gionbss;/r/anime/comments/ktxcly/sk_episode_1_discussion/giosuac/;1610264754;5;True;False;anime;t5_2qh22;;0;[]; -[];;;NightCupcake;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/NoodleGalaxy;light;text;t2_77fhp1wn;False;False;[];;Princess Mononoke, Akira, Nausicää of the valley of the wind;False;False;;;;1610223523;;False;{};gioswhe;False;t3_ktyc7w;False;True;t3_ktyc7w;/r/anime/comments/ktyc7w/i_am_looking_for_anime_movie_to_wachwhats_your/gioswhe/;1610264787;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OneTrueBab;;;[];;;;text;t2_13e1iq;False;False;[];;Skateboard sakuga is something I didn't know I was missing in my life, and this show has finally filled that void;False;False;;;;1610223543;;False;{};giosxuw;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giosxuw/;1610264808;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"I am indeed an ignorant foreigner making a dumb joke. - -[](#teehee)";False;False;;;;1610223570;;False;{};gioszu8;False;t3_ktxcly;False;False;t1_gior0cf;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioszu8/;1610264837;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Cold_Rock123;;;[];;;;text;t2_8cxw9w0b;False;False;[];;I watched i forgot;False;False;;;;1610223639;;False;{};giot4ta;True;t3_ktyc7w;False;True;t1_gioskoa;/r/anime/comments/ktyc7w/i_am_looking_for_anime_movie_to_wachwhats_your/giot4ta/;1610264912;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;Already forgetting our boy JJ???;False;False;;;;1610223649;;False;{};giot5ig;False;t3_ktxcly;False;False;t1_gioqs14;/r/anime/comments/ktxcly/sk_episode_1_discussion/giot5ig/;1610264923;42;True;False;anime;t5_2qh22;;0;[]; -[];;;WilliamJWags;;;[];;;;text;t2_42wjzdjj;False;False;[];;Ok should I get a crunchyroll acc and as well;False;False;;;;1610223673;;False;{};giot77a;True;t3_ktya3r;False;True;t1_gioss0h;/r/anime/comments/ktya3r/what_anime_platform_to_use/giot77a/;1610264948;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Wolf Children - -Howl's Moving Castle";False;False;;;;1610223676;;1610224236.0;{};giot7f6;False;t3_ktyc7w;False;True;t3_ktyc7w;/r/anime/comments/ktyc7w/i_am_looking_for_anime_movie_to_wachwhats_your/giot7f6/;1610264952;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;They did say something like that, didnt they?;False;False;;;;1610223678;;False;{};giot7ky;False;t3_ktxcly;False;False;t1_gioqpbp;/r/anime/comments/ktxcly/sk_episode_1_discussion/giot7ky/;1610264954;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Cold_Rock123;;;[];;;;text;t2_8cxw9w0b;False;False;[];;I watched spirited away;False;False;;;;1610223711;;False;{};giot9yi;True;t3_ktyc7w;False;True;t1_giot7f6;/r/anime/comments/ktyc7w/i_am_looking_for_anime_movie_to_wachwhats_your/giot9yi/;1610264988;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"JJ doesn't eat poutine though! - -[](#shirayukieavesdrop)";False;False;;;;1610223730;;False;{};giotbd7;False;t3_ktxcly;False;False;t1_giot5ig;/r/anime/comments/ktxcly/sk_episode_1_discussion/giotbd7/;1610265009;16;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;Okay, check out the other two I mentioned. Sorry, I didn't know because you did'n't list it.;False;False;;;;1610223760;;False;{};giotdgt;False;t3_ktyc7w;False;True;t1_giot9yi;/r/anime/comments/ktyc7w/i_am_looking_for_anime_movie_to_wachwhats_your/giotdgt/;1610265040;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RedsonOfKyrypton;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RedsonofMelomarc;light;text;t2_5d1b60l;False;False;[];;"Netflix -Crunchyroll";False;False;;;;1610223877;;False;{};giotlrn;False;t3_ktya3r;False;True;t3_ktya3r;/r/anime/comments/ktya3r/what_anime_platform_to_use/giotlrn/;1610265163;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610223950;;False;{};giotr0c;False;t3_ktxcly;False;True;t1_giosuac;/r/anime/comments/ktxcly/sk_episode_1_discussion/giotr0c/;1610265238;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;JuiceMelon;;;[];;;;text;t2_8tagnvd;False;False;[];;If you like a casual anime you can try Summer wars, Bakemono no Ko, Ookami Kodomo no Ame to Yuki, and Toki o Kakeru Shoujo;False;False;;;;1610224132;;False;{};giou4kx;False;t3_ktyc7w;False;True;t3_ktyc7w;/r/anime/comments/ktyc7w/i_am_looking_for_anime_movie_to_wachwhats_your/giou4kx/;1610265441;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;"The [Kara no kyoukai](https://myanimelist.net/anime/2593/Kara_no_Kyoukai_1__Fukan_Fuukei) series. It’s done by ufotable (demon slayer and fate) and there’s about 8 movies I think - -[Sword of the stranger](https://myanimelist.net/anime/2418/Stranger__Mukou_Hadan) is also really good and has rather realistic fight choreography";False;False;;;;1610224161;;False;{};giou6ml;False;t3_ktyc7w;False;True;t3_ktyc7w;/r/anime/comments/ktyc7w/i_am_looking_for_anime_movie_to_wachwhats_your/giou6ml/;1610265470;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610224230;;False;{};gioubqg;False;t3_ktypf9;False;True;t3_ktypf9;/r/anime/comments/ktypf9/new_yandere_simulator_like_game/gioubqg/;1610265546;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NoDespair;;;[];;;;text;t2_11h1e0;False;False;[];;Really beautiful show;False;False;;;;1610224275;;False;{};gioueyw;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioueyw/;1610265593;12;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;Never forget JJ Style!;False;False;;;;1610224281;;False;{};gioufe4;False;t3_ktxcly;False;False;t1_giot5ig;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioufe4/;1610265599;29;True;False;anime;t5_2qh22;;0;[]; -[];;;asscrackrash;;;[];;;;text;t2_9jhv8y1m;False;False;[];;okay loser.;False;False;;;;1610224331;;False;{};giouj29;False;t3_ktxcly;False;True;t1_giotr0c;/r/anime/comments/ktxcly/sk_episode_1_discussion/giouj29/;1610265655;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lmfao_zedong;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;bloom into you season 2 when?;dark;text;t2_3j944fef;False;False;[];;I think I learned more watching this than from my first semester of freshman bio;False;False;;;;1610224339;;False;{};gioujoh;False;t3_ktwrnr;False;False;t3_ktwrnr;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/gioujoh/;1610265665;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Torque-A;;;[];;;;text;t2_ghmo2;False;False;[];;Many people have tried to make Yandere Simulator-likes. Many have failed. You can certainly try.;False;False;;;;1610224360;;False;{};gioul89;False;t3_ktypf9;False;True;t3_ktypf9;/r/anime/comments/ktypf9/new_yandere_simulator_like_game/gioul89/;1610265689;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DemonCyborg72;;;[];;;;text;t2_9l5ehk66;False;False;[];;This is beautiful stuff.;False;False;;;;1610224363;;False;{};gioulfv;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioulfv/;1610265693;5;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;Holy shit that was fucking amazing - from the soundtrack to the animation - everything was on another level.;False;False;;;;1610224387;;False;{};gioun66;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioun66/;1610265723;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;">, it adapted 15 chapters in 180 episodes so far for fuck sake - -Wtf?!";False;False;;;;1610224477;;False;{};gioutu2;False;t3_ktx21k;False;True;t1_gior3j2;/r/anime/comments/ktx21k/why_do_people_say_sakura_is_useless_and_people/gioutu2/;1610265829;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CringeKage222;;;[];;;;text;t2_2v8v29g9;False;False;[];;Well that's what happens when you start making a weekly anime out of a monthly manga while said manga only have 3 chapters;False;False;;;;1610224603;;False;{};giov3gf;False;t3_ktx21k;False;True;t1_gioutu2;/r/anime/comments/ktx21k/why_do_people_say_sakura_is_useless_and_people/giov3gf/;1610265978;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Godprime;;;[];;;;text;t2_dezxafd;False;False;[];;11 chapters not 3.;False;False;;;;1610224717;;False;{};giovcf2;False;t3_ktx21k;False;True;t1_giov3gf;/r/anime/comments/ktx21k/why_do_people_say_sakura_is_useless_and_people/giovcf2/;1610266112;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;Why even make it weekly then? Just do seasons it's much better;False;False;;;;1610224743;;False;{};giovegg;False;t3_ktx21k;False;True;t1_giov3gf;/r/anime/comments/ktx21k/why_do_people_say_sakura_is_useless_and_people/giovegg/;1610266141;1;True;False;anime;t5_2qh22;;0;[]; -[];;;voxane;;;[];;;;text;t2_3nxfnmto;False;False;[];;"inb4 ""sk8er boi"" AMV";False;False;;;;1610224769;;False;{};giovgbr;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giovgbr/;1610266170;19;True;False;anime;t5_2qh22;;0;[]; -[];;;CringeKage222;;;[];;;;text;t2_2v8v29g9;False;False;[];;One word, money;False;False;;;;1610224810;;False;{};giovjb4;False;t3_ktx21k;False;True;t1_giovegg;/r/anime/comments/ktx21k/why_do_people_say_sakura_is_useless_and_people/giovjb4/;1610266214;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610224826;;1610227389.0;{};giovkif;False;t3_ktywcu;False;True;t3_ktywcu;/r/anime/comments/ktywcu/was_the_word_pokemon_inspired_by_the_juralmon_of/giovkif/;1610266231;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Kingjester88;;;[];;;;text;t2_u7gmz;False;False;[];;Crunchyroll and when something isn't on Crunchyroll, I torrent it.;False;False;;;;1610224827;;False;{};giovkkc;False;t3_ktya3r;False;True;t3_ktya3r;/r/anime/comments/ktya3r/what_anime_platform_to_use/giovkkc/;1610266232;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BidoDog;;;[];;;;text;t2_3mthtvc;False;False;[];;Pokemon comes from Pocket Monsters;False;False;;;;1610224835;;False;{};giovl66;False;t3_ktywcu;False;True;t3_ktywcu;/r/anime/comments/ktywcu/was_the_word_pokemon_inspired_by_the_juralmon_of/giovl66/;1610266242;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;For what I'm seeing it's not giving much;False;False;;;;1610224862;;False;{};giovn4x;False;t3_ktx21k;False;True;t1_giovjb4;/r/anime/comments/ktx21k/why_do_people_say_sakura_is_useless_and_people/giovn4x/;1610266271;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CringeKage222;;;[];;;;text;t2_2v8v29g9;False;False;[];;I'm pretty sure the anime is mega popular in Japan;False;False;;;;1610224892;;False;{};giovpa4;False;t3_ktx21k;False;True;t1_giovn4x;/r/anime/comments/ktx21k/why_do_people_say_sakura_is_useless_and_people/giovpa4/;1610266304;2;True;False;anime;t5_2qh22;;0;[]; -[];;;winasta;;;[];;;;text;t2_pgljym5;False;False;[];;YES YES YES. i was checking myanimelist for new bones animes since it seemed like they were only focusing on my hero and i saw this show and it seemed interesting. so glad it delivered so far. but damn last season i had 6 animes that i watched(my biggest number ever) but this season could get me up to 10 or 15.;False;False;;;;1610224945;;False;{};giovt72;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giovt72/;1610266361;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610225275;;False;{};giowhm0;False;t3_ktwy3i;False;True;t3_ktwy3i;/r/anime/comments/ktwy3i/looking_at_mal_or_one_of_the_sites_what_year_do/giowhm0/;1610266730;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sneaky_42;;;[];;;;text;t2_4spbyunp;False;False;[];;That was pretty dope! The OP is probably my favorite of the season so far.;False;False;;;;1610225282;;False;{};giowi58;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giowi58/;1610266739;3;True;False;anime;t5_2qh22;;0;[]; -[];;;seventhpaw;;;[];;;;text;t2_b2v7h;False;False;[];;It was surprisingly good, I didn't have high expectations going in but was blown away by the humor and the real talk about emotional/cognitive dissonance.;False;False;;;;1610225290;;False;{};giowiq5;False;t3_ktytdr;False;False;t3_ktytdr;/r/anime/comments/ktytdr/i_think_silver_spoon_should_get_another_chance/giowiq5/;1610266748;4;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkFuzz;;MAL;[];;http://myanimelist.net/profile/DarkFuzz;dark;text;t2_dvv5i;False;True;[];;"[My Next Life as a Villainess: All Routes Lead to Doom](https://myanimelist.net/anime/38555/Otome_Game_no_Hametsu_Flag_shika_Nai_Akuyaku_Reijou_ni_Tensei_shiteshimatta?q=my%20next%20life&cat=anime) - -Not action oriented, like I think you want, but it fits your description to a T everywhere else.";False;False;;;;1610225300;;False;{};giowjha;False;t3_ktyy8v;False;True;t3_ktyy8v;/r/anime/comments/ktyy8v/are_there_any_mangaanime_where_the_mc_gets_sucked/giowjha/;1610266758;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Physicist_Dinosaur;;;[];;;;text;t2_4ven2u83;False;False;[];;Wow, this seems like a great idea;False;False;;;;1610225357;;False;{};giownk5;False;t3_ktyy8v;False;True;t3_ktyy8v;/r/anime/comments/ktyy8v/are_there_any_mangaanime_where_the_mc_gets_sucked/giownk5/;1610266817;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FrankSandCastle;;;[];;;;text;t2_11dhzjpy;False;False;[];;This just makes me want a snowboarding anime now.;False;False;;;;1610225376;;False;{};giowoxo;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giowoxo/;1610266838;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Turk1911;;;[];;;;text;t2_3c0y5cze;False;False;[];;I had that feeling watching Blast of Tempest too;False;False;;;;1610225418;;False;{};giowrzw;False;t3_ktyzmm;False;True;t3_ktyzmm;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/giowrzw/;1610266884;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sockbat25;;;[];;;;text;t2_n87bq;False;False;[];;DIO cosplaying as Lancer + Ozymandias (watchmen) who has once again adopted being vampire;False;False;;;;1610225469;;False;{};giowvro;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giowvro/;1610266940;8;True;False;anime;t5_2qh22;;0;[]; -[];;;tickywicky;;;[];;;;text;t2_8e8fsck1;False;False;[];;Another innocent soul about to be rattled by Re: Zero;False;False;;;;1610225492;;False;{};giowxbq;False;t3_ktyzmm;False;False;t3_ktyzmm;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/giowxbq/;1610266965;7;True;False;anime;t5_2qh22;;0;[]; -[];;;aniMayor;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aniMayor/;light;text;t2_oymny;False;True;[];;GoodPerson X Asshole, the true forbidden love;False;False;;;;1610225494;;False;{};giowxg8;False;t3_ktxcly;False;False;t1_gioruht;/r/anime/comments/ktxcly/sk_episode_1_discussion/giowxg8/;1610266966;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KadSamerew;;;[];;;;text;t2_171gd6;False;False;[];;"That.... That was... **really** over my expectations o\_o - -Fun and unexpected. Good animation and voice actors. - -Best surprise so far.";False;False;;;;1610225550;;False;{};giox1mf;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giox1mf/;1610267030;37;True;False;anime;t5_2qh22;;0;[]; -[];;;Turk1911;;;[];;;;text;t2_3c0y5cze;False;False;[];;I use VRV and funimation. Hulu is pretty good too;False;False;;;;1610225560;;False;{};giox2fz;False;t3_ktya3r;False;True;t3_ktya3r;/r/anime/comments/ktya3r/what_anime_platform_to_use/giox2fz/;1610267042;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Darksuper102;;;[];;;;text;t2_42j42myd;False;False;[];;I didn’t know much about it. But the more i watched, the more i became hooked. It felt realistic ish. The way the story was flowing and how they push out things that many may have been uncomfortable of but reassured them in the same way was amazing. It made me look over back to many things as well. That is why i just wish they remade or continued it to the finish line at least.;False;False;;;;1610225574;;False;{};giox3i4;True;t3_ktytdr;False;True;t1_giowiq5;/r/anime/comments/ktytdr/i_think_silver_spoon_should_get_another_chance/giox3i4/;1610267060;1;True;False;anime;t5_2qh22;;0;[]; -[];;;myrmonden;;;[];;;;text;t2_f0rs6;False;False;[];;"pretty boys doing UNDEGROUND SKATING - -I love Shadow, Joker on Bane Serum. - -Cherry blossom of course the anime is gonna have a pretty ninja boy. - -Seriously the best part of the anime by far is all the GYARUS of course its a huge amount of aesthetically pleasing ladies on the side at least....(why is there no cool yanki tomboy racer girl...god dammit). - -But yeah enjoyable first episode mostly just from its absurd moments, like when the real bad guy (obviously) appears doing a conductor musical performance while watching them skate lol. - -And as always in Anime if you wanna master A, first do B. Becoming the best skateboard racer is done by first being a snowboard racer, everyone knows that.";False;False;;;;1610225609;;False;{};giox69t;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giox69t/;1610267102;3;True;False;anime;t5_2qh22;;0;[]; -[];;;_Pinguino_;;skip7;[];;;dark;text;t2_8rggs9k7;False;False;[];;Mind Game;False;False;;;;1610225663;;False;{};gioxahw;False;t3_ktyc7w;False;True;t3_ktyc7w;/r/anime/comments/ktyc7w/i_am_looking_for_anime_movie_to_wachwhats_your/gioxahw/;1610267165;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Thebubumc;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Bub;light;text;t2_hrym7;False;False;[];;That was an incredible first episode, probably my favourite this season so far. Studio Bones is just incapable of disappointing me.;False;False;;;;1610225687;;False;{};gioxcdv;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioxcdv/;1610267194;7;True;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;It's not the same tbh;False;False;;;;1610225693;;False;{};gioxcs9;False;t3_ktyzmm;False;False;t3_ktyzmm;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/gioxcs9/;1610267200;7;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610225713;moderator;False;{};gioxebf;False;t3_ktz7uz;False;True;t3_ktz7uz;/r/anime/comments/ktz7uz/anyone_know_where_to_watch_the_actual_opening_to/gioxebf/;1610267222;1;False;False;anime;t5_2qh22;;0;[]; -[];;;sM92Bpb;;;[];;;;text;t2_ecl7n;False;False;[];;Thanks for reminding me about this. IIRC the anime sales weren't that great but the manga is finished and completely translated. At this point i doubt there will be a 3rd session so might as well read the manga.;False;False;;;;1610225816;;False;{};gioxlp6;False;t3_ktytdr;False;True;t3_ktytdr;/r/anime/comments/ktytdr/i_think_silver_spoon_should_get_another_chance/gioxlp6/;1610267339;3;True;False;anime;t5_2qh22;;0;[]; -[];;;aniMayor;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aniMayor/;light;text;t2_oymny;False;True;[];;"I had to laugh at the ostensibly-Canadian guy [having trouble saying the English loanword ""skateboard""](https://i.imgur.com/6UUij4k.png). Maybe his dad is militantly franco-Canadian and he never learned English or something. - -The maneuvers look really good, and the background art in some scenes is gorgeous. I really like how vivid and varied the details in the shop are. - -From the OP, it doesn't look like we'll get any women racers as secondary characters, but hopefully there are some girl characters that aren't just arm-candy-for-boys characters. It would be pretty ironic (in a tragic way) to depict skateboarding culture as a ""boys only"" club. - -The way the show is about skateboard *racing* but going full ham on the punk/counter-culture/etc aesthetics of the more general skating *lifestyle* (rather than sport) and puts a lot of emphasis into the tricks in the eyecatch and ED is interesting. It has the risk of becoming muddled... doing tricks doesn't generally help you go down a hill faster, after all, but it won't do to have the skateboarding theme of the show keep pulling in two different directions, either. I'm curious if and how they'll incorporate the tricks aspect into the show going forward, hopefully in some way that makes them a necessary feat for the characters and therefore they're rewarded for working through all the failures we see in the ED, rather than just being tossed into the middle of the races with no impact. - -All quibbles aside, really fun episode and the character dynamics seem like they'll be solid. Reminds me a lot of the SSX snowboarding games. - -Favourite line was Reki saying ""If I can make the best board and do my best skating..."" and instead of the follow-up being some cheesy feat crap like you often see he just thinks it'd be cool. Cool-ass skateboarding don't need no greater motivation than that it makes you happy.";False;False;;;;1610226220;;False;{};gioyfba;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioyfba/;1610267779;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;Rocket Power vibes from this, shit my Nickolodeon nostalgia hittin....;False;False;;;;1610226311;;False;{};gioyltp;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioyltp/;1610267883;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDampGod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheDampGod;light;text;t2_im4vi;False;False;[];;Funny, I was thinking of SSX Tricky when Langa did that slow-mo trick at the end. I could almost hear Run DMC as he was flying through the air. If this series does well, Bones should do a sequel where Langa teaches Reki snowboarding.;False;False;;;;1610226323;;False;{};gioymox;False;t3_ktxcly;False;False;t1_gion88w;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioymox/;1610267894;5;True;False;anime;t5_2qh22;;0;[]; -[];;;mywaifuisurmom;;;[];;;;text;t2_5dn3j2mn;False;False;[];;"not an expert, but - probably; try it and you'll see";False;False;;;;1610226344;;False;{};gioyo7w;False;t3_ktzeiu;False;True;t3_ktzeiu;/r/anime/comments/ktzeiu/possibility_of_creating_an_anime_from_scratch/gioyo7w/;1610267918;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BroYouDroppedTheKek;;;[];;;;text;t2_8cjbse7w;False;False;[];;I was here before people started hyping this up.;False;False;;;;1610226409;;False;{};gioyt0e;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioyt0e/;1610267990;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OfficialJinji;;;[];;;;text;t2_4vz0g8p0;False;False;[];;Like I do realise that making even just one episode of anime is a ridiculously daunting process if you want good results. But the bigger issue is probably coming up with a story good enough that people will deem it worthy of making into an anime.;False;False;;;;1610226433;;False;{};gioyunm;True;t3_ktzeiu;False;True;t1_gioyo7w;/r/anime/comments/ktzeiu/possibility_of_creating_an_anime_from_scratch/gioyunm/;1610268015;1;True;False;anime;t5_2qh22;;0;[]; -[];;;super457;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_5zafhwrd;False;False;[];;As a bio student thats basic but so damn good explanation.;False;False;;;;1610226457;;False;{};gioywfd;False;t3_ktwrnr;False;False;t3_ktwrnr;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/gioywfd/;1610268040;39;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;I just go by completed anime.;False;False;;;;1610226459;;False;{};gioywjp;False;t3_ktzf5g;False;False;t3_ktzf5g;/r/anime/comments/ktzf5g/how_do_you_count_anime_youve_seen/gioywjp/;1610268041;14;True;False;anime;t5_2qh22;;0;[]; -[];;;kittysprites;;;[];;;;text;t2_8m34fav1;False;False;[];;Id possible start with creating your story as a manga first. as most anime originate from manga. Plus its “easier” for one person to handle. Anime take a team of people to make happen and lots of funding! Do ur research! I think it would be fun!;False;False;;;;1610226469;;False;{};gioyxb2;False;t3_ktzeiu;False;True;t3_ktzeiu;/r/anime/comments/ktzeiu/possibility_of_creating_an_anime_from_scratch/gioyxb2/;1610268054;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rmTizi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/rmTizi;light;text;t2_5hqlk;False;False;[];;"So.... Initial D with skate boards... - -I'm in.";False;False;;;;1610226604;;False;{};gioz6y1;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioz6y1/;1610268206;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiro_Kai;;;[];;;;text;t2_bevm2wi;False;False;[];;"They literally transitioned from ""chill"" to ""hot"" moments the whole episode.";False;False;;;;1610226634;;False;{};gioz928;False;t3_ktxcly;False;False;t1_giongil;/r/anime/comments/ktxcly/sk_episode_1_discussion/gioz928/;1610268238;21;True;False;anime;t5_2qh22;;0;[]; -[];;;ahnm;;;[];;;;text;t2_zzdcy;False;False;[];;I love how they put almost everything into a 'explain like I'm 5' perspective.;False;False;;;;1610226636;;False;{};gioz97t;False;t3_ktwrnr;False;False;t1_gioywfd;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/gioz97t/;1610268240;38;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Oh boy, report back on episode 7, 13, 15, 18, pretty please.;False;False;;;;1610226685;;False;{};giozckh;False;t3_ktyzmm;False;False;t3_ktyzmm;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/giozckh/;1610268291;4;True;False;anime;t5_2qh22;;0;[]; -[];;;rlmurrhee;;skip7;[];;;dark;text;t2_9a8y9b5c;False;False;[];;will do. reply on this thread or make a new post?;False;False;;;;1610226818;;False;{};giozmiv;True;t3_ktyzmm;False;True;t1_giozckh;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/giozmiv/;1610268436;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;This, so not to spam.;False;False;;;;1610226858;;False;{};giozpqf;False;t3_ktyzmm;False;True;t1_giozmiv;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/giozpqf/;1610268483;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackheart595;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Blackheart595/;light;text;t2_l0756;False;False;[];;I vaguely recall someone making an anime on his own, taking 10 years to do so. I don't recall any further details though, but it seems to indicate that you can.;False;False;;;;1610226870;;False;{};giozqpg;False;t3_ktzeiu;False;True;t3_ktzeiu;/r/anime/comments/ktzeiu/possibility_of_creating_an_anime_from_scratch/giozqpg/;1610268499;1;True;False;anime;t5_2qh22;;0;[]; -[];;;91jumpstreet;;;[];;;;text;t2_88f7meh;False;False;[];;"Is it possible? - -Yeah - -Quality anime is expensive. I'm assuming you're talking about 20 mins, minimum. If you're not the artist, then you need to find one. If you're not a good storyteller, toy need to find one - -Basically you're gonna have to wear 3 hats. I would start small, make some 1-2 mins segments and see if people like it";False;False;;;;1610226914;;False;{};giozu6x;False;t3_ktzeiu;False;True;t3_ktzeiu;/r/anime/comments/ktzeiu/possibility_of_creating_an_anime_from_scratch/giozu6x/;1610268550;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mrsirgrape;;MAL;[];;http://myanimelist.net/profile/MrSirGrape;dark;text;t2_guqg3;False;False;[];;Kana Hanazawa screaming will never not be funny to me.;False;False;;;;1610226958;;False;{};giozxmq;False;t3_ktwrnr;False;False;t3_ktwrnr;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/giozxmq/;1610268603;36;True;False;anime;t5_2qh22;;0;[]; -[];;;hersonlaef;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/LLEENN;light;text;t2_pyvb1;False;False;[];;"Use MyAnimeList.net. I count by my list of completed series. - -Currently at 900-ish. I'm going for 1000 before the end of the year.";False;False;;;;1610226968;;False;{};giozyc8;False;t3_ktzf5g;False;False;t3_ktzf5g;/r/anime/comments/ktzf5g/how_do_you_count_anime_youve_seen/giozyc8/;1610268613;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Sir-Odin;;;[];;;;text;t2_909yanql;False;False;[];;I love this studio.;False;False;;;;1610227102;;False;{};gip09mu;False;t3_ktxcly;False;False;t1_gioo681;/r/anime/comments/ktxcly/sk_episode_1_discussion/gip09mu/;1610268779;22;True;False;anime;t5_2qh22;;0;[]; -[];;;JRavec;;;[];;;;text;t2_64fpcd54;False;False;[];;When i found about the My Anime List my anime count was already 1000+ anime watched now i have no clue how many anime i saw but probably between 1700 and 1900 and my manga count is probably nearing 3000.;False;False;;;;1610227112;;False;{};gip0agf;False;t3_ktzf5g;False;True;t3_ktzf5g;/r/anime/comments/ktzf5g/how_do_you_count_anime_youve_seen/gip0agf/;1610268791;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sir-Odin;;;[];;;;text;t2_909yanql;False;False;[];;That was a fun light episode, im all in.;False;False;;;;1610227129;;False;{};gip0bv8;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gip0bv8/;1610268812;4;True;False;anime;t5_2qh22;;0;[]; -[];;;mrv3;;;[];;;;text;t2_fe649;False;True;[];;"Director: Ok, so how much cool and hot you want the anime to be? - -Production committee: ∞ - -Director: I think I have a new idea for the name";False;False;;;;1610227130;;False;{};gip0by5;False;t3_ktxcly;False;False;t1_giongil;/r/anime/comments/ktxcly/sk_episode_1_discussion/gip0by5/;1610268813;49;True;False;anime;t5_2qh22;;0;[]; -[];;;kittysprites;;;[];;;;text;t2_8m34fav1;False;False;[];; very impressive! I seem to have a habit of starting anime and not finishing If im not FULLY invested. Ive seen around 100 but only finished like 30 🤣;False;False;;;;1610227210;;False;{};gip0ih1;True;t3_ktzf5g;False;True;t3_ktzf5g;/r/anime/comments/ktzf5g/how_do_you_count_anime_youve_seen/gip0ih1/;1610268910;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDampGod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheDampGod;light;text;t2_im4vi;False;False;[];;"The character designs are so good in this, even the minor and background characters had great looks. I hope the reoccur throughout the show, like the green haired gal and another girl with scale tattoos. - -The chemistry between the leads and the other big skaters feels good and loved the little short skits bordering where the ad break would be. In all this looks like it's going totally rad dude.";False;False;;;;1610227218;;False;{};gip0j4t;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gip0j4t/;1610268920;11;True;False;anime;t5_2qh22;;0;[]; -[];;;kittysprites;;;[];;;;text;t2_8m34fav1;False;False;[];;i will check this website out thankyou;False;False;;;;1610227239;;False;{};gip0kr8;True;t3_ktzf5g;False;True;t1_giozyc8;/r/anime/comments/ktzf5g/how_do_you_count_anime_youve_seen/gip0kr8/;1610268945;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sir-Odin;;;[];;;;text;t2_909yanql;False;False;[];;This is a good watch and i can already tell its gonna go under the radar for some.;False;False;;;;1610227297;;False;{};gip0p51;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gip0p51/;1610269013;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Darksuper102;;;[];;;;text;t2_42j42myd;False;False;[];;Sadly that is the truth. I will be searching for the manga to finish it up. But still pains me to see the anime adaptation halted the way it was.;False;False;;;;1610227298;;False;{};gip0paw;True;t3_ktytdr;False;True;t1_gioxlp6;/r/anime/comments/ktytdr/i_think_silver_spoon_should_get_another_chance/gip0paw/;1610269015;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kittysprites;;;[];;;;text;t2_8m34fav1;False;False;[];;impressive! I seem to have a habit of starting anime and not finishing them to start a new one haha;False;False;;;;1610227318;;False;{};gip0qxg;True;t3_ktzf5g;False;True;t1_gip0agf;/r/anime/comments/ktzf5g/how_do_you_count_anime_youve_seen/gip0qxg/;1610269041;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EstebanIsAGamerWord;;;[];;;;text;t2_4vhvkb76;False;False;[];;"Lol the post-credits scenes. ""Favorite pet phrase?"" ""Sorry.""";False;False;;;;1610227343;;False;{};gip0szr;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gip0szr/;1610269071;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;Go by completed. I’ve been watching 15+ years and have around 1000 or so. To most people that’s probably a lot, but some have double or triple that amount;False;False;;;;1610227344;;False;{};gip0t07;False;t3_ktzf5g;False;True;t3_ktzf5g;/r/anime/comments/ktzf5g/how_do_you_count_anime_youve_seen/gip0t07/;1610269071;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NocandNC;;;[];;;;text;t2_78tcits;False;False;[];;TV tropes may have the answers you’re looking for.;False;False;;;;1610227349;;False;{};gip0tek;False;t3_ktzpez;False;True;t3_ktzpez;/r/anime/comments/ktzpez/source_of_generic_anime_tropes/gip0tek/;1610269078;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nachikethabn;;;[];;;;text;t2_50or81ha;False;False;[];;Update this post itself. Good luck;False;False;;;;1610227446;;False;{};gip11ey;False;t3_ktyzmm;False;True;t1_giozmiv;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/gip11ey/;1610269198;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ItchyPlatypus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ItchyPlatypus;light;text;t2_x6uza5h;False;False;[];;The whole episode I was reminded of early to mid 00s ridiculous sports games especially Tony Hawks and SSX, in particular Tony Hawks: American Wasteland and SSX Tricky.;False;False;;;;1610227489;;False;{};gip14qr;False;t3_ktxcly;False;True;t1_gion88w;/r/anime/comments/ktxcly/sk_episode_1_discussion/gip14qr/;1610269248;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JRavec;;;[];;;;text;t2_64fpcd54;False;False;[];;I also do that sometimes but i always come back to finish it someday.;False;False;;;;1610227491;;False;{};gip14wk;False;t3_ktzf5g;False;True;t1_gip0qxg;/r/anime/comments/ktzf5g/how_do_you_count_anime_youve_seen/gip14wk/;1610269250;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;You will not be able to produce a 12 episode anime from scratch with no experience by yourself. It would take all your time and you wouldn’t have time for a job to pay bills and stuff. Unless you have some form of passive income then don’t bother.;False;False;;;;1610227569;;False;{};gip1azz;False;t3_ktzeiu;False;True;t3_ktzeiu;/r/anime/comments/ktzeiu/possibility_of_creating_an_anime_from_scratch/gip1azz/;1610269346;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ItchyPlatypus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ItchyPlatypus;light;text;t2_x6uza5h;False;False;[];;"OK so this is the anime I’ve been looking for this season, I’ve been craving a non-sequel anime and this is IT. - -I can already tell this will be one of my favourites. This will be the one that will climb the karma chart this season if you ask me.";False;False;;;;1610227620;;False;{};gip1ete;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gip1ete/;1610269404;14;True;False;anime;t5_2qh22;;0;[]; -[];;;georgeeeboyy;;;[];;;;text;t2_69sn1nmm;False;False;[];;Overlord;False;False;;;;1610227627;;False;{};gip1fc4;False;t3_ktyy8v;False;True;t3_ktyy8v;/r/anime/comments/ktyy8v/are_there_any_mangaanime_where_the_mc_gets_sucked/gip1fc4/;1610269412;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610227731;;False;{};gip1n2y;False;t3_ktyzmm;False;True;t1_gip11ey;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/gip1n2y/;1610269533;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UberDueler8;;;[];;;;text;t2_485dcj1j;False;False;[];;Best original anime of the season so far?;False;False;;;;1610227797;;False;{};gip1rux;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gip1rux/;1610269604;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Nachikethabn;;;[];;;;text;t2_50or81ha;False;False;[];;Yea;False;False;;;;1610227814;;False;{};gip1t59;False;t3_ktyzmm;False;True;t1_gip1n2y;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/gip1t59/;1610269639;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mirikuta;;;[];;;;text;t2_42tqgghk;False;False;[];;i just finished this episode and i have officially lost my mind. i cant wait for the next episode aaaaaaa;False;False;;;;1610227869;;False;{};gip1x4c;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gip1x4c/;1610269701;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Brandon_2149;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Brandon2149;light;text;t2_162r8p;False;False;[];;Jesus too much anime this season. Going be another under watched with so many sequels and good series airing.;False;False;;;;1610227955;;False;{};gip2384;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gip2384/;1610269794;5;True;False;anime;t5_2qh22;;0;[]; -[];;;blueberriesz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KomaDoll;light;text;t2_4n7b4fxp;False;False;[];;Well I mostly use my MAL as reference. I usually count animes I have watched all the way through, but not necessarily all movies, ova's or specials and sometimes not all seasons if there is clear distinction between seasons.;False;False;;;;1610227978;;False;{};gip24wr;False;t3_ktzf5g;False;True;t3_ktzf5g;/r/anime/comments/ktzf5g/how_do_you_count_anime_youve_seen/gip24wr/;1610269820;3;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Valk;;;[];;;;text;t2_36l47pm7;False;False;[];;And report back on season 2 once you're there;False;False;;;;1610228180;;False;{};gip2jlu;False;t3_ktyzmm;False;True;t1_giozmiv;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/gip2jlu/;1610270043;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Syokhan;;;[];;;;text;t2_b5zid;False;False;[];;Dang, that was so fun and vibrant! I don't even like skating that much but I loved the episode.;False;False;;;;1610228207;;False;{};gip2lif;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gip2lif/;1610270074;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MaskOfIce42;;;[];;;;text;t2_gj6onc6;False;False;[];;"Best part is when she finally learns French by rewatching the anime she knew back in Japan over and over until she knows the language - -Also, great to see Nodame Cantabile content here";False;False;;;;1610228348;;False;{};gip2vgr;False;t3_ktx8gk;False;False;t3_ktx8gk;/r/anime/comments/ktx8gk/nodame_studying_basic_french_nodame_cantabile/gip2vgr/;1610270233;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"I just use the numbers on MAL; - -110 completed anime, 119 dropped anime, 12 currently watching. - -(Well the 'currently watching' isn't up to date because I didn't add this season's new shows yet). - -If someone asks me how many anime I watched, I'll go with completed of course; Some of the ""dropped"", I watched 5 minutes of them. Would be silly to say I watched them.";False;False;;;;1610228467;;False;{};gip33x8;False;t3_ktzf5g;False;False;t3_ktzf5g;/r/anime/comments/ktzf5g/how_do_you_count_anime_youve_seen/gip33x8/;1610270359;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kenjasama;;;[];;;;text;t2_9q2aelyc;False;False;[];;This season's Dark Force. Best quality;False;False;;;;1610228491;;False;{};gip35ou;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gip35ou/;1610270386;3;True;False;anime;t5_2qh22;;0;[]; -[];;;give_up-the_ghost;;;[];;;;text;t2_1a0waglx;False;False;[];;"I went in with pretty positive expectations, and it did not disappoint! Great animation, as expected from BONEs, hope they can keep that up! - -This is my first anime to watch directed by Utsumi, but I know she's most known for directing Banana Fish and Free! SK8 checks off the list for a pretty boy all-male cast. Although there was one female character in the OP. She looked like the flag waver? - - I like the dynamic already btw the two main leads, Reki and Langa already. I thought Langa was gonna be this emotionless jerk from the PVs, but he's not really like that at all, and those bits of comedic relief he added was amusing. - -that over the top bad guy listening to Beethoven makes he think this anime isn't gonna take itself too seriously. Although I hope they don't make him some thinly veiled sexual predator towards Langa because of how he was watching him on that screen - -I'm sure this will have plenty of gay subtext, but still stay no homo \*sigh\* Something that really gets on my nerves. But as long as the story stays good I'll accept it.";False;False;;;;1610228517;;False;{};gip37kk;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gip37kk/;1610270414;6;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"Some are good and some not so much. - -The issue is not enough of the anime is animated yet so they use transition slides a lot and use dialogue a lot to give an idea of the anime. - -Some will use pre-animated material like Attack on Titan: The Final Season and Mushoku Tensei did. Both had great trailers as well. - -Some won't need to do that though and still produce good trailers like Vinland Saga , Dororo and Fruits Basket. I am assuming they animated a good chunk before the episodes began airing. - -Here are their trailers: - -Vinland Saga: https://youtu.be/x2aneW0sH7c - -Dororo: https://youtu.be/CPG64L4bSkI - -Fruits Basket: https://youtu.be/6M7f41OJfcM - -Sometimes the fast paced music is because it is an OP PV or ED PV where the point is to give a taste of the song in the preview.";False;False;;;;1610228719;;1610228977.0;{};gip3lxf;False;t3_ku02kx;False;True;t3_ku02kx;/r/anime/comments/ku02kx/the_problem_with_anime_trailers_and_how_i_think/gip3lxf/;1610270633;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jrkid100;;;[];;;;text;t2_1dh6z2tq;False;False;[];;"Coming from a someone that films people skate this show really captured that excitement when someone lands a trick or does something unexpected 8/10 - -Would have been 10/10 if it was more like SLS";False;False;;;;1610228865;;False;{};gip3wbo;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gip3wbo/;1610270791;3;True;False;anime;t5_2qh22;;0;[]; -[];;;IC2Flier;;;[];;;;text;t2_wnxu2v6;False;False;[];;Imagine that in Code Black.;False;False;;;;1610228882;;False;{};gip3xjg;False;t3_ktwrnr;False;False;t3_ktwrnr;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/gip3xjg/;1610270810;18;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610228893;moderator;False;{};gip3ybt;False;t3_ku08b1;False;True;t3_ku08b1;/r/anime/comments/ku08b1/help_me_find_anime_where_kid_1_shots_everyone/gip3ybt/;1610270821;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610228930;;False;{};gip411i;False;t3_ktyzmm;False;True;t1_gip2jlu;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/gip411i/;1610270863;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lolzer2000o;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;"𝔖𝕡𝕚𝕔𝕖 & 𝕎𝕠𝕝𝕗 ⠀🚩";dark;text;t2_57vcmzvk;False;False;[];;Ah, that was fucking great, I'm from Canada but I haven't gotten to snowboard cause of Covid, so all the parks are closed :( Also that flip ranga does at the end if fairly common in snowboarding, which i thought was cool;False;False;;;;1610228932;;False;{};gip4157;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gip4157/;1610270865;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;I've not seen it but that sounds a lot like Cautious Hero;False;False;;;;1610228933;;False;{};gip418b;False;t3_ktyy8v;False;True;t3_ktyy8v;/r/anime/comments/ktyy8v/are_there_any_mangaanime_where_the_mc_gets_sucked/gip418b/;1610270866;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;n080dy123;;;[];;;;text;t2_139f6y;False;False;[];;"That was really good, wasn't sure what to expect aside from to look cgood since it's a Bones show, but I enjoyed that a lot. Actually was getting hyped when Langa was zooming after realizing hopw similar it was to snowboarding. I've snowboarded a few times and it reminded me of that feeling when I really got going, felt like a badass. I also really appreciate that ED, even the ""big guys"" were all failing in practice, which is really humanizing. - -Also totally random thing but I really appreciated the little fox pet's walk cycle in that one shot. Not sure why.";False;False;;;;1610228940;;1610229191.0;{};gip41rw;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gip41rw/;1610270875;4;True;False;anime;t5_2qh22;;0;[]; -[];;;rlmurrhee;;skip7;[];;;dark;text;t2_9a8y9b5c;False;False;[];;will do;False;False;;;;1610228945;;False;{};gip424v;True;t3_ktyzmm;False;True;t1_gip2jlu;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/gip424v/;1610270880;3;True;False;anime;t5_2qh22;;0;[]; -[];;;east-blue-samurai;;;[];;;;text;t2_c5avy2;False;False;[];;Astro Boy?;False;False;;;;1610228950;;False;{};gip42fz;False;t3_ku08b1;False;True;t3_ku08b1;/r/anime/comments/ku08b1/help_me_find_anime_where_kid_1_shots_everyone/gip42fz/;1610270886;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MavadoBouche;;;[];;;;text;t2_2sxfd6nj;False;False;[];;"3 minutes??? - -Are you talking about Astro Boy?";False;False;;;;1610229035;;False;{};gip48fb;False;t3_ku08b1;False;True;t3_ku08b1;/r/anime/comments/ku08b1/help_me_find_anime_where_kid_1_shots_everyone/gip48fb/;1610270978;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Suhkein;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Neichus;light;text;t2_qahwgd;False;False;[];;Just the other day somebody wrote an essay on [the origins of some tendencies in martial arts/sports anime](https://www.reddit.com/r/anime/comments/kta2ub/50ya_50_years_ago_january_19712021_mixed_martial/). Not precisely what you're looking for, but in the same vein of asking where certain tendencies come from.;False;False;;;;1610229070;;False;{};gip4b0a;False;t3_ktzpez;False;True;t3_ktzpez;/r/anime/comments/ktzpez/source_of_generic_anime_tropes/gip4b0a/;1610271019;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;"[https://myanimelist.net/anime/38573/Tsuujou\_Kougeki\_ga\_Zentai\_Kougeki\_de\_Ni-kai\_Kougeki\_no\_Okaasan\_wa\_Suki\_Desu\_ka](https://myanimelist.net/anime/38573/Tsuujou_Kougeki_ga_Zentai_Kougeki_de_Ni-kai_Kougeki_no_Okaasan_wa_Suki_Desu_ka) - -&#x200B; - -it's about a son and mother going into a video game world and doing dungeons and stuff together.";False;False;;;;1610229110;;False;{};gip4dve;False;t3_ku09s5;False;True;t3_ku09s5;/r/anime/comments/ku09s5/an_anime_i_can_watch_with_my_mom/gip4dve/;1610271076;5;True;False;anime;t5_2qh22;;0;[]; -[];;;keithohara;;;[];;;;text;t2_gbzf7q;False;True;[];;Hello this is CDAWGVA and i like this;False;False;;;;1610229154;;False;{};gip4gzw;False;t3_ku09s5;False;True;t1_gip4dve;/r/anime/comments/ku09s5/an_anime_i_can_watch_with_my_mom/gip4gzw/;1610271123;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;A Silent Voice, it's a movie about a childhood bully looking for redemption by trying to make up with the girl he bullied as a kid.;False;False;;;;1610229205;;False;{};gip4klw;False;t3_ku09s5;False;False;t3_ku09s5;/r/anime/comments/ku09s5/an_anime_i_can_watch_with_my_mom/gip4klw/;1610271177;4;True;False;anime;t5_2qh22;;0;[]; -[];;;_shuckle;;;[];;;;text;t2_5op12rli;False;False;[];;That was the first thing to pop up when I searched for it but it's not that one. It's like a knock off astro boy. This show is a lot lower in quality and production value. The kid has an actual physical gun and simply shoots every antagonist, there is hardly any story involved. If I had a better way to describe it I would. I appreciate you reaching out about this;False;False;;;;1610229220;;False;{};gip4loz;True;t3_ku08b1;False;False;t1_gip42fz;/r/anime/comments/ku08b1/help_me_find_anime_where_kid_1_shots_everyone/gip4loz/;1610271194;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Trafalgar_Lou1;;;[];;;;text;t2_4z15tejm;False;True;[];;"Any studio ghibli movie. Highly recommend spirited away, howls moving castle, Castle in the sky or The wind rises, from up on poppy hill. -Your name or a silent voice are other good movies. - -Or are you looking for a series?";False;False;;;;1610229332;;False;{};gip4thp;False;t3_ku09s5;False;True;t3_ku09s5;/r/anime/comments/ku09s5/an_anime_i_can_watch_with_my_mom/gip4thp/;1610271310;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vegeta-IV;;;[];;;;text;t2_5q9pbal5;False;False;[];;"Loved this first episode, Super dope - -Love the ED 🎶";False;False;;;;1610229363;;False;{};gip4vnz;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gip4vnz/;1610271344;1;True;False;anime;t5_2qh22;;0;[]; -[];;;A_Glass_Onion_;;;[];;;;text;t2_9nawz6p8;False;False;[];;I’m looking for a series me and my mom already watch a ton of studio ghibli;False;False;;;;1610229396;;False;{};gip4xzb;True;t3_ku09s5;False;True;t1_gip4thp;/r/anime/comments/ku09s5/an_anime_i_can_watch_with_my_mom/gip4xzb/;1610271378;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dualcalamity;;;[];;;;text;t2_fyzzi;False;False;[];;[chargeman ken](https://myanimelist.net/anime/6383/Chargeman_Ken)?;False;False;;;;1610229436;;False;{};gip50tb;False;t3_ku08b1;False;True;t3_ku08b1;/r/anime/comments/ku08b1/help_me_find_anime_where_kid_1_shots_everyone/gip50tb/;1610271422;3;True;False;anime;t5_2qh22;;0;[]; -[];;;_shuckle;;;[];;;;text;t2_5op12rli;False;False;[];;It's like astro boy but not exactly like it. It is about a kid that I think is a cyborg that can fly. There's pretty much no dialogue in the show or any story. The show is very formulaic. It usually has the introduction of the antagonist and then the kid shows up with a gun and kills them like every time. Sometimes they add drama to the show by making him miss with his gun but that's about it;False;False;;;;1610229513;;False;{};gip56bt;True;t3_ku08b1;False;True;t1_gip48fb;/r/anime/comments/ku08b1/help_me_find_anime_where_kid_1_shots_everyone/gip56bt/;1610271506;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RyuGTX;;;[];;;;text;t2_b4vg9;False;False;[];;"Sweetness & Lightning - -The story follows the heartwarming story of a caring father trying his hardest to make his adorable little daughter happy, while exploring the meanings and values behind cooking, family, and the warm meals at home that are often taken for granted. (My Anime List)";False;False;;;;1610229524;;False;{};gip576p;False;t3_ku09s5;False;True;t3_ku09s5;/r/anime/comments/ku09s5/an_anime_i_can_watch_with_my_mom/gip576p/;1610271521;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WhatAreRoads;;;[];;;;text;t2_7bf5t1gl;False;False;[];;Toradora if you wanna watch like a slice of life and on the opposite side of the spectrum Tokyo Ghoul but there’s sorta a sex scene so idk bout that one;False;False;;;;1610229601;;False;{};gip5chs;False;t3_ku09s5;False;True;t3_ku09s5;/r/anime/comments/ku09s5/an_anime_i_can_watch_with_my_mom/gip5chs/;1610271601;1;True;False;anime;t5_2qh22;;0;[]; -[];;;galacticakagi;;;[];;;;text;t2_3kypiifb;False;False;[];;Elfen Lied is a really great choice.;False;False;;;;1610229678;;False;{};gip5i01;False;t3_ku09s5;False;True;t3_ku09s5;/r/anime/comments/ku09s5/an_anime_i_can_watch_with_my_mom/gip5i01/;1610271686;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Trafalgar_Lou1;;;[];;;;text;t2_4z15tejm;False;True;[];;"That’s fair. - -Mushishi is a very good series. Also has two good movies once you finish. - -Not sure what Kind of anime you and your mom enjoy so trying think a long the lines of family friendly. - -A great series is The Tatami Galaxy. The animation is one of a kind but the dialogue is very fast so hard to keep up with subs, you will get used to it after the first episode hopefully. Decent movie connected called The night is long walk on girl that you might enjoy. Both are insanely funny. - -Samurai Champloo or cowboy bebop are another great choice by the same studio. Great music and story - -And not anime but Avatar is always a great watch at any age and is available on Netflix with The legend of Korra sequel series added recently";False;False;;;;1610229682;;1610230661.0;{};gip5ico;False;t3_ku09s5;False;True;t1_gip4xzb;/r/anime/comments/ku09s5/an_anime_i_can_watch_with_my_mom/gip5ico/;1610271691;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_shuckle;;;[];;;;text;t2_5op12rli;False;False;[];;YOU DID IT HOLY SHIT I LOVE YOU THANK YOU SO MUCH;False;False;;;;1610229696;;False;{};gip5jdo;True;t3_ku08b1;False;True;t1_gip50tb;/r/anime/comments/ku08b1/help_me_find_anime_where_kid_1_shots_everyone/gip5jdo/;1610271707;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;Everyone says this every season since the beginning of time;False;False;;;;1610229794;;False;{};gip5qek;False;t3_ku0fjh;False;False;t3_ku0fjh;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip5qek/;1610271815;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Duwang_Mn;;;[];;;;text;t2_1ahsyxqn;False;False;[];;Really? Got any anime that are worth looking forward to?;False;False;;;;1610229838;;False;{};gip5tjm;True;t3_ku0fjh;False;False;t1_gip5qek;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip5tjm/;1610271862;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;Nah this season 🔥;False;False;;;;1610229853;;False;{};gip5uj2;False;t3_ku0fjh;False;False;t3_ku0fjh;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip5uj2/;1610271877;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Ben99ny22;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ben99ny;light;text;t2_14rmpidg;False;False;[];;"looking at my account on anilist, it looks like 2013 and 2016 are my best years by a pretty large margin too. 2013 have 80 mean score, 2016 having a 82 mean score and only 1 other year having over a 70 mean score. - -EDIT: i forgot that i can scroll. There are other years with higher or close scores but they have much less shows completed. Like 1984 and 1988 have an 84 average score because of just 1 movie. but 2013 and 2016 still ended up being my best years. 2016 being my best as its a higher score and having seen 4 more shows.";False;False;;;;1610229891;;1610230256.0;{};gip5x89;False;t3_ktwy3i;False;True;t3_ktwy3i;/r/anime/comments/ktwy3i/looking_at_mal_or_one_of_the_sites_what_year_do/gip5x89/;1610271917;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Duwang_Mn;;;[];;;;text;t2_1ahsyxqn;False;False;[];;"Which anime are ""🔥""?";False;True;;comment score below threshold;;1610229896;;False;{};gip5xmt;True;t3_ku0fjh;False;True;t1_gip5uj2;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip5xmt/;1610271923;-12;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;There’s a reason this is so horribly rated.;False;False;;;;1610229906;;False;{};gip5ycx;False;t3_ku09s5;False;True;t1_gip4dve;/r/anime/comments/ku09s5/an_anime_i_can_watch_with_my_mom/gip5ycx/;1610271935;3;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;;;[];;;;text;t2_4la0rf79;False;False;[];;We are getting Nanatsu No Taizai season 4 and Quintessential Quintuplets season 2 so I wouldn’t say it’s a lackluster, after all NNT is really famous;False;False;;;;1610229956;;False;{};gip624z;False;t3_ku0fjh;False;False;t3_ku0fjh;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip624z/;1610271989;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Duwang_Mn;;;[];;;;text;t2_1ahsyxqn;False;False;[];;Sequel and another sequel. Not to mention seven deadly sins is noe seven deadly frames;False;False;;;;1610229987;;False;{};gip64fa;True;t3_ku0fjh;False;True;t1_gip624z;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip64fa/;1610272023;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"First timer - -Sub - -Yuu runs to the blue snow and yells ""Haruka!"". You know, if I tried the old SINS drinking game and took a shot every time someone said a specific name, would Yuu or Haruka be more fatal? Anyways, Karasu comes in with his cape and we get to see the sexy potato sack actually has metal ankle bindings, in case Haruka wants to get freaky this evening. Merciful Nurgle get the girl some pants and a shirt with shoulders. Karasu removes his umbilical cord after a thought, suggesting that indeed there are consequences for this. And Yuu fucking tackles him, no clue if that means he can't be intangible any more or if you can hit yourself from another dimension. Anyways, Haruka info dumps on Yuu, who welcomely enough, cannot possibly take the confusing from info her and has to leave. Scene ends with Karasu presumably flying them to her home. - -Quick shot of La'cryma to state the obvious. Cut back to them failing to find Haruka and Miho being correct in a kind of way that makes me wonder if the Buddha aliens are also humans. Fujiwara unsmoothly wants to get next to his teacher, Ai is not having that shit. Yuu finds a pay phone, I guess those still existed in '05, and let's them know Haruka is back in a manner that only begs further questions. - -Karasu takes Haruka on a traditional Superman-Lois Lane flight over the harbor and...DUDE FUCKING NO! Bad Karasu, you do not get to seduce the tween you shithead of an edgy motherfucker! GET A BETTER ADULT PRONTO! Anyways, he drops her off in to a storage room, this better be Peter Pan style, as her mother finally wonders where her child has been all day. Haruka's mom epically fails a spot check on sexy potato sack before Ai blows up at Haruka, pretty understandably. But Haruka actually asks about the time dilation, so there is that. - -Fish eye lens again. Da fuq? Haruka does the literal worse ever playing it cool about having a boy in her room, and Haruka mom comes to see...nothing. Guess Karasu is still invisible to normies. The mom is disappointed...but finally makes her spot check about the sexy potato sack. Haruka makes up a horrible lie that mother immediately buys. Karusu looks mighty cached. - -Yuu, for some reason, bothers to go home. He immediately regrets it. But it is time for his balls to drop as he finally begins rebelling properly. And like every shitty woman in history, his mother resorts to tears and pleas to emotion. Yuu has the sense to run for it. Weird ribbon staring scene. Yuu wanders. Yuu's mother gets a phone call...wait wut? Is Yuu's dad alive and just a crazy hard worker? Sweet merciful fuck if true. The note here is that she calls him ""anata"", which you only do to your spouse. Or complete strangers. Japan, you weird. - -Anywho, Yuu eats some convenience store food on the bridge. And yes, sadly, I can now spot Japanese store convenience food. Damn you anime! And he actually crashes at the park and I'd be a liar if I haven't done the same at roughly the same age, though at least it wasn't on a bench. But then Atora and Tobi wander up and apparently now have to eat. Or rather, they didn't before? Confusing. Anyways, Atori confirms that birds are beefed through science and is annoyed that he will die in universe A. Tough, psychopath. Anyways, it looks like Yuu's stash is going to get raided. F. - -Haruka checks on Karasu, who confirms body change but explains it a bit more clearly. Yuu's wandering has taken him to Haruka's. Or to Karasu. I vote Haruka, that has more meaning. Anyways, looks like Karasu will explain things. Kind of. But anyways, he claims to not be important in this dimension and I will choose to see the more interesting option that this is emo rather than science. - -Yuu claims that he was returning her ribbon but most likely that's an excuse. The speed with which Haruka goes to asking about another incident with the mom suggests the regularity of this. As Yuu admits he slept in the park, Haruka drags him inside. I think this does suggest that Haruka was not bumbling when she messed up his plans to run from home. Quick flash to Miyuki remembering her sister, and also that she should find Yuu. And then immediately looks at Haruka's house. - -They banter a bit, Haruka sees how Yuu pets Baron as confirmation. Both of them are being evasive for different reasons. We clearly see Haruka has been trying to run interference for Yuu as he finally opens up for a bit...before stealing her chocolate! Men have been murdered for such acts, Yuu my bro. In between all this we finally get the 'explanation' that when his grandmother died, his mom thought she loved her aunt more than her. Whatever, do not care. Yuu continues to antagonize Haruka in a way that might mean something but equally sounds like childhood friend stuff. Haruka mom fails her listen check as well, merciful Cthulhu, as the kids wrestle. - -And Miyuki comes to ruin everything. Yuu gets thrown in with Karusu. Yuu has questions, Karusu has glares. Look, I know that Karusu is seeing the himself that would fail but all I can see is the Karusu failing to do A GODDAMN THING ABOUT IT! You want this to end differently? Fucking change Yuu, don't vent your own spleen at him. Bitch! - -Anyways, Miyuki rages in, Haruka doesn't quite hide the shoes but points to her for trying, Karasu is emo, and a door shuts on its own. Cliffhanger! Oh and preview shows young Miyuki so I will probably not be having fun. - -QotD: 1 None, his regrets are guiding him. Which is understandable but useless, as Corpse Princess showed - -2 Typical bad Asian parenting dialed up to 11. The resolution will most likely annoy me.";False;False;;;;1610230018;;False;{};gip66to;False;t3_ku0k6t;False;False;t3_ku0k6t;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip66to/;1610272060;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Pixelsaber;;;[];;;;text;t2_ofuxw;False;False;[];;"**First-timer - Sub** - -[Well if he wasn’t in pain before he probably is now.](https://i.imgur.com/j8pjeSr.png) - -[Why are you surprised?](https://i.imgur.com/hGUuUg9.png) Wasn’t he restrained because you all knew this might happen? - -[Delightful irony.](https://i.imgur.com/EOF6bXO.png) - -[Miho is quite prescient.](https://i.imgur.com/g1iQdFU.png) - -[He has a father who lets this happen?!](https://i.imgur.com/65bhNde.png) - -[](#volibearQ) - -[So after implying it they’re just going to outright say it then? Or is he just assuming?](https://i.imgur.com/pkhNlaI.png) - -[So she did die, just not recently.](https://i.imgur.com/emLpxOL.png) - -Good episode to wind down from the last and set up the conflicts to come, though in spite of that I am having trouble thinking of what to write about... - -I don’t even want to know how neglectful you would have to be to not realize the shit your wife is putting your kid through. I had just assumed that Yuu’s mother was a single parent, but this makes his situation all the more unfortunate, and quite frustrating to witness. We haven’t seen nor heard Yuu’s father yet and I already hate him. We can also see that his mother’s abuse is a product of her own experiences with a neglectful mother who favored the naturally gifted child, which has seemingly taught her that she needs her progenity to excel. - -The teacher and other kids keep being used for laughs and not much more. Also, the topic of Haruka having gone missing seemingly gets dropped the moment they confirm she has reappeared and there is no meaningful follow-through. You’d think at least one of them would have gone to see if she was truly alright. - -A couple of seeming confirmations on stuff that’s been implied, with Atori claiming this dimension will befall the same fate as theirs, and Yuu finally talking about his deceased aunt. Nothing major for the audience, but hopefully it leads to some thinking on the character’s parts. - -It seems like we’re arriving at a pivotal point for Yuu’s narrative, but given it’s so early into the show I predict the matter will only be deferred to later as opposed to coming to a head. - -**Questions:** - -1) Protect Haruka as a short-term goal, but I doubt he's even thought of a long-term plan. - -2) See body of comment.";False;False;;;;1610230026;;False;{};gip67gk;False;t3_ku0k6t;False;False;t3_ku0k6t;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip67gk/;1610272069;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Trafalgar_Lou1;;;[];;;;text;t2_4z15tejm;False;True;[];;Terrible choice lol. Chicks naked half the time. Some cool gore though;False;False;;;;1610230029;;False;{};gip67o7;False;t3_ku09s5;False;False;t1_gip5i01;/r/anime/comments/ku09s5/an_anime_i_can_watch_with_my_mom/gip67o7/;1610272072;5;True;False;anime;t5_2qh22;;0;[]; -[];;;juances19;;HB;[];;https://kitsu.io/users/juances;dark;text;t2_17a18d;False;False;[];;"It may sound weird but I think tropes are not much different than memes in origin. - -One guy did it first, everyone found it funny so they did the same thing spreading it further.";False;False;;;;1610230032;;False;{};gip67w8;False;t3_ktzpez;False;True;t3_ktzpez;/r/anime/comments/ktzpez/source_of_generic_anime_tropes/gip67w8/;1610272076;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BroYouDroppedTheKek;;;[];;;;text;t2_8cjbse7w;False;False;[];;No lmao;False;False;;;;1610230053;;False;{};gip69fs;False;t3_ku0fjh;False;True;t3_ku0fjh;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip69fs/;1610272099;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;;;[];;;;text;t2_4la0rf79;False;False;[];;True, only scene he must be aware is when her friend talks about “her chest size” lol;False;False;;;;1610230068;;False;{};gip6aic;False;t3_ku09s5;False;True;t1_gip4klw;/r/anime/comments/ku09s5/an_anime_i_can_watch_with_my_mom/gip6aic/;1610272115;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;True;[];;"####First Timer -Haruka's returned. Now, will we actually start figuring out what's going on? I sure hope so. Onto episode 8. - -Well, Karasu's [sealed his fate](https://i.imgur.com/wvDgfad.png) now. He can't go back, and we know that you can't stay forever in another dimension. - -And now Yuu's [stuck in](https://i.imgur.com/W2zl4hN.png) ""You can't do anything, you can't save her"" again. Much more angst is coming. - -[Broken clock's right twice a day.](https://i.imgur.com/QD4qr7G.png) - -This [phrasing](https://i.imgur.com/eTMBiyp.png) makes it sound super fishy. - -If there was literally anything she could've done about it, I'd say Haruka [deserves this](https://i.imgur.com/teHg4ub.png). I hope she realizes Ai was just worried and doesn't get mad. - -Thank you for [not falling for](https://i.imgur.com/8SpF88o.png) paper-think excuses. - -[Cosplay?](https://i.imgur.com/ybc4DKY.png) -I was close. - -When you already have time travel, [time passing differently](https://i.imgur.com/zb0CRpd.png) in different dimensions isn't odd. It's not like they're pinned to each other, is it? - -Then [stop](https://i.imgur.com/WCOjWXv.png) making him too uncomfortable to use the door, bitch. -[Go die.](https://i.imgur.com/X2x8B0o.png) This is the worst thing you could have said. - -Because you have [worse communication skills](https://i.imgur.com/uVzbg32.png) than the average raccoon. - -She's [not a single mom](https://i.imgur.com/DplNDOU.png)? I was sure she was. Though, I guess if her husband rarely comes home, they're divorced in all but name. - -Show, [I get that](https://i.imgur.com/b7DVtfI.png) you're trying to show me her life is falling apart on other dimensions and this is part of the reason she's treating Yuu so terribly. However, the way she treats Yuu is so unforgivable that I don't give a damn. - -What makes this [dimension depressing](https://i.imgur.com/ayiIVgs.png)? Isn't it basically better in every way than your own? - -[Parallel universe](https://i.imgur.com/EPjVcLs.png) doesn't mean future? If you want to say it's a possible future, shouldn't you say potential universe? - -Just say it and [stop being so edgy](https://i.imgur.com/LSHoHaJ.png). - -It took you like [16 hours](https://i.imgur.com/t8Ot2HP.png) to figure this out? - -Thanks Baron for breaking all the doom and gloom. - -Hanuka, this [isn't how this works](https://i.imgur.com/mq58d3s.png). You can't get on his case for worrying you whilst dismissing his worries. - -Haruka somehow [doesn't realize](https://i.imgur.com/43Dbypl.png) his mom doesn't listen. I dunno how. - -Ah yes, [yell in front of the open window](https://i.imgur.com/MKBmj1L.png), that won't tell her you're here. - -###Thoughts -Stuff is finally coming together! - -^(~~I accidentally called Haruka Honoka, curse you Love Live!~~) - -1. He doesn't have a plan, he's just doing whatever he can to protect Haruka at this point. -2. His mother has treated him terribly. She's toxic, and it's in his best interest to keep away from her. I'm afraid the show's gonna try to redeem her, but I really hope they don't. - ->I've been out of town the last few days, sorry for my lack of participation, no post from me today but I'll be responding to as many comments as I can! - -'Tis all good, thanks for hosting!";False;False;;;;1610230071;;False;{};gip6apj;False;t3_ku0k6t;False;False;t3_ku0k6t;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip6apj/;1610272118;5;True;False;anime;t5_2qh22;;0;[]; -[];;;jslice4ever;;;[];;;;text;t2_2wvi51tm;False;False;[];;Definitely not. This season is one of the best I've seen in years.;False;False;;;;1610230076;;False;{};gip6b2x;False;t3_ku0fjh;False;False;t3_ku0fjh;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip6b2x/;1610272123;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Godprime;;;[];;;;text;t2_dezxafd;False;False;[];;AOT, 2 Cells at work seasons, re:zero, Quintessential Quintuplets, Dr Stone, The Promised Neverland Season 2, Boruto Vessel Arc, and more. The last time I can remember a season was packed with this many big names was spring 2019;False;False;;;;1610230093;;False;{};gip6ccg;False;t3_ku0fjh;False;True;t3_ku0fjh;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip6ccg/;1610272142;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JustAnswerAQuestion;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JAaQ/;light;text;t2_66xzcvc;False;False;[];;"**First Timer** - -Thought I had while reading other people's comments yesterday: Noein is Shangri-La dimension's Yuu. From farther in the future, too. - -* So they really did just forget she VANISHED once already. Cassandra Miho gets it right and nobody believes her. -* Karasu committing to this Earth too -* So Narnia isn't synced exactly with Earth -* Atori and Tobi: snapshots of bad decision making -* I bet if Yuu asks really nicely Karasu will hide them both in a pocket dimension and we can avoid all of tomorrow's episode.";False;False;;;;1610230099;;False;{};gip6cqp;False;t3_ku0k6t;False;False;t3_ku0k6t;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip6cqp/;1610272147;7;True;False;anime;t5_2qh22;;0;[]; -[];;;zsmg;;;[];;;;text;t2_ivuw5;False;False;[];;"**Rewatcher** - -Yuu getting jealous of his future self, awkward. - -Yay Yuu finally standing up to his mum. - -The arm hanging from the ceiling with Haruka's reaction to it was pretty funny -Atori and Tobi are hobos now. - -Good episodes, episode seems to go by a lot faster since the early episodes. - -QotD: -A part of me definitely feels sorry for Yuu's mum, she has a inferiority complex towards her elder sister maybe she blames herself for her sister's death. Her home life is in shambles with her husband never showing up, Yuu is having a mental breakdown but isn't aware she herself is the source of the problems. She needs help.";False;False;;;;1610230102;;False;{};gip6d01;False;t3_ku0k6t;False;False;t3_ku0k6t;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip6d01/;1610272151;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Duwang_Mn;;;[];;;;text;t2_1ahsyxqn;False;False;[];;It's one thing to say it's mediocre, but how is it that good?;False;True;;comment score below threshold;;1610230112;;False;{};gip6dol;True;t3_ku0fjh;False;True;t1_gip6b2x;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip6dol/;1610272161;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;fuzzynavel34;;MAL;[];;http://myanimelist.net/animelist/hoosierdaddy0827;dark;text;t2_fwokc;False;False;[];;"This isn't even close to the ""worst anime of all time"". Yeah, the characters are completely, absolutely generic and so is the plot etc but it has good music and solid animation.";False;False;;;;1610230148;;False;{};gip6gf4;False;t3_ku0acb;False;False;t3_ku0acb;/r/anime/comments/ku0acb/i_force_my_friends_to_watch_the_worst_anime_of/gip6gf4/;1610272205;11;True;False;anime;t5_2qh22;;0;[]; -[];;;JuiceMelon;;;[];;;;text;t2_8tagnvd;False;False;[];;"For me it's good season, because most my watch list got a sequel - -Tensura, Dr. Stone, Neverland, Hataraku Saibou Black/White, YuruCamp, Log Horizon, Non non Biyori, World Trigger, Majutsu Orphen, and Show by rock";False;False;;;;1610230166;;False;{};gip6hpl;False;t3_ku0fjh;False;True;t3_ku0fjh;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip6hpl/;1610272224;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Duwang_Mn;;;[];;;;text;t2_1ahsyxqn;False;False;[];;Any og anime that are good?;False;False;;;;1610230168;;False;{};gip6hum;True;t3_ku0fjh;False;True;t1_gip6ccg;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip6hum/;1610272226;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ohaimike;;;[];;;;text;t2_5ovb2;False;False;[];;"Every season is both the worst season and the best season. - -Spring, we'll see this question again and stuck to repeat it until the end of time.";False;False;;;;1610230178;;False;{};gip6ik5;False;t3_ku0fjh;False;False;t3_ku0fjh;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip6ik5/;1610272237;7;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;Beach and mountain episodes reflect real life -- and things that can be found on live-action movies going back to the 20s or 30s.;False;False;;;;1610230181;;False;{};gip6isd;False;t3_ktzpez;False;True;t3_ktzpez;/r/anime/comments/ktzpez/source_of_generic_anime_tropes/gip6isd/;1610272240;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mr_Zaroc;;MAL;[];;http://myanimelist.net/animelist/mr_zaroc;dark;text;t2_d2p0j;False;False;[];;"Great now I am conflicted on wether to get my snowboard or longboard out - -But what a wild ride -Love how everyone is just insanely defined and got huge back muscles, guess they must be really important to skate (and me idiot wasted all his time doing leg days)";False;False;;;;1610230234;;False;{};gip6mq3;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gip6mq3/;1610272299;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;"Aside from the ones you already mentioned: - -* Slime S2 -* Doctor Stone S2 -* The Promised Neverland S2 -* The Quintessential Quintuplets S2 -* Mushoku Tensei -* Horimiya -* Log Horizon S3 -* So I'm a Spider, so what? -* Cells at Work S2 -* Cells at Work! Code Black -* Beastars S2 -* Yuru Camp S2 -* Back Arrow";False;False;;;;1610230250;;False;{};gip6nue;False;t3_ku0fjh;False;True;t1_gip5tjm;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip6nue/;1610272316;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vagabondeluxe;;;[];;;;text;t2_6xj8vlb9;False;False;[];;This season is insane I have like 15+ anime to watch I don’t even know how to manage, it’s lit, I haven’t seen a season like this one in years;False;False;;;;1610230260;;False;{};gip6on3;False;t3_ku0fjh;False;True;t3_ku0fjh;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip6on3/;1610272328;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iSmellPantsu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_5pun5nqz;False;False;[];;Please don't watch this hot garbage lmao, it's a complete waste of time;False;False;;;;1610230311;;False;{};gip6sdt;False;t3_ku09s5;False;False;t1_gip4dve;/r/anime/comments/ku09s5/an_anime_i_can_watch_with_my_mom/gip6sdt/;1610272385;6;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;All the sequels, so much for everyone to look forward to for basically every genre. JJK is continuing as you mentioned, the new volleyball had a strong start, Horimiya had a fantastic first episode today, there's the new Spider isekai and the other isekai, Sk8;False;False;;;;1610230311;;False;{};gip6sg2;False;t3_ku0fjh;False;False;t1_gip5xmt;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip6sg2/;1610272386;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rattpack18;;;[];;;;text;t2_2uahjdtr;False;False;[];;I think I actually finished this. Also there’s an anime exactly like it. Like at one point I thought it was a spin-off or something.;False;False;;;;1610230312;;False;{};gip6sgk;False;t3_ku0acb;False;False;t3_ku0acb;/r/anime/comments/ku0acb/i_force_my_friends_to_watch_the_worst_anime_of/gip6sgk/;1610272386;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jslice4ever;;;[];;;;text;t2_2wvi51tm;False;False;[];;Aside from the 3 you mentioned, there's also The Promised Neverland, Dr. Stone, That Time I Got Reincarnated as a Slime, Laid Back Camp, Quintessential Quintuplets, Cells at Work and Cells at Work Black, Moshuko Tensei, Horiyama, SK8, Wonder Egg Priority, Spider Isekai and I could keep going. Just because YOU don't care for those other series doesn't mean you should assume no one else does either. There isn't a single day of the week this season that doesn't have something to look forward to.;False;False;;;;1610230331;;False;{};gip6tty;False;t3_ku0fjh;False;False;t1_gip6dol;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip6tty/;1610272406;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;"**to your other first-timer, subbed** - -- [Well…](https://i.imgur.com/j4MfsXU.png) - -- [Perfectly valid response to seeing an arm dangle through the ceiling.](https://i.imgur.com/yQfYoyS.png) - -- [Jesus, this face right here](https://i.imgur.com/ZmgG6K9.png) made me think for a second that she was gonna snap and *push* Yuu. Instead it was kind of the other way around--he slapped her and ran off afterwards. I still very much do not like Yuu’s mom. [](#moeshitarcher) - -- Biggest plot twist so far: [Yuu’s mom has a *living* husband?](https://i.imgur.com/9g6uSJw.png) I guess he’s always working late so it hasn’t mattered, but her actions *really* screamed “single mom extremely obsessed with her kid” to me. - -- [I just *knew* Tobi was going to find the groceries Yuu left behind.](https://i.imgur.com/MimdKwx.png) - -- [THANK YOU, I have been *wondering* why everyone from La’cryma has different names all this time.](https://i.imgur.com/O3TLNTV.png) - -- [Aww happy little kitty :3](https://i.imgur.com/xh4BzIi.png) - -- [And of course the shoes gave him away.](https://i.imgur.com/qcFLR7r.png) - -- Guess this episode was focused less on the space-time fuckery and more on Yuu’s mom fuckery. - ->Sees next-episode title - -[Oh now I have this stuck in my head.](https://youtu.be/cNZVb9IggJQ) Not that I’m complaining, it’s a banger.";False;False;;;;1610230347;;False;{};gip6v0m;False;t3_ku0k6t;False;False;t3_ku0k6t;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip6v0m/;1610272424;3;True;False;anime;t5_2qh22;;0;[]; -[];;;davallos60;;;[];;;;text;t2_2jnx7k4r;False;False;[];;It seems like it'll be a fun ride;False;False;;;;1610230364;;False;{};gip6wa0;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gip6wa0/;1610272442;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Duwang_Mn;;;[];;;;text;t2_1ahsyxqn;False;False;[];;Oh dang, you male a good point;False;False;;;;1610230378;;False;{};gip6xbq;True;t3_ku0fjh;False;True;t1_gip6sg2;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip6xbq/;1610272459;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Barangat;;;[];;;;text;t2_1399lj;False;False;[];;I don't. Watch Anime for over 25 years now, never thougt about that, would be a hassle;False;False;;;;1610230386;;False;{};gip6xvz;False;t3_ktzf5g;False;True;t3_ktzf5g;/r/anime/comments/ktzf5g/how_do_you_count_anime_youve_seen/gip6xvz/;1610272468;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;"**First Timer, Dubbed** - -&#x200B; - -So, this episode we learn that Yuu does, in fact, have a father, who apparently works ~~absolutely hellish~~ normal salaryman hours. We also learned that Yuu's mom routinely lies to him about how Yuu is doing, which works because I bet the dude hasn't seen Yuu for several years. - -I was almost expecting Yuu to confront Atori and Tobi, but he has the sense to not do something so plainly suicidal. I don't want to know what Atori would do to him while he (Atori) is already in a bad mood. - -We got some stuff about how they make the Dragon Knights, and we learned that water is more important than food, which doesn't make a ton of sense. I would imagine the opposite - it's probably easier to make a body run on low fluids than it is to run on low calories, especially with all the nonsense these people are capable of. Maybe they are secretly plants? - -I don't like Yuu's mom. She needs to get dragged to a therapist to help her process her grief from her dead family. That said, I kinda understand what made her what she is. - -[Speculation](/s ""So, Yuu and Haruka used to play in that alleyway from several episodes ago, right? And there was implication of some accident happening involving the two of them back in episode one. Yuu got hit by a car, right? That put his mom off the deep end."") - -I had to laugh when Kuina (is that Hatboy's name?) said ""His betrayal will not be tolerated"" with a completely straight face. Bet the jerk expects his own betrayal to be tolerated just fine. - -There is actually timeline desync between the the dimensions. Like, only three hours passed in Haruka's dimension despite seemingly a couple days passing on the other side - we saw Haruka sleeping at least once. - -Yuu and Haruka were trying to out-worry the other, or maybe failing to have an actual conversation, which might be foreshadowing some eventual conflict. - -Also, it was nice to see them both happy, however short-lived that might be. - -&#x200B; - -Miscellaneous thoughts: - -It seemed like Yuu touching Karasu had some sort of feedback effect. - -I'm glad that Haruka's mom ended up questioning the sack that she was wearing, even if Haruka had a decent answer. - -Haruka has apparently used that room hide things before. I bet Baron and the cat were strays. - -Haruka apparently sleeps with her window open. - -That.. march or whatever was playing at the end of the episode certainly was something. Not the music choice I would have gone for, though. - -Edit: I forgot a small detail near the beginning. There was a second one of the hatches open when they were looking at the one Karasu used, which is possibly worth noting. - -&#x200B; - -Questions - -1. No thoughts head empty. I think Karasu had a plan in the past, but that changed once he grew a conscience. Maybe I'm underselling him, but he didn't seem nearly as driven this episode as he was in the past. -2. ""Sir, that's my emotional support abused child."" In a just world, Yuu would go live with someone else while mom gets some therapy/grief counseling. In this show..? I think they'll resolve it by having mom beg for forgiveness and it will be the moment that Yuu decides to turn away from the path of the edgelord.";False;False;;;;1610230387;;False;{};gip6xww;False;t3_ku0k6t;False;False;t3_ku0k6t;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip6xww/;1610272469;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;True;[];;">if the Buddha aliens are also humans - -I'm thinking not at this point. If they were, I think we would have gotten monster imagery, not buddhist imagery. - ->Bad Karasu, you do not get to seduce the tween - -[](#breakingnews) -I don't think that's what he's doing? I feel like Haruka's clothing got you to read everything in a far too sexual manner this episode. - ->I think this does suggest that Haruka was not bumbling when she messed up his plans to run from home. - -She seems to know how to stop Yuu from being completely self destructive, even if she puts her foot in her mouth a decent amount.";False;False;;;;1610230400;;1610230583.0;{};gip6ywx;False;t3_ku0k6t;False;True;t1_gip66to;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip6ywx/;1610272486;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;I have been watching anime for years and this is the strongest seasonal lineup I have ever seen;False;False;;;;1610230406;;False;{};gip6zcy;False;t3_ku0fjh;False;True;t3_ku0fjh;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip6zcy/;1610272493;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;I think there's still stuff coming out, so maybe that's why you haven't seen much yet. Plus I still think sequels are a sign of a good season;False;False;;;;1610230440;;False;{};gip71vd;False;t3_ku0fjh;False;True;t1_gip6xbq;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip71vd/;1610272533;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;True;[];;">I don’t even want to know how neglectful you would have to be to not realize the shit your wife is putting your kid through. - -He probably comes home like once a month. He's divorced in all but name.";False;False;;;;1610230464;;False;{};gip73lh;False;t3_ku0k6t;False;False;t1_gip67gk;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip73lh/;1610272560;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDampGod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheDampGod;light;text;t2_im4vi;False;False;[];;"Well there's still quite a few shows to air and those that have only one episode, so give the season a chance. - -What did you think of shows like SK8, Back Arrow, So I'm a Spider, Horimiya and 2.43 . Also I've heard good things about Kemono Jihen and Wonder Egg looks very intriguing.";False;False;;;;1610230499;;False;{};gip766g;False;t3_ku0fjh;False;True;t3_ku0fjh;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip766g/;1610272599;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Godprime;;;[];;;;text;t2_dezxafd;False;False;[];;Idk, all the shows I listed are sequels that I know of.;False;False;;;;1610230547;;False;{};gip79q7;False;t3_ku0fjh;False;True;t1_gip6hum;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip79q7/;1610272654;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JuiceMelon;;;[];;;;text;t2_8tagnvd;False;False;[];;"Slice of Life anime like Non non Biyori, Yuru Camp, and Nichijou are family friendly - -If you looking for a Movie you can try Summer Wars";False;False;;;;1610230566;;False;{};gip7b3d;False;t3_ku09s5;False;True;t3_ku09s5;/r/anime/comments/ku09s5/an_anime_i_can_watch_with_my_mom/gip7b3d/;1610272674;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ATargetFinderScrub;;ANI a-amq;[];;https://anilist.co/user/ATargetFinderScrub/animelist;dark;text;t2_5vo76d;False;False;[];;"Hello y'all. New season starts off with a lot of terrific seasonals so far. Really happy with some of these new episodes as it already seems like a better season than anything from last year. Still got Cells at Work (both of em) and a couple more to check out this coming week. Pretty hyped for this season. - -[Last week for Reference](https://old.reddit.com/r/anime/comments/kp6wtx/weekly_seasonal_rankings_2020_yearly_rankings/ghvafot/) - - -**Week 1 Power Rankings** - -| Rank | Ep # | Anime | Comments | -|-|-|-|-| -| 1 | 1 | Quintissential Quintuplets S2 | Picked off right where we left off last season, which is excellence. New artstyle is a little hard to get used to since I really liked the S1 styles, but it is fine for the most part. Miku is back to being best grill and I cannot wait for her to win back to back MVPs again. Really liked the sisters joke at the end there as well. Waited 2 years for this and I was not disappointed. | -| 2 | 1 | Yuru Camp S2 | 3 years waiting, but I am so glad we are getting more Camp. TBH, this episode was far more tame than I expected. Some Rin moments going solo and some money making for the Outdoors club. The end scene though with Nadeshiko and Rin was really damn good and exactly what I expected from Camp. Bringing the good memories back. I expect nothing less than what S1 delivered. | -| 3 | 1 | Otherside Picnic | I was cautiously optimistic about this show going in, but the first episode was pretty solid. The whole premise of the Other Side is really cool and has a lot of potential. Main girls got guns and know how to use em which is also great to see. I see this show as a boom or bust solely off the premise of it so I am eager to see how it will fair this season. | -| 4 | 1 | Promised Neverland S2 | I somewhat liked but didn't love S1 of Neverland. However, this episode was a banger to start out the new season. A lot of tension in the woods here and running from the Dogs had me on the edge of my seat. The two new characters are really interesting though so I am pretty excited to see how they will be utilized this season. | -| 5 | 1 | Hidden Dungeon | Wow, progress romantically in the first episode? Pleasantly surprised. This show has sold out on the Ecchi premise which is great to see. The LP, editor system is pretty cool and some solid jokes were played from it. Girls are pretty uwu as well which is what you kind of want out of a show like this. Seems like exactly my type of show. | -| 6 | 1 | Uma Musume S2 | More horse girls which is a hell yea. Feels like we are going to focus on the 2 new ponies this season which I don't know how I feel about it. Either way, still a pretty solid first episode. | -| 7 | 1 | Hortensia Saga | I was pleasantly interested in the premise of this. Characters are kind of whatever, but the fight between the main dude and the Bow hero was pretty dope though. I really like these type of adventure/fantasy setting type of shows so I will probably eat this up. Definitely does not look the greatest, but that is something I can overlook. | -| 8 | 1 | Tatoeba Last Dungeon | The other Dungeon show this season that I was a little less excited about, but this was a solid first episode. The main witch girl was pretty funny for the most part. The other harem (I think it is a harem) girls look interesting as well. I see this show with a solid floor but with a limited ceiling. | -| 9 | 1 | Back Arrow | Cowboys and mechas are a strange but pretty cool combination. The first episode here was kind of hit and miss. Really do not know about the main dude at all. Kind of looks like a male Ryuko from Kill la Kill. I do see some solid potential in this one though. | -| 10 | 1 | Genkidol/Alice in Deadly School | Kind of weird how this was an extended first ep kind of. Genkidoll itself was kind of average at best as I wasn't that interested in it. Alice in Deadly school was pretty dope though. That helicopter scene had me dying (probably for the wrong reasons). So I got no clue how to judge this show. | -| 11 | 1 | Heaven's Design Team | I kind of liked this first episode. I like the animal creation concept in general and the ideas the different characters come up with are fairly intriguing. Don't know if this will keep up for 12 episodes but I will keep up with this. | -| 12 | 1 | Re Zero S2 Part II | This was kind of a really boring first episode. Felt extremely long with just a lot of exposition. Pretty disappointed by this one. | -| 13 | 1 | Bottom-Tier Chracter Tomozaki | So I don't like the main girl at all. She giving me some bad vibes. I will say this show is fun to laugh at for just the premise of the show in general but don't think I will get a serious story here. | -| 14 | 1 | LBX Girls | Transformation scenes were pretty dope. That is about all I can say about this show. Probably not keeping this one. | -| 15 | 1 | Armor Shop for Ladies and Gentelman S2 | Surprised this show got a second season. Not that great but it is a 3 min short so I will keep watching. | -| 16 | 1 | Spider Isekai | This was an extremely rough first episode. Aoi Yuuki yelled A LOT this episode. I can usually give a pass to CGI, but I really don't know about this one here. Hard Pass from me. |";False;False;;;;1610230593;;False;{};gip7d3a;True;t3_ku0qsl;False;False;t3_ku0qsl;/r/anime/comments/ku0qsl/weekly_seasonal_rankings_winter_2021_week_1/gip7d3a/;1610272704;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> -> -> -> -> I'm thinking not at this point. If they were, I think we would have gotten monster imagery, not buddhist imagery. - -I mean Miho says half the truth: Haruka was abducted by someone with higher technology, just not aliens. So what if Buddhabots are higher tech than La'cryma? - -> -I don't think that's what he's doing? - -I don't trust Karasu and I've seen that look of wonder on Haruka's face in other venues. - -> She seems to know how to stop Yuu from being completely self destructive, even if she puts her foot in her mouth a decent amount. - -Again, this is the most realistic bit about her: While she is ridiculously composed in dealing with insane shit, she is just doing her best at dealing with a difficult domestic situation. She is trying hard but even a master wouldn't get every answer right, it is just too gloomy.";False;False;;;;1610230628;;False;{};gip7fp7;False;t3_ku0k6t;False;False;t1_gip6ywx;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip7fp7/;1610272745;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"The count on MyAnimeList could be seen as questionable, since they count 1-ep OVAs for a series as their own item, so I think it's more useful to think about MAL's count of watchtime, which can be more easily compared. - -If I talk about non-watch time counts, I say ""item on MAL"" and not ""anime""--is random OVA bonus episode #4 really its own anime?";False;False;;;;1610230632;;False;{};gip7fyi;False;t3_ktzf5g;False;True;t3_ktzf5g;/r/anime/comments/ktzf5g/how_do_you_count_anime_youve_seen/gip7fyi/;1610272749;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shingg919;;;[];;;;text;t2_bm88ybb;False;False;[];;the animation is so good.;False;False;;;;1610230649;;False;{};gip7h7m;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gip7h7m/;1610272768;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ben99ny22;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ben99ny;light;text;t2_14rmpidg;False;False;[];;konosuba;False;False;;;;1610230664;;False;{};gip7i9v;False;t3_ktyy8v;False;True;t3_ktyy8v;/r/anime/comments/ktyy8v/are_there_any_mangaanime_where_the_mc_gets_sucked/gip7i9v/;1610272784;0;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;"1. Attack On Titan S4 -2. Horimiya -3. Re:Zero S2 -4. Jujutsu Kaisen -5. 2.43: Seiin High School Boys Volleyball -6. Beastars S2 -7. The Promised Neverland 2 -8. So I'm a Spider, So What? -9. Back Arrow";False;False;;;;1610230728;;False;{};gip7mzx;False;t3_ku0qsl;False;False;t3_ku0qsl;/r/anime/comments/ku0qsl/weekly_seasonal_rankings_winter_2021_week_1/gip7mzx/;1610272859;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Duwang_Mn;;;[];;;;text;t2_1ahsyxqn;False;False;[];;SK8 not my type. Back arrow seems interesting. I liked the Spider manga. Horimiya and 2.44 not my took. Kemoni Johan seems interesting. Wonder egg is not my type. Thanks for that list, ima check out some of those cause I didnt even realize they were airing.;False;False;;;;1610230745;;False;{};gip7oau;True;t3_ku0fjh;False;False;t1_gip766g;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip7oau/;1610272881;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;But this season, saying that is just objectively wrong;False;False;;;;1610230753;;False;{};gip7ow0;False;t3_ku0fjh;False;True;t1_gip5qek;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip7ow0/;1610272890;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;True;[];;"> Anyways, Haruka info dumps on Yuu, who welcomely enough, cannot possibly take the confusing from info her and has to leave. - -We've seen this a few times, which I definitely appreciate. Obviously characters aren't superhumans that can easily process all information thrown at them, especially stuff they have no experience with, and definitely not immediately. Especially kids! - -Multiple times we've seen characters imply that other characters won't understand what they're saying, or otherwise characters simply clearly indicating they don't understand. Because how could they/why would they? - -Too often characters in shows act as if they can process information faster than Usain Bolt can run a 100 meter. Which is pretty impossible. - -> Fucking change Yuu, don't vent your own spleen at him. Bitch! - -In all fairness, it is very tough to change when the only way you can begin to change is getting away from your absolutely batshit mother. You can't change when your life is basically the product of someone else's choices and they continue to own your every action, other than you rebelling. When rebelling is the only way you know *how* to create change, of course you're gonna act that way in other settings too. - -> Typical bad Asian parenting dialed up to 11. The resolution will most likely annoy me. - -I'm trying to calculate based on what I remember whether or not you'll be annoyed. Guess we'll just have to see!";False;False;;;;1610230756;;False;{};gip7p2y;True;t3_ku0k6t;False;True;t1_gip66to;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip7p2y/;1610272893;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dwilsons;;;[];;;;text;t2_qwwm7;False;False;[];;Damn that was great. Probably my favorite first episode this season. Also damn that’s a good soundtrack.;False;False;;;;1610230760;;False;{};gip7pf6;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gip7pf6/;1610272899;3;True;False;anime;t5_2qh22;;0;[]; -[];;;1832vin;;;[];;;;text;t2_drevq;False;False;[];;"haha.... - -i did that to learn german and hindi - -watched back to back doraemon, all the episodes, during work, mainly listened to it (yes, approx all 2000 in hindi, and about the thousand i could find in german) - -don't need to memorise the whole catalogue though, with these kinda childern show, it's so typical you know what's happened generally with a glance every 1-2 minutes, because they're also aimed at childern, the language structure used is also really simple making it easier to pick up the language, so i recommend it to learn a language if you don't want to put in any effort";False;False;;;;1610230786;;False;{};gip7rei;False;t3_ktx8gk;False;True;t1_gip2vgr;/r/anime/comments/ktx8gk/nodame_studying_basic_french_nodame_cantabile/gip7rei/;1610272928;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;;;[];;;;text;t2_4la0rf79;False;False;[];;"Honestly, I feel they should just do an app. Having to login every time to check is just boring and I feel they could add much more features with an app - -Edit: forget it";False;False;;;;1610230797;;1610234824.0;{};gip7s44;False;t3_ktzf5g;False;True;t1_giozyc8;/r/anime/comments/ktzf5g/how_do_you_count_anime_youve_seen/gip7s44/;1610272939;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> -> -> -> -> Miho is quite prescient. - -This leads to my speculation of what Buddhabots are. - -> -So after implying it they’re just going to outright say it then? Or is he just assuming? - -For some reason I read it as Shangri'la seems to want to corrode every dimension but you are right that we have no evidence. - -> I don’t even want to know how neglectful you would have to be to not realize the shit your wife is putting your kid through. - -Fucking salary men but yeah, this is horrid. - -> The teacher and other kids keep being used for laughs and not much more. - -Fingers crossed this just means they do something later and we need to remember they exist.";False;False;;;;1610230883;;False;{};gip7yhr;False;t3_ku0k6t;False;True;t1_gip67gk;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip7yhr/;1610273035;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;;;[];;;;text;t2_4la0rf79;False;False;[];;?;False;False;;;;1610230899;;False;{};gip7zod;False;t3_ktyy8v;False;True;t1_gip7i9v;/r/anime/comments/ktyy8v/are_there_any_mangaanime_where_the_mc_gets_sucked/gip7zod/;1610273054;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kittysprites;;;[];;;;text;t2_8m34fav1;False;False;[];;good for you! i quite enjoy counting and seeing others lists 🤗 feels like im accomplishing something even tho im watching the telly all day haha;False;False;;;;1610230932;;False;{};gip8240;True;t3_ktzf5g;False;True;t1_gip6xvz;/r/anime/comments/ktzf5g/how_do_you_count_anime_youve_seen/gip8240/;1610273092;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi deadboytyler, your post has been removed because your title is below our minimum length requirement of 4 words. Feel free to repost with a more descriptive title. - -If you're looking to get a quick question answered, like asking for [recommendations](https://www.reddit.com/r/anime/wiki/recommendations), [the source of a picture](https://www.reddit.com/r/anime/wiki/reverse_image_searching), a [watch order](https://www.reddit.com/r/anime/wiki/watch_order) or any other [general question](https://www.reddit.com/r/anime/wiki/faaq), please check our sidebar too, it might help you faster. - -[**Thank you!**](#blushubot) - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610230939;moderator;False;{};gip82nq;False;t3_ku0veb;False;True;t3_ku0veb;/r/anime/comments/ku0veb/all_anime_server/gip82nq/;1610273099;1;False;False;anime;t5_2qh22;;0;[]; -[];;;umakunaritai;;;[];;;;text;t2_2kmnb5nm;False;False;[];;Do you mean Tutturuuu~ Subaru des?;False;False;;;;1610230963;;False;{};gip84dw;False;t3_ktyzmm;False;True;t3_ktyzmm;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/gip84dw/;1610273127;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ben99ny22;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ben99ny;light;text;t2_14rmpidg;False;False;[];;what's the question?;False;False;;;;1610230963;;False;{};gip84e5;False;t3_ktyy8v;False;True;t1_gip7zod;/r/anime/comments/ktyy8v/are_there_any_mangaanime_where_the_mc_gets_sucked/gip84e5/;1610273127;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;True;[];;"> but given it’s so early into the show I predict the matter will only be deferred to later as opposed to coming to a head. - -[](#serialkillerlaugh) - -Which would you prefer to see? The matter resolved soon or deferred to later?";False;False;;;;1610230966;;False;{};gip84me;True;t3_ku0k6t;False;False;t1_gip67gk;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip84me/;1610273131;4;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;;;[];;;;text;t2_4la0rf79;False;False;[];;Is it incomplete?;False;False;;;;1610231012;;False;{};gip87x5;False;t3_ktyy8v;False;True;t1_giowjha;/r/anime/comments/ktyy8v/are_there_any_mangaanime_where_the_mc_gets_sucked/gip87x5/;1610273181;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ItchyPlatypus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ItchyPlatypus;light;text;t2_x6uza5h;False;False;[];;"First Timer Subbed - -A fast episode once again even though I feel like nothing significant happened. - -It’s very hard to not watch ahead now, these rewatches are the highlight of my day now just so I can go further down the rabbit hole. - -My main question/theory today is part of the QOTD so I’ll start it here - -1. Karasu’s plan seems simple enough. He has guilt over Future Haraka’s sacrifice, he will protect present day Haraka for both his guilt and to use her as a way to distort La’Cryma so Future Haraka survives since his objective changed once he saw Haraka prevent the flood. - -2. So we found out that Yuu’s father is actually in the picture but he stays at his ‘office’ quite a lot by the sounds of it. I assume his mother suspect there is an affair going on and he will eventually leave. With the mention that his Grandmother and Aunt were close Yuu’s Mother wants to kind of replicate that relationship by making Yuu like his aunt and thus having a good relationship with his mother. Her husband will leave eventually and thus wants Yuu to not leave her like her husband did. This is backfiring because Yuu’s aunt seems to being doing all the hard work voluntarily unlike Yuu and making Yuu hate his mother which is why she was so hurt when she asked if Yuu hated her. I hope that made sense, I think I’m kind of doing some mental gymnastics for Yuu’s mother but she doesn’t really seem that sane. I assume Karasu will confront his/Yuu’s mother which will change her perspective closer to the end of the anime.";False;False;;;;1610231074;;False;{};gip8cha;False;t3_ku0k6t;False;False;t3_ku0k6t;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip8cha/;1610273250;4;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;"**First-time watcher** - -Hey, I know that title! It's a decent comedy show by the way, just came out last year and was recently dubbed too. - -Karasu takes the same step as Atori and co., though in contrast to them there's no way he wouldn't be hunted down, and indeed it seems the remaining Knights are already planning for it. Desperation? And even without them, he's now in the same dimension as Atori and his supporters with no one to help him; I guess he might not know, but it doesn't help his prospects. - -Yuu... is useless? I thought Haruka was supposed to be the one person he trusted? She could do a better job of explaining herself, and Karasu too, but that's still a little extreme. The way he flips straight back to saying she's safe at least keeps any contrived drama at bay. He still does a Shinji-Ikari-model tram trip and later even sleeps on a bench instead of even trying to get back to anyone, in particular Haruka. More foolish than sympathy-inducing in my book, it's not like he's incapable of interacting with these kids, he only just called the group too, and if he's on the run anyway his mother won't be able to do much about it either. Or maybe he's afraid of being sent back home? Well, he certainly is a difficult case, thankfully Haruka won't let him just run away again and understands his problems only too well. - -After the brief drama about wearing something weird, Haruka's mom shows no reaction to it whatsoever. Is she really that clueless? Haruka doesn't seem like someone to pull that kind of weirdness off usually... oh, now she notices. Why not just have that dialogue earlier? - -What the hell is wrong with Yuu's mother, really? With all the emotional flip-flopping she's starting to look like a BPD case. Could also help explain him and his implied self-harming tendencies, but I doubt it was intended that way. And of course the father would be clueless and always off working. - -Atori briefly appears to helpfully tell us about Shangri-La really destroying everything and how even more is quantum, and otherwise just mope a bit. Why did you even come here then? The one interesting part is that he speaks of Shangri-La like some sort of natural cataclysm, not a particular dimension or even force, unless that's just inconsistency. Speaking of inconsistency, the dub really can't decide whether to use proper Japanese stressing (HA-ruka) or English-style (ha-ROO-ka), mostly it's the second but occasionally an instance of the first slips through, in the Haruka-house scene also with Karasu. - -One more minor comment (besides the still consistently bad artwork): Just as some people found it weird-to-sketchy how there were like 2 or 3 Haruka bathing scenes in only a handful of early episodes, there was clearly a bit of an effort to give Haruka the most revealing casual outfit you could reasonably put on a primary-school girl, a unique feature among the cast furthermore. - -Still jumping (literally) back-and-forth between sci-fi adventure, cute kids, and family drama. I guess that means that's how the rest of the show will be too. At least a proper confrontation of Yuu and Karasu should be interesting, the issue with his mother won't be dragged out much longer I hope, and anything with some actual character work is welcome.";False;False;;;;1610231084;;1610237495.0;{};gip8d67;False;t3_ku0k6t;False;False;t3_ku0k6t;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip8d67/;1610273261;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;"**First Timer** - -This is not how I thought the story would progress, well I guess it's probably more it's not how I hoped the story would progress, as it's basically what everyone predicted would happen. Now we're back in Earth dimension we're back to the kids' storyline mostly removed from the La'cryma storyline. And for whatever reason Haruka doesn't say anything about what happened to her, thereby restoring normalcy, which is just odd after what happened has been anything but normal. Turns out Haruka was only gone for 3 hours though and it's explained with an appropriately vague travel through 'space and time'. So either they can travel through time or each dimension moves through time at a different rate. Neither explanation makes perfect sense given what's happened, but I think we'll be lucky to get a full explanation at all. We also got a vague explanation of how the birds were modified, supposedly on a quantum level. Honestly I'd rather no explanation than these half-baked ones. The science behind it doesn't have to be the focus, but if it is it needs to be explained well. - -I actually quite liked the lighthearted scenes with Haruka's mum and Yuu this episode, it's still odd to have them, but I think they worked and were enjoyable this time. - -When Yuu tries to come in through the window and his mum lies in wait, the framing shows she has ascended to super villain status. But here comes /u/Vaadwaur's dreaded Yuu's mum redemption arc. The previous arc ended last episode and this episode put in place all the pieces for the creators to try and make Yuu's mum sympathetic. We got the absent husband, the overachieving sister who died in a traffic accident, the dead mum who never loved her, the she wasn't always this way and the crying when her son runs away. It's all coming together. Will Yuu's mum be redeemed by the end of the arc, will she see the error of her ways and change? - -I really liked episode 7, I thought this episode was alright, but it spoils some of my hope for the future of the series. - -*** - -**Episode Discussion Questions** - ->1. What do you think Karasu's goal/plan is? Does he even have one? Do you think if he does have one that it's stayed the same ever since the beginning? - -I think his plan is pretty simple: stay with Haruka and protect her from anyone that might attack her. His plan has pretty clearly changed from before, he went from capture Haruka, to destroy everything to protect Haruka, but I think he's pretty set on this plan now. - ->1. What are your thoughts on Yuu and his mother and the situation between them? How do you think it will be resolved? Do you even think it will be resolved? - -/u/Vaadwaur.";False;False;;;;1610231132;;False;{};gip8glw;False;t3_ku0k6t;False;False;t3_ku0k6t;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip8glw/;1610273314;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> We've seen this a few times, which I definitely appreciate. Obviously characters aren't superhumans that can easily process all information thrown at them, especially stuff they have no experience with, and definitely not immediately. Especially kids! - -Yuu is the one with the hardest time which is why I buy it: He has seen the impossible but doesn't have the DT to contextualize it. So his friend is just randomly hopping alliances and literally disappearing before his very eyes. You can be crazy after that. Hell, my only issue with Yuu is even a psychopath wouldn't cut their nails with a utility blade. - -> In all fairness, it is very tough to change when the only way you can begin to change is getting away from your absolutely batshit mother. - -You misinterpret: I am pissed at Karasu. He knows how this ended and the only thing he does is bitch at his past self? He can take action, hell he could throw his mother in the sea if thats what it takes, but nothing sickens me more than watching a tragedy repeat while just bemoaning an actor in it. Do or do not, there is no try. - -> -I'm trying to calculate based on what I remember whether or not you'll be annoyed. Guess we'll just have to see! - -I don't really want spoilers so I will merely state this hits closer to home for me than it does for you. As I've said, forgiveness is usually a waste.";False;False;;;;1610231189;;False;{};gip8knb;False;t3_ku0k6t;False;True;t1_gip7p2y;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip8knb/;1610273374;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Pzike3;;;[];;;;text;t2_aaus5;False;False;[];;"I'm a simple man, I see an anime about racing, I watch it. - - -But in all seriousness, the races are all giving me that initial D vibe that I've been craving.";False;False;;;;1610231190;;False;{};gip8kop;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gip8kop/;1610273375;3;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;True;[];;"> His mother has treated him terribly. She's toxic, and it's in his best interest to keep away from her. I'm afraid the show's gonna try to redeem her, but I really hope they don't. - -Do you think there's a way they can handle this to mend their relationship that will be acceptable, or do you think the only thing that will work for you is for their relationship to be forever fractured?";False;False;;;;1610231211;;False;{};gip8m8t;True;t3_ku0k6t;False;True;t1_gip6apj;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip8m8t/;1610273400;3;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;True;[];;"> I bet if Yuu asks really nicely Karasu will hide them both in a pocket dimension and we can avoid all of tomorrow's episode. - -Why do you want to avoid tomorrow's episode and what do you think will happen in it?";False;False;;;;1610231253;;False;{};gip8p9t;True;t3_ku0k6t;False;True;t1_gip6cqp;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip8p9t/;1610273446;3;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Meemeli;;;[];;;;text;t2_2o1rogl;False;False;[];;"They do have an app, at least on Android ([https://play.google.com/store/apps/details?id=net.myanimelist.app](https://play.google.com/store/apps/details?id=net.myanimelist.app&hl=en&gl=US)). - -But even on a browser, you don't have to login every time, if you go to the site often enough. It's only if you take a long break when you have to log in again.";False;False;;;;1610231277;;False;{};gip8r02;False;t3_ktzf5g;False;True;t1_gip7s44;/r/anime/comments/ktzf5g/how_do_you_count_anime_youve_seen/gip8r02/;1610273472;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dethnorv;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Dethnorv;light;text;t2_289s0i;False;False;[];;Who knew that Gene Simmons was a skater?;False;False;;;;1610231290;;False;{};gip8rxf;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gip8rxf/;1610273487;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MaskOfIce42;;;[];;;;text;t2_gj6onc6;False;False;[];;I have a friend who's learned Japanese specifically that way, with watching children's anime as his way to really learn the language then slowly trying to watch more and more complex series once he'd mastered that.;False;False;;;;1610231294;;False;{};gip8s80;False;t3_ktx8gk;False;True;t1_gip7rei;/r/anime/comments/ktx8gk/nodame_studying_basic_french_nodame_cantabile/gip8s80/;1610273491;1;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;"**First-Timer** - -Aoi Yu~~u~~ki, Kakushigoto; this show actually knew the future of anime! - -Yuu and Karasu will have an edgy staredown for the ages one of these days for the prize of Haruka, and it’s going to be glorious. And then Haruka will say “but I love Yuu!” And everyone will be confused (even though they don’t speak English). - -I didn’t bring some*thing* home, Mom. - -They *do* move between space and time. So my question from yesterday still holds. - -[](#hikariactually) - -“You’re not a dog or a cat.” Then maybe treat him like a human being, lady? - -Is Yuu going to join up with the crazy people now? Boo! That’s a boring move, show, and you know it! - -Yuu and Karasu both pet the doggie? THEY’RE THE SAME PERSON! I know they’re the same, but *that’s* what catches her attention? Is anyone in this show not a grade A moron? - -Them man who interdimensionally kidnapped me is in there, but don’t mind. - -[](#laughter) - -QOTD: - -1) I thought it was to burn it all down, and then I didn't know, but now I think it's to burn it all down. Except for Haruka. - -2) It's getting annoying. Strained parent/child relationships are fertile ground for characters, but they've done nothing but show us ""she's mean to him!"" His aunt died. Big whoop.";False;False;;;;1610231347;;False;{};gip8vzq;False;t3_ku0k6t;False;False;t3_ku0k6t;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip8vzq/;1610273547;3;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;True;[];;"> She needs help. - -It seems like you're saying you think the only way that this situation can be adequately handled to change how she is acting is if she gets help or is made aware that she is a problem. - -Am I right in assuming this? - -Also, what do you think they'll end up doing? Just putting it off? Finding some way to just excuse her actions? Or her actually getting help and told that she's the problem?";False;False;;;;1610231364;;False;{};gip8x4g;True;t3_ku0k6t;False;True;t1_gip6d01;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip8x4g/;1610273564;2;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;True;[];;"> Biggest plot twist so far: Yuu’s mom has a living husband? I guess he’s always working late so it hasn’t mattered, but her actions really screamed “single mom extremely obsessed with her kid” to me. - -If it means anything, I actually forgot that her husband was still alive. Whoops.";False;False;;;;1610231445;;False;{};gip92z4;True;t3_ku0k6t;False;True;t1_gip6v0m;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip92z4/;1610273653;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lle0nx3;;;[];;;;text;t2_nih5n;False;False;[];;So this is basically Initial D, but with skate boards and Dio... Count me in!;False;False;;;;1610231446;;False;{};gip932e;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gip932e/;1610273654;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> Then stop making him too uncomfortable to use the door, bitch. - -Adolescents traditionally begin leaving the house by alternative means anyways, she is again just trying to keep Yuu behind developmental markers. -> Go die. This is the worst thing you could have said. - -Oh yeah, I literally felt this. Nostalgia is not always a good thing. - -> She's not a single mom? I was sure she was. Though, I guess if her husband rarely comes home, they're divorced in all but name. - -Japan I guess. With them it is slightly different, Miyuki gets to keep playing a house wife and the father has pictures and the social standing of a family man and neither of them have to bother trying with each other. - -> What makes this dimension depressing? Isn't it basically better in every way than your own? - -Some people like the fire and brimstone dimensions. I vaguely get where he's coming from but agree he is just sour grapes by now. - -> -It took you like 16 hours -to figure this out? - -She couldn't accept that Yuu had the stones to stay out all night. - -> His mother has treated him terribly. She's toxic, and it's in his best interest to keep away from her. I'm afraid the show's gonna try to redeem her, but I really hope they don't. - -Sigh, Asia and parenting beliefs.";False;False;;;;1610231615;;False;{};gip9fl9;False;t3_ku0k6t;False;True;t1_gip6apj;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip9fl9/;1610273837;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BurningFredrick;;MAL;[];;https://myanimelist.net/profile/BurningFredrick;dark;text;t2_74w5s;False;False;[];;"First timer - sub - -No real surprise but Yuus Mothers Sister is dead, also probably got Isekaied if she died in a traffic accident - -Outside of the last 30 secs or so with Yuu & Karasu interactions and what this could lead to, I didn’t really care for this episode. We get some extra exposition in that the Dragon Knights are all basically Genetically engineered but Quantum instead from Atori, but nothing else I can find worth commenting on. - -Hopefully tomorrows a bit more interesting. - -QOTD - -What do you think Karasu's goal/plan is? Does he even have one? Do you think if he does have one that it's stayed the same ever since the beginning? - -1) I highly doubt he has one at the moment outside of protecting Haruka, probably realises he going to disappear at some stage so will try find a way for make sop Yuu can protect her I guess. - -What are your thoughts on Yuu and his mother and the situation between them? How do you think it will be resolved? Do you even think it will be resolved? - -2) She undermining her own goal with every step of the way, unless she some how realise this I can't see any sort of resolution to the conflict.";False;False;;;;1610231616;;1610233097.0;{};gip9fnr;False;t3_ku0k6t;False;True;t3_ku0k6t;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip9fnr/;1610273838;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610231647;moderator;False;{};gip9hy1;False;t3_ku146n;False;True;t3_ku146n;/r/anime/comments/ku146n/my_anime_list_question/gip9hy1/;1610273874;1;False;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;"> would Yuu or Haruka be more fatal? - -I'm going to guess Yuu by the end, if only because there's two of them for Haruka to shout at right now. - ->Is Yuu's dad alive and just a crazy hard worker? - -There were also three spaces at the dinner table. Not sure if we've seen that before today. - ->as Corpse Princess showed - -And he doesn't even have a sizable bosom for us to ogle!";False;False;;;;1610231658;;False;{};gip9iq1;False;t3_ku0k6t;False;False;t1_gip66to;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip9iq1/;1610273885;5;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDampGod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheDampGod;light;text;t2_im4vi;False;False;[];;The ones that aren't your type, is that just from the synopsis or from watching the first episode. Because its always worth giving that first episode a try, you never know you might find something that surprises you.;False;False;;;;1610231692;;False;{};gip9l6h;False;t3_ku0fjh;False;False;t1_gip7oau;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip9l6h/;1610273923;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;True;[];;"> I had to laugh when Kuina (is that Hatboy's name?) said ""His betrayal will not be tolerated"" with a completely straight face. Bet the jerk expects his own betrayal to be tolerated just fine. - -[](#serialkillerlaugh) - -Based on this, I expect you to be laughing tomorrow when something else is said, as well. - -> I think they'll resolve it by having mom beg for forgiveness and it will be the moment that Yuu decides to turn away from the path of the edgelord. - -When do you predict this will happen? Soon-ish, or later on in the show?";False;False;;;;1610231694;;False;{};gip9lbs;True;t3_ku0k6t;False;False;t1_gip6xww;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip9lbs/;1610273925;3;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;"> I don’t even want to know how neglectful you would have to be to not realize the shit your wife is putting your kid through. - -Sadly, it's pretty easy if he's at work all the time, or even travels for work.";False;False;;;;1610231713;;False;{};gip9mmn;False;t3_ku0k6t;False;False;t1_gip67gk;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip9mmn/;1610273944;4;True;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;Don't mark them as completed, that would be the only way I can think of;False;False;;;;1610231759;;False;{};gip9pwm;False;t3_ku146n;False;True;t3_ku146n;/r/anime/comments/ku146n/my_anime_list_question/gip9pwm/;1610273994;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;well it's by the same studio also (Studio white fox);False;False;;;;1610231764;;False;{};gip9q8z;False;t3_ktyzmm;False;False;t3_ktyzmm;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/gip9q8z/;1610273999;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> -> -> -> -> I'm going to guess Yuu by the end, if only because there's two of them for Haruka to shout at right now. - -Touche...but there are also two people to yell Haruka! - -> -There were also three spaces at the dinner table. Not sure if we've seen that before today. - -Absolutely not, technically this is a bit of a wham in that regard, but it doesn't fail the story so I will roll with it. - -> -And he doesn't even have a sizable bosom for us to ogle! - -And his cosplay isn't even cool or unique. Give me our snack monster any day.";False;False;;;;1610231776;;False;{};gip9r48;False;t3_ku0k6t;False;False;t1_gip9iq1;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gip9r48/;1610274012;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Duwang_Mn;;;[];;;;text;t2_1ahsyxqn;False;False;[];;Synopsis. I'm gonna watch the first episode but the synopsis usually does it for me. I got pretty accurate after I forced myself through anime that had summaries and posters that put me off.;False;False;;;;1610231839;;False;{};gip9vl1;True;t3_ku0fjh;False;True;t1_gip9l6h;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gip9vl1/;1610274080;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;True;[];;"> It’s very hard to not watch ahead now, these rewatches are the highlight of my day now just so I can go further down the rabbit hole. - -I am so glad to hear you are enjoying this show! As a rewatcher I am enjoying things just as much as I was the first time around. *Even with* people pointing out some of the weak points that I didn't notice myself before. - -> I assume Karasu will confront his/Yuu’s mother which will change her perspective closer to the end of the anime. - -[](#serialkillerlaugh) - -Intriguing prediction. We'll see if you are right!";False;False;;;;1610231918;;False;{};gipa1cy;True;t3_ku0k6t;False;True;t1_gip8cha;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipa1cy/;1610274166;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Pixelsaber;;;[];;;;text;t2_ofuxw;False;False;[];;I would prefer the former. Yuu has a lot more than just his awful mother to contend with, and we're already a third into the series so it's a good spot to start tackling some of his narrative.;False;False;;;;1610231921;;False;{};gipa1jv;False;t3_ku0k6t;False;False;t1_gip84me;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipa1jv/;1610274169;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> -> -> -> -> So they really did just forget she VANISHED once already. Cassandra Miho gets it right and nobody believes her. - -I view this as another Shangri'la clue. - -> So Narnia isn't synced exactly with Earth - -I am not huge on introducing new mechanics but we will see. - -> I bet if Yuu asks really nicely Karasu will hide them both in a pocket dimension and we can avoid all of tomorrow's episode. - -We both think it is the obvious choice but who knows?";False;False;;;;1610232010;;False;{};gipa7yl;False;t3_ku0k6t;False;True;t1_gip6cqp;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipa7yl/;1610274266;2;True;False;anime;t5_2qh22;;0;[]; -[];;;monsieurvampy;;;[];;;;text;t2_453ax;False;False;[];;"**First Timer, subbed** - - -I think Karasu is just responding to obligation. He probably plans on fading out of this dimension. As Karasu is future Yuu, hopefully he can part some words of wisdom that a young kid can't figure out. - - - -Baron is the dog. Does the cat have a name? Maybe the anime should focus on the animals because Haruka and Yuu drive me crazy at times.";False;False;;;;1610232044;;False;{};gipaabz;False;t3_ku0k6t;False;False;t3_ku0k6t;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipaabz/;1610274300;3;True;False;anime;t5_2qh22;;0;[]; -[];;;keithohara;;;[];;;;text;t2_gbzf7q;False;True;[];;Use anime plus;False;False;;;;1610232048;;False;{};gipaanh;False;t3_ku146n;False;True;t3_ku146n;/r/anime/comments/ku146n/my_anime_list_question/gipaanh/;1610274304;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yiendubuu;;;[];;;;text;t2_7ancze9l;False;False;[];;"I was smiling ear to ear the whole time(except when Shadow crashed Reki's board, fuck I wanted to punch the mf). Reki is the epitome of happiness, he looks like the typa person to encourage you all the time. I actually thought the anime was gonna be about Reki teaching Langa how to skate and then they go to that big race, but Langa surprised me so much? That boy took everything he knew from snowboarding and adapted it into skateboarding in such a short period of time. I was cheering on him so much when he was competing with Shadow. The dynamic between Reki and Langa is already amazing, can't wait for them to develop their friendship even more.The visuals and soundtrack are amazing too, I'm excited for more godly animation from Bones once the races start getting intense. - -I honestly didn't expect it to be this good, but damn does it have me hooked now! - -Edit: Forgot to add, the ED is so feel good and chill, it's gonna be one of the few EDs I actually stay to watch";False;False;;;;1610232091;;1610232299.0;{};gipadoz;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipadoz/;1610274351;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Batmanhasgame;;ANI;[];;http://anilist.co/animelist/8203/ImBatman;dark;text;t2_7s1kj;False;False;[];;While its not the traditional street skating show I want it to be it was for sure entertaining. One day I hope we get a real street skating anime though.;False;False;;;;1610232091;;False;{};gipadpn;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipadpn/;1610274351;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> Yuu getting jealous of his future self, awkward. - -This is an ourobouros of edge, unfortunately. Cause and effect right in front of each other. - -> -> -> Yay Yuu finally standing up to his mum. - -Hopefully something comes of that.";False;False;;;;1610232168;;False;{};gipaj2n;False;t3_ku0k6t;False;True;t1_gip6d01;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipaj2n/;1610274435;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;">Broken clock's right twice a day. - -In her role as the true villain, Miho already knows everything that is going to happen. - ->Go die. This is the worst thing you could have said. - ->Because you have worse communication skills than the average raccoon. - -Bad parents can have a little gaslighting, as a treat? - ->What makes this dimension depressing? Isn't it basically better in every way than your own? - -I kinda figured that Atori is the type to not be having a good time unless he's killing something. All work and no monsters to kill make Atori a dull boy.";False;False;;;;1610232169;;False;{};gipaj6i;False;t3_ku0k6t;False;True;t1_gip6apj;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipaj6i/;1610274436;3;True;False;anime;t5_2qh22;;0;[]; -[];;;zsmg;;;[];;;;text;t2_ivuw5;False;False;[];;"> Am I right in assuming this? - -Correct. - -> Also, what do you think they'll end up doing? - -[spoiler](/s ""Isn't Haruka going to use her powers to show Yuu what happened to his mom, and he confronts her with it? I suppose I'll find out tomorrow."")";False;False;;;;1610232172;;False;{};gipajda;False;t3_ku0k6t;False;True;t1_gip8x4g;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipajda/;1610274439;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;This is very very decent. The animation is slick and the final scene with fireworks is beautiful. Also that ED is a vibe.;False;False;;;;1610232279;;False;{};gipaqxh;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipaqxh/;1610274554;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;">When do you predict this will happen? Soon-ish, or later on in the show? - -The pacing of this show kinda escapes me, at the moment. Right now, let's go with.. episode 12ish as part of the midshow climax.";False;False;;;;1610232315;;False;{};gipatfl;False;t3_ku0k6t;False;True;t1_gip9lbs;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipatfl/;1610274593;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Fighterdoken33;;;[];;;;text;t2_nfc4s;False;False;[];;In the west, somewhere in between Goku and Pikachu, i would venture to say. In Japan, Sazae Isono probably?;False;False;;;;1610232328;;1610235536.0;{};gipaudz;False;t3_ku19s2;False;False;t3_ku19s2;/r/anime/comments/ku19s2/hi_guys_and_girls_ive_got_a_huge_question_for_you/gipaudz/;1610274608;3;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;True;[];;"> Speaking of inconsistency, the dub really can't decide whether to use proper Japanese stressing (HA-ruka) or English-style (ha-ROO-ka), mostly it's the second but occasionally an instance of the first slips through, in the Haruka-house scene also with Karasu. - -I accidentally had the dub on a few episodes ago because on my dual-audio copy it's the first track and I forgot to switch it to the second track.... and the first thing I heard was ""Ha - roo -ka!"" and immediately I wanted to bash my head repeatedly against a rock. - -[](#frustrated) - -For real, I might actually find dubs watchable if they'd at least pronounce the names right...";False;False;;;;1610232337;;False;{};gipav0d;True;t3_ku0k6t;False;True;t1_gip8d67;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipav0d/;1610274616;3;True;False;anime;t5_2qh22;;0;[]; -[];;;manga-reader;;;[];;;;text;t2_gnj2435;False;False;[];;"Not OP, but therapy for one. Have the show depict Yuu and his mother visit a therapist, but I doubt they are gonna do that. - -I guess, communication is a start; explore her past and have her talk with Yuu, I suppose. Will be interesting to see if the show does that.";False;False;;;;1610232356;;False;{};gipawbn;False;t3_ku0k6t;False;True;t1_gip8m8t;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipawbn/;1610274637;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mindiBobo;;;[];;;;text;t2_7gwhxrkv;False;False;[];;Pikachu.;False;False;;;;1610232384;;False;{};gipay9p;False;t3_ku19s2;False;True;t3_ku19s2;/r/anime/comments/ku19s2/hi_guys_and_girls_ive_got_a_huge_question_for_you/gipay9p/;1610274667;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> Perfectly valid response to seeing an arm dangle through the ceiling. - -At least Haruka isn't one of those jaded protagonists. -> -> -> Jesus, this face right here -> made me think for a second that she was gonna snap and push Yuu. Instead it was kind of the other way around--he slapped her and ran off afterwards. I still very much do not like Yuu’s mom - -This ep somehow made the wonky face work actually enhance things rather than kick me out of a scene. Except for fish eye Haruka mom. - -> I guess he’s always working late so it hasn’t mattered, but her actions really screamed “single mom extremely obsessed with her kid” to me. - -Yeah, that honestly is a good twist, it both explains how she has the time to do this and how much worse Yuu's home life is. If his dad were dead he could pretend that things could be better but no, Yuu is pretty doomed any way you slice it. - -> -And of course the shoes gave him away. - -Extremely Japan and yet we all caught that.";False;False;;;;1610232430;;False;{};gipb1jc;False;t3_ku0k6t;False;True;t1_gip6v0m;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipb1jc/;1610274716;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;"> Extremely Japan and yet we all caught that. - -Would have happened in my house too, we're used to taking off our shoes at the door and generally our guests do as well.";False;False;;;;1610232499;;False;{};gipb6qk;False;t3_ku0k6t;False;True;t1_gipb1jc;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipb6qk/;1610274792;2;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;True;[];;"> The previous arc ended last episode and this episode put in place all the pieces for the creators to try and make Yuu's mum sympathetic. We got the absent husband, the overachieving sister who died in a traffic accident, the dead mum who never loved her, the she wasn't always this way and the crying when her son runs away. It's all coming together. Will Yuu's mum be redeemed by the end of the arc, will she see the error of her ways and change? - -What do you think would be required to make a potential redemption more believable and acceptable?";False;False;;;;1610232504;;False;{};gipb73p;True;t3_ku0k6t;False;False;t1_gip8glw;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipb73p/;1610274798;5;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;True;[];;"> You misinterpret: I am pissed at Karasu. He knows how this ended and the only thing he does is bitch at his past self? - -Ahhh, okay. I was wondering if you were meaning that, but you had said Yuu so I wasn't sure and assumed incorrectly! - -> I don't really want spoilers so I will merely state this hits closer to home for me than it does for you. - -Damn... I'm sorry to hear that, dude. - -> As I've said, forgiveness is usually a waste. - -What would be required for you to accept a potential redemption of Yuu's mother? Is there any way they could pull it off that would make it believable?";False;False;;;;1610232649;;False;{};gipbhun;True;t3_ku0k6t;False;False;t1_gip8knb;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipbhun/;1610274961;5;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Shows the Silver Award... and that's it."", 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'icon_width': 512, 'id': 'gid_1', 'is_enabled': True, 'is_new': False, 'name': 'Silver', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;True;[];;"In what universe does this season, of all seasons, look lackluster? Have you actually looked at the seasonal chart? First off, there are like 14 noteworthy sequels airing. If you were a fan of any of the following: - -- Attack on Titan -- The Promised Neverland -- Dr. Stone -- That Time I got Reincarnated as a Slime -- Re:Zero -- Quintessential Quintuplets -- Beastars -- Cells at Work -- Log Horizon -- Seven Deadly Sins -- Yuru Camp -- World Trigger -- Non Non Biyori -- Uma Musume - -there is a new season for you to enjoy this season. The sequels alone make this season one of the most noteworthy in recent years. I will personally be following 9 of these, and that would probably be 11 if I'd seen Attack on Titan or Log Horizon yet. - -But there is absolutely no shortage of promising original series either. [Horimiya](https://myanimelist.net/anime/42897/Horimiya) is an adaptation of a beloved romance manga and it's being helmed by a fantastic director in Masashi Ishihama, and the first episode has had great reviews so far from what I've seen. [Mushoku Tensei](https://myanimelist.net/anime/39535/Mushoku_Tensei__Isekai_Ittara_Honki_Dasu) is one of the most noteworthy isekai stories out there and is getting a very special production, it looks like it might be really good and visually stunning. A Cells at Work spin-off manga called [Cells at Work Black](https://myanimelist.net/anime/41694/Hataraku_Saibou_Black_TV) is here, which is the same kind of thing but inside an unhealthy body, which makes for an interesting contrast, especially while the sequel to the original airs alongside it. [So I'm a Spider, So What?](https://myanimelist.net/anime/37984/Kumo_Desu_ga_Nani_ka) looks to be a very solid and unique isekai series, and I've also heard largely good things about its opening episode. I've seen a bunch of people hyping up [The Low Tier Character ""Tomozaki-kun""](https://myanimelist.net/anime/40530/Jaku-Chara_Tomozaki-kun) and apparently it also had a solid first episode. [SK∞](https://myanimelist.net/anime/42923/SK%E2%88%9E) is an anime original series from studio Bones and the director of Banana Fish and Free, and looks to be stylish and gorgeous. [Otherside Picnic](https://myanimelist.net/anime/41392/Urasekai_Picnic) seems like a unique and awesome comination of yuri romance and post-apcoalyptic adventure, and I've heard good things about the source material. [2.43: Seiin Koukou Danshi Volley-bu](https://myanimelist.net/anime/40679/243__Seiin_Koukou_Danshi_Volley-bu) apparently had a very good first episode. [Wonder Egg Priority](https://myanimelist.net/anime/43299/Wonder_Egg_Priority) is my most anticipated show this season, because the trailer was amazing and it has some very promising staff behind it. And [Vlad Love](https://myanimelist.net/anime/39990/Vlad_Love) and [Back Arrow](https://myanimelist.net/anime/40964/Back_Arrow) both have beloved staff behind them and seem to have made solid first impressions (the former only has one episode out and the rest doesn't come till February, but still). And who knows how many surprise hits we might get. - -That is 14 notable sequels, and 11 super promising new series to be out. Most seasons have maybe 10 good shows overall, while this season has *all of this* and *potentially even more* as options to watch for the next three months. Like, holy fuck, that's a ridiculous selection of stuff to watch. And that's not even getting into continuations of Higurashi, Jujutsu Kaisen, and others. Unless you literally hated the first seasons to all of these other shows are bad and there is only one kind of show you want to watch, I cannot fathom how someone can view this season as lackluster.";False;False;;;;1610232680;;1610233249.0;{'gid_1': 1};gipbk1t;False;t3_ku0fjh;False;True;t3_ku0fjh;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gipbk1t/;1610274994;6;True;False;anime;t5_2qh22;;1;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;">Sazae Isono - -Who?";False;False;;;;1610232700;;False;{};gipblhp;False;t3_ku19s2;False;True;t1_gipaudz;/r/anime/comments/ku19s2/hi_guys_and_girls_ive_got_a_huge_question_for_you/gipblhp/;1610275015;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> We also learned that Yuu's mom routinely lies to him about how Yuu is doing, which works because I bet the dude hasn't seen Yuu for several years. - -Keeping up the domestic charade is the Japanese way. - -> We got some stuff about how they make the Dragon Knights, and we learned that water is more important than food, which doesn't make a ton of sense. - -My thought would be they are somewhat less organic than expected and they draw dimensional energy or something to act. Totally just borrowing from other materials, though. - -> Also, it was nice to see them both happy, however short-lived that might be. - -That particular scene gives me more hope that the showrunner knew what he was doing than most of the first third of the show.";False;False;;;;1610232727;;False;{};gipbndo;False;t3_ku0k6t;False;True;t1_gip6xww;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipbndo/;1610275044;2;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;True;[];;"> Yuu and Karasu both pet the doggie? THEY’RE THE SAME PERSON! I know they’re the same, but that’s what catches her attention? Is anyone in this show not a grade A moron? - -Hahaha maybe they looked the exact same to her when doing it. - - -> It's getting annoying. Strained parent/child relationships are fertile ground for characters, but they've done nothing but show us ""she's mean to him!"" His aunt died. Big whoop. - -What do you predict they'll do with this relationship between Yuu and his mother?";False;False;;;;1610232739;;False;{};gipbo7o;True;t3_ku0k6t;False;True;t1_gip8vzq;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipbo7o/;1610275057;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Poli_Sci_27;;;[];;;;text;t2_3vook9u8;False;False;[];;Pretty hard click bait. Find the stuff on MAL that’s a 2 or 3 rather than a 6.5 if you really want it to be the “worst”. Try watching Conception.;False;False;;;;1610232759;;False;{};gipbpk9;False;t3_ku0acb;False;False;t3_ku0acb;/r/anime/comments/ku0acb/i_force_my_friends_to_watch_the_worst_anime_of/gipbpk9/;1610275077;5;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;True;[];;Any predictions for tomorrow?;False;False;;;;1610232768;;False;{};gipbq7g;True;t3_ku0k6t;False;True;t1_gip9fnr;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipbq7g/;1610275087;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Starpric;;;[];;;;text;t2_9iqmpyl7;False;False;[];;Remember one thing: do not ask this question, you are starting a war);False;False;;;;1610232802;;False;{};gipbsjx;False;t3_ku19s2;False;True;t3_ku19s2;/r/anime/comments/ku19s2/hi_guys_and_girls_ive_got_a_huge_question_for_you/gipbsjx/;1610275121;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;because if everyone had the choice everyone would choose the military police, by making it only for the top 10 it acts as a motivation for soldiers to improve and train harder to be able to qualify;False;False;;;;1610232858;;False;{};gipbwih;False;t3_ku1f3f;False;False;t3_ku1f3f;/r/anime/comments/ku1f3f/why_does_the_military_in_attack_on_titan_allow/gipbwih/;1610275181;28;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610232879;;False;{};gipby1m;False;t3_ku1f3f;False;True;t3_ku1f3f;/r/anime/comments/ku1f3f/why_does_the_military_in_attack_on_titan_allow/gipby1m/;1610275204;1;True;False;anime;t5_2qh22;;0;[]; -[];;;magnumcyclonex;;;[];;;;text;t2_3c2cus1r;False;False;[];;"Great first episode! I liked the first episode. It's not too cliche (maybe a little) and has some good humor and decent characters to start with. - -Main character Reki is an amateur skater involved in some sort of midnight underground skate racing scene with wagers of all kinds. Langa is this new transfer student (half CAN, half JPN) who has a snowboard background. Langa can't skate, or can he?! - -*Edit: I loved the way the show visualized the snowboarding POV through Langa's eyes and slowly transitioned them back to his skateboarding. He starts to catch up and the race scene from that point on was epic. And even the cheap firework theatrics by Shadow played into his favor after doing some snowboard grind tricks. Pretty dope!* - -This show resonates with me less because of the skater scene or the midnight underground drifting (thanks Initial D), but because years ago I got a longboard to practice summer time snowboarding. Yeah, not exactly the same, but similar, and being on a board is a lot of fun when you follow safety guidelines and wear protective gear. - -Though the show doesn't really advocate safety as it's for entertainment purposes, if this show inspires you to try skating or snowboarding (or cycling or rollerblading-we have Air Gear for that), almost ALWAYS wear a helmet for your own sake please.";False;False;;;;1610232879;;1610233556.0;{};gipby3b;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipby3b/;1610275204;2;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;True;[];;"[](#serialkillerlaugh) - -[](#serialkillerlaugh) - - -[](#serialkillerlaugh)";False;False;;;;1610232880;;False;{};gipby68;True;t3_ku0k6t;False;False;t1_gipa1jv;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipby68/;1610275206;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;It wouldn't have worked as clearly at your house, mind you, because your father and brother. Miyuki can make this assumption because men's shoes in a house with two females.;False;False;;;;1610232896;;False;{};gipbz9x;False;t3_ku0k6t;False;True;t1_gipb6qk;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipbz9x/;1610275222;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610232901;;1610233204.0;{};gipbzmy;False;t3_ku1f3f;False;False;t3_ku1f3f;/r/anime/comments/ku1f3f/why_does_the_military_in_attack_on_titan_allow/gipbzmy/;1610275227;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;">We haven’t seen nor heard Yuu’s father yet and I already hate him. - -It really is amazing how easy it can be to write a completely unlikeable character. - ->Also, the topic of Haruka having gone missing seemingly gets dropped the moment they confirm she has reappeared and there is no meaningful follow-through. - -I wonder if this is a sign of less-than-thorough writing, or a sign that she has just vanished for a while before. I think Ai said something about Haruka not always keeping her cell with her. - ->You’d think at least one of them would have gone to see if she was truly alright. - -""Our friend? She said she was fine and of course she has never lied about anything except all that supernatural stuff that we accused her of lying about."" - -In all seriousness, yeah. She literally vanished in front of their eyes and not even the teacher is gonna call in the morning to check on her. Wild.";False;False;;;;1610232920;;False;{};gipc107;False;t3_ku0k6t;False;False;t1_gip67gk;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipc107/;1610275248;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;Why are they wasted? They would have the best of the best protecting the king.;False;False;;;;1610232939;;False;{};gipc2c4;False;t3_ku1f3f;False;False;t3_ku1f3f;/r/anime/comments/ku1f3f/why_does_the_military_in_attack_on_titan_allow/gipc2c4/;1610275267;9;True;False;anime;t5_2qh22;;0;[]; -[];;;spacepenguin87;;;[];;;;text;t2_qxd3i;False;False;[];;I've been saying it for awhile now, how I'd love to have a snowboarding anime. I guess this'll have to do for now.;False;False;;;;1610232953;;False;{};gipc3ea;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipc3ea/;1610275284;6;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;True;[];;"Ahh, I'm fucking dumb, I thought you were someone else. When I saw you in my replies quoting me asking you that, I was like... - -""Did I really just ask a rewatcher what they think will happen in a show they've already seen?"" - -[](#deflate)";False;False;;;;1610232991;;False;{};gipc5y3;True;t3_ku0k6t;False;True;t1_gipajda;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipc5y3/;1610275322;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610233004;;False;{};gipc6t0;False;t3_ku19s2;False;True;t3_ku19s2;/r/anime/comments/ku19s2/hi_guys_and_girls_ive_got_a_huge_question_for_you/gipc6t0/;1610275336;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610233024;;False;{};gipc86z;False;t3_ku19s2;False;True;t3_ku19s2;/r/anime/comments/ku19s2/hi_guys_and_girls_ive_got_a_huge_question_for_you/gipc86z/;1610275357;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> Ahhh, okay. I was wondering if you were meaning that, but you had said Yuu so I wasn't sure and assumed incorrectly! - -Yeah, I realized that I wasn't clear on second reading. You see, to me the obnoxious person is Karasu who gathered all this power and barely does anything with it. Look, having mentored/raised kids he just pisses me off. - -> Damn... I'm sorry to hear that, dude. - -You get over it or you dress like a The Crow reject for life. I've made my choice. - -> What would be required for you to accept a potential redemption of Yuu's mother? Is there any way they could pull it off that would make it believable? - -Haruka rewrites reality so that Miyuki's break down is cleared up nearly immediately.";False;False;;;;1610233054;;False;{};gipca8i;False;t3_ku0k6t;False;False;t1_gipbhun;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipca8i/;1610275387;3;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;True;[];;Guess we'll see what happens...heh.;False;False;;;;1610233112;;False;{};gipcedd;True;t3_ku0k6t;False;True;t1_gipatfl;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipcedd/;1610275446;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;">My thought would be they are somewhat less organic than expected - -Damn, I didn't even go down that path in my head, dunno why. Good call. - ->That particular scene gives me more hope that the showrunner knew what he was doing than most of the first third of the show. - -[](#rinkek)";False;False;;;;1610233136;;False;{};gipcg4i;False;t3_ku0k6t;False;True;t1_gipbndo;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipcg4i/;1610275471;2;True;False;anime;t5_2qh22;;0;[]; -[];;;M_onStar;;;[];;;;text;t2_2lnxk39d;False;False;[];;Dope.;False;False;;;;1610233165;;False;{};gipci79;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipci79/;1610275502;3;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;True;[];;"Interesting. Do you think depicting them seeing a therapist would detract from the overall narrative / put too much importance on the significance of their relationship to the anime as a whole? - -> manga-reader - -1 point 13 minutes ago - -Not OP, but therapy for one. Have the show depict Yuu and his mother visit a therapist, but I doubt they are gonna do that. - -I guess, communication is a start; explore her past and have her talk with Yuu, I suppose. Will be interesting to see if the show does that. - -[](#serialkillerlaugh)";False;False;;;;1610233176;;False;{};gipcj0w;True;t3_ku0k6t;False;True;t1_gipawbn;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipcj0w/;1610275514;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PerfectPublican;;MAL;[];;https://myanimelist.net/animelist/PerfectPublican;dark;text;t2_9qcqzr0;False;False;[];;"This season is nuts. Picking up *way* more than I normally would with all these second seasons. Also, changing up my Higurashi spoiler tag considering it’s so obvious now that Gou shouldn’t be watched without the original first. - -Gotta say. Uma Musume being near the bottom is in no way what I was expecting. Yuru Camp better enjoy it’s time at the top cause Nonners is right around the corner :D - -Rank|Anime|Change|Score|Comments -:--|:-- |:--|:--|:-- -1|Yuru Camp S2|-|8-9|God I just LOVE this new opening. Yuru Camp hasn't lost one single step. Immediately set up it's vibe through Rin perfectly. I love the choice to show her finding her own love for camping as the opening. A window into the normally stoic Rin *and* the perfect window into the atmosphere of the show. As usual, the background art is stellar, and the characters are fun. Hype to see where they go this season. -2|Cells at Work Black|-|8|Something fascinating here that I wasn't expecting is the dual purpose of showing the damage you do to your body by not being healthy while also lambasting bad work environments that directly contribute to unhealthy living. It's honestly really smart. I'm also impressed by the intensity that the show brought right from the get go, making the trials feel that much more brutal. Quite excited to see if this can keep it up. -3|Horimiya|-|7-8|This is one of the very few shows in which I've read the manga before the show. Must say, I'm both incredibly pleased and slightly disappointed. Pleased because this show looks *great*. If they keep up this level of production, it'll be one of my favorites of the season for sure. Disappointed because they're moving a *bit* quick into the romance part (though that could be me misremembering the early parts of the manga). They are relying a bit too much on fans having a sense of the gang's personalities to get to the nice SoL that comes with this series. I don't hate it though because at its best this series is one of the more wholesome and grounded looks at romance in japanese media. So I'm trusting the show for now. -4|Higurashi Gou|-|7-8|[S1 Watcher](/s ""Another episode that makes it clearer that the original is a much watch. It makes the Rike/Hanyu moment muuuch more powerful, and Rika's struggle much more clear. Anyways, wild episode. Oishi went HAM. Such a brutal death. The Rika/Hanyu scene was really powerful. 5 more loops..."") -5|Cells at Work S2|-|7-8|Man, this is exactly what I needed this week. The sheer positivity that flows through this show is such a joy to watch, and genuinely warms my heart. Anyways, solid first episode! Just pure Cells at Work. Super fun edutainment with some adorable characters. Backwards Cap's story was adorable and inspirational. -6|Attack on Titan S4|-|7|New Years Hiatus -7|Re:Zero S2 P2|-|7|Ooook. Intriguing start. While I'm sad that we lose Puck, especially after he became one of my favorites during the OVA, I'm extremely excited to finally get some answers tied to Emilia's past here. It makes sense that she wouldn't be able to handle the past in the tests if she had no experience with it in the first place. Everything's coming together now. Good thing I'm rewatching the first part soon. -8|Promised Neverland S2|-|7|Welp, one thing is for certain. I despise the character design on the faces. Regardless, intriguing enough episode. The first season rested on an excellent atmosphere to create it's thriller in an enclosed space, and now that they're out I'm curious to see how it will distinguish itself. Off this ep, it looks like it will be settling into world building for that, which I love. So far I'm fascinated by what I see. ED is really lovely. -9|Gekidol|-|7|Legit, what is with this trend of 2D idol sequences? I love it. Anyways, color me intrigued! They blew by a lot, but the worldbuilding here is a pretty fun hook for sure. I love the ideal of looking at idols more as actors. The art was quite good at times too, though the animation was fairly standard. Serina didn't impress me, and I didn't like the ""copying savant"" thing, but she has room to grow. -10|2.43 Volleyball|-|6-7|This series has one thing that it needs to do: distinguish itself from Haikyuu, and at the moment, that isn't happening. This lead is basically Kageyama + suicide, and that just feels predictable. I think the setting will help, and the show seems more invested in the characters lives outside of volleyball then Haikyuu, but it's got a climb from here. Looks good though. Maybe not the intensity and compositing of Haikyuu, but it's pleasant. -11|Ura Sekai Picnic|-|6-7|Pretty fun opening! I like the potential offered by the gap of the horror with the fun antics of the main duo. That elevator showed off some intriguing creatures. The main two def seem ripe for some character work in their visits to the other side too. Fast paced in the second half though. Production wise, this was ok. Otherside BG art impressed me, while nothing else really did. But seriously, what the fuck is up with the ugly ass CGI in the long shots? Super annoying and out of place. -12|Osomatsu-San S3|-|6-7|I'll be honest. All this recap did is prove to me that this season has so far been a big step down from the previous seasons both comedically and artistically. -13|Inu To Neko|-|6-7|Hiatus? -14|Uma Musume S2|-|6|Lol, they saved all of the animation for the ending concert. All of this off-model art is a travesty to the character design, and the races had nowhere near the impact of the first season. As a huge fan of the first season, this was honestly a disappointment. The pacing was fucking insane, making the episode feel cluttered and crammed. And as much as I like Teio, I'm missing the earnestness of Spe-chan leading the show. The ending creates some intrigue for the rest of the season, but I'm definitely a bit worried. -15|Quintuplets S2|-|5-6|Well, they did one thing that makes me very happy. Reduced breast size to something not completely insane and distracting. Lol. Anyways, this ep started pretty meh, and got better in the back half when the comedy kicked in. Though I still think that the ""can't tell them apart thing"" is pretty stupid with such obvious markers. Art was just as meh as the first season unfort. - -Still to watch: - -* Beastars S2 (Behind on PAS) -* Idoly Pride (1/10) -* Yatogame-Chan S3 (1/10) -* Nonners S3 (1/11) -* Azur Lane: Bisoku Zenshin! (1/12) -* Wonder Egg Priority (1/13) -* Maiko-san Chi no Makanai-san (Feb?)";False;False;;;;1610233180;;False;{};gipcj8f;False;t3_ku0qsl;False;True;t3_ku0qsl;/r/anime/comments/ku0qsl/weekly_seasonal_rankings_winter_2021_week_1/gipcj8f/;1610275517;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;">You’d think at least one of them would have gone to see if she was truly alright. - -Nah Yuu said something appropriately vague about her being with someone she relies on. I'm sure she's fine. - ->It seems like we’re arriving at a pivotal point for Yuu’s narrative, but given it’s so early into the show I predict the matter will only be deferred to later as opposed to coming to a head. - -This arc looks like it's focusing more on Yuu's mum than Yuu, but I hope they address Yuu's struggles at the same time. It would be pretty lame to reach to a conclusion and then just push it off.";False;False;;;;1610233276;;False;{};gipcq7k;False;t3_ku0k6t;False;False;t1_gip67gk;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipcq7k/;1610275624;6;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;True;[];;"> Haruka rewrites reality so that Miyuki's break down is cleared up nearly immediately. - -[](#serialkillerlaugh)";False;False;;;;1610233279;;False;{};gipcqei;True;t3_ku0k6t;False;False;t1_gipca8i;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipcqei/;1610275626;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JustAnswerAQuestion;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JAaQ/;light;text;t2_66xzcvc;False;False;[];;Yuu's mother having hysterics and dragging him out of Haruka's house, or trying to. Somewhat tired of her shit.;False;False;;;;1610233287;;False;{};gipcqxr;False;t3_ku0k6t;False;True;t1_gip8p9t;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipcqxr/;1610275635;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NormalGrinn;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nurmal;light;text;t2_2t143pv;False;False;[];;"Just read the manga man, it’s only like 1300 chapters and still ongoing. - -But to answer both of your questions: currently definitely not. Although hopefully in the future.";False;False;;;;1610233333;;False;{};gipcu7p;False;t3_ku1hr5;False;True;t3_ku1hr5;/r/anime/comments/ku1hr5/ippo_became_more_confident_and_stop_humilate/gipcu7p/;1610275683;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;True;[];;"Hmmmm... - -[](#serialkillerlaugh)";False;False;;;;1610233339;;False;{};gipcum1;True;t3_ku0k6t;False;True;t1_gipcqxr;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipcum1/;1610275689;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;">Aoi Yuuki, Kakushigoto; this show actually knew the future of anime! - -And they didn't warn us?! - ->Is Yuu going to join up with the crazy people now? Boo! That’s a boring move, show, and you know it! - -What, you don't want to see Tobi tiredly drag Atori and Yuu apart every three seconds as they try to kill each other?";False;False;;;;1610233360;;False;{};gipcw4f;False;t3_ku0k6t;False;True;t1_gip8vzq;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipcw4f/;1610275713;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cryzzalis;;MAL a-amq;[];;http://myanimelist.net/animelist/Charaxify;dark;text;t2_7j04d;False;False;[];;I would assume they're referring to the protagonist of Sazae-san, the longest running anime of all time and one of the most popular shows in Japan for children.;False;False;;;;1610233388;;False;{};gipcy19;False;t3_ku19s2;False;True;t1_gipblhp;/r/anime/comments/ku19s2/hi_guys_and_girls_ive_got_a_huge_question_for_you/gipcy19/;1610275742;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"> Sazae Isono probably? - -While Sazae is watched by everybody, she doesn't have that iconicity that defines most beloved characters. In the language of Japanese media theory, I don't think Sazae is very much of a ""[kyara](https://www.degruyter.com/view/journals/fns/5/2/article-p220.xml),"" or iconic character form that is heavily merchandised and moves across media forms. I would instead say it's probably a character like Doraemon, Anpanman, maybe Totoro.";False;False;;;;1610233400;;False;{};gipcyvl;False;t3_ku19s2;False;True;t1_gipaudz;/r/anime/comments/ku19s2/hi_guys_and_girls_ive_got_a_huge_question_for_you/gipcyvl/;1610275753;4;True;False;anime;t5_2qh22;;0;[]; -[];;;mrv3;;;[];;;;text;t2_fe649;False;True;[];;So put your best soldiers as trainers;False;False;;;;1610233445;;False;{};gipd20n;False;t3_ku1f3f;False;True;t1_gipbwih;/r/anime/comments/ku1f3f/why_does_the_military_in_attack_on_titan_allow/gipd20n/;1610275800;0;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;True;[];;"> Fingers crossed this just means they do something later and we need to remember they exist. - -Fingers crossed, because there's nothing I hate more than useless characters that take up space and are plot irrelevant!";False;False;;;;1610233447;;False;{};gipd23u;True;t3_ku0k6t;False;True;t1_gip7yhr;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipd23u/;1610275801;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;"Wise Mans Grandchild does a decent job of explaining how he does his magic. - -&#x200B; - -Akashic Records does a cool job. - -&#x200B; - -idk if those count - - - -#";False;False;;;;1610233463;;False;{};gipd39i;False;t3_ku1nkw;False;True;t3_ku1nkw;/r/anime/comments/ku1nkw/anime_where_the_exposition_is_done_as_well_as_log/gipd39i/;1610275819;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cryzzalis;;MAL a-amq;[];;http://myanimelist.net/animelist/Charaxify;dark;text;t2_7j04d;False;False;[];;Probably, I'd imagine Doraemon is pretty high up there.;False;False;;;;1610233464;;False;{};gipd3cx;False;t3_ku19s2;False;False;t1_gipcyvl;/r/anime/comments/ku19s2/hi_guys_and_girls_ive_got_a_huge_question_for_you/gipd3cx/;1610275820;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;True;[];;...oorrrr if he's cheating and just doesn't give a shit.;False;False;;;;1610233475;;False;{};gipd43v;True;t3_ku0k6t;False;False;t1_gip9mmn;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipd43v/;1610275832;5;True;False;anime;t5_2qh22;;0;[]; -[];;;1832vin;;;[];;;;text;t2_drevq;False;False;[];;"i mean, yeah, i did it with japanese first, but then i took it 2 steps further and learnt hindi and german with this. - -the point is to not have subtitles. you need to understand the context cues for your brain to understand where this phrase fits in a situation, if not, you're always just doing translation instead of learning. There are papers proving too (remember it was with spanish people learning english with movies) - -for those 4/5 years, i was essentially living with german in hindi. yeah it's long, but at the same time, no active effort given";False;False;;;;1610233479;;False;{};gipd4bt;False;t3_ktx8gk;False;True;t1_gip8s80;/r/anime/comments/ktx8gk/nodame_studying_basic_french_nodame_cantabile/gipd4bt/;1610275835;1;True;False;anime;t5_2qh22;;0;[]; -[];;;0blivionn;;;[];;;;text;t2_c5xm00t;False;False;[];;This anime definitely has style that’s for sure. Cool camera angles and the animation is great too. I’m not a skater or anything, but I think it’ll be interesting to watch!;False;False;;;;1610233556;;False;{};gipd9vd;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipd9vd/;1610275916;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;Not the same genre, but Death Note is pretty good at this, explaining the complex mind tricks and stuff.;False;False;;;;1610233745;;False;{};gipdn0g;False;t3_ku1nkw;False;True;t3_ku1nkw;/r/anime/comments/ku1nkw/anime_where_the_exposition_is_done_as_well_as_log/gipdn0g/;1610276114;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;True;[];;"It can be repaired, but it would takes years of work and professional help. And even then, I don't think they could be as close as some families are. You can mend, but you can't make it as new. - -The first step though would be his mom realizing and wanting to change, which is still a ways off. If she doesn't realize she's in the wrong, there's just nothing that can be done.";False;False;;;;1610233801;;1610247567.0;{};gipdqx9;False;t3_ku0k6t;False;True;t1_gip8m8t;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipdqx9/;1610276172;2;True;False;anime;t5_2qh22;;0;[]; -[];;;magnumcyclonex;;;[];;;;text;t2_3c2cus1r;False;False;[];;They absolutely need to! Very few winter sports (if any) have anime about them (can only think of Yuri on Ice and Skate Leading Stars (which isn't really a true sport);False;False;;;;1610233866;;False;{};gipdvnm;False;t3_ktxcly;False;False;t1_gipc3ea;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipdvnm/;1610276243;6;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi 25_Oranges, it looks like you might be interested in hosting a rewatch! [There's a longer guide on the wiki](https://www.reddit.com/r/anime/wiki/successfulrewatchguide) but here's some basic advice on how to make a good rewatch happen: - -* Include **basic information about the anime** such as a description for those that haven't heard of it as well as where it can be watched (if legally available). - -* Specify a **date and time** that rewatch threads will be posted. Consistency is good! - -* Check for **[previous rewatches](https://www.reddit.com/r/anime/wiki/rewatches)**. It's generally advised to wait a year between rewatches of the same anime. - -* If you want to have a rewatch for multiple anime, they should be **thematically connected**. You can also hold multiple unrelated rewatches if they aren't. - -* Ensuring **enough people are interested** is important. If only a few users say they *might* participate, you may end up with no one commenting once it starts. - -[](#bot-chan) - -I hope this helps! You may also want to talk to users that have hosted rewatches before for extra advice, also listed [on the rewatch wiki](https://www.reddit.com/r/anime/wiki/rewatches). - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610233917;moderator;False;{};gipdz6m;False;t3_ku1u2g;False;True;t3_ku1u2g;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/gipdz6m/;1610276295;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;A whisker away and flavours of youth. A whisker away was made by the same person who made sailor moon and flavours of youth was made by the same people who made your name, so these films are really good!;False;False;;;;1610233950;;False;{};gipe1g4;False;t3_ktyc7w;False;True;t3_ktyc7w;/r/anime/comments/ktyc7w/i_am_looking_for_anime_movie_to_wachwhats_your/gipe1g4/;1610276328;1;True;False;anime;t5_2qh22;;0;[]; -[];;;breakdownbudi;;;[];;;;text;t2_nr28t;False;False;[];;Once you kinda just let it slide that grown adults participate in a skate contest and that theres actual skate villains this show is really fun. 20 minutes just flew by. I really like the 2 main characters.;False;False;;;;1610234034;;False;{};gipe7g3;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipe7g3/;1610276417;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ItchyPlatypus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ItchyPlatypus;light;text;t2_x6uza5h;False;False;[];;I’m interested, I kind of dropped it after like 10 episodes 3 years ago when I was finishing my degree and I just never picked it back up again even though I enjoyed it.;False;False;;;;1610234082;;False;{};gipeao8;False;t3_ku1u2g;False;False;t3_ku1u2g;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/gipeao8/;1610276469;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;;;[];;;;text;t2_4la0rf79;False;False;[];;For some reason, I always have to login again even when not on private mode. Didn’t know they had an app but sad that isn’t available for iOS :(;False;False;;;;1610234099;;False;{};gipebvr;False;t3_ktzf5g;False;True;t1_gip8r02;/r/anime/comments/ktzf5g/how_do_you_count_anime_youve_seen/gipebvr/;1610276488;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DoctorWhoops;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DoctorWhoops/;light;text;t2_ip5wv;False;False;[];;"Still planning on watching Tenchi Souzou Design-bu, the spider show and SK∞, but the start is here. - -\#pos | Title | pos+/- | Scr | Comments ----|--------|---|----------|------- - | Yuru Camp S2 | - | 9 | How good does it feel to have Yuru Camp on screen again, especially during these times. Rin's first camping trip was a great way to start the season, and I loved seeing her fall in love with camping despite most things going wrong. It captures the magic of it all and it's such a relatable and one of a kind feeling. I do really look forward to some more camping segments, especially ones with Rin and Nadeshiko together. That's where this show truly shines. Can't wait. - | Horimiya | - | 8 | This is good. Really good. The characters are expressive, good-natured and full of personality, and the show is humorous and just thoroughly charming. The relationship between Hori and Miyamura covers a lot of ground even in just the first episode which makes it feels like the show doesn't cut any corners and waste time on slow introductions. Nothing I didn't like about this first episode. - | 2.43 Volleyball | - | 7 | It's weird how blatantly this show is ripping off Haikyuu. It's even weirder that it's good. I like the main duo and I think the directing is pretty good, and while the whole [2.43](/s ""Suicide"") thing may work into some melodrama it might also be the route for this show to do something a bit different. Pleasant surprise. - | Tomozaki-kun | - | 5.5 | I expected a lot worse. What we got still isn't good, but it has some semblance of originality. It is somewhat refreshing to see a show with an incel-type character that's just being told to be normal and stop being a dick, though I'm sure over time it'll just end up playing out like it always does. I'm not excited about watching this, but there's some sliver of potential here. - | Gekidol | - | 4 | This wasn't good, but there's something ominous about this show's OP and tone and I'm curious to see what it does with it. Taking this first episode on surface level it seems like a strange idol show with a scifi undertone, but I feel like it might go in a weird direction with it. Will that direction be good? Very unlikely, but I'm curious to see it play out either way if it doesn't take too long. - ----";False;False;;;;1610234111;;False;{};gipecrm;False;t3_ku0qsl;False;True;t3_ku0qsl;/r/anime/comments/ku0qsl/weekly_seasonal_rankings_winter_2021_week_1/gipecrm/;1610276501;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crixx93;;;[];;;;text;t2_twrpm1;False;False;[];;Hunter x Hunter's Palace Invasion;False;False;;;;1610234122;;False;{};gipedil;False;t3_ku1nkw;False;True;t3_ku1nkw;/r/anime/comments/ku1nkw/anime_where_the_exposition_is_done_as_well_as_log/gipedil/;1610276512;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;;;[];;;;text;t2_4la0rf79;False;False;[];;Why Konosuba? Has barely anything OP asked for;False;False;;;;1610234161;;False;{};gipega6;False;t3_ktyy8v;False;True;t1_gip84e5;/r/anime/comments/ktyy8v/are_there_any_mangaanime_where_the_mc_gets_sucked/gipega6/;1610276552;1;True;False;anime;t5_2qh22;;0;[]; -[];;;babydave371;;MAL a-amq;[];;https://myanimelist.net/profile/babydave371;dark;text;t2_sak6n;False;False;[];;Because they are corrupt. Welcome to any large organisation!;False;False;;;;1610234162;;False;{};gipegb2;False;t3_ku1f3f;False;True;t3_ku1f3f;/r/anime/comments/ku1f3f/why_does_the_military_in_attack_on_titan_allow/gipegb2/;1610276552;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ben99ny22;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ben99ny;light;text;t2_14rmpidg;False;False;[];;because its a suggestion pertaining to OP's question;False;False;;;;1610234205;;False;{};gipejcc;False;t3_ktyy8v;False;True;t1_gipega6;/r/anime/comments/ktyy8v/are_there_any_mangaanime_where_the_mc_gets_sucked/gipejcc/;1610276598;1;True;False;anime;t5_2qh22;;0;[]; -[];;;myaccountforweebcrap;;;[];;;;text;t2_40jfjzjv;False;False;[];;"Obviously that dude is the worst scum to have walked the earth and I hope his life has an ending accordingly to all the pain he caused. - -With that being said... Bruh, how can somebody care so much about what happened in fucking Tsurune? Nobody watched it!";False;False;;;;1610234232;;False;{};gipel7i;False;t3_ktyvp2;False;False;t3_ktyvp2;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/gipel7i/;1610276627;87;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Meemeli;;;[];;;;text;t2_2o1rogl;False;False;[];;It does seem to be on the app store: [https://apps.apple.com/us/app/myanimelist-official/id1469330778](https://apps.apple.com/us/app/myanimelist-official/id1469330778);False;False;;;;1610234239;;False;{};gipelo0;False;t3_ktzf5g;False;True;t1_gipebvr;/r/anime/comments/ktzf5g/how_do_you_count_anime_youve_seen/gipelo0/;1610276633;2;True;False;anime;t5_2qh22;;0;[]; -[];;;25_Oranges;;;[];;;;text;t2_6k8wiuc1;False;False;[];;I'm glad to hear you're interested and able to watch it now!;False;False;;;;1610234250;;False;{};gipemhu;True;t3_ku1u2g;False;True;t1_gipeao8;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/gipemhu/;1610276646;1;True;False;anime;t5_2qh22;;0;[]; -[];;;heartmamichan;;skip7;[];;;dark;text;t2_8h1lj87x;False;False;[];;stays the same from start to finish;False;False;;;;1610234263;;False;{};gipene7;False;t3_ku1hr5;False;False;t3_ku1hr5;/r/anime/comments/ku1hr5/ippo_became_more_confident_and_stop_humilate/gipene7/;1610276660;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;;;[];;;;text;t2_4la0rf79;False;False;[];;Wow, a joke about Nanatsu animation, how original;False;False;;;;1610234330;;False;{};gipes1x;False;t3_ku0fjh;False;True;t1_gip64fa;/r/anime/comments/ku0fjh/anyone_else_think_the_anime_lineup_this_season_is/gipes1x/;1610276730;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610234391;;False;{};gipewbg;False;t3_ku1yoq;False;False;t3_ku1yoq;/r/anime/comments/ku1yoq/could_it_be_good/gipewbg/;1610276794;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;Inuyasha is an isekai shounen and that's quite popular.;False;False;;;;1610234392;;False;{};gipewe3;False;t3_ku1yoq;False;True;t3_ku1yoq;/r/anime/comments/ku1yoq/could_it_be_good/gipewe3/;1610276795;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;most isekai is already shounen....what are you talking about;False;False;;;;1610234397;;False;{};gipewqf;False;t3_ku1yoq;False;True;t3_ku1yoq;/r/anime/comments/ku1yoq/could_it_be_good/gipewqf/;1610276801;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PeterGriffenttv;;;[];;;;text;t2_5gvxyq1r;False;False;[];;I really had no idea, huh that neat;False;False;;;;1610234421;;False;{};gipeyf5;False;t3_ku1yoq;False;True;t1_gipewe3;/r/anime/comments/ku1yoq/could_it_be_good/gipeyf5/;1610276826;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dialsk;;;[];;;;text;t2_6ie03uya;False;False;[];;I don't count... I don't like how MAL counts, they consider every new anime season = new anime series, so if you had watched Naruto and Naruto Shippuden for example, it'll count as 2 different series, it just doesn't make any sense doing like that.;False;False;;;;1610234457;;False;{};gipf0v9;False;t3_ktzf5g;False;True;t3_ktzf5g;/r/anime/comments/ktzf5g/how_do_you_count_anime_youve_seen/gipf0v9/;1610276862;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610234460;;False;{};gipf138;False;t3_ku1yoq;False;True;t1_gipewqf;/r/anime/comments/ku1yoq/could_it_be_good/gipf138/;1610276866;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;ItchyPlatypus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ItchyPlatypus;light;text;t2_x6uza5h;False;False;[];;"Just a little heads up your schedule for one per day from Jan 24th - Feb 11th adds up to 19 episodes. - -Also for the U.K. at least they can also watch it on Funimation.";False;False;;;;1610234593;;False;{};gipfa87;False;t3_ku1u2g;False;True;t1_gipemhu;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/gipfa87/;1610277004;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> -> -> -> -> Damn, I didn't even go down that path in my head, dunno why. Good call. - -As I said, too much scifi and fantasy let's my brain make odd assumptions.";False;False;;;;1610234601;;False;{};gipfauc;False;t3_ku0k6t;False;True;t1_gipcg4i;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipfauc/;1610277014;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fircoal;;ANI a-amq;[];;https://anilist.co/user/Fircoal;dark;text;t2_do5e5;False;False;[];;"Dang I've been busy and that's made it hard to post my rankings but let me post what I have here. - -First off: Fall 2020 seasonal ranking - -| # | Anime | Epi | Chg | Scr | -|----|------------------------------------------------------------------|-----|-----|-----| -| 1 | Mewkledreamy | 35 | - | 9 | -| 2 | Ochikobore Fruit Tart | 12 | - | 9 | -| 3 | Gochuumon wa Usagi Desu ka? Bloom | 12 | +1 | 8 | -| 4 | Major 2nd | 25 | -1 | 8 | -| 5 | Dogeza de Tanondemita | 12 | - | 7 | -| 6 | Inu to Neko Docchi mo Katteru to Mainichi Tanoshii | 13 | - | 7 | -| 7 | Adachi to Shimamura | 12 | - | 7 | -| 8 | Kami-tachi ni Hirowareta Otoko | 12 | +3 | 7 | -| 9 | D4DJ: First Mix | 8 | +1 | 7 | -| 10 | Love Live | 13 | -1 | 7 | -| 11 | Kuma Kuma Kuma Bear | 12 | -3 | 7 | -| 12 | Majo no Tabitabi | 12 | - | 6 | -| 13 | Healin' Good Precure | 38 | - | 6 | -| 14 | Hanyou no Yashahime: Sengoku Otogizoushi | 13 | - | 6 | -| 15 | Guraburu! | 12 | +1 | 6 | -| 16 | That is the Bottleneck | 12 | +1 | 6 | -| 17 | Maesetsu! | 12 | -2 | 5 | -| 18 | Taisou Zamurai | 11 | +1 | 5 | -| 19 | Hypnosis Mic: Division Rap Battle - Rhyme Anima | 13 | -1 | 5 | -| 20 | One Room Third Season | 4 | - | 5 | -| 21 | Tonikaku Kawaii | 12 | - | 5 | -| 22 | Iwa Kakeru!: Sport Climbing Girls | 12 | - | 4 | -| 23 | Maoujou de Oyasumi | 12 | +2 | 3 | -| 24 | Rail Romanesque | 12 | - | 3 | -| 25 | Assault Lily: Bouquet | 3 | +1 | 3 | -| 26 | Animation Kapibara-san | 13 | +1 | 3 | -| 27 | Kusoge tte Iuna! Animation | 11 | -4 | 2 | -| 28 | Kimi to Boku no Saigo no Senjou, Aruiwa Sekai ga Hajimaru Seisen | 3 | - | 2 | -| 29 | Kamisama ni Natta Hi | 12 | - | 2 | - -And then what I've watched of Winter 2021 so far. - -| # | Anime | Epi | Chg | Scr | -|----|----------------------------------------------------|-----|-----|-----| -| 1 | Mewkledreamy | 35 | - | 9 | -| 2 | Show by Rock!! Stars!! | 1 | - | 8 | -| 3 | Uma Musume: Pretty Derby Season 2 | 1 | - | 7 | -| 4 | Inu to Neko Docchi mo Katteru to Mainichi Tanoshii | 13 | - | 7 | -| 5 | D4DJ: First Mix | 8 | - | 6 | -| 6 | Healin' Good Precure | 38 | - | 6 | -| 7 | Hanyou no Yashahime: Sengoku Otogizoushi | 13 | - | 6 | -| 8 | Abciee Shuugyou Nikki | 1 | - | 5 | -| 9 | Gekidol | 1 | - | 4 | -| 10 | I★Chu: Halfway Through the Idol | 1 | - | 4 | -| 11 | Urasekai Picnic | 1 | - | 3 | -| 12 | Soukou Musume Senki | 1 | - | 2 | - -Predictions will come later because I'm not fully done with those. Outside of that. I am so hyped for Show By Rock Stars. Uma Musume s2 also started very strong. Everything else was more questionable. I really can't contain my hype for Show By Rock lol. I'm hoping for it to live up to s1 and Mashumairesh and if it can it's going to be so glorious.";False;False;;;;1610234617;;False;{};gipfbwb;False;t3_ku0qsl;False;True;t3_ku0qsl;/r/anime/comments/ku0qsl/weekly_seasonal_rankings_winter_2021_week_1/gipfbwb/;1610277031;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Massaman95;;;[];;;;text;t2_zxb3m;False;False;[];;"What exactly is ""that type""?";False;False;;;;1610234619;;False;{};gipfc09;False;t3_ku1yoq;False;True;t1_gipf138;/r/anime/comments/ku1yoq/could_it_be_good/gipfc09/;1610277033;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;I don't to explain Ixtli to you but I have my suspicions.;False;False;;;;1610234631;;False;{};gipfcuo;False;t3_ku0k6t;False;False;t1_gipcqei;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipfcuo/;1610277046;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;">Them man who interdimensionally kidnapped me is in there, but don’t mind. - -Is fine. He is friend.";False;False;;;;1610234641;;False;{};gipfdij;False;t3_ku0k6t;False;True;t1_gip8vzq;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipfdij/;1610277055;3;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;True;[];;Interesting thoughts. We'll see if this ends up happening!;False;False;;;;1610234690;;False;{};gipfgwx;True;t3_ku0k6t;False;True;t1_gipdqx9;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipfgwx/;1610277107;3;True;False;anime;t5_2qh22;;0;[]; -[];;;drasheed132;;;[];;;;text;t2_39t8myjk;False;False;[];;I watched it around 5 years ago right after finishing toradora. I remember it and I enjoyed watching but I think I wanted it to measure up to toradora which is what took some of the enjoyment out of it for me.;False;False;;;;1610234699;;False;{};gipfhjg;False;t3_ku1zwh;False;True;t3_ku1zwh;/r/anime/comments/ku1zwh/kokoro_connect_dramasupernaturalromance/gipfhjg/;1610277117;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610234713;moderator;False;{};gipfij5;False;t3_ku22re;False;True;t3_ku22re;/r/anime/comments/ku22re/so_i_was_wondering_if_there_is_any_romance_in/gipfij5/;1610277131;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;That's hopeful, at least.;False;False;;;;1610234726;;False;{};gipfje9;False;t3_ku0k6t;False;True;t1_gipd23u;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipfje9/;1610277144;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;There's people.who care more about their positions of power and themselves more than what's best for humanity;False;False;;;;1610234746;;False;{};gipfkr5;False;t3_ku1f3f;False;False;t3_ku1f3f;/r/anime/comments/ku1f3f/why_does_the_military_in_attack_on_titan_allow/gipfkr5/;1610277165;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;True;[];;I don't think it'll fit within our runtime. The most that can realistically happen is his mom realizing and slowly starting to work towards a change.;False;False;;;;1610234768;;False;{};gipfmas;False;t3_ku0k6t;False;True;t1_gipfgwx;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipfmas/;1610277189;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sodra;;MAL a-amq;[];;https://myanimelist.net/profile/sodra;dark;text;t2_5o34w;False;False;[];;"[Yes](https://i.imgur.com/FDN532N.png) - -[According to MAL](https://myanimelist.net/anime/5678/Kobato)";False;False;;;;1610234772;;False;{};gipfml3;False;t3_ku22re;False;True;t3_ku22re;/r/anime/comments/ku22re/so_i_was_wondering_if_there_is_any_romance_in/gipfml3/;1610277193;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ProfessorJackH0ff;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/;light;text;t2_4y844c07;False;False;[];;Drama is right up my alley and for me it’s a cool 6.8-7.4 for me roughly. It’s good but it wasn’t something I’d go back to anytime soon. Though, I would recommend it to people who like the genre and let them make their own decisions though.;False;False;;;;1610234775;;False;{};gipfmqz;False;t3_ku1zwh;False;True;t3_ku1zwh;/r/anime/comments/ku1zwh/kokoro_connect_dramasupernaturalromance/gipfmqz/;1610277197;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;Like...do you want us to hate him even more?;False;False;;;;1610234786;;False;{};gipfni8;False;t3_ku0k6t;False;True;t1_gipd43v;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipfni8/;1610277209;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;"I liked the anime a lot. It has some of the best character development in anime. - -I think the genre mix is a bit uncommon. I love romance but supernatural things usually break immersion for me so I can't really feel the characters, so I often stay away from supernatural animes when I'm looking for romance. It's also kind of hard to suggest it to others, because if someone is looking for good romance, it doesn't come to mind and if someone is looking for something supernatural, it also doesn't come to mind. And nobody will ever request ""supernatural romance"". I assume this is why it's rarely mentioned. Nagi no Asu Kara, One Week Friends and Yamada-kun And The Seven Witches share the same fate by the way. You'd hardly see people who watched any of these not liking them, but yet none of them are talked about much.";False;False;;;;1610234787;;False;{};gipfnkb;False;t3_ku1zwh;False;True;t3_ku1zwh;/r/anime/comments/ku1zwh/kokoro_connect_dramasupernaturalromance/gipfnkb/;1610277209;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gabriel_GAGRA;;;[];;;;text;t2_4la0rf79;False;False;[];;Dude... I love you, fr thank you so much, having to login every time was pissing me so much;False;False;;;;1610234793;;False;{};gipfo02;False;t3_ktzf5g;False;True;t1_gipelo0;/r/anime/comments/ktzf5g/how_do_you_count_anime_youve_seen/gipfo02/;1610277215;3;True;False;anime;t5_2qh22;;0;[]; -[];;;25_Oranges;;;[];;;;text;t2_6k8wiuc1;False;False;[];;What is wrong with me today, I can't count. Thank you lol. I'll fix my post!;False;False;;;;1610234803;;False;{};gipfonv;True;t3_ku1u2g;False;False;t1_gipfa87;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/gipfonv/;1610277225;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDLister;;;[];;;;text;t2_5gcknflz;False;False;[];;Yeah saitama was better written for me;False;False;;;;1610234813;;False;{};gipfped;False;t3_ku230i;False;True;t3_ku230i;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipfped/;1610277236;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> I wonder if this is a sign of less-than-thorough writing, or a sign that she has just vanished for a while before. I think Ai said something about Haruka not always keeping her cell with her. - -She was gone for three hours and that isn't that weird for an adolescent. Yuu is the only one that knows dimension fuckery is involved.";False;False;;;;1610234844;;False;{};gipfrls;False;t3_ku0k6t;False;False;t1_gipc107;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipfrls/;1610277267;4;True;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;I actually enjoyed way more than Toradora, specially considering I dropped it like 7 times before reaching episode 16. It was a pain to go beyond that, but the ending was nice;False;False;;;;1610234866;;False;{};gipft2t;True;t3_ku1zwh;False;True;t1_gipfhjg;/r/anime/comments/ku1zwh/kokoro_connect_dramasupernaturalromance/gipft2t/;1610277289;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AxtheCool;;;[];;;;text;t2_y2vk9;False;False;[];;"Its not talked about often because its 9 years old. People remember it but there not a lot of reason talking about an old anime compared to seasons airing right now. - -Also the ending of the original was very meh and only the OVA was able to finish the series properly.";False;False;;;;1610234888;;False;{};gipfuli;False;t3_ku1zwh;False;False;t3_ku1zwh;/r/anime/comments/ku1zwh/kokoro_connect_dramasupernaturalromance/gipfuli/;1610277310;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sharebear42019;;;[];;;;text;t2_z1jb0;False;False;[];;I just want another season of air gear with the original dub cast;False;False;;;;1610234906;;False;{};gipfvsg;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipfvsg/;1610277329;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SeyiDALegend;;;[];;;;text;t2_n7n3u;False;False;[];;That was an amazing arc;False;False;;;;1610234951;;False;{};gipfysz;True;t3_ku1nkw;False;True;t1_gipedil;/r/anime/comments/ku1nkw/anime_where_the_exposition_is_done_as_well_as_log/gipfysz/;1610277373;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SeyiDALegend;;;[];;;;text;t2_n7n3u;False;False;[];;A classic, really enjoyed the battle between L and Light;False;False;;;;1610234969;;False;{};gipg01j;True;t3_ku1nkw;False;True;t1_gipdn0g;/r/anime/comments/ku1nkw/anime_where_the_exposition_is_done_as_well_as_log/gipg01j/;1610277392;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AxtheCool;;;[];;;;text;t2_y2vk9;False;False;[];;"From what I heard the author put him in as a jab to the usual isekai MCs. Super OP to the point of insanity, has protections from everything and etc. He even has this Divine Protection of Clothing which allows the user to choose the most suitable clothes for a certain person, which is clearly just there as a joke. - -But in the end he is not a focus of anything, he is just there. Its Subaru's story after all and Reinhart has little play in it and when he does its minor other than him saving subaru in that first few episodes.";False;False;;;;1610235023;;False;{};gipg3ni;False;t3_ku230i;False;False;t3_ku230i;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipg3ni/;1610277448;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;"I haven’t seen a Canadian in anime since... Akage no Anne - -You love to see it!";False;False;;;;1610235049;;False;{};gipg5ff;False;t3_ktxcly;False;False;t1_gioqs14;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipg5ff/;1610277475;15;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610235074;moderator;False;{};gipg741;False;t3_ku26ig;False;True;t3_ku26ig;/r/anime/comments/ku26ig/anime_scene_where_character_breaks_all_their/gipg741/;1610277501;1;False;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;Yeah, i guess it's normal for modern anime (2010 and on) to be just a seasonal thing unless it's another best of the year;False;False;;;;1610235106;;False;{};gipg966;True;t3_ku1zwh;False;True;t1_gipfuli;/r/anime/comments/ku1zwh/kokoro_connect_dramasupernaturalromance/gipg966/;1610277531;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;">Just as some people found it weird-to-sketchy how there were like 2 or 3 Haruka bathing scenes in only a handful of early episodes, there was clearly a bit of an effort to give Haruka about the most revealing casual outfit you could reasonably put on a primary-school girl, a unique feature among the cast furthermore. - -I do know some girls Haruka's age who wear clothes like her and sometimes even worse. I hate it and thinks it's totally inappropriate, but I can at least say it does happen. The show is being very weird about the pseudo-sexualisation of Haruka. - ->Still jumping (literally) back-and-forth between sci-fi adventure, cute kids, and family drama. - -That's what I feared might happen, maybe there's hope, but it looks like this is what we're going to get.";False;False;;;;1610235131;;False;{};gipgaw7;False;t3_ku0k6t;False;False;t1_gip8d67;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipgaw7/;1610277558;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Cryzzalis;;MAL a-amq;[];;http://myanimelist.net/animelist/Charaxify;dark;text;t2_7j04d;False;False;[];;Personally I add anything I watch to my MAL list. So I count anything I've watched to the point where I have an opinion on it as something I've watched. With that said, I don't like the idea of inflating your list just for the sake of having lots of entries, so usually I look at the time spent watching anime rather than the amount of shows seen.;False;False;;;;1610235135;;False;{};gipgb6j;False;t3_ktzf5g;False;True;t3_ktzf5g;/r/anime/comments/ktzf5g/how_do_you_count_anime_youve_seen/gipgb6j/;1610277561;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JackDockz;;;[];;;;text;t2_1wmsbygp;False;False;[];;"Well it is somewhat similar and some characters feel similar to characters from S;G but ReZero is more of a fantasy world anime than a time travel one. And it is not painful(in a good way) to watch.";False;False;;;;1610235142;;False;{};gipgbnp;False;t3_ktyzmm;False;True;t3_ktyzmm;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/gipgbnp/;1610277569;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BurningFredrick;;MAL;[];;https://myanimelist.net/profile/BurningFredrick;dark;text;t2_74w5s;False;False;[];;"I'm split on whether or not Yuu will get dragged off by his Mother, she knows he's there, and when it comes to parenting in Japan I can see Haruka mother siding with Yuus mother because that's the thing they are meant to do. - -Biggest wild card is how Karasu is going to play into all this, last episode he was able to partly hide in some dimension in the celling, so could drag Yuu into one when they go looking them, or just fly out the window, unless Yuu mother also as eyes in the back of her head plenty of opportunity for this when there having an argument indoors.";False;False;;;;1610235150;;False;{};gipgc7w;False;t3_ku0k6t;False;True;t1_gipbq7g;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipgc7w/;1610277577;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;"i mean, that was the literal joke of the show, this guy is said by the author to be able to survive in outer space, win against the sun, revive for ever... it just makes everything cheap, it is either him not being there because it would make a hell of a boring story or him being conveniently not there - -and i dont get it, wilhem(his grandpa) is also really strong but not inmortal that could kill anyone in one hit, and i wish that reinhard was just a litle stronger than him";False;False;;;;1610235152;;False;{};gipgcbr;False;t3_ku230i;False;True;t1_gipfped;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipgcbr/;1610277579;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;It was ranked like 150th in terms of popularity on mal so not that underwatched;False;False;;;;1610235183;;False;{};gipgefe;False;t3_ku1zwh;False;True;t3_ku1zwh;/r/anime/comments/ku1zwh/kokoro_connect_dramasupernaturalromance/gipgefe/;1610277611;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sodra;;MAL a-amq;[];;https://myanimelist.net/profile/sodra;dark;text;t2_5o34w;False;False;[];;"Was it [this scene?](https://i.redd.it/csa2oxebfrr51.jpg) - -[Eiji](https://myanimelist.net/anime/6076/Eiji)";False;False;;;;1610235198;;False;{};gipgfg9;False;t3_ku26ig;False;True;t3_ku26ig;/r/anime/comments/ku26ig/anime_scene_where_character_breaks_all_their/gipgfg9/;1610277626;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;"To be honest, wouldn't that depend on what type of series/movies your mom likes to watch? - -My mom loves crime/thriller for example, so her favorites are Death Note, Psycho Pass and Great Pretender.";False;False;;;;1610235218;;False;{};gipggvy;False;t3_ku09s5;False;True;t3_ku09s5;/r/anime/comments/ku09s5/an_anime_i_can_watch_with_my_mom/gipggvy/;1610277647;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sinnaig;;;[];;;;text;t2_27rkwgdg;False;False;[];;What are you talking about? I haven't watched Tsurune but even I know the famous cheap meat shopping scene.;False;False;;;;1610235219;;False;{};gipggx6;False;t3_ktyvp2;False;False;t1_gipel7i;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/gipggx6/;1610277647;71;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;">From what I heard the author put him in as a jab to the usual isekai MCs. Super OP to the point of insanity, has protections from everything and etc. Am pretty sure he has a protection from like his food being too hot, or something related to food that is there as a joke. - -hilarious joke for a satire series, break the series in a serious one - ->But in the end he is not a focus of anything, he is just there. Its Subaru's story after all and Reinhart has little play in it and when he does its minor other than him saving subaru in that first few episodes. - -and? why does it matter that he is not there all the time? him having this powers in the first place is the problem, not him role in the story";False;True;;comment score below threshold;;1610235229;;False;{};gipghlt;False;t3_ku230i;False;True;t1_gipg3ni;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipghlt/;1610277658;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSodiumFree;;;[];;;;text;t2_g9nl2yr;False;False;[];;I have watched it a few times and really enjoy it. I agree with your 8/10.;False;False;;;;1610235236;;False;{};gipgi2c;False;t3_ku1zwh;False;True;t3_ku1zwh;/r/anime/comments/ku1zwh/kokoro_connect_dramasupernaturalromance/gipgi2c/;1610277665;2;True;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;That's good to know;False;False;;;;1610235237;;False;{};gipgi6e;True;t3_ku1zwh;False;True;t1_gipgefe;/r/anime/comments/ku1zwh/kokoro_connect_dramasupernaturalromance/gipgi6e/;1610277667;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;How can it ruin re zero for you when he has like 5 mins of screen time which is mostly dialogue?;False;False;;;;1610235320;;False;{};gipgnsv;False;t3_ku230i;False;True;t3_ku230i;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipgnsv/;1610277753;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;I've not got much against a redemption arc myself, but I know a lot of people in this thread don't like the idea. I don't need justifiable reasons for why she is the way she is. For me as long as Yuu's mum admits fault, asks for forgiveness and changes her ways I can forgive her.;False;False;;;;1610235323;;False;{};gipgo0x;False;t3_ku0k6t;False;False;t1_gipb73p;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipgo0x/;1610277757;4;True;False;anime;t5_2qh22;;0;[]; -[];;;cdbriggs;;;[];;;;text;t2_fle57;False;False;[];;"God I once recommended that to a family member (no clue why) and to make it worse she accidentally watched ""Elfen Laid"" which is a hentai of it.";False;False;;;;1610235486;;1610245386.0;{};gipgyvp;False;t3_ku09s5;False;True;t1_gip5i01;/r/anime/comments/ku09s5/an_anime_i_can_watch_with_my_mom/gipgyvp/;1610277920;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;dude, im not talking about what he does in the series, im talking about his power, why does everyone says the same shit? you sound like broken records, yes i get it he has little screen time, but the writer still made him some kind of overly overpowered that shouldnt be as strong because it serves nothing to the plot and it makes everything seem cheap;False;False;;;;1610235491;;1610235650.0;{};gipgza0;False;t3_ku230i;False;True;t1_gipgnsv;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipgza0/;1610277926;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bluecomments;;;[];;;;text;t2_67kvqila;False;False;[];;Few slice of life adaptations really seem to be complete adaptations.;False;False;;;;1610235513;;False;{};giph0u9;False;t3_ktytdr;False;True;t3_ktytdr;/r/anime/comments/ktytdr/i_think_silver_spoon_should_get_another_chance/giph0u9/;1610277949;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dyloniusfunk;;;[];;;;text;t2_smaq7;False;False;[];;How do you say “ I really don’t give a fuck, you’re a psychotic madman and I hope you get the highest possible penalty the Japanese legal system allows for” in Japanese?;False;False;;;;1610235519;;False;{};giph19a;False;t3_ktyvp2;False;False;t3_ktyvp2;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giph19a/;1610277955;212;True;False;anime;t5_2qh22;;0;[]; -[];;;Fighterdoken33;;;[];;;;text;t2_nfc4s;False;False;[];;Now that you mention it, a google search does show Totoro with something like 30% votes leading for most popular.;False;False;;;;1610235589;;False;{};giph63a;False;t3_ku19s2;False;True;t1_gipcyvl;/r/anime/comments/ku19s2/hi_guys_and_girls_ive_got_a_huge_question_for_you/giph63a/;1610278029;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AmyThePuppyPrincess;;;[];;;;text;t2_5vgki1sz;False;False;[];;What're you watching?;False;False;;;;1610235600;;False;{};giph6uv;False;t3_ku2al6;False;True;t3_ku2al6;/r/anime/comments/ku2al6/today_is_the_perfect_day_for_an_anime_marathon/giph6uv/;1610278041;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Barangat;;;[];;;;text;t2_1399lj;False;False;[];;I can understand that. I try to kick back in the hobby department and try to keep the „accomplishment-attitude“ out of some of my hobbies on purpose, as I tend to overdo it and lose the fun through that 😅;False;False;;;;1610235645;;False;{};giph9u1;False;t3_ktzf5g;False;False;t1_gip8240;/r/anime/comments/ktzf5g/how_do_you_count_anime_youve_seen/giph9u1/;1610278087;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SonAnka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SonAnka;light;text;t2_4bv8n52s;False;False;[];;Even after 1300 chapter still not? Hahaha i cant believe i have watched this shit 75 episode + ova + special and + 26 episode agian for second season... What a waste of time...;False;False;;;;1610235648;;False;{};gipha2c;True;t3_ku1hr5;False;True;t1_gipcu7p;/r/anime/comments/ku1hr5/ippo_became_more_confident_and_stop_humilate/gipha2c/;1610278090;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tomtomm9;;;[];;;;text;t2_3ycvxoo9;False;False;[];;Even though 2021 has just started i don’t think I have ever been this excited for a seasonal(looking at winter 2021). So I’m going with this year.;False;False;;;;1610235657;;False;{};giphanj;False;t3_ktwy3i;False;False;t3_ktwy3i;/r/anime/comments/ktwy3i/looking_at_mal_or_one_of_the_sites_what_year_do/giphanj/;1610278100;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;And when did it posed problem in the story so far ?;False;False;;;;1610235674;;False;{};giphbtf;False;t3_ku230i;False;True;t3_ku230i;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/giphbtf/;1610278117;3;True;False;anime;t5_2qh22;;0;[]; -[];;;zest88;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/zesty79740555;light;text;t2_5tcnkyer;False;False;[];;my top rated year is 1974 according to malgraph lol;False;False;;;;1610235691;;False;{};giphczp;False;t3_ktwy3i;False;True;t3_ktwy3i;/r/anime/comments/ktwy3i/looking_at_mal_or_one_of_the_sites_what_year_do/giphczp/;1610278134;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AxtheCool;;;[];;;;text;t2_y2vk9;False;False;[];;"> hilarious joke for a satire series, break the series in a serious one - -Breaking the tone when and how? Most of the serious tone comes from Subaru and his inner and outer struggle AND a lot of his struggle cant be solved with Reinhart being there, especially in S2. - -> why does it matter that he is not there all the time? him having this powers in the first place is the problem, not him role in the story - -Because he is largely irrelevant and is not connected the the plot 98% of the time? Thats like saying: ""Why do we need stories about Batman if there is Superman living in the same universe?""";False;False;;;;1610235697;;False;{};giphdfd;False;t3_ku230i;False;True;t1_gipghlt;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/giphdfd/;1610278142;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;They don't want the Scouts to succeed and want the best soldiers as close and loyal to the king as possible;False;False;;;;1610235731;;False;{};giphftk;False;t3_ku1f3f;False;False;t3_ku1f3f;/r/anime/comments/ku1f3f/why_does_the_military_in_attack_on_titan_allow/giphftk/;1610278178;7;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;True;[];;"[](#serialkillerlaugh) - -[](#serialkillerlaugh) - -[](#serialkillerlaugh)";False;False;;;;1610235744;;False;{};giphgol;True;t3_ku0k6t;False;True;t1_gipgc7w;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/giphgol/;1610278190;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;">im not talking about what he does in the series - -Okay so then why does it matter... cause he’s op in your made up scenarios that ruins a series for you? What a joke";False;False;;;;1610235760;;False;{};giphhtc;False;t3_ku230i;False;True;t1_gipgza0;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/giphhtc/;1610278208;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;To have the best to protect the nobles and not let them be titan food outside of the walls;False;False;;;;1610235769;;False;{};giphift;False;t3_ku1f3f;False;False;t3_ku1f3f;/r/anime/comments/ku1f3f/why_does_the_military_in_attack_on_titan_allow/giphift/;1610278217;5;True;False;anime;t5_2qh22;;0;[]; -[];;;NormalGrinn;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nurmal;light;text;t2_2t143pv;False;False;[];;I mean, his fighting style hasn’t changed yet, but that’s actually mostly because he’s quit being a proffesional boxer and is now working as a second.;False;False;;;;1610235787;;False;{};giphjo8;False;t3_ku1hr5;False;True;t1_gipha2c;/r/anime/comments/ku1hr5/ippo_became_more_confident_and_stop_humilate/giphjo8/;1610278236;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phiraeth;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/phiraeth;light;text;t2_10wr2x;False;True;[];;"Thanks for sharing your thoughts! - -I'm also not really against a potential redemption arc, but if/when it does happen if I was a first-timer I'd want to avoid seeing them pull out bushit excuses for her.";False;False;;;;1610235829;;False;{};giphmfe;True;t3_ku0k6t;False;True;t1_gipgo0x;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/giphmfe/;1610278280;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AZLarlar;;;[];;;;text;t2_6d6peonh;False;False;[];;that was a great first episode;False;False;;;;1610235837;;False;{};giphmyk;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giphmyk/;1610278290;4;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;"im talking about the lore and world building which it is as important as the plot - -> ""Why do we need stories about Batman if there is Superman living in the same universe?"" - -yeah well said, superheroes stories fucking sucks, finally people get it";False;False;;;;1610235839;;False;{};giphn3x;False;t3_ku230i;False;True;t1_giphdfd;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/giphn3x/;1610278292;0;True;False;anime;t5_2qh22;;0;[]; -[];;;FredeCake;;;[];;;;text;t2_xnrff;False;False;[];;Initial D with skateboard and a Dio looking guy. Sign me the fuck up for more;False;False;;;;1610235853;;False;{};giphnzn;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giphnzn/;1610278305;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610235860;;False;{};giphohp;False;t3_ku26ig;False;True;t3_ku26ig;/r/anime/comments/ku26ig/anime_scene_where_character_breaks_all_their/giphohp/;1610278313;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;">Okay so then why does it matter... cause he’s op in your made up scenarios that ruins a series for you? What a joke - -what made up scenarios are you talking about, what are you even talking about";False;False;;;;1610235933;;False;{};giphtgz;False;t3_ku230i;False;True;t1_giphhtc;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/giphtgz/;1610278388;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;BSPlanes;;;[];;;;text;t2_137eqq;False;False;[];;Interpreted the title as “Skinfinity”;False;False;;;;1610235955;;False;{};giphv03;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giphv03/;1610278411;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RasenRendan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RasenRendan;light;text;t2_118o7l;False;False;[];;"I just wanted to say im very happy to see my country of Canada represented in this anime. - -Also the Main Villian is very obviously DIO-SAMA i can tell just from the humming - -this is gonna be gr8";False;False;;;;1610235957;;False;{};giphv44;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giphv44/;1610278412;5;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;from episode 3 when he was introduced to the last re zero episode;False;False;;;;1610235968;;False;{};giphvx8;False;t3_ku230i;False;True;t1_giphbtf;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/giphvx8/;1610278424;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;flexthingss;;;[];;;;text;t2_34xdnhi7;False;False;[];;relax we’re all crazy, it’s not a competition;False;False;;;;1610235995;;False;{};giphxs6;False;t3_ku2al6;False;True;t3_ku2al6;/r/anime/comments/ku2al6/today_is_the_perfect_day_for_an_anime_marathon/giphxs6/;1610278452;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RasenRendan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RasenRendan;light;text;t2_118o7l;False;False;[];;as someone from canada this made me so so so happy to see;False;False;;;;1610236018;;False;{};giphzf3;False;t3_ktxcly;False;False;t1_gipg5ff;/r/anime/comments/ktxcly/sk_episode_1_discussion/giphzf3/;1610278476;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610236026;;False;{};giphzzs;False;t3_ku230i;False;True;t1_giphn3x;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/giphzzs/;1610278484;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;how can it cause problem if he was not involved in the story after his introduction ?;False;False;;;;1610236056;;False;{};gipi22g;False;t3_ku230i;False;True;t1_giphvx8;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipi22g/;1610278515;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Yup, finally;False;False;;;;1610236094;;False;{};gipi4n7;False;t3_ktxcly;False;True;t1_giphzf3;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipi4n7/;1610278553;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;"he is op in the world that he inhabits, it makes the whole election feel like a joke, the cultists not really like a thread and more like ""oh yeah he could kill all of them with one shot""";False;False;;;;1610236103;;False;{};gipi590;False;t3_ku230i;False;True;t1_giphhtc;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipi590/;1610278562;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;tomtomm9;;;[];;;;text;t2_3ycvxoo9;False;False;[];;Lol I like how everyone knows what the standout episodes are.;False;False;;;;1610236132;;False;{};gipi74t;False;t3_ktyzmm;False;True;t1_giozckh;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/gipi74t/;1610278590;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Falsus;;;[];;;;text;t2_c6qmw;False;False;[];;The currently airing ''I am Spider, so what?'' does it really well, hopefully it will translate well to the anime screen also. The first episode was promising though, a lot of show rather than tell and we can figure out the system together with the MC.;False;False;;;;1610236142;;False;{};gipi7ub;False;t3_ku1nkw;False;True;t3_ku1nkw;/r/anime/comments/ku1nkw/anime_where_the_exposition_is_done_as_well_as_log/gipi7ub/;1610278600;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FearTheDragon11;;;[];;;;text;t2_3kj1ov3s;False;False;[];;I actually just started this anime!;False;False;;;;1610236190;;False;{};gipib18;False;t3_ku2al6;False;True;t3_ku2al6;/r/anime/comments/ku2al6/today_is_the_perfect_day_for_an_anime_marathon/gipib18/;1610278647;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;because he exists, im talking about the world building please know the fucking diference between plot and world building and please read my post;False;False;;;;1610236194;;False;{};gipibaq;False;t3_ku230i;False;True;t1_gipi22g;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipibaq/;1610278651;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;True;[];;I suck at keeping up with rewatches but I've really wanted to rewatch this one for some time now. If this happens I will try my best to stay in.;False;False;;;;1610236250;;False;{};gipif2c;False;t3_ku1u2g;False;True;t3_ku1u2g;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/gipif2c/;1610278707;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;In a world with almighty witch and crazy madlads who are untouchable, or can erase people from existence ?;False;False;;;;1610236277;;False;{};gipigyv;False;t3_ku230i;False;True;t1_gipibaq;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipigyv/;1610278734;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AxtheCool;;;[];;;;text;t2_y2vk9;False;False;[];;"> yeah well said, superheroes stories fucking sucks, finally people get it - -Its not a superhero thing. Lord of the Rings one of the best fantasy stories in existence has angels like Gandalf that could solve the entire plot in 10 seconds, but LOTR has some of the best lore and worldbuilding in fantasy. - -> as important as the plot - -Can you tell me how Reinhart is important/related/useful/anything to the currently running S2 plot about getting out of the Sanctuary? Because he is not.";False;False;;;;1610236348;;False;{};gipilyj;False;t3_ku230i;False;True;t1_giphn3x;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipilyj/;1610278809;1;True;False;anime;t5_2qh22;;0;[]; -[];;;25_Oranges;;;[];;;;text;t2_6k8wiuc1;False;False;[];;Lets hope we can make it happen!;False;False;;;;1610236356;;False;{};gipimia;True;t3_ku1u2g;False;False;t1_gipif2c;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/gipimia/;1610278818;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;">what made up scenarios are you talking about, - -Here : - -> it makes the whole election feel like a joke, the cultists not really like a thread and more like ""oh yeah he could kill all of them with one shot""";False;False;;;;1610236473;;False;{};gipiulb;False;t3_ku230i;False;True;t1_giphtgz;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipiulb/;1610278939;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Just_some_weird_fan;;;[];;;;text;t2_43mtiake;False;False;[];;"All dub is 100x better than sub - -Edit: I don’t agree with this view point, he asked what a good way to start a war was";False;False;;;;1610236537;;1610238394.0;{};gipiz0y;False;t3_ku2m34;False;False;t3_ku2m34;/r/anime/comments/ku2m34/how_to_start_an_anime_war/gipiz0y/;1610279005;6;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;">Can you tell me how Reinhart is important/related/useful/anything to the currently running S2 plot about getting out of the Sanctuary? Because he is not. - -DUDE LEARN HOW TO READ - -\> im talking about the lore and world building which it is as important as the - - \>plot - -i was talking about the world building, not the plot, i feel like im talking to a wall";False;False;;;;1610236582;;False;{};gipj24u;False;t3_ku230i;False;True;t1_gipilyj;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipj24u/;1610279053;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;brucebananaray;;;[];;;;text;t2_15bpgp5p;False;True;[];;Gundam G Fighters;False;False;;;;1610236616;;False;{};gipj4fn;False;t3_ku2l8l;False;False;t3_ku2l8l;/r/anime/comments/ku2l8l/masculine_mecha_martial_artshad_to_be_four_words/gipj4fn/;1610279086;5;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;they arent literal gods that could win against the fucking sun? they have weaknesses, reinhard doesnt;False;False;;;;1610236652;;False;{};gipj6xt;False;t3_ku230i;False;True;t1_gipigyv;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipj6xt/;1610279125;0;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;">it makes the whole election feel like a joke, the cultists not really like a thread and more like ""oh yeah he could kill all of them with one shot"" - -yeah he could, how is that a made up scenary i dont get your point";False;False;;;;1610236687;;False;{};gipj9ct;False;t3_ku230i;False;True;t1_gipiulb;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipj9ct/;1610279162;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DogusEUW;;;[];;;;text;t2_dtzoc;False;False;[];;"""Name one anime that you hate"". - -Doesn't matter which anime you'll name. You can instantly create a war with that fanbase.";False;False;;;;1610236704;;False;{};gipjak5;False;t3_ku2m34;False;False;t3_ku2m34;/r/anime/comments/ku2m34/how_to_start_an_anime_war/gipjak5/;1610279181;12;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;">Its not a superhero thing. Lord of the Rings one of the best fantasy stories in existence has angels like Gandalf that could solve the entire plot in 10 seconds, but LOTR has some of the best lore and worldbuilding in fantasy. - -yeah lord of the rings is another example of this, holy shit, thanks for proving my point";False;False;;;;1610236747;;False;{};gipjdlf;False;t3_ku230i;False;True;t1_gipilyj;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipjdlf/;1610279227;0;True;False;anime;t5_2qh22;;0;[]; -[];;;PeterGriffenttv;;;[];;;;text;t2_5gvxyq1r;False;False;[];;Wow that’s old;False;False;;;;1610236755;;False;{};gipje33;True;t3_ku2l8l;False;True;t1_gipj4fn;/r/anime/comments/ku2l8l/masculine_mecha_martial_artshad_to_be_four_words/gipje33/;1610279234;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YKSVOTRUGOY;;;[];;;;text;t2_7n5cxgqa;False;False;[];;"""meat shopping scene"" yeah you're a fucking genius mate KyoAni definitely couldn't come up with this brilliance on their own.";False;False;;;;1610236920;;False;{};gipjpdz;False;t3_ktyvp2;False;False;t3_ktyvp2;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/gipjpdz/;1610279406;181;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;"Well, you should read the story or wait for the anime because it's useless to talk with someone who really doesn't know what he is talking about. - -You're just whinning about something you didn't even see for yourself. You don't even know how Reinhard's character is used in the story and you complain about it. - -No, Reinhard can't do everything by himself and win everything. It's showed in the story in natural ways. -But you would have known if you have seen it for yourself.";False;False;;;;1610236980;;False;{};gipjtrz;False;t3_ku230i;False;True;t1_gipj6xt;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipjtrz/;1610279473;0;True;False;anime;t5_2qh22;;0;[]; -[];;;justinCandy;;;[];;;;text;t2_fkq0o;False;False;[];;Cartoon and anime are the same thing;False;False;;;;1610237000;;False;{};gipjv3o;False;t3_ku2m34;False;False;t3_ku2m34;/r/anime/comments/ku2m34/how_to_start_an_anime_war/gipjv3o/;1610279493;7;True;False;anime;t5_2qh22;;0;[]; -[];;;PeterGriffenttv;;;[];;;;text;t2_5gvxyq1r;False;False;[];;When does redo of healer uncensored version start;False;False;;;;1610237006;;False;{};gipjvl3;False;t3_ku2q4b;False;True;t3_ku2q4b;/r/anime/comments/ku2q4b/the_ranime_week_in_review_january_39_2021/gipjvl3/;1610279501;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PeterGriffenttv;;;[];;;;text;t2_5gvxyq1r;False;False;[];;Now listen here....;False;False;;;;1610237018;;False;{};gipjwdg;True;t3_ku2m34;False;True;t1_gipjv3o;/r/anime/comments/ku2m34/how_to_start_an_anime_war/gipjwdg/;1610279512;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;I don't see why I should care. It would be nice, but they're not speaking Japanese, after all;False;False;;;;1610237032;;False;{};gipjxdo;False;t3_ku0k6t;False;True;t1_gipav0d;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipjxdo/;1610279528;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Raejuan;;;[];;;;text;t2_2ho5vd6k;False;False;[];;I already feel the murderous intent welling up, so congratulations?;False;False;;;;1610237044;;False;{};gipjy5r;False;t3_ku2m34;False;False;t1_gipiz0y;/r/anime/comments/ku2m34/how_to_start_an_anime_war/gipjy5r/;1610279541;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;I think you are misremembering a bit of Horimiya. They only adapted 3 chapters. It's not that fast.;False;False;;;;1610237053;;False;{};gipjyth;False;t3_ku0qsl;False;True;t1_gipcj8f;/r/anime/comments/ku0qsl/weekly_seasonal_rankings_winter_2021_week_1/gipjyth/;1610279550;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Electrical_Taste8633;;;[];;;;text;t2_9h06761v;False;False;[];;Rem, she may not be best girl anymore but everyone likes her I think.;False;False;;;;1610237068;;False;{};gipjzsb;False;t3_ku19s2;False;True;t3_ku19s2;/r/anime/comments/ku19s2/hi_guys_and_girls_ive_got_a_huge_question_for_you/gipjzsb/;1610279565;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;There's some in Juushinki Pandora/Last Hope, although one of the involved pilots is a woman.;False;False;;;;1610237080;;False;{};gipk0nj;False;t3_ku2l8l;False;False;t3_ku2l8l;/r/anime/comments/ku2l8l/masculine_mecha_martial_artshad_to_be_four_words/gipk0nj/;1610279578;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;"Because he can't. It's in your head. -Did you read the story? Or do you just want to troll dude?";False;False;;;;1610237113;;False;{};gipk2um;False;t3_ku230i;False;True;t1_gipj9ct;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipk2um/;1610279611;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;It's incredibly edgy lmao. Not a good choice for people not used to some stuff in anime.;False;False;;;;1610237160;;False;{};gipk5y7;False;t3_ku09s5;False;True;t1_gip5i01;/r/anime/comments/ku09s5/an_anime_i_can_watch_with_my_mom/gipk5y7/;1610279659;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610237234;moderator;False;{};gipkb1y;False;t3_ku2v57;False;True;t3_ku2v57;/r/anime/comments/ku2v57/looking_for_an_anime_please_help/gipkb1y/;1610279737;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Nazenn;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Nazenn;light;text;t2_n4ozd;False;False;[];;The random Fennec Fox was probably the biggest surprise in the show, but I hope it biting everyone becomes a running gag;False;False;;;;1610237235;;False;{};gipkb4d;False;t3_ktxcly;False;False;t1_gionfmw;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipkb4d/;1610279738;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Nazenn;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Nazenn;light;text;t2_n4ozd;False;False;[];;"> An adaptation of SSX 3 would be cool - -Only if they can license the [soundtrack](https://www.youtube.com/watch?v=S12iI1p8lpE) again";False;False;;;;1610237283;;False;{};gipkedz;False;t3_ktxcly;False;False;t1_gionfx1;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipkedz/;1610279786;4;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;">Well, you should read the story or wait for the anime because it's useless to talk with someone who really doesn't know what he is talking about. - -i am caught up with the web novel - -> You're just whinning about something you didn't even see for yourself. You don't even know how Reinhard's character is used in the story and you complain about it. - -i have read all the story - -> No, Reinhard can't do everything by himself and win everything. It's showed in the story in natural ways. But you would have known if you have seen it for yourself. - -i have read all the story - -if your whole argument is ""you didnt read it"" ok man you totally win";False;False;;;;1610237307;;False;{};gipkfzx;False;t3_ku230i;False;True;t1_gipjtrz;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipkfzx/;1610279810;1;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;"**Episode 8 (rewatcher)** - -* Yuu: - -[](#abandonthread) - -* The crazy girl speaks the truth again. Anybody remember Luna Lovegood? -* If Yuu is getting any edgier, the tram owner will sue for cut seating. -* Haruka manages to be so suspicious that even her mother realizes something is up. -* “That is because you leapt space and time” … “I gotta get changed.” - -[](#cokemasterrace) - -* “I ain’t touching that crap” – sure, it is not live bugs … -* Even Haruka noticed the Yuu-Karasu connection. I love their talk in that room in general. It combines a good character moment with natural world building. Haruka obviously should ask these questions. -* Haruka is the first to not let Yuu go (or the first that Yuu does not run away from). -* Now that Karasu is fully here, cats and dogs can see him. -* *How on earth did you turn from old man back to boy this quickly Yuu?* - Baron, probably. -* “That is none of your business” *spiderman meme* -* Let’s call it *the Yuu hiding room*. - -Haruka’s mother is all oblivious and meanwhile Haruka is upstairs with not one but two men. Well, technically, just one man, but he is both a grizzly veteran AND her childhood friend. Be worried, mom! - -It was clear that we would get a cool-down episode after yesterday’s climax, but the background music cues us in that the innocent days are gone, even if Haruka and Yuu still squabble over chocolate.";False;False;;;;1610237308;;False;{};gipkg2r;False;t3_ku0k6t;False;False;t3_ku0k6t;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipkg2r/;1610279811;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;"> Or do you just want to troll dude? - -amazing, im a troll for saying that i dislike a middle school tier writting";False;False;;;;1610237337;;False;{};gipki04;False;t3_ku230i;False;True;t1_gipk2um;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipki04/;1610279841;0;True;False;anime;t5_2qh22;;0;[]; -[];;;pebrocks;;;[];;;;text;t2_q7ykt;False;False;[];;">Original anime - -It has my attention - ->Sports - -and it's gone.";False;True;;comment score below threshold;;1610237389;;False;{};gipklkp;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipklkp/;1610279896;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;Querez;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Querez8504;light;text;t2_7a3kzvl;False;False;[];;Well it's a finished 12-13 episode season. Though it's getting at least another season eventually, if that's what you're talking about.;False;False;;;;1610237397;;False;{};gipkm37;False;t3_ktyy8v;False;True;t1_gip87x5;/r/anime/comments/ktyy8v/are_there_any_mangaanime_where_the_mc_gets_sucked/gipkm37/;1610279903;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;"The Promised Neverland, Death Note, Attack on Titan and Neon Genesis Evangelion for me. They are a bit over the top which is why some people think these shows might not be for beginners but actually the core of the shows are really appealing to the general population. They are well written and they are thrilling. They don't depend on sharing anime humor or understanding the way feelings are potrayed in anime. A lot of people are too used to it but the way love and relationships and even mental health issues are depicted in anime don't really reasonate with a lot of people. That edgy MC self insert you like so much won't really appeal to your parents. But with these shows I feel the plot itself is cohesive enough so that you can get invested in it while getting used to the more over the top side of anime. - -Neon Genesis Evangelion doesn't really fit all this btw, it's just master piece.";False;False;;;;1610237448;;False;{};gipkpfv;False;t3_ku09s5;False;True;t3_ku09s5;/r/anime/comments/ku09s5/an_anime_i_can_watch_with_my_mom/gipkpfv/;1610279957;1;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;The synopsis is rather unique. It has a high MAL score too. I am at least interested. Whether I will participate depends a bit on the timing of other rewatches.;False;False;;;;1610237470;;False;{};gipkqx1;False;t3_ku1u2g;False;True;t3_ku1u2g;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/gipkqx1/;1610279980;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;"> Reinhard can't do everything by himself and win everything. It's showed in the story in natural ways. - -also if you are talking about regulus lmao, the strongest authority that couldnt even make reinhard sweat lol, i just wish he wasnt the inmortal, op and unbeatable character that he is";False;False;;;;1610237481;;False;{};gipkrpj;False;t3_ku230i;False;True;t1_gipjtrz;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipkrpj/;1610279992;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;"I assume Return By Death is also middle school tier writting because it makes, Subaru ""unkillable"" and ""instoppable"" ect.. ect... ?";False;False;;;;1610237505;;False;{};gipktdf;False;t3_ku230i;False;True;t1_gipki04;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipktdf/;1610280018;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"Here's another 5: - -https://youtu.be/ztxC4-zKXsk - -https://youtu.be/cvYigYKn45A - -https://youtu.be/ywhBA2ae6MQ - -https://youtu.be/dsJ3Zmgixt4 - -https://youtu.be/r5-tsM1cI-8 - -Such a good soundtrack.";False;False;;;;1610237529;;False;{};gipkv06;False;t3_ktxcly;False;True;t1_gipkedz;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipkv06/;1610280046;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Querez;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Querez8504;light;text;t2_7a3kzvl;False;False;[];;The OP asked for an isekai where the main character gets put in an existing world from a manga or anime (or game I guess) which they know of, where they *avoid* the main story because they know it'll be horrible on them.;False;False;;;;1610237538;;False;{};gipkvlb;False;t3_ktyy8v;False;True;t1_gip7i9v;/r/anime/comments/ktyy8v/are_there_any_mangaanime_where_the_mc_gets_sucked/gipkvlb/;1610280057;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;"> Because he can't. It's in your head - -the author said in an interview that he could beat everyone in the world combined - -> Did you read the story? - -yes? why the fuck would i discuss a series then";False;False;;;;1610237571;;False;{};gipkxvw;False;t3_ku230i;False;True;t1_gipk2um;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipkxvw/;1610280093;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AxtheCool;;;[];;;;text;t2_y2vk9;False;False;[];;"Oh wow I am gonna change it: - -""Can you tell me how Reinhart is important/related/useful/anything to the worldbuilding"" - -If you say: ""Cuz he is OP"". Just because he exists doesnt have any fucking effect on the worldbuilding where you have people who can erase the existence of others by learning their name. - -Reinhard has no effect on anything happening or on the world itself so why does it matter if he exists. You entire argument is: ""He is OP, bad worldbuilding""";False;False;;;;1610237586;;1610237813.0;{};gipkyxq;False;t3_ku230i;False;True;t1_gipj24u;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipkyxq/;1610280108;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;no, because it has drawbacks and it is a fun ability, reinhard is just some shitty character made in a discussion between two middle schooler about how to win the other one in an imaginary game;False;False;;;;1610237635;;False;{};gipl29p;False;t3_ku230i;False;True;t1_gipktdf;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipl29p/;1610280162;0;True;False;anime;t5_2qh22;;0;[]; -[];;;25_Oranges;;;[];;;;text;t2_6k8wiuc1;False;False;[];;Understandable! There are quite a few rewatches happening in February but I didn't want to wait until March :);False;False;;;;1610237686;;False;{};gipl5v5;True;t3_ku1u2g;False;True;t1_gipkqx1;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/gipl5v5/;1610280217;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610237704;;False;{};gipl75w;False;t3_ktyvp2;False;False;t3_ktyvp2;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/gipl75w/;1610280238;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AxtheCool;;;[];;;;text;t2_y2vk9;False;False;[];;"Damn imagine saying that the story that is praised for its lore and worldbuilding has bad lore and worldbuilding. - -Imagine being so dense to fail to realize that there might be a fucking reason why OP beings dont use their power or have no effect on the world.";False;False;;;;1610237733;;False;{};gipl9cn;False;t3_ku230i;False;True;t1_gipjdlf;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipl9cn/;1610280272;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;I think you should re-read the story then, because it seems you have blurry memories of what happened but let's not spoil we are at r/anime, a place where your point does even less stand.;False;False;;;;1610237744;;False;{};gipla7s;False;t3_ku230i;False;True;t1_gipkrpj;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipla7s/;1610280287;0;True;False;anime;t5_2qh22;;0;[]; -[];;;caelum007;;;[];;;;text;t2_o48xg;False;False;[];;"every slice of life anime has a common activity we all do in real life but every show and anime tell them in a manner that would make their audience see it in an artistic manner, like eating potato chips in a villainous fashion. the site explained that the arsonist may have written that scene in a creative manner that kyo-ani may have ""referenced"", but that doesnt justify mass murder crime that he did.";False;False;;;;1610237774;;False;{};giplcfo;False;t3_ktyvp2;False;False;t1_gipjpdz;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giplcfo/;1610280322;72;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610237778;moderator;False;{};giplcpf;False;t3_ku31i5;False;True;t3_ku31i5;/r/anime/comments/ku31i5/i_cant_think_of_the_anime_please_help/giplcpf/;1610280326;1;False;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;">Reinhard has no effect on anything happening or on the world itself so why does it matter if he exists. - -that is literally my point tho, how little the world reacts to fucking talking nuke in human form that can destroy the world";False;False;;;;1610237798;;False;{};giple80;False;t3_ku230i;False;True;t1_gipkyxq;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/giple80/;1610280351;0;True;False;anime;t5_2qh22;;0;[]; -[];;;PreludeToHell;;;[];;;;text;t2_yec5f;False;False;[];;[Tsurezure Children](https://myanimelist.net/anime/34902/Tsurezure_Children);False;False;;;;1610237837;;False;{};giplgw1;False;t3_ku31i5;False;True;t3_ku31i5;/r/anime/comments/ku31i5/i_cant_think_of_the_anime_please_help/giplgw1/;1610280391;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;">I think you should re-read the story then, because it seems you have blurry - -damn my dude, nice argument, im totally owned, and it is not like that is ad hominem, i sugest you talk about my argument andnot attack my character";False;False;;;;1610237886;;False;{};giplk9n;False;t3_ku230i;False;True;t1_gipla7s;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/giplk9n/;1610280445;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;Sounds cool;False;False;;;;1610237900;;False;{};gipll7r;False;t3_ku1u2g;False;True;t3_ku1u2g;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/gipll7r/;1610280461;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EggOcean;;;[];;;;text;t2_8qi5hjwq;False;False;[];;are you thinking of Tsurezure Children?;False;False;;;;1610237914;;False;{};giplm78;False;t3_ku31i5;False;True;t3_ku31i5;/r/anime/comments/ku31i5/i_cant_think_of_the_anime_please_help/giplm78/;1610280476;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_vogonpoetry_;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/ThisWasATriumph;dark;text;t2_akt6d;False;False;[];;Tsurezure Children;False;False;;;;1610237918;;False;{};giplmgi;False;t3_ku31i5;False;True;t3_ku31i5;/r/anime/comments/ku31i5/i_cant_think_of_the_anime_please_help/giplmgi/;1610280480;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Burger8oi;;;[];;;;text;t2_38knijco;False;False;[];;Omg thank you so mutch it was really bugging me all day;False;False;;;;1610237928;;False;{};gipln7n;True;t3_ku31i5;False;True;t1_giplgw1;/r/anime/comments/ku31i5/i_cant_think_of_the_anime_please_help/gipln7n/;1610280492;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Burger8oi;;;[];;;;text;t2_38knijco;False;False;[];;Yes I belive so thank you;False;False;;;;1610237940;;False;{};giplo28;True;t3_ku31i5;False;True;t1_giplm78;/r/anime/comments/ku31i5/i_cant_think_of_the_anime_please_help/giplo28/;1610280505;1;True;False;anime;t5_2qh22;;0;[]; -[];;;biggamerboi1;;;[];;;;text;t2_6eh86lwv;False;False;[];;Have an opinion on mha ship;False;False;;;;1610237964;;False;{};giplpn2;False;t3_ku2m34;False;True;t3_ku2m34;/r/anime/comments/ku2m34/how_to_start_an_anime_war/giplpn2/;1610280531;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AxtheCool;;;[];;;;text;t2_y2vk9;False;False;[];;Why does it have to react? Despite his power we are even shown that Reihart has many regrets for not being able to help people despite having all his power (aka a Superman syndrome), he is not some omnipotent being that can save everyone everywhere.;False;False;;;;1610237980;;False;{};giplqs7;False;t3_ku230i;False;True;t1_giple80;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/giplqs7/;1610280548;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Burger8oi;;;[];;;;text;t2_38knijco;False;False;[];;Thank you now I can sleep without that bugging me however I probably won’t be sleeping when I can watch anime;False;False;;;;1610237983;;False;{};giplqzg;True;t3_ku31i5;False;True;t1_giplmgi;/r/anime/comments/ku31i5/i_cant_think_of_the_anime_please_help/giplqzg/;1610280552;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;">Imagine being so dense to fail to realize that there might be a fucking reason why OP beings dont use their power or have no effect on the world. - -...what? explain yourself better - -> Damn imagine saying that the story that is praised for its lore and worldbuilding has bad lore and worldbuilding. - -congrats you like it, to me is shit, it is just your typical medieval fantasy with shitty lore";False;False;;;;1610238029;;False;{};giplu9s;False;t3_ku230i;False;True;t1_gipl9cn;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/giplu9s/;1610280600;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Trafalgar_Lou1;;;[];;;;text;t2_4z15tejm;False;True;[];;Should watch Banana Fish with her if you haven’t;False;False;;;;1610238030;;False;{};gipluca;False;t3_ku09s5;False;True;t1_gipggvy;/r/anime/comments/ku09s5/an_anime_i_can_watch_with_my_mom/gipluca/;1610280601;1;True;False;anime;t5_2qh22;;0;[]; -[];;;entinio;;;[];;;;text;t2_11a1xl;False;False;[];;Geez, so cliché... (I’m french);False;False;;;;1610238059;;False;{};giplwet;False;t3_ktx8gk;False;True;t3_ktx8gk;/r/anime/comments/ktx8gk/nodame_studying_basic_french_nodame_cantabile/giplwet/;1610280633;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;im not talking about his psyche;False;False;;;;1610238084;;False;{};giply54;False;t3_ku230i;False;True;t1_giplqs7;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/giply54/;1610280658;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ben99ny22;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ben99ny;light;text;t2_14rmpidg;False;False;[];;"I thought that it was just a bad title. - -also, kazuma does try to avoid the main plot because he thinks his team sucks and whats to get through life easy. He had a way to get a lot of money and decided to stop his quest for safety and luxury life. multiple times he also tries to run away.";False;False;;;;1610238095;;False;{};giplyxu;False;t3_ktyy8v;False;True;t1_gipkvlb;/r/anime/comments/ktyy8v/are_there_any_mangaanime_where_the_mc_gets_sucked/giplyxu/;1610280672;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610238120;;False;{};gipm0p6;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipm0p6/;1610280698;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;It's done so well in fact that the MC can't seem to be able to keep her trap shut.;False;False;;;;1610238141;;False;{};gipm26h;False;t3_ku1nkw;False;True;t1_gipi7ub;/r/anime/comments/ku1nkw/anime_where_the_exposition_is_done_as_well_as_log/gipm26h/;1610280720;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sm10017;;;[];;;;text;t2_4afy7ao8;False;False;[];;">nickname is ‘Lord Shadow’ - ->wears Kiss style makeup - ->huge stylized ginger hair - ->wears a fuckin cape - -Yep, this dude is a Sonic fan.";False;False;;;;1610238199;;False;{};gipm64v;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipm64v/;1610280780;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;"Thing is, the Sword Saint benediction is just like Return by Death, a plot mechanic that has a purpose and is fully explained and used logically.And we know that it has drawbacks or that it doesn't make the character invicible because nothing is fixed in a fight and everything is possible according to the context. - -But you just read some comments from the author joking about how the character is powerful, but that changes nothing about how he is used in the story. And for the moment, he is used in logical ways, and it feels natural just like any other authorities in the story.Given how you seems to take facts at face value, what about how Subaru in the What If uses his brain to manipulate him. You can be invincible and still have weakness that other people can exploit and that's the case here. - -If you have such a problem with it to the point of being this agressive when he is in the story only a few times and that never it caused a problem so far, you should question yourself about dropping the novel then";False;False;;;;1610238202;;False;{};gipm6e5;False;t3_ku230i;False;True;t1_gipl29p;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipm6e5/;1610280783;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheLawOfMurphy;;;[];;;;text;t2_14jjad;False;False;[];;Don't know why anyone down voted you. This is a great way to start a war.;False;False;;;;1610238209;;False;{};gipm6u2;False;t3_ku2m34;False;False;t1_gipiz0y;/r/anime/comments/ku2m34/how_to_start_an_anime_war/gipm6u2/;1610280790;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Falsus;;;[];;;;text;t2_c6qmw;False;False;[];;Certainly at the end of the day the one who loves the Spider anime the most is Aoi Yuuki's bank account.;False;False;;;;1610238234;;False;{};gipm8id;False;t3_ku1nkw;False;True;t1_gipm26h;/r/anime/comments/ku1nkw/anime_where_the_exposition_is_done_as_well_as_log/gipm8id/;1610280817;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Querez;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Querez8504;light;text;t2_7a3kzvl;False;False;[];;I know exactly what you mean, but that isn't really what they asked about. You could've recommended KonoSuba, but then said that the main character actually isn't aware of the world previously to being sent there.;False;False;;;;1610238236;;False;{};gipm8nx;False;t3_ktyy8v;False;True;t1_giplyxu;/r/anime/comments/ktyy8v/are_there_any_mangaanime_where_the_mc_gets_sucked/gipm8nx/;1610280819;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Satarielle;;;[];;;;text;t2_zg9tv;False;False;[];;The second season is really boring and nothing like the first season.;False;True;;comment score below threshold;;1610238239;;False;{};gipm8vl;False;t3_ku33v8;False;True;t3_ku33v8;/r/anime/comments/ku33v8/is_rezero_worth_the_hype/gipm8vl/;1610280822;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;Sao is actually good;False;False;;;;1610238240;;False;{};gipm8x9;False;t3_ku2m34;False;False;t3_ku2m34;/r/anime/comments/ku2m34/how_to_start_an_anime_war/gipm8x9/;1610280823;5;True;False;anime;t5_2qh22;;0;[]; -[];;;TotallyBrandNewName;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Siimoes;light;text;t2_64wlph5b;False;False;[];;Idk what is this anime but I also need to know.;False;False;;;;1610238259;;False;{};gipmabk;False;t3_ku2q4b;False;False;t1_gipjvl3;/r/anime/comments/ku2q4b/the_ranime_week_in_review_january_39_2021/gipmabk/;1610280844;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;TouchdownHeroes;;;[];;;;text;t2_bb7pwvd;False;False;[];;Yes - there we go time saved, but I do support this video anyways just for the Emilia pouting face thumbnail;False;False;;;;1610238292;;False;{};gipmckk;False;t3_ku33v8;False;True;t3_ku33v8;/r/anime/comments/ku33v8/is_rezero_worth_the_hype/gipmckk/;1610280879;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610238319;;False;{};gipmeio;False;t3_ku33v8;False;True;t1_gipm8vl;/r/anime/comments/ku33v8/is_rezero_worth_the_hype/gipmeio/;1610280908;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;ADampWedgie;;;[];;;;text;t2_j7krn;False;False;[];;I haven't heard anything about this, just watched the trailer and getting AirGear vibes?;False;False;;;;1610238404;;False;{};gipmkcm;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipmkcm/;1610280997;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AxtheCool;;;[];;;;text;t2_y2vk9;False;False;[];;"> ...what? explain yourself better - -Because Reihart is not omnipotent being that can teleport everywhere saving everyone in the process. He is still human despite having such power. - -> congrats you like it, to me is shit, it is just your typical medieval fantasy with shitty lore - -Its just shows you dont have an idea of what good or bad worldbuilding/lore is. You entire argument that worldbuilding sucks in Re Zero because one ONE character exists. A character that is 98% irrelevant and is there as a gag.";False;False;;;;1610238446;;False;{};gipmna7;False;t3_ku230i;False;True;t1_giplu9s;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipmna7/;1610281041;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;">.And we know that it has drawbacks or that it doesn't make the character invicible because nothing is fixed in a fight and everything is possible according to the context. - -[https://www.reddit.com/r/Re\_Zero/comments/4p2qtt/spoiler\_lnwn\_all\_of\_reinhards\_blessings\_that\_i/](https://www.reddit.com/r/Re_Zero/comments/4p2qtt/spoiler_lnwn_all_of_reinhards_blessings_that_i/) he has a blessing that makes him revive and a blessing that lets him have all the blessings that he wants, pretty sure this guy doesnt have any weaknesses - -> But you just read some comments from the author joking about how the character is powerful, but that changes nothing about how he is used in the story. And for the moment, he is used in logical ways, and it feels natural just like any other authorities in the story.Given how you seems to take facts at face value, what about how Subaru in the What If uses his brain to manipulate him. You can be invincible and still have weakness that other people can exploit and that's the case here. - -he has a blessing to sense lies - -> If you have such a problem with it to the point of being this agressive when he is in the story only a few times and that never it caused a problem so far, you should question yourself about dropping the novel then - -dont tell me what to do thank you very much, i just think the story would be a lot better without him existing";False;False;;;;1610238477;;False;{};gipmpcf;False;t3_ku230i;False;False;t1_gipm6e5;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipmpcf/;1610281072;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;">You entire argument that worldbuilding sucks in Re Zero because one ONE character exists. - -a character that could destroy the world with no one stopping him (said by the author itself) - -well yeah the world building sucks";False;False;;;;1610238548;;False;{};gipmubf;False;t3_ku230i;False;True;t1_gipmna7;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipmubf/;1610281149;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;">A character that is 98% irrelevant and is there as a gag. - -hilarious joke, i hope his next one is actually funny";False;False;;;;1610238582;;False;{};gipmwln;False;t3_ku230i;False;True;t1_gipmna7;/r/anime/comments/ku230i/reinhard_ruins_re_zero_for_me_spoilers/gipmwln/;1610281185;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610238623;;False;{};gipmzhw;False;t3_ku1f3f;False;True;t3_ku1f3f;/r/anime/comments/ku1f3f/why_does_the_military_in_attack_on_titan_allow/gipmzhw/;1610281228;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;Serial Experiments Lain;False;False;;;;1610238697;;False;{};gipn4kl;False;t3_ku3b8h;False;True;t3_ku3b8h;/r/anime/comments/ku3b8h/anyone_know_where_this_is_from/gipn4kl/;1610281305;4;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;Serial Experiments Lain;False;False;;;;1610238704;;False;{};gipn53t;False;t3_ku3b8h;False;True;t3_ku3b8h;/r/anime/comments/ku3b8h/anyone_know_where_this_is_from/gipn53t/;1610281312;5;True;False;anime;t5_2qh22;;0;[]; -[];;;HenryRCrowell;;;[];;;;text;t2_43zwqkb5;False;False;[];;thanks;False;False;;;;1610238726;;False;{};gipn6m7;True;t3_ku3b8h;False;True;t1_gipn4kl;/r/anime/comments/ku3b8h/anyone_know_where_this_is_from/gipn6m7/;1610281337;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SpaceSloth707;;;[];;;;text;t2_3mlkcoo2;False;False;[];;Hmm, quite tricky. I think there are quite a lot of animes which are set in some kind of fantasy world. I can't think of an anime I've watched which is a lot like what you described. Sorry I can't be of much help, but hopefully others here will be able to help out.;False;False;;;;1610238775;;False;{};gipn9wu;False;t3_ku2v57;False;True;t3_ku2v57;/r/anime/comments/ku2v57/looking_for_an_anime_please_help/gipn9wu/;1610281386;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SoCalThrowAway7;;;[];;;;text;t2_hvz47;False;False;[];;I only want it if it’s the classic cool guy snowboarders vs uptight douche skiers like from 80s movies with shonen style full conversations while racing down a mountain.;False;False;;;;1610238872;;False;{};gipngpj;False;t3_ktxcly;False;False;t1_gion0yp;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipngpj/;1610281493;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Al-Pharazon;;;[];;;;text;t2_1s32gw1x;False;False;[];;"Wasted on what? - -[S3 spoilers](/s "" The military was always a lie, if you remember S3 it was mentioned that the King in the Walls erased the memories of those inside of it outside of a small minority. The king didn't want to fight the titans roaming outside the walls, the most qualified trainees were more useful purging those elements that needed to be purged to protect the peace."")";False;False;;;;1610238936;;False;{};gipnl3b;False;t3_ku1f3f;False;True;t3_ku1f3f;/r/anime/comments/ku1f3f/why_does_the_military_in_attack_on_titan_allow/gipnl3b/;1610281562;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bastet96;;;[];;;;text;t2_80age05;False;False;[];;Thanks anyways I can atleast narrow it down that it's not death March, in another world with my smartphone, outbreak company, gate, how not to summon a demon lord or demon lord retry that sort of setting though but there are others ive looked into just encase;False;False;;;;1610238976;;False;{};gipnnw4;True;t3_ku2v57;False;True;t1_gipn9wu;/r/anime/comments/ku2v57/looking_for_an_anime_please_help/gipnnw4/;1610281607;2;True;False;anime;t5_2qh22;;0;[]; -[];;;just_kei;;;[];;;;text;t2_y4swg0y;False;False;[];;Kyoani staff aren't even the original author.;False;False;;;;1610238990;;False;{};gipnosz;False;t3_ktyvp2;False;False;t3_ktyvp2;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/gipnosz/;1610281621;76;True;False;anime;t5_2qh22;;0;[]; -[];;;Npslayer;;MAL;[];;http://myanimelist.net/animelist/npslayer;dark;text;t2_8jt09;False;False;[];;"> Studio BONES - -No wonder the production is top notch";False;False;;;;1610239009;;False;{};gipnq8d;False;t3_ktxcly;False;False;t1_gioo681;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipnq8d/;1610281642;15;True;False;anime;t5_2qh22;;0;[]; -[];;;manga-reader;;;[];;;;text;t2_gnj2435;False;False;[];;"> Interesting. Do you think depicting them seeing a therapist would detract from the overall narrative / put too much importance on the significance of their relationship to the anime as a whole? - -Well, the show doesn't have to necessarily show the conversation between them and the therapist.....rather, it can end on that note. - -Edit: I just realized Noein has 24 episodes, so keeping that for climax maybe stretching it out too far. Perhaps have Yuu mention that they are actively visiting a therapist and working to repair their relationship. - -As for significance of the relationship...Maybe, Karasu is playing a pretty big role (and we can assume that he's the way he is, due to his environment - can this Yuu become a better version of himself if he is able to repair his relationship with his family?). What sort of ripple effect would that have on Haruka, and subsequently on this dimension? If that effect is big, then I don't see much problem with show using few episodes to repair Yuu's relationship with his mom.";False;False;;;;1610239016;;False;{};gipnqoi;False;t3_ku0k6t;False;True;t1_gipcj0w;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipnqoi/;1610281649;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;ReCreators and Spice and Wolf both do dialogue heavy exposition scenes very well.;False;False;;;;1610239243;;False;{};gipo6jc;False;t3_ku1nkw;False;True;t3_ku1nkw;/r/anime/comments/ku1nkw/anime_where_the_exposition_is_done_as_well_as_log/gipo6jc/;1610281897;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SpaceSloth707;;;[];;;;text;t2_3mlkcoo2;False;False;[];;I hope someone else will be able to help you! I really can't think of an anime I've watched which had a scene like that. I might not have actually seen the anime you're looking for, or I actually might have but I don't remember or something like that. The more you've seen, the harder it'll be to remember every story.;False;False;;;;1610239303;;False;{};gipoaji;False;t3_ku2v57;False;False;t1_gipnnw4;/r/anime/comments/ku2v57/looking_for_an_anime_please_help/gipoaji/;1610281964;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610239344;moderator;False;{};gipodcs;False;t3_ku3i0e;False;True;t3_ku3i0e;/r/anime/comments/ku3i0e/can_anyone_help_me_find_the_anime/gipodcs/;1610282007;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610239427;;False;{};gipojg6;False;t3_ku3i0e;False;True;t3_ku3i0e;/r/anime/comments/ku3i0e/can_anyone_help_me_find_the_anime/gipojg6/;1610282101;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lolibringerr;;;[];;;;text;t2_6hlfexpt;False;False;[];;I don’t sadly;False;False;;;;1610239470;;False;{};gipomf7;True;t3_ku3i0e;False;True;t1_gipojg6;/r/anime/comments/ku3i0e/can_anyone_help_me_find_the_anime/gipomf7/;1610282145;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Rarbnif;;;[];;;;text;t2_5z1ic53;False;False;[];;I fuck with this already can’t wait to see more;False;False;;;;1610239473;;False;{};gipomls;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipomls/;1610282148;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;Blood C;False;False;;;;1610239478;;False;{};gipomyd;False;t3_ku3i0e;False;True;t3_ku3i0e;/r/anime/comments/ku3i0e/can_anyone_help_me_find_the_anime/gipomyd/;1610282154;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sgt_Snookums;;;[];;;;text;t2_1kcv7o0;False;False;[];;Its blood-C. Upon googling anime with dog that has ears that are arms, I found a picture of that creature 🤣;False;False;;;;1610239482;;False;{};gipon9p;False;t3_ku3i0e;False;True;t3_ku3i0e;/r/anime/comments/ku3i0e/can_anyone_help_me_find_the_anime/gipon9p/;1610282158;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lolibringerr;;;[];;;;text;t2_6hlfexpt;False;False;[];;Thank you very much;False;False;;;;1610239500;;False;{};gipooid;True;t3_ku3i0e;False;True;t1_gipomyd;/r/anime/comments/ku3i0e/can_anyone_help_me_find_the_anime/gipooid/;1610282177;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610239521;;False;{};gipoq1d;False;t3_ku3i0e;False;True;t3_ku3i0e;/r/anime/comments/ku3i0e/can_anyone_help_me_find_the_anime/gipoq1d/;1610282201;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bastet96;;;[];;;;text;t2_80age05;False;False;[];;True thanks anyways I know it's nothing to do with what I've asked but do you know if million arthur or magical Warfare is worth watching?;False;False;;;;1610239548;;False;{};gipos0u;True;t3_ku2v57;False;True;t1_gipoaji;/r/anime/comments/ku2v57/looking_for_an_anime_please_help/gipos0u/;1610282233;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chinatownjon;;;[];;;;text;t2_2llv7rko;False;False;[];;"Because in AoT, the king and high royals are extremely selfish, classist, and obtuse to the point they don't understand the struggles of outer rings. Therefore they encourage people to strive for ""a life in the interior"" where they are offered safety from danger, while also keeping the ""strongest"" soldiers closest to the king for safety. Basically, corruption starting from the very top. - -But those ""strong"" soldiers are not truly even that, but glorified and brainwashed police, which is seen when they lack understanding and trust of the scout regiment and focus only on their own agenda and preserving the comfort in the center ring. Hope this helps!";False;False;;;;1610239563;;False;{};gipot5o;False;t3_ku1f3f;False;True;t3_ku1f3f;/r/anime/comments/ku1f3f/why_does_the_military_in_attack_on_titan_allow/gipot5o/;1610282250;3;True;False;anime;t5_2qh22;;0;[]; -[];;;willworkforabreak;;;[];;;;text;t2_77idl;False;False;[];;Does he really!? They must have known;False;False;;;;1610239661;;False;{};gipp0gv;False;t3_ktxcly;False;False;t1_giop9nk;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipp0gv/;1610282360;4;True;False;anime;t5_2qh22;;0;[]; -[];;;machopsychologist;;;[];;;;text;t2_1nsz447e;False;False;[];;It wasn’t bad tho. Worth watching.;False;False;;;;1610239672;;False;{};gipp1bl;False;t3_ktyvp2;False;False;t1_gipel7i;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/gipp1bl/;1610282374;18;True;False;anime;t5_2qh22;;0;[]; -[];;;dankest_niBBa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_314yh1er;False;False;[];;If we get Kaguya-sama season 3 this year, then its an easy pick for me.;False;False;;;;1610239733;;False;{};gipp5tq;False;t3_ktwy3i;False;True;t1_giphanj;/r/anime/comments/ktwy3i/looking_at_mal_or_one_of_the_sites_what_year_do/gipp5tq/;1610282445;1;True;False;anime;t5_2qh22;;0;[]; -[];;;manga-reader;;;[];;;;text;t2_gnj2435;False;False;[];;"I can see him running away (mentally) from his wife (not wanting to face reality - she's not well and work towards helping her), instead focusing on his work. Helping others deal with shit also takes a toll - especially if it's your partner. - -Maybe he's dealing with his own shit at work, or of course, he could just be a standard POS. But that would be boring.";False;False;;;;1610239736;;False;{};gipp5zf;False;t3_ku0k6t;False;True;t1_gipd43v;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipp5zf/;1610282446;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Danilieri;;;[];;;;text;t2_14efkm;False;False;[];;Its the perfect amount of fun and nonsense! This is what made anime as a medium so special to me;False;False;;;;1610239773;;False;{};gipp8ui;False;t3_ktxcly;False;False;t1_giox1mf;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipp8ui/;1610282491;9;True;False;anime;t5_2qh22;;0;[]; -[];;;willworkforabreak;;;[];;;;text;t2_77idl;False;False;[];;I've never been hurt this badly by something i know will never happen.;False;False;;;;1610239858;;False;{};gippewp;False;t3_ktxcly;False;True;t1_gionfx1;/r/anime/comments/ktxcly/sk_episode_1_discussion/gippewp/;1610282588;3;True;False;anime;t5_2qh22;;0;[]; -[];;;willworkforabreak;;;[];;;;text;t2_77idl;False;False;[];;Careful. When you're feeling. Out of your mind.;False;False;;;;1610239889;;False;{};gipph4q;False;t3_ktxcly;False;True;t1_gipkedz;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipph4q/;1610282625;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SunYeee;;;[];;;;text;t2_5ofnhuak;False;False;[];;#oat iw shit;False;False;;;;1610239990;;False;{};gippo22;False;t3_ku2m34;False;True;t3_ku2m34;/r/anime/comments/ku2m34/how_to_start_an_anime_war/gippo22/;1610282735;1;True;False;anime;t5_2qh22;;0;[]; -[];;;willworkforabreak;;;[];;;;text;t2_77idl;False;False;[];;I don't know what I should be more shocked by. Either it's this many people actually remembering the SSX franchise, or all of them having the objectively correct opinion that 3 is more memorable than tricky.;False;False;;;;1610240092;;False;{};gippv94;False;t3_ktxcly;False;False;t1_gion88w;/r/anime/comments/ktxcly/sk_episode_1_discussion/gippv94/;1610282850;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PeterGriffenttv;;;[];;;;text;t2_5gvxyq1r;False;False;[];;Comrade!;False;False;;;;1610240125;;False;{};gippxfp;False;t3_ku2q4b;False;True;t1_gipmabk;/r/anime/comments/ku2q4b/the_ranime_week_in_review_january_39_2021/gippxfp/;1610282884;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SpaceSloth707;;;[];;;;text;t2_3mlkcoo2;False;False;[];;"Well I haven't watched those. I haven't even heard of those before. But I'm interested in checking them out. There are so many animes to watch, with new ones basically being made each day. So you really can't be blamed if you haven't watched a certain anime. So sadly I can't help you with that either. 🙁 - -But what I can do is tell you that you should just give it a try if you haven't watched it. You can follow the advice or whatever of somebody else, but I think that in the end, you yourself are the best way to judge if it's worth watching or not. After all, every likes different things.";False;False;;;;1610240132;;False;{};gippxwl;False;t3_ku2v57;False;True;t1_gipos0u;/r/anime/comments/ku2v57/looking_for_an_anime_please_help/gippxwl/;1610282892;1;True;False;anime;t5_2qh22;;0;[]; -[];;;willworkforabreak;;;[];;;;text;t2_77idl;False;False;[];;Metro city for life. I knew all the shortcuts so I would trounce my sisters when we played that one;False;False;;;;1610240142;;False;{};gippymi;False;t3_ktxcly;False;True;t1_gionmgi;/r/anime/comments/ktxcly/sk_episode_1_discussion/gippymi/;1610282904;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;I would get punched trying to go through the centre line and that always messed me up. But when I made it I did good.;False;False;;;;1610240196;;False;{};gipq2fv;False;t3_ktxcly;False;True;t1_gippymi;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipq2fv/;1610282971;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Star_Lux22;;;[];;;;text;t2_22d262q9;False;False;[];;I’ve actually been interested in watching this for a while. I would love to join!;False;False;;;;1610240279;;False;{};gipq830;False;t3_ku1u2g;False;True;t3_ku1u2g;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/gipq830/;1610283063;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bastet96;;;[];;;;text;t2_80age05;False;False;[];;Thanks and hey if you want any anime recommendations I've got loads of bookmarks and a notebook back to back pages full off anime and I was heavily into anime few years ago so watched just about nearly all of them so can sort of tell you what they are about aswell;False;False;;;;1610240280;;False;{};gipq85p;True;t3_ku2v57;False;True;t1_gippxwl;/r/anime/comments/ku2v57/looking_for_an_anime_please_help/gipq85p/;1610283064;2;True;False;anime;t5_2qh22;;0;[]; -[];;;babydave371;;MAL a-amq;[];;https://myanimelist.net/profile/babydave371;dark;text;t2_sak6n;False;False;[];;G Gundam or Gundam Build Fighters Try.;False;False;;;;1610240405;;False;{};gipqghp;False;t3_ku2l8l;False;True;t3_ku2l8l;/r/anime/comments/ku2l8l/masculine_mecha_martial_artshad_to_be_four_words/gipqghp/;1610283198;2;True;False;anime;t5_2qh22;;0;[]; -[];;;spoonsandswords;;MAL;[];;https://myanimelist.net/animelist/Skroy;dark;text;t2_3lb2w;False;False;[];;how do you pronounce this show? because i've been calling it skinfinity;False;False;;;;1610240472;;False;{};gipql3h;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipql3h/;1610283274;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;"Yeah right? - -To be honest before the reveal objectivly speaking the scouts were a waste. Most people would die, if theres a world overrun by titans then whats the point of exploring, waste of taxes - -At least the most qualified people could become royal guards";False;False;;;;1610240552;;False;{};gipqqla;False;t3_ku1f3f;False;False;t1_gipc2c4;/r/anime/comments/ku1f3f/why_does_the_military_in_attack_on_titan_allow/gipqqla/;1610283362;6;True;False;anime;t5_2qh22;;0;[]; -[];;;yeeehawspacecowboy;;;[];;;;text;t2_7rehe204;False;False;[];;"ah yes... the new Bones anime.... Skinfinity.... - -I really do like how anime these days are really up for changing up the energetic hot-headed MC and his cool emotionless friend dynamic, like Langa and Reki are legit hilarious together and it's only been 1 episode. This show definitely looks like it's gonna be a blast";False;False;;;;1610240625;;False;{};gipqvho;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipqvho/;1610283442;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SpaceSloth707;;;[];;;;text;t2_3mlkcoo2;False;False;[];;Cool. According to My Anime List, I've watched about 86 animes. (Full series, but also movies and OVA's);False;False;;;;1610240653;;False;{};gipqxd8;False;t3_ku2v57;False;True;t1_gipq85p;/r/anime/comments/ku2v57/looking_for_an_anime_please_help/gipqxd8/;1610283471;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rarbnif;;;[];;;;text;t2_5z1ic53;False;False;[];;I can see this show getting more popular it has potential I think;False;False;;;;1610240765;;False;{};gipr4ul;False;t3_ktxcly;False;False;t1_gip2384;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipr4ul/;1610283594;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MacDonald552;;;[];;;;text;t2_3dp12xb9;False;False;[];;maybe an unpopular opinion, but I would have to say Eiji Okamura from banana fish;False;False;;;;1610240913;;False;{};gipreti;False;t3_ku19s2;False;True;t3_ku19s2;/r/anime/comments/ku19s2/hi_guys_and_girls_ive_got_a_huge_question_for_you/gipreti/;1610283760;1;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;"> We got some stuff about how they make the Dragon Knights, and we learned that water is more important than food, which doesn't make a ton of sense. - -It is the way normal human beings work, though. You can easily go without food for weeks, but even a handful of days without water would be deadly (and a painful dead, too).";False;False;;;;1610240972;;False;{};gipriom;False;t3_ku0k6t;False;True;t1_gip6xww;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipriom/;1610283824;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610241171;;False;{};giprwgt;False;t3_ktyvp2;False;True;t1_gipel7i;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giprwgt/;1610284053;16;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;"> Cosplay? - -You made me google this. [One hit.](https://cosplayers.acparadise.com/90574/90574-2837933a26f55a551e1645989dd2c43b.jpg) - -I think that is *not* a look that lends itself to cosplay.";False;False;;;;1610241230;;False;{};gips0qh;False;t3_ku0k6t;False;True;t1_gip6apj;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gips0qh/;1610284122;3;True;False;anime;t5_2qh22;;0;[]; -[];;;R0bert24;;;[];;;;text;t2_3y12hba;False;False;[];;definitely pretty hype hope it will have some of the \*gay\*;False;False;;;;1610241283;;False;{};gips4kc;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gips4kc/;1610284184;4;True;False;anime;t5_2qh22;;0;[]; -[];;;dwilsons;;;[];;;;text;t2_qwwm7;False;False;[];;They kinda go into it, but yeah one of the biggest difficulties going from one to the other is strapped in feet vs. free feet. That makes in pretty tough to easily transfer skills (as does adding wheels instead of edges).;False;False;;;;1610241372;;False;{};gipsarm;False;t3_ktxcly;False;False;t1_giorkzm;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipsarm/;1610284288;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610241517;;False;{};gipskia;False;t3_ku3qi0;False;True;t3_ku3qi0;/r/anime/comments/ku3qi0/what_is_the_animemanga_that_made_you_cry_the_most/gipskia/;1610284451;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Nazenn;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Nazenn;light;text;t2_n4ozd;False;False;[];;Ah, that's why I got KyoAni vibes off a couple of the shots.;False;False;;;;1610241532;;False;{};gipsliw;False;t3_ktxcly;False;False;t1_gioqi3d;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipsliw/;1610284467;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Madshoney_xoxo;;;[];;;;text;t2_9qux8ow7;False;False;[];;That ONE episode of FMA with Nina.... Shit had me crying for years. More recently Assassination Classroom got me good at the end.;False;False;;;;1610241535;;False;{};gipslpr;False;t3_ku3qi0;False;True;t3_ku3qi0;/r/anime/comments/ku3qi0/what_is_the_animemanga_that_made_you_cry_the_most/gipslpr/;1610284471;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nazenn;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Nazenn;light;text;t2_n4ozd;False;False;[];;Langa's design reminds me of Ash so much I kept having to do a double take. Not a bad thing, though I did laugh at the skaters all having anime hair while everyone else is so normal looking;False;False;;;;1610241607;;False;{};gipsqid;False;t3_ktxcly;False;False;t1_gionf5k;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipsqid/;1610284548;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Ckang25;;;[];;;;text;t2_2fi8ouph;False;False;[];;The isekai 12 kingdom;False;False;;;;1610241669;;False;{};gipsuih;False;t3_ku1nkw;False;True;t3_ku1nkw;/r/anime/comments/ku1nkw/anime_where_the_exposition_is_done_as_well_as_log/gipsuih/;1610284620;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Nazenn;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Nazenn;light;text;t2_n4ozd;False;False;[];;That one rail that crossed half the map was such hell to line up but so satisfying to pull off;False;False;;;;1610241716;;False;{};gipsxlr;False;t3_ktxcly;False;True;t1_gipq2fv;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipsxlr/;1610284670;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nazenn;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Nazenn;light;text;t2_n4ozd;False;False;[];;Original anime always struggle with initial hype but after a few episodes if it keeps its quality the word usually gets out;False;False;;;;1610241779;;False;{};gipt1tc;False;t3_ktxcly;False;False;t1_gipr4ul;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipt1tc/;1610284739;5;True;False;anime;t5_2qh22;;0;[]; -[];;;JustAnswerAQuestion;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JAaQ/;light;text;t2_66xzcvc;False;False;[];;Well, now I think Atori is going to show up at the house and kill Yuu's mother. Which would be fine.;False;False;;;;1610241873;;False;{};gipt84x;False;t3_ku0k6t;False;True;t1_gipcum1;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipt84x/;1610284842;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Spocktacle;;;[];;;;text;t2_4zhmlflu;False;False;[];;Clannad After Story showed me what ugly crying really could be.;False;False;;;;1610242057;;False;{};giptkaq;False;t3_ku3qi0;False;True;t1_gipqluq;/r/anime/comments/ku3qi0/what_is_the_animemanga_that_made_you_cry_the_most/giptkaq/;1610285039;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kkfvjk;;;[];;;;text;t2_jmsh8;False;False;[];;I'm in love with Langa already;False;False;;;;1610242230;;False;{};giptvwz;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giptvwz/;1610285228;4;True;False;anime;t5_2qh22;;0;[]; -[];;;chaigulper;;;[];;;;text;t2_76q6j1zw;False;False;[];;{Grave of the fireflies};False;False;;;;1610242320;;False;{};gipu1xr;False;t3_ku3qi0;False;False;t3_ku3qi0;/r/anime/comments/ku3qi0/what_is_the_animemanga_that_made_you_cry_the_most/gipu1xr/;1610285331;5;True;False;anime;t5_2qh22;;0;[]; -[];;;CT-96;;MAL;[];;https://myanimelist.net/animelist/CT-96;dark;text;t2_usy8p;False;False;[];;Ranga said he likes to eat poutine. Québécois MC confirmed???;False;False;;;;1610242453;;False;{};gipuat9;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipuat9/;1610285480;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MainPattern;;;[];;;;text;t2_2qjlldzl;False;False;[];;"Ayumu Hirano, a Japanese snowboarder who won silver at the last olympics is trying to skateboard in the next summer olympics! - -I believe Shaun White does both too!";False;False;;;;1610242464;;False;{};gipubhr;False;t3_ktxcly;False;False;t1_giorkzm;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipubhr/;1610285492;9;True;False;anime;t5_2qh22;;0;[]; -[];;;CT-96;;MAL;[];;https://myanimelist.net/animelist/CT-96;dark;text;t2_usy8p;False;False;[];;He said he likes poutine as well. Maybe he's a Quebecer?;False;False;;;;1610242569;;False;{};gipuiec;False;t3_ktxcly;False;False;t1_gioolvi;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipuiec/;1610285607;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Rarbnif;;;[];;;;text;t2_5z1ic53;False;False;[];;I see a lot of people talking about it on twitter already and it’s only episode 1 if it keeps up this quality it could end becoming big like Haikyuu;False;False;;;;1610242705;;False;{};gipurc0;False;t3_ktxcly;False;True;t1_gipt1tc;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipurc0/;1610285755;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ohaimike;;;[];;;;text;t2_5ovb2;False;False;[];;SukaSuka;False;False;;;;1610242834;;False;{};gipuzwo;False;t3_ku3qi0;False;True;t3_ku3qi0;/r/anime/comments/ku3qi0/what_is_the_animemanga_that_made_you_cry_the_most/gipuzwo/;1610285903;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PhoenixFoxington;;;[];;;;text;t2_33zmnrsa;False;False;[];;Voices of a distant star;False;False;;;;1610242990;;False;{};gipvadb;False;t3_ku3qi0;False;True;t3_ku3qi0;/r/anime/comments/ku3qi0/what_is_the_animemanga_that_made_you_cry_the_most/gipvadb/;1610286081;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TokiWaKita;;;[];;;;text;t2_5x93wszo;False;False;[];;"As someone who used to actively skate and be involved in the scene, I was hoping this show would be an introduction to street culture and show the various aspects of skateboarding. - -Instead what we got is basically another shounen battle type show, with [over-the-top characters](https://imgur.com/2Cks38V), that has nothing to do with the actual skateboarding scene. - -The chemistry between the main characters is the only thing that's carrying the show in my eyes. Normally I abide by the 3 ep rule but this time I think I'll dip out now, this has really left me disappointed.";False;True;;comment score below threshold;;1610243070;;False;{};gipvfxc;False;t3_ktxcly;False;True;t1_gion6ez;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipvfxc/;1610286179;-39;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610243070;;False;{};gipvfy5;False;t3_ktyvp2;False;True;t1_giph19a;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/gipvfy5/;1610286179;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Cookiesrdelishus;;;[];;;;text;t2_5eu4u9uc;False;False;[];;Zero Two is overrated;False;False;;;;1610243204;;False;{};gipvow2;False;t3_ku2m34;False;True;t3_ku2m34;/r/anime/comments/ku2m34/how_to_start_an_anime_war/gipvow2/;1610286332;1;True;False;anime;t5_2qh22;;0;[];True -[];;;dsahgiosahgioadsh;;;[];;;;text;t2_9aa6vk09;False;False;[];;"One continuous franchise which includes at least one non-movie ""series"" (whether on TV, ONA, OVA, etc.) counts as one anime, regardless of how many seasons, episodes, OVAs, movies, etc. it has. The only exceptions are spinoffs and reboots, which count separately but which may constitute franchises in their own right. - -Additionally, any movie which isn't associated with a non-movie ""series"" counts as a single anime on its own. This includes movies which are sequels to other movies, and also includes short films. - -None of the above counts as something I've seen unless I've seen the whole thing, but if I'm in the process of watching it, it would be counted in a separate ongoing category. For obvious reasons (the fact that they list seasons, OVAs, etc. separately and so on), total counts on MAL would be inaccurate from this perspective.";False;False;;;;1610243330;;1610243762.0;{};gipvx8u;False;t3_ktzf5g;False;True;t3_ktzf5g;/r/anime/comments/ktzf5g/how_do_you_count_anime_youve_seen/gipvx8u/;1610286484;2;True;False;anime;t5_2qh22;;0;[]; -[];;;xxsenseikillerxx;;;[];;;;text;t2_5808jnxv;False;False;[];;"What's with that dog though - -And what's with the person with billions of cameras lol. Judging by the OT he's the most op i guess - -We know they're gonna let langa be op af, but hoping reki will be too. And digging their duo, emotionless and emotional";False;False;;;;1610243477;;False;{};gipw77w;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipw77w/;1610286659;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YKSVOTRUGOY;;;[];;;;text;t2_7n5cxgqa;False;False;[];;"> We even had Dio - -Yeah the first thing I thought seeing him was like ""oh no Jotaro he's back""";False;False;;;;1610243539;;False;{};gipwbfl;False;t3_ktxcly;False;False;t1_gioos2q;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipwbfl/;1610286736;9;True;False;anime;t5_2qh22;;0;[]; -[];;;JollyGee29;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JollyGee;light;text;t2_4k73bi7e;False;False;[];;Yea, I considered that as I wrote my post. I (admittedly) dismissed the notion of their bodies working like a normal human's body, especially after Atori mentioned they got rebuilt at the quantum level or whatever. I guess I should have thought more about them being normal meat people like the rest of us.;False;False;;;;1610243569;;False;{};gipwdgb;False;t3_ku0k6t;False;True;t1_gipriom;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipwdgb/;1610286771;3;True;False;anime;t5_2qh22;;0;[]; -[];;;rlmurrhee;;skip7;[];;;dark;text;t2_9a8y9b5c;False;False;[];;yes 😂;False;False;;;;1610243665;;False;{};gipwjtz;True;t3_ktyzmm;False;True;t1_gip84dw;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/gipwjtz/;1610286883;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YuriAddict7;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/R1seKujikawa/;light;text;t2_3zn8celm;False;False;[];;Wtf that was cool af. This is original?;False;False;;;;1610243718;;False;{};gipwnds;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipwnds/;1610286943;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MacronIsaNecrophile;;;[];;;;text;t2_2w91i0i;False;False;[];;[Kurau phantom memory](https://files.catbox.moe/ud9pdv.webm) is about the daughter of a scientist who's body is taken over by an entity. the other scientists are happy with this and want to experiment on her, but the father has to continue his work knowing that his real daughter has been replaced with something else, and it will only leave once it finds its 'pair'. it has the best first episode in an anime that i have seen, so its the best way of hooking people from the start. no fanservice and it also has a very good english dub.;False;False;;;;1610243732;;False;{};gipwoa7;False;t3_ku09s5;False;True;t3_ku09s5;/r/anime/comments/ku09s5/an_anime_i_can_watch_with_my_mom/gipwoa7/;1610286960;1;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;Not saying they are normal, but there is no reason to alter perfectly working sweat glands when you create your supersoldier.;False;False;;;;1610243746;;False;{};gipwp98;False;t3_ku0k6t;False;True;t1_gipwdgb;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gipwp98/;1610286979;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610244020;;False;{};gipx7ok;False;t3_ktyvp2;False;True;t3_ktyvp2;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/gipx7ok/;1610287312;68;True;False;anime;t5_2qh22;;0;[]; -[];;;amonster458;;;[];;;;text;t2_7zd6c;False;False;[];;Yeah Shaun White was basically the the best at Vert and snowboarding for a longtime;False;False;;;;1610244076;;False;{};gipxbiv;False;t3_ktxcly;False;False;t1_gipubhr;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipxbiv/;1610287379;3;True;False;anime;t5_2qh22;;0;[]; -[];;;gyoex;;;[];;;;text;t2_256t5s;False;False;[];;"Like ""ess kay eight"", apparently.";False;False;;;;1610244096;;False;{};gipxcuh;False;t3_ktxcly;False;False;t1_gipql3h;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipxcuh/;1610287402;4;True;False;anime;t5_2qh22;;0;[]; -[];;;PerfectPublican;;MAL;[];;https://myanimelist.net/animelist/PerfectPublican;dark;text;t2_9qcqzr0;False;False;[];;Probably. It has been awhile. Still would've liked them to slow things down a tad;False;False;;;;1610244455;;False;{};gipy19x;False;t3_ku0qsl;False;True;t1_gipjyth;/r/anime/comments/ku0qsl/weekly_seasonal_rankings_winter_2021_week_1/gipy19x/;1610287835;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fantasticfabian;;;[];;;;text;t2_lpayd;False;False;[];;what did you want? an anime about breaking your skateboard at the park and smoking weed? that's really the only way a skateboard show would be authentic.;False;False;;;;1610244499;;False;{};gipy46r;False;t3_ktxcly;False;False;t1_gipvfxc;/r/anime/comments/ktxcly/sk_episode_1_discussion/gipy46r/;1610287892;60;True;False;anime;t5_2qh22;;0;[]; -[];;;Cookiesrdelishus;;;[];;;;text;t2_5eu4u9uc;False;False;[];;"Did you watch Garden of Words? - - -Its another Shinkai Film. The same guy who made 5cm per sec and your name. So if you enjoyed those two, you should also enjoy garden of words. Makoto Shinkai is a legend.";False;False;;;;1610244528;;False;{};gipy66m;False;t3_ktyc7w;False;True;t3_ktyc7w;/r/anime/comments/ktyc7w/i_am_looking_for_anime_movie_to_wachwhats_your/gipy66m/;1610287929;1;True;False;anime;t5_2qh22;;0;[];True -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;Weirdly enough all the anime that are suppose to make you cry didn’t really affect me but assassination classroom I bawled my eyes out lol;False;False;;;;1610244730;;False;{};gipyjpm;False;t3_ku3qi0;False;False;t3_ku3qi0;/r/anime/comments/ku3qi0/what_is_the_animemanga_that_made_you_cry_the_most/gipyjpm/;1610288173;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610244742;;False;{};gipykht;False;t3_ktyvp2;False;True;t3_ktyvp2;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/gipykht/;1610288187;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610245350;;False;{};gipzp1n;False;t3_ktyvp2;False;True;t3_ktyvp2;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/gipzp1n/;1610288919;3;True;False;anime;t5_2qh22;;0;[]; -[];;;crispy_doggo1;;;[];;;;text;t2_2nw4rbfu;False;False;[];;IIRC if not for the scouts they wouldn’t have discovered that titans can be killed by chopping their necks.;False;False;;;;1610245788;;False;{};giq0iwk;False;t3_ku1f3f;False;True;t1_gipqqla;/r/anime/comments/ku1f3f/why_does_the_military_in_attack_on_titan_allow/giq0iwk/;1610289469;1;True;False;anime;t5_2qh22;;0;[];True -[];;;jslice4ever;;;[];;;;text;t2_2wvi51tm;False;False;[];;No Sk8 the Infinity on your watch list? You're missing out.;False;False;;;;1610246035;;False;{};giq0zmo;False;t3_ku0qsl;False;True;t1_gipcj8f;/r/anime/comments/ku0qsl/weekly_seasonal_rankings_winter_2021_week_1/giq0zmo/;1610289760;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kudurru_maqlu;;;[];;;;text;t2_igrku;False;False;[];;We in Toronto eat that we'll BC to and east cost it's became a Canadian staple.;False;False;;;;1610246169;;False;{};giq18dr;False;t3_ktxcly;False;True;t1_gipuiec;/r/anime/comments/ktxcly/sk_episode_1_discussion/giq18dr/;1610289915;3;True;False;anime;t5_2qh22;;0;[]; -[];;;alcoveee;;;[];;;;text;t2_24sghfa6;False;False;[];;It's obviously Skoo;False;False;;;;1610246308;;False;{};giq1hsq;False;t3_ktxcly;False;False;t1_gioqpbp;/r/anime/comments/ktxcly/sk_episode_1_discussion/giq1hsq/;1610290335;30;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Shows the Silver Award... and that's it."", 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'icon_width': 512, 'id': 'gid_1', 'is_enabled': True, 'is_new': False, 'name': 'Silver', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610246658;;False;{'gid_1': 1};giq25cx;False;t3_ktyvp2;False;True;t1_giph19a;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giq25cx/;1610290734;202;True;False;anime;t5_2qh22;;1;[]; -[];;;Garenmain180k;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PhantomDancer04;light;text;t2_7v58rk4z;False;False;[];;Did you record the audio through your phone speaker?;False;False;;;;1610246797;;False;{};giq2eeu;False;t3_ku3caz;False;False;t3_ku3caz;/r/anime/comments/ku3caz/i_made_an_edit_with_dbz_and_playboy_carti_stop/giq2eeu/;1610290899;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610246954;;False;{};giq2oi0;False;t3_ktyvp2;False;True;t1_giq25cx;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giq2oi0/;1610291088;42;True;False;anime;t5_2qh22;;0;[]; -[];;;AvatarAarow1;;;[];;;;text;t2_3ve7o5xz;False;False;[];;"The character designs are great. The racing animations were dope. And our two main boys have a fucking hilarious dynamic. - -I’m in. This is going to be a fun time";False;False;;;;1610247254;;False;{};giq37wh;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giq37wh/;1610291430;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PerfectPublican;;MAL;[];;https://myanimelist.net/animelist/PerfectPublican;dark;text;t2_9qcqzr0;False;False;[];;Nah. Picked up too much already and I wasn't a big fan of the PV. Might pick up at the end of the season or if I drop something.;False;False;;;;1610247278;;False;{};giq39i3;False;t3_ku0qsl;False;True;t1_giq0zmo;/r/anime/comments/ku0qsl/weekly_seasonal_rankings_winter_2021_week_1/giq39i3/;1610291456;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jslice4ever;;;[];;;;text;t2_2wvi51tm;False;False;[];;"Really? I thought the PV looked amazing. Maybe I'm in the minority here, but I don't understand how anyone can look at that trailer and be like ""nah that doesn't look good.""";False;False;;;;1610247389;;False;{};giq3gp3;False;t3_ku0qsl;False;True;t1_giq39i3;/r/anime/comments/ku0qsl/weekly_seasonal_rankings_winter_2021_week_1/giq3gp3/;1610291584;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dartkun;;;[];;;;text;t2_7pg67;False;False;[];;Welp, guess I'm watching it now.;False;False;;;;1610247497;;False;{};giq3nmb;False;t3_ktxcly;False;True;t1_giphzf3;/r/anime/comments/ktxcly/sk_episode_1_discussion/giq3nmb/;1610291711;3;False;False;anime;t5_2qh22;;0;[]; -[];;;Kuramhan;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Kuramhan/;light;text;t2_esa7n;False;False;[];;Also Banana Fish. Utsumi only works with hots boys.;False;False;;;;1610247849;;False;{};giq4ae0;False;t3_ktxcly;False;False;t1_gioqi3d;/r/anime/comments/ktxcly/sk_episode_1_discussion/giq4ae0/;1610292129;31;True;False;anime;t5_2qh22;;0;[]; -[];;;rlmurrhee;;skip7;[];;;dark;text;t2_9a8y9b5c;False;False;[];;just did 😁;False;False;;;;1610248225;;False;{};giq4ygs;True;t3_ktyzmm;False;True;t1_giozckh;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/giq4ygs/;1610292584;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sdd264;;;[];;;;text;t2_1g5wqrbo;False;False;[];;As it can be seen, he is either a psycho, who should be hospitalized, or a moron, perhaps illness involved, too. I cannot guess any other reason for his actions, it cannot be seen as a crime performed by mentally healthy (in case of criminals) person;False;False;;;;1610248730;;False;{};giq5uzf;False;t3_ktyvp2;False;False;t3_ktyvp2;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giq5uzf/;1610293197;24;True;False;anime;t5_2qh22;;0;[]; -[];;;DodzReincarnated;;;[];;;;text;t2_6dnzr3j;False;False;[];;wow the ost really grabbed my attention. give me all of the bass guitar!!!;False;False;;;;1610250048;;False;{};giq8a93;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giq8a93/;1610294866;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ahnahnah;;;[];;;;text;t2_nt9b9;False;False;[];;I want a showdown between the skateboard kids and bmx kids. But they band together to defeat the scooter kids. And then a new challenger appears, THE POGO KIDS.;False;False;;;;1610250068;;False;{};giq8bkg;False;t3_ktxcly;False;False;t1_gipy46r;/r/anime/comments/ktxcly/sk_episode_1_discussion/giq8bkg/;1610294893;18;True;False;anime;t5_2qh22;;0;[]; -[];;;mediocranaut;;;[];;;;text;t2_hci7w;False;False;[];;"Poutine is easily found across Canada, so it really doesn't narrow it down. - -Hell, nearly any place in B.C. that sells fries has poutine on the menu, including all of the mainstream American fast food chains: McDonald's, Burger King, Dairy Queen, Wendy's, KFC, etc. (I make no claim about the authenticity or quality of any of these offerings, merely pointing out how ubiquitous it is.)";False;False;;;;1610250103;;False;{};giq8du7;False;t3_ktxcly;False;False;t1_gipuat9;/r/anime/comments/ktxcly/sk_episode_1_discussion/giq8du7/;1610294942;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EverythingsRed2;;;[];;;;text;t2_75royj7g;False;False;[];;"first timer (subbed) - -This slower episode is a nice calm after literally everything from last episode. We finally get to sit back and truly appreciate how ugly Haruka's future dress was. Are trash bags the new look in 20XX? - -Yuu has finally done it, he's run away! This time's the real deal, not like those other times when he escaped, those don't count. And, if sleeping on the bench couldn't get any more epic, our loveable Atori^((&co.)) returns! Honestly I was thinking that Yuu might team up with those guys and help them or something along those lines, but I guess a near-death experience really dampers those prospects. :( - -It annoys me a bit how Haruka doesn't just talk to people about what's happened. I mean, I can get her reasons: no one would believe her, White hair would be found quicker, etc. But Haruka, you literally disappeared in front of Yuu and traumatized him for hours, at least tell him where you were. Yuu's argument with Yuu could have been avoided if Yuu just told Yuu that Yuu was Actually Yuu too. Children smh. -Qs. - -1. Karasu is just giving off ""I'll get there when I get there"" vibes to me. He escaped jail using the power of friendship^((and an interdimensional superweapon)). If he actually predicted that, then props to him. I don't think he's even thought about what he's doing. Protecting the dragon torque has severe consequences for the lives of everyone in his dimension and this one. And ""protecting Haruka"" doesn't have any end goal, by continuing what he's doing, the whole plan simply gets delayed. Who knows how long this streak will continue. -2. An absent father more worried about work and a mother haunted by the memories of her sister and mother makes the perfect house for an isolated child. I don't know if their situation will ever fully heal, but I'm hoping that they at least start talking. I'm guessing that White hair, the epidemy of sad Yuu, never made up with him mother, which would mirror the reverse. Hopefully. Gosh this story would be depressing if all the characters ended up matching the future, creating this infinite dimension loop...";False;False;;;;1610250727;;False;{};giq9hoa;False;t3_ku0k6t;False;True;t3_ku0k6t;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/giq9hoa/;1610295682;2;True;False;anime;t5_2qh22;;0;[]; -[];;;das_baus;;;[];;;;text;t2_7hsjp;False;False;[];;The only other memorable one I recall is [Kate from Sketchbook](https://myanimelist.net/character/6823/Kate).;False;False;;;;1610250759;;False;{};giq9jtc;False;t3_ktxcly;False;True;t1_gipg5ff;/r/anime/comments/ktxcly/sk_episode_1_discussion/giq9jtc/;1610295721;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aNinjaWithAIDS;;MAL;[];;;dark;text;t2_gd2lr;False;False;[];;"**[Ascendance of a Bookworm](https://myanimelist.net/anime/39468/Honzuki_no_Gekokujou__Shisho_ni_Naru_Tame_ni_wa_Shudan_wo_Erandeiraremasen)** -- You literally learn about the setting's nuances and intricacies as the MC does; and *she needs to* for several reasons. - -1. Survival, especially since the body she reincarnated into is THAT sickly. - -2. The title itself. How is she expected to ascend in this society if she refuses to understand it at all?";False;False;;;;1610250767;;False;{};giq9k9v;False;t3_ku1nkw;False;True;t3_ku1nkw;/r/anime/comments/ku1nkw/anime_where_the_exposition_is_done_as_well_as_log/giq9k9v/;1610295731;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610250871;;False;{};giq9qz0;False;t3_ktyvp2;False;True;t1_gipykht;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giq9qz0/;1610295867;2;True;False;anime;t5_2qh22;;0;[]; -[];;;20193007;;;[];;;;text;t2_45chsk7h;False;False;[];;"“Any pet phrases?” - -“Sorry” - -The banter at the end is so worth it, helps that the ending is also really fun to watch too!!";False;False;;;;1610250874;;False;{};giq9r7v;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giq9r7v/;1610295871;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610250928;;1610260890.0;{};giq9uod;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giq9uod/;1610295937;1;True;False;anime;t5_2qh22;;0;[]; -[];;;karthikmsd;;;[];;;;text;t2_6avnfw0c;False;False;[];;The first episode itself got me into the show I'm gonna watch it every week .;False;False;;;;1610251295;;False;{};giqai4w;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqai4w/;1610296397;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610251582;;False;{};giqb136;False;t3_ktyvp2;False;True;t3_ktyvp2;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giqb136/;1610296760;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Peacemkr45;;;[];;;;text;t2_15b5b7;False;False;[];;So Ass war is the worst but still managed to get 2 seasons whereas the better Chivalry of a Failed knight only got one.;False;False;;;;1610251637;;False;{};giqb4ij;False;t3_ku0acb;False;True;t3_ku0acb;/r/anime/comments/ku0acb/i_force_my_friends_to_watch_the_worst_anime_of/giqb4ij/;1610296823;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Peacemkr45;;;[];;;;text;t2_15b5b7;False;False;[];;Find the type of anime your mom wants to watch and find a suitable anime and watch it. Why do people have such a problem with this?;False;False;;;;1610251736;;False;{};giqbaq6;False;t3_ku09s5;False;True;t3_ku09s5;/r/anime/comments/ku09s5/an_anime_i_can_watch_with_my_mom/giqbaq6/;1610296946;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DodzReincarnated;;;[];;;;text;t2_6dnzr3j;False;False;[];;"Of course studio “BONES” is making an anime about skateboarding. - - - - - - -^pls ^someone ^get ^it";False;False;;;;1610251836;;1610252081.0;{};giqbgxz;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqbgxz/;1610297063;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;To early to say when Wonder Egg Priority haven't aired yet but atleast the first episode was a banger, can't wait for more, it's gonna be a great show;False;False;;;;1610252473;;False;{};giqcm9x;False;t3_ktxcly;False;True;t1_gip1rux;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqcm9x/;1610297860;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;Yup;False;False;;;;1610252499;;False;{};giqcnup;False;t3_ktxcly;False;False;t1_gipwnds;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqcnup/;1610297892;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;Yeah, let's hope it'll get as much love as Akudama Drive managed to get last year;False;False;;;;1610252624;;False;{};giqcw40;False;t3_ktxcly;False;False;t1_giox1mf;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqcw40/;1610298078;6;True;False;anime;t5_2qh22;;0;[]; -[];;;kurtu5;;;[];;;;text;t2_13kh2;False;False;[];;I did both and the skills transfer back and forth quite well. It basically goes down to having an awareness of your body below your feet. This awareness only makes sense if you have tried either.;False;False;;;;1610252682;;False;{};giqczqm;False;t3_ktxcly;False;False;t1_giorkzm;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqczqm/;1610298152;6;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;January 13th I believe. No legal sites will be carrying it, it'll be airing on an uncensored Japanese pay channel only.;False;False;;;;1610253036;;False;{};giqdlta;False;t3_ku2q4b;False;False;t1_gipjvl3;/r/anime/comments/ku2q4b/the_ranime_week_in_review_january_39_2021/giqdlta/;1610298613;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheTerribleSnowflac;;;[];;;;text;t2_5egsl;False;False;[];;">Finally some representation in anime!!....maybe best show of the season for me so far! - -Am I sensing some bias here....? Hahaha";False;False;;;;1610253724;;False;{};giqet86;False;t3_ktxcly;False;True;t1_gioqs14;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqet86/;1610299528;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> Will Yuu's mum be redeemed by the end of the arc, will she see the error of her ways and change? - -A. Sorry for late reply, I had a thing tonight. B. To me, this is the difference between watching a show when you are late adolescent versus when you are middle aged: When you are 20, you might be sympathetic. When you are 40 and have been roped into more than family dynamic, including pseudo-parental ones, you realize that at a certain point you have to handle your shit because truly young people simply don't have the leeway for you to be fucked up. As bad as the Haruka mom can come off, she is mostly on the ball, Haruka has access to everything she needs, and she is just a touch hands off in her parenting. Haruka might benefit from a little more structure presence but that's it. Compare that to mister-cutting-metaphor-Yuu and whatever excuse they give Miyuki will not fly for me.";False;False;;;;1610253872;;False;{};giqf1y7;False;t3_ku0k6t;False;True;t1_gip8glw;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/giqf1y7/;1610299708;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> -> -> -> -> Is Yuu going to join up with the crazy people now? Boo! That’s a boring move, show, and you know it! - -So far, it is nice that he seemed terrified of them. This being an anti-paradox of even more edgy Yuu would be such a lame use of the groundwork.";False;False;;;;1610253980;;False;{};giqf8ap;False;t3_ku0k6t;False;True;t1_gip8vzq;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/giqf8ap/;1610299889;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;It's one of the most visually stunning anime series I've watched.;False;False;;;;1610254099;;False;{};giqff88;False;t3_ku1u2g;False;False;t3_ku1u2g;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/giqff88/;1610300014;6;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;They're not gloomy enough for him, perhaps. Probably trim their nails with clippers like normies.;False;False;;;;1610254115;;False;{};giqfg22;False;t3_ku0k6t;False;False;t1_giqf8ap;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/giqfg22/;1610300028;3;True;False;anime;t5_2qh22;;0;[]; -[];;;25_Oranges;;;[];;;;text;t2_6k8wiuc1;False;False;[];;I agree!!;False;False;;;;1610254217;;False;{};giqflyh;True;t3_ku1u2g;False;False;t1_giqff88;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/giqflyh/;1610300134;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> -> -> -> -> “I ain’t touching that crap” – sure, it is not live bugs … - -It was in the garbage, he might luck out an grab a few flies. - -> -*How on earth did you turn from old man back to boy this quickly Yuu?* - Baron, probably. - -Whereas the cat is all ""Keep petting me, slave."" - -> Haruka’s mother is all oblivious and meanwhile Haruka is upstairs with not one but two men. Well, technically, just one man, but he is both a grizzly veteran AND her childhood friend. Be worried, mom! - -You say that but my suspicion is the Haruka mom is more of a ""Let nature takes it course"" kind of parent. Which can work, just not when your child brings in a much older doppel from a different, edgier dimension.";False;False;;;;1610254233;;False;{};giqfmvp;False;t3_ku0k6t;False;True;t1_gipkg2r;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/giqfmvp/;1610300150;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;So you are saying that Atori wins him over when Atori cuts his nails with an electric carver? It works.;False;False;;;;1610254307;;False;{};giqfr6p;False;t3_ku0k6t;False;True;t1_giqfg22;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/giqfr6p/;1610300229;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lilibz;;;[];;;;text;t2_5cvs23zw;False;False;[];;american skate scene ≠ japanese skate scene first of all, also it’s not slice of life my guy what were u expecting;False;False;;;;1610254476;;False;{};giqg0zk;False;t3_ktxcly;False;False;t1_gipvfxc;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqg0zk/;1610300420;23;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610254489;;False;{};giqg1p7;False;t3_ktyvp2;False;True;t3_ktyvp2;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giqg1p7/;1610300433;4;True;False;anime;t5_2qh22;;0;[]; -[];;;PeterGriffenttv;;;[];;;;text;t2_5gvxyq1r;False;False;[];;Who said anything about legal?;False;False;;;;1610254949;;False;{};giqgs0o;False;t3_ku2q4b;False;True;t1_giqdlta;/r/anime/comments/ku2q4b/the_ranime_week_in_review_january_39_2021/giqgs0o/;1610300972;0;True;False;anime;t5_2qh22;;0;[]; -[];;;x3tan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Koshiba;light;text;t2_6shxr;False;False;[];;This seems like it will be entertaining. Animation looked great too.;False;False;;;;1610255341;;False;{};giqhdzw;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqhdzw/;1610301378;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> We finally get to sit back and truly appreciate how ugly Haruka's future dress was. Are trash bags the new look in 20XX? - -I called it a sexy potato sack for a reason.";False;False;;;;1610255345;;False;{};giqhe89;False;t3_ku0k6t;False;True;t1_giq9hoa;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/giqhe89/;1610301383;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bananadessert1;;;[];;;;text;t2_4ix62i4n;False;False;[];;As a sports manga/anime fan, animation is top notch of course, but doesn't seem to have anything else going for it. This is basically a Free 2.0, not surprisingly from Utsumi. Ehhh...;False;False;;;;1610255540;;False;{};giqhoqi;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqhoqi/;1610301571;1;True;False;anime;t5_2qh22;;0;[]; -[];;;x3tan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Koshiba;light;text;t2_6shxr;False;False;[];;As soon as he mentioned there not being snow it just dinged to me that I bet he snow boards haha;False;False;;;;1610255543;;False;{};giqhox8;False;t3_ktxcly;False;True;t1_gioq7dl;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqhox8/;1610301575;2;True;False;anime;t5_2qh22;;0;[]; -[];;;redshirtengineer;;null a-amq;[];;;dark;text;t2_30v9ef;False;False;[];;"First timer - -I like that Haruka takes a moment to enjoy the flying around town instead of just being freaked out. - -Yuu's Mom is going to escalate. - -QOTD1: don't think he has one - -QOTD2: Not a fan of him slapping her, got to say. Especially since he seems to know that she's messed up. - -I hope we are not in for something cheesy like Karasu and the Mom reconciling. Whatever happens should be with Yuu. - -Baron best dog.";False;False;;;;1610256182;;False;{};giqin8r;False;t3_ku0k6t;False;False;t3_ku0k6t;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/giqin8r/;1610302261;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RogueNPC;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RogueNPC;light;text;t2_104ye5as;False;False;[];;Ouran High School Host Club;False;False;;;;1610256362;;False;{};giqiwot;False;t3_ku09s5;False;True;t3_ku09s5;/r/anime/comments/ku09s5/an_anime_i_can_watch_with_my_mom/giqiwot/;1610302445;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vellsii;;;[];;;;text;t2_2tid8dx4;False;False;[];;It's a shame so many people assume every series with bishonen leads must be either bad or only meant for fujoshi.;False;False;;;;1610256484;;False;{};giqj3a5;False;t3_ktxcly;False;False;t1_gip0p51;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqj3a5/;1610302605;5;True;False;anime;t5_2qh22;;0;[]; -[];;;redshirtengineer;;null a-amq;[];;;dark;text;t2_30v9ef;False;False;[];;I also don't think that's karasu's jam. And Haruka likes smol Yuu.;False;False;;;;1610256496;;False;{};giqj3u0;False;t3_ku0k6t;False;True;t1_gip7fp7;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/giqj3u0/;1610302615;2;True;False;anime;t5_2qh22;;0;[]; -[];;;redshirtengineer;;null a-amq;[];;;dark;text;t2_30v9ef;False;False;[];;...alternative means...tunnel? roof? teleport?;False;False;;;;1610256691;;False;{};giqje35;False;t3_ku0k6t;False;False;t1_gip9fl9;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/giqje35/;1610302800;2;True;False;anime;t5_2qh22;;0;[]; -[];;;redshirtengineer;;null a-amq;[];;;dark;text;t2_30v9ef;False;False;[];;I like that Miho is occasionally correct;False;False;;;;1610256727;;False;{};giqjg0o;False;t3_ku0k6t;False;True;t1_gip6cqp;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/giqjg0o/;1610302833;1;True;False;anime;t5_2qh22;;0;[]; -[];;;srofais;;;[];;;;text;t2_qsep2;False;False;[];;"Look, plagiarism does happen pretty often and it's not cool that someone can get way more success stealing ideas from others than the original creator. - -It **does not excuse committing arson** and killing a lot of people in the process. - -The guy is deluded if he thinks a copyright law will lessen the punishment for mass murder.";False;False;;;;1610256992;;False;{};giqjtpk;False;t3_ktyvp2;False;False;t3_ktyvp2;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giqjtpk/;1610303713;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;Windows, basements, attics are the ones I was personally aware of.;False;False;;;;1610257024;;False;{};giqjve7;False;t3_ku0k6t;False;True;t1_giqje35;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/giqjve7/;1610303774;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;Possibly but I don't trust emo looking people with teens. Bleach taught me that.;False;False;;;;1610257072;;False;{};giqjxte;False;t3_ku0k6t;False;True;t1_giqj3u0;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/giqjxte/;1610303840;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DefiantRooster04;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/DefiantRooster04;light;text;t2_3pv80jwz;False;False;[];;Here we have the proper punishment for this crime. Either this or he can only watch Darling and the anal sex mechs. /s;False;False;;;;1610257174;;False;{};giqk348;False;t3_ktyvp2;False;False;t1_giqb136;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giqk348/;1610303949;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Pineappocalypse;;;[];;;;text;t2_3qu9ur3g;False;False;[];;i really liked the ed song had me vibin for a minute there lol. cant find the full song on youtube though :/;False;False;;;;1610257233;;False;{};giqk60x;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqk60x/;1610304001;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610257299;;False;{};giqk9dn;False;t3_ktyvp2;False;True;t3_ktyvp2;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giqk9dn/;1610304059;4;True;False;anime;t5_2qh22;;0;[]; -[];;;notuser_248;;;[];;;;text;t2_9curydcs;False;False;[];;I like it but I feel like the only reason other people like it because of the studio.;False;False;;;;1610257450;;False;{};giqkh08;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqkh08/;1610304197;2;True;False;anime;t5_2qh22;;0;[]; -[];;;raspberrycreamsoda;;;[];;;;text;t2_16ihqa;False;False;[];;i got ash x eiji vibes (the pole vault scene) when reiki jumped over langa on his board lmao;False;False;;;;1610257462;;False;{};giqkhlw;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqkhlw/;1610304206;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Smartphone isekai maybe;False;False;;;;1610257922;;False;{};giql4w1;False;t3_ku2v57;False;False;t3_ku2v57;/r/anime/comments/ku2v57/looking_for_an_anime_please_help/giql4w1/;1610304598;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kit_you_out;;;[];;;;text;t2_13jku5;False;False;[];;When he did that surprise sharp turn, it reminded me a lot of the first inertial drift and the gutter turn from Initial D;False;False;;;;1610258056;;False;{};giqlbiu;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqlbiu/;1610304703;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Verzwei;;;[];;;;text;t2_cmzqb;False;False;[];;"WorldEnd is probably the thing that made me consistently cry the most frequently and intensely. - -Rather than hinging on a singular, late-series, impactful moment, WorldEnd has this extremely roller-coaster-like series of events that alternately give you hope and then crush your spirit. It's an ongoing, ever-present tragedy.";False;False;;;;1610258162;;False;{};giqlgqc;False;t3_ku3qi0;False;True;t3_ku3qi0;/r/anime/comments/ku3qi0/what_is_the_animemanga_that_made_you_cry_the_most/giqlgqc/;1610304799;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"You can't prove that!! - -[](#abandonthread)";False;False;;;;1610259339;;False;{};giqn27j;False;t3_ktxcly;False;True;t1_giqet86;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqn27j/;1610305863;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MechaMat91;;;[];;;;text;t2_1vfr55z0;False;False;[];;it's not just Dio looking, he has the same VA, for all intents and purposes he IS Dio, but with Jonathan's hair. the madlads knew what they were doing.;False;False;;;;1610259467;;False;{};giqn8gn;False;t3_ktxcly;False;True;t1_giphnzn;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqn8gn/;1610305985;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lmaoguy69420;;;[];;;;text;t2_4crwxh5m;False;False;[];;Are you fucking serious? Over a meat-shopping scene?;False;False;;;;1610259655;;False;{};giqnh76;False;t3_ktyvp2;False;False;t3_ktyvp2;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giqnh76/;1610306140;27;True;False;anime;t5_2qh22;;0;[]; -[];;;A_Glass_Onion_;;;[];;;;text;t2_9nawz6p8;False;False;[];;Well I was doing this she found cowboy bebop and your lie in April;False;False;;;;1610259927;;False;{};giqntx6;True;t3_ku09s5;False;True;t1_giqbaq6;/r/anime/comments/ku09s5/an_anime_i_can_watch_with_my_mom/giqntx6/;1610306373;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;"Redo of Healer is a fantasy anime, MC was raped and abused, turns back time to rape and abuse, his abusers. It's crazy shit, I don't recommend it, but if it's your thing, go for it. - -It's rape revenge fantasy, like Shield Hero, but more extreme. There'll be multiple versions, a censored version(which will be available to stream), an uncensored version(which will not be available to stream), a ""Redo Version""(I don't know what this means, but it'll be available for streaming), and then a ""complete recovery version""";False;False;;;;1610260046;;False;{};giqnzjy;False;t3_ku2q4b;False;True;t1_gipmabk;/r/anime/comments/ku2q4b/the_ranime_week_in_review_january_39_2021/giqnzjy/;1610306477;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Electrical_Taste8633;;;[];;;;text;t2_9h06761v;False;False;[];;You might need to take a break after episode 15, but make sure you keep watching. It’s brutal but great necessary character development. Tbh I almost dropped it after that episode because It was so well done, it was painful to watch.;False;False;;;;1610260549;;False;{};giqon6c;False;t3_ktyzmm;False;False;t1_gip424v;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/giqon6c/;1610306917;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akash7713;;;[];;;;text;t2_2sd20nu;False;False;[];;"This season: Hey we have a new sport anime about skating - -me: ok. - -This season: It was made by Studio Bones - -me: hmm interesting - -This season: It has [Dio](https://imgur.com/a/x9gmKn1) in it - -me : wryyyyyyyyy";False;False;;;;1610260947;;False;{};giqp5jn;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqp5jn/;1610307283;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Peacemkr45;;;[];;;;text;t2_15b5b7;False;False;[];;If she likes Bebop, maybe give Space Dandy a shot.;False;False;;;;1610261276;;False;{};giqpkjp;False;t3_ku09s5;False;True;t1_giqntx6;/r/anime/comments/ku09s5/an_anime_i_can_watch_with_my_mom/giqpkjp/;1610307560;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610261506;;False;{};giqpuq0;False;t3_ktyvp2;False;True;t1_gipel7i;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giqpuq0/;1610307755;11;True;False;anime;t5_2qh22;;0;[]; -[];;;FrickinNormie;;;[];;;;text;t2_1l4z62t5;False;False;[];;I will never not read it as “skoo”;False;False;;;;1610262024;;False;{};giqqhdz;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqqhdz/;1610308186;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610262635;;False;{};giqr79f;False;t3_ktyvp2;False;True;t1_gipggx6;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giqr79f/;1610308715;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Saleenseven;;MAL;[];;https://myanimelist.net/animelist/Saleenseven;dark;text;t2_9jdyo;False;False;[];;So initial d with skateboards;False;False;;;;1610262817;;False;{};giqresq;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqresq/;1610308856;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NyanMudkip;;;[];;;;text;t2_yu1l0;False;False;[];;I loved this!;False;False;;;;1610263198;;False;{};giqrupj;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqrupj/;1610309163;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;HiDive has it but probably not the fully uncensored stream at first;False;False;;;;1610263452;;False;{};giqs55x;False;t3_ku2q4b;False;True;t1_giqdlta;/r/anime/comments/ku2q4b/the_ranime_week_in_review_january_39_2021/giqs55x/;1610309415;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Now that we know about the production staff, how about the featured characters?;False;False;;;;1610263724;;False;{};giqsgga;False;t3_ktxcly;False;False;t1_giq4ae0;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqsgga/;1610309663;5;True;False;anime;t5_2qh22;;0;[]; -[];;;dgj212;;;[];;;;text;t2_16xxz8;False;False;[];;Oh man this show is might actually satisfy my Air Gear craving. If I had to describe it, it has the thrill of air gear with the set up of Initial D.;False;False;;;;1610263768;;False;{};giqsian;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqsian/;1610309701;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;"Uncensored won't be legally streamed. It's a Japan exclusive. - -If Sentai doesn't drop this, they'll release uncensored on BD later.";False;False;;;;1610264044;;False;{};giqstir;False;t3_ku2q4b;False;True;t1_giqs55x;/r/anime/comments/ku2q4b/the_ranime_week_in_review_january_39_2021/giqstir/;1610309931;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610264500;;False;{};giqtbra;False;t3_ktyvp2;False;True;t1_giqb136;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giqtbra/;1610310300;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Erulol;;;[];;;;text;t2_fd11j;False;False;[];;It's pronounced skate the infinity? I pronounced it skoot because a sideways 8 looks like oo and that means it's skoot;False;False;;;;1610264629;;False;{};giqtgp7;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqtgp7/;1610310403;1;True;False;anime;t5_2qh22;;0;[]; -[];;;flixxy_boy;;;[];;;;text;t2_6c0k4jgh;False;False;[];;ya skaters also hurt themselves without that. today i was bombing a hill with my friend earlier today and i slammed really hard and messed up my arm.;False;False;;;;1610264732;;False;{};giqtkoi;False;t3_ktxcly;False;False;t1_gion6ez;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqtkoi/;1610310488;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610265047;;False;{};giqtx40;False;t3_ktyvp2;False;True;t1_giqb136;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giqtx40/;1610310731;0;True;False;anime;t5_2qh22;;0;[]; -[];;;sKyBlazer08;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sKyBlazer08;light;text;t2_17ibsr;False;False;[];;"Damn holy shit, I did not expect it to be this good. Cause that was dope. I already like the main characters especially Langa. I thought at first he'd be a serious emo-esque character but, he's actually a cool ass dude. - -OP and ED were great too, out of all the new shows that came out this season, so far this is one of the shows that really got my attention.";False;False;;;;1610265050;;False;{};giqtx7x;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqtx7x/;1610310734;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610265697;;False;{};giqum82;False;t3_ktyvp2;False;True;t1_giqtx40;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giqum82/;1610311250;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610265707;;False;{};giqummu;False;t3_ktyvp2;False;True;t1_giqtx40;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giqummu/;1610311257;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610265918;;False;{};giquupd;False;t3_ktyvp2;False;True;t3_ktyvp2;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giquupd/;1610311430;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;"I agree that what she has done is inexcusable and nothing can justify her actions. The show appears to be setting us up for her redemption, but I agree, no excuses can make me look at her actions and say: 'understandable have a nice day'. Still I hate her actions, but I don't hate her. If she shows genuine remorse and changes, whilst she will never be able to atone for what she's done, I could forgive her. I wouldn't trust her with a child, but I could accept her as a changed person. - -Thanks for your insight into what it's like to view this as someone who is older. There's a lot to life and a lot of wisdom that young folk like myself are yet to experience.";False;False;;;;1610266180;;False;{};giqv4tp;False;t3_ku0k6t;False;True;t1_giqf1y7;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/giqv4tp/;1610311621;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;"> If she shows genuine remorse and changes, whilst she will never be able to atone for what she's done, I could forgive her. I wouldn't trust her with a child, but I could accept her as a changed person. - -I am somewhat harsh in that I consider forgiveness to primarily be waste of time. Forgiving someone means you accept that they will do the same thing again. But I've seen enough domestic abuse that maybe I am no longer impartial. - -Also, hate to retread, but people don't change. I watched my grandfather join AA after 40 years of drinking and the only thing that was different was he was more self-righteous because he could notice more things. So my last year of memories with him was literally the worst I could have.";False;False;;;;1610266698;;False;{};giqvo3k;False;t3_ku0k6t;False;True;t1_giqv4tp;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/giqvo3k/;1610311982;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Large_Flask;;;[];;;;text;t2_5zktymi4;False;False;[];;I am an instant fan! The opening to the ending was a work of art! Really excited to tune in each week :D;False;False;;;;1610267199;;False;{};giqw716;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqw716/;1610312373;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Chariotwheel;;ANI a-amq;[];;https://anilist.co/user/Chariotwheel/;dark;text;t2_gyytm;False;True;[];;"Yeah, it doesn't matter. Even if KyoAni copied all his work verbatim, if all of Tsurune was stolen from. Even then, he killed a bunch of people and attempted to kill more. - -Copyright violation is no grounds to kill anybody. - -He should've gone through the appropriate channels or heck, make a stink on it online. If he'd had a point there could've been an outrage and I would be ready to chide KyoAni for stealing someones work. - -But it's super irrelevant now if they did copy or reference 2 minutes or what not. Fucking murdering people is just beyond all scope here.";False;False;;;;1610267220;;False;{};giqw7ue;False;t3_ktyvp2;False;False;t1_giplcfo;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giqw7ue/;1610312389;61;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610267393;;False;{};giqweb5;False;t3_ktyvp2;False;True;t1_gipel7i;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giqweb5/;1610312516;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JAKZILLASAURUS;;;[];;;;text;t2_6c2ww;False;False;[];;"The Japanese skate scene does not involve ‘downhill street races’ as far as I am aware. - -I only know of the Japan skate scene through the internet and YouTube etc. but it doesn’t seem drastically different from western skate culture.";False;False;;;;1610268140;;False;{};giqx5wu;False;t3_ktxcly;False;True;t1_giqg0zk;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqx5wu/;1610313078;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610268603;;False;{};giqxn16;False;t3_ktyvp2;False;True;t1_gipel7i;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giqxn16/;1610313426;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Toadslayer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kyolus;light;text;t2_hvixq;False;False;[];;I'm sorry to hear that you've seen this. You've mentioned stuff like this a few times and it's not something I can relate to. I think forgiveness is important and you can forgive without accepting someone will do the same again, but that person does need to show they won't do the same — that's the genuine remorse. But in the world we live in people suck and mostly continue to suck without changing. I hope we both don't have to experience more of that.;False;False;;;;1610268684;;False;{};giqxq2m;False;t3_ku0k6t;False;True;t1_giqvo3k;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/giqxq2m/;1610313497;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SherrinfordxD;;;[];;;;text;t2_7wsjvtmk;False;False;[];;I enjoyed it BUT it aired at 2 in night, what am I supposed to do from now on XD;False;False;;;;1610269066;;False;{};giqy3z2;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqy3z2/;1610313760;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Echo2200;;;[];;;;text;t2_5d5ppgsv;False;False;[];;"I seen some other anime that are ""World *****"" -Is it a series like ""Fate Zero, stay night, ect. -Or is World End just a show on its own and there's not something I need to watch first";False;False;;;;1610269353;;False;{};giqye74;False;t3_ku3qi0;False;False;t1_giqlgqc;/r/anime/comments/ku3qi0/what_is_the_animemanga_that_made_you_cry_the_most/giqye74/;1610313964;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KingOfOddities;;;[];;;;text;t2_mxvhzxf;False;False;[];;"When I read the title, I thought the scene must be brilliant, or at least very unique. But no, it's a very normal SOL moment, not generic per se, but it ain't rare for sure. I even watch the scene in question just to make sure, it's nothing special. - -This guy is Delusional!";False;False;;;;1610269831;;False;{};giqyv6m;False;t3_ktyvp2;False;False;t3_ktyvp2;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giqyv6m/;1610314299;7;True;False;anime;t5_2qh22;;0;[]; -[];;;fatalystic;;;[];;;;text;t2_xy716;False;False;[];;If skateboarding becomes illegal, it's going to be easy to find them.;False;False;;;;1610269992;;False;{};giqz0ud;False;t3_ktxcly;False;False;t1_gipsqid;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqz0ud/;1610314409;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Nazenn;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Nazenn;light;text;t2_n4ozd;False;False;[];;The power of caffeine!;False;False;;;;1610270154;;False;{};giqz6lq;False;t3_ktxcly;False;False;t1_giqy3z2;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqz6lq/;1610314521;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Taerusaki;;skip7;[];;;dark;text;t2_1jiysgpw;False;False;[];;Sk8 the infinity and Horimiya got me hyped up for 2021 after watching it.;False;False;;;;1610270305;;False;{};giqzby8;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqzby8/;1610314624;3;True;False;anime;t5_2qh22;;0;[]; -[];;;udatteudatteudatteku;;;[];;;;text;t2_80kbjdda;False;False;[];;That man is true scum. Copying someone's work is obviously wrong but even if they copied a whole show, that does not incite arson and mass murder, it's beyond wrong. People died over a two and a half minute clip.;False;False;;;;1610270337;;False;{};giqzd41;False;t3_ktyvp2;False;False;t3_ktyvp2;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giqzd41/;1610314646;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610270440;;False;{};giqzgww;False;t3_ktyvp2;False;True;t1_gipx7ok;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giqzgww/;1610314721;26;True;False;anime;t5_2qh22;;0;[]; -[];;;ENKlDU;;;[];;;;text;t2_4scvchzo;False;False;[];;Psycho path garbage;False;False;;;;1610270444;;False;{};giqzh25;False;t3_ktyvp2;False;True;t3_ktyvp2;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/giqzh25/;1610314723;3;True;False;anime;t5_2qh22;;0;[]; -[];;;fatalystic;;;[];;;;text;t2_xy716;False;False;[];;There was that framed photo of a young Langa holding a snowboard, so when he started to tape his feet to the board I immediately knew where it was going.;False;False;;;;1610270949;;False;{};giqzyxz;False;t3_ktxcly;False;False;t1_gioq7dl;/r/anime/comments/ktxcly/sk_episode_1_discussion/giqzyxz/;1610315070;7;True;False;anime;t5_2qh22;;0;[]; -[];;;nikigreensky;;;[];;;;text;t2_4hnxg22n;False;False;[];;I'm so in Love with this anime;False;False;;;;1610270982;;False;{};gir0070;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gir0070/;1610315093;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HammurabiDion;;;[];;;;text;t2_2sxenmjd;False;False;[];;"Everyone keeps talking about the visuals but I’m blown away by the episodes pacing!!! The first episode had so much action but still gave us enough exposition to understand what was going on in a smooth way!! That’s not easy!! - -Loved everything about this episode (except the cliche song they chose for the masked guys conducting)";False;False;;;;1610271365;;False;{};gir0e1u;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gir0e1u/;1610315364;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TotallyBrandNewName;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Siimoes;light;text;t2_64wlph5b;False;False;[];;"Ah... Nvm... Don't want it anymore. - -Talk about a bad way to start the day";False;False;;;;1610271611;;False;{};gir0mny;False;t3_ku2q4b;False;True;t1_giqnzjy;/r/anime/comments/ku2q4b/the_ranime_week_in_review_january_39_2021/gir0mny/;1610315524;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UzEE;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/UzEEInc;light;text;t2_45t2z;False;False;[];;Leave it to Bones to pull of some stunning animation work. Even if the story turns out to be a meh, I'm pretty sure I'll still enjoy this just based on the animation quality.;False;False;;;;1610271716;;False;{};gir0qgo;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gir0qgo/;1610315594;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fatalystic;;;[];;;;text;t2_xy716;False;False;[];;"Maybe it'd be too risky? You just know some sleazebag is going to make a female skateboarder become his ""woman"" if she loses.";False;False;;;;1610271927;;False;{};gir0xu7;False;t3_ktxcly;False;True;t1_gioyfba;/r/anime/comments/ktxcly/sk_episode_1_discussion/gir0xu7/;1610315731;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok-Ad8571;;;[];;;;text;t2_7gkgufgb;False;False;[];;Tbh Amazing... Animation Is Just well planned (Bc Damn Fast moving scenes just fit Perfectly And So Smooth)But Yeah Great anime (And Hot Men) Yup.;False;False;;;;1610272495;;False;{};gir1hwn;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gir1hwn/;1610316110;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fatalystic;;;[];;;;text;t2_xy716;False;False;[];;It's a fennec fox.;False;False;;;;1610272611;;False;{};gir1m06;False;t3_ktxcly;False;True;t1_gipw77w;/r/anime/comments/ktxcly/sk_episode_1_discussion/gir1m06/;1610316199;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fatalystic;;;[];;;;text;t2_xy716;False;False;[];;"It's pronounced ""S K 8""";False;False;;;;1610272697;;False;{};gir1p0i;False;t3_ktxcly;False;True;t1_giqtgp7;/r/anime/comments/ktxcly/sk_episode_1_discussion/gir1p0i/;1610316257;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sgPeanuts;;;[];;;;text;t2_zy2lz;False;False;[];;"Youtube is gonna start recommending me Snowboard / Skateboard videos after I just searched for ""Revert Carve"" videos HAHAHA";False;False;;;;1610273064;;False;{};gir226z;False;t3_ktxcly;False;True;t1_gioq7dl;/r/anime/comments/ktxcly/sk_episode_1_discussion/gir226z/;1610316523;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Affectionate_Roof361;;;[];;;;text;t2_8k060ixh;False;False;[];;do we really need to give him more attention ?;False;False;;;;1610273128;;False;{};gir24jr;False;t3_ktyvp2;False;False;t3_ktyvp2;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/gir24jr/;1610316569;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Nitsua34;;;[];;;;text;t2_86av8j;False;False;[];;"Yes, as a quebecer i am glad that langa took the MC spot from reki >:)";False;False;;;;1610273589;;False;{};gir2km1;False;t3_ktxcly;False;True;t1_gipuiec;/r/anime/comments/ktxcly/sk_episode_1_discussion/gir2km1/;1610316887;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nitsua34;;;[];;;;text;t2_86av8j;False;False;[];;Hi Canada, you're hot. Bye :);False;False;;;;1610273879;;False;{};gir2uoz;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gir2uoz/;1610317086;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nitsua34;;;[];;;;text;t2_86av8j;False;False;[];;Is there a canadian on the production team? how did they know so much about candians in the last segment, ah well :));False;False;;;;1610274064;;False;{};gir314a;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gir314a/;1610317220;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nitsua34;;;[];;;;text;t2_86av8j;False;False;[];;mmmmmh favorite this season so far.. maybe with horimiya :p;False;False;;;;1610274173;;False;{};gir34tk;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gir34tk/;1610317292;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mireiauwu;;;[];;;;text;t2_9iq07wwg;False;False;[];;I've watched tons of older anime and wow, this sure felt nostalgic! It has crazy villains, protagonists with fun hair and cool skateboard tricks. Definitely very fun, I plan on watching this;False;False;;;;1610274911;;False;{};gir3ubp;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gir3ubp/;1610317788;4;True;False;anime;t5_2qh22;;0;[]; -[];;;WeeabooVoid;;;[];;;;text;t2_6hwibewj;False;False;[];;Clannad Afterstory fucked me up really badly.;False;False;;;;1610274993;;False;{};gir3x3r;False;t3_ku3qi0;False;False;t3_ku3qi0;/r/anime/comments/ku3qi0/what_is_the_animemanga_that_made_you_cry_the_most/gir3x3r/;1610317846;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Google-Meister;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SnakySenpai;light;text;t2_zm20o;False;False;[];;You'd have to be a psycho to murder around 33 people because of a claim of stealing a 2-minute scene.;False;False;;;;1610276577;;False;{};gir5han;False;t3_ktyvp2;False;False;t1_giq5uzf;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/gir5han/;1610318912;20;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610276721;;False;{};gir5mgq;False;t3_ktyvp2;False;True;t1_gipvfy5;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/gir5mgq/;1610319008;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeTalks101;;;[];;;;text;t2_36v6e5ak;False;False;[];;Seeing Langa apply his Snowboarding experience to Skateboarding was really funny at first, and then turned into something really awesome! Loving the characters! Great episode!;False;False;;;;1610277038;;False;{};gir5xma;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gir5xma/;1610319218;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BossandKings;;;[];;;;text;t2_5ifr53k7;False;False;[];;Hi, count me in;False;False;;;;1610277100;;False;{};gir5zvr;False;t3_ku1u2g;False;True;t3_ku1u2g;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/gir5zvr/;1610319258;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dasher1802;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Mattawho/;light;text;t2_12ki00;False;False;[];;Last year was pretty good for anime originals. Hoping it continues into this year! Just don't have a weird ending that's all I ask.;False;False;;;;1610277105;;False;{};gir601l;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gir601l/;1610319261;2;True;False;anime;t5_2qh22;;0;[]; -[];;;COMRAD_ITACHI;;;[];;;;text;t2_9o6j2hj7;False;False;[];;It’s good;False;False;;;;1610277448;;False;{};gir6ch3;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gir6ch3/;1610319487;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jakihaachan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/jakihaachan;light;text;t2_7yxdermv;False;False;[];;I liked it so much, can’t wait for every Saturday;False;False;;;;1610278538;;False;{};gir7fh7;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gir7fh7/;1610320232;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jakihaachan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/jakihaachan;light;text;t2_7yxdermv;False;False;[];;Langa and reki reminded me of kuroko and kagami;False;False;;;;1610278804;;False;{};gir7opz;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gir7opz/;1610320400;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SkapBoi;;;[];;;;text;t2_40dpd0q3;False;False;[];;It has a huge initial d vibe to it and I love it;False;False;;;;1610279225;;False;{};gir83ha;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gir83ha/;1610320674;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BossandKings;;;[];;;;text;t2_5ifr53k7;False;False;[];;"FINALLY finally Yuu and Haruka are reunited, I'm so happy right now i'm shadow boxing. - -I was so happy but i didn't like that why did Haruka ignore Yuu?, why does worry so much about Karasu?, i hope there's some explanation because i didn't like that interaction. Now that i'm looking at it a bit closer, Karasu seems to have lost the Haruka from his dimension and decided to mess up with the dimension in which the actual Haruka lives, i hope he is able to find a solution because as the guy said she isn't the same Haruka, this one belongs to this dimension and Yuu feels really bad right now seeing how someone that doesn't treat him well gets all her attention. - -So Haruka dissapeared for multiple episodes and that time is only three hours in her world, it definitely felt like more time had passed, it seems that the time differs depending on the dimension. - -Yuu returns home, his mom was waiting for him. He decided to make his own decisions and decide for himself what it is that he's going to do, his mom won't be the one to decide for him. Yuu slept in the park because after returning he had a verbal fight with his mom and decided to run away. - -I'm happy again, Yuu went to visit Haruka to give her something that fell down when she disappeared and Haruka gives him attention and worries about him, that definitely makes up for earlier and it was nice to see. Yuu's mom goes to search for him in Haruka's house. - -Karasu and Yuu have an encounter and will seemingly have a talk next episode. - -An excellent episode, i'm a bit attached to the characters of this show already. - -Answers - -1. I think that Karasu's plan could be to help Yuu save Haruka from whatever she suffered in the future. I think it has been the same for a very long time. - -2. It is a bit complicated, Yuu doesn't trust his mother and doesn't want her to control his life, his mother needs to put some sense in his head and convince him that she wants the best for him and that she won't control his life but just help him go in the direction he wants and help him move forward following his own decisions.";False;False;;;;1610279604;;1610279809.0;{};gir8h3c;False;t3_ku0k6t;False;True;t3_ku0k6t;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gir8h3c/;1610320960;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mixhyeo;;;[];;;;text;t2_2v0yk3tz;False;False;[];;just finished this 2 week before, best anime;False;False;;;;1610281753;;False;{};girangi;False;t3_ku1u2g;False;True;t3_ku1u2g;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/girangi/;1610322378;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Beybladeer;;;[];;;;text;t2_ionrm5z;False;False;[];;Only a little. Just a bit.;False;False;;;;1610281775;;False;{};giraoao;False;t3_ktxcly;False;True;t1_gips4kc;/r/anime/comments/ktxcly/sk_episode_1_discussion/giraoao/;1610322395;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Elevator_boy_1;;;[];;;;text;t2_7dqij0ni;False;False;[];;Doesn't seem like the kind of guy who would watch an anime featuring pretty boys shooting arrows.;False;False;;;;1610282108;;False;{};girb111;False;t3_ktyvp2;False;True;t3_ktyvp2;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/girb111/;1610322629;3;True;False;anime;t5_2qh22;;0;[]; -[];;;shadowthiefo;;MAL;[];;http://myanimelist.net/animelist/shadowthiefo;dark;text;t2_4o9tc;False;False;[];;"and here I expected it to be the meat shopping scene in Miss Kobayashi's Dragon Maid. Or the meat shopping scene in Tamako Market. Or the meat shopping scene in *every slice of life ever made* - -What a moron this guy is.";False;False;;;;1610282122;;False;{};girb1k7;False;t3_ktyvp2;False;False;t3_ktyvp2;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/girb1k7/;1610322640;21;True;False;anime;t5_2qh22;;0;[]; -[];;;heimdal77;;;[];;;;text;t2_6qr37;False;False;[];;Isn't there a whole anime based around the idea of trying to buy discount food..?;False;False;;;;1610282351;;False;{};girba9i;False;t3_ktyvp2;False;True;t3_ktyvp2;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/girba9i/;1610322813;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Prince-Dizzytoon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/princedizzytoon;light;text;t2_mu0df;False;False;[];;Killed 36 people for 2:30 of an anime? That's some horse shit man. That man needs to stay in jail forever.;False;False;;;;1610282617;;False;{};girbkg6;False;t3_ktyvp2;False;False;t3_ktyvp2;/r/anime/comments/ktyvp2/kyoto_animation_arsonist_says_which_scene_he/girbkg6/;1610322999;5;True;False;anime;t5_2qh22;;0;[]; -[];;;saxtoni;;;[];;;;text;t2_s55ud;False;False;[];;What others are you referring to? Just watched 2.43 so far and found it interesting. Also big fan of sports anime in general;False;False;;;;1610282687;;False;{};girbn79;False;t3_ktxcly;False;True;t1_gioqa8n;/r/anime/comments/ktxcly/sk_episode_1_discussion/girbn79/;1610323050;2;True;False;anime;t5_2qh22;;0;[]; -[];;;degenerate-edgelord;;;[];;;;text;t2_1hbjff8i;False;False;[];;Another rewatch I'd like to join but can't tell if I'll have the time. Dammit, I hate being busy.;False;False;;;;1610283395;;False;{};gircf8o;False;t3_ku1u2g;False;True;t3_ku1u2g;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/gircf8o/;1610323567;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610284565;;False;{};girdsm7;False;t3_ktxcly;False;True;t1_gionfmw;/r/anime/comments/ktxcly/sk_episode_1_discussion/girdsm7/;1610324462;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kangjiyong18;;;[];;;;text;t2_oladv;False;False;[];;"Wow great first episode! It exceeded my expectation. Its probably my favorit ep 1 for a non-sequel anime this season. - -I love Langa!! I thought he’ll be the usual aloof second MC but he is such a mood. He and Reki get along so well its nice. - -Cant wait to see ep 2!";False;False;;;;1610284943;;False;{};gire906;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gire906/;1610324757;1;True;False;anime;t5_2qh22;;0;[]; -[];;;afc_foreman;;;[];;;;text;t2_ed9d8;False;False;[];;God damn that was awesome;False;False;;;;1610285101;;False;{};girefwj;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/girefwj/;1610324887;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CosmicPenguin_OV103;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cosmic_Penguin;light;text;t2_1ufwqhs7;False;True;[];;Glad that people are interested in this one. This is my favorite of the (often ignored here) PA WORKS’ original anime series on love and youth and this one is just beyond stunning, from artwork to the story which will surely give you a lot of feels.;False;False;;;;1610285117;;False;{};giregl1;False;t3_ku1u2g;False;True;t3_ku1u2g;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/giregl1/;1610324899;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mwbworld;;;[];;;;text;t2_11ffx8;False;True;[];;Dang it - I so need a full proper release of all seasons of Nodame.;False;False;;;;1610285217;;False;{};girekzc;False;t3_ktx8gk;False;True;t3_ktx8gk;/r/anime/comments/ktx8gk/nodame_studying_basic_french_nodame_cantabile/girekzc/;1610324983;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Denpants;;;[];;;;text;t2_ry9v0w1;False;False;[];;Uzaki-chan when Uzaki eats all of Sakurai's chicken that cost 11.99;False;False;;;;1610285775;;False;{};girf9y6;False;t3_ku3qi0;False;True;t3_ku3qi0;/r/anime/comments/ku3qi0/what_is_the_animemanga_that_made_you_cry_the_most/girf9y6/;1610325461;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;Although it does feel like they did get a bit mixed in how much Japanese he actually knows... once he knows a little bit or is very unfamiliar but his mum is Japanese... and then it's quickly added that he understands a bit more...;False;False;;;;1610286078;;False;{};girfnoo;False;t3_ktxcly;False;True;t1_gioqs14;/r/anime/comments/ktxcly/sk_episode_1_discussion/girfnoo/;1610325705;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AlixJ;;;[];;;;text;t2_2al0em37;False;False;[];;Nooo I watched it last month;False;False;;;;1610286110;;False;{};girfp6c;False;t3_ku1u2g;False;True;t3_ku1u2g;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/girfp6c/;1610325734;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;Tricky was the one that made the name familiar... 3 perfected the idea behind it.;False;False;;;;1610286221;;False;{};girfugo;False;t3_ktxcly;False;False;t1_gippv94;/r/anime/comments/ktxcly/sk_episode_1_discussion/girfugo/;1610325834;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lapommepourrie;;;[];;;;text;t2_65b4arif;False;False;[];;moi je trouve ça gênant quand ils parlent autre chose que le japonais;False;False;;;;1610286316;;False;{};girfz1r;False;t3_ktx8gk;False;True;t1_giplwet;/r/anime/comments/ktx8gk/nodame_studying_basic_french_nodame_cantabile/girfz1r/;1610325917;1;True;False;anime;t5_2qh22;;0;[]; -[];;;R0bert24;;;[];;;;text;t2_3y12hba;False;False;[];;maybe abit more;False;False;;;;1610286344;;False;{};girg0c3;False;t3_ktxcly;False;True;t1_giraoao;/r/anime/comments/ktxcly/sk_episode_1_discussion/girg0c3/;1610325938;2;True;False;anime;t5_2qh22;;0;[]; -[];;;epsiblivion;;;[];;;;text;t2_5leic;False;False;[];;I was mildly curious but thats all anyone had to say.;False;False;;;;1610286372;;False;{};girg1n5;False;t3_ktxcly;False;True;t1_gioz6y1;/r/anime/comments/ktxcly/sk_episode_1_discussion/girg1n5/;1610325961;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LaTartifle;;;[];;;;text;t2_nhwpw;False;False;[];;When do we get the legal version of Beastars again?;False;False;;;;1610287913;;False;{};giri46o;False;t3_ku2q4b;False;False;t3_ku2q4b;/r/anime/comments/ku2q4b/the_ranime_week_in_review_january_39_2021/giri46o/;1610327336;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JetsLag;;;[];;;;text;t2_9i3aw;False;False;[];;Wave is coming out tomorrow;False;False;;;;1610288000;;False;{};giri8k1;False;t3_ktxcly;False;True;t1_girbn79;/r/anime/comments/ktxcly/sk_episode_1_discussion/giri8k1/;1610327415;1;True;False;anime;t5_2qh22;;0;[]; -[];;;droppedmyravioli;;;[];;;;text;t2_4k4dy12u;False;False;[];;I haven’t seen the episode yet, is the characters Canadian/is the show set in Canada?;False;False;;;;1610288235;;False;{};girikho;False;t3_ktxcly;False;True;t1_gioolvi;/r/anime/comments/ktxcly/sk_episode_1_discussion/girikho/;1610327619;2;True;False;anime;t5_2qh22;;0;[]; -[];;;juliette__;;;[];;;;text;t2_yb4ol6l;False;False;[];;"I've also only checked out 2.43 and this one but there's also ""wave surfing yappe"" and ""skate-leading stars"" (ice skating) this season.";False;False;;;;1610288510;;False;{};giriyxl;False;t3_ktxcly;False;True;t1_girbn79;/r/anime/comments/ktxcly/sk_episode_1_discussion/giriyxl/;1610327871;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;He is Canadian;False;False;;;;1610288533;;False;{};girj04g;False;t3_ktxcly;False;True;t1_girikho;/r/anime/comments/ktxcly/sk_episode_1_discussion/girj04g/;1610327892;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"It's meant to be a bit of fun, and it's more about the battles than the skating. - -&#x200B; - -one thing I don't get is why they don't just use longboards.";False;False;;;;1610289058;;False;{};girjrzb;False;t3_ktxcly;False;True;t1_gipvfxc;/r/anime/comments/ktxcly/sk_episode_1_discussion/girjrzb/;1610328380;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeadingPlayer;;;[];;;;text;t2_c0osog1;False;False;[];;Didn’t expect to get hype for a skating anime, but here we are! The animation for the skating sequences were so pretty to look at!! The cute comic transitions were cute as well. I can’t wait to see where they go with this. :);False;False;;;;1610289128;;False;{};girjvmx;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/girjvmx/;1610328445;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;Don't worry, they all come together to be pissed off at the 6 year old driving his stupidly slow RC car up and down the quarter everyone wants to ride.;False;False;;;;1610289257;;False;{};girk2fo;False;t3_ktxcly;False;True;t1_giq8bkg;/r/anime/comments/ktxcly/sk_episode_1_discussion/girk2fo/;1610328561;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;Second character you meet is a half Canadian, half Japanese transfer student.;False;False;;;;1610289326;;False;{};girk68r;False;t3_ktxcly;False;True;t1_girikho;/r/anime/comments/ktxcly/sk_episode_1_discussion/girk68r/;1610328630;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nabonidus3;;MAL;[];;http://myanimelist.net/animelist/Nabonidus3;dark;text;t2_4xq3r;False;False;[];;Transfer student. Show is set in Okinawa;False;False;;;;1610290763;;False;{};girm7q4;False;t3_ktxcly;False;True;t1_girikho;/r/anime/comments/ktxcly/sk_episode_1_discussion/girm7q4/;1610329938;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SkywardQuill;;MAL;[];;http://myanimelist.net/animelist/SkywardQuill;dark;text;t2_fp41n;False;False;[];;Oh the vibe of this show takes me right back to 2010, I love it! Animation is top-notch, too.;False;False;;;;1610292181;;False;{};giroinq;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giroinq/;1610331448;2;True;False;anime;t5_2qh22;;0;[]; -[];;;k-abal;;;[];;;;text;t2_2jg32yd4;False;False;[];;love this already.;False;False;;;;1610294234;;False;{};girs3vd;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/girs3vd/;1610333835;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CT-96;;MAL;[];;https://myanimelist.net/animelist/CT-96;dark;text;t2_usy8p;False;False;[];;Moi aussi! Even if hé isn't from Quebec it's cool to see a Canadian in anime.;False;False;;;;1610294588;;False;{};girsqw8;False;t3_ktxcly;False;True;t1_gir2km1;/r/anime/comments/ktxcly/sk_episode_1_discussion/girsqw8/;1610334254;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kiboune;;;[];;;;text;t2_il2nm;False;False;[];;Soundtrack is great, characters are good so far and action looks fine. Overall pretty good first episode;False;False;;;;1610295789;;False;{};giruyrk;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giruyrk/;1610335667;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Sounds like a very bad description of Re:Zero;False;False;;;;1610295963;;False;{};girvai7;False;t3_ku2v57;False;True;t3_ku2v57;/r/anime/comments/ku2v57/looking_for_an_anime_please_help/girvai7/;1610335871;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;"AA is unfortunately quite useless overall, it's not much more than religious pseudo-science. Unfortunately that's not yet well-known. - -Edit: May have spoken too soon. Anyway, it's still no more effective than anything without the religious weirdness.";False;False;;;;1610296398;;1610301934.0;{};girw3qj;False;t3_ku0k6t;False;True;t1_giqvo3k;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/girw3qj/;1610336371;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BeckQuillion89;;;[];;;;text;t2_11czx8;False;False;[];;Considering we even have an anime about skating at all that has some elements of skate culture, I consider this an absolute win. But who knows, in 5 years if this does decent we may actually get a slice of life skateboarding anime in the same way we had Prince of Tennis before we had Baby Steps;False;False;;;;1610297035;;False;{};girxbci;False;t3_ktxcly;False;True;t1_gipvfxc;/r/anime/comments/ktxcly/sk_episode_1_discussion/girxbci/;1610337131;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BeckQuillion89;;;[];;;;text;t2_11czx8;False;False;[];;For a sec, i thought you were talking about skateboarders. As a skateboarder myself, I'm happy about some representation in my anime. Of course, good for you too as a canadian.;False;False;;;;1610297179;;False;{};girxlkm;False;t3_ktxcly;False;True;t1_gioqs14;/r/anime/comments/ktxcly/sk_episode_1_discussion/girxlkm/;1610337303;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lordofdepression;;;[];;;;text;t2_75f08;False;False;[];;"Holy shit! That was so goooooddd!!! - -Reminds me of old school Air Gear in a way! - -Really can't wait for more";False;False;;;;1610298060;;False;{};girzbjy;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/girzbjy/;1610338375;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;One of the guys in the OP, who is almost shirtless really gives Makoto(I think that's his name) vibes.;False;False;;;;1610298752;;False;{};gis0po2;False;t3_ktxcly;False;True;t1_gioqi3d;/r/anime/comments/ktxcly/sk_episode_1_discussion/gis0po2/;1610339245;3;True;False;anime;t5_2qh22;;0;[]; -[];;;redshirtengineer;;null a-amq;[];;;dark;text;t2_30v9ef;False;False;[];;Haven't made it through soul society yet, so can't say;False;False;;;;1610298875;;False;{};gis0yow;False;t3_ku0k6t;False;True;t1_giqjxte;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gis0yow/;1610339401;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ahnahnah;;;[];;;;text;t2_nt9b9;False;False;[];;"The banter at the end was cute. What's your pet phrase? Sorry. ""Wow Japanese and Canadians are so much alike.""";False;False;;;;1610299604;;False;{};gis2hol;False;t3_ktxcly;False;False;t1_gioq7dl;/r/anime/comments/ktxcly/sk_episode_1_discussion/gis2hol/;1610340333;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;July.;False;False;;;;1610300170;;False;{};gis3oox;False;t3_ku2q4b;False;True;t1_giri46o;/r/anime/comments/ku2q4b/the_ranime_week_in_review_january_39_2021/gis3oox/;1610341068;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LaTartifle;;;[];;;;text;t2_nhwpw;False;False;[];;D:;False;False;;;;1610300361;;False;{};gis42qt;False;t3_ku2q4b;False;True;t1_gis3oox;/r/anime/comments/ku2q4b/the_ranime_week_in_review_january_39_2021/gis42qt/;1610341309;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zeroryoko1974;;AP;[];;http://www.anime-planet.com/users/zeroryoko1974/anime/watching?i;dark;text;t2_j0nr2;False;False;[];;https://www.youtube.com/watch?v=pdHIer6mL-w;False;False;;;;1610300582;;False;{};gis4irc;False;t3_ktxcly;False;False;t1_gir83ha;/r/anime/comments/ktxcly/sk_episode_1_discussion/gis4irc/;1610341600;2;True;False;anime;t5_2qh22;;0;[]; -[];;;spokesthebrony;;;[];;;;text;t2_6uo3t;False;False;[];;It's pretty common in BC, and I've even seen places in WA have it a menu option more and more (though poutine on the American side is less 'poutine' and more 'french fries with a topping');False;False;;;;1610300693;;False;{};gis4qx7;False;t3_ktxcly;False;True;t1_gipuiec;/r/anime/comments/ktxcly/sk_episode_1_discussion/gis4qx7/;1610341745;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zeroryoko1974;;AP;[];;http://www.anime-planet.com/users/zeroryoko1974/anime/watching?i;dark;text;t2_j0nr2;False;False;[];;I was like watching, and I was like WTF is this, and then was like, was that Dio?;False;False;;;;1610300795;;False;{};gis4ydc;False;t3_ktxcly;False;True;t1_giqp5jn;/r/anime/comments/ktxcly/sk_episode_1_discussion/gis4ydc/;1610341875;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CruisinCinnamon;;;[];;;;text;t2_45sei6q;False;False;[];;Same I thought it was fine. The characters are really what’s holding me since there isn’t much there which is what I was hoping I could say about Skate leading stars. I think of the three sports ones I’ve seen 2.43 is still my favorite.;False;False;;;;1610301897;;False;{};gis766o;False;t3_ktxcly;False;True;t1_gipaqxh;/r/anime/comments/ktxcly/sk_episode_1_discussion/gis766o/;1610343238;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CruisinCinnamon;;;[];;;;text;t2_45sei6q;False;False;[];;It’s got my attention for the moment we’ll see if it stays that way;False;False;;;;1610301948;;False;{};gis79vt;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gis79vt/;1610343300;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Verzwei;;;[];;;;text;t2_cmzqb;False;False;[];;"It's completely standalone and not connected to anything else. - -There's a seriels called World's End Harem that I think is getting an anime adaptation this year, but it has nothing at all to do with WorldEnd. Different author, different genre, different premise, different cast, different setting. World Break is yet another thing that's completely separate. - -WorldEnd is just the shortened title for the overly long *Shūmatsu Nani Shitemasu ka? Isogashii Desu ka? Sukutte Moratte Ii Desu ka?* or ***""What are you doing at the end of the world? Are you busy? Will you save us?""*** It's a big reach for a pun because, in Japanese, the same expression for ""end of the world"" can also mean ""weekend"" making the title sound like it could be both a proposition for a date and a dark comment on the apocalypse at the same time.";False;False;;;;1610304706;;False;{};gisbx2t;False;t3_ku3qi0;False;True;t1_giqye74;/r/anime/comments/ku3qi0/what_is_the_animemanga_that_made_you_cry_the_most/gisbx2t/;1610345990;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bastet96;;;[];;;;text;t2_80age05;False;False;[];;Nice sometimes the movies I cant get behind prefer just watching the episodes but I did watch konosuba movie last night was really good but I cant watch anime as they come out prefer to wait for all the episodes to be released and then just binge watch them all;False;False;;;;1610304895;;False;{};gisca7h;True;t3_ku2v57;False;True;t1_gipqxd8;/r/anime/comments/ku2v57/looking_for_an_anime_please_help/gisca7h/;1610346230;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BlueBirdBeak;;;[];;;;text;t2_74hhsd8f;False;False;[];;SKinfinity_sign;False;False;;;;1610305310;;False;{};gisd3t5;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gisd3t5/;1610346695;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;"That's like the most straight-up ""shounen protag hair"" of any recent show.";False;False;;;;1610305835;;False;{};gise6me;False;t3_ktxcly;False;False;t1_gionfmw;/r/anime/comments/ktxcly/sk_episode_1_discussion/gise6me/;1610347316;3;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;"I would hope that IRL it isn's as much of a ""boys only club"" though, not like this kind of race depends much on your body anyway. Every single woman that isn't Langa's mom falls into the ""dumb eye candy"" category and even she just got a single semi-significant line about her son's cooking.";False;False;;;;1610305931;;1610306285.0;{};gisedj2;False;t3_ktxcly;False;False;t1_giosqlt;/r/anime/comments/ktxcly/sk_episode_1_discussion/gisedj2/;1610347422;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;"It's been a while since we've had BeybladeYugiohPokemon hair... A skateboarding anime brings it back! - -Until Shaman King returns later in the year!";False;False;;;;1610305936;;False;{};gisedvc;False;t3_ktxcly;False;True;t1_gise6me;/r/anime/comments/ktxcly/sk_episode_1_discussion/gisedvc/;1610347427;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;Uh, that was already even mentioned as a bet...;False;False;;;;1610306456;;False;{};gisffo1;False;t3_ktxcly;False;False;t1_gir0xu7;/r/anime/comments/ktxcly/sk_episode_1_discussion/gisffo1/;1610348009;0;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">hopefully there are some girl characters that aren't just arm-candy-for-boys characters. It would be pretty ironic (in a tragic way) to depict skateboarding culture as a ""boys only"" club. - -I just brought that up somewhere else too. There is one woman in the opening, but from the looks she might just fall into the ""evil controlling matron"" archetype that last season also featured in Hypnosis Mic for instance (and arguably Akudama Drive, but that's something for another day). It really is irksome, the only non-""armcandy"" female character (like, dumb/clueless enough to need everything explained to them) was Langa's mother and she got like one line, and culture-wise the series seems to be going for a ""nasty dudes butting heads"" approach so I don't have much hope that will change.";False;False;;;;1610306753;;False;{};gisg188;False;t3_ktxcly;False;True;t1_gioyfba;/r/anime/comments/ktxcly/sk_episode_1_discussion/gisg188/;1610348342;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">there was one female character in the OP. She looked like the flag waver? - -There was one woman in what looked like a business outfit.";False;False;;;;1610306838;;False;{};gisg7c6;False;t3_ktxcly;False;True;t1_gip37kk;/r/anime/comments/ktxcly/sk_episode_1_discussion/gisg7c6/;1610348439;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cojoB_;;;[];;;;text;t2_27b35u6d;False;False;[];;No it's not. It is male dominated but this is something more like something I imagine from drag racing and it's for dramatization;False;False;;;;1610306856;;False;{};gisg8n8;False;t3_ktxcly;False;True;t1_gisedj2;/r/anime/comments/ktxcly/sk_episode_1_discussion/gisg8n8/;1610348459;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;Huh? Everywhere else people foam at the mouth at even slightly imperfect 3DCG and here they just give it a pass? The landscape during the downhill scenes looked really, really awful.;False;False;;;;1610306979;;False;{};gisghnm;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gisghnm/;1610348601;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;Which was an extremely ill-advised choice unless somehow, eventually, there will be some kind of a critical bent to it.;False;False;;;;1610307088;;False;{};gisgplf;False;t3_ktxcly;False;False;t1_gisg8n8;/r/anime/comments/ktxcly/sk_episode_1_discussion/gisgplf/;1610348721;0;True;False;anime;t5_2qh22;;0;[]; -[];;;BeckQuillion89;;;[];;;;text;t2_11czx8;False;False;[];;If it helps there's credits in the ED to Landyachtz and Paris Trucks. So we may see some longboard action down the line.;False;False;;;;1610307277;;False;{};gish303;False;t3_ktxcly;False;True;t1_girjrzb;/r/anime/comments/ktxcly/sk_episode_1_discussion/gish303/;1610348931;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">The animation looked beautiful, too. - -Except for the downhill-track 3DCG. That was plain terrible, and I say that as someone who usually doesn't mind it much.";False;False;;;;1610307396;;False;{};gishbk3;False;t3_ktxcly;False;True;t1_giolzd1;/r/anime/comments/ktxcly/sk_episode_1_discussion/gishbk3/;1610349063;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Chihiro9942;;;[];;;;text;t2_9egvhru4;False;False;[];;The Skript and Series Composition has been amazing as well, Ookouchi did an amazing job. Might be his best one yet since he did Code Geass with Goro.;False;False;;;;1610307673;;False;{};gishvd4;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gishvd4/;1610349367;1;True;False;anime;t5_2qh22;;0;[]; -[];;;willworkforabreak;;;[];;;;text;t2_77idl;False;False;[];;That open world just added such a good flow to play sessions;False;False;;;;1610307820;;False;{};gisi5s4;False;t3_ktxcly;False;True;t1_girfugo;/r/anime/comments/ktxcly/sk_episode_1_discussion/gisi5s4/;1610349529;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;The 2012 tried with what it attempted... I did like they tried to give the deadly but it's maybe too plot-focused to enjoy.;False;False;;;;1610307930;;False;{};gisidqz;False;t3_ktxcly;False;True;t1_gisi5s4;/r/anime/comments/ktxcly/sk_episode_1_discussion/gisidqz/;1610349686;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FuriousGeorge7;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FuriousGeorge7;light;text;t2_16m1yi;False;False;[];;I won't participate in the rewatch since just I watched it recently, But I wanna say that A Lull in the Sea is really damn good and you should definitely watch it if you haven't.;False;False;;;;1610307941;;False;{};gisiels;False;t3_ku1u2g;False;True;t3_ku1u2g;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/gisiels/;1610349698;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nitsua34;;;[];;;;text;t2_86av8j;False;False;[];;yes;False;False;;;;1610308927;;False;{};giskdxz;False;t3_ktxcly;False;True;t1_girsqw8;/r/anime/comments/ktxcly/sk_episode_1_discussion/giskdxz/;1610350800;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;You haven't, AA is total bullshit. I remember clearly watching those vultures help my shithead of an aunt raid through my grandfather's stuff after his funeral. They are just replacing alcohol with pseudo religion and it is for the worse.;False;False;;;;1610313877;;False;{};gisupn2;False;t3_ku0k6t;False;True;t1_girw3qj;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gisupn2/;1610356449;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Toonamigamerrr;;;[];;;;text;t2_ssw2vcw;False;False;[];;Funimation has the license 👍;False;False;;;;1610314343;;False;{};gisvnq1;False;t3_ktxcly;False;True;t1_giqbgxz;/r/anime/comments/ktxcly/sk_episode_1_discussion/gisvnq1/;1610356963;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DodzReincarnated;;;[];;;;text;t2_6dnzr3j;False;False;[];;yep, I was just making a skateboarding reference but it seemed no one got it;False;False;;;;1610315492;;False;{};gisy1fx;False;t3_ktxcly;False;True;t1_gisvnq1;/r/anime/comments/ktxcly/sk_episode_1_discussion/gisy1fx/;1610358244;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vinon;;;[];;;;text;t2_hakf0;False;False;[];;Wasn't even on my radar. Nice surprise.;False;False;;;;1610316830;;False;{};git0w5p;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/git0w5p/;1610359777;3;True;False;anime;t5_2qh22;;0;[]; -[];;;juicyglo;;;[];;;;text;t2_c846h;False;False;[];;I loved it. To put it simply I already adore this show.;False;False;;;;1610318135;;False;{};git3nlk;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/git3nlk/;1610361267;3;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;"I have way too much on my plate to join in, but hope you get enough interest. It's a great show, one of Mari Okada's best! - -[](#kannathumbs)";False;False;;;;1610318722;;False;{};git4wdq;False;t3_ku1u2g;False;True;t3_ku1u2g;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/git4wdq/;1610361935;2;True;False;anime;t5_2qh22;;0;[]; -[];;;25_Oranges;;;[];;;;text;t2_6k8wiuc1;False;False;[];;I agree!!;False;False;;;;1610319753;;False;{};git71gl;True;t3_ku1u2g;False;False;t1_git4wdq;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/git71gl/;1610363104;2;True;False;anime;t5_2qh22;;0;[]; -[];;;25_Oranges;;;[];;;;text;t2_6k8wiuc1;False;False;[];;Agree. It's my favorite. Feel free to drop in on any discussion threads :);False;False;;;;1610319792;;False;{};git74eg;True;t3_ku1u2g;False;True;t1_girangi;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/git74eg/;1610363149;1;True;False;anime;t5_2qh22;;0;[]; -[];;;25_Oranges;;;[];;;;text;t2_6k8wiuc1;False;False;[];;I hope you can find the time to join us! Even if it's just a couple of episodes :);False;False;;;;1610319829;;False;{};git777b;True;t3_ku1u2g;False;True;t1_gircf8o;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/git777b/;1610363191;2;True;False;anime;t5_2qh22;;0;[]; -[];;;degenerate-edgelord;;;[];;;;text;t2_1hbjff8i;False;False;[];;I'll try surely;False;False;;;;1610321047;;False;{};git9okk;False;t3_ku1u2g;False;True;t1_git777b;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/git9okk/;1610364542;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SkapBoi;;;[];;;;text;t2_40dpd0q3;False;False;[];;Thank you for this;False;False;;;;1610321085;;False;{};git9rbc;False;t3_ktxcly;False;True;t1_gis4irc;/r/anime/comments/ktxcly/sk_episode_1_discussion/git9rbc/;1610364584;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fatalystic;;;[];;;;text;t2_xy716;False;False;[];;That was between men, I'm talking about between a male and a female skateboarder.;False;False;;;;1610324726;;False;{};gith61m;False;t3_ktxcly;False;False;t1_gisffo1;/r/anime/comments/ktxcly/sk_episode_1_discussion/gith61m/;1610368891;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;Not a big difference;False;False;;;;1610324969;;False;{};githni0;False;t3_ktxcly;False;False;t1_gith61m;/r/anime/comments/ktxcly/sk_episode_1_discussion/githni0/;1610369188;1;True;False;anime;t5_2qh22;;0;[]; -[];;;akoba15;;;[];;;;text;t2_638rml5e;False;False;[];;"Lol, I do disagree here though. If someone showed up to a tennis match, didn't really know how to play tennis, but was able to easily 40-0 someone on their serve by using the rim of the tennis racket with a funky stance, people would just think ""wtf is up with this dude"" and watch in awe. - -It would take a little bit for them to realize that the dude was a semi-pro baseball player, maybe after thinking about it for a bit.";False;False;;;;1610329860;;False;{};gitrnif;False;t3_ktxcly;False;False;t1_gionjol;/r/anime/comments/ktxcly/sk_episode_1_discussion/gitrnif/;1610375757;4;True;False;anime;t5_2qh22;;0;[]; -[];;;akoba15;;;[];;;;text;t2_638rml5e;False;False;[];;I'm pretty sure the scene with the TV screens is objectively just a Dio reference lol;False;False;;;;1610329962;;False;{};gitrwcj;False;t3_ktxcly;False;True;t1_gipp0gv;/r/anime/comments/ktxcly/sk_episode_1_discussion/gitrwcj/;1610375915;3;True;False;anime;t5_2qh22;;0;[]; -[];;;akoba15;;;[];;;;text;t2_638rml5e;False;False;[];;Hmmm, I think you should let your eyes be drawn to what comes naturally if you had a problem with the cg. I am pretty sure they designed it in a way to look a little trashy to emulate how visuals appear while moving at high-speeds. I could just be overthinking it though.;False;False;;;;1610330069;;False;{};gits5mj;False;t3_ktxcly;False;True;t1_gishbk3;/r/anime/comments/ktxcly/sk_episode_1_discussion/gits5mj/;1610376081;1;True;False;anime;t5_2qh22;;0;[]; -[];;;akoba15;;;[];;;;text;t2_638rml5e;False;False;[];;It felt almost like a more casual F-Zero to me so far. Absolutely hype.;False;False;;;;1610330183;;False;{};gitsepl;False;t3_ktxcly;False;True;t1_gionf5k;/r/anime/comments/ktxcly/sk_episode_1_discussion/gitsepl/;1610376251;1;True;False;anime;t5_2qh22;;0;[]; -[];;;akoba15;;;[];;;;text;t2_638rml5e;False;False;[];;"I came in expecting something more akin to the Rock Climbing Girls anime from last season... But wow, I was so wrong. This may go down in contention for my favorite pilot episode of anything ever - everything about it had me giddy. - -The intro that so perfectly encapsulates how it feels to be free, doing what you love - -That feeling I got of frustration when clown boy threw firecrackers - and the immediate relief when our resident protagonist barely batted an eye as if it was expected - -The cool transfer student talking about snow and being from Canada, obviously longing for something related to snow, and the immediate pay off when you realize he loves to snowboard. - -The well thought out animation direction that makes it feel as if we are the ones making the decisions of when to weave and turn. - -The brief cameos of, what I can only assume, will be - -And of course, the filthy pay off when our newfound Canadian friend pulls off manuevers that no one in the skating community would expect. - -And of course, the brief cameos of, what I can only assume, will be the various antagonists throughout the upcoming episodes. We get a short taste of what their personalities and ambitions will be like, but not in a forced way. It's only natural they would be there keeping a close eye on the new blood that just appeared and is immediately upsetting what seems to be a consistent ecosystem. - -I'm really excited to see where it goes from here. Definitely has potential to be anime of the season even with all of these sequels coming out, especially in the hands of the studio responsible for Mob Psycho 100. Imma push all my friends to watch this one I think.";False;False;;;;1610331152;;False;{};gituevw;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gituevw/;1610377600;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TokiWaKita;;;[];;;;text;t2_5x93wszo;False;False;[];;"First of all, whatever was shown here ≠ japanese skate scene. Or any skate scene for that matter. (And I never compared it to the american scene.) - -Second, it didn't have to be SoL, you can make an interesting, race oriented show without these 90's neon-punk gimmicks.";False;False;;;;1610334273;;False;{};giu0nsl;False;t3_ktxcly;False;False;t1_giqg0zk;/r/anime/comments/ktxcly/sk_episode_1_discussion/giu0nsl/;1610381906;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TokiWaKita;;;[];;;;text;t2_5x93wszo;False;False;[];;"> what did you want? an anime about breaking your skateboard at the park and smoking weed? - -This statement right here. This shows you clearly have no idea what you're talking about because this is exactly the stereotype I wanted this show to clear. - -There are many technical and cultural sides of skateboarding, and this episode just swept all of them under the blanket of 'neon-punk rebels on wheels'. - -Let me make one thing abundantly clear; this episode featured skateboards but it had nothing to do with the actual technical or cultural aspects skateboarding. It could have, it would have been just as entertaining, but it chose not to.";False;False;;;;1610335226;;False;{};giu2fjt;False;t3_ktxcly;False;True;t1_gipy46r;/r/anime/comments/ktxcly/sk_episode_1_discussion/giu2fjt/;1610383182;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;TokiWaKita;;;[];;;;text;t2_5x93wszo;False;False;[];;"Yeah, a street board (and trucks) on a downhill course would just kill you. -Forget going 60mph, imagine the wobbles at half of that speed.";False;False;;;;1610335430;;False;{};giu2tpc;False;t3_ktxcly;False;True;t1_girjrzb;/r/anime/comments/ktxcly/sk_episode_1_discussion/giu2tpc/;1610383469;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tartareboi;;;[];;;;text;t2_1tcfap71;False;False;[];;Lol way worst than I expected and I was far from expecting a masterpiece. I expected it to be at least a lil closer to actual skateboarding. Thee boards could be replaced by any means of transportation and the anime would be the same;False;False;;;;1610337496;;False;{};giu6s6n;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giu6s6n/;1610386368;0;True;False;anime;t5_2qh22;;0;[]; -[];;;fantasticfabian;;;[];;;;text;t2_lpayd;False;False;[];;lol i skated my whole life untill I was about 18, dont try to assume i know nothing just cause you skated too. Skateboarding in a major city is exactly that stereotype, and i kept it on the mild side, every skater ive ever met in my live was some sort of pot dealer or acid dealer its just how it is, unless your super suburban and only go to parks to skate.;False;False;;;;1610338333;;False;{};giu8djb;False;t3_ktxcly;False;True;t1_giu2fjt;/r/anime/comments/ktxcly/sk_episode_1_discussion/giu8djb/;1610387583;2;True;False;anime;t5_2qh22;;0;[]; -[];;;piox5;;;[];;;;text;t2_7y4ql;False;False;[];;Kinda disappointed. Not really sure what I was expecting but this is below that. They do nothing interesting with the skateboards and don't really encapsulate skate culture well (so far). Maybe it'll get more people into skating though so that's a small plus. I'll keep watching but it's meh so far;False;False;;;;1610339048;;False;{};giu9p75;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giu9p75/;1610388528;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AJDtrix256;;;[];;;;text;t2_3scooafy;False;False;[];;*Scoffs* It's obviously sktoinfinityandbeyond;False;False;;;;1610342217;;False;{};giuf15a;False;t3_ktxcly;False;False;t1_giq1hsq;/r/anime/comments/ktxcly/sk_episode_1_discussion/giuf15a/;1610392374;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SunSetSwish;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Renrane;light;text;t2_nzuia;False;False;[];;Has some Jet Set Radio vibes too !;False;False;;;;1610345039;;False;{};giuj3zh;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giuj3zh/;1610395272;1;True;False;anime;t5_2qh22;;0;[]; -[];;;N1gHtMaRe99;;;[];;;;text;t2_4hm66djz;False;False;[];;Damn you man now i wanna see a dude use the rim of the racket and winning a major championship;False;False;;;;1610346866;;False;{};giuljl9;False;t3_ktxcly;False;True;t1_gitrnif;/r/anime/comments/ktxcly/sk_episode_1_discussion/giuljl9/;1610397003;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610347879;;False;{};giumu7q;False;t3_ktxcly;False;True;t1_gioqs14;/r/anime/comments/ktxcly/sk_episode_1_discussion/giumu7q/;1610397943;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TokiWaKita;;;[];;;;text;t2_5x93wszo;False;False;[];;"The problem is you base everything on your own limited experiences while conveniently ignoring everything I said about how skateboarding has multiple facets beyond street. - -Just because you got into that crowd, that's not representative of the whole scene, **ESPECIALLY NOT THE JAPANESE**. - -For your information, I skated until my late 20s, in multiple cities, and only knew a handful of hardcore potheads. - -On the other hand, I got to participate in and later organize events, races, even summer workshops for kids, got to participate in the design of a skate park, help open a skateshop, got to know the longboarding crowd, got to take extended trips to mountain areas with friends and learn downhill, etc. -I've seen so much shit worthy of a story, I don't understand why you insist the only way to make an interesting skating anime is to abandon reality and create a gaudy, 90s neon-punk-esqe scene. - -You're saying there's nothing more to skating than street and all of the culture is just sitting around and smoking weed and I have a problem with that.";False;False;;;;1610348385;;False;{};giunh6s;False;t3_ktxcly;False;False;t1_giu8djb;/r/anime/comments/ktxcly/sk_episode_1_discussion/giunh6s/;1610398408;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;xJetStorm;;MAL;[];;http://myanimelist.net/animelist/technizor;dark;text;t2_8jjmj;False;False;[];;"I don't want to get too ""well, actually"", but this season (2021 Winter) technically has another Canadian, just that the anime hasn't explained their background yet. Somewhat relevant in context because of skills they have (like Landa here). - -- [Anime Name](/s ""*Otherside Picnic*"") -- [Character Name](/s ""Toriko Nishina"")";False;False;;;;1610348956;;False;{};giuo6r7;False;t3_ktxcly;False;False;t1_gioqs14;/r/anime/comments/ktxcly/sk_episode_1_discussion/giuo6r7/;1610398914;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PureLionHeart;;;[];;;;text;t2_c7dok;False;False;[];;Okay, that was fun in the best way. Dunno how *good* it actually is, but it is fun, and I will keep watching.;False;False;;;;1610349122;;False;{};giuoe6d;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giuoe6d/;1610399059;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OfficialTuxedoMocha;;;[];;;;text;t2_6zg1objs;False;False;[];;Yeah, okay, I'm down with the hot boys skating shonen let's go;False;False;;;;1610350918;;False;{};giuqu9t;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giuqu9t/;1610400669;1;True;False;anime;t5_2qh22;;0;[]; -[];;;galacticakagi;;;[];;;;text;t2_3kypiifb;False;False;[];;Yes, that’s the joke.;False;False;;;;1610374933;;False;{};givsx43;False;t3_ku09s5;False;True;t1_gipk5y7;/r/anime/comments/ku09s5/an_anime_i_can_watch_with_my_mom/givsx43/;1610421948;1;True;False;anime;t5_2qh22;;0;[]; -[];;;magneticwhispers;;;[];;;;text;t2_7pj5g318;False;False;[];;I just finished this for the first time yesterday. Really loved it, and the art style was so beautiful too! Would love to keep up with some of your discussions during the rewatch :);False;False;;;;1610391809;;False;{};giwx76n;False;t3_ku1u2g;False;True;t3_ku1u2g;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/giwx76n/;1610444006;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zuminey;;;[];;;;text;t2_9ry1rzv3;False;False;[];;" -i need that song in the langa part, did anyone find her name? -I can't live without knowing";False;False;;;;1610399640;;False;{};gixegse;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gixegse/;1610453459;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;I see you're making you're way in, keep up the reports!;False;False;;;;1610404765;;False;{};gixpbbt;False;t3_ktyzmm;False;True;t3_ktyzmm;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/gixpbbt/;1610460352;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rlmurrhee;;skip7;[];;;dark;text;t2_9a8y9b5c;False;False;[];;Yessir!;False;False;;;;1610411830;;False;{};giy3cda;True;t3_ktyzmm;False;True;t1_gixpbbt;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/giy3cda/;1610470388;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;The monster that destroys the mansion is just the icing on the cake of episode 15. Do you think Petelguese was right about Subaru faking is insanity?;False;False;;;;1610412140;;False;{};giy3ybg;False;t3_ktyzmm;False;True;t1_giy3cda;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/giy3ybg/;1610470845;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rlmurrhee;;skip7;[];;;dark;text;t2_9a8y9b5c;False;False;[];;I’m very curious as to what exactly the monster is because it said something along the lines of, “come and join my children,” if i’m not mistaken. And regarding Subaru faking his insanity, I think it was real. I really don’t see a reason as to why he would fake it. This show is awesome! I’ll be back on episode 18.;False;False;;;;1610412331;;False;{};giy4bp2;True;t3_ktyzmm;False;True;t1_giy3ybg;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/giy4bp2/;1610471110;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;It said *sleep with my daughter*. Some people theorize that Subaru pretended so he could make the other people feel sorry for him.;False;False;;;;1610412975;;False;{};giy5kow;False;t3_ktyzmm;False;True;t1_giy4bp2;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/giy5kow/;1610472007;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rlmurrhee;;skip7;[];;;dark;text;t2_9a8y9b5c;False;False;[];;Currently on 18 now, i’ll be back soon with an updated response.;False;False;;;;1610415775;;False;{};giyb19a;True;t3_ktyzmm;False;True;t1_giy5kow;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/giyb19a/;1610475914;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abeneezer;;;[];;;;text;t2_7dumy;False;False;[];;The Canadian stuff was great.;False;False;;;;1610415843;;False;{};giyb66b;False;t3_ktxcly;False;True;t1_gioolvi;/r/anime/comments/ktxcly/sk_episode_1_discussion/giyb66b/;1610476006;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abeneezer;;;[];;;;text;t2_7dumy;False;False;[];;Oh, it is set in Okinawa, that's a first for me I think.;False;False;;;;1610415867;;False;{};giyb7u0;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giyb7u0/;1610476038;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Don't feel a need to keep watching on my account, if you need to take a break, do it!;False;False;;;;1610415885;;False;{};giyb930;False;t3_ktyzmm;False;True;t1_giyb19a;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/giyb930/;1610476063;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rlmurrhee;;skip7;[];;;dark;text;t2_9a8y9b5c;False;False;[];;Trust me, I’m loving this show way too much right now to stop 😂;False;False;;;;1610415923;;False;{};giybbqr;True;t3_ktyzmm;False;True;t1_giyb930;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/giybbqr/;1610476114;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Alright, if you have questions ask.;False;False;;;;1610416042;;False;{};giybk7e;False;t3_ktyzmm;False;False;t1_giybbqr;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/giybk7e/;1610476270;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WisdomOtter;;;[];;;;text;t2_11bskr;False;False;[];;I hope so too. Pink guy def gives that vibe a little.;False;False;;;;1610416618;;False;{};giycoo8;False;t3_ktxcly;False;False;t1_gips4kc;/r/anime/comments/ktxcly/sk_episode_1_discussion/giycoo8/;1610477056;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rlmurrhee;;skip7;[];;;dark;text;t2_9a8y9b5c;False;False;[];;Man oh Man! Episode 18 was such a heart warmer compared to the last few. I really love the bond between Rem and Subaru. So this is where everything is truly starting, from zero. 7 more episodes left in the season 😁;False;False;;;;1610417584;;False;{};giyelom;True;t3_ktyzmm;False;True;t1_giybk7e;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/giyelom/;1610478421;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;You not angry at Subaru? The internet almost exploded after the famous *I Love Emilia*, lol, when you get to the end of first season you need to watch the classic Re:Zero in 8 minutes by giguk;False;False;;;;1610417887;;False;{};giyf77d;False;t3_ktyzmm;False;True;t1_giyelom;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/giyf77d/;1610478823;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rlmurrhee;;skip7;[];;;dark;text;t2_9a8y9b5c;False;False;[];;I was definitely disappointed after Rem spilled how she felt about Subaru and he goes and hits her with a rejection. I found it really funny how he just casually rejected her and she’s okay with it lmao. I’ve seen a few of gigguk’s podcast and will definitely watch after season 1. Are they’re any other noteworthy episodes from 19-25 in season 1?;False;False;;;;1610418085;;False;{};giyflmx;True;t3_ktyzmm;False;True;t1_giyf77d;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/giyflmx/;1610479100;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Yea episode 23.;False;False;;;;1610418190;;False;{};giyft77;False;t3_ktyzmm;False;True;t1_giyflmx;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/giyft77/;1610479239;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rlmurrhee;;skip7;[];;;dark;text;t2_9a8y9b5c;False;False;[];;Okay thx, i’ll see you then;False;False;;;;1610418753;;False;{};giygxru;True;t3_ktyzmm;False;True;t1_giyft77;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/giygxru/;1610480039;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;"The animation in this is really good. The shot of Langa jumping over the fireworks was a thing of beauty. - -Also, this makes me want to see if there's an anime about snowboarding, too.";False;False;;;;1610429774;;False;{};giz0x0y;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/giz0x0y/;1610494124;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saga999;;;[];;;;text;t2_9ppe9;False;False;[];;Not a skater, but they really epitomize it's about how many times you get back up.;False;False;;;;1610437726;;False;{};gizar2b;False;t3_ktxcly;False;True;t1_gion6ez;/r/anime/comments/ktxcly/sk_episode_1_discussion/gizar2b/;1610500411;2;True;False;anime;t5_2qh22;;0;[]; -[];;;darkness_in_the_dark;;;[];;;;text;t2_7yein2ag;False;False;[];;"I watched this anime like 2 years ago and I remember it having a special place in my heart like i dont know how to describe it but it is definitely an amazing anime imo. - -I dont usually rewatch any series. But honestly, its been so long since I watched this and its good so why not? - -Count me in!!";False;False;;;;1610447241;;False;{};gizk9e7;False;t3_ku1u2g;False;True;t3_ku1u2g;/r/anime/comments/ku1u2g/nagi_no_asukaraa_lull_in_the_sea_rewatch_interest/gizk9e7/;1610506476;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NinokuNANI;;;[];;;;text;t2_65tpsjrl;False;False;[];;Gosh I just loved every minute of this episode. Went in blind and was very pleased. The OP and ED are both great too!;False;False;;;;1610447717;;False;{};gizkpyu;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gizkpyu/;1610506801;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NinokuNANI;;;[];;;;text;t2_65tpsjrl;False;False;[];;Oh wow, guess I'm gonna have to watch Free and Banana Fish asap.;False;False;;;;1610447807;;False;{};gizkt31;False;t3_ktxcly;False;True;t1_giq4ae0;/r/anime/comments/ktxcly/sk_episode_1_discussion/gizkt31/;1610506857;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610459750;;False;{};gizzkr0;False;t3_ktxcly;False;True;t1_giuo6r7;/r/anime/comments/ktxcly/sk_episode_1_discussion/gizzkr0/;1610516328;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pamander;;;[];;;;text;t2_8csgs;False;False;[];;"Preach, I am so hyped about this anime just because of how hot anime boy it is and then all these other great suggestions in the comments lol. Plus the skating aspect is neat, don't think I have ever seen a skateboarding anime. - -And anything Bones is attached too immediately has my interest.";False;False;;;;1610465457;;False;{};gj0aaw8;False;t3_ktxcly;False;True;t1_gizkt31;/r/anime/comments/ktxcly/sk_episode_1_discussion/gj0aaw8/;1610522495;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pamander;;;[];;;;text;t2_8csgs;False;False;[];;I was wondering how the skateboarders were finding it, it must be a hype ass moment to be a Skateboarder + Anime fan, having Bones on an Anime to do with a sport that is already relatively obscure Anime wise (As in I can't think of any other skating specific anime) must feel awesome.;False;False;;;;1610465730;;False;{};gj0aswk;False;t3_ktxcly;False;True;t1_girxlkm;/r/anime/comments/ktxcly/sk_episode_1_discussion/gj0aswk/;1610522772;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FujisakiChihiro;;;[];;;;text;t2_p1s6x;False;False;[];;praying this won't turn out to be another shitty queerbait🤞;False;False;;;;1610477107;;False;{};gj0za8v;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gj0za8v/;1610536271;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lilibz;;;[];;;;text;t2_5cvs23zw;False;False;[];;Coming back to this comment, I rewatched it and tbh I kind of agree. As a skater myself I was hoping it wouldn’t be so... gimmicky? Ig i was just excited that we got an anime at all but yeah;False;False;;;;1610487752;;False;{};gj1mori;False;t3_ktxcly;False;True;t1_giu0nsl;/r/anime/comments/ktxcly/sk_episode_1_discussion/gj1mori/;1610551612;2;True;False;anime;t5_2qh22;;0;[]; -[];;;qwilliams92;;;[];;;;text;t2_11le5l;False;False;[];;So this is Johnny Tsunami the anime lol;False;False;;;;1610488295;;False;{};gj1nw7b;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gj1nw7b/;1610552474;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rlmurrhee;;skip7;[];;;dark;text;t2_9a8y9b5c;False;False;[];;Well that sucks, all of Subaru’s progress is gone. I wasn’t really expecting much and was waiting for something to happen all episode, but after seeing Subaru run into the forest and fucking sloth takes over his body. This really sucks. I’ll make an updated post on this sub when i reach season 2.;False;False;;;;1610493883;;False;{};gj1zg1k;True;t3_ktyzmm;False;True;t1_giyft77;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/gj1zg1k/;1610560791;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;I feel bad for Julius and Felix.;False;False;;;;1610494154;;False;{};gj1zz8n;False;t3_ktyzmm;False;True;t1_gj1zg1k;/r/anime/comments/ktyzmm/rezero_giving_me_steinsgate_vibes/gj1zz8n/;1610561149;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610501335;;False;{};gj2dhr1;False;t3_ktxcly;False;True;t1_giqcm9x;/r/anime/comments/ktxcly/sk_episode_1_discussion/gj2dhr1/;1610570695;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CelioHogane;;;[];;;;text;t2_e9z2u;False;False;[];;">Every single woman that isn't Langa's mom falls into the ""dumb eye candy"" category - -You say that like the men aren't exactly like that too.";False;False;;;;1610517803;;False;{};gj35c8j;False;t3_ktxcly;False;True;t1_gisedj2;/r/anime/comments/ktxcly/sk_episode_1_discussion/gj35c8j/;1610589784;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;The women are nothing but props, that's the point.;False;False;;;;1610540412;;False;{};gj3t92t;False;t3_ktxcly;False;True;t1_gj35c8j;/r/anime/comments/ktxcly/sk_episode_1_discussion/gj3t92t/;1610604776;1;True;False;anime;t5_2qh22;;0;[]; -[];;;andrei9669;;;[];;;;text;t2_deysc;False;False;[];;ngl, reminds me of air gear.;False;False;;;;1610555901;;False;{};gj4kyt4;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gj4kyt4/;1610620177;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Isogash;;MAL;[];;https://myanimelist.net/animelist/Isogash;dark;text;t2_b2n8a;False;False;[];;This is completely terrible in all the coolest ways.;False;False;;;;1610599385;;False;{};gj73jls;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gj73jls/;1610680507;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AThoughtfulUser;;;[];;;;text;t2_1cx76tku;False;False;[];;Wonder Egg Priority is the better show of the two but who really cares? Sk8 and Wonder Egg Priority have two different things going for them. Wonder Egg Priority makes you think and ponder. Sk8 makes you turn off your brain and just enjoy the ride.;False;False;;;;1610606699;;False;{};gj7dske;False;t3_ktxcly;False;True;t1_giqcm9x;/r/anime/comments/ktxcly/sk_episode_1_discussion/gj7dske/;1610686928;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Brohaa;;;[];;;;text;t2_cw3zt;False;False;[];;what song was the guy humming when he was watching the screens? the one thing i hate about classical pieces is being so difficult to find the name of lol;False;False;;;;1610607350;;False;{};gj7ek3d;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gj7ek3d/;1610687399;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;You're absolutely right lol, I wasn't really comparing them, they're very different from each other and now that WEP first episode is out too, I have nothing in comment. Both anime started with a great opening episode;False;False;;;;1610629031;;False;{};gj81ili;False;t3_ktxcly;False;False;t1_gj7dske;/r/anime/comments/ktxcly/sk_episode_1_discussion/gj81ili/;1610701144;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fennek_Fox;;;[];;;;text;t2_p0ojv;False;False;[];;I do hope so.. :p;False;False;;;;1610656413;;False;{};gj9mezn;False;t3_ktxcly;False;False;t1_gipkb4d;/r/anime/comments/ktxcly/sk_episode_1_discussion/gj9mezn/;1610738436;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hildra;;;[];;;;text;t2_d0kib;False;False;[];;This was a really great first episode. Love, love, love the character design. It’s the Free! of skateboarding though extremely anime and exaggerated. It should be fun to watch. I guess it makes sense that snowboarding and skateboarding skills are cross compatible but it’s a bit funny that he was THAT good without that much practice. Overall, really looking forward to this!;False;False;;;;1610677260;;False;{};gjau2e6;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gjau2e6/;1610767496;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hakson4life;;;[];;;;text;t2_7i08gc8h;False;False;[];;Does it have a manga adaptation? since I couldn’t find one;False;False;;;;1610914505;;False;{};gjn66s1;False;t3_ktxcly;False;False;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gjn66s1/;1611027493;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shadyhawkins;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/shadyhawkins;light;text;t2_8nhct;False;False;[];;I was *not* expecting this to be so dope. I actually sat up and leaned forward during Langa’s downhill scene. Also appeals to the Canadian snowboarder in me.;False;False;;;;1610945613;;False;{};gjov108;False;t3_ktxcly;False;True;t3_ktxcly;/r/anime/comments/ktxcly/sk_episode_1_discussion/gjov108/;1611062882;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lC3;;;[];;;;text;t2_58jbc;False;False;[];;"Rewatcher - -* So now Karasu is stranded in this dimension just like Atori and the others, and might disappear? -* Wait, so is Yuu now going to be jealous of Karasu? Teenage melodrama ... -* So it's only been 3 hours since she went missing? It kinda felt like more time than that passed in La'cryma. -* Uh oh, Yuu's about to get in trouble with his mom! I don't care for that plotline ... she's a terrible mom like usual. -* Good, run out on her; she's a bad mom and she should feel bad. -* Were those background characters with the musical instrument trying to hit on those schoolgirls? -* So Yuu's father is alive, and calls his wife? Are they still married? Or is this show somehow trying to say that Yuu's mom is acting up because of a divorce? I wouldn't like that, it absolves her of responsibility for her own actions. -* Hmm, so Atori and Tobi are still around. Of course he won't eat garbage; but isn't it better than the ?worms they fed Haruka in Lacryma? -* ""The effects of Shangri-la will spread to this dimension too"" So that's the corrosion or whatever? -* Karasu doesn't confirm being future Yuu, due to some weird dimensional boundary philosophy. He's ""just an illusion"" here? Because this isn't his dimension of origin? -* ""I'm not going home again. Bye"" Boy, that is one *mood*! Tho I can totally relate; I ran away several times when I was around his age. -* Did Miyuki's sister Emi die or something? -* Ok, Miyuki and Emi's mother showed favoritism towards Emi, but then Emi died early? And Miyuki is bitter about it, and taking it out on Yuu? This is uncomfortable to watch. -* Who keeps *chocolate* in their desk drawer? I don't take anything edible into my bedroom ... -* ""you'll turn into a porker"" (silently contemplating weight gain ...) -* ""Karasu is here too, but don't let it bother you"" [](#laughter) - -1. I don't really see Karasu as a guy who makes detailed plans; more a guy who acts purely on instincts or sudden emotions. He probably just wants to protect this Haruka since he couldn't protect his, and that's all there is to it. -2. Ugh, I'm not optimistic. They'll probably try to gloss over it or make us feel sorry for Yuu's mother. I doubt they'll handle it well, and acknowledge that she's in the wrong.";False;False;;;;1611195239;;False;{};gk0m3o0;False;t3_ku0k6t;False;True;t3_ku0k6t;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gk0m3o0/;1611327272;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lC3;;;[];;;;text;t2_58jbc;False;False;[];;"> “I ain’t touching that crap” – sure, it is not live bugs … - -Atori is oddly picky about food given what they ate in Lacryma; half-eaten food from this dimension should be a delicacy. - -> Haruka is the first to not let Yuu go (or the first that Yuu does not run away from). - -Never gonna give Yuu up, never gonna let Yuu down, never gonna run around and desert Yuu ...";False;False;;;;1611196632;;False;{};gk0ov90;False;t3_ku0k6t;False;False;t1_gipkg2r;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gk0ov90/;1611329039;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lC3;;;[];;;;text;t2_58jbc;False;False;[];;"> Forgiving someone means you accept that they will do the same thing again. - -Not necessarily; I can forgive someone who repeatedly hurt me, but it doesn't mean I have to trust them ever again (I know better). I've rebuffed all attempts for us to reconcile. But I guess it's a little different when the perp is still involved in their victim's life. - -Sorry to hear about your shitty circumstances!";False;False;;;;1611197095;;False;{};gk0pt6i;False;t3_ku0k6t;False;False;t1_giqvo3k;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gk0pt6i/;1611329646;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lC3;;;[];;;;text;t2_58jbc;False;False;[];;"> With all the emotional flip-flopping she's starting to look like a BPD case. - -Did you mean bipolar or borderline? I always mess up their abbreviations ...";False;False;;;;1611197229;;False;{};gk0q32l;False;t3_ku0k6t;False;True;t1_gip8d67;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gk0q32l/;1611329826;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lC3;;;[];;;;text;t2_58jbc;False;False;[];;"> I still very much do not like Yuu’s mom. - -[Definitely agree](#holdback) - -Will have to see if that changes at all once I'm caught up.";False;False;;;;1611197464;;False;{};gk0qkq9;False;t3_ku0k6t;False;True;t1_gip6v0m;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gk0qkq9/;1611330144;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;Borderline;False;False;;;;1611197468;;False;{};gk0ql1q;False;t3_ku0k6t;False;True;t1_gk0q32l;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gk0ql1q/;1611330150;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lC3;;;[];;;;text;t2_58jbc;False;False;[];;Soul Society is good, but I'm stuck on the filler arc afterward. [](#ptsd);False;False;;;;1611197886;;False;{};gk0rg4x;False;t3_ku0k6t;False;True;t1_gis0yow;/r/anime/comments/ku0k6t/mid2000s_rewatch_noein_episode_8/gk0rg4x/;1611330710;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;I loved the first episode, I initially rolled my eyes at the description and was gonna skip it until I heard it was one of the first isekai. It got some good laughs out of me;False;False;;;;1610328841;;False;{};gitpgz4;False;t3_kus5kt;False;True;t3_kus5kt;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/gitpgz4/;1610374340;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;Some people don't like an anime. Oh the humanity.;False;False;;;;1610328888;;False;{};gitpkb1;False;t3_kus5kt;False;False;t3_kus5kt;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/gitpkb1/;1610374401;8;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;So you expect him to develop past thinking his mom has great tits?;False;False;;;;1610328915;;False;{};gitpmc3;False;t3_kus5kt;False;True;t3_kus5kt;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/gitpmc3/;1610374437;1;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;"Inhale copium. - -Exhale this post. - -Nah fr tho why do you care so much about people reviewing the first episode of a mediocre show to be mediocre.";False;False;;;;1610329056;;False;{};gitpwl2;False;t3_kus5kt;False;True;t3_kus5kt;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/gitpwl2/;1610374615;3;True;False;anime;t5_2qh22;;0;[]; -[];;;baquea;;;[];;;;text;t2_j3k0u;False;True;[];;I mean not liking an anime after watching a single episode is a bit ridiculous.;False;True;;comment score below threshold;;1610329306;;False;{};gitqegz;False;t3_kus5kt;False;True;t1_gitpkb1;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/gitqegz/;1610374940;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610329564;moderator;False;{};gitqzxh;False;t3_kuse1h;False;True;t3_kuse1h;/r/anime/comments/kuse1h/does_anyone_know_what_this_song_is/gitqzxh/;1610375330;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Ishuzoku-Connoisseur;;;[];;;;text;t2_65qsew7y;False;False;[];;I’ll be honest the MC has turned me away from this show. It’s visually stunning but if the shows main focus is that loser I’m not going to bother with it.;False;False;;;;1610329595;;False;{};gitr2bk;False;t3_kus5kt;False;False;t3_kus5kt;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/gitr2bk/;1610375372;5;True;False;anime;t5_2qh22;;0;[]; -[];;;8Overlord8;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_81jp251w;False;False;[];;Fire Force Season 1;False;False;;;;1610329670;;False;{};gitr7lj;False;t3_kuse1h;False;True;t3_kuse1h;/r/anime/comments/kuse1h/does_anyone_know_what_this_song_is/gitr7lj/;1610375470;2;True;False;anime;t5_2qh22;;0;[]; -[];;;reading_potato;;;[];;;;text;t2_3xi7xrdz;False;False;[];;"That's not even his worst, or even the worst unntil that part, much was already censored. The story is about redemption, about a trash of human being becoming someone decent. - -The isekai genre of the last 7 years is defined by this series, this is already enough proof of its quality. - -But that's not even my problem with the article, since they have no obligation to know all that. It's that from the way it's written it's possible to say that many of the reviewers were purposefully hunting for flaws instead of trying to enjoy and dissect the good and bad points.";False;True;;comment score below threshold;;1610329730;;False;{};gitrc9w;False;t3_kus5kt;False;True;t1_gitpmc3;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/gitrc9w/;1610375554;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;reading_potato;;;[];;;;text;t2_3xi7xrdz;False;False;[];;"Because it's a series that I care about, and a series that's extremely important to the isekai genre since it's its trendsetter. - -And also for the same reason you cared enough to reply.";False;True;;comment score below threshold;;1610329990;;False;{};gitryv5;False;t3_kus5kt;False;True;t1_gitpwl2;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/gitryv5/;1610375960;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Don't worry about those reviews, people don't even care about them to begin with, the series will be pretty well here and will have a spot in the top 15 - -For this winter season just being on the top 15 is a huge deal";False;False;;;;1610330244;;False;{};gitsjbv;False;t3_kus5kt;False;True;t3_kus5kt;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/gitsjbv/;1610376337;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;The daily demon slayer is bad post;False;False;;;;1610330354;;False;{};gitsrox;False;t3_kusl83;False;False;t3_kusl83;/r/anime/comments/kusl83/demon_slayer_dissapointed_me/gitsrox/;1610376498;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Dead_Pixel_Art;;;[];;;;text;t2_7x0chp07;False;False;[];;That's just like your opinion man;False;False;;;;1610330449;;False;{};gitsz7d;False;t3_kusl83;False;False;t3_kusl83;/r/anime/comments/kusl83/demon_slayer_dissapointed_me/gitsz7d/;1610376638;6;True;False;anime;t5_2qh22;;0;[]; -[];;;kittysprites;;;[];;;;text;t2_8m34fav1;False;False;[];;true that;False;False;;;;1610330490;;False;{};gitt2dx;True;t3_kusl83;False;True;t1_gitsz7d;/r/anime/comments/kusl83/demon_slayer_dissapointed_me/gitt2dx/;1610376695;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Someone expresses opinion that something popular is bad. More at 11.;False;False;;;;1610330543;;False;{};gitt6h5;False;t3_kusl83;False;False;t3_kusl83;/r/anime/comments/kusl83/demon_slayer_dissapointed_me/gitt6h5/;1610376768;14;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610330549;moderator;False;{};gitt6xl;False;t3_kusoiy;False;True;t3_kusoiy;/r/anime/comments/kusoiy/please_help_i_have_a_question/gitt6xl/;1610376776;1;False;False;anime;t5_2qh22;;0;[]; -[];;;kittysprites;;;[];;;;text;t2_8m34fav1;False;False;[];;lol my bad didnt know this was a common occurence 😩 i dont exactly think its bad i just cant believe how hyped it was for what i saw it was OK;False;False;;;;1610330558;;False;{};gitt7ml;True;t3_kusl83;False;True;t1_gitsrox;/r/anime/comments/kusl83/demon_slayer_dissapointed_me/gitt7ml/;1610376790;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;kittysprites;;;[];;;;text;t2_8m34fav1;False;False;[];;i love popular anime. my favorite anime are some of the most popular (:;False;False;;;;1610330608;;False;{};gittb8g;True;t3_kusl83;False;False;t1_gitt6h5;/r/anime/comments/kusl83/demon_slayer_dissapointed_me/gittb8g/;1610376852;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;"Read this Wikipedia article about it. It's a part of the language. - -https://en.wikipedia.org/wiki/Japanese_honorifics";False;False;;;;1610330632;;False;{};gittd19;False;t3_kusoiy;False;True;t3_kusoiy;/r/anime/comments/kusoiy/please_help_i_have_a_question/gittd19/;1610376885;7;True;False;anime;t5_2qh22;;0;[]; -[];;;reading_potato;;;[];;;;text;t2_3xi7xrdz;False;False;[];;"The series is about redemption, and at this point, a.k.a, the beginning, ""loser"" is not the right word to use on him. Human trash or scum would be way better. - -The story is about being growing as a human being, reflecting on his mistakes, becoming better, and paying the price for his mistakes. - -It's not a light series, not by a long mile, but the fact that it basically created the whole modern isekai genre should be proof enough of it's quality.";False;False;;;;1610330653;;False;{};gittejr;False;t3_kus5kt;False;False;t1_gitr2bk;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/gittejr/;1610376912;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Just search Japanese honorifics on Google - -Since you'll do that you much as well search what onii/onee chan, Oka san, otosan, etc means";False;False;;;;1610330779;;False;{};gittnic;False;t3_kusoiy;False;True;t3_kusoiy;/r/anime/comments/kusoiy/please_help_i_have_a_question/gittnic/;1610377073;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Beraenna;;;[];;;;text;t2_82ke58wa;False;False;[];;I agree with some of the things you said. Especially about the characters. I already finished the entire manga and can say that the ending was extremely disappointing and that the story as a whole felt rushed and had pacing issues. The characters are pretty boring and if you make a character traits chart for them they are very basic. After finishing the story, the only character that I truly enjoyed was Sanemi. Don’t get me wrong I still do enjoy the show but all the anime is pretty animation and lackluster story.;False;False;;;;1610330919;;False;{};gittxw2;False;t3_kusl83;False;False;t3_kusl83;/r/anime/comments/kusl83/demon_slayer_dissapointed_me/gittxw2/;1610377283;3;True;False;anime;t5_2qh22;;0;[]; -[];;;erikcent;;;[];;;;text;t2_5flvnlop;False;False;[];;"Tl;dr but yeah it’s just a generic shounen with better animation than the rest, still gets way too much praise";False;False;;;;1610330929;;False;{};gittyoa;False;t3_kusl83;False;False;t3_kusl83;/r/anime/comments/kusl83/demon_slayer_dissapointed_me/gittyoa/;1610377298;4;True;False;anime;t5_2qh22;;0;[]; -[];;;reading_potato;;;[];;;;text;t2_3xi7xrdz;False;False;[];;I don't care that much about their opinions, but I needed to share since it's pretty funny how the reviews were exactly who the community predicted.;False;False;;;;1610330932;;False;{};gittyuh;False;t3_kus5kt;False;True;t1_gitsjbv;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/gittyuh/;1610377302;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kittysprites;;;[];;;;text;t2_8m34fav1;False;False;[];;oh noo thats dissapointing to hear!! Ill defs finish the anime if they get around to making more cause i do want to see how it ends. hopefully will turn out better than the manga if thats true!;False;False;;;;1610331035;;False;{};gitu6ha;True;t3_kusl83;False;True;t1_gittxw2;/r/anime/comments/kusl83/demon_slayer_dissapointed_me/gitu6ha/;1610377443;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"A lot of people are watching the show because it became the biggest movie ever in Japan with almost 400m dollars and also sold 80m manga volumes in a year, its also the best selling Light novel. - -Even traditional journals are reporting on all of those numbers and facts - -So people that don't usually watch shonen (or even anime) are trying the show to see what all the fuss is about, which lead to some being disappointed - -And almost everyday someone comes here with a similar post";False;False;;;;1610331120;;False;{};gitucjb;False;t3_kusl83;False;False;t1_gitt7ml;/r/anime/comments/kusl83/demon_slayer_dissapointed_me/gitucjb/;1610377556;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Zman947;;;[];;;;text;t2_2rvfdv20;False;False;[];;So a couple points. Kibutsuji didn't just cross dress, he can change his form and presumably actual gender. It's part of the reason they haven't been able to track him down. The face design is the art style this is drawn in, it's intentional, that said I get you don't like it, but that's the art style the artist chose. Now for female characters, I think the point is physical strength isn't everything. Even someone too weak to cut the head off of a demon can be one of the most powerful humans on the planet. Your argument isn't bad, but I think she's plenty badass, even more badass imo than someone who is just a walking muscle bound idiot. Zenitsu is absolutely annoying, it's asta all over again. I think he had had character growth, like when he was willing to get the shit beat out of him to protect a box he had no idea nezuko was inside of. But I wholeheartedly agree that there's no reason to have him screech every single time he's on a screen. Just some things to think about as you reflect on the show.;False;False;;;;1610331123;;False;{};gitucr2;False;t3_kusl83;False;False;t3_kusl83;/r/anime/comments/kusl83/demon_slayer_dissapointed_me/gitucr2/;1610377560;8;True;False;anime;t5_2qh22;;0;[]; -[];;;AlucardN7;;;[];;;;text;t2_2cscym3c;False;False;[];;"Japan is a VERY formal and conservative culture, the suffixes/honorific you hear denote your relationship with the person. For example -sensei shows respect to your teacher. Think of calling your teacher Jeff instead of Mr. Anderson, in the US you may get a little snarky comment back, but in Japan if you dont use the honorific its much more of a big deal. And i believe that there are some that are gender specific. - -Long story short, theyre like using Mr. or Mrs. but in Japan there are more titles than just those.";False;False;;;;1610331147;;False;{};gituei3;False;t3_kusoiy;False;True;t3_kusoiy;/r/anime/comments/kusoiy/please_help_i_have_a_question/gituei3/;1610377593;3;True;False;anime;t5_2qh22;;0;[]; -[];;;theknightsthatsayPP;;;[];;;;text;t2_5o42tj69;False;False;[];;thank you 😊;False;False;;;;1610331216;;False;{};gitujdk;True;t3_kusoiy;False;True;t1_gittd19;/r/anime/comments/kusoiy/please_help_i_have_a_question/gitujdk/;1610377680;3;True;False;anime;t5_2qh22;;0;[]; -[];;;theknightsthatsayPP;;;[];;;;text;t2_5o42tj69;False;False;[];;thank you 😊;False;False;;;;1610331224;;False;{};gitujzz;True;t3_kusoiy;False;True;t1_gituei3;/r/anime/comments/kusoiy/please_help_i_have_a_question/gitujzz/;1610377691;2;True;False;anime;t5_2qh22;;0;[]; -[];;;theknightsthatsayPP;;;[];;;;text;t2_5o42tj69;False;False;[];;thank you 😊;False;False;;;;1610331236;;False;{};gitukxr;True;t3_kusoiy;False;True;t1_gittnic;/r/anime/comments/kusoiy/please_help_i_have_a_question/gitukxr/;1610377710;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AlucardN7;;;[];;;;text;t2_2cscym3c;False;False;[];;Glad to help!;False;False;;;;1610331252;;False;{};gitum4j;False;t3_kusoiy;False;True;t1_gitujzz;/r/anime/comments/kusoiy/please_help_i_have_a_question/gitum4j/;1610377732;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kittysprites;;;[];;;;text;t2_8m34fav1;False;False;[];;"i love characters that use brains over brawn or other tacticts. I guess its the fact that so far all the female charcaters are weak/ timid. Thats interesting about kibutsuji if he can actually change gender/ has none - I think thats a neat concept.";False;False;;;;1610331271;;False;{};gitunhz;True;t3_kusl83;False;True;t1_gitucr2;/r/anime/comments/kusl83/demon_slayer_dissapointed_me/gitunhz/;1610377757;0;True;False;anime;t5_2qh22;;0;[]; -[];;;kittysprites;;;[];;;;text;t2_8m34fav1;False;False;[];;thats fair i didnt know it was so ground breaking! after watching i figured it was only popular for the outstanding animation.;False;False;;;;1610331352;;False;{};gitutgo;True;t3_kusl83;False;False;t1_gitucjb;/r/anime/comments/kusl83/demon_slayer_dissapointed_me/gitutgo/;1610377865;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Beraenna;;;[];;;;text;t2_82ke58wa;False;False;[];;Yes I’m really hoping they add more to the ending in the anime than what the manga had. If maybe 3-5 more chapters had been made than I think the ending could’ve been great.;False;False;;;;1610331480;;False;{};gitv3rj;False;t3_kusl83;False;True;t1_gitu6ha;/r/anime/comments/kusl83/demon_slayer_dissapointed_me/gitv3rj/;1610378060;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zman947;;;[];;;;text;t2_2rvfdv20;False;False;[];;Yeah, it has potential to make him/her/them one of the greats as far as villains go. I'm all for making the females not timid, I just personally think it's cool to have a frail girl come in that literally strikes fear into the heart of demons and humans alike. And not because she has typical anime god level strength in a little girls body, but because she's just an expert in killing and a genius in poisons.;False;False;;;;1610331538;;False;{};gitv8ji;False;t3_kusl83;False;False;t1_gitunhz;/r/anime/comments/kusl83/demon_slayer_dissapointed_me/gitv8ji/;1610378149;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610331577;moderator;False;{};gitvbku;False;t3_kuszmu;False;False;t3_kuszmu;/r/anime/comments/kuszmu/help_finding_image_steinsgate/gitvbku/;1610378206;1;False;False;anime;t5_2qh22;;0;[]; -[];;;jslice4ever;;;[];;;;text;t2_2wvi51tm;False;False;[];;Okay. Weird rant but okay.;False;False;;;;1610331591;;False;{};gitvcla;False;t3_kusl83;False;False;t3_kusl83;/r/anime/comments/kusl83/demon_slayer_dissapointed_me/gitvcla/;1610378225;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AxtheCool;;;[];;;;text;t2_y2vk9;False;False;[];;"> It's not a light series, not by a long mile, but the fact that it basically created the whole modern isekai genre should be proof enough of it's quality. - -Just because the series was first doesnt give any proof of its quality. A series may be the first of its kind and be an awful, poorly written work.";False;False;;;;1610331599;;False;{};gitvd7q;False;t3_kus5kt;False;False;t1_gittejr;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/gitvd7q/;1610378243;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Star_Lux22;;;[];;;;text;t2_22d262q9;False;False;[];;"I mean, good for you that you care a lot about this series, but you should learn to ignore these reviews if it bothers you that much. - -Fans like you are what’s making me not watch the anime tbh";False;False;;;;1610331724;;False;{};gitvmb7;False;t3_kus5kt;False;True;t1_gitryv5;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/gitvmb7/;1610378406;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AxtheCool;;;[];;;;text;t2_y2vk9;False;False;[];;"> Because it's a series that I care about - -Then why care about other's opinions? You like it and that is great.";False;False;;;;1610331869;;False;{};gitvwtz;False;t3_kus5kt;False;True;t1_gitryv5;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/gitvwtz/;1610378605;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610331953;moderator;False;{};gitw2z0;False;t3_kut3kf;False;True;t3_kut3kf;/r/anime/comments/kut3kf/rascal_does_not_dream_of/gitw2z0/;1610378720;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;the movie is a sequel;False;False;;;;1610331997;;False;{};gitw67c;False;t3_kut3kf;False;True;t3_kut3kf;/r/anime/comments/kut3kf/rascal_does_not_dream_of/gitw67c/;1610378782;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jamma111111111;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/Jamma111111111/;light;text;t2_3nal1t7i;False;False;[];;Ight thx;False;False;;;;1610332035;;False;{};gitw8y2;True;t3_kut3kf;False;True;t1_gitw67c;/r/anime/comments/kut3kf/rascal_does_not_dream_of/gitw8y2/;1610378833;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Why nfsw? Please tell me that's because of the bunny girls;False;False;;;;1610332079;;False;{};gitwc25;False;t3_kut3kf;False;True;t3_kut3kf;/r/anime/comments/kut3kf/rascal_does_not_dream_of/gitwc25/;1610378893;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;"> basically created the whole modern isekai genre should be proof enough of it's quality. - -Given how often this is repeated, I was surprised going through most of the big hitters from the past decade because almost all of them got started either before, or very shortly after this one (even ignoring how much tends to get pulled from older series like The Familiar of Zero). It might have been one of the early popular web novels, but a ton of the major isekai stories had already started when it was first released.";False;False;;;;1610332128;;False;{};gitwflb;False;t3_kus5kt;False;False;t1_gittejr;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/gitwflb/;1610378957;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;"It's not as much anymore. It was quite common late 2019 into 2020 though. Although at least you've actually gone to the effort to explain why you dislike the anime at length, which is more than you can say for 99% of posters. - -You're criticisms aren't uncommon, especially regarding Zenitsu, which I agree with. He's a comic relief to some, and a very grating character to others that quickly becomes annoying and gimmicky. - -I'd disagree on the character designs though. I think that's one of the series' strong points. All of the characters are easily recognizable and quite striking. The colour palettes used by Ufotable are fantastic, both for the characters and the backdrops.";False;False;;;;1610332197;;False;{};gitwkgy;False;t3_kusl83;False;False;t1_gitt7ml;/r/anime/comments/kusl83/demon_slayer_dissapointed_me/gitwkgy/;1610379044;6;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610332241;moderator;False;{};gitwnll;False;t3_kut6lg;False;True;t3_kut6lg;/r/anime/comments/kut6lg/i_need_new_recommendations/gitwnll/;1610379104;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi anonymous1742, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610332241;moderator;False;{};gitwnmv;False;t3_kut6lg;False;True;t3_kut6lg;/r/anime/comments/kut6lg/i_need_new_recommendations/gitwnmv/;1610379105;1;False;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;Probably just because the name has “bunny girl” in it. The show is not nsfw (no nudity/ecchi or violence);False;False;;;;1610332297;;False;{};gitwrlo;False;t3_kut3kf;False;True;t1_gitwc25;/r/anime/comments/kut3kf/rascal_does_not_dream_of/gitwrlo/;1610379178;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610332380;moderator;False;{};gitwxfb;False;t3_kut7yq;False;True;t3_kut7yq;/r/anime/comments/kut7yq/is_the_site_aniwatch_down/gitwxfb/;1610379285;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Roketsu86;;;[];;;;text;t2_hwze9;False;False;[];;The movie is the sequel to the anime so you need to watch the series first.;False;False;;;;1610332380;;False;{};gitwxg6;False;t3_kut3kf;False;True;t3_kut3kf;/r/anime/comments/kut3kf/rascal_does_not_dream_of/gitwxg6/;1610379285;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi cbumpa, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610332424;moderator;False;{};gitx0kl;False;t3_kut8gm;False;True;t3_kut8gm;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/gitx0kl/;1610379342;0;False;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;The thumbnail appearing here is a huge spoiler for the series;False;False;;;;1610332439;;False;{};gitx1oj;False;t3_kut36x;False;False;t3_kut36x;/r/anime/comments/kut36x/unlimited_blade_works_a_great_entrance_to_a/gitx1oj/;1610379363;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Roketsu86;;;[];;;;text;t2_hwze9;False;False;[];;Well, considering we can't discuss illegal sites here I don't think you'll get a solid answer. You should probably reconsider using that site in the first place though.;False;False;;;;1610332498;;False;{};gitx5wz;False;t3_kut7yq;False;True;t3_kut7yq;/r/anime/comments/kut7yq/is_the_site_aniwatch_down/gitx5wz/;1610379442;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;Good series rated it 9/10;False;False;;;;1610332499;;False;{};gitx5yf;False;t3_kut8gm;False;False;t3_kut8gm;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/gitx5yf/;1610379443;6;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"If you have a list of what you have seen it would make it easier to recommend, but here is a list of some of my favorites - -- Rascal does not Dream of Bunny Girl Senpai and the movie (romcom, supernatural) - -- Horimiya (currently airing romcom) - -- Tonikaku Kawaii (romcom) - -- Monthly Girls Nozaki Kun (romcom, way more comedy) - -- Konosuba (comedy with some action) - -- Daily Lives of High School Boys (comedy) - -- A Place Further than the Universe (adventure with some comedy) - -- Madoka Magica (thriller, psychological) - -- Your Lie in April (drama, with some romance and comedy) - -- March Comes in like a Lion (drama with some comedy) - -- Shirobako (SoL with comedy about working in the anime industry)";False;False;;;;1610332545;;1610332753.0;{};gitx987;False;t3_kut6lg;False;True;t3_kut6lg;/r/anime/comments/kut6lg/i_need_new_recommendations/gitx987/;1610379505;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cbumpa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cbumpa;light;text;t2_4uaglc4u;False;False;[];;For sure a 9 or 10 for me;False;False;;;;1610332553;;False;{};gitx9rs;True;t3_kut8gm;False;False;t1_gitx5yf;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/gitx9rs/;1610379515;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;Gurren Lagann wows me even after a decade later from my original viewing. It's easily a 10/10 for me.;False;False;;;;1610332633;;False;{};gitxfm6;False;t3_kut8gm;False;False;t3_kut8gm;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/gitxfm6/;1610379623;11;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;"It's basically the isekai Seinfeld effect, which is mentioned in the reviews. - -It was influential, but looking at it w/ a modern eye, its so much worse than everything inspired by it. It also has the added disadvantage of not getting an anime adaptation until the whole isekai horse has already been beaten to death, so people are far more critical of ""what makes this unique"" and nothing really shines, so the grating aspects feel so much worse.";False;False;;;;1610332646;;False;{};gitxgmb;False;t3_kus5kt;False;True;t1_gitryv5;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/gitxgmb/;1610379640;2;True;False;anime;t5_2qh22;;0;[]; -[];;;irisverse;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/usernamesarehard;light;text;t2_1dzbqjh4;False;False;[];;Not really. Sometimes an anime just has a bad first episode and people have better thing to do with their time than wait for it to get better.;False;False;;;;1610332658;;False;{};gitxhil;False;t3_kus5kt;False;True;t1_gitqegz;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/gitxhil/;1610379657;3;True;False;anime;t5_2qh22;;0;[]; -[];;;irisverse;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/usernamesarehard;light;text;t2_1dzbqjh4;False;False;[];;"> The isekai genre of the last 7 years is defined by this series, this is already enough proof of its quality - -Damn, I don't I've ever seen someone convince me to never watch a show this quickly. -So you're telling me that all the bland cookie-cutter creatively bankrupt isekai anime draw inspiration from this one? Wow, I just *have* to check that one out!";False;False;;;;1610332702;;False;{};gitxku6;False;t3_kus5kt;False;True;t1_gitrc9w;/r/anime/comments/kus5kt/it_seems_the_salt_for_mushoku_tensei_already/gitxku6/;1610379718;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Phil-Rogers;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/PhilRogers;dark;text;t2_4z5phxus;False;False;[];;Katanagatari is a psuedo slice of life action adventure romance;False;False;;;;1610332707;;False;{};gitxl5o;False;t3_kut6lg;False;False;t3_kut6lg;/r/anime/comments/kut6lg/i_need_new_recommendations/gitxl5o/;1610379724;1;True;False;anime;t5_2qh22;;0;[]; -[];;;isAltTrue;;;[];;;;text;t2_1oob2cuk;False;False;[];;As I recall, season 1 is pretty tame. It ends before Rengoku fights the train, yeah?;False;False;;;;1610332781;;False;{};gitxqdm;False;t3_kusl83;False;True;t3_kusl83;/r/anime/comments/kusl83/demon_slayer_dissapointed_me/gitxqdm/;1610379826;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610332901;;False;{};gitxyru;False;t3_kut8gm;False;True;t3_kut8gm;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/gitxyru/;1610379989;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;It's the only mecha show I'll ever give a 10/10;False;False;;;;1610333038;;False;{};gity89d;False;t3_kut8gm;False;False;t3_kut8gm;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/gity89d/;1610380171;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;"Watch the movies at some point! They're recaps (the first one covers pre-Lordgenome fight, while the second briefly covers said fight and then everything from episode 17 to the end), but they change up some events, expand on others (or just outright *added* things like some more Nia characterization in the second movie), and somehow managed to make the final battle of the series infinite times *more* hype in the second movie. It's been over a year since I watched the movies for the first time and I'm still not sure how they managed that. Also has a remix of Sorairo Days that is an absolute *banger*. - -Anyways, I had a similar experience as you. Picked it up because I heard it was good, but put it on hold for half a year after episode 4 because I felt more like rewatching my at-the-time favorite anime (FMA:B) and then kept watching other stuff instead of getting back to it. When I got into Gundam and that made me realize I love the mecha genre, I picked Gurren Lagann back up and I wound up watching episodes 9-27 in the span of two days, finishing at like 3 am and just crying my eyes out because it was *so good*. It was the first show that challenged my belief that FMA:B would forever be my favorite anime (FMA:B is only my #7 now) and I'll forever have a soft spot in my heart for that. - -I personally hosted a rewatch for Gurren Lagann back in late 2019. If you'd like to read through relatively recent discussions on each episode with both people who hadn't seen it before and people who *were* rewatching it, [feel free to give the threads a look](https://old.reddit.com/r/anime/comments/dhrqzn/a_rewatch_to_pierce_the_heavens_gurren_lagann/)!";False;False;;;;1610333062;;False;{};gitya06;False;t3_kut8gm;False;False;t3_kut8gm;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/gitya06/;1610380204;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610333348;;False;{};gityuzh;False;t3_kut8gm;False;True;t3_kut8gm;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/gityuzh/;1610380599;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Great for you, I'll watch 21 anime in this winter season, they all are precious in their own right;False;False;;;;1610333377;;False;{};gityx27;False;t3_kutgit;False;True;t3_kutgit;/r/anime/comments/kutgit/what_anime_are_you_living_for_right_now/gityx27/;1610380643;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cbumpa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cbumpa;light;text;t2_4uaglc4u;False;False;[];;Didn’t even know there were movies that’s so cool! I’ll definitely check out the movies and the thread too. I’ve only seen about 40-50 anime in my life but this one is really making me question my #1 spot. Originally my #1 belongs to Cowboy Bebop, AoT, or EVA probably, but it’s so hard to pick one anime lmao. If you have any suggestions for me to watch I feel I can trust your opinions for sure;False;False;;;;1610333385;;False;{};gityxks;True;t3_kut8gm;False;True;t1_gitya06;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/gityxks/;1610380652;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;Really good series, but not the be all end all hypefest it is made out to be though. I give it a good 8/10, best gateway super robot show that no one follows up on.;False;False;;;;1610333458;;False;{};gitz2rj;False;t3_kut8gm;False;True;t3_kut8gm;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/gitz2rj/;1610380754;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Denzel_Potato09;;;[];;;;text;t2_5upv9a99;False;False;[];;"I have a few that I can name that comes to mind: - -1. Hibike! Euphonium -2. A Place Further Than The Universe -3. Rascal Does Not Dream of A Bunny Girl Senpai -4. Tsuki ga Kirei -5. Boku dake ga Inai Machi (ERASED)";False;False;;;;1610333489;;False;{};gitz4yv;False;t3_kut6lg;False;True;t3_kut6lg;/r/anime/comments/kut6lg/i_need_new_recommendations/gitz4yv/;1610380807;1;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"Gurren Lagann stands out among anime, even over 10 years later I find it hard to match. Its ability to grasp viewers and buy into belief as its own power, while also relating it to the theme of drills and pushing forward is remarkable. - -People always point to Kamina’s quotes about belief to Simon being the standout quotes of the show, but I think one of Simon’s from the final battle might be more impactful: - -“This drill will open a hole in the universe. And that hole will become a path for those that follow after us. The dreams of those who have fallen. The hopes of those who will follow. Those two sets of dreams weave together into a double helix, drilling a path towards tomorrow”";False;False;;;;1610333509;;False;{};gitz6bo;False;t3_kut8gm;False;False;t3_kut8gm;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/gitz6bo/;1610380833;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Cynderaquil;;;[];;;;text;t2_3hyccqum;False;False;[];;Gurren Lagann was the only mecha anime I actually enjoy. It was also the first anime I ever found myself actually despising a character 100%. I absolutely hated Rossiu ever since he appeared;False;False;;;;1610333638;;False;{};gitzfjk;False;t3_kut8gm;False;True;t3_kut8gm;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/gitzfjk/;1610381016;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cbumpa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cbumpa;light;text;t2_4uaglc4u;False;False;[];;I thought that quote was so well written when I heard it too. I give the writer props for the killer dialogue they put into this anime. I loved when the characters used Kamina’s quotes for inspiration later on!;False;False;;;;1610333649;;False;{};gitzgfo;True;t3_kut8gm;False;True;t1_gitz6bo;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/gitzgfo/;1610381032;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cbumpa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cbumpa;light;text;t2_4uaglc4u;False;False;[];;Oh yeah there were definitely moments I hated that dude even existed. But, he was never really a bad guy, just a little too much of a realist sometimes imo;False;False;;;;1610333722;;False;{};gitzlo8;True;t3_kut8gm;False;True;t1_gitzfjk;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/gitzlo8/;1610381141;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cbumpa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cbumpa;light;text;t2_4uaglc4u;False;False;[];;Worst score I see on it and it’s an 8/10, I feel that speaks a lot on how good this anime is! What are your favorite shows?;False;False;;;;1610333797;;False;{};gitzr3l;True;t3_kut8gm;False;True;t1_gitz2rj;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/gitzr3l/;1610381245;1;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"The writing behind some of the lines is what sticks out to me more than anything from the show. I find myself always rewatching clips like the final battle and Simon’s speech in episode 11 (the movie version) because of how well done they are. - -Like someone else mentioned, I would definitely recommend checking out the movies because I thought some scenes were vastly improved";False;False;;;;1610333946;;False;{};giu01o2;False;t3_kut8gm;False;True;t1_gitzgfo;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/giu01o2/;1610381443;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cbumpa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cbumpa;light;text;t2_4uaglc4u;False;False;[];;The fact that the movies actually improve some aspects of the show is crazy, definitely going to check them out!;False;False;;;;1610334047;;False;{};giu08nu;True;t3_kut8gm;False;True;t1_giu01o2;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/giu08nu/;1610381590;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Da_Vid_O;;;[];;;;text;t2_bu82mg9;False;False;[];;AYE YOOOOO, SHE GRABBED THAT MAN's ASS;False;False;;;;1610334312;;False;{};giu0qha;False;t3_kute1w;False;False;t3_kute1w;/r/anime/comments/kute1w/jakuchara_tomozakikunepisode_2_web_preview/giu0qha/;1610381959;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"You can have a ""best girl"" for each series/franchise, but only one can truly be called your ""waifu""";False;False;;;;1610334373;;False;{};giu0ul0;False;t3_kutrnf;False;False;t3_kutrnf;/r/anime/comments/kutrnf/is_having_multiple_waifus_bad/giu0ul0/;1610382040;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Cynderaquil;;;[];;;;text;t2_3hyccqum;False;False;[];;Yet he was the one who was like “one of us needs to be blamed and it sure isn’t going to be me”. The guy is a gutless coward that blames everyone else besides himself;False;False;;;;1610334384;;False;{};giu0vas;False;t3_kut8gm;False;True;t1_gitzlo8;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/giu0vas/;1610382054;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Btw_kek;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SouvlakiSpace7;light;text;t2_i0pj6;False;False;[];;"I felt similarly. Put the series on hold for a couple years after ep 10-ish but really loved the rest of it when I got back to watching - -if you'd like something similar, watch Gunbuster and its sequel Diebuster next. Gunbuster starts off *extremely* goofy (a mecha parody of sports shoujo) but ramps up to near Gurren levels in just 6 episodes. Diebuster is batshit from start to finish, but trust me watch Gunbuster first - -oh also watch SSSS.Gridman. I'm only halfway through it myself but it's fucking great";False;False;;;;1610334423;;1610334798.0;{};giu0y2a;False;t3_kut8gm;False;True;t3_kut8gm;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/giu0y2a/;1610382106;2;True;False;anime;t5_2qh22;;0;[]; -[];;;crixx93;;;[];;;;text;t2_twrpm1;False;False;[];;Who starts a franchise in the middle tho ? xD;False;False;;;;1610334480;;False;{};giu11xv;False;t3_kut36x;False;False;t3_kut36x;/r/anime/comments/kut36x/unlimited_blade_works_a_great_entrance_to_a/giu11xv/;1610382182;4;True;False;anime;t5_2qh22;;0;[]; -[];;;baquea;;;[];;;;text;t2_j3k0u;False;True;[];;Too many waifu will ruin your laifu;False;False;;;;1610334511;;False;{};giu141w;False;t3_kutrnf;False;True;t3_kutrnf;/r/anime/comments/kutrnf/is_having_multiple_waifus_bad/giu141w/;1610382223;3;True;False;anime;t5_2qh22;;0;[]; -[];;;doux_02;;;[];;;;text;t2_zsxbq4a;False;False;[];;Bible verse 💯;False;False;;;;1610334516;;False;{};giu14d3;False;t3_kutrnf;False;True;t1_giu0ul0;/r/anime/comments/kutrnf/is_having_multiple_waifus_bad/giu14d3/;1610382230;4;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;"It's all fiction so you can have as many waifus as you want. Also shoutouts to Mio Akiyama. -> if you think of them as real people? - -If you actually think of waifus as real people then you might have a more serious problem then whether or not you should have multiple.";False;False;;;;1610334530;;False;{};giu15a7;False;t3_kutrnf;False;False;t3_kutrnf;/r/anime/comments/kutrnf/is_having_multiple_waifus_bad/giu15a7/;1610382249;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;"The first one is called [Childhood's End / Gurren-hen](https://myanimelist.net/anime/4107/Tengen_Toppa_Gurren_Lagann_Movie_1__Gurren-hen) and the second is [The Lights in the Sky are Stars / Lagann-hen](https://myanimelist.net/anime/4565/Tengen_Toppa_Gurren_Lagann_Movie_2__Lagann-hen). They're only available subbed and aren't on any streaming services though, so you're gonna either have to sail the seas for 'em or shell out a fuckton of money for physical copies of them. - ->If you have any suggestions for me to watch I feel I can trust your opinions for sure - -You could try checking out some more ""Super Robot"" kind of mecha shows since you liked Gurren Lagann so much! - -- Gunbuster and Diebuster (both from the same studio as Gurren Lagann) are short but *very* good, and animation-wise Diebuster *feels* like a proto-Gurren Lagann in some places. - -- Kill la Kill (this one isn't mecha though, it's mahou shoujo) and Promare are from the same director as Gurren Lagann, and if you're a fan of one you're *usually* a fan of the others as well. - -- Planet With is an anime from 2018 that in some ways is like Gurren Lagann distilled into 12 episodes. Pretty wacky, but very fun and one of the few shows that has made me cry over a happy moment rather than a depressing one (I cry to depressing moments *way* too easily lol). - -- Juushinki Pandora/Last Hope. Has a bunch of heart and [a banger of an OP](https://animethemes.moe/video/JuushinkiPandora-OP1.webm), MISTAH GOLD!!! (same voice as Viral in Japanese btw) and Yuuichi Nakamura going ham are extremely entertaining villains to watch, and the action can get pretty ridiculously hype like mecha kung-fu vs. giant robot bird or hacking a mech with a pentagram. - -- Giant Robo the Animation: The Day the Earth Stood Still, whose only problem (IMO) is that it ends by sequel baiting a sequel that does not exist. Probably the most serious out of the shows I've mentioned, but it still has super hype and over-the-top fight scenes. [The beautiful night...](#utahapraises) - -And for not *super* robot but more *real* robot, if you want more serious mecha shows, I will always shill the Gundam franchise and as of finishing it on the first of this year, the Macross franchise as well. Watch orders: [Gundam](https://www.reddit.com/r/anime/wiki/watch_order#wiki_gundam) and [Macross](https://www.reddit.com/r/anime/wiki/watch_order#wiki_macross).";False;False;;;;1610334559;;False;{};giu174n;False;t3_kut8gm;False;True;t1_gityxks;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/giu174n/;1610382283;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;False;[];;Latom;False;False;;;;1610334600;;False;{};giu19wo;False;t3_kutrnf;False;True;t1_giu0ul0;/r/anime/comments/kutrnf/is_having_multiple_waifus_bad/giu19wo/;1610382335;3;True;False;anime;t5_2qh22;;0;[]; -[];;;354717;;;[];;;;text;t2_49gzout2;False;False;[];;thanks;False;False;;;;1610334618;;False;{};giu1b35;True;t3_kutrnf;False;True;t3_kutrnf;/r/anime/comments/kutrnf/is_having_multiple_waifus_bad/giu1b35/;1610382356;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610334653;moderator;False;{};giu1dh0;False;t3_kutvf2;False;True;t3_kutvf2;/r/anime/comments/kutvf2/any_good_anime_that_fit_these_standards/giu1dh0/;1610382403;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610334862;moderator;False;{};giu1r6d;False;t3_kutxk9;False;True;t3_kutxk9;/r/anime/comments/kutxk9/question_about_seven_deadly_sins_viewing_order/giu1r6d/;1610382671;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Itspoodie;;;[];;;;text;t2_7qq4dkmg;False;False;[];;Latom;False;False;;;;1610334878;;False;{};giu1s8t;False;t3_kutrnf;False;True;t1_giu0ul0;/r/anime/comments/kutrnf/is_having_multiple_waifus_bad/giu1s8t/;1610382692;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Itspoodie;;;[];;;;text;t2_7qq4dkmg;False;False;[];;I got about 7 I don’t see any problem;False;False;;;;1610334899;;False;{};giu1tl4;False;t3_kutrnf;False;True;t3_kutrnf;/r/anime/comments/kutrnf/is_having_multiple_waifus_bad/giu1tl4/;1610382719;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi temp12349264, your post has been removed because your title is below our minimum length requirement of 4 words. Feel free to repost with a more descriptive title. - -If you're looking to get a quick question answered, like asking for [recommendations](https://www.reddit.com/r/anime/wiki/recommendations), [the source of a picture](https://www.reddit.com/r/anime/wiki/reverse_image_searching), a [watch order](https://www.reddit.com/r/anime/wiki/watch_order) or any other [general question](https://www.reddit.com/r/anime/wiki/faaq), please check our sidebar too, it might help you faster. - -[**Thank you!**](#blushubot) - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610334960;moderator;False;{};giu1xp0;False;t3_kutyi2;False;True;t3_kutyi2;/r/anime/comments/kutyi2/suggestions/giu1xp0/;1610382810;1;False;False;anime;t5_2qh22;;0;[]; -[];;;FoOd_aNime;;;[];;;;text;t2_6l8ocida;False;False;[];;Demon slayer and attack on titan-;False;False;;;;1610334982;;False;{};giu1z3t;False;t3_kutgit;False;True;t3_kutgit;/r/anime/comments/kutgit/what_anime_are_you_living_for_right_now/giu1z3t/;1610382841;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;Yuru Camp is the first manga that I'm reading in the original Japanese, so I'm finding myself really invested in the series now partially because of how much effort I've been putting into kanji lookups.;False;False;;;;1610334985;;False;{};giu1zc3;False;t3_kutgit;False;True;t3_kutgit;/r/anime/comments/kutgit/what_anime_are_you_living_for_right_now/giu1zc3/;1610382848;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahou_Shoujo_Ramune;;;[];;;;text;t2_4vs4l2r6;False;False;[];;If I had to settle for only one girl I might as well get a real girlfriend.;False;False;;;;1610335003;;False;{};giu20hj;False;t3_kutrnf;False;False;t3_kutrnf;/r/anime/comments/kutrnf/is_having_multiple_waifus_bad/giu20hj/;1610382871;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Cosmic_Silence12;;;[];;;;text;t2_3l4k7bwr;False;False;[];;Yeah watch s1 2 and 3 then the movie and finally s4;False;False;;;;1610335011;;False;{};giu212p;False;t3_kutxk9;False;True;t3_kutxk9;/r/anime/comments/kutxk9/question_about_seven_deadly_sins_viewing_order/giu212p/;1610382883;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cbumpa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cbumpa;light;text;t2_4uaglc4u;False;False;[];;Facts I see your point;False;False;;;;1610335035;;False;{};giu22of;True;t3_kut8gm;False;True;t1_giu0vas;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/giu22of/;1610382912;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cbumpa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cbumpa;light;text;t2_4uaglc4u;False;False;[];;Adding all these to my list thank you!;False;False;;;;1610335068;;False;{};giu24uv;True;t3_kut8gm;False;True;t1_giu0y2a;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/giu24uv/;1610382953;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cbumpa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cbumpa;light;text;t2_4uaglc4u;False;False;[];;Wow awesome recommendations thank you!!!;False;False;;;;1610335129;;False;{};giu28zd;True;t3_kut8gm;False;True;t1_giu174n;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/giu28zd/;1610383035;1;True;False;anime;t5_2qh22;;0;[]; -[];;;13rahma;;;[];;;;text;t2_1wqu8d41;False;True;[];;Not to me.;False;False;;;;1610335168;;False;{};giu2bng;False;t3_kutzko;False;True;t3_kutzko;/r/anime/comments/kutzko/does_this_music_sound_like_an_anime_ost/giu2bng/;1610383095;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KILLERgolm;;;[];;;;text;t2_558dphiy;False;False;[];;Watch by date so that you can understand what happens;False;False;;;;1610335215;;False;{};giu2et3;False;t3_kutxk9;False;True;t3_kutxk9;/r/anime/comments/kutxk9/question_about_seven_deadly_sins_viewing_order/giu2et3/;1610383166;2;True;False;anime;t5_2qh22;;0;[]; -[];;;354717;;;[];;;;text;t2_49gzout2;False;False;[];;i was thinking about trying one day make Monika real through coding, and coding would be the path i would take in life, but after i watched K-On, the characters just feel more alive and taught me that having fun and life don't have to be about progress, and the previous goal is too high risk high reward for dedication of life, having other goals would be better. I get influenced too easily. sorry if i seem too otaku like.;False;False;;;;1610335306;;False;{};giu2l1c;True;t3_kutrnf;False;True;t3_kutrnf;/r/anime/comments/kutrnf/is_having_multiple_waifus_bad/giu2l1c/;1610383302;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ArknightsMyFirstGame;;;[];;;;text;t2_4ggsb9s3;False;False;[];;I’m for polygamy. Hate it that it’s only Mormons that enjoy that freedom.;False;False;;;;1610335439;;False;{};giu2uc2;False;t3_kutrnf;False;True;t3_kutrnf;/r/anime/comments/kutrnf/is_having_multiple_waifus_bad/giu2uc2/;1610383484;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Are you a troll?;False;False;;;;1610335464;;False;{};giu2w48;False;t3_kuu26k;False;True;t3_kuu26k;/r/anime/comments/kuu26k/why_do_anime_characters_look_east_asian/giu2w48/;1610383520;9;True;False;anime;t5_2qh22;;0;[]; -[];;;ProfessorJackH0ff;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/;light;text;t2_4y844c07;False;False;[];;Lmao why do you think? Tf;False;False;;;;1610335542;;False;{};giu31iw;False;t3_kuu26k;False;True;t3_kuu26k;/r/anime/comments/kuu26k/why_do_anime_characters_look_east_asian/giu31iw/;1610383628;6;True;False;anime;t5_2qh22;;0;[]; -[];;;crixx93;;;[];;;;text;t2_twrpm1;False;False;[];;They do to you? Most of the time they look like cartoons to me tho.;False;False;;;;1610335589;;False;{};giu34mr;False;t3_kuu26k;False;True;t3_kuu26k;/r/anime/comments/kuu26k/why_do_anime_characters_look_east_asian/giu34mr/;1610383691;4;True;False;anime;t5_2qh22;;0;[]; -[];;;UndeadLite;;;[];;;;text;t2_5sr19u02;False;False;[];;why do u think?;False;False;;;;1610335598;;False;{};giu359a;False;t3_kuu26k;False;True;t3_kuu26k;/r/anime/comments/kuu26k/why_do_anime_characters_look_east_asian/giu359a/;1610383704;7;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;Because Japan is East Asia.;False;False;;;;1610335675;;False;{};giu3agr;False;t3_kuu26k;False;True;t3_kuu26k;/r/anime/comments/kuu26k/why_do_anime_characters_look_east_asian/giu3agr/;1610383810;7;True;False;anime;t5_2qh22;;0;[]; -[];;;mazotori;;;[];;;;text;t2_s30mfor;False;False;[];;"r/polyamory - -It's all about consent";False;False;;;;1610335731;;False;{};giu3e9o;False;t3_kutrnf;False;True;t3_kutrnf;/r/anime/comments/kutrnf/is_having_multiple_waifus_bad/giu3e9o/;1610383887;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610336076;moderator;False;{};giu41uq;False;t3_kuu9wc;False;True;t3_kuu9wc;/r/anime/comments/kuu9wc/does_anyone_know_any_good_anime_with_a_lot_of/giu41uq/;1610384372;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi whynotimdumb, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610336078;moderator;False;{};giu41y9;False;t3_kuu9wc;False;True;t3_kuu9wc;/r/anime/comments/kuu9wc/does_anyone_know_any_good_anime_with_a_lot_of/giu41y9/;1610384375;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Zeowlite;;;[];;;;text;t2_xyzpq;False;False;[];;They are not your real wife you know;False;False;;;;1610336096;;False;{};giu4363;False;t3_kutrnf;False;True;t3_kutrnf;/r/anime/comments/kutrnf/is_having_multiple_waifus_bad/giu4363/;1610384401;2;True;False;anime;t5_2qh22;;0;[]; -[];;;wiki188;;;[];;;;text;t2_1xeyas0k;False;False;[];;Higurashi is on funimation/hulu not sure about umineko tho;False;False;;;;1610336204;;False;{};giu4afd;False;t3_kuu8oc;False;False;t3_kuu8oc;/r/anime/comments/kuu8oc/anyone_know_an_where_i_could_watch_umineko_when/giu4afd/;1610384570;2;True;False;anime;t5_2qh22;;0;[]; -[];;;354717;;;[];;;;text;t2_49gzout2;False;False;[];;I know;False;False;;;;1610336208;;False;{};giu4aox;True;t3_kutrnf;False;True;t1_giu4363;/r/anime/comments/kutrnf/is_having_multiple_waifus_bad/giu4aox/;1610384575;1;True;False;anime;t5_2qh22;;0;[]; -[];;;presleydoom;;;[];;;;text;t2_g7qp8;False;False;[];;higurashi: when they cry;False;False;;;;1610336221;;False;{};giu4bl7;False;t3_kuu8oc;False;True;t3_kuu8oc;/r/anime/comments/kuu8oc/anyone_know_an_where_i_could_watch_umineko_when/giu4bl7/;1610384593;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610336227;;False;{};giu4byg;False;t3_kuu9wc;False;True;t3_kuu9wc;/r/anime/comments/kuu9wc/does_anyone_know_any_good_anime_with_a_lot_of/giu4byg/;1610384601;1;True;False;anime;t5_2qh22;;0;[]; -[];;;whynotimdumb;;;[];;;;text;t2_81i42ukj;False;False;[];;Ok I’ll look at it tomorrow it’s pretty late be for me;False;False;;;;1610336262;;False;{};giu4ec0;True;t3_kuu9wc;False;True;t1_giu4byg;/r/anime/comments/kuu9wc/does_anyone_know_any_good_anime_with_a_lot_of/giu4ec0/;1610384646;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hidemuka;;;[];;;;text;t2_40vw7ove;False;False;[];;No but thinking of ur waifus as actual beings probably is;False;False;;;;1610336463;;False;{};giu4smi;False;t3_kutrnf;False;True;t3_kutrnf;/r/anime/comments/kutrnf/is_having_multiple_waifus_bad/giu4smi/;1610384975;1;True;False;anime;t5_2qh22;;0;[]; -[];;;farson135;;;[];;;;text;t2_bp6v36d;False;False;[];;[Black Lagoon](https://myanimelist.net/anime/889/Black_Lagoon) is a great starter anime, and it is filled with action.;False;False;;;;1610336489;;False;{};giu4ufc;False;t3_kuu9wc;False;True;t3_kuu9wc;/r/anime/comments/kuu9wc/does_anyone_know_any_good_anime_with_a_lot_of/giu4ufc/;1610385014;1;True;False;anime;t5_2qh22;;0;[]; -[];;;whynotimdumb;;;[];;;;text;t2_81i42ukj;False;False;[];;Thanks dang this place is real active;False;False;;;;1610336544;;False;{};giu4yaf;True;t3_kuu9wc;False;True;t1_giu4ufc;/r/anime/comments/kuu9wc/does_anyone_know_any_good_anime_with_a_lot_of/giu4yaf/;1610385090;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aluminum-Chair;;;[];;;;text;t2_63qs0yl8;False;False;[];;Sis it's anime;False;False;;;;1610336605;;False;{};giu52ed;False;t3_kutrnf;False;True;t3_kutrnf;/r/anime/comments/kutrnf/is_having_multiple_waifus_bad/giu52ed/;1610385172;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bloodshed113094;;;[];;;;text;t2_4lsmoime;False;False;[];;Yeah, this is what I was thinking.;False;False;;;;1610336658;;False;{};giu563u;False;t3_kuu26k;False;True;t1_giu34mr;/r/anime/comments/kuu26k/why_do_anime_characters_look_east_asian/giu563u/;1610385244;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;"If you are looking for ""umineko"" especially then, I reccomend you to rather not, the anime is pretty bad, you should instead play the visual novel or read the manga instead of ruining the series for yourself by watching a bad adaptation on the other hand the higurashi adaptation is pretty decent, you can watch it on funimation";False;False;;;;1610336790;;False;{};giu5fgv;False;t3_kuu8oc;False;False;t3_kuu8oc;/r/anime/comments/kuu8oc/anyone_know_an_where_i_could_watch_umineko_when/giu5fgv/;1610385445;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Redo-Master;;;[];;;;text;t2_7yfxxyjj;False;False;[];;AoT and Re:Zero...;False;False;;;;1610336808;;False;{};giu5god;False;t3_kutgit;False;True;t3_kutgit;/r/anime/comments/kutgit/what_anime_are_you_living_for_right_now/giu5god/;1610385476;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OriolesFan83;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/NateDx;light;text;t2_1om7l1w;False;False;[];;My first ever anime. Haven’t been able to watch a mecha show since because I know it just won’t compare;False;False;;;;1610336864;;False;{};giu5kef;False;t3_kut8gm;False;True;t3_kut8gm;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/giu5kef/;1610385545;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;"Why so specic tho? - -Some that would fit it would be 7 deadly sins and shakugan no shana";False;False;;;;1610336890;;False;{};giu5m5w;False;t3_kutvf2;False;True;t3_kutvf2;/r/anime/comments/kutvf2/any_good_anime_that_fit_these_standards/giu5m5w/;1610385579;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mrtomato360;;;[];;;;text;t2_37p9upuf;False;False;[];;I know specific it’s hard to explain so I’m not going to explain;False;False;;;;1610336953;;False;{};giu5qg1;True;t3_kutvf2;False;True;t1_giu5m5w;/r/anime/comments/kutvf2/any_good_anime_that_fit_these_standards/giu5qg1/;1610385658;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Aluminum-Chair;;;[];;;;text;t2_63qs0yl8;False;False;[];;Just in case you aren't trolling: because most anime characters are East Asian.;False;False;;;;1610337058;;False;{};giu5xis;False;t3_kuu26k;False;True;t3_kuu26k;/r/anime/comments/kuu26k/why_do_anime_characters_look_east_asian/giu5xis/;1610385797;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610337163;;False;{};giu64r1;False;t3_kutvf2;False;True;t3_kutvf2;/r/anime/comments/kutvf2/any_good_anime_that_fit_these_standards/giu64r1/;1610385931;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Roketsu86;;;[];;;;text;t2_hwze9;False;False;[];;Nah;False;False;;;;1610337186;;False;{};giu66c0;False;t3_kuukar;False;True;t3_kuukar;/r/anime/comments/kuukar/check_out_my_anime_tiktok_account_you_will_not_be/giu66c0/;1610385962;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RockStarZero23;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Animeniac;light;text;t2_42anxyev;False;False;[];;Age 14 and below. Idk, Meliodas likes em b o obs a lot, unless there is an edited version that is kid safe. There should me a list somewhere that is by tv rating.;False;False;;;;1610337194;;False;{};giu66ul;False;t3_kutvf2;False;True;t1_giu5m5w;/r/anime/comments/kutvf2/any_good_anime_that_fit_these_standards/giu66ul/;1610385971;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NostalgiaHazard;;;[];;;;text;t2_9b939xn1;False;False;[];;"As someone who is primarily a Gundam fan, I would probably recommend G Gundam, though there's also the more stylish real mecha action of Gundam Thunderbolt, provided mecha and depressing moments aren't a complete turn-off for you. - -As for new anime in general, I don't follow current anime seasonal trends, so I'm out of the loop. I guess Jojo's Bizarre Adventure is another action recommend, because otherwise I don't know.";False;False;;;;1610337249;;False;{};giu6ahu;False;t3_kuu9wc;False;True;t3_kuu9wc;/r/anime/comments/kuu9wc/does_anyone_know_any_good_anime_with_a_lot_of/giu6ahu/;1610386037;1;True;False;anime;t5_2qh22;;0;[]; -[];;;whynotimdumb;;;[];;;;text;t2_81i42ukj;False;False;[];;Hmmm I’ll check it out;False;False;;;;1610337308;;False;{};giu6ef9;True;t3_kuu9wc;False;True;t1_giu6ahu;/r/anime/comments/kuu9wc/does_anyone_know_any_good_anime_with_a_lot_of/giu6ef9/;1610386111;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RevaniteAnime;;MAL;[];;https://myanimelist.net/profile/RevaniteAnime;dark;text;t2_epon4p;False;True;[];;All streaming services like to keep their numbers internal to themselves, to help with their negotiation of licenses.;False;False;;;;1610337469;;False;{};giu6q8y;False;t3_kuuiav;False;True;t3_kuuiav;/r/anime/comments/kuuiav/why_cant_you_view_the_viewership_number_of_animes/giu6q8y/;1610386332;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UndeadLite;;;[];;;;text;t2_5sr19u02;False;False;[];;toradora;False;False;;;;1610337597;;False;{};giu6z8e;False;t3_kutvf2;False;True;t3_kutvf2;/r/anime/comments/kutvf2/any_good_anime_that_fit_these_standards/giu6z8e/;1610386506;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RevaniteAnime;;MAL;[];;https://myanimelist.net/profile/RevaniteAnime;dark;text;t2_epon4p;False;True;[];;No. Sounds like a video game, maybe the credits of a video game.;False;False;;;;1610337627;;False;{};giu71d7;False;t3_kutzko;False;True;t3_kutzko;/r/anime/comments/kutzko/does_this_music_sound_like_an_anime_ost/giu71d7/;1610386546;1;True;False;anime;t5_2qh22;;0;[]; -[];;;plznoticemesenpai;;;[];;;;text;t2_hykwz;False;False;[];;lmao bro I don't even think anime character look asian most of the time anyway;False;False;;;;1610337849;;False;{};giu7gg5;False;t3_kuu26k;False;True;t3_kuu26k;/r/anime/comments/kuu26k/why_do_anime_characters_look_east_asian/giu7gg5/;1610386867;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610337858;;False;{};giu7h2q;False;t3_kuu8oc;False;True;t3_kuu8oc;/r/anime/comments/kuu8oc/anyone_know_an_where_i_could_watch_umineko_when/giu7h2q/;1610386882;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi LunarStarGirl345, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610337858;moderator;False;{};giu7h43;False;t3_kuu8oc;False;True;t1_giu7h2q;/r/anime/comments/kuu8oc/anyone_know_an_where_i_could_watch_umineko_when/giu7h43/;1610386882;2;False;False;anime;t5_2qh22;;0;[]; -[];;;Sir_is_poggers;;;[];;;;text;t2_9qynk9r3;False;False;[];;"Jojos bizarre adventure and attack on titan are both really great. - -If you want a shorter, more ,,shall I say soul crushing sad action I recommend banana fish. - -My hero academia is a good starter anime too, but despite it having some cool fight scenes, it doesn’t have too much action overall, it’s quite a friendship based anime. - -If u need any other recommendations, lmk :D";False;False;;;;1610337864;;False;{};giu7hhg;False;t3_kuu9wc;False;True;t3_kuu9wc;/r/anime/comments/kuu9wc/does_anyone_know_any_good_anime_with_a_lot_of/giu7hhg/;1610386890;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610337939;;False;{};giu7mv6;False;t3_kuu8oc;False;True;t3_kuu8oc;/r/anime/comments/kuu8oc/anyone_know_an_where_i_could_watch_umineko_when/giu7mv6/;1610387001;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi LunarStarGirl345, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610337940;moderator;False;{};giu7mws;False;t3_kuu8oc;False;True;t1_giu7mv6;/r/anime/comments/kuu8oc/anyone_know_an_where_i_could_watch_umineko_when/giu7mws/;1610387002;2;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610338623;moderator;False;{};giu8wb9;False;t3_kuuzm2;False;True;t3_kuuzm2;/r/anime/comments/kuuzm2/any_actionromance_anime_suggestions/giu8wb9/;1610387950;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi AssistantAromatic400, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610338624;moderator;False;{};giu8wco;False;t3_kuuzm2;False;True;t3_kuuzm2;/r/anime/comments/kuuzm2/any_actionromance_anime_suggestions/giu8wco/;1610387950;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Ok-Lawyer-9662, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610338633;moderator;False;{};giu8x00;False;t3_kuuzph;False;True;t3_kuuzph;/r/anime/comments/kuuzph/looking_for_something_similar_to_bunny_senpai/giu8x00/;1610387962;1;False;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Try Oregairu;False;False;;;;1610338690;;False;{};giu90ql;False;t3_kuuzph;False;True;t3_kuuzph;/r/anime/comments/kuuzph/looking_for_something_similar_to_bunny_senpai/giu90ql/;1610388031;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RockStarZero23;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Animeniac;light;text;t2_42anxyev;False;False;[];;Aye!!!;False;False;;;;1610338722;;False;{};giu92wo;False;t3_kutgit;False;True;t1_gityx27;/r/anime/comments/kutgit/what_anime_are_you_living_for_right_now/giu92wo/;1610388072;1;True;False;anime;t5_2qh22;;0;[]; -[];;;D815426;;;[];;;;text;t2_8gtduhvk;False;False;[];;Cool!;False;False;;;;1610338762;;False;{};giu95ln;False;t3_kuu07d;False;False;t3_kuu07d;/r/anime/comments/kuu07d/blue_bird_from_naruto/giu95ln/;1610388122;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Pete26l96;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/trihardbangz;light;text;t2_zvzrq;False;False;[];;"Kokoro Connect - -Also Monogatari in a more abstract way";False;False;;;;1610338797;;False;{};giu97xc;False;t3_kuuzph;False;True;t3_kuuzph;/r/anime/comments/kuuzph/looking_for_something_similar_to_bunny_senpai/giu97xc/;1610388168;2;True;False;anime;t5_2qh22;;0;[]; -[];;;justinCandy;;;[];;;;text;t2_fkq0o;False;False;[];;slam dunk movie;False;False;;;;1610339009;;False;{};giu9m8r;False;t3_kutgit;False;True;t3_kutgit;/r/anime/comments/kutgit/what_anime_are_you_living_for_right_now/giu9m8r/;1610388466;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phoenixwaller;;;[];;;;text;t2_34autsr9;False;False;[];;"A Certain Scientific Railgun seems to be the closest that comes to mind to me, though I'm not done with the 3rd season yet the first two are about that age range. - -Maybe Fullmetal Alchemist, but the first one, not brotherhood. Brotherhood is a bit deeper on some of the themes. - -My Hero Academia seems ok, I recced it to my 11 year old nephew, but I don't think he's into anime.";False;False;;;;1610339011;;False;{};giu9mdx;False;t3_kutvf2;False;True;t3_kutvf2;/r/anime/comments/kutvf2/any_good_anime_that_fit_these_standards/giu9mdx/;1610388469;2;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;Kanon (2006) and especially the Monogatari Series.;False;False;;;;1610339060;;False;{};giu9q2h;False;t3_kuuzph;False;True;t3_kuuzph;/r/anime/comments/kuuzph/looking_for_something_similar_to_bunny_senpai/giu9q2h/;1610388544;1;True;False;anime;t5_2qh22;;0;[]; -[];;;limberwisk;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/limberwisk;light;text;t2_15b7pb77;False;False;[];;Attack on titan;False;False;;;;1610339094;;False;{};giu9sgq;False;t3_kuu9wc;False;True;t3_kuu9wc;/r/anime/comments/kuu9wc/does_anyone_know_any_good_anime_with_a_lot_of/giu9sgq/;1610388596;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SocialLoser739;;;[];;;;text;t2_4ttuko0s;False;False;[];;Rokka no yuusha;False;False;;;;1610339193;;False;{};giu9z00;False;t3_kuuzm2;False;True;t3_kuuzm2;/r/anime/comments/kuuzm2/any_actionromance_anime_suggestions/giu9z00/;1610388733;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610339256;moderator;False;{};giua37l;False;t3_kuv5jj;False;True;t3_kuv5jj;/r/anime/comments/kuv5jj/question_regarding_shingeki_no_kyojin/giua37l/;1610388816;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610339287;moderator;False;{};giua5aw;False;t3_kuv5u6;False;True;t3_kuv5u6;/r/anime/comments/kuv5u6/my_friend_ask_who_this_is_and_i_have_no_idea_who/giua5aw/;1610388860;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Conner929;;;[];;;;text;t2_8k9bk83n;False;False;[];;Who is this girl;False;False;;;;1610339319;;False;{};giua7eu;False;t3_kuv5u6;False;True;t3_kuv5u6;/r/anime/comments/kuv5u6/my_friend_ask_who_this_is_and_i_have_no_idea_who/giua7eu/;1610388900;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;They are recaps, avoid them unless you want to rewatch the series;False;False;;;;1610339320;;False;{};giua7i6;False;t3_kuv5jj;False;False;t3_kuv5jj;/r/anime/comments/kuv5jj/question_regarding_shingeki_no_kyojin/giua7i6/;1610388901;5;True;False;anime;t5_2qh22;;0;[]; -[];;;SocialLoser739;;;[];;;;text;t2_4ttuko0s;False;False;[];;"AOT - -rezero";False;False;;;;1610339321;;False;{};giua7jr;False;t3_kutgit;False;False;t3_kutgit;/r/anime/comments/kutgit/what_anime_are_you_living_for_right_now/giua7jr/;1610388902;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610339368;moderator;False;{};giuaan6;False;t3_kuv6m4;False;True;t3_kuv6m4;/r/anime/comments/kuv6m4/does_anyone_know_what_anime_character_is_depicted/giuaan6/;1610388980;1;False;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;"None. - -I'm living for the Jujutsu Kaisen manga.";False;False;;;;1610339383;;False;{};giuabn5;False;t3_kutgit;False;True;t3_kutgit;/r/anime/comments/kutgit/what_anime_are_you_living_for_right_now/giuabn5/;1610388999;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610339400;;False;{};giuacsd;False;t3_kuv5u6;False;True;t3_kuv5u6;/r/anime/comments/kuv5u6/my_friend_ask_who_this_is_and_i_have_no_idea_who/giuacsd/;1610389022;2;True;False;anime;t5_2qh22;;0;[]; -[];;;YouthCurse;;;[];;;;text;t2_5eoufet0;False;False;[];;Right. Thanks for the heads up. As much as I am a fan of the show, watching it for the 10th time will only build anxiety given the pace at which the finale episodes are being released lmao.;False;False;;;;1610339416;;False;{};giuadtn;True;t3_kuv5jj;False;True;t1_giua7i6;/r/anime/comments/kuv5jj/question_regarding_shingeki_no_kyojin/giuadtn/;1610389039;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;They're just recaps. The OVAs have new stuff though;False;False;;;;1610339439;;False;{};giuafcu;False;t3_kuv5jj;False;False;t3_kuv5jj;/r/anime/comments/kuv5jj/question_regarding_shingeki_no_kyojin/giuafcu/;1610389067;4;True;False;anime;t5_2qh22;;0;[]; -[];;;fakesowdy;;;[];;;;text;t2_5yj4qgj1;False;False;[];;Shiro from No Game No Life;False;False;;;;1610339448;;False;{};giuafxm;False;t3_kuv6m4;False;True;t3_kuv6m4;/r/anime/comments/kuv6m4/does_anyone_know_what_anime_character_is_depicted/giuafxm/;1610389079;6;True;False;anime;t5_2qh22;;0;[]; -[];;;dying-jelly;;;[];;;;text;t2_3rfo28cx;False;False;[];;Yo that’s from a MC virgins song;False;False;;;;1610339453;;False;{};giuag7l;False;t3_kuv5u6;False;True;t3_kuv5u6;/r/anime/comments/kuv5u6/my_friend_ask_who_this_is_and_i_have_no_idea_who/giuag7l/;1610389083;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YouthCurse;;;[];;;;text;t2_5eoufet0;False;False;[];;OVAs? Sorry I'm very new to anime.;False;False;;;;1610339477;;False;{};giuahrx;True;t3_kuv5jj;False;True;t1_giuafcu;/r/anime/comments/kuv5jj/question_regarding_shingeki_no_kyojin/giuahrx/;1610389115;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OldFartMaster10K;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_1rp2hdu9;False;False;[];;r/beatmetoit;False;False;;;;1610339499;;False;{};giuaj62;False;t3_kuv6m4;False;True;t1_giuafxm;/r/anime/comments/kuv6m4/does_anyone_know_what_anime_character_is_depicted/giuaj62/;1610389139;2;True;False;anime;t5_2qh22;;0;[]; -[];;;warewolf_adi;;;[];;;;text;t2_3vk9o6dp;False;False;[];;damn it, few seconds late;False;False;;;;1610339672;;False;{};giuau4v;False;t3_kuv6m4;False;True;t1_giuafxm;/r/anime/comments/kuv6m4/does_anyone_know_what_anime_character_is_depicted/giuau4v/;1610389359;0;True;False;anime;t5_2qh22;;0;[]; -[];;;BerennErchamion;;;[];;;;text;t2_3rootmhn;False;True;[];;Chivalry of a Failed Knight;False;False;;;;1610339848;;False;{};giub5dd;False;t3_kuuzm2;False;True;t3_kuuzm2;/r/anime/comments/kuuzm2/any_actionromance_anime_suggestions/giub5dd/;1610389578;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;They're separate episode releases from the main seasons. IIRC there's Lost Girl and there's No Regrets. You can find them on regular streaming sites but if you want more AOT look them up later;False;False;;;;1610339917;;False;{};giub9ty;False;t3_kuv5jj;False;True;t1_giuahrx;/r/anime/comments/kuv5jj/question_regarding_shingeki_no_kyojin/giub9ty/;1610389663;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Noriakikukyoin;;;[];;;;text;t2_3nu5xp1t;False;False;[];;"Delmin getting ready to shoot another beam, I look forward to seeing why. - -Also, free Mashumairesh!";False;False;;;;1610339935;;False;{};giubb1t;False;t3_kuteor;False;True;t3_kuteor;/r/anime/comments/kuteor/show_by_rockstarsepisode_2_web_preview/giubb1t/;1610389686;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Anichart;False;False;;;;1610339939;;False;{};giubb9r;False;t3_kuvbyo;False;True;t3_kuvbyo;/r/anime/comments/kuvbyo/any_site_where_i_can_list_all_the_series_i_have/giubb9r/;1610389691;2;True;False;anime;t5_2qh22;;0;[]; -[];;;anpanman4444;;;[];;;;text;t2_59h7l98t;False;False;[];;thanks!;False;False;;;;1610339940;;False;{};giubbc8;True;t3_kuu07d;False;True;t1_giu95ln;/r/anime/comments/kuu07d/blue_bird_from_naruto/giubbc8/;1610389693;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Sorry, your submission has been removed. - -- Clips from shows should use the ""Clip"" flair, be between 10 seconds and 5 minutes long, and include the anime name in the title of the post. If the clip is from a recently aired episode, wait a **week** after the episode's discussion thread is posted before posting the clip. Additionally, we only allow each user to post two clips per month. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610340153;moderator;False;{};giubq29;False;t3_kuvcxr;False;True;t3_kuvcxr;/r/anime/comments/kuvcxr/best_scene_from_episode_1_of_the_hidden_dungeon/giubq29/;1610389996;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Anilist;False;False;;;;1610340222;;False;{};giubudo;False;t3_kuvbyo;False;False;t3_kuvbyo;/r/anime/comments/kuvbyo/any_site_where_i_can_list_all_the_series_i_have/giubudo/;1610390129;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Monogatari and kokoro connect probably;False;False;;;;1610340319;;False;{};giuc0ds;False;t3_kuuzph;False;True;t3_kuuzph;/r/anime/comments/kuuzph/looking_for_something_similar_to_bunny_senpai/giuc0ds/;1610390246;0;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;Yuri is pog.;False;False;;;;1610340325;;False;{};giuc0pc;False;t3_kuvb7r;False;False;t3_kuvb7r;/r/anime/comments/kuvb7r/for_those_who_watch_yuriyaoi_shows/giuc0pc/;1610390251;4;True;False;anime;t5_2qh22;;0;[]; -[];;;RevaniteAnime;;MAL;[];;https://myanimelist.net/profile/RevaniteAnime;dark;text;t2_epon4p;False;True;[];;"""Shaft head tilt""";False;False;;;;1610340472;;False;{};giuc9mo;False;t3_kuvb8t;False;True;t3_kuvb8t;/r/anime/comments/kuvb8t/what_are_some_of_the_tropes_that_animation/giuc9mo/;1610390426;1;True;False;anime;t5_2qh22;;0;[]; -[];;;baquea;;;[];;;;text;t2_j3k0u;False;True;[];;"Shaft head tilt? - -Some of the major studios at least have distinctive enough art styles that you could tell them apart relatively easily (although the year of release makes a big difference as well), and I'm saying that as a relatively casual viewer. People with more knowledge about the various studios and such could definitely distinguish a lot more.";False;False;;;;1610340523;;False;{};giucco7;False;t3_kuvb8t;False;True;t3_kuvb8t;/r/anime/comments/kuvb8t/what_are_some_of_the_tropes_that_animation/giucco7/;1610390486;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TravisScotch--;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/TravisScotch/;light;text;t2_7fexh1u7;False;False;[];;I can tell a Trigger anime most of the time. Trigger made anime always have a cartoonish style with amazing colors and visuals. Every Trigger anime has great art and it’s one of the things that set them apart. Sadly most Trigger anime end up having inconsistent plots as well;False;False;;;;1610340525;;False;{};giucct3;False;t3_kuvb8t;False;False;t3_kuvb8t;/r/anime/comments/kuvb8t/what_are_some_of_the_tropes_that_animation/giucct3/;1610390488;2;True;False;anime;t5_2qh22;;0;[]; -[];;;irisverse;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/usernamesarehard;light;text;t2_1dzbqjh4;False;False;[];;"Considering most studios don't keep a consistent staff between all the anime they make, any tropes or similarities are probably coincidental. - -The only studios that I'd say actually do have a ""house style"" where you can get a rough idea of what you're getting into are Kyoto Animation, Ufotable and Shaft.";False;False;;;;1610340614;;False;{};giuci76;False;t3_kuvb8t;False;True;t3_kuvb8t;/r/anime/comments/kuvb8t/what_are_some_of_the_tropes_that_animation/giuci76/;1610390592;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;I see way more threads defending dubs from the haters than I do that are actually haters.;False;False;;;;1610340695;;False;{};giucmur;False;t3_kuvj05;False;False;t3_kuvj05;/r/anime/comments/kuvj05/why_yall_be_hating_on_dub_watchers_so_much/giucmur/;1610390679;18;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;Such a fun show!;False;False;;;;1610340713;;False;{};giucnxk;False;t3_kutpex;False;False;t3_kutpex;/r/anime/comments/kutpex/fino_is_tested_yuushibu/giucnxk/;1610390700;5;True;False;anime;t5_2qh22;;0;[]; -[];;;NormalGrinn;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nurmal;light;text;t2_2t143pv;False;False;[];;"Well, that's just because it is like that. Typically yuri is aiming for a male demographic and yaoi for a female demographic. - -But it's weird that you bring up yuri on ice, since I didn't really get that impression, or at least I definitely felt like it was enjoyable.";False;False;;;;1610340733;;False;{};giucp6v;False;t3_kuvb7r;False;True;t3_kuvb7r;/r/anime/comments/kuvb7r/for_those_who_watch_yuriyaoi_shows/giucp6v/;1610390724;2;True;False;anime;t5_2qh22;;0;[]; -[];;;some314;;;[];;;;text;t2_jxdjh;False;False;[];;what fights scenes have so much dialogue that it would distract you?;False;False;;;;1610340739;;False;{};giucphm;False;t3_kuvj05;False;False;t3_kuvj05;/r/anime/comments/kuvj05/why_yall_be_hating_on_dub_watchers_so_much/giucphm/;1610390730;5;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;r/anime, at least on average, tends to really not care how people watch their anime.;False;False;;;;1610340759;;False;{};giucqnj;False;t3_kuvj05;False;True;t3_kuvj05;/r/anime/comments/kuvj05/why_yall_be_hating_on_dub_watchers_so_much/giucqnj/;1610390752;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SpaceDoggo11421;;;[];;;;text;t2_40bv3my;False;False;[];;Boruto;False;False;;;;1610340800;;False;{};giuct4w;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giuct4w/;1610390800;3;True;False;anime;t5_2qh22;;0;[]; -[];;;YoungRoyalty55;;;[];;;;text;t2_22tgl1g2;False;False;[];;it’s not anywhere as good as the other two narutos;False;False;;;;1610340840;;False;{};giucvmj;True;t3_kuvkb4;False;True;t1_giuct4w;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giucvmj/;1610390850;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;Eureka Seven constantly looked like it was just about to get good. And so I kept watching waiting for that moment to come, and unfortunately it never did.;False;False;;;;1610340854;;False;{};giucwie;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giucwie/;1610390867;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheBestBlackMan;;;[];;;;text;t2_4iczzogc;False;False;[];;I'm watching naruto rn. Not enjoying it, but I'll push through;False;False;;;;1610340872;;False;{};giucxl5;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giucxl5/;1610390887;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RockStarZero23;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Animeniac;light;text;t2_42anxyev;False;False;[];;One piece, the early dubs way back in the beginning. Then someone told me it is way better subbed, never looked back after that.;False;False;;;;1610340878;;False;{};giucxvy;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giucxvy/;1610390892;2;True;False;anime;t5_2qh22;;0;[]; -[];;;YoungRoyalty55;;;[];;;;text;t2_22tgl1g2;False;False;[];;It’s one of the best;False;False;;;;1610340924;;False;{};giud0ju;True;t3_kuvkb4;False;False;t1_giucxl5;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giud0ju/;1610390950;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ProfessorJackH0ff;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/;light;text;t2_4y844c07;False;False;[];;"Every single one I didn’t like (which isn’t many I’m a very tolerant person) but by god if I start a show I’m gonna finish it. No quitters allowed here. -Edit: forgot to add an actual anime. Eh hem, ‘from the new world’. Idk just found it extremely boring.";False;False;;;;1610340938;;False;{};giud1ff;False;t3_kuvkb4;False;False;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giud1ff/;1610390968;5;True;False;anime;t5_2qh22;;0;[]; -[];;;laikalal;;;[];;;;text;t2_8m07qvrz;False;False;[];;"Yayo yayo don't get it up give it up 🐐 -Intro was good though";False;False;;;;1610340952;;False;{};giud28p;False;t3_kuvkb4;False;True;t1_giucxvy;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giud28p/;1610390983;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheBestBlackMan;;;[];;;;text;t2_4iczzogc;False;False;[];;I think 7ds is but opinions differ dont they?;False;False;;;;1610340985;;False;{};giud42m;False;t3_kuvkb4;False;True;t1_giud0ju;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giud42m/;1610391019;0;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;This subreddit tends to be p apathetic, tho most dub hate I've seen is focused on the dubs themselves as oppose to watchers.;False;False;;;;1610340986;;False;{};giud46l;False;t3_kuvj05;False;False;t3_kuvj05;/r/anime/comments/kuvj05/why_yall_be_hating_on_dub_watchers_so_much/giud46l/;1610391020;4;True;False;anime;t5_2qh22;;0;[]; -[];;;laikalal;;;[];;;;text;t2_8m07qvrz;False;False;[];;Some anime about a wind user named kazuma forgot title;False;False;;;;1610340988;;False;{};giud4ac;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giud4ac/;1610391023;2;True;False;anime;t5_2qh22;;0;[]; -[];;;warewolf_adi;;;[];;;;text;t2_3vk9o6dp;False;False;[];;it will be good from now on. as kawaki has entered the arena;False;False;;;;1610341006;;False;{};giud5cr;False;t3_kuvkb4;False;True;t1_giucvmj;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giud5cr/;1610391043;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PreludeToHell;;;[];;;;text;t2_yec5f;False;False;[];;[Sakura Quest.](https://myanimelist.net/anime/34494/Sakura_Quest) 25 episodes of pain;False;False;;;;1610341022;;False;{};giud693;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giud693/;1610391063;2;True;False;anime;t5_2qh22;;0;[]; -[];;;warewolf_adi;;;[];;;;text;t2_3vk9o6dp;False;False;[];;" [**Yosuga no Sora**](https://myanimelist.net/anime/8861/Yosuga_no_Sora__In_Solitude_Where_We_Are_Least_Alone) - -it made me feel like shit";False;False;;;;1610341104;;False;{};giudavd;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giudavd/;1610391156;2;True;False;anime;t5_2qh22;;0;[]; -[];;;zynapp;;;[];;;;text;t2_4fw1py7p;False;False;[];;Naruto isn’t that good imo but shippudens pretty good. Also skip the fillers if u aren’t already.;False;False;;;;1610341152;;False;{};giuddlo;False;t3_kuvkb4;False;True;t1_giucxl5;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giuddlo/;1610391207;0;True;False;anime;t5_2qh22;;0;[]; -[];;;hotshotyay;;;[];;;;text;t2_l106zuh;False;False;[];;"All the ones where they announce there attacks while doing them lol like Fairy Tail for one or Naruto or Black Clover ect ect. - -Plus some fights in almost every shonen the MC likes to give a speech every once in awhile in the middle of a fight Ik Fairy Tail does and Once Piece. - -Recently the newest episode of Jujutsu Kaisen in dub the muscle guy wouldn't stop talking during the fight.";False;False;;;;1610341166;;1610341362.0;{};giudeck;False;t3_kuvj05;False;False;t1_giucphm;/r/anime/comments/kuvj05/why_yall_be_hating_on_dub_watchers_so_much/giudeck/;1610391223;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Strongerhouseplants;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/whatthehell_;light;text;t2_8ihhjlp3;False;True;[];;Certain parts of dragon ball z. That damn Frieza fight was unbearably long.;False;False;;;;1610341167;;False;{};giudees;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giudees/;1610391224;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheTrueBowman;;;[];;;;text;t2_ofypy;False;False;[];;"Really? That’s surprising to me. I mean, I guess that makes sense when it comes to demographics. - -I brought up Yuri on ice because that example was set in my mind. When the show came out, it interested me but when I brought it up, I was told that it’s weird for a guy to watch. I felt the same thing for Yuri (the genre) because I thought it was more of a genre for the female demographic. - -I’m not saying the show isn’t enjoyable, since I haven’t watched it yet, but was just saying that people said I would be weird for watching the anime. I’m sorry if it comes off as wrong, but am I weird for liking both genres? - -Edit: changed sentence structure";False;False;;;;1610341178;;False;{};giudf13;True;t3_kuvb7r;False;True;t1_giucp6v;/r/anime/comments/kuvb7r/for_those_who_watch_yuriyaoi_shows/giudf13/;1610391236;1;True;False;anime;t5_2qh22;;0;[]; -[];;;irisverse;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/usernamesarehard;light;text;t2_1dzbqjh4;False;False;[];;"I guess all I can say here is don't worry about what other people might think. If you're enjoying the shows, there should be no problem. I know plenty of guys who liked Yuri on Ice, and you really shouldn't care what people assume your motives for watching yuri are. - -Honestly the whole thing about a show not being ""meant for you"" should really be a non-issue. I'm not a teenage girl and yet I still watch shoujo anime, I'm not a sports fan and yet I still watch sports anime, all that really matters is that I enjoy it.";False;False;;;;1610341198;;1610352623.0;{};giudg3t;False;t3_kuvb7r;False;True;t3_kuvb7r;/r/anime/comments/kuvb7r/for_those_who_watch_yuriyaoi_shows/giudg3t/;1610391256;2;True;False;anime;t5_2qh22;;0;[]; -[];;;YoungRoyalty55;;;[];;;;text;t2_22tgl1g2;False;False;[];;One fight be taking up the whole season;False;False;;;;1610341246;;False;{};giudiu9;True;t3_kuvkb4;False;True;t1_giudees;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giudiu9/;1610391309;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;"If you enjoy the anime, don't worry about what other people think or what the intended audience is supposed to be. I wouldn't even consider Yuri on Ice! ""yaoi"" - which usually refers to more explicit sexual content - it's a sports anime that happens to feature a gay couple, and also has a large female fanbase. Yuri on Ice! was popular enough that it got people *other* than fujoshis (girls who like yaoi) curious about it, and was overall well received. Same with Given and Doukyuusei - they're simply gay romance and can be enjoyed by anyone, nothing wrong with that.";False;False;;;;1610341270;;False;{};giudk7m;False;t3_kuvb7r;False;True;t3_kuvb7r;/r/anime/comments/kuvb7r/for_those_who_watch_yuriyaoi_shows/giudk7m/;1610391336;2;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;Nothing. Anime is a hobby and I watch to enjoy. If I have to force myself to watch, I stop.;False;False;;;;1610341313;;False;{};giudmqs;False;t3_kuvkb4;False;False;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giudmqs/;1610391386;17;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"We get way more threads about this than people bashing dub watchers honestly. Sure there are probably plenty of people on twitter, youtube etc but who is this addressed to? Plus fair personally I have NP reading and enjoying the animation honestly in most shows I am ahead of the dialogue so it's just not an issue. - -You are free to watch dub I don't care. At most I am just going to say yeah you should get used to subs if you want to get the most out of this medium because there are so many good shows not dubbed.";False;False;;;;1610341338;;False;{};giudoak;False;t3_kuvj05;False;False;t3_kuvj05;/r/anime/comments/kuvj05/why_yall_be_hating_on_dub_watchers_so_much/giudoak/;1610391416;4;True;False;anime;t5_2qh22;;0;[]; -[];;;warewolf_adi;;;[];;;;text;t2_3vk9o6dp;False;False;[];;"idc about dubs, some are good some are bad. - -but if you get distracted by subs, you are weak. just use your dojutsu properly.";False;False;;;;1610341389;;False;{};giudr2t;False;t3_kuvj05;False;True;t3_kuvj05;/r/anime/comments/kuvj05/why_yall_be_hating_on_dub_watchers_so_much/giudr2t/;1610391469;1;True;False;anime;t5_2qh22;;0;[]; -[];;;some314;;;[];;;;text;t2_jxdjh;False;False;[];;"yeah, but when they are announcing their attacks or monologuing, there is very little action happening on the screen... - -announcing their attacks: usually 3-4 words. this is not a lot of dialogue *and* they tend to reuse the same moves... making it even less of a mental burden - -monologuing: almost always happens during breaks in the fight... at the start, in the middle, or at the end.";False;False;;;;1610341467;;False;{};giudvg2;False;t3_kuvj05;False;False;t1_giudeck;/r/anime/comments/kuvj05/why_yall_be_hating_on_dub_watchers_so_much/giudvg2/;1610391552;5;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"The main audience for yaoi tends to be girls funny enough yuri sees more cross markets of lesbians and straight guys. You do have fudanshi's guys who enjoy yaoi but it is more targeted to girls and it's usually other girls creating it. - -I guess it depends on the reason. I will agree I do like some stuff about Yuri on Ice but the romance wasn't a big appeal. I liked the figure skating mostly and an actual sports anime focused on the pro scene. - - I am a bi guy too and will agree on the romance side of Yuri on Ice. Though again I think it's less appealed to women and more classic romance anime doesn't get to the point. Can't say for some of the others you have watched honestly my experience with SFW BL isn't really high lol. Given gets a lot of praise so you might want to try that. I haven't watched it yet so can't say.";False;False;;;;1610341539;;False;{};giudzcx;False;t3_kuvb7r;False;True;t3_kuvb7r;/r/anime/comments/kuvb7r/for_those_who_watch_yuriyaoi_shows/giudzcx/;1610391632;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NekoWafers;;;[];;;;text;t2_iau18;False;False;[];;Did you continue on to AO for maximum suffering?;False;False;;;;1610341700;;False;{};giue88v;False;t3_kuvkb4;False;True;t1_giucwie;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giue88v/;1610391801;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NormalGrinn;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nurmal;light;text;t2_2t143pv;False;False;[];;"Why would it be weird? Even something is meant for a certain demographic, it doesn't mean it can't be enjoyed by more people than that. - -Also, not all anime/manga that feature gay relationships target the opposite sex as their demographic, it can vary. Also, not all anime featuring gay relationships are classified as yuri/yaoi or shoujo ai/shounen ai. - -And Yuri on ice technically isn't listed as a yaoi or shounen ai.";False;False;;;;1610341846;;False;{};giuegh0;False;t3_kuvb7r;False;True;t1_giudf13;/r/anime/comments/kuvb7r/for_those_who_watch_yuriyaoi_shows/giuegh0/;1610391968;3;True;False;anime;t5_2qh22;;0;[]; -[];;;brucebananaray;;;[];;;;text;t2_15bpgp5p;False;True;[];;The majority of us don't care if people watch dub or sub because at the end of the day we are all anime fans.;False;False;;;;1610341928;;False;{};giuel32;False;t3_kuvj05;False;True;t3_kuvj05;/r/anime/comments/kuvj05/why_yall_be_hating_on_dub_watchers_so_much/giuel32/;1610392058;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;"Indian Summer. Idk why I watched it but it just did. It was only 3 episodes thankfully though. Such a weird show while also not really being funny about it - -Nobunaga teacher's young bride. Watching it all the way through let me see a grown man almost get raped by a trap. Nothing was interesting about it until that point besides the one girl with the big chest - -Texhnolyze though in a good way it was just really obvious where the show was heading with the MCs. The outcome was depressing";False;False;;;;1610342016;;False;{};giueq23;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giueq23/;1610392151;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;People generally don't that much. Most people dislike the dubs themselves. People hating on dub watchers are normally just downvoted;False;False;;;;1610342093;;False;{};giueuaa;False;t3_kuvj05;False;True;t3_kuvj05;/r/anime/comments/kuvj05/why_yall_be_hating_on_dub_watchers_so_much/giueuaa/;1610392232;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Is this guy talking about konosuba;False;False;;;;1610342124;;False;{};giuew01;False;t3_kuvkb4;False;True;t1_giud4ac;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giuew01/;1610392264;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Strickout;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Strickout?status=2;light;text;t2_1szolp7k;False;False;[];;"***Ouran High School Host Club*** - -It was more episodic than Family guy, the characters went through next to no development and worst of all they give you an ""At least everything's back to normal"" ending. - -It's the only anime I've watched since I started watching new stuff again(In Late October 2020) that I genuinely considered dropping";False;False;;;;1610342172;;False;{};giueyo3;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giueyo3/;1610392316;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomWolf83;;;[];;;;text;t2_wxq1l;False;False;[];;Ousama Game;False;False;;;;1610342175;;False;{};giueyu8;False;t3_kuvkb4;False;False;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giueyu8/;1610392320;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Demolution-Gamer786;;;[];;;;text;t2_2y4pbcre;False;False;[];;Nice 👍 what is that instrument called?;False;False;;;;1610342176;;False;{};giueyum;False;t3_kuu07d;False;True;t3_kuu07d;/r/anime/comments/kuu07d/blue_bird_from_naruto/giueyum/;1610392321;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi nineteen90niny! This post was removed because fanart is only allowed as a self (text) post. - -To read the full fanart rules on /r/anime, check [our rules page](https://www.reddit.com/r/anime/wiki/rules#wiki_fanart). - -[Fanart rules were changed recently and announced here.](https://www.reddit.com/r/anime/comments/hq4u9y/) - -[**Thank you!**](#blushubot) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610342388;moderator;False;{};giufahc;False;t3_kuvzso;False;True;t3_kuvzso;/r/anime/comments/kuvzso/my_first_anime_animation_very_simple_animation/giufahc/;1610392555;1;False;False;anime;t5_2qh22;;0;[]; -[];;;TheTrueBowman;;;[];;;;text;t2_ofypy;False;False;[];;"I’m just very self-anxious in how I watch shows, so I didn’t want to get into the mindset of watching something I would be mocked for (like the Yuri on Ice example). There’s some shows that took me a while to watch because they were viewed as childish and weird by people in school (a big example was Steven Universe, which took me years to finally watch). That’s what I mean by demographic, since that sort of mindset has been in me for years, and its still being broken down with some shows. - -I’ve only recently been looking into the genre, so my terminology is probably going to be wrong when talking about it. - -And sorry for saying it’s a yaoi, it’s just how I usually saw it as based on searches and how I was told about it before, so I apologize for mixing it up.";False;False;;;;1610342448;;False;{};giufdse;True;t3_kuvb7r;False;True;t1_giuegh0;/r/anime/comments/kuvb7r/for_those_who_watch_yuriyaoi_shows/giufdse/;1610392621;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MapPsychological7469;;;[];;;;text;t2_9rjqdaps;False;False;[];;"> I watch dub, mostly because during fight scenes I want to be looking at the action instead of staring at the bottom and using my peripheral vision to watch the show - -The anime I watch don't have fight scenes.";False;False;;;;1610342512;;False;{};giufh6o;False;t3_kuvj05;False;True;t3_kuvj05;/r/anime/comments/kuvj05/why_yall_be_hating_on_dub_watchers_so_much/giufh6o/;1610392684;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheTrueBowman;;;[];;;;text;t2_ofypy;False;False;[];;That’s how I want to view it, being able to watch a show without worrying. That’s good to know about other guys who like Yuri on ice too. Thank you!;False;False;;;;1610342539;;False;{};giufing;True;t3_kuvb7r;False;True;t1_giudg3t;/r/anime/comments/kuvb7r/for_those_who_watch_yuriyaoi_shows/giufing/;1610392719;1;True;False;anime;t5_2qh22;;0;[]; -[];;;laikalal;;;[];;;;text;t2_8m07qvrz;False;False;[];;No he was wearing a suit and had wind powers modern day anime;False;False;;;;1610342553;;False;{};giufje2;False;t3_kuvkb4;False;True;t1_giuew01;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giufje2/;1610392734;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610342613;;False;{};giufmlt;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giufmlt/;1610392795;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sodra;;MAL a-amq;[];;https://myanimelist.net/profile/sodra;dark;text;t2_5o34w;False;False;[];;[Senpai.moe](https://www.senpai.moe/) uses your MAL to create a personalized seasonal calendar;False;False;;;;1610342626;;False;{};giufn93;False;t3_kuvbyo;False;True;t3_kuvbyo;/r/anime/comments/kuvbyo/any_site_where_i_can_list_all_the_series_i_have/giufn93/;1610392807;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheTrueBowman;;;[];;;;text;t2_ofypy;False;False;[];;A lot of the Yuri/yaoi genre is relatively new to me, so sorry for saying Yuri on Ice is yaoi. I’ve also just started looking into the show again, so that’s interesting to know about the female base, as that makes the previous statement with the people saying the show is “meant for girls, not guys” stigma. That’s good to know though, especially how you said they can be enjoyed by anyone. I just want to watch an interesting anime with a good story and great characters, I just like the romance aspects in certain shows. Thank you!;False;False;;;;1610342733;;False;{};giufsy0;True;t3_kuvb7r;False;True;t1_giudk7m;/r/anime/comments/kuvb7r/for_those_who_watch_yuriyaoi_shows/giufsy0/;1610392920;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiro_nano;;;[];;;;text;t2_4lskkxjp;False;False;[];;Any anime where i had to wait till it's completely released by end of the season so i can binge-watching from 1 to END, yet people tend to spoil it freely in socmed. No more surprise.;False;False;;;;1610342883;;False;{};giug0xv;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giug0xv/;1610393089;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheTrueBowman;;;[];;;;text;t2_ofypy;False;False;[];;"That’s good to hear from another bi guy! Yuri on ice is a relatively new show to look into, since the last time I gave it a lot of thought was when it first came out, so the show itself is really interesting (not just the romance aspect). As for the romance, I just like watching those relationships in both genres. - -I’ll have to look into Given as well, but as a whole to the response, I know it’s counterintuitive to mention the demographic, but I’m just self-anxious with how I see other shows. Thank you for the advice!";False;False;;;;1610342938;;False;{};giug3vu;True;t3_kuvb7r;False;True;t1_giudzcx;/r/anime/comments/kuvb7r/for_those_who_watch_yuriyaoi_shows/giug3vu/;1610393153;1;True;False;anime;t5_2qh22;;0;[]; -[];;;izaihb;;;[];;;;text;t2_1swtbq;False;False;[];;I watched Shield Hero while it was airing because I gave into the hype. I think the only episodes I were invested in were the first episode and the one where [spoiler](/s “Bitch and the king were supposed to get executed.”) Other than that, the whole show was pretty generic. Naofumi felt like a DeviantArt OC and the only interesting character was Melty. Everyone else existed to either get on Naofumi’s nerves or to get on Naofumi’s huge cock.;False;False;;;;1610342992;;False;{};giug6q1;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giug6q1/;1610393208;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Sodra;;MAL a-amq;[];;https://myanimelist.net/profile/sodra;dark;text;t2_5o34w;False;False;[];;"You kinda...can't? That's like, your taste changing. - -You could try checking out other works by the same director or studio, but you should view your taste changing as a good thing. You can discover many more anime that you might like!";False;False;;;;1610343007;;False;{};giug7ic;False;t3_kuw3b5;False;False;t3_kuw3b5;/r/anime/comments/kuw3b5/how_to_stay_obsessed_with_an_anime/giug7ic/;1610393225;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Kairyu_gen1;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/kairyu_gen1;dark;text;t2_v5hbm;False;False;[];;A little bit of space is not a bad thing lol. Honestly, it's healthier and you get more bang for your buck if you practice moderation. Make sure you're eating healthy, getting enough sleep, meeting all your school/work requirements, and maintaining healthy relationships with the people in your life. After that, just do whatever you feel like doing. Some days I'll binge an anime in a week, some days I'll go hiking and not even bring my phone. Diverse interests are a good thing.;False;False;;;;1610343037;;False;{};giug947;False;t3_kuw3b5;False;False;t3_kuw3b5;/r/anime/comments/kuw3b5/how_to_stay_obsessed_with_an_anime/giug947/;1610393256;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Star_Lux22;;;[];;;;text;t2_22d262q9;False;False;[];;Why would you force yourself to watch something?;False;False;;;;1610343047;;False;{};giug9nn;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giug9nn/;1610393266;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610343155;moderator;False;{};giugfkp;False;t3_kuw7fa;False;True;t3_kuw7fa;/r/anime/comments/kuw7fa/trying_to_figure_out_the_title_to_an_old/giugfkp/;1610393384;1;False;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;It's fun to be enamored with something, but eventually you just get burnt out and move on from the property if you spend too much time on it. It's completely natural to just move on.;False;False;;;;1610343181;;False;{};giuggyb;False;t3_kuw3b5;False;False;t3_kuw3b5;/r/anime/comments/kuw3b5/how_to_stay_obsessed_with_an_anime/giuggyb/;1610393409;6;True;False;anime;t5_2qh22;;0;[]; -[];;;OneBlackOtaku;;;[];;;;text;t2_605pwch7;False;False;[];;Yes but warning you it’s Dialouge Heavy;False;False;;;;1610343304;;False;{};giugneg;False;t3_kuw8gk;False;False;t3_kuw8gk;/r/anime/comments/kuw8gk/should_i_watch_bakemonogatari/giugneg/;1610393529;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Agreed, but the thing that scares me is that cloverworks already has two other anime this season. We’ll see how it goes I guess;False;False;;;;1610343375;;False;{};giugr6j;False;t3_kuvuc0;False;True;t3_kuvuc0;/r/anime/comments/kuvuc0/prediction_wonder_egg_priority_will_be_amazing/giugr6j/;1610393602;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;"Personally, yes. - -Though it's one of those shows that either clicks with you or doesn't. No shame if you can't get into it";False;False;;;;1610343397;;False;{};giugsee;False;t3_kuw8gk;False;True;t3_kuw8gk;/r/anime/comments/kuw8gk/should_i_watch_bakemonogatari/giugsee/;1610393623;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Internet-Weeb;;;[];;;;text;t2_4dk5sxza;False;False;[];;Aww that’s a little disappointing. If I could I’d like to stick with an fandom forever. Moving on is hard, but it’s inevitable I guess.;False;False;;;;1610343474;;False;{};giugwlr;True;t3_kuw3b5;False;True;t1_giuggyb;/r/anime/comments/kuw3b5/how_to_stay_obsessed_with_an_anime/giugwlr/;1610393701;0;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"Wouldnt really say Bakemonogatari (or the series) is even remotely close to My Hero Academia if that is what you are looking for. - -Dont get me wrong, the characters in Monogatari are great, but I dont think it can really be compared to My Hero because they are very different series. The Monogatari series is one of my favorites, but I would be lying if I didnt mention it is definitely one of the weirder series out there so I find it a hard one to recommend to people.";False;False;;;;1610343492;;False;{};giugxno;False;t3_kuw8gk;False;False;t3_kuw8gk;/r/anime/comments/kuw8gk/should_i_watch_bakemonogatari/giugxno/;1610393721;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Minionman5;;;[];;;;text;t2_3d6x4jbp;False;False;[];;I wasn’t sure about it and asked the same question here. People told me that I should so I did and let me tell you, I do not regret it. It’s a really interesting show but you’ll learn very quickly that it’s dialogue heavy and you can’t really afford to not pay attention while watching it;False;False;;;;1610343570;;False;{};giuh1ou;False;t3_kuw8gk;False;False;t3_kuw8gk;/r/anime/comments/kuw8gk/should_i_watch_bakemonogatari/giuh1ou/;1610393794;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;"No worries about the terminology, just making the point that it's unfortunate shows like Yuri on Ice! are reduced to being described as ""yaoi"" or ""for girls,"" since it has a lot to offer besides that (it's not even tagged as romance). Anyway, hope you enjoy!";False;False;;;;1610343570;;False;{};giuh1pf;False;t3_kuvb7r;False;True;t1_giufsy0;/r/anime/comments/kuvb7r/for_those_who_watch_yuriyaoi_shows/giuh1pf/;1610393795;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Internet-Weeb;;;[];;;;text;t2_4dk5sxza;False;False;[];;True. I guess you get caught up on one thing that you miss out on everything else going on. Probably something I should really keep in mind tbh;False;False;;;;1610343601;;False;{};giuh3ce;True;t3_kuw3b5;False;True;t1_giug947;/r/anime/comments/kuw3b5/how_to_stay_obsessed_with_an_anime/giuh3ce/;1610393825;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Internet-Weeb;;;[];;;;text;t2_4dk5sxza;False;False;[];;Yeah, true! Nothing really stays the same forever I guess;False;False;;;;1610343681;;False;{};giuh7jw;True;t3_kuw3b5;False;True;t1_giug7ic;/r/anime/comments/kuw3b5/how_to_stay_obsessed_with_an_anime/giuh7jw/;1610393908;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Reinacchan;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Reina;light;text;t2_84kgf6gn;False;False;[];;"Both CloverWorks and A1 Pictures (sister studios that used to be the same) have always had many productions going at once. They are called the anile factory for a reason. - -The advantage here, however, is that (assuming CloverWorks operate similarly to A1) they're mostly freelance, so as long as the director has great connections, it shouldn't be an issue. - -We are seeing that both him and the chara designer have both worked on productions at CloverWorks previously, however, which makes me wonder if this might be a mostly in-house production. - -What I'm most worried about is scheduling. We know that CloverWorks and A1 have been bad with that in the past, often turning out worse quality as a series goes and without necessarily fixing for blurays. - -That's what I'm most worried about right now tbh.";False;False;;;;1610343682;;False;{};giuh7m4;True;t3_kuvuc0;False;True;t1_giugr6j;/r/anime/comments/kuvuc0/prediction_wonder_egg_priority_will_be_amazing/giuh7m4/;1610393910;2;True;False;anime;t5_2qh22;;0;[]; -[];;;anpanman4444;;;[];;;;text;t2_59h7l98t;False;False;[];;its called a kalimba!;False;False;;;;1610343709;;False;{};giuh901;True;t3_kuu07d;False;True;t1_giueyum;/r/anime/comments/kuu07d/blue_bird_from_naruto/giuh901/;1610393937;3;True;False;anime;t5_2qh22;;0;[]; -[];;;some314;;;[];;;;text;t2_jxdjh;False;False;[];;you are describing the cartoon [Aeon Flux](https://www.imdb.com/title/tt0111873/) that aired on MTV ages ago;False;False;;;;1610343842;;False;{};giuhfwj;False;t3_kuw7fa;False;True;t3_kuw7fa;/r/anime/comments/kuw7fa/trying_to_figure_out_the_title_to_an_old/giuhfwj/;1610394073;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BoopTheChicken;;;[];;;;text;t2_82olxgk9;False;False;[];;Tbh, I feel like it might be a bit early in your anime-watching career for Bakemonogatati. It's undoubably a good show, but it's pretty far down the rabbit hole thematically and content wise. I know when I first watched it as a young weeb I didn't like it, but enjoyed it immensely coming back to it a few years later.;False;False;;;;1610343860;;False;{};giuhgsm;False;t3_kuw8gk;False;True;t3_kuw8gk;/r/anime/comments/kuw8gk/should_i_watch_bakemonogatari/giuhgsm/;1610394090;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;"Even with series without fight scenes, it's really nice to be able to look freely around the scene, especially at things like people faces to see their reactions. I also read fast enough that the subs slightly spoil the experience because I take in the whole line in at once and predict stuff, e.g. when you can see that the person talking is going to get cut off because their line ends with a dash. - -I still prefer subs though because I enjoy the Japanese voice acting and because I feel like it more closely aligns with the intentions of the author. Really, I think the only way to watch anime without making some sort of concession is by just learning enough Japanese to get by without subs or dubs.";False;False;;;;1610344011;;False;{};giuhogj;False;t3_kuvj05;False;True;t3_kuvj05;/r/anime/comments/kuvj05/why_yall_be_hating_on_dub_watchers_so_much/giuhogj/;1610394239;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jicuhrabbitkim;;;[];;;;text;t2_6po9il13;False;False;[];;For me when I watched the episode it feels so rushed ? Like everything happened so fast imo.;False;False;;;;1610344012;;False;{};giuhoid;False;t3_kuwe8k;False;True;t3_kuwe8k;/r/anime/comments/kuwe8k/horimiya_is_the_best_first_episode_of_an_anime/giuhoid/;1610394241;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Easy-Cry3789;;;[];;;;text;t2_7yfibkig;False;False;[];;The third one.....I dunno about that;False;False;;;;1610344013;;False;{};giuholf;False;t3_kuwe64;False;True;t3_kuwe64;/r/anime/comments/kuwe64/are_yall_watching_any_of_this_anime_all_of_them/giuholf/;1610394242;2;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"CloverWorks is inconsistent? They have done pretty well with all their series adaptations (BGS, Fate Babylonia, Millionaire Detective) so I’m not sure what you were going for there. - -The only concern for me is writing (as it is an original), and whether the fact they have two series this season already airing (Horimiya and Promised Neverland) and both have looked great so far, especially Horimiya which was stunning in the first episode. This may be alleviated based on the fact Promised Neverland got delayed a season so it may not be as strenuous as there was more time to work it, but I dont know enough about anime production/scheduling - -Im personally very excited for it since it is an original, and CloverWorks has consistently put out good shows";False;False;;;;1610344028;;False;{};giuhpcg;False;t3_kuvuc0;False;True;t3_kuvuc0;/r/anime/comments/kuvuc0/prediction_wonder_egg_priority_will_be_amazing/giuhpcg/;1610394259;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ImpactBetelgeuse;;;[];;;;text;t2_6mkzkgz8;False;False;[];;It's boruto. Sequel to Naruto Shippuden;False;False;;;;1610344057;;False;{};giuhqtj;False;t3_kuwe64;False;True;t1_giuholf;/r/anime/comments/kuwe64/are_yall_watching_any_of_this_anime_all_of_them/giuhqtj/;1610394293;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Dadof6LoverofChrist;;;[];;;;text;t2_7e2bkl4t;False;False;[];;Not me bro I fell in love;False;False;;;;1610344058;;False;{};giuhqv5;True;t3_kuwe8k;False;True;t1_giuhoid;/r/anime/comments/kuwe8k/horimiya_is_the_best_first_episode_of_an_anime/giuhqv5/;1610394293;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Cynderaquil;;;[];;;;text;t2_3hyccqum;False;False;[];;People need to know that the anime is good or that you were engrossed in it?;False;False;;;;1610344074;;False;{};giuhrmw;False;t3_kuwe8k;False;True;t3_kuwe8k;/r/anime/comments/kuwe8k/horimiya_is_the_best_first_episode_of_an_anime/giuhrmw/;1610394307;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dadof6LoverofChrist;;;[];;;;text;t2_7e2bkl4t;False;False;[];;I thought it was good was that not clear?;False;True;;comment score below threshold;;1610344112;;False;{};giuhtld;True;t3_kuwe8k;False;True;t1_giuhrmw;/r/anime/comments/kuwe8k/horimiya_is_the_best_first_episode_of_an_anime/giuhtld/;1610394344;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;warewolf_adi;;;[];;;;text;t2_3vk9o6dp;False;False;[];;its getting good from the current arc;False;False;;;;1610344131;;False;{};giuhuio;False;t3_kuwe64;False;True;t1_giuholf;/r/anime/comments/kuwe64/are_yall_watching_any_of_this_anime_all_of_them/giuhuio/;1610394362;0;True;False;anime;t5_2qh22;;0;[]; -[];;;KragnothOSRS;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DJGHOSTMODE;light;text;t2_ck00x7i;False;False;[];;Yep;False;False;;;;1610344194;;False;{};giuhxmr;False;t3_kuw8gk;False;True;t3_kuw8gk;/r/anime/comments/kuw8gk/should_i_watch_bakemonogatari/giuhxmr/;1610394421;0;True;False;anime;t5_2qh22;;0;[]; -[];;;some314;;;[];;;;text;t2_jxdjh;False;False;[];;first ep was decent, but the animation (not the art) was off-putting... especially the walking scenes in the first ~5 min;False;False;;;;1610344222;;False;{};giuhz0w;False;t3_kuwe8k;False;False;t3_kuwe8k;/r/anime/comments/kuwe8k/horimiya_is_the_best_first_episode_of_an_anime/giuhz0w/;1610394447;5;True;False;anime;t5_2qh22;;0;[]; -[];;;warewolf_adi;;;[];;;;text;t2_3vk9o6dp;False;False;[];;"i was waiting for the kara arc in boruto. - -Aot is going to hurt (manga reader) - -Promised Neverland, the concept changes from hiding to escaping.";False;False;;;;1610344246;;False;{};giui070;False;t3_kuwe64;False;True;t3_kuwe64;/r/anime/comments/kuwe64/are_yall_watching_any_of_this_anime_all_of_them/giui070/;1610394469;1;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"Wouldnt say it was the best first episode I’ve ever seen, but I loved the first episode. I’ve actually watched it 4 times since it released because I loved the art/animation, and really enjoyed the characters introduced so far. - -Definitely in the discussion for my anime of the season (not counting AoT), and Hori already seems like she might become one of my favorite girls in anime";False;False;;;;1610344263;;False;{};giui11r;False;t3_kuwe8k;False;True;t3_kuwe8k;/r/anime/comments/kuwe8k/horimiya_is_the_best_first_episode_of_an_anime/giui11r/;1610394486;1;True;False;anime;t5_2qh22;;0;[]; -[];;;happy-owls;;;[];;;;text;t2_7rvyaqi6;False;False;[];;I agree, and at the very least, I'm interested to see what this show will be about. I find it really interesting that this show hasn't revealed that much about itself yet, and I hope they do something really interesting with that. I look forward to it this season;False;False;;;;1610344300;;False;{};giui31y;False;t3_kuvuc0;False;True;t3_kuvuc0;/r/anime/comments/kuvuc0/prediction_wonder_egg_priority_will_be_amazing/giui31y/;1610394530;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dadof6LoverofChrist;;;[];;;;text;t2_7e2bkl4t;False;False;[];;Imagine caring about a walking scene over the context of the show get a grip;False;True;;comment score below threshold;;1610344304;;False;{};giui390;True;t3_kuwe8k;False;True;t1_giuhz0w;/r/anime/comments/kuwe8k/horimiya_is_the_best_first_episode_of_an_anime/giui390/;1610394534;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;Midori-4;;;[];;;;text;t2_3ffbl678;False;False;[];;Never heard of it but the images on MAL look nice. I like how colorful it is in the picture. Is it just as colorful in the anime?;False;False;;;;1610344319;;False;{};giui3zs;False;t3_kuwe8k;False;True;t3_kuwe8k;/r/anime/comments/kuwe8k/horimiya_is_the_best_first_episode_of_an_anime/giui3zs/;1610394549;1;True;False;anime;t5_2qh22;;0;[]; -[];;;some314;;;[];;;;text;t2_jxdjh;False;False;[];;"imagine saying something is ""the best"" without caring about every aspect";False;False;;;;1610344335;;False;{};giui4st;False;t3_kuwe8k;False;False;t1_giui390;/r/anime/comments/kuwe8k/horimiya_is_the_best_first_episode_of_an_anime/giui4st/;1610394565;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Dadof6LoverofChrist;;;[];;;;text;t2_7e2bkl4t;False;False;[];;Finally a person with sense;False;False;;;;1610344346;;False;{};giui5di;True;t3_kuwe8k;False;False;t1_giui11r;/r/anime/comments/kuwe8k/horimiya_is_the_best_first_episode_of_an_anime/giui5di/;1610394576;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;ratfeldt;;;[];;;;text;t2_qzgl8;False;False;[];;"That moment when the countdown timer reach Zero. - -Such emotional scene. Everything is coming full circle, literally tied the narrative beautifully. Definitely the best scene in the series. - -What? What scene I'm referring about? You know the one, yeah that one scene. I bet every Fate Zero fans know about it. That scene is literally the whole point why it was titled ***Fate Zero*** in the first place.";False;False;;;;1610344352;;False;{};giui5os;False;t3_kuw9es;False;True;t3_kuw9es;/r/anime/comments/kuw9es/fate_zero_discussion_thread/giui5os/;1610394583;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RxMidnight;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/RxMidnight;light;text;t2_77kf70hc;False;False;[];;"1) Rider's charge against Archer. - -2) The three Kings' banquet. - -3) Kiritsugu shooting down the airplane.";False;False;;;;1610344367;;False;{};giui6ga;False;t3_kuw9es;False;True;t3_kuw9es;/r/anime/comments/kuw9es/fate_zero_discussion_thread/giui6ga/;1610394598;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlackFancy;;;[];;;;text;t2_12psbe;False;False;[];;"No... but hearing others talk about it makes for a fun trip down memory lane. Or... re-watch it & see if those same feelings get refreshed; maybe let some time pass before doing so. Re-watched some Hunter x Hunter months back & got excited all over again lol.";False;False;;;;1610344385;;False;{};giui7d7;False;t3_kuw3b5;False;True;t3_kuw3b5;/r/anime/comments/kuw3b5/how_to_stay_obsessed_with_an_anime/giui7d7/;1610394616;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dadof6LoverofChrist;;;[];;;;text;t2_7e2bkl4t;False;False;[];;imagine imagine something get a grip;False;True;;comment score below threshold;;1610344400;;False;{};giui84h;True;t3_kuwe8k;False;True;t1_giui4st;/r/anime/comments/kuwe8k/horimiya_is_the_best_first_episode_of_an_anime/giui84h/;1610394630;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;Midori-4;;;[];;;;text;t2_3ffbl678;False;False;[];;I suggest you read the light novels first :);False;False;;;;1610344400;;False;{};giui84s;False;t3_kuw8gk;False;True;t3_kuw8gk;/r/anime/comments/kuw8gk/should_i_watch_bakemonogatari/giui84s/;1610394631;0;True;False;anime;t5_2qh22;;0;[]; -[];;;destiny24;;;[];;;;text;t2_85zu3;False;False;[];;Thank you, I don't know why people feel the need to force themselves with anime. Any TV show or movie, people will simply stop watching if they don't like it.;False;False;;;;1610344402;;False;{};giui89f;False;t3_kuvkb4;False;True;t1_giudmqs;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giui89f/;1610394633;3;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;The art is very pretty, definitely one of the better looking shows recently for me;False;False;;;;1610344418;;False;{};giui923;False;t3_kuwe8k;False;False;t1_giui3zs;/r/anime/comments/kuwe8k/horimiya_is_the_best_first_episode_of_an_anime/giui923/;1610394648;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;No really don't try it;False;False;;;;1610344479;;False;{};giuic8b;False;t3_kuw8gk;False;True;t3_kuw8gk;/r/anime/comments/kuw8gk/should_i_watch_bakemonogatari/giuic8b/;1610394712;0;True;False;anime;t5_2qh22;;0;[]; -[];;;destiny24;;;[];;;;text;t2_85zu3;False;False;[];;I generally don't every force myself to watch an anime unless I'm already close to finishing it. If I'm 20/24 episodes in, may as well finish it. But man, Mirai Nikki and Darling in the Franxx got very stupid in their last few episodes.;False;False;;;;1610344511;;False;{};giuidrr;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giuidrr/;1610394743;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Midori-4;;;[];;;;text;t2_3ffbl678;False;False;[];;"Oooo I painfully force myself to watch the Monogatari series. I’m about 6 episodes in after about 6 months. - -I’m currently reading the series and am much further along. I just can’t get into watching it. I think it’s the fast cuts back and forth and the background music. - -It’s so hard to watch.";False;False;;;;1610344513;;False;{};giuidvb;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giuidvb/;1610394747;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ExiFox;;;[];;;;text;t2_b87vu;False;False;[];;That's it. Not anime by definition of this reddit though so apologies for that. Thanks a ton for the help it was driving up the wall trying to figure it out.;False;False;;;;1610344610;;False;{};giuiipz;True;t3_kuw7fa;False;True;t1_giuhfwj;/r/anime/comments/kuw7fa/trying_to_figure_out_the_title_to_an_old/giuiipz/;1610394845;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Reinacchan;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Reina;light;text;t2_84kgf6gn;False;False;[];;"They often have dull backgrounds (Bunny Girl Senpai, Horimiya, Millionaire Detective) which often rely on CG or other techniques that generally don't merge well with the characters. - -While animation can be great, it's also not always consistently so. Darling in the Franxx got significantly worse production-wise around 16 episodes in. It was quite clear that it came from scheduling issues. - -And we have to remember that CloverWorks is not as new as it seems. A lot of works labled as A1 Pictures were made by the CloverWorks division. And, well, A1's got quite the rocky history ...";False;False;;;;1610344662;;False;{};giuileu;True;t3_kuvuc0;False;True;t1_giuhpcg;/r/anime/comments/kuvuc0/prediction_wonder_egg_priority_will_be_amazing/giuileu/;1610394900;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Midori-4;;;[];;;;text;t2_3ffbl678;False;False;[];;I’ll watch any show that had at least 2 cute girls or an abundance of cute girls. So I’ll watch any GL anime;False;False;;;;1610344686;;False;{};giuimiy;False;t3_kuvb7r;False;True;t3_kuvb7r;/r/anime/comments/kuvb7r/for_those_who_watch_yuriyaoi_shows/giuimiy/;1610394922;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610344710;;1610344906.0;{};giuinou;False;t3_kuu8oc;False;True;t3_kuu8oc;/r/anime/comments/kuu8oc/anyone_know_an_where_i_could_watch_umineko_when/giuinou/;1610394944;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;Y so defensive;False;False;;;;1610344832;;False;{};giuitrm;False;t3_kuwe8k;False;False;t1_giui84h;/r/anime/comments/kuwe8k/horimiya_is_the_best_first_episode_of_an_anime/giuitrm/;1610395076;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Midori-4;;;[];;;;text;t2_3ffbl678;False;False;[];;"I just started Attack on Titan last night and am almost done with season 1. - -That show has lots of action. I guess so far the hype is legit.";False;False;;;;1610344837;;False;{};giuitzz;False;t3_kuu9wc;False;True;t3_kuu9wc;/r/anime/comments/kuu9wc/does_anyone_know_any_good_anime_with_a_lot_of/giuitzz/;1610395079;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;Bungou Stray Dogs S1 since I was curious about the beginning arc of S2 (which I loved, so it was worth it);False;False;;;;1610344924;;False;{};giuiyai;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giuiyai/;1610395168;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Vegfarende;;;[];;;;text;t2_64fe1cve;False;False;[];;Clannad and Pick up girls in a dungeon s2.;False;False;;;;1610344968;;False;{};giuj0gk;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giuj0gk/;1610395208;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;It’s great but you might not like it so much right away if MHA is your only anime. If you like it after the first few episodes stick with it, if not you could try something like One Piece;False;False;;;;1610344993;;False;{};giuj1pe;False;t3_kuw8gk;False;False;t3_kuw8gk;/r/anime/comments/kuw8gk/should_i_watch_bakemonogatari/giuj1pe/;1610395232;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Midori-4;;;[];;;;text;t2_3ffbl678;False;False;[];;"I guess right now I’m digging AOT almost finished season 1 in a day. - -I spoiled a couple of things because I was reading bios of characters on MAL and couldn’t stop myself from clicking. - -I don’t watch these types of animes really so it’s all new to me (genre wise)";False;False;;;;1610345075;;False;{};giuj5qh;False;t3_kutgit;False;True;t3_kutgit;/r/anime/comments/kutgit/what_anime_are_you_living_for_right_now/giuj5qh/;1610395305;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Don00Gero;;;[];;;;text;t2_yjpa3;False;False;[];;AstroBoy, BlackJack, Cyborg007, LogHorizon;False;False;;;;1610345091;;False;{};giuj6kb;False;t3_kuwnj3;False;False;t3_kuwnj3;/r/anime/comments/kuwnj3/what_are_some_good_anime_shows_that_have_no_ecchi/giuj6kb/;1610395322;1;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;The Pretty Cure series is probably perfect for you. No lewd content, and focused on action.;False;False;;;;1610345124;;False;{};giuj84x;False;t3_kuwnj3;False;True;t3_kuwnj3;/r/anime/comments/kuwnj3/what_are_some_good_anime_shows_that_have_no_ecchi/giuj84x/;1610395350;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;Attack On Titan;False;False;;;;1610345171;;False;{};giujaei;False;t3_kuwnj3;False;False;t3_kuwnj3;/r/anime/comments/kuwnj3/what_are_some_good_anime_shows_that_have_no_ecchi/giujaei/;1610395393;11;True;False;anime;t5_2qh22;;0;[]; -[];;;King_tiger2000;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Suffering Enthusiast ;dark;text;t2_31z7ch14;False;False;[];;"I see that you are interested in the extremely rare. - - -Violet Evergarden, i think it fits the bill.";False;False;;;;1610345177;;False;{};giujaop;False;t3_kuwnj3;False;True;t3_kuwnj3;/r/anime/comments/kuwnj3/what_are_some_good_anime_shows_that_have_no_ecchi/giujaop/;1610395397;3;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"The CG issue kind of depends on who you are talking to, personally I didnt find it distracting. Unless I’m looking for it, I never really noticed any issues with it and I’ve watched through BGS like 5 times. - -Been a little since I’ve seen DitF but I dont think production issues were the reason behind the series decline in the later half (that was because of the writing). I dont remember the animation being an issue but its been a while. - -I dont really know which works they did as part of A1 other than DitF (which switched part way through when CloverWorks split) and I think Your Lie in April, so I dont know about any rocky history but you probably know more than me on that since you brought it up. My main issue with A1 is half the characters look the same";False;False;;;;1610345196;;False;{};giujbmp;False;t3_kuvuc0;False;True;t1_giuileu;/r/anime/comments/kuvuc0/prediction_wonder_egg_priority_will_be_amazing/giujbmp/;1610395414;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cynderaquil;;;[];;;;text;t2_3hyccqum;False;False;[];;I know plenty of people who don’t like animated shows because the voices don’t match the characters talking or the walk cycle or something else. To others, it’s ridiculous, but to me I don’t care, it’s what they like or dislike and why. Who are you to judge them for it?;False;False;;;;1610345293;;False;{};giujghn;False;t3_kuwe8k;False;True;t1_giui390;/r/anime/comments/kuwe8k/horimiya_is_the_best_first_episode_of_an_anime/giujghn/;1610395508;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Redr1k;;;[];;;;text;t2_15tjjgv7;False;False;[];;"I started with bakemonogatari and that's why I watching anime. A few of my past attempts through more ""newb friendly"" titles didn't draw me into this culture but boosted my worst stereotypes about it. I don't want to say that you need to start advising this to all beginners but it is not necessary to turn into a formula that ""you should first watch 50 anime like this and only later move on to that"" - there are people who would never make it through this ""starter pack for everyone"".";False;False;;;;1610345319;;False;{};giujhqw;False;t3_kuw8gk;False;True;t1_giuhgsm;/r/anime/comments/kuw8gk/should_i_watch_bakemonogatari/giujhqw/;1610395535;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_Akio_;;;[];;;;text;t2_3anvwkwi;False;False;[];;K-On, Attack on Titan, Death Note, Hunter x Hunter, Madoka Magica, Your lie in April, Lucky Star. A lot of shows that are great have those things.;False;False;;;;1610345349;;False;{};giujj4q;False;t3_kuwnj3;False;False;t3_kuwnj3;/r/anime/comments/kuwnj3/what_are_some_good_anime_shows_that_have_no_ecchi/giujj4q/;1610395563;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RemoteBlackOut;;;[];;;;text;t2_5jmlu2mt;False;False;[];;lol im not actually interested in them cuz i cant watch that ecchi stuff in the open if u no wat i mean;False;False;;;;1610345366;;False;{};giujjz0;True;t3_kuwnj3;False;True;t1_giujaop;/r/anime/comments/kuwnj3/what_are_some_good_anime_shows_that_have_no_ecchi/giujjz0/;1610395578;1;True;False;anime;t5_2qh22;;0;[]; -[];;;InsaneBasti;;;[];;;;text;t2_6pl7m43q;False;False;[];;Overlord. Just a few horny comments for the joke of it;False;False;;;;1610345377;;False;{};giujkhv;False;t3_kuwnj3;False;True;t3_kuwnj3;/r/anime/comments/kuwnj3/what_are_some_good_anime_shows_that_have_no_ecchi/giujkhv/;1610395590;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;iknowkungfubtw;;;[];;;;text;t2_tb1cn;False;False;[];;The part where two guys walk around another guy while spewing chuuni magic exposition for half an hour straight. Truly riveting stuff...;False;False;;;;1610345387;;False;{};giujkz9;False;t3_kuw9es;False;True;t3_kuw9es;/r/anime/comments/kuw9es/fate_zero_discussion_thread/giujkz9/;1610395600;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Yosuga no Sora, duh;False;False;;;;1610345442;;False;{};giujnoy;False;t3_kuwnj3;False;False;t3_kuwnj3;/r/anime/comments/kuwnj3/what_are_some_good_anime_shows_that_have_no_ecchi/giujnoy/;1610395660;7;True;False;anime;t5_2qh22;;0;[]; -[];;;RemoteBlackOut;;;[];;;;text;t2_5jmlu2mt;False;False;[];;thank you;False;False;;;;1610345457;;False;{};giujodv;True;t3_kuwnj3;False;False;t1_giuj84x;/r/anime/comments/kuwnj3/what_are_some_good_anime_shows_that_have_no_ecchi/giujodv/;1610395675;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cynderaquil;;;[];;;;text;t2_3hyccqum;False;False;[];;Just because you disagree with them disagreeing with your _discussion_ post about liking something by discussing why they don’t doesn’t mean they don’t have sense. That’s ridiculous lol;False;False;;;;1610345469;;False;{};giujoy6;False;t3_kuwe8k;False;False;t1_giui5di;/r/anime/comments/kuwe8k/horimiya_is_the_best_first_episode_of_an_anime/giujoy6/;1610395691;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ProjectProxy;;;[];;;;text;t2_15bnpu;False;True;[];;Ergo Proxy;False;False;;;;1610345549;;False;{};giujsww;False;t3_kuwnj3;False;True;t3_kuwnj3;/r/anime/comments/kuwnj3/what_are_some_good_anime_shows_that_have_no_ecchi/giujsww/;1610395775;3;True;False;anime;t5_2qh22;;0;[]; -[];;;_vogonpoetry_;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/ThisWasATriumph;dark;text;t2_akt6d;False;False;[];;"Bofuri - -Tensei Slime - -No Game No Life";False;False;;;;1610345552;;False;{};giujt14;False;t3_kuw5y8;False;False;t3_kuw5y8;/r/anime/comments/kuw5y8/anime_like_konosuba_and_is_it_wrong_to_pick_up/giujt14/;1610395778;4;True;False;anime;t5_2qh22;;0;[]; -[];;;lilnicfiend;;;[];;;;text;t2_2rxoiq0k;False;False;[];;Thanks dog;False;False;;;;1610345586;;False;{};giujuoq;True;t3_kuw5y8;False;True;t1_giujt14;/r/anime/comments/kuw5y8/anime_like_konosuba_and_is_it_wrong_to_pick_up/giujuoq/;1610395811;1;True;False;anime;t5_2qh22;;0;[]; -[];;;falkner97;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/falkner99;light;text;t2_6y92q69v;False;False;[];;But theres albedo though;False;False;;;;1610345610;;False;{};giujvxm;False;t3_kuwnj3;False;True;t1_giujkhv;/r/anime/comments/kuwnj3/what_are_some_good_anime_shows_that_have_no_ecchi/giujvxm/;1610395833;2;True;False;anime;t5_2qh22;;0;[]; -[];;;falkner97;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/falkner99;light;text;t2_6y92q69v;False;False;[];;Olden adventure anime like beet the vandal buster or slayers or mar heaven?;False;False;;;;1610345639;;False;{};giujxdk;False;t3_kuwnj3;False;True;t3_kuwnj3;/r/anime/comments/kuwnj3/what_are_some_good_anime_shows_that_have_no_ecchi/giujxdk/;1610395867;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610345641;moderator;False;{};giujxir;False;t3_kuwtxr;False;True;t3_kuwtxr;/r/anime/comments/kuwtxr/can_anyone_tell_me_the_name_of_the_ostsoundtrack/giujxir/;1610395870;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;"1. Kiritsugu's trial at the grail and his breakdown - - -2.saber Vs berserker and saber realising her flawed way of ideology - - -3.kiritsugu's back story";False;False;;;;1610345655;;False;{};giujy5d;False;t3_kuw9es;False;True;t3_kuw9es;/r/anime/comments/kuw9es/fate_zero_discussion_thread/giujy5d/;1610395882;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Reinacchan;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Reina;light;text;t2_84kgf6gn;False;False;[];;"I had very little issue with the writing in the latter half. Well, at least compared to what complaints I see people have. I had issue with how they broke the writing-style of revealing information through actions and suddenly just explained everything in an incredibly dull way. The ending and all was pretty much what I expected, so no issues there. - -However, I had big problems with how the animation got gradually worse past the mid-point. Characters got flatter and drawn more inaccurately, animation less consistent, and less animation overall. - -The anime had one or two delays (they aired some documentary instead) along the way, which is often a sign of poor scheduling, or running out of time basically. - -Consider yourself lucky for not noticing the backgrounds ... I can't not notice it ... - -I also forgot to mention generally dull colour design.";False;False;;;;1610345677;;False;{};giujz93;True;t3_kuvuc0;False;True;t1_giujbmp;/r/anime/comments/kuvuc0/prediction_wonder_egg_priority_will_be_amazing/giujz93/;1610395903;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Resident_Chemist_619;;;[];;;;text;t2_9993kzaf;False;False;[];;Fillers in Blackclover, Boruto and Naruto. Most of MHA’s S4 and Arcs in Onepiece like Syrup village, Foxy Pirates and Fishman Island.;False;False;;;;1610345708;;False;{};giuk0pm;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giuk0pm/;1610395933;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Infamous-Basket-1375;;;[];;;;text;t2_8u5aflz4;False;False;[];;"Blue exorcist, akame ga kill, angel beats, angels of death, another, attack on Titan, banana fish, blood -C, my hero academia, brand new animal, cells at work, danganrompa, demon slayer, erased, future diary, jujutsu Kaisen, promised never land, puella magi madoka magica, re:zero, Tokyo ghoul - -This is some I know of. Some of them are gory.";False;False;;;;1610345760;;False;{};giuk361;False;t3_kuwnj3;False;False;t3_kuwnj3;/r/anime/comments/kuwnj3/what_are_some_good_anime_shows_that_have_no_ecchi/giuk361/;1610395979;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;I forced myself to get through Legend of the Galactic heroes s2 but it was all worth it because it became my second favorite anime. I think it's one of the best this medium has to offer. The slow build up, strategy, and just everything is absolutely perfect. But since its a slow burn and you slowly get immersed it can get boring at some points in the first 2 seasons. Especially s2;False;False;;;;1610345771;;False;{};giuk3pp;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giuk3pp/;1610395990;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Meemeli;;;[];;;;text;t2_2o1rogl;False;False;[];;"""For yuri shows, I feel like people would see me watching it for the wrong reason"" - -What does it matter what other people think? Some people think that watching any anime is weird, does that stop you from watching anime altogether?";False;False;;;;1610345911;;False;{};giukagt;False;t3_kuvb7r;False;True;t3_kuvb7r;/r/anime/comments/kuvb7r/for_those_who_watch_yuriyaoi_shows/giukagt/;1610396128;2;True;False;anime;t5_2qh22;;0;[]; -[];;;InsaneBasti;;;[];;;;text;t2_6pl7m43q;False;False;[];;Who is and will forever be a virgin. So?;False;False;;;;1610345934;;False;{};giukblv;False;t3_kuwnj3;False;True;t1_giujvxm;/r/anime/comments/kuwnj3/what_are_some_good_anime_shows_that_have_no_ecchi/giukblv/;1610396148;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Resident_Chemist_619;;;[];;;;text;t2_9993kzaf;False;False;[];;Most Studios won’t have a fixed style since industry depends on different AD/SB/KA each episode as well as most of the industry being freelancers. Some Animators on the other hand have certain distinct styles, it’s very easy to find out if Naotoshi Shida, Weilin Zhang, Yutaka Nakamura or Hiroyuki Yamashita made key animation in a certain scenes.;False;False;;;;1610346078;;False;{};giukidu;False;t3_kuvb8t;False;True;t3_kuvb8t;/r/anime/comments/kuvb8t/what_are_some_of_the_tropes_that_animation/giukidu/;1610396287;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RocketJumpers;;;[];;;;text;t2_1fntzcz4;False;False;[];;Didnt seen the other ones but Log Horizon definetly has some suggestive clothing;False;False;;;;1610346219;;False;{};giukp2h;False;t3_kuwnj3;False;False;t1_giuj6kb;/r/anime/comments/kuwnj3/what_are_some_good_anime_shows_that_have_no_ecchi/giukp2h/;1610396412;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mobilegamegod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Aochhi;light;text;t2_pkuqf;False;False;[];;Wow, people have opinions. What a surprise.;False;False;;;;1610346316;;False;{};giuktq4;False;t3_kuwymr;False;False;t3_kuwymr;/r/anime/comments/kuwymr/what_the_hell_is_wrong_with_mal/giuktq4/;1610396500;4;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;People say the bad ones are helpful because the number of positive reviews far outweigh the number of negative ones and want their opinions seen. Consider it just a vocal minority that pushes their opinion to the forefront.;False;False;;;;1610346490;;False;{};giul1xr;False;t3_kuwymr;False;False;t3_kuwymr;/r/anime/comments/kuwymr/what_the_hell_is_wrong_with_mal/giul1xr/;1610396668;6;True;False;anime;t5_2qh22;;0;[]; -[];;;idunnowhatimdoing5;;;[];;;;text;t2_2utheh86;False;False;[];;yes;False;False;;;;1610346511;;False;{};giul2xu;False;t3_kux0ia;False;True;t3_kux0ia;/r/anime/comments/kux0ia/by_what_episode_of_aot_s4_will_we_see_the_scouts/giul2xu/;1610396686;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yri4lf12;;;[];;;;text;t2_6bfipjd7;False;False;[];;Why do you care?;False;False;;;;1610346531;;False;{};giul3uz;False;t3_kuwymr;False;True;t3_kuwymr;/r/anime/comments/kuwymr/what_the_hell_is_wrong_with_mal/giul3uz/;1610396704;0;True;False;anime;t5_2qh22;;0;[]; -[];;;no_name_horse;;;[];;;;text;t2_8ks8vjaj;False;False;[];;Some animes get better after the first couple of episodes?;False;False;;;;1610346655;;False;{};giul9hg;False;t3_kuvkb4;False;True;t1_giug9nn;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giul9hg/;1610396809;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610346691;moderator;False;{};giulb67;False;t3_kux354;False;True;t3_kux354;/r/anime/comments/kux354/anyone_know_the_name_of_the_anime/giulb67/;1610396839;1;False;False;anime;t5_2qh22;;0;[]; -[];;;mango145;;;[];;;;text;t2_7gkwgk8i;False;False;[];;"Off the top of my head, these come to mind. - -- Himouto umaru-chan -- Hikaru no go -- Azumanga daioh -- Yuru camp -- Sora yori mo Tooi Basho -- Full Moon wo Sagashite";False;False;;;;1610346703;;False;{};giulbpx;False;t3_kuwnj3;False;True;t3_kuwnj3;/r/anime/comments/kuwnj3/what_are_some_good_anime_shows_that_have_no_ecchi/giulbpx/;1610396850;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jaienabzanx;;;[];;;;text;t2_1sm164lx;False;False;[];;Nah I do not mean it in a bad way. Even if it has excessive number of good reviews, the bad reviews will be put up in the front. Like is it because of the algorithm?;False;False;;;;1610346757;;False;{};giuledf;False;t3_kuwymr;False;True;t1_giuktq4;/r/anime/comments/kuwymr/what_the_hell_is_wrong_with_mal/giuledf/;1610396900;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_vogonpoetry_;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/ThisWasATriumph;dark;text;t2_akt6d;False;False;[];;"Did you see the movie? - -No sign of an actual S2 though, and the novels got pretty weird after the first season so I wouldnt get your hopes up for that.";False;False;;;;1610346783;;False;{};giulfph;False;t3_kux0dn;False;False;t3_kux0dn;/r/anime/comments/kux0dn/no_game_no_life_season_2/giulfph/;1610396926;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jaienabzanx;;;[];;;;text;t2_1sm164lx;False;False;[];;So the algorithm was set that way?;False;False;;;;1610346797;;False;{};giulgbw;False;t3_kuwymr;False;True;t1_giul1xr;/r/anime/comments/kuwymr/what_the_hell_is_wrong_with_mal/giulgbw/;1610396937;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cbumpa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cbumpa;light;text;t2_4uaglc4u;False;False;[];;I heard the movie wasn’t about Sora and Shiro so I wasn’t interested :/ that sucks to hear though;False;False;;;;1610346835;;False;{};giuli57;True;t3_kux0dn;False;True;t1_giulfph;/r/anime/comments/kux0dn/no_game_no_life_season_2/giuli57/;1610396973;0;True;False;anime;t5_2qh22;;0;[]; -[];;;jaienabzanx;;;[];;;;text;t2_1sm164lx;False;False;[];;It really does ruin the mood;False;False;;;;1610346855;;False;{};giulj34;False;t3_kuwymr;False;True;t1_giul3uz;/r/anime/comments/kuwymr/what_the_hell_is_wrong_with_mal/giulj34/;1610396993;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_vogonpoetry_;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/ThisWasATriumph;dark;text;t2_akt6d;False;False;[];;The movie is really good, and the main characters are basically still sora and shiro with different names. Would highly recommend watching it.;False;False;;;;1610346921;;False;{};giulm7w;False;t3_kux0dn;False;True;t1_giuli57;/r/anime/comments/kux0dn/no_game_no_life_season_2/giulm7w/;1610397054;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;That's a shame as a ngnl fan, I thought the movie was far superior compared to the series;False;False;;;;1610346955;;False;{};giulnrl;False;t3_kux0dn;False;False;t1_giuli57;/r/anime/comments/kux0dn/no_game_no_life_season_2/giulnrl/;1610397080;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Yri4lf12;;;[];;;;text;t2_6bfipjd7;False;False;[];;Fair point;False;False;;;;1610346964;;False;{};giulo6m;False;t3_kuwymr;False;True;t1_giulj34;/r/anime/comments/kuwymr/what_the_hell_is_wrong_with_mal/giulo6m/;1610397089;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;Irs a prequel to the main series. I didn't like it a lot but it's about them in a less direct way;False;False;;;;1610346972;;False;{};giulolv;False;t3_kux0dn;False;True;t1_giuli57;/r/anime/comments/kux0dn/no_game_no_life_season_2/giulolv/;1610397098;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Marlow533;;;[];;;;text;t2_3fxs9lmu;False;False;[];;There’s more than one;False;False;;;;1610346985;;False;{};giulp79;False;t3_kux354;False;True;t3_kux354;/r/anime/comments/kux354/anyone_know_the_name_of_the_anime/giulp79/;1610397110;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi sharris735, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610346987;moderator;False;{};giulpab;False;t3_kux5rt;False;True;t3_kux5rt;/r/anime/comments/kux5rt/hi_need_a_rec_based_on_black_butler/giulpab/;1610397111;1;False;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;Pretty sure its like a voting system where someone can say its helpful which pushes it up towards the top;False;False;;;;1610346992;;False;{};giulpkc;False;t3_kuwymr;False;True;t1_giulgbw;/r/anime/comments/kuwymr/what_the_hell_is_wrong_with_mal/giulpkc/;1610397115;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jaienabzanx;;;[];;;;text;t2_1sm164lx;False;False;[];;Thank you for understanding;False;False;;;;1610347007;;False;{};giulq6w;False;t3_kuwymr;False;True;t1_giulo6m;/r/anime/comments/kuwymr/what_the_hell_is_wrong_with_mal/giulq6w/;1610397127;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jaienabzanx;;;[];;;;text;t2_1sm164lx;False;False;[];;Oh I did not know that.;False;False;;;;1610347042;;False;{};giulrsw;False;t3_kuwymr;False;True;t1_giulpkc;/r/anime/comments/kuwymr/what_the_hell_is_wrong_with_mal/giulrsw/;1610397157;1;True;False;anime;t5_2qh22;;0;[]; -[];;;G_Spark233;;;[];;;;text;t2_kn9bb;False;False;[];;This is why I never bother looking at any of the reviews.;False;False;;;;1610347057;;False;{};giulsie;False;t3_kuwymr;False;False;t3_kuwymr;/r/anime/comments/kuwymr/what_the_hell_is_wrong_with_mal/giulsie/;1610397170;0;True;False;anime;t5_2qh22;;0;[];True -[];;;cbumpa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cbumpa;light;text;t2_4uaglc4u;False;False;[];;Ahhh gonna have to watch it;False;False;;;;1610347069;;False;{};giult2u;True;t3_kux0dn;False;False;t1_giulm7w;/r/anime/comments/kux0dn/no_game_no_life_season_2/giult2u/;1610397181;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TDS_Reaper;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ramenn/;light;text;t2_2qks3axi;False;False;[];;Don't watch monogatari as your second anime, I think you should watch 10 more titles or at least a couple more, otherwise you wont be able to appreciate it to its full potential. Might sound weird but I don't know how to word it properly. But yes it is a really good series, especially if you want character developments and relationships.;False;False;;;;1610347083;;False;{};giultok;False;t3_kuw8gk;False;True;t3_kuw8gk;/r/anime/comments/kuw8gk/should_i_watch_bakemonogatari/giultok/;1610397191;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cbumpa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cbumpa;light;text;t2_4uaglc4u;False;False;[];;Think my heart is just still broken from no season 2 lmao;False;False;;;;1610347089;;False;{};giultz7;True;t3_kux0dn;False;True;t1_giulnrl;/r/anime/comments/kux0dn/no_game_no_life_season_2/giultz7/;1610397197;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jaienabzanx;;;[];;;;text;t2_1sm164lx;False;False;[];;"Any alternatives for mal? - -Btw, happy birthday dude";False;False;;;;1610347172;;False;{};giulxsc;False;t3_kuwymr;False;False;t1_giulsie;/r/anime/comments/kuwymr/what_the_hell_is_wrong_with_mal/giulxsc/;1610397274;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;First of all, mad house is known as that one studio that barely ever has made a sequel, and then anime only serve as commercial for the source material, out of all the anime ever made, 90% of them never reached the ending(especially in the recent days), there is a good chance that ngnl will receive a s2 considering the popularity of the light novel, but even that isn't for sure and even if it were to get one, it will never cover the source material, your best bet is to trying to getting into the source material instead of sticking to anime;False;False;;;;1610347190;;False;{};giulymc;False;t3_kux0dn;False;True;t3_kux0dn;/r/anime/comments/kux0dn/no_game_no_life_season_2/giulymc/;1610397291;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Kanon (2006), the first one;False;False;;;;1610347273;;False;{};gium2fw;False;t3_kux354;False;True;t3_kux354;/r/anime/comments/kux354/anyone_know_the_name_of_the_anime/gium2fw/;1610397363;2;True;False;anime;t5_2qh22;;0;[]; -[];;;G_Spark233;;;[];;;;text;t2_kn9bb;False;False;[];;"I’ve only ever used MAL and it’s by far the most popular but there’s still a few lesser known alternatives. Although I’ve never used them so I can’t comment on them. - -Thanks but it's not my Bday. I think it's the anniversary for when I signed up for reddit.";False;False;;;;1610347296;;False;{};gium3iw;False;t3_kuwymr;False;True;t1_giulxsc;/r/anime/comments/kuwymr/what_the_hell_is_wrong_with_mal/gium3iw/;1610397385;1;True;False;anime;t5_2qh22;;0;[];True -[];;;PaulWalkerIV;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MasonCrosbysFoot;light;text;t2_11thw0;False;False;[];;"Wasn’t the best first episode I’ve seen but it’s pretty high up there. The art style is first rate and with a soundtrack to match. - -It’s the first current anime I’m keeping up with and couldn’t be happier tbh. I just have to suppress the urge to binge the manga, which I will probably do after the anime finishes";False;False;;;;1610347303;;False;{};gium3uc;False;t3_kuwe8k;False;True;t3_kuwe8k;/r/anime/comments/kuwe8k/horimiya_is_the_best_first_episode_of_an_anime/gium3uc/;1610397391;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;There's no algorithm in Mal, you just see the most recent posts on the top;False;False;;;;1610347479;;False;{};giumbyy;False;t3_kuwymr;False;True;t1_giuledf;/r/anime/comments/kuwymr/what_the_hell_is_wrong_with_mal/giumbyy/;1610397546;1;True;False;anime;t5_2qh22;;0;[]; -[];;;melcarba;;;[];;;;text;t2_ywnzr;False;False;[];;"\>mad house is known as that one studio that barely ever has made a sequel - -Overlord? Chihayafuru? Ace of the Diamond? One Punch Man? Seems like the chances that a ""Madhouse anime"" gets a sequel isn't that much different from anime produced by other studios.";False;False;;;;1610347503;;False;{};giumd2a;False;t3_kux0dn;False;True;t1_giulymc;/r/anime/comments/kux0dn/no_game_no_life_season_2/giumd2a/;1610397566;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;OperatorERROR0919;;;[];;;;text;t2_6g1zxhwa;False;False;[];;">""no ecchi"" - - ->""no suggestive clothes""";False;False;;;;1610347580;;False;{};giumgmp;False;t3_kuwnj3;False;True;t1_giukblv;/r/anime/comments/kuwnj3/what_are_some_good_anime_shows_that_have_no_ecchi/giumgmp/;1610397639;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kairyu_gen1;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/kairyu_gen1;dark;text;t2_v5hbm;False;False;[];;I think the most important thing to remember is why you're doing it. Anime is a great escape, a way to relax so the mental exhaustion of normal life doesn't overwhelm you, but I find if I watch too much anime, I get a little burnt out and that itself leads to mental exhaustion. During those times, I need to walk away and find something different. It's not so much about missing out on stuff, there's way more stuff to do than time to do it, you'll never get to it all, so you should just focus on whatever you feel like doing (as long as you take care of yourself and meet all your basic responsibilities).;False;False;;;;1610347624;;False;{};giumint;False;t3_kuw3b5;False;True;t1_giuh3ce;/r/anime/comments/kuw3b5/how_to_stay_obsessed_with_an_anime/giumint/;1610397681;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Instead of searching for an alternative for Mal, it's a better bet to just ignore the comments(they don't appear anyway unless you click on posts). Mal is currently the most well received one among its kind as well as pretty active. You should just go over the ratings instead of the reviews;False;False;;;;1610347705;;False;{};giummba;False;t3_kuwymr;False;True;t1_giulxsc;/r/anime/comments/kuwymr/what_the_hell_is_wrong_with_mal/giummba/;1610397757;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610347742;moderator;False;{};giumnxg;False;t3_kuxbyg;False;True;t3_kuxbyg;/r/anime/comments/kuxbyg/one_piece_question_need_help/giumnxg/;1610397801;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;I don't think 3 is a high number also madhouse never made a sequel for opm, try going over some other studios like a-1 pictures or JC staff, and see how many sequels they have made;False;False;;;;1610347799;;False;{};giumqjf;False;t3_kux0dn;False;True;t1_giumd2a;/r/anime/comments/kux0dn/no_game_no_life_season_2/giumqjf/;1610397853;2;True;False;anime;t5_2qh22;;0;[]; -[];;;InsaneBasti;;;[];;;;text;t2_6pl7m43q;False;False;[];;Literally a wedding dress.. Ok i guess you could argue about that one scene with the body pillows, wich is the most it gets. But you dont see anythink but a lil skin and its 1 scene thats not even 5min.so yet again just for her sake of a joke.;False;False;;;;1610347873;;False;{};giumtxn;False;t3_kuwnj3;False;True;t1_giumgmp;/r/anime/comments/kuwnj3/what_are_some_good_anime_shows_that_have_no_ecchi/giumtxn/;1610397937;0;True;False;anime;t5_2qh22;;0;[]; -[];;;knokaka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/knokaka?order=4;light;text;t2_ytri4;False;False;[];;"are you can withstand constant heavy anime trope that make you questioning yourself as an human live in society? - -if yes then yes. if no then no - -&#x200B; - -jump from my hero academia (AKA Normies Anime) to Bakemonogatari (literal god of degeneracy anime) is like playing parkour jump from a dog house to skyscrapper. - -&#x200B; - -if you want a deep character relationship but still toned down to minimal anime trope i recommend - -Romcom : Rascal does not dream bunny girls senpai. (it literally not about bunny girl) - -Sport : Haikyuu - -Battle Shonen : Jujutsu Kaisen";False;False;;;;1610347916;;1610348994.0;{};giumvwz;False;t3_kuw8gk;False;False;t3_kuw8gk;/r/anime/comments/kuw8gk/should_i_watch_bakemonogatari/giumvwz/;1610397979;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;I don't remember enjoying it. It messes up some future stuff a little. I just thought it was boring;False;False;;;;1610347998;;False;{};giumzn3;False;t3_kuxbyg;False;False;t3_kuxbyg;/r/anime/comments/kuxbyg/one_piece_question_need_help/giumzn3/;1610398054;7;True;False;anime;t5_2qh22;;0;[]; -[];;;KendotsX;;;[];;;;text;t2_j6nbtko;False;False;[];;Having seen it, it's not that good really. Not to mention it contradicts the canon twice.;False;False;;;;1610348008;;False;{};giun036;False;t3_kuxbyg;False;False;t3_kuxbyg;/r/anime/comments/kuxbyg/one_piece_question_need_help/giun036/;1610398064;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FuruiOnara;;;[];;;;text;t2_477q2pi9;False;False;[];;It's a really good series.;False;False;;;;1610348043;;False;{};giun1q3;False;t3_kuw8gk;False;True;t3_kuw8gk;/r/anime/comments/kuw8gk/should_i_watch_bakemonogatari/giun1q3/;1610398096;1;True;False;anime;t5_2qh22;;0;[]; -[];;;melcarba;;;[];;;;text;t2_ywnzr;False;False;[];;You're comparing studios whose anime output is way more than the output of Madhouse. Of course, by virtue of having more produced, both of them will have more sequels. Also, there are also a handful of sequels to A-1 and JC Staff that changed studios.;False;False;;;;1610348075;;False;{};giun33a;False;t3_kux0dn;False;True;t1_giumqjf;/r/anime/comments/kux0dn/no_game_no_life_season_2/giun33a/;1610398123;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610348082;moderator;False;{};giun3fr;False;t3_kuxere;False;True;t3_kuxere;/r/anime/comments/kuxere/once_in_a_lifetime_opportunity_right_here/giun3fr/;1610398130;1;False;False;anime;t5_2qh22;;0;[]; -[];;;GoldZero5;;;[];;;;text;t2_17kebv;False;False;[];;Is there a specific genre you like?;False;False;;;;1610348193;;False;{};giun8ii;False;t3_kuxere;False;True;t3_kuxere;/r/anime/comments/kuxere/once_in_a_lifetime_opportunity_right_here/giun8ii/;1610398232;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Blakeandcole1;;;[];;;;text;t2_210dc75d;False;False;[];;nope i am up for whatever you got!;False;False;;;;1610348232;;False;{};giunaa8;True;t3_kuxere;False;True;t1_giun8ii;/r/anime/comments/kuxere/once_in_a_lifetime_opportunity_right_here/giunaa8/;1610398268;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dralcax;;MAL;[];;http://myanimelist.net/animelist/Dralcax;dark;text;t2_9zhve;False;False;[];;If somebody feels the need to put in the effort to write a full review, either they're gushing about their favorite show, or trashing on something they really hated. Most opinions falling in between don't have the passion behind them to warrant a review.;False;False;;;;1610348302;;False;{};giundgv;False;t3_kuwymr;False;True;t3_kuwymr;/r/anime/comments/kuwymr/what_the_hell_is_wrong_with_mal/giundgv/;1610398332;3;True;False;anime;t5_2qh22;;0;[]; -[];;;hitogomi911;;;[];;;;text;t2_83ec5qv5;False;False;[];;"* Fullmetal Alchemist -* Steins gate -* Hunter X Hunter (2011) -* Attack on Titan -* Haikyuu -* Sword Art Online -* Mahouka -* Your lie in April -* Your Name -* Kodomo no jikan -* Colour clouded palace -* Love live -* Death Note -* Idolmaster (not the xenoglossia) -* Re Zero - -Watch a few episodes of each and get a taste of it. All of them are good on their own merits.";False;False;;;;1610348348;;1610348636.0;{};giunflh;False;t3_kuxere;False;True;t3_kuxere;/r/anime/comments/kuxere/once_in_a_lifetime_opportunity_right_here/giunflh/;1610398377;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610348456;moderator;False;{};giunkg2;False;t3_kuxhw3;False;True;t3_kuxhw3;/r/anime/comments/kuxhw3/looking_for_given_movie/giunkg2/;1610398475;1;False;False;anime;t5_2qh22;;0;[]; -[];;;voornaam1;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://www.anime-planet.com/users/Max4444;dark;text;t2_3yiwp1ue;False;False;[];;I don't know how good pupa would be for beginners...;False;False;;;;1610348486;;False;{};giunlri;False;t3_kuxere;False;True;t1_giunflh;/r/anime/comments/kuxere/once_in_a_lifetime_opportunity_right_here/giunlri/;1610398501;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610348518;;False;{};giunn79;False;t3_kuxere;False;True;t1_giunflh;/r/anime/comments/kuxere/once_in_a_lifetime_opportunity_right_here/giunn79/;1610398533;0;True;False;anime;t5_2qh22;;0;[]; -[];;;hitogomi911;;;[];;;;text;t2_83ec5qv5;False;False;[];;Changed it to kodomo no jikan.;False;False;;;;1610348534;;False;{};giunnye;False;t3_kuxere;False;True;t1_giunlri;/r/anime/comments/kuxere/once_in_a_lifetime_opportunity_right_here/giunnye/;1610398547;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;"If that's your argument then, here's something I got after a bit of research - -Madhouse: it was founded in year 1972 and has created an average of 300 animes since then, (why are you talking as if it's a small studio, why would you assume it has a small output, when majority of major titles from 2000-2010 consisted of madhouse stuff) - -A-1: it is a studio founded in 2005, and has created an average of 200 anime, (which is probably a lot considering the time it was founded in and the reason why you think it has high output but still it has only created 2/3rd of the amount done by madhouse. - -Now try comparing the sequels done by each, how close they come";False;False;;;;1610348612;;False;{};giunrfo;False;t3_kux0dn;False;True;t1_giun33a;/r/anime/comments/kux0dn/no_game_no_life_season_2/giunrfo/;1610398613;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610348674;;False;{};giunu5k;False;t3_kuxi0h;False;False;t3_kuxi0h;/r/anime/comments/kuxi0h/question_what_would_you_call_a_gender_neutral/giunu5k/;1610398670;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Blakeandcole1;;;[];;;;text;t2_210dc75d;False;False;[];;hey this is exactly what I need, appreciate you;False;False;;;;1610348687;;False;{};giunur5;True;t3_kuxere;False;True;t1_giunflh;/r/anime/comments/kuxere/once_in_a_lifetime_opportunity_right_here/giunur5/;1610398683;1;True;False;anime;t5_2qh22;;0;[]; -[];;;voornaam1;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://www.anime-planet.com/users/Max4444;dark;text;t2_3yiwp1ue;False;False;[];;Moriarty the Patriot has similar vibes, and it takes place in the same time on the same place. Season 1 just finished airing, and there will probably be a season 2 in the future .;False;False;;;;1610348692;;False;{};giunuz1;False;t3_kux5rt;False;False;t3_kux5rt;/r/anime/comments/kux5rt/hi_need_a_rec_based_on_black_butler/giunuz1/;1610398687;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;False;[];;If you're interested in it, it's worth a shot. Don't ask people, only you can figure out if it's something you'd find to be worth watching. If you don't like it, you can just drop it. Bakemonogatari is a very different show from MHA, a lot more dialogue driven and artsy, not really much of an action show, and generally very odd and with a lot of fanservice (which plays a purpose in the narrative beyond titillation). Most people, myself included, would argue that if you're looking for deep character relationships, you couldn't do much better than the Monogatari series.;False;False;;;;1610348710;;False;{};giunvqb;False;t3_kuw8gk;False;True;t3_kuw8gk;/r/anime/comments/kuw8gk/should_i_watch_bakemonogatari/giunvqb/;1610398701;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Guilty-Excuse-6093;;;[];;;;text;t2_987cnmfl;False;False;[];;For these kinda relationship you should watch Naruto or one piece;False;False;;;;1610348739;;False;{};giunx1m;False;t3_kuw8gk;False;True;t3_kuw8gk;/r/anime/comments/kuw8gk/should_i_watch_bakemonogatari/giunx1m/;1610398727;4;True;False;anime;t5_2qh22;;0;[]; -[];;;GoldZero5;;;[];;;;text;t2_17kebv;False;False;[];;"Well a lot of people will tell you to watch My Hero Academia, Naruto, One Piece, Dragonball, Bleach and Attack on Titan as some examples. - -But here are a few other choices - -- Ushio to Tora (39 episodes) - -- Jojo’s Bizzare Adventure (152 episodes) - -- Gintama (367 Episodes plus 3 films and 6 Original Video Animations) - -- Hellsing Ultimate (10 Original Video Animations) - -- Mob Psycho 100 (25 episodes and 2 OVAs)";False;False;;;;1610348752;;False;{};giunxl7;False;t3_kuxere;False;True;t1_giunaa8;/r/anime/comments/kuxere/once_in_a_lifetime_opportunity_right_here/giunxl7/;1610398738;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"Spousu? - -Esu Ou? (for S.O.)";False;False;;;;1610348778;;False;{};giunyrp;False;t3_kuxi0h;False;False;t3_kuxi0h;/r/anime/comments/kuxi0h/question_what_would_you_call_a_gender_neutral/giunyrp/;1610398761;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610348804;;False;{};giunzwv;False;t3_kuxi0h;False;True;t3_kuxi0h;/r/anime/comments/kuxi0h/question_what_would_you_call_a_gender_neutral/giunzwv/;1610398783;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;River_sounds;;;[];;;;text;t2_y4vd1;False;False;[];;[The Girl Who Leapt Through Time](https://myanimelist.net/anime/2236/Toki_wo_Kakeru_Shoujo);False;False;;;;1610348810;;False;{};giuo06d;False;t3_kuwnj3;False;True;t3_kuwnj3;/r/anime/comments/kuwnj3/what_are_some_good_anime_shows_that_have_no_ecchi/giuo06d/;1610398788;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];; Spousou;False;False;;;;1610348813;;False;{};giuo0a2;False;t3_kuxi0h;False;False;t3_kuxi0h;/r/anime/comments/kuxi0h/question_what_would_you_call_a_gender_neutral/giuo0a2/;1610398791;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;That sounds pretty edgy, ngl;False;False;;;;1610348827;;False;{};giuo0x8;False;t3_kuxjmi;False;True;t3_kuxjmi;/r/anime/comments/kuxjmi/spoilers_demon_slayer_kimetsu_no_yaiba_we_humans/giuo0x8/;1610398803;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;False;[];;What kinds of shows do you generally enjoy? Or what type of show would you like to watch right now? Anime is not a genre, it is basically just TV shows and movies, exactly like the ones you're probably already familiar with. Only difference is they're animated and from Japan. It would be a lot easier to give recommendations if we understood your taste a bit.;False;False;;;;1610348873;;False;{};giuo30q;False;t3_kuxere;False;True;t3_kuxere;/r/anime/comments/kuxere/once_in_a_lifetime_opportunity_right_here/giuo30q/;1610398842;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610348934;;False;{};giuo5rn;False;t3_kuxhw3;False;True;t3_kuxhw3;/r/anime/comments/kuxhw3/looking_for_given_movie/giuo5rn/;1610398896;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TravisScotch--;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/TravisScotch/;light;text;t2_7fexh1u7;False;False;[];;The only filler arc worth watching in One Piece is G8. Skip everything else;False;False;;;;1610348989;;False;{};giuo89n;False;t3_kuxbyg;False;True;t3_kuxbyg;/r/anime/comments/kuxbyg/one_piece_question_need_help/giuo89n/;1610398945;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sgt_Meowmers;;;[];;;;text;t2_61t28;False;False;[];;I've never seen one with Kurisu but there's [this version.](https://i.redd.it/o0qaqsnnrwd11.jpg);False;False;;;;1610349054;;False;{};giuob75;False;t3_kuszmu;False;True;t3_kuszmu;/r/anime/comments/kuszmu/help_finding_image_steinsgate/giuob75/;1610399002;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RudgieFudgie;;;[];;;;text;t2_2l0df5qs;False;False;[];;So don't watch it?;False;False;;;;1610349058;;False;{};giuobct;True;t3_kuxbyg;False;True;t1_giuo89n;/r/anime/comments/kuxbyg/one_piece_question_need_help/giuobct/;1610399004;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RudgieFudgie;;;[];;;;text;t2_2l0df5qs;False;False;[];;So don't watch it?;False;False;;;;1610349068;;False;{};giuobtg;True;t3_kuxbyg;False;True;t1_giun036;/r/anime/comments/kuxbyg/one_piece_question_need_help/giuobtg/;1610399012;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TravisScotch--;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/TravisScotch/;light;text;t2_7fexh1u7;False;False;[];;Yeah;False;False;;;;1610349072;;False;{};giuobzy;False;t3_kuxbyg;False;True;t1_giuobct;/r/anime/comments/kuxbyg/one_piece_question_need_help/giuobzy/;1610399016;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RudgieFudgie;;;[];;;;text;t2_2l0df5qs;False;False;[];;So don't watch it?;False;False;;;;1610349079;;False;{};giuoc9l;True;t3_kuxbyg;False;True;t1_giumzn3;/r/anime/comments/kuxbyg/one_piece_question_need_help/giuoc9l/;1610399020;1;True;False;anime;t5_2qh22;;0;[]; -[];;;onefootstout;;;[];;;;text;t2_qyi54;False;False;[];;It's coming to crunchyroll in February;False;False;;;;1610349084;;False;{};giuocj0;False;t3_kuxhw3;False;True;t3_kuxhw3;/r/anime/comments/kuxhw3/looking_for_given_movie/giuocj0/;1610399026;6;True;False;anime;t5_2qh22;;0;[]; -[];;;SatouSmith;;;[];;;;text;t2_85ir9527;False;True;[];;Name a show where humans are portrayed as saints. They are either the victims or abusers.;False;False;;;;1610349117;;False;{};giuodyj;False;t3_kuxjmi;False;True;t3_kuxjmi;/r/anime/comments/kuxjmi/spoilers_demon_slayer_kimetsu_no_yaiba_we_humans/giuodyj/;1610399054;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jianthepro;;;[];;;;text;t2_4henx9x1;False;False;[];;Many people would start from death note;False;False;;;;1610349202;;False;{};giuohrp;False;t3_kuxere;False;True;t3_kuxere;/r/anime/comments/kuxere/once_in_a_lifetime_opportunity_right_here/giuohrp/;1610399130;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sgt_Meowmers;;;[];;;;text;t2_61t28;False;False;[];;"Grimgar of Fantasy and Ash for a more serious version of a similar setting. - -Overlord for a similar setting with a crazy OP protagonist - -Re:Zero for a crazy under powered protagonist (And much more brutal setting) - -I've heard Log Horizon is good but havent actually seen it.";False;False;;;;1610349240;;False;{};giuojfo;False;t3_kuw5y8;False;True;t3_kuw5y8;/r/anime/comments/kuw5y8/anime_like_konosuba_and_is_it_wrong_to_pick_up/giuojfo/;1610399162;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thaboi_55;;;[];;;;text;t2_6yokau0i;False;False;[];;This is based on multiple factors like how cold they are, what their motivation is, and how iconic they are.;False;False;;;;1610349264;;False;{};giuokhm;True;t3_kuxo7l;False;True;t3_kuxo7l;/r/anime/comments/kuxo7l/top_20_best_anime_villains/giuokhm/;1610399183;1;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;Whichever they prefer. Spousu also works.;False;False;;;;1610349276;;False;{};giuol07;False;t3_kuxi0h;False;False;t3_kuxi0h;/r/anime/comments/kuxi0h/question_what_would_you_call_a_gender_neutral/giuol07/;1610399192;8;True;False;anime;t5_2qh22;;0;[]; -[];;;falkner97;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/falkner99;light;text;t2_6y92q69v;False;False;[];;"Society didnt turned them evil, they become evil on their own will - -How many other people has gone through worst than them and still managed to be sane? - -Its just like murder in the current generation, no matter how angry you are, there isnt a single reason its fine for you to take a person life - -They just being edgy thats it";False;False;;;;1610349307;;False;{};giuombs;False;t3_kuxjmi;False;True;t3_kuxjmi;/r/anime/comments/kuxjmi/spoilers_demon_slayer_kimetsu_no_yaiba_we_humans/giuombs/;1610399216;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Kanyedaman69;;;[];;;;text;t2_7vns8a3u;False;False;[];;Clean man;False;False;;;;1610349317;;False;{};giuomsj;False;t3_kuxo7l;False;True;t3_kuxo7l;/r/anime/comments/kuxo7l/top_20_best_anime_villains/giuomsj/;1610399225;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;School days. I want my 4 hours back pls. The satisfying ending is not worth the pain of getting through the rest of the episodes. I can count the good scenes on one hand and they still weren't something that special;False;False;;;;1610349401;;False;{};giuoqf3;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giuoqf3/;1610399295;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610349506;;False;{};giuouzz;False;t3_kuxjmi;False;True;t1_giuombs;/r/anime/comments/kuxjmi/spoilers_demon_slayer_kimetsu_no_yaiba_we_humans/giuouzz/;1610399382;1;True;False;anime;t5_2qh22;;0;[]; -[];;;knokaka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/knokaka?order=4;light;text;t2_ytri4;False;False;[];;"i think it because ""do you find this review helpful"" score in mal that make a controversial one being helpful to show the bad side of anime.";False;False;;;;1610349516;;False;{};giuovfg;False;t3_kuwymr;False;True;t3_kuwymr;/r/anime/comments/kuwymr/what_the_hell_is_wrong_with_mal/giuovfg/;1610399391;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;Huh those things you mentioned are some of the reasons I like monogatari. Well if you're not enjoying it just drop it, watching anime is supposed it be fun not a chore;False;False;;;;1610349527;;False;{};giuovwa;False;t3_kuvkb4;False;True;t1_giuidvb;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giuovwa/;1610399401;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610349539;;False;{};giuowe1;False;t3_kuxjmi;False;True;t1_giuo0x8;/r/anime/comments/kuxjmi/spoilers_demon_slayer_kimetsu_no_yaiba_we_humans/giuowe1/;1610399411;1;True;False;anime;t5_2qh22;;0;[]; -[];;;River_sounds;;;[];;;;text;t2_y4vd1;False;False;[];;Don't be too affected by the reviews. Watch and judge it for yourself. If you think it's good, give it a good score.;False;False;;;;1610349653;;False;{};giup11h;False;t3_kuwymr;False;True;t3_kuwymr;/r/anime/comments/kuwymr/what_the_hell_is_wrong_with_mal/giup11h/;1610399502;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MiltonThermo;;;[];;;;text;t2_9rl9iqsp;False;False;[];;Aizen was goated;False;False;;;;1610349678;;False;{};giup27x;False;t3_kuxo7l;False;True;t3_kuxo7l;/r/anime/comments/kuxo7l/top_20_best_anime_villains/giup27x/;1610399523;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fruit123456789;;;[];;;;text;t2_9116x990;False;False;[];;"Easy for you to say. Some people have friends and others by their side to continue supporting them. Thats why they didn't turn. People like Akaza take one blow after another. He lost his father then his future wife and father in law. No one was there with him. You think a sane person can handle it? - -Lets see what happens if one of your family members die ""touchwood"" (sorry if it offends you i just giving an example). Like how Akaza lost his dad. - -I can still accept your argument of killing is wrong but absolutely not the part on blaming the individual and not the society.";False;False;;;;1610349683;;1610351062.0;{};giup2eu;False;t3_kuxjmi;False;True;t1_giuombs;/r/anime/comments/kuxjmi/spoilers_demon_slayer_kimetsu_no_yaiba_we_humans/giup2eu/;1610399526;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fruit123456789;;;[];;;;text;t2_9116x990;False;False;[];;"Just gonna copy and paste. - -Easy for you to say. Some people have friends and others by their side to continue supporting them. People like Akaza take one blow after another. He lost his father then his future wife and father in law. No one was there with him. You think a sane person can handle it? - -If your mom or dad died touchwood i wondered what would you have done.";False;False;;;;1610349701;;1610349913.0;{};giup363;False;t3_kuxjmi;False;True;t1_giuo0x8;/r/anime/comments/kuxjmi/spoilers_demon_slayer_kimetsu_no_yaiba_we_humans/giup363/;1610399542;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;Well, Mushoku Tensei started 6 years before TBATE did, so I think you're calling out the wrong thing.;False;False;;;;1610349909;;False;{};giupcy8;False;t3_kuxt3f;False;False;t3_kuxt3f;/r/anime/comments/kuxt3f/mushoku_tensei_jobless_incarnation_vs_the/giupcy8/;1610399717;17;True;False;anime;t5_2qh22;;0;[]; -[];;;melcarba;;;[];;;;text;t2_ywnzr;False;False;[];;Madhouse has a large output **back then**. Nowadays, they don't make much. And even then, saying that Madhouse is notorious for not making sequels for their shows is still baseless when its not only true for Madhouse. Also weird that you use A-1 as comparison when A-1 (and CloverWorks) is heavily backed by Aniplex, hence their shows are likely to get sequels.;False;False;;;;1610349938;;False;{};giupecv;False;t3_kux0dn;False;True;t1_giunrfo;/r/anime/comments/kux0dn/no_game_no_life_season_2/giupecv/;1610399742;1;True;False;anime;t5_2qh22;;0;[]; -[];;;isabelles;;MAL;[];;http://myanimelist.net/animelist/Roseink64;dark;text;t2_o6xho;False;False;[];;If you liked the Black Butler anime you should definitely read on in the manga. It gets way better and also way darker;False;False;;;;1610349940;;False;{};giupefs;False;t3_kux5rt;False;True;t3_kux5rt;/r/anime/comments/kux5rt/hi_need_a_rec_based_on_black_butler/giupefs/;1610399743;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheAnimeSyndicate;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;I Post Completed Anime;dark;text;t2_43nqhnqw;False;False;[];;Mushoku started that style of isekai for a lot series to become more marketable even though it happened a few times before its blown popularity;False;False;;;;1610349949;;False;{};giupewl;False;t3_kuxt3f;False;False;t3_kuxt3f;/r/anime/comments/kuxt3f/mushoku_tensei_jobless_incarnation_vs_the/giupewl/;1610399751;4;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;A lot. There are just sooo many anime that I still haven't seen the ending of. Attack on titan, psycho pass, tower of God, re zero, demon slayer;False;False;;;;1610349988;;False;{};giupgtl;False;t3_kutgit;False;True;t3_kutgit;/r/anime/comments/kutgit/what_anime_are_you_living_for_right_now/giupgtl/;1610399788;1;True;False;anime;t5_2qh22;;0;[]; -[];;;toucanlost;;;[];;;;text;t2_ln61o;False;False;[];;I'm not as self conscious as you, however I think there certainly is a sense of self-reflection that is off-putting when I watched a clip from Kase-san, bc of it's idealized portrayal of girls (smelling like flowers) compared to something I find more comfortable like 'I faked a marriage with my kouhai to shut my parents up' which portrays a woman with struggles. As for you perhaps try a BL by a male author such as Wizdoms or Dousei Yankee Akamatsu Seven?;False;False;;;;1610350022;;False;{};giupie5;False;t3_kuvb7r;False;True;t3_kuvb7r;/r/anime/comments/kuvb7r/for_those_who_watch_yuriyaoi_shows/giupie5/;1610399817;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;I'd give anything to erase my memories of aot and reexperience this masterpiece for the first time again. Don't worry about spoilers too much, pretty much everything in aot is a spoiler lol;False;False;;;;1610350109;;False;{};giupmll;False;t3_kutgit;False;True;t1_giuj5qh;/r/anime/comments/kutgit/what_anime_are_you_living_for_right_now/giupmll/;1610399892;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeowlite;;;[];;;;text;t2_xyzpq;False;False;[];;Mushoku tensei(Jobless) is the king of isekai for a reason, it's the trend starter, Rudy is the first victim of truck kun, it's format were copied by lots of other writer just like how tolkien inspired the modern day fantasy setting, it not really plagiarism, you don't call any fantasy work that feature orc, elves and dwarves in medieval setting plagiarize tolkien.;False;False;;;;1610350109;;False;{};giupmmk;False;t3_kuxt3f;False;False;t3_kuxt3f;/r/anime/comments/kuxt3f/mushoku_tensei_jobless_incarnation_vs_the/giupmmk/;1610399893;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Iwasforger03;;;[];;;;text;t2_334ksevn;False;False;[];;ah, I forgot to clarify that. I watched the Aninews episode on it, I already new Jobless is older. I'll fix.;False;False;;;;1610350126;;False;{};giupnhz;True;t3_kuxt3f;False;True;t1_giupcy8;/r/anime/comments/kuxt3f/mushoku_tensei_jobless_incarnation_vs_the/giupnhz/;1610399908;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Wow, not something you should be discussing in this subreddit;False;False;;;;1610350163;;False;{};giuppky;False;t3_kuxjmi;False;True;t1_giup363;/r/anime/comments/kuxjmi/spoilers_demon_slayer_kimetsu_no_yaiba_we_humans/giuppky/;1610399945;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Iwasforger03;;;[];;;;text;t2_334ksevn;False;False;[];;Aninews said something like that, but Beginning is a little... on the nose.;False;False;;;;1610350220;;False;{};giupspf;True;t3_kuxt3f;False;True;t1_giupewl;/r/anime/comments/kuxt3f/mushoku_tensei_jobless_incarnation_vs_the/giupspf/;1610400016;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Tasthar;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tasthar;light;text;t2_1fhlyiyc;False;False;[];;Darling in the Franxx. Didn't like it since episode 1, and it was only getting worse each episode.;False;False;;;;1610350488;;False;{};giuq6j8;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giuq6j8/;1610400270;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yeeaahduudee;;;[];;;;text;t2_58dwi607;False;False;[];;I love esu ou;False;False;;;;1610350497;;False;{};giuq70g;False;t3_kuxi0h;False;False;t1_giunyrp;/r/anime/comments/kuxi0h/question_what_would_you_call_a_gender_neutral/giuq70g/;1610400278;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jianthepro;;;[];;;;text;t2_4henx9x1;False;False;[];;"Domestic girlfriend - -Its just pure torture from beginning til almost to the very end but luckily the last few episodes were able to make it up.";False;False;;;;1610350503;;False;{};giuq7bn;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giuq7bn/;1610400283;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bombader;;;[];;;;text;t2_zig03;False;False;[];;"Who would guess a wholesome moment in a fairly lewd show. - -The show also connects electricity as a form of sorcery, which I thought was funny.";False;False;;;;1610350589;;False;{};giuqbr1;False;t3_kutpex;False;True;t3_kutpex;/r/anime/comments/kutpex/fino_is_tested_yuushibu/giuqbr1/;1610400360;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thaboi_55;;;[];;;;text;t2_6yokau0i;False;False;[];;100% he goated. People sleep on him though cuz they hate bleach which sucks;False;False;;;;1610350605;;False;{};giuqco5;True;t3_kuxo7l;False;True;t1_giup27x;/r/anime/comments/kuxo7l/top_20_best_anime_villains/giuqco5/;1610400377;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610350605;moderator;False;{};giuqcov;False;t3_kuxzlc;False;True;t3_kuxzlc;/r/anime/comments/kuxzlc/one_piece_question_anime_to_manga/giuqcov/;1610400378;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;"But that beside the point why are you beating around the bush, why not just give a decent list of sequel made by madouse, wouldn't it be a faster way to prove your point? - -Also does it really matter when they had a larger output?, It's the same thing, sequels made during the 80s or sequels made now, no point in mentioning. - -Despite having aniplex backing them, my point still stands, they probably even could have made sequels of quite a bit of animes in the time they made all those 300 of them, I mean what's the difference between making 300 animes or 300 sequel";False;False;;;;1610350750;;False;{};giuql3w;False;t3_kux0dn;False;True;t1_giupecv;/r/anime/comments/kux0dn/no_game_no_life_season_2/giuql3w/;1610400516;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Iwasforger03;;;[];;;;text;t2_334ksevn;False;False;[];;Most Tolkien knockoffs aren't this on the nose, so that's what got me questioning. Thanks.;False;False;;;;1610350787;;False;{};giuqn75;True;t3_kuxt3f;False;True;t1_giupmmk;/r/anime/comments/kuxt3f/mushoku_tensei_jobless_incarnation_vs_the/giuqn75/;1610400551;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Swift_Wind;;;[];;;;text;t2_11b2gp;False;False;[];;I've never seen Naruto, not particularly interested to, but I already knew of this song and this made me smile. :);False;False;;;;1610350841;;False;{};giuqq5d;False;t3_kuu07d;False;True;t3_kuu07d;/r/anime/comments/kuu07d/blue_bird_from_naruto/giuqq5d/;1610400598;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Akai-AC;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Akai-AC;light;text;t2_3af1hwm4;False;False;[];;IIRC Sakura gave birth when she was travelling with Sasuke. Sarada was born in one of Orochimaru's hideouts. So yeah, Naruto did not see them during that time.;False;False;;;;1610350952;;False;{};giuqw3l;False;t3_kuxwtp;False;False;t3_kuxwtp;/r/anime/comments/kuxwtp/question_about_boruto_naruto_the_next_generation/giuqw3l/;1610400700;4;True;False;anime;t5_2qh22;;0;[]; -[];;;darkvs961;;;[];;;;text;t2_48r7hrz7;False;False;[];;First part of Jojo;False;False;;;;1610351038;;False;{};giur0qf;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giur0qf/;1610400775;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610351267;moderator;False;{};giurdsl;False;t3_kuy4qh;False;True;t3_kuy4qh;/r/anime/comments/kuy4qh/i_need_a_list/giurdsl/;1610401002;0;False;False;anime;t5_2qh22;;0;[]; -[];;;Florac;;;[];;;;text;t2_vy0sf;False;False;[];;AFAIK the author of Beginning after the End even said at some point he was inspired by Mushoku Tensei...maybe a bit too much tbh early on. But otherwise, it's basicly it's edgy cousin. And not better for it.;False;False;;;;1610351476;;False;{};giuroul;False;t3_kuxt3f;False;False;t3_kuxt3f;/r/anime/comments/kuxt3f/mushoku_tensei_jobless_incarnation_vs_the/giuroul/;1610401199;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"I will post a graph here with the times of the western releases of every anime on week 3 - -They don't announce it beforehand for every series, so we really don't know the time a anime will drop on streaming here";False;False;;;;1610351478;;False;{};giuroyy;False;t3_kuy4qh;False;True;t3_kuy4qh;/r/anime/comments/kuy4qh/i_need_a_list/giuroyy/;1610401202;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Noklle;;;[];;;;text;t2_4wevrvvv;False;False;[];;And who would @art.henry77 be? Is this really yours?;False;False;;;;1610351485;;False;{};giurpbe;False;t3_kuy4f7;False;True;t3_kuy4f7;/r/anime/comments/kuy4f7/a_drawing_of_tanjirou_and_nezuko/giurpbe/;1610401208;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BasicBlood;;;[];;;;text;t2_5rah2npl;False;False;[];;Two people fighting with curved swords is not a spoiler lol. Especially if they haven't seen the series, its just a meaningless picture. I'm not sure why people get so worked up about spoilers. It seems like you just want to find someone to get mad at.;False;False;;;;1610351505;;False;{};giurqe5;False;t3_kut36x;False;False;t1_gitx1oj;/r/anime/comments/kut36x/unlimited_blade_works_a_great_entrance_to_a/giurqe5/;1610401227;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bobdabuildingbuilder;;;[];;;;text;t2_1hy8la1t;False;False;[];;Eyes aren’t blocky enough;False;False;;;;1610351578;;False;{};giurumc;False;t3_kuy4f7;False;True;t3_kuy4f7;/r/anime/comments/kuy4f7/a_drawing_of_tanjirou_and_nezuko/giurumc/;1610401296;2;True;False;anime;t5_2qh22;;0;[]; -[];;;darkvs961;;;[];;;;text;t2_48r7hrz7;False;False;[];;I would say an anime similar to it is Another which is available on Hulu;False;False;;;;1610351581;;False;{};giururt;False;t3_kuu8oc;False;True;t3_kuu8oc;/r/anime/comments/kuu8oc/anyone_know_an_where_i_could_watch_umineko_when/giururt/;1610401299;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mockingbirdguy;;;[];;;;text;t2_6096n672;False;False;[];;Fire Force season 1;False;False;;;;1610351684;;False;{};gius0n1;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/gius0n1/;1610401409;0;True;False;anime;t5_2qh22;;0;[]; -[];;;thaboi_55;;;[];;;;text;t2_6yokau0i;False;False;[];;Thanks;False;False;;;;1610351803;;False;{};gius72e;True;t3_kuxo7l;False;True;t1_giuomsj;/r/anime/comments/kuxo7l/top_20_best_anime_villains/gius72e/;1610401522;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"The swords are exactly the same and if someone is watching the series they will know that Archer and shirou will eventually fight, if it was archer vs saber than its okay because its expected since the battle royal thing - -Why I'd be mad with a video from a small channel? Its just not cool to spoil people, especially with how sensible fate fans are, they are always crying about not watching zero first because of spoilers, so its a matter of courtesy t";False;True;;comment score below threshold;;1610351811;;False;{};gius7gc;False;t3_kut36x;False;True;t1_giurqe5;/r/anime/comments/kut36x/unlimited_blade_works_a_great_entrance_to_a/gius7gc/;1610401529;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610351836;moderator;False;{};gius8qa;False;t3_kuy8z6;False;True;t3_kuy8z6;/r/anime/comments/kuy8z6/someone_who_knows_good_anime/gius8qa/;1610401550;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi I-am-a-free-spirit, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610351836;moderator;False;{};gius8qy;False;t3_kuy8z6;False;True;t3_kuy8z6;/r/anime/comments/kuy8z6/someone_who_knows_good_anime/gius8qy/;1610401550;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Anichart;False;False;;;;1610351852;;False;{};gius9j0;False;t3_kuy4qh;False;True;t3_kuy4qh;/r/anime/comments/kuy4qh/i_need_a_list/gius9j0/;1610401563;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Olrac005;;;[];;;;text;t2_6ks5sm51;False;False;[];;No, it's by art.henry;False;False;;;;1610351859;;False;{};gius9wu;False;t3_kuy4f7;False;True;t1_giurpbe;/r/anime/comments/kuy4f7/a_drawing_of_tanjirou_and_nezuko/gius9wu/;1610401569;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sausagecatto;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_58acixo1;False;False;[];;Girls in a dungeon are just loot you can take them;False;False;;;;1610351975;;False;{};giusg6i;False;t3_kuw5y8;False;True;t3_kuw5y8;/r/anime/comments/kuw5y8/anime_like_konosuba_and_is_it_wrong_to_pick_up/giusg6i/;1610401673;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Deadmandream;;;[];;;;text;t2_25v21ud8;False;False;[];;Example of gender neutral waifu?;False;False;;;;1610352069;;False;{};giusll3;False;t3_kuxi0h;False;True;t3_kuxi0h;/r/anime/comments/kuxi0h/question_what_would_you_call_a_gender_neutral/giusll3/;1610401764;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BasicBlood;;;[];;;;text;t2_5rah2npl;False;False;[];;Well now your comment is a spoiler so I guess you're not cool either? Seriously no one is getting spoiled by that image;False;False;;;;1610352167;;False;{};giusr45;False;t3_kut36x;False;False;t1_gius7gc;/r/anime/comments/kut36x/unlimited_blade_works_a_great_entrance_to_a/giusr45/;1610401858;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ZapsZzz;;;[];;;;text;t2_g2hnymx;False;False;[];;"I actually found this show quite touching, not in the lewd sense but for real. It is actually quite unfortunate as I think a lot of the show's serious or introspective moments are really good, and it is something I really would like to show my daughter. Unfortunately, to much boobs. I'm even going to say the fan service with Fino can be considered in character and in a comical way, as no one actually ever really lewd Fino assist from admiring how pretty she is. And her outfits/ dress sense are just legacy from her demonic upbringing. But the other characters are just too much. All A in fact was really good as a tsundere but subjected to so much forced fan service so contrived it's also hard to ignore. - -If only they can make a PG version of the show.";False;False;;;;1610352389;;False;{};giut2rb;False;t3_kutpex;False;True;t1_giuqbr1;/r/anime/comments/kutpex/fino_is_tested_yuushibu/giut2rb/;1610402115;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610352432;moderator;False;{};giut551;False;t3_kuydw0;False;True;t3_kuydw0;/r/anime/comments/kuydw0/do_you_know_subreddits_to_post_anime_art/giut551/;1610402165;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610352714;moderator;False;{};giutkfp;False;t3_kuyg44;False;True;t3_kuyg44;/r/anime/comments/kuyg44/help_me_prank_my_weeb_friend/giutkfp/;1610402426;0;False;False;anime;t5_2qh22;;0;[]; -[];;;knokaka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/knokaka?order=4;light;text;t2_ytri4;False;False;[];;God Of Highschool ... can we skip story and go to sakuga fest already? and I hope no more episode next week.;False;False;;;;1610352734;;False;{};giutli0;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giutli0/;1610402442;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Deadmandream;;;[];;;;text;t2_25v21ud8;False;False;[];;Exactly why would you force yourself to watch a show you didn't like.;False;False;;;;1610352740;;False;{};giutlsw;False;t3_kuvkb4;False;True;t1_giug9nn;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giutlsw/;1610402447;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jetlightbeam;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;http://www.anime-planet.com/forum/members/;light;text;t2_16fk5q;False;False;[];;"For comedy and romance, dubbed: --kaguya-sama: Love is war --love, chunibyo and other delusions --torodora - -My favorite non dubbed rom-com: nisekoi - -A great resource to find anime is https://www.anime-planet.com";False;False;;;;1610352759;;False;{};giutms3;False;t3_kuy8z6;False;True;t3_kuy8z6;/r/anime/comments/kuy8z6/someone_who_knows_good_anime/giutms3/;1610402463;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Pokefreaker-san;;;[];;;;text;t2_15zitqtk;False;False;[];;antarctica should be no.1, very iconic and cold.;False;False;;;;1610352759;;False;{};giutmu3;False;t3_kuxo7l;False;True;t3_kuxo7l;/r/anime/comments/kuxo7l/top_20_best_anime_villains/giutmu3/;1610402464;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KILLER5991;;;[];;;;text;t2_51t6kysb;False;False;[];;"Rom-com anime try toradora, tsurezure children, school rumble, to name a few for now. Ill think of more later and make an edit then. - -Kamisama kiss is another good one. Accel world is another series from the auther of SAO. Ah my goddess and chobits are classics. These are all rom-coms.";False;False;;;;1610352779;;1610364482.0;{};giutnt6;False;t3_kuy8z6;False;True;t3_kuy8z6;/r/anime/comments/kuy8z6/someone_who_knows_good_anime/giutnt6/;1610402479;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LOTRfreak101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LOTRfreak101;light;text;t2_opd6l;False;False;[];;Calling Mushoku tensei a Tolkien knock off is wildly incorrect at best.;False;True;;comment score below threshold;;1610352790;;False;{};giutoga;False;t3_kuxt3f;False;True;t1_giuqn75;/r/anime/comments/kuxt3f/mushoku_tensei_jobless_incarnation_vs_the/giutoga/;1610402491;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;You can say the words hentai and necrophilia. This isn't Youtube.;False;False;;;;1610352879;;1610353197.0;{};giutt59;False;t3_kuyg44;False;True;t3_kuyg44;/r/anime/comments/kuyg44/help_me_prank_my_weeb_friend/giutt59/;1610402570;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610352898;moderator;False;{};giutu72;False;t3_kuyhh7;False;True;t3_kuyhh7;/r/anime/comments/kuyhh7/might_anyone_know_where_this_girl_is_from/giutu72/;1610402587;1;False;False;anime;t5_2qh22;;0;[]; -[];;;melcarba;;;[];;;;text;t2_ywnzr;False;False;[];;I just gave you on my initial reply: Overlord (up to season 3), Chihayafuru (up to season 3), Ace of Diamond (up to season 2), One Punch Man, No Game No Life (movie sequel), Cardcaptor Sakura (2018 TV show is a direct sequel to 1998 TV anime), Kaiji, Hajime no Ippo, etc.;False;False;;;;1610353008;;False;{};giuu0b4;False;t3_kux0dn;False;False;t1_giuql3w;/r/anime/comments/kux0dn/no_game_no_life_season_2/giuu0b4/;1610402693;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Crook3dPhallus;;;[];;;;text;t2_7o4xpw0i;False;False;[];;r/anime;False;False;;;;1610353009;;False;{};giuu0cy;False;t3_kuydw0;False;True;t3_kuydw0;/r/anime/comments/kuydw0/do_you_know_subreddits_to_post_anime_art/giuu0cy/;1610402693;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Matt_176;;;[];;;;text;t2_749qugm8;False;False;[];;Just in case;False;False;;;;1610353016;;False;{};giuu0rb;True;t3_kuyg44;False;True;t1_giutt59;/r/anime/comments/kuyg44/help_me_prank_my_weeb_friend/giuu0rb/;1610402700;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Pretty sure it's a hentai and not an anime;False;False;;;;1610353030;;False;{};giuu1iz;False;t3_kuyhh7;False;True;t3_kuyhh7;/r/anime/comments/kuyhh7/might_anyone_know_where_this_girl_is_from/giuu1iz/;1610402714;1;True;False;anime;t5_2qh22;;0;[]; -[];;;King_tiger2000;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Suffering Enthusiast ;dark;text;t2_31z7ch14;False;False;[];;I am from the middle east xD so i know exactly what you mean. Gotta watch everything while using a headphone lol;False;False;;;;1610353032;;False;{};giuu1mz;False;t3_kuwnj3;False;True;t1_giujjz0;/r/anime/comments/kuwnj3/what_are_some_good_anime_shows_that_have_no_ecchi/giuu1mz/;1610402715;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BitchIkNow;;;[];;;;text;t2_46ltkw97;False;False;[];;I've read both and while they share a lot of similarities in the beginning, it'll deviate greatly starting next episode. Mushoku is a slow burn with amazing character growth and pay off, while TBATE is more of a power fantasy with a cookie cutter mc with no flaws or struggles. Btw I'm not bashing TBATE I enjoyed it for what it was.;False;False;;;;1610353049;;1610354069.0;{};giuu2is;False;t3_kuxt3f;False;False;t3_kuxt3f;/r/anime/comments/kuxt3f/mushoku_tensei_jobless_incarnation_vs_the/giuu2is/;1610402729;6;True;False;anime;t5_2qh22;;0;[]; -[];;;hitogomi911;;;[];;;;text;t2_83ec5qv5;False;False;[];;Pretty sure Hentai are anime.;False;False;;;;1610353091;;False;{};giuu4oj;False;t3_kuyhh7;False;True;t1_giuu1iz;/r/anime/comments/kuyhh7/might_anyone_know_where_this_girl_is_from/giuu4oj/;1610402765;1;True;False;anime;t5_2qh22;;0;[]; -[];;;icewallow1;;;[];;;;text;t2_58dloasz;False;False;[];;Do you know what it might be called?;False;False;;;;1610353102;;False;{};giuu58y;True;t3_kuyhh7;False;True;t1_giuu1iz;/r/anime/comments/kuyhh7/might_anyone_know_where_this_girl_is_from/giuu58y/;1610402774;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi HipSocial, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610353158;moderator;False;{};giuu83e;False;t3_kuyjf7;False;True;t3_kuyjf7;/r/anime/comments/kuyjf7/my_anilist_is_sexy_i_need_recommendations/giuu83e/;1610402825;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;r/animeart ...;False;False;;;;1610353189;;False;{};giuu9no;False;t3_kuydw0;False;True;t3_kuydw0;/r/anime/comments/kuydw0/do_you_know_subreddits_to_post_anime_art/giuu9no/;1610402856;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Byakko168;;;[];;;;text;t2_5b903zap;False;False;[];;JK Bitch ni Shiboraretai;False;False;;;;1610353242;;False;{};giuucen;False;t3_kuyhh7;False;True;t1_giuu58y;/r/anime/comments/kuyhh7/might_anyone_know_where_this_girl_is_from/giuucen/;1610402919;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;Attack on titan. Not romance or comedy but you should like it based on what else you watched;False;False;;;;1610353250;;False;{};giuucve;False;t3_kuy8z6;False;False;t3_kuy8z6;/r/anime/comments/kuy8z6/someone_who_knows_good_anime/giuucve/;1610402930;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;[Livechart](https://www.livechart.me/winter-2021/tv). Set to your time zone and it’ll tell you exactly when stuff airs and also where it airs;False;False;;;;1610353353;;False;{};giuuibx;False;t3_kuy4qh;False;True;t3_kuy4qh;/r/anime/comments/kuy4qh/i_need_a_list/giuuibx/;1610403028;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PsychoGeek;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/PsychoGeek;dark;text;t2_lyjee;False;False;[];;But Cloverworks doesn't do backgrounds. Like most anime studios they outsource to specialized background studios.;False;False;;;;1610353559;;False;{};giuutdx;False;t3_kuvuc0;False;True;t1_giuileu;/r/anime/comments/kuvuc0/prediction_wonder_egg_priority_will_be_amazing/giuutdx/;1610403207;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KendotsX;;;[];;;;text;t2_j6nbtko;False;False;[];;Episode 65 adapts the final two chapters of volume 12 and first two of 13.;False;False;;;;1610353642;;False;{};giuuxfb;False;t3_kuxzlc;False;True;t3_kuxzlc;/r/anime/comments/kuxzlc/one_piece_question_anime_to_manga/giuuxfb/;1610403268;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Reinacchan;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Reina;light;text;t2_84kgf6gn;False;False;[];;"Well, they do obviously have some, as we can see in this video -https://youtu.be/Ip_GuLQErVg - -They would also likely have someone responsible for quality control, someone who's responsible for making style guides, someone who does colour design, and so on. - -If they outsource all of this, well, they've got some really bad connections ...";False;False;;;;1610353771;;False;{};giuv40q;True;t3_kuvuc0;False;True;t1_giuutdx;/r/anime/comments/kuvuc0/prediction_wonder_egg_priority_will_be_amazing/giuv40q/;1610403372;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Regulus1947;;;[];;;;text;t2_8t8i9s3y;False;False;[];;Soo, hentai recommendations?;False;False;;;;1610353792;;False;{};giuv540;False;t3_kuyjf7;False;True;t3_kuyjf7;/r/anime/comments/kuyjf7/my_anilist_is_sexy_i_need_recommendations/giuv540/;1610403388;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steveyouth112;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Steveyouth112;light;text;t2_4m7p4w6v;False;False;[];;"Nisemonogatari - - -The character interactions when i first watched it felt off and jarring in a way that made me feel incredibly depressed to the point where i could only watch one episode a night, if that. Probably had more going on at the time, but whatever it was, watching the show was a struggle pretty much from the first episode. -Fought through it though because i had been told many a time that Monogatari just kept getting better, and boy was i glad i stuck with it.";False;False;;;;1610353939;;False;{};giuvd67;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giuvd67/;1610403513;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;But is that supposed to be a lot tho? It means that they made sequels of only 3% of anime they ever made;False;False;;;;1610353973;;False;{};giuveuo;False;t3_kux0dn;False;True;t1_giuu0b4;/r/anime/comments/kux0dn/no_game_no_life_season_2/giuveuo/;1610403545;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDampGod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheDampGod;light;text;t2_im4vi;False;False;[];;[Here's a list of anime related subreddits](https://www.reddit.com/r/anime/wiki/related_subreddits);False;False;;;;1610354120;;False;{};giuvm2n;False;t3_kuydw0;False;True;t3_kuydw0;/r/anime/comments/kuydw0/do_you_know_subreddits_to_post_anime_art/giuvm2n/;1610403679;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OvergearedBigBoy;;;[];;;;text;t2_62vx5saq;False;False;[];;He improves in other ways like Subaru but he'll stay horny though provides great comedy;False;False;;;;1610354481;;False;{};giuw2ix;False;t3_kuypj8;False;True;t3_kuypj8;/r/anime/comments/kuypj8/question_to_the_mushoku_tensei_ln_readers/giuw2ix/;1610404016;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Novelle_1020;;;[];;;;text;t2_3um1vzgu;False;False;[];;Re:ZERO for sure.;False;False;;;;1610354484;;False;{};giuw2qm;False;t3_kutgit;False;True;t3_kutgit;/r/anime/comments/kutgit/what_anime_are_you_living_for_right_now/giuw2qm/;1610404020;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;Demon Slayer - Battle shounen is really not my genre, but I watched to the end to see what the DS and Nezuko hypes are about, and if it can change my mind about the genre. It couldn't. Episodes 14-15 were really challenging. Oh well...;False;False;;;;1610354947;;False;{};giuwr0f;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giuwr0f/;1610404403;0;True;False;anime;t5_2qh22;;0;[]; -[];;;sendhelp404;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_39x4uqma;False;False;[];;Chuunibyou is the 3rd and kaguya-sama is the 5th;False;False;;;;1610355106;;False;{};giuwypf;False;t3_kux354;False;True;t3_kux354;/r/anime/comments/kux354/anyone_know_the_name_of_the_anime/giuwypf/;1610404524;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Iwasforger03;;;[];;;;text;t2_334ksevn;False;False;[];;Cool, thanks!;False;False;;;;1610355174;;False;{};giux27w;True;t3_kuxt3f;False;True;t1_giuu2is;/r/anime/comments/kuxt3f/mushoku_tensei_jobless_incarnation_vs_the/giux27w/;1610404578;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Iwasforger03;;;[];;;;text;t2_334ksevn;False;False;[];;huh? I'm not calling it a tolkien knock off, I'm comparing this situation to the similarities between Tolkien inspired/knockoffs and finding them not nearly this obvious/On the Nose.;False;False;;;;1610355243;;False;{};giux64e;True;t3_kuxt3f;False;True;t1_giutoga;/r/anime/comments/kuxt3f/mushoku_tensei_jobless_incarnation_vs_the/giux64e/;1610404650;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Iwasforger03;;;[];;;;text;t2_334ksevn;False;False;[];;ok, that helps.;False;False;;;;1610355281;;False;{};giux8aq;True;t3_kuxt3f;False;True;t1_giuroul;/r/anime/comments/kuxt3f/mushoku_tensei_jobless_incarnation_vs_the/giux8aq/;1610404682;1;True;False;anime;t5_2qh22;;0;[]; -[];;;melcarba;;;[];;;;text;t2_ywnzr;False;False;[];;"Yes. I've demonstrated that a handful of their big shows are getting sequels in some form. That is enough to debunk the ""Madhouse doesn't make sequel"" meme.";False;False;;;;1610355494;;False;{};giuxiz3;False;t3_kux0dn;False;True;t1_giuveuo;/r/anime/comments/kux0dn/no_game_no_life_season_2/giuxiz3/;1610404851;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;futanari 😒;False;False;;;;1610355519;;False;{};giuxk7h;False;t3_kuxi0h;False;True;t3_kuxi0h;/r/anime/comments/kuxi0h/question_what_would_you_call_a_gender_neutral/giuxk7h/;1610404870;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;But... The fuck? What if a Fate/Zero watcher sees this?;False;False;;;;1610355894;;False;{};giuy2cg;False;t3_kut36x;False;True;t1_giurqe5;/r/anime/comments/kut36x/unlimited_blade_works_a_great_entrance_to_a/giuy2cg/;1610405162;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;Was this intended to be funny lol? It's literally the VN story;False;False;;;;1610355961;;False;{};giuy5hk;False;t3_kut36x;False;True;t1_giu11xv;/r/anime/comments/kut36x/unlimited_blade_works_a_great_entrance_to_a/giuy5hk/;1610405214;3;True;False;anime;t5_2qh22;;0;[]; -[];;;hitogomi911;;;[];;;;text;t2_83ec5qv5;False;False;[];;Aqua, she's not useless. Kazuma needs her as much she needs him;False;False;;;;1610356154;;False;{};giuycw1;False;t3_kuz49r;False;False;t3_kuz49r;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/giuycw1/;1610405360;18;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;Historically, Subaru from Re:Zero. I think this is changing a lot tho, esp w/ S2 fleshing him out even more.;False;False;;;;1610356190;;False;{};giuye5n;False;t3_kuz49r;False;False;t3_kuz49r;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/giuye5n/;1610405384;5;True;False;anime;t5_2qh22;;0;[]; -[];;;random_throwaway0001;;;[];;;;text;t2_9lx2xvpv;False;False;[];;"[The answer in form of spoilers]( /s "" He gets a lot worse before he gets better IMO. Once he's an actual adult, his perviness doesn't feel as bad. But that's like 2 seasons away"")";False;False;;;;1610356233;;False;{};giuyfpl;False;t3_kuypj8;False;True;t3_kuypj8;/r/anime/comments/kuypj8/question_to_the_mushoku_tensei_ln_readers/giuyfpl/;1610405413;3;True;False;anime;t5_2qh22;;0;[]; -[];;;harushiga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/harushiga;light;text;t2_3x0i089r;False;True;[];;"Episodes 3 & 4 will air back-to-back as a 1-hour special on January 18th. Episode 2 will air as regularly scheduled. - -[Image source](https://twitter.com/cellsatworkbla1/status/1348555247287898112)";False;False;;;;1610356243;;False;{};giuyg3e;True;t3_kuz5br;False;False;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giuyg3e/;1610405421;324;True;False;anime;t5_2qh22;;0;[]; -[];;;CringeKage222;;;[];;;;text;t2_2v8v29g9;False;False;[];;I was wandering as well;False;False;;;;1610356255;;False;{};giuygj3;False;t3_kuxvh4;False;False;t3_kuxvh4;/r/anime/comments/kuxvh4/does_anyone_knows_why_chibi_reviews_stopped_doing/giuygj3/;1610405429;2;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;May I ask what is another studio that forgets its sequels more than madhouse?;False;False;;;;1610356271;;False;{};giuyh1s;False;t3_kux0dn;False;False;t1_giuxiz3;/r/anime/comments/kux0dn/no_game_no_life_season_2/giuyh1s/;1610405439;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;Spoiler tag;False;False;;;;1610356328;;False;{};giuyj33;False;t3_kuw9es;False;False;t3_kuw9es;/r/anime/comments/kuw9es/fate_zero_discussion_thread/giuyj33/;1610405480;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hi waseequr, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610356473;moderator;False;{};giuyo2s;False;t3_kuz7ce;False;True;t3_kuz7ce;/r/anime/comments/kuz7ce/looking_for_some_harem_romance_recommendation/giuyo2s/;1610405586;1;False;False;anime;t5_2qh22;;0;[]; -[];;;random_throwaway0001;;;[];;;;text;t2_9lx2xvpv;False;False;[];;"Turtleme admitted that Mushoku Tensei was the biggest inspiration for TBATE in a reddit AMA a while back. Volumes 1 and 2 I think are almost a complete rip off, with only difference being the characters in TBATE being less pervy, horny and overall just flawless people (which is a flaw on its own). - -While there are more similarities later on as well, it's very minimal.";False;False;;;;1610356484;;False;{};giuyohq;False;t3_kuxt3f;False;True;t3_kuxt3f;/r/anime/comments/kuxt3f/mushoku_tensei_jobless_incarnation_vs_the/giuyohq/;1610405592;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CringeKage222;;;[];;;;text;t2_2v8v29g9;False;False;[];;Madhouse went bankrupt in 2016, I'm not sure if they still have the license to ngnl;False;False;;;;1610356506;;False;{};giuypa3;False;t3_kux0dn;False;True;t3_kux0dn;/r/anime/comments/kux0dn/no_game_no_life_season_2/giuypa3/;1610405605;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gumbo_gee;;;[];;;;text;t2_45ixz78g;False;False;[];;"Sasuke, he has every right to be an ""emo and edgy teen""";False;False;;;;1610356511;;False;{};giuypgh;False;t3_kuz49r;False;True;t3_kuz49r;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/giuypgh/;1610405609;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cocatmik;;;[];;;;text;t2_9701p8ls;False;False;[];;The classic JoJo's bizarre adventure;False;False;;;;1610356523;;False;{};giuypv2;False;t3_kuxere;False;True;t3_kuxere;/r/anime/comments/kuxere/once_in_a_lifetime_opportunity_right_here/giuypv2/;1610405618;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Chadest_senpai;;;[];;;;text;t2_8egaptzh;False;False;[];;"You may disagree, but... - -Kirito - - -I see SAO being as punishment for him for chosing to escape problems he have in the real world with his family. -While during his time in SAO he has moment with silica about his family, and how he separated himself from them for 2 whole year and wants to fix it soon as they gotten out of sao. - - -This is from my perspective, you are allowed to call me stupid or what ever if you disagree.";False;False;;;;1610356562;;False;{};giuyr8e;False;t3_kuz49r;False;False;t3_kuz49r;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/giuyr8e/;1610405641;7;True;False;anime;t5_2qh22;;0;[]; -[];;;joebidon;;;[];;;;text;t2_9nh7bg0n;False;False;[];;thanks a lot, finally a seriour answer;False;False;;;;1610356636;;False;{};giuytyz;True;t3_kuydw0;False;True;t1_giuvm2n;/r/anime/comments/kuydw0/do_you_know_subreddits_to_post_anime_art/giuytyz/;1610405691;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;"First option: Tenchi Muyo GXP - -2nd option: Full Metal Panic";False;False;;;;1610356727;;False;{};giuyx6m;False;t3_kuz7ce;False;True;t3_kuz7ce;/r/anime/comments/kuz7ce/looking_for_some_harem_romance_recommendation/giuyx6m/;1610405749;0;True;False;anime;t5_2qh22;;0;[]; -[];;;random_throwaway0001;;;[];;;;text;t2_9lx2xvpv;False;False;[];;I mean, TBATE webcomics is now published in Japanese. So apparently, it's distinctive enough that Kadokawa doesn't sue him for plagiarism. Personally I think it's almost shameless how much Turtleme copied from MT early on.;False;False;;;;1610356742;;False;{};giuyxpo;False;t3_kuxt3f;False;True;t1_giux64e;/r/anime/comments/kuxt3f/mushoku_tensei_jobless_incarnation_vs_the/giuyxpo/;1610405759;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Boujoulo;;;[];;;;text;t2_6iczsif5;False;False;[];;It gets better but keep in mind it’s a part of his character. His previous life was a 34 year old pervert so he realistically cannot simply stop being one instantly.;False;False;;;;1610356940;;False;{};giuz4rh;False;t3_kuypj8;False;True;t3_kuypj8;/r/anime/comments/kuypj8/question_to_the_mushoku_tensei_ln_readers/giuz4rh/;1610405892;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Brook0999;;;[];;;;text;t2_ycupg;False;False;[];;Ergo proxy has nudity in its first episodes.;False;False;;;;1610356965;;False;{};giuz5oq;False;t3_kuwnj3;False;True;t1_giujsww;/r/anime/comments/kuwnj3/what_are_some_good_anime_shows_that_have_no_ecchi/giuz5oq/;1610405908;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Iwasforger03;;;[];;;;text;t2_334ksevn;False;False;[];;Sweet, thanks for answering so thoroughly!;False;False;;;;1610356966;;False;{};giuz5pv;True;t3_kuxt3f;False;False;t1_giuyohq;/r/anime/comments/kuxt3f/mushoku_tensei_jobless_incarnation_vs_the/giuz5pv/;1610405909;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Iwasforger03;;;[];;;;text;t2_334ksevn;False;False;[];;I did not know this. I don't know Japanese copyright law though either.;False;False;;;;1610356990;;False;{};giuz6j8;True;t3_kuxt3f;False;True;t1_giuyxpo;/r/anime/comments/kuxt3f/mushoku_tensei_jobless_incarnation_vs_the/giuz6j8/;1610405923;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ProjectProxy;;;[];;;;text;t2_15bnpu;False;True;[];;Damn. It's been like 5 years since I saw it to be fair.;False;False;;;;1610357100;;False;{};giuzaep;False;t3_kuwnj3;False;True;t1_giuz5oq;/r/anime/comments/kuwnj3/what_are_some_good_anime_shows_that_have_no_ecchi/giuzaep/;1610405993;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;"Shinji. I feel like he's called more of a coward he really is. I'd say the way he acts is rather reasonable considering his circumstances. The ""Get in the fucking robot Shinji"" meme downplays how much he pilots even though he despises it - -Subaru he's not as cowardly as people say he is he's unwilling to commit suicide to abuse his ability but he still puts himself in harm's way when he feels he needs to. Also don't think he's malicious with anything he does - -And that's my Ted Talk on cowards in anime - -EDIT:Also Goku the senzu bean thing was dumb but it's not even the worst thing done in that arc. He was right Gohan wouldn't have been able to beat Cell if he wasn't going completely all out problem was he didn't understand that his son doesn't like fighting";False;False;;;;1610357139;;1610358011.0;{};giuzbrv;False;t3_kuz49r;False;False;t3_kuz49r;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/giuzbrv/;1610406017;26;True;False;anime;t5_2qh22;;0;[]; -[];;;MonochromeGuy;;;[];;;;text;t2_ncoao;False;False;[];;Finally. The long-awaited sex education episode. And it’s a 1 hour special!;False;False;;;;1610357142;;False;{};giuzbw0;False;t3_kuz5br;False;False;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giuzbw0/;1610406019;917;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610357157;;False;{};giuzcdz;False;t3_kuz49r;False;True;t3_kuz49r;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/giuzcdz/;1610406031;0;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;Pretty sure the last cat girl one is K-ON;False;False;;;;1610357324;;False;{};giuzi9s;False;t3_kux354;False;True;t3_kux354;/r/anime/comments/kux354/anyone_know_the_name_of_the_anime/giuzi9s/;1610406156;1;True;False;anime;t5_2qh22;;0;[]; -[];;;melcarba;;;[];;;;text;t2_ywnzr;False;False;[];;"You can look at mid-sized studios like Diomedea (last sequel produced was Cute High Earth Defense Club in 2015, and even then it switched studios), Lerche (only 3 sequels for the past decade or so; Assassination Classroom, Danganronpa and Radiant), Studio Gokumi (only 2 or 3 sequels for the past decade; Saki, Kiniro Mosaic, Yuki Yuna), and probably a lot more.";False;False;;;;1610357374;;False;{};giuzjzu;False;t3_kux0dn;False;True;t1_giuyh1s;/r/anime/comments/kux0dn/no_game_no_life_season_2/giuzjzu/;1610406187;0;True;False;anime;t5_2qh22;;0;[]; -[];;;jxnesy2;;;[];;;;text;t2_6ff40qt9;False;False;[];;Me too! But am a peasant and only watch dubbed. So I bet I have a longer wait.;False;False;;;;1610357405;;False;{};giuzl3b;False;t3_kuzawv;False;True;t3_kuzawv;/r/anime/comments/kuzawv/im_so_fucking_hyped_for_log_horizon_s3_lets/giuzl3b/;1610406207;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;Koi Kaze sort of fits.;False;False;;;;1610357434;;False;{};giuzm3t;False;t3_kuz466;False;True;t3_kuz466;/r/anime/comments/kuz466/anime_similar_to_kuzu_no_honkai/giuzm3t/;1610406225;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Voldigod;;;[];;;;text;t2_5ixoqavm;False;False;[];;Parasyte;False;False;;;;1610357498;;False;{};giuzod5;False;t3_kuzdwy;False;True;t3_kuzdwy;/r/anime/comments/kuzdwy/looking_for_an_anime_where_the_main_characters/giuzod5/;1610406267;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hollow_Dragon98;;;[];;;;text;t2_5gh2bqiy;False;False;[];;Jujutsu Kaisen is really good I recommend checking it out;False;False;;;;1610357519;;False;{};giuzp2n;False;t3_kuzdwy;False;True;t3_kuzdwy;/r/anime/comments/kuzdwy/looking_for_an_anime_where_the_main_characters/giuzp2n/;1610406279;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TrickStar_;;;[];;;;text;t2_12c4qz;False;False;[];;Not super dark, but Code Geass is normally a fan favorite, though I'm not sure it will have as much character development as you are looking for. If you're willing to sit through the whole thing, I think Hunter x Hunter would be right up your ally. There are some arks that are pretty dark, and the character change over the course of the series is really enticing.;False;False;;;;1610357573;;False;{};giuzqx2;False;t3_kuzdwy;False;True;t3_kuzdwy;/r/anime/comments/kuzdwy/looking_for_an_anime_where_the_main_characters/giuzqx2/;1610406312;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;"Panyo Panyo Di Gi Charat - -Princess Tutu - -Mao-Chan of the Ground Defense";False;False;;;;1610357600;;False;{};giuzru2;False;t3_kuwnj3;False;False;t3_kuwnj3;/r/anime/comments/kuwnj3/what_are_some_good_anime_shows_that_have_no_ecchi/giuzru2/;1610406329;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pissylissy666;;;[];;;;text;t2_1ujcy2qv;False;False;[];;A good romance Comedy is Nozaki-Kun on Netflix! it's so cute and had me literally laughing out loud;False;False;;;;1610357641;;False;{};giuzt8t;False;t3_kuy8z6;False;True;t3_kuy8z6;/r/anime/comments/kuy8z6/someone_who_knows_good_anime/giuzt8t/;1610406354;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610357676;;1610401063.0;{};giuzuer;False;t3_kuxi0h;False;True;t1_giuol07;/r/anime/comments/kuxi0h/question_what_would_you_call_a_gender_neutral/giuzuer/;1610406376;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;ATargetFinderScrub;;ANI a-amq;[];;https://anilist.co/user/ATargetFinderScrub/animelist;dark;text;t2_5vo76d;False;False;[];;Rising of the Shield Hero. Particularity because of how interesting it is following the MC Naofumi and how he overcomes the poor hand he was dealt.;False;False;;;;1610357682;;False;{};giuzumb;False;t3_kuzdwy;False;True;t3_kuzdwy;/r/anime/comments/kuzdwy/looking_for_an_anime_where_the_main_characters/giuzumb/;1610406381;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CringeKage222;;;[];;;;text;t2_2v8v29g9;False;False;[];;">living - -Dying with regrets*";False;False;;;;1610357782;;False;{};giuzy2q;False;t3_kutgit;False;True;t1_giuabn5;/r/anime/comments/kutgit/what_anime_are_you_living_for_right_now/giuzy2q/;1610406444;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Edy783;;;[];;;;text;t2_55fo36o;False;False;[];;I’ve seen code geass like 2 or 3 times already it’s one of my favorites. Maybe hunter x hunter my friends has been trying to get me to start it.;False;False;;;;1610357814;;False;{};giuzz7v;True;t3_kuzdwy;False;False;t1_giuzqx2;/r/anime/comments/kuzdwy/looking_for_an_anime_where_the_main_characters/giuzz7v/;1610406464;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Edy783;;;[];;;;text;t2_55fo36o;False;False;[];;I’ve seen it already it was good but I wasn’t crazy about it;False;False;;;;1610357901;;False;{};giv0280;True;t3_kuzdwy;False;True;t1_giuzod5;/r/anime/comments/kuzdwy/looking_for_an_anime_where_the_main_characters/giv0280/;1610406517;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;Re:Zero;False;False;;;;1610357944;;False;{};giv03pz;False;t3_kuzdwy;False;True;t3_kuzdwy;/r/anime/comments/kuzdwy/looking_for_an_anime_where_the_main_characters/giv03pz/;1610406544;2;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;"May I ask why the fuck would anyone ever meme “gokumi “ or “diomedea” I’ve literally never even heard of the studios, let alone their anime. - -And lerche is nowhere near big enough of a studio to even have the characteristic of no-sequels... most of their fucking anime are not even sequelable Kuzu No Honkai, Given, astra lost in space, Asobi asobase... and toilet bound hanako-Kim only came out a year ago... and it’s surely getting a sequel.";False;False;;;;1610357955;;False;{};giv043o;False;t3_kux0dn;False;True;t1_giuzjzu;/r/anime/comments/kux0dn/no_game_no_life_season_2/giv043o/;1610406551;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"It depends on the genre you want to watch: I'll do some shows no-one else would recommend here: - -[Koi Kaze](https://anilist.co/anime/634/Koi-Kaze/) Drama, Psychological, Romance, Slice of Life - - It's about a 27 year old brother and a 15 year old sister romantically falling in love. By no means is it easy to watch, but it's worth watching regardless. Sadly, as it isn't extremely popular and is nearly 17 years old, the only realistic way of watching it is by pirating it. - -[Scum's Wish](https://anilist.co/anime/21701/Scums-Wish/) Drama, Ecchi, Psychological, Romance - -This one's about two people who love someone else, but can't be with them. They then use each other to substitute. Not an easy show to watch either. You can watch this one on amazon prime video, and you know the other, less ethical option. - -[The Devil is a Part-Timer!](https://anilist.co/anime/15809/The-Devil-is-a-PartTimer/) Comedy, Fantasy, Romance, Slice of Life - -This one's about a devil king, who gets taken back to the human world, to have to work in a fast food job. It's fun, which is probably what you need after watching the two shows above.";False;False;;;;1610358081;;False;{};giv08e4;False;t3_kuxere;False;True;t3_kuxere;/r/anime/comments/kuxere/once_in_a_lifetime_opportunity_right_here/giv08e4/;1610406630;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ma103;;;[];;;;text;t2_icj74;False;False;[];;"Pre time skip Eren - -People misinterpret him as a typical shonen loud protagonist. I mean, you expect this kid to be sane after the “grim remainder”? I bet the very same people will be in a even worse shape if they were to witness their mother gets eaten alive on top of losing your homeland.";False;False;;;;1610358213;;False;{};giv0cu6;False;t3_kuz49r;False;False;t3_kuz49r;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/giv0cu6/;1610406710;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Daedric202;;;[];;;;text;t2_74lqck1;False;False;[];;Fate/Kaleid Prisma Illya (except 3rei and oath under snow);False;False;;;;1610358455;;False;{};giv0l7q;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giv0l7q/;1610406861;1;True;False;anime;t5_2qh22;;0;[]; -[];;;brotato96;;;[];;;;text;t2_16ylw4gr;False;False;[];;Attack on Titan? the mc goes through pretty drastic change going by latest developments;False;False;;;;1610358465;;False;{};giv0lko;False;t3_kuzdwy;False;False;t3_kuzdwy;/r/anime/comments/kuzdwy/looking_for_an_anime_where_the_main_characters/giv0lko/;1610406868;6;True;False;anime;t5_2qh22;;0;[]; -[];;;androiduser243;;;[];;;;text;t2_3g8rexdf;False;False;[];;Seconded;False;False;;;;1610358533;;False;{};giv0nxp;False;t3_kuzdwy;False;True;t1_giv0lko;/r/anime/comments/kuzdwy/looking_for_an_anime_where_the_main_characters/giv0nxp/;1610406908;2;True;False;anime;t5_2qh22;;0;[]; -[];;;I-am-a-free-spirit;;skip7;[];;;dark;text;t2_8t4f5nto;False;False;[];;Thanks i’ll try;False;False;;;;1610358631;;False;{};giv0rci;True;t3_kuy8z6;False;True;t1_giutms3;/r/anime/comments/kuy8z6/someone_who_knows_good_anime/giv0rci/;1610406971;1;True;False;anime;t5_2qh22;;0;[]; -[];;;I-am-a-free-spirit;;skip7;[];;;dark;text;t2_8t4f5nto;False;False;[];;Thanks;False;False;;;;1610358653;;False;{};giv0s5p;True;t3_kuy8z6;False;True;t1_giutnt6;/r/anime/comments/kuy8z6/someone_who_knows_good_anime/giv0s5p/;1610406985;1;True;False;anime;t5_2qh22;;0;[]; -[];;;I-am-a-free-spirit;;skip7;[];;;dark;text;t2_8t4f5nto;False;False;[];;Yeah but i Think i Will wait until season 4 is dubbed so i dont have to wait for the end. I hare wating;False;False;;;;1610358723;;False;{};giv0uki;True;t3_kuy8z6;False;True;t1_giuucve;/r/anime/comments/kuy8z6/someone_who_knows_good_anime/giv0uki/;1610407029;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ImmortalRJD;;;[];;;;text;t2_8ow2oult;False;False;[];;Here's my thoughts on Gurren Lagann. It fucking sucks. Simon is a weakling, Kamina is a goddamn moron, and the end was nothing more than a giant middle finger right in the audience's face.Gurren Lagann and its entire fandom as far as I'm concerned can go take a flying fuck at a dead whale.;False;True;;comment score below threshold;;1610358752;;False;{};giv0vlf;False;t3_kut8gm;False;True;t3_kut8gm;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/giv0vlf/;1610407049;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;Edy783;;;[];;;;text;t2_55fo36o;False;False;[];;I haven’t seen past the first season I remember it being amazing;False;False;;;;1610358809;;False;{};giv0xmg;True;t3_kuzdwy;False;True;t1_giv0lko;/r/anime/comments/kuzdwy/looking_for_an_anime_where_the_main_characters/giv0xmg/;1610407084;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;"Redo of Healer. - -At a point, the character snaps, then beat the shit out of others.";False;False;;;;1610358812;;False;{};giv0xpv;False;t3_kuzdwy;False;False;t3_kuzdwy;/r/anime/comments/kuzdwy/looking_for_an_anime_where_the_main_characters/giv0xpv/;1610407086;3;True;False;anime;t5_2qh22;;0;[]; -[];;;1234filip;;;[];;;;text;t2_169goi;False;False;[];;Damn :/;False;False;;;;1610358852;;False;{};giv0zgr;True;t3_kuzawv;False;True;t1_giuzl3b;/r/anime/comments/kuzawv/im_so_fucking_hyped_for_log_horizon_s3_lets/giv0zgr/;1610407115;0;True;False;anime;t5_2qh22;;0;[]; -[];;;brotato96;;;[];;;;text;t2_16ylw4gr;False;False;[];;My personal recommendation is Demon Slayer, most first timers have really liked it.;False;False;;;;1610358896;;False;{};giv11pm;False;t3_kuxere;False;True;t3_kuxere;/r/anime/comments/kuxere/once_in_a_lifetime_opportunity_right_here/giv11pm/;1610407149;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Edy783;;;[];;;;text;t2_55fo36o;False;False;[];;You just remind me that I have to watch season 2;False;False;;;;1610358930;;False;{};giv13iw;True;t3_kuzdwy;False;True;t1_giv03pz;/r/anime/comments/kuzdwy/looking_for_an_anime_where_the_main_characters/giv13iw/;1610407175;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mountain-Anywhere621;;;[];;;;text;t2_9kuj99kp;False;False;[];;You might enjoy grisaia trilogy the s2 and s3 are more action based while first is psychological drama with non dense harem mc watch order grisaia no kaiju then meikyu then rauken;False;False;;;;1610358933;;False;{};giv13q5;False;t3_kuz7ce;False;True;t3_kuz7ce;/r/anime/comments/kuz7ce/looking_for_some_harem_romance_recommendation/giv13q5/;1610407178;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610358971;;False;{};giv15uv;False;t3_kuz49r;False;True;t1_giuyr8e;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/giv15uv/;1610407297;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610358978;;False;{};giv167g;False;t3_kuz49r;False;True;t3_kuz49r;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/giv167g/;1610407302;0;True;False;anime;t5_2qh22;;0;[]; -[];;;brotato96;;;[];;;;text;t2_16ylw4gr;False;False;[];;Second season onwards gets even more interesting. Id say rewatch season one then continue.;False;False;;;;1610359081;;False;{};giv1bcp;False;t3_kuzdwy;False;False;t1_giv0xmg;/r/anime/comments/kuzdwy/looking_for_an_anime_where_the_main_characters/giv1bcp/;1610407377;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Edy783;;;[];;;;text;t2_55fo36o;False;False;[];;I’m currently doing that with Tokyo Ghoul rn almost done with season 3;False;False;;;;1610359140;;False;{};giv1e4k;True;t3_kuzdwy;False;False;t1_giv1bcp;/r/anime/comments/kuzdwy/looking_for_an_anime_where_the_main_characters/giv1e4k/;1610407418;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610359151;;1610401058.0;{};giv1eoa;False;t3_kuvb7r;False;True;t3_kuvb7r;/r/anime/comments/kuvb7r/for_those_who_watch_yuriyaoi_shows/giv1eoa/;1610407426;2;True;False;anime;t5_2qh22;;0;[]; -[];;;as1eep;;;[];;;;text;t2_pek5e8i;False;False;[];;"Devian crybaby. - -Unfortunately most of the really good examples are locked behind having to read past their animes so if ur fine with manga: - -Berserk - -Vinland Saga - -Gantz";False;False;;;;1610359169;;False;{};giv1fhs;False;t3_kuzdwy;False;True;t3_kuzdwy;/r/anime/comments/kuzdwy/looking_for_an_anime_where_the_main_characters/giv1fhs/;1610407438;2;True;False;anime;t5_2qh22;;0;[]; -[];;;irisverse;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/usernamesarehard;light;text;t2_1dzbqjh4;False;False;[];;"On a scale of better to worse: - -Aku no Hana -Citrus -Domestic Girlfriend -Netsuzou Trap";False;False;;;;1610359244;;False;{};giv1j3x;False;t3_kuz466;False;True;t3_kuz466;/r/anime/comments/kuz466/anime_similar_to_kuzu_no_honkai/giv1j3x/;1610407495;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Edy783;;;[];;;;text;t2_55fo36o;False;False;[];;Gantz was so good as a manga. The anime was garbage but I read the manga first and was so hooked. I liked the movie but I think it was cause I read the manga first;False;False;;;;1610359279;;False;{};giv1kpg;True;t3_kuzdwy;False;True;t1_giv1fhs;/r/anime/comments/kuzdwy/looking_for_an_anime_where_the_main_characters/giv1kpg/;1610407520;1;True;False;anime;t5_2qh22;;0;[]; -[];;;irisverse;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/usernamesarehard;light;text;t2_1dzbqjh4;False;False;[];;Any of the gems from Houseki no Kuni;False;False;;;;1610359338;;False;{};giv1nnc;False;t3_kuxi0h;False;True;t1_giusll3;/r/anime/comments/kuxi0h/question_what_would_you_call_a_gender_neutral/giv1nnc/;1610407563;2;True;False;anime;t5_2qh22;;0;[]; -[];;;charlie_kakka;;;[];;;;text;t2_8fnmziq3;False;False;[];;thanks;False;False;;;;1610359486;;False;{};giv1vhy;True;t3_kuz466;False;True;t1_giv1j3x;/r/anime/comments/kuz466/anime_similar_to_kuzu_no_honkai/giv1vhy/;1610407676;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OmegaAvenger_HD;;;[];;;;text;t2_156b6n;False;False;[];;Yeah but UBW is a second route,so technically it's the middle of the VN.;False;False;;;;1610359619;;False;{};giv21yo;False;t3_kut36x;False;True;t1_giuy5hk;/r/anime/comments/kut36x/unlimited_blade_works_a_great_entrance_to_a/giv21yo/;1610407777;2;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;Why do you need to watch 2006 before UBW? I had a friend explain to me what the grail war was in 2 sentences, and went a straight to UBW;False;False;;;;1610359780;;False;{};giv29ud;False;t3_kut36x;False;True;t1_giv21yo;/r/anime/comments/kut36x/unlimited_blade_works_a_great_entrance_to_a/giv29ud/;1610407900;1;True;False;anime;t5_2qh22;;0;[]; -[];;;basuga_BFE;;;[];;;;text;t2_l8vzif1;False;True;[];;"Action: [Black Lagoon](https://myanimelist.net/anime/889/Black_Lagoon) (2 seasons, 2006), [Trigun](https://myanimelist.net/anime/6/Trigun) (26 eps, 1998) - -Comedy/school: [Great Teacher Onizuka](https://myanimelist.net/anime/245/Great_Teacher_Onizuka) (43 eps, 1999-2000), [Love Lab](https://myanimelist.net/anime/16353/Love_Lab) (13 eps, 2013), [Demi-chan wa Kataritai!/Interviews with Monster Girls](https://myanimelist.net/anime/33988/Demi-chan_wa_Kataritai) (12 eps, 2017) - -Comedy/demons+angels: [The World God Only Knows](https://myanimelist.net/anime/8525/Kami_nomi_zo_Shiru_Sekai) (3 seasons + 2 OVAs, 2010-2013), [Gabriel DrouOut](https://myanimelist.net/anime/33731/Gabriel_DropOut) (12 eps, 2017)";False;False;;;;1610359825;;False;{};giv2cgu;False;t3_kuy8z6;False;True;t3_kuy8z6;/r/anime/comments/kuy8z6/someone_who_knows_good_anime/giv2cgu/;1610407937;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OmegaAvenger_HD;;;[];;;;text;t2_156b6n;False;False;[];;You don't need to, since 2006 is not the best and spoils other routes because it tries to merge them. Ufotable made I'VE a good starting point, they even animated prologue again. But you are still missing Fate route, which is like 90% of Sabers character development and a lot of world building. Right now reading the VN is the best option.;False;False;;;;1610360054;;False;{};giv2o0x;False;t3_kut36x;False;True;t1_giv29ud;/r/anime/comments/kut36x/unlimited_blade_works_a_great_entrance_to_a/giv2o0x/;1610408103;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Game2015;;;[];;;;text;t2_poe9a;False;False;[];;So episode 2 still airing as usual on Jan. 16? Does that mean episode 5 will be airing on the week after that, Jan. 23?;False;False;;;;1610360336;;False;{};giv326r;False;t3_kuz5br;False;False;t1_giuyg3e;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giv326r/;1610408307;64;True;False;anime;t5_2qh22;;0;[]; -[];;;cbumpa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cbumpa;light;text;t2_4uaglc4u;False;False;[];;This a pretty dramatic take, who hurt you;False;False;;;;1610360361;;False;{};giv33gt;True;t3_kut8gm;False;True;t1_giv0vlf;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/giv33gt/;1610408325;3;True;False;anime;t5_2qh22;;0;[]; -[];;;caralhoto;;;[];;;;text;t2_580nxmik;False;False;[];;"You don't ""need"" to watch any of it since it's a non-essential entertainment product but having a friend summarize the first third of a story so you can start watching it from the middle is still not a fantastic idea.";False;False;;;;1610360467;;False;{};giv38qf;False;t3_kut36x;False;True;t1_giv29ud;/r/anime/comments/kut36x/unlimited_blade_works_a_great_entrance_to_a/giv38qf/;1610408403;1;True;False;anime;t5_2qh22;;0;[]; -[];;;A_kirE;;;[];;;;text;t2_8mklskhy;False;False;[];;would also be good if they make those other 3 heroes stronger than him those 3 are higher level than him but naofumi can solo a boss and he's the tank/support;False;False;;;;1610360703;;False;{};giv3kbg;False;t3_kuzldt;False;False;t3_kuzldt;/r/anime/comments/kuzldt/shield_hero_is_garbage/giv3kbg/;1610408583;4;True;False;anime;t5_2qh22;;0;[]; -[];;;nafissyed;;;[];;;;text;t2_3axlgtoe;False;False;[];;This show had promising potential as it’s first episode was really good imo. However the more you dive into the series, the more disappointed you become.;False;False;;;;1610360728;;False;{};giv3lmn;False;t3_kuzldt;False;True;t3_kuzldt;/r/anime/comments/kuzldt/shield_hero_is_garbage/giv3lmn/;1610408601;2;True;False;anime;t5_2qh22;;0;[]; -[];;;melcarba;;;[];;;;text;t2_ywnzr;False;False;[];;Stop moving the goalposts.;False;False;;;;1610360841;;False;{};giv3rjx;False;t3_kux0dn;False;True;t1_giv043o;/r/anime/comments/kux0dn/no_game_no_life_season_2/giv3rjx/;1610408692;0;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;"Shou Tucker from FMAB. [What I think of him. FMAB Spoiler.](/s ""I think he gets way more hate than he actually deserves. He tried. It's a shame he didn't get anywhere with his research. Giving/synthesizing creatures the ability to speak like humans would be interesting endeavour. It might not be particularly profitable initially but it would still be interesting from an academic point of view. Maybe you could use the chimeras as Guinea pigs to test pet feed and other pet related paraphernalia."")";False;False;;;;1610360894;;False;{};giv3u5k;False;t3_kuz49r;False;False;t3_kuz49r;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/giv3u5k/;1610408735;5;True;False;anime;t5_2qh22;;0;[]; -[];;;doobiemckern11;;;[];;;;text;t2_4avhqkfi;False;False;[];;This is so awesome. I love the sound of these;False;False;;;;1610361132;;False;{};giv45q6;False;t3_kuu07d;False;True;t3_kuu07d;/r/anime/comments/kuu07d/blue_bird_from_naruto/giv45q6/;1610408903;3;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"I'll do some dark thrillers: - -[Puella Magi Madoka Magica](https://anilist.co/anime/9756/Puella-Magi-Madoka-Magica/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_madoka_magica) -Action, Drama, Fantasy, Mahou Shoujo, Psychological, Thriller - -[Death Note](https://anilist.co/anime/1535/Death-Note/) -Mystery, Psychological, Supernatural, Thriller - -bonus: - -[Koi Kaze](https://anilist.co/anime/634/Koi-Kaze/) -Drama, Psychological, Romance, Slice of Life - -[Code Geass: Lelouch of the Rebellion](https://anilist.co/anime/1575/Code-Geass-Lelouch-of-the-Rebellion/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_code_geass) -Action, Drama, Mecha, Sci-Fi, Thriller";False;False;;;;1610361254;;False;{};giv4cgp;False;t3_kux5rt;False;True;t3_kux5rt;/r/anime/comments/kux5rt/hi_need_a_rec_based_on_black_butler/giv4cgp/;1610409002;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;I think you must’ve read my comment with your eyes closed because he didn’t explain the entire visual novel route in 2 sentences, it was what the holy grail war was and the basic context. What in 2006 is relevant in UBW, that doesn’t make sense without prior knowledge?;False;False;;;;1610361263;;False;{};giv4cy5;False;t3_kut36x;False;True;t1_giv38qf;/r/anime/comments/kut36x/unlimited_blade_works_a_great_entrance_to_a/giv4cy5/;1610409009;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;BiohazardBinkie;;;[];;;;text;t2_3dke29ml;False;False;[];;The reason the other 3 hero's such is cause they behaved as if it was all a game. They have no real strength cause neither of them took the time to learn about the world they're in or how their weapons work. It's the equivalent of doing the tutorial in a game and expecting to be op right out of the gate.;False;False;;;;1610361282;;False;{};giv4dy8;False;t3_kuzldt;False;True;t3_kuzldt;/r/anime/comments/kuzldt/shield_hero_is_garbage/giv4dy8/;1610409024;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Larseman7;;;[];;;;text;t2_8869slz3;False;False;[];;"Karakai Jouzu no Takagi San ( this one is a romance, comedy, slice of life) - -Kanojo okarishimasu ( this one is a romance, harem, comedy) - -Bokutachi wa benkyou ga dekinai (this one is also a harem, romance, comedy and only in japanese for now)";False;False;;;;1610361566;;False;{};giv4s7t;False;t3_kuy8z6;False;True;t3_kuy8z6;/r/anime/comments/kuy8z6/someone_who_knows_good_anime/giv4s7t/;1610409238;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hero_Kenzan;;;[];;;;text;t2_5ayox6za;False;False;[];;You can just say isekai anime is garbage because there isn't a single one that is good.;False;False;;;;1610362040;;False;{};giv5h6o;False;t3_kuzldt;False;True;t3_kuzldt;/r/anime/comments/kuzldt/shield_hero_is_garbage/giv5h6o/;1610409596;-3;False;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;It's an isekai, what did you expect? lol;False;False;;;;1610362071;;False;{};giv5ixn;False;t3_kuzldt;False;False;t3_kuzldt;/r/anime/comments/kuzldt/shield_hero_is_garbage/giv5ixn/;1610409621;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Leiothrix;;;[];;;;text;t2_1210nz;False;False;[];;No one actually cares, watch what you like.;False;False;;;;1610362373;;False;{};giv5ye3;False;t3_kuvj05;False;True;t3_kuvj05;/r/anime/comments/kuvj05/why_yall_be_hating_on_dub_watchers_so_much/giv5ye3/;1610409839;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610362413;;False;{};giv60cc;False;t3_kuu07d;False;True;t1_giuqq5d;/r/anime/comments/kuu07d/blue_bird_from_naruto/giv60cc/;1610409869;0;True;False;anime;t5_2qh22;;0;[]; -[];;;CuriousSnowman;;;[];;;;text;t2_1k7pm3v9;False;False;[];;"If anyone wondering about that, here's the author of TBATE AMA - [https://www.reddit.com/r/Fantasy/comments/dvucz8/rfantasy\_writer\_of\_the\_day\_turtleme\_author\_of\_the/f7ergg0](https://www.reddit.com/r/Fantasy/comments/dvucz8/rfantasy_writer_of_the_day_turtleme_author_of_the/f7ergg0?utm_source=share&utm_medium=web2x&context=3)";False;False;;;;1610362557;;False;{};giv68fj;False;t3_kuxt3f;False;True;t1_giuyohq;/r/anime/comments/kuxt3f/mushoku_tensei_jobless_incarnation_vs_the/giv68fj/;1610409975;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrSeaSalt;;;[];;;;text;t2_lg73jid;False;False;[];;Cool, more power to you.;False;False;;;;1610362723;;False;{};giv6gz0;False;t3_kuzldt;False;True;t3_kuzldt;/r/anime/comments/kuzldt/shield_hero_is_garbage/giv6gz0/;1610410098;0;True;False;anime;t5_2qh22;;0;[]; -[];;;harushiga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/harushiga;light;text;t2_3x0i089r;False;True;[];;Yeah, episode 2 is on the 16th (for Japan, it's midnight 17th). Regarding episode 5 and on, there's no info about the release schedule yet.;False;False;;;;1610362757;;False;{};giv6ine;True;t3_kuz5br;False;False;t1_giv326r;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giv6ine/;1610410135;33;True;False;anime;t5_2qh22;;0;[]; -[];;;iStaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/iStaki;light;text;t2_ioondgh;False;False;[];;Naruto maybe, it's my favorite.;False;False;;;;1610362823;;False;{};giv6lyq;False;t3_kuzdwy;False;True;t3_kuzdwy;/r/anime/comments/kuzdwy/looking_for_an_anime_where_the_main_characters/giv6lyq/;1610410196;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TheTruthVeritas;;;[];;;;text;t2_1056nw;False;False;[];;"I feel that’s still not true. Even if they’re “gamers”, they’re pretty fucking stupid gamers. They all latch onto a very single specific progression upgrade and completely disregard any other potential options. One says higher rarity is the only system, another says leveling is the only system, and a third says enchanting is the only option, all of them not even giving the others the benefit of the doubt despite all being the most common upgrade systems, of which you see all three in virtually every game. - -And somehow, the MC, the only non-gamer, is the only one to figure everything out? - -The entire setting is stupid and nonsensical, and the heroes and literally every other character that isn’t in love with the MC or a hot queen milf has less brain cells than my last shit.";False;False;;;;1610362877;;False;{};giv6okr;False;t3_kuzldt;False;True;t1_giv4dy8;/r/anime/comments/kuzldt/shield_hero_is_garbage/giv6okr/;1610410249;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lazerbeem123456;;;[];;;;text;t2_8t8wce2;False;False;[];;Guilty crown;False;False;;;;1610363273;;False;{};giv79ei;False;t3_kuzdwy;False;True;t3_kuzdwy;/r/anime/comments/kuzdwy/looking_for_an_anime_where_the_main_characters/giv79ei/;1610410551;1;True;False;anime;t5_2qh22;;0;[]; -[];;;I-am-a-free-spirit;;skip7;[];;;dark;text;t2_8t4f5nto;False;False;[];;Thank you I’ll check them out;False;False;;;;1610363494;;False;{};giv7l6m;True;t3_kuy8z6;False;True;t1_giv4s7t;/r/anime/comments/kuy8z6/someone_who_knows_good_anime/giv7l6m/;1610410716;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;senpai.moe is also useful if you link your MAL account, anichart for anilist.co, www.livechart.me in general;False;False;;;;1610363640;;False;{};giv7srp;False;t3_kuy4qh;False;True;t3_kuy4qh;/r/anime/comments/kuy4qh/i_need_a_list/giv7srp/;1610410822;1;True;False;anime;t5_2qh22;;0;[]; -[];;;goblinmine;;;[];;;;text;t2_2ei7hvjp;False;False;[];;Will there be a Corona Episode?;False;False;;;;1610363767;;False;{};giv7yyd;False;t3_kuz5br;False;False;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giv7yyd/;1610410916;48;True;False;anime;t5_2qh22;;0;[]; -[];;;Focky17;;;[];;;;text;t2_5l7kzxg8;False;False;[];;"Sasuke : It only makes sense that he changes his view so much in the show. This is not a flaw in his character. That actually shows that he is a very normal person. His ideology were not that edgy. - -Yuno from Black Clover : people really want him to be Sasuke when he isn't (yet). Somehow people portray him as a jerk just because Asta says so and think that he never trains for what he has. He does and he also has his own circumstances. He is also one of the most loyal and supportive person in the show imo.";False;False;;;;1610363927;;False;{};giv87uj;False;t3_kuz49r;False;False;t3_kuz49r;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/giv87uj/;1610411037;8;True;False;anime;t5_2qh22;;0;[]; -[];;;SimplyJames168;;;[];;;;text;t2_8y07jko;False;False;[];;Daaaamn the hype is real!;False;False;;;;1610363938;;False;{};giv88gm;False;t3_kuzawv;False;True;t3_kuzawv;/r/anime/comments/kuzawv/im_so_fucking_hyped_for_log_horizon_s3_lets/giv88gm/;1610411045;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;You can multiple waifus but only if they are ok with polyamory, so look in the Highschool DxD and To Love Ru universe;False;False;;;;1610363979;;False;{};giv8ap0;False;t3_kutrnf;False;True;t3_kutrnf;/r/anime/comments/kutrnf/is_having_multiple_waifus_bad/giv8ap0/;1610411078;1;True;False;anime;t5_2qh22;;0;[]; -[];;;QuelloConLinkem;;;[];;;;text;t2_2x0b0nsu;False;False;[];;"> Ps: i’m only watching dubbed at the moment. And if it’s possible I would like some thing with romance and comedy it’s just fun to watch - -Watch Kaguya-sama: love is war";False;False;;;;1610364219;;False;{};giv8mo3;False;t3_kuy8z6;False;True;t3_kuy8z6;/r/anime/comments/kuy8z6/someone_who_knows_good_anime/giv8mo3/;1610411252;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;"Eh that's why I wish we got more backstory for then earlier. I know based on the LNs we do but they're all aware of MMOs but they apparently weren't very good since they did no min maxing apparently - -And the Sword guy seemed more aware of his own faults and even acknowledges Naofumi but nothing really comes from that character wise";False;False;;;;1610364238;;False;{};giv8nnw;False;t3_kuzldt;False;True;t1_giv4dy8;/r/anime/comments/kuzldt/shield_hero_is_garbage/giv8nnw/;1610411267;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Freee12341;;;[];;;;text;t2_w8c5v1z;False;False;[];;will the mc have sex with women ?;False;False;;;;1610364525;;False;{};giv93fo;False;t3_kuypj8;False;True;t1_giuw2ix;/r/anime/comments/kuypj8/question_to_the_mushoku_tensei_ln_readers/giv93fo/;1610411487;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SgtCode;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sgtAnonymous;light;text;t2_1lx0m89f;False;False;[];;"In my opinion 'quality' and 'harem' are mutually exclusive. Same as good romance and harem. I will list the shows that I disliked heavily since I'm sure you'll enjoy them. - -**Rent a girlfriend** - -**Koi to uso** - - **5-toubun no Hanayome** - -Enjoy -.-";False;False;;;;1610364643;;False;{};giv99fm;False;t3_kuz7ce;False;True;t3_kuz7ce;/r/anime/comments/kuz7ce/looking_for_some_harem_romance_recommendation/giv99fm/;1610411573;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Foxino;;;[];;;;text;t2_dzhje;False;False;[];;For anyone new to anime, a 700 episode series is quite a fucking slog. Stop being a gatekeeper.;False;False;;;;1610364664;;False;{};giv9agu;False;t3_kuu07d;False;True;t1_giv60cc;/r/anime/comments/kuu07d/blue_bird_from_naruto/giv9agu/;1610411593;2;True;False;anime;t5_2qh22;;0;[]; -[];;;POTATOplays101;;;[];;;;text;t2_5waykguv;False;False;[];;"BIG TITTY WHITE CHICKS THAT CAN STEP ON ME AND THAT WILL GET COVERED IN BLOOD FUCK YEAH THATS WHAT I CAME HERE FOR - -To much?";False;False;;;;1610364881;;False;{};giv9o2v;False;t3_kuz5br;False;False;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giv9o2v/;1610411768;322;True;False;anime;t5_2qh22;;0;[]; -[];;;LadyHoekage_;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/siqeth;light;text;t2_6ooil8df;False;False;[];;just like 90% of the isekai out there;False;False;;;;1610365239;;False;{};giva9gk;False;t3_kuzldt;False;True;t3_kuzldt;/r/anime/comments/kuzldt/shield_hero_is_garbage/giva9gk/;1610412039;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OvergearedBigBoy;;;[];;;;text;t2_62vx5saq;False;False;[];;Later down the line yep;False;False;;;;1610365400;;False;{};givakt6;False;t3_kuypj8;False;True;t1_giv93fo;/r/anime/comments/kuypj8/question_to_the_mushoku_tensei_ln_readers/givakt6/;1610412172;1;True;False;anime;t5_2qh22;;0;[]; -[];;;waseequr;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Waseequr;light;text;t2_75alycza;False;False;[];;Question for you pal. Are you sure that the MC in Rent-A-Girlfriend is gonna marry 4 girls and the MC of the latter 5?? I am asking cause the plot was set on modern Japan where polygamy is most probably illegal. I am asking for this ine spoiler here.;False;False;;;;1610365511;;False;{};givas9w;True;t3_kuz7ce;False;True;t1_giv99fm;/r/anime/comments/kuz7ce/looking_for_some_harem_romance_recommendation/givas9w/;1610412273;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lightningforanimes;;;[];;;;text;t2_7kejlzwn;False;False;[];;Lol. Are you expecting every thing to happen in just one season. Damn, give it some rest man. It fills like you are trying to compare shield hero with the whole AOT. To watch Isekai animes you need to change your mindset. I admit shield hero has some major flaws. But, calling it a garbage. Worst possible thought I can think off.;False;False;;;;1610365540;;False;{};givau70;False;t3_kuzldt;False;True;t3_kuzldt;/r/anime/comments/kuzldt/shield_hero_is_garbage/givau70/;1610412296;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Boujoulo;;;[];;;;text;t2_6iczsif5;False;False;[];;I might be wrong but doesn’t a good portion of Subaru’s death come from suicide? I just watched s2 p1 and one of his earlier deaths was from suicide. I honestly wouldn’t have the guts to do anything he does, he’s a really strong character IMO.;False;False;;;;1610365563;;False;{};givavn9;False;t3_kuz49r;False;True;t1_giuzbrv;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/givavn9/;1610412315;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CyclopsTroll;;;[];;;;text;t2_3q3seru4;False;False;[];;I know! It's been one of my favourite shows for years! I nearly died when I heard it was finally getting a new season! HYPE!!!;False;False;;;;1610365575;;False;{};givawdc;False;t3_kuzawv;False;True;t3_kuzawv;/r/anime/comments/kuzawv/im_so_fucking_hyped_for_log_horizon_s3_lets/givawdc/;1610412324;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;Never to late to switch to sub temporarily;False;False;;;;1610365639;;False;{};givb0jd;False;t3_kuzawv;False;True;t1_giuzl3b;/r/anime/comments/kuzawv/im_so_fucking_hyped_for_log_horizon_s3_lets/givb0jd/;1610412386;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;Destruction of the Round Table Conference. Man this file sounds amazing and shit us going down;False;False;;;;1610365686;;False;{};givb410;False;t3_kuzawv;False;True;t3_kuzawv;/r/anime/comments/kuzawv/im_so_fucking_hyped_for_log_horizon_s3_lets/givb410/;1610412428;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Lightningforanimes;;;[];;;;text;t2_7kejlzwn;False;False;[];;I enjoyed it as well. But some people have got a hollow mindset. I admit it's not a top-notch show but calling it garbage. Worst thought ever.;False;False;;;;1610365758;;False;{};givb91q;False;t3_kuzldt;False;True;t1_giv0r5b;/r/anime/comments/kuzldt/shield_hero_is_garbage/givb91q/;1610412493;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ItsADeparture;;;[];;;;text;t2_oh9dp04;False;False;[];;The main Cells at Work title is ending soon with a COVID-19 arc.;False;False;;;;1610365781;;False;{};givbamc;False;t3_kuz5br;False;False;t1_giv7yyd;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givbamc/;1610412513;117;True;False;anime;t5_2qh22;;0;[]; -[];;;SgtCode;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sgtAnonymous;light;text;t2_1lx0m89f;False;False;[];;1. I'm not your pal. 2. I don't know, go watch it.;False;False;;;;1610365793;;False;{};givbbe1;False;t3_kuz7ce;False;True;t1_givas9w;/r/anime/comments/kuz7ce/looking_for_some_harem_romance_recommendation/givbbe1/;1610412524;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Lightningforanimes;;;[];;;;text;t2_7kejlzwn;False;False;[];;Yep. He is.;False;False;;;;1610365838;;False;{};givbecn;False;t3_kuzldt;False;True;t1_giv16z0;/r/anime/comments/kuzldt/shield_hero_is_garbage/givbecn/;1610412562;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;waseequr;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Waseequr;light;text;t2_75alycza;False;False;[];;And you suggested me without knowing a thing. Well done.;False;False;;;;1610365861;;False;{};givbfu0;True;t3_kuz7ce;False;True;t1_givbbe1;/r/anime/comments/kuz7ce/looking_for_some_harem_romance_recommendation/givbfu0/;1610412581;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;"[Spoilers](/s ""He only actually kills himself twice I believe in S1 and that was after his body was taken over by the witches cult and he has Julius kill him. The first time he killed himself because Rem was dead and he wanted to save her. It's always the absolute last resort"")";False;False;;;;1610366000;;1610366556.0;{};givbobu;False;t3_kuz49r;False;True;t1_givavn9;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/givbobu/;1610412698;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;Let's not use Ad hominem here.;False;False;;;;1610366095;;False;{};givbucq;False;t3_kuzldt;False;True;t1_giv16z0;/r/anime/comments/kuzldt/shield_hero_is_garbage/givbucq/;1610412780;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lightningforanimes;;;[];;;;text;t2_7kejlzwn;False;False;[];;In case if you haven't make sure to give a watch to 'we never learn.;False;False;;;;1610366121;;False;{};givbw6t;False;t3_kuz7ce;False;True;t3_kuz7ce;/r/anime/comments/kuz7ce/looking_for_some_harem_romance_recommendation/givbw6t/;1610412806;1;True;False;anime;t5_2qh22;;0;[]; -[];;;waseequr;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Waseequr;light;text;t2_75alycza;False;False;[];;Thanks;False;False;;;;1610366168;;False;{};givbzpe;True;t3_kuz7ce;False;True;t1_givbw6t;/r/anime/comments/kuz7ce/looking_for_some_harem_romance_recommendation/givbzpe/;1610412848;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;I'm going to miss DATABASE DATABASE.;False;False;;;;1610366253;;False;{};givc5n0;False;t3_kuzawv;False;True;t3_kuzawv;/r/anime/comments/kuzawv/im_so_fucking_hyped_for_log_horizon_s3_lets/givc5n0/;1610412936;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;Astolfo from Fate/Apocrypha is canonically non-binary.;False;False;;;;1610366471;;False;{};givcjae;False;t3_kuxi0h;False;True;t3_kuxi0h;/r/anime/comments/kuxi0h/question_what_would_you_call_a_gender_neutral/givcjae/;1610413128;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"It's not even out yet. - -And if it's out and is the same severity of the manga adaptation of the original light novel, there's going to be a big problem. - -The source material literally glorifies rape.";False;False;;;;1610367457;;False;{};givehjy;False;t3_kuzdwy;False;True;t1_giv0xpv;/r/anime/comments/kuzdwy/looking_for_an_anime_where_the_main_characters/givehjy/;1610414050;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610368044;;False;{};givfozp;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givfozp/;1610414638;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sharmarahulkohli;;;[];;;;text;t2_12gbee;False;False;[];;The thing is a lost of people lost their parents and had way bad childhoods:-Historia,Levi,Erwin,Armin,Mikasa etc none of them were rage monsters 24/7;False;False;;;;1610368211;;False;{};givg177;False;t3_kuz49r;False;True;t1_giv0cu6;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/givg177/;1610414807;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;MacronIsaNecrophile;;;[];;;;text;t2_2w91i0i;False;False;[];;"[Gungrave](https://www.youtube.com/watch?v=vbXdPKPCuVU&feature=youtu.be&t=8) starts with the main characters as teenagers and follows them into old age, they become twisted over time and become completely un-recognizable to who they were. skip the first episode and watch the dub.";False;False;;;;1610368302;;False;{};givg7fh;False;t3_kuzdwy;False;True;t3_kuzdwy;/r/anime/comments/kuzdwy/looking_for_an_anime_where_the_main_characters/givg7fh/;1610414890;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Valuable-Search-4202;;;[];;;;text;t2_9rfnpjxh;False;False;[];;In the manga it more plot than this trash;False;True;;comment score below threshold;;1610368429;;False;{};givghjm;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givghjm/;1610415023;-46;True;False;anime;t5_2qh22;;0;[]; -[];;;RimuZ;;MAL;[];;http://myanimelist.net/animelist/LtCrabcake;dark;text;t2_8df66;False;False;[];;Uhm Future Diary really? It has nudity and some disturbing sex scenes.;False;False;;;;1610368480;;False;{};givgl3q;False;t3_kuwnj3;False;True;t1_giuk361;/r/anime/comments/kuwnj3/what_are_some_good_anime_shows_that_have_no_ecchi/givgl3q/;1610415071;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dmtgemini;;;[];;;;text;t2_11138d;False;False;[];;Just don't google anything related to Attack on Titan before you watch it because it's a surefire way to get spoiled.;False;False;;;;1610368516;;False;{};givgn9m;False;t3_kuzdwy;False;False;t1_giv1e4k;/r/anime/comments/kuzdwy/looking_for_an_anime_where_the_main_characters/givgn9m/;1610415103;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jxnesy2;;;[];;;;text;t2_6ff40qt9;False;False;[];;I might, one of my favorite shows. Thanks y’all for the couple downvotes too :);False;False;;;;1610368558;;False;{};givgq08;False;t3_kuzawv;False;True;t1_givb0jd;/r/anime/comments/kuzawv/im_so_fucking_hyped_for_log_horizon_s3_lets/givgq08/;1610415141;2;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your submission has been removed. - -- This looks like it's - a short discussion thread. - This is a form of restricted content that isn't allowed as a full post on the sub. You might consider posting about this sort of thing in the [weekly Casual Discussion Fridays megathread](https://www.reddit.com/r/anime/search?q=title%3A%22Casual+Discussion+Fridays%22+subreddit%3Aanime+author%3AAnimeMod&restrict_sr=on&sort=new&t=week) if it applies. See [our rules page](https://www.reddit.com/r/anime/wiki/rules#wiki_restricted_content) for a full list of restricted content categories. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610368595;moderator;False;{};givgsc2;False;t3_kuzawv;False;True;t3_kuzawv;/r/anime/comments/kuzawv/im_so_fucking_hyped_for_log_horizon_s3_lets/givgsc2/;1610415174;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RimuZ;;MAL;[];;http://myanimelist.net/animelist/LtCrabcake;dark;text;t2_8df66;False;False;[];;"*Attack on Titan* - -*The Promised Neverland* - -Both have some gore and horror though. - -*Sora yori mo Tooi Basho* - -*Violet Evergarden* - -*Sangatsu no Lion* - -Sad and wholesome shows that tend to the heart. - -*Seirei no Moribito* - -*Kemono Souja Erin* - - -Both of these are underwatched shows from the same author. Barely even feel like anime and are great for watching with family, especially the first one.";False;False;;;;1610368703;;1610368932.0;{};givgyx6;False;t3_kuwnj3;False;True;t3_kuwnj3;/r/anime/comments/kuwnj3/what_are_some_good_anime_shows_that_have_no_ecchi/givgyx6/;1610415269;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BiohazardBinkie;;;[];;;;text;t2_3dke29ml;False;False;[];;">And the Sword guy seemed more aware of his own faults and even acknowledges Naofumi but nothing really comes from that character wise - -It does once they awaken their curse weapons/ abilities. They learn that they've been going at it all wrong, and have to play catch up before the next wave. - -The anime left off in a bad place and would have been best if given one or two more episodes.";False;False;;;;1610368819;;False;{};givh6d7;False;t3_kuzldt;False;False;t1_giv8nnw;/r/anime/comments/kuzldt/shield_hero_is_garbage/givh6d7/;1610415378;1;True;False;anime;t5_2qh22;;0;[]; -[];;;evilresurgence4;;;[];;;;text;t2_3hd7gero;False;False;[];;The hype starts in season 2 for aot, season 1 is just an introduction to the world and characters;False;False;;;;1610368908;;False;{};givhcer;False;t3_kuu9wc;False;True;t1_giuitzz;/r/anime/comments/kuu9wc/does_anyone_know_any_good_anime_with_a_lot_of/givhcer/;1610415464;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Denpants;;;[];;;;text;t2_ry9v0w1;False;False;[];;"Clannad both parts. The excessively cute/childish girl characters were so bad, it felt like I was watching girls do baby voice TikTok. Really cringe, kinda uncomfortable to watch. The squeaker voices alao got very old after about 2 episodes. - -My friend told me to watch both parts and he recommended me good shows so I had to. Probably the only high rated MAL show I didn't like.";False;False;;;;1610369124;;1610369333.0;{};givhq9e;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/givhq9e/;1610415660;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Thisisthrowawayacco;;;[];;;;text;t2_4pvm97wv;False;False;[];;Woa what really??;False;False;;;;1610369188;;False;{};givhu1o;False;t3_kuz5br;False;False;t1_givbamc;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givhu1o/;1610415717;35;True;False;anime;t5_2qh22;;0;[]; -[];;;luisalfonsotv;;;[];;;;text;t2_2ovfhdu4;False;False;[];;"To Love-ru kinda goes on to the ""end up with everyone"" idea at somepoint, but it hasn't been acomplished yet and prob never will. the closest to this idea is a game called ""true princess"" which is a dating sim with the girls of the show and has diferrent routes. also, ""We never learn"" is a good shout, since in the manga he ends up with all of them in diferent routes.";False;False;;;;1610369318;;False;{};givi26q;False;t3_kuz7ce;False;True;t3_kuz7ce;/r/anime/comments/kuz7ce/looking_for_some_harem_romance_recommendation/givi26q/;1610415844;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mk7eam_Requiem;;skip7;[];;;dark;text;t2_6bkgpadn;False;False;[];;We get 2 cells at work shows this season, kinda wild.;False;False;;;;1610369445;;False;{};givia9b;False;t3_kuz5br;False;False;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givia9b/;1610415959;96;True;False;anime;t5_2qh22;;0;[]; -[];;;Vinon;;;[];;;;text;t2_hakf0;False;False;[];;"I always fondly remember this show as the first one I watched that took the ""fantasy"" elements in a unique direction.";False;False;;;;1610369513;;False;{};givieby;False;t3_kutpex;False;True;t3_kutpex;/r/anime/comments/kutpex/fino_is_tested_yuushibu/givieby/;1610416019;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Game2015;;;[];;;;text;t2_poe9a;False;False;[];;Won't be adapted in the anime.;False;False;;;;1610369712;;False;{};giviqcb;False;t3_kuz5br;False;False;t1_givhu1o;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giviqcb/;1610416198;47;True;False;anime;t5_2qh22;;0;[]; -[];;;Game2015;;;[];;;;text;t2_poe9a;False;False;[];;It's going to be a two-parter about erection. No, seriously, that's what the Twitter post says.;False;False;;;;1610369748;;False;{};givisor;False;t3_kuz5br;False;False;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givisor/;1610416233;423;True;False;anime;t5_2qh22;;0;[]; -[];;;Northstar6-4;;;[];;;;text;t2_56q8s5f9;False;False;[];;Whats special about code black? I havent been keeping up with Cells At Work lately.;False;False;;;;1610369844;;False;{};giviyu5;False;t3_kuz5br;False;False;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giviyu5/;1610416333;132;True;False;anime;t5_2qh22;;0;[]; -[];;;DANIEL_KEMP_REDDIT;;;[];;;;text;t2_8psqjjlk;False;False;[];;"Code black is probably cancer tbh! I haven't even watched this anime before but even I can tell that ""CODE BLACK"" is most likely cancer";False;True;;comment score below threshold;;1610370033;;False;{};givjapb;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givjapb/;1610416528;-34;True;False;anime;t5_2qh22;;0;[]; -[];;;FateGeorge;;;[];;;;text;t2_5hy67h3r;False;False;[];;Not enough;False;False;;;;1610370102;;False;{};givjeuj;False;t3_kuz5br;False;False;t1_giv9o2v;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givjeuj/;1610416602;99;True;False;anime;t5_2qh22;;0;[]; -[];;;MetalGearSEAL4;;;[];;;;text;t2_bbehx;False;False;[];;ANIME OSMOSIS JONES;False;False;;;;1610370114;;False;{};givjfkc;False;t3_kuz5br;False;False;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givjfkc/;1610416612;88;True;False;anime;t5_2qh22;;0;[]; -[];;;xxxSiegexxx918;;;[];;;;text;t2_3lztu4mi;False;False;[];;When the original was mainly in a healthy body, Code Black takes place is a unhealthy alcoholic. Also its like a Rated-R version off the original.;False;False;;;;1610370133;;False;{};givjgp9;False;t3_kuz5br;False;False;t1_giviyu5;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givjgp9/;1610416629;334;True;False;anime;t5_2qh22;;0;[]; -[];;;TheTrainy;;;[];;;;text;t2_giap8rv;False;False;[];;"Re zero for the first like 6 episodes were honestly a pain, these episodes felt just like they were all the same - -I was on the verge of quitting, but a fried suggested me to just hold on a little longer - -Starting episode 7 it was quite ok - -After episode 15 I was hooked";False;False;;;;1610370236;;False;{};givjnaw;False;t3_kuvkb4;False;False;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/givjnaw/;1610416726;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ve_rushing;;;[];;;;text;t2_5neck4as;False;False;[];;"Wow, someone remembers Yuusha ni Narenakatta Ore wa Shibushibu Shuushoku wo Ketsui Shimashita? - -One of the ecchi titles with best plot (like actual plot) and worldbuilding I have ever watched. Maybe only Tenchi Muyou! Ryououki beats it at that aspect.";False;False;;;;1610370568;;1610370859.0;{};givk8c9;False;t3_kutpex;False;False;t3_kutpex;/r/anime/comments/kutpex/fino_is_tested_yuushibu/givk8c9/;1610417087;6;True;False;anime;t5_2qh22;;0;[]; -[];;;JRavec;;;[];;;;text;t2_64fpcd54;False;False;[];;Sawada Tsunayoshi He is a really brave and kind person who does his best to protect his friends and family even though he is scared of being involved in the mafia.;False;False;;;;1610370681;;False;{};givkfr9;False;t3_kuz49r;False;True;t3_kuz49r;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/givkfr9/;1610417212;3;True;False;anime;t5_2qh22;;0;[]; -[];;;senpaiking19;;;[];;;;text;t2_4vg5i8gw;False;False;[];;This is a nice anime! I didn't notice that I've already finished it.;False;False;;;;1610370895;;False;{};givktug;False;t3_kutpex;False;True;t3_kutpex;/r/anime/comments/kutpex/fino_is_tested_yuushibu/givktug/;1610417423;1;True;False;anime;t5_2qh22;;0;[]; -[];;;horiami;;;[];;;;text;t2_1vozlmy2;False;False;[];;you can see the sperm cells in the background of the visual;False;False;;;;1610370982;;False;{};givkzdq;False;t3_kuz5br;False;False;t1_givisor;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givkzdq/;1610417509;249;True;False;anime;t5_2qh22;;0;[]; -[];;;horiami;;;[];;;;text;t2_1vozlmy2;False;False;[];;if you look in the background of the visual those are not shooting stars, it's sperm cells;False;False;;;;1610371027;;False;{};givl2cn;False;t3_kuz5br;False;False;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givl2cn/;1610417556;55;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610371083;;False;{};givl692;False;t3_kuz5br;False;True;t1_giv9o2v;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givl692/;1610417621;-53;True;False;anime;t5_2qh22;;0;[]; -[];;;joepanda111;;;[];;;;text;t2_5s5mm;False;False;[];;The smiling heads on the sperm;False;False;;;;1610371114;;False;{};givl8ex;False;t3_kuz5br;False;False;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givl8ex/;1610417652;34;True;False;anime;t5_2qh22;;0;[]; -[];;;Game2015;;;[];;;;text;t2_poe9a;False;False;[];;Huh, didn't notice it.;False;False;;;;1610371249;;False;{};givlhqr;False;t3_kuz5br;False;False;t1_givkzdq;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givlhqr/;1610417784;79;True;False;anime;t5_2qh22;;0;[]; -[];;;Grizzly_228;;;[];;;;text;t2_383it7fn;False;False;[];;yet;False;False;;;;1610371292;;False;{};givlkm2;False;t3_kuz5br;False;False;t1_giviqcb;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givlkm2/;1610417827;28;True;False;anime;t5_2qh22;;0;[]; -[];;;Bert_Bro;;;[];;;;text;t2_4z8nebu6;False;False;[];;Nope, it's high cholesterol, erectile dysfunction and regular smoking;False;False;;;;1610371332;;False;{};givlnaw;False;t3_kuz5br;False;False;t1_givjapb;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givlnaw/;1610417865;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Grizzly_228;;;[];;;;text;t2_383it7fn;False;False;[];;You mean cancer as bad or cancer as it is about cancer?;False;False;;;;1610371342;;False;{};givlnym;False;t3_kuz5br;False;False;t1_givjapb;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givlnym/;1610417874;8;True;False;anime;t5_2qh22;;0;[]; -[];;;horiami;;;[];;;;text;t2_1vozlmy2;False;False;[];;also the chapter in the manga is called erection ejaculation and emptiness;False;False;;;;1610371414;;False;{};givlsp2;False;t3_kuz5br;False;False;t1_givlhqr;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givlsp2/;1610417950;98;True;False;anime;t5_2qh22;;0;[]; -[];;;eddihern7;;;[];;;;text;t2_10a6b4fl;False;False;[];;Pain.;False;False;;;;1610371499;;False;{};givly6a;False;t3_kuz5br;False;False;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givly6a/;1610418033;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;I wouldn't really call Reiner a villain tbh;False;False;;;;1610371618;;False;{};givm6rt;False;t3_kuxo7l;False;True;t3_kuxo7l;/r/anime/comments/kuxo7l/top_20_best_anime_villains/givm6rt/;1610418161;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Can't go wrong with Death note and Attack on titan;False;False;;;;1610371709;;False;{};givmd2b;False;t3_kuxere;False;True;t3_kuxere;/r/anime/comments/kuxere/once_in_a_lifetime_opportunity_right_here/givmd2b/;1610418255;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;Neither was Eren.;False;False;;;;1610371809;;False;{};givmjph;False;t3_kuz49r;False;False;t1_givg177;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/givmjph/;1610418352;11;True;False;anime;t5_2qh22;;0;[]; -[];;;mrv3;;;[];;;;text;t2_fe649;False;True;[];;"Idea: Cells at work apocalypse - -The host dies/dying and the 'city'(body) is in a state of total collapse and anarchy. - -Mad Max with blood cells.";False;False;;;;1610371847;;False;{};givmm6k;False;t3_kuz5br;False;False;t1_givjgp9;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givmm6k/;1610418392;170;True;False;anime;t5_2qh22;;0;[]; -[];;;davitheking02;;;[];;;;text;t2_3di12fja;False;False;[];;Oooohhhhhh that makes sense ( ͡° ͜ʖ ͡°);False;False;;;;1610372151;;False;{};givn71i;False;t3_kuz5br;False;False;t1_giuzbw0;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givn71i/;1610418698;253;True;False;anime;t5_2qh22;;0;[]; -[];;;awryconscience;;;[];;;;text;t2_6wqqzlb7;False;False;[];;"He was typical . You don't compare anime protagonist with real people you compare them with other protagonists from different anime ( when trying to define what exactly is typical) or other characters from the same anime . pre time skip eren was typical his growth wasn't not typical he basically outgrew the typical shounen protagonist label he had . -Edit: And even irl people react to death differently , some people literally massacre their own family and go on with their life , all soldiers don't develop PTSD after seeing their friends die in the most horrible ways one can think of .";False;False;;;;1610372478;;1610372811.0;{};givntqc;False;t3_kuz49r;False;True;t1_giv0cu6;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/givntqc/;1610419032;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TalDSRuler;;;[];;;;text;t2_albxe;False;False;[];;*Chuckles darkly*;False;False;;;;1610372611;;False;{};givo3jh;False;t3_kuz5br;False;False;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givo3jh/;1610419193;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;"[""That's game, Set, and match!""](https://i.imgur.com/QhxY4Jz.jpg) [](#kukuku2) - -[A show where a detective solves crimes, but they're really solved by his secretly-magical girl assistant.](https://i.imgur.com/R72TsVy.jpeg) I'd watch that";False;False;;;;1610372668;;False;{};givo7p3;False;t3_kuuqus;False;True;t3_kuuqus;/r/anime/comments/kuuqus/toutotsu_ni_egypt_kami_episode_6_discussion/givo7p3/;1610419257;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Humerous-humerus;;;[];;;;text;t2_3lbvicy8;False;False;[];;Why is Phoenix Wright here;False;False;;;;1610372838;;False;{};givojwz;False;t3_kuz5br;False;False;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givojwz/;1610419454;23;True;False;anime;t5_2qh22;;0;[]; -[];;;benjadolf;;;[];;;;text;t2_18ki1er0;False;False;[];;"> Whats special about code black - -Big ol WBC tiddies.";False;False;;;;1610372856;;False;{};givol4x;False;t3_kuz5br;False;False;t1_giviyu5;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givol4x/;1610419472;65;True;False;anime;t5_2qh22;;0;[]; -[];;;tbu987;;;[];;;;text;t2_et89x;False;False;[];;I only recently watched Konosuba but saw plenty memes about her. After watching the show those memes make even less sense.;False;False;;;;1610372901;;False;{};givoonn;False;t3_kuz49r;False;True;t1_giuycw1;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/givoonn/;1610419528;3;True;False;anime;t5_2qh22;;0;[]; -[];;;tbu987;;;[];;;;text;t2_et89x;False;False;[];;I mean the training arc where he was learning to use his manoeuvre gear shows him get humbled and he works hard putting his head down. Hes not screaming 24/7 u may need to rewatch.;False;False;;;;1610373073;;False;{};givp1l7;False;t3_kuz49r;False;False;t1_givg177;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/givp1l7/;1610419730;9;True;False;anime;t5_2qh22;;0;[]; -[];;;hemag;;;[];;;;text;t2_jz06y;False;False;[];;spoil me on how it ends;False;False;;;;1610373092;;False;{};givp2xy;False;t3_kuz5br;False;False;t1_givbamc;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givp2xy/;1610419751;5;True;False;anime;t5_2qh22;;0;[]; -[];;;deynataggerung;;;[];;;;text;t2_tdi4x;False;False;[];;I guess those cells are actually only a few days old;False;False;;;;1610373102;;False;{};givp3n2;False;t3_kuz5br;False;False;t1_givl692;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givp3n2/;1610419762;7;True;False;anime;t5_2qh22;;0;[]; -[];;;xXRazormarksXx;;;[];;;;text;t2_3t0nwn3e;False;False;[];;"Is that... - - -S E M E N ?";False;False;;;;1610373155;;False;{};givp7et;False;t3_kuz5br;False;False;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givp7et/;1610419820;12;True;False;anime;t5_2qh22;;0;[]; -[];;;tossmetheburgersauce;;;[];;;;text;t2_8zedy0bp;False;False;[];;When do we get a coronavirus episode?;False;False;;;;1610373168;;False;{};givp8bl;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givp8bl/;1610419835;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zooasaurus;;;[];;;;text;t2_s96w0;False;False;[];;Just enough;False;False;;;;1610373206;;False;{};givpb17;False;t3_kuz5br;False;False;t1_giv9o2v;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givpb17/;1610419876;22;True;False;anime;t5_2qh22;;0;[]; -[];;;consolefreakedorigin;;;[];;;;text;t2_2baqt95w;False;False;[];;Acceptable;False;False;;;;1610373242;;False;{};givpdm3;False;t3_kuz5br;False;False;t1_giv9o2v;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givpdm3/;1610419916;44;True;False;anime;t5_2qh22;;0;[]; -[];;;Zadkrod;;;[];;;;text;t2_350owoit;False;False;[];;For real? That's awesome;False;False;;;;1610373365;;False;{};givpmul;False;t3_kuz5br;False;False;t1_giuzbw0;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givpmul/;1610420059;50;True;False;anime;t5_2qh22;;0;[]; -[];;;benjadolf;;;[];;;;text;t2_18ki1er0;False;False;[];;"I loved the first season, and the second season looks promising, but man code black is going to be something else. Already loved the grim and dark undertone of the first episode, hoping for a similar theme in the future which looks like what this anime will be dealing. - -One thing I enjoyed about the first season were the numerous doctor break downs of the episode that provided a lot of education for people like me who love this stuff but have lost touch. Hopefully, those will return too nothing more wonderful then to receive a proper breakdown from someone who actually practices medicine.";False;False;;;;1610373565;;False;{};givq1rq;False;t3_kuz5br;False;False;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givq1rq/;1610420287;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Alemismun;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Alemismun;light;text;t2_smw015;False;False;[];;Soon we are gonna be needing a watch order list for this.;False;False;;;;1610373634;;False;{};givq6rv;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givq6rv/;1610420363;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Novelle_1020;;;[];;;;text;t2_3um1vzgu;False;False;[];;"100% agree with the Subaru thing. Most people would give up easily in his position; his resolve is insane.";False;False;;;;1610373751;;False;{};givqf00;False;t3_kuz49r;False;True;t1_giuzbrv;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/givqf00/;1610420494;2;True;False;anime;t5_2qh22;;0;[]; -[];;;peanut-buttr;;;[];;;;text;t2_76evn7go;False;False;[];;more.. MOREE!! GIMME MORE HOT WHITE BLOOD CELLS!!;False;False;;;;1610373838;;False;{};givqlp0;False;t3_kuz5br;False;False;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givqlp0/;1610420594;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Toxic-ity;;;[];;;;text;t2_d6ynhyr;False;False;[];;"watch the anime ;)";False;False;;;;1610374052;;False;{};givr1f8;False;t3_kuz5br;False;False;t1_givmm6k;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givr1f8/;1610420835;34;True;False;anime;t5_2qh22;;0;[]; -[];;;mrv3;;;[];;;;text;t2_fe649;False;True;[];;Oh, awesome, I am. I like it so far.;False;False;;;;1610374082;;False;{};givr3jw;False;t3_kuz5br;False;False;t1_givr1f8;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givr3jw/;1610420872;17;True;False;anime;t5_2qh22;;0;[]; -[];;;99trickS28;;;[];;;;text;t2_3t9ni7pt;False;False;[];;The source material is not even done yet, the author said that his/her final arc for cells at work will be about coronavirus.;False;False;;;;1610374117;;False;{};givr67h;False;t3_kuz5br;False;False;t1_givp2xy;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givr67h/;1610420918;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Scaleless1776;;;[];;;;text;t2_4sg8c6ii;False;False;[];;When does episode one come out?;False;False;;;;1610374121;;False;{};givr6gj;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givr6gj/;1610420922;1;True;False;anime;t5_2qh22;;0;[]; -[];;;99trickS28;;;[];;;;text;t2_3t9ni7pt;False;False;[];;The source material is not even done yet, the author said that his/her final arc for cells at work will be about coronavirus.;False;False;;;;1610374206;;False;{};givrcql;False;t3_kuz5br;False;False;t1_givp8bl;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givrcql/;1610421035;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Megamoncha;;;[];;;;text;t2_eyueb;False;False;[];;Imo Subaru more so than Emilia. Most people were fine with Emilia pre Ep 18 and only really start hating/questioning her character when Subaru rejected Rem.;False;False;;;;1610374239;;False;{};givrfgm;False;t3_kuz49r;False;True;t3_kuz49r;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/givrfgm/;1610421095;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ohmanitsbob;;;[];;;;text;t2_5e0htpvv;False;False;[];;I love this show!!!;False;False;;;;1610374246;;False;{};givrg0g;False;t3_kuz5br;False;False;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givrg0g/;1610421106;4;True;False;anime;t5_2qh22;;0;[]; -[];;;kiyotaka-6;;;[];;;;text;t2_7t4ayv4o;False;False;[];;Why you get downvoted? i think you are talking about how the body have cancer and not that the anime is cancer right?;False;False;;;;1610374298;;False;{};givrk2x;False;t3_kuz5br;False;False;t1_givjapb;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givrk2x/;1610421178;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Hanede;;;[];;;;text;t2_tmljc;False;False;[];;"So, the original Cells at Work takes place in a mostly healthy body and deals with simple things like a scratch, a cold, etc. Even if they have to fight bacteria or fix a wound, everything is fine and dandy by the end of the day, so the overall tone is quite positive. - -On the other hand, Code Black takes place in an unhealthy body, and deals with much darker themes such as substance abuse. This also means the body environment is much more dystopic, with scarce resources, waste piling up, cells are overworked trying to keep up etc. making the tone much darker. - -I like both but I personally find Black much more engaging.";False;False;;;;1610374352;;False;{};givro9g;False;t3_kuz5br;False;False;t1_giviyu5;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givro9g/;1610421242;77;True;False;anime;t5_2qh22;;0;[]; -[];;;cybermesh;;;[];;;;text;t2_7aiq4;False;False;[];;It aired yesterday.;False;False;;;;1610374356;;False;{};givrojw;False;t3_kuz5br;False;False;t1_givr6gj;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givrojw/;1610421246;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Goukenslay;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Goukenslay;light;text;t2_h8wgs;False;False;[];;"Gonna have to recommend this for sex ed, and drug abuse courses - - - -White blood cells are all waifu material";False;False;;;;1610374487;;False;{};givryhg;False;t3_kuz5br;False;False;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givryhg/;1610421403;24;True;False;anime;t5_2qh22;;0;[]; -[];;;LoneStarEnts;;;[];;;;text;t2_93n74m9c;False;False;[];;"This is one of the series that caused a wave. I was fortunate enough to watch it weekly when it first aired, so each emotional beat was amplified. - -This show is special. Greater than the sum of its parts, and one that I look back on with teary-eyed fondness.";False;False;;;;1610374530;;False;{};givs1qk;False;t3_kut8gm;False;True;t3_kut8gm;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/givs1qk/;1610421454;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Scaleless1776;;;[];;;;text;t2_4sg8c6ii;False;False;[];;Omg;False;False;;;;1610374641;;False;{};givsa0x;False;t3_kuz5br;False;False;t1_givrojw;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givsa0x/;1610421584;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Pixelchu25;;;[];;;;text;t2_s0tduwe;False;False;[];;Ah yes, the long awaited special.;False;False;;;;1610374847;;False;{};givsqjm;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givsqjm/;1610421847;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Rigoku;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Elitar;light;text;t2_2j07de1;False;False;[];;"Look at the sex of that person = problem solved. - -edit: Why downvotes ? Are you really deny biology ? You guys are like ppl who believe in flat earth.";False;False;;;;1610374872;;1610401025.0;{};givssfo;False;t3_kuxi0h;False;False;t3_kuxi0h;/r/anime/comments/kuxi0h/question_what_would_you_call_a_gender_neutral/givssfo/;1610421874;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Blitzenboar;;;[];;;;text;t2_1dix19kf;False;False;[];;I’ve heard good things about the anime. Should I start it?;False;False;;;;1610374906;;False;{};givsv26;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givsv26/;1610421918;3;True;False;anime;t5_2qh22;;0;[]; -[];;;amirokia;;;[];;;;text;t2_3innu2wt;False;False;[];;I didn't even notice those until people are saying something about sex and babies;False;False;;;;1610375188;;False;{};givthcn;False;t3_kuz5br;False;False;t1_givl2cn;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givthcn/;1610422257;15;True;False;anime;t5_2qh22;;0;[]; -[];;;ImposiblLemon;;;[];;;;text;t2_517czq5m;False;False;[];;Oh my God;False;False;;;;1610375205;;False;{};givtisj;False;t3_kuz5br;False;False;t1_givkzdq;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givtisj/;1610422278;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;This series is gold, and I am talking about both the vanilla and edgy version;False;False;;;;1610375206;;False;{};givtisq;False;t3_kuz5br;False;False;t1_giuzbw0;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givtisq/;1610422278;59;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Always nice to see men of culture in this sub;False;False;;;;1610375272;;False;{};givto68;False;t3_kuz5br;False;False;t1_giv9o2v;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givto68/;1610422358;12;True;False;anime;t5_2qh22;;0;[]; -[];;;IDrewABox;;;[];;;;text;t2_247ihbqr;False;False;[];;What makes it rated R? sperm and childish sex jokes?;False;True;;comment score below threshold;;1610375312;;False;{};givtrch;False;t3_kuz5br;False;True;t1_givjgp9;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givtrch/;1610422402;-31;True;False;anime;t5_2qh22;;0;[]; -[];;;fazepizzanuke;;;[];;;;text;t2_10y6d183;False;False;[];;Erwin smith, i feel like a lot of people don't understand erwin's character, he is supposed to be a selfish character who would sacrifice everything just to reach his goal, but the fact that most people overlooked his character is one of the reason why erwin is one of the best character in any show;False;False;;;;1610375436;;False;{};givu19h;False;t3_kuz49r;False;False;t3_kuz49r;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/givu19h/;1610422551;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Jeyban;;;[];;;;text;t2_5ibywbs;False;False;[];;Much more serious diseases, how an unhealthy lifestyle destroys your body, which makes life hell for the main characters.;False;False;;;;1610375969;;False;{};givv79q;False;t3_kuz5br;False;False;t1_givtrch;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givv79q/;1610423225;54;True;False;anime;t5_2qh22;;0;[]; -[];;;akkobutnotreally;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/lottevanilla;light;text;t2_18cgajnf;False;False;[];;Y E S .;False;False;;;;1610375994;;False;{};givv93k;False;t3_kuz5br;False;False;t1_givp7et;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givv93k/;1610423255;12;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;the navigator girl is pretty cute.;False;False;;;;1610376001;;False;{};givv9pu;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givv9pu/;1610423265;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Game2015;;;[];;;;text;t2_poe9a;False;False;[];;There are only 8 episodes this season, and the season was in development before 2020, while the C-19 chapter is considered a recent decision, so it more than likely won't be adapted at all.;False;False;;;;1610376091;;False;{};givvhci;False;t3_kuz5br;False;False;t1_givlkm2;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givvhci/;1610423390;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Game2015;;;[];;;;text;t2_poe9a;False;False;[];;I know that.;False;True;;comment score below threshold;;1610376107;;False;{};givvimv;False;t3_kuz5br;False;True;t1_givlsp2;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givvimv/;1610423411;-25;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;Dangerously unhealthy host body, alcoholism, smoking, and masturbation, parallels/allegory to working conditions of black companies.;False;False;;;;1610376118;;False;{};givvjlp;False;t3_kuz5br;False;False;t1_givtrch;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givvjlp/;1610423425;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Sujallamichhaneakasl;;;[];;;;text;t2_3i2s1kbj;False;False;[];;What does the host have to go through again?? Let the man die already seesh....he's already suffered enough!;False;False;;;;1610376157;;False;{};givvmu1;False;t3_kuz5br;False;False;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givvmu1/;1610423477;4;True;False;anime;t5_2qh22;;0;[]; -[];;;KillMeImUselessowo;;;[];;;;text;t2_6n17hp5a;False;False;[];;Black's white blood cell really do be letting her titties hang out like that huh;False;False;;;;1610376181;;False;{};givvor2;False;t3_kuz5br;False;False;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givvor2/;1610423509;10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610376221;;False;{};givvs2x;False;t3_kuz5br;False;True;t1_givisor;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givvs2x/;1610423566;15;True;False;anime;t5_2qh22;;0;[]; -[];;;IDrewABox;;;[];;;;text;t2_247ihbqr;False;False;[];;Gotcha nothing out of the ordinary;False;True;;comment score below threshold;;1610376271;;False;{};givvw58;False;t3_kuz5br;False;True;t1_givvjlp;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givvw58/;1610423626;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;Sunshine145;;;[];;;;text;t2_d976y;False;False;[];;Pirate this and every other Aniplex show to boycott Funimation's shitty app.;False;True;;comment score below threshold;;1610376377;;False;{};givw4pt;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givw4pt/;1610423761;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;KillMeImUselessowo;;;[];;;;text;t2_6n17hp5a;False;False;[];;I'm so conflicted on this show's take - on one hand I like what it's trying but on the other big titty WBC is stupid and when main hataraku was new I literally joked about a tentacle monster STD as a doujin concept which I've heard is a thing here lmao;False;True;;comment score below threshold;;1610376601;;False;{};givwn4v;False;t3_kuz5br;False;False;t1_givjgp9;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givwn4v/;1610424036;-18;True;False;anime;t5_2qh22;;0;[]; -[];;;Game2015;;;[];;;;text;t2_poe9a;False;False;[];;Not happening. Season 2 was in production before 2020, and author only decided to make COVID-19 chapter rather recently, so there's no way it's going to be adapted, not even in Black, which doesn't even touch that topic.;False;False;;;;1610376679;;False;{};givwtoo;False;t3_kuz5br;False;False;t1_givp8bl;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givwtoo/;1610424139;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Realistic-Usual;;;[];;;;text;t2_68o99t69;False;False;[];;Wdym?;False;False;;;;1610376719;;False;{};givwwvm;False;t3_kuz5br;False;True;t1_givghjm;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givwwvm/;1610424187;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Realistic-Usual;;;[];;;;text;t2_68o99t69;False;False;[];;I can’t find it on Crunchyroll even though it says that it aired 2 days ago. Can someone help?;False;False;;;;1610376775;;False;{};givx1eg;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givx1eg/;1610424255;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SusuMeebo;;;[];;;;text;t2_287ix20s;False;False;[];;I've been waiting for so long .😭♥️;False;False;;;;1610376908;;False;{};givxc5r;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givxc5r/;1610424441;3;True;False;anime;t5_2qh22;;0;[]; -[];;;tossmetheburgersauce;;;[];;;;text;t2_8zedy0bp;False;False;[];;Wait there's actually a coronavirus chapter lmaooo I was just memeing, didn't even realise;False;False;;;;1610376914;;False;{};givxcp1;False;t3_kuz5br;False;True;t1_givp8bl;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givxcp1/;1610424449;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Bro what people love Erwin, I have fucking never seen anyone diss Erwin and personally he’s my fave character of the series.;False;False;;;;1610376940;;False;{};givxf03;False;t3_kuz49r;False;False;t1_givu19h;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/givxf03/;1610424481;5;True;False;anime;t5_2qh22;;0;[]; -[];;;rotten_riot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RottenOrange/;light;text;t2_20f93nxp;False;False;[];;"Considering this body is shit, I wonder how they're going to handle the sex stuff. I mean, I doubt the human is going to get AIDS... right? - -Btw this confirms the human is male. I always thought they would never introduce something like a sperm cell cause they didn't wanted to specify the human's gender, but I guess I was wrong lol";False;False;;;;1610377014;;False;{};givxlks;False;t3_kuz5br;False;False;t1_giuzbw0;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givxlks/;1610424580;108;True;False;anime;t5_2qh22;;0;[]; -[];;;Grizzly_228;;;[];;;;text;t2_383it7fn;False;False;[];;I mean not in this season for sure but maybe in the future. Season 4 in 2023, why not?;False;False;;;;1610377029;;False;{};givxmtz;False;t3_kuz5br;False;False;t1_givvhci;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givxmtz/;1610424598;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dinos_and_Horses;;;[];;;;text;t2_91xxlwkj;False;False;[];;I forgot that this was coming out and I had waited so long to watch it;False;False;;;;1610377192;;False;{};givy0jp;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givy0jp/;1610424807;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Chanka69;;;[];;;;text;t2_4f4jvnhq;False;False;[];;They're really going for fan service on white blood cell aren't they? Either way I don't mind if you know what I mean...;False;False;;;;1610377272;;False;{};givy6zq;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givy6zq/;1610424909;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SonAnka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SonAnka;light;text;t2_4bv8n52s;False;False;[];;Whats difference between this one and other seasons?;False;False;;;;1610377341;;False;{};givyckd;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givyckd/;1610424995;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ma103;;;[];;;;text;t2_icj74;False;False;[];;"What I meant is, a person wouldn’t be stable when they are in Eren’s circumstances - -Levi, Erwin - they are matured adults now just like post time skip Eren. Of course they will not be raging. - -Historia - she lost her parents at a very young age. She is not exactly a stable person tho if you still remember the story. Faking a front etc. - -Armin - he was scared shitless, trembling with fear - -Mikasa - the person most important to her is Eren due to their childhood not Eren’s mom. Wasn’t she raging when Eren “died”? - -One question for you, what will you do and react when you saw your mother gets tore apart and eaten alive?";False;False;;;;1610377395;;False;{};givyh7o;False;t3_kuz49r;False;False;t1_givg177;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/givyh7o/;1610425063;8;True;False;anime;t5_2qh22;;0;[]; -[];;;rotten_riot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RottenOrange/;light;text;t2_20f93nxp;False;False;[];;"S1 adapted literally half the manga, so it's very likely they will adapt all the remaining chapters this season cause it's the same amount. - -Although the Blu-ray/DVDs say 8 episodes, its unknown if the episodes that conform the movie will be included on there or apart. If that's the case, then this season would've the normal 12 episodes, enough to adapt everything (including the last chapter).";False;False;;;;1610377489;;False;{};givyp7m;False;t3_kuz5br;False;False;t1_givvhci;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givyp7m/;1610425180;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Swift_Wind;;;[];;;;text;t2_11b2gp;False;False;[];;I really can't explain why, and I've watched a decent bit of anime (have already finished my 3rd Gundam series in the past year) just for some reason I can't get into shonen anime. I've tried Dragonball, One Piece, and Bleach and just felt incredibly bored. Now that's even more odd since I've been playing Jump Force recently and actually really enjoy it.;False;False;;;;1610377518;;False;{};givyrjy;False;t3_kuu07d;False;True;t1_giv60cc;/r/anime/comments/kuu07d/blue_bird_from_naruto/givyrjy/;1610425214;0;True;False;anime;t5_2qh22;;0;[]; -[];;;flamemane;;;[];;;;text;t2_49722ndy;False;False;[];;Brain cell looks like ace attorney Phoenix Wright. haha;False;False;;;;1610377550;;False;{};givyuaq;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givyuaq/;1610425256;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"Can you watch black without having watched the original? - -The cmts are making me interested in what'll happen and with exams coming up I just want to jump straight in. - -Watched the first 3 episodes of Cells At Work when it aired but it's been on my on hold for over a year now";False;False;;;;1610377561;;False;{};givyv7w;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givyv7w/;1610425269;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ma103;;;[];;;;text;t2_icj74;False;False;[];;"I relate to real life because some anime are meant to reflect true human nature. Of course people react differently when they lost everything, some with rage some with fear. Just that Eren belongs to the former. - -Mind giving some examples of protagonists from other anime who are like young Eren?";False;False;;;;1610377688;;False;{};givz5gn;False;t3_kuz49r;False;False;t1_givntqc;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/givz5gn/;1610425421;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Hanis16;;;[];;;;text;t2_1r7w6ql9;False;False;[];;Yes,it will make sure you will stay healthy for the rest of your life.Its very dark.;False;False;;;;1610377724;;False;{};givz8f2;False;t3_kuz5br;False;True;t1_givsv26;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givz8f2/;1610425467;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Redmon425;;;[];;;;text;t2_15ro6h;False;False;[];;"Never seen the series. As well as the first one. - -Is there any romance?";False;False;;;;1610377830;;False;{};givzh5i;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givzh5i/;1610425597;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WasirRumi;;;[];;;;text;t2_35yn0v1a;False;False;[];;Damn. We have reached peak anime. We animefied a sperm. Is there anything else left?;False;False;;;;1610377855;;False;{};givzje5;False;t3_kuz5br;False;False;t1_givkzdq;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givzje5/;1610425628;44;True;False;anime;t5_2qh22;;0;[]; -[];;;aes110;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aes110;light;text;t2_jj27q;False;True;[];;"The useless thing is mostly a meme, she does revive many people and takes down a lot of high-level demonic stuff. - -Its the amount of trouble at stupid stuff she does, plus the high expectation you naturally have from a goddess that makes people laugh at her";False;False;;;;1610377867;;False;{};givzkh2;False;t3_kuz49r;False;False;t1_giuycw1;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/givzkh2/;1610425643;8;True;False;anime;t5_2qh22;;0;[]; -[];;;MaxVonBritannia;;;[];;;;text;t2_lykikhu;False;False;[];;"""Security, security we got a code black, I repeat a code black"" - -""RUCKUS WHAT THE HELL IS A CODE BLACK""";False;False;;;;1610377878;;False;{};givzli6;False;t3_kuz5br;False;False;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givzli6/;1610425660;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rotten_riot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RottenOrange/;light;text;t2_20f93nxp;False;False;[];;"It may be an unpopular opinion but I don't really like COVID to end the series, it feels kinda random. Like, even if the COVID guy will probably be one of the strongest enemies in the manga he'll still be a guy who appears there for dying, just like any other germ. - -I would even prefer a third Cancer cell awakening cause at least he does feels like some kind of major antagonist. We will know COVID in the same chapter he's going to get killed, so he doesn't feel any special.";False;False;;;;1610377960;;False;{};givzsg2;False;t3_kuz5br;False;False;t1_givbamc;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givzsg2/;1610425760;3;True;False;anime;t5_2qh22;;0;[]; -[];;;rotten_riot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RottenOrange/;light;text;t2_20f93nxp;False;False;[];;">White blood cells are all waifu material - -You're talking about Black or about the original series?";False;False;;;;1610378035;;1610392347.0;{};givzynl;False;t3_kuz5br;False;False;t1_givryhg;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/givzynl/;1610425854;10;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;That was fun, but really had nothing to do with the show's premise. Even the narrator was confused.;False;False;;;;1610378054;;False;{};giw0086;False;t3_kuuqus;False;True;t3_kuuqus;/r/anime/comments/kuuqus/toutotsu_ni_egypt_kami_episode_6_discussion/giw0086/;1610425877;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rotten_riot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RottenOrange/;light;text;t2_20f93nxp;False;False;[];;"Why though? - -It's as simple as HS1 > HS2, and then watch BLACK whenever you want";False;False;;;;1610378060;;False;{};giw00rt;False;t3_kuz5br;False;True;t1_givq6rv;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw00rt/;1610425885;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vinny_Lam;;;[];;;;text;t2_19ehzho9;False;False;[];;Except Cells at Work is much better and more detailed.;False;False;;;;1610378069;;False;{};giw01ho;False;t3_kuz5br;False;False;t1_givjfkc;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw01ho/;1610425898;19;True;False;anime;t5_2qh22;;0;[]; -[];;;horiami;;;[];;;;text;t2_1vozlmy2;False;False;[];;I'm willing to bet its not the first time;False;False;;;;1610378295;;False;{};giw0kh4;False;t3_kuz5br;False;False;t1_givzje5;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw0kh4/;1610426185;15;True;False;anime;t5_2qh22;;0;[]; -[];;;aes110;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aes110;light;text;t2_jj27q;False;True;[];;"I still don't consider him selfish as his dream was something that is beneficial for everyone, and he doesn't sacrifice people if he has another option - -[Season 3 P2 spoiler](/s ""However when it truly came down to it he did sacrifice himself and his dream for the betterment of humanity"") - -[Berserk Spoilers](/s ""Which is why I feel like Erwin Smith is the hero version of Griffith"")";False;False;;;;1610378296;;False;{};giw0kkc;False;t3_kuz49r;False;False;t1_givu19h;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/giw0kkc/;1610426187;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Vinny_Lam;;;[];;;;text;t2_19ehzho9;False;False;[];;"Like people have already said, the vanilla series takes place inside a healthy body, whereas Black takes place inside the body of an unhealthy man who is also an alcoholic and smoker. - -Personally, I prefer Black because it’s a more interesting take on the series. The feeling of impending doom makes it more engaging. Plus, the vanilla series can get a little stale at times.";False;False;;;;1610378302;;False;{};giw0l1o;False;t3_kuz5br;False;False;t1_giviyu5;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw0l1o/;1610426193;8;True;False;anime;t5_2qh22;;0;[]; -[];;;rotten_riot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RottenOrange/;light;text;t2_20f93nxp;False;False;[];;"[Cells at Work! Code Black will end on February 22nd tho.](https://www.animenewsnetwork.com/news/2020-12-10/cells-at-work-code-black-manga-to-end-in-8th-volume/.167283) - -[Cells at Work will end on January 26th.](https://www.animenewsnetwork.com/news/2020-12-25/akane-shimizu-cells-at-work-manga-ends-in-january/.167851)";False;False;;;;1610378370;;False;{};giw0qyd;False;t3_kuz5br;False;True;t1_givrcql;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw0qyd/;1610426282;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CrasianLe;;;[];;;;text;t2_379z3crt;False;False;[];;Wen watching this you shouldn't smoke weed or drink alcohol lol;False;False;;;;1610378389;;False;{};giw0slr;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw0slr/;1610426309;1;True;False;anime;t5_2qh22;;0;[]; -[];;;horiami;;;[];;;;text;t2_1vozlmy2;False;False;[];;Pretty sure the other body is also male from the sneezes, if i remember right there was a short in another body that was female;False;False;;;;1610378399;;False;{};giw0tg0;False;t3_kuz5br;False;False;t1_givxlks;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw0tg0/;1610426323;25;True;False;anime;t5_2qh22;;0;[]; -[];;;horiami;;;[];;;;text;t2_1vozlmy2;False;False;[];;You are underestimating black;False;False;;;;1610378435;;False;{};giw0wkq;False;t3_kuz5br;False;False;t1_givxlks;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw0wkq/;1610426371;114;True;False;anime;t5_2qh22;;0;[]; -[];;;rotten_riot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RottenOrange/;light;text;t2_20f93nxp;False;False;[];;"Maybe it's because how he worded it? Idk - -*""I know nothing about the show but CODE BLACK means cancer, I'm 100% sure lol""*";False;False;;;;1610378488;;1610398571.0;{};giw1114;False;t3_kuz5br;False;True;t1_givrk2x;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw1114/;1610426440;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Themister9;;;[];;;;text;t2_1weyatxi;False;False;[];;Tru, but like i dont think he tryna diss hes just trying to state a reasonable fact imo;False;False;;;;1610378491;;False;{};giw119u;False;t3_kuz49r;False;True;t1_givxf03;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/giw119u/;1610426444;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jackstar96;;;[];;;;text;t2_4z609ty0;False;False;[];;I forgot about this series tbh;False;False;;;;1610378517;;False;{};giw13g7;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw13g7/;1610426478;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jejmaze;;;[];;;;text;t2_6bwf7;False;False;[];;Also known as Osmosis Jojo;False;False;;;;1610378536;;False;{};giw150p;False;t3_kuz5br;False;False;t1_givjfkc;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw150p/;1610426501;38;True;False;anime;t5_2qh22;;0;[]; -[];;;Jejmaze;;;[];;;;text;t2_6bwf7;False;False;[];;I too want Jojo Part 6;False;False;;;;1610378553;;False;{};giw16h3;False;t3_kuz5br;False;False;t1_givly6a;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw16h3/;1610426523;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Poked_salad;;;[];;;;text;t2_x8vpw;False;False;[];;Just make it AIDS then. Simple and straight to the point as it kills all the WBC;False;False;;;;1610378606;;False;{};giw1b1i;False;t3_kuz5br;False;False;t1_givzsg2;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw1b1i/;1610426590;4;True;False;anime;t5_2qh22;;0;[]; -[];;;bigxangelx1;;;[];;;;text;t2_38l5cv0r;False;False;[];;I just started cells at work s1 yesterday. Perfect timing since I get more to watch!;False;False;;;;1610378695;;False;{};giw1igc;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw1igc/;1610426703;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LordAxoris;;;[];;;;text;t2_2rukia91;False;False;[];;Is it narcissism to be attracted to your own cells;False;False;;;;1610378785;;False;{};giw1q9h;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw1q9h/;1610426821;1;True;False;anime;t5_2qh22;;0;[]; -[];;;adaovr;;;[];;;;text;t2_821ixybm;False;False;[];;can't wait ig;False;False;;;;1610379104;;False;{};giw2i2j;False;t3_kuz5br;False;False;t1_givn71i;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw2i2j/;1610427241;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;But people don’t overlook Erwin;False;False;;;;1610379766;;False;{};giw44gs;False;t3_kuz49r;False;False;t1_giw119u;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/giw44gs/;1610428178;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;Like all Jujutsu sorcerers :);False;False;;;;1610379863;;False;{};giw4d2p;False;t3_kutgit;False;True;t1_giuzy2q;/r/anime/comments/kutgit/what_anime_are_you_living_for_right_now/giw4d2p/;1610428312;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;"Abunai Sisters: Koko & Mika, Nami anime, Pupa, & Utsu Musume Sayuri";False;False;;;;1610380086;;False;{};giw4wwy;False;t3_kuvkb4;False;True;t3_kuvkb4;/r/anime/comments/kuvkb4/what_anime_did_you_painfully_force_yourself_to/giw4wwy/;1610428606;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;Black Lagoon (the English dub is really good too);False;False;;;;1610380140;;False;{};giw51u0;False;t3_kuu9wc;False;True;t3_kuu9wc;/r/anime/comments/kuu9wc/does_anyone_know_any_good_anime_with_a_lot_of/giw51u0/;1610428696;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Plerti;;;[];;;;text;t2_3iruws8i;False;False;[];;I only watched it once, around 12 years ago, but I still remember perfectly some parts as if I just had watched them. It's an anime that it's moved by emotions rather than plot, it's amazing.;False;False;;;;1610380272;;False;{};giw5drt;False;t3_kut8gm;False;False;t3_kut8gm;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/giw5drt/;1610428870;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MerePotato;;;[];;;;text;t2_14t2wz;False;False;[];;Alcoholism, check, smoking, check... masturbation? Last I checked that didn't kill you.;False;False;;;;1610380474;;False;{};giw5w55;False;t3_kuz5br;False;True;t1_givvjlp;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw5w55/;1610429154;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gatmuz;;;[];;;;text;t2_2yhiopii;False;False;[];;"[Black](/s ""The manga talks about erectile dysfunction and gonorrhea."")";False;False;;;;1610380512;;False;{};giw5zho;False;t3_kuz5br;False;False;t1_givxlks;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw5zho/;1610429204;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Cuckmin;;;[];;;;text;t2_f29kfvz;False;False;[];;"> Cells at Work is much better - -Except that's **your** opinion";False;False;;;;1610380550;;False;{};giw630t;False;t3_kuz5br;False;False;t1_giw01ho;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw630t/;1610429255;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Walterod;;;[];;;;text;t2_w6mw9;False;False;[];;It's a three episode arc, with each episode running 23 minutes.;False;False;;;;1610380883;;False;{};giw6xor;False;t3_kuz5br;False;False;t1_giuzbw0;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw6xor/;1610429705;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Majoritymars5;;;[];;;;text;t2_3f0wga99;False;False;[];;BLACK;False;False;;;;1610380902;;False;{};giw6zge;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw6zge/;1610429731;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Goukenslay;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Goukenslay;light;text;t2_h8wgs;False;False;[];;Why not both;False;False;;;;1610381087;;False;{};giw7g3i;False;t3_kuz5br;False;False;t1_givzynl;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw7g3i/;1610429974;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Camera_dude;;;[];;;;text;t2_izyt9;False;False;[];;"So when do we get Corona-chan showing up in a ""Cells at Work"" anime?";False;False;;;;1610381130;;False;{};giw7k29;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw7k29/;1610430033;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChiefKaduku;;;[];;;;text;t2_9l85qa15;False;False;[];;I liked it it had a good concept towards the end about two dimensions fighting to save their world doesnt sound so generic to me;False;False;;;;1610381171;;False;{};giw7nmj;False;t3_kuzldt;False;False;t1_giv2jb0;/r/anime/comments/kuzldt/shield_hero_is_garbage/giw7nmj/;1610430090;0;True;False;anime;t5_2qh22;;0;[]; -[];;;aigiswave;;;[];;;;text;t2_96mxwoda;False;False;[];;Tfw they don’t focus on the actual sex and instead on the disgusting diseases that it gives to the person.;False;False;;;;1610381244;;1610382086.0;{};giw7u73;False;t3_kuz5br;False;False;t1_givn71i;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw7u73/;1610430190;181;True;False;anime;t5_2qh22;;0;[]; -[];;;snowysnowy;;MAL;[];;Got anymore of that Log Horizon?;dark;text;t2_6btop;False;False;[];;">healthy - -But very unlucky lol";False;False;;;;1610381513;;False;{};giw8ilb;False;t3_kuz5br;False;False;t1_givjgp9;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw8ilb/;1610430560;7;True;False;anime;t5_2qh22;;0;[]; -[];;;HobnobsTheRed;;;[];;;;text;t2_1ftgjit5;False;False;[];;"> A show where a detective solves crimes, but they're really solved by his secretly-magical girl assistant. I'd watch that - -Dun da-dun da-dun, Inspector Gadget...";False;False;;;;1610381557;;False;{};giw8mmc;False;t3_kuuqus;False;True;t1_givo7p3;/r/anime/comments/kuuqus/toutotsu_ni_egypt_kami_episode_6_discussion/giw8mmc/;1610430624;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LoLReiver;;;[];;;;text;t2_e0mfc;False;False;[];;PSG gave us anthropomorphized sperm lol;False;False;;;;1610381626;;False;{};giw8sw8;False;t3_kuz5br;False;False;t1_giw0kh4;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw8sw8/;1610430719;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Kenyanen;;;[];;;;text;t2_3oxc6jc7;False;False;[];;So this is what happened on the inside in the movie Soul?;False;False;;;;1610381818;;False;{};giw9a7k;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giw9a7k/;1610430977;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HishigiRyuuji;;;[];;;;text;t2_11ebnz;False;False;[];;What I don't understand is why did they decide to release the spinoff (Code Black) in the same season with the original's sequel. I thought they could've generated more profit and attention if they decided to release them in different season.;False;False;;;;1610382236;;False;{};giwadht;False;t3_kuz5br;False;False;t1_giviyu5;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwadht/;1610431553;6;True;False;anime;t5_2qh22;;0;[]; -[];;;elhopanesromtik;;;[];;;;text;t2_9ij0ehyq;False;False;[];;They could do an ova;False;False;;;;1610382665;;False;{};giwbhay;False;t3_kuz5br;False;False;t1_givvhci;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwbhay/;1610432232;3;True;False;anime;t5_2qh22;;0;[]; -[];;;generalmillscrunch;;;[];;;;text;t2_zofoh;False;False;[];;The only series clover works dropped the ball on towards the end was their literal first series Darling in the Franxx, and that was a directing and writing issue, not a production one.;False;False;;;;1610383199;;False;{};giwcuvk;False;t3_kuvuc0;False;True;t1_giuh7m4;/r/anime/comments/kuvuc0/prediction_wonder_egg_priority_will_be_amazing/giwcuvk/;1610433059;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JASTARGO;;;[];;;;text;t2_23f838mo;False;False;[];;White blood cells look thicccc;False;False;;;;1610383217;;False;{};giwcwk7;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwcwk7/;1610433090;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DANIEL_KEMP_REDDIT;;;[];;;;text;t2_8psqjjlk;False;False;[];;"Of course! As I said I haven't seen it! It might be a great anime but I've not seen it! I'm saying that the words in the title ""CODE BLACK"" might be talking about the disease cancer since it is a thick black substance produced by radiation, smoke and other things!";False;False;;;;1610383238;;False;{};giwcynm;False;t3_kuz5br;False;True;t1_givrk2x;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwcynm/;1610433118;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Andre_PC;;;[];;;;text;t2_9yn2z;False;False;[];;Holy molly this gonna be great! First episode alone gave me chills.;False;False;;;;1610383275;;False;{};giwd25x;False;t3_kuz5br;False;False;t1_giw5zho;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwd25x/;1610433168;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Andre_PC;;;[];;;;text;t2_9yn2z;False;False;[];;"Episode 3 & 4 will be an 1h special.";False;False;;;;1610383399;;False;{};giwddxt;False;t3_kuz5br;False;False;t1_giw6xor;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwddxt/;1610433378;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ProgramTheWorld;;;[];;;;text;t2_fmd67;False;False;[];;Wow I didn’t even see them at first glance;False;False;;;;1610383460;;False;{};giwdjis;False;t3_kuz5br;False;True;t1_givkzdq;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwdjis/;1610433490;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jumanji-Joestar;;;[];;;;text;t2_7ut8xdbs;False;False;[];;You could watch Cells at Work and actually receive a legit health education. Osmosis Jones is just a buddy cop comedy that happens to take place in the human body;False;False;;;;1610383499;;1610383809.0;{};giwdn0j;False;t3_kuz5br;False;False;t1_giw630t;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwdn0j/;1610433545;18;True;False;anime;t5_2qh22;;0;[]; -[];;;KLLXCAI;;;[];;;;text;t2_3f987k9x;False;False;[];;is that a fucking phoenix wright reference?;False;False;;;;1610383582;;False;{};giwduqc;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwduqc/;1610433654;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SocInjDra;;;[];;;;text;t2_4dc6xmps;False;False;[];;Is that an ace attorney reference ?!?;False;False;;;;1610383999;;False;{};giwey44;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwey44/;1610434208;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GudraFree;;MAL;[];;http://myanimelist.net/profile/Gudra;dark;text;t2_zwnsq;False;False;[];;Don't kink shame;False;False;;;;1610384174;;False;{};giwfen0;False;t3_kuz5br;False;False;t1_giw7u73;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwfen0/;1610434442;70;True;False;anime;t5_2qh22;;0;[]; -[];;;crusadeLeader7;;;[];;;;text;t2_6wceo51g;False;False;[];;Is cells at work owned by crunchyroll or funimation;False;False;;;;1610384350;;False;{};giwfv0a;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwfv0a/;1610434689;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dairosh;;;[];;;;text;t2_1qv0hkm0;False;False;[];;Calm down, Satan.;False;False;;;;1610384423;;False;{};giwg1y0;False;t3_kut8gm;False;True;t1_giv0vlf;/r/anime/comments/kut8gm/thoughts_on_tengen_toppa_gurren_lagann_just/giwg1y0/;1610434786;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aigiswave;;;[];;;;text;t2_96mxwoda;False;False;[];;Lol sorry;False;False;;;;1610384533;;False;{};giwgbzi;False;t3_kuz5br;False;False;t1_giwfen0;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwgbzi/;1610434925;28;True;False;anime;t5_2qh22;;0;[]; -[];;;edgib102;;;[];;;;text;t2_13qtgeug;False;False;[];;Downvoted because that's fucking stupid;False;False;;;;1610384564;;False;{};giwgewo;False;t3_kuz5br;False;False;t1_giw5w55;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwgewo/;1610434965;7;True;False;anime;t5_2qh22;;0;[]; -[];;;naochko;;;[];;;;text;t2_58kgxc6f;False;False;[];;the body had ED.;False;False;;;;1610384648;;False;{};giwgmw8;False;t3_kuz5br;False;False;t1_giw5w55;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwgmw8/;1610435079;5;True;False;anime;t5_2qh22;;0;[]; -[];;;13steinj;;MAL;[];;;dark;text;t2_i487l;False;True;[];;Why wouldn't they specify biological sex and/or the gender?;False;False;;;;1610384702;;False;{};giwgrwj;False;t3_kuz5br;False;False;t1_givxlks;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwgrwj/;1610435149;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Remuj;;;[];;;;text;t2_2ub25k4g;False;False;[];;I watched the first episode of this without having seen any other Cells at Work anime and it was great, I didn't feel like I was missing anything;False;False;;;;1610384704;;False;{};giwgs4t;False;t3_kuz5br;False;True;t1_givyv7w;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwgs4t/;1610435152;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;The preview for this was outstanding -- so I've added it to my definitely-explore list.;False;False;;;;1610384874;;False;{};giwh7xq;False;t3_kuvuc0;False;True;t3_kuvuc0;/r/anime/comments/kuvuc0/prediction_wonder_egg_priority_will_be_amazing/giwh7xq/;1610435373;2;True;False;anime;t5_2qh22;;0;[]; -[];;;archampion;;;[];;;;text;t2_3bhqv;False;False;[];;White blood cell waifu 😍;False;False;;;;1610385040;;False;{};giwhnjh;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwhnjh/;1610435611;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;"Masturbation isn't really a problem in moderation, but [spoiler](/s ""IIRC this body has ED""), but health aspect aside, it's a more mature theme, hence the age rating.";False;False;;;;1610385293;;False;{};giwibnu;False;t3_kuz5br;False;False;t1_giw5w55;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwibnu/;1610435942;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Cornhole35;;;[];;;;text;t2_rr3uu;False;False;[];;From my understanding its suppose to be darker and the person is middle aged experience unhealthy life habits, like smoking.;False;False;;;;1610385571;;False;{};giwj20f;False;t3_kuz5br;False;True;t1_givyckd;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwj20f/;1610436312;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thaboi_55;;;[];;;;text;t2_6yokau0i;False;False;[];;Nah I’m eren’s eyes Reiner is a villain;False;False;;;;1610385622;;False;{};giwj71l;True;t3_kuxo7l;False;True;t1_givm6rt;/r/anime/comments/kuxo7l/top_20_best_anime_villains/giwj71l/;1610436391;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thaboi_55;;;[];;;;text;t2_6yokau0i;False;False;[];;Lmao;False;False;;;;1610385641;;False;{};giwj8sv;True;t3_kuxo7l;False;True;t1_giutmu3;/r/anime/comments/kuxo7l/top_20_best_anime_villains/giwj8sv/;1610436416;1;True;False;anime;t5_2qh22;;0;[]; -[];;;foofighter1351;;;[];;;;text;t2_r62tv;False;False;[];;Would you happen to have the tabs for this?;False;False;;;;1610386353;;False;{};giwl1r4;False;t3_kuu07d;False;True;t3_kuu07d;/r/anime/comments/kuu07d/blue_bird_from_naruto/giwl1r4/;1610437422;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Waywoah;;;[];;;;text;t2_8uyvr;False;False;[];;"[Mild One Punch Man Manga Spoilers](/s ""There's whole villain based one that concept lol"")";False;False;;;;1610386474;;False;{};giwlbad;False;t3_kuz5br;False;True;t1_giw0kh4;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwlbad/;1610437564;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Andrew4Head;;;[];;;;text;t2_2oxzsq68;False;False;[];;Holy fuck;False;False;;;;1610386600;;False;{};giwll9n;False;t3_kuz5br;False;False;t1_giw0wkq;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwll9n/;1610437715;18;True;False;anime;t5_2qh22;;0;[]; -[];;;ChocoPancit;;;[];;;;text;t2_4c2z27gc;False;False;[];;After reading the manga, I would like to apologize to my cells on all the shit I've put them through.;False;False;;;;1610386663;;False;{};giwlqen;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwlqen/;1610437797;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"***Why you should watch cells at work black*** - -Lately there has been a rise in self-care in all types of mediums. People have realized it’s time to take better care of their bodies. Hell, there are even cartoons showing off the inner workings of your body such as Osmosis Jones. - -However, would you believe there is an anime version of Osmosis jones as well? Yes folks, last year Cells at work took the internet by storm, by entertaining millions of weebs while informing why they should take care of their bodies; unless they want the cute pallets, hot milf macrophages and millions of hard-working cells to suffer! - -However, this season its edgy sibling has arrived to break the internet once again, this time bringing tears all around rather than joy. As we are shamed for our poor habits, witnessing our poor cells die tirelessly working 24/7 to keep our bodies alive. - -And that anime is ***CELLS AT WORK BLACK! - -If you enjoyed the original cells at work then this version should be a must watch, unless you can’t stomach (terrible pun, I know) watching millions of innocent cells suffer. - -However, I’m mainly addressing the newcomers here. - -Cells at work black is an educational anime, that showcases the inner workings of the bodies; displaying the life of millions of cells, showing off how they help keep our body running. It’s not just random nonsense coming from the authors ass, these shows have been credited by official doctors as being mainly accurate! - -So, if any of you are looking for assistance in your medical classes, don’t shy away from this anime. - -However, the show is not only about informing you how much your eating habits suck, no it’s actually GENUINALLY entertaining! - -Cells at work black has a ton of badass characters that fight in life and death situations vs millions of terrifying germs. We got the sexy badass white blood cells, the masculine T-killer cells, the yandare milf macrophages! - -They all engage in epic battles against dbz like bacteria. And when I say Dbz like I mean it! Just look at their designs, they look like your average dragon ball villain lol! - -They range in form, from cell knock offs, to horrifying zombielike cancer cells. However, the cancer cell has only been covered in the vanilla version so far, but I'm positive code black will most definitely have its own terrifying cancer enemy! - -However, remember cells at work black is the DARK version of cells at work! There are no cute happy pallets, no charming sol moments, just a whole bunch of suffering... - -In this anime, we follow a male red blood cell rather than his female predecessor, and almost every cell has been genderbended, so for you horny weebs out there, you may have a hidden gem over here. - -At first everything seems all cheery, the red blood cells are casually chilling in class, learning about how to be an efficient blood cell. Until they get sent out to the workforce, and their innocence is immediately shaken to its core. As they realize what hellscape, they just walked into. - -We discover that the body they inhabit is a terrible environment, filled with nicotine, tons of fat, an abundance of germ attacks, and all types of disgusting shit from a lack of care of its owner. - -Every cell is depressed, even the cute pallets have become angsty asshsoles! Every cell is struggling to do their job, especially the red blood cells... - -We witness the degradation of the red cells mentality, reminiscing of their glory days when the body was healthy. Now they’re filled with stress, trying their hardest to deliver oxygen to fellow cells, only for many of them to die in tragedy. - -However, things aren’t just filled with bleak because our two main characters bring hope! The sexy white blood cell with huge JUGS, and our main red blood cell! - -Will they save the body from its impending doom, or will the body collapese with the lot of them? - -WATCH THE SHOW AND FIND OUT FOR YOURSELF WEEBS!";False;False;;;;1610386734;;False;{};giwlw5k;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwlw5k/;1610437908;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EgocentricRaptor;;;[];;;;text;t2_15alsa;False;False;[];;This is cool and all but I hope all this focus on Cells At Work isn’t distracting them from Jojo. I really want to see part 6 in anime form;False;False;;;;1610386754;;False;{};giwlxt5;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwlxt5/;1610437934;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JustARandom-dude;;;[];;;;text;t2_56xe725c;False;False;[];;"Ambiguity, I guess. - -There may be some hints about the gender here and there but, overall, the gender is not really relevant in the main story since we’re seeing daily life occurrences in the body, so, the author just doesn’t bother with it. - -Code Black is dealing with more serious stuffs, I guess, they needed to clarify the gender in order to show and explain certain things";False;False;;;;1610386828;;False;{};giwm3oy;False;t3_kuz5br;False;False;t1_giwgrwj;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwm3oy/;1610438034;17;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;A special arc must be happening on episode 3 then;False;False;;;;1610386831;;False;{};giwm3wt;False;t3_kuz5br;False;True;t1_giuyg3e;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwm3wt/;1610438037;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JustARandom-dude;;;[];;;;text;t2_56xe725c;False;False;[];;Since we are going to see sperms and eyaculation here, now, I’m curious about how the menstrual cycle looks like for the cells;False;False;;;;1610387028;;False;{};giwmjmk;False;t3_kuz5br;False;False;t1_givxlks;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwmjmk/;1610438294;6;True;False;anime;t5_2qh22;;0;[]; -[];;;uberdosage;;;[];;;;text;t2_mchzr;False;False;[];;Nah, your immune system is constantly dealing with the kind of bullshit in the show;False;False;;;;1610387054;;False;{};giwmlol;False;t3_kuz5br;False;False;t1_giw8ilb;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwmlol/;1610438325;36;True;False;anime;t5_2qh22;;0;[]; -[];;;ii_jwoody_ii;;;[];;;;text;t2_16ljt4;False;False;[];;Wasnt this one the extremely gorey r18+ counterpart to the original?;False;False;;;;1610387163;;False;{};giwmub1;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwmub1/;1610438454;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ii_jwoody_ii;;;[];;;;text;t2_16ljt4;False;False;[];;Sorry no stands in this one;False;False;;;;1610387297;;False;{};giwn568;False;t3_kuz5br;False;True;t1_giw150p;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwn568/;1610438638;2;True;False;anime;t5_2qh22;;0;[]; -[];;;meganiumT;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/jinky;light;text;t2_9kmy0tk2;False;False;[];;loving two shows from the same universe this season.;False;False;;;;1610387428;;False;{};giwnfoa;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwnfoa/;1610438796;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TyphoonSG3;;;[];;;;text;t2_w597u;False;False;[];;"From the top of my head, definitely Subaru from Re:Zero and Emilia too but Emilia more so because of what Subaru said in EP.18 of S1 rather than the character herself. - - -People seem to misunderstand Subaru as a character. He was never a bad person. He was a good person with depression who had his flaws like any normal human being. Sometimes, these flaws led him to make bad decisions (none that were unforgivable or inexcusable, especially considering the stress he was living with). He is underrated and downplayed, both as a character and as a person. His kindness and resolve are incredible and most people wouldn't be able to do what he does. He isn't a bad person for wanting acknowledgement either.";False;False;;;;1610387693;;False;{};giwo145;False;t3_kuz49r;False;True;t3_kuz49r;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/giwo145/;1610439119;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shadow_boi198387;;;[];;;;text;t2_5gfl5dly;False;False;[];;Forgot all about this show Lol.;False;False;;;;1610388207;;False;{};giwp6ps;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwp6ps/;1610439726;1;True;False;anime;t5_2qh22;;0;[]; -[];;;horiami;;;[];;;;text;t2_1vozlmy2;False;False;[];;It would be like the erection but worse since rbc would die;False;False;;;;1610388591;;False;{};giwq14a;False;t3_kuz5br;False;False;t1_giwmjmk;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwq14a/;1610440180;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Lian-The-Asian;;;[];;;;text;t2_38lmqc9s;False;False;[];;Oh yay, I can’t wait to be depressed bc of sentient Cells again.;False;False;;;;1610388713;;False;{};giwqb1d;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwqb1d/;1610440328;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MadDany94;;;[];;;;text;t2_zptdk;False;False;[];;Panty and Stocking had to fight a ghost that was made by the manifestation and regret of all the sperms that was wasted on tissues.;False;False;;;;1610388808;;False;{};giwqilz;False;t3_kuz5br;False;False;t1_givzje5;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwqilz/;1610440438;10;True;False;anime;t5_2qh22;;0;[]; -[];;;MadDany94;;;[];;;;text;t2_zptdk;False;False;[];;All I see is white blood cell boobs.;False;False;;;;1610388918;;False;{};giwqrf8;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwqrf8/;1610440567;2;True;False;anime;t5_2qh22;;0;[]; -[];;;horiami;;;[];;;;text;t2_1vozlmy2;False;False;[];;It's not really necessary to watch cells at work, it will explain what some cells that appeared before do;False;False;;;;1610389126;;False;{};giwr842;False;t3_kuz5br;False;False;t1_givyv7w;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwr842/;1610440813;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Guaymaster;;;[];;;;text;t2_7s5u9;False;False;[];;Black is not being animated by David Pro;False;False;;;;1610389180;;False;{};giwrcd1;False;t3_kuz5br;False;True;t1_giwlxt5;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwrcd1/;1610440875;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LesbianCommander;;;[];;;;text;t2_xkfd3;False;False;[];;Delays from 2020 likely. It was probably meant to be back to back and then they just figured sitting on a completed series makes no sense.;False;False;;;;1610389403;;False;{};giwru21;False;t3_kuz5br;False;False;t1_giwadht;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwru21/;1610441142;8;False;False;anime;t5_2qh22;;0;[]; -[];;;Dartkun;;;[];;;;text;t2_7pg67;False;False;[];;"> Can you watch black without having watched the original? - -Yes. - -You don't need to watch the original series at all. But you will be missing some of the contrast between a healthy body and a sick body. However, if you watched 3 episodes, you've seen enough for the contrast.";False;False;;;;1610389749;;False;{};giwsm4a;False;t3_kuz5br;False;True;t1_givyv7w;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwsm4a/;1610441577;3;False;False;anime;t5_2qh22;;0;[]; -[];;;Dartkun;;;[];;;;text;t2_7pg67;False;False;[];;"In season 1 of the main series, there are characters that like each other, but they don't do anything romance besides like think about each other and blush when they're with each other. There are no dates or anything like that. - -Not sure about manga or anything related to black, but I'd probably assume there won't be any romance.";False;False;;;;1610389878;;False;{};giwswiw;False;t3_kuz5br;False;True;t1_givzh5i;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwswiw/;1610441737;2;False;False;anime;t5_2qh22;;0;[]; -[];;;ItsADeparture;;;[];;;;text;t2_oh9dp04;False;False;[];;Who knows, COVID arc could end with the host dying and the manga ends on the note that the real world is in a pandemic and even seemingly healthy people are being taken out by this without warning.;False;False;;;;1610389894;;False;{};giwsxqw;False;t3_kuz5br;False;True;t1_givzsg2;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwsxqw/;1610441755;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jejmaze;;;[];;;;text;t2_6bwf7;False;False;[];;only thing standing here is my massive erectino;False;False;;;;1610390332;;False;{};giwtwh5;False;t3_kuz5br;False;True;t1_giwn568;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwtwh5/;1610442275;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BanterBoat;;MAL;[];;http://myanimelist.net/animelist/Hyun15;dark;text;t2_ljcjd;False;False;[];;nier automata but cells;False;False;;;;1610390476;;False;{};giwu822;False;t3_kuz5br;False;False;t1_givol4x;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwu822/;1610442441;4;True;False;anime;t5_2qh22;;0;[]; -[];;;KaskayVoyager;;;[];;;;text;t2_4chuawbw;False;False;[];;Looks cool;False;False;;;;1610390785;;False;{};giwuwz9;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwuwz9/;1610442803;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FrankSandCastle;;;[];;;;text;t2_11dhzjpy;False;False;[];;Aniplex;False;False;;;;1610390946;;False;{};giwva1t;False;t3_kuz5br;False;True;t1_giwfv0a;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwva1t/;1610442993;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pokeboy626;;;[];;;;text;t2_pzgckya;False;False;[];;Are you shipping Cells?;False;False;;;;1610391044;;False;{};giwvhvw;False;t3_kuz5br;False;True;t1_givzh5i;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwvhvw/;1610443107;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610391272;;False;{};giww0ag;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giww0ag/;1610443378;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610391595;;False;{};giwwqb2;False;t3_kuz5br;False;False;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwwqb2/;1610443752;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VP2003;;;[];;;;text;t2_2een73ej;False;False;[];;Thats not exacly how it works, its not because they went bankrupt that they would lose the license, and also its the production commities that actually hold the license not necessarily the studio itself;False;False;;;;1610392051;;False;{};giwxqfb;False;t3_kux0dn;False;True;t1_giuypa3;/r/anime/comments/kux0dn/no_game_no_life_season_2/giwxqfb/;1610444285;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rotten_riot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RottenOrange/;light;text;t2_20f93nxp;False;False;[];;"That would be ok if this was an one-shot but it feels underwhelming ending a 6 years old manga focusing on something that happened last year. It's giving too much focus on COVID, even though the manga isn't about that only. - -Again, I would prefer if the human dies from cancer cause at least cancer has been relevant to the story before, instead of appearing in the last chapter only.";False;False;;;;1610392181;;False;{};giwy0mi;False;t3_kuz5br;False;True;t1_giwsxqw;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwy0mi/;1610444437;2;True;False;anime;t5_2qh22;;0;[]; -[];;;urnansjuicydentures;;;[];;;;text;t2_5gay4bz6;False;False;[];;Is this gonna be an entirely different story to the original;False;False;;;;1610392241;;False;{};giwy5ex;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwy5ex/;1610444507;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rotten_riot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RottenOrange/;light;text;t2_20f93nxp;False;False;[];;"Touché. - -Thankfully, last week anime onlies got to know best boy 4989";False;False;;;;1610392390;;False;{};giwyhd2;False;t3_kuz5br;False;True;t1_giw7g3i;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwyhd2/;1610444680;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Redmon425;;;[];;;;text;t2_15ro6h;False;False;[];;Apparently lol!;False;False;;;;1610392398;;False;{};giwyhyx;False;t3_kuz5br;False;True;t1_giwvhvw;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwyhyx/;1610444689;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rya11111;;MAL;[];;http://myanimelist.net/animelist/rya11111;dark;text;t2_40uf6;False;False;[];;"I am okay with spoilers. Does this body ever get better ? ;__;";False;False;;;;1610392504;;False;{};giwyqfj;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwyqfj/;1610444809;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MikeDJunior;;;[];;;;text;t2_ixuzz;False;False;[];;Pssstt!! The little thrombocytes are watching!;False;False;;;;1610392642;;False;{};giwz1d0;False;t3_kuz5br;False;False;t1_giuzbw0;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwz1d0/;1610444966;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rocharox;;;[];;;;text;t2_9e5c3;False;False;[];;Weaboo red cells reporting in;False;False;;;;1610392755;;False;{};giwzahz;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwzahz/;1610445097;1;True;False;anime;t5_2qh22;;0;[]; -[];;;useful_weeb;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Johnci5;light;text;t2_35r59b8l;False;False;[];;can I watch this if I haven't seen the first season since it's a spin off?;False;False;;;;1610392777;;False;{};giwzcco;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giwzcco/;1610445124;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigtrunksboi;;;[];;;;text;t2_313cvuji;False;False;[];;Legit excuse to gender swap cells at work characters;False;False;;;;1610393081;;False;{};gix013d;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gix013d/;1610445488;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xnaas;;;[];;;;text;t2_l5yal;False;False;[];;I didn’t even know the first episode had already aired! 😱 Thanks for the heads up.;False;False;;;;1610393111;;False;{};gix03gx;False;t3_kuz5br;False;False;t1_giuyg3e;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gix03gx/;1610445526;4;True;False;anime;t5_2qh22;;0;[]; -[];;;jurassicramsey;;;[];;;;text;t2_3nlzxnf8;False;False;[];;Prepare to stan your own blood all over again;False;False;;;;1610393263;;False;{};gix0frg;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gix0frg/;1610445715;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610393570;;False;{};gix14er;False;t3_kuz49r;False;True;t1_givzkh2;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/gix14er/;1610446074;1;True;False;anime;t5_2qh22;;0;[]; -[];;;123Todayy;;;[];;;;text;t2_26pml5rb;False;False;[];;Yeah David Production's production. Thats what chu get;False;False;;;;1610394256;;False;{};gix2mxj;False;t3_kuz5br;False;True;t1_givia9b;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gix2mxj/;1610446874;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PickleRickSpecies;;;[];;;;text;t2_961bitwi;False;False;[];;⠀⠀‎‎‎‎‎ ‎‎‎‎‎ ‎‎‎‎‎ ‎‎‎‎‎ ‎‎‎‎‎ ‎‎‎‎‎‎‎ ‎‎‎‎‎ ‎‎‎‎‎ ‎‎‎‎‎ ‎‎‎‎‎⠀⣠⣤⣤⣤⣤⣤⣄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⢰⡿⠋⠁⠀⠀⠈⠉⠙⠻⣷⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⢀⣿⠇⠀⢀⣴⣶⡾⠿⠿⠿⢿⣿⣦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⣀⣀⣸⡿⠀⠀⢸⣿⣇⠀⠀⠀⠀⠀⠀⠙⣷⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⣾⡟⠛⣿⡇⠀⠀⢸⣿⣿⣷⣤⣤⣤⣤⣶⣶⣿⠇⠀⠀⠀⠀⠀⠀⠀⣀⠀⠀ ⢀⣿⠀⢀⣿⡇⠀⠀⠀⠻⢿⣿⣿⣿⣿⣿⠿⣿⡏⠀⠀⠀⠀⢴⣶⣶⣿⣿⣿⣷ ⢸⣿⠀⢸⣿⡇⠀⠀⠀⠀⠀⠈⠉⠁⠀⠀⠀⣿⡇⣀⣠⣴⣾⣮⣝⠿⢿⣿⣻⡟ ⢸⣿⠀⠘⣿⡇⠀⠀⠀⠀⠀⠀⠀⣠⣶⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠁⠉⠀ ⠸⣿⠀⠀⣿⡇⠀⠀⠀⠀⠀⣠⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠟⠉⠀⠀⠀⠀ ⠀⠻⣷⣶⣿⣇⠀⠀⠀⢠⣼⣿⣿⣿⣿⣿⣿⣿⣛⣛⣿⡟⠁⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⢸⣿⠀⠀⠀⢸⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀⠀⠀⠀⠀ ⠀⠀ ⠀⠀⠀⠀⢸⣿⣀⣀⣀⣼⡿⢿⣿⣿⣿⣿⣿⡿⣿⣿⣿;False;False;;;;1610394496;;False;{};gix35we;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gix35we/;1610447161;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rokbound_;;;[];;;;text;t2_z5hmy;False;False;[];;White blood cell momies YESSSS;False;False;;;;1610394826;;False;{};gix3w64;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gix3w64/;1610447556;1;True;False;anime;t5_2qh22;;0;[]; -[];;;corvetts95;;;[];;;;text;t2_16ez52;False;False;[];;I hope the dub has the same voice actors but in different rolls. I loved red blood cell;False;False;;;;1610395261;;False;{};gix4uw4;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gix4uw4/;1610448084;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MerePotato;;;[];;;;text;t2_14t2wz;False;False;[];;?;False;False;;;;1610395412;;False;{};gix56j2;False;t3_kuz5br;False;False;t1_giwgewo;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gix56j2/;1610448264;2;True;False;anime;t5_2qh22;;0;[]; -[];;;killerspunk123456;;;[];;;;text;t2_81ab83u7;False;False;[];;Yeeeeeeeeeeees lot gooooo finally;False;False;;;;1610396061;;False;{};gix6l5v;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gix6l5v/;1610449023;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WeebofallWeebs;;;[];;;;text;t2_8qae5zey;False;False;[];;I did not know this is coming out or is out but I would watch this because I have seen cells at work;False;False;;;;1610396320;;False;{};gix75lk;False;t3_kuz5br;False;False;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gix75lk/;1610449330;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WeebofallWeebs;;;[];;;;text;t2_8qae5zey;False;False;[];;I think the sperm should be like planes;False;False;;;;1610396535;;False;{};gix7mps;False;t3_kuz5br;False;False;t1_giuzbw0;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gix7mps/;1610449591;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sharris735;;;[];;;;text;t2_3kfm5fuo;False;False;[];;thank you! i’ll be sure to look into it;False;False;;;;1610397114;;False;{};gix8wht;True;t3_kux5rt;False;True;t1_giunuz1;/r/anime/comments/kux5rt/hi_need_a_rec_based_on_black_butler/gix8wht/;1610450286;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sharris735;;;[];;;;text;t2_3kfm5fuo;False;False;[];;thank you! where do i find it?;False;False;;;;1610397139;;False;{};gix8yev;True;t3_kux5rt;False;False;t1_giupefs;/r/anime/comments/kux5rt/hi_need_a_rec_based_on_black_butler/gix8yev/;1610450317;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ghostie02;;;[];;;;text;t2_6o5l8f8j;False;False;[];;the white blood cells looking fine as F U C C;False;False;;;;1610397623;;False;{};gixa0f5;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gixa0f5/;1610450897;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shreks-SwampAss;;;[];;;;text;t2_8q3ppmac;False;False;[];;I didn't care for the first Cells at Work and I'm not watching the second season. Is Code Black much different? Or is it just another monster of the week but with the monster being drugs and STDs?;False;False;;;;1610397941;;False;{};gixapi7;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gixapi7/;1610451296;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Kazenovagamer;;;[];;;;text;t2_cn5gd;False;False;[];;Where can I watch it legally? I don't see it on crunchyroll and I've been out of the animesphere for a while so thats like the only place I know of to find anime.;False;False;;;;1610397961;;False;{};gixar27;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gixar27/;1610451319;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Panzer590AMZ;;;[];;;;text;t2_3i2vch7e;False;False;[];;They dont know..;False;False;;;;1610398064;;False;{};gixaz67;False;t3_kuz5br;False;True;t1_givl8ex;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gixaz67/;1610451454;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SonAnka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SonAnka;light;text;t2_4bv8n52s;False;False;[];;So its have new content? I have read some comments about it doesnt add any new content just change original show to more adult version.;False;False;;;;1610398943;;False;{};gixcyp7;False;t3_kuz5br;False;False;t1_giwj20f;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gixcyp7/;1610452582;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cornhole35;;;[];;;;text;t2_rr3uu;False;False;[];;Yes its new content but you looking at a adult body instead of young adult(assuming this one);False;False;;;;1610400721;;False;{};gixgtej;False;t3_kuz5br;False;True;t1_gixcyp7;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gixgtej/;1610454865;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cosmic_GhostMan;;;[];;;;text;t2_1igfo0qd;False;False;[];;Bacteria and Viruses die by titties? Yay!;False;False;;;;1610404666;;False;{};gixp44k;False;t3_kuz5br;False;False;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gixp44k/;1610460223;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Enemigo_Poderoso;;;[];;;;text;t2_6nwqvcos;False;False;[];;Fuck manga readers;False;False;;;;1610405980;;False;{};gixrt78;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gixrt78/;1610462006;1;True;False;anime;t5_2qh22;;0;[]; -[];;;You_Better_Smile;;;[];;;;text;t2_6mhmk;False;False;[];;No erections in this one too.;False;False;;;;1610406473;;False;{};gixssiu;False;t3_kuz5br;False;False;t1_giwtwh5;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gixssiu/;1610462739;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dragoner7;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Dragoner7/;light;text;t2_ojq7s;False;False;[];;Black is LIDENFILMS tho.;False;False;;;;1610406767;;False;{};gixte2x;False;t3_kuz5br;False;False;t1_gix2mxj;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gixte2x/;1610463197;11;True;False;anime;t5_2qh22;;0;[]; -[];;;crusadeLeader7;;;[];;;;text;t2_6wceo51g;False;False;[];;Bummer;False;False;;;;1610406986;;False;{};gixttqq;False;t3_kuz5br;False;False;t1_giwva1t;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gixttqq/;1610463489;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CheeseAndCh0c0late;;;[];;;;text;t2_zq130;False;False;[];;Please use the spoiler tag for us poor souls on mobile :'(;False;False;;;;1610407004;;False;{};gixtuzz;False;t3_kuz5br;False;False;t1_giw5zho;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gixtuzz/;1610463513;3;True;False;anime;t5_2qh22;;0;[]; -[];;;notathrowaway75;;MAL;[];;https://myanimelist.net/profile/notathrowaway75;dark;text;t2_fomut;False;False;[];;"> Can you watch black without having watched the original? - -Yes but it's fun to watch the original alongside Black for the extreme contrast.";False;False;;;;1610408080;;False;{};gixvzug;False;t3_kuz5br;False;True;t1_givyv7w;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gixvzug/;1610465011;1;True;False;anime;t5_2qh22;;0;[]; -[];;;horiami;;;[];;;;text;t2_1vozlmy2;False;False;[];;Why was this so downvoted;False;False;;;;1610409171;;False;{};gixy5ym;False;t3_kuz5br;False;True;t1_givvimv;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gixy5ym/;1610466810;3;True;False;anime;t5_2qh22;;0;[]; -[];;;horiami;;;[];;;;text;t2_1vozlmy2;False;False;[];; i was wrecking my brain trying to remember the show, it's been a long time since i watched it or heard someone talk about it;False;False;;;;1610409247;;False;{};gixybcz;False;t3_kuz5br;False;True;t1_giwqilz;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gixybcz/;1610466912;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MetalGearSEAL4;;;[];;;;text;t2_bbehx;False;False;[];;"issa joke -It's like when ppl call One Punch Man 'Caillou Shippuden'. -I didn't make an actual comparison to your fav anime, you degen weeb";False;False;;;;1610410282;;False;{};giy0bbp;False;t3_kuz5br;False;True;t1_giw01ho;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giy0bbp/;1610468291;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DANIEL_KEMP_REDDIT;;;[];;;;text;t2_8psqjjlk;False;False;[];;"Well I haven't watched it so I can't call it bad and also I was referring to the disease cancer since ""CODE BLACK"" sounds like a possible saga/arc name for a cell based anime! I thought it might meet cancer";False;False;;;;1610411120;;False;{};giy1yek;False;t3_kuz5br;False;False;t1_givlnym;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giy1yek/;1610469395;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Turtle213;;;[];;;;text;t2_1fzqg5mt;False;False;[];;The opening is fire;False;False;;;;1610411311;;False;{};giy2bwg;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giy2bwg/;1610469665;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Game2015;;;[];;;;text;t2_poe9a;False;False;[];;"I can only guess that people thought it sounds like an ungrateful post telling the person who responded to me that he wasted his time telling me something I already know and therefore not thanking him. - -That wasn't my intention.";False;False;;;;1610414436;;False;{};giy8ee4;False;t3_kuz5br;False;False;t1_gixy5ym;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giy8ee4/;1610474062;5;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - -- - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610416043;moderator;False;{};giybk9m;False;t3_kuz5br;False;True;t1_givvs2x;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giybk9m/;1610476271;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Grizzly_228;;;[];;;;text;t2_383it7fn;False;False;[];;Yeah, it does refer to cancer too (as someone else said). Watching to the downvotes you got I suppose people thought you were dissing the show tho...;False;False;;;;1610417031;;False;{};giydhov;False;t3_kuz5br;False;False;t1_giy1yek;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giydhov/;1610477609;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SnooBunnies4763;;;[];;;;text;t2_7pw3cig6;False;False;[];;I also agree with Subaru;False;False;;;;1610417315;;False;{};giye2ab;False;t3_kuz49r;False;True;t1_giuye5n;/r/anime/comments/kuz49r/anime_characters_you_feel_like_people_misinterpret/giye2ab/;1610478025;1;True;False;anime;t5_2qh22;;0;[]; -[];;;neobenedict;;;[];;;;text;t2_6qhgs;False;False;[];;Remember to take care of yourself or your platelets won't be cute any more.;False;False;;;;1610418004;;False;{};giyffr2;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giyffr2/;1610478989;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Elaxor;;;[];;;;text;t2_djk6f;False;False;[];;"Use ""Reddit is Fun"" app.";False;False;;;;1610419984;;False;{};giyjhyl;False;t3_kuz5br;False;True;t1_gixtuzz;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giyjhyl/;1610481891;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Virtuous__Treaty;;;[];;;;text;t2_7cfjjgl7;False;False;[];;white cell onee-san;False;False;;;;1610421003;;False;{};giyliu5;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giyliu5/;1610483359;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TrailOfEnvy;;;[];;;;text;t2_o6dtk1;False;False;[];;The only one unlucky thing is what happened in second last episode in season 1;False;False;;;;1610421141;;False;{};giylsk1;False;t3_kuz5br;False;True;t1_giw8ilb;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giylsk1/;1610483543;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mck02;;;[];;;;text;t2_8b7q5ld9;False;False;[];;Sperms cell owo;False;False;;;;1610421752;;False;{};giyn176;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giyn176/;1610484378;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yonan82;;;[];;;;text;t2_b2bs4;False;False;[];;Isekai are trash and so am I. I know they're junk food, I'm not going to pretend they're works of supreme artistic merit, but that doesn't mean they can't be enjoyable. Some people like pop music, some like michael bay films, some like my mom... to each their own. Just don't lie about how trash they are and we're good.;False;False;;;;1610421986;;False;{};giynh1x;False;t3_kuzldt;False;True;t1_giv5ixn;/r/anime/comments/kuzldt/shield_hero_is_garbage/giynh1x/;1610484694;1;True;False;anime;t5_2qh22;;0;[]; -[];;;snowysnowy;;MAL;[];;Got anymore of that Log Horizon?;dark;text;t2_6btop;False;False;[];;Don't forget what happened at the end of the flu episode too...;False;False;;;;1610422452;;False;{};giyocfs;False;t3_kuz5br;False;True;t1_giylsk1;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giyocfs/;1610485311;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hemag;;;[];;;;text;t2_jz06y;False;False;[];;I see, well let's hope it ends well and sooner than later for everyone irl.;False;False;;;;1610424405;;False;{};giyrzhf;False;t3_kuz5br;False;True;t1_givr67h;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giyrzhf/;1610487895;1;True;False;anime;t5_2qh22;;0;[]; -[];;;M3M30H;;;[];;;;text;t2_6l8zbp1m;False;False;[];;Is that coom;False;False;;;;1610426367;;False;{};giyvhzj;False;t3_kuz5br;False;True;t3_kuz5br;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/giyvhzj/;1610490427;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DANIEL_KEMP_REDDIT;;;[];;;;text;t2_8psqjjlk;False;False;[];;I've never even seen the show as I said in my comment! How could I say that an anime is the worst thing to ever exist if I know nothing About it!;False;False;;;;1610460955;;False;{};gj01oki;False;t3_kuz5br;False;True;t1_giydhov;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gj01oki/;1610517580;2;True;False;anime;t5_2qh22;;0;[]; -[];;;skyfrost42;;;[];;;;text;t2_5gsu6cyt;False;False;[];;What walking animation. Didnt see any odd movements;False;False;;;;1610480876;;False;{};gj17mfb;False;t3_kuwe8k;False;True;t1_giuhz0w;/r/anime/comments/kuwe8k/horimiya_is_the_best_first_episode_of_an_anime/gj17mfb/;1610541231;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fuschiako;;;[];;;;text;t2_8wqmaqye;False;False;[];;This post is nothing but straight fax, really looking forward to his career;False;False;;;;1610503552;;False;{};gj2hlj2;False;t3_kuvuc0;False;True;t3_kuvuc0;/r/anime/comments/kuvuc0/prediction_wonder_egg_priority_will_be_amazing/gj2hlj2/;1610573625;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Reinacchan;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Reina;light;text;t2_84kgf6gn;False;False;[];;"Seems like I can truly call myself an early fan of his works because the first episode dropped and it was great! I'm seriously looking forward to anything's he got going for him. And here's hoping he can get the amazing Yukiko Horiguchi back into anime again!! - -I mean, the characters in this certainly bare similarities in both their looks, movement, and mannerism to how Yukiko Horiguchi designs characters, but it's still not Horiguchi xD - -The quirks that makes Horiguchi's designs and animation direction stand out are not here from what I can remember (without having specifically looked for them either as I had little reason to)";False;False;;;;1610505370;;False;{};gj2l0ld;True;t3_kuvuc0;False;True;t1_gj2hlj2;/r/anime/comments/kuvuc0/prediction_wonder_egg_priority_will_be_amazing/gj2l0ld/;1610576075;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fuschiako;;;[];;;;text;t2_8wqmaqye;False;False;[];;"I haven't kept up with Horiguchi much since the Tamako market days unfortunately. Was really impressed by their work in the Kyoani Cms from a few years back though (and of course 22/7) - -I would kill to see this team make a film down the line, this first episode has already been movie quality. A straight up feature film would rival the likes of Koe No Katachi. (honestly insane to think about) The last 5 years have felt like the school of Yamada casually flexing, and her influence trickling throughout the industry. - -It's really nice to put on an episode of anime and see a team with a strong grasp of visual storytelling. It's hard to explain, but every shot in 22/7 and Wonder Egg so far have this decisive quality to them while linking together perfectly. The storyboards as so dense it felt like two episodes worth. - -Honestly spent a few minutes crying because of how amazing the experience was. Definetly deserves a review when all is said and done. As of right now I got a lot of hope and good will";False;False;;;;1610508701;;False;{};gj2r6j2;False;t3_kuvuc0;False;False;t1_gj2l0ld;/r/anime/comments/kuvuc0/prediction_wonder_egg_priority_will_be_amazing/gj2r6j2/;1610580371;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Blakeandcole1;;;[];;;;text;t2_210dc75d;False;False;[];;thanks!;False;False;;;;1610521637;;False;{};gj39zb4;True;t3_kuxere;False;True;t1_giv11pm;/r/anime/comments/kuxere/once_in_a_lifetime_opportunity_right_here/gj39zb4/;1610592816;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Blakeandcole1;;;[];;;;text;t2_210dc75d;False;False;[];;thanks for that!! preciate it;False;False;;;;1610521655;;False;{};gj3a01r;True;t3_kuxere;False;True;t1_giv08e4;/r/anime/comments/kuxere/once_in_a_lifetime_opportunity_right_here/gj3a01r/;1610592830;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Alemismun;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Alemismun;light;text;t2_smw015;False;False;[];;"No, no it's not. -Here is the actual watch order: - - Hataraku Saibou > Hataraku Saibou: Kaze Shoukougun > Hataraku Saibou: Necchuushou - Moshimo Pocari Sweat ga Attara > Hataraku Saibou Black > Hataraku Saibou!!: Saikyou no Teki, Futatabi. Karada no Naka wa ""Chou"" Oosawagi! > Kesshouban: Eigakan e Iku > Hataraku Saibou!! > Hataraku Saibou Black (TV)";False;False;;;;1610635508;;False;{};gj8cac7;False;t3_kuz5br;False;True;t1_giw00rt;/r/anime/comments/kuz5br/cells_at_work_code_black_new_visual/gj8cac7/;1610707041;0;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;"I'd not even consider it the best season of this year. - -Spring has Slime Killing Witch, Nagatoro, New Precure, TWEWY, and most of the season likely hasn't been announced yet lol.";False;True;;comment score below threshold;;1610273477;;False;{};gir2gnx;False;t3_kubxb2;False;True;t3_kubxb2;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/gir2gnx/;1610316809;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Don't know if one of the best, some sequels can be a downgrade, but its definitely a great season by just looking at the opinions, unless you are a hipster of course;False;False;;;;1610273986;;False;{};gir2yh2;False;t3_kubxb2;False;False;t3_kubxb2;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/gir2yh2/;1610317154;12;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610274573;moderator;False;{};gir3ip8;False;t3_kuc6cr;False;False;t3_kuc6cr;/r/anime/comments/kuc6cr/why_is_donmachi_season_1_and_2_not_available_on/gir3ip8/;1610317548;1;False;False;anime;t5_2qh22;;0;[]; -[];;;melcarba;;;[];;;;text;t2_ywnzr;False;False;[];;People actually pre-judge a season before it ends?;False;False;;;;1610274695;;False;{};gir3mv0;False;t3_kubxb2;False;False;t3_kubxb2;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/gir3mv0/;1610317633;6;True;False;anime;t5_2qh22;;0;[]; -[];;;onefootstout;;;[];;;;text;t2_qyi54;False;False;[];;Its on Hidive, I think a bunch of Sentai stuff got removed from CR recently so that is most likely why 1 and 2 aren't on it.;False;False;;;;1610274756;;False;{};gir3oxs;False;t3_kuc6cr;False;True;t3_kuc6cr;/r/anime/comments/kuc6cr/why_is_donmachi_season_1_and_2_not_available_on/gir3oxs/;1610317676;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kumikou;;;[];;;;text;t2_4uah00gv;False;False;[];;Sure first impressions can be wrong, but is it wrong itself to have one?;False;False;;;;1610274763;;False;{};gir3p6b;True;t3_kubxb2;False;False;t1_gir3mv0;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/gir3p6b/;1610317680;8;True;False;anime;t5_2qh22;;0;[]; -[];;;sateler96;;;[];;;;text;t2_hz4s0;False;False;[];;So far yes lol;False;False;;;;1610275075;;False;{};gir3zww;False;t3_kubxb2;False;False;t3_kubxb2;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/gir3zww/;1610317901;3;True;False;anime;t5_2qh22;;0;[]; -[];;;falkner97;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/falkner99;light;text;t2_6y92q69v;False;False;[];;because you type the name wrong /s;False;False;;;;1610275182;;False;{};gir43mc;False;t3_kuc6cr;False;False;t3_kuc6cr;/r/anime/comments/kuc6cr/why_is_donmachi_season_1_and_2_not_available_on/gir43mc/;1610317969;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Prestigious_Clue_591;;;[];;;;text;t2_7g789qra;False;False;[];;So the people making loli know the future?;False;False;;;;1610275237;;False;{};gir45k3;False;t3_kuc629;False;True;t3_kuc629;/r/anime/comments/kuc629/100k_years_for_anime_eyes/gir45k3/;1610318007;1;True;False;anime;t5_2qh22;;0;[]; -[];;;melcarba;;;[];;;;text;t2_ywnzr;False;False;[];;No. But any preliminary discussions about whether X is a good season or not before a season ends will be worthless.;False;False;;;;1610275314;;False;{};gir48a6;False;t3_kubxb2;False;False;t1_gir3p6b;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/gir48a6/;1610318066;5;True;False;anime;t5_2qh22;;0;[]; -[];;;KendotsX;;;[];;;;text;t2_j6nbtko;False;False;[];;Not really no. The best series so far are ones that continued from last season, making last season better by default.;False;False;;;;1610275421;;False;{};gir4c2s;False;t3_kubxb2;False;True;t3_kubxb2;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/gir4c2s/;1610318146;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kumikou;;;[];;;;text;t2_4uah00gv;False;False;[];;Yeah it is. It doesn’t change the end result, but it’s still fun nonetheless to take a look at what we do have. It’s sort of like speculating for a show I guess. If you don’t agree with it, I don’t really mind;False;False;;;;1610275463;;False;{};gir4dm7;True;t3_kubxb2;False;False;t1_gir48a6;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/gir4dm7/;1610318178;11;True;False;anime;t5_2qh22;;0;[]; -[];;;KendotsX;;;[];;;;text;t2_j6nbtko;False;False;[];;Because by the time it ends, the next season will become the best thing ever that everyone dicusses.;False;False;;;;1610275509;;False;{};gir4faz;False;t3_kubxb2;False;False;t1_gir3mv0;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/gir4faz/;1610318208;10;True;False;anime;t5_2qh22;;0;[]; -[];;;resphere;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/risfyaa?status=7;light;text;t2_731ysyll;False;False;[];;So far last season was a lot more hype, I watched almost 20 shows. This season there's only like 6-7 I'm interested in rn.;False;False;;;;1610275562;;False;{};gir4h59;False;t3_kubxb2;False;True;t3_kubxb2;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/gir4h59/;1610318242;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;MusubiKazesaru;;;[];;;;text;t2_oh8ti;False;False;[];;Maou Gakuin no Futekigousha;False;False;;;;1610275664;;False;{};gir4kt5;False;t3_kucd09;False;True;t3_kucd09;/r/anime/comments/kucd09/animes_like_wise_mans_grandchild/gir4kt5/;1610318309;2;True;False;anime;t5_2qh22;;0;[]; -[];;;silentstealth1;;;[];;;;text;t2_56h1qxnb;False;False;[];;wtf how is that lineup you mentioned anything close to what we have now.;False;False;;;;1610275832;;False;{};gir4qor;False;t3_kubxb2;False;True;t1_gir2gnx;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/gir4qor/;1610318419;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"* Isekai Cheat Magician -* Demon Lord, Retry! -* Kuma Kuma Kuma Bear -* The Master of Ragnarok & Blesser of Einherjar -* High School Prodigies Have It Easy Even In Another World - -I didn't enjoy these (as I didn't enjoy Wise Man's Grandchild) but if you liked Wise Man's Grandchild you'll enjoy these ones. - -Also the plural of anime is still anime.";False;False;;;;1610275866;;False;{};gir4rv9;False;t3_kucd09;False;True;t3_kucd09;/r/anime/comments/kucd09/animes_like_wise_mans_grandchild/gir4rv9/;1610318441;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Borna44_;;;[];;;;text;t2_3qq4vqe6;False;False;[];;Yeah totally, I'm watching 5 shows this season and idk how I'm gonna keep up;False;False;;;;1610275878;;False;{};gir4sb3;False;t3_kubxb2;False;False;t3_kubxb2;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/gir4sb3/;1610318455;4;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;"Bc the only shows that are really interesting to me this season are ReZero, Vlad Love, and Egg. - -(Minimum of) 4 > 3";False;False;;;;1610275925;;False;{};gir4ty1;False;t3_kubxb2;False;True;t1_gir4qor;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/gir4ty1/;1610318483;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Poplix-Artist;;;[];;;;text;t2_51mvma7m;False;False;[];;Is there any romance involved in any of these anime;False;False;;;;1610276229;;False;{};gir54qc;True;t3_kucd09;False;True;t1_gir4rv9;/r/anime/comments/kucd09/animes_like_wise_mans_grandchild/gir54qc/;1610318682;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Poplix-Artist;;;[];;;;text;t2_51mvma7m;False;False;[];;">Maou Gakuin no Futekigousha - -I already watched that, do u have any other recommendation's who include romance like in Wise man grand child";False;False;;;;1610276288;;False;{};gir56tk;True;t3_kucd09;False;True;t1_gir4kt5;/r/anime/comments/kucd09/animes_like_wise_mans_grandchild/gir56tk/;1610318720;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Kuma Kuma Kuma Bear and Demon Lord, Retry! deals with more parental love than romantic love. - -The rest have some romantic love but not as much as Wise Man's Grandchild.";False;False;;;;1610276460;;False;{};gir5d4f;False;t3_kucd09;False;True;t1_gir54qc;/r/anime/comments/kucd09/animes_like_wise_mans_grandchild/gir5d4f/;1610318836;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610276925;;1610316802.0;{};gir5tla;False;t3_kubxb2;False;False;t3_kubxb2;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/gir5tla/;1610319146;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;SAO;False;False;;;;1610277433;;False;{};gir6bxb;False;t3_kucd09;False;False;t3_kucd09;/r/anime/comments/kucd09/animes_like_wise_mans_grandchild/gir6bxb/;1610319477;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610277859;moderator;False;{};gir6r70;False;t3_kucub4;False;True;t3_kucub4;/r/anime/comments/kucub4/what_anime_are_these_images_from/gir6r70/;1610319771;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610277941;moderator;False;{};gir6u36;False;t3_kucuy5;False;True;t3_kucuy5;/r/anime/comments/kucuy5/idinvaded_the_manga_sequel_worth_a_buy/gir6u36/;1610319831;0;False;False;anime;t5_2qh22;;0;[]; -[];;;Cyclone_96;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CrazyCyclone96;light;text;t2_es52y62;False;False;[];;Post on r/manga because you know, this subreddit is for anime.;False;False;;;;1610278557;;False;{};gir7g3d;False;t3_kucmj1;False;True;t3_kucmj1;/r/anime/comments/kucmj1/11_best_romance_manga_with_strong_female_lead/gir7g3d/;1610320242;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DJQMQ;;;[];;;;text;t2_5nzfuewz;False;False;[];;"Oooh sorry I accidentally put these white lines 😕 -Please don’t focus on it.";False;False;;;;1610278702;;False;{};gir7l52;True;t3_kud021;False;True;t3_kud021;/r/anime/comments/kud021/rate_from_0_to_10_and_why/gir7l52/;1610320336;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Junkloader;;;[];;;;text;t2_50cmidpu;False;False;[];;7, it Looks good, but I think, a little too blurry;False;False;;;;1610278726;;False;{};gir7lz4;False;t3_kud021;False;True;t3_kud021;/r/anime/comments/kud021/rate_from_0_to_10_and_why/gir7lz4/;1610320351;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DJQMQ;;;[];;;;text;t2_5nzfuewz;False;False;[];;His face?;False;False;;;;1610278754;;False;{};gir7myd;True;t3_kud021;False;True;t1_gir7lz4;/r/anime/comments/kud021/rate_from_0_to_10_and_why/gir7myd/;1610320368;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Espada_6;;;[];;;;text;t2_sb5ghaa;False;False;[];;r/animesauce could help if this post doesn’t;False;False;;;;1610279029;;False;{};gir7wpn;False;t3_kucub4;False;False;t3_kucub4;/r/anime/comments/kucub4/what_anime_are_these_images_from/gir7wpn/;1610320547;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Silently_Useless;;;[];;;;text;t2_6hgdp7ds;False;False;[];;What;False;False;;;;1610279252;;False;{};gir84fz;False;t3_kud48s;False;True;t3_kud48s;/r/anime/comments/kud48s/so_im_a_weeb_so_what/gir84fz/;1610320692;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610279292;;False;{};gir85ud;False;t3_kud48s;False;True;t1_gir84fz;/r/anime/comments/kud48s/so_im_a_weeb_so_what/gir85ud/;1610320717;1;True;False;anime;t5_2qh22;;0;[]; -[];;;babydave371;;MAL a-amq;[];;https://myanimelist.net/profile/babydave371;dark;text;t2_sak6n;False;False;[];;"Nope, I don't care about any of those really outside of Attack on Titan, even then I don't think AoT is all that amazing. - -It should be a fairly good season with Vlad Love (after like 30 years comedy Oshii returns!), Promised Neverland S2, Log Horizon S3, Eva 4.0, Hathaway's Flash, and continuations of Jujutsu Kaisen and DQ. Honestly the TV stuff is only slightly above average, the films are where it is at.";False;False;;;;1610279347;;False;{};gir87pk;False;t3_kubxb2;False;True;t3_kubxb2;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/gir87pk/;1610320752;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Silently_Useless;;;[];;;;text;t2_6hgdp7ds;False;False;[];;Spider may,l 2015, slime Mar 26, 2015 both shows are to close to each other for plagerism but there are tons of similar ideas in this line of work;False;False;;;;1610279456;;1610280038.0;{};gir8bs1;False;t3_kud48s;False;True;t1_gir85ud;/r/anime/comments/kud48s/so_im_a_weeb_so_what/gir8bs1/;1610320863;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Im-Pico;;;[];;;;text;t2_3vbn11u7;False;False;[];;I'd say give everything two to three episodes before you can really judge whether or not that's going to be the case, at least in my experience.;False;False;;;;1610279566;;False;{};gir8fqh;False;t3_kubxb2;False;False;t3_kubxb2;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/gir8fqh/;1610320936;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610279899;;False;{};gir8rsv;False;t3_kud48s;False;True;t1_gir8bs1;/r/anime/comments/kud48s/so_im_a_weeb_so_what/gir8rsv/;1610321154;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hailgod;;;[];;;;text;t2_86po8;False;False;[];;describe the similarities. ? how is it plagarised?;False;False;;;;1610279902;;False;{};gir8rx3;False;t3_kud48s;False;True;t3_kud48s;/r/anime/comments/kud48s/so_im_a_weeb_so_what/gir8rx3/;1610321156;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610279985;;False;{};gir8uwc;False;t3_kud48s;False;True;t1_gir8bs1;/r/anime/comments/kud48s/so_im_a_weeb_so_what/gir8uwc/;1610321209;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silently_Useless;;;[];;;;text;t2_6hgdp7ds;False;False;[];;Not sure as anime has been here for way longer then me and seeing that both are close to each other i suspect that slime release faster because of publishers;False;False;;;;1610279988;;False;{};gir8v1n;False;t3_kud48s;False;True;t1_gir8rsv;/r/anime/comments/kud48s/so_im_a_weeb_so_what/gir8v1n/;1610321211;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silently_Useless;;;[];;;;text;t2_6hgdp7ds;False;False;[];;Really didn't know only look at ln dates;False;False;;;;1610280017;;False;{};gir8w4s;False;t3_kud48s;False;True;t1_gir8uwc;/r/anime/comments/kud48s/so_im_a_weeb_so_what/gir8w4s/;1610321231;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610280066;;False;{};gir8xx8;False;t3_kud48s;False;True;t1_gir8rx3;/r/anime/comments/kud48s/so_im_a_weeb_so_what/gir8xx8/;1610321263;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hailgod;;;[];;;;text;t2_86po8;False;False;[];;spider web novel may 2015, slime is early 2013. doesnt matter though, the story is not even similar.;False;False;;;;1610280093;;False;{};gir8yxv;False;t3_kud48s;False;True;t1_gir8w4s;/r/anime/comments/kud48s/so_im_a_weeb_so_what/gir8yxv/;1610321281;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610280345;;False;{};gir980g;False;t3_kud48s;False;True;t1_gir8v1n;/r/anime/comments/kud48s/so_im_a_weeb_so_what/gir980g/;1610321448;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Silently_Useless;;;[];;;;text;t2_6hgdp7ds;False;False;[];;Alright asshole so do you think burger king plagerist McDonald because that's what I'm seeing;False;False;;;;1610280620;;False;{};gir9hty;False;t3_kud48s;False;True;t1_gir980g;/r/anime/comments/kud48s/so_im_a_weeb_so_what/gir9hty/;1610321625;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hailgod;;;[];;;;text;t2_86po8;False;False;[];;im assuming u dont read kumo desu ga. ?;False;False;;;;1610280621;;False;{};gir9huu;False;t3_kud48s;False;True;t1_gir8xx8;/r/anime/comments/kud48s/so_im_a_weeb_so_what/gir9huu/;1610321625;1;True;False;anime;t5_2qh22;;0;[]; -[];;;random_edgelord;;;[];;;;text;t2_2pygspv5;False;False;[];;"You can always watch it under jolly roger. - -But to answer your question, if you liked ranma so far, you'll probably enjoy the last season aswell. Just be aware that the anime doesn't fully adapt the manga. -Some of the missing parts were adapted in the OVAs i believe but the ending is still manga only";False;False;;;;1610280792;;False;{};gir9o5s;False;t3_kud3j8;False;True;t3_kud3j8;/r/anime/comments/kud3j8/wondering_if_i_should_binge_the_last_season_of/gir9o5s/;1610321738;3;True;False;anime;t5_2qh22;;0;[]; -[];;;gomadformunchsters;;;[];;;;text;t2_87irw8n2;False;False;[];;I've never actually read the manga. About a year ago my dad showed me the first episode before school so we've watched almost the entire series.;False;False;;;;1610280885;;False;{};gir9rjw;True;t3_kud3j8;False;True;t1_gir9o5s;/r/anime/comments/kud3j8/wondering_if_i_should_binge_the_last_season_of/gir9rjw/;1610321798;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PranayNighukar;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_lmr6sb5;False;False;[];;"Inuyasha- a bit old but all time great anime - -Gate - -Grimgar- a really good anime but a bit on the sadder side - - -I also advice u to make a account on myanimelist, anilist to sort ur anime and get better recommendations";False;False;;;;1610281221;;False;{};gira3pe;False;t3_kudiu8;False;True;t3_kudiu8;/r/anime/comments/kudiu8/ive_watched_a_couple_animes_looking_for_good/gira3pe/;1610322019;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotAlphonae;;;[];;;;text;t2_6im0hgvx;False;False;[];;Funimation has Ranma 1/2;False;False;;;;1610281233;;False;{};gira46b;False;t3_kud3j8;False;True;t3_kud3j8;/r/anime/comments/kud3j8/wondering_if_i_should_binge_the_last_season_of/gira46b/;1610322027;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610281237;;False;{};gira4bd;False;t3_kudjcc;False;True;t3_kudjcc;/r/anime/comments/kudjcc/so_which_anime_character_death_was_the_hardest/gira4bd/;1610322030;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610281338;;False;{};gira7yo;False;t3_kudjcc;False;True;t3_kudjcc;/r/anime/comments/kudjcc/so_which_anime_character_death_was_the_hardest/gira7yo/;1610322095;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HitsuWTG;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;http://myanimelist.net/profile/Hitsu;light;text;t2_i37oi;False;False;[];;"[Trigun](/s ""The death of Nicholas D. Wolfwood will always hit me the hardest, both the anime version and the manga version (which is so much better). Doesn't matter if it's the JP version or the English dub, the moment that music starts playing again on every rewatch, I start tearing up again."")";False;False;;;;1610281348;;False;{};gira8b6;False;t3_kudjcc;False;True;t3_kudjcc;/r/anime/comments/kudjcc/so_which_anime_character_death_was_the_hardest/gira8b6/;1610322101;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;I Can't Understand What My Husband Is Saying is one of the best couple anime show I've seen. Each episode also roughly 5 minutes long.;False;False;;;;1610281624;;False;{};giraiom;False;t3_kudiu8;False;True;t3_kudiu8;/r/anime/comments/kudiu8/ive_watched_a_couple_animes_looking_for_good/giraiom/;1610322287;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;"Also on Hulu & at least one season is on Netflix. -In the USA";False;False;;;;1610281910;;False;{};giratfb;False;t3_kuc6cr;False;True;t3_kuc6cr;/r/anime/comments/kuc6cr/why_is_donmachi_season_1_and_2_not_available_on/giratfb/;1610322497;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610281920;moderator;False;{};giratsy;False;t3_kudoyb;False;True;t3_kudoyb;/r/anime/comments/kudoyb/levi_ackermans_words_which_season/giratsy/;1610322503;3;False;False;anime;t5_2qh22;;0;[]; -[];;;Baam294;;;[];;;;text;t2_8ldlml39;False;False;[];;"- ""Boku no Kanojo ga Majime Sugiru Shojo Bitch na Ken"" -- ""5-toubun no Hanayome"" -- ""Boku wa Tomodachi ga Sukunai"" -- ""Chuunibyou demo Koi ga Shitai"" -- ""Denpa Onna to Seishun Otoko"" -- ""Gabriel DropOut"" -- ""Gamers!"" -- ""Golden Time"" -- ""Gosick"" -- ""Grancrest Senki"" -- ""Hajimete no Gal"" -- ""Hataraku Maou-sama!"" -- ""Hyouka"" -- ""Kaguya-sama wa Kokurasetai"" -- ""Kamisama ni Natta Hi"" -- ""Karakai Jouzu no Takagi-san"" -- ""Kyokou Suiri"" -- ""Nisekoi""";False;False;;;;1610281958;;False;{};girav8y;False;t3_kudiu8;False;False;t3_kudiu8;/r/anime/comments/kudiu8/ive_watched_a_couple_animes_looking_for_good/girav8y/;1610322527;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;The 2nd one is from the anime called miracle girls, dunno about the first one;False;False;;;;1610281972;;False;{};giravql;False;t3_kucub4;False;True;t3_kucub4;/r/anime/comments/kucub4/what_anime_are_these_images_from/giravql/;1610322535;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610281990;;False;{};giraweg;False;t3_kudjcc;False;True;t3_kudjcc;/r/anime/comments/kudjcc/so_which_anime_character_death_was_the_hardest/giraweg/;1610322547;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;"Smartphone isekai, death march, isekai cheat magician, modachi tachi, from the grace of the gods - - -Most of them have a very op mc and has romance";False;False;;;;1610282058;;False;{};giraz2m;False;t3_kucd09;False;True;t3_kucd09;/r/anime/comments/kucd09/animes_like_wise_mans_grandchild/giraz2m/;1610322594;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Not sure about the manga but the anime is possibly getting a sequel apparently, so might as well read it after that;False;False;;;;1610282296;;False;{};girb85o;False;t3_kucuy5;False;False;t3_kucuy5;/r/anime/comments/kucuy5/idinvaded_the_manga_sequel_worth_a_buy/girb85o/;1610322759;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Resident_Chemist_619;;;[];;;;text;t2_9993kzaf;False;False;[];;Bruh spoilers damn it!!!! The anime adaptation isn’t even out yet for CSM.;False;False;;;;1610282332;;False;{};girb9k3;False;t3_kudjcc;False;True;t1_gira4bd;/r/anime/comments/kudjcc/so_which_anime_character_death_was_the_hardest/girb9k3/;1610322799;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Season 1 I think episode 20 or 19;False;False;;;;1610282428;;False;{};girbd7d;False;t3_kudoyb;False;True;t3_kudoyb;/r/anime/comments/kudoyb/levi_ackermans_words_which_season/girbd7d/;1610322869;12;True;False;anime;t5_2qh22;;0;[]; -[];;;ttredfm;;;[];;;;text;t2_9d785juw;False;False;[];;Hope this counts but Tōko Ichinose from taboo tatoo idk what it was but yeah it made me cry a little;False;False;;;;1610282534;;False;{};girbhcd;False;t3_kudjcc;False;True;t3_kudjcc;/r/anime/comments/kudjcc/so_which_anime_character_death_was_the_hardest/girbhcd/;1610322942;1;True;False;anime;t5_2qh22;;0;[]; -[];;;satoru_1234;;;[];;;;text;t2_5lr7bi76;False;False;[];;Worst death was jiraya tbh I also cried after tobis death. Jiraiya cuz he was a goodman in the end of the day just wanted to write books and tobi was brainwashed and used as a terrorist and emotionally manipulated ruining his otherwise bright life;False;False;;;;1610282600;;False;{};girbjs5;False;t3_kudjcc;False;True;t3_kudjcc;/r/anime/comments/kudjcc/so_which_anime_character_death_was_the_hardest/girbjs5/;1610322986;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Uh my next life as a villianess maybe?;False;False;;;;1610282643;;False;{};girblfo;False;t3_kuc51l;False;True;t3_kuc51l;/r/anime/comments/kuc51l/im_gonna_look_for_the_weird_requests_what_anime/girblfo/;1610323017;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Flako-_;;;[];;;;text;t2_4usaeh6a;False;False;[];;All of the deaths in akame ga kill! :( the worst being Leone :((;False;False;;;;1610282683;;False;{};girbn0z;False;t3_kudjcc;False;True;t3_kudjcc;/r/anime/comments/kudjcc/so_which_anime_character_death_was_the_hardest/girbn0z/;1610323047;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kakashi1409;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/;light;text;t2_6lemabtm;False;False;[];;"Season 1 ep 19 and also at the end of ""No regrets"" OVA";False;False;;;;1610282683;;False;{};girbn1a;False;t3_kudoyb;False;True;t3_kudoyb;/r/anime/comments/kudoyb/levi_ackermans_words_which_season/girbn1a/;1610323047;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Those are rookie numbers;False;False;;;;1610282734;;False;{};girbp1o;False;t3_kubxb2;False;False;t1_gir4sb3;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/girbp1o/;1610323086;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Bonnie2607;;;[];;;;text;t2_3mubm3nj;False;False;[];;Thanks sooo much!;False;False;;;;1610282754;;False;{};girbpso;True;t3_kudoyb;False;True;t1_girbd7d;/r/anime/comments/kudoyb/levi_ackermans_words_which_season/girbpso/;1610323100;2;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your submission has been removed. - -- Your post looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler tagging posts, make sure you include the name of the show you're spoiling in the title of your post. We can't add it for you after the fact. You can then tag your post as containing spoilers by using the ""spoiler"" button, either when submitting or afterwards. - - If you're submitting a text-based post and need to mark spoilers for multiple series, you should use the same spoiler format as for comments. Use the editor's Markdown mode if you're on new Reddit, and then use the `[Work title](/s ""my favorite character dies"")` format to tag specific parts of your text. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610282768;moderator;False;{};girbqat;False;t3_kudjcc;False;True;t3_kudjcc;/r/anime/comments/kudjcc/so_which_anime_character_death_was_the_hardest/girbqat/;1610323111;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bonnie2607;;;[];;;;text;t2_3mubm3nj;False;False;[];;AWESOME!! Thanks :);False;False;;;;1610282770;;False;{};girbqe7;True;t3_kudoyb;False;True;t1_girbn1a;/r/anime/comments/kudoyb/levi_ackermans_words_which_season/girbqe7/;1610323112;2;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610282780;moderator;False;{};girbqqz;False;t3_kudjcc;False;True;t1_gira7yo;/r/anime/comments/kudjcc/so_which_anime_character_death_was_the_hardest/girbqqz/;1610323119;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610282825;moderator;False;{};girbsiv;False;t3_kudjcc;False;True;t1_gira4bd;/r/anime/comments/kudjcc/so_which_anime_character_death_was_the_hardest/girbsiv/;1610323149;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;I don't know why some people are saying this season is dry, I have been watching anime for a couple of years and this season is the most stacked I have ever seen;False;False;;;;1610282829;;False;{};girbsnp;False;t3_kubxb2;False;False;t3_kubxb2;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/girbsnp/;1610323151;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610282895;;1610316771.0;{};girbv9v;False;t3_kucuy5;False;True;t1_girb85o;/r/anime/comments/kucuy5/idinvaded_the_manga_sequel_worth_a_buy/girbv9v/;1610323197;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Keman_X;;;[];;;;text;t2_3mc7t6ck;False;False;[];;Season 1;False;False;;;;1610283419;;False;{};gircg78;False;t3_kudoyb;False;True;t3_kudoyb;/r/anime/comments/kudoyb/levi_ackermans_words_which_season/gircg78/;1610323583;3;True;False;anime;t5_2qh22;;0;[]; -[];;;georgeeeboyy;;;[];;;;text;t2_69sn1nmm;False;False;[];;Kimono? Say no more - Naruto 🤣;False;False;;;;1610283425;;False;{};gircggt;False;t3_kuc51l;False;True;t3_kuc51l;/r/anime/comments/kuc51l/im_gonna_look_for_the_weird_requests_what_anime/gircggt/;1610323588;1;True;False;anime;t5_2qh22;;0;[]; -[];;;A_Level_2;;;[];;;;text;t2_szsxp;False;False;[];;"try - -needless - -un-go - -princess resurrection/kaibutsu oujo - -kamichu";False;False;;;;1610283819;;False;{};gircwpr;False;t3_kudiu8;False;True;t3_kudiu8;/r/anime/comments/kudiu8/ive_watched_a_couple_animes_looking_for_good/gircwpr/;1610323885;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610283916;;1610316747.0;{};gird0y6;False;t3_kud3j8;False;True;t3_kud3j8;/r/anime/comments/kud3j8/wondering_if_i_should_binge_the_last_season_of/gird0y6/;1610323963;0;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;"Normal dere, no bullshit baka and unnecessary violence. - -Edit: It's called dere-dere, thanks OP for the info.";False;False;;;;1610284026;;1610284210.0;{};gird5o9;False;t3_kue4am;False;True;t3_kue4am;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/gird5o9/;1610324048;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Kuudere always win this questions;False;False;;;;1610284069;;False;{};gird7kw;False;t3_kue4am;False;False;t3_kue4am;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/gird7kw/;1610324082;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Beckymetal;;;[];;;;text;t2_10wmi0;False;False;[];;Most of the season doesn't really bother me. I thought this season looked pretty *weak*, tbh. A lot of popular shows I didn't really dig, or Beastars which... got really bad at the end of its first season despite starting well.;False;False;;;;1610284114;;False;{};gird9ik;False;t3_kubxb2;False;True;t3_kubxb2;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/gird9ik/;1610324116;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;BakarinaLovesMaria;;;[];;;;text;t2_7aztnfnj;False;False;[];;So a dere-dere?;False;False;;;;1610284117;;False;{};gird9mr;True;t3_kue4am;False;True;t1_gird5o9;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/gird9mr/;1610324118;2;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Yup, dere-dere is my favorite type .;False;False;;;;1610284170;;False;{};girdby6;False;t3_kue4am;False;True;t1_gird9mr;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/girdby6/;1610324159;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BakarinaLovesMaria;;;[];;;;text;t2_7aztnfnj;False;False;[];;I didn’t really mention the dere-dere because I feel like she’s just best girl by default.;False;False;;;;1610284289;;False;{};girdgy8;True;t3_kue4am;False;False;t1_girdby6;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/girdgy8/;1610324257;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;Tsundere but not hard types, and Deredere;False;False;;;;1610284442;;False;{};girdnef;False;t3_kue4am;False;True;t3_kue4am;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/girdnef/;1610324370;0;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Toss up between Kuu or Dan. I just don't have the patience or the energy to deal with any of the others.;False;False;;;;1610284567;;False;{};girdsq4;False;t3_kue4am;False;True;t3_kue4am;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/girdsq4/;1610324465;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BakarinaLovesMaria;;;[];;;;text;t2_7aztnfnj;False;False;[];;I feel as though no one can actually hate a deredere. She’s so nice and only wants love💕;False;False;;;;1610284580;;False;{};girdt9o;True;t3_kue4am;False;True;t1_girdnef;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/girdt9o/;1610324474;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Melonmans;;;[];;;;text;t2_9kom32s2;False;False;[];;How not to summon a demon lord;False;False;;;;1610284784;;False;{};gire24p;False;t3_kudiu8;False;True;t3_kudiu8;/r/anime/comments/kudiu8/ive_watched_a_couple_animes_looking_for_good/gire24p/;1610324637;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ohaimike;;;[];;;;text;t2_5ovb2;False;False;[];;"Tsun usually wins it for me. - -Violent tsuns or non-violent, they both are quite nice.";False;False;;;;1610284941;;False;{};gire8y0;False;t3_kue4am;False;False;t3_kue4am;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/gire8y0/;1610324756;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kiddleydivey;;;[];;;;text;t2_1zo6yjl7;False;False;[];;The school uniform in Amanchu! is a long dress (though more of a narrow bell-shaped than pencil-shape), so the main characters wear that a lot of the time (but they are also often in scuba gear and occasionally in casual clothing).;False;False;;;;1610284960;;False;{};gire9qy;False;t3_kuc51l;False;True;t3_kuc51l;/r/anime/comments/kuc51l/im_gonna_look_for_the_weird_requests_what_anime/gire9qy/;1610324771;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDampGod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheDampGod;light;text;t2_im4vi;False;False;[];;"*Aria* and *Amanchu* both have girls in long dresses. - -For Kimonos maybe try something like *Konohana Kitan.*";False;False;;;;1610285027;;False;{};girecq8;False;t3_kuc51l;False;True;t3_kuc51l;/r/anime/comments/kuc51l/im_gonna_look_for_the_weird_requests_what_anime/girecq8/;1610324829;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ShoujoAiEnthusiast;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/ShoujoAiEnthusiast;light;text;t2_4jdvod3a;False;False;[];;The new meaning for tsundere, not the original.;False;False;;;;1610285059;;False;{};giree2s;False;t3_kue4am;False;True;t3_kue4am;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/giree2s/;1610324854;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;Kuudere, Tsundere is a close second although I don't really like violent Tsundere. Yandere I don't really care about, and I hate Dere-Dere with a burning passion, seriously they piss me off and annoy me so much when they are on screen.;False;False;;;;1610285173;;1610285487.0;{};girej3h;False;t3_kue4am;False;False;t3_kue4am;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/girej3h/;1610324946;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomWolf83;;;[];;;;text;t2_wxq1l;False;False;[];;Oujodere or hiyakasudere;False;False;;;;1610285196;;False;{};girek3a;False;t3_kue4am;False;True;t3_kue4am;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/girek3a/;1610324965;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610285230;moderator;False;{};girelko;False;t3_kueft2;False;True;t3_kueft2;/r/anime/comments/kueft2/should_i_watch_the_madoka_magica_movies_not/girelko/;1610324994;1;False;False;anime;t5_2qh22;;0;[]; -[];;;G_Spark233;;;[];;;;text;t2_kn9bb;False;False;[];;It doesn't add more content so it's not worth watching.;False;False;;;;1610285580;;False;{};girf161;False;t3_kueft2;False;True;t3_kueft2;/r/anime/comments/kueft2/should_i_watch_the_madoka_magica_movies_not/girf161/;1610325304;4;True;False;anime;t5_2qh22;;0;[];True -[];;;baquea;;;[];;;;text;t2_j3k0u;False;True;[];;If you've just watched the original then there's not much point. Save them for a later rewatch.;False;False;;;;1610285654;;False;{};girf4ho;False;t3_kueft2;False;True;t3_kueft2;/r/anime/comments/kueft2/should_i_watch_the_madoka_magica_movies_not/girf4ho/;1610325360;2;True;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;Go straight to Rebellion;False;False;;;;1610285677;;False;{};girf5hu;False;t3_kueft2;False;True;t3_kueft2;/r/anime/comments/kueft2/should_i_watch_the_madoka_magica_movies_not/girf5hu/;1610325379;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Handsome-_-awkward;;;[];;;;text;t2_52f0dxfa;False;False;[];;Re zero and haikyu;False;False;;;;1610285964;;False;{};girfifs;False;t3_kudiu8;False;True;t3_kudiu8;/r/anime/comments/kudiu8/ive_watched_a_couple_animes_looking_for_good/girfifs/;1610325610;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610286072;moderator;False;{};girfnfj;False;t3_kuen2t;False;True;t3_kuen2t;/r/anime/comments/kuen2t/help_an_artist_out/girfnfj/;1610325700;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi CielsEarlGrey, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610286073;moderator;False;{};girfngm;False;t3_kuen2t;False;True;t3_kuen2t;/r/anime/comments/kuen2t/help_an_artist_out/girfngm/;1610325701;0;False;False;anime;t5_2qh22;;0;[]; -[];;;bayek_of_manila;;;[];;;;text;t2_sdxa0ie;False;False;[];;thanks!;False;False;;;;1610286089;;False;{};girfo84;True;t3_kueft2;False;True;t1_girf4ho;/r/anime/comments/kueft2/should_i_watch_the_madoka_magica_movies_not/girfo84/;1610325713;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CielsEarlGrey;;;[];;;;text;t2_88txit8q;False;False;[];;Yeah bro, it ain’t no recommendation;False;False;;;;1610286103;;False;{};girfouw;True;t3_kuen2t;False;True;t1_girfngm;/r/anime/comments/kuen2t/help_an_artist_out/girfouw/;1610325725;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bayek_of_manila;;;[];;;;text;t2_sdxa0ie;False;False;[];;but ive heard it changes a lot of the animation?;False;False;;;;1610286114;;False;{};girfpeh;True;t3_kueft2;False;True;t1_girf161;/r/anime/comments/kueft2/should_i_watch_the_madoka_magica_movies_not/girfpeh/;1610325738;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ConsiderationSmart26;;;[];;;;text;t2_7zpos1br;False;False;[];;Jojo has a wide range of characters and character designs. Berserk is the most beautiful manga I have read though the anime is not that good. One piece has a lot of characters and they each have unique design.;False;False;;;;1610286224;;False;{};girfulq;False;t3_kuen2t;False;True;t3_kuen2t;/r/anime/comments/kuen2t/help_an_artist_out/girfulq/;1610325836;3;True;False;anime;t5_2qh22;;0;[]; -[];;;G_Spark233;;;[];;;;text;t2_kn9bb;False;False;[];;Not really. There might have been some minor changes but nothing that’s really noticeable.;False;False;;;;1610286231;;False;{};girfuwe;False;t3_kueft2;False;True;t1_girfpeh;/r/anime/comments/kueft2/should_i_watch_the_madoka_magica_movies_not/girfuwe/;1610325842;1;True;False;anime;t5_2qh22;;0;[];True -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Is it made by a Japanese animation studio?;False;False;;;;1610286756;;False;{};girgjtm;False;t3_kuersy;False;True;t3_kuersy;/r/anime/comments/kuersy/can_you_consider_this_anime/girgjtm/;1610326319;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Boujoulo;;;[];;;;text;t2_6iczsif5;False;False;[];;Yes this season is stacked. If we compare it to previous seasons it’s obviously is so. It has sequels to some of the most popular shows from different gendered out: beastars, Neverland, rezero, log horizon, slime, stone, quintuplets and cells at work and yuru camp. It also has new adaptations of really famous source materials like Horimiya, bottom tier character, spider and Mushoku Tensei. Even if you don’t enjoy the shows above, it’s no doubt a “stacked season”. A stacked season doesn’t mean a season that you yourself likes, but a season with a lot of anime that the general population is excited for. So all the comments that say this season isn’t stacked because they don’t like most of the shows are plain stupid.;False;False;;;;1610287184;;False;{};girh40l;False;t3_kubxb2;False;False;t3_kubxb2;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/girh40l/;1610326712;3;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Most probably ep 5's discussion page will be posted early like 2 hours before Crunchyroll's release because of fansubs and it will deduct some karma for sure. But anyway I am predicting 20K+.;False;False;;;;1610287216;;1610287597.0;{};girh5kn;False;t3_kueuyz;False;True;t3_kueuyz;/r/anime/comments/kueuyz/attack_on_titan_ep5/girh5kn/;1610326738;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gorghurt;;;[];;;;text;t2_d5mbf;False;False;[];;"I would say, yes watch them, at least if you didn't rewatch the show already. - -A rewatch is really recommended, since the second time watching the show feels quite different. -The movies are a good way to rewatch, but you could also go for the normal version of the show (the movies cut a bit out). - -The difference in the movies are some improved animations, sometimes changed backgrounds, and soem different ~~ost~~ soundtrack. - -btw: there is also a fancut version from, well, fans, that puts the changes of the movie version into the normal episodic version.";False;False;;;;1610287239;;False;{};girh6ql;False;t3_kueft2;False;True;t3_kueft2;/r/anime/comments/kueft2/should_i_watch_the_madoka_magica_movies_not/girh6ql/;1610326758;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;17k, episode 6 can reach 20k;False;False;;;;1610287492;;False;{};girhj3d;False;t3_kueuyz;False;True;t3_kueuyz;/r/anime/comments/kueuyz/attack_on_titan_ep5/girhj3d/;1610326967;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610287502;;False;{};girhjlg;False;t3_kueuyz;False;True;t3_kueuyz;/r/anime/comments/kueuyz/attack_on_titan_ep5/girhjlg/;1610326976;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610287590;;False;{};girhny8;False;t3_kueuyz;False;True;t3_kueuyz;/r/anime/comments/kueuyz/attack_on_titan_ep5/girhny8/;1610327053;0;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;The last first 4 average out to 16k, so that would be my guess. Although, there's nothing to really go off of so let's stop wasting time on speculation and just wait for it to come out, how about that?;False;False;;;;1610287643;;False;{};girhqkq;False;t3_kueuyz;False;True;t3_kueuyz;/r/anime/comments/kueuyz/attack_on_titan_ep5/girhqkq/;1610327100;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AndrisSiliga_;;;[];;;;text;t2_5xqz3efj;False;True;[];;Lmao;False;False;;;;1610287709;;False;{};girhtwp;False;t3_kuf1ee;False;True;t3_kuf1ee;/r/anime/comments/kuf1ee/thats_a_nasty_scar_you_got_there/girhtwp/;1610327160;2;True;False;anime;t5_2qh22;;0;[]; -[];;;zuruka1;;;[];;;;text;t2_3faf5se;False;False;[];;"I am not a manga artist, which I presume you to be based on your request. - -However, as an amateur fiction writer I usually find my best inspirations from the classics, so I would venture to suggest that maybe you should do the same. - -I think you might wanna give classic manga such as Berserk, Vinland Saga or Mugen no Jūnin a try if you are going for a more mature route; or the three classic Shonen actions if you want to go that route.";False;False;;;;1610287729;;1610288134.0;{};girhv05;False;t3_kuen2t;False;True;t3_kuen2t;/r/anime/comments/kuen2t/help_an_artist_out/girhv05/;1610327178;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kireganen;;;[];;;;text;t2_9r4cmn4k;False;False;[];;"In my opinion, people around here are a little too obsessed with the pointless meta aspect of karma for episodes. Its so silly, as if they were rooting for sport teams or something but instead it's just TV shows. I guess some people desperately need to feel validated by others in their media choice. - -Also, this episode should be mostly dialogue unless they really stray from the manga and so the average viewer may not find specially exciting.";False;False;;;;1610287936;;1610288457.0;{};giri5cg;False;t3_kueuyz;False;True;t3_kueuyz;/r/anime/comments/kueuyz/attack_on_titan_ep5/giri5cg/;1610327357;-1;False;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;No;False;False;;;;1610288096;;False;{};giriddt;False;t3_kuf3hm;False;True;t3_kuf3hm;/r/anime/comments/kuf3hm/am_i_a_normie_if_my_fav_genre_in_anime_is_battle/giriddt/;1610327500;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ashteron;;;[];;;;text;t2_10ndkv;False;False;[];;What's up with denigrating people for not caring about mainstream shounens lol;False;False;;;;1610288239;;False;{};girikq7;False;t3_kubxb2;False;True;t1_gir2yh2;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/girikq7/;1610327622;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610288451;moderator;False;{};girivt9;False;t3_kuf8rn;False;True;t3_kuf8rn;/r/anime/comments/kuf8rn/i_have_been_looking_for_an_anime_since_i_was_a_kid/girivt9/;1610327813;1;False;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;"Bruh no. -this episode will have absurd hype, otherwise people wouldn't talk about it for so long";False;False;;;;1610288469;;1610288776.0;{};giriwri;True;t3_kueuyz;False;True;t1_giri5cg;/r/anime/comments/kueuyz/attack_on_titan_ep5/giriwri/;1610327830;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Sounds about right, superlatives are *tight*;False;False;;;;1610288533;;False;{};girj04j;False;t3_kubxb2;False;False;t1_gir4faz;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/girj04j/;1610327892;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;What? There's not only shounen this season;False;False;;;;1610288574;;False;{};girj2bx;False;t3_kubxb2;False;True;t1_girikq7;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/girj2bx/;1610327934;2;True;False;anime;t5_2qh22;;0;[]; -[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 500, 'coin_reward': 100, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 7, 'description': 'Gives 100 Reddit Coins and a week of r/lounge access and ad-free browsing.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/gold_512.png', 'icon_width': 512, 'id': 'gid_2', 'is_enabled': True, 'is_new': False, 'name': 'Gold', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/gold_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/gold_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}];;;SatouSmith;;;[];;;;text;t2_85ir9527;False;True;[];;"[Saber marionette J](https://myanimelist.net/anime/573/Saber_Marionette_J) - -Lime, Cherry, Blood berry";False;False;;;;1610288624;;1610292072.0;{'gid_2': 1};girj4xe;False;t3_kuf8rn;False;True;t3_kuf8rn;/r/anime/comments/kuf8rn/i_have_been_looking_for_an_anime_since_i_was_a_kid/girj4xe/;1610327983;7;True;False;anime;t5_2qh22;;1;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610288845;;False;{};girjgj7;False;t3_kueuyz;False;True;t1_giriwri;/r/anime/comments/kueuyz/attack_on_titan_ep5/girjgj7/;1610328180;0;True;False;anime;t5_2qh22;;0;[]; -[];;;MetaThPr4h;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MetaThPr4h/;light;text;t2_fbwjt;False;False;[];;"Completely opposite for me to be honest, most sequels coming out are from shows I dislike or that I lost all interest on (Neverland as a manga reader) - -Unless new series change my mind this will most likely be the season I will watch the least stuff since I started following airings in 2015.";False;False;;;;1610288901;;False;{};girjjjf;False;t3_kubxb2;False;True;t3_kubxb2;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/girjjjf/;1610328230;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gsenjou;;;[];;;;text;t2_5ns6dyc;False;False;[];;Not really. People naturally enjoy action, it's the most commonly liked genre.;False;False;;;;1610288998;;False;{};girjovi;False;t3_kuf3hm;False;True;t3_kuf3hm;/r/anime/comments/kuf3hm/am_i_a_normie_if_my_fav_genre_in_anime_is_battle/girjovi/;1610328324;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;No, it's also my favorite since I started watching anime many years ago;False;False;;;;1610289099;;False;{};girjtzd;False;t3_kuf3hm;False;True;t3_kuf3hm;/r/anime/comments/kuf3hm/am_i_a_normie_if_my_fav_genre_in_anime_is_battle/girjtzd/;1610328417;2;True;False;anime;t5_2qh22;;0;[]; -[];;;midnightwolf19;;;[];;;;text;t2_938l065e;False;False;[];;20+ years looking for it, was thinking i had dreamed it and not five minutes of me asking this question and you found it, you're awesome;False;False;;;;1610289255;;False;{};girk2cl;True;t3_kuf8rn;False;False;t1_girj4xe;/r/anime/comments/kuf8rn/i_have_been_looking_for_an_anime_since_i_was_a_kid/girk2cl/;1610328559;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Remarkable-Still6063;;;[];;;;text;t2_9r68eizs;False;False;[];;"> i watch a lot of anime - -Then probably not.";False;False;;;;1610289320;;False;{};girk5x3;False;t3_kuf3hm;False;True;t3_kuf3hm;/r/anime/comments/kuf3hm/am_i_a_normie_if_my_fav_genre_in_anime_is_battle/girk5x3/;1610328625;3;True;False;anime;t5_2qh22;;0;[]; -[];;;juances19;;HB;[];;https://kitsu.io/users/juances;dark;text;t2_17a18d;False;False;[];;It's like the default setting of anime fan, but it's still anime so no.;False;False;;;;1610289341;;False;{};girk74u;False;t3_kuf3hm;False;True;t3_kuf3hm;/r/anime/comments/kuf3hm/am_i_a_normie_if_my_fav_genre_in_anime_is_battle/girk74u/;1610328650;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Short Answer: No - -Long Answer: Having Battle shounen as one's favorite genre is usually ""normie"" because most people starting out with watching anime are most likely to have only watched battle shounen. Usually the people with battle shounen as their favorite genre are those that have only seen a battle shounen and those battle shounen shows are usually the more popular shows everyone have watched. This means that you just have developed a taste for battle shounen over other genres.";False;False;;;;1610289953;;False;{};girl4nl;False;t3_kuf3hm;False;True;t3_kuf3hm;/r/anime/comments/kuf3hm/am_i_a_normie_if_my_fav_genre_in_anime_is_battle/girl4nl/;1610329242;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BossandKings;;;[];;;;text;t2_5ifr53k7;False;False;[];;Tsun for me, it has most of my favorite girls;False;False;;;;1610290600;;False;{};girlyui;False;t3_kue4am;False;True;t3_kue4am;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/girlyui/;1610329784;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Lovro26;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Lovro26;light;text;t2_17kxi3pl;False;True;[];;"First episode aired today - -[Source](https://anime.idolypride.jp/)";False;False;;;;1610290861;;False;{};girmda3;True;t3_kufuju;False;False;t3_kufuju;/r/anime/comments/kufuju/idoly_pride_new_visual/girmda3/;1610330051;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Ashteron;;;[];;;;text;t2_10ndkv;False;False;[];;Shounens and isekais\*;False;False;;;;1610290924;;False;{};girmgvv;False;t3_kubxb2;False;True;t1_girj2bx;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/girmgvv/;1610330120;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Alpha_Kappa_357;;;[];;;;text;t2_9liap5qz;False;False;[];;when is progressive coming out ?;False;False;;;;1610291312;;False;{};girn2s2;False;t3_kufbde;False;True;t3_kufbde;/r/anime/comments/kufbde/sword_art_online_anime_mvᴴᴰ/girn2s2/;1610330522;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Massaman95;;;[];;;;text;t2_zxb3m;False;False;[];;You did the title wrong though;False;False;;;;1610291382;;False;{};girn6vt;False;t3_kufwqc;False;True;t3_kufwqc;/r/anime/comments/kufwqc/sorry_if_i_did_this_flair_wrong/girn6vt/;1610330593;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610291383;;False;{};girn6yt;False;t3_kubxb2;False;False;t1_girh40l;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/girn6yt/;1610330594;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dragon_rar;;;[];;;;text;t2_4ohqcqus;False;False;[];;How?;False;False;;;;1610291403;;False;{};girn854;True;t3_kufwqc;False;True;t1_girn6vt;/r/anime/comments/kufwqc/sorry_if_i_did_this_flair_wrong/girn854/;1610330620;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MetaThPr4h;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MetaThPr4h/;light;text;t2_fbwjt;False;False;[];;"Will also be available subtitled in the [global channel](https://www.youtube.com/channel/UCbuCfr-ys8-owEB5gNzOkxA) of D4DJ ([Source](https://twitter.com/D4DJ_pj_EN/status/1348222875073826816)) - -Fantastic news I was hoping to see announced soon! With 3 episodes of the currently airing (and really good!) TV anime of the series left, looks like the D4DJ fun will continue with chibi shorts the week after it finishes airing. Today was a great day of announcements between this and the sick [D4DJ x Monster Hunter collab](https://twitter.com/D4DJ_gm/status/1348194886323904512?s=20) coming next week for the game.";False;False;;;;1610292427;;False;{};giroxm6;True;t3_kug9sa;False;False;t3_kug9sa;/r/anime/comments/kug9sa/d4dj_petit_mix_mini_anime_announced_starts_the/giroxm6/;1610331708;10;True;False;anime;t5_2qh22;;0;[]; -[];;;sum-dude;;MAL;[];;http://myanimelist.net/profile/Mevious;dark;text;t2_1nzze;False;False;[];;Hopefully this will be as ridiculous as Garupa Pico.;False;False;;;;1610292764;;False;{};girpid5;False;t3_kug9sa;False;False;t3_kug9sa;/r/anime/comments/kug9sa/d4dj_petit_mix_mini_anime_announced_starts_the/girpid5/;1610332076;15;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610292948;moderator;False;{};girptyg;False;t3_kugii5;False;True;t3_kugii5;/r/anime/comments/kugii5/is_this_an_important_spoiler_for_aot/girptyg/;1610332274;1;False;False;anime;t5_2qh22;;0;[]; -[];;;hitogomi911;;;[];;;;text;t2_83ec5qv5;False;False;[];;Someone dies each episode.;False;False;;;;1610293080;;False;{};girq27m;False;t3_kug9sa;False;False;t1_girpid5;/r/anime/comments/kug9sa/d4dj_petit_mix_mini_anime_announced_starts_the/girq27m/;1610332430;9;True;False;anime;t5_2qh22;;0;[]; -[];;;double_super;;MAL;[];;http://myanimelist.net/profile/techchase;dark;text;t2_in14n;False;False;[];;"you haven't really been *spoiled* spoiled. - -None of that ed will make sense till you see those S4 scenes anyways, you are fine";False;False;;;;1610293083;;False;{};girq2ci;False;t3_kugii5;False;False;t3_kugii5;/r/anime/comments/kugii5/is_this_an_important_spoiler_for_aot/girq2ci/;1610332433;16;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610293163;;False;{};girq79n;False;t3_kugii5;False;True;t3_kugii5;/r/anime/comments/kugii5/is_this_an_important_spoiler_for_aot/girq79n/;1610332547;1;True;False;anime;t5_2qh22;;0;[]; -[];;;reddadz;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MysticEyes/;light;text;t2_oek5m;False;True;[];;"Sorry, your submission has been removed. - -- This doesn't appear to be about [anime per our definition](https://www.reddit.com/r/anime/wiki/rules#wiki_everything_posted_here_must_be_anime_specific). - - -- Unfortunately, OC ideas for anime are not allowed. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610293314;moderator;False;{};girqgx4;False;t3_kufwqc;False;True;t3_kufwqc;/r/anime/comments/kufwqc/sorry_if_i_did_this_flair_wrong/girqgx4/;1610332735;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CO_ORDINATE;;;[];;;;text;t2_kf9hyuw;False;False;[];;"Art by Teruyuki Oomine (Episode 64 Director) - -[Source](https://twitter.com/anime_shingeki/status/1348292263244255234) - - -Spoiler Tag just to be safe!";False;False;;;;1610293366;;1610293785.0;{};girqk9f;True;t3_kugm3c;False;True;t3_kugm3c;/r/anime/comments/kugm3c/attack_on_titan_official_art_for_episode_5/girqk9f/;1610332803;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Garlicbread10;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;ereh;dark;text;t2_8zn7f5o;False;False;[];;Can’t wait to see how much karma this ep gets;False;False;;;;1610293373;;False;{};girqkp2;False;t3_kugm3c;False;True;t3_kugm3c;/r/anime/comments/kugm3c/attack_on_titan_official_art_for_episode_5/girqkp2/;1610332811;10;True;False;anime;t5_2qh22;;0;[]; -[];;;zerx07;;;[];;;;text;t2_5nfml6dh;False;False;[];;When does the subtitles version come and where can i watch it ( as soon as possible?);False;False;;;;1610293746;;False;{};girr8ew;False;t3_kugm3c;False;True;t3_kugm3c;/r/anime/comments/kugm3c/attack_on_titan_official_art_for_episode_5/girr8ew/;1610333253;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hanschranz;;;[];;;;text;t2_n2aj9;False;False;[];;I was lowkey disappointed when I learned it's been delayed to tomorrow.........;False;False;;;;1610293805;;False;{};girrc7g;False;t3_kugm3c;False;True;t3_kugm3c;/r/anime/comments/kugm3c/attack_on_titan_official_art_for_episode_5/girrc7g/;1610333326;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;dark77638;;;[];;;;text;t2_14cb1i;False;False;[];;Damn, he emitting so intimidating aura despite losing a leg;False;False;;;;1610293808;;False;{};girrce8;False;t3_kugm3c;False;True;t3_kugm3c;/r/anime/comments/kugm3c/attack_on_titan_official_art_for_episode_5/girrce8/;1610333329;1;True;False;anime;t5_2qh22;;0;[];True -[];;;Lumaro;;;[];;;;text;t2_1302qz;False;False;[];;It comes 5 hours after in Crunchyroll (and I believe Funimation as well). Yep, the delay could be worse, but it definitely sucks.;False;False;;;;1610293860;;False;{};girrfm0;False;t3_kugm3c;False;True;t1_girr8ew;/r/anime/comments/kugm3c/attack_on_titan_official_art_for_episode_5/girrfm0/;1610333387;4;True;False;anime;t5_2qh22;;0;[]; -[];;;CO_ORDINATE;;;[];;;;text;t2_kf9hyuw;False;False;[];;i believe in less than 5 hours;False;False;;;;1610293876;;False;{};girrgmt;True;t3_kugm3c;False;True;t1_girr8ew;/r/anime/comments/kugm3c/attack_on_titan_official_art_for_episode_5/girrgmt/;1610333404;4;True;False;anime;t5_2qh22;;0;[]; -[];;;CO_ORDINATE;;;[];;;;text;t2_kf9hyuw;False;False;[];;wait seriously??;False;False;;;;1610293891;;False;{};girrhk0;True;t3_kugm3c;False;True;t1_girrc7g;/r/anime/comments/kugm3c/attack_on_titan_official_art_for_episode_5/girrhk0/;1610333420;1;True;False;anime;t5_2qh22;;0;[]; -[];;;minezum;;;[];;;;text;t2_o0xti;False;False;[];;Tokyo Ghoul. When I was watching the second season I was just confused why things were happening.;False;False;;;;1610293898;;False;{};girrhzl;False;t3_kugqte;False;False;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girrhzl/;1610333429;14;True;False;anime;t5_2qh22;;0;[]; -[];;;chika2chi;;;[];;;;text;t2_4dkz2y8e;False;False;[];;one punch man;False;False;;;;1610293917;;False;{};girrj6m;False;t3_kugqte;False;False;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girrj6m/;1610333452;17;True;False;anime;t5_2qh22;;0;[]; -[];;;asscrackrash;;;[];;;;text;t2_9jhv8y1m;False;False;[];;no.;False;False;;;;1610293945;;False;{};girrkxx;False;t3_kugm3c;False;True;t1_girrhk0;/r/anime/comments/kugm3c/attack_on_titan_official_art_for_episode_5/girrkxx/;1610333483;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ImnotVictor;;;[];;;;text;t2_13qmnn;False;False;[];;No it comes out in about 5 hours on crunchyroll;False;False;;;;1610293960;;False;{};girrlwi;False;t3_kugm3c;False;True;t1_girrhk0;/r/anime/comments/kugm3c/attack_on_titan_official_art_for_episode_5/girrlwi/;1610333504;1;True;False;anime;t5_2qh22;;0;[]; -[];;;reddadz;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MysticEyes/;light;text;t2_oek5m;False;True;[];;"Sorry, your submission has been removed. - -- Post-episode end cards aren't allowed outside the discussion thread - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610294001;moderator;False;{};girrolu;False;t3_kugm3c;False;True;t3_kugm3c;/r/anime/comments/kugm3c/attack_on_titan_official_art_for_episode_5/girrolu/;1610333554;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaxivop;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/Vaxivop/;light;text;t2_ddi8i;False;False;[];;Cool story bro.;False;False;;;;1610294019;;False;{};girrprl;False;t3_kugso6;False;False;t3_kugso6;/r/anime/comments/kugso6/my_rant_about_a_certain_pretentious_anime_called/girrprl/;1610333575;24;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"I agree so much. - -The same people who put this on a pedestal will go on and bash other shows for being generic harems, generic battle shounens and trash other shows that take themselves seriously and call those shows 'pretentious'. - -Monogatari is an anime with some of the most disgusting fanservice, a perverted MC that is arguably worse than Meliodas and stretched out dialogue with no actual purpose. - -Whenever you criticise this show the fanbase goes rabid. - -Edit: Downvotes have already started.";False;True;;comment score below threshold;;1610294128;;1610294386.0;{};girrws8;False;t3_kugso6;False;True;t3_kugso6;/r/anime/comments/kugso6/my_rant_about_a_certain_pretentious_anime_called/girrws8/;1610333712;-12;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;A tie between Shakugan no Shana S3 and Food Wars S5;False;False;;;;1610294182;;False;{};girs0ho;False;t3_kugqte;False;True;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girs0ho/;1610333776;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"Not the most but I feel the need to list it. - -My Hero Academia S4 I couldn't even finish the season it was that bad.";False;False;;;;1610294245;;False;{};girs4jb;False;t3_kugqte;False;True;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girs4jb/;1610333846;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"I agree on a lot of these takes. Not sure about how you delivered it though, feels a bit too baity. - -But overall you can't say that here...Shaft is like /r/anime's darling studio and Monogatari is one of its favourite shows. - -They don't want to hear it.";False;False;;;;1610294274;;False;{};girs6gz;False;t3_kugso6;False;True;t3_kugso6;/r/anime/comments/kugso6/my_rant_about_a_certain_pretentious_anime_called/girs6gz/;1610333881;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jojoismyreligion;;;[];;;;text;t2_5j56wzq4;False;False;[];;Yes, those are spoilers. But you wouldn't understand a thing without the actual context.;False;False;;;;1610294348;;False;{};girsb8q;False;t3_kugii5;False;False;t3_kugii5;/r/anime/comments/kugii5/is_this_an_important_spoiler_for_aot/girsb8q/;1610333967;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;That drop Animation quality;False;False;;;;1610294378;;False;{};girsd8n;True;t3_kugqte;False;True;t1_girrj6m;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girsd8n/;1610334000;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;*It probably makes sense in manga*;False;False;;;;1610294414;;False;{};girsfng;True;t3_kugqte;False;True;t1_girrhzl;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girsfng/;1610334043;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;Yeah that Festival arc was boring as hell;False;False;;;;1610294452;;False;{};girsi3l;True;t3_kugqte;False;True;t1_girs4jb;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girsi3l/;1610334089;3;True;False;anime;t5_2qh22;;0;[]; -[];;;asscrackrash;;;[];;;;text;t2_9jhv8y1m;False;False;[];;https://www.youtube.com/watch?v=5GgflscOmW8;False;False;;;;1610294464;;False;{};girsivb;False;t3_kugso6;False;True;t3_kugso6;/r/anime/comments/kugso6/my_rant_about_a_certain_pretentious_anime_called/girsivb/;1610334105;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;I liked Monogatari mainly for its unique visual approach that enhanced the series in my eyes.;False;False;;;;1610294467;;False;{};girsj1v;False;t3_kugso6;False;True;t3_kugso6;/r/anime/comments/kugso6/my_rant_about_a_certain_pretentious_anime_called/girsj1v/;1610334108;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GummyGoonz;;;[];;;;text;t2_6ibvmly8;False;False;[];;nanatsu no taizai;False;False;;;;1610294478;;False;{};girsjsq;False;t3_kugqte;False;False;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girsjsq/;1610334122;5;True;False;anime;t5_2qh22;;0;[]; -[];;;kaminkii;;;[];;;;text;t2_gjuwh;False;False;[];;nanatsu no taizai season 3;False;False;;;;1610294491;;False;{};girskl3;False;t3_kugqte;False;False;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girskl3/;1610334137;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"> Edit: Downvotes have already started. - -You called out Monogatari _and_ fanservice, that was inevitable around here.";False;False;;;;1610294491;;False;{};girsklg;False;t3_kugso6;False;False;t1_girrws8;/r/anime/comments/kugso6/my_rant_about_a_certain_pretentious_anime_called/girsklg/;1610334137;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;I barely watched it. The Overhaul arc bored me so much and then the festival arc was the point where I just gave up.;False;False;;;;1610294499;;False;{};girsl2s;False;t3_kugqte;False;True;t1_girsi3l;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girsl2s/;1610334145;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SherrinfordxD;;;[];;;;text;t2_7wsjvtmk;False;False;[];;Psychopass;False;False;;;;1610294540;;False;{};girsnry;False;t3_kugqte;False;True;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girsnry/;1610334196;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;That huge drop in animation quality;False;False;;;;1610294583;;False;{};girsqk0;True;t3_kugqte;False;True;t1_girsjsq;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girsqk0/;1610334247;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;The memes were funny tho;False;False;;;;1610294599;;False;{};girsrlt;True;t3_kugqte;False;False;t1_girskl3;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girsrlt/;1610334268;3;True;False;anime;t5_2qh22;;0;[]; -[];;;juances19;;HB;[];;https://kitsu.io/users/juances;dark;text;t2_17a18d;False;False;[];;"I'm not sure why would you call him OP when it's not really a show about action and most of the time he's just used as a punchbag. - -The show is about exploring the other girls backstories and dramas, through the eyes of Koyomi, which is a horny teen yes, but in the end it doesn't come off as haremy. - -Anyways, cool story bro.";False;False;;;;1610294601;;False;{};girsrqn;False;t3_kugso6;False;False;t3_kugso6;/r/anime/comments/kugso6/my_rant_about_a_certain_pretentious_anime_called/girsrqn/;1610334270;16;True;False;anime;t5_2qh22;;0;[]; -[];;;minezum;;;[];;;;text;t2_o0xti;False;False;[];;Yeah, it makes. After reading the manga I understood that things happen in the anime because they happened in the manga, even though in the context of the anime, which is different, they don't make much sense.;False;False;;;;1610294651;;False;{};girsuzm;False;t3_kugqte;False;True;t1_girsfng;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girsuzm/;1610334330;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GummyGoonz;;;[];;;;text;t2_6ibvmly8;False;False;[];;wasn´t the animation but rather the story got really boring;False;False;;;;1610294691;;False;{};girsxge;False;t3_kugqte;False;False;t1_girsqk0;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girsxge/;1610334377;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Massaman95;;;[];;;;text;t2_zxb3m;False;False;[];;Underappreciated nowadays;False;False;;;;1610294740;;False;{};girt0lj;False;t3_kugzsg;False;False;t3_kugzsg;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/girt0lj/;1610334446;50;True;False;anime;t5_2qh22;;0;[]; -[];;;Excessively-Moist;;;[];;;;text;t2_1rpon4pq;False;False;[];;Its alright. Up to ep 9 or so its pretty great, but the climax is pretty garbage. I think the final ep somewhat redeemed it, but i would have dropped it if i didnt have nothing else to watch;False;False;;;;1610294809;;False;{};girt56l;False;t3_kugy8t;False;True;t3_kugy8t;/r/anime/comments/kugy8t/should_i_complete_kamisama_ni_natta_hi/girt56l/;1610334526;2;True;False;anime;t5_2qh22;;0;[]; -[];;;iw2kl;;;[];;;;text;t2_9k8gikvs;False;False;[];;amazing short comedies: Aho girl, asobi asobase, luckystar;False;False;;;;1610294830;;False;{};girt6jk;False;t3_kudiu8;False;True;t3_kudiu8;/r/anime/comments/kudiu8/ive_watched_a_couple_animes_looking_for_good/girt6jk/;1610334548;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Irru;;;[];;;;text;t2_5so5d;False;False;[];;Air Gear, I guess?;False;False;;;;1610294866;;False;{};girt8uj;False;t3_kuh2gz;False;False;t3_kuh2gz;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/girt8uj/;1610334588;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Storm137;;;[];;;;text;t2_ogrzx;False;False;[];;"Food Wars Season 5. - -I will never forgive it. Ever.";False;False;;;;1610294878;;False;{};girt9ox;False;t3_kugqte;False;False;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girt9ox/;1610334601;6;True;False;anime;t5_2qh22;;0;[]; -[];;;babydave371;;MAL a-amq;[];;https://myanimelist.net/profile/babydave371;dark;text;t2_sak6n;False;False;[];;It is hard to appreciate it when the author is a paedophile and got the equivalent of a slap on the wrist from it while continuing to rake in money.;False;False;;;;1610294904;;1610297266.0;{};girtbf9;False;t3_kugzsg;False;False;t1_girt0lj;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/girtbf9/;1610334630;40;True;False;anime;t5_2qh22;;0;[]; -[];;;oujicrows;;;[];;;;text;t2_9nz9ftrh;False;False;[];;Cowboy Bebop;False;False;;;;1610294915;;False;{};girtc4o;False;t3_kuh3qg;False;True;t3_kuh3qg;/r/anime/comments/kuh3qg/which_is_better_samurai_champloo_or_cowboy_bebop/girtc4o/;1610334643;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;I stopped watching in season 3, was the ending really that bad;False;False;;;;1610294925;;False;{};girtcrp;True;t3_kugqte;False;True;t1_girt9ox;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girtcrp/;1610334653;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"Index 3. - -I was so confused while watching it. If not for Razorhead's posts I might've dropped it entirely.";False;False;;;;1610294946;;False;{};girte4y;False;t3_kugqte;False;True;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girte4y/;1610334676;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FireFistYamaan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4uscna3;False;False;[];;"Don't care about what other people think, you should watch it and find out for yourself if you like it or not - -The general consensus is that it drops off after ep 9 but there are people that still liked it";False;False;;;;1610295015;;False;{};girtinu;False;t3_kugy8t;False;False;t3_kugy8t;/r/anime/comments/kugy8t/should_i_complete_kamisama_ni_natta_hi/girtinu/;1610334752;5;True;False;anime;t5_2qh22;;0;[]; -[];;;FrianBunns;;;[];;;;text;t2_xq6nw;False;False;[];;What?!! They are different and both great!;False;False;;;;1610295056;;False;{};girtlei;False;t3_kuh3qg;False;False;t3_kuh3qg;/r/anime/comments/kuh3qg/which_is_better_samurai_champloo_or_cowboy_bebop/girtlei/;1610334800;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610295058;moderator;False;{};girtljl;False;t3_kuh61n;False;True;t3_kuh61n;/r/anime/comments/kuh61n/how_good_is_sorcerous_stabber_orphen_series/girtljl/;1610334802;1;False;False;anime;t5_2qh22;;0;[]; -[];;;isamudragon;;;[];;;;text;t2_5c4ow;False;False;[];;You do know that most people separate the art from the artist, right?;False;False;;;;1610295074;;False;{};girtmml;False;t3_kugzsg;False;False;t1_girtbf9;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/girtmml/;1610334822;50;True;False;anime;t5_2qh22;;0;[]; -[];;;babydave371;;MAL a-amq;[];;https://myanimelist.net/profile/babydave371;dark;text;t2_sak6n;False;False;[];;Rage of Bahamut Virgin Soul. The original was such a surprise to everyone and is just a really fun adventure series (it feels so much like the first Pirates of the Caribbean!). Then came Virgin Soul which started really well. However, it got to the final third and just absolutely tanked in quality. It still baffles me how bad it got and it is a shame because Nina is an awesome character and the things they had set up were interesting.;False;False;;;;1610295133;;False;{};girtqiy;False;t3_kugqte;False;True;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girtqiy/;1610334890;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Maybe you'll like it? Drop if you feel like it, not because the sentiment is that it is bad;False;False;;;;1610295142;;False;{};girtr59;False;t3_kugy8t;False;True;t3_kugy8t;/r/anime/comments/kugy8t/should_i_complete_kamisama_ni_natta_hi/girtr59/;1610334901;3;True;False;anime;t5_2qh22;;0;[]; -[];;;isamudragon;;;[];;;;text;t2_5c4ow;False;False;[];;Wouldn’t that be a Roller Blading anime and not a skateboarding anime?;False;False;;;;1610295162;;False;{};girtsgk;False;t3_kuh2gz;False;False;t1_girt8uj;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/girtsgk/;1610334923;11;True;False;anime;t5_2qh22;;0;[]; -[];;;MetaThPr4h;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MetaThPr4h/;light;text;t2_fbwjt;False;False;[];;Really interested in the anime, can't wait to watch today's first episode.;False;False;;;;1610295171;;False;{};girtt2i;False;t3_kufuju;False;False;t3_kufuju;/r/anime/comments/kufuju/idoly_pride_new_visual/girtt2i/;1610334932;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeTalks101;;;[];;;;text;t2_36v6e5ak;False;False;[];;Yeah I think that might be the closest thing to a Skateboarding anime.;False;False;;;;1610295209;;False;{};girtvkc;True;t3_kuh2gz;False;False;t1_girt8uj;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/girtvkc/;1610334975;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Finally some one who loves dere dere I am so happy;False;False;;;;1610295215;;False;{};girtvyx;False;t3_kue4am;False;True;t1_girdgy8;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/girtvyx/;1610334981;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;So you like to turn into that Star at horizon;False;False;;;;1610295256;;False;{};girtytm;False;t3_kue4am;False;True;t1_gire8y0;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/girtytm/;1610335030;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;I haven't seen lots of since I usually watch anime that only has 1 season, but Sao was really disappointing for me;False;False;;;;1610295298;;False;{};giru1oz;False;t3_kugqte;False;True;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/giru1oz/;1610335081;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Were you dropped on head as a child . Just asking I am curious;False;False;;;;1610295304;;False;{};giru251;False;t3_kue4am;False;True;t1_girej3h;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/giru251/;1610335089;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;Cowboy Bebop because it's one of my 10/10s, but Samurai Champloo is also great;False;False;;;;1610295309;;False;{};giru2fb;False;t3_kuh3qg;False;False;t3_kuh3qg;/r/anime/comments/kuh3qg/which_is_better_samurai_champloo_or_cowboy_bebop/giru2fb/;1610335093;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi RykerMerrick, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610295327;moderator;False;{};giru3ne;False;t3_kuh96b;False;True;t3_kuh96b;/r/anime/comments/kuh96b/can_anyone_recommend_an_anime_thats_similar_in/giru3ne/;1610335117;1;False;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;I think most people will agree with the second half of SAO 2nd season, Kakegurui was underwhelming in comparison with the first season tbh, Tokyo Ghoul √A was meh, the scenes it had in common with the manga were so bland, you can see more movement in the black and white illustration than in the whole anime.;False;False;;;;1610295336;;False;{};giru49b;False;t3_kugqte;False;True;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/giru49b/;1610335127;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;BoopTheChicken;;;[];;;;text;t2_82olxgk9;False;False;[];;Close enough.;False;False;;;;1610295366;;False;{};giru69x;False;t3_kuh2gz;False;False;t1_girtsgk;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/giru69x/;1610335163;5;True;False;anime;t5_2qh22;;0;[]; -[];;;RykerMerrick;;;[];;;;text;t2_8rp34r0n;False;False;[];;"Good bot <3";False;False;;;;1610295368;;False;{};giru6fg;True;t3_kuh96b;False;True;t1_giru3ne;/r/anime/comments/kuh96b/can_anyone_recommend_an_anime_thats_similar_in/giru6fg/;1610335167;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;It was a big disappointment for me, the worst Maeda but it's up to you to decide how you feel with it.;False;False;;;;1610295437;;False;{};giruazh;False;t3_kugy8t;False;True;t3_kugy8t;/r/anime/comments/kugy8t/should_i_complete_kamisama_ni_natta_hi/giruazh/;1610335246;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BakarinaLovesMaria;;;[];;;;text;t2_7aztnfnj;False;False;[];;She is literally put on to this planet to love unconditionally. Hating her is like despising puppies and plush animals. People who say that are clearly just trying to be edgy and unique.;False;False;;;;1610295451;;False;{};girubx0;True;t3_kue4am;False;True;t1_girtvyx;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/girubx0/;1610335262;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheFilu;;;[];;;;text;t2_1fraprzk;False;False;[];;Is there an award for worst post of the month?;False;False;;;;1610295474;;False;{};girudh3;False;t3_kugso6;False;True;t3_kugso6;/r/anime/comments/kugso6/my_rant_about_a_certain_pretentious_anime_called/girudh3/;1610335290;3;True;False;anime;t5_2qh22;;0;[]; -[];;;INTHEFIRSTAGE;;;[];;;;text;t2_54khqfv3;False;False;[];;I’m not saying one is better. I’m just asking for different opinions on the two shows.;False;False;;;;1610295477;;False;{};girudmi;True;t3_kuh3qg;False;True;t1_girtlei;/r/anime/comments/kuh3qg/which_is_better_samurai_champloo_or_cowboy_bebop/girudmi/;1610335292;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal_Ebb_238;;;[];;;;text;t2_8nmkui77;False;False;[];;It's Ok, nothing really stands out in both negative and positive way.;False;False;;;;1610295489;;False;{};giruegm;False;t3_kuh61n;False;False;t3_kuh61n;/r/anime/comments/kuh61n/how_good_is_sorcerous_stabber_orphen_series/giruegm/;1610335307;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Many people I have seen hate dere dere I just don't know why every one just hates dere dere;False;False;;;;1610295498;;False;{};giruf1u;False;t3_kue4am;False;True;t1_girubx0;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/giruf1u/;1610335317;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abyssbringer;;MAL;[];;https://myanimelist.net/profile/Abyssbringer3;dark;text;t2_cphmu;False;False;[];;"Bebop - -I think Bebop just has way more interesting ideas in each episode. It also has a more memorable cast with less annoying or overused elements. I got way more attached to pretty much everyone on the Bebop cast than I did with Champloo. I generally like the character designs much more in Bebop as well. Jin and Mugen are fun and enjoyable but that's pretty much the only thing that comes to mind when I try to recall anything about the shows story and characterization. Bebop on the other hand I can recall a lot of the main cast and their main issues while also getting reminded about Vicious and some of the more weird characters such as the Mad Pierrot. - -They both are great shows and a lot of fun but I think Bebop just has a lot more going for it and it tried to be innovative and interesting in ways that are really memorable. I haven't watched both shows in around 5 years so I remember very little but what stood the test of the time in my mind was Bebop by a mile.";False;False;;;;1610295506;;False;{};girufmv;False;t3_kuh3qg;False;True;t3_kuh3qg;/r/anime/comments/kuh3qg/which_is_better_samurai_champloo_or_cowboy_bebop/girufmv/;1610335329;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ooReiko;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ooReiko;light;text;t2_g6je10p;False;False;[];;Bebop is better imo Champloo felt kinda off at times for me.;False;False;;;;1610295511;;False;{};girufyc;False;t3_kuh3qg;False;True;t3_kuh3qg;/r/anime/comments/kuh3qg/which_is_better_samurai_champloo_or_cowboy_bebop/girufyc/;1610335335;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sujallamichhaneakasl;;;[];;;;text;t2_3i2s1kbj;False;False;[];;You talk shit about monogatari...I'll attribute that to you taste. You talk shit about fanservice.....we're going to have a problem.;False;False;;;;1610295526;;False;{};giruh0n;False;t3_kugso6;False;True;t1_girsklg;/r/anime/comments/kugso6/my_rant_about_a_certain_pretentious_anime_called/giruh0n/;1610335360;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Can you name your favourite dere dere plss with the anime name;False;False;;;;1610295533;;False;{};giruhgk;False;t3_kue4am;False;True;t1_girubx0;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/giruhgk/;1610335368;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Long_Run_Sunday;;;[];;;;text;t2_9024m187;False;False;[];;"This is tough. - -Gonna have to go with Cowboy Bebop on that one. - - -I didn't like how helpless and kind of manipulative they made Fuu. - - -And Ein is amazing. ;)";False;False;;;;1610295546;;False;{};giruicc;False;t3_kuh3qg;False;False;t3_kuh3qg;/r/anime/comments/kuh3qg/which_is_better_samurai_champloo_or_cowboy_bebop/giruicc/;1610335384;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;Banana Fish is excellent, it does have a BL theme going through it, but that shouldn't put you off from watching it.;False;False;;;;1610295552;;False;{};giruirw;False;t3_kuh96b;False;True;t3_kuh96b;/r/anime/comments/kuh96b/can_anyone_recommend_an_anime_thats_similar_in/giruirw/;1610335391;2;True;False;anime;t5_2qh22;;0;[]; -[];;;INTHEFIRSTAGE;;;[];;;;text;t2_54khqfv3;False;False;[];;Yeah, when Jin gets interested with that girl, it felt kinda forced.;False;False;;;;1610295586;;False;{};girul0g;True;t3_kuh3qg;False;True;t1_girufyc;/r/anime/comments/kuh3qg/which_is_better_samurai_champloo_or_cowboy_bebop/girul0g/;1610335436;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BakarinaLovesMaria;;;[];;;;text;t2_7aztnfnj;False;False;[];;I think that they mix her up with the hime/kimi dere.;False;False;;;;1610295598;;False;{};girulxc;True;t3_kue4am;False;True;t1_giruf1u;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/girulxc/;1610335452;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePreciseClimber;;;[];;;;text;t2_kjl4o;False;False;[];;">I think most people will agree with the second half of SAO 2nd season - -I've actually seen a lot of people saying that was the best part. Maybe you mean the 2nd half of Season 1?";False;False;;;;1610295603;;False;{};girum7k;False;t3_kugqte;False;False;t1_giru49b;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girum7k/;1610335456;6;True;False;anime;t5_2qh22;;0;[]; -[];;;MaiValentineHusband;;;[];;;;text;t2_9ktbpab3;False;False;[];;"Dragon Ball Super - -Squid Girl Season 2";False;False;;;;1610295613;;False;{};girumwy;False;t3_kugqte;False;True;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girumwy/;1610335469;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DecentlySizedPotato;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/ocha94;light;text;t2_5f0gxk9t;False;False;[];;"Well, some anime haven't even started and others have had just one episode, it's way too early to tell. - -Personally I'm not a huge fan of any of the anime with sequels (some I like but I'm not super enthusiastic about them), so this season is going to be up to the new anime for me.";False;False;;;;1610295628;;False;{};girunvv;False;t3_kubxb2;False;True;t3_kubxb2;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/girunvv/;1610335485;3;True;False;anime;t5_2qh22;;0;[];True -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610295649;moderator;False;{};girup93;False;t3_kuhcy4;False;True;t3_kuhcy4;/r/anime/comments/kuhcy4/is_the_dude_circled_in_yellow_voiced_by_the_same/girup93/;1610335507;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Can you please give me a dere dere anime;False;False;;;;1610295649;;False;{};girupb3;False;t3_kue4am;False;True;t1_girulxc;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/girupb3/;1610335508;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePreciseClimber;;;[];;;;text;t2_kjl4o;False;False;[];;Code Geass Season 2.;False;False;;;;1610295686;;False;{};girurrv;False;t3_kugqte;False;True;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girurrv/;1610335551;2;True;False;anime;t5_2qh22;;0;[]; -[];;;InsomniaEmperor;;;[];;;;text;t2_5x68hmc4;False;False;[];;Just end it at episode 9 cause they don't explain much else after that and the writing just nosedives.;False;False;;;;1610295690;;False;{};girus2t;False;t3_kugy8t;False;True;t3_kugy8t;/r/anime/comments/kugy8t/should_i_complete_kamisama_ni_natta_hi/girus2t/;1610335556;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BakarinaLovesMaria;;;[];;;;text;t2_7aztnfnj;False;False;[];;Mizuki from Baka and test. She is so sweet and I love her.;False;False;;;;1610295701;;False;{};girustl;True;t3_kue4am;False;True;t1_giruhgk;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/girustl/;1610335568;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BakarinaLovesMaria;;;[];;;;text;t2_7aztnfnj;False;False;[];;Mizuki from Baka and test. She is so sweet and I love her.;False;False;;;;1610295716;;False;{};girutt8;True;t3_kue4am;False;True;t1_girupb3;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/girutt8/;1610335584;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SA090;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/SA090/;light;text;t2_6oq2rdq4;False;False;[];;Easily, Shingeki no Bahamut: Virgin Soul. Awful awful sequel.;False;False;;;;1610295732;;False;{};giruuvw;False;t3_kugqte;False;True;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/giruuvw/;1610335602;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Ty I will check it out;False;False;;;;1610295739;;False;{};giruvaj;False;t3_kue4am;False;True;t1_girustl;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/giruvaj/;1610335610;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RykerMerrick;;;[];;;;text;t2_8rp34r0n;False;False;[];;Thanks! Ill look into it;False;False;;;;1610295744;;False;{};giruvnh;True;t3_kuh96b;False;True;t1_giruirw;/r/anime/comments/kuh96b/can_anyone_recommend_an_anime_thats_similar_in/giruvnh/;1610335615;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;"The 2 Dangaronpa 3 series are what it's closest to it for me given it's the same writer and chara designer behind. -But they are sequels to S1 anime and a game, so, it can be difficult to go into it.";False;False;;;;1610295803;;1610295984.0;{};giruzrj;False;t3_kuh96b;False;False;t3_kuh96b;/r/anime/comments/kuh96b/can_anyone_recommend_an_anime_thats_similar_in/giruzrj/;1610335684;2;True;False;anime;t5_2qh22;;0;[]; -[];;;soracte;;;[];;;;text;t2_6jyuy;False;True;[];;"The closest thing I can think of is [Cyber City Oedo 808](https://myanimelist.net/anime/1352/Cyber_City_Oedo_808) (right down to the criminals wearing bomb collars); don't let its age put you off, as it's solid entertainment. - -Other similar things in setting terms include (going in a more serious direction) [Ghost in the Shell](https://myanimelist.net/anime/43/Koukaku_Kidoutai) and (going in a less serious direction) [Bubblegum Crisis](https://myanimelist.net/anime/1347/Bubblegum_Crisis?q=bubblegum%20crisis&cat=anime). - -For raw vibrancy and stylish animation heft, you can't go wrong with [Redline](https://myanimelist.net/anime/6675/Redline?q=redline&cat=anime), which isn't exactly cyberpunk but certainly involves a lot of playing loose with the law.";False;False;;;;1610295814;;False;{};girv0h8;False;t3_kuh96b;False;True;t3_kuh96b;/r/anime/comments/kuh96b/can_anyone_recommend_an_anime_thats_similar_in/girv0h8/;1610335696;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;No, I've seen a ton of people saying the 2nd season is absolute trash. But I say the first half is decent.;False;False;;;;1610295820;;False;{};girv0xl;False;t3_kugqte;False;True;t1_girum7k;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girv0xl/;1610335703;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;Dragon ball super was such an awful follow up to the dragon ball series I mean it could of have been great but it wasted it time on redoing the plots films, a pointless tournament arc, a time travel story that didn’t make any sense and a final tournament arc that wasted most of the potential that series could have had.;False;False;;;;1610295822;;False;{};girv10i;True;t3_kugqte;False;True;t1_girumwy;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girv10i/;1610335704;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610295851;moderator;False;{};girv334;False;t3_kuhf5u;False;True;t3_kuhf5u;/r/anime/comments/kuhf5u/where_to_watch_aot_for_free_and_not_have_five/girv334/;1610335739;1;False;False;anime;t5_2qh22;;0;[]; -[];;;drasheed132;;;[];;;;text;t2_39t8myjk;False;False;[];;Ergo proxy is a classic. A bit old in terms of animation but the setting is exactly what you are looking for;False;False;;;;1610295867;;False;{};girv43l;False;t3_kuh96b;False;True;t3_kuh96b;/r/anime/comments/kuh96b/can_anyone_recommend_an_anime_thats_similar_in/girv43l/;1610335758;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;Cool someone who agrees that R2 was inferior to R1;False;False;;;;1610295873;;False;{};girv4hr;True;t3_kugqte;False;False;t1_girurrv;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girv4hr/;1610335765;3;True;False;anime;t5_2qh22;;0;[]; -[];;;furyofzion;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/furyofzion;light;text;t2_n5dwu;False;False;[];;"Log horizon s2, OPM s2. - -2 very big disappointments in my books.";False;False;;;;1610295881;;False;{};girv522;False;t3_kugqte;False;True;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girv522/;1610335775;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DecentlySizedPotato;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/ocha94;light;text;t2_5f0gxk9t;False;False;[];;Same, I thought the first season was pretty good, I managed to finish the second one, the third one I just dropped. The animation quality got worse, the pacing of the anime was all over the place, the story got stale...;False;False;;;;1610295911;;False;{};girv71v;False;t3_kugqte;False;False;t1_girsjsq;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girv71v/;1610335809;1;True;False;anime;t5_2qh22;;0;[];True -[];;;LunarGhost00;;;[];;;;text;t2_17rsmi;False;True;[];;"> second half of SAO 2nd season - -I thought most people loved Mother's Rosario. It was the best arc in the anime at the time. The arc before that was so boring though.";False;False;;;;1610295923;;False;{};girv7td;False;t3_kugqte;False;True;t1_giru49b;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girv7td/;1610335823;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RykerMerrick;;;[];;;;text;t2_8rp34r0n;False;False;[];;Thanks!;False;False;;;;1610295933;;False;{};girv8h5;True;t3_kuh96b;False;True;t1_giruzrj;/r/anime/comments/kuh96b/can_anyone_recommend_an_anime_thats_similar_in/girv8h5/;1610335835;0;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"First entirely skateboarding focused? Yes. - -First anime with skateboarding as a main element? No. - -A few anime have skateboarding but just not as the core focus of the story. - -[](#whowouldathunkit)";False;False;;;;1610295934;;False;{};girv8j9;False;t3_kuh2gz;False;False;t3_kuh2gz;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/girv8j9/;1610335836;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Lankpants;;;[];;;;text;t2_ws3e6;False;False;[];;"The season is very shounen heavy, and a lot of the shows that aren't explicitly shounen also pull heavily from shounen. - -If you look at the big anime of this season you have the explicitly shounen AoT, Dr. Stone, Beastars, Slime, TPN, Jaku-Chara, World Trigger, Quints, Log Horizon and Cells at Work. Then there's also Re:Zero, Urasekai and Spider, which although not explicitly shounen certainly don't shy away from a lot of the troupes of shounen. - -That leaves you with, in the definitely not shounen camp Non Non Byori, Yuru Camp and depending on whether it's actually worth watching Wonder Egg. That's a pretty short list and notably two anime on it are CGDCT anime, not everyone's cup of tea. - -This season's really missing a lot of those more abnormal anime from other genres like Ikebukuro West Gate Park, Majo no Tabitabi or Kamisama ni Natta hi which don't fit onto the whole shounen/seinen action/cute girls/sports that can define 95% of anime we see nowadays.";False;False;;;;1610295935;;False;{};girv8lq;False;t3_kubxb2;False;True;t1_girj2bx;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/girv8lq/;1610335837;0;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"cool - -&#x200B; - -and anyway, the story still stands as great, hence the light novels being amongst some of the most popular ones ever written. - -&#x200B; - -And no, Senjogahara isn't a tsundere, she's just flat-out tsun until [Spoiler](/s ""she sorts it out with Kaiki, where her whole character shifts"") in Nisemonogatari. - -And the mc isn't just a lolicon, he's attracted to literally every girl around him, regardless of age. He's also not OP in any way, he's been saved countless times, and he's nothing more than a punching bag until he thinks of some other way of solving the problem.";False;False;;;;1610295947;;False;{};girv9fy;False;t3_kugso6;False;True;t3_kugso6;/r/anime/comments/kugso6/my_rant_about_a_certain_pretentious_anime_called/girv9fy/;1610335852;9;True;False;anime;t5_2qh22;;0;[]; -[];;;MotivatedAtLast;;;[];;;;text;t2_8u3z7bpv;False;False;[];;Theres a few manga but yeah in terms of anime Sk8 is it;False;False;;;;1610295958;;False;{};girva5a;False;t3_kuh2gz;False;False;t3_kuh2gz;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/girva5a/;1610335864;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;Yep it’s the first one. Took them long enough tho lol;False;False;;;;1610295961;;False;{};girvaez;False;t3_kuh2gz;False;False;t3_kuh2gz;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/girvaez/;1610335868;31;True;False;anime;t5_2qh22;;0;[]; -[];;;RykerMerrick;;;[];;;;text;t2_8rp34r0n;False;False;[];;I’ve heard of Cyber City and heard its great! Definitely gonna look into the other two as well;False;False;;;;1610295998;;False;{};girvcr2;True;t3_kuh96b;False;True;t1_girv0h8;/r/anime/comments/kuh96b/can_anyone_recommend_an_anime_thats_similar_in/girvcr2/;1610335909;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DecentlySizedPotato;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/ocha94;light;text;t2_5f0gxk9t;False;False;[];;Yay, gimme more idol anime.;False;False;;;;1610296000;;False;{};girvcw3;False;t3_kufuju;False;False;t3_kufuju;/r/anime/comments/kufuju/idoly_pride_new_visual/girvcw3/;1610335911;5;True;False;anime;t5_2qh22;;0;[];True -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"If you watched it on tv youde have to put up with 7 mins of ads. - -[](#whowouldathunkit)";False;False;;;;1610296003;;False;{};girvd4c;False;t3_kuhf5u;False;True;t3_kuhf5u;/r/anime/comments/kuhf5u/where_to_watch_aot_for_free_and_not_have_five/girvd4c/;1610335915;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal_Ebb_238;;;[];;;;text;t2_8nmkui77;False;False;[];;You like space western or hip-hop samurai? I like samurai more so, samurai champloo.;False;False;;;;1610296020;;False;{};girveau;False;t3_kuh3qg;False;True;t3_kuh3qg;/r/anime/comments/kuh3qg/which_is_better_samurai_champloo_or_cowboy_bebop/girveau/;1610335935;2;True;False;anime;t5_2qh22;;0;[]; -[];;;soracte;;;[];;;;text;t2_6jyuy;False;True;[];;Great--I hope you enjoy them!;False;False;;;;1610296030;;False;{};girvf05;False;t3_kuh96b;False;True;t1_girvcr2;/r/anime/comments/kuh96b/can_anyone_recommend_an_anime_thats_similar_in/girvf05/;1610335948;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Eggman9797;;;[];;;;text;t2_55yn87zs;False;False;[];;Yeah that’s what I’m trying to avoid lol;False;False;;;;1610296037;;False;{};girvfi8;True;t3_kuhf5u;False;True;t1_girvd4c;/r/anime/comments/kuhf5u/where_to_watch_aot_for_free_and_not_have_five/girvfi8/;1610335956;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;KojimboPro;;;[];;;;text;t2_omnfz;False;False;[];;Try Bubblegum Crisis or AD Police (specifically the OVAs for each) or Akira if you haven't already. There's so many cyberpunk OVAs or films from the late 80s/early 90s that Akudama felt like a modern throwback to.;False;False;;;;1610296084;;False;{};girvikj;False;t3_kuh96b;False;True;t3_kuh96b;/r/anime/comments/kuh96b/can_anyone_recommend_an_anime_thats_similar_in/girvikj/;1610336009;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Snoo334;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/bladeof_crimson7;light;text;t2_6yuepoxj;False;False;[];;"Dragon ball super -OPM season 2 -Nanatsu no taizai s3 -And alot more i cant remember";False;False;;;;1610296179;;False;{};girvowy;False;t3_kugqte;False;True;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girvowy/;1610336116;0;True;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;I don't know anymore, the entire saga has a lot of love and hate. Mother's Rosario in only a small part of it tho. To be more specific the part I thought was decent was the GGO arc. I think at least it's the best use of the game, since its side story is just meh. The ALO parts feel like a bland SAO, but at least in the first season has a purpose;False;False;;;;1610296194;;False;{};girvpvx;False;t3_kugqte;False;True;t1_girv7td;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girvpvx/;1610336133;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;RykerMerrick;;;[];;;;text;t2_8rp34r0n;False;False;[];;My problem is that I have a pet peeve for old anime art style (I know, sacrilegious) but I just really don’t like it. Guess it’s because I am a sucker for the extreme sharpness and near realism in modern day anime;False;False;;;;1610296229;;False;{};girvsaw;True;t3_kuh96b;False;True;t1_girvikj;/r/anime/comments/kuh96b/can_anyone_recommend_an_anime_thats_similar_in/girvsaw/;1610336173;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lankpants;;;[];;;;text;t2_ws3e6;False;False;[];;"Feels strong on sequels, but the new anime so far has been a little lacking from what I've seen. It's kinda implicit in your list where the only new show to even get a mention was Horimiya. - -To me the only three noteworthy new shows so far this season have been Horimiya, Urasekai Picnic and Back Arrow, but none of them had the sort of ""knock you off your feet"" first ep, so in the grand scheme of things they're not really that strong yet. Plenty of disappointing anime mixed in there with them too like Jaku-Chara Tomozaki-kun, which I expected to enjoy but just kinda hated. - -For me, this isn't one of the best anime seasons, because I value having some form of new anime worth watching and not just sequels. Compared to last season where there were multiple new anime with first eps better than Back Arrow (which is currently what I feel to be the best first ep of this season), this season's new anime are very weak. It's not even like last season had particularly strong new anime either. - -It really is a season of sequels, and that's not entirely a good thing. When I look back at what I consider to be particularly strong seasons like Spring 2015, Winter 2018 or Fall 2018 this season just isn't stacking up. I can understand why people like it but it's just not landing like that for me.";False;False;;;;1610296233;;False;{};girvski;False;t3_kubxb2;False;True;t3_kubxb2;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/girvski/;1610336177;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610296260;;False;{};girvucl;False;t3_kuh61n;False;True;t3_kuh61n;/r/anime/comments/kuh61n/how_good_is_sorcerous_stabber_orphen_series/girvucl/;1610336208;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sheepishhorse;;;[];;;;text;t2_92exy68e;False;False;[];;I don't really see posts like these as useful to a discussion for any series or topic whatsoever. Isn't this just a waste of everyone's time?;False;False;;;;1610296299;;False;{};girvwzj;False;t3_kugso6;False;False;t3_kugso6;/r/anime/comments/kugso6/my_rant_about_a_certain_pretentious_anime_called/girvwzj/;1610336253;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Plato_Karamazov;;;[];;;;text;t2_6037n;False;False;[];;Bebop is way better;False;False;;;;1610296327;;False;{};girvyu7;False;t3_kuh3qg;False;True;t3_kuh3qg;/r/anime/comments/kuh3qg/which_is_better_samurai_champloo_or_cowboy_bebop/girvyu7/;1610336286;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610296329;moderator;False;{};girvz1p;False;t3_kuhl39;False;True;t3_kuhl39;/r/anime/comments/kuhl39/will_i_enjoy_gintama/girvz1p/;1610336289;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Lol, man you guys never failed to amuse me, 20 years watching anime, movies tv series and playing games, there's always that guy ""actually everything is the same"" - -Yuru camp was just top 5 here in the first week and horimiya will be top 3 next week. You have to ignore those two they are too popular";False;False;;;;1610296341;;False;{};girvzv9;False;t3_kubxb2;False;False;t1_girv8lq;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/girvzv9/;1610336302;5;True;False;anime;t5_2qh22;;0;[]; -[];;;sheepishhorse;;;[];;;;text;t2_92exy68e;False;False;[];;No contest honestly. Bebop.;False;False;;;;1610296379;;False;{};girw2er;False;t3_kuh3qg;False;False;t3_kuh3qg;/r/anime/comments/kuh3qg/which_is_better_samurai_champloo_or_cowboy_bebop/girw2er/;1610336349;0;True;False;anime;t5_2qh22;;0;[]; -[];;;gsenjou;;;[];;;;text;t2_5ns6dyc;False;False;[];;[Kabaneri of the Iron Fortress](https://myanimelist.net/anime/28623/Koutetsujou_no_Kabaneri): Great action and animation. Not exactly steampunk, but very much influenced by the genre with heavy usage of industrial machinery.;False;False;;;;1610296487;;False;{};girw9mo;False;t3_kuh96b;False;True;t3_kuh96b;/r/anime/comments/kuh96b/can_anyone_recommend_an_anime_thats_similar_in/girw9mo/;1610336474;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Din-five;;;[];;;;text;t2_3kvmq7mr;False;False;[];;What's there to compare with Demon Slayer?;False;False;;;;1610296508;;False;{};girwb5k;True;t3_kuh61n;False;True;t1_girvucl;/r/anime/comments/kuh61n/how_good_is_sorcerous_stabber_orphen_series/girwb5k/;1610336502;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Massaman95;;;[];;;;text;t2_zxb3m;False;False;[];;I very much doubt that's the reason that people don't know about it...;False;False;;;;1610296525;;False;{};girwc9q;False;t3_kugzsg;False;False;t1_girtbf9;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/girwc9q/;1610336522;53;True;False;anime;t5_2qh22;;0;[]; -[];;;Din-five;;;[];;;;text;t2_3kvmq7mr;False;False;[];;So it's just meh;False;False;;;;1610296534;;False;{};girwcx3;True;t3_kuh61n;False;True;t1_giruegm;/r/anime/comments/kuh61n/how_good_is_sorcerous_stabber_orphen_series/girwcx3/;1610336535;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Waywoah;;;[];;;;text;t2_8uyvr;False;False;[];;What's happening to the right one's wrist?!;False;False;;;;1610296562;;False;{};girwet4;False;t3_kufuju;False;False;t3_kufuju;/r/anime/comments/kufuju/idoly_pride_new_visual/girwet4/;1610336570;35;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;Maybe? Give it a shot, and if you like it, cool. If you don't, also cool.;False;False;;;;1610296582;;False;{};girwg6i;False;t3_kuhl39;False;True;t3_kuhl39;/r/anime/comments/kuhl39/will_i_enjoy_gintama/girwg6i/;1610336594;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KojimboPro;;;[];;;;text;t2_omnfz;False;False;[];;"Well if you are looking for near realism and sharpness in anime the OVAs from that era are the best you're going to get in the medium. I'd encourage looking into them first before brushing them off or believing that there's any kind of unified ""old anime art style"". Saying Bubblegum Crisis or Akira even look of the same style is kinda silly.";False;False;;;;1610296691;;False;{};girwnik;False;t3_kuh96b;False;False;t1_girvsaw;/r/anime/comments/kuh96b/can_anyone_recommend_an_anime_thats_similar_in/girwnik/;1610336719;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Lankpants;;;[];;;;text;t2_ws3e6;False;False;[];;"I mentioned both of those shows (edit, looks like I didn't mention Horimiya, whoops, my bad, I meant to in the first category). Horimiya is in fact, a shounen romance. It's not the same as the other shounen listed, but if you're off put by shounen troupes there's a fair chance that you'd actually dislike Horimiya. - -Yuru Camp is popular, yes. It's also still something that a lot of people just don't get. It's not uncommon for people to dislike shounen or CGDCTs and certainly not unimaginable for them to dislike both. If you do dislike both there is really not a ton left over this season, where as in other seasons there's generally at least something. - -To be clear, I actually like both of these shows. I'm trying to come at this from a neutral perspective though. And when I just look down the list this season is very, very heavy on shounen and action seinen (a genre often very similar to shounen).";False;False;;;;1610296732;;1610297616.0;{};girwqdu;False;t3_kubxb2;False;True;t1_girvzv9;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/girwqdu/;1610336771;1;True;False;anime;t5_2qh22;;0;[]; -[];;;asscrackrash;;;[];;;;text;t2_9jhv8y1m;False;False;[];;"especially in cases where we're talking about an adaptation. - -[kazuhiro furuhashi](https://anilist.co/staff/100655/) is an *amazing* director and rurouni kenshin is one of, if not his strongest work. shitting on it because of something the author of the source material has done makes no sense whatsoever.";False;False;;;;1610296765;;False;{};girwspn;False;t3_kugzsg;False;False;t1_girtmml;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/girwspn/;1610336811;65;True;False;anime;t5_2qh22;;0;[]; -[];;;sadscaf;;;[];;;;text;t2_6q7vnpp8;False;False;[];;Highschool dxd;False;False;;;;1610296766;;False;{};girwsrx;False;t3_kugqte;False;True;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girwsrx/;1610336812;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610296781;moderator;False;{};girwttq;False;t3_kuhq4q;False;True;t3_kuhq4q;/r/anime/comments/kuhq4q/looking_for_psychotic_op_mc/girwttq/;1610336828;0;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi RealLongJohnSilver, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610296803;moderator;False;{};girwvam;False;t3_kuhqdr;False;False;t3_kuhqdr;/r/anime/comments/kuhqdr/looking_for_an_anime_where_two_people_share_a/girwvam/;1610336854;2;False;False;anime;t5_2qh22;;0;[]; -[];;;sheepishhorse;;;[];;;;text;t2_92exy68e;False;False;[];;"I really loved Faye's backstory in Bebop, particularly because it had multiple episodes dedicated to it. -I think Samurai Champloo in total had less character backstory/development than the episodes dedicated just to her. - -That's not a jibe towards SC, it's a decent/good show after all, but I think that was what was missing a little, plus as someone else said it felt off at times. Though that could have contributed to it.";False;False;;;;1610296804;;False;{};girwvbz;False;t3_kuh3qg;False;True;t1_girufmv;/r/anime/comments/kuh3qg/which_is_better_samurai_champloo_or_cowboy_bebop/girwvbz/;1610336855;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"It's definitely one of the best; - -Not only in quantity (I currently keep 17 shows, and I'm likely gonna pick up a few more), but also in quality (A couple of these shows will probably be 10/10, and I almost never have more than one 10/10 in the same season). - -I will say this though: So far, the new shows aren't living up to their hype. Some of them are decent yes, but not as impressive as I thought they would be based on their reputation. Still, we're just 1-2 episodes in, so they have time to improve, of course.";False;False;;;;1610296806;;False;{};girwvi9;False;t3_kubxb2;False;True;t3_kubxb2;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/girwvi9/;1610336858;3;True;False;anime;t5_2qh22;;0;[]; -[];;;critians5;;;[];;;;text;t2_218lkj09;False;False;[];;you watched 27 episodes, what are your thoughts so far;False;False;;;;1610296837;;False;{};girwxp7;False;t3_kuhoss;False;True;t3_kuhoss;/r/anime/comments/kuhoss/naruto_or_one_piece/girwxp7/;1610336895;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RealLongJohnSilver;;;[];;;;text;t2_2ejrryfx;False;False;[];;😘;False;False;;;;1610296842;;False;{};girwy0i;True;t3_kuhqdr;False;True;t1_girwvam;/r/anime/comments/kuhqdr/looking_for_an_anime_where_two_people_share_a/girwy0i/;1610336901;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GMorelli;;;[];;;;text;t2_13n5gj;False;False;[];;Im not you, so how would I know what you will enjoy or not;False;False;;;;1610296846;;False;{};girwyby;False;t3_kuhl39;False;False;t3_kuhl39;/r/anime/comments/kuhl39/will_i_enjoy_gintama/girwyby/;1610336907;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal_Ebb_238;;;[];;;;text;t2_8nmkui77;False;False;[];;If it were to have season 3 I really hope the mc is Favaro again, despite Nina being the mc in season 2, she have so little relevance to the overall story aside from the plot of forced romance with that aweful king. Azazel/Kaisar/Mugaro drive the plot more than Nina does, same with Favaro despite only appear later in the season. Really I see little to no reason for them to change the mc in season 2.;False;False;;;;1610296855;;False;{};girwyx8;False;t3_kugqte;False;True;t1_girtqiy;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girwyx8/;1610336916;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chika2chi;;;[];;;;text;t2_4dkz2y8e;False;False;[];;"I wouldn't say it's ""really funny"". the comedy can be very silly and meta sometimes I'd say the humor is a hit and miss. beside the comedy I think it has a lot of heart that you will see in some serious arcs. -it starts slow and takes a while to pick up (around episode 50 for me) but once it does it can be a lot of fun.";False;False;;;;1610296861;;False;{};girwzdf;False;t3_kuhl39;False;True;t3_kuhl39;/r/anime/comments/kuhl39/will_i_enjoy_gintama/girwzdf/;1610336924;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeTalks101;;;[];;;;text;t2_36v6e5ak;False;False;[];;Yeah, about time lol;False;False;;;;1610296867;;False;{};girwzsa;True;t3_kuh2gz;False;True;t1_girvaez;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/girwzsa/;1610336933;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"Maybe watch some Gintama comedy scene compilations on YouTube and see if you like them or not. - -Comedy is subjective and asking r/anime won’t really help you";False;False;;;;1610296916;;False;{};girx34e;False;t3_kuhl39;False;True;t3_kuhl39;/r/anime/comments/kuhl39/will_i_enjoy_gintama/girx34e/;1610336990;3;True;False;anime;t5_2qh22;;0;[]; -[];;;justanonquestions;;;[];;;;text;t2_837s6xp1;False;False;[];;"I really like it, well I can’t wait to find out more on the characters backstories. I already went in knowing Zoro was gonna be my favorite LMAOO. But it takes a long time to pick up whilst Naruto had a really exciting -prologue.";False;False;;;;1610296936;;False;{};girx4j7;True;t3_kuhoss;False;True;t1_girwxp7;/r/anime/comments/kuhoss/naruto_or_one_piece/girx4j7/;1610337014;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rattpack18;;;[];;;;text;t2_2uahjdtr;False;False;[];;Prefer one piece story over naruto story.;False;False;;;;1610296961;;False;{};girx67e;False;t3_kuhoss;False;False;t3_kuhoss;/r/anime/comments/kuhoss/naruto_or_one_piece/girx67e/;1610337044;11;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeTalks101;;;[];;;;text;t2_36v6e5ak;False;False;[];;That's cool. Do you know the name of any of them?;False;False;;;;1610296998;;False;{};girx8sr;True;t3_kuh2gz;False;False;t1_girv8j9;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/girx8sr/;1610337087;5;True;False;anime;t5_2qh22;;0;[]; -[];;;EdgyTwig;;;[];;;;text;t2_hdnph5e;False;False;[];;Wait there’s an anime about skating? Where can I watch it? Lol;False;False;;;;1610297026;;False;{};girxas1;False;t3_kuh2gz;False;False;t3_kuh2gz;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/girxas1/;1610337121;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"Honestly there isnt much others like that really. Birdy was kinda the only one ive seen. - -We have some body swap anime but not really ones where 2 characters share 1 body. I can onlyy think of 1 other example but its boy/boy. - -[](#juice1)";False;False;;;;1610297064;;False;{};girxdf5;False;t3_kuhqdr;False;True;t3_kuhqdr;/r/anime/comments/kuhqdr/looking_for_an_anime_where_two_people_share_a/girxdf5/;1610337167;2;True;False;anime;t5_2qh22;;0;[]; -[];;;justanonquestions;;;[];;;;text;t2_837s6xp1;False;False;[];;why’s that?;False;False;;;;1610297085;;False;{};girxews;True;t3_kuhoss;False;False;t1_girx67e;/r/anime/comments/kuhoss/naruto_or_one_piece/girxews/;1610337191;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeTalks101;;;[];;;;text;t2_36v6e5ak;False;False;[];;I see, that's cool, we might get more in the future then.;False;False;;;;1610297117;;False;{};girxh48;True;t3_kuh2gz;False;False;t1_girva5a;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/girxh48/;1610337229;2;True;False;anime;t5_2qh22;;0;[]; -[];;;critians5;;;[];;;;text;t2_218lkj09;False;False;[];;one piece is an adventure anime first and foremost with mad world building, it seems that ur interested in other stuff than the fight scenes too which is good cuz one piece out of all the classic shonen has probably the worst fighting, but the story in my opinion is way above the other ones;False;False;;;;1610297134;;False;{};girxibn;False;t3_kuhoss;False;True;t1_girx4j7;/r/anime/comments/kuhoss/naruto_or_one_piece/girxibn/;1610337248;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;I love both series but One Piece was more entertaining for me. I don’t think you’ll be disappointed but if you didn’t enjoy the episodes you watched so far it’s cool to drop it.;False;False;;;;1610297159;;False;{};girxk3u;False;t3_kuhoss;False;True;t3_kuhoss;/r/anime/comments/kuhoss/naruto_or_one_piece/girxk3u/;1610337279;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chika2chi;;;[];;;;text;t2_4dkz2y8e;False;False;[];;they're both great. each have its strengths and weaknesses. I'd say one piece is at least initially is more cartoonish whereas Naruto has a darker and more serious tone which I preferred. while both have problem with pacing large scale conflicts I think One Piece is overall more consistent.;False;False;;;;1610297159;;False;{};girxk46;False;t3_kuhoss;False;True;t3_kuhoss;/r/anime/comments/kuhoss/naruto_or_one_piece/girxk46/;1610337279;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RealLongJohnSilver;;;[];;;;text;t2_2ejrryfx;False;False;[];;Would love to here your suggestion anyway ! This national lockdown has given me far too much spare time on my hands.;False;False;;;;1610297188;;False;{};girxm62;True;t3_kuhqdr;False;True;t1_girxdf5;/r/anime/comments/kuhqdr/looking_for_an_anime_where_two_people_share_a/girxm62/;1610337314;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;You could check out the chapters on a piracy site and decide if it is worth your support, it is fully canon and thus any revenue would make another season more likely;False;False;;;;1610297215;;False;{};girxo2i;False;t3_kucuy5;False;True;t3_kucuy5;/r/anime/comments/kucuy5/idinvaded_the_manga_sequel_worth_a_buy/girxo2i/;1610337347;1;True;False;anime;t5_2qh22;;0;[]; -[];;;justanonquestions;;;[];;;;text;t2_837s6xp1;False;False;[];;hahah I actually rlly like the fighting scenes my fav anime will always be DBZ lmaooo but I do like emotional aspects as well. I noticed one piece doesn’t have the best fights which is kind of annoying but i’ll continue anyway;False;False;;;;1610297224;;False;{};girxonr;True;t3_kuhoss;False;True;t1_girxibn;/r/anime/comments/kuhoss/naruto_or_one_piece/girxonr/;1610337356;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeTalks101;;;[];;;;text;t2_36v6e5ak;False;False;[];;"Lol, you can watch it on Funimation. It's called ""Sk8 The Infinity"" as I wrote in the main post.";False;False;;;;1610297257;;False;{};girxqwc;True;t3_kuh2gz;False;False;t1_girxas1;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/girxqwc/;1610337395;7;True;False;anime;t5_2qh22;;0;[]; -[];;;babydave371;;MAL a-amq;[];;https://myanimelist.net/profile/babydave371;dark;text;t2_sak6n;False;False;[];;That is all well and good but it doesn't mean that he hasn't stopped making bank on Kenshin in all of its iterations. Kind of hard to appreciate it when watching/reading it earns him money and talking about it leads others to read/watch it, again earning him money. I don't know about you but I'm not the biggest fan of giving an unrepentant paedophile money.;False;False;;;;1610297263;;False;{};girxr9q;False;t3_kugzsg;False;True;t1_girtmml;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/girxr9q/;1610337402;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;rattpack18;;;[];;;;text;t2_2uahjdtr;False;False;[];;"Idk it just feels better with less plot holes. The story keeps moving regardless of what’s happening. This is going to sound weird but it doesn’t feel like the story is centered around the mc. Like it is but so much time is also spend on events happening throughout the one piece world. - -Not saying I don’t like naruto. It was cool. I just prefer one piece.";False;False;;;;1610297274;;False;{};girxs1i;False;t3_kuhoss;False;False;t1_girxews;/r/anime/comments/kuhoss/naruto_or_one_piece/girxs1i/;1610337415;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok-Mud2423;;;[];;;;text;t2_71ibihvi;False;False;[];;I know that bebop is better but I enjoy Champloo more cause I just do not get along well with the episodic storytelling cause it just reduces the power of the main plot ( for me) so now it's your choice.;False;False;;;;1610297274;;False;{};girxs3b;False;t3_kuh3qg;False;False;t3_kuh3qg;/r/anime/comments/kuh3qg/which_is_better_samurai_champloo_or_cowboy_bebop/girxs3b/;1610337416;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;"I know it's not an anime, and you may not read manga, but just read the first chapter of Berserk. I feel like you'll really enjoy that. - -Deadman Wonderland is an anime that may fit";False;False;;;;1610297294;;False;{};girxtga;False;t3_kuhq4q;False;True;t3_kuhq4q;/r/anime/comments/kuhq4q/looking_for_psychotic_op_mc/girxtga/;1610337440;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal_Ebb_238;;;[];;;;text;t2_8nmkui77;False;False;[];;Dorohedoro;False;False;;;;1610297315;;False;{};girxusq;False;t3_kuhq4q;False;True;t3_kuhq4q;/r/anime/comments/kuhq4q/looking_for_psychotic_op_mc/girxusq/;1610337462;3;True;False;anime;t5_2qh22;;0;[]; -[];;;critians5;;;[];;;;text;t2_218lkj09;False;False;[];;"it does seem like they've dramatically up'd the fighting scenes quality in the latest arcs, you just gotta get there ;) 800 episodes xD";False;False;;;;1610297324;;False;{};girxvgz;False;t3_kuhoss;False;True;t1_girxonr;/r/anime/comments/kuhoss/naruto_or_one_piece/girxvgz/;1610337474;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610297369;;1610316664.0;{};girxylp;False;t3_kucuy5;False;True;t1_girxo2i;/r/anime/comments/kucuy5/idinvaded_the_manga_sequel_worth_a_buy/girxylp/;1610337529;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dastrykerblade;;;[];;;;text;t2_if3ui;False;False;[];;"For some perspective my favorite anime has always been Naruto bc it was what hooked me on anime. I don’t think it’s the best anime but it’s my favorite due to nostalgia for the most part. - -Taking away my bias, Naruto has a better beginning but as a whole it’s not even close. One Piece is a far superior story to Naruto in almost every way. The twists and build up actually makes sense in One Piece and there are so many amazing characters. Luffy is also a better protagonist than Naruto IMO. - -That being said, I really encourage you to read the manga instead of watching the anime bc the anime drags out a lot of the stuff in the manga the further you get in. The manga is paced perfectly and is the best way to consume One Piece. Just watch the epic moments and stuff and read the rest. You can also watch One Pace, which is One Piece except only the manga canon and it’s so much better so if you have to watch, watch that, otherwise read the manga.";False;False;;;;1610297381;;False;{};girxzfy;False;t3_kuhoss;False;True;t3_kuhoss;/r/anime/comments/kuhoss/naruto_or_one_piece/girxzfy/;1610337550;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Equivalent_Bear_3082;;;[];;;;text;t2_948d7iwa;False;False;[];;"I love one piece because of these reasons: - --the technology isn't all over the place(unlike naruto), they stick with the rules they've layed out, the world building is imense, the powers don't feel like bullcrap, the numerous fighting styles are amazing, because of the devil fruits the author can have even more fun with his amazing drawings, not having to stick to basicly real life. - --the villans of this show aren't evil for the sake of evil. They've got a past, a background of torture that you can emphatise(?) With them, while still wanting to kill them for what they've done. - --each race of people have their diffrent past with the country they live in, have their own stereotypes have their own powers - --the maim characters are all really good, there isn't a ""sasuke"" of the group - --the goverment really feels like one - -I could add way more but it would lead into massive spoilers. I'd give the manga a 9/10, because of this thing that I really don't like. The pannel layout is like, really bad because he has to crunch every single material and i'd give the anime a 9/10 because of the pacing they do";False;False;;;;1610297385;;False;{};girxzqy;False;t3_kuhoss;False;True;t3_kuhoss;/r/anime/comments/kuhoss/naruto_or_one_piece/girxzqy/;1610337555;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;"I love One Piece and just couldn't get into Naruto. I also read the One Piece manga so my experience is slightly different. I tried the Naruto anime and manga and it just didn't hit for me. - -One Piece has great characters, world-building, powers, sagas, and more";False;False;;;;1610297392;;False;{};giry09f;False;t3_kuhoss;False;True;t3_kuhoss;/r/anime/comments/kuhoss/naruto_or_one_piece/giry09f/;1610337563;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"The K series has a character who always travels by skateboard and fights with a skateboard. Its a action drama series. - -Ill paste a post i usually use to talk about K and it has the trailers and a fight vid clip you can watch to see what i mean and if its up your alley. - -Watch the Missing King's PV and the Return of King's PV to see the skateboarding. - ----------- - -[**The K Series has some amazing action scenes.**](https://www.youtube.com/watch?v=r8I95WL9H08) - -If you dont know what K is, its a Action Supernatural Mystery Drama about 7 Kings who are chosen and given power and about how each chooses to rule thier clan and territory and the butting heads between the clans and kings. - -[**K PROJECT**](https://myanimelist.net/anime/14467/K) - [PV](https://www.youtube.com/watch?v=6g08heaNsbI) -[**K MISSING KINGS**](https://myanimelist.net/anime/16904/K__Missing_Kings) - [PV](https://www.youtube.com/watch?v=ErNI908qRgw) -[**K RETURN OF KINGS**](https://myanimelist.net/anime/27991/K__Return_of_Kings) - [PV](https://www.youtube.com/watch?v=v_J4Kf2SxE0) -[**K SEVEN STORIES**](https://myanimelist.net/anime/33248/K__Seven_Stories_Movie_1_-_R_B_-_Blaze) - [PV](https://www.youtube.com/watch?v=Ocn6OkCGRQI) - -Its very gorgeous series and i highly recommend anyone to check it out. Look at the PVs to get a feel for what kinda show it is. But as i said, its a gorgeous visual experience. The show also has gorgeous soundtrack too. - -[Tsumetai heya Hitori](https://www.youtube.com/watch?v=U84FL2Y2HHI) - [Flame of Red](https://soundcloud.com/cristalgt28/flame-of-red-kushina-anna) - [KIZUNA](https://youtu.be/l-w8A-vTB2s) - [Lost Small World](https://youtu.be/jIzxUIsDs78) - -[](#meguminthumbsup)";False;False;;;;1610297417;;False;{};giry214;False;t3_kuh2gz;False;False;t1_girx8sr;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/giry214/;1610337594;15;True;False;anime;t5_2qh22;;0;[]; -[];;;aqrt21;;;[];;;;text;t2_4laedvos;False;False;[];;Yandere;False;False;;;;1610297429;;False;{};giry2y2;False;t3_kue4am;False;True;t3_kue4am;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/giry2y2/;1610337611;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahou_Shoujo_Ramune;;;[];;;;text;t2_4vs4l2r6;False;False;[];;"Youjo Senki - -Code Geass - -Death Note";False;False;;;;1610297436;;False;{};giry3ei;False;t3_kuhq4q;False;False;t3_kuhq4q;/r/anime/comments/kuhq4q/looking_for_psychotic_op_mc/giry3ei/;1610337619;4;True;False;anime;t5_2qh22;;0;[]; -[];;;lacking-name;;;[];;;;text;t2_hyec8wa;False;False;[];;"Samurai Champloo - -- Better music (RIP nujabes) - -- Mugen > Spike - -- Mugen Jin and Fuu were all working towards a primary goal (sunflower samurai) throughout the entire show while traveling broke and hungry, whereas in Bebop most episodes felt as if they were just wandering broke and hungry. - -- Spikes backstory is only given a few episodes spaced out from one another. Mugens backstory was given a consecutive story arc in the middle of the series. - -- The ending of Champloo felt complete, whereas in Bebop I felt like I wanted more of Spikes story. - - -Don't get me wrong, I love Bebop. But between the two, Champloo is my preferred.";False;False;;;;1610297496;;False;{};giry7kz;False;t3_kuh3qg;False;False;t3_kuh3qg;/r/anime/comments/kuh3qg/which_is_better_samurai_champloo_or_cowboy_bebop/giry7kz/;1610337693;8;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;Extreme sports aren't a big thing these days... you could say it's noticeable as SSX, Tony Hawks and Dave Mirra games are few these days so it's the interest isn't being catered for or no one is really diving in.;False;False;;;;1610297496;;False;{};giry7lc;False;t3_kuh2gz;False;False;t1_girvaez;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/giry7lc/;1610337693;15;True;False;anime;t5_2qh22;;0;[]; -[];;;curlsonmars;;;[];;;;text;t2_55w2wr8u;False;False;[];;Why would you do this to me this early;False;False;;;;1610297537;;False;{};giryahu;False;t3_kuhvea;False;True;t3_kuhvea;/r/anime/comments/kuhvea/hope_youre_having_a_good_day_so_far/giryahu/;1610337742;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;well the reception on r/manga was small but warm;False;False;;;;1610297542;;False;{};giryatz;False;t3_kucuy5;False;False;t1_girxylp;/r/anime/comments/kucuy5/idinvaded_the_manga_sequel_worth_a_buy/giryatz/;1610337747;1;True;False;anime;t5_2qh22;;0;[]; -[];;;swmii53;;;[];;;;text;t2_16bkbw;False;False;[];;There is Sui and Souta (sister and brother) in Darwin's game, but they are relatively minor and only appear in the last few episodes.;False;False;;;;1610297552;;False;{};girybh4;False;t3_kuhqdr;False;True;t3_kuhqdr;/r/anime/comments/kuhqdr/looking_for_an_anime_where_two_people_share_a/girybh4/;1610337758;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;"It'd be nice to see more based on extreme sports but then not getting any massive amount like the flood of isekai that takes the fun out of it. - -&#x200B; - -Skateboarding is very quiet not really since the 00's era kinda quietly went away.";False;False;;;;1610297558;;False;{};girybz4;False;t3_kuh2gz;False;True;t1_girxh48;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/girybz4/;1610337767;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;Black Clover has this but its a pretty late game story element so youde have to watch around 100 eps to get to it.;False;False;;;;1610297566;;False;{};girychn;False;t3_kuhqdr;False;True;t1_girxm62;/r/anime/comments/kuhqdr/looking_for_an_anime_where_two_people_share_a/girychn/;1610337777;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sohamk24;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/Soham24/;light;text;t2_2ovo1yry;False;False;[];;Just no.;False;False;;;;1610297568;;False;{};giryco4;False;t3_kuhvea;False;True;t3_kuhvea;/r/anime/comments/kuhvea/hope_youre_having_a_good_day_so_far/giryco4/;1610337780;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KojimboPro;;;[];;;;text;t2_omnfz;False;False;[];;I mean it's two males in the same body but the currently airing Jujutsu Kaisen has what you're looking for.;False;False;;;;1610297628;;False;{};girygvb;False;t3_kuhqdr;False;False;t3_kuhqdr;/r/anime/comments/kuhqdr/looking_for_an_anime_where_two_people_share_a/girygvb/;1610337851;4;True;False;anime;t5_2qh22;;0;[]; -[];;;RealLongJohnSilver;;;[];;;;text;t2_2ejrryfx;False;False;[];;Good thing i’ve been meaning to get into Black Clover then!;False;False;;;;1610297644;;False;{};giryhxf;True;t3_kuhqdr;False;True;t1_girychn;/r/anime/comments/kuhqdr/looking_for_an_anime_where_two_people_share_a/giryhxf/;1610337870;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RealLongJohnSilver;;;[];;;;text;t2_2ejrryfx;False;False;[];;Ill have a look as long as there is none of that incest stuff going on 😭😭;False;False;;;;1610297680;;False;{};girykfb;True;t3_kuhqdr;False;True;t1_girybh4;/r/anime/comments/kuhqdr/looking_for_an_anime_where_two_people_share_a/girykfb/;1610337912;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;"[What I think of the scene. FMAB Spoiler.](/s ""He tried. It's a shame he didn't get anywhere with his research. Giving/synthesizing creatures the ability to speak like humans would be interesting endeavour. It might not be particularly profitable initially but it would still be interesting from an academic point of view. Maybe you could use the chimeras as Guinea pigs to test pet feed and other pet related paraphernalia"")";False;False;;;;1610297691;;False;{};giryl75;False;t3_kuhvea;False;True;t3_kuhvea;/r/anime/comments/kuhvea/hope_youre_having_a_good_day_so_far/giryl75/;1610337924;1;True;False;anime;t5_2qh22;;0;[]; -[];;;danguelo;;;[];;;;text;t2_14e059;False;False;[];;Lol, talking about being pretentious while being pretentious. Moreover, you say that the fact that one of the most famous LN and anime being loved in the fucking anime subreddit is somewhat this and only this subreddit thing and therefore the subreddit has a problem, like if no one else outside reddit loves the series. Bait bullshit.;False;False;;;;1610297691;;False;{};giryl86;False;t3_kugso6;False;True;t3_kugso6;/r/anime/comments/kugso6/my_rant_about_a_certain_pretentious_anime_called/giryl86/;1610337925;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610297693;;1610316652.0;{};giryld9;False;t3_kucuy5;False;True;t1_giryatz;/r/anime/comments/kucuy5/idinvaded_the_manga_sequel_worth_a_buy/giryld9/;1610337927;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;I also think it’s cuz Japan has stricter regulations on skateboarding than the US;False;False;;;;1610297726;;False;{};girynoh;False;t3_kuh2gz;False;False;t1_giry7lc;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/girynoh/;1610337968;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DARKH0ARSE;;;[];;;;text;t2_5ic9rjnb;False;False;[];;It has the same level of...spoiling that the rest of the EDs had: seems meaningless but it hints at something significant;False;False;;;;1610297733;;False;{};giryo3s;False;t3_kugii5;False;True;t3_kugii5;/r/anime/comments/kugii5/is_this_an_important_spoiler_for_aot/giryo3s/;1610337975;3;True;False;anime;t5_2qh22;;0;[]; -[];;;danguelo;;;[];;;;text;t2_14e059;False;False;[];;Nice circlejerk you have in this little comment.;False;False;;;;1610297767;;False;{};giryqio;False;t3_kugso6;False;True;t1_girrws8;/r/anime/comments/kugso6/my_rant_about_a_certain_pretentious_anime_called/giryqio/;1610338016;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeTalks101;;;[];;;;text;t2_36v6e5ak;False;False;[];;Wow cool! I will definitely check it out. Thanks, I really appreciate it! 👍;False;False;;;;1610297786;;False;{};giryruu;True;t3_kuh2gz;False;True;t1_giry214;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/giryruu/;1610338038;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BakarinaLovesMaria;;;[];;;;text;t2_7aztnfnj;False;False;[];;Who’s your favorite yandere and what anime are they from;False;False;;;;1610297786;;False;{};giryrvr;True;t3_kue4am;False;True;t1_giry2y2;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/giryrvr/;1610338039;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RealLongJohnSilver;;;[];;;;text;t2_2ejrryfx;False;False;[];;Just seen the trailer and it looks kinda dark... Perfect!;False;False;;;;1610297794;;False;{};girysfh;True;t3_kuhqdr;False;True;t1_girygvb;/r/anime/comments/kuhqdr/looking_for_an_anime_where_two_people_share_a/girysfh/;1610338048;2;True;False;anime;t5_2qh22;;0;[]; -[];;;zptc;;;[];;;;text;t2_3et1t;False;False;[];;D4DJ x MH has got to be up there with Hello Kitty x Gundam in terms of unexpected crossovers.;False;False;;;;1610297795;;False;{};girysi6;False;t3_kug9sa;False;False;t1_giroxm6;/r/anime/comments/kug9sa/d4dj_petit_mix_mini_anime_announced_starts_the/girysi6/;1610338049;6;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;"It's a Maeda show so it follows his comedy ---> sadness formula, but the general consensus is that the sadness part wasn't done very well this time. I liked the show as a whole but agree that the first 9 episodes (the comedic part) are *way* better.";False;False;;;;1610297803;;False;{};giryt3r;False;t3_kugy8t;False;True;t3_kugy8t;/r/anime/comments/kugy8t/should_i_complete_kamisama_ni_natta_hi/giryt3r/;1610338059;1;True;False;anime;t5_2qh22;;0;[]; -[];;;golgiapparatus22;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/golgiapparatus34;light;text;t2_58ddokvy;False;False;[];;Code Geass it is I guess, was refered many times. I’ll start watching tonight. Thanks.;False;False;;;;1610297822;;False;{};giryui0;True;t3_kuhq4q;False;True;t1_giry3ei;/r/anime/comments/kuhq4q/looking_for_psychotic_op_mc/giryui0/;1610338083;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;Well if you were meaning to get to it and your looking for something like this then it should be something you enjoy. It gets a lot of crap but i enjoy it a lot. And its only gotten better over the years. The series has some rough areas here and there in the early/mid days but after like ep 50 the quality skyrockets and after 100+ it skyrockets even more then after 150+ its skyrocketing en more. Like its crazy how much the quality improved over time, but most of that is just poor management by the studi onot giving the team enough people in the early days.;False;False;;;;1610297839;;False;{};giryvo3;False;t3_kuhqdr;False;True;t1_giryhxf;/r/anime/comments/kuhqdr/looking_for_an_anime_where_two_people_share_a/giryvo3/;1610338102;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuzzy_Bear91;;;[];;;;text;t2_87yxoz4k;False;False;[];;The world building and power structure in One Piece is insane. Oda (the writer of One Piece) is a master of setting things up in earlier episodes only to have them pay off literally years later in clever ways. Oda really is a unique magna writer, he loves the world he has created and has thought about how he wants the entire story to play out decades before he get there.;False;False;;;;1610297843;;False;{};giryvyw;False;t3_kuhoss;False;False;t1_girxews;/r/anime/comments/kuhoss/naruto_or_one_piece/giryvyw/;1610338107;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Ramdom--Person;;;[];;;;text;t2_7tca56ky;False;False;[];;Ed... Ward...;False;False;;;;1610297845;;False;{};giryw3e;True;t3_kuhvea;False;True;t1_giryl75;/r/anime/comments/kuhvea/hope_youre_having_a_good_day_so_far/giryw3e/;1610338109;1;True;False;anime;t5_2qh22;;0;[]; -[];;;golgiapparatus22;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/golgiapparatus34;light;text;t2_58ddokvy;False;False;[];;Not into reading manga yet but I’ll defo chrck deadman wonderland;False;False;;;;1610297862;;False;{};giryxca;True;t3_kuhq4q;False;True;t1_girxtga;/r/anime/comments/kuhq4q/looking_for_psychotic_op_mc/giryxca/;1610338129;1;True;False;anime;t5_2qh22;;0;[]; -[];;;golgiapparatus22;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/golgiapparatus34;light;text;t2_58ddokvy;False;False;[];;Seems like an anime about a fat girl without context lol, but apparently a good one;False;False;;;;1610297898;;False;{};giryzwp;True;t3_kuhq4q;False;True;t1_girxusq;/r/anime/comments/kuhq4q/looking_for_psychotic_op_mc/giryzwp/;1610338171;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;I mean try asking on r/manga about manga. Original series manga usually don't get axed by the magazine but either complete their arc or stop due to no demand. But if it gets licensed and a paperback it can't do too bad;False;False;;;;1610297918;;False;{};girz1fk;False;t3_kucuy5;False;True;t1_giryld9;/r/anime/comments/kucuy5/idinvaded_the_manga_sequel_worth_a_buy/girz1fk/;1610338198;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Iron_Man_88;;;[];;;;text;t2_15do2m;False;False;[];;Psycho-Pass;False;False;;;;1610297923;;False;{};girz1rf;False;t3_kugqte;False;True;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girz1rf/;1610338203;0;True;False;anime;t5_2qh22;;0;[]; -[];;;haskillsan;;;[];;;;text;t2_b0ptc2d;False;False;[];;Fuck you why must u hurt me this way;False;False;;;;1610297934;;False;{};girz2k3;False;t3_kuhvea;False;True;t3_kuhvea;/r/anime/comments/kuhvea/hope_youre_having_a_good_day_so_far/girz2k3/;1610338216;0;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;"I know skateboarding was meant to be in Tokyo, but at the moment those might be postponed. - -I think it's just the sport has died away a bit since the days of Tony Hawks and maybe before Jackass died out since that was the true height of it, maybe the thing that broke it as well. - -The closest that exists is the X-Games every year but it's not a highlight of anything and just happens and ends when they do.";False;False;;;;1610297951;;False;{};girz3qw;False;t3_kuh2gz;False;False;t1_girynoh;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/girz3qw/;1610338235;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Massaman95;;;[];;;;text;t2_zxb3m;False;False;[];;~~Jokes on him, I don't pay for my anime~~;False;False;;;;1610297973;;False;{};girz5cs;False;t3_kugzsg;False;False;t1_girxr9q;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/girz5cs/;1610338266;25;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"Def do, its one of my all time fav series, really worth it. - -The order i list the series is the watch order. It can be a bit confusing but thats the right order to watch it. Its 1 season then 1 movie then 1 season then 6 movies. - -Enjoy, its great.";False;False;;;;1610297980;;False;{};girz5up;False;t3_kuh2gz;False;False;t1_giryruu;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/girz5up/;1610338273;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610297980;;False;{};girz5x7;False;t3_kuhvea;False;True;t3_kuhvea;/r/anime/comments/kuhvea/hope_youre_having_a_good_day_so_far/girz5x7/;1610338275;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610297997;moderator;False;{};girz73e;False;t3_kui465;False;True;t3_kui465;/r/anime/comments/kui465/which_one_should_i_watch/girz73e/;1610338294;0;False;False;anime;t5_2qh22;;0;[]; -[];;;OnPorpoise1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/OnPorpoise;light;text;t2_3p7505mr;False;False;[];;I don't get why people are downvoting you. As someone who just isn't a big shounen/romance/sol fan, this is probably one of the weakest seasons I have watched in a while. The only show I'm really excited for at all is wonder egg, just because we have almost no information about it. Past that I'm really only interested in 3 of the sequels, and one new show. Compare that to last season, a season I found kind of weak, where there were 10 shows I was initially interested in, even if I did end up dropping some. There are a ton of sequels, but they all kind of cater to the same niche, and the season is kind of bare if you're not a part of that niche.;False;False;;;;1610298014;;False;{};girz89p;False;t3_kubxb2;False;True;t1_girwqdu;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/girz89p/;1610338315;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610298014;;False;{};girz8ah;False;t3_kuhvea;False;True;t1_giryl75;/r/anime/comments/kuhvea/hope_youre_having_a_good_day_so_far/girz8ah/;1610338316;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Come again?;False;False;;;;1610298068;;False;{};girzc3y;False;t3_kuhvea;False;True;t1_giryw3e;/r/anime/comments/kuhvea/hope_youre_having_a_good_day_so_far/girzc3y/;1610338385;1;True;False;anime;t5_2qh22;;0;[]; -[];;;exia00111;;;[];;;;text;t2_8pn04;False;False;[];;FMA:Brotherhood is the one you should watch.;False;False;;;;1610298087;;False;{};girzdfa;False;t3_kui465;False;False;t3_kui465;/r/anime/comments/kui465/which_one_should_i_watch/girzdfa/;1610338408;5;False;False;anime;t5_2qh22;;0;[]; -[];;;RealLongJohnSilver;;;[];;;;text;t2_2ejrryfx;False;False;[];;Yeah just been slow to actually start it because itd be my first over 100 episode anime ever... Not had the time before now;False;False;;;;1610298089;;False;{};girzdl3;True;t3_kuhqdr;False;True;t1_giryvo3;/r/anime/comments/kuhqdr/looking_for_an_anime_where_two_people_share_a/girzdl3/;1610338411;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Massaman95;;;[];;;;text;t2_zxb3m;False;False;[];;Well if you like Boruto I can't imagine you being disappointed by anything you watch at all;False;False;;;;1610298093;;False;{};girzdvl;False;t3_kuhoss;False;False;t3_kuhoss;/r/anime/comments/kuhoss/naruto_or_one_piece/girzdvl/;1610338416;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;I think you should watch fullmetal alchemist so you can be emotionally prepared although many people are gonna say to watch brotherhood first;False;False;;;;1610298096;;False;{};girze3s;False;t3_kui465;False;False;t3_kui465;/r/anime/comments/kui465/which_one_should_i_watch/girze3s/;1610338421;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RealLongJohnSilver;;;[];;;;text;t2_2ejrryfx;False;False;[];;Yeah just been slow to actually start it because itd be my first over 100 episode anime ever... Not had the time before now;False;False;;;;1610298103;;False;{};girzely;True;t3_kuhqdr;False;True;t1_giryvo3;/r/anime/comments/kuhqdr/looking_for_an_anime_where_two_people_share_a/girzely/;1610338428;1;True;False;anime;t5_2qh22;;0;[]; -[];;;randomness7345;;;[];;;;text;t2_11zjs7;False;False;[];;You won’t understand a thing until you learn about it in the show, don’t worry;False;False;;;;1610298126;;False;{};girzg5k;False;t3_kugii5;False;True;t3_kugii5;/r/anime/comments/kugii5/is_this_an_important_spoiler_for_aot/girzg5k/;1610338456;1;True;False;anime;t5_2qh22;;0;[]; -[];;;justanonquestions;;;[];;;;text;t2_837s6xp1;False;False;[];;boruto was fucking awaful like there were only idk 160 ep and it took me more than 2 months to catch up. It finally started picking up speed tho;False;False;;;;1610298149;;False;{};girzhtx;True;t3_kuhoss;False;True;t1_girzdvl;/r/anime/comments/kuhoss/naruto_or_one_piece/girzhtx/;1610338486;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;Both are worth watching;False;False;;;;1610298172;;False;{};girzjgm;False;t3_kui465;False;False;t3_kui465;/r/anime/comments/kui465/which_one_should_i_watch/girzjgm/;1610338513;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AlbedoDorito;;;[];;;;text;t2_23f48emd;False;False;[];;Naruto will probably always be my #1 personally for reasons. But One Piece is better.;False;False;;;;1610298179;;False;{};girzk04;False;t3_kuhoss;False;False;t3_kuhoss;/r/anime/comments/kuhoss/naruto_or_one_piece/girzk04/;1610338522;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"It goes by pretty quick. - -Arcs are around 10 eps long and you move arc to arc as the overarching saga starts to build up. - -I think the pace moves a lot better than a loot of other shounen which tend to spend too long on arcs.";False;False;;;;1610298261;;False;{};girzpxd;False;t3_kuhqdr;False;True;t1_girzely;/r/anime/comments/kuhqdr/looking_for_an_anime_where_two_people_share_a/girzpxd/;1610338623;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;This was probably the first anime I fully watched, english dubbed no less.;False;False;;;;1610298279;;False;{};girzr5f;False;t3_kugzsg;False;True;t3_kugzsg;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/girzr5f/;1610338644;4;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;I skipped the 7th episode in fullmetal alchemist knowing what was coming, and you went and did this to me.....;False;False;;;;1610298284;;False;{};girzrhu;False;t3_kuhvea;False;True;t3_kuhvea;/r/anime/comments/kuhvea/hope_youre_having_a_good_day_so_far/girzrhu/;1610338650;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ItchyPlatypus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ItchyPlatypus;light;text;t2_x6uza5h;False;False;[];;I agree it was disappointing but you honestly missed the best episode the anime has so far. It was like a top 5 episode of last year. It’s the final episode of the season, you could probably skip all of what you missed besides the last two episode of the season and still fully enjoy the episode. I’d recommend checking at least that part out.;False;False;;;;1610298302;;False;{};girzss5;False;t3_kugqte;False;False;t1_girs4jb;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girzss5/;1610338673;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;Is that Endeavour episode. I saw the fight scene and it was amazing.;False;False;;;;1610298346;;False;{};girzvyg;False;t3_kugqte;False;True;t1_girzss5;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girzvyg/;1610338728;1;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;"One thing though, it's not ""psychotic MC that easily overpowers his enemies"". Lelouch has to struggle quite a bit to beat some of his foes.";False;False;;;;1610298360;;False;{};girzwxx;False;t3_kuhq4q;False;True;t1_giryui0;/r/anime/comments/kuhq4q/looking_for_psychotic_op_mc/girzwxx/;1610338744;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Deadmandream;;;[];;;;text;t2_25v21ud8;False;False;[];;ReLife i just wish they make it longer and not a 4 OVA episodes.;False;False;;;;1610298377;;False;{};girzy4m;False;t3_kugqte;False;True;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/girzy4m/;1610338765;1;True;False;anime;t5_2qh22;;0;[]; -[];;;golgiapparatus22;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/golgiapparatus34;light;text;t2_58ddokvy;False;False;[];;But he is psychotic right, that’s what matters;False;False;;;;1610298401;;False;{};girzzth;True;t3_kuhq4q;False;True;t1_girzwxx;/r/anime/comments/kuhq4q/looking_for_psychotic_op_mc/girzzth/;1610338795;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Internal-Basil;;;[];;;;text;t2_5b3sl2h9;False;False;[];;You sir are almost as horrible of a monster as her father;False;False;;;;1610298423;;False;{};gis01dr;False;t3_kuhvea;False;True;t3_kuhvea;/r/anime/comments/kuhvea/hope_youre_having_a_good_day_so_far/gis01dr/;1610338826;0;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;I guess he is not so stable mentally.;False;False;;;;1610298437;;False;{};gis02fy;False;t3_kuhq4q;False;True;t1_girzzth;/r/anime/comments/kuhq4q/looking_for_psychotic_op_mc/gis02fy/;1610338845;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;That’s true,I hope the olympics bring more attentions and makes the sport more popular again;False;False;;;;1610298454;;False;{};gis03no;False;t3_kuh2gz;False;True;t1_girz3qw;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/gis03no/;1610338866;2;True;False;anime;t5_2qh22;;0;[]; -[];;;golgiapparatus22;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/golgiapparatus34;light;text;t2_58ddokvy;False;False;[];;I see, I hope he is;False;False;;;;1610298470;;False;{};gis04q7;True;t3_kuhq4q;False;True;t1_gis02fy;/r/anime/comments/kuhq4q/looking_for_psychotic_op_mc/gis04q7/;1610338885;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeTalks101;;;[];;;;text;t2_36v6e5ak;False;False;[];;Yeah that's true, too many can take the fun out of it. There's probably a lot of different types of sports they haven't done yet, which would be cool to see.;False;False;;;;1610298516;;False;{};gis082b;True;t3_kuh2gz;False;True;t1_girybz4;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/gis082b/;1610338942;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lankpants;;;[];;;;text;t2_ws3e6;False;False;[];;"It's very hard for some people to look outside of their own tastes. People feel personally attacked by the dumbest of things. I kind of expect to be downvoted whenever I suggest some people don't like shounen, it's a pretty strong trend. - -Never said a single one of these anime was bad or the same as the others, just that with the three exemptions I listed they're all very shounen.";False;False;;;;1610298591;;False;{};gis0dm3;False;t3_kubxb2;False;True;t1_girz89p;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/gis0dm3/;1610339037;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;It depends if they get any names to carry the sport once again. Also, can they recreate the scene skateboard would need to become as popular?;False;False;;;;1610298617;;False;{};gis0flz;False;t3_kuh2gz;False;True;t1_gis03no;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/gis0flz/;1610339071;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeTalks101;;;[];;;;text;t2_36v6e5ak;False;False;[];;Cool, thanks for putting them in order.;False;False;;;;1610298631;;False;{};gis0glb;True;t3_kuh2gz;False;True;t1_girz5up;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/gis0glb/;1610339088;3;True;False;anime;t5_2qh22;;0;[]; -[];;;yeetus50;;;[];;;;text;t2_8196dk4f;False;False;[];;it sort of happens over time tho so u get to watch it happen;False;False;;;;1610298664;;False;{};gis0iz4;False;t3_kuhq4q;False;True;t1_gis04q7;/r/anime/comments/kuhq4q/looking_for_psychotic_op_mc/gis0iz4/;1610339130;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;"Snowboarding would be an interesting one. But then most of the widely known sports have been covered... Swimming, Football, Archery, Cycling, Volleyball, Tennis ... - -Initial D?";False;False;;;;1610298699;;False;{};gis0lj3;False;t3_kuh2gz;False;False;t1_gis082b;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/gis0lj3/;1610339173;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Storm137;;;[];;;;text;t2_ogrzx;False;False;[];;"It was that bad. They were re-using animation, dishes AND they went as far as to adapt the horrible choices made once the culinary advisor left when the manga was written. - -We're talking cooking with chainsaws.";False;False;;;;1610298707;;False;{};gis0m3s;False;t3_kugqte;False;False;t1_girtcrp;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/gis0m3s/;1610339183;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ve_rushing;;;[];;;;text;t2_5neck4as;False;False;[];;"Hummm, my suggestion would be Tiger & Bunny. The biggest difference is it not being that dark and anti-utopian (still some dark implications at the end).";False;False;;;;1610298744;;False;{};gis0oxt;False;t3_kuh96b;False;True;t3_kuh96b;/r/anime/comments/kuh96b/can_anyone_recommend_an_anime_thats_similar_in/gis0oxt/;1610339232;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zerx07;;;[];;;;text;t2_5nfml6dh;False;False;[];;I guess i gotta wake up at 3 or 4am then;False;False;;;;1610298787;;False;{};gis0s93;False;t3_kugm3c;False;True;t1_girrfm0;/r/anime/comments/kugm3c/attack_on_titan_official_art_for_episode_5/gis0s93/;1610339291;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;Cooking with chainsaws I thought this was food wars not chainsaw man;False;False;;;;1610298808;;False;{};gis0tso;True;t3_kugqte;False;True;t1_gis0m3s;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/gis0tso/;1610339320;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Cynderaquil;;;[];;;;text;t2_3hyccqum;False;False;[];;FMA is mostly non canon from the manga, and FMAB follows the manga story. I’d recommend watching both.;False;False;;;;1610298824;;False;{};gis0uxo;False;t3_kui465;False;False;t3_kui465;/r/anime/comments/kui465/which_one_should_i_watch/gis0uxo/;1610339338;4;True;False;anime;t5_2qh22;;0;[]; -[];;;OnPorpoise1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/OnPorpoise;light;text;t2_3p7505mr;False;False;[];;Yeah, it's not that shounens are bad, and I don't immediately discount a show just because it is shounen, but on average I just don't tend to enjoy them. I would imagine this season is incredible if you are a fan of the shows that have sequels, but it is incredibly one dimensional and doesn't really have much to offer when it comes to depth.;False;False;;;;1610298852;;False;{};gis0x23;False;t3_kubxb2;False;True;t1_gis0dm3;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/gis0x23/;1610339374;2;True;False;anime;t5_2qh22;;0;[]; -[];;;xdtla;;;[];;;;text;t2_1fbt2gtl;False;False;[];;It's 9:14 in the damn morning. Why?;False;False;;;;1610298874;;False;{};gis0ym2;False;t3_kuhvea;False;True;t3_kuhvea;/r/anime/comments/kuhvea/hope_youre_having_a_good_day_so_far/gis0ym2/;1610339400;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Storm137;;;[];;;;text;t2_ogrzx;False;False;[];;BLUE arc was a fucking joke.;False;False;;;;1610298896;;False;{};gis10am;False;t3_kugqte;False;True;t1_gis0tso;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/gis10am/;1610339427;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CHM256;;;[];;;;text;t2_8wahx2h6;False;False;[];;One piece. Naruto is good too but one piece often hype me up;False;False;;;;1610298921;;False;{};gis11pa;False;t3_kuhoss;False;True;t3_kuhoss;/r/anime/comments/kuhoss/naruto_or_one_piece/gis11pa/;1610339451;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;There's an '80s Ultraman anime.;False;False;;;;1610298933;;False;{};gis125h;False;t3_kuhqdr;False;True;t3_kuhqdr;/r/anime/comments/kuhqdr/looking_for_an_anime_where_two_people_share_a/gis125h/;1610339460;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;"Gundam Seed Destiny - They start it off with a reverse of Zeta, rather than our MC stealing a Gundam, he's trying to fend off three Gundams being stolen(as is typical in Seed). It's fine up until ""Break the World"", when [SEED](/s ""Kira takes over as the main character again and Shinn and all the characters we got to know are now the enemy""). They tried to pull a Zeta, but halfassed it and got bored halfway through. I swear they used the character popularity polls as a basis for who who lives and who dies. At least the TM Revolution character was briefly useful. - - -Honorable mention to Gundam 00 Season 2, which got rid of the uniqueness of season 1 and made it more of a typical Gundam series. It wasn't bad(in fact It's still good), but it's nowhere near as good.";False;False;;;;1610299003;;False;{};gis17xk;False;t3_kugqte;False;True;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/gis17xk/;1610339559;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ve_rushing;;;[];;;;text;t2_5neck4as;False;False;[];;Cowboy Bebop - it's space opera (not to mention that the space stuff and the mechanical design are very Gunam-esque...because Sunrise). I like sci-fi setting and tropes better than the samurai ones.;False;False;;;;1610299018;;False;{};gis191o;False;t3_kuh3qg;False;True;t3_kuh3qg;/r/anime/comments/kuh3qg/which_is_better_samurai_champloo_or_cowboy_bebop/gis191o/;1610339577;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;Gleipnir, maybe ?;False;False;;;;1610299023;;False;{};gis19ga;False;t3_kuhqdr;False;True;t3_kuhqdr;/r/anime/comments/kuhqdr/looking_for_an_anime_where_two_people_share_a/gis19ga/;1610339584;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"FMA was created while the manga was still ongoing so it eventually diverges from the source material and goes on an anime original route. - -FMAB was created after and adapts the manga more faithfully. - -Both are good in their own way.";False;False;;;;1610299026;;False;{};gis19mi;False;t3_kui465;False;False;t3_kui465;/r/anime/comments/kui465/which_one_should_i_watch/gis19mi/;1610339587;7;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;"The newer version seems a bit more focused on action & drama. - -While the older version seemed a bit more focused on comedy & some romance.";False;False;;;;1610299050;;False;{};gis1bgd;False;t3_kuh61n;False;True;t3_kuh61n;/r/anime/comments/kuh61n/how_good_is_sorcerous_stabber_orphen_series/gis1bgd/;1610339619;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ItchyPlatypus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ItchyPlatypus;light;text;t2_x6uza5h;False;False;[];;Yes it was, good to see you saw it. Considering you made it that far in the anime it would have been a shame if you didn’t watch it.;False;False;;;;1610299140;;False;{};gis1i6f;False;t3_kugqte;False;True;t1_girzvyg;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/gis1i6f/;1610339735;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Melbuf;;;[];;;;text;t2_j03jl;False;False;[];;i don't care and i will never care about this or the same thing with any other artist, if i did id spend my life staring at a blank wall until it turns out the wall is a rapist;False;False;;;;1610299268;;False;{};gis1s1k;False;t3_kugzsg;False;True;t1_girtbf9;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gis1s1k/;1610339901;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;"I'm not sure if the series (there are a couple Saber Marionette shows) is available for streaming. -Pretty sure that most of them are out of print on DVD in the USA.";False;False;;;;1610299294;;False;{};gis1tyj;False;t3_kuf8rn;False;True;t1_girk2cl;/r/anime/comments/kuf8rn/i_have_been_looking_for_an_anime_since_i_was_a_kid/gis1tyj/;1610339934;1;True;False;anime;t5_2qh22;;0;[]; -[];;;redshirtengineer;;null a-amq;[];;;dark;text;t2_30v9ef;False;False;[];;"Kemono Friends - -S1 sweet slice of life, power of friendship, respect for other living things -S2 ... was not any of that";False;False;;;;1610299346;;False;{};gis1xyn;False;t3_kugqte;False;True;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/gis1xyn/;1610340001;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeTalks101;;;[];;;;text;t2_36v6e5ak;False;False;[];;Yeah that would be. I guess it's mainly the lesser known sports left.;False;False;;;;1610299504;;False;{};gis2a06;True;t3_kuh2gz;False;True;t1_gis0lj3;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/gis2a06/;1610340205;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JinglerTingler;;;[];;;;text;t2_14novi;False;False;[];;Trick question - Space Dandy;False;False;;;;1610299557;;False;{};gis2e2h;False;t3_kuh3qg;False;False;t3_kuh3qg;/r/anime/comments/kuh3qg/which_is_better_samurai_champloo_or_cowboy_bebop/gis2e2h/;1610340274;5;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Meemeli;;;[];;;;text;t2_2o1rogl;False;False;[];;" Short version: - -Think of the two Fullmetal Alchemist series (2003 and Brotherhood) as two different stories, that happen to have a similar beginning, setting, and main characters. If you want to watch them both, watch them in release order, with the movie ""Conqueror of Shamballa"" after 2003. If you only want to watch one, watch Brotherhood. - -Long version: - -Fullmetal Alchemist was originally a manga. When the first anime adaptation was made, the manga wasn't even close to being finished. And since the manga was released monthly and the anime weekly, they would have run out of manga to adapt, and fast. - -So, instead of making filler or putting it on hold to allow the manga to catch up, they used the beginning of the manga as a foundation, and made their own, original story out of it. That one is Fullmetal Alchemist (2003). - -Years later, when the manga was nearing its completion, a new anime adaptation was made, one that could now follow the manga's story all the way through. That one is Fullmetal Alchemist: Brotherhood. - -If you want to watch them both, watch them in release order, with the movie ""Conqueror of Shamballa"" after 2003. If you only want to watch one, watch Brotherhood.";False;False;;;;1610299672;;False;{};gis2mwp;False;t3_kui465;False;True;t3_kui465;/r/anime/comments/kui465/which_one_should_i_watch/gis2mwp/;1610340420;3;True;False;anime;t5_2qh22;;0;[]; -[];;;falkner97;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/falkner99;light;text;t2_6y92q69v;False;False;[];;"skateboarding yep - -there is anime for skating/rollarblading though - air gear";False;False;;;;1610299746;;False;{};gis2scf;False;t3_kuh2gz;False;True;t3_kuh2gz;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/gis2scf/;1610340513;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610299753;moderator;False;{};gis2svo;False;t3_kuipg9;False;True;t3_kuipg9;/r/anime/comments/kuipg9/can_somebody_tell_me_the_namy_of_an_horror/gis2svo/;1610340522;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Rhine_Fox-fire;;;[];;;;text;t2_5ax1gi2y;False;False;[];;"I swear to god if anyone says they're in ""purgatory"" I'm gonna give their mom a visit and give them a little sister/brother! be more original!";False;False;;;;1610299783;;False;{};gis2v5s;False;t3_kuinos;False;True;t3_kuinos;/r/anime/comments/kuinos/what_are_your_most_disturbing_and_bizarre/gis2v5s/;1610340558;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610299828;;1610316633.0;{};gis2xr5;False;t3_kucuy5;False;True;t1_girz1fk;/r/anime/comments/kucuy5/idinvaded_the_manga_sequel_worth_a_buy/gis2xr5/;1610340602;2;True;False;anime;t5_2qh22;;0;[]; -[];;;midnightwolf19;;;[];;;;text;t2_938l065e;False;False;[];;There's some site that stream it, not sure if they do it legally so won't post them here but that's how I was able to find them thanks to satousmith who knew what anime i was talking about;False;False;;;;1610299846;;False;{};gis2z4q;True;t3_kuf8rn;False;True;t1_gis1tyj;/r/anime/comments/kuf8rn/i_have_been_looking_for_an_anime_since_i_was_a_kid/gis2z4q/;1610340626;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Im-Pico;;;[];;;;text;t2_3vbn11u7;False;False;[];;They're not OP, but all of the characters in Higurashi are definitely insane.;False;False;;;;1610299858;;False;{};gis30jn;False;t3_kuhq4q;False;True;t3_kuhq4q;/r/anime/comments/kuhq4q/looking_for_psychotic_op_mc/gis30jn/;1610340650;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610299905;moderator;False;{};gis34fd;False;t3_kuir6n;False;True;t3_kuir6n;/r/anime/comments/kuir6n/im_looking_for_an_anime/gis34fd/;1610340717;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610299980;;False;{};gis3aai;False;t3_kuir6n;False;True;t3_kuir6n;/r/anime/comments/kuir6n/im_looking_for_an_anime/gis3aai/;1610340821;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeanderN;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/aLeegatou;light;text;t2_16k2bzww;False;False;[];;Bakuman?;False;False;;;;1610300004;;False;{};gis3c5v;False;t3_kuir6n;False;True;t3_kuir6n;/r/anime/comments/kuir6n/im_looking_for_an_anime/gis3c5v/;1610340852;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackdiamond2;;;[];;;;text;t2_c8m3y;False;False;[];;Yeah I agree. The amount and quality of new shows is pretty good (unless you hate isekai, then it's not great), but the amount of sequels to both very popular and very good shows is incredible. Definitely the most noteworthy season since I started watching anime seasonally back in 2017, and most certainly has the most hype of any season I've experience, and not for no reason.;False;False;;;;1610300011;;False;{};gis3cop;False;t3_kubxb2;False;False;t3_kubxb2;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/gis3cop/;1610340864;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Im-Pico;;;[];;;;text;t2_3vbn11u7;False;False;[];;There is only one Arc in the entirety of one piece that I didn't like. As someone who has watched both and enjoys both I personally think one piece is better. The slight foreshadowing and world building throughout one piece are amazing.;False;False;;;;1610300105;;False;{};gis3jxo;False;t3_kuhoss;False;True;t3_kuhoss;/r/anime/comments/kuhoss/naruto_or_one_piece/gis3jxo/;1610340987;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Strickout;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Strickout?status=2;light;text;t2_1szolp7k;False;False;[];;Kuudere, with Dandere as a somewhat distant second;False;False;;;;1610300111;;False;{};gis3kc9;False;t3_kue4am;False;True;t3_kue4am;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/gis3kc9/;1610340994;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ve_rushing;;;[];;;;text;t2_5neck4as;False;False;[];;Youjo Senki aka The Saga of Tanya the Evil - 12 episodes + movie (which is a continuation of the series).;False;False;;;;1610300235;;False;{};gis3tiz;False;t3_kudiu8;False;True;t3_kudiu8;/r/anime/comments/kudiu8/ive_watched_a_couple_animes_looking_for_good/gis3tiz/;1610341148;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mpp00;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/mpp00;light;text;t2_mygm1;False;False;[];;"Sorry, your submission has been removed. - -- Shitposts, memes, image macros, reaction images, ""fixed"" posts, and rage comics are not allowed. - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610300281;moderator;False;{};gis3wv3;False;t3_kuhvea;False;True;t3_kuhvea;/r/anime/comments/kuhvea/hope_youre_having_a_good_day_so_far/gis3wv3/;1610341204;1;True;False;anime;t5_2qh22;;0;[]; -[];;;some314;;;[];;;;text;t2_jxdjh;False;False;[];;[Mangaka-san](https://myanimelist.net/anime/21863/Mangaka-san_to_Assistant-san_to_The_Animation), probably;False;False;;;;1610300360;;False;{};gis42nz;False;t3_kuir6n;False;True;t3_kuir6n;/r/anime/comments/kuir6n/im_looking_for_an_anime/gis42nz/;1610341308;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ramdom--Person;;;[];;;;text;t2_7tca56ky;False;False;[];;How is this a reaction image... This is just an innocent girl and her peg having a good time...;False;False;;;;1610300366;;False;{};gis434d;True;t3_kuhvea;False;True;t1_gis3wv3;/r/anime/comments/kuhvea/hope_youre_having_a_good_day_so_far/gis434d/;1610341315;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lacking-name;;;[];;;;text;t2_hyec8wa;False;False;[];;"Brotherhood first. It has much better pacing and is fully canon. - -Afterwords, if you want more Fullmetal, you can watch the original. Mind you the production value is much lower, the pacing is noticably slower, has obvious filler parts, and has a non canon ending.";False;False;;;;1610300605;;False;{};gis4kg2;False;t3_kui465;False;True;t3_kui465;/r/anime/comments/kui465/which_one_should_i_watch/gis4kg2/;1610341629;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mpp00;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/mpp00;light;text;t2_mygm1;False;False;[];;Even disregarding the fact that this post is an obvious shitpost, it still would not be allowed under our single image post rules.;False;False;;;;1610300665;moderator;False;{};gis4osr;False;t3_kuhvea;False;True;t1_gis434d;/r/anime/comments/kuhvea/hope_youre_having_a_good_day_so_far/gis4osr/;1610341708;1;True;False;anime;t5_2qh22;;0;[]; -[];;;brotato96;;;[];;;;text;t2_16ylw4gr;False;False;[];;There is a lot of misinformation that fma was bad or strayed from manga that's why fmab was created. Reality is both are good while Fmab is more popular as follows the manga. The difference in both is how the plot points are connected and progress in the story. Id recommend fmab;False;False;;;;1610300687;;False;{};gis4qfn;False;t3_kui465;False;True;t3_kui465;/r/anime/comments/kui465/which_one_should_i_watch/gis4qfn/;1610341735;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tiazeet5;;;[];;;;text;t2_69pk3cjz;False;False;[];;Definitely bakuman;False;False;;;;1610300725;;False;{};gis4soq;False;t3_kuir6n;False;True;t3_kuir6n;/r/anime/comments/kuir6n/im_looking_for_an_anime/gis4soq/;1610341774;1;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;The Kyoto Arc was incredible;False;False;;;;1610300743;;False;{};gis4txu;False;t3_kugzsg;False;False;t3_kugzsg;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gis4txu/;1610341794;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Storm137;;;[];;;;text;t2_ogrzx;False;False;[];;Ghost Hunt. Highschool girl, breaks a camera, gets hired to be equipment manager for Paranormal Investigation team, instead gets a found family, bunch of wholesome scenes, between heart stopping horror. Genuinely a delight and I highly recommend the dub over the sub, as the cast is perfect.;False;False;;;;1610300891;;False;{};gis557g;False;t3_kuipg9;False;True;t3_kuipg9;/r/anime/comments/kuipg9/can_somebody_tell_me_the_namy_of_an_horror/gis557g/;1610341997;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Raddish3030;;;[];;;;text;t2_yxcl3;False;False;[];;Ain't that hard.;False;False;;;;1610300915;;False;{};gis56yc;False;t3_kugzsg;False;True;t1_girtbf9;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gis56yc/;1610342026;3;False;False;anime;t5_2qh22;;0;[]; -[];;;swmii53;;;[];;;;text;t2_16bkbw;False;False;[];;No incest. The anime starts a little slow, but picks up about the 4th episode.;False;False;;;;1610300937;;False;{};gis58kw;False;t3_kuhqdr;False;True;t1_girykfb;/r/anime/comments/kuhqdr/looking_for_an_anime_where_two_people_share_a/gis58kw/;1610342054;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Quiddity131;;MAL;[];;http://myanimelist.net/profile/Quiddity131;dark;text;t2_f3bdc;False;False;[];;Gundam Seed Destiny. Holy crap did that suck.;False;False;;;;1610300949;;False;{};gis59h0;False;t3_kugqte;False;False;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/gis59h0/;1610342070;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Ramdom--Person;;;[];;;;text;t2_7tca56ky;False;False;[];;Do you mean the single image rule for cosplay?...;False;False;;;;1610300983;;False;{};gis5bwj;True;t3_kuhvea;False;True;t1_gis4osr;/r/anime/comments/kuhvea/hope_youre_having_a_good_day_so_far/gis5bwj/;1610342113;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mudamudamudaman;;;[];;;;text;t2_4zv5esiu;False;False;[];;Tx;False;False;;;;1610301009;;False;{};gis5dqc;True;t3_kuipg9;False;True;t1_gis557g;/r/anime/comments/kuipg9/can_somebody_tell_me_the_namy_of_an_horror/gis5dqc/;1610342145;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Storm137;;;[];;;;text;t2_ogrzx;False;False;[];;Welcome, I think you'll really like it. It's 24 episodes too.;False;False;;;;1610301049;;False;{};gis5gmy;False;t3_kuipg9;False;True;t1_gis5dqc;/r/anime/comments/kuipg9/can_somebody_tell_me_the_namy_of_an_horror/gis5gmy/;1610342194;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;Vampire knight has an happy ending, but I don't wanna spoil anything about it being dissapointing. And noragami doesn't really count as a horror but it has a happy ending and the anime was good. Oh and I completely forgot, blood lad has a really happy ending as well!;False;False;;;;1610301079;;1610301363.0;{};gis5itj;False;t3_kuipg9;False;True;t3_kuipg9;/r/anime/comments/kuipg9/can_somebody_tell_me_the_namy_of_an_horror/gis5itj/;1610342232;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;did you ask on /r/IDinvaded;False;False;;;;1610301086;;False;{};gis5jar;False;t3_kucuy5;False;True;t1_gis2xr5;/r/anime/comments/kucuy5/idinvaded_the_manga_sequel_worth_a_buy/gis5jar/;1610342240;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mpp00;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/mpp00;light;text;t2_mygm1;False;False;[];;Our rules on restricted content state that screenshots and single image posts are not allowed.;False;False;;;;1610301119;moderator;False;{};gis5lpl;False;t3_kuhvea;False;True;t1_gis5bwj;/r/anime/comments/kuhvea/hope_youre_having_a_good_day_so_far/gis5lpl/;1610342283;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ramdom--Person;;;[];;;;text;t2_7tca56ky;False;False;[];;And this isn't a screenshot either...;False;False;;;;1610301180;;False;{};gis5q7b;True;t3_kuhvea;False;True;t1_gis5lpl;/r/anime/comments/kuhvea/hope_youre_having_a_good_day_so_far/gis5q7b/;1610342359;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;Maze the Megaburst Space kinda;False;False;;;;1610301182;;False;{};gis5qbi;False;t3_kuhqdr;False;True;t3_kuhqdr;/r/anime/comments/kuhqdr/looking_for_an_anime_where_two_people_share_a/gis5qbi/;1610342360;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610301182;;1610316591.0;{};gis5qcz;False;t3_kucuy5;False;True;t1_gis5jar;/r/anime/comments/kucuy5/idinvaded_the_manga_sequel_worth_a_buy/gis5qcz/;1610342361;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vikingslayerz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_r89cv;False;False;[];;Accelerator from A Certain Scientific Accelerator. However you will most likely want some backstory from Index and/or Railgun because the Accelerator series isn't quite standalone;False;False;;;;1610301229;;False;{};gis5tp2;False;t3_kuhq4q;False;True;t3_kuhq4q;/r/anime/comments/kuhq4q/looking_for_psychotic_op_mc/gis5tp2/;1610342416;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal_Ebb_238;;;[];;;;text;t2_8nmkui77;False;False;[];;Dorohedoro, after those nightmarish,hellish twisted, sickening chapters ( if they decide to make season 2 it will be like that, dorohedoro is one of the most nightmarish and dark manga I have ever read, season 1 is rather lighthearted I would not call it horror, but if they are to mare season 2, oh boy), the ending is happy one;False;False;;;;1610301245;;False;{};gis5use;False;t3_kuipg9;False;True;t3_kuipg9;/r/anime/comments/kuipg9/can_somebody_tell_me_the_namy_of_an_horror/gis5use/;1610342437;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mpp00;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/mpp00;light;text;t2_mygm1;False;False;[];;It is a single image post which is under our restricted content.;False;False;;;;1610301257;moderator;False;{};gis5vnw;False;t3_kuhvea;False;True;t1_gis5q7b;/r/anime/comments/kuhvea/hope_youre_having_a_good_day_so_far/gis5vnw/;1610342451;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ramdom--Person;;;[];;;;text;t2_7tca56ky;False;False;[];;• Do not post screenshots, jokes, single images of cosplay, wallpapers, comics, or any other low-effort content...;False;False;;;;1610301475;;False;{};gis6bge;True;t3_kuhvea;False;True;t1_gis5vnw;/r/anime/comments/kuhvea/hope_youre_having_a_good_day_so_far/gis6bge/;1610342714;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mudamudamudaman;;;[];;;;text;t2_4zv5esiu;False;False;[];;Thanks;False;False;;;;1610301519;;False;{};gis6eln;True;t3_kuipg9;False;False;t1_gis5itj;/r/anime/comments/kuipg9/can_somebody_tell_me_the_namy_of_an_horror/gis6eln/;1610342767;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mudamudamudaman;;;[];;;;text;t2_4zv5esiu;False;False;[];;Yeah, I don't think I will read that one but thanks;False;False;;;;1610301548;;False;{};gis6gqy;True;t3_kuipg9;False;True;t1_gis5use;/r/anime/comments/kuipg9/can_somebody_tell_me_the_namy_of_an_horror/gis6gqy/;1610342807;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cryzzalis;;MAL a-amq;[];;http://myanimelist.net/animelist/Charaxify;dark;text;t2_7j04d;False;False;[];;The author is worth all the despise and hatred he gets, but the work shouldn't be held credible for his actions, it's not in any way portraying or promoting anything regarding that topic.;False;False;;;;1610301559;;False;{};gis6hjn;False;t3_kugzsg;False;False;t1_girtbf9;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gis6hjn/;1610342820;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Ramdom--Person;;;[];;;;text;t2_7tca56ky;False;False;[];;This would only be considered shit posting toa rare few, the Karen type...;False;False;;;;1610301576;;False;{};gis6ir4;True;t3_kuhvea;False;True;t1_gis6bge;/r/anime/comments/kuhvea/hope_youre_having_a_good_day_so_far/gis6ir4/;1610342841;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;Your welcome;False;False;;;;1610301597;;False;{};gis6kc8;False;t3_kuipg9;False;True;t1_gis6eln;/r/anime/comments/kuipg9/can_somebody_tell_me_the_namy_of_an_horror/gis6kc8/;1610342867;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cryzzalis;;MAL a-amq;[];;http://myanimelist.net/animelist/Charaxify;dark;text;t2_7j04d;False;False;[];;"If you've liked it until episode five then firstly god bless you, I have no idea how you could. Secondly, just continue in that case, I doubt you'll end up disliking it if you're a fan of what there is until then. - -I'm in the camp where I believe you can talk about a show and share opinions and discuss it with one another, but you should always watch a show to determine your own opinion on it so just go on mate.";False;False;;;;1610301668;;False;{};gis6pjf;False;t3_kugy8t;False;True;t3_kugy8t;/r/anime/comments/kugy8t/should_i_complete_kamisama_ni_natta_hi/gis6pjf/;1610342953;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"Regardless of the authors crimes, Samurai X (I prefer English name) will always be a classic. - -It's one of the best samurai anime, hell samurai stories in any medium! - -It's far more impressive when you realize samurai stories where a saturated genre back in the day, and Ruroni kenshin managed to stand out above the rest. - -It's extremely rare to see ANY samurai anime/manga pop up now of days. It's ironic considering how popular European fantasy is in anime. - -I wish Japanese authors would take more interest in their ""ancient culture"", but it is what it is.";False;False;;;;1610301688;;False;{};gis6qyr;False;t3_kugzsg;False;False;t3_kugzsg;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gis6qyr/;1610342976;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Azrub580;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FpsArena;light;text;t2_661t4twj;False;False;[];;Berserk without a doubt lol, the animation of both new sequels is just atrocious. It is a masterpiece that must be seen or you won't believe it.;False;False;;;;1610301701;;False;{};gis6ryk;False;t3_kugqte;False;True;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/gis6ryk/;1610342993;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mpp00;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/mpp00;light;text;t2_mygm1;False;False;[];;If you read our [full rules](https://www.reddit.com/r/anime/wiki/rules) and navigate to the [restricted content](https://www.reddit.com/r/anime/wiki/rules#wiki_restricted_content) section, you will find under the first bullet point that single image posts are not allowed.;False;False;;;;1610301729;moderator;False;{};gis6twa;False;t3_kuhvea;False;True;t1_gis6bge;/r/anime/comments/kuhvea/hope_youre_having_a_good_day_so_far/gis6twa/;1610343026;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Serial_Beef;;;[];;;;text;t2_4ykrk2ac;False;False;[];;Armitage III. But I see you're racist towards old anime so...;False;False;;;;1610301936;;False;{};gis78yf;False;t3_kuh96b;False;True;t3_kuh96b;/r/anime/comments/kuh96b/can_anyone_recommend_an_anime_thats_similar_in/gis78yf/;1610343284;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SulliedSamaritan;;;[];;;;text;t2_2ux70x7j;False;False;[];;It's still the most fucked up adaption I've ever seen. It was like 120 chapters adapted in one cour.;False;False;;;;1610301983;;False;{};gis7cj3;False;t3_kugqte;False;True;t1_girsfng;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/gis7cj3/;1610343342;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;Wow it was so bad I purged it from my memories;False;False;;;;1610302000;;False;{};gis7dsj;True;t3_kugqte;False;False;t1_gis6ryk;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/gis7dsj/;1610343362;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ramdom--Person;;;[];;;;text;t2_7tca56ky;False;False;[];;Alright, reading through it, and, does that mean if I post a gallery, this would have no reason to be removed?...;False;False;;;;1610302002;;False;{};gis7dxd;True;t3_kuhvea;False;True;t1_gis6twa;/r/anime/comments/kuhvea/hope_youre_having_a_good_day_so_far/gis7dxd/;1610343365;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SulliedSamaritan;;;[];;;;text;t2_2ux70x7j;False;False;[];;How long ago did noragami finish?;False;False;;;;1610302079;;False;{};gis7jj4;False;t3_kuipg9;False;False;t1_gis5itj;/r/anime/comments/kuipg9/can_somebody_tell_me_the_namy_of_an_horror/gis7jj4/;1610343465;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mpp00;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/mpp00;light;text;t2_mygm1;False;False;[];;"As per our exemptions to restricted content, “Albums of 5 or more images as long as all images are collected to make a point or illustrate an idea”. - -However, blatant troll posts like these would still be removed under our “No memes” rule.";False;False;;;;1610302462;moderator;False;{};gis8bsu;False;t3_kuhvea;False;True;t1_gis7dxd;/r/anime/comments/kuhvea/hope_youre_having_a_good_day_so_far/gis8bsu/;1610343930;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;Higurashi;False;False;;;;1610302596;;False;{};gis8ld1;False;t3_kuipg9;False;False;t3_kuipg9;/r/anime/comments/kuipg9/can_somebody_tell_me_the_namy_of_an_horror/gis8ld1/;1610344084;5;True;False;anime;t5_2qh22;;0;[]; -[];;;opeth_syndrome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_7ymt570;False;False;[];;I gave both 8/10. I prefer the music in Bebop due to preferring Jazz/Blues over hip hop. So if forced to I'll pick Bebop.;False;False;;;;1610302601;;False;{};gis8lp4;False;t3_kuh3qg;False;True;t3_kuh3qg;/r/anime/comments/kuh3qg/which_is_better_samurai_champloo_or_cowboy_bebop/gis8lp4/;1610344089;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SoulTea;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/SoulTea;light;text;t2_6by2x;False;False;[];;"Skateboarding is bigger than ever man! I still skate and follow the industry. There's more teens and people than ever getting into it now. Video parts are getting dropped left and right by all these new rippers it's absolutely insane the level that guys are. Japan has quite a few notable skaters on the come up. The most popular is probably Yuto Horigame. He's so good. - -In terms of big contests and stuff, it's definitely not as huge as it was in the early 2000's like the X Games and and the likes in terms of how popular it is mainstream wise. However with it now being a part of the Olympics it will be interesting to see how it further boosts skating.";False;False;;;;1610302648;;False;{};gis8p73;False;t3_kuh2gz;False;False;t1_girz3qw;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/gis8p73/;1610344148;16;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;Inuyashiki;False;False;;;;1610302681;;False;{};gis8rnl;False;t3_kuhq4q;False;True;t3_kuhq4q;/r/anime/comments/kuhq4q/looking_for_psychotic_op_mc/gis8rnl/;1610344188;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Avery-Bradley;;;[];;;;text;t2_175rqp;False;False;[];;Just finish it tbh. I liked the filler enough for it to be a 7.0/10 in my ratings. The ending was meh imo;False;False;;;;1610302699;;False;{};gis8sxo;False;t3_kugy8t;False;True;t3_kugy8t;/r/anime/comments/kugy8t/should_i_complete_kamisama_ni_natta_hi/gis8sxo/;1610344209;1;True;False;anime;t5_2qh22;;0;[]; -[];;;THEbaddestOFtheASSES;;;[];;;;text;t2_ocvb8i5;False;False;[];;I grew bored of OP very early. Liked Naruto better and it wasn’t even close.;False;False;;;;1610302794;;False;{};gis8zve;False;t3_kuhoss;False;True;t3_kuhoss;/r/anime/comments/kuhoss/naruto_or_one_piece/gis8zve/;1610344321;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IDrewABox;;;[];;;;text;t2_247ihbqr;False;False;[];;Yeah, I like R. Kelly for his music and his music alone;False;False;;;;1610302801;;False;{};gis90df;False;t3_kugzsg;False;True;t1_girtmml;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gis90df/;1610344329;5;True;False;anime;t5_2qh22;;0;[]; -[];;;RykerMerrick;;;[];;;;text;t2_8rp34r0n;False;False;[];;Yeah I know... guess my very unpopular take really narrows down my search doesn’t it haha;False;False;;;;1610303012;;False;{};gis9e9b;True;t3_kuh96b;False;True;t1_gis78yf;/r/anime/comments/kuh96b/can_anyone_recommend_an_anime_thats_similar_in/gis9e9b/;1610344551;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zealousideal_Ebb_238;;;[];;;;text;t2_8nmkui77;False;False;[];;If you want a more palatable one without genuine nightmare fuel there is kekaishi, it only have 1 season of anime thou, so you will need to read the rest, Mc literally able to pursue his dream, no more ghost stuff.;False;False;;;;1610303235;;False;{};gis9peq;False;t3_kuipg9;False;False;t1_gis6gqy;/r/anime/comments/kuipg9/can_somebody_tell_me_the_namy_of_an_horror/gis9peq/;1610344725;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fiirenz;;;[];;;;text;t2_10wfdv;False;False;[];;"Tbh, considering what others have already stated, I can only think about 2. I’m not so sure about them belonging to horror though - -Gantz (please, stay away from the anime and read the manga, which, btw, has already been finished) -> I like to think of it as “Men in Black” for adults, in a certain way - -Alice in Borderland-> it is kinda like Saw regarding the survival games, but it focuses more on well designed games rather than on gore";False;False;;;;1610303781;;False;{};gisabe7;False;t3_kuipg9;False;True;t3_kuipg9;/r/anime/comments/kuipg9/can_somebody_tell_me_the_namy_of_an_horror/gisabe7/;1610345073;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Luke911666;;;[];;;;text;t2_4nhzay4;False;False;[];;"•Higurashi - -•Another (I think, I can’t remember well) - -•Hellsing Ultimate - -•Dorohedoro (eventhough the Anime hast reached the horror elements) - -•Madoka Magica - -•Parasite";False;False;;;;1610303977;;False;{};gisam02;False;t3_kuipg9;False;True;t3_kuipg9;/r/anime/comments/kuipg9/can_somebody_tell_me_the_namy_of_an_horror/gisam02/;1610345246;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nielloscape;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Niello;light;text;t2_160hhg;False;False;[];;Double Decker Doug and Kirill;False;False;;;;1610304432;;False;{};gisbdxj;False;t3_kuh96b;False;True;t3_kuh96b;/r/anime/comments/kuh96b/can_anyone_recommend_an_anime_thats_similar_in/gisbdxj/;1610345687;1;True;False;anime;t5_2qh22;;0;[]; -[];;;themuslimjohncena;;;[];;;;text;t2_5hssiolu;False;False;[];;Ok;False;False;;;;1610304542;;False;{};gisblff;False;t3_kuir6n;False;True;t3_kuir6n;/r/anime/comments/kuir6n/im_looking_for_an_anime/gisblff/;1610345808;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SolomonSinclair;;;[];;;;text;t2_1lf7i8;False;False;[];;">I wish Japanese authors would take more interest in their ""ancient culture"", but it is what it is. - -Given how popular the time period is (and has been) in various forms of media over the past few decades, to them, it's probably akin to WWII movies and games here in America; practically everyone I know groans and rolls their eyes at the idea of yet *another* WWII game.";False;False;;;;1610305149;;False;{};giscs28;False;t3_kugzsg;False;False;t1_gis6qyr;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/giscs28/;1610346511;17;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"I figured that, but european fantasy has always been the most popular setting, and it hasn't declined in popularity at all. - -And we don't see western authors making any popular samurai stories, except nioh. - -Just wish there was more feudal japan era anime, or just any fantasy setting different from your standard european setting. - -magi for example";False;False;;;;1610305362;;False;{};gisd7j1;False;t3_kugzsg;False;True;t1_giscs28;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gisd7j1/;1610346751;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GrayWolfGamer-;;;[];;;;text;t2_1seqpe7v;False;False;[];;This is it, thanks.;False;False;;;;1610305690;;False;{};gisdvz6;False;t3_kuir6n;False;True;t1_gis42nz;/r/anime/comments/kuir6n/im_looking_for_an_anime/gisdvz6/;1610347152;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GrayWolfGamer-;;;[];;;;text;t2_1seqpe7v;False;False;[];;Thanks for your response;False;False;;;;1610305767;;False;{};gise1n6;False;t3_kuir6n;False;True;t1_gisblff;/r/anime/comments/kuir6n/im_looking_for_an_anime/gise1n6/;1610347239;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610306664;;False;{};gisfuqv;False;t3_kugzsg;False;True;t3_kugzsg;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gisfuqv/;1610348242;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;Wolfgod_Holo;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;Still waiting for Spice and Wolf Season 3;light;text;t2_xdcy6;False;False;[];;oro?;False;False;;;;1610306682;;False;{};gisfw2b;False;t3_kugzsg;False;True;t3_kugzsg;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gisfw2b/;1610348264;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mopey_;;;[];;;;text;t2_7mvhxodj;False;False;[];;Otherway round for me, I was bored out of my mind for Overhaul Arc, subsequent two were great;False;False;;;;1610306696;;False;{};gisfx4d;False;t3_kugqte;False;True;t1_girsi3l;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/gisfx4d/;1610348281;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ita_pita;;;[];;;;text;t2_51v3sidt;False;False;[];;In death note the mc is much more psychotic than code Geass although code Geass is fine as well.;False;False;;;;1610306801;;False;{};gisg4ns;False;t3_kuhq4q;False;True;t1_girzzth;/r/anime/comments/kuhq4q/looking_for_psychotic_op_mc/gisg4ns/;1610348394;1;True;False;anime;t5_2qh22;;0;[]; -[];;;golgiapparatus22;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/golgiapparatus34;light;text;t2_58ddokvy;False;False;[];;I watched death note;False;False;;;;1610307258;;False;{};gish1n2;True;t3_kuhq4q;False;True;t1_gisg4ns;/r/anime/comments/kuhq4q/looking_for_psychotic_op_mc/gish1n2/;1610348909;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;Oh hell yes! More of these cute dorks is always welcome!;False;False;;;;1610307814;;False;{};gisi5by;False;t3_kug9sa;False;False;t3_kug9sa;/r/anime/comments/kug9sa/d4dj_petit_mix_mini_anime_announced_starts_the/gisi5by/;1610349521;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;Symphogear XDU x Godzilla is peak bizarre and peak awesome;False;False;;;;1610307864;;False;{};gisi8uf;False;t3_kug9sa;False;False;t1_girysi6;/r/anime/comments/kug9sa/d4dj_petit_mix_mini_anime_announced_starts_the/gisi8uf/;1610349579;6;True;False;anime;t5_2qh22;;0;[]; -[];;;saga999;;;[];;;;text;t2_9ppe9;False;False;[];;Yeah, it's like all the delays from last year got push to this season.;False;False;;;;1610308230;;False;{};gisizji;False;t3_kubxb2;False;True;t1_girbsnp;/r/anime/comments/kubxb2/do_you_think_winter_2021_is_up_there_as_one_of/gisizji/;1610350018;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;"<Killing Stalking> Not for everybody";False;False;;;;1610308473;;False;{};gisjgvh;False;t3_kuipg9;False;True;t3_kuipg9;/r/anime/comments/kuipg9/can_somebody_tell_me_the_namy_of_an_horror/gisjgvh/;1610350285;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChiggaOG;;;[];;;;text;t2_3hcondt;False;True;[];;If there are downhill places in Japan, longboarding is a better alternative for high-speed races.;False;False;;;;1610308473;;False;{};gisjgx0;False;t3_kuh2gz;False;True;t1_girz3qw;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/gisjgx0/;1610350286;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Well, it does matter. I personally enjoyed the Ruroni Kenshin OVA but I’m not ever gonna recommend that to anyone because knowing the author is fucked up after I’ve seen it has made me very unenthusiastic about it;False;True;;comment score below threshold;;1610308508;;False;{};gisjji5;False;t3_kugzsg;False;True;t1_girwc9q;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gisjji5/;1610350327;-14;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Sure, but people aren’t gonna feel like sharing the work.;False;False;;;;1610308533;;False;{};gisjlb1;False;t3_kugzsg;False;False;t1_gis6hjn;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gisjlb1/;1610350355;10;True;False;anime;t5_2qh22;;0;[]; -[];;;voornaam1;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://www.anime-planet.com/users/Max4444;dark;text;t2_3yiwp1ue;False;False;[];;Kuudere and dorodere. Yandere is also good.;False;False;;;;1610308791;;False;{};gisk40g;False;t3_kue4am;False;False;t3_kue4am;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/gisk40g/;1610350647;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mapoztofu;;;[];;;;text;t2_ig4auzn;False;False;[];;"What's next now, a cricket anime? - -Yeah I would be down for it";False;False;;;;1610309286;;False;{};gisl3xb;False;t3_kuh2gz;False;False;t3_kuh2gz;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/gisl3xb/;1610351206;14;True;False;anime;t5_2qh22;;0;[]; -[];;;OwnMenu9847;;;[];;;;text;t2_8v2yokld;False;False;[];;Emerging, Dragonhead and hideout. If you'd like more [here's the top 16 I found recently while looking for some manga.](https://ramenswag.com/16-horror-manga-that-will-give-you-nightmares/);False;False;;;;1610309981;;False;{};gismj3q;False;t3_kuipg9;False;True;t3_kuipg9;/r/anime/comments/kuipg9/can_somebody_tell_me_the_namy_of_an_horror/gismj3q/;1610351980;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Weeb-Prime;;;[];;;;text;t2_3de59da4;False;False;[];;Golf anime when?;False;False;;;;1610309996;;False;{};gismk85;False;t3_kuh2gz;False;False;t1_gisl3xb;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/gismk85/;1610351997;8;True;False;anime;t5_2qh22;;0;[]; -[];;;XLauncher;;;[];;;;text;t2_9mwdw;False;False;[];;"One of my absolute favorite series and protagonists. Kenshin was a big part of what shook me out of my teenage edgelord phase and made me appreciate mercy and compassion as virtues. - -Just a shame about...you know.";False;False;;;;1610310287;;False;{};gisn678;False;t3_kugzsg;False;False;t3_kugzsg;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gisn678/;1610352330;11;True;False;anime;t5_2qh22;;0;[]; -[];;;OneMoreDuncanIdaho;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/a_trisolaran;light;text;t2_i31pk;False;False;[];;"Steins;Gate 0, it lost all the magic from the first season imo. The premise was solid but the execution was so lackluster.";False;False;;;;1610310961;;False;{};gisokr3;False;t3_kugqte;False;True;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/gisokr3/;1610353104;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kit_you_out;;;[];;;;text;t2_13jku5;False;False;[];;"I was going to add ""curling anime"" to this but I found that there was actually a curling manga from 2004.";False;False;;;;1610311125;;False;{};gisows9;False;t3_kuh2gz;False;False;t1_gismk85;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/gisows9/;1610353286;5;True;False;anime;t5_2qh22;;0;[]; -[];;;RealLongJohnSilver;;;[];;;;text;t2_2ejrryfx;False;False;[];;Whats it about;False;False;;;;1610311170;;False;{};gisp07b;True;t3_kuhqdr;False;True;t1_gis5qbi;/r/anime/comments/kuhqdr/looking_for_an_anime_where_two_people_share_a/gisp07b/;1610353338;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RealLongJohnSilver;;;[];;;;text;t2_2ejrryfx;False;False;[];;In what way?;False;False;;;;1610311196;;False;{};gisp248;True;t3_kuhqdr;False;True;t1_gis19ga;/r/anime/comments/kuhqdr/looking_for_an_anime_where_two_people_share_a/gisp248/;1610353369;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;It's a fantasy comedy about a girl transported to another world. At night she turns into a guy with a very distinct personality from herself;False;False;;;;1610311642;;False;{};gisq2d5;False;t3_kuhqdr;False;True;t1_gisp07b;/r/anime/comments/kuhqdr/looking_for_an_anime_where_two_people_share_a/gisq2d5/;1610353902;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nghtmare-Moon;;;[];;;;text;t2_jsig9;False;False;[];;"EEeh I think that's due to the over-playing of THPS game series. . .they went ham on it hard. would've released one or two per console instead and I'd think it would've still been kicking. -Same with Guitar Hero / Rock band franchise.";False;False;;;;1610312031;;False;{};gisqx54;False;t3_kuh2gz;False;True;t1_giry7lc;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/gisqx54/;1610354354;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;Well, when they went full Jackass with Underground 2 and American Wasteland... I think that was the top and the start of the slope downwards...;False;False;;;;1610312114;;False;{};gisr3lp;False;t3_kuh2gz;False;True;t1_gisqx54;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/gisr3lp/;1610354464;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Matrix_A-M;;;[];;;;text;t2_8vqw2qxi;False;False;[];;Aldnoah.Zero season 2 for sure. Could have been the next Code Geass but it dropped the ball hard.;False;False;;;;1610312261;;False;{};gisreuj;False;t3_kugqte;False;False;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/gisreuj/;1610354647;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CyberpunkV2077;;;[];;;;text;t2_2r9n2te8;False;False;[];;Ok?;False;False;;;;1610312429;;False;{};gisrrkr;False;t3_kugzsg;False;False;t1_gisjji5;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gisrrkr/;1610354844;13;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610312814;;False;{};gissk4g;False;t3_kugzsg;False;True;t1_gisfuqv;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gissk4g/;1610355279;18;True;False;anime;t5_2qh22;;0;[]; -[];;;consolefreakedorigin;;;[];;;;text;t2_2baqt95w;False;False;[];;"Broken -Same way as the anime";False;True;;comment score below threshold;;1610313197;;False;{};gistcbj;False;t3_kufuju;False;True;t1_girwet4;/r/anime/comments/kufuju/idoly_pride_new_visual/gistcbj/;1610355704;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;consolefreakedorigin;;;[];;;;text;t2_2baqt95w;False;False;[];;"Generic and bad -Your opinion ?";False;True;;comment score below threshold;;1610313214;;False;{};gistdip;False;t3_kufuju;False;True;t1_girmda3;/r/anime/comments/kufuju/idoly_pride_new_visual/gistdip/;1610355721;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;fduniho;;;[];;;;text;t2_9g1bc;False;False;[];;I was disappointed that the sequel to *The Disastrous Life of Saiki K.* was not dubbed. While most of the anime I've watched has been subbed, the original *Saiki K.* had great English dubs, and I preferred them over the original Japanese vocals. Because of this, I did not watch much of the sequel.;False;False;;;;1610313220;;False;{};gistdxr;False;t3_kugqte;False;True;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/gistdxr/;1610355728;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;Act Age is amazing;False;False;;;;1610313805;;False;{};gisukeg;False;t3_kugzsg;False;True;t1_gisjlb1;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gisukeg/;1610356373;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610313890;;False;{};gisuqli;False;t3_kugzsg;False;True;t1_gisfuqv;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gisuqli/;1610356463;-16;True;False;anime;t5_2qh22;;0;[]; -[];;;SolomonSinclair;;;[];;;;text;t2_1lf7i8;False;False;[];;">And we don't see western authors making any popular samurai stories, except nioh. - -Team Ninja's a Japanese company, though, and, much as it pains me to say it, I wouldn't call Nioh popular; it's a niche game in an already fairly niche genre. The only Western company to produce a popular samurai story would be Sucker Punch with Ghost of Tsushima. - -Anyway, European fantasy is far more prevalent because it's honestly dead simple (thanks to Tolkien): take a bog standard medieval town, slap a couple elves and dwarves in it, add some magic, maybe a few references to mythril or orichalcum, and tada\~ European fantasy. - -Amusingly, a Demon King and their Four Heavenly Kings are a distinctly Japanese thing (one of Oda Nobunaga's titles was Demon King of the Sixth Heaven, while the Shitenno were the four retainers of Minamoto no Yorimitsu/Raikou, all of whom you fight during a mission in Nioh 2's Darkness in the Capital DLC). - -But if you want to go to *actual* European fantasy, based in mythology and folklore, it's a lot more involved and people are far less likely to know about it. The vast majority of people are unlikely to know what a dullahan is, for instance, while most of the anime community likely only knows it from Durarara or MonMusu. - -In that respect, I think Japanese mythology and samurai stories get far more representation than any European stuff not directly descended from Tolkien.";False;False;;;;1610314265;;False;{};gisvhw9;False;t3_kugzsg;False;False;t1_gisd7j1;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gisvhw9/;1610356870;5;True;False;anime;t5_2qh22;;0;[]; -[];;;cyang1213;;;[];;;;text;t2_mujff0x;False;False;[];;Funnily enough. Super Robot Wars Z wrote Seed Destiny so better, that the director didnt like it. While the VA for Shinn, considered the Shinn in SRW Z to be the true Shinn.;False;False;;;;1610314642;;False;{};gisw9r1;False;t3_kugqte;False;True;t1_gis59h0;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/gisw9r1/;1610357300;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GoldRedBlue;;;[];;;;text;t2_kw5g3;False;False;[];;"> It's extremely rare to see ANY samurai anime/manga pop up now of days. - -Their live action TV industry takes care of that. It's practically a requirement that NHK run a samurai drama every year.";False;False;;;;1610314698;;False;{};giswdye;False;t3_kugzsg;False;False;t1_gis6qyr;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/giswdye/;1610357364;9;True;False;anime;t5_2qh22;;0;[]; -[];;;GoldRedBlue;;;[];;;;text;t2_kw5g3;False;False;[];;"It was great for the first 12 episodes. - -Everything went downhill as soon as the first season's characters took over the spotlight and reasserted their status as main characters..";False;False;;;;1610314842;;False;{};giswokv;False;t3_kugqte;False;True;t1_gis59h0;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/giswokv/;1610357519;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GoldRedBlue;;;[];;;;text;t2_kw5g3;False;False;[];;"> I swear they used the character popularity polls as a basis for who who lives and who dies - -I have no proof of this but I still believe to this day the actual reason [why](/s ""Shinn and Luna"") become a couple out of nowhere is because the production crew found out their voice actors were dating and thought it'd be cute to have the show reflect that. That relationship comes *completely* out of left field.";False;False;;;;1610314955;;False;{};giswx7w;False;t3_kugqte;False;True;t1_gis17xk;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/giswx7w/;1610357646;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;I think there are too many idol anime this season , something good for those who like idols but I am not sure all will be good (probably not).;False;False;;;;1610314956;;False;{};giswx8y;False;t3_kufuju;False;True;t3_kufuju;/r/anime/comments/kufuju/idoly_pride_new_visual/giswx8y/;1610357646;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;"Honestly Morosawa was an incredibly weak writer, she got the job probably because Sunrise saw ""Oh Dendoh did alright numbers"" and wanted Fukuda for SEED, who wanted his wife onboard.";False;False;;;;1610315142;;False;{};gisxb2h;False;t3_kugqte;False;True;t1_giswx7w;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/gisxb2h/;1610357850;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheWrittenLore;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Traynjos000;light;text;t2_ouc2a;False;False;[];;Air Gear is somewhat similar.;False;False;;;;1610315274;;False;{};gisxkvf;False;t3_kuh2gz;False;True;t3_kuh2gz;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/gisxkvf/;1610357998;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AhoWaifu;;;[];;;;text;t2_388gzex0;False;False;[];;Really doubt that's the reason why;False;False;;;;1610315301;;False;{};gisxmw5;False;t3_kugzsg;False;True;t1_gisjlb1;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gisxmw5/;1610358029;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sparklingbluelight;;;[];;;;text;t2_8e94c;False;False;[];;Eureka Seven Ao. Completely ignores all the characters from the original series (including even the MC’s siblings!) to do some bullshit time travel thing that ruins the romance of the original ending. Most fans just pretend Ao doesn’t even exist because it’s such disrespect to the original world building and characters.;False;False;;;;1610315304;;False;{};gisxn2v;False;t3_kugqte;False;True;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/gisxn2v/;1610358032;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610315425;;False;{};gisxw9a;False;t3_kugzsg;False;True;t1_gisuqli;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gisxw9a/;1610358167;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Sidotre;;;[];;;;text;t2_6lxj7vhc;False;False;[];;TSUN ROCKS;False;False;;;;1610315631;;False;{};gisyc2r;False;t3_kue4am;False;True;t3_kue4am;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/gisyc2r/;1610358404;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sidotre;;;[];;;;text;t2_6lxj7vhc;False;False;[];;what do you mean by telling new meaning?;False;False;;;;1610316097;;False;{};giszbep;False;t3_kue4am;False;True;t1_giree2s;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/giszbep/;1610358929;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610316227;;1610317216.0;{};giszlfy;False;t3_kugzsg;False;True;t1_gisxw9a;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/giszlfy/;1610359074;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;panosk1304;;;[];;;;text;t2_19qvhtzg;False;False;[];;One Piece is far superior than Naruto and you will se the reason its number 1 anime for 20 years now. Cant believe that you will find anything worse than Boruto(anime and manga) since its a sacrilege of a sequel but you didn't say if you liked it so i...;False;False;;;;1610316400;;False;{};giszy5t;False;t3_kuhoss;False;True;t3_kuhoss;/r/anime/comments/kuhoss/naruto_or_one_piece/giszy5t/;1610359267;1;True;False;anime;t5_2qh22;;0;[]; -[];;;eno-tita;;;[];;;;text;t2_4loantxr;False;False;[];;This series was one of my earliest shows ever. I still love it, and Kenshin is one of the greatest main characters ever.;False;False;;;;1610317002;;False;{};git19q8;False;t3_kugzsg;False;False;t3_kugzsg;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/git19q8/;1610359981;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;The guy can become an *empty* bear, and the girl gets inside to control him, he does too.;False;False;;;;1610317480;;False;{};git29mv;False;t3_kuhqdr;False;True;t1_gisp248;/r/anime/comments/kuhqdr/looking_for_an_anime_where_two_people_share_a/git29mv/;1610360522;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610317546;;False;{};git2elp;False;t3_kugzsg;False;True;t1_giszlfy;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/git2elp/;1610360595;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Quiddity131;;MAL;[];;http://myanimelist.net/profile/Quiddity131;dark;text;t2_f3bdc;False;False;[];;"I agree with you; good at the start; but the need to cram Kira ""Gary Stu"" AKA ""Jesus"" Yamato and Lacus ""Mary Sue"" Clyne down our throats was very frustrating, as were numerous other things.";False;False;;;;1610317736;;False;{};git2t7n;False;t3_kugqte;False;True;t1_giswokv;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/git2t7n/;1610360813;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Quiddity131;;MAL;[];;http://myanimelist.net/profile/Quiddity131;dark;text;t2_f3bdc;False;False;[];;"> I swear they used the character popularity polls as a basis for who who lives and who dies. - -My recollection is that for at least one Gundam Seed character[Gundam Seed spoilers](/s ""Andy"") they were supposed to be dead and very clearly died on screen, then just got brought back with a poor explanation because they liked the voice actor.";False;False;;;;1610317838;;False;{};git313q;False;t3_kugqte;False;True;t1_gis17xk;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/git313q/;1610360930;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KRUBOLO99;;;[];;;;text;t2_6y11plyn;False;False;[];;x;False;False;;;;1610317898;;False;{};git35wa;False;t3_kugzsg;False;True;t3_kugzsg;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/git35wa/;1610361000;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610317921;;False;{};git37nq;False;t3_kugzsg;False;True;t1_giszlfy;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/git37nq/;1610361028;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610318089;;False;{};git3k8l;False;t3_kugzsg;False;True;t1_git37nq;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/git3k8l/;1610361216;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610318405;;False;{};git47wr;False;t3_kugzsg;False;True;t1_git2elp;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/git47wr/;1610361570;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;God, SEED was a fucking mess.;False;False;;;;1610318426;;False;{};git49jw;False;t3_kugqte;False;True;t1_git313q;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/git49jw/;1610361594;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ShoujoAiEnthusiast;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/ShoujoAiEnthusiast;light;text;t2_4jdvod3a;False;False;[];;The new conceived meaning for 'tsundere' is: One shows aggression (tsun) towards another in order to hide their feelings of affection (dere), 照れ隠し (terekakushi). Example: Misaka Mikoto from A Certain Scientific Railgun. The original meaning is: One is aggressive (tsun) and progressively becomes more affectionate (dere) over the time spent with another. They are rarely either conscious of their feelings of affection, or do not like the other person at all, at the beginning of the relationship. Example: Taiga from Toradora. Note that in the new meaning, they still most likely will become more dere over time.;False;False;;;;1610318687;;False;{};git4tsm;False;t3_kue4am;False;True;t1_giszbep;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/git4tsm/;1610361898;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeTalks101;;;[];;;;text;t2_36v6e5ak;False;False;[];;Lol I would love to see how a Cricket and Golf anime would look.;False;False;;;;1610318880;;False;{};git5821;True;t3_kuh2gz;False;True;t1_gismk85;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/git5821/;1610362113;2;True;False;anime;t5_2qh22;;0;[]; -[];;;robotboy199;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;http://myanimelist.net/profile/virtualityy;light;text;t2_687tq;False;False;[];;"i would not call modern anime artstyle ""near realism"" at all lmfao";False;False;;;;1610319948;;False;{};git7frn;False;t3_kuh96b;False;True;t1_girvsaw;/r/anime/comments/kuh96b/can_anyone_recommend_an_anime_thats_similar_in/git7frn/;1610363322;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EvilTomte;;;[];;;;text;t2_5uchn;False;False;[];;Still, there's an argument for boycotting his music because of who he is. There are alternatives out there.;False;False;;;;1610319990;;False;{};git7irn;False;t3_kugzsg;False;False;t1_gis90df;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/git7irn/;1610363367;9;True;False;anime;t5_2qh22;;0;[]; -[];;;messem10;;;[];;;;text;t2_6pcwi;False;False;[];;Eureka Seven is kinda close as well.;False;False;;;;1610320243;;False;{};git81mk;False;t3_kuh2gz;False;False;t1_girx8sr;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/git81mk/;1610363649;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610321025;;False;{};git9mzo;False;t3_kugzsg;False;True;t1_git47wr;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/git9mzo/;1610364519;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610321495;;False;{};gitakse;False;t3_kugzsg;False;True;t1_git3k8l;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gitakse/;1610365041;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610321958;;1610322807.0;{};gitbiye;False;t3_kugzsg;False;True;t1_gitakse;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gitbiye/;1610365579;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610322018;;False;{};gitbnin;False;t3_kugzsg;False;True;t1_gitbiye;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gitbnin/;1610365651;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RykerMerrick;;;[];;;;text;t2_8rp34r0n;False;False;[];;Well no obviously not but compare the style of a 90s episode of detective conan to the latest season of attack on titan and then tell me it’s not a lot sharper and more realistic;False;False;;;;1610322358;;False;{};gitcc82;True;t3_kuh96b;False;True;t1_git7frn;/r/anime/comments/kuh96b/can_anyone_recommend_an_anime_thats_similar_in/gitcc82/;1610366038;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610323695;;1610327004.0;{};gitf227;False;t3_kugzsg;False;True;t1_git9mzo;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gitf227/;1610367614;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Cryzzalis;;MAL a-amq;[];;http://myanimelist.net/animelist/Charaxify;dark;text;t2_7j04d;False;False;[];;Sure, some people will feel like that and that's unavoidable. I just don't think that's the right mindset to have, but that's just my opinion on it.;False;False;;;;1610324470;;False;{};gitgn2o;False;t3_kugzsg;False;True;t1_gisjlb1;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gitgn2o/;1610368559;2;True;False;anime;t5_2qh22;;0;[]; -[];;;the-floor_is-lava;;;[];;;;text;t2_3x7igc7l;False;False;[];;"Lots of people talking about this being forgotten but Warner Brothers are currently working on a live action adaptation of the Trust & Betrayal arc. Kenshin’s still going strong even if the author is a trash human being.";False;False;;;;1610324484;;False;{};gitgo1u;False;t3_kugzsg;False;False;t3_kugzsg;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gitgo1u/;1610368577;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;Oh wow. I like it! They placed Mana behind the two girls instead of being in front in the first key visual. Subtle but actually clever and something you'll understand once you've seen the first episode.;False;False;;;;1610324652;;False;{};gith0lj;False;t3_kufuju;False;False;t3_kufuju;/r/anime/comments/kufuju/idoly_pride_new_visual/gith0lj/;1610368798;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610326370;;False;{};gitkj4t;False;t3_kugzsg;False;True;t1_gitbnin;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gitkj4t/;1610371043;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Well if you’re suggest them a pirated source I think it’s fine, but giving more money to the author is pretty sucky imo;False;False;;;;1610326376;;False;{};gitkjm3;False;t3_kugzsg;False;True;t1_gitgn2o;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gitkjm3/;1610371051;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CouchRadish;;;[];;;;text;t2_6fxtr;False;False;[];;"Unless the actions done by an artist directly attack the art they created (ex: it's hard to watch Bill Cosby's humor built around an image of him being a goofy gun grandpa knowing the actions he's done now) it should be easy to separate the art from the artist. - -Now I don't judge people for not wanting to financially support said artist if watching their art.";False;False;;;;1610327155;;False;{};gitm27n;False;t3_kugzsg;False;False;t1_girwspn;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gitm27n/;1610372119;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610327203;;False;{};gitm5fu;False;t3_kugzsg;False;True;t1_gitbnin;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gitm5fu/;1610372177;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610327760;;False;{};gitn7ju;False;t3_kugzsg;False;True;t1_gitm5fu;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gitn7ju/;1610372867;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610328169;;False;{};gito1qy;False;t3_kugzsg;False;True;t1_gitn7ju;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gito1qy/;1610373395;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;The Sankarea anime;False;False;;;;1610328239;;False;{};gito6v1;False;t3_kuipg9;False;True;t3_kuipg9;/r/anime/comments/kuipg9/can_somebody_tell_me_the_namy_of_an_horror/gito6v1/;1610373486;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SleepTightLilPuppy;;;[];;;;text;t2_7ry8kth;False;False;[];;Another thing that's inspired by Skateboarding culture is 100% Eureka Seven. Can only recommend that show, one of the few shows that made me cry when it was over, simply because it was over and I couldn't see more of it.;False;False;;;;1610328606;;False;{};gitozcy;False;t3_kuh2gz;False;True;t1_gis0glb;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/gitozcy/;1610374020;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aqrt21;;;[];;;;text;t2_4laedvos;False;False;[];;Anna Nishikinomiya;False;False;;;;1610332331;;False;{};gitwtxp;False;t3_kue4am;False;True;t1_giryrvr;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/gitwtxp/;1610379221;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Diamond90909;;;[];;;;text;t2_s9vbl0m;False;False;[];;lol people downvoting this. I’ve never liked these kinds of anime so ill give you an upvote;False;True;;comment score below threshold;;1610333163;;False;{};gityh4c;False;t3_kufuju;False;True;t1_gistcbj;/r/anime/comments/kufuju/idoly_pride_new_visual/gityh4c/;1610380339;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;SyberGear;;;[];;;;text;t2_i0iv0ty;False;False;[];;Oh go fuck yourself.;False;False;;;;1610333535;;False;{};gitz86b;False;t3_kugzsg;False;True;t1_girtbf9;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/gitz86b/;1610380868;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MrMooster915;;;[];;;;text;t2_r32le0e;False;False;[];;Fencing anime when?;False;False;;;;1610336615;;False;{};giu531y;False;t3_kuh2gz;False;True;t1_gismk85;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/giu531y/;1610385186;2;True;False;anime;t5_2qh22;;0;[]; -[];;;californication760;;;[];;;;text;t2_2v53drf7;False;False;[];;I heard AD police was bad, is it still worth the watch?;False;False;;;;1610337914;;False;{};giu7l02;False;t3_kuh96b;False;True;t1_girvikj;/r/anime/comments/kuh96b/can_anyone_recommend_an_anime_thats_similar_in/giu7l02/;1610386963;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"Not the only sport without an anime - -Dodgeball doesn't have one - -Cricket - -Curling - -Chess - -Badminton - -bowling etc...";False;False;;;;1610338020;;False;{};giu7sj1;False;t3_kuh2gz;False;True;t3_kuh2gz;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/giu7sj1/;1610387169;2;True;False;anime;t5_2qh22;;0;[]; -[];;;californication760;;;[];;;;text;t2_2v53drf7;False;False;[];;No guns life;False;False;;;;1610338041;;False;{};giu7u0o;False;t3_kuh96b;False;True;t3_kuh96b;/r/anime/comments/kuh96b/can_anyone_recommend_an_anime_thats_similar_in/giu7u0o/;1610387205;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BasedFunnyValentine;;;[];;;;text;t2_2dv5gtho;False;False;[];;Naruto easy;False;False;;;;1610338475;;False;{};giu8mtc;False;t3_kuhoss;False;True;t3_kuhoss;/r/anime/comments/kuhoss/naruto_or_one_piece/giu8mtc/;1610387766;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610339105;;False;{};giu9t72;False;t3_kugzsg;False;True;t1_gisn678;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/giu9t72/;1610388610;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610339371;;False;{};giuaav3;False;t3_kugzsg;False;True;t1_gissk4g;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/giuaav3/;1610388984;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610339561;;False;{};giuan57;False;t3_kugzsg;False;True;t1_giuaav3;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/giuan57/;1610389226;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SocialLoser739;;;[];;;;text;t2_4ttuko0s;False;False;[];;"Nanatsu no taizai season 3 - -Tokyo ghoul";False;False;;;;1610340024;;False;{};giubhd9;False;t3_kugqte;False;True;t3_kugqte;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/giubhd9/;1610389805;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lordofdepression;;;[];;;;text;t2_75f08;False;False;[];;"Funnily enough, in the manga Ikki is quite proficient at skateboarding due to his experience in Air Trekking. - -He sometimes use skateboard when he doesn't have his AT with him.";False;False;;;;1610341346;;False;{};giudop7;False;t3_kuh2gz;False;True;t1_girtsgk;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/giudop7/;1610391425;2;True;False;anime;t5_2qh22;;0;[]; -[];;;creepyfishman;;;[];;;;text;t2_70bnxgg1;False;False;[];;Thought the girl in the middle was wearing airpods for a second;False;False;;;;1610341662;;False;{};giue66k;False;t3_kufuju;False;True;t3_kufuju;/r/anime/comments/kufuju/idoly_pride_new_visual/giue66k/;1610391763;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cin_anime;;;[];;;;text;t2_93wi75rs;False;False;[];;These girls are pretty;False;False;;;;1610341909;;False;{};giuejzu;False;t3_kufuju;False;False;t3_kufuju;/r/anime/comments/kufuju/idoly_pride_new_visual/giuejzu/;1610392034;1;True;False;anime;t5_2qh22;;0;[]; -[];;;R4hu1M5;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/R4hu1M5;light;text;t2_f988k74;False;False;[];;Separate the art from the artist. The horrible dude is the mangaka, doesn't stop an _adaptation_ of his work (not even his actual work) from being great.;False;False;;;;1610342098;;False;{};giueul4;False;t3_kugzsg;False;False;t1_gisjji5;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/giueul4/;1610392238;4;True;False;anime;t5_2qh22;;0;[]; -[];;;izaihb;;;[];;;;text;t2_1swtbq;False;False;[];;What? I thought there was a badminton show that aired not too long ago?;False;False;;;;1610342157;;False;{};giuexu8;False;t3_kuh2gz;False;False;t1_giu7sj1;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/giuexu8/;1610392300;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Dude I listen to Kanye all the time, definitely capable of separating the art from the artist. All I said is that I’m not gonna recommend the series to anyone, I don’t think that should be too hot of a take;False;False;;;;1610342632;;False;{};giufnlo;False;t3_kugzsg;False;True;t1_giueul4;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/giufnlo/;1610392814;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cin_anime;;;[];;;;text;t2_93wi75rs;False;False;[];;I nee to figure out how to do edits like this;False;False;;;;1610342734;;False;{};giuft13;False;t3_kufbde;False;True;t3_kufbde;/r/anime/comments/kufbde/sword_art_online_anime_mvᴴᴰ/giuft13/;1610392921;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkConan1412;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/DarkConan1412;light;text;t2_169qp4;False;False;[];;This was my first anime series that got me into anime as a hobby in 2008-2009. It’s still one of my favorite shounen battle stories. Happy Anniversary Rurouni Kenshin!;False;False;;;;1610343028;;False;{};giug8m6;False;t3_kugzsg;False;True;t3_kugzsg;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/giug8m6/;1610393247;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FlagRaised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;http://myanimelist.net/animelist/RaiseYourFlag;light;text;t2_901xfz3t;False;False;[];;Yes, [Hanebado!](https://myanimelist.net/anime/37259/Hanebado), Summer 2018.;False;False;;;;1610343135;;False;{};giugegw;False;t3_kuh2gz;False;False;t1_giuexu8;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/giugegw/;1610393363;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkConan1412;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/DarkConan1412;light;text;t2_169qp4;False;False;[];;Yeah, it is. We just can’t have heroes. Though I guess that’s why people separate the art from the artist.;False;False;;;;1610343159;;False;{};giugfqp;False;t3_kugzsg;False;True;t1_gisn678;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/giugfqp/;1610393388;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkConan1412;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/DarkConan1412;light;text;t2_169qp4;False;False;[];;"Tsundere. I just love them so much. Hands down favorite dere. The chase. It’s all about the chase. I also like kuudere and whatever Holo from Spice & Wolf falls under. - - -Favorites: - - -•Taiga Aisaka (Toradora) - -•Misaki Takahashi (Junjo Romantica) - -•Akito Hayama (Kodocha) - -•Ranma/Akane (Ranma 1/2) - -•Ogiue (Genshiken) - -•Yukino Miyazawa (Kare Kano)";False;False;;;;1610343733;;1610345358.0;{};giuha88;False;t3_kue4am;False;True;t3_kue4am;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/giuha88/;1610393960;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkConan1412;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/DarkConan1412;light;text;t2_169qp4;False;False;[];;I find dere dere pretty boring and bland too. Don’t understand the love.;False;False;;;;1610345409;;False;{};giujm2j;False;t3_kue4am;False;False;t1_girej3h;/r/anime/comments/kue4am/whats_your_favorite_type_of_dere/giujm2j/;1610395620;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zay0_;;;[];;;;text;t2_8xxheab9;False;False;[];;I wanna watch this man but heard the creator was on some pedo shit;False;False;;;;1610345745;;False;{};giuk2fy;False;t3_kugzsg;False;True;t3_kugzsg;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/giuk2fy/;1610395965;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;1000000thSubscriber;;;[];;;;text;t2_15lqqv;False;False;[];;Only in an anime sub would this comment get downvoted;False;False;;;;1610346412;;False;{};giuky81;False;t3_kugzsg;False;False;t1_girxr9q;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/giuky81/;1610396592;7;True;False;anime;t5_2qh22;;0;[]; -[];;;N1gHtMaRe99;;;[];;;;text;t2_4hm66djz;False;False;[];;We are already getting a Kabaddi anime next season so maybe a cricket one isn't far away;False;False;;;;1610346701;;False;{};giulbmr;False;t3_kuh2gz;False;True;t1_gisl3xb;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/giulbmr/;1610396849;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;Around the first half is kinda meh but after it picks up it gets really good;False;False;;;;1610350425;;False;{};giuq3dd;False;t3_kugqte;False;True;t1_girv4hr;/r/anime/comments/kugqte/what_was_the_most_disappointing_sequel_you_have/giuq3dd/;1610400218;1;True;False;anime;t5_2qh22;;0;[]; -[];;;linkinstreet;;;[];;;;text;t2_71lbm;False;True;[];;[4th Avenue Cafe](https://www.youtube.com/watch?v=F5HtEXSzENQ) best ED and introduced me to L'Arc en Ciel;False;False;;;;1610350434;;False;{};giuq3tp;False;t3_kugzsg;False;True;t3_kugzsg;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/giuq3tp/;1610400226;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KingOfOddities;;;[];;;;text;t2_mxvhzxf;False;False;[];;I can assure you, it had none of whatever shit the author was into. Despite what happened, it's still a darn good series and I doubt the author get money from it anymore.;False;False;;;;1610351204;;False;{};giuraco;False;t3_kugzsg;False;True;t1_giuk2fy;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/giuraco/;1610400946;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cryzzalis;;MAL a-amq;[];;http://myanimelist.net/animelist/Charaxify;dark;text;t2_7j04d;False;False;[];;To an extent I understand feeling that way, but it's also kinda shitty to be recommending taking away money from all the staff members of the anime just for something the author did. Feels like you're letting innocent hard working civilians get caught in the crossfire of your disdain for a single person, and that's not cool at all.;False;False;;;;1610353235;;False;{};giuuc1o;False;t3_kugzsg;False;True;t1_gitkjm3;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/giuuc1o/;1610402911;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Azaleal;;;[];;;;text;t2_211mloth;False;False;[];;hoo boiii, couldn't agree more..;False;False;;;;1610355130;;False;{};giuwzyz;False;t3_kugzsg;False;False;t1_giuq3tp;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/giuwzyz/;1610404543;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610355171;;False;{};giux23w;False;t3_kugzsg;False;True;t1_girtmml;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/giux23w/;1610404577;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mudamudamudaman;;;[];;;;text;t2_4zv5esiu;False;False;[];;TX but I don't think I'll read it;False;False;;;;1610355507;;1610355819.0;{};giuxjmh;False;t3_kuipg9;False;False;t1_gisjgvh;/r/anime/comments/kuipg9/can_somebody_tell_me_the_namy_of_an_horror/giuxjmh/;1610404861;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mudamudamudaman;;;[];;;;text;t2_4zv5esiu;False;False;[];;Tx;False;False;;;;1610355515;;False;{};giuxk01;False;t3_kuipg9;False;True;t1_gito6v1;/r/anime/comments/kuipg9/can_somebody_tell_me_the_namy_of_an_horror/giuxk01/;1610404867;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mudamudamudaman;;;[];;;;text;t2_4zv5esiu;False;False;[];;"TX but I don't think I will watch the animes on that list, sorry - -Like what part of those mangas have happy endings, in one everybody fucking dies, the other isn't over and the third is definitely bad, like, I appreciate the effort but please, choose a little bit better when recommending a manga";False;False;;;;1610355521;;1610356168.0;{};giuxkcs;False;t3_kuipg9;False;True;t1_gismj3q;/r/anime/comments/kuipg9/can_somebody_tell_me_the_namy_of_an_horror/giuxkcs/;1610404872;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mudamudamudaman;;;[];;;;text;t2_4zv5esiu;False;False;[];;"Did madoka end with a happy ending, didn't everybody just disappeared forever. - -Are you a troll or have they made more seasons?";False;False;;;;1610355617;;False;{};giuxp9w;False;t3_kuipg9;False;True;t1_gisam02;/r/anime/comments/kuipg9/can_somebody_tell_me_the_namy_of_an_horror/giuxp9w/;1610404953;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mudamudamudaman;;;[];;;;text;t2_4zv5esiu;False;False;[];;OK, it was pretty great, thanks;False;False;;;;1610356322;;False;{};giuyiv5;False;t3_kuipg9;False;True;t1_gito6v1;/r/anime/comments/kuipg9/can_somebody_tell_me_the_namy_of_an_horror/giuyiv5/;1610405475;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"Glad to hear. The manga jumped the shark a bit and is definitely less happy all around. - -I think Gakkou Gurashi while being heavy throughout has an optimistic outlook and the manga ending is not bad";False;False;;;;1610357799;;False;{};giuzynk;False;t3_kuipg9;False;True;t1_giuyiv5;/r/anime/comments/kuipg9/can_somebody_tell_me_the_namy_of_an_horror/giuzynk/;1610406454;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"Madoka has no gut punch ending and there is the movie after all. I'd say the ending is as dark or happy as you want it to be. - -Maybe Soul Eater is not bad either. Has spooky vibes but no horrible ending even if the manga ends much better narratively";False;False;;;;1610357880;;False;{};giv01gt;False;t3_kuipg9;False;True;t1_giuxp9w;/r/anime/comments/kuipg9/can_somebody_tell_me_the_namy_of_an_horror/giv01gt/;1610406503;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vash4073;;;[];;;;text;t2_baro0;False;False;[];;I'll recommend it twice as hard to as many people as possible to make up for the people you missed;False;False;;;;1610359993;;False;{};giv2kzf;False;t3_kugzsg;False;True;t1_giufnlo;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/giv2kzf/;1610408057;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jai137;;;[];;;;text;t2_zdc3d;False;False;[];;That's the only reason people know about it;False;False;;;;1610362298;;False;{};giv5urv;False;t3_kugzsg;False;False;t1_girwc9q;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/giv5urv/;1610409787;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ghxsrfrxnck;;;[];;;;text;t2_3fxzfuu1;False;False;[];;It's not. Since skating is getting popular again the mangaka hopped on the hype train. They ride skateboards, yes, but the show has nothing to do with skateboarding. These guys have races like its the fast and furious. I just hope we'll get an anime someday that really gets skateboarding.;False;False;;;;1610368055;;False;{};givfpwg;False;t3_kuh2gz;False;True;t3_kuh2gz;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/givfpwg/;1610414649;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Cryten0;;;[];;;;text;t2_gmn4d;False;False;[];;I had the first 3 dvd's as one of my first anime I had pysically. That was back in the day of 2-4 episodes a dvd. So it only covered the first arc. I wonder if I should try and dig up the rest. Would probably be very shonen actiony these days since it toned the violence way down. Cause damn did things go gruesome in samurai x.;False;False;;;;1610371152;;False;{};givlb3p;False;t3_kugzsg;False;False;t3_kugzsg;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/givlb3p/;1610417690;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rokusi;;;[];;;;text;t2_4cnt8;False;False;[];;You underestimate how absurdly popular the series was.;False;False;;;;1610372246;;False;{};givndms;False;t3_kugzsg;False;True;t1_giv5urv;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/givndms/;1610418799;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Yeah it’s nuanced, but that’s just the stance I have on it. I’m not gonna lose sleep or anything if you disagree, because the different perspectives have their merits here;False;False;;;;1610372717;;False;{};givob0z;False;t3_kugzsg;False;False;t1_giuuc1o;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/givob0z/;1610419324;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Benegesser;;;[];;;;text;t2_6k819khx;False;False;[];;"Should´ve gotten an anime remake on the 20th anniversary before the author got caught. - -The chances for a new anime now are not good, although the movies, stage play and a new manga are currently ongoing..";False;False;;;;1610373391;;False;{};givpotc;False;t3_kugzsg;False;True;t3_kugzsg;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/givpotc/;1610420089;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Solidsnipe15;;;[];;;;text;t2_mj5a4;False;False;[];;Deciding to go back and watch this anime 5-8 years after it aired on toonami got me back into watching anime. Now I'm hooked for good... Thanks Ruroni Kenshin;False;False;;;;1610374955;;False;{};givsyvv;False;t3_kugzsg;False;True;t3_kugzsg;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/givsyvv/;1610421974;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrawnProwler;;;[];;;;text;t2_ejzu0;False;False;[];;"I'd say it's still skating, but you're right that the skating in the show isn't like ""actual"" skating. It's more long boarding with street elements. It's not really realistic skating, but they're still doing stuff like ollies and slides.";False;False;;;;1610375751;;1610376325.0;{};givuqa9;False;t3_kuh2gz;False;True;t1_givfpwg;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/givuqa9/;1610422939;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Martinik29;;;[];;;;text;t2_ujpqt;False;False;[];;Who said there won't be tragedy?;False;False;;;;1610375963;;False;{};givv6sw;False;t3_kuj1bm;False;True;t1_givuton;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givv6sw/;1610423218;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ghxsrfrxnck;;;[];;;;text;t2_3fxzfuu1;False;False;[];;Its like if tony hawk downhill jam was an anime;False;False;;;;1610376276;;False;{};givvwkr;False;t3_kuh2gz;False;True;t1_givuqa9;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/givvwkr/;1610423632;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"The whole video is poking fun at shows where the MC starts off shit but gets better over time. - -Nobody is saying the MC won't get better, just that sometimes it takes awhile but sourcereaders seem to struggle understanding that.";False;False;;;;1610376331;;False;{};givw12g;False;t3_kuj1bm;False;False;t1_givu3vp;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givw12g/;1610423701;4;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;By unaffected, I mean the noise doesn't bother him. He can concentrate despite all the fuss.;False;False;;;;1610376375;;False;{};givw4ji;False;t3_kuj1bm;False;True;t1_gitn9mh;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givw4ji/;1610423751;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rosencrantz14;;;[];;;;text;t2_7iyu5;False;False;[];;"It's the Seinfeld of Isekai. All those tropes of Reincarnation Isekai? *This is where they were made.* - -Mushoku Tensei is why ""Truck-kun"" is even a thing. - -So yeah, it's gonna seem tropey.";False;False;;;;1610376383;;False;{};givw562;False;t3_kuj1bm;False;True;t1_git9riq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givw562/;1610423770;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shizzi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://anilist.co/user/Mivy/;light;text;t2_gfpz3;False;False;[];;I love the artstyle so much when i first saw the trailer i fell in love less than a nanosecond;False;False;;;;1610376607;;False;{};givwno9;False;t3_kuj1bm;False;False;t1_gis5ihv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givwno9/;1610424045;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Cire101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cire101;light;text;t2_oryv2;False;False;[];;Well you’re implying you know there is tragedy but the show, aside from what I mentioned about the parents, has not led me at least to believe that there won’t be. I’m purely speculating but it seems you’re a source material reader lol;False;False;;;;1610376766;;False;{};givx0r0;False;t3_kuj1bm;False;True;t1_givv6sw;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givx0r0/;1610424245;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shizzi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://anilist.co/user/Mivy/;light;text;t2_gfpz3;False;False;[];;I'm here !;False;False;;;;1610377000;;False;{};givxkbe;False;t3_kuj1bm;False;True;t1_gis8y8c;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givxkbe/;1610424560;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Florac;;;[];;;;text;t2_vy0sf;False;False;[];;First 6. 6 volumes is standard pacing for 2 cour shows and volume 6 is by far the best stopping point, since that ends the first arc. Volume 7 is basicly setup for the second arc.;False;False;;;;1610377229;;False;{};givy3ay;False;t3_kuj1bm;False;False;t1_givj87r;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givy3ay/;1610424851;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AsuraTheDestructor;;;[];;;;text;t2_wlndg;False;False;[];;OH YEAAAAAH!;False;False;;;;1610377234;;False;{};givy3uk;False;t3_kuj1bm;False;True;t1_gity7oq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givy3uk/;1610424860;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Florac;;;[];;;;text;t2_vy0sf;False;False;[];;Well, animation wise, episode 2 is just as good, so I'm not so sure;False;False;;;;1610377279;;False;{};givy7lg;False;t3_kuj1bm;False;True;t1_givtvse;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givy7lg/;1610424917;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JUST_CHATTING_FAPPER;;;[];;;;text;t2_2o2uyt3s;False;False;[];;He does get better however he will always be trashy and if they don't tune some things down you'll probably not be able to watch this anime.;False;False;;;;1610377351;;False;{};givydd6;False;t3_kuj1bm;False;True;t1_gis55cq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givydd6/;1610425008;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;Hope they off balance it with more good elements like they did in this episode!;False;False;;;;1610377494;;False;{};givypl6;False;t3_kuj1bm;False;True;t1_givydd6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givypl6/;1610425185;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PhilosopherJack;;MAL;[];;http://myanimelist.net/animelist/philosopherjack;dark;text;t2_mx4ip;False;False;[];;I think a major part of that is the VA being Sugita lol;False;False;;;;1610377826;;False;{};givzgsg;False;t3_kuj1bm;False;True;t1_gisknsk;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givzgsg/;1610425592;3;True;False;anime;t5_2qh22;;0;[]; -[];;;zool714;;;[];;;;text;t2_11y457;False;False;[];;Oh I love when fantasy shows get into detail the intricacies of how their world works especially for magic. Not really a big fan of “baseless” magic, so to see the show bringing us through the mechanics of using magic is really satisfying. Also being reincarnated as an infant gave me 8th Son vibes a few season back. Although it had some good moments, it was mostly a meh show so hopefully this doesn’t end up like that.;False;False;;;;1610377886;;False;{};givzm6j;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givzm6j/;1610425670;1;True;False;anime;t5_2qh22;;0;[]; -[];;;electric_anteater;;;[];;;;text;t2_ocq5m;False;False;[];;Source reader or not, isn't the concept of character development something basic and obvious? Would you really prefer every anime to have a flawless protagonist from the start?;False;False;;;;1610377894;;False;{};givzmuo;False;t3_kuj1bm;False;True;t1_givw12g;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givzmuo/;1610425678;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;NigOtaku;;;[];;;;text;t2_k9ookcf;False;False;[];;Holy heck studio bind did good for their first work.;False;False;;;;1610377900;;False;{};givznez;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givznez/;1610425687;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;You might as well leave and go watch your lame skater anime;False;False;;;;1610377930;;False;{};givzpze;False;t3_kuj1bm;False;True;t1_gislod7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/givzpze/;1610425724;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GeorgeRRZimmerman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CoupleOWeebs;light;text;t2_gunkt;False;False;[];;"Yes, also the same VA as the main character in Dogeza. - -I'm convinced that Sugita's ultimate fate is voicing degenerate narrators. I'm in.";False;False;;;;1610378709;;False;{};giw1joj;False;t3_kuj1bm;False;True;t1_gis62u2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giw1joj/;1610426721;1;True;False;anime;t5_2qh22;;0;[]; -[];;;draconk;;;[];;;;text;t2_b4fos;False;False;[];;"Overlord is basically Ultima and Everquest, in fact most isekai WN/LN with videogame mechanics are based on those two. - -Grimgar is clearly DnD (Also Gobling Slayer but is not an isekai) but with a shitty DM, its a shame we never got a second season.";False;False;;;;1610378719;;False;{};giw1kiy;False;t3_kuj1bm;False;True;t1_giv2khx;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giw1kiy/;1610426738;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"It is basic and obvious, that's why the video is relatable and has so many views. - -Nobody's saying it's a bad or wrong thing, just that waiting for them to get better can lead to it being hard to convince others that they do actually get better.";False;False;;;;1610379015;;False;{};giw2a8r;False;t3_kuj1bm;False;False;t1_givzmuo;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giw2a8r/;1610427129;4;True;False;anime;t5_2qh22;;0;[]; -[];;;sfj4u;;;[];;;;text;t2_11t8ixfj;False;False;[];;Apparently the author of rezero is tuning in with us YEAHH[Link](https://twitter.com/nezumiironyanko/status/1348283034613649410);False;False;;;;1610379203;;False;{};giw2qm4;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giw2qm4/;1610427364;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Orsonius2;;;[];;;;text;t2_204y9owl;False;False;[];;"Maybe I am wrong. I just read that the overlord author used to play DnD but all his RL friends kinda got families or whatever and stopped playing so he lost all his dungeon and dragon friends. So he started to write Overlord instead. - -I never played those old MMOs so I dont know how they work. I just know that some of the spells and the ""limit per day system"" reminds me of DnD or video games based on DnD (like baldurs gate) - -I want Grimgar so bad. I loved that show. Still one of my favorite Isekai.";False;False;;;;1610379298;;False;{};giw2z5v;False;t3_kuj1bm;False;True;t1_giw1kiy;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giw2z5v/;1610427496;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Al-Pharazon;;;[];;;;text;t2_1s32gw1x;False;False;[];;I do love when this kind of things happen, for example Horikoshi (the author of MHA) commenting on other mangas. It is really wholesome.;False;False;;;;1610379444;;1610379839.0;{};giw3bu9;False;t3_kuj1bm;False;True;t1_giw2qm4;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giw3bu9/;1610427693;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610379646;;False;{};giw3ton;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giw3ton/;1610427961;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sfj4u;;;[];;;;text;t2_11t8ixfj;False;False;[];;YEAAH its rly hypeee. Tbh i got into this series from this tweet. I was like hmm if an isekai could be approved by tappei sensei i guess it wld be rlly gr8? My expectations werent let down at all dem that was a gud watch havent felt chills from an isekai for a long time;False;False;;;;1610379705;;False;{};giw3z1p;False;t3_kuj1bm;False;True;t1_giw3bu9;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giw3z1p/;1610428052;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chowder-san;;;[];;;;text;t2_jn9p3;False;False;[];;"> Yea I got turned off by that at first but its cool how he tries to improve his behavior/thoughts - -as a character, Rudy is clearly closer to Subaru rather than to a perfect protagonist like Kirito for example";False;False;;;;1610379989;;False;{};giw4o7x;False;t3_kuj1bm;False;False;t1_gisds1a;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giw4o7x/;1610428482;6;True;False;anime;t5_2qh22;;0;[]; -[];;;sfj4u;;;[];;;;text;t2_11t8ixfj;False;False;[];;Just saying, but whoever thought of illustrating the flow of mana rushing across the nervous system like some kinda dopamine is goddamn brilliant;False;False;;;;1610380290;;False;{};giw5fd8;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giw5fd8/;1610428892;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hell_nibba;;;[];;;;text;t2_50260tzs;False;False;[];;I know that ep 2 is good too i already watch it but i'm scare that which how much impact and money there put on first 2ep the series qualities will start to drop;False;False;;;;1610380327;;False;{};giw5ile;False;t3_kuj1bm;False;True;t1_givy7lg;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giw5ile/;1610428939;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Guillotine_Landlords;;;[];;;;text;t2_62ilgmjp;False;True;[];;"Oh you are right, 7 is the ""filler"" one.";False;False;;;;1610380474;;False;{};giw5w7e;False;t3_kuj1bm;False;True;t1_givy3ay;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giw5w7e/;1610429155;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chowder-san;;;[];;;;text;t2_jn9p3;False;False;[];;"> Why is it getting adapted so late? - -adapting the literal progenitor of a genre is not a task easily done so I can imagine many studios being hesitant about it, as well as the author being picky - -just remember what happened to berserk";False;False;;;;1610380876;;False;{};giw6x5j;False;t3_kuj1bm;False;True;t1_gisavbd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giw6x5j/;1610429697;1;True;False;anime;t5_2qh22;;0;[]; -[];;;charzard4261;;;[];;;;text;t2_hkjiz;False;False;[];;I keep forgetting that that is getting adapted. Can't wait for the online storm over it.;False;False;;;;1610381162;;False;{};giw7mud;False;t3_kuj1bm;False;True;t1_giuaii1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giw7mud/;1610430077;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Irru;;;[];;;;text;t2_5so5d;False;False;[];;Wait, bush? Must’ve missed that.;False;False;;;;1610381234;;False;{};giw7t9a;False;t3_kuj1bm;False;True;t1_gis5ozj;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giw7t9a/;1610430177;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Florac;;;[];;;;text;t2_vy0sf;False;False;[];;Well, this was first announced like 2 years ago, so I'm not too worried;False;False;;;;1610381454;;False;{};giw8d8p;False;t3_kuj1bm;False;True;t1_giw5ile;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giw8d8p/;1610430477;2;True;False;anime;t5_2qh22;;0;[]; -[];;;shibuinuchan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/shibuinu;light;text;t2_loeguz2;False;False;[];;Anything but CGI carriage-ojisan noo^oo^^oo;False;False;;;;1610381535;;False;{};giw8koz;False;t3_kuj1bm;False;True;t1_giu7av1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giw8koz/;1610430592;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hell_nibba;;;[];;;;text;t2_50260tzs;False;False;[];;Yeah you like they got 2 year time for this project;False;False;;;;1610381807;;False;{};giw99ap;False;t3_kuj1bm;False;True;t1_giw8d8p;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giw99ap/;1610430955;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aohige_rd;;;[];;;;text;t2_ttrmj;False;False;[];;"Less to do with age and more to do with its immense popularity. It was the No.1 most popular isekai novel at the time, and literally thousands of copycats flooded the market, causing the current isekai boom. - -It’s more accurate to say MT is the father of the current isekai boom.";False;False;;;;1610382088;;False;{};giw9ztg;False;t3_kuj1bm;False;True;t1_gisbc8d;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giw9ztg/;1610431354;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610382111;;False;{};giwa1vs;False;t3_kuj1bm;False;True;t1_gis869a;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwa1vs/;1610431385;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chowder-san;;;[];;;;text;t2_jn9p3;False;False;[];;well, considering the circumstances he became NEET (which are about as absurd as his later behaviour)...;False;False;;;;1610382191;;False;{};giwa9d3;False;t3_kuj1bm;False;True;t1_gisbvk7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwa9d3/;1610431492;1;True;False;anime;t5_2qh22;;0;[]; -[];;;artart1212;;;[];;;;text;t2_12ndtw;False;False;[];;The goddess Roxy is freakishly cute! I am hyped up even more now!;False;False;;;;1610382831;;False;{};giwbwmo;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwbwmo/;1610432456;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chowder-san;;;[];;;;text;t2_jn9p3;False;False;[];;"tbh if they adapted his backstory in the first episode it would make a ton of people GTFO right there, no joke - -just look at the reactions to the stuff that got adapted lol and the adaptation already skips some grosser stuff like [spoiler](/s"" titty licking"")";False;False;;;;1610382839;;False;{};giwbxfc;False;t3_kuj1bm;False;True;t1_gis869a;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwbxfc/;1610432468;1;True;False;anime;t5_2qh22;;0;[]; -[];;;generalmillscrunch;;;[];;;;text;t2_zofoh;False;False;[];;Check out Air Gear for similar vibes but with rollerblading;False;False;;;;1610383076;;False;{};giwcjh3;False;t3_kuh2gz;False;True;t1_girx8sr;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/giwcjh3/;1610432875;2;True;False;anime;t5_2qh22;;0;[]; -[];;;YgJb1691;;;[];;;;text;t2_k8dbo5z;False;False;[];;At around 16 minutes the MC thinks to himself that Roxy looks so young that her bush probably hasn’t grown in yet.;False;False;;;;1610383646;;False;{};giwe0p2;False;t3_kuj1bm;False;True;t1_giw7t9a;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwe0p2/;1610433738;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EllipticalOrbitMan;;;[];;;;text;t2_4k4r69wp;False;False;[];;Really highlights how much LN content there is. I think I spent weeks reading what is just episode 1 and 2. Weirdly enough, I don’t feel like anything’s been left out;False;False;;;;1610383823;;False;{};giwehoo;False;t3_kuj1bm;False;True;t1_gitirrg;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwehoo/;1610433982;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JustTheSaba;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/jojoisbestanime;light;text;t2_2t1d4mm4;False;False;[];;Is it ne or he has same voice actor as sakata gintoki? He even picks his nose, and talking style too, feels like he is annoyed;False;False;;;;1610384030;;False;{};giwf11n;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwf11n/;1610434252;1;True;False;anime;t5_2qh22;;0;[]; -[];;;not-irl;;;[];;;;text;t2_9rmptshf;False;False;[];;I agree but it's just because it was super popular and relatively early. There's plenty of comments on Japanese sites about how this was the original too.;False;False;;;;1610384034;;False;{};giwf1h5;False;t3_kuj1bm;False;True;t1_gisbl46;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwf1h5/;1610434258;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mister-Trala;;;[];;;;text;t2_k7gfxrc;False;False;[];;"""I don't want to spoil but you can expect to see a lot of growing up episodes"" smh dude";False;False;;;;1610384074;;False;{};giwf4u0;False;t3_kuj1bm;False;True;t1_givlfm7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwf4u0/;1610434305;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Onithyr;;;[];;;;text;t2_eyl3o;False;False;[];;Or she just didn't want the pain to last any longer than necessary regardless of whether it got in the way of sex...;False;False;;;;1610385596;;False;{};giwj4j5;False;t3_kuj1bm;False;False;t1_giucw8f;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwj4j5/;1610436349;5;True;False;anime;t5_2qh22;;0;[]; -[];;;justanonquestions;;;[];;;;text;t2_837s6xp1;False;False;[];;I did not at all, but I have hope as its catching up to the manga;False;False;;;;1610385847;;False;{};giwjs7j;True;t3_kuhoss;False;True;t1_giszy5t;/r/anime/comments/kuhoss/naruto_or_one_piece/giwjs7j/;1610436738;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BerkofRivia;;;[];;;;text;t2_qjx0o;False;False;[];;I’m not giving exact episode count or something, or what he does at what age, which would be spoiling. I’m just saying he doesn’t turn 34 in 2 eps.;False;False;;;;1610386170;;False;{};giwkmx8;False;t3_kuj1bm;False;True;t1_giwf4u0;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwkmx8/;1610437193;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;I'm loving the mom. She's great.;False;False;;;;1610387655;;False;{};giwny26;False;t3_kuj1bm;False;True;t1_gis62bq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwny26/;1610439074;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;True;[];;Oh wait I've heard about that one. Has it premiered yet? I remember someone saying all kinds of crazy shit happens in that story.;False;False;;;;1610387762;;False;{};giwo6sj;False;t3_kuj1bm;False;True;t1_giuaii1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwo6sj/;1610439201;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aohige_rd;;;[];;;;text;t2_ttrmj;False;False;[];;"Not gonna lie, I don't like it in Kumo either. - -Only time I liked it was in Log Horizon.";False;False;;;;1610388543;;False;{};giwpxai;False;t3_kuj1bm;False;True;t1_gitkpt7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwpxai/;1610440121;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SeanJank;;;[];;;;text;t2_4xrkcjl3;False;False;[];;I generally have preferred isekais that dont start with the first scene being the mc's death, but this one did that scene so well that I really liked it;False;False;;;;1610388911;;False;{};giwqqut;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwqqut/;1610440559;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aohige_rd;;;[];;;;text;t2_ttrmj;False;False;[];;Konosuba was among the literal hundreds of isekai novels that sprung out in Narou following Mushoku Tensei, which claimed the throne there almost immediately upon release.;False;False;;;;1610389377;;False;{};giwrrxd;False;t3_kuj1bm;False;True;t1_gisizl9;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwrrxd/;1610441110;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Evilmon2;;;[];;;;text;t2_6e943;False;False;[];;"KonoSuba wasn't made in response to Mushoku Tensei. It came out a only a month later. It was making fun of the ""truck kills someone suddenly"" trope that has been used and parodied in anime and manga for decades before Mushoku Tensei existed.";False;False;;;;1610389816;;False;{};giwsrmu;False;t3_kuj1bm;False;True;t1_giwrrxd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwsrmu/;1610441665;1;True;False;anime;t5_2qh22;;0;[]; -[];;;echykr4;;;[];;;;text;t2_k4xht;False;False;[];;I'm totally watching this with the intention of treating this as the isekai sequel for that last episode of Dogeza. LOL;False;False;;;;1610390036;;False;{};giwt91o;False;t3_kuj1bm;False;True;t1_git717p;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwt91o/;1610441929;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jarahel;;;[];;;;text;t2_5phu2ou1;False;False;[];;He lived as a hikikomori for many years before dying, therefore he has a fear of being outside the house. You can see this reaction from characters like Sora and Shiro from No Game No Life.;False;False;;;;1610390051;;False;{};giwta8l;False;t3_kuj1bm;False;True;t1_gisqe81;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwta8l/;1610441947;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aohige_rd;;;[];;;;text;t2_ttrmj;False;False;[];;"I never said it was in response. I said following. - -Also, it's quite impossible for the author to not know, I don't think you understand. I am Japanese, was reading Syosetuka ni Narou website at the time. Mushoku was at the top of the daily,weekly, and monthly rankings there constantly. On the same web site where Konosuba started. - -Basically everything coming out were influenced in a frenzy at the time. - -Edit: Also you are incorrect on the dates. Konosuba started three month after in December 2012. MT started in September. (November date you see is an reupload date)";False;False;;;;1610390058;;1610390510.0;{};giwtars;False;t3_kuj1bm;False;True;t1_giwsrmu;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwtars/;1610441955;2;True;False;anime;t5_2qh22;;0;[]; -[];;;imskyrim;;;[];;;;text;t2_7ipm9psk;False;False;[];;The TV animation was still really good, there were a few awkward shots, but I wouldn’t say it showed much at all, imo if a season showed that it was S3. The vast majority of the bluray changes were more than what most good big studios would even do, WIT really went ham with them for all 3 seasons.;False;False;;;;1610390148;;False;{};giwthxo;False;t3_kuj1bm;False;True;t1_gisq4wp;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwthxo/;1610442060;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cryzzalis;;MAL a-amq;[];;http://myanimelist.net/animelist/Charaxify;dark;text;t2_7j04d;False;False;[];;For sure;False;False;;;;1610391611;;False;{};giwwrlu;False;t3_kugzsg;False;True;t1_givob0z;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/giwwrlu/;1610443770;2;True;False;anime;t5_2qh22;;0;[]; -[];;;YungFeetGod69;;;[];;;;text;t2_5j1ed3b6;False;False;[];;Oh man I can tell this one is going to be a banger;False;False;;;;1610391976;;False;{};giwxkk5;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwxkk5/;1610444200;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sailor_Lunatone;;;[];;;;text;t2_fnuu6;False;False;[];;"The genre isn't really new--being sent too another world and having special powers had been done to death even before the whole isekai fad. It's always been a very popular plot device in JRPGs, and even just general rpgs years before light novels were even a thing. It's also a classic literary genre--think Chronicles of Narnia for a popular western example. - - -The idea is so common and so tried that it kind of makes sense that one of the first light novelists in the early 2010s who used being sent to another world as a plot point would immediately deconstruct elements of it. It's just that the whole idea of being sent to another world is actually a very immersive plot device, so much that it fairly easy stands on its own, even without being all meta about itself, hence why the genre hasn't had much trouble gaining popularity in the industry.";False;False;;;;1610392125;;False;{};giwxw7t;False;t3_kuj1bm;False;True;t1_gisvqfx;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwxw7t/;1610444373;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EnlightenedLord;;;[];;;;text;t2_8ea6s5z;False;False;[];;Spice and wolf vibes;False;False;;;;1610392239;;False;{};giwy57j;False;t3_kuj1bm;False;True;t1_givle9p;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwy57j/;1610444504;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aaronn_05;;;[];;;;text;t2_6yi1341u;False;False;[];;Nope, I’ve not even heard of that anime before lmao;False;False;;;;1610392345;;False;{};giwydra;False;t3_kuj1bm;False;True;t1_giwy57j;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwydra/;1610444629;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;Please for the love of fuck don't put NTR in my anime, I'm begging you.;False;False;;;;1610392630;;False;{};giwz0dw;False;t3_kuj1bm;False;True;t1_giuatse;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giwz0dw/;1610444952;2;True;False;anime;t5_2qh22;;0;[]; -[];;;panosk1304;;;[];;;;text;t2_19qvhtzg;False;False;[];;Manga is even worse since it fucks with characters at least Boruto anime is made for kids with all those fillers and only hope is to get canceled xaxaxaxa. One piece on the other hand is at its right now manga and anime.;False;False;;;;1610393168;;False;{};gix07yx;False;t3_kuhoss;False;True;t1_giwjs7j;/r/anime/comments/kuhoss/naruto_or_one_piece/gix07yx/;1610445596;1;True;False;anime;t5_2qh22;;0;[]; -[];;;soyymilk;;;[];;;;text;t2_49l4y;False;False;[];;based on the title and not knowing anything else, i originally thought this was going to be a case of being isekai'd into a world where everyone has a job/class but he doesnt have one (like being quirkless in mha), not that he was a jobless person previously that is now being reincarnated. based on the first episode and everyone's comments, im excited to see how he grows.;False;False;;;;1610393332;;False;{};gix0lbv;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gix0lbv/;1610445797;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Eboglaz;;;[];;;;text;t2_2kahaqr2;False;False;[];;Mushoku tensei is great at being wholesome family story. It did really have that feeling in the novel, awesome that studio could understand it.;False;False;;;;1610393805;;False;{};gix1ncw;False;t3_kuj1bm;False;True;t1_givbax9;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gix1ncw/;1610446352;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cadrina;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;http://www.anime-planet.com/users/cadrina/anime;light;text;t2_5qr7l;False;False;[];;"The same problem with Valerian, the movie wasn't that good, but comparing with Star Wars is really unfair as the original graphic novel was a huge ""inspiration"".";False;False;;;;1610393823;;False;{};gix1opq;False;t3_kuj1bm;False;True;t1_gisdehx;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gix1opq/;1610446371;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kfijatass;;;[];;;;text;t2_6tii3;False;False;[];;Oh, it *is* a family story? Interesting take on the isekai genre.;False;False;;;;1610394043;;False;{};gix260d;False;t3_kuj1bm;False;True;t1_gix1ncw;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gix260d/;1610446628;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blue_structure;;;[];;;;text;t2_19q1zryg;False;False;[];;I still have to read volume 24 of the LN but comparing the previous volumes to the WN he's only adding extra content and adapting the events, adding to the lore and world building but without changing the outcome 'till now as a result he really didn't change the course of the story. Moreover only in volume 7, 16 and 23 there are some major changes but even those are just put in creating a gap where there wasn't and filling it with a lomger story, we are going to the same ending I guess, maybe there will be more context, more reasons, explainations and hopefully deeper preparations for the sequel, if he's going to change something I just hope he continues to embellish things while going deeper;False;False;;;;1610394418;;False;{};gix2zpt;False;t3_kuj1bm;False;True;t1_giv5p5p;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gix2zpt/;1610447069;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Eboglaz;;;[];;;;text;t2_2kahaqr2;False;False;[];;"Not really. Well, i mean its an adventure story but family plays the biggest part of MC's live. There is no isekai that focused so much on family relationships. -Sometimes it goes way deeper than you can even expect. Way deeper...";False;False;;;;1610395673;;1610396062.0;{};gix5qus;False;t3_kuj1bm;False;True;t1_gix260d;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gix5qus/;1610448572;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Arstala85;;;[];;;;text;t2_821zm3xi;False;False;[];;"> Would you really prefer every anime to have a flawless protagonist from the start? - -Isn't this basically a strawman of your own? Not liking a character because he's scum even though you know he will get better later doesn't mean you want flawless characters.";False;False;;;;1610396170;;False;{};gix6tqf;False;t3_kuj1bm;False;True;t1_givzmuo;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gix6tqf/;1610449150;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Arstala85;;;[];;;;text;t2_821zm3xi;False;False;[];;"You know, I really don't like this idea that starting a main character as a complete piece of shit and making him not suck over time is great character development. That's like the easiest character development you can put in a story. Yet I feel like anime fans fall over themselves praising it every time it happens. - -Characters becoming better over time is fine of course. It needs to be done well though. Starting your character off as the biggest creep around just makes it easy. You just make him not the worst and boom, character development! It's boring and it makes the early parts of the story suck because the character is so terrible.";False;False;;;;1610396426;;1610396608.0;{};gix7e1n;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gix7e1n/;1610449458;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;electric_anteater;;;[];;;;text;t2_ocq5m;False;False;[];;If you're calling Rudeus scum you've never seen an actual scum;False;False;;;;1610397983;;False;{};gixasqp;False;t3_kuj1bm;False;True;t1_gix6tqf;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gixasqp/;1610451347;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;NecroPamyuPamyu;;;[];;;;text;t2_3h5v7kme;False;False;[];;This is the best debut episode i've seen in long time - probably since the first ep of *Eizouken* almost exactly a year ago.;False;False;;;;1610398374;;1610439706.0;{};gixbnvw;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gixbnvw/;1610451839;5;True;False;anime;t5_2qh22;;0;[]; -[];;;stiveooo;;;[];;;;text;t2_9amaa;False;False;[];;woaaaaht?;False;False;;;;1610399821;;False;{};gixeuxh;False;t3_kuj1bm;False;True;t1_gis8yct;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gixeuxh/;1610453690;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mr_Pogi_In_Space;;;[];;;;text;t2_2kimiqsr;False;False;[];;"True, I guess I spoke too loosely. You even have .hack//sign as an early ""isekai, but trapped in a game"" variant way back then too.";False;False;;;;1610400483;;False;{};gixgb0k;False;t3_kuj1bm;False;True;t1_git846r;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gixgb0k/;1610454554;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sipwarriper;;MAL;[];;http://myanimelist.net/animelist/sipwarriper;dark;text;t2_wcm8s;False;False;[];;this makes too much sense so I choose to not believe it.;False;False;;;;1610400637;;False;{};gixgmyo;False;t3_kuj1bm;False;False;t1_giwj4j5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gixgmyo/;1610454756;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thiaminer;;;[];;;;text;t2_9anzwd4o;False;False;[];;"Yeah, I don't understand this community at all, like anything related to male sexuality is refered to as ""creepy"", what the hell? :/";False;False;;;;1610403119;;False;{};gixlwwd;False;t3_kuj1bm;False;True;t1_giuzi6p;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gixlwwd/;1610458114;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jtaffleck;;;[];;;;text;t2_13m2lnh9;False;False;[];;Why is this only on funimation wtf;False;False;;;;1610403177;;False;{};gixm18k;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gixm18k/;1610458189;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Izanaginookami10;;MAL;[];;http://myanimelist.net/profile/Izanaginookami;dark;text;t2_opbh3;False;False;[];;"I'm crying. Shit, the nostalgia is too strong with this one. I'm overwhelmed by joy, as we finally got Mushoku Tensei animated. - -And Holy Pantsu if the adaptation seem to be divine, I loved it. Art and animation were stunning, but I don't know, the cadence, the pace, the voices and everything else somehow made it a very... soul warming experience if I make any sence. It just gave me this very warm feeling, it just made me so damn happy to see Rudeus animated. - -I can only base my knowledge off the WN, so I don't know if the LN changed things, but I'm also glad they toned down the initial pervertedness acts, or at least, glad they showed less of them. I'm fine with it most of time, but towards your own mother is a tad too... avdvanced for me.";False;False;;;;1610403253;;False;{};gixm6yr;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gixm6yr/;1610458292;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Izanaginookami10;;MAL;[];;http://myanimelist.net/profile/Izanaginookami;dark;text;t2_opbh3;False;False;[];;"Just you wait for [Uh, spoiler tagged currently airing title just to be safe(?)](/s ""Redo of Healer, though I'm forgetting if the two of them are actually related at all or it's just that both of them are within it.""), either way, it will be a damn fine fire dumpster I'll enjoy a lot though, especially the discussion threads. I'm fairly certain that such spoiler, if even it is, will not be one after first ep of the series, so I would say it's fine to check it.";False;False;;;;1610403565;;False;{};gixmuck;False;t3_kuj1bm;False;True;t1_giskl7n;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gixmuck/;1610458723;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610403969;;False;{};gixno4u;False;t3_kuj1bm;False;True;t1_giuatse;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gixno4u/;1610459258;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xdamm777;;;[];;;;text;t2_oxrkd;False;True;[];;Ah crap. LMAO that's definitely going to be a fun one.;False;False;;;;1610404050;;False;{};gixnuae;False;t3_kuj1bm;False;True;t1_givkfic;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gixnuae/;1610459368;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lulkas;;;[];;;;text;t2_v6p0q34;False;False;[];;I think he is Kizami from Corpse Party too;False;False;;;;1610404099;;False;{};gixnxyr;False;t3_kuj1bm;False;True;t1_gise8rj;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gixnxyr/;1610459435;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Spectral2020;;;[];;;;text;t2_84n70o3g;False;False;[];;Subaru is a deconstruction of the isekai protagonist archetype, but the world he's in isn't.;False;False;;;;1610404132;;False;{};gixo0ca;False;t3_kuj1bm;False;True;t1_git73pa;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gixo0ca/;1610459476;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Neolife;;;[];;;;text;t2_afxkg;False;False;[];;"Magic Knight Rayearth and Fushigi Yugi as well in the mid-90s. But those fit more along the tropes of trying to return to the original world, compared to the modern isekai skeleton we see with ReZero, KonoSuba, Jobless, etc. where the reincarnation is an absolute transition to the new world, living a new life from scratch. Older isekai tended to have characters shifted over without an original death. I'm unfamiliar with the structure of El-Hazard, but I believe those are the typical patterns we see and something people often use to define ""modern isekai"" versus what we saw in the 80s/90s. - -The ""western isekai"" of Alice in Wonderland, Oz, etc. all also involve that ""getting back to my home"" drive for the main characters, interestingly enough.";False;False;;;;1610404395;;False;{};gixojq3;False;t3_kuj1bm;False;True;t1_gitkcz1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gixojq3/;1610459855;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Swag_Titan;;;[];;;;text;t2_45kfqouq;False;False;[];;I like it. Normally I would not start another Isekai, but this one seems different. Great actors, superb animation and a interesting start. Let's see what the future holds.;False;False;;;;1610404431;;False;{};gixomcg;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gixomcg/;1610459903;4;True;False;anime;t5_2qh22;;0;[]; -[];;;csdragon123456;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_kgbt7;False;False;[];;I honestly wasn't expecting such a high production value but then I saw that white fox is in involved and it makes sense now;False;False;;;;1610404449;;False;{};gixonpq;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gixonpq/;1610459926;3;True;False;anime;t5_2qh22;;0;[]; -[];;;thiaminer;;;[];;;;text;t2_9anzwd4o;False;False;[];;"I don't think people like you should watch anime, you judge a different culture from yours as ""creepy"", if you don't like it why not just leave? Not even trying to gatekeep here, but I don't go over other hobbies I don't like (fashion for ex) just to complain how it doesn't pander to me.";False;False;;;;1610404770;;False;{};gixpbpa;False;t3_kuj1bm;False;True;t1_gitik0b;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gixpbpa/;1610460358;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;RavenWolf1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RavenWolf1;light;text;t2_9rao2;False;False;[];;"I got feeling like this was nostalgic trip back to early 2000 fantasy anime. It was also so laid back and peaceful. Similar to bookworm. Song at ED was like sugar on top of cake which made me remember Spice & Wolf.";False;False;;;;1610405013;;False;{};gixptna;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gixptna/;1610460687;5;True;False;anime;t5_2qh22;;0;[]; -[];;;RavenWolf1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RavenWolf1;light;text;t2_9rao2;False;False;[];;You know what they say about sex and porn industry? It is always at forefront of the technology. Just imagine how magic would be used if it existed... I think *interspecies reviewer* was very spot on in that regard.;False;False;;;;1610406140;;False;{};gixs4kx;False;t3_kuj1bm;False;False;t1_giskl7n;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gixs4kx/;1610462220;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ReiahlTLI;;;[];;;;text;t2_inivd9e;False;False;[];;"El-Hazard ends up being a transition to a life in that new world. I recall a search for a way home for a little bit but I think it stops being a thing pretty quickly. - -In any case, isekai is often talked about in two different manners one is the storytelling mechanic and the other is the trend. It's been around for ages as a part of stories but as a specific trend with a specific form, it was Jobless, Shield Hero, Konosuba, etc. - -I actually don't consider Re:Zero in the same group as the other series generally speaking, it has more in common with older shows like El-Hazard or Fushigi Yugi overall than it does the more recent ones.";False;False;;;;1610406337;;False;{};gixsiod;False;t3_kuj1bm;False;True;t1_gixojq3;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gixsiod/;1610462510;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;"Hearing an old, worn-out Kyon 15 years after breaking up with Haruhi describe how he lewds his mom, the maid, and the magic loli is goddamn fucking TERRIFYING - -[GIVE ME BACK **MY INNOCENCE**](#terror)";False;False;;;;1610406577;;False;{};gixt057;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gixt057/;1610462920;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gimi9;;;[];;;;text;t2_3hsntvx5;False;False;[];;"Isn't episode 1 and 2 only half of the first volume; like 150 pages?";False;False;;;;1610408064;;False;{};gixvyod;False;t3_kuj1bm;False;True;t1_giwehoo;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gixvyod/;1610464990;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EllipticalOrbitMan;;;[];;;;text;t2_4k4r69wp;False;False;[];;I read it in the source language so it took a bit longer.;False;False;;;;1610408673;;False;{};gixx6gu;False;t3_kuj1bm;False;True;t1_gixvyod;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gixx6gu/;1610466097;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610408768;;False;{};gixxd2g;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gixxd2g/;1610466241;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DrJWilson;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/drjwilson/animelist;light;text;t2_6zykq;False;False;[];;"Sorry, your comment has been removed. - -- Please be civil. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610410626;moderator;False;{};giy0zkb;False;t3_kugzsg;False;True;t1_gitz86b;/r/anime/comments/kugzsg/happy_25th_anniversary_to_the_legendary_ruroni/giy0zkb/;1610468739;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Noobcreate;;;[];;;;text;t2_59vrndym;False;False;[];;Does anybody know when new epsidoes come out;False;False;;;;1610410659;;False;{};giy11xd;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giy11xd/;1610468783;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeTalks101;;;[];;;;text;t2_36v6e5ak;False;False;[];;Wow I didn't think we will get an anime on that lol;False;False;;;;1610410771;;False;{};giy19m0;True;t3_kuh2gz;False;True;t1_giulbmr;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/giy19m0/;1610468921;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeTalks101;;;[];;;;text;t2_36v6e5ak;False;False;[];;Cool, thanks!;False;False;;;;1610410805;;False;{};giy1c1n;True;t3_kuh2gz;False;True;t1_gis2scf;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/giy1c1n/;1610468965;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeTalks101;;;[];;;;text;t2_36v6e5ak;False;False;[];;Yeah, I think it's probably the closest thing to a Skateboarding anime.;False;False;;;;1610410865;;False;{};giy1g8z;True;t3_kuh2gz;False;True;t1_gisxkvf;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/giy1g8z/;1610469043;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeTalks101;;;[];;;;text;t2_36v6e5ak;False;False;[];;I would love to see one about Cricket and Dodgeball;False;False;;;;1610410961;;False;{};giy1n0c;True;t3_kuh2gz;False;True;t1_giu7sj1;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/giy1n0c/;1610469171;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeTalks101;;;[];;;;text;t2_36v6e5ak;False;False;[];;Cool, thanks!;False;False;;;;1610411020;;False;{};giy1r8p;True;t3_kuh2gz;False;True;t1_git81mk;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/giy1r8p/;1610469254;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Al-Pharazon;;;[];;;;text;t2_1s32gw1x;False;False;[];;A few hours before SnK on Sundays;False;False;;;;1610411186;;False;{};giy2318;False;t3_kuj1bm;False;True;t1_giy11xd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giy2318/;1610469487;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeTalks101;;;[];;;;text;t2_36v6e5ak;False;False;[];;Yeah, it's probably the closest thing to a Skateboarding anime. Thanks!;False;False;;;;1610411215;;False;{};giy252n;True;t3_kuh2gz;False;True;t1_giwcjh3;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/giy252n/;1610469529;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tomato_Ghost72;;;[];;;;text;t2_2vdwq7bh;False;False;[];;You just declared war;False;False;;;;1610412640;;False;{};giy4x7g;False;t3_kuj1bm;False;True;t1_giv6njf;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giy4x7g/;1610471559;2;True;False;anime;t5_2qh22;;0;[]; -[];;;az-anime-fan;;;[];;;;text;t2_ehh5dbl;False;False;[];;"sorta, as others will point out other stories in this genre existed, just none of them HIT like MT did. As in none of them were a fraction as popular, both before and after SAO hit the air. In fact the webnovel is still like the no.1 rated webnovel on the site it was originally posted; 6 years after it was finished. More popular then many many isekai that got books and anime before it. As a result while this wasn't the first it was the ""genre defining"" story... hence it became the granddaddy.";False;False;;;;1610413203;;False;{};giy60k2;False;t3_kuj1bm;False;True;t1_gisbc8d;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giy60k2/;1610472323;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MonaThiccAss;;;[];;;;text;t2_8stg2bwj;False;False;[];;why is it called the mother of the isekais or something like that? books started at 2014;False;False;;;;1610413607;;False;{};giy6t3x;False;t3_kuj1bm;False;True;t1_gis86mc;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giy6t3x/;1610472917;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;Because it was the trend setter. Mushoku Tensei was the first one to introduce most of the common tropes like truck kun, etcv;False;False;;;;1610413714;;False;{};giy70jd;False;t3_kuj1bm;False;True;t1_giy6t3x;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giy70jd/;1610473061;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SolomonOf47704;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;God Himself;light;text;t2_748lfvhj;False;False;[];;"A lot of it could be explained (but isn't) as that the Gods of that world set up a ""menu"" so that magic is easier to interact with. It could also be said that a long time ago, a ridiculous number of mages/wizards/whatever were like ""Hey, if we do this, it makes it easier to understand our world."" And then they alter the physics of that world a bit.";False;False;;;;1610414891;;False;{};giy9adf;False;t3_kuj1bm;False;True;t1_giuk8lp;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giy9adf/;1610474690;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SolomonOf47704;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;God Himself;light;text;t2_748lfvhj;False;False;[];;"The Jedi don't steal the kids. - -It is more of they ask the parents if they can take them so the kids can safely learn about the force. The Republic also pays the parents some money.";False;False;;;;1610415702;;False;{};giyaw3c;False;t3_kuj1bm;False;True;t1_gitgys8;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giyaw3c/;1610475812;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Andre_PC;;;[];;;;text;t2_9yn2z;False;False;[];;It's really, really amazing. For some reason, it reminds me of old Gainax, and I am loving it.;False;False;;;;1610415941;;False;{};giybd39;False;t3_kuj1bm;False;True;t1_gis8rsg;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giybd39/;1610476137;1;True;False;anime;t5_2qh22;;0;[]; -[];;;az-anime-fan;;;[];;;;text;t2_ehh5dbl;False;False;[];;"remember, the MC is scum. - -&#x200B; - -Part of why this series is so beloved is because the MC grows out of it as he grows up.";False;False;;;;1610416121;;False;{};giybpsn;False;t3_kuj1bm;False;True;t1_gis659d;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giybpsn/;1610476376;2;True;False;anime;t5_2qh22;;0;[]; -[];;;az-anime-fan;;;[];;;;text;t2_ehh5dbl;False;False;[];;"I can't answer these questions directly without spoiling... but I will say this. - -This story is a SLOW burn. the WN covers 25 volumes, and at the pace of ep1, that would translate into something like 100-110 episodes of anime. The WN covers the main character's life from birth to death, as a sort of biography. Changes come, but they are slow. He has 30+ years of a former life weighing him down, that will take some time to grow out of. If he grows out of them. Ultimately this is a story which grows with the main character with a cast numbering in the hundreds and story which spans the world. It's much more then what episode one or two or even ten will show you. - -so I suggest this. If it's not your cup of tea, that's fine, nothing is universally loved. If you find it hard to watch just don't. if you enjoy it then strap in for one hell of a ride.";False;False;;;;1610416690;;False;{};giyctqa;False;t3_kuj1bm;False;True;t1_gis7wzs;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giyctqa/;1610477148;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kaguraa;;MAL;[];;https://myanimelist.net/profile/kagura-chan;dark;text;t2_pmhuc;False;False;[];;that makes no sense? anime isn't limited to stories dedicated to male characters who makes gross comments 24/7 and saying its a cultural thing makes no sense either with how badly sexual harassment is in japan;False;False;;;;1610417572;;False;{};giyekte;False;t3_kuj1bm;False;False;t1_gixpbpa;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giyekte/;1610478406;2;True;False;anime;t5_2qh22;;0;[]; -[];;;melindypants;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_bb5qq9o;False;False;[];;OMG! So he is the guy from that Dogeza anime! It goes perfectly with his inner monolgue lol;False;False;;;;1610417654;;False;{};giyeqmw;False;t3_kuj1bm;False;True;t1_gis7rn2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giyeqmw/;1610478513;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexxxandreS;;;[];;;;text;t2_25oteqzx;False;False;[];;"Fuck now I know why everyone's so hyped. - -Gintoki gets isekai'd";False;False;;;;1610418690;;False;{};giygt3v;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giygt3v/;1610479948;3;True;False;anime;t5_2qh22;;0;[]; -[];;;melindypants;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_bb5qq9o;False;False;[];;OH MAN! That would be such a genius sneaky promotion if that was the case.;False;False;;;;1610419283;;False;{};giyi0yr;False;t3_kuj1bm;False;True;t1_git717p;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giyi0yr/;1610480821;1;True;False;anime;t5_2qh22;;0;[]; -[];;;melindypants;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_bb5qq9o;False;False;[];;Yes 100%! That's all I could think of while watching this which made all the crude humor even better!;False;False;;;;1610419325;;False;{};giyi42h;False;t3_kuj1bm;False;True;t1_giswxjl;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giyi42h/;1610480878;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkRuler17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/DarkRuler17;light;text;t2_m2pn1;False;False;[];;Oh yes. As his perverted actions are the worse part of the series, I'm down with toning it down any way they can.;False;False;;;;1610420849;;False;{};giyl7wq;False;t3_kuj1bm;False;True;t1_giwbxfc;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giyl7wq/;1610483149;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HRenmei;;MAL;[];;http://myanimelist.net/animelist/Kite_;dark;text;t2_oa741;False;False;[];;[A golf anime exists.](https://youtu.be/5oPI-5HjuSA);False;False;;;;1610421800;;False;{};giyn4gl;False;t3_kuh2gz;False;True;t1_git5821;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/giyn4gl/;1610484444;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thiaminer;;;[];;;;text;t2_9anzwd4o;False;False;[];;"It is, japanese aren't prude as americans, stop this narcisistic thinking that everyone and everything should cater to your sensibilities. - -Even the girls, many girls work in doujinshi and even a manga that's extremely successful like Kimetsu no Yaiba has a ""perverted"" character that is also extremely popular like Zenitsu. Not to mention, Kimetsu no Yaiba is written by a girl. - -They also have festivals for genitalia: [https://www.youtube.com/watch?v=Bsr-0t8A1W8](https://www.youtube.com/watch?v=Bsr-0t8A1W8)";False;False;;;;1610422659;;1610425838.0;{};giyoqem;False;t3_kuj1bm;False;True;t1_giyekte;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giyoqem/;1610485561;0;True;False;anime;t5_2qh22;;0;[]; -[];;;CosmicPenguin_OV103;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cosmic_Penguin;light;text;t2_1ufwqhs7;False;True;[];;Thanks, I have no problems for slow burners after seeings lots of relatively (dozens episodes) longer anime series with main characters that started out badly buy slowly improve with time (though not on a seasonal basis), so I most probably will stick for at least some while.;False;False;;;;1610424008;;False;{};giyr8z0;False;t3_kuj1bm;False;False;t1_giyctqa;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giyr8z0/;1610487361;1;True;False;anime;t5_2qh22;;0;[]; -[];;;A_fan-of_everything;;;[];;;;text;t2_32bityes;False;False;[];;"This is how I want isekai anime to be. Every aspect of the plot is told by the MC's perspective in his frequent monologues. The animation looks pretty cool. And the OST screams fantasy (reminds me of kalafina). - -I genuinely love the isekai genre because it's mostly light hearted, fun, OP MC and so on. But most isekai anime fail to do that properly by adding so many cringey and cliche elements. That's actually a big reason why I like to read isekai manga over watching anime. But this show is awesome so far. Sugita as the MC's monologue voice with his funny jokes here and there is perfect. - -If this show continues with this quality then it might just become one of my most favourite shows ever.";False;False;;;;1610424690;;False;{};giysi9c;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giysi9c/;1610488247;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LeCoastGames;;;[];;;;text;t2_2lohctgx;False;False;[];;Damn, the first episode has me considering getting the LN already;False;False;;;;1610425649;;False;{};giyu8wc;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giyu8wc/;1610489490;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BanjoTheBear;;MAL;[];;http://myanimelist.net/profile/BanjoTheBear;dark;text;t2_ccbvw;False;True;[];;"> I'm not a critic and will never be one. Maybe you're thinking of /u/banjothebear ? - -Your Friendly Neighborhood Anime Critic has arrived! - -(Sorry, I've been playing the new *Miles Morales* game, and it's way too fun swinging around everywhere. :3) - -Whether they were thinking of me as that review guy or not in their comment, it is unfortunate when discussions (be it within anime, films, games, and so on) ignore or outright silence perspectives that go against the grain. - -The best thing we can do is keep fighting the good fight: ensuring that the dissenting opinions are still heard. It's a nigh impossible task sometimes (especially for the juggernaut shows), but it wouldn't be a challenge otherwise.";False;False;;;;1610425793;;False;{};giyuhw7;False;t3_kuj1bm;False;True;t1_gisoat0;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giyuhw7/;1610489665;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_Ridley;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/_Ridley_;light;text;t2_pmg6p5;False;False;[];;Since we're handing out unasked for opinions, I don't think people like you should be allowed in public unchaperoned. Be blessed.;False;False;;;;1610425988;;False;{};giyuub1;False;t3_kuj1bm;False;True;t1_gixpbpa;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giyuub1/;1610489903;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Painter5544;;;[];;;;text;t2_wn5gg;False;False;[];;A bit late, but oh boy I think this is going to be good!;False;False;;;;1610428672;;False;{};giyz9ib;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giyz9ib/;1610493034;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnimeTalks101;;;[];;;;text;t2_36v6e5ak;False;False;[];;Wow, I can't believe it lol. Thanks for letting me know;False;False;;;;1610428792;;False;{};giyzgc4;True;t3_kuh2gz;False;True;t1_giyn4gl;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/giyzgc4/;1610493155;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wadech;;;[];;;;text;t2_5br7r;False;False;[];;I've read the manga, but I need to give it a review. The most recent chapters have me kinda lost. The downside of reading too many isekais.;False;False;;;;1610428846;;False;{};giyzjc1;False;t3_kuj1bm;False;True;t1_gis9qqm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giyzjc1/;1610493209;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Eboglaz;;;[];;;;text;t2_2kahaqr2;False;False;[];;It's funny because you already lost it. My troops will outnumber yours by far.;False;False;;;;1610429994;;False;{};giz18gv;False;t3_kuj1bm;False;True;t1_giy4x7g;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giz18gv/;1610494333;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;"The way everyone talked about this series, I expected the MC to be a total perv. Sure, the comment about his ""mother"" and the bush on the mage is not something you'd normally expect to see, but I expected Ararararagi-san (sorry, I stuttered) type shit... or worse... Redo of Healer... - -Regardless, enjoyed this episode. Like everyone else is saying, the animation is really good and considering this is from a brand new studio, it's really quite good for a rookie effort so far. I like the narrator's voice, too. Somehow comforting. I'm interested in seeing more.";False;False;;;;1610430171;;1610441687.0;{};giz1hw0;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giz1hw0/;1610494504;2;True;False;anime;t5_2qh22;;0;[]; -[];;;N1gHtMaRe99;;;[];;;;text;t2_4hm66djz;False;False;[];;I was really surprised myself but its true;False;False;;;;1610430200;;False;{};giz1jdo;False;t3_kuh2gz;False;False;t1_giy19m0;/r/anime/comments/kuh2gz/is_sk8_the_infinity_the_first_ever_skateboarding/giz1jdo/;1610494530;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OvergearedBigBoy;;;[];;;;text;t2_62vx5saq;False;False;[];;"Wholesome? Oh no -It's packed with life lessons though";False;False;;;;1610430726;;1610431008.0;{};giz2abu;False;t3_kuj1bm;False;True;t1_gix1ncw;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giz2abu/;1610495024;1;True;False;anime;t5_2qh22;;0;[]; -[];;;motk;;;[];;;;text;t2_8nu8f;False;False;[];;"Yeah, it was super creepy, and honesly I just had to drop it straight away. This is something the industry needs to step up and deal with tbh; get some decent editors in. If you're trying to establish what an arsehat the protag is there are better ways of developing that than something that is at least superfically pandering to pederasts. Ugh.";False;False;;;;1610431608;;False;{};giz3i0q;False;t3_kuj1bm;False;True;t1_git7pg1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giz3i0q/;1610495846;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;urmamaissofat;;;[];;;;text;t2_1mpfggdf;False;False;[];;Ah yes, MINOR problem.;False;False;;;;1610434764;;False;{};giz7glb;False;t3_kuj1bm;False;True;t1_gisk8i5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giz7glb/;1610498392;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaito7669;;;[];;;;text;t2_1116hq;False;False;[];;This scratches the itch that Ascendance of a Bookworm left me;False;False;;;;1610438065;;False;{};gizb41z;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gizb41z/;1610500637;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Seret42;;;[];;;;text;t2_4utojqpi;False;False;[];;Why specifically for this series?;False;False;;;;1610439016;;False;{};gizc48y;False;t3_kuj1bm;False;True;t1_gis8yct;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gizc48y/;1610501260;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Individual_Pack;;;[];;;;text;t2_1bgb6lhg;False;False;[];;I'm excited!;False;False;;;;1610439685;;False;{};gizct7t;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gizct7t/;1610501696;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610439783;;False;{};gizcwx3;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gizcwx3/;1610501759;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Eboglaz;;;[];;;;text;t2_2kahaqr2;False;False;[];;Its gintoki's VA;False;False;;;;1610440749;;False;{};gizdw9o;False;t3_kuj1bm;False;True;t1_giz1hw0;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gizdw9o/;1610502376;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tomato_Ghost72;;;[];;;;text;t2_2vdwq7bh;False;False;[];;You underestimate the power of the dad he will fuck every soldier literally he has passed the point of being horny.;False;False;;;;1610441405;;False;{};gizek0h;False;t3_kuj1bm;False;False;t1_giz18gv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gizek0h/;1610502797;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610443842;;1610444966.0;{};gizgyus;False;t3_kuj1bm;False;True;t1_gisk8i5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gizgyus/;1610504334;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Onihige;;;[];;;;text;t2_8bp37;False;False;[];;"> Cult of Roxy-sensei rise up!! - -I would join, but I was scammed into joining the Axis cult and I'm too afraid of what they'd do to me if I tried to leave.";False;False;;;;1610443881;;False;{};gizh094;False;t3_kuj1bm;False;False;t1_gis8y8c;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gizh094/;1610504358;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HannibalCake;;;[];;;;text;t2_13gozl;False;False;[];;Wait, you cant *possibly* be suggesting that people want to know things other than the MC's cheat abilities and his entire harem by the first episode?;False;False;;;;1610444195;;False;{};gizhbgi;False;t3_kuj1bm;False;True;t1_gitqpid;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gizhbgi/;1610504551;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sleepyBear012;;;[];;;;text;t2_2lzyoqxd;False;False;[];;i feel like this is just one super high budgetted gintama troll move;False;False;;;;1610445266;;False;{};gizicx4;False;t3_kuj1bm;False;True;t1_gis9vy2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gizicx4/;1610505200;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hissenguinho;;;[];;;;text;t2_13wk08;False;False;[];;still can't believe Gintoki got reincarnated after Gintama finished;False;False;;;;1610447078;;False;{};gizk3m5;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gizk3m5/;1610506346;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Master10K;;MAL;[];;http://myanimelist.net/profile/Master10K;dark;text;t2_794zx;False;False;[];;Well I only said it as a possibility. With the author now writing up [another novel](https://www.novelupdates.com/series/orc-eiyuu-monogatari-sontaku-retsuden/), it's hard to tell whether he would even bother changing the ending.;False;False;;;;1610447238;;False;{};gizk9a9;False;t3_kuj1bm;False;False;t1_gix2zpt;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gizk9a9/;1610506473;1;True;False;anime;t5_2qh22;;0;[]; -[];;;consolefreakedorigin;;;[];;;;text;t2_2baqt95w;False;False;[];;They hated him because he told them the truth;False;False;;;;1610453287;;False;{};gizqkt8;False;t3_kufuju;False;False;t1_gityh4c;/r/anime/comments/kufuju/idoly_pride_new_visual/gizqkt8/;1610510529;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Funky_Pigeon911;;;[];;;;text;t2_1isdkknz;False;False;[];;Hopefully he's a bit better than Subaru. I know people really like how flawed Subaru is as a character but personally I found Subaru's actions to be worse than just flawed, like I'd think an average person would probably make better judgement calls than Subaru would. I found it hard to watch someone clearly doing the wrong thing and ignoring what other people tell him for his own stupid reasons.;False;False;;;;1610455176;;False;{};gizsub6;False;t3_kuj1bm;False;True;t1_giw4o7x;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gizsub6/;1610511975;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Brauka_;;;[];;;;text;t2_y41ft;False;False;[];;The novel that got me into web novels has arrived in anime form! This series has such a special place in my heart and after episode one I believe it will form a speial place in many viewers hearts as well.;False;False;;;;1610455523;;False;{};giztac0;False;t3_kuj1bm;False;False;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/giztac0/;1610512257;3;True;False;anime;t5_2qh22;;0;[]; -[];;;thiaminer;;;[];;;;text;t2_9anzwd4o;False;False;[];;"xD - -You can go on your life complaining all the way through, that's not my problem. - -Go into hobbies made for other people and complain, complain, complain! Doesn't seem healthy, but hey, who am I to judge? - -Maybe I should get into fashion circles and demand they make clothes for me XDD -The designs they make get me triggered so easily, they're sooo creepy!";False;False;;;;1610458869;;False;{};gizy4ku;False;t3_kuj1bm;False;True;t1_giyuub1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gizy4ku/;1610515459;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CHiuso;;;[];;;;text;t2_2c3r2d66;False;False;[];;Ohh watch out, downvotes are coming your away because of your non disgusting views;False;False;;;;1610459172;;False;{};gizym7x;False;t3_kuj1bm;False;True;t1_giz3i0q;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gizym7x/;1610515755;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Martinik29;;;[];;;;text;t2_ujpqt;False;False;[];;Mein will be so triggered if she ever saw Rudeus' story;False;False;;;;1610463461;;False;{};gj06db6;False;t3_kuj1bm;False;True;t1_gizb41z;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj06db6/;1610520330;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sharoth01;;;[];;;;text;t2_1m4guua;False;False;[];;I am offended. I have NEVER had a creepy thought in my life!!! /s;False;False;;;;1610464071;;False;{};gj07kpo;False;t3_kuj1bm;False;True;t1_gis9g46;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj07kpo/;1610520996;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HannibalCake;;;[];;;;text;t2_13gozl;False;False;[];;I think it’s kinda realistic how the MC is sort of scummy, you know being a shut in NEET who probably jerked it to NTR porn for 20 years will do that you. Regardless, at the end of the day that doesn’t subtract from the viewing experience as a whole so you’re just missing out on a good story because you’re over sensitive dawg;False;False;;;;1610464789;;False;{};gj090yj;False;t3_kuj1bm;False;True;t1_giz3i0q;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj090yj/;1610521805;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fatalystic;;;[];;;;text;t2_xy716;False;False;[];;It's very much just Sugita on radio shows and stuff. He really doesn't hold back with wackiness on those.;False;False;;;;1610465475;;False;{};gj0ac3s;False;t3_kuj1bm;False;True;t1_gisppgh;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0ac3s/;1610522514;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fatalystic;;;[];;;;text;t2_xy716;False;False;[];;"The graphics and animation look so good. The sound is amazing too. - -I'd pay to watch something of this quality in the cinema.";False;False;;;;1610465575;;False;{};gj0aiqz;False;t3_kuj1bm;False;True;t1_gis9qqm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0aiqz/;1610522617;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nam24;;;[];;;;text;t2_39xya8xn;False;False;[];;"I mean he WAS an useless bum in his old life but that s it.he was no criminal, his sin was to shut himself from the world and leeching off his family, so it s not exactly like he was ireedemable to begin with - -Also they didn t show it here but his death cut him short of actually trying to be a better person irl";False;False;;;;1610466069;;False;{};gj0bfix;False;t3_kuj1bm;False;True;t1_gita0zi;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0bfix/;1610523112;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fatalystic;;;[];;;;text;t2_xy716;False;False;[];;"> that's completely out of the window now. - -You mean, like that spell? :3";False;False;;;;1610466129;;False;{};gj0bjib;False;t3_kuj1bm;False;True;t1_gis4z3u;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0bjib/;1610523173;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nam24;;;[];;;;text;t2_39xya8xn;False;False;[];;"I m not exactly sure of what you are refering too - -I can think of 4 moments, two early one at the middle and one that doesn t really count - -If it s the first i m thinking off his crimr is mostly in his thoughts as he didn t actually do anything and honestly i m pretty sure he was half blind about it - -If it s the early one with erris...again he doesn t actually do anything though i do remember high temptation and that he was in the process of doing before stopping himself - -If it s the middle one after the labyrinth...yeah not defending that one but it s scummy not a crime - -If it s the last one...i really wouldn t count it considering that it was a ""possibility"", not something he actually acted on in the story - -(I m being vague in purpose as i am on mobile and don t know how to spoiler)";False;False;;;;1610466989;;False;{};gj0d6y9;False;t3_kuj1bm;False;True;t1_gisobst;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0d6y9/;1610524089;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mysistersacretin;;;[];;;;text;t2_6v57c;False;False;[];;Because it's one of the most popular web novels of all time and deserves a great adaptation.;False;False;;;;1610467553;;False;{};gj0ecbr;False;t3_kuj1bm;False;True;t1_gizc48y;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0ecbr/;1610524708;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nam24;;;[];;;;text;t2_39xya8xn;False;False;[];;"Aside from arc 3 which was him mentally breaking down...i feel like both subaru s and rudeus flaws are overexagerated - -Or rather i feel like there s an overfocus on them to paint their early self as outright scum - -Yes they DO think with their dick in infortunate moments and subaru does spend most of arc 3 being useless due to problems he made for himself AND BOTH of them are better and smarter person as the story goes on but... - -While their early flaw are significant and not entirely gone at the end(if a moderate version of those trait even count as a flaw) they were, even at the start mostly good person that were trying to help(subaru, even if he also had some selfish reasons, it was also empathy that had him even trying)/or someone who realized they fucked up their entire life and strided not to repeat it";False;False;;;;1610467617;;False;{};gj0eh26;False;t3_kuj1bm;False;True;t1_gizsub6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0eh26/;1610524779;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hailgod;;;[];;;;text;t2_86po8;False;False;[];;remember index 3? if only that series got a better treatment.;False;False;;;;1610467780;;False;{};gj0et4d;False;t3_kuj1bm;False;False;t1_gitcfxt;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0et4d/;1610524962;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rollin340;;;[];;;;text;t2_cmyef;False;False;[];;"So what happened to the 2 girls who might have been hit? Or was it 3? - -Also, I feel like there was a lot explained and given in this single episode, but at no point did it feel rushed. You know when you go ""That was 20 minutes? It felt like 5!"" This show somehow made it feel longer, but kept it feeling great and rich with quality content. - -It's an odd feeling. I like it.";False;False;;;;1610468645;;False;{};gj0gmev;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0gmev/;1610525963;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mcmanybucks;;;[];;;;text;t2_7j2zw;False;True;[];;What's Kumo?;False;False;;;;1610468938;;False;{};gj0h8v2;False;t3_kuj1bm;False;True;t1_gitkpt7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0h8v2/;1610526297;2;True;False;anime;t5_2qh22;;0;[]; -[];;;translucentsphere;;;[];;;;text;t2_7cwnbgfl;False;False;[];;"Re Zero S2 animation quality is most of the time the same as the first season, except in season 1 some important scenes had better animation details. Meanwhile, in S2 the animation quality is just flat all the time. No ups and downs, just flat. I don't remember S2 having even one scene where the animation quality stands out compared to the rest of the episodes. - -Art style is debatable, but I don't like Subaru's face proportion in S2. He looks like a literal monkey sometimes. Emilia's eyes also lack details and Elsa's design somehow makes her not as menacing as she was in S1.";False;False;;;;1610470955;;1610471192.0;{};gj0lmjn;False;t3_kuj1bm;False;True;t1_git1t84;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0lmjn/;1610528678;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Al-Pharazon;;;[];;;;text;t2_1s32gw1x;False;False;[];;"The good thing about the explanation is that it didn't have any technobabble, that makes easier to understand any system without feeling it overwhelming or rushed. - -[First Question Spoilers](/s ""From what I remember at least one of them was also summoned into that world, although in different circumstances than the MC"")";False;False;;;;1610471451;;False;{};gj0mpgk;False;t3_kuj1bm;False;True;t1_gj0gmev;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0mpgk/;1610529283;1;True;False;anime;t5_2qh22;;0;[]; -[];;;glich610;;;[];;;;text;t2_ds9ko;False;False;[];;Wait, wut? That baby was self-aware for sure. Spicy!;False;False;;;;1610471512;;False;{};gj0mu5f;False;t3_kuj1bm;False;True;t1_gis8bcs;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0mu5f/;1610529355;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ReyxDD;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/302848;light;text;t2_8u2lx;False;False;[];;It's not for you. Glad you dropped it if you're turned off by it. I find it hilarious. There's nothing wrong with your disgust of it, and theirs nothing wrong with my enjoyment of it either. I let people enjoy whatever type of animated drawings they want to enjoy.;False;False;;;;1610472567;;False;{};gj0p6c7;False;t3_kuj1bm;False;True;t1_giz3i0q;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0p6c7/;1610530627;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WickedDemiurge;;;[];;;;text;t2_h481n;False;False;[];;"Kumo Desu ga, nani ka or ""So I'm a spider, so what?."" It's an isekai where the main character is reincarnated as a spider, of which only one episode has been released so far. I strongly recommend it based on ep 1 and having read the manga after I was intrigued by the anime previews. - -&#x200B; - -In terms of isekai, Kumoko is one of my favorite protagonists because I think she has a good combination of goofiness + competence that works really well, and doesn't have weird pervy harem stuff going on.";False;False;;;;1610472975;;False;{};gj0q2y0;False;t3_kuj1bm;False;True;t1_gj0h8v2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0q2y0/;1610531124;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Android19samus;;;[];;;;text;t2_aqbu1;False;False;[];;A bad or good personality has very little to do with how actively harmful your actions are. People with bad personalities tend to cause more harm, but it's not a direct link. And yeah, nothing about him is irredeemable. I assume that over the course of the series he will become a better person, and that'll be a whole thing. But as it stands this dude suuuuuuuuuuuuuucks.;False;False;;;;1610473104;;False;{};gj0qdcm;False;t3_kuj1bm;False;True;t1_gj0bfix;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0qdcm/;1610531277;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bcrecarka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_lbv16mt;False;False;[];;😭😢 you don't even want to know.;False;False;;;;1610473792;;False;{};gj0rwyx;False;t3_kuj1bm;False;True;t1_gity7oq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0rwyx/;1610532117;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kyral99;;;[];;;;text;t2_16gi7p;False;False;[];;I was sold as soon as Shamiko's voice came out of her mouth!;False;False;;;;1610474413;;False;{};gj0tazy;False;t3_kuj1bm;False;True;t1_gis8y8c;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0tazy/;1610532873;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Takamaru0;;;[];;;;text;t2_6iqy2mhp;False;False;[];;Ever heard of redo heal;False;False;;;;1610475408;;False;{};gj0vhwv;False;t3_kuj1bm;False;True;t1_giskl7n;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0vhwv/;1610534091;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;It's on my watchlist lol. I heard that its erotic, but now that people are saying it depicts magic used for sex I'm hyped. I predict that it'll be a masterpiece on par with Interspecies Reviewers.;False;False;;;;1610475519;;False;{};gj0vqss;False;t3_kuj1bm;False;False;t1_gj0vhwv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0vqss/;1610534235;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Takamaru0;;;[];;;;text;t2_6iqy2mhp;False;False;[];;">I heard that it's erotic - -Understatement of the year. I'm just waiting to see Twitter burn like Amazon.";False;False;;;;1610475592;;False;{};gj0vwpa;False;t3_kuj1bm;False;True;t1_gj0vqss;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0vwpa/;1610534328;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;">Understatement of the year. - -Oh now I'm definitely checking this one out. - - ->see Twitter burn like Amazon. - -Lmao that's gold. I'll use it sometime.";False;False;;;;1610475886;;False;{};gj0wkc6;False;t3_kuj1bm;False;True;t1_gj0vwpa;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0wkc6/;1610534692;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mdem5059;;;[];;;;text;t2_ksc93;False;False;[];;The first episode has already skipped a decent chunk of character building, which is a big shame. :(;False;False;;;;1610475933;;False;{};gj0wo2g;False;t3_kuj1bm;False;True;t1_gisfh93;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0wo2g/;1610534750;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mdem5059;;;[];;;;text;t2_ksc93;False;False;[];;Yeah, I've only seen episode one, and the pacing is crazy fast... Feels like we skipped so much character building for the MC that (at least from ep1) a lot won't make sense later as far as his character and inner thoughts:s;False;False;;;;1610476354;;False;{};gj0xlx4;False;t3_kuj1bm;False;True;t1_gitirrg;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0xlx4/;1610535288;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mdem5059;;;[];;;;text;t2_ksc93;False;False;[];;"They didn't explain the MC at all in episode one which leaves a lot of his personality out.. I found that a very odd choice because a lot of what he does in the story is a result of pretty much his life before death. - -The first episode should have been a 40min like re:zero and it included the part in the LN before his death I think, unless they somehow add that in later which would be odd? unless not? idk guess we'll see";False;False;;;;1610476815;;False;{};gj0ymso;False;t3_kuj1bm;False;True;t1_git4193;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0ymso/;1610535894;1;True;False;anime;t5_2qh22;;0;[]; -[];;;muhwyndhp;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kazeam;light;text;t2_2pi8lx6x;False;False;[];;Church of Roxyism rise up!;False;False;;;;1610476865;;False;{};gj0yqwh;False;t3_kuj1bm;False;False;t1_gis8y8c;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0yqwh/;1610535959;1;True;False;anime;t5_2qh22;;0;[]; -[];;;muhwyndhp;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kazeam;light;text;t2_2pi8lx6x;False;False;[];;By the knowledge of how far the story is previewed in the Trailer, I assume it would end around volume 6. With the series projected to ends in Volume 25/26, Then 8-cour / 4 seasons of 24~ish episodes will do it justice, plus maybe 1 or 2 OVA per season.;False;False;;;;1610477350;;False;{};gj0ztwm;False;t3_kuj1bm;False;True;t1_git5pld;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj0ztwm/;1610536585;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Seret42;;;[];;;;text;t2_4utojqpi;False;False;[];;Fair point. I need to finish reading it honestly.;False;False;;;;1610477992;;False;{};gj119t3;False;t3_kuj1bm;False;True;t1_gj0ecbr;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj119t3/;1610537411;1;True;False;anime;t5_2qh22;;0;[]; -[];;;muhwyndhp;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kazeam;light;text;t2_2pi8lx6x;False;False;[];;Little tidbit Trivia here.. This series contains many foreign languages (not just 1 foreign language), and the Anime Production committee is hiring an actual Linguist Expert to make real fake language based on Japanese. So the phrase and logical structure of the language is consistent with the context.;False;False;;;;1610478009;;False;{};gj11b7l;False;t3_kuj1bm;False;True;t1_giu67x7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj11b7l/;1610537434;2;True;False;anime;t5_2qh22;;0;[]; -[];;;muhwyndhp;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kazeam;light;text;t2_2pi8lx6x;False;False;[];;This is based on Light Novel tho (Which if you see the light novel Illustration, you will know that it is SUPERB).. not manga;False;False;;;;1610478479;;False;{};gj12c6q;False;t3_kuj1bm;False;False;t1_git7x76;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj12c6q/;1610538022;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Konko_;;;[];;;;text;t2_ect0zie;False;False;[];;So is Mushoku Tensei completed?;False;False;;;;1610479058;;False;{};gj13lz0;False;t3_kuj1bm;False;True;t1_gis95p1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj13lz0/;1610538757;1;True;False;anime;t5_2qh22;;0;[]; -[];;;random_throwaway0001;;;[];;;;text;t2_9lx2xvpv;False;False;[];;The web novel was completed 5 years ago.;False;False;;;;1610479334;;False;{};gj147r7;False;t3_kuj1bm;False;True;t1_gj13lz0;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj147r7/;1610539107;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RTT197;;;[];;;;text;t2_1jqn719v;False;False;[];;Decent 1st episode. We'll see how the rest of the series plays out.;False;False;;;;1610485705;;False;{};gj1i859;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj1i859/;1610548442;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tissue_water;;;[];;;;text;t2_5n0w4oi4;False;False;[];;His voice is perfect for Rudy's monologue, it makes you not take his words too seriously, as you should.;False;False;;;;1610490388;;False;{};gj1sdc5;False;t3_kuj1bm;False;True;t1_gisscme;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj1sdc5/;1610555701;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ANINETEEN;;;[];;;;text;t2_4g33jvxm;False;False;[];;This looks hella good 😮;False;False;;;;1610492822;;False;{};gj1xc9q;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj1xc9q/;1610559278;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MeMoob;;;[];;;;text;t2_9oh5eag3;False;False;[];;"I started this with less than zero expectations even while being a isikai addict. I skipped ahead before starting to about a quarter, half, and three quarters in for a couple seconds each skip as I always do to pre-check a show and thought, ""oh wow, this looks really good."" - -I was so worried that the degenerate protagonist was going to ruin it in the first five minutes, but by half way through I knew I was hooked. By the end I knew it was going to suck to have to wait a week for another episode as I'm as excited to see where it goes as I am with Re:zero, my favourite show. - -This anime was incredible. I hope my flipped expectations aren't too much. I may skim the manga to check, but I don't want to ruin it for me like I have with others";False;False;;;;1610494282;;False;{};gj2087s;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj2087s/;1610561325;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kcin1987;;;[];;;;text;t2_xjbmi;False;False;[];;The end parts in the WN hit you hard. Regrets, and the such.;False;False;;;;1610498635;;False;{};gj28ht5;False;t3_kuj1bm;False;True;t1_gix5qus;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj28ht5/;1610567296;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kcin1987;;;[];;;;text;t2_xjbmi;False;False;[];;"First, it's not particularly cliched. Not many isekais, or stories in anime go from cradle > Grave, and also make the isekai aspect of the story central not only to the plot, but to the characters growth, and to several other story elements. - -Second, a well executed trope makes for good entertainment, subverting your expectations for only that purpose only leads to garbage (see Got s 8, starwars, TLOU2, etc.). - -Third, it's not stale, I've watched and read countless isekais, and fantasy stories since, this one still stands out. The story is a prologue to a larger story that remains to be told, yet the story has a finite beginning and end. - -Fourth, animation is on point. And as we can see from Demon Slayer, even a mediocre narrative can be elevated by good animation (and in this case, in my opinion, the narrative is quite good). - -Fifth, it's nice to see passion projects from animators, and the pacing seems to be quite good.";False;False;;;;1610498926;;False;{};gj291fu;False;t3_kuj1bm;False;True;t1_givhbwq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj291fu/;1610567680;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lilahmer;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/lilahmer;dark;text;t2_13goc7;False;False;[];;I had read the first three chapters of the manga but didn't go through with it as I didn't get hooked. The anime however is so much better in just 1 episode.;False;False;;;;1610505109;;False;{};gj2kiy3;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj2kiy3/;1610575729;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FlameDragoon933;;;[];;;;text;t2_7v8mqiod;False;False;[];;I wish I could have some Zenith in my life;False;False;;;;1610515476;;False;{};gj3263c;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj3263c/;1610587764;2;True;False;anime;t5_2qh22;;0;[]; -[];;;one_love_silvia;;;[];;;;text;t2_a1z3b;False;False;[];;">Hopefully they Go all The way. - -his parents certainly are. frequently.";False;False;;;;1610517386;;False;{};gj34sjq;False;t3_kuj1bm;False;True;t1_gisdsy5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj34sjq/;1610589416;1;True;False;anime;t5_2qh22;;0;[]; -[];;;serduncanthebold;;;[];;;;text;t2_ncyox;False;False;[];;"The first pre airing episode was 40 mins and included his (former) parents funeral scene. -You can expect it in the episode 2.";False;False;;;;1610527734;;False;{};gj3gduo;False;t3_kuj1bm;False;True;t1_gj0ymso;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj3gduo/;1610596997;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Plun_999;;;[];;;;text;t2_4ddy05ar;False;False;[];;⁸8;False;False;;;;1610529238;;False;{};gj3hv89;False;t3_kuj1bm;False;True;t1_giz2abu;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj3hv89/;1610597935;1;True;False;anime;t5_2qh22;;0;[];True -[];;;mdem5059;;;[];;;;text;t2_ksc93;False;False;[];;"Seems strange not to start with that, as it sets up his character for the whole thing. - -Oh well, the episode was still hype and the animation was beyond what I expected so still a fun watch. I just hope the anime does the WN/LN justice as there wont be a second try, not everybody can be lucky like FMA.";False;False;;;;1610529949;;False;{};gj3ik7h;False;t3_kuj1bm;False;True;t1_gj3gduo;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj3ik7h/;1610598362;1;True;False;anime;t5_2qh22;;0;[]; -[];;;motk;;;[];;;;text;t2_8nu8f;False;False;[];;Eh, I'll live. I did manage to get through it and whilst I can see context it's one of those you'd be hard pressed to explain to muggles without looking like you should be in the back of the hilux.;False;False;;;;1610531285;;False;{};gj3juit;False;t3_kuj1bm;False;True;t1_gizym7x;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj3juit/;1610599153;1;True;False;anime;t5_2qh22;;0;[]; -[];;;motk;;;[];;;;text;t2_8nu8f;False;False;[];;I'm really not! I even watched all of that shitty siscon one a couple of years back even if I did have to mark all episodes as 'unwatched' after to deal with my shame;False;False;;;;1610531496;;False;{};gj3k1vz;False;t3_kuj1bm;False;True;t1_gj090yj;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj3k1vz/;1610599277;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ShinyChromeBadger;;;[];;;;text;t2_5snbrf9e;False;False;[];;If you could give a guess on how much this first episode adapted of the first volume what would it be? I'm trying to figure out how long the anime would be if they completely adapted the novel at the rate of the first episode.;False;False;;;;1610532900;;False;{};gj3lepm;False;t3_kuj1bm;False;False;t1_giuv1hi;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj3lepm/;1610600091;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ShinyChromeBadger;;;[];;;;text;t2_5snbrf9e;False;False;[];;Over the course of the story how old does the MC get? Is he going to stay a kid over the course of the anime? Or do we seem him grow into an adult? I saw one comment saying you see his entire life story from birth to death. Is that true? Thanks.;False;False;;;;1610533863;;False;{};gj3mbyq;False;t3_kuj1bm;False;True;t1_gisawl1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj3mbyq/;1610600646;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Coldhimmel;;;[];;;;text;t2_3rgrmidh;False;False;[];;"the flute remind me so much of Rigël Theatre - -##";False;False;;;;1610536299;;False;{};gj3oqzs;False;t3_kuj1bm;False;True;t1_gitadkr;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj3oqzs/;1610602079;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BenjiLizard;;;[];;;;text;t2_14lith;False;False;[];;Without spoiling, it's a very big deal for the character. Despite being a very different individual with far more reasons to be confident about himself, Rudeus has to deal with his past life's burden for a while.;False;False;;;;1610537934;;False;{};gj3qgug;False;t3_kuj1bm;False;True;t1_gis7gyy;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj3qgug/;1610603146;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MartialBob;;;[];;;;text;t2_h4z8t;False;False;[];;Most of Funimation's stuff is on Hulu. That's where I watched it.;False;False;;;;1610541315;;False;{};gj3ud2x;False;t3_kuj1bm;False;True;t1_gixm18k;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj3ud2x/;1610605438;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MadeMeMeh;;;[];;;;text;t2_7ued2;False;False;[];;Maybe I haven't read enough of the novels but from the movies we can't really tell how the lore around Jedi influence that interaction. Maybe asking is generally considered a formality so people say yes out of fear the kid will be taken anyways. Also with a payment that also is sort of shady when you think about.;False;False;;;;1610551545;;False;{};gj4bo2a;False;t3_kuj1bm;False;True;t1_giyaw3c;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj4bo2a/;1610615082;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dancelordzuko;;;[];;;;text;t2_zfc18;False;False;[];;"This is a show I would have enjoyed far more if the MC didn’t feel the need to remind me that he’s a degenerate every few minutes. - -A shame too, since the animation and character designs are gorgeous. Gonna have to drop it right here. - -Glad Bookworm executed these ideas way the hell better. Being the LN to start the isekai trope doesn’t give it a pass.";False;False;;;;1610555050;;False;{};gj4j33v;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj4j33v/;1610619123;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Al-Pharazon;;;[];;;;text;t2_1s32gw1x;False;False;[];;"What ideas? Outside of starting over as babies both stories are completely different. - -Myne was an clumsy ""idiot"" but the purpose of her story wasn't to redeem herself or live a different live as her actions where mostly based on her fixation on books. Rudeus on the other hand had to be a flawed person as his driving motive is to redeem himself and live a fulfilling live this time. Their motives are different and because of that they have to be written differently as characters";False;False;;;;1610556672;;False;{};gj4mo3y;False;t3_kuj1bm;False;True;t1_gj4j33v;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj4mo3y/;1610621136;3;True;False;anime;t5_2qh22;;0;[]; -[];;;EnlightenedLord;;;[];;;;text;t2_8ea6s5z;False;False;[];;You'd probably heard it's op in a compilation before (if that's your thing) check it out, you should notice the similarities pretty quickly!;False;False;;;;1610558527;;False;{};gj4qt4v;False;t3_kuj1bm;False;True;t1_giwydra;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj4qt4v/;1610623468;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BatmanRises;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/Yuuki_Ame;light;text;t2_8jpez;False;False;[];;Now that's an understatement.;False;False;;;;1610560574;;False;{};gj4vh2h;False;t3_kuj1bm;False;True;t1_gis5mo2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj4vh2h/;1610626179;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BatmanRises;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/Yuuki_Ame;light;text;t2_8jpez;False;False;[];;I thought it was the roughly the same thing but AniNews warned me so I gave it a try. I love it so much and can't wait for the next episode.;False;False;;;;1610561037;;False;{};gj4wj9s;False;t3_kuj1bm;False;True;t1_gis5cl6;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj4wj9s/;1610626813;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dancelordzuko;;;[];;;;text;t2_zfc18;False;False;[];;"Let’s see... - -* starting life as a child/baby with memories intact? Check. -* said previous life was one of a shut in? Check. -* wanting to make their second chance at life better than their first? Check. -* being a magical prodigy? Check. -* Being reincarnated in a fantasy world? Check. -* Having a blue haired magical teacher/mentor? Check and check. - -There’s a ton in common between the two of these and while I understand that Mushoku Tensei was the father of isekai light novels, everything shown in this episode was as generic as it gets. Just because it started the trope, doesn’t mean it gets a pass for being cookie cutter. - -Bookworm, on the other hand, takes an entirely different approach. Myne doesn’t learn she lives in a fantasy world with magic until several volumes in. She works her way up from having nothing unlike Rudy, who conveniently has 5 volumes of magical books in his house and is born from a family who just gives him everything he needs to meet his potential. - -If you think Myne’s story wasn’t to redeem herself, did you even watch the entire show? Or did you forget everything she did for her family and friends and learned to truly care for them? The part where she gets to see her mom again to apologize and get closure? The end where she threatens to kill anyone who would harm her family, something she never would have even thought to consider in her previous life? The books were the beginning motivation but it turned into so much more. Myne became someone who could easily put others before herself. - -I don’t think a character needs to be flawed in order to have a reason to live a fulfilled life. They just felt the need to make him the most stereotypical loser possible. Which makes him even less interesting that his only defining trait is his perverted mind.";False;False;;;;1610561520;;1610564192.0;{};gj4xm6f;False;t3_kuj1bm;False;True;t1_gj4mo3y;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj4xm6f/;1610627467;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nosorrynoyes;;;[];;;;text;t2_1gyhbufm;False;False;[];;Nah;False;False;;;;1610562004;;False;{};gj4ypgy;False;t3_kuj1bm;False;False;t1_gj4vh2h;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj4ypgy/;1610628202;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tagged2high;;;[];;;;text;t2_iblm7;False;False;[];;"I didn't know anything going into this. Basic summary looked generic, but... - -WOW! Looks amazing. Love the style, the details, the animation, the magical concepts, the acting. I hope things stay high from here.";False;False;;;;1610562138;;False;{};gj4z0mf;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj4z0mf/;1610628409;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"Wow completely blew expectations I had for it. Didn't watch the trailer or teasers and all I saw were a few comments on Reddit saying the first episode was fantastic, few screenshots of the water on twitter and that the studio was formed solely for this this project - - -I didn't come in expecting to see incredible effects animation, character acting or the ridiculously good sound design. - - -The MC having to truly reincarnate and go through early childhood was a great way to introduce the basic magic system without a complete exposition dump. Really wanted to see more of reincarnation as a child and growing up after seeing Bakarina a couple of seasons ago. - - -Also hearing comments about the MC's behaviour in rather surprised it was much more tame than what I expected. I expected full blown echhi for some reason. It seems his behaviour will be explained as well. Anyways they really didn't downplay the parents love for each other lol. - - -Easily my favourite start to any isekai outside of Re: Zero.";False;False;;;;1610570786;;1610570976.0;{};gj5ijhg;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj5ijhg/;1610641960;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"Wish popularity always guaranteed great production. *Looks towards Tokyo Ghoul* - -Even AoT has historically suffered from a insanely tense and tight production despite being like the 2/3rd best selling manga in the last decade";False;False;;;;1610571208;;False;{};gj5jhkz;False;t3_kuj1bm;False;True;t1_gj0ecbr;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj5jhkz/;1610642636;1;True;False;anime;t5_2qh22;;0;[]; -[];;;urmamaissofat;;;[];;;;text;t2_1mpfggdf;False;False;[];;Well, he is reaaally perverted, but it is going to be pushed further and further to the back stage as show progreses. He Doesn't get less perverted, Just less horny. Kinda like progres from teen to adult.;False;False;;;;1610571755;;False;{};gj5kpkz;False;t3_kuj1bm;False;True;t1_giz1hw0;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj5kpkz/;1610643478;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jtaffleck;;;[];;;;text;t2_13m2lnh9;False;False;[];;Found it on AnimeLab;False;False;;;;1610571936;;False;{};gj5l3va;False;t3_kuj1bm;False;True;t1_gj3ud2x;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj5l3va/;1610643751;2;True;False;anime;t5_2qh22;;0;[]; -[];;;urmamaissofat;;;[];;;;text;t2_1mpfggdf;False;False;[];;Tbh he Doesn't really progres in pervertnes departament, he remains the same creep, Just way less horny. Character development here would be more on a family values and responsebility part.;False;False;;;;1610572100;;False;{};gj5lgpt;False;t3_kuj1bm;False;True;t1_gix7e1n;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj5lgpt/;1610643995;3;True;False;anime;t5_2qh22;;0;[]; -[];;;urmamaissofat;;;[];;;;text;t2_1mpfggdf;False;False;[];;It really is slice of life. The whole show is going to be MC's life and it would not even have some Major main goal till the second half(probably even further) of it.;False;False;;;;1610572483;;False;{};gj5mclu;False;t3_kuj1bm;False;True;t1_givbax9;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj5mclu/;1610644613;1;True;False;anime;t5_2qh22;;0;[]; -[];;;urmamaissofat;;;[];;;;text;t2_1mpfggdf;False;False;[];;Well, pretty sure he would be kid for a whole season. Not so much sreentime for mum tho.;False;False;;;;1610572770;;False;{};gj5n0xl;False;t3_kuj1bm;False;True;t1_giv3prs;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj5n0xl/;1610645104;1;True;False;anime;t5_2qh22;;0;[]; -[];;;urmamaissofat;;;[];;;;text;t2_1mpfggdf;False;False;[];;Just so you know, MC is not going to become less perverted, Just less horny. He really grows as a person in other parts though, i even kinda respect him.;False;False;;;;1610573268;;False;{};gj5o6ws;False;t3_kuj1bm;False;True;t1_gity7bf;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj5o6ws/;1610645911;1;True;False;anime;t5_2qh22;;0;[]; -[];;;urmamaissofat;;;[];;;;text;t2_1mpfggdf;False;False;[];;Not the first, but totally popularizer.;False;False;;;;1610573381;;False;{};gj5ogh8;False;t3_kuj1bm;False;True;t1_gitl7yu;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj5ogh8/;1610646103;1;True;False;anime;t5_2qh22;;0;[]; -[];;;urmamaissofat;;;[];;;;text;t2_1mpfggdf;False;False;[];;Yeah, he is real lolicon. Probably the most controversial thing about him.;False;False;;;;1610573790;;False;{};gj5pf1i;False;t3_kuj1bm;False;True;t1_git465k;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj5pf1i/;1610646786;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;A real *pedophile*. No problem if he stuck to drawn lolis, but he obviously doesn't.;False;False;;;;1610574247;;False;{};gj5qhhr;False;t3_kuj1bm;False;True;t1_gj5pf1i;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj5qhhr/;1610647610;1;True;False;anime;t5_2qh22;;0;[]; -[];;;urmamaissofat;;;[];;;;text;t2_1mpfggdf;False;False;[];;Pretty much everything you wrote is going to be either debunked or explained later on. I get why you would ask those questions though, but i don't think that it's fair to make assumptions by the one episode. Also, undeserved downvotes. Have a good time watching show!;False;False;;;;1610574534;;False;{};gj5r5ux;False;t3_kuj1bm;False;True;t1_gishh99;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj5r5ux/;1610648103;1;True;False;anime;t5_2qh22;;0;[]; -[];;;urmamaissofat;;;[];;;;text;t2_1mpfggdf;False;False;[];;Oh Man, waifu wars this show is going to cause are going to be crazy.;False;False;;;;1610574615;;False;{};gj5rcj7;False;t3_kuj1bm;False;False;t1_gisglic;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj5rcj7/;1610648241;1;True;False;anime;t5_2qh22;;0;[]; -[];;;urmamaissofat;;;[];;;;text;t2_1mpfggdf;False;False;[];;"1. Pretty old, most of the story takes Place when he is teen and young adult. - 2.Probably for the 1 season. - 3.yes, we should see him grow, no timeskips. - 4.yeah, big sad.";False;False;;;;1610575184;;False;{};gj5snsj;False;t3_kuj1bm;False;True;t1_gj3mbyq;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj5snsj/;1610649213;2;True;False;anime;t5_2qh22;;0;[]; -[];;;urmamaissofat;;;[];;;;text;t2_1mpfggdf;False;False;[];;*Can you not hurt me this way?* and yeah, this show is going to face so much backlash, i can already feel it.;False;False;;;;1610575898;;False;{};gj5u9mq;False;t3_kuj1bm;False;True;t1_gj5qhhr;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj5u9mq/;1610650326;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kokujinclub;;;[];;;;text;t2_13y4eb;False;False;[];;This reminds me of the beginning after the end soo much. I love it!;False;False;;;;1610576231;;False;{};gj5v0bu;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj5v0bu/;1610650839;2;True;False;anime;t5_2qh22;;0;[]; -[];;;urmamaissofat;;;[];;;;text;t2_1mpfggdf;False;False;[];;Probably the most balanced op i ever seen.;False;False;;;;1610576397;;False;{};gj5vdht;False;t3_kuj1bm;False;True;t1_gis6k97;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj5vdht/;1610651088;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CuriousSnowman;;;[];;;;text;t2_1k7pm3v9;False;False;[];;Manga is pretty bad adaptation which skipped most of the interesting aspects from the light novel such us character development, other character POV, Rudeus thought of process etc. I only realize this recently after comparing both Light novel and manga.;False;False;;;;1610577736;;False;{};gj5yakd;False;t3_kuj1bm;False;True;t1_gj2kiy3;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj5yakd/;1610653118;2;True;False;anime;t5_2qh22;;0;[]; -[];;;urmamaissofat;;;[];;;;text;t2_1mpfggdf;False;False;[];;Sometimes...;False;False;;;;1610577842;;False;{};gj5yiuz;False;t3_kuj1bm;False;True;t1_gitxov7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj5yiuz/;1610653279;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lilahmer;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/lilahmer;dark;text;t2_13goc7;False;False;[];;Oh okay that makes sense. usually manga adaptations are pretty good adaptations, in my experience at least, but ig this one was a bust.;False;False;;;;1610578091;;False;{};gj5z1xb;False;t3_kuj1bm;False;True;t1_gj5yakd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj5z1xb/;1610653683;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CuriousSnowman;;;[];;;;text;t2_1k7pm3v9;False;False;[];;Yeah, there are few life lessons that I learned from this. No matter how powerful you are, personal connection is still one of the thing that would be very useful to have.;False;False;;;;1610578264;;False;{};gj5zf92;False;t3_kuj1bm;False;True;t1_giz2abu;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj5zf92/;1610653968;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610579623;moderator;False;{};gj6298k;False;t3_kuj1bm;False;True;t1_giv7b60;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj6298k/;1610655967;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nocomply__;;;[];;;;text;t2_4pg5117i;False;False;[];;Rudy's mom has got it going on but Lilia though. I hope this is adapted in full;False;False;;;;1610579999;;False;{};gj6314m;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj6314m/;1610656533;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HannibalCake;;;[];;;;text;t2_13gozl;False;False;[];;"Lol well even us degenerates have limits right, I mean it’s fair enough we all have our preferences. - -But just FYI this story totally can’t be compared to the dumpster fire that is Kiss x Sis or even Oreimo. If I had to say why it’s mostly because it was adapted from a LN where the author actually knew how to plan and write a coherent plot";False;False;;;;1610582452;;False;{};gj67zfk;False;t3_kuj1bm;False;True;t1_gj3k1vz;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj67zfk/;1610659970;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VariousMeet;;;[];;;;text;t2_63veb3s5;False;False;[];;You're right, I shouldn't have talked as it's only the first episode like you said. Not sure if it could be called a bad habit or not, but I tend to comment on episode discussion threads only based on that single episode in mind. Since this episode left out those details you mentioned will be explained later on, I had the poor idea to relate it too generic shows that tend to just leave those with loose ends. I didn't want to come off as pessimistic about the show, but it happened to be the subject of discussion and I accidentally used it as an example for my rant on the trope. Thanks for being positive, I most likely will have a good time watching :);False;False;;;;1610583836;;False;{};gj6aq6h;False;t3_kuj1bm;False;True;t1_gj5r5ux;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj6aq6h/;1610661909;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610591481;moderator;False;{};gj6pj49;False;t3_kuj1bm;False;False;t1_giuorr1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj6pj49/;1610671559;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610591519;moderator;False;{};gj6plp2;False;t3_kuj1bm;False;True;t1_givlib8;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj6plp2/;1610671605;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610591562;moderator;False;{};gj6pom7;False;t3_kuj1bm;False;True;t1_giuvgzs;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj6pom7/;1610671654;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hentai_Agent;;;[];;;;text;t2_6nbmji0;False;False;[];;Super funny so far, and very entertaining. Can't wait to see where it goes. I'm now torn between reading the LN or waiting for the anime to unfold.;False;False;;;;1610597079;;False;{};gj6zo3h;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj6zo3h/;1610677878;1;True;False;anime;t5_2qh22;;0;[]; -[];;;verunix;;;[];;;;text;t2_sq689;False;False;[];;Everything about this has me invested. The VAs, the art, the direction. Looking forward to how this develops!;False;False;;;;1610599267;;False;{};gj73cpt;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj73cpt/;1610680389;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;"You're comparing apples to oranges man, like the living their lives as a shut in for example. Myne wasn't a full shut in as she worked hard to get her dream job at a library, and while she did isolate herself to a degree she does have some form of relationship with her mom. Rudy on the other hand was a shut in with the whole meet thing going on, a bad past and a fear of people. While they could both be classified as a shut in, they're so different that you can't really compare them. - -The same goes for your other points like being a magic prodigy, those are entirely different as one was born with an overflow of mana that she needs to control or she'll die. And being a magic user isn't her life goal, it's just something she wants to be able to manage. While the other is only a prodigy because he actively studied it and it is a goal of his. Again, apples to oranges. - -The only things these two stores really have in common is being reborn in a fantasy world";False;False;;;;1610601689;;False;{};gj773q5;False;t3_kuj1bm;False;True;t1_gj4xm6f;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj773q5/;1610682797;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SpunkyDred;;;[];;;;text;t2_is3vs;False;False;[];;"> apples to oranges - -But you can still compare them.";False;False;;;;1610601721;;False;{};gj775ff;False;t3_kuj1bm;False;True;t1_gj773q5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj775ff/;1610682832;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;You can also compare a chair to a lamp, doesn't mean it'll be a worthwhile comparison though.;False;False;;;;1610601903;;False;{};gj77f67;False;t3_kuj1bm;False;False;t1_gj775ff;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj77f67/;1610683002;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptSchmittyBallz;;;[];;;;text;t2_1222nz;False;False;[];;I like how there really wasn’t an MC in that show;False;False;;;;1610610538;;False;{};gj7i29r;False;t3_kuj1bm;False;True;t1_gitrsbm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj7i29r/;1610689873;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sergiodsc;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Sergiodsc;light;text;t2_1b6u04a3;False;False;[];;Yeah that's what I tought, because I assume they would want to dedicate most of the time to his harem instead of his mom, so sad.;False;False;;;;1610613345;;False;{};gj7kxve;False;t3_kuj1bm;False;True;t1_gj5n0xl;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj7kxve/;1610691794;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ringosham;;;[];;;;text;t2_ihjkiq2;False;False;[];;"Exactly. Every time when an isekai story decides to just speedrun through the childhood phase to teenager I always ask this. - -Why bother reincarnating the protagonist as a baby if you don't write anything in their childhood?";False;False;;;;1610635073;;False;{};gj8bfrt;False;t3_kuj1bm;False;True;t1_gitqpid;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj8bfrt/;1610706561;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dancelordzuko;;;[];;;;text;t2_zfc18;False;False;[];;I don’t consider them that different from one another that they can’t be compared. It’s the exact same idea being executed differently, so you can judge which of the two takes you like better. I personally like the Myne’s magical ability acted as a double edged sword with consequences. Made the “magical prodigy” trope way more interesting and opened up far more possibilities and chances to build lore.;False;False;;;;1610638541;;False;{};gj8ili2;False;t3_kuj1bm;False;True;t1_gj773q5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj8ili2/;1610710653;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ImKnottt;;;[];;;;text;t2_80glhny6;False;False;[];;There are videos on facebook which compiled Ep. 1-2 of Mushoku Tensei. As I have searched on some websites, the only scheduled release for this week was episode 1. Does anyone know how those were released? And if it is an official copy, what would next week's released episode will be?;False;False;;;;1610639085;;False;{};gj8jrax;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj8jrax/;1610711377;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Loshi380;;;[];;;;text;t2_1458lj;False;False;[];;Didn't expected to see this name here, Rigël Theatre is amazing!;False;False;;;;1610641536;;False;{};gj8p42m;False;t3_kuj1bm;False;True;t1_gj3oqzs;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj8p42m/;1610714801;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;"When there's so few similarities it doesn't make sense to compare them. The role of magic plays significantly different roles in the two stories. Magic weakens Myne and thus allows her to learn about lore from the church. Magic weakening her also helps her achieve her goal of living a fairly stationary life and live her dream of reading/writing books. Magic strengthens Rudy which allows him to travel the world and meet import figures therefore allowing him to learn the lore in a different way. Magic strengthening him allows him to achieve his goals as Rudy's main driving force is to protect his friends and family. - -Magic is used in completely different ways in order to advance the plots. If Myne didn't have a weak body from magic then she wouldn't be able to achieve her goal in the same way that if magic weakened Rudy he wouldn't be able to achieve his goal. It just doesn't make sense to compare then for things like that. By your logic I could argue that Tanya the great is also comparable to these two series just because the MC is reincarnated and a magic prodigy";False;False;;;;1610644929;;False;{};gj8wu5f;False;t3_kuj1bm;False;True;t1_gj8ili2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj8wu5f/;1610720197;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HotPotatoe30;;;[];;;;text;t2_9tj5vwoh;False;False;[];;He is also the same VA with Yusuke from Persona 5;False;False;;;;1610647506;;False;{};gj92ox8;False;t3_kuj1bm;False;True;t1_gis62u2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj92ox8/;1610724369;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dancelordzuko;;;[];;;;text;t2_zfc18;False;False;[];;"What you’re talking about is the execution of ideas, not the ideas themselves. The same core idea prevails: the main character is a magical prodigy and a core plot device to the story. All you’re doing is outlining the execution each author chose to take. - -And let’s not pretend that Mushoku Tensei’s execution makes it unique, because it doesn’t. It follows the typical overpowered main character who gets his abilities through convenient means to travel the world and become a better person. It follows the very standard Hero’s Journey trope, which is quite frankly boring. The main hook as far as I’m concerned is that the MC is a horrible person and I’m supposed to stick around for him the change for the better. Maybe when it’s over and I have time, I’d consider it. For now, I don’t have time with as stacked a season as this one. - -So I’ll repeat what I said, I liked the execution that Bookworm took far more that this one doesn’t impress me enough to continue. I’m not as easily swayed by beautiful animation and famous seiyuu as people here seem to be.";False;False;;;;1610647768;;False;{};gj939su;False;t3_kuj1bm;False;True;t1_gj8wu5f;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj939su/;1610724766;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Al-Pharazon;;;[];;;;text;t2_1s32gw1x;False;False;[];;That was from a pre-release, next week is when episode 2 officially comes out;False;False;;;;1610648282;;False;{};gj94ey8;False;t3_kuj1bm;False;True;t1_gj8jrax;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj94ey8/;1610725559;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;As I said, it's all because they're trying to tell different stories. Bookworm isn't supposed to be about a hero and adventures, it's more of a slice of life/political and class system plot. Mushoku is an action/adventure/slice of life. It's fine if you prefer the story bookworm is telling over mushoku, but I repeat once more that they have so many differences and so few similarities that it makes no sense to compare them in the ways that you're describing.;False;False;;;;1610650348;;False;{};gj98zxn;False;t3_kuj1bm;False;True;t1_gj939su;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj98zxn/;1610728802;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dancelordzuko;;;[];;;;text;t2_zfc18;False;False;[];;"Well, I’m in the camp that says you’re more than free to compare the two. I see plenty of ways to do so given that they start almost the exact same way. - -Your view screams to me that you’ve already familiarized yourself with this series, so of course you can’t see the similarities. You’re too far in. You lack the perspective of an anime-only watcher.";False;False;;;;1610650784;;False;{};gj99z16;False;t3_kuj1bm;False;True;t1_gj98zxn;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj99z16/;1610729496;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;But as an anime only watcher you've only seen a single episode, how is that enough to be able to compare it to anything when you know nothing outside of the fact that the MC is reincarnated and can do magic?;False;False;;;;1610651249;;False;{};gj9azq4;False;t3_kuj1bm;False;True;t1_gj99z16;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj9azq4/;1610730230;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dancelordzuko;;;[];;;;text;t2_zfc18;False;False;[];;"Because what was shown was enough to know how absolutely generic this show will be. - -Lemme guess, the MC’s gonna go to magic school or something, meet one of the first members of his inevitable harem and then suddenly there will be some premonition or whatever bullshit to get the plot going to show how amazing the MC is and how noble he is to save the world of something. Along the way, he’ll get other members to join his harem and maybe have a kid or something, because hey, if Kirito and Asuna can play pretend parent, any isekai can do the same! - -By the end of the series, I’ll bet he’ll have a fantastic life with a bunch of wives because his previous life was so terrible, he deserves it! Of course, the protagonist of these sorts of shows gets to have a harem just like any other.";False;False;;;;1610651767;;False;{};gj9c4id;False;t3_kuj1bm;False;True;t1_gj9azq4;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj9c4id/;1610731029;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;It sounds like you're not even trying to compare this series and you're just making up excuses to agte on it when you don't even know what's going to happen;False;False;;;;1610651861;;False;{};gj9cbys;False;t3_kuj1bm;False;True;t1_gj9c4id;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj9cbys/;1610731167;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dancelordzuko;;;[];;;;text;t2_zfc18;False;False;[];;"I already did compare them though. - -I said before that they both take the same premise and execute them differently. I already determined that I wasn’t interested in where this one was going because I like shows that aren’t predictable. It’s a good thing there are options for those who are interested in isekai but don’t want the same tropes. It’s not like every fantasy anime these days is one, after all. - -You didn’t deny my guess, no? That tells me enough.";False;False;;;;1610652358;;False;{};gj9dfh4;False;t3_kuj1bm;False;True;t1_gj9cbys;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj9dfh4/;1610731949;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;"I didn't confirm or deny you guess because either one would count as a spoiler. I don't want to spoil the show for anyone who happens upon our conversation. - -Like I've said many times before, if you're comparing them simply because they're both reincarnation stories then means you can compare any reincarnation series on the same level as these two";False;False;;;;1610652770;;False;{};gj9ec9l;False;t3_kuj1bm;False;True;t1_gj9dfh4;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj9ec9l/;1610732619;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dancelordzuko;;;[];;;;text;t2_zfc18;False;False;[];;"Thanks for your confirmation. It’s as predictable as I thought. I can see why people call this one is the granddad of the annoying isekai tropes that plague the modern anime fantasy genre. - -I can compare the two because they are within the exact genre that takes the idea of getting isekai’d via reincarnation while having memories of the previous lives intact. That’s enough to compare, really. The part about them being magical prodigies is just another layer from which to compare to. Doesn’t stop people from comparing SAO to Log Horizon because the two of them start with the MCs being stuck in their in-game avatars and learning the ways of the video game world they now live in nor does it stop people from comparing March Comes in Like a Lion to Chihayafuru because they center around two high school aged characters who devote their lives to Japanese board and card games respectively. - -Point is, you don’t need much to make ample comparisons between two series. To say they’re “apples to oranges” is just plain incorrect. It’s more accurate to say that they’re just different kinds of apples. You can like apples but not care for every kind of apple out there. You can want one that is crunchy, one that is soft, one that is juicy or one that is sour. In order to know which ones you like best, you compare them to the ones you may have tried in the past.";False;False;;;;1610653595;;1610655059.0;{};gj9g520;False;t3_kuj1bm;False;True;t1_gj9ec9l;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj9g520/;1610733913;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SpunkyDred;;;[];;;;text;t2_is3vs;False;False;[];;"> apples to oranges - -But you can still compare them.";False;False;;;;1610653629;;False;{};gj9g7ps;False;t3_kuj1bm;False;False;t1_gj9g520;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj9g7ps/;1610733969;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;"Take from what is said as you may, I didn't confirm or deny anything and I'm not giving you a spoiler tag explaining the series from start to finish. And you're just plain wrong with saying it's like comparing different types of apples, that would be for two series that have many similarities. Apples to oranges are for series that have the same genre and a very, very small number of similarities (reincarnation isekai) but are vastly different. - -I'm pretty much done here, I can only explain my points so many times to deaf ears";False;False;;;;1610655984;;False;{};gj9lcf5;False;t3_kuj1bm;False;True;t1_gj9g520;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj9lcf5/;1610737738;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610656016;;False;{};gj9leyz;False;t3_kuj1bm;False;True;t1_gj9lcf5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj9leyz/;1610737784;1;True;False;anime;t5_2qh22;;0;[]; -[];;;urmamaissofat;;;[];;;;text;t2_1mpfggdf;False;False;[];;When two smart kids have different religions.;False;False;;;;1610656297;;False;{};gj9m4l5;False;t3_kuj1bm;False;True;t1_gj9lcf5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj9m4l5/;1610738241;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreamarche;;;[];;;;text;t2_2pl1ln0x;False;False;[];;Technically you can compare anything, the question is whether it's something worth comparing. The whole point of comparing is to look at the similarities and differences, if the things you're comparing have very few, insignificant differences then it begs the question of why you're comparing them at all. I'm fact, comparing apples and oranges makes more sense than comparing these two series, at least apples and oranges have more similarities;False;False;;;;1610656437;;False;{};gj9mh5k;False;t3_kuj1bm;False;True;t1_gj9leyz;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj9mh5k/;1610738475;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dancelordzuko;;;[];;;;text;t2_zfc18;False;False;[];;"Lemme take what you said here: - -> I didn't confirm or deny you guess because either one would count as a spoiler. - -The fact that you felt the need to say that going further requires spoilers is enough to confirm. If I was so off, you could have just said “no, it’s nothing like that”. But alas, that isn’t the case, is it...? - -It sounds to me that you’re so attached to this series that you can’t fathom anyone making comparisons to it. “How DARE someone say that there’s a series that they liked better that took the same idea?!” Apples are plenty diverse to compare them while still being.. well... apples. I think you’ve missed my point entirely that you have to keep saying they don’t have enough similarities when they do. There’s no official amount needed to compare as you think. Not everyone plays by the same rules as you. - -> I'm pretty much done here, I can only explain my points so many times to deaf ears - -Ah, something we finally agree on!";False;False;;;;1610657164;;False;{};gj9ofqk;False;t3_kuj1bm;False;True;t1_gj9lcf5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gj9ofqk/;1610739719;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Silicomb;;;[];;;;text;t2_6g46buua;False;False;[];;">Or did you forget everything she did for her family and friends and learned to truly care for them? The part where she gets to see her mom again to apologize and get closure? The end where she threatens to kill anyone who would harm her family, something she never would have even thought to consider in her previous life? - -If you're comparing these series then MT did this so much better. The whole importance of family and the MC coming to truly love and care for their new family, to the point where they would do anything they can to protect them. Myne still seems like she loves books first and family second, while Rudy's first and most important priority is his family.";False;False;;;;1610668550;;False;{};gjaddv5;False;t3_kuj1bm;False;True;t1_gj4xm6f;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjaddv5/;1610756690;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dancelordzuko;;;[];;;;text;t2_zfc18;False;False;[];;I completely disagree with you there. I could go into it more, but that would spoiler territory.;False;False;;;;1610674529;;False;{};gjaow6u;False;t3_kuj1bm;False;True;t1_gjaddv5;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjaow6u/;1610764192;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;hildra;;;[];;;;text;t2_d0kib;False;False;[];;I really liked the first episode but it was really creepy some of his perv inner dialogue. That whole thing about the mom. I wonder if he’s just going to be a full on creep the whole time. I enjoyed everything else about it. This is really how you introduce an isekai series. The animation and character design is so good.;False;False;;;;1610684429;;False;{};gjb72vh;False;t3_kuj1bm;False;False;t1_gis9g46;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjb72vh/;1610775349;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xyzevin;;;[];;;;text;t2_18buz0bs;False;False;[];;"I normally hate isekai but I genuinely loved this episode. - -I can already tell this series will take its world building, lore and power mechanics way more serious and way more thorough then most isekais. And honestly thats all I ever asked. - -I dont even get the complaint that its a generic premise. A well done series doesnt have to be ground breaking unique for it to be good - -And I just got done reading AnimeNewsNetwork’s review of the episode and they all had negativity to say about it because of the protagonist. And I just have to say I completely disagree with everything they’re saying. I loooove the protagonist so far. Im so tired of the overly nice perfect and movie charming characters. I want more raw and not-always-say-the-right-things protagonists. Characters that feel like actual flawed and abrasive people. The type that says something even if he knows its not the most politically correct thing to say because people are complicated ass holes that have moments of goodness in real life too.";False;False;;;;1610687047;;False;{};gjbbdhw;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjbbdhw/;1610777856;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silicomb;;;[];;;;text;t2_6g46buua;False;False;[];;Have you read MT? Do you know a single thing about Rudy and his family?;False;False;;;;1610687711;;False;{};gjbcdrf;False;t3_kuj1bm;False;True;t1_gjaow6u;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjbcdrf/;1610778422;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ImKnottt;;;[];;;;text;t2_80glhny6;False;False;[];;will it be the same?;False;False;;;;1610694081;;False;{};gjbkxfj;False;t3_kuj1bm;False;True;t1_gj94ey8;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjbkxfj/;1610783196;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Al-Pharazon;;;[];;;;text;t2_1s32gw1x;False;False;[];;Yes, it is the same.;False;False;;;;1610701111;;False;{};gjbsegm;False;t3_kuj1bm;False;True;t1_gjbkxfj;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjbsegm/;1610787240;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ikatatlo;;;[];;;;text;t2_5hu3bjau;False;False;[];;My cabbages!!!;False;False;;;;1610720078;;False;{};gjcex78;False;t3_kuj1bm;False;True;t1_giu7av1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjcex78/;1610799742;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dancelordzuko;;;[];;;;text;t2_zfc18;False;False;[];;"Do I care? Not really. - -In fact, based on this episode, it didn’t look like Rudy gave a flying fuck about his family, and years had passed. Long enough for him to at least tell you more about them, but nope. And don’t go “you have to wait and THEN it’ll get good.” That’s just bad writing if you have to wait several volumes for the MC to start caring for the sake of plot or whatever.";False;False;;;;1610722820;;False;{};gjck2vw;False;t3_kuj1bm;False;True;t1_gjbcdrf;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjck2vw/;1610802765;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Silicomb;;;[];;;;text;t2_6g46buua;False;False;[];;It's been 1 episode man, it didn't look likeyne gave a flying fuck about her family for nearly the entire first season. And most people wouldn't, if you had a family and then were suddenly reincarnated with all of your memories it would take more than 3 years (how old Rudy is by the end of episode 1) to see them truly as family. Based on your to her comments I'm seeing here it seems like you've got a bookworm anime complex;False;False;;;;1610723189;;False;{};gjckt5r;False;t3_kuj1bm;False;True;t1_gjck2vw;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjckt5r/;1610803221;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dancelordzuko;;;[];;;;text;t2_zfc18;False;False;[];;"Not really? It didn’t even take the entire season for her to care for her family. She told you about them, what their professions were, actively engaged in spending time with them. None of this was because the plot demanded it but because the author wanted her characters to be... human. Building solid foundation from the beginning and developing it over the course of the story. Not “oh hey, suddenly my family is plot-relevant, I have to now care about them or the plot won’t move forward.” - -It’s funny you say that, because it didn’t take Myne nearly as long to see her family as such. The least that could have been done is tell us more about these two but instead it was thrown under the rug and we get to hear the MC’s annoying thoughts instead. Dude’s got the personality of cardboard that his lewd thoughts are literally the only thing that defines him. - -All I said was that I liked a different series that took the same approach but classic Reddit being Reddit and the “well, ACTUALLY” attitude. Was it such a crime to not be impressed with a show that has the same cliques as the rest of the shitty isekai trope? You all are so sensitive, jeez.";False;False;;;;1610724723;;False;{};gjcnxtg;False;t3_kuj1bm;False;True;t1_gjckt5r;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjcnxtg/;1610805269;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Silicomb;;;[];;;;text;t2_6g46buua;False;False;[];;Chill, I was just pointing out that MT does family a d friendships really well. Better than what we've seen in bookworm.;False;False;;;;1610725041;;False;{};gjcolcy;False;t3_kuj1bm;False;True;t1_gjcnxtg;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjcolcy/;1610805695;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dancelordzuko;;;[];;;;text;t2_zfc18;False;False;[];;"Maybe you should chill first. I’m the one who got attacked for having a different opinion. - -That’s like, your opinion, man. Just as you’re entitled to yours, I’m entitled to mine.";False;False;;;;1610725499;;False;{};gjcpj1l;False;t3_kuj1bm;False;True;t1_gjcolcy;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjcpj1l/;1610806306;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Silicomb;;;[];;;;text;t2_6g46buua;False;False;[];;You're not being attacked, people are just giving you their opinions and you're saying that everyone is wrong because YOU feel differently. People don't have to share your opinion, but if you're commenting it on a discussion for MT then of course you're going to have people sharing their opinions with you. If you don't like being told a different opinion then don't comment on something that invites people to respond to your opinion;False;False;;;;1610727185;;False;{};gjct251;False;t3_kuj1bm;False;True;t1_gjcpj1l;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjct251/;1610808808;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dancelordzuko;;;[];;;;text;t2_zfc18;False;False;[];;"The problem was that people were just skipping over what was said and repeating themselves over and over so of course no fulfilled conversation was had. And it’s just dumb to only align with those you agree with. Your view will never get challenged. - -I’m not asking people to have my opinion, I’m asking to be challenged. Asking why this show is so special and hyped as people say and all I found was that it was anything but. - -I wanted a challenge and never got it. The person who could have gone into it with spoilers decided not to, so of course we got nowhere. Just say you don’t agree and get over it if you’re not interested.";False;False;;;;1610727540;;1610739053.0;{};gjcttxu;False;t3_kuj1bm;False;True;t1_gjct251;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjcttxu/;1610809300;0;True;False;anime;t5_2qh22;;0;[]; -[];;;charliex3000;;;[];;;;text;t2_zyvah;False;False;[];;"I wouldn't quite call it birth to death, was was like, 50 years of mostly blank in there. - -Unless the author is writing more than the web novel?";False;False;;;;1610739708;;False;{};gjdkbqf;False;t3_kuj1bm;False;True;t1_gisgf31;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjdkbqf/;1610827774;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610740008;;False;{};gjdky6j;False;t3_kuj1bm;False;True;t1_giwkmx8;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjdky6j/;1610828234;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610740308;;False;{};gjdlksy;False;t3_kuj1bm;False;True;t1_gisdu8o;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjdlksy/;1610828752;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610740705;;False;{};gjdmevu;False;t3_kuj1bm;False;True;t1_gitnzkv;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjdmevu/;1610829332;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Beybladeer;;;[];;;;text;t2_ionrm5z;False;False;[];;Bookworm has a female mc, that alone makes it worse lol.;False;False;;;;1610746568;;False;{};gjdymus;False;t3_kuj1bm;False;True;t1_gj4xm6f;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjdymus/;1610837747;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Silicomb;;;[];;;;text;t2_6g46buua;False;False;[];;What kind of spoilers are you looking for?;False;False;;;;1610750852;;False;{};gje74vt;False;t3_kuj1bm;False;True;t1_gjcttxu;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gje74vt/;1610843357;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dancelordzuko;;;[];;;;text;t2_zfc18;False;False;[];;"Alright. - -I made a guess that this series was gonna be about an overpowered MC who will go to magic school, meet the first member of his inevitable harem and then they’ll be some major event that will provide the MC with the time to show how ridiculous powerful he is. During that time, he’ll meet other members of his harem and probably have kids or something. - -I made a guess that the MC will live a fantastic life with a bunch of wives because it’s a power fantasy isekai, they all work like that. The guesswork was neither confirmed nor denied because spoilers or something. - -It’s nice that people like this series, but this concept has been done so many times already. I don’t see what’s unique about that.";False;False;;;;1610755222;;False;{};gjefc2n;False;t3_kuj1bm;False;True;t1_gje74vt;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjefc2n/;1610848587;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610761493;;1610761755.0;{};gjeqv7r;False;t3_kuj1bm;False;True;t1_gjefc2n;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjeqv7r/;1610855920;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HiImWeaboo;;;[];;;;text;t2_8faob36y;False;False;[];;This might be the first anime I've watched where the sound effect is so impressive that I'm actually conscious about it. Even the sound of tree breaking is so satisfying.;False;False;;;;1610773384;;False;{};gjfaxzy;False;t3_kuj1bm;False;True;t1_gis66ot;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjfaxzy/;1610867459;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mrfatso111;;;[];;;;text;t2_fn9fc;False;False;[];;ya, i wonder how many people will bush off mushoku tensei and called it generic without realising that this here is the grand dddy of isekai.;False;False;;;;1610787959;;False;{};gjfrv8b;False;t3_kuj1bm;False;True;t1_gisajc1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjfrv8b/;1610876617;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mrfatso111;;;[];;;;text;t2_fn9fc;False;False;[];;"Hey Yeah, has the r/CultofRoxy beeen made yet? - -&#x200B; - -HECK YEAH, it's real!";False;False;;;;1610788011;;False;{};gjfrx16;False;t3_kuj1bm;False;True;t1_gis8y8c;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjfrx16/;1610876644;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FerMenjivar;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/fermenjivar21;light;text;t2_n17n7;False;False;[];;5 days later but I wanted to answer: it's creepy because it's the kind of vocabulary a child predator would use.;False;False;;;;1610855671;;False;{};gjjhuyd;False;t3_kuj1bm;False;True;t1_giuy92v;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjjhuyd/;1610955742;2;True;False;anime;t5_2qh22;;0;[]; -[];;;random_throwaway0001;;;[];;;;text;t2_9lx2xvpv;False;False;[];;"That seems like really reaching to me. ""We expected someone with a beard. Forget beard, this one probably doesn't have her bush grown in yet"". The latter part of the sentence just signifies the one they expected turned out to be younger. ""Forget beard, his balls haven't even dropped yet"" is what you could've used there too for example (except beard vs bush makes a lot of sense obviously). Or any way of drawing attention to a trait that an old man with a bushy beard would have but someone looking as young as her wouldn't. It's the kind of vocabulary someone older would use, not a child predator.";False;False;;;;1610861486;;False;{};gjjrfvs;False;t3_kuj1bm;False;True;t1_gjjhuyd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjjrfvs/;1610961041;2;False;False;anime;t5_2qh22;;0;[]; -[];;;wansen5;;;[];;;;text;t2_13akbj;False;False;[];;"Most of us were also really young while the author of rezero wrote the story while he himself where just like us exposed to the sub-genre like we are now. He knew how to turn the typical standard thropes into something modern / ""new"" when he was young";False;False;;;;1610873169;;False;{};gjk5jzc;False;t3_kuj1bm;False;True;t1_git73pa;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjk5jzc/;1610968484;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Syncite;;;[];;;;text;t2_i379k;False;False;[];;Was about to drop if it did. So far it's alright.;False;False;;;;1610882063;;False;{};gjkhef2;False;t3_kuj1bm;False;False;t1_gis6wex;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjkhef2/;1610974425;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wtfduud;;;[];;;;text;t2_bv3xi;False;False;[];;I think JoJo would be a more apt comparison. It inspired a lot of other series, but didn't get adapted itself for a long time.;False;False;;;;1610918050;;False;{};gjndoqq;False;t3_kuj1bm;False;True;t1_gisbc8d;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjndoqq/;1611032190;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610918186;;False;{};gjndziw;False;t3_kuj1bm;False;True;t1_giu2gsx;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjndziw/;1611032376;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wtfduud;;;[];;;;text;t2_bv3xi;False;False;[];;I was thinking Roxy was a Megumin clone, but I guess it was the other way around.;False;False;;;;1610925487;;False;{};gjnubqg;False;t3_kuj1bm;False;True;t1_gisfpvt;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjnubqg/;1611041839;1;True;False;anime;t5_2qh22;;0;[]; -[];;;deja_entend_u;;;[];;;;text;t2_dcskb;False;False;[];;"Not at all actually besides them both being small and magic users that's kinda the end of their similarities. - -Roxy is bonkers skilled if a bit of a klutz. She's a high level adventurer and incredibly resourceful. - -I mean here we already see her traveling around teaching people - - -[Very minor spoiler](/s"" Roxy is already in her thirties when she shows up to teach Rudy."").";False;False;;;;1610926952;;False;{};gjnx55l;False;t3_kuj1bm;False;True;t1_gjnubqg;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjnx55l/;1611043428;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BudderbrineXD;;;[];;;;text;t2_16oj3p2;False;False;[];;Bruh I cant believe they didn't show him busting to loli hentai, and being beat up by his family. Shame;False;False;;;;1610982315;;False;{};gjq3zpw;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjq3zpw/;1611094696;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1611016948;;False;{};gjs0dz6;False;t3_kuj1bm;False;True;t1_gisn68q;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjs0dz6/;1611135794;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MysteryInc152;;;[];;;;text;t2_6ifa7497;False;False;[];;Mushoku didn't really start anything . Several notable series came before or around the same time - re zero, cheat magician, shield hero. It was very popular though and caused a lot of imitations;False;False;;;;1611017126;;False;{};gjs0pkb;False;t3_kuj1bm;False;False;t1_gj4j33v;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjs0pkb/;1611135973;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GosuGian;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GosuDRM;light;text;t2_mu7ij;False;False;[];;GINTOOOOKI?!;False;False;;;;1611025413;;False;{};gjsgelx;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjsgelx/;1611144641;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shewy92;;;[];;;;text;t2_wd13k;False;False;[];;Didn't expect uncensored baby penis...;False;False;;;;1611035662;;False;{};gjsxhv4;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjsxhv4/;1611155799;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HammurabiDion;;;[];;;;text;t2_2sxenmjd;False;False;[];;"Everything looks and sounds amazing. They really focused on the little details to make everything from the magic to the scenery beautiful. - -My only question is why is this series an isekai? I understand that because he’s a grown man he has the logic to be good at magic but you could explain that without him being a dead 35 year old. Like would the story really change so much if we started at him being born?";False;False;;;;1611058419;;False;{};gjtmw1t;False;t3_kuj1bm;False;True;t3_kuj1bm;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjtmw1t/;1611173624;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phirdeline;;;[];;;;text;t2_13yide;False;False;[];;one day re:monster might get anime adaptation too;False;False;;;;1611080315;;False;{};gjusnyc;False;t3_kuj1bm;False;True;t1_giv6a1q;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjusnyc/;1611202029;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phirdeline;;;[];;;;text;t2_13yide;False;False;[];;Almost all the isekais I ever liked are with game systems I think it was a definite evolution of the genre;False;False;;;;1611081218;;False;{};gjuun06;False;t3_kuj1bm;False;True;t1_gisewc1;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjuun06/;1611203240;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phirdeline;;;[];;;;text;t2_13yide;False;False;[];;In most isekais people appear to be speaking Japanese because protagonists have a skill that allows them to understand the new language.;False;False;;;;1611081490;;False;{};gjuv8kk;False;t3_kuj1bm;False;True;t1_giu67x7;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjuv8kk/;1611203597;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GinJoestarR;;;[];;;;text;t2_7f4dh3m2;False;False;[];;"The web novel started in in 2012. Anyway I found a neat comment regarding [that](https://www.reddit.com/r/anime/comments/kz944p/Mushoku_Tensei%3A_Isekai_Ittara_Honki_Dasu_-_Episode_2_discussion/gjppwdn/?utm_medium=android_app&utm_source=share&context=3)";False;False;;;;1611112140;;False;{};gjwlx6p;False;t3_kuj1bm;False;True;t1_giy6t3x;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjwlx6p/;1611238908;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GinJoestarR;;;[];;;;text;t2_7f4dh3m2;False;False;[];;This like the Doom of isekai. Doom wasn't the first of its kind, but one that make the genre popular throughout the roof.;False;False;;;;1611113721;;False;{};gjwoopk;False;t3_kuj1bm;False;False;t1_gishgfh;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjwoopk/;1611240671;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bgi123;;;[];;;;text;t2_i41gb;False;False;[];;Ya, its more organic than having floating game status windows...;False;False;;;;1611182731;;False;{};gjzxi0a;False;t3_kuj1bm;False;True;t1_gisgsl2;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gjzxi0a/;1611312319;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kurosov;;;[];;;;text;t2_c4hon;False;False;[];;">said previous life was one of a shut in? Check. - -Urano wasn't a shut in. She was a college graduate just about to start her dream job. - -> wanting to make their second chance at life better than their first? Check. - -As she was happy with her previous life and unhappy with the circumstances of her new one this also isn't the case. She instead aimed to regain what she lost by revolutionising the world she was reborn into so there's actually be libraries she could work in.";False;False;;;;1611192514;;False;{};gk0gqx0;False;t3_kuj1bm;False;True;t1_gj4xm6f;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gk0gqx0/;1611323883;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ShinyChromeBadger;;;[];;;;text;t2_5snbrf9e;False;False;[];;Thanks for commenting my dude;False;False;;;;1611265094;;False;{};gk3uxop;False;t3_kuj1bm;False;True;t1_gj5snsj;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gk3uxop/;1611398161;2;True;False;anime;t5_2qh22;;0;[]; -[];;;urmamaissofat;;;[];;;;text;t2_1mpfggdf;False;False;[];;No prob bro. Did you like second episode?;False;False;;;;1611266371;;False;{};gk3xrkd;False;t3_kuj1bm;False;False;t1_gk3uxop;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gk3xrkd/;1611399713;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ShinyChromeBadger;;;[];;;;text;t2_5snbrf9e;False;False;[];;Yessir. Loving this show. So excited to watch it every week.;False;False;;;;1611267221;;False;{};gk3zkim;False;t3_kuj1bm;False;True;t1_gk3xrkd;/r/anime/comments/kuj1bm/mushoku_tensei_isekai_ittara_honki_dasu_episode_1/gk3zkim/;1611400702;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"# Source Material Corner - -Reply to this comment for any source-related discussion, future spoilers (including future characters, events and general hype about future content), comparison of the anime adaptation to the original, or just general talk about the source material. **You are still required to tag all spoilers.** Discussions about the source outside of this comment tree will be removed, and replying with spoilers outside of the source corner will lead to bans. - -The spoiler syntax is: -`[Spoiler source](/s ""Spoiler goes here"")` - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610211927;moderator;False;{};gio53qi;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio53qi/;1610250703;1;False;True;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610211970;moderator;False;{};gio56t8;False;t3_ktuogx;False;True;t3_ktuogx;/r/anime/comments/ktuogx/trying_to_find_this_anime_movie/gio56t8/;1610250752;1;False;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 125, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'When you come across a feel-good thing.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'icon_width': 2048, 'id': 'award_5f123e3d-4f48-42f4-9c11-e98b566d5897', 'is_enabled': True, 'is_new': False, 'name': 'Wholesome', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;"Still can't believe I'm actually watching a Horimiya anime. - -And it's so pretty too!";False;False;;;;1610212092;;False;{};gio5fi9;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio5fi9/;1610250896;343;True;False;anime;t5_2qh22;;1;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;"I'm a weekly man, hate getting so absorbed in something and feeling the need to catch up before I can move on, I've got other shit to do, I just hate myself when I end up splurging on a show. - -So weekly gives me a good way to pace myself and means I've always got something to look forward to week after week.";False;False;;;;1610212094;;1610214070.0;{};gio5fm9;False;t3_ktuoj0;False;False;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gio5fm9/;1610250897;38;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;The middle way, I watch the anime slowly with only one or two EPs each day after it finish airing;False;False;;;;1610212117;;False;{};gio5hb9;False;t3_ktuoj0;False;False;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gio5hb9/;1610250924;34;True;False;anime;t5_2qh22;;0;[]; -[];;;Garlicbread10;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;echidna cultist;dark;text;t2_8zn7f5o;False;False;[];;The OP was so beautiful! And Hori looked great too. Can’t wait for more fluff;False;False;;;;1610212117;;False;{};gio5hbm;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio5hbm/;1610250925;127;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Weekly, and from my experience here people that watch weekly have a much healthier and stable relationship with anime;False;False;;;;1610212124;;False;{};gio5hua;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gio5hua/;1610250934;0;True;False;anime;t5_2qh22;;0;[]; -[];;;doctorino13;;;[];;;;text;t2_n4br6;False;False;[];;"Didn't watch yet. Just hope it is as good as the manga. - -Edit: just did. It is THAT good.";False;False;;;;1610212141;;1610244570.0;{};gio5j02;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio5j02/;1610250952;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;You can always pirate it;False;False;;;;1610212148;;False;{};gio5jh0;False;t3_ktuogx;False;True;t3_ktuogx;/r/anime/comments/ktuogx/trying_to_find_this_anime_movie/gio5jh0/;1610250960;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BoopTheChicken;;;[];;;;text;t2_82olxgk9;False;False;[];;Depends on the anime tbh. Things with continuous narratives I like to watch in one sitting so I'll usually wait until the end of the season to watch them, while more episodic series I liek to watch week by week.;False;False;;;;1610212197;;False;{};gio5n2c;False;t3_ktuoj0;False;False;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gio5n2c/;1610251018;18;True;False;anime;t5_2qh22;;0;[]; -[];;;PinkPeachHandCream;;;[];;;;text;t2_49vl7lqx;False;False;[];;I'd really rather watch it on a reputable site :);False;False;;;;1610212231;;False;{};gio5pfu;False;t3_ktuogx;False;True;t1_gio5jh0;/r/anime/comments/ktuogx/trying_to_find_this_anime_movie/gio5pfu/;1610251071;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Binge-watch. I can remember the plot easily as you're watching one anime at a time and no need to wait for every week.;False;False;;;;1610212276;;False;{};gio5sid;False;t3_ktuoj0;False;False;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gio5sid/;1610251122;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Frezkye;;;[];;;;text;t2_7u3an;False;False;[];;I'm so excited to finally a Horimiya anime. The OP is nice visually, but not sure how I feel about the song. But still, hype.;False;False;;;;1610212312;;False;{};gio5v5w;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio5v5w/;1610251168;5;True;False;anime;t5_2qh22;;0;[]; -[];;;tayoku0;;;[];;;;text;t2_nfa8y;False;False;[];;I started following the manga about 8 years ago and had run out of hope for a proper adaptation, but it's finally here and it is beautiful. The colors, the music, I can't thank the whole production team enough for bringing these precious characters to the screen. Really hope everyone enjoys this!;False;False;;;;1610212326;;False;{};gio5w5t;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio5w5t/;1610251185;339;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Don't think it's available anywhere, try checking on netflix for the time being, it's understandable to try to watch legally but there are a lot of lesser known animes that you just simply can't find legally;False;False;;;;1610212454;;False;{};gio64zm;False;t3_ktuogx;False;False;t1_gio5pfu;/r/anime/comments/ktuogx/trying_to_find_this_anime_movie/gio64zm/;1610251333;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"[LMAO, what a teacher](https://i.imgur.com/GBnK7Cv.jpg)........tries to cheer up Hori by telling her that he loves flat-chested girls XD. - -I'm already liking the dynamic between Hori and Miyamura. They are so [cute](https://i.imgur.com/JQmaYbw.jpg) and [hilarious](https://i.imgur.com/IQzHXCu.jpg) together! - -[Oof Poor Ishikawa](https://i.imgur.com/FPaQYv7.jpg). We got a rejection and also kinda a confession in the first episode as Hori basically ""confessed"" that she wants Miyamura to come over all the time.";False;False;;;;1610212464;;1610216549.0;{};gio65pn;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio65pn/;1610251345;145;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;"Same for me. I started reading Horimiya when I was their age and now I'm 24. I always loved the manga and it's amazing to finally see it adapted. - -Edit: Well I finally finished the episode and I must say I loved every second of it. I not only didn't mind the changes but actually liked them. Incredible visuals, great voice acting, nice little visual effects added and the comedic timing translated perfectly which not always does. - -I'm ready to love this adaptation.";False;False;;;;1610212490;;1610215611.0;{};gio67d6;False;t3_ktunxs;False;False;t1_gio5w5t;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio67d6/;1610251373;131;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610212527;moderator;False;{};gio69s7;False;t3_ktuvch;False;False;t3_ktuvch;/r/anime/comments/ktuvch/need_animefantasy_wedding_decor_ideas/gio69s7/;1610251416;1;False;False;anime;t5_2qh22;;0;[]; -[];;;PinkPeachHandCream;;;[];;;;text;t2_49vl7lqx;False;False;[];;Thanks I'll check Netflix :) it's real sad that so many good smaller shows aren't available legally :(;False;False;;;;1610212592;;False;{};gio6e9d;False;t3_ktuogx;False;True;t1_gio64zm;/r/anime/comments/ktuogx/trying_to_find_this_anime_movie/gio6e9d/;1610251492;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;Watch it at your own speed, otherwise it's easy to get burnt out.;False;False;;;;1610212609;;False;{};gio6feq;False;t3_ktuvgg;False;False;t3_ktuvgg;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/gio6feq/;1610251512;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;"Yeah, this is the OP of the season. - - -It looks beautiful, they captured the manga art really well. I'm going to cry.";False;False;;;;1610212610;;False;{};gio6fj7;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio6fj7/;1610251514;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;"Only shows in watching weekly is Re Zero, AoT, and the Pet Girl dub - -Most of the time I wait for it all to come out before watching";False;False;;;;1610212632;;False;{};gio6h0s;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gio6h0s/;1610251539;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wjodendor;;;[];;;;text;t2_f2f741;False;False;[];;"Hori's ""yosh"" with cleaning supplies was straight from the manga and made me actually laugh. This is a good start";False;False;;;;1610212682;;False;{};gio6khc;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio6khc/;1610251599;48;True;False;anime;t5_2qh22;;0;[]; -[];;;Smudy;;MAL a-amq;[];;https://myanimelist.net/animelist/Smudy;dark;text;t2_nrmt6;False;False;[];;Kenjirou Tsuda spotted!;False;False;;;;1610212708;;False;{};gio6mbw;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio6mbw/;1610251629;25;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;I prefer watching week by week as an anime is airing. It always gives me something to look forward to in the week. So even if I'm having a not great day I can be happy knowing an Attack On Titan episode comes in a few days;False;False;;;;1610212713;;False;{};gio6mmn;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gio6mmn/;1610251634;0;True;False;anime;t5_2qh22;;0;[]; -[];;;dgam02;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/dgam02;light;text;t2_13gmsx;False;False;[];;They animated Hori’s abuse perfectly 😭😭😭;False;False;;;;1610212719;;False;{};gio6n36;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio6n36/;1610251642;81;True;False;anime;t5_2qh22;;0;[]; -[];;;El_Nealio;;;[];;;;text;t2_15vycn;False;False;[];;I’m so hyped, __I’m ready for the wholesomeness__;False;False;;;;1610212733;;False;{};gio6o0x;False;t3_ktunxs;False;False;t1_gio5fi9;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio6o0x/;1610251657;42;True;False;anime;t5_2qh22;;0;[]; -[];;;dekulol;;;[];;;;text;t2_2rk74393;False;False;[];;bring a tear to my eye;False;False;;;;1610212777;;False;{};gio6r4b;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio6r4b/;1610251712;16;True;False;anime;t5_2qh22;;0;[]; -[];;;dgam02;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/dgam02;light;text;t2_13gmsx;False;False;[];;Great first episode. The voice acting was on point and they animated the comedic moments perfectly. So happy with that;False;False;;;;1610212783;;False;{};gio6rje;False;t3_ktunxs;False;False;t1_gio5fi9;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio6rje/;1610251719;117;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;Yes, you are whack. I've already screenshotted this post to show to the anime police.;False;False;;;;1610212792;;False;{};gio6s4u;False;t3_ktuvgg;False;False;t3_ktuvgg;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/gio6s4u/;1610251728;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Jetsfan051;;;[];;;;text;t2_2b129pza;False;False;[];;"You don’t even deserve to be in r/anime with that amount of anime watched. Come back when you’ve watched 200 shows and one of them has to be One Piece -/s";False;False;;;;1610212809;;1610215600.0;{};gio6tch;False;t3_ktuvgg;False;True;t3_ktuvgg;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/gio6tch/;1610251748;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aadi-K;;;[];;;;text;t2_4klu6o3e;False;False;[];;You are not wack, watching anime for a long-ass time doesn’t mean shit, if you don’t like anime, that’s completely fine;False;False;;;;1610212827;;False;{};gio6ulj;False;t3_ktuvgg;False;False;t3_ktuvgg;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/gio6ulj/;1610251769;7;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;After all this time, it's finally here;False;False;;;;1610212872;;False;{};gio6xrv;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio6xrv/;1610251822;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Draaxus;;;[];;;;text;t2_onne0;False;False;[];;"[Manga Spoilers](/s ""Holy fuck I forgot there was plot to this, it's so different from how the gang acts in the current chapters."")";False;False;;;;1610212925;;False;{};gio71es;False;t3_ktunxs;False;False;t1_gio53qi;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio71es/;1610251881;22;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Puddo, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610213050;moderator;False;{};gio7ad5;False;t3_ktv20h;False;True;t3_ktv20h;/r/anime/comments/ktv20h/student_films_gedai_animationtokyo_university_of/gio7ad5/;1610252029;-1;False;False;anime;t5_2qh22;;0;[]; -[];;;Jonan1996;;;[];;;;text;t2_xvx7o;False;False;[];;It depends, sometimes i like waiting for the episode becasuse i just don't have the time to watch the full anime in one night and other times i have a lot of time to waste i like to spend all night wathing or re-watching some anime.;False;False;;;;1610213106;;False;{};gio7eeo;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gio7eeo/;1610252103;1;True;False;anime;t5_2qh22;;0;[]; -[];;;moath2335;;;[];;;;text;t2_153kut;False;False;[];;"I can’t believe what they have done. That’s a disgrace to the manga! /s - -(I read the first 3 chapters a week before the announcement of the anime and I am trying my best to be an elitist manga reader like a lot of the guys on this subreddit) - - -Edit: Fair enough it seems like this was a bad joke.";False;True;;comment score below threshold;;1610213151;;1610213682.0;{};gio7hj1;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio7hj1/;1610252154;-21;True;False;anime;t5_2qh22;;0;[]; -[];;;Mage_of_Shadows;;;[];;;;text;t2_n8o12;False;False;[];;"[Yoshikawa](https://i.imgur.com/NUmwY8Y.jpeg) may be best girl, but damn Hori with [her hair tied up is just a blessing](https://i.imgur.com/wpFAheZ.jpg). An equally [mature transformation](https://i.imgur.com/oJ5scXt.jpg) as Miyamura but [without all the bling](https://i.imgur.com/KM78dz4.jpg). - -[](#sweating) - -I'm so happy this was adapted.";False;False;;;;1610213247;;False;{};gio7oe2;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio7oe2/;1610252274;161;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;But I only watched 2 animes;False;False;;;;1610213256;;False;{};gio7p1s;False;t3_ktuvgg;False;True;t1_gio6tch;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/gio7p1s/;1610252284;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dp_kl;;;[];;;;text;t2_mexrh;False;False;[];;The character acting was soo good.;False;False;;;;1610213270;;False;{};gio7pzy;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio7pzy/;1610252301;140;True;False;anime;t5_2qh22;;0;[]; -[];;;chailupa;;;[];;;;text;t2_12rcvn33;False;False;[];;I got Hori in a messy bun in the first 3 minutes. Can’t believe this is my life. Horimiya Saturdays are here ya’ll!!;False;False;;;;1610213274;;False;{};gio7qaw;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio7qaw/;1610252307;374;True;False;anime;t5_2qh22;;0;[]; -[];;;TohaHeavyIndustries_;;;[];;;;text;t2_1f3b6iu;False;False;[];;Anime is supposed to be enjoyed and you most likely won't enjoy things if you force yourself to do them. Just go your own pace. Hell, I once finished 94 anime in a month(at least one show per day plus a load of shorts) and then last Year I finished six shows. Do what feels right, otherwise it will just start to feel wrong and anime is too great for that.;False;False;;;;1610213282;;False;{};gio7qv7;False;t3_ktuvgg;False;False;t3_ktuvgg;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/gio7qv7/;1610252317;3;True;False;anime;t5_2qh22;;0;[]; -[];;;argent5;;;[];;;;text;t2_p6ut6x7;False;False;[];;"his secret: he's a sexy bad boy with sweet piercings - -her secret: she uh, does chores? she's a good sister? - -Horimiya is one of my favourite mangas, but this has always been funny to me lol";False;False;;;;1610213291;;False;{};gio7ris;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio7ris/;1610252328;728;True;False;anime;t5_2qh22;;0;[]; -[];;;Weezelone;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Weezelone;light;text;t2_cmexm;False;False;[];;"1 episode in and someone already got rejected. - -Despite how quickly some of the romance is progressing, I've liked what I've seen so far! - -[The white void is also a really nice touch to those reaction shots.](https://i.imgur.com/9oro2h9.png)";False;False;;;;1610213301;;False;{};gio7s97;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio7s97/;1610252340;292;True;False;anime;t5_2qh22;;0;[]; -[];;;TichoSlicer;;;[];;;;text;t2_14tpdf;False;False;[];;This is like a dream coming true... I waited for yearssssssssssssssss, but it was worth it! Lets enjoy the ride BOYS!;False;False;;;;1610213370;;1610214664.0;{};gio7x56;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio7x56/;1610252422;12;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"Pretty crazy that this is finally getting an anime after so long. - -Miyamura's secret identity is great but I kinda wish Hori's was as good? Like her home side and school side don't feel _super_ different. - -Really felt like this episode was building up to something at the ending but honestly the pace so far has been super quick! - -Only the best romances start episode with a rejection too. - -[](#teehee)";False;False;;;;1610213382;;False;{};gio7xzy;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio7xzy/;1610252436;921;True;False;anime;t5_2qh22;;0;[]; -[];;;GreNinja_16;;;[];;;;text;t2_24bith79;False;False;[];;"Although I only read this manga since November but this anime has already become my most anticipated anime for 2021. It's been a pleasure to see it animated and it is the best romance slice of life with no drama anime/manga I've ever read. - -The original OVAs are already very great but watching the anime with new character designs makes it fresh especially when the character designs are beautiful. - -The new OVAs will be released soon after the anime finish so I can keep the party go on. It is truly a great time being a Horimiya's fan.";False;False;;;;1610213383;;False;{};gio7y3d;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio7y3d/;1610252438;27;True;False;anime;t5_2qh22;;0;[]; -[];;;SolubilityRules;;;[];;;;text;t2_2lolx4d;False;False;[];;**Somebody give me insulin, this dose of fluff and purity will kill me**;False;False;;;;1610213432;;False;{};gio81m8;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio81m8/;1610252499;476;True;False;anime;t5_2qh22;;0;[]; -[];;;Ugowy;;;[];;;;text;t2_55pt997e;False;False;[];;I’m so excited for this;False;False;;;;1610213484;;False;{};gio8596;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio8596/;1610252561;8;True;False;anime;t5_2qh22;;0;[]; -[];;;dadnaya;;MAL;[];;https://myanimelist.net/profile/dadnaya;dark;text;t2_cubnc;False;False;[];;"I gotta say, it was more.... ""artistic"" than I expected, especially the OP and the ED, but it was an amazing episode - -I've read the manga like 5-6 years ago, I can't believe I'm actually watching its anime now. Although besides a few key moments I don't remember too much, except from really loving it - -Voice acting was on point, and art was amazing. Really looking forward to it, the AOTS before the season has even started";False;False;;;;1610213506;;False;{};gio86s1;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio86s1/;1610252586;72;True;False;anime;t5_2qh22;;0;[]; -[];;;nsa_official2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Ginsan2802;light;text;t2_6f0bmz9o;False;False;[];;It's not;False;True;;comment score below threshold;;1610213513;;False;{};gio8795;False;t3_ktunxs;False;True;t1_gio5j02;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio8795/;1610252594;-28;True;False;anime;t5_2qh22;;0;[]; -[];;;sekretagentmans;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Epsev;light;text;t2_liao2;False;False;[];;"I just want to say I've been waiting for this moment for over half a decade. Started reading in 2014, started the r/Horimiya discord in 2016 and [***the wait has absolutely been worth it***](https://imgur.com/JgS82Bj)***.*** - -***Also...*** - -***YUKI IS THE CUTEST***";False;False;;;;1610213525;;False;{};gio8821;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio8821/;1610252607;73;True;False;anime;t5_2qh22;;0;[]; -[];;;KvasirTheOld;;;[];;;;text;t2_3nclza3d;False;False;[];;I'm not even a member b0ss;False;False;;;;1610213566;;False;{};gio8awq;True;t3_ktuvgg;False;True;t1_gio6tch;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/gio8awq/;1610252653;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610213607;;False;{};gio8dra;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio8dra/;1610252700;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TohaHeavyIndustries_;;;[];;;;text;t2_1f3b6iu;False;False;[];;"Oh wow, thanks for this post! I love student animation and experimental work by newcomers, but my japanese still isn't good enough to actively find them. I knew Sato Miyu's work but the other ones are new to me. This is the side of anime that get's ignored so often despite being so great and important. - -I really hope someone will gild you for this.";False;False;;;;1610213607;;False;{};gio8drd;False;t3_ktv20h;False;True;t3_ktv20h;/r/anime/comments/ktv20h/student_films_gedai_animationtokyo_university_of/gio8drd/;1610252700;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dadnaya;;MAL;[];;https://myanimelist.net/profile/dadnaya;dark;text;t2_cubnc;False;False;[];;"> her secret: she uh, does chores? she's a good sister? - -I think it's more that she always have a ""perfect"" outlook to others, but at home she doesn't keep up appearances, as well as pretty much rarely having her time to have fun outside (see: karaoke) - -Well it's not as extreme as Miyamura's, but still.";False;False;;;;1610213646;;False;{};gio8gjt;False;t3_ktunxs;False;False;t1_gio7ris;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio8gjt/;1610252746;391;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"I don't really remember much from this manga as I dropped it so long ago. - -This is only adapting a cour so I think it'll actually be a pretty good romance for people to watch and I expect to enjoy it as well!";False;False;;;;1610213664;;False;{};gio8hu4;False;t3_ktunxs;False;False;t1_gio53qi;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio8hu4/;1610252769;6;True;False;anime;t5_2qh22;;0;[]; -[];;;dadnaya;;MAL;[];;https://myanimelist.net/profile/dadnaya;dark;text;t2_cubnc;False;False;[];;This was a pretty nice touch, it's like when you feel your heart aching a little I think it represents. Probably as she wants to keep Miyamura to herself, as they said.;False;False;;;;1610213697;;False;{};gio8k3w;False;t3_ktunxs;False;False;t1_gio7s97;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio8k3w/;1610252805;59;True;False;anime;t5_2qh22;;0;[]; -[];;;KvasirTheOld;;;[];;;;text;t2_3nclza3d;False;False;[];;"Nah man. I mean I really wanna watch more. I feel like i don't get enough. It's just that I see people out there who have watched maybe thousands and I wonder: when? I mean how do you get so much time? - -I'm also free most time, 24/7 but can't seem to get things done";False;False;;;;1610213704;;False;{};gio8klq;True;t3_ktuvgg;False;True;t1_gio6feq;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/gio8klq/;1610252814;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Damarugaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Damarugaki/;light;text;t2_6zyxfkgg;False;False;[];;I've waited years for this moment;False;False;;;;1610213704;;False;{};gio8kn4;False;t3_ktunxs;False;False;t1_gio5fi9;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio8kn4/;1610252814;18;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"Watched the whole episode with a smile, damn this show is fun. Hori and Miyamura already seem like a great set of MCs, and the supporting cast we have seen so far (mainly Toru) seems like it will be fun. Loved the art style and the animation looked great, this might be my anime of the season, potentially year, if it keeps this up. - -Hori and Miyamura will probably end up as one of my favorite couples in anime based on their chemistry so far, assuming they end up together (which after one episode and the title of the show is hard not to imagine)";False;False;;;;1610213707;;False;{};gio8kuu;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio8kuu/;1610252817;110;True;False;anime;t5_2qh22;;0;[]; -[];;;Jetsfan051;;;[];;;;text;t2_2b129pza;False;False;[];;Lol I’m only being sarcastic;False;False;;;;1610213723;;False;{};gio8lz6;False;t3_ktuvgg;False;True;t1_gio8awq;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/gio8lz6/;1610252837;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"Also her secret: Brawny in *a good way,* more laid-back at home and can't stop saying dummy after she says it once lol - -His secret: *Well*.....not a secret anymore since Ishikawa knows now as well as Hori.";False;False;;;;1610213728;;1610216210.0;{};gio8ma5;False;t3_ktunxs;False;False;t1_gio7ris;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio8ma5/;1610252841;78;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;I went blind with just hearing about people recommending the show for months and I really liked it, the animation and art style are great, let's see what the series has in store, by the hype of it I am expecting this one to be the next big romcom;False;False;;;;1610213747;;False;{};gio8nmp;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio8nmp/;1610252871;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jetsfan051;;;[];;;;text;t2_2b129pza;False;False;[];;Get your weight up kid;False;False;;;;1610213747;;False;{};gio8nmt;False;t3_ktuvgg;False;True;t1_gio7p1s;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/gio8nmt/;1610252871;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Prince-Dizzytoon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/princedizzytoon;light;text;t2_mu0df;False;False;[];;"""My sister can't stop saying ""baka"" after she says it once. Watch."" - -Yep, I found a new waifu.";False;False;;;;1610213761;;False;{};gio8onh;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio8onh/;1610252888;527;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"> The white void is also a really nice touch to those reaction shots - -I REALLY liked this. It was subtle but absolutely not at the same time.";False;False;;;;1610213794;;False;{};gio8qz0;False;t3_ktunxs;False;False;t1_gio7s97;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio8qz0/;1610252929;143;True;False;anime;t5_2qh22;;0;[]; -[];;;KAMAB0K0_G0NPACHIR0;;;[];;;;text;t2_4te4xe3a;False;False;[];;god Iura's voice couldn't have been more perfect;False;False;;;;1610213795;;1610214220.0;{};gio8r06;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio8r06/;1610252929;5;True;False;anime;t5_2qh22;;0;[]; -[];;;axl625;;;[];;;;text;t2_tskg1;False;False;[];;Okay, but let's talk about the opening song visuals. I'm getting the Shinsekai Yori ED and Erased/Boku dake ga Inai Machi ED vibes.;False;False;;;;1610213799;;False;{};gio8rba;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio8rba/;1610252936;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Venoden;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ZcaT;light;text;t2_sbhd577;False;False;[];;This anime feels like it’s gonna be excruciating to wait a week for, looking forward to it;False;False;;;;1610213857;;False;{};gio8vgi;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio8vgi/;1610253008;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Kazewatch;;;[];;;;text;t2_mqdki;False;False;[];;Good lord they went balls to the walls for this one. This series has come such a long way from being an r/manga darling. It’s crazy.;False;False;;;;1610213859;;False;{};gio8vmm;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio8vmm/;1610253012;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Arjash;;;[];;;;text;t2_115cdj;False;True;[];;The episode opened with Tsudaken,Yeah now thats already a 10.;False;False;;;;1610213875;;False;{};gio8wpl;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio8wpl/;1610253036;12;True;False;anime;t5_2qh22;;0;[]; -[];;;icedragon08;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/;light;text;t2_gpak2;False;False;[];;it is;False;False;;;;1610213891;;False;{};gio8xv8;False;t3_ktunxs;False;False;t1_gio5j02;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio8xv8/;1610253056;16;True;False;anime;t5_2qh22;;0;[]; -[];;;KvasirTheOld;;;[];;;;text;t2_3nclza3d;False;False;[];;Sure thing, you thicc draugr;False;False;;;;1610213893;;False;{};gio8y27;True;t3_ktuvgg;False;True;t1_gio8lz6;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/gio8y27/;1610253059;2;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;I am one of those guys who mostly watch Slice of life and rom-com, even though I didn't read the manga I can say this is one of the best rom-com out there. Everything was spot on, from comedic moments to romantic lines to tsundere scenes and I can't wait for the next episode to air.;False;False;;;;1610213930;;False;{};gio90mn;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio90mn/;1610253101;7;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"Happy someone else shares that view point as well. - -I wish she had more...like she was actually really mean or something. They just don't equate!";False;False;;;;1610213930;;False;{};gio90oc;False;t3_ktunxs;False;True;t1_gio7ris;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio90oc/;1610253102;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;StrawberryMilky5;;;[];;;;text;t2_q0bzsyw;False;False;[];;"We really exist in this timeline huh. I love how the music slows down whenever they are together. And miyamura is definitely going to be husbando of the season, he is such a wholesome person. -And the op is a bop too. - - -My yearning levels have increased exponentially.";False;False;;;;1610213953;;False;{};gio926p;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio926p/;1610253127;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Lucky_howl;;;[];;;;text;t2_80xnwlla;False;False;[];;Same with me. I loved the episode and Horimiya is my favorite romcom.;False;False;;;;1610213956;;False;{};gio92gc;False;t3_ktunxs;False;False;t1_gio5w5t;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio92gc/;1610253131;29;True;False;anime;t5_2qh22;;0;[]; -[];;;yachi100;;;[];;;;text;t2_3crjo0im;False;False;[];;"I really was in the need of a good wholesome romcom and i'm so glad i'll be able to satisfy my craving with Horimiya!!! -Let me just say that the episode looked absolutely stunning with the vivid colours, so excited for this show.";False;False;;;;1610213988;;False;{};gio94ol;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio94ol/;1610253169;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Puddo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Puddo/animelist;light;text;t2_8uro4;False;False;[];;"I was actually surprised how many of them are on Youtube. Like this post is about some students from Geidai but Tama Art University and Kyoto Seika University also have Youtube channels where they upload some students films. Sadly Seika's aren't subbed though. Originally my plan was to make a post for all three but well that's a lot of videos to watch. - -Geidai: https://www.youtube.com/c/GEIDAIANIMATION/featured - -Tama: https://www.youtube.com/user/tamabi/featured - -Seika: https://www.youtube.com/user/seikaanimation";False;False;;;;1610214002;;False;{};gio95mu;True;t3_ktv20h;False;False;t1_gio8drd;/r/anime/comments/ktv20h/student_films_gedai_animationtokyo_university_of/gio95mu/;1610253184;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"The art is really nice. - -I watched OVA1 a long time ago and didn't continue, read about 30 chapters and then stopped. I feel as if I will keep up with the anime though as I am enjoying it so far. Although the pacing seems a tad fast.";False;False;;;;1610214016;;1610214231.0;{};gio96kp;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio96kp/;1610253199;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Frontier246;;;[];;;;text;t2_an8rjvo;False;False;[];;"Horimiya! A romcom about never judging by first appearances and that's so straightforward the shortened title is basically the leads' portmanteau couple name. - -The Opening is pretty creative visually, while the theme feels appropriate for a beautiful and fun high school romance series. - -I wasn't expecting to hear Kenjiro Tsuda as a hot teacher who I'm kind of concerned about near high school girls and casually makes rude comments towards them, but okay. - -Hori! A popular, easygoing, high school girl who secretly focuses on taking care of the house and her cute little brother while her mom is at work and dresses much more plainly at home. She's also a lot more brash and fiery than she lets on, but she's still a sweet and super cute girl, as perfectly embodied by the lovely Haruka Tomatsu. - -Miyamura! At first glance a gloomy, unsociable, otaku but in reality is just a normal, personable, kind of spontaneous dork who is pretty good looking in casual mode. It's nice to hear Kouki Uchiyama subvert his usual typecast as dead inside male leads to play someone as likeable and lively as the real Miyamura. - -Nothing brings two people together quite like getting to spend time together as their ""real"" selves and not needing to put up an act around someone. Just two people being themselves and getting more and more comfortable around each other. - -I thought Miyamura looked kind of hot during that egg time running sequence, so no wonder Yuki was pretty bewildered by it. - -Ishikawa and Miyamura bond in-spite of themselves and Ishikawa being self-conscious about Miyamura being close to Hori since he's crushing on her. They really come off as two idiots not knowing what to do with each other, which makes for a fun pair. - -Poor Ishikawa...he gets rejected by Hori, and her main emotional takeaway from his confession was what Miyamura thought of her and their relationship, not how Ishikawa felt about her. Not even Miyamura thinks he and Ishikawa would be a good couple. - -The Ending of CG doll Hori spending time with Miyamura was surprisingly really cute and romantic.";False;False;;;;1610214043;;False;{};gio98iz;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio98iz/;1610253232;73;True;False;anime;t5_2qh22;;0;[]; -[];;;Kazewatch;;;[];;;;text;t2_mqdki;False;False;[];;"I think it’s something that’s a bit more uh ""relatable"" I think. Usually in stuff like this the secret is a bit harsher but I think it’s pretty normal for a teenage girl like Hori to not want to be open about her problems at home in how she basically has to run the house and take care of her brother at her age, plus not wanting to show her friends what to her is her unattractive side. How even her best friend hasn’t seen her in her make up. Miyamura’s is a bit more drastic but I think the secrets the 2 have are just more down to earth than the average series in the genre.";False;False;;;;1610214056;;1610224426.0;{};gio99fj;False;t3_ktunxs;False;False;t1_gio7ris;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio99fj/;1610253247;177;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkRuler17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/DarkRuler17;light;text;t2_m2pn1;False;False;[];;So overall, I'd say a solid first episode. I like the characters and I find everyone's interactions a lot of fun. My biggest complaint though is that it felt really fast. I felt like their relationship expanded so much in this one episode and that the status quo never got any time to breath. It made those scenes where they acted super close just not feel earned.;False;False;;;;1610214057;;False;{};gio99j5;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio99j5/;1610253249;10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610214074;;False;{};gio9aqa;False;t3_ktunxs;False;True;t1_gio8gjt;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio9aqa/;1610253269;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IKnowTheWayToo;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_2jlft1a8;False;False;[];;GAY FOR MIYAMURA GANG RISE UP!!!;False;False;;;;1610214092;;False;{};gio9c15;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio9c15/;1610253290;75;True;False;anime;t5_2qh22;;0;[]; -[];;;FuruiOnara;;;[];;;;text;t2_477q2pi9;False;False;[];;There's lots of video games out there, are you whack for not playing them all :) There's lots of live-action movies and series out there, are you whack for not watching them all :) You get bonus points just for knowing what anime is, that it's not just cartoons, one point per episode watched and five points for completing a season. So I'd say you're off to a good start. There's no right or wrong amount of anime and no requirements to watch so much in x amount of time. Just enjoy it whenever you want 🙂 If you feel like you should watch more, start with one episode per day before gaming to make it a habit. If you really liked it, watch one more. When you're up to 2 per day you'll be knocking out one season about every week. At 2.5 hours per day you'll be finishing a season in 2 days and will be watching 182 per year.;False;False;;;;1610214093;;False;{};gio9c4n;False;t3_ktuvgg;False;True;t3_ktuvgg;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/gio9c4n/;1610253292;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YuriAddict7;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/R1seKujikawa/;light;text;t2_3zn8celm;False;False;[];;"Its hheeeree woo. -This is the sweetest romance series ive ever read. - -In lots of romance series, the male is usually always some self insert for the audience. So bland. But not here. Hori and miyamura are so precious you just want to be a 3rd party cheering them on";False;False;;;;1610214101;;False;{};gio9cq4;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio9cq4/;1610253301;1;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;"I'm really hoping they slow down. I was confused when he was in her house. Seems like an odd moment to skip, his helping the little bro. - -I guess Hori's supposed to be a perfect girl, but she's actually normal? That would make more sense if she was a super gal or something.";False;False;;;;1610214114;;False;{};gio9do1;False;t3_ktunxs;False;False;t1_gio7xzy;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio9do1/;1610253316;387;True;False;anime;t5_2qh22;;0;[]; -[];;;Villeneuve_;;MAL;[];;http://myanimelist.net/profile/_Rika;dark;text;t2_ytt8r;False;False;[];;"> 'Baka, baka, baka, baka, baka, baka, baka...' - -Is this gonna be the new 'Baka nano?' (Ref: *Erased*) - -Also, it's funny (in an endearing way) how Hori accused Miyamura of being 'cringey' for saying that he doesn't want anyone else to see this 'other' side of her when she said something along the same lines to him just a moment ago!";False;False;;;;1610214133;;False;{};gio9ezj;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio9ezj/;1610253339;13;True;False;anime;t5_2qh22;;0;[]; -[];;;fakeport;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_soe2k;False;False;[];;As a first episode that definitely gave me the impression that this is going to live up to the hype I've been seeing from manga readers.;False;False;;;;1610214136;;False;{};gio9f7n;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio9f7n/;1610253343;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Peacemkr45;;;[];;;;text;t2_15b5b7;False;False;[];;If they're new anime I'll do the weekly episodes. If I'm doing a rewatch, I'll binge that shit at 1 cour or 1 season at a time.;False;False;;;;1610214147;;False;{};gio9fy6;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gio9fy6/;1610253354;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Captaingregor;;;[];;;;text;t2_15l6yu;False;False;[];;"Great stuff. Looks and sounds amazing. - -I like that they didn't include the ""both being guys"" reason for Miyamura and Ishikawa not to date. No homophobia. - -Also liked Miyamura's pronunciation of Ishikawa as Ishikaa.";False;False;;;;1610214152;;False;{};gio9gb8;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio9gb8/;1610253361;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kazewatch;;;[];;;;text;t2_mqdki;False;False;[];;A top tier Haruka Tomatsu ***yosh.***;False;False;;;;1610214165;;False;{};gio9h7w;False;t3_ktunxs;False;False;t1_gio6khc;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio9h7w/;1610253377;15;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Yeah, Hori is the best girl of 2021.;False;False;;;;1610214177;;False;{};gio9i48;False;t3_ktunxs;False;False;t1_gio8onh;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio9i48/;1610253392;198;True;False;anime;t5_2qh22;;0;[]; -[];;;jetooro;;;[];;;;text;t2_6717fb1x;False;False;[];;What a year to be alive;False;False;;;;1610214196;;False;{};gio9jii;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio9jii/;1610253415;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Militant_Worm;;;[];;;;text;t2_6wpo8;False;False;[];;"Right? I loved how the episode looked all the way through, fantastic work with the art. - -And I'm so happy to finally see this adaptation.";False;False;;;;1610214204;;False;{};gio9k3e;False;t3_ktunxs;False;False;t1_gio5fi9;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio9k3e/;1610253424;12;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"Yeah the pacing is a tad quick but for a 1 cour romance I think I'm okay with that? - -If we had more time I would definitely want it to be slowed down a bit.";False;False;;;;1610214266;;False;{};gio9omu;False;t3_ktunxs;False;False;t1_gio9do1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio9omu/;1610253498;213;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;It depends on the anime, I like having weekly anime so I have something to look forward to when it airs, even if I don't really like the anime that much. If I find something I really like in a season I just end up binging the source material, for example I watched 2 preaired episodes of Mushoku Tensei and now I'm up to volume 5 of the light novel.;False;False;;;;1610214267;;False;{};gio9oo8;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gio9oo8/;1610253500;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TohaHeavyIndustries_;;;[];;;;text;t2_1f3b6iu;False;False;[];;Well I know what I do tonight! Thank you so much!;False;False;;;;1610214272;;False;{};gio9p1j;False;t3_ktv20h;False;True;t1_gio95mu;/r/anime/comments/ktv20h/student_films_gedai_animationtokyo_university_of/gio9p1j/;1610253507;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Frontier246;;;[];;;;text;t2_an8rjvo;False;False;[];;"That was a long string of ""Baka's.""";False;False;;;;1610214333;;False;{};gio9tem;False;t3_ktunxs;False;False;t1_gio8onh;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio9tem/;1610253578;49;True;False;anime;t5_2qh22;;0;[]; -[];;;lugigaming;;;[];;;;text;t2_n1h982a;False;False;[];;After tonikaku ending, this is gonna be the good shit I need on a weekly basis;False;False;;;;1610214342;;False;{};gio9u4r;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio9u4r/;1610253590;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Lucky_howl;;;[];;;;text;t2_80xnwlla;False;False;[];;Ppl finally going to see that Miyamura is best boy and best girl!!!;False;False;;;;1610214366;;False;{};gio9vte;False;t3_ktunxs;False;False;t1_gio9c15;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio9vte/;1610253617;54;True;False;anime;t5_2qh22;;0;[]; -[];;;thicccduccc;;;[];;;;text;t2_5a57mf33;False;False;[];;What parts are worse in the anime? I read the manga a while back so I might've forgotten some stuff but it's been pretty much a 1/1 adaptation so far.;False;False;;;;1610214411;;False;{};gio9z2b;False;t3_ktunxs;False;False;t1_gio8795;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gio9z2b/;1610253669;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Aluminum-Chair;;;[];;;;text;t2_63qs0yl8;False;False;[];;"If you've watched *half* of Shippuden, you've watched plenty. - -To frame this differently, putting all of those together, you've watched nearly 400 episodes of anime. The average anime is between 12 and 24 episodes, so that's really between 16 and 33 anime worth of episodes. - -It's normal to watch less anime when you try to tackle a several-hundred-episode-long series. Don't worry about it. Watch at your own pace.";False;False;;;;1610214443;;False;{};gioa1ca;False;t3_ktuvgg;False;False;t3_ktuvgg;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/gioa1ca/;1610253705;7;True;False;anime;t5_2qh22;;0;[]; -[];;;93simoon;;;[];;;;text;t2_f8mrv;False;False;[];;As usual, mom is never home and father doesn't exist;False;False;;;;1610214445;;False;{};gioa1j4;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioa1j4/;1610253708;10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610214463;;False;{};gioa2sn;False;t3_ktunxs;False;True;t1_gio7ris;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioa2sn/;1610253728;27;True;False;anime;t5_2qh22;;0;[]; -[];;;Formeralucardbradley;;;[];;;;text;t2_8roc74ql;False;False;[];;Binge. Thats why I love netflix and prime video.;False;False;;;;1610214495;;False;{};gioa55b;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gioa55b/;1610253768;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;The characters are quite lovable. Those moments with Miyamura and Ishikawa was quite fun to watch.;False;False;;;;1610214519;;False;{};gioa6wi;False;t3_ktunxs;False;False;t1_gio7pzy;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioa6wi/;1610253796;75;True;False;anime;t5_2qh22;;0;[]; -[];;;ADelicateOrange;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ADelicateOrange not updated;light;text;t2_h8xom;False;False;[];;If I updated my MAL I would be in the 1k club, but only because I have watched anime for 15+ years, and some individuals are much longer than myself. Keep it at your own pace and have fun watching that's all that really matters.;False;False;;;;1610214534;;False;{};gioa80r;False;t3_ktuvgg;False;True;t1_gio8klq;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/gioa80r/;1610253815;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"MCs are great and with all the praise I have heard about this series... this gonna be good. - -[](#concealedexcitement)";False;False;;;;1610214593;;False;{};gioac8c;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioac8c/;1610253884;7;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"#THIS SERIES IS SO PRECIOUS~ - -[](#mmmmyrgh) - -Man its good to see this series made. I watched the ova and loved it but always wanted more. - -Hori is so popular~ Flat chest... ouch sensei... - -Miya doesnt sound gloomy. Just sounds like a dude. - -Hori cares about fam, gotta get the kids from daycare and help around the house. Normal teenager stuff. - -Miya... just a dude with lots of percings. As a guy with 12 pericings i dont think its a big deal. - -Oh they did first Hori Miya meetings well! Oh man im gonna love this. - -Hori shock never gets old ahhhaha. HAAAAA!? - -Hori says Sota wants Miya to come over... but im sure she does too... - -MIYA IS SUCH A GOOD BOY JUST HAPPY TO TALK TO PEOPLE! - -Miya has 9 pericings, 4 each ear and 1 lip, i win. Im 5 in each ear and 2 in lip! - -Not an Otake, Fam owns cake shop, pierced self, and dum. Hes a good boy. - -Oh no her egg sale... rip committee meeting... Miya to the recuse! - -SLOW MO MIYA TRANSFORMATION! HAHAHAHA I LOVE IT! - -Hori likes being the only one to know Miya's out of school self. KYAA~ - -Miya likes being the only one to know Hori's out of school self. KYAAAAAAAAA~ - -I never understood the need to have a front at school. A lot of people did that back then. - -I TOTALLY FORGOT MIYA HAD TATTOOS TOO! Miya has 3? I have 20 of those so i win again. - -Short hair guy is jelly... hes so obvious hahahaha. - -""The only person who sees me without a shirt is Hori"" HAHAHAHAH - -Short hair is in the circle now though! He is an accomplice now! - -Short hair is makin his move, but of course Hori wont be into him. Hes a nice guy just probably not the kind everyone likes. - -Short hair told her what he said, but now they can talk about this properly. So everything will be clear! - -Wait ""Who will eat your portion of dinner?"" Why make extra anyways? - -Man this is everything i wanted from this series and i love it. I cant wait for more of this. I really hope they fully adapt it.";False;False;;;;1610214608;;1610215146.0;{};gioadc9;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioadc9/;1610253903;5;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;"With this intro stuff out of the way, maybe they can slow up a bit? I guess I'm just the kind of person who likes the sweet little moments, and those tend to get lost when things move so quickly. There were a few here, though, so I'm optimistic. - -[](#mugiwait) - -Either way, everyone's super cute and we have Uchimiya doing a non-stern role, so I'm here for the long haul.";False;False;;;;1610214609;;False;{};gioadf7;False;t3_ktunxs;False;False;t1_gio9omu;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioadf7/;1610253904;96;True;False;anime;t5_2qh22;;0;[]; -[];;;Speedwagon96;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Speedwagon96/;light;text;t2_12lmdk;False;False;[];;Tbh I like her look at home a lot more, or is it just me?;False;False;;;;1610214630;;False;{};gioaex1;False;t3_ktunxs;False;False;t1_gio7qaw;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioaex1/;1610253928;140;True;False;anime;t5_2qh22;;0;[]; -[];;;dadnaya;;MAL;[];;https://myanimelist.net/profile/dadnaya;dark;text;t2_cubnc;False;False;[];;"One of the things I love best about Horimiya is their little things in the interactions which matter. - -See how Hori got mad at Miyamura close to the ending of the episode, but then she mentioned a few super cute things they've been doing, like him waking her up in the middle of a movie if she falls asleep, or her eating his dinner leftovers. - -It's the small things that make their chemistry shine so much, on top of it being so funny and cute";False;False;;;;1610214642;;False;{};gioaft2;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioaft2/;1610253943;26;True;False;anime;t5_2qh22;;0;[]; -[];;;TDS_Reaper;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ramenn/;light;text;t2_2qks3axi;False;False;[];;This is so much better than every other rom-com where the main ship starts out so slow and it's awkward between them. I hope the rest of the episodes are just as good;False;False;;;;1610214660;;False;{};gioah4h;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioah4h/;1610253964;15;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Watch it on your own time. So many people get burned out and I think it's because they watch too much. - -Try different genres as well. One time try a mystery, the other a comedy or a romance etc. It's good to broaden your horizon. Anime is a medium filled with different genres/storytelling/characters. You could watch anime for the rest of your life and never run out. Not only with seasonals but with already finished anime too - -Some suggestions: - -The Promised Neverland - -Banana Fish - -Psycho-Pass - -Gurren Lagann - -Sora yori mo Tooi Basho - -Assassination Classroom - -My Hero Academia - -Fullmetal Alchemist Brotherhood - -Erased - -Spice and Wolf - -Seirei no Moribito - -Akatsuki no Yona - -K-On - -Yuru Camp - -Hibike Euphonium - -A Silent Voice - -Wolf Children - -Your Name - -Spirited Away - -Revolutionary Girl Utena - -Barakamon - -Silver Spoon - -Hinamatsuri - -For some variety.";False;False;;;;1610214667;;False;{};gioahmj;False;t3_ktuvgg;False;True;t3_ktuvgg;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/gioahmj/;1610253972;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nsa_official2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Ginsan2802;light;text;t2_6f0bmz9o;False;False;[];;Literally everything except the animation.;False;True;;comment score below threshold;;1610214684;;False;{};gioair4;False;t3_ktunxs;False;False;t1_gio9z2b;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioair4/;1610253991;-16;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610214705;;False;{};gioak9r;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioak9r/;1610254015;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dadnaya;;MAL;[];;https://myanimelist.net/profile/dadnaya;dark;text;t2_cubnc;False;False;[];;"It should cover pretty much all that's important. - -We adapted 3 chapters this time, so with 13 episodes we should be around chapter 39, so just a bit after [chapter 37](/s ""With the sex scene"") - -The main story is mostly done by then, so we should be golden";False;False;;;;1610214713;;False;{};gioakuv;False;t3_ktunxs;False;False;t1_gio8hu4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioakuv/;1610254024;17;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;First time hearing about Horimiya but I watched the first episode and it was good. Maybe I should start reading the manga;False;False;;;;1610214714;;False;{};gioakwd;False;t3_ktunxs;False;False;t1_gio7oe2;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioakwd/;1610254025;44;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610214718;moderator;False;{};gioal86;False;t3_ktunxs;False;True;t1_gio8dra;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioal86/;1610254030;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SmolTexas;;;[];;;;text;t2_2e6vnns8;False;False;[];;that ED was lovely;False;False;;;;1610214728;;False;{};gioalv9;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioalv9/;1610254041;6;True;False;anime;t5_2qh22;;0;[]; -[];;;thicccduccc;;;[];;;;text;t2_5a57mf33;False;False;[];;Wow really? The animation is better in the anime?;False;False;;;;1610214739;;False;{};gioamq9;False;t3_ktunxs;False;False;t1_gioair4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioamq9/;1610254054;12;True;False;anime;t5_2qh22;;0;[]; -[];;;DadAsFuck;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DadAsFuck;light;text;t2_peaym;False;False;[];;“sorry, it’s egg time!”;False;False;;;;1610214742;;False;{};gioamwi;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioamwi/;1610254056;19;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"It's not a competition, that's why they're telling you to watch at your own time. Everyone manages their time differently. - -Want to watch anime? Watch an episode (or more if you feel up to it). Want to play video games? Play a video game.";False;False;;;;1610214761;;False;{};gioao94;False;t3_ktuvgg;False;False;t1_gio8klq;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/gioao94/;1610254078;4;True;False;anime;t5_2qh22;;0;[]; -[];;;chailupa;;;[];;;;text;t2_12rcvn33;False;False;[];;Absolutely not. I truly hope she ascends to the top of the best lists, she absolutely deserves it;False;False;;;;1610214762;;False;{};gioaobq;False;t3_ktunxs;False;False;t1_gioaex1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioaobq/;1610254080;94;True;False;anime;t5_2qh22;;0;[]; -[];;;Armdel;;MAL;[];;https://myanimelist.net/animelist/Armdel;dark;text;t2_9fsd5;False;False;[];;"I only really knew about this show from seeing bits of the manga posted around the internet, so excited to see the proper story. - -Their relationship progressed pretty darn fast from barely talking to being quite close in what seems to be very short time span. - -and another note from someone who don't know anything really about the source material, i was right that it was Miyamura with the piercings! just that he takes them out for school! (this was probably obvious to the rest who actually knew more of the show) - -all around a great first episode";False;False;;;;1610214789;;False;{};gioaq94;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioaq94/;1610254110;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Oose97;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/oose;light;text;t2_52kztkz7;False;False;[];;I was planning on starting to read other manga, but after this episode I just ended up buying all of Horimiya volumes...;False;False;;;;1610214803;;False;{};gioar8y;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioar8y/;1610254125;6;True;False;anime;t5_2qh22;;0;[]; -[];;;nueker;;;[];;;;text;t2_971rkuiy;False;False;[];;same! i tot the ovas were the only adaptations we were gonna get D:;False;False;;;;1610214810;;False;{};gioart8;False;t3_ktunxs;False;False;t1_gio5w5t;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioart8/;1610254135;9;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;">or is it just me? - -Nope";False;False;;;;1610214812;;False;{};gioarx7;False;t3_ktunxs;False;False;t1_gioaex1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioarx7/;1610254137;9;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;Next time use /s if you're making a joke.;False;False;;;;1610214820;;False;{};gioasho;False;t3_ktuvgg;False;True;t1_gio6tch;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/gioasho/;1610254146;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DadAsFuck;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DadAsFuck;light;text;t2_peaym;False;False;[];;jumping into this blind and i’m loving it so far;False;False;;;;1610214829;;False;{};gioat62;False;t3_ktunxs;False;False;t1_gio5fi9;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioat62/;1610254162;36;True;False;anime;t5_2qh22;;0;[]; -[];;;nsa_official2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Ginsan2802;light;text;t2_6f0bmz9o;False;False;[];;Lmao have you even seen the ovas;False;True;;comment score below threshold;;1610214845;;False;{};gioaube;False;t3_ktunxs;False;True;t1_gioamq9;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioaube/;1610254180;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;nueker;;;[];;;;text;t2_971rkuiy;False;False;[];;"Still can't believe horimiya get an anime (not in a bad way). Never tot i would ever see hori and miyamure actually talking to each other - -Edit: i see alot of people saying both of their reasons are a little silly. I can only speaking for miyamura. Not sure abt japan but in my country (but im pretty sure it would be the same), tattoos are not allowed at school at all. If the teachers know that you have a tattoo, u will get expelled.";False;False;;;;1610214866;;1610216395.0;{};gioavtx;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioavtx/;1610254209;13;True;False;anime;t5_2qh22;;0;[]; -[];;;WhereAreMyComics;;;[];;;dark;text;t2_abetp;False;False;[];;"IT'S FINALLY HERE!!! - - -I love the approach the show took with its OP and ED. It's trying really hard to have a stand out OP/ED from other romance shows and I'd say it looks great. Something about the OP made me think of a Porter Robinson music video. Probably the use of the center square in the OP reminded me of [Robinson's ""Get Your Wish""](https://pbs.twimg.com/media/EPeJcUkU4AADBrT?format=jpg&name=large) . And that ED was absolutely adorable! 3D chibi animation! It's so unique I love it!";False;False;;;;1610214868;;False;{};gioavzl;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioavzl/;1610254211;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jetsfan051;;;[];;;;text;t2_2b129pza;False;False;[];;Didn’t know that was a thing my bad;False;False;;;;1610214873;;False;{};gioawcv;False;t3_ktuvgg;False;True;t1_gioasho;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/gioawcv/;1610254218;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thicccduccc;;;[];;;;text;t2_5a57mf33;False;False;[];;No, only read the manga;False;False;;;;1610214884;;False;{};gioax2o;False;t3_ktunxs;False;False;t1_gioaube;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioax2o/;1610254229;6;True;False;anime;t5_2qh22;;0;[]; -[];;;GenericMemesxd;;;[];;;;text;t2_15kk68;False;False;[];;Character designs are fucking top notch god damn;False;False;;;;1610214896;;False;{};gioaxwm;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioaxwm/;1610254243;9;True;False;anime;t5_2qh22;;0;[]; -[];;;peanut-buttr;;;[];;;;text;t2_76evn7go;False;False;[];;The best thing is we get to see animated souta. The ED animation is something else it’s so cute;False;False;;;;1610214898;;False;{};gioay15;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioay15/;1610254245;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;This is amazing, why I haven't heard about this before?;False;False;;;;1610214904;;False;{};gioayj9;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioayj9/;1610254255;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Theleux;;MAL a-1milquiz;[];;https://myanimelist.net/profile/Theleux;dark;text;t2_am615;False;False;[];;"Been a HOT minute since I last read Horimiya. Excited to see it adapted nicely, but whats the pacing like atm? - -I am hoping it cuts off before it starts getting uh... overly slow. May just need to re-read.";False;False;;;;1610214921;;False;{};gioazrc;False;t3_ktunxs;False;False;t1_gio53qi;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioazrc/;1610254274;6;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;Miyamura will give it to you in a compassionate way while still looking edgy.;False;False;;;;1610214954;;False;{};giob260;False;t3_ktunxs;False;False;t1_gio81m8;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giob260/;1610254315;162;True;False;anime;t5_2qh22;;0;[]; -[];;;KittenBuns1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KittenBuns1;light;text;t2_5j04zssx;False;False;[];;Damn, Miyamura's hot.;False;False;;;;1610214955;;False;{};giob27q;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giob27q/;1610254316;24;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"I never found Miya's secret identity a big deal either since im extremely similar looking to him. So when i saw the ova and looked into the manga, it was nice and fluffy but i always thought both thier secrets were pretty silly. Just teenagers overthinking stuff. - -Though i didnt have tattoos in high school, i got them after, but i did still have a lot of pericings in high school which no one really seemed to mind. But of course america is way more open about that stuff than japan. - -But yeah i do agree thier secrets are pretty normal and silly. - -[](#whowouldathunkit)";False;False;;;;1610214979;;False;{};giob3t1;False;t3_ktunxs;False;False;t1_gio7xzy;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giob3t1/;1610254340;43;True;False;anime;t5_2qh22;;0;[]; -[];;;FalseKiller45;;;[];;;;text;t2_no0dru0;False;False;[];;I think its more to do with how she looks, with people not really recognising her in her at home look;False;False;;;;1610214980;;False;{};giob3v0;False;t3_ktunxs;False;True;t1_gio7ris;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giob3v0/;1610254341;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;It's okay. Your original statement comes off as very rude, if you don't know you're just joking. /s means sarcastic. So that helps, since it's next to impossible to tell other people's intentions over the internet otherwise.;False;False;;;;1610215046;;False;{};giob8qa;False;t3_ktuvgg;False;True;t1_gioawcv;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/giob8qa/;1610254421;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;It depends on the shows. The majority of the numbers that make up my anime experience are about 13 episodes, and I can easily knock one out in an evening if I have time.;False;False;;;;1610215072;;False;{};giobap5;False;t3_ktuvgg;False;True;t3_ktuvgg;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/giobap5/;1610254451;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WhereAreMyComics;;;[];;;dark;text;t2_abetp;False;False;[];;">The white void is also a really nice touch to those reaction shots - -yeah those void shots were a great idea, they let the emotion of the scene sink in and lets the scene breath for a moment";False;False;;;;1610215082;;False;{};giobbcz;False;t3_ktunxs;False;False;t1_gio7s97;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giobbcz/;1610254461;45;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610215086;;False;{};giobboe;False;t3_ktunxs;False;True;t1_gioa1j4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giobboe/;1610254466;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"[Personally I prefer her ponytail look](https://i.imgur.com/w6rCRq9.jpg) - -Can't believe we got three different hairstyles from Hori in just one episode";False;False;;;;1610215086;;False;{};giobbpq;False;t3_ktunxs;False;False;t1_gioaex1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giobbpq/;1610254466;64;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;Uh oh, he's secretly evil;False;False;;;;1610215132;;False;{};giobf3e;False;t3_ktunxs;False;False;t1_gio6mbw;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giobf3e/;1610254522;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Loxer150;;;[];;;;text;t2_1fux4rud;False;False;[];;This gonna be this season’s Tonikawa;False;False;;;;1610215139;;False;{};giobflt;False;t3_ktunxs;False;False;t1_gio81m8;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giobflt/;1610254529;62;True;False;anime;t5_2qh22;;0;[]; -[];;;TohaHeavyIndustries_;;;[];;;;text;t2_1f3b6iu;False;False;[];;"> It's just that I see people out there who have watched maybe thousands and I wonder: when? I mean how do you get so much time? - -I'm one of those guys who have finished a few thousand shows and know a number of similar madmen and the answer very often boils down to mental health. Most of us suffer from heavy depression, PTSD, anxiety disorders etc and use anime as an escape from our fucked lives and the feeling of being helpless against it. I had times in my life when I did a straight-away 100 hour watching session with nothing but the odd toilet break, fell asleep from exhaustion and went up five hours later for the next multi-day binge. It's not good, it's not healthy, but it was the happiest I could ever hope to be at that time. Same for the friends with similar habits I made back then. Great and wonderful people all around but not one of them was mentally healthy. My life normalised with loads of therapy and good medication and so did my viewing habits, because anime just wasn't the only thing to trigger positive emotions anymore and now I am at the point where I finished less than ten shows last year but my appreciation for anime just has grown. Don't look at other people's numbers look at your own happiness.";False;False;;;;1610215149;;False;{};giobgc8;False;t3_ktuvgg;False;True;t1_gio8klq;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/giobgc8/;1610254542;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;True;[];;Especially the post-credits scene lol.;False;False;;;;1610215161;;1610217678.0;{};giobh85;False;t3_ktunxs;False;False;t1_gioa6wi;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giobh85/;1610254555;51;True;False;anime;t5_2qh22;;0;[]; -[];;;Etereke32;;;[];;;;text;t2_11qhl2;False;False;[];;"Huh, a romance story with good characters, and a plot without some unnecessarily extreme dramatic element. Just a plain-old chill romcom. It was really entertaining, and I didn't get this bad feeling I get in my gut that these stories usually make me feel usually because of either the drama or the MC being an idiot. Although the scolding at the end was well deserved, the whole thing didn't come off as him being outlandishly dense nor completely depressed, he just lacks some self-confidence, probably the tattoos and piercings will turn out to be a compensation for that. The ""antagonist"" wasn't some bully that would do everything to get our boy out of the picture. This is gonna be a treat.";False;False;;;;1610215183;;False;{};giobiqz;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giobiqz/;1610254579;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ModerateGamer;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/vuyo1993;light;text;t2_ub4py;False;False;[];;finally we got it, and it far exceeds expectations! Saturdays just got a whole lot better;False;False;;;;1610215261;;False;{};gioboht;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioboht/;1610254673;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MrManicMarty;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MartySan/animelist;light;text;t2_8t0yy;False;False;[];;"OH MY GOSH SOMEONE ACTUALLY SAID IT! - -Like, yeah she's a pretty popular girl, but what, people expect her to like... never unwind? Never do chores? It's so dumb lol.";False;True;;comment score below threshold;;1610215271;;False;{};giobp9o;False;t3_ktunxs;False;True;t1_gio7ris;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giobp9o/;1610254685;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;Steampunkvikng;;;[];;;;text;t2_ghzaj;False;False;[];;Maybe this will finally convince my brain Hori isn't blonde lol;False;False;;;;1610215310;;False;{};giobryv;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giobryv/;1610254729;153;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;Wow, that Yasuda is such a creep. I really liked how Hori's and Miyamura's developed, and damn non-school Miyamura looks so cool. This was such a great first episode.;False;False;;;;1610215315;;False;{};giobsal;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giobsal/;1610254734;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jetsfan051;;;[];;;;text;t2_2b129pza;False;False;[];;I guess that’s true. I thought since it was so over the top rude that no one would take it seriously. My mistake;False;False;;;;1610215320;;False;{};giobsob;False;t3_ktuvgg;False;True;t1_giob8qa;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/giobsob/;1610254740;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sharafi04;;;[];;;;text;t2_4949iljy;False;False;[];;">The main story is mostly done by then, so we should be golden - -Doesn't the manga have 100+ chapters? Is everything after 39 not part of the main story? Haven't read it btw";False;False;;;;1610215369;;False;{};giobw7f;False;t3_ktunxs;False;False;t1_gioakuv;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giobw7f/;1610254802;4;True;False;anime;t5_2qh22;;0;[]; -[];;;fatima12798;;;[];;;;text;t2_36postor;False;False;[];;[too straight forward ](https://imgur.com/a/tr6YKu6);False;False;;;;1610215374;;False;{};giobwj4;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giobwj4/;1610254807;3;True;False;anime;t5_2qh22;;0;[]; -[];;;vjeats;;;[];;;;text;t2_3qjx705w;False;False;[];;I'm so excited for this. I'm hoping the kaguya crowd embraces this;False;False;;;;1610215383;;False;{};giobx7n;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giobx7n/;1610254818;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;True;[];;"I like a lot the visuals and the composition. Ishihama (the director) really did a good job with this OP. - -It also makes me curious for the rest of the anime.";False;False;;;;1610215403;;1610217664.0;{};giobypo;False;t3_ktunxs;False;False;t1_gio5hbm;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giobypo/;1610254843;39;True;False;anime;t5_2qh22;;0;[]; -[];;;Lucky_howl;;;[];;;;text;t2_80xnwlla;False;False;[];;Actually Miyamura is best girl of 2021;False;False;;;;1610215411;;False;{};giobzdd;False;t3_ktunxs;False;False;t1_gio9i48;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giobzdd/;1610254854;296;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Now Hori has to compete with guys as well for Miyamura.;False;False;;;;1610215428;;False;{};gioc0ne;False;t3_ktunxs;False;False;t1_gio9c15;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioc0ne/;1610254875;24;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;We're being rewarded for surviving 2020;False;False;;;;1610215433;;False;{};gioc10b;False;t3_ktunxs;False;False;t1_gio9jii;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioc10b/;1610254881;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Fluffy9345, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610215437;moderator;False;{};gioc19f;False;t3_ktvv43;False;True;t3_ktvv43;/r/anime/comments/ktvv43/looking_for_anime_like_say_i_love_you_and_kimi_ni/gioc19f/;1610254885;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;">I don't think we'd make a good couple - -Nice - ->Who's doing the asking? - -Okay this anime is actually pretty funny";False;False;;;;1610215437;;False;{};gioc1au;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioc1au/;1610254886;45;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Fair enough but he's also Best Boy of 2021.;False;False;;;;1610215462;;False;{};gioc30y;False;t3_ktunxs;False;False;t1_giobzdd;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioc30y/;1610254913;130;True;False;anime;t5_2qh22;;0;[]; -[];;;Steampunkvikng;;;[];;;;text;t2_ghzaj;False;False;[];;I think in Miyamura's case at least some of that stuff is prohibited by the uniform code or whatever. Still kinda silly, but at least he has a reason.;False;False;;;;1610215470;;False;{};gioc3ng;False;t3_ktunxs;False;False;t1_giob3t1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioc3ng/;1610254924;61;True;False;anime;t5_2qh22;;0;[]; -[];;;KvasirTheOld;;;[];;;;text;t2_3nclza3d;False;False;[];;"Damn man. Never really saw it that way. - -Sorry";False;False;;;;1610215495;;False;{};gioc5g3;True;t3_ktuvgg;False;True;t1_giobgc8;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/gioc5g3/;1610254954;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Ishikawa probably cried the entire night lol.;False;False;;;;1610215521;;False;{};gioc7b8;False;t3_ktunxs;False;False;t1_giobh85;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioc7b8/;1610254983;38;True;False;anime;t5_2qh22;;0;[]; -[];;;CallMeGhaul;;;[];;;;text;t2_46gnd29y;False;False;[];;"I’m coming into this with absolutely no knowledge of the source material and I gotta say, episode 1 gave a strong first impression - -Excited to see where this one goes and I love how quickly we are getting to the point instead of waiting until the final episode for progress";False;False;;;;1610215522;;1610215794.0;{};gioc7fh;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioc7fh/;1610254985;4;True;False;anime;t5_2qh22;;0;[]; -[];;;stitchwithaglitch;;MAL;[];;http://myanimelist.net/animelist/gamerguy50;dark;text;t2_9srtv;False;False;[];;"It feels so weird finally seeing a good anime adaptation for Horimiya. - -It also feels like a blast from the past since the manga has actually been out for such a long time (characters still using flip phones) and seeing the beginning and the difference is also weird. - -Glad that it's getting the attention it deserves, no matter the form I love Hori";False;False;;;;1610215532;;False;{};gioc84b;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioc84b/;1610254999;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Lucky_howl;;;[];;;;text;t2_80xnwlla;False;False;[];;Right!!! I was like this voice is so perfect for him;False;False;;;;1610215601;;False;{};giocd47;False;t3_ktunxs;False;False;t1_gio8r06;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giocd47/;1610255082;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Lordofdepression;;;[];;;;text;t2_75f08;False;False;[];;"It's more that she looks like a plain single mother housewife at home instead of what expected at her. - -People thought she'd be hitting the karaokes and go on dates, not competing for sale items in market like a 40 yo housewife.";False;False;;;;1610215613;;False;{};giocdz7;False;t3_ktunxs;False;False;t1_giobp9o;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giocdz7/;1610255095;18;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;Oh yeah for sure. And Japan is super strict about tattoos and pericings.;False;False;;;;1610215625;;False;{};giocevp;False;t3_ktunxs;False;False;t1_gioc3ng;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giocevp/;1610255109;74;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610215627;;False;{};giocezm;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giocezm/;1610255111;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MandarSadye;;;[];;;;text;t2_23uc3mfi;False;False;[];;"I was worried I won't get something like akudama drive in terms of enjoyment and which is not sequel. - -Well this is Akudama drive of this season. Great first episode. Hope it remains good till the end.";False;False;;;;1610215659;;False;{};giochag;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giochag/;1610255148;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;If she was a Gal-type outside of school then the contrast with her Perfect Girl persona in school would be interesting IMO.;False;True;;comment score below threshold;;1610215668;;1610216925.0;{};giochy8;False;t3_ktunxs;False;True;t1_gio90oc;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giochy8/;1610255159;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;hot take.;False;False;;;;1610215689;;False;{};giocji5;False;t3_ktvn5p;False;True;t3_ktvn5p;/r/anime/comments/ktvn5p/wandering_witch_the_journey_of_elaina_review_a/giocji5/;1610255184;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lucky_howl;;;[];;;;text;t2_80xnwlla;False;False;[];;That I agree with as well.;False;False;;;;1610215707;;False;{};giockq9;False;t3_ktunxs;False;False;t1_gioc30y;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giockq9/;1610255204;47;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Agreed on Hori's ""secret"" being mediocre. - -> Only the best romances start episode with a rejection too. - -While it felt somewhat obvious how it would go, I now kinda want to see an alternate version of the series where she says yes to Toru (and subsequently has a good reason to keep dating him) and it sets up a triangle from the start as sort of an inverted childhood friend angle. Miyamura's already integrated with the family but would have to keep it at a ""for Sota's sake"" level while Hori faces conflicting feelings on the two guys. - -...I know, I like my shoujo level drama.";False;False;;;;1610215713;;False;{};giocl7m;False;t3_ktunxs;False;False;t1_gio7xzy;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giocl7m/;1610255211;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;Are they adding a bit more Yoshikawa or does it just feels like it because I love her character too much?;False;False;;;;1610215717;;1610216486.0;{};gioclgx;False;t3_ktunxs;False;False;t1_gio7oe2;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioclgx/;1610255215;10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610215720;;False;{};gioclp4;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioclp4/;1610255219;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610215728;;False;{};giocmdj;False;t3_ktunxs;False;True;t1_gioa1j4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giocmdj/;1610255231;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shinigang;;;[];;;;text;t2_1dgbved8;False;False;[];;I love it!;False;False;;;;1610215734;;False;{};giocmsr;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giocmsr/;1610255237;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610215759;;False;{};giocojm;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giocojm/;1610255266;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FamiliarTerritoryPod;;skip7;[];;;dark;text;t2_8iqi2gws;False;False;[];;We understand that this show was incredibly popular, and we have two episodes on it. The first episode just covers episode 1-6, in which we are way more favorable to it, but yikes did it drop the ball on the second half.;False;False;;;;1610215768;;1610215986.0;{};giocp6c;True;t3_ktvn5p;False;False;t1_giocji5;/r/anime/comments/ktvn5p/wandering_witch_the_journey_of_elaina_review_a/giocp6c/;1610255278;2;True;False;anime;t5_2qh22;;0;[]; -[];;;izaka77;;;[];;;;text;t2_6nutnwey;False;False;[];;single people longing for relationship should NOT watch this anime lmao.;False;False;;;;1610215816;;False;{};giocss0;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giocss0/;1610255336;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Handsome-_-awkward;;;[];;;;text;t2_52f0dxfa;False;False;[];;I've heard orange is like this I have it in my queue but I'm coming off a hard binge of re zero so I havent tried it out yet;False;False;;;;1610215849;;False;{};giocv31;False;t3_ktvv43;False;True;t3_ktvv43;/r/anime/comments/ktvv43/looking_for_anime_like_say_i_love_you_and_kimi_ni/giocv31/;1610255374;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nueker;;;[];;;;text;t2_971rkuiy;False;False;[];;"I'm not sure if this has something to do with it but they only adapted chapter 1 & 3 and the first 2 page of chapter 2. This is prob why u felt the pacing was a little quick?";False;False;;;;1610215859;;False;{};giocvt5;False;t3_ktunxs;False;False;t1_gio9omu;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giocvt5/;1610255385;40;True;False;anime;t5_2qh22;;0;[]; -[];;;TohaHeavyIndustries_;;;[];;;;text;t2_1f3b6iu;False;False;[];;"No need to feel sorry for an honest question. - -If you really feel like you want to watch more, I'll be the first one to help you. I've seen some shit and maybe I remember something you would like, just tell me what you feel like watching. But again, no pressure. It's all about having fun and you don't have to watch.";False;False;;;;1610215859;;False;{};giocvtn;False;t3_ktuvgg;False;True;t1_gioc5g3;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/giocvtn/;1610255385;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SherrinfordxD;;;[];;;;text;t2_7wsjvtmk;False;False;[];;My Little Monster (ending wasn't bad but not satisfactory either, the couple is bold same as Say I Love You);False;False;;;;1610215863;;False;{};giocw2j;False;t3_ktvv43;False;True;t3_ktvv43;/r/anime/comments/ktvv43/looking_for_anime_like_say_i_love_you_and_kimi_ni/giocw2j/;1610255390;3;True;False;anime;t5_2qh22;;0;[]; -[];;;falkner97;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/falkner99;light;text;t2_6y92q69v;False;False;[];;"it actually depends on many different factor - -1 simple one would be how much i like the original source if i had read it before the anime adaptation - -anime like the current spider chan i watched it on the first episode because i like the original source meanwhile anime like sk8 would have to wait till episode 10/11 at least before i catch up to wait for the final episode - -another factor would be whether im so bored that i had to consume the anime to pass time";False;False;;;;1610215877;;False;{};giocx3b;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/giocx3b/;1610255406;1;True;False;anime;t5_2qh22;;0;[]; -[];;;myrmonden;;;[];;;;text;t2_f0rs6;False;False;[];;"Comfort food for us all. - -hard to not compare it to bottom tier character from yesterday, obviously very different personalities etc but the trope cliché is there again. - -""ugly"" duckling boy meets the top attractive school babe and he is actually super HOT in secret(ok on bottom tier the whole idea is that she is gonna make him hot). - -I think its interesting that this anime feels really enjoyable, I mean I am not saying its bad but just that, romcoms really is that genre where its like OH its CLICHE, oh its star align it happens to be her gloomy classmate that is this badboy with tattoos that saves her brother etc. - -But its all ok, at least for me, I am like YEAH that is romcom just how it is. - -&#x200B; - -Anyway, I cannot wait for people to do NTR fan work on this anime, main boy is basically asking for it, trying to get his girlfriend with someone else, best joke was definitely when she just told him to go Boyu loveu route instead. - -Definitely expecting blonde best friend to date him instead now when Hori turned him down, she was REALLY into going to the karaoke bar with him (maybe she just really likes karaoke do)";False;True;;comment score below threshold;;1610215890;;False;{};giocy1w;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giocy1w/;1610255421;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610215898;;False;{};giocyn1;False;t3_ktunxs;False;True;t1_gioclp4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giocyn1/;1610255430;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nulazanzal;;;[];;;;text;t2_5pxckj84;False;False;[];;Honestly, this is unacceptable. My expectations were too high apparently... Around 20 is nowhere near enough baka.;False;False;;;;1610215899;;False;{};giocyq8;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giocyq8/;1610255431;1;True;False;anime;t5_2qh22;;0;[]; -[];;;moa_vision;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/PrizedMoaBird?status=7;dark;text;t2_921az;False;False;[];;Sure seems like they blazed through a lot in this episode. Let a scene breathe for gods sake.;False;False;;;;1610215900;;1610229948.0;{};giocys3;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giocys3/;1610255432;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;"###Stitches! - -* [Punk Miyamura](https://i.imgur.com/akXgovs.jpg) - -* [Blushing Miyamura](https://i.imgur.com/MAQu1Fu.jpg) - -* [Tattooed Miyamura](https://i.imgur.com/JGQrRbg.jpg) - -I've heard good things about the manga but I wasn't really aware on what it's really about except that it's a romcom and oh my fucking god. I am absolutely in love with this show already! - -Just like what Hori and her classmate's predictions are, I thought that [Miyamura was going to be just your classic gloomy otaku](https://i.imgur.com/oa0xrnQ.png) character. Well colour me surprised when it turns out that he's pretty much [a punk rock kind of guy!](https://i.imgur.com/qSk9L9C.png) He's not even an awkward person, he's just really quiet and gloomy. Once you get to know him, you'll realize quickly that he's actually a very outgoing person and is such a sweet boy! [Just look at him blush](https://i.imgur.com/hkqlwhR.png) when Hori gave him some kind words. [And I just love how he gets along so well Hori's brother.](https://i.imgur.com/9hLnyTd.png) - -Oh and as a side note, [I thought Ishikawa and Miyamura's interaction](https://i.imgur.com/oXL8eot.png) was going to turn hostile for a bit there but I am so glad that Miyamura won over Ishikawa instantly and that they're practically buds now. I feel bad for Ishikawa though. Well the show is called HoriMiya not HoriIshi. - -As for Hori, while she looks very stylish, popular, and the very definition of a perfect riajuu/normie while at school, she's actually very diligent at home since she takes care [of their household chores](https://i.imgur.com/ZRdWLZv.png) and [looks after her little brother](https://i.imgur.com/SWg7js8.png) while their mom works overtime. While at home she doesn't keep up appearances and be all perfect. It's not as drastic as Miyamura's but I think the point here is that the way everyone sees Hori is different compared to how she sees herself and that's what her and Miyamura have in common. - - -And just watching the two of them interact is just absolutely sweet! Hori and Miyamura has the perfect chemistry that I'm surprised this episode didn't end with the two of them starting to date. [The scene while they were eating omurice](https://i.imgur.com/ufuSW2x.png) and Miyamura was saying all those cheesy things that my smile was from ear to ear! I love it! - -[](#akyuusqueel) - - -As for some technical stuff, animation, art, and directing is so fucking on point. Clover Works really hit the mark on this one! I especially love how they portrayed the feeling of having that small pinching feeling in your heart [during this scene](https://i.imgur.com/lVNXQy9.png) when Hori thought her friend found out about Miyamura's other self. It's so beautifully well conveyed that this is how I will visualize that feeling from now on. - - -I don't think I have anything else to say! It's a beautiful anime with great characters and a pretty solid premise for a romcom! I look forward to see where this goes!";False;False;;;;1610215912;;False;{};gioczkx;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioczkx/;1610255444;59;True;False;anime;t5_2qh22;;0;[]; -[];;;abhilolz;;;[];;;;text;t2_18fmcsip;False;False;[];;Lmao same;False;False;;;;1610215934;;False;{};giod16m;False;t3_ktunxs;False;False;t1_giobryv;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giod16m/;1610255468;42;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;True;[];;Damn, already two people from school know is *secret identity*.;False;False;;;;1610215938;;1610216212.0;{};giod1ic;False;t3_ktunxs;False;False;t1_gio8ma5;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giod1ic/;1610255474;28;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"Finally some food for the fluff addicts - -[](#delighted)";False;False;;;;1610215954;;False;{};giod2mq;False;t3_ktunxs;False;False;t1_gio6o0x;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giod2mq/;1610255491;29;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"Its similar in my Asian country as well. Basically if you break the dress code in school you'd be punished severely. When I was in High-School, the teachers used to check our belongings and outfits before the classes started. - -Though I can't exactly say if it was similar in every part of my country.";False;False;;;;1610215982;;1610221475.0;{};giod4p4;False;t3_ktunxs;False;False;t1_giocevp;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giod4p4/;1610255525;26;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;Lol even those OVAs are getting two new episodes this year, talk about a bonus;False;False;;;;1610216004;;False;{};giod6aj;False;t3_ktunxs;False;False;t1_gioart8;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giod6aj/;1610255552;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Jkempel;;;[];;;;text;t2_n0xxi;False;False;[];;I can tell I'm going to enjoy this one a LOT.;False;False;;;;1610216004;;False;{};giod6bn;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giod6bn/;1610255552;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Pikagreg;;MAL;[];;http://myanimelist.net/animelist/Pikagreg;dark;text;t2_5qs90;False;False;[];;As an anime-only I have been looking forward to this a ton given how much source fans have been hyping this adaptation up. I was super glad the first ep didn't disappoint. I love all of the characters already and can't wait for next week.;False;False;;;;1610216013;;False;{};giod70b;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giod70b/;1610255562;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610216015;;False;{};giod76c;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giod76c/;1610255565;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Primeaaron15;;;[];;;;text;t2_vherqmb;False;False;[];;I could immediately tell that Cloverworks put a lot of effort into this the show looks amazing!;False;False;;;;1610216021;;False;{};giod7lx;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giod7lx/;1610255572;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CosmicPenguin_OV103;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cosmic_Penguin;light;text;t2_1ufwqhs7;False;True;[];;"Right from the start I got some really heavy long-time husband and wife vibes for our couple here LOL, especially with Hori-chan's little brother in play. And I found it really funny that we always seems to get very similar themed anime in pairs every season lately, this time *Horimiya* having more than a few vibes strangely close to *Tomozaki-kun* next door. Both Kyouko Hori and Aoi Hinami next door have their own strong charismatic feels yet so easily irritated LOL, and we now have two seemingly inward feeling male MCs in Izumi Miyamura here and Fumiya Tomozaki next door. Yet each show having their own directions means that this will be a fun season to compare love stories. - -Back to here, I wonder if the pacing is a little bit fast (where does Hori-chan got her love from such a strange boy in Miyamura? The padding haven't arrived just yet and the part at the end seems to be from nowhere). But it's definitely a sweet yet not-out-of-the-blue start to a relationship and a kind that I'm highly interested in seeing. Not only I'm in for this ride, I guess I'll look into the ""old series"" OVA too once the latest episodes got released later this year! - -BTW the director for this one was the same one that did *From The New World* so many years ago, that's quite a surprise I shall say.";False;False;;;;1610216059;;1610217387.0;{};giodacl;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giodacl/;1610255617;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nueker;;;[];;;;text;t2_971rkuiy;False;False;[];;Not from japan but im from one of the asian countries. Most school does not allow the student to have tattoos (if they found out, they would get expelled) . Not so sure about piercing part but for my school, you are just not allowed to wear any earring (studs are allowed tho);False;False;;;;1610216071;;False;{};giodb7r;False;t3_ktunxs;False;False;t1_giob3t1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giodb7r/;1610255631;23;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610216092;;False;{};giodcrj;False;t3_ktunxs;False;True;t1_gioclp4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giodcrj/;1610255658;2;True;False;anime;t5_2qh22;;0;[]; -[];;;exian12;;;[];;;;text;t2_scqg8;False;False;[];;My favorite romance manga is finally and properly adapted. I love the passion that was put into this adaptation and not treated as just a random manga to be adapted. Manga art is already good enough but damn, look at those artistic stills!;False;False;;;;1610216096;;False;{};giodd2l;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giodd2l/;1610255662;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"This immediately has what I love the most in romance anime but is lacking in the vast majority of them: building a relationship from a simple shared intimacy. - -Miyamura immediately integrates himself with Hori's home life and from there they have so many little moments together that makes any romance stemming from it feel natural. We don't even see a number of them (which is really unfortunate) like her mentioning off-hand that he woke her up after she fell asleep watching a movie, but things like that make me want to root for them to truly fall in love with each other. - -The pacing on this first episode felt quite fast but hopefully we get to see a lot more of them just being comfortable together now that the baseline has been laid out.";False;False;;;;1610216107;;False;{};gioddwf;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioddwf/;1610255679;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KvasirTheOld;;;[];;;;text;t2_3nclza3d;False;False;[];;"I have a list already - -After I'm done with shippuden, I think I'll watch AoT then Fate maybe";False;False;;;;1610216121;;False;{};giodey9;True;t3_ktuvgg;False;True;t1_giocvtn;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/giodey9/;1610255699;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheGriefingEnder;;;[];;;;text;t2_i4ejx;False;False;[];;The plot and character development progresses normally until a certain point but after that it basically turns into a slice of life manga with occasional chapters that have plot relevance.;False;False;;;;1610216134;;False;{};giodfxq;False;t3_ktunxs;False;False;t1_giobw7f;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giodfxq/;1610255715;23;True;False;anime;t5_2qh22;;0;[]; -[];;;kyouuuuuma;;;[];;;;text;t2_7bi8hqjb;False;False;[];;feels kinda refreshing to have both POVs - the male mc's not another pandering self-insert;False;False;;;;1610216146;;False;{};giodgst;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giodgst/;1610255729;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;Wish her secret as bigger :(;False;False;;;;1610216168;;False;{};giodidv;False;t3_ktunxs;False;True;t1_giobp9o;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giodidv/;1610255755;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;"The pacing is a bit fast but I think it will work fine. The characters interactions are strong enough that the show can allow itself a fast pacing imo. - -Hori's secret is not as much of a secret. It's not really complex or dramatic, she just puts on a facade in front of other people. Of course the one who truly hides is Miyamura but Hori relates to him because she also hides the fact that she can't do a bunch of stuff because she has to take care of the house and that she is not really as perfect as people see her in the school. It's not really a dramatic secret but I find it is realistic. It's not uncommon for people to fake it a bit in school or when in front of others.";False;False;;;;1610216171;;False;{};giodilz;False;t3_ktunxs;False;False;t1_gio9do1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giodilz/;1610255758;79;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610216202;moderator;False;{};giodkxc;False;t3_ktunxs;False;True;t1_giocojm;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giodkxc/;1610255794;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerz905;;;[];;;;text;t2_1yglu2m7;False;False;[];;Yeah. Lots of people dropped it s1, kinda see their point since its nothing more than decent. But man holy shit does s2 turn up to eleven! Everything after a particular episode (the big reveal) is nothing short of a seat gripping mastery. Honestly to me the biggest selling point of AoT is how fucking interesting it is. The animations, music, dialogue... all is very well done, but its soo fricken interesting to know more about the world.;False;False;;;;1610216212;;False;{};giodlny;False;t3_ktw1my;False;False;t3_ktw1my;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/giodlny/;1610255805;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610216216;moderator;False;{};giodlz4;False;t3_ktunxs;False;True;t1_gioclp4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giodlz4/;1610255810;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610216226;moderator;False;{};giodmpx;False;t3_ktunxs;False;True;t1_giocezm;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giodmpx/;1610255821;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bakowh;;;[];;;;text;t2_xmmg9;False;False;[];;"Good introductory episode but man the art, OP and ED are top notch. The characters look sooo good but man the ""secret"" of our leads are so unbalanced lol. Miyamura has tattoos and piercings which is unheard of for most people and Hori on the other hand leaves school to cook and help out her younger sibling. - -PS: Hori totally has that anime mom look at home";False;False;;;;1610216229;;1610217086.0;{};giodmwp;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giodmwp/;1610255824;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rayque21;;;[];;;;text;t2_xs3fx;False;False;[];;When will Miyamura abuse Hori is the real question;False;False;;;;1610216230;;False;{};giodmy7;False;t3_ktunxs;False;False;t1_gio6n36;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giodmy7/;1610255825;48;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"I went to high school in the late 90s and things were quite a bit different back then. - -We didnt have much of a dress code. I wore a lot of wierd things to school over the years. Pretty much as long as you didnt make a scene the school didnt bother you.";False;False;;;;1610216244;;False;{};giodo1e;False;t3_ktunxs;False;False;t1_giod4p4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giodo1e/;1610255844;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610216258;;False;{};giodp24;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giodp24/;1610255865;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;"> we get to see animated souta. - -We need a kickstarter to get an OVA for the 10 years later chapters.";False;False;;;;1610216271;;1610216717.0;{};giodpzl;False;t3_ktunxs;False;False;t1_gioay15;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giodpzl/;1610255884;6;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;I don't understand this mindset, if you really want to watch more anime, then do it. Otherwise it seems like other things in your life have higher priority (e.g. playing games), and that's perfectly fine. Don't watch anime for the sake of upping your numbers, or fall into the trap of FOMO. It's always a tradeoff, so choose anime you actually want to invest time in, and enjoy.;False;False;;;;1610216293;;False;{};giodrl8;False;t3_ktuvgg;False;True;t1_gio8klq;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/giodrl8/;1610255912;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Aileos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jalis;light;text;t2_53d73b;False;True;[];;Yes, Home Hori is best Hori.;False;False;;;;1610216297;;False;{};giodrvt;False;t3_ktunxs;False;False;t1_gioaobq;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giodrvt/;1610255916;45;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;Hey i just started season 1 of Aot thinking of dropping it at episode 7. Does it get better would you say? In terms of plot and addictiveness;False;False;;;;1610216304;;False;{};giodsg0;False;t3_ktw1my;False;True;t3_ktw1my;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/giodsg0/;1610255926;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610216315;moderator;False;{};giodt7q;False;t3_ktunxs;False;True;t1_giod76c;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giodt7q/;1610255938;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;Blue spring ride;False;False;;;;1610216326;;False;{};giodtzw;False;t3_ktvv43;False;False;t3_ktvv43;/r/anime/comments/ktvv43/looking_for_anime_like_say_i_love_you_and_kimi_ni/giodtzw/;1610255952;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"No! No more love triangles! Bad Durin! - -[](#angrypout ""I'd watch that tho"")";False;False;;;;1610216330;;False;{};giodub0;False;t3_ktunxs;False;False;t1_giocl7m;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giodub0/;1610255957;88;True;False;anime;t5_2qh22;;0;[]; -[];;;Sneaky_42;;;[];;;;text;t2_4spbyunp;False;False;[];;I'm definitely gonna enjoy this. It's so in my wheelhouse, it hurts. Lol;False;False;;;;1610216334;;False;{};giodulk;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giodulk/;1610255962;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;Fruits basket;False;False;;;;1610216335;;False;{};gioduor;False;t3_ktvv43;False;False;t3_ktvv43;/r/anime/comments/ktvv43/looking_for_anime_like_say_i_love_you_and_kimi_ni/gioduor/;1610255963;6;True;False;anime;t5_2qh22;;0;[]; -[];;;iAsuno;;;[];;;;text;t2_crlev;False;False;[];;It's real. I'm so happy to see horimiya animated;False;False;;;;1610216336;;False;{};giodurc;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giodurc/;1610255964;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Royal_Heritage;;;[];;;;text;t2_8wglzuge;False;False;[];;"That sounds like a Light novel title ""My older sister can't stop saying baka""";False;False;;;;1610216338;;False;{};gioduxr;False;t3_ktunxs;False;False;t1_gio8onh;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioduxr/;1610255967;69;False;False;anime;t5_2qh22;;0;[]; -[];;;YuriAddict7;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/R1seKujikawa/;light;text;t2_3zn8celm;False;False;[];;"so im guessing it will end in [manga](/s ""marriage proposal"") yeah? - -also the episode with the [manga](/s ""sex scene"") is gonna get gilded a ton lol";False;False;;;;1610216351;;False;{};giodvut;False;t3_ktunxs;False;False;t1_gio53qi;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giodvut/;1610255982;10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610216355;;False;{};giodw5j;False;t3_ktunxs;False;True;t1_giodidv;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giodw5j/;1610255987;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610216362;;False;{};giodwm8;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giodwm8/;1610255994;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610216375;;False;{};giodxj0;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giodxj0/;1610256008;0;True;False;anime;t5_2qh22;;0;[]; -[];;;YuriAddict7;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/R1seKujikawa/;light;text;t2_3zn8celm;False;False;[];; pacing seems super fast. tooru (purple hair) dude is hostile toward miyamura and doesnt confess to hori and doesnt become so friendly with miyamura this fast IMO;False;False;;;;1610216423;;False;{};gioe155;False;t3_ktunxs;False;False;t1_gioazrc;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioe155/;1610256066;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610216441;;False;{};gioe2g1;False;t3_ktunxs;False;True;t1_gio5w5t;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioe2g1/;1610256086;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dontloseyourway1610;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Marinate1016;light;text;t2_4wegnp53;False;False;[];;Nah it’s fr crazy how clear this show is. One episode in and it’s already better than oregairu. Peak slice of life romance. The direction, voice acting, art, cinematography everything was top notch in this ep. If it keeps up, free 10.;False;False;;;;1610216441;;False;{};gioe2hh;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioe2hh/;1610256087;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dadnaya;;MAL;[];;https://myanimelist.net/profile/dadnaya;dark;text;t2_cubnc;False;False;[];;"Basically the manga is very story heavy with a lot of character development for around 40 chapters, then it slows down and the next 20 chapters (won't be in the anime) are still good but not as good as the first 40, then there's a HUGE moment in the manga, and that pretty much seals the main story. around chapter 60. - -The rest 60 chapters are all SoL fluff, sometimes focusing on Hori and Miyamura, sometimes on other characters, but there's barely any progression whatsoever.";False;False;;;;1610216442;;False;{};gioe2jx;False;t3_ktunxs;False;False;t1_giobw7f;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioe2jx/;1610256088;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;It will be a while before aot ends so don't worry about, it's still early;False;False;;;;1610216448;;False;{};gioe2xp;False;t3_ktw1my;False;False;t3_ktw1my;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/gioe2xp/;1610256095;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;And that cute blush afterwards.;False;False;;;;1610216449;;False;{};gioe32f;False;t3_ktunxs;False;False;t1_gio9tem;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioe32f/;1610256097;31;True;False;anime;t5_2qh22;;0;[]; -[];;;joshyjoshj;;;[];;;;text;t2_3ulasaal;False;False;[];;I have diabetes now, thanks a lot;False;False;;;;1610216493;;False;{};gioe678;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioe678/;1610256149;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610216496;;False;{};gioe6f8;False;t3_ktunxs;False;True;t1_gio53qi;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioe6f8/;1610256153;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;">Asian country - -That means you must be great at mathematics. - -Edit: this was just a joke guys.";False;True;;comment score below threshold;;1610216536;;1610218340.0;{};gioe9ef;False;t3_ktunxs;False;True;t1_giod4p4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioe9ef/;1610256202;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;AZLarlar;;;[];;;;text;t2_6d6peonh;False;False;[];;oh, i already know im going to enjoy this. episode 1 was really good;False;False;;;;1610216548;;False;{};gioeabq;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioeabq/;1610256216;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hachiagejo;;;[];;;;text;t2_fu72y;False;False;[];;"I actually didn't expect Tsuda Ken to be voicing [Manga Spoiler](/s ""the perverted teacher""). I was actually cracking up when the episode started. Now I really want them to adapt [Manga spoiler](/s ""the pool chapter, just to hear him screaming over the girls not swimming"").";False;False;;;;1610216551;;False;{};gioeaks;False;t3_ktunxs;False;False;t1_gio53qi;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioeaks/;1610256220;16;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610216575;;False;{};gioecb0;False;t3_ktunxs;False;True;t1_gio8gjt;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioecb0/;1610256254;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610216575;;False;{};gioecbm;False;t3_ktunxs;False;True;t1_gio8onh;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioecbm/;1610256255;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;It will probably cover a bit more since Yanagi has been shown and they seem to be teasing the side ship a bit. So my guess is they will rearrange some stuff/skip some parts. Which should be fine if they do a good job with it since the core of the story is always going to be adapted. So I'm all for skiping some minor stuff if it's used to include some other characters a bit more. They are still going to include all the good stuff of the main ship.;False;False;;;;1610216601;;False;{};gioee8p;False;t3_ktunxs;False;True;t1_gioakuv;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioee8p/;1610256289;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sedisrehtac;;;[];;;;text;t2_3bi1x3xy;False;False;[];;I finnaly got around to watching it, start just before Christmas and I'm now half way through S3. They really seem to know how to end an episode so that I have to watch the next.;False;False;;;;1610216605;;False;{};gioeeii;False;t3_ktw1my;False;False;t3_ktw1my;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/gioeeii/;1610256293;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Ahmedala100;;;[];;;;text;t2_1mfkyx9w;False;False;[];;If this was a try not to smile challenge, then I failed miserably.;False;False;;;;1610216611;;False;{};gioef1d;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioef1d/;1610256305;77;True;False;anime;t5_2qh22;;0;[]; -[];;;ArulSharma;;;[];;;;text;t2_48m4m6zb;False;False;[];;This will be a great anime for all the K-Drama fans!!!!;False;False;;;;1610216627;;False;{};gioeg7l;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioeg7l/;1610256325;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;Well it happens by chapter 3, so it's fast but not that fast. I like the fast pacing though.;False;False;;;;1610216655;;False;{};gioei89;False;t3_ktunxs;False;False;t1_gioe155;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioei89/;1610256360;10;True;False;anime;t5_2qh22;;0;[]; -[];;;ArulSharma;;;[];;;;text;t2_48m4m6zb;False;False;[];;"""When she starts saying dummy, she doesn't stop""";False;False;;;;1610216655;;False;{};gioeia5;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioeia5/;1610256360;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FirstDagger;;;[];;;;text;t2_bqte6;False;False;[];;Read the manga, the anime is way easier to follow because of the hair colors.;False;False;;;;1610216669;;False;{};gioejaq;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioejaq/;1610256378;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDampGod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheDampGod;light;text;t2_im4vi;False;False;[];;"Never underestimate the ferocious battle that is sale day at a Japanese supermarket. Even superheroes and hardened yakuza fear that onslaught. - -I admit I was expecting something closer to Oregairu or Bottom Tier, so this turning out to be much more fluffy was nice surprise. Good start and I'm liking the characters, though I hope there is more than one couple in this. I love me my side ships.";False;False;;;;1610216674;;False;{};gioejlm;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioejlm/;1610256382;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"[](#hajimepout) - -I think that desire came from a romantic drama drought since I haven't watched any in a while, need to refill this year. - -Still, it's nice to identify what's 95% sure to be my anime of the season from the first episode.";False;False;;;;1610216689;;False;{};gioekp6;False;t3_ktunxs;False;False;t1_giodub0;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioekp6/;1610256402;8;True;False;anime;t5_2qh22;;0;[]; -[];;;blondeboy963;;;[];;;;text;t2_7tywiu;False;False;[];;I haven't read the manga but it kinda feels like some scenes are missing. Did they adapted it correctly or is it the same as the manga?;False;False;;;;1610216694;;False;{};gioel2u;False;t3_ktunxs;False;False;t1_gio53qi;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioel2u/;1610256409;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KrazyBean94;;;[];;;;text;t2_110dr6;False;False;[];;I dunno what to expect from this series, but I already really like it.;False;False;;;;1610216698;;False;{};gioelcn;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioelcn/;1610256416;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610216709;;False;{};gioem79;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioem79/;1610256431;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;I rarely follow seasonals, at most 1 or 2. I binge most of my anime, but sometimes it'll take me months to finish it if I'm busy with life or not in the mood.;False;False;;;;1610216729;;False;{};gioenmy;False;t3_ktuoj0;False;False;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gioenmy/;1610256455;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TohaHeavyIndustries_;;;[];;;;text;t2_1f3b6iu;False;False;[];;That's a lot to watch, but also a lot of fun. Just one thing about Fate: Don't ignore the Spinoff shows! The amount of Fate shows can be confusing and some vocal parts of the fandom love to shit on everything that isn't the main timeline and because of that newcomers sometimes skip those, but the most enjoyment I had with Fate was with Apocrypha(Ep 22 has the best animation of every TV anime episode I have ever watched. Most movies look much worse) and Extra(just the brilliant Studio Shaft at their very best: Insane, slightly surreal but beautiful designs, charming character interaction and a perfect pacing) and it would be a shame If you wouldn't at least try them because of some Naysayers.;False;False;;;;1610216733;;False;{};gioenwk;False;t3_ktuvgg;False;True;t1_giodey9;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/gioenwk/;1610256459;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Royal_Heritage;;;[];;;;text;t2_8wglzuge;False;False;[];;"Going almost completely blind (cept for the trailer) it did surpass my initial expectations. - -The gathering of the 2 oddballs (that quite remind me of the Karekano principle) felt just a little bit rushed, but still good in my books. Likewise the humor was pretty good most of the times, although a couple of chibi jokes kinda were a bit on the nose.";False;False;;;;1610216735;;False;{};gioeo44;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioeo44/;1610256462;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;In this show it is a tie between Yuki, Hori and Miyamura as best girl for me but Miyamura may take it. I mean did you see how fucking cute he is?;False;False;;;;1610216750;;1610224653.0;{};gioep8r;False;t3_ktunxs;False;False;t1_gio9i48;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioep8r/;1610256481;48;True;False;anime;t5_2qh22;;0;[]; -[];;;YuriAddict7;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/R1seKujikawa/;light;text;t2_3zn8celm;False;False;[];;ah, i see. i havent read it in ages. i guess manga made it feel slower;False;False;;;;1610216767;;False;{};gioeqjc;False;t3_ktunxs;False;True;t1_gioei89;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioeqjc/;1610256502;0;True;False;anime;t5_2qh22;;0;[]; -[];;;yungsolipsist;;;[];;;;text;t2_3rmpx0y1;False;False;[];;You know i went into this expecting to not like it but ill be damned. this seems like alot of fun and am adding to my list;False;False;;;;1610216778;;False;{};gioerb0;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioerb0/;1610256513;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PopPunkTeacher;;;[];;;;text;t2_3q70c5ad;False;False;[];;This was amazing. I loved every minute of it;False;False;;;;1610216799;;False;{};gioesxo;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioesxo/;1610256545;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610216815;;False;{};gioeu4r;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioeu4r/;1610256564;1;True;False;anime;t5_2qh22;;0;[]; -[];;;imposterlettuceguy12;;;[];;;;text;t2_9jky5q3;False;False;[];;two words, that's epic;False;False;;;;1610216816;;False;{};gioeu6u;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioeu6u/;1610256564;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;Finally? Tonikaku Kawaii just finished a couple weeks ago.;False;False;;;;1610216840;;False;{};gioew10;False;t3_ktunxs;False;False;t1_giod2mq;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioew10/;1610256593;22;True;False;anime;t5_2qh22;;0;[]; -[];;;exian12;;;[];;;;text;t2_scqg8;False;False;[];;I was actually back when I read the manga. Prompted me to have some piercings and have the same tattoo like his only to find out that it was expensive for me at the time (early college days) so I gave up on it lol;False;False;;;;1610216843;;False;{};gioew9s;False;t3_ktunxs;False;False;t1_gio9c15;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioew9s/;1610256597;14;True;False;anime;t5_2qh22;;0;[]; -[];;;dadnaya;;MAL;[];;https://myanimelist.net/profile/dadnaya;dark;text;t2_cubnc;False;False;[];;I don't remember *where*, but I'm pretty sure I've seen this scenario before... somewhere;False;False;;;;1610216858;;False;{};gioexd2;False;t3_ktunxs;False;True;t1_giocl7m;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioexd2/;1610256616;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Lol, I can't say I'm perfect in Maths but I'm good enough. Though Calculus still gave a lot of problems.;False;False;;;;1610216863;;False;{};gioexpc;False;t3_ktunxs;False;True;t1_gioe9ef;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioexpc/;1610256621;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Terranwaterbender;;MAL;[];;https://myanimelist.net/animelist/Teranwaterbender;dark;text;t2_e3l4f;False;False;[];;"Yeah I also prefer her ponytail look. - -[Ponytails are the best](#garlock)";False;False;;;;1610216883;;False;{};gioez3f;False;t3_ktunxs;False;False;t1_giobbpq;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioez3f/;1610256645;21;True;False;anime;t5_2qh22;;0;[]; -[];;;echykr4;;;[];;;;text;t2_k4xht;False;False;[];;"Sees Cloverworks as animation studio. Say no more, I'm watching this. - -I thought this was going to be a fluff romance with cute girls, but turns out it's the boys who are the ones behaving adorkably. So much so that even Hori BL-ships them. XD - -That Animal Crossing-like ED was wicked.";False;False;;;;1610216894;;False;{};gioezxe;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioezxe/;1610256659;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610216904;moderator;False;{};giof0lq;False;t3_ktunxs;False;False;t1_giobboe;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giof0lq/;1610256670;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610216908;moderator;False;{};giof0wt;False;t3_ktunxs;False;True;t1_giocmdj;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giof0wt/;1610256675;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IIHURRlCANEII;;MAL;[];;http://myanimelist.net/animelist/Caerus--;dark;text;t2_6ivfh;False;True;[];;Which, considering how excellent and complete the first ~40 chapters are, I'm fine with personally.;False;False;;;;1610216923;;False;{};giof20v;False;t3_ktunxs;False;False;t1_giodfxq;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giof20v/;1610256693;18;True;False;anime;t5_2qh22;;0;[]; -[];;;FirstDagger;;;[];;;;text;t2_bqte6;False;False;[];;"Manga reader here, it is even better because of the hair colors. - -Some panels in the manga were difficult to follow as the mangaka likes playing around with hairstyles as evidenced by this first anime episode.";False;False;;;;1610216936;;1610217509.0;{};giof2zr;False;t3_ktunxs;False;False;t1_gio5j02;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giof2zr/;1610256708;14;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;"Yes. -From season 2 ep 6 it became fucking amazing.";False;False;;;;1610216939;;False;{};giof38x;False;t3_ktw1my;False;False;t1_giodsg0;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/giof38x/;1610256713;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610216947;moderator;False;{};giof3sq;False;t3_ktunxs;False;True;t1_gioem79;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giof3sq/;1610256720;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;Okay thanks;False;False;;;;1610216969;;False;{};giof5ej;False;t3_ktw1my;False;True;t1_giof38x;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/giof5ej/;1610256746;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610216969;moderator;False;{};giof5ga;False;t3_ktunxs;False;False;t1_giodp24;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giof5ga/;1610256747;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610217029;moderator;False;{};giof9r9;False;t3_ktunxs;False;True;t1_gioeu4r;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giof9r9/;1610256818;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;"They are not supposed to be big secrets. I mean Miyamura even showed his tattoos to Toru. It's the fact that they both put on a sort of mask when in school. People expect something big because it's usually that way in anime but when you think about it it makes sense that their things are not that big of a deal. - -Basically Miyamura is insecure and Hori doesn't want everyone to know that she is the one who has to take care of the house and that's why she can't do normal ""teen stuff"". It makes a lot of sense imo.";False;False;;;;1610217031;;1610219431.0;{};giof9we;False;t3_ktunxs;False;False;t1_giob3t1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giof9we/;1610256821;164;True;False;anime;t5_2qh22;;0;[]; -[];;;davallos60;;;[];;;;text;t2_2jnx7k4r;False;False;[];;Really fucking pretty, a really good concept and it seems like well have a ride with this interesting cast, the only complain I have it is that it feels a bit rushed;False;False;;;;1610217036;;False;{};giofaat;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giofaat/;1610256827;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Well for me it was in late 2000s to early 2010s. Dunno how things are like today but I expect the strictness level to have increased tbh.;False;False;;;;1610217061;;False;{};giofc4f;False;t3_ktunxs;False;True;t1_giodo1e;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giofc4f/;1610256861;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"> Still, it's nice to identify what's 95% sure to be my anime of the season from the first episode. - -I am curious if it will be mine. Last season I pegged Tonikaku Kawaii to be mine and it wasn't so maybe romances just aren't enough for me anymore...";False;False;;;;1610217071;;False;{};giofctz;False;t3_ktunxs;False;False;t1_gioekp6;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giofctz/;1610256873;7;True;False;anime;t5_2qh22;;0;[]; -[];;;karmakeeper1;;;[];;;;text;t2_7td83;False;True;[];;Honestly, having just rewatched the 1st OVA, I actually prefer just about everything in the anime, the voice actors, the story board and pacing, the character design as opposed to the OVA, the only think I think the OVA did better was Miyamuras self doubt and awkwardness. But other than that, the anime feels much more fulfilling, like I'm reading the manga again;False;False;;;;1610217092;;False;{};giofeg0;False;t3_ktunxs;False;True;t1_gioair4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giofeg0/;1610256900;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;I need this anime to have tons of Yuki.;False;False;;;;1610217137;;False;{};giofhqu;False;t3_ktunxs;False;False;t1_gio8821;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giofhqu/;1610256959;15;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;You're having a hard time today;False;False;;;;1610217147;;False;{};giofigc;False;t3_ktunxs;False;True;t1_giof9r9;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giofigc/;1610256973;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610217171;;False;{};giofk59;False;t3_ktw1my;False;True;t3_ktw1my;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/giofk59/;1610257001;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610217215;;False;{};giofnf8;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giofnf8/;1610257056;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;Yeah it's probably because the manga is pretty fast paced itself so when you look back at it you feel these things happened later than they actually did.;False;False;;;;1610217223;;False;{};giofnz0;False;t3_ktunxs;False;True;t1_gioeqjc;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giofnz0/;1610257066;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;I was grinning the whole time while watching lol. Horimiya adaptation feels like a dream;False;False;;;;1610217261;;False;{};giofqqq;False;t3_ktunxs;False;False;t1_gioef1d;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giofqqq/;1610257136;29;True;False;anime;t5_2qh22;;0;[]; -[];;;TeixeiraJRT;;;[];;;;text;t2_x88v8;False;False;[];;"They brought it back in the end! Haha -THIS IS A COMEDY BAKA! -This series only makes you cry of laughter! -Get this melodramatic stuff away from our beautiful Horimiya! - -I'm so so happy for this adaptation! Our baby boy never looked so good jumping a fence! - -Best sensei right from the get-go being best perv! -The comedy was 10/10 the whole episode. I couldn't stop laughing for most of it! - -I loved the op since the trailer came out and the long version did NOT disappoint. - -Character interactions were pretty much the same as the manga but the anime managed to pull even bigger laughter from me somehow. -We did just jumped most of chapter 2 though. Possibly bringing some of it back for next ep. - -Toru's rejection face was soo precious! - -ED was so KAWAII!";False;False;;;;1610217269;;False;{};giofras;False;t3_ktunxs;False;True;t1_gio53qi;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giofras/;1610257145;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mayonais3_Instrument;;;[];;;;text;t2_39en01mp;False;False;[];;Much better;False;False;;;;1610217278;;False;{};giofs0c;False;t3_ktw1my;False;False;t1_giodsg0;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/giofs0c/;1610257156;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Pan_Puns;;;[];;;;text;t2_9lm98gb6;False;False;[];;Yes, I love it and anybody that says other wise either doesn't like anime or is lying or just doesn't like it, lol. Please no one take offence;False;False;;;;1610217284;;False;{};giofsf2;False;t3_ktw1my;False;True;t3_ktw1my;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/giofsf2/;1610257162;1;True;False;anime;t5_2qh22;;0;[]; -[];;;karmakeeper1;;;[];;;;text;t2_7td83;False;True;[];;The thing is, Miyamura lives in Japan, so while it's not a big deal to you, even adults in Japan are often looked down upon for having piercings and tattoos, add to that the fact that he's in high school, and that's some serious taboo;False;False;;;;1610217301;;False;{};gioftq3;False;t3_ktunxs;False;False;t1_gioadc9;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioftq3/;1610257215;10;True;False;anime;t5_2qh22;;0;[]; -[];;;TeixeiraJRT;;;[];;;;text;t2_x88v8;False;False;[];;"Corrected. -Sorry for the inconvenience.";False;False;;;;1610217312;;False;{};giofuku;False;t3_ktunxs;False;True;t1_giof9r9;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giofuku/;1610257244;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Roamer21XX;;;[];;;;text;t2_q9cr1;False;False;[];;Diabeetus the Anime 2: Electric Boogaloo;False;False;;;;1610217312;;False;{};giofum0;False;t3_ktunxs;False;True;t1_gio9u4r;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giofum0/;1610257244;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610217331;;False;{};giofw1g;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giofw1g/;1610257281;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;[here](https://www.inquirer.com/resizer/So6ZUMiwdYjJUQ1aBx8LdRgG4XI=/1400x932/smart/arc-anglerfish-arc2-prod-pmn.s3.amazonaws.com/public/7GXKWCTH4JBB7LIPVHE5EZYWNQ.jpg);False;False;;;;1610217340;;False;{};giofwro;False;t3_ktunxs;False;True;t1_gioe678;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giofwro/;1610257292;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;arin-san;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://myanimelist.net/profile/Arin-san;light;text;t2_6iowtmwg;False;False;[];;"It's here! It's here! It's finally here! The rom-com of the season, one of my most anticipated adaption. I never thought I'd see the day when Horimiya gets an anime adaption. - -Cloverworks is doing an amazing job with this adaption, especially the focus on the character, they are nailing this adaption. - -This might just be the best rom-com of 2021, no competition!";False;False;;;;1610217364;;False;{};giofym1;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giofym1/;1610257321;44;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;"now, if you don't like it for now, you don't have to continue, however, from what you said, attack on titan improves a lot in history. -and I, for example, couldn't stop watching the episodes, especially season 3. -I hope you like it";False;False;;;;1610217367;;False;{};giofyt6;False;t3_ktw1my;False;False;t1_giof5ej;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/giofyt6/;1610257325;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;Thanks i will continue watching it:) i like it but dont find it addictive if that makes sense, but will definitely continue to watch it now;False;False;;;;1610217407;;False;{};giog1ri;False;t3_ktw1my;False;False;t1_giofyt6;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/giog1ri/;1610257397;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610217488;;False;{};giog7t8;False;t3_ktunxs;False;True;t1_giofum0;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giog7t8/;1610257521;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TeixeiraJRT;;;[];;;;text;t2_x88v8;False;False;[];;"Happy to see a veteran weeb such as you loving Horimiya! -Hope you stay for the long run!";False;False;;;;1610217488;;False;{};giog7ty;False;t3_ktunxs;False;False;t1_gioat62;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giog7ty/;1610257521;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;Comment is still taking about the manga near the end.;False;False;;;;1610217489;;False;{};giog7u5;False;t3_ktunxs;False;True;t1_giofuku;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giog7u5/;1610257521;2;True;False;anime;t5_2qh22;;0;[]; -[];;;VersusWorldChannel;;;[];;;;text;t2_53o6fp8s;False;False;[];;If only Poem for your Sprog hung out in /r/anime...;False;False;;;;1610217492;;False;{};giog834;False;t3_ktunxs;False;True;t1_gioduxr;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giog834/;1610257526;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;dadnaya;;MAL;[];;https://myanimelist.net/profile/dadnaya;dark;text;t2_cubnc;False;False;[];;Kaichou wa Maid Sama;False;False;;;;1610217495;;False;{};giog8dn;False;t3_ktvv43;False;True;t3_ktvv43;/r/anime/comments/ktvv43/looking_for_anime_like_say_i_love_you_and_kimi_ni/giog8dn/;1610257534;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"> maybe romances just aren't enough for me anymore... - -[](#flyingbunsofdoom) - -Who are you and what have you done with the real /u/AmethystItalian?";False;False;;;;1610217499;;False;{};giog8pf;False;t3_ktunxs;False;False;t1_giofctz;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giog8pf/;1610257541;8;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;"I am an anime only, I LOVED THIS. - -I had a smile on my face the whole time. These two characters are so great to watch interact. Even Ishikawa was awesome. This feels somewhat similar to Kaguya-sama with the general vibe it gives off. I'm super excited to keep watching this. - -Probably biggest surprise of the season so far, I didnt expect to enjoy this so much!";False;False;;;;1610217501;;False;{};giog8u6;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giog8u6/;1610257543;44;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Read and join us on r/titanfolk we are more hyped for the anime than anime onlies, reading the manga won't ruin it for you;False;False;;;;1610217513;;False;{};giog9qm;False;t3_ktwjuc;False;False;t3_ktwjuc;/r/anime/comments/ktwjuc/should_i_read_the_manga_or_wait_for_the_episodes/giog9qm/;1610257558;10;True;False;anime;t5_2qh22;;0;[]; -[];;;TeixeiraJRT;;;[];;;;text;t2_x88v8;False;False;[];;Note taken. Won't ~~happy~~ happen again. OOF;False;False;;;;1610217536;;1610222937.0;{};giogbic;False;t3_ktunxs;False;False;t1_giog7u5;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giogbic/;1610257588;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sakatasaan;;;[];;;;text;t2_6o0q00iy;False;False;[];;Read the manga;False;False;;;;1610217610;;False;{};giogh3b;False;t3_ktwjuc;False;False;t3_ktwjuc;/r/anime/comments/ktwjuc/should_i_read_the_manga_or_wait_for_the_episodes/giogh3b/;1610257687;8;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;"I think I'm just craving something that we won't get so everything else kind of falls in comparison? - -I want some will they or won't they flirting action! Give me some cheesy shoujo! Give me a timeskip ending! - -I'm too greedy.";False;False;;;;1610217631;;False;{};giogipk;False;t3_ktunxs;False;False;t1_giog8pf;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giogipk/;1610257720;5;True;False;anime;t5_2qh22;;0;[]; -[];;;doppios;;;[];;;;text;t2_5pw54e6o;False;False;[];;I've been hoping for a Horimiya anime for so long that I can't believe it's actually here! The art + animation is gorgeous.;False;False;;;;1610217635;;False;{};giogj1o;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giogj1o/;1610257727;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610217649;moderator;False;{};giogk4e;False;t3_ktwm0o;False;True;t3_ktwm0o;/r/anime/comments/ktwm0o/what_anime_is_this_woman_from/giogk4e/;1610257746;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;Same, I have the volumes on a bookshelf so I could go revisit it but I think I'll just enjoy it relatively fresh in anime form.;False;False;;;;1610217654;;False;{};giogkhn;False;t3_ktunxs;False;True;t1_gio8hu4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giogkhn/;1610257753;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kdusting;;;[];;;;text;t2_5mlewac1;False;False;[];;Rent a Girlfriend;False;False;;;;1610217681;;False;{};giogmhu;False;t3_ktwm0o;False;True;t3_ktwm0o;/r/anime/comments/ktwm0o/what_anime_is_this_woman_from/giogmhu/;1610257785;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Xinyanbestgirl;;;[];;;;text;t2_983nmdwn;False;False;[];;Is this adapting the manga or the web manga? Though I assume it's the former.;False;False;;;;1610217687;;False;{};giogmzu;False;t3_ktunxs;False;True;t1_gio53qi;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giogmzu/;1610257793;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pan_Puns;;;[];;;;text;t2_9lm98gb6;False;False;[];;In my opinion you should wait for the new season to come out, otherwise when it comes out and you read the manga, it wont be as exciting as watching it with out knowing what's gonna happen. But that's up to you!;False;False;;;;1610217707;;False;{};giogog5;False;t3_ktwjuc;False;True;t3_ktwjuc;/r/anime/comments/ktwjuc/should_i_read_the_manga_or_wait_for_the_episodes/giogog5/;1610257819;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LordCalem;;;[];;;;text;t2_1mly28z7;False;False;[];;Damn, I really liked this first episode. Hori and Miyamura's dynamic is pretty interesting and funny, and the characters seems to be great. This season so far is being such a good find of new animes for me.;False;False;;;;1610217725;;False;{};giogpt6;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giogpt6/;1610257851;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Accountforcontrovers;;;[];;;;text;t2_77ed8078;False;False;[];;Looks like rent a Girlfriend;False;False;;;;1610217743;;False;{};giogr46;False;t3_ktwm0o;False;True;t3_ktwm0o;/r/anime/comments/ktwm0o/what_anime_is_this_woman_from/giogr46/;1610257874;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LegendaryRQA;;;[];;;;text;t2_hszyq;False;False;[];;Marathoning;False;False;;;;1610217747;;False;{};giogrg7;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/giogrg7/;1610257879;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nghtmare-Moon;;;[];;;;text;t2_jsig9;False;False;[];;"So it's like a less-masked version of Kare Kano ? -I am digging it very much, the animation, the VA's. . .the character design. top marks all around. Let's just hope it's not too cliche'd";False;False;;;;1610217760;;False;{};giogsez;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giogsez/;1610257895;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610217763;moderator;False;{};giogsn9;False;t3_ktunxs;False;True;t1_giofnf8;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giogsn9/;1610257899;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610217768;moderator;False;{};giogt1s;False;t3_ktunxs;False;True;t1_giofw1g;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giogt1s/;1610257905;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Terranwaterbender;;MAL;[];;https://myanimelist.net/animelist/Teranwaterbender;dark;text;t2_e3l4f;False;False;[];;"I get why they do it but I always find it hilarious whenever they do the- - -[Oh no they hot **routine**](#flyingbunsofdoom) - -Horimiya holds a special place in my heart (my MAL profile picture is Hori after all). I'm quite happy to see that it looks great and looks to be a faithful adaptation. - -Here's to hoping it manages to do well in a season chock full of big-name sequels!";False;False;;;;1610217772;;False;{};giogt9l;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giogt9l/;1610257908;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Daksh23;;;[];;;;text;t2_2ytnuyk4;False;False;[];;"I might be in the minority but I actually like the fast pacing. At the end of the day, I view the anime as a separate entity from the manga and I don't think they're going to skip anything heavily relevant to the plot. Just my personal opinion. - - -Also, I didn't think the biggest degenerate in the manga couldn't get any more funny but now he's voiced by Tsuda Kenjirou. It couldn't get any better.";False;False;;;;1610217775;;False;{};giogtj0;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giogtj0/;1610257913;1;True;False;anime;t5_2qh22;;0;[];True -[];;;heimdal77;;;[];;;;text;t2_6qr37;False;False;[];;Just to mention there is a r/horimiya subeddit and a discord with link on the sub.;False;False;;;;1610217785;;False;{};giogu9x;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giogu9x/;1610257926;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NatrenSR1;;;[];;;;text;t2_16p9se;False;False;[];;I liked it. The pacing felt a little weird, but I’m guessing they were trying to get some of the introduction stuff out of the way. Hopefully they slow things down a bit more going forward, but I’m hopeful;False;False;;;;1610217788;;False;{};giogugm;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giogugm/;1610257928;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610217793;moderator;False;{};gioguvd;False;t3_ktwnph;False;True;t3_ktwnph;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/gioguvd/;1610257935;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi blaccvelveteen, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610217793;moderator;False;{};gioguwk;False;t3_ktwnph;False;True;t3_ktwnph;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/gioguwk/;1610257936;1;False;False;anime;t5_2qh22;;0;[]; -[];;;tiltskits;;;[];;;;text;t2_1vmpws2r;False;False;[];;that opening song bangs bro !!;False;False;;;;1610217825;;False;{};giogxbq;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giogxbq/;1610257977;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610217878;;False;{};gioh1aa;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioh1aa/;1610258041;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;That's fair, I keep diving deeper into less popular romances searching for things like those as well and end up disappointed most of the time.;False;False;;;;1610217893;;False;{};gioh2h8;False;t3_ktunxs;False;True;t1_giogipk;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioh2h8/;1610258061;4;True;False;anime;t5_2qh22;;0;[]; -[];;;psihius;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/psihius;light;text;t2_ebp2e;False;False;[];;"Or, you know, it was just not what you wanted it to be. - -It tone shifted a lot and that was one of the better aspects of it - I truly didn't have the slightest idea what to expect from the next episode and it made me really wait for next episodes. It also definetly was heavily self-aware to a point of parodying itself a lot.";False;False;;;;1610217898;;False;{};gioh2um;False;t3_ktvn5p;False;False;t1_giocp6c;/r/anime/comments/ktvn5p/wandering_witch_the_journey_of_elaina_review_a/gioh2um/;1610258068;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Daksh23;;;[];;;;text;t2_2ytnuyk4;False;False;[];;You're in for a ride. Character interactions is the best part about this story.;False;False;;;;1610217970;;False;{};gioh89i;False;t3_ktunxs;False;False;t1_giog8u6;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioh89i/;1610258155;16;True;False;anime;t5_2qh22;;0;[];True -[];;;Terranwaterbender;;MAL;[];;https://myanimelist.net/animelist/Teranwaterbender;dark;text;t2_e3l4f;False;False;[];;Yeah if anything we're helping ourselves to a second serving!;False;False;;;;1610217983;;False;{};gioh97p;False;t3_ktunxs;False;False;t1_gioew10;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioh97p/;1610258170;13;True;False;anime;t5_2qh22;;0;[]; -[];;;heimdal77;;;[];;;;text;t2_6qr37;False;False;[];;It is more like she is in a housewife mode/viibe outside school.;False;False;;;;1610217994;;False;{};gioha2z;False;t3_ktunxs;False;False;t1_gio9do1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioha2z/;1610258183;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Jdruu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_7208c;False;False;[];;Binge. Then once I’m done, I read the manga to continue the story.;False;False;;;;1610217999;;False;{};giohafo;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/giohafo/;1610258190;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Emoticon_1909;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/CryOfTheRaven;light;text;t2_7ftohux7;False;False;[];;Haven't read the manga, but for a romance anime, the story is building up real quick, seriously can't predict how the plot will advance.;False;False;;;;1610217999;;False;{};giohagz;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giohagz/;1610258190;17;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;The OVA adapts the web manga iirc;False;False;;;;1610218023;;False;{};giohcat;False;t3_ktunxs;False;False;t1_giogmzu;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giohcat/;1610258219;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Doubletift-Zeebbee;;MAL;[];;http://myanimelist.net/animelist/Kaori;dark;text;t2_c81cj;False;False;[];;"[Here to **take you away**](#lolipolice ""Nah you're not wack imo"")";False;False;;;;1610218025;;False;{};giohcf5;False;t3_ktuvgg;False;True;t1_gio6s4u;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/giohcf5/;1610258222;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Anime, if you've spent the last 8 years not reading the manga, waiting one more year won't hurt. - -The soundtrack and the voice acting just completes it for me.";False;False;;;;1610218057;;False;{};giohes1;False;t3_ktwjuc;False;False;t3_ktwjuc;/r/anime/comments/ktwjuc/should_i_read_the_manga_or_wait_for_the_episodes/giohes1/;1610258261;8;True;False;anime;t5_2qh22;;0;[]; -[];;;fridchikn24;;;[];;;;text;t2_b0c3x;False;False;[];;"> They are so cute -> and hilarious -> together! - -Yep, this is HoriMiya alright";False;False;;;;1610218085;;False;{};giohgwe;False;t3_ktunxs;False;False;t1_gio65pn;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giohgwe/;1610258309;52;True;False;anime;t5_2qh22;;0;[]; -[];;;FamiliarTerritoryPod;;skip7;[];;;dark;text;t2_8iqi2gws;False;False;[];;"I disagree, I think a tone shift is fine, but when your character doesn't react or change to tone shifts or events it can become quite boring since it doesn't impact the story itself. I understand why people would like it though. - - -What episode would you consider self-aware? I am interested in hearing your take on it.";False;False;;;;1610218087;;False;{};giohh2r;True;t3_ktvn5p;False;True;t1_gioh2um;/r/anime/comments/ktvn5p/wandering_witch_the_journey_of_elaina_review_a/giohh2r/;1610258312;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Parzival_32;;;[];;;;text;t2_3trhd2m8;False;False;[];;Ao Haru Ride its a really good shoujo;False;False;;;;1610218088;;False;{};giohh4r;False;t3_ktwnph;False;True;t3_ktwnph;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/giohh4r/;1610258312;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;You just made career of a Japanese reddit user lol;False;False;;;;1610218105;;False;{};giohifq;False;t3_ktunxs;False;False;t1_gioduxr;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giohifq/;1610258332;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;It goes beyond school rules like other comments are saying, I heard that if you have tattoos people would think you're from the yakuza and you're banned from hot springs and public bathhouses. Kinda stupid I know.;False;False;;;;1610218108;;False;{};giohimf;False;t3_ktunxs;False;False;t1_giob3t1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giohimf/;1610258336;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;">or with no misogyny - -Why do you assume rom-coms would normally have that in the first place?";False;False;;;;1610218111;;False;{};giohiv7;False;t3_ktwnph;False;True;t3_ktwnph;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/giohiv7/;1610258339;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ak_them;;;[];;;;text;t2_13cyqy;False;False;[];;2021 is going to be a good year;False;False;;;;1610218121;;False;{};giohjls;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giohjls/;1610258352;2;True;False;anime;t5_2qh22;;0;[]; -[];;;P1MPT0N1T3;;;[];;;;text;t2_l6sfo;False;False;[];;"Tonikawa is a fun romcom about a couple that marries after one episode (they barely met), and learn about a relationship together - -Horimiya which just had its first episode today is also pretty fun. I dont really know how it will turn out later on but I loved the first episode - -Monthly Girls Nozaki kun is another romcom I really liked. It parodies a lot of romcom tropes, so it is way more comedy than romance";False;False;;;;1610218134;;False;{};giohklq;False;t3_ktwnph;False;True;t3_ktwnph;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/giohklq/;1610258370;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610218228;;1610227453.0;{};giohrx4;False;t3_ktwnph;False;False;t3_ktwnph;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/giohrx4/;1610258498;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;">her home side and school side don't feel super different. - -I thought the same; - -At school she's highly popular and a great student, but at home... She's a responsible girl who takes care of the family, and a great big sister? - -Not really something she should be ashamed of, or need to hide. - -Well, I suppose she might be embarrassed on behalf of her mom/family, I guess.";False;False;;;;1610218307;;False;{};giohxyn;False;t3_ktunxs;False;False;t1_gio7xzy;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giohxyn/;1610258592;14;True;False;anime;t5_2qh22;;0;[]; -[];;;psihius;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/psihius;light;text;t2_ebp2e;False;False;[];;"Every single intro? :D -Also. The whole thing is not in sequence of events at all. It's all jumping around in time except the last 2 episodes.";False;False;;;;1610218308;;False;{};giohy30;False;t3_ktvn5p;False;True;t1_giohh2r;/r/anime/comments/ktvn5p/wandering_witch_the_journey_of_elaina_review_a/giohy30/;1610258594;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jmangan11;;;[];;;;text;t2_16o39l;False;False;[];;Kaguya;False;False;;;;1610218317;;False;{};giohyrh;False;t3_ktwnph;False;True;t3_ktwnph;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/giohyrh/;1610258604;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610218330;;False;{};giohzua;False;t3_ktunxs;False;True;t1_gio5fi9;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giohzua/;1610258621;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;I’m waiting for the episodes instead of the manga because I think the AOT anime is the best anime I’ve seen and I’d rather stay surprised each episode;False;False;;;;1610218367;;False;{};gioi2kd;False;t3_ktwjuc;False;False;t3_ktwjuc;/r/anime/comments/ktwjuc/should_i_read_the_manga_or_wait_for_the_episodes/gioi2kd/;1610258672;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;When I was reading Kaguya-sama I thought Iino was blonde until I saw a volume cover and it took me until season 2 aired to find out that Onodera was blonde not white-haired like I imagined.;False;False;;;;1610218382;;False;{};gioi3qh;False;t3_ktunxs;False;False;t1_giobryv;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioi3qh/;1610258692;5;True;False;anime;t5_2qh22;;0;[]; -[];;;LordUncleBob;;;[];;;;text;t2_ckedm;False;False;[];;"I'm definitely onboard for this one. Characters seem strong and the leads have great chemistry already. - -Not here for that creepy-ass teacher though.";False;False;;;;1610218415;;False;{};gioi6bi;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioi6bi/;1610258733;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SuperQuackDuck;;;[];;;;text;t2_17982h;False;False;[];;"YesyesyesuesyeduesdsYASSSS. -MOAR YUKI!";False;False;;;;1610218432;;False;{};gioi7ov;False;t3_ktunxs;False;False;t1_gio8821;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioi7ov/;1610258758;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;This first episode felt like a speedrun;False;False;;;;1610218445;;False;{};gioi8nk;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioi8nk/;1610258773;0;True;False;anime;t5_2qh22;;0;[]; -[];;;FamiliarTerritoryPod;;skip7;[];;;dark;text;t2_8iqi2gws;False;False;[];;"Even if you put it in a specific order, Elaina never has any actual character growth. She is the same in almost every episode, minus the first. I do actually like the idea of it jumping around, however when you dont take impacts from episodes you run into the problem where it doesn't really mean much. We do love ourselves some wonky time fuckery, but I think this show missed that mark. - -What do you mean intro? Like the OP or like the before OP parts?";False;False;;;;1610218455;;False;{};gioi9f3;True;t3_ktvn5p;False;False;t1_giohy30;/r/anime/comments/ktvn5p/wandering_witch_the_journey_of_elaina_review_a/gioi9f3/;1610258785;4;True;False;anime;t5_2qh22;;0;[]; -[];;;its_real_I_swear;;;[];;;;text;t2_emsbs;False;False;[];;He would be expelled if his secret got out, so it’s a pretty big deal.;False;False;;;;1610218480;;False;{};gioibct;False;t3_ktunxs;False;False;t1_giob3t1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioibct/;1610258813;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610218481;;False;{};gioibfn;False;t3_ktunxs;False;False;t1_giofqqq;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioibfn/;1610258814;7;True;False;anime;t5_2qh22;;0;[]; -[];;;thenewwwguy2;;;[];;;;text;t2_49p26v8j;False;False;[];;"the brand new horimiya might be up your alley, but there’s tons which fit your requests, like Tonikawa, Kaguya-Sama - -there’s two whole genres dedicated to demographics of women: shojo (usually for younger women, 13-19) and josei (ppl above that) - -You could probably watch things that fit that too";False;False;;;;1610218483;;False;{};gioiblf;False;t3_ktwnph;False;False;t3_ktwnph;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/gioiblf/;1610258817;7;True;False;anime;t5_2qh22;;0;[]; -[];;;NekoWafers;;;[];;;;text;t2_iau18;False;False;[];;Maybe Recovery of an [MMO Junkie](https://myanimelist.net/anime/36038/Net-juu_no_Susume/) or [Senryu Girl](https://myanimelist.net/anime/38787/Senryuu_Shoujo/).;False;False;;;;1610218510;;False;{};gioidmd;False;t3_ktwnph;False;False;t3_ktwnph;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/gioidmd/;1610258854;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Xinyanbestgirl;;;[];;;;text;t2_983nmdwn;False;False;[];;Thought so too, thanks;False;False;;;;1610218555;;False;{};gioih0g;False;t3_ktunxs;False;True;t1_giohcat;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioih0g/;1610258915;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Domia_abr_Wyrda;;;[];;;;text;t2_64sij927;False;False;[];;I wonder if they'll do chapter 37 fully ( ͡° ͜ʖ ͡°);False;False;;;;1610218566;;False;{};gioiht6;False;t3_ktunxs;False;False;t1_gioakuv;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioiht6/;1610258928;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;Reading your name makes me imagine a titan Denji. Did you read Chainsaw Man or did you make up your username from imagination?;False;False;;;;1610218576;;False;{};gioiijn;False;t3_ktwjuc;False;True;t1_gioi2kd;/r/anime/comments/ktwjuc/should_i_read_the_manga_or_wait_for_the_episodes/gioiijn/;1610258938;3;True;False;anime;t5_2qh22;;0;[]; -[];;;_BoogiepoP_;;;[];;;;text;t2_715obaw9;False;False;[];;I am digging the ED's artstyle so much lol.;False;False;;;;1610218588;;False;{};gioijha;False;t3_ktunxs;False;False;t1_gio86s1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioijha/;1610258953;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;At least wait until tomorrow after you watch the next episode;False;False;;;;1610218607;;False;{};gioikvh;False;t3_ktwjuc;False;True;t3_ktwjuc;/r/anime/comments/ktwjuc/should_i_read_the_manga_or_wait_for_the_episodes/gioikvh/;1610258975;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;Probably mistake romcom with harem or ecchi.;False;False;;;;1610218623;;False;{};gioim2g;False;t3_ktwnph;False;False;t1_giohiv7;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/gioim2g/;1610258994;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;People psychoanalyze it all the time, it’s just that the more popular an anime the more face value the discussions. But where are you getting Child soldiers from.;False;False;;;;1610218628;;False;{};gioimem;False;t3_ktwcb1;False;True;t3_ktwcb1;/r/anime/comments/ktwcb1/psychoanalyze_naruto_as_a_series/gioimem/;1610258999;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jessechu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jera_;light;text;t2_nzdad;False;False;[];;"I gotta say, the characters and interactions definitely felt more natural than you usually see in these shows. I thought the humor was well done as well, you had the usual tropey stuff but it was fun. - -Overall i think the episode was really well done, animation, characters and the COLORS looked good and the best word i would describe it with would be ""fresh"". I also really liked the white background with the color silhouette over hori and miyamura in a couple of scenes. - -The fast pace didn't bother me, it felt natural but fast and for me personally i didn't feel like they skipped over stuff and i wasn't confused at any point. Great start overall";False;False;;;;1610218674;;False;{};gioipwt;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioipwt/;1610259055;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;Oregairu;False;False;;;;1610218675;;False;{};gioipzg;False;t3_ktwnph;False;True;t3_ktwnph;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/gioipzg/;1610259056;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;reyxe;;;[];;;;text;t2_l05mm;False;False;[];;"Man I can't believe this is finally airing. - -This is my favorite romance manga and I'm loving every second of the anime. The music is great. The adaptation is definitely top notch too.";False;False;;;;1610218697;;False;{};gioirng;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioirng/;1610259082;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ExO_o;;;[];;;dark;text;t2_ndqxe;False;False;[];;can already feel this being my favorite of this season. all the characters are great so far, really looking forward to more EPs;False;False;;;;1610218784;;False;{};gioiyai;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioiyai/;1610259185;0;True;False;anime;t5_2qh22;;0;[]; -[];;;aarthbhardwaj;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Aarth_Bhardwaj;light;text;t2_5kdsi0g;False;False;[];;It was very good but felt kinda fast paced. Didn't think that Hori and Miyamura were close enough for that extreme reaction at the end. At least the other guy got rejected first episode. No love triangle bs.;False;False;;;;1610218812;;False;{};gioj0ht;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioj0ht/;1610259219;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ExO_o;;;[];;;dark;text;t2_ndqxe;False;False;[];;agree for all but the last part.;False;False;;;;1610218819;;False;{};gioj0zt;False;t3_ktunxs;False;True;t1_gio7xzy;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioj0zt/;1610259227;0;True;False;anime;t5_2qh22;;0;[]; -[];;;reyxe;;;[];;;;text;t2_l05mm;False;False;[];;"There's also Mushoku Tensei this year. - -Choosing a best girl has never been this difficult. There's also Re:Zero, Tate no Yuusha and SAO Progressive. - -HOLY MOLY.";False;False;;;;1610218820;;False;{};gioj13h;False;t3_ktunxs;False;False;t1_gio9i48;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioj13h/;1610259229;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Anni01;;;[];;;;text;t2_yc4lp;False;False;[];;i didnt follow for that long, but ive been reading this bad boy since 2015 and holly hell youre right, seeing this with proper animation brings tears to my eyes;False;False;;;;1610218826;;1610224425.0;{};gioj1l4;False;t3_ktunxs;False;True;t1_gio5w5t;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioj1l4/;1610259235;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610218850;;False;{};gioj3df;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioj3df/;1610259264;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AshleytheTaguel;;;[];;;;text;t2_teqty3s;False;False;[];;Good so far, I just hope they do away with, or at least tone down Hori's awkward biphobic moments.;False;False;;;;1610218919;;False;{};gioj8sc;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioj8sc/;1610259353;0;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"1. ReLIFE -2. The Girl Who Leapt Through Time -3. Wotakoi -4. Recovery of an MMO Junkie -5. Tsuki Ga Kirei -6. Kaguya-Sama: Love is War -7. Ao Haru Ride -8. Your Name -9. Kimi Ni Todoke -10. Fruits Basket - -If you could be more specific I could probably find one closer to what you want.";False;False;;;;1610218936;;False;{};gioja4t;False;t3_ktwnph;False;False;t3_ktwnph;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/gioja4t/;1610259373;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash175;;;[];;;;text;t2_31ejfc6n;False;False;[];;I agree with horimiya, try it out it’s really good;False;False;;;;1610218960;;False;{};giojbz6;False;t3_ktwnph;False;False;t1_gioiblf;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/giojbz6/;1610259402;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SYZekrom;;;[];;;;text;t2_i5y6z;False;False;[];;"[When you think he's a nerd but he's actually hot as fuck](https://cdn.discordapp.com/attachments/621713361390010378/797532884168736840/unknown.png) - -[HE'S ACTUALLY SO HOT WTF](https://cdn.discordapp.com/attachments/621713361390010378/797533562743160852/unknown.png) - -[WHY IS HE SO HOT](https://cdn.discordapp.com/attachments/621713361390010378/797534262152659034/unknown.png) - -[HOW IS THIS MAN THIS HOT STOP](https://cdn.discordapp.com/attachments/621713361390010378/797535901738729483/unknown.png) - -[Also this girl has a super cute voice](https://cdn.discordapp.com/attachments/621713361390010378/797536010036051998/unknown.png) - -[HOW -HOW -HOW](https://cdn.discordapp.com/attachments/621713361390010378/797536890860470302/unknown.png) - -Wait I actually forgot why does he have to wear a jacket? - -I thought he just wore his hair a certain way to hide his piercings - -Oh short sleeves - -[Sorry dude, clearly you have no choice in the matter and you have already become her boyfriend without noticing](https://cdn.discordapp.com/attachments/621713361390010378/797538972217114654/unknown.png)";False;False;;;;1610218983;;False;{};giojdr7;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giojdr7/;1610259429;40;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610218985;;False;{};giojdx0;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giojdx0/;1610259432;0;True;False;anime;t5_2qh22;;0;[]; -[];;;pokemongooutwithme;;;[];;;;text;t2_3d2dwjn2;False;False;[];;"This is the first time that I've read the manga before the anime released, so I was super excited for this to come out! They look just as pretty as they did in the manga, if not more. I loved the little colour splash that strikes her heart when she found out Miyamura was seen by Yuki. It seems a bit fast right now but I have faith in CloverWorks. - -Plus, Miyamura's scene of jumping over the fence was ^(hot)";False;False;;;;1610219012;;False;{};giojfu8;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giojfu8/;1610259462;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;"Possibly but even then still the same boat. Never bothered me or thought that way of any anime really. I mean ffs it’s a drawing lol - -Also there’s reverse harem. Should men feel there’s misandry in them?";False;False;;;;1610219012;;False;{};giojfv8;False;t3_ktwnph;False;True;t1_gioim2g;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/giojfv8/;1610259462;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;silverinferno3;;;[];;;;text;t2_8avuj;False;False;[];;"The only thing keeping me naming Hori my #1 Waifu of all time is that she's Miyamura's, no one else's. - -Best girl for sure, tho";False;False;;;;1610219044;;False;{};gioji7m;False;t3_ktunxs;False;False;t1_gio8onh;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioji7m/;1610259497;43;True;False;anime;t5_2qh22;;0;[]; -[];;;YoCodingJosh;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/CodingJosh;light;text;t2_4oan1u9a;False;True;[];;"This is so freaking wholesome. 10/10 - -We had some diabetes inducing wholesomeness with Tonikawa last season, and now this season with Horimiya. This makes me happy :)";False;False;;;;1610219044;;False;{};gioji98;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioji98/;1610259498;4;True;False;anime;t5_2qh22;;0;[]; -[];;;lilfishy_2B;;;[];;;;text;t2_16p3ao;False;False;[];;Mhm yes these are the vibes i have been waiting for, love horimiya's cast of characters so much;False;False;;;;1610219089;;False;{};giojltd;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giojltd/;1610259554;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"No. I am not saying I agree. - -I just think some harem and ecchi romcoms can be a bit tasteless. - ->Should men feel there’s misandry in them? - -Depends how it's handled tbh.";False;False;;;;1610219091;;False;{};giojlxa;False;t3_ktwnph;False;False;t1_giojfv8;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/giojlxa/;1610259555;6;True;False;anime;t5_2qh22;;0;[]; -[];;;lansmit;;;[];;;;text;t2_vl4if3i;False;False;[];;Here goes the sweetest anime of the season!;False;False;;;;1610219093;;False;{};giojm3b;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giojm3b/;1610259558;1;True;False;anime;t5_2qh22;;0;[]; -[];;;--kuma;;;[];;;;text;t2_5n0eio53;False;False;[];;Binge watch;False;False;;;;1610219096;;False;{};giojmax;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/giojmax/;1610259561;2;True;False;anime;t5_2qh22;;0;[]; -[];;;silverinferno3;;;[];;;;text;t2_8avuj;False;False;[];;She's been best girl since '07!;False;False;;;;1610219111;;False;{};giojni5;False;t3_ktunxs;False;False;t1_gio9i48;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giojni5/;1610259579;21;True;False;anime;t5_2qh22;;0;[]; -[];;;yoonisverse;;;[];;;;text;t2_873hfwc3;False;False;[];;The leaf and other villages uses children to strength their military. It was glossed over during the Zabuza arc and Sai’s backstory.;False;False;;;;1610219209;;False;{};giojuzr;False;t3_ktwcb1;False;True;t1_gioimem;/r/anime/comments/ktwcb1/psychoanalyze_naruto_as_a_series/giojuzr/;1610259695;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ShogokiMix;;;[];;;;text;t2_96jkqorr;False;False;[];;Very well said;False;False;;;;1610219282;;False;{};giok0io;False;t3_ktunxs;False;False;t1_gio99fj;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giok0io/;1610259781;15;True;False;anime;t5_2qh22;;0;[]; -[];;;KiwiBennydudez;;MAL;[];;https://myanimelist.net/animelist/KiwiBen;dark;text;t2_889a6;False;False;[];;"Sorry, your submission has been removed. - -- This looks like it's - a single image. - This is a form of restricted content that isn't allowed as a full post on the sub. You might consider posting about this sort of thing in the [weekly Casual Discussion Fridays megathread](https://www.reddit.com/r/anime/search?q=title%3A%22Casual+Discussion+Fridays%22+subreddit%3Aanime+author%3AAnimeMod&restrict_sr=on&sort=new&t=week) if it applies. See [our rules page](https://www.reddit.com/r/anime/wiki/rules#wiki_restricted_content) for a full list of restricted content categories. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610219330;moderator;False;{};giok45r;False;t3_ktwlhp;False;True;t3_ktwlhp;/r/anime/comments/ktwlhp/the_cutest_pout_the_world_has_ever_seen/giok45r/;1610259837;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NthN_6699;;;[];;;;text;t2_8jnu0f9j;False;False;[];;Damn I had pretty high expectations for this and it delivered, the animation, the art style, and the va's are almost all perfect. It's just that Ishikawa's voice is too deep imo.;False;False;;;;1610219345;;False;{};giok5bp;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giok5bp/;1610259855;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Elaina is just bootleg kino no tabi, it badly tries to imitate kino and fails miserably, the story telling, the themes, the execution all were pretty badly done, for most of the series it played out like a sol. Only the 3rd ep (bottle happiness episode) was something worth mentioning, other than that it varies from mediocre to plain meh, some EPs like the lier country felt just plain stupid. If you liked Elaina that just means you haven't seen the greater masterpiece called kino;False;False;;;;1610219554;;False;{};giokl96;False;t3_ktvn5p;False;True;t3_ktvn5p;/r/anime/comments/ktvn5p/wandering_witch_the_journey_of_elaina_review_a/giokl96/;1610260099;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HereticalAegis;;;[];;;;text;t2_6xeubalv;False;False;[];;Wow, this is way above expectation, even after all the hype it's gotten. The character designs are great, the dialogue is excellent, the characters interact well with each other, I can see why people have been hyping it up so much. Miyamura is especially strong. I can't remember the last time I saw an almost real-life believable character like him. And he's such a good guy. I'm really excited for this one.;False;False;;;;1610219605;;False;{};giokp1a;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giokp1a/;1610260159;13;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"Think East Asia has much more lax restrictions now than atleast South Asia. Over here all of us even in highschool (loosens a lot after Grade 10) have really annoying dresscodes. - - -Girls having to tie their hair in a specific way with a specific colour ribbon, skirts not above knee dunno much else - - -Boys having to not go past a few inches (like 3/4 inches if you're extremely lucky) of hair, haircuts can't be unevenish (basically side hair should be similar to the length of the hair on top), no hair colouring (even black to dark brown), wear the school belt even if it's covered, properly fitting your pants to make them not look baggy as well. You don't cut your hair after a few warnings? Boo hoo you're getting a shit haircut at school. - - -Accessories aren't even worth thinking about. - - - -And I'm studying in what would be a quite progressive school in a major city. - - - -The social stigma is still horrible though. Short hair and perfectly dressed? Great student. Hair which could barely reach your forehead and a not tucked in shirt?? A delinquent. It's like being in a fucking cartoon with how basic the tropes are - - - -Heavy physical punishments and just weird ass punishments are still a thing despite being outlawed iirc (unsure about this one) even in urban areas. Like a friend I had who moved to another school in Grade 8 was told to lick the floor in front of the morning assembly after he brought food from restaurants for hostel students or something like running away from hostel to buy food that isn't shit???? (Can't 100% remember the full story but the punishment was that). Heard he left the school after refusing. The only way a school/teacher is getting in trouble is if the student ends up in hospital, someone records a video or the parents give a big enough shit to report it - - -Like stuff reads like r/thathappened posts";False;False;;;;1610219640;;False;{};giokrtq;False;t3_ktunxs;False;False;t1_giofc4f;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giokrtq/;1610260201;6;True;False;anime;t5_2qh22;;0;[]; -[];;;lansmit;;;[];;;;text;t2_vl4if3i;False;False;[];;And the girl of the season, you saw it here first;False;False;;;;1610219649;;False;{};giokshi;False;t3_ktunxs;False;True;t1_giojm3b;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giokshi/;1610260211;1;True;False;anime;t5_2qh22;;0;[]; -[];;;silverinferno3;;;[];;;;text;t2_8avuj;False;False;[];;[Fear the fist of Hori!](https://i.imgur.com/oCmeGJz.png);False;False;;;;1610219661;;False;{};gioktej;False;t3_ktunxs;False;False;t1_gio6n36;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioktej/;1610260225;18;True;False;anime;t5_2qh22;;0;[]; -[];;;lansmit;;;[];;;;text;t2_vl4if3i;False;False;[];;Anime gods, thanks for the another anime with (kind of) established couple since the beginning;False;False;;;;1610219759;;False;{};giol0v2;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giol0v2/;1610260342;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"Ive been to japan and yeah they are pretty strict with tattoos in some areas. - -When we went to a hotspring we had a girl showing us around who had to find one that would allow people with tattoos in. Funny enough people in Tokyo tended to avoid me, but people in Kyoto and Gunma were super friendly to me. I remember walking past an older couple at a shop in Gunma and the old lady pulling me aside and giving me some tea and her husband was looking at my tattoos. Really nice since usually older people in japan are supposed to be more phobic of tattoos i had heard. I think in general they just wernt sure what to make of this wierd looking tall skinny ginger guy. I def stood out in the crowds haha.";False;False;;;;1610219789;;False;{};giol30y;False;t3_ktunxs;False;False;t1_giohimf;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giol30y/;1610260375;13;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"Oh i get the cultural difference, but on a personal level i didnt see it as anything special. So it changed my personal interpretation of the story. Where as maybe if i lived in a more strict country i might see it differently. - -Your personal situation greatly affects how you interpret stuff.";False;False;;;;1610219939;;False;{};giolen6;False;t3_ktunxs;False;True;t1_gioftq3;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giolen6/;1610260553;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;s111021;;;[];;;;text;t2_z82u1f6;False;False;[];;"Kinda sad that the first episode's so fast paced, with insufficient time to, say, develop the chemistry between Miyamura and Hori as the manga did. Really enjoyed the slow, more relaxed pace of the manga than in this first episode. - -Also there was something funky about the directing. There seemed to be a lot of needless panning, and I did not find the blue/red background impactful or helpful to the storytelling and/or exploring character traits AT ALL. It seemed like it was there just to be there, and that sort of threw me off (especially as those scenes were supposed to carry more weight and emotion). The only thing I think that was done really well is the chibi looks of Miyamura and Ishikawa especially, which really suited the comedic dialogue well.";False;False;;;;1610219948;;False;{};giolfap;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giolfap/;1610260563;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;Yep my username is a mix of chainsaw man and attack on Titan lol;False;False;;;;1610220005;;False;{};gioljn6;False;t3_ktwjuc;False;False;t1_gioiijn;/r/anime/comments/ktwjuc/should_i_read_the_manga_or_wait_for_the_episodes/gioljn6/;1610260630;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Dinoswarleaf;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Dinoswarleaf;light;text;t2_eo4sf;False;False;[];;TRUE;False;False;;;;1610220065;;False;{};giolo49;False;t3_ktw1my;False;False;t3_ktw1my;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/giolo49/;1610260701;5;True;False;anime;t5_2qh22;;0;[]; -[];;;imaforgetthis;;;[];;;;text;t2_2d7gcwde;False;False;[];;">Pretty crazy that this is finally getting an anime after so long. - -I always wonder what sequence of events leads to this type of scenario. Or when an anime gets another season **many** years later even though it had plenty of source material to adapt, was popular, and well-received.";False;False;;;;1610220108;;False;{};giolrdo;False;t3_ktunxs;False;False;t1_gio7xzy;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giolrdo/;1610260754;30;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;What about Sota being silver haired? That was out of nowhere lol;False;False;;;;1610220109;;False;{};giolrer;False;t3_ktunxs;False;False;t1_giobryv;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giolrer/;1610260757;52;True;False;anime;t5_2qh22;;0;[]; -[];;;danguelo;;;[];;;;text;t2_14e059;False;False;[];;I think so, maybe s/he is thinking in ecchi harem anime, which I guess many women could feel very uncomfortable watching, I'd be uncomfortable watching dudes falling half naked placing their genitals in the face of someone.;False;False;;;;1610220189;;1610220280.0;{};giolxtj;False;t3_ktwnph;False;False;t1_gioim2g;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/giolxtj/;1610260866;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;"Because they do. It's not really an assumption if you have watched some of them. I mean have you watched... basically any harem? - -Most female characters in anime romcoms are either waifu bait or used as tools for the make mc development with no real agency of their own. - -Also anime is just full of sexist remarks and oversexualization of women, which is not appealing to many women.";False;False;;;;1610220207;;1610220494.0;{};giolz7b;False;t3_ktwnph;False;True;t1_giohiv7;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/giolz7b/;1610260889;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ihateanimemes;;;[];;;;text;t2_7llcpnr6;False;False;[];;I live in India and here things are pretty relaxed, I mean school rules and restrictions aren't even strict and many teachers don't even care what many students are even doing. If you break any kind of rule you won't be punished(as teachers only care about your grades once you enter into high school) and most probably you'll be given a note or letter which should be signed by your parents.;False;False;;;;1610220288;;False;{};giom5il;False;t3_ktunxs;False;False;t1_giokrtq;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giom5il/;1610260988;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;"My favorites are probably Horimiya (airing right now), Kaguya-sama and Nozaki kun. You are probably going to find some problematic aspects if you look for it but these 3 have all strong female characters with their own arcs that aren't just there as waifu bait. - -Well Nozaki kun doesn't really have arcs since it's pure comedy but hey it's hilarious.";False;False;;;;1610220344;;False;{};giom9y9;False;t3_ktwnph;False;True;t3_ktwnph;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/giom9y9/;1610261057;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AgentPossum;;;[];;;;text;t2_69ro4shs;False;False;[];;I need get used to the hair colors, but for all the other things I think it's a pretty good start, the voice of Hori Is exactly how I imagined it;False;False;;;;1610220387;;False;{};giomd8m;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giomd8m/;1610261110;0;True;False;anime;t5_2qh22;;0;[]; -[];;;furyofzion;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/furyofzion;light;text;t2_n5dwu;False;False;[];;"I usually dont wait on shows for binging unless: - --its shounen (I really prefer to binge shounen, it just feels better paced for binging then weekly watching for me) - --I think its kinda mediocre/trashy/guilty pleasure type of watch, just something to watch later down the line if you have nothing better queued up.";False;False;;;;1610220389;;False;{};giomdd6;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/giomdd6/;1610261112;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Meemeli;;;[];;;;text;t2_2o1rogl;False;False;[];;"Toradora! - -Both the source material and the anime adaptation's screenplay were written by women. - -Edit: ""Why are you booing me, I'm right""";False;False;;;;1610220405;;1610224851.0;{};giomekq;False;t3_ktwnph;False;True;t3_ktwnph;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/giomekq/;1610261132;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Sarellion;;;[];;;;text;t2_100ib9;False;False;[];;Hori's secret? Yeah, only a bunch of silly teenagers would make fun of... ah nevermind.;False;False;;;;1610220406;;False;{};giomeov;False;t3_ktunxs;False;False;t1_gio7xzy;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giomeov/;1610261133;50;True;False;anime;t5_2qh22;;0;[]; -[];;;tiour;;;[];;;;text;t2_5ktwaudn;False;False;[];;Wow, fastest 20 minutes of my life! I really hope this one isn’t slept on.;False;False;;;;1610220425;;False;{};giomg62;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giomg62/;1610261162;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Jrkid100;;;[];;;;text;t2_1dh6z2tq;False;False;[];;Loved it finally an adaptation the only thing that I didn't like was I think they skipped Miyamura helping Souta part but maybe next episode who knows;False;False;;;;1610220432;;False;{};giomgmb;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giomgmb/;1610261169;0;True;False;anime;t5_2qh22;;0;[]; -[];;;PacoTaco321;;;[];;;;text;t2_8yxkb;False;False;[];;Yeah, tattoos being associated with Yakuza for a long time will do that.;False;False;;;;1610220448;;False;{};giomhsr;False;t3_ktunxs;False;True;t1_giocevp;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giomhsr/;1610261194;1;True;False;anime;t5_2qh22;;0;[]; -[];;;icantthinkofgudname;;;[];;;;text;t2_3w31akl9;False;False;[];;It was great but i kinda wanted to see the little fight between Souta and Yuuna;False;False;;;;1610220478;;False;{};giomjz9;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giomjz9/;1610261229;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;I just finished Chainsaw Man yesterday, it was awesome, can't wait for part 2;False;False;;;;1610220482;;False;{};giomk8a;False;t3_ktwjuc;False;False;t1_gioljn6;/r/anime/comments/ktwjuc/should_i_read_the_manga_or_wait_for_the_episodes/giomk8a/;1610261233;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PacoTaco321;;;[];;;;text;t2_8yxkb;False;False;[];;I enjoyed this. Things are moving along quickly, but I can't say that it felt like a bad thing to be honest. It's a nice juxtaposition to romance animes that drag thing along forever.;False;False;;;;1610220571;;False;{};giomr2h;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giomr2h/;1610261349;0;True;False;anime;t5_2qh22;;0;[]; -[];;;dadnaya;;MAL;[];;https://myanimelist.net/profile/dadnaya;dark;text;t2_cubnc;False;False;[];;Considering the manga didn't show too much, I won't expect here to see much either :P;False;False;;;;1610220572;;False;{};giomr6n;False;t3_ktunxs;False;False;t1_gioiht6;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giomr6n/;1610261351;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610220580;;False;{};giomrto;False;t3_ktunxs;False;True;t1_gio7xzy;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giomrto/;1610261363;1;True;False;anime;t5_2qh22;;0;[]; -[];;;joshyjoshj;;;[];;;;text;t2_3ulasaal;False;False;[];;Favorite OP so far this season;False;False;;;;1610220581;;False;{};giomrwz;False;t3_ktunxs;False;True;t1_giofwro;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giomrwz/;1610261365;1;True;False;anime;t5_2qh22;;0;[]; -[];;;juggowuggo;;;[];;;;text;t2_7ns2a3sg;False;False;[];;Idk I'm more of a weekly person. It honestly depends. Sometimes i can binge a whole season and sometimes i can't. It's like an on and off switch with me. Depends on my mood and how eager i am to watch something.;False;False;;;;1610220629;;False;{};giomvqk;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/giomvqk/;1610261422;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jayay112;;MAL;[];;https://myanimelist.net/profile/Jayay;dark;text;t2_kihcw;False;False;[];;Wotakoi is a really cool and sweet one! Tsurezure children is also very fun;False;False;;;;1610220655;;False;{};giomxuz;False;t3_ktwnph;False;True;t3_ktwnph;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/giomxuz/;1610261469;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;">Most female characters in anime romcoms are either waifu bait or used as tools for the make mc development with no real agency of their own. - -Spoken like someone who hasn't watched any harems. It's usually the MC's character that stays constant and helps the girls' character development.";False;False;;;;1610220749;;False;{};gion550;False;t3_ktwnph;False;True;t1_giolz7b;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/gion550/;1610261582;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610220886;;False;{};gionfz4;False;t3_ktunxs;False;True;t1_gioa2sn;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gionfz4/;1610261743;3;True;False;anime;t5_2qh22;;0;[]; -[];;;happyrocks;;;[];;;;text;t2_klac6;False;False;[];;"Depends a bit on the anime. I prefer to binge AoT, because the episodes feel so dang short, but at the point in my life I have less time to do that (mom+work full time+exercise all take priority) so the best I can do is about an hour of screen time before getting ready for bed. But it’s also nice to have that week to really stew over the details of the last episode before the next one airs. And I want to know what happens far too much to wait until it’s all done to watch it. (One day I will actually get into reading manga...) - -ReZero I have to wait until it’s all released and binge, though (at a rate of 2-3 episodes a night). My husband and I don’t really like the main character, but we enjoy the story, so we like to move through the happy parts fast and get back to the dark parts we are excited about. We’d probably lose interest if it were week to week.";False;False;;;;1610220985;;False;{};gionnjl;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gionnjl/;1610261856;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"[Trendy gyaru](https://i.imgur.com/RaVDqrT.jpg) outside, [frugal homemaker](https://i.imgur.com/k8VyTt7.jpg) inside. That gap moe. - -[](#araara)";False;False;;;;1610221027;;False;{};gionqpl;False;t3_ktunxs;False;False;t1_gio8gjt;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gionqpl/;1610261905;141;True;False;anime;t5_2qh22;;0;[]; -[];;;throwawaythumbsup;;;[];;;;text;t2_10omoh;False;False;[];;omg i love this show what the heck i had no idea this was in the lineup - this is going to give all the toradoras and slice of life animes out there a run for their money;False;False;;;;1610221036;;False;{};gionrcf;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gionrcf/;1610261913;0;True;False;anime;t5_2qh22;;0;[]; -[];;;danguelo;;;[];;;;text;t2_14e059;False;False;[];;Harem or romcoms? How tf do you mix them as the same?;False;False;;;;1610221085;;False;{};gionuwu;False;t3_ktwnph;False;True;t1_giolz7b;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/gionuwu/;1610261967;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"I'm in Nepal and it really depends. If you're attending a government school (often considered bad and usually is pretty poor education wise outside of a handful) the teachers give no shits afaik. - - -But if you're going to a 'private' school (Pre-Uni education is just so big of a business here and it's really profitable for them), rules are gonna be tighter. Most families outside of those who aren't straight up struggling are sending their kids to these schools so schools want to build up a name for themselves by having 'presentable' and 'good' students to market themselves better. Then you have the Grade 10 finals where you're expected to grind by everyone. (But hey atleast people are slowly paying more attention to the true end of school exams in Grade 12 now) - - -Trying to gain brand recognition is basically what's turning schools into factories trying to pump out the 'ideal' student";False;False;;;;1610221127;;False;{};giony38;False;t3_ktunxs;False;False;t1_giom5il;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giony38/;1610262017;4;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;"> but ive been reading this bad boy since 2025 - -Are you from the future?";False;False;;;;1610221170;;False;{};gioo1aw;False;t3_ktunxs;False;True;t1_gioj1l4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioo1aw/;1610262077;2;True;False;anime;t5_2qh22;;0;[]; -[];;;vlntslnt;;;[];;;;text;t2_qsmu4;False;False;[];;I can't believe I'm watching a slice of life romance anime where I'm getting episode 11 content on episode 1, what the fuck is going on here;False;False;;;;1610221174;;False;{};gioo1m0;False;t3_ktunxs;False;False;t1_gio7qaw;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioo1m0/;1610262082;16;True;False;anime;t5_2qh22;;0;[]; -[];;;vlntslnt;;;[];;;;text;t2_qsmu4;False;False;[];;my teeth are rotting out of my skull rn;False;False;;;;1610221239;;False;{};gioo6ja;False;t3_ktunxs;False;True;t1_gio81m8;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioo6ja/;1610262162;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Ore Monogatari (Not part of the Monogatari Series) - -Toradora - -Akagami no Shirayuki-hime - -If you could explain why you think some aren't suitable for females, that'd be helpful.";False;False;;;;1610221241;;False;{};gioo6p1;False;t3_ktwnph;False;True;t3_ktwnph;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/gioo6p1/;1610262164;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"You could say Hori has [*home advantage*](https://i.imgur.com/eYdiDP7.jpg) - -[](#smugpoint)";False;False;;;;1610221278;;False;{};gioo9e3;False;t3_ktunxs;False;False;t1_giodrvt;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioo9e3/;1610262207;49;True;False;anime;t5_2qh22;;0;[]; -[];;;markevans7799;;;[];;;;text;t2_4pxhvc5g;False;False;[];;Is this the first season? Can I just go and watch this show? I don't know anything about this.;False;False;;;;1610221310;;False;{};giooboe;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giooboe/;1610262243;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610221311;;1610227416.0;{};gioobsg;False;t3_ktwnph;False;True;t1_giolxtj;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/gioobsg/;1610262245;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Ore Monogatari (Not part of the Monogatari Series) - -Gekkan Shoujo Nozaki-kun - -I Can't Understand What My Husband is Saying";False;False;;;;1610221324;;False;{};gioocq9;False;t3_ktvv43;False;True;t3_ktvv43;/r/anime/comments/ktvv43/looking_for_anime_like_say_i_love_you_and_kimi_ni/gioocq9/;1610262260;2;True;False;anime;t5_2qh22;;0;[]; -[];;;strappingyoungdad;;;[];;;;text;t2_4ljji30j;False;False;[];;"If you are not ok with the stronger female stereotype characters that are treated as ""beasts to be tamed and conquered"", then there's barely any. That or the females are submissive. - -I guess there's Chihayafuru, or Cells at Work.";False;False;;;;1610221357;;False;{};gioof3e;False;t3_ktwnph;False;True;t3_ktwnph;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/gioof3e/;1610262298;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;ImCarpet;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ImCarpet;light;text;t2_78fz4fw;False;False;[];;As someone who owns 10 volumes of the manga, you could say im so excited this is finally happening!!;False;False;;;;1610221399;;False;{};giooi42;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giooi42/;1610262346;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rigoku;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Elitar;light;text;t2_2j07de1;False;False;[];;Seto no Hanayome - this is actually misandry (mostly towards MC, but still) anime, but fits;False;False;;;;1610221409;;False;{};giooium;False;t3_ktwnph;False;True;t3_ktwnph;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/giooium/;1610262358;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;[Toru lives in S(pain)](http://imgur.com/gallery/ZQ8wZxQ);False;False;;;;1610221426;;False;{};giook4p;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giook4p/;1610262378;2;True;False;anime;t5_2qh22;;0;[]; -[];;;StopUsingThisSite;;;[];;;;text;t2_74ep8963;False;False;[];;"Hmm makes me tempted to watch it then. - -For some reason I usually can't stand watching shoujo anime, but I love binging 10+ volumes of a manga in a weekend (Horimiya being no exception) - so I wonder if it's just a matter of pacing.";False;False;;;;1610221446;;False;{};gioolkq;False;t3_ktunxs;False;True;t1_gioe155;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioolkq/;1610262400;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Servicename123;;;[];;;;text;t2_7rvapcum;False;False;[];;binge;False;False;;;;1610221451;;False;{};gioolzm;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gioolzm/;1610262407;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;"Don't forget not only are tattoos very stigmatised in Japan, they are heavily looked down on by schools and even worse he'd have had them done while being underage. Especially as it seems like drinking, 20 is the age for tattoos. - -He'd not only be in trouble with the school but the police as well, his secret is a pretty big deal.";False;False;;;;1610221471;;False;{};gioonhg;False;t3_ktunxs;False;False;t1_giob3t1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioonhg/;1610262432;16;True;False;anime;t5_2qh22;;0;[]; -[];;;loomnoo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/loomnoo;light;text;t2_5ev8pklg;False;False;[];;People that complain about anime being generic need to watch Geidai stuff. I wish MAL would list it too but they only count professional work.;False;False;;;;1610221537;;False;{};gioosef;False;t3_ktv20h;False;False;t3_ktv20h;/r/anime/comments/ktv20h/student_films_gedai_animationtokyo_university_of/gioosef/;1610262512;4;True;False;anime;t5_2qh22;;0;[];True -[];;;ElixirAstra;;;[];;;;text;t2_9pc6c4gh;False;False;[];;I watched the OVA before and it feels really good watching this anime with better art style. I like the friendship of toru and miyamura because in real life they would potentially hate each other.;False;False;;;;1610221546;;False;{};gioot3o;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioot3o/;1610262523;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610221557;;False;{};giootw5;False;t3_ktunxs;False;True;t1_giony38;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giootw5/;1610262535;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ElixirAstra;;;[];;;;text;t2_9pc6c4gh;False;False;[];;I wasn't expecting Miyamura's tattoo to be changed, but damn it looks even better.;False;False;;;;1610221582;;False;{};gioovq0;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioovq0/;1610262563;0;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;It's prohibited by law, he's at best 17 at this point and it's illegal in Japan to be tattoo'd under the age of 20 from cursory reading but might be 18 in some prefectures. Either way it's illegal.;False;False;;;;1610221591;;False;{};gioowfy;False;t3_ktunxs;False;True;t1_gioc3ng;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioowfy/;1610262574;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Eternal_Phantasm;;;[];;;;text;t2_nu0s3;False;False;[];;" Ponytails are really versatile. First, you can have ponytail girls untie them and suddenly become beautiful, or have girls with a ponytail flashing those cute grins, or have girls tying the protagonist's hair making a ponytail on like, ""Haha, you got a ponytail!"" That's just way too cute! Also, boys with ponytail! I really like when their ponytail have that wild look, and it's amazing how it can look really cool or just be a joke. I really like how it can fulfill all those abstract needs. Being able to switch up the styles and form of ponytails based on your mood is a lot of fun too! It's actually so much fun! You have those split ponytails, or the thick ponytails, everything! It's like you're enjoying all these kinds of ponytails at a buffet. I really want Yuki to try have one or Miyamura to try have one with his piercings. We really need ponytails to become a thing in Horimiya and start selling them for Horimiya Merch. Don't. You. Think. We. Really. Need. To. Officially. Give. Everyone. Ponytails?";False;False;;;;1610221626;;False;{};giooyws;False;t3_ktunxs;False;False;t1_giobbpq;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giooyws/;1610262610;39;True;False;anime;t5_2qh22;;0;[]; -[];;;Jeansybaby;;;[];;;;text;t2_bumny;False;False;[];;This looks like it's going to be a nice one;False;False;;;;1610221646;;False;{};giop0d6;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giop0d6/;1610262633;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;Yes, there is an OVA but I am pretty sure it is a completely separate thing.;False;False;;;;1610221685;;1610223807.0;{};giop3ec;False;t3_ktunxs;False;False;t1_giooboe;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giop3ec/;1610262679;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Minocchio;;;[];;;;text;t2_85xlsedm;False;False;[];;Will it be on Crunchyroll?;False;False;;;;1610221697;;False;{};giop49r;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giop49r/;1610262692;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Darts5002;;;[];;;;text;t2_7x32pts;False;False;[];;a lot of theories are face value because naruto is pretty face value;False;False;;;;1610221704;;False;{};giop4s6;False;t3_ktwcb1;False;False;t3_ktwcb1;/r/anime/comments/ktwcb1/psychoanalyze_naruto_as_a_series/giop4s6/;1610262701;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;"Even if they're drawings, they represent people (realistic or not) - otherwise it wouldn't make sense to relate to or be so invested in characters if ""they're not real."" - -Male characters in shoujo and reverse harem are rarely put in positions where they're uncomfortable due to being sexualized, they're usually the ones in control.";False;False;;;;1610221705;;False;{};giop4xf;False;t3_ktwnph;False;True;t1_giojfv8;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/giop4xf/;1610262703;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DrJWilson;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/drjwilson/animelist;light;text;t2_6zykq;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610221786;moderator;False;{};giopaxa;False;t3_ktunxs;False;True;t1_giomrto;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giopaxa/;1610262791;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;Just checked what was covered this episode. Hope the remainder of chapter 2 gets covered eventually. Sota is just too best boy.;False;False;;;;1610221800;;False;{};giopbyh;False;t3_ktunxs;False;True;t1_gio53qi;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giopbyh/;1610262807;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ttredfm;;;[];;;;text;t2_9d785juw;False;False;[];;I don't read manga slot but if u want to know what happens I'll wait till the ep then read the manga to know how the characters sound;False;False;;;;1610221831;;False;{};giope9w;False;t3_ktwjuc;False;True;t3_ktwjuc;/r/anime/comments/ktwjuc/should_i_read_the_manga_or_wait_for_the_episodes/giope9w/;1610262844;1;True;False;anime;t5_2qh22;;0;[]; -[];;;markevans7799;;;[];;;;text;t2_4pxhvc5g;False;False;[];;Ohhk. Thankyou;False;False;;;;1610221860;;False;{};giopgek;False;t3_ktunxs;False;False;t1_giop3ec;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giopgek/;1610262878;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"[I remember someone from /r/anime's Discord](https://i.imgur.com/xf7ggPK.png) who has been wishing for a Horimiya adaptation since 2017. Apparently, his internet is down today. [F for our fallen comrade.](https://i.imgur.com/nqXcxLR.png) - -[](#shatteredsaten)";False;False;;;;1610221886;;False;{};giopi8y;False;t3_ktunxs;False;False;t1_gio6rje;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giopi8y/;1610262905;53;True;False;anime;t5_2qh22;;0;[]; -[];;;cojoB_;;;[];;;;text;t2_27b35u6d;False;False;[];;Bought the manga, didn't read it cause they announced this shortly after. Glad I didn't. Miyarumas character design is sick though;False;False;;;;1610221890;;False;{};giopihe;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giopihe/;1610262909;0;True;False;anime;t5_2qh22;;0;[]; -[];;;jk3sd;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Jk3sd?;light;text;t2_6e7jktbe;False;False;[];;I feel like I watched three episodes and I’m here for it;False;False;;;;1610222025;;False;{};giops3o;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giops3o/;1610263064;0;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;I mean I had a tattoo when I was 15 so I definitely relate to his situation, but whereas in the UK underage tattoos are just looked at as well that was dumb by the law, in Japan its serious fucking business.;False;False;;;;1610222051;;False;{};gioptz7;False;t3_ktunxs;False;False;t1_giolen6;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioptz7/;1610263091;4;True;False;anime;t5_2qh22;;0;[]; -[];;;un6952db;;MAL;[];;https://myanimelist.net/animelist/asimovitsch;dark;text;t2_mh7vo;False;False;[];;Ah yes, the Kurisu avoidance clause of the Waifuism penal code. Applies here as well.;False;False;;;;1610222093;;False;{};giopx0h;False;t3_ktunxs;False;False;t1_gioji7m;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giopx0h/;1610263137;35;True;False;anime;t5_2qh22;;0;[]; -[];;;Fluffy9345;;;[];;;;text;t2_2od0d93r;False;False;[];;I read somewhere the anime for Ore Monogatari is out of order based on the manga. Is that true?;False;False;;;;1610222096;;False;{};giopx6q;True;t3_ktvv43;False;True;t1_gioocq9;/r/anime/comments/ktvv43/looking_for_anime_like_say_i_love_you_and_kimi_ni/giopx6q/;1610263139;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blitzen001;;;[];;;;text;t2_3w1yi46g;False;False;[];;Egg time boys!!!;False;False;;;;1610222142;;False;{};gioq0j1;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioq0j1/;1610263189;0;True;False;anime;t5_2qh22;;0;[]; -[];;;iamuarpapa;;;[];;;;text;t2_kt248aj;False;False;[];;Already like it a million times more than rent a girlfriend;False;False;;;;1610222191;;False;{};gioq474;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioq474/;1610263244;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mekerpan;;;[];;;;text;t2_5l9hwt9e;False;False;[];;I discovered this through the OVAs, then binge-read the manga. This new series is quite wonderful, very much catching the overall feel of the manga. Character designs are great -- and so is the voice acting. Just as I expected Adachi and Shimamura to be my favorite last season -- I expected Horimiya to be my favorite this season. My expectation was fulfilled for last season -- and it looks likely to be fulfilled again duiring this one.;False;False;;;;1610222198;;False;{};gioq4pt;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioq4pt/;1610263251;1;True;False;anime;t5_2qh22;;0;[]; -[];;;panosk1304;;;[];;;;text;t2_19qvhtzg;False;False;[];;I found it really good and with a nice passing since unfortunately is gonna be small. They didn't skip stuff that were even memorable i think and seeing all the good moments be really nice animated and exactly like the manha i found it be really good.;False;False;;;;1610222253;;False;{};gioq8ra;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioq8ra/;1610263310;0;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;">Won't happy again. - -r/suddenlydepressed";False;False;;;;1610222281;;False;{};gioqarf;False;t3_ktunxs;False;True;t1_giogbic;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioqarf/;1610263339;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SoftBaldHead;;;[];;;;text;t2_6ne4iy5c;False;False;[];;After watching Tomozaki yesterday this feels soooo good. Likable protagonists, sweet and very funny as well. This is what you want in a romcom;False;False;;;;1610222320;;False;{};gioqdq0;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioqdq0/;1610263384;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;But they still aren’t real and you shouldn’t be that invested in a fictional piece that you’re actually bothered by it. That’s not healthy to any degree.;False;False;;;;1610222369;;False;{};gioqhdg;False;t3_ktwnph;False;True;t1_giop4xf;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/gioqhdg/;1610263439;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;KurisuMakise-;;;[];;;;text;t2_2dbw81ht;False;False;[];;The OP's visuals are incredible, loving the style. Song is also 🔥.;False;False;;;;1610222382;;False;{};gioqiee;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioqiee/;1610263455;0;True;False;anime;t5_2qh22;;0;[]; -[];;;YUM0N;;;[];;;;text;t2_diwhw;False;False;[];;:);False;False;;;;1610222449;;False;{};gioqnfh;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioqnfh/;1610263528;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;ANINETEEN;;;[];;;;text;t2_4g33jvxm;False;False;[];;Wait what, why am I only finding out now that this has an anime 😮;False;False;;;;1610222468;;False;{};gioqos7;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioqos7/;1610263547;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610222489;;False;{};gioqq9m;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioqq9m/;1610263567;0;True;False;anime;t5_2qh22;;0;[]; -[];;;k4r6000;;;[];;;;text;t2_3q0qar7q;False;False;[];;O Maidens In Your Savage Season. Technically it is a shounen aimed at boys, but it is about female adolescence and is written and directed by a woman, so I definitely think it works for a female audience. It is one of my favourite rom-coms. It does have misogyny, but only from the antagonists who you aren't meant to agree with. The show itself is far from misogynic. Quite the opposite.;False;False;;;;1610222526;;1610222766.0;{};gioqsye;False;t3_ktwnph;False;True;t3_ktwnph;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/gioqsye/;1610263607;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nikifarrahi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_88xajtmp;False;False;[];;The visuals for the intro were surprising really good;False;False;;;;1610222560;;False;{};gioqvdb;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioqvdb/;1610263644;2;True;False;anime;t5_2qh22;;0;[]; -[];;;drtoszi;;;[];;;;text;t2_jp26b;False;False;[];;"Just be warned, it’s more “comfy” than “whirlwind romance.” - -A lot of annoying commentors on manga sites keep being angry at “filler chapters.” You’d think they learn 100 chapters ago.";False;False;;;;1610222563;;False;{};gioqvm3;False;t3_ktunxs;False;False;t1_gioakwd;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioqvm3/;1610263647;69;True;False;anime;t5_2qh22;;0;[]; -[];;;Slifer13xx;;MAL;[];;http://myanimelist.net/animelist/Slifer13xx;dark;text;t2_irntz;False;False;[];;"This was super lovely. Great to see it animated after so long. I used to love the manga until I dropped it. Been thinking of picking it back up but it's been so long that I don't remember much. Was debating whether to re read or not until the anime was anounch, perfect! - -The pacing felt really quick though. Too quick I think. I don't remember it in the manga but I think we had more time to establish the relationship between Hori and Miya. This manga was really precious. I hope that they do it justice and make it great, instead of just good.";False;False;;;;1610222567;;False;{};gioqvwn;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioqvwn/;1610263652;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Stan_L_parable;;;[];;;;text;t2_2sxq8zp;False;False;[];;I hadnt watched anime for a whole year once. Mostly hecause it didnt interest me what came out that year. Started again slowly by rewatching old stuff and with many good ones coming out last few seasons;False;False;;;;1610222578;;False;{};gioqwpf;False;t3_ktuvgg;False;True;t3_ktuvgg;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/gioqwpf/;1610263663;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nickie305;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/nickie305;light;text;t2_wptka;False;False;[];;I Want to Eat Your Pancreas, Kaichou wa Maid Sama, Rascal Does Not Dream of a Bunny Girl Senpai;False;False;;;;1610222596;;False;{};gioqxyu;False;t3_ktvv43;False;True;t3_ktvv43;/r/anime/comments/ktvv43/looking_for_anime_like_say_i_love_you_and_kimi_ni/gioqxyu/;1610263682;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610222627;;False;{};gior07q;False;t3_ktunxs;False;True;t1_gioa1j4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gior07q/;1610263714;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Laughing_Koffin;;;[];;;;text;t2_8335f3y8;False;False;[];;"""How much plot development do you want in your 1st episode?"" -Horimiya: ""YES""";False;False;;;;1610222636;;False;{};gior0u3;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gior0u3/;1610263723;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Roamer21XX;;;[];;;;text;t2_q9cr1;False;False;[];;I like to mix both. I'll find a couple shows each season to follow weekly and binge everything else. My only problem is that when I binge, it has to be the entire series from start to finish in one sitting;False;False;;;;1610222650;;False;{};gior1u4;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gior1u4/;1610263739;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TohaHeavyIndustries_;;;[];;;;text;t2_1f3b6iu;False;False;[];;And that's why I stopped using MAL and started going high tech...with an Excel sheet!;False;False;;;;1610222706;;False;{};gior5wp;False;t3_ktv20h;False;False;t1_gioosef;/r/anime/comments/ktv20h/student_films_gedai_animationtokyo_university_of/gior5wp/;1610263800;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;Thanks! I won't mind those filler chapters as it takes quite a lot to build up, like Rent a Girlfriend, and it is the slow and steady progression that counts;False;False;;;;1610222706;;False;{};gior5xw;False;t3_ktunxs;False;False;t1_gioqvm3;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gior5xw/;1610263801;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Gonferth;;;[];;;;text;t2_9a5xk4p6;False;False;[];;I'm crying;False;False;;;;1610222735;;False;{};gior84i;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gior84i/;1610263840;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;How about Tamako Market/Love Story? A significant portion of the crew, including writer, director, and character designer, are women, and they do a really good job of representing a female perspective, I think.;False;False;;;;1610222805;;False;{};giord9z;False;t3_ktwnph;False;False;t3_ktwnph;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/giord9z/;1610263926;2;True;False;anime;t5_2qh22;;0;[]; -[];;;magic-doll;;;[];;;;text;t2_9a8f5wuu;False;False;[];;I’m a little in between. I like watching new shows as they come out, but I tend to binge older shows unless they have a lot of episodes.;False;False;;;;1610222834;;False;{};giorff6;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/giorff6/;1610263961;1;True;False;anime;t5_2qh22;;0;[]; -[];;;loomnoo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/loomnoo;light;text;t2_5ev8pklg;False;False;[];;AniList has a reasonable amount of Geidai shorts. Not sure about the other sites.;False;False;;;;1610222849;;False;{};giorgfe;False;t3_ktv20h;False;True;t1_gior5wp;/r/anime/comments/ktv20h/student_films_gedai_animationtokyo_university_of/giorgfe/;1610263977;1;True;False;anime;t5_2qh22;;0;[];True -[];;;Rhunon12;;;[];;;;text;t2_ox5vfm0;False;False;[];;How did I watch a whole season in 1 episode ?????;False;False;;;;1610222866;;False;{};giorhpr;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giorhpr/;1610263996;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NoDespair;;;[];;;;text;t2_11h1e0;False;False;[];;Based on episode 1 can't really see what the fuss is about;False;False;;;;1610222874;;False;{};gioriaa;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioriaa/;1610264006;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;One word: Y E S;False;False;;;;1610222888;;False;{};giorjb4;False;t3_ktunxs;False;True;t1_giooyws;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giorjb4/;1610264022;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Budget_Desk_9310;;;[];;;;text;t2_9p1p59q1;False;False;[];;oh no, he's hot.;False;False;;;;1610222965;;False;{};giorots;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giorots/;1610264113;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Lil_Peep4Ever;;;[];;;;text;t2_33g5ma4k;False;False;[];;There's something about animes that call out cringe interactions, plus I love the romance comedy genre, I already know I'm gonna love this. Looking forward to the next episode already;False;False;;;;1610222995;;False;{};giorqxo;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giorqxo/;1610264147;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;drtoszi;;;[];;;;text;t2_jp26b;False;False;[];;"Actually it’s less filler and more that it’s Slice of Life. - -Like Senko.";False;False;;;;1610223013;;False;{};giors6f;False;t3_ktunxs;False;False;t1_gior5xw;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giors6f/;1610264166;29;True;False;anime;t5_2qh22;;0;[]; -[];;;k4r6000;;;[];;;;text;t2_3q0qar7q;False;False;[];;"I find it depends a lot on how the female characters are treated as it can very wildly depending on the ecchi. Doormats that exist to get naked, get uncomfortably groped, and be a subservient waifu to a male MC is not a good way to appeal to women. But strong, well-developed characters that are comfortable in their own bodies and sexuality, like you would see in something like Kill la Kill or Fujiko Mine, can be quite popular. - -It really is more how they are treated than the fanservice. High School DxD is more popular among the women I know than Naruto, for example, for this very reason, despite the fanservice in the former. A character like Rias is seen as more desirable and respectable than a character like Sakura.";False;False;;;;1610223031;;1610223238.0;{};giortic;False;t3_ktwnph;False;False;t1_gioobsg;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/giortic/;1610264188;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Slifer13xx;;MAL;[];;http://myanimelist.net/animelist/Slifer13xx;dark;text;t2_irntz;False;False;[];;"*Sees the hair of death* - -Oh no!";False;False;;;;1610223076;;False;{};giorws1;False;t3_ktunxs;False;True;t1_gio7oe2;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giorws1/;1610264238;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kushpatel3410;;;[];;;;text;t2_1eor74c4;False;False;[];;Oh horimiya is finally airing, fuck yeah!;False;False;;;;1610223091;;False;{};giorxw0;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giorxw0/;1610264257;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PoseidonUltor;;;[];;;;text;t2_23ok22mt;False;False;[];;"That Toru end credit was hilarious -Crazy to think the anime is finally here, Best Brother Souta is here and hes adorable";False;False;;;;1610223094;;False;{};giory4h;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giory4h/;1610264260;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610223095;;1610223750.0;{};giory8k;False;t3_ktunxs;False;True;t1_gio7ris;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giory8k/;1610264262;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610223097;;False;{};giorye2;False;t3_ktunxs;False;True;t1_giors6f;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giorye2/;1610264265;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi ParticularCod6, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610223098;moderator;False;{};giorygn;False;t3_ktunxs;False;True;t1_giorye2;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giorygn/;1610264266;0;False;False;anime;t5_2qh22;;0;[]; -[];;;Animetthighs;;;[];;;;text;t2_874mc8b4;False;False;[];;Anything not american;False;False;;;;1610223107;;False;{};giorz49;False;t3_ktwnph;False;True;t3_ktwnph;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/giorz49/;1610264277;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;CringeKage222;;;[];;;;text;t2_2v8v29g9;False;False;[];;Freeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeedom;False;False;;;;1610223124;;False;{};gios09w;False;t3_ktwjuc;False;True;t1_giog9qm;/r/anime/comments/ktwjuc/should_i_read_the_manga_or_wait_for_the_episodes/gios09w/;1610264297;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;Thanks! Should I read the manga or the webcomic?;False;False;;;;1610223151;;False;{};gios2az;False;t3_ktunxs;False;True;t1_giors6f;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gios2az/;1610264329;3;True;False;anime;t5_2qh22;;0;[]; -[];;;whizmas;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/xjet465;light;text;t2_14gyc2;False;False;[];;Praise gap moe;False;False;;;;1610223180;;False;{};gios4lp;False;t3_ktunxs;False;False;t1_gionqpl;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gios4lp/;1610264366;39;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;"Say that to people who are pissed at tsundere girls violently hitting guys who don't retaliate - it's fiction, so why are they so bothered by it? - -Sure, if OP were to claim ""all anime treat female characters badly"" or ""all fanservice is bad,"" then yes that's dumb. But everyone has certain tropes in anime that they'd like to avoid, and there's nothing wrong with that. - -If a female character is harassed, and anime ignores it or treats it as normal, then yes that's going to make me uncomfortable. If other people like this stuff, then fine, but I don't see how me avoiding this content is unhealthy.";False;False;;;;1610223276;;False;{};giosc3x;False;t3_ktwnph;False;True;t1_gioqhdg;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/giosc3x/;1610264480;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"The compositing and lighting is amazing. The trailer already hinted at this and the episode confirms it. - -If it maintains this level, it'll be alongside some of the most beautiful looking TV anime I've ever seen. 3-Gatsu, Hyouka, Certain parts of AoT, and Violet Evergarden are some of the other most aesthetically pleasing anime I can think of right now. - -Also the OP visuals are stunning";False;False;;;;1610223282;;False;{};gioscjo;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioscjo/;1610264487;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ry-O-Ken;;;[];;;;text;t2_2lrnusrf;False;False;[];;Horimiya isn’t really a shoujo;False;False;;;;1610223293;;False;{};giosdbp;False;t3_ktunxs;False;False;t1_gioolkq;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giosdbp/;1610264499;2;True;False;anime;t5_2qh22;;0;[]; -[];;;whizmas;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/xjet465;light;text;t2_14gyc2;False;False;[];;The backgrounds are so beatifully done;False;False;;;;1610223345;;False;{};gioshu7;False;t3_ktunxs;False;True;t1_gio8qz0;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioshu7/;1610264567;1;True;False;anime;t5_2qh22;;0;[]; -[];;;whizmas;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/xjet465;light;text;t2_14gyc2;False;False;[];;The backgrounds are so beatifully done;False;False;;;;1610223345;;False;{};gioshv8;False;t3_ktunxs;False;False;t1_gio8qz0;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioshv8/;1610264568;24;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610223366;;1610227400.0;{};giosjgb;False;t3_ktwnph;False;True;t1_giortic;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/giosjgb/;1610264591;2;True;False;anime;t5_2qh22;;0;[]; -[];;;evanishei;;;[];;;;text;t2_23b8kd8z;False;False;[];;I forgot about the anime release;False;False;;;;1610223359;;False;{};giosjmj;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giosjmj/;1610264594;1;True;False;anime;t5_2qh22;;0;[]; -[];;;drtoszi;;;[];;;;text;t2_jp26b;False;False;[];;"From what I remember, it’s a One Punch Man situation. - -Web’s finished but Manga has better art.";False;False;;;;1610223410;;False;{};giosny4;False;t3_ktunxs;False;False;t1_gios2az;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giosny4/;1610264658;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Slifer13xx;;MAL;[];;http://myanimelist.net/animelist/Slifer13xx;dark;text;t2_irntz;False;False;[];;Don't think I've seen this much manga readers in a romcom anime. Guess that's what happens when the manga is ancient, lol.;False;False;;;;1610223417;;False;{};giosoyr;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giosoyr/;1610264675;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nickster182;;;[];;;;text;t2_ei2bc;False;False;[];;"Everything has been great so far! The VA's are just so damn good! And when they go into chibi mode its just utterly fucking adorable. All in all stylistically one of the best adaptions I've seen. - -That being said anyone else feel like they're adapting this at like light speed? I mean maybe their relationship progressed so fast in the 1st ep just so we can establish characters and how they're connected and the following eps will slow down. Fuck though, it feels like they flew through alot of chapters on the first ep.";False;False;;;;1610223463;;False;{};gioss8k;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioss8k/;1610264724;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sm10017;;;[];;;;text;t2_4afy7ao8;False;False;[];;The post credit scene got me;False;False;;;;1610223477;;False;{};giost82;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giost82/;1610264739;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RDOoM;;;[];;;;text;t2_i9bs4;False;False;[];;"What even is this... It made more romantic progress in one episode than some do in a season... The main leads were like a couple already by the time he visited her house the second time. Actually, with the absent parents and a kid to take care of, they're already kind of like a family. - -It was pretty nice to see something so different, just a little weird. - -Tho they sure went overboard on making that contrast between school Izumi and street Izumi. Like, did he have to have a chain piercing? Was him looking much cooler, and even having a regular piercing... not enough? Plus, Toru is right, wtf is going on in someone's mind to get full of piercing and tatoos and then have to hide them for like... the rest of duration of the school. - -Oh, and that scene where she said to him that she likes being the only one to see that side of him, but when the coin gets flipped she goes full ""baka baka"", was a bit silly.";False;False;;;;1610223487;;False;{};giostyd;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giostyd/;1610264749;1;True;False;anime;t5_2qh22;;0;[]; -[];;;39MUsTanGs;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/CGO39/;light;text;t2_3dlzo15z;False;False;[];;You watched half of Shippuden. That's over 400 episodes.;False;False;;;;1610223505;;False;{};giosv62;False;t3_ktuvgg;False;True;t3_ktuvgg;/r/anime/comments/ktuvgg/i_finished_only_4_anime_in_1_whole_year_am_i_wack/giosv62/;1610264768;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;I have no idea.;False;False;;;;1610223556;;False;{};giosysx;False;t3_ktvv43;False;False;t1_giopx6q;/r/anime/comments/ktvv43/looking_for_anime_like_say_i_love_you_and_kimi_ni/giosysx/;1610264822;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610223566;;False;{};gioszk5;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioszk5/;1610264833;1;True;False;anime;t5_2qh22;;0;[]; -[];;;k4r6000;;;[];;;;text;t2_3q0qar7q;False;False;[];;There is definitely some truth about that. Konosuba also seems popular among the women I know too because of how absurd it is.;False;False;;;;1610223631;;False;{};giot49j;False;t3_ktwnph;False;True;t1_giosjgb;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/giot49j/;1610264903;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;"And I would tell them the same thing... - -I don’t care wether someone chooses to watch something or not, that’s up to them. Just was simply stating they shouldn’t be bothered by it. It’s not real. There’s much worse things happening in real life you should focus on if you care that much.";False;False;;;;1610223725;;False;{};giotb0b;False;t3_ktwnph;False;False;t1_giosc3x;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/giotb0b/;1610265003;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Thirdhistory;;;[];;;;text;t2_15vn2z;False;False;[];;I legit thought the episode was 40 minutes while I was watching it, the pace is insane.;False;False;;;;1610223746;;False;{};giotci5;False;t3_ktunxs;False;False;t1_gioo1m0;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giotci5/;1610265026;11;True;False;anime;t5_2qh22;;0;[]; -[];;;drtoszi;;;[];;;;text;t2_jp26b;False;False;[];;Based copypasta merchant;False;False;;;;1610223767;;False;{};giote22;False;t3_ktunxs;False;True;t1_giooyws;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giote22/;1610265049;5;True;False;anime;t5_2qh22;;0;[]; -[];;;edwinvi;;;[];;;;text;t2_61hvsyte;False;False;[];;how many eps will this season be?;False;False;;;;1610223793;;False;{};giotfvv;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giotfvv/;1610265077;1;True;False;anime;t5_2qh22;;0;[]; -[];;;varishtg;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;https://www.anime-planet.com/users/senpaidev/anime/watching?sort;light;text;t2_dmv1u;False;False;[];;Damn, all that hype wasn't for nothing. Can totally see this anime dealing blows with the bigwigs of this season. Can't wait enough for the next episode. Also with this, my watching schedule is definitely reaching the most concurrent shows I've ever seen.;False;False;;;;1610223810;;False;{};gioth4l;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioth4l/;1610265096;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Drunden;;;[];;;;text;t2_5191q0tw;False;False;[];;"Yeah, all those damn American anime!!!!! Curse them!!!!!!!! - -/s";False;False;;;;1610223863;;False;{};giotktg;False;t3_ktwnph;False;False;t1_giorz49;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/giotktg/;1610265150;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;Yeah japan had a lot of issues with them with yakuza and such so it created a need for the restrictions they have there.;False;False;;;;1610223885;;False;{};giotmeo;False;t3_ktunxs;False;True;t1_gioptz7;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giotmeo/;1610265172;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610223946;;False;{};giotqpa;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giotqpa/;1610265235;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"Or former/current amateur work by professionals (Daicon IV, for example), but yeah, it is kinda sad that a lot of these shorts aren't on MAL. - -(On the other hand, though, [not everybody in Japan calls Japanese art animation ""anime""--instead using the unabbreviated ""animation.""](https://journal.animationstudies.org/sheuo-hui-gan-to-be-or-not-to-be-anime-the-controversy-in-japan-over-the-anime-label/) You can see this in the writing of Eizoken, where the characters insist that they want to create ""animation"" not ""anime."")";False;False;;;;1610224032;;False;{};giotx0d;False;t3_ktv20h;False;True;t1_gioosef;/r/anime/comments/ktv20h/student_films_gedai_animationtokyo_university_of/giotx0d/;1610265328;2;True;False;anime;t5_2qh22;;0;[]; -[];;;profdeadpool;;;[];;;;text;t2_cv7lo;False;False;[];;I loved how they swapped the color of their background shadows in some of the white void shots so much.;False;False;;;;1610224068;;False;{};giotzq1;False;t3_ktunxs;False;True;t1_gio7s97;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giotzq1/;1610265369;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610224127;;False;{};giou46r;False;t3_ktunxs;False;True;t1_gio7oe2;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giou46r/;1610265435;0;True;False;anime;t5_2qh22;;0;[]; -[];;;J3wFro8332;;;[];;;;text;t2_55992ei;False;False;[];;Well this seems like it'll be good. Expectations met! This seems a bit like Toradora! where the premise isn't anything new or extraordinary but the path we take to get to the conclusion is the real meat of the show;False;False;;;;1610224159;;False;{};giou6gp;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giou6gp/;1610265468;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RDOoM;;;[];;;;text;t2_i9bs4;False;False;[];;I've watched Tonikawa last season and am not desperately longing for a wife. Am I safe watching this?;False;False;;;;1610224180;;False;{};giou7zc;False;t3_ktunxs;False;True;t1_giocss0;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giou7zc/;1610265490;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Turns from an amazing action series into a masterpiece;False;False;;;;1610224234;;False;{};gioubz4;False;t3_ktw1my;False;True;t1_giodsg0;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/gioubz4/;1610265549;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;Idk what I was expecting, but that was fucking amazing!!!;False;False;;;;1610224253;;False;{};gioudbo;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioudbo/;1610265569;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vfactor95;;;[];;;;text;t2_knl0t;False;False;[];;Why is that teacher such a creep wtf;False;False;;;;1610224315;;False;{};giouhwm;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giouhwm/;1610265637;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RDOoM;;;[];;;;text;t2_i9bs4;False;False;[];;Well, the kid is fine, his proxy-mom now has a pseudo-husband.;False;False;;;;1610224346;;1610259913.0;{};giouk6t;False;t3_ktunxs;False;True;t1_gioa1j4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giouk6t/;1610265673;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;Harems can be romcoms yeah. A rom-com can have a harem in it. For example, Toubun is a rom-com, you'll see it referred as such everywhere, it's also a harem.;False;False;;;;1610224368;;False;{};giouls3;False;t3_ktwnph;False;True;t1_gionuwu;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/giouls3/;1610265700;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;We are likely to get a part 2 or a movie contiuation since the current annouced 16 episodes won't be enough to cover the rest of the manga so we still got a decent bit left;False;False;;;;1610224378;;False;{};gioumh5;False;t3_ktw1my;False;True;t3_ktw1my;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/gioumh5/;1610265713;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Anni01;;;[];;;;text;t2_yc4lp;False;False;[];;i meant 2015 lmao;False;False;;;;1610224409;;False;{};giouosu;False;t3_ktunxs;False;True;t1_gioo1aw;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giouosu/;1610265750;4;True;False;anime;t5_2qh22;;0;[]; -[];;;fredthefishlord;;;[];;;;text;t2_ba5at3b;False;False;[];;Yeah, but definitely not as pure sugar as tonikawa is.;False;False;;;;1610224427;;False;{};giouq4o;False;t3_ktunxs;False;False;t1_giobflt;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giouq4o/;1610265770;13;True;False;anime;t5_2qh22;;0;[]; -[];;;uqor;;;[];;;;text;t2_jn5kn;False;False;[];;I think only first 3 chapters were adapted in this ep according to what some have said.;False;False;;;;1610224482;;False;{};giouu5o;False;t3_ktunxs;False;True;t1_gioss8k;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giouu5o/;1610265834;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;Thanks. Is there a lot of the manga left to cover the entire web comic?;False;False;;;;1610224488;;False;{};giouumh;False;t3_ktunxs;False;True;t1_giosny4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giouumh/;1610265842;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;Fair enough, it's not a big deal, but people can still be mildly bothered by it and are allowed to voice that.;False;False;;;;1610224511;;False;{};giouwae;False;t3_ktwnph;False;True;t1_giotb0b;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/giouwae/;1610265868;3;True;False;anime;t5_2qh22;;0;[]; -[];;;fredthefishlord;;;[];;;;text;t2_ba5at3b;False;False;[];;Less com more rom. It's a lot more of a pure romance than a romcom I think;False;False;;;;1610224558;;False;{};giouztp;False;t3_ktunxs;False;False;t1_gio92gc;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giouztp/;1610265922;16;True;False;anime;t5_2qh22;;0;[]; -[];;;TangledPellicles;;;[];;;;text;t2_15k1ya;False;False;[];;"Ahhhh, and I've found my favorite new anime of the season. I'm in love. - -To the manga readers, how is the manga? I see it's been going on for a long time. Does it do the typical eventual shoujo ""we've run out of ideas so we're going to introduce the big misunderstanding and the evil fiancee and evil little sister etc"" cliches to avoid ending?";False;False;;;;1610224563;;False;{};giov07j;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giov07j/;1610265929;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KamuiSC;;;[];;;;text;t2_grqgz;False;False;[];;Whats pacing? Whats character development? Don't need any of that in MY anime!;False;False;;;;1610224773;;False;{};giovgol;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giovgol/;1610266175;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;Yepp absolute pain in the arse when I stayed in a traditional hotel in Nara that had a public bath, had to try and sneak a bath in at the dead of night not to be found out.;False;False;;;;1610224823;;False;{};giovkbu;False;t3_ktunxs;False;True;t1_giotmeo;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giovkbu/;1610266228;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;Gay for Miyamura gang!;False;False;;;;1610224840;;False;{};giovljx;False;t3_ktunxs;False;False;t1_giojdr7;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giovljx/;1610266247;9;True;False;anime;t5_2qh22;;0;[]; -[];;;kukiqk;;;[];;;;text;t2_q50u1;False;False;[];;"Its kinda fast pace for me, but still love it. - -Wondering how many chapters this will cover!";False;False;;;;1610224852;;False;{};giovmef;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giovmef/;1610266260;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AmeerFarooq;;;[];;;;text;t2_2aqpeyoj;False;False;[];;Hey. I remember watching the anime for this and it had only 4 episodes. Will this be the same bit more episodes? I liked watching it.;False;False;;;;1610224895;;False;{};giovpi7;False;t3_ktunxs;False;True;t1_gio7xzy;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giovpi7/;1610266307;0;True;False;anime;t5_2qh22;;0;[]; -[];;;drtoszi;;;[];;;;text;t2_jp26b;False;False;[];;Yeah a lot a lot, I also think there’s some original chapters which pumps the manga up too.;False;False;;;;1610224941;;False;{};giovswe;False;t3_ktunxs;False;False;t1_giouumh;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giovswe/;1610266356;4;True;False;anime;t5_2qh22;;0;[]; -[];;;uxragnarok;;;[];;;;text;t2_2adp8n1n;False;False;[];;We are truly blessed. QQ and Horimiya in the same season. It's gonna be a 5th place battler for sure. Her home attitude is gonna have to compete with mid season Nino and it's gonna be great.;False;False;;;;1610225033;;False;{};giovzpj;False;t3_ktunxs;False;False;t1_gio81m8;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giovzpj/;1610266460;4;True;False;anime;t5_2qh22;;0;[]; -[];;;CookieSlut;;MAL;[];;https://myanimelist.net/profile/NumeralXIII;dark;text;t2_kumzc;False;False;[];;"I know! - -I'm so happy this finally got adapted after reading it for so many years and it is just so cute and fun!";False;False;;;;1610225062;;False;{};giow1ot;False;t3_ktunxs;False;False;t1_gio81m8;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giow1ot/;1610266489;2;True;False;anime;t5_2qh22;;0;[]; -[];;;M_Bey;;;[];;;;text;t2_4hbwu1kt;False;False;[];;"As a manga reader..... -Just wait.... - -It definitely surpass tonikaku. At least imo";False;False;;;;1610225064;;False;{};giow1tn;False;t3_ktunxs;False;False;t1_giouq4o;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giow1tn/;1610266491;9;True;False;anime;t5_2qh22;;0;[]; -[];;;A-Glitch-Gnome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/AGlitchGnome;light;text;t2_adirj;False;False;[];;"I could answer this but it would be spoilers. - -Without spoilers I can say that after a certain point in the manga it just felt like the author was putting out chapters just so the manga doesn't end. I will say that up to that point and probably a little after it the series is one of the best of the genre. After that it's just very....forced? Idk it's like I can feel how uninspired the mangaka was lol - -All that being said The manga is absolutely worth the read";False;False;;;;1610225089;;False;{};giow3my;False;t3_ktunxs;False;True;t1_giov07j;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giow3my/;1610266518;0;True;False;anime;t5_2qh22;;0;[]; -[];;;fredthefishlord;;;[];;;;text;t2_ba5at3b;False;False;[];;I am a manga reader.;False;False;;;;1610225114;;False;{};giow5fh;False;t3_ktunxs;False;False;t1_giow1tn;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giow5fh/;1610266545;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Redmon425;;;[];;;;text;t2_15ro6h;False;False;[];;"HOLY HELL! I knew nothing about this, and I FREAKING LOVED THIS EPISODE. - -The premise is interesting, and the quality of the animation seems really good. - -Plus, the MC and FMC are both extremely likable. I am for sure going to watch this. - -May have been my favorite episode 1 of all the new shows I started this season!";False;False;;;;1610225164;;False;{};giow92t;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giow92t/;1610266599;11;True;False;anime;t5_2qh22;;0;[]; -[];;;CookieSlut;;MAL;[];;https://myanimelist.net/profile/NumeralXIII;dark;text;t2_kumzc;False;False;[];;"Once I saw it was CloverWorks adapting it, I just knew it would be a great adaptation. It really is so pretty and colorful! And the characters I've only ever seen on a black and white page have now come to life and are voiced and moving! AHH! - -Im so happy.";False;False;;;;1610225168;;False;{};giow9eo;False;t3_ktunxs;False;True;t1_gio5w5t;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giow9eo/;1610266605;1;True;False;anime;t5_2qh22;;0;[]; -[];;;M_Bey;;;[];;;;text;t2_4hbwu1kt;False;False;[];;Have you seen Miyamura's ponytail tho?;False;False;;;;1610225241;;False;{};giowf3i;False;t3_ktunxs;False;False;t1_giooyws;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giowf3i/;1610266691;5;True;False;anime;t5_2qh22;;0;[]; -[];;;CookieSlut;;MAL;[];;https://myanimelist.net/profile/NumeralXIII;dark;text;t2_kumzc;False;False;[];;The colors also sell what kind of emotions the characters are feeling during those scenes, which is a nice artistic way to let you know exactly what they think without just saying it to your face;False;False;;;;1610225267;;False;{};giowh26;False;t3_ktunxs;False;False;t1_giobbcz;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giowh26/;1610266722;6;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"You can ask ahead of time if the building is okay with tattoos and they will tell you, thats what we did for me since im covered. Most places are upfront and will tell you if you ask. - -I stayed at a place in Gunma, the famouse hotspring town with the spring in the middle of the town (tons of anime show it), and one of the places in the middle of town was okay with tattoos.";False;False;;;;1610225278;;False;{};giowhv9;False;t3_ktunxs;False;True;t1_giovkbu;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giowhv9/;1610266734;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Speedwagon96;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Speedwagon96/;light;text;t2_12lmdk;False;False;[];;Copypasta?;False;False;;;;1610225376;;False;{};giowoyl;False;t3_ktunxs;False;True;t1_giooyws;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giowoyl/;1610266838;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CookieSlut;;MAL;[];;https://myanimelist.net/profile/NumeralXIII;dark;text;t2_kumzc;False;False;[];;The ED was really cute too! A nice little isometric animation of Hori's day and time with Miyamura.;False;False;;;;1610225437;;False;{};giowtfi;False;t3_ktunxs;False;False;t1_gio5hbm;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giowtfi/;1610266906;18;True;False;anime;t5_2qh22;;0;[]; -[];;;JonAndTonic;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/;light;text;t2_kziw3;False;False;[];;# it's happening;False;False;;;;1610225458;;False;{};giowuyc;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giowuyc/;1610266928;6;True;False;anime;t5_2qh22;;0;[]; -[];;;M_Bey;;;[];;;;text;t2_4hbwu1kt;False;False;[];;"No its definitely more com forward. - - -It will have the same, even better, comedy scenes than kaguya. - - -Now I'm torn between kaguya and hori-san.";False;False;;;;1610225566;;False;{};giox2x4;False;t3_ktunxs;False;False;t1_giouztp;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giox2x4/;1610267050;16;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;Yup.;False;False;;;;1610225607;;False;{};giox66t;False;t3_ktunxs;False;True;t1_giovpi7;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giox66t/;1610267099;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kaitodash;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/KaitoDash;light;text;t2_12hqsk;False;False;[];;This has some kind of effect on my face muscle. I cannot move it out of grinning.;False;False;;;;1610225654;;False;{};giox9to;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giox9to/;1610267155;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AmeerFarooq;;;[];;;;text;t2_2aqpeyoj;False;False;[];;Thanks.;False;False;;;;1610225663;;False;{};gioxah3;False;t3_ktunxs;False;True;t1_giox66t;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioxah3/;1610267165;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atharaphelun;;;[];;;;text;t2_gawd5;False;False;[];;Gunma in general is just very chill. Not surprising at all.;False;False;;;;1610225663;;False;{};gioxaid;False;t3_ktunxs;False;True;t1_giol30y;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioxaid/;1610267165;2;True;False;anime;t5_2qh22;;0;[]; -[];;;M_Bey;;;[];;;;text;t2_4hbwu1kt;False;False;[];;"You have seen the end of him yet. - -He's one of the funniest characters in the whole manga.";False;False;;;;1610225698;;False;{};gioxd53;False;t3_ktunxs;False;False;t1_gio65pn;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioxd53/;1610267205;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Puddo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Puddo/animelist;light;text;t2_8uro4;False;False;[];;I really wish short films in general got a bit more attention of this community at times. There are so many of them out there with wonderful creative animation but the vast majority never gets mentioned at all. Which is a bit of a shame imo and the main reason why I wanted to make a post like this.;False;False;;;;1610225780;;False;{};gioxj8j;True;t3_ktv20h;False;True;t1_gioosef;/r/anime/comments/ktv20h/student_films_gedai_animationtokyo_university_of/gioxj8j/;1610267302;2;True;False;anime;t5_2qh22;;0;[]; -[];;;loomnoo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/loomnoo;light;text;t2_5ev8pklg;False;False;[];;"The Daicons are bundled in MAL as ""Daicon Opening Animations"". I wonder if the cultural significance forced them to acknowledge it or something? Actually they have it listed as Gainax so maybe that's it. Pretty sure the Daicons predate the official start of Gainax though. - -That's a pretty interesting distinction they make in Japan. Especially considering that they call most Western animation anime.";False;False;;;;1610225807;;False;{};gioxl7k;False;t3_ktv20h;False;True;t1_giotx0d;/r/anime/comments/ktv20h/student_films_gedai_animationtokyo_university_of/gioxl7k/;1610267332;2;True;False;anime;t5_2qh22;;0;[];True -[];;;M_Bey;;;[];;;;text;t2_4hbwu1kt;False;False;[];;"Then there's a shit to ne of characters you won't forget. -All equally funny and important.";False;False;;;;1610225814;;False;{};gioxljl;False;t3_ktunxs;False;True;t1_gioxd53;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioxljl/;1610267337;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TangledPellicles;;;[];;;;text;t2_15k1ya;False;False;[];;"Excellent answer! Thank you. I'm looking at the manga and I see it was introduced with the original author doing the drawings, then it was completely redone with a new artist and that one was released in English. Is it worth seeking out the original as well as reading the newer? Also does the original have an ending or does it just stop when the new version started? - -And (sorry for all the questions but I'm so excited to find this story and I know nothing) is the original OVA worth watching after watching this series?";False;False;;;;1610225863;;False;{};gioxp6n;False;t3_ktunxs;False;True;t1_giow3my;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioxp6n/;1610267391;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Mockingbirdguy;;;[];;;;text;t2_6096n672;False;False;[];;Weekly, been watching anime for years and still no burnout;False;False;;;;1610225919;;False;{};gioxt4q;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gioxt4q/;1610267451;0;True;False;anime;t5_2qh22;;0;[]; -[];;;osoichan;;MAL;[];;http://myanimelist.net/profile/osoichan;dark;text;t2_qsj0n;False;False;[];;"never expected to be spoiled by a lenny face lol -i mean i'm not complaining, i just found it funny that i think i know whats going to happen only cuz you've used an emote lol";False;False;;;;1610225923;;False;{};gioxtig;False;t3_ktunxs;False;True;t1_gioiht6;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioxtig/;1610267456;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;"Yeah this was like 5 years ago, my first long haul trip solo I didn't really think about that stuff so I just played it safe. - -I did a lot better on my 2nd trip last year was a lot more confident although I didn't do any hotspring stuff, mostly just hiking and drinking, and renting a car to drive out to mt Fuji for some stunning shots. - ->stayed at a place in Gunma, the famouse hotspring town with the spring in the middle of the town - -Nice I want to venture out a bit further next time I go alone (got plans to go in October if we can but for a group of us) was Gunma good?";False;False;;;;1610226082;;False;{};gioy5as;False;t3_ktunxs;False;True;t1_giowhv9;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioy5as/;1610267629;0;True;False;anime;t5_2qh22;;0;[]; -[];;;pixelverted;;;[];;;;text;t2_xdwge;False;False;[];;Still watching right now actually. I like the voice acting. Mixed feelings about art though, with how kinda laid back the Manga is I almost sort of wanted a slightly more simplistic shading/lighting style than this. Idk, it might grow on me.;False;False;;;;1610226090;;False;{};gioy5wm;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioy5wm/;1610267638;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"They also have stuff like [Rapparu's works](https://myanimelist.net/people/40135/Rapparu?q=rapparu&cat=person), even when not professional. (And they have some manga doujinshi on there as well.) I think their policy is that a work has to be from somebody who has worked professionally to be included.";False;False;;;;1610226107;;False;{};gioy72d;False;t3_ktv20h;False;True;t1_gioxl7k;/r/anime/comments/ktv20h/student_films_gedai_animationtokyo_university_of/gioy72d/;1610267654;3;True;False;anime;t5_2qh22;;0;[]; -[];;;fredthefishlord;;;[];;;;text;t2_ba5at3b;False;False;[];;I'm not an anime only, I'm a manga reader, so it's my opinion, and just differs from yours.;False;False;;;;1610226166;;False;{};gioybdf;False;t3_ktunxs;False;True;t1_giox2x4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioybdf/;1610267720;3;True;False;anime;t5_2qh22;;0;[]; -[];;;A-Glitch-Gnome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/AGlitchGnome;light;text;t2_adirj;False;False;[];;"So I'm not as much of a superfan as some others. I read the manga many years ago after it had just started. I don't know of any differences between the old version or the new version so either of those are probably worth it. - -I do know that the OVA is generally regarded very poorly by fans who have seen it. I have not personally watched it yet but it seems they leave alot out in the OVAs which is why fans are so excited for this series. - -Edit: I didn't answer your other question. This series absolutely has an ending but idk if it's part of the original run or not as I honestly stopped reading it before it got to the ending. - -If you don't mind some spoilers you can message me if you want my thoughts on the manga.";False;False;;;;1610226174;;1610226378.0;{};gioyc0w;False;t3_ktunxs;False;True;t1_gioxp6n;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioyc0w/;1610267731;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TangledPellicles;;;[];;;;text;t2_15k1ya;False;False;[];;I'm curious. When you read a novel do you expect all the character development to be in the first chapter? Generally the point of reading the whole book is to watch the characters develop as you read the entire thing. The first few chapters lay the foundation for that, which as someone who knows nothing about this story, thinks was done rather well in this episode.;False;False;;;;1610226276;;False;{};gioyjeo;False;t3_ktunxs;False;True;t1_giovgol;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioyjeo/;1610267842;0;True;False;anime;t5_2qh22;;0;[]; -[];;;M_Bey;;;[];;;;text;t2_4hbwu1kt;False;False;[];;"Neither am I, I only watch the top tier anime or one who haven't got manga, but if I can pass over them and read the manga you bet I'll do. - -Got any recommendations? Cuz am inches away from rerererererererererererererereading horimiya for the 13th time already in the span of the last 3 years.";False;False;;;;1610226398;;False;{};gioys69;False;t3_ktunxs;False;True;t1_gioybdf;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioys69/;1610267978;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"Hah i went to japan 5 years ago too. - -I went with a friend of mine who spoke japanese, i bought his ticket so he could translate for me for a month. Was the best choice i made since it ment there wasnt any language barrier issues. - -I went from Tokyo to Osaka and Kyoto to the west and up the north side (gunma), and to north east side too. Only place i didnt go was south west side where Hiroshima was. I was considering it for a concert but it woulda taken us 8 hours there and just couldnt schedule it in. Oh also i havent been to the northern island, Sapporo, thats where ide go next time i go. - -If youve seen Inital D, that town, that mountain pass road, thats Gunma. Its really nice and pretty and a lot to see. At the top of the mountian is a hot water lake thats in the mouth of a volcano that powers the hotsprings in the region. really cool to see.";False;False;;;;1610226404;;False;{};gioyslh;False;t3_ktunxs;False;True;t1_gioy5as;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioyslh/;1610267984;1;True;False;anime;t5_2qh22;;0;[]; -[];;;loomnoo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/loomnoo;light;text;t2_5ev8pklg;False;False;[];;Absolutely. I was planning to make a post about animation with unique media (sand, puppets, etc.) but it'd take a lot of research on the animation methods and idk how many people would actually care. My long term pipe dream is to have enough people talking about this stuff in the Western fandom that it reaches back to the creators in the way that, like, Twitter blows up praising animators for great scenes. Obviously it would never be at that scale but I imagine it would at least mean something to the artists.;False;False;;;;1610226410;;False;{};gioyt24;False;t3_ktv20h;False;True;t1_gioxj8j;/r/anime/comments/ktv20h/student_films_gedai_animationtokyo_university_of/gioyt24/;1610267991;3;True;False;anime;t5_2qh22;;0;[];True -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"Hori even got [the kind anime mommy hairstyle.](https://i.imgur.com/ChUmF6E.jpg) They really wanted to lay emphasis on that contrast. - -[](#bacchiri)";False;False;;;;1610226450;;False;{};gioyvyk;False;t3_ktunxs;False;False;t1_giod1ic;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioyvyk/;1610268033;27;True;False;anime;t5_2qh22;;0;[]; -[];;;EasilyDelighted;;;[];;;;text;t2_8t8z8;False;False;[];;"Finally this is out. I feel that like pace was running a mile a second but I love all of this character. -They're so great. Even when you though there was gonna be tension with Toru, turns out the dude is such a bro. -Miyamura trying to console him after the credits killed me, haha.";False;False;;;;1610226553;;False;{};gioz3d4;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioz3d4/;1610268149;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pacachan;;;[];;;;text;t2_j7ae5;False;False;[];;That pacing gave me whiplash. What the hell was that;False;False;;;;1610226554;;False;{};gioz3fa;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioz3fa/;1610268150;1;True;False;anime;t5_2qh22;;0;[]; -[];;;applebyarrow;;;[];;;;text;t2_ehexg;False;False;[];;The ED is really cute. I was wondering where they were going when the teacher opened his mouth, but I have to say the episode was fluffy and enjoyable.;False;False;;;;1610226561;;False;{};gioz3wz;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioz3wz/;1610268157;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VioletPark;;;[];;;;text;t2_uanbs;False;False;[];;">Miyamura's secret identity is great but I kinda wish Hori's was as good? Like her home side and school side don't feel super different. - -Exactly. The nerdy looking guy having piercings and tattoos is shocking because it goes against expectations. The perfect girl also being the perfect daughter and sister doesn't have as much punch. It would be more surprising if she was a depressed slob.";False;False;;;;1610226570;;False;{};gioz4ku;False;t3_ktunxs;False;False;t1_gio7xzy;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioz4ku/;1610268168;4;True;False;anime;t5_2qh22;;0;[]; -[];;;consolefreakedorigin;;;[];;;;text;t2_2baqt95w;False;False;[];;This one is fresh asf;False;False;;;;1610226620;;False;{};gioz83k;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioz83k/;1610268223;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MasterNyooot;;;[];;;;text;t2_m4pie68;False;False;[];;I don't know why they skipped chapter 2, I guess it will be shown on the upcoming episodes it's pretty important chapter;False;False;;;;1610226625;;False;{};gioz8fw;False;t3_ktunxs;False;False;t1_giocvt5;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gioz8fw/;1610268229;20;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;Ah nice. I have started reading it and I am in chapter 4 already..;False;False;;;;1610226658;;False;{};giozaqs;False;t3_ktunxs;False;True;t1_giovswe;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giozaqs/;1610268264;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JRavec;;;[];;;;text;t2_64fpcd54;False;False;[];;I like both ways sometimes i binge and others i watch just 1 or 2 episodes it depends on my mood in the day.;False;False;;;;1610226659;;False;{};giozatu;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/giozatu/;1610268265;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;[13.](https://www.reddit.com/r/anime/comments/ktsses/horimiya_is_listed_with_a_total_of_13_episodes/);False;False;;;;1610226718;;False;{};giozeww;False;t3_ktunxs;False;True;t1_giotfvv;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giozeww/;1610268326;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jebbush1212;;;[];;;;text;t2_y3f8v1y;False;False;[];;This whole episode felt like half a season with someone getting rejected and how close the main two characters have gotten, this is so good!;False;False;;;;1610226719;;False;{};giozezo;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giozezo/;1610268327;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;As linked in the body of the post: [AnimeLab](https://www.animelab.com/shows/horimiya), [Funimation](https://www.funimation.com/shows/horimiya/), or [Wakanim](https://www.wakanim.tv/sc/v2/catalogue/show/1203). Pirate sites aren't allowed by subreddit rules.;False;False;;;;1610226782;;False;{};giozjoq;False;t3_ktunxs;False;True;t1_gioszk5;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giozjoq/;1610268395;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zarysium;;;[];;;;text;t2_yj11i;False;False;[];;Is the manga completed? How many chapters is it?;False;False;;;;1610226790;;False;{};giozkbq;False;t3_ktunxs;False;False;t1_gio5w5t;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giozkbq/;1610268404;1;True;False;anime;t5_2qh22;;0;[]; -[];;;M_Bey;;;[];;;;text;t2_4hbwu1kt;False;False;[];;"Comrade.... - - -Wait didn't you reply to me on an earlier comment?";False;False;;;;1610226845;;False;{};giozoo9;False;t3_ktunxs;False;False;t1_giow5fh;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giozoo9/;1610268468;4;True;False;anime;t5_2qh22;;0;[]; -[];;;the-floor_is-lava;;;[];;;;text;t2_3x7igc7l;False;False;[];;It felt a bit faster than the manga but it was still everything I wanted it to be. Can't wait for next week's episode now.;False;False;;;;1610226846;;False;{};giozoq0;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giozoq0/;1610268468;1;True;False;anime;t5_2qh22;;0;[]; -[];;;loomnoo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/loomnoo;light;text;t2_5ev8pklg;False;False;[];;That's interesting. It's probably an oversight rather than deliberate but they're missing like all of Ryoji Yamada's stuff despite crediting him for pro work on Prayer X. Do you know if they've ever justified the policy in a statement or something?;False;False;;;;1610226867;;False;{};giozqi3;False;t3_ktv20h;False;True;t1_gioy72d;/r/anime/comments/ktv20h/student_films_gedai_animationtokyo_university_of/giozqi3/;1610268496;2;True;False;anime;t5_2qh22;;0;[];True -[];;;qwilliams92;;;[];;;;text;t2_11le5l;False;False;[];;Emmaculate pacing, love it love it. Been waiting for this my whole life lol;False;False;;;;1610226884;;False;{};giozrum;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giozrum/;1610268515;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cometssaywhoosh;;;[];;;;text;t2_o9xoz;False;False;[];;A good first episode, but I felt it was kinda rushed. An argument over their relationship status before the end of the first episode? I wonder how much they plan to adapt from the manga.;False;False;;;;1610226891;;False;{};giozse7;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giozse7/;1610268523;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VioletPark;;;[];;;;text;t2_uanbs;False;False;[];;Still dumb compared to the risk of being expelled for having piercings and tattoos (is it even legal to have them as a minor?);False;False;;;;1610226933;;False;{};giozvpg;False;t3_ktunxs;False;False;t1_giomeov;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giozvpg/;1610268572;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Leblebisus;;;[];;;;text;t2_5bq1zsuj;False;False;[];;The opening and ending is kinda too sad like its a drama anime but it actually about many happy idiots;False;False;;;;1610226947;;False;{};giozwrb;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giozwrb/;1610268590;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Animetthighs;;;[];;;;text;t2_874mc8b4;False;False;[];;There are comic book companies that are saying their current art style is based off of anime and manga in order to draw customers back. But the stories are as shit as ever and the art style is atrocious so I can't agree with the /s on this one but the sentimentality is much appreciated;False;False;;;;1610227013;;False;{};gip01vi;False;t3_ktwnph;False;False;t1_giotktg;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/gip01vi/;1610268666;0;True;False;anime;t5_2qh22;;0;[]; -[];;;fredthefishlord;;;[];;;;text;t2_ba5at3b;False;False;[];;Lmao yeah;False;False;;;;1610227019;;False;{};gip02ct;False;t3_ktunxs;False;False;t1_giozoo9;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip02ct/;1610268673;6;True;False;anime;t5_2qh22;;0;[]; -[];;;De_Dominator69;;;[];;;;text;t2_fetkv;False;False;[];;"Been extremely hyped for this, more so than any other anime because this is the first one for which I have read the manga before watching (read other manga but they either havnt had an anime yet or I started reading after watching it's anime). - -The art seems perfect, literally feels like the pages have been bought to life. I notice a few scenes seem to have been cut though nothing major, except this seems to have completely omitted chapter 2 though if I had to guess I imagine it's just being shuffled around and will be in next week's episode. - -Two chapters an episode feels about right, chapter 26 & 27 would perfect for the final episode and a good place to end the season. And with 13 episodes that can be for in well with only a few cuts or maybe like one omitted chapter. - -Either way I look forward to the rest, and already want a season 2... And 3... I want the whole thing adapted goddamnit!!!!";False;False;;;;1610227022;;False;{};gip02la;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip02la/;1610268676;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mrv3;;;[];;;;text;t2_fe649;False;True;[];;Japan has gamefiied everything.;False;False;;;;1610227024;;False;{};gip02tk;False;t3_ktunxs;False;True;t1_gioejlm;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip02tk/;1610268680;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610227041;;False;{};gip0443;False;t3_ktv4yy;False;True;t3_ktv4yy;/r/anime/comments/ktv4yy/a_completely_normal_investigation_no_game_no_life/gip0443/;1610268700;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"Yeah it was nice and a lot of friendly people there. - -The girl who showed us around Gunma was super nice and drove us around to all the places she thought were neat like old shrines and springs and such. We were out with her all day and night. One of the parts of my trip i remember really clearly and fondly. - -My friend kept calling me ""King"" and she was like ""what are you calling him?"" and he was like ""King, thats his middle name he goes by."" (because i introduced myself by my full name) and she tried to say King and it was one of the best things ive heard. She went ""KEENG. KEENG. KE-EEEENG. K-... your name is very hard to say..."" I told her ""My first name is Aaron if thats easyer for you."" and she looks at me and just goes ""AHHHHHHHH-in. No... its not easyer..."" and i just died laughing. My friend told her the japanese word for King and she used that instead, but still was great. Easilly the nicest person i met on that trip. Though another girl in Kyoto he knew was also really nice, she was the land lord for the dorm building he lived in when he went to kyoto university and she was a super cool person too.";False;False;;;;1610227121;;False;{};gip0b7d;False;t3_ktunxs;False;False;t1_gioxaid;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip0b7d/;1610268802;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"[And Ishikawa will give us pain while looking goofy.](https://i.imgur.com/T1SiYq6.png) - -[](#cheekychika)";False;False;;;;1610227227;;False;{};gip0js6;False;t3_ktunxs;False;False;t1_giob260;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip0js6/;1610268930;37;True;False;anime;t5_2qh22;;0;[]; -[];;;Soap646464;;;[];;;;text;t2_2nr0birw;False;False;[];;"Ok so even though last season was filled with great shows but still to me my favourite show was a pretty easy pick anyways with it being tied between Akudama Drive and Haikyuu but this season... not even all the first episodes have aired (I'm looking at you , slime , Log Horizon , Jobless Reincarnation , Dr. Stone) and I have no idea how the hell I'll be picking anything above anything else and that's not even counting that The Princess Principle movie/ova should be coming out this season - -Ok now onto the actual show for which this thread exists - -God this is great with a imo very accurate portrayal of high school and high school romance , also I love how the show is portraying the relationship between the two MCs , for example during the ""I'm glad I'm the only one who sees you like this scene"" I was so engrossed in their conversation that I completely forgot Sota exists , so when Hori brought out the Barley tea I was confused because ""Why are there 3 glasses of tea , there's only two of them"" only for me to realise how much of an idiot i am a couple seconds later , yup I can see why this show was hyped up by the Manga Readers - -~~Has anybody checked if ""The Day I became a God"" director is still alive? He was sorta missing after the negativity received by the last episode~~";False;False;;;;1610227306;;False;{};gip0pxy;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip0pxy/;1610269026;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nekuma-san;;;[];;;;text;t2_6z81sbok;False;False;[];;"I'm up to date on the manga and the anime did it justice!!! I LOVED everything about the first episode. How well they stuck to the manga and kept the humor! The visuals, voice actors, and music are perfect! I'm sooo hyped to watch this come alive and bring joy to 2021. - -Yes the pace is fast but this is how it was in the Manga too where it is just stated that they've been hanging out for a while. Don't worry you'll see plenty build up to be satisfied. - -I think the fast pace is actually quite refreshing and organic instead of the usual slow ""will they, won't they"" build up. It's a bit more realistic, mature, and grounded in that way. So NO I do not want the pacing to change and hope they continue to follow the manga. If you want slow build up, go to Kaguya-sama. - -Important point: If any of you start reading the manga, just know the main story goes up to Chapter 66. After that, it turns into daily slice of life that doesn't progress the plot as much. The manga is still ongoing with monthly updates. - -The manga was based off a webseries by HERO. Then Daisuke Hagiwara adapted it and redrew the graphics into the manga we know and love. - -Welcome and enjoy this heartwarming, wholesome story with humor that's on point :)";False;False;;;;1610227311;;False;{};gip0qb1;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip0qb1/;1610269032;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sarellion;;;[];;;;text;t2_100ib9;False;False;[];;Googled a bit, it seems that legally you can get a tattoo in Japan at the age of 20.;False;False;;;;1610227311;;1610228877.0;{};gip0qcq;False;t3_ktunxs;False;False;t1_giozvpg;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip0qcq/;1610269033;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Headcap;;;[];;;;text;t2_5vejt;False;True;[];;"never heard about this before today and holy shit this is amazing. could not stop smiling the entire time. - -Great Saturdays ahead.";False;False;;;;1610227334;;False;{};gip0s81;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip0s81/;1610269061;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610227344;;1610227950.0;{};gip0t2e;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip0t2e/;1610269072;1;True;False;anime;t5_2qh22;;0;[]; -[];;;M_Bey;;;[];;;;text;t2_4hbwu1kt;False;False;[];;Holy cow the probability!!;False;False;;;;1610227354;;False;{};gip0tv4;False;t3_ktunxs;False;False;t1_gip02ct;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip0tv4/;1610269085;6;True;False;anime;t5_2qh22;;0;[]; -[];;;generalmillscrunch;;;[];;;;text;t2_zofoh;False;False;[];;It's not often we get a romance where the characters are so refreshingly honest with each other about their feelings. This comes in sharp contrast with the nature of the characters' multi-faceted personalities, and the camouflage they erect with their public persona. Horimiya is about the simple lesson of not judging a book by its cover, but this simplicity allows it to be compelling in its sincerity, without needing to overdramatize the will-they-won't-they romantic pinings of youth. This first episode was expectedly amazing, and I can't wait for the rest. Cloverworks continues to raise the bar;False;False;;;;1610227371;;False;{};gip0v4p;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip0v4p/;1610269103;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ModieOfTheEast;;;[];;;;text;t2_g7tqk9b;False;False;[];;I think the first episode was a strong start. What I liked the most about it is that they not only talked about the theme through the main characters, but included the audience as well. The setup for the second male character (whose name I haven't remembered yet) was made to look like the typical bully in a highschool anime. But they subversed that directly showing that the audience needs to take the theme to heart as well.;False;False;;;;1610227410;;False;{};gip0ycg;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip0ycg/;1610269151;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hdholme;;;[];;;;text;t2_582l91b8;False;False;[];;AWWW YEAH!!! Sexual harrasment 1 minute in!!! I'm watching it right now and it's already... Yeah...;False;False;;;;1610227479;;False;{};gip13zl;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip13zl/;1610269238;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Puddo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Puddo/animelist;light;text;t2_8uro4;False;False;[];;Yeah I wanted this to be a way bigger project and I wanted to not only share more works from other Geidai students but also student films from other universities. However this was already getting way more time consuming than I expected. Eventually I thought it probably wasn't really worth the effort for something that probably only a handful of people would care about (though I'd hoped it would get a bit more traction of course but alas).;False;False;;;;1610227489;;False;{};gip14qi;True;t3_ktv20h;False;True;t1_gioyt24;/r/anime/comments/ktv20h/student_films_gedai_animationtokyo_university_of/gip14qi/;1610269248;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mochachiiino;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://twitter.com/Mochachiiino;dark;text;t2_dnn0k;False;False;[];;"this episode reminded me of two things - -1. hori is best girl -2. i am old as fuck";False;False;;;;1610227598;;False;{};gip1d8b;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip1d8b/;1610269380;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;">Was the best choice i made since it ment there wasnt any language barrier issues. - -Yeah I just went fuck it I'll work it out, I must have spent at least 30 minutes staring at train maps in Asakusa trying to work out how to get to Meguro when I first got there. Now I understand the lines pretty good but that first day was a nightmare haha, even trying to get a Suica card threw me through a loop. - ->I went from Tokyo to Osaka and Kyoto to the west and up the north side (gunma), and to north east side too. - -Ahh yeah I went Tokyo to Nara (with day trips to Kyoto) to Osaka, then last year I just stayed in Asakusa and travelled out from there, between Nikko, Nakagiriyama, going to Yokohoma to watch the football, Kamakura and just dicking about in Tokyo itself I realised the first time round I hadn't even scratched the surface of what Tokyo offers. - -I think at the very least next time I'm gonna try to get down to Suzuka for the grand prix if it goes ahead, and I want to also catch a V. LEAGUE game and try to get to Sapporo so I can try Japans best beer from the source. - ->youve seen Inital D - -Nahh not seen it sorry. Sounds awesome though, honestly think the mix between city and country is what makes Japan so fun, going from spending a day up a mountain with a buddha statue carved into it to getting pissed with random tourists you met the night before down Golden Gai is just an unmatched experience imo. - -Honestly the worst part of Japan for me is places like Akihabara, I just never feel comfortable there, in fact I generally avoid doing anime specific stuff whenever I'm in Japan.";False;False;;;;1610227656;;False;{};gip1hid;False;t3_ktunxs;False;True;t1_gioyslh;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip1hid/;1610269446;1;True;False;anime;t5_2qh22;;0;[]; -[];;;maddoxprops;;;[];;;;text;t2_oojn7;False;False;[];;Okay, the we can have a love pentagon. OH, or a love dodecahedron!;False;False;;;;1610227706;;False;{};gip1l71;False;t3_ktunxs;False;True;t1_giodub0;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip1l71/;1610269502;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sankalp4;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/dirtymelody;light;text;t2_a05xtsb;False;False;[];;I forgot how sweet the first few chapters of Horimiya were, gonna be a treat to watch this.;False;False;;;;1610227755;;False;{};gip1ov1;False;t3_ktunxs;False;False;t1_gio53qi;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip1ov1/;1610269560;3;True;False;anime;t5_2qh22;;0;[]; -[];;;YanderesHaveMyHeart;;;[];;;;text;t2_55s5ncp7;False;False;[];;"A romance where people are honest about their feelings and aren't awkward unnecessarily? - -Is this magic??";False;False;;;;1610227801;;False;{};gip1s7c;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip1s7c/;1610269609;31;True;False;anime;t5_2qh22;;0;[]; -[];;;never_forgetti154;;;[];;;;text;t2_wm93f;False;False;[];;B A I K I N G;False;False;;;;1610227873;;False;{};gip1xey;False;t3_ktunxs;False;True;t1_giooyws;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip1xey/;1610269705;1;True;False;anime;t5_2qh22;;0;[]; -[];;;maddoxprops;;;[];;;;text;t2_oojn7;False;False;[];;"I get it. One thing that isn't conveyed well in either manga or anime format is that she probably doesn't wear makeup outside of school. My roommate in college would usually never leave the house without doing at least the basic stuff. Combine that with how plainly she dresses and you get a huge gap between the perception of what she is and what she really is. - -Also I always saw it more as being a housewife outside school than simply being a good sister.";False;False;;;;1610227993;;False;{};gip261t;False;t3_ktunxs;False;False;t1_gio7ris;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip261t/;1610269838;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AcantiTheGreat;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/AcantiTheGreat;light;text;t2_16x356;False;False;[];;Oh man, this is gonna be *good.*;False;False;;;;1610228018;;False;{};gip27ss;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip27ss/;1610269864;3;True;False;anime;t5_2qh22;;0;[]; -[];;;loomnoo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/loomnoo;light;text;t2_5ev8pklg;False;False;[];;Yeah it's a shame this high effort/quality of a post isn't more popular. I think this is long enough to qualify as a Watch This! so you could maybe change the flair to at get it into the WT archive, which gives people a better chance to find it in the future.;False;False;;;;1610228041;;False;{};gip29gb;False;t3_ktv20h;False;True;t1_gip14qi;/r/anime/comments/ktv20h/student_films_gedai_animationtokyo_university_of/gip29gb/;1610269889;2;True;False;anime;t5_2qh22;;0;[];True -[];;;maddoxprops;;;[];;;;text;t2_oojn7;False;False;[];;I know right. I remember starting it something like 3-4 years ago. Hell the past 2 years I keep seeing things I have read get turned into anime. It is so weird since I never experienced that before.;False;False;;;;1610228101;;False;{};gip2du3;False;t3_ktunxs;False;False;t1_gio5fi9;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip2du3/;1610269956;1;True;False;anime;t5_2qh22;;0;[]; -[];;;60FpsLoli;;;[];;;;text;t2_xy6o8;False;False;[];;Finally, I've been waiting for this adaptation for sooooooooooooooooo long.;False;False;;;;1610228103;;False;{};gip2e0k;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip2e0k/;1610269959;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610228145;;False;{};gip2h39;False;t3_ktunxs;False;True;t1_giodmy7;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip2h39/;1610270004;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"[Side ponytail though](https://i.imgur.com/ChUmF6E.jpg) - -[](#wow)";False;False;;;;1610228227;;False;{};gip2mvj;False;t3_ktunxs;False;True;t1_gioez3f;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip2mvj/;1610270095;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610228290;;False;{};gip2rbr;False;t3_ktunxs;False;True;t1_gio53qi;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip2rbr/;1610270170;1;True;False;anime;t5_2qh22;;0;[]; -[];;;goatman0079;;;[];;;;text;t2_11j3jn;False;False;[];;I think she was supposed to be like an almost Mean Girls type of popular, the stereotype being that such people are basically unable to do anything else but be popular.;False;False;;;;1610228330;;False;{};gip2u8p;False;t3_ktunxs;False;True;t1_gio7ris;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip2u8p/;1610270213;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Nick_Tam_Air;;;[];;;;text;t2_7kwcv6g;False;False;[];;Thanks.;False;False;;;;1610228336;;False;{};gip2ump;False;t3_ktunxs;False;True;t1_giozjoq;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip2ump/;1610270219;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EquivalentGur3072;;;[];;;;text;t2_84bevo8q;False;False;[];;I don't understand how people believe Naruto is an extremely deep work while claiming stuff like HxH, FMAB, AOT, or plenty of less popular shows are more surface level. Naruto's not a bad show, but if you're looking to psychoanalyze a show, there are better shows out there than Naruto to chose from IMO.;False;False;;;;1610228364;;False;{};gip2wmr;False;t3_ktwcb1;False;True;t1_giop4s6;/r/anime/comments/ktwcb1/psychoanalyze_naruto_as_a_series/gip2wmr/;1610270250;1;True;False;anime;t5_2qh22;;0;[]; -[];;;leonmachar;;;[];;;;text;t2_cnyev;False;False;[];;"I love how this started. - -Saturdays are going to be so nice with the lovely dorks - -Still a bit weirded out by Torus purple hair but will get used to it";False;False;;;;1610228378;;False;{};gip2xld;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip2xld/;1610270265;1;True;False;anime;t5_2qh22;;0;[]; -[];;;miojx;;;[];;;;text;t2_3ivw94vb;False;False;[];;Amazingly;False;False;;;;1610228448;;False;{};gip32mp;False;t3_ktunxs;False;True;t1_giohagz;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip32mp/;1610270340;2;True;False;anime;t5_2qh22;;0;[]; -[];;;soudaivm;;;[];;;;text;t2_683f3l6x;False;False;[];;"The art direction is beautiful. The background colors when Hori and Miya are talking are such a nice detail. Also, the music gives me some nostalgic feelings. - -This getting an anime was something I never would've believed, but here we are.";False;False;;;;1610228496;;False;{};gip360e;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip360e/;1610270391;1;True;False;anime;t5_2qh22;;0;[]; -[];;;miojx;;;[];;;;text;t2_3ivw94vb;False;False;[];;Its even better;False;False;;;;1610228527;;False;{};gip389o;False;t3_ktunxs;False;True;t1_gioah4h;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip389o/;1610270425;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kirbyzz;;;[];;;;text;t2_qdu0u;False;False;[];;The trailer made me interested, is it worth watching? Is it a love story or is it more slice of life?;False;False;;;;1610228553;;False;{};gip3a2c;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip3a2c/;1610270452;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BerserkerTmG;;;[];;;;text;t2_1bgr5ac0;False;False;[];;Idk about you, but I really hope they don't fuck this up by the end. It's such a good show...presenting in a short and neat way the characters, some development was already made...if it's done right might be one of my if not my favorite romance anime.;False;False;;;;1610228559;;False;{};gip3ahh;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip3ahh/;1610270458;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrSsenmodnar;;;[];;;;text;t2_3kyxmgxh;False;False;[];;"""Sorry it's egg time"" - -Best anime of 2021";False;False;;;;1610228680;;False;{};gip3j6o;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip3j6o/;1610270591;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"Definitely on a weekly basis. - -Only time I binge watch is when I have to catch up with an older show to be ready for a new season... And even if the anime's enjoyable, it kinda feels like a chore.";False;False;;;;1610228681;;False;{};gip3j8t;False;t3_ktuoj0;False;False;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gip3j8t/;1610270591;3;True;False;anime;t5_2qh22;;0;[]; -[];;;tayoku0;;;[];;;;text;t2_nfa8y;False;False;[];;Ongoing with I think 122 chapters so far!;False;False;;;;1610228726;;False;{};gip3mh9;False;t3_ktunxs;False;True;t1_giozkbq;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip3mh9/;1610270641;0;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"I used to prefer binging when I was younger, because I had more free time. I would literally binge multiple anime in one day. - -Now, real life came and I'm more of a weekly guy. Also, it's way more fun discussing anime weekly, rather than missing out.";False;False;;;;1610228756;;False;{};gip3ojz;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gip3ojz/;1610270673;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shockwave1211;;;[];;;;text;t2_buqu1;False;False;[];;"if i remember correctly the machina girl is ""bugged"" or something";False;False;;;;1610228810;;False;{};gip3sch;False;t3_ktv4yy;False;False;t1_gip0443;/r/anime/comments/ktv4yy/a_completely_normal_investigation_no_game_no_life/gip3sch/;1610270730;4;True;False;anime;t5_2qh22;;0;[]; -[];;;chunkyhairball;;;[];;;;text;t2_7vec45qd;False;False;[];;It's pretty damn spoilerriffic for the whole NGNL LN series, let alone the movie.;False;False;;;;1610228837;;False;{};gip3ubu;False;t3_ktv4yy;False;False;t1_gip0443;/r/anime/comments/ktv4yy/a_completely_normal_investigation_no_game_no_life/gip3ubu/;1610270761;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PotentialSuspect453;;;[];;;;text;t2_872fz37h;False;False;[];;Yeah I was surprised how in the first episode he got rejected.;False;False;;;;1610228880;;False;{};gip3xf2;False;t3_ktunxs;False;True;t1_gio7xzy;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip3xf2/;1610270808;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Albolynx;;MAL;[];;https://myanimelist.net/profile/Albolynx;dark;text;t2_8jsfr;False;False;[];;"It will either cover everything that is important or go on more. - -Either way, it's going to be great - either a solid one-cour romance series; or popcorn material in the form of people in episode discussions going on petulant rants about Hori being quirky.";False;False;;;;1610228881;;False;{};gip3xh3;False;t3_ktunxs;False;True;t1_gioakuv;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip3xh3/;1610270809;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ValkyrieCain9;;;[];;;;text;t2_1c39d6;False;False;[];;"having you put it like that makes a lot of sense. It is definitely something I've always wondered, like what's the big deal, why keep it a secret. But it's actually less about a secret and more about her just being more closed off about her personal life than other people expect and in that regard it's like ""yeah you don't have to share that side of you if you don't want to""";False;False;;;;1610229150;;False;{};gip4gpd;False;t3_ktunxs;False;True;t1_gio99fj;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip4gpd/;1610271118;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ven_nom_1301;;;[];;;;text;t2_8vhgijem;False;False;[];;No game no life: Zero is perfect 😍;False;False;;;;1610229182;;False;{};gip4j0u;False;t3_ktv4yy;False;False;t3_ktv4yy;/r/anime/comments/ktv4yy/a_completely_normal_investigation_no_game_no_life/gip4j0u/;1610271154;7;True;False;anime;t5_2qh22;;0;[]; -[];;;miojx;;;[];;;;text;t2_3ivw94vb;False;False;[];;Yes, its an amazing anime, has romance and slice of life, all the cast are fun and enjoyable;False;False;;;;1610229202;;False;{};gip4kf0;False;t3_ktunxs;False;True;t1_gip3a2c;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip4kf0/;1610271175;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"Yeah i made sure to spend plenty of time in tokyo too. Like i said i was there just under a month so plenty of time to see a lot. I planned every day so we didnt have any wasted time so we could see everything we wanted. But it ment it was a busy as hell trip. Waking up at like 5-6am each day and heading out and getting home at like 10-12 each night. By the last couple days i coudlnt walk up stairs anymore, my knees gave out. I went up the Fukainari shrine in kyoto (the one with the 100 red arches) and that killed my knees. Also the one mountina shrine in Gunma did too. Between those huge hikes my legs were fucked. I have really bad joints so my knees are super bad shape in general haha. - -Initial D is a really famous racing anime from the 90s about people who race up and down Gunma's mountian roads, which real people do. Its really accurate to how that area looks so you get a great idea from that. - -Sadly im allergic to most alcholo so i coudnt drink beer or saki. I can only drink specifc stuff. Something about yeast or something. Not entirely sure, but i get super ill if i drink it, so i missed out on a lot of stuff in japan related to that. - -We had our main hotel in Akihabara because its really centeral area and easy to get to other place. I loved the town there. Just all the neat little stores and backalleys and the big tech buildings and such, its a really neat area i think. But i also went to Ikebukuro, Shinjuku, Shibuya, Minato, taito, Nakano, Odaiba, and a lot of other areas in tokyo. I did my best to see everything i could. Highlights for me def were Akihabara, Ikebukuru, Shinjuku, Shibuya, and Odaiba. - -Really i just see what i want and not really worry about it. I there because i want to be and want to see everything i can, no point limiting yourself when your on vacation.";False;False;;;;1610229296;;False;{};gip4r1e;False;t3_ktunxs;False;True;t1_gip1hid;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip4r1e/;1610271273;1;True;False;anime;t5_2qh22;;0;[]; -[];;;stitches_dc;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/SAUT94;light;text;t2_kh5ex;False;False;[];;Felt the same way and I read the manga. Just skimmed through the first 3 chapters and while a scene or 2 are cut, it's not a whole lot. I guess Horimiya just goes a little faster early on... it's just been so long since I read that so I'd forgotten haha;False;False;;;;1610229316;;False;{};gip4se2;False;t3_ktunxs;False;False;t1_gioel2u;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip4se2/;1610271293;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610229319;;False;{};gip4sl7;False;t3_ktunxs;False;True;t1_giodmy7;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip4sl7/;1610271296;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SMA2343;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/HispanicName;light;text;t2_6xzja;False;False;[];;Idk if this is going to be a slow burn romance or it’s goi my to be an extreme love pentadecagon;False;False;;;;1610229388;;False;{};gip4xex;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip4xex/;1610271370;1;True;False;anime;t5_2qh22;;0;[]; -[];;;B_House10;;;[];;;;text;t2_59284kgd;False;False;[];;Generally I'm not really into RomCom, SoL anime but I absolutely fell in love with this! I've been seeing people talk about it for weeks and decided to check it out and I am so glad I did. The episode had me smiling the whole time! The animation is gorgeous, the characters' personalities are so cute, the mix of humor and cutesy is in perfect balance. Definitely adding it to my winter watch list.;False;False;;;;1610229414;;False;{};gip4z8t;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip4z8t/;1610271397;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dream-Ranker;;;[];;;;text;t2_81f2det8;False;False;[];;"It's a pretty good adaption. The first scene where he walks past kyoko and souta doesnt happen in the manga but not a big deal. - -The art was weird could have been way better but irs decent. Episode 1 is chapters 1 & 2. Pretty much the same no changes.";False;False;;;;1610229421;;False;{};gip4zq0;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip4zq0/;1610271404;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ValkyrieCain9;;;[];;;;text;t2_1c39d6;False;False;[];;"I also started when I was around their age and although I'm not that much older now, its still so nice to see this adapted. Even more so for me because this is the first manga I ever decided to read, when I was starting to get more into manga and so this is also the first time i'm in the ""read the manga"" camp while watching. I don't how this will go (although I enjoyed the first episode so far), I'm just excited to be in the position haha";False;False;;;;1610229433;;False;{};gip50lq;False;t3_ktunxs;False;False;t1_gio67d6;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip50lq/;1610271418;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Pyroluminous;;;[];;;;text;t2_rb4zi;False;True;[];;You guys, I’ve been waiting for this the longest time, hype hype hype hype!!!!;False;False;;;;1610229486;;False;{};gip54gj;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip54gj/;1610271477;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610229614;moderator;False;{};gip5df6;False;t3_ktunxs;False;True;t1_giohzua;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip5df6/;1610271614;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610229636;moderator;False;{};gip5eza;False;t3_ktunxs;False;False;t1_giodw5j;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip5eza/;1610271638;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ValkyrieCain9;;;[];;;;text;t2_1c39d6;False;False;[];;Artsy is exactly how I would describe it, but I like the direction it's taking. In particular I love the ED it was just so pleasing to watch and I feel like the simplistic cuteness of the art style really matched the energy between Hori and Miyamura;False;False;;;;1610229674;;False;{};gip5hq3;False;t3_ktunxs;False;True;t1_gio86s1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip5hq3/;1610271683;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Iamjustatrial;;;[];;;;text;t2_trz6t;False;False;[];;Wew I was smiling the whole episode. Really dig the artstyle and hairstyle, only thing that sort of bothers me is Hori's eye colouring 🤔;False;False;;;;1610229781;;False;{};gip5phv;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip5phv/;1610271801;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ValkyrieCain9;;;[];;;;text;t2_1c39d6;False;False;[];;">Oh and as a side note, -> ->I thought Ishikawa and Miyamura's interaction -> -> was going to turn hostile for a bit there but I am so glad that Miyamura won over Ishikawa instantly and that they're practically buds now. - -That really is something to appreciate. It shows that neither of them are particularly hostile guys and even a girl wouldn't change who they are fundamentally. Which meant that in fact they had room to sympathise with each other and get closer. If you can't already tell I love these two";False;False;;;;1610229912;;False;{};gip5yqt;False;t3_ktunxs;False;False;t1_gioczkx;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip5yqt/;1610271940;7;True;False;anime;t5_2qh22;;0;[]; -[];;;IISuperSlothII;;MAL;[];;http://myanimelist.net/animelist/IISuperSlothII;dark;text;t2_dh4cj;False;False;[];;">Waking up at like 5-6am each day and heading out and getting home at like 10-12 each night. - -Oh fuck that, I got up about 8 most days as I usually do. I did end up having the jet lag screw me over and I ended up doing a 10 mile hike through Kamakura after like 3 hours of sleep. - -Tbf some nights I was getting back at 6am cause we'd end up having to wait for the first train, my final night of the trip ended up being like that, had a mental night out where some random Japanese lad took us to a Hostess bar and paid for the whole thing, didn't get back until 6 and had a flight at 2. - ->went up the Fukainari shrine in kyoto (the one with the 100 red arches) and that killed my knees. Also the one mountina shrine in Gunma did too. Between those huge hikes my legs were fucked. I have really bad joints so my knees are super bad shape in general haha. - -Yeah I did that on my first trip, did you go round the back of the mountain through the bamboo forest? I didn't realise most the wildlife there like the Asian hornets I was casually walking past can be fucking deadly, nice hike though. - -And yeah my knees are/were fucked as well, I don't know what you've tried but long hold isometrics rapidly improved mine the last few months, I've even started a jump training program now with zero pain whatsoever. - ->Initial D is a really famous racing anime from the 90s about people who race up and down Gunma's mountian roads - -Yes I know what Initial D is I just haven't seen it xD - ->Sadly im allergic to most alcholo so i coudnt drink beer or saki. I can only drink specifc stuff. Something about yeast or something. Not entirely sure - -Ahh that's shit, that's half of the reason I go to Japan, to get drunk and chat shit with the locals. - -Yeah I stayed in Meguro which is way out the way and Asakusa, the latter being really well placed and every day I got to walk through the shrine there to get back to my room. - -I think I love Shibuya/Shinjuku the most, although if I were to live there I'd absolutely live in Yokohoma, that place is great. Yeah most of my trip was trying to do everything I could, sometimes I'd plan stuff on the fly though if I needed to move things round. Like my trip to Mt Fuji I tried to get it so it fell on a day with Clear skies [which it absolutely did](https://i.imgur.com/pbWN4Mj.jpg).";False;False;;;;1610230009;;False;{};gip665o;False;t3_ktunxs;False;True;t1_gip4r1e;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip665o/;1610272049;1;True;False;anime;t5_2qh22;;0;[]; -[];;;the_dan_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/asian_weeb;light;text;t2_545v6;False;False;[];;Haruka Tomatsu (Hori) is so damn good at her job.;False;False;;;;1610230036;;False;{};gip686u;False;t3_ktunxs;False;False;t1_gio7pzy;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip686u/;1610272080;11;True;False;anime;t5_2qh22;;0;[]; -[];;;0blivionn;;;[];;;;text;t2_c5xm00t;False;False;[];;"I love the art and the animation, it’s really bright and colorful. I love the characters as well. Think this will definitely be some depression treatment haha. The OSTs are great too. - -However, I think the development was a bit rushed. Not the biggest deal, but the skip from the two main characters first meeting to them hanging out at Hori’s house every day seemed unnatural. Still a great rom com tho, can’t wait to see more!";False;False;;;;1610230091;;False;{};gip6c6r;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip6c6r/;1610272139;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheCodeisCupCake;;;[];;;;text;t2_3lyztbfj;False;False;[];;"Wait - -NO WAY ITS GOT AN ANIME WTF";False;False;;;;1610230111;;False;{};gip6dmu;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip6dmu/;1610272160;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MHUNTER12345;;;[];;;;text;t2_lzphg;False;False;[];;I'm pretty sure that's kenjiro tsuda as the red haired flat chested lover sensei right;False;False;;;;1610230172;;False;{};gip6i4b;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip6i4b/;1610272231;1;True;False;anime;t5_2qh22;;0;[]; -[];;;StopUsingThisSite;;;[];;;;text;t2_74ep8963;False;False;[];;"True...but slow motion of a sweaty guy taking off some clothes isn't hard shonen either. - -Well except Jojo";False;False;;;;1610230190;;False;{};gip6jez;False;t3_ktunxs;False;True;t1_giosdbp;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip6jez/;1610272250;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Solid-Equipment;;;[];;;;text;t2_68jzmig3;False;False;[];;This is good. Yabei.;False;False;;;;1610230211;;False;{};gip6l01;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip6l01/;1610272275;1;True;False;anime;t5_2qh22;;0;[]; -[];;;inception900;;;[];;;;text;t2_6h9lp4z9;False;True;[];;That shit was good that’s all I’m saying;False;False;;;;1610230216;;False;{};gip6ld0;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip6ld0/;1610272280;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gunnas_Hamburger;;;[];;;;text;t2_790q2ujx;False;False;[];;Hollup, heat right off the bat?;False;False;;;;1610230331;;False;{};gip6tvf;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip6tvf/;1610272407;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dmckilla7;;;[];;;;text;t2_1k47n628;False;False;[];;As a Manga reader though I picked it up after the anime was announced I also agree the first episode had a very fast pace. I don't know exactly why I'm fine with that maybe it's because there are alot of really good parts I want to see soon and the faster the pace the earlier I'd get to see them but for people who haven't read the Manga or source material it must feel to fast. Besides that I'm loved the first episode.;False;False;;;;1610230476;;False;{};gip74et;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip74et/;1610272572;3;True;False;anime;t5_2qh22;;0;[]; -[];;;boran_blok;;MAL;[];;http://myanimelist.net/animelist/boran_blok;dark;text;t2_3gho6;False;False;[];;"I am probably the worst kind. - -I watch until an anime is finished before watching it. - -And I mean, done, no more sequels, spin-offs or whatever. If an anime ends and there is rumor of a follow-up I will not watch it until either that rumor bears out or several years have passed. - -The same for manga, I only start reading one when it is finished. - -Suffice to say I watch/read most things several years or even more than a decade after most people do.";False;False;;;;1610230645;;False;{};gip7gwe;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gip7gwe/;1610272763;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cheersandfears;;;[];;;;text;t2_3wyqmdb1;False;False;[];;I am in love with this op, I can’t stop listening to it.;False;False;;;;1610230651;;False;{};gip7hcr;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip7hcr/;1610272770;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610230668;;False;{};gip7im5;False;t3_ktv4yy;False;True;t1_gip4j0u;/r/anime/comments/ktv4yy/a_completely_normal_investigation_no_game_no_life/gip7im5/;1610272789;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;Apart-Assignment-898;;;[];;;;text;t2_6xunl5o5;False;False;[];;Is no one going to talk about the wack music going on in the background????;False;False;;;;1610230775;;False;{};gip7qj8;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip7qj8/;1610272916;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Syokhan;;;[];;;;text;t2_b5zid;False;False;[];;Well that was awfully sweet and cute.;False;False;;;;1610231006;;False;{};gip87ir;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip87ir/;1610273175;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Catnelac;;;[];;;;text;t2_9ibx94s5;False;False;[];;"I always knew Horimiya was this popular romance manga but I never got into it, and that didn't change with the anime adaptation either. Isn't bad but still have nothing to attract me enough. - - -At least Miyamura has enough appeal to keep me watching it until I get finally bored.";False;False;;;;1610231064;;False;{};gip8bp5;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip8bp5/;1610273239;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;J3wFro8332;;;[];;;;text;t2_55992ei;False;False;[];;Take my up vote and get out;False;False;;;;1610231067;;False;{};gip8bwa;False;t3_ktunxs;False;False;t1_gioo9e3;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip8bwa/;1610273242;2;True;False;anime;t5_2qh22;;0;[]; -[];;;wolfguardian72;;MAL;[];;;dark;text;t2_71wn5;False;True;[];;I like how Miyamura is totally down with being seen as bi, rather he sees him and Toru as good friends rather than a cute couple.;False;False;;;;1610231252;;False;{};gip8p93;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip8p93/;1610273446;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;What are you disliking? It really depends on what is making you not enjoy it;False;False;;;;1610231311;;False;{};gip8tf5;False;t3_ktw1my;False;True;t1_giodsg0;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/gip8tf5/;1610273508;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FrogHorns;;;[];;;;text;t2_r3t8k;False;False;[];;I thought we would get the original pasta somewhere in this episode discussion with Miyamura’s glasses antics and all, but ponytails are good too;False;False;;;;1610231536;;False;{};gip99ob;False;t3_ktunxs;False;True;t1_giooyws;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip99ob/;1610273750;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;I just said in the comment above i enjoy it but just dont find it addictive yet;False;False;;;;1610231551;;False;{};gip9arr;False;t3_ktw1my;False;True;t1_gip8tf5;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/gip9arr/;1610273766;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrManicMarty;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MartySan/animelist;light;text;t2_8t0yy;False;False;[];;Ah crap, sorry! I'm not used to being a source reader. If I have any comment to make in the future, I'll just tag the other user, is that what I'm suppose to do, right?;False;False;;;;1610231567;;False;{};gip9bxi;False;t3_ktunxs;False;True;t1_gip5eza;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip9bxi/;1610273783;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;Then why would you drop it if you enjoy it?;False;False;;;;1610231590;;False;{};gip9dp1;False;t3_ktw1my;False;True;t1_gip9arr;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/gip9dp1/;1610273809;1;True;False;anime;t5_2qh22;;0;[]; -[];;;StopUsingThisSite;;;[];;;;text;t2_74ep8963;False;False;[];;"Typically you don't go from ""I don't know anything about you"" to ""You better be coming over again"" in the span of a few interactions. - -Not saying it's inherently too fast or wrong, it's just when said situations are pretty mundane and you start relying on telling instead of showing character interactions, it's a pretty good sign of rushing their development. - -Which is kind of odd for me since I don't even recall their being that much plot to begin with.";False;False;;;;1610231640;;False;{};gip9he9;False;t3_ktunxs;False;False;t1_gioyjeo;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip9he9/;1610273865;6;True;False;anime;t5_2qh22;;0;[]; -[];;;TempleGardenX;;;[];;;;text;t2_9hv6q6wd;False;False;[];;Is it worth continuing reading? I'm on 115 and it's gotten really boring and doesn't feel like the same series;False;False;;;;1610231642;;False;{};gip9hky;False;t3_ktunxs;False;True;t1_gio7xzy;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip9hky/;1610273867;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610231700;;False;{};gip9lou;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip9lou/;1610273930;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;Because the plot isnt the most captivating from the start of season 1, so im wondering if it gets any better if not, i was planning to drop.;False;False;;;;1610231700;;False;{};gip9lqi;False;t3_ktw1my;False;True;t1_gip9dp1;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/gip9lqi/;1610273931;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Royal_Heritage;;;[];;;;text;t2_8wglzuge;False;False;[];;"Yikes. - -You sound as if Kino no Tabi invented the traveler show trend and anything that is remotely similar is an immediate ""bootleg"" version of your precious and fabulous show. - -Your last line ""if you liked Elaina that just means you haven't seen the greater masterpiece called Kino"" just makes you sound like a nonsensical fanboy. Why would anyone in their right mind would take your word up when there's such a huge bias (even calling it a masterpiece is quite a stretch). - -BTW I watched both Kino versions and I thought they were nice and insightful, but I don't need to look down on other similar shows just because they aren't a carbon copy.";False;False;;;;1610231740;;1610231950.0;{};gip9oiu;False;t3_ktvn5p;False;True;t1_giokl96;/r/anime/comments/ktvn5p/wandering_witch_the_journey_of_elaina_review_a/gip9oiu/;1610273972;3;False;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;Horimiya is acyually aiming for that 3rd spot from JJK hory shit. Let's see if it's able to maintain it's momentum the remainder of the season.;False;False;;;;1610231764;;False;{};gip9qa5;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip9qa5/;1610273999;7;True;False;anime;t5_2qh22;;0;[]; -[];;;DJFMHD;;;[];;;;text;t2_295f9n45;False;False;[];;Definitely. I don’t think they would have called it the final season if they weren’t going to finish it.;False;False;;;;1610231814;;False;{};gip9trr;False;t3_ktw1my;False;True;t1_gioumh5;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/gip9trr/;1610274052;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ARNOS_VOLTEGOURD_;;;[];;;;text;t2_8o4vzqnm;False;False;[];;"With this anime.out gonna have to chnage my name becuase my.last name is miyamura - -Also its way more series then it should be";False;False;;;;1610231838;;False;{};gip9vij;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip9vij/;1610274078;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;"The story gets more complex the more you watch it. [episode 8 spoilers](/s ""Do you think that Eren being a titan isn't interesting I wondered how he could do it when i first watched"") - -Also i usually don't PLAN to drop a series i just try to watch it and if i don't want to see the next episode i don't watch it unless I've spent some time with it.";False;False;;;;1610231878;;False;{};gip9yfp;False;t3_ktw1my;False;True;t1_gip9lqi;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/gip9yfp/;1610274122;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CarnivorousL;;;[];;;;text;t2_le1bz;False;False;[];;"God, I LOVE LOVE LOVE the [ED](https://www.youtube.com/watch?v=vOEvk3bSdr4), song and visuals are so cute and unique. It reminds me of the Sims or Mii Life on the DS,lol. - -In general, I am loving the pacing and care put into this adaptation so far. I'm very excited!";False;False;;;;1610231893;;False;{};gip9zi4;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gip9zi4/;1610274138;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lle0nx3;;;[];;;;text;t2_nih5n;False;False;[];;Loved every single second;False;False;;;;1610231982;;False;{};gipa5v3;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipa5v3/;1610274234;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mr_Zaroc;;MAL;[];;http://myanimelist.net/animelist/mr_zaroc;dark;text;t2_d2p0j;False;False;[];;"Checked the show out cause I was super bored and got hooked instantly - -This show is damn promising, didnt expect that. - -Love how Miyamura basically got adopted after helping the lil bro' -The last bit after her ranting about the food and small stuff he is doing was too cute, but not suffocating. -Plus the White Pauses with colored silhouettes are an awesome timing tool and well used";False;False;;;;1610232349;;False;{};gipavvi;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipavvi/;1610274630;5;True;False;anime;t5_2qh22;;0;[]; -[];;;fluskar;;;[];;;;text;t2_1tmcep31;False;False;[];;"One of the best romance mangas finally gets an anime! - -&#x200B; - -Loved the episode. Story, art, sound, and characters are all off to a good start so far.";False;False;;;;1610232358;;False;{};gipawhh;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipawhh/;1610274639;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;Yeah ive seen a couple of episodes (7 to be precise) and from that im unsure to drop it or not. Its not bad, but im not hooked enough to continue if that makes sense. Thats why im asking if it gets any better in further eps. Thats what i mean, im not just planning to drop it for the sake of dropping the series. Idk if i worded it wrong in my previous comment, if so, my apologies;False;False;;;;1610232364;;False;{};gipaww6;False;t3_ktw1my;False;True;t1_gip9yfp;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/gipaww6/;1610274645;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dgarveiedn;;;[];;;;text;t2_50daf56z;False;False;[];;Sora and Shiro aren’t the MCs in this movie;False;False;;;;1610232379;;False;{};gipaxwp;False;t3_ktv4yy;False;False;t1_gip7im5;/r/anime/comments/ktv4yy/a_completely_normal_investigation_no_game_no_life/gipaxwp/;1610274661;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Sayie;;MAL;[];;https://myanimelist.net/animelist/Sayie;dark;text;t2_9947m;False;False;[];;Depends on the show. If it's airing then I have no problem waiting a week for a new episode, but if it's already aired then i'll just binge or mini-binge it depending on how long it is and if it has distinct arcs.;False;False;;;;1610232399;;False;{};gipazak;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gipazak/;1610274682;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MunQQ;;;[];;;;text;t2_5wtgg;False;False;[];;Haven't watched these type of anime in a long time. Seems pretty good so far. Especially nice to see that the characters actually talk things out.;False;False;;;;1610232477;;False;{};gipb50j;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipb50j/;1610274769;1;True;False;anime;t5_2qh22;;0;[]; -[];;;homie_down;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/sodumblol;light;text;t2_zsyc0;False;False;[];;"> her secret: she uh, does chores? she's a good sister? - -Dude same lol. Like it isn't a dealbreaker but nobody would look at her differently if she was like ""btw I can't hang out so much after school bc I have to take care of my kid brother"". It's not like she's in a catty popular girls group where she has to maintain a perfect facade or else fear losing her friends. In that sort of instance I could see the fear and need to hide her ""true"" self, but with the way the story goes that isn't the case at all lol.";False;False;;;;1610232557;;False;{};gipbb8x;False;t3_ktunxs;False;True;t1_gio7ris;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipbb8x/;1610274859;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;The next 2-3 episodes will be interesting will maybe make you more interested if you are unsure to drop something don't drop it until you are sure to either drop it or not.;False;False;;;;1610232569;;False;{};gipbc5r;False;t3_ktw1my;False;False;t1_gipaww6;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/gipbc5r/;1610274872;1;True;False;anime;t5_2qh22;;0;[]; -[];;;homie_down;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/sodumblol;light;text;t2_zsyc0;False;False;[];;It's funny, Horimiya and Battle Royale are the two manga I remember reading way back before I became a full on weeb (excluding OP/Naruto though). I remember reading around 8 years ago too now that I think back specifically;False;False;;;;1610232677;;False;{};gipbjv1;False;t3_ktunxs;False;True;t1_gio5w5t;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipbjv1/;1610274992;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Reed1981;;;[];;;;text;t2_tkg7kxi;False;False;[];;"Fullmetal Panic. - -Weird. And also weird how it didn't have that good of a budget. The action was okay, but I felt cheated of that super-cool 'bad' mech that never really showed up again.";False;False;;;;1610232681;;False;{};gipbk60;False;t3_ktunxs;False;True;t1_giolrdo;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipbk60/;1610274996;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;You got further than me lol;False;False;;;;1610232718;;False;{};gipbmrm;False;t3_ktunxs;False;True;t1_gip9hky;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipbmrm/;1610275035;1;True;False;anime;t5_2qh22;;0;[]; -[];;;keywi_;;;[];;;;text;t2_42w6vhup;False;False;[];;"fo eacxm -di";False;False;;;;1610232759;;False;{};gipbpkg;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipbpkg/;1610275077;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundane-Grapefruit69;;;[];;;;text;t2_7budu41s;False;False;[];;"I thought the pacing was off (I'm a manga reader) especially since their ""secrets"" came off as pretty tame. But it's the first episode and I love this manga and really looking forward to Saturdays! - -Not the fault of the show but christ, the subs on Hulu made me cringe. Dropped honorifics, missing words, poor grammar, translations that make no sense. I'm turning them off next episode.";False;False;;;;1610232811;;False;{};gipbt49;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipbt49/;1610275130;1;True;False;anime;t5_2qh22;;0;[]; -[];;;homie_down;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/sodumblol;light;text;t2_zsyc0;False;False;[];;I wouldn't call myself an annoying commenter, but things definitely began to fall off for me after a while. I absolutely loved the first ~70 chapters or so but just haven't found myself as interested in the side characters (although part of this is on me forgetting who they are so often). I think it's a series better suited towards an anime than a manga, at least for me personally, since fluff in manga is rarely able to hold my interest.;False;False;;;;1610232820;;False;{};gipbtrj;False;t3_ktunxs;False;False;t1_gioqvm3;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipbtrj/;1610275138;3;True;False;anime;t5_2qh22;;0;[]; -[];;;neuralnutwork42;;;[];;;;text;t2_8158qibl;False;False;[];;during school i lile the seasonal anime - i can just catch up on weekends or if i do watch during the week its only like 1-2 episodes but if i start binging then i wont get any work during the week. During breaks is when i like to binge finished seasons that are on my to-watch list;False;False;;;;1610232834;;False;{};gipbuph;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gipbuph/;1610275153;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Katalinya;;;[];;;;text;t2_14aki7;False;False;[];;I would think I’d be used to it by now, but my dumbass still sees her as a blonde even after all these years.;False;False;;;;1610232870;;False;{};gipbxe3;False;t3_ktunxs;False;True;t1_gio53qi;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipbxe3/;1610275194;2;True;False;anime;t5_2qh22;;0;[];True -[];;;Loriril;;;[];;;;text;t2_3a78we8j;False;False;[];;A bit fast but a very good episode;False;False;;;;1610232919;;False;{};gipc0y6;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipc0y6/;1610275247;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Holy crap this episode went so fast, is it the same in the source material?;False;False;;;;1610233021;;False;{};gipc80q;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipc80q/;1610275354;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;So at some she’s a perfect tsundere housewife?;False;False;;;;1610233038;;False;{};gipc96k;False;t3_ktunxs;False;False;t1_gio8gjt;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipc96k/;1610275371;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BossandKings;;;[];;;;text;t2_5ifr53k7;False;False;[];;This episode was great! Hori is beautiful and her reactions are funny, Hori sees Miyamura outside of school dressed and behaving differently and that surprises her because she didn't recognize him. it was rather funny when she told Miyamura that she doesn't want anyone else seeing him like that, that moment showed that she's a little bit posessive already. Miyamura and Ishikawa talking was a very nice way of building a friendship too, Miyamura seems to be a mature person letting Ishikawa confess to Hori after he told him that he wanted to ask her out, she rejected him, Hori was so nice letting it clear to Miyamura that she isn't being nice to him but she is interested and attracted to him and he surely felt relieved. i think i'll like her interactions with Miyamura more as the series progresses but this was a solid first impression. Every tecnical aspect of the show is flawless, good music, good sound design, good animation(i like that animation tecniche of putting color to the character shadows), everything on point. It will be a pain to wait a week but if it's as good as this episode it's well worth-it.;False;False;;;;1610233038;;False;{};gipc96r;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipc96r/;1610275371;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610233174;;False;{};gipciuo;False;t3_ktunxs;False;True;t1_gioyvyk;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipciuo/;1610275511;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ChromLight;;;[];;;;text;t2_11v4olzl;False;False;[];;"I was wondering that those ""baka"" were familiar to me, that's Asuna's VA for you. Now, just add some ""Darling"" and we would get Zero Two. That's definitely a contender for this season.";False;False;;;;1610233221;;False;{};gipcm7l;False;t3_ktunxs;False;True;t1_gio8onh;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipcm7l/;1610275564;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mistaarr;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Syhans;light;text;t2_finf6;False;False;[];;Chapters 67 and 37 respectively, so we're probably going to get the latter, but not the former. Unless the anime skips over a lot, which would be a shame.;False;False;;;;1610233253;;False;{};gipcojp;False;t3_ktunxs;False;False;t1_giodvut;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipcojp/;1610275600;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Eggs on sale with no limit on how many you can buy is something worth going to war for tbf;False;False;;;;1610233256;;False;{};gipcoq6;False;t3_ktunxs;False;False;t1_gioejlm;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipcoq6/;1610275603;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ElliotLadker;;;[];;;;text;t2_13ste7;False;False;[];;"Ahhh, I'm so happy this is getting animated, is my favourite rom-com manga and so far this chapter made me very giddy so I'm liking it so far. - -For the start, I always thought their ""secrets"" were kind of funny, I expected something kind of dramatic but then is not? Is a fun excuse to set them ""together"" in a kind of intimate setting and shared moments. - -So much fluff!! Saturdays are great.";False;False;;;;1610233328;;False;{};gipctuk;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipctuk/;1610275678;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Real_life_Zelda;;;[];;;;text;t2_55sn2jkg;False;False;[];;Season three was hell watching it weekly. I swear especially the second half has a cliffhanger each episode.;False;False;;;;1610233427;;False;{};gipd0ps;False;t3_ktw1my;False;True;t1_gioeeii;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/gipd0ps/;1610275781;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610233433;;False;{};gipd17i;False;t3_ktunxs;False;True;t1_giouumh;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipd17i/;1610275788;0;True;False;anime;t5_2qh22;;0;[]; -[];;;RescueRbbit_hs;;;[];;;;text;t2_10rtqx;False;False;[];;Any anime similar to this? I need some wholesome shit;False;False;;;;1610233505;;False;{};gipd66b;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipd66b/;1610275862;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ElliotLadker;;;[];;;;text;t2_13ste7;False;False;[];;"[Manga Spoilers](/s ""I don't know if it's popular or unpopular but I always loved the two sides of this manga, the story ""heavy"" part at first, and the kind of ""gag""/SOL manga afterwards"")";False;False;;;;1610233534;;False;{};gipd8aj;False;t3_ktunxs;False;True;t1_gio53qi;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipd8aj/;1610275893;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigfrickenorange;;;[];;;;text;t2_60ujz720;False;False;[];;Will this show be on crunchrol?;False;False;;;;1610233552;;False;{};gipd9k5;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipd9k5/;1610275911;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lunatoons291;;;[];;;;text;t2_16nhl574;False;False;[];;Glad it’s here!;False;False;;;;1610233563;;False;{};gipdae6;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipdae6/;1610275923;1;True;False;anime;t5_2qh22;;0;[]; -[];;;endium7;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/mysticflute;light;text;t2_5azlv;False;False;[];;wasn’t expecting much but that was really good!;False;False;;;;1610233766;;False;{};gipdoga;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipdoga/;1610276136;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Danilieri;;;[];;;;text;t2_14efkm;False;False;[];;So the backgrounds are really horrendous. Im getting oregaiu vibes. The hair colors really feel off. They feel inconsistent with the really great voice acting, which is much more down to earth and feels kinda real.;False;True;;comment score below threshold;;1610233769;;False;{};gipdoo7;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipdoo7/;1610276139;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;Sure, you can do that. Just remember that spoilers must still be tagged there.;False;False;;;;1610233911;;False;{};gipdyri;False;t3_ktunxs;False;True;t1_gip9bxi;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipdyri/;1610276289;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sean-ao;;;[];;;;text;t2_7sny9npg;False;False;[];;god ive been waiting so long for this;False;False;;;;1610233925;;False;{};gipdzqj;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipdzqj/;1610276303;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610234118;;False;{};giped7f;False;t3_ktunxs;False;True;t1_giow3my;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giped7f/;1610276507;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Soupkitten;;MAL;[];;http://myanimelist.net/profile/Soupkitten;dark;text;t2_nfzxm;False;False;[];;Meanwhile, /r/manga never runs out. 👍;False;False;;;;1610234171;;False;{};gipegzz;False;t3_ktunxs;False;True;t1_giod2mq;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipegzz/;1610276563;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fluffy9345;;;[];;;;text;t2_2od0d93r;False;False;[];;I want to eat your pancreas ending broke me. Far from feel good lol. But I will check out maid sama. Thank you.;False;False;;;;1610234288;;False;{};gipep7s;True;t3_ktvv43;False;True;t1_gioqxyu;/r/anime/comments/ktvv43/looking_for_anime_like_say_i_love_you_and_kimi_ni/gipep7s/;1610276686;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610234348;;False;{};gipetd5;False;t3_ktunxs;False;True;t1_gioxp6n;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipetd5/;1610276749;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;I instantly recognized Yamashita Daiki, aka Deku.;False;False;;;;1610234477;;False;{};gipf27y;False;t3_ktunxs;False;True;t1_gio8r06;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipf27y/;1610276882;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheExile4;;;[];;;;text;t2_jtc9d;False;False;[];;Yep Miyamura sure is pretty.;False;False;;;;1610234512;;False;{};gipf4n3;False;t3_ktunxs;False;False;t1_giobzdd;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipf4n3/;1610276919;11;True;False;anime;t5_2qh22;;0;[]; -[];;;melindypants;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_bb5qq9o;False;False;[];;Maybe just maybe! Even with the old OVAs I still couldn't be convinced.;False;False;;;;1610234516;;False;{};gipf4xw;False;t3_ktunxs;False;False;t1_giobryv;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipf4xw/;1610276924;10;True;False;anime;t5_2qh22;;0;[]; -[];;;ninjasaiyan777;;;[];;;;text;t2_f1htk;False;False;[];;Miyamura's is more about the piercings being banned by his school dress code;False;False;;;;1610234540;;False;{};gipf6lm;False;t3_ktunxs;False;True;t1_gio7ris;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipf6lm/;1610276949;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Srkiker930;;;[];;;;text;t2_28mlmssg;False;False;[];;I felt it kinda rushed;False;False;;;;1610234574;;False;{};gipf8zx;False;t3_ktunxs;False;True;t1_gipc80q;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipf8zx/;1610276986;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BossandKings;;;[];;;;text;t2_5ifr53k7;False;False;[];;I did find one too;False;False;;;;1610234677;;False;{};gipffz7;False;t3_ktunxs;False;True;t1_gio8onh;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipffz7/;1610277094;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PurpleRackSheets;;;[];;;;text;t2_55qgvxhv;False;False;[];;Is it best to watch the anime while reading the manga? Or start the manga after watching the season?;False;False;;;;1610234694;;False;{};gipfh6l;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipfh6l/;1610277111;1;True;False;anime;t5_2qh22;;0;[]; -[];;;troll-under-a-bridge;;;[];;;;text;t2_5nsjq78c;False;False;[];;"Totally agree. - -I love how this anime uses a lot of cliches and takes the mick out of them. - -So far(anime only) the comedy and seriousness is balanced pretty well.";False;False;;;;1610234761;;False;{};gipflrc;False;t3_ktunxs;False;True;t1_gio65pn;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipflrc/;1610277181;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610235060;;False;{};gipg66i;False;t3_ktunxs;False;True;t1_gio8onh;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipg66i/;1610277486;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kicksFR;;;[];;;;text;t2_4jaom6ys;False;False;[];;"for( ; ; ){ - - printf(“baka”); - -}";False;False;;;;1610235078;;False;{};gipg7e4;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipg7e4/;1610277505;4;True;False;anime;t5_2qh22;;0;[]; -[];;;tobeyornotoby;;;[];;;;text;t2_4offyg3q;False;False;[];;"I felt opposite when reading the manga. - -She is trendy and stylish at school, but at home she has to be strict, doesn't keep up appearances and gets excited over sales. She is basically a boring mom, which she could considere ""lame"" or ""not attractive"". While not being the biggest deal, I can see where she is comming from. - -While he has tatoos and piercings... which is unexpected, but doesn't have any other implications. Sure, maybe the school/law would't allow that, but to everyone else it would be a brief ""huh"" moment and they would carry on as normal. It has no implications for his personality.";False;False;;;;1610235244;;False;{};gipgilf;False;t3_ktunxs;False;False;t1_gio7ris;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipgilf/;1610277673;19;True;False;anime;t5_2qh22;;0;[]; -[];;;mynewaccount5;;;[];;;;text;t2_d1vwt;False;False;[];;Netflix.;False;False;;;;1610235473;;False;{};gipgy1o;False;t3_ktwrnr;False;False;t1_gioipbc;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/gipgy1o/;1610277908;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MrManicMarty;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MartySan/animelist;light;text;t2_8t0yy;False;False;[];;"[](#salute) - -Yes sir!";False;False;;;;1610235714;;False;{};giphekv;False;t3_ktunxs;False;True;t1_gipdyri;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giphekv/;1610278158;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"I didnt have any jet lag really. We left San Fransico at like 6pm and we landed in japan at like... 8-10pm? and got to our place at like 10:45pm, then walked around for an hour or so getting some general stuff and we ended up sleeping at like 1-2am, then woke up at like 8-9am and spent that day in Akihabara just getting used to the area and such, but we walked a TON that day so still a lot of work. - -No we were pressed for time in Kyoto so we didnt get to spend too much time there as we were trying to make it back to tokyo before the last trains stopped. - -My joints wont get better, my cartilage in my joints is non existant because of my body, so there isnt much there to save, its mostly just bone on bone grinding when i move my joints, they creak and such too. - -Where i stayed was next to the Kanda Shrine, another famous one, its in Akihabara. We walked through it on our way to the station each day. - -We did goto the Asakusa shrine though on our way to Sky Tree. We were there on Tanabata which was super cool. Got to do all that stuff tthere too. - -We wanted to goto fuji but the weather didnt agree with us so we did other stuff. We saw fuji on the way to Osaka though so it wasnt too bad.";False;False;;;;1610235951;;False;{};giphupu;False;t3_ktunxs;False;True;t1_gip665o;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giphupu/;1610278406;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Chapo42069;;;[];;;;text;t2_6ilox0lp;False;False;[];;I definitely enjoyed the first episode but some things that happened in it didn't string together well, and I think it is because of the pacing of the episode. (Hori and Miyamura moment at the end felt a little rushed);False;False;;;;1610236038;;False;{};gipi0rg;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipi0rg/;1610278495;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WeeabooVoid;;;[];;;;text;t2_6hwibewj;False;False;[];;"When the first episode of season 4 aired and all my friends were hyped, I realized that I haven't actually watched it yet. So I made a goal to speedrun the entire series, and I caught up in just under 3 weeks. - -I must say, I probably would've finished it that fast regardless because this series is addicting as hell.";False;False;;;;1610236095;;False;{};gipi4qd;False;t3_ktw1my;False;True;t3_ktw1my;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/gipi4qd/;1610278554;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nanashi-74;;;[];;;;text;t2_5x0k2vam;False;False;[];;Out of all the First episodes of this STACKED season this one was the most enjoyable. I'd really like to watch more romance rom coms but I don't know which ones are the great ones, they always feel the same when I'm looking for them;False;False;;;;1610236254;;False;{};gipifeq;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipifeq/;1610278712;2;True;False;anime;t5_2qh22;;0;[]; -[];;;vSwifty;;;[];;;;text;t2_5lhzq;False;False;[];;The steroid ball hits them and they explode into a cloud of blood;False;False;;;;1610236481;;False;{};gipiv6y;False;t3_ktwrnr;False;False;t1_gip3xjg;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/gipiv6y/;1610278947;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabadaba08;;;[];;;;text;t2_28dgxqe9;False;False;[];;Man, I've had this in my Plan to Read for the longest time. Think I'm gonna binge read it now, cuz I love the anime just from the first episode.;False;False;;;;1610236626;;False;{};gipj55o;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipj55o/;1610279097;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BenDTU;;;[];;;;text;t2_mbfrs;False;False;[];;"Much prefer to have a whole show available and watch it at whatever rate I feel like. - -Also if a short show goes bad but you’re still interested to see how it ends you can just get it over with ASAP.";False;False;;;;1610236703;;False;{};gipjahj;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gipjahj/;1610279179;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HeatBlaze01;;;[];;;;text;t2_w8waw;False;False;[];;this is a religion I can get behind;False;False;;;;1610236787;;False;{};gipjgbk;False;t3_ktunxs;False;True;t1_giooyws;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipjgbk/;1610279267;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PaulWalkerIV;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MasonCrosbysFoot;light;text;t2_11thw0;False;False;[];;"So this is the first anime I’m keeping up with, can’t wait to see how it turns out. First episode impressions - definitely living up to the hype. Unlike other romcoms I’ve seen previously the humor is on point. One of those times where I had a shit eating grin on my face the entire 20 minutes. - -It seems a bit fast paced, but still pretty enjoyable. The OP felt kinda sleepy at first, although it gives a chill vibe. Now I have to suppress the urge to binge the manga 😔";False;False;;;;1610236924;;False;{};gipjppm;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipjppm/;1610279411;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Deleeson;;;[];;;;text;t2_5xaz4btz;False;False;[];;Pretty good first episode, ngl;False;False;;;;1610237015;;False;{};gipjw5q;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipjw5q/;1610279509;1;True;False;anime;t5_2qh22;;0;[]; -[];;;QuadraKev_;;;[];;;;text;t2_pdajvvt;False;False;[];;"It's not about having a ""secret identity"" as much as it is about having an ""unseen side"" to them compared to how they are at school. It's just Miyamura's happens to be a secret.";False;False;;;;1610237109;;False;{};gipk2l9;False;t3_ktunxs;False;True;t1_gio7xzy;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipk2l9/;1610279607;1;True;False;anime;t5_2qh22;;0;[]; -[];;;J0HN__L0CKE;;MAL;[];;http://myanimelist.net/animelist/J0HN_L0CKE;dark;text;t2_caftb;False;False;[];;So this seems quite wholesome, and looks like there won't be too much drama in the way of love triangles or the like (at least I hope this will be the case).;False;False;;;;1610237160;;False;{};gipk5xq;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipk5xq/;1610279659;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;I love that it took a good ten seconds for the hat to fall back down at the beginning;False;False;;;;1610237205;;False;{};gipk914;True;t3_ktwrnr;False;False;t1_giozxmq;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/gipk914/;1610279706;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Chandrian-the-8th;;;[];;;;text;t2_3ezsaeoo;False;False;[];;Welcome to the Miyamura Cult, you're gonna love your stay.;False;False;;;;1610237272;;False;{};gipkdla;False;t3_ktunxs;False;False;t1_giojdr7;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipkdla/;1610279774;17;True;False;anime;t5_2qh22;;0;[]; -[];;;LakerBlue;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LakerBlue;light;text;t2_afaca;False;False;[];;"I men’s does anyone keep up appearances while doing chores and housework? It’d be weird for her if she didn’t dress down. - -Unless we mean her personality. Because I’d say her personality change is more notable, she seems much more emotional at home whereas she seems to act more reserved and normal at school.";False;False;;;;1610237604;;False;{};gipl06u;False;t3_ktunxs;False;False;t1_gio8gjt;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipl06u/;1610280128;5;True;False;anime;t5_2qh22;;0;[]; -[];;;LakerBlue;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LakerBlue;light;text;t2_afaca;False;False;[];;I agree, I think this anime has excellent presentation. It’s a visual delight and has good voice acting.;False;False;;;;1610237683;;False;{};gipl5qb;False;t3_ktunxs;False;True;t1_gio5w5t;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipl5qb/;1610280215;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ow_you_shot_me;;;[];;;;text;t2_6dc8k;False;False;[];;Right? This is gonna be good!;False;False;;;;1610237984;;False;{};giplr4q;False;t3_ktunxs;False;True;t1_gio5fi9;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giplr4q/;1610280553;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ENKlDU;;;[];;;;text;t2_4scvchzo;False;False;[];;"the production is amazing bless cloverworks however.. the pacing and transitions were a big wtf - -i felt like things were just happening with barely any buildup to anything it didnt even feel like Hori was popular or whatever - -feels like the stuff was missing or they just skimped pass things, really hoping the rest of the series isnt like ep1 because it really has potential :/";False;False;;;;1610238181;;1610238985.0;{};gipm4xp;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipm4xp/;1610280761;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;Kinda, yes.;False;False;;;;1610238220;;False;{};gipm7kn;False;t3_ktunxs;False;True;t1_gipc80q;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipm7kn/;1610280802;3;True;False;anime;t5_2qh22;;0;[]; -[];;;smoledman;;;[];;;;text;t2_d8z79;False;False;[];;Funimation;False;False;;;;1610238334;;False;{};gipmflc;False;t3_ktunxs;False;True;t1_gipd9k5;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipmflc/;1610280924;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bigfrickenorange;;;[];;;;text;t2_60ujz720;False;False;[];;Also found it on hulu if anyone doesn’t have funimation;False;False;;;;1610238363;;False;{};gipmhku;False;t3_ktunxs;False;True;t1_gipmflc;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipmhku/;1610280956;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HattoriSaizoII;;;[];;;;text;t2_72680hhu;False;False;[];;My substitute feel-good anime for Tonikaku Kawaii is looking good, so far.;False;False;;;;1610238511;;False;{};gipmrot;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipmrot/;1610281109;2;True;False;anime;t5_2qh22;;0;[]; -[];;;XLightThief;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/frozen_lights;light;text;t2_5o80b;False;False;[];;"The visuals are super stunning. Is this the power of current age anime production or is CloverWorks just that good? - -Haruka Tomatsu as Hori is perfect. - -Miyamura with his look outside of school caught me off guard. Definitely got baited and labelled him as a hooligan but I was wrong and he's cool as hell. - -Looking good so far.";False;False;;;;1610238611;;False;{};gipmyp7;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipmyp7/;1610281216;1;False;False;anime;t5_2qh22;;0;[]; -[];;;LakerBlue;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LakerBlue;light;text;t2_afaca;False;False;[];;"Maybe silly is the wrong word but I have to say it seems a little dramatic, at least on Hori’s end. - -I get why Miyamura keeps his stuff to himself to say out of trouble, and also because of his personality and confidence issues. But given Hori’s personality it just seems a little dramatic that it’s such a secret. She even said she doesn’t care if her reputation is hurt by hanging with him so I’m not sure she’s care if her reputation was hurt by telling her friends she has to look after her lil brother every day after work. - -I’m not saying it’s unrealistic at all, just a little dramatic (but believable) that it’s such a secret. Not that I think people would look down on her for being a housewife in the first place.";False;False;;;;1610238709;;False;{};gipn5e9;False;t3_ktunxs;False;True;t1_giof9we;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipn5e9/;1610281317;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;"The story just moves pretty fast. It's true they skipped a big part of chapter two that explains a bit better what's up with Hori's ""secret"" and why she is attached to Miyamura. But honestly, I don't feel you really need an explanation for why she is attached to him since their chemestry is just really good. So I'm fine with them skipping things like this to fit others.";False;False;;;;1610238840;;False;{};gipnefu;False;t3_ktunxs;False;False;t1_gioel2u;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipnefu/;1610281456;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;It's kinda important but at the same time it isn't. Since you can do the same thing that chapter did with other chapters.;False;False;;;;1610238962;;False;{};gipnmul;False;t3_ktunxs;False;False;t1_gioz8fw;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipnmul/;1610281591;17;True;False;anime;t5_2qh22;;0;[]; -[];;;shanaoo;;;[];;;;text;t2_7dl0hdzb;False;False;[];;It wont get adapted but Im pretty sure everyone in the show universally agrees that Yanagi is best girl.;False;False;;;;1610239045;;False;{};gipnspe;False;t3_ktunxs;False;False;t1_gioep8r;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipnspe/;1610281679;21;True;False;anime;t5_2qh22;;0;[]; -[];;;chinatownjon;;;[];;;;text;t2_2llv7rko;False;False;[];;Like many said, it depends for me. I don't mind weekly, but if I really love the show (haikyu, world trigger, slime, aot) I practice discipline and wait so I can binge HARD. Really let's me get into the story super deep and no waiting for cliffhangers and stuff. Sometimes to tie my excitement over I'll rewatch older episodes as a refresher, which is what I'll probably be doing with world trigger because I'm unbelievably excited but there's only one new episode haha;False;False;;;;1610239190;;False;{};gipo2xq;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gipo2xq/;1610281841;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Chitinvol;;;[];;;;text;t2_10sw2o;False;False;[];;My favorite part is the scene just before the ED starts. I forgot Miyamura's reaction and always wondered why Hori was so afraid of him being stolen by one of the guys after they start dating.;False;False;;;;1610239224;;False;{};gipo57k;False;t3_ktunxs;False;True;t1_gio53qi;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipo57k/;1610281877;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dankest_niBBa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_314yh1er;False;False;[];;"I watch the first episode on release day, then watch whatever i feel like watching. -Now i have jujutsu at episode 7, majo no tabitabi at 10 and akaduma at 5, i don't recommend this method tho.";False;False;;;;1610239258;;False;{};gipo7gr;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gipo7gr/;1610281912;1;True;False;anime;t5_2qh22;;0;[]; -[];;;just_kei;;;[];;;;text;t2_y4swg0y;False;False;[];;I watch even old anime weekly.;False;False;;;;1610239295;;False;{};gipo9za;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gipo9za/;1610281954;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ultimatesorceress;;;[];;;;text;t2_pe3mlhr;False;False;[];;I love how casual Miyamura is, especially him having the exact same reaction to the prospect of him having a crush on Hori or Ishikawa. The bi energy is amazing.;False;False;;;;1610239383;;False;{};gipog59;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipog59/;1610282047;12;True;False;anime;t5_2qh22;;0;[]; -[];;;hiddentheory;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/hiddentheory;light;text;t2_h1i22;False;False;[];;Sorry, he was already taken by Ishikawa.;False;False;;;;1610239440;;False;{};gipokaj;False;t3_ktunxs;False;True;t1_gio9c15;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipokaj/;1610282112;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TokiWaKita;;;[];;;;text;t2_5x93wszo;False;False;[];;"> Ponytails are the best - -***[Kyon intensifies]*** - -[]( #haruhiisnotamused)";False;False;;;;1610239502;;False;{};gipoomr;False;t3_ktunxs;False;True;t1_gioez3f;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipoomr/;1610282179;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FarrelMFajar;;;[];;;;text;t2_13bxx0;False;False;[];;The cells would thank the steroid for ending their lives.;False;False;;;;1610239776;;False;{};gipp8x7;False;t3_ktwrnr;False;False;t1_gip3xjg;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/gipp8x7/;1610282492;40;True;False;anime;t5_2qh22;;0;[]; -[];;;happybaby00;;;[];;;;text;t2_1er0hdyg;False;False;[];;Lol, i was 13 and now I'm 19. Time flies;False;False;;;;1610240119;;False;{};gippx0b;False;t3_ktunxs;False;False;t1_gio67d6;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gippx0b/;1610282878;4;True;False;anime;t5_2qh22;;0;[]; -[];;;JDantesInferno;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/BigBodyBepis;light;text;t2_20ieunh;False;False;[];;I feel like I go against the current a little bit here. I watch hype shows with cliffhangers weekly yo feel the suspense, and choose to “binge” a few episodes at a time of romance/comfy shows.;False;False;;;;1610240132;;False;{};gippxyl;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gippxyl/;1610282893;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fortrane;;;[];;;;text;t2_3y3z93of;False;False;[];;Yes also a new waifu;False;False;;;;1610240368;;False;{};gipqe5d;False;t3_ktunxs;False;True;t1_gio8onh;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipqe5d/;1610283160;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mirikuta;;;[];;;;text;t2_42tqgghk;False;False;[];;im actually sobbing he's so pretty what the fuck. i just finished watching ep 1 of sk8 the infinity and my brain is rotting from how pretty everyone is 😭;False;False;;;;1610240472;;False;{};gipql3y;False;t3_ktunxs;False;True;t1_giojdr7;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipql3y/;1610283274;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AntaresW4;;;[];;;;text;t2_a3lmr;False;False;[];;Rainy day episode when;False;False;;;;1610240605;;False;{};gipqu6d;False;t3_ktunxs;False;False;t1_giodmy7;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipqu6d/;1610283420;13;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomWolf83;;;[];;;;text;t2_wxq1l;False;False;[];;Haruka Tomatsu is just ridiculously good when it comes to romantic comedies. She always seems to shine the best when she's voicing a female MC, especially those with a tomboyish streak.;False;False;;;;1610240688;;False;{};gipqznp;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipqznp/;1610283513;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CT-96;;MAL;[];;https://myanimelist.net/animelist/CT-96;dark;text;t2_usy8p;False;False;[];;Holy shit I get the hype now. I love all the characters we've met so far. The OP was so chill and the graphics were awesome. Miyamura really fucked up with what he said to Toru about him and Hori. I can't wait to meet the rest of the people in the OP. I can already tell I'm gonna binge read the manga after the series is done lol;False;False;;;;1610240692;;False;{};gipqzyj;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipqzyj/;1610283518;2;True;False;anime;t5_2qh22;;0;[]; -[];;;htisme91;;;[];;;;text;t2_179wah;False;False;[];;I like a good binge.;False;False;;;;1610240694;;False;{};gipr03j;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gipr03j/;1610283520;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aerohed;;;[];;;;text;t2_xjmyo;False;False;[];;"It moved a bit fast compared to the manga iirc, but I still enjoyed this plenty. This'll probably be the new fluffy, happy show I have after Tonikawa ended a few weeks ago. - -Also, legend states that Hori is still saying ""baka"" at this very moment.";False;False;;;;1610240743;;False;{};gipr3ec;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipr3ec/;1610283570;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AntaresW4;;;[];;;;text;t2_a3lmr;False;False;[];;That’s the best part of this series, it’s so grounded in reality, but the characters are so well written that it never becomes a bore to watch(at least that’s how I felt when reading the manga).;False;False;;;;1610240806;;False;{};gipr7o4;False;t3_ktunxs;False;False;t1_gip1s7c;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipr7o4/;1610283641;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Man_Without_Fear;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PlsBuff;light;text;t2_a37ql;False;False;[];;I say I’ll watch weekly or stretch out a series but I normally end up binging it anyways.;False;False;;;;1610240960;;False;{};giprhxe;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/giprhxe/;1610283813;1;True;False;anime;t5_2qh22;;0;[]; -[];;;scot911;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/scot911;light;text;t2_e6v5y;False;False;[];;Huh. I looked up the manga and I'm honestly surprised because I didn't believe you. Chapter 1 really has the exact same lightning quick pacing holy shit. Seems like they wanted the introductory stuff out of the way A.S.A.P. so they could get to the meat of the story.;False;False;;;;1610240976;;1610241740.0;{};giprizu;False;t3_ktunxs;False;False;t1_giocvt5;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giprizu/;1610283830;52;True;False;anime;t5_2qh22;;0;[]; -[];;;Koioua;;;[];;;;text;t2_dw1s0f;False;False;[];;Bro I've been craving a nice grounded romance to watch in the past couple of seasons. Even if the pacing seems a bit...jumpy at the start, I'm excited for this.;False;False;;;;1610241475;;False;{};gipshoh;False;t3_ktunxs;False;True;t1_gio7xzy;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipshoh/;1610284403;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;man funimation gets all the sick shows;False;False;;;;1610241637;;False;{};gipssg8;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipssg8/;1610284580;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610241920;;False;{};giptb93;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giptb93/;1610284893;1;True;False;anime;t5_2qh22;;0;[]; -[];;;raymondl942;;;[];;;;text;t2_jhwws;False;False;[];;Just when I thought this season couldn't get any stronger.;False;False;;;;1610241979;;False;{};giptf7j;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giptf7j/;1610284956;4;True;False;anime;t5_2qh22;;0;[]; -[];;;scot911;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/scot911;light;text;t2_e6v5y;False;False;[];;Honestly as an anime only (although I did read chapter 1 because I didn't believe that this only covered 2 chapters. Holy shit the pacing is lightning quick even in the manga) I can see that. If she had blond hair and was more of a gyaru instead of being the perfect popular student I could believe her secret actually being well... a secret. Although gyaru's in romance manga has only really become popular in the last couple of years.;False;False;;;;1610242027;;1610242387.0;{};gipti88;False;t3_ktunxs;False;True;t1_giobryv;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipti88/;1610285005;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cherrypark17;;;[];;;;text;t2_1oxlhm5j;False;False;[];;this is the first I'm experiencing my favorite manga adapted into an anime (since I don't read manga very often) and I couldn't be happier. gahh I love miyamura sm;False;False;;;;1610242193;;1610242526.0;{};gipttei;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipttei/;1610285188;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RillaBam;;;[];;;;text;t2_7pkfy9ft;False;False;[];;I hope it turns out well, the manga is one of my favorites ever;False;False;;;;1610242285;;False;{};giptzkv;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giptzkv/;1610285290;1;True;False;anime;t5_2qh22;;0;[]; -[];;;altaccount0451;;;[];;;;text;t2_15l2gy;False;False;[];;"Okay I'm kind of in, Interested to see where this goes. - -The comments by the teacher at the beginning was a real hurdle though, whenever there's an adult who makes comments like that, you have to wonder if it's a part of the story, which is fine, or if its the authors attempt at humor, because if so YIKES. Like, a grown man, someone in a position of authority, commenting on the chest of a student regardless of age is just plain creepy. Anyway, once I was able to get over that, I enjoyed it quite a bit more. - -I thought her recovery from crying was quite nice, a good way to mend the relationship haha. - -Seems like the characters are reasonably mature, and not too bashful about their feelings, could be completely wrong though, curious to see where this goes!";False;False;;;;1610242543;;False;{};gipugmr;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipugmr/;1610285579;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SgtExo;;;[];;;;text;t2_cnfzs;False;False;[];;That sounds perfect. A nice SoL romance is always welcome, especially when it is so beautifully presented.;False;False;;;;1610242597;;False;{};gipuk84;False;t3_ktunxs;False;True;t1_gioqvm3;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipuk84/;1610285637;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Thrashinuva;;MAL;[];;https://myanimelist.net/animelist/Thrashinuva;dark;text;t2_j9cbc;False;False;[];;Pleasantly surprised but the ED was the best part.;False;False;;;;1610242602;;False;{};gipukmf;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipukmf/;1610285644;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Jazr55;;;[];;;;text;t2_29xamtbv;False;False;[];;I've only seen an episode of this, and I already want it to have a season 2.;False;False;;;;1610242734;;False;{};giputbk;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giputbk/;1610285788;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Steampunkvikng;;;[];;;;text;t2_ghzaj;False;False;[];;"The ""Hori is blonde"" thing is just because her hair isn't usually shaded at all in the manga, so it comes off as light colored/blonde, and every time a color page shows up there's a thousand ""damn I forgot she was a brunette"" comments.";False;False;;;;1610242795;;False;{};gipuxal;False;t3_ktunxs;False;False;t1_gipti88;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipuxal/;1610285857;9;True;False;anime;t5_2qh22;;0;[]; -[];;;KoiPuff;;;[];;;;text;t2_40iftl35;False;False;[];;I’m guessing the pacing was so fast because this was a 4koma? Never read the manga but I was getting intense 4koma vibes (set up, punchline, beat, reaction) from every single scene.;False;False;;;;1610242898;;False;{};gipv482;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipv482/;1610285977;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MagpieFirefly;;;[];;;;text;t2_4caq751v;False;False;[];;Seriously, good lord, when he was jumping over that fence, that is the *good stuff*;False;False;;;;1610242938;;False;{};gipv6ur;False;t3_ktunxs;False;False;t1_giobzdd;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipv6ur/;1610286021;35;True;False;anime;t5_2qh22;;0;[]; -[];;;fatalystic;;;[];;;;text;t2_xy716;False;False;[];;"Actually what they mean is that the last 60 chapters or so have all been ""filler"". Because turns out the actual story ended long ago, everything since has been assorted sidestories from the original webmanga.";False;False;;;;1610242948;;False;{};gipv7k8;False;t3_ktunxs;False;True;t1_gior5xw;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipv7k8/;1610286033;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Unit88;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Intelligent_One;light;text;t2_5fhy6;False;False;[];;"> it’s such a secret. - -But that's what was just said, it's *not* such a secret. She acts different in school than with her brother, and maybe she's a bit embarrassed about the situation, but there was nothing indicating that she's actually keeping it a secret or anything, or particularly hiding it.";False;False;;;;1610242949;;False;{};gipv7n3;False;t3_ktunxs;False;False;t1_gipn5e9;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipv7n3/;1610286034;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Xaos-Legion;;;[];;;;text;t2_1sgkrbn;False;False;[];;Let's gooooooooo;False;False;;;;1610242980;;False;{};gipv9qe;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipv9qe/;1610286069;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Unit88;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Intelligent_One;light;text;t2_5fhy6;False;False;[];;"Congratulations, by some miracle, I happened to see you asking for romcom recs, and now you get to learn of a masterpiece: - -<Jitsu wa Watashi wa> is IMO one of the best romcom manga of all time. - -It's a really really great (finished) romcom, that doesn't start particularly strong sadly (which became a big issue for it, because the anime adaptation only adapted that early part where it still feels kinda generic, so a lot of people skipped over it, also because some people mistakenly tag it as a harem which it very much isn't) but it gets better and better as the story goes, and it has one of the best finales I've ever seen in anything, topped with some chapters of epilogue after it as well. - -While the story of course has a lot of supernatural elements, the relationships between the characters felt a lot more relatable than in most other romcoms, both between the main couple (which not only does get established, but it's also way less dragged out than in most cases, especially since there's more of the manga after it happens than before) but also the side characters, which are all surprisingly fleshed out, and all of the important side characters have their own things and relationships, and their own little stories that makes it feel much more like they're actually there and have their own lives instead of just being around the main characters. - -The story is really great, and the comedy is done very well too, plus I think most of the characters are very entertaining and likeable, and are not just one dimensional. Also, there's pretty much no bullshit misunderstanding based drama, every problem that comes up feels understandable. - -After the last time I reread I confirmed it that it is very much my favourite manga ever, and I try to recommend it every chance I get.";False;False;;;;1610243280;;False;{};gipvtxa;False;t3_ktunxs;False;False;t1_gioys69;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipvtxa/;1610286424;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MNsquatch777;;;[];;;;text;t2_8yijdq5;False;False;[];;I have never read the manga, so this all new to me. But I feel like I'm really going to enjoy this.;False;False;;;;1610243314;;False;{};gipvw7b;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipvw7b/;1610286467;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Unit88;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Intelligent_One;light;text;t2_5fhy6;False;False;[];;I'm caught up with the manga and I don't remember the last time there was anything particularly romance focused things happening. It's almost pure comedy at this point (which is not a bad thing), unless my memory is failing me.;False;False;;;;1610243354;;False;{};gipvyxr;False;t3_ktunxs;False;True;t1_gioybdf;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipvyxr/;1610286512;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fatalystic;;;[];;;;text;t2_xy716;False;False;[];;"> Wait I actually forgot why does he have to wear a jacket? - -He will likely get expelled if the school finds out about his tats.";False;False;;;;1610243431;;False;{};gipw44j;False;t3_ktunxs;False;False;t1_giojdr7;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipw44j/;1610286603;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LakerBlue;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LakerBlue;light;text;t2_afaca;False;False;[];;I don't think it's a super secret but at the same time it seems odd none of her friends know. Idk, I'll have to reserve judgement till I see more of her interactions with her friends, but it seems no one at school knows, even that Yuki girl who she seems to be close with. Just seems weird it never came up in passing once unless she was somewhat reluctant to bring it up. I don't think she's embarrassed of it or anything but it also doesn't feel like a coincidence no one knows given how often it's implied she's asked to hang out.;False;False;;;;1610243468;;False;{};gipw6mq;False;t3_ktunxs;False;True;t1_gipv7n3;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipw6mq/;1610286648;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;fatalystic;;;[];;;;text;t2_xy716;False;False;[];;Bakabakabaka 10 hours Challenge;False;False;;;;1610243469;;False;{};gipw6pd;False;t3_ktunxs;False;True;t1_gio9ezj;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipw6pd/;1610286649;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CoolFiverIsABabe;;;[];;;;text;t2_11jwf7gv;False;False;[];;"Depends on the anime. I'm trying to binge watch AoT from the beginning to get to the weekly release of the final season but it's something that I can only do in bursts. - -I could watch something like Kanojo Okarishimasu all at once.";False;False;;;;1610243484;;False;{};gipw7pn;False;t3_ktuoj0;False;False;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gipw7pn/;1610286669;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Castform5;;MAL;[];;https://myanimelist.net/animelist/Castform5;dark;text;t2_141rtc;False;False;[];;I can get along fine with weekly schedule, since it's only less than an hour per day, but for absolute garbage tier trash anime I prefer binge watching. Things like repeat animations and art assets are much easier to pick out on a single watch session.;False;False;;;;1610243554;;False;{};gipwcgh;False;t3_ktuoj0;False;False;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gipwcgh/;1610286754;1;True;False;anime;t5_2qh22;;0;[]; -[];;;biskutjacob;;;[];;;;text;t2_15p0r3;False;False;[];;The pacing is so fast sometimes i have to figure out how, why and what is going on right now;False;False;;;;1610243640;;False;{};gipwi56;False;t3_ktunxs;False;False;t1_gio7xzy;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipwi56/;1610286852;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KreateOne;;;[];;;;text;t2_1y11nmzw;False;False;[];;It’s dubbed on Netflix and I believe funimation;False;False;;;;1610243881;;False;{};gipwya8;False;t3_ktwrnr;False;False;t1_gioipbc;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/gipwya8/;1610287141;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dsahgiosahgioadsh;;;[];;;;text;t2_9aa6vk09;False;False;[];;"So far, Higurashi Gou is the only anime I've ever stuck with weekly. (And I've been watching anime for years.) Part of that is because I usually wait for dubs, and part of that is because I'm hesitant to add even more shows to my list of non-anime shows that I already follow as they air. I have nothing against watching shows weekly; I would just need to catch up with a lot of other stuff before I considered doing it more often for anime.";False;False;;;;1610243984;;False;{};gipx57v;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gipx57v/;1610287263;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Thany_Bomb;;;[];;;;text;t2_2b1f82em;False;False;[];;"I have conflicted feelings about this. - -[General spoilers](/s ""On one hand, this reminds me that the premise and the story were really good and fast-paced back then, which feels very nostalgic."") - -[General spoilers](/s ""On the other, a huge problem I have with current Horimiya is how abusive Hori is, but watching this shows me that she was abusive at the start too, I just didn't remember it."") - -[General spoilers](/s ""Regarding the adaptation itself, I think it's pretty good, but they're going too fast. The manga was already very fast paced, in a good way, but this feels like they're rushing through the material."")";False;False;;;;1610244038;;False;{};gipx8wz;False;t3_ktunxs;False;True;t1_gio53qi;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipx8wz/;1610287333;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FemaleTigress;;;[];;;;text;t2_3x9x5br9;False;False;[];;I really love their dynamic too.;False;False;;;;1610244746;;False;{};gipykqg;False;t3_ktunxs;False;True;t1_gio65pn;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipykqg/;1610288191;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ynairo;;;[];;;;text;t2_13fbnf;False;False;[];;I remember Horimiya anime being a kind of meme with those fake season charts listing the show, its great to finally see the real thing.;False;False;;;;1610244991;;False;{};gipz17x;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipz17x/;1610288491;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sworp123;;;[];;;;text;t2_70kjkn0w;False;False;[];;Yeah pretty much. Steriods just nuke the general area to get rid of what ever the hell is making us sick and it's display pretty damn well here lmao.;False;False;;;;1610245091;;False;{};gipz7ot;False;t3_ktwrnr;False;False;t1_gioywfd;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/gipz7ot/;1610288606;14;True;False;anime;t5_2qh22;;0;[]; -[];;;TicketCool;;;[];;;;text;t2_9jrr6yuo;False;False;[];;And that's how it should be tbh. Schools these days focus on everything other than education.;False;False;;;;1610245181;;False;{};gipzdny;False;t3_ktunxs;False;True;t1_giodo1e;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipzdny/;1610288711;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Flare_Knight;;;[];;;;text;t2_v5stf;False;False;[];;Without a doubt.;False;False;;;;1610245207;;False;{};gipzff8;False;t3_ktwrnr;False;False;t1_gipp8x7;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/gipzff8/;1610288746;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Charlesjandrey;;;[];;;;text;t2_8qbkedmh;False;False;[];;After 5 years of waiting its finally here;False;False;;;;1610245212;;False;{};gipzfoj;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipzfoj/;1610288752;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BroskyGaming;;;[];;;;text;t2_2vi1xcuq;False;False;[];;Great adaptation so far although they skipped quite a bit of the minor parts like miyamura actually finding the brother;False;False;;;;1610245250;;False;{};gipzi7u;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipzi7u/;1610288798;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SkyLETV;;MAL;[];;https://myanimelist.net/profile/SkyLETV;dark;text;t2_bn8y64t;False;False;[];;I love it! I don't know what else to say xD... Ah, Hori best girl!;False;False;;;;1610245355;;False;{};gipzpe0;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gipzpe0/;1610288926;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Minisabel;;;[];;;;text;t2_2a3z01mv;False;False;[];;"S1 is being highly underrated because of how good following seasons are (and probably how hype it was). - -It already had beautiful visuals, stunning animation, one of the best soundtracks out there, and of course an outstanding level of entertainment provided. - -Although it did have some issues (comedy, weird cartoonish thick lines, pacing for some) and was understandably not that complex character wise, calling it ""nothing more than decent"" is a huge reach.";False;False;;;;1610245398;;False;{};gipzsd6;False;t3_ktw1my;False;False;t1_giodlny;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/gipzsd6/;1610288976;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zptc;;;[];;;;text;t2_3et1t;False;False;[];;"A girl who looks like Ritsu and a Yamada-style leg shot. K-On is my favorite anime so these are both very good things. - -Never heard of Horimiya until the anime was announced, but I am fully on board now.";False;False;;;;1610245563;;False;{};giq03m9;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq03m9/;1610289200;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Snipe-Out;;;[];;;dark;text;t2_5604j7dg;False;False;[];;"I remember a guy with ""I'll officially shit my pants if Horimiya received an actual anime adaptation"" signature in MAL, will ping him sometime today to know his reactions now.";False;False;;;;1610245583;;False;{};giq04z8;False;t3_ktunxs;False;False;t1_giopi8y;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq04z8/;1610289222;15;True;False;anime;t5_2qh22;;0;[]; -[];;;TrueDripDamage;;;[];;;;text;t2_4wjj7gxy;False;False;[];;I realise now that the entire premise of this anime is based on gap moe;False;False;;;;1610245702;;False;{};giq0d1v;False;t3_ktunxs;False;False;t1_gios4lp;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq0d1v/;1610289365;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Mizerka;;;[];;;;text;t2_99g4a;False;False;[];;manga still better, but it's nice :) the OP was very cool as well.;False;False;;;;1610245740;;False;{};giq0fnh;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq0fnh/;1610289414;0;True;False;anime;t5_2qh22;;0;[]; -[];;;iJubag;;;[];;;;text;t2_8f4oa;False;False;[];;You put S1... does that mean there's a second season?;False;False;;;;1610245838;;False;{};giq0mdf;False;t3_ktwrnr;False;False;t3_ktwrnr;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/giq0mdf/;1610289529;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Daksh23;;;[];;;;text;t2_2ytnuyk4;False;False;[];;"Nope. It's a web toon adapted into a manga. - -Edit: web comic";False;False;;;;1610246103;;1610246352.0;{};giq145o;False;t3_ktunxs;False;True;t1_gipv482;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq145o/;1610289839;2;True;False;anime;t5_2qh22;;0;[];True -[];;;TrueDripDamage;;;[];;;;text;t2_4wjj7gxy;False;False;[];;I want to see the rankings damnit;False;False;;;;1610246130;;False;{};giq15vh;False;t3_ktunxs;False;True;t1_giodmy7;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq15vh/;1610289871;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TrueDripDamage;;;[];;;;text;t2_4wjj7gxy;False;False;[];;Miyamura the bi icon;False;False;;;;1610246152;;False;{};giq179o;False;t3_ktunxs;False;False;t1_gio9c15;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq179o/;1610289895;14;True;False;anime;t5_2qh22;;0;[]; -[];;;KoiPuff;;;[];;;;text;t2_40iftl35;False;False;[];;"Wikipedia says it’s a web manga in “a four-panel style” (4koma) Not every web comic is a webtoon my dude. - -P.S Happy Cake Day.";False;False;;;;1610246277;;False;{};giq1fpq;False;t3_ktunxs;False;True;t1_giq145o;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq1fpq/;1610290149;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Philongta;;;[];;;;text;t2_2ujg5t11;False;False;[];;I love the artistic visuals they showed in the episode with the color splashes! I really enjoyed this episode and have high hopes for the anime coming from a manga reader!;False;False;;;;1610246290;;False;{};giq1gl4;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq1gl4/;1610290290;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Pieman124;;;[];;;;text;t2_ynjgx;False;False;[];;Instantly reminded how much I love this series;False;False;;;;1610246331;;False;{};giq1jar;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq1jar/;1610290362;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Mathmango;;;[];;;;text;t2_cc9gd;False;False;[];;At some point I forget who's who at a glance (once a lot of side characters get the focus) so really stand out hair kinda helps;False;False;;;;1610246432;;False;{};giq1qbw;False;t3_ktunxs;False;False;t1_giolrer;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq1qbw/;1610290473;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Daksh23;;;[];;;;text;t2_2ytnuyk4;False;False;[];;Oh, I've read the web comic as well. That was my mistake in typing it out. Also, thanks for pointing it out.;False;False;;;;1610246448;;False;{};giq1rfy;False;t3_ktunxs;False;True;t1_giq1fpq;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq1rfy/;1610290493;2;True;False;anime;t5_2qh22;;0;[];True -[];;;momopeach7;;;[];;;;text;t2_h1hg6;False;False;[];;So happy this finally got an adaption. Always wondered why it didn’t have one before.;False;False;;;;1610246510;;False;{};giq1vj0;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq1vj0/;1610290562;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kisspirit;;;[];;;;text;t2_ao7j2;False;False;[];;I understand where you're coming from tbh! Buy if you haven't read the manga before I just want to say that this is actually how it is in the manga as well! They adapted the first three chapters while taking out some parts of the second one which will probably show up in a bit! But it's actually really fast paced in the manga as well.;False;False;;;;1610246558;;False;{};giq1yrt;False;t3_ktunxs;False;True;t1_gio99j5;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq1yrt/;1610290619;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Taerusaki;;skip7;[];;;dark;text;t2_1jiysgpw;False;False;[];;Just seen it and it was so good. Can't wait till the next episode;False;False;;;;1610246585;;False;{};giq20my;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq20my/;1610290652;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Daksh23;;;[];;;;text;t2_2ytnuyk4;False;False;[];;Everything I've seen from CloverWorks has been good visually and they have a pretty decent reputation in terms of visuals.;False;False;;;;1610246592;;False;{};giq212o;False;t3_ktunxs;False;True;t1_gipmyp7;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq212o/;1610290661;2;True;False;anime;t5_2qh22;;0;[];True -[];;;KoiPuff;;;[];;;;text;t2_40iftl35;False;False;[];;So I’ve now taken a quick peek at both the manga and the OG 4koma (oof that art lol) the manga is more smooth but you can def see the bones of the 4koma there. Straight 4koma adaptations annoy me because there’s nothing there. It’s too bare and the scenes start and stop abruptly. This is a little better then that. Like if K-ON is a 10 in making a 4koma flow then this is a 7. I can still notice but that’s because I have issues lol;False;False;;;;1610246686;;False;{};giq274r;False;t3_ktunxs;False;True;t1_giq1rfy;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq274r/;1610290765;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThalVatti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ThalVatti;light;text;t2_t2y8dpa;False;False;[];;is it ok to wanna kiss Miyamura already?;False;False;;;;1610246783;;False;{};giq2dh3;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq2dh3/;1610290882;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kisspirit;;;[];;;;text;t2_ao7j2;False;False;[];;You should definitely read the manga when you get a chance! It's for real probably one of my fave RomCom!;False;False;;;;1610246796;;False;{};giq2eb8;False;t3_ktunxs;False;True;t1_gioayj9;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq2eb8/;1610290898;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fatalystic;;;[];;;;text;t2_xy716;False;False;[];;"if(insulted){ -break; -}";False;False;;;;1610246875;;False;{};giq2jh3;False;t3_ktunxs;False;True;t1_gipg7e4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq2jh3/;1610290993;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mojo72400;;;[];;;;text;t2_y0klp;False;False;[];;"Good thing I watched all 4 OVAs to get the idea of the series last Tuesday at 1/5/21. I'm surprised they changed Miyamura's tattoos from blue to black. - -I love how Miyamura was considering dating Tooru and not even disturbed that he's a guy. Miyamura's an instant bicon. - -I love how Hori spams baka. - -I love the animation and the music from the ED. - -That animation during the fence jump scene was beautiful and ""Sorry, it's egg time"" should be a meme.";False;False;;;;1610246895;;1610283766.0;{};giq2kqz;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq2kqz/;1610291018;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hells7rom;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Hells7rom;light;text;t2_3jumls03;False;False;[];;Yes, second season is airing this season;False;False;;;;1610246957;;False;{};giq2onq;False;t3_ktwrnr;False;False;t1_giq0mdf;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/giq2onq/;1610291090;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Daksh23;;;[];;;;text;t2_2ytnuyk4;False;False;[];;They also skipped some build-up stuff like Miyamura finding the little brother and some minor character interactions. My guess is that they wanted the rejection part and the after credits scene done in the first episode. So, we'll see how it continues.;False;False;;;;1610247015;;False;{};giq2sgn;False;t3_ktunxs;False;True;t1_giq274r;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq2sgn/;1610291158;1;True;False;anime;t5_2qh22;;0;[];True -[];;;namelessking20;;;[];;;;text;t2_2rzkr6uc;False;False;[];;Agree.;False;False;;;;1610247021;;False;{};giq2suw;False;t3_ktwrnr;False;False;t1_giooqvo;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/giq2suw/;1610291166;6;True;False;anime;t5_2qh22;;0;[]; -[];;;HMP12;;;[];;;;text;t2_qbo9z;False;False;[];;Final season is not ending. I guess anime will end in 2022 or even 2023.;False;False;;;;1610247212;;False;{};giq355u;False;t3_ktw1my;False;True;t3_ktw1my;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/giq355u/;1610291379;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TangledPellicles;;;[];;;;text;t2_15k1ya;False;False;[];;"I think they were showing though. The fact that what you see is atypical to you should show you quite a bit about who these two are. The boy isn't used to be invited in to someone's house and being seen as cool as both the child and Hori do. His body posture, despite his looks, shows that he's self-effacing and doesn't put himself forward. It's an odd combination that brings up immediately the question of why he got piercings and tattoos. He wryly admits to a bad spur of the moment decision later, which gives him a bit of maturity for someone his age. But he still doesn't understand his own feelings or know how to cope with them, shown by his reaction to the conversation he's holding with the other boy later (sorry, I don't know half their names). He has an intriguing mix of characteristics I'm really looking forward to finding out the source of and seeing how he grows from there. - -The girl, Hori, shows a mix of characteristics as well, but it's not as intriguing. She is, however, much more relatable because of the person she truly is on the inside. That makes her fun, and a good shoujo MC, because a big part of shoujo is being a story young girls can feel a part of, usually through putting themselves in the place of the MC. I'm wondering if and how she'll change throughout the course of the story. - -But mainly I'm interested in following the relationship between them as it grows because that's where all the sweetness of romance lies. So far what we're shown is two kids who are honest with themselves about who they are, though they're still figuring themselves out, and that whole struggle will be the basis for the drama in this story, not plot (at least I hope not).";False;False;;;;1610247213;;False;{};giq35a4;False;t3_ktunxs;False;True;t1_gip9he9;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq35a4/;1610291382;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kisspirit;;;[];;;;text;t2_ao7j2;False;False;[];;I understand where you're coming from tbh! Buy if you haven't read the manga before I just want to say that this is actually how it is in the manga as well! They adapted the first three chapters while taking out some parts of the second one which will probably show up in a bit! But it's actually really fast paced in the manga as well.;False;False;;;;1610247215;;False;{};giq35cs;False;t3_ktunxs;False;False;t1_gipc80q;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq35cs/;1610291383;5;True;False;anime;t5_2qh22;;0;[]; -[];;;LippyTitan;;;[];;;;text;t2_10wbs7;False;False;[];;"The moment he jumps the fence ""oh no, he's hot!'";False;False;;;;1610247264;;False;{};giq38ls;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq38ls/;1610291441;8;True;False;anime;t5_2qh22;;0;[]; -[];;;legwkio2;;;[];;;;text;t2_3winxodf;False;False;[];;As you get older, you just watch whenever you have time sadly.;False;False;;;;1610247344;;False;{};giq3drj;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/giq3drj/;1610291531;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LippyTitan;;;[];;;;text;t2_10wbs7;False;False;[];;No spoilers but will this series rip my heart apart or are we in for happy fluffiness couple stuff?;False;False;;;;1610247481;;False;{};giq3mmx;False;t3_ktunxs;False;True;t1_gio86s1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq3mmx/;1610291695;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CrasianLe;;;[];;;;text;t2_379z3crt;False;False;[];;"I can already tell I'm going to fucking love this anime. The anime is the meaning of ""don't judge a book by its cover"". Izumi looks like so much cooler outside of school, and the best part about him is that his characteristics and how he talks and interact with people whether he in school or not is the same , he just looks different lol. Its just sad that people won't ""accept"" you or think your ""cool"" unless u act and dress like it, and thats the hard reality this anime is conveying. But either way a great start and i can already tell the romance is going to be amazing and especially what i need! (Izumi x Kyouko)";False;False;;;;1610247665;;1610251066.0;{};giq3ylm;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq3ylm/;1610291916;8;True;False;anime;t5_2qh22;;0;[]; -[];;;fatalystic;;;[];;;;text;t2_xy716;False;False;[];;Miyamura is actually perfectly straight, he's just way too chill about everything.;False;False;;;;1610247930;;False;{};giq4fib;False;t3_ktunxs;False;False;t1_gipog59;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq4fib/;1610292227;4;True;False;anime;t5_2qh22;;0;[]; -[];;;redditorroshan;;;[];;;;text;t2_6110i2yj;False;True;[];;Not everyone knows this, but horimiya actually had an anime adaptation but it didn't take off due to the colour scheme and the different after style.;False;False;;;;1610247962;;False;{};giq4hk0;False;t3_ktunxs;False;False;t1_gio7xzy;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq4hk0/;1610292264;1;True;False;anime;t5_2qh22;;0;[]; -[];;;scot911;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/scot911;light;text;t2_e6v5y;False;False;[];;Oh I know it's more that if she was actually a gyaru her being pretty much a homemaker at home would be a big enough clash from her school persona that it being her big secret would make sense to me. Her being the perfect popular girl at school as well as the homemaker at home just doesn't really clash for me enough for me to be able to take it as some big huge secret like with Miyamura.;False;False;;;;1610248098;;1610250110.0;{};giq4q50;False;t3_ktunxs;False;True;t1_gipuxal;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq4q50/;1610292430;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610248159;;False;{};giq4u5y;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq4u5y/;1610292507;1;True;False;anime;t5_2qh22;;0;[]; -[];;;daemon_blackfyre69;;;[];;;;text;t2_42avreol;False;False;[];;You've probably watched tonikawa already so something like kaguya sama or something.;False;False;;;;1610248292;;False;{};giq52qo;False;t3_ktunxs;False;True;t1_gipd66b;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq52qo/;1610292664;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DevDevIsH3R3;;;[];;;;text;t2_5al3rod8;False;False;[];;I saw a trailer for the anime and it looked really good, and right down my ally way for my taste in romance animes, though the first episode was super fast paced I loved, looking forward to the rest of the anime. ALSO! CAN WE TALK ABOUT HOW THEY MANAGED TO GET 2 JAMMERS FOR THE OPENING AND ENDING????!?? They're so good.;False;False;;;;1610248310;;False;{};giq53w3;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq53w3/;1610292686;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kairoptra;;;[];;;;text;t2_14tamz;False;False;[];;I was left unimpressed by the synopsis, but I heard unusually high praise from the manga community, so I knew I had to at least give this show a shot. I am happy to report that I found myself consistently grinning the whole way through, and I very much look forward to what else this story has to bring.;False;False;;;;1610248315;;False;{};giq548h;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq548h/;1610292692;6;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Surgeon_of_Death;;;[];;;;text;t2_3ly2yi5y;False;False;[];;RemindMe! 5 hours;False;False;;;;1610248331;;False;{};giq55an;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq55an/;1610292712;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kDiverse;;MAL;[];;http://myanimelist.net/animelist/kDiverse;dark;text;t2_hfxpm;False;False;[];;Never heard of this title before, but pleasantly surprised. So far so good!;False;False;;;;1610248641;;False;{};giq5ped;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq5ped/;1610293094;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kelvs023;;;[];;;;text;t2_4mvobzqs;False;False;[];;"The pacing is weird af. Dude went to their house moments earlier then talked about wanting to keep their other side of their personalities for each others few minutes later... - -I've read the first 30 chapters of the manga but the pacing there was much better. The first few chapters is my favorite from the series, and then it's just ok all throughout that's why I'm excited for the anime thinking I'd like it better when I watch it but it's aight I guess.";False;False;;;;1610248687;;1610248955.0;{};giq5s7w;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq5s7w/;1610293145;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Stevenphanny;;;[];;;;text;t2_48c8xx1e;False;False;[];;I loved it. So happy to see a manga I love get animated.;False;False;;;;1610249121;;False;{};giq6k8v;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq6k8v/;1610293663;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AvatarAarow1;;;[];;;;text;t2_3ve7o5xz;False;False;[];;Aaahhhhhh I’m so excited!! It looks so good!! There were some weird choices, not sure how I feel about the random parts where the background fades away and the characters have those colored shadows on a white background. Idk felt out of place, but otherwise this was so good!!! I’m very happy this is getting an adaptation and I get 12 more weeks of this series;False;False;;;;1610249207;;False;{};giq6po6;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq6po6/;1610293762;1;True;False;anime;t5_2qh22;;0;[]; -[];;;imaforgetthis;;;[];;;;text;t2_2d7gcwde;False;False;[];;">It's gonna be a 5th place battler for sure. - -It's been only 7 hours and already has 5k+ karma. I'm a fan of Horimiya and expected it to be received well, but this is better than I thought.";False;False;;;;1610249406;;False;{};giq72lo;False;t3_ktunxs;False;False;t1_giovzpj;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq72lo/;1610293999;7;True;False;anime;t5_2qh22;;0;[]; -[];;;imaforgetthis;;;[];;;;text;t2_2d7gcwde;False;False;[];;Considering that it's only been about 7 hours and this thread already has 5k+ karma, it looks like it's being pretty well-received. In a genre that's mostly filled with harems, and where the stories only cover the journey to becoming a couple (and then ending immediately), this is definitely a breath of fresh air. It looks like everyone is appreciating the comfort. I'm proud of you, r/anime.;False;False;;;;1610249625;;False;{};giq7ha3;False;t3_ktunxs;False;True;t1_gioqvm3;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq7ha3/;1610294274;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ult_Fate;;;[];;;;text;t2_2cpk9czg;False;False;[];;Don't read the manga so no idea if its faithful but this first episode was gooood;False;False;;;;1610249664;;False;{};giq7k6t;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq7k6t/;1610294332;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sattrixie;;;[];;;;text;t2_27uvr8m2;False;False;[];;Miyamura and Hori have so much chemistry, I'm so happy horimiya is finally getting a proper adaptation;False;False;;;;1610249693;;False;{};giq7m4n;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq7m4n/;1610294367;3;True;False;anime;t5_2qh22;;0;[]; -[];;;theregretmeter;;;[];;;;text;t2_m0jcsde;False;False;[];;I think it's more her friends might act differently knowing she has to do chores and stuff while they can just chill.;False;False;;;;1610250048;;False;{};giq8a8t;False;t3_ktunxs;False;True;t1_gio7ris;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq8a8t/;1610294866;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaizo;;;[];;;;text;t2_14fj1g;False;False;[];;Very Awesome! Read the manga a long time ago and seeing it animated very beautifully is mesmerizing, Horimiya gives a very light feeling when it comes to romance which is not bad once in a while especially when the characters are very open with their feelings at the very start! I do hope they revise the plot especially on the later parts of the anime! For manga readers you know what I mean \*wink\*;False;False;;;;1610250181;;False;{};giq8iy9;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq8iy9/;1610295039;1;True;False;anime;t5_2qh22;;0;[]; -[];;;theregretmeter;;;[];;;;text;t2_m0jcsde;False;False;[];;Miyamura's response to Hori asking if he has a crush on Ishikawa is something I wished I used back in my high school days.;False;False;;;;1610250435;;False;{};giq8z8a;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq8z8a/;1610295335;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kaisqueaks;;;[];;;;text;t2_ias1tda;False;False;[];;"tattoos are a huge taboo - just having one means he's banned from most hot springs & he'd be treated like a yakuza by many, especially in high school, they would very likely get him expelled";False;False;;;;1610250974;;False;{};giq9xn6;False;t3_ktunxs;False;False;t1_gipgilf;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq9xn6/;1610295997;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Cayennel55;;;[];;;;text;t2_6j5bcwfz;False;False;[];;"Agreed! The OP is surprisingly moody and reflective for a show that seems light and wholesome (maybe things change?). Kind of reminds me of how different the Death Parade OP was compared to the show itself. - -That said, it does a great job of highlighting the premise of the story where everyone has some hidden side/facade that can be a barrier to getting close to others. The shot where the 4 characters meet up in the classroom is money.";False;False;;;;1610250982;;False;{};giq9y32;False;t3_ktunxs;False;False;t1_giobypo;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giq9y32/;1610296003;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610251243;;False;{};giqaery;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqaery/;1610296337;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"Not sure how someone can not notice that they dropped their phone which proceeded to loudly clack against the floor. - -He *thinks* he has nine piercings? But he's not sure? Does he randomly get pierced while on benders or something and then doesn't bother to check where? - -""Ugh, how can he say something that cringey with a straight face?!"" - though that's pretty much exactly what she said, just with explicitly stating what she'd left between the lines. - -So one thing I don't understand is, does she realize she has a crush on him yet or is she just completely oblivious to her own feelings? - -Anyway, nice to have a more or less down-to-earth sol rom(com?) this season. I hope it doesn't go off the deep end.";False;False;;;;1610251291;;False;{};giqahvc;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqahvc/;1610296393;0;True;False;anime;t5_2qh22;;0;[]; -[];;;RazerHail;;;[];;;;text;t2_5ha1r;False;False;[];;"Never heard of this series before until I came across this discussion thread and watched the first episode. I gotta say this seems promising. It does feel like the story is quick though. I was a little confused at how easily someone could invite a stranger into their house and how it quickly developed into a regular thing. - -Overall it seems like something I would definitely enjoy. But I need to know something ahead of time: - -Will this show end up breaking my heart like your lie in april or will it stay rom-com? (Please say rom-com)";False;False;;;;1610251383;;False;{};giqanwa;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqanwa/;1610296513;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BeneathTheDirt;;;[];;;;text;t2_13hi1t;False;False;[];;"stays rom com - -source: am manga reader";False;False;;;;1610251467;;False;{};giqatfb;False;t3_ktunxs;False;False;t1_giqanwa;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqatfb/;1610296614;6;True;False;anime;t5_2qh22;;0;[]; -[];;;reyxe;;;[];;;;text;t2_l05mm;False;False;[];;"I was waiting for the ""teehee"" when she sends Miyamura buy the eggs, I'm so sad it was left out :(";False;False;;;;1610251525;;False;{};giqax9k;False;t3_ktunxs;False;True;t1_gio6khc;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqax9k/;1610296688;0;True;False;anime;t5_2qh22;;0;[]; -[];;;w33btr4sh;;;[];;;;text;t2_beoib0j;False;False;[];;Lol I think she even abused him in that scene as well;False;False;;;;1610251988;;False;{};giqbqkr;False;t3_ktunxs;False;True;t1_gipqu6d;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqbqkr/;1610297246;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ColdSteel144;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SnickNH;light;text;t2_5qqkh;False;False;[];;"So did those OVAs just try to do the same story in like a third of the time or did they adapt different chapters or what? I saw that the OVA is even getting two new episodes and I'm kinda baffled as to why that would be if this is the ""proper"" adaptation.";False;False;;;;1610252127;;False;{};giqbzw1;False;t3_ktunxs;False;True;t1_gio7y3d;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqbzw1/;1610297419;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Deadmanlex45;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/deadmanlex45;light;text;t2_173775;False;False;[];;"My god this is cute. - -Already in love with the main couple.";False;False;;;;1610252147;;False;{};giqc19w;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqc19w/;1610297444;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Whyterain;;;[];;;;text;t2_oiq41o5;False;False;[];;"I was bummed they didn't include Hori saying ""What about gender?"" After the Ishikawa good couple comment.";False;False;;;;1610252513;;False;{};giqcor9;False;t3_ktunxs;False;False;t1_gioc1au;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqcor9/;1610297911;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Whyterain;;;[];;;;text;t2_oiq41o5;False;False;[];;"He wears the jacket because the white shirts are too thin & his tattoos would show through.";False;False;;;;1610252591;;False;{};giqctz4;False;t3_ktunxs;False;False;t1_giojdr7;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqctz4/;1610298015;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DaNerdyDoggo;;;[];;;;text;t2_3ov8jgnp;False;False;[];;I do agree, but they need to slow down the pacing of the anime or not this anime will crash and burn;False;False;;;;1610252592;;False;{};giqcu2p;False;t3_ktunxs;False;True;t1_gio5w5t;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqcu2p/;1610298018;1;True;False;anime;t5_2qh22;;0;[]; -[];;;the_train540;;;[];;;;text;t2_34001gae;False;False;[];;Idk it’s kinda refreshing when romcoms that usually get dragged out go fast but don’t worry there’s plenty sol stuff after this season;False;False;;;;1610252765;;False;{};giqd50e;False;t3_ktunxs;False;False;t1_gio9omu;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqd50e/;1610298259;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;god what a perfect trad wife she is;False;False;;;;1610252883;;False;{};giqdcel;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqdcel/;1610298422;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;"I don't give a shit about anything except the Hori x Miyamura ship, so them skipping everything else and ending [with](/s ""the marriage proposal"") would be perfect. - -also obligatory fuck you to the Source Corner for its bullshit";False;False;;;;1610252978;;1610253254.0;{};giqdi6l;False;t3_ktunxs;False;True;t1_gipcojp;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqdi6l/;1610298542;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;"Implied is best. -If you want full sex scenes go watch DomeKano or hentai";False;False;;;;1610253016;;False;{};giqdkiy;False;t3_ktunxs;False;False;t1_gioiht6;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqdkiy/;1610298589;6;True;False;anime;t5_2qh22;;0;[]; -[];;;I-WANT-TO_DIE;;;[];;;;text;t2_37ot9fg2;False;False;[];;watching this made me realize that it's been a long time since i've read this so I might overdose from the cuteness rereading this.....I'm so happy it's getting adapted tho omggggg;False;False;;;;1610253044;;False;{};giqdmc0;False;t3_ktunxs;False;True;t1_gio5fi9;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqdmc0/;1610298623;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;">sometimes focusing on Hori and Miyamura - -you mean practically fucking never.";False;False;;;;1610253074;;False;{};giqdob7;False;t3_ktunxs;False;False;t1_gioe2jx;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqdob7/;1610298662;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LumpyChicken;;;[];;;;text;t2_12phvscu;False;False;[];;"> I was confused when he was in her house. Seems like an odd moment to skip, his helping the little bro - -you mean the initial meeting? That's how it happened";False;False;;;;1610253151;;False;{};giqdta6;False;t3_ktunxs;False;False;t1_gio9do1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqdta6/;1610298758;5;True;False;anime;t5_2qh22;;0;[]; -[];;;illuvia_;;;[];;;;text;t2_9ju1zir5;False;False;[];;well i hope miyamura doesn't get any cancer or something 🥲;False;False;;;;1610253161;;False;{};giqdtx2;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqdtx2/;1610298772;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;Will be posting list of all Hori x Miyamura chapters eventually. Since KM went down, my chapter list went with it, will need to post it on MD or something.;False;False;;;;1610253200;;False;{};giqdwim;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqdwim/;1610298825;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LumpyChicken;;;[];;;;text;t2_12phvscu;False;False;[];;Yeah but is he though;False;False;;;;1610253276;;False;{};giqe1d9;False;t3_ktunxs;False;False;t1_giq4fib;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqe1d9/;1610298963;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Desk_Lost;;;[];;;;text;t2_9qygq5kl;False;False;[];;Binge.;False;False;;;;1610253388;;False;{};giqe8k2;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/giqe8k2/;1610299130;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;I also get WAY more excited for shit after having to wait a week or so for it;False;False;;;;1610253503;;False;{};giqefrx;False;t3_ktuoj0;False;False;t1_gio5fm9;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/giqefrx/;1610299263;8;True;False;anime;t5_2qh22;;0;[]; -[];;;iJubag;;;[];;;;text;t2_8f4oa;False;False;[];;yeeeesss this show is a proper mood stabilizer;False;False;;;;1610254459;;False;{};giqg01a;False;t3_ktwrnr;False;False;t1_giq2onq;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/giqg01a/;1610300402;3;True;False;anime;t5_2qh22;;0;[]; -[];;;creepyfishman;;;[];;;;text;t2_70bnxgg1;False;False;[];;Season 2 episode 1 is out right now;False;False;;;;1610255718;;False;{};giqhyo7;False;t3_ktwrnr;False;False;t1_giq0mdf;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/giqhyo7/;1610301800;4;True;False;anime;t5_2qh22;;0;[]; -[];;;doomgiver98;;;[];;;;text;t2_6wkz0;False;False;[];;If I have to wait a week I don't remember what happened last time.;False;False;;;;1610255774;;False;{};giqi1p1;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/giqi1p1/;1610301855;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iJubag;;;[];;;;text;t2_8f4oa;False;False;[];;Do you know if it will be coming to Crunchyroll? I don't see it on there;False;False;;;;1610257145;;False;{};giqk1ih;False;t3_ktwrnr;False;True;t1_giqhyo7;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/giqk1ih/;1610303915;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hinakura;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;http://myanimelist.net/profile/astarcalledspica;light;text;t2_dyigg;False;False;[];;Weekly. I like participating in the discussion.;False;False;;;;1610258407;;False;{};giqlsuq;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/giqlsuq/;1610305024;1;True;False;anime;t5_2qh22;;0;[]; -[];;;garthvater111;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Garthvater;light;text;t2_bz434;False;False;[];;"I like to watch my anime by the season. - -Not like seasonal anime, rather entire seasons at a time. Unless they are very long, in which case I usually watch them in 10-25 ep sessions (especially on my days off). Recently I've been watching about 6 ep at a time after work, simply because I would only have time to watch on weekends because I've been so dam busy lately. I don't enjoy watching like this though, I hate having to interrupt my binging session to go to bed because if I don't I will be a walking corpse. I still binge full seasons on weekends though.";False;False;;;;1610259117;;False;{};giqmrhv;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/giqmrhv/;1610305652;1;True;False;anime;t5_2qh22;;0;[]; -[];;;creepyfishman;;;[];;;;text;t2_70bnxgg1;False;False;[];;probably eventually but in order to watch it rn you got to pay or watch it with a vpn and ads at 420p so not very good to watch rn;False;False;;;;1610259222;;False;{};giqmwo6;False;t3_ktwrnr;False;True;t1_giqk1ih;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/giqmwo6/;1610305749;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nekajed;;;[];;;;text;t2_13jqoq;False;False;[];;Both. Binge the older shows I've missed, watch the current seasonal anime weekly to keep up. Newer shows usually fill up the week days nicely, then I can binge whatever on weekends.;False;False;;;;1610262084;;False;{};giqqjzr;False;t3_ktuoj0;False;False;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/giqqjzr/;1610308232;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610265019;;False;{};giqtvzx;False;t3_ktwrnr;False;True;t3_ktwrnr;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/giqtvzx/;1610310709;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vivising;;;[];;;;text;t2_22oyxmxf;False;False;[];;haha my bio teacher played this for us during class the other day;False;False;;;;1610265047;;False;{};giqtx3t;False;t3_ktwrnr;False;False;t3_ktwrnr;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/giqtx3t/;1610310731;7;True;False;anime;t5_2qh22;;0;[]; -[];;;knokaka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/knokaka?order=4;light;text;t2_ytri4;False;False;[];;"binge watch if it already released all episode - -weekly if it still airing - -&#x200B; - -as simple as that.";False;False;;;;1610265107;;False;{};giqtzgd;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/giqtzgd/;1610310780;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yuux3;;;[];;;;text;t2_y88mt;False;False;[];;I used to binge, but realized that it feels less stressful if I watch weekly. Even feel like I can watch more without feeling that I do.;False;False;;;;1610267777;;False;{};giqwsky;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/giqwsky/;1610312812;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ksradrik;;;[];;;;text;t2_1wtl783j;False;False;[];;Then why doesnt it work on stuff like cancer?;False;False;;;;1610269429;;False;{};giqygz0;False;t3_ktwrnr;False;True;t1_gipz7ot;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/giqygz0/;1610314015;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hitori-kyun59;;;[];;;;text;t2_1parv6y3;False;False;[];;My past self likes to binge watch everything and dreaded the weekly episode release. But right now, it's the opposite. Probably due to having a busier schedule and shorter attention span.;False;False;;;;1610271254;;False;{};gir0a3l;False;t3_ktuoj0;False;False;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gir0a3l/;1610315280;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;Just gotta nuke harder. Chemotherapy-kun, you're up!;False;False;;;;1610272021;;False;{};gir114p;False;t3_ktwrnr;False;False;t1_giqygz0;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/gir114p/;1610315791;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerz905;;;[];;;;text;t2_1yglu2m7;False;False;[];;Now that I think about it its more than decent. Tbh I don't even remember s1 bcs it was so long ago. Was talking outta my ass.;False;False;;;;1610272565;;False;{};gir1kei;False;t3_ktw1my;False;True;t1_gipzsd6;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/gir1kei/;1610316168;1;True;False;anime;t5_2qh22;;0;[]; -[];;;capitan_spiff;;MAL;[];;http://myanimelist.net/animelist/capitan_spiff;dark;text;t2_jlcgo;False;False;[];;Not only is there a second season currently airing, but there is also Cells at work Code Black, another identical show but this time the action is taking place in the body of a person with very bad health (stress, tobacco, alcohol, high cholesterol, ...);False;False;;;;1610273677;;False;{};gir2npd;False;t3_ktwrnr;False;True;t1_giq0mdf;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/gir2npd/;1610316945;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TaqPCR;;;[];;;;text;t2_3jynpl5m;False;False;[];;"tagging /u/Ksradrik and /u/Atario - -They don't do that at all. They prevent your immune system from reacting by reducing the amount of pro-inflamatory proteins produced, increasing the amount of anti-inflammatory proteins produced, prevent new inflammatory cells from migrating into the tissue, and reduce the survival some pro-inflamatory cell types (though neutrophil's like the MC white blood cell actually have their survival promoted). Though they are pretty side effect laden a lot of the time. - -They reduce symptoms a lot of the time because a lot of the time symptoms are the body's reaction to the disease but they don't kill bacteria or cancer (most of the time, things like immune cell cancers can be treated by steroids for example). - -One of the more promising treatments for cancer that is being researched now is basically the exact opposite of steroids actually. Injecting you with things that make your immune system think you're about to die of sepsis so your immune system goes wild and overcomes cancer's ""nothing suspicious going on here, no need for an immune reaction"" signals.";False;False;;;;1610273768;;False;{};gir2qvn;False;t3_ktwrnr;False;False;t1_gipz7ot;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/gir2qvn/;1610317016;19;True;False;anime;t5_2qh22;;0;[]; -[];;;SMA2343;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/HispanicName;light;text;t2_6xzja;False;False;[];;Season 2 is on Funimation, along with Code: Black;False;False;;;;1610274619;;False;{};gir3ka9;False;t3_ktwrnr;False;True;t1_giqk1ih;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/gir3ka9/;1610317579;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlightedPath;;HB;[];;Notice me Bot-chan!;dark;text;t2_zgco3;False;False;[];;They're saving that for Black, I guess;False;False;;;;1610275120;;False;{};gir41h2;False;t3_ktwrnr;False;True;t1_gir114p;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/gir41h2/;1610317929;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ainine9;;;[];;;;text;t2_kwrcn;False;False;[];;"It's less of a preference and more of a anime-to-anime basis - -Series' I'm not wholly interested in, I'll be binging it. - -Series' that I'm familiar with or interesting enough at first glance, I'll be following it weekly.";False;False;;;;1610276366;;False;{};gir59o4;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gir59o4/;1610318772;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lil_icebear;;;[];;;;text;t2_elnjx;False;False;[];;This so much.;False;False;;;;1610277295;;False;{};gir66ud;False;t3_ktuoj0;False;True;t1_giqefrx;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gir66ud/;1610319385;3;True;False;anime;t5_2qh22;;0;[]; -[];;;civildonut1999;;;[];;;;text;t2_6z4jpgd8;False;False;[];;I binge the most because I find a lot of older anime to watch even though they're not old most of the time or at least not in my mind, but if it's something that is airing I will watch it weekly, in the fall I started with 4 series which are now down to 2 because the other 2 finished before it switched over to winter, even though some months inculded in the fall line up are winter to me since I can't get out at certain times during those months because I get like snowed in where I live.;False;False;;;;1610278184;;False;{};gir72vs;False;t3_ktuoj0;False;False;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/gir72vs/;1610319995;1;True;False;anime;t5_2qh22;;0;[]; -[];;;i_need_zzz;;;[];;;;text;t2_malyt;False;False;[];;Yea. This is more accurate. They don't come and destroy everything. More accurate if the anime shows the rbc push a super lullaby/ siren machine and makes all the leucocytes n immune cells fell asleep or drowsy, instead of being hyperactive and killing everything good and bad in the vaccinity, causing a havoc (eg allergic reaction, autoimmune reaction).;False;False;;;;1610283956;;False;{};gird2of;False;t3_ktwrnr;False;False;t1_gir2qvn;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/gird2of/;1610323994;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Sedisrehtac;;;[];;;;text;t2_3bi1x3xy;False;False;[];;"Finished watching S3 last night. Those last few episodes should have been made feature length ^^ - -Looks like there's only 4 episodes of S4 for me to watch tonight.";False;False;;;;1610287275;;False;{};girh8gv;False;t3_ktw1my;False;True;t3_ktw1my;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/girh8gv/;1610326786;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iJubag;;;[];;;;text;t2_8f4oa;False;False;[];;Nice I’ll have to check them out then, thanks;False;False;;;;1610287569;;False;{};girhmwh;False;t3_ktwrnr;False;True;t1_gir2npd;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/girhmwh/;1610327033;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Marlex31;;;[];;;;text;t2_qnbab53;False;False;[];;This is how I envision self-control.;False;False;;;;1610288482;;False;{};girixfy;False;t3_ktuoj0;False;True;t1_gio5hb9;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/girixfy/;1610327840;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TexhnolyzeAndKaiba;;;[];;;;text;t2_781er1nk;False;True;[];;So, now they have nowhere to go when it comes to nano-machines. Great job, character designer. I can't be the only one disappointed that steroids, even adrenocortical hormones, aren't represented by a super-buff character.;False;False;;;;1610288599;;False;{};girj3m6;False;t3_ktwrnr;False;True;t3_ktwrnr;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/girj3m6/;1610327957;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BossandKings;;;[];;;;text;t2_5ifr53k7;False;False;[];;I prefer binge watching but i'm giving myself the time to watch seasonal shows to see how much i like that way.;False;False;;;;1610290526;;False;{};girlv04;False;t3_ktuoj0;False;True;t3_ktuoj0;/r/anime/comments/ktuoj0/do_you_prefer_binge_watching_an_anime_or_catching/girlv04/;1610329714;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thepeetmix;;;[];;;;text;t2_cwxxz;False;False;[];;There's also Cells at Work: Black airing this season too!;False;False;;;;1610292501;;False;{};girp25d;False;t3_ktwrnr;False;True;t1_giqg01a;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/girp25d/;1610331785;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sworp123;;;[];;;;text;t2_70kjkn0w;False;False;[];;"Cancer and the flu are completely different problems affecting different things. This would be more accurate if the steriod was murdering all the cells tbh. - -Chemo would be like an actual nuke, think hiroshima.";False;False;;;;1610296612;;False;{};girwi4h;False;t3_ktwrnr;False;True;t1_giqygz0;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/girwi4h/;1610336627;1;True;False;anime;t5_2qh22;;0;[]; -[];;;danguelo;;;[];;;;text;t2_14e059;False;False;[];;Ok, but you are using them as if they were synonyms...;False;False;;;;1610297284;;False;{};girxsqa;False;t3_ktwnph;False;True;t1_giouls3;/r/anime/comments/ktwnph/a_decent_romcom_anime_for_females_or_with_no/girxsqa/;1610337427;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Unicorntacoz;;;[];;;;text;t2_1durkdx5;False;False;[];;"I watched season 1 of AOT years ago. After finishing the first season I swore it off and for years I called it the ""anime version of The Walking Dead"", which I think is a joke of a show that was at one point good and became a complete waste of time because they just kept regurgitating the same plot of ""introduce nice person, person dies, audience and immortal cast sad"". I was pressured into re-watching it and then watching season 2 by many friends that are bigger anime addicts than myself, and I'm so glad I did. Because yes, it absolutely does get better. I also think due to the graphic and intense nature of it people are quick to write it off as distasteful and trying too hard. I'm now keeping up to date on all the new episodes and it's well worth it. It's one of my all time favorite anime, for sure.";False;False;;;;1610326189;;False;{};gitk577;False;t3_ktw1my;False;True;t1_giodsg0;/r/anime/comments/ktw1my/the_attack_on_titan_anime_series_is_addictive/gitk577/;1610370799;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fdajax;;;[];;;;text;t2_x1adp;False;False;[];;Yeah it would be more accurate, wouldn't be more funny;False;False;;;;1610342122;;False;{};giuevwu;False;t3_ktwrnr;False;True;t1_gird2of;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/giuevwu/;1610392262;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TaqPCR;;;[];;;;text;t2_3jynpl5m;False;False;[];;IDK a crazy murder robot killing a few cells, while helping others, and singing lullabies to others sounds like it could have a comedic element.;False;False;;;;1610439099;;False;{};gizc7bi;False;t3_ktwrnr;False;True;t1_giuevwu;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/gizc7bi/;1610501314;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mylaur;;MAL;[];;https://myanimelist.net/animelist/Mylaur;dark;text;t2_gtwu7;False;False;[];;For cancer do you mean checkpoint inhibitors? I think I got you but just to make sure I'm not missing something;False;False;;;;1610524983;;1610563447.0;{};gj3dltt;False;t3_ktwrnr;False;True;t1_gir2qvn;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/gj3dltt/;1610595236;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mylaur;;MAL;[];;https://myanimelist.net/animelist/Mylaur;dark;text;t2_gtwu7;False;False;[];;Cancer hides from your immune system.;False;False;;;;1610525066;;False;{};gj3dovq;False;t3_ktwrnr;False;True;t1_giqygz0;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/gj3dovq/;1610595292;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TaqPCR;;;[];;;;text;t2_3jynpl5m;False;False;[];;Nah I'm talking about PAMP (pathogen associated molecular pattern) treatments (aka injecting you with a bunch bacterial proteins). Basically think of checkpoint inhibitors as unlocking the door to let the immune system through. PAMP treatments on the other hand are making your immune system go hog wild so they just slam right through the door looking for something to murder.;False;False;;;;1610526449;;False;{};gj3f3ie;False;t3_ktwrnr;False;True;t1_gj3dltt;/r/anime/comments/ktwrnr/steroids_cells_at_work_s1/gj3f3ie/;1610596191;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Crashkeiran, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610168216;moderator;False;{};gimk621;False;t3_ktkal4;False;True;t3_ktkal4;/r/anime/comments/ktkal4/i_need_something_new_to_watch/gimk621/;1610213468;2;False;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Definitely. I usually have at least one seasonal show I keep up with but I can go for months without watching something;False;False;;;;1610168754;;False;{};giml1sr;False;t3_ktkdht;False;False;t3_ktkdht;/r/anime/comments/ktkdht/do_you_ever_just_take_breaks_from_watching_anime/giml1sr/;1610214073;5;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;"Hunter X Hunter - -My Hero Academia - -Reincarnated As A Slime - -Re:Zero";False;False;;;;1610168815;;False;{};giml5az;False;t3_ktkal4;False;False;t3_ktkal4;/r/anime/comments/ktkal4/i_need_something_new_to_watch/giml5az/;1610214141;4;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;I watch anime on and off whenever I'm in the mood (and am not busy with life).;False;False;;;;1610168874;;False;{};giml8nd;False;t3_ktkdht;False;False;t3_ktkdht;/r/anime/comments/ktkdht/do_you_ever_just_take_breaks_from_watching_anime/giml8nd/;1610214203;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;If there's something I wanna watch that isn't anime I just do it I guess. I just watched the new Cobra Kai and rewatched Bojack Horseman;False;False;;;;1610168930;;False;{};gimlbw4;False;t3_ktkdht;False;False;t3_ktkdht;/r/anime/comments/ktkdht/do_you_ever_just_take_breaks_from_watching_anime/gimlbw4/;1610214260;8;True;False;anime;t5_2qh22;;0;[]; -[];;;whocalledmeavacuum;;;[];;;;text;t2_5b6ajj1d;False;False;[];;I usually binge for a month or two and take a couple months off. Depends on how I'm feeling but yeah it's completely normal to feel burned out for a long time.;False;False;;;;1610168983;;False;{};gimley7;False;t3_ktkdht;False;False;t3_ktkdht;/r/anime/comments/ktkdht/do_you_ever_just_take_breaks_from_watching_anime/gimley7/;1610214317;15;True;False;anime;t5_2qh22;;0;[]; -[];;;maplesyrup78;;;[];;;;text;t2_846pp1jj;False;False;[];;Castlevania is a good one;False;False;;;;1610168997;;False;{};gimlfqc;False;t3_ktkal4;False;True;t3_ktkal4;/r/anime/comments/ktkal4/i_need_something_new_to_watch/gimlfqc/;1610214331;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ShoyoWeeb;;;[];;;;text;t2_89wb3wzb;False;False;[];;Asahi Azumane;False;False;;;;1610169019;;False;{};gimlgzt;False;t3_ktkgoh;False;True;t3_ktkgoh;/r/anime/comments/ktkgoh/i_know_nobody_knows_him/gimlgzt/;1610214355;1;True;False;anime;t5_2qh22;;0;[]; -[];;;smiley-rell;;;[];;;;text;t2_9iaznvjw;False;False;[];;"Yes. I watched all of naruto including shippuden, all of bleach, ace of diamond and was burned out to the point to where I took like months off of watching. So now I really only watch 12 episode series now and haven't watch a long running show in a while. K - -That's partly why I switched to manga because one episode roughly covers 2 chapters and I would much rather spend my time reading 2 chapters in like 10 mins vs a 23 min episode. It's so much easier to binge and not get burnout.";False;False;;;;1610169032;;False;{};gimlhq7;False;t3_ktkdht;False;False;t3_ktkdht;/r/anime/comments/ktkdht/do_you_ever_just_take_breaks_from_watching_anime/gimlhq7/;1610214369;4;True;False;anime;t5_2qh22;;0;[]; -[];;;smiley-rell;;;[];;;;text;t2_9iaznvjw;False;False;[];;Seperah of the end.;False;False;;;;1610169084;;False;{};gimlksn;False;t3_ktki6m;False;True;t3_ktki6m;/r/anime/comments/ktki6m/idk_which_one_she_wants_just_give_me_both_their/gimlksn/;1610214426;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dave-not-a-barbarian;;;[];;;;text;t2_22jk7cmb;False;False;[];;Put all the pictures in one post and quit it with the spam.;False;False;;;;1610169089;;False;{};gimll3u;False;t3_ktki6m;False;True;t3_ktki6m;/r/anime/comments/ktki6m/idk_which_one_she_wants_just_give_me_both_their/gimll3u/;1610214431;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Godsdesendant;;;[];;;;text;t2_91au0day;False;False;[];;I can’t they don’t let me it just takes it down;False;False;;;;1610169151;;False;{};gimlonc;True;t3_ktki6m;False;True;t1_gimll3u;/r/anime/comments/ktki6m/idk_which_one_she_wants_just_give_me_both_their/gimlonc/;1610214496;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;I don't even know why people keep answering spammers;False;False;;;;1610169154;;False;{};gimlova;False;t3_ktki6m;False;True;t3_ktki6m;/r/anime/comments/ktki6m/idk_which_one_she_wants_just_give_me_both_their/gimlova/;1610214499;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dave-not-a-barbarian;;;[];;;;text;t2_22jk7cmb;False;False;[];;So you decide to spam the sub?;False;False;;;;1610169199;;False;{};gimlreq;False;t3_ktki6m;False;True;t1_gimlonc;/r/anime/comments/ktki6m/idk_which_one_she_wants_just_give_me_both_their/gimlreq/;1610214546;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Godsdesendant;;;[];;;;text;t2_91au0day;False;False;[];;Listen you fucking nerd if you got another to put them all together the by all means tell me if not stfu or answer my question;False;False;;;;1610169255;;False;{};gimlulz;True;t3_ktki6m;False;True;t1_gimlova;/r/anime/comments/ktki6m/idk_which_one_she_wants_just_give_me_both_their/gimlulz/;1610214608;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Godsdesendant;;;[];;;;text;t2_91au0day;False;False;[];;How else you want me to ask do you know all the answers;False;False;;;;1610169282;;False;{};gimlw4d;True;t3_ktki6m;False;True;t1_gimlreq;/r/anime/comments/ktki6m/idk_which_one_she_wants_just_give_me_both_their/gimlw4d/;1610214635;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dave-not-a-barbarian;;;[];;;;text;t2_22jk7cmb;False;False;[];;Over time. Or just do a bit of work and do a reverse image search.;False;False;;;;1610169325;;1610179571.0;{};gimlyg8;False;t3_ktki6m;False;True;t1_gimlw4d;/r/anime/comments/ktki6m/idk_which_one_she_wants_just_give_me_both_their/gimlyg8/;1610214675;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rotiseri-Plastic;;;[];;;;text;t2_6gb8xbg1;False;False;[];;Watch Jujutsu Kaisen great fight scenes and plot definitely would recommend, only has 1 season so far though. Also I don’t want to get hurt so as maxed out my defense and Overlord.;False;False;;;;1610169326;;1610169508.0;{};gimlyiw;False;t3_ktkal4;False;True;t3_ktkal4;/r/anime/comments/ktkal4/i_need_something_new_to_watch/gimlyiw/;1610214677;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;"It really depends, sometimes I go weeks without watching if I'm busy doing other stuff (like playing PS4). - -I think the fact that I do take breaks when I don't feel like watching anime has helped me stay an anime fan for so long.";False;False;;;;1610169337;;False;{};gimlz4h;False;t3_ktkdht;False;True;t3_ktkdht;/r/anime/comments/ktkdht/do_you_ever_just_take_breaks_from_watching_anime/gimlz4h/;1610214690;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Godsdesendant;;;[];;;;text;t2_91au0day;False;False;[];;I’m on phone numb nuts think of a better idea and my laptop is downstairs cba to go down rn it’s 5 am;False;False;;;;1610169374;;False;{};gimm15d;True;t3_ktki6m;False;True;t1_gimlyg8;/r/anime/comments/ktki6m/idk_which_one_she_wants_just_give_me_both_their/gimm15d/;1610214729;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dave-not-a-barbarian;;;[];;;;text;t2_22jk7cmb;False;False;[];;"Is it a flip phone, because otherwise Google is a thing. You're insulting my intelligence but can figure out how to Google ""reverse image search"".";False;False;;;;1610169453;;False;{};gimm5ih;False;t3_ktki6m;False;True;t1_gimm15d;/r/anime/comments/ktki6m/idk_which_one_she_wants_just_give_me_both_their/gimm5ih/;1610214809;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Always lovely talk to kids;False;False;;;;1610169496;;False;{};gimm7w1;False;t3_ktki6m;False;True;t1_gimlulz;/r/anime/comments/ktki6m/idk_which_one_she_wants_just_give_me_both_their/gimm7w1/;1610214853;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Godsdesendant;;;[];;;;text;t2_91au0day;False;False;[];;Ok by all means bro go on Instagram save an image sent to you by someone and go on to a google app and try and do it;False;False;;;;1610169525;;False;{};gimm9gz;True;t3_ktki6m;False;True;t1_gimm5ih;/r/anime/comments/ktki6m/idk_which_one_she_wants_just_give_me_both_their/gimm9gz/;1610214887;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Godsdesendant;;;[];;;;text;t2_91au0day;False;False;[];;TF YOU SAY TO ME YOU LIL SHIT;False;False;;;;1610169551;;False;{};gimmb0d;True;t3_ktki6m;False;True;t1_gimm7w1;/r/anime/comments/ktki6m/idk_which_one_she_wants_just_give_me_both_their/gimmb0d/;1610214916;0;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Please create an anime list at either myanimelist.net, anilist.co, kitsu or anime-planet. All 4 are free and useful to have. Would be better to create a list now, instead of later when you've seen 100 anime or more. - -Some suggestions - -Death Note - -Banana Fish - -Vinland Saga - -The Promised Neverland - -Dororo - -Psycho-Pass - -Black Lagoon - -Seirei no Moribito - -Re Zero Starting Life in Another World - -Gurren Lagann - -Erased";False;False;;;;1610169612;;False;{};gimmehp;False;t3_ktkal4;False;True;t3_ktkal4;/r/anime/comments/ktkal4/i_need_something_new_to_watch/gimmehp/;1610214994;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ChrissontRed;;;[];;;;text;t2_7rm2fblp;False;False;[];;Never ever watched, but is look ALL that matters?;False;False;;;;1610169877;;False;{};gimmt4z;False;t3_ktko2w;False;False;t3_ktko2w;/r/anime/comments/ktko2w/why_is_asta_a_mc/gimmt4z/;1610215274;14;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610169907;moderator;False;{};gimmuvj;False;t3_ktkqet;False;True;t3_ktkqet;/r/anime/comments/ktkqet/serial_experiments_lain_op/gimmuvj/;1610215304;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"No, I only watch seasonals for years, so 1 episode per week for each series - -I spend more time discussing anime here than watching it";False;False;;;;1610169924;;False;{};gimmvwa;False;t3_ktkdht;False;True;t3_ktkdht;/r/anime/comments/ktkdht/do_you_ever_just_take_breaks_from_watching_anime/gimmvwa/;1610215325;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MavadoBouche;;;[];;;;text;t2_2sxfd6nj;False;False;[];;Just keep watching;False;False;;;;1610170104;;False;{};gimn6ae;False;t3_ktko2w;False;True;t3_ktko2w;/r/anime/comments/ktko2w/why_is_asta_a_mc/gimn6ae/;1610215518;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;Whatever pirate site you're using didn't have it because it's certainly there [on Funimation](https://www.funimation.com/shows/serial-experiments-lain) from the first episode.;False;False;;;;1610170192;;False;{};gimnbah;False;t3_ktkqet;False;True;t3_ktkqet;/r/anime/comments/ktkqet/serial_experiments_lain_op/gimnbah/;1610215615;2;True;False;anime;t5_2qh22;;0;[]; -[];;;onestaromega;;;[];;;;text;t2_59qhx6bh;False;False;[];;I took probably a 5 month break from anime and manga. Just started up again last week, and I’m relapsing so hard lol. Such a high.;False;False;;;;1610170233;;False;{};gimndn8;False;t3_ktkdht;False;True;t3_ktkdht;/r/anime/comments/ktkdht/do_you_ever_just_take_breaks_from_watching_anime/gimndn8/;1610215657;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SatouSmith;;;[];;;;text;t2_85ir9527;False;False;[];;You must be new to anime;False;False;;;;1610170420;;False;{};gimnodb;False;t3_ktko2w;False;False;t3_ktko2w;/r/anime/comments/ktko2w/why_is_asta_a_mc/gimnodb/;1610215861;5;False;False;anime;t5_2qh22;;0;[]; -[];;;eulto;;;[];;;;text;t2_76pfawi4;False;False;[];;oh my gosh you're right .. i'm so sad i missed it for 5 episodes, it's such a beautiful op T_T;False;False;;;;1610170497;;False;{};gimnsnu;False;t3_ktkqet;False;True;t1_gimnbah;/r/anime/comments/ktkqet/serial_experiments_lain_op/gimnsnu/;1610215953;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AromatheraphyRoseV;;;[];;;;text;t2_858jrnfy;False;False;[];;"If you’re after the looks, I highly suggest not to watch. - -There’s a lot of anime there with their MC were drawn really good, but doesn’t really have a good story. - -The reason why Black Clover is popular is because of the story development that revolves with Asta’s anti-magic.";False;False;;;;1610170571;;False;{};gimnwrl;False;t3_ktko2w;False;False;t3_ktko2w;/r/anime/comments/ktko2w/why_is_asta_a_mc/gimnwrl/;1610216035;7;True;False;anime;t5_2qh22;;0;[]; -[];;;apinkparfait;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/beazacha/;light;text;t2_3p3fau4c;False;False;[];;Lately I'm almost only watching sequels or adaptations of source material I was already reading... imo is normal to have this moments when you spend a whole without consuming a firm of media.;False;False;;;;1610170756;;False;{};gimo6m6;False;t3_ktkdht;False;True;t3_ktkdht;/r/anime/comments/ktkdht/do_you_ever_just_take_breaks_from_watching_anime/gimo6m6/;1610216237;3;True;False;anime;t5_2qh22;;0;[]; -[];;;limberwisk;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/limberwisk;light;text;t2_15b7pb77;False;False;[];;I'll watch a lot for one month and then for 1 or 2 months i barely touch anything. Then i watch a lot. I don't know why this happens.;False;False;;;;1610170828;;False;{};gimoafc;False;t3_ktkdht;False;True;t3_ktkdht;/r/anime/comments/ktkdht/do_you_ever_just_take_breaks_from_watching_anime/gimoafc/;1610216308;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Crashkeiran;;;[];;;;text;t2_dbp1hi3;False;False;[];;I really should make a list. Mine's god only knows how long now;False;False;;;;1610171009;;False;{};gimok6c;True;t3_ktkal4;False;True;t1_gimmehp;/r/anime/comments/ktkal4/i_need_something_new_to_watch/gimok6c/;1610216491;1;True;False;anime;t5_2qh22;;0;[]; -[];;;stella_foxxx;;;[];;;;text;t2_6bcjbp7d;False;False;[];;"The saddest one I've seen is ""Your lie in April"" I cried... alot....";False;False;;;;1610171064;;False;{};gimon3o;False;t3_ktkzvp;False;False;t3_ktkzvp;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gimon3o/;1610216545;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Vpeyjilji57;;;[];;;;text;t2_15ti6p1p;False;False;[];;Because he's the loudest in the room.;False;False;;;;1610171067;;False;{};gimonas;False;t3_ktko2w;False;True;t3_ktko2w;/r/anime/comments/ktko2w/why_is_asta_a_mc/gimonas/;1610216548;0;False;False;anime;t5_2qh22;;0;[]; -[];;;SpartanSlayer64;;;[];;;;text;t2_r2wgn;False;False;[];;"> I watched was 25 episodes of City Hunter - -Ah, I see you are a man of culture as well. Anyway, I would be burned out trying to get through 25 episodes of anything in less than a month. I love anime, but I just don't have the stamina to binge watch. I'm happy to keep up with a few seasonal episodes each week, and slowly work through my backlog with some double-headers if I have free time.";False;False;;;;1610171079;;False;{};gimonwx;False;t3_ktkdht;False;True;t3_ktkdht;/r/anime/comments/ktkdht/do_you_ever_just_take_breaks_from_watching_anime/gimonwx/;1610216560;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dhamedd;;;[];;;;text;t2_2vqm307t;False;False;[];;season 1 and 2 are good. season 3 is kinda weird lol;False;False;;;;1610171095;;False;{};gimoosm;False;t3_ktkal4;False;True;t1_gimlfqc;/r/anime/comments/ktkal4/i_need_something_new_to_watch/gimoosm/;1610216578;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Jurassicgamer1993;;;[];;;;text;t2_41o3bw3u;False;False;[];;Leone;False;False;;;;1610171242;;False;{};gimowlc;False;t3_ktkjs9;False;True;t3_ktkjs9;/r/anime/comments/ktkjs9/what_is_your_favorite_sexy_anime_girls/gimowlc/;1610216721;1;True;False;anime;t5_2qh22;;0;[]; -[];;;baquea;;;[];;;;text;t2_j3k0u;False;True;[];;If I were to guess the reason, whoever encoded the torrent split the OP from the episodes to reduce file size, with it being set up so that your media player automatically plays the OP from a single file at the right point each episode. The streaming sites who took the series from that torrent, however, didn't bother adding the OP back in so it is missing on there.;False;False;;;;1610171318;;False;{};gimp0mf;False;t3_ktkqet;False;True;t1_gimnsnu;/r/anime/comments/ktkqet/serial_experiments_lain_op/gimp0mf/;1610216819;2;True;False;anime;t5_2qh22;;0;[]; -[];;;oofergang360;;;[];;;;text;t2_2j7x4b0n;False;False;[];;I’ve heard that clannad is pretty sad;False;False;;;;1610171646;;False;{};gimphqi;False;t3_ktkzvp;False;False;t3_ktkzvp;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gimphqi/;1610217146;15;True;False;anime;t5_2qh22;;0;[]; -[];;;baquea;;;[];;;;text;t2_j3k0u;False;True;[];;"Not familiar with the series, but ""dull and boring"" is a rather common trait of anime MCs.";False;False;;;;1610171758;;False;{};gimpnk4;False;t3_ktko2w;False;True;t3_ktko2w;/r/anime/comments/ktko2w/why_is_asta_a_mc/gimpnk4/;1610217257;1;True;False;anime;t5_2qh22;;0;[]; -[];;;maplesyrup78;;;[];;;;text;t2_846pp1jj;False;False;[];;I was only interested in shire, trevor, and i forgot the bald headed dudes name for that seasom;False;False;;;;1610171868;;False;{};gimpt6l;False;t3_ktkal4;False;True;t1_gimoosm;/r/anime/comments/ktkal4/i_need_something_new_to_watch/gimpt6l/;1610217362;0;True;False;anime;t5_2qh22;;0;[]; -[];;;drasheed132;;;[];;;;text;t2_39t8myjk;False;False;[];;I have watched my fair share of sad anime. The only ones that made me cry was Anohana and Made in Abyss;False;False;;;;1610171990;;False;{};gimpzfs;False;t3_ktkzvp;False;False;t3_ktkzvp;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gimpzfs/;1610217478;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610172012;;False;{};gimq0iz;False;t3_ktkjs9;False;True;t1_gimowlc;/r/anime/comments/ktkjs9/what_is_your_favorite_sexy_anime_girls/gimq0iz/;1610217497;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lightningforanimes;;;[];;;;text;t2_7kejlzwn;False;False;[];;Even though she is not in the list and I don't like Kanojo, Okarishimasu either but still I like 'chizuru mizhura' one of the sexiest waifu imo.;False;False;;;;1610172035;;False;{};gimq1s3;False;t3_ktkjs9;False;True;t3_ktkjs9;/r/anime/comments/ktkjs9/what_is_your_favorite_sexy_anime_girls/gimq1s3/;1610217522;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptionHQ;;;[];;;;text;t2_7rtb9;False;False;[];;"Plastic Memories and Your Lie In April... Maybe Your Name (movie) due to a certain aspect of the ending - -There are a ton of anime that just had the most shitty endings and it made me sad but I don’t think that’s the vibe you’re looking for";False;False;;;;1610172084;;False;{};gimq4ac;False;t3_ktkzvp;False;False;t3_ktkzvp;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gimq4ac/;1610217565;11;True;False;anime;t5_2qh22;;0;[]; -[];;;uspnuts;;;[];;;;text;t2_3xc0j59i;False;False;[];;one piece. enjoy your adventures friend;False;False;;;;1610172315;;False;{};gimqftd;False;t3_ktkal4;False;True;t3_ktkal4;/r/anime/comments/ktkal4/i_need_something_new_to_watch/gimqftd/;1610217786;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cornbread3600;;;[];;;;text;t2_52wl70ko;False;False;[];;"Taking like 2 weeks off made me appreciate it more. - -I got back into it so no problems here.";False;False;;;;1610172399;;False;{};gimqk4g;False;t3_ktkdht;False;True;t3_ktkdht;/r/anime/comments/ktkdht/do_you_ever_just_take_breaks_from_watching_anime/gimqk4g/;1610217863;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Garlicbread10;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;echidna cultist;dark;text;t2_8zn7f5o;False;False;[];;NSFW tag?;False;False;;;;1610172424;;False;{};gimqlcs;False;t3_ktl94q;False;True;t3_ktl94q;/r/anime/comments/ktl94q/this_is_too_much_even_for_degenerate_like_me/gimqlcs/;1610217889;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610172434;;False;{};gimqluc;False;t3_ktkzvp;False;True;t1_gimphqi;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gimqluc/;1610217898;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;markdhughes;;;[];;;;text;t2_bwka9;False;False;[];;Grave of the Fireflies.;False;False;;;;1610172439;;False;{};gimqm40;False;t3_ktkzvp;False;False;t3_ktkzvp;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gimqm40/;1610217902;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Eitoe;;;[];;;;text;t2_8zpj4173;False;False;[];;Yes it's too lewd;False;False;;;;1610172592;;False;{};gimqtnh;False;t3_ktl94q;False;True;t1_gimqlcs;/r/anime/comments/ktl94q/this_is_too_much_even_for_degenerate_like_me/gimqtnh/;1610218055;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hot_Independence_433;;;[];;;;text;t2_7op9v7e6;False;False;[];;I've seen em all but plastic memories, I'll check that out, the more relatable the sadness the better not much of a romance anime fan but if something is giving you depression vibes that is what I want;False;False;;;;1610172698;;False;{};gimqz0w;True;t3_ktkzvp;False;True;t1_gimq4ac;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gimqz0w/;1610218163;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DRAGONSLAYAAAA;;;[];;;;text;t2_623sb3nq;False;False;[];;TK season one is my second favourite anime but only season 1, season 2 and 3 are shit;False;False;;;;1610172707;;False;{};gimqzho;False;t3_ktlduy;False;True;t3_ktlduy;/r/anime/comments/ktlduy/tokyo_ghoul_anime_or_manga/gimqzho/;1610218173;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hot_Independence_433;;;[];;;;text;t2_7op9v7e6;False;False;[];;As the youngest of my siblings, I felt that ending;False;False;;;;1610172787;;False;{};gimr3cy;True;t3_ktkzvp;False;True;t1_gimqm40;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gimr3cy/;1610218242;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610172848;moderator;False;{};gimr6dp;False;t3_ktlgkq;False;True;t3_ktlgkq;/r/anime/comments/ktlgkq/does_anyone_remember_an_anime_that_involves_a/gimr6dp/;1610218298;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Shin_so;;;[];;;;text;t2_61x4wy6h;False;False;[];;Maquia when the promised flower blooms. This one is something else, the only show that i shed tears for.;False;False;;;;1610172871;;False;{};gimr7fr;False;t3_ktkzvp;False;False;t3_ktkzvp;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gimr7fr/;1610218316;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DRAGONSLAYAAAA;;;[];;;;text;t2_623sb3nq;False;False;[];;Sounds like a weird anime;False;False;;;;1610173036;;False;{};gimrffi;False;t3_ktlgkq;False;True;t3_ktlgkq;/r/anime/comments/ktlgkq/does_anyone_remember_an_anime_that_involves_a/gimrffi/;1610218472;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ludwin;;;[];;;;text;t2_3r0uc;False;False;[];;Makoto Shinkai's '5 Centimeters per Second,' while maybe not traditionally 'sad,' can be extremely emotional (if we're including movies).;False;False;;;;1610173045;;False;{};gimrftw;False;t3_ktkzvp;False;False;t3_ktkzvp;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gimrftw/;1610218480;9;True;False;anime;t5_2qh22;;0;[]; -[];;;r6335;;;[];;;;text;t2_632m3kyj;False;False;[];;What other anime would you recommend, finished most of jojos bizarre adventure and I'm about to start the alice in borderland manga;False;False;;;;1610173176;;False;{};gimrm9s;False;t3_ktlduy;False;True;t1_gimqzho;/r/anime/comments/ktlduy/tokyo_ghoul_anime_or_manga/gimrm9s/;1610218594;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;"1. Clannad after story -2. A silent voice -3. Violet Evergarden -4. Grave of the fireflies -5. I want to eat your pancreas - -Saddest is up to you but if you ask me I'll say Grave of the Fireflies.";False;False;;;;1610173202;;False;{};gimrnjh;False;t3_ktkzvp;False;True;t3_ktkzvp;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gimrnjh/;1610218615;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ProfessorJackH0ff;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/;light;text;t2_4y844c07;False;False;[];;Should probably throw a spoiler alert on that. Smh.;False;False;;;;1610173215;;False;{};gimro6t;False;t3_ktkzvp;False;False;t1_gimqluc;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gimro6t/;1610218626;4;True;False;anime;t5_2qh22;;0;[]; -[];;;DRAGONSLAYAAAA;;;[];;;;text;t2_623sb3nq;False;False;[];;Code geass;False;False;;;;1610173248;;False;{};gimrps0;False;t3_ktlduy;False;True;t1_gimrm9s;/r/anime/comments/ktlduy/tokyo_ghoul_anime_or_manga/gimrps0/;1610218654;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yeclek;;;[];;;;text;t2_7k2qw;False;False;[];;Yeah I’ve been on a break for the last 5 years or so. I couldn’t find anything I really liked it all started to seem repetitive. I haven’t looked in a while maybe I should see what’s out there now.;False;False;;;;1610173360;;False;{};gimrv6f;False;t3_ktkdht;False;True;t3_ktkdht;/r/anime/comments/ktkdht/do_you_ever_just_take_breaks_from_watching_anime/gimrv6f/;1610218759;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;They are not official at all, i didn't even know they were posting stuff from other Anime sites, that's low;False;False;;;;1610173464;;False;{};gims04z;False;t3_ktlkco;False;False;t3_ktlkco;/r/anime/comments/ktlkco/does_anyone_know_if_animetv_チェーン_is_legal_or_not/gims04z/;1610218848;4;True;False;anime;t5_2qh22;;0;[]; -[];;;DRAGONSLAYAAAA;;;[];;;;text;t2_623sb3nq;False;False;[];;I looked at the channel just now and I doubt VERY MUCH that its licenced but that does not mean it illegal. I would consider it illegal if they were posting full episodes;False;False;;;;1610173545;;False;{};gims3zs;False;t3_ktlkco;False;False;t3_ktlkco;/r/anime/comments/ktlkco/does_anyone_know_if_animetv_チェーン_is_legal_or_not/gims3zs/;1610218920;11;True;False;anime;t5_2qh22;;0;[]; -[];;;QuieroEstar;;;[];;;;text;t2_8tud3fvw;False;False;[];;Don't watch the anime. Read the manga.;False;False;;;;1610173567;;False;{};gims50w;False;t3_ktlduy;False;True;t3_ktlduy;/r/anime/comments/ktlduy/tokyo_ghoul_anime_or_manga/gims50w/;1610218938;1;True;False;anime;t5_2qh22;;0;[]; -[];;;r6335;;;[];;;;text;t2_632m3kyj;False;False;[];;Can you get it in English, I like to read on paper;False;False;;;;1610173645;;False;{};gims8pe;False;t3_ktlduy;False;False;t1_gims50w;/r/anime/comments/ktlduy/tokyo_ghoul_anime_or_manga/gims8pe/;1610219007;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yu-chan;;;[];;;;text;t2_c5cao;False;False;[];;Maybe [Omoide Poroporo](https://myanimelist.net/anime/1029/Omoide_Poroporo)?;False;False;;;;1610173692;;False;{};gimsazp;False;t3_ktlgkq;False;False;t3_ktlgkq;/r/anime/comments/ktlgkq/does_anyone_remember_an_anime_that_involves_a/gimsazp/;1610219048;6;True;False;anime;t5_2qh22;;0;[]; -[];;;QuieroEstar;;;[];;;;text;t2_8tud3fvw;False;False;[];;I don't know but I guess it should be available. I read it online.;False;False;;;;1610173716;;False;{};gimsc43;False;t3_ktlduy;False;True;t1_gims8pe;/r/anime/comments/ktlduy/tokyo_ghoul_anime_or_manga/gimsc43/;1610219070;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cdeuel84;;;[];;;;text;t2_2k2j0gsm;False;False;[];;Violet Evergarden had plenty of pretty sad moments.;False;False;;;;1610173748;;False;{};gimsdo6;False;t3_ktkzvp;False;True;t3_ktkzvp;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gimsdo6/;1610219099;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Simakida;;;[];;;;text;t2_8p0cvwxz;False;False;[];;Omg! I think this is it! Going to watch it to confirm it. Thank you!;False;False;;;;1610173844;;False;{};gimsi19;True;t3_ktlgkq;False;True;t1_gimsazp;/r/anime/comments/ktlgkq/does_anyone_remember_an_anime_that_involves_a/gimsi19/;1610219180;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;No, but a buddy of mine has this bizarre habit where he only watches anime for about half the year, centered on summertime;False;False;;;;1610173922;;False;{};gimsllg;False;t3_ktkdht;False;True;t3_ktkdht;/r/anime/comments/ktkdht/do_you_ever_just_take_breaks_from_watching_anime/gimsllg/;1610219250;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;"I think they are illegal, but looking at their catalog and their presentation style that is very official and maintained, even their videos end with official TV broadcast times. Their stuff is largely anime-related and currently airing anime-related, so I wouldn't be surprised if they are legal. - -**TL, DR:** I think they are Illegal, But if they come out as a legal distributor, I won't be surprised.";False;False;;;;1610174172;;False;{};gimsx0f;False;t3_ktlkco;False;True;t3_ktlkco;/r/anime/comments/ktlkco/does_anyone_know_if_animetv_チェーン_is_legal_or_not/gimsx0f/;1610219463;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CynonYew;;;[];;;;text;t2_6zo1uuu0;False;False;[];;"yeah. What bothers me is just the pretense though, I mean why try so hard to look ""official"", its like they hope it'll look official enough that they'll eventually be the real thing or something.";False;False;;;;1610174174;;False;{};gimsx45;True;t3_ktlkco;False;False;t1_gims3zs;/r/anime/comments/ktlkco/does_anyone_know_if_animetv_チェーン_is_legal_or_not/gimsx45/;1610219464;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610174174;moderator;False;{};gimsx4a;False;t3_ktlrjg;False;True;t3_ktlrjg;/r/anime/comments/ktlrjg/im_bored_of_anime/gimsx4a/;1610219464;1;False;False;anime;t5_2qh22;;0;[]; -[];;;CynonYew;;;[];;;;text;t2_6zo1uuu0;False;False;[];;Agreed. The ripping from ANN was low.;False;False;;;;1610174202;;False;{};gimsyge;True;t3_ktlkco;False;False;t1_gims04z;/r/anime/comments/ktlkco/does_anyone_know_if_animetv_チェーン_is_legal_or_not/gimsyge/;1610219488;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;Don't watch anime until you stop being bored of anime.;False;False;;;;1610174264;;False;{};gimt1ds;False;t3_ktlrjg;False;True;t3_ktlrjg;/r/anime/comments/ktlrjg/im_bored_of_anime/gimt1ds/;1610219548;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rizwan325;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/rizwan325;light;text;t2_1fe4qlcl;False;False;[];;Yes you can;False;False;;;;1610174274;;False;{};gimt1um;False;t3_ktlduy;False;True;t1_gims8pe;/r/anime/comments/ktlduy/tokyo_ghoul_anime_or_manga/gimt1um/;1610219560;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Percentage_Feisty;;;[];;;;text;t2_8vt80csg;False;False;[];;Ok then what should I do until then?;False;False;;;;1610174305;;False;{};gimt37t;False;t3_ktlrjg;False;True;t1_gimt1ds;/r/anime/comments/ktlrjg/im_bored_of_anime/gimt37t/;1610219586;0;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;Go take a break or find another hobby.;False;False;;;;1610174382;;False;{};gimt6uv;False;t3_ktlrjg;False;True;t3_ktlrjg;/r/anime/comments/ktlrjg/im_bored_of_anime/gimt6uv/;1610219658;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;Why do I have to dictate your life for you? Do whatever makes you happy, guy.;False;False;;;;1610174385;;False;{};gimt703;False;t3_ktlrjg;False;True;t1_gimt37t;/r/anime/comments/ktlrjg/im_bored_of_anime/gimt703/;1610219660;2;True;False;anime;t5_2qh22;;0;[]; -[];;;samuelanugrahandre;;;[];;;;text;t2_7mgjkffo;False;False;[];;What kind of anime are you watching and bored of?;False;False;;;;1610174415;;False;{};gimt8eh;False;t3_ktlrjg;False;True;t3_ktlrjg;/r/anime/comments/ktlrjg/im_bored_of_anime/gimt8eh/;1610219688;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;Its all on the shonen jump app for 2 dollars a month;False;False;;;;1610174436;;False;{};gimt9ey;False;t3_ktlduy;False;True;t1_gims8pe;/r/anime/comments/ktlduy/tokyo_ghoul_anime_or_manga/gimt9ey/;1610219706;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;....there are games, movies, tv series and other things that don't involve a screen;False;False;;;;1610174436;;False;{};gimt9f1;False;t3_ktlrjg;False;True;t1_gimt37t;/r/anime/comments/ktlrjg/im_bored_of_anime/gimt9f1/;1610219706;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Percentage_Feisty;;;[];;;;text;t2_8vt80csg;False;False;[];;Just watched too much anime.;False;False;;;;1610174461;;False;{};gimtakt;False;t3_ktlrjg;False;True;t1_gimt8eh;/r/anime/comments/ktlrjg/im_bored_of_anime/gimtakt/;1610219726;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610174475;moderator;False;{};gimtb8k;False;t3_ktkzvp;False;False;t1_gimqluc;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gimtb8k/;1610219738;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Percentage_Feisty;;;[];;;;text;t2_8vt80csg;False;False;[];;ok imma do that, thanks.;False;False;;;;1610174485;;False;{};gimtbnw;False;t3_ktlrjg;False;True;t1_gimt6uv;/r/anime/comments/ktlrjg/im_bored_of_anime/gimtbnw/;1610219746;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lyricaldanichan;;;[];;;;text;t2_9bkpz;False;False;[];;take a break from anime. perhaps get into video games if you haven’t already?;False;False;;;;1610174498;;False;{};gimtc8x;False;t3_ktlrjg;False;True;t3_ktlrjg;/r/anime/comments/ktlrjg/im_bored_of_anime/gimtc8x/;1610219757;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Percentage_Feisty;;;[];;;;text;t2_8vt80csg;False;False;[];;ok;False;False;;;;1610174505;;False;{};gimtclj;False;t3_ktlrjg;False;True;t1_gimt9f1;/r/anime/comments/ktlrjg/im_bored_of_anime/gimtclj/;1610219763;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;I wouldn't call re-uploading trailers as illegal. What they are doing is fine except for the official and ANN part which is quite scummy;False;False;;;;1610174511;;False;{};gimtcwd;False;t3_ktlkco;False;True;t3_ktlkco;/r/anime/comments/ktlkco/does_anyone_know_if_animetv_チェーン_is_legal_or_not/gimtcwd/;1610219769;2;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your submission has been removed. - -- It looks like your questions have been answered, so we're taking it off the list of new posts to make room for other content. For future reference, here are some additional resources that may help you find an answer even faster: - - - [To ask any random question you may have, visit our Weekly Miscellaneous Anime Questions thread!](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Weekly+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) - - [For finding an anime based off of a single image, reverse image searching typically works instantly](http://www.reddit.com/r/anime/wiki/reverse_image_searching) - - [r/anime has a large number of watch orders available](http://www.reddit.com/r/anime/wiki/watch_order) - - [You can find all of your recommendation needs here](http://www.reddit.com/r/anime/wiki/recommendations) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610174541;moderator;False;{};gimte9i;False;t3_ktlrjg;False;True;t3_ktlrjg;/r/anime/comments/ktlrjg/im_bored_of_anime/gimte9i/;1610219794;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610175088;moderator;False;{};gimu2uj;False;t3_ktlywg;False;True;t3_ktlywg;/r/anime/comments/ktlywg/keeping_up_with_new_releases/gimu2uj/;1610220257;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Theworldmaynever, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610175107;moderator;False;{};gimu3pi;False;t3_ktlz1t;False;True;t3_ktlz1t;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimu3pi/;1610220272;1;False;False;anime;t5_2qh22;;0;[]; -[];;;RedsonOfKyrypton;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RedsonofMelomarc;light;text;t2_5d1b60l;False;False;[];;I use [LiveChart](https://www.livechart.me/) and [My Anime List](https://myanimelist.net/);False;False;;;;1610175183;;False;{};gimu75r;False;t3_ktlywg;False;True;t3_ktlywg;/r/anime/comments/ktlywg/keeping_up_with_new_releases/gimu75r/;1610220337;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Codersage2;;;[];;;;text;t2_95aqbi54;False;False;[];;I just check the [Seasonal Anime on mal](https://myanimelist.net/anime/season).;False;False;;;;1610175227;;False;{};gimu925;False;t3_ktlywg;False;True;t3_ktlywg;/r/anime/comments/ktlywg/keeping_up_with_new_releases/gimu925/;1610220371;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jamielife;;;[];;;;text;t2_85jqz;False;False;[];;People seem to either love it or hate it, but I thought Scum's Wish was soul shattering. Remember just feeling empty for awhile after the finishing it. Also, AnoHana had it's fair share of moments and as others have said, Clannad: After Story.;False;False;;;;1610175321;;False;{};gimud8e;False;t3_ktkzvp;False;True;t3_ktkzvp;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gimud8e/;1610220447;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Codersage2;;;[];;;;text;t2_95aqbi54;False;False;[];;there's also [anilist](https://anilist.co/search/anime/this-season).;False;False;;;;1610175349;;False;{};gimuei2;False;t3_ktlywg;False;True;t1_gimu75r;/r/anime/comments/ktlywg/keeping_up_with_new_releases/gimuei2/;1610220471;3;True;False;anime;t5_2qh22;;0;[]; -[];;;samuelanugrahandre;;;[];;;;text;t2_7mgjkffo;False;False;[];;"Yeah but what kinds of anime? - -Anime is a medium, there's lots of kinds of animes. Hell, there's hundreds of slice of life anime. Hundreds of romance animes, hundreds of mecha animes. - -It seems like you are not looking to find solutions from people who comment on this.";False;False;;;;1610175368;;False;{};gimufag;False;t3_ktlrjg;False;True;t1_gimtakt;/r/anime/comments/ktlrjg/im_bored_of_anime/gimufag/;1610220484;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sunears;;;[];;;;text;t2_5e8xdun1;False;False;[];;Zetsuen no tempest/Blast of tempest;False;False;;;;1610175420;;False;{};gimuhkh;False;t3_ktm10g;False;True;t3_ktm10g;/r/anime/comments/ktm10g/what_is_this_anime/gimuhkh/;1610220525;2;True;False;anime;t5_2qh22;;0;[]; -[];;;yui473;;;[];;;;text;t2_8jkkkqpa;False;False;[];;Zetsuen No Tempest?;False;False;;;;1610175431;;False;{};gimui3k;False;t3_ktm10g;False;True;t3_ktm10g;/r/anime/comments/ktm10g/what_is_this_anime/gimui3k/;1610220535;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610175439;;False;{};gimuih0;False;t3_ktm10g;False;True;t3_ktm10g;/r/anime/comments/ktm10g/what_is_this_anime/gimuih0/;1610220541;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Percentage_Feisty;;;[];;;;text;t2_8vt80csg;False;False;[];;Action, supernatural,fantasy.;False;False;;;;1610175450;;False;{};gimuiy6;False;t3_ktlrjg;False;True;t1_gimufag;/r/anime/comments/ktlrjg/im_bored_of_anime/gimuiy6/;1610220550;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;Yep thx;False;False;;;;1610175453;;False;{};gimuj3m;False;t3_ktm10g;False;True;t1_gimuhkh;/r/anime/comments/ktm10g/what_is_this_anime/gimuj3m/;1610220552;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptionHQ;;;[];;;;text;t2_7rtb9;False;False;[];;Yeah that’s a tough genre to pin down because most anime has its ups and downs;False;False;;;;1610175497;;False;{};gimul1l;False;t3_ktkzvp;False;False;t1_gimqz0w;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gimul1l/;1610220589;2;True;False;anime;t5_2qh22;;0;[]; -[];;;samuelanugrahandre;;;[];;;;text;t2_7mgjkffo;False;False;[];;Care to give some examples of the anime?;False;False;;;;1610175545;;False;{};gimun53;False;t3_ktlrjg;False;True;t1_gimuiy6;/r/anime/comments/ktlrjg/im_bored_of_anime/gimun53/;1610220634;1;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;Toradora, Kaguya-sama, Gamers!, Plastic Memories, Rascal does not Dream of Bunny Girl Senpai, My Teen Romantic Comedy SNAFU. Plastic Memories is sad, just a heads up.;False;False;;;;1610175571;;False;{};gimuoa6;False;t3_ktlz1t;False;True;t3_ktlz1t;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimuoa6/;1610220655;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Theworldmaynever;;;[];;;;text;t2_8gcmju7b;False;False;[];;Sadly already watched all of them lmao;False;False;;;;1610175603;;False;{};gimupqz;True;t3_ktlz1t;False;True;t1_gimuoa6;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimupqz/;1610220680;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Percentage_Feisty;;;[];;;;text;t2_8vt80csg;False;False;[];;Like mononoke,tasogare otome.;False;False;;;;1610175610;;False;{};gimuq36;False;t3_ktlrjg;False;True;t1_gimun53;/r/anime/comments/ktlrjg/im_bored_of_anime/gimuq36/;1610220687;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi yui473, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610175717;moderator;False;{};gimuuuj;False;t3_ktm3yx;False;True;t3_ktm3yx;/r/anime/comments/ktm3yx/recommend_me_animes_below_30_episodes_that_are/gimuuuj/;1610220774;1;False;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;rent a girlfriend;False;False;;;;1610175749;;False;{};gimuw9k;False;t3_ktlz1t;False;True;t1_gimupqz;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimuw9k/;1610220801;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Theworldmaynever;;;[];;;;text;t2_8gcmju7b;False;False;[];;Also watched it;False;False;;;;1610175772;;False;{};gimux9f;True;t3_ktlz1t;False;True;t1_gimuw9k;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimux9f/;1610220819;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610175792;;False;{};gimuy5i;False;t3_ktlduy;False;True;t1_gimt9ey;/r/anime/comments/ktlduy/tokyo_ghoul_anime_or_manga/gimuy5i/;1610220836;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi r6335, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610175793;moderator;False;{};gimuy69;False;t3_ktlduy;False;False;t1_gimuy5i;/r/anime/comments/ktlduy/tokyo_ghoul_anime_or_manga/gimuy69/;1610220836;1;False;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;(●__●);False;False;;;;1610175819;;False;{};gimuzbv;False;t3_ktlz1t;False;True;t1_gimux9f;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimuzbv/;1610220866;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Theworldmaynever;;;[];;;;text;t2_8gcmju7b;False;False;[];;Yup srr im an addicted otaku;False;False;;;;1610175861;;False;{};gimv12n;True;t3_ktlz1t;False;True;t1_gimuzbv;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimv12n/;1610220898;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610175945;moderator;False;{};gimv4mg;False;t3_ktm5vm;False;True;t3_ktm5vm;/r/anime/comments/ktm5vm/what_is_the_name_of_this_anime/gimv4mg/;1610220965;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;Kimi No Na Wa;False;False;;;;1610176030;;False;{};gimv88i;False;t3_ktm5vm;False;True;t3_ktm5vm;/r/anime/comments/ktm5vm/what_is_the_name_of_this_anime/gimv88i/;1610221031;5;True;False;anime;t5_2qh22;;0;[]; -[];;;H-Ryougi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DizzyAvocado/animelist;light;text;t2_pr24s;False;False;[];;"Gunbuster - -Diebuster - -FLCL - -Tatami Galaxy - -Tengen Toppa Gurren Lagann - -ERASED - -Planet With - -Neon Genesis Evangelion - -Serial Experiments Lain - -Madoka Magica";False;False;;;;1610176031;;False;{};gimv8az;False;t3_ktm3yx;False;False;t3_ktm3yx;/r/anime/comments/ktm3yx/recommend_me_animes_below_30_episodes_that_are/gimv8az/;1610221032;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Tw1987;;;[];;;;text;t2_gfmbo;False;True;[];;Fate Zero skip episode one, cowboy bebop, psychopass;False;False;;;;1610176035;;False;{};gimv8gb;False;t3_ktm3yx;False;False;t3_ktm3yx;/r/anime/comments/ktm3yx/recommend_me_animes_below_30_episodes_that_are/gimv8gb/;1610221035;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610176047;;False;{};gimv8zp;False;t3_ktlkco;False;False;t3_ktlkco;/r/anime/comments/ktlkco/does_anyone_know_if_animetv_チェーン_is_legal_or_not/gimv8zp/;1610221044;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Btw_kek;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SouvlakiSpace7;light;text;t2_i0pj6;False;False;[];;pretty sure it's Mitsuha from Your Name;False;False;;;;1610176058;;False;{};gimv9ig;False;t3_ktm5vm;False;True;t3_ktm5vm;/r/anime/comments/ktm5vm/what_is_the_name_of_this_anime/gimv9ig/;1610221053;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sendhelp404;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_39x4uqma;False;False;[];;The red cord in her hair and the uniform/hairstyle makes me want to say it’s fanart of Mitsuha from Your Name but I could be wrong;False;False;;;;1610176090;;False;{};gimvatx;False;t3_ktm5vm;False;True;t3_ktm5vm;/r/anime/comments/ktm5vm/what_is_the_name_of_this_anime/gimvatx/;1610221077;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sendhelp404;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_39x4uqma;False;False;[];;"Nagi no asukara - -Shinsekai yori";False;False;;;;1610176180;;False;{};gimvemc;False;t3_ktm3yx;False;True;t3_ktm3yx;/r/anime/comments/ktm3yx/recommend_me_animes_below_30_episodes_that_are/gimvemc/;1610221146;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MVogel01;;;[];;;;text;t2_2l5i0380;False;False;[];;Death note is close to that, with only 37 episodes and it’s fantastic. Other than that Erased is good I’ve heard. Most of the ones I would recommend are longer than that or aren’t finished yet;False;False;;;;1610176198;;False;{};gimvfev;False;t3_ktm3yx;False;True;t3_ktm3yx;/r/anime/comments/ktm3yx/recommend_me_animes_below_30_episodes_that_are/gimvfev/;1610221159;3;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;"Cowboy Bebop, Neon Genesis Evangelion, Chobits, Future Boy Conan, Toradora, Shinsekai Yori, Little Witch Academia, Welcome to the NHK!, Kanon (2006), Steins;Gate, Kill la Kill, Darling in the Franxx, Gankutsuou, Plastic Memories, Sora Yori mo Tooi Basho, Mob Psycho 100, Ika Musume, Madoka Magica, Deca-Dence, BNA, The Tatami Galaxy, Anohana, Kyousougiga, Devilman Crybaby, Gurren Lagann, FLCL, Gunbuster + Diebuster, Mawaru Penguindrum, Your Lie in April.";False;False;;;;1610176306;;False;{};gimvk0n;False;t3_ktm3yx;False;True;t3_ktm3yx;/r/anime/comments/ktm3yx/recommend_me_animes_below_30_episodes_that_are/gimvk0n/;1610221246;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AngelJQA;;;[];;;;text;t2_5l9d9t9l;False;False;[];;Thanks, I've already seen the movie but I didn't realize it was her XD.;False;False;;;;1610176477;;False;{};gimvr58;True;t3_ktm5vm;False;True;t1_gimvatx;/r/anime/comments/ktm5vm/what_is_the_name_of_this_anime/gimvr58/;1610221378;1;True;False;anime;t5_2qh22;;0;[]; -[];;;samuelanugrahandre;;;[];;;;text;t2_7mgjkffo;False;False;[];;"The easiest solution is to watch genre that are not those 3. So no action, no supernatural, no fantasy. - -I recommend try watching Ping Pong, Paranoia Agent, Cowboy Bebop, Heidi. - -If that does not help, try doing something else. Watch movies, watch animated movies, play games, read books, exercise.";False;False;;;;1610176539;;False;{};gimvtpn;False;t3_ktlrjg;False;True;t1_gimuq36;/r/anime/comments/ktlrjg/im_bored_of_anime/gimvtpn/;1610221425;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wealthofanime;;;[];;;;text;t2_5dftzyww;False;False;[];;"Akagme Ga Kill - -Elfen Lied - -Death Note - -Terror In Resonance - -Hellsing - -Afro Samurai";False;False;;;;1610176709;;False;{};gimw0s3;False;t3_ktm3yx;False;False;t3_ktm3yx;/r/anime/comments/ktm3yx/recommend_me_animes_below_30_episodes_that_are/gimw0s3/;1610221552;5;True;False;anime;t5_2qh22;;0;[];True -[];;;chillychew3000;;;[];;;;text;t2_3qhtvuv4;False;False;[];;Teasing master Takagi san, idk if they gonna make another season but I hope they do.;False;False;;;;1610176805;;False;{};gimw4oi;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gimw4oi/;1610221625;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Akai-AC;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Akai-AC;light;text;t2_3af1hwm4;False;False;[];;"I don't see the problem. The person who made that ANN video literally commented ""thank you for watching"" in the Anime TV video. So ig they got permission to post it. - -From what I observed, just like ANN - AnimeTV provides news related to anime. - -I'm not sure about the trailers though. But it's a big channel. I think they'd have been taken down if it's illegal. - -Edit: ANN and AnimeTV even follow each other on twitter. They probably have some kind of partnership.";False;False;;;;1610176814;;1610187390.0;{};gimw52t;False;t3_ktlkco;False;False;t1_gimsx45;/r/anime/comments/ktlkco/does_anyone_know_if_animetv_チェーン_is_legal_or_not/gimw52t/;1610221632;8;True;False;anime;t5_2qh22;;0;[]; -[];;;GDW312;;;[];;;;text;t2_7mclpp14;False;False;[];;Boys over Flowers, Special Class: S. A;False;False;;;;1610177006;;False;{};gimwcyo;False;t3_ktlz1t;False;True;t3_ktlz1t;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimwcyo/;1610221778;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Theworldmaynever;;;[];;;;text;t2_8gcmju7b;False;False;[];;I know i was the one asking for recommendations but have you watched tonikawa over the moon for you its good its really cute;False;False;;;;1610177048;;False;{};gimwenr;True;t3_ktlz1t;False;True;t1_gimuzbv;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimwenr/;1610221810;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Theworldmaynever;;;[];;;;text;t2_8gcmju7b;False;False;[];;Ok thx will do;False;False;;;;1610177063;;False;{};gimwf9i;True;t3_ktlz1t;False;True;t1_gimwcyo;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimwf9i/;1610221821;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;Stars Align;False;False;;;;1610177080;;False;{};gimwfyc;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gimwfyc/;1610221833;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sir_aphim;;;[];;;;text;t2_7qpo130j;False;False;[];;"Too many to list them all. On the top of my head: - -No game no life - -Spice and wolf - -Konosuba - -Darker than Black";False;False;;;;1610177144;;False;{};gimwihp;False;t3_ktm9t3;False;False;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gimwihp/;1610221885;28;True;False;anime;t5_2qh22;;0;[]; -[];;;stefandy31;;;[];;;;text;t2_rrxlv;False;False;[];;the tale of princess kaguya and in the corner of this world;False;False;;;;1610177184;;False;{};gimwk1n;False;t3_ktkzvp;False;True;t3_ktkzvp;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gimwk1n/;1610221932;2;True;False;anime;t5_2qh22;;0;[]; -[];;;findercutename;;;[];;;;text;t2_8rmmqqbt;False;False;[];;I've heard the rhythem so many times. The lyrics are different though. I cant remember;False;False;;;;1610177239;;False;{};gimwm95;False;t3_ktm0u7;False;True;t3_ktm0u7;/r/anime/comments/ktm0u7/pokemon_journeys_new_opening/gimwm95/;1610221974;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;True;[];;No game no life is cheating, so I'm going with Btooom!;False;False;;;;1610177242;;False;{};gimwme5;False;t3_ktm9t3;False;False;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gimwme5/;1610221977;27;True;False;anime;t5_2qh22;;0;[]; -[];;;Galvanizedheart;;;[];;;;text;t2_2utwyatc;False;False;[];;Honestly. Arifureta. I saw alot of people weren't crazy about it but I just wanted more.;False;False;;;;1610177283;;False;{};gimwo3k;False;t3_ktm9t3;False;False;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gimwo3k/;1610222007;8;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610177285;moderator;False;{};gimwo5v;False;t3_ktmg1e;False;True;t3_ktmg1e;/r/anime/comments/ktmg1e/question_about_the_plot/gimwo5v/;1610222008;0;False;False;anime;t5_2qh22;;0;[]; -[];;;findercutename;;;[];;;;text;t2_8rmmqqbt;False;False;[];;Yep it is;False;False;;;;1610177336;;False;{};gimwq99;False;t3_ktlz1t;False;True;t1_gimwenr;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimwq99/;1610222047;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hitogomi911;;;[];;;;text;t2_83ec5qv5;False;False;[];;I and many others, Usagi Drop. We just want closure;False;False;;;;1610177352;;1610177560.0;{};gimwqxb;False;t3_ktm9t3;False;False;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gimwqxb/;1610222060;5;True;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;recently my friend recommended it and it's on my watchlist still haven't started yet I heard it was really nice;False;False;;;;1610177431;;False;{};gimwu0p;False;t3_ktlz1t;False;True;t1_gimwenr;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimwu0p/;1610222126;2;True;False;anime;t5_2qh22;;0;[]; -[];;;brotato96;;;[];;;;text;t2_16ylw4gr;False;False;[];;I dont watch unless there are two big plots.;False;False;;;;1610177484;;False;{};gimww9n;False;t3_ktmg1e;False;False;t3_ktmg1e;/r/anime/comments/ktmg1e/question_about_the_plot/gimww9n/;1610222167;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Theworldmaynever;;;[];;;;text;t2_8gcmju7b;False;False;[];;Yea you should defenetly watch it oh and just saying the intro is lit;False;False;;;;1610177485;;False;{};gimwwaf;True;t3_ktlz1t;False;False;t1_gimwu0p;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimwwaf/;1610222167;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;It isn't an acronym or anything.;False;False;;;;1610177488;;False;{};gimwwdt;False;t3_ktmg1e;False;False;t3_ktmg1e;/r/anime/comments/ktmg1e/question_about_the_plot/gimwwdt/;1610222169;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Boobies, thighs and asses;False;False;;;;1610177504;;False;{};gimwx11;False;t3_ktmg1e;False;True;t3_ktmg1e;/r/anime/comments/ktmg1e/question_about_the_plot/gimwx11/;1610222180;0;True;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;I'm mostly into action and comedy that's why haven't started yel XD but will definitely try;False;False;;;;1610177544;;False;{};gimwyjy;False;t3_ktlz1t;False;False;t1_gimwwaf;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimwyjy/;1610222209;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rasouddress;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/rasouddress/;light;text;t2_p87m5;False;False;[];;"Girls' Last Tour - -Houseki no Kuni";False;False;;;;1610177554;;False;{};gimwz0q;False;t3_ktm9t3;False;False;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gimwz0q/;1610222217;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Theworldmaynever;;;[];;;;text;t2_8gcmju7b;False;False;[];;Yep i also like action and comedy;False;False;;;;1610177577;;False;{};gimwzyb;True;t3_ktlz1t;False;True;t1_gimwyjy;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimwzyb/;1610222236;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cassydd;;;[];;;;text;t2_5qilx;False;False;[];;And many more are very glad that there was no second season. Or would be if they knew...;False;False;;;;1610177578;;False;{};gimx011;False;t3_ktm9t3;False;False;t1_gimwqxb;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gimx011/;1610222238;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Theworldmaynever;;;[];;;;text;t2_8gcmju7b;False;False;[];;If you like comedy their is also kaguya sama love is war;False;False;;;;1610177607;;False;{};gimx16d;True;t3_ktlz1t;False;True;t1_gimwyjy;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimx16d/;1610222266;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610177622;moderator;False;{};gimx1sp;False;t3_ktmio7;False;True;t3_ktmio7;/r/anime/comments/ktmio7/any_help_finding_an_anime_where_the_protagonist/gimx1sp/;1610222285;0;False;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;nice i'mma complete darling in the franxx today and I'm also watching fire force;False;False;;;;1610177632;;False;{};gimx26y;False;t3_ktlz1t;False;True;t1_gimwzyb;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimx26y/;1610222295;2;True;False;anime;t5_2qh22;;0;[]; -[];;;asslavz;;;[];;;;text;t2_6z9yqdla;False;False;[];;Made in abyss is sad?;False;False;;;;1610177636;;False;{};gimx2cl;False;t3_ktkzvp;False;True;t1_gimpzfs;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gimx2cl/;1610222299;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;I watched it;False;False;;;;1610177656;;False;{};gimx35x;False;t3_ktlz1t;False;True;t1_gimx16d;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimx35x/;1610222314;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Theworldmaynever;;;[];;;;text;t2_8gcmju7b;False;False;[];;Yea their both nice;False;False;;;;1610177659;;False;{};gimx39z;True;t3_ktlz1t;False;True;t1_gimx26y;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimx39z/;1610222316;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SMRchdon075;;;[];;;;text;t2_76awkk6i;False;False;[];;"Dororo -Akame GA kill";False;False;;;;1610177670;;False;{};gimx3qi;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gimx3qi/;1610222324;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Theworldmaynever;;;[];;;;text;t2_8gcmju7b;False;False;[];;Did you like it?;False;False;;;;1610177694;;False;{};gimx4p9;True;t3_ktlz1t;False;True;t1_gimx35x;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimx4p9/;1610222342;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SMRchdon075;;;[];;;;text;t2_76awkk6i;False;False;[];;I'll take a break for hours by p lasting;False;False;;;;1610177745;;False;{};gimx6q9;False;t3_ktkdht;False;True;t3_ktkdht;/r/anime/comments/ktkdht/do_you_ever_just_take_breaks_from_watching_anime/gimx6q9/;1610222395;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mickysaif;;;[];;;;text;t2_8n5g8tgu;False;False;[];;yeah it was really funny;False;False;;;;1610177782;;False;{};gimx86o;False;t3_ktlz1t;False;True;t1_gimx4p9;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimx86o/;1610222421;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cassydd;;;[];;;;text;t2_5qilx;False;False;[];;"For me, I have a soft spot for ""Gotta be the Twintails"" since it's the first really messed up, trope-y yet using those tropes to satirical effect anime I've watched. Not least because there's no consistent LN translation.";False;False;;;;1610177792;;False;{};gimx8md;False;t3_ktm9t3;False;False;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gimx8md/;1610222429;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Theworldmaynever;;;[];;;;text;t2_8gcmju7b;False;False;[];;Agreed;False;False;;;;1610177800;;False;{};gimx8x3;True;t3_ktlz1t;False;True;t1_gimx86o;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimx8x3/;1610222436;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JadeDragon56;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/JadeDragon56;light;text;t2_ee93o;False;False;[];;I want a second season as much as I dont lol;False;False;;;;1610177811;;False;{};gimx9dl;False;t3_ktm9t3;False;False;t1_gimx011;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gimx9dl/;1610222444;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610177834;;False;{};gimxaat;False;t3_ktlz1t;False;True;t3_ktlz1t;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimxaat/;1610222462;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rne9k;;;[];;;;text;t2_6ka7e32p;False;False;[];;A lot, but The devil is a part timer takes the cake.;False;False;;;;1610177861;;False;{};gimxbbe;False;t3_ktm9t3;False;False;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gimxbbe/;1610222481;34;True;False;anime;t5_2qh22;;0;[]; -[];;;KILLERgolm;;;[];;;;text;t2_558dphiy;False;False;[];;Download a VPN and watch it on Funimation or Crunchyroll;False;False;;;;1610177865;;False;{};gimxbht;False;t3_ktmjnz;False;True;t3_ktmjnz;/r/anime/comments/ktmjnz/where_do_i_watch_db/gimxbht/;1610222485;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610177871;;False;{};gimxbq9;False;t3_ktmjnz;False;True;t3_ktmjnz;/r/anime/comments/ktmjnz/where_do_i_watch_db/gimxbq9/;1610222488;1;True;False;anime;t5_2qh22;;0;[]; -[];;;brotato96;;;[];;;;text;t2_16ylw4gr;False;False;[];;Darling in the franxx, will not spoil but ending is pretty disappointing. Also Bokuben, They just end it without any conclusion.;False;False;;;;1610177972;;False;{};gimxfsx;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gimxfsx/;1610222564;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Theworldmaynever;;;[];;;;text;t2_8gcmju7b;False;False;[];;@findercutename why did you delet the comment?;False;False;;;;1610178003;;False;{};gimxgzt;True;t3_ktlz1t;False;True;t3_ktlz1t;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimxgzt/;1610222583;1;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;Pantsu, Lolis, Oppai, Thighs.;False;False;;;;1610178060;;False;{};gimxjb0;False;t3_ktmg1e;False;False;t3_ktmg1e;/r/anime/comments/ktmg1e/question_about_the_plot/gimxjb0/;1610222625;5;True;False;anime;t5_2qh22;;0;[]; -[];;;brotato96;;;[];;;;text;t2_16ylw4gr;False;False;[];;I think you mean shows which did not release more seasons but here is my little rant.;False;False;;;;1610178169;;False;{};gimxnm3;False;t3_ktm9t3;False;True;t1_gimxfsx;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gimxnm3/;1610222721;1;True;False;anime;t5_2qh22;;0;[]; -[];;;androiduser243;;;[];;;;text;t2_3g8rexdf;False;False;[];;White Album 2, Classroom of the Elite;False;False;;;;1610178211;;False;{};gimxpaa;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gimxpaa/;1610222754;2;True;False;anime;t5_2qh22;;0;[]; -[];;;androiduser243;;;[];;;;text;t2_3g8rexdf;False;False;[];;Happy cake day;False;False;;;;1610178289;;False;{};gimxs89;False;t3_ktm3yx;False;True;t1_gimw0s3;/r/anime/comments/ktm3yx/recommend_me_animes_below_30_episodes_that_are/gimxs89/;1610222813;1;True;False;anime;t5_2qh22;;0;[]; -[];;;androiduser243;;;[];;;;text;t2_3g8rexdf;False;False;[];;White Album 2;False;False;;;;1610178368;;False;{};gimxvau;False;t3_ktlz1t;False;True;t3_ktlz1t;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimxvau/;1610222873;1;True;False;anime;t5_2qh22;;0;[]; -[];;;komodo1989;;;[];;;;text;t2_2zpoibc1;False;False;[];;Possibly- Chrome Shelled Regios;False;False;;;;1610178405;;False;{};gimxwse;False;t3_ktmio7;False;False;t3_ktmio7;/r/anime/comments/ktmio7/any_help_finding_an_anime_where_the_protagonist/gimxwse/;1610222906;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Fro99ywo99y1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Frat_Snap;light;text;t2_tailh;False;False;[];;"People - -Like - -Oversized - -Tits";False;False;;;;1610178421;;False;{};gimxxdw;False;t3_ktmg1e;False;False;t3_ktmg1e;/r/anime/comments/ktmg1e/question_about_the_plot/gimxxdw/;1610222920;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;"No Game No Life - -Hinamatsuri - -Grimgar - -Amai Brilliant Park - -Magi - -Gangsta";False;False;;;;1610178546;;False;{};gimy2ak;False;t3_ktm9t3;False;False;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gimy2ak/;1610223014;23;True;False;anime;t5_2qh22;;0;[]; -[];;;MusubiKazesaru;;;[];;;;text;t2_oh8ti;False;False;[];;Yes, it concludes.;False;False;;;;1610178562;;False;{};gimy2y1;False;t3_ktmmy9;False;False;t3_ktmmy9;/r/anime/comments/ktmmy9/does_chaika_the_coffin_princess_have_a_conclusive/gimy2y1/;1610223027;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi El_Dorado_king, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610178739;moderator;False;{};gimy9tv;False;t3_ktmqce;False;True;t3_ktmqce;/r/anime/comments/ktmqce/pls_recommend_me_a_yuri_anime_where_characters/gimy9tv/;1610223153;1;False;False;anime;t5_2qh22;;0;[]; -[];;;_Pinguino_;;skip7;[];;;dark;text;t2_8rggs9k7;False;False;[];;"Major vs Tank - -Asuka vs Eva Series - -Greymon vs Parrotmon";False;False;;;;1610178816;;False;{};gimyctq;False;t3_ktmos6;False;True;t3_ktmos6;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gimyctq/;1610223209;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Boujoulo;;;[];;;;text;t2_6iczsif5;False;False;[];;I like to alternate between reading manga and watching anime. Sometimes I would watch anime for a few weeks then switch to only reading manga or LN for a few weeks.;False;False;;;;1610178892;;False;{};gimyfqu;False;t3_ktkdht;False;False;t3_ktkdht;/r/anime/comments/ktkdht/do_you_ever_just_take_breaks_from_watching_anime/gimyfqu/;1610223274;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Theworldmaynever;;;[];;;;text;t2_8gcmju7b;False;False;[];;Ok thx;False;False;;;;1610178917;;False;{};gimygox;True;t3_ktlz1t;False;True;t1_gimxvau;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gimygox/;1610223291;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jasyn58;;;[];;;;text;t2_oaknedt;False;False;[];;"There's talk about finishing Bleach soon, and I'm happy af. I read the manga, but I want to see it. It's going to be good to get that closer for the dvd collection. - -As for one anime never returning, Ghost Stories dub. That shit had me rolling fr.";False;False;;;;1610178988;;False;{};gimyjip;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gimyjip/;1610223346;0;True;False;anime;t5_2qh22;;0;[]; -[];;;The-Gigagod;;;[];;;;text;t2_3ieldijj;False;False;[];;Cmon dude read the notes! I havnt seen those anime, but I look forward to them now!;False;False;;;;1610178990;;False;{};gimyjkg;True;t3_ktmos6;False;True;t1_gimyctq;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gimyjkg/;1610223346;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeowlite;;;[];;;;text;t2_xyzpq;False;False;[];;Yes, but the romance part remains vague;False;False;;;;1610179076;;False;{};gimymu7;False;t3_ktmmy9;False;True;t3_ktmmy9;/r/anime/comments/ktmmy9/does_chaika_the_coffin_princess_have_a_conclusive/gimymu7/;1610223435;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610179103;moderator;False;{};gimynu9;False;t3_ktmsq9;False;True;t3_ktmsq9;/r/anime/comments/ktmsq9/i_need_kawaii_anime_wallpaper_for_my_phone/gimynu9/;1610223460;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Jasyn58;;;[];;;;text;t2_oaknedt;False;False;[];;Same. We could have had more episodes had they stuck to the manga, but a lot was removed in the anime. Still a great anime and I atill have hopes it'll return soon.;False;False;;;;1610179118;;False;{};gimyoda;False;t3_ktm9t3;False;True;t1_gimwo3k;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gimyoda/;1610223473;1;True;False;anime;t5_2qh22;;0;[]; -[];;;timewellspent0889;;;[];;;;text;t2_97fp4me8;False;False;[];;That's fine, it's really weird this is the first show I've watched where the romance doesn't really matter to me. I think Chaika seems so innocent that it seems weird. Maybe it's the way she talks, it reminds me of children;False;False;;;;1610179164;;False;{};gimyq5s;True;t3_ktmmy9;False;True;t1_gimymu7;/r/anime/comments/ktmmy9/does_chaika_the_coffin_princess_have_a_conclusive/gimyq5s/;1610223507;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cynderaquil;;;[];;;;text;t2_3hyccqum;False;False;[];;Why don’t you use google?;False;False;;;;1610179175;;False;{};gimyqke;False;t3_ktmsq9;False;True;t3_ktmsq9;/r/anime/comments/ktmsq9/i_need_kawaii_anime_wallpaper_for_my_phone/gimyqke/;1610223514;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_Pinguino_;;skip7;[];;;dark;text;t2_8rggs9k7;False;False;[];;these are just recs since you mentioned that above;False;False;;;;1610179245;;False;{};gimyt8v;False;t3_ktmos6;False;True;t1_gimyjkg;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gimyt8v/;1610223573;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fraid_so;;;[];;;;text;t2_oeyx4;False;False;[];;"If you're interested in BL, try Hitorijime my hero. It's got some dating in the first and last. Also Dakaretai otoko ichii ni odosarete imasu has sexy times from the start. - -Literally the only GL I even know of is Citrus. No idea what it's like cause I haven't watched it hahaha";False;False;;;;1610179258;;False;{};gimytr3;False;t3_ktmqce;False;True;t3_ktmqce;/r/anime/comments/ktmqce/pls_recommend_me_a_yuri_anime_where_characters/gimytr3/;1610223584;-3;False;False;anime;t5_2qh22;;0;[]; -[];;;Zeowlite;;;[];;;;text;t2_xyzpq;False;False;[];;Magi s3 would be dope...no season 3....same goes with legend of legendary heros s2...adventure of sinbad s2...grimgar s2...alice academy s2...and many more😟;False;False;;;;1610179291;;False;{};gimyuzu;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gimyuzu/;1610223606;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nielloscape;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Niello;light;text;t2_160hhg;False;False;[];;"Is it by any chance Captain Kuppa? - -https://www.youtube.com/watch?v=_ad7-9bwgeQ";False;False;;;;1610179338;;False;{};gimywss;False;t3_ktmio7;False;True;t3_ktmio7;/r/anime/comments/ktmio7/any_help_finding_an_anime_where_the_protagonist/gimywss/;1610223642;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Skylair13;;;[];;;;text;t2_1xfa6ths;False;False;[];;"Spice and Wolf - -I ended up buying 17 volumes of the light novel to get the ending";False;False;;;;1610179356;;False;{};gimyxig;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gimyxig/;1610223654;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tophausen;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/tophausen;light;text;t2_1f3chxir;False;False;[];;pixiv and danbooru are good places;False;False;;;;1610179364;;False;{};gimyxtx;False;t3_ktmsq9;False;True;t3_ktmsq9;/r/anime/comments/ktmsq9/i_need_kawaii_anime_wallpaper_for_my_phone/gimyxtx/;1610223660;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RemoteBlackOut;;;[];;;;text;t2_5jmlu2mt;False;False;[];;o hahahhahah;False;False;;;;1610179400;;False;{};gimyzan;True;t3_ktmg1e;False;True;t1_gimww9n;/r/anime/comments/ktmg1e/question_about_the_plot/gimyzan/;1610223689;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cynderaquil;;;[];;;;text;t2_3hyccqum;False;False;[];;They asked for GL, not BL.;False;False;;;;1610179401;;False;{};gimyzbg;False;t3_ktmqce;False;True;t1_gimytr3;/r/anime/comments/ktmqce/pls_recommend_me_a_yuri_anime_where_characters/gimyzbg/;1610223692;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fat_memer420;;;[];;;;text;t2_92d1d4kg;False;False;[];;I tried but I couldn't find anything good;False;False;;;;1610179414;;False;{};gimyzur;True;t3_ktmsq9;False;True;t1_gimyqke;/r/anime/comments/ktmsq9/i_need_kawaii_anime_wallpaper_for_my_phone/gimyzur/;1610223702;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fat_memer420;;;[];;;;text;t2_92d1d4kg;False;False;[];;I don't like pixiv tbh but ill check the other one thanks;False;False;;;;1610179462;;False;{};gimz1ow;True;t3_ktmsq9;False;True;t1_gimyxtx;/r/anime/comments/ktmsq9/i_need_kawaii_anime_wallpaper_for_my_phone/gimz1ow/;1610223736;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fat_memer420;;;[];;;;text;t2_92d1d4kg;False;False;[];;Dude i said a bit... I wanna use it as my wallpaper;False;False;;;;1610179557;;False;{};gimz5c9;True;t3_ktmsq9;False;True;t1_gimyxtx;/r/anime/comments/ktmsq9/i_need_kawaii_anime_wallpaper_for_my_phone/gimz5c9/;1610223807;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610179627;moderator;False;{};gimz7xq;False;t3_ktmwqx;False;True;t3_ktmwqx;/r/anime/comments/ktmwqx/re_zero_watch_order_guide_help_please/gimz7xq/;1610223856;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Cynderaquil;;;[];;;;text;t2_3hyccqum;False;False;[];;It’s not an anime, as I know of, but the one shot manga of “I Married My Best Friend To Shut My Parents Up” is a really cute story. It has an established marriage relationship in the beginning and part of it was the past when the girls in high school, which kind of had a little drama of that is ok.;False;False;;;;1610179670;;1610180471.0;{};gimz9n0;False;t3_ktmqce;False;True;t3_ktmqce;/r/anime/comments/ktmqce/pls_recommend_me_a_yuri_anime_where_characters/gimz9n0/;1610223887;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SogenCookie;;;[];;;;text;t2_2ir75dax;False;False;[];;Personality types according to what? Like color code, dress your truth, strengths finder, or whaat?;False;False;;;;1610179692;;False;{};gimzahh;False;t3_ktm9sm;False;True;t3_ktm9sm;/r/anime/comments/ktm9sm/what_is_these_anime_characters_personality_types/gimzahh/;1610223902;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fraid_so;;;[];;;;text;t2_oeyx4;False;False;[];;I'm guessing you can't read lol;False;False;;;;1610179694;;False;{};gimzaj8;False;t3_ktmqce;False;False;t1_gimyzbg;/r/anime/comments/ktmqce/pls_recommend_me_a_yuri_anime_where_characters/gimzaj8/;1610223903;0;False;False;anime;t5_2qh22;;0;[]; -[];;;The-Gigagod;;;[];;;;text;t2_3ieldijj;False;False;[];;Ah thank you very much. I figured since you didn’t list them as anime that you thought they should be on the list;False;False;;;;1610179774;;False;{};gimzdmu;True;t3_ktmos6;False;True;t1_gimyt8v;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gimzdmu/;1610223958;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;"Re zero S1> memory snow ova > frozen bond ova > re zero s2 part 1 > re zero s2 part 2";False;False;;;;1610179780;;False;{};gimzdvv;False;t3_ktmwqx;False;False;t3_ktmwqx;/r/anime/comments/ktmwqx/re_zero_watch_order_guide_help_please/gimzdvv/;1610223963;9;True;False;anime;t5_2qh22;;0;[]; -[];;;oofergang360;;;[];;;;text;t2_2j7x4b0n;False;False;[];;What did he say?;False;False;;;;1610179860;;False;{};gimzgv5;False;t3_ktkzvp;False;True;t1_gimro6t;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gimzgv5/;1610224028;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fraid_so;;;[];;;;text;t2_oeyx4;False;False;[];;That French company that was part of the Aniplex merger should have the same catalogue as Funimation, but I have no idea who can access that service.;False;False;;;;1610179919;;False;{};gimzj3x;False;t3_ktmjnz;False;True;t1_gimxbht;/r/anime/comments/ktmjnz/where_do_i_watch_db/gimzj3x/;1610224072;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cynderaquil;;;[];;;;text;t2_3hyccqum;False;False;[];;"Oh yeah, cause you not knowing an anime and recommending it is a suitable recommendation. - -It should have been an anime to their recommendations, not a guess anime you never seen that may not be what OP asked for recommendations at all.";False;False;;;;1610179981;;False;{};gimzleg;False;t3_ktmqce;False;True;t1_gimzaj8;/r/anime/comments/ktmqce/pls_recommend_me_a_yuri_anime_where_characters/gimzleg/;1610224113;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MusubiKazesaru;;;[];;;;text;t2_oh8ti;False;False;[];;"S1 > Memory Snow > Frozen Bond > S2 Part 1 > S2 Part 2 - -Break Time can be watched once you've finished the corresponding episode. There's an episode for every episode of the main show and it consists of SD Rezero characters fleshing things out or just doing funny bits but they can spoiler you if you haven't seen that ep so maybe watch them after the series or at the half way point and then the end.";False;False;;;;1610179986;;False;{};gimzlkl;False;t3_ktmwqx;False;True;t3_ktmwqx;/r/anime/comments/ktmwqx/re_zero_watch_order_guide_help_please/gimzlkl/;1610224116;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610180230;;False;{};gimzuoq;False;t3_ktmyw2;False;True;t3_ktmyw2;/r/anime/comments/ktmyw2/i_just_remembered_a_pretty_disturbing_detail_from/gimzuoq/;1610224332;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Nah, this is like pokemon, you are not killing your pokemon because you are increasing their levels and making them evolve;False;False;;;;1610180231;;False;{};gimzuqe;False;t3_ktmyw2;False;False;t3_ktmyw2;/r/anime/comments/ktmyw2/i_just_remembered_a_pretty_disturbing_detail_from/gimzuqe/;1610224333;11;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610180248;moderator;False;{};gimzvct;False;t3_ktn18q;False;True;t3_ktn18q;/r/anime/comments/ktn18q/im_from_iran_and_i_wanna_watch_anime_legally_what/gimzvct/;1610224346;1;False;False;anime;t5_2qh22;;0;[]; -[];;;fraid_so;;;[];;;;text;t2_oeyx4;False;False;[];;"Lol I see you've changed your tune. Guessing you re-read the post. - -And I *didn't* recommend it. My comment implies that because it's the only one I know, and that I haven't seen it, I'm not qualified to give recommendations on GL. - -*However* because I have seen most of the BL anime available, and have read hundreds of BL manga, I latched onto the part where they said ""I can watch Yaoi too"". Which is why my comment started off with ""*if* you're **interested**"". - -Go back to school and learn to read and understand words before trying to slay someone on a random reddit thread lmfao.";False;False;;;;1610180376;;False;{};gin00av;False;t3_ktmqce;False;True;t1_gimzleg;/r/anime/comments/ktmqce/pls_recommend_me_a_yuri_anime_where_characters/gin00av/;1610224453;2;False;False;anime;t5_2qh22;;0;[]; -[];;;BeybladeMoses;;;[];;;;text;t2_2hbgzjuo;False;False;[];;Assault Lily Bouquet. To be honest your criteria is somewhat rare even in regular romance.;False;False;;;;1610180454;;False;{};gin03ac;False;t3_ktmqce;False;False;t3_ktmqce;/r/anime/comments/ktmqce/pls_recommend_me_a_yuri_anime_where_characters/gin03ac/;1610224519;11;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610180516;;False;{};gin05mz;False;t3_ktn18q;False;True;t3_ktn18q;/r/anime/comments/ktn18q/im_from_iran_and_i_wanna_watch_anime_legally_what/gin05mz/;1610224565;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi GDW312, your post has been removed because it links to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610180517;moderator;False;{};gin05nq;False;t3_ktn18q;False;True;t1_gin05mz;/r/anime/comments/ktn18q/im_from_iran_and_i_wanna_watch_anime_legally_what/gin05nq/;1610224566;1;False;False;anime;t5_2qh22;;0;[]; -[];;;ProfessorJackH0ff;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/;light;text;t2_4y844c07;False;False;[];;Just spoiling major scenes, the usual lol;False;False;;;;1610180576;;False;{};gin07v0;False;t3_ktkzvp;False;True;t1_gimzgv5;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gin07v0/;1610224608;2;True;False;anime;t5_2qh22;;0;[]; -[];;;starsreminisce;;;[];;;;text;t2_gcn0q;False;False;[];;"Nodame Cantabile (live action), Densha Otoko (live action), Ouran, Nozaki-kun, Saikano, Niseikoi, Recovery of an MMO Junkie, Ancient Magus Bride, Kiznaiver - -But maybe you’ve watched these already";False;False;;;;1610180751;;False;{};gin0edg;False;t3_ktlz1t;False;True;t3_ktlz1t;/r/anime/comments/ktlz1t/can_you_guys_send_anime_recommendations/gin0edg/;1610224750;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fat_memer420;;;[];;;;text;t2_92d1d4kg;False;False;[];;BRUH;False;False;;;;1610180764;;False;{};gin0etw;True;t3_ktn18q;False;True;t1_gin05nq;/r/anime/comments/ktn18q/im_from_iran_and_i_wanna_watch_anime_legally_what/gin0etw/;1610224758;0;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your submission has been removed. - -Your clip does not meet one of the following quality guidelines: - -- Clips must have audio unless the scene is silent. - -- They must have subs if the audio is not in English. - -- **They must not have watermarks of any kind (screen recording software or channels), except for legal streaming services (e.g: Crunchyroll).** - -- They must not be an obvious screen recording (e.g: the iPhone popup to stop the recording at the end that some clips, a mouse cursor and actually recording the screen with a phone). - -- They must be properly framed in the aspect ratio of the original anime. - -- This looks like - an OP or ED from a show that's no longer airing. - This type of content isn't allowed. For information about what music posts we allow, check our [music rules](https://www.reddit.com/r/anime/wiki/rules#wiki_music.2C_soundtracks_and_covers). - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610180953;moderator;1610182792.0;{};gin0lpu;False;t3_ktm0u7;False;True;t3_ktm0u7;/r/anime/comments/ktm0u7/pokemon_journeys_new_opening/gin0lpu/;1610224893;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cynderaquil;;;[];;;;text;t2_3hyccqum;False;False;[];;"“Recommendation post” - -You comment something irrelevant to the recommendation post - -Someone calls you out - -You: I _didn’t_ recommend it - -Hmm. What is this idiocy I just read...? - -Edit to add: I did read your post before commenting. Recommending an anime of a genre not asked for is irrelevant when the only anime you could actually recommend to the recommendation post you don’t even know anything about.";False;False;;;;1610181154;;False;{};gin0t36;False;t3_ktmqce;False;True;t1_gin00av;/r/anime/comments/ktmqce/pls_recommend_me_a_yuri_anime_where_characters/gin0t36/;1610225029;0;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;">Spice and wolf - -Even after a Decade, I still want to see HOLO";False;False;;;;1610181164;;False;{};gin0tfg;False;t3_ktm9t3;False;False;t1_gimwihp;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gin0tfg/;1610225035;7;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;">Girls' Last Tour - -But the manga has ended, and it's pretty rare to see a full adaptation after the manga has been completed.";False;False;;;;1610181246;;False;{};gin0wi7;False;t3_ktm9t3;False;True;t1_gimwz0q;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gin0wi7/;1610225087;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;You aren't a LN Reader, then.;False;False;;;;1610181291;;False;{};gin0y6i;False;t3_ktm9t3;False;False;t1_gimxbbe;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gin0y6i/;1610225118;13;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610181295;moderator;False;{};gin0ybh;False;t3_ktn8kf;False;True;t3_ktn8kf;/r/anime/comments/ktn8kf/need_help_finding_an_anime/gin0ybh/;1610225120;1;False;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;I think the adaptation of a new series by the same author got announced. So, It is pretty hard for Takagi to get another season.;False;False;;;;1610181336;;False;{};gin0zsy;False;t3_ktm9t3;False;True;t1_gimw4oi;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gin0zsy/;1610225149;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;You can just use crunchyroll or funimation for it, you can just use a VPN, they won't ban you for it, also they are free unless you have no problem with ads;False;False;;;;1610181363;;False;{};gin10rf;False;t3_ktn18q;False;False;t3_ktn18q;/r/anime/comments/ktn18q/im_from_iran_and_i_wanna_watch_anime_legally_what/gin10rf/;1610225186;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610181386;moderator;False;{};gin11jq;False;t3_ktn97c;False;True;t3_ktn97c;/r/anime/comments/ktn97c/kamisama_kiss_special_episodes_ova/gin11jq/;1610225210;1;False;False;anime;t5_2qh22;;0;[]; -[];;;mrfab13;;;[];;;;text;t2_o4cib;False;False;[];;https://wallhaven.cc has good PC ones but you might be able to rotate or trim to fit;False;False;;;;1610181412;;False;{};gin12hf;False;t3_ktmsq9;False;True;t3_ktmsq9;/r/anime/comments/ktmsq9/i_need_kawaii_anime_wallpaper_for_my_phone/gin12hf/;1610225236;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;Drop kick on my devil;False;False;;;;1610181437;;False;{};gin13f1;False;t3_ktn8kf;False;False;t3_ktn8kf;/r/anime/comments/ktn8kf/need_help_finding_an_anime/gin13f1/;1610225254;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Her evolution was used just as a grimmick to make her older, she wond evolve into an old hag or something even if she were to reach max level, also turning old is more like de-evolution rather than evolution;False;False;;;;1610181582;;False;{};gin18mo;False;t3_ktmyw2;False;True;t3_ktmyw2;/r/anime/comments/ktmyw2/i_just_remembered_a_pretty_disturbing_detail_from/gin18mo/;1610225348;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Wait, is that anime even Yuri?;False;False;;;;1610181643;;False;{};gin1ati;False;t3_ktmqce;False;True;t1_gin03ac;/r/anime/comments/ktmqce/pls_recommend_me_a_yuri_anime_where_characters/gin1ati/;1610225390;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610181688;moderator;False;{};gin1ces;False;t3_ktnb9e;False;True;t3_ktnb9e;/r/anime/comments/ktnb9e/suggest_me_some_good_anime_movies/gin1ces/;1610225419;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi chandranshu_7, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610181689;moderator;False;{};gin1cfb;False;t3_ktnb9e;False;True;t3_ktnb9e;/r/anime/comments/ktnb9e/suggest_me_some_good_anime_movies/gin1cfb/;1610225419;1;False;False;anime;t5_2qh22;;0;[]; -[];;;gnomezero;;;[];;;;text;t2_14wp67;False;False;[];;Who’s the girl to the far right? I recognize everybody but her.;False;False;;;;1610181712;;False;{};gin1d8u;False;t3_ktm5vm;False;True;t3_ktm5vm;/r/anime/comments/ktm5vm/what_is_the_name_of_this_anime/gin1d8u/;1610225434;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Shoujo tsubaki;False;False;;;;1610181750;;False;{};gin1eop;False;t3_ktnb9e;False;True;t3_ktnb9e;/r/anime/comments/ktnb9e/suggest_me_some_good_anime_movies/gin1eop/;1610225459;0;True;False;anime;t5_2qh22;;0;[]; -[];;;cr0ssyBoi;;;[];;;;text;t2_1alb3xc0;False;False;[];;There's this anime called Beautiful Bones - Sakurako's investigations, it's pretty decent up until the ending where they completely rushed it while hinting at a greater evil to defeat. But looking at how they butchered the ending, I say there probably won't be a season 2;False;False;;;;1610181755;;False;{};gin1etw;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gin1etw/;1610225461;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chandranshu_7;;;[];;;;text;t2_72zo8osv;False;False;[];;What is it about?;False;False;;;;1610181779;;False;{};gin1for;True;t3_ktnb9e;False;True;t1_gin1eop;/r/anime/comments/ktnb9e/suggest_me_some_good_anime_movies/gin1for/;1610225482;1;True;False;anime;t5_2qh22;;0;[]; -[];;;El_Dorado_king;;;[];;;;text;t2_83jjcph8;False;False;[];;Tq, it's already in my bucket list;False;False;;;;1610181810;;False;{};gin1gs2;True;t3_ktmqce;False;True;t1_gimz9n0;/r/anime/comments/ktmqce/pls_recommend_me_a_yuri_anime_where_characters/gin1gs2/;1610225511;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BeybladeMoses;;;[];;;;text;t2_2hbgzjuo;False;False;[];;I mean the main characters name are Yuyu and Riri...;False;False;;;;1610181837;;False;{};gin1htv;False;t3_ktmqce;False;False;t1_gin1ati;/r/anime/comments/ktmqce/pls_recommend_me_a_yuri_anime_where_characters/gin1htv/;1610225535;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Wayne_Nightmare;;;[];;;;text;t2_4uo79zuc;False;False;[];;Wolf Children, Assassination Classroom 365 Days, Fate: Stay/Night: Heaven's Feel, Fate Kalied Liner: Oath Under Snow, Psycho-Pass: Sinners of the System, Seven Deadly Sins: Prisoners of the Sky, anything by Studio Ghibli, that's about everything I can think of off hand.;False;False;;;;1610181977;;False;{};gin1mvf;False;t3_ktnb9e;False;True;t3_ktnb9e;/r/anime/comments/ktnb9e/suggest_me_some_good_anime_movies/gin1mvf/;1610225655;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NightCupcake;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/NoodleGalaxy;light;text;t2_77fhp1wn;False;False;[];;DVDs/blu-rays probably. Crunchyroll might have it.;False;False;;;;1610182005;;False;{};gin1nvk;False;t3_ktmjnz;False;True;t3_ktmjnz;/r/anime/comments/ktmjnz/where_do_i_watch_db/gin1nvk/;1610225676;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LuvRice4Life;;;[];;;;text;t2_3uucfbcf;False;False;[];;Anohana;False;False;;;;1610182032;;False;{};gin1ov2;False;t3_ktkzvp;False;True;t3_ktkzvp;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gin1ov2/;1610225694;1;True;False;anime;t5_2qh22;;0;[]; -[];;;monty775;;;[];;;;text;t2_2z94a519;False;False;[];;Don’t watch it, there’s a reason it’s banned in Japan;False;False;;;;1610182082;;False;{};gin1qme;False;t3_ktnb9e;False;True;t1_gin1for;/r/anime/comments/ktnb9e/suggest_me_some_good_anime_movies/gin1qme/;1610225728;2;True;False;anime;t5_2qh22;;0;[]; -[];;;d3vilish_223;;;[];;;;text;t2_5sptrk6a;False;False;[];;isn’t this the anime that got banned everywhere for being so dark?;False;False;;;;1610182115;;False;{};gin1rqy;False;t3_ktnb9e;False;True;t1_gin1eop;/r/anime/comments/ktnb9e/suggest_me_some_good_anime_movies/gin1rqy/;1610225747;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Roketsu86;;;[];;;;text;t2_hwze9;False;False;[];;Black Bullet and Kamisama Dolls. Both were very under-watched and both ended on massive cliffhangers.;False;False;;;;1610182128;;False;{};gin1s88;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gin1s88/;1610225756;0;True;False;anime;t5_2qh22;;0;[]; -[];;;NightCupcake;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/NoodleGalaxy;light;text;t2_77fhp1wn;False;False;[];;Yona of the dawn. I'm gonna read the manga soon, though.;False;False;;;;1610182137;;False;{};gin1sjv;False;t3_ktm9t3;False;False;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gin1sjv/;1610225761;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Btw_kek;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SouvlakiSpace7;light;text;t2_i0pj6;False;False;[];;pick anything by Satoshi Kon. Perfect Blue if you want something intense, Tokyo Godfathers if you don't;False;False;;;;1610182185;;False;{};gin1uc9;False;t3_ktnb9e;False;True;t3_ktnb9e;/r/anime/comments/ktnb9e/suggest_me_some_good_anime_movies/gin1uc9/;1610225798;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Ehhhh.... Actually I reccomend it as a joke but it's a tragedy about a young girl with really disturbing contents such as pedophilia and gore, as much that it was banned in Japan itself, but you should definitely give it a try, just to see how disturbing stuffs you can handle;False;False;;;;1610182227;;False;{};gin1vv3;False;t3_ktnb9e;False;False;t1_gin1for;/r/anime/comments/ktnb9e/suggest_me_some_good_anime_movies/gin1vv3/;1610225844;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeowlite;;;[];;;;text;t2_xyzpq;False;False;[];;Try ani-one and muse asia?;False;False;;;;1610182285;;False;{};gin1xvs;False;t3_ktn18q;False;True;t3_ktn18q;/r/anime/comments/ktn18q/im_from_iran_and_i_wanna_watch_anime_legally_what/gin1xvs/;1610225881;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chandranshu_7;;;[];;;;text;t2_72zo8osv;False;False;[];;Ohh ok thanks;False;False;;;;1610182324;;False;{};gin1z91;True;t3_ktnb9e;False;True;t1_gin1vv3;/r/anime/comments/ktnb9e/suggest_me_some_good_anime_movies/gin1z91/;1610225905;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pabsgt;;;[];;;;text;t2_3ed4fb74;False;False;[];;"The OP is from Pokemon Journeys latest episode which just aired yesterday & the season is new";False;False;;;;1610182328;;False;{};gin1zdm;True;t3_ktm0u7;False;True;t1_gin0lpu;/r/anime/comments/ktm0u7/pokemon_journeys_new_opening/gin1zdm/;1610225907;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chandranshu_7;;;[];;;;text;t2_72zo8osv;False;False;[];;Bruh!! Now I don't need recommendation...you suggested so much brw thanks!!;False;False;;;;1610182397;;False;{};gin21v8;True;t3_ktnb9e;False;True;t1_gin1mvf;/r/anime/comments/ktnb9e/suggest_me_some_good_anime_movies/gin21v8/;1610225963;2;True;False;anime;t5_2qh22;;0;[]; -[];;;pabsgt;;;[];;;;text;t2_3ed4fb74;False;False;[];;Not really they are the same ones but different singers but same lyrics (is the same song with a bit different sound);False;False;;;;1610182406;;False;{};gin226d;True;t3_ktm0u7;False;True;t1_gimwm95;/r/anime/comments/ktm0u7/pokemon_journeys_new_opening/gin226d/;1610225969;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wayne_Nightmare;;;[];;;;text;t2_4uo79zuc;False;False;[];;No prob;False;False;;;;1610182423;;False;{};gin22rb;False;t3_ktnb9e;False;False;t1_gin21v8;/r/anime/comments/ktnb9e/suggest_me_some_good_anime_movies/gin22rb/;1610225978;3;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"If its a new OP then its allowed, forgive me on that front I am a little behind. - -However this clip needs to have its watermarks removed for it to be allowed.";False;False;;;;1610182473;moderator;False;{};gin24hs;False;t3_ktm0u7;False;True;t1_gin1zdm;/r/anime/comments/ktm0u7/pokemon_journeys_new_opening/gin24hs/;1610226009;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wayne_Nightmare;;;[];;;;text;t2_4uo79zuc;False;False;[];;"Almost forgot, a friend of mine keeps going on and on about this anime movie ""I Want To Eat Your Pancreas"", might be worth a look";False;False;;;;1610182584;;False;{};gin28hs;False;t3_ktnb9e;False;True;t1_gin21v8;/r/anime/comments/ktnb9e/suggest_me_some_good_anime_movies/gin28hs/;1610226084;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chandranshu_7;;;[];;;;text;t2_72zo8osv;False;False;[];;Oh yes ! Thank you;False;False;;;;1610182629;;False;{};gin2a47;True;t3_ktnb9e;False;True;t1_gin28hs;/r/anime/comments/ktnb9e/suggest_me_some_good_anime_movies/gin2a47/;1610226113;2;True;False;anime;t5_2qh22;;0;[]; -[];;;InsomniaEmperor;;;[];;;;text;t2_5x68hmc4;False;False;[];;Yes there is yuri but it is action focused and not yuri romance focused.;False;False;;;;1610182768;;False;{};gin2f0w;False;t3_ktmqce;False;True;t1_gin1ati;/r/anime/comments/ktmqce/pls_recommend_me_a_yuri_anime_where_characters/gin2f0w/;1610226199;3;True;False;anime;t5_2qh22;;0;[]; -[];;;InsomniaEmperor;;;[];;;;text;t2_5x68hmc4;False;False;[];;Yes it's conclusive and is worth it.;False;False;;;;1610182828;;False;{};gin2h84;False;t3_ktmmy9;False;True;t3_ktmmy9;/r/anime/comments/ktmmy9/does_chaika_the_coffin_princess_have_a_conclusive/gin2h84/;1610226241;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Deadmandream;;;[];;;;text;t2_25v21ud8;False;False;[];;"Barakamon -Noragami -Code breaker -Highschool dxd";False;False;;;;1610183046;;False;{};gin2ovx;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gin2ovx/;1610226392;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TheM4nTheMythTheLgnd;;;[];;;;text;t2_7bv0p602;False;False;[];;"GOOD RECOMMENDATION: Konosuba - -BAD RECOMMENDATION: Milfsekai";False;False;;;;1610183253;;False;{};gin2w5k;False;t3_ktnkaj;False;False;t3_ktnkaj;/r/anime/comments/ktnkaj/anyone_got_some_good_isekai_anime/gin2w5k/;1610226529;4;True;False;anime;t5_2qh22;;0;[]; -[];;;FalconPunchInDaFace;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FalconPunchFace;light;text;t2_4fi02812;False;False;[];;Fate/Zero for me too..except I recommend you watch episode 1;False;False;;;;1610183329;;False;{};gin2ytz;False;t3_ktm3yx;False;True;t1_gimv8gb;/r/anime/comments/ktm3yx/recommend_me_animes_below_30_episodes_that_are/gin2ytz/;1610226584;3;True;False;anime;t5_2qh22;;0;[]; -[];;;River_sounds;;;[];;;;text;t2_y4vd1;False;False;[];;Why are you bothered by it? Do you work for ANN or something?;False;False;;;;1610183384;;False;{};gin30ql;False;t3_ktlkco;False;True;t3_ktlkco;/r/anime/comments/ktlkco/does_anyone_know_if_animetv_チェーン_is_legal_or_not/gin30ql/;1610226620;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;"Slime isekai and no game no life might be some good recs - -But those are some concerning ratings you got there";False;False;;;;1610183446;;False;{};gin32xe;False;t3_ktnkaj;False;False;t3_ktnkaj;/r/anime/comments/ktnkaj/anyone_got_some_good_isekai_anime/gin32xe/;1610226659;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Ucvius;;;[];;;;text;t2_46p4yczj;False;False;[];;Well it really depends on my schedule. If I have plenty of free time on the weekends I might actually binge watch a good series. I am really picky and most often like high rating shows. So my break would be on the week days usually, but sometimes even on these days I watch. It really depends on my mood and time;False;False;;;;1610183447;;False;{};gin32ym;False;t3_ktkdht;False;True;t3_ktkdht;/r/anime/comments/ktkdht/do_you_ever_just_take_breaks_from_watching_anime/gin32ym/;1610226660;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;It's not worth a look..... It's a must watch.;False;False;;;;1610183546;;False;{};gin36c9;False;t3_ktnb9e;False;True;t1_gin28hs;/r/anime/comments/ktnb9e/suggest_me_some_good_anime_movies/gin36c9/;1610226718;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ucvius;;;[];;;;text;t2_46p4yczj;False;False;[];;White Album 2 is sad.;False;False;;;;1610183562;;False;{};gin36vm;False;t3_ktkzvp;False;True;t3_ktkzvp;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gin36vm/;1610226728;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MickTheDickk;;;[];;;;text;t2_56axujhn;False;False;[];;I may get downvoted but theres a debate if sword art online is an isekai or not. I personally consider it as an isekai, its an amazing anime and the main character is powerful from the very beginning;False;False;;;;1610183730;;False;{};gin3csn;False;t3_ktnkaj;False;True;t3_ktnkaj;/r/anime/comments/ktnkaj/anyone_got_some_good_isekai_anime/gin3csn/;1610226831;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610183825;moderator;False;{};gin3g4q;False;t3_ktnqap;False;True;t3_ktnqap;/r/anime/comments/ktnqap/i_want_to_watch_re_zero_since_theres_a_second/gin3g4q/;1610226896;1;False;False;anime;t5_2qh22;;0;[]; -[];;;RasmusFPS;;;[];;;;text;t2_7di5r6fe;False;False;[];;Yes you should watch it but be there are a lot of fillers so search naruto fillers and you will find a list of what episodes are fillers.;False;False;;;;1610183867;;False;{};gin3hld;False;t3_ktnpcf;False;False;t3_ktnpcf;/r/anime/comments/ktnpcf/is_naruto_worth_watching/gin3hld/;1610226929;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ItashaDa9;;;[];;;;text;t2_97cxa507;False;False;[];;I’d highly recommend saga of Tanya the evil. It’s not like your normal isekai but it’s still considered to be of that genre. And Tanya is pretty OP within that world;False;False;;;;1610183909;;False;{};gin3j0k;False;t3_ktnkaj;False;True;t3_ktnkaj;/r/anime/comments/ktnkaj/anyone_got_some_good_isekai_anime/gin3j0k/;1610226955;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RasmusFPS;;;[];;;;text;t2_7di5r6fe;False;False;[];;If watching it the first time you should definitely not watch fillers;False;False;;;;1610183981;;False;{};gin3lju;False;t3_ktnpcf;False;True;t1_gin3hld;/r/anime/comments/ktnpcf/is_naruto_worth_watching/gin3lju/;1610227003;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SylentSnow;;;[];;;;text;t2_9olxj8qc;False;True;[];;Is it not on crunchyroll? That's where I saw it;False;False;;;;1610184023;;False;{};gin3n08;False;t3_ktnqap;False;False;t3_ktnqap;/r/anime/comments/ktnqap/i_want_to_watch_re_zero_since_theres_a_second/gin3n08/;1610227032;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Ucvius;;;[];;;;text;t2_46p4yczj;False;False;[];;Elfen Lied. Now the question should also be which show you waited for a second season and it turn out so bad. I would say Berserk.;False;False;;;;1610184041;;False;{};gin3nnn;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gin3nnn/;1610227043;0;True;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;https://www.crunchyroll.com/rezero-starting-life-in-another-world-;False;False;;;;1610184049;;False;{};gin3nxh;False;t3_ktnqap;False;True;t3_ktnqap;/r/anime/comments/ktnqap/i_want_to_watch_re_zero_since_theres_a_second/gin3nxh/;1610227047;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Godprime;;;[];;;;text;t2_dezxafd;False;False;[];;Yes it’s worth the watch;False;False;;;;1610184091;;False;{};gin3pcq;False;t3_ktnpcf;False;True;t3_ktnpcf;/r/anime/comments/ktnpcf/is_naruto_worth_watching/gin3pcq/;1610227075;2;True;False;anime;t5_2qh22;;0;[]; -[];;;smallPP420;;;[];;;;text;t2_5clo9ssi;False;False;[];;Thanks man;False;False;;;;1610184188;;False;{};gin3svn;True;t3_ktnqap;False;False;t1_gin3nxh;/r/anime/comments/ktnqap/i_want_to_watch_re_zero_since_theres_a_second/gin3svn/;1610227140;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;"Depends on the person, not all like everything. If you like battle shonens or action based stories, you are more likely to like it if you are new to anime, if we are talking about my opinion then it is decent, it has some pretty good arcs but then there are a lot of mediocre ones and thus doesn't really maintain its overall quality also it just goes and destroys its own world building at some point the power system literally becomes "" larger stand wins""";False;False;;;;1610184266;;False;{};gin3vlt;False;t3_ktnpcf;False;True;t3_ktnpcf;/r/anime/comments/ktnpcf/is_naruto_worth_watching/gin3vlt/;1610227190;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hitogomi911;;;[];;;;text;t2_83ec5qv5;False;False;[];;Have you seen Milfsekai?;False;False;;;;1610184291;;False;{};gin3whs;False;t3_ktnkaj;False;True;t1_gin2w5k;/r/anime/comments/ktnkaj/anyone_got_some_good_isekai_anime/gin3whs/;1610227205;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheM4nTheMythTheLgnd;;;[];;;;text;t2_7bv0p602;False;False;[];;I followed it, but dropped it around the Medhi arc. I knew where it was going, and I didn’t want to see it through to the end. The OVA validated that decision.;False;False;;;;1610184344;;False;{};gin3yeg;False;t3_ktnkaj;False;True;t1_gin3whs;/r/anime/comments/ktnkaj/anyone_got_some_good_isekai_anime/gin3yeg/;1610227241;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610184543;moderator;False;{};gin45fc;False;t3_ktnv70;False;True;t3_ktnv70;/r/anime/comments/ktnv70/download_tamako_market_dub_free/gin45fc/;1610227374;1;False;False;anime;t5_2qh22;;0;[]; -[];;;MrHlum;;;[];;;;text;t2_7a4v15qp;False;False;[];;Probably b!tch-sensei from assclass;False;False;;;;1610184588;;False;{};gin470c;False;t3_ktkjs9;False;True;t3_ktkjs9;/r/anime/comments/ktkjs9/what_is_your_favorite_sexy_anime_girls/gin470c/;1610227401;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Andreas260899;;;[];;;;text;t2_oonk8ga;False;False;[];;Yea I would say it’s worth the watch. It’s a bit long drawn out because of the fillers, so you should definitely skip them seeing as they are not part of the main story anyway. As already commented you Can search up which are fillers. Personally i think that there are a lot of well written and in depth characters that you can relate too. There are also very cool fight scene and moments, touching scenes and even twists and turns where you will get surprised. The story is also good. Naruto shippuden is better imo, but you should ofc watch Naruto first. Some characters are REALLY annoying, but on the other hand some characters are also SO good. There are a decent amount of episodes you can skip due to fillers, so it might seem longer than it is. Go watch it.;False;False;;;;1610184607;;False;{};gin47n9;False;t3_ktnpcf;False;True;t3_ktnpcf;/r/anime/comments/ktnpcf/is_naruto_worth_watching/gin47n9/;1610227413;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jianthepro;;;[];;;;text;t2_4henx9x1;False;False;[];;"Konosuba -Tate no yuusha no nariagari (s2 this yr, s3 already announced in advance, dont know when just yet tho) -No game no life -Re zero (s2p2 ongoing this winter) - -All the famous ones i guess";False;False;;;;1610184677;;False;{};gin4a21;False;t3_ktnkaj;False;True;t3_ktnkaj;/r/anime/comments/ktnkaj/anyone_got_some_good_isekai_anime/gin4a21/;1610227457;3;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;Nothing legal, no.;False;False;;;;1610184712;;False;{};gin4bav;False;t3_ktnv70;False;True;t3_ktnv70;/r/anime/comments/ktnv70/download_tamako_market_dub_free/gin4bav/;1610227483;5;True;False;anime;t5_2qh22;;0;[]; -[];;;UltimateAnimeHero;;;[];;;;text;t2_oc4re;False;False;[];;"I swear, my heart stopped for a second when I glimpsed ""Evangelion"" and ""cancelled"" out of the corner of my eye.";False;False;;;;1610184762;;False;{};gin4d4s;False;t3_ktnuit;False;False;t3_ktnuit;/r/anime/comments/ktnuit/due_to_shortened_movie_opening_hours_and_state_of/gin4d4s/;1610227518;111;True;False;anime;t5_2qh22;;0;[]; -[];;;Ucvius;;;[];;;;text;t2_46p4yczj;False;False;[];;Naruto is definitely worth watching but I would personally skip the fillers if you don't have the time;False;False;;;;1610184775;;False;{};gin4dkh;False;t3_ktnpcf;False;True;t3_ktnpcf;/r/anime/comments/ktnpcf/is_naruto_worth_watching/gin4dkh/;1610227526;2;True;False;anime;t5_2qh22;;0;[]; -[];;;River_sounds;;;[];;;;text;t2_y4vd1;False;False;[];;If i'm understanding this right, it will still open during the later parts of the day?;False;False;;;;1610184892;;False;{};gin4hmh;False;t3_ktnuit;False;False;t3_ktnuit;/r/anime/comments/ktnuit/due_to_shortened_movie_opening_hours_and_state_of/gin4hmh/;1610227601;17;True;False;anime;t5_2qh22;;0;[]; -[];;;UltimateAnimeHero;;;[];;;;text;t2_oc4re;False;False;[];;Yeah. At least for now, who knows what can happen in the next two weeks.;False;False;;;;1610184975;;False;{};gin4kh6;False;t3_ktnuit;False;False;t1_gin4hmh;/r/anime/comments/ktnuit/due_to_shortened_movie_opening_hours_and_state_of/gin4kh6/;1610227651;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Roles78901;;;[];;;;text;t2_8d5yvxy8;False;False;[];;I’ve tried konosuba but I’m not into comedy’s so it didn’t fit well for me, thanks for the rec tho;False;False;;;;1610185168;;False;{};gin4ral;True;t3_ktnkaj;False;True;t1_gin2w5k;/r/anime/comments/ktnkaj/anyone_got_some_good_isekai_anime/gin4ral/;1610227774;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Roles78901;;;[];;;;text;t2_8d5yvxy8;False;False;[];;Lmao, well my taste is a bit off but I’ve seen big no life and didn’t really get into but thank you;False;False;;;;1610185201;;False;{};gin4sf6;True;t3_ktnkaj;False;True;t1_gin32xe;/r/anime/comments/ktnkaj/anyone_got_some_good_isekai_anime/gin4sf6/;1610227794;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Roles78901;;;[];;;;text;t2_8d5yvxy8;False;False;[];;I’ll give it a whirl thanks!;False;False;;;;1610185218;;False;{};gin4t0h;True;t3_ktnkaj;False;True;t1_gin3j0k;/r/anime/comments/ktnkaj/anyone_got_some_good_isekai_anime/gin4t0h/;1610227805;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Epilex__;;;[];;;;text;t2_6dnttkpo;False;False;[];;Rule 5;False;False;;;;1610185242;;False;{};gin4tvz;False;t3_ktnv70;False;True;t3_ktnv70;/r/anime/comments/ktnv70/download_tamako_market_dub_free/gin4tvz/;1610227820;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akoa0013;;;[];;;;text;t2_6q8a6;False;False;[];;Its an old anime yo just remember that if you decide to watch. Overall tho I enjoyed the heck out of that anime and shippuden made it worth it.;False;False;;;;1610185256;;False;{};gin4ubr;False;t3_ktnpcf;False;True;t3_ktnpcf;/r/anime/comments/ktnpcf/is_naruto_worth_watching/gin4ubr/;1610227828;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Roles78901;;;[];;;;text;t2_8d5yvxy8;False;False;[];;I forgot ruse of the shield hero, my b shoulda put that up up there, have seen no game no life (most of it) and it was aight, also shoulda put that up there, thanks for the recommendations though! Really appreciate it;False;False;;;;1610185304;;False;{};gin4vz1;True;t3_ktnkaj;False;True;t1_gin4a21;/r/anime/comments/ktnkaj/anyone_got_some_good_isekai_anime/gin4vz1/;1610227859;2;True;False;anime;t5_2qh22;;0;[]; -[];;;seinenbat;;;[];;;;text;t2_qoc2isj;False;False;[];;GANGSTA. didn’t have an ending in the anime :/;False;False;;;;1610185321;;False;{};gin4wls;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gin4wls/;1610227870;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sinnaig;;;[];;;;text;t2_27rkwgdg;False;False;[];;A 10/10 iyashikei.;False;False;;;;1610185387;;False;{};gin4yxv;False;t3_ktmo3m;False;False;t3_ktmo3m;/r/anime/comments/ktmo3m/sauce_tanakakun_wa_itsumo_kedaruge/gin4yxv/;1610227913;14;True;False;anime;t5_2qh22;;0;[]; -[];;;rne9k;;;[];;;;text;t2_6ka7e32p;False;False;[];;Oh;False;False;;;;1610185401;;False;{};gin4zh0;False;t3_ktm9t3;False;False;t1_gin0y6i;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gin4zh0/;1610227923;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Roles78901;;;[];;;;text;t2_8d5yvxy8;False;False;[];;I consider it a half isekai. But I still shoulda put it up there, my bad. I love it too though, really gets some undeserved hate. But hey it’s all about opinions and that one is kind off a bit or miss;False;False;;;;1610185419;;False;{};gin504b;True;t3_ktnkaj;False;True;t1_gin3csn;/r/anime/comments/ktnkaj/anyone_got_some_good_isekai_anime/gin504b/;1610227934;1;True;False;anime;t5_2qh22;;0;[]; -[];;;seinenbat;;;[];;;;text;t2_qoc2isj;False;False;[];;Trigun dub easily;False;False;;;;1610185428;;False;{};gin50f9;False;t3_ktm3yx;False;True;t3_ktm3yx;/r/anime/comments/ktm3yx/recommend_me_animes_below_30_episodes_that_are/gin50f9/;1610227940;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610185471;;1610187576.0;{};gin51xb;False;t3_ktm9t3;False;True;t1_gin0y6i;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gin51xb/;1610227966;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;Songblade7;;;[];;;;text;t2_z0flbn9;False;False;[];;"Yeah, sometimes I'll go a day or 2 without watching anything because nothing was airing that day or 2 that I was keeping up with... - -But in all seriousness, I generally try to keep up with whatever shows I'm watching each season, and that keeps me occupied at least every day or 2 with at least 1 thing to watch. Working customer service in the pandemic has me coming home so exhausted sometimes though so on those days, I might go an extra day or 2 without watching anything so that I pile up my shows for an off day. I generally like the daily/weekly routine though of doing my gacha dailies/events and watching whatever shows are airing that day. Gives me something fun to look forward to at the end of the day, and that allows me to control some aspect of my life in these crazy times.";False;False;;;;1610185473;;False;{};gin5201;False;t3_ktkdht;False;True;t3_ktkdht;/r/anime/comments/ktkdht/do_you_ever_just_take_breaks_from_watching_anime/gin5201/;1610227967;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BI01;;;[];;;;text;t2_zl6tr;False;False;[];;yona of the dawn;False;False;;;;1610185493;;False;{};gin52ou;False;t3_ktm9t3;False;False;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gin52ou/;1610227979;8;True;False;anime;t5_2qh22;;0;[]; -[];;;mcchickenngget;;;[];;;;text;t2_38tfo3j2;False;False;[];;Yes;False;False;;;;1610185661;;False;{};gin58m7;False;t3_ktnpcf;False;True;t3_ktnpcf;/r/anime/comments/ktnpcf/is_naruto_worth_watching/gin58m7/;1610228087;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gkalaitza;;;[];;;;text;t2_1b8c3m;False;False;[];;"I'm not that worried about it getting impacted - -Fate opened in 50% capacity and similar restrictions in August and still went on to be the highest grossing of the franchise - -Trailers and announcements for Eva have been huge in social media in Japan. Things with such die hard fanbases are Eva will get their share. It just may take a bit longer to";False;False;;;;1610185733;;False;{};gin5b69;False;t3_ktnuit;False;False;t3_ktnuit;/r/anime/comments/ktnuit/due_to_shortened_movie_opening_hours_and_state_of/gin5b69/;1610228137;41;True;False;anime;t5_2qh22;;0;[]; -[];;;JohnnyNumbskull;;;[];;;;text;t2_8auqg;False;False;[];;No one gonna mention Guts and Berserk...;False;False;;;;1610185854;;False;{};gin5fcy;False;t3_ktkzvp;False;True;t3_ktkzvp;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gin5fcy/;1610228213;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ching_d0v;;;[];;;;text;t2_2lk8zqdu;False;False;[];;Drifters if you like a bot of gore;False;False;;;;1610185910;;False;{};gin5h9k;False;t3_ktnkaj;False;True;t3_ktnkaj;/r/anime/comments/ktnkaj/anyone_got_some_good_isekai_anime/gin5h9k/;1610228250;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TakamaruKun;;;[];;;;text;t2_9hnnd4gl;False;False;[];;For me, it's one of the best shounen Anime to date. It kinda depends on you tho, If you like anime like Boku no Hero, that kind of anime, then Naruto is a perfect one for you. Honestly just give it a try, a couple of episodes, because it's not really a slow starting anime for the amount of episode that it has. I'd say search for the fillers and just watch the canon episode if you don't want to watch them. But, some filler are also good tho, for your first time watching it, just leave it in my opinion. Fyi, I've watched it 2 times and it's still good.;False;False;;;;1610186097;;False;{};gin5noo;False;t3_ktnpcf;False;False;t3_ktnpcf;/r/anime/comments/ktnpcf/is_naruto_worth_watching/gin5noo/;1610228366;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Roles78901;;;[];;;;text;t2_8d5yvxy8;False;False;[];;Alrighty, I don’t mind gore, blood c type gore might be a little out of range but I will manage. So thanks for the recommendation!;False;False;;;;1610186129;;False;{};gin5op0;True;t3_ktnkaj;False;True;t1_gin5h9k;/r/anime/comments/ktnkaj/anyone_got_some_good_isekai_anime/gin5op0/;1610228385;1;True;False;anime;t5_2qh22;;0;[]; -[];;;adovetakesflight;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/pincurchin;light;text;t2_1eqm5q28;False;False;[];;Promare for when you want something fun and colorful.;False;False;;;;1610186300;;False;{};gin5upp;False;t3_ktnb9e;False;False;t3_ktnb9e;/r/anime/comments/ktnb9e/suggest_me_some_good_anime_movies/gin5upp/;1610228493;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheM4nTheMythTheLgnd;;;[];;;;text;t2_7bv0p602;False;False;[];;Babylonia.;False;False;;;;1610186372;;False;{};gin5x8h;False;t3_ktnm3y;False;True;t3_ktnm3y;/r/anime/comments/ktnm3y/alicization_vs_absolute_demonic_front/gin5x8h/;1610228537;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vz-Rei;;;[];;;;text;t2_jsfq9;False;False;[];;"Sail the High Seas, matey! - -Yarr...";False;False;;;;1610186516;;False;{};gin629b;False;t3_ktn18q;False;True;t3_ktn18q;/r/anime/comments/ktn18q/im_from_iran_and_i_wanna_watch_anime_legally_what/gin629b/;1610228633;0;True;False;anime;t5_2qh22;;0;[]; -[];;;master_skywalker803;;;[];;;;text;t2_6ci7ti1p;False;False;[];;Citrus;False;False;;;;1610186656;;False;{};gin674e;False;t3_ktmqce;False;True;t3_ktmqce;/r/anime/comments/ktmqce/pls_recommend_me_a_yuri_anime_where_characters/gin674e/;1610228723;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fun-Ad-1145;;;[];;;;text;t2_7pwzgaqz;False;False;[];;I thought dororo didn't need another season since the anime basically finished the story.;False;False;;;;1610186709;;False;{};gin68vd;False;t3_ktm9t3;False;False;t1_gimx3qi;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gin68vd/;1610228758;7;True;False;anime;t5_2qh22;;0;[]; -[];;;master_skywalker803;;;[];;;;text;t2_6ci7ti1p;False;False;[];;Neon genesis evangelion was pretty depressing;False;False;;;;1610186710;;False;{};gin68wr;False;t3_ktkzvp;False;True;t3_ktkzvp;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gin68wr/;1610228759;1;True;False;anime;t5_2qh22;;0;[]; -[];;;peppipeps;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_10pi7p;False;False;[];;I want to eat your pancreas;False;False;;;;1610186722;;False;{};gin69ae;False;t3_ktkzvp;False;True;t3_ktkzvp;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gin69ae/;1610228766;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610186854;moderator;False;{};gin6dru;False;t3_ktob73;False;False;t3_ktob73;/r/anime/comments/ktob73/oregairu_s3_ep_89_question/gin6dru/;1610228847;1;False;False;anime;t5_2qh22;;0;[]; -[];;;LegendaryRQA;;;[];;;;text;t2_hszyq;False;False;[];;Came here to answer this;False;False;;;;1610187014;;False;{};gin6j85;False;t3_ktm9t3;False;True;t1_gimxbbe;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gin6j85/;1610228950;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Miku-Nakano-;;;[];;;;text;t2_69eo8vfl;False;False;[];;Grimgar;False;False;;;;1610187020;;False;{};gin6jft;False;t3_ktm9t3;False;False;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gin6jft/;1610228953;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610187077;;False;{};gin6lb5;False;t3_ktnv70;False;True;t3_ktnv70;/r/anime/comments/ktnv70/download_tamako_market_dub_free/gin6lb5/;1610228987;1;True;False;anime;t5_2qh22;;0;[]; -[];;;speller26;;;[];;;;text;t2_yiuea;False;False;[];;"* Clannad: After Story -* Now and Then, Here and There -* Angel Beats";False;False;;;;1610187172;;False;{};gin6ol8;False;t3_ktkzvp;False;True;t3_ktkzvp;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gin6ol8/;1610229046;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LegendaryRQA;;;[];;;;text;t2_hszyq;False;False;[];;Please spoiler tag your comments;False;False;;;;1610187207;;False;{};gin6ps5;False;t3_ktm9t3;False;True;t1_gin51xb;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gin6ps5/;1610229067;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lemonpledges;;;[];;;;text;t2_js2wl;False;False;[];;I can tell by your 10/10s that you like the ecchi aspects of isekai. Your next best isekai is {How not to summon a demon lord} guaranteed to be a 9/10 or 10/10 for you based off your list;False;False;;;;1610187220;;False;{};gin6q7t;False;t3_ktnkaj;False;True;t3_ktnkaj;/r/anime/comments/ktnkaj/anyone_got_some_good_isekai_anime/gin6q7t/;1610229074;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fat_memer420;;;[];;;;text;t2_92d1d4kg;False;False;[];;How many ads do they show in each episode? Btw can i add Persian subs from my device? Coz i like the Japanese dub;False;False;;;;1610187271;;False;{};gin6rxl;True;t3_ktn18q;False;True;t1_gin10rf;/r/anime/comments/ktn18q/im_from_iran_and_i_wanna_watch_anime_legally_what/gin6rxl/;1610229110;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fakeport;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_soe2k;False;False;[];;Bloom into you;False;False;;;;1610187283;;False;{};gin6sds;False;t3_ktm9t3;False;False;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gin6sds/;1610229119;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Fat_memer420;;;[];;;;text;t2_92d1d4kg;False;False;[];;I haven't heard about them tbh are they free?;False;False;;;;1610187307;;False;{};gin6t92;True;t3_ktn18q;False;True;t1_gin1xvs;/r/anime/comments/ktn18q/im_from_iran_and_i_wanna_watch_anime_legally_what/gin6t92/;1610229134;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahou_Shoujo_Ramune;;;[];;;;text;t2_4vs4l2r6;False;False;[];;"I Don't Want to Get Hurt, so I'll Max Out My Defense - -Didn't I Say To Make My Abilities Average In The Next Life!?";False;False;;;;1610187316;;False;{};gin6tk0;False;t3_ktnkaj;False;False;t3_ktnkaj;/r/anime/comments/ktnkaj/anyone_got_some_good_isekai_anime/gin6tk0/;1610229139;2;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"This season is overstacked from the last covid state of emergency, back then it was Heavens Feel 3 was delayed and mind you that was **less than 24 hours** before opening. - -The covid numbers right now (across the country but especially in Tokyo) are much greater than when the first Tokyo state of emergency happened. I do wonder how big the second wave of anime delays will look, or if ""ganbatte"" will carry";False;False;;;;1610187433;;False;{};gin6xn4;False;t3_ktnuit;False;False;t1_gin5b69;/r/anime/comments/ktnuit/due_to_shortened_movie_opening_hours_and_state_of/gin6xn4/;1610229215;18;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610187458;;False;{};gin6yi4;False;t3_ktob73;False;True;t3_ktob73;/r/anime/comments/ktob73/oregairu_s3_ep_89_question/gin6yi4/;1610229234;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aluminum-Chair;;;[];;;;text;t2_63qs0yl8;False;False;[];;Yui's real wish is to go out with Hikigaya and still be friends with Yukinoshita. You can probably piece together the rest yourself.;False;False;;;;1610187475;;False;{};gin6z3f;False;t3_ktob73;False;True;t3_ktob73;/r/anime/comments/ktob73/oregairu_s3_ep_89_question/gin6z3f/;1610229246;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610187549;;False;{};gin71l2;False;t3_ktm9t3;False;True;t1_gin6ps5;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gin71l2/;1610229291;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dkaran_0102;;;[];;;;text;t2_7u3nnrtm;False;False;[];;Classroom of the elite.;False;False;;;;1610187589;;False;{};gin72zo;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gin72zo/;1610229317;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;Yui's wish being to go out with Hachiman while Yukinoshita loves him too will inevitably left her behind. It's cruel to force her to see them becoming a couple.;False;False;;;;1610187599;;False;{};gin73bn;False;t3_ktob73;False;True;t3_ktob73;/r/anime/comments/ktob73/oregairu_s3_ep_89_question/gin73bn/;1610229322;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610187613;moderator;False;{};gin73sq;False;t3_ktogel;False;True;t3_ktogel;/r/anime/comments/ktogel/i_need_a_heavy_drama_anime/gin73sq/;1610229331;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hi TravisScotch--, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610187614;moderator;False;{};gin73td;False;t3_ktogel;False;True;t3_ktogel;/r/anime/comments/ktogel/i_need_a_heavy_drama_anime/gin73td/;1610229331;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610187622;moderator;False;{};gin7445;False;t3_ktoggx;False;True;t3_ktoggx;/r/anime/comments/ktoggx/i_cant_recall_her_name/gin7445/;1610229337;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Hells7rom, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610187757;moderator;False;{};gin78ru;False;t3_ktohfq;False;True;t3_ktohfq;/r/anime/comments/ktohfq/suggest_me_any_good_one_cour_anime/gin78ru/;1610229415;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Well, they have prebuild English subs in them, I don't think it's possible to add Persian subs in anything unless you are pirating them. In the end Persian subs might be just limited to netflix or prime video, if you are looking for legal means;False;False;;;;1610187811;;False;{};gin7alq;False;t3_ktn18q;False;False;t1_gin6rxl;/r/anime/comments/ktn18q/im_from_iran_and_i_wanna_watch_anime_legally_what/gin7alq/;1610229448;4;True;False;anime;t5_2qh22;;0;[]; -[];;;deeveeuhs;;;[];;;;text;t2_dkuv2;False;False;[];;Mob Psycho;False;False;;;;1610187831;;False;{};gin7bak;False;t3_ktm3yx;False;True;t3_ktm3yx;/r/anime/comments/ktm3yx/recommend_me_animes_below_30_episodes_that_are/gin7bak/;1610229459;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Btw_kek;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SouvlakiSpace7;light;text;t2_i0pj6;False;False;[];;Kino's Journey 2003;False;False;;;;1610187885;;False;{};gin7d5v;False;t3_ktohfq;False;True;t3_ktohfq;/r/anime/comments/ktohfq/suggest_me_any_good_one_cour_anime/gin7d5v/;1610229491;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;The majority of legal sites we can suggest here won't allow you to straight-up download episodes.;False;False;;;;1610187971;;False;{};gin7g0x;False;t3_ktnv70;False;True;t3_ktnv70;/r/anime/comments/ktnv70/download_tamako_market_dub_free/gin7g0x/;1610229543;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rollin340;;;[];;;;text;t2_cmyef;False;False;[];;It's really good. Such a shame it didn't get more seasons.;False;False;;;;1610188067;;False;{};gin7jcs;False;t3_ktm9t3;False;False;t1_gin1sjv;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gin7jcs/;1610229603;6;True;False;anime;t5_2qh22;;0;[]; -[];;;SEDGE-DemonSeed;;;[];;;;text;t2_12zrkj;False;False;[];;Make sure to watch the directors cut :);False;False;;;;1610188123;;False;{};gin7laq;False;t3_ktnqap;False;False;t1_gin3svn;/r/anime/comments/ktnqap/i_want_to_watch_re_zero_since_theres_a_second/gin7laq/;1610229639;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tahirs;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/tahirs;light;text;t2_3112zzkc;False;False;[];;relife;False;False;;;;1610188217;;False;{};gin7omj;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gin7omj/;1610229700;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fat_memer420;;;[];;;;text;t2_92d1d4kg;False;False;[];;"English is not my first language so im not that fast at reading English subs beside that Persian subs are kinda funnier bc of the way they translate (translate it wrong on purpose to make it look funny but delivers the meaning) -I didn't know that i could add Persian subs to Netflix tbh -do you know any site that its membership gives you the permission to download ane watch the anime offline? -Thanks btw";False;False;;;;1610188227;;False;{};gin7oz1;True;t3_ktn18q;False;True;t1_gin7alq;/r/anime/comments/ktn18q/im_from_iran_and_i_wanna_watch_anime_legally_what/gin7oz1/;1610229706;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Goooodmorninggamers;;;[];;;;text;t2_4difcjrg;False;False;[];;"So if Yui's wish is granted Yui and Hachiman will go out and Yukino will be left behind? - -This choice from Yukino feels so wrong, as Hachiman clearly loves Yukino and only likes Yui, but I guess it is what it is.";False;False;;;;1610188275;;False;{};gin7qrf;True;t3_ktob73;False;False;t1_gin6z3f;/r/anime/comments/ktob73/oregairu_s3_ep_89_question/gin7qrf/;1610229736;2;True;False;anime;t5_2qh22;;0;[]; -[];;;7seagull;;;[];;;;text;t2_160t08;False;False;[];;this;False;False;;;;1610188295;;False;{};gin7rgv;False;t3_ktmo3m;False;True;t1_gin4yxv;/r/anime/comments/ktmo3m/sauce_tanakakun_wa_itsumo_kedaruge/gin7rgv/;1610229748;3;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;Flip Flappers;False;False;;;;1610188340;;False;{};gin7t1c;False;t3_ktohfq;False;False;t3_ktohfq;/r/anime/comments/ktohfq/suggest_me_any_good_one_cour_anime/gin7t1c/;1610229774;4;True;False;anime;t5_2qh22;;0;[]; -[];;;thotslayer8man;;;[];;;;text;t2_81jh9n1y;False;False;[];;"{Rainbow} - -{March Comes In Like A Lion} - -{Oregairu}";False;False;;;;1610188355;;False;{};gin7tjn;False;t3_ktogel;False;True;t3_ktogel;/r/anime/comments/ktogel/i_need_a_heavy_drama_anime/gin7tjn/;1610229783;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tahirs;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/tahirs;light;text;t2_3112zzkc;False;False;[];;plastic memories;False;False;;;;1610188426;;False;{};gin7w0c;False;t3_ktkzvp;False;True;t3_ktkzvp;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gin7w0c/;1610229826;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TravisScotch--;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/TravisScotch/;light;text;t2_7fexh1u7;False;False;[];;"Looked up Rainbow to see it and got spoiled. Nice. It looks really good. The only other prison show I watched was prison school. - - -I’ve already seen Oregairu and March comes in Like a lion";False;False;;;;1610188511;;False;{};gin7yxa;False;t3_ktogel;False;False;t1_gin7tjn;/r/anime/comments/ktogel/i_need_a_heavy_drama_anime/gin7yxa/;1610229875;1;True;False;anime;t5_2qh22;;0;[]; -[];;;smallPP420;;;[];;;;text;t2_5clo9ssi;False;False;[];;What’s the difference between a normal episode and the directors cut?;False;False;;;;1610188579;;False;{};gin819i;True;t3_ktnqap;False;True;t1_gin7laq;/r/anime/comments/ktnqap/i_want_to_watch_re_zero_since_theres_a_second/gin819i/;1610229917;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;"- Madoka Magica - -- Inuyashiki - -- Happy Sugar Life";False;False;;;;1610188623;;False;{};gin82vx;False;t3_ktohfq;False;True;t3_ktohfq;/r/anime/comments/ktohfq/suggest_me_any_good_one_cour_anime/gin82vx/;1610229951;3;True;False;anime;t5_2qh22;;0;[]; -[];;;hitogomi911;;;[];;;;text;t2_83ec5qv5;False;False;[];;Mahouka Koukou no Yuutousei ;False;False;;;;1610188697;;False;{};gin85gd;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gin85gd/;1610229996;0;True;False;anime;t5_2qh22;;0;[]; -[];;;KendotsX;;;[];;;;text;t2_j6nbtko;False;False;[];;Baccano!;False;False;;;;1610188798;;False;{};gin891s;False;t3_ktohfq;False;False;t3_ktohfq;/r/anime/comments/ktohfq/suggest_me_any_good_one_cour_anime/gin891s/;1610230063;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hells7rom;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Hells7rom;light;text;t2_3jumls03;False;False;[];;Thanks, the premise seems interesting, will check out;False;False;;;;1610188825;;False;{};gin89z0;True;t3_ktohfq;False;True;t1_gin7d5v;/r/anime/comments/ktohfq/suggest_me_any_good_one_cour_anime/gin89z0/;1610230079;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xkingjamez;;;[];;;;text;t2_9mypc2h9;False;False;[];;"Howl's Moving Castle - -Dragon Ball Z: Resurrection F - -Demon Slayer: Mugen Train - -Spirited Away - -Akira";False;False;;;;1610188921;;False;{};gin8dg8;False;t3_ktnb9e;False;True;t3_ktnb9e;/r/anime/comments/ktnb9e/suggest_me_some_good_anime_movies/gin8dg8/;1610230140;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xzcarloszx;;;[];;;;text;t2_886vs;False;False;[];;Not much it's two episodes in one with 2-3 retouched scenes. I remember someone wrote up a post how it was worse than the original but having watched both I've already forgotten his points so it's probably fine. You should also watch frozen bond I think it's actually part of the director's cut in the middle.;False;False;;;;1610189118;;False;{};gin8kgg;False;t3_ktnqap;False;False;t1_gin819i;/r/anime/comments/ktnqap/i_want_to_watch_re_zero_since_theres_a_second/gin8kgg/;1610230270;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ernost;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ernost/;light;text;t2_eszh9;False;False;[];;Highschool of the Dead. With just about every other show mentioned in the comments here, you can at least read the LN or Manga. But with HotD you cannot even do that.;False;False;;;;1610189128;;False;{};gin8kte;False;t3_ktm9t3;False;False;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gin8kte/;1610230278;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hells7rom;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Hells7rom;light;text;t2_3jumls03;False;False;[];;I have heard of bacaano but i never knew that it was one cour, now i think i will check it out;False;False;;;;1610189164;;1610191812.0;{};gin8m5w;True;t3_ktohfq;False;True;t1_gin891s;/r/anime/comments/ktohfq/suggest_me_any_good_one_cour_anime/gin8m5w/;1610230302;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Aerodynamic41;;;[];;;;text;t2_kreyjop;False;False;[];;Wow, looks like next episode is setting up to be the big reveal we've all been waiting for.;False;False;;;;1610189254;;False;{};gin8pak;False;t3_kto98k;False;False;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gin8pak/;1610230358;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Ssalari;;;[];;;;text;t2_1q5r40bd;False;False;[];;I think many ppl are sad , and it's natural, but all good things will end, that's life.;False;False;;;;1610189256;;False;{};gin8pd9;False;t3_ktopqp;False;False;t3_ktopqp;/r/anime/comments/ktopqp/anyone_else_really_sad_that_gintama_has_ended/gin8pd9/;1610230361;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SMRchdon075;;;[];;;;text;t2_76awkk6i;False;False;[];;I know but I felt like it needed one more 😭😭;False;False;;;;1610189314;;False;{};gin8rf7;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gin8rf7/;1610230397;0;True;False;anime;t5_2qh22;;0;[]; -[];;;_Pinguino_;;skip7;[];;;dark;text;t2_8rggs9k7;False;False;[];;Kyousougiga;False;False;;;;1610189441;;False;{};gin8vw5;False;t3_ktohfq;False;False;t3_ktohfq;/r/anime/comments/ktohfq/suggest_me_any_good_one_cour_anime/gin8vw5/;1610230472;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KendotsX;;;[];;;;text;t2_j6nbtko;False;False;[];;You should! It was a 13 episodes one cour, later followed by 3 OVA's.;False;False;;;;1610189609;;False;{};gin91r6;False;t3_ktohfq;False;True;t1_gin8m5w;/r/anime/comments/ktohfq/suggest_me_any_good_one_cour_anime/gin91r6/;1610230572;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Quanta314;;;[];;;;text;t2_bdrbe;False;False;[];;When I started watching it in my early 20's it was worth the watch. Now when I look back at it, I wouldn't recommend it. Granted, my taste in anime has change a lot since then.;False;False;;;;1610189753;;False;{};gin96v7;False;t3_ktnpcf;False;True;t3_ktnpcf;/r/anime/comments/ktnpcf/is_naruto_worth_watching/gin96v7/;1610230665;3;True;False;anime;t5_2qh22;;0;[]; -[];;;iSmellPantsu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_5pun5nqz;False;False;[];;"• Haibane Renmei -• Ima, soko ni iru boku -• Kaiba -• Shoujo Shuumatsu Ryokou";False;False;;;;1610189769;;False;{};gin97e2;False;t3_ktohfq;False;False;t3_ktohfq;/r/anime/comments/ktohfq/suggest_me_any_good_one_cour_anime/gin97e2/;1610230674;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;CLANNAD is by far the saddest thing I’ve ever seen. I’ve seen all the sad anime everyone talks about, I seriously recommend this one.;False;False;;;;1610189803;;False;{};gin98m2;False;t3_ktkzvp;False;True;t3_ktkzvp;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gin98m2/;1610230695;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jojo_is_trash;;;[];;;;text;t2_595dn1yo;False;False;[];;Finally;False;False;;;;1610189813;;False;{};gin98xd;False;t3_ktofju;False;True;t3_ktofju;/r/anime/comments/ktofju/bofuri_i_dont_want_to_get_hurt_so_ill_max_out_my/gin98xd/;1610230700;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TisButA-Zucc;;;[];;;;text;t2_14kw1cu0;False;False;[];;Yeah, I mostly take breaks to watch western series. I watch Mandalorian now and plan to watch Chernobyl after. Then go back to anime.;False;False;;;;1610189833;;False;{};gin99l2;False;t3_ktkdht;False;True;t3_ktkdht;/r/anime/comments/ktkdht/do_you_ever_just_take_breaks_from_watching_anime/gin99l2/;1610230711;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hells7rom;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Hells7rom;light;text;t2_3jumls03;False;False;[];;Can i watch just TV series or i have to watch 2012 ONA or other ONA too;False;False;;;;1610189865;;False;{};gin9arl;True;t3_ktohfq;False;False;t1_gin8vw5;/r/anime/comments/ktohfq/suggest_me_any_good_one_cour_anime/gin9arl/;1610230732;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610189874;moderator;False;{};gin9b36;False;t3_ktovps;False;True;t3_ktovps;/r/anime/comments/ktovps/why_did_sailor_moon_crystal_get_so_much/gin9b36/;1610230737;1;False;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;CLANNAD. Essentially 40 eps of buildup. And it’s all worth it...;False;False;;;;1610189953;;False;{};gin9dxu;False;t3_ktogel;False;True;t3_ktogel;/r/anime/comments/ktogel/i_need_a_heavy_drama_anime/gin9dxu/;1610230790;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BishItsPranjal;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/kakusuu;light;text;t2_tnss6uh;False;False;[];;Ikr, them ratings. Maybe they just like having a good time watching trashy stuff, which I can respect.;False;False;;;;1610189962;;False;{};gin9eaf;False;t3_ktnkaj;False;False;t1_gin32xe;/r/anime/comments/ktnkaj/anyone_got_some_good_isekai_anime/gin9eaf/;1610230797;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KMZel;;;[];;;;text;t2_12iecij8;False;False;[];;""" -The Service Club is most likely still going to be a thing next year (Or is it? Im not sure anymore) "" - -This is something I initially didn't catch, but it would appear for all intents and purposes that the club was specifically created by Yukinoshita for Hikigaya, so if they go their separate ways the club basically serves no purpose anymore. - -Hikigaya is brought to the ""service club"" by Hiratsuka-sensei, but notice that it's literally just Yukinoshita and no one else. Pretty strange as any seasoned anime fan will be aware that anime law requires a club to have five members + teacher to be officially acknowledged etc. We find out later that the car that hit Hikigaya as he was saving Yuigahama's dog (causing him to miss school) was owned by her family and she was a passenger in the vehicle at that time, so when Yukinoshita insisted she wasn't aware of his existence, that was obviously a lie. She's trying waaaaaaaaaay to hard to pretend she isn't aware of him at all, and Hiratsuka-sensei would know that and would likely call her out on that lie of hers unless she had a reason not to. - -One of the show's major themes is the inability for people to be direct with one another; they put up personas and masks to hide their true selves/feelings so as not to disrupt friend group dynamics, or in the case of Yukinoshita and Hikigaya, banter in increasingly round-about ways without just directly saying what they're thinking or feeling. Knowing about the accident and Hikigaya's hospitalization, it's not unnatural for someone like Yukinoshita to feel like that accident might have caused him to be unable to make friends due to said absence from school. At the same time, she wouldn't be able to directly approach him to ask, partly out of shame for her ""responsibility"" with the accident and also because she's a very cynical person who wouldn't want people spreading rumors about her because she approached him or whatever. So the possible explanation is that Yukinoshita approached Hiratsuka-sensei (who she already appears to trust) and they came up with the ""service club"" to try and do something to help Hikigaya. She gets to ""indirectly"" help him by trying to force him to be in a club where he helps (and interacts) with others and maybe makes some friends along the way. But as the series progresses the dynamics begin to shift. He starts being the one who's always helping her, and it feeds into a prior complex she has about being ""co-dependent"" on others. So once she ""loses"" the bet with Hikigaya, she asks him to grant Yui's wish, which in her mind is ""go out with her,"". Now the club no longer serves a purpose; Hikigaya doesn't need her help anymore (supposedly), which is why when she locks the door it's implying that it's being locked for good. - -"" How does making Hikigaya ""grant Yui's wish"" end the relationship between Yukinoshita and Hikigaya? "" and "" -Yui's wish is literally to be together"" - -Yuigahama's wish is she ""wants it all""; she wants to both be in a dating relationship with Hikigaya but also wants all three of them to be best friends forever. She knows that Yukinoshita loves Hikigaya as well so wanting it all is impossible and deep down she kind of knows she's asking the impossible. - -"" -And Yukinoshita should know by now that independency is a recipe for failure at this point. (such as when she overworked herself and become sick because she was being too independent)"" - -Yukinoshita and Hikigaya both have the same issue to some extent, but Yukinoshita moreso than Hachiman; they don't know how to ask others for help. This manifests differently for each character. For Hachiman he either does everything himself or creates a situation where he will take all the blame unto himself. Yukinoshita either does everything herself or entirely depends on others. They both need to learn how to ""rely"" on others for help rather than ""depend"" on others. - -I hope that helps?";False;False;;;;1610190036;;False;{};gin9gz5;False;t3_ktob73;False;True;t3_ktob73;/r/anime/comments/ktob73/oregairu_s3_ep_89_question/gin9gz5/;1610230849;8;True;False;anime;t5_2qh22;;0;[]; -[];;;makeshift18;;;[];;;;text;t2_csc6k;False;False;[];;Well I'll hit you with some romance dramas, scums wish is pretty character driven a lot of monologing. Golden time, set in college and a little wacky sometimes but still pretty enjoyable. White album 2 starts off pretty cliche then it's not.;False;False;;;;1610190070;;False;{};gin9i57;False;t3_ktogel;False;True;t3_ktogel;/r/anime/comments/ktogel/i_need_a_heavy_drama_anime/gin9i57/;1610230869;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TravisScotch--;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/TravisScotch/;light;text;t2_7fexh1u7;False;False;[];;Scums wish looks like the thing I’m looking for. Thank you;False;False;;;;1610190165;;False;{};gin9ljy;False;t3_ktogel;False;False;t1_gin9i57;/r/anime/comments/ktogel/i_need_a_heavy_drama_anime/gin9ljy/;1610230929;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi uglyunicorn11, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610190229;moderator;False;{};gin9nv7;False;t3_ktoyjs;False;True;t3_ktoyjs;/r/anime/comments/ktoyjs/looking_for_a_romance_yanderea_anime_suggestions/gin9nv7/;1610230974;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610190311;;False;{};gin9qoc;False;t3_ktohfq;False;True;t3_ktohfq;/r/anime/comments/ktohfq/suggest_me_any_good_one_cour_anime/gin9qoc/;1610231029;1;True;False;anime;t5_2qh22;;0;[]; -[];;;drasheed132;;;[];;;;text;t2_39t8myjk;False;False;[];;The last few episodes were sad;False;False;;;;1610190411;;False;{};gin9u8s;False;t3_ktkzvp;False;True;t1_gimx2cl;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gin9u8s/;1610231092;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rougz75;;;[];;;;text;t2_2falyhr8;False;False;[];;"Magi - -Cowboy Bebop - -They’re a little longer than what you’re hoping for but based off your MAL I think you’d like them - -Enjoy! - -Also* Grimgar of fantasy and ash. (12 episodes with no season 2 in sight)";False;False;;;;1610190420;;False;{};gin9ujs;False;t3_ktohfq;False;False;t1_gin9qoc;/r/anime/comments/ktohfq/suggest_me_any_good_one_cour_anime/gin9ujs/;1610231098;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Happy sugar life;False;False;;;;1610190473;;False;{};gin9wgj;False;t3_ktoyjs;False;True;t3_ktoyjs;/r/anime/comments/ktoyjs/looking_for_a_romance_yanderea_anime_suggestions/gin9wgj/;1610231135;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SEDGE-DemonSeed;;;[];;;;text;t2_12zrkj;False;False;[];;Basically what the guy below said. Fairy minor changes that IMO add up to make A much more “movie” like experience. Much more immersive the way the episodes are stitched. Also contains the blu-ray changes which heavily retouch a few scenes.;False;False;;;;1610190483;;False;{};gin9ws7;False;t3_ktnqap;False;False;t1_gin819i;/r/anime/comments/ktnqap/i_want_to_watch_re_zero_since_theres_a_second/gin9ws7/;1610231141;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Not that many anime use the yandere trope but you can check out, future diary, happy sugar life and date a live;False;False;;;;1610190484;;1610192928.0;{};gin9wtf;False;t3_ktoyjs;False;False;t3_ktoyjs;/r/anime/comments/ktoyjs/looking_for_a_romance_yanderea_anime_suggestions/gin9wtf/;1610231141;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SEDGE-DemonSeed;;;[];;;;text;t2_12zrkj;False;False;[];;I honestly can’t see how it could possibly be worse. Not much different maybe but worse doesn’t make much sense. Frozen bond is included as an episode in the directors cut.;False;False;;;;1610190530;;False;{};gin9yg4;False;t3_ktnqap;False;True;t1_gin8kgg;/r/anime/comments/ktnqap/i_want_to_watch_re_zero_since_theres_a_second/gin9yg4/;1610231170;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610190605;moderator;False;{};gina14k;False;t3_ktp1iw;False;True;t3_ktp1iw;/r/anime/comments/ktp1iw/i_saw_this_song_as_an_ad_but_i_cant_remember_the/gina14k/;1610231220;1;False;False;anime;t5_2qh22;;0;[]; -[];;;diracalpha;;MAL;[];;;dark;text;t2_n0ok2;False;False;[];;Because it was super ugly. They made it out to be some crazy project to fully adapt Sailor Moon and the first season was just very poorly made.;False;False;;;;1610190682;;False;{};gina3tq;False;t3_ktovps;False;False;t3_ktovps;/r/anime/comments/ktovps/why_did_sailor_moon_crystal_get_so_much/gina3tq/;1610231268;7;True;False;anime;t5_2qh22;;0;[]; -[];;;dk_inFirehose;;;[];;;;text;t2_7xz1seik;False;False;[];;"!remindme 1 hour - -If nobody answers you by then, I'll google the lyrics for you and tell you what I find. If I fucked up the remindme command, just reply or something idk";False;False;;;;1610190827;;False;{};gina8yb;False;t3_ktp1iw;False;True;t3_ktp1iw;/r/anime/comments/ktp1iw/i_saw_this_song_as_an_ad_but_i_cant_remember_the/gina8yb/;1610231365;1;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Shows the Silver Award... and that's it."", 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'icon_width': 512, 'id': 'gid_1', 'is_enabled': True, 'is_new': False, 'name': 'Silver', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;fakeport;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_soe2k;False;False;[];;Aoi Hana (sweet Blue flowers) has a relationship start pretty early.;False;False;;;;1610190911;;False;{'gid_1': 1};ginabzz;False;t3_ktmqce;False;True;t3_ktmqce;/r/anime/comments/ktmqce/pls_recommend_me_a_yuri_anime_where_characters/ginabzz/;1610231422;1;True;False;anime;t5_2qh22;;1;[]; -[];;;Spade-Demon;;;[];;;;text;t2_5tkn0i2y;False;False;[];;Yes, I would definitely recommend Naruto. The side characters, the antagonists, the nuanced organic world of Naruto and the exciting kinetic animation of its fights, the relate-ability of the characters, there’s few Shonen that reach its heights and I’m not talking about the quarter of a billion copies it has in circulation. The fillers is definitely what you would want to avoid for a first timer since the production for Naruto by Studio Pierrot isn’t the greatest but it’s a solid show nonetheless.;False;False;;;;1610190973;;False;{};ginae6t;False;t3_ktnpcf;False;True;t3_ktnpcf;/r/anime/comments/ktnpcf/is_naruto_worth_watching/ginae6t/;1610231459;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610190979;;1610227641.0;{};ginaef6;False;t3_ktovps;False;False;t3_ktovps;/r/anime/comments/ktovps/why_did_sailor_moon_crystal_get_so_much/ginaef6/;1610231463;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;Dub for Baccano! is better if you can't understand Japanese.;False;False;;;;1610191006;;False;{};ginafce;False;t3_ktohfq;False;True;t1_gin8m5w;/r/anime/comments/ktohfq/suggest_me_any_good_one_cour_anime/ginafce/;1610231479;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gsenjou;;;[];;;;text;t2_5ns6dyc;False;False;[];;That's 100% [Chrome Shelled Regios](https://myanimelist.net/anime/4186/Chrome_Shelled_Regios).;False;False;;;;1610191117;;False;{};ginajat;False;t3_ktmio7;False;False;t3_ktmio7;/r/anime/comments/ktmio7/any_help_finding_an_anime_where_the_protagonist/ginajat/;1610231555;2;True;False;anime;t5_2qh22;;0;[]; -[];;;llamabbopp;;;[];;;;text;t2_10dz86;False;False;[];;Saddest I've seen was Gundam War in the Pocket;False;False;;;;1610191191;;False;{};ginalyh;False;t3_ktkzvp;False;True;t3_ktkzvp;/r/anime/comments/ktkzvp/whats_the_saddest_anime/ginalyh/;1610231604;2;False;False;anime;t5_2qh22;;0;[]; -[];;;Roles78901;;;[];;;;text;t2_8d5yvxy8;False;False;[];;Okay that must be random because I dont dislike but it’s just eh, if it’s in the anime it’s in the anime, but also I need to update my list because I have watch how not to summon. It’s a solid 7/10 but that’s only because the comedy. But anywho thanks!;False;False;;;;1610191313;;False;{};ginaqgh;True;t3_ktnkaj;False;True;t1_gin6q7t;/r/anime/comments/ktnkaj/anyone_got_some_good_isekai_anime/ginaqgh/;1610231685;1;True;False;anime;t5_2qh22;;0;[]; -[];;;uglyunicorn11;;;[];;;;text;t2_7643pcbf;False;False;[];;I’m a bit cultured for that anime I heard it’s dark;False;False;;;;1610191329;;False;{};ginar19;True;t3_ktoyjs;False;True;t1_gin9wgj;/r/anime/comments/ktoyjs/looking_for_a_romance_yanderea_anime_suggestions/ginar19/;1610231696;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Roles78901;;;[];;;;text;t2_8d5yvxy8;False;False;[];;Hmm, im going to need to get around to those, thank you for the recommendations!;False;False;;;;1610191356;;False;{};ginas0q;True;t3_ktnkaj;False;True;t1_gin6tk0;/r/anime/comments/ktnkaj/anyone_got_some_good_isekai_anime/ginas0q/;1610231714;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Stalin-The-Great;;;[];;;;text;t2_36zfoyta;False;False;[];;Thanks for helping;False;False;;;;1610191479;;False;{};ginawh1;True;t3_ktp1iw;False;True;t1_gina8yb;/r/anime/comments/ktp1iw/i_saw_this_song_as_an_ad_but_i_cant_remember_the/ginawh1/;1610231795;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Pinguino_;;skip7;[];;;dark;text;t2_8rggs9k7;False;False;[];;the TV series alone should be fine;False;False;;;;1610191529;;False;{};ginayay;False;t3_ktohfq;False;True;t1_gin9arl;/r/anime/comments/ktohfq/suggest_me_any_good_one_cour_anime/ginayay/;1610231828;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Goooodmorninggamers;;;[];;;;text;t2_4difcjrg;False;False;[];;Wow that is a very detailed explanation. And the part about the club is something I would never have thought of. Thank you so much!;False;False;;;;1610191534;;False;{};ginaygk;True;t3_ktob73;False;True;t1_gin9gz5;/r/anime/comments/ktob73/oregairu_s3_ep_89_question/ginaygk/;1610231831;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Akudama drive, just aired this last season;False;False;;;;1610191559;;False;{};ginazfa;False;t3_ktohfq;False;False;t3_ktohfq;/r/anime/comments/ktohfq/suggest_me_any_good_one_cour_anime/ginazfa/;1610231848;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Your lie in april and Clannad?;False;False;;;;1610191623;;False;{};ginb1se;False;t3_ktogel;False;True;t3_ktogel;/r/anime/comments/ktogel/i_need_a_heavy_drama_anime/ginb1se/;1610231891;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Yeah, a little, not too much, if you want light hearted comedy with a yandere character then shimoneta and baka to test;False;False;;;;1610191728;;False;{};ginb5qs;False;t3_ktoyjs;False;True;t1_ginar19;/r/anime/comments/ktoyjs/looking_for_a_romance_yanderea_anime_suggestions/ginb5qs/;1610231961;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ODMAN03;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Protogeist/;light;text;t2_16pj5i;False;False;[];;If I feel like watching something that isn’t anime, I’ll take a break from it until I feel like watching an anime;False;False;;;;1610191788;;False;{};ginb7zt;False;t3_ktkdht;False;True;t3_ktkdht;/r/anime/comments/ktkdht/do_you_ever_just_take_breaks_from_watching_anime/ginb7zt/;1610232000;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Zayed_khalid;;;[];;;;text;t2_7f1hqahz;False;False;[];;I swear I was about to type this .. THANKS !!!;False;False;;;;1610191882;;False;{};ginbbif;False;t3_ktohfq;False;False;t3_ktohfq;/r/anime/comments/ktohfq/suggest_me_any_good_one_cour_anime/ginbbif/;1610232064;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;"I would recommend Shuffle, - -In this anime, Kaede was awesome.";False;False;;;;1610191891;;False;{};ginbbtp;False;t3_ktoyjs;False;True;t3_ktoyjs;/r/anime/comments/ktoyjs/looking_for_a_romance_yanderea_anime_suggestions/ginbbtp/;1610232069;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TravisScotch--;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/TravisScotch/;light;text;t2_7fexh1u7;False;False;[];;YLIA doesn’t really appeal to me. I’ve been spoiled and it doesn’t really look that interesting. The opening is a fucking bop though;False;False;;;;1610191896;;False;{};ginbbzg;False;t3_ktogel;False;True;t1_ginb1se;/r/anime/comments/ktogel/i_need_a_heavy_drama_anime/ginbbzg/;1610232072;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tehy99;;;[];;;;text;t2_tesmo;False;False;[];;this episode really reminded me of something I was thinking about this series...well, I read someone saying that this show was all filler, and the funny thing is, that's actually the opposite of the truth. it just doesn't feel that way because of the way it's structured. I mean, in this episode: some guy is a dick, so Moroha goes after him for the high bounty and the sisters tag along...oh yeah, he's the guy who burned down the forest 10 years ago. Who would've seen that coming? So the story actually is progressing but it sure as hell doesn't feel like it.;False;False;;;;1610191909;;False;{};ginbcgt;False;t3_kto98k;False;False;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/ginbcgt/;1610232082;13;True;False;anime;t5_2qh22;;0;[]; -[];;;gsenjou;;;[];;;;text;t2_5ns6dyc;False;False;[];;[Shuffle!](https://myanimelist.net/anime/79/Shuffle) has an yandere romantic interest. Keep in mind though, it's a harem romcom series and said girl's yandere tendencies don't appear til pretty late in the series.;False;False;;;;1610191948;;False;{};ginbdui;False;t3_ktoyjs;False;True;t3_ktoyjs;/r/anime/comments/ktoyjs/looking_for_a_romance_yanderea_anime_suggestions/ginbdui/;1610232107;1;True;False;anime;t5_2qh22;;0;[]; -[];;;uglyunicorn11;;;[];;;;text;t2_7643pcbf;False;False;[];;Is it creepy and not many jump scare;False;False;;;;1610191951;;False;{};ginbdyj;True;t3_ktoyjs;False;True;t1_ginbbtp;/r/anime/comments/ktoyjs/looking_for_a_romance_yanderea_anime_suggestions/ginbdyj/;1610232109;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MyLifeIsStrangeLikeM;;;[];;;;text;t2_pi4itna;False;False;[];;Is that Reiner from aot voice actor?;False;False;;;;1610191957;;False;{};ginbe5c;False;t3_ktmo3m;False;False;t3_ktmo3m;/r/anime/comments/ktmo3m/sauce_tanakakun_wa_itsumo_kedaruge/ginbe5c/;1610232112;15;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610192038;;False;{};ginbh1e;False;t3_ktm9t3;False;True;t1_gin6sds;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ginbh1e/;1610232165;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;Yops not many jump scare.;False;False;;;;1610192038;;False;{};ginbh1m;False;t3_ktoyjs;False;True;t1_ginbdyj;/r/anime/comments/ktoyjs/looking_for_a_romance_yanderea_anime_suggestions/ginbh1m/;1610232165;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zayed_khalid;;;[];;;;text;t2_7f1hqahz;False;False;[];;Just don’t get spoiled next time you search an anime;False;False;;;;1610192049;;False;{};ginbhft;False;t3_ktogel;False;True;t1_ginbbzg;/r/anime/comments/ktogel/i_need_a_heavy_drama_anime/ginbhft/;1610232171;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Chemiczny_Bogdan;;;[];;;;text;t2_4hx94;False;False;[];;Konosuba had two seasons and a movie was released in 2019. Although there hasn't been any official word, there may be continuation.;False;False;;;;1610192174;;False;{};ginbm07;False;t3_ktm9t3;False;False;t1_gimwihp;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ginbm07/;1610232253;20;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610192285;moderator;False;{};ginbq52;False;t3_ktpetn;False;True;t3_ktpetn;/r/anime/comments/ktpetn/this_one_meme_with_lenses/ginbq52/;1610232328;1;False;False;anime;t5_2qh22;;0;[]; -[];;;uglyunicorn11;;;[];;;;text;t2_7643pcbf;False;False;[];;Is this a herem anime?? Review is saying it’s a herem anime I don’t care if it is I’ll still watch it;False;False;;;;1610192339;;False;{};ginbs54;True;t3_ktoyjs;False;True;t1_ginbh1m;/r/anime/comments/ktoyjs/looking_for_a_romance_yanderea_anime_suggestions/ginbs54/;1610232362;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ohaimike;;;[];;;;text;t2_5ovb2;False;False;[];;"So we have a time frame. - -We have a year to prepare ourselves for Maple, but even that won't be long enough. - -I wonder what she's going to turn into this time. - -I'M SO EXCITED!";False;False;;;;1610192435;;False;{};ginbvm6;False;t3_ktofju;False;False;t3_ktofju;/r/anime/comments/ktofju/bofuri_i_dont_want_to_get_hurt_so_ill_max_out_my/ginbvm6/;1610232428;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;But that's the way I like it;False;False;;;;1610192508;;False;{};ginbydb;False;t3_ktpenk;False;True;t3_ktpenk;/r/anime/comments/ktpenk/loli_is_2d_child_porn_and_too_accessible/ginbydb/;1610232481;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610192533;;False;{};ginbzc7;False;t3_ktpenk;False;True;t1_ginbydb;/r/anime/comments/ktpenk/loli_is_2d_child_porn_and_too_accessible/ginbzc7/;1610232501;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;No no, it's called being cultured;False;False;;;;1610192600;;False;{};ginc1qq;False;t3_ktpenk;False;True;t1_ginbzc7;/r/anime/comments/ktpenk/loli_is_2d_child_porn_and_too_accessible/ginc1qq/;1610232548;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610192618;;1610199542.0;{};ginc2g1;False;t3_ktpenk;False;True;t3_ktpenk;/r/anime/comments/ktpenk/loli_is_2d_child_porn_and_too_accessible/ginc2g1/;1610232561;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MEKK-the-MIGHTY;;;[];;;;text;t2_4hbcn77w;False;False;[];;Mangen Battery is best;False;False;;;;1610192626;;False;{};ginc2qb;False;t3_ktoy59;False;True;t3_ktoy59;/r/anime/comments/ktoy59/the_song_is_kinda_lit/ginc2qb/;1610232566;1;True;False;anime;t5_2qh22;;0;[]; -[];;;El_Dorado_king;;;[];;;;text;t2_83jjcph8;False;False;[];;Tq, I'll start it today;False;False;;;;1610192640;;False;{};ginc3ay;True;t3_ktmqce;False;True;t1_ginabzz;/r/anime/comments/ktmqce/pls_recommend_me_a_yuri_anime_where_characters/ginc3ay/;1610232577;1;True;False;anime;t5_2qh22;;0;[]; -[];;;El_Dorado_king;;;[];;;;text;t2_83jjcph8;False;False;[];;I already watched it. I like it but , too much drama not my type. Tq for suggesting.;False;False;;;;1610192681;;False;{};ginc4sl;True;t3_ktmqce;False;True;t1_gin674e;/r/anime/comments/ktmqce/pls_recommend_me_a_yuri_anime_where_characters/ginc4sl/;1610232602;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NightCupcake;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/NoodleGalaxy;light;text;t2_77fhp1wn;False;False;[];;Is it though? I watched the first 7 or so episodes and found it pretty boring most of the time;False;False;;;;1610192700;;1610193042.0;{};ginc5gb;False;t3_ktogel;False;True;t1_gin9dxu;/r/anime/comments/ktogel/i_need_a_heavy_drama_anime/ginc5gb/;1610232613;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hokoriwa;;;[];;;;text;t2_89aj2n94;False;False;[];;"[Tokyo Godfathers](https://myanimelist.net/anime/759/Tokyo_Godfathers?q=tokyo%20godfa&cat=anime) - -[Summer Wars](https://myanimelist.net/anime/5681/Summer_Wars?q=summer%20wars&cat=anime) - -[The anthem of the heart](https://myanimelist.net/anime/28725/Kokoro_ga_Sakebitagatterunda?q=the%20anthem%20of&cat=anime) - -[Piano Forest](https://myanimelist.net/anime/2594/Piano_no_Mori?q=piano&cat=anime) - -[Saint Young Men](https://myanimelist.net/anime/15771/Saint%E2%98%86Oniisan_Movie?q=saint&cat=anime)";False;False;;;;1610192837;;False;{};gincafg;False;t3_ktnb9e;False;True;t3_ktnb9e;/r/anime/comments/ktnb9e/suggest_me_some_good_anime_movies/gincafg/;1610232705;3;True;False;anime;t5_2qh22;;0;[]; -[];;;y0gesh_y2k;;;[];;;;text;t2_6ww1swdm;False;False;[];;Yes it is;False;False;;;;1610192855;;False;{};gincb3r;True;t3_ktmo3m;False;False;t1_ginbe5c;/r/anime/comments/ktmo3m/sauce_tanakakun_wa_itsumo_kedaruge/gincb3r/;1610232717;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Westlad;;;[];;;;text;t2_xtlh8;False;False;[];;10 episodes left and unless they pull off some amazing writing, I’m going to rate it 5.5/10 for me.;False;False;;;;1610193056;;False;{};gincij8;False;t3_kto98k;False;False;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gincij8/;1610232852;9;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610193114;moderator;False;{};gincko5;False;t3_ktpl6s;False;True;t3_ktpl6s;/r/anime/comments/ktpl6s/is_noragami_aragoto_the_season_2/gincko5/;1610232890;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Damarugaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Damarugaki/;light;text;t2_6zyxfkgg;False;False;[];;Yes, it's a sequel;False;False;;;;1610193257;;False;{};gincpxb;False;t3_ktpl6s;False;True;t3_ktpl6s;/r/anime/comments/ktpl6s/is_noragami_aragoto_the_season_2/gincpxb/;1610232986;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rasouddress;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/rasouddress/;light;text;t2_p87m5;False;False;[];;Still disappointed that the ending hasnt* been adapted!;False;False;;;;1610193267;;1610215952.0;{};gincqa7;False;t3_ktm9t3;False;False;t1_gin0wi7;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gincqa7/;1610232994;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cosoacaso01000;;;[];;;;text;t2_4n4br5bq;False;False;[];;So it s season 2?;False;False;;;;1610193279;;False;{};gincqqi;True;t3_ktpl6s;False;True;t1_gincpxb;/r/anime/comments/ktpl6s/is_noragami_aragoto_the_season_2/gincqqi/;1610233001;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Yeah its the second season, the anime is probably over but didn't adapt the whole manga, so we never know;False;False;;;;1610193287;;False;{};gincr02;False;t3_ktpl6s;False;True;t3_ktpl6s;/r/anime/comments/ktpl6s/is_noragami_aragoto_the_season_2/gincr02/;1610233005;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Damarugaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Damarugaki/;light;text;t2_6zyxfkgg;False;False;[];;Yes;False;False;;;;1610193303;;False;{};gincrn2;False;t3_ktpl6s;False;True;t1_gincqqi;/r/anime/comments/ktpl6s/is_noragami_aragoto_the_season_2/gincrn2/;1610233017;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cosoacaso01000;;;[];;;;text;t2_4n4br5bq;False;False;[];;Ty;False;False;;;;1610193330;;False;{};gincsek;True;t3_ktpl6s;False;True;t1_gincrn2;/r/anime/comments/ktpl6s/is_noragami_aragoto_the_season_2/gincsek/;1610233031;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cosoacaso01000;;;[];;;;text;t2_4n4br5bq;False;False;[];;Oh ok;False;False;;;;1610193339;;False;{};gincsv8;True;t3_ktpl6s;False;True;t1_gincr02;/r/anime/comments/ktpl6s/is_noragami_aragoto_the_season_2/gincsv8/;1610233039;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CB5JohnJonas;;;[];;;;text;t2_uagbj;False;False;[];;They announced a second season not long after it aired, although there is yet to come anything about it since;False;False;;;;1610193369;;False;{};ginctyw;False;t3_ktm9t3;False;False;t1_gimwo3k;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ginctyw/;1610233059;11;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610193414;moderator;False;{};gincvn0;False;t3_ktpnm7;False;True;t3_ktpnm7;/r/anime/comments/ktpnm7/hi_guysi_just_want_to_ask_if_its_okayyunnouhmmm/gincvn0/;1610233092;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;"The anime is called ""just because""";False;False;;;;1610193496;;False;{};gincyor;False;t3_ktpnm7;False;True;t3_ktpnm7;/r/anime/comments/ktpnm7/hi_guysi_just_want_to_ask_if_its_okayyunnouhmmm/gincyor/;1610233154;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CynonYew;;;[];;;;text;t2_6zo1uuu0;False;False;[];;"More by how they try and make themselves look official. -Whenever i watch anime stuff on youtube like OPs or scenes I like to make sure if possible i at least watch it from either the og Japanese publisher or licensor if they posted any (and if not then shrug i tried). -i guess what bothers me is that someone who's like me who wants to at least contribute to the official licensor/publishers view count will watch this channel thinking they're an official distributor even though they're not.";False;False;;;;1610193695;;False;{};gind63y;True;t3_ktlkco;False;True;t1_gin30ql;/r/anime/comments/ktlkco/does_anyone_know_if_animetv_チェーン_is_legal_or_not/gind63y/;1610233281;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TimetoDDDuel;;;[];;;;text;t2_2ljjuma0;False;False;[];;"- Gintama -- Made in Abyss";False;False;;;;1610193712;;False;{};gind6rg;False;t3_ktkzvp;False;True;t3_ktkzvp;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gind6rg/;1610233292;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JudgesYourWaifus;;;[];;;;text;t2_3od2mqpj;False;False;[];;Hyouka for me. It just felt incomplete.;False;False;;;;1610193727;;False;{};gind7c9;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gind7c9/;1610233303;0;True;False;anime;t5_2qh22;;0;[]; -[];;;linkinstreet;;;[];;;;text;t2_71lbm;False;True;[];;Hyouka, which now becomes unlikely after the sad event of KyoAni;False;False;;;;1610193778;;False;{};gind97k;False;t3_ktm9t3;False;False;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gind97k/;1610233335;14;True;False;anime;t5_2qh22;;0;[]; -[];;;HattoriSaizoII;;;[];;;;text;t2_72680hhu;False;False;[];;I'm really digging the new OP.;False;False;;;;1610193902;;1610203247.0;{};ginddyz;False;t3_kto98k;False;False;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/ginddyz/;1610233420;12;True;False;anime;t5_2qh22;;0;[]; -[];;;simkashi01;;;[];;;;text;t2_34ctdura;False;False;[];;Damn what a pathetic weeb;False;False;;;;1610193990;;False;{};gindhax;False;t3_ktpnm7;False;True;t3_ktpnm7;/r/anime/comments/ktpnm7/hi_guysi_just_want_to_ask_if_its_okayyunnouhmmm/gindhax/;1610233479;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tobby711;;;[];;;;text;t2_15qpr802;False;False;[];;Nya;False;False;;;;1610194211;;False;{};gindpx9;False;t3_ktnv70;False;True;t3_ktnv70;/r/anime/comments/ktnv70/download_tamako_market_dub_free/gindpx9/;1610233630;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrRobinsonCrusoe;;;[];;;;text;t2_wtbvv;False;False;[];;"It is from ""Getsuyoubi no Tawawa"" (episode 5)";False;False;;;;1610194263;;1610195796.0;{};gindrzb;False;t3_ktpnm7;False;True;t3_ktpnm7;/r/anime/comments/ktpnm7/hi_guysi_just_want_to_ask_if_its_okayyunnouhmmm/gindrzb/;1610233668;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mythriz;;;[];;;;text;t2_d37v0;False;False;[];;"[Nothing can stop ~~Leroy Jenkins~~ Moroha!](https://i.imgur.com/XMydBLj.png) - -[Snowroha](https://i.imgur.com/3H9Vqho.png) - -Man what a toxic relationship. The scariest thing about this episode is realizing that there are guys like this IRL mistreating their SOs... He wasn't even shown to do anything else demonic the entire episode besides ""firing his employees"", well besides setting the forest on fire 10 years ago I guess.";False;False;;;;1610194263;;False;{};gindrzr;False;t3_kto98k;False;False;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gindrzr/;1610233668;21;True;False;anime;t5_2qh22;;0;[]; -[];;;OrderofChaosdeath;;;[];;;;text;t2_1ddr197u;False;False;[];;What episode is this?;False;False;;;;1610194345;;False;{};gindv80;False;t3_ktoy59;False;True;t3_ktoy59;/r/anime/comments/ktoy59/the_song_is_kinda_lit/gindv80/;1610233730;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ARES_GOD;;;[];;;;text;t2_hvnzb;False;False;[];;"All the usual suspects that are listed ofc. -But for me it has to be Mondaiji man i wish a s2 so much like really really a lot.";False;False;;;;1610194422;;False;{};gindy8d;False;t3_ktm9t3;False;False;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gindy8d/;1610233786;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dk_inFirehose;;;[];;;;text;t2_7xz1seik;False;False;[];;Is that the clearest picture you have tho? Can't make out the first kanji;False;False;;;;1610194569;;False;{};gine3xc;False;t3_ktp1iw;False;True;t1_ginawh1;/r/anime/comments/ktp1iw/i_saw_this_song_as_an_ad_but_i_cant_remember_the/gine3xc/;1610233891;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dry_Pair_9567;;;[];;;;text;t2_8cparb80;False;False;[];;Yes definitely;False;False;;;;1610194714;;False;{};gine9fq;False;t3_ktnpcf;False;True;t3_ktnpcf;/r/anime/comments/ktnpcf/is_naruto_worth_watching/gine9fq/;1610233994;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KMZel;;;[];;;;text;t2_12iecij8;False;False;[];;"You're welcome. :D By the by you watched episode 9? Perhaps my favorite conversation in the show is the grocery store conversation about peaches. (It's not actually about peaches). ;P";False;False;;;;1610194825;;False;{};ginedvv;False;t3_ktob73;False;True;t1_ginaygk;/r/anime/comments/ktob73/oregairu_s3_ep_89_question/ginedvv/;1610234070;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Br0wn_Head;;;[];;;;text;t2_4mh3mfz;False;False;[];;If you didn't watch this anime, you have to do this! Those character are amazing!;False;False;;;;1610194847;;False;{};gineeo6;False;t3_ktmo3m;False;False;t3_ktmo3m;/r/anime/comments/ktmo3m/sauce_tanakakun_wa_itsumo_kedaruge/gineeo6/;1610234084;16;True;False;anime;t5_2qh22;;0;[]; -[];;;TheExile4;;;[];;;;text;t2_jtc9d;False;False;[];;I think more people would be pissed off than be pleased with a 2nd season of it. A 2nd season wouldn't at all be like the 1st season vibe. Best just leave it where it is.;False;False;;;;1610194965;;False;{};ginejba;False;t3_ktm9t3;False;True;t1_gimwqxb;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ginejba/;1610234171;2;True;False;anime;t5_2qh22;;0;[]; -[];;;irisverse;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/usernamesarehard;light;text;t2_1dzbqjh4;False;False;[];;"Get so much what? Hate? That's probably because just about nearly every aspect of the show is massively underwhelming, if not outright bad. -The art style and character designs are garish and ugly, the animation is practically non-existent, the characters are flat and uninteresting, and the overall writing and plot progression is bland and forgettable. - -Watching Crystal makes it abundantly clear that what made Sailor Moon good in the first place wasn't Naoko Takeuchi's story, but the adaptation it was given by Junichi Satou and Kunihiko Ikuhara. They might have gone majorly off script, but the changes they made added so much more personality to the characters and nuance to their relationships, helped in no small part by them just having more time to flesh things out. In Sailor Moon Crystal, two characters will meet each other for the first time in one episode and then later on in that same episode we'll be expected to buy into the fact that they're willing to defend each other with their lives despite them only having just met, whereas in the original Sailor Moon those events will be ten episodes apart, during which time we'll see those characters grow closer as friends and actually give us time to get invested in their relationship. - -It may be more faithful, but Crystal ultimately feels like a hollow husk of what it's supposed to be.";False;False;;;;1610195029;;False;{};ginelus;False;t3_ktovps;False;False;t3_ktovps;/r/anime/comments/ktovps/why_did_sailor_moon_crystal_get_so_much/ginelus/;1610234217;5;True;False;anime;t5_2qh22;;0;[]; -[];;;TheExile4;;;[];;;;text;t2_jtc9d;False;False;[];;"I want to see the spin off series animated, [manga spoilers](/s ""where they are married with a little girl of their own"")";False;False;;;;1610195106;;False;{};gineow8;False;t3_ktm9t3;False;True;t1_gimw4oi;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gineow8/;1610234271;3;True;False;anime;t5_2qh22;;0;[]; -[];;;J_Eldridge;;;[];;;;text;t2_aicta;False;False;[];;If bloom into you gets another season that finishes it, its going from a 9/10 to a 10/10;False;False;;;;1610195127;;False;{};gineprf;False;t3_ktm9t3;False;False;t1_gin6sds;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gineprf/;1610234285;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Goooodmorninggamers;;;[];;;;text;t2_4difcjrg;False;False;[];;Yeah I did! I think that conversation was about how Hachiman will reminisce the days he made dessert together just by eating peaches.;False;False;;;;1610195200;;False;{};ginesm8;True;t3_ktob73;False;True;t1_ginedvv;/r/anime/comments/ktob73/oregairu_s3_ep_89_question/ginesm8/;1610234336;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheExile4;;;[];;;;text;t2_jtc9d;False;False;[];;At the time, wasn't it because they didn't have enough material to justify another season?;False;False;;;;1610195219;;False;{};ginetdn;False;t3_ktm9t3;False;True;t1_gind7c9;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ginetdn/;1610234350;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610195273;;1610227635.0;{};ginevfm;False;t3_ktovps;False;True;t1_ginelus;/r/anime/comments/ktovps/why_did_sailor_moon_crystal_get_so_much/ginevfm/;1610234385;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jianthepro;;;[];;;;text;t2_4henx9x1;False;False;[];;Death Parade;False;False;;;;1610195326;;False;{};ginexiw;False;t3_ktohfq;False;True;t3_ktohfq;/r/anime/comments/ktohfq/suggest_me_any_good_one_cour_anime/ginexiw/;1610234422;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kattman03;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Rem simp;dark;text;t2_scvxzo1;False;False;[];;Second season soon and I personally can’t wait;False;False;;;;1610195380;;False;{};ginezq3;False;t3_ktm9t3;False;True;t1_gimwo3k;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ginezq3/;1610234459;2;True;False;anime;t5_2qh22;;0;[]; -[];;;degenerate-edgelord;;;[];;;;text;t2_1hbjff8i;False;False;[];;Seaason 2. Watch the OVAs of both seasons in the right order though, one has a spoiler for S2. You can find the watch order in the wiki section of this sub.;False;False;;;;1610195430;;False;{};ginf1p6;False;t3_ktpl6s;False;True;t3_ktpl6s;/r/anime/comments/ktpl6s/is_noragami_aragoto_the_season_2/ginf1p6/;1610234493;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheExile4;;;[];;;;text;t2_jtc9d;False;False;[];;"Relife technically finished with the 4 episode OVA after season 1, but there was so much in between they skipped, (100+ chapters) I really wish they gave it the full adaptation it deserved. - -The manga was amazing.";False;False;;;;1610195443;;1610195636.0;{};ginf28i;False;t3_ktm9t3;False;False;t1_gin7omj;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ginf28i/;1610234503;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Hells7rom;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Hells7rom;light;text;t2_3jumls03;False;False;[];;Already watched, but thanks;False;False;;;;1610195544;;False;{};ginf68x;True;t3_ktohfq;False;True;t1_ginexiw;/r/anime/comments/ktohfq/suggest_me_any_good_one_cour_anime/ginf68x/;1610234574;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pradfanne;;MAL;[];;;dark;text;t2_petia;False;False;[];;"Fun fact: most phones detect when you turn it THIS WAY. So why the fuck does anyone make a video, apparently intended for use with a phone, in portrait mode while the video itself is landscape. - -Whoever did this is an idiot";False;False;;;;1610195678;;False;{};ginfbpk;False;t3_ktq4sv;False;True;t3_ktq4sv;/r/anime/comments/ktq4sv/unknown_maker_probably_not_shared_here_yet/ginfbpk/;1610234674;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610195764;moderator;False;{};ginffa5;False;t3_ktq7bf;False;True;t3_ktq7bf;/r/anime/comments/ktq7bf/is_fate_series_and_re_zero_connected_in_any_way/ginffa5/;1610234738;-1;False;False;anime;t5_2qh22;;0;[]; -[];;;ThePreciseClimber;;;[];;;;text;t2_kjl4o;False;False;[];;"Well, the series we actually got... not really. But there is a fan edit called Naruto Kai which restores manga pacing. - -[https://www.reddit.com/r/Naruto/comments/91wdjv/naruto\_kai\_ultimate\_subbed\_edition/](https://www.reddit.com/r/Naruto/comments/91wdjv/naruto_kai_ultimate_subbed_edition/)";False;False;;;;1610195770;;False;{};ginffi1;False;t3_ktnpcf;False;True;t3_ktnpcf;/r/anime/comments/ktnpcf/is_naruto_worth_watching/ginffi1/;1610234742;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;No;False;False;;;;1610195824;;False;{};ginfhpp;False;t3_ktq7bf;False;True;t3_ktq7bf;/r/anime/comments/ktq7bf/is_fate_series_and_re_zero_connected_in_any_way/ginfhpp/;1610234779;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Bruh probably not;False;False;;;;1610195839;;False;{};ginfiba;False;t3_ktq7bf;False;True;t3_ktq7bf;/r/anime/comments/ktq7bf/is_fate_series_and_re_zero_connected_in_any_way/ginfiba/;1610234791;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610195877;;False;{};ginfjs8;False;t3_ktm9t3;False;False;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ginfjs8/;1610234817;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Afronnub;;;[];;;;text;t2_121l6h;False;False;[];;I'm pretty sure that's exactly what happened. I just always wanted them to come back for more.;False;False;;;;1610195900;;False;{};ginfkqr;False;t3_ktm9t3;False;True;t1_ginetdn;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ginfkqr/;1610234833;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;You realise that for that to work, you need to be using a phone and you need to turn off auto-rotation. This is stupid.;False;False;;;;1610195902;;False;{};ginfkte;False;t3_ktq4sv;False;True;t3_ktq4sv;/r/anime/comments/ktq4sv/unknown_maker_probably_not_shared_here_yet/ginfkte/;1610234834;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;We have daily posts about the Re(rezero, relife, recreators) watch order, now we are reaching the zero watch order;False;False;;;;1610195911;;False;{};ginfl7t;False;t3_ktq7bf;False;True;t3_ktq7bf;/r/anime/comments/ktq7bf/is_fate_series_and_re_zero_connected_in_any_way/ginfl7t/;1610234842;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Nope, not at all. Fate and Re:Zero are not related at all. - -I think you're mistaken for reading Fate/Stay Night should be watched/read first before watching Fate/Zero. - -EDIT: Fate/Zero should always be watched after Fate/Stay Night if my wording was unclear.";False;False;;;;1610195921;;1610196806.0;{};ginflkd;False;t3_ktq7bf;False;True;t3_ktq7bf;/r/anime/comments/ktq7bf/is_fate_series_and_re_zero_connected_in_any_way/ginflkd/;1610234848;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;This is excellent satire.;False;False;;;;1610195981;;False;{};ginfo1f;False;t3_ktq7bf;False;True;t1_ginfl7t;/r/anime/comments/ktq7bf/is_fate_series_and_re_zero_connected_in_any_way/ginfo1f/;1610234892;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sophisticated_K;;;[];;;;text;t2_14mtx1;False;False;[];;You mean Fate/Zero? If that’s the case, yes. Cause Zero is the prequel. But since, you literally said Re, that I say is no;False;False;;;;1610196015;;False;{};ginfpdi;False;t3_ktq7bf;False;True;t3_ktq7bf;/r/anime/comments/ktq7bf/is_fate_series_and_re_zero_connected_in_any_way/ginfpdi/;1610234916;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DC_2020_;;;[];;;;text;t2_7vf0us95;False;False;[];;Nice;False;False;;;;1610196057;;False;{};ginfr0l;False;t3_ktpuqw;False;True;t3_ktpuqw;/r/anime/comments/ktpuqw/anime_edit_made_by_me_sorry_if_its_bad_but_i/ginfr0l/;1610234945;1;True;False;anime;t5_2qh22;;0;[]; -[];;;whalehome;;;[];;;;text;t2_albkj;False;False;[];;You could probably read naruto faster than you could watch it, that's if you read manga though.;False;False;;;;1610196210;;False;{};ginfxby;False;t3_ktnpcf;False;True;t3_ktnpcf;/r/anime/comments/ktnpcf/is_naruto_worth_watching/ginfxby/;1610235058;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fakeport;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_soe2k;False;False;[];;Agreed. There's basically exactly the right amount of material left for a second series to finish it too.;False;False;;;;1610196349;;False;{};ging33x;False;t3_ktm9t3;False;True;t1_gineprf;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ging33x/;1610235164;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Reed_Solomon;;;[];;;;text;t2_3et7f;False;False;[];;Mikakunin de Shinkoukei (Engaged to the Unidentified);False;False;;;;1610196352;;False;{};ging38s;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ging38s/;1610235166;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KMZel;;;[];;;;text;t2_12iecij8;False;False;[];;"The conversation is entirely about the relationship status at that point. When Yui's mother asks about what fruit they want to put in the tart, the conversation goes something like this: - -Yui: Peach! -Yui's Mom: Peach season comes later. Summer is the right time for those. Hikki, what fruits do you like? -(skipping the random Peanuts bit) -Hachiman: If I had to choose, I like pears. -(skipping the random Chiba bit) -Yui's Mom: But pears aren't in season now, either. Well, if we want peaches, we can use canned ones. -Yui: Canned peaches... What do you want to do, Hikki? -Hachiman: It doesn't matter to me. Komachi's not particularly picky, either. I guess peach would be good. However, if we're using canned peaches, the time of year or whatever doesn't matter, right? -Yui's Mom: That would be the truth right now. But the season will still come. Many years will pass, and when you eat a peach as a grown up, you'll remember this sort of thing happened, you know? That's what's so wonderful about homemade sweets. -Yui: That sounds really nice! -Yui's Mom: It's it? And it's really effective for attractiing boys! -Yui: You ruined it! Now it sounds manipulative. - -In this conversation, Peaches are a metaphor for Yui and Pears are a metaphor for Yukino. Right now, neither are in season, (Yukino is currently pushing Hachiman away, Hachiman isn't actually in love with Yui (yet)) but right now Hachiman is all about them pears. This metaphor is also supported when Hachiman states ""Komachi's not particularly picky, either,"" because from the beginning she's been fine with Hachiman ending up with either Yui or Yukino, whoever makes Hachiman happy. Yui's Mom is metaphorically making the case that Hachiman should wait and give himself time to actually fall in love with Yui so that it will leave better memories (if you force yourself to be with Yui now, it's not better than canned peaches vs. fresh ones which will definitely taste better.). Also note that while Yui's Mom does mention they CAN use canned peaches if they must, she never brings up the notion of canned pears... I wonder why... ;P. And that last bit about manipulation, well we now know where Yui got her tendencies. Yui is, at least among the three core characters, the most manipulative one; she would be willing to resort to such promises to get what she wants in the end. - -Also an interesting touch for the metaphor, Yui and Yukino's names both start with the same letter, Y. For the fruits discussion, they used two fruits that start with the same letter as well, P in this case. Just an interesting observation.";False;False;;;;1610196371;;False;{};ging3zv;False;t3_ktob73;False;False;t1_ginesm8;/r/anime/comments/ktob73/oregairu_s3_ep_89_question/ging3zv/;1610235179;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610196378;moderator;False;{};ging4b9;False;t3_ktqc5n;False;True;t3_ktqc5n;/r/anime/comments/ktqc5n/question_regarding_gotoubun_no_hanayome/ging4b9/;1610235184;0;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610196379;moderator;False;{};ging4bm;False;t3_ktqc5r;False;True;t3_ktqc5r;/r/anime/comments/ktqc5r/does_anyone_still_do_the_find_my_anime_lookalike/ging4bm/;1610235184;1;False;False;anime;t5_2qh22;;0;[]; -[];;;stopprocrastinating8;;;[];;;;text;t2_4j75xese;False;False;[];;"Maybe basic but Deadman Wonderland :"")";False;False;;;;1610196410;;False;{};ging5mo;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ging5mo/;1610235207;2;True;False;anime;t5_2qh22;;0;[]; -[];;;irisverse;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/usernamesarehard;light;text;t2_1dzbqjh4;False;False;[];;The funny thing is, nostalgia doesn't factor into my experience with the franchise at all. In fact I actually watched Crystal first, back when it first came out, and at certain points I actually forgot the show existed it was so bland and boring. Then I went back and watched the original show in 2019, and was seriously taken aback by how much more fun and alive it felt. I'd previously written off Sailor Moon's success as nothing but something that was good for its time but that had since been surpassed, and ended up finding it to legitimately be one of the best experiences I've had with anime in the past few years.;False;False;;;;1610196423;;False;{};ging666;False;t3_ktovps;False;True;t1_ginevfm;/r/anime/comments/ktovps/why_did_sailor_moon_crystal_get_so_much/ging666/;1610235217;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;No;False;False;;;;1610196460;;False;{};ging7of;False;t3_ktqc5r;False;True;t3_ktqc5r;/r/anime/comments/ktqc5r/does_anyone_still_do_the_find_my_anime_lookalike/ging7of/;1610235244;6;True;False;anime;t5_2qh22;;0;[]; -[];;;NJBuoy;;skip7;[];;;dark;text;t2_9i9ekg0o;False;False;[];;Which anime is this ?;False;False;;;;1610196490;;False;{};ging8zl;False;t3_ktoy59;False;True;t3_ktoy59;/r/anime/comments/ktoy59/the_song_is_kinda_lit/ging8zl/;1610235267;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;AFAIK, they're in Year 12 or lower 6th form.;False;False;;;;1610196503;;False;{};ging9hr;False;t3_ktqc5n;False;True;t3_ktqc5n;/r/anime/comments/ktqc5n/question_regarding_gotoubun_no_hanayome/ging9hr/;1610235275;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;How much are they gonna condense in that season;False;False;;;;1610196561;;False;{};gingbx7;False;t3_ktofju;False;True;t3_ktofju;/r/anime/comments/ktofju/bofuri_i_dont_want_to_get_hurt_so_ill_max_out_my/gingbx7/;1610235315;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Second year of highschool if I am not mistaken;False;False;;;;1610196594;;False;{};gingdae;False;t3_ktqc5n;False;True;t3_ktqc5n;/r/anime/comments/ktqc5n/question_regarding_gotoubun_no_hanayome/gingdae/;1610235340;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;"[Hey, you can still take photos, record audio and video, take notes.](https://i.imgur.com/bFwWVeR.jpg) And if you were thinking ahead, load it up with reference material - -[Homura definitely did something wrong](https://i.imgur.com/QivpgGr.jpeg) - -[Well, shit, now we're never going to be able to get anything delivered here again!](https://i.imgur.com/xMI9308.jpg) - -[Nothing on one… little click on two… three is binding…](https://i.imgur.com/6Ky0X2Z.jpeg) - -[Place your bets!](https://i.imgur.com/yVmTrw2.jpeg) (1) doesn't care; (2) knows they'll be fine because they're his kids, so of course they're unbeatable; (3) thinks if they survive, they're worthy, and it not, then not; (4) other - -[Snowball Moroha a cute](https://i.imgur.com/3vLB2Ub.jpeg) - -[Loootta the old crew in this preview](https://i.imgur.com/PHpQC75.jpg) - -Man, I miss the first ending theme";False;False;;;;1610196719;;False;{};gingifi;False;t3_kto98k;False;False;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gingifi/;1610235430;10;True;False;anime;t5_2qh22;;0;[]; -[];;;slicer4ever;;;[];;;;text;t2_bgvkp;False;False;[];;Grimgar really needs another season.;False;False;;;;1610196770;;False;{};gingklm;False;t3_ktm9t3;False;False;t1_gimy2ak;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gingklm/;1610235468;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;">mew OP - -UwU";False;False;;;;1610196796;;False;{};gingln4;False;t3_kto98k;False;True;t1_ginddyz;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gingln4/;1610235487;2;True;False;anime;t5_2qh22;;0;[]; -[];;;slicer4ever;;;[];;;;text;t2_bgvkp;False;False;[];;Its been years since i read the manga, what happened to it anyway? Did the manga creator pass away?;False;False;;;;1610196884;;False;{};gingpbh;False;t3_ktm9t3;False;True;t1_gin8kte;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gingpbh/;1610235551;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mark6241VK;;;[];;;;text;t2_806bvtx6;False;False;[];;Dr.stone;False;False;;;;1610196906;;False;{};gingq7k;True;t3_ktoy59;False;True;t1_ging8zl;/r/anime/comments/ktoy59/the_song_is_kinda_lit/gingq7k/;1610235567;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610196937;;False;{};gingrka;False;t3_ktq4sv;False;True;t1_ginfkte;/r/anime/comments/ktq4sv/unknown_maker_probably_not_shared_here_yet/gingrka/;1610235592;1;True;False;anime;t5_2qh22;;0;[]; -[];;;slicer4ever;;;[];;;;text;t2_bgvkp;False;False;[];;Where would you want to see darling in the franxx go? It was a pretty conclusive(albeit kinda bad imo) ending.;False;False;;;;1610197002;;False;{};gingua6;False;t3_ktm9t3;False;False;t1_gimxfsx;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gingua6/;1610235641;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahou_Shoujo_Ramune;;;[];;;;text;t2_4vs4l2r6;False;False;[];;Kinda difficult when ugly bastards mainly exist in hentai.;False;False;;;;1610197074;;False;{};gingxc5;False;t3_ktqc5r;False;True;t3_ktqc5r;/r/anime/comments/ktqc5r/does_anyone_still_do_the_find_my_anime_lookalike/gingxc5/;1610235695;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610197252;;1610227598.0;{};ginh4x2;False;t3_ktqc5n;False;True;t3_ktqc5n;/r/anime/comments/ktqc5n/question_regarding_gotoubun_no_hanayome/ginh4x2/;1610235829;4;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610197514;moderator;False;{};ginhgbg;False;t3_ktm9t3;False;True;t1_gin51xb;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ginhgbg/;1610236032;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lnombredelarosa;;;[];;;;text;t2_353zdp0k;False;False;[];;"* A nice episode with a feminist mesage. I also liked that Moroha (whom I believe may be a lesbian) applauded her. -* Homura was actually a more interesting villain than what I expected. Call it sympathy for the devil but I actually felt sad for him in the end, though to be fair he probably did't feel that way for the men he killed. -* So its confirmed that Riku is not human and the way he spoke of demons loving humans bringing dead to the former and his ambition to kill Kirinmaru further implies he is his hanyo son - * And from the priview it seems like he was an adult when Towa was a baby -* This Cero woman sounds interesting, specially since her giving orders to Homura implies that she is even stronger and I rank that guy above any of the Perils, conidering he was winning against the girls in a straight fight without any items to rely on. This implies that Sesshomaru has recruited stronger servants than Kirinmaru, possibly because of the guy's implied senility. -* The way I see it, Riku's plan involves orchestrating the deaths of the major great demons including Seeshomaru and Kirinmaru and Sesshomaru's involves saving Rin through any means so I'm guessing the two will eventually be set for conflict, with the girls being caught in between -* If I had to guess, Sesshomaru ordered the forest burned because he wanted the girls to awaken their powers and quite possibly the three of ages, which he in turn used to keep Rin alive. -* The preview seems to imply the conflict that set Sesshomaru to ally himself with Kirinmaru against Inuyasha. -* The new opening (which was awesome by the way) and the previews do seem to hint that Rin is the mother but I'm going to be stubborn on my dislike for Sessrin and say that they could well be missdirections and that it isn't cannon until stated otherwise.";False;False;;;;1610197634;;1610210217.0;{};ginhlhd;False;t3_kto98k;False;False;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/ginhlhd/;1610236122;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Goooodmorninggamers;;;[];;;;text;t2_4difcjrg;False;False;[];;"Now I remember the full conversation. When I was first watching that scene, I was sure that the fruits were a metaphor for something, but I really couldn't put my finger on it. - -Another great insight. Thanks";False;False;;;;1610197667;;False;{};ginhmw6;True;t3_ktob73;False;True;t1_ging3zv;/r/anime/comments/ktob73/oregairu_s3_ep_89_question/ginhmw6/;1610236145;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;As others have said, watch the fan edit [**Naruto Kai**](https://www.reddit.com/r/Naruto/comments/91wdjv/naruto_kai_ultimate_subbed_edition/);False;False;;;;1610197669;;False;{};ginhn1a;False;t3_ktnpcf;False;True;t3_ktnpcf;/r/anime/comments/ktnpcf/is_naruto_worth_watching/ginhn1a/;1610236147;1;True;False;anime;t5_2qh22;;0;[]; -[];;;terror_rest45;;;[];;;;text;t2_yzc1b;False;False;[];;"Gekkan Shoujo Nozaki-kun - - -The best lmao";False;False;;;;1610197938;;False;{};ginhypz;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ginhypz/;1610236361;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your submission has been removed. - -- This looks like it's - a short video edit. - This is a form of restricted content that isn't allowed as a full post on the sub. You might consider posting about this sort of thing in the [weekly Casual Discussion Fridays megathread](https://www.reddit.com/r/anime/search?q=title%3A%22Casual+Discussion+Fridays%22+subreddit%3Aanime+author%3AAnimeMod&restrict_sr=on&sort=new&t=week) if it applies. See [our rules page](https://www.reddit.com/r/anime/wiki/rules#wiki_restricted_content) for a full list of restricted content categories. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610197939;moderator;False;{};ginhys4;False;t3_ktpuqw;False;True;t3_ktpuqw;/r/anime/comments/ktpuqw/anime_edit_made_by_me_sorry_if_its_bad_but_i/ginhys4/;1610236362;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SergeantIdiot;;;[];;;;text;t2_nyicm;False;False;[];;Naruto is a very good Anime in a genius setting and with a birlliant story and characters. But only watch till after pain arc. After that I it suffers from dragonball syndrome. Too much power ups, plotholes and bad writing.;False;False;;;;1610198029;;False;{};gini2q2;False;t3_ktnpcf;False;True;t3_ktnpcf;/r/anime/comments/ktnpcf/is_naruto_worth_watching/gini2q2/;1610236430;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Meemeli;;;[];;;;text;t2_2o1rogl;False;False;[];;No. You've probably confused Fate/Zero with Re:Zero.;False;False;;;;1610198139;;False;{};gini7hb;False;t3_ktq7bf;False;True;t3_ktq7bf;/r/anime/comments/ktq7bf/is_fate_series_and_re_zero_connected_in_any_way/gini7hb/;1610236510;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Stalin-The-Great;;;[];;;;text;t2_36zfoyta;False;False;[];;"Sadly yes but Google translate came out with - -呼び合っていた";False;False;;;;1610198257;;False;{};ginicq0;True;t3_ktp1iw;False;True;t1_gine3xc;/r/anime/comments/ktp1iw/i_saw_this_song_as_an_ad_but_i_cant_remember_the/ginicq0/;1610236602;1;True;False;anime;t5_2qh22;;0;[]; -[];;;umakunaritai;;;[];;;;text;t2_2kmnb5nm;False;False;[];;"I have seen Violet Evergarden, March Comes in Like A Lion, Clannad After Story, Grave of the Fireflies, The Beast Player Erin, Natsume and the Book of Friends, Into the Forrest of Fireflies' Light, Made in Abyss, We Still Don't Know the Name of the Flower We Saw That Day, Silent Voice. These are extremely sad anime. - -Yet for me, it may not be a popular opinion but it's Gintama. I have seen a lot of shounen anime. They always have incredible backstory. But Gintoki's past wrecked me. - -Going by everyday doing silly things, keep on doing mundane things. And more often than not pitting his body on the line to the point it breaks for people he barely met. Almost like he is trying to atone for something. - -But anyone who has seen the whole of Gintama would know that no one should hate the rotten world than Gintoki should. It would make sense if he wanted to destroy the world. Yet, he won't do anything hateful, let alone take revenge. - -So, yeah. It's Gintama. Do not get fooled by the comedy tag like I got.";False;False;;;;1610198390;;False;{};giniim9;False;t3_ktkzvp;False;False;t3_ktkzvp;/r/anime/comments/ktkzvp/whats_the_saddest_anime/giniim9/;1610236703;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610198789;;False;{};ginj0gf;False;t3_ktn97c;False;True;t3_ktn97c;/r/anime/comments/ktn97c/kamisama_kiss_special_episodes_ova/ginj0gf/;1610237035;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mikeng_0106;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MichaelK0106;light;text;t2_5ktn94g8;False;False;[];;Hai to gensou no Grimgar, season 2 would be so good if it exist;False;False;;;;1610198951;;False;{};ginj7q6;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ginj7q6/;1610237179;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Mikeng_0106;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MichaelK0106;light;text;t2_5ktn94g8;False;False;[];;Girls last tour ending is super good, cried like hell after I just finished;False;False;;;;1610198997;;False;{};ginj9nc;False;t3_ktm9t3;False;True;t1_gimwz0q;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ginj9nc/;1610237212;2;True;False;anime;t5_2qh22;;0;[]; -[];;;infinite_lyy;;;[];;;;text;t2_9lftz77s;False;False;[];;"These are all romances, hope that's all right with you hahaha - -Angel Beats - -Anohana - -Romeo x Juliet - -Orange - -Itazura na Kiss - -Toradora - -Paradise Kiss";False;False;;;;1610199200;;False;{};ginjiv3;False;t3_ktm3yx;False;True;t3_ktm3yx;/r/anime/comments/ktm3yx/recommend_me_animes_below_30_episodes_that_are/ginjiv3/;1610237385;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hot_Independence_433;;;[];;;;text;t2_7op9v7e6;False;False;[];;Yes movies included;False;False;;;;1610199364;;False;{};ginjqiy;True;t3_ktkzvp;False;True;t1_gimrftw;/r/anime/comments/ktkzvp/whats_the_saddest_anime/ginjqiy/;1610237522;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hot_Independence_433;;;[];;;;text;t2_7op9v7e6;False;False;[];;I've seen them all except, #5, and I agree;False;False;;;;1610199450;;False;{};ginjulz;True;t3_ktkzvp;False;False;t1_gimrnjh;/r/anime/comments/ktkzvp/whats_the_saddest_anime/ginjulz/;1610237595;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hot_Independence_433;;;[];;;;text;t2_7op9v7e6;False;False;[];;Gintama? Interesting choice;False;False;;;;1610199509;;False;{};ginjxod;True;t3_ktkzvp;False;True;t1_gind6rg;/r/anime/comments/ktkzvp/whats_the_saddest_anime/ginjxod/;1610237643;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610199532;;False;{};ginjyrw;False;t3_ktnqap;False;True;t3_ktnqap;/r/anime/comments/ktnqap/i_want_to_watch_re_zero_since_theres_a_second/ginjyrw/;1610237662;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TimetoDDDuel;;;[];;;;text;t2_2ljjuma0;False;False;[];;There's sad moments and episodes every now and then but the last few arcs are real tearjerkers;False;False;;;;1610199553;;False;{};ginjzrx;False;t3_ktkzvp;False;True;t1_ginjxod;/r/anime/comments/ktkzvp/whats_the_saddest_anime/ginjzrx/;1610237680;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hot_Independence_433;;;[];;;;text;t2_7op9v7e6;False;False;[];;I've still yet to finish gintama, almost done less than 100 eps to go, until the final movie comes, I can kinda understand;False;False;;;;1610199689;;False;{};gink6bu;True;t3_ktkzvp;False;True;t1_giniim9;/r/anime/comments/ktkzvp/whats_the_saddest_anime/gink6bu/;1610237798;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wintrparkgrl;;;[];;;;text;t2_5jmax;False;False;[];;Every time a question like this comes up my answer is always Spice and Wolf;False;False;;;;1610200033;;False;{};ginkmz1;False;t3_ktm9t3;False;False;t1_gimwihp;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ginkmz1/;1610238098;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SirAwesome789;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SirAwesomeness;light;text;t2_ra3np;False;False;[];;"Disclaimer: I'm not trying to spread misinformation. There is no official word on anything regarding Konosuba. - - -I can't fully agree about konosuba, simply bc I think there's a very real possibility that there'll be another season. Actually, I think it's more likely there will be one than not.";False;False;;;;1610200083;;False;{};ginkpdu;False;t3_ktm9t3;False;True;t1_gimwihp;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ginkpdu/;1610238139;2;True;False;anime;t5_2qh22;;0;[]; -[];;;brotato96;;;[];;;;text;t2_16ylw4gr;False;False;[];;Agreed;False;False;;;;1610200384;;False;{};ginl4ei;False;t3_ktm9t3;False;True;t1_gingua6;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ginl4ei/;1610238410;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;**Re:Zero** - [Trailer](https://www.youtube.com/watch?v=ETWPtIfesyA);False;False;;;;1610200602;;False;{};ginlfg4;False;t3_ktnkaj;False;True;t3_ktnkaj;/r/anime/comments/ktnkaj/anyone_got_some_good_isekai_anime/ginlfg4/;1610238603;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;Most anime older than 1995-2000.;False;False;;;;1610200625;;False;{};ginlgk0;False;t3_ktrbqr;False;False;t3_ktrbqr;/r/anime/comments/ktrbqr/hey_anime_fans_i_was_wondering_what_do_you_define/ginlgk0/;1610238624;10;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;I consider any anime before 2000 as retro.;False;False;;;;1610200702;;False;{};ginlkhd;False;t3_ktrbqr;False;False;t3_ktrbqr;/r/anime/comments/ktrbqr/hey_anime_fans_i_was_wondering_what_do_you_define/ginlkhd/;1610238707;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;"Pre 2000 animes are considered as ""retro""";False;False;;;;1610200704;;False;{};ginlkmc;False;t3_ktrbqr;False;False;t3_ktrbqr;/r/anime/comments/ktrbqr/hey_anime_fans_i_was_wondering_what_do_you_define/ginlkmc/;1610238711;7;True;False;anime;t5_2qh22;;0;[]; -[];;;AnxietyMode;;;[];;;;text;t2_30idps0n;False;False;[];;If the anime is from like 2005 or earlier or isn’t in 16x9 aspect ratio.;False;False;;;;1610200706;;False;{};ginlkpm;False;t3_ktrbqr;False;False;t3_ktrbqr;/r/anime/comments/ktrbqr/hey_anime_fans_i_was_wondering_what_do_you_define/ginlkpm/;1610238712;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Billardss;;;[];;;;text;t2_2oh01n9m;False;False;[];;I agree with Classroom of the Elite and I also probably go with Noragami. It was going so well;False;False;;;;1610200706;;False;{};ginlkqc;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ginlkqc/;1610238712;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cdeuel84;;;[];;;;text;t2_2k2j0gsm;False;False;[];;Probably depends on the person... Ide say pre 90s, but others may say differently depending on their age.;False;False;;;;1610200732;;False;{};ginlm2j;False;t3_ktrbqr;False;True;t3_ktrbqr;/r/anime/comments/ktrbqr/hey_anime_fans_i_was_wondering_what_do_you_define/ginlm2j/;1610238735;3;True;False;anime;t5_2qh22;;0;[]; -[];;;superbatflashman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/kurisuokabe;light;text;t2_8mdt665;False;False;[];;Since 'Retro' should define a fundamental shift in attitudes or techniques, the timeframe in which anime shifted from the majorly cel animated era to majorly digital animated could be taken as the threshold. This occurred sometimes in the late 90s to early 2000s as a whole transition period. So, for me I roughly take 1999-2000 as a major divide year to define 'Retro'. But, this will definitely vary from person to person.;False;False;;;;1610200849;;False;{};ginls6n;False;t3_ktrbqr;False;False;t3_ktrbqr;/r/anime/comments/ktrbqr/hey_anime_fans_i_was_wondering_what_do_you_define/ginls6n/;1610238841;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Isles0FMists;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Isles0FMists;light;text;t2_pi1py;False;False;[];;Oota best waifu.;False;False;;;;1610200942;;False;{};ginlwxm;False;t3_ktmo3m;False;False;t3_ktmo3m;/r/anime/comments/ktmo3m/sauce_tanakakun_wa_itsumo_kedaruge/ginlwxm/;1610238921;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;Seems to be the common consensus;False;False;;;;1610201199;;False;{};ginmaeb;True;t3_ktrbqr;False;True;t1_ginlgk0;/r/anime/comments/ktrbqr/hey_anime_fans_i_was_wondering_what_do_you_define/ginmaeb/;1610239151;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;It looks like most seem to agree;False;False;;;;1610201222;;False;{};ginmblx;True;t3_ktrbqr;False;False;t1_ginlkhd;/r/anime/comments/ktrbqr/hey_anime_fans_i_was_wondering_what_do_you_define/ginmblx/;1610239173;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;Pre-2000s for me. That's before digital art and (outside of movies) 16:9 video resolution was really a thing, and you can *absolutely* tell the difference between how those shows look and ones that are more recent.;False;False;;;;1610201317;;False;{};ginmgl6;False;t3_ktrbqr;False;True;t3_ktrbqr;/r/anime/comments/ktrbqr/hey_anime_fans_i_was_wondering_what_do_you_define/ginmgl6/;1610239257;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mikgucji;;;[];;;;text;t2_6om0ncab;False;False;[];;"Well I thought Towa Gonna Go FULL ON YOUKAI mode but then it looks like constipated or cock blocked in a way ... IDK it's just my own point of view man ... -But i gonna prepare my soul for ep 15 ... -THE EP 15 MARK THE DAMN CALENDARS 📅";False;False;;;;1610201423;;False;{};ginmlyi;False;t3_kto98k;False;False;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/ginmlyi/;1610239346;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Akulya;;;[];;;;text;t2_avpac;False;False;[];;I typically don't catch a lot of anime as it is simulcast so I was really sad when I finished Jujutsu Kaisen and there wasn't more. I guess I'll just have to pick up some of the manga. XP;False;False;;;;1610202191;;False;{};ginnr2i;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ginnr2i/;1610240065;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GoldMercy;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/xFSN_Archer;light;text;t2_tx7nw;False;False;[];;_chapter 44 intensifies_;False;False;;;;1610202204;;False;{};ginnrqi;False;t3_ktm9t3;False;True;t1_gineprf;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ginnrqi/;1610240076;2;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;I mean, watching online legally BARELY supports the creators of at all. Buy their manga or merch. So they receive direct revenue, because Crunchyroll ain’t giving them any.;False;False;;;;1610202335;;False;{};ginnyyc;False;t3_ktn18q;False;True;t3_ktn18q;/r/anime/comments/ktn18q/im_from_iran_and_i_wanna_watch_anime_legally_what/ginnyyc/;1610240202;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;dinoaide;;;[];;;;text;t2_btwr8a;False;False;[];;Both are not the best in their series. Alicization was good when there were only Kirito and Eugeo but becomes bad when Asuna showed up: “You have a girlfriend and a boyfriend, you Beater!”;False;False;;;;1610203211;;False;{};ginpbms;False;t3_ktnm3y;False;True;t3_ktnm3y;/r/anime/comments/ktnm3y/alicization_vs_absolute_demonic_front/ginpbms/;1610241053;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fat_memer420;;;[];;;;text;t2_92d1d4kg;False;False;[];;I'm not that interested in mangas but i do read doujinshis :3 beside that buying mangas is not really optional for me bc that would mean i have to pay more and even if i was up to pay more i wouldn't be able to actually buy them bc I don't have a credit card :(;False;False;;;;1610203246;;False;{};ginpdo6;True;t3_ktn18q;False;False;t1_ginnyyc;/r/anime/comments/ktn18q/im_from_iran_and_i_wanna_watch_anime_legally_what/ginpdo6/;1610241088;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;But... a CR streaming service costs $416 a year... That’s more than 20-30x what the normal manga fan needs to donate to support the creators;False;False;;;;1610203345;;False;{};ginpja8;False;t3_ktn18q;False;True;t1_ginpdo6;/r/anime/comments/ktn18q/im_from_iran_and_i_wanna_watch_anime_legally_what/ginpja8/;1610241188;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lucciolaa;;;[];;;;text;t2_qictp;False;False;[];;"* I'm loving the new OP and ED! Bangers. (If the OP doesn't confirm Rin as the mother, idk what will.) -* Riku is such a shit disturber, I'm obsessed. I think this episode confirms that he's a youkai. I was under the impression he set the girls up and was deliberately provoking Tomura to see them take him on, but I also wonder if he wanted him eliminated because of what he knew. -* I'm just waiting for Towa's rampant disregard for bringing back modern-day stuff back to the feudal era to become a Big Fat Problem. -* I am so suspicious of how they're trying to paint Sesshomaru as a villain, there's absolutely no way he would be OK with abandoning his children in a forest and then setting it on fire ???? I want to know more about this. - -I'm not sure I'm ready for the next episode :(";False;False;;;;1610203510;;False;{};ginpssu;False;t3_kto98k;False;False;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/ginpssu/;1610241344;11;True;False;anime;t5_2qh22;;0;[]; -[];;;YellwIsTraitorous;;;[];;;;text;t2_3uk2ot8t;False;False;[];;thank you so much!!! im amazed you understood my description;False;False;;;;1610203731;;False;{};ginq5di;True;t3_ktmio7;False;True;t1_ginajat;/r/anime/comments/ktmio7/any_help_finding_an_anime_where_the_protagonist/ginq5di/;1610241555;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lucciolaa;;;[];;;;text;t2_qictp;False;False;[];;">But i gonna prepare my soul for ep 15 ... THE EP 15 MARK THE DAMN CALENDARS 📅 - -SAME, I'm not READY. - -I also thought Towa was gonna fuck a bitch up, and it seemed to me like Riku was deliberately tryna provoke a conflict between them specifically, but then Homura just offed himself instead.";False;False;;;;1610203742;;False;{};ginq5zs;False;t3_kto98k;False;True;t1_ginmlyi;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/ginq5zs/;1610241565;3;True;False;anime;t5_2qh22;;0;[]; -[];;;YellwIsTraitorous;;;[];;;;text;t2_3uk2ot8t;False;False;[];;Another comment found out it was chrome shelled regios, but thank you for helping;False;False;;;;1610203824;;False;{};ginqaqf;True;t3_ktmio7;False;True;t1_gimywss;/r/anime/comments/ktmio7/any_help_finding_an_anime_where_the_protagonist/ginqaqf/;1610241643;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Epilex__;;;[];;;;text;t2_6dnttkpo;False;False;[];;"* Youjo Senki ( [TV](https://myanimelist.net/anime/32615) > [Movie](https://myanimelist.net/anime/37055) ) -* Tate no Yuusha ( [S1](https://myanimelist.net/anime/35790) > [S2](https://myanimelist.net/anime/40356) ^(Airing 2021) > [S3](https://myanimelist.net/anime/40357) ^(Air date TBA) ) -* *Re Zero - -*Season 1 of Re:Zero has two versions, original and Director's Cut. Director's cut is like a -Remaster and if you get the option to, watch Director's Cut. If you watch the original however, -don't worry. You won't miss anything of importance. - -The watch order is: [Season 1](https://myanimelist.net/anime/31240) 1-11 (Directors Cut 1-6) > [Memory Snow](https://myanimelist.net/anime/36286) > [Season 1](https://myanimelist.net/anime/31240) -11-25 (Directors Cut 7-13) > [Frozen Bond](https://myanimelist.net/anime/38414) > [Season 2 part 1](https://myanimelist.net/anime/39587) > [Season 2 part 2](https://myanimelist.net/anime/42203) ^Airing";False;False;;;;1610204113;;1610211421.0;{};ginqrlx;False;t3_ktnkaj;False;True;t3_ktnkaj;/r/anime/comments/ktnkaj/anyone_got_some_good_isekai_anime/ginqrlx/;1610241926;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fat_memer420;;;[];;;;text;t2_92d1d4kg;False;False;[];;It costs less bc the ppl who i buy from them have Russian PayPals i think( im not sure that's just what I've heard) and btw i think hbo was around $150 for a year;False;False;;;;1610204126;;False;{};ginqsdg;True;t3_ktn18q;False;True;t1_ginpja8;/r/anime/comments/ktn18q/im_from_iran_and_i_wanna_watch_anime_legally_what/ginqsdg/;1610241940;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;Serial experiments lain tho it’s probably the opposite type of show you typically otherwise give it a shot it’s one of a kind and only 12 episodes;False;False;;;;1610204134;;False;{};ginqsvi;False;t3_ktohfq;False;True;t3_ktohfq;/r/anime/comments/ktohfq/suggest_me_any_good_one_cour_anime/ginqsvi/;1610241947;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cyclone_96;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CrazyCyclone96;light;text;t2_es52y62;False;False;[];;While I doubt it will get another season, the reason for it is probably something else. What happened at KyoAni hasn’t stopped them producing. The Violet Evargarden movie just came out relatively recently.;False;False;;;;1610204311;;False;{};ginr36h;False;t3_ktm9t3;False;False;t1_gind97k;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ginr36h/;1610242119;9;True;False;anime;t5_2qh22;;0;[]; -[];;;gpsz6629;;;[];;;;text;t2_6hnfrrvt;False;False;[];;Oh my god I just notice this, how did I miss this, also great anime;False;False;;;;1610204476;;False;{};ginrcwp;False;t3_ktpm81;False;True;t3_ktpm81;/r/anime/comments/ktpm81/akuma_ehonda_makes_and_appearance_cautious_hero/ginrcwp/;1610242283;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gpsz6629;;;[];;;;text;t2_6hnfrrvt;False;False;[];;Honestly, I can respect him for that;False;False;;;;1610204605;;False;{};ginrkgl;False;t3_ktmo3m;False;False;t3_ktmo3m;/r/anime/comments/ktmo3m/sauce_tanakakun_wa_itsumo_kedaruge/ginrkgl/;1610242413;6;True;False;anime;t5_2qh22;;0;[]; -[];;;HattoriSaizoII;;;[];;;;text;t2_72680hhu;False;False;[];;"NGNL & AmaBuri";False;False;;;;1610204630;;False;{};ginrm0e;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ginrm0e/;1610242440;1;True;False;anime;t5_2qh22;;0;[]; -[];;;An-Omlette-NamedZoZo;;;[];;;;text;t2_u7ef7;False;False;[];;And the Free! movie is coming out soon too;False;False;;;;1610204760;;False;{};ginrtpi;False;t3_ktm9t3;False;True;t1_ginr36h;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ginrtpi/;1610242566;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cyclone_96;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CrazyCyclone96;light;text;t2_es52y62;False;False;[];;The movie was at least. I didn’t think the anime was really;False;False;;;;1610204857;;False;{};ginrzgv;False;t3_ktkzvp;False;False;t1_gimx2cl;/r/anime/comments/ktkzvp/whats_the_saddest_anime/ginrzgv/;1610242661;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeowlite;;;[];;;;text;t2_xyzpq;False;False;[];;Yes and they are legit, meaning they are legal, you can find their channel on youtube.;False;False;;;;1610204888;;False;{};gins19s;False;t3_ktn18q;False;True;t1_gin6t92;/r/anime/comments/ktn18q/im_from_iran_and_i_wanna_watch_anime_legally_what/gins19s/;1610242690;1;True;False;anime;t5_2qh22;;0;[]; -[];;;linkinstreet;;;[];;;;text;t2_71lbm;False;True;[];;"FWIW, Violet Evergarden movie was already moving along when the tragedy struck, hence it was an easy decision to continue with it. - -For Hyouka tho, it was more of Takemoto Yasuhiro's personal project with Shoji Gatoh (the author of FMP), and with Takemoto gone it's unlikely that Kyoani would be looking to pick it up again.";False;False;;;;1610205276;;False;{};ginsor7;False;t3_ktm9t3;False;True;t1_ginr36h;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/ginsor7/;1610243079;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;You Can (Not) Release;False;False;;;;1610205348;;False;{};ginsteq;False;t3_ktnuit;False;False;t3_ktnuit;/r/anime/comments/ktnuit/due_to_shortened_movie_opening_hours_and_state_of/ginsteq/;1610243155;51;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenew08;;;[];;;;text;t2_4r3b2fi6;False;False;[];;Gangsta.;False;False;;;;1610205876;;False;{};gintq3n;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gintq3n/;1610243695;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fat_memer420;;;[];;;;text;t2_92d1d4kg;False;False;[];;Are they just on YouTube? I wanted to use Persian subs tho;False;False;;;;1610206089;;False;{};ginu3lw;True;t3_ktn18q;False;False;t1_gins19s;/r/anime/comments/ktn18q/im_from_iran_and_i_wanna_watch_anime_legally_what/ginu3lw/;1610243938;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fransferdy;;;[];;;;text;t2_161rth;False;False;[];;"I really laughed out loud at ""firing his employees"" this is true to so many levels, I think it was the best pun I have ever seen.";False;False;;;;1610206107;;False;{};ginu4sm;False;t3_kto98k;False;False;t1_gindrzr;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/ginu4sm/;1610243957;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Kvicksilver;;;[];;;;text;t2_p8h0s;False;False;[];;"I really really hope that it has better pacing and is 2-cour. - -Edit: Don't misunderstand me, I loved season 1 and I just want as much as possible to be adapted and not skipped over.";False;False;;;;1610206129;;1610207978.0;{};ginu64h;False;t3_ktofju;False;True;t3_ktofju;/r/anime/comments/ktofju/bofuri_i_dont_want_to_get_hurt_so_ill_max_out_my/ginu64h/;1610243978;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;"- Hotarubi no Mori e -- Katanagatari";False;False;;;;1610206277;;False;{};ginufhd;False;t3_ktkzvp;False;True;t3_ktkzvp;/r/anime/comments/ktkzvp/whats_the_saddest_anime/ginufhd/;1610244135;1;True;False;anime;t5_2qh22;;0;[]; -[];;;juances19;;HB;[];;https://kitsu.io/users/juances;dark;text;t2_17a18d;False;False;[];;"Depends what you mean by retro. You can have ""genuine"" retro anime, or modern anime with a retro style that tries to simulate the visual design of old anime. - -Concrete revolutio is a 2015 anime that would fit into the later.";False;False;;;;1610206396;;False;{};ginumww;False;t3_ktrbqr;False;True;t3_ktrbqr;/r/anime/comments/ktrbqr/hey_anime_fans_i_was_wondering_what_do_you_define/ginumww/;1610244261;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Roboglenn;;;[];;;;text;t2_2tzu4yyq;False;False;[];;Aww Moraha is still keeping the mummified Kappa foot that was a gift from Gramps with her. How sweet is that.;False;False;;;;1610207446;;False;{};ginwiul;False;t3_kto98k;False;False;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/ginwiul/;1610245394;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Will33iam;;;[];;;;text;t2_4y5gyseh;False;False;[];;Kill la kill;False;False;;;;1610208102;;False;{};ginxqri;False;t3_ktm3yx;False;True;t3_ktm3yx;/r/anime/comments/ktm3yx/recommend_me_animes_below_30_episodes_that_are/ginxqri/;1610246141;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wrc-wolf;;;[];;;;text;t2_3nted;False;False;[];;This film is cursed through and through.;False;False;;;;1610208109;;False;{};ginxr5r;False;t3_ktnuit;False;False;t3_ktnuit;/r/anime/comments/ktnuit/due_to_shortened_movie_opening_hours_and_state_of/ginxr5r/;1610246149;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Disastrous_Platform;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/crew7;light;text;t2_1do125gc;False;False;[];;that’s how I feel;False;False;;;;1610208114;;False;{};ginxrjd;False;t3_ktmo3m;False;False;t3_ktmo3m;/r/anime/comments/ktmo3m/sauce_tanakakun_wa_itsumo_kedaruge/ginxrjd/;1610246155;3;True;False;anime;t5_2qh22;;0;[]; -[];;;14thArticleofFaith;;;[];;;;text;t2_13ldkn;False;False;[];;Not to mention the mobile game they're actively developing.;False;False;;;;1610208308;;False;{};giny4f3;False;t3_ktm9t3;False;False;t1_ginbm07;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/giny4f3/;1610246373;5;True;False;anime;t5_2qh22;;0;[]; -[];;;aniMayor;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aniMayor/;light;text;t2_oymny;False;True;[];;"> watching online legally BARELY supports the creators of at all - -What makes you think that? Or, conversely, what makes you think buying the manga or merch is superior?";False;False;;;;1610208686;;False;{};ginytqx;False;t3_ktn18q;False;True;t1_ginnyyc;/r/anime/comments/ktn18q/im_from_iran_and_i_wanna_watch_anime_legally_what/ginytqx/;1610246804;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PaulWalkerIV;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MasonCrosbysFoot;light;text;t2_11thw0;False;False;[];;"shit hits deep. still remains my favorite feature length anime. - -the manga is even more impressive too";False;False;;;;1610209040;;False;{};ginzhx9;False;t3_ktkzvp;False;True;t1_gimrftw;/r/anime/comments/ktkzvp/whats_the_saddest_anime/ginzhx9/;1610247206;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;Rebuild 3.0+1.0 is delayed again, to absolutely nobody's surprise.;False;False;;;;1610209100;;False;{};ginzlzs;False;t3_ktnuit;False;False;t3_ktnuit;/r/anime/comments/ktnuit/due_to_shortened_movie_opening_hours_and_state_of/ginzlzs/;1610247274;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ducati1011;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/johnjcg10;light;text;t2_985ib;False;False;[];;I am of the opinion that Konosuba will have another season. It’s too early to state that there won’t be.;False;False;;;;1610209310;;False;{};gio00jm;False;t3_ktm9t3;False;True;t1_gimwihp;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gio00jm/;1610247516;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeowlite;;;[];;;;text;t2_xyzpq;False;False;[];;Unfortunately yes they are just on youtube.;False;False;;;;1610209362;;False;{};gio045g;False;t3_ktn18q;False;True;t1_ginu3lw;/r/anime/comments/ktn18q/im_from_iran_and_i_wanna_watch_anime_legally_what/gio045g/;1610247582;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PoseidonUltor;;;[];;;;text;t2_23ok22mt;False;False;[];;naw white album 2 don’t need a second season, that ending wrapped it all up, where would the story even go?;False;False;;;;1610209551;;False;{};gio0ham;False;t3_ktm9t3;False;True;t1_gimxpaa;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gio0ham/;1610247833;1;True;False;anime;t5_2qh22;;0;[]; -[];;;atropicalpenguin;;MAL;[];;http://myanimelist.net/animelist/atropicalpenguin;dark;text;t2_vxkvm;False;False;[];;"That opening has me excited, looks like a good mix of the old and the new generation. The episode also seems to confirm that Rin is the mother of Towa and Setsuna. - -I wonder if we'll see Tamano as a recurring character, would be surprised if they just hired Inorin to have a one-episode role. - -They also got Maaya Sakamoto as Zero! I love her villains, so I'm looking forward to seeing her in action.";False;False;;;;1610209756;;False;{};gio0vgr;False;t3_kto98k;False;True;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gio0vgr/;1610248081;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thokongen;;;[];;;;text;t2_bsvbp;False;False;[];;Honestly relatable;False;False;;;;1610209923;;False;{};gio173m;False;t3_ktmo3m;False;True;t3_ktmo3m;/r/anime/comments/ktmo3m/sauce_tanakakun_wa_itsumo_kedaruge/gio173m/;1610248281;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheCrimsonDagger;;;[];;;;text;t2_g8gm3;False;False;[];;Pull a Highschool DxD and retcon the end of the first season.;False;False;;;;1610210171;;False;{};gio1oah;False;t3_ktm9t3;False;True;t1_gingua6;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gio1oah/;1610248581;1;True;False;anime;t5_2qh22;;0;[]; -[];;;slicer4ever;;;[];;;;text;t2_bgvkp;False;False;[];;"Ah yes, the joy of learning the plot 1 scene per episode. - -At least next week looks to be decent.";False;False;;;;1610210830;;False;{};gio2yg0;False;t3_kto98k;False;False;t1_ginbcgt;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gio2yg0/;1610249339;6;True;False;anime;t5_2qh22;;0;[]; -[];;;zz2000;;;[];;;;text;t2_nc21g;False;False;[];;"I find it strange that the Japanese side hasn't even formalised an official episode count for Yashahime until now, despite the whispers of 20+ episodes and that one Rakuten listing of 2 Bluray boxes for Yashahime. -https://books.rakuten.co.jp/rb/16605408/ - -I even recall an anime forum user who thinks given Yashahime's high ratings on Japanese TV, they might simply continue making more Yashahime for a later airdate.";False;False;;;;1610210946;;False;{};gio36ku;False;t3_kto98k;False;False;t1_gincij8;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gio36ku/;1610249491;7;True;False;anime;t5_2qh22;;0;[]; -[];;;SkadiPimpin;;;[];;;dark;text;t2_5ewmkwno;False;False;[];;My friend played the VN and he said that it gets even better. I wouldn’t mind it. It’s one of my favorite romance series.;False;False;;;;1610211083;;False;{};gio3g80;False;t3_ktm9t3;False;True;t1_gio0ham;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gio3g80/;1610249671;2;True;False;anime;t5_2qh22;;0;[];True -[];;;PoseidonUltor;;;[];;;;text;t2_23ok22mt;False;False;[];;oh so it does actually continue properly? i thought it would just be like filler with no real plot just to see the characters future. And i Agree it’s a super good romance series;False;False;;;;1610211138;;False;{};gio3k58;False;t3_ktm9t3;False;True;t1_gio3g80;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gio3k58/;1610249743;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SkadiPimpin;;;[];;;dark;text;t2_5ewmkwno;False;False;[];;Yeah, it’s a full on storyline for each girl according to him. He also told me that the last part of the VN is gonna get a fan translation soon. I’m probably gonna ask him to download it for me once it’s finished.;False;False;;;;1610211271;;False;{};gio3tgf;False;t3_ktm9t3;False;True;t1_gio3k58;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gio3tgf/;1610249908;2;True;False;anime;t5_2qh22;;0;[];True -[];;;RockoDyne;;MAL;[];;https://myanimelist.net/profile/RockoDyne;dark;text;t2_g4ooj;False;False;[];;"To call something retro, there needs to be some actual stylistic difference. Pixel art is retro. PS1 graphics are retro. PS2 graphics however are modern graphics that aren't as technically impressive. - -The same basic argument applies to anime. There's nothing particularly distinct about the bulk of 00's anime from what is modern. You have to go back to the 90's before there are substantial differences widely across the landscape of anime.";False;False;;;;1610211582;;False;{};gio4fbr;False;t3_ktrbqr;False;True;t3_ktrbqr;/r/anime/comments/ktrbqr/hey_anime_fans_i_was_wondering_what_do_you_define/gio4fbr/;1610250279;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrkGrn;;;[];;;;text;t2_79d43;False;False;[];;Just release it on streaming services cowards.;False;False;;;;1610211683;;False;{};gio4mn9;False;t3_ktnuit;False;True;t3_ktnuit;/r/anime/comments/ktnuit/due_to_shortened_movie_opening_hours_and_state_of/gio4mn9/;1610250400;2;True;False;anime;t5_2qh22;;0;[]; -[];;;limbo_2004;;;[];;;;text;t2_3c5fh2zj;False;False;[];;Yes there isn't enough material. The author is really slow;False;False;;;;1610211985;;False;{};gio57tq;False;t3_ktm9t3;False;False;t1_ginr36h;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gio57tq/;1610250769;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Spacemvn;;;[];;;;text;t2_jfzkyav;False;False;[];;Drifters. That show was so interesting and the season finale said returning in 20XX. That was 5 years ago but I’m still hopeful.;False;False;;;;1610212109;;False;{};gio5gpf;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gio5gpf/;1610250915;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Etereke32;;;[];;;;text;t2_11qhl2;False;False;[];;"Well, rip old OP, it was probably my favourite from last season... - -Finally, the plot seems to be starting to move forward. I have no problem with the episodic nature of the show, but it's nice to see it actually progressing. - -&#x200B; - -Edit: How is her smartphone still on full charge?";False;False;;;;1610212323;;False;{};gio5vyn;False;t3_kto98k;False;False;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gio5vyn/;1610251181;5;True;False;anime;t5_2qh22;;0;[]; -[];;;sir_aphim;;;[];;;;text;t2_7qpo130j;False;False;[];;I had heard that konosuba was made to promote the light novels and as such wasn't likely to get more seasons. (As it has already accomplished its job similar to how spice and wolf had 2 seasons and some VR thing recently but likely no more seasons) Although this was just what I heard a while back so i don't know for sure and it very well could get more seasons.;False;False;;;;1610212652;;False;{};gio6igc;False;t3_ktm9t3;False;True;t1_giny4f3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gio6igc/;1610251562;1;True;False;anime;t5_2qh22;;0;[]; -[];;;14thArticleofFaith;;;[];;;;text;t2_13ldkn;False;False;[];;True, unfortunately. Having read the light novels, I hope we at least get a S3. It's my favorite story arc.;False;False;;;;1610212795;;False;{};gio6sad;False;t3_ktm9t3;False;True;t1_gio6igc;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gio6sad/;1610251731;2;True;False;anime;t5_2qh22;;0;[]; -[];;;akoba15;;;[];;;;text;t2_638rml5e;False;False;[];;"If you have ever enjoyed a chill vibes anime in your life, watch this. - -It hits the ""casually falling asleep in class"" vibe better than anything out there lmao";False;False;;;;1610213281;;False;{};gio7qsc;False;t3_ktmo3m;False;False;t3_ktmo3m;/r/anime/comments/ktmo3m/sauce_tanakakun_wa_itsumo_kedaruge/gio7qsc/;1610252315;6;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;Most likely they can't just do it. Contracts and distribution deals may prevent it from showing up on streaming until 2022.;False;False;;;;1610213356;;False;{};gio7w79;False;t3_ktnuit;False;False;t1_gio4mn9;/r/anime/comments/ktnuit/due_to_shortened_movie_opening_hours_and_state_of/gio7w79/;1610252407;14;True;False;anime;t5_2qh22;;0;[]; -[];;;banned-for-no_reason;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/--Degenerate--;dark;text;t2_6pics463;False;False;[];;"First off if you are okay with reading manga , then I'd just recommend the manga. The art is pretty good and it tells the **complete** story in a cohesive manner. Not to mention that some details are cut from the anime. - - If not then ---> - -1) Season 1 - -2) [OVA](https://myanimelist.net/anime/18661/Kamisama_Hajimemashita_OVA) - -3) Season 2 - -4) [Kako-Hen OVA](https://myanimelist.net/anime/30709/Kamisama_Hajimemashita__Kako-hen) - -5) [Mini episode sequel to Kako-Hen](https://myanimelist.net/anime/33323/Kamisama_Hajimemashita__Kamisama_Shiawase_ni_Naru) - -I'm not too sure if they have a legal stream , so you'll probably just have to sail the seas.";False;False;;;;1610213524;;1610213921.0;{};gio87xx;False;t3_ktn97c;False;True;t3_ktn97c;/r/anime/comments/ktn97c/kamisama_kiss_special_episodes_ova/gio87xx/;1610252605;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ben99ny22;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ben99ny;light;text;t2_14rmpidg;False;False;[];;majority of anime is made just to promote the source material.;False;False;;;;1610213758;;False;{};gio8ofq;False;t3_ktm9t3;False;True;t1_gio6igc;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gio8ofq/;1610252885;2;True;False;anime;t5_2qh22;;0;[]; -[];;;y0gesh_y2k;;;[];;;;text;t2_6ww1swdm;False;False;[];;Indeed. This show is damn underappreciated;False;False;;;;1610214527;;False;{};gioa7hj;True;t3_ktmo3m;False;False;t1_gineeo6;/r/anime/comments/ktmo3m/sauce_tanakakun_wa_itsumo_kedaruge/gioa7hj/;1610253806;5;True;False;anime;t5_2qh22;;0;[]; -[];;;BenDTU;;;[];;;;text;t2_mbfrs;False;False;[];;Umaru-chan's second season didn’t really have much of a conclusion, felt like they just made episodes until they ran out. I finished the manga this week and they could absolutely make a third season that would cap out the series really went if they wanted to, doubt it’ll ever happen at this point.;False;False;;;;1610214550;;False;{};gioa954;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gioa954/;1610253832;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EquivalentGur3072;;;[];;;;text;t2_84bevo8q;False;False;[];;I mean most people who *would* make a fight ranking would love Naruto, but it still rubs me the wrong way to see genuine masterpieces like Meruem v Netero, other HxH fights, AOT fights, and many, many others below Naruto fights, in which surface-level entertainment is held as higher importance than subtler storytelling ideas like themes, symbolism, and character development.;False;False;;;;1610214581;;False;{};gioabfh;False;t3_ktmos6;False;True;t3_ktmos6;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gioabfh/;1610253870;0;True;False;anime;t5_2qh22;;0;[]; -[];;;y0gesh_y2k;;;[];;;;text;t2_6ww1swdm;False;False;[];;I vibed to this anime so much. More people need to check this out;False;False;;;;1610214597;;False;{};gioacjw;True;t3_ktmo3m;False;True;t1_gio7qsc;/r/anime/comments/ktmo3m/sauce_tanakakun_wa_itsumo_kedaruge/gioacjw/;1610253890;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CakeBoss16;;;[];;;;text;t2_9kc33;False;False;[];;Wave listen to me. I love the series but the way they adapted it cut out a huge arc and lots of other stuff. Also it had some of the funniest moments even if most of those arcs are not fully relevant.;False;False;;;;1610214794;;False;{};gioaqmz;False;t3_ktm9t3;False;False;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gioaqmz/;1610254116;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dontloseyourway1610;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Marinate1016;light;text;t2_4wegnp53;False;False;[];;"I probably like the second OP more than the first. Think the first ED is better than this one tho, still a bop. - -OP seems to imply Towa will go full demon at some point? That’s gonna be hype. - -Overall good first episode back, Riku’s pulling a lot of strings behind the scenes. I’m hype that next week we’re FINALLY getting some backstory about what happened to Kagome and Inuyasha.";False;False;;;;1610214889;;False;{};gioaxgc;False;t3_kto98k;False;True;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gioaxgc/;1610254236;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EquivalentGur3072;;;[];;;;text;t2_84bevo8q;False;False;[];;"It depends. I don't regret watching it because it gave me a decent idea of what a typical shonen looks like so I could compare it to the subversions of HxH or the storytelling of FMAB, but I'd never watch it again just for the story itself as I would for HxH or FMAB because Naruto doesn't even compare to those two. - -I'd say, yes, it's worth watching especially if you enjoy that kind of show, but I'm not planning on watching any show like that again.";False;False;;;;1610215166;;False;{};giobhlb;False;t3_ktnpcf;False;True;t3_ktnpcf;/r/anime/comments/ktnpcf/is_naruto_worth_watching/giobhlb/;1610254561;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fat_memer420;;;[];;;;text;t2_92d1d4kg;False;False;[];;How does that support creators? I can download anime from Iranian sites but I wanna support somehow;False;False;;;;1610215750;;False;{};giocnvr;True;t3_ktn18q;False;True;t1_gio045g;/r/anime/comments/ktn18q/im_from_iran_and_i_wanna_watch_anime_legally_what/giocnvr/;1610255256;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;I actually enjoyed the movie, too bad people just shit on it;False;False;;;;1610215971;;False;{};giod3ux;False;t3_ktnb9e;False;True;t1_gin1vv3;/r/anime/comments/ktnb9e/suggest_me_some_good_anime_movies/giod3ux/;1610255513;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Decker108;;MAL;[];;http://myanimelist.net/animelist/Decker_Haven;dark;text;t2_6cpnt;False;False;[];;Studios really should write in clauses about states of emergency in those contracts...;False;False;;;;1610215985;;False;{};giod4x6;False;t3_ktnuit;False;False;t1_gio7w79;/r/anime/comments/ktnuit/due_to_shortened_movie_opening_hours_and_state_of/giod4x6/;1610255529;5;True;False;anime;t5_2qh22;;0;[]; -[];;;itsicyybabyy_;;;[];;;;text;t2_27p3uxig;False;False;[];;Ikr after like 14 episodes of nothing making sense or having any of our questions answered ... 🤦🏻‍♀️😭;False;False;;;;1610216031;;False;{};giod8cc;False;t3_kto98k;False;False;t1_gin8pak;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/giod8cc/;1610255585;6;True;False;anime;t5_2qh22;;0;[]; -[];;;reseph;;MAL;[];;http://myanimelist.net/profile/Zenoxio/;dark;text;t2_37jka;False;False;[];;So do we know how many cour this is going to be?;False;False;;;;1610216887;;False;{};gioezf8;False;t3_kto98k;False;True;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gioezf8/;1610256651;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WisperG;;;[];;;;text;t2_v4hxy;False;False;[];;It's not delayed again, at least not yet. They just cancelled the early midnight screenings.;False;False;;;;1610217522;;False;{};giogaf1;False;t3_ktnuit;False;False;t1_ginzlzs;/r/anime/comments/ktnuit/due_to_shortened_movie_opening_hours_and_state_of/giogaf1/;1610257570;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Xxerox;;;[];;;;text;t2_cm5sv;False;False;[];;Miss the old ED;False;False;;;;1610217906;;False;{};gioh3ga;False;t3_kto98k;False;True;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gioh3ga/;1610258077;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheStrictlySeries;;;[];;;;text;t2_7urup3f;False;False;[];;Well, the new OP basically confirmed who Sesshomaru banged.;False;False;;;;1610218115;;False;{};giohj4l;False;t3_kto98k;False;False;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/giohj4l/;1610258343;9;True;False;anime;t5_2qh22;;0;[]; -[];;;k4r6000;;;[];;;;text;t2_3q0qar7q;False;False;[];;Bloom Into You. It ended mid-arc without any sort of conclusion whatsoever.;False;False;;;;1610218295;;False;{};giohx25;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/giohx25/;1610258578;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Willustrator_long;;;[];;;;text;t2_66x3xfpj;False;False;[];;Gotta reel people in;False;False;;;;1610218511;;False;{};gioidpj;False;t3_kto98k;False;False;t1_giod8cc;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gioidpj/;1610258855;4;True;False;anime;t5_2qh22;;0;[]; -[];;;FirstDagger;;;[];;;;text;t2_bqte6;False;False;[];;"> Nothing on one… little click on two… three is binding… - -Historical locks were not that complex. ;)";False;False;;;;1610218554;;False;{};gioigx1;False;t3_kto98k;False;True;t1_gingifi;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gioigx1/;1610258914;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Verzwei;;;[];;;;text;t2_cmzqb;False;False;[];;Funimation subbed and dubbed the main seasons but never bothered to license the OVAs, so if OP is in the US, there is no legal way to watch them.;False;False;;;;1610218576;;False;{};gioiii8;False;t3_ktn97c;False;True;t1_gio87xx;/r/anime/comments/ktn97c/kamisama_kiss_special_episodes_ova/gioiii8/;1610258938;1;True;False;anime;t5_2qh22;;0;[]; -[];;;itsicyybabyy_;;;[];;;;text;t2_27p3uxig;False;False;[];;tru;False;False;;;;1610219044;;False;{};gioji96;False;t3_kto98k;False;True;t1_gioidpj;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gioji96/;1610259498;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dyloniusfunk;;;[];;;;text;t2_smaq7;False;False;[];;I really want another season of Amagi. It was such a wonderful show.;False;False;;;;1610219671;;False;{};gioku50;False;t3_ktm9t3;False;True;t1_gimy2ak;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gioku50/;1610260237;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dyloniusfunk;;;[];;;;text;t2_smaq7;False;False;[];;Tenchi Muyo War on Geminar. The season ended hinting at bigger things happening and we never learned how Kenchi got to Geminar but I guess it didn’t perform well enough.;False;False;;;;1610219752;;False;{};giol0bv;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/giol0bv/;1610260335;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok_Session_8524;;;[];;;;text;t2_978ae09v;False;False;[];;Emilia is just pleasing to look at. Must be the colors lol;False;False;;;;1610219883;;False;{};giolacx;False;t3_ktkjs9;False;True;t3_ktkjs9;/r/anime/comments/ktkjs9/what_is_your_favorite_sexy_anime_girls/giolacx/;1610260487;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NightCupcake;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/NoodleGalaxy;light;text;t2_77fhp1wn;False;False;[];;Pre-2000;False;False;;;;1610220201;;False;{};giolysi;False;t3_ktrbqr;False;True;t3_ktrbqr;/r/anime/comments/ktrbqr/hey_anime_fans_i_was_wondering_what_do_you_define/giolysi/;1610260882;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gajaczek;;MAL;[];;http://myanimelist.net/profile/gaiacheck;dark;text;t2_7mhng;False;False;[];;Contract was probably written around 2007 with release of first movie. Back then Netflix was still selling DVDs.;False;False;;;;1610220761;;False;{};gion61p;False;t3_ktnuit;False;False;t1_giod4x6;/r/anime/comments/ktnuit/due_to_shortened_movie_opening_hours_and_state_of/gion61p/;1610261595;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Grunzelbart;;;[];;;;text;t2_7g2fd;False;False;[];;That's a nice word :3;False;False;;;;1610220790;;False;{};gion8bv;False;t3_ktmo3m;False;True;t1_gin4yxv;/r/anime/comments/ktmo3m/sauce_tanakakun_wa_itsumo_kedaruge/gion8bv/;1610261628;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Grunzelbart;;;[];;;;text;t2_7g2fd;False;False;[];;Shame it didn't get a second season. The translation are lagging 1.5 years behind as well :o;False;False;;;;1610220842;;False;{};gioncki;False;t3_ktmo3m;False;False;t1_gioa7hj;/r/anime/comments/ktmo3m/sauce_tanakakun_wa_itsumo_kedaruge/gioncki/;1610261692;6;True;False;anime;t5_2qh22;;0;[]; -[];;;SolDarkHunter;;;[];;;;text;t2_9o2ev;False;False;[];;They just couldn't resist getting one more delay in, could they?;False;False;;;;1610221106;;False;{};gionwje;False;t3_ktnuit;False;False;t3_ktnuit;/r/anime/comments/ktnuit/due_to_shortened_movie_opening_hours_and_state_of/gionwje/;1610261993;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Roles78901;;;[];;;;text;t2_8d5yvxy8;False;False;[];;Thank you, I forgot to put shield hero up there but I can try re zero again(I’ve tried it and got distracted with other anime) but thank you so much for the recommendation!;False;False;;;;1610221264;;False;{};gioo8df;True;t3_ktnkaj;False;True;t1_ginqrlx;/r/anime/comments/ktnkaj/anyone_got_some_good_isekai_anime/gioo8df/;1610262189;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Flytanx;;;[];;;;text;t2_m0mqa;False;False;[];;Same. I've had it favorites for years but just never get to it. I still re-watch the anime sometimes too;False;False;;;;1610221479;;False;{};giooo36;False;t3_ktm9t3;False;False;t1_gin1sjv;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/giooo36/;1610262443;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nokyinaabarai;;;[];;;;text;t2_9cgvk4s8;False;False;[];;"This episode was JUST what I needed and I’m so glad we are finally moving forward in the series. - -Riku definitely had something to do with towa and setsunas misfortune. Though I still wonder why he has such an interest in towa specifically. - -It seems like they may be painting sesshomaru put to be a villain which I hate bc he’s my favorite, but it seems we will get all the answers we’ve been dying to know in next weeks episode - -I thought towa was gonna go full demon and I was getting so hyped up lol - -Overall this was (for me) one of the best episodes so far but we still have 10 more episodes left and I have high hopes it’ll only get better from here.";False;False;;;;1610221485;;False;{};gioooif;False;t3_kto98k;False;True;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gioooif/;1610262450;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> because Crunchyroll ain’t giving them any. - -CR and other sites pay kickbacks";False;False;;;;1610222414;;False;{};gioqkt7;False;t3_ktn18q;False;False;t1_ginnyyc;/r/anime/comments/ktn18q/im_from_iran_and_i_wanna_watch_anime_legally_what/gioqkt7/;1610263489;1;True;False;anime;t5_2qh22;;0;[]; -[];;;darksady;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Iskanndar;light;text;t2_ktcus;False;False;[];;have u read the manga? i read recently i was disapointed, started great but the last half was shit imo.;False;False;;;;1610222569;;False;{};gioqw20;False;t3_ktm9t3;False;True;t1_gimwme5;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gioqw20/;1610263654;1;True;False;anime;t5_2qh22;;0;[]; -[];;;darksady;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Iskanndar;light;text;t2_ktcus;False;False;[];;yes;False;False;;;;1610222609;;False;{};gioqyvn;False;t3_ktm9t3;False;False;t1_gingpbh;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gioqyvn/;1610263695;3;True;False;anime;t5_2qh22;;0;[]; -[];;;rks1603;;;[];;;;text;t2_8gaznj22;False;False;[];;Nisekoi, classroom of the elite, and magi;False;False;;;;1610222959;;False;{};gioroea;False;t3_ktm9t3;False;False;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gioroea/;1610264106;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Roamer21XX;;;[];;;;text;t2_q9cr1;False;False;[];;Since the author basically had to write a separate ending for each of the Bokuben girls, I'd wanna see another season but have it made like Amagami SS;False;False;;;;1610223095;;False;{};giory61;False;t3_ktm9t3;False;True;t1_gingua6;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/giory61/;1610264261;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The-Gigagod;;;[];;;;text;t2_3ieldijj;False;False;[];;It sounds like your someone who just blindly hates Naruto and thinks it’s surface level. I’ll defend my position whenever man, but if you think AOT and HxH have more “deep” fights then Naruto your wrong, but they are both great anime. I’m only being true to the facts, and the fact is that Naruto makes the best fights. I mean, my favorite anime, my number one, is cowboy bebop.;False;False;;;;1610223367;;False;{};giosjm8;True;t3_ktmos6;False;True;t1_gioabfh;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/giosjm8/;1610264594;2;True;False;anime;t5_2qh22;;0;[]; -[];;;melbottjer;;;[];;;;text;t2_2evawnuu;False;False;[];;idk, to me it seems like sesshomaru is testing them to make sure they survive and get stronger. if he and inuyasha lost to the cataclysm that came their way maybe it’s something sesshomaru has to do to make sure the girls are strong enough to kill whoever the villain may be. i’m not entirely convinced kirinmaru is the big villain;False;False;;;;1610223498;;False;{};giosuqv;False;t3_kto98k;False;True;t1_ginpssu;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/giosuqv/;1610264761;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lucciolaa;;;[];;;;text;t2_qictp;False;False;[];;I'm willing to buy that, but I absolutely don't believe he doesn't care for his daughters.;False;False;;;;1610224431;;False;{};giouqdz;False;t3_kto98k;False;True;t1_giosuqv;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/giouqdz/;1610265774;2;True;False;anime;t5_2qh22;;0;[]; -[];;;twigboy;;;[];;;;text;t2_4caar;False;False;[];;"Amagi so much. - -I can't get my fix of mascots behaving badly anywhere else.";False;False;;;;1610224597;;False;{};giov2xu;False;t3_ktm9t3;False;True;t1_gioku50;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/giov2xu/;1610265971;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ZapsZzz;;;[];;;;text;t2_g2hnymx;False;False;[];;"OMG looks like second half of the season, we've got new OP and ED, and straight off the bat getting more back stories of the 2 girls past and the next episode for what happened to the old cast. - -Looking at the post count here looks like a lot has already stopped the show it missed watching it because of the break last week. Hopefully more come back!";False;False;;;;1610224772;;False;{};giovgjq;False;t3_kto98k;False;True;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/giovgjq/;1610266173;1;True;False;anime;t5_2qh22;;0;[]; -[];;;amanpanda;;;[];;;;text;t2_fvoen;False;False;[];;I've never heard the English dub. This was a mistake for my ears.;False;False;;;;1610224796;;False;{};gioviam;False;t3_ktpm81;False;True;t3_ktpm81;/r/anime/comments/ktpm81/akuma_ehonda_makes_and_appearance_cautious_hero/gioviam/;1610266199;0;True;False;anime;t5_2qh22;;0;[]; -[];;;melbottjer;;;[];;;;text;t2_2evawnuu;False;False;[];;yeah i believe he cares for them but knows he can’t kill kirinmaru, thanks to what the tree of ages led on. that they have to be stronger and sesshomaru is testing them, making them stronger, having them figure out their abilities. next episode looks promising;False;False;;;;1610224873;;False;{};giovnxe;False;t3_kto98k;False;True;t1_giouqdz;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/giovnxe/;1610266284;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZapsZzz;;;[];;;;text;t2_g2hnymx;False;False;[];;">Place your bets! (1) doesn't care; (2) knows they'll be fine because they're his kids, so of course they're unbeatable; (3) thinks if they survive, they're worthy, and it not, then not; (4) other - -My bet is on 4 - which is a combination of 2 and 3, plus probably someone is being held hostage (Inuyasha or Rin).";False;False;;;;1610224931;;False;{};giovs66;False;t3_kto98k;False;True;t1_gingifi;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/giovs66/;1610266346;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Wakanim? It's across Europe;False;False;;;;1610225287;;False;{};giowiip;False;t3_ktmjnz;False;True;t1_gimzj3x;/r/anime/comments/ktmjnz/where_do_i_watch_db/giowiip/;1610266745;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Medic-chan;;MAL;[];;https://myanimelist.net/profile/Medic_chan;dark;text;t2_g28n6;False;False;[];;"No second season, fan translations are slow, no official English manga release, and the manga got axed less than 3 years after the anime finished airing 13 volumes in. - -It was just never really that popular in Japan. Weird.";False;False;;;;1610225778;;False;{};gioxj3e;False;t3_ktmo3m;False;False;t1_gioncki;/r/anime/comments/ktmo3m/sauce_tanakakun_wa_itsumo_kedaruge/gioxj3e/;1610267300;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;True;[];;"Very early 2000's is how I would probably cut it off. I feel like we really started to get that ""modern"" feel in anime visual around 2006 with shows like Haruhi and Code Geass, so it's around that time I would cut off. I like to call 2005 and earlier ""retro"" while 06-08 almost feels like a transition period to modern anime to me (where 09 and the 2010's feels pretty distinctly modern). I wouldn't blame people for saying that it's wrong to call the 2000's retro though, but I feel like the ""digi-paint"" look of the early 2000's and anime's awkward transition to digital tools gives shows of the time a distinctly retro look that I just can't ignore. At the very least 2009 is way too recent to be considered retro.";False;False;;;;1610226043;;False;{};gioy2f7;False;t3_ktrbqr;False;True;t3_ktrbqr;/r/anime/comments/ktrbqr/hey_anime_fans_i_was_wondering_what_do_you_define/gioy2f7/;1610267584;1;True;False;anime;t5_2qh22;;0;[]; -[];;;darkmacgf;;;[];;;;text;t2_11ybmk;False;False;[];;*Technically* that's an 8 hour delay.;False;False;;;;1610226667;;False;{};giozbe1;False;t3_ktnuit;False;False;t1_giogaf1;/r/anime/comments/ktnuit/due_to_shortened_movie_opening_hours_and_state_of/giozbe1/;1610268274;12;True;False;anime;t5_2qh22;;0;[]; -[];;;axlorg8;;;[];;;;text;t2_1555be;False;False;[];;Personally, I didn't really care too much about the twins bond because it seemed too forced (obviously because Setsuna forgot Towa), but now you can tell they've really bonded. I enjoy it.;False;False;;;;1610226863;;False;{};giozq5w;False;t3_kto98k;False;True;t1_ginbcgt;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/giozq5w/;1610268491;2;True;False;anime;t5_2qh22;;0;[]; -[];;;djanulis;;;[];;;;text;t2_c1sjv;False;False;[];;I really hope that if Both Inuyasha and Sesshomaru are the catalysts of everything happening in this series, that Moroha starts getting treated like a main character, cause right now it seems like she is just a comedic relief side character for the Sessho twins.;False;False;;;;1610227031;;False;{};gip03ar;False;t3_kto98k;False;True;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gip03ar/;1610268688;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aniMayor;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aniMayor/;light;text;t2_oymny;False;True;[];;"It is interesting that of a 100-entry-long ""best of the best"" list would end up having only 18 different works on it. What sort of selection or exposure biases do you think were at play in making your choices? Or, if you don't think there were significant biases, what are your thoughts on why so many selections all came down to the same works?";False;False;;;;1610227799;;False;{};gip1rzv;False;t3_ktmos6;False;True;t3_ktmos6;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gip1rzv/;1610269606;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FatherDotComical;;;[];;;;text;t2_2w4u4081;False;False;[];;Hideaki warned y'all not to the lewd the pilots, now nobody gets in the robot.😔;False;False;;;;1610227878;;False;{};gip1xqr;False;t3_ktnuit;False;False;t1_gin4d4s;/r/anime/comments/ktnuit/due_to_shortened_movie_opening_hours_and_state_of/gip1xqr/;1610269711;24;True;False;anime;t5_2qh22;;0;[]; -[];;;EquivalentGur3072;;;[];;;;text;t2_84bevo8q;False;False;[];;"Then defend your position. - -Naruto has flashy moments and speeches, a meh representation of morals (tries to define good and bad in a definite manner, which is a philosophy I and most other people disagree with), and tells rather than shows nearly every theme present besides those in the Sasuke vs Naruto of the original while not even developing most of these themes. - -Hunter x Hunter, on the other hand, has dozens of fully developed themes within just the Meruem v Netero fight including a criticism of the very idealism that, for lack of a better term, infests every theme present in Naruto. - -Edit: It is not a fact that Naruto makes the best fights because ""best"" is extremely subjective. What is a fact is that Naruto's themes are lacking when compared to those of HxH.";False;False;;;;1610228077;;False;{};gip2c2l;False;t3_ktmos6;False;True;t1_giosjm8;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gip2c2l/;1610269928;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Grunzelbart;;;[];;;;text;t2_7g2fd;False;False;[];;"Yeah. I heard it analyzed by someone as the comedic timing being very ""western"" in a sense? - -Which I feel I'd agree with, it does feel rather different from most anime comedy. Couldn't explain why myself, but that might explain why it wasn't popular. it's darn shame cause it's a total gem imo.";False;False;;;;1610228198;;False;{};gip2kug;False;t3_ktmo3m;False;False;t1_gioxj3e;/r/anime/comments/ktmo3m/sauce_tanakakun_wa_itsumo_kedaruge/gip2kug/;1610270063;6;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkAngel6669;;;[];;;;text;t2_16nk8e;False;False;[];;Watamote;False;False;;;;1610228668;;False;{};gip3ibs;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gip3ibs/;1610270576;2;True;False;anime;t5_2qh22;;0;[]; -[];;;iamtennyo_;;;[];;;;text;t2_5i51952x;False;False;[];;Wait..judging from the previous comments...Rin is the one in the tree? I thought it was Kagome in the tree...They both look so similar haha! Super excited for the next ep!!!;False;False;;;;1610228780;;False;{};gip3q7g;False;t3_kto98k;False;True;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gip3q7g/;1610270697;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SarcasticBitch94;;;[];;;;text;t2_7s3purps;False;False;[];;Ur point on bringing items back to the feudal era, I agree. It’s strange though because Kagome was always bringing a shit ton of stuff from the present and now Towa is doing the same.. people were very ignorant then and maybe consider her a demon or a witch playing tricks on them. But still I think it should affect the future a bit.;False;False;;;;1610228966;;False;{};gip43mh;False;t3_kto98k;False;True;t1_ginpssu;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gip43mh/;1610270903;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The-Gigagod;;;[];;;;text;t2_3ieldijj;False;False;[];;"Well, I’d like to think I’m pretty good as an anime watcher, I’ve seen a total of 80 ranging from the classics to the modern seasonal. - -Personally, something fantastic like Code Geass, or The Promised Neverland wouldnt really make it on the list. 100 sounds big but I actually had to cut so many great fights. And it’s not like Toradora or Konosuba or anything like that is gonna make it. - -If a show can do a fight really well, good chance it can do multiple very well, hence this list";False;False;;;;1610229216;;False;{};gip4le4;True;t3_ktmos6;False;True;t1_gip1rzv;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gip4le4/;1610271189;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PhrmChemist626;;;[];;;;text;t2_5ed61sio;False;False;[];;The first ending theme is a BOP;False;False;;;;1610229266;;False;{};gip4oww;False;t3_kto98k;False;False;t1_gingifi;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gip4oww/;1610271242;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SarcasticBitch94;;;[];;;;text;t2_7s3purps;False;False;[];;"I hope that VIZ smartens up and changes the viewership they planned for. 90% of the viewership is OG Fans from the original. I think they are really softening up scenes because they think little kids are watching. Give us some in depth violence and gore. Inuyasha wasn’t afraid to get his enemies blood on his hands to save and protect that which is important to him. - -Edit: meant to write sunrise not viz!";False;False;;;;1610229300;;1610253916.0;{};gip4ras;False;t3_kto98k;False;True;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gip4ras/;1610271277;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaxsP;;;[];;;;text;t2_cf3fz;False;False;[];;We all know Sesshomaru is just the biggest tsundere there could be.;False;False;;;;1610229972;;False;{};gip63dw;False;t3_kto98k;False;False;t1_gioooif;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gip63dw/;1610272007;4;True;False;anime;t5_2qh22;;0;[]; -[];;;fraid_so;;;[];;;;text;t2_oeyx4;False;False;[];;Ah okay. Well, they should have it right?;False;False;;;;1610230201;;False;{};gip6k6c;False;t3_ktmjnz;False;True;t1_giowiip;/r/anime/comments/ktmjnz/where_do_i_watch_db/gip6k6c/;1610272262;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The-Gigagod;;;[];;;;text;t2_3ieldijj;False;False;[];;"I see what you’re saying, and despite your critique I consider Meruem vs Netero high on the list(you’d be surprised what I needed to cut)... - -Theme wise, it’s certainly well done. Blurring the lines of why is good and what is bad. Its brilliant, but I’m not ranking JUST writing, I’m ranking fights, and so let’s go over the seven categories comparing it to Sakura/Chiyo vs Sasori, an early fight in Shippuden... - -1. Animation? The sakuga in Naruto fights is insane and flows so well - -Check this out: https://youtu.be/voWO6o4dcH0 -(It’s edited horribly in this clip, and cuts about two thirds of it out, but you can get an idea) - -2. Choreography? I’m sorry but Netero and Meruem is, tactically, a one piece fight, throwing fists in a flashy(very cool) manner. Naruto takes this one easily. - -3. Editing? Again, this fight was tackled by some incredible story tellers who show rather then tell and make sure a fight featuring over 113 entities makes sense specially, with great pacing - -4. Set up and context? This one is more of a debate to be sure, buts it’s not like Meruem and Netero have any connection whatsoever, but this naruto fight is both the cumulative climax of the arc, but also the series as payoff for sakuras character and an introduction to the power of the akasuki - -5. Characters? The powerset engagement in this fight is next to none, the puppet army is an extreme melt unqiue expierence to watch and how it matches up against a similar puppet user and the brute Sakura is super good. That’s odd that even count several puppets that appeared earlier in the fight like one that uses massive blocks of metal and another as a poison turtle. The stakes are also very high in this fight. - -6. Themes and Hype? Well hype was, which is important, this one really takes the cake with this phenomenal swell of action and music. Themes? Sure. I can give this one to Meruem via Netwro which I personally love, however don’t go writing off Naruto. To imply naruto is childish with a weak understanding of themes is just insulting. In this fight, it is the physical representation of generations and parenting. I could explain that further bits it’s still very enjoyable and quite emotional. - -7. Soundtrack and Music. That first track is called Emergence of Talents, look it up and give it a listen, it’s an extremely good OST that may be unbeatable in the fight department. And naruto is notorious for its crisp hits and impacts. - -All in all, I believe your not looking at it as a fight and I also believe you are underestimating naruto - -If I was ranking arcs, the chimera ant arc(the best HxH arc fight me) would rank about this first Shippuden one, but when viewing fights this climax is second to only a few.";False;False;;;;1610230360;;False;{};gip6vxq;True;t3_ktmos6;False;True;t1_gip2c2l;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gip6vxq/;1610272436;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;depends on the region once again;False;False;;;;1610230434;;False;{};gip71fv;False;t3_ktmjnz;False;False;t1_gip6k6c;/r/anime/comments/ktmjnz/where_do_i_watch_db/gip71fv/;1610272526;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dim3tapp;;MAL;[];;http://myanimelist.net/profile/dim3tapp;dark;text;t2_4bmuz;False;False;[];;/r/anime_irl;False;False;;;;1610230508;;False;{};gip76u3;False;t3_ktmo3m;False;True;t3_ktmo3m;/r/anime/comments/ktmo3m/sauce_tanakakun_wa_itsumo_kedaruge/gip76u3/;1610272609;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nierautomata28;;;[];;;;text;t2_7nvdw3ba;False;False;[];;Devil is a Part-timer;False;False;;;;1610230510;;False;{};gip76zp;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gip76zp/;1610272612;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aniMayor;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aniMayor/;light;text;t2_oymny;False;True;[];;"Frankly, 80 anime is not very much at all when you're positing that ""This is the best of the best."" Perhaps you should market your list more along the lines of ""Best I've seen so far"" ? - -It's quite surprising to see a ""best of the best"" fight list that is 100 long and none of the Dragon Ball franchise, Ashita no Joe, Hajime no Ippo, Moribito, the Fate franchise, FMA, Samurai Champloo, Kekkai Sensen, Soul Eater, the Monogatari franchise, Yozakura Quartet, the PreCure franchise, Gintama, Bleach, or Yu Yu Hakusho are on it. - -I'm not saying I think all of those deserve to be on it, but they're all popular works that frequently get referenced whenever the topic of great fights come up. It's pretty surprising to even see all of those absent in favour of only 18 works, let alone a ton of not-widely-popular series that nevertheless had excellent fights. - -But anyways, since you mention classics and how many you had to cut let's limit this to just the most well-known options. I am indeed interested in your thoughts on how the most loved, most classic fights in all of anime like, say, Joe vs Rikiishi, Joe vs Mendoza, or Goku vs Vegeta didn't measure up against these listings. - -> Personally, something fantastic like Code Geass, or The Promised Neverland wouldnt really make it on the list. - -Why not? You have a volleyball match that was spread over 7 episodes counting as a ""fight"" here, so why shouldn't something fantastic count? Really, if you're going to include that then everything from Hyūma vs Mitsuru to Redline's final race to Chihayafuru's karuta battles to the TTGL finale should be a valid consideration.";False;False;;;;1610232596;;False;{};gipbe4n;False;t3_ktmos6;False;True;t1_gip4le4;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gipbe4n/;1610274903;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EquivalentGur3072;;;[];;;;text;t2_84bevo8q;False;False;[];;"My problem with a lot of this is that it's surface level. Naruto has some of the best surface-level fights out there, but it's just not even on the same planet as the significantly higher-level writing of Togashi, Isayama, and other writers. I'll respond to your list of reasons one-by-one. - -1.Extremely subjective and a matter of little importance in my opinion, but HxH definitely has better animation in my opinion. This is possibly the most surface-level reason you could've brought up. Personally, I'd take [this](https://www.youtube.com/watch?v=SHJD9XFO1es) animation over the video you linked without even thinking twice about it, but again, it's subjective, and neither of us will be able to prove the other wrong. - -&#x200B; - -2. Choreography is a great way for a writer to subtly convey deeper meanings about a story, and Naruto does not take advantage of this. It looks good and flows well on the surface level. That is what I have to say about Naruto's choreography. That's it. Nothing else. - -However, for the link I pasted above, go to 4:07. Netero is portrayed as superior to Meruem in multiple ways (morally, thematically, and in surface-level combat ability) through their placements on-screen. - -Take the end of the fight, when Netero commits suicide in an effort to kill Meruem (10:57). There's a reason Meruem goes up rather than sideways. On the surface level, the simplest way to get away from the blast is to go directly away from Netero, which would've been sideways, however he goes up, which is of thematic importance, representing his rising above the inconsistent morals of Netero (who represents humanity). - -These two choreographies are incomparable because one is focused upon the surface level while another is focused upon the deeper level, and by word of most authors and critics, the deeper level of writing should be held in higher importance, especially when the skill of the writing is so different. - -&#x200B; - -3. I can't really respond to this because it has a fair bit of faulty logic. Of course it showed the primary plot of the fight, but the problem is that there wasn't anything *beyond* the primary plot. The editing is more skillful than that of Netero v Meruem, but that doesn't change the *vastly* different levels of writing (including editing) of the two fights. Take 10:45, the moment when Netero stabbs himself. It mimics the previous action of his punch through the editing, which has thematic implications. The editing in the puppets fight is, while impressive, thematically dry. - -&#x200B; - -4. Oh boy. I could write multiple essays on the Meruem v Netero fight in terms of the context, but I'll keep it short here. From the perspective of a first-time viewer, the CAA has been largely about humans and monsters and their interactions with each other. I'll relate this to the emphasis on Meruem's name. - -In the arc, a name is seen as a primarily human concept. It represents a level of humanity that has not been achieved by ""the king"" yet. Meruem shows his desire to reach this humanity, partly driven by Komugi, and partly by his own curiosity. This is different from the previous fights of the arc, in which during the fights, many of the ants show their monstrousness rather than their human sides, however, in the episode before this fight, Gon is clearly showing signs of being a monster himself. This foreshadowing is important to the context of the fight, in which Meruem's and Netero's roles are flipped from previous encounters between the ants and humans. I could go much deeper into the thematic and symbolic value of Meruem's name within the fight, but I think this proves my point. - -&#x200B; - -5. You're devaluing ""character"" to fighting technique, which is *extremely* surface-level, even when only comparing fights. - -I doubt you'll find many people believing that any of the three of Chiyo, Sakura, or Sasori is a better character, on any level of the storytelling, surface-level or deeper, than either Netero or Meruem, so I'm just gonna leave this one alone. - -If you do believe that any of the three are better than Meruem or Netero, I suggest you check out [this video](https://www.youtube.com/watch?v=6Vhp65bgKOo) which is about Netero. - -&#x200B; - -6. The fact that you categorized themes with ""hype"" shows that you don't really understand the importance of themes within storytelling. In a good story, there isn't a frame or word that goes by without at least one theme being intertwined in it. Themes are influenced by each of the previous five categories as well as influencing them back. To me and many other people, ""hype"" plays very little role in terms of how good a fight is. - -&#x200B; - -7. This is extremely subjective again. The soundtrack in the puppets fight, for the first part, is intended to flow with the choreography, which works well. However, for the rest of the fight, the soundtrack is not impactful in any manner (surface level or deeper level). - -Take the soundtrack at 3:38. It sounds a lot like the Naruto soundtracks, but it's on a different level of writing because of the context in which it is used. It's used as the ""underdog mentality"" as it is in Naruto, but for that of human existence in comparison to a creature portrayed as superior rather than just ""underdog mentality"" just for the sake of it. A few seconds after that, ""The Last Mission"" begins, which heightens the tension and reminds you of the last fights in which it has been used. - -&#x200B; - -TL;DR: The themes in Naruto are lacking when compared to those of HxH, and it shows in the seven areas you listed. You were surface-level in your comparison of the shows, which is regarded as elementary by most writers and critics. I'm not saying you *have* to enjoy Meruem v Netero more than Chiyo/Sakura v Sasori, but from a writing perspective, the two fights are on different planes of existence because of Togashi's masterful use of, well, everything, culminating in dozens of fully developed themes rather than the lacking themes of Naruto.";False;False;;;;1610233895;;False;{};gipdxlx;False;t3_ktmos6;False;False;t1_gip6vxq;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gipdxlx/;1610276272;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Real_life_Zelda;;;[];;;;text;t2_55sn2jkg;False;False;[];;"Noragami desperately needs a 3rd season, the manga is sooooo good. -Also Yona of the Dawn, another manga that I love.";False;False;;;;1610233910;;False;{};gipdyo9;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gipdyo9/;1610276287;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Steve_Gray;;;[];;;;text;t2_57o1dyer;False;False;[];;"more episodes than i thought neat here is my review [https://www.youtube.com/watch?v=ADhrjNeXOdc&t=336s](https://www.youtube.com/watch?v=ADhrjNeXOdc&t=336s)";False;False;;;;1610234705;;False;{};gipfhya;False;t3_kto98k;False;True;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gipfhya/;1610277123;1;True;False;anime;t5_2qh22;;0;[];True -[];;;The-Gigagod;;;[];;;;text;t2_3ieldijj;False;False;[];;"I was saying the best moments of those shows aren’t really fights. And, you should read the notes. I havnt seen dragon ball or the other anime you’ve listed, and I clarified this is my ranking so it’s open to change as I watch more - -(I have seen samurai Champloo btw, it’s one of my favorite anime of all time)";False;False;;;;1610234970;;False;{};gipg021;True;t3_ktmos6;False;True;t1_gipbe4n;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gipg021/;1610277392;1;True;False;anime;t5_2qh22;;0;[]; -[];;;B4rberblacksheep;;;[];;;;text;t2_b7hol;False;False;[];;Really? Sounds pretty decent to me;False;False;;;;1610235029;;False;{};gipg40s;False;t3_ktpm81;False;True;t1_gioviam;/r/anime/comments/ktpm81/akuma_ehonda_makes_and_appearance_cautious_hero/gipg40s/;1610277453;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WisperG;;;[];;;;text;t2_v4hxy;False;False;[];;Touche. Take your upvote.;False;False;;;;1610236136;;False;{};gipi7gt;False;t3_ktnuit;False;True;t1_giozbe1;/r/anime/comments/ktnuit/due_to_shortened_movie_opening_hours_and_state_of/gipi7gt/;1610278594;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The-Gigagod;;;[];;;;text;t2_3ieldijj;False;False;[];;"You sound quite pretentious, and this idea of surface level is quite flawed. You are watching a show, these fights do not purely exist within the hindsight of our experiences and to imply I don’t understand or revel in the complex themes of this fight is silly. - -The way a fight flows, sounds, paces, engages, and gives rise to emotion such as hype is very important. Most of your points are honestly narrowminded and ignorant. - -Not only do I disagree with the premise that this fight, and naruto in general, lacks themes and symbolism and can’t compare to HxH. This fight does have plenty of symbolism, themes, and ideology at play. - -And again, these are fights, much of what you say isn’t even particular to the fight itself, which I have said multiple times is incredible, but falls short of this fight from Naruto. - -Also, I divided it into categories for a reason. You are finding symbolism(and honestly it’s a stretch enough that I could apply similar things to every scene of the naruto fight) in every category, but that’s not what every category stands for. - -Themes and Symbolism are in categories 5 and 6, important yes, but editing and choreography doesn’t cover it. While there may be intent behind certain choreography, and to imply this intent is not found in naruto is absolute appalling, that intent is not what that category analyzes. - -You clearly love this fight, I do too, however it lacks many aspects in a fight WHEN COMPARED to this one(because obviously it’s quite good standalone), and only really gives it a run for its money in the themes, symbolism, and ideology of characters. But even at that, this Naruto fight is strong in those categories too, I even prefer it in a few specific thematic fields. - -And this doesn’t even cover emotional weight and character context. - -As for animation and soundtrack, yes I’d heavily argue naruto wins. It appears you just like the style of HxH more, but the animation I will argue is objectively better, but regardless, - -Example: I have dropped a series called Re:Creators, which had 3 episodes in, plenty of depth and themes about how our creations define us and how we—-etc. you get it. Plenty of themes, symbolism, in sure it’s great IN HINDSIGHT. But it is very boring. On these surface level, it fails in nearly every field, which can honestly sometimes take more talent to nail them the subliminal messaging. - - -TLDR: something cannot stand alone with just depth, and to imply naruto lacks this depth is ridiculously ignorant and elitist. I am ranking fights here, not arcs.";False;False;;;;1610236141;;False;{};gipi7ss;True;t3_ktmos6;False;True;t1_gipdxlx;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gipi7ss/;1610278599;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aniMayor;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aniMayor/;light;text;t2_oymny;False;True;[];;"> I was saying the best moments of those shows aren’t really fights. - -Extraordinary claims require extraordinary evidence. - -> And, you should read the notes. I havnt seen dragon ball or the other anime you’ve listed - -Right, but a basic google search would have lead you to them. The topic of ""what's the best fight(s) in anime"" is hardly a new thought, people loooooove debating it. - -So isn't it a bit disingenuous of you to say ""Here's the best 100 fights in all of anime"" while just ignoring the huge number of seminal works that you haven't seen? At the very least you could have gone and looked up the 50 most-frequently-referenced fights that you hadn't seen from the plethora of similar r/anime and forum threads, even if you don't want to watch those entire shows.";False;False;;;;1610236176;;False;{};gipia47;False;t3_ktmos6;False;True;t1_gipg021;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gipia47/;1610278633;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The-Gigagod;;;[];;;;text;t2_3ieldijj;False;False;[];;"What? And then rank fights I havnt seen? I’ve advertised it as “My Top 100” and I’ve clarified what actions series I have yet to see...so...cmon bruh - -Also, what promised neverland “fight” should have made the list?";False;False;;;;1610236548;;False;{};gipizsv;True;t3_ktmos6;False;True;t1_gipia47;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gipizsv/;1610279017;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EasilyDelighted;;;[];;;;text;t2_8t8z8;False;False;[];;He reincarnated in a wholesome universe after leaving AoT's world.;False;False;;;;1610236855;;False;{};gipjl0i;False;t3_ktmo3m;False;True;t1_ginbe5c;/r/anime/comments/ktmo3m/sauce_tanakakun_wa_itsumo_kedaruge/gipjl0i/;1610279340;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EquivalentGur3072;;;[];;;;text;t2_84bevo8q;False;False;[];;"I have absolutely no response besides surprise at the fact that you either didn't read what I typed yet decided to respond with a somewhat long response, that you didn't understand what I typed, which I think I laid out quite simply, or your refusal to admit that you are wrong, or maybe your inability to formulate an effective argument using examples. - -You gave no examples of the themes at play. You just said words without backing it up. - -I'm reading your response trying to come up with one of my own, but I'm just in awe at the number of sentences that I had either already talked about in the previous response or just make no logical sense whatsoever. - -I probably shouldn't have responded to this in the first place, as many people who would make a ""100 top fights list"" would be in love with Naruto as, again, those types of people tend to value surface level above the subtler aspects of storytelling, hence our views are incompatible in terms of being able to effectively argue with each other. - -Edit: I mean the fact that you devalued character to ""combat abilities"" alone shows how elementary your understanding of storytelling is. That sentence was not intended to be pretentious but realistic.";False;False;;;;1610237929;;False;{};gipln9j;False;t3_ktmos6;False;True;t1_gipi7ss;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gipln9j/;1610280493;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rustic_Professional;;;[];;;;text;t2_pajnr;False;False;[];;"So we've got the mysterious Zero, a Man on Fire, and a band of mercenaries who are already demons. This is starting to sound like a Hideo Kojima anime by Hideo Kojima ^(Hideo Kojima). - -It really was a weak episode, but the preview looks great.";False;False;;;;1610238175;;False;{};gipm4ip;False;t3_kto98k;False;True;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gipm4ip/;1610280754;1;True;False;anime;t5_2qh22;;0;[]; -[];;;XxMemeStar69xX;;;[];;;;text;t2_2wkyq0u;False;False;[];;Damn that sucks.;False;False;;;;1610238360;;False;{};gipmhco;False;t3_ktrgan;False;True;t1_gipfepd;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipmhco/;1610280952;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lildudefromXdastreet;;;[];;;;text;t2_1w7bygih;False;False;[];;Kenichi. I read some of the manga and thing it would’ve been awesome to see some of it adapted;False;False;;;;1610238600;;False;{};gipmxwb;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gipmxwb/;1610281204;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LakerBlue;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LakerBlue;light;text;t2_afaca;False;False;[];;I’ll definitely give it a shot again!;False;False;;;;1610238741;;False;{};gipn7md;False;t3_ktrgan;False;True;t1_gipci8q;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipn7md/;1610281353;3;True;False;anime;t5_2qh22;;0;[]; -[];;;The-Gigagod;;;[];;;;text;t2_3ieldijj;False;False;[];;"Do you not understand the idea that their exists separate categories? If I covered every aspect to a fight then you cannot critique my wording and oh my are you an idiot. - -You clearly did not read what I am saying, nor should anyone think they need examples when that isn’t what is being debated. - -And it takes a real special person to have the only argument, that “you don’t get it” and “you don’t appreciate depth and subtlety” and “naruto bad”. It’s just wrong, childish, and heavily ironic as you are talking about Hunter x Hunter. - -Perhaps it is you who cannot grasp the themes of Naruto...";False;False;;;;1610238815;;False;{};gipncr3;True;t3_ktmos6;False;True;t1_gipln9j;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gipncr3/;1610281430;1;True;False;anime;t5_2qh22;;0;[]; -[];;;amanpanda;;;[];;;;text;t2_fvoen;False;False;[];;I dunno, I watched it with subs a while ago originally then couldn't wait and started reading the light novels. Now I've got this sounds in my mind that these just didn't response with so it just sounds wrong to me.;False;False;;;;1610238840;;False;{};gipnegi;False;t3_ktpm81;False;False;t1_gipg40s;/r/anime/comments/ktpm81/akuma_ehonda_makes_and_appearance_cautious_hero/gipnegi/;1610281456;0;True;False;anime;t5_2qh22;;0;[]; -[];;;dwilsons;;;[];;;;text;t2_qwwm7;False;False;[];;And what makes it even better is that we haven’t even hit the crazy shit yet!;False;False;;;;1610239086;;False;{};gipnvlq;False;t3_ktrgan;False;True;t1_ginqwyv;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipnvlq/;1610281725;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;No, this refers to the 14 minutes special they released on new years eve;False;False;;;;1610239159;;False;{};gipo0rg;False;t3_ktrgan;False;False;t1_gipfsgl;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipo0rg/;1610281807;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;iirc this was also an issue during S3P2 as well. That season broke a lot of karma records at the time but I always felt like the show could have scored *even higher*. Hero got over 14k and barely broke the Kaguya record with an 8 hour delay! S4 Episode 1 was the first and only time we've seen the full power of the AoT fanbase on r/anime since that episode had no delay (the first subs were CR subs).;False;False;;;;1610239165;;False;{};gipo17p;False;t3_ktrgan;False;True;t1_gipmhco;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipo17p/;1610281813;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Nah, this is just a recap of s1, its not officially s2 yet;False;False;;;;1610239192;;False;{};gipo32j;False;t3_ktrgan;False;False;t1_gipda5k;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipo32j/;1610281843;4;True;False;anime;t5_2qh22;;0;[]; -[];;;EquivalentGur3072;;;[];;;;text;t2_84bevo8q;False;False;[];;"Themes are prevalent in everything within a story. Everything. This is well known among critics, authors, and people well-versed in storytelling. Themes are influenced by every single one of the seven categories you listed, and I gave examples for some of them. You, on the other hand, did not give any examples. - -Now you're just copying my own statements. - -You're literally the one who devalued ""character"" to ""battle abilities."" That's childish if I've ever heard of it. - -I have no words. I constructed a well formulated response with examples to your own decent opening argument, and you're unable to grasp that you may be wrong. - -If I can't grasp the themes of Naruto, give me examples of some of these themes.";False;False;;;;1610239347;;False;{};gipodjp;False;t3_ktmos6;False;True;t1_gipncr3;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gipodjp/;1610282010;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Weedwacker;;;[];;;;text;t2_4immc;False;False;[];;Thank god they replaced the trash first OP;False;False;;;;1610239546;;False;{};giporuz;False;t3_kto98k;False;True;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/giporuz/;1610282229;0;True;False;anime;t5_2qh22;;0;[]; -[];;;scuba_monster;;;[];;;;text;t2_6tgya;False;False;[];;How many episodes does it take before Asta quits screaming everything he says? I get it is the voice actor's first job and I like him as Shinra in Fire Force, but the yelling was a little too grating to last more than 3 episodes into Black Clover.;False;True;;comment score below threshold;;1610239614;;False;{};gipowzl;False;t3_ktrgan;False;True;t1_ginxa6a;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipowzl/;1610282307;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;chinatownjon;;;[];;;;text;t2_2llv7rko;False;False;[];;Gangsta, classroom of elite, D-frag, himouto umaru-chan, charlotte (conclusion was good, I just really liked it and want more);False;False;;;;1610239746;;False;{};gipp6s1;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/gipp6s1/;1610282459;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zmaki;;;[];;;;text;t2_f9zardz;False;False;[];;But there are **other** ways to watch it right? I remember watching it subbed and not on netflix.;False;False;;;;1610240027;;False;{};gippqon;False;t3_ktrgan;False;True;t1_gipkr3d;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gippqon/;1610282776;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The-Gigagod;;;[];;;;text;t2_3ieldijj;False;False;[];;"First off, I did respond to you even if your too blind to see that - -Second off, how is the idea of categories past you? I made a category for soemthing, and you are calling me out on just word choice? Wise up - -Thirdly, I will explain the themes in a moment. You can either repond to this text to be the next one or I’ll respond to the one above this again later, - -But AGAIN, I did not need to give examples, because the flaw is discrediting the surface level of a fight, and confusing every category for theme";False;False;;;;1610240268;;False;{};gipq7e4;True;t3_ktmos6;False;True;t1_gipodjp;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gipq7e4/;1610283052;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Obviously i wasn't talking about you...but the one that said the opposite that both of you were answering, how the hell jjk would reach rezero or aot? Lol - -Only in season 2 in 2022";False;False;;;;1610240488;;1610240798.0;{};gipqm5z;False;t3_ktrgan;False;True;t1_gip4phi;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipqm5z/;1610283291;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EquivalentGur3072;;;[];;;;text;t2_84bevo8q;False;False;[];;Not even worth a response honestly. IDK why I responded to this thread in the first place.;False;False;;;;1610240536;;False;{};gipqpeq;False;t3_ktmos6;False;True;t1_gipq7e4;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gipqpeq/;1610283345;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Next week will be horimiya, this is already set - -For speculation: - -4th place will probably be dr stone - -5th between tpn and slime - -The rest will have a drop, which is common";False;False;;;;1610240739;;False;{};gipr34g;False;t3_ktrgan;False;True;t1_giow5fi;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipr34g/;1610283566;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Tpn have to up their game, the theory is that it had a lackluster result because it aired one day earlier than scheduled and in the same day as Rezero - -So we will se next week how it does, because usually we see a drop in 2nd episode, but if it goes up than it's true that was a schedule problem - -The worst result from jjk was 5.5k and it average 6.5k, so tpn has to at least reach 6k, and there's still horimiya who will be in that same range";False;False;;;;1610241041;;False;{};giprnau;False;t3_ktrgan;False;False;t1_gioq0xk;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giprnau/;1610283902;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;Interesting. Shame that it won't beat S2E1 but the upper end of that is still super impressive. Hopefully it has an episode break 15K at some point.;False;False;;;;1610241046;;False;{};giprnpf;False;t3_ktrgan;False;True;t1_gipa7tc;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giprnpf/;1610283908;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Aschentei;;;[];;;;text;t2_z1t0l;False;False;[];;"Bruh Slime gets 800 and it hasn't even aired yet! only 24.9 which is just a recap with a tiny sprinkle of exposition....lets see how it compares to re zero and aot, im SO hyped - -AND, lets not for JK part 2, that shit will be up there - -I'm also curious to see how Horimiya will compare to JK and Quints, probably will fit in between them? just guessing";False;False;;;;1610241200;;False;{};gipryjl;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipryjl/;1610284086;7;True;False;anime;t5_2qh22;;0;[]; -[];;;aimglitchz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/aimglitchz;light;text;t2_14zzu5;False;True;[];;Cancel this movie forever while they're at it;False;False;;;;1610241296;;False;{};gips5fx;False;t3_ktnuit;False;True;t3_ktnuit;/r/anime/comments/ktnuit/due_to_shortened_movie_opening_hours_and_state_of/gips5fx/;1610284198;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;GhostDxD;;;[];;;;text;t2_3hyut4ek;False;False;[];;I relate to this character and that make me worry a bit;False;False;;;;1610241373;;False;{};gipsasw;False;t3_ktmo3m;False;True;t3_ktmo3m;/r/anime/comments/ktmo3m/sauce_tanakakun_wa_itsumo_kedaruge/gipsasw/;1610284289;3;True;False;anime;t5_2qh22;;0;[]; -[];;;The-Gigagod;;;[];;;;text;t2_3ieldijj;False;False;[];;Can’t handle it huh? Alright. Your choice. Keep living in your delusion of elitism;False;False;;;;1610241581;;False;{};gipsos9;True;t3_ktmos6;False;True;t1_gipqpeq;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gipsos9/;1610284520;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YeOldGravyBoat;;;[];;;;text;t2_3xw66uhi;False;False;[];;"So ones like a slice of life, and the other is like Osmosis Jones if it was rated R? Lol. - -Are they both good enough individually to make watching them worthwhile, or is watching s2 the way to go? I thought S1 was kind of funny, but it was mostly just a show for those in between series.";False;False;;;;1610242113;;False;{};gipto0j;False;t3_ktrgan;False;False;t1_gip41cm;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipto0j/;1610285101;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SMatarratas;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SMatarratas;light;text;t2_hu60s;False;False;[];;Most people are going to wait for the netflix release;False;False;;;;1610242394;;1610249022.0;{};gipu6xl;False;t3_ktrgan;False;True;t1_gio2kkt;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipu6xl/;1610285415;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MABfan11;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MABfan11;light;text;t2_xdlmc;False;False;[];;"Re:Zero on top, as expected - -Quintessential Quintuplets had an amazing first episode - -now both AoT and Re:Zero are about to enter their god-tier content and i'm so fucking hyped (still need to watch season 3 tho)";False;False;;;;1610242539;;False;{};gipugej;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipugej/;1610285575;3;True;False;anime;t5_2qh22;;0;[]; -[];;;aniMayor;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aniMayor/;light;text;t2_oymny;False;True;[];;"Yeah, why not. Or if you don't like that concept why not shorten the list to be top 10? Or invite people to make very specific recommendations of what will beat things on the list, go watch them, and make it a series of follow-up posts where you showcase how the list evolves over time. - -Especially when you make such a bold claim as ""If it’s not above, I’ve probably seen it"". If you're going to be so bold in your claims, you gotta *own* that.";False;False;;;;1610242835;;False;{};gipuzzl;False;t3_ktmos6;False;True;t1_gipizsv;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gipuzzl/;1610285904;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MABfan11;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MABfan11;light;text;t2_xdlmc;False;False;[];;"AoT: 20+k karma - -Re:Zero S2 P2 E2: 16+k karma";False;False;;;;1610242851;;False;{};gipv123;False;t3_ktrgan;False;True;t1_ginmkk2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipv123/;1610285924;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MABfan11;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MABfan11;light;text;t2_xdlmc;False;False;[];;"> Did S2E6 get more karma than S2E1 for AoT? - -yes";False;False;;;;1610243078;;False;{};gipvggy;False;t3_ktrgan;False;True;t1_giokaxv;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipvggy/;1610286188;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"At this point, I'm just laughing uncontrollably whenever I see these kinds of news. It'd be a miracle if I get to see it this year. - -[](#hisocuck)";False;False;;;;1610243320;;False;{};gipvwl1;False;t3_ktnuit;False;False;t1_ginxr5r;/r/anime/comments/ktnuit/due_to_shortened_movie_opening_hours_and_state_of/gipvwl1/;1610286473;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Baerlatsch;;;[];;;;text;t2_238e9db6;False;False;[];;The mods might want to consider expanding the list to 20 or 25 titles this season, because it's just ridiculous how stacked it is, literally all shows in the top 15 are gonna be well-known titles, the small ones are rarely if ever gonna appear;False;False;;;;1610243466;;False;{};gipw6i0;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipw6i0/;1610286646;6;True;False;anime;t5_2qh22;;0;[]; -[];;;crispy_doggo1;;;[];;;;text;t2_2nw4rbfu;False;False;[];;"*It’s all sequels and isekai?* - -*Always has been.*";False;False;;;;1610243563;;False;{};gipwd1l;False;t3_ktrgan;False;False;t1_gipjl1p;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipwd1l/;1610286763;5;True;False;anime;t5_2qh22;;0;[];True -[];;;Bla7kCaT;;;[];;;;text;t2_dz3bs;False;False;[];;they has the AUDACITY to release a new boys volleyball anime when the Haiykuu sad farewell is still so fresh in our hearts. 😥;False;False;;;;1610243956;;False;{};gipx3ch;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipx3ch/;1610287224;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;It might, but huh...from episode 8 onward The chances are that AoT Will Fall off a bit. If RE:Zero is gonna beat It then that's a different story.;False;False;;;;1610244025;;False;{};gipx7zc;False;t3_ktrgan;False;True;t1_gipa409;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipx7zc/;1610287316;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EquivalentGur3072;;;[];;;;text;t2_84bevo8q;False;False;[];;">Can’t handle it huh? Alright. Your choice. - -No, I guess I couldn't handle arguing with someone who cannot seem to form a rational argument or understand my own. - ->Keep living in your delusion of elitism - -Wait I thought you were the one who devalued ""character"" to ""combat ability.""";False;False;;;;1610244085;;False;{};gipxc4t;False;t3_ktmos6;False;True;t1_gipsos9;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gipxc4t/;1610287390;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The-Gigagod;;;[];;;;text;t2_3ieldijj;False;False;[];;I mean I believe I listed dragon ball which has been your example, but also, this is just a list of my opinions;False;False;;;;1610244146;;False;{};gipxg6a;True;t3_ktmos6;False;True;t1_gipuzzl;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gipxg6a/;1610287461;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The-Gigagod;;;[];;;;text;t2_3ieldijj;False;False;[];;You might be the most irrational person I’ve ever seen. I’ve time and time again shown you your faults but comprehension is a bitch huh?;False;False;;;;1610244188;;False;{};gipxj2h;True;t3_ktmos6;False;True;t1_gipxc4t;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gipxj2h/;1610287509;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Sleepin on mushoku tensei;False;False;;;;1610244450;;False;{};gipy0xk;False;t3_ktrgan;False;False;t1_ginxkn4;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipy0xk/;1610287827;4;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;A Lot. But he does eventually It helps The supporting cast is quite decente/good for The most part.;False;False;;;;1610244568;;False;{};gipy8r5;False;t3_ktrgan;False;True;t1_gipowzl;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipy8r5/;1610287974;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;The actual Crazy shit might not be in this season though;False;False;;;;1610244782;;False;{};gipyn85;False;t3_ktrgan;False;True;t1_gipnvlq;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipyn85/;1610288247;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Yup;False;False;;;;1610244865;;False;{};gipysta;False;t3_ktrgan;False;True;t1_giodf5d;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipysta/;1610288344;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;lol, Doctor Stone won't beat Mushoku Tensei.;False;False;;;;1610244951;;False;{};gipyyiw;False;t3_ktrgan;False;True;t1_ginsj8a;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipyyiw/;1610288445;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dwilsons;;;[];;;;text;t2_qwwm7;False;False;[];;Yeah it’ll probably be in part 2.;False;False;;;;1610245147;;False;{};gipzbfh;False;t3_ktrgan;False;True;t1_gipyn85;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipzbfh/;1610288670;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MABfan11;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MABfan11;light;text;t2_xdlmc;False;False;[];;"> Speaking of Winter 2019 Anime, **Quintessential Quintuplets** had a monster first episode picking up 4139 Karma to double its season high from 2019 - -it's well deserved too, it had a fucking amazing first episode that made it feel like the show never left";False;False;;;;1610245219;;False;{};gipzg5h;False;t3_ktrgan;False;True;t1_ginm8f9;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipzg5h/;1610288761;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aniMayor;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aniMayor/;light;text;t2_oymny;False;True;[];;I listed like 20 series and 3 classic examples, but you keep fixating on the only one you can quibble about. You're never gonna make it with that attitude, kiddo.;False;False;;;;1610245236;;False;{};gipzhb6;False;t3_ktmos6;False;True;t1_gipxg6a;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gipzhb6/;1610288783;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EquivalentGur3072;;;[];;;;text;t2_84bevo8q;False;False;[];;Rationality now is it?;False;False;;;;1610245288;;False;{};gipzktm;False;t3_ktmos6;False;True;t1_gipxj2h;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gipzktm/;1610288848;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;You ARE 100% underestimating MT.;False;False;;;;1610245301;;False;{};gipzlpk;False;t3_ktrgan;False;True;t1_ginps97;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipzlpk/;1610288863;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MABfan11;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MABfan11;light;text;t2_xdlmc;False;False;[];;better start making a sub similar to /r/ThingsHomuraDidWrong;False;False;;;;1610245315;;False;{};gipzmo1;False;t3_ktrgan;False;True;t1_giokfrd;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipzmo1/;1610288879;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;lol Hori won't top JJK. It might not top Tensei either.;False;False;;;;1610245367;;False;{};gipzq5y;False;t3_ktrgan;False;True;t1_ginnuy4;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipzq5y/;1610288939;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;TPN also had a problem though. It Premiered earlier then expected on funi.;False;False;;;;1610245422;;False;{};gipzu1a;False;t3_ktrgan;False;True;t1_ginpsqm;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipzu1a/;1610289012;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;It might get to The top 5.;False;False;;;;1610245449;;False;{};gipzvv8;False;t3_ktrgan;False;False;t1_ginr649;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipzvv8/;1610289045;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Shibuya Arc probably could. Shit is traumatizing AND awesome. Stuff both AoT and Rezero fans can apreciate;False;False;;;;1610245625;;False;{};giq07ug;False;t3_ktrgan;False;True;t1_gipqm5z;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giq07ug/;1610289272;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Nah, AoT Will not be Full stop. Quite The opposite. But It won't stop it's Full throtle until Episode 8 or 9.;False;False;;;;1610245683;;False;{};giq0bsy;False;t3_ktrgan;False;True;t1_ginsi49;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giq0bsy/;1610289342;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kingOlimbs;;;[];;;;text;t2_8m8v5;False;False;[];;It is entirely possible that a **fan** of the series might **sub,** but I know not where in the **open seas** you might find it;False;False;;;;1610245714;;False;{};giq0dw8;False;t3_ktrgan;False;True;t1_gippqon;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giq0dw8/;1610289383;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Nah that shit is hype. I do think it's weird, since episode 6 it's when, for me, shit goes down.;False;False;;;;1610245744;;False;{};giq0fxv;False;t3_ktrgan;False;False;t1_giok6w7;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giq0fxv/;1610289419;5;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Kinda of. AoT IS done with setting up stuff. Now ia pay off time. But eventually Will have to slow down again. Re:zero I have no Idea.;False;False;;;;1610245823;;False;{};giq0lbp;False;t3_ktrgan;False;False;t1_ginmtvr;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giq0lbp/;1610289510;4;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Nah, It was a special episode during The FGO stream. A New season is announced though.;False;False;;;;1610245951;;False;{};giq0u0q;False;t3_ktrgan;False;False;t1_ginzxeo;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giq0u0q/;1610289660;4;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;It has to reach Hori First. And maybe Mushoku Tensei.;False;False;;;;1610246069;;False;{};giq11xu;False;t3_ktrgan;False;True;t1_gio0gg4;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giq11xu/;1610289801;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Snipe-Out;;;[];;;dark;text;t2_5604j7dg;False;False;[];;Yup, with around 5k upvotes within 8 hours of the first episodes, I have high hopes now.;False;False;;;;1610246216;;False;{};giq1bia;False;t3_ktrgan;False;True;t1_gipzvv8;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giq1bia/;1610289968;3;True;False;anime;t5_2qh22;;0;[]; -[];;;The-Gigagod;;;[];;;;text;t2_3ieldijj;False;False;[];;You really are nonsensical. I didn’t rank anime fights I hadn’t seen...obviously...I did advertise it was my list I don’t get your point;False;False;;;;1610246412;;False;{};giq1oy8;True;t3_ktmos6;False;True;t1_gipzhb6;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/giq1oy8/;1610290451;1;True;False;anime;t5_2qh22;;0;[]; -[];;;moybull;;;[];;;;text;t2_wfco3w0;False;False;[];;"You can try again the mystery is great but I'll be honest if the opening scene was too much for you then this may not be for you as there will be worse in some episodes. I'll s/o the VN the violence is easier to handle when it isn't animated so if you like reading give it a try. The mystery element is the main focus and its really well written. Or the manga if the sound is the hard part and not the visuals. - -But if you choose the anime you'll have to prepare yourself for some gore every once in a while. Maybe lower the volume if it gets bad.";False;False;;;;1610246495;;False;{};giq1ukw;False;t3_ktrgan;False;False;t1_giod0qv;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giq1ukw/;1610290546;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Hot_Independence_433;;;[];;;;text;t2_7op9v7e6;False;False;[];;Those I haven't heard of I'll have to check em out;False;False;;;;1610246811;;False;{};giq2fac;True;t3_ktkzvp;False;True;t1_ginufhd;/r/anime/comments/ktkzvp/whats_the_saddest_anime/giq2fac/;1610290914;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;False;[];;Why is the industry so inconsistent with this though? SAO and Re:Zero for example are going to eventually be fully adapted, but other incredibly popular shows like Konosuba they just tease us with enough to make us want to read the rest of the story.;False;False;;;;1610247344;;False;{};giq3drg;False;t3_ktm9t3;False;True;t1_gio6igc;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/giq3drg/;1610291531;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KangKrizzle;;;[];;;;text;t2_48j6s5ns;False;False;[];;"If you dont mind being a few episodes behind, his dub actor does a much better job with Asta's loud moments imo - -But I'd say they are pretty much non-existent nowadays in the sub, he has calmed down a ton";False;False;;;;1610247457;;1610248642.0;{};giq3l1z;False;t3_ktrgan;False;False;t1_gipowzl;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giq3l1z/;1610291665;5;True;False;anime;t5_2qh22;;0;[]; -[];;;def_not_a_weeb;;;[];;;;text;t2_42xpucur;False;False;[];;So I'm still confused is it both a reboot and sequel to the original of just a sequel with a retelling. I haven't seen the original.;False;False;;;;1610247578;;False;{};giq3sw1;False;t3_ktrgan;False;True;t1_ginmm17;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giq3sw1/;1610291806;2;True;False;anime;t5_2qh22;;0;[]; -[];;;theregretmeter;;;[];;;;text;t2_m0jcsde;False;False;[];;We can relate and worry together.;False;False;;;;1610247743;;False;{};giq43pf;False;t3_ktmo3m;False;False;t1_gipsasw;/r/anime/comments/ktmo3m/sauce_tanakakun_wa_itsumo_kedaruge/giq43pf/;1610292010;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PossiblyGreg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/LoliFuhrer;light;text;t2_1umpwwy6;False;False;[];;Devil is a Part-Timer and Sankarea 😢;False;False;;;;1610248199;;False;{};giq4ws3;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/giq4ws3/;1610292553;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EquivalentGur3072;;;[];;;;text;t2_84bevo8q;False;False;[];;"If you're going to make a statement saying that someone else is irrational, then at least make the statement itself rational. I am by no means the most irrational person you've ever met, unless you haven't met many people in the world. I also was not the one hurling irrational insults at the person I was arguing with, unlike you. - -I've already explained my stance rationally with direct examples from the fight, but how about this explanation: - -From looking at the fights themselves we can conclude that they reflect the anime from which they originate. Naruto's (the show's) values are reflected in many of the fights in it, and the same goes for Hunter x Hunter. This is partly due to the fact that they are ""battle shonen,"" meaning that a lot of the plot, character development, themes, symbolism, and overall story comes from the battles within the show. - -If we compare the most popular Youtube videos about HxH and Naruto, there is a major difference in which types of videos become most popular. - -As for Naruto, videos like Swagkage's ""[20 Naruto Characters Stronger than Sasuke (Debunked)](https://www.youtube.com/watch?v=nQWDt3mvZRA)"" and ""[How Strong Is Itachi?](https://www.youtube.com/watch?v=YVtzjaf-N_A)"" are among the most popular videos about Naruto. These are quite obviously surface level ""power scaling"" videos, which do not contribute to storytelling much at all. - -As for HxH, Aleczandxr's ""[The Morality of Gon Freecss (Hunter X Hunter)](https://www.youtube.com/watch?v=1XnqUDIxZhw&t=943s)"" and ""[The Unusual Dynamics of Hunter X Hunter's Zoldyck Family](https://www.youtube.com/watch?v=7VCz3YTPOcY)"" are near the top of the video charts. These videos, on the other hand, are about these subtler aspects of storytelling. - -Furthermore, we can say that, over a large enough audience (I'd say \~2m views average for all 4 videos qualifies as a ""large enough audience""), we can tell what a given show's values and priorities are from those of the audience of the show. - -By logically combining these three arguments together, we come to the conclusion that HxH places these subtler aspects of storytelling that I have been mentioning at higher a importance than Naruto does.";False;False;;;;1610248217;;False;{};giq4xza;False;t3_ktmos6;False;True;t1_gipxj2h;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/giq4xza/;1610292576;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GhostDxD;;;[];;;;text;t2_3hyut4ek;False;False;[];;It ok if we all suffer together :);False;False;;;;1610248430;;False;{};giq5bqy;False;t3_ktmo3m;False;True;t1_giq43pf;/r/anime/comments/ktmo3m/sauce_tanakakun_wa_itsumo_kedaruge/giq5bqy/;1610292838;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;"I meant that only for the next week but now I realize JJK won't even be in the next week's chart, as it's a Friday show. - ->It might not top Tensei either. - -I'm like 90 % sure it'll but well let's see";False;False;;;;1610248958;;False;{};giq69kz;False;t3_ktrgan;False;True;t1_gipzq5y;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giq69kz/;1610293466;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_kurapikaaa;;;[];;;;text;t2_7mpylbi4;False;False;[];;Oh wow I'm surprised to see urasekai picnic in the top 10. Really great manga and LN. :) I hope the anime delivers.;False;False;;;;1610249212;;False;{};giq6q07;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giq6q07/;1610293767;1;True;False;anime;t5_2qh22;;0;[]; -[];;;daemon_blackfyre69;;;[];;;;text;t2_42avreol;False;False;[];;"Bunny girl senpai - -3-gatsu no lion";False;False;;;;1610249271;;False;{};giq6tqu;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/giq6tqu/;1610293841;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The-Gigagod;;;[];;;;text;t2_3ieldijj;False;False;[];;"I agree up until the last few points. I have actually prior to this seen all four videos you listed, and I in no way deny the differences in fanbases. Naruto was one of the big three, and is extremely mainstream and widespread. Just because of this it has a much larger casual audience. Where as HxH is usually someone’s 20th anime, Naruto usually being their 1st. - -However, it is true that they are both battle shonen, specifically shonen jump, marketed to the same kids and registered audience. Shonen themselves recognize their appeal to be very very similar. - -It is also true that Hunter x Hunter came before, and was adapted “poorly” into a 62 episode adaptation in 1999, before the big anime boom. - -Naruto on the other hand began airing its extremely successful anime in 2002, right in time for the big cartoon boom, and to be picked up by Cartoon Network and advertised for millions of kids. - -This aired until 2017, while Hunter x hunter didn’t get a faithful adaption again until about 2011, however, the manga would have kept it relevant to that, despite that outliving its stay in the shonen era of TV, if it wasn’t for 2006 and on beginning the hiatus hell that I’m sure your aware of. - -This series has also stopped short, again, due to hiatus’s, while naruto lived past it and spines off into the “sadly” successful boruto. - - -What I’m saying is, both these works were meant for the same audience, however due to luck and marketing, Naruto has picked up a lot more causal anime watchers, a lot more kids, a lot more as their first anime and just generally way more people. This is why the videos “Narutoards” are interested in are relatively shallow, while HxH has remained either a small community, and/or one filled with ONLY anime veterans. - -I argue naruto had much worth in the themes department(which seems to be the only thing you care about), and I will defend that. - -And as I’ve said, I love the chimera ant arc, I think it’s better then the opening Shippuden. I also think the pain arc from naruto is just as brilliant. - -But it is quite pretentious and quite the stretch to reach the conclusion above";False;False;;;;1610249449;;False;{};giq75hn;True;t3_ktmos6;False;True;t1_giq4xza;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/giq75hn/;1610294050;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AfricanWarPig;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/AfricanWarPig/;light;text;t2_265npv7b;False;False;[];;Black Clover is gonna get more karma than even this at least a few more times. This isn’t the peak for this season.;False;False;;;;1610249542;;False;{};giq7brf;False;t3_ktrgan;False;True;t1_gioacuq;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giq7brf/;1610294174;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AfricanWarPig;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/AfricanWarPig/;light;text;t2_265npv7b;False;False;[];;"You can tell who are on the Black Clover Hate Bandwagon because they’re dismissive and think this is it’s peak without even watching it. - -It’ll rack up way more karma than this going forward. This was just the first episode of a crazy good arc. Idk about this week cuz it looks like it’s a set-up episode (maybe with a cliffhanger), but there will be a fantastic string of episodes after that.";False;False;;;;1610249782;;False;{};giq7sf8;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giq7sf8/;1610294504;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Arvendial;;;[];;;;text;t2_63jbu80i;False;False;[];;I love the monster of the week comfiness of this show.;False;False;;;;1610251025;;False;{};giqa0to;False;t3_kto98k;False;True;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/giqa0to/;1610296054;2;True;False;anime;t5_2qh22;;0;[]; -[];;;whatevillurks;;;[];;;;text;t2_pvfj7;False;False;[];;I get your point of view, really. But me... I'm going to show this to my daughter in just a couple of years. I think she's a little too young now, but I bask in the feeling that two generations of family will get to bask in two generations of Inuyasha story.;False;False;;;;1610251187;;False;{};giqab4b;False;t3_kto98k;False;True;t1_gip4ras;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/giqab4b/;1610296265;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SarcasticBitch94;;;[];;;;text;t2_7s3purps;False;False;[];;I tried that with my niece, she’s 13 and a big anime fan just like me, but she has 0 interest in inuyasha or the sequel. I hope your daughter enjoys it just as much as we do! My guess is the new younger generation that watches anime enjoys shorter Netflix binge style content 🤷🏻‍♀️🥺;False;False;;;;1610251411;;False;{};giqapp3;False;t3_kto98k;False;True;t1_giqab4b;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/giqapp3/;1610296547;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ProfessionalGoober;;;[];;;;text;t2_22b32ov4;False;False;[];;Yeah. No way in hell this isn’t getting delayed again with COVID cases skyrocketing. I like to joke that this is all the fault of that damn KnY movie for getting so many people into theaters and causing greater spread.;False;False;;;;1610251744;;False;{};giqbb8t;False;t3_ktnuit;False;True;t1_gin6xn4;/r/anime/comments/ktnuit/due_to_shortened_movie_opening_hours_and_state_of/giqbb8t/;1610296955;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lots_of_Regret;;;[];;;;text;t2_oj83zr9;False;False;[];;Can’t forget Dororo;False;False;;;;1610251768;;False;{};giqbcr8;False;t3_ktrgan;False;False;t1_giocbg4;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqbcr8/;1610296983;6;True;False;anime;t5_2qh22;;0;[]; -[];;;EquivalentGur3072;;;[];;;;text;t2_84bevo8q;False;False;[];;"Damn. Can you make a structured argument like the one you just made, but about my first long response? - -I agree with your last sentence primarily. That's the conclusion I was trying to draw out of you. While all 3 of my points are true, they each have enough flexibility between them to make it to where it doesn't actually *prove* anything, but rather IMO it just reflects the values. Hence, I can believe it's true while you won't, and neither of us can disprove the other. - -I do disagree that HxH is only for ""veterans."" It's widely regarded as extremely popular, and I would consider myself an ""anime newbie"" having only watched about 7 shows (I am quite experienced in fiction works as a whole, so I do not believe my ability to evaluate how ""good"" shows, or specifically fights, are is impacted by my newness to the medium of anime). I agree with everything else you said, but partly for a few different reasons. - -I've actually been meaning to write these ideas out eventually but haven't gotten the chance or a reason to do so, so here goes nothing. This isn't exactly intended for you; I'm more using this as a time to write out these ideas about some of HxH's themes and Togashi's intents with the show: - -HxH is intended for both a younger ( about 10 to about 15) and older (about 16+) audience, though these age ranges vary widely depending upon the maturity of the watcher. Togashi manages to captivate both younger and older audiences, respectively, by teaching younger audiences about the realities of life and enthralling older audiences with intense, developed, and well-thought-out themes throughout the show. - -Younger audience: HxH is a coming-of-age story, similar to something like Twain's Huck Finn or Golding's Lord of the Flies, though the three have plenty of differences between them. Gon is portrayed as extremely young and innocent to draw some sort of a relationship/identification between Gon and the young watcher. This relationship is gradually shaved thin through Gon's continual non-relatable actions and shown traits, until it is finally completely broken during the CAA. True friendship is modeled by Killua, and other characters model their own moral determinants (some of these can also be applied to the older viewer). The final line of the show, ""You should enjoy the little detours to the fullest. Because that's where you'll find the things more important than what you want"" is also integral to this teaching aspect. It lets the younger reader know that both within the story, and in real life, that what he wants oftentimes does not equal what is most important. This directly points to the themes and symbolism within the story (most directly IMO is loss of innocence) rather than the primary plot, which is what a younger viewer will favor. - -Older audience: Between this thread and some others, I've already written enough on the ""developed, and well-thought-out themes"" of the show, so meh.";False;False;;;;1610251811;;False;{};giqbfgu;False;t3_ktmos6;False;True;t1_giq75hn;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/giqbfgu/;1610297032;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lots_of_Regret;;;[];;;;text;t2_oj83zr9;False;False;[];;Why is everyone sleeping on 121?;False;False;;;;1610251906;;False;{};giqblby;False;t3_ktrgan;False;False;t1_giom0e6;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqblby/;1610297145;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"If you like S1 you should like S2, as it will probably be 'more of the same'. As for BLACK, well it's very different, so I guess it depends on your taste; - -It's definitely darker. - -Personally I think both are worth watching, and it's even more interesting that they air at the same time, so you can see the differences, strikes even harder. - -I'd advise to just watch the first episode, to be honest; As soon as Ep1, you'll see right away what the 'Black' version is like.";False;False;;;;1610252033;;False;{};giqbtpt;False;t3_ktrgan;False;False;t1_gipto0j;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqbtpt/;1610297305;0;True;False;anime;t5_2qh22;;0;[]; -[];;;LakerBlue;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LakerBlue;light;text;t2_afaca;False;False;[];;Definitely, especially that first cour in Winter 2019.;False;False;;;;1610252195;;False;{};giqc4db;False;t3_ktrgan;False;False;t1_giqbcr8;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqc4db/;1610297502;5;True;False;anime;t5_2qh22;;0;[]; -[];;;The-Gigagod;;;[];;;;text;t2_3ieldijj;False;False;[];;"I just think your underestimating naruto here. I also think your not giving the “surface value” as you call it enough credit in this case - -But good take";False;False;;;;1610252207;;False;{};giqc55z;True;t3_ktmos6;False;True;t1_giqbfgu;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/giqc55z/;1610297532;1;True;False;anime;t5_2qh22;;0;[]; -[];;;godblow;;;[];;;;text;t2_kigl8;False;False;[];;There's a doggy style joke in there somewhere....;False;False;;;;1610252349;;False;{};giqcean;False;t3_kto98k;False;False;t1_giohj4l;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/giqcean/;1610297714;4;True;False;anime;t5_2qh22;;0;[]; -[];;;godblow;;;[];;;;text;t2_kigl8;False;False;[];;What does Viz have to do with this?;False;False;;;;1610252475;;False;{};giqcmd9;False;t3_kto98k;False;True;t1_gip4ras;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/giqcmd9/;1610297864;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EquivalentGur3072;;;[];;;;text;t2_84bevo8q;False;False;[];;"I'll admit that I may be underestimating part 1. I'm quite confident in my view of most of Shippuden, but the Pain arc and p1 may be better than I remember. - -Valuing surface-level plot as opposed to themes, symbolism, subplots, and other more subtle storytelling aspects is purely subjective. Personally, I don't value surface-level plot much at all, but another, still mature, watcher may value it way more than I do. That's why I put the ""subjective"" disclaimer everywhere I remembered. - -Edit: Thanks for the ""good take.""";False;False;;;;1610252667;;False;{};giqcyt0;False;t3_ktmos6;False;True;t1_giqc55z;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/giqcyt0/;1610298133;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The-Gigagod;;;[];;;;text;t2_3ieldijj;False;False;[];;No problem. Is HxH your favorite anime of all time?;False;False;;;;1610252923;;False;{};giqdevp;True;t3_ktmos6;False;True;t1_giqcyt0;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/giqdevp/;1610298474;1;True;False;anime;t5_2qh22;;0;[]; -[];;;harisaashraf7;;;[];;;;text;t2_4jfzaue2;False;False;[];;Aot's non stop fire from this week onward till the end. Theres is no stopping the hype now.;False;False;;;;1610253041;;False;{};giqdm4a;False;t3_ktrgan;False;False;t1_gip5our;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqdm4a/;1610298620;7;True;False;anime;t5_2qh22;;0;[]; -[];;;EquivalentGur3072;;;[];;;;text;t2_84bevo8q;False;False;[];;"Of the few that I have seen, yes. I'm in the middle of Steins;Gate and am loving it nearly as much. I also love FMAB. - -Edit: I should probably ask what yours are. What are they?";False;False;;;;1610253077;;False;{};giqdoj7;False;t3_ktmos6;False;True;t1_giqdevp;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/giqdoj7/;1610298666;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610253104;;False;{};giqdq87;False;t3_ktrgan;False;True;t1_giq0fxv;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqdq87/;1610298697;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DaFoopyHobo;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/LordChungle;light;text;t2_zfseb;False;False;[];;Bloom into You :((((((((((((((((((((((;False;False;;;;1610253119;;False;{};giqdr8l;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/giqdr8l/;1610298716;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The-Gigagod;;;[];;;;text;t2_3ieldijj;False;False;[];;"You don’t have to. My favorite is cowboy bebop, and I really should watch Steins;Gate";False;False;;;;1610253397;;False;{};giqe92r;True;t3_ktmos6;False;True;t1_giqdoj7;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/giqe92r/;1610299139;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EquivalentGur3072;;;[];;;;text;t2_84bevo8q;False;False;[];;Yeah I've been thinking of watching cowboy bebop for a while now. SG is confusing so far (which is intended) but guess what I love about it. I'll give you a hint, it's probably the most overused word in my vocabulary when talking about fiction: themes. lol;False;False;;;;1610253655;;False;{};giqep3a;False;t3_ktmos6;False;True;t1_giqe92r;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/giqep3a/;1610299448;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SarcasticBitch94;;;[];;;;text;t2_7s3purps;False;False;[];;I meant to write sunrise lmao I’ll correct;False;False;;;;1610253899;;False;{};giqf3i9;False;t3_kto98k;False;True;t1_giqcmd9;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/giqf3i9/;1610299742;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The-Gigagod;;;[];;;;text;t2_3ieldijj;False;False;[];;Lol. Well yeah I gotta give the highest of recommendations to cowboy bebop. You just have so much freedom with art direction when it’s an original anime production. Anyways, reply to this comment after bebop and SG to tell me what you think;False;False;;;;1610253947;;False;{};giqf6bw;True;t3_ktmos6;False;False;t1_giqep3a;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/giqf6bw/;1610299804;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610254139;;False;{};giqfhgk;False;t3_ktrgan;False;True;t1_gintqze;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqfhgk/;1610300054;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wonhyukdo;;;[];;;;text;t2_42lm6al1;False;False;[];;Can someone explain or link an explanation to what all of these numbers are? Mainly the big numbers on the images and the separate list on the right.;False;False;;;;1610254191;;False;{};giqfkhm;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqfkhm/;1610300108;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Daabbane;;;[];;;;text;t2_wyyld;False;False;[];;Aesthetica of a Rogue Hero. There was a pretty major change in scenery and then the season ended;False;False;;;;1610254511;;False;{};giqg31n;False;t3_ktm9t3;False;True;t3_ktm9t3;/r/anime/comments/ktm9t3/what_show_made_you_the_most_disappointed_because/giqg31n/;1610300457;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LimLovesDonuts;;;[];;;;text;t2_xksyd;False;False;[];;The entire arc would. Really good shit.;False;False;;;;1610254938;;False;{};giqgrf2;False;t3_ktrgan;False;True;t1_giokhle;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqgrf2/;1610300962;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LimLovesDonuts;;;[];;;;text;t2_xksyd;False;False;[];;I like Black Clover but we really have to be realistic. I think that it can get top 10 without much issues but top 3-5 with the likes of JJk, AOT, Re-Zero and then Slime? On some weeks that are super hyped, it may hit top 5 but it won't do so constantly.;False;False;;;;1610255123;;False;{};giqh1yi;False;t3_ktrgan;False;True;t1_gintqze;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqh1yi/;1610301159;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LimLovesDonuts;;;[];;;;text;t2_xksyd;False;False;[];;Happy to see Black Clover in the top 10. If the anime can keep up with the hype and adaptation, then this won't be the last time that BC is in the top 10. Meanwhile, can't wait for AOT.;False;False;;;;1610255246;;False;{};giqh8qx;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqh8qx/;1610301283;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Fleur_Weasley;;;[];;;;text;t2_7ix7nujs;False;False;[];;Hi, what does karma means? I'm new at watching animes.;False;False;;;;1610255258;;False;{};giqh9ez;False;t3_ktrgan;False;True;t1_ginmkk2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqh9ez/;1610301295;3;True;False;anime;t5_2qh22;;0;[]; -[];;;luffygokunaruto;;;[];;;;text;t2_1b16zga9;False;False;[];;I think Horimiya might also be a contender for 3rd spot;False;False;;;;1610255550;;False;{};giqhpbp;False;t3_ktrgan;False;False;t1_ginxkn4;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqhpbp/;1610301581;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"Number of upvotes a discussion thread gets - -Basically the score next to the post or comments";False;False;;;;1610255881;;False;{};giqi7fc;False;t3_ktrgan;False;False;t1_giqh9ez;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqi7fc/;1610301963;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PREM___;;;[];;;;text;t2_3pqnn53g;False;False;[];;episode 9 and 10 will adapt 107-110. But after that since 112 gets animated, Re:zero might stand no chance since it’s all uphill from there;False;False;;;;1610256260;;False;{};giqiren;False;t3_ktrgan;False;True;t1_gipx7zc;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqiren/;1610302343;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jyper;;;[];;;;text;t2_44f90;False;False;[];;"I'd recommend staying away from trailers or fan comments. - -Not that Re:Zero's not great on the rewatch but it has a lot of lore&character mystery and a lot of WTF did I just watch moments that are best experienced as blind as possible";False;False;;;;1610256437;;False;{};giqj0os;False;t3_ktrgan;False;True;t1_gio00y7;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqj0os/;1610302560;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PREM___;;;[];;;;text;t2_3pqnn53g;False;False;[];;You are saying c116-120 isn’t crazy shit? It’s my fav chapters of the whole manga;False;False;;;;1610256549;;False;{};giqj6lq;False;t3_ktrgan;False;True;t1_gipyn85;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqj6lq/;1610302664;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Nonso;;;[];;;;text;t2_1xygu1ye;False;False;[];;He stops exactly on episode 10 if i remember correctly. His screams currently are honesty top tier;False;False;;;;1610256821;;False;{};giqjkw8;False;t3_ktrgan;False;True;t1_gipowzl;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqjkw8/;1610302920;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PREM___;;;[];;;;text;t2_3pqnn53g;False;False;[];;E5 will be dialogue heavy I guess? Mappa better deliver 6 and 7 good. (CG titans are confirmed I guess);False;False;;;;1610257111;;False;{};giqjztd;False;t3_ktrgan;False;True;t1_giob75g;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqjztd/;1610303880;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PREM___;;;[];;;;text;t2_3pqnn53g;False;False;[];;"ch 121-122 are still dialogue heavy but can too create a good hype with the cliffhanger this 16 episodes will end at. Then we gotta wait for either a split cour announcement or a movie - -(I think ch 116-120 can get even more if delivered well)";False;False;;;;1610257349;;False;{};giqkbtw;False;t3_ktrgan;False;True;t1_ginp0pr;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqkbtw/;1610304104;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sdd264;;;[];;;;text;t2_1g5wqrbo;False;False;[];;They consider points gained within 48 hrs;False;False;;;;1610257536;;False;{};giqklce;False;t3_ktrgan;False;True;t1_ginq2ib;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqklce/;1610304266;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_Nonso;;;[];;;;text;t2_1xygu1ye;False;False;[];;If done right 161-163 are gonna go hard;False;False;;;;1610257794;;False;{};giqkygb;False;t3_ktrgan;False;True;t1_giq7sf8;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqkygb/;1610304498;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tatertot580;;;[];;;;text;t2_4u2bgpc0;False;False;[];;Well my brothers, some of you may know me, most of you may not but I usually comment about how I wish I could watch irregular at magic high and I have done so in 5 different parts under these posts, but now, it’s over. Thank you to the non hardcore weebs who stuck with me;False;False;;;;1610258109;;False;{};giqle4j;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqle4j/;1610304757;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AfricanWarPig;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/AfricanWarPig/;light;text;t2_265npv7b;False;False;[];;I have high hopes. With each big battle the animation’s gotten better every time. So if that trend continues, the big fight scenes in this arc are gonna be fantastic.;False;False;;;;1610258486;;False;{};giqlwum;False;t3_ktrgan;False;True;t1_giqkygb;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqlwum/;1610305098;0;True;False;anime;t5_2qh22;;0;[]; -[];;;sticktoyaguns;;;[];;;;text;t2_d9wcb;False;False;[];;"His VA started killing it around episode 100 IMO. He was annoying af at first but totally toned it down after the first few episodes, and Asta is meant to be loud and obnoxious at first (still is at times, but he's very lovable now) - -And what makes Black Clover good isn't the MC, it's the side characters and how they all get their moments to shine.";False;False;;;;1610258556;;False;{};giqm0c3;False;t3_ktrgan;False;False;t1_giq3l1z;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqm0c3/;1610305166;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Also don't forget in the span of 2 days normally not more than 30k different people are active on this sub. That pretty much is saying that almost everyone on this subreddit upvotes Aot and re zero.;False;False;;;;1610259017;;False;{};giqmmoe;False;t3_ktrgan;False;True;t1_ginvsew;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqmmoe/;1610305562;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ApplicationPlus5985;;;[];;;;text;t2_6l8a7gg3;False;False;[];;Kinda ironic how the name of ep 5 from the preview is declaration of war 😂;False;False;;;;1610259146;;False;{};giqmsxk;False;t3_ktrgan;False;True;t1_ginulgt;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqmsxk/;1610305681;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Centauri425;;;[];;;;text;t2_1v7t472g;False;False;[];;Basically everything episode 160 and beyond is hype.;False;False;;;;1610261078;;False;{};giqpbju;False;t3_ktrgan;False;True;t1_giokhle;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqpbju/;1610307393;3;True;False;anime;t5_2qh22;;0;[]; -[];;;A9League3000;;;[];;;;text;t2_4tplpbf5;False;False;[];;Awww no Demon Slayer;False;True;;comment score below threshold;;1610262035;;False;{};giqqhty;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqqhty/;1610308194;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;-Nivek;;;[];;;;text;t2_4euwu1zg;False;False;[];;Did never promised land season 2 come out yet?;False;False;;;;1610262773;;False;{};giqrcz0;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqrcz0/;1610308823;0;True;False;anime;t5_2qh22;;0;[]; -[];;;MickTheDickk;;;[];;;;text;t2_56axujhn;False;False;[];;Agreed;False;False;;;;1610262923;;False;{};giqrj98;False;t3_ktnkaj;False;True;t1_gin504b;/r/anime/comments/ktnkaj/anyone_got_some_good_isekai_anime/giqrj98/;1610308940;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tongue1983;;;[];;;;text;t2_1zbj9499;False;False;[];;New one is cool. I do agree that Break is better.;False;False;;;;1610262956;;False;{};giqrko0;False;t3_kto98k;False;True;t1_gioh3ga;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/giqrko0/;1610308965;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610265118;;False;{};giqtzuo;False;t3_ktrgan;False;True;t1_giqqhty;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqtzuo/;1610310787;1;True;False;anime;t5_2qh22;;0;[]; -[];;;402915;;;[];;;;text;t2_4shmzz7k;False;False;[];;Hi HK;False;False;;;;1610265865;;False;{};giquspd;False;t3_ktrgan;False;True;t1_ginnzha;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giquspd/;1610311390;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Roles78901;;;[];;;;text;t2_8d5yvxy8;False;False;[];;Well I just feel like everyone’s got a different sense of taste and mine is definitely different;False;False;;;;1610265889;;False;{};giqutmu;True;t3_ktnkaj;False;True;t1_gin9eaf;/r/anime/comments/ktnkaj/anyone_got_some_good_isekai_anime/giqutmu/;1610311410;1;True;False;anime;t5_2qh22;;0;[]; -[];;;oops_i_made_a_typi;;;[];;;;text;t2_9ywbq;False;False;[];;Given today's score, Horimiya is a strong contender for 3rd as well, having already beat out TPN and QQ (though it was the 1st season premiere instead of a 2nd season so who knows).;False;False;;;;1610265907;;False;{};giquuc2;False;t3_ktrgan;False;False;t1_ginxkn4;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giquuc2/;1610311423;8;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;Yo.;False;False;;;;1610266579;;False;{};giqvjmu;False;t3_ktrgan;False;True;t1_giquspd;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqvjmu/;1610311886;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ravioli_Heicho;;;[];;;;text;t2_3bls5ou;False;False;[];;I mean, it'll slow down for like... two, *maybe* three episodes in the middle, and then it's right back to full throttle.;False;False;;;;1610267453;;1610267732.0;{};giqwgk9;False;t3_ktrgan;False;True;t1_giq0bsy;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqwgk9/;1610312563;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Astro-LUV;;;[];;;;text;t2_6fl5nkvf;False;False;[];;Lol I wanted to wait until S2 was done but I said screw it and finished season 1 plus 5 episodes of season in like 2 days;False;False;;;;1610267915;;False;{};giqwxqp;False;t3_ktrgan;False;False;t1_ginzozc;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqwxqp/;1610312907;5;True;False;anime;t5_2qh22;;0;[]; -[];;;navugill;;;[];;;;text;t2_3twzlhor;False;False;[];;I see a sad senku trying to invent happiness....;False;False;;;;1610268142;;False;{};giqx5zi;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqx5zi/;1610313079;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Episode 1 only, its a weekly series;False;False;;;;1610268476;;False;{};giqxia6;False;t3_ktrgan;False;True;t1_giqrcz0;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqxia6/;1610313325;3;True;False;anime;t5_2qh22;;0;[]; -[];;;-Nivek;;;[];;;;text;t2_4euwu1zg;False;False;[];;Oh yeah, I’ve been looking towards to watching this season since the first ended, thanks for the info my guy;False;False;;;;1610268539;;False;{};giqxkn8;False;t3_ktrgan;False;True;t1_giqxia6;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqxkn8/;1610313370;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"The big number on the images are the karma count (number of upvotes - downvotes) the episode discussion had in their first 48 hours - -The Ranking on the right is the average score of the episodes as the viewers rated it";False;False;;;;1610268703;;False;{};giqxqq9;False;t3_ktrgan;False;False;t1_giqfkhm;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqxqq9/;1610313508;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jobe1105;;;[];;;;text;t2_wccn6;False;False;[];;People be commenting about AoT S4 vs Re Zero S2 P2 but honestly, the real karma war is Cells at Work S2 vs Cells at Work Code Black lmao;False;False;;;;1610268722;;False;{};giqxrf7;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqxrf7/;1610313522;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ultimasmit;;;[];;;;text;t2_18m1gh;False;False;[];;Season 1 of beastars was in the top 5 of the year for me. I and I imagine a significant number of people will not be watching season 2 as it airs as we wait for the Netflix release.;False;False;;;;1610269442;;False;{};giqyhgt;False;t3_ktrgan;False;False;t1_ginr0mr;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqyhgt/;1610314025;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Agni7atha;;;[];;;;text;t2_lz9tdz;False;False;[];;This is a long running OC content by u/reddadz, not from the mods. Any suggestion should be directly asked to him. There's actually a full list in the comment section if you looking for beyond top 15.;False;False;;;;1610269447;;False;{};giqyhn7;False;t3_ktrgan;False;False;t1_gipw6i0;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqyhn7/;1610314028;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Agni7atha;;;[];;;;text;t2_lz9tdz;False;False;[];;I think it needs a separation between left side and right side. Somehow I read it as it connected while I know it's a different ranking. I still see some people asking which side is which. It could be better if there's a clear sign that the left side is karma ranking and the right side is poll ranking.;False;False;;;;1610269938;;False;{};giqyyyd;False;t3_ktrgan;False;True;t1_ginstdy;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giqyyyd/;1610314371;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kenjasama;;;[];;;;text;t2_9q2aelyc;False;False;[];;Horimiya, 7,000 over in a day. This will become a legend in one episode;False;False;;;;1610271675;;False;{};gir0oyu;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gir0oyu/;1610315566;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OverallDingo2;;;[];;;;text;t2_67sl6pdx;False;False;[];;Cant wait for dr.stone that was the first anime i whached and more epesodes of re:zero;False;False;;;;1610271993;;False;{};gir105q;False;t3_ktrgan;False;True;t1_ginufxr;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gir105q/;1610315772;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;"> how Non Non Biyori will fair? - -*fare";False;False;;;;1610272316;;False;{};gir1bqa;False;t3_ktrgan;False;True;t1_ginm8f9;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gir1bqa/;1610315990;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;Totally unrelated fun fact: the more people using a torrent, the *better* it works!;False;False;;;;1610272441;;False;{};gir1g20;False;t3_ktrgan;False;True;t1_ginoda3;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gir1g20/;1610316074;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;"> Also the karma/comment ratio is gone since I tried to minimize clutter in this slight redesign. - -Aww, my suggestion :<";False;False;;;;1610272524;;False;{};gir1iyb;False;t3_ktrgan;False;True;t1_ginm5iz;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gir1iyb/;1610316138;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Iammonkforlifelol;;;[];;;;text;t2_554va627;False;False;[];;Black clover past episode 160 is 10x times better. So I think we can go 3k+ karma.;False;False;;;;1610273637;;False;{};gir2mab;False;t3_ktrgan;False;True;t1_gioacuq;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gir2mab/;1610316920;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dark77638;;;[];;;;text;t2_14cb1i;False;False;[];;I mean, 121 is also very well done but 122 is monumental.;False;False;;;;1610274425;;False;{};gir3dk9;False;t3_ktrgan;False;True;t1_giqblby;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gir3dk9/;1610317452;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610274572;;False;{};gir3iov;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gir3iov/;1610317548;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;RandomPlayerJoined;;;[];;;;text;t2_nwyeg;False;False;[];;What are these shows streaming on?;False;False;;;;1610275277;;False;{};gir46zl;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gir46zl/;1610318036;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;[She has a bike-powered battery](https://i.imgur.com/snnGh4Z.jpg);False;False;;;;1610275991;;False;{};gir4w8l;False;t3_kto98k;False;True;t1_gio5vyn;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gir4w8l/;1610318524;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;In some ways it's better so you have time to digest the story.;False;False;;;;1610276629;;False;{};gir5j6g;False;t3_ktrgan;False;True;t1_giqwxqp;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gir5j6g/;1610318948;1;True;False;anime;t5_2qh22;;0;[]; -[];;;csdbcjkahsd;;;[];;;;text;t2_6o5ig4yp;False;False;[];;"good to see you can't take a joke - -reddit moment";False;False;;;;1610276854;;False;{};gir5r6f;False;t3_ktrgan;False;True;t1_gintsaa;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gir5r6f/;1610319098;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZapsZzz;;;[];;;;text;t2_g2hnymx;False;False;[];;"My daughter was spoiled on more ""modern"" artstyle and do not want to watch this. I'm a bit sad about that but I did realise she has a 50/50 chance to get that from her mom's genes :P";False;False;;;;1610277363;;False;{};gir69cc;False;t3_kto98k;False;True;t1_giqapp3;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gir69cc/;1610319431;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Etereke32;;;[];;;;text;t2_11qhl2;False;False;[];;I thought that was just a gag lol;False;False;;;;1610277437;;False;{};gir6c29;False;t3_kto98k;False;True;t1_gir4w8l;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gir6c29/;1610319480;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;"> (though it was the 1st season premiere instead of a 2nd season so who knows - -Popular shows usually do better on their 2nd season unless there is a notable decline in quality (*cough* OPM *cough*). Horimiya is actually the 2nd highest karma ever for a seasons 1 opening episode.";False;False;;;;1610277666;;1610278245.0;{};gir6k9x;False;t3_ktrgan;False;False;t1_giquuc2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gir6k9x/;1610319631;4;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;Horimiya just threw down the gauntlet.;False;False;;;;1610277755;;False;{};gir6nhj;False;t3_ktrgan;False;True;t1_ginxkn4;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gir6nhj/;1610319694;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;I think we can safely say it is at this point. Next week Dr.Stone might be the only one with a shot at taking that from Horimiya before JJK comes back.;False;False;;;;1610277814;;1610278556.0;{};gir6pjf;False;t3_ktrgan;False;False;t1_giqhpbp;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gir6pjf/;1610319733;4;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;JJK won't be back yet on the next ranking, no? Unless you count the New Year's special.;False;False;;;;1610278083;;False;{};gir6z7e;False;t3_ktrgan;False;False;t1_ginnxi8;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gir6z7e/;1610319926;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Stigma_Killer;;;[];;;;text;t2_9q583pei;False;False;[];;What is this?;False;False;;;;1610278142;;False;{};gir71ev;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gir71ev/;1610319968;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;Well, well, well. Looks like we all underrated Horimiya.;False;False;;;;1610278211;;False;{};gir73tw;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gir73tw/;1610320013;6;True;False;anime;t5_2qh22;;0;[]; -[];;;nafissyed;;;[];;;;text;t2_3axlgtoe;False;False;[];;Horimiya is a beautiful anime so I believe it deserves all the hype that it deserves imo.;False;False;;;;1610279199;;False;{};gir82km;False;t3_ktrgan;False;True;t1_gir73tw;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gir82km/;1610320657;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Karma ranking for the first 48h after the thread for said anime is posted on r/anime for this week.;False;False;;;;1610279221;;False;{};gir83by;False;t3_ktrgan;False;True;t1_gir71ev;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gir83by/;1610320672;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;"I was looking forward to it and glad it turned out so well but I never expected it to gain this much karma. - -It's likely gonna end up at around 7.9k-8k. That's hella impressive. - -edit: Over 8k now and still 20 hours to go. Could it even break 8.5k? The record for best debut seems too far but it could solidify its 2nd place.";False;False;;;;1610281234;;1610311875.0;{};gira47z;False;t3_ktrgan;False;False;t1_gir82km;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gira47z/;1610322028;4;True;False;anime;t5_2qh22;;0;[]; -[];;;nafissyed;;;[];;;;text;t2_3axlgtoe;False;False;[];;For a premier indeed it is. This season is already shaping hip to be huge and it’s hype seeing one of my most anticipated anime getting the attention of truly deserves.;False;False;;;;1610281322;;False;{};gira7ct;False;t3_ktrgan;False;False;t1_gira47z;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gira7ct/;1610322085;4;True;False;anime;t5_2qh22;;0;[]; -[];;;jhor95;;;[];;;;text;t2_23r01qam;False;False;[];;Wait Noblesse got a proper anime??!?!;False;False;;;;1610282541;;False;{};girbhks;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/girbhks/;1610322946;0;True;False;anime;t5_2qh22;;0;[]; -[];;;locusqq;;;[];;;;text;t2_2mwmdx59;False;False;[];;If you open the image you can see small round icons to the left of a shows karma.;False;False;;;;1610283311;;False;{};gircbw6;False;t3_ktrgan;False;False;t1_gir46zl;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gircbw6/;1610323493;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;Yeah, be funny next time and we'll take your joke.;False;False;;;;1610283465;;False;{};girci27;False;t3_ktrgan;False;True;t1_gir5r6f;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/girci27/;1610323617;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">Hey, you can still take photos, record audio and video, take notes - -""In A Feudal World With My Smartphone""";False;False;;;;1610283740;;False;{};girctfz;False;t3_kto98k;False;True;t1_gingifi;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/girctfz/;1610323827;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zizhou;;;[];;;;text;t2_4d1ri;False;False;[];;"> Hey, you can still take photos, record audio and video, take notes. And if you were thinking ahead, load it up with reference material - -Also have accurate longitudinal navigation possibly hundreds of years sooner than the rest of the world. [Marine chronometers](https://en.wikipedia.org/wiki/Marine_chronometer) were the result of more than a century of dedicated research and would revolutionize navigation and indirectly lead to the Age of Discovery. Having a digital clock that's accurate to fractions of a second every day could enable some enormously timeline breaking feats of navigation.";False;False;;;;1610283804;;False;{};gircw1w;False;t3_kto98k;False;True;t1_gingifi;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gircw1w/;1610323873;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RandomPlayerJoined;;;[];;;;text;t2_nwyeg;False;False;[];;Thanks. Do you know what the skull and red logo are?;False;False;;;;1610284700;;False;{};girdycs;False;t3_ktrgan;False;False;t1_gircbw6;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/girdycs/;1610324566;0;True;False;anime;t5_2qh22;;0;[]; -[];;;brokenjudge;;;[];;;;text;t2_7yhidk71;False;False;[];;Cells at work black was unexpectedly good at making you fear drinking and smoking;False;False;;;;1610285506;;False;{};girexw1;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/girexw1/;1610325243;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Chinbie;;;[];;;;text;t2_12h6erpy;False;False;[];;"Re Zero as usual dominates upon the premiere episode... But next week is the real deal as AOT and Re Zero will now going to be ranked together based on karma upvotes. - -2 series, 2 above 10k karma votes. Yeah - -By the way, Horimiya is performing well to as it has 7.6 upvotes (as of typing). Hahaha...";False;False;;;;1610286979;;False;{};girgucf;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/girgucf/;1610326526;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Chinbie;;;[];;;;text;t2_12h6erpy;False;False;[];;"AOT next week: DECLARATION OF WAR -AOT next week too: (karma votes): DECLARATION OF WAR IN UPVOTES 💪💪💪";False;False;;;;1610287055;;False;{};girgxxs;False;t3_ktrgan;False;True;t1_ginnzha;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/girgxxs/;1610326596;1;True;False;anime;t5_2qh22;;0;[]; -[];;;reddadz;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MysticEyes/;light;text;t2_oek5m;False;True;[];;"And that’s my biggest issue. I don’t want the poll ranking to look like it’s tacked on to the side (like in 2019) so my intention was to make it one cohesive chart. - -At the same time, I need to ensure the 2 rankings are distinct enough in some way. The eternal struggle.";False;False;;;;1610288071;;False;{};giric3q;True;t3_ktrgan;False;True;t1_giqyyyd;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giric3q/;1610327479;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;"The skull represents a pirate flag. Used for shows that are only airing in Japan and not yet legally available in the west. - -Which red logo are you talking about? The red 'N' is Netflix. The red, stylized 'WM' is Wakanim.";False;False;;;;1610288250;;False;{};girilag;False;t3_ktrgan;False;True;t1_girdycs;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/girilag/;1610327632;0;True;False;anime;t5_2qh22;;0;[]; -[];;;reddadz;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MysticEyes/;light;text;t2_oek5m;False;True;[];;"I still thank you for the recommendation. There’s other data I had to drop since there’s only so much I can include without overcrowding. - -Still searching for a way to get the ratio back in though.";False;False;;;;1610288299;;False;{};girinw1;True;t3_ktrgan;False;True;t1_gir1iyb;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/girinw1/;1610327676;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zairaner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/zairaner;light;text;t2_166xh0;False;False;[];;I know that MAL is probably not the most reliable source on angas, but it is the 13th most popular manga on MAL!;False;False;;;;1610289826;;False;{};girkxo2;False;t3_ktrgan;False;False;t1_gir73tw;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/girkxo2/;1610329125;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Agni7atha;;;[];;;;text;t2_lz9tdz;False;False;[];;It's been a while since I saw the 2019 version. I think I get what you are going to achieve. The 2019 chart looks really jumbled. This one looks cohesive enough. Good job on the chart as always.;False;False;;;;1610292683;;False;{};girpdbl;False;t3_ktrgan;False;True;t1_giric3q;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/girpdbl/;1610331985;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;Yeah, and Re:Zero won't stop, at all.;False;False;;;;1610293703;;False;{};girr5mr;False;t3_ktrgan;False;False;t1_giqwgk9;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/girr5mr/;1610333192;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;For me? No. The current events are my favorite part. from 130 up until now.;False;False;;;;1610293771;;False;{};girr9zv;False;t3_ktrgan;False;True;t1_giqj6lq;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/girr9zv/;1610333287;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jstoru216;;;[];;;;text;t2_ilssvhy;False;False;[];;The problem is we don't know what will happen to RE:Zero at all. I do think AoT wil fall of quite a bit on the slower part. Wich I think are episodes 9 and 10.;False;False;;;;1610293856;;False;{};girrfcj;False;t3_ktrgan;False;True;t1_giqiren;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/girrfcj/;1610333382;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Karma110;;;[];;;;text;t2_1q9bre0q;False;False;[];;Once One Piece reaches 1000 episodes I’ll thrown in a upvote just like on r/manga even tho I’ve never read or watched it.;False;False;;;;1610294187;;False;{};girs0sx;False;t3_ktrgan;False;True;t1_ginm8f9;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/girs0sx/;1610333782;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lots_of_Regret;;;[];;;;text;t2_oj83zr9;False;False;[];;haha I know 122 is definitely more monumental it’s just that when I see people listing chapters that are going to be amazing they always leave out 121;False;False;;;;1610294670;;False;{};girsw4n;False;t3_ktrgan;False;True;t1_gir3dk9;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/girsw4n/;1610334351;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dark77638;;;[];;;;text;t2_14cb1i;False;False;[];;Yeah, 120 and 121 kinda get sandwiched between 119 and 122, an Everest episode. People kinda think 120 121 drop down but hell, drop from Everest is still on Himalayas!;False;False;;;;1610295716;;False;{};giruttk;False;t3_ktrgan;False;True;t1_girsw4n;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giruttk/;1610335585;2;True;False;anime;t5_2qh22;;0;[];True -[];;;Ippwnage;;;[];;;;text;t2_790zhsxg;False;False;[];;Once I saw the OP and the video on Pronhub I am pretty sure I know now.;False;False;;;;1610303043;;False;{};gis9fwg;False;t3_kto98k;False;True;t1_giohj4l;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gis9fwg/;1610344576;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RandomPlayerJoined;;;[];;;;text;t2_nwyeg;False;False;[];;Couldn’t tell it was a “WM”, thanks again.;False;False;;;;1610309155;;False;{};giskufl;False;t3_ktrgan;False;True;t1_girilag;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giskufl/;1610351063;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yuno_kun44;;;[];;;;text;t2_8kr1ktbr;False;False;[];;Is this Japanese ranking?;False;False;;;;1610311047;;False;{};gisor11;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gisor11/;1610353197;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;"No, it is the karma from the episode discussions on this subreddit. - -[See also here.](https://www.reddit.com/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginm5iz/)";False;False;;;;1610311769;;False;{};gisqby6;False;t3_ktrgan;False;True;t1_gisor11;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gisqby6/;1610354041;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Agreeable_Goal_6290;;;[];;;;text;t2_8y6ovfr4;False;False;[];;The dismantling of the golden dawn lol;False;False;;;;1610312800;;False;{};gissj6o;False;t3_ktrgan;False;True;t1_giq7sf8;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gissj6o/;1610355264;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Agreeable_Goal_6290;;;[];;;;text;t2_8y6ovfr4;False;False;[];;Nah this was I believe 229 which was basically just a filler fight against people that don’t matter for black clover at least;False;False;;;;1610312863;;False;{};gissnug;False;t3_ktrgan;False;True;t1_gioacuq;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gissnug/;1610355335;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Agreeable_Goal_6290;;;[];;;;text;t2_8y6ovfr4;False;False;[];;Pretty good stuff all around, pretty impressed that bc made 5 with a fodder fight honestly if they pull out vanica vs Noelle with good Animation then gg;False;False;;;;1610313299;;False;{};gistjnx;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gistjnx/;1610355815;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nora_1_2_3;;;[];;;;text;t2_m4svkqo;False;False;[];;[livechart.me](https://www.livechart.me/anime/9937) lists it as 24 episodes total;False;False;;;;1610316075;;False;{};gisz9ow;False;t3_kto98k;False;True;t1_gioezf8;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gisz9ow/;1610358905;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gigawatt007;;;[];;;;text;t2_7bgbek9x;False;False;[];;"> A nice episode with a feminist mesage. - -whats feminist about not being a deranged phycopath? - -> I also liked that Moroha (whom I believe may be a lesbian) applauded her. - -she is 14 , The series is no longer a action romcom, there hasn't been a single romantic interest in the entire series and wont be any. ->I'm going to be stubborn on my dislike for Sessrin - -why tho";False;False;;;;1610320436;;False;{};git8gdu;False;t3_kto98k;False;True;t1_ginhlhd;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/git8gdu/;1610363869;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lnombredelarosa;;;[];;;;text;t2_353zdp0k;False;False;[];;">whats feminist about not being a deranged phycopath? - -Sociopath (unless you mean Riku) and you're overimplifying it. The episode showed a woman speaking her mind about a marriage she had been forced to by a man who never asked for her opinion and just assumed she had to love him back. - ->she is 14 , The series is no longer a action romcom, there hasn't been a single romantic interest in the entire series and wont be any. - -[You sure?](https://officialinuyasha.tumblr.com/post/632012949184184320/officialinuyasha#notes) - ->why tho - -I could ask you the same about your dislike for the introduction of love interests. As to my reasons there are many potential anwers to that but the real one is that while watching the original series I honestly always saw them as being like father and daughter.";False;False;;;;1610322828;;1610323307.0;{};gitdb2y;False;t3_kto98k;False;True;t1_git8gdu;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gitdb2y/;1610366593;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Broly_;#12679b;ann;[];d01f2890-bcaf-11e4-9b5c-22000b3d83a4;Illegal Streaming Sites;light;text;t2_rrxeu;False;False;[];;About time.;False;False;;;;1610323133;;False;{};gitdxq7;False;t3_kto98k;False;True;t1_gin8pak;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gitdxq7/;1610366958;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mypetCthulhu;;;[];;;;text;t2_28mnc9fp;False;False;[];;🎶I'm a feudal girl in a feudal world🎶;False;False;;;;1610333215;;False;{};gityl4y;False;t3_kto98k;False;True;t1_girctfz;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gityl4y/;1610380411;2;True;False;anime;t5_2qh22;;0;[]; -[];;;-l2477m-;;;[];;;;text;t2_6oyq3f28;False;False;[];;you think THATS sad? yall've never seen grave of the fireflies. holy shit dude... ive never cried from a film except for the green mile until i saw this;False;False;;;;1610340689;;False;{};giucmff;False;t3_ktkzvp;False;True;t1_gimon3o;/r/anime/comments/ktkzvp/whats_the_saddest_anime/giucmff/;1610390671;2;True;False;anime;t5_2qh22;;0;[]; -[];;;-l2477m-;;;[];;;;text;t2_6oyq3f28;False;False;[];;u/Hot_Independence_433 if you want an S+ ranked movie: its Grave of the Fireflies;False;False;;;;1610340800;;False;{};giuct6a;False;t3_ktkzvp;False;True;t3_ktkzvp;/r/anime/comments/ktkzvp/whats_the_saddest_anime/giuct6a/;1610390800;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aryvd_0103;;;[];;;;text;t2_549u7prl;False;False;[];;Same;False;False;;;;1610340936;;False;{};giud1ap;False;t3_ktrgan;False;True;t1_giod0qv;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giud1ap/;1610390965;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Starryalaxy;;;[];;;;text;t2_8l6inl27;False;False;[];;I really enjoyed the first op...;False;False;;;;1610341648;;False;{};giue5df;False;t3_kto98k;False;True;t1_giporuz;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/giue5df/;1610391749;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OliviaRay_;;;[];;;;text;t2_9cy4li2z;False;False;[];;"The best anime movie I watched is A Silent Voice. This movie surely has a good morale and is a must watch. - -Here's a list of the best anime movies to watch. Do check it out \~ [https://www.purevpn.com/blog/best-anime-movies-of-all-time/](https://www.purevpn.com/blog/best-anime-movies-of-all-time/)";False;False;;;;1610348850;;False;{};giuo1yy;False;t3_ktnb9e;False;False;t3_ktnb9e;/r/anime/comments/ktnb9e/suggest_me_some_good_anime_movies/giuo1yy/;1610398823;2;True;False;anime;t5_2qh22;;0;[]; -[];;;zz2000;;;[];;;;text;t2_nc21g;False;False;[];;True, not to mention the new season of Hero Academia is slated to take over Yashahime's Japanese timeslot in late March.;False;False;;;;1610352406;;False;{};giut3pc;False;t3_kto98k;False;True;t1_gioidpj;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/giut3pc/;1610402130;1;True;False;anime;t5_2qh22;;0;[]; -[];;;stella_foxxx;;;[];;;;text;t2_6bcjbp7d;False;False;[];;Nope I am not allowed to see it, my father saw it and will not let me or my brother watch it...;False;False;;;;1610367599;;False;{};giveshu;False;t3_ktkzvp;False;True;t1_giucmff;/r/anime/comments/ktkzvp/whats_the_saddest_anime/giveshu/;1610414198;1;True;False;anime;t5_2qh22;;0;[]; -[];;;comandoram;;;[];;;;text;t2_7979ne0;False;False;[];;And it did, in just 17 hours.;False;False;;;;1610369301;;False;{};givi136;False;t3_ktrgan;False;True;t1_gioajz6;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/givi136/;1610415829;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MMBook;;;[];;;;text;t2_3pqytndm;False;False;[];;Attack on Titan really came back and destroyed it 👑❤️ if mappa keep it up the rest of the season will destroy everything;False;False;;;;1610377313;;False;{};givyabk;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/givyabk/;1610424960;3;True;False;anime;t5_2qh22;;0;[]; -[];;;s_needles;;;[];;;;text;t2_84vsy2rx;False;False;[];;"to be 100% honest, i feel like the show STARTED with this episode. everything before it was just to show us where everyone is before the main conflict starts. - -when i’m rewatching the series i’ll probably just start here 🤣";False;False;;;;1610386610;;False;{};giwlm4u;False;t3_kto98k;False;True;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/giwlm4u/;1610437730;1;True;False;anime;t5_2qh22;;0;[]; -[];;;riajulia;;;[];;;;text;t2_ep9qz;False;False;[];;"Wow all the EDs are all female vocal bangers! First Uru for ED1, now Ryokuoushoku Shakai (check them out on the YT channel The First Take). - -Looks like OPs will always be Johnny’s. Sixtones, NEWS (although the OG Inuyasha theme with V6 will always have my heart though >.<)";False;False;;;;1610431905;;False;{};giz3wmi;False;t3_kto98k;False;False;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/giz3wmi/;1610496132;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pipeormillwright;;;[];;;;text;t2_4fekp4d3;False;False;[];;"I felt robbed. - -If this was a shounen the MC would have done that. - -But instead the super strong guy.... kills himself.";False;False;;;;1610455148;;False;{};gizst1u;False;t3_kto98k;False;True;t1_ginmlyi;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gizst1u/;1610511954;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok-Sense5532;;;[];;;;text;t2_8c7ppe1e;False;False;[];;"Re:zero will not win for the karma records this time around, don't know about the climax eps but hoping that it will give AOT Final Season a run for its money. Arcs 5 and 6 would be record breaking for the future though especially if whitefox focuses on it, but right now, they probably are focusing on Mushoku tensei. - -AOT definitely wins this year for us, Don't know about Japan though, since some animes are also being hyped right there plus the competition this time is high with Jobless reincarnation on the mix (though the mc imo is not my type, definitely not my thing but good novel writingwise)";False;False;;;;1610466327;;False;{};gj0bww3;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gj0bww3/;1610523372;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Barry-Ben-69;;;[];;;;text;t2_519jz92k;False;False;[];;I’m just happy to see shimizaki vs everyone so high up;False;False;;;;1610494531;;False;{};gj20prl;False;t3_ktmos6;False;True;t3_ktmos6;/r/anime/comments/ktmos6/my_top_100_anime_fights_ranked/gj20prl/;1610561666;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610513285;;False;{};gj2ywwv;False;t3_kto98k;False;True;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gj2ywwv/;1610585624;1;True;False;anime;t5_2qh22;;0;[]; -[];;;l3rambi;;;[];;;;text;t2_34lz9vnl;False;True;[];;"I was sooo happy they depicted it though. Because now when girls start to see this happen in their real lives, they'll have this as like a blueprint in their minds and know what it leads to. - -I think it will help girls recognize signs of abuse.";False;False;;;;1610581315;;False;{};gj65ppw;False;t3_kto98k;False;True;t1_gindrzr;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gj65ppw/;1610658415;2;True;False;anime;t5_2qh22;;0;[]; -[];;;l3rambi;;;[];;;;text;t2_34lz9vnl;False;True;[];;I died, was so happy;False;False;;;;1610581337;;False;{};gj65rae;False;t3_kto98k;False;True;t1_ginwiul;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gj65rae/;1610658444;1;True;False;anime;t5_2qh22;;0;[]; -[];;;l3rambi;;;[];;;;text;t2_34lz9vnl;False;True;[];;Also - she said it's useless but *hello* pictures;False;False;;;;1610581542;;False;{};gj6664m;False;t3_kto98k;False;True;t1_gio5vyn;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gj6664m/;1610658724;1;True;False;anime;t5_2qh22;;0;[]; -[];;;l3rambi;;;[];;;;text;t2_34lz9vnl;False;True;[];;I am just shocked. Profoundly.;False;False;;;;1610581633;;False;{};gj66cq9;False;t3_kto98k;False;True;t1_giqapp3;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gj66cq9/;1610658845;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SogePrinceSama;;MAL;[];;http://myanimelist.net/animelist/teacake911;dark;text;t2_p55wn;False;False;[];;Uhh, you realize Kagome was 15 and had tons of romance in Inuyasha right? Rin was like 11 and she banged Sesshoumaru, why do you think a Japanese anime won't feature any romance for 14-year-old Moroha? Leave your Western bias at the door when you watch another country's art.;False;False;;;;1610594857;;False;{};gj6vqtc;False;t3_kto98k;False;True;t1_git8gdu;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gj6vqtc/;1610675393;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Babel_Triumphant;;;[];;;;text;t2_5fkxk;False;False;[];;People have some rose-tinted glasses. There was a whole hell of a lot of filler in original inuyasha, even in season 1. The show took its time, but the filler episodes were important to developing the cast. Heck, this episode revealing who burned down the forest so early was actually what surprised me.;False;False;;;;1610598732;;False;{};gj72h0n;False;t3_kto98k;False;True;t1_ginbcgt;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gj72h0n/;1610679771;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Babel_Triumphant;;;[];;;;text;t2_5fkxk;False;False;[];;Absolutely. I think a lot of people haven't rewatched original Inuyasha recently enough to remember how much monster of the week there was, and how great it was for developing the characters.;False;False;;;;1610598821;;False;{};gj72mav;False;t3_kto98k;False;True;t1_giqa0to;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gj72mav/;1610679865;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Babel_Triumphant;;;[];;;;text;t2_5fkxk;False;False;[];;The perils seem pretty transparently first-act villains to me, given that the heroines are pretty much on-level with them without any upgrades.;False;False;;;;1610598917;;False;{};gj72s2h;False;t3_kto98k;False;True;t1_ginhlhd;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gj72s2h/;1610679971;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lnombredelarosa;;;[];;;;text;t2_353zdp0k;False;False;[];;"Agreed. After Zero, Riku and Sesshomaru take over as main villains and introduce more competent opponents we are probably gonna start getting some nice powerups like say - -* Towa getting a proper sword and training - * I'm betting on her wielding Tokijin, which is also broken but has actual power and therefore could allow her to wield a stronger energy sword -* Moroha being able to gain control and stamina in her Beniyasha form, now not falling asleep afterwards -* Setsuna learning to control her poison, maybe projecting it in her tornado ala Naraku -* Hisui getting the orange pearl, which is hinted to grant simmilar abilities to Miroku's wind tunnel, in turn reactivating the residual energy of the curse that might still be in his hand -* Maybe Takechiyo getting the green one -* Riku getting the sabre he had in the opening to be better anle to channel his pearls' powers";False;False;;;;1610600097;;1610600459.0;{};gj74ob5;False;t3_kto98k;False;True;t1_gj72s2h;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gj74ob5/;1610681220;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Babel_Triumphant;;;[];;;;text;t2_5fkxk;False;False;[];;I'd love to see Tokijin again, that sword is awesome. It was tough to see it go.;False;False;;;;1610600707;;False;{};gj75m5j;False;t3_kto98k;False;True;t1_gj74ob5;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gj75m5j/;1610681801;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"I don't get it, why was this girl considered to be such a beauty? - -""But why would a man abduct this (allegedly) beautiful girl?"" ""Because he wanted her all to himself."" ""Huh? What do you mean?"" - -What was even the point of giving Moroha the Beniyasha Destroyer of Worlds form if she never uses it when it would actually come in handy? - -Sesshoumaru stood by and let them try to burn his daughters to death. ""If they are weak enough to fall to something like this, they are no daughters of mine."" - -What a pathetic and anticlimactic way for a ""god"" to die. And the inconsiderate bastard didn't even leave his head. - -Anyway, it took me 6 days to get around to watching this episode. Season being busy as it is, I may just put the series on hold.";False;False;;;;1610766845;;False;{};gjf0hjp;False;t3_kto98k;False;True;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gjf0hjp/;1610861636;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kimberly279111;;;[];;;;text;t2_9claauix;False;False;[];;"So hear me out... -What if Zero, kirinmaru, sesshomaru, Riku, and Inuyasha are related? -But Sesshomaru took the perils side...";False;False;;;;1610769752;;False;{};gjf5aog;False;t3_kto98k;False;True;t3_kto98k;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gjf5aog/;1610864344;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AngelIshtar7;;;[];;;;text;t2_1vkmdzqt;False;False;[];;Omgosh we both agree on the same thing. Something else that makes me upset was in the previous episode Towa and Setsuna didn’t use their rainbow pearls to fight the man eating demon but Setsuna decides to ask Miroku to undo her seal to fight this thing but then in this episode they decide to use the strength of the rainbow pearls. The story progress feels off and things that should matter aren’t. I put the series on hold up to 5 episode releases and I wanna do the same again because it’s just really small things that even in Inuyasha made sense then this series.;False;False;;;;1611094156;;False;{};gjvnb97;False;t3_kto98k;False;True;t1_gjf0hjp;/r/anime/comments/kto98k/hanyo_no_yashahime_episode_14_discussion/gjvnb97/;1611219259;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1611185734;;False;{};gk03jte;False;t3_ktn97c;False;True;t1_gio87xx;/r/anime/comments/ktn97c/kamisama_kiss_special_episodes_ova/gk03jte/;1611315772;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1611185735;moderator;False;{};gk03jvi;False;t3_ktn97c;False;True;t1_gk03jte;/r/anime/comments/ktn97c/kamisama_kiss_special_episodes_ova/gk03jvi/;1611315772;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1611185754;;False;{};gk03l53;False;t3_ktn97c;False;True;t1_gioiii8;/r/anime/comments/ktn97c/kamisama_kiss_special_episodes_ova/gk03l53/;1611315793;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;Very curious why she thought they were familiar then, maybe they were watching armin turn and saw him exit the Titan?;False;False;;;;1610319755;;False;{};git71jq;False;t3_kujurp;False;True;t1_git0cic;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git71jq/;1610363106;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GirtabulluBlues;;;[];;;;text;t2_3c6d45zo;False;False;[];;"Some seinen gets published in shounen mags if theres crossover. I wouldnt just cut it by the magazine labels; its obvious the intened market for it is more adult than shounen stuff, and its being inverting, subverting and just generally quietly taking the piss out of shounen tropes for a solid 4 seasons now, all whilst maintaining a pretty serious plot and heavy themes; that screams seinen to me";False;False;;;;1610319756;;False;{};git71mr;False;t3_kujurp;False;True;t1_git1wq9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git71mr/;1610363108;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PixalPop;;;[];;;;text;t2_1368zw;False;False;[];;I disagree on the animation part so far. They're known for 3D use and I personally hate it;False;False;;;;1610319765;;False;{};git72d9;False;t3_kujurp;False;True;t1_gisbw9m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git72d9/;1610363119;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;myrmonden;;;[];;;;text;t2_f0rs6;False;False;[];;"oh yes the whole thing just SCREAMS German history - -Eldians being forced to have armbands like the Jewish yellow badge, the ""shame"" badge. - -Tybur hero story is also similar to Siegfried and other typical German folklore. - -Tybur himself acts similar to the HRE(holy roman empire) leaders with his royal friend system basically, the classic diplomatic marriage strategy etc. And historically, HRE was the real German ""country"" not what today is Germany, as that in the pat was different states, prince elect states etc and the modern German country started forming much later with Prussia. - -Tybur family represent the HRE shadow family, controlling the empire, which is also another HRE historical reference with the whole shadow country thing when the Italian states left the HRE as it was seen as not powerful enough etc, anyway that is called sometimes the shadow kingdom etc. - -Historically HRE name obviously comes from the Roman Empire. (and also then that the Shadow Kingdom or Shadow Empire HRE states specifically existed in city state Italy, such as Florence, and Venice - which previously was part of the roman empire) - -This episode (more so on the manga) really showed the roman connection to the Eldians and Marleys, again then connecting the Marleys as Romans - HRE - Nazi Germany. - -&#x200B; - -Basically Marley is represented in 3 historical European empire states. - -&#x200B; - -Other European reference is also on the Nose imo like - -9 titan powers - 9 titan - 9 worlds in norse mythology, jotuns of course a central part of norse mythology.";False;False;;;;1610319771;;False;{};git72sm;False;t3_kujurp;False;False;t1_git5nz5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git72sm/;1610363125;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;A seinen protag.;False;False;;;;1610319778;;False;{};git73at;False;t3_kujurp;False;True;t1_git5nbt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git73at/;1610363132;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SuckDragon;;;[];;;;text;t2_4adk84sj;False;False;[];;"I got one thing to say to manga readers. - -Stop crying that 2Volt was used for the end scene. Just because you thought something else will be used doesnt make it bad instantly. We do this with every little thing, if its not like we imagined it we dont like it. Honestly Owl's quote becomes better every week, because we do keep repeating the same mistakes. Im saying this beacuse after a good while we love the things we hated on the first watch. Just to point out a couple, it was the same with ""Red Swan"" and ""My War"" too. The scene was awesome and probably your real problem is that the music wasnt loud enough or that it didnt start playing early enough (in all the ""fixed"" versions on YT this was the only noticible difference), not the song choice. Plus why care *this* much about the music in a scene like that, I dont get it. (If anything it was really fitting because of how the song ends, perfect for ending an episode) - -Anyway, ya'll understand me? Good! - -Now to not disappoint our lord and savior Eren, lets keep moving forward from this music argument and just accept that its this way. - -Thank you everyone!";False;False;;;;1610319790;;False;{};git749f;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git749f/;1610363147;34;True;False;anime;t5_2qh22;;0;[]; -[];;;BasedFunnyValentine;;;[];;;;text;t2_2dv5gtho;False;False;[];;Eren said fuck Covid, I’m the biggest enemy of 2021;False;False;;;;1610319801;;False;{};git752y;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git752y/;1610363160;5;True;False;anime;t5_2qh22;;0;[]; -[];;;xanas263;;;[];;;;text;t2_z8ozv;False;False;[];;">Now he didn't even think twice about killing a kid that he considered a good person, - -Actually the reason he told Falco to stay was because he knows he is safer with Reiner who can protect them with titan form than he is out on the street. - -Tho the people in the building above him are a different story.";False;False;;;;1610319803;;False;{};git756w;False;t3_kujurp;False;False;t1_gisi1jl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git756w/;1610363161;19;True;False;anime;t5_2qh22;;0;[]; -[];;;buttcheeksontoast;;;[];;;;text;t2_k8bd2;False;False;[];;"Didn't the whole world find out about the failed mission on Paradis? Pretty sure that was the justification for the first episode about the new war that sprang up, the ""Mid-East Alliance"" or whatever trying their luck because the Paradis operation failure weakened Marley's military power. - -And as for knowing the exact details I mean the the Tyburs are implied to have been pulling the strings from the shadows of Marley so they would sure as hell know the exact outcome of the Paradis mission.";False;False;;;;1610319804;;False;{};git75ao;False;t3_kujurp;False;False;t1_gisbq0k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git75ao/;1610363163;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Raknel;;;[];;;;text;t2_xwf5o;False;False;[];;"Damn that's a really good interpretation. - -Eren even tried to give Reiner a way out by painting him as a victim and Reiner was the one who corrected him and admitted everything.";False;False;;;;1610319806;;False;{};git75fp;False;t3_kujurp;False;False;t1_git6a1x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git75fp/;1610363165;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;They get to ride Pieck every week;False;False;;;;1610319809;;False;{};git75n0;False;t3_kujurp;False;False;t1_gisc0j3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git75n0/;1610363167;16;True;False;anime;t5_2qh22;;0;[]; -[];;;blitzbom;;;[];;;;text;t2_6h9w1;False;False;[];;I'm so hype for this fight.;False;False;;;;1610319829;;False;{};git776c;False;t3_kujurp;False;True;t1_gisapyn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git776c/;1610363191;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IR8Things;;;[];;;;text;t2_glr4l;False;False;[];;"Eren really said, ""reverse uno.""";False;False;;;;1610319853;;False;{};git78zt;False;t3_kujurp;False;True;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git78zt/;1610363217;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SwiftAndFoxy;;;[];;;;text;t2_3i63yli7;False;False;[];;There was no official or active war, people just hated Eldians and Fritz.;False;False;;;;1610319853;;False;{};git78zu;False;t3_kujurp;False;True;t1_git6xbx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git78zu/;1610363217;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nanashi-74;;;[];;;;text;t2_5x0k2vam;False;False;[];;I think he was too damn good of a character to die. Since no one is talking about it maybe he's the warhead titan or however you say it in english;False;False;;;;1610319857;;False;{};git7991;False;t3_kujurp;False;False;t1_gisdakp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7991/;1610363221;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Down_The_Rabbithole;;;[];;;;text;t2_bgzcy;False;False;[];;Well that's correct, I haven't seen it. Only read it.;False;True;;comment score below threshold;;1610319858;;False;{};git79a7;False;t3_kujurp;False;True;t1_git6bcd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git79a7/;1610363222;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;HawkBlawk;;;[];;;;text;t2_86o86ule;False;False;[];;How are people complaining? I thought the entire episode was phenomenal. The music seemed to match it pretty damn well.;False;False;;;;1610319877;;False;{};git7aq8;False;t3_kujurp;False;True;t1_git1w7t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7aq8/;1610363246;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Voi69;;;[];;;;text;t2_lcnz6;False;False;[];;If Reiner had done that he would have been eaten by the next brainwashed kid in line and nothing would have changed.;False;False;;;;1610319881;;False;{};git7b0m;False;t3_kujurp;False;False;t1_git6ru4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7b0m/;1610363251;6;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;They weren't at war before. Everyone else just left Paradis Island on its own for a 100 years with the exception of Marley who kept sending Titans and Warriors to infiltrate. Willy Tybur's goal was to unite the world into a single army and conduct a full scale invasion on the island.;False;False;;;;1610319886;;False;{};git7bcx;False;t3_kujurp;False;False;t1_git6xbx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7bcx/;1610363257;5;True;False;anime;t5_2qh22;;0;[]; -[];;;sjupiter92;;;[];;;;text;t2_s5kns1i;False;False;[];;Already 11k karma? Well deserved tho, it was a 10/10 episode. I was waiting for a long time to see this animated and it didn't disappoint. Can't wait for next week!;False;False;;;;1610319895;;False;{};git7c0c;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7c0c/;1610363266;7;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;Idk man. It looked like he was snapped in half and I don't see no steam...;False;False;;;;1610319895;;False;{};git7c1e;False;t3_kujurp;False;False;t1_git44o5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7c1e/;1610363266;27;True;False;anime;t5_2qh22;;0;[]; -[];;;Elaego;;;[];;;;text;t2_55zd6hhb;False;False;[];;You can see in the last shot he is literally ripped in half. If he was a titan, he would be able to regenerate, but he is just about to be swallowed by Eren.;False;False;;;;1610319897;;False;{};git7c7a;False;t3_kujurp;False;False;t1_git44o5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7c7a/;1610363269;16;True;False;anime;t5_2qh22;;0;[]; -[];;;SmartRaccoon3643;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;echidna cultist;dark;text;t2_7jtp3l74;False;False;[];;"I have a feeling it's either an actual soldier who was bought out by the scouts or a new talent from the regiment who is newly graduated. - -Armin doesnt have a beard in the PV art.";False;False;;;;1610319903;;False;{};git7clr;False;t3_kujurp;False;False;t1_gisjuyt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7clr/;1610363275;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;"They were, but now it's an organised attack with every nation around the world chipping in to lend a hand. ""The Declaration of War"" episode title also had a double-meaning in Eren also effectively declaring war on his enemies.";False;False;;;;1610319909;;False;{};git7d0o;False;t3_kujurp;False;False;t1_git6xbx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7d0o/;1610363281;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;Why would Pieck know him though she only saw his burned out corpse;False;False;;;;1610319954;;False;{};git7g72;False;t3_kujurp;False;False;t1_gisot5f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7g72/;1610363329;4;True;False;anime;t5_2qh22;;0;[]; -[];;;seninn;;MAL;[];;http://myanimelist.net/animelist/Senninn0;dark;text;t2_fw8p2;False;False;[];;Yes. The things that are happening and the way they are depicted are imo the apotheosis of the series. Isayama has evolved to new heights as an artist in the past 10 chapters.;False;False;;;;1610319961;;False;{};git7gnp;False;t3_kujurp;False;True;t1_git437i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7gnp/;1610363335;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRisenThunderbird;;;[];;;;text;t2_r9yak;False;False;[];;I feel like I need to know more about what is going on with Eren and Co. and what their actual plans/goals are before making any judgement. We've been so internalized on Falco and Reiner and the other Marley Eldians that anything about the squad from Paradis is a complete blank;False;False;;;;1610319970;;False;{};git7hbl;False;t3_kujurp;False;True;t1_gisurtq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7hbl/;1610363345;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blitzbom;;;[];;;;text;t2_6h9w1;False;False;[];;"I don't know that I've ever been so pulled into a single episode so far. Outside of the Armored and Colossal reveal. - -I got done and rewatched it. The end was perfection. In a both sides are bad way. - -Eren ""You want war, you get it. But on our terms and on your land.""";False;False;;;;1610319973;;False;{};git7hiw;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7hiw/;1610363348;9;True;False;anime;t5_2qh22;;0;[]; -[];;;buttcheeksontoast;;;[];;;;text;t2_k8bd2;False;False;[];;"spoiler tag. try clicking ""source"" and it should show the original text";False;False;;;;1610319978;;False;{};git7hv3;False;t3_kujurp;False;True;t1_gisp00z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7hv3/;1610363354;1;True;False;anime;t5_2qh22;;0;[]; -[];;;meeblin;;;[];;;;text;t2_mx0nt;False;False;[];;People keep saying Willy declared a war and then instantly became its first casualty, and while that's funny, Eren transformed in the basement of a heavily populated apartment building. Dozens of people died in the last 30 seconds of this episode, Willy one of the last among them.;False;False;;;;1610319984;;False;{};git7ib0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7ib0/;1610363360;93;True;False;anime;t5_2qh22;;0;[]; -[];;;ThunderSmurf48;;;[];;;;text;t2_116216;False;False;[];;Eren having already having his hand cut like a dead man's switch was amazing;False;False;;;;1610320010;;False;{};git7k61;False;t3_kujurp;False;False;t1_gisrm9j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7k61/;1610363388;64;True;False;anime;t5_2qh22;;0;[]; -[];;;xin234;;;[];;;;text;t2_87y7e;False;False;[];;Strongly implied in the anime, explicitly said in the manga.;False;False;;;;1610320028;;False;{};git7lh0;False;t3_kujurp;False;False;t1_gisuhat;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7lh0/;1610363408;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;The writing and direction were spot on. This is how you do a 'hype' episode without action.;False;False;;;;1610320035;;False;{};git7lxd;False;t3_kujurp;False;False;t1_git6xbh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7lxd/;1610363415;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Alderdash;;;[];;;;text;t2_8k28r;False;False;[];;"Honestly? I mostly feel sad just now. I feel a bit disconnected from Eren and his folks since it's been 4 years since we saw them, standing with their feet in the sand, looking at the sea and with something almost like hope in their eyes. What a waste this whole thing has been of so many lives. - -I had the closing image from season 3 - Eren, Mikasa and Armin as kids - as my desktop image for a year on my old laptop. My new laptop has something different because I was pretty sure that picture was going to break my heart in this season, and so far it's looking that way.";False;False;;;;1610320038;;False;{};git7m4q;False;t3_kujurp;False;False;t1_gischn4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7m4q/;1610363418;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Vindicare605;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aresendez88;light;text;t2_656ck;False;False;[];;Should I be blaming a translation error or something because the guy used the word Collosal in his big story that's what made me start questioning everything.;False;False;;;;1610320039;;False;{};git7m6z;False;t3_kujurp;False;True;t1_gisxlxp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7m6z/;1610363419;1;True;False;anime;t5_2qh22;;0;[]; -[];;;justking1414;;;[];;;;text;t2_4ohxaz5j;False;False;[];;In the manga, it happened on the same page. He declared war as Eren attacked him from behind;False;False;;;;1610320046;;False;{};git7mr4;False;t3_kujurp;False;True;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7mr4/;1610363428;3;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;Yep.;False;False;;;;1610320050;;False;{};git7mzw;False;t3_kujurp;False;False;t1_git6si9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7mzw/;1610363432;5;True;False;anime;t5_2qh22;;0;[]; -[];;;binsjee;;;[];;;;text;t2_i3dov;False;False;[];;Considering they basically enslave an entire race and force them to live in designated areas, wearing armbands to signify what you are and are constantly just shitting on them in general, yeah its safe to assume the marleyan military are nazi's. Wonder if this means Willy is hitler in this analogy;False;False;;;;1610320071;;False;{};git7oks;False;t3_kujurp;False;False;t1_git168m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7oks/;1610363457;57;True;False;anime;t5_2qh22;;0;[]; -[];;;BadBehaviour613;;;[];;;;text;t2_3q17kno;False;False;[];;"""You are a good person, Reiner. Don't beat yourself for past crimes.""- guy who minutes later detonates his anime fantasy power on a crowd of civilian.";False;False;;;;1610320078;;False;{};git7p50;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7p50/;1610363465;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Hussor;;MAL;[];;http://myanimelist.net/animelist/Hussor;dark;text;t2_j55xp;False;False;[];;While there have been really cool scenes the story hasn't really progressed much, so in my opinion it's not as good as 120-122, but the latest chapter was great and it seems from next chapter we're back to plot heavy stuff to finish off.;False;False;;;;1610320084;;False;{};git7pmo;False;t3_kujurp;False;True;t1_git7gnp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7pmo/;1610363472;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Pedarsen;;;[];;;;text;t2_eup7i;False;False;[];;"The Marleyans beeing able to take control of the Eldians and the Titans makes way more sense now with what the King did. It also makes more sense that he would want them all to forget about the outside world and never terrorize it again after he dies. - -Though Marleyans just doing the same shit the Eldians did after getting their powers just shows how everyone are all good and evil.";False;False;;;;1610320089;;1610320976.0;{};git7pzr;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7pzr/;1610363478;7;True;False;anime;t5_2qh22;;0;[]; -[];;;blitzbom;;;[];;;;text;t2_6h9w1;False;False;[];;"I find in most stories once they leave the walls (maze, bubble, etc) it goes downhill. - -Not this one. Not even close.";False;False;;;;1610320105;;False;{};git7r7t;False;t3_kujurp;False;False;t1_gissbj1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7r7t/;1610363496;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Large_Dungeon_Key;;;[];;;;text;t2_2bd3w9tn;False;False;[];;"Now, this is a story all about how -My life got flipped-turned upside down -And I'd like to take a minute -Just sit right there -I'll tell you how I became the titan of a town called Shiganshina";False;False;;;;1610320106;;False;{};git7r9g;False;t3_kujurp;False;False;t1_gisbqfm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7r9g/;1610363497;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610320138;;1610321498.0;{};git7to0;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7to0/;1610363531;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610320139;;False;{};git7tpo;False;t3_kujurp;False;True;t1_git6r22;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7tpo/;1610363532;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Legendseekersiege5;;;[];;;;text;t2_5nio4gd;False;False;[];;Ahbi guess I missed that I only saw him bloodied;False;False;;;;1610320142;;False;{};git7tyi;False;t3_kujurp;False;False;t1_git7c7a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7tyi/;1610363536;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Raknel;;;[];;;;text;t2_xwf5o;False;False;[];;The well is surrounded by earth, it's deep underground, they can't really do much about that. A basement is essentially just a small pit with bricks on top, easily demolished.;False;False;;;;1610320144;;False;{};git7u35;False;t3_kujurp;False;True;t1_git51ba;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7u35/;1610363538;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheEnergizer1985;;;[];;;;text;t2_do39o;False;False;[];;So what would you have the Eldians living there do? Rebel and get executed?;False;False;;;;1610320152;;False;{};git7umn;False;t3_kujurp;False;True;t1_git14po;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7umn/;1610363547;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MartinaS90;;;[];;;;text;t2_13onma;False;False;[];;Fuck it's Levi vs the Beast Titan all over again, and Reiner vs Eren in Shiganshina again too. And Frieda vs Grisha again. They always complain about the ost...;False;False;;;;1610320158;;False;{};git7v3r;False;t3_kujurp;False;True;t1_git1w7t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7v3r/;1610363554;2;True;False;anime;t5_2qh22;;0;[]; -[];;;justking1414;;;[];;;;text;t2_4ohxaz5j;False;False;[];;I feel conflicted over Willy. Seems like he really was trying to help the Eldians (at least the ones not on paradise island) but his death was just so funny;False;False;;;;1610320171;;False;{};git7w1l;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7w1l/;1610363569;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JonzieJones;;;[];;;;text;t2_9xnvf;False;False;[];;Neat little detail I noticed during Willy's history lesson is that all of the titans are [represented](https://imgur.com/a/fqdC3O4).;False;False;;;;1610320197;;False;{};git7xwp;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7xwp/;1610363597;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Krriat;;;[];;;;text;t2_3l1qe94o;False;False;[];;just perfect;False;False;;;;1610320213;;False;{};git7z7q;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7z7q/;1610363615;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;Remember all the colossal Titans in that one ED? Those are the Titans he’s talking about.;False;False;;;;1610320223;;False;{};git7zzy;False;t3_kujurp;False;False;t1_gisuhmp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git7zzy/;1610363626;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Voltage97;;;[];;;;text;t2_8wdsu;False;False;[];;That yo mama jokes are taking it too far.;False;False;;;;1610320251;;False;{};git827w;False;t3_kujurp;False;False;t1_gisr82z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git827w/;1610363658;20;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;bruh fake or not your comment heavily implies spoilers. might wanna put that in a spoiler tag;False;False;;;;1610320253;;False;{};git82d7;False;t3_kujurp;False;False;t1_git7to0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git82d7/;1610363660;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TatteredTongues;;;[];;;;text;t2_xbrbp;False;False;[];;"If you go back to the scene where the soldier cuts the rope, you can clearly see their face, and it's not Armin (you can always compare it to Armin as we've seen him in the trailer, but I think the eyes alone should be enough of a giveaway). - - - -So whoever it is, she must remember him from someplace else.";False;False;;;;1610320259;;False;{};git82tu;False;t3_kujurp;False;True;t1_git71jq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git82tu/;1610363667;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tomato_blitz;;;[];;;;text;t2_ldej2d;False;False;[];;Watching this episode feels like Attack on Titan has now come back for real.;False;False;;;;1610320260;;False;{};git82wu;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git82wu/;1610363669;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;Not many have spoke about it in this thread but I think my favourite moment of the episode was the curtain raiser - the muffled sound of the trumpets playing through the walls as Eren, Reiner and Falco just sit in silence for 30 seconds listening together, each with a different expression. Falco is totally confused as to what is going on, Reiner is terrified of what Eren's true motivations for being here are and is struggling to figure out what to say while Eren just genuinely seems to be enjoying the music. Great stuff and it was a moment that improved on the manga for me.;False;False;;;;1610320284;;False;{};git84r0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git84r0/;1610363697;8;True;False;anime;t5_2qh22;;0;[]; -[];;;blitzbom;;;[];;;;text;t2_6h9w1;False;False;[];;"It's bad, but these were the same families who were cheering for a war that would kill families and civilians in the walls. - -They want war but not on thier land, on their terms. - -Eren gave them war, but on their land, on his terms.";False;False;;;;1610320302;;False;{};git863m;False;t3_kujurp;False;False;t1_gisurtq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git863m/;1610363717;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Raknel;;;[];;;;text;t2_xwf5o;False;False;[];;"> but I can’t really see why? - -This season is all about how ""villain"" is just a perspecive. You are free to decide which side you're on, if any.";False;False;;;;1610320319;;False;{};git87dt;False;t3_kujurp;False;True;t1_git7to0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git87dt/;1610363735;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vagabondchris;;;[];;;;text;t2_9re79isd;False;False;[];;Yooo!! That makes a lot more sense considering I don’t think Armin is that tall. I was getting too Meta thinking Armin changed his height as a disguise. I haven’t read the manga so I’m out of the loop.;False;False;;;;1610320322;;False;{};git87n7;False;t3_kujurp;False;True;t1_git6z71;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git87n7/;1610363739;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;yea we know that. comment above just makes no sense;False;False;;;;1610320324;;False;{};git87s0;False;t3_kujurp;False;True;t1_git4fyi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git87s0/;1610363742;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;Reiner finally apologized for killing Eren’s mom by anime logic they are best friends again.;False;False;;;;1610320334;;False;{};git88fj;False;t3_kujurp;False;True;t1_git1i2y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git88fj/;1610363751;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lunatoons291;;;[];;;;text;t2_16nhl574;False;False;[];;He was a tease lol;False;False;;;;1610320340;;False;{};git88ui;False;t3_kujurp;False;True;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git88ui/;1610363757;1;True;False;anime;t5_2qh22;;0;[]; -[];;;greyviewing;;;[];;;;text;t2_44j04vqh;False;False;[];;Couldn’t really tell if that was a beard or a chinstrap for the helmet.;False;False;;;;1610320349;;False;{};git89kd;False;t3_kujurp;False;False;t1_git7clr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git89kd/;1610363769;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bobsjobisfob;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/bobsjobisfob;light;text;t2_g11wq;False;False;[];;i love it when animes actually follow the source material instead of making shit up and mixing shit around for no reason *cough* beastars *cough* promised neverland;False;False;;;;1610320353;;False;{};git89ug;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git89ug/;1610363773;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;"Eren's trending worldwide on Twitter. Can't remember every single episode of an anime trending each week as it airs like AoT has this season. - -Hype is real.";False;False;;;;1610320363;;False;{};git8akg;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8akg/;1610363784;8;True;False;anime;t5_2qh22;;0;[]; -[];;;tomato_blitz;;;[];;;;text;t2_ldej2d;False;False;[];;Truly horrifying.;False;False;;;;1610320368;;False;{};git8axm;False;t3_kujurp;False;False;t1_git7ib0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8axm/;1610363790;11;True;False;anime;t5_2qh22;;0;[]; -[];;;MrElies;;;[];;;;text;t2_ualvr;False;False;[];;No one is ready, this shit is too damn good;False;False;;;;1610320391;;False;{};git8csx;False;t3_kujurp;False;True;t1_gisajvw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8csx/;1610363817;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aschentei;;;[];;;;text;t2_z1t0l;False;False;[];;tis but a scratch...wait...;False;False;;;;1610320408;;False;{};git8e1x;False;t3_kujurp;False;False;t1_gisdr7g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8e1x/;1610363836;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Shin_flope;;;[];;;;text;t2_109ygb;False;False;[];;I'm SO glad we didn't get a Talk No Jutsu conclusion to this conflict!!;False;False;;;;1610320411;;False;{};git8eap;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8eap/;1610363839;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Acheroni;;;[];;;;text;t2_8kyb7;False;False;[];;Fuck the titans, all my homies hate the titans.;False;False;;;;1610320416;;False;{};git8eqm;False;t3_kujurp;False;False;t1_git2tyj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8eqm/;1610363846;31;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;"In case you’ve made it 3 seasons thinking this was a nice calm non-violent slice of life. - -Theoretically there’s at least one person who watched only AOT Middle School before this season";False;False;;;;1610320428;;False;{};git8fp3;False;t3_kujurp;False;False;t1_gisq5v8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8fp3/;1610363860;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;Eren can 100% undo it but I believe he needs royal blood, only 2 people we know with royal blood are zeke and historia;False;False;;;;1610320434;;False;{};git8g73;False;t3_kujurp;False;False;t1_git5vr7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8g73/;1610363867;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Aschentei;;;[];;;;text;t2_z1t0l;False;False;[];;so...love is war?;False;False;;;;1610320436;;False;{};git8gdq;False;t3_kujurp;False;False;t1_gisldmu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8gdq/;1610363869;13;True;False;anime;t5_2qh22;;0;[]; -[];;;blitzbom;;;[];;;;text;t2_6h9w1;False;False;[];;"This series is funny like that. I remember people thinking the manga was going downhill when the monke titan showed up. - -Then it just gets better.";False;False;;;;1610320448;;False;{};git8h9u;False;t3_kujurp;False;False;t1_gismghz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8h9u/;1610363883;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Voltage97;;;[];;;;text;t2_8wdsu;False;False;[];;Willy singlehandedly ended the reunion arc.;False;False;;;;1610320450;;False;{};git8hfo;False;t3_kujurp;False;False;t1_gism1mw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8hfo/;1610363886;304;True;False;anime;t5_2qh22;;0;[]; -[];;;Sew_chef;;;[];;;;text;t2_7xse4595;False;False;[];;"[This scene](https://i.imgur.com/d1T3yrW.png) makes me think Zeke might see through Armin's disguise. It is Armin right? I can't think of who else they're implying it could be. - -Edit: Unless it's Mikasa or Sasha maybe? [They gave them eyelashes ](https://i.imgur.com/ol40ip6.png) which the men in this series don't have.";False;False;;;;1610320453;;1610320832.0;{};git8hmy;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8hmy/;1610363888;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sujallamichhaneakasl;;;[];;;;text;t2_3i2s1kbj;False;False;[];;Actually when these stretch of chapters were going on in the manga many actually dropped the series. It might have been frustrating for people to go almost 7 months without seeing the old cast but the bitching was un fucking real. Now looking back on it many will agree that this arc is one of the best arcs ever.;False;False;;;;1610320458;;False;{};git8i0e;False;t3_kujurp;False;False;t1_git7r7t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8i0e/;1610363893;11;True;False;anime;t5_2qh22;;0;[]; -[];;;_Wado3000;;;[];;;;text;t2_dayvg;False;False;[];;The parallels, references, and amount of continuity this episode had compared to the past was insane. This writing is incredibly, incredibly brilliant. And I literally screamed for like 30 seconds straight during Eren’s transformation. The Attack Titan invading Marley, with his friends hidden amongst its people. I’m so glad I patiently waited for this moment, it’s beyond satisfying.;False;False;;;;1610320471;;False;{};git8izb;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8izb/;1610363908;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Aschentei;;;[];;;;text;t2_z1t0l;False;False;[];;all according to the keikaku;False;False;;;;1610320479;;False;{};git8jia;False;t3_kujurp;False;False;t1_gish4fn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8jia/;1610363915;28;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;But the question is how fast are these Titans, because the colossal is pretty sluggish;False;False;;;;1610320483;;False;{};git8jsk;False;t3_kujurp;False;False;t1_git59ed;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8jsk/;1610363920;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;“I’m gonna survive this!”;False;False;;;;1610320484;;False;{};git8jwj;False;t3_kujurp;False;True;t1_gisbntp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8jwj/;1610363921;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mrtwitles;;;[];;;;text;t2_6m2vk;False;False;[];;Ah missed that thanks;False;False;;;;1610320491;;False;{};git8kg3;False;t3_kujurp;False;True;t1_git32vf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8kg3/;1610363930;1;True;False;anime;t5_2qh22;;0;[]; -[];;;darkfire621;;;[];;;;text;t2_1h9wwbr8;False;False;[];;Reiner was shitting bricks throughout the entirety of the episode lmao, plus does anyone else notice how menacing erehs Titan looks? Jesus mappa making me proud rn;False;False;;;;1610320493;;False;{};git8kk7;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8kk7/;1610363932;9;True;False;anime;t5_2qh22;;0;[]; -[];;;ABoredCompSciStudent;;MAL;[];;https://myanimelist.net/profile/serendipity;dark;text;t2_zqflo;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610320508;moderator;False;{};git8lpm;False;t3_kujurp;False;True;t1_gisy9r6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8lpm/;1610363948;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HighSchoolThrowAw4y;;;[];;;;text;t2_g66tg;False;False;[];;If you're a Manga reader you shouldn't be posing those kinds of questions or answering them at all. Let the anime onlies speculate themselves and find out in later episodes.;False;False;;;;1610320510;;False;{};git8lt7;False;t3_kujurp;False;True;t1_git6tqe;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8lt7/;1610363950;1;True;False;anime;t5_2qh22;;0;[]; -[];;;buttcheeksontoast;;;[];;;;text;t2_k8bd2;False;False;[];;They both might have been charismatic and leaders but meh I wouldn't wade too deep into the analogy. Especially since the Tyburs were more like puppet masters in the shadows of Eldia and seen almost like nobility by most people, as opposed to Hitler who was well obviously the Nazi party leader and the main face of the regime.;False;False;;;;1610320515;;False;{};git8m7t;False;t3_kujurp;False;False;t1_git7oks;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8m7t/;1610363956;31;True;False;anime;t5_2qh22;;0;[]; -[];;;AuthenticWeeb;;;[];;;;text;t2_yi9p8;False;False;[];;"Nobody is talking about the parallel between the man who's story was stuck in Bertholt's head and current Reiner. - -Bertholt said ""I can't help but think that he told us the story because he wanted to be judged."" - -Reiner confessing everything to Eren including that he urged Annie and Bertholt to continue the mission shows he just needed to be judged. Also that the man who told the story killed himself, and Reiner was about to kill himself two episodes ago if it wasn't for Falco.";False;False;;;;1610320521;;False;{};git8mmy;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8mmy/;1610363962;13;True;False;anime;t5_2qh22;;0;[]; -[];;;justking1414;;;[];;;;text;t2_4ohxaz5j;False;False;[];;He straight up did what they did to him. For the purpose of “saving the world” he attacked and killed the innocent.;False;False;;;;1610320542;;False;{};git8o5h;False;t3_kujurp;False;True;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8o5h/;1610363984;2;True;False;anime;t5_2qh22;;0;[]; -[];;;blitzbom;;;[];;;;text;t2_6h9w1;False;False;[];;"Everyone else isn't mad that a dirty Elidian would hug him. - -They're upset cause she didn't him them.";False;False;;;;1610320543;;False;{};git8o7h;False;t3_kujurp;False;False;t1_gisc0xk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8o7h/;1610363985;8;True;False;anime;t5_2qh22;;0;[]; -[];;;shablam96;;;[];;;;text;t2_g4g38p1;False;False;[];;in fairness it was supposed to end this year so I get the feeling it may take a little longer still. We shall see;False;False;;;;1610320550;;False;{};git8oqq;False;t3_kujurp;False;True;t1_giszqkg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8oqq/;1610363993;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SirVicke;;;[];;;;text;t2_gbh8m;False;False;[];;Holy crap, this was amazing. This feeling i had throughout the episode was the same when watching that explosive Game of Thrones episode.;False;False;;;;1610320560;;False;{};git8ph0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8ph0/;1610364004;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OdinTyr-;;;[];;;;text;t2_3tiioz1b;False;False;[];;"Not to discredit what they did because not every studio's staff would've kept that in and I'm glad they did, but that exact detail was in the manga panel of that sequence. - -https://i.imgur.com/m3K3RlC.png";False;False;;;;1610320573;;False;{};git8qh2;False;t3_kujurp;False;False;t1_git64m6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8qh2/;1610364021;5;True;False;anime;t5_2qh22;;0;[]; -[];;;blitzbom;;;[];;;;text;t2_6h9w1;False;False;[];;There's always titans in the banana stand.;False;False;;;;1610320584;;False;{};git8r86;False;t3_kujurp;False;False;t1_gisuhmp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8r86/;1610364032;6;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;Wait Beastars is not following the manga?? :(;False;False;;;;1610320591;;False;{};git8rpw;False;t3_kujurp;False;False;t1_git89ug;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8rpw/;1610364039;3;True;False;anime;t5_2qh22;;0;[]; -[];;;n080dy123;;;[];;;;text;t2_139f6y;False;False;[];;"I honestly think Willy knew, he was scared shitless last episode and iirc he mentioned something about himself basically being a sacrifice or something. I think the Tyburs knew this was going to go down, on some level. In fact I think they might even have somehow been in cahoots, because Willy got the entire ""backbone of the military"" there. I don't see why they'd all need to be there otherwise, even if he WAS declaring war.";False;False;;;;1610320605;;False;{};git8ssh;False;t3_kujurp;False;False;t1_git51ws;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8ssh/;1610364056;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Eesti_pwner;;;[];;;;text;t2_d3vcs;False;False;[];;"Anime only (please don't confirm any of my thoughts if you are a manga reader, seriously please don't). If you are anime only, read at your own peril. Maybe my predictions turn out to be correct and I 'spoil' something as happened a few weeks ago. - -&#x200B; - -Woo here we go. As expected, the festival is where is where things get real. I am a tiny bit disappointed that this was easy to predict but at the same time, everything else has been super interesting. - -Tybur sure can put on a performance. Pretty much everything sounded reasonable. Well he failed to mention that the only reason the Eldians in the walls are out for blood is because of Marley's own intereference. But still, I imagine he gained a lot of support for his war. Which of course might not even materialize due to how the episode ended. - -It is hugely suspicious that Pieck and Galliard were singled out but Zeke was left free. Is he going to be restrained in another way or (unlikely perhaps) he is on Eren's side. - -I'm guessing Willy is not the warhammer titan based on how the episode ended. However, it is a bit annoying that we know next to nothing about any of his family members. So if it is someone else, hopefully they fill in some information on that person in the coming episodes. - -I imagine Eren and co. have been planning this for a while. I am curious, do they have any plans for the warhammer titan. If no one knows who it is, they can't just expect Eren to eat Willy and be done with it. They must have some contingencies in place. I truly wonder how many scouts have been mobilised for this mission. Too many and it is hard to be sneaky but too few and they don't have enough power. - -I am also curious, what exactly is Reiner going to do now. They did not kill or restrain him, however, Reiner has people he cares about likely on both sides of this conflict. So he can't just go on and join Eren's side. Looks like Reiner suffering is still going to be the constant moving forwards. Regardless of what choice he makes. - -Finally, I think the sound and animation was quite nice. The reason I say ""think"" is because the story is so engrossing that I barely thought about that the entire episode. The final shot of Eren transforming was a sight to behold though. - -&#x200B; - -TLDR: The tension has been rising steadily. Now come the explosions.";False;False;;;;1610320614;;False;{};git8ti1;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8ti1/;1610364066;31;True;False;anime;t5_2qh22;;0;[]; -[];;;midtharp;;;[];;;;text;t2_2tkeqy5s;False;False;[];;The hint appears earlier in the ep, after the two Titan warrior kids are dropped through the trap door. Recall them saying how when two Titans are confined in a small room in human form, neither can transform without squashing the other. Now fast forward to the underground room that Eren chose to invite Reiner into. From that single move Eren engineered a two-for-one hit, with Falco as collateral damage.;False;False;;;;1610320629;;1610321274.0;{};git8ul7;False;t3_kujurp;False;False;t1_giso29p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8ul7/;1610364082;43;True;False;anime;t5_2qh22;;0;[]; -[];;;WeNTuS;;;[];;;;text;t2_btiic;False;False;[];;So, did they just confirmed Eldian Empire were criminals after all? King Fritz felt guilty for the past of the empire so he moved to Paradis.;False;False;;;;1610320648;;False;{};git8vzs;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8vzs/;1610364103;9;True;False;anime;t5_2qh22;;0;[]; -[];;;pooodiper;;;[];;;;text;t2_3clltdxs;False;False;[];;"Why not be a fan of both? I love both series and am really excited for them. -Also the whole karma war thing i think is fine as long as people dont get emotional over it (which i know for a fact people will) and it just becomes something for the fun of it.";False;False;;;;1610320657;;False;{};git8wo7;False;t3_kujurp;False;False;t1_gisbeg8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8wo7/;1610364114;6;True;False;anime;t5_2qh22;;0;[]; -[];;;GenSec;;;[];;;;text;t2_hk63q;False;False;[];;Most of the time when a shifter transforms , they cut their hand right before. Eren had his hand cut already so he could transform whenever he felt like it. It shows how much control he has over his emotions and titan shifting. Absolutely massive leap from season 1 where he was driven by emotion and struggling with shifting into titan form.;False;False;;;;1610320659;;1610321348.0;{};git8wtj;False;t3_kujurp;False;False;t1_gisy6p8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8wtj/;1610364116;17;True;False;anime;t5_2qh22;;0;[]; -[];;;tomato_blitz;;;[];;;;text;t2_ldej2d;False;False;[];;No this is a shonen.;False;False;;;;1610320661;;False;{};git8wwz;False;t3_kujurp;False;True;t1_git73at;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8wwz/;1610364117;2;True;False;anime;t5_2qh22;;0;[]; -[];;;u_want_some_eel;;;[];;;;text;t2_16zoe6;False;False;[];;We believe they r gonna finish on chapter 122, and have a part 2 for the rest, as it's a very good stopping point and allows them to have an average pace of 2 chapters per ep.;False;False;;;;1610320671;;False;{};git8xp9;False;t3_kujurp;False;False;t1_git6khr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8xp9/;1610364129;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Chukonoku;;;[];;;;text;t2_85br9;False;False;[];;I don't think it's about responsibility rather than what you see now are the consequences of what's been happening on both fronts through the last decades.;False;False;;;;1610320672;;False;{};git8xrq;False;t3_kujurp;False;True;t1_gisnfjh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8xrq/;1610364130;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SoulTea;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/SoulTea;light;text;t2_6by2x;False;False;[];;You're definitely right man and I personally find it to be seinen myself anyways, some people like to really argue the magazine point. SnK is worlds away from shows like Fairy Tail and DB but they are what they are and there's nothing wrong with that. Ultimately it doesn't really make a difference though.;False;False;;;;1610320679;;False;{};git8y9f;False;t3_kujurp;False;True;t1_git71mr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8y9f/;1610364138;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Voltage97;;;[];;;;text;t2_8wdsu;False;False;[];;Willy: Well good luck with this mess. Peace out, bitches.;False;False;;;;1610320684;;False;{};git8ynt;False;t3_kujurp;False;False;t1_gish4fn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8ynt/;1610364144;54;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;Yes.;False;False;;;;1610320687;;False;{};git8yw5;False;t3_kujurp;False;True;t1_gisx5ei;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git8yw5/;1610364148;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610320723;;False;{};git91fd;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git91fd/;1610364188;0;True;False;anime;t5_2qh22;;0;[]; -[];;;iamjaszzszz;;;[];;;;text;t2_caosdqk;False;False;[];;yes;False;False;;;;1610320727;;False;{};git91q0;False;t3_kujurp;False;False;t1_git2ofo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git91q0/;1610364192;9;True;False;anime;t5_2qh22;;0;[]; -[];;;xin234;;;[];;;;text;t2_87y7e;False;False;[];;"One of the chapters adapted in this episode is chapter 100. Considering anything reaching 100 is usually treated as a milestone, the expectations for it was pretty high. - -It not only delivered, but also delivered... A huge cliffhanger.";False;False;;;;1610320728;;False;{};git91sw;False;t3_kujurp;False;True;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git91sw/;1610364193;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;It looked great to me.;False;False;;;;1610320728;;False;{};git91tf;False;t3_kujurp;False;True;t1_gisp6qd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git91tf/;1610364194;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;You can’t expect a nation to follow international treaties when no diplomatic effort was made to include them in said treaties;False;False;;;;1610320739;;False;{};git92nd;False;t3_kujurp;False;True;t1_gisvfdk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git92nd/;1610364206;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;They're also immediately shutting down actual anime-onlies trying to speculate about things, which is almost as annoying as the blatant spoilers ugh. I'm a manga reader myself and I don't understand why those people do that.;False;False;;;;1610320740;;False;{};git92pu;False;t3_kujurp;False;True;t1_git5p2x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git92pu/;1610364207;1;True;False;anime;t5_2qh22;;0;[]; -[];;;schoolsucksass2;;;[];;;;text;t2_9tn8yji;False;False;[];;Just watched the episode i will give my thoughts the episode was amazing, the pacing was great, the build up until the last moment was really good, the ost through all the episode was fantastic and at the end we can see a little of CG titan eren wich by the looks of it seems like the best cg titan of all we will have to wait until next episode to confirm. But i was bummed at the last scene because of the lack of an amazing OST like youseebiggirl or the new one they used at the eren and dr.yeager scene people thought they would use that, i got more hyped seeing manga edits with these OST's than this final scene animated, in my opinion this is one of the most hyped if not the most hype moment of all AOT, so my note still is 10/10 but could've been 100/10 an epic and really LOUD music would have been perfect for that scene, i'm sure people will edit the hell out of this scene with epics ost's so we can appreciate regardless.;False;False;;;;1610320742;;False;{};git92u7;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git92u7/;1610364209;1;True;False;anime;t5_2qh22;;0;[]; -[];;;schoolsucksass2;;;[];;;;text;t2_9tn8yji;False;False;[];;Just watched the episode i will give my thoughts the episode was amazing, the pacing was great, the build up until the last moment was really good, the ost through all the episode was fantastic and at the end we can see a little of CG titan eren wich by the looks of it seems like the best cg titan of all we will have to wait until next episode to confirm. But i was bummed at the last scene because of the lack of an amazing OST like youseebiggirl or the new one they used at the eren and dr.yeager scene people thought they would use that, i got more hyped seeing manga edits with these OST's than this final scene animated, in my opinion this is one of the most hyped if not the most hype moment of all AOT, so my note still is 10/10 but could've been 100/10 an epic and really LOUD music would have been perfect for that scene, i'm sure people will edit the hell out of this scene with epics ost's so we can appreciate regardless.;False;False;;;;1610320752;;False;{};git93kc;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git93kc/;1610364221;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WeNTuS;;;[];;;;text;t2_btiic;False;False;[];;Yeah, right??! He has grown into a mass murderer. What a fine man /s;False;False;;;;1610320758;;False;{};git941a;False;t3_kujurp;False;False;t1_gisi8hf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git941a/;1610364228;1;True;False;anime;t5_2qh22;;0;[]; -[];;;laine29;;;[];;;;text;t2_16yitmum;False;False;[];;Reiner and suffering name a more iconic duo;False;False;;;;1610320763;;False;{};git94dv;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git94dv/;1610364233;6;True;False;anime;t5_2qh22;;0;[]; -[];;;seninn;;MAL;[];;http://myanimelist.net/animelist/Senninn0;dark;text;t2_fw8p2;False;False;[];;That's fair. I just don't understand how some people can claim that the series straight up went downhill somehow.;False;False;;;;1610320767;;False;{};git94nd;False;t3_kujurp;False;True;t1_git7pmo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git94nd/;1610364237;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Korasuka;;;[];;;;text;t2_4jf16sfx;False;False;[];;"I know. I was answering their question. - ->Can we talk about Eren’s character development? This guy went from your typical shonen protagonist to this...idk even know what to call him. - - Eren is more like a seinen protagonist.";False;False;;;;1610320775;;False;{};git956y;False;t3_kujurp;False;True;t1_git8wwz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git956y/;1610364245;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610320831;;False;{};git98xq;False;t3_kujurp;False;True;t1_git5x4c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git98xq/;1610364301;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bobbywellington;;;[];;;;text;t2_5og4x;False;False;[];;Guts and struggling;False;False;;;;1610320835;;False;{};git998a;False;t3_kujurp;False;True;t1_git94dv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git998a/;1610364306;2;True;False;anime;t5_2qh22;;0;[]; -[];;;stud_lock;;;[];;;;text;t2_10svyk;False;False;[];;When Willy said that, you can see that it actually gives Eren pause for a second.;False;False;;;;1610320870;;False;{};git9bo1;False;t3_kujurp;False;False;t1_gisvy49;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9bo1/;1610364344;305;True;False;anime;t5_2qh22;;0;[]; -[];;;Sew_chef;;;[];;;;text;t2_7xse4595;False;False;[];;Alright, praise goes to Isayama instead but the sentiment remains lol;False;False;;;;1610320876;;False;{};git9c4g;False;t3_kujurp;False;True;t1_git8qh2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9c4g/;1610364352;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bobbywellington;;;[];;;;text;t2_5og4x;False;False;[];;Given they the trailer and ED focus on him a lot, I think he and Reiner are probably alive, at least Falco is.;False;False;;;;1610320903;;False;{};git9e08;False;t3_kujurp;False;False;t1_git91fd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9e08/;1610364380;5;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;Every large empire in history committed atrocities yeah. Eldia basically ruled the world for over 1500 years at least and their primary weapons were man eating zombies. Makes sense they have a lot of blood on their hands.;False;False;;;;1610320907;;False;{};git9eco;False;t3_kujurp;False;False;t1_git8vzs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9eco/;1610364385;17;True;False;anime;t5_2qh22;;0;[]; -[];;;CO_ORDINATE;;;[];;;;text;t2_kf9hyuw;False;False;[];;yep;False;False;;;;1610320912;;False;{};git9ep4;False;t3_kujurp;False;True;t1_git8vzs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9ep4/;1610364391;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tramquangpho;;;[];;;;text;t2_3gwl16i;False;False;[];;Isayama be like : “ You guys adapt to new characters yet, shame if somebody destroy whole thing “ That AOT for you;False;False;;;;1610320921;;False;{};git9fbc;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9fbc/;1610364401;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;It would’ve been hilarious (in the worst possible way) if they found out Hitler was actually a Jew all along;False;False;;;;1610320924;;False;{};git9fl7;False;t3_kujurp;False;False;t1_git7oks;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9fl7/;1610364405;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Headstub;;;[];;;;text;t2_8tb2g;False;False;[];;"No ""You See Big Gril"" when Eren transformed:( I was hoping they would play it mirroring the Bertholt and Reiner reveal in season 2. We even got a teaser for it last episode when we first saw Eren in the basement. Such a wasted opportunity:/";False;True;;comment score below threshold;;1610320926;;False;{};git9fp7;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9fp7/;1610364406;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;Pedarsen;;;[];;;;text;t2_eup7i;False;False;[];;Love the little detail of when you get a closeup of the other countries representatives in the crowd when Eren breaches you see one guy in the back getting hit by debris. Makes the shot even better.;False;False;;;;1610320936;;False;{};git9gdt;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9gdt/;1610364417;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bigbeanis1136;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/Gamma_Panther/;light;text;t2_4qgkrgcw;False;False;[];;ITS COMMENCING YEEES THE START;False;False;;;;1610320936;;False;{};git9gfo;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9gfo/;1610364417;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dennaneedslove;;;[];;;;text;t2_iyc6w;False;False;[];;Eren took the Eldian civilians (the ones who have a shitty life in Marley) as hostage and then killed them... so sad;False;False;;;;1610320946;;False;{};git9h2u;False;t3_kujurp;False;False;t1_gislhdz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9h2u/;1610364427;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WeNTuS;;;[];;;;text;t2_btiic;False;False;[];;Save the world? From whom? The humanity? The humanity doesn't want Eldians to exist. So it's either one race or entire world full of different races/nations. Who do you choose?;False;False;;;;1610320955;;False;{};git9hqp;False;t3_kujurp;False;False;t1_gisvv62;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9hqp/;1610364437;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mr_sto0pid;;;[];;;dark;text;t2_13ckn3;False;True;[];;So does Eren no longer need sunlight to transform? In S1 he couldn't transform in that well.;False;False;;;;1610320978;;False;{};git9jgw;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9jgw/;1610364465;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tramquangpho;;;[];;;;text;t2_3gwl16i;False;False;[];;“That day Marley receive a grim reminder”;False;False;;;;1610320981;;False;{};git9jpf;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9jpf/;1610364468;2;True;False;anime;t5_2qh22;;0;[]; -[];;;blueasian0682;;;[];;;;text;t2_1mq0q9k2;False;False;[];;Basically, find out in the next episode of titan balls Z;False;False;;;;1610320983;;False;{};git9jur;False;t3_kujurp;False;True;t1_git2nr5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9jur/;1610364470;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheAughat;;;[];;;;text;t2_w0842;False;False;[];;"The buildup was superbly done, no complaints at all there! - -It was the actual climax with the transformation scene that kinda fell flat.";False;False;;;;1610320985;;False;{};git9k1b;False;t3_kujurp;False;True;t1_gisbw5o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9k1b/;1610364473;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OdinTyr-;;;[];;;;text;t2_3tiioz1b;False;False;[];;Yup, perfect episode.;False;False;;;;1610320993;;False;{};git9km2;False;t3_kujurp;False;True;t1_git9c4g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9km2/;1610364482;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NadeshikoAVlat;;;[];;;;text;t2_2s0hsl0j;False;False;[];;Sadly they cut some interesting foreshadowing.;False;False;;;;1610321012;;False;{};git9m2g;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9m2g/;1610364505;2;True;False;anime;t5_2qh22;;0;[]; -[];;;zak55;;;[];;;;text;t2_fx6s3;False;False;[];;Manga reader here, what did they cut?;False;False;;;;1610321017;;False;{};git9mfw;False;t3_kujurp;False;True;t1_git4i8t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9mfw/;1610364511;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610321024;;1610343983.0;{};git9mv6;False;t3_kujurp;False;True;t1_git6xbx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9mv6/;1610364517;2;False;False;anime;t5_2qh22;;0;[]; -[];;;MonaThiccAss;;;[];;;;text;t2_8stg2bwj;False;False;[];;what a work of art. thank you isayama, thank you mappa;False;False;;;;1610321024;;False;{};git9mvy;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9mvy/;1610364518;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;That being said it seems like the Warhammer Titan isn’t directly on the scene. Would they let Willy die to prove their point? Seems like the attack alone should be enough to do that.;False;False;;;;1610321042;;False;{};git9o83;False;t3_kujurp;False;False;t1_git8ssh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9o83/;1610364538;13;True;False;anime;t5_2qh22;;0;[]; -[];;;laine29;;;[];;;;text;t2_16yitmum;False;False;[];;Who hasn't been spoiled at this point. People love to act like smartasses and 90% of people here have read the manga anyways. Just let them be cringe nothing we can do about it.;False;False;;;;1610321049;;False;{};git9oqj;False;t3_kujurp;False;True;t1_git5p2x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9oqj/;1610364544;2;True;False;anime;t5_2qh22;;0;[]; -[];;;pranda;;;[];;;;text;t2_8cs12;False;False;[];;"I was on the edge of my seat the whole time. Is it going to be a coordinated attack with Zeke (I think he is working with Eren and/or just himself to restore Eldia or at least bring happiness to Eldians without killing the Paradisians)? Is it just Eren? Is Armin going to blow away all the important figures? Which soldiers are working with whom? I can’t tell who it is that seemed so familiar to Pieck. I’m going to have to rewatch this. - - -Edit: missed the comment by Pieck about the soldier being scrawny. I’m so 100% sure that is Armin. Holy shit. If that’s the case they have a major tactical nuke with everyone here. It’s practically gonna be impossible for the Marleyans to retaliate given that only War Hammer (assuming Tybur isn’t the War Hammer, since it seems like he died?) and Reiner are available (still assuming Zeke/Beast is on Paradis’ side). They don’t even have anti-Titan weapons on hand... who knows if Reiner will even transform! He might be too shell shocked. Jesus.";False;False;;;;1610321057;;1610323358.0;{};git9pcj;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9pcj/;1610364553;5;True;False;anime;t5_2qh22;;0;[]; -[];;;argylaz;;;[];;;;text;t2_3ghvjmk6;False;False;[];;"Im glad everybody liked the scene, how could you not like this, it might be the most epic anime scene of the decade, maybe of all time, considering the story behind this and the whole conversation, and the erens surprising decision to just kill maybe thousands of innocent people and at the same tell the whole world that they lost this war the moment they declared it, in fact they didnt even have the time to realize war is uppon them... -But having read the manga up to this chapter, this was the moment i decided to wait for the anime, 3 years i have waited for this and im not dissapointed, but i really believed the ost named DECLARATION OF WAR was going to play in the scene were war is declared... -And i gotta say the whole scene sounded better in my head when i read the manga, especially when i heard the ost";False;False;;;;1610321060;;False;{};git9pj0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9pj0/;1610364556;10;True;False;anime;t5_2qh22;;0;[]; -[];;;cantaneer;;;[];;;;text;t2_1ib8wxpm;False;False;[];;someone on r/titanfolk made an edit and it just doesn’t fit. this wasn’t a betrayal scene this was a fucking terrorist attack;False;False;;;;1610321063;;False;{};git9pq2;False;t3_kujurp;False;False;t1_git9fp7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9pq2/;1610364559;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Credar;;;[];;;;text;t2_e1djq;False;False;[];;Yeah that move could be a great opener for next episode and since next is clearly gonna be action based they can fit in 2 full chapters on top of that.;False;False;;;;1610321093;;False;{};git9rxh;False;t3_kujurp;False;True;t1_git4i8t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9rxh/;1610364594;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheAughat;;;[];;;;text;t2_w0842;False;False;[];;I think the part people didn't like was the final 20-30 seconds, not the speech. The final moments could've done much better with more dramatic music imo;False;False;;;;1610321101;;False;{};git9si8;False;t3_kujurp;False;False;t1_gisgxek;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9si8/;1610364601;6;True;False;anime;t5_2qh22;;0;[]; -[];;;forthemostpart;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/notimpartial;light;text;t2_nmcn1;False;False;[];;"[AoT manga](/s ""Ymir's backstory hasn't been discussed in the show yet, so that might be a minor manga spoiler"")";False;False;;;;1610321109;;False;{};git9t13;False;t3_kujurp;False;False;t1_gisxyji;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9t13/;1610364610;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BasedFunnyValentine;;;[];;;;text;t2_2dv5gtho;False;False;[];;Eren woke up and chose violence;False;False;;;;1610321114;;False;{};git9tf3;False;t3_kujurp;False;True;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9tf3/;1610364617;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ZPleasure;;;[];;;;text;t2_4nujxyi8;False;False;[];;Not necessarily. They can both transform at the same time, but they’d just be squished and even more stuck.;False;False;;;;1610321126;;False;{};git9ua3;False;t3_kujurp;False;False;t1_git8ul7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9ua3/;1610364630;37;True;False;anime;t5_2qh22;;0;[]; -[];;;blitzbom;;;[];;;;text;t2_6h9w1;False;False;[];;Yup. He needs that connection to access the coordinate. It's a question of if he will, or moreso what will push him to do it?;False;False;;;;1610321131;;False;{};git9ul8;False;t3_kujurp;False;False;t1_git8g73;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9ul8/;1610364635;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;We surpassed Re:zeros premier in just 4 hours jesus;False;False;;;;1610321156;;False;{};git9wgp;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9wgp/;1610364663;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Chinbie;;;[];;;;text;t2_12h6erpy;False;False;[];;"4 hrs and were already at 11k karma... Lets Go!!! - -Im about to watch this one yet";False;False;;;;1610321163;;False;{};git9wzj;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9wzj/;1610364672;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Sovva29;;;[];;;;text;t2_1i94m3z;False;False;[];;Yup, saw it and started laughing, but stopped myself because the whole moment was too cool to laugh at.;False;False;;;;1610321181;;False;{};git9y9z;False;t3_kujurp;False;False;t1_gisuya6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9y9z/;1610364691;9;True;False;anime;t5_2qh22;;0;[]; -[];;;i_love_rem;;;[];;;;text;t2_yb6o5zf;False;False;[];;It's a literal minefield. And my brother loves to spoil me (not in a malicious way, he just kind of forgets I'm not on the same page as him), which makes it infinitely worse.;False;False;;;;1610321195;;False;{};git9z93;False;t3_kujurp;False;False;t1_gisea3w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9z93/;1610364705;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;Oh wow it really is lol;False;False;;;;1610321199;;False;{};git9zjo;False;t3_kujurp;False;False;t1_git5mea;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9zjo/;1610364711;10;True;False;anime;t5_2qh22;;0;[]; -[];;;kfijatass;;;[];;;;text;t2_6tii3;False;False;[];;"Oh what the fuck. Now I feel everything people said has some impact somewhere seasons later. -Even the goddam potato scene became somehow plot relevant.";False;False;;;;1610321201;;False;{};git9zqe;False;t3_kujurp;False;False;t1_gisafs9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/git9zqe/;1610364713;24;True;False;anime;t5_2qh22;;0;[]; -[];;;hoochiex21;;;[];;;;text;t2_66zb9;False;False;[];;A total episode count hasn't been confirmed yet but I think there will be 24 or 25 episodes for this final season and that there's a Season 4 Part 3 set that hasn't been announced yet. I'm hoping for no split cour and no movie which some are speculating.;False;True;;comment score below threshold;;1610321209;;False;{};gita08l;False;t3_kujurp;False;True;t1_git6khr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gita08l/;1610364722;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;Klondikebardotcom;;;[];;;;text;t2_1p6qb4jb;False;False;[];;Eren: Run that shit.;False;False;;;;1610321214;;False;{};gita0mk;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gita0mk/;1610364728;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Snajpi;;;[];;;;text;t2_nripj;False;False;[];;You didn't miss anything in the episode, all questions get answered eventually, ignore the comments on episode discussions;False;False;;;;1610321224;;False;{};gita1bm;False;t3_kujurp;False;False;t1_gisw1na;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gita1bm/;1610364739;10;True;False;anime;t5_2qh22;;0;[]; -[];;;AIManiak;;;[];;;;text;t2_8v2yjgsn;False;False;[];;I think people are allowed to not like it. I wasnt a fan of the ost choice either but it's time to move on now. The episode was great.;False;False;;;;1610321230;;False;{};gita1s9;False;t3_kujurp;False;False;t1_git749f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gita1s9/;1610364746;4;True;False;anime;t5_2qh22;;0;[]; -[];;;i_love_rem;;;[];;;;text;t2_yb6o5zf;False;False;[];;">And I don't even click on any other AoT related threads here as well - -You clicked on at least one.";False;False;;;;1610321242;;False;{};gita2lu;False;t3_kujurp;False;False;t1_gism8bo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gita2lu/;1610364758;7;True;False;anime;t5_2qh22;;0;[]; -[];;;bigfrickenorange;;;[];;;;text;t2_60ujz720;False;False;[];;Easily one of the best episodes of aot ever.;False;False;;;;1610321252;;False;{};gita3cn;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gita3cn/;1610364771;6;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;"this will be the most epic scene of the decade - - -until episode 15 and 16 air";False;False;;;;1610321266;;1610321895.0;{};gita49t;False;t3_kujurp;False;False;t1_git9pj0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gita49t/;1610364787;5;True;False;anime;t5_2qh22;;0;[]; -[];;;dennaneedslove;;;[];;;;text;t2_iyc6w;False;False;[];;That is just so scary, for someone to say they understand you and think they are the same, but with full acceptance of that, decide to massacre innocent civilians;False;False;;;;1610321334;;False;{};gita99c;False;t3_kujurp;False;False;t1_gisi8hu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gita99c/;1610364862;25;True;False;anime;t5_2qh22;;0;[]; -[];;;asian_hans;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Shadow_Haunter12;light;text;t2_btv3xjy;False;False;[];;I'm literally on adrenaline all throughout the episode. Willy's whole speech is top-notch;False;False;;;;1610321351;;False;{};gitaagr;False;t3_kujurp;False;True;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitaagr/;1610364880;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Neverx_13;;;[];;;;text;t2_8708yf9;False;False;[];;Willy's voice actors is listed for the next episode so I'd assume it's going to be in next episode especially if they plan on adapting ch. 101-102 which are shorter.;False;False;;;;1610321355;;False;{};gitaap6;False;t3_kujurp;False;False;t1_giscz7r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitaap6/;1610364884;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Mrestrepo011;;;[];;;;text;t2_bwua0;False;False;[];;This whole episode was build up to a cliff hanger while being a climax in of itself.;False;False;;;;1610321372;;False;{};gitabwc;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitabwc/;1610364902;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610321377;;1610323785.0;{};gitac8q;False;t3_kujurp;False;False;t1_gisyv4e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitac8q/;1610364907;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610321392;;False;{};gitadbg;False;t3_kujurp;False;True;t1_git82d7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitadbg/;1610364924;1;True;False;anime;t5_2qh22;;0;[]; -[];;;digbicks845;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;god ussop;dark;text;t2_12n6ju;False;False;[];;Only people who haven’t seen the show think it’s like that;False;False;;;;1610321399;;False;{};gitadvh;False;t3_kujurp;False;False;t1_git3x43;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitadvh/;1610364933;27;True;False;anime;t5_2qh22;;0;[]; -[];;;Jestingraptor39;;;[];;;;text;t2_3l9nlxqs;False;False;[];;"Eren came back just to say ""It is what it is"".";False;False;;;;1610321412;;False;{};gitaesn;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitaesn/;1610364948;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;Gabi's ruse was exactly the moment when she was said to have committed a war crime but it was skipped in the anime.;False;False;;;;1610321418;;False;{};gitaf8m;False;t3_kujurp;False;False;t1_gisxh5i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitaf8m/;1610364955;12;True;False;anime;t5_2qh22;;0;[]; -[];;;TsukomuGuy;;;[];;;;text;t2_10herv;False;False;[];;Excuse me, Hobo Eren 1 and Hobo Eren 2 are literally the same screenshot;False;False;;;;1610321435;;False;{};gitaggr;False;t3_kujurp;False;True;t1_gisecf8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitaggr/;1610364974;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Elaego;;;[];;;;text;t2_55zd6hhb;False;False;[];;It's all you need.;False;False;;;;1610321439;;False;{};gitagpm;False;t3_kujurp;False;True;t1_git8fp3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitagpm/;1610364978;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SuckDragon;;;[];;;;text;t2_4adk84sj;False;False;[];;"Saying that its bad as if it was a fact and saying that they didnt like it is not the same. Sadly its not the latter that people are doing. - -So I agree with you completely actually. But it seems people, instead of expressing their opinion, they try to make it seem like its the truth.";False;False;;;;1610321470;;False;{};gitaiyo;False;t3_kujurp;False;True;t1_gita1s9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitaiyo/;1610365014;2;True;False;anime;t5_2qh22;;0;[]; -[];;;exozaln;;;[];;;;text;t2_x135v;False;False;[];;In that episode I think they come to the conclusion that you can't transform without a clear objective in mind, that's why he transforms when trying to pick up the spoon;False;False;;;;1610321475;;False;{};gitajc1;False;t3_kujurp;False;False;t1_git9jgw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitajc1/;1610365019;8;True;False;anime;t5_2qh22;;0;[]; -[];;;arminoutin;;;[];;;;text;t2_2zqmcx5b;False;False;[];;I think only pure titans need sunlight to move around. Eren couldn’t transform in the well because Titan shifters need an objective or goal to transform and he didn’t have one at that time.;False;False;;;;1610321487;;False;{};gitak5x;False;t3_kujurp;False;False;t1_git9jgw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitak5x/;1610365032;9;True;False;anime;t5_2qh22;;0;[]; -[];;;DripGodBabyYoda;;;[];;;;text;t2_558dvxc8;False;False;[];;IT CANT BE STOPPED ANYMORE !!!;False;False;;;;1610321489;;False;{};gitakdq;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitakdq/;1610365035;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Davidspirit;;;[];;;;text;t2_wwjez;False;False;[];;Until the day i wipe out the enemy;False;False;;;;1610321493;;False;{};gitakod;False;t3_kujurp;False;True;t1_gisa7d4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitakod/;1610365040;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kkraww;;;[];;;;text;t2_5qhjx;False;False;[];;"I mean if you want to keep going further back, Marley landing 4 military personal on Paradis land, and literally murdering thousands of civilians, is ""probably"" a declaration of war in it's own right. I think that's just ever so slightly worse than dropping two people (who can regenerate) into a hole.";False;False;;;;1610321503;;False;{};gitalax;False;t3_kujurp;False;False;t1_git280t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitalax/;1610365050;19;True;False;anime;t5_2qh22;;0;[]; -[];;;mackfeesh;;;[];;;;text;t2_cz1t3lz;False;False;[];;"> killed the worlds mosts important figure - -tbf we didn't see him die. we just saw him covered in blood and tossed into the air. Until eren actually swallows him i'm not signing on to him being dead. since this is a cliffhanger after all. So i never count out surprise twists.";False;False;;;;1610321508;;False;{};gitalnq;False;t3_kujurp;False;True;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitalnq/;1610365055;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheSpartyn;;;[];;;;text;t2_6p07c;False;False;[];;he widened his eyes, just like the manga panel;False;False;;;;1610321510;;False;{};gitalv1;False;t3_kujurp;False;False;t1_giseisu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitalv1/;1610365058;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Radix3D;;;[];;;;text;t2_4pafckex;False;False;[];;You can't really distill an entire population of people like that. I'm sure that if North Korea, with all of their propaganda, started a war with a country and killed innocents, their population wouldn't really oppose what they are doing that much. But that doesn't mean it is then A-okay to start slaughtering the entirety of North Korea.;False;False;;;;1610321531;;False;{};gitandl;False;t3_kujurp;False;False;t1_git5y20;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitandl/;1610365081;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheAughat;;;[];;;;text;t2_w0842;False;False;[];;"Here it is replaced with another OST: https://streamable.com/ljip3m - -(Wasn't made by me, credits to whomever did)";False;False;;;;1610321539;;False;{};gitanyk;False;t3_kujurp;False;False;t1_giskoc4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitanyk/;1610365092;7;True;False;anime;t5_2qh22;;0;[]; -[];;;death556;;;[];;;;text;t2_y24tf;False;False;[];;I remember people dissing eren in season 1 for being so one note with his anger lmfao;False;False;;;;1610321556;;False;{};gitap6c;False;t3_kujurp;False;False;t1_gisau1z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitap6c/;1610365111;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610321583;;False;{};gitar6i;False;t3_kujurp;False;False;t1_git5tvz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitar6i/;1610365143;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuyou_lilienthal_yu;;;[];;;;text;t2_74nij6hu;False;False;[];;wuh;False;False;;;;1610321589;;False;{};gitarlc;False;t3_kujurp;False;False;t1_git6i4o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitarlc/;1610365149;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sheymex;;;[];;;;text;t2_9bu3zm1o;False;False;[];;Falco's life is really over when Gabi finds out what he's done;False;False;;;;1610321592;;False;{};gitars8;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitars8/;1610365153;9;True;False;anime;t5_2qh22;;0;[]; -[];;;hyrulia;;;[];;;;text;t2_5d3xk;False;False;[];;"Excellent episode, the tense was too high! - -They played some OST from the first season, made me nostalgic and reminded me that horrific things are going to start..";False;False;;;;1610321596;;False;{};gitas3b;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitas3b/;1610365157;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hiyami;;;[];;;;text;t2_d4sm8;False;False;[];;The goosebumps didnt hit me till Eren started talking.;False;False;;;;1610321601;;False;{};gitash0;False;t3_kujurp;False;True;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitash0/;1610365163;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mackfeesh;;;[];;;;text;t2_cz1t3lz;False;False;[];;So did all of you guys realize he was Eren or is nobody talking about the emotional shock they felt when Eren got revealed. I had no idea. That was such a oh fuck moment for me. Idk how i didn't recognize the voice or what.;False;False;;;;1610321604;;False;{};gitasmy;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitasmy/;1610365165;3;True;False;anime;t5_2qh22;;0;[]; -[];;;14MySterY-;;;[];;;;text;t2_b3n4y;False;False;[];;👈 That's exactly right;False;False;;;;1610321610;;False;{};gitat35;False;t3_kujurp;False;False;t1_gisw1qo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitat35/;1610365172;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Elaego;;;[];;;;text;t2_55zd6hhb;False;False;[];;"It's still a war crime. No matter if it can be considered ""justified"" or not, it is still a war crime.";False;False;;;;1610321629;;False;{};gitaufr;False;t3_kujurp;False;False;t1_git5y20;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitaufr/;1610365193;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tearorize55;;;[];;;;text;t2_61ijlzsy;False;False;[];;"Could you argue they aren't the same? Reiner had the delusion that he was doing it to save the world. He was conditioned early on that his Paradis were demons and they had to be destroyed. Eren didn't have the early upbringing. He didn't have that conditioning, and while Eren isn't a full adult, he is ""old"" enough to understand why the Marleyans/Eldians did what they did. He acknowledges this during his conversation with Reiner. The sole difference is Reiner was disillusioned himself into thinking his cause while just, while Eren doesn't care either way. He's taking them down because they are a threat, regardless if it's women or children.";False;False;;;;1610321632;;False;{};gitaunj;False;t3_kujurp;False;False;t1_gisvv62;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitaunj/;1610365196;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610321656;;False;{};gitawcd;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitawcd/;1610365223;1;True;False;anime;t5_2qh22;;0;[]; -[];;;uncen5ored;;;[];;;;text;t2_800mwmv;False;False;[];;The beginning of chapter 100, a certain flashback (on mobile so idk how to properly tag spoilers). It’ll work better as the beginning of next episode if they decide to use it;False;False;;;;1610321660;;False;{};gitawnw;False;t3_kujurp;False;True;t1_git9mfw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitawnw/;1610365229;2;True;False;anime;t5_2qh22;;0;[]; -[];;;2rio2;;;[];;;;text;t2_7p6or;False;True;[];;100% intentional.;False;False;;;;1610321669;;False;{};gitaxas;False;t3_kujurp;False;False;t1_gismf1p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitaxas/;1610365239;28;True;False;anime;t5_2qh22;;0;[]; -[];;;Karen_kaslana;;;[];;;;text;t2_3n10bo31;False;False;[];;There's no point thinking to much about these, just keep watching and all answers come to you;False;False;;;;1610321683;;False;{};gitayax;False;t3_kujurp;False;True;t1_git8ti1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitayax/;1610365255;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;uncen5ored;;;[];;;;text;t2_800mwmv;False;False;[];;Agreed, I imagine this is what they’ll do;False;False;;;;1610321684;;False;{};gitaye2;False;t3_kujurp;False;True;t1_git9rxh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitaye2/;1610365256;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610321691;;False;{};gitayxm;False;t3_kujurp;False;True;t1_gisf7s9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitayxm/;1610365265;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;asscrackrash;;;[];;;;text;t2_9jhv8y1m;False;False;[];;5 hours, 12.1k;False;False;;;;1610321692;;False;{};gitaz12;False;t3_kujurp;False;False;t1_gisyc0t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitaz12/;1610365266;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Elaego;;;[];;;;text;t2_55zd6hhb;False;False;[];;Pieck said she had seen them before, so they are probably an Eldian Restorationist that has teamed up with Paradis.;False;False;;;;1610321701;;False;{};gitazoo;False;t3_kujurp;False;True;t1_giskvhb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitazoo/;1610365277;1;True;False;anime;t5_2qh22;;0;[]; -[];;;midtharp;;;[];;;;text;t2_2tkeqy5s;False;False;[];;"> Willy literally got destroyed - -Eren: Nobody expects the Eldian Inquisition! - -World:";False;False;;;;1610321728;;False;{};gitb1nz;False;t3_kujurp;False;False;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitb1nz/;1610365309;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Radix2309;;;[];;;;text;t2_praen;False;False;[];;Oh good. I thought it was confirmed with 16 episodes. As long as it doesn't get rushed, it is going so good.;False;False;;;;1610321733;;False;{};gitb21m;False;t3_kujurp;False;True;t1_gita08l;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitb21m/;1610365314;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MilkToastKing;;;[];;;;text;t2_13tvvu;False;False;[];;Yup really liked that inclusion myself;False;False;;;;1610321755;;False;{};gitb3l4;False;t3_kujurp;False;False;t1_git3eaf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitb3l4/;1610365338;6;True;False;anime;t5_2qh22;;0;[]; -[];;;manormortal;;;[];;;;text;t2_dtc68;False;False;[];;Hory shirt, thanks 😊.;False;False;;;;1610321764;;False;{};gitb4bm;False;t3_kujurp;False;True;t1_gisoges;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitb4bm/;1610365349;2;False;False;anime;t5_2qh22;;0;[]; -[];;;TheAughat;;;[];;;;text;t2_w0842;False;False;[];;">was more disappointed with most recent manga chapter - - What was wrong with it?";False;False;;;;1610321774;;False;{};gitb536;False;t3_kujurp;False;False;t1_git6qaz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitb536/;1610365361;11;True;False;anime;t5_2qh22;;0;[]; -[];;;choybok77;;;[];;;;text;t2_7mwj24up;False;False;[];;You couldn't have said it better. Eren is blood thirsty still, but in the most badass and coolest way possible.;False;False;;;;1610321776;;False;{};gitb57o;False;t3_kujurp;False;True;t1_gistjre;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitb57o/;1610365363;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuyou_lilienthal_yu;;;[];;;;text;t2_74nij6hu;False;False;[];;Character design choice, personally he doesn't look asian to me;False;False;;;;1610321798;;False;{};gitb6vf;False;t3_kujurp;False;False;t1_git3p4l;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitb6vf/;1610365388;46;True;False;anime;t5_2qh22;;0;[]; -[];;;Toast_Grillman;;;[];;;;text;t2_p6ckq;False;False;[];;The fact that the Panzer team all have a crush on Pieck, whom they ride around on all day, has gotta be the most anime thing ever.;False;False;;;;1610321833;;False;{};gitb9ju;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitb9ju/;1610365430;9;True;False;anime;t5_2qh22;;0;[]; -[];;;tobeyornotoby;;;[];;;;text;t2_4offyg3q;False;False;[];;Tbf, it was pretty obvious whats was about to happen and what the hype would be about. Eren HAD to sooner or later transform in the city, you didn't even need to see or be told that much. I just thought it would happen somewhere in the middle of the episode, not at the end.;False;False;;;;1610321844;;False;{};gitbaf5;False;t3_kujurp;False;True;t1_gisdxo0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbaf5/;1610365443;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chellybeanery;;;[];;;;text;t2_18pehfb1;False;False;[];;Lmao same here! I had this whole theory built up in my head and was so sure Eren was gonna convince Reiner to join his side but nah. He's just straight up here to kill them all. Just wanted to say hi first.;False;False;;;;1610321848;;False;{};gitbapx;False;t3_kujurp;False;False;t1_gisj33c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbapx/;1610365449;7;True;False;anime;t5_2qh22;;0;[]; -[];;;zero2champion;;;[];;;;text;t2_8hh0kq1;False;False;[];;it doesn't matter how fast hundreds of thousands of super nukes fall upon the earth, you're screwed either way.;False;False;;;;1610321869;;False;{};gitbc9i;False;t3_kujurp;False;False;t1_git8jsk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbc9i/;1610365472;17;True;False;anime;t5_2qh22;;0;[]; -[];;;CEO_of_piss;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Hameru Did Nothing Wrong;light;text;t2_46l8k5id;False;False;[];;Yeah they won’t work on mobile;False;False;;;;1610321882;;False;{};gitbd9y;False;t3_kujurp;False;True;t1_gisrhre;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbd9y/;1610365489;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Phenomenian;;;[];;;;text;t2_3lufdggr;False;False;[];;First thing I noticed and I fucking loved it. Had to double back just to make sure I saw correctly.;False;False;;;;1610321885;;False;{};gitbdi6;False;t3_kujurp;False;False;t1_gisuya6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbdi6/;1610365492;7;True;False;anime;t5_2qh22;;0;[]; -[];;;KrazyBean94;;;[];;;;text;t2_110dr6;False;False;[];;I am so thankful to be born at this time to witness greatness like this.;False;False;;;;1610321889;;False;{};gitbdt9;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbdt9/;1610365498;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BoltOfBlazingGold;;;[];;;;text;t2_11qb6gnq;False;False;[];;">He is perfectly able to fight back without killing thousands of innocent civilians. - -How would you do it when they start pumping out anti-titan cannons from around the world?";False;False;;;;1610321898;;False;{};gitbef7;False;t3_kujurp;False;False;t1_git3rez;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbef7/;1610365507;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;"Sit on the chair or I will transform killing Falco and everybody living in this building - -That's basically it.";False;False;;;;1610321905;;False;{};gitbf0q;False;t3_kujurp;False;False;t1_gisy6p8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbf0q/;1610365516;11;True;False;anime;t5_2qh22;;0;[]; -[];;;rejus_crust;;;[];;;;text;t2_ely0h;False;False;[];;It was revealed in the last episode (63) during a post-credit scene!;False;False;;;;1610321908;;False;{};gitbf6j;False;t3_kujurp;False;True;t1_gitasmy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbf6j/;1610365519;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Headstub;;;[];;;;text;t2_8tb2g;False;False;[];;"I just saw this edit with the official season 4 soundtrack and it fits so well. -https://old.reddit.com/r/titanfolk/comments/kugyrh/lack_of_ost_was_disappointing_so_i_added_the/ - -AOT has always had such strong use of music during big moments and the lack of music during this scene and the parts leading up to it feels so hollow:/";False;False;;;;1610321909;;False;{};gitbfa1;False;t3_kujurp;False;True;t1_git9pq2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbfa1/;1610365520;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nahsonnn;;;[];;;;text;t2_5suhy;False;False;[];;Did you not watch til the end of episode 4? Reiner literally mentioned Eren by name lol;False;False;;;;1610321936;;False;{};gitbhcw;False;t3_kujurp;False;False;t1_gitasmy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbhcw/;1610365554;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Yatsugami;;MAL;[];;http://myanimelist.net/animelist/Yatsugami;dark;text;t2_8mbg1;False;False;[];;I just keep moving forward...;False;False;;;;1610321941;;False;{};gitbhqy;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbhqy/;1610365560;1;True;False;anime;t5_2qh22;;0;[]; -[];;;revivizi;;;[];;;;text;t2_6wdjya9;False;False;[];;u missed the last episode after credit scene didn't you?;False;False;;;;1610321957;;False;{};gitbivt;False;t3_kujurp;False;False;t1_gitasmy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbivt/;1610365578;11;True;False;anime;t5_2qh22;;0;[]; -[];;;chellybeanery;;;[];;;;text;t2_18pehfb1;False;False;[];;But don't they also share the power the Ackerman's have? The ability to not be influenced by the the coordinate? Wasn't this why both groups were persecuted?;False;False;;;;1610321966;;False;{};gitbjj5;False;t3_kujurp;False;True;t1_gisyirv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbjj5/;1610365588;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dennaneedslove;;;[];;;;text;t2_iyc6w;False;False;[];;Yup. But no matter how justified Eren is in his self defense, it was horrible to watch the Eldian civilians in the internment camp get slaughtered by Eren;False;False;;;;1610321967;;False;{};gitbjm6;False;t3_kujurp;False;False;t1_gisbow4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbjm6/;1610365589;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Lemon1412;;;[];;;;text;t2_3m3p3;False;True;[];;"Uuuh - -It's a really memorable corpse shape";False;False;;;;1610322000;;False;{};gitbm4n;False;t3_kujurp;False;True;t1_git7g72;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbm4n/;1610365629;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OldGaara;;;[];;;;text;t2_6jvmjqyk;False;False;[];;I have a question. Why would there be a declaration of war if only Eren is the danger ? Willy said that the king only wanted peace so Paradis is not an enemy, but since Eren has the original, he might destroy the whole world, but what about Paradis ? They haven’t done anything, it’s Eren that is an enemy, right ?;False;False;;;;1610322033;;False;{};gitbolx;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbolx/;1610365668;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheSpartyn;;;[];;;;text;t2_6p07c;False;False;[];;i dunno i feel like that would kill even a shifter? his torso is basically ripped in half, and his neck is completely twisted around. a quick death like that would probably counter their regeneration;False;False;;;;1610322035;;False;{};gitbos0;False;t3_kujurp;False;False;t1_git7c7a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbos0/;1610365671;9;True;False;anime;t5_2qh22;;0;[]; -[];;;mackfeesh;;;[];;;;text;t2_cz1t3lz;False;False;[];;... fuck;False;False;;;;1610322052;;False;{};gitbq0j;False;t3_kujurp;False;False;t1_gitbivt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbq0j/;1610365690;14;True;False;anime;t5_2qh22;;0;[]; -[];;;zero2champion;;;[];;;;text;t2_8hh0kq1;False;False;[];;all trapped fearfully from a perceived and misunderstood threat. The wall, - Titans, Accross the ocean - Still Titans.;False;False;;;;1610322061;;False;{};gitbqpd;False;t3_kujurp;False;False;t1_giscn0f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbqpd/;1610365701;15;True;False;anime;t5_2qh22;;0;[]; -[];;;SedentaryOwl;;;[];;;;text;t2_6iakfd3u;False;False;[];;"Haven’t watched it, but... - -Fuck Eren. All my homies hate Eren.";False;True;;comment score below threshold;;1610322064;;False;{};gitbqwf;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbqwf/;1610365704;-14;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610322078;;False;{};gitbryf;False;t3_kujurp;False;True;t1_git9ua3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbryf/;1610365720;11;True;False;anime;t5_2qh22;;0;[]; -[];;;vyxxer;;;[];;;;text;t2_ymabn;False;False;[];;"And today anime viewers get to see how eren turns from annoying shit character to one of the most interesting and nuanced characters in all of fiction, far surpassing Anakin change into Vader. - -Eren is one of my favorite characters of all time and he turned on a dime.";False;False;;;;1610322080;;False;{};gitbs37;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbs37/;1610365722;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;PikachusAnalCavity;;;[];;;;text;t2_6kahtlla;False;False;[];;Both are hot too;False;False;;;;1610322082;;False;{};gitbs7z;False;t3_kujurp;False;False;t1_gistbee;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbs7z/;1610365724;39;True;False;anime;t5_2qh22;;0;[]; -[];;;athyrson06;;;[];;;;text;t2_jaq4g;False;False;[];;The Voice acting was fabulous! I was crying when Reiner asked for Eren to kill him.;False;False;;;;1610322091;;False;{};gitbswf;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbswf/;1610365736;4;True;False;anime;t5_2qh22;;0;[]; -[];;;toutoune134;;;[];;;;text;t2_fokbo;False;False;[];;5 hours later and the karma count is already above Re:zero S2P2 premiere's 48h karma count lol;False;False;;;;1610322108;;False;{};gitbu5h;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbu5h/;1610365754;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Tomato_Ghost72;;;[];;;;text;t2_2vdwq7bh;False;False;[];;The man with the long blonde hair (forgot his name) said that eren isn't bound by thise rules I know he was only talking about how he can use the founder but could there also be a possibility that he doesn't just have the curse of yemir years is that rule doesn't apply to eren or I'm I just looking too much into it;False;False;;;;1610322111;;False;{};gitbucs;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbucs/;1610365757;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;He looks more like Mikasa than he does Kenny to me;False;False;;;;1610322121;;False;{};gitbv31;False;t3_kujurp;False;False;t1_gitb6vf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbv31/;1610365769;18;True;False;anime;t5_2qh22;;0;[]; -[];;;mackfeesh;;;[];;;;text;t2_cz1t3lz;False;False;[];;Yeah I closed it when the credits dropped. Fuck me. Lmao. Well. I got a great emotional shock today so I guess it still works out.;False;False;;;;1610322128;;False;{};gitbvn7;False;t3_kujurp;False;False;t1_gitbhcw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbvn7/;1610365777;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cybernet21;;;[];;;;text;t2_xm8ia;False;False;[];;"I like how Tybur basically tried to make the whole world unite and stop hating eldians while demonizing Eren and Paradis because that's the only way to make peace or so he believes, the people of Paradis are an unfortunate sacrifice but a needed one,that's what i feel at least. Very similar to (Code Geass Spoiler) [spoiler source](/s ""Lelouch from Code Geass at the ending the difference being Tybur demonizes someone else not himself"")";False;False;;;;1610322143;;False;{};gitbwp3;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbwp3/;1610365794;7;True;False;anime;t5_2qh22;;0;[]; -[];;;mackfeesh;;;[];;;;text;t2_cz1t3lz;False;False;[];;Hahaha. Can't believe I didn't check. I'm usually better at this. The end gap for credits was longer than usual but I still closed it.;False;False;;;;1610322167;;False;{};gitbybp;False;t3_kujurp;False;True;t1_gitbf6j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbybp/;1610365820;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Curiositygun;;;[];;;;text;t2_9oe2n;False;False;[];;"""Well technically"" is conveying the meaning of my sentence. In that Reiner and Eren are technically chill because Eren isn't killing everyone as a vendetta against Reiner but he is still ""killing everyone"".";False;False;;;;1610322182;;False;{};gitbzh5;False;t3_kujurp;False;False;t1_git87s0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitbzh5/;1610365838;8;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;All 9 titan shifters are affected by Ymir's curse, Eren included.;False;False;;;;1610322221;;False;{};gitc29z;False;t3_kujurp;False;True;t1_gitbucs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitc29z/;1610365881;2;True;False;anime;t5_2qh22;;0;[]; -[];;;solscend;;;[];;;;text;t2_9t6ja;False;False;[];;The writing in this story is the best bar none. The reveals, the symmetry, the consistency. AoT is my all time favorite 10/10.;False;False;;;;1610322238;;False;{};gitc3j5;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitc3j5/;1610365900;22;True;False;anime;t5_2qh22;;0;[]; -[];;;tekkenjin;;;[];;;;text;t2_ymz1t;False;False;[];;I didn’t even notice the difference from flashbacks. I must have been really into it to have missed that.;False;False;;;;1610322245;;False;{};gitc40i;False;t3_kujurp;False;False;t1_gist6ce;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitc40i/;1610365910;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;Reiner is a Greyjoy;False;False;;;;1610322247;;False;{};gitc45h;False;t3_kujurp;False;False;t1_gisdpnw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitc45h/;1610365912;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;spoilers homie;False;False;;;;1610322254;;False;{};gitc4o8;False;t3_kujurp;False;True;t1_gitbs37;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitc4o8/;1610365921;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aizenchair-sama;;;[];;;;text;t2_1l97otho;False;False;[];;"The art is gorgeous but I agree completely with the directing, for example in the manga there’s a panel of both Willy (screaming his war declaration) and the attack Titan as it comes out the building which I think would’ve been much if camera zoomed out to get that full perspective. Also kinda annoying that Eren smacking Willy isn’t very clear. - -Agreed about the OST, imo it should’ve been a remixed to fit youseebiggirl, a new fitting sawano piece or the leaked declaration of war ost.";False;False;;;;1610322258;;False;{};gitc4xb;False;t3_kujurp;False;True;t1_gissotf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitc4xb/;1610365925;2;True;False;anime;t5_2qh22;;0;[]; -[];;;blowtorches;;;[];;;;text;t2_2l7vhp6;False;False;[];;I’m glad I got to witness this;False;False;;;;1610322269;;False;{};gitc5q2;False;t3_kujurp;False;False;t1_git9zjo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitc5q2/;1610365937;8;True;False;anime;t5_2qh22;;0;[]; -[];;;slowdrem20;;;[];;;;text;t2_c7n2y;False;False;[];;"There is a difference between being indifferent to the effects of war and championing extermination. I didn't care what the U.S did in Afghanistan but I also wasn't actively celebrating the slaughter of their citizens. When you celebrate the slaughter of citizens, genocide and potential extermination you have no right to play that, ""I'm just a civilian"" card.";False;False;;;;1610322280;;False;{};gitc6kw;False;t3_kujurp;False;True;t1_gitandl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitc6kw/;1610365951;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gravelord-_Nito;;;[];;;;text;t2_aulvp;False;True;[];;I imagine he's become sort of desensitized to the deaths of others now that he's seen so much of it, and on his behalf even more so, which is what leads him to be able to commit war crimes like he did this episode. And there's an element of sunk cost fallacy too where if thousands of people have already died just purely to protect your own life, what's a few more on the pile? We have to make sure those people didn't die in vain after all.;False;False;;;;1610322290;;False;{};gitc7cp;False;t3_kujurp;False;False;t1_gisepu3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitc7cp/;1610365963;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;"This episode is now almost 2 hours ahead of the premiere in the karma race. Absolutely insane. - -I now have full confidence in the last 3 episodes reaching at least the range of 20k-25k+. The finale might reach even 28k if done properly.";False;False;;;;1610322302;;1610322539.0;{};gitc88w;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitc88w/;1610365976;29;True;False;anime;t5_2qh22;;0;[]; -[];;;peteyboo;;;[];;;;text;t2_7xa7c;False;False;[];;Did I mention that my father was a doctor?;False;False;;;;1610322303;;False;{};gitc8av;False;t3_kujurp;False;False;t1_gism8t6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitc8av/;1610365977;14;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610322311;;False;{};gitc8wr;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitc8wr/;1610365987;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aniviasrevenge;;;[];;;;text;t2_64n5l;False;False;[];;I think cheering the vengeance is tempting but it's actually pretty bleak overall. Eren makes a point of saying he doesn't revel in what's about to happen or enjoy the payback narrative. It's misery and killing either way. He's just doing this because Marley has made it clear they won't stop attacking Paradis until the Eldians are wiped out or Marley has nothing left to attack with.;False;False;;;;1610322324;;False;{};gitc9vc;False;t3_kujurp;False;False;t1_git0ik2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitc9vc/;1610366002;2;True;False;anime;t5_2qh22;;0;[]; -[];;;the22sinatra;;;[];;;;text;t2_1plc2ja9;False;False;[];;That was insane, time to watch it again;False;False;;;;1610322332;;False;{};gitcafk;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitcafk/;1610366010;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Infamous-QB;;;[];;;;text;t2_8f3u139z;False;False;[];;But do you seriously expect Eren to care about strangers, when his tiny little island, where everybody he knows and loves lives on is about to be invaded by the joint military forces of the world?;False;False;;;;1610322344;;False;{};gitcb94;False;t3_kujurp;False;True;t1_git38nk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitcb94/;1610366023;2;True;False;anime;t5_2qh22;;0;[]; -[];;;pepperminthippos;;;[];;;;text;t2_9esi1c4;False;False;[];;"for those of y'all disappointed about the OST, watch this edited version on YT: https://www.youtube.com/watch?v=DcPk3xB1VsE&ab_channel=Serosaki - -IMO its a LOT better. - -edit: damn yall, i loved the episode and i fuckin love aot. why am i getting downvoted lol I genuinely think the ost edit for the last scene specifically was better and wanted to share";False;True;;comment score below threshold;;1610322376;;1610322899.0;{};gitcdjd;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitcdjd/;1610366060;-15;True;False;anime;t5_2qh22;;0;[]; -[];;;vyxxer;;;[];;;;text;t2_ymabn;False;False;[];;What? Today spoilers on what? He commits huge warcrimes in today's episode?;False;False;;;;1610322377;;False;{};gitcdlr;False;t3_kujurp;False;False;t1_gitc4o8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitcdlr/;1610366061;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vegeta-IV;;;[];;;;text;t2_5q9pbal5;False;False;[];;"Eren is the fuckin GOAT! 🔥 - -Uniting the entire world against him on some Madara shit - -Reiner was so mindfucked that entire convo it was hilarious tbh 😂😂";False;False;;;;1610322403;;False;{};gitcfk6;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitcfk6/;1610366091;7;True;False;anime;t5_2qh22;;0;[]; -[];;;slowdrem20;;;[];;;;text;t2_c7n2y;False;False;[];;Not a war crime imo. People that celebrate genocide and extermination of other people might as well be combatants. If we can lambast our politicians for enabling uprisings because of the words they tweet, then we can lambast the citizenry for wholly supporting inhumane acts.;False;False;;;;1610322419;;False;{};gitcgpx;False;t3_kujurp;False;True;t1_gitaufr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitcgpx/;1610366109;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tekkenjin;;;[];;;;text;t2_ymz1t;False;False;[];;When I saw Eren pause then I thought it was some kind of signal and that they were working together.;False;False;;;;1610322424;;False;{};gitch1n;False;t3_kujurp;False;False;t1_git9bo1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitch1n/;1610366114;83;True;False;anime;t5_2qh22;;0;[]; -[];;;varath224199;;;[];;;;text;t2_164kxf;False;False;[];;It is confirmed for 16 episodes.;False;False;;;;1610322425;;False;{};gitch5n;False;t3_kujurp;False;False;t1_gitb21m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitch5n/;1610366116;14;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610322428;;False;{};gitchby;False;t3_kujurp;False;True;t1_gitcdlr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitchby/;1610366119;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GloinMyPimp;;;[];;;;text;t2_606gtsao;False;False;[];;"Eren is an adult, which is why he's come to the conclusion that this course of action is the only one he can take to protect Paradis and the people he cares about. Reiner came to the same conclusion when he attacked Paradis, though he was doing so with incorrect information. Eren has never done anything ""unjustifiable"", both him and Reiner acted in the best way they could in order to save the world.";False;False;;;;1610322431;;False;{};gitchk1;False;t3_kujurp;False;False;t1_gisu3rd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitchk1/;1610366123;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Infamous-QB;;;[];;;;text;t2_8f3u139z;False;False;[];;"In Russia we say ""Don't try to scare a hedgehog with your bare ass"" Eren did nothing wrong.";False;False;;;;1610322435;;False;{};gitchvo;False;t3_kujurp;False;True;t1_gisg0fs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitchvo/;1610366128;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Eiriksen;;;[];;;;text;t2_7psa7;False;False;[];;/r/ShingekiNoKyojin has an anime only thread where they ban manga readers from posting. Always bound to be a few pretenders though.;False;False;;;;1610322436;;False;{};gitchwq;False;t3_kujurp;False;True;t1_gisui78;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitchwq/;1610366128;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;I have to disagree. I like the Thomas the Train version the best.;False;False;;;;1610322451;;False;{};gitcj47;False;t3_kujurp;False;False;t1_gitcdjd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitcj47/;1610366147;23;True;False;anime;t5_2qh22;;0;[]; -[];;;therasaak;;;[];;;;text;t2_csp9x;False;False;[];;Who was the soldier that led them to the trap?? Armin?;False;False;;;;1610322455;;False;{};gitcjej;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitcjej/;1610366151;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nyxsaah;;;[];;;;text;t2_xiscc;False;False;[];;He's like a reverse Hitler though. Hitler was doing all of his shit because he believes that his people are the best and saw other races as lesser, while Willy pretty much thinks his people should not exist.;False;False;;;;1610322484;;False;{};gitcllj;False;t3_kujurp;False;False;t1_git7oks;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitcllj/;1610366186;28;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;Not really in my memories, the majority figured out pretty rapidly that we were in a buildup for something huge and greatly appreciated to be put in the Warriors side of the story for this time. And it sure delivered.;False;False;;;;1610322495;;False;{};gitcmc8;False;t3_kujurp;False;True;t1_gismghz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitcmc8/;1610366198;1;True;False;anime;t5_2qh22;;0;[]; -[];;;J0HN__L0CKE;;MAL;[];;http://myanimelist.net/animelist/J0HN_L0CKE;dark;text;t2_caftb;False;False;[];;If im supposed to think he's the villain after this episode- I don't;False;False;;;;1610322507;;False;{};gitcnag;False;t3_kujurp;False;False;t1_gitcdlr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitcnag/;1610366213;7;True;False;anime;t5_2qh22;;0;[]; -[];;;midtharp;;;[];;;;text;t2_2tkeqy5s;False;False;[];;"> Not necessarily - -[According to the actual dialogue in the ep](https://imgur.com/a/mYCWwzb), either Reiner transformed simultaneously with Eren (in which case he'd be onstage with Eren in the following scene), or he's a thin layer of squashed human Reiner meat back in what's left of the underground room.";False;False;;;;1610322519;;1610323539.0;{};gitco52;False;t3_kujurp;False;False;t1_git9ua3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitco52/;1610366226;39;True;False;anime;t5_2qh22;;0;[]; -[];;;vyxxer;;;[];;;;text;t2_ymabn;False;False;[];;Spoiling what exactly?;False;False;;;;1610322521;;False;{};gitcoac;False;t3_kujurp;False;True;t1_gitchby;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitcoac/;1610366228;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Arkaniux;;;[];;;;text;t2_scx9d;False;False;[];;"It felt like that scenario where there's two people having dinner and the audience knows there's a bomb under the table. - -We know some shit is gonna go down but the characters (in this case, the audience in the stands) are none the wiser.";False;False;;;;1610322529;;False;{};gitcoub;False;t3_kujurp;False;True;t1_gisc1bn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitcoub/;1610366236;2;True;False;anime;t5_2qh22;;0;[]; -[];;;clikplay;;;[];;;;text;t2_db345;False;False;[];;Anti-titan cannons do nothing on the gigantic wall titans which is evident by how much willy is shown to be scared of the rumbling in this episode;False;False;;;;1610322532;;False;{};gitcp4g;False;t3_kujurp;False;True;t1_gitbef7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitcp4g/;1610366240;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;doubt hes the titan, last episode they talked how anybody in the family could be a titan, showing like 30 people in the room when saying this, would be real weird if he was the warhammer;False;False;;;;1610322551;;False;{};gitcqlo;False;t3_kujurp;False;False;t1_gisftec;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitcqlo/;1610366264;6;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;anyone with half a brain know exactly what ur hinting with that comment;False;False;;;;1610322564;;False;{};gitcrll;False;t3_kujurp;False;True;t1_gitcoac;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitcrll/;1610366278;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Haise00;;;[];;;;text;t2_9pfcjhg9;False;False;[];;AOT is always a masterclass in writing. Thank you Isayama, 10/10.;False;False;;;;1610322566;;False;{};gitcrru;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitcrru/;1610366281;7;True;False;anime;t5_2qh22;;0;[]; -[];;;IzzyG_3;;;[];;;;text;t2_2j3aj3no;False;True;[];;The fact the Eren regrew his leg in seconds compared to hours like in previous season makes me really hyped for what he's capable of, It seems like he's far above all the other titans except the War hammer Titan when it comes to mastery;False;False;;;;1610322568;;False;{};gitcrvk;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitcrvk/;1610366282;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Seraph_CR;;;[];;;;text;t2_whocm;False;False;[];;Anyone else notice that guy in the background that gets fucking nailed in the face by debris when Eren transforms and it pans into the crowd.;False;False;;;;1610322589;;False;{};gitctgk;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitctgk/;1610366308;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Elaego;;;[];;;;text;t2_55zd6hhb;False;False;[];;Can you say that literally everyone in that building supported it? All we know about them is that they are Marley Eldians and are listening to a speech by a major politician in their backyard. Who wouldn't listen to a speech that is held in your backyard?;False;False;;;;1610322590;;False;{};gitctl4;False;t3_kujurp;False;True;t1_gitcgpx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitctl4/;1610366310;2;True;False;anime;t5_2qh22;;0;[]; -[];;;not_tha_father;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/not_tha_father;dark;text;t2_24rkp6ei;False;False;[];;in an eldian internment zone no less.;False;False;;;;1610322599;;False;{};gitcu6j;False;t3_kujurp;False;False;t1_gish4zq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitcu6j/;1610366320;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DripGodBabyYoda;;;[];;;;text;t2_558dvxc8;False;False;[];;one of the greatest authors of all time. an absolute legend that deserves recognition for ages long after the series ends.;False;False;;;;1610322610;;False;{};gitcuzt;False;t3_kujurp;False;False;t1_gisml52;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitcuzt/;1610366332;11;True;False;anime;t5_2qh22;;0;[]; -[];;;69Joker96;;;[];;;;text;t2_2uy42nsv;False;False;[];;Now Falco can inherit Riener's crippling depression!;False;False;;;;1610322614;;False;{};gitcvbm;False;t3_kujurp;False;False;t1_gismgrx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitcvbm/;1610366336;127;True;False;anime;t5_2qh22;;0;[]; -[];;;vyxxer;;;[];;;;text;t2_ymabn;False;False;[];;That I think he was once a good guy who becomes evil????;False;False;;;;1610322614;;False;{};gitcvci;False;t3_kujurp;False;True;t1_gitcrll;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitcvci/;1610366337;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;tekkenjin;;;[];;;;text;t2_ymz1t;False;False;[];;I dont understand why though. Just upvote what you like. I enjoyed this episode and upvoted. I’ve read the rezero light novels so I know that I will enjoy the next episode so I’ll upvote that too.;False;False;;;;1610322643;;False;{};gitcxim;False;t3_kujurp;False;False;t1_gisdjqy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitcxim/;1610366372;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Elaego;;;[];;;;text;t2_55zd6hhb;False;False;[];;I don't think that was Armin. They were too tall, and Pieck had seen them before. Probably a Marleyan/Marley Eldian that defected to Paradis.;False;False;;;;1610322650;;False;{};gitcy2w;False;t3_kujurp;False;True;t1_git5ewy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitcy2w/;1610366381;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LakerBlue;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LakerBlue;light;text;t2_afaca;False;False;[];;"[S4ep8 spoilers](/s ""I still hate Gabi for it. I'll never forgive her. Well, hate's a little strong, but I can't feel any positive emotions towards her."")";False;False;;;;1610322682;;False;{};gitd0gi;False;t3_kujurp;False;False;t1_gisu6mf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitd0gi/;1610366419;5;True;False;anime;t5_2qh22;;0;[]; -[];;;tekkenjin;;;[];;;;text;t2_ymz1t;False;False;[];;When I saw the blood I thought he was gonna change into titan form at the time.;False;False;;;;1610322687;;False;{};gitd0ub;False;t3_kujurp;False;False;t1_giseo6c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitd0ub/;1610366426;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Lohtric;;;[];;;;text;t2_10buyw;False;False;[];;And again;False;False;;;;1610322688;;False;{};gitd0wf;False;t3_kujurp;False;False;t1_gitcafk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitd0wf/;1610366427;5;True;False;anime;t5_2qh22;;0;[]; -[];;;GloinMyPimp;;;[];;;;text;t2_606gtsao;False;False;[];;that wouldn't be a deus ex machina;False;False;;;;1610322696;;False;{};gitd1hl;False;t3_kujurp;False;False;t1_git91fd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitd1hl/;1610366436;3;True;False;anime;t5_2qh22;;0;[]; -[];;;midtharp;;;[];;;;text;t2_2tkeqy5s;False;False;[];;"As hinted at in the ep, Reiner got squashed when Eren transformed in a tiny room with two other humans. - -That is, unless somebody can cite a previous ep where a Titan in human form can transform after first being squashed like a bug. - -u/ZPleasure?";False;False;;;;1610322703;;1610323020.0;{};gitd1zv;False;t3_kujurp;False;True;t1_gitbryf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitd1zv/;1610366445;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sinkies;;MAL;[];;http://myanimelist.net/animelist/KokoroZ;dark;text;t2_e2v04;False;False;[];;Eren can only live for 13years. How do you ensure the founding titan doesn't fall to someone with evil intention that has the ability to destory the world with a snap of a finger;False;False;;;;1610322715;;False;{};gitd2vt;False;t3_kujurp;False;True;t1_gisxgol;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitd2vt/;1610366461;0;True;False;anime;t5_2qh22;;0;[]; -[];;;nobabtheweeb;;;[];;;;text;t2_4kw3n615;False;False;[];;Generalizing an entire group of people just because of a few people has been an apperent issue( very common irl as well unfortunately) in the the entirety of Attack ok Titan. We see it from the entire world hating on the wall eldians to the wall eldians feeling threatened from every one in the world.;False;False;;;;1610322724;;False;{};gitd3k0;False;t3_kujurp;False;True;t1_gitbolx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitd3k0/;1610366471;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PoiseWorks;;;[];;;;text;t2_4slxs30;False;False;[];;Nah I think he wants Reiner to stay alive and experience being on the victim's side;False;False;;;;1610322728;;False;{};gitd3w1;False;t3_kujurp;False;True;t1_giswat0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitd3w1/;1610366478;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TyrannoFan;;MAL;[];;http://myanimelist.net/animelist/TyrannoFan;dark;text;t2_gyayf;False;False;[];;Haha, it wouldn't be Attack on Titan if it didn't end on the most insane cliffhangers every damn episode :P;False;False;;;;1610322733;;False;{};gitd48q;False;t3_kujurp;False;False;t1_gisfspq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitd48q/;1610366483;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;Man I thought 30k was a pipe dream but the finale might actually do it if this episode is anything to go by.;False;False;;;;1610322737;;False;{};gitd4k0;False;t3_kujurp;False;False;t1_gitc88w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitd4k0/;1610366488;10;True;False;anime;t5_2qh22;;0;[]; -[];;;CobaltStar_;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/CobaltStar_;light;text;t2_tynwb;False;True;[];;And hey we totally got that too at the end;False;False;;;;1610322770;;False;{};gitd6nd;False;t3_kujurp;False;True;t1_giswmii;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitd6nd/;1610366521;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OdinTyr-;;;[];;;;text;t2_3tiioz1b;False;False;[];;Reiner healed his arm basically instantly near the end of season 2 episode 6, just like Eren here. Annie had a similar thing in season 1 where she focused her regeneration in one spot for it to heal quicker. It's not just Eren. He was just inexperienced at it while Reiner and Annie received and trained with their titans for 2 years before going to Paradis.;False;False;;;;1610322772;;False;{};gitd6wn;False;t3_kujurp;False;False;t1_gitcrvk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitd6wn/;1610366525;9;False;False;anime;t5_2qh22;;0;[]; -[];;;Nordbardy;;;[];;;;text;t2_4yjomv;False;False;[];;The ending was just bad. I don't know why they chose to use that music for erens transformation rather than youseebiggirl. The slow motion use was just bad removed the shock value.;False;True;;comment score below threshold;;1610322807;;False;{};gitd9jx;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitd9jx/;1610366568;-17;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;"That's funny, Reiner and Bertolt reveal in the anime really is superior to the equivalent in the Manga. All the episode was made for this moment and it was surely amazing when in the Manga it wasn't so spectacular. -While the Declaration of War is a bit of the opposite with chapter in the Manga being really well constructed and really amazing, the speech really benefiting from the media that is Manga and Isayama's godly progress in paneling, plus his writing with foreshadowing ect.. and the anime did a really great job, but it was surely too difficult to top that. -It could have been the 1st moment by far if by some miracle they would have managed to do it.";False;False;;;;1610322819;;False;{};gitdafc;False;t3_kujurp;False;True;t1_gishvgv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdafc/;1610366582;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MidnightSunfire1;;;[];;;;text;t2_8odsl2r2;False;False;[];;People love a good revenge!;False;False;;;;1610322842;;False;{};gitdc3x;False;t3_kujurp;False;True;t1_gisuanq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdc3x/;1610366609;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Karen_kaslana;;;[];;;;text;t2_3n10bo31;False;False;[];;[Does this look like the face of Mercy?](http://imgur.com/a/4zAUwu7);False;False;;;;1610322860;;False;{};gitddhz;False;t3_kujurp;False;False;t1_gisar3t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitddhz/;1610366636;8;True;False;anime;t5_2qh22;;0;[]; -[];;;MazPA;;;[];;;;text;t2_ef5at;False;False;[];;"Eren: ""Don't blame me, I was just defending myself!""";False;False;;;;1610322879;;False;{};gitdex7;False;t3_kujurp;False;False;t1_gisboc1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdex7/;1610366660;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vyxxer;;;[];;;;text;t2_ymabn;False;False;[];;That's an interesting take. Why not? he just killed approx 100 innocent people.;False;False;;;;1610322880;;False;{};gitdez1;False;t3_kujurp;False;False;t1_gitcnag;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdez1/;1610366660;0;True;False;anime;t5_2qh22;;0;[]; -[];;;HyperSonic6325;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;I don’t simp for Kaguya girls.;dark;text;t2_40y5x1xp;False;False;[];;I can’t believe he was that lucky! It’s like a 1 in 7.5 trillion chance!;False;False;;;;1610322881;;False;{};gitdf1t;False;t3_kujurp;False;False;t1_gise39y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdf1t/;1610366662;8;True;False;anime;t5_2qh22;;0;[]; -[];;;3dsgeek333;;MAL;[];;https://myanimelist.net/profile/SinnohGeek;dark;text;t2_kwh7t;False;False;[];;"He seems to believe that the people of Paradis took the founding titan from the king and Eren will make them rise up against Marley. In short, he's thinking ""Yeah, we can all agree now that the King wanted peace... *but the king ain't here right now is he*""";False;False;;;;1610322883;;False;{};gitdf71;False;t3_kujurp;False;False;t1_gitbolx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdf71/;1610366664;4;True;False;anime;t5_2qh22;;0;[]; -[];;;bobsjobisfob;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/bobsjobisfob;light;text;t2_g11wq;False;False;[];;"well the first season covered 49 chapters for 12 episodes, which is 4.0833 chapters an episode. though surprisingly that sounds worse than it ended up being. they didnt cut out the soul of the series like the promised neverland did. though they did cut out some scenes that i liked though. its mainly season 2 episode 1 that annoyed me enough to mention it in this comment - - - -when i tried to follow along in the manga while watching season 2 episode 1, my brain exploded trying to figure out where any of it was coming. definitely the worst adapted episode of the entire series, it was basically half filler and adapted portions of various chapters. while i was watching it, i assumed they were adding so much filler so that they could have louis appear at the halfway point (which i think they did) and then have it end on the mic drop moment of chapter 50, but instead they skipped to chapter 54 to end it on a significantly lamer moment";False;False;;;;1610322897;;False;{};gitdg7z;False;t3_kujurp;False;True;t1_git8rpw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdg7z/;1610366679;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;Final episode of a great season hype + end of an absolutely amazing sub arc hype + buildup hype might do it. The only thing that's needed is quite a bit of Mappa's magic.;False;False;;;;1610322907;;False;{};gitdgyb;False;t3_kujurp;False;False;t1_gitd4k0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdgyb/;1610366692;6;True;False;anime;t5_2qh22;;0;[]; -[];;;OldGaara;;;[];;;;text;t2_6jvmjqyk;False;False;[];;Ohhh I see, ty !;False;False;;;;1610322927;;False;{};gitdibp;False;t3_kujurp;False;True;t1_gitdf71;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdibp/;1610366714;1;True;False;anime;t5_2qh22;;0;[]; -[];;;smatthew_;;;[];;;;text;t2_13jgn9;False;False;[];;I don't know why, but this seasons OP just keeps reminding me of the opening credits from the STARZ tv-show [Black Sails](https://www.youtube.com/watch?v=XFTcA4QLHw0). Maybe it's the attack titan in the end that looks like a white marble statue, or the chorus, or just the overall tone... it just feels similar. Great opening by the way, go check it out.;False;False;;;;1610322927;;False;{};gitdid7;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdid7/;1610366715;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pagonb;;;[];;;;text;t2_z7uj3;False;False;[];;So refreshing seeing anime-only reactions to this ep. The manga/meme sub has become an echo chamber of over analysing and seemingly hating on the series, so I’m glad to see people experience this episode, with such enthusiasm and passion.;False;False;;;;1610322940;;False;{};gitdjcr;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdjcr/;1610366732;49;True;False;anime;t5_2qh22;;0;[]; -[];;;AdmiringTheMonaLisa;;;[];;;;text;t2_3tocrnk8;False;False;[];;same;False;False;;;;1610322962;;False;{};gitdky2;False;t3_kujurp;False;False;t1_gitc5q2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdky2/;1610366756;4;True;False;anime;t5_2qh22;;0;[]; -[];;;RoseOfStardust;;;[];;;;text;t2_34jk1lhw;False;False;[];;Go back to titanfolk kid;False;False;;;;1610322973;;False;{};gitdls5;False;t3_kujurp;False;False;t1_gisccfb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdls5/;1610366770;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Redmon425;;;[];;;;text;t2_15ro6h;False;False;[];;"Holy hell man, Eren is legit dead inside it feels like. - -I actually thought he was going to be different from Reiner in the beginning of the series, but nope, he continues down the same dark path or war. Crazy how much Eren has changed. It is sad :( - -This episode was so damn cool though. Next episode feels like it will be a full out war. - -And yeah man, I just don't like the OP at all. Sucks we end on that, after the legendary OPs this show has given us.";False;False;;;;1610322976;;False;{};gitdm1y;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdm1y/;1610366773;6;True;False;anime;t5_2qh22;;0;[]; -[];;;H4wx;;;[];;;;text;t2_ehuq5;False;False;[];;"There is no ""power"", they weren't affected because they aren't Eldian (at least that's what I believe).";False;False;;;;1610322980;;False;{};gitdmal;False;t3_kujurp;False;False;t1_gitbjj5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdmal/;1610366777;16;False;False;anime;t5_2qh22;;0;[]; -[];;;CEO_of_piss;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Hameru Did Nothing Wrong;light;text;t2_46l8k5id;False;False;[];;I don’t understand why eren had falco stay inside, to kill him when he transforms, like why would eren want him dead?;False;False;;;;1610322995;;False;{};gitdng2;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdng2/;1610366794;3;True;False;anime;t5_2qh22;;0;[]; -[];;;3dsgeek333;;MAL;[];;https://myanimelist.net/profile/SinnohGeek;dark;text;t2_kwh7t;False;False;[];;"They can't just slap the same song on every single big twist to make it instantly ""hype,"" that'd make them all feel stale";False;False;;;;1610323013;;False;{};gitdosi;False;t3_kujurp;False;False;t1_git9pq2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdosi/;1610366815;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blowtorches;;;[];;;;text;t2_2l7vhp6;False;False;[];;"This comment is the whole gross (I hope I’m getting his name right) thing. - -Cruelty really is interesting";False;False;;;;1610323016;;False;{};gitdp3h;False;t3_kujurp;False;True;t1_git3j4g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdp3h/;1610366819;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Chaos4139;;;[];;;;text;t2_es2ni;False;False;[];;Anybody else see that guy in the crowd get domed by the rock after Eren transformed?;False;False;;;;1610323031;;False;{};gitdq77;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdq77/;1610366837;9;True;False;anime;t5_2qh22;;0;[]; -[];;;IzzyG_3;;;[];;;;text;t2_2j3aj3no;False;True;[];;Reiner's was a deep cut, this was eren's whole leg, I get what your saying tho;False;False;;;;1610323066;;False;{};gitdsq8;False;t3_kujurp;False;True;t1_gitd6wn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdsq8/;1610366878;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SteviaRogers;;;[];;;;text;t2_4brmjde2;False;False;[];;Unpopular as this opinion may be, this is the first time this season that I've actually been interested in what's happening. These 5 episodes have been painfully slow.;False;True;;comment score below threshold;;1610323081;;False;{};gitdtt5;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdtt5/;1610366895;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610323109;;False;{};gitdvvv;False;t3_kujurp;False;False;t1_gisv9yq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdvvv/;1610366930;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Lebanese_Thinker;;;[];;;;text;t2_ls8jb;False;False;[];;It is the man had literally no choice. Eren needed to kill Willy at all costs. Willy is the leader of a coalition made up of of every country on earth that just declared war on paradise you’re talking about millions upon millions of soldiers with significantly superior technology an army so damn big it’s bigger than the very population of the island. Collateral damage and civilian casualties be damned Eren had to kill that man no matter what from a military perspective . But you are supposed to feel conflicted. The point of this arc is to make you realize that there are no heroes or villains in this story and that every body has a reason for their actions.;False;False;;;;1610323115;;False;{};gitdwe5;False;t3_kujurp;False;False;t1_gismoib;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdwe5/;1610366937;7;True;False;anime;t5_2qh22;;0;[]; -[];;;spinfinity;;;[];;;;text;t2_6czvz;False;False;[];;I'm not really rooting for anybody anymore, though having followed Eren's journey for 4 seasons now... there is a part of me that feels like he deserves his vengeance, and it makes the moral conflict that much more engaging.;False;False;;;;1610323119;;False;{};gitdwnp;False;t3_kujurp;False;True;t1_git55e1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdwnp/;1610366942;0;True;False;anime;t5_2qh22;;0;[]; -[];;;brownguy6391;;;[];;;;text;t2_3et2u982;False;False;[];;My take was he just wanted him to listen to the conversation to know people on the other side aren't devils. Not sure they would kill him this early but then again this is aot lol;False;False;;;;1610323137;;False;{};gitdy0v;False;t3_kujurp;False;False;t1_gitdng2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdy0v/;1610366964;13;True;False;anime;t5_2qh22;;0;[]; -[];;;DahmitAll;;;[];;;;text;t2_h7bay;False;False;[];;Was that glitch at the start of the episode on purpose or accidental by the animation studio?;False;False;;;;1610323148;;False;{};gitdytg;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdytg/;1610366977;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Warlordofmordor2;;;[];;;;text;t2_ymkv4kf;False;False;[];;There's one thing I can't figure out, you know when they're all talking about the rumbling and there's a image of what look like all the colossal titans arrayed out together does that mean that they've broke down the walls and got the titans ready to fight?;False;False;;;;1610323157;;False;{};gitdzh6;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitdzh6/;1610366987;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MonaThiccAss;;;[];;;;text;t2_8stg2bwj;False;False;[];;aS a FiRsT TiMe ReAdEr AnD WaTcher, tHis iS My EsSaY...;False;False;;;;1610323176;;False;{};gite0vi;False;t3_kujurp;False;False;t1_gisv9yq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gite0vi/;1610367011;10;True;False;anime;t5_2qh22;;0;[]; -[];;;MartinaS90;;;[];;;;text;t2_13onma;False;False;[];;The 4 previous episodes were a build up for this and what is about to come.;False;False;;;;1610323179;;False;{};gite14y;False;t3_kujurp;False;False;t1_gitdtt5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gite14y/;1610367016;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Relual;;;[];;;;text;t2_82zim;False;False;[];;I don't know why each episode get's shorter...this took like 1 minute from start to finish...Now I have to wait 1 week FML;False;False;;;;1610323193;;False;{};gite25j;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gite25j/;1610367031;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Skrzelik;;;[];;;;text;t2_iesgj;False;False;[];;"Would Eren even be able to transform without his leg? He cut his hand to threaten Reiner he can transform and kill the civilians at any point, but still took the time to grow his leg back. Similarly at Reiner reveal in season 2 he healed his arm before transforming. - -That makes me wonder if he was able to transform since his leg was amputated for weeks and technically healed. Or maybe he was bluffing and if Reiner caught onto that he could disarm/kill him before his leg grows back";False;False;;;;1610323241;;False;{};gite5li;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gite5li/;1610367086;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SaboTheRevolutionary;;;[];;;;text;t2_p3mlx;False;False;[];;Youseebiggirl is a horrible music choice for this. I've watched this scene with that playing and it didn't fit;False;False;;;;1610323242;;False;{};gite5ok;False;t3_kujurp;False;False;t1_gitd9jx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gite5ok/;1610367087;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Atreides-42;;;[];;;;text;t2_3l5gplft;False;False;[];;"Dude he flat-out said he might destroy the world. I know the world is fucked but like no, if you're destroying it, you're the bad guy. - -Best case scenario for Eren is he dies destroying basically the entire marleyan army and his friends can martyr him and then pursue a more diplomatic peace. I don't see Eren stopping at anything less than world domination at this point, after his speech this episode and his ""People who throw themselves into hell"" speech a few episodes ago";False;False;;;;1610323247;;False;{};gite60v;False;t3_kujurp;False;True;t1_gisvimi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gite60v/;1610367093;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blueasian0682;;;[];;;;text;t2_1mq0q9k2;False;False;[];;That beard was so fake though XD;False;False;;;;1610323249;;False;{};gite64w;False;t3_kujurp;False;True;t1_git0w82;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gite64w/;1610367095;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BakaFame;;;[];;;;text;t2_zfj4h;False;False;[];;Yup;False;False;;;;1610323256;;False;{};gite6mn;False;t3_kujurp;False;False;t1_git54bx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gite6mn/;1610367103;6;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;No its just a imagery of what would happen if they were to be released.;False;False;;;;1610323258;;False;{};gite6s3;False;t3_kujurp;False;False;t1_gitdzh6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gite6s3/;1610367106;9;True;False;anime;t5_2qh22;;0;[]; -[];;;def_not_a_weeb;;;[];;;;text;t2_42xpucur;False;False;[];;The way 2021 started I would believe it;False;False;;;;1610323271;;False;{};gite7pu;False;t3_kujurp;False;False;t1_gisaeyc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gite7pu/;1610367121;3;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;What glitch?;False;False;;;;1610323273;;False;{};gite7vb;False;t3_kujurp;False;True;t1_gitdytg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gite7vb/;1610367123;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PoiseWorks;;;[];;;;text;t2_4slxs30;False;False;[];;Obviously Eren chooses the people he know and loves, Paradis. There was a lot of eldians in that building that he killed so I think he fights ONLY for the island;False;False;;;;1610323276;;False;{};gite82s;False;t3_kujurp;False;False;t1_git9hqp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gite82s/;1610367126;7;True;False;anime;t5_2qh22;;0;[]; -[];;;KuroOni;;;[];;;;text;t2_qia7b;False;False;[];;"Man this show has never stopped surprising me. Since this episode is mostly aboyt eren, i actually didn't like eren until now, he started off as your stereotypical traumatized shonen kid, and watching him this episode is almost like an entire new character. Thats character development done right. - -Also what bertholdt said in last season (no one is wrong but you must die) suddenly makes much more sense after that speech. - -I feel bad for reiner. - -And lastly i don't think i am ready for whatever is going to happen in that war.";False;False;;;;1610323293;;False;{};gite994;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gite994/;1610367146;4;True;False;anime;t5_2qh22;;0;[]; -[];;;FireRifle64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FireRifle64;light;text;t2_29fr8mww;False;False;[];;"Damn man, I had the volume turned up for this. The Most that played during the speech and Eren's conversation was great.Hearing Eren's Roar was fucking great. - -I knew what to expect from reading the manga but it was so great seeing it animated.";False;False;;;;1610323306;;False;{};gitea6f;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitea6f/;1610367161;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Eesti_pwner;;;[];;;;text;t2_d3vcs;False;False;[];;So far AOT has been a show that has rewarded me thinking about stuff. Like whenever I ask a question, the show always has an interesting answer in store. And that part is really fun. That is why I like to analyze and pose questions for this show.;False;False;;;;1610323312;;False;{};giteani;False;t3_kujurp;False;False;t1_gitayax;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giteani/;1610367167;6;True;False;anime;t5_2qh22;;0;[]; -[];;;MonaThiccAss;;;[];;;;text;t2_8stg2bwj;False;False;[];;25k;False;False;;;;1610323316;;False;{};giteawj;False;t3_kujurp;False;True;t1_giscepb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giteawj/;1610367171;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Warlordofmordor2;;;[];;;;text;t2_ymkv4kf;False;False;[];;Ah ok thanks!;False;False;;;;1610323330;;False;{};gitebyf;False;t3_kujurp;False;True;t1_gite6s3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitebyf/;1610367189;2;True;False;anime;t5_2qh22;;0;[]; -[];;;3dsgeek333;;MAL;[];;https://myanimelist.net/profile/SinnohGeek;dark;text;t2_kwh7t;False;False;[];;"He made some good points but in the end I think he was just as misguided as Eren. While he wanted peace between the other nations, he still tried to reach this goal through more genocide, but they were ""devils"" so it was ok to him. It rings back to the idea from S1 that humans don't know how to coexist unless they have a common enemy looming over them.";False;False;;;;1610323334;;False;{};gitec8x;False;t3_kujurp;False;True;t1_git7w1l;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitec8x/;1610367194;1;True;False;anime;t5_2qh22;;0;[]; -[];;;psychsucks;;;[];;;;text;t2_7pinf0kz;False;False;[];;"Actually, I’ve always found that Ymir’s actions to be the weakest part of AoT. - -Why would she give up her life for Berthold and Reiner if Christa was the only thing she ever cared about? - -If you think about it from a writing perspective, it’ll start to make more sense. Having Ymir around would totally ruin the basement reveal because she kinda knows what’s outside the walls already";False;False;;;;1610323336;;False;{};gitecdi;False;t3_kujurp;False;False;t1_gisy48k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitecdi/;1610367196;10;True;False;anime;t5_2qh22;;0;[]; -[];;;aniviasrevenge;;;[];;;;text;t2_64n5l;False;False;[];;"If you go back years then there's not really much tension in the scene I think-- Willie's declaration is borderline meaningless because they're already at war, and Eren doesn't need to wait for anything. It's just fluke timing that he waits til Willie says ""war!"" out loud. - -I think in the context of the story it's a cold war until the night of the speech-- I'm just saying Eren's forces execute the first strike (admittedly, non-lethal) against critical Marleyan military assets on Marleyan soil before Willie makes his Declaration. - -I see your point though, it could really go either way depending on how you interpret events.";False;False;;;;1610323348;;1610323585.0;{};gited8a;False;t3_kujurp;False;True;t1_gitalax;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gited8a/;1610367209;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptainPikmin;;;[];;;;text;t2_10w5w9;False;False;[];;Black Sails is excellent. Peak pirate entertainment right there. It just occurred to me that there are similarities. The decision to go with a spoiler free opening with more abstract imagery certainly reminds me more of western tv show openings rather than typical anime openings.;False;False;;;;1610323366;;False;{};giteehn;False;t3_kujurp;False;True;t1_gitdid7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giteehn/;1610367230;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CrimeFightingScience;;MAL;[];;death to cat people;dark;text;t2_o6e0e;False;False;[];;"Instead of the anime ""right behind you,"" we have the more powerful ""right in front of you.""";False;False;;;;1610323391;;False;{};gitega4;False;t3_kujurp;False;False;t1_giscm9k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitega4/;1610367257;10;True;False;anime;t5_2qh22;;0;[]; -[];;;MonaThiccAss;;;[];;;;text;t2_8stg2bwj;False;False;[];;oil, yeah for real, literally oil and minerals.;False;False;;;;1610323398;;False;{};gitegtc;False;t3_kujurp;False;False;t1_gisjnrv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitegtc/;1610367265;6;True;False;anime;t5_2qh22;;0;[]; -[];;;3dsgeek333;;MAL;[];;https://myanimelist.net/profile/SinnohGeek;dark;text;t2_kwh7t;False;False;[];;They think you can just slap YouSeeBigGirl on every big scene and it's automatically god-tier;False;False;;;;1610323409;;False;{};gitehkx;False;t3_kujurp;False;False;t1_git749f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitehkx/;1610367278;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Maxximillianaire;;;[];;;;text;t2_11zckk;False;False;[];;The voice actors were all so great in this episode. Can't wait for next week;False;False;;;;1610323419;;False;{};giteib6;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giteib6/;1610367290;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sabur2011;;;[];;;;text;t2_7k1swe6w;False;False;[];;As expected of grisha;False;False;;;;1610323429;;False;{};gitej0x;False;t3_kujurp;False;False;t1_git1vrp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitej0x/;1610367301;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Mrtheliger;;;[];;;;text;t2_11ghbg;False;False;[];;"Wrong. Eren and Reiner are the same because they both gave into the cycle of hate. Eren by giving up his humanity and murdering innocents like this, Reiner by not only pushing Bertholdt and Annie to take the wall for his own selfish reasons, but also for continuing the mission years after the fact when he knew what the Paradisians were. Neither of them are a slave to the past or fate. - -Bertholdt is closer to what you describe, but he also chose to follow along with Reiner's broken delusions and take the easiest path, giving up his capacity for choice until RTS, when he finally came to the conclusion that the world was cruel, and it's never going to be so easy as to say ""this side is right"" or ""this side is wrong.""";False;False;;;;1610323440;;False;{};gitejuk;False;t3_kujurp;False;True;t1_gisgwq8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitejuk/;1610367315;4;True;False;anime;t5_2qh22;;0;[]; -[];;;CrimeFightingScience;;MAL;[];;death to cat people;dark;text;t2_o6e0e;False;False;[];;Damn dude, you missed the beautiful juxtaposition of Reiner and the hammer titan noble guy.;False;False;;;;1610323460;;False;{};gitelbb;False;t3_kujurp;False;False;t1_gisony4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitelbb/;1610367339;13;True;False;anime;t5_2qh22;;0;[]; -[];;;HyperSonic6325;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;I don’t simp for Kaguya girls.;dark;text;t2_40y5x1xp;False;False;[];;Willy Tybur was slain by Eren Yeager using *[Attack Titan]*;False;False;;;;1610323483;;False;{};gitemyn;False;t3_kujurp;False;False;t1_gisf892;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitemyn/;1610367365;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CEO_of_piss;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Hameru Did Nothing Wrong;light;text;t2_46l8k5id;False;False;[];;That kinda makes sense, although I am not sure how much he’s gonna gain from from hearing it if he fucking dies 5 minutes later;False;False;;;;1610323486;;False;{};giten7e;False;t3_kujurp;False;False;t1_gitdy0v;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giten7e/;1610367368;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Haise00;;;[];;;;text;t2_9pfcjhg9;False;False;[];;Poor Reiner can never catch a break.;False;False;;;;1610323508;;False;{};giteoow;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giteoow/;1610367391;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SuckDragon;;;[];;;;text;t2_4adk84sj;False;False;[];;I've listened to that version too. I can wholeheartedly say: It does not fit at all.;False;False;;;;1610323533;;False;{};giteqj2;False;t3_kujurp;False;False;t1_gitehkx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giteqj2/;1610367422;4;True;False;anime;t5_2qh22;;0;[]; -[];;;jetooro;;;[];;;;text;t2_6717fb1x;False;False;[];;"Reiner: What did... You come here to do? - -Eren: The same thing as you. - - -That one line just ended Marley.";False;False;;;;1610323533;;1610329566.0;{};giteqjf;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giteqjf/;1610367422;12;True;False;anime;t5_2qh22;;0;[]; -[];;;htcd22;;;[];;;;text;t2_3icfdloz;False;False;[];;i feel bad about falco and the kids being manipulated by cruelty of society, the art of war no one is exempted.;False;False;;;;1610323535;;False;{};giteqql;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giteqql/;1610367425;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacob_Mango;;;[];;;;text;t2_j8q90;False;False;[];;Start of the episode Eren says there are families in the building on top of them. End of the episode Eren destroys said building, crushing those families within it.;False;False;;;;1610323546;;False;{};giterjf;False;t3_kujurp;False;True;t1_gitcnag;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giterjf/;1610367439;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HyperSonic6325;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;I don’t simp for Kaguya girls.;dark;text;t2_40y5x1xp;False;False;[];;I ship Eren x Basement. Anyone with me?;False;False;;;;1610323552;;False;{};giterxd;False;t3_kujurp;False;True;t1_gisg9of;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giterxd/;1610367446;2;True;False;anime;t5_2qh22;;0;[]; -[];;;blowtorches;;;[];;;;text;t2_2l7vhp6;False;False;[];;"Bunch of lore too - -I say bunch because I’m not sure how much but its definitely there";False;False;;;;1610323556;;False;{};gites7f;False;t3_kujurp;False;True;t1_git9mfw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gites7f/;1610367450;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jetooro;;;[];;;;text;t2_6717fb1x;False;False;[];;Eren waited for Willy to declare war, so its fair isn't it;False;False;;;;1610323575;;False;{};gitetml;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitetml/;1610367477;5;True;False;anime;t5_2qh22;;0;[]; -[];;;laine29;;;[];;;;text;t2_16yitmum;False;False;[];;Do you want every scene with youseebiggirl? When I hear that music I think of Reiner's betrayal. It's one of my favorite moments in this anime. Every scene doesn't have to have the same music, otherwise it'll turn stale and forgettable as time passes.;False;False;;;;1610323583;;False;{};giteu6q;False;t3_kujurp;False;True;t1_gitd9jx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giteu6q/;1610367486;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jtktomb;;;[];;;;text;t2_z6v3s;False;False;[];;Ripped apart*;False;False;;;;1610323586;;False;{};giteudg;False;t3_kujurp;False;False;t1_gishwyj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giteudg/;1610367489;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Sujallamichhaneakasl;;;[];;;;text;t2_3i2s1kbj;False;False;[];;Lol! In the manga episodes 1-4 took eight freaking months.;False;False;;;;1610323592;;False;{};giteusp;False;t3_kujurp;False;False;t1_gitdtt5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giteusp/;1610367496;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Demortus;;;[];;;;text;t2_130cjr;False;False;[];;You are not prepared. The anime just hit an inflection point. The greatness will accelerate out of control and nothing can stop it.;False;False;;;;1610323602;;False;{};gitevgp;False;t3_kujurp;False;False;t1_gisml52;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitevgp/;1610367506;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Eesti_pwner;;;[];;;;text;t2_d3vcs;False;False;[];;"Well everyone has their preferences and I respect yours. - -I find the focus on Reiner super interesting and came to like a lot of the interactions of the new characters.";False;False;;;;1610323608;;False;{};gitevvk;False;t3_kujurp;False;False;t1_gitdtt5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitevvk/;1610367513;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610323610;;False;{};gitew0a;False;t3_kujurp;False;True;t1_gisvvhb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitew0a/;1610367515;0;True;False;anime;t5_2qh22;;0;[]; -[];;;renannmhreddit;;;[];;;;text;t2_n50we;False;False;[];;I hope Beastars doesnt follow the manga, because post chapter 120 it is a pure trainwreck;False;False;;;;1610323622;;False;{};gitewvg;False;t3_kujurp;False;True;t1_git89ug;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitewvg/;1610367530;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mtachii;;;[];;;;text;t2_2wsvjzav;False;False;[];;15 minutes later I'm still shaking. One of the greatest anime episodes I have ever seen. The tension, Voice acting, OST, Willy's speech, Eren's calm demeanour, Reiner's breakdown, everything simply amazing.;False;False;;;;1610323623;;False;{};gitewxf;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitewxf/;1610367531;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Gravelord-_Nito;;;[];;;;text;t2_aulvp;False;True;[];;Like he said, he basically has no choice. He's not just going to roll over and let his people suffer complete genocide. They're his people, he HAS to fight for them, just like Reiner had to fight for his. The premise of this show is so interesting because people clamoring for wiping out the Eldians really have a point, and that's basically the entire world sans Paradis, so that's who Eren has to fight, and in a way, prove their whole point.;False;False;;;;1610323694;;False;{};gitf1zc;False;t3_kujurp;False;False;t1_git9hqp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitf1zc/;1610367613;31;True;False;anime;t5_2qh22;;0;[]; -[];;;Eesti_pwner;;;[];;;;text;t2_d3vcs;False;False;[];;"I'm not sure if Armin is that tall. But maybe. I have no idea tbh. - -I would imagine that Armin is kept safe somewhere considering he is the most powerful weapon in existence.";False;False;;;;1610323710;;False;{};gitf34u;False;t3_kujurp;False;True;t1_gitcjej;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitf34u/;1610367631;1;True;False;anime;t5_2qh22;;0;[]; -[];;;poopm0nster;;;[];;;;text;t2_4l4wjcug;False;False;[];;i feel so exhilarated just seeing reiner beg for his life. TEAM EREN FOREVER!!;False;False;;;;1610323722;;False;{};gitf428;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitf428/;1610367647;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CrimeFightingScience;;MAL;[];;death to cat people;dark;text;t2_o6e0e;False;False;[];;"I think Willy is a trap for Eren. Willy isn't the warhammer titan. My question is if they're baiting Eren, why have all the leads of the Military there? - - -They could be going for a country coup, and eat Eren in one fell swing strategy.";False;False;;;;1610323763;;False;{};gitf70z;False;t3_kujurp;False;False;t1_git8ssh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitf70z/;1610367697;13;True;False;anime;t5_2qh22;;0;[]; -[];;;ClickingHCT;;;[];;;;text;t2_l5nip;False;False;[];;I mean, falco leaves, everyone asks where he was, and he tells them he took Reiner to meet an old friend, which would then lead to the basement being found by Marley even faster than it already was;False;False;;;;1610323763;;False;{};gitf71b;False;t3_kujurp;False;False;t1_gitdng2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitf71b/;1610367697;10;True;False;anime;t5_2qh22;;0;[]; -[];;;themadloser;;;[];;;;text;t2_734hujgx;False;False;[];;I think so too. It's been pleasantly surprising - however I think that the WIT studio director for AOT is directing AOT Season 4 - can anybody confirm?;False;False;;;;1610323825;;False;{};gitfbiu;False;t3_kujurp;False;True;t1_gisb7ex;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfbiu/;1610367771;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Magikarp-Army;;;[];;;;text;t2_eiybm;False;False;[];;Reiner is one of the best characters in tv history;False;False;;;;1610323825;;False;{};gitfbk7;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfbk7/;1610367772;7;True;False;anime;t5_2qh22;;0;[]; -[];;;BelizariuszS;;;[];;;;text;t2_1dicu0i;False;False;[];;"Also Eren when Willy stole his ""because I was born into this world"" - ANGER";False;False;;;;1610323828;;False;{};gitfbsq;False;t3_kujurp;False;False;t1_gislw40;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfbsq/;1610367777;7;True;False;anime;t5_2qh22;;0;[]; -[];;;GabortionFund;;;[];;;;text;t2_4p9mm4nr;False;False;[];;Honestly kinda jealous, that must have been wild;False;False;;;;1610323841;;False;{};gitfcp9;False;t3_kujurp;False;False;t1_gitbq0j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfcp9/;1610367792;4;True;False;anime;t5_2qh22;;0;[]; -[];;;mario61752;;;[];;;;text;t2_10d49q;False;False;[];;A shifter is only unable to transform if injured right after transforming. Eren had his arm and leg chopped off the first time he transformed in season 1;False;False;;;;1610323845;;False;{};gitfczv;False;t3_kujurp;False;True;t1_gite5li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfczv/;1610367798;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CrimeFightingScience;;MAL;[];;death to cat people;dark;text;t2_o6e0e;False;False;[];;It was also spectacular Juxtaposition with Reiner begging to die.;False;False;;;;1610323853;;False;{};gitfdi3;False;t3_kujurp;False;False;t1_gishd5x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfdi3/;1610367806;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Snook0116;;;[];;;;text;t2_5s4kzka6;False;False;[];;I see a lot of meme potential in that image;False;False;;;;1610323856;;False;{};gitfdq9;False;t3_kujurp;False;True;t1_giscm9k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfdq9/;1610367810;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Eesti_pwner;;;[];;;;text;t2_d3vcs;False;False;[];;LOL;False;False;;;;1610323865;;False;{};gitfee9;False;t3_kujurp;False;True;t1_gitars8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfee9/;1610367820;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;Think you're correct. It's at 13k in 5 hours. It only makes sense to presume that it'll at least hit 20k at the minimum by midnight EST. It'll definitely hit 25k in 48 hours;False;False;;;;1610323876;;False;{};gitff81;False;t3_kujurp;False;True;t1_giteawj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitff81/;1610367834;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SoMuchHatred;;;[];;;;text;t2_o15bh;False;False;[];;I'm not sure whether Eren could have transformed until his leg was healed, but it wouldn't necessarily be a big setback for him either way. He can heal it pretty quickly after all and Reiner was constrained by Falco being there - he can't transform without risking Falco's life.;False;False;;;;1610323888;;False;{};gitfg3o;False;t3_kujurp;False;True;t1_gite5li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfg3o/;1610367848;1;True;False;anime;t5_2qh22;;0;[]; -[];;;peenegobb;;;[];;;;text;t2_azg1y;False;False;[];;I don’t think he’d have declared war if he knew eren was within 20 feet of him.;False;False;;;;1610323893;;False;{};gitfghf;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfghf/;1610367855;2;True;False;anime;t5_2qh22;;0;[]; -[];;;steinstill;;;[];;;;text;t2_2knjq43f;False;False;[];;I feel like it is more connected to the scene in season 1 where Armin asks Eren why he wants to go outside;False;False;;;;1610323896;;False;{};gitfgqi;False;t3_kujurp;False;True;t1_gisioq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfgqi/;1610367859;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;IM SO FUCKING READY;False;False;;;;1610323900;;False;{};gitfh0j;False;t3_kujurp;False;True;t1_gitevgp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfh0j/;1610367864;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mario61752;;;[];;;;text;t2_10d49q;False;False;[];;Can’t have him blow the whistle;False;False;;;;1610323944;;False;{};gitfkcz;False;t3_kujurp;False;False;t1_gitdng2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfkcz/;1610367919;8;True;False;anime;t5_2qh22;;0;[]; -[];;;mr_sto0pid;;;[];;;dark;text;t2_13ckn3;False;True;[];;Oh. I should rewatch the series.;False;False;;;;1610323950;;False;{};gitfkrx;False;t3_kujurp;False;True;t1_gitajc1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfkrx/;1610367926;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610323963;;False;{};gitflqv;False;t3_kujurp;False;True;t1_git956y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitflqv/;1610367942;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wefeh;;;[];;;;text;t2_y4co8;False;False;[];;">War was declared, so fair game - -By simply trasforming he killed so many civilians, that's not very fair to me, that's a war crime fair and square";False;False;;;;1610323966;;False;{};gitfm0r;False;t3_kujurp;False;True;t1_git0ftf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfm0r/;1610367946;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MartinaS90;;;[];;;;text;t2_13onma;False;False;[];;Yeah, it seems it still worked for you! Might've been a bit confusing not knowing how they got into that cellar haha;False;False;;;;1610323967;;False;{};gitfm13;False;t3_kujurp;False;True;t1_gitbvn7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfm13/;1610367946;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mr_sto0pid;;;[];;;dark;text;t2_13ckn3;False;True;[];;Ahh i need to rewatch the series then.;False;False;;;;1610323982;;False;{};gitfn45;False;t3_kujurp;False;True;t1_gitak5x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfn45/;1610367965;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BelizariuszS;;;[];;;;text;t2_1dicu0i;False;False;[];;Dear Watson.;False;False;;;;1610323992;;False;{};gitfnwg;False;t3_kujurp;False;True;t1_gisxto9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfnwg/;1610367978;3;True;False;anime;t5_2qh22;;0;[]; -[];;;danny_b87;;;[];;;;text;t2_8uam1;False;False;[];;Eren: I accept;False;False;;;;1610324000;;False;{};gitfohg;False;t3_kujurp;False;True;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfohg/;1610367987;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bogzy;;;[];;;;text;t2_csiqt;False;False;[];;A bit surprised that they were eldians, and Eren knew it, but it sets the tone for how brutal this will be and kinda them against the entire world including the other eldians maybe, and i like that.;False;False;;;;1610324010;;False;{};gitfp5x;False;t3_kujurp;False;True;t1_gisurtq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfp5x/;1610367997;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OnlyOwen;;;[];;;;text;t2_179cs3;False;False;[];;"In the 1st episode, Eren’s normal life was shattered not by the wall being destroyed, but by his loving mother being eaten. - -Now 63 episodes later, Willy becomes the strongest singular beacon of hope for Marley. - -And 64 episodes in, history will repeat itself with a hero being devoured, the cycle of brutality continuing. - -This episode legit gave me GOOSEBUMPS!!!";False;False;;;;1610324015;;False;{};gitfpk3;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfpk3/;1610368004;7;True;False;anime;t5_2qh22;;0;[]; -[];;;blueasian0682;;;[];;;;text;t2_1mq0q9k2;False;False;[];;Why?;False;False;;;;1610324045;;False;{};gitfrro;False;t3_kujurp;False;False;t1_gitbqwf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfrro/;1610368041;6;True;False;anime;t5_2qh22;;0;[]; -[];;;stang90;;;[];;;;text;t2_8x3hc;False;False;[];;"Sorry I feel like I missed something. Willy explains how king fritz was basically a martyr and allowed him and his people to be exiled in order to end a pointless war. How they created a fake hero who defeated the eldian empire of the time. Willy paints king fritz as a hero in the speech, and talks about how over running the world with titans was more of a bluff and that because of the kings legacy the royal family can no longer control the founding titan fully. - -Why is the conclusion to all of this to declare war on paradise? Isn't this completely backwards?";False;False;;;;1610324061;;False;{};gitft1e;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitft1e/;1610368061;2;True;False;anime;t5_2qh22;;0;[]; -[];;;q_uo;;;[];;;;text;t2_9h79inlb;False;False;[];;On the contrary, he had Falco stay inside to make sure he doesn't die.;False;False;;;;1610324069;;False;{};gitftnd;False;t3_kujurp;False;True;t1_gitdng2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitftnd/;1610368072;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nebirish;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ayobobf;light;text;t2_btfkq;False;False;[];;Eldian suicide bombers were shown in episode 1, too. So that makes four out of four;False;False;;;;1610324072;;False;{};gitftud;False;t3_kujurp;False;False;t1_gisv209;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitftud/;1610368075;19;True;False;anime;t5_2qh22;;0;[]; -[];;;iDannyEL;;;[];;;;text;t2_en6ak;False;False;[];;"Eren: ""So anyway I started blasting.""";False;False;;;;1610324074;;False;{};gitftxv;False;t3_kujurp;False;False;t1_gisaqk9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitftxv/;1610368077;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Sujallamichhaneakasl;;;[];;;;text;t2_3i2s1kbj;False;False;[];;People over at r/titanfolk are legit the greatest doomers ever. I went there after the episode aired in Japan to get a sense of how good the episode was and was baffled by how so many made it seem like they completely butchered everything. Then I watch the episode when it officially drops and it's fucking incredible. I love that sub but they really be getting on my nerves sometimes.;False;False;;;;1610324085;;False;{};gitfuqr;False;t3_kujurp;False;False;t1_gitdjcr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfuqr/;1610368090;53;True;False;anime;t5_2qh22;;0;[]; -[];;;johnmlad;;;[];;;;text;t2_iji46;False;False;[];;"I love how much the anime-only people love this episode. - -This isn't any spoiler but I have to say as a manga reader who's been reading manga for over a decade now from this point on Attack on Titan is one of the rare ones that gave me anxiety every time a new chapter came out to this day. - -From this episode on you're all in for a wild ride. - - -And don't listen to the people who hate on the anime just because it's different from the manga in some way just enjoy yourselves.";False;False;;;;1610324090;;False;{};gitfv3v;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfv3v/;1610368096;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Nordbardy;;;[];;;;text;t2_4yjomv;False;False;[];;The music they chose doesn't suit it either.;False;False;;;;1610324122;;False;{};gitfxgx;False;t3_kujurp;False;True;t1_gite5ok;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfxgx/;1610368135;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610324127;;False;{};gitfxtt;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfxtt/;1610368139;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SoMuchHatred;;;[];;;;text;t2_o15bh;False;False;[];;Along with what everyone else is saying, Falco is sort of a hostage in that situation. Reiner can't transform without risking him, which is another guarantee that Reiner won't fight back, along with the people all above them.;False;False;;;;1610324136;;False;{};gitfyg9;False;t3_kujurp;False;False;t1_gitdng2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitfyg9/;1610368150;9;True;False;anime;t5_2qh22;;0;[]; -[];;;ClickingHCT;;;[];;;;text;t2_l5nip;False;False;[];;Because Eren stole the founding titan from the royal family, so the vow to renounce war is non longer active since it only affects royals;False;False;;;;1610324171;;False;{};gitg10v;False;t3_kujurp;False;False;t1_gitft1e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitg10v/;1610368190;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Zain69;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Darthvader32;light;text;t2_lbl42ga;False;False;[];;its because they are worried that eren might start the rumbling thats why he is gonna start a war on paradise;False;False;;;;1610324189;;False;{};gitg2eu;False;t3_kujurp;False;True;t1_gitft1e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitg2eu/;1610368213;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Eye_Yam_Stew_Peed123;;;[];;;;text;t2_67f0zm7z;False;False;[];;can someone explain what the rumbling or whatever is because my brain is small and i didnt really understand it;False;False;;;;1610324193;;False;{};gitg2qq;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitg2qq/;1610368217;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Eesti_pwner;;;[];;;;text;t2_d3vcs;False;False;[];;"Willy wants to destroy Paradis' due to their ancestors' crimes and the threat that Paradis' COULD destroy the world. - -Meanwhile, the only reason that Paradis' is out for blood is due to Marley's actions.";False;False;;;;1610324201;;False;{};gitg3ed;False;t3_kujurp;False;True;t1_gitec8x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitg3ed/;1610368228;2;True;False;anime;t5_2qh22;;0;[]; -[];;;5iftyy;;;[];;;;text;t2_47wboxio;False;False;[];;I hate the little shit gabi with a passion, she needs to die a painful and slow death;False;True;;comment score below threshold;;1610324204;;False;{};gitg3lp;False;t3_kujurp;False;False;t1_gismgw8;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitg3lp/;1610368231;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;krispywombat;;;[];;;;text;t2_11fcdzcp;False;False;[];;Fritz was not a hero he was self righteous prick who only saw the sins of his people and choose slow suicide for them without their consent he resigned his people to die no matter the cost.;False;False;;;;1610324205;;False;{};gitg3q1;False;t3_kujurp;False;False;t1_gisydyw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitg3q1/;1610368233;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MAQS357;;;[];;;;text;t2_yske3;False;False;[];;You missed the part where he explains Eren took the founding titan and is now a threat to the world.;False;False;;;;1610324216;;False;{};gitg4gm;False;t3_kujurp;False;True;t1_gitft1e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitg4gm/;1610368245;3;True;False;anime;t5_2qh22;;0;[]; -[];;;UzEE;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/UzEEInc;light;text;t2_45t2z;False;False;[];;Anime only here. Do you mean the finale of the series or the finale of the current season / cour?;False;False;;;;1610324219;;False;{};gitg4pm;False;t3_kujurp;False;True;t1_gitc88w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitg4pm/;1610368250;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bogzy;;;[];;;;text;t2_csiqt;False;False;[];;You mean after the 16th episode? So it wont cover everything? Why do they call it final season then? Or is a second cour planned after the 16 episodes? (im anime only);False;False;;;;1610324228;;False;{};gitg5cf;False;t3_kujurp;False;False;t1_gissu7u;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitg5cf/;1610368259;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RainbowShifter;;MAL;[];;https://myanimelist.net/profile/RainShift;dark;text;t2_yuvf5;False;False;[];;My heart-rate was so high during this that my Fitbit thought I was doing exercise.;False;False;;;;1610324236;;False;{};gitg603;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitg603/;1610368270;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Cryptanark;;;[];;;;text;t2_ira0d;False;False;[];;"There were absolutely war crimes committed here, and you say so yourself. This code you are citing has nothing to do with Eren's actions; it merely condemns Willy's actions. And just because Willy commits a war crime does not mean Eren cannot also commit war crimes. - -That being said, the actions taken by Willy are arguably *not* war crimes. - -The spirit of this code seems to imply that you are not permitted to move civilians to protect military operations. However, in this case, Willy did not move any civilians (they are all living where they usually are; the military personnel are effectively just visiting). Secondly, the military forces within Liberio are watching a theater show instead of manning bases and setting up supply lines; they are clearly not conducting military operations at the time of Eren's attack. It seems to be a bad faith reading to suggest that the US may have its ICBMs trained on Russian soil and immediately fire at the Kremlin if Putin declares war. - -The situation gets more complicated when you take into account the fact that Eren seemingly planned this attack before Willy declared war. Additionally, Willy's declaration of war is very unorthodox; it's up to debate if him merely announcing a declaration of war to fellow politicians is tantamount to actually entering war. - -So we've dealt with Willy, now. On the other hand, if you take a look at the same UN codes, within only the first few seconds of this engagement, Eren has already committed several war crimes, if not outright terrorist acts: - -> *""2. For the purpose of this Statute, ‘war crimes’ means:* - -> *""b.i. Intentionally directing attacks against the civilian population as such or against individual civilians not taking direct part in hostilities;* - -> *""b.ii. Intentionally directing attacks against civilian objects, that is, objects which are not military objectives;* - -> *""b.iv. Intentionally launching an attack in the knowledge that such attack will cause incidental loss of life or injury to civilians or damage to civilian objects or widespread, long-term and severe damage to the natural environment which would be clearly excessive in relation to the concrete and direct overall military advantage anticipated;* - -> *""b.v. Attacking or bombarding, by whatever means, towns, villages, dwellings or buildings which are undefended and which are not military objectives;* - -> *""b.vi. Killing or wounding a combatant who, having laid down his arms or having no longer means of defence, has surrendered at discretion;* - -> *""b.vii. Making improper use of a flag of truce, of the flag or of the military insignia and uniform of the enemy or of the United Nations, as well as of the distinctive emblems of the Geneva Conventions, resulting in death or serious personal injury;* - -This is just a few; the list goes on. - -Whether or not Eren has sympathetic ""good cause"" is a different question, but you can't ignore the fact that he is in clear violation of the UN's rulings on war crimes.";False;False;;;;1610324246;;1610324531.0;{};gitg6pb;False;t3_kujurp;False;True;t1_gisdmla;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitg6pb/;1610368282;2;True;False;anime;t5_2qh22;;0;[]; -[];;;InfinityPlayer;;;[];;;;text;t2_hmal9;False;False;[];;Damn Eren's Titan looks so different compared to before plus he has that eye glow thing now? Wondering if he got any new powers in the time skip;False;False;;;;1610324251;;False;{};gitg71w;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitg71w/;1610368288;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Verbaliskaiser91;;;[];;;;text;t2_qe6dbsn;False;False;[];;If only he read the manga then he would have known better;False;False;;;;1610324270;;False;{};gitg8gz;False;t3_kujurp;False;False;t1_gisbd0q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitg8gz/;1610368312;8;True;False;anime;t5_2qh22;;0;[]; -[];;;CosmicPenguin_OV103;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cosmic_Penguin;light;text;t2_1ufwqhs7;False;True;[];;"Well, I guess what I wanted to say is very likely to have been already said by others, but I must say that something like this - The Occupied vs The Exiled - starting a war in such a fashion in this real world of the 21st Century globally is probably more likely than you think. I can think of at least one or two places where such a scenario can happen *right now* in a broad sense. - -Isayama definitely did his history homework here. Excellent scene, and I, as an anime-only watcher, looks forward for even more cutting-edge developments in future episodes.";False;False;;;;1610324272;;False;{};gitg8nu;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitg8nu/;1610368315;7;True;False;anime;t5_2qh22;;0;[]; -[];;;SirWeebBro;;;[];;;;text;t2_5b7zt1fd;False;False;[];;Saving!;False;False;;;;1610324273;;False;{};gitg8pp;False;t3_kujurp;False;False;t1_git2gcl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitg8pp/;1610368316;11;True;False;anime;t5_2qh22;;0;[]; -[];;;SoMuchHatred;;;[];;;;text;t2_o15bh;False;False;[];;The Rumbling is the use of the Colossal Titans within the walls of Paradis to reduce the rest of the world to nothing, which can be activated by the Founding Titan's Coordinate.;False;False;;;;1610324278;;False;{};gitg92n;False;t3_kujurp;False;False;t1_gitg2qq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitg92n/;1610368322;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;Season finale. I assume the series finale will be able to do it too as long as Isayama doesn't screw the ending.;False;False;;;;1610324282;;False;{};gitg9b7;False;t3_kujurp;False;False;t1_gitg4pm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitg9b7/;1610368327;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610324286;;False;{};gitg9ns;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitg9ns/;1610368333;4;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;Also Eren has the memories of the titans before him now so he's got a deeper insight into what exactly the Eldians were living like.;False;False;;;;1610324291;;False;{};gitga09;False;t3_kujurp;False;False;t1_gisrcy6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitga09/;1610368339;18;True;False;anime;t5_2qh22;;0;[]; -[];;;SirWeebBro;;;[];;;;text;t2_5b7zt1fd;False;False;[];;thus the debate begins;False;False;;;;1610324340;;False;{};gitgdot;False;t3_kujurp;False;True;t1_gisgcxz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgdot/;1610368400;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ClickingHCT;;;[];;;;text;t2_l5nip;False;False;[];;Basically the walls on paradis are filled with tens of millions of colossal titans, and at any time they could possible be unleashed, flattening the entire world and all life with it;False;False;;;;1610324353;;False;{};gitgel2;False;t3_kujurp;False;False;t1_gitg2qq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgel2/;1610368416;8;True;False;anime;t5_2qh22;;0;[]; -[];;;AnyDamage1;;;[];;;;text;t2_5g1b2t9x;False;False;[];;so reiner and falco are dead?;False;False;;;;1610324368;;False;{};gitgfp4;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgfp4/;1610368435;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Eye_Yam_Stew_Peed123;;;[];;;;text;t2_67f0zm7z;False;False;[];;oooh i see;False;False;;;;1610324373;;False;{};gitgg1a;False;t3_kujurp;False;False;t1_gitg92n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgg1a/;1610368440;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TrussedCrown;;;[];;;;text;t2_1tg9iesl;False;False;[];;"The episode was fantastic. The tension was built up slowly the entire episodes and exploded at the end literally. Some takeaways I had was the phenomenal VA work from Reiner and Eren. - -The one criticism I have is the soundtrack during the Eren transformation. They could have done better to establish an even better tense atmosphere with a change in the soundtrack rather than the recycled one we got.";False;False;;;;1610324376;;False;{};gitgg9x;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgg9x/;1610368445;5;True;False;anime;t5_2qh22;;0;[]; -[];;;smatthew_;;;[];;;;text;t2_13jgn9;False;False;[];;Aye aye, Captain!;False;False;;;;1610324400;;False;{};gitgi0l;False;t3_kujurp;False;True;t1_giteehn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgi0l/;1610368475;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SirWeebBro;;;[];;;;text;t2_5b7zt1fd;False;False;[];;He even prepared the chairs and timed it with Tybur's declaration lmao Eren is such a drama queen;False;False;;;;1610324424;;False;{};gitgjs3;False;t3_kujurp;False;False;t1_gisrm9j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgjs3/;1610368504;38;True;False;anime;t5_2qh22;;0;[]; -[];;;homeless_without-_-m;;;[];;;;text;t2_9niapxh9;False;False;[];;"Imagine the guy who motivated and inspired you and you trusted him the most suddenly becomes the bad guy... - - -Yeah";False;False;;;;1610324426;;False;{};gitgjv7;False;t3_kujurp;False;False;t1_giscnq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgjv7/;1610368505;8;True;False;anime;t5_2qh22;;0;[]; -[];;;LineOfInquiry;;;[];;;;text;t2_4epweo0g;False;False;[];;Wow this show has matured so much from season 1 it’s insane. I could’ve never imagined that show having the sort of tension this episode had, even though it was just a few characters talking. I will say though it’s sad how Eren has changed so much, yet stayed the same. He had an opportunity to explain himself, to send an envoy to the world, to talk with Willy. And the Tybur family could’ve revealed the truth at any time in the last 100 years and ended this cycle of violence, yet neither did and this is the sad result. I am very much looking forward to the future, especially since Eren seems very much to be the villain this time, but I just hope his actions aren’t portrayed positively.;False;False;;;;1610324427;;False;{};gitgjyo;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgjyo/;1610368507;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610324435;;False;{};gitgkkh;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgkkh/;1610368518;1;True;False;anime;t5_2qh22;;0;[]; -[];;;imadethistoshitpostt;;;[];;;;text;t2_z6c22;False;False;[];;Haha we sure are.;False;False;;;;1610324444;;False;{};gitgl86;False;t3_kujurp;False;False;t1_gisoiir;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgl86/;1610368530;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Jahva__;;;[];;;;text;t2_4f0g464s;False;False;[];;I’m actually starting to hate that sub. It’s just constant complaining;False;False;;;;1610324451;;False;{};gitglqt;False;t3_kujurp;False;False;t1_gitfuqr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitglqt/;1610368538;13;True;False;anime;t5_2qh22;;0;[]; -[];;;TrussedCrown;;;[];;;;text;t2_1tg9iesl;False;False;[];;Yet to be revealed;False;False;;;;1610324463;;False;{};gitgmis;False;t3_kujurp;False;False;t1_gitgfp4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgmis/;1610368551;6;True;False;anime;t5_2qh22;;0;[]; -[];;;galileotheweirdo;;MAL;[];;myanimelist.net/animelist/galileotheweirdo;dark;text;t2_gwyf6;False;False;[];;"As an anime only, I sadly predict that Udo and Zofia are not gonna make it out of this ordeal, considering the lack of focus on their characters. :( - -Oh yeah, and Reiner’s mom, too, probably. Because parallels.";False;False;;;;1610324464;;False;{};gitgmlc;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgmlc/;1610368552;4;True;False;anime;t5_2qh22;;0;[]; -[];;;honeywings;;;[];;;;text;t2_tlvqg;False;False;[];;Honestly, they’re up against not just Marley but every nation Marley has conquered. They are severely outnumbered, even taking into account the Titans they have as weapons. Playing safe and by traditional rules of war went out the window when Reiner, Annie and Bertholdt committed a terrorist attack nearly a decade prior. They arnt in a position tactically or politically to play by the “rules” of warfare and they are certainly not the ones who started it off the way. This also isn’t a war of subjugation - its elimination. They want Paradis completely wiped out and killed. If they surrender they die - they do not still have the luxury of existence if they lose the war Marley declared. From all of that I really don’t blame Eren or think less of him. It’s clear he personally does not want to kill people because of resentment or animosity - but as a means of survival. And they would not have been pushed to retaliate if Marley had just left them alone. But I understand those who think differently - I see a lot of parallels to Palestine and Israel.;False;False;;;;1610324482;;False;{};gitgnwu;False;t3_kujurp;False;False;t1_git0ftf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgnwu/;1610368574;7;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;another callback is the “Because i was born into this world” line that willy said this episode - which eren said in his hallucination when armin was waking him up in the battle of Trost/s3 ep11 when eren’s mother said to keith why her baby son was already special;False;False;;;;1610324486;;False;{};gitgo7f;False;t3_kujurp;False;False;t1_gisj0wk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgo7f/;1610368580;6;True;False;anime;t5_2qh22;;0;[]; -[];;;1fastman1;;;[];;;;text;t2_c2lid;False;False;[];;eren is what sasuke wanted to be at the end of the 4th ninja war;False;False;;;;1610324489;;False;{};gitgofe;False;t3_kujurp;False;False;t1_gisw1ro;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgofe/;1610368584;39;True;False;anime;t5_2qh22;;0;[]; -[];;;Verbaliskaiser91;;;[];;;;text;t2_qe6dbsn;False;False;[];;Eren sends Falco a message: don’t come to Liberio tomorrow;False;False;;;;1610324489;;False;{};gitgoi5;False;t3_kujurp;False;False;t1_gisdr7g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgoi5/;1610368585;12;True;False;anime;t5_2qh22;;0;[]; -[];;;slowdrem20;;;[];;;;text;t2_c7n2y;False;False;[];;"No but based on what we've seen a majority of them support what the Marleyans are doing to the ""devils."" You can't be an enabler of a genocidal regime and then claim innocence when you get what's coming to you. Cheering on their ""war hero"" that commits war crimes against other nations. It's safe to say Marleyans and the Eldians in Marley don't give a fuck about anyone else.";False;False;;;;1610324498;;False;{};gitgp3y;False;t3_kujurp;False;True;t1_gitctl4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgp3y/;1610368596;1;True;False;anime;t5_2qh22;;0;[]; -[];;;i_am-a-failure;;;[];;;;text;t2_86bg4kgh;False;False;[];;who's dina again ? i forgot;False;False;;;;1610324519;;False;{};gitgqq4;False;t3_kujurp;False;False;t1_gisxqrd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgqq4/;1610368623;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Korentikular;;;[];;;;text;t2_5tuwm9as;False;False;[];;bro he was literally camping, willy better respawn or else reporting for unsportsmanship. Eren literally waited for his cooldown and grace period to end and he was free totally unfair my guy definitely 30 day ban worthy;False;False;;;;1610324526;;False;{};gitgrca;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgrca/;1610368633;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Aizenchair-sama;;;[];;;;text;t2_1l97otho;False;False;[];;Because Eren now has the founding Titan and has shown the potential to use its power unbeknownst that it’s because he came into contact with a Titan with royal blood (Dina).;False;False;;;;1610324536;;False;{};gitgs18;False;t3_kujurp;False;False;t1_gitft1e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgs18/;1610368646;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Commander70;;;[];;;;text;t2_nzg28;False;False;[];;We were just kids...we didn't know any better;False;False;;;;1610324539;;False;{};gitgs9h;False;t3_kujurp;False;True;t1_gise9k9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgs9h/;1610368649;3;True;False;anime;t5_2qh22;;0;[]; -[];;;homeless_without-_-m;;;[];;;;text;t2_9niapxh9;False;False;[];;The animation and delivery for the last scene could've been better in my opinion;False;True;;comment score below threshold;;1610324544;;False;{};gitgsn4;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgsn4/;1610368656;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;LordUncleBob;;;[];;;;text;t2_ckedm;False;False;[];;"I sure as hell feel sorry for him. As far as he knew he was attacking an army of devils lying in wait with millions of giant monsters planning to destroy the world. He didn't find out they were, you know, normal people, until much later. - -And I feel even more sorry for Eren, who is fully aware of what he's doing but doesn't have another choice because these people are so far beyond negotiating with.";False;False;;;;1610324551;;False;{};gitgt5s;False;t3_kujurp;False;False;t1_gislx79;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgt5s/;1610368668;12;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;"Reminds of when Historia lashed out saying she didn't want to become the Founding Titan and remarked how she's started to hate humanity and wants to let them get wiped out by the Titans! She's humanity's biggest enemy! - -Guess it really got to Eren and he's taken up that role now!";False;False;;;;1610324558;;False;{};gitgtnp;False;t3_kujurp;False;False;t1_gisw1ro;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgtnp/;1610368676;53;True;False;anime;t5_2qh22;;0;[]; -[];;;TrussedCrown;;;[];;;;text;t2_1tg9iesl;False;False;[];;Cough cough Taiwan?;False;False;;;;1610324564;;False;{};gitgu3t;False;t3_kujurp;False;True;t1_gitg8nu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgu3t/;1610368684;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jahva__;;;[];;;;text;t2_4f0g464s;False;False;[];;None of the anime watchers are disappointed. It’s just a bunch of manga readers who created the scene in their heads already, and are mad their fan adaption wasn’t made official.;False;False;;;;1610324577;;False;{};gitgv3y;False;t3_kujurp;False;False;t1_gitcdjd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgv3y/;1610368701;7;True;False;anime;t5_2qh22;;0;[]; -[];;;uncen5ored;;;[];;;;text;t2_800mwmv;False;False;[];;"Fantastic sub for memes and manga. But i go to r/shingekinokyojin more for discussion (anime & more serious manga discussions). Still some occasional negative energy there but it’s not as rampant as Titan folk can get";False;False;;;;1610324581;;False;{};gitgvdt;False;t3_kujurp;False;False;t1_gitfuqr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgvdt/;1610368707;13;True;False;anime;t5_2qh22;;0;[]; -[];;;AsianSquirrel;;;[];;;;text;t2_3vynsrfo;False;False;[];;"> Eren is an adult, which is why he's come to the conclusion that this course of action is the only one he can take to protect Paradis and the people he cares about. - -His conclusion does not have to be correct. - -> Reiner came to the same conclusion when he attacked Paradis, though he was doing so with incorrect information. - -He was 12, a brainwashed child soldier. 'Incorrect information' is a gross euphemism to describe the gap between his knowledge then and Eren's now. He was following orders; he didn't come to any philosophical conclusion. - -> Eren has never done anything ""unjustifiable"", both him and Reiner acted in the best way they could in order to save the world. - -Just this episode, Eren intentionally kills civilians and attempts to kill Falco to make a point. That is wholly unnecessary and unjustifiable. Framing wanting to destroy the world as saving the world is just about gaslighting as you can get. War is complicated and innocents will die, but you don't commit mass genocide and intentionally on civilians for any reason. Intentionally killing civilian kids is always, always unjustifiable. - -My entire point in the beginning is that not everything is paralleled. Eren is not a child soldier. Eren has knowledge of all the workings of the world. Eren knows that people on the other side is just like people within the walls. Eren knows about the cruelties of war. Isayama is absolutely drawing a contrast against Eren's current state and Reiner's PTSD. Reiner regrets his actions and is emotionally punished for it. Eren willfully commits war crimes. [Later on...](/s ""Eren admits to being worse than Reiner."") - -Wars in real life don't end with the winning side eliminating everyone within the losing nations.";False;False;;;;1610324600;;False;{};gitgwsi;False;t3_kujurp;False;True;t1_gitchk1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgwsi/;1610368731;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;the22sinatra;;;[];;;;text;t2_1plc2ja9;False;False;[];;And one more time for the culture;False;False;;;;1610324615;;False;{};gitgxzm;False;t3_kujurp;False;True;t1_gitd0wf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgxzm/;1610368753;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sujallamichhaneakasl;;;[];;;;text;t2_3i2s1kbj;False;False;[];;"Really don't get why they decided to call it ""The final season"" either....maybe just to get people interested...idk. And yes this season will not cover everything. If we go by the current pacing ep 16 will cover 121 and 122 while the manga is supposed to end at Ch 139 which is three chapters from now in April 9th.";False;False;;;;1610324622;;False;{};gitgyi4;False;t3_kujurp;False;True;t1_gitg5cf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitgyi4/;1610368762;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Andy_023;;;[];;;;text;t2_cspp4;False;False;[];;Attack on Titan bringing people together.. love to see it.;False;False;;;;1610324649;;False;{};gith0d3;False;t3_kujurp;False;False;t1_gitdky2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gith0d3/;1610368794;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610324652;;False;{};gith0k9;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gith0k9/;1610368797;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dankest_niBBa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_314yh1er;False;False;[];;I waited years to see it animated, cant believe it finally happened!;False;False;;;;1610324654;;False;{};gith0s3;False;t3_kujurp;False;True;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gith0s3/;1610368800;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kureimi;;;[];;;;text;t2_13l673;False;False;[];;Falco is got played lol;False;False;;;;1610324665;;False;{};gith1ke;False;t3_kujurp;False;True;t1_gisbgr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gith1ke/;1610368815;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Verbaliskaiser91;;;[];;;;text;t2_qe6dbsn;False;False;[];;Eren: “I said I wouldn’t kill you, but your families...”;False;False;;;;1610324671;;False;{};gith204;False;t3_kujurp;False;True;t1_giscjc4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gith204/;1610368823;3;True;False;anime;t5_2qh22;;0;[]; -[];;;tanpro260196;;;[];;;;text;t2_tmy18;False;False;[];;No. They're still Eldian. All Eldian noble bloodlines is immune to the founding titan ability, including those 2 clans.;False;True;;comment score below threshold;;1610324672;;False;{};gith241;False;t3_kujurp;False;True;t1_gitdmal;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gith241/;1610368824;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;Prosperero;;;[];;;;text;t2_2tkyb2df;False;False;[];;The only thing that’s confusing me rn is what was the point of sending RBAM to destroy the walls if they were fully aware that the King wouldn’t, or better, couldn’t begin the rumbling. Seems like things would’ve stayed peaceful if they hadn’t done anything at all;False;False;;;;1610324683;;False;{};gith2wr;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gith2wr/;1610368838;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jahva__;;;[];;;;text;t2_4f0g464s;False;False;[];;DELETE THE COMMENT;False;False;;;;1610324689;;False;{};gith3cp;False;t3_kujurp;False;True;t1_gitcvci;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gith3cp/;1610368845;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Radix3D;;;[];;;;text;t2_4pafckex;False;False;[];;"This does not address my hypothetical, though. If you have people who live in a nation that heavily disseminates propaganda, like North Korea, and they are telling its people that some nation wants to exterminate all of them, what are the chances that the people of that nation is going to support their nation going to war? - -Your logic is self-fulfilling. Nation A believes Nation B wants to wipe them out, so the civilians of Nation A supports going to war with Nation B. And since Nation B knows that Nation A is going to war with them, and the civilians support it, then it is justifiable to kill the civilians of Nation A. - -So to apply this to the real world, if North Korea told its people that they were going to war with China because China is planning to launch a massive attack on NK, and the people of NK support this war because of all the propaganda NK spread to its people, then by your logic, there would be no problem if China then decided to bomb NK cities that are filled with non-combatants.";False;False;;;;1610324689;;False;{};gith3cr;False;t3_kujurp;False;True;t1_gitc6kw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gith3cr/;1610368845;2;True;False;anime;t5_2qh22;;0;[]; -[];;;uncen5ored;;;[];;;;text;t2_800mwmv;False;False;[];;I imagine season/cour, cause that chapter 119-122/123 run (where it’s expected this season will end) is absolutely insane;False;False;;;;1610324707;;False;{};gith4mm;False;t3_kujurp;False;True;t1_gitg4pm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gith4mm/;1610368867;1;True;False;anime;t5_2qh22;;0;[]; -[];;;stang90;;;[];;;;text;t2_8x3hc;False;False;[];;It just seems strange that he would give this whole speech where he empathizes with the people of the island, and then turn around to start a war that's purely preemptive. No consideration for diplomacy. And like the people are thrilled, they're crying with joy. The whole, history is a lie, king fritz is a hero thing seemed to not stick with the audience.;False;False;;;;1610324710;;False;{};gith4uv;False;t3_kujurp;False;True;t1_gitg2eu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gith4uv/;1610368871;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cockdealer662;;;[];;;;text;t2_9k47e0q4;False;False;[];;how is this genocide? he was just attacking a grouped up army, that declared war on him;False;False;;;;1610324716;;False;{};gith5c0;False;t3_kujurp;False;False;t1_gisu3rd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gith5c0/;1610368878;7;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;No no you've got to start from the very beginning. Once upon a time there was a young girl named Ymir...;False;False;;;;1610324725;;False;{};gith5z5;False;t3_kujurp;False;False;t1_giscz88;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gith5z5/;1610368889;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Dewgong444;;;[];;;;text;t2_83rrd;False;False;[];;"Let's say, for sake of argument that millions of colossal titans invaded people's lands. What's to stop those people from just selling their houses and moving? - -Just one small problem there Eren. Sell their houses to who?! Fucking Armin?!";False;False;;;;1610324734;;False;{};gith6n2;False;t3_kujurp;False;False;t1_gishbh6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gith6n2/;1610368902;16;True;False;anime;t5_2qh22;;0;[]; -[];;;tanpro260196;;;[];;;;text;t2_tmy18;False;False;[];;"No. All Eldian noble bloodlines is immune to the founding titan ability, including those 2 clans. The reason they were persecuted is because they were against the king's decision of ""peace"".";False;False;;;;1610324749;;False;{};gith7r0;False;t3_kujurp;False;True;t1_gitbjj5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gith7r0/;1610368919;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BosuW;;;[];;;;text;t2_5kgkx8g3;False;False;[];;I have witnessed something special;False;False;;;;1610324763;;False;{};gith8pt;False;t3_kujurp;False;False;t1_git9zjo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gith8pt/;1610368937;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Verbaliskaiser91;;;[];;;;text;t2_qe6dbsn;False;False;[];;He did wait for the declaration.;False;False;;;;1610324779;;False;{};gith9vm;False;t3_kujurp;False;True;t1_gisboc1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gith9vm/;1610368959;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Golden_Phi;;MAL;[];;http://myanimelist.net/animelist/GoldenPhi;dark;text;t2_imrcw;False;False;[];;I don't use twitter, how do you find what's trending?;False;False;;;;1610324800;;False;{};githbd5;False;t3_kujurp;False;True;t1_gisaeyc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githbd5/;1610368983;1;True;False;anime;t5_2qh22;;0;[]; -[];;;stang90;;;[];;;;text;t2_8x3hc;False;False;[];;But Willy claims to hate war. Why not try a more diplomatic approach. It could super work.;False;False;;;;1610324801;;False;{};githbel;False;t3_kujurp;False;True;t1_gitg2eu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githbel/;1610368983;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610324808;;False;{};githbxu;False;t3_kujurp;False;True;t1_gisiqhp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githbxu/;1610368992;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Verbaliskaiser91;;;[];;;;text;t2_qe6dbsn;False;False;[];;Eren used the ancient technique of *lying*;False;False;;;;1610324812;;False;{};githc6s;False;t3_kujurp;False;False;t1_gisk3tf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githc6s/;1610368996;16;True;False;anime;t5_2qh22;;0;[]; -[];;;AHatedChild;;;[];;;;text;t2_10i19i;False;False;[];;This has been true for me for every episode this season. I've read the manga but the anime is a completely different experience with all the different elements that come into the production of an episode.;False;False;;;;1610324822;;False;{};githcz4;False;t3_kujurp;False;False;t1_gisamk0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githcz4/;1610369011;5;True;False;anime;t5_2qh22;;0;[]; -[];;;udatteudatteudatteku;;;[];;;;text;t2_80kbjdda;False;False;[];;Had heart palpitations from the stress of this episode, literally cannot wait for the next episode.;False;False;;;;1610324826;;False;{};githd7f;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githd7f/;1610369014;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Corbeck77;;;[];;;;text;t2_7qjbt36;False;False;[];;They never knew only the tyburs knew the pacifism pact.;False;False;;;;1610324838;;False;{};githe2p;False;t3_kujurp;False;False;t1_gith2wr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githe2p/;1610369028;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sharmarahulkohli;;;[];;;;text;t2_12gbee;False;False;[];;Who knows when someone might take the founder from The King,and activate the Rumbling;False;False;;;;1610324867;;False;{};githg46;False;t3_kujurp;False;True;t1_gith2wr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githg46/;1610369062;1;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;eren’s stepmom, grisha’s first wife with royal blood, zeke’s mother, the smiling titan;False;False;;;;1610324876;;False;{};githgsq;False;t3_kujurp;False;False;t1_gitgqq4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githgsq/;1610369075;68;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;He said that last episode to Falco too.;False;False;;;;1610324890;;False;{};githhts;False;t3_kujurp;False;False;t1_gistvy3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githhts/;1610369093;12;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;this episode wouldn't have hit as hard if it wasn't being built up for 4 eps;False;False;;;;1610324893;;False;{};githi1a;False;t3_kujurp;False;False;t1_gitdtt5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githi1a/;1610369096;7;True;False;anime;t5_2qh22;;0;[]; -[];;;kurruchi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/kurruchi/animelist;light;text;t2_11d1ig;False;False;[];;The reason is explored later on. Just keep that question in mind.;False;False;;;;1610324895;;False;{};githi6k;False;t3_kujurp;False;False;t1_gith2wr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githi6k/;1610369098;6;True;False;anime;t5_2qh22;;0;[]; -[];;;methofthewild;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/fedelini;light;text;t2_177yx2;False;False;[];;That line resonates with me so hard. It's my favourite quote of the series.;False;False;;;;1610324900;;False;{};githiir;False;t3_kujurp;False;True;t1_gisioq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githiir/;1610369104;2;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;"Eren is dominating - -Eren is godlike";False;False;;;;1610324918;;False;{};githjth;False;t3_kujurp;False;True;t1_gisch0n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githjth/;1610369126;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CosmicPenguin_OV103;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cosmic_Penguin;light;text;t2_1ufwqhs7;False;True;[];;It's not an exact match, but yeah that part of Earth and within several hundred km of there is indeed one of the places I can see such a thing playing out.;False;False;;;;1610324919;;False;{};githjwi;False;t3_kujurp;False;True;t1_gitgu3t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githjwi/;1610369128;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AnyDamage1;;;[];;;;text;t2_5g1b2t9x;False;False;[];;thanks;False;False;;;;1610324919;;False;{};githjwy;False;t3_kujurp;False;True;t1_gitgmis;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githjwy/;1610369128;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jtktomb;;;[];;;;text;t2_z6v3s;False;False;[];;IT CANNOT BE STOPPED ANYMORE;False;False;;;;1610324935;;False;{};githl1r;False;t3_kujurp;False;False;t1_gitevgp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githl1r/;1610369147;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BoltOfBlazingGold;;;[];;;;text;t2_11qb6gnq;False;False;[];;Do we really know they are uneffective? I would be scared even if they were pretty effective. Moreso, does **he** (Eren) know that? and would he be willing to test that on a battle with a lot at stakes?;False;False;;;;1610324967;;False;{};githncy;False;t3_kujurp;False;False;t1_gitcp4g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githncy/;1610369186;5;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;Reiner's all like I'm depressed, just eat me and get it over with while Eren's like sorry brb g2g, got a war to wage!;False;False;;;;1610324974;;False;{};githntg;False;t3_kujurp;False;False;t1_gismito;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githntg/;1610369194;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Verbaliskaiser91;;;[];;;;text;t2_qe6dbsn;False;False;[];;All according to the keikaku;False;False;;;;1610325012;;False;{};githqmv;False;t3_kujurp;False;False;t1_gish4fn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githqmv/;1610369243;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Kureimi;;;[];;;;text;t2_13l673;False;False;[];;Yeah that was what a lot of people were thinking too;False;False;;;;1610325023;;False;{};githrfs;False;t3_kujurp;False;True;t1_gisj33c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githrfs/;1610369268;2;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Shows the Silver Award... and that's it."", 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'icon_width': 512, 'id': 'gid_1', 'is_enabled': True, 'is_new': False, 'name': 'Silver', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;theres a 50% chance i would argue against you if you were allowed to say whatever you wanted to say;False;False;;;;1610325023;;False;{'gid_1': 1};githrhh;False;t3_kujurp;False;False;t1_gisyyo2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githrhh/;1610369268;8;True;False;anime;t5_2qh22;;1;[]; -[];;;GoldenDude;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GoldenBoy808;light;text;t2_ay8d1;False;False;[];;Omg Eren just killed all those people;False;False;;;;1610325026;;False;{};githrp4;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githrp4/;1610369272;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Radix3D;;;[];;;;text;t2_4pafckex;False;False;[];;"It's important to look at things from the perspective of the people of Marley. - -Eren is the son of Grisha Yeager, who was one of the highest ranking members of the Eldian Restorationists, who are considered a terrorist group that want to restore the old, tyrannical, Eldian Empire. Grisha somehow made his way into the walls and he or his son stole away the Founding Titan from the royal family, who had held on to the power for over 100 years in order to keep peace. - -From their perspective, it seems like Eren opposed the king's wish for peace, and stole away the power in order to bring back the Eldian Empire.";False;False;;;;1610325042;;1610327567.0;{};githsvs;False;t3_kujurp;False;False;t1_gith4uv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githsvs/;1610369291;6;True;False;anime;t5_2qh22;;0;[]; -[];;;KaitoHope;;;[];;;;text;t2_16ztlf;False;False;[];;In the real world we have many countries with enough atomic bombs to kill all of humanity, but that does not mean that we have to eradicate them. Besides, if there is peace between Marley and Paradis, the Paradisan people can just pass down the Founding Titan to someone qualified and trustworthy. Additionally, if the technological advancements as stated earlier in the season can be believed, Titans will become obsolete, anyway. I don't think a Titan could survive an atomic or a hydrogen bomb, so there's nothing to worry about if you play the long game instead of trying to wage a quick war.;False;False;;;;1610325053;;False;{};githtph;False;t3_kujurp;False;True;t1_gitd2vt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githtph/;1610369305;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jawbreakingcandy;;;[];;;;text;t2_1jxsqvkq;False;False;[];;"Gabi at the end of 63: I have a feeling somethings gonna change ! - - -Me ,a manga reader: Spoke too soon eh?";False;False;;;;1610325058;;False;{};githu2t;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githu2t/;1610369311;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Credar;;;[];;;;text;t2_e1djq;False;False;[];;"Marley wanted control of the founding titan as well as Paradis for its resources in further imperialism. They mentioned in episode 3 around the campfire ""Hey are we sure we shouldn't be worried about the Founding Titan activating stuff?"" ""Trust Marley's research."" That was basically the Tyburs hinting to the military ""You don't need to worry about a possible Rumbling impacting a mission.""";False;False;;;;1610325059;;False;{};githu5g;False;t3_kujurp;False;False;t1_gith2wr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githu5g/;1610369312;9;True;False;anime;t5_2qh22;;0;[]; -[];;;PM_ME_UR_SOCKS_GIRL;;;[];;;;text;t2_phrxn;False;False;[];;Thanks!;False;False;;;;1610325060;;False;{};githu6h;False;t3_kujurp;False;True;t1_gism93w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githu6h/;1610369313;1;True;False;anime;t5_2qh22;;0;[]; -[];;;methofthewild;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/fedelini;light;text;t2_177yx2;False;False;[];;His name is falco. Colt is his older brother.;False;False;;;;1610325065;;False;{};githuk4;False;t3_kujurp;False;False;t1_gitbryf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githuk4/;1610369320;29;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;*9 years ago;False;False;;;;1610325068;;False;{};githus5;False;t3_kujurp;False;True;t1_gisv30o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githus5/;1610369323;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kureimi;;;[];;;;text;t2_13l673;False;False;[];;Let’s do aot justice please Mappa;False;False;;;;1610325077;;False;{};githvdh;False;t3_kujurp;False;True;t1_gisag7i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githvdh/;1610369333;3;True;False;anime;t5_2qh22;;0;[]; -[];;;0greman;;;[];;;;text;t2_12k0knel;False;False;[];;Thats just because the wall titans look like the colossal titan. you have already seen what the wall titan's look like when the wall broke a bit in the earlier seasons.;False;False;;;;1610325080;;False;{};githvl1;False;t3_kujurp;False;True;t1_git7m6z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githvl1/;1610369337;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Prosperero;;;[];;;;text;t2_2tkyb2df;False;False;[];;Oh that’s great! Thank you;False;False;;;;1610325084;;False;{};githvw3;False;t3_kujurp;False;True;t1_githi6k;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githvw3/;1610369343;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JosseCoupe;;;[];;;;text;t2_16id6o;False;False;[];;I hoped the anime might have Eren gesture towards Falco in some way before he transformed to give Reiner a cue or something, oh well, guess he really doesn't care.;False;False;;;;1610325086;;False;{};githw0s;False;t3_kujurp;False;False;t1_gismgrx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githw0s/;1610369345;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Kureimi;;;[];;;;text;t2_13l673;False;False;[];;This is dope;False;False;;;;1610325095;;False;{};githwnm;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githwnm/;1610369355;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TrussedCrown;;;[];;;;text;t2_1tg9iesl;False;False;[];;Yeah I only mentioned it since it’s comparative in size difference like marly and Paradis. And how both Paradis and Taiwan were “sort of” exiled. And they all got beef with each other lol;False;False;;;;1610325102;;False;{};githx6h;False;t3_kujurp;False;False;t1_githjwi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githx6h/;1610369364;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Marik-X-Bakura;;;[];;;;text;t2_4acyt2bo;False;False;[];;He’s said that loads of times this season;False;False;;;;1610325105;;False;{};githxfz;False;t3_kujurp;False;True;t1_gislw40;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githxfz/;1610369369;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iDannyEL;;;[];;;;text;t2_en6ak;False;False;[];;You love to see it;False;False;;;;1610325110;;False;{};githxsw;False;t3_kujurp;False;True;t1_gisddtv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githxsw/;1610369377;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kureimi;;;[];;;;text;t2_13l673;False;False;[];;Lmao;False;False;;;;1610325111;;False;{};githxvq;False;t3_kujurp;False;True;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githxvq/;1610369378;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610325114;;False;{};githy1t;False;t3_kujurp;False;True;t1_gith2wr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githy1t/;1610369381;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kureimi;;;[];;;;text;t2_13l673;False;False;[];;Best gamer worldwide;False;False;;;;1610325131;;False;{};githzau;False;t3_kujurp;False;True;t1_gisax64;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githzau/;1610369403;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Verbaliskaiser91;;;[];;;;text;t2_qe6dbsn;False;False;[];;Eren: I have a basement reveal like my father before me;False;False;;;;1610325133;;False;{};githzfw;False;t3_kujurp;False;True;t1_gisfq6x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/githzfw/;1610369405;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kureimi;;;[];;;;text;t2_13l673;False;False;[];;Get the fuck out of my way to the top;False;False;;;;1610325160;;False;{};giti1dz;False;t3_kujurp;False;False;t1_gisd3sc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giti1dz/;1610369438;5;True;False;anime;t5_2qh22;;0;[]; -[];;;pur3str232;;;[];;;;text;t2_8pz1y;False;False;[];;"> It still has some competition for now - -Do you have any examples? I'm kind of new to anime, and AOT has made everything else feel inferior.";False;False;;;;1610325182;;False;{};giti2y7;False;t3_kujurp;False;True;t1_git5827;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giti2y7/;1610369468;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"Did Eren just pre cut the same hand he gave reiner thereby making causing pain which made him to transform - -**Eren just made reiner a hand in his plan making him inflict pain for Eren to transform**";False;False;;;;1610325184;;False;{};giti337;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giti337/;1610369471;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;On_The_Fourth_Floor;;;[];;;;text;t2_68rmo;False;False;[];;He waited until the declaration of war, Marley obviously didn't care about doing it to Paradis, the stone is just now cast the other way. This is a calm rational Eren, doing what he must, because there can be no other way now.;False;False;;;;1610325187;;False;{};giti3an;False;t3_kujurp;False;True;t1_gisurtq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giti3an/;1610369475;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chryco4;;MAL;[];;http://myanimelist.net/profile/chryco4;dark;text;t2_dmz12;False;True;[];;"Last episode or so they were talking about ""cleaning house"" and Willy said he essentially gave full control of the military over to Magath. They were going for two birds with one stone.";False;False;;;;1610325187;;False;{};giti3br;False;t3_kujurp;False;False;t1_gitf70z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giti3br/;1610369476;15;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;falco is way too kind;False;False;;;;1610325187;;False;{};giti3cg;False;t3_kujurp;False;True;t1_gisbfys;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giti3cg/;1610369476;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RendDown;;;[];;;;text;t2_1sc82t6v;False;False;[];;don't you hate it when it turns out the stranger you we're talking to is actually a threat to the entire world and actually stolen god? cause i do.;False;False;;;;1610325192;;False;{};giti3n2;False;t3_kujurp;False;False;t1_gisfgx0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giti3n2/;1610369482;14;True;False;anime;t5_2qh22;;0;[]; -[];;;iDannyEL;;;[];;;;text;t2_en6ak;False;False;[];;"....""so anyway I started blasting.""";False;False;;;;1610325199;;False;{};giti47u;False;t3_kujurp;False;True;t1_gisctvp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giti47u/;1610369493;2;True;False;anime;t5_2qh22;;0;[]; -[];;;stang90;;;[];;;;text;t2_8x3hc;False;False;[];;So it's more a war on erren than the people of the island. Do you think if they recovered the founding titan, they would pardon the eldians?;False;False;;;;1610325205;;False;{};giti4nj;False;t3_kujurp;False;True;t1_githsvs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giti4nj/;1610369501;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SigmundFreud;;;[];;;;text;t2_3cp72;False;False;[];;"I love how this isn't even really new information. We already knew that: - -* There are titans within the walls - -* The walls are about as tall as the Colossal Titan - -* At least one of the wall titans has a face that resembles the Colossal Titan - -* The area of Wall Maria is comparable to that of an average real-world country (a bit larger than e.g. Afghanistan and France) - -* King Fritz threatened the world with ""millions"" of titans, but that didn't line up with how few pure titans there ultimately turned out to be (based on the number of times we encountered familiar faces from Grisha's memories and the amount of time it took them to clear out Wall Maria) - -All the facts were there in plain sight; everyone should have known that there was an ungodly number of colossal-type titans just sitting there within the walls, and that the Founding Titan could potentially control them. It just hadn't occurred to me that throwing away the walls and using the wall titans for combat was even on the table.";False;False;;;;1610325209;;False;{};giti4xc;False;t3_kujurp;False;False;t1_gisuhmp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giti4xc/;1610369506;112;True;False;anime;t5_2qh22;;0;[]; -[];;;Kureimi;;;[];;;;text;t2_13l673;False;False;[];;He is gonna be traumatized 😥;False;False;;;;1610325224;;False;{};giti61p;False;t3_kujurp;False;False;t1_giscnq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giti61p/;1610369528;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kidface;;;[];;;;text;t2_m949a;False;False;[];;Holy shit that was amazing.;False;False;;;;1610325226;;False;{};giti670;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giti670/;1610369530;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Marik-X-Bakura;;;[];;;;text;t2_4acyt2bo;False;False;[];;He’s said it multiple times;False;False;;;;1610325234;;False;{};giti6sm;False;t3_kujurp;False;False;t1_gisj0wk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giti6sm/;1610369540;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;Nah Eren can transform whenever he wants after he gets injured. The handshake was just a power move.;False;False;;;;1610325251;;False;{};giti7zg;False;t3_kujurp;False;False;t1_giti337;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giti7zg/;1610369560;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Kureimi;;;[];;;;text;t2_13l673;False;False;[];;WW3 incoming;False;False;;;;1610325253;;False;{};giti84k;False;t3_kujurp;False;True;t1_gisaeyc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giti84k/;1610369563;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pagonb;;;[];;;;text;t2_z7uj3;False;False;[];;I came to the same conclusion earlier, Titanfolk will be exclusively for memes going forward.;False;False;;;;1610325260;;False;{};giti8n1;False;t3_kujurp;False;False;t1_gitgvdt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giti8n1/;1610369572;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Elaego;;;[];;;;text;t2_55zd6hhb;False;False;[];;CHADREN;False;False;;;;1610325263;;False;{};giti8uo;False;t3_kujurp;False;False;t1_giss1ul;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giti8uo/;1610369576;1;True;False;anime;t5_2qh22;;0;[]; -[];;;justking1414;;;[];;;;text;t2_4ohxaz5j;False;False;[];;"Definitely reminded me of that line from S1 - -He’s basically uniting the world (and even the Eldians) against the threat of Eren. It obviously won’t work on all the people but it’ll soften the view people have of Eldians and once Eren is dead, they might even decide not to commit genocide on paradise island";False;False;;;;1610325271;;False;{};giti9g9;False;t3_kujurp;False;True;t1_gitec8x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giti9g9/;1610369587;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;How did the Marleans know Eren and all have landed on Eldia already?;False;False;;;;1610325288;;False;{};gitiapd;False;t3_kujurp;False;False;t1_gitf70z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitiapd/;1610369608;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Golden_Phi;;MAL;[];;http://myanimelist.net/animelist/GoldenPhi;dark;text;t2_imrcw;False;False;[];;"Imagine if people started watching this show from the start of this season. - - -Newb: So Eren is the villain of this show, right? He just used the civilians in the building as hostages and then murdered all those innocent people. I think the protagonist is Falco, and my second guess would be Reiner.";False;False;;;;1610325291;;False;{};gitiavj;False;t3_kujurp;False;False;t1_giskc2y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitiavj/;1610369611;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Kureimi;;;[];;;;text;t2_13l673;False;False;[];;Pain😥;False;False;;;;1610325298;;False;{};gitibeu;False;t3_kujurp;False;True;t1_giscr8m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitibeu/;1610369621;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Pagonb;;;[];;;;text;t2_z7uj3;False;False;[];;I actually watched the raws because I was so panicked that they’d ruined it. All for naught, the episode is amazing.;False;False;;;;1610325300;;False;{};gitibjr;False;t3_kujurp;False;False;t1_gitfuqr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitibjr/;1610369623;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ZeroExposure;;;[];;;;text;t2_q6bye;False;False;[];;Is it just me or did the Warhammer Titan transformation (in the preview) look wayyy different (animation-wise) from the transformation we saw in the trailer???;False;False;;;;1610325318;;False;{};giticsq;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/giticsq/;1610369644;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Kureimi;;;[];;;;text;t2_13l673;False;False;[];;😥;False;False;;;;1610325331;;False;{};gitidr0;False;t3_kujurp;False;True;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitidr0/;1610369660;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RoronoaAshok;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RoronoaAshok;light;text;t2_huthn;False;False;[];;Eren needs to go on Dr. K's stream;False;False;;;;1610325334;;False;{};gitidxy;False;t3_kujurp;False;True;t1_gisfg3d;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitidxy/;1610369663;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MyName_IsNobody;;;[];;;;text;t2_sejuc;False;False;[];;Now, Rai-nah... **say my name**;False;False;;;;1610325334;;False;{};gitidyc;False;t3_kujurp;False;False;t1_git3qih;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitidyc/;1610369663;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Tinywampa;;;[];;;;text;t2_xhcd5;False;False;[];;My brother and I are watching this season together, and we were both shaking the entire time from the tension. The build up to this was ridiculous. Can't wait till next week.;False;False;;;;1610325337;;False;{};gitie7r;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitie7r/;1610369668;6;True;False;anime;t5_2qh22;;0;[]; -[];;;CrimeFightingScience;;MAL;[];;death to cat people;dark;text;t2_o6e0e;False;False;[];;War and spies my man.;False;False;;;;1610325360;;False;{};gitifsx;False;t3_kujurp;False;False;t1_gitiapd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitifsx/;1610369696;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Kureimi;;;[];;;;text;t2_13l673;False;False;[];;😥;False;False;;;;1610325366;;False;{};gitiga1;False;t3_kujurp;False;True;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitiga1/;1610369704;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BLconnoisseur;;;[];;;;text;t2_5ska7cr5;False;False;[];;Wait there's no... ooooooohhhhhh;False;False;;;;1610325367;;False;{};gitigb4;False;t3_kujurp;False;False;t1_git50a0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitigb4/;1610369705;25;True;False;anime;t5_2qh22;;0;[]; -[];;;grounded-guy;;;[];;;;text;t2_7vlafpjl;False;False;[];;"Does anyone have any idea who the tall blonde guy who trapped Porco & Pieck is? I want to say Armin, but he obviously isn't that tall. Maybe inheriting the colossal titan makes you taller lol";False;False;;;;1610325367;;False;{};gitigbt;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitigbt/;1610369705;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CarcosanAnarchist;;;[];;;;text;t2_fmrcc;False;False;[];;I mean...what Zachary did is still somewhat of a step beyond just and into cruelty for the sake of cruelty.;False;False;;;;1610325389;;False;{};gitihz8;False;t3_kujurp;False;False;t1_gishl8w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitihz8/;1610369740;8;True;False;anime;t5_2qh22;;0;[]; -[];;;TatteredTongues;;;[];;;;text;t2_xbrbp;False;False;[];;"Everything you saw in the trailer was specifically made for the trailer, they're not ""re-using"" anything.";False;False;;;;1610325394;;False;{};gitiiaw;False;t3_kujurp;False;False;t1_giticsq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitiiaw/;1610369746;8;True;False;anime;t5_2qh22;;0;[]; -[];;;rarely_exactly_right;;;[];;;;text;t2_6o90vqzf;False;False;[];;The trailer was preanimated so they've reanimated the scenes for the actual episodes.;False;False;;;;1610325417;;False;{};gitik2f;False;t3_kujurp;False;False;t1_giticsq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitik2f/;1610369782;6;True;False;anime;t5_2qh22;;0;[]; -[];;;methofthewild;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/fedelini;light;text;t2_177yx2;False;False;[];;"I think hisoka is one of the most liked and popular characters in hxh though. But I think it's fair for people to dislike him because of his pedo tendencies, and the same way its okay to dislike eren/reiner for their mass murders. - -At this point its just arguing semantics of what is a ""bad character"". Is if a character you hate, or a character that's poorly written. And i think that varies from person to person.";False;False;;;;1610325421;;False;{};gitikd9;False;t3_kujurp;False;True;t1_gitac8q;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitikd9/;1610369788;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Piromysl;;;[];;;;text;t2_4w6z82lr;False;False;[];;It was the best episode of the series so far. I was waiting so long for this confrontation.;False;False;;;;1610325428;;False;{};gitiktf;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitiktf/;1610369796;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Radix3D;;;[];;;;text;t2_4pafckex;False;False;[];;It's complicated. As we saw in this episode, there seems to be people from Paradis that have been spying in Marley and are helping Eren. So if they are a part of this battle, then the world is likely to see the Eldians on Paradis as loyal to Eren, and also support the restoration of the Eldian Empire.;False;False;;;;1610325447;;False;{};gitim7p;False;t3_kujurp;False;True;t1_giti4nj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitim7p/;1610369820;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fauceeet;;;[];;;;text;t2_2qaxhbk7;False;False;[];;Hands down one of the best episodes ever. This makes me feel the same hype I had when the final episodes of Kill La Kill went down. There's just a great amount of hype and the words exchanging are great.;False;False;;;;1610325455;;False;{};gitimrn;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitimrn/;1610369829;4;True;False;anime;t5_2qh22;;0;[]; -[];;;therasaak;;;[];;;;text;t2_csp9x;False;False;[];;Maybe getting the colossal gave him a height buff lmao;False;False;;;;1610325482;;False;{};gitioo6;False;t3_kujurp;False;True;t1_gitf34u;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitioo6/;1610369863;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRandomRGU;;;[];;;;text;t2_f4f77;False;False;[];;Crunchyroll getting me excited with a graphic content warning and then literally nothing happens;False;False;;;;1610325488;;False;{};gitip5o;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitip5o/;1610369871;5;True;False;anime;t5_2qh22;;0;[]; -[];;;i_am-a-failure;;;[];;;;text;t2_86bg4kgh;False;False;[];;thanks now i remember her!;False;False;;;;1610325492;;False;{};gitipg9;False;t3_kujurp;False;False;t1_githgsq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitipg9/;1610369877;7;True;False;anime;t5_2qh22;;0;[]; -[];;;neocandy;;;[];;;;text;t2_p2lux;False;False;[];;In ~3 episodes the *protagonist* has: triggered his grandfather's PTSD, manipulated an unsuspecting kid, triggered Reiner's PTSD, and massacred many Eldian families in an apartment complex. Eren's never been portrayed as a particularly sane guy in past seasons but this is unprecedented.;False;False;;;;1610325498;;False;{};gitipwa;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitipwa/;1610369884;35;True;False;anime;t5_2qh22;;0;[]; -[];;;methofthewild;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/fedelini;light;text;t2_177yx2;False;False;[];;Of course he's not doing okay lmao he just killed a bunch of innocents.;False;False;;;;1610325509;;False;{};gitiqpi;False;t3_kujurp;False;False;t1_git27nn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitiqpi/;1610369901;32;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRandomRGU;;;[];;;;text;t2_f4f77;False;False;[];;"Manga readers and being cunts - -Name a more iconic duo";False;False;;;;1610325523;;False;{};gitirt4;False;t3_kujurp;False;True;t1_gisbbwg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitirt4/;1610369919;0;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;That was his spiel about how he and Reiner are the same. Reiner attacked Eren's village and killed thousands of people because he had no choice. Eren now is doing the same because he's got no choice too.;False;False;;;;1610325528;;False;{};gitis7a;False;t3_kujurp;False;False;t1_gisaxz3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitis7a/;1610369926;23;True;False;anime;t5_2qh22;;0;[]; -[];;;msnhao;;;[];;;;text;t2_el16w;False;False;[];;It’s not a terrorist attack since he only attacked after the declaration of war. It’s just a regular act of war;False;False;;;;1610325545;;False;{};gititi6;False;t3_kujurp;False;True;t1_gisgrlf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gititi6/;1610369948;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pamander;;;[];;;;text;t2_8csgs;False;False;[];;Absolutely, I know he has had some redemption and stuff but I still enjoyed that so much. Also man that scene was beautifully animated, the second he grabbed his arm to the very end was just perfect.;False;False;;;;1610325578;;False;{};gitivzh;False;t3_kujurp;False;False;t1_gisd4wn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitivzh/;1610369990;6;True;False;anime;t5_2qh22;;0;[]; -[];;;murfsters;;;[];;;;text;t2_60isjpko;False;False;[];;Well you’re not wrong;False;False;;;;1610325578;;False;{};gitiw0d;False;t3_kujurp;False;False;t1_gitiqpi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitiw0d/;1610369990;9;True;False;anime;t5_2qh22;;0;[]; -[];;;iDannyEL;;;[];;;;text;t2_en6ak;False;False;[];;Yes.;False;False;;;;1610325579;;False;{};gitiw2n;False;t3_kujurp;False;False;t1_gisb939;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitiw2n/;1610369991;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BelizariuszS;;;[];;;;text;t2_1dicu0i;False;False;[];;"""To you 3(000) years from now""";False;False;;;;1610325580;;False;{};gitiw4q;False;t3_kujurp;False;True;t1_gisikzm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitiw4q/;1610369992;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Neversoft4long;;;[];;;;text;t2_70za9;False;False;[];;No way reiners is dead.he’s pretty much the second protagonist of this show and they aren’t gonna off him off screen like that;False;False;;;;1610325582;;False;{};gitiwbt;False;t3_kujurp;False;False;t1_gisc2jv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitiwbt/;1610369995;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Kureimi;;;[];;;;text;t2_13l673;False;False;[];;😑;False;False;;;;1610325599;;False;{};gitixmg;False;t3_kujurp;False;True;t1_gisa8cr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitixmg/;1610370018;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iDannyEL;;;[];;;;text;t2_en6ak;False;False;[];;Wish the preview didn't already hype that.;False;False;;;;1610325611;;False;{};gitiyj6;False;t3_kujurp;False;True;t1_gise9wz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitiyj6/;1610370034;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Samrol;;;[];;;;text;t2_12bvei;False;False;[];;Says who? The eldians? Because Marley says otherwise.;False;False;;;;1610325632;;False;{};gitj01v;False;t3_kujurp;False;True;t1_gisgt8n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitj01v/;1610370064;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Eesti_pwner;;;[];;;;text;t2_d3vcs;False;False;[];;"Well could be, the last guy with the colossal was relatively tall too :D - -I guess we just have to wait and see :P";False;False;;;;1610325645;;False;{};gitj0y6;False;t3_kujurp;False;True;t1_gitioo6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitj0y6/;1610370083;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Golden_Phi;;MAL;[];;http://myanimelist.net/animelist/GoldenPhi;dark;text;t2_imrcw;False;False;[];;"In season 1 Armin asks Eren why does he want to be free, and Eren replies, ""Because I was born into this world"".";False;False;;;;1610325646;;False;{};gitj11p;False;t3_kujurp;False;False;t1_gisvy49;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitj11p/;1610370085;54;True;False;anime;t5_2qh22;;0;[]; -[];;;Smoke_Santa;;;[];;;;text;t2_7irtoh1r;False;False;[];;ಠ_ಠ;False;False;;;;1610325688;;False;{};gitj44p;False;t3_kujurp;False;True;t1_gisunvz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitj44p/;1610370143;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sstizzle;;;[];;;;text;t2_e9qm7;False;False;[];;Oh don’t forget political assassination!;False;False;;;;1610325715;;False;{};gitj642;False;t3_kujurp;False;False;t1_gitipwa;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitj642/;1610370177;31;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610325718;;False;{};gitj69m;False;t3_kujurp;False;True;t1_gith5c0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitj69m/;1610370180;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;Quantimatter;;;[];;;;text;t2_4x49n5b;False;False;[];;Absolutely amazing adaptation. Props to Mappa;False;False;;;;1610325733;;False;{};gitj7ei;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitj7ei/;1610370203;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;Both eaten by a Jaeger;False;False;;;;1610325738;;1610326018.0;{};gitj7sv;False;t3_kujurp;False;False;t1_gistbee;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitj7sv/;1610370209;26;True;False;anime;t5_2qh22;;0;[]; -[];;;fartwithmypantsdown;;;[];;;;text;t2_16e2ff;False;False;[];;The new scarier design for Eren's titan form is a reflection of how the people of Marley and the rest of the world view him and the titans. He truly looks like the devil they made him out to be.;False;False;;;;1610325750;;False;{};gitj8p9;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitj8p9/;1610370224;7;True;False;anime;t5_2qh22;;0;[]; -[];;;That__Bookworm;;;[];;;;text;t2_5j7d3zli;False;False;[];;"You could say that yes, but he also intentionally placed himself directly under a building full of Eldian civilians as a hostage when meeting Reiner and also kills them as well. - -Also, are you an anime only?";False;False;;;;1610325754;;False;{};gitj8yl;False;t3_kujurp;False;True;t1_gith5c0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitj8yl/;1610370228;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iDannyEL;;;[];;;;text;t2_en6ak;False;False;[];;This. The sub vs dub debate is all about emotion. Hoping the dub pulls through with this scene as well.;False;False;;;;1610325780;;False;{};gitjaur;False;t3_kujurp;False;False;t1_gisb781;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitjaur/;1610370261;6;True;False;anime;t5_2qh22;;0;[]; -[];;;aupa0205;;;[];;;;text;t2_16k38v;False;False;[];;I won’t say who it is, but you’ll figure it out probably in 3-4 episodes.;False;False;;;;1610325803;;False;{};gitjcn8;False;t3_kujurp;False;False;t1_gitigbt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitjcn8/;1610370292;6;True;False;anime;t5_2qh22;;0;[]; -[];;;User12086;;;[];;;;text;t2_69jb2scc;False;False;[];;6 hours, 13.5 k;False;False;;;;1610325820;;False;{};gitjdt2;False;t3_kujurp;False;False;t1_gitaz12;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitjdt2/;1610370312;5;True;False;anime;t5_2qh22;;0;[]; -[];;;slowdrem20;;;[];;;;text;t2_c7n2y;False;False;[];;You can support the war and not support the extermination of an entire people. I supported the war of Afghanistan but I didn’t support the mass slaughter of civilians. If they spread that propaganda it is your job to see through it. There is not enough fear mongering in the world that the government could spread for me to support the extermination of an entire people. This wasn’t them just cheering on the war effort. This was them advocating for the death of every Eldian on that island. I repeat this was not them advocating to forcefully remove the eldian government this was them hoping death upon every eldian and saying whatever happens to them is justified. If they can have those thoughts then it’s fair for the other side to do the same.;False;False;;;;1610325858;;False;{};gitjgo2;False;t3_kujurp;False;True;t1_gith3cr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitjgo2/;1610370366;0;True;False;anime;t5_2qh22;;0;[]; -[];;;FCT77;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/FCT;light;text;t2_16txdd;False;False;[];;Dude didn't you see the massive audience of civilians? Or the building Eren was inside of that was full of civilians and LITERALLY MENTIONED ON THIS EPISODE?;False;False;;;;1610325871;;False;{};gitjhn9;False;t3_kujurp;False;True;t1_gith5c0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitjhn9/;1610370387;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Khronify;;;[];;;;text;t2_41zknosc;False;False;[];;This show is goated. In all my years of watching anime I don’t think anything will come close to this anytime soon, what a masterpiece.;False;False;;;;1610325882;;False;{};gitjiic;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitjiic/;1610370404;13;True;False;anime;t5_2qh22;;0;[]; -[];;;megalurkeruygcxrtgbn;;;[];;;;text;t2_81ile;False;True;[];;Based on King Fritz's threat and Reiner admitting that they broke the wall to see what he would do, I would disagree. Paradis has been at war. I think their actual response was going to be based on what Willy said.;False;False;;;;1610325910;;False;{};gitjkm0;False;t3_kujurp;False;False;t1_gited8a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitjkm0/;1610370440;10;True;False;anime;t5_2qh22;;0;[]; -[];;;rabidsi;;;[];;;;text;t2_4qd76;False;False;[];;They've been thinking WW3 is coming since the 60's, my dude. You're behind the curve.;False;False;;;;1610325931;;False;{};gitjm58;False;t3_kujurp;False;False;t1_gisjh02;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitjm58/;1610370470;8;True;False;anime;t5_2qh22;;0;[]; -[];;;El_grandepadre;;;[];;;;text;t2_5bikpicr;False;False;[];;"> Please...kill me. - -Not just this, but with Willy saying ""I want to live"" at the same time. Reiner suffered throughout his life, as a result of the guy above them living lavishly while sustaining a lie that would've changed everything if they decided to come forward. - -They could've had a diplomatic relationship with Paradis instead, but they were brainwashed into thinking they were evil. And now Willy paid the price.";False;False;;;;1610325943;;False;{};gitjn3d;False;t3_kujurp;False;False;t1_gisa9li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitjn3d/;1610370487;5;True;False;anime;t5_2qh22;;0;[]; -[];;;09jtherrien;;;[];;;;text;t2_54ux1;False;False;[];;What chapter did this episode end?;False;False;;;;1610325945;;False;{};gitjn8c;False;t3_kujurp;False;False;t1_gista05;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitjn8c/;1610370489;6;True;False;anime;t5_2qh22;;0;[]; -[];;;KingKurai;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;http://myanimelist.net/profile/xspookydarknessx;light;text;t2_4dfy7;False;False;[];;"I've said this to my dad who watched GoT and later watched Titan, whereas I've watched both as they aired: ""Imagine every Sunday watching S3P2, and then begrudgingly watch GoT S8 right after.""";False;False;;;;1610325945;;False;{};gitjn9e;False;t3_kujurp;False;False;t1_git4tbi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitjn9e/;1610370489;25;True;False;anime;t5_2qh22;;0;[]; -[];;;SaboTheRevolutionary;;;[];;;;text;t2_p3mlx;False;False;[];;Never said that it did, it's just as bad of a choice as youeseebiggirl.;False;False;;;;1610325963;;False;{};gitjokz;False;t3_kujurp;False;True;t1_gitfxgx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitjokz/;1610370512;3;True;False;anime;t5_2qh22;;0;[]; -[];;;adat96;;;[];;;;text;t2_4j7hmt4o;False;False;[];;Willy and Rein: “Why do I hear boss music?”;False;False;;;;1610326001;;False;{};gitjrel;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitjrel/;1610370560;2;True;False;anime;t5_2qh22;;0;[]; -[];;;anarchist158;;;[];;;;text;t2_7f9d6cbl;False;False;[];;All those people rn that said Eren has no character development: 🤡🤡🤡;False;False;;;;1610326008;;False;{};gitjrvb;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitjrvb/;1610370569;34;True;False;anime;t5_2qh22;;0;[]; -[];;;GloinMyPimp;;;[];;;;text;t2_606gtsao;False;False;[];;"> His conclusion does not have to be correct. - -We're arguing about whether or not it's justified - -> He was 12, a brainwashed child soldier. 'Incorrect information' is a gross euphemism to describe the gap between his knowledge then and Eren's now. He was following orders; he didn't come to any philosophical conclusion. - -Whatever word you want to use to describe their level of knowledge is up to you. Even though Reiner was young, he still came to some conclusion in order to justify his actions. This is where Eren see's a similarity between them. They are similar in the sense that they are both doing what they believe will better the world, regardless of their age. - -> Intentionally killing civilian kids is always, always unjustifiable. - -Nope, it's compltetly justifiable given the situation Eren and Paradis are in. Saying any action is ""always unjustifiable"" is a childish way to look at morality. - -> Eren is not a child soldier. Eren has knowledge of all the workings of the world. Eren knows that people on the other side is just like people within the walls. Eren knows about the cruelties of war. - -Plug Reiners name in wherever you typed ""Eren"" and it still fits. Also note that Reiner was about Erens current age when he decided to still kill people in Paradis and steal Eren away. He's also helping to plan yet another attack on Paradis. - -> Wars in real life don't end with the winning side eliminating everyone within the losing nations. - -True man war in real life doesn't always function the same way as it does in anime.";False;False;;;;1610326011;;False;{};gitjs4b;False;t3_kujurp;False;False;t1_gitgwsi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitjs4b/;1610370573;3;True;False;anime;t5_2qh22;;0;[]; -[];;;That__Bookworm;;;[];;;;text;t2_5j7d3zli;False;False;[];;Not entirely? I felt like it was more like to save themselves and their people, or at least what Reiner was brainwashed into thinking;False;False;;;;1610326018;;False;{};gitjsmc;False;t3_kujurp;False;True;t1_gispzrd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitjsmc/;1610370583;1;True;False;anime;t5_2qh22;;0;[]; -[];;;johnnyblack15;;;[];;;;text;t2_f68z2dk;False;False;[];;So wasn't Reiner and the other warriors taking down the walls also a war crime by your logic? That killed even more civilians. I get that they were civilians, but they were also cheering for genocide, do it's kind of hard for me to feel bad for them.;False;False;;;;1610326033;;False;{};gitjtnt;False;t3_kujurp;False;True;t1_gitfm0r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitjtnt/;1610370600;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Taurus24Silver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Taurus-Silver;light;text;t2_826uaxw;False;False;[];;"Sure, but I am already telling you in advance that I put these shows in the same category as AOT(rn) - - -1)Full Metal Alchemist Brotherhood - -2)Hunter x Hunter - -3)Steins Gate - -4)Bakuman - -5)Clannad - -6)Gintama - -7)Made in Abyss - -Yup, Thats it. These are the anime which I consider to be masterpieces among masterpieces, and I don't wanna brag and all, but I have seen A LOT of shit";False;False;;;;1610326060;;False;{};gitjvji;False;t3_kujurp;False;False;t1_giti2y7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitjvji/;1610370634;4;True;False;anime;t5_2qh22;;0;[]; -[];;;DJ_AW03;;;[];;;;text;t2_6a2u9w9l;False;True;[];;Hate when that happens;False;False;;;;1610326069;;False;{};gitjw64;False;t3_kujurp;False;False;t1_giti3n2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitjw64/;1610370645;8;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptainPucek;;MAL;[];;https://myanimelist.net/profile/Pucek;dark;text;t2_iymjg;False;False;[];;This episode had me literally on the edge of my seat. The OST is amazing as usual and helped to build an insane amount of tension.;False;False;;;;1610326084;;False;{};gitjx9d;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitjx9d/;1610370663;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jee-Oh;;;[];;;;text;t2_11vhtx;False;False;[];;Yeah this is the best anime of all time;False;False;;;;1610326093;;False;{};gitjxy4;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitjxy4/;1610370675;15;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610326117;;False;{};gitjzos;False;t3_kujurp;False;True;t1_gisnpsu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitjzos/;1610370704;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bvllvj;;;[];;;;text;t2_6cn02ajq;False;False;[];;is it not drawn?;False;False;;;;1610326127;;False;{};gitk0gw;False;t3_kujurp;False;True;t1_gisuaiw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitk0gw/;1610370718;1;True;False;anime;t5_2qh22;;0;[]; -[];;;methofthewild;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/fedelini;light;text;t2_177yx2;False;False;[];;The Orientals aren't eldian. The eldian race is mostly Caucasian looking. Mikasa's mum was oriental and her dad was the ackerman. The Ackerman clan is eldian but immune to the founding titan ability.;False;False;;;;1610326134;;False;{};gitk117;False;t3_kujurp;False;False;t1_gith241;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitk117/;1610370728;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Ksradrik;;;[];;;;text;t2_1wtl783j;False;False;[];;"If Eren got captured or killed Paradis would 100% be annihilated. - -You *are* expecting him to act like a saint, some collateral damage in a war is unavoidable, what he did is absolutely nothing compared to the marleyan strategy of destroying the walls and letting the titans eat them, and thats not just a *couple* marleyans, that move was widely accepted and praised. - -Even most of the Eldians are trying to become honorary Marleyans anyway, limiting your options because of their presence would be reckless and stupid. - -Also you seem to have absolutely no idea about the powergap between Paradis and Marley, theres no way they can afford to take it easy.";False;False;;;;1610326144;;1610326333.0;{};gitk1sg;False;t3_kujurp;False;False;t1_git6488;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitk1sg/;1610370740;7;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;"I think it finished chapter 100(or 101 but im almost sure its 100) - -Its the chapter with the same title as the episode";False;False;;;;1610326151;;False;{};gitk2au;False;t3_kujurp;False;False;t1_gitjn8c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitk2au/;1610370748;9;True;False;anime;t5_2qh22;;0;[]; -[];;;BLconnoisseur;;;[];;;;text;t2_5ska7cr5;False;False;[];;The callbacks should be easiar to spot then.;False;False;;;;1610326163;;False;{};gitk36m;False;t3_kujurp;False;False;t1_git79a7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitk36m/;1610370763;8;True;False;anime;t5_2qh22;;0;[]; -[];;;icecubes99;;;[];;;;text;t2_1gde7px;False;False;[];;He also got Falco hostage;False;False;;;;1610326192;;False;{};gitk5f7;False;t3_kujurp;False;False;t1_gisrm9j;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitk5f7/;1610370802;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Saibotsan;;;[];;;;text;t2_5erviegw;False;False;[];;Remember when we were scared of MAPPA adaptation? I don't even remember WIT animation style anymore;False;False;;;;1610326201;;False;{};gitk650;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitk650/;1610370817;14;True;False;anime;t5_2qh22;;0;[]; -[];;;myrmonden;;;[];;;;text;t2_f0rs6;False;False;[];;"that is not how technically a war declaration works. - -If its about TECHNICALLY, they would have to send a formal war declaration to the eldians not just do a speech in front of his allies. - -Neither where they even at peace before, they just had not had any engagement at a while. At best a standstill.";False;False;;;;1610326210;;False;{};gitk6sb;False;t3_kujurp;False;True;t1_git0d2o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitk6sb/;1610370828;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chewlarue12;;;[];;;;text;t2_175ba4;False;False;[];;Did Reiner die from that? I don't think so.;False;False;;;;1610326215;;False;{};gitk76y;False;t3_kujurp;False;False;t1_gisc2jv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitk76y/;1610370835;7;True;False;anime;t5_2qh22;;0;[]; -[];;;methofthewild;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/fedelini;light;text;t2_177yx2;False;False;[];;You can have white people with black hair.;False;False;;;;1610326235;;False;{};gitk8qt;False;t3_kujurp;False;False;t1_git3p4l;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitk8qt/;1610370862;8;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;"It reminds me of the scene where Uri apologizes to Kenny after Kenny almost tried to kill him saying he understands Kenny's hatred towards him and asks for forgiveness instead. - -It captures the personality of the King Fritz who decided he wasn't going to fight with anyone anymore and lived in remorse of the past actions of his people. Allowing them to be eaten by their own kind and if the outsides one day come to conquer Paradis, he would simply surrender and let his people get slaughtered because that's what he believed they truly deserved for the sins of their past. It sorta also explained why the Royal family and the Church were so opposed to the actions of the Scouts and went to great lengths to fight them off to keep them from finding the secret of the family. - -In creating a little Island paradise for his people and taking away their memories, he allowed the Eldians to live out their lives guilt free, without any remorse for the actions of their past. Or at least that's what he believed he was doing.";False;False;;;;1610326241;;False;{};gitk979;False;t3_kujurp;False;False;t1_gisydyw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitk979/;1610370871;5;True;False;anime;t5_2qh22;;0;[]; -[];;;NochillWill123;;;[];;;;text;t2_15no3i;False;False;[];;I just re watched FMB and I got to say. It peaked at #1 for me. Well, it hit hard when you got younger bro you’re super close to.;False;False;;;;1610326266;;False;{};gitkb7n;False;t3_kujurp;False;True;t1_gitjxy4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitkb7n/;1610370905;4;True;False;anime;t5_2qh22;;0;[]; -[];;;El_grandepadre;;;[];;;;text;t2_5bikpicr;False;False;[];;"Eren continues: ""As the name implies, it is a Titan that specializes in Attacking. Logically speaking, if I transform right here, right now, I have to attack"" - -Reiner, shocked by those words, thinks: ""Oh dear god please no""";False;False;;;;1610326304;;False;{};gitke1h;False;t3_kujurp;False;False;t1_gishbh6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitke1h/;1610370954;10;True;False;anime;t5_2qh22;;0;[]; -[];;;methofthewild;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/fedelini;light;text;t2_177yx2;False;False;[];;Tis but a scratch.;False;False;;;;1610326314;;False;{};gitkew6;False;t3_kujurp;False;True;t1_giteudg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitkew6/;1610370969;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dipdopdangle;;;[];;;;text;t2_1iqqb59;False;False;[];;When the series came out and I watched the first episode before reading the manga at all, I knew in my mind that this series would be special. I'm so glad that it's true;False;False;;;;1610326318;;False;{};gitkf7a;False;t3_kujurp;False;False;t1_gisrcy6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitkf7a/;1610370975;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Wefeh;;;[];;;;text;t2_y4co8;False;False;[];;I was only arguing that it wasn't fair game, I'm not downplaying anyone's actions, it was all done out of self preservation and personal motives. They are all fighting for their own peace.;False;False;;;;1610326322;;False;{};gitkfhe;False;t3_kujurp;False;False;t1_gitjtnt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitkfhe/;1610370980;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Anon199760;;;[];;;;text;t2_49baaa9v;False;False;[];;Exactly! And man that deep bass like sound effect or ost that was playing during the transformation was hype af!;False;False;;;;1610326362;;False;{};gitkikx;False;t3_kujurp;False;True;t1_gisd9iy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitkikx/;1610371034;1;True;False;anime;t5_2qh22;;0;[]; -[];;;09jtherrien;;;[];;;;text;t2_54ux1;False;False;[];;yea i was just about to edit the comment to say it was chapter 100.;False;False;;;;1610326362;;False;{};gitkil6;False;t3_kujurp;False;False;t1_gitk2au;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitkil6/;1610371034;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ganonboar;;;[];;;;text;t2_yazos;False;False;[];;what do you mean about reorganising bertholdt's dream? it was in the exact same place in this episode as it was in the manga. it happens at the start of chapter 99;False;False;;;;1610326403;;False;{};gitklkh;False;t3_kujurp;False;False;t1_gisw37g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitklkh/;1610371084;5;True;False;anime;t5_2qh22;;0;[]; -[];;;myrmonden;;;[];;;;text;t2_f0rs6;False;False;[];;Only reason marley has not attacked them is becasue they had to fight other wars as shown in episode 1, they are not at peace with the Eldian paradise before his speech.;False;False;;;;1610326416;;False;{};gitkmhv;False;t3_kujurp;False;False;t1_gitjkm0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitkmhv/;1610371102;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Ren_Davis0531;;;[];;;;text;t2_155l34;False;False;[];;Eren and Reiner are the same;False;False;;;;1610326446;;False;{};gitkom7;False;t3_kujurp;False;True;t1_gislx79;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitkom7/;1610371139;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Flairtor;;;[];;;;text;t2_wb0u6;False;False;[];;So hype!!!;False;False;;;;1610326452;;False;{};gitkp14;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitkp14/;1610371148;2;True;False;anime;t5_2qh22;;0;[]; -[];;;B_RizzleMyNizzIe;;;[];;;;text;t2_4p70ggqe;False;False;[];;Why on earth are there paid awards going to bots?;False;False;;;;1610326456;;False;{};gitkpbx;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitkpbx/;1610371153;5;True;False;anime;t5_2qh22;;0;[]; -[];;;El_grandepadre;;;[];;;;text;t2_5bikpicr;False;False;[];;Based basement.;False;False;;;;1610326461;;False;{};gitkpn5;False;t3_kujurp;False;True;t1_gisfq6x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitkpn5/;1610371158;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"We can see sparks coming his Eren's hand first when he transforms - -Why cut his hand earlier and then help reiner with the same hand which could cause pain on his wounded hand which is technically self infliction of Pain - -It also would mean reiner was the one who inadvertently made Eren to transform but that is just over thinking but this is AoT after all";False;True;;comment score below threshold;;1610326463;;False;{};gitkpsz;False;t3_kujurp;False;True;t1_giti7zg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitkpsz/;1610371160;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;BelizariuszS;;;[];;;;text;t2_1dicu0i;False;False;[];;He had Founder from beginnig of the series tho;False;False;;;;1610326464;;False;{};gitkptv;False;t3_kujurp;False;True;t1_giskig5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitkptv/;1610371161;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ionel1-The-Impaler;;;[];;;;text;t2_3dfe4rs6;False;False;[];;That man Willy got fucked up.;False;False;;;;1610326466;;False;{};gitkpzf;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitkpzf/;1610371164;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;It’s not just the hair it’s the facial features and build.;False;False;;;;1610326477;;False;{};gitkqrn;False;t3_kujurp;False;False;t1_gitk8qt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitkqrn/;1610371178;11;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;It would have been pretty difficult with Historia in control of the Island and the Scouts having full reign over the whole Island without worrying about Titans outside the walls. At the same time it would be easier now for Marleyans to infiltrate Paradis as now all they needed to do was land on the Island and without any Titans, the people of Paradis would have spread outside of the walls so the spies wouldn't have to scale any walls or try to sneak in through the gates anymore.;False;False;;;;1610326486;;False;{};gitkrgl;False;t3_kujurp;False;False;t1_gitifsx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitkrgl/;1610371189;7;True;False;anime;t5_2qh22;;0;[]; -[];;;cuddlewench;;;[];;;;text;t2_gf4tr;False;False;[];;No talk no jutsu?! 😨;False;False;;;;1610326497;;False;{};gitks78;False;t3_kujurp;False;False;t1_gisj9xn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitks78/;1610371201;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ICanHazRecon911;;;[];;;;text;t2_9n5t5;False;False;[];;"Summon the Elector Counts! - -Wait a sec wrong sub";False;False;;;;1610326507;;False;{};gitksz5;False;t3_kujurp;False;False;t1_gisapyn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitksz5/;1610371215;3;True;False;anime;t5_2qh22;;0;[]; -[];;;asscrackrash;;;[];;;;text;t2_9jhv8y1m;False;False;[];;"yeah, that's kinda what i'm getting at. - -i think i'm just garbage at constructing sentences in english.";False;False;;;;1610326511;;False;{};gitkt9t;False;t3_kujurp;False;True;t1_gitikd9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitkt9t/;1610371221;1;True;False;anime;t5_2qh22;;0;[]; -[];;;myrmonden;;;[];;;;text;t2_f0rs6;False;False;[];;"Its not meaningless in a coalition strategy, - -They are already at war with Paradise. - -His speech focus is not to GO TO WAR, but to GET ALLIES. - -His speech goal is to get the other countries to join the Marleys to togheter finally defeat the eldians forever.";False;False;;;;1610326544;;False;{};gitkvn8;False;t3_kujurp;False;False;t1_gited8a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitkvn8/;1610371264;4;True;False;anime;t5_2qh22;;0;[]; -[];;;DammitWindows98;;;[];;;;text;t2_hevjv;False;False;[];;AS GOD AS MY WITNESS, HE IS BROKEN IN HALF;False;False;;;;1610326544;;False;{};gitkvns;False;t3_kujurp;False;False;t1_giscpcm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitkvns/;1610371264;11;True;False;anime;t5_2qh22;;0;[]; -[];;;NochillWill123;;;[];;;;text;t2_15no3i;False;False;[];;When Reiner realized eren pulled off similar tactic to attack his mainland lol. It’s almost if they did it on purpose to reflect what eren and his town felt when they were ambushed by titans . Sessssh. And falco? Lol his expressions when he realized he was helping the enemy . Can’t wait for next episode.;False;False;;;;1610326585;;False;{};gitkypu;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitkypu/;1610371324;6;True;False;anime;t5_2qh22;;0;[]; -[];;;KabochaPai;;;[];;;;text;t2_797pfsfg;False;False;[];;"King Fritz was a coward, and he creates a paradise for himself only, not his caged people. - -The judgment of the world was delivered unto his people that had their memories stolen while Fritz the coward himself lived a blissful, peaceful live till his death. - -He alone escapes the world's judgment and lets his own people be judged for their ancestors' sins. A coward who preached false paradise and believed ignorance is bliss.";False;False;;;;1610326600;;False;{};gitkzq3;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitkzq3/;1610371344;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Kelenkel;;;[];;;;text;t2_nparey5;False;False;[];;I can't express in words what i felt during this episode... I can't belive i knew what was gonna happen and still got overhyped af. AoT is phenomenal, thank god i'm alive watching this!;False;False;;;;1610326602;;False;{};gitkzuf;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitkzuf/;1610371348;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Golden_Phi;;MAL;[];;http://myanimelist.net/animelist/GoldenPhi;dark;text;t2_imrcw;False;False;[];;"Eren, himself said ""because I was born into this world"" back in season 1 during the Trost arc.";False;False;;;;1610326621;;False;{};gitl18o;False;t3_kujurp;False;False;t1_giskj83;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitl18o/;1610371376;9;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;For the love fo God, that Attack Titan looked amazing and scary as hell. Great work from MAPPA.;False;False;;;;1610326653;;False;{};gitl3g8;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitl3g8/;1610371419;16;True;False;anime;t5_2qh22;;0;[]; -[];;;medven;;;[];;;;text;t2_d3k7j;False;False;[];;I've been replaying it in my head since the trailer. My hype went overload when I heard him say it here;False;False;;;;1610326657;;False;{};gitl3s8;False;t3_kujurp;False;True;t1_gisac08;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitl3s8/;1610371428;2;True;False;anime;t5_2qh22;;0;[]; -[];;;galileotheweirdo;;MAL;[];;myanimelist.net/animelist/galileotheweirdo;dark;text;t2_gwyf6;False;False;[];;A line that was chilling to me was one of Reiner’s: “Falco, just do what he says.” His voice shaking with fear. It was so convincing and really chilling to think that Reiner is genuinely terrified of what’s about to happen.;False;False;;;;1610326666;;False;{};gitl4co;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitl4co/;1610371447;8;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;"""What are you doing step bro?!""";False;False;;;;1610326671;;False;{};gitl4ps;False;t3_kujurp;False;False;t1_git6a37;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitl4ps/;1610371454;7;True;False;anime;t5_2qh22;;0;[]; -[];;;IrahX;;;[];;;;text;t2_14aia61r;False;False;[];;"Many manga readers are complaining about the OST used in the final scene. Using an epic OST throughout the scene would have tipped off the anime only watchers that something drastic was going to happen. - -I get they wanted to transition from 0 to 100 with a quiet to bombastic change like Eren did. The OST used (2Volt) is the same one they used for Levi vs Beast Titan last season, so the choice itself was not the issue. - -The problem was it was too damn muted. In the Levi fight scene, the music was thumping. Here it seemed as if there was almost no background music. Hopefully they use a more epic OST for the same scene next episode now that the surprise is out.";False;False;;;;1610326676;;False;{};gitl54b;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitl54b/;1610371464;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Mr_Fufu_Cudlypoops;;;[];;;;text;t2_116x5wwb;False;False;[];;I'm rewatching with me sister (her first time) and I can confirm there's a callback or reference about every two minutes. It's incredibly rewarding.;False;False;;;;1610326693;;False;{};gitl6a3;False;t3_kujurp;False;False;t1_gislyf5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitl6a3/;1610371488;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Tensz;;;[];;;;text;t2_13p4rv;False;False;[];;This always happens with overhyped episodes. People just like the musicalizacion soulmadness did and won't accept any different. The same thing happened in the season 2 finale.;False;False;;;;1610326710;;False;{};gitl7jw;False;t3_kujurp;False;True;t1_giswr0w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitl7jw/;1610371513;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;You see the sparks during the handshake because that's when he decided to begin the transformation. He cut his hand prior to the meeting as a way to warn Reiner of doing anything foolish. He was pretty much holding Reiner(and Falco) at gunpoint.;False;False;;;;1610326728;;False;{};gitl8sy;False;t3_kujurp;False;False;t1_gitkpsz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitl8sy/;1610371534;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"It was exhilarating tbh - -I kept replaying the last scene over and over again";False;False;;;;1610326730;;False;{};gitl8xy;False;t3_kujurp;False;True;t1_gisb5i0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitl8xy/;1610371537;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;The worst was the last thought Marlow had as he charged towards certain death was he wondered what Hitch was upto that moment... Damn that hit right in the feels!;False;False;;;;1610326744;;False;{};gitl9y0;False;t3_kujurp;False;False;t1_gisu7si;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitl9y0/;1610371555;43;True;False;anime;t5_2qh22;;0;[]; -[];;;GGG100;;;[];;;;text;t2_n30n6;False;False;[];;"Eren: Hello Reiner, why don't you have a seat over there? - -Reiner: (I regret everything)";False;False;;;;1610326744;;False;{};gitl9yv;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitl9yv/;1610371555;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Mogsike;;;[];;;;text;t2_ae7tq;False;False;[];;Thanks for the explanation. I figured he could just transform whenever by biting his finger, but I guess it was supposed to show that he’s gained more mastery over when he transforms;False;False;;;;1610326751;;False;{};gitlagi;False;t3_kujurp;False;True;t1_git8wtj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitlagi/;1610371564;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610326766;;False;{};gitlbg3;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitlbg3/;1610371584;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Mara_Uzumaki, your post has been removed because it links to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610326766;moderator;False;{};gitlbhg;False;t3_kujurp;False;True;t1_gitlbg3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitlbhg/;1610371585;2;False;False;anime;t5_2qh22;;0;[]; -[];;;kobolR5;;;[];;;;text;t2_s17uonu;False;False;[];;Eren: It's over Reiner;False;False;;;;1610326768;;False;{};gitlblh;False;t3_kujurp;False;True;t1_gisc1bn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitlblh/;1610371586;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LG03;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/Bronadian;dark;text;t2_3npe0;False;False;[];;"https://i.imgur.com/bZccexF.jpeg - -Maybe? It's hard to say, that could just be Eren's cut hand not healing immediately, the blood is obscuring any real damage on Willy.";False;False;;;;1610326785;;False;{};gitlcsp;False;t3_kujurp;False;False;t1_git7c1e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitlcsp/;1610371609;5;True;False;anime;t5_2qh22;;0;[]; -[];;;cmdr_suicidewinder;;;[];;;;text;t2_17f3ps;False;False;[];;If that's the case armin's VA is going through some shit;False;False;;;;1610326819;;False;{};gitlf40;False;t3_kujurp;False;True;t1_git9pcj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitlf40/;1610371651;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Arhat_;;;[];;;;text;t2_zn4lo;False;False;[];;"Now that I think about it [manga spoilers](/s ""no one gives a shit about endangering falco with transformations"")";False;False;;;;1610326824;;False;{};gitlffo;False;t3_kujurp;False;True;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitlffo/;1610371658;9;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;Yup killing them there while Reiner's begging to be killed wouldn't have been excruciating. He needs to make him suffer more...... :(;False;False;;;;1610326839;;False;{};gitlgiz;False;t3_kujurp;False;True;t1_gistsox;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitlgiz/;1610371679;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610326841;;False;{};gitlgmo;False;t3_kujurp;False;True;t1_gishl8w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitlgmo/;1610371680;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Golden_Phi;;MAL;[];;http://myanimelist.net/animelist/GoldenPhi;dark;text;t2_imrcw;False;False;[];;"> It's a direct callback to Carla - -It goes further back [than that](https://youtu.be/fa8M5CKsIjg?t=54)";False;False;;;;1610326883;;False;{};gitljl4;False;t3_kujurp;False;False;t1_gisrptc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitljl4/;1610371746;9;True;False;anime;t5_2qh22;;0;[]; -[];;;LordTachancka;;;[];;;;text;t2_5imdwka4;False;False;[];;Damn spawn camping with a berserker and ruler class mix, not cool Eren not cool.;False;False;;;;1610326891;;False;{};gitlk2w;False;t3_kujurp;False;False;t1_gisbgr0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitlk2w/;1610371756;14;True;False;anime;t5_2qh22;;0;[]; -[];;;realstrikemasterice;;;[];;;;text;t2_6ekdd;False;False;[];;"[Key visual from 7 months ago](https://cdn.myanimelist.net/images/anime/1773/109409l.webp) -Eren with the bloody hand";False;False;;;;1610326905;;False;{};gitll1o;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitll1o/;1610371774;12;True;False;anime;t5_2qh22;;0;[]; -[];;;SacoNegr0;;;[];;;;text;t2_61tjhf97;False;False;[];;Kirito torturing Oberon was the exact opposite example of a good writing motive;False;False;;;;1610326917;;False;{};gitllva;False;t3_kujurp;False;True;t1_gishl8w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitllva/;1610371790;3;True;False;anime;t5_2qh22;;0;[]; -[];;;tsubasawokudasai1;;;[];;;;text;t2_51sikbtv;False;False;[];;Its probably because she also inherited Marcel's selflessness.;False;False;;;;1610326921;;False;{};gitlm6f;False;t3_kujurp;False;False;t1_gitecdi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitlm6f/;1610371797;21;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;That's the thing, there's no good guys or bad guys, just being getting screwed over by their circumstances. Its just the kind of world they live in like Bert said.;False;False;;;;1610326929;;False;{};gitlmoj;False;t3_kujurp;False;False;t1_git1qqu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitlmoj/;1610371806;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Fabafaba;;;[];;;;text;t2_y3r4l;False;False;[];;Having deja vu with this comment.;False;False;;;;1610326943;;False;{};gitlno3;False;t3_kujurp;False;True;t1_gisgp6a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitlno3/;1610371824;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Radix3D;;;[];;;;text;t2_4pafckex;False;False;[];;"> If they spread that propaganda it is your job to see through it. - -This is an extremely unrealistic perspective on human psychology. If humans could simply ""see through"" propaganda, then it wouldn't be as much of an issue as it has been throughout all of human history. Environment and lived experiences have a huge impact on a person's outlook of the world. - -[I highly recommend giving this video a watch](https://www.youtube.com/watch?v=bVV2Zk88beY) - -Anyway, the framing of all of this is already all messed up. Literally all Willy said is that Eren Yeager is planning to Rumble the world, so fight with me to stop the ""devils of Paradis"". None of this explicitly means the annihilation of everyone on the island. There are many routes Marley could have been planning to take with regard to attack Paradis. They could have been planning to take the Founding Titan and then turning the island into a large internment zone. - -Anyway, to conclude all of this, I think it's pretty messed up to say that it is morally justified to kill innocent people, including children, simply because they support the actions of their country, even though they aren't engaging in it themselves, or even fully understand the truth of what's actually happening because their government heavily controls all the information they receive.";False;False;;;;1610326979;;False;{};gitlq48;False;t3_kujurp;False;True;t1_gitjgo2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitlq48/;1610371873;3;True;False;anime;t5_2qh22;;0;[]; -[];;;pranda;;;[];;;;text;t2_8cs12;False;False;[];;Yeah, now that I’m listening to the voice again for the fourth time, it really doesn’t seem like Marina Inoue. Argh, what the heck. Who is it! 😂;False;False;;;;1610327007;;False;{};gitls0x;False;t3_kujurp;False;True;t1_gitlf40;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitls0x/;1610371910;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AustinM1617;;;[];;;;text;t2_5o4sy1oe;False;False;[];;The way Eren burst out of the building and grabbed Willy was animated so well.;False;False;;;;1610327019;;False;{};gitlst6;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitlst6/;1610371926;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Justice_Chip;;;[];;;;text;t2_oaxvq;False;False;[];;Thematically it wouldve only made sense for Vogel im kafig to be used, because it would represent the parallels between reiner and eren- how they are both facing enemies neither of them wanted to face.;False;False;;;;1610327037;;False;{};gitlu0y;False;t3_kujurp;False;True;t1_gisymk3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitlu0y/;1610371952;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sanon441;;;[];;;;text;t2_p13vd;False;False;[];;Yes, I know, I was talking about RBA, Eren was at war and striking military leaders in the crowd. RBA was launching an unprovoked assault on civilians.;False;False;;;;1610327039;;False;{};gitlu61;False;t3_kujurp;False;True;t1_gison6w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitlu61/;1610371954;2;True;False;anime;t5_2qh22;;0;[]; -[];;;abucas;;;[];;;;text;t2_feeuz;False;False;[];;The first thing that came in my mind when he said that was the re: zero lap pillow scene...;False;False;;;;1610327047;;False;{};gitlupj;False;t3_kujurp;False;False;t1_gism3eq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitlupj/;1610371963;5;True;False;anime;t5_2qh22;;0;[]; -[];;;megalurkeruygcxrtgbn;;;[];;;;text;t2_81ile;False;True;[];;Yes, this was just the rest of the world finding out what was started when Bertholdt kicked the wall.;False;False;;;;1610327054;;False;{};gitlv7c;False;t3_kujurp;False;False;t1_gitkmhv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitlv7c/;1610371972;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Ren_Davis0531;;;[];;;;text;t2_155l34;False;False;[];;Marleyans think it’s only fair because Eldians did it to them first. It’s the same mindset. It’s a cycle of hatred and violence. That’s why Eren doesn’t hate Reiner anymore. He understands that they are the same: people who are just trying to save their people.;False;False;;;;1610327076;;False;{};gitlwrv;False;t3_kujurp;False;True;t1_gisgcxz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitlwrv/;1610371999;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gil-kun12;;;[];;;;text;t2_1u7th0bj;False;False;[];;Holy shit! That was badass;False;False;;;;1610327080;;False;{};gitlx2a;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitlx2a/;1610372005;3;True;False;anime;t5_2qh22;;0;[]; -[];;;c0smic_0wl;;;[];;;;text;t2_f064a;False;False;[];;Willy: why do I hear boss music?;False;False;;;;1610327118;;False;{};gitlzmz;False;t3_kujurp;False;False;t1_gitl54b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitlzmz/;1610372073;9;True;False;anime;t5_2qh22;;0;[]; -[];;;DahmitAll;;;[];;;;text;t2_h7bay;False;False;[];;When Annie, Reiner and Bert were walking. Feels like a few frames were skipped or something.;False;False;;;;1610327119;;False;{};gitlzpy;False;t3_kujurp;False;True;t1_gite7vb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitlzpy/;1610372074;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chatonne;;;[];;;;text;t2_8ug4h;False;False;[];;When did we get that info? My gold fish memory is not helping lol;False;False;;;;1610327144;;False;{};gitm1ee;False;t3_kujurp;False;True;t1_git0zs0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitm1ee/;1610372104;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nome_de_utilizador;;;[];;;;text;t2_5z33g;False;False;[];;"They mentioned that every ship they sent to paradis over 4 years disappeared. Keep in mind that during the flashback of krueger and griesha we saw that marley visited paradis regularly to the port to send prisioners there and turn them to titans. Suddenly your special ops mission returns without 3 people, reports they failed, that there was a coup, and that the founding titan is no longer in the hands of the royal family. Every single ship you sent afterwards, from military to reconnaissance, disappeared. To make matters worse, they lost 2 shifters whose new hosts they know will have some sort of access to their predecessors memories and gain knowledge of Marley, basement reveal or not. - -They didn't know Eren was there specifically but had to assume that some members from Eldia had to be at least present marley for a while now and need to take action (the war with the middle east delayed everything). So Willy was hoping that he could gather the world in an alliance to invade paradis, or bail out a possible offensive by Eldia with the whole world to see, and have the military and the warriors on stand by to stop it.";False;False;;;;1610327147;;False;{};gitm1mg;False;t3_kujurp;False;False;t1_gitiapd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitm1mg/;1610372108;18;True;False;anime;t5_2qh22;;0;[]; -[];;;LeXxleloxx;;;[];;;;text;t2_14m50a;False;False;[];;which episode this is ?;False;False;;;;1610327161;;False;{};gitm2ka;False;t3_kujurp;False;False;t1_gisafs9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitm2ka/;1610372126;4;True;False;anime;t5_2qh22;;0;[]; -[];;;bobsjobisfob;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/bobsjobisfob;light;text;t2_g11wq;False;False;[];;yup, thats where maybe the anime will actually help it out a bit. or maybe it will just be even more of a clusterfuck. beastars and the promised neverland are kind of similar in that they go to shit after the few 1-2 arcs;False;False;;;;1610327173;;False;{};gitm3gr;False;t3_kujurp;False;True;t1_gitewvg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitm3gr/;1610372143;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CipisekAMV;;;[];;;;text;t2_23x392d1;False;False;[];;I was here;False;False;;;;1610327180;;False;{};gitm3vc;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitm3vc/;1610372149;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610327206;;False;{};gitm5ou;False;t3_kujurp;False;True;t1_git7oks;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitm5ou/;1610372181;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JonAndTonic;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/;light;text;t2_kziw3;False;False;[];;Holy shit;False;False;;;;1610327240;;False;{};gitm7x0;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitm7x0/;1610372221;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rabidsi;;;[];;;;text;t2_4qd76;False;False;[];;Now, would you like to buy this rapidly flooding beach front property?;False;False;;;;1610327243;;False;{};gitm84b;False;t3_kujurp;False;True;t1_gism8t6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitm84b/;1610372224;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SaboTheRevolutionary;;;[];;;;text;t2_p3mlx;False;False;[];;"Despite being the best episode of the season, I wouldn't say it was done with perfection. There was some stuff that should have been changed. Willy's voice actor was way too low energy in his speech, compare [this](https://youtu.be/ahJeLMdkChU?t=393) to how almost monotone Willy's voice felt in comparison. They added in the pointless soldiers about to break into the basement with Reiner and Eren for no reason whatsoever. Obviously the OST was chosen wrong imo, not to mention they had Eren close his eyes during Willy's speech too early. He was supposed to close his eyes after Willy said ""I WANT YOU TO FIGHT WITH ME AGAINST THE ISLAND DEVILS"" and the crowd cheers which kind of ruins the feeling of that being the precise moment all hope at peace in Eren's mind vanishes. It was a fine episode, not bad but not the amazing series defining moment it should have been.";False;False;;;;1610327244;;False;{};gitm863;False;t3_kujurp;False;True;t1_gisea0w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitm863/;1610372226;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jussnf;;;[];;;;text;t2_6z5ws;False;False;[];;"Do you already know what's gonna happen? I thought the manga doesn't end until April? - -Genuine question, been very confused about how MAPPA is going to pace the last 11 episodes properly (I'm an anime-only)";False;False;;;;1610327290;;False;{};gitmbb5;False;t3_kujurp;False;True;t1_gisajvw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitmbb5/;1610372279;1;True;False;anime;t5_2qh22;;0;[]; -[];;;myrmonden;;;[];;;;text;t2_f0rs6;False;False;[];;"yes the war is already going on. - -Its just had 2 factors for more combat. - -Marley was attacked by another coalition of countries trying to remove the Marley Empire as they are super powerful, and their spies or something like that had figured out they lost some of their titan powers that weakened them - -Tybur is also (imo) clearly supposed to be the Holy roman empire Emperor which is then at WW1 time, The emperor of Austria/Hungarian. WW1 started with the assassination of the Austrian heir Franz Ferdinand. That started WW1. - -Here Tybur is trying to get all other countries to join their Coalition against Paradise, basically then starting World war 1 in the attack on titan universe.";False;False;;;;1610327323;;False;{};gitmdlc;False;t3_kujurp;False;False;t1_gitlv7c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitmdlc/;1610372320;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Mockingbirdguy;;;[];;;;text;t2_6096n672;False;False;[];;The World: Wait, all because we “declare war” doesn’t mean we “declare war” right now;False;False;;;;1610327325;;False;{};gitmdpo;False;t3_kujurp;False;True;t1_gisboc1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitmdpo/;1610372322;1;True;False;anime;t5_2qh22;;0;[]; -[];;;johnnyblack15;;;[];;;;text;t2_f68z2dk;False;False;[];;I can see your point, but I think that Marley is simply seeing the consequences of their actions at this point. While the average citizen of Marley didn't actively victimize the Eldians, they still benefitted from the slaughter of thousands of people. So in my mind, even the civilians of Marley are guilty to some degree.;False;False;;;;1610327375;;False;{};gitmh7z;False;t3_kujurp;False;True;t1_gitkfhe;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitmh7z/;1610372383;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lots_of_Regret;;;[];;;;text;t2_oj83zr9;False;False;[];;We are here;False;False;;;;1610327393;;False;{};gitmiio;False;t3_kujurp;False;False;t1_gitm3vc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitmiio/;1610372406;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LeXxleloxx;;;[];;;;text;t2_14m50a;False;False;[];;Proceeds to transform into a 15m titan inside a building with reiner and falco just by his side anyways, plot armored titan probably still survived.;False;False;;;;1610327398;;False;{};gitmitc;False;t3_kujurp;False;False;t1_giscjc4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitmitc/;1610372411;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bonsayii;;;[];;;;text;t2_6aacawbq;False;False;[];;When I heard ət'æk 0N tάɪtn while Willy Tybur was speaking, I got so hyped.;False;False;;;;1610327410;;False;{};gitmjnn;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitmjnn/;1610372427;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ripamon;;;[];;;;text;t2_fy0p4;False;True;[];;It will cross it, and with this small vote of mine, I will see it happen;False;False;;;;1610327428;;False;{};gitmkxq;False;t3_kujurp;False;False;t1_gisyc0t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitmkxq/;1610372450;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Dredgen-7;;;[];;;;text;t2_40ho5fak;False;False;[];;This episode was surely worth the hype. Holy shit;False;False;;;;1610327461;;False;{};gitmn8v;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitmn8v/;1610372492;3;True;False;anime;t5_2qh22;;0;[]; -[];;;shadyhades;;;[];;;;text;t2_8z6rl;False;False;[];;Holy fuck, they couldn't have executed it any better than this. I knew what was coming but I have CHILLS an hour later still.;False;False;;;;1610327475;;False;{};gitmo6j;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitmo6j/;1610372510;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Zain69;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Darthvader32;light;text;t2_lbl42ga;False;False;[];;they have a concentration camp, what makes you think they are gonna go thru a diplomacy route against the same people;False;False;;;;1610327476;;False;{};gitmo7u;False;t3_kujurp;False;True;t1_gith4uv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitmo7u/;1610372511;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PostLuisM;;;[];;;;text;t2_nyddxkl;False;False;[];;History right here, the true classic of our Era.;False;False;;;;1610327506;;False;{};gitmqau;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitmqau/;1610372550;9;True;False;anime;t5_2qh22;;0;[]; -[];;;IrahX;;;[];;;;text;t2_14aia61r;False;False;[];;Poor Willy thought his swagger was the reason for the boss music, until he got a grim reminder.;False;False;;;;1610327534;;False;{};gitms7g;False;t3_kujurp;False;False;t1_gitlzmz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitms7g/;1610372584;4;True;False;anime;t5_2qh22;;0;[]; -[];;;VerbNounPair;;;[];;;;text;t2_171d3240;False;False;[];;I'm guessing it's just something the manga skipped over or maybe something not mentioned yet that isn't a big spoiler;False;False;;;;1610327539;;False;{};gitmskv;False;t3_kujurp;False;False;t1_gitm1ee;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitmskv/;1610372591;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Golden_Phi;;MAL;[];;http://myanimelist.net/animelist/GoldenPhi;dark;text;t2_imrcw;False;False;[];;">Actually the reason he told Falco to stay was because he knows he is safer with Reiner who can protect them with titan form than he is out on the street. - -He kept Falco there so that he couldn't run away to alert the Marleyan soldiers. He hadn't realized the severity of the situation yet, but if he had and Eren allowed him to leave he would run for help.";False;False;;;;1610327576;;False;{};gitmuzp;False;t3_kujurp;False;False;t1_git756w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitmuzp/;1610372634;22;True;False;anime;t5_2qh22;;0;[]; -[];;;RouGhBartL;;;[];;;;text;t2_ox0f6;False;False;[];;Seeing this again in anime form... I'm pretty much sure Isayama is going for a Zero Requiem type of ending;False;False;;;;1610327577;;False;{};gitmv1z;False;t3_kujurp;False;True;t1_gisa4f3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitmv1z/;1610372634;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ripamon;;;[];;;;text;t2_fy0p4;False;True;[];;Translators note - keikaku means die;False;False;;;;1610327630;;False;{};gitmysa;False;t3_kujurp;False;False;t1_githqmv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitmysa/;1610372699;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Ripamon;;;[];;;;text;t2_fy0p4;False;True;[];;Maybe the real founding Titan was the friends we made along the way;False;False;;;;1610327670;;False;{};gitn1fs;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitn1fs/;1610372756;10;True;False;anime;t5_2qh22;;0;[]; -[];;;ZPleasure;;;[];;;;text;t2_4nujxyi8;False;False;[];;I guess we’ll just have to see. There’s a first time for everything;False;False;;;;1610327684;;False;{};gitn2fj;False;t3_kujurp;False;False;t1_gitd1zv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitn2fj/;1610372773;19;True;False;anime;t5_2qh22;;0;[]; -[];;;alvinchimp;;MAL;[];;https://myanimelist.net/profile/Gaming_Powerz;dark;text;t2_hqtl9;False;False;[];;It was cut from the anime. It should have been told at the end of season 3. There are quite a few details cut in the anime.;False;False;;;;1610327715;;False;{};gitn4k6;False;t3_kujurp;False;False;t1_gitm1ee;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitn4k6/;1610372814;4;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;"That's what Eren was explaining to Reiner. How the turntables... - -In the beginning Reiner attacked Shiganshina which led to thousands of people including Eren's mum getting killed in front of him. He now understands Reiner did it because he believed he was saving the world from the plight of the Titans and he was fighting for the good people. Reiner attacked because he believed he was on the right side and if he didn't attack first, then the Titans on Paradis would destroy the whole world (once again!). So back then in Reiner's eyes, he was doing the right thing even it caused the death of thousands of innocent Paradisians. - -Now Eren is about to launch an attack on Marley. He waits and lets Reiner hear all of Willy's speech first. Now Eren is on the other side of the wall. He is fighting for the Paradisians who're about to be attacked by the full force of Marley. He is attacking because if he doesn't attack now and the the war to Marley, then the Marlians would be coming over to Paradis any time and kill everyone there. It's just like when Reiner first attacked Paradis. Now Eren is about to attack Marley. Tables turned. - -Eren however waits till Willy has declared the declaration of war on Paradis. Once he hears the declaration of war, he transforms into his Titan form and begins the attack just like Reiner attacked Shiganshima 5 years ago. - -Also when I first saw the title for the episode ""Declaration of War"", being anime only, I believed it alluded to Eren declaring war on Marley. Especially considering how Marley has just succeeded in defeating it's enemies and doesn't have to fight any of it's neighbours anymore. So it was a bit of a surprise to realise the title referred to Marley declaring war on Paradis and thus Eren's actions in response to that declaration.";False;False;;;;1610327742;;False;{};gitn6cg;False;t3_kujurp;False;False;t1_gisvimi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitn6cg/;1610372845;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MithrilEcho;;;[];;;;text;t2_zyn38;False;False;[];;I think I replayed that moment more than 5 times. Incredible.;False;False;;;;1610327746;;False;{};gitn6mk;False;t3_kujurp;False;False;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitn6mk/;1610372850;1;True;False;anime;t5_2qh22;;0;[]; -[];;;clorox_baratheon;;;[];;;;text;t2_3wrqfvbb;False;False;[];;uh, committing acts of terror is good...?;False;False;;;;1610327761;;False;{};gitn7mr;False;t3_kujurp;False;True;t1_gisitx4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitn7mr/;1610372868;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MithrilEcho;;;[];;;;text;t2_zyn38;False;False;[];;"""No u"" - -What a moment";False;False;;;;1610327767;;False;{};gitn80o;False;t3_kujurp;False;True;t1_gisaayn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitn80o/;1610372875;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeXxleloxx;;;[];;;;text;t2_14m50a;False;False;[];;ISAYAMA SENSEI I LOVE YOU.;False;False;;;;1610327771;;False;{};gitn8au;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitn8au/;1610372880;5;True;False;anime;t5_2qh22;;0;[]; -[];;;TerrainIII;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TerrainIII;light;text;t2_128jjr;False;False;[];;It’s completely broken on mobile, I hate the spoiler tags you have to use in this subreddit for that reason.;False;False;;;;1610327801;;False;{};gitnaa7;False;t3_kujurp;False;False;t1_gisthpt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitnaa7/;1610372917;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TerrainIII;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TerrainIII;light;text;t2_128jjr;False;False;[];;Not an option on mobile sadly.;False;False;;;;1610327816;;False;{};gitnbbw;False;t3_kujurp;False;True;t1_git7hv3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitnbbw/;1610372936;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GGG100;;;[];;;;text;t2_n30n6;False;False;[];;"I just love how Eren initiates his transformation by using his wounded hand to shake hands with Reiner, as if saying that what's about to happen is something that he brought himself and both parties acknowledge that fact. - -This might be one of the greatest stories ever written by mankind.";False;False;;;;1610327819;;False;{};gitnbk8;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitnbk8/;1610372939;17;True;False;anime;t5_2qh22;;0;[]; -[];;;clikplay;;;[];;;;text;t2_db345;False;False;[];;"Of course eren would know that with the time he lived in marley, and Yes even if it hurts the titans, their number is very significantly higher than the amount of anti titan guns. -Even regardless of those things, as shown on the previous eps, the biggest threat to eldia, Marley, doesn't even have those anti titan guns or any ""bleeding edge"" technology (which was one of the reasons that made them want the founder titan so much).";False;False;;;;1610327825;;False;{};gitnbyi;False;t3_kujurp;False;True;t1_githncy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitnbyi/;1610372946;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrSleepyFish;;;[];;;;text;t2_6q0kafsy;False;False;[];;Im super stupid so can someone explain why eren is still gonna attack marley even if he doesnt want to?;False;False;;;;1610327871;;False;{};gitnfqb;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitnfqb/;1610373012;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AsianSquirrel;;;[];;;;text;t2_3vynsrfo;False;False;[];;">We're arguing about whether or not it's justified - -Which is the same whether or not it's correct in this context. Semantics. - ->Whatever word you want to use to describe their level of knowledge is up to you. - -It *matters*. Don't dismiss it. Eren's current decisions do not carry the weight of innocence that Reiner had when he first started his mission. - ->Even though Reiner was young, he still came to some conclusion in order to justify his actions. This is where Eren see's a similarity between them. They are similar in the sense that they are both doing what they believe will better the world, regardless of their age. - -Eren absolutely, positively, does not care about 'bettering the world.' He essentially threw away any consideration of morality so he can move forward with who he is. There are some parallels between Reiner and Eren, but Eren is currently a lot more morally deprived than Reiner ever was because Eren does cares very little about the consequences of his actions. Reiner struggles throughout the story. - ->Nope, it's compltetly justifiable given the situation Eren and Paradis are in. Saying any action is ""always unjustifiable"" is a childish way to look at morality. - -Nope. It's not justifiable at all. Eren's goal this episode was to show Reiner that he can commit the same crimes that Reiner did, and nothing more than that. If you want to go down that route, calling someone childish is in itself a very childish thing to do. Moral gray-ness doesn't always have to exist. Reiner's emotional turmoil is an example of moral gray-ness done right. He commits war crimes as a kid and teenager and now fully understands the weight of his actions. Current Eren is a much less morally complex character that Reiner is, and it won't get better as the final season goes on. - ->True man war in real life doesn't always function the same way as it does in anime. - -It's like fiction often makes a statement on reality! AoT certainly tries to portray the cruelties of war and the cycle of vengeance seen in real life. Moreover, the difference between fiction and reality has no bearing on the discussion on intentionally killing civilians. No doubt, many people in real life present and past would love to intentionally kill civilians in opposing nations as an act of revenge. The difference here is that Eren actually has the agency to do that in the world of AoT. His actions would not be defensible in real life, and it's not defensible in AoT. - -Killing everyone in your way in the name of your nation is the easy thing to do but it's not the correct thing to do. It's even more unjustifiable considering that Eren, with all his powers, can win wars without going down the worst possible route.";False;False;;;;1610327882;;1610329406.0;{};gitngmu;False;t3_kujurp;False;True;t1_gitjs4b;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitngmu/;1610373027;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"I think he is saying that the tybur knew the founding titan cannot do anything hence why didn't they set up a full scale attack with all the titans and the military at Marley's disposal instead of sending just three kids - -A full scale attack would have won Marley the war against Paradis and they wouldn't have lost that many titan shifters - -But tybur chose to withheld that piece of information until now";False;False;;;;1610327892;;False;{};gitnhgy;False;t3_kujurp;False;False;t1_gism2ke;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitnhgy/;1610373042;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Elaego;;;[];;;;text;t2_55zd6hhb;False;False;[];;"""Enabler of a genocidal regime."" According to the Marleyans, that is exactly what every single Paradis Eldian is. It's not as simple as you make it out to be. And saying war crimes are justified because other people did war crimes isn't a good argument.";False;False;;;;1610327939;;False;{};gitnl90;False;t3_kujurp;False;False;t1_gitgp3y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitnl90/;1610373105;2;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;"As the old meme goes ""all according to keikaku.""";False;False;;;;1610327942;;False;{};gitnlhl;False;t3_kujurp;False;False;t1_gisfgrb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitnlhl/;1610373109;3;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;"In the perfect world Eren and Reiner forgive each other, put their hatred behind them, join forces together and destroy all humanity just like the good ol days. Reiner then goes on to marry Christa/Historia as he always dreamed of, Annie becomes human again, Eren finally realises it's okay to marry Mikasa because ""it's not like we're related by blood or anything!"" and the Scouts live out the rest of their days happy like they did when they were still recruits!";False;False;;;;1610327952;;1610328142.0;{};gitnm7t;False;t3_kujurp;False;True;t1_giswmen;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitnm7t/;1610373123;3;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Because Marley is attacking Paradis and if he doesn't attack Paradis will be ruined.;False;False;;;;1610327955;;False;{};gitnmi2;False;t3_kujurp;False;False;t1_gitnfqb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitnmi2/;1610373128;4;True;False;anime;t5_2qh22;;0;[]; -[];;;cantaneer;;;[];;;;text;t2_1ib8wxpm;False;False;[];;if he doesn’t do anything, marley will kill every paradisian. it’s up to him and survey corps;False;False;;;;1610327965;;False;{};gitnna3;False;t3_kujurp;False;False;t1_gitnfqb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitnna3/;1610373141;7;True;False;anime;t5_2qh22;;0;[]; -[];;;RCRDC;;;[];;;;text;t2_vrwyr;False;True;[];;Holy shit, we haven't even had any fights yet this season and I'm already speechless. Amazing episode, can't wait too see what happens next.;False;False;;;;1610327978;;False;{};gitno86;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitno86/;1610373159;9;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;Hey, he's a DIFFERENT Eldian though. Not like those other Eldians.;False;False;;;;1610327984;;False;{};gitnoq0;False;t3_kujurp;False;False;t1_git36ag;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitnoq0/;1610373168;25;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;Marley couldn't risk a full scale attack because that would leave them vulnerable to attacks from other countries. As we saw when the Middle East attacked them as soon as they heard Marley lost 2 of its Titans.;False;False;;;;1610327991;;False;{};gitnp7d;False;t3_kujurp;False;False;t1_gitnhgy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitnp7d/;1610373177;10;True;False;anime;t5_2qh22;;0;[]; -[];;;jussnf;;;[];;;;text;t2_6z5ws;False;False;[];;"Holy shit. Elevating Bakuman to the top of my to-watch; would not have expected this based on its premise.";False;False;;;;1610327997;;False;{};gitnpmx;False;t3_kujurp;False;True;t1_gitjvji;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitnpmx/;1610373184;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrSleepyFish;;;[];;;;text;t2_6q0kafsy;False;False;[];;Ah. Forgot about that.;False;False;;;;1610328013;;False;{};gitnqre;False;t3_kujurp;False;False;t1_gitnna3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitnqre/;1610373206;4;True;False;anime;t5_2qh22;;0;[]; -[];;;cemanresu;;;[];;;;text;t2_s5dwy;False;False;[];;ITS A LEGITIMATE STRATEGY;False;False;;;;1610328034;;False;{};gitnsb9;False;t3_kujurp;False;False;t1_gisbgr0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitnsb9/;1610373233;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ZenTheCrusader;;;[];;;;text;t2_474yznde;False;False;[];;._.;False;False;;;;1610328050;;False;{};gitntdi;False;t3_kujurp;False;True;t1_gisak3a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitntdi/;1610373252;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sauike01;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sayukeroa;light;text;t2_1xl2a99x;False;False;[];;the guy's a pacifist;False;False;;;;1610328056;;False;{};gitntvs;False;t3_kujurp;False;False;t1_gitkzq3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitntvs/;1610373259;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HannahRoughDiamond;;;[];;;;text;t2_25gpiwka;False;False;[];;"Psycho Killer - -*Qu'est-ce que c'est*";False;False;;;;1610328060;;False;{};gitnu3h;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitnu3h/;1610373264;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Meapcuteee;;;[];;;;text;t2_1wlio7dc;False;False;[];;I wonder are they different than Armin's titan or just that Armin can transform while they stay the same;False;False;;;;1610328070;;False;{};gitnut1;False;t3_kujurp;False;False;t1_gisuhmp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitnut1/;1610373276;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Ugowy;;;[];;;;text;t2_55pt997e;False;False;[];;Why in the world would he want attack Marley? But does he have another choice? The world just declared war on them...;False;False;;;;1610328093;;False;{};gitnwfo;False;t3_kujurp;False;False;t1_gitnfqb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitnwfo/;1610373303;15;True;False;anime;t5_2qh22;;0;[]; -[];;;LorenzoApophis;;;[];;;;text;t2_2cbj4o9v;False;False;[];;I feel like the anime is completely butchering Pieck;False;True;;comment score below threshold;;1610328109;;False;{};gitnxkp;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitnxkp/;1610373324;-16;True;False;anime;t5_2qh22;;0;[]; -[];;;Link1112;;;[];;;;text;t2_2mt5pfx;False;False;[];;Zeke gotta teach you his secret eldian butt wiping technique then;False;False;;;;1610328119;;False;{};gitny91;False;t3_kujurp;False;False;t1_gisnnv9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitny91/;1610373336;9;True;False;anime;t5_2qh22;;0;[]; -[];;;dankniss;;;[];;;;text;t2_mhcth;False;False;[];;Do you recall what specific chapter? I'd love to read through it as a manga too.;False;False;;;;1610328149;;False;{};gito0ff;False;t3_kujurp;False;False;t1_gisi8hu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gito0ff/;1610373372;4;True;False;anime;t5_2qh22;;0;[]; -[];;;galileotheweirdo;;MAL;[];;myanimelist.net/animelist/galileotheweirdo;dark;text;t2_gwyf6;False;False;[];;Did not catch that but with the angling, it looks entirely intentional! Sharp eye!;False;False;;;;1610328155;;False;{};gito0ub;False;t3_kujurp;False;True;t1_gismf1p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gito0ub/;1610373379;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ChiggaOG;;;[];;;;text;t2_3hcondt;False;True;[];;I'm been waiting for this part from the manga to be animated. Everything going forward will be a rollercoaster. Eren killing Willy Tybur solidifies his resolve to destroy his enemies even if they are innocent.;False;False;;;;1610328172;;False;{};gito1xl;False;t3_kujurp;False;True;t1_gitn7mr;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gito1xl/;1610373399;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rabidsi;;;[];;;;text;t2_4qd76;False;False;[];;"First blood- Double ki- Multi k- Ultr- M-M-M-M-M-MONSTER KILL!- GODLIKE! - -[Reiner]'s killing spree was ended by [Eren]";False;False;;;;1610328182;;False;{};gito2kz;False;t3_kujurp;False;False;t1_gise5ad;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gito2kz/;1610373411;20;True;False;anime;t5_2qh22;;0;[]; -[];;;ProfeBob;;;[];;;;text;t2_15fr36;False;False;[];;Even as a manda reader, I had goosebumps all the god damn episode.;False;False;;;;1610328186;;False;{};gito2wh;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gito2wh/;1610373416;4;True;False;anime;t5_2qh22;;0;[]; -[];;;clikplay;;;[];;;;text;t2_db345;False;False;[];;"No it wouldn't. -I literally said in my comment I didn't expect him to be a saint, but most civilian casualties showcased were preventable. - -Of course they are, it's not their fault and eren knows that. - -I know for a fact that if eldia's focus was to defend themselves from marley they woudl be able to do so especialy with the founder";False;False;;;;1610328226;;1610329779.0;{};gito5sq;False;t3_kujurp;False;True;t1_gitk1sg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gito5sq/;1610373467;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;So once Eren kills Reiner's mom, they'll be even and can go back to being friends once again right...?!;False;False;;;;1610328233;;False;{};gito6az;False;t3_kujurp;False;True;t1_gisn8ln;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gito6az/;1610373476;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jussnf;;;[];;;;text;t2_6z5ws;False;False;[];;sasuga manga no readers-chan!!!;False;False;;;;1610328233;;False;{};gito6bc;False;t3_kujurp;False;False;t1_gisvsc5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gito6bc/;1610373476;5;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Yeah, that transformation scene was done perfectly especially the ost. I really loved the scene where Eren shakes his hand with Reiner and then transforms.;False;False;;;;1610328238;;False;{};gito6qg;False;t3_kujurp;False;False;t1_gitlst6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gito6qg/;1610373483;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Kureimi;;;[];;;;text;t2_13l673;False;False;[];;This is so good idk what people are complaining about just because of some ost 🤔;False;False;;;;1610328256;;False;{};gito887;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gito887/;1610373509;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BelizariuszS;;;[];;;;text;t2_1dicu0i;False;False;[];;"Ok so, serious talk - why would Willy declare war on, as he himself said, the most dangerous nation in the world? Im preety sure some kind of diplomacy was possible (or at least they should think it was) - they shouldve send the emissaries or anything. Marley is way too trigger happy and power hungry but whats up with Willy himself? He knew the whole history and he knew that Fritz actually saved Marley yet no attempt to reason with Eldia is made. Is it cus ""I hate my blood and want to see eldian exterminated?"" - -Even with whole world United they stand no chance against all of the collosalls and he knew that. So why????";False;False;;;;1610328263;;False;{};gito8uu;False;t3_kujurp;False;False;t1_giscr8m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gito8uu/;1610373520;13;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;You thought I was Kruger all along, but it was me Eren!!!;False;False;;;;1610328285;;False;{};gitoan9;False;t3_kujurp;False;False;t1_gistegk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitoan9/;1610373549;5;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;I see what you are saying, that doesn't seem like frames were skipped, it seems like someone edit out a portion of that part. I didn't even notice, you have good eyes.;False;False;;;;1610328310;;False;{};gitocq4;False;t3_kujurp;False;True;t1_gitlzpy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitocq4/;1610373586;2;True;False;anime;t5_2qh22;;0;[]; -[];;;buttcheeksontoast;;;[];;;;text;t2_k8bd2;False;False;[];;"AOT season 1 has like infinite rewatch potential. There are so many small hints and details that take on huge meaning when you know what they mean. - -Even silly shit like steam coming off Eren's head after he injures it in training - that's no anime effect steam. THATS HIM HEALING BECAUSE HE'S A SHIFTER.";False;False;;;;1610328313;;False;{};gitoczv;False;t3_kujurp;False;False;t1_gisy9a0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitoczv/;1610373591;6;True;False;anime;t5_2qh22;;0;[]; -[];;;jephersyn;;;[];;;;text;t2_vrc8f5o;False;False;[];;Thanks Mappa. Absolutely nailed it. Goosebumps throughout;False;False;;;;1610328316;;False;{};gitod8c;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitod8c/;1610373595;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RCRDC;;;[];;;;text;t2_vrwyr;False;True;[];;Me who loves both shows: *confused screaming*;False;False;;;;1610328347;;False;{};gitofnb;False;t3_kujurp;False;False;t1_gisdt4n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitofnb/;1610373655;12;True;False;anime;t5_2qh22;;0;[]; -[];;;cortez0498;;MAL;[];;http://myanimelist.net/animelist/cortez1098;dark;text;t2_snun8;False;False;[];;I suppose you mean greatest episode of AOT **so far**, but which episode would you rate higher?;False;False;;;;1610328373;;False;{};gitohjp;False;t3_kujurp;False;True;t1_gisanh2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitohjp/;1610373692;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Papidoru;;;[];;;;text;t2_12qhez;False;False;[];;"why the "" "" ??, he is THE BAD GUY";False;True;;comment score below threshold;;1610328374;;False;{};gitohkf;False;t3_kujurp;False;True;t1_gisxncj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitohkf/;1610373692;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;??????????;False;False;;;;1610328388;;False;{};gitoiob;False;t3_kujurp;False;False;t1_gitnxkp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitoiob/;1610373713;6;True;False;anime;t5_2qh22;;0;[]; -[];;;TheNosferatu;;;[];;;;text;t2_626ua;False;False;[];;Angry Eren was dangerous, Calm Eren is fucking scary;False;False;;;;1610328416;;False;{};gitokvi;False;t3_kujurp;False;False;t1_gisai6n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitokvi/;1610373754;14;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;It's not just Marley. The whole world will team up to wipe out Paradis;False;False;;;;1610328432;;False;{};gitolzc;False;t3_kujurp;False;True;t1_gitnqre;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitolzc/;1610373775;3;True;False;anime;t5_2qh22;;0;[]; -[];;;alisonburgersm8;;;[];;;;text;t2_12a017;False;False;[];;It's always been like this for AOT lol, whether it's reddit or discord or twitter;False;False;;;;1610328435;;False;{};gitom6z;False;t3_kujurp;False;False;t1_git5p2x;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitom6z/;1610373778;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TerrainIII;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TerrainIII;light;text;t2_128jjr;False;False;[];;*Say wuh again, I dare you!*;False;False;;;;1610328437;;False;{};gitombq;False;t3_kujurp;False;False;t1_gisveiv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitombq/;1610373780;5;True;False;anime;t5_2qh22;;0;[]; -[];;;BringTheNipple;;;[];;;;text;t2_t8676;False;False;[];;"I love love love how many different parallels are being drawn between the people in the walls and outside the walls. The entire episode (and this arc tbh) was all about that of course - how Eren and Reiner are the same, how the people are the same, how their situations are the same, how they are afraid of the same thing. The most crazy thing to me is how in previous seasons we found out how the walls were made and the main cast were afraid of the titans in the walls marching in over them... fast forward a couple years and the whole world is afraid of those things marching out of walls over it. I am in awe. - -Reiner's also become one of my favourite characters, because his story is actually amazing. He is literally like a real world war veteran who has survived hell in anime form. We've been calling him the plot armour titan for some time but that is underselling the best part of his character. He is nothing special - the only thing he needs in order for the story to work out is to be willing to go through hell. Any other person in his shoes would end in the same situation. AoT is about war and in war you always have people who have seen and been through too much. Reiner Braun just happened to be one of those people. He is the plot armour titan for a good reason - he has to be, because he is the one to survive, to remember and to be completely broken, of course he needs luck(aka plot armour) to go through all of that. It doesn't feel like he survived because he is part of the main cast, it's more like he is the one who will survive all that shit and get completely fucked mentally and that will make him part of the main cast of characters. - -That's amazing to me. I have no idea if Isayama planned it all out right from the beginning, but it's as if he had written the story of Reiner before designing Reiner the character himself.";False;False;;;;1610328444;;False;{};gitomu0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitomu0/;1610373790;9;True;False;anime;t5_2qh22;;0;[]; -[];;;yolo_swag_for_satan;;;[];;;;text;t2_2aloc4yu;False;False;[];;Yeah, to be honest, I'm not even sure how I'm going to be able to put up with this show. There's just something really gross about people trying to excuse Eren's behavior. It's completely unnecessary too. You can understand a person's reasons for doing something without pretending it's somehow justified.;False;False;;;;1610328453;;False;{};gitonjf;False;t3_kujurp;False;True;t1_gitngmu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitonjf/;1610373803;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChiggaOG;;;[];;;;text;t2_3hcondt;False;True;[];;Goes ham and completely kill Willy Tybur in this episode.;False;False;;;;1610328463;;False;{};gitoo96;False;t3_kujurp;False;False;t1_gism1mw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitoo96/;1610373815;38;True;False;anime;t5_2qh22;;0;[]; -[];;;-Sorrow-;;;[];;;;text;t2_aijiy;False;False;[];;what happens if one of the holders die without passing the titan to another holder?;False;False;;;;1610328464;;1610328686.0;{};gitooa4;False;t3_kujurp;False;True;t1_gismb1y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitooa4/;1610373816;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vegetable_offender;;;[];;;;text;t2_5webg;False;False;[];;Nearly 15k votes and over 3.5k comments in six hours is insane, but also completely understandable lol I love this show;False;False;;;;1610328470;;False;{};gitoopf;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitoopf/;1610373822;19;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;Yeah, that was an interesting detail. Marleans and Eldians can be friends it seems.;False;False;;;;1610328473;;False;{};gitoox3;False;t3_kujurp;False;False;t1_giswl35;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitoox3/;1610373827;8;True;False;anime;t5_2qh22;;0;[]; -[];;;rjn_clrnc;;;[];;;;text;t2_3ijnakeu;False;False;[];;"> had grown up for years in the walls and saw how everything he was ever thought is a lie, and how all of these people in the walls, and his people outside the walls are living because of his own devil of a country, then still continued everything as planned. - -This is exactly what Eren did. He stayed in Marley for a long time, mingled with the people there. He saw the good and the bad but he still went on with his planned.";False;False;;;;1610328503;;False;{};gitor1y;False;t3_kujurp;False;False;t1_git5zf1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitor1y/;1610373865;10;True;False;anime;t5_2qh22;;0;[]; -[];;;GlassesFreekJr;;;[];;;;text;t2_51mnzs;False;False;[];;Exactly!;False;False;;;;1610328515;;False;{};gitoryo;False;t3_kujurp;False;True;t1_gitg3q1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitoryo/;1610373881;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bakuhatsuda;;;[];;;;text;t2_kaggg;False;False;[];;Very strange to see complaints about the OST usage. People expect the director to be on the same wavelength as them when it comes these things? This is their work, and the choice of which tracks should play in which scene is subjective.;False;False;;;;1610328525;;False;{};gitosr0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitosr0/;1610373896;20;True;False;anime;t5_2qh22;;0;[]; -[];;;yolo_swag_for_satan;;;[];;;;text;t2_2aloc4yu;False;False;[];;The author basically just turned him into the fantasy equivalent of a school shooter. Not seeing the nuance in that.;False;True;;comment score below threshold;;1610328543;;False;{};gitou7f;False;t3_kujurp;False;True;t1_gitbs37;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitou7f/;1610373923;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;PikaBooSquirrel;;;[];;;;text;t2_rskr4m0;False;False;[];;I would argue that he had a very juvenile, shounen-like mindset, but in a very seinen setting.;False;False;;;;1610328560;;False;{};gitovk1;False;t3_kujurp;False;True;t1_gisy8vo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitovk1/;1610373948;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;"""First I will break you and when Marley has been turned to ashes...then you'll have my permission to die"".";False;False;;;;1610328593;;False;{};gitoyb9;False;t3_kujurp;False;False;t1_giseics;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitoyb9/;1610374000;6;True;False;anime;t5_2qh22;;0;[]; -[];;;TerrainIII;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TerrainIII;light;text;t2_128jjr;False;False;[];;Same. I kept flipping between Willy was gonna declare war on Paradis island or he was declaring war on Marley.;False;False;;;;1610328609;;False;{};gitozkj;False;t3_kujurp;False;False;t1_gitch1n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitozkj/;1610374024;72;True;False;anime;t5_2qh22;;0;[]; -[];;;TheNosferatu;;;[];;;;text;t2_626ua;False;False;[];;Don't forget Willy's speech;False;False;;;;1610328611;;False;{};gitozq9;False;t3_kujurp;False;True;t1_gisaihm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitozq9/;1610374026;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ChiggaOG;;;[];;;;text;t2_3hcondt;False;True;[];;Eren gonna go on a genocide now?;False;False;;;;1610328615;;False;{};gitp04n;False;t3_kujurp;False;False;t1_gisvvws;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitp04n/;1610374033;29;True;False;anime;t5_2qh22;;0;[]; -[];;;exian12;;;[];;;;text;t2_scqg8;False;False;[];;"I remember back on season 1-2 that I hated Eren's childish whiny character. Season 3 changed it and today's episode solidifies it. - -Edit: It wasn't S1-3 because we have damn parts 1 and 2. gdi";False;False;;;;1610328636;;1610329051.0;{};gitp1qd;False;t3_kujurp;False;False;t1_gisrcy6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitp1qd/;1610374060;7;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Don't care about them, if you have enjoyed the episode then MAPPA has done a great job. I for one really enjoyed this episode and that Attack Titan looked phenomenal much better than the previous seasons.;False;False;;;;1610328646;;False;{};gitp2h7;False;t3_kujurp;False;False;t1_gitosr0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitp2h7/;1610374074;4;True;False;anime;t5_2qh22;;0;[]; -[];;;angramenyu;;;[];;;;text;t2_fvlydzd;False;False;[];;Rock-Kun smashing someone's face;False;False;;;;1610328650;;False;{};gitp2t0;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitp2t0/;1610374079;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sharmarahulkohli;;;[];;;;text;t2_12gbee;False;False;[];;Ch 99 and 100;False;False;;;;1610328671;;False;{};gitp4ey;False;t3_kujurp;False;True;t1_gito0ff;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitp4ey/;1610374108;3;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;Back then he broke Reiner's body, now he broke Reiner's spirit and his mind!;False;False;;;;1610328674;;False;{};gitp4nj;False;t3_kujurp;False;False;t1_gisise0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitp4nj/;1610374112;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Chukonoku;;;[];;;;text;t2_85br9;False;False;[];;"I'm talking about the discrepancy between young and older Eren. - -Young one would had attack due to a sentiment of revenge, which is what Reiner is talking about. Current Eren rationalizes (for better or worst) that there are good and bad people on both sides, but since the other sides doesn't consider them humans (more like ""aliens""/a different race), which in some way or another they are right (humans don't magically turn into giants), there's little margin of coexistence (he just corroborated how their race is been treated outside of the island). - -I don't think it's a cycle of hatred. It's a cycle of fear.";False;False;;;;1610328697;;False;{};gitp6fe;False;t3_kujurp;False;False;t1_gitejuk;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitp6fe/;1610374144;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;He got bigger fish to fry!;False;False;;;;1610328720;;False;{};gitp86l;False;t3_kujurp;False;True;t1_gisgk85;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitp86l/;1610374177;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nicowiwi;;;[];;;;text;t2_23pc8ld;False;False;[];;So, about the speech and everything that came before the declaration of war, are we believing all of that? I was expecting a lot of lies weaved in the narrative Willy showed, but didn't find any on my first watch. Absolutely gonna rewatch though.;False;False;;;;1610328740;;False;{};gitp9py;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitp9py/;1610374204;3;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;Explain you can't leave us hanging with such comment.;False;False;;;;1610328745;;False;{};gitpa2i;False;t3_kujurp;False;False;t1_gitnxkp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitpa2i/;1610374210;9;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Not to mention that this discussion page was released two hours ago before the official subs.;False;False;;;;1610328746;;False;{};gitpa52;False;t3_kujurp;False;False;t1_gitoopf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitpa52/;1610374211;7;True;False;anime;t5_2qh22;;0;[]; -[];;;rabidsi;;;[];;;;text;t2_4qd76;False;False;[];;"> (S/N Realistically throwing don’t benefit from longer limbs, humans are better than primates in that regard) - -Not sure where you're getting this from. Theoretically (and in practice with optimal training), it absolutely does. A longer limb can generate more centrifugal force. It is literally the principle that various traditional, handheld sling devices make use of, particularly those for throwing spear or arrow/dart style projectiles like staff slings. They're just artificial arm extensions.";False;False;;;;1610328747;;False;{};gitpa8e;False;t3_kujurp;False;True;t1_gism93w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitpa8e/;1610374213;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Valance23322;;;[];;;;text;t2_f7v6y;False;False;[];;Anime only, but I'm pretty sure that Willy is the Warhammer Titan. That would explain why Eren was trying to eat him rather than just smash him, why he was the one talking about the memories that have been passed down along with the titan, and why his character was given so much focus last episode (doesn't necessarily make sense if he's going to die right here and they're going to have to introduce an entirely new character to be the warhammer titan right after);False;False;;;;1610328750;;False;{};gitpahm;False;t3_kujurp;False;False;t1_git9o83;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitpahm/;1610374218;12;True;False;anime;t5_2qh22;;0;[]; -[];;;LinkPwnzAll;;;[];;;;text;t2_l6hjc;False;False;[];;Copied straight from the manga chapter thread lmfao;False;False;;;;1610328764;;False;{};gitpbge;False;t3_kujurp;False;True;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitpbge/;1610374235;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TerrainIII;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TerrainIII;light;text;t2_128jjr;False;False;[];;*Daddy Daddy do*;False;False;;;;1610328771;;False;{};gitpc07;False;t3_kujurp;False;False;t1_git8gdq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitpc07/;1610374245;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuyou_lilienthal_yu;;;[];;;;text;t2_74nij6hu;False;False;[];;Power move;False;False;;;;1610328794;;False;{};gitpdlk;False;t3_kujurp;False;False;t1_giskjzs;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitpdlk/;1610374275;10;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;Just look at his eyes!;False;False;;;;1610328803;;False;{};gitpe7g;False;t3_kujurp;False;False;t1_gisioq1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitpe7g/;1610374288;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JozifBadmon47;;;[];;;;text;t2_98xxdb6u;False;False;[];;AOT is goated!;False;False;;;;1610328803;;False;{};gitpe8w;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitpe8w/;1610374288;10;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;Willy Tybur in a nutshell;False;False;;;;1610328853;;False;{};gitphtz;False;t3_kujurp;False;False;t1_git8ynt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitphtz/;1610374356;9;True;False;anime;t5_2qh22;;0;[]; -[];;;yolo_swag_for_satan;;;[];;;;text;t2_2aloc4yu;False;False;[];;"Because of false equivalence and sociopathic insanity, I guess. Eren is trying to say that they're alike because they both spent time within a land they attacked. - -However, Reiner was 10 and brainwashed when he started his mission and regrets what he did. - -Eren is a grown ass man with multiple lifetimes of knowledge to draw from, who spent time befriending people that he's now going to wipe out. He could definitely come up with a superior solution but he's gonna blow up civilians instead.";False;False;;;;1610328888;;False;{};gitpkaz;False;t3_kujurp;False;True;t1_gispjjt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitpkaz/;1610374401;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Master-Opportunity-3;;;[];;;;text;t2_8qxre8wx;False;False;[];;Imagine what’s running through Reiners mind now. As he listens to the true story of Marley, he learns the king wasn’t a threat . All his actions and sacrifices was for nothing. In fact all he did was create Eren, the real threat.;False;False;;;;1610328891;;1610331861.0;{};gitpkk8;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitpkk8/;1610374406;13;True;False;anime;t5_2qh22;;0;[]; -[];;;TarkanV;;;[];;;;text;t2_vypp8k7;False;False;[];;Lmao, I would've definitely given a reward to that comment :v;False;False;;;;1610328900;;False;{};gitpl7m;False;t3_kujurp;False;False;t1_gislt2i;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitpl7m/;1610374417;7;True;False;anime;t5_2qh22;;0;[]; -[];;;GreenLM;;;[];;;;text;t2_wm4h7;False;False;[];;Besides all the dead civilians, yes, you could say it was a regular act of war.;False;False;;;;1610328900;;False;{};gitpl7p;False;t3_kujurp;False;True;t1_gititi6;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitpl7p/;1610374417;3;True;False;anime;t5_2qh22;;0;[]; -[];;;UpperclassmanKuno;;;[];;;;text;t2_la9y6;False;True;[];;These episodes are too damn short.;False;False;;;;1610328930;;False;{};gitpne8;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitpne8/;1610374456;10;True;False;anime;t5_2qh22;;0;[]; -[];;;vyxxer;;;[];;;;text;t2_ymabn;False;False;[];;"Because he was originally basic protagonist mboy out for revenge, he realized his naivety of that and instead of losing faith (again) he does what he's always had to: fight and press forward. His goals has stayed the same as episode one, he's just now has a very twisted and morally wrong idea of how to meet those goals. - -And *how* he got those ideas is endlessly fascinating and kinda hard to dispute logically. Kinda like killmonger from black panther.";False;False;;;;1610328932;;False;{};gitpnhw;False;t3_kujurp;False;False;t1_gitou7f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitpnhw/;1610374458;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;Rewatch the preview, the Warhammer Titan is clearly seen materializing a distance away. I agree that Eren is trying to eat Willy, but as we learned previously the Warhammer Titan’s identity is kept purposely secret so that the Titan cannot be stolen so easily. For all we know the WT is the granny, or one of the snot nosed children. Probably the granny tho, doesn’t seem like the Tyburs know the meaning of self sacrifice.;False;False;;;;1610328987;;False;{};gitpril;False;t3_kujurp;False;False;t1_gitpahm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitpril/;1610374528;11;True;False;anime;t5_2qh22;;0;[]; -[];;;AsianSquirrel;;;[];;;;text;t2_3vynsrfo;False;False;[];;"This is unfortunately the case for any work of fiction trying to give credence to ''all sides"" and insert moral ambiguity into situations where there's frankly very little moral ambiguity to work with. As the season goes on, I hope more people realize that Eren isn't the hero that we should be rooting for. I feel that authors often do in fact present a somewhat clear view of when someone is on the wrong side, but readers inject their own moral compass and misreads a narrative. Isayama is not portraying Eren as a justified hero ever since the time skip. I understand why Eren does the thing he does given what he's been through, but it shouldn't be justified; it would be vilified.";False;False;;;;1610329006;;1610329729.0;{};gitpsyo;False;t3_kujurp;False;False;t1_gitonjf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitpsyo/;1610374553;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Tidezen;;MAL;[];;http://myanimelist.net/profile/Tidezen;dark;text;t2_e8eff;False;False;[];;"I'mma letcha finish, and I'm not gonna bitch at Mappa, but seriously just watch this :) https://streamable.com/4jagln - -I think the official one is pretty good too, though.";False;False;;;;1610329011;;False;{};gitptbj;False;t3_kujurp;False;True;t1_git1w7t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitptbj/;1610374559;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TerrainIII;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TerrainIII;light;text;t2_128jjr;False;False;[];;I thought Erin was gonna forcefully make Reiner transform with some founding Titan power or something.;False;False;;;;1610329012;;False;{};gitptde;False;t3_kujurp;False;True;t1_giswntq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitptde/;1610374560;1;True;False;anime;t5_2qh22;;0;[]; -[];;;buttcheeksontoast;;;[];;;;text;t2_k8bd2;False;False;[];;Try long pressing it and seeing what happens;False;False;;;;1610329018;;False;{};gitptsx;False;t3_kujurp;False;True;t1_gitnbbw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitptsx/;1610374567;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;But Reiner has plot armour where he can transfer his consciousness into his ass just in the nick of time to save himself... It also looked like Reiner leaped to protect Falco so maybe he's okay...;False;False;;;;1610329020;;False;{};gitptyg;False;t3_kujurp;False;False;t1_git8ul7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitptyg/;1610374570;48;True;False;anime;t5_2qh22;;0;[]; -[];;;AnItalianWalrus;;;[];;;;text;t2_yfhcr;False;False;[];;War were declared;False;False;;;;1610329026;;False;{};gitpuev;False;t3_kujurp;False;True;t1_giscr8m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitpuev/;1610374579;2;True;False;anime;t5_2qh22;;0;[]; -[];;;yolo_swag_for_satan;;;[];;;;text;t2_2aloc4yu;False;False;[];;This blood is on Eren's hands because he definitely could have chosen not to transform in the basement of a residential building.;False;False;;;;1610329078;;False;{};gitpy1p;False;t3_kujurp;False;False;t1_git1480;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitpy1p/;1610374643;4;True;False;anime;t5_2qh22;;0;[]; -[];;;InternationalistMach;;;[];;;;text;t2_7fiao6c;False;False;[];;Time skip Eren is such a chad;False;False;;;;1610329099;;False;{};gitpzkd;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitpzkd/;1610374670;15;True;False;anime;t5_2qh22;;0;[]; -[];;;MyName_IsNobody;;;[];;;;text;t2_sejuc;False;False;[];;"Yout would think they were composers with the amount of bitching & moaning they make about the music placement in the show.";False;False;;;;1610329115;;False;{};gitq0qf;False;t3_kujurp;False;True;t1_git749f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitq0qf/;1610374691;2;True;False;anime;t5_2qh22;;0;[]; -[];;;yolo_swag_for_satan;;;[];;;;text;t2_2aloc4yu;False;False;[];;I feel stress for male characters who have to retain their female voice actors into adulthood.;False;False;;;;1610329132;;False;{};gitq1w3;False;t3_kujurp;False;True;t1_gisi2c0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitq1w3/;1610374711;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgamesh107;;;[];;;;text;t2_j1btm7b;False;False;[];;Yea I dont think hes justified at all, the world is cruel and hes chosen who he cares about.;False;False;;;;1610329144;;False;{};gitq2rc;False;t3_kujurp;False;True;t1_gitonjf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitq2rc/;1610374727;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];;Manga fans mostly hahah they had an idea inn their head and it I didn't happen;False;False;;;;1610329179;;False;{};gitq5fc;False;t3_kujurp;False;False;t1_gitosr0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitq5fc/;1610374778;10;True;False;anime;t5_2qh22;;0;[]; -[];;;asscrackrash;;;[];;;;text;t2_9jhv8y1m;False;False;[];;7 hours, 15.0k;False;False;;;;1610329194;;False;{};gitq6iv;False;t3_kujurp;False;True;t1_gitjdt2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitq6iv/;1610374797;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HannibalCake;;;[];;;;text;t2_13gozl;False;False;[];;Maybe the real diplomacy was the friends we made along the way;False;False;;;;1610329196;;False;{};gitq6n6;False;t3_kujurp;False;True;t1_giscr8m;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitq6n6/;1610374799;2;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;Anime artstyle;False;False;;;;1610329198;;False;{};gitq6tm;False;t3_kujurp;False;True;t1_git3p4l;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitq6tm/;1610374801;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bensemus;;;[];;;;text;t2_oxor2;False;False;[];;Plus the kid was there so if Eren transformed the kid would be crushed. Reiner had zero options but to listen.;False;False;;;;1610329206;;False;{};gitq7e6;False;t3_kujurp;False;True;t1_gisklp9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitq7e6/;1610374812;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BADMANvegeta_;;;[];;;;text;t2_13ne3x;False;False;[];;Reiner I’m in ranked match rn just hold that thought I’ll brb;False;False;;;;1610329211;;False;{};gitq7q0;False;t3_kujurp;False;False;t1_gism1mw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitq7q0/;1610374817;19;True;False;anime;t5_2qh22;;0;[]; -[];;;TerrainIII;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TerrainIII;light;text;t2_128jjr;False;False;[];;Nothing happens sadly, just highlights it.;False;False;;;;1610329220;;False;{};gitq8eu;False;t3_kujurp;False;True;t1_gitptsx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitq8eu/;1610374829;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OdinTyr-;;;[];;;;text;t2_3tiioz1b;False;False;[];;"What he says at first is what the entire world thought happened. What he says after is what Kruger tells Grisha near the end of episode 58. Willy says he knows about the actual story because of the War Hammer Titan memories passed down within the family. - -We knew both versions as the audience, but the entire world in the Attack on Titan universe only knew the former story as fact, not the latter. They didn't know that the 145th Eldian King Karl Fritz was bluffing about unleashing the wall titans. They didn't know he wanted ""Eldians to perish as we are meant to"" if Marley ever decided to kill them. They didn't know about the vow renouncing war either. They were basically scared of the Paradisians for a nuclear bomb they were never capable of setting off in the first place because of that vow and only the royals, who are affected by said vow, having the Founding Titan during these 100 years. - -But now, the Founding Titan is in the hands of someone who isn't royal/affected by the vow because of Grisha (who then gave it to Eren), which means all bets are off and Paradis is a threat to them again.";False;False;;;;1610329240;;1610329541.0;{};gitq9r9;False;t3_kujurp;False;False;t1_gitp9py;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitq9r9/;1610374853;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];;Marley just kinda declared a war of extermination on them;False;False;;;;1610329246;;False;{};gitqa7j;False;t3_kujurp;False;False;t1_gitnfqb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqa7j/;1610374861;9;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Time skip Eren is one of the best characters in anime.;False;False;;;;1610329249;;False;{};gitqagv;False;t3_kujurp;False;False;t1_gitpzkd;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqagv/;1610374866;9;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;I gotta join this team.;False;False;;;;1610329257;;False;{};gitqb0q;False;t3_kujurp;False;False;t1_gisc0j3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqb0q/;1610374875;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];;I was here;False;False;;;;1610329278;;False;{};gitqcgp;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqcgp/;1610374904;6;True;False;anime;t5_2qh22;;0;[]; -[];;;cuntstruck--;;;[];;;;text;t2_2zh9tpk5;False;False;[];;all true. as willy said, they're memories passed down in their family from the warhammer titan.;False;False;;;;1610329288;;False;{};gitqd6n;False;t3_kujurp;False;False;t1_gitp9py;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqd6n/;1610374916;5;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;Iraq war?;False;False;;;;1610329293;;False;{};gitqdiv;False;t3_kujurp;False;False;t1_gisvm0w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqdiv/;1610374922;27;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptainPikmin;;;[];;;;text;t2_10w5w9;False;False;[];;"We're at 15k upvotes! [https://cdn.discordapp.com/attachments/476391825590976522/793854102308126730/karma\_track.png](https://cdn.discordapp.com/attachments/476391825590976522/793854102308126730/karma_track.png) - -At around this point Season 4 Episode 1 was less than 13750. Looks like we can safely assume we're breaking the record!";False;False;;;;1610329299;;False;{};gitqdxt;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqdxt/;1610374930;11;True;False;anime;t5_2qh22;;0;[]; -[];;;yolo_swag_for_satan;;;[];;;;text;t2_2aloc4yu;False;False;[];;Fricking seriously. WHY ARE YOU DOING THIS EREHH 😡;False;False;;;;1610329315;;False;{};gitqf6g;False;t3_kujurp;False;True;t1_gisv00z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqf6g/;1610374952;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;"Having watched it for the 6th time, the writing and direction for this show, and particularly this episode, is on another level. - -The fact that an episode with practically no action, made my palms sweaty and heart race is testament to how good this was. There didn't feel like a wasted piece of dialogue and everything felt purposeful. - -Eren almost sounds and looks like a man that's been broken, and has nothing left to live for. Crazy how much of a 180 his character has done in 4 years.";False;False;;;;1610329346;;False;{};gitqhst;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqhst/;1610374997;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiro_Kai;;;[];;;;text;t2_bevm2wi;False;False;[];;###**GODDAMMIT MAPPA**;False;False;;;;1610329346;;False;{};gitqhsy;False;t3_kujurp;False;False;t1_gisrf8w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqhsy/;1610374998;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Gravelord-_Nito;;;[];;;;text;t2_aulvp;False;True;[];;"I had this thought too, she was on the other side of the wall. But I think she also saw them when she did recon on their movements the night before the battle if you remember. Not sure why she would find him so memorable to remember him several years later, and I'm pretty sure their hoods were up, but it couldn't be anyone else from Shiganshina. Maybe she saw him and thought he was hot idk. - -Also you get a brief shot of his large, blue looking eyes and he has a fairly high voice even though colossal titan gave him a puberty boost.";False;False;;;;1610329359;;False;{};gitqixh;False;t3_kujurp;False;False;t1_git7g72;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqixh/;1610375017;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HannibalCake;;;[];;;;text;t2_13gozl;False;False;[];;"The episode was incredible and literally gave me chills by the end of it. - -On another note though just because the episode was good I'll never understand why people donate actual money to these posts. Like guys this is a literal bot you are tossing your money away like Eren tossed Willy after his declaration of war.";False;False;;;;1610329362;;False;{};gitqj7z;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqj7z/;1610375023;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Cabbage_Vendor;;;[];;;;text;t2_6ml00;False;False;[];;Is that Eren growing, or Eren's personality disappearing after the effects of the Founding Titan?;False;False;;;;1610329366;;False;{};gitqjhm;False;t3_kujurp;False;True;t1_gisak3a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqjhm/;1610375027;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ihei47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JuuzouXIII;light;text;t2_3dhujs;False;False;[];;"Almost perfect episode, 4.98/5 - -The build up was amazing! - -Would be perfect 5 if they used different OST - -https://youtu.be/yCpF48bLXbg";False;False;;;;1610329371;;False;{};gitqjwx;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqjwx/;1610375035;10;True;False;anime;t5_2qh22;;0;[]; -[];;;MozartN;;;[];;;;text;t2_370t3g53;False;False;[];;damn 7hrs in and already at 15k upvotes, wouldn't be surprised if this breaks its premier karma count;False;False;;;;1610329374;;False;{};gitqk77;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqk77/;1610375040;27;True;False;anime;t5_2qh22;;0;[]; -[];;;yolo_swag_for_satan;;;[];;;;text;t2_2aloc4yu;False;False;[];;What does that mean?;False;False;;;;1610329375;;False;{};gitqkav;False;t3_kujurp;False;True;t1_gisw5wh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqkav/;1610375042;1;True;False;anime;t5_2qh22;;0;[]; -[];;;stang90;;;[];;;;text;t2_8x3hc;False;False;[];;Because willy appears to legitimately sympathize with the elidians.;False;False;;;;1610329386;;False;{};gitql83;False;t3_kujurp;False;True;t1_gitmo7u;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitql83/;1610375058;1;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;Someone got crushed by debris too.;False;False;;;;1610329404;;False;{};gitqmt1;False;t3_kujurp;False;False;t1_git7ib0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqmt1/;1610375088;23;True;False;anime;t5_2qh22;;0;[]; -[];;;yolo_swag_for_satan;;;[];;;;text;t2_2aloc4yu;False;False;[];;Agreed.;False;False;;;;1610329416;;False;{};gitqnv4;False;t3_kujurp;False;True;t1_gite5ok;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqnv4/;1610375106;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Seriously what kind of idea they had? I really enjoyed this episode and for me, everything about this episode has been done perfectly. Moreover, it deserved all the hype it got and it lived up to the hype.;False;False;;;;1610329421;;False;{};gitqoan;False;t3_kujurp;False;False;t1_gitq5fc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqoan/;1610375114;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Xinyanbestgirl;;;[];;;;text;t2_983nmdwn;False;False;[];;"For the dialogue alone, but only read the pages I mentioned since the anime has not introduced some of the contents from this chapter - -[SPOILER!](/s ""Chapter 100, from page 21 onwards"")";False;False;;;;1610329445;;False;{};gitqq9k;False;t3_kujurp;False;True;t1_gito0ff;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqq9k/;1610375151;2;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;This episode is going to touch 25K for sure.;False;False;;;;1610329485;;False;{};gitqtks;False;t3_kujurp;False;False;t1_gitqk77;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqtks/;1610375215;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;"There are 3 distinctive groups she came in contact with - -The first being Levi when she saved Zeke - -The second being Eren and burnt Armin when Zeke spoke to Eren - -The third was Jean/Connie/Sasha/Mikasa/Hange when she saved Reiner - -It’s unlikely she would know anyone else";False;False;;;;1610329492;;False;{};gitqu5r;False;t3_kujurp;False;False;t1_gitqixh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqu5r/;1610375226;6;True;False;anime;t5_2qh22;;0;[]; -[];;;yaminoidles;;;[];;;;text;t2_64rsavk;False;False;[];;You are correct if you are referring to longer limbs on a human to another human. But I meant in comparison to a primate. Humans evolved specifically to use tools and throw unlike the primates that rely on their nimbleness and strength.;False;False;;;;1610329515;;False;{};gitqw1w;False;t3_kujurp;False;True;t1_gitpa8e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqw1w/;1610375259;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BADMANvegeta_;;;[];;;;text;t2_13ne3x;False;False;[];;“Mid is open go fast plz”;False;False;;;;1610329521;;False;{};gitqwje;False;t3_kujurp;False;False;t1_gisch0n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqwje/;1610375267;1;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;AoT is the digital embodiment of Goku confirmed.;False;False;;;;1610329522;;False;{};gitqwl9;False;t3_kujurp;False;False;t1_gisui2h;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqwl9/;1610375268;6;True;False;anime;t5_2qh22;;0;[]; -[];;;funkerbuster;;;[];;;;text;t2_7mx1p;False;False;[];;Try zooming in on Willy;False;False;;;;1610329528;;False;{};gitqx2w;False;t3_kujurp;False;False;t1_gitip5o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqx2w/;1610375277;6;False;False;anime;t5_2qh22;;0;[]; -[];;;clique34;;;[];;;;text;t2_1nquzdj;False;False;[];;Jesus Christ. That’s a bad man. HYPEDDDDD FOR NEXT EPISODE. First time seeing the war hammerrrr;False;False;;;;1610329555;;False;{};gitqz7b;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqz7b/;1610375316;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Mrtheliger;;;[];;;;text;t2_11ghbg;False;False;[];;Bruh totally forgot, Bystander is a callback to this as well;False;False;;;;1610329565;;False;{};gitqzz5;False;t3_kujurp;False;False;t1_gitljl4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitqzz5/;1610375330;7;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;Yeah, I think so too. Besides, he seems like the only other important character in the region who could be in on Eren's plan.;False;False;;;;1610329589;;False;{};gitr1td;False;t3_kujurp;False;True;t1_gisot5f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitr1td/;1610375363;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;">So Willy was hoping that he could gather the world in an alliance to invade paradis, or bail out a possible offensive by Eldia with the whole world to see, and have the military and the warriors on stand by to stop it. - -And it was clever by revealing the truth about King Fitz and showing the Eldians aren't actually monsters, he can stop the prosecution of Eldians because now he'll be waging a war against the full force of Paradis with it's millions of dormant Titans being led by Eren who's nuts. So in revealing the truth Willy can attempt to get all the different nations held under Marley's rule to unite together to now fight this one common enemy. This way they can all put their past differences aside as fight as one to protect humanity. Marley will no longer be using Eldians as cannon fodder to do fight their wards. This time they're all together fighting as equals because the people they're fighting has the capability to destroy all of humanity many times over as they have done so in the past. If they don't bind together and fight as one, then all of humanity will once again be wiped out. - -It's funny how it parallels with how the Paradisians lived in the fear of humanity being wiped out by the threat of the Titans. Now the rest of the world is going to feel that same fear! - -Eren's attack on Marley even visually had the same parallels as Reiner's attack on Shiganshima. Out of nowhere, a massive Titan breaks through the walls and starts destroying everything! Just like it happened 5 years ago.";False;False;;;;1610329599;;False;{};gitr2lu;False;t3_kujurp;False;False;t1_gitm1mg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitr2lu/;1610375377;15;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Free awards, in Reddit mobile app there's a coin icon on the top right where you can claim the award and give it to whatever post you like.;False;False;;;;1610329604;;False;{};gitr30j;False;t3_kujurp;False;False;t1_gitqj7z;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitr30j/;1610375384;7;True;False;anime;t5_2qh22;;0;[]; -[];;;clique34;;;[];;;;text;t2_1nquzdj;False;False;[];;Oh shit i didn’t even realize it was him that Eren caught mid air LOL.;False;False;;;;1610329613;;False;{};gitr3ol;False;t3_kujurp;False;False;t1_gisa8lc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitr3ol/;1610375396;1;True;False;anime;t5_2qh22;;0;[]; -[];;;diggadog;;;[];;;;text;t2_112qfk;False;False;[];;Eren also said it;False;False;;;;1610329616;;False;{};gitr3u1;False;t3_kujurp;False;False;t1_gisst1c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitr3u1/;1610375399;4;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptainPikmin;;;[];;;;text;t2_10w5w9;False;False;[];;I'll go a bit lower. 21k to 22k is my estimate.;False;False;;;;1610329620;;False;{};gitr43t;False;t3_kujurp;False;False;t1_gitqtks;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitr43t/;1610375404;17;True;False;anime;t5_2qh22;;0;[]; -[];;;BADMANvegeta_;;;[];;;;text;t2_13ne3x;False;False;[];;It took years to get there but this rather slow anime is having one the biggest payoffs in the end. Everything tying to get burn so nicely.;False;False;;;;1610329624;;False;{};gitr4f8;False;t3_kujurp;False;True;t1_gisbfkv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitr4f8/;1610375409;3;True;False;anime;t5_2qh22;;0;[]; -[];;;yolo_swag_for_satan;;;[];;;;text;t2_2aloc4yu;False;False;[];;Wow, ya think?;False;False;;;;1610329626;;False;{};gitr4j9;False;t3_kujurp;False;True;t1_git4dc5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitr4j9/;1610375411;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Raggabrashgroke;;;[];;;;text;t2_2sn1utm2;False;False;[];;"The embodiment of ""throw first dude""";False;False;;;;1610329650;;False;{};gitr66f;False;t3_kujurp;False;True;t1_gisxvyi;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitr66f/;1610375442;1;True;False;anime;t5_2qh22;;0;[]; -[];;;funkerbuster;;;[];;;;text;t2_7mx1p;False;False;[];;Pain was never the trigger, it was always a bleeding wound and an intention to transform.;False;False;;;;1610329680;;False;{};gitr8e6;False;t3_kujurp;False;True;t1_gitkpsz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitr8e6/;1610375485;3;False;False;anime;t5_2qh22;;0;[]; -[];;;2hopp;;;[];;;;text;t2_sxxmr;False;False;[];;Hopefully in years to come the show wont be labeled 'overrated' by new anime watchers because its popular like some other anime greats.;False;False;;;;1610329701;;False;{};gitr9xe;False;t3_kujurp;False;False;t1_giskeg7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitr9xe/;1610375512;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Valance23322;;;[];;;;text;t2_f7v6y;False;False;[];;Pretty sure that he was waiting to make sure that was what Tybur was going to do. I don't think he knew 100% whether Tybur was going to advocate for making peace with Paradis or declaring war, Eren might not have attacked if not for the war declaration.;False;False;;;;1610329735;;False;{};gitrcq0;False;t3_kujurp;False;False;t1_gitgjs3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitrcq0/;1610375562;61;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Let's say it gets around 1k upvotes per hour for the next 5 hours then we'll reach 20K, after that we would have 36 hours before the count gets closed and 5k is pretty reasonable in those 36 hours.;False;False;;;;1610329743;;False;{};gitrdez;False;t3_kujurp;False;False;t1_gitr43t;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitrdez/;1610375574;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Saffyr;;;[];;;;text;t2_din02;False;False;[];;Well even if Falco doesn't inherit the armored titan from Reiner, he definitely inherits the PTSD.;False;False;;;;1610329767;;False;{};gitrfig;False;t3_kujurp;False;False;t1_gisbgr9;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitrfig/;1610375613;14;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;Turns out the titans in the wall are all those dumb ones that just run into trees and don't really care much for Eren's orders!;False;False;;;;1610329774;;False;{};gitrg4v;False;t3_kujurp;False;True;t1_gisy7gq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitrg4v/;1610375624;1;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;Damn right!;False;False;;;;1610329784;;False;{};gitrh0q;False;t3_kujurp;False;True;t1_gishwzj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitrh0q/;1610375641;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BADMANvegeta_;;;[];;;;text;t2_13ne3x;False;False;[];;"FMAB has been the top rated anime for like 10 yrs straight. And then after that you have like steins;gate, gintama, Hunter x Hunter. - -These are all animes which are old but have remained at the top anyways, they have stood the test of time while other animes eventually lose their popularity. If AOT is able to overtake FMAB or even Hunter x Hunter it will be a great achievement, but tbh I don’t see it happening.";False;False;;;;1610329812;;False;{};gitrjhw;False;t3_kujurp;False;False;t1_giti2y7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitrjhw/;1610375682;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Mrtheliger;;;[];;;;text;t2_11ghbg;False;False;[];;"Younger Eren would not have committed the Liberio attack in the first place. Eren has experienced some change, whether it's just maturity or something else has yet to be seen, which has caused him to move far past any sort of revenge. Reiner tries to reason with him as if he is still that same Eren, but by the end of their confrontation we can see that is not the case. - -I have no further comment to make because I would use manga spoilers to support whatever argument I made against you, if I did have one.";False;False;;;;1610329813;;False;{};gitrjmm;False;t3_kujurp;False;True;t1_gitp6fe;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitrjmm/;1610375684;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Elias_Mo;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Yukinoshita and Emilia Cultist;dark;text;t2_3e7u37ah;False;False;[];;its all a matter of perspective;False;False;;;;1610329820;;False;{};gitrk6z;False;t3_kujurp;False;False;t1_git4ut5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitrk6z/;1610375695;21;True;False;anime;t5_2qh22;;0;[]; -[];;;MonaThiccAss;;;[];;;;text;t2_8stg2bwj;False;False;[];;because it has to be done, it is that or wait in the island to be annihilated by the whole world.. eren just have to keep moving forward until all his enemies are destroyed.;False;False;;;;1610329820;;False;{};gitrk76;False;t3_kujurp;False;False;t1_gitnfqb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitrk76/;1610375695;5;True;False;anime;t5_2qh22;;0;[]; -[];;;yolo_swag_for_satan;;;[];;;;text;t2_2aloc4yu;False;False;[];;"Uhhh... - -1. The motives for dropping the bombs were debatable. -2. It's still a war crime. -3. The idea that it was necessary to end the war quickly is debatable. -4. It's yet to be seen that Eren's actions will have the impact you're talking about. -5. The writer could have easily written another scenario that didn't involve Eren slaughtering civilians so the fact that he did is like, narratively way more significant than them just being collateral.";False;False;;;;1610329822;;False;{};gitrkdk;False;t3_kujurp;False;False;t1_git58wq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitrkdk/;1610375698;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Valance23322;;;[];;;;text;t2_f7v6y;False;False;[];;To be fair, he did wait until they declared war on Paradis. Eren might be okay with letting it go if the rest of the world wasn't so hell bent on killing them all.;False;False;;;;1610329855;;False;{};gitrn1s;False;t3_kujurp;False;False;t1_gitaunj;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitrn1s/;1610375748;13;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610329887;;False;{};gitrppt;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitrppt/;1610375799;1;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;Oh dang, you're right.;False;False;;;;1610329902;;False;{};gitrr2k;False;t3_kujurp;False;True;t1_git7xwp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitrr2k/;1610375824;3;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;Awesome! I'll make good use of this.;False;False;;;;1610329927;;False;{};gitrt7l;False;t3_kujurp;False;True;t1_gisoges;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitrt7l/;1610375861;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BADMANvegeta_;;;[];;;;text;t2_13ne3x;False;False;[];;"I think this has happened many times now where some anime which is out of this world popular comes along and people go “wow it’s gonna overtake FMAB for sure” and then it doesn’t. I think people have every reason to be skeptical of AOT. - -And tbh despite how good AOT is I don’t think it’s better than Steins;Gate or HxH which it has to get through before FMAB anyways. Like the ending for AOT is turning out to be one of the strongest endings I’ve ever seen, but the road to get there was very long and sometimes boring. Compare that to FMAB which imo had an equally strong ending full of twists and uncovered conspiracies, but the author was able to get there much quicker without dragging it out.";False;False;;;;1610329943;;False;{};gitrup8;False;t3_kujurp;False;True;t1_gisyveb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitrup8/;1610375887;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MonaThiccAss;;;[];;;;text;t2_8stg2bwj;False;False;[];;it gotta be armin, we will find out soon;False;False;;;;1610329952;;False;{};gitrvh6;False;t3_kujurp;False;True;t1_gitigbt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitrvh6/;1610375901;2;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;He's protecting all of his loved ones at Paradis.;False;False;;;;1610329965;;False;{};gitrwo2;False;t3_kujurp;False;False;t1_gitohkf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitrwo2/;1610375921;44;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;My job was to start the war, not fight it! See ya!;False;False;;;;1610329978;;False;{};gitrxkr;False;t3_kujurp;False;False;t1_git8ynt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitrxkr/;1610375937;36;True;False;anime;t5_2qh22;;0;[]; -[];;;MonaThiccAss;;;[];;;;text;t2_8stg2bwj;False;False;[];;good stuff;False;False;;;;1610329980;;False;{};gitrxsu;False;t3_kujurp;False;True;t1_gitie7r;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitrxsu/;1610375941;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dokutah_Valenti;;;[];;;;text;t2_6mehcoi2;False;False;[];;"These comments should be higher up. - -Excellent work, king.";False;False;;;;1610329999;;False;{};gitrzmq;False;t3_kujurp;False;False;t1_gismb1y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitrzmq/;1610375975;5;True;False;anime;t5_2qh22;;0;[]; -[];;;thiswasntgood;;;[];;;;text;t2_ig2yl5n;False;False;[];;Armin is probably hiding in there somewhere too...;False;False;;;;1610330011;;False;{};gits0o0;False;t3_kujurp;False;False;t1_gistq4f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gits0o0/;1610375993;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ArchadianJudge;;;[];;;;text;t2_dk2pa;False;True;[];;"I loved everything about this episode. Reiner is a broken man. He killed so many people but now we understand that he thought he was saving the world. Even Eren begins to understand this (and maybe even forgive him?). Reiner was pretty much brainwashed as a child soldier. The best part is, Reiner is looking for forgiveness or some kind of release, knowing the Paradis was not the place he expected it to be. He's been hurting all this time and Eren is really the only one that can ""save him"", which is why he leaves his fate in Eren's hands. - -The ending was insanely good. Eren is so mature now and without any hesitation. He has confidence of a seasoned soldier. He waits for Marley to declare war on his people then he immediately transforms in retaliation. It was incredible. Part of me thinks Eren would not transform until he heard the full intent of the Marleian army. Eren will do unto others what has been done to him.";False;False;;;;1610330026;;False;{};gits1xf;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gits1xf/;1610376015;5;False;False;anime;t5_2qh22;;0;[]; -[];;;exozaln;;;[];;;;text;t2_x135v;False;False;[];;"In the reveal scene of Bertholdt and Reiner Mikasa chops Reiner's hand and he transforms anyway. - -&#x200B; - -Maybe the transformation can't happen if you're healing and Eren now knows how to stop regeneration.";False;False;;;;1610330049;;False;{};gits3vq;False;t3_kujurp;False;True;t1_gite5li;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gits3vq/;1610376050;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cortez0498;;MAL;[];;http://myanimelist.net/animelist/cortez1098;dark;text;t2_snun8;False;False;[];;"> The area of Wall Maria is comparable to that of an average real-world country (a bit larger than e.g. Afghanistan and France) - -Wait, Paradis is that big? I thought it was like Hawaii, not fucking Australia.";False;False;;;;1610330062;;False;{};gits50y;False;t3_kujurp;False;False;t1_giti4xc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gits50y/;1610376070;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];;"Here are 2 manga edits that all of us manga readers watched countless time of this episode - -I warn you that the guys who did this made things that are ahead of the Anime so if you watch it don't watch the videos to the side and just watch it in incognito (or another browser) so their videos dont appear in the future and spoil you with the title - -https://youtu.be/500N3UNA30k - -https://youtu.be/ahJeLMdkChU";False;False;;;;1610330073;;False;{};gits5yp;False;t3_kujurp;False;True;t1_gitqoan;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gits5yp/;1610376087;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Boujoulo;;;[];;;;text;t2_6iczsif5;False;False;[];;Damn this episode was absolutely incredible. Though I was looking at what the people at MAL thought of the episode and was absolutely dumbfounded. Constant bashing of MAPPA saying the episode was horrible, bad animation etc.. the people on MAL really have no brains. This was one of the best episodes that I have ever watched.;False;False;;;;1610330074;;False;{};gits62o;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gits62o/;1610376089;20;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;I agree. Things like reputation don't exactly matter anymore either. You can't reason with the rest of them anymore, it's fight or die.;False;False;;;;1610330080;;False;{};gits6h3;False;t3_kujurp;False;True;t1_git0ftf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gits6h3/;1610376096;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Godddy;;;[];;;;text;t2_dfrpx;False;False;[];;"I used to watch a lot of anime (not su much now, I'm more into manga) but everytime I watched SNK I never felt like I was watching anime. - -The pacing, the themes, the narrative, the designs, everything is extremely not anime, but also not western, it's it own thing, apart from everything.";False;False;;;;1610330118;;False;{};gits9nl;False;t3_kujurp;False;False;t1_git1p7l;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gits9nl/;1610376157;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Valance23322;;;[];;;;text;t2_f7v6y;False;False;[];;I think that's just if he transforms while not on the ground like Bertolt did in season 3. We didn't see a nuke in any of the season 1/2 transformations;False;False;;;;1610330124;;False;{};gitsa3m;False;t3_kujurp;False;True;t1_git4dlp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitsa3m/;1610376165;0;True;False;anime;t5_2qh22;;0;[]; -[];;;CertifiedLolicon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_5bmbk3re;False;False;[];;is it wrong that i find that cute;False;False;;;;1610330136;;False;{};gitsb0g;False;t3_kujurp;False;False;t1_git4lmn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitsb0g/;1610376180;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Nyarlah;;;[];;;;text;t2_7inal;False;False;[];;That was an incredible episode.;False;False;;;;1610330216;;False;{};gitsh7a;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitsh7a/;1610376299;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptainPikmin;;;[];;;;text;t2_10w5w9;False;False;[];;Still insane that Attack on Titan will have two 20k episodes. That's incredible. And the best part is that we still have more to come! At the very least, the finale should reach 25k.;False;False;;;;1610330226;;False;{};gitshz0;False;t3_kujurp;False;False;t1_gitrdez;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitshz0/;1610376313;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Ominous_Strix;;;[];;;;text;t2_3km5xr5i;False;False;[];;They should have used an Armin nuke;False;False;;;;1610330267;;False;{};gitsl3z;False;t3_kujurp;False;False;t1_gits0o0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitsl3z/;1610376371;6;True;False;anime;t5_2qh22;;0;[]; -[];;;GloinMyPimp;;;[];;;;text;t2_606gtsao;False;False;[];;I don't care enough about the topic to have 5 different arguments at once. If you want to hop in discord or something we can because it'd be much quicker and take up less of our time. Otherwise, all I'll say is that you and most people agreeing with you have a 12 year olds understanding of how morality works.;False;False;;;;1610330268;;1610330541.0;{};gitsl5g;False;t3_kujurp;False;True;t1_gitngmu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitsl5g/;1610376373;0;True;False;anime;t5_2qh22;;0;[]; -[];;;GloinMyPimp;;;[];;;;text;t2_606gtsao;False;False;[];;What do you think justified means?;False;False;;;;1610330317;;False;{};gitsovf;False;t3_kujurp;False;True;t1_gitq2rc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitsovf/;1610376442;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tadashi047;;;[];;;;text;t2_4g3hq;False;False;[];;"https://twitter.com/RepJasonCrow/status/1348391040370282501?s=20 - -Long guns, Molotov cocktails, explosive devices, and zip ties were recovered.";False;False;;;;1610330332;;False;{};gitsq07;False;t3_kujurp;False;False;t1_gisdu72;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitsq07/;1610376464;7;True;False;anime;t5_2qh22;;0;[]; -[];;;LorenzoApophis;;;[];;;;text;t2_2cbj4o9v;False;False;[];;Willy just wants the rest of the world to not be wiped out.;False;False;;;;1610330335;;1610330552.0;{};gitsq98;False;t3_kujurp;False;False;t1_git6u9g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitsq98/;1610376469;3;False;False;anime;t5_2qh22;;0;[]; -[];;;JDantesInferno;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/BigBodyBepis;light;text;t2_20ieunh;False;False;[];;Honestly, I don’t know how long the last minute was. Seemed like Willy’s whole speech was “the last minute,” and yes, it feels like I held my breath the whole time.;False;False;;;;1610330338;;False;{};gitsqh6;False;t3_kujurp;False;True;t1_gisb5i0;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitsqh6/;1610376474;1;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;"Wow, I already see so many ""fixed"" versions already on Youtube. Never knew people were salty about this, lmao. I personally thought the music choice was fine...";False;False;;;;1610330346;;False;{};gitsr1z;False;t3_kujurp;False;True;t1_git749f;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitsr1z/;1610376484;2;True;False;anime;t5_2qh22;;0;[]; -[];;;YuviManBro;;MAL;[];;http://myanimelist.net/profile/Yuvimon;dark;text;t2_mvwt2;False;False;[];;They are passed completely randomly to an Eldian whos born then;False;False;;;;1610330351;;False;{};gitsrgy;False;t3_kujurp;False;False;t1_gitooa4;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitsrgy/;1610376492;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Ominous_Strix;;;[];;;;text;t2_3km5xr5i;False;False;[];;Actually didn't they say at the end of season 3 that they killed all the titans on the island? So in a sense, Eren accomplished his goal;False;False;;;;1610330356;;False;{};gitsruw;False;t3_kujurp;False;False;t1_gisgp6a;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitsruw/;1610376502;14;True;False;anime;t5_2qh22;;0;[]; -[];;;evilresurgence4;;;[];;;;text;t2_3hd7gero;False;False;[];;shonen in name only at this point;False;False;;;;1610330356;;False;{};gitsrva;False;t3_kujurp;False;True;t1_git8wwz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitsrva/;1610376502;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mattedaquila;;;[];;;;text;t2_3bv1f93q;False;False;[];;Ok, where i can find something that stops chills?;False;False;;;;1610330379;;False;{};gitstm0;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitstm0/;1610376533;5;True;False;anime;t5_2qh22;;0;[]; -[];;;IdesOfCaesar7;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_11vn3ccm;False;False;[];;I can't get over how good this shit is. And then the ending starts which is a banger!!! I write in every single thread that I'm so glad that I'm experiencing this live!!! Aot is next level good;False;False;;;;1610330386;;False;{};gitsu5b;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitsu5b/;1610376545;7;True;False;anime;t5_2qh22;;0;[]; -[];;;evilresurgence4;;;[];;;;text;t2_3hd7gero;False;False;[];;nearly 15k 8 hours in;False;False;;;;1610330405;;False;{};gitsvmx;False;t3_kujurp;False;True;t1_gisw50c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitsvmx/;1610376572;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Battlefront228;;;[];;;;text;t2_es846;False;False;[];;"That’s why Marley keeps going to war, right? - -He wants the military might of the founding Titan, and he wants to continue playing nice with the world. Strategically Marley is more of a threat than Paradise but he wants the world to see it backwards";False;False;;;;1610330420;;False;{};gitswuu;False;t3_kujurp;False;False;t1_gitsq98;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitswuu/;1610376593;6;True;False;anime;t5_2qh22;;0;[]; -[];;;69catgirls_vibin;;;[];;;;text;t2_5xm43cxm;False;False;[];;wow....just wow;False;False;;;;1610330435;;False;{};gitsy2j;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitsy2j/;1610376616;3;True;False;anime;t5_2qh22;;0;[]; -[];;;EMP_2014;;;[];;;;text;t2_emvfd;False;False;[];;"whatever they would do, it's kinda up to them, but whatever actions they take, the consequences of their actions would be their responsibility, wouldn't they? - -in this case, the Eldians living in Marley seem in quite a tough spot, because regardless the reason, they were the ones who sorta broke the ""peace treaty"" w/ the Fritz, they broke the walls which actually immediately should have triggered the Rumbling - -when there's an organisation and u don't agree w/ the direction it's going, isn't the rather logical option to just leave said organisation? to rebel and fight would not be the only option, to disagree and leave seems one too, guess that is if u as an individual are actually free/independent. the Eldians in Marley have been trying to sorta twist things around, blaming the past, blaming the *island devils*, like trying to avoid having to face how they some way or another, have been supporting Marley on their rather questionalble practices";False;False;;;;1610330472;;False;{};gitt0zy;False;t3_kujurp;False;True;t1_git7umn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitt0zy/;1610376670;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;Heyyy it actually reached 15k. Ok that gives me hope. Please brush on the 20k!!;False;False;;;;1610330485;;False;{};gitt212;False;t3_kujurp;False;True;t1_gitsvmx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitt212/;1610376689;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rinx_Tuturuu;;;[];;;;text;t2_10opmcn;False;False;[];;"How did Willy know about Eren's existence and him having the founding titan powers? - -Does it get revealed? Issume it will be revealed later on, but if not, pls lmk - -EDIT: oh my god i am an actual idiot LMFAO";False;False;;;;1610330498;;1610331089.0;{};gitt318;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitt318/;1610376706;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Ominous_Strix;;;[];;;;text;t2_3km5xr5i;False;False;[];;I can't wait to go back through all that stuff once the anime finishes;False;False;;;;1610330513;;False;{};gitt47t;False;t3_kujurp;False;False;t1_gisvliq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitt47t/;1610376728;4;True;False;anime;t5_2qh22;;0;[]; -[];;;_Alljokesaside;;;[];;;;text;t2_i06vy;False;False;[];;The to be continued is still killing me in 2021. I'm about to stop watching and binge at the end but idk if i can resist 😖;False;False;;;;1610330525;;False;{};gitt57i;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitt57i/;1610376745;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgamesh107;;;[];;;;text;t2_j1btm7b;False;False;[];;Lol no;False;False;;;;1610330542;;False;{};gitt6gg;False;t3_kujurp;False;True;t1_gisw5wh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitt6gg/;1610376768;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sharmarahulkohli;;;[];;;;text;t2_12gbee;False;False;[];;Reiner;False;False;;;;1610330547;;False;{};gitt6sy;False;t3_kujurp;False;False;t1_gitt318;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitt6sy/;1610376774;6;True;False;anime;t5_2qh22;;0;[]; -[];;;CarioGod;;;[];;;;text;t2_ktg8q;False;False;[];;The amount of parallels made between eren and Reiner are beautiful;False;False;;;;1610330571;;False;{};gitt8kb;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitt8kb/;1610376806;6;True;False;anime;t5_2qh22;;0;[]; -[];;;uncen5ored;;;[];;;;text;t2_800mwmv;False;False;[];;"The general consensus was wanting darker music instead of 2Volt’s more heroic sound. A lot wanted YouSeeBigGirl to mirror Reiner’s reveal, and a popular [motion manga, fast forward towards end to avoid a scene that may be in the next episode](https://youtu.be/B0TIbFGSi-Y) basically is what a lot of manga readers envisioned. Funny, cause the same happened with Levi vs Beast Titan, the same motion manga maker had a video that was extremely popular and people grew attached to the music of that scene. - -There were also people that expected the leaked OST from a recent interview to be used. A fan remade it, [and someone did this scene with that music](https://www.youtube.com/watch?v=yCpF48bLXbg&feature=youtu.be). - -I personally would’ve liked darker music as well, but the end product was still amazing so I’m not complaining by no means. More importantly, anime only fans still LOVED it, and many aren’t overlooking the fact that it was still murdering innocents. - -Hell I’ve rewatched this episode like 3 times already lol";False;False;;;;1610330576;;False;{};gitt8y3;False;t3_kujurp;False;False;t1_gitqoan;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitt8y3/;1610376813;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LorenzoApophis;;;[];;;;text;t2_2cbj4o9v;False;False;[];;Several panels of Zeke leaving the festival near the end;False;False;;;;1610330595;;False;{};gitta9l;False;t3_kujurp;False;True;t1_git9mfw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitta9l/;1610376835;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SirAwesome789;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SirAwesomeness;light;text;t2_ra3np;False;False;[];;Well...he did just knowingly kill a lot of civilians after admitting that he knows that many of them are good and regular people;False;False;;;;1610330599;;False;{};gittaka;False;t3_kujurp;False;False;t1_gitrwo2;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gittaka/;1610376840;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Taurus24Silver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Taurus-Silver;light;text;t2_826uaxw;False;False;[];;Its absolfuckinlately incredible dude. I highly recommend it to everyone;False;False;;;;1610330605;;False;{};gittb0y;False;t3_kujurp;False;True;t1_gitnpmx;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gittb0y/;1610376848;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DripGodBabyYoda;;;[];;;;text;t2_558dvxc8;False;False;[];;we need to break the record now and then break it again with 121;False;False;;;;1610330632;;False;{};gittczk;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gittczk/;1610376884;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610330632;;False;{};gittd0q;False;t3_kujurp;False;True;t1_gisx991;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gittd0q/;1610376885;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ominous_Strix;;;[];;;;text;t2_3km5xr5i;False;False;[];;"Nobody is mentioning this but... - -Why was Zeik split from Galliard and Pieck? We didn't even get a screen cutting to him being in a similar pit or anything";False;False;;;;1610330633;;False;{};gittd34;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gittd34/;1610376887;8;True;False;anime;t5_2qh22;;0;[]; -[];;;_Alljokesaside;;;[];;;;text;t2_i06vy;False;False;[];;Isnt that common knowledge amongst marleys military??? Reiner and Zeke came back with that information I'd assume.;False;False;;;;1610330640;;False;{};gittdm2;False;t3_kujurp;False;False;t1_gitt318;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gittdm2/;1610376896;15;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Both of them used YouSeeBigGirl, now the problem with YSBG is that it's a betrayal ost and it overlaps with Willy's declaration whereas the ost used doesn't overlap which makes Willy's speech more powerful. I think so YSBG would be terrible if used at that moment and even if they don't like the ost used they have to use some other ost which would start at the time when Eren smashes Willy not before the handshake. Looks like manga readers have some over-the-moon expectations which can't be fulfilled in any circumstances.;False;False;;;;1610330687;;False;{};gittgyc;False;t3_kujurp;False;False;t1_gits5yp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gittgyc/;1610376955;6;True;False;anime;t5_2qh22;;0;[]; -[];;;CatCryogenic;;;[];;;;text;t2_16nq9n;False;False;[];;"\*SPOILERS FOR CODE GEASS YOU HAVE BEEN WARNED\* - -&#x200B; - -It basically means becoming the enemy so the world can unite against you. This brings the world together.";False;False;;;;1610330690;;False;{};gitth66;False;t3_kujurp;False;True;t1_gitqkav;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitth66/;1610376959;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PM_ME_UR_SOCKS_GIRL;;;[];;;;text;t2_phrxn;False;False;[];;What was the scene with Pieck hugging the weird panzer dudes about? Were they Marley officers or just Eldian fodder (didn't see armbands on them)...;False;False;;;;1610330695;;False;{};gitthio;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitthio/;1610376966;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ominous_Strix;;;[];;;;text;t2_3km5xr5i;False;False;[];;Yah imo AOT is one of the best pieces of written fiction, it goes from hopeless apocalypse to racism and war;False;False;;;;1610330705;;False;{};gitti6z;False;t3_kujurp;False;False;t1_gitr9xe;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitti6z/;1610376979;10;True;False;anime;t5_2qh22;;0;[]; -[];;;blueasian0682;;;[];;;;text;t2_1mq0q9k2;False;False;[];;Reiner and zeke;False;False;;;;1610330707;;False;{};gittie6;False;t3_kujurp;False;False;t1_gitt318;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gittie6/;1610376984;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Wolfsocean;;;[];;;;text;t2_io8r7;False;False;[];;And The Regime of Marley could have chosen leave the people on the island alone, but they didn't.;False;False;;;;1610330722;;False;{};gittjf1;False;t3_kujurp;False;False;t1_gitpy1p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gittjf1/;1610377002;5;True;False;anime;t5_2qh22;;0;[]; -[];;;OrudoCato;;;[];;;;text;t2_12zxts;False;False;[];;That's the conclusion and mental state bertholdt was in at the final battle in season 3;False;False;;;;1610330723;;False;{};gittjhg;False;t3_kujurp;False;False;t1_gita99c;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gittjhg/;1610377003;21;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;15k upvotes already? Wow !! I reckoned the premier hit 17k upvotes in the span of 15 hours, let’s see how many karmas this ep will get in 15 hours !;False;False;;;;1610330732;;False;{};gittk56;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gittk56/;1610377015;25;True;False;anime;t5_2qh22;;0;[]; -[];;;GloinMyPimp;;;[];;;;text;t2_606gtsao;False;False;[];;"> There's just something really gross about people trying to excuse Eren's behavior. - -Imagine thinking that an oppressed group of people retaliating after enduring lifetimes of hatred by the entire world is unjustifiable lmfao please go outside";False;False;;;;1610330734;;False;{};gittkao;False;t3_kujurp;False;True;t1_gitonjf;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gittkao/;1610377017;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SirAwesome789;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SirAwesomeness;light;text;t2_ra3np;False;False;[];;Ahh, is this why our english teachers emphasized planning so much before we start to write. I feel like a lot of other shonen mangaka need to take note.;False;False;;;;1610330751;;False;{};gittljc;False;t3_kujurp;False;False;t1_gisjjjc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gittljc/;1610377040;25;True;False;anime;t5_2qh22;;0;[]; -[];;;yolo_swag_for_satan;;;[];;;;text;t2_2aloc4yu;False;False;[];;"This touches on a lot of my feelings. I ASSUMED the author was intentionally trying to portray Eren as the villain starting now, yet the majority of people in this thread seem to be cheering him on. So now I'm weary of what the author's intentions are. If this devolves into a ""whoaaa moral ambiguity both sides"" narrative when people are blatantly committing war crimes, I might be done. - ->This is unfortunately the case for any work of fiction trying to give credence to ''all sides"" and insert moral ambiguity into situations where there's frankly very little moral ambiguity to work with. - -This is the bane of SO much modern fiction for me. It shows up a lot in video games too. There's nothing ambiguous about things that are blatantly wrong, just because someone framed as the protagonist is doing them. - -The reception to Eren's actions is actually ironic considering the lack of empathy for the propagandized Marleyans and interned Eldians. They are brainwashed...but I also think the narrative framework easily brainwashes people when we have a thread full of folks cheering on a dude who would definitely flatten them into pancakes with colossal titans if he had the chance...because he is the protag. 🙄";False;False;;;;1610330778;;False;{};gittng2;False;t3_kujurp;False;True;t1_gitpsyo;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gittng2/;1610377072;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LaggerOW;;;[];;;;text;t2_pf4xlr3;False;False;[];;I dont want to search this up since it could led to spoilers. Does anyone remember why Historia 'Big Sister' changed personality when she gained the founding titans power?;False;False;;;;1610330803;;False;{};gittp6n;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gittp6n/;1610377105;3;True;False;anime;t5_2qh22;;0;[]; -[];;;hatehim10;;;[];;;;text;t2_nktdg;False;False;[];;He is no Shonen MC anymore trapped in a seinen;False;False;;;;1610330842;;False;{};gitts1g;False;t3_kujurp;False;True;t1_gisi1jl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitts1g/;1610377156;0;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;Alr hitting 15.4k as for now, in next 1 hour 16k will get passed and might need several few hours to hit 18k.;False;False;;;;1610330876;;False;{};gittukm;False;t3_kujurp;False;True;t1_giszgik;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gittukm/;1610377203;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Maybe because of King Fritz's memories.;False;False;;;;1610330910;;False;{};gittx75;False;t3_kujurp;False;False;t1_gittp6n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gittx75/;1610377270;4;True;False;anime;t5_2qh22;;0;[]; -[];;;goochstein;;;[];;;;text;t2_3bs3ogor;False;False;[];;I feel like that could easily be the best anime transformation, with context it’s scary good.;False;False;;;;1610330913;;False;{};gittxe1;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gittxe1/;1610377273;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];; yeagerist scum;False;False;;;;1610330914;;False;{};gittxiq;False;t3_kujurp;False;True;t1_gisaesh;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gittxiq/;1610377275;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;blueasian0682;;;[];;;;text;t2_1mq0q9k2;False;False;[];;Well from the previews it's gonna be fights, lol.;False;False;;;;1610330945;;False;{};gittztg;False;t3_kujurp;False;True;t1_gitno86;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gittztg/;1610377319;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cultoftheilluminati;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/thelucifer0509/;light;text;t2_1247o0;False;True;[];;Pain.;False;False;;;;1610330958;;False;{};gitu0uy;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitu0uy/;1610377337;8;True;False;anime;t5_2qh22;;0;[]; -[];;;stormhunter2;;;[];;;;text;t2_2d0p5yp7;False;False;[];;As someone who is a season or two behind, does the ending mirror the Manga ending?;False;False;;;;1610330993;;False;{};gitu3ek;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitu3ek/;1610377384;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ominous_Strix;;;[];;;;text;t2_3km5xr5i;False;False;[];;I believe in season 1 they say the exact square kilometers last from Wall Maria, just doing some simple math you'll realize the country is huge;False;False;;;;1610331009;;False;{};gitu4m2;False;t3_kujurp;False;False;t1_gits50y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitu4m2/;1610377408;33;True;False;anime;t5_2qh22;;0;[]; -[];;;Lordofdepression;;;[];;;;text;t2_75f08;False;False;[];;"They know of the vow of renouncing war that the King made, and that rumbling is an empty promise/threat. - -They know that the founding titan as of now can not be activated without the will of the pacifist king overwriting those who wish to use it. - -However the threat of rumbling still *persist* - -That's the extent of the discussion that can be said from the information gathered from what is already shown in the anime, further is manga territory.";False;False;;;;1610331020;;1610331211.0;{};gitu5ej;False;t3_kujurp;False;False;t1_gito8uu;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitu5ej/;1610377423;22;True;False;anime;t5_2qh22;;0;[]; -[];;;_dsmith23;;;[];;;;text;t2_q9zbacg;False;False;[];;As expected of MAL. This is why I ignore forum discussions completely.;False;False;;;;1610331033;;False;{};gitu6c0;False;t3_kujurp;False;False;t1_gits62o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitu6c0/;1610377441;10;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;Lmaoo, i can relate there, after reading the comments on aot s4 trailer and caught up with s3p2 I immediately jumped to the manga.;False;False;;;;1610331044;;False;{};gitu76t;False;t3_kujurp;False;True;t1_gisn0uv;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitu76t/;1610377456;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZackDB201;;;[];;;;text;t2_1sxfbwvn;False;False;[];;They are the ones responsible for shooting the cart titan's guns (the panzer unite);False;False;;;;1610331071;;False;{};gitu92s;False;t3_kujurp;False;False;t1_gitthio;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitu92s/;1610377490;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LG03;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/Bronadian;dark;text;t2_3npe0;False;False;[];;">I'm guessing Willy is not the warhammer titan based on how the episode ended. However, it is a bit annoying that we know next to nothing about any of his family members. - -That's a small gripe of mine as well. Willy originally asks the general to guess who the titan is but all we get is a 5 second scene of a bunch of random looking people. We're given absolutely zero information to guess from, the only thing we can assume is that Willy isn't it. - -Now the question is whether Eren knows that the Warhammer Titan is unknown or if he thinks he just chomped him (assuming Willy does end up eaten).";False;False;;;;1610331077;;False;{};gitu9i3;False;t3_kujurp;False;False;t1_git8ti1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitu9i3/;1610377499;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Chukonoku;;;[];;;;text;t2_85br9;False;False;[];;"We don't know for sure what a young Eren would had done, but we know he was a more emotional based person, which is what Reiner implies by what he said and knows about him. - -I'm up to date with the manga but i'm just discussing here based on what we can see on screen.";False;False;;;;1610331079;;False;{};gitu9no;False;t3_kujurp;False;True;t1_gitrjmm;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitu9no/;1610377501;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SirAwesome789;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SirAwesomeness;light;text;t2_ra3np;False;False;[];;"A pro at everyone's romance except for his own, sorry Mikasa. - -(Well actually maybe something did happen during the timeskip, idk, I'm anime only)";False;False;;;;1610331080;;False;{};gitu9q6;False;t3_kujurp;False;False;t1_gisip9e;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitu9q6/;1610377502;7;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;That transformation was done with perfection, ost was amazing, Attack Titan looked scary as hell and that handshake was brilliant. Probably one of the best episodes of AoT.;False;False;;;;1610331165;;False;{};gitufro;False;t3_kujurp;False;False;t1_gittxe1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitufro/;1610377615;12;True;False;anime;t5_2qh22;;0;[]; -[];;;blueasian0682;;;[];;;;text;t2_1mq0q9k2;False;False;[];;The reason everything happens in this anime is because everyone is a pacifist, eren comes in and actually does something.;False;False;;;;1610331166;;False;{};gitufvo;False;t3_kujurp;False;True;t1_gitkzq3;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitufvo/;1610377617;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;manga hasn't ended yet;False;False;;;;1610331185;;False;{};gituh85;False;t3_kujurp;False;False;t1_gitu3ek;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gituh85/;1610377641;13;True;False;anime;t5_2qh22;;0;[]; -[];;;iloveacademia;;;[];;;;text;t2_3m6fzg6c;False;False;[];;"Not gonna lie kinda miss when the setting was more crueler and darker. - -The biggest problem we face rn is people being shitty human beings, but that’s really no different than what’s going on in our world";False;True;;comment score below threshold;;1610331204;;False;{};gituijw;False;t3_kujurp;False;True;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gituijw/;1610377666;-23;True;False;anime;t5_2qh22;;0;[]; -[];;;LockeMMA;;;[];;;;text;t2_8eo9dr1p;False;False;[];;Because of King Fritz's vow of pacifism;False;False;;;;1610331207;;False;{};gituipz;False;t3_kujurp;False;True;t1_gittp6n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gituipz/;1610377668;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ma103;;;[];;;;text;t2_icj74;False;False;[];;It was so fucking tense when Willy was narrating the true story of the Eldians while scene keep cutting to Eren. Like dude is gonna explode at any given moment. Can't blame Reiner to be scared shitless. Chad Eren with the first blood holy shit;False;False;;;;1610331214;;1610333007.0;{};gituj93;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gituj93/;1610377678;13;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610331251;;False;{};gitulzn;False;t3_kujurp;False;True;t1_gittx75;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitulzn/;1610377729;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];;Like mother, like son they said;False;False;;;;1610331257;;False;{};gitumhm;False;t3_kujurp;False;True;t1_gismf1p;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitumhm/;1610377738;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yolo_swag_for_satan;;;[];;;;text;t2_2aloc4yu;False;False;[];;"Maybe you should stay inside, read a book, and learn how to use your mind to fucking think. Committing acts of mass terrorism against random people not even directly responsible for your oppression is a dick move. He killed an entire building full of innocent ELDIAN civilians, who are just living their lives and trying to stop their younger sisters from being eaten by dogs. - -He could've JUST assassinated Tybur or other Marley officials. They could've found a way to manipulate the rulers of Marley or use their influence to change the situation. Lots of other potential options. Instead they went the war crime route. - -So far, this isn't ""an oppressed group of people retaliating."" It's Eren, who has the power to choose other options, blowing up a building full of oppressed people just to make a statement and to get at one guy. He looked an oppressed Eldian child directly in the eyes as he transformed and tried to blow him up.";False;False;;;;1610331265;;False;{};gitun26;False;t3_kujurp;False;True;t1_gittkao;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitun26/;1610377748;0;True;False;anime;t5_2qh22;;0;[]; -[];;;funkerbuster;;;[];;;;text;t2_7mx1p;False;False;[];;Royals with the founding titan get mind controlled to stop fighting back against the outside world. From Rod’s flashbacks, Uri and Frieda promised they were gonna resist but that clearly did not happen.;False;False;;;;1610331277;;False;{};gitunyy;False;t3_kujurp;False;True;t1_gittp6n;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitunyy/;1610377765;1;False;False;anime;t5_2qh22;;0;[]; -[];;;yolo_swag_for_satan;;;[];;;;text;t2_2aloc4yu;False;False;[];;Basically everyone in a decision making position is an asshole, but it's the civilians constantly eating shit.;False;False;;;;1610331314;;False;{};gituqra;False;t3_kujurp;False;False;t1_gittjf1;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gituqra/;1610377817;4;True;False;anime;t5_2qh22;;0;[]; -[];;;yolo_swag_for_satan;;;[];;;;text;t2_2aloc4yu;False;False;[];;ohhhhh. Thanks for explaining.;False;False;;;;1610331352;;False;{};gituthz;False;t3_kujurp;False;True;t1_gitth66;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gituthz/;1610377866;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RX0Invincible;;;[];;;;text;t2_10wg4b;False;False;[];;There's definitely toxicity. One side has been incredibly salty at every panel that doesn't 100% confirm the ending they want lately.;False;False;;;;1610331372;;False;{};gituuyl;False;t3_kujurp;False;False;t1_giswu9y;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gituuyl/;1610377893;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610331417;;1610343970.0;{};gituyjb;False;t3_kujurp;False;False;t1_gitthio;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gituyjb/;1610377956;10;False;False;anime;t5_2qh22;;0;[]; -[];;;BonBuuBon;;;[];;;;text;t2_23w7d3h4;False;False;[];;since when did the titans outside of the walls dissappear?;False;False;;;;1610331427;;False;{};gituzb8;False;t3_kujurp;False;True;t1_gitkrgl;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gituzb8/;1610377970;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cultoftheilluminati;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/thelucifer0509/;light;text;t2_1247o0;False;True;[];;Ep 5 Falco: life is suffering.;False;False;;;;1610331452;;False;{};gitv1fi;False;t3_kujurp;False;True;t1_gisc3ca;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitv1fi/;1610378008;3;True;False;anime;t5_2qh22;;0;[]; -[];;;iloveacademia;;;[];;;;text;t2_3m6fzg6c;False;False;[];;To be honest it wasn’t as good as past AoT episodes IMO that had me on 100% hype every ending.;False;False;;;;1610331460;;False;{};gitv23h;False;t3_kujurp;False;True;t1_gisyq01;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitv23h/;1610378021;1;True;False;anime;t5_2qh22;;0;[]; -[];;;stormhunter2;;;[];;;;text;t2_2d0p5yp7;False;False;[];;Thanks. Since this is the final season, does that mean it's ending on a cliffhanger? Or are they doing a movie for the epilogue;False;False;;;;1610331491;;False;{};gitv4pe;False;t3_kujurp;False;True;t1_gituh85;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitv4pe/;1610378078;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LaggerOW;;;[];;;;text;t2_pf4xlr3;False;False;[];;Since Grisha ate the founding titan, why didnt Eren became a pacifist like the others?;False;False;;;;1610331500;;False;{};gitv5gb;False;t3_kujurp;False;True;t1_gitunyy;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitv5gb/;1610378092;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgamesh107;;;[];;;;text;t2_j1btm7b;False;False;[];;"They are the same because they were born into that cruel world and can do nothing except deal with the hand they were dealt. Reiner attacked the walls for many reasons first because he was sure he was saving the world from the ""island devils"" and considering that willy just declared global war on the island Eren is defending his home from the world, regardless of the casualties. ""I just keep moving forward""";False;False;;;;1610331556;;False;{};gitv9x7;False;t3_kujurp;False;True;t1_gispjjt;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitv9x7/;1610378174;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PushEmma;;MAL;[];;http://myanimelist.net/animelist/SleepingWolves;dark;text;t2_m6lcw;False;False;[];;On the contrary, it would be too obvious. Why not expect mystery, complexity and twist from SNK?;False;False;;;;1610331564;;False;{};gitvaj2;False;t3_kujurp;False;True;t1_gisvvhb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitvaj2/;1610378188;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;iloveacademia;;;[];;;;text;t2_3m6fzg6c;False;False;[];;Nah now you’re crazy. He did nothing wrong?;False;False;;;;1610331593;;False;{};gitvcrd;False;t3_kujurp;False;True;t1_gisznvz;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitvcrd/;1610378232;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;Eren does not have royal blood;False;False;;;;1610331628;;False;{};gitvfcp;False;t3_kujurp;False;False;t1_gitv5gb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitvfcp/;1610378282;7;True;False;anime;t5_2qh22;;0;[]; -[];;;midtharp;;;[];;;;text;t2_2tkeqy5s;False;False;[];;There really needs to be a Plot Titan...;False;False;;;;1610331649;;False;{};gitvgws;False;t3_kujurp;False;False;t1_gitptyg;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitvgws/;1610378309;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Gwynbbleid;;;[];;;;text;t2_2c5ns4t8;False;False;[];;Yeah but they used the beast vs Levi theme, I don't think that makes much sense either way. It was still amazing but yeah they had very high expectations they wanted an ufotable adaptation;False;False;;;;1610331652;;False;{};gitvh2v;False;t3_kujurp;False;True;t1_gittgyc;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitvh2v/;1610378313;3;True;False;anime;t5_2qh22;;0;[]; -[];;;otakung_marupok;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/jaegerbomb24/;light;text;t2_669dxdsq;False;False;[];;Oh hell yeah. I just caught up to the One Piece manga and the attention to detail in that series is fucking insane.;False;False;;;;1610331660;;False;{};gitvhn8;False;t3_kujurp;False;False;t1_gislyf5;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitvhn8/;1610378323;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hiphoepreaper;;;[];;;;text;t2_30twagl7;False;False;[];;such great episode 10/10 for sure.;False;False;;;;1610331677;;False;{};gitviw4;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitviw4/;1610378345;5;True;False;anime;t5_2qh22;;0;[]; -[];;;evilresurgence4;;;[];;;;text;t2_3hd7gero;False;False;[];;its the opposite, kigns ideology makes it so that you cant counter attack and is only passed down if you have royal blood;False;False;;;;1610331697;;False;{};gitvkdx;False;t3_kujurp;False;False;t1_git0qt7;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitvkdx/;1610378372;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Saucy_Totchie;;;[];;;;text;t2_n6mml;False;False;[];;Eren returned the favor.;False;False;;;;1610331716;;False;{};gitvlst;False;t3_kujurp;False;True;t1_gish4zq;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitvlst/;1610378396;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rabidsi;;;[];;;;text;t2_4qd76;False;False;[];;The mechanics is literally physics and a fictional ape beast thing that's taller than a damn tower that SAYS it can throw real good has no relation to real world apes. And humans are primates.;False;False;;;;1610331737;;False;{};gitvn9d;False;t3_kujurp;False;False;t1_gitqw1w;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitvn9d/;1610378422;10;True;False;anime;t5_2qh22;;0;[]; -[];;;SirLeos;;;[];;;;text;t2_6jfp5;False;False;[];;I want to think he is still alive, maybe?;False;False;;;;1610331742;;False;{};gitvnli;False;t3_kujurp;False;True;t1_gisf892;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitvnli/;1610378429;2;True;False;anime;t5_2qh22;;0;[]; -[];;;blueasian0682;;;[];;;;text;t2_1mq0q9k2;False;False;[];;"And falco patting reiners back, ""there there mr braun""";False;False;;;;1610331764;;False;{};gitvp63;False;t3_kujurp;False;False;t1_git4lmn;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitvp63/;1610378458;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SirLeos;;;[];;;;text;t2_6jfp5;False;False;[];;Yeah the softer lines were a little jarring at first but their style won me over very quickly.;False;False;;;;1610331788;;False;{};gitvqt8;False;t3_kujurp;False;True;t1_gisb7ex;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitvqt8/;1610378491;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Freddy_The_Goat;;;[];;;;text;t2_2tfa73d2;False;False;[];;Eren's motives and the reasoning for his actions is one of the greatest mysteries of this season, so don't expect to understand him from the get go.;False;False;;;;1610331792;;False;{};gitvr3f;False;t3_kujurp;False;False;t1_gitnfqb;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitvr3f/;1610378496;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AsianSquirrel;;;[];;;;text;t2_3vynsrfo;False;False;[];;"Mask off and a highly condescending internet warrior. What an absolute ***shock*** considering your opinions! Calling people 12 year olds because they don't romanticize moral ambiguity in situations involving literal mass genocide and intentional civilian killing. Better feel superior to all the peasant who don't understands all the nuances of morality like I do! Perhaps you hold your opinions precisely because you can relate to Eren and wanting justifications for some ideas. Who knows. - -You don't care enough; I don't care enough either then.";False;False;;;;1610331799;;1610332065.0;{};gitvrml;False;t3_kujurp;False;True;t1_gitsl5g;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitvrml/;1610378506;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610331803;;1610343962.0;{};gitvryn;False;t3_kujurp;False;False;t1_gituijw;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitvryn/;1610378512;13;False;False;anime;t5_2qh22;;0;[]; -[];;;ma103;;;[];;;;text;t2_icj74;False;False;[];;"You can't blame kid Eren for acting like the way he was or like a ""generic shonen protagonists"". Anyone will have gone nuts if they were to witness their mom gets eaten alive and home destroyed all of a sudden.";False;False;;;;1610331809;;False;{};gitvsg0;False;t3_kujurp;False;True;t1_gisao83;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitvsg0/;1610378522;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PooksterPC;;;[];;;;text;t2_12li3z;False;False;[];;Don't titan shifters die after like 13 years? It's probably one of the young ones I think;False;False;;;;1610331810;;False;{};gitvsiu;False;t3_kujurp;False;False;t1_gitpril;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitvsiu/;1610378523;8;True;False;anime;t5_2qh22;;0;[]; -[];;;iloveacademia;;;[];;;;text;t2_3m6fzg6c;False;False;[];;Yea I’m not gonna lie this was the most mid episode by far of AoT not utter garbage, but definitely not hype.;False;False;;;;1610331812;;False;{};gitvsn0;False;t3_kujurp;False;True;t1_giskw2o;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitvsn0/;1610378526;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fullbryte;;;[];;;;text;t2_d9ued;False;False;[];;"This is one of the most chilling encounters in any story I've experienced. The parallels, reversals and culmination of the narrative setup from Season 1 to this moment is masterfully done. The script, direction, lighting and shadow, vocal performance and sound design were in perfect harmony. The tension was palpable and I was literally on the edge of my seat. - -11/10";False;False;;;;1610331825;;False;{};gitvtl6;False;t3_kujurp;False;False;t3_kujurp;/r/anime/comments/kujurp/shingeki_no_kyojin_the_final_season_episode_64/gitvtl6/;1610378544;20;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi MissMads2024, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610146184;moderator;False;{};gildv77;False;t3_ktdvy4;False;True;t3_ktdvy4;/r/anime/comments/ktdvy4/underrated_anime_suggestions_to_watch/gildv77/;1610187441;1;False;False;anime;t5_2qh22;;0;[]; -[];;;androiduser243;;;[];;;;text;t2_3g8rexdf;False;False;[];;White Album 2;False;False;;;;1610146319;;False;{};gile55d;False;t3_ktdvy4;False;True;t3_ktdvy4;/r/anime/comments/ktdvy4/underrated_anime_suggestions_to_watch/gile55d/;1610187591;1;True;False;anime;t5_2qh22;;0;[]; -[];;;unfixd;;;[];;;;text;t2_2vzielwq;False;False;[];;What are you looking for? Like what genre?;False;False;;;;1610146360;;False;{};gile86p;False;t3_ktdvy4;False;True;t3_ktdvy4;/r/anime/comments/ktdvy4/underrated_anime_suggestions_to_watch/gile86p/;1610187637;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DRAGONSLAYAAAA;;;[];;;;text;t2_623sb3nq;False;False;[];;"This isn't an answer to the question but I'm telling you anime not to watch - -Tokyo ghoul s2 -Tokyo ghoul s3 -One punch man s2 - -I would have put underrated anime under here but I don't know what your definition of underrated is";False;False;;;;1610146381;;False;{};gile9qo;False;t3_ktdvy4;False;True;t3_ktdvy4;/r/anime/comments/ktdvy4/underrated_anime_suggestions_to_watch/gile9qo/;1610187662;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Crosswrm;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/crosswrm/;light;text;t2_ypjy1;False;False;[];;Juuni Taisen and Subete ga F ni Naru;False;False;;;;1610146585;;False;{};gileopy;False;t3_ktdvy4;False;True;t3_ktdvy4;/r/anime/comments/ktdvy4/underrated_anime_suggestions_to_watch/gileopy/;1610187889;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DRAGONSLAYAAAA;;;[];;;;text;t2_623sb3nq;False;False;[];;Sadly not many people I've met know of code geass my 2nd favourite anime (death note will always be supreme for me);False;False;;;;1610146774;;False;{};gilf2jk;False;t3_kte0mf;False;True;t3_kte0mf;/r/anime/comments/kte0mf/what_are_some_borderline_mainstream_anime/gilf2jk/;1610188097;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Toonamigamerrr;;;[];;;;text;t2_ssw2vcw;False;False;[];;sounan desu ka;False;False;;;;1610146807;;False;{};gilf4wi;False;t3_kte07u;False;False;t3_kte07u;/r/anime/comments/kte07u/anime_where_people_are_isolated/gilf4wi/;1610188131;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;Terror in resonance, ultramarine magmell and vampire knight;False;False;;;;1610147032;;False;{};gilfl96;False;t3_ktdvy4;False;True;t3_ktdvy4;/r/anime/comments/ktdvy4/underrated_anime_suggestions_to_watch/gilfl96/;1610188371;0;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;True;[];;I'm going with the monogatari series, because I had never heard of it before this sub, but everyone here talks about it. It's popular on MAL, but I can't think of anyone i know personally who knows about it. People dont know the series, but people on tiktok know the Renai circulation song. I haven't even seen it yet, and know nothing about it. I just know it's always there. Lurking...;False;False;;;;1610147123;;False;{};gilfrty;False;t3_kte0mf;False;False;t3_kte0mf;/r/anime/comments/kte0mf/what_are_some_borderline_mainstream_anime/gilfrty/;1610188471;9;True;False;anime;t5_2qh22;;0;[]; -[];;;georgeeeboyy;;;[];;;;text;t2_69sn1nmm;False;False;[];;Dr Stone;False;False;;;;1610147134;;False;{};gilfsnp;False;t3_kte07u;False;False;t3_kte07u;/r/anime/comments/kte07u/anime_where_people_are_isolated/gilfsnp/;1610188483;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Miidas-92;;MAL;[];;https://myanimelist.net/profile/Miidas;dark;text;t2_ja1jx;False;False;[];;"Monogatari Series. - -It's extremely popular in the anime community, but I can never see it becoming quite mainstream, considering its style and content.";False;False;;;;1610147215;;False;{};gilfyck;False;t3_kte0mf;False;False;t3_kte0mf;/r/anime/comments/kte0mf/what_are_some_borderline_mainstream_anime/gilfyck/;1610188567;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;"I don't think the OP is lost, why do you ask...? - -&#x200B; - -(Sorry, I had to! 😁 [MAL](https://myanimelist.net/anime/39456/Sounan_Desu_ka))";False;False;;;;1610147388;;False;{};gilgb0v;False;t3_kte07u;False;False;t1_gilf4wi;/r/anime/comments/kte07u/anime_where_people_are_isolated/gilgb0v/;1610188757;7;True;False;anime;t5_2qh22;;0;[]; -[];;;dekalabia;;;[];;;;text;t2_qqkbdrk;False;False;[];;"<Mujin Wakusei Survive> - - -It's like lost in space but anime, but the cast is young teens instead of older teens. They have to figure out how to survive being stranded on an deserted planet from scratch.";False;False;;;;1610147433;;False;{};gilgeb4;False;t3_kte07u;False;True;t3_kte07u;/r/anime/comments/kte07u/anime_where_people_are_isolated/gilgeb4/;1610188808;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dekalabia;;;[];;;;text;t2_qqkbdrk;False;False;[];;"そうなんですか… -へぇ…";False;False;;;;1610147480;;False;{};gilghrp;False;t3_kte07u;False;True;t1_gilgb0v;/r/anime/comments/kte07u/anime_where_people_are_isolated/gilghrp/;1610188859;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;One Punch Man;False;False;;;;1610147517;;False;{};gilgkhg;False;t3_kte0mf;False;True;t3_kte0mf;/r/anime/comments/kte0mf/what_are_some_borderline_mainstream_anime/gilgkhg/;1610188899;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Dan-rar;;MAL;[];;http://myanimelist.net/profile/danrar;dark;text;t2_au2y1;False;False;[];;I think Gosick is great if you are looking for something interesting;False;False;;;;1610147566;;False;{};gilgo76;False;t3_ktdvy4;False;True;t3_ktdvy4;/r/anime/comments/ktdvy4/underrated_anime_suggestions_to_watch/gilgo76/;1610188956;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ambsase;;;[];;;;text;t2_5q2uk;False;False;[];;By those standards I'd say Demon Slayer, at least for the west. In Japan it's definitely more of a mainstream hit but I doubt many non-anime fans from the states are gonna know the name.;False;False;;;;1610147699;;False;{};gilgxka;False;t3_kte0mf;False;False;t3_kte0mf;/r/anime/comments/kte0mf/what_are_some_borderline_mainstream_anime/gilgxka/;1610189096;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDampGod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheDampGod;light;text;t2_im4vi;False;False;[];;Is Jojo's Bizzare Adventure mainstream yet, because I'm definitely starting to see more and more references appearing outside of anime spaces.;False;False;;;;1610147727;;False;{};gilgzis;False;t3_kte0mf;False;True;t3_kte0mf;/r/anime/comments/kte0mf/what_are_some_borderline_mainstream_anime/gilgzis/;1610189126;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Raijmet;;;[];;;;text;t2_8m4higx8;False;False;[];;kenichi: world's strongest disciple, Hitman: reborn (action really starts at ep. 50), Campion, Rah xephone, fruits basket, Shuffle, and Soul eater. There are thousands out there. If you had a genre we could help more.;False;False;;;;1610147855;;False;{};gilh8ly;False;t3_ktdvy4;False;False;t3_ktdvy4;/r/anime/comments/ktdvy4/underrated_anime_suggestions_to_watch/gilh8ly/;1610189265;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;I agree, I think some people in the West over-estimate how popular it is here because of how popular it is in Japan.;False;False;;;;1610147951;;False;{};gilhfj2;False;t3_kte0mf;False;True;t1_gilgxka;/r/anime/comments/kte0mf/what_are_some_borderline_mainstream_anime/gilhfj2/;1610189370;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Raejuan;;;[];;;;text;t2_2ho5vd6k;False;False;[];;Girls last tour maybe?;False;False;;;;1610148055;;False;{};gilhn0i;False;t3_kte07u;False;False;t3_kte07u;/r/anime/comments/kte07u/anime_where_people_are_isolated/gilhn0i/;1610189479;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;">そうなんですか… へぇ… - - ソウナンですか? - -(I have no idea what these weird symbols mean, I know google translate...)";False;False;;;;1610148069;;False;{};gilhnyy;False;t3_kte07u;False;True;t1_gilghrp;/r/anime/comments/kte07u/anime_where_people_are_isolated/gilhnyy/;1610189493;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LegendaryRQA;;;[];;;;text;t2_hszyq;False;False;[];;"Re:Creators - -Girls und Panzer";False;False;;;;1610148069;;False;{};gilho01;False;t3_ktdvy4;False;False;t3_ktdvy4;/r/anime/comments/ktdvy4/underrated_anime_suggestions_to_watch/gilho01/;1610189493;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610148078;;False;{};gilhona;False;t3_kte0mf;False;True;t1_gilgxka;/r/anime/comments/kte0mf/what_are_some_borderline_mainstream_anime/gilhona/;1610189502;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"Steins; Gate - -Angel Beats - -Toradora - -Mirai Nikki - -Very popular but most non-anime viewers won't know about them like they would Death Note, Naruto and Pokémon.";False;False;;;;1610148106;;False;{};gilhqmw;False;t3_kte0mf;False;True;t3_kte0mf;/r/anime/comments/kte0mf/what_are_some_borderline_mainstream_anime/gilhqmw/;1610189533;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;Perhaps something like Re:Zero ? I very rarely hear anything about it outside of the anime community, but it's obviously extremely popular within it. Perhaps it's the Isekai element that just doesn't resonate with a mainstream audience anymore like it did back when something like SAO aired.;False;False;;;;1610148177;;False;{};gilhvs1;False;t3_kte0mf;False;False;t3_kte0mf;/r/anime/comments/kte0mf/what_are_some_borderline_mainstream_anime/gilhvs1/;1610189609;9;True;False;anime;t5_2qh22;;0;[]; -[];;;dekalabia;;;[];;;;text;t2_qqkbdrk;False;False;[];;"Lol it's just a pun, - -そうなんですか、pratically is ""I see"" - -While 遭難 means to get lost of stranded, marooned";False;False;;;;1610148192;;False;{};gilhwvc;False;t3_kte07u;False;False;t1_gilhnyy;/r/anime/comments/kte07u/anime_where_people_are_isolated/gilhwvc/;1610189626;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ambsase;;;[];;;;text;t2_5q2uk;False;False;[];;I'd argue ninja's twitter followers have a pretty large overlap with the demographic that considers themselves at least casual fans of anime. This is nowhere close to what I'd say counts as leaving anime's normal sphere of influence.;False;False;;;;1610148247;;False;{};gili0xf;False;t3_kte0mf;False;True;t1_gilhona;/r/anime/comments/kte0mf/what_are_some_borderline_mainstream_anime/gili0xf/;1610189685;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bob_d_eel;;;[];;;;text;t2_713wv4m3;False;False;[];;Yeah I kinda agree I barley hear abt it but Ik a lot of people love it;False;False;;;;1610148292;;False;{};gili47m;False;t3_kte0mf;False;True;t1_gilgkhg;/r/anime/comments/kte0mf/what_are_some_borderline_mainstream_anime/gili47m/;1610189732;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xRuneRocker;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RuneRocker;light;text;t2_15j3i4;False;False;[];;[Link](https://dengekionline.com/articles/63221/) to the article with the website link.;False;False;;;;1610148379;;False;{};giliaj0;False;t3_ktel2s;False;True;t3_ktel2s;/r/anime/comments/ktel2s/mysterious_sao_countdown_website_up_elon_musk_3/giliaj0/;1610189824;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wutzabut4;;;[];;;;text;t2_152egp;False;False;[];;Maybe K-On? It seems like no one knows about slice of life anime outside the community unless it has a ridiculous premise like Dragon Maid, but pretty much everyone in community knows K-On is among the most popular SoLs.;False;False;;;;1610148397;;False;{};gilibty;False;t3_kte0mf;False;True;t3_kte0mf;/r/anime/comments/kte0mf/what_are_some_borderline_mainstream_anime/gilibty/;1610189843;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;people who know anime love it. people who dont know anime probably wont recognize it.;False;False;;;;1610148523;;False;{};gilil9m;False;t3_kte0mf;False;True;t1_gili47m;/r/anime/comments/kte0mf/what_are_some_borderline_mainstream_anime/gilil9m/;1610189985;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;Yes, from translate I recognised the joke, both sound the same, but different meaning. 😁;False;False;;;;1610148973;;False;{};giljiju;False;t3_kte07u;False;True;t1_gilhwvc;/r/anime/comments/kte07u/anime_where_people_are_isolated/giljiju/;1610190491;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sin778;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/Philipp2002;light;text;t2_42jtk419;False;False;[];;Kubikiri Cycle;False;False;;;;1610149238;;False;{};gilk2fs;False;t3_kte07u;False;True;t3_kte07u;/r/anime/comments/kte07u/anime_where_people_are_isolated/gilk2fs/;1610190798;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Wittusus, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610149372;moderator;False;{};gilkce8;False;t3_ktexxf;False;True;t3_ktexxf;/r/anime/comments/ktexxf/something_similar_to_arifureta/gilkce8/;1610190952;1;False;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Honestly, you hit most of the good ones already. Maybe Wise Mans Grandchild or Isekai Cheat Magician? - -You might also be interested in r/Arifureta.";False;False;;;;1610149519;;False;{};gilkni4;False;t3_ktexxf;False;True;t3_ktexxf;/r/anime/comments/ktexxf/something_similar_to_arifureta/gilkni4/;1610191115;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wittusus;;;[];;;;text;t2_tpmxkqy;False;False;[];;What about fantasy without isekai?;False;False;;;;1610149794;;False;{};gill8e4;True;t3_ktexxf;False;False;t1_gilkni4;/r/anime/comments/ktexxf/something_similar_to_arifureta/gill8e4/;1610191434;1;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;You don't usually see fantasy shows with modern tech/ideas that aren't Isekai, since those ideas get brought over to the new world by the MC's.;False;False;;;;1610149870;;False;{};gille8f;False;t3_ktexxf;False;True;t1_gill8e4;/r/anime/comments/ktexxf/something_similar_to_arifureta/gille8f/;1610191521;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sphic;;;[];;;;text;t2_eouvl;False;False;[];;"Steins;gate felt pretty psychological";False;False;;;;1610150005;;False;{};gilloif;False;t3_ktf2vp;False;True;t3_ktf2vp;/r/anime/comments/ktf2vp/got_any_good_psychological_anime_recs/gilloif/;1610191680;0;True;False;anime;t5_2qh22;;0;[]; -[];;;FatballerinGG;;;[];;;;text;t2_3665h7u7;False;False;[];;Death note, death parade( seen only first 2 eps);False;False;;;;1610150037;;False;{};gillqwv;False;t3_ktf2vp;False;True;t3_ktf2vp;/r/anime/comments/ktf2vp/got_any_good_psychological_anime_recs/gillqwv/;1610191718;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;Monster;False;False;;;;1610150100;;False;{};gillvnh;False;t3_ktf2vp;False;True;t3_ktf2vp;/r/anime/comments/ktf2vp/got_any_good_psychological_anime_recs/gillvnh/;1610191789;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;"Serial experiments lain - -Monster - -Shinsekai yori";False;False;;;;1610150110;;False;{};gillwbo;False;t3_ktf2vp;False;True;t3_ktf2vp;/r/anime/comments/ktf2vp/got_any_good_psychological_anime_recs/gillwbo/;1610191799;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sweetcreems;;;[];;;;text;t2_y1u9kxw;False;False;[];;"Beastars - -Tokyo Ghoul - -D.Gray-Man (it takes a fat minute to get there but it’s there. Definitely not a psychological-centric show tho) - -ID:Invaded - -Monster - -Re:Zero - -Terror in Resonance - -Edit: who tf is going around disliking recommendations? I’ve seen this happen on like eight different threads lol.";False;False;;;;1610150142;;1610150745.0;{};gillyqt;False;t3_ktf2vp;False;True;t3_ktf2vp;/r/anime/comments/ktf2vp/got_any_good_psychological_anime_recs/gillyqt/;1610191835;0;True;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;I think HxH is still there, Killuah and Hisoka are known outside the anime community, but that doesn't apply to the rest of the anime. Maybe some memable anime like Konosuba or Non non biyori;False;False;;;;1610150200;;False;{};gilm31j;False;t3_kte0mf;False;True;t3_kte0mf;/r/anime/comments/kte0mf/what_are_some_borderline_mainstream_anime/gilm31j/;1610191903;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Death Note - -Erased - -Death Parade - -Steins; Gate - -Re Zero Starting Life in Another World - -Banana Fish - -Psycho-Pass - -The Promised Neverland - -Made in Abyss - -Mahou Shoujo Madoka Magica - -Another - -Shinsekai Yori - -Talentless Nana - -Gakkou-Gurashi";False;False;;;;1610150267;;False;{};gilm7wg;False;t3_ktf2vp;False;False;t3_ktf2vp;/r/anime/comments/ktf2vp/got_any_good_psychological_anime_recs/gilm7wg/;1610191978;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lazyluvlullaby;;;[];;;;text;t2_3m53uqj6;False;False;[];;Thank you !;False;False;;;;1610150315;;False;{};gilmbf4;True;t3_ktf2vp;False;True;t1_gilm7wg;/r/anime/comments/ktf2vp/got_any_good_psychological_anime_recs/gilmbf4/;1610192034;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;Terror in resonance is far from underrated;False;False;;;;1610150316;;False;{};gilmbgm;False;t3_ktdvy4;False;True;t1_gilfl96;/r/anime/comments/ktdvy4/underrated_anime_suggestions_to_watch/gilmbgm/;1610192034;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sir_aphim;;;[];;;;text;t2_7qpo130j;False;False;[];;"Depends on the aspects of Arifureta you want: - -If you want to stick with isekai with a Smart/OP/resourceful mc: - -No game no life - -Knights and magic - -Log horizon - -Oda Nobuna no Yabou - -Shinchou Yuusha: Kono Yuusha ga Ore Tueee Kuse ni Shinchou Sugiru - -Mondaiji-tachi ga Isekai kara Kuru Sou Desu yo? - -Isekai Maou to Shoukan Shoujo no Dorei Majutsu - - -Non isekai fantasy series that might also fit the bill with a resourceful, competent MC: - -Goblin Slayer - -Nejimaki Seirei Senki: Tenkyou no Alderamin - -Rokka no Yuusha";False;False;;;;1610150455;;False;{};gilmluz;False;t3_ktexxf;False;True;t3_ktexxf;/r/anime/comments/ktexxf/something_similar_to_arifureta/gilmluz/;1610192194;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;You're welcome.;False;False;;;;1610150529;;False;{};gilmrac;False;t3_ktf2vp;False;True;t1_gilmbf4;/r/anime/comments/ktf2vp/got_any_good_psychological_anime_recs/gilmrac/;1610192277;0;True;False;anime;t5_2qh22;;0;[]; -[];;;lazyluvlullaby;;;[];;;;text;t2_3m53uqj6;False;False;[];;I haven’t heard of ID: invaded before. Thank you !!;False;False;;;;1610150556;;False;{};gilmt1v;True;t3_ktf2vp;False;True;t1_gillyqt;/r/anime/comments/ktf2vp/got_any_good_psychological_anime_recs/gilmt1v/;1610192303;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610150625;;1610150931.0;{};gilmy2z;False;t3_ktf2vp;False;True;t3_ktf2vp;/r/anime/comments/ktf2vp/got_any_good_psychological_anime_recs/gilmy2z/;1610192381;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610150708;moderator;False;{};giln44y;False;t3_ktfdps;False;True;t3_ktfdps;/r/anime/comments/ktfdps/looking_for_retro_anime_with_good_animation/giln44y/;1610192476;1;False;False;anime;t5_2qh22;;0;[]; -[];;;lazyluvlullaby;;;[];;;;text;t2_3m53uqj6;False;False;[];;Thank you sm !! I will definitely check out fruits basket;False;False;;;;1610150730;;False;{};giln5r8;True;t3_ktf2vp;False;True;t1_gilmy2z;/r/anime/comments/ktf2vp/got_any_good_psychological_anime_recs/giln5r8/;1610192501;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610150733;moderator;False;{};giln5yw;False;t3_ktfdzn;False;True;t3_ktfdzn;/r/anime/comments/ktfdzn/web_developer_for_anime_website/giln5yw/;1610192504;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Sweetcreems;;;[];;;;text;t2_y1u9kxw;False;False;[];;You’re welcome, have fun!;False;False;;;;1610150832;;False;{};gilnd11;False;t3_ktf2vp;False;True;t1_gilmt1v;/r/anime/comments/ktf2vp/got_any_good_psychological_anime_recs/gilnd11/;1610192611;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610150974;;False;{};gilnn6n;False;t3_ktfdps;False;True;t3_ktfdps;/r/anime/comments/ktfdps/looking_for_retro_anime_with_good_animation/gilnn6n/;1610192763;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;"Magnetic Rose - -Ninja Scroll (or anything else by Yoshiaki Kawajiri)";False;False;;;;1610150976;;False;{};gilnnd2;False;t3_ktfdps;False;True;t3_ktfdps;/r/anime/comments/ktfdps/looking_for_retro_anime_with_good_animation/gilnnd2/;1610192766;1;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;Try some old OVAs. Black Magic M-66 and Area 88 are good ones.;False;False;;;;1610150995;;False;{};gilnoqp;False;t3_ktfdps;False;True;t3_ktfdps;/r/anime/comments/ktfdps/looking_for_retro_anime_with_good_animation/gilnoqp/;1610192789;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sir_aphim;;;[];;;;text;t2_7qpo130j;False;False;[];;Btooom!;False;False;;;;1610151033;;False;{};gilnrer;False;t3_kte07u;False;True;t3_kte07u;/r/anime/comments/kte07u/anime_where_people_are_isolated/gilnrer/;1610192830;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mcneilly12;;;[];;;;text;t2_wrf5o;False;False;[];;Cowboy bebop has pretty good animation quality;False;False;;;;1610151090;;False;{};gilnvkh;False;t3_ktfdps;False;True;t3_ktfdps;/r/anime/comments/ktfdps/looking_for_retro_anime_with_good_animation/gilnvkh/;1610192894;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;"To answer your edit, there’s people that go around just disliking every comment. As someone who pretty much only sorts by new, there’s a lot of the times I’ll see almost every comment downvoted on new posts regardless what they are saying - -Also besides that people will downvote suggestions quite often it seems so theirs get pushed to the top. Pretty shitty but nothing you can do besides upvoting everyone to counteract it";False;False;;;;1610151203;;False;{};gilo3q1;False;t3_ktf2vp;False;True;t1_gillyqt;/r/anime/comments/ktf2vp/got_any_good_psychological_anime_recs/gilo3q1/;1610193018;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610151458;;False;{};gilolwj;False;t3_ktfdps;False;False;t1_gilnvkh;/r/anime/comments/ktfdps/looking_for_retro_anime_with_good_animation/gilolwj/;1610193296;1;True;False;anime;t5_2qh22;;0;[]; -[];;;H-Ryougi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DizzyAvocado/animelist;light;text;t2_pr24s;False;False;[];;Gunbuster;False;False;;;;1610151507;;False;{};gilopa4;False;t3_ktfdps;False;True;t3_ktfdps;/r/anime/comments/ktfdps/looking_for_retro_anime_with_good_animation/gilopa4/;1610193360;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"How about other old Gainax anime: Gunbuster, Nadia, Kare Kano, etc? - -Have you seen any Macross?";False;False;;;;1610151602;;False;{};gilow2p;False;t3_ktfdps;False;True;t3_ktfdps;/r/anime/comments/ktfdps/looking_for_retro_anime_with_good_animation/gilow2p/;1610193470;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610151888;;False;{};gilpgrj;False;t3_ktfdps;False;True;t3_ktfdps;/r/anime/comments/ktfdps/looking_for_retro_anime_with_good_animation/gilpgrj/;1610193797;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;"As an anime, I doubt it is mainstream. - -But as a meme Jojo is definitely mainstream.";False;False;;;;1610151947;;False;{};gilpl04;False;t3_kte0mf;False;True;t1_gilgzis;/r/anime/comments/kte0mf/what_are_some_borderline_mainstream_anime/gilpl04/;1610193861;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Wittusus;;;[];;;;text;t2_tpmxkqy;False;False;[];;Yeah but due to lack of isekai you've talked about I would appreciate normal ones like 7 deadly sins or something;False;False;;;;1610152056;;False;{};gilpstj;True;t3_ktexxf;False;True;t1_gille8f;/r/anime/comments/ktexxf/something_similar_to_arifureta/gilpstj/;1610193983;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi cbumpa, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610152148;moderator;False;{};gilpzag;False;t3_ktftck;False;True;t3_ktftck;/r/anime/comments/ktftck/underdog_anime_suggestions_for_my_friend_and_i/gilpzag/;1610194083;1;False;False;anime;t5_2qh22;;0;[]; -[];;;H-Ryougi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DizzyAvocado/animelist;light;text;t2_pr24s;False;False;[];;"Selector Infected and Spread WIXOSS - -Higurashi Gou - -Serial Experiments Lain - -Devilman Crybaby - -Death Note - -Youjo Senki - -Gakkou Gurashi";False;False;;;;1610152229;;False;{};gilq55c;False;t3_ktfmme;False;True;t3_ktfmme;/r/anime/comments/ktfmme/are_there_any_other_anime_besides_black_lagoon/gilq55c/;1610194174;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;"Anime that have a cult following but not-so far reached into the casual crowd fit well into this category, anime like Jojo, Nichijou and more recently Beastars. - -What also comes to mind is The Devil is a Part-Timer. It is definitely really popular, on MAL it has over 1 million members, but I never see casual anime fans mention it.";False;False;;;;1610152244;;False;{};gilq66g;False;t3_kte0mf;False;True;t3_kte0mf;/r/anime/comments/kte0mf/what_are_some_borderline_mainstream_anime/gilq66g/;1610194191;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SolarReaction;;;[];;;;text;t2_2ve2s3f2;False;False;[];;I started watching macross zero but I got bored of it.;False;False;;;;1610152439;;False;{};gilqk89;True;t3_ktfdps;False;True;t1_gilow2p;/r/anime/comments/ktfdps/looking_for_retro_anime_with_good_animation/gilqk89/;1610194406;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MrMiniMuffin;;;[];;;;text;t2_1o11j769;False;False;[];;Jojo's;False;False;;;;1610152492;;False;{};gilqnz4;False;t3_ktfwse;False;True;t3_ktfwse;/r/anime/comments/ktfwse/should_i_watch_gintama_or_jojos/gilqnz4/;1610194465;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;both are good, so flip a coin;False;False;;;;1610152547;;False;{};gilqs0i;False;t3_ktfwse;False;True;t3_ktfwse;/r/anime/comments/ktfwse/should_i_watch_gintama_or_jojos/gilqs0i/;1610194527;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PixarBoy2002;;;[];;;;text;t2_4a86zhia;False;False;[];;Jojo is fun and very enjoyable. I know some people will dislike me for saying this because many people love part three. But feel like I should say its one of if not the longest season and its pretty much just fight after fight.;False;False;;;;1610152559;;False;{};gilqsw1;False;t3_ktfwse;False;True;t3_ktfwse;/r/anime/comments/ktfwse/should_i_watch_gintama_or_jojos/gilqsw1/;1610194541;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;False;[];;"I think it's just a little too weird to ever be mainstream. The maids, Roswaal, the way Subaru acts, Puck, Beatrice, there's a lot of weird shit in that show, man. - -I mean I love the shit out of it but damn it's odd.";False;False;;;;1610152562;;False;{};gilqt4w;False;t3_kte0mf;False;True;t1_gilhvs1;/r/anime/comments/kte0mf/what_are_some_borderline_mainstream_anime/gilqt4w/;1610194544;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MasterpieceSafe6558;;;[];;;;text;t2_98s76hoy;False;False;[];;DARKER;False;False;;;;1610152614;;False;{};gilqwwd;True;t3_ktfmme;False;True;t1_gilq55c;/r/anime/comments/ktfmme/are_there_any_other_anime_besides_black_lagoon/gilqwwd/;1610194605;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Chippy_the_Monk;;;[];;;;text;t2_2a7i0bbz;False;False;[];;Jojo’s;False;False;;;;1610152702;;False;{};gilr38n;False;t3_ktfwse;False;True;t3_ktfwse;/r/anime/comments/ktfwse/should_i_watch_gintama_or_jojos/gilr38n/;1610194707;0;True;False;anime;t5_2qh22;;0;[]; -[];;;MusubiKazesaru;;;[];;;;text;t2_oh8ti;False;False;[];;JoJo;False;False;;;;1610152928;;False;{};gilrjjb;False;t3_ktfwse;False;True;t3_ktfwse;/r/anime/comments/ktfwse/should_i_watch_gintama_or_jojos/gilrjjb/;1610194960;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KarlMihel;;;[];;;;text;t2_3ktxpt07;False;False;[];;"A silent voice if you haven't watched it - -It is a movie not a 'show' but it's really good";False;False;;;;1610153079;;False;{};gilrubu;False;t3_ktftck;False;True;t3_ktftck;/r/anime/comments/ktftck/underdog_anime_suggestions_for_my_friend_and_i/gilrubu/;1610195125;3;True;False;anime;t5_2qh22;;0;[]; -[];;;heartmamichan;;skip7;[];;;dark;text;t2_8h1lj87x;False;False;[];;He forgot about her.;False;False;;;;1610153459;;False;{};gilslju;False;t3_ktg69v;False;True;t3_ktg69v;/r/anime/comments/ktg69v/dragon_ball_possible_lovers/gilslju/;1610195565;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610153485;moderator;False;{};gilsnhy;False;t3_ktg7in;False;True;t3_ktg7in;/r/anime/comments/ktg7in/does_anyone_know_the_anime/gilsnhy/;1610195598;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi alphakingkiller, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610153547;moderator;False;{};gilsrx2;False;t3_ktg88n;False;True;t3_ktg88n;/r/anime/comments/ktg88n/recommendation_for_action_anime/gilsrx2/;1610195671;1;False;False;anime;t5_2qh22;;0;[]; -[];;;SatouSmith;;;[];;;;text;t2_85ir9527;False;False;[];;Yuru Yuri;False;False;;;;1610153616;;False;{};gilsww7;False;t3_ktg7in;False;True;t3_ktg7in;/r/anime/comments/ktg7in/does_anyone_know_the_anime/gilsww7/;1610195748;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gamersfun2595;;;[];;;;text;t2_81tz3vmd;False;False;[];;Well he needs to bring her back;False;False;;;;1610153631;;False;{};gilsy1c;True;t3_ktg69v;False;True;t1_gilslju;/r/anime/comments/ktg69v/dragon_ball_possible_lovers/gilsy1c/;1610195766;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheAnimeSyndicate;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;I Post Completed Anime;dark;text;t2_43nqhnqw;False;False;[];;"r/CompletedActionAnime that’s apart of the [completed anime list by genres](https://www.reddit.com/user/theanimesyndicate/m/completedanimecollection_can/) that I update monthly on reddit. - - -Also, try not to abbreviate every world or double check your spelling, make it easier for everyone you’re trying to reach out to";False;False;;;;1610153671;;False;{};gilt0ut;False;t3_ktg88n;False;True;t3_ktg88n;/r/anime/comments/ktg88n/recommendation_for_action_anime/gilt0ut/;1610195813;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610153697;;False;{};gilt2rl;False;t3_ktg3ih;False;True;t3_ktg3ih;/r/anime/comments/ktg3ih/list_of_all_anime_on_tubi_tv_watch_230_free_and/gilt2rl/;1610195845;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;Doesn’t Tubi have ads;False;False;;;;1610153699;;False;{};gilt2x0;False;t3_ktg3ih;False;True;t3_ktg3ih;/r/anime/comments/ktg3ih/list_of_all_anime_on_tubi_tv_watch_230_free_and/gilt2x0/;1610195848;2;True;False;anime;t5_2qh22;;0;[]; -[];;;alphakingkiller;;;[];;;;text;t2_5tlw0dvk;False;False;[];;Not taken and thx for the links;False;False;;;;1610153766;;False;{};gilt7qq;True;t3_ktg88n;False;True;t1_gilt0ut;/r/anime/comments/ktg88n/recommendation_for_action_anime/gilt7qq/;1610195929;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ChadNine;;;[];;;;text;t2_3x0awfrg;False;False;[];;"Ergo Proxy - -Serial Experiments Lain - -Monster - -Kino's Journey: The Beautiful World - -Boogiepop Phantom - -Ping Pong the Animation - -Tatami Galaxy - -Death Parade - -Death Note - -Paranoia Agent - -Psycho-Pass - -Future Diary - -Kakegurui - -Revolutionary Girl Utena - -Welcome to Irabu's Office - - - -Texhnolyze (Personally wasn't a big fan) - -Aku No Hana (mediocre unfinished anime but good manga)";False;False;;;;1610154037;;False;{};giltr49;False;t3_ktf2vp;False;True;t3_ktf2vp;/r/anime/comments/ktf2vp/got_any_good_psychological_anime_recs/giltr49/;1610196244;1;True;False;anime;t5_2qh22;;0;[]; -[];;;smiley-rell;;;[];;;;text;t2_9iaznvjw;False;False;[];;World trigger.;False;False;;;;1610154066;;False;{};giltt4t;False;t3_ktdvy4;False;True;t3_ktdvy4;/r/anime/comments/ktdvy4/underrated_anime_suggestions_to_watch/giltt4t/;1610196278;1;True;False;anime;t5_2qh22;;0;[]; -[];;;truecore;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/truexyrael;light;text;t2_qqew5;False;False;[];;"The courage to accept the label of pervert. - -Ah, yes. Content I can relate to.";False;False;;;;1610154190;;False;{};gilu21i;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gilu21i/;1610196426;183;True;False;anime;t5_2qh22;;0;[]; -[];;;infinite_lyy;;;[];;;;text;t2_9lftz77s;False;False;[];;Gintama!! The final movie just came out yesterday and I just finished reading it myself... It's so good! It starts with mostly comedy to set all the characters up, so when the serious arcs hit it's amazing! The comedy has a lot of references to pop culture and japanese culture so be ready for that tho. But I'd definitely say Gintama is one of the best out there :));False;False;;;;1610154206;;False;{};gilu37m;False;t3_ktfwse;False;True;t3_ktfwse;/r/anime/comments/ktfwse/should_i_watch_gintama_or_jojos/gilu37m/;1610196445;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;Why do I need to visit this scummy website to view a list of all anime on tubi;False;False;;;;1610154250;;False;{};gilu6fy;False;t3_ktg3ih;False;True;t3_ktg3ih;/r/anime/comments/ktg3ih/list_of_all_anime_on_tubi_tv_watch_230_free_and/gilu6fy/;1610196496;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;Funimation and Crunchyroll both do simulcasts of anime.;False;False;;;;1610154288;;False;{};gilu92s;False;t3_ktgfns;False;True;t3_ktgfns;/r/anime/comments/ktgfns/winter_2021_anime_streaming/gilu92s/;1610196539;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SpartanSlayer64;;;[];;;;text;t2_r2wgn;False;False;[];;The courage to brush your sister's teeth...;False;False;;;;1610154311;;False;{};giluar1;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/giluar1/;1610196565;512;True;False;anime;t5_2qh22;;0;[]; -[];;;H-Ryougi;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DizzyAvocado/animelist;light;text;t2_pr24s;False;False;[];;Sengoku Nadeko;False;False;;;;1610154496;;False;{};giluo0x;False;t3_ktg1zw;False;False;t3_ktg1zw;/r/anime/comments/ktg1zw/what_female_character_has_the_best_written/giluo0x/;1610196782;8;True;False;anime;t5_2qh22;;0;[]; -[];;;infinite_lyy;;;[];;;;text;t2_9lftz77s;False;False;[];;Gintama! I see loads of memes/clips on anime places but it's not really known in the west;False;False;;;;1610154519;;False;{};gilupos;False;t3_kte0mf;False;True;t3_kte0mf;/r/anime/comments/kte0mf/what_are_some_borderline_mainstream_anime/gilupos/;1610196810;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610154523;moderator;False;{};gilupy3;False;t3_ktgiw7;False;True;t3_ktgiw7;/r/anime/comments/ktgiw7/need_help_figuring_out_what_anime_this_is_none_of/gilupy3/;1610196814;0;False;False;anime;t5_2qh22;;0;[]; -[];;;babydave371;;MAL a-amq;[];;https://myanimelist.net/profile/babydave371;dark;text;t2_sak6n;False;False;[];;I mean, that is the worst Macross and also the one which makes the least amount of sense.;False;False;;;;1610154667;;False;{};gilv0d0;False;t3_ktfdps;False;True;t1_gilqk89;/r/anime/comments/ktfdps/looking_for_retro_anime_with_good_animation/gilv0d0/;1610196980;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;Launch was forgotten by the author. Just like goku’s super saiyan 3 eyebrows;False;False;;;;1610154778;;False;{};gilv87b;False;t3_ktg69v;False;False;t3_ktg69v;/r/anime/comments/ktg69v/dragon_ball_possible_lovers/gilv87b/;1610197109;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SunYeee;;;[];;;;text;t2_5ofnhuak;False;False;[];;darker than black lol;False;False;;;;1610154851;;False;{};gilvdb2;False;t3_ktfmme;False;False;t1_gilqwwd;/r/anime/comments/ktfmme/are_there_any_other_anime_besides_black_lagoon/gilvdb2/;1610197192;1;True;False;anime;t5_2qh22;;0;[]; -[];;;treelittlebirds95;;;[];;;;text;t2_xda4w;False;False;[];;"My Hero Acedamia? - -A superhero-loving boy without any powers is determined to enroll in a prestigious hero academy and learn what it really means to be a hero.";False;False;;;;1610154857;;False;{};gilvdqz;False;t3_ktftck;False;True;t3_ktftck;/r/anime/comments/ktftck/underdog_anime_suggestions_for_my_friend_and_i/gilvdqz/;1610197200;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lazyluvlullaby;;;[];;;;text;t2_3m53uqj6;False;False;[];;Thank you sm!! There’s quite a few in there I haven’t watched;False;False;;;;1610154902;;False;{};gilvguw;True;t3_ktf2vp;False;True;t1_giltr49;/r/anime/comments/ktf2vp/got_any_good_psychological_anime_recs/gilvguw/;1610197253;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;The Pokémon Theme by Jason Paige;False;False;;;;1610154941;;False;{};gilvjn4;False;t3_ktgle9;False;False;t3_ktgle9;/r/anime/comments/ktgle9/whats_your_favorite_anime_song/gilvjn4/;1610197299;4;True;False;anime;t5_2qh22;;0;[]; -[];;;cbumpa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cbumpa;light;text;t2_4uaglc4u;False;False;[];;Yes I’ve heard this, my friend keeps telling me to watch it. Think I’ll watch it tonight!!!;False;False;;;;1610154963;;False;{};gilvl7s;True;t3_ktftck;False;True;t1_gilrubu;/r/anime/comments/ktftck/underdog_anime_suggestions_for_my_friend_and_i/gilvl7s/;1610197327;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cbumpa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cbumpa;light;text;t2_4uaglc4u;False;False;[];;Yeah I’ve seen this one, it’s pretty good.;False;False;;;;1610155002;;False;{};gilvo2k;True;t3_ktftck;False;True;t1_gilvdqz;/r/anime/comments/ktftck/underdog_anime_suggestions_for_my_friend_and_i/gilvo2k/;1610197373;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;Like, just because of the song? Hmm it's pretty close between [Aoi Tori](https://animethemes.moe/video/Bleach-ED27.webm) from Bleach and [Lion](https://animethemes.moe/video/MacrossF-OP3.webm) from Macross Frontier (this one having the bonus of [not one](https://youtu.be/1q14xCDm3Xc) but [*two*](https://youtu.be/xiaPWrcs_t0) remixes that are also medleys with the other songs from either Macross Frontier the show or Macross Frontier the movies, respectively, and the first one has [a *longer* version](https://youtu.be/t03lQIAwPbU) released on an OST as well). Lion is absolutely a banger, while I just really like Aoi Tori.;False;False;;;;1610155109;;False;{};gilvvp4;False;t3_ktgle9;False;False;t3_ktgle9;/r/anime/comments/ktgle9/whats_your_favorite_anime_song/gilvvp4/;1610197504;0;True;False;anime;t5_2qh22;;0;[]; -[];;;keithohara;;;[];;;;text;t2_gbzf7q;False;True;[];;Seeing the words chamloo and samurai reversed is weird;False;False;;;;1610155174;;False;{};gilw0d8;False;t3_ktgft1;False;False;t3_ktgft1;/r/anime/comments/ktgft1/champloo_samurai_first_timer_ive_missed_out_big/gilw0d8/;1610197585;6;True;False;anime;t5_2qh22;;0;[]; -[];;;GMorelli;;;[];;;;text;t2_13n5gj;False;False;[];;"[Here is Greenwood](https://saucenao.com/search.php?db=999&url=https%3A%2F%2Fimg3.saucenao.com%2Fframes%2F%3Fexpires%3D1610481600%26init%3Dcee331a27e7af14b%26data%3Dfde09e3865047da8296d1e3e15bacfad7f7506bea5c573616cd4f60fe87a71c58a501311a06cf61609c1d334bc1bc9162cb37f9a58b7cec45d243370b71ec72ed7831a045ec44c73771c038a048578f49edc2e9b06989d38004b634e0aa866a9374c30e99d96c1d35d0b8e98775d36e5%26auth%3Dd9d03b1d8064fd4fcf2f50b0ffbfacfcaeab2e1f)";False;False;;;;1610155193;;False;{};gilw1pf;False;t3_ktgiw7;False;True;t3_ktgiw7;/r/anime/comments/ktgiw7/need_help_figuring_out_what_anime_this_is_none_of/gilw1pf/;1610197609;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Odub04;;;[];;;;text;t2_3i7xzegz;False;False;[];;thanks! :);False;False;;;;1610155193;;False;{};gilw1pq;True;t3_ktfwse;False;True;t1_gilu37m;/r/anime/comments/ktfwse/should_i_watch_gintama_or_jojos/gilw1pq/;1610197609;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Cruel Angel's Thesis is great. I also have a soft spot for Unravel. Another song I like that isn't as popular is the Dororo ED Yamiyo;False;False;;;;1610155198;;False;{};gilw224;False;t3_ktgle9;False;True;t3_ktgle9;/r/anime/comments/ktgle9/whats_your_favorite_anime_song/gilw224/;1610197615;0;True;False;anime;t5_2qh22;;0;[]; -[];;;bidoofd;;;[];;;;text;t2_2rco4py1;False;False;[];;SC is freaking awesome! The director of SC also did cowboy bebop and space dandy. If you haven't seen them give them a shot!;False;False;;;;1610155235;;False;{};gilw4ph;False;t3_ktgft1;False;True;t3_ktgft1;/r/anime/comments/ktgft1/champloo_samurai_first_timer_ive_missed_out_big/gilw4ph/;1610197660;3;True;False;anime;t5_2qh22;;0;[]; -[];;;90sbaby100;;;[];;;;text;t2_9im4e8zq;False;False;[];;"Oh god damn, shows you how much of a noob I am loool. - -My bad.";False;False;;;;1610155246;;False;{};gilw5fx;True;t3_ktgft1;False;True;t1_gilw0d8;/r/anime/comments/ktgft1/champloo_samurai_first_timer_ive_missed_out_big/gilw5fx/;1610197673;3;True;False;anime;t5_2qh22;;0;[]; -[];;;xiavORliab;;;[];;;;text;t2_4dniju7s;False;False;[];;"Erza Scarlett and Lucy Heartfila from Fairy Tail - -They didnt really have good written ""character development"" but they were amazingly GREAT FEMALE CHARACTER. They were the strong woman types. - -Oh and Medaka Kurokami would fit in that as well.";False;False;;;;1610155284;;False;{};gilw86k;False;t3_ktg1zw;False;True;t3_ktg1zw;/r/anime/comments/ktg1zw/what_female_character_has_the_best_written/gilw86k/;1610197719;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;captainsurfa;;;[];;;;text;t2_44my5x0r;False;False;[];;Tenchi Muyo soundtrack was amazingly beautiful. [Talent for Love in English](https://youtu.be/1pMy_NBO4PU) is amazing. As is the Japanese version of [Talent for Love.](https://youtu.be/Y2WBIsAC7qs);False;False;;;;1610155319;;False;{};gilwanc;False;t3_ktgle9;False;True;t3_ktgle9;/r/anime/comments/ktgle9/whats_your_favorite_anime_song/gilwanc/;1610197759;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Tachibana from After The Rain;False;False;;;;1610155360;;False;{};gilwdka;False;t3_ktg1zw;False;True;t3_ktg1zw;/r/anime/comments/ktg1zw/what_female_character_has_the_best_written/gilwdka/;1610197806;2;True;False;anime;t5_2qh22;;0;[]; -[];;;smatthew_;;;[];;;;text;t2_13jgn9;False;False;[];;"Two words: baseball episode. - -You might like Baccano!. It's a good one.";False;False;;;;1610155385;;1610155962.0;{};gilwf8r;False;t3_ktgft1;False;False;t3_ktgft1;/r/anime/comments/ktgft1/champloo_samurai_first_timer_ive_missed_out_big/gilwf8r/;1610197834;4;True;False;anime;t5_2qh22;;0;[]; -[];;;90sbaby100;;;[];;;;text;t2_9im4e8zq;False;False;[];;"My friend who showed me that, said about cowboy bebop but he wouldn’t watch it again because he said he can’t go through that again. - -He said it was even better as-well. - -Didn’t realise how emotionally invested you get into these series. - -At first I was like I dunno man - -6 episodes later... don’t you dare die Jean don’t you dare.";False;False;;;;1610155416;;False;{};gilwhej;True;t3_ktgft1;False;False;t1_gilw4ph;/r/anime/comments/ktgft1/champloo_samurai_first_timer_ive_missed_out_big/gilwhej/;1610197870;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Talini;;;[];;;;text;t2_xyg3oev;False;False;[];;Yona from Akatsuki no Yona;False;False;;;;1610155437;;False;{};gilwiy5;False;t3_ktg1zw;False;False;t3_ktg1zw;/r/anime/comments/ktg1zw/what_female_character_has_the_best_written/gilwiy5/;1610197896;10;True;False;anime;t5_2qh22;;0;[]; -[];;;bidoofd;;;[];;;;text;t2_2rco4py1;False;False;[];;You're fine lol recommending anime is what I do lol;False;False;;;;1610155504;;False;{};gilwnoe;False;t3_ktgft1;False;True;t1_gilw5fx;/r/anime/comments/ktgft1/champloo_samurai_first_timer_ive_missed_out_big/gilwnoe/;1610197977;3;True;False;anime;t5_2qh22;;0;[]; -[];;;phoenix8107;;;[];;;;text;t2_65kab3aq;False;False;[];;Dark in what way?;False;False;;;;1610155692;;False;{};gilx0ur;False;t3_ktfmme;False;True;t3_ktfmme;/r/anime/comments/ktfmme/are_there_any_other_anime_besides_black_lagoon/gilx0ur/;1610198194;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TravisScotch--;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/TravisScotch/;light;text;t2_7fexh1u7;False;False;[];;"LN reader here. The 3rd season was adapted pretty poorly. Studio Feel is pretty biased towards Yui. These has always been the case but S3 is worse compared to S2. Big reason why anime watchers like Yui and LN readers like Yukino. If you read the LN you would know that Yui in no way had any chance with Hachiman. - - -The season was rated poorly because anime watchers are mad that Hachiman didn’t end up with the girl who had way more screen time and LN readers are mad they cut a bunch of Yukino content";False;False;;;;1610155705;;False;{};gilx1ql;False;t3_ktgqeo;False;True;t3_ktgqeo;/r/anime/comments/ktgqeo/my_teen_romantic_comedy_is_wrong_as_i_expected/gilx1ql/;1610198208;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mr-Logic101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Real_Scientist;light;text;t2_whfedpw;False;False;[];;I thought it was a pretty solid. I have only seen the first season tho. 8/10 for me. I know a different studio made the subsequent seasons so there is that;False;False;;;;1610155734;;False;{};gilx3rm;False;t3_ktgqeo;False;True;t3_ktgqeo;/r/anime/comments/ktgqeo/my_teen_romantic_comedy_is_wrong_as_i_expected/gilx3rm/;1610198242;1;True;False;anime;t5_2qh22;;0;[]; -[];;;XMissMetalx222;;;[];;;;text;t2_9aaxinwh;False;False;[];;**Sword of the Stranger , hajime ippo**;False;False;;;;1610155743;;False;{};gilx4ff;False;t3_ktg88n;False;True;t3_ktg88n;/r/anime/comments/ktg88n/recommendation_for_action_anime/gilx4ff/;1610198252;2;True;False;anime;t5_2qh22;;0;[]; -[];;;shrodingersRevenge;;;[];;;;text;t2_5i61lf9m;False;False;[];;Yu yu hakusho;False;False;;;;1610155770;;False;{};gilx6a7;False;t3_ktg88n;False;True;t3_ktg88n;/r/anime/comments/ktg88n/recommendation_for_action_anime/gilx6a7/;1610198282;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TravisScotch--;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/TravisScotch/;light;text;t2_7fexh1u7;False;False;[];;Can’t go wrong with either but I’d say Gintama;False;False;;;;1610155801;;False;{};gilx8hd;False;t3_ktfwse;False;True;t3_ktfwse;/r/anime/comments/ktfwse/should_i_watch_gintama_or_jojos/gilx8hd/;1610198320;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Flare_Knight;;;[];;;;text;t2_v5stf;False;False;[];;The original Digimon anime.;False;False;;;;1610155857;;False;{};gilxcgo;False;t3_kte07u;False;True;t3_kte07u;/r/anime/comments/kte07u/anime_where_people_are_isolated/gilxcgo/;1610198385;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mr-Logic101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Real_Scientist;light;text;t2_whfedpw;False;False;[];;"*Laughs in Shinsekai Yori* - -Shinsekai Yori is pretty much undisputed in my opinion. It is amount the best written anime out there and the characters actually are realistic to some effect. It is set over a 20 years period, so all the characters experience a lot of development as the age and grow up. The main character/protagonist is female as well - -I think ascendance of a Bookworm is also well done with respect to some realistic characters, I can’t say there is a lot of characters development tho";False;False;;;;1610155963;;False;{};gilxjtv;False;t3_ktg1zw;False;False;t3_ktg1zw;/r/anime/comments/ktg1zw/what_female_character_has_the_best_written/gilxjtv/;1610198505;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Kuro-Sawa;;;[];;;;text;t2_85nywjh0;False;False;[];;Fighter by kana boon from gundam: iron blooded orphans;False;False;;;;1610156070;;False;{};gilxreq;False;t3_ktgle9;False;True;t3_ktgle9;/r/anime/comments/ktgle9/whats_your_favorite_anime_song/gilxreq/;1610198627;0;True;False;anime;t5_2qh22;;0;[]; -[];;;k4r6000;;;[];;;;text;t2_3q0qar7q;False;False;[];;Anthy Himemiya. Really all of the characters are extremely well-written in Revolutionary Girl Utena, but it is Anthy that is the central figure of the entire story and the one whom it is ultimately about.;False;False;;;;1610156086;;False;{};gilxsjz;False;t3_ktg1zw;False;False;t3_ktg1zw;/r/anime/comments/ktg1zw/what_female_character_has_the_best_written/gilxsjz/;1610198645;4;True;False;anime;t5_2qh22;;0;[]; -[];;;bidoofd;;;[];;;;text;t2_2rco4py1;False;False;[];;Lol good anime does that too you. And id agree to that too, cowboy bebop is in my top 3 and for good reason. You won't be disappointed!;False;False;;;;1610156087;;False;{};gilxsll;False;t3_ktgft1;False;True;t1_gilwhej;/r/anime/comments/ktgft1/champloo_samurai_first_timer_ive_missed_out_big/gilxsll/;1610198646;3;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;"Nice! I really LOVE the ""Tenchi Muyo"" Song by Sonia Wonderland. - -Here's an actual live performance by them for that song - -https://m.youtube.com/watch?v=7G7cXvLhks8";False;False;;;;1610156091;;False;{};gilxsvz;False;t3_ktgle9;False;True;t1_gilwanc;/r/anime/comments/ktgle9/whats_your_favorite_anime_song/gilxsvz/;1610198651;1;True;False;anime;t5_2qh22;;0;[]; -[];;;90sbaby100;;;[];;;;text;t2_9im4e8zq;False;False;[];;"I’m sold. - -I have finally seen the light brother. Wish me luck. - -Give me a couple months I’ll be a seasoned watcher. - -Plenty of time to kill during this lockdown as well";False;False;;;;1610156178;;False;{};gilxz0i;True;t3_ktgft1;False;True;t1_gilxsll;/r/anime/comments/ktgft1/champloo_samurai_first_timer_ive_missed_out_big/gilxz0i/;1610198759;3;True;False;anime;t5_2qh22;;0;[]; -[];;;90sbaby100;;;[];;;;text;t2_9im4e8zq;False;False;[];;"Yeah I remember that bit, I was like wtf aha. - -I’ll check it out, thank you!";False;False;;;;1610156213;;False;{};gily1eq;True;t3_ktgft1;False;True;t1_gilwf8r;/r/anime/comments/ktgft1/champloo_samurai_first_timer_ive_missed_out_big/gily1eq/;1610198801;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mr-Logic101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Real_Scientist;light;text;t2_whfedpw;False;False;[];;"Yes.... - -Texhnolyze is probably among some of the darkest most bleak shows to exist - -Ergo Proxy. Another end of the world experience - -Neon Genesis Evangelion. Another end of the world experience - -Shinsekai Yori. Pretty dark but not as grim as the others - -The Promised Neverland. Farm. Use your imagination - -Darker than black is darker than black. Not as end of the worldish as the others - -When they cry - -Serial Experiments Lain - -Death Parade";False;False;;;;1610156237;;False;{};gily324;False;t3_ktfmme;False;True;t3_ktfmme;/r/anime/comments/ktfmme/are_there_any_other_anime_besides_black_lagoon/gily324/;1610198827;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MusubiKazesaru;;;[];;;;text;t2_oh8ti;False;False;[];;Yoko from Juuni Kokuni has very good character development.;False;False;;;;1610156247;;False;{};gily3s4;False;t3_ktg1zw;False;True;t3_ktg1zw;/r/anime/comments/ktg1zw/what_female_character_has_the_best_written/gily3s4/;1610198839;3;True;False;anime;t5_2qh22;;0;[]; -[];;;phoenix8107;;;[];;;;text;t2_65kab3aq;False;False;[];;A favorite genre of mine! Ones I really enjoyed: Death Note, Madoka Magica, Psycho-Pass, Higurashi (I have only seen the old one), Ghost in the Shell series, Serial Experiments Lain, Texhnolyze, and Ergo Proxy - a top fave of mine.;False;False;;;;1610156298;;False;{};gily7ao;False;t3_ktf2vp;False;True;t3_ktf2vp;/r/anime/comments/ktf2vp/got_any_good_psychological_anime_recs/gily7ao/;1610198901;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;True;[];;Added to PTW;False;False;;;;1610156356;;False;{};gilybas;False;t3_ktgxc1;False;True;t3_ktgxc1;/r/anime/comments/ktgxc1/quality_scene_the_promised_neverland/gilybas/;1610198998;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bidoofd;;;[];;;;text;t2_2rco4py1;False;False;[];;Hell yeah! If you ever want to talk more anime just throw me a message yo!;False;False;;;;1610156593;;False;{};gilyrmb;False;t3_ktgft1;False;True;t1_gilxz0i;/r/anime/comments/ktgft1/champloo_samurai_first_timer_ive_missed_out_big/gilyrmb/;1610199276;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610156600;moderator;False;{};gilys2y;False;t3_kth4fr;False;True;t3_kth4fr;/r/anime/comments/kth4fr/help_me_find_an_anime/gilys2y/;1610199284;1;False;False;anime;t5_2qh22;;0;[]; -[];;;90sbaby100;;;[];;;;text;t2_9im4e8zq;False;False;[];;Will do brother;False;False;;;;1610156644;;False;{};gilyv2s;True;t3_ktgft1;False;True;t1_gilyrmb;/r/anime/comments/ktgft1/champloo_samurai_first_timer_ive_missed_out_big/gilyv2s/;1610199333;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kookospuuro;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Kookospuuro/;light;text;t2_3poom3wa;False;False;[];;"I like the series a lot, especially the characters. - -But there were two major negatives in this season: - -* Too little screen time for Yukino -* Too much dilly-dallying with the festival - -Many might say that Yui got way too much screen time (could be true) but that's just because Yukino got. so. little. I haven't read the LN to the end yet so I don't know how it goes there. Would have been great to see a lot more of her with 8man as it was their pairing that everything was building up to. It was very clear who was the ultimate goal even for a Yui stanner like me. - -And the festival planning was just... too stretched out and tedius and not that exciting of a event for the series or it wasn't just done friskily enough in the anime. - -Those be my complaints about the season.";False;False;;;;1610156833;;False;{};gilz7xp;False;t3_ktgqeo;False;False;t3_ktgqeo;/r/anime/comments/ktgqeo/my_teen_romantic_comedy_is_wrong_as_i_expected/gilz7xp/;1610199546;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JiraiyaCop;;;[];;;;text;t2_1yewdvz8;False;False;[];;Oscar from Rose of Versailles is one of the best I've seen;False;False;;;;1610157113;;False;{};gilzriw;False;t3_ktg1zw;False;False;t3_ktg1zw;/r/anime/comments/ktg1zw/what_female_character_has_the_best_written/gilzriw/;1610199878;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WhatAreRoads;;;[];;;;text;t2_7bf5t1gl;False;False;[];;I think the only worth in it is the comedy which is pretty dry I’ve heard;False;True;;comment score below threshold;;1610157122;;False;{};gilzs3k;False;t3_kth985;False;True;t3_kth985;/r/anime/comments/kth985/is_assassination_classroom_worth_watching/gilzs3k/;1610199888;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610157129;moderator;False;{};gilzslz;False;t3_kth9o5;False;True;t3_kth9o5;/r/anime/comments/kth9o5/help_finding_an_anime/gilzslz/;1610199897;1;False;False;anime;t5_2qh22;;0;[]; -[];;;wild_torto;;;[];;;;text;t2_b98d27m;False;False;[];;"Isekai among us netflix adaptation - - - - - - -Jk";False;False;;;;1610157145;;False;{};gilztmw;False;t3_kth4fr;False;True;t3_kth4fr;/r/anime/comments/kth4fr/help_me_find_an_anime/gilztmw/;1610199915;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AxtheCool;;;[];;;;text;t2_y2vk9;False;False;[];;"I just always though of the show being pretentious and while I enjoyed the SoL aspects of the show the romance aspects were very clitche and very drawn out overall. S2 also dialed the clitche drama and long monologues to 11 and made me dislike it more than S2. - -The main characters also never struck me as anything special and the side characters stood out and were much more interesting.";False;False;;;;1610157147;;False;{};gilztsn;False;t3_ktgqeo;False;True;t3_ktgqeo;/r/anime/comments/ktgqeo/my_teen_romantic_comedy_is_wrong_as_i_expected/gilztsn/;1610199919;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AxtheCool;;;[];;;;text;t2_y2vk9;False;False;[];;Yes AC is very good. Some dont like it but majority liked and enjoyed the show.;False;False;;;;1610157195;;False;{};gilzx51;False;t3_kth985;False;False;t3_kth985;/r/anime/comments/kth985/is_assassination_classroom_worth_watching/gilzx51/;1610199977;8;True;False;anime;t5_2qh22;;0;[]; -[];;;13rahma;;;[];;;;text;t2_1wqu8d41;False;True;[];;I found it to be an enjoyable show. You should watch it and decide for yourself.;False;False;;;;1610157200;;False;{};gilzxhs;False;t3_kth985;False;False;t3_kth985;/r/anime/comments/kth985/is_assassination_classroom_worth_watching/gilzxhs/;1610199983;6;True;False;anime;t5_2qh22;;0;[]; -[];;;sofiane99;;;[];;;;text;t2_4hy1xxi8;False;False;[];;Hahaha i knew it would sound like that;False;False;;;;1610157212;;False;{};gilzy8n;True;t3_kth4fr;False;True;t1_gilztmw;/r/anime/comments/kth4fr/help_me_find_an_anime/gilzy8n/;1610199997;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iAmInLoveWithA2dGirl;;;[];;;;text;t2_783nlx1q;False;False;[];;Why are you getting downvoted. This is all facts;False;False;;;;1610157217;;False;{};gilzym5;False;t3_ktgqeo;False;True;t1_gilx1ql;/r/anime/comments/ktgqeo/my_teen_romantic_comedy_is_wrong_as_i_expected/gilzym5/;1610200002;1;True;False;anime;t5_2qh22;;0;[]; -[];;;misthad;;;[];;;;text;t2_5drlt5b0;False;False;[];;Nah opm has broken through as a good show not just a good anime(s1 anyway);False;False;;;;1610157303;;False;{};gim04g4;False;t3_kte0mf;False;True;t1_gilgkhg;/r/anime/comments/kte0mf/what_are_some_borderline_mainstream_anime/gim04g4/;1610200104;1;True;False;anime;t5_2qh22;;0;[]; -[];;;smiley-rell;;;[];;;;text;t2_9iaznvjw;False;False;[];;My spirit anime girl.;False;False;;;;1610157330;;False;{};gim06ci;False;t3_kth6in;False;False;t3_kth6in;/r/anime/comments/kth6in/i_compiled_a_bunch_of_shimarin_noises_into_one/gim06ci/;1610200136;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Arch_Angel666;;;[];;;;text;t2_9jdu7;False;False;[];;Honestly, the last season was solid but I found the ending underwhelming. Overall it's a good series but my opinion of it definitely went down after the last season. It went from 8/10 to 7/10.;False;False;;;;1610157445;;False;{};gim0ebu;False;t3_ktgqeo;False;True;t3_ktgqeo;/r/anime/comments/ktgqeo/my_teen_romantic_comedy_is_wrong_as_i_expected/gim0ebu/;1610200276;3;True;False;anime;t5_2qh22;;0;[]; -[];;;playingwolves;;;[];;;;text;t2_13p1dr;False;False;[];;Food wars maybe? Idk;False;False;;;;1610157525;;False;{};gim0jqw;False;t3_kth9o5;False;True;t3_kth9o5;/r/anime/comments/kth9o5/help_finding_an_anime/gim0jqw/;1610200371;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;AmyThePuppyPrincess;;;[];;;;text;t2_5vgki1sz;False;False;[];;"I loved it, it's a very interesting concept. - - -Also Nagisa's adorable";False;False;;;;1610157681;;False;{};gim0ulm;False;t3_kth985;False;False;t3_kth985;/r/anime/comments/kth985/is_assassination_classroom_worth_watching/gim0ulm/;1610200555;5;True;False;anime;t5_2qh22;;0;[]; -[];;;nerdshark;;;[];;;;text;t2_45e8k;False;False;[];;It is incredible.;False;False;;;;1610157704;;False;{};gim0w76;False;t3_kth985;False;True;t3_kth985;/r/anime/comments/kth985/is_assassination_classroom_worth_watching/gim0w76/;1610200583;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610157721;;False;{};gim0xc1;False;t3_kte0mf;False;True;t3_kte0mf;/r/anime/comments/kte0mf/what_are_some_borderline_mainstream_anime/gim0xc1/;1610200602;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610157733;moderator;False;{};gim0y6r;False;t3_kthg95;False;True;t3_kthg95;/r/anime/comments/kthg95/i_was_watching_tokyo_ghoul_season_1_and_2_but_now/gim0y6r/;1610200616;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"# Source Material Corner - -Reply to this comment for any source-related discussion, future spoilers (including future characters, events and general hype about future content), comparison of the anime adaptation to the original, or just general talk about the source material. **You are still required to tag all spoilers.** Discussions about the source outside of this comment tree will be removed, and replying with spoilers outside of the source corner will lead to bans. - -The spoiler syntax is: -`[Spoiler source](/s ""Spoiler goes here"")` - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610157820;moderator;False;{};gim1444;False;t3_kthh9g;False;True;t3_kthh9g;/r/anime/comments/kthh9g/dragon_quest_dai_no_daibouken_episode_14/gim1444/;1610200717;1;False;True;anime;t5_2qh22;;0;[]; -[];;;Veslac2k;;;[];;;;text;t2_163l2j;False;False;[];;Erin from Kemono no Souja Erin;False;False;;;;1610157825;;False;{};gim14gh;False;t3_ktg1zw;False;True;t3_ktg1zw;/r/anime/comments/ktg1zw/what_female_character_has_the_best_written/gim14gh/;1610200723;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;Season 2 is mainly non canon. It’s why Tokyo ghoul’s anime adaptation is generally seen as a bad adaptation;False;False;;;;1610157845;;False;{};gim15tm;False;t3_kthg95;False;False;t3_kthg95;/r/anime/comments/kthg95/i_was_watching_tokyo_ghoul_season_1_and_2_but_now/gim15tm/;1610200746;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Centipede-sama;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Centipede143;light;text;t2_2zu8j8wa;False;False;[];;"In the manga, Kaneki fights Arima and ""dies"" - -In the anime, he just walks with Hide's corpse as the OP plays, and then we just see Arima looking down (presumably at Kaneki) in the end hinting at the manga ending - -In simpler words, read the manga";False;False;;;;1610157941;;False;{};gim1cgd;False;t3_kthg95;False;False;t3_kthg95;/r/anime/comments/kthg95/i_was_watching_tokyo_ghoul_season_1_and_2_but_now/gim1cgd/;1610200859;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TrowaB3;;;[];;;;text;t2_6a3072x9;False;False;[];;Doesn't really fit but Rokka no Yusha has a similar story;False;False;;;;1610157991;;False;{};gim1fxv;False;t3_kth4fr;False;True;t3_kth4fr;/r/anime/comments/kth4fr/help_me_find_an_anime/gim1fxv/;1610200921;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Skywalker1549;;;[];;;;text;t2_5ijic1xz;False;False;[];;I haven't read the LN so I had no idea about any of this. But wow, I'm a bit sad now that they cut out Yukino content.;False;False;;;;1610158067;;False;{};gim1l8m;True;t3_ktgqeo;False;True;t1_gilx1ql;/r/anime/comments/ktgqeo/my_teen_romantic_comedy_is_wrong_as_i_expected/gim1l8m/;1610201012;3;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;True;[];;I gave it a 9/10. Also the teacher in it won a best guy contest. So yeah go for it!;False;False;;;;1610158083;;False;{};gim1mc8;False;t3_kth985;False;True;t3_kth985;/r/anime/comments/kth985/is_assassination_classroom_worth_watching/gim1mc8/;1610201031;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mysterious_Ad1963;;;[];;;;text;t2_77iey9y7;False;False;[];;It could be Sakamoto Desu Ka?;False;False;;;;1610158102;;False;{};gim1nns;False;t3_kth9o5;False;True;t3_kth9o5;/r/anime/comments/kth9o5/help_finding_an_anime/gim1nns/;1610201053;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheBigCore;;;[];;;;text;t2_11ba9z;False;False;[];;Infinite Ryvius;False;False;;;;1610158201;;False;{};gim1ugf;False;t3_kte07u;False;True;t3_kte07u;/r/anime/comments/kte07u/anime_where_people_are_isolated/gim1ugf/;1610201174;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SocialLoser739;;;[];;;;text;t2_4ttuko0s;False;False;[];;Tonari no seki kun;False;False;;;;1610158207;;False;{};gim1uub;False;t3_kth9o5;False;False;t3_kth9o5;/r/anime/comments/kth9o5/help_finding_an_anime/gim1uub/;1610201181;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Rhaum14;;;[];;;;text;t2_6ni0ur32;False;False;[];;That anime was way better than i expected it to be.;False;False;;;;1610158296;;False;{};gim213q;False;t3_kth985;False;False;t3_kth985;/r/anime/comments/kth985/is_assassination_classroom_worth_watching/gim213q/;1610201291;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WhatAreRoads;;;[];;;;text;t2_7bf5t1gl;False;False;[];;Watch the next seasons and you’ll get some context;False;False;;;;1610158475;;False;{};gim2db1;False;t3_kthg95;False;True;t3_kthg95;/r/anime/comments/kthg95/i_was_watching_tokyo_ghoul_season_1_and_2_but_now/gim2db1/;1610201503;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NekoWafers;;;[];;;;text;t2_iau18;False;False;[];;[Araragi-san](https://www.youtube.com/watch?v=czJ4ChpQANg);False;False;;;;1610158502;;False;{};gim2f8h;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gim2f8h/;1610201537;92;True;False;anime;t5_2qh22;;0;[]; -[];;;collapsedblock6;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/collapsedblock;light;text;t2_pqur4;False;False;[];;Kumiko from Euphonium is great;False;False;;;;1610158662;;False;{};gim2q9h;False;t3_ktg1zw;False;False;t3_ktg1zw;/r/anime/comments/ktg1zw/what_female_character_has_the_best_written/gim2q9h/;1610201726;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610158797;;False;{};gim2zq3;False;t3_kthg95;False;True;t3_kthg95;/r/anime/comments/kthg95/i_was_watching_tokyo_ghoul_season_1_and_2_but_now/gim2zq3/;1610201898;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;It’s amazing. Those things are wrong;False;False;;;;1610158816;;False;{};gim3118;False;t3_kth985;False;True;t3_kth985;/r/anime/comments/kth985/is_assassination_classroom_worth_watching/gim3118/;1610201922;3;True;False;anime;t5_2qh22;;0;[]; -[];;;hsjslsskjd;;;[];;;;text;t2_8da6k6qj;False;False;[];;"I completely agree, if you read LN you'll clearly get an idea that Yukino was the only end game ever possible. From the way author describes her from the first volume it was very clear that she is the main love interest of hikigaya. - -I also agree with studio Feel being biased towards Yui. She has got more screen time and better character development in anime than Yukine. That's why many people end up liking her more. - -But they had a herculean task of condensing that much of material into 12 episodes... It's natural they cannot satisfy every one.";False;False;;;;1610158958;;False;{};gim3ay4;False;t3_ktgqeo;False;False;t1_gilx1ql;/r/anime/comments/ktgqeo/my_teen_romantic_comedy_is_wrong_as_i_expected/gim3ay4/;1610202095;5;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;Bit episodic at the beginning, but it's solid story and has a great ending.;False;False;;;;1610159169;;False;{};gim3plc;False;t3_kth985;False;True;t3_kth985;/r/anime/comments/kth985/is_assassination_classroom_worth_watching/gim3plc/;1610202346;2;True;False;anime;t5_2qh22;;0;[]; -[];;;A_kirE;;;[];;;;text;t2_8mklskhy;False;False;[];;take my brother away;False;False;;;;1610159410;;False;{};gim463c;False;t3_kth9o5;False;True;t3_kth9o5;/r/anime/comments/kth9o5/help_finding_an_anime/gim463c/;1610202630;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MasterpieceSafe6558;;;[];;;;text;t2_98s76hoy;False;False;[];;really REALLY REALLY dark that would make you go what the f\*\*k just happened or why is the op or ending theme that way;False;False;;;;1610159419;;False;{};gim46pk;True;t3_ktfmme;False;True;t1_gilx0ur;/r/anime/comments/ktfmme/are_there_any_other_anime_besides_black_lagoon/gim46pk/;1610202641;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610159620;;False;{};gim4kwz;False;t3_ktg1zw;False;True;t3_ktg1zw;/r/anime/comments/ktg1zw/what_female_character_has_the_best_written/gim4kwz/;1610202894;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;Agreed, she changes completely by the end;False;False;;;;1610159687;;False;{};gim4pkh;False;t3_ktg1zw;False;True;t1_gilwiy5;/r/anime/comments/ktg1zw/what_female_character_has_the_best_written/gim4pkh/;1610202977;3;True;False;anime;t5_2qh22;;0;[]; -[];;;danyelion;;;[];;;;text;t2_83ujopma;False;False;[];;Dang that’s a great explanation... for some reason I was trying to sum it up and it took like 12 sentences but you did it perfectly. Cheers!;False;False;;;;1610159741;;False;{};gim4tf4;False;t3_kthg95;False;True;t1_gim15tm;/r/anime/comments/kthg95/i_was_watching_tokyo_ghoul_season_1_and_2_but_now/gim4tf4/;1610203050;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Grey_Witch666, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610159764;moderator;False;{};gim4uxa;False;t3_kti1e9;False;True;t3_kti1e9;/r/anime/comments/kti1e9/getting_started_in_anime/gim4uxa/;1610203075;1;False;False;anime;t5_2qh22;;0;[]; -[];;;yon_maelstrom;;;[];;;;text;t2_7evegaxh;False;False;[];;Youko Nakajima. You dislike her at first, because she's deliberately unsympathetic: two-faced and spineless, it's a flaw addressed by the cast and she struggles to become a strong and wise ruler, which makes it all so satisfying. Real flaws that are called out and not the typical cosmetic cutesy faults. All characters get massive character development, especially the female ones.;False;False;;;;1610159789;;False;{};gim4wo0;False;t3_ktg1zw;False;True;t3_ktg1zw;/r/anime/comments/ktg1zw/what_female_character_has_the_best_written/gim4wo0/;1610203105;1;True;False;anime;t5_2qh22;;0;[]; -[];;;danyelion;;;[];;;;text;t2_83ujopma;False;False;[];;It’s amazing! Just watch it with an open mind. Some of the villains were a bit strange but the characters are so amazing, it’s one of my favorite anime.;False;False;;;;1610159790;;False;{};gim4wrh;False;t3_kth985;False;False;t3_kth985;/r/anime/comments/kth985/is_assassination_classroom_worth_watching/gim4wrh/;1610203106;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi LifeOfJoshua, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610159811;moderator;False;{};gim4y6x;False;t3_kti1ux;False;True;t3_kti1ux;/r/anime/comments/kti1ux/n00b_looking_for_anime_recommendations/gim4y6x/;1610203130;1;False;False;anime;t5_2qh22;;0;[]; -[];;;A_kirE;;;[];;;;text;t2_8mklskhy;False;False;[];;mayoiga;False;False;;;;1610159941;;False;{};gim57eu;False;t3_kte07u;False;True;t3_kte07u;/r/anime/comments/kte07u/anime_where_people_are_isolated/gim57eu/;1610203295;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lady_Regal;;;[];;;;text;t2_5u14j8pj;False;False;[];;"Mob psycho 100. - -My hero academia. - -Dragon ball z. - -Dragon ball super. (Is super long but worth it.) - -Overlord. - -Fire force. - -Darling in the franxx - -I would also suggest Naruto/Naruto Shippuden but it's a really long series. Like 700 episodes all together lol but man it's got some great fighting in it.";False;False;;;;1610159993;;False;{};gim5b42;False;t3_kti1ux;False;True;t3_kti1ux;/r/anime/comments/kti1ux/n00b_looking_for_anime_recommendations/gim5b42/;1610203362;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Aadi-K;;;[];;;;text;t2_4klu6o3e;False;False;[];;"Well, first of all, I highly advise you don’t watch for more than 4ish hours a day, because I have experienced what you are rn, and I watched practically the whole day, and got really burnt out in like a month, and it finished my interest in it. - -That aside, I recommend watching some classics (if you don’t mind old-school animation) like Cowboy Bebop, Trigun, Hellsing, etc. if you’re into mystery like Death Note, The Promised Neverland is a *must*, along with Monster of course, and an unpopular one here called B: The Beginning, I liked it a lot, not sure if you would though, and it’s only on Netflix I believe.";False;False;;;;1610160054;;False;{};gim5fc0;False;t3_kti1e9;False;True;t3_kti1e9;/r/anime/comments/kti1e9/getting_started_in_anime/gim5fc0/;1610203434;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Klondikebardotcom;;;[];;;;text;t2_1p6qb4jb;False;False;[];;Noelle Silva from Black Clover;False;False;;;;1610160165;;False;{};gim5nc4;False;t3_ktg1zw;False;True;t3_ktg1zw;/r/anime/comments/ktg1zw/what_female_character_has_the_best_written/gim5nc4/;1610203582;0;True;False;anime;t5_2qh22;;0;[]; -[];;;mr4fawkes;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Mr4Fawkes;light;text;t2_fpmke;False;False;[];;There is so much to choose from and many different tastes, so in addition to what the bot posts i'd recommend you look at guides like [this one](https://i.redd.it/0w1v880jtq661.png) or [this one](https://i.redd.it/39yc055xk1p41.png) (both very helpfully made by /u/FetchFrosh ) and see which of the anime recommended there you might like.;False;False;;;;1610160314;;False;{};gim5xvw;False;t3_kti1e9;False;True;t3_kti1e9;/r/anime/comments/kti1e9/getting_started_in_anime/gim5xvw/;1610203770;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610160529;moderator;False;{};gim6cwo;False;t3_kti8va;False;True;t3_kti8va;/r/anime/comments/kti8va/are_there_any_isekai_anime_that_are_complete_out/gim6cwo/;1610204038;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Grey_Witch666;;;[];;;;text;t2_8q8kgtbq;False;False;[];;No worries, I only watch for like an hour a day lol. Thanks for the recommends!;False;False;;;;1610160655;;False;{};gim6lr6;True;t3_kti1e9;False;True;t1_gim5fc0;/r/anime/comments/kti1e9/getting_started_in_anime/gim6lr6/;1610204196;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Axton_of_Rivia;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AxtonofRivia;light;text;t2_4h3evk7j;False;False;[];;Meh;False;False;;;;1610160696;;False;{};gim6olm;False;t3_kti8t0;False;True;t3_kti8t0;/r/anime/comments/kti8t0/is_im_standing_on_1000000_lives_worth_watching/gim6olm/;1610204249;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hitogomi911;;;[];;;;text;t2_83ec5qv5;False;False;[];;"What do you mean by ""out there""? - -Ixion DT is definitely something from the ordinary";False;False;;;;1610160700;;False;{};gim6ovu;False;t3_kti8va;False;True;t3_kti8va;/r/anime/comments/kti8va/are_there_any_isekai_anime_that_are_complete_out/gim6ovu/;1610204254;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Strickout;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Strickout?status=2;light;text;t2_1szolp7k;False;False;[];;"Here's some personal Top 5s - -Top 5 Romance/RomCom - -1. Toradora! -2. Chuunibyou demo koi ga shitai -3. Mayo Chiki! -4. Nagi No Asukara -5. Sakurasou no Pet na Kanojo - -Top 5 Isekai(Main Character transported to another world) - -1. Tensei Shitara Suraimu Datta Ken -2. Isekai wa Sumatofon to Tomo ni(*Disclaimer: This anime has relatively poor reviews and is generally disliked, it's only a personal favourite*) -3. Kono Subarashii Sekai ni Shukufuku o! -4. Kamitachi ni Hirowareta Otoko -5. Mondaiji-tachi ga Isekai Kara Kuru Sō Desu yo? - -Top 5 Battle Shonen(Badass characters fighting each other mostly) - -1. Fairy Tail -2. Nanatsu no Taizai -3. High School DxD -4. Shingeki no Kyojin -5. Sword Art Online - -Top 5 Ecchi(basically titty animes if that's your style) - -1. High School DxD -2. Shinmai Maou no Keiyakusha -3. Monster Musume -4. Haganai: I Don't Have Many Friends -5. Shokugeki no Soma";False;False;;;;1610160700;;False;{};gim6ow0;False;t3_kti1ux;False;False;t3_kti1ux;/r/anime/comments/kti1ux/n00b_looking_for_anime_recommendations/gim6ow0/;1610204254;4;True;False;anime;t5_2qh22;;0;[]; -[];;;iiGrim_Alexia;;;[];;;;text;t2_6asa258y;False;False;[];;Black Butler. SO GOOD!!! The butlers are hot too if that’s your thing;False;False;;;;1610160734;;False;{};gim6rbu;False;t3_kti1ux;False;True;t3_kti1ux;/r/anime/comments/kti1ux/n00b_looking_for_anime_recommendations/gim6rbu/;1610204298;3;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;"> Did you guys like the show? The ending? Or was it not that good in your opinion? - -I hated the show, I hated the ending. 1/10 -The dialogue is frustrating, the characters are all annoying, the romance feels so forced and ingenuine, and understanding the melodrama is beyond me. For a show so concerned with ""finding something genuine,"" everything came across as remarkably hollow.";False;False;;;;1610160739;;False;{};gim6rmf;False;t3_ktgqeo;False;True;t3_ktgqeo;/r/anime/comments/ktgqeo/my_teen_romantic_comedy_is_wrong_as_i_expected/gim6rmf/;1610204303;1;True;False;anime;t5_2qh22;;0;[]; -[];;;goodoriginlusername;;;[];;;;text;t2_96phmnv7;False;False;[];;As in do you know of any ISEKAI anime that have an ending (as in are complete);False;False;;;;1610160754;;False;{};gim6spe;True;t3_kti8va;False;True;t1_gim6ovu;/r/anime/comments/kti8va/are_there_any_isekai_anime_that_are_complete_out/gim6spe/;1610204323;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;The Familiar of Zero, Magic Knight Rayearth, The Boy and the Beast, Fushigi Yuugi, Escaflowne, and War on Geminar, all come to mind;False;False;;;;1610160784;;False;{};gim6urh;False;t3_kti8va;False;False;t3_kti8va;/r/anime/comments/kti8va/are_there_any_isekai_anime_that_are_complete_out/gim6urh/;1610204357;5;True;False;anime;t5_2qh22;;0;[]; -[];;;made-with-jeans;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;http://www.anime-planet.com/forum/members/;light;text;t2_6y5uft6g;False;False;[];;7 seeds;False;False;;;;1610160796;;False;{};gim6vm3;False;t3_kte07u;False;True;t3_kte07u;/r/anime/comments/kte07u/anime_where_people_are_isolated/gim6vm3/;1610204375;1;True;False;anime;t5_2qh22;;0;[]; -[];;;goodoriginlusername;;;[];;;;text;t2_96phmnv7;False;False;[];;Cheers;False;False;;;;1610160821;;False;{};gim6xbu;True;t3_kti8va;False;True;t1_gim6urh;/r/anime/comments/kti8va/are_there_any_isekai_anime_that_are_complete_out/gim6xbu/;1610204407;2;True;False;anime;t5_2qh22;;0;[]; -[];;;crypto_261;;;[];;;;text;t2_89gxyqnf;False;False;[];;Overlord, log horizon, sword art online, tate no yuusha, cautious hero, maou sama retry.;False;True;;comment score below threshold;;1610160833;;False;{};gim6y6d;False;t3_kti8va;False;True;t3_kti8va;/r/anime/comments/kti8va/are_there_any_isekai_anime_that_are_complete_out/gim6y6d/;1610204423;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;Aadi-K;;;[];;;;text;t2_4klu6o3e;False;False;[];;Tbh, finding good anime on your own, and exploring is something I would recommend you do, the satisfaction aside you can really tell when an anime is bad or good from the first few episodes;False;False;;;;1610160845;;False;{};gim6z0l;False;t3_kti1e9;False;True;t3_kti1e9;/r/anime/comments/kti1e9/getting_started_in_anime/gim6z0l/;1610204438;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MasterpieceSafe6558;;;[];;;;text;t2_98s76hoy;False;False;[];;DARKER MUCH MUUCH MUUCH MUUCH MUUCH MUUUUCH MORRE DARKER;False;False;;;;1610160861;;False;{};gim702g;True;t3_ktfmme;False;True;t3_ktfmme;/r/anime/comments/ktfmme/are_there_any_other_anime_besides_black_lagoon/gim702g/;1610204458;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Inuyasha;False;False;;;;1610160883;;False;{};gim71ll;False;t3_kti8va;False;True;t3_kti8va;/r/anime/comments/kti8va/are_there_any_isekai_anime_that_are_complete_out/gim71ll/;1610204485;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hitogomi911;;;[];;;;text;t2_83ec5qv5;False;False;[];;The familiar of Zero and Isekai Sekishi Monogatari are completed. Isekai Sekishi hints at a sequel but nothing came out of it. The story wraps up though;False;False;;;;1610160886;;False;{};gim71sg;False;t3_kti8va;False;True;t1_gim6spe;/r/anime/comments/kti8va/are_there_any_isekai_anime_that_are_complete_out/gim71sg/;1610204490;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HeroVonZero;;;[];;;;text;t2_ofbiw;False;False;[];;I would say no. Personally id say its 3/10. Generic and overly cliche lets go to a game world for a couple episodes and everything is normal inbetween;False;False;;;;1610160918;;False;{};gim744i;False;t3_kti8t0;False;True;t3_kti8t0;/r/anime/comments/kti8t0/is_im_standing_on_1000000_lives_worth_watching/gim744i/;1610204531;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TravisScotch--;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/TravisScotch/;light;text;t2_7fexh1u7;False;False;[];;I’ve seen clips and it kinda looks like Konosuba;False;False;;;;1610160990;;False;{};gim795x;False;t3_kti8t0;False;True;t3_kti8t0;/r/anime/comments/kti8t0/is_im_standing_on_1000000_lives_worth_watching/gim795x/;1610204621;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MicroTree100;;;[];;;;text;t2_ane9ky;False;False;[];;"Ah, so this is where that music video took one of its scenes from. - -I've never watched this show so I wouldn't know. - -(Not that I wouldn't watch it)";False;False;;;;1610161051;;1610161701.0;{};gim7dhe;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gim7dhe/;1610204695;10;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610161300;moderator;False;{};gim7uxn;False;t3_ktigkh;False;True;t3_ktigkh;/r/anime/comments/ktigkh/which_character_is_that/gim7uxn/;1610204998;1;False;False;anime;t5_2qh22;;0;[]; -[];;;20WordsMax;;;[];;;;text;t2_753xkmvg;False;False;[];;Don't know,Dont care, want to bang it;False;False;;;;1610161381;;False;{};gim80hv;False;t3_ktigkh;False;True;t3_ktigkh;/r/anime/comments/ktigkh/which_character_is_that/gim80hv/;1610205093;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;Battery;False;False;;;;1610161391;;False;{};gim815e;False;t3_ktifho;False;True;t3_ktifho;/r/anime/comments/ktifho/what_is_a_good_short_drama_anime_to_sink_my_teeth/gim815e/;1610205106;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"I felt the series has way too much tension between it's characters especially S3. It felt like Yukino had some terminal illness and would pass away at graduation and now Hachiman would have to find himself and his feelings level tension - -Dialogue also felt cryptic all the time in S3 which was quite frustrating tbh";False;False;;;;1610161428;;False;{};gim83oa;False;t3_ktgqeo;False;True;t3_ktgqeo;/r/anime/comments/ktgqeo/my_teen_romantic_comedy_is_wrong_as_i_expected/gim83oa/;1610205152;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610161474;moderator;False;{};gim86si;False;t3_ktiida;False;True;t3_ktiida;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gim86si/;1610205210;1;False;False;anime;t5_2qh22;;0;[]; -[];;;chillychew3000;;;[];;;;text;t2_3qhtvuv4;False;False;[];;This man is detrimentally horny;False;False;;;;1610161478;;False;{};gim870w;False;t3_ktigkh;False;True;t1_gim80hv;/r/anime/comments/ktigkh/which_character_is_that/gim870w/;1610205215;3;True;False;anime;t5_2qh22;;0;[]; -[];;;I-Eat-Books;;;[];;;;text;t2_4hthegt6;False;True;[];;An inspiration to all;False;False;;;;1610161521;;False;{};gim8a04;False;t3_ktigkh;False;True;t1_gim870w;/r/anime/comments/ktigkh/which_character_is_that/gim8a04/;1610205268;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aadi-K;;;[];;;;text;t2_4klu6o3e;False;False;[];;It’s out?;False;False;;;;1610161627;;False;{};gim8h97;False;t3_kti9b1;False;True;t3_kti9b1;/r/anime/comments/kti9b1/demon_slayer_mugen_train_epic_moments/gim8h97/;1610205392;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Royal_Heritage;;;[];;;;text;t2_8wglzuge;False;False;[];;"I had totally forgotten from the 90s adaptation about Dai roasting Maam about her temper. Dai igniting the flares with the fire sword was also a nice yet short breather for the upcoming battle with Freizard. - -Even though recaps are quite a nuisance, in here they work so well in order to provide more dialogues for Avan even after he's gone.";False;False;;;;1610161673;;False;{};gim8kf1;False;t3_kthh9g;False;False;t3_kthh9g;/r/anime/comments/kthh9g/dragon_quest_dai_no_daibouken_episode_14/gim8kf1/;1610205447;10;False;False;anime;t5_2qh22;;0;[]; -[];;;tyrant454;;;[];;;;text;t2_55cphhks;False;False;[];;Plastic memories?;False;False;;;;1610161675;;False;{};gim8kjt;False;t3_ktifho;False;True;t3_ktifho;/r/anime/comments/ktifho/what_is_a_good_short_drama_anime_to_sink_my_teeth/gim8kjt/;1610205449;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Aadi-K;;;[];;;;text;t2_4klu6o3e;False;False;[];;I don’t think this dude understands what complete means;False;False;;;;1610161705;;False;{};gim8mmn;False;t3_kti8va;False;False;t1_gim6y6d;/r/anime/comments/kti8va/are_there_any_isekai_anime_that_are_complete_out/gim8mmn/;1610205485;7;True;False;anime;t5_2qh22;;0;[]; -[];;;four-lokos;;;[];;;;text;t2_2lmsysym;False;False;[];;I’ve seen it, tearing up just thinking ab it :,);False;False;;;;1610161708;;False;{};gim8mu4;True;t3_ktifho;False;True;t1_gim8kjt;/r/anime/comments/ktifho/what_is_a_good_short_drama_anime_to_sink_my_teeth/gim8mu4/;1610205488;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tyrant454;;;[];;;;text;t2_55cphhks;False;False;[];;It was pretty good. Have you seen Charlotte? By the same makers as Angel Beats?;False;False;;;;1610161829;;False;{};gim8v7b;False;t3_ktifho;False;True;t1_gim8mu4;/r/anime/comments/ktifho/what_is_a_good_short_drama_anime_to_sink_my_teeth/gim8v7b/;1610205635;2;True;False;anime;t5_2qh22;;0;[]; -[];;;four-lokos;;;[];;;;text;t2_2lmsysym;False;False;[];;yes I have, that one was alright, I found angel beats better. recently watched the day I become a god as well which is by the same creator!;False;False;;;;1610161883;;False;{};gim8ywl;True;t3_ktifho;False;True;t1_gim8v7b;/r/anime/comments/ktifho/what_is_a_good_short_drama_anime_to_sink_my_teeth/gim8ywl/;1610205702;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610161949;;False;{};gim93fa;False;t3_ktifho;False;False;t3_ktifho;/r/anime/comments/ktifho/what_is_a_good_short_drama_anime_to_sink_my_teeth/gim93fa/;1610205781;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tyrant454;;;[];;;;text;t2_55cphhks;False;False;[];;"Ouuh I'll have to look that up, and you are right Angel Beats was superior. Though when I watched it only glanced over the description. ""School, supernatural"". I was in the mood for something lighthearted and simple, thought it's what I had picked from my list... I was surprised XD";False;False;;;;1610162021;;False;{};gim986p;False;t3_ktifho;False;True;t1_gim8ywl;/r/anime/comments/ktifho/what_is_a_good_short_drama_anime_to_sink_my_teeth/gim986p/;1610205866;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Btw_kek;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SouvlakiSpace7;light;text;t2_i0pj6;False;False;[];;sure why not;False;False;;;;1610162050;;False;{};gim9a3u;False;t3_ktiida;False;False;t3_ktiida;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gim9a3u/;1610205900;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Reavx;;;[];;;;text;t2_gjya3;False;False;[];;in the latest db game they flesh out launch abit more;False;False;;;;1610162094;;False;{};gim9d3u;False;t3_ktg69v;False;True;t3_ktg69v;/r/anime/comments/ktg69v/dragon_ball_possible_lovers/gim9d3u/;1610205953;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;Orange;False;False;;;;1610162097;;False;{};gim9dah;False;t3_ktifho;False;True;t3_ktifho;/r/anime/comments/ktifho/what_is_a_good_short_drama_anime_to_sink_my_teeth/gim9dah/;1610205956;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tyrant454;;;[];;;;text;t2_55cphhks;False;False;[];;Have you seen Kotoura -san then?;False;False;;;;1610162104;;False;{};gim9dsj;False;t3_ktifho;False;True;t3_ktifho;/r/anime/comments/ktifho/what_is_a_good_short_drama_anime_to_sink_my_teeth/gim9dsj/;1610205965;2;True;False;anime;t5_2qh22;;0;[]; -[];;;four-lokos;;;[];;;;text;t2_2lmsysym;False;False;[];;I’ve seen it! totally and perfectly fits what i’m asking for! such a tear jerker!;False;False;;;;1610162137;;False;{};gim9g02;True;t3_ktifho;False;True;t1_gim9dah;/r/anime/comments/ktifho/what_is_a_good_short_drama_anime_to_sink_my_teeth/gim9g02/;1610206007;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MusubiKazesaru;;;[];;;;text;t2_oh8ti;False;False;[];;Yeah, it's a fast paced, visual impressive blast of a show with solid writing and characters.;False;False;;;;1610162139;;False;{};gim9g5j;False;t3_ktiida;False;False;t3_ktiida;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gim9g5j/;1610206009;37;True;False;anime;t5_2qh22;;0;[]; -[];;;LifeOfJoshua;;;[];;;;text;t2_4rydzedw;False;False;[];;OooooooO;False;False;;;;1610162169;;False;{};gim9i7a;True;t3_kti1ux;False;True;t1_gim6rbu;/r/anime/comments/kti1ux/n00b_looking_for_anime_recommendations/gim9i7a/;1610206045;1;True;False;anime;t5_2qh22;;0;[]; -[];;;four-lokos;;;[];;;;text;t2_2lmsysym;False;False;[];;I haven’t! i’ll have to check that out!;False;False;;;;1610162174;;False;{};gim9ih8;True;t3_ktifho;False;True;t1_gim9dsj;/r/anime/comments/ktifho/what_is_a_good_short_drama_anime_to_sink_my_teeth/gim9ih8/;1610206050;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jbrowni3;;;[];;;;text;t2_thhbcd;False;False;[];;Laughing under the clouds;False;False;;;;1610162191;;False;{};gim9jkv;False;t3_ktfdps;False;True;t3_ktfdps;/r/anime/comments/ktfdps/looking_for_retro_anime_with_good_animation/gim9jkv/;1610206070;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iiGrim_Alexia;;;[];;;;text;t2_6asa258y;False;False;[];;You’ll have to wait until s2 for the other one;False;False;;;;1610162193;;False;{};gim9jrn;False;t3_kti1ux;False;True;t1_gim9i7a;/r/anime/comments/kti1ux/n00b_looking_for_anime_recommendations/gim9jrn/;1610206074;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LifeOfJoshua;;;[];;;;text;t2_4rydzedw;False;False;[];;THIS is what i was looking for to the T. Thanks!;False;False;;;;1610162226;;False;{};gim9lyg;True;t3_kti1ux;False;True;t1_gim6ow0;/r/anime/comments/kti1ux/n00b_looking_for_anime_recommendations/gim9lyg/;1610206114;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Where is your list? Why recommend something just for you to say ""already watched that""";False;False;;;;1610162245;;False;{};gim9n7s;False;t3_ktin84;False;True;t3_ktin84;/r/anime/comments/ktin84/need_a_rom_anime_to_watch/gim9n7s/;1610206140;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610162279;moderator;False;{};gim9pk2;False;t3_ktiq8n;False;True;t3_ktiq8n;/r/anime/comments/ktiq8n/the_promised_neverland/gim9pk2/;1610206185;1;False;False;anime;t5_2qh22;;0;[]; -[];;;LifeOfJoshua;;;[];;;;text;t2_4rydzedw;False;False;[];;Perfect. Yeah I've heard of Naruto but never tried it out. Maybe I'll watch season 1 and see if it hooks me. thank!;False;False;;;;1610162304;;False;{};gim9r7y;True;t3_kti1ux;False;False;t1_gim5b42;/r/anime/comments/kti1ux/n00b_looking_for_anime_recommendations/gim9r7y/;1610206218;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sheenjiikaari;;;[];;;;text;t2_9hp59dxc;False;True;[];;Oregairu is one of my favs. If you want to hate every character watch scums wish.;False;False;;;;1610162309;;False;{};gim9rls;False;t3_ktin84;False;True;t3_ktin84;/r/anime/comments/ktin84/need_a_rom_anime_to_watch/gim9rls/;1610206229;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RandomGeekStuffYT;;;[];;;;text;t2_cos6xfl;False;False;[];;It might be on Hulu or Crunchyroll with ads;False;False;;;;1610162332;;False;{};gim9t5k;False;t3_ktiq8n;False;True;t3_ktiq8n;/r/anime/comments/ktiq8n/the_promised_neverland/gim9t5k/;1610206258;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yuvan18;;;[];;;;text;t2_64jrih4h;False;False;[];;aight that's all I wanted to know, thanks man;False;False;;;;1610162372;;False;{};gim9vtg;True;t3_ktiida;False;False;t1_gim9g5j;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gim9vtg/;1610206308;4;True;False;anime;t5_2qh22;;0;[]; -[];;;CartographerStreet30;;;[];;;;text;t2_78vkaoxg;False;False;[];;Kaguya Sama;False;False;;;;1610162399;;False;{};gim9xk9;False;t3_ktin84;False;True;t3_ktin84;/r/anime/comments/ktin84/need_a_rom_anime_to_watch/gim9xk9/;1610206341;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;Oh sorry i forgot to check your mal. But yeah totally, the movie was also sad imo. Anyway have you watched a lull in the sea yet? Could be worth a try if you havent;False;False;;;;1610162428;;False;{};gim9zgn;False;t3_ktifho;False;True;t1_gim9g02;/r/anime/comments/ktifho/what_is_a_good_short_drama_anime_to_sink_my_teeth/gim9zgn/;1610206376;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610162469;;False;{};gima24p;False;t3_ktiq8n;False;True;t3_ktiq8n;/r/anime/comments/ktiq8n/the_promised_neverland/gima24p/;1610206428;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;waifu_ara;;;[];;;;text;t2_6xsff10w;False;False;[];;Hmmmm that is true I kind of got one but it’s missing stuff;False;False;;;;1610162498;;False;{};gima3zs;False;t3_ktin84;False;True;t1_gim9n7s;/r/anime/comments/ktin84/need_a_rom_anime_to_watch/gima3zs/;1610206463;1;True;False;anime;t5_2qh22;;0;[]; -[];;;waifu_ara;;;[];;;;text;t2_6xsff10w;False;False;[];;Watched it;False;False;;;;1610162503;;False;{};gima4e4;False;t3_ktin84;False;True;t1_gim9rls;/r/anime/comments/ktin84/need_a_rom_anime_to_watch/gima4e4/;1610206471;1;True;False;anime;t5_2qh22;;0;[]; -[];;;waifu_ara;;;[];;;;text;t2_6xsff10w;False;False;[];;Watched it;False;False;;;;1610162509;;False;{};gima4s9;False;t3_ktin84;False;True;t1_gim9xk9;/r/anime/comments/ktin84/need_a_rom_anime_to_watch/gima4s9/;1610206478;1;True;False;anime;t5_2qh22;;0;[]; -[];;;waifu_ara;;;[];;;;text;t2_6xsff10w;False;False;[];;Can you drop a whole lotta animes then;False;False;;;;1610162537;;False;{};gima6nm;False;t3_ktin84;False;True;t1_gim9n7s;/r/anime/comments/ktin84/need_a_rom_anime_to_watch/gima6nm/;1610206512;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Sheenjiikaari;;;[];;;;text;t2_9hp59dxc;False;True;[];;Yeah give a list pff;False;False;;;;1610162539;;False;{};gima6r6;False;t3_ktin84;False;True;t1_gima4e4;/r/anime/comments/ktin84/need_a_rom_anime_to_watch/gima6r6/;1610206513;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dv_recorder;;;[];;;;text;t2_8pd0s8e7;False;False;[];;White Album 2?;False;False;;;;1610162612;;False;{};gimabp4;False;t3_ktifho;False;True;t3_ktifho;/r/anime/comments/ktifho/what_is_a_good_short_drama_anime_to_sink_my_teeth/gimabp4/;1610206602;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610162626;;False;{};gimacm0;False;t3_ktiq8n;False;True;t3_ktiq8n;/r/anime/comments/ktiq8n/the_promised_neverland/gimacm0/;1610206618;0;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;True;[];;If you like Angel Beats, you will probably like Ano Natsu de Matteru and Kokoro Connect. A Lull in the Sea is a bit longer, but in the same vein :);False;False;;;;1610162644;;False;{};gimadvt;False;t3_ktifho;False;True;t3_ktifho;/r/anime/comments/ktifho/what_is_a_good_short_drama_anime_to_sink_my_teeth/gimadvt/;1610206642;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tyrant454;;;[];;;;text;t2_55cphhks;False;False;[];;" -* Kimi ni todoke -* Just because -* One week friends -* Ao haru ride -* Your lie in april -* Tsuki ga kirei -* Tsurezure children -* Honobono log -* Rec -* Sakura-sou no pet na kanojo";False;False;;;;1610162659;;False;{};gimaevr;False;t3_ktin84;False;True;t3_ktin84;/r/anime/comments/ktin84/need_a_rom_anime_to_watch/gimaevr/;1610206660;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;Blue spring ride;False;False;;;;1610162671;;False;{};gimafoa;False;t3_ktin84;False;True;t3_ktin84;/r/anime/comments/ktin84/need_a_rom_anime_to_watch/gimafoa/;1610206674;1;True;False;anime;t5_2qh22;;0;[]; -[];;;13rahma;;;[];;;;text;t2_1wqu8d41;False;True;[];;It's streaming on Hulu and Funimation.;False;False;;;;1610162700;;False;{};gimahih;False;t3_ktiq8n;False;False;t3_ktiq8n;/r/anime/comments/ktiq8n/the_promised_neverland/gimahih/;1610206707;4;True;False;anime;t5_2qh22;;0;[]; -[];;;four-lokos;;;[];;;;text;t2_2lmsysym;False;False;[];;thank you!!;False;False;;;;1610162717;;False;{};gimainq;True;t3_ktifho;False;False;t1_gimadvt;/r/anime/comments/ktifho/what_is_a_good_short_drama_anime_to_sink_my_teeth/gimainq/;1610206726;2;True;False;anime;t5_2qh22;;0;[]; -[];;;four-lokos;;;[];;;;text;t2_2lmsysym;False;False;[];;never seen it, thank you!;False;False;;;;1610162740;;False;{};gimak3d;True;t3_ktifho;False;True;t1_gimabp4;/r/anime/comments/ktifho/what_is_a_good_short_drama_anime_to_sink_my_teeth/gimak3d/;1610206751;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;"Fruits basket - -Hyouka - -Tonikawa - -Love chunibyo & other delusions - -Darling in the franxx (its mecha with romance and SoL)";False;False;;;;1610162805;;False;{};gimaol5;False;t3_ktin84;False;True;t3_ktin84;/r/anime/comments/ktin84/need_a_rom_anime_to_watch/gimaol5/;1610206838;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dv_recorder;;;[];;;;text;t2_8pd0s8e7;False;False;[];;You should skip WA1. It's completely unrelated and is aweful.;False;False;;;;1610162809;;False;{};gimaotg;False;t3_ktifho;False;True;t1_gimak3d;/r/anime/comments/ktifho/what_is_a_good_short_drama_anime_to_sink_my_teeth/gimaotg/;1610206842;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Banana Fish - -Vinland Saga - -The Promised Neverland - -Psycho-Pass - -Seirei no Moribito - -Dororo - -Death Note - -Gurren Lagann - -Death Parade - -Daily Lives of High School Boys - -Grand Blue - -A Silent Voice - -Wolf Children - -Anohana - -Your Lie in April - -Haikyuu - -Gekkan Shoujo Nozaki-kun - -ReLife - -Tried giving you a bit of variety just in case";False;False;;;;1610162813;;False;{};gimap3w;False;t3_kti1ux;False;True;t3_kti1ux;/r/anime/comments/kti1ux/n00b_looking_for_anime_recommendations/gimap3w/;1610206847;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ranculos;;;[];;;;text;t2_2dkyj4aj;False;False;[];;Thanks for making and sharing!;False;False;;;;1610162888;;False;{};gimau6h;False;t3_ktiq2b;False;True;t3_ktiq2b;/r/anime/comments/ktiq2b/my_updated_guide_to_the_science_adventure_series/gimau6h/;1610206940;1;True;False;anime;t5_2qh22;;0;[]; -[];;;supagramm;;;[];;;;text;t2_7rfatdzr;False;True;[];;"LOL, I didn't even get that these series were somehow related. - -Steins;Gate really works because of the character writing and the crazy but understandable twists. Chaos:head was just bizarre...";False;False;;;;1610162903;;False;{};gimav5c;False;t3_ktiq2b;False;True;t3_ktiq2b;/r/anime/comments/ktiq2b/my_updated_guide_to_the_science_adventure_series/gimav5c/;1610206956;1;True;False;anime;t5_2qh22;;0;[]; -[];;;four-lokos;;;[];;;;text;t2_2lmsysym;False;False;[];;I haven’t! I’ll check that out!;False;False;;;;1610162904;;False;{};gimav77;True;t3_ktifho;False;True;t1_gim9zgn;/r/anime/comments/ktifho/what_is_a_good_short_drama_anime_to_sink_my_teeth/gimav77/;1610206957;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610162967;;False;{};gimazfg;False;t3_ktifho;False;True;t3_ktifho;/r/anime/comments/ktifho/what_is_a_good_short_drama_anime_to_sink_my_teeth/gimazfg/;1610207036;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LimLovesDonuts;;;[];;;;text;t2_xksyd;False;False;[];;It's a fun show and that matters more than quality writing or complex storylines.;False;False;;;;1610162967;;False;{};gimazh4;False;t3_ktiida;False;False;t3_ktiida;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gimazh4/;1610207036;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ArcticFox19;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Omega179;light;text;t2_4b4v02s2;False;False;[];;"My last one didn't really explain much about the VN's and just kinda said ""these animes are good, the others are bad"" - -This one has additional information about the VN's and includes Occultic;Nine";False;False;;;;1610162977;;False;{};gimb02c;True;t3_ktiq2b;False;True;t3_ktiq2b;/r/anime/comments/ktiq2b/my_updated_guide_to_the_science_adventure_series/gimb02c/;1610207047;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xkrowcitats;;;[];;;;text;t2_6fpg7;False;False;[];;Absolutely not. Yosuga no sora is the standard first anime recommendation.;False;True;;comment score below threshold;;1610163034;;False;{};gimb3vu;False;t3_ktiida;False;True;t3_ktiida;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gimb3vu/;1610207121;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;four-lokos;;;[];;;;text;t2_2lmsysym;False;False;[];;i’ve seen 91 days and dorohedoro! haven’t seen baccano yet, have heard great things tho. I need to check it out pronto;False;False;;;;1610163037;;False;{};gimb42r;True;t3_ktifho;False;True;t1_gimazfg;/r/anime/comments/ktifho/what_is_a_good_short_drama_anime_to_sink_my_teeth/gimb42r/;1610207126;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tyrant454;;;[];;;;text;t2_55cphhks;False;False;[];;"Here some of my favorites and title I believe everyon should see once. In no particular order and varied genre. - -* cowboy bebop -* gurren lagann -* Elfen lied -* Black lagoon -* your lie in april -* high school DXD -* phantom requiem for the phantom -* k-on -* full metal alchemist brotherhood -* one piece (ar least a few story ark) -* angel beats -* fate/stay night -* hellsing -* trigun -* mirai nikki -* steins gate";False;False;;;;1610163105;;False;{};gimb8kg;False;t3_kti1ux;False;True;t3_kti1ux;/r/anime/comments/kti1ux/n00b_looking_for_anime_recommendations/gimb8kg/;1610207211;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;Digimon adventure;False;False;;;;1610163149;;False;{};gimbbi6;False;t3_kti8va;False;True;t3_kti8va;/r/anime/comments/kti8va/are_there_any_isekai_anime_that_are_complete_out/gimbbi6/;1610207267;2;True;False;anime;t5_2qh22;;0;[]; -[];;;smiley-rell;;;[];;;;text;t2_9iaznvjw;False;False;[];;Why has this question been asked every 5 mins on this sub?;False;False;;;;1610163159;;False;{};gimbc4y;False;t3_ktiq8n;False;False;t3_ktiq8n;/r/anime/comments/ktiq8n/the_promised_neverland/gimbc4y/;1610207279;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Lady_Regal;;;[];;;;text;t2_5u14j8pj;False;False;[];;No problem. Hope you enjoy them. :);False;False;;;;1610163258;;False;{};gimbiqm;False;t3_kti1ux;False;True;t1_gim9r7y;/r/anime/comments/kti1ux/n00b_looking_for_anime_recommendations/gimbiqm/;1610207421;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610163281;;False;{};gimbk8r;False;t3_ktifho;False;True;t1_gimb42r;/r/anime/comments/ktifho/what_is_a_good_short_drama_anime_to_sink_my_teeth/gimbk8r/;1610207447;2;True;False;anime;t5_2qh22;;0;[]; -[];;;yuvan18;;;[];;;;text;t2_64jrih4h;False;False;[];;well I haven't seen it so idk what it is but she said thriller;False;False;;;;1610163282;;False;{};gimbkb9;True;t3_ktiida;False;False;t1_gimb3vu;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gimbkb9/;1610207448;5;True;False;anime;t5_2qh22;;0;[]; -[];;;BurntnAshy;;;[];;;;text;t2_2wftnxp6;False;False;[];;Unlikely, don’t remember any scenes with that.;False;False;;;;1610163287;;False;{};gimbkmi;False;t3_kth9o5;False;True;t1_gim0jqw;/r/anime/comments/kth9o5/help_finding_an_anime/gimbkmi/;1610207454;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuSeme;;;[];;;;text;t2_2yj1kv;False;False;[];;I also recommend The Promised Neverland!;False;False;;;;1610163590;;False;{};gimc4hr;False;t3_kti1e9;False;False;t3_kti1e9;/r/anime/comments/kti1e9/getting_started_in_anime/gimc4hr/;1610207835;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610163591;moderator;False;{};gimc4jd;False;t3_ktj302;False;False;t3_ktj302;/r/anime/comments/ktj302/i_need_a_new_series_before_tomorrow_pls_help/gimc4jd/;1610207835;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi PandaRust, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610163592;moderator;False;{};gimc4kg;False;t3_ktj302;False;True;t3_ktj302;/r/anime/comments/ktj302/i_need_a_new_series_before_tomorrow_pls_help/gimc4kg/;1610207836;1;False;False;anime;t5_2qh22;;0;[]; -[];;;tyson2255;;;[];;;;text;t2_ar7ay4;False;False;[];;orange;False;False;;;;1610163606;;False;{};gimc5it;False;t3_ktifho;False;True;t3_ktifho;/r/anime/comments/ktifho/what_is_a_good_short_drama_anime_to_sink_my_teeth/gimc5it/;1610207853;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Cautious Hero is a complete story, we can give him that;False;False;;;;1610163756;;False;{};gimcfe2;False;t3_kti8va;False;True;t1_gim8mmn;/r/anime/comments/kti8va/are_there_any_isekai_anime_that_are_complete_out/gimcfe2/;1610208031;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610163785;moderator;False;{};gimch9m;False;t3_ktj4uf;False;True;t3_ktj4uf;/r/anime/comments/ktj4uf/anyone_know_where_to_find_the_censored_version_of/gimch9m/;1610208068;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610163894;moderator;False;{};gimcodr;False;t3_ktj5yk;False;True;t3_ktj5yk;/r/anime/comments/ktj5yk/help_find_the_name_of_this_anime_please/gimcodr/;1610208209;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AlucardN7;;;[];;;;text;t2_2cscym3c;False;False;[];;Not sure whats in hulu.... sorry.;False;False;;;;1610163902;;False;{};gimcoum;False;t3_ktj302;False;True;t3_ktj302;/r/anime/comments/ktj302/i_need_a_new_series_before_tomorrow_pls_help/gimcoum/;1610208218;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PandaRust;;;[];;;;text;t2_7afyzkmd;False;False;[];;Thanks anyways. Do you know if Tokyo ghoul is any good?;False;False;;;;1610163941;;False;{};gimcrad;True;t3_ktj302;False;True;t1_gimcoum;/r/anime/comments/ktj302/i_need_a_new_series_before_tomorrow_pls_help/gimcrad/;1610208264;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Throwaway1647478;;;[];;;;text;t2_8fubwwfr;False;False;[];;That's sus;False;False;;;;1610164006;;False;{};gimcvjd;False;t3_ktiq8n;False;True;t1_gima24p;/r/anime/comments/ktiq8n/the_promised_neverland/gimcvjd/;1610208346;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your comment has been removed. - -- Direction toward specific sources of pirated content of any type is not allowed. This includes links to unofficial scanlations, streams, uploads, and download sources of any copyrighted content. It also includes direction towards specific sites offering this type of content, and watermarks mentioning such sites in uploaded images/videos. - - Discussion of piracy in general is allowed, **but naming, linking to, or hinting towards specific sources is not. Offering to send links via PM is also not allowed.** For more details, see our [full rules on illegal content](https://www.reddit.com/r/anime/wiki/rules#wiki_do_not_link_to_illegal_content). - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610164011;moderator;False;{};gimcvuz;False;t3_ktiq8n;False;False;t1_gimacm0;/r/anime/comments/ktiq8n/the_promised_neverland/gimcvuz/;1610208352;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AJHKetchup;;;[];;;;text;t2_9mk0ym38;False;False;[];;Anohana is excellent;False;False;;;;1610164064;;False;{};gimczcy;False;t3_ktifho;False;True;t3_ktifho;/r/anime/comments/ktifho/what_is_a_good_short_drama_anime_to_sink_my_teeth/gimczcy/;1610208415;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nulln_void;;;[];;;;text;t2_5qoxcqbe;False;False;[];;Exactly your last statement, I think the primary reason is that as a general rule of a thumb, anime movies are non-canon, or soft-canon at best.;False;False;;;;1610164111;;False;{};gimd2e2;False;t3_ktj3or;False;False;t3_ktj3or;/r/anime/comments/ktj3or/how_come_nobody_talks_about_the_movies/gimd2e2/;1610208476;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Skywalker1549;;;[];;;;text;t2_5ijic1xz;False;False;[];;What did you think about the first two seasons?;False;False;;;;1610164262;;False;{};gimdc46;True;t3_ktgqeo;False;True;t1_gim83oa;/r/anime/comments/ktgqeo/my_teen_romantic_comedy_is_wrong_as_i_expected/gimdc46/;1610208661;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SatouSmith;;;[];;;;text;t2_85ir9527;False;False;[];;Hopimg Demon Slayer changes that.;False;False;;;;1610164292;;False;{};gimde37;False;t3_ktj3or;False;True;t1_gimd2e2;/r/anime/comments/ktj3or/how_come_nobody_talks_about_the_movies/gimde37/;1610208700;0;True;False;anime;t5_2qh22;;0;[]; -[];;;BroccoliSanchez;;;[];;;;text;t2_4qr28jds;False;False;[];;The toonami version was only censored because it was aired on television. Unless you can find a rip of that airing you won't be able to find it;False;False;;;;1610164425;;False;{};gimdmmd;False;t3_ktj4uf;False;True;t3_ktj4uf;/r/anime/comments/ktj4uf/anyone_know_where_to_find_the_censored_version_of/gimdmmd/;1610208853;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phoenix8107;;;[];;;;text;t2_65kab3aq;False;False;[];;Anohana, Kids on the Slope;False;False;;;;1610164425;;False;{};gimdmnk;False;t3_ktifho;False;True;t3_ktifho;/r/anime/comments/ktifho/what_is_a_good_short_drama_anime_to_sink_my_teeth/gimdmnk/;1610208854;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Boujoulo;;;[];;;;text;t2_6iczsif5;False;False;[];;Don’t watch ecchi anime with family if you don’t want to be judged lmao.;False;False;;;;1610164451;;False;{};gimdobv;False;t3_ktj4uf;False;True;t3_ktj4uf;/r/anime/comments/ktj4uf/anyone_know_where_to_find_the_censored_version_of/gimdobv/;1610208884;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;Most shounen movies are non cannon;False;False;;;;1610164510;;False;{};gimds28;False;t3_ktj3or;False;True;t3_ktj3or;/r/anime/comments/ktj3or/how_come_nobody_talks_about_the_movies/gimds28/;1610208954;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"I really liked the first 2 seasons - -Even though the 2nd season had much less comedy it felt less intensive and more natural compared to S3 that is";False;False;;;;1610164520;;False;{};gimdsor;False;t3_ktgqeo;False;True;t1_gimdc46;/r/anime/comments/ktgqeo/my_teen_romantic_comedy_is_wrong_as_i_expected/gimdsor/;1610208966;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;Mugen train is absolutely canon, it’s the next arc;False;False;;;;1610164531;;False;{};gimdtdf;False;t3_ktj3or;False;True;t1_gimde37;/r/anime/comments/ktj3or/how_come_nobody_talks_about_the_movies/gimdtdf/;1610208979;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bubudog1;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/bubudog1;light;text;t2_2ietkl;False;False;[];;Movies aren't as easily accessible (on legal streaming sites);False;False;;;;1610164586;;False;{};gimdwvz;False;t3_ktj3or;False;True;t3_ktj3or;/r/anime/comments/ktj3or/how_come_nobody_talks_about_the_movies/gimdwvz/;1610209045;1;True;False;anime;t5_2qh22;;0;[]; -[];;;myrmonden;;;[];;;;text;t2_f0rs6;False;False;[];;nope season 1 just covers the first arc.;False;False;;;;1610164741;;False;{};gime6xy;False;t3_kti8va;False;True;t1_gimcfe2;/r/anime/comments/kti8va/are_there_any_isekai_anime_that_are_complete_out/gime6xy/;1610209238;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Saberhunter2997;;;[];;;;text;t2_959uge54;False;False;[];;Still need to see that but don’t know where to look. Have they announced a USA release yet?;False;False;;;;1610164798;;False;{};gimeai3;True;t3_ktj3or;False;True;t1_gimdtdf;/r/anime/comments/ktj3or/how_come_nobody_talks_about_the_movies/gimeai3/;1610209308;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;which feels like a complete thing though in my opinion;False;False;;;;1610164896;;False;{};gimegv8;False;t3_kti8va;False;True;t1_gime6xy;/r/anime/comments/kti8va/are_there_any_isekai_anime_that_are_complete_out/gimegv8/;1610209427;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610165044;moderator;False;{};gimeq99;False;t3_ktjh8d;False;True;t3_ktjh8d;/r/anime/comments/ktjh8d/is_trigger_worth_watching/gimeq99/;1610209619;1;False;False;anime;t5_2qh22;;0;[]; -[];;;uchihaoftheleaf69;;skip7;[];;;dark;text;t2_2r56ph3q;False;False;[];;^;False;False;;;;1610165125;;False;{};gimeve1;False;t3_kti9b1;False;False;t1_gim8h97;/r/anime/comments/kti9b1/demon_slayer_mugen_train_epic_moments/gimeve1/;1610209719;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Yesterday they announced we can expect a date soon here in Australia/new Zealand - -The last time this happens for an Aniplex movie (hf3) the date was the same as in the Us";False;False;;;;1610165171;;False;{};gimey9y;False;t3_ktj3or;False;True;t1_gimeai3;/r/anime/comments/ktj3or/how_come_nobody_talks_about_the_movies/gimey9y/;1610209775;1;True;False;anime;t5_2qh22;;0;[]; -[];;;findercutename;;;[];;;;text;t2_8rmmqqbt;False;False;[];;Wow, I'm interested in this anime now, where the girl sits on the boy while posing for a picture. Lol;False;False;;;;1610165181;;False;{};gimeyxq;False;t3_ktj4r2;False;False;t3_ktj4r2;/r/anime/comments/ktj4r2/horimiya_in_light_of_the_anime_adaptation_coming/gimeyxq/;1610209792;5;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;Trigger is a studio, not an anime. I'd say their shows are worth watching though.;False;False;;;;1610165203;;False;{};gimf0by;False;t3_ktjh8d;False;True;t3_ktjh8d;/r/anime/comments/ktjh8d/is_trigger_worth_watching/gimf0by/;1610209822;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Throwaway1647478;;;[];;;;text;t2_8fubwwfr;False;False;[];;Maybe Parasyte? I really enjoyed it.;False;False;;;;1610165210;;False;{};gimf0qo;False;t3_ktj302;False;True;t1_gimcrad;/r/anime/comments/ktj302/i_need_a_new_series_before_tomorrow_pls_help/gimf0qo/;1610209829;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Btw_kek;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SouvlakiSpace7;light;text;t2_i0pj6;False;False;[];;like the studio? your question is equivalent to being shown a box of variety chocolates and asking if any of them are worth eating;False;False;;;;1610165285;;False;{};gimf5m4;False;t3_ktjh8d;False;True;t3_ktjh8d;/r/anime/comments/ktjh8d/is_trigger_worth_watching/gimf5m4/;1610209939;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Please create an anime list at either myanimelist.net, anilist.co, kitsu or anime-planet. All 4 are free and useful to have. Helps to know what you've seen - -Anohana - -Violet Evergarden - -The Promised Neverland - -Death Parade - -Spice and Wolf - -Puella Magi Madoka Magica";False;False;;;;1610165292;;False;{};gimf625;False;t3_ktj302;False;True;t3_ktj302;/r/anime/comments/ktj302/i_need_a_new_series_before_tomorrow_pls_help/gimf625/;1610209948;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Is not even out in Japan, so don't expect to see before the middle of 2022;False;False;;;;1610165296;;False;{};gimf6bh;False;t3_ktjife;False;True;t3_ktjife;/r/anime/comments/ktjife/what_happened_to_shika_no_ou_film/gimf6bh/;1610209955;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lenright7;;;[];;;;text;t2_422c9r1o;False;False;[];;Ohh yeah studio trigger is amaze-balls. Sorry if I didn't make it clear but I actually meant trigger world the anime ^^;False;False;;;;1610165313;;False;{};gimf7aq;True;t3_ktjh8d;False;True;t1_gimf0by;/r/anime/comments/ktjh8d/is_trigger_worth_watching/gimf7aq/;1610209999;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;World Trigger. I haven't seen it myself so I can't say.;False;False;;;;1610165382;;False;{};gimfbuq;False;t3_ktjh8d;False;True;t1_gimf7aq;/r/anime/comments/ktjh8d/is_trigger_worth_watching/gimfbuq/;1610210093;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SatouSmith;;;[];;;;text;t2_85ir9527;False;False;[];;That's what I'm saying. Hoping it's success will be a proof of concept for Studios to release canon movies.;False;False;;;;1610165384;;False;{};gimfbzj;False;t3_ktj3or;False;True;t1_gimdtdf;/r/anime/comments/ktj3or/how_come_nobody_talks_about_the_movies/gimfbzj/;1610210095;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Saberhunter2997;;;[];;;;text;t2_959uge54;False;False;[];;Hopefully it will be digital release;False;False;;;;1610165444;;False;{};gimffsk;True;t3_ktj3or;False;True;t1_gimey9y;/r/anime/comments/ktj3or/how_come_nobody_talks_about_the_movies/gimffsk/;1610210175;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mordecai4321;;;[];;;;text;t2_150tny4r;False;False;[];;GATE;False;False;;;;1610165464;;False;{};gimfh1s;False;t3_kti8va;False;True;t3_kti8va;/r/anime/comments/kti8va/are_there_any_isekai_anime_that_are_complete_out/gimfh1s/;1610210204;1;True;False;anime;t5_2qh22;;0;[]; -[];;;findercutename;;;[];;;;text;t2_8rmmqqbt;False;False;[];;"Bot sure if these shows are in hulu but here- -Gotouban no hanayome,anohana,assasination classroom,monogatari series, chuunibyo demo koi ga shitai, gleipnir";False;False;;;;1610165508;;False;{};gimfjt9;False;t3_ktj302;False;True;t3_ktj302;/r/anime/comments/ktj302/i_need_a_new_series_before_tomorrow_pls_help/gimfjt9/;1610210262;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mackie-pay;;;[];;;;text;t2_4n2i6gve;False;False;[];;Toudou is a man of culture;False;False;;;;1610165526;;False;{};gimfkyg;False;t3_ktjhoh;False;False;t3_ktjhoh;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/gimfkyg/;1610210283;32;True;False;anime;t5_2qh22;;0;[]; -[];;;Commodore256;;;[];;;;text;t2_37jp6;False;False;[];;"As somebody that's watched a couple Trigger anime, I don't know, I mean they're the successor to Gainax, but trigger is big on larger than life climaxes. To be honest, I think I'm kinda burned out on larger than life exaggerations, like to me, it feels like sensory overload. But somebody else might like. - - -So after writing that, it's worth giving a shot. If you don't like ecchi, Little Witch Academia is a good place to start and if you like ecchi, there's Kill-La-Kill and if you don't mind ecchi and like a hot waifu mixed with super robo style mecha, there's Tengen Toppa Gurren Laggon.";False;False;;;;1610165541;;False;{};gimflyh;False;t3_ktjh8d;False;True;t3_ktjh8d;/r/anime/comments/ktjh8d/is_trigger_worth_watching/gimflyh/;1610210304;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PandaRust;;;[];;;;text;t2_7afyzkmd;False;False;[];;Ac is so fucking good!!!! I bawled during the final episode;False;False;;;;1610165568;;False;{};gimfnoe;True;t3_ktj302;False;True;t1_gimfjt9;/r/anime/comments/ktj302/i_need_a_new_series_before_tomorrow_pls_help/gimfnoe/;1610210341;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"Hulu and Funimation are your legal streaming options, and Funimation has a ""free with ads"" option.";False;False;;;;1610165768;;False;{};gimg065;False;t3_ktiq8n;False;True;t3_ktiq8n;/r/anime/comments/ktiq8n/the_promised_neverland/gimg065/;1610210619;1;True;False;anime;t5_2qh22;;0;[]; -[];;;epicbaka;;;[];;;;text;t2_7csppar8;False;False;[];;Yeah it is good.;False;False;;;;1610165775;;False;{};gimg0mf;False;t3_ktj302;False;True;t1_gimcrad;/r/anime/comments/ktj302/i_need_a_new_series_before_tomorrow_pls_help/gimg0mf/;1610210626;1;True;False;anime;t5_2qh22;;0;[]; -[];;;findercutename;;;[];;;;text;t2_8rmmqqbt;False;False;[];;Tokyo ghoul? Oh my freaking god. This anime is heavenly, you'll feel hell in it though. This is one of the first animes that I've watched. It was so good till the last season. You can drop it after the 3rd season if u wish;False;False;;;;1610165786;;False;{};gimg1bu;False;t3_ktj302;False;True;t1_gimcrad;/r/anime/comments/ktj302/i_need_a_new_series_before_tomorrow_pls_help/gimg1bu/;1610210639;2;True;False;anime;t5_2qh22;;0;[]; -[];;;findercutename;;;[];;;;text;t2_8rmmqqbt;False;False;[];;Dub🥴;False;True;;comment score below threshold;;1610165900;;False;{};gimg8bl;False;t3_ktjhoh;False;False;t3_ktjhoh;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/gimg8bl/;1610210770;-34;True;False;anime;t5_2qh22;;0;[]; -[];;;xkrowcitats;;;[];;;;text;t2_6fpg7;False;False;[];;Kaiki deshu;False;False;;;;1610165917;;False;{};gimg9bj;False;t3_ktg1zw;False;True;t3_ktg1zw;/r/anime/comments/ktg1zw/what_female_character_has_the_best_written/gimg9bj/;1610210790;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;Still in theaters, the video shows like a minute clip from the trailer and then just shakey manga pages.;False;False;;;;1610166086;;False;{};gimgjvj;False;t3_kti9b1;False;True;t1_gim8h97;/r/anime/comments/kti9b1/demon_slayer_mugen_train_epic_moments/gimgjvj/;1610210989;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;Nope;False;False;;;;1610166090;;False;{};gimgk59;False;t3_kti9b1;False;False;t1_gimeve1;/r/anime/comments/kti9b1/demon_slayer_mugen_train_epic_moments/gimgk59/;1610210994;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;I'd sooner it not become standard. Anime movies can take ages to get subbed. Would sooner just have a new season in the vast majority of cases.;False;False;;;;1610166165;;False;{};gimgot8;False;t3_ktj3or;False;True;t1_gimfbzj;/r/anime/comments/ktj3or/how_come_nobody_talks_about_the_movies/gimgot8/;1610211080;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Won't happen anytime soon, first theaters than the blu ray release, if we are luck 6 months later will reach streaming legally, so probably in 2022 - -But the heavens feel movies (same committee ufotable+aniplex) are still not on streaming, only vod, they only added the movies in special occasions such as the premiere weekend of Hf2/3 - -Demon slayer is much more popular though, this can be a double edge sword, they can think it's a great addition to bring people to the service or think its big enough to make a lot of money from Vod";False;False;;;;1610166197;;False;{};gimgqr7;False;t3_ktj3or;False;True;t1_gimffsk;/r/anime/comments/ktj3or/how_come_nobody_talks_about_the_movies/gimgqr7/;1610211117;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Skywalker1549;;;[];;;;text;t2_5ijic1xz;False;False;[];;I enjoyed the less intensive atmosphere at well. Sometimes I dreaded watching season 3 because it felt so heavy. But honestly the music helped with that. I thought this show had an amazing soundtrack.;False;False;;;;1610166258;;False;{};gimgui0;True;t3_ktgqeo;False;True;t1_gimdsor;/r/anime/comments/ktgqeo/my_teen_romantic_comedy_is_wrong_as_i_expected/gimgui0/;1610211185;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610166259;moderator;False;{};gimgulv;False;t3_ktjsou;False;True;t3_ktjsou;/r/anime/comments/ktjsou/tell_me_a_nice_anime/gimgulv/;1610211187;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610166283;moderator;False;{};gimgw3r;False;t3_ktjsvw;False;True;t3_ktjsvw;/r/anime/comments/ktjsvw/animes_where_the_mc_has_a_girl_thats_completely/gimgw3r/;1610211213;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Melon_Ruf;;;[];;;;text;t2_8tsq0wk0;False;False;[];;I totally thought he was looking up her shirt at first.;False;False;;;;1610166317;;False;{};gimgy96;False;t3_ktj4r2;False;True;t3_ktj4r2;/r/anime/comments/ktj4r2/horimiya_in_light_of_the_anime_adaptation_coming/gimgy96/;1610211252;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SOfoundmytrappornacc;;;[];;;;text;t2_3l4cx437;False;False;[];;Launch is in Dragon Ball Z a tiny bit when they’re planning to go to Namek. The last reference to her is when Chi Chi grabs a bunch of Launch’s guns.;False;False;;;;1610166418;;False;{};gimh4lw;False;t3_ktg69v;False;True;t3_ktg69v;/r/anime/comments/ktg69v/dragon_ball_possible_lovers/gimh4lw/;1610211365;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PandaRust;;;[];;;;text;t2_7afyzkmd;False;False;[];;Thanks! I will definitely listen to your advice. Your a life saver man. If I had enough money for a award I’d give u one;False;False;;;;1610166451;;False;{};gimh6ny;True;t3_ktj302;False;True;t1_gimg1bu;/r/anime/comments/ktj302/i_need_a_new_series_before_tomorrow_pls_help/gimh6ny/;1610211401;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SatouSmith;;;[];;;;text;t2_85ir9527;False;False;[];;If this becomes the standard the subbing can assist be faster.;False;False;;;;1610166585;;False;{};gimhevd;False;t3_ktj3or;False;True;t1_gimgot8;/r/anime/comments/ktj3or/how_come_nobody_talks_about_the_movies/gimhevd/;1610211566;1;True;False;anime;t5_2qh22;;0;[]; -[];;;adeleke5140;;;[];;;;text;t2_10tpx9;False;False;[];;They are just trolling. Yosuga no Sora is a dumpster fire. It's not a good first show — only for degenerates who are ready to go down that path.;False;False;;;;1610166641;;False;{};gimhicn;False;t3_ktiida;False;False;t1_gimbkb9;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gimhicn/;1610211628;6;True;False;anime;t5_2qh22;;0;[]; -[];;;kirigiriimpact;;;[];;;;text;t2_9bxj9g0c;False;False;[];;danganronpa.;False;False;;;;1610166648;;False;{};gimhis2;False;t3_kti1ux;False;True;t3_kti1ux;/r/anime/comments/kti1ux/n00b_looking_for_anime_recommendations/gimhis2/;1610211636;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Poli_Sci_27;;;[];;;;text;t2_3vook9u8;False;False;[];;Future Diary;False;False;;;;1610166687;;False;{};gimhl7l;False;t3_ktjsvw;False;False;t3_ktjsvw;/r/anime/comments/ktjsvw/animes_where_the_mc_has_a_girl_thats_completely/gimhl7l/;1610211680;4;True;False;anime;t5_2qh22;;0;[]; -[];;;yuvan18;;;[];;;;text;t2_64jrih4h;False;False;[];;well then it sounds like it's for me;False;False;;;;1610166710;;False;{};gimhmnf;True;t3_ktiida;False;True;t1_gimhicn;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gimhmnf/;1610211705;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Poli_Sci_27;;;[];;;;text;t2_3vook9u8;False;False;[];;World Trigger was a fun watch and the new season looks to have solid animation.;False;False;;;;1610166733;;False;{};gimho0v;False;t3_ktjh8d;False;True;t3_ktjh8d;/r/anime/comments/ktjh8d/is_trigger_worth_watching/gimho0v/;1610211731;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akai-AC;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Akai-AC;light;text;t2_3af1hwm4;False;False;[];;"> _World Trigger_ - -https://old.reddit.com/r/anime/comments/i1vl8l/a_rant_watch_the_damn_anime/?sort=new - -Personally, I enjoyed it. It's quite good. A season 2 is coming out today and a 3rd season later this year.";False;False;;;;1610166747;;False;{};gimhoyb;False;t3_ktjh8d;False;True;t3_ktjh8d;/r/anime/comments/ktjh8d/is_trigger_worth_watching/gimhoyb/;1610211749;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610166810;moderator;False;{};gimhsvh;False;t3_ktjxoy;False;True;t3_ktjxoy;/r/anime/comments/ktjxoy/from_what_anime_is_she/gimhsvh/;1610211820;1;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610166853;;False;{};gimhvis;False;t3_ktjxoy;False;True;t3_ktjxoy;/r/anime/comments/ktjxoy/from_what_anime_is_she/gimhvis/;1610211872;0;True;False;anime;t5_2qh22;;0;[]; -[];;;railgunmytaint;;;[];;;;text;t2_6dsvttqn;False;False;[];;Mikoto Misaka;False;False;;;;1610166867;;False;{};gimhwgr;False;t3_ktjy1n;False;False;t3_ktjy1n;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/gimhwgr/;1610211888;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610166871;moderator;False;{};gimhwoq;False;t3_ktjyc1;False;True;t3_ktjyc1;/r/anime/comments/ktjyc1/is_seeking_out_the_japanese_audio_version_of/gimhwoq/;1610211892;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Akai-AC;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Akai-AC;light;text;t2_3af1hwm4;False;False;[];;I believe that's a fan art of Tohsaka Rin from Fate series.;False;False;;;;1610166885;;False;{};gimhxkz;False;t3_ktjxoy;False;True;t3_ktjxoy;/r/anime/comments/ktjxoy/from_what_anime_is_she/gimhxkz/;1610211907;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ClunarX;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_y7clt;False;True;[];;For my submission: Shinichi/Migi from Parasyte;False;False;;;;1610166888;;False;{};gimhxqu;True;t3_ktjy1n;False;False;t3_ktjy1n;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/gimhxqu/;1610211910;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Ya I already buried him;False;False;;;;1610166914;;False;{};gimhzce;False;t3_ktiq8n;False;True;t1_gimcvjd;/r/anime/comments/ktiq8n/the_promised_neverland/gimhzce/;1610211938;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610166914;;False;{};gimhzel;False;t3_ktjxoy;False;True;t3_ktjxoy;/r/anime/comments/ktjxoy/from_what_anime_is_she/gimhzel/;1610211939;1;True;False;anime;t5_2qh22;;0;[]; -[];;;redditlurking00;;;[];;;;text;t2_25dm3qdg;False;False;[];;Fist of the North Star guy, obviously.;False;False;;;;1610166946;;False;{};gimi1dp;False;t3_ktjy1n;False;False;t3_ktjy1n;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/gimi1dp/;1610211977;6;True;False;anime;t5_2qh22;;0;[]; -[];;;irisverse;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/usernamesarehard;light;text;t2_1dzbqjh4;False;False;[];;I mean it's not exactly the first franchise to do that, or even the first franchise to do it successfully. The Made in Abyss movie came out a couple months earlier and did pretty good numbers, and The Disappearance of Haruhi Suzumiya is still considered to be the pinnacle of the series. There already was a precedent for such a thing before Demon Slayer did it.;False;False;;;;1610166954;;False;{};gimi1ur;False;t3_ktj3or;False;True;t1_gimfbzj;/r/anime/comments/ktj3or/how_come_nobody_talks_about_the_movies/gimi1ur/;1610211985;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Jesus that was only because the mods here won't allow godfamit;False;False;;;;1610166969;;False;{};gimi2rq;False;t3_ktiq8n;False;True;t1_gimcvjd;/r/anime/comments/ktiq8n/the_promised_neverland/gimi2rq/;1610212005;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Keaton-_;;;[];;;;text;t2_8kolvzad;False;False;[];;Bro it literally says something ‘like’ so I’ve obviously already seen it;False;True;;comment score below threshold;;1610166982;;False;{};gimi3l4;True;t3_ktjsvw;False;False;t1_gimhl7l;/r/anime/comments/ktjsvw/animes_where_the_mc_has_a_girl_thats_completely/gimi3l4/;1610212019;-11;True;False;anime;t5_2qh22;;0;[]; -[];;;hitogomi911;;;[];;;;text;t2_83ec5qv5;False;False;[];;"Shiba Tatsuya, walking supercomputer cum nuclear warhead. - -Sakamaki Izayoi if I want to win.";False;False;;;;1610167059;;1610172046.0;{};gimi87s;False;t3_ktjy1n;False;True;t3_ktjy1n;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/gimi87s/;1610212106;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mirakles;;;[];;;;text;t2_bs6iy;False;False;[];;"TOOOOOOOHHSAKA! - -it's been a min but I can only hear her name as some dude yelling it at her from 1 of the episodes.... Now it's going to eat my brain until I hear it again.";False;False;;;;1610167065;;False;{};gimi8nv;False;t3_ktjxoy;False;True;t1_gimhxkz;/r/anime/comments/ktjxoy/from_what_anime_is_she/gimi8nv/;1610212114;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Kangaroo-Awkward, it seems like you might be looking for a show's watch order! - -On our [watch order wiki](https://www.reddit.com/r/anime/wiki/watch_order) you can find suggested orders for a ton of shows (hopefully including the one you're looking for), as well as information that will help you decide on what to watch for the more complicated series <cough> Gundam <cough>. - -[](#heartbot) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610167068;moderator;False;{};gimi8us;False;t3_ktk03a;False;True;t3_ktk03a;/r/anime/comments/ktk03a/anyone_provide_me_with_fate_series_watch_order/gimi8us/;1610212117;3;False;False;anime;t5_2qh22;;0;[]; -[];;;SolarReaction;;;[];;;;text;t2_2ve2s3f2;False;False;[];;which one is the best??;False;False;;;;1610167077;;False;{};gimi9dv;True;t3_ktfdps;False;True;t1_gilv0d0;/r/anime/comments/ktfdps/looking_for_retro_anime_with_good_animation/gimi9dv/;1610212127;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SuperToxicSU;;;[];;;;text;t2_5fqpi8r8;False;False;[];;Tonikawa, Re:ZERO, Konosuba, That Time I Got Reincarnated as a Slime, The Quintessential Quintuplets, Trinity Seven, Golden Time, The Fruit of Grisaia, Sword Art Online;False;False;;;;1610167095;;False;{};gimiago;False;t3_ktjsou;False;False;t3_ktjsou;/r/anime/comments/ktjsou/tell_me_a_nice_anime/gimiago/;1610212147;5;True;False;anime;t5_2qh22;;0;[]; -[];;;irisverse;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/usernamesarehard;light;text;t2_1dzbqjh4;False;False;[];;Anime tie-in movies are, for the most part, non-canon, so the stories in the movies have absolutely no bearing on the overall plot of the series, and also... not generally considered to be very good. There are exceptions of course, but those reasons along with such movies being generally less accessible than the series they're attached to leads to them not being talked about as much.;False;False;;;;1610167114;;False;{};gimibmf;False;t3_ktj3or;False;True;t3_ktj3or;/r/anime/comments/ktj3or/how_come_nobody_talks_about_the_movies/gimibmf/;1610212170;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RamonMan14;;;[];;;;text;t2_22bt3idd;False;False;[];;He means the show World Trigger not Trigger shows btw.;False;False;;;;1610167129;;False;{};gimicjt;False;t3_ktjh8d;False;True;t3_ktjh8d;/r/anime/comments/ktjh8d/is_trigger_worth_watching/gimicjt/;1610212189;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SchockoNudel;;;[];;;;text;t2_4lx50ufv;False;False;[];;thanks;False;False;;;;1610167170;;False;{};gimif1r;True;t3_ktjxoy;False;True;t1_gimhxkz;/r/anime/comments/ktjxoy/from_what_anime_is_she/gimif1r/;1610212233;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SchockoNudel;;;[];;;;text;t2_4lx50ufv;False;False;[];;haha xD thanks;False;False;;;;1610167183;;False;{};gimifv4;True;t3_ktjxoy;False;True;t1_gimi8nv;/r/anime/comments/ktjxoy/from_what_anime_is_she/gimifv4/;1610212248;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mohamadkanso120;;;[];;;;text;t2_3wwz4ebt;False;False;[];;Sorry these aren't helping;False;True;;comment score below threshold;;1610167224;;False;{};gimiicu;True;t3_ktjsou;False;True;t1_gimiago;/r/anime/comments/ktjsou/tell_me_a_nice_anime/gimiicu/;1610212290;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Banana Fish - -Dororo - -The Promised Neverland - -Psycho-Pass";False;False;;;;1610167309;;False;{};giminmg;False;t3_ktjuc4;False;True;t3_ktjuc4;/r/anime/comments/ktjuc4/help_with_next_pick/giminmg/;1610212383;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GiveMeTheLeaf;;;[];;;;text;t2_56zgb7wi;False;False;[];;There are some really good ones I have seen, but a lot are kinda just for the fans. I've seen some Naruto and One Piece films good and bad. But yeah definitely not cannon or soft cannon. (Most of the time);False;False;;;;1610167321;;False;{};gimioe9;False;t3_ktj3or;False;True;t3_ktj3or;/r/anime/comments/ktj3or/how_come_nobody_talks_about_the_movies/gimioe9/;1610212397;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SuperToxicSU;;;[];;;;text;t2_5fqpi8r8;False;False;[];;Then how can i help you?;False;False;;;;1610167334;;False;{};gimip7q;False;t3_ktjsou;False;False;t1_gimiicu;/r/anime/comments/ktjsou/tell_me_a_nice_anime/gimip7q/;1610212413;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Keaton-_;;;[];;;;text;t2_8kolvzad;False;False;[];;Future diary is my all time fav anime if you haven’t seen that;False;False;;;;1610167342;;False;{};gimipnx;False;t3_ktjsou;False;True;t3_ktjsou;/r/anime/comments/ktjsou/tell_me_a_nice_anime/gimipnx/;1610212422;0;True;False;anime;t5_2qh22;;0;[]; -[];;;gdixon10;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_5v7rt2af;False;False;[];;I also tried it watch TPN, does it stay just about eating little children? Cause I’m not very interested in watching little kids get eaten;False;False;;;;1610167386;;False;{};gimiscc;True;t3_ktjuc4;False;True;t1_giminmg;/r/anime/comments/ktjuc4/help_with_next_pick/gimiscc/;1610212473;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thkvl;;;[];;;;text;t2_4f973;False;False;[];;Off the top of my head, Misa from Death Note, Satou from Happy Sugar Life and Anna from Shimoneta.;False;False;;;;1610167397;;False;{};gimiszx;False;t3_ktjsvw;False;True;t3_ktjsvw;/r/anime/comments/ktjsvw/animes_where_the_mc_has_a_girl_thats_completely/gimiszx/;1610212483;3;True;False;anime;t5_2qh22;;0;[]; -[];;;weebslayerx;;;[];;;;text;t2_9ax4w73x;False;True;[];;"Definitely Captain Levi from AoT! -For villains, All for One from MHA.";False;False;;;;1610167405;;False;{};gimitj8;False;t3_ktjy1n;False;True;t3_ktjy1n;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/gimitj8/;1610212491;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;"Main story: - -* Fate/stay night (2006) **(DISCLAIMER: primarily follows the Fate Route, but incorporates some elements from the other two. I like it enough to recommend it, so I will. However, I do concede that a better alternative would be to watch/read/play the Fate Route of the VN.)** -* Unlimited Blade Works (2014) -* Heaven's Feel Trilogy - -Prequel: - -* Fate/Zero **(DISCLAIMER: if you just want to watch one great show and then dip from the franchise, it's a perfectly fine standalone (not gonna gatekeep). However, don't start with it if you plan to commit)** - -Spinoffs: - -* Fate/kaleid liner Prisma Illya -* Carnival Phantasm (needs some knowledge from Tsukihime as well, but there's no anime of that 😎) -* Fate/Apocrypha -* Today's Menu for the Emiya Family (jokingly referred to as ""Fate/Cooking"") -* Fate/Extra: Last Encore -* Lord El-Melloi II Case Files: Rail Zeppelin Grace Note (needs Fate/Zero for context) -* Fate/Grand Order **(which is a whole different can of worms with enough in-depth lore and story to surpass the Main Story)** - - First Order - - Moonlight/Lostroom **(DISCLAIMER: should be watched last out of the ones currently listed here)** - - Absolute Demonic Front - Babylonia - - Divine Realm of the Round Table - Camelot - - The Grand Temple of Time - Solomon";False;False;;;;1610167408;;False;{};gimitp4;False;t3_ktk03a;False;True;t3_ktk03a;/r/anime/comments/ktk03a/anyone_provide_me_with_fate_series_watch_order/gimitp4/;1610212494;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mirabem;;;[];;;;text;t2_7cp40oli;False;False;[];;Kenshiro, indeed.;False;False;;;;1610167412;;False;{};gimitwc;False;t3_ktjy1n;False;False;t1_gimi1dp;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/gimitwc/;1610212498;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Keaton-_;;;[];;;;text;t2_8kolvzad;False;False;[];;Seen them all aha but thanks anyway;False;False;;;;1610167452;;False;{};gimiwal;True;t3_ktjsvw;False;False;t1_gimiszx;/r/anime/comments/ktjsvw/animes_where_the_mc_has_a_girl_thats_completely/gimiwal/;1610212548;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;mohamadkanso120;;;[];;;;text;t2_3wwz4ebt;False;False;[];;Btw I'm 15 so no 18+ anime;False;False;;;;1610167512;;False;{};gimizy6;True;t3_ktjsou;False;True;t3_ktjsou;/r/anime/comments/ktjsou/tell_me_a_nice_anime/gimizy6/;1610212632;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;mohamadkanso120;;;[];;;;text;t2_3wwz4ebt;False;False;[];;Idk;False;True;;comment score below threshold;;1610167520;;False;{};gimj0f4;True;t3_ktjsou;False;True;t1_gimip7q;/r/anime/comments/ktjsou/tell_me_a_nice_anime/gimj0f4/;1610212641;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;thkvl;;;[];;;;text;t2_4f973;False;False;[];;Probably easier to list the ones you have seen then.;False;False;;;;1610167534;;False;{};gimj19g;False;t3_ktjsvw;False;True;t1_gimiwal;/r/anime/comments/ktjsvw/animes_where_the_mc_has_a_girl_thats_completely/gimj19g/;1610212656;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NekoWafers;;;[];;;;text;t2_iau18;False;False;[];;"Maybe one of these - -[Magi](https://anilist.co/anime/14513/Magi-The-Labyrinth-of-Magic/) - -[Soul Eater](https://anilist.co/anime/3588/Soul-Eater/) - -[Yu Yu Hakusho](https://anilist.co/anime/392/YuuYuuHakusho/) - -[Fire Force](https://anilist.co/anime/105310/Enen-no-Shouboutai/) - -[Noragami](https://anilist.co/anime/20447/Noragami/) - -As a long shot [Kill la Kill](https://anilist.co/anime/18679/Kill-la-Kill/)";False;False;;;;1610167682;;False;{};gimjaal;False;t3_ktjuc4;False;False;t3_ktjuc4;/r/anime/comments/ktjuc4/help_with_next_pick/gimjaal/;1610212831;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sajbotage;;;[];;;;text;t2_dypo5jn;False;False;[];;"iroduku: the world in colors - -violet evergarden - -bunny girl senpai";False;False;;;;1610167691;;False;{};gimjatt;False;t3_ktj302;False;True;t3_ktj302;/r/anime/comments/ktj302/i_need_a_new_series_before_tomorrow_pls_help/gimjatt/;1610212840;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aluminum-Chair;;;[];;;;text;t2_63qs0yl8;False;False;[];;"The One Punch Man from that one anime... I can't remember its name. - -Alternatively, Nunnally from Code Geass.";False;False;;;;1610167721;;False;{};gimjckf;False;t3_ktjy1n;False;False;t3_ktjy1n;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/gimjckf/;1610212877;7;True;False;anime;t5_2qh22;;0;[]; -[];;;SuperPineapple123;;;[];;;;text;t2_3pf2mlbh;False;False;[];;Ichigo Kurosaki from Bleach and Omnimon from Digimon;False;False;;;;1610167829;;False;{};gimjj0r;False;t3_ktjy1n;False;True;t3_ktjy1n;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/gimjj0r/;1610213005;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610167836;;False;{};gimjjek;False;t3_ktjhoh;False;False;t3_ktjhoh;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/gimjjek/;1610213012;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Keaton-_;;;[];;;;text;t2_8kolvzad;False;False;[];;That would take way too long;False;False;;;;1610167895;;False;{};gimjmzw;True;t3_ktjsvw;False;True;t1_gimj19g;/r/anime/comments/ktjsvw/animes_where_the_mc_has_a_girl_thats_completely/gimjmzw/;1610213084;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;redditlurking00;;;[];;;;text;t2_25dm3qdg;False;False;[];;Ya him, Lol. Thanx.;False;False;;;;1610167922;;False;{};gimjok7;False;t3_ktjy1n;False;True;t1_gimitwc;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/gimjok7/;1610213117;3;True;False;anime;t5_2qh22;;0;[]; -[];;;hitogomi911;;;[];;;;text;t2_83ec5qv5;False;False;[];;Lvl 5.5 or the good one?;False;False;;;;1610168159;;False;{};gimk2lw;False;t3_ktjy1n;False;True;t1_gimhwgr;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/gimk2lw/;1610213401;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610168167;moderator;False;{};gimk34r;False;t3_ktka5a;False;True;t3_ktka5a;/r/anime/comments/ktka5a/how_do_anime_seasons_work/gimk34r/;1610213412;1;False;False;anime;t5_2qh22;;0;[]; -[];;;smiley-rell;;;[];;;;text;t2_9iaznvjw;False;False;[];;World trigger season one was not as good as it should have been since I read the manga. The pacing is all over the place, BUT....in my opinion it has some of the best strategic fights in anime I've personally seen in a while. Season 2(which comes out sat/sun) will further add to the fights with the continuation of B-rank wars. So in my opinion watch it and you don't like it then cool, but I personally feel it's manga is better than it's anime.;False;False;;;;1610168213;;False;{};gimk5ut;False;t3_ktjh8d;False;True;t3_ktjh8d;/r/anime/comments/ktjh8d/is_trigger_worth_watching/gimk5ut/;1610213465;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;It could be worth it, keeping mind that this is an oddity, so the Japanese version will be different.;False;False;;;;1610168232;;False;{};gimk71i;False;t3_ktjyc1;False;True;t3_ktjyc1;/r/anime/comments/ktjyc1/is_seeking_out_the_japanese_audio_version_of/gimk71i/;1610213500;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LegendaryRQA;;;[];;;;text;t2_hszyq;False;False;[];;"Short Version: [Fate/Stay Night 2006 (Fan Edits) → UBW → Heaven's Feel → Zero](https://i.imgur.com/zq3VjQn.jpg) - -Long Version: [Check out my guide](https://www.youtube.com/watch?v=OH4BKJ6s0V8)";False;False;;;;1610168274;;False;{};gimk9k6;False;t3_ktk03a;False;True;t3_ktk03a;/r/anime/comments/ktk03a/anyone_provide_me_with_fate_series_watch_order/gimk9k6/;1610213547;4;True;False;anime;t5_2qh22;;0;[]; -[];;;dave-not-a-barbarian;;;[];;;;text;t2_22jk7cmb;False;False;[];;They work by season.;False;False;;;;1610168434;;False;{};gimkj0v;False;t3_ktka5a;False;True;t3_ktka5a;/r/anime/comments/ktka5a/how_do_anime_seasons_work/gimkj0v/;1610213724;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SatouSmith;;;[];;;;text;t2_85ir9527;False;False;[];;"""success"" is the key word. KyoAni has been doing it for years. Demon Slayer made Bank due it's popularity. Note imagine of one piece made something like it. Take a semi major canon arc and make it into a movie.";False;False;;;;1610168504;;False;{};gimkn9z;False;t3_ktj3or;False;True;t1_gimi1ur;/r/anime/comments/ktj3or/how_come_nobody_talks_about_the_movies/gimkn9z/;1610213801;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MagicalUnicorn673;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;loli rescue squad;dark;text;t2_2ge6vzlx;False;False;[];;Haha you talking about that got talent amv?;False;False;;;;1610168514;;False;{};gimknul;False;t3_ktgaoa;False;False;t1_gim7dhe;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimknul/;1610213811;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Cragnous;;;[];;;;text;t2_7sm81;False;False;[];;I love it, Dai's progression, the pacing, underrated.;False;False;;;;1610168536;;False;{};gimkp40;False;t3_kthh9g;False;False;t3_kthh9g;/r/anime/comments/kthh9g/dragon_quest_dai_no_daibouken_episode_14/gimkp40/;1610213835;10;True;False;anime;t5_2qh22;;0;[]; -[];;;MagicalUnicorn673;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;loli rescue squad;dark;text;t2_2ge6vzlx;False;False;[];;Man I miss this anime... might have to rewatch soon;False;False;;;;1610168543;;False;{};gimkpj5;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimkpj5/;1610213843;489;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610168571;;False;{};gimkr39;False;t3_ktka5a;False;True;t3_ktka5a;/r/anime/comments/ktka5a/how_do_anime_seasons_work/gimkr39/;1610213871;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;"Literally each season more anime come out. Spring summer fall and winter. - -You can keep up with that is to come in the future with websites like livechart that update when rumors and/or official announcements are made. Closer to the next season, the more accurate they get for that season";False;False;;;;1610168584;;False;{};gimkrv9;False;t3_ktka5a;False;False;t3_ktka5a;/r/anime/comments/ktka5a/how_do_anime_seasons_work/gimkrv9/;1610213884;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GitStewie;;;[];;;;text;t2_4e6u5y3f;False;False;[];;Depends on what she likes, but I've had success with Promised Neverland. Akudama Drive has been hit or miss in my friend group.;False;False;;;;1610168907;;False;{};gimlait;False;t3_ktiida;False;False;t3_ktiida;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gimlait/;1610214234;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Nihilistic-Weeb;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/NihilisticWeeb;light;text;t2_98iii4p9;False;False;[];;*Vietnam Flashbacks*;False;False;;;;1610168947;;False;{};gimlcvh;False;t3_ktgaoa;False;False;t1_giluar1;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimlcvh/;1610214278;62;True;False;anime;t5_2qh22;;0;[]; -[];;;railgunmytaint;;;[];;;;text;t2_6dsvttqn;False;False;[];;I’ve always thought it was 5.1. Either way I like og misaka but if she’s in it to win it 5.1/5 would be the best.;False;False;;;;1610168959;;False;{};gimldk0;False;t3_ktjy1n;False;False;t1_gimk2lw;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/gimldk0/;1610214292;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Jx1406x;;;[];;;;text;t2_3lhhbe57;False;False;[];;Araragi: yes I’m very courageous;False;False;;;;1610168984;;False;{};gimlezl;False;t3_ktgaoa;False;False;t1_giluar1;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimlezl/;1610214318;134;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;"To elaborate more on what people have said already, there are four seasons in which anime premiere and run, each season is 3 months. - -Winter is January to March -Spring is April to June -Summer is July to September -Fall is October to December - -3 months of airtime equates to about 12 episodes, could be slightly more or less. This is called a cour. So a one cour anime is 12 episodes. A two cour anime is around 24 episodes and will air over the course of two seasons. - -If you're ever curious about what shows are coming out during any given season you can check the Seasonal anime section of MyAnimeList that is pretty easy to browse!";False;False;;;;1610169030;;False;{};gimlhm1;False;t3_ktka5a;False;False;t3_ktka5a;/r/anime/comments/ktka5a/how_do_anime_seasons_work/gimlhm1/;1610214366;7;True;False;anime;t5_2qh22;;0;[]; -[];;;GiveMeTheLeaf;;;[];;;;text;t2_56zgb7wi;False;False;[];;Definitely better then I expected! Well done!;False;False;;;;1610169082;;False;{};gimlkmw;False;t3_kth985;False;True;t3_kth985;/r/anime/comments/kth985/is_assassination_classroom_worth_watching/gimlkmw/;1610214423;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Handsome-_-awkward;;;[];;;;text;t2_52f0dxfa;False;False;[];;Re:zero;False;False;;;;1610169148;;False;{};gimloge;False;t3_ktf2vp;False;True;t3_ktf2vp;/r/anime/comments/ktf2vp/got_any_good_psychological_anime_recs/gimloge/;1610214492;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Thorkell;False;False;;;;1610169243;;False;{};gimltw9;False;t3_ktjy1n;False;False;t3_ktjy1n;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/gimltw9/;1610214595;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;"It's not simply about ""little kids being eaten"". That's just the initial twist. The show is about escaping this house so they aren't eaten. It's mainly a thriller/mystery";False;False;;;;1610169310;;False;{};gimlxm0;False;t3_ktjuc4;False;True;t1_gimiscc;/r/anime/comments/ktjuc4/help_with_next_pick/gimlxm0/;1610214661;1;True;False;anime;t5_2qh22;;0;[]; -[];;;opi098514;;;[];;;;text;t2_51dfdxum;False;False;[];;School days.;False;False;;;;1610169321;;False;{};gimly90;False;t3_ktjsvw;False;True;t3_ktjsvw;/r/anime/comments/ktjsvw/animes_where_the_mc_has_a_girl_thats_completely/gimly90/;1610214672;2;True;False;anime;t5_2qh22;;0;[]; -[];;;opi098514;;;[];;;;text;t2_51dfdxum;False;False;[];;School days. It also has a nice boat.;False;False;;;;1610169395;;False;{};gimm2cb;False;t3_ktjsou;False;False;t3_ktjsou;/r/anime/comments/ktjsou/tell_me_a_nice_anime/gimm2cb/;1610214751;6;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;"Not even sure if it exists on DVD/Blu-Ray with subtitles. -Pretty much every version released in North America is the dub only version. - -Though to be fair I think they might have changed the dub for one of the 2 Vampire Hunter D movies on Blu-Ray. - -I have the older DVDs of both.";False;False;;;;1610169568;;False;{};gimmbyv;False;t3_ktjyc1;False;True;t3_ktjyc1;/r/anime/comments/ktjyc1/is_seeking_out_the_japanese_audio_version_of/gimmbyv/;1610214933;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fb39ca4;;;[];;;;text;t2_6x3us;False;False;[];;"All you said was ""like future where they...""";False;False;;;;1610169577;;False;{};gimmch3;False;t3_ktjsvw;False;False;t1_gimi3l4;/r/anime/comments/ktjsvw/animes_where_the_mc_has_a_girl_thats_completely/gimmch3/;1610214943;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Kreiger34567;;;[];;;;text;t2_1r177nrl;False;False;[];;Kaioh Retsu;False;False;;;;1610169650;;False;{};gimmgpu;False;t3_ktjy1n;False;True;t3_ktjy1n;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/gimmgpu/;1610215040;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EstebanIsAGamerWord;;;[];;;;text;t2_4vhvkb76;False;False;[];;Griffith pre-eclipse.;False;False;;;;1610169682;;False;{};gimmigz;False;t3_ktjy1n;False;True;t3_ktjy1n;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/gimmigz/;1610215072;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EstebanIsAGamerWord;;;[];;;;text;t2_4vhvkb76;False;False;[];;Diane from Seven Deadly Sins. She's insane...ly annoying to listen to.;False;False;;;;1610169764;;False;{};gimmn08;False;t3_ktjsvw;False;True;t3_ktjsvw;/r/anime/comments/ktjsvw/animes_where_the_mc_has_a_girl_thats_completely/gimmn08/;1610215161;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Throwaway1647478;;;[];;;;text;t2_8fubwwfr;False;False;[];;"Avatar the Last Airbender. May not be an ""anime"" but it'll be one of the best animated tv series you'll ever watch.";False;False;;;;1610169839;;False;{};gimmr0g;False;t3_ktjsou;False;False;t1_gimizy6;/r/anime/comments/ktjsou/tell_me_a_nice_anime/gimmr0g/;1610215237;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Whosyouranimedaddy;;;[];;;;text;t2_63by9380;False;False;[];;I love toudo;False;False;;;;1610169916;;False;{};gimmvdj;False;t3_ktjhoh;False;False;t3_ktjhoh;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/gimmvdj/;1610215313;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Throwaway1647478;;;[];;;;text;t2_8fubwwfr;False;False;[];;Your best bet is to do a free trial and try to finish it before it ends.;False;False;;;;1610170030;;False;{};gimn20b;False;t3_ktiq8n;False;True;t3_ktiq8n;/r/anime/comments/ktiq8n/the_promised_neverland/gimn20b/;1610215437;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;I still kinda prefer the various Dragon Ball, Bleach, and Inuyashsa movies over the actual shows.;False;False;;;;1610170105;;False;{};gimn6cr;False;t3_ktj3or;False;True;t3_ktj3or;/r/anime/comments/ktj3or/how_come_nobody_talks_about_the_movies/gimn6cr/;1610215519;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Midori-4;;;[];;;;text;t2_3ffbl678;False;False;[];;"Venture into the gems of MAL in the 6-7 range. - -Or join me in watching Magical Girl Raising Project!";False;False;;;;1610170176;;False;{};gimnadg;False;t3_ktjuc4;False;True;t3_ktjuc4;/r/anime/comments/ktjuc4/help_with_next_pick/gimnadg/;1610215595;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;"Hajime no Ippo, though it's not exactly a short anime. - -Madoka Magica would technically fit.";False;False;;;;1610170183;;False;{};gimnat6;False;t3_ktftck;False;True;t3_ktftck;/r/anime/comments/ktftck/underdog_anime_suggestions_for_my_friend_and_i/gimnat6/;1610215605;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Deathreaper74;;;[];;;;text;t2_8mt0vyji;False;False;[];;What anime is this?;False;False;;;;1610170229;;False;{};gimndd2;False;t3_kth6in;False;True;t3_kth6in;/r/anime/comments/kth6in/i_compiled_a_bunch_of_shimarin_noises_into_one/gimndd2/;1610215653;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cbumpa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cbumpa;light;text;t2_4uaglc4u;False;False;[];;Mind giving me a little summary of what each are about? If not I appreciate the recommendations alone! I’ve been told to watch Madoka Magica a lot I just don’t know if it would appeal to me;False;False;;;;1610170279;;False;{};gimng8t;True;t3_ktftck;False;True;t1_gimnat6;/r/anime/comments/ktftck/underdog_anime_suggestions_for_my_friend_and_i/gimng8t/;1610215704;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zest88;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/zesty79740555;light;text;t2_5tcnkyer;False;False;[];; [**Oniisama e...**](https://myanimelist.net/anime/795/Oniisama_e);False;False;;;;1610170322;;False;{};gimnit3;False;t3_ktf2vp;False;True;t3_ktf2vp;/r/anime/comments/ktf2vp/got_any_good_psychological_anime_recs/gimnit3/;1610215750;1;True;False;anime;t5_2qh22;;0;[]; -[];;;comi_lll;;;[];;;;text;t2_4aojrbx4;False;False;[];;Hiroshi is a really good VA in my opinion the fact that he sounds so different as Levi from AoT is insane. Or it might just be that he got older but he is still really good;False;False;;;;1610170421;;False;{};gimnoed;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimnoed/;1610215862;386;True;False;anime;t5_2qh22;;0;[]; -[];;;SpartanSlayer64;;;[];;;;text;t2_r2wgn;False;False;[];;"I like the Japanese dub because it has Megumi Hayashibara (voice of Rei Ayanami in Evangelion & Faye Valentine in Cowboy Bebop) but it's really not worth going out of your way to watch it. - -The movie was created primarily to cash in on the overseas anime sales boom, so the original language of the film was English. It didn't even hit theaters in Japan until a year after its US release, with Japanese subtitles over the English audio.";False;False;;;;1610170436;;False;{};gimnp7s;False;t3_ktjyc1;False;True;t3_ktjyc1;/r/anime/comments/ktjyc1/is_seeking_out_the_japanese_audio_version_of/gimnp7s/;1610215876;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gdixon10;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_5v7rt2af;False;False;[];;I’m so confused rn;False;False;;;;1610170505;;False;{};gimnt38;True;t3_ktjuc4;False;True;t1_gimnadg;/r/anime/comments/ktjuc4/help_with_next_pick/gimnt38/;1610215963;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rixtertrixter;;;[];;;;text;t2_5v1ku9nj;False;False;[];;Ahh yes local pedophile loses contest against snail loli and does a handstand to see her panties;False;False;;;;1610170537;;False;{};gimnuwb;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimnuwb/;1610215996;322;True;False;anime;t5_2qh22;;0;[]; -[];;;SchaffBGaming;;;[];;;;text;t2_751shnz9;False;False;[];;That's really cool, ill impress my buddies later by talking about the next big cour!;False;False;;;;1610170596;;False;{};gimny3r;True;t3_ktka5a;False;True;t1_gimlhm1;/r/anime/comments/ktka5a/how_do_anime_seasons_work/gimny3r/;1610216064;3;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;Try Space Dandy as well;False;False;;;;1610170639;;False;{};gimo0f4;False;t3_ktgft1;False;True;t3_ktgft1;/r/anime/comments/ktgft1/champloo_samurai_first_timer_ive_missed_out_big/gimo0f4/;1610216116;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GiveMeTheLeaf;;;[];;;;text;t2_56zgb7wi;False;False;[];;"""Mushishi""- Art is Amazing! Short stories. Easy to pick up again anytime. (48 episodes) - -""Kimetsu no Yaiba""- Popular right now. First season to the newest movie to come out. Awesome. (26 episodes) - -""Bungou Stray Dogs""- If you are a fan of classic literature or books. (24 episodes) - -""Nichijou""- Funny slice of life. Might call a classic. (26 episodes) - -If you watch any let me know if you like them or not! Happy watching!";False;False;;;;1610170651;;False;{};gimo13g;False;t3_ktftck;False;True;t3_ktftck;/r/anime/comments/ktftck/underdog_anime_suggestions_for_my_friend_and_i/gimo13g/;1610216130;2;True;False;anime;t5_2qh22;;0;[]; -[];;;redddditer420;;;[];;;;text;t2_23au3gdw;False;False;[];;Yeah but the emoji is worse;False;False;;;;1610170702;;False;{};gimo3sb;False;t3_ktjhoh;False;False;t1_gimg8bl;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/gimo3sb/;1610216180;12;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;Slayers;False;False;;;;1610170747;;False;{};gimo64w;False;t3_ktfdps;False;True;t3_ktfdps;/r/anime/comments/ktfdps/looking_for_retro_anime_with_good_animation/gimo64w/;1610216227;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cbumpa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cbumpa;light;text;t2_4uaglc4u;False;False;[];;Hey thank you for the recommendations! I’ll add em to the list and get back to you! (I’ve seen Kimetsu no Yaiba it’s great so far);False;False;;;;1610170747;;False;{};gimo65y;True;t3_ktftck;False;True;t1_gimo13g;/r/anime/comments/ktftck/underdog_anime_suggestions_for_my_friend_and_i/gimo65y/;1610216228;1;True;False;anime;t5_2qh22;;0;[]; -[];;;redddditer420;;;[];;;;text;t2_23au3gdw;False;False;[];;Username does not check out;False;False;;;;1610170761;;False;{};gimo6uo;False;t3_ktjsou;False;True;t1_gimip7q;/r/anime/comments/ktjsou/tell_me_a_nice_anime/gimo6uo/;1610216241;3;True;False;anime;t5_2qh22;;0;[]; -[];;;maximus_md;;;[];;;;text;t2_3nhroflm;False;False;[];;I can’t speak for the other categories but your top 5 shounen make me want to cry, have you just not watched any other shounen at all? 😂;False;False;;;;1610170883;;False;{};gimodgs;False;t3_kti1ux;False;True;t1_gim6ow0;/r/anime/comments/kti1ux/n00b_looking_for_anime_recommendations/gimodgs/;1610216363;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yuvi-YV-;;;[];;;;text;t2_4atjt5bs;False;False;[];;Wow, I never knew I needed it !;False;False;;;;1610170885;;False;{};gimodj5;False;t3_ktgaoa;False;False;t1_gim2f8h;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimodj5/;1610216364;25;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;Seven Seeds;False;False;;;;1610170901;;False;{};gimoedp;False;t3_kte07u;False;True;t3_kte07u;/r/anime/comments/kte07u/anime_where_people_are_isolated/gimoedp/;1610216379;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Midori-4;;;[];;;;text;t2_3ffbl678;False;False;[];;"Oof me too! This isn’t where I was posting. Carry on! - -But I do recommend that anime.";False;False;;;;1610170943;;False;{};gimognv;False;t3_ktjuc4;False;True;t1_gimnt38;/r/anime/comments/ktjuc4/help_with_next_pick/gimognv/;1610216425;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ultenth;;;[];;;;text;t2_3jwrn;False;False;[];;"The courage to be a lazy bum. - -2020 (and probably 2021): [Seems legit](https://i.imgur.com/ISO6HTp.jpeg)";False;False;;;;1610170965;;False;{};gimohvr;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimohvr/;1610216450;152;True;False;anime;t5_2qh22;;0;[]; -[];;;Strickout;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Strickout?status=2;light;text;t2_1szolp7k;False;False;[];;It's not my favourite genre so no I haven't watched many;False;False;;;;1610170969;;False;{};gimoi3p;False;t3_kti1ux;False;True;t1_gimodgs;/r/anime/comments/kti1ux/n00b_looking_for_anime_recommendations/gimoi3p/;1610216454;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SelfDepricator;;;[];;;;text;t2_12p6y1;False;False;[];;"Zetsuboshita! - -.....Sorry, wrong show - --Arararararagi-san";False;False;;;;1610170989;;False;{};gimoj44;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimoj44/;1610216472;74;True;False;anime;t5_2qh22;;0;[]; -[];;;FragrantSandwich;;;[];;;;text;t2_3yuz2s7t;False;False;[];;Toudo's voice in the dub is more appropriate for him. I thought his japanese voice didnt project enough, wasnt as deep as it he should be.;False;False;;;;1610171100;;False;{};gimop0v;False;t3_ktjhoh;False;False;t3_ktjhoh;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/gimop0v/;1610216581;16;True;False;anime;t5_2qh22;;0;[]; -[];;;onefootstout;;;[];;;;text;t2_qyi54;False;False;[];;She is not a Yandere, just insane, but Four Murasame from Zeta Gumdan. Half the time she is trying to kill the MC and the other half she is in love with him. Actually a handful of the girls in Zeta are like this.;False;False;;;;1610171199;;False;{};gimoucf;False;t3_ktjsvw;False;True;t3_ktjsvw;/r/anime/comments/ktjsvw/animes_where_the_mc_has_a_girl_thats_completely/gimoucf/;1610216677;1;True;False;anime;t5_2qh22;;0;[]; -[];;;clockfriend;;;[];;;;text;t2_asfyn;False;False;[];;yuru camp. it's peak cozy slice of life, highly recommend;False;False;;;;1610171277;;False;{};gimoyfj;False;t3_kth6in;False;False;t1_gimndd2;/r/anime/comments/kth6in/i_compiled_a_bunch_of_shimarin_noises_into_one/gimoyfj/;1610216766;13;True;False;anime;t5_2qh22;;0;[]; -[];;;clockfriend;;;[];;;;text;t2_asfyn;False;False;[];;glad you included the best sound, her death noise at 1:27;False;False;;;;1610171321;;False;{};gimp0rt;False;t3_kth6in;False;False;t3_kth6in;/r/anime/comments/kth6in/i_compiled_a_bunch_of_shimarin_noises_into_one/gimp0rt/;1610216821;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Drakmeire;;MAL;[];;http://myanimelist.net/animelist/Drakmeire;dark;text;t2_6b4jo;False;False;[];;I do know that a lot of dialogue from Monogatari is wonky to translate. Any fluent Japanese speakers have any extra insight to add to this scene or is the use of courage accurate?;False;False;;;;1610171458;;False;{};gimp7xl;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimp7xl/;1610216956;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;"Hajime no Ippo is about a bullied kid who learns to value himself through professional boxing, which perfectly fits you requirement. It's 75 eps though. - -Madoka Magica is a bit of a different story, since it's more diverse in terms of focus. The main character Madoka has a lot of potential to become a Puella Magi, but her shy and kind personality hinders her, while her friend Sayaka is brash and courageous, but has no talent. Keep in.mind that the show slowly turns into a psychological horror after ep 3. - -If you want an anime more focused on talent vs hard work, I recommend checking out Ping Pong the Animation.";False;False;;;;1610171463;;False;{};gimp874;False;t3_ktftck;False;True;t1_gimng8t;/r/anime/comments/ktftck/underdog_anime_suggestions_for_my_friend_and_i/gimp874/;1610216960;2;True;False;anime;t5_2qh22;;0;[]; -[];;;pinokun;;;[];;;;text;t2_1vnbaw0x;False;False;[];;I always like their barter. Also, this is one of the few instances where you can see Hachikuji without her backpack on.;False;False;;;;1610171534;;False;{};gimpc12;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimpc12/;1610217031;14;True;False;anime;t5_2qh22;;0;[]; -[];;;maximus_md;;;[];;;;text;t2_3nhroflm;False;False;[];;"Based on what you’ve watched so far and liked you’re probably going to enjoy most of the famous shounens to varying degrees; - -- HunterXHunter: -Great characters and some really enjoyable arcs, not super long so it’s manageable and has some pretty enjoyable fights - -- Promised Neverland: -S1 is great story-telling, and S2 which has just started is meant to be much more shounen-y - -- Samurai Champloo: -Not typical shounen but great fights and characters and it’s pretty short - -And so many more; honestly just watch a few episodes of anything that catches your eye and that’s usually enough to tell whether you’ll like it";False;False;;;;1610171549;;False;{};gimpcsb;False;t3_kti1ux;False;True;t3_kti1ux;/r/anime/comments/kti1ux/n00b_looking_for_anime_recommendations/gimpcsb/;1610217044;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;Love Tyrant;False;False;;;;1610171628;;False;{};gimpgtp;False;t3_ktjsvw;False;True;t3_ktjsvw;/r/anime/comments/ktjsvw/animes_where_the_mc_has_a_girl_thats_completely/gimpgtp/;1610217129;1;True;False;anime;t5_2qh22;;0;[]; -[];;;johnbhs;;;[];;;;text;t2_7r31mtfm;False;False;[];;Eye bleaching god forsaken trauma from the past I cannot forget.;False;False;;;;1610171704;;False;{};gimpkqr;False;t3_ktgaoa;False;False;t1_gimlcvh;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimpkqr/;1610217204;11;True;False;anime;t5_2qh22;;0;[]; -[];;;maximus_md;;;[];;;;text;t2_3nhroflm;False;False;[];;"Fair enough; I’ve watched a lot of it but Fairy Tail is pretty damn bad man 😂";False;False;;;;1610171714;;False;{};gimpl96;False;t3_kti1ux;False;True;t1_gimoi3p;/r/anime/comments/kti1ux/n00b_looking_for_anime_recommendations/gimpl96/;1610217213;1;True;False;anime;t5_2qh22;;0;[]; -[];;;asianwheatbread;;;[];;;;text;t2_3xwh2y65;False;False;[];;The courage to finish the entire series cause it's that good;False;False;;;;1610171787;;False;{};gimpozn;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimpozn/;1610217286;142;True;False;anime;t5_2qh22;;0;[]; -[];;;AtheistChristian8;;;[];;;;text;t2_5kddr0nf;False;False;[];;pedophiliamonogatari;False;False;;;;1610171835;;False;{};gimpri5;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimpri5/;1610217333;59;True;False;anime;t5_2qh22;;0;[]; -[];;;Strickout;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Strickout?status=2;light;text;t2_1szolp7k;False;False;[];;It's more of a personal bias because its the only marathon length anime I've watched. Not to mention I'm a huge sucker for Ships and Fairy Tail basically gives an unlimited amount of headcanon ships plus a ton of awesome Canon pairs;False;False;;;;1610171889;;False;{};gimpucb;False;t3_kti1ux;False;True;t1_gimpl96;/r/anime/comments/kti1ux/n00b_looking_for_anime_recommendations/gimpucb/;1610217383;1;True;False;anime;t5_2qh22;;0;[]; -[];;;csthrowawy0303;;;[];;;;text;t2_157xpx;False;False;[];;nothing wonky in translation here - 勇気(ゆうき,yuuki) is courage;False;False;;;;1610172011;;False;{};gimq0hm;False;t3_ktgaoa;False;False;t1_gimp7xl;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimq0hm/;1610217496;18;True;False;anime;t5_2qh22;;0;[]; -[];;;thatguywithawatch;;;[];;;;text;t2_roht2;False;False;[];;Just monogatari things;False;False;;;;1610172029;;False;{};gimq1g0;False;t3_ktgaoa;False;False;t1_gimnuwb;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimq1g0/;1610217515;138;True;False;anime;t5_2qh22;;0;[]; -[];;;sixstringgun1;;;[];;;;text;t2_3q7yvi11;False;False;[];;Been meeting to watch this online hope it’s as good as I’ve seen it to be advertised.;False;False;;;;1610172032;;False;{};gimq1lu;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimq1lu/;1610217518;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Affectionate-Flight1;;;[];;;;text;t2_7rxtg6s4;False;False;[];;This is promoting pedophilia. So fucking creepy.;False;True;;comment score below threshold;;1610172064;;1610172568.0;{};gimq3ai;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimq3ai/;1610217547;-42;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610172116;;False;{};gimq5xh;False;t3_ktjy1n;False;False;t3_ktjy1n;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/gimq5xh/;1610217593;1;True;False;anime;t5_2qh22;;0;[]; -[];;;i_am_the_kiLLer;;;[];;;;text;t2_kvi84;False;False;[];;I'm not a Japanese speaker but i don't think there was anything in this scene specific to Japanese itself, seemed like a simple and correct translation.;False;False;;;;1610172174;;False;{};gimq8pd;False;t3_ktgaoa;False;False;t1_gimp7xl;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimq8pd/;1610217652;15;True;False;anime;t5_2qh22;;0;[]; -[];;;thatguywithawatch;;;[];;;;text;t2_roht2;False;False;[];;Zetsuboushita! This world that recognizes me not for my portrayal of a teacher imparting worldly cynicism to my students but instead as a pedo vampire has left me in [zetsuboushita!](https://www.youtube.com/watch?v=f-jGYAbjIOI);False;False;;;;1610172252;;False;{};gimqcnd;False;t3_ktgaoa;False;False;t1_gimoj44;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimqcnd/;1610217729;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Sebasu;;MAL;[];;https://myanimelist.net/profile/Sebasu_tan;dark;text;t2_b6y1a;False;False;[];;The courage to [tell a lie](https://youtu.be/VUqBM-Y4r9Q);False;False;;;;1610172407;;False;{};gimqkj5;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimqkj5/;1610217869;53;True;False;anime;t5_2qh22;;0;[]; -[];;;HydrakeLogistix;;MAL;[];;https://myanimelist.net/profile/HydrakeLogistix;dark;text;t2_hvxal;False;False;[];;I still can't get over the fact that the same guy voices both Levi and Shinji (from Fate). They are like, total opposite in personalities.;False;False;;;;1610172471;;False;{};gimqnsl;False;t3_ktgaoa;False;False;t1_gimnoed;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimqnsl/;1610217932;210;True;False;anime;t5_2qh22;;0;[]; -[];;;Man_Without_Fear;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PlsBuff;light;text;t2_a37ql;False;False;[];;Oh yeah you’re talking about that side character from the Mumen Rider anime.;False;False;;;;1610172575;;False;{};gimqsw3;False;t3_ktjy1n;False;False;t1_gimjckf;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/gimqsw3/;1610218037;8;True;False;anime;t5_2qh22;;0;[]; -[];;;cbumpa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cbumpa;light;text;t2_4uaglc4u;False;False;[];;Three amazing recommendations. One, I love anything sports related so you just gave two gems. Two, I love psychological horror anime’s so that’s a bonus right there. Three, two of these are anime’s I’ve considered watching already so now I really want to watch them. You are greatly appreciated.;False;False;;;;1610172593;;False;{};gimqtq5;True;t3_ktftck;False;True;t1_gimp874;/r/anime/comments/ktftck/underdog_anime_suggestions_for_my_friend_and_i/gimqtq5/;1610218061;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hitmanbill;;MAL;[];;http://myanimelist.net/animelist/Denisis;dark;text;t2_6k7yf;False;False;[];;"Theres a ton of really unique and incredible character dialogue in the series. It's also speckled with scenes of the main character being very perverted to a cast of children and his sisters. - -So good luck. It's very unique";False;False;;;;1610172616;;False;{};gimquw1;False;t3_ktgaoa;False;False;t1_gimq1lu;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimquw1/;1610218084;29;True;False;anime;t5_2qh22;;0;[]; -[];;;i_am_an_awkward_man;;MAL;[];;https://myanimelist.net/animelist/iamananimeman;dark;text;t2_n4127;False;False;[];;Yup. I was really impressed with both his and Mai’s english voices.;False;False;;;;1610172634;;False;{};gimqvsl;False;t3_ktjhoh;False;False;t1_gimop0v;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/gimqvsl/;1610218101;4;True;False;anime;t5_2qh22;;0;[]; -[];;;dtritus0;;;[];;;;text;t2_ykeps;False;False;[];;The last monogatari series entry was 2018, so I don't think age has to do with it, but I don't really remember if Araragi sounded more similar to Levi in the later parts.;False;False;;;;1610172754;;False;{};gimr1qz;False;t3_ktgaoa;False;False;t1_gimnoed;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimr1qz/;1610218213;34;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;"Dub is absolutely horrible. ""Fushiguuroo was it?"" So cringe";False;True;;comment score below threshold;;1610172825;;False;{};gimr582;False;t3_ktjhoh;False;True;t3_ktjhoh;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/gimr582/;1610218275;-20;True;False;anime;t5_2qh22;;0;[]; -[];;;sixstringgun1;;;[];;;;text;t2_3q7yvi11;False;False;[];;Yes I did know it was very dialogue heavy and the perverted parts however it’s a very long series of movies to watch. Also hoping if I do start watching it I can finish it and not have to skip or miss anything;False;False;;;;1610172843;;False;{};gimr63i;False;t3_ktgaoa;False;False;t1_gimquw1;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimr63i/;1610218291;7;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;Tachibana Hibiki (Symphogear);False;False;;;;1610172943;;False;{};gimrawc;False;t3_ktjy1n;False;False;t3_ktjy1n;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/gimrawc/;1610218384;3;True;False;anime;t5_2qh22;;0;[]; -[];;;aidey1113;;;[];;;;text;t2_zc0dr;False;False;[];;Hiroshi Kamiya is a legend easy as;False;False;;;;1610173060;;False;{};gimrgkv;False;t3_ktgaoa;False;False;t1_gimnoed;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimrgkv/;1610218492;25;True;False;anime;t5_2qh22;;0;[]; -[];;;alphabet_assassin;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_586bjelf;False;False;[];;u/savevideo;False;False;;;;1610173084;;False;{};gimrhsd;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimrhsd/;1610218513;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KingArrancar;;;[];;;;text;t2_chpo0;False;False;[];;Shit like this is why I watch so much fewer anime...;False;True;;comment score below threshold;;1610173166;;False;{};gimrlqq;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimrlqq/;1610218584;-18;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaitonic;;MAL;[];;https://myanimelist.net/profile/kaitonic;dark;text;t2_122bsm;False;False;[];;Leona look so happy to see Dai again. Damn i ship those 2 so hard xD;False;False;;;;1610173221;;False;{};gimrohm;False;t3_kthh9g;False;False;t3_kthh9g;/r/anime/comments/kthh9g/dragon_quest_dai_no_daibouken_episode_14/gimrohm/;1610218632;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Billy__Ocean;;;[];;;;text;t2_af0zx;False;False;[];;😐 no, it's not, but go off;False;False;;;;1610173257;;False;{};gimrq7t;False;t3_ktgaoa;False;False;t1_gimq3ai;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimrq7t/;1610218663;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Lucifer_Hirsch;;;[];;;;text;t2_8h63b;False;False;[];;"nonono it's not! she's dead! -it's necropedophiliamonogatari.";False;False;;;;1610173262;;False;{};gimrqg0;False;t3_ktgaoa;False;False;t1_gimpri5;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimrqg0/;1610218666;97;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610173316;;False;{};gimrt3c;False;t3_ktgaoa;False;True;t1_gimr1qz;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimrt3c/;1610218718;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Affectionate-Flight1;;;[];;;;text;t2_7rxtg6s4;False;False;[];;The dude is literally peeping at a little kid’s panties and the show treats it like a joke and actually makes the little girl seem like she wants him to look. Yeah, it’s promoting pedophilia.;False;False;;;;1610173401;;False;{};gimrx5z;False;t3_ktgaoa;False;True;t1_gimrq7t;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimrx5z/;1610218795;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;alexjb12;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/alexjb12;dark;text;t2_147sr8;False;False;[];;">Japanese really is simple! - -Not sure whether to make a joke about how untrue this is or about how inept I am";False;False;;;;1610173468;;False;{};gims0ci;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gims0ci/;1610218852;32;True;False;anime;t5_2qh22;;0;[]; -[];;;HagridPotter;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Barusu/animelist;light;text;t2_2fguh6w;False;False;[];;"tbh, monogatari often feels like it's aimed at pedos. this scene is minor in comparison to stuff that happens later. people have a negative outlook on anime as a whole precisely because of shows/scenes like this. - -it's not even humorous, it's just...pedophilia. like that's supposed to be the joke or something lol.";False;False;;;;1610173506;;1610174463.0;{};gims23y;False;t3_ktgaoa;False;False;t1_gimq3ai;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gims23y/;1610218885;0;True;False;anime;t5_2qh22;;0;[]; -[];;;nicolRB;;;[];;;;text;t2_2h92466c;False;False;[];;The courage to be a degenerate weeb;False;False;;;;1610173536;;False;{};gims3kg;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gims3kg/;1610218913;21;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;Pretty good episode to come back with. Flazzard doesn't fuck around. Wish next episode previews weren't so spoily, I should stop the watching as soon as the ED winds down.;False;False;;;;1610173559;;False;{};gims4ms;False;t3_kthh9g;False;True;t3_kthh9g;/r/anime/comments/kthh9g/dragon_quest_dai_no_daibouken_episode_14/gims4ms/;1610218931;2;True;False;anime;t5_2qh22;;0;[]; -[];;;God1is1love;;;[];;;;text;t2_49sqgiwk;False;False;[];;Bruh i swear yall are faster with these spoiler uploads than the flash. The episode literally just came out.;False;True;;comment score below threshold;;1610173595;;False;{};gims6cw;False;t3_ktjhoh;False;True;t3_ktjhoh;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/gims6cw/;1610218962;-19;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;Kirito just cause he is already a video game character. And Edward Elric.;False;False;;;;1610173595;;False;{};gims6dz;False;t3_ktjy1n;False;False;t3_ktjy1n;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/gims6dz/;1610218963;7;True;False;anime;t5_2qh22;;0;[]; -[];;;bugxter;;;[];;;;text;t2_ahdtc;False;False;[];;Monogatari is in my top 5 but honestly... Who writes shit like this.;False;False;;;;1610173598;;False;{};gims6i4;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gims6i4/;1610218964;54;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610173630;;False;{};gims80y;False;t3_ktjy1n;False;True;t3_ktjy1n;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/gims80y/;1610218993;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ReiahlTLI;;;[];;;;text;t2_inivd9e;False;False;[];;"The ep was really good especially at showing how powerful and menacing Flazzard is. His voice actor is doing an amazing job of portraying him. - -Only oddity I saw was the English translation of his special technique. Going from Finger Flare Bombs to Five Finger Flares is weird, I can understand why but like he's saying it in English already, lol";False;False;;;;1610173676;;False;{};gimsa6r;False;t3_kthh9g;False;False;t3_kthh9g;/r/anime/comments/kthh9g/dragon_quest_dai_no_daibouken_episode_14/gimsa6r/;1610219033;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Defiant_Greg;;;[];;;;text;t2_8m4ci19t;False;False;[];;Levi Ackermann;False;False;;;;1610173679;;False;{};gimsack;False;t3_ktjy1n;False;True;t3_ktjy1n;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/gimsack/;1610219036;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HexaShadow13;;;[];;;;text;t2_7pzkj;False;False;[];;This show is a masterpiece. Really wish Shaft would adapt new seasons of this.;False;False;;;;1610173685;;False;{};gimsan8;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimsan8/;1610219041;46;True;False;anime;t5_2qh22;;0;[]; -[];;;SirAwesome789;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SirAwesomeness;light;text;t2_ra3np;False;False;[];;">amaze-balls - -Now that's a term I haven't heard in 5+ years";False;False;;;;1610173770;;False;{};gimsenf;False;t3_ktjh8d;False;False;t1_gimf7aq;/r/anime/comments/ktjh8d/is_trigger_worth_watching/gimsenf/;1610219115;5;True;False;anime;t5_2qh22;;0;[]; -[];;;LokiRagnarok1228;;;[];;;;text;t2_vy0d5md;False;False;[];;I love the Gamaguri Kill La Kill vibe this dude got going on. He's got one size, bigger than you and a voice with so much bass in it, it wouldn't be out of place at a fish market.;False;False;;;;1610173808;;False;{};gimsgdv;False;t3_ktjhoh;False;False;t3_ktjhoh;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/gimsgdv/;1610219151;32;True;False;anime;t5_2qh22;;0;[]; -[];;;SirAwesome789;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SirAwesomeness;light;text;t2_ra3np;False;False;[];;Bc they all feel like filler;False;False;;;;1610173920;;False;{};gimslj3;False;t3_ktj3or;False;True;t3_ktj3or;/r/anime/comments/ktj3or/how_come_nobody_talks_about_the_movies/gimslj3/;1610219249;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Demacian_Justice;;;[];;;;text;t2_xkfazsi;False;False;[];;"If you're wanting a space anime you'll really enjoy Cowboy Bebop and Space Dandy. Cowboy Bebop was one of the best anime to come out of the 90s, and is a timeless classic. If you enjoyed either of those, that director also has a hip-hop influenced samurai show called Samurai Champloo that is also very good. Samurai Champloo's action scenes are extremely well choreographed, and the main character incorporates breakdancing into his fighting style. All of these shows absolutely ooze style. - -Considering that you enjoyed DBZ and One Punch Man, I think you would probably enjoy the fights of Seven Deadly Sins as well. That show starts off with all the main characters being ridiculously powerful legendary warriors. - -I'd recommend My Hero Academia to you as well, it's a show about a boy that starts off with no powers, and his slow rise to the top in a world where everyone is a superhero. This show takes a lot of inspiration from American comics, and it shows. If you're looking for epic fights full of superpowers, this show has some amazing ones. - -Demon Slayer is an amazing show with phenomenal animation and fights. It's about a boy whose family is massacred by demons, and his sister turned into one. Contrary to what you would expect from a young boy's quest for vengeance against those that slaughtered his family, he's genuinely kind, even to the demons he fights. He's empathetic to the demons he takes out, seeking to understand the cause of their pain and release them from it. The fights in the show are absolutely beautiful. - -Dr. Stone is a show about a science prodigy trying to revive the world after a cataclysmic event turns everyone on the planet into a statue. Through the show he basically just speedruns science and invention with the end goal of bringing humanity from the stone age to the space age as soon as possible. The science is relatively accurate, and the show itself is a fun ride. They actually reference Monster Hunter in the show too. The second season is about to start airing really soon, so if you catch up you'll be able to experience it in a weekly format. - -Monster Hunter-esque anime generally fall into more JRPG and general fantasy themes than the 1 man vs giant monster type deal. There's a lot of these shows, so many that there's an entire genre about getting reincarnated into a fantasy world. These can be a bit of a mixed bag, but these are some of the standouts: - -Rise of the Shield Hero. Main character gets reincarnated as a lance main except its just the shield with no lance. He faces a lot of adversity and injustice because the world he's reincarnated into reveres the heroes of the sword, spear, and bow, but treats the shield as either nonexistent or an affront to their beliefs. This one has darker themes than some of the other ones I'm recommending. - -Re:Zero. This is probably the darkest show I'm recommending. The main character gets reincarnated into another world and finds out his sole power is that when he dies, the world restarts at certain checkpoints that he can't set himself. The show follows him as he slowly loses his sanity from repeatedly dying in more and more gruesome and painful ways. The second half of season 2 for this show is airing right now, and season 2 has been amazing so far. - -Konosuba. This one is a comedy show about (yet another) guy that gets reincarnated into another world. He's given the option by the goddess that reincarnates him to take any kind of power he wants into the other world, and out of spite he chooses to take the goddess with him. It's a character driven comedy that's an extremely fun watch, and parodies other shows in the genre. - -Death note is an incredibly tense show about a kid that suddenly gains the power to kill anyone by writing their name in a book. The show follows him engaging in an elaborate mental battle against the detective prodigy L, with him desperately trying to conceal his true intent and role, while L is beginning to piece everything together. This show was an instant classic upon release, and still holds the test of time. - -I genuinely feel like you would really enjoy Jojo's Bizarre Adventure. That's a show where each season follows a different descendent of the same bloodline (referred to as parts), and is filled with crazy powers and fights. It really hits it's stride in its 3rd season, when the author decides to drop the original martial arts powers for incredibly specific and crazy superpowers that can manifest in a humanoid form. Its a show that embraces being over the top, and is an insanely fun watch that's gets made a lot better if you smoke a bowl before you watch. This show starts off a bit boring for the first 12 episodes, but once it enters the second part, it picks up a lot of steam entirely off how fun the new main character is. - -&#x200B; - -This ended up being way longer and in-depth than I initially planned, but I've got a lot of free time so I may as well. I think you should give all of these shows a shot, but some of them do take a while to pick up.";False;False;;;;1610173960;;False;{};gimsneu;False;t3_kti1ux;False;True;t3_kti1ux;/r/anime/comments/kti1ux/n00b_looking_for_anime_recommendations/gimsneu/;1610219286;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Billy__Ocean;;;[];;;;text;t2_af0zx;False;False;[];;"Look I'm sorry if you look at that and see if promoting it, idk what I can do to help with that. -I just see Araragi being Araragi. And Hachikuji being Hachikuji. It's kind of their schtick. You wouldn't understand if you've never seen the show.";False;False;;;;1610173972;;False;{};gimsnxb;False;t3_ktgaoa;False;False;t1_gimrx5z;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimsnxb/;1610219296;13;True;False;anime;t5_2qh22;;0;[]; -[];;;C4ptainoodles;;;[];;;;text;t2_3b975bvx;False;False;[];;The courage to eat ass at the funeral;False;False;;;;1610174012;;False;{};gimspr1;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimspr1/;1610219330;20;True;False;anime;t5_2qh22;;0;[]; -[];;;smartdude200iq;;;[];;;;text;t2_5f6uooe3;False;False;[];;yoo wtf i just watched this episode last night;False;False;;;;1610174034;;False;{};gimsqro;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimsqro/;1610219352;5;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your comment has been removed. - -- Direction toward specific sources of pirated content of any type is not allowed. This includes links to unofficial scanlations, streams, uploads, and download sources of any copyrighted content. It also includes direction towards specific sites offering this type of content, and watermarks mentioning such sites in uploaded images/videos. - - Discussion of piracy in general is allowed, **but naming, linking to, or hinting towards specific sources is not. Offering to send links via PM is also not allowed.** For more details, see our [full rules on illegal content](https://www.reddit.com/r/anime/wiki/rules#wiki_do_not_link_to_illegal_content). - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610174229;moderator;False;{};gimszrf;False;t3_ktiq8n;False;False;t1_gima24p;/r/anime/comments/ktiq8n/the_promised_neverland/gimszrf/;1610219513;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610174242;;False;{};gimt0db;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimt0db/;1610219525;1;True;False;anime;t5_2qh22;;0;[]; -[];;;justkellerman;;;[];;;;text;t2_iynd5;False;False;[];;"The courage to remove the headphone jack... - -...and the courage to repeat the same joke 20 days later: https://www.reddit.com/r/araragi/comments/kgmfx2/life_goals/ggg86a0/";False;False;;;;1610174260;;False;{};gimt16k;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimt16k/;1610219541;31;True;False;anime;t5_2qh22;;0;[]; -[];;;Affectionate-Flight1;;;[];;;;text;t2_7rxtg6s4;False;False;[];;Damn that's even more creepy then. As much as I adore the art form of anime, it's sadly plagued by this sexualization of characters who are minors (albeit this is quite an extreme case... can't remember ever seeing a show I've watched being as blatantly pro-pedophilia as this). I really hope there is eventually a cultural shift in the industry away from this stuff being treated as normal and acceptable.;False;True;;comment score below threshold;;1610174299;;False;{};gimt2yz;False;t3_ktgaoa;False;False;t1_gims23y;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimt2yz/;1610219583;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;toucanlost;;;[];;;;text;t2_ln61o;False;False;[];;Movies are harder to access as they don't usually air on streaming services and have to go through the typical theater to home video process. Also they are often filler. But to talk about the movies you mentioned, I really like Naruto Road to Ninja which provides an alternate world take where Naruto's parents lived and Sakura's were the ones who died. It was fun seeing everyone's swapped personalities. The HunterxHunter movies weren't good, but at least they adapted Kurapika's clan's story and Illumi looked good in a qipao. I liked FMA Conqueror of Shamballa, but I wasn't too interested in the anime itself. I liked the songs in it and the idea of Edward living in an alternate world.;False;False;;;;1610174321;;False;{};gimt3zq;False;t3_ktj3or;False;True;t3_ktj3or;/r/anime/comments/ktj3or/how_come_nobody_talks_about_the_movies/gimt3zq/;1610219603;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ShabiBoi;;;[];;;;text;t2_5imo8jqd;False;False;[];;Damn I wish we got more monogatari;False;False;;;;1610174337;;False;{};gimt4sg;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimt4sg/;1610219618;7;True;False;anime;t5_2qh22;;0;[]; -[];;;toucanlost;;;[];;;;text;t2_ln61o;False;False;[];;Record of Lodoss War;False;False;;;;1610174498;;False;{};gimtc8v;False;t3_ktfdps;False;True;t3_ktfdps;/r/anime/comments/ktfdps/looking_for_retro_anime_with_good_animation/gimtc8v/;1610219757;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;Even if you don't add everything at once that's fine, you can do it gradually.;False;False;;;;1610174576;;False;{};gimtfu2;False;t3_ktkal4;False;True;t1_gimok6c;/r/anime/comments/ktkal4/i_need_something_new_to_watch/gimtfu2/;1610219821;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GenrlWashington;;;[];;;;text;t2_5a21o;False;False;[];;Is this show even real? 😆 it's weirdness is what made me want to keep watching, but exactly what turned my wife off to it. And since I usually only watch anime with her I haven't even made it through the first season. 😥;False;False;;;;1610174581;;False;{};gimtg2e;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimtg2e/;1610219826;24;True;False;anime;t5_2qh22;;0;[]; -[];;;OneMoreDuncanIdaho;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/a_trisolaran;light;text;t2_i31pk;False;False;[];;Yet nothing pedophilic happens... must be because the author promotes pedophilia I guess...;False;False;;;;1610174660;;False;{};gimtjly;False;t3_ktgaoa;False;False;t1_gimq3ai;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimtjly/;1610219890;5;True;False;anime;t5_2qh22;;0;[]; -[];;;sendhelp404;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_39x4uqma;False;False;[];;same with Darwin’s game as far as I remember;False;False;;;;1610174679;;False;{};gimtkgg;False;t3_ktjsvw;False;True;t1_gimhl7l;/r/anime/comments/ktjsvw/animes_where_the_mc_has_a_girl_thats_completely/gimtkgg/;1610219905;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HagridPotter;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Barusu/animelist;light;text;t2_2fguh6w;False;False;[];;"monogatari is by far the most egregious I've seen, though it is definitely common to see it happen in many anime. - -of course a lot of people that watch anime don't mind at all for some reason (the same people downvoting both of us now, lol). they're just cool with pedophilia I guess. - -either that or they're monogatari fanboys that can't accept that their favourite show panders heavily towards pedos.";False;False;;;;1610174755;;1610175009.0;{};gimtnwu;False;t3_ktgaoa;False;False;t1_gimt2yz;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimtnwu/;1610219967;5;True;False;anime;t5_2qh22;;0;[]; -[];;;GonvVasq;;;[];;;;text;t2_c4mzn;False;False;[];;He's also Take-chan from Haikyu. Like the four characters are in totally different ends of the spectrum;False;False;;;;1610174783;;False;{};gimtp81;False;t3_ktgaoa;False;False;t1_gimqnsl;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimtp81/;1610219990;73;True;False;anime;t5_2qh22;;0;[]; -[];;;eZioSta;;;[];;;;text;t2_2c95tadz;False;False;[];;Man 4chan is something else;False;False;;;;1610174808;;False;{};gimtqbp;False;t3_ktgaoa;False;False;t1_gimpkqr;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimtqbp/;1610220009;5;True;False;anime;t5_2qh22;;0;[]; -[];;;wizard926e;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_8ijxt61;False;False;[];;She's adult but died when she was young so she doesn't look like she's an adult. She's a ghost but has lived as a ghost for long enough to be an adult. She actually ages to her actual age she's lived (living as a ghost) at one point;False;True;;comment score below threshold;;1610174872;;False;{};gimtt6x;False;t3_ktgaoa;False;True;t1_gimrx5z;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimtt6x/;1610220076;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;Tircle;;;[];;;;text;t2_ktt80;False;False;[];;Started watching a couple weeks ago and I’m on Nekomonogatari rn and hachikuji is genuinely my favorite character. Besides the questionable perversion, the conversation between the two is hilarious and she is the most rational out of everyone.;False;False;;;;1610174897;;False;{};gimtu9x;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimtu9x/;1610220095;38;True;False;anime;t5_2qh22;;0;[]; -[];;;Two_Hands12;;;[];;;;text;t2_1t49bed5;False;False;[];;"I mean a lot of this stems from what Japan is tbf. Look at the idol culture there. It's essentially grown up men simping for underage or rather quite young girls and women who are promoted to wear appealing clothes and sing on stage. I mean sure talent is one thing but idol companies make sure they can get most out of them. - -Different countries have vastly different cultures. Of course it doesn't mean that promoting such aspects isn't creepy. But it's acceptable in Japan because people see it as a joke as is depicted in the anime. If you take the anime out of Japan then yeah, it's quite questionable content. - -Maybe a shift will happen, maybe it won't. In the end right now anime is made by Japan and for Japanese audience. With increasing popularity of anime, one day there will be changes";False;False;;;;1610174925;;False;{};gimtvj6;False;t3_ktgaoa;False;True;t1_gimt2yz;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimtvj6/;1610220118;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Aluminum-Chair;;;[];;;;text;t2_63qs0yl8;False;False;[];;*That's* the one. Can't wait for Madhouse to make a Season 2.;False;False;;;;1610174986;;False;{};gimtyb1;False;t3_ktjy1n;False;True;t1_gimqsw3;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/gimtyb1/;1610220174;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610175083;;False;{};gimu2mh;False;t3_ktgaoa;False;True;t1_gimrlqq;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimu2mh/;1610220254;1;True;False;anime;t5_2qh22;;0;[]; -[];;;02ito;;;[];;;;text;t2_393j2sdm;False;False;[];;u/savevideo;False;False;;;;1610175191;;False;{};gimu7is;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimu7is/;1610220344;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Matterfied;;;[];;;;text;t2_w702e;False;False;[];;"Having Slime but not Re:Zero in your top isekai. - -Yikes.";False;False;;;;1610175203;;False;{};gimu81m;False;t3_kti1ux;False;True;t1_gim6ow0;/r/anime/comments/kti1ux/n00b_looking_for_anime_recommendations/gimu81m/;1610220353;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GiveNam;;;[];;;;text;t2_3sn1sgb3;False;False;[];;Chads;False;False;;;;1610175262;;False;{};gimualp;False;t3_ktgaoa;False;False;t1_gims6i4;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimualp/;1610220402;47;True;False;anime;t5_2qh22;;0;[]; -[];;;brotato96;;;[];;;;text;t2_16ylw4gr;False;False;[];;JoeSantoasty has explained pretty much all there is. As you said the shows try to align their release. That is why Attck on Titan S4 and Jujutsu Kaisen took a 2 week break after december end. Sometimes a series goes on entire season break between two cour. Like Re Zero, took break for fall 2020 and started season 2 part 2 in winter 2021. Although a part two of current season is announced before or as soon as part one ends if more parts are planned.;False;False;;;;1610175270;;False;{};gimuazt;False;t3_ktka5a;False;True;t1_gimny3r;/r/anime/comments/ktka5a/how_do_anime_seasons_work/gimuazt/;1610220408;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Billy__Ocean;;;[];;;;text;t2_af0zx;False;False;[];;Genuinely equating anything that happens in this show or in basically any anime with pedophilia or the like is incredibly irresponsible and only serves to lessen the punch that that term carries and should carry. If you'd actually watched the show you'd know it is actively poking fun at and mocking the frequency with which anime dabbles with perverted material. You're welcome to find it distasteful, but to call it pedophilia is honestly harmful to your cause if your intent is to stop actual pedophilia.;False;False;;;;1610175329;;False;{};gimudkq;False;t3_ktgaoa;False;False;t1_gimtnwu;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimudkq/;1610220454;5;True;False;anime;t5_2qh22;;0;[]; -[];;;kishin-sagume;;;[];;;;text;t2_43j8b8bp;False;False;[];;It definitely is. For a long time anime consumer like me I tend to pay attention and nitpick the details more but honestly, like some people pointed out, it is fun to go through and has solid production value to back up the questionable writing so yeah, full steam ahead.;False;False;;;;1610175437;;False;{};gimuidm;False;t3_ktiida;False;True;t3_ktiida;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gimuidm/;1610220539;2;True;False;anime;t5_2qh22;;0;[]; -[];;;yuvan18;;;[];;;;text;t2_64jrih4h;False;False;[];;"yaaa thanks - -and I thought the writing was actually decent and it had a solid ending like I'd give the ending an 8/10 and the anime a 9/10 coz the first few eps are such bangers!";False;False;;;;1610175521;;False;{};gimum3q;True;t3_ktiida;False;True;t1_gimuidm;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gimum3q/;1610220614;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vegetable0;;;[];;;;text;t2_5im09tzo;False;False;[];;He's also yato from noragami and saiki kusuo. The variety in his work is amazing;False;False;;;;1610175633;;False;{};gimur5n;False;t3_ktgaoa;False;False;t1_gimtp81;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimur5n/;1610220707;73;True;False;anime;t5_2qh22;;0;[]; -[];;;Quebec120;;;[];;;;text;t2_2iddjr1c;False;False;[];;"I was so surprised when I looked through his roles recently... - -- Arararagi from Monogatari -- Shinji from the Fate -- Saiki K from Saiki K -- Levi from Attack on Titan -- No. 502 from Gintama -- Yato from Noragami -- Choromatsu from Osomatsu-kun/san -- Otonashi from Angel Beats -- Takeda from Haikyuu - -And those are only ones that stood out to me, he's also been in things like Gundam, Dragon Ball, Digimon, etc. I only started noticing his voice after the Monogatari series, despite watching things like Noragami and Fate first.";False;False;;;;1610175751;;False;{};gimuwcy;False;t3_ktgaoa;False;False;t1_gimnoed;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimuwcy/;1610220802;37;True;False;anime;t5_2qh22;;0;[]; -[];;;Spiritflash1717;;;[];;;;text;t2_1pjhhax8;False;False;[];;Hachikuji is easily the best character in the whole show;False;False;;;;1610175790;;False;{};gimuy38;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimuy38/;1610220835;4;True;False;anime;t5_2qh22;;0;[]; -[];;;GonvVasq;;;[];;;;text;t2_c4mzn;False;False;[];;Also, N°1 Dickhead: Izaya from DRRR. The VA is amazing, he's done a lot of iconic work;False;False;;;;1610175869;;False;{};gimv1er;False;t3_ktgaoa;False;False;t1_gimur5n;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimv1er/;1610220903;35;True;False;anime;t5_2qh22;;0;[]; -[];;;Affectionate-Flight1;;;[];;;;text;t2_7rxtg6s4;False;False;[];;Yep. Thanks for being the other sane person in the room, lol. It’s reassuring to know I’m not alone in thinking this aspect of anime is really creepy and wrong.;False;False;;;;1610175946;;1610176287.0;{};gimv4ou;False;t3_ktgaoa;False;False;t1_gimtnwu;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimv4ou/;1610220966;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Quebec120;;;[];;;;text;t2_2iddjr1c;False;False;[];;"He said in Atogatari that he plays his ""normal voice"" for Ararararagi. He said one of the directors came up to him and told him ""Wow, voice actors really are amazing, huh?"" to which he responded ""...I'm just using my normal voice"" (or along these lines). - -But this was also in 2009 or whatever during the release of Bakemonogatari. If his voice changed, he could've been putting on his old ""normal voice"" for later Monogatari parts.";False;False;;;;1610175973;;False;{};gimv5t2;False;t3_ktgaoa;False;False;t1_gimr1qz;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimv5t2/;1610220987;47;True;False;anime;t5_2qh22;;0;[]; -[];;;onion_kidd;;;[];;;;text;t2_6leet9u0;False;False;[];;He's also Trafalgar law from one piece;False;False;;;;1610176016;;False;{};gimv7nw;False;t3_ktgaoa;False;False;t1_gimuwcy;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimv7nw/;1610221021;15;True;False;anime;t5_2qh22;;0;[]; -[];;;PastaThePasta;;;[];;;;text;t2_5trh6868;False;False;[];;Kamimamita Arararagi;False;False;;;;1610176096;;False;{};gimvb2e;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimvb2e/;1610221081;3;True;False;anime;t5_2qh22;;0;[]; -[];;;x_MrAwkward_x;;;[];;;;text;t2_6m90hms4;False;False;[];;I guess I will have to watch it now;False;False;;;;1610176171;;False;{};gimve87;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimve87/;1610221139;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Quebec120;;;[];;;;text;t2_2iddjr1c;False;False;[];;"I saw some clips from Bake and I just had to rewatch it, lol. Seeing Senjogahara-sama and Aragi together again reminded me why this anime is my favourite. - -I just wish more of it was available in Australia so I could watch it on my telly :(";False;False;;;;1610176266;;False;{};gimviay;False;t3_ktgaoa;False;False;t1_gimkpj5;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimviay/;1610221214;134;True;False;anime;t5_2qh22;;0;[]; -[];;;LifeOfJoshua;;;[];;;;text;t2_4rydzedw;False;False;[];;Thanks! That Academia one sounds right up my ally.;False;False;;;;1610176311;;False;{};gimvk9g;True;t3_kti1ux;False;True;t1_gimsneu;/r/anime/comments/kti1ux/n00b_looking_for_anime_recommendations/gimvk9g/;1610221251;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CulturalResort6;;;[];;;;text;t2_670p433r;False;False;[];;Can someone tell me the order in which i should i watch this anime? I've watched three movies named kizumonogatari.;False;False;;;;1610176354;;False;{};gimvm2x;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimvm2x/;1610221284;5;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Shows the Silver Award... and that's it."", 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'icon_width': 512, 'id': 'gid_1', 'is_enabled': True, 'is_new': False, 'name': 'Silver', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;Quebec120;;;[];;;;text;t2_2iddjr1c;False;False;[];;Courage to watch Nisemonogatari in the same room as your family;False;False;;;;1610176380;;False;{'gid_1': 1};gimvn44;False;t3_ktgaoa;False;False;t1_gimpozn;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimvn44/;1610221303;149;True;False;anime;t5_2qh22;;1;[]; -[];;;LifeOfJoshua;;;[];;;;text;t2_4rydzedw;False;False;[];;"My brother keeps mentioning HunterXHunter. Something about a dude ""hunting"" for his father who's a hunter. Something like that. I'll have to check it! Thanks!";False;False;;;;1610176398;;False;{};gimvnve;True;t3_kti1ux;False;True;t1_gimpcsb;/r/anime/comments/kti1ux/n00b_looking_for_anime_recommendations/gimvnve/;1610221318;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HagridPotter;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Barusu/animelist;light;text;t2_2fguh6w;False;False;[];;">If you'd actually watched the show - -I've watched the entire series. - ->you'd know it is actively poking fun at and mocking the frequency with which anime dabbles with perverted material. - -It really isn't though. The anime just tries to be funny with Araragi constantly being a degenerate that's into little girls...except it isn't funny or cleverly done in any way. - -They do some meta jokes with Araragi realizing that he appears to be a lolicon with his recent actions, or Araragi mocking siscons while being one himself, but no, the series doesn't actively make fun of perverted anime tropes, it just falls under them and constantly uses them. - ->to call it pedophilia is honestly harmful to your cause if your intent is to stop actual pedophilia. - -What is it if not pedophilia? There's a scene in Owari S2 where Araragi gropes Hachikuji for like, 30 full seconds when they're reunited. She's 11 years old. And no, the scene being from an anime doesn't mean it isn't pedophilia. It absolutely is. We can clearly tell it's a 17-18 yo dude molesting an 11-year-old. It being animated makes no difference. It objectively is pedophilia.";False;False;;;;1610176507;;False;{};gimvsdx;False;t3_ktgaoa;False;False;t1_gimudkq;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimvsdx/;1610221401;4;True;False;anime;t5_2qh22;;0;[]; -[];;;_____---_-_-_-;;;[];;;;text;t2_1fi56e7v;False;False;[];;Dam ngl kinda truthful;False;False;;;;1610176522;;False;{};gimvszu;False;t3_ktgaoa;False;False;t1_gims23y;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimvszu/;1610221413;3;True;False;anime;t5_2qh22;;0;[]; -[];;;W4IFU_HUNT3R;;;[];;;;text;t2_88lvqyp7;False;False;[];;JoJo's Bizzare Adventure ( ͡° ͜ʖ ͡°);False;False;;;;1610176565;;False;{};gimvusq;False;t3_ktkal4;False;False;t3_ktkal4;/r/anime/comments/ktkal4/i_need_something_new_to_watch/gimvusq/;1610221444;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LifeOfJoshua;;;[];;;;text;t2_4rydzedw;False;False;[];;Boy do I have a TON of content to peep. Thanks for all the recs. This will steal the next month of my time scoping a couple episodes of all you guys have told me about. That Acadmia one sounds right up my ally so it shall be my first. I'm no longer an anime virgin. I'm an anime slut. (Might get kicked for that comment lol);False;False;;;;1610176626;;False;{};gimvxbz;True;t3_kti1ux;False;True;t3_kti1ux;/r/anime/comments/kti1ux/n00b_looking_for_anime_recommendations/gimvxbz/;1610221490;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Billy__Ocean;;;[];;;;text;t2_af0zx;False;False;[];;The generally accepted order is Bake - Kizu movies - Nise - Neko Kuro - Mono second season - Hana - Tsuki - Owari - Koyomi - Owari 2 - Zoku Owari;False;False;;;;1610176668;;False;{};gimvz3b;False;t3_ktgaoa;False;True;t1_gimvm2x;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimvz3b/;1610221523;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nyoxiz;;;[];;;;text;t2_28xxq6d;False;False;[];;I feel like they can only get away with it because the whole style of the series is so strange, normally this would be weird to me, but it's not because it's monogatari.;False;False;;;;1610176788;;False;{};gimw3ym;False;t3_ktgaoa;False;False;t1_gims6i4;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimw3ym/;1610221611;36;True;False;anime;t5_2qh22;;0;[]; -[];;;Billy__Ocean;;;[];;;;text;t2_af0zx;False;False;[];;Then don't ever play an FPS game or else you're promoting murder, fictional or not, it's still murder. Idk what to tell you if you can't differentiate fiction from reality. And if you really did watch it all, then you must have looked at it instead of actually watching it.;False;False;;;;1610176845;;False;{};gimw6bh;False;t3_ktgaoa;False;True;t1_gimvsdx;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimw6bh/;1610221655;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Quebec120;;;[];;;;text;t2_2iddjr1c;False;False;[];;"I mean, your native language always seems simple to you because you have decades of experience. I'm learning it too, and some things seem simple, while others... - -Not to mention the languages are almost completely backwards to each other. - -「木曜日は図書館で日本語を勉強しましょう」 - -Translated literally: As for Thursday, at the library Japanese let's study. - -Translated naturally: Let's study Japanese at the library on Thursday. - -It's why Japanese/Chinese are the hardest for English speakers to learn. Either way, if we have enough passion, I believe we can do it!";False;False;;;;1610176859;;False;{};gimw6x1;False;t3_ktgaoa;False;False;t1_gims0ci;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimw6x1/;1610221665;39;True;False;anime;t5_2qh22;;0;[]; -[];;;BunnyOppai;;;[];;;;text;t2_s7dnz;False;False;[];;Honestly, it’s pretty crazy how many voice actors just barely change their voices for some of their characters. I found out recently that Keith Silverstein, Hisoka’s English VA, also voiced Zhongli, a character from Genshin Impact. There’s barely a difference in the voices of the two, only enough to move from Hisoka’s sneaky, conniving tone to Zhongli’s calm and higher classed demeanor.;False;False;;;;1610176862;;False;{};gimw710;False;t3_ktgaoa;False;False;t1_gimv5t2;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimw710/;1610221667;23;True;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;Lol and people say this trash is a masterpiece? This is borderline pedophilia.;False;True;;comment score below threshold;;1610176900;;False;{};gimw8jp;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimw8jp/;1610221695;-20;True;False;anime;t5_2qh22;;0;[]; -[];;;AtheistChristian8;;;[];;;;text;t2_5kddr0nf;False;False;[];;Degeneratemonogatari;False;False;;;;1610177226;;False;{};gimwlqm;False;t3_ktgaoa;False;False;t1_gimrqg0;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimwlqm/;1610221964;23;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;His conversational voice in Atogatari is just Araragi with a bit of mumble but he has some range as he shows in the various other Shaft anime with him, never mind other roles;False;False;;;;1610177270;;False;{};gimwnj1;False;t3_ktgaoa;False;False;t1_gimv5t2;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimwnj1/;1610221997;9;True;False;anime;t5_2qh22;;0;[]; -[];;;_____---_-_-_-;;;[];;;;text;t2_1fi56e7v;False;False;[];;"Murder and violence in games are in there for gameplay reasons and to engage the player in a conflict. They have both narrative and functional purpose. People playing games don't want violence and bloodshed they want a challenge, violence is just the simplest way to present it. - -What is the purpose of showing characters depicted as prepubescent being molested other than simulation? There is no comedy in the long drawn out bath scenes. There is no conflict presented. What is the purpose?";False;False;;;;1610177320;;False;{};gimwpm3;False;t3_ktgaoa;False;False;t1_gimw6bh;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimwpm3/;1610222035;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Ladadasa;;;[];;;;text;t2_hieoe;False;False;[];;Good.. Good.. Good........ most excellent;False;False;;;;1610177421;;False;{};gimwtmz;False;t3_ktgaoa;False;False;t1_gilu21i;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimwtmz/;1610222118;12;True;False;anime;t5_2qh22;;0;[]; -[];;;asslavz;;;[];;;;text;t2_6z9yqdla;False;False;[];;Death is also one of the best to start with;False;False;;;;1610177469;;False;{};gimwvmp;False;t3_ktiida;False;True;t1_gimlait;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gimwvmp/;1610222156;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;This bit is less about wordplay and more about rhetoric so it is pretty straightforward;False;False;;;;1610177503;;False;{};gimwx0d;False;t3_ktgaoa;False;False;t1_gimp7xl;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimwx0d/;1610222180;20;True;False;anime;t5_2qh22;;0;[]; -[];;;asslavz;;;[];;;;text;t2_6z9yqdla;False;False;[];;It is pretty good but i would have suggested starting with death note but it depends on what your friend likes;False;False;;;;1610177536;;False;{};gimwy94;False;t3_ktiida;False;True;t3_ktiida;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gimwy94/;1610222204;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AlikeWolf;;;[];;;;text;t2_13pwz0;False;False;[];;Oh no;False;False;;;;1610177547;;False;{};gimwyoo;False;t3_ktgaoa;False;True;t1_giluar1;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimwyoo/;1610222212;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bitterestboysintown;;;[];;;;text;t2_2z7z0w1n;False;False;[];;Holy shit that's the funniest thing I've seen all week. Never heard of this show, will definitely give it a watch;False;False;;;;1610177553;;False;{};gimwyyr;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimwyyr/;1610222216;18;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;I mean as someone hosting a rewatch of the whole series it is clearly one of my favorites for all of what it is;False;False;;;;1610177574;;False;{};gimwzv6;False;t3_ktgaoa;False;False;t1_gimq1lu;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimwzv6/;1610222233;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Billy__Ocean;;;[];;;;text;t2_af0zx;False;False;[];;"Plenty of types of games that present challenge without fictional violence or bloodshed. -Like I've said, you're welcome to find mono distasteful, I myself was on the fence at first when watching it, but to equate it with pedophilia is mind-boggling, and to suggest that those who enjoy the show are pedophiles is laughably sad";False;False;;;;1610177581;;False;{};gimx05k;False;t3_ktgaoa;False;True;t1_gimwpm3;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimx05k/;1610222240;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;yuvan18;;;[];;;;text;t2_64jrih4h;False;False;[];;ya I mean I said that but she said too long;False;False;;;;1610177614;;False;{};gimx1g7;True;t3_ktiida;False;True;t1_gimwy94;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gimx1g7/;1610222271;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;That's not true this is the outdated airing order;False;False;;;;1610177631;;False;{};gimx25l;False;t3_ktgaoa;False;False;t1_gimvz3b;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimx25l/;1610222295;8;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;https://edomonogatari.wordpress.com/2020/05/12/monogatari-anime-guide/;False;False;;;;1610177652;;False;{};gimx30i;False;t3_ktgaoa;False;False;t1_gimvm2x;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimx30i/;1610222312;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Billy__Ocean;;;[];;;;text;t2_af0zx;False;False;[];;Outdated? What's the order you'd suggest then? Generally it's just Kizu that gets moved around. I personally watched it after bake and find it fits best there, but that's subjective;False;False;;;;1610177731;;False;{};gimx65p;False;t3_ktgaoa;False;True;t1_gimx25l;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimx65p/;1610222371;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Christio02;;;[];;;;text;t2_15ozmucm;False;False;[];;Just started watching bakemonogatari, and I don't know wtf is going on xD;False;False;;;;1610177773;;False;{};gimx7uw;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimx7uw/;1610222415;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_____---_-_-_-;;;[];;;;text;t2_1fi56e7v;False;False;[];;"I was saying violence is the simplest way but cinflict is always the purpose. - -Still haven't gotten an answer on what the purpose of the molestation scenes is. - - -I enjoy the show, a lot. Which is why its a shame that they included things that are literally disgusting. I don't understand how the depiction of an 11yr old being groped isn't in support of pedophilia. You just keep saying the insinuation is sad but never say why.";False;False;;;;1610177787;;False;{};gimx8f9;False;t3_ktgaoa;False;False;t1_gimx05k;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimx8f9/;1610222425;4;True;False;anime;t5_2qh22;;0;[]; -[];;;asianwheatbread;;;[];;;;text;t2_3xwh2y65;False;False;[];;Nise in particular was very...well, you know.;False;False;;;;1610177802;;False;{};gimx911;False;t3_ktgaoa;False;False;t1_gimvn44;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimx911/;1610222437;42;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;If only she crossed the road 8 years later;False;False;;;;1610177814;;False;{};gimx9hn;False;t3_ktgaoa;False;False;t1_gimtu9x;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimx9hn/;1610222445;21;True;False;anime;t5_2qh22;;0;[]; -[];;;jaber-fayez;;;[];;;;text;t2_20g41fbn;False;False;[];;Every time i see a clip of this anime I get more confused about the plot;False;False;;;;1610177830;;False;{};gimxa4l;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimxa4l/;1610222458;3;True;False;anime;t5_2qh22;;0;[]; -[];;;asslavz;;;[];;;;text;t2_6z9yqdla;False;False;[];;Well it is pretty long if she/he wants to watch a1 cour then akudama drive is prob a very good show spiecialy since it has a good ending;False;False;;;;1610177866;;False;{};gimxbje;False;t3_ktiida;False;True;t1_gimx1g7;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gimxbje/;1610222485;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Anime__Feet__Enjoyer;;;[];;;;text;t2_8s8n2gp6;False;False;[];;Forgive me, I bit my tongue;False;False;;;;1610178041;;False;{};gimxij6;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimxij6/;1610222611;4;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"The [novel order](https://edomonogatari.wordpress.com/2020/05/12/monogatari-anime-guide/) is the way how the story was written and how Shaft would have aired and produced it if not for various delays and scheduling conflicts. - -Your order has Hana and Koyomi at the wrong place and has no thematic reason to exist";False;False;;;;1610178079;;False;{};gimxk2e;False;t3_ktgaoa;False;False;t1_gimx65p;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimxk2e/;1610222639;10;True;False;anime;t5_2qh22;;0;[]; -[];;;basuga_BFE;;;[];;;;text;t2_l8vzif1;False;True;[];;[Selena (Cursed Belt Princess)](https://i.imgur.com/ztZSKnY.gif) in this season: [Tatoeba Last Dungeon ...](https://www.reddit.com/r/anime/comments/kqbjrg/tatoeba_last_dungeon_mae_no_mura_no_shounen_ga/);False;False;;;;1610178093;;False;{};gimxkn9;False;t3_ktjsvw;False;False;t3_ktjsvw;/r/anime/comments/ktjsvw/animes_where_the_mc_has_a_girl_thats_completely/gimxkn9/;1610222652;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crim-sama;;;[];;;;text;t2_z00dygq;False;False;[];;Theyre busy with madoka.;False;False;;;;1610178098;;False;{};gimxkup;False;t3_ktgaoa;False;False;t1_gimsan8;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimxkup/;1610222658;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Billy__Ocean;;;[];;;;text;t2_af0zx;False;False;[];;"It's sad that ppl are equating those scenes to something as horrible as child abuse. -As for the purpose? You'd have to ask nisioisin to get the genuine purpose. After my initial ""uuuhhh.."" moment I actually found it quite funny bc it's so ridiculous. It'd be one thing if Hachikuji actively hated it, but she doesn't, and even does the same to Araragi. I'm simply able to separate fiction from reality, which allows scenes like this to serve what I assume is their intended purpose: humor.";False;False;;;;1610178153;;False;{};gimxmzh;False;t3_ktgaoa;False;True;t1_gimx8f9;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimxmzh/;1610222710;1;True;False;anime;t5_2qh22;;0;[]; -[];;;limberwisk;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/limberwisk;light;text;t2_15b7pb77;False;False;[];;Saiki from saiki k sounds similar to araragi;False;False;;;;1610178155;;False;{};gimxn2o;False;t3_ktgaoa;False;False;t1_gimnoed;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimxn2o/;1610222712;5;True;False;anime;t5_2qh22;;0;[]; -[];;;jonk012;;;[];;;;text;t2_15wf1uc;False;False;[];;Lol. There's nothing wrong with it. He said it like that because that's how people say it with an English accent. Unless you're trying to say it the way a Japanese person would.;False;False;;;;1610178181;;False;{};gimxo33;False;t3_ktjhoh;False;False;t1_gimr582;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/gimxo33/;1610222730;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Billy__Ocean;;;[];;;;text;t2_af0zx;False;False;[];;Fair. I think both are fine watch orders. Not sure why I've been downvoted, though.;False;False;;;;1610178272;;False;{};gimxrlc;False;t3_ktgaoa;False;True;t1_gimxk2e;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimxrlc/;1610222799;0;True;False;anime;t5_2qh22;;0;[]; -[];;;JadeDragon56;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/JadeDragon56;light;text;t2_ee93o;False;False;[];;Gilgamesh;False;False;;;;1610178298;;False;{};gimxsk4;False;t3_ktjy1n;False;True;t3_ktjy1n;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/gimxsk4/;1610222818;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"I don't think it's fine to just start a story arc at the end and then go to the beginning. Airing Order has no artistic intent behind it. - -I also got downvoted. It happens";False;False;;;;1610178369;;False;{};gimxvbi;False;t3_ktgaoa;False;True;t1_gimxrlc;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimxvbi/;1610222873;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Billy__Ocean;;;[];;;;text;t2_af0zx;False;False;[];;Ppl don't fuck around with their watch orders;False;False;;;;1610178426;;False;{};gimxxk0;False;t3_ktgaoa;False;False;t1_gimxvbi;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimxxk0/;1610222922;5;True;False;anime;t5_2qh22;;0;[]; -[];;;_____---_-_-_-;;;[];;;;text;t2_1fi56e7v;False;False;[];;I'm not equating it to child abuse I'm equating it to pedophilia as in it is a depiction of pedophilia. There are sexual acts done on what is meant to mimick children. Its very cut and dry. There are many casual scenes clearly not meant for comedy like an entire scene where shinobu is naked or heaps of camera angles.;False;False;;;;1610178438;;False;{};gimxy1v;False;t3_ktgaoa;False;False;t1_gimxmzh;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimxy1v/;1610222931;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Quebec120;;;[];;;;text;t2_2iddjr1c;False;False;[];;"Yeah, I was mainly pointing to the ""did his voice change with age"" question. Since Monogatari ended in 2018, and he'd been supposedly using his normal voice, his voice hadn't changed between Bakemonogatari and Attack on Titan (2009-2013). He definitely has range, just his voice didn't naturally change between Bakemonogatari and Attack on Titan.";False;False;;;;1610178471;;False;{};gimxzc5;False;t3_ktgaoa;False;True;t1_gimwnj1;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimxzc5/;1610222955;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610178543;;False;{};gimy25k;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimy25k/;1610223012;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Quebec120;;;[];;;;text;t2_2iddjr1c;False;False;[];;It was great to see Aararagi and his sisters get along so well together :);False;False;;;;1610178587;;False;{};gimy3z7;False;t3_ktgaoa;False;False;t1_gimx911;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimy3z7/;1610223046;57;True;False;anime;t5_2qh22;;0;[]; -[];;;JadeDragon56;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/JadeDragon56;light;text;t2_ee93o;False;False;[];;Cause I guess people forget that Google exists;False;False;;;;1610178612;;False;{};gimy4xq;False;t3_ktiq8n;False;True;t1_gimbc4y;/r/anime/comments/ktiq8n/the_promised_neverland/gimy4xq/;1610223063;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"Ah. You don't hear any significant difference between Bake and Zoku Owari or his more recent interviews, at least in my ears. - -For Levi he is pressing more and lacks the laidback pondering of Araragi";False;False;;;;1610178683;;False;{};gimy7mi;False;t3_ktgaoa;False;True;t1_gimxzc5;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimy7mi/;1610223110;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Billy__Ocean;;;[];;;;text;t2_af0zx;False;False;[];;"Nise as a whole was never intended to be made into an anime if I remember correctly, and that's where a good bit of the scenes ppl would see as distasteful happen. That being said, big fan of the bath scene, personally. I believe in Shinobu supremacy. -As for everything else, we'll have to agree to disagree, bc I simply don't see anime girls as anywhere near the same thing as actual people, which kind of makes the possibility of it being pedophilic in my eyes impossible. I don't believe the people who dislike it are wrong, I just think we're seeing the same thing in two different ways, which is fine.";False;False;;;;1610178839;;False;{};gimydqp;False;t3_ktgaoa;False;True;t1_gimxy1v;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimydqp/;1610223234;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lycan2005;;;[];;;;text;t2_11lly3;False;False;[];;Don't forget the courage to remove the charger.;False;False;;;;1610178890;;False;{};gimyfp0;False;t3_ktgaoa;False;False;t1_gimt16k;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimyfp0/;1610223273;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Seven-Tense;;;[];;;;text;t2_ogeb5;False;False;[];;You're not too late. The Monogatari rewatch is happening **right now**. We're halfway through Owarimonogatari, so you're quite late to the party, but you can still make it in time to cap off the series;False;False;;;;1610178940;;False;{};gimyhlk;False;t3_ktgaoa;False;False;t1_gimkpj5;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimyhlk/;1610223309;38;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Clips like this make me want to git gud at Japanese before going back into Monogatari(I actually stopped only an episode or two after this on). This stuff is soooooo damn cool, but every time I see it I get lingering thoughts about just how much I’m missing out on because it’s lost in translation. But aaaaaaagggghh Japanese is so hard and Monogatari was so good when I was watching it;False;False;;;;1610178994;;False;{};gimyjqi;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimyjqi/;1610223349;7;True;False;anime;t5_2qh22;;0;[]; -[];;;HagridPotter;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Barusu/animelist;light;text;t2_2fguh6w;False;False;[];;"Are you seriously trying to compare the two? Lol. - -Go play Battlefield, Call of Duty, whatever. You shoot someone, there are some blood effects, they fall down. It's not ridiculously visceral and the satisfaction you get doesn't stem from the act of murdering someone. No one goes ""ah, I killed that human being, how satisfying!"" They are satisfied by their own skill, by winning a fight with another player, and by getting a good K/D ratio, also tied to their skill. - -Even something like DOOM, sure it's extremely violent and visceral, but you're killing demonic monsters. It's not like you're brutally murdering an innocent person begging for mercy. - -Let's compare that to the example I brought up earlier from Monogatari. What exactly is satisfying about a 17 or 18 year old guy molesting an 11-year-old for an extended period of time? Is it funny? It certainly isn't. Humor may be subjective but there is no joke in the scene, it's just a guy molesting a child. So for people that are totally fine with the scene...what makes them okay with it? The scene is just pedophilia, that's it. - -And saying it's fiction is a bad argument. Sure it's fiction, but what exactly is the scene showing us, what's it trying to convey? Yeah, pedophilia, and that's it. - -For FPS games like BF/CoD, we're technically being shown murder, but not only is it far from visceral, but it's also not what players are satisfied by, as I explained. -For DOOM, it's showing us visceral murder, sure, but it's the murder of evil demonic monsters. -For Wolfenstein we're being shown the murder of actual people...except the people being killed are evil Nazis. - -As explained before, unlike these games where the focus isn't on murder like it happens in real life, many of Monogatari's scenes are literally the same as pedophilia in real life. The only distinguishing factor is that it is fictious. Obviously real life pedophilia is worse, but this is still awful, regardless of being fiction or not.";False;False;;;;1610179027;;1610181588.0;{};gimykzh;False;t3_ktgaoa;False;False;t1_gimw6bh;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimykzh/;1610223377;8;True;False;anime;t5_2qh22;;0;[]; -[];;;JadeDragon56;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/JadeDragon56;light;text;t2_ee93o;False;False;[];;I second, third, and fourth this recommendation;False;False;;;;1610179047;;False;{};gimyls5;False;t3_kth6in;False;False;t1_gimoyfj;/r/anime/comments/kth6in/i_compiled_a_bunch_of_shimarin_noises_into_one/gimyls5/;1610223409;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Seven-Tense;;;[];;;;text;t2_ogeb5;False;False;[];;"Agreed - -Every voice you've ever heard from Jouji Nakata is his normal voice - -Here in the west, too, like you mentioned. Look up Peter Cullen interviews. Fuckin' Optimus Prime voice, **naturally!**";False;False;;;;1610179060;;False;{};gimym8h;False;t3_ktgaoa;False;False;t1_gimw710;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimym8h/;1610223418;7;True;False;anime;t5_2qh22;;0;[]; -[];;;BishItsPranjal;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/kakusuu;light;text;t2_tnss6uh;False;False;[];;OMG SAME! This particular clip is so reminiscent of Zetsubou Sensei ahahah.;False;False;;;;1610179107;;False;{};gimynz9;False;t3_ktgaoa;False;False;t1_gimoj44;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimynz9/;1610223464;8;True;False;anime;t5_2qh22;;0;[]; -[];;;MagicalUnicorn673;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;loli rescue squad;dark;text;t2_2ge6vzlx;False;False;[];;Haha I've actually been reading those everytime I come across one and its pretty fun to see reactions from first time watchers and how they've been liking it so far;False;False;;;;1610179126;;False;{};gimyooc;False;t3_ktgaoa;False;False;t1_gimyhlk;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimyooc/;1610223479;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Astray;;;[];;;;text;t2_5dl7y;False;False;[];;NisiOisiN;False;False;;;;1610179131;;False;{};gimyovl;False;t3_ktgaoa;False;False;t1_gims6i4;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimyovl/;1610223483;57;True;False;anime;t5_2qh22;;0;[]; -[];;;Havocell;;;[];;;;text;t2_832e9duy;False;False;[];;Yotsuba(Yotsubato!);False;False;;;;1610179411;;False;{};gimyzpw;False;t3_ktjy1n;False;True;t3_ktjy1n;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/gimyzpw/;1610223700;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Billy__Ocean;;;[];;;;text;t2_af0zx;False;False;[];;We'll have to agree to disagree, friend. You're not wrong for feeling how you do. I don't believe I am either, though. If I were to see such things play out irl it would illicit a much different reaction to what I feel when watching Monogatari, which is me finding it rather funny. Perhaps my love of the characters and the rest of the show is masking whatever qualms I may have with the scenes in question, but I don't believe that's the case. I believe they're two completely different things, which is why my reaction to the two would be polar opposites.;False;False;;;;1610179458;;False;{};gimz1je;False;t3_ktgaoa;False;False;t1_gimykzh;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimz1je/;1610223734;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Noodle_theWise;;;[];;;;text;t2_415bn94j;False;False;[];;Don't forget Law from One Piece, who's at this point pretty much just as iconic as Luffy!;False;False;;;;1610179567;;False;{};gimz5qa;False;t3_ktgaoa;False;False;t1_gimv1er;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimz5qa/;1610223814;17;True;False;anime;t5_2qh22;;0;[]; -[];;;JadeDragon56;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/JadeDragon56;light;text;t2_ee93o;False;False;[];;Rule of thumb, ignore MAL reviews. That is a cesspool that will take over your experience. Some of the shows you will have the most fun watching might be poorly rated while you end up disliking some of the highest rated. Just watch what interests you.;False;False;;;;1610179568;;False;{};gimz5qq;False;t3_ktgqeo;False;False;t3_ktgqeo;/r/anime/comments/ktgqeo/my_teen_romantic_comedy_is_wrong_as_i_expected/gimz5qq/;1610223814;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Invalleria;;;[];;;;text;t2_2sfygycl;False;False;[];;What the fuck? No wayyyy! Damn, I love Levi but absolutely loatheee Shinji. This newfound knowledge makes me conflicted.;False;False;;;;1610179834;;False;{};gimzfxc;False;t3_ktgaoa;False;True;t1_gimqnsl;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimzfxc/;1610224004;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HagridPotter;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Barusu/animelist;light;text;t2_2fguh6w;False;False;[];;"I see a lot of back and forth regarding this topic so I'm not surprised that there are many who believe that they are different things. We are on the r/anime sub after all, and I think the community here is more inclined to speak positively about anime in general. - -I don't particularly like to speak badly of my hobbies either, though I do think the sexualization of minors in anime is enough of a problem for me to talk about, regardless of my respect towards the medium as a whole. I see it as a significant black mark, and it's the sole reason why anime is seen with such disgust by the average person. - -But yeah. We're both pretty set on how we view this topic, and I don't think either of us will be able to give the other any validation regarding our opinions anyways. Agree to disagree then.";False;False;;;;1610179929;;1610182720.0;{};gimzjhd;False;t3_ktgaoa;False;False;t1_gimz1je;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimzjhd/;1610224079;6;True;False;anime;t5_2qh22;;0;[]; -[];;;KaptainTZ;;skip7;[];;;dark;text;t2_9fhynbf5;False;False;[];;"A shounen like this probably wouldn't have gotten cursed (pun) words, but there were plenty of adult-themed shows that had cursing. - -Ghost in the Shell, for example";False;False;;;;1610180066;;False;{};gimzojb;False;t3_ktjhoh;False;True;t1_gimjjek;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/gimzojb/;1610224179;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BlackSCrow;;;[];;;;text;t2_837fn80k;False;False;[];;Is this scene definitive enough for the entire series?;False;False;;;;1610180122;;False;{};gimzqlw;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimzqlw/;1610224231;3;True;False;anime;t5_2qh22;;0;[]; -[];;;IAmMrsnowballs;;;[];;;;text;t2_ox4i3;False;False;[];;The courage to watch Monogatari without your wife;False;False;;;;1610180149;;False;{};gimzrld;False;t3_ktgaoa;False;False;t1_gimtg2e;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimzrld/;1610224253;67;True;False;anime;t5_2qh22;;0;[]; -[];;;Affectionate-Flight1;;;[];;;;text;t2_7rxtg6s4;False;False;[];;"Never saw anyone claim this was equivalent to real world abuse. It’s obviously not, it’s drawings. But the thing is, it’s still promoting the notion that it is ok to sexualize children. It may be fiction, but the author of the manga or whoever created the anime is a very real person who used the medium to express that notion — that pedophilia is acceptable/funny (thus promoting it, hence my original comment). I don’t have children currently, but if I did I wouldn’t want them going anywhere near the freak who wrote this shit. Does that clarify? My point is that sure it’s fictional, but the ideology behind it very much isn’t and it’s dangerous to act like there’s nothing wrong with it, because that’s a belief that can have real world consequences. - -Edit: and /u/HagridPotter makes a great point: this shit is exactly why the anime community gets a bad wrap. And you know what? I guess that bad wrap is completely justified because I am getting downvoted to hell for simply saying this pedophilic shit seen in some shows is insanely creepy. That should not be a controversial thing to say, yet I actually find myself having to defend it.";False;False;;;;1610180300;;1610181110.0;{};gimzxc6;False;t3_ktgaoa;False;False;t1_gimw6bh;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimzxc6/;1610224393;13;True;False;anime;t5_2qh22;;0;[]; -[];;;MagicMourni;;;[];;;;text;t2_gwiyx;False;False;[];;"https://youtu.be/WUjxaXg8QKE -Another good one";False;False;;;;1610180351;;False;{};gimzzdc;False;t3_ktgaoa;False;False;t1_gim2f8h;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gimzzdc/;1610224437;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Sedewt;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Sedew;light;text;t2_3kzvlpfo;False;False;[];;The courage to touch Hanekawa boobs;False;False;;;;1610180513;;False;{};gin05id;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin05id/;1610224562;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Sedewt;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Sedew;light;text;t2_3kzvlpfo;False;False;[];;Nisioisin, a chad;False;False;;;;1610180737;;False;{};gin0dsv;False;t3_ktgaoa;False;False;t1_gims6i4;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin0dsv/;1610224738;28;True;False;anime;t5_2qh22;;0;[]; -[];;;Lucifer_Hirsch;;;[];;;;text;t2_8h63b;False;False;[];;The tale of my life.;False;False;;;;1610180828;;False;{};gin0h5t;False;t3_ktgaoa;False;True;t1_gimwlqm;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin0h5t/;1610224805;3;True;False;anime;t5_2qh22;;0;[]; -[];;;2cool4ashe;;;[];;;;text;t2_biqwg;False;False;[];;which dub are you talking about? Bleach used 'Damn' an awful lot;False;False;;;;1610180829;;False;{};gin0h7i;False;t3_ktjhoh;False;True;t1_gimjjek;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/gin0h7i/;1610224805;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610181053;;False;{};gin0pfh;False;t3_ktgaoa;False;True;t1_gimwpm3;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin0pfh/;1610224962;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Direct_Rule6702;;;[];;;;text;t2_3nqmcp6l;False;False;[];;Akudama drive is great. Just be careful, mc’s personality I feel like is kind of a turnoff, maybe that’s just me. Promised Neverland, Baccano, and Re Zero are great thrillers.;False;False;;;;1610181065;;False;{};gin0puq;False;t3_ktiida;False;True;t3_ktiida;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gin0puq/;1610224968;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sedewt;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Sedew;light;text;t2_3kzvlpfo;False;False;[];;"Actually, I prefer the order mentioned before. I feel like Hanamonogatari spoils the events of the rest of second season and Koyomi spoils Owari - -I respect the light novel order and your opinion. But to say it’s wrong or outdated? It’s not like the watch order changed that much to be bad.";False;False;;;;1610181123;;False;{};gin0rz3;False;t3_ktgaoa;False;False;t1_gimxk2e;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin0rz3/;1610225009;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Failsnail64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/failsnail;light;text;t2_ixw1z;False;False;[];;"""I don't understand this series, and therefore it must be bad!"" - -I completely agree with the assessment of multiple users here that anime has a big problem with fanservice and unnecessary sexualization, especially for female characters. - -I also don't blame you for disliking Monogatari because you don't enjoy these sexual aspects, that's just a personal opinion and nothing wrong with that. - -However, while Monogatari is at times too excessive and goes even in my opinion too far at times, which can be righteously criticized, the series always incorporates these elements for a good reason. Either to develop characters or to ridicule anime/otaku tropes in a meta way. You are fully in your right to dislike the methods which it uses to so so and nobody would blame you, many would even agree, but saying that the series actively tries to cater to pedophiles is just some overly broad, informed and harsh statement. - -It’s like saying that Hollywood has a problem with glorifying violence (which is in a way true), but to then use Taxi Driver or American Psycho as examples because these movies apparently cater to sadists and psychopaths. Your initial statement about Hollywood is in a degree true, you’re fully in your right to dislike these two movies because of their very violent nature, but saying that they actively glorify violence and cater to these groups is a enormous misunderstanding of the movies, because they try to do the exact opposite.";False;False;;;;1610181178;;1610181779.0;{};gin0txm;False;t3_ktgaoa;False;False;t1_gimq3ai;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin0txm/;1610225043;6;True;False;anime;t5_2qh22;;0;[]; -[];;;getott;;MAL;[];;http://myanimelist.net/profile/vld;dark;text;t2_6m24p;False;False;[];;There's a rewatch party going on;False;False;;;;1610181235;;False;{};gin0w49;False;t3_ktgaoa;False;False;t1_gimkpj5;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin0w49/;1610225081;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Epilex__;;;[];;;;text;t2_6dnttkpo;False;False;[];;"Shows usually air in ""cours"" or ""seasons"". This has nothing to do with Crunchy but how they schedule things for TV. This is also why specials, OVAs and movies can drop pretty much whenever. - -(Q1) Winter = January, February, March -(Q2) Spring = April, May, June -(Q3) Summer = July, August, September -(Q4) Fall = October, November, December - -&#x200B; - -They also usually air on one of these formats: - -* Single cour is the most common, 10-14 episodes over 3 months. -* Double cour is also quite common, usually 24-26 over 6 months. -* Split cours are not very common, but seems to be getting more common with recent shows such as Re:Zero S2 and Tensura S2. Basically, they air the first half of a season in one cour, then take a break for a cour, then air the second half.";False;False;;;;1610181240;;1610181491.0;{};gin0w9v;False;t3_ktka5a;False;False;t3_ktka5a;/r/anime/comments/ktka5a/how_do_anime_seasons_work/gin0w9v/;1610225084;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sedewt;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Sedew;light;text;t2_3kzvlpfo;False;False;[];;"Airing Order is very similar to the author order just with Kizu later, Hana later and Koyomi between Owari and Owari 2. - -> No artistic intent behind it - -You’re exaggerating, it’s not a big deal. I watched using the order mentioned initially and I loved it and became my favorite monogatari series, still understood everything and the artistic intent, there are only two small displacements. That’s it";False;False;;;;1610181369;;False;{};gin10zm;False;t3_ktgaoa;False;False;t1_gimxvbi;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin10zm/;1610225192;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;HANS_EREN;;;[];;;;text;t2_5eq5lbvv;False;False;[];;Which monogatari anime for starting;False;False;;;;1610181375;;False;{};gin116q;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin116q/;1610225201;3;True;False;anime;t5_2qh22;;0;[];True -[];;;Affectionate-Flight1;;;[];;;;text;t2_7rxtg6s4;False;False;[];;Nail on the head amigo;False;False;;;;1610181443;;False;{};gin13mx;False;t3_ktgaoa;False;False;t1_gimxy1v;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin13mx/;1610225257;5;True;False;anime;t5_2qh22;;0;[]; -[];;;CasminMania;;;[];;;;text;t2_3tx5dmkd;False;False;[];;u/savevideo;False;False;;;;1610181512;;False;{};gin162w;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin162w/;1610225302;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Failsnail64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/failsnail;light;text;t2_ixw1z;False;False;[];;"Then you quite misunderstand the nature of fiction at large even. Uncomfortable and even wrong things can rightfully be shown to develop characters, make a statement, develop themes and to advance the story. Shooting, rape, sexuality, racism, violence, torture, characters presenting themselves in a certain way, emotional conflict, everything which ever happened in live, they can all have a good place in a story. How they're used, whether this is respectful, nuanced and presented well, is what matters, not the subject matter at hands. - -I'm not even starting the argument whether you understood Monogatari correctly or not, which is a completely different part of this discussion. However, your statement is just overly simplistic and even false.";False;True;;comment score below threshold;;1610181707;;False;{};gin1d35;False;t3_ktgaoa;False;False;t1_gimwpm3;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin1d35/;1610225432;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;LuvRice4Life;;;[];;;;text;t2_3uucfbcf;False;False;[];;Watch it. I've read the manga twice now, and it's my favorite romcom of all time, the relationship between the 2 is an absolute charm to watch.;False;False;;;;1610181838;;False;{};gin1hv0;False;t3_ktj4r2;False;False;t1_gimeyxq;/r/anime/comments/ktj4r2/horimiya_in_light_of_the_anime_adaptation_coming/gin1hv0/;1610225535;3;True;False;anime;t5_2qh22;;0;[]; -[];;;findercutename;;;[];;;;text;t2_8rmmqqbt;False;False;[];;Yeah, m planning to, tonight is the night🤩;False;False;;;;1610181880;;False;{};gin1jdg;False;t3_ktj4r2;False;True;t1_gin1hv0;/r/anime/comments/ktj4r2/horimiya_in_light_of_the_anime_adaptation_coming/gin1jdg/;1610225576;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cr0ssyBoi;;;[];;;;text;t2_1alb3xc0;False;False;[];;Ryougi Shiki;False;False;;;;1610181974;;False;{};gin1mrx;False;t3_ktjy1n;False;False;t3_ktjy1n;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/gin1mrx/;1610225653;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GobtheCyberPunk;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/JigsawStitches;light;text;t2_jdw5z;False;False;[];;"I dont know if you realize this but Otaku culture and indeed pedophilic aspects of anime are indeed looked down upon by the vast majority of Japanese people. The type of people who are into these things are a small minority of Japanese people who are heavily looked down upon and it would be considered quite shameful for you and your family for you to be known as the creep into junior idols and/or pedophilic anime. - -The difference is simply that these subcultures are more publicly visible than a Westerner would assume. But many things in Western culture are widely known about yet are considered highly scandalous and morally abhorrent if a specific person is exposed as having been involved in it. Drug addiction and infidelity are fairly common vices if you look at simple numbers of people who are involved in them, yet if you are exposed as a heroin addict or engaged in an affair you are seen as morally deficient by the large majority of people. In Japan the idea of someone being addicted to drugs or unfaithful to their spouse is unspeakably shameful to the point that it's unthinkable. Yet from the outside in it would seem that they are comparatively more acceptable in Western culture, when they really aren't per se.";False;False;;;;1610182019;;False;{};gin1oe6;False;t3_ktgaoa;False;False;t1_gimtvj6;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin1oe6/;1610225685;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Active-Ad-3135;;;[];;;;text;t2_8d589cwp;False;False;[];;Yeah;False;False;;;;1610182078;;False;{};gin1qgv;False;t3_ktiida;False;True;t3_ktiida;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gin1qgv/;1610225724;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Meem0;;MAL;[];;http://myanimelist.net/animelist/Meem0;dark;text;t2_4olst;False;False;[];;You're right about it being a masterpiece, but you're wrong about there being anything borderline about it;False;False;;;;1610182198;;False;{};gin1utc;False;t3_ktgaoa;False;False;t1_gimw8jp;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin1utc/;1610225807;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Failsnail64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/failsnail;light;text;t2_ixw1z;False;False;[];;Kind of, most of the scenes are long conversations like this. Although most scenes are of course way more plot focused.;False;False;;;;1610182402;;False;{};gin221m;False;t3_ktgaoa;False;False;t1_gimzqlw;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin221m/;1610225966;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Eyaslunatic;;;[];;;;text;t2_zfohy;False;False;[];;yeah the only thing I strongly dislike about the series is Arararagi going Pedoragi mode for the haha funnies, otherwise 10/10;False;False;;;;1610182483;;False;{};gin24up;False;t3_ktgaoa;False;False;t1_gims6i4;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin24up/;1610226016;11;True;False;anime;t5_2qh22;;0;[]; -[];;;HexaShadow13;;;[];;;;text;t2_7pzkj;False;False;[];;They're actually going to be adapting another Nisio novel series called Bishounen Tanteidan next year. Based on what little of the manga was scanlated it doesn't seem that good, at least not as far as the scanlators got. I don't know Japanese so I haven't read the original novels for that, nor have I read any of the novels for Monogatari past where the anime ended, but based on the limited information I have I kind of wish they'd do more Monogatari instead.;False;False;;;;1610182525;;False;{};gin26c9;False;t3_ktgaoa;False;False;t1_gimxkup;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin26c9/;1610226046;18;True;False;anime;t5_2qh22;;0;[]; -[];;;-Redstoneboi-;;;[];;;;text;t2_2tn5rscn;False;False;[];;I was told Bakemonogatari was the first;False;False;;;;1610182540;;False;{};gin26wv;False;t3_ktgaoa;False;False;t1_gin116q;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin26wv/;1610226057;6;True;False;anime;t5_2qh22;;0;[]; -[];;;stickdudeseven;;;[];;;;text;t2_5yx41;False;False;[];;"> Arararagi - -You added an extra 'ra' there.";False;False;;;;1610182577;;False;{};gin289n;False;t3_ktgaoa;False;False;t1_gimuwcy;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin289n/;1610226080;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Ainkrip;;;[];;;;text;t2_9hnoc1s;False;False;[];;Anime doesn’t have a big problem with fanservice and sexualization, at least because these people aren’t real. Nothing problematic lol.;False;True;;comment score below threshold;;1610182629;;False;{};gin2a4m;False;t3_ktgaoa;False;True;t1_gin0txm;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin2a4m/;1610226113;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;crim-sama;;;[];;;;text;t2_z00dygq;False;False;[];;Tbh i wish theyd continue adapting zaregoto.;False;False;;;;1610182687;;False;{};gin2c7p;False;t3_ktgaoa;False;False;t1_gin26c9;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin2c7p/;1610226150;10;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexCuzYNot;;;[];;;;text;t2_v3u2xlx;False;False;[];;Is Magia Record getting a 2nd season?;False;False;;;;1610182713;;False;{};gin2d3m;False;t3_ktgaoa;False;True;t1_gimxkup;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin2d3m/;1610226165;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nosalis2;;;[];;;;text;t2_q038mwc;False;False;[];;"Borderline? It's full-blown pedophilia & blatantly panders to pedos. - -You got Manga Artists like the creep that wrote Act-Age get arrested for sexual groping schoolgirls while the pedo that wrote Ruroni Kenshin was charge with possession of child pornography so it isn't out of the question. - -https://myanimelist.net/forum/?topicid=1685455 - -This shit has always weirded me out and made me uncomfortable. I don't care if she's a 4000 year old vampire it still creeps me the fuck out.";False;True;;comment score below threshold;;1610182730;;False;{};gin2dop;False;t3_ktgaoa;False;True;t1_gimw8jp;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin2dop/;1610226175;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;Meem0;;MAL;[];;http://myanimelist.net/animelist/Meem0;dark;text;t2_4olst;False;False;[];;I was just watching Jojo's, and the protagonist, who's in a gang, murdered someone. Do you think Jojo's promotes gang violence and murder?;False;False;;;;1610182742;;False;{};gin2e4k;False;t3_ktgaoa;False;False;t1_gimrx5z;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin2e4k/;1610226182;7;True;False;anime;t5_2qh22;;0;[]; -[];;;crim-sama;;;[];;;;text;t2_z00dygq;False;False;[];;Yes iirc it was already announced at the end of the first season. We still havent seen anything come from that one exhibit concept movie.;False;False;;;;1610182783;;False;{};gin2flr;False;t3_ktgaoa;False;False;t1_gin2d3m;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin2flr/;1610226210;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexCuzYNot;;;[];;;;text;t2_v3u2xlx;False;False;[];;I might just have to finally watch Record if that's the case.;False;False;;;;1610182908;;False;{};gin2k1s;False;t3_ktgaoa;False;True;t1_gin2flr;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin2k1s/;1610226300;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CalamityGod444;;;[];;;;text;t2_6c2kvarh;False;False;[];;Asumi Kominami from Bokutachi wa Benkyou ga Dekinai, if manga included. I'm sure there are others, but currently, I think this one.;False;False;;;;1610182975;;False;{};gin2mfx;False;t3_ktg1zw;False;True;t3_ktg1zw;/r/anime/comments/ktg1zw/what_female_character_has_the_best_written/gin2mfx/;1610226344;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crim-sama;;;[];;;;text;t2_z00dygq;False;False;[];;I enjoyed it. They did spend a little too much time introducing characters but it didnt feel too bad.;False;False;;;;1610183063;;False;{};gin2php;False;t3_ktgaoa;False;True;t1_gin2k1s;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin2php/;1610226403;3;True;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;Ahh yes because it's a cartoon right? If the same scenario would be seen as pedophilia if it was IRL then you shouldn't be justifying this trash. I swear the anime community is filled with weirdos man.;False;True;;comment score below threshold;;1610183073;;False;{};gin2puz;False;t3_ktgaoa;False;True;t1_gin1utc;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin2puz/;1610226410;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexCuzYNot;;;[];;;;text;t2_v3u2xlx;False;False;[];;Ay all I know is that the main 5 make an appearance and more Mami screentime is always appreciated.;False;False;;;;1610183372;;False;{};gin30d0;False;t3_ktgaoa;False;True;t1_gin2php;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin30d0/;1610226613;2;True;False;anime;t5_2qh22;;0;[]; -[];;;yuvan18;;;[];;;;text;t2_64jrih4h;False;False;[];;yes! And death note was my first too;False;False;;;;1610183507;;False;{};gin34yv;True;t3_ktiida;False;False;t1_gimxbje;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gin34yv/;1610226695;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cr0ssyBoi;;;[];;;;text;t2_1alb3xc0;False;False;[];;I recommend the Psycho Pass franchise;False;False;;;;1610183874;;False;{};gin3hth;False;t3_kti1e9;False;True;t3_kti1e9;/r/anime/comments/kti1e9/getting_started_in_anime/gin3hth/;1610226933;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Quebec120;;;[];;;;text;t2_2iddjr1c;False;False;[];;Forgive me. I flubbed it.;False;False;;;;1610183882;;False;{};gin3i3f;False;t3_ktgaoa;False;False;t1_gin289n;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin3i3f/;1610226939;21;True;False;anime;t5_2qh22;;0;[]; -[];;;-Alan_c-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Alwacho;light;text;t2_17qi109h;False;False;[];;sorry flubbed it;False;False;;;;1610183963;;False;{};gin3kvy;True;t3_ktgaoa;False;False;t1_gin289n;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin3kvy/;1610226990;5;True;False;anime;t5_2qh22;;0;[]; -[];;;martyyeet;;;[];;;;text;t2_46kwat88;False;False;[];;araragi doesn0t have this courage;False;False;;;;1610183992;;False;{};gin3ly1;False;t3_ktgaoa;False;False;t1_gin05id;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin3ly1/;1610227012;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Quebec120;;;[];;;;text;t2_2iddjr1c;False;False;[];;Wow, crazy. We should try and get the voice actors into the same room together and see what happens!;False;False;;;;1610184032;;False;{};gin3nbt;False;t3_ktgaoa;False;False;t1_gimxn2o;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin3nbt/;1610227037;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Failsnail64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/failsnail;light;text;t2_ixw1z;False;False;[];;"I don't have time now to write an elaborate explanation of the molestation scenes between Araragi and Hachikuji. But if you want an explanation of two other problematic scenes, as a prove that there indeed is some underlying reason behind the writing of Monogatari: - -[The toothbrush scene](https://www.reddit.com/r/anime/comments/jtpj60/monogatari_series_2020_novel_order_rewatch/gc7eti8/) - -[The bathtub scene with Shinobu](https://www.reddit.com/r/araragi/comments/i75x37/proceeds_to_buy_awls/g10ys6l/) - -[About ""fanservice"" in general in Monogatari.](https://www.youtube.com/watch?v=PFQa3dHlHSg&ab_channel=Tsubasa%27sFamily) [And part 2.](https://www.youtube.com/watch?v=nBT3wH_0NGw&t=1s&ab_channel=Tsubasa%27sFamily)";False;False;;;;1610184089;;1610184540.0;{};gin3pbj;False;t3_ktgaoa;False;True;t1_gimx8f9;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin3pbj/;1610227074;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-Alan_c-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Alwacho;light;text;t2_17qi109h;False;False;[];;wow that was awesome;False;False;;;;1610184152;;False;{};gin3rl9;True;t3_ktgaoa;False;True;t1_gim2f8h;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin3rl9/;1610227116;3;True;False;anime;t5_2qh22;;0;[]; -[];;;trueselfdao;;;[];;;;text;t2_1mcwjmbm;False;False;[];;The courage to post emoji on reddit.;False;False;;;;1610184508;;False;{};gin448q;False;t3_ktgaoa;False;True;t1_gimtg2e;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin448q/;1610227352;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DominelKira;;;[];;;;text;t2_3s08wif3;False;False;[];;"Mannnnnnn , this series could have done without the loli shit. - -Still a good show but ahhhh";False;False;;;;1610184686;;False;{};gin4adf;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin4adf/;1610227465;12;True;False;anime;t5_2qh22;;0;[]; -[];;;platinum_party;;;[];;;;text;t2_11zsdq32;False;False;[];;Exactly what I needed;False;False;;;;1610184723;;False;{};gin4bpk;False;t3_kth6in;False;True;t3_kth6in;/r/anime/comments/kth6in/i_compiled_a_bunch_of_shimarin_noises_into_one/gin4bpk/;1610227491;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-Alan_c-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Alwacho;light;text;t2_17qi109h;False;False;[];;And i wish they'd continue adapting Mekaucity actors.;False;False;;;;1610184856;;False;{};gin4gdl;True;t3_ktgaoa;False;True;t1_gin2c7p;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin4gdl/;1610227578;1;True;False;anime;t5_2qh22;;0;[]; -[];;;reddit_is_tarded;;;[];;;;text;t2_mfhc6;False;False;[];;i always forget just how brilliant that anime is. I'm not a fast reader so it's a hard one for me but I love it;False;False;;;;1610184905;;False;{};gin4i3e;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin4i3e/;1610227610;1;False;False;anime;t5_2qh22;;0;[]; -[];;;TehNeedler;;;[];;;;text;t2_11cm1o;False;False;[];;Tbf I'm pretty sure the point of the second half of their comment is the same as the other reply.;False;False;;;;1610185059;;False;{};gin4nfz;False;t3_ktgaoa;False;True;t1_gin2puz;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin4nfz/;1610227704;3;True;False;anime;t5_2qh22;;0;[]; -[];;;-Alan_c-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Alwacho;light;text;t2_17qi109h;False;False;[];;"You probably should check the watch order first. - -[https://edomonogatari.wordpress.com/2020/05/12/monogatari-anime-guide/](https://edomonogatari.wordpress.com/2020/05/12/monogatari-anime-guide/)";False;False;;;;1610185223;;False;{};gin4t80;True;t3_ktgaoa;False;False;t1_gimwyyr;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin4t80/;1610227808;19;True;False;anime;t5_2qh22;;0;[]; -[];;;damageis_done;;;[];;;;text;t2_47n90bpm;False;False;[];;"It's because sentence structure difference between languages. - -English uses ""Subject+Verb+Object"" sentence structure. - -Japanese probably uses ""Subject+......+Verb"" structure. - ->Translated literally: As for Thursday, at the library Japanese let's study. - -And a side note, I can translate this into my language more easily than proper one.";False;False;;;;1610185225;;1610185593.0;{};gin4tav;False;t3_ktgaoa;False;False;t1_gimw6x1;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin4tav/;1610227810;7;True;False;anime;t5_2qh22;;0;[]; -[];;;bl-a-nk-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Blank0211;light;text;t2_6itfk825;False;False;[];;That's why he used it (propably);False;True;;comment score below threshold;;1610185289;;False;{};gin4vgi;False;t3_ktjhoh;False;True;t1_gimo3sb;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/gin4vgi/;1610227848;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;HD_ERR0R;;;[];;;;text;t2_dthqt;False;False;[];;They talk really fast in this show. I’ve only seen like first two episodes. But damn this show definitely stands out.;False;False;;;;1610185374;;False;{};gin4yha;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin4yha/;1610227904;2;True;False;anime;t5_2qh22;;0;[]; -[];;;-Alan_c-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Alwacho;light;text;t2_17qi109h;False;False;[];;"Happy cakeday - -Here is the watch order: - -[https://edomonogatari.wordpress.com/2020/05/12/monogatari-anime-guide/](https://edomonogatari.wordpress.com/2020/05/12/monogatari-anime-guide/)";False;False;;;;1610185436;;False;{};gin50oz;True;t3_ktgaoa;False;False;t1_gin116q;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin50oz/;1610227944;4;True;False;anime;t5_2qh22;;0;[]; -[];;;-Alan_c-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Alwacho;light;text;t2_17qi109h;False;False;[];;kizumonogatari is fine too. ( I think);False;False;;;;1610185480;;False;{};gin528d;True;t3_ktgaoa;False;True;t1_gin26wv;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin528d/;1610227972;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;CheeseAndCh0c0late;;;[];;;;text;t2_zq130;False;False;[];;Why do you have to do this to me?!;False;False;;;;1610185509;;False;{};gin539s;False;t3_ktgaoa;False;True;t1_gimzzdc;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin539s/;1610227990;3;True;False;anime;t5_2qh22;;0;[]; -[];;;seninn;;MAL;[];;http://myanimelist.net/animelist/Senninn0;dark;text;t2_fw8p2;False;False;[];;Monogatari is the best and worst anime has to offer at the same time.;False;False;;;;1610185625;;False;{};gin57a2;False;t3_ktgaoa;False;False;t1_gims6i4;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin57a2/;1610228062;10;True;False;anime;t5_2qh22;;0;[]; -[];;;mcchickenngget;;;[];;;;text;t2_38tfo3j2;False;False;[];;No;False;False;;;;1610185646;;False;{};gin5829;False;t3_ktiida;False;True;t3_ktiida;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gin5829/;1610228077;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Star4ce;;;[];;;;text;t2_hui3x;False;False;[];;"Tell me about it, I'm watching it for the first time right now, a little late to the currently ongoing rewatch, though. Here in Germany bascially all monogataris on crunchyroll and funimation are region locked and the two streaming sites that aren't locked only got bakemonogatari - *in german only*. - -*Snips on eyepatch*";False;False;;;;1610185721;;False;{};gin5aqh;False;t3_ktgaoa;False;False;t1_gimviay;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin5aqh/;1610228129;41;True;False;anime;t5_2qh22;;0;[]; -[];;;CheeseAndCh0c0late;;;[];;;;text;t2_zq130;False;False;[];;I really love their dynamic. Sejougahara is his lover, but hachikuji is his friend.;False;False;;;;1610185852;;False;{};gin5fas;False;t3_ktgaoa;False;False;t1_gimtu9x;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin5fas/;1610228212;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PM_ME_YOUR_FOOTJOBS;;;[];;;;text;t2_w4dg0;False;False;[];;Oh god. My family would call the cops on me.;False;False;;;;1610185881;;False;{};gin5gae;False;t3_ktgaoa;False;False;t1_gimvn44;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin5gae/;1610228231;6;True;False;anime;t5_2qh22;;0;[]; -[];;;-Alan_c-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Alwacho;light;text;t2_17qi109h;False;False;[];;It is what it is. A lot of anime have sexual element in it but, you shouldn't let yourself get bothered by it too much. It the takes the fun out of it. Don't let yourself get to bothered by it.;False;False;;;;1610185944;;False;{};gin5igl;True;t3_ktgaoa;False;True;t1_gimw8jp;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin5igl/;1610228271;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;jakeman77;;MAL;[];;TheCoffeeLord;dark;text;t2_63exm;False;False;[];;Yeah, it's the reason I dropped it. Super weird, and it completely ruins Araragi's character, let alone the show.;False;False;;;;1610185970;;False;{};gin5jd8;False;t3_ktgaoa;False;True;t1_gin4adf;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin5jd8/;1610228286;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Quebec120;;;[];;;;text;t2_2iddjr1c;False;False;[];;"In Australia, only Bakemonogatari, Nisemonogatari, and Owarimonogatari are available (legally). And Bakemonogatari only became available recently. - -So you either skip 70% of the series between the start and ending seasons, or pull out your hat and eye patch. I would buy it physically, if I could find a store that sold it or it wasn't so expensive to ship.... - -*Ahoy, maties!*";False;False;;;;1610185990;;False;{};gin5k2g;False;t3_ktgaoa;False;False;t1_gin5aqh;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin5k2g/;1610228298;16;True;False;anime;t5_2qh22;;0;[]; -[];;;adovetakesflight;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/pincurchin;light;text;t2_1eqm5q28;False;False;[];;[His answer in the dub is awesome too.](https://twitter.com/sixeyedsoul/status/1347667689087631361?s=21) I love Fushiguro.;False;False;;;;1610186079;;False;{};gin5n3g;False;t3_ktjhoh;False;False;t3_ktjhoh;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/gin5n3g/;1610228353;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Star4ce;;;[];;;;text;t2_hui3x;False;False;[];;"Those are wonderful, I'm done with Kabukimonogatari right now and catch up with all your reactions when I get there. But binging it would be too much for me, monogatari needs to be digested properly imo. - -[Kabukimonogatari ending](/s ""How the fuck can a head pat destroy me like this?! I love that they went with *all* timelines being real and worthy of being kept, but... just, fuck. That broke me."")";False;False;;;;1610186176;;False;{};gin5qd9;False;t3_ktgaoa;False;False;t1_gimyhlk;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin5qd9/;1610228415;7;True;False;anime;t5_2qh22;;0;[]; -[];;;consolefreakedorigin;;;[];;;;text;t2_2baqt95w;False;False;[];;Not for me;False;False;;;;1610186280;;False;{};gin5u0f;False;t3_ktgaoa;False;True;t1_gimkpj5;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin5u0f/;1610228481;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crim-sama;;;[];;;;text;t2_z00dygq;False;False;[];;I swear a new adaptation was announced ages ago.;False;False;;;;1610186453;;False;{};gin600i;False;t3_ktgaoa;False;False;t1_gin4gdl;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin600i/;1610228590;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Star4ce;;;[];;;;text;t2_hui3x;False;False;[];;"At least the UK still has some good deals regarding imports, got the bake blu ray for 45€. It's still pricey, but considering the usual cost of those and the quality of monogatari, I'll stock them all up over the coming year. - -Fingers crossed my parcel doesn't get brexited.";False;False;;;;1610186537;;False;{};gin630n;False;t3_ktgaoa;False;False;t1_gin5k2g;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin630n/;1610228646;5;True;False;anime;t5_2qh22;;0;[]; -[];;;-Alan_c-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Alwacho;light;text;t2_17qi109h;False;False;[];;I know, but that was ages ago like 2014. I've lost hope.;False;False;;;;1610186539;;False;{};gin6322;True;t3_ktgaoa;False;True;t1_gin600i;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin6322/;1610228647;1;True;False;anime;t5_2qh22;;0;[]; -[];;;limberwisk;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/limberwisk;light;text;t2_15b7pb77;False;False;[];;I know they are the same. His tone was similar in monogatari and saiki k . Levi was different from both;False;False;;;;1610186714;;False;{};gin691r;False;t3_ktgaoa;False;True;t1_gin3nbt;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin691r/;1610228762;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;normalmighty;;;[];;;;text;t2_11q746g1;False;False;[];;I'll have you know the charger removal was a feature! The promotional video politely explained that they did this because it revolutionizes the user experience by making the box lighter than ever when you buy your iphone!;False;False;;;;1610186821;;False;{};gin6cnh;False;t3_ktgaoa;False;False;t1_gimyfp0;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin6cnh/;1610228826;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LOTRfreak101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LOTRfreak101;light;text;t2_opd6l;False;False;[];;He already did shinji though. You can't get more scummy than that.;False;False;;;;1610187075;;False;{};gin6l99;False;t3_ktgaoa;False;False;t1_gimv1er;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin6l99/;1610228986;6;True;False;anime;t5_2qh22;;0;[]; -[];;;normalmighty;;;[];;;;text;t2_11q746g1;False;False;[];;"As someone who answers these kinds of questions a lot for Fate, you get used to it. - -If someone feels like they've found the objectively right watch order, they'll get really pissed at anyone daring to suggest an alternative.";False;False;;;;1610187078;;False;{};gin6ldd;False;t3_ktgaoa;False;True;t1_gimxrlc;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin6ldd/;1610228988;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;reditor405;;;[];;;;text;t2_2kvm5ft7;False;False;[];;Brilliant scene.;False;False;;;;1610187157;;False;{};gin6o1h;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin6o1h/;1610229035;2;True;False;anime;t5_2qh22;;0;[]; -[];;;normalmighty;;;[];;;;text;t2_11q746g1;False;False;[];;Boy interacts with girls and occasionally help them deal with supernatural things. It's a very dialogue heavy show, and the first season is the hardest to track with the most dialogue and Japanese wordplay, but I highly recommend you give it a watch.;False;False;;;;1610187215;;False;{};gin6q15;False;t3_ktgaoa;False;False;t1_gimxa4l;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin6q15/;1610229072;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610187259;;False;{};gin6rjs;False;t3_ktgaoa;False;True;t1_gin6q15;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin6rjs/;1610229104;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jaber-fayez;;;[];;;;text;t2_20g41fbn;False;False;[];;Kinda reminds me of bunny girl senpai;False;False;;;;1610187285;;False;{};gin6shd;False;t3_ktgaoa;False;True;t1_gin6q15;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin6shd/;1610229120;0;True;False;anime;t5_2qh22;;0;[]; -[];;;normalmighty;;;[];;;;text;t2_11q746g1;False;False;[];;The kanji wordplay and stuff like that is a whole lot heavier in the first season. It eases up later into stuff that, while still really complex, isn't quite as confusing when translated.;False;False;;;;1610187306;;False;{};gin6t78;False;t3_ktgaoa;False;False;t1_gimyjqi;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin6t78/;1610229133;6;True;False;anime;t5_2qh22;;0;[]; -[];;;KromeKrusader;;;[];;;;text;t2_ree66;False;False;[];;Flazzard's character design is amazing.;False;False;;;;1610187342;;False;{};gin6ugl;False;t3_kthh9g;False;False;t3_kthh9g;/r/anime/comments/kthh9g/dragon_quest_dai_no_daibouken_episode_14/gin6ugl/;1610229155;8;True;False;anime;t5_2qh22;;0;[]; -[];;;kokonotsuu;;;[];;;;text;t2_15wqz9;False;False;[];;Hachikuji is great! This is the secret of the show, super cool characters that you will like for a reason or another.;False;False;;;;1610187400;;False;{};gin6wgy;False;t3_ktgaoa;False;False;t1_gimtu9x;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin6wgy/;1610229192;10;True;False;anime;t5_2qh22;;0;[]; -[];;;normalmighty;;;[];;;;text;t2_11q746g1;False;False;[];;"Kizu is second. It takes place first so you'll hear it as the starting point of the chronological watch order, but chronological is absolutely meant for re-watches only and doesn't make sense as a blind watch order. - -[This](https://edomonogatari.wordpress.com/2020/05/12/monogatari-anime-guide/) is the most widely accepted blind watch order.";False;False;;;;1610187514;;False;{};gin70el;False;t3_ktgaoa;False;False;t1_gin528d;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin70el/;1610229269;8;True;False;anime;t5_2qh22;;0;[]; -[];;;-Alan_c-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Alwacho;light;text;t2_17qi109h;False;False;[];;Ah i see;False;False;;;;1610187584;;False;{};gin72ry;True;t3_ktgaoa;False;True;t1_gin70el;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin72ry/;1610229313;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cryzzalis;;MAL a-amq;[];;http://myanimelist.net/animelist/Charaxify;dark;text;t2_7j04d;False;False;[];;Fifth, sixth and seventh here.;False;False;;;;1610187632;;False;{};gin74gn;False;t3_kth6in;False;False;t1_gimyls5;/r/anime/comments/kth6in/i_compiled_a_bunch_of_shimarin_noises_into_one/gin74gn/;1610229342;8;True;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;Idk if that makes it better or worse lol. Cuz calling a show with pedophilia a masterpiece is wrong so my comment still stands.;False;False;;;;1610187871;;False;{};gin7cne;False;t3_ktgaoa;False;True;t1_gin4nfz;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin7cne/;1610229483;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;normalmighty;;;[];;;;text;t2_11q746g1;False;False;[];;Bunny-girl senpai took a huge amouint of inspiration from Monogatari. If you liked Bunny-girl senpai there's a really good chance that you'll like Monogatari.;False;False;;;;1610188016;;False;{};gin7hms;False;t3_ktgaoa;False;False;t1_gin6shd;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin7hms/;1610229572;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jaber-fayez;;;[];;;;text;t2_20g41fbn;False;False;[];;Yes i loved it so I'll give monogatari a try;False;False;;;;1610188095;;False;{};gin7kbn;False;t3_ktgaoa;False;True;t1_gin7hms;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin7kbn/;1610229622;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rollin340;;;[];;;;text;t2_cmyef;False;False;[];;"Hmm... maybe not. - -It's a great series. But it's mainly just purely about how it looks, and how it feels. It doesn't exactly showcase how the medium can have excellent story telling. What we got isn't bad, but it definitely isn't a full proper one. - -It's a good way to represent how epic some anime fights can look though.";False;False;;;;1610188209;;False;{};gin7obo;False;t3_ktiida;False;False;t3_ktiida;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gin7obo/;1610229695;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"**The courage to commit a crime.** - -[](#smugshinobu) [](#loli_ok) [](#peacepeace) - -[](#araragi-1)";False;False;;;;1610188336;;False;{};gin7suz;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin7suz/;1610229771;9;True;False;anime;t5_2qh22;;0;[]; -[];;;FreeAppAndroid;;;[];;;;text;t2_9qic7hq8;False;False;[];;(y);False;False;;;;1610188571;;False;{};gin8105;False;t3_kth6in;False;True;t3_kth6in;/r/anime/comments/kth6in/i_compiled_a_bunch_of_shimarin_noises_into_one/gin8105/;1610229912;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;As I've said before, Raggers definitely both has and makes full use of the courage to be a child molester.;False;False;;;;1610188589;;False;{};gin81n0;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin81n0/;1610229924;3;True;False;anime;t5_2qh22;;0;[]; -[];;;battler624;;;[];;;;text;t2_dcvad;False;False;[];;fuckin beautiful animation and great pacing.;False;False;;;;1610188712;;False;{};gin8605;False;t3_kthh9g;False;False;t3_kthh9g;/r/anime/comments/kthh9g/dragon_quest_dai_no_daibouken_episode_14/gin8605/;1610230006;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Quebec120;;;[];;;;text;t2_2iddjr1c;False;False;[];;"I was making a joke, lol. Like the ""Dwayne Johnson and The Rock look so similar"" jokes.";False;False;;;;1610188714;;False;{};gin8629;False;t3_ktgaoa;False;False;t1_gin691r;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin8629/;1610230007;5;True;False;anime;t5_2qh22;;0;[]; -[];;;battler624;;;[];;;;text;t2_dcvad;False;False;[];;Feels straight outta Devil may cry tbh;False;False;;;;1610188734;;False;{};gin86sk;False;t3_kthh9g;False;False;t1_gin6ugl;/r/anime/comments/kthh9g/dragon_quest_dai_no_daibouken_episode_14/gin86sk/;1610230019;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Chemiczny_Bogdan;;;[];;;;text;t2_4hx94;False;False;[];;"That makes a lot of sense. I recently watched Space Dandy, where Kamiyan plays Johnny, and I was like ""hey, that's totally Araragi!""";False;False;;;;1610188771;;False;{};gin883r;False;t3_ktgaoa;False;True;t1_gimv5t2;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin883r/;1610230043;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ThrowCarp;;;[];;;;text;t2_79cxz;False;False;[];;"> 2020 (and probably 2021): Seems legit - -The ~~courage~~ civic duty to be a lazy bum.";False;False;;;;1610188960;;False;{};gin8evb;False;t3_ktgaoa;False;False;t1_gimohvr;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin8evb/;1610230165;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Accidentallygolden;;;[];;;;text;t2_5hmn2f1r;False;False;[];;All of this to see kids panty...fbi?;False;False;;;;1610189109;;False;{};gin8k4m;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin8k4m/;1610230265;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BigBangZebraMan;;;[];;;;text;t2_bs10y0y;False;False;[];;The courage to watch a show without reading the subtitles!;False;False;;;;1610189214;;False;{};gin8nxb;False;t3_ktgaoa;False;True;t1_gin4i3e;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin8nxb/;1610230336;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Chemiczny_Bogdan;;;[];;;;text;t2_4hx94;False;False;[];;[This psychopathic sentient logo](https://www.youtube.com/watch?v=VzocnfLccs8);False;False;;;;1610189215;;False;{};gin8nyo;False;t3_ktgaoa;False;True;t1_gimyovl;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin8nyo/;1610230336;3;True;False;anime;t5_2qh22;;0;[]; -[];;;imlatitude;;;[];;;;text;t2_5yenr72j;False;False;[];;Worthy of watching hundred times and copying it to memory!;False;False;;;;1610189487;;False;{};gin8xg6;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin8xg6/;1610230499;2;True;False;anime;t5_2qh22;;0;[]; -[];;;billrussell1;;;[];;;;text;t2_46qt1fjf;False;False;[];;To be honest I’d put Hana last because it spoils owari s2;False;False;;;;1610189583;;False;{};gin90ut;False;t3_ktgaoa;False;True;t1_gimvz3b;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin90ut/;1610230557;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;AustinYaoChen;;;[];;;;text;t2_4qrjn4pv;False;False;[];;"As a guy who doesn’t know Japanese but know both English and Chinese, adding courage/勇氣 do make most sentence seems optimistic. In other words, not just Japanese, but languages are just that simple. - -Also, love to see many other people appreciate this series. The Monogatari series isn't that hard to get in actually. Just follow the anime release order, but my advice is to watch Kizumonogatari right after the Bakemonogatari. The total episode is only over 100 for the anime, so just give it a try if you want to watch this series.";False;False;;;;1610189591;;1610191799.0;{};gin914q;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin914q/;1610230561;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tircle;;;[];;;;text;t2_ktt80;False;False;[];;Yeah I really like some of the characters but Hanekawa might be the only character I’m iffy about. I’m on Nekomonogatari right now so maybe I’ll have to finish this arc first.;False;False;;;;1610190136;;False;{};gin9kjl;False;t3_ktgaoa;False;True;t1_gin6wgy;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin9kjl/;1610230911;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dariketo;;;[];;;;text;t2_1uvlixvc;False;False;[];;Hiroshi Kamya sensei;False;False;;;;1610190397;;False;{};gin9tq0;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gin9tq0/;1610231084;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KamiKagutsuchi;;;[];;;;text;t2_6201r;False;False;[];;And this is why we're not on /r/all;False;False;;;;1610191263;;False;{};ginaolv;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginaolv/;1610231651;20;True;False;anime;t5_2qh22;;0;[]; -[];;;battler624;;;[];;;;text;t2_dcvad;False;False;[];;I thought this was the song.;False;False;;;;1610191280;;False;{};ginap8p;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginap8p/;1610231664;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610191630;;False;{};ginb226;False;t3_ktgaoa;False;True;t1_gin5aqh;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginb226/;1610231896;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi davidarius123, your post has been removed because it links to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610191630;moderator;False;{};ginb22u;False;t3_ktgaoa;False;True;t1_ginb226;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginb22u/;1610231897;2;False;False;anime;t5_2qh22;;0;[]; -[];;;DamianWinters;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/DamianWinters/animelist/Completed;light;text;t2_ju8p3;False;False;[];;Sub🥴;False;False;;;;1610191766;;False;{};ginb76f;False;t3_ktjhoh;False;True;t1_gimg8bl;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/ginb76f/;1610231985;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZN_231;;;[];;;;text;t2_7o64qb2q;False;False;[];;Can’t wait;False;False;;;;1610192076;;False;{};ginbif4;False;t3_ktj4r2;False;True;t3_ktj4r2;/r/anime/comments/ktj4r2/horimiya_in_light_of_the_anime_adaptation_coming/ginbif4/;1610232190;1;True;False;anime;t5_2qh22;;0;[]; -[];;;At_Dawn_I_Sleep;;;[];;;;text;t2_fxhyg;False;False;[];;"That hammer tho... - -OBJECTION!";False;False;;;;1610192239;;False;{};ginbof4;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginbof4/;1610232299;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RimuZ;;MAL;[];;http://myanimelist.net/animelist/LtCrabcake;dark;text;t2_8df66;False;False;[];;I wonder about Re Zero. Its an amazing show but Subaru is a lot to take in. I also feel like the early parts of it relied in the subversion of the common isekai powerfantasy tropes.;False;False;;;;1610192332;;False;{};ginbrvw;False;t3_ktiida;False;False;t1_gin0puq;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/ginbrvw/;1610232358;5;True;False;anime;t5_2qh22;;0;[]; -[];;;GrassKnight312;;;[];;;;text;t2_393jco2e;False;False;[];;This was one of the best scenes! This and the toothbrush.;False;False;;;;1610192624;;False;{};ginc2nz;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginc2nz/;1610232565;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;I fucking love this series ❤️;False;False;;;;1610192646;;False;{};ginc3i1;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginc3i1/;1610232580;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mylaur;;MAL;[];;https://myanimelist.net/animelist/Mylaur;dark;text;t2_gtwu7;False;False;[];;Now that's the courage I'm talking about;False;False;;;;1610192666;;False;{};ginc47v;False;t3_ktgaoa;False;False;t1_gimvn44;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginc47v/;1610232593;5;True;False;anime;t5_2qh22;;0;[]; -[];;;-Alan_c-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Alwacho;light;text;t2_17qi109h;False;False;[];;i'm watching that episode right now and wtf;False;False;;;;1610192871;;False;{};gincbos;True;t3_ktgaoa;False;False;t1_ginc2nz;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gincbos/;1610232733;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ian_Summer;;;[];;;;text;t2_2o4v04f1;False;False;[];;"Araragi: “I refuse to believe that Japanese is structured that way” - -Me reading eng subs: y-yeah";False;False;;;;1610193090;;False;{};gincjt8;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gincjt8/;1610232874;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ian_Summer;;;[];;;;text;t2_2o4v04f1;False;False;[];;"I bwit my tongue ><";False;False;;;;1610193233;;False;{};gincp1w;False;t3_ktgaoa;False;False;t1_gimxij6;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gincp1w/;1610232970;2;True;False;anime;t5_2qh22;;0;[]; -[];;;YgJb1691;;;[];;;;text;t2_k8dbo5z;False;False;[];;Very... orally hygienic?;False;False;;;;1610193362;;False;{};ginctr3;False;t3_ktgaoa;False;False;t1_gimx911;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginctr3/;1610233055;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Erianimul;;;[];;;;text;t2_7lpw9;False;False;[];;It reminds me of Eren from AoT and Koichi from Jojo. I love the voice of Eren/Todoroki but when Koichi is screaming it's like nails on a chalk board to me.;False;False;;;;1610193482;;False;{};gincy6j;False;t3_ktgaoa;False;True;t1_gimqnsl;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gincy6j/;1610233144;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610193553;;False;{};gind0si;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gind0si/;1610233189;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YgJb1691;;;[];;;;text;t2_k8dbo5z;False;False;[];;Did you watch the Kizu trilogy?;False;False;;;;1610193561;;False;{};gind13d;False;t3_ktgaoa;False;True;t1_gin9kjl;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gind13d/;1610233195;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bitterestboysintown;;;[];;;;text;t2_2z7z0w1n;False;False;[];;Thanks;False;False;;;;1610193715;;False;{};gind6vv;False;t3_ktgaoa;False;True;t1_gin4t80;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gind6vv/;1610233294;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;"The Shin Megami Tensei movie says the f-word and no, it's not ""fuck"".";False;False;;;;1610193879;;False;{};gindd1l;False;t3_ktjhoh;False;True;t1_gimzojb;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/gindd1l/;1610233404;2;True;False;anime;t5_2qh22;;0;[]; -[];;;-Alan_c-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Alwacho;light;text;t2_17qi109h;False;False;[];;I literaly just watched that episode and ... WHAT THE F\*CK;False;False;;;;1610193881;;False;{};gindd55;True;t3_ktgaoa;False;False;t1_giluar1;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gindd55/;1610233405;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Strickout;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Strickout?status=2;light;text;t2_1szolp7k;False;False;[];;Kinda hard to have an anime i haven't seen in my top 5 isn't it?;False;False;;;;1610194292;;False;{};gindt3h;False;t3_kti1ux;False;True;t1_gimu81m;/r/anime/comments/kti1ux/n00b_looking_for_anime_recommendations/gindt3h/;1610233688;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ivanm_10;;;[];;;;text;t2_bww05;False;False;[];;I’m glad to see Leona back. And so much hype for the next ep! These episodes just fly by;False;False;;;;1610194416;;False;{};gindy0k;False;t3_kthh9g;False;True;t3_kthh9g;/r/anime/comments/kthh9g/dragon_quest_dai_no_daibouken_episode_14/gindy0k/;1610233781;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ian_Summer;;;[];;;;text;t2_2o4v04f1;False;False;[];;Perfect anime doesn’t exist, you take the good with the bad;False;False;;;;1610194586;;False;{};gine4l8;False;t3_ktgaoa;False;True;t1_gims6i4;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gine4l8/;1610233902;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JustAnotherSuit96;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;.;light;text;t2_j0y4z;False;False;[];;Guys this is why we aren't on /r/all anymore.;False;False;;;;1610194670;;False;{};gine7st;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gine7st/;1610233966;5;True;False;anime;t5_2qh22;;0;[]; -[];;;WesternMarshall1955;;;[];;;;text;t2_1457ql;False;False;[];;"Nice strawman, I can't believe there were some idiots who upvoted this. - -First of all, Giorno is never portayed as a completely good person throughout the entire show, our introduction is him literally pickpocketing people and trying to scam seemingly clueless tourists out of their luggage and he ends the show by locking the main villain in an infinite cycle of torturous deaths. Yeah you could argue that his end goal of the show is noble but he's obviously a character who feels the ends justify the means. Part 5 doesn't try to convince you that he is an amazing person despite his horrendous flaws, dipshit. - -Now compare this to monogatari. Araragi is portrayed as a good person in nearly everything he does in the show and his pedophilloic behaviour is played off ""for the lulz"".";False;False;;;;1610194894;;False;{};ginegio;False;t3_ktgaoa;False;True;t1_gin2e4k;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginegio/;1610234121;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;EmuNemo;;;[];;;;text;t2_sfh5i;False;False;[];;This is why I love monogatari, I can never guess where the dialogue is gonna go;False;False;;;;1610194913;;False;{};gineh9l;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gineh9l/;1610234135;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DMking;;;[];;;;text;t2_8buww;False;False;[];;The original version came out over a month ago;False;False;;;;1610195470;;False;{};ginf3c8;False;t3_ktjhoh;False;True;t1_gims6cw;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/ginf3c8/;1610234522;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DMking;;;[];;;;text;t2_8buww;False;False;[];;The dub sounds good from what ive heard so far;False;False;;;;1610195503;;False;{};ginf4n1;False;t3_ktjhoh;False;False;t1_gin5n3g;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/ginf4n1/;1610234545;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DMking;;;[];;;;text;t2_8buww;False;False;[];;Everyone will love him soon;False;False;;;;1610195523;;False;{};ginf5e4;False;t3_ktjhoh;False;False;t1_gimsgdv;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/ginf5e4/;1610234559;3;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;TBH initially I hate it since it looks so simple, but in this episode I love it a lot!;False;False;;;;1610195621;;False;{};ginf9ew;False;t3_kthh9g;False;True;t1_gin6ugl;/r/anime/comments/kthh9g/dragon_quest_dai_no_daibouken_episode_14/ginf9ew/;1610234633;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bumbapoppa;;;[];;;;text;t2_53cmo78q;False;False;[];;hahahahahhahahahahahahhaha;False;False;;;;1610195755;;False;{};ginfewl;False;t3_ktgaoa;False;True;t1_gimsnxb;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginfewl/;1610234731;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bumbapoppa;;;[];;;;text;t2_53cmo78q;False;False;[];;"but the dialogue broooo - -its not the grabbing 10 year old kids and getting aroused";False;False;;;;1610195811;;False;{};ginfh6r;False;t3_ktgaoa;False;True;t1_gimw8jp;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginfh6r/;1610234770;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MaksimShadow;;;[];;;;text;t2_h92eaka;False;False;[];;"[Spoilers, probably.](/s ""Technically, she's one of the oldest there. She's just forced to play the role of a little girl and a snail, similar to Tsukihi. But, despite that, she was always the greatest support for Araragi. And she was the one who pulled him out from the depths of depression."")";False;False;;;;1610195852;;False;{};ginfisu;False;t3_ktgaoa;False;False;t1_gimtu9x;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginfisu/;1610234800;3;True;False;anime;t5_2qh22;;0;[]; -[];;;God1is1love;;;[];;;;text;t2_49sqgiwk;False;False;[];;Not the dub version. Some people wait to watch it until its dubbed. The dub came out like yesterday or something.;False;False;;;;1610196018;;False;{};ginfphr;False;t3_ktjhoh;False;True;t1_ginf3c8;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/ginfphr/;1610234918;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dry_Pair_9567;;;[];;;;text;t2_8cparb80;False;False;[];;"Naruto, hxh, Parasyte and Death Note - -If you ever decide to watch something that's not a fantasy anime check out Monster it's one of the best imo";False;False;;;;1610196056;;False;{};ginfqxu;False;t3_ktkal4;False;True;t3_ktkal4;/r/anime/comments/ktkal4/i_need_something_new_to_watch/ginfqxu/;1610234944;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WoDRonaldo;;;[];;;;text;t2_9f78m;False;False;[];;Get new friends \^\^;False;False;;;;1610196244;;False;{};ginfyrh;False;t3_ktiida;False;False;t1_gimlait;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/ginfyrh/;1610235084;6;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Airing Order is largely why people call Hana and Koyomi redundant;False;False;;;;1610196465;;False;{};ging7vz;False;t3_ktgaoa;False;True;t1_gin10zm;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ging7vz/;1610235247;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;It's completely wrong if you care about proper thematic build up. Airing Order spoils several character arcs;False;False;;;;1610196530;;False;{};gingaly;False;t3_ktgaoa;False;True;t1_gin0rz3;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gingaly/;1610235293;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AkaAkazukin;;;[];;;;text;t2_dyqdu4i;False;False;[];;"normal shinji is a dick - -CCC is the seaweed hair bro";False;False;;;;1610196751;;False;{};gingjrp;False;t3_ktgaoa;False;True;t1_gin6l99;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gingjrp/;1610235454;2;True;False;anime;t5_2qh22;;0;[]; -[];;;clay10mc;;;[];;;;text;t2_gsbea;False;False;[];;Monogatari is the greatest anime ever from an aesthetic standpoint imo. Beyond the immaculate art style and animation, the angles, cuts, transitions, settings, everything is just absolutely next level. Shaft really created a visual masterpiece. I definitely recommend Madoka Magicka and Nisekoi if you're a fan of Monogatari's look;False;False;;;;1610197131;;False;{};gingzp5;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gingzp5/;1610235739;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610197225;;False;{};ginh3r1;False;t3_ktgaoa;False;False;t1_gincbos;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginh3r1/;1610235808;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Smile_in_the_mirror;;;[];;;;text;t2_3znor0bx;False;False;[];;I like Araragis win win bet xD;False;False;;;;1610197384;;False;{};ginhams;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginhams/;1610235932;1;True;False;anime;t5_2qh22;;0;[]; -[];;;clay10mc;;;[];;;;text;t2_gsbea;False;False;[];;"Feels like a lot of big seiyuu have a ""signature voice"" that is very distinguishable (Sawashiro Miyuki and Sakura Ayane, my two favorites, come to mind). But then you have seiyuu like Hiroshi and Hanazawa who have such a crazy range of voices that they do all the while giving incredible performances, and it's just so impressive and easy to see why they are so highly touted.";False;False;;;;1610197441;;False;{};ginhd1t;False;t3_ktgaoa;False;True;t1_gimnoed;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginhd1t/;1610235976;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610197457;;False;{};ginhdq5;False;t3_ktgaoa;False;False;t1_ginegio;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginhdq5/;1610235989;1;True;False;anime;t5_2qh22;;0;[]; -[];;;stevethebandit;;;[];;;;text;t2_8zmld;False;False;[];;My favorite is the panicked sprinting noise;False;False;;;;1610197549;;False;{};ginhhtc;False;t3_kth6in;False;True;t3_kth6in;/r/anime/comments/kth6in/i_compiled_a_bunch_of_shimarin_noises_into_one/ginhhtc/;1610236059;2;True;False;anime;t5_2qh22;;0;[]; -[];;;-Alan_c-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Alwacho;light;text;t2_17qi109h;False;False;[];;no i surely not but it was kinda unexpected;False;False;;;;1610197562;;False;{};ginhie9;True;t3_ktgaoa;False;True;t1_ginh3r1;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginhie9/;1610236069;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610197568;;False;{};ginhimj;False;t3_ktgaoa;False;False;t1_gin7cne;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginhimj/;1610236072;0;True;False;anime;t5_2qh22;;0;[]; -[];;;VincentOfEngland;;;[];;;;text;t2_alo8i;False;False;[];;"> Now compare this to monogatari. Araragi is portrayed as a good person in nearly everything he does in the show - -If this is your takeaway from some of Araragi's decisions in Monogatari then I'm afraid you don't have a good grasp of the narrative.";False;False;;;;1610197576;;False;{};ginhizb;False;t3_ktgaoa;False;False;t1_ginegio;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginhizb/;1610236079;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610197718;;False;{};ginhp65;False;t3_ktgaoa;False;True;t1_gin5aqh;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginhp65/;1610236185;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Vims50, your post has been removed because it links to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610197719;moderator;False;{};ginhp7v;False;t3_ktgaoa;False;True;t1_ginhp65;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginhp7v/;1610236186;2;False;False;anime;t5_2qh22;;0;[]; -[];;;ChuckCarmichael;;;[];;;;text;t2_auz0d;False;False;[];;[Here's an official video by the German government, telling people to have the courage to be a lazy bum](https://youtu.be/FS1DDn2eklU);False;False;;;;1610197876;;False;{};ginhw1c;False;t3_ktgaoa;False;False;t1_gimohvr;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginhw1c/;1610236312;8;True;False;anime;t5_2qh22;;0;[]; -[];;;VincentOfEngland;;;[];;;;text;t2_alo8i;False;False;[];;"Hey, as a huge monogatari fan I'd just like to say that I think you're completely right in your assessment imo and it's very weird how this community will so actively fall into the ""ah yes but violent videogames don't promote violence"" rhetoric instead of just admitting the show has some highly problematic elements that step beyond parody or criticism.";False;False;;;;1610197920;;False;{};ginhxyj;False;t3_ktgaoa;False;True;t1_gimzjhd;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginhxyj/;1610236348;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ropoqi;;;[];;;;text;t2_59xt1pr;False;False;[];;my first ticket to the H wonderland;False;False;;;;1610198300;;False;{};giniems;False;t3_ktgaoa;False;True;t1_giluar1;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/giniems/;1610236635;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ijiolokae;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/corvoatano;light;text;t2_15k31w;False;False;[];;Loliconics is that you?;False;False;;;;1610198599;;False;{};ginirxn;False;t3_kth6in;False;True;t3_kth6in;/r/anime/comments/kth6in/i_compiled_a_bunch_of_shimarin_noises_into_one/ginirxn/;1610236873;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610198851;;False;{};ginj37n;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginj37n/;1610237085;1;True;False;anime;t5_2qh22;;0;[]; -[];;;brianort13;;;[];;;;text;t2_1b1d59h5;False;False;[];;As always the dialogue is great and as always I’m very put off by the rampant pedophilia in this show;False;False;;;;1610198898;;False;{};ginj5do;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginj5do/;1610237132;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Earthborn92;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EarthB;light;text;t2_al1wj;False;False;[];;"Orihara Izayararagi is Araragi if he was using the supernatural for amusement and profit instead of being a selfless boi. - -Even has two imoutos.";False;False;;;;1610199031;;False;{};ginjb2w;False;t3_ktgaoa;False;True;t1_gimv1er;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginjb2w/;1610237239;3;True;False;anime;t5_2qh22;;0;[]; -[];;;nonsensebearer;;;[];;;;text;t2_hooyr;False;False;[];;"Came straight to the comments hoping someone had posted this. - -Memories.";False;False;;;;1610199054;;False;{};ginjc5x;False;t3_ktgaoa;False;False;t1_gimqkj5;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginjc5x/;1610237260;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Inferno792;;MAL;[];;https://myanimelist.net/profile/Inferno792;dark;text;t2_148vlb;False;False;[];;I would try other mainstream stuff to get people into anime because of how over the top Akudama Drive is. Death Note, AoT, OPM are some of the best gateway anime since they don't have much of anime tropes that would need a bit of experience watching anime.;False;False;;;;1610199706;;False;{};gink74o;False;t3_ktiida;False;True;t3_ktiida;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gink74o/;1610237823;1;True;False;anime;t5_2qh22;;0;[]; -[];;;infinite_lyy;;;[];;;;text;t2_9lftz77s;False;False;[];;Bokura ga Ita is an underrated drama;False;False;;;;1610199909;;False;{};ginkguo;False;t3_ktifho;False;True;t3_ktifho;/r/anime/comments/ktifho/what_is_a_good_short_drama_anime_to_sink_my_teeth/ginkguo/;1610237992;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;At least finish the first season, the last episode of bakemonogatari is easily one of my favorite anime episodes ever;False;False;;;;1610200075;;False;{};ginkp0s;False;t3_ktgaoa;False;True;t1_gimtg2e;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginkp0s/;1610238133;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Donnovan-best-girl;;;[];;;;text;t2_3l949vs6;False;False;[];;fAmILy fRiEnDlY;False;False;;;;1610200275;;False;{};ginkz05;False;t3_ktgaoa;False;False;t1_gimy3z7;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginkz05/;1610238310;11;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;I found that scene weirdly entertaining, should I consider getting help;False;False;;;;1610200332;;False;{};ginl1tu;False;t3_ktgaoa;False;True;t1_gincbos;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginl1tu/;1610238362;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Donnovan-best-girl;;;[];;;;text;t2_3l949vs6;False;False;[];;Watch it and hopefully you can get join the loli supremacy;False;False;;;;1610200391;;False;{};ginl4ru;False;t3_ktgaoa;False;False;t1_gimq1lu;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginl4ru/;1610238417;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;Imagine how confusing it would be to watch monogatari without subtitles (if you don't know Japanese ofc);False;False;;;;1610200428;;False;{};ginl6n8;False;t3_ktgaoa;False;True;t1_gin8nxb;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginl6n8/;1610238450;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSuluX;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SuluX desperate for some friends;light;text;t2_ofy9g;False;False;[];;If it helps, the show usually portrays things from Arararagis perspective. So it mostly shows what he is seeing, or concentrating on. The scene changes based on his feel too (you can see it in this one to where they suddenly leave reality to be in a courtroom). If you watch the last part knowing that it definitely changes the scene quite a bit. But Araragi is still a perv no doubt;False;False;;;;1610200441;;False;{};ginl7ac;False;t3_ktgaoa;False;True;t1_gin5jd8;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginl7ac/;1610238461;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Donnovan-best-girl;;;[];;;;text;t2_3l949vs6;False;False;[];;DircordmoderatorsSmashProAntismonogatari;False;False;;;;1610200469;;False;{};ginl8nv;False;t3_ktgaoa;False;True;t1_gimpri5;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginl8nv/;1610238484;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FalseKiller45;;;[];;;;text;t2_no0dru0;False;False;[];;Any warning on whether it has questionable scenes in it?;False;False;;;;1610200473;;False;{};ginl8vz;False;t3_ktgaoa;False;True;t1_gin4t80;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginl8vz/;1610238487;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610200525;;False;{};ginlbh2;False;t3_kti9b1;False;True;t1_gim8h97;/r/anime/comments/kti9b1/demon_slayer_mugen_train_epic_moments/ginlbh2/;1610238532;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi mushydough, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610200525;moderator;False;{};ginlbhx;False;t3_kti9b1;False;False;t1_ginlbh2;/r/anime/comments/kti9b1/demon_slayer_mugen_train_epic_moments/ginlbhx/;1610238533;1;False;False;anime;t5_2qh22;;0;[]; -[];;;BigBangZebraMan;;;[];;;;text;t2_bs10y0y;False;False;[];;The courage to learn Japanese purely through monogatari;False;False;;;;1610200682;;False;{};ginljg6;False;t3_ktgaoa;False;True;t1_ginl6n8;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginljg6/;1610238684;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;Don't take the bait guys.;False;False;;;;1610200738;;False;{};ginlmd9;False;t3_ktgaoa;False;False;t1_gimw8jp;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginlmd9/;1610238740;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Raion_sao;;;[];;;;text;t2_6mgxr;False;False;[];;I just binged Re:Creator's in one night. Kept me up and glued to the screen for 24 straight episodes. Check it out.;False;False;;;;1610200746;;False;{};ginlmt0;False;t3_ktjsou;False;True;t3_ktjsou;/r/anime/comments/ktjsou/tell_me_a_nice_anime/ginlmt0/;1610238748;1;True;False;anime;t5_2qh22;;0;[];True -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;She's not a 4000 year old vampire, anything fictional has nothing to do with the real life and if it creeps you out then don't watch it.;False;False;;;;1610200797;;1610209510.0;{};ginlpf0;False;t3_ktgaoa;False;True;t1_gin2dop;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginlpf0/;1610238792;0;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;These are literally facts why is this downvoted?;False;False;;;;1610200894;;False;{};ginlugd;False;t3_ktgaoa;False;True;t1_gimtt6x;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginlugd/;1610238878;2;True;False;anime;t5_2qh22;;0;[]; -[];;;-Alan_c-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Alwacho;light;text;t2_17qi109h;False;False;[];;I myself am only at episode 8 from nisemonogatari. So i don't know...;False;False;;;;1610201106;;False;{};ginm5ga;True;t3_ktgaoa;False;True;t1_ginl8vz;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginm5ga/;1610239067;1;True;False;anime;t5_2qh22;;0;[]; -[];;;enshrowdofficial;;;[];;;;text;t2_f9j44y7;False;False;[];;eighth, ninth, and tenth here;False;False;;;;1610201156;;False;{};ginm85y;False;t3_kth6in;False;False;t1_gin74gn;/r/anime/comments/kth6in/i_compiled_a_bunch_of_shimarin_noises_into_one/ginm85y/;1610239112;6;True;False;anime;t5_2qh22;;0;[]; -[];;;WesternMarshall1955;;;[];;;;text;t2_1457ql;False;False;[];;Elaborate. From what I can see Araragi does his best to help everyone he comes across at the risk of his own life.;False;False;;;;1610201416;;False;{};ginmlnq;False;t3_ktgaoa;False;True;t1_ginhizb;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginmlnq/;1610239341;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DirtBug;;;[];;;;text;t2_bi2uu;False;False;[];;I really love how often Nisio uses his knowledge of etymology to create a starting point for many of the character's banter/revelation. Like some sort of internal logic in Monogatari where words literally have power.;False;False;;;;1610201416;;False;{};ginmlo5;False;t3_ktgaoa;False;True;t1_gin6t78;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginmlo5/;1610239341;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610202142;;False;{};ginnodo;False;t3_ktiida;False;True;t3_ktiida;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/ginnodo/;1610240022;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phineboe;;;[];;;;text;t2_81ek7n0j;False;False;[];;Megumi was just getting serious and the fight was stopped.....truly disappointing;False;False;;;;1610202754;;False;{};ginolrs;False;t3_ktjhoh;False;False;t3_ktjhoh;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/ginolrs/;1610240615;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phineboe;;;[];;;;text;t2_81ek7n0j;False;False;[];;I really hope megumi gets to beat the shit outta toudo;False;False;;;;1610202793;;False;{};ginonw4;False;t3_ktjhoh;False;True;t3_ktjhoh;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/ginonw4/;1610240660;2;True;False;anime;t5_2qh22;;0;[]; -[];;;deljogamer1200;;;[];;;;text;t2_5z3tn48o;False;False;[];;What anime is this;False;False;;;;1610203763;;False;{};ginq76u;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginq76u/;1610241585;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-Alan_c-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Alwacho;light;text;t2_17qi109h;False;False;[];;its in the title;False;False;;;;1610203870;;False;{};ginqdew;True;t3_ktgaoa;False;True;t1_ginq76u;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginqdew/;1610241688;1;True;False;anime;t5_2qh22;;0;[]; -[];;;teerre;;;[];;;;text;t2_8fwoe;False;False;[];;"I mean, there's no way to make a japanese name sound good in English. - -If can speak more than one language, it's the same as trying to speak half a phrase in one and half in another, it won't ever be good";False;False;;;;1610203954;;False;{};ginqibj;False;t3_ktjhoh;False;True;t1_gimr582;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/ginqibj/;1610241771;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-Alan_c-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Alwacho;light;text;t2_17qi109h;False;False;[];;"If you want to watch it. I recommand to watch it in this order: -https://edomonogatari.wordpress.com/2020/05/12/monogatari-anime-guide/";False;False;;;;1610203983;;False;{};ginqjzd;True;t3_ktgaoa;False;True;t1_ginq76u;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginqjzd/;1610241798;1;True;False;anime;t5_2qh22;;0;[]; -[];;;teerre;;;[];;;;text;t2_8fwoe;False;False;[];;Depends. Will she think about it or will she just mindlessly watch it? If it's the latter, sure, a lot of sparks in this one. If the former, than no, the story makes no sense. It'll just be frustrating.;False;False;;;;1610204206;;False;{};ginqx5c;False;t3_ktiida;False;True;t3_ktiida;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/ginqx5c/;1610242019;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;He even looks like him.;False;False;;;;1610204541;;False;{};ginrgo0;False;t3_ktgaoa;False;True;t1_gimv5t2;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginrgo0/;1610242348;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gpsz6629;;;[];;;;text;t2_6hnfrrvt;False;False;[];;This is the kind of shit to go down in the boys locker room;False;False;;;;1610204702;;False;{};ginrq9i;False;t3_ktjhoh;False;True;t3_ktjhoh;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/ginrq9i/;1610242510;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;Leona is a mf cutie;False;False;;;;1610205070;;False;{};ginsc9m;False;t3_kthh9g;False;True;t3_kthh9g;/r/anime/comments/kthh9g/dragon_quest_dai_no_daibouken_episode_14/ginsc9m/;1610242872;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GonvVasq;;;[];;;;text;t2_c4mzn;False;False;[];;They're different kinds of assholes though. Izaya is kind of charming and chaotic, and a bit of a badass. Shinji is just scum and slimy, plus he's a coward.;False;False;;;;1610206124;;False;{};ginu5sp;False;t3_ktgaoa;False;False;t1_gin6l99;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginu5sp/;1610243973;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;He is the biggest chad in fate/zero and probably fate/Unlimited blade works but i haven't ended it.;False;False;;;;1610206290;;False;{};ginugaw;False;t3_ktjy1n;False;True;t1_gimxsk4;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/ginugaw/;1610244149;2;True;False;anime;t5_2qh22;;0;[]; -[];;;triple_ecks;;;[];;;;text;t2_8y5i3;False;False;[];;"The wordplay in this show is so good. It really encourages you to learn more in my experience. I know it was explained by Oshino in the show, but when I actually learned the kanji for Shinobu it made me appreciate the thought put into her character even more. It's a very simple example but I was so happy when I learned it on my own. - -Her original name as a fully powered vampire was "" Kiss-Shot Acerola-Orion *Heart-Under-Blade* "". The kanji for heart is 心 and the kanji for blade is 刃. Her name is written as 忍, which is literally ""heart under blade"". It is pronounced Shinobu and it means ""to endure"" or ""put up with"" which is so perfect for her character at the time she was named. - -Again, it is such a simple elementary level example, but knowing something so surface level adds such depth to the character made me really want to dig in and understand more. I find studying so much easier when there is an element of fun involved.";False;False;;;;1610206301;;False;{};ginugyy;False;t3_ktgaoa;False;False;t1_gimyjqi;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginugyy/;1610244160;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;Everyone is talking about Leci but it's Ereh for me.;False;False;;;;1610206328;;False;{};ginuip3;False;t3_ktjy1n;False;True;t3_ktjy1n;/r/anime/comments/ktjy1n/reddit_is_tasked_with_building_the_cast_for_the/ginuip3/;1610244190;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610207291;;False;{};ginw8op;False;t3_ktgaoa;False;True;t1_gingaly;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginw8op/;1610245226;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610207312;;False;{};ginwa3m;False;t3_ktgaoa;False;True;t1_ginmlnq;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginwa3m/;1610245249;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sedewt;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Sedew;light;text;t2_3kzvlpfo;False;False;[];;"It’s a mix of airing order and LN order. Kizumonogatari happens after Bakemonogatari, Hanamonogatari after Monogatari Second Season. And Koyomimonogatari after Owari 1. - -The rest is the same. I don’t see how this spoils characters arcs, instead, this avoids spoilers in my opinion for example, Hanamonogatari is after all the monogatari events of the first second and third season. In the light novel it happens after Kabukimonogatari, that means that I’ll know the result of the events of Otorimonogatari and Koimonogatari - -This is just my opinion, I do think the original LN order may give a difference experience but it’s not really that different, only two changes as the only problem with Koyomimonogatari are the two last episodes. - -And Kizumonogatari actually is after Bakemonogatari just like the LN order. So only one relevant difference between LN and customized release order -It’s not completely wrong, LN order and this watch order are really faithful. Compare this to other series like Fate and you will realize that the watch order and VN order are completely different";False;False;;;;1610207348;;1610214128.0;{};ginwc4k;False;t3_ktgaoa;False;True;t1_gingaly;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginwc4k/;1610245281;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Sorry /u/VincentOfEngland, this comment has been removed because some spoiler tags did not include a description of the spoiler content inside the brackets. Please make sure to label all your spoilers so that other users know what is being spoiled and to ensure the visibility of the spoilers with mobile applications. - -[](#yanderebot) - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610207411;moderator;False;{};ginwgjs;False;t3_ktgaoa;False;True;t1_ginwa3m;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginwgjs/;1610245354;1;False;False;anime;t5_2qh22;;0;[]; -[];;;VincentOfEngland;;;[];;;;text;t2_alo8i;False;False;[];;"[Monogatari Series](/s ""Araragi's first major decision in the chronological narrative is taking someone's agency away from them completely because he doesn't want them to kill themselves. Kiss-Shot is left a husk of herself in an 8-year old form who now relies on Araragi to survive. It doesn't matter that she later accepts and likes this outcome, at the time Araragi did an extremely evil thing."") - -[2](/s ""This selfishness runs throughout Monogatari where Araragi will consistently put himself in danger because he believes that his course of action is morally righteous even at the cost of other's personal agency. This strong sense of justice seems to run through the Araragi family, yet each time it's framed as an understanding that's immature and fragile and that flawed ideology is what leads to a lot of the conflict in the show - even the creation of Ougi."") - -[3](/s ""The main lesson the show tries to hammer in early on is that apparitions are a personal problem that only you can solve, and Araragi directly involving himself in those problems simply subverts them instead of solving the root cause."") - -[4](/s ""A great example is this is dealing with Nadeko. Araragi constantly tries to go and reason with her to no avail, getting almost-killed every time in the process. In desperation, Senjougahara turns to Kaiki for help. Senjougahara admits that if Araragi knew Kaiki was in the area, he'd stop at nothing to try and get him to leave again - especially if he was trying to help Nadeko. But this black and white morality is so flawed. "") - -[5](/s ""Why is Nadeko worthy of his forgiveness and given a chance at redemption when she tried to murder Araragi and Shinobu? Whereas Kaiki is seen as a great evil that can only cause more problems, even though Kaiki never directly caused problems but rather capitalized on problems that already existed. Hanekawa literally burns down buildings and hospitalizes her parents, yet is worthy of forgiveness."") - -[6](/s ""This is because of Araragi's flawed view of justice directly contradicts the morally-grey reality of Monogatari. Nadeko is a ""good"" person, Kaiki is a ""bad"" person. As Araragi begins to make more and more decisions based on his idea of justice, Ougi begins to form as a result of the contradictions and criticisms that occur in the back of Araragi's mind from these decisions. Then Ougi begins to make her moves to challenge Araragi's existing notion of justice and righteousness, which brings us to almost all the conflict within the latter half of the show."")";False;False;;;;1610207615;;False;{};ginwtzj;False;t3_ktgaoa;False;False;t1_ginmlnq;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginwtzj/;1610245590;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sedewt;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Sedew;light;text;t2_3kzvlpfo;False;False;[];;"Well, I don’t call it like that. Hanamonogatari is important and Koyomi as well for me. I enjoyed both and I consider everything important. But it’s still an exaggeration to say it doesn’t have artistic intent behind it. - -It’s like you’re not understanding that this release order was intended to be like the LN but it didn’t happen because of the delays. - -The reason I’m arguing is not because I don’t agree LN could be the best order (I have yet to see it that way) but because you said there’s no artistic intent behind it. There might be less but you’re exaggerating when the rest are intact. It’s almost like saying the people who followed the anime adaptation throughout the years watched it completely wrong";False;False;;;;1610207617;;1610208050.0;{};ginwu56;False;t3_ktgaoa;False;True;t1_ging7vz;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginwu56/;1610245593;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;So what, should I learn more Japanese first before picking the series back up?;False;False;;;;1610207740;;False;{};ginx2e0;False;t3_ktgaoa;False;True;t1_ginugyy;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginx2e0/;1610245730;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WesternMarshall1955;;;[];;;;text;t2_1457ql;False;False;[];;Umm none of those links worked for me.;False;False;;;;1610208064;;False;{};ginxo73;False;t3_ktgaoa;False;True;t1_ginwtzj;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginxo73/;1610246094;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VincentOfEngland;;;[];;;;text;t2_alo8i;False;False;[];;bot-chan, you're embarassing me in front of the other redditors.;False;False;;;;1610208102;;False;{};ginxqrc;False;t3_ktgaoa;False;True;t1_ginwgjs;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginxqrc/;1610246141;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;Aot has one really dark ED but rest is mostly hype songs or slightly sad ones.;False;False;;;;1610208229;;False;{};ginxz6d;False;t3_ktfmme;False;True;t3_ktfmme;/r/anime/comments/ktfmme/are_there_any_other_anime_besides_black_lagoon/ginxz6d/;1610246283;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VincentOfEngland;;;[];;;;text;t2_alo8i;False;False;[];;Oh, they're meant to be spoiler tags. Don't know why they don't work for you.;False;False;;;;1610208727;;False;{};ginywhr;False;t3_ktgaoa;False;True;t1_ginxo73;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginywhr/;1610246853;1;True;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;Gotta give it to monogatari fanboys to justify this kind of degeneracy.;False;False;;;;1610209244;;False;{};ginzvzd;False;t3_ktgaoa;False;False;t1_ginlpf0;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/ginzvzd/;1610247438;0;True;False;anime;t5_2qh22;;0;[]; -[];;;RIP_Hopscotch;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RiPHopscotch/animelist;light;text;t2_qblus;False;False;[];;"Ohana Matsumae from Hanasaku Iroha is probably a contender in my list for ""best character development"" throughout their story. With that being said, I think Shirase from A Place Further Than The Universe is the ""best written"" female character in something I've watched. - -Also I feel like Hina from Hinamatsuri deserves a shoutout. Although really her character doesn't develop whatsoever over the course of the series (and this refusal to mature is actually one of the funniest aspects about her character IMO), it actually makes the moments where she does develop a tiny bit and put someone else ahead of her all the more touching.";False;False;;;;1610209363;;False;{};gio0480;False;t3_ktg1zw;False;True;t3_ktg1zw;/r/anime/comments/ktg1zw/what_female_character_has_the_best_written/gio0480/;1610247583;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gst4158;;;[];;;;text;t2_bcltr;False;False;[];;The OST in this show is just so good! ✿(~_~);False;False;;;;1610209438;;False;{};gio09es;False;t3_kth6in;False;True;t3_kth6in;/r/anime/comments/kth6in/i_compiled_a_bunch_of_shimarin_noises_into_one/gio09es/;1610247679;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chamiiw4;;;[];;;;text;t2_6e682tzr;False;False;[];;I hope that when you play call of duty you don't kill anyone or else I'm gonna call the police on you. Anyways I don't even give a fuck since I don't even like lolis and even if I did it wouldn't matter, I'm underage myself. I'm just tired of seeing stupid stuff like the comment I replied to. Go on, downvote me some more, I'm gonna cry a lot when I lose fake internet points lol;False;False;;;;1610209496;;False;{};gio0dfz;False;t3_ktgaoa;False;True;t1_ginzvzd;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gio0dfz/;1610247754;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EldritchCarver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Pilomotor;light;text;t2_4epcw;False;False;[];;Define questionable. There's a panty shot literally six seconds into the first episode.;False;False;;;;1610209874;;False;{};gio13o4;False;t3_ktgaoa;False;False;t1_ginl8vz;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gio13o4/;1610248221;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MasterRazz;;;[];;;;text;t2_4lqipx1i;False;False;[];;Funnily enough, Yuji said his ideal type of woman was Jennifer Lawrence so Toudou would probably like his answer.;False;False;;;;1610209886;;False;{};gio14hm;False;t3_ktjhoh;False;True;t3_ktjhoh;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/gio14hm/;1610248236;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WesternMarshall1955;;;[];;;;text;t2_1457ql;False;False;[];;"Yeah idk, it says it has an ""unknown url scheme"" if that provides any hints on fixing it. I'm not very techy myself so I don't really know how one would resolve this issue.";False;False;;;;1610209975;;False;{};gio1api;False;t3_ktgaoa;False;True;t1_ginywhr;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gio1api/;1610248339;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Laconic_S;;;[];;;;text;t2_14zbqd;False;False;[];;And just like that, in 7 minutes and 25 seconds, my soul was healed.;False;False;;;;1610212023;;False;{};gio5and;False;t3_kth6in;False;True;t3_kth6in;/r/anime/comments/kth6in/i_compiled_a_bunch_of_shimarin_noises_into_one/gio5and/;1610250817;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wizard926e;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_8ijxt61;False;False;[];;Idk but we both got downvoted sooooo I think the people don't know what they do or don't agree with;False;False;;;;1610212453;;False;{};gio64x8;False;t3_ktgaoa;False;True;t1_ginlugd;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gio64x8/;1610251332;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Meem0;;MAL;[];;http://myanimelist.net/animelist/Meem0;dark;text;t2_4olst;False;False;[];;"So is that your metric - whether the character doing bad things is portrayed as a good person? - -Games about war like Call of Duty, shows about drug dealing like Breaking Bad or Narcos, heists, vigilante justice, torture... You always have to run through an analysis like that to question if the behaviour is being glorified or not, and if it is, then the piece of media is therefore""problematic""? Must be exhausting.";False;False;;;;1610212470;;False;{};gio662o;False;t3_ktgaoa;False;True;t1_ginegio;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gio662o/;1610251351;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aadi-K;;;[];;;;text;t2_4klu6o3e;False;False;[];;Alright, fair enough;False;False;;;;1610212669;;False;{};gio6jmv;False;t3_kti8va;False;False;t1_gimcfe2;/r/anime/comments/kti8va/are_there_any_isekai_anime_that_are_complete_out/gio6jmv/;1610251583;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aadi-K;;;[];;;;text;t2_4klu6o3e;False;False;[];;Alright thanks, I was really confused for a second there;False;False;;;;1610212746;;False;{};gio6p07;False;t3_kti9b1;False;True;t1_gimgjvj;/r/anime/comments/kti9b1/demon_slayer_mugen_train_epic_moments/gio6p07/;1610251673;2;True;False;anime;t5_2qh22;;0;[]; -[];;;death556;;;[];;;;text;t2_y24tf;False;False;[];;An absolute banger;False;False;;;;1610212835;;False;{};gio6v4d;False;t3_ktiida;False;True;t1_gim9g5j;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gio6v4d/;1610251776;2;True;False;anime;t5_2qh22;;0;[]; -[];;;death556;;;[];;;;text;t2_y24tf;False;False;[];;Sword art online is pretty much complete.;False;False;;;;1610212912;;False;{};gio70fn;False;t3_kti8va;False;False;t3_kti8va;/r/anime/comments/kti8va/are_there_any_isekai_anime_that_are_complete_out/gio70fn/;1610251863;1;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;Hey so, is this kinda stuff just accepted around here? I don't get it. It's impossible for a western show to ever pull something like this. How does this work?;False;False;;;;1610213074;;False;{};gio7c2p;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gio7c2p/;1610252064;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;"No problem, these videos are bad clickbait. They're designed for you to watch thinking ""Maybe it has new footage?""";False;False;;;;1610213281;;False;{};gio7qtc;False;t3_kti9b1;False;True;t1_gio6p07;/r/anime/comments/kti9b1/demon_slayer_mugen_train_epic_moments/gio7qtc/;1610252315;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yoh1612;;;[];;;;text;t2_ger9z;False;False;[];;Oi Yamero;False;False;;;;1610213422;;False;{};gio80tv;False;t3_kth6in;False;True;t3_kth6in;/r/anime/comments/kth6in/i_compiled_a_bunch_of_shimarin_noises_into_one/gio80tv/;1610252486;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> It’s almost like saying the people who followed the anime adaptation throughout the years watched it completely wrong - -Even on the Blu Rays it's resorted in Novel Order because Shaft never *wanted* to create any differing airing order and also did not make any changes in the anime to reflect a different order";False;False;;;;1610213703;;False;{};gio8kj1;False;t3_ktgaoa;False;True;t1_ginwu56;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gio8kj1/;1610252812;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> that means that I’ll now the result of the events of Otorimonogatari and Koimonogatari - -yeah but it spoils the arcs for several characters as we see their last act of character growth and then the middle";False;False;;;;1610213769;;False;{};gio8p63;False;t3_ktgaoa;False;True;t1_ginwc4k;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gio8p63/;1610252897;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WesternMarshall1955;;;[];;;;text;t2_1457ql;False;False;[];;"My metric of what? - -The monogatari series has some really creepy and cringy moments that involve paedophilia or incest being portrayed as funny or for fan service. I think it's weird that weebs always come to the defence of these parts instead of looking at them for what they are. You can be critical of a show you enjoy, you don't need to defend the damn worst parts of it.";False;False;;;;1610214460;;False;{};gioa2kq;False;t3_ktgaoa;False;False;t1_gio662o;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gioa2kq/;1610253725;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;FalseKiller45;;;[];;;;text;t2_no0dru0;False;False;[];;That's basically what I meant, is it a main part of the story or is it enjoyable despite that?;False;False;;;;1610214815;;False;{};gioas5v;False;t3_ktgaoa;False;False;t1_gio13o4;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gioas5v/;1610254140;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xkrowcitats;;;[];;;;text;t2_6fpg7;False;False;[];;Hell yeah;False;False;;;;1610214984;;False;{};giob49r;False;t3_ktiida;False;True;t1_gimhmnf;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/giob49r/;1610254348;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Clean-Parsley-4667;;;[];;;;text;t2_9ppnzj8e;False;False;[];;"> Translated naturally: Let's study Japanese at the library on Thursday. - -This is not translated naturally, this is translated incompetently. A natural translation would be ""Next Thursday, why don't we go to the library, study Japanese there?"" -What your example does is it takes ideas expressed in a different language and mindlessly slaps the ""grammatically correct"" sentence order on it, rewriting the sentence into a vaguely related fanfiction in the process. Grammatical pedanticism like that is the exact opposite of natural speech, people don't naturally check their conversations to comply with Merriam-Webster, they say things as they come to mind. -This is something especially bad for anime subs because the audience can hear the audio - how the VA punctuates their speech, how the speech is linked to the visuals, etc. It's how you end with the embarrassments of subtitles such as Re:Zero's -audio: ""Rem... (dramatic pause, scene transition) ...Who's that?"" -subs: ""Who's Rem?"" - -English is actually a very flexible language, so any time a translator starts talking about *it's too different* they're just hiding their professional inadequacy.";False;False;;;;1610215008;;False;{};giob622;False;t3_ktgaoa;False;False;t1_gimw6x1;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/giob622/;1610254378;4;False;False;anime;t5_2qh22;;0;[]; -[];;;MasterpieceSafe6558;;;[];;;;text;t2_98s76hoy;False;False;[];;which one ed 1 or 2;False;False;;;;1610215775;;False;{};giocpre;True;t3_ktfmme;False;True;t1_ginxz6d;/r/anime/comments/ktfmme/are_there_any_other_anime_besides_black_lagoon/giocpre/;1610255288;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;Ed3 or s2ed;False;False;;;;1610215895;;False;{};giocyer;False;t3_ktfmme;False;True;t1_giocpre;/r/anime/comments/ktfmme/are_there_any_other_anime_besides_black_lagoon/giocyer/;1610255426;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MasterAdventZero;;;[];;;;text;t2_d3qbcic;False;False;[];;Ya gotta love Todo. He's a real man.;False;False;;;;1610216113;;False;{};giodedi;False;t3_ktjhoh;False;True;t3_ktjhoh;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/giodedi/;1610255689;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HagridPotter;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Barusu/animelist;light;text;t2_2fguh6w;False;False;[];;"Honestly I'm glad to see that you're willing to criticize the show, it's good to be objective regarding the problems of things that you like. A lot of fans aren't like you though, and often argue that the sexualization has thematic relevance or whatnot. It's kind of depressing to see so many people try to make excuses for what is just pedophilia. - -Though by arguing this on r/anime I was sort of destined for failure lol. A lot of people here are used to anime sexualizing minors so it doesn't faze them, even though it's still very much wrong. I guess nothing can be done about that.";False;False;;;;1610216744;;1610224356.0;{};gioeovj;False;t3_ktgaoa;False;True;t1_ginhxyj;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gioeovj/;1610256475;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EldritchCarver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Pilomotor;light;text;t2_4epcw;False;False;[];;That panty shot is absolutely integral to the plot, and there is quite a bit of fanservice throughout the series, including stuff with characters who look underage, but it's an enjoyable story if the questionable scenes aren't a dealbreaker for you.;False;False;;;;1610216865;;False;{};gioexv5;False;t3_ktgaoa;False;True;t1_gioas5v;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gioexv5/;1610256623;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Doctor_Rambo;;;[];;;;text;t2_59ksq2vi;False;False;[];;"The fanservice in monogatari can truly be overwhelming at some points. However, the show is incredibly enjoyable despite that. If you can withstand them, it's one of the best rides you can have. - -I'm saying this as a first time watcher that isn't even halfway through the entire thing";False;False;;;;1610216871;;False;{};gioeya9;False;t3_ktgaoa;False;False;t1_gioas5v;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gioeya9/;1610256632;2;True;False;anime;t5_2qh22;;0;[]; -[];;;capttaain;;;[];;;;text;t2_pzne71r;False;False;[];;Nobody who is a ass man can be bad;False;False;;;;1610218802;;False;{};gioizon;False;t3_ktjhoh;False;True;t3_ktjhoh;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/gioizon/;1610259206;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tircle;;;[];;;;text;t2_ktt80;False;False;[];;No I’m going by release order but I saw that a few lists did recommend watching Kizu after Bake.;False;False;;;;1610219547;;False;{};giokkpy;False;t3_ktgaoa;False;True;t1_gind13d;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/giokkpy/;1610260091;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Top_Kangaroo5503;;;[];;;;text;t2_9o6iqzxx;False;False;[];;"I miss this series. - -I kinda wish it went further past where it ended.";False;False;;;;1610220011;;False;{};giolk50;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/giolk50/;1610260638;1;True;False;anime;t5_2qh22;;0;[]; -[];;;assvision2020;;;[];;;;text;t2_5holl3xo;False;False;[];;'The courage to be a lazy bum' hits different these days;False;False;;;;1610220163;;False;{};giolvne;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/giolvne/;1610260829;2;True;False;anime;t5_2qh22;;0;[]; -[];;;YgJb1691;;;[];;;;text;t2_k8dbo5z;False;False;[];;You know the novel for Kizu came out second though right? The movies only came out so late because it kept getting delayed. At the least I’d strongly recommend watching before second season.;False;False;;;;1610220767;;False;{};gion6h7;False;t3_ktgaoa;False;False;t1_giokkpy;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gion6h7/;1610261602;5;True;False;anime;t5_2qh22;;0;[]; -[];;;frankIIe;;;[];;;;text;t2_elcqp;False;False;[];;I really like the monogatari anime but I really feel like my bad understanding of japanese gets in the way. Will get back to it in a few years.;False;False;;;;1610221303;;False;{};gioob5c;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gioob5c/;1610262235;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Trobis;;;[];;;;text;t2_qjlnr;False;False;[];;Trust me, it's a blessing.;False;False;;;;1610223664;;False;{};giot6k9;False;t3_ktgaoa;False;True;t1_ginaolv;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/giot6k9/;1610264939;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AzerFraze;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/AzerFraze/;light;text;t2_fogzf;False;False;[];;the courage to not be on /r/all!;False;False;;;;1610223741;;False;{};giotc6p;False;t3_ktgaoa;False;False;t1_ginaolv;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/giotc6p/;1610265021;7;True;False;anime;t5_2qh22;;0;[]; -[];;;triple_ecks;;;[];;;;text;t2_8y5i3;False;False;[];;No, I would just say that if you want to learn Japanese you can use the series as motivation and a source to learn new things from. Wanting to understand the things that I watch in a better way has really helped me maintain my study habits. Just my experience;False;False;;;;1610224131;;False;{};giou4gf;False;t3_ktgaoa;False;True;t1_ginx2e0;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/giou4gf/;1610265439;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Eragonnogare;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/Eragon/;light;text;t2_cs0a4f;False;False;[];;Funny you mention that lol;False;False;;;;1610224620;;False;{};giov4uo;False;t3_ktjhoh;False;False;t1_gio14hm;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/giov4uo/;1610265999;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Jagacin;;;[];;;;text;t2_13054n;False;False;[];;I always loved these two's interactions. They had such good chemistry together on screen, and the dialogue between them had some of the best moments of the entire series.;False;False;;;;1610225296;;False;{};giowj6l;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/giowj6l/;1610266754;2;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;"Ok everyone jokes around about it but was I the only person super weirded out. It felt random and like it came out of nowhere - -I dont know why I feel like I need an explanation but I certainly believe there is probably none at all - -Everyones so chill with this stuff cause people just brush it by like its nothing and im just like, wtf?";False;False;;;;1610229351;;False;{};gip4uvo;False;t3_ktgaoa;False;False;t1_gimy3z7;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gip4uvo/;1610271332;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610229695;moderator;False;{};gip5j9n;False;t3_ktgaoa;False;True;t1_gimrqg0;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gip5j9n/;1610271705;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Barangat;;;[];;;;text;t2_1399lj;False;False;[];;"I would love to see the script for the VA - -&#x200B; - -""Ok, do the comfy thing, now the eating thing, you know what""";False;False;;;;1610230208;;False;{};gip6kqo;False;t3_kth6in;False;True;t3_kth6in;/r/anime/comments/kth6in/i_compiled_a_bunch_of_shimarin_noises_into_one/gip6kqo/;1610272270;1;True;False;anime;t5_2qh22;;0;[]; -[];;;humansbrainshrink;;;[];;;;text;t2_90w546o6;False;False;[];;I had to recently write an essay on the importance of bravery/courage. Watching this just made me realise that there were loads of things I can still write on. The bigger irony is that I am literally watching Monogatari SS right now. I'm redoing my homework instead of watching anime because of you.;False;False;;;;1610231367;;False;{};gip8xcp;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gip8xcp/;1610273567;2;True;False;anime;t5_2qh22;;0;[]; -[];;;-Alan_c-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Alwacho;light;text;t2_17qi109h;False;False;[];;"I'm sorry lol. - -( And I'm glad that i could help or something.)";False;False;;;;1610231609;;False;{};gip9f4u;True;t3_ktgaoa;False;True;t1_gip8xcp;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gip9f4u/;1610273830;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lucifer_Hirsch;;;[];;;;text;t2_8h63b;False;False;[];;Oh fuck, you're right! I didn't even think about that, on point with the removal, good job.;False;False;;;;1610232011;;False;{};gipa80c;False;t3_ktgaoa;False;False;t1_gip5j9n;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gipa80c/;1610274267;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nuuance;;;[];;;;text;t2_80w3m;False;False;[];;The courage to take out the headphone jack;False;False;;;;1610232020;;False;{};gipa8n4;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gipa8n4/;1610274276;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-Alan_c-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Alwacho;light;text;t2_17qi109h;False;False;[];;You forgot an -ar in araragi.;False;False;;;;1610232702;;False;{};gipblmy;True;t3_ktgaoa;False;False;t1_gimviay;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gipblmy/;1610275017;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Quebec120;;;[];;;;text;t2_2iddjr1c;False;False;[];;"I completely disagree. I quite literally wrote it how I would speak. I didn't just re-order it, I kept the original intent and translated it to how I personally would say the same sentence. - -Maybe this comes down to the translator themselves - experience, dialect, etc. Honestly, your example of a ""natural translation"" just sounds... wrong. I can't put my finger on it - it doesn't sound like a real person to me. - -Edit: I'm not entirely sure, as I am new to Japanese, but I also think you partly changed the sentence. I especially chose the ましょう form over ましょうか or ませんか. This means my sentence is more like a suggestion rather than a direct question. I guess that could be part of your point - despite not using a ""question form"", translated ""naturally"" would make it a question. Again, I'd disagree, but it goes to show why translations can change so much based on who does the translation.";False;False;;;;1610234291;;1610234748.0;{};gipepf6;False;t3_ktgaoa;False;True;t1_giob622;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gipepf6/;1610276690;1;True;False;anime;t5_2qh22;;0;[]; -[];;;humansbrainshrink;;;[];;;;text;t2_90w546o6;False;False;[];;Eh, it only took me 10 minutes.;False;False;;;;1610234483;;False;{};gipf2og;False;t3_ktgaoa;False;True;t1_gip9f4u;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gipf2og/;1610276889;1;True;False;anime;t5_2qh22;;0;[]; -[];;;abeaba;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/abeaba/;light;text;t2_nvezq;False;False;[];;Virgin Todoroki vs Chad Flazzard;False;False;;;;1610234497;;False;{};gipf3oo;False;t3_kthh9g;False;True;t1_gin6ugl;/r/anime/comments/kthh9g/dragon_quest_dai_no_daibouken_episode_14/gipf3oo/;1610276904;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Quebec120;;;[];;;;text;t2_2iddjr1c;False;False;[];;"To be honest, it's probably because I've partially become desensitised to it. The Hachikuji sexual assaults will never not be weird for me, but other fanservice in anime doesn't really affect me. The Monogatati series is definitely my favourite anime, but I still skip whenever Arraragi goes to grope Hachikuji. - -In the clip above, I kinda felt like it 'ruined' the scene. If I were to show it to someone else, I'd stop before the panty-peaking. If I were to watch it at home, I'd be weirded out by it, but there's not much I can really do but, at most, skip it.";False;False;;;;1610235042;;False;{};gipg4yn;False;t3_ktgaoa;False;True;t1_gip4uvo;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gipg4yn/;1610277468;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Quebec120;;;[];;;;text;t2_2iddjr1c;False;False;[];;I fwubbed it.;False;False;;;;1610235127;;False;{};gipganf;False;t3_ktgaoa;False;False;t1_gipblmy;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gipganf/;1610277553;7;True;False;anime;t5_2qh22;;0;[]; -[];;;-Alan_c-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Alwacho;light;text;t2_17qi109h;False;False;[];;No way, you did that on purpose!;False;False;;;;1610235179;;1610238240.0;{};gipge5u;True;t3_ktgaoa;False;False;t1_gipganf;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gipge5u/;1610277607;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Quebec120;;;[];;;;text;t2_2iddjr1c;False;False;[];;I fwuwwed it :3;False;False;;;;1610235233;;False;{};gipghvn;False;t3_ktgaoa;False;False;t1_gipge5u;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gipghvn/;1610277663;6;True;False;anime;t5_2qh22;;0;[]; -[];;;-Alan_c-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Alwacho;light;text;t2_17qi109h;False;False;[];;It wasn't on purpose?!;False;False;;;;1610236058;;False;{};gipi25f;True;t3_ktgaoa;False;False;t1_gipghvn;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gipi25f/;1610278516;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Crashkeiran;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_dbp1hi3;False;False;[];;I made a list from what I remember I've watched;False;False;;;;1610236288;;False;{};gipihpn;True;t3_ktkal4;False;True;t1_gimtfu2;/r/anime/comments/ktkal4/i_need_something_new_to_watch/gipihpn/;1610278745;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;"Yeah I guess your right. I think im trying to find sense were there is none. - -Honestly I know a lot of people try to find meanings behind the fanservice of monogatari series but I dont kbow its probably just there. Its a weird thing (they probably add to give flavor or something) in a gold series that we all have to ignore or live with. - -Cool that you jump her scenes since shes like underage and stuff";False;False;;;;1610237003;;False;{};gipjvdy;False;t3_ktgaoa;False;True;t1_gipg4yn;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gipjvdy/;1610279498;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MinorCarbonLifeForm;;;[];;;;text;t2_5fwox91r;False;False;[];;What a fantastic shonen entrance 😂 so typical but somehow still soooo good!;False;False;;;;1610240812;;False;{};gipr833;False;t3_kthh9g;False;True;t3_kthh9g;/r/anime/comments/kthh9g/dragon_quest_dai_no_daibouken_episode_14/gipr833/;1610283649;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ProtoTypeScylla;;;[];;;;text;t2_16lprk;False;False;[];;I checked it out, pretty good but yuji sounds off, I’ve heard he gets into the role but I think it’s his first anime(he’s a cartoon VA so not a huge leap);False;False;;;;1610244170;;False;{};gipxhu6;False;t3_ktjhoh;False;True;t1_ginf4n1;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/gipxhu6/;1610287488;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crispy_doggo1;;;[];;;;text;t2_2nw4rbfu;False;False;[];;How is this a spoiler? It’s not a significant plot point and it doesn’t show Fushiguro’s answer or Toudou’s reaction.;False;False;;;;1610244408;;False;{};gipxy5p;False;t3_ktjhoh;False;True;t1_gims6cw;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/gipxy5p/;1610287773;2;True;False;anime;t5_2qh22;;0;[];True -[];;;God1is1love;;;[];;;;text;t2_49sqgiwk;False;False;[];;The fact that he asks this in the first place was a twist that the characters never saw coming.;False;False;;;;1610246191;;False;{};giq19uw;False;t3_ktjhoh;False;True;t1_gipxy5p;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/giq19uw/;1610289940;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Keaton-_;;;[];;;;text;t2_8kolvzad;False;False;[];;Omg sorry it was late and I didn’t put it correctly;False;False;;;;1610246568;;False;{};giq1zgo;True;t3_ktjsvw;False;False;t1_gimhl7l;/r/anime/comments/ktjsvw/animes_where_the_mc_has_a_girl_thats_completely/giq1zgo/;1610290630;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Poli_Sci_27;;;[];;;;text;t2_3vook9u8;False;False;[];;Don’t worry about it.;False;False;;;;1610246862;;False;{};giq2imz;False;t3_ktjsvw;False;True;t1_giq1zgo;/r/anime/comments/ktjsvw/animes_where_the_mc_has_a_girl_thats_completely/giq2imz/;1610290976;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DMking;;;[];;;;text;t2_8buww;False;False;[];;He just needs to be in it by episode 12;False;False;;;;1610247564;;False;{};giq3rxv;False;t3_ktjhoh;False;True;t1_gipxhu6;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/giq3rxv/;1610291788;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DMking;;;[];;;;text;t2_8buww;False;False;[];;You'll see him serious soon;False;False;;;;1610247950;;False;{};giq4gtd;False;t3_ktjhoh;False;True;t1_ginolrs;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/giq4gtd/;1610292251;2;True;False;anime;t5_2qh22;;0;[]; -[];;;feartheslayer;;;[];;;;text;t2_9qxx89ts;False;False;[];;That is right but if you don't want to be spoiled don't watch videos with content from the episodes you are watching duh;False;False;;;;1610250585;;False;{};giq98vt;False;t3_ktjhoh;False;True;t1_ginfphr;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/giq98vt/;1610295515;2;True;False;anime;t5_2qh22;;0;[]; -[];;;God1is1love;;;[];;;;text;t2_49sqgiwk;False;False;[];;Don't they have spoiler tags in this sub? And besides the video is already playing by the time I come to it. Yall can disagree all yall want all I'm saying is the op didn't waste any time to post a video that was just released. Yall just salty because for the most part I don't care about spoilers but a lot of people do.;False;False;;;;1610252102;;False;{};giqbya5;False;t3_ktjhoh;False;True;t1_giq98vt;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/giqbya5/;1610297390;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610253866;;False;{};giqf1kf;False;t3_ktgaoa;False;True;t1_gimnuwb;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/giqf1kf/;1610299699;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sebasu;;MAL;[];;https://myanimelist.net/profile/Sebasu_tan;dark;text;t2_b6y1a;False;False;[];;I was actually surprised no one had when I checked the comments. I guess it is a bit of a classic at this point.;False;False;;;;1610254476;;False;{};giqg105;False;t3_ktgaoa;False;True;t1_ginjc5x;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/giqg105/;1610300420;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BakaSamasenpai;;;[];;;;text;t2_4uw1ni2m;False;False;[];;this is by far one of my favorite scenes in all of anime.;False;False;;;;1610263956;;False;{};giqsq0p;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/giqsq0p/;1610309845;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"It's because in the end it's just dental care and shows that sexy is not about what you do, but how you do it. As for narrative reasons, it's his gate keeping of adolescence towards Karen who herself is not yet capable of understanding herself fully as a sexual being. - -And earlier in the season the audience gets called out for liking it. Also, Nisemonogatari is the sexually charged part of this coming of age story, after his big release in Nise the general horniness of Araragi gets tuned down a few notches. - -It's also thematically relevant that he treats the lolis as equal and like his age but has more of a subordinate approach towards girls his age (physically, ignoring e.g. Hachikuji being more mature than him)";False;False;;;;1610264936;;False;{};giqtsss;False;t3_ktgaoa;False;True;t1_gip4uvo;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/giqtsss/;1610310648;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;The rewatches and relevant posts on r/araragi together with the wiki usually explain all the puns there are, there are a couple very helpful contributors in the rewatch;False;False;;;;1610265252;;False;{};giqu519;False;t3_ktgaoa;False;True;t1_ginx2e0;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/giqu519/;1610310896;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;They made more FMP after 7 years, never say never;False;False;;;;1610266217;;False;{};giqv671;False;t3_ktgaoa;False;True;t1_gin6322;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/giqv671/;1610311645;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Atheist-Gods;;;[];;;;text;t2_bv2s6;False;False;[];;One of whom has the same VA as Karen.;False;False;;;;1610266573;;False;{};giqvjee;False;t3_ktgaoa;False;True;t1_ginjb2w;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/giqvjee/;1610311881;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Denpants;;;[];;;;text;t2_ry9v0w1;False;False;[];;"Pokemon, yu-gi-oh, dragon ball z - - -If its so popular people don't know its anime, its mainstream";False;False;;;;1610286542;;False;{};girg9pb;False;t3_kte0mf;False;True;t3_kte0mf;/r/anime/comments/kte0mf/what_are_some_borderline_mainstream_anime/girg9pb/;1610326116;1;True;False;anime;t5_2qh22;;0;[]; -[];;;D1v1s10n;;MAL;[];;http://myanimelist.net/profile/Cameron6109;dark;text;t2_q3dpq;False;False;[];;Animelab has Bakemonogatari, Crunchyroll has the rest. Koyomimonogatari seems to be missing though.;False;False;;;;1610287192;;False;{};girh4en;False;t3_ktgaoa;False;False;t1_gimviay;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/girh4en/;1610326719;1;True;False;anime;t5_2qh22;;0;[]; -[];;;weird_name_but_ok;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/CHXRL3Z;light;text;t2_5wwmxejt;False;False;[];;You are absolutely right, but that's not what I was asking;False;False;;;;1610288011;;False;{};giri937;True;t3_kte0mf;False;True;t1_girg9pb;/r/anime/comments/kte0mf/what_are_some_borderline_mainstream_anime/giri937/;1610327427;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Denpants;;;[];;;;text;t2_ry9v0w1;False;False;[];;"Probably Attack on Titan, One Punch Man, and and Fullmetal Alchemist. - -They are known as anime, but are also known in the non anime watching crowd. - - -Shows like No game no life and SAO are popular but will never be mainstream unless the mainstream culture changes, they are seen as ""weeb""";False;False;;;;1610288228;;False;{};girik54;False;t3_kte0mf;False;False;t1_giri937;/r/anime/comments/kte0mf/what_are_some_borderline_mainstream_anime/girik54/;1610327612;1;True;False;anime;t5_2qh22;;0;[]; -[];;;weird_name_but_ok;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/CHXRL3Z;light;text;t2_5wwmxejt;False;False;[];;What I was asking are shows that are NOT mainstream but are VERY popular in the anime community. One good example that someone gave was Re:Zero. Sorry for the misunderstanding;False;False;;;;1610288539;;False;{};girj0g5;True;t3_kte0mf;False;True;t1_girik54;/r/anime/comments/kte0mf/what_are_some_borderline_mainstream_anime/girj0g5/;1610327899;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Quebec120;;;[];;;;text;t2_2iddjr1c;False;False;[];;"Really? I know Bakemonogatari is on AnimeLab, but I can only find Nisemonogatari and Owarimonogatari on Crunchyroll. I looked through their whole catalogue the other day and I swear they weren't on there... - -Edit: Just checked. They don't appear on my PS4 but they do on the actual site. Weird. I still can't watch em on my telly, but at least its still there legally";False;False;;;;1610289802;;False;{};girkwav;False;t3_ktgaoa;False;True;t1_girh4en;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/girkwav/;1610329101;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mechabeastchild;;;[];;;;text;t2_333mmim2;False;False;[];;Yeah he said he’s excited for that episode, can’t wait to see what he does;False;False;;;;1610330885;;False;{};gittva1;True;t3_ktjhoh;False;True;t1_giq3rxv;/r/anime/comments/ktjhoh/toudo_ask_megumi_what_kinda_women_is_your_type/gittva1/;1610377216;1;True;False;anime;t5_2qh22;;0;[]; -[];;;D3linax;;;[];;;;text;t2_ryu0m7u;False;False;[];;The courage to be extremely racist towards a race infront of people from that race. Make that sound positive;False;False;;;;1610331627;;False;{};gitvfay;False;t3_ktgaoa;False;False;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gitvfay/;1610378281;1;True;False;anime;t5_2qh22;;0;[]; -[];;;senpaiking19;;;[];;;;text;t2_4vg5i8gw;False;False;[];;Nice! I didn't expect that.;False;False;;;;1610369732;;False;{};givirnf;False;t3_ktgaoa;False;True;t3_ktgaoa;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/givirnf/;1610416217;2;True;False;anime;t5_2qh22;;0;[]; -[];;;danny_b87;;;[];;;;text;t2_8uam1;False;False;[];;Lol dude made of fire and ice and ppl keep using fire and ice spells against him... /facepalm. Is the zap or similar lightning spells supposed to be more advanced or something?;False;False;;;;1610381997;;False;{};giw9rae;False;t3_kthh9g;False;True;t3_kthh9g;/r/anime/comments/kthh9g/dragon_quest_dai_no_daibouken_episode_14/giw9rae/;1610431226;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jeloren;;;[];;;;text;t2_5ir59bmz;False;False;[];;I've always thought Flazzard was nothing but a boring brat, but there are a lot of cool things that happen in the arc with the other characters so I'm still looking forward to it! It was nice to finally see Leona again and it's cute how she thinks about Dai and talks about him as often as he does about her. I also love the part with Dai accidentally setting off all the flares. Someone really should have explained the properties of gunpowder to him beforehand. XD;False;False;;;;1610399845;;False;{};gixewt1;False;t3_kthh9g;False;True;t3_kthh9g;/r/anime/comments/kthh9g/dragon_quest_dai_no_daibouken_episode_14/gixewt1/;1610453722;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jeloren;;;[];;;;text;t2_5ir59bmz;False;False;[];;Only the hero can use lightning spells and Dai still isn't able to use it on his own yet, so even if it was effective against Flazzard they don't have any way of using it unless Popp and Dai use their team up technique again.;False;False;;;;1610399993;;False;{};gixf8g1;False;t3_kthh9g;False;True;t1_giw9rae;/r/anime/comments/kthh9g/dragon_quest_dai_no_daibouken_episode_14/gixf8g1/;1610453913;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Totaliss;;;[];;;;text;t2_16rig3;False;False;[];;if the first anime I ever watched was Akudama drive I'd probably never want to watch anime again.;False;False;;;;1610597933;;False;{};gj714jd;False;t3_ktiida;False;True;t3_ktiida;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gj714jd/;1610678872;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yuvan18;;;[];;;;text;t2_64jrih4h;False;False;[];;aww why i mean it's a good show;False;False;;;;1610610504;;False;{};gj7i0yy;True;t3_ktiida;False;True;t1_gj714jd;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gj7i0yy/;1610689849;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Totaliss;;;[];;;;text;t2_16rig3;False;False;[];;"Its a little ""out there"" even for anime, with some pretty ridiculous moments that I could see would turn people off from the show if they're not familiar with anime.";False;False;;;;1610641420;;False;{};gj8ouvk;False;t3_ktiida;False;True;t1_gj7i0yy;/r/anime/comments/ktiida/is_akudama_drive_a_good_first_anime/gj8ouvk/;1610714633;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jackbeecroft;;;[];;;;text;t2_cav9g;False;False;[];;Nah man Bakemonogatari second season (which includes hanamonogatari) and tsukimonogatari are also on crunchyroll;False;False;;;;1610708525;;False;{};gjbzoka;False;t3_ktgaoa;False;True;t1_gin5k2g;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gjbzoka/;1610791215;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Quebec120;;;[];;;;text;t2_2iddjr1c;False;False;[];;"Yeah, another user informed me. Turns out the PS4 app for Crunchyroll doesn't display the full catalogue unless you're signed in *and* turn on ""show mature content"" on the browser version. So many fucking shows have been unaccesible to me because I don't watch anime on my desktop PC. It's ridiculous.";False;False;;;;1610709427;;False;{};gjc0lzk;False;t3_ktgaoa;False;True;t1_gjbzoka;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gjc0lzk/;1610791737;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jackbeecroft;;;[];;;;text;t2_cav9g;False;False;[];;Bruh.;False;False;;;;1610711228;;False;{};gjc2iog;False;t3_ktgaoa;False;True;t1_gjc0lzk;/r/anime/comments/ktgaoa/the_courage_to_nisemonogatari/gjc2iog/;1610792860;1;True;False;anime;t5_2qh22;;0;[]; -[];;;reddadz;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MysticEyes/;light;text;t2_oek5m;False;True;[];;"This was a pretty strong week of premieres that gets scarier once you realize only half the shows have been released so far. Also, Noblesse normally wouldn’t make it on the list but I extended the airing period to include it since the Fall Week 13 chart came out the same day as the finale ~~definitely not because we didn’t have enough shows~~ - -Speaking of a lack of shows, the poll ranking barely had enough available so the vote limit was dropped to 40 votes for now. Also, RAL was broken so no scores but it doesn’t means much in Week, 1 given the scores are always delayed. - -Also the karma/comment ratio is gone since I tried to minimize clutter in this slight redesign. - ---- - -[Full List on Animetrics](https://animetrics.co/anime/karma-rankings) - -Previous Charts in the [wiki](https://www.reddit.com/r/anime/wiki/recommendations) & [here](https://animetrics.co/resources/rwc) - ---- - -# [FAQ] - -**Q: What is this chart?** - -A: It’s a glorified popularity contest, not a measure of show quality. It ranks the karma (total upvotes minus total downvotes) of each show's episode discussion to get an idea of ~~the most *passionate* fanbases on Reddit~~ the subreddit’s general taste. - -**Q: How do I vote?** - -A: Just upvote the episode’s discussion thread. To vote in the episode polls: [Step 1](https://i.imgur.com/0067Wpn.png) then [Step 2](https://i.imgur.com/FEeH2ME.png). - -**Q: How are the numbers calculated?** - -A: The karma for the anime is taken on the second day after the discussion thread is posted. That way, shows earlier in the week basically get the same amount of time to gather karma as those later in the week. - -**Q: What is [RedditAnimeList](http://www.redditanimelist.net/index.php?sort=score&order=desc&time=All&seasonal=True)?** - -A: Each week, the site scans the MyAnimeList (MAL) scores of every user on the subreddit with a MAL flair beside their names. Then it creates a database of scores separate from MAL itself.";False;False;;;;1610201107;;False;{};ginm5iz;True;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginm5iz/;1610239068;35;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;"At long last Wintermageddon has arrived. - -**Re:Zero** had a transitional episode but still picked up nearly 12000 Karma to top the Karma rankings for an incredible 37th straight time (23 from S1 and 14 from S2). It wasn’t quite Attack on Titan level, but nothing really is. If Attack on Titan Episode 5 gets even close to the Karma Total expected of it, that streak will end giving Attack on Titan the longest active streak at 16. - -**Promised Neverland** underperformed slightly compared with its lofty expectations as it “only” reached 5164 Karma after picking up 5389 Karma with its first episode back in Winter 2019. It will be interesting to see whether its Karma will go up or down from here. - -Speaking of Winter 2019 Anime, **Quintessential Quintuplets** had a monster first episode picking up 4139 Karma to double its season high from 2019. But Quints wasn’t the biggest surprise of the week. That award goes to **Yuru Camp** which received an incredible 4383 Karma. You almost never see that from a comfy, slice of life anime. It will be interesting to see how Non Non Biyori will fair? - -In a more intentional Karma War, both **Cells at Work** and **Cells at Work Code Black** released 2 days early and Black came out on top this week as it provided a chilling dystopia of its more light-hearted rival. OG Cells at Work Platelets are still best Platelets though. - -Lastly, you know it’s going to be a great season when even ongoing anime like **Black Clover** bring their A-games. Black Clover’s 2085 Karma was its highest total in almost a year and kicks off a highly anticipated arc. The same goes with One Piece which is just a few episodes away from adapting a 20000 Karma [Chapter]( https://www.reddit.com/r/OnePiece/comments/d9vxbl/one_piece_chapter_957/).";False;False;;;;1610201161;;False;{};ginm8f9;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginm8f9/;1610239116;117;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;"Nice to see re0 at the top, - -Wait, isn't aot S4 supposed to be a winter 2021 anime as well, it's not up there";False;False;;;;1610201188;;False;{};ginm9su;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginm9su/;1610239139;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CosmicPenguin_OV103;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cosmic_Penguin;light;text;t2_1ufwqhs7;False;True;[];;Yuru Camp in 3rd place!!! Higurashi getting an episode ranking winner!!!;False;False;;;;1610201193;;False;{};ginma34;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginma34/;1610239145;200;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;And so the subreddit tournament arc begins;False;False;;;;1610201209;;False;{};ginmavp;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmavp/;1610239159;151;True;False;anime;t5_2qh22;;0;[]; -[];;;sanic_de_hegehog;;MAL;[];;https://myanimelist.net/profile/sanic_de_hegehog;dark;text;t2_e028fcj;False;False;[];;Probably the only week you will find Re:Zero on top;False;False;;;;1610201263;;False;{};ginmdnx;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmdnx/;1610239208;78;True;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;There was no new ep last week. Will be in the next one again.;False;False;;;;1610201323;;False;{};ginmgvv;False;t3_ktrgan;False;False;t1_ginm9su;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmgvv/;1610239262;13;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;"What a great start for the year. Winter 2021 is fuckin stacked with quality shows. I'm watching 40+ shows this season lol. - -Yuru Camp s2 in 3rd makes me extremely happy. The atmosphere is just fricking amazing. The OP and ED are still relaxing and chill. I love this show.";False;False;;;;1610201334;;False;{};ginmhfp;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmhfp/;1610239273;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Garlicbread10;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;echidna cultist;dark;text;t2_8zn7f5o;False;False;[];;Can’t wait to see this chart after the next Re zero and aot episode;False;False;;;;1610201339;;False;{};ginmhoq;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmhoq/;1610239276;38;True;False;anime;t5_2qh22;;0;[]; -[];;;Themousen;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;iyashikei worshipper;dark;text;t2_13xlbu;False;False;[];;where did Noblesse even come from;False;False;;;;1610201361;;False;{};ginmiup;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmiup/;1610239297;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MauledCharcoal;;;[];;;;text;t2_1uu3nanq;False;False;[];;I knew this season would be huge but I didn't expect 4 shows to premier above 4k. And we're still missing some big names. I wonder how many shows we'll have above 3k in 2 weeks time once the premier boost starts to die down. I can see at least 5 or so.;False;False;;;;1610201362;;False;{};ginmivk;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmivk/;1610239297;12;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;"> This was a pretty strong week of premieres that gets scarier once you realize only half the shows have been released so far. - -It's pretty crazy that it got to 38,000 Karma despite missing Spider, Horimiya, AoT, Mushoku Tensei, Slime, Log Horrizon, Dr. Stone and Jujutsu Kaisen";False;False;;;;1610201370;;False;{};ginmjbs;False;t3_ktrgan;False;False;t1_ginm5iz;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmjbs/;1610239304;29;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;New year, new template and new shows. What a start from Re:zero and The Promised Neverland, although I expected Re:zero to break their own record but as LN readers are pointing out next episode will be the one to determine its true karma.;False;False;;;;1610201387;;False;{};ginmk53;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmk53/;1610239318;86;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"Damn r/anime has a lot of campers - -Predict Re:zero EP2 and AoT EP5 karma now";False;False;;;;1610201395;;False;{};ginmkk2;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmkk2/;1610239324;129;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Ah, understandable then;False;False;;;;1610201398;;False;{};ginmkpy;False;t3_ktrgan;False;False;t1_ginmgvv;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmkpy/;1610239326;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;The karma final numbers will still be 48 hours after the episode?;False;False;;;;1610201416;;False;{};ginmlmi;False;t3_ktrgan;False;True;t1_ginm5iz;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmlmi/;1610239340;3;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;That Higurashi episode was probably my favorite so far.;False;False;;;;1610201424;;False;{};ginmm17;False;t3_ktrgan;False;False;t1_ginma34;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmm17/;1610239347;84;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;"##Overall Karma Standings - Winter Week 1 - -|Pos.|Anime|Total Karma| -:--:|:--:|:--:| -|1|Re:ZERO -Starting Life in Another World- Season 2 Part 2|11962| -|2|The Promised Neverland Season 2|5164| -|3|Yuru Camp△ Season 2|4391| -|4|Go-toubun no Hanayome ∬|4138| -|5|Black Clover|2085| -|6|Hataraku Saibou Black|2056| -|7|Hataraku Saibou!!|1544| -|8|BEASTARS Season 2|1529| -|9|Higurashi no Naku Koro ni Gou|1255| -|10|Otherside Picnic|1210| -|11|Suppose a Kid from the Last Dungeon Boonies moved to a starter town?|911| -|12|That Time I Got Reincarnated as a Slime Season 2|827| -|13|2.43: Seiin Koukou Danshi Volley-bu|521| -|14|Umamusume: Pretty Derby Season 2|326| -|15|Tenchi Souzou Design-bu|319| -|16|Hortensia SAGA|163| -|17|Gekidol|107| -|18|LBX Girls|65| -|19|Show By Rock!! Stars!!|48| -|20|Skate-Leading Stars|47| -|21|D4DJ First Mix|44| -|22|Armor Shop for Ladies &amp; Gentlemen II|38| -|23|Cute Executive Officer|31| -|24|I★CHU|22| -|25|Osomatsu-san 3|15| -|26|Sore dake ga Neck|12| -|27|Mewkledreamy|11| -|28|Oh, Suddenly Egyptian God|6| -|29|Shadowverse|3| -|30|ABCiee Working Diary|2| - -No columns for number of episodes/average/peak karma this week for obvious reasons, a few anime are listed despite not having quite reached 48 hours such as Yuru Camp S2 and both Hataraku Saibou shows - their scores will be updated with their true 48-hour totals next week. For now I've included everything that aired up to and including Thursday this week (UK time). - -**Re:Zero S2** kicks off the karma war with **Shingeki no Kyojin: The Final Season** by immediately claiming a 12,000 point lead. Both shows will air 12 episodes this season (SnK missing week 1 and R:Z missing week 13) so the comparison by the end will be fair. Starting next week the average column will be back to provide a more fair comparison in the meantime. - -**Question of the Week**: Several big names are returning/debuting next week, where will they appear on this list?";False;False;;;;1610201459;;False;{};ginmo0u;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmo0u/;1610239380;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Labmit;;;[];;;;text;t2_146tsr;False;False;[];;"What's the Red Symbol on Cells at Work? Youtube? If so, what channel? - -Also Re:Zero season 1 is going to be shown in the Muse Asia YT Channel if anyone is interested.";False;False;;;;1610201475;;False;{};ginmotd;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmotd/;1610239395;7;True;False;anime;t5_2qh22;;0;[]; -[];;;MauledCharcoal;;;[];;;;text;t2_1uu3nanq;False;False;[];;Yeah with that type of karma it's gonna be easy pickings for AoT. AoTs slow episodes didn't drop under 13k and ReZero's premier didn't get to 12k.;False;False;;;;1610201482;;False;{};ginmp74;False;t3_ktrgan;False;False;t1_ginmdnx;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmp74/;1610239401;65;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610201493;;False;{};ginmpqo;False;t3_ktrgan;False;True;t1_ginma34;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmpqo/;1610239411;42;True;False;anime;t5_2qh22;;0;[]; -[];;;I_Cognito;;;[];;;;text;t2_8anbytoj;False;False;[];;"I'm glad that Higurashi Gou received first place on the episode poll ranking since the latest episode was just amazing. But the low numbers on the karma ranking chart shows that this gem is incredibly underwatched. So I want to do what Akudama Drive fans successfully did in this thread: I want you all to **watch Higurashi When They Cry.** This series needs more recognition! - -Now the new Higurashi anime is actually a sequel to the original 2006 anime, not a reboot, so I highly recommend to watch the original first. If you like horror, mystery, well executed tone shifts and/or Re:Zero, you WILL like Higurashi. That much is guaranteed.";False;False;;;;1610201495;;False;{};ginmpul;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmpul/;1610239412;40;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;"AoT ep 5, 20K+ ( I am going low this time) - -Re:zero ep2, 12.5-13.5K.";False;False;;;;1610201535;;False;{};ginmryv;False;t3_ktrgan;False;False;t1_ginmkk2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmryv/;1610239449;112;True;False;anime;t5_2qh22;;0;[]; -[];;;Garlicbread10;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;echidna cultist;dark;text;t2_8zn7f5o;False;False;[];;I can’t wait to see how much karma aot ep 5 will get;False;False;;;;1610201560;;False;{};ginmtbq;False;t3_ktrgan;False;False;t1_ginm8f9;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmtbq/;1610239472;44;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;">Yuru Camp in 3rd place - -Secret Society BLANKET certainly spread its influence further over those three years - -[](#morecomfy)";False;False;;;;1610201561;;1610201745.0;{};ginmten;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmten/;1610239473;32;True;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;This is a reddit karma chart, so there needs to be a thread.;False;False;;;;1610201562;;False;{};ginmtfr;False;t3_ktrgan;False;False;t1_ginmkpy;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmtfr/;1610239474;6;True;False;anime;t5_2qh22;;0;[]; -[];;;nafissyed;;;[];;;;text;t2_3axlgtoe;False;False;[];;I wonder if ReZero and AOT will hit their peak karma episodes next week given the type of certain content that will be covered in their respective episodes. So if your a fan of ReZero and AOT like me, all I will say is that next week will be a hype-fest for you. So stay turned for both of these series since the real karma war between these two will start next week!;False;False;;;;1610201571;;False;{};ginmtvr;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmtvr/;1610239482;10;True;False;anime;t5_2qh22;;0;[]; -[];;;reddadz;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MysticEyes/;light;text;t2_oek5m;False;True;[];;Yeah, for now it’s the only way to ensure each show gets an equal amount of time (*slightly* less for Thursday shows) to gather karma.;False;False;;;;1610201594;;False;{};ginmv6c;True;t3_ktrgan;False;False;t1_ginmlmi;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmv6c/;1610239503;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Recidivis;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;https://www.anime-planet.com/users/Ressi;light;text;t2_8pkti;False;False;[];;KanaHana was no match for the power of Yoko Hikasa's ara ara this time.;False;False;;;;1610201596;;False;{};ginmvah;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmvah/;1610239505;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;This is gonna be fricking fire lol. With all this quality shows, you never know who is gonna be at the top. Though i know that AoT will stay at the throne.;False;False;;;;1610201639;;False;{};ginmxli;False;t3_ktrgan;False;False;t1_ginmavp;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmxli/;1610239543;72;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;"For AOT E5 : 20K+ - -For ReZero E2 : 13.5K+";False;False;;;;1610201656;;False;{};ginmyi6;False;t3_ktrgan;False;False;t1_ginmkk2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmyi6/;1610239558;15;True;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;That's [Wakanim](https://www.wakanim.tv), for Europe. Not Youtube :);False;False;;;;1610201660;;False;{};ginmypj;False;t3_ktrgan;False;False;t1_ginmotd;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginmypj/;1610239561;10;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;"> -Speaking of Winter 2019 Anime, Quintessential Quintuplets had a monster first episode picking up 4139 Karma to double its season high from 2019. - -This suprised me because the discussion post was put up much later than when the episode came out.";False;False;;;;1610201691;;False;{};ginn08n;False;t3_ktrgan;False;False;t1_ginm8f9;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginn08n/;1610239587;10;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;This season is gonna be fire. With AoT and Rezero in the same season, we will get atleast 60k karma per week.;False;False;;;;1610201724;;1610203873.0;{};ginn21c;False;t3_ktrgan;False;False;t1_ginmjbs;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginn21c/;1610239622;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Themousen;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;iyashikei worshipper;dark;text;t2_13xlbu;False;False;[];;"This thursday was like : - -\- mass murder and camping - -\- destroyed lungs and cute platelets";False;False;;;;1610201735;;False;{};ginn2kv;False;t3_ktrgan;False;False;t1_ginma34;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginn2kv/;1610239631;55;True;False;anime;t5_2qh22;;0;[]; -[];;;OfficialReiraStan;;;[];;;;text;t2_8qcygnnc;False;False;[];;monogatari;False;False;;;;1610201772;;False;{};ginn4m2;False;t3_ktrlxb;False;False;t3_ktrlxb;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/ginn4m2/;1610239666;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Oregairu I think, it is even known by newbies meanwhile people who aren't deep enough into anime don't know about mono series;False;False;;;;1610201781;;False;{};ginn51a;False;t3_ktrlxb;False;True;t3_ktrlxb;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/ginn51a/;1610239672;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;reddadz;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MysticEyes/;light;text;t2_oek5m;False;True;[];;"> And we’re still missing some big names - -This is what’s messing with my head! Not only are we missing half the shows, we barely had enough for a top 15 so I had to include ones that usually wouldn’t make it (which usually lowers the karma floor). - -Yet still, the total karma is up there with the highest. Scary times ahead.";False;False;;;;1610201786;;False;{};ginn5cw;True;t3_ktrgan;False;False;t1_ginmivk;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginn5cw/;1610239676;12;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;">So I want to do what Akudama Drive fans successfully did in this thread: I want you all to watch Higurashi When They Cry. - -Akudama Drive's fanbase did a great job at promoting it. A far better job than Funimation did promoting it too.";False;False;;;;1610201787;;False;{};ginn5f2;False;t3_ktrgan;False;False;t1_ginmpul;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginn5f2/;1610239678;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Silently_Useless;;;[];;;;text;t2_6hgdp7ds;False;False;[];;If you ask a guy who's not into romance which they one of the two they know it's usually monagatari series due to studio shaft animation and how meme worthy it is;False;False;;;;1610201792;;False;{};ginn5mk;False;t3_ktrlxb;False;False;t3_ktrlxb;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/ginn5mk/;1610239681;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610201793;;False;{};ginn5ps;False;t3_ktrgan;False;True;t1_ginmryv;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginn5ps/;1610239683;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610201810;;False;{};ginn6o8;False;t3_ktrgan;False;True;t1_ginmryv;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginn6o8/;1610239697;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;I'll tell you a fun fact, KING's episode 5 has been trending on Twitter(as #AOTDeclarartionOfWar) even before the episode has aired. Shows you the hype and dominance of AoT.;False;False;;;;1610201811;;False;{};ginn6qh;False;t3_ktrgan;False;False;t1_ginm8f9;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginn6qh/;1610239698;55;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Great!, I asked because of the Thursday shows there, totally fine then, thanks!;False;False;;;;1610201813;;False;{};ginn6sr;False;t3_ktrgan;False;True;t1_ginmv6c;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginn6sr/;1610239700;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;"I think Re:zero ep 2 has a chance to hit 15-16k given that it’s a pretty hype episode. - -For AOT, i’ll say 17-20k+ man...tomorrow cant come faster enough";False;False;;;;1610201833;;False;{};ginn7tj;False;t3_ktrgan;False;False;t1_ginmryv;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginn7tj/;1610239717;78;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"Glad to see Yuru camp in Top 3 with 4k+ karma. Makes me happy to see that SoL shows doing so well in r/anime. - -Also next week, AoT enters the chart with the first its most hyped episodes. Who knows how much karma it'll have. 20k+ maybe?.";False;False;;;;1610201842;;1610217522.0;{};ginn89u;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginn89u/;1610239726;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Saitama61;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Fatih656;light;text;t2_1ypj4k2d;False;False;[];;"1 - The lowest may be 1000 next week - -2 - Spider pass the 3000 and slime can break the record for most points gain in a week(percentage) - -3 - Re zero episode 39 didn't effect like new season , as i expected. This makes it difficult to guess for episode 40 - -4 - I wonder if Attack on Titan holding up first page for a long time will cause a general drop in other anime or will it be opposite effect - -5- I'm thinking of watching 18 anime this season and the number not including ongoing series. This is my new record";False;False;;;;1610201879;;1610202318.0;{};ginna96;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginna96/;1610239758;27;True;False;anime;t5_2qh22;;0;[]; -[];;;MaksimShadow;;;[];;;;text;t2_h92eaka;False;False;[];;"This season is seriously packed. Gotta watch 'em all! Where to find time to watch all of these though? - -Cells at Work: Black gained more karma and poll score than the Original. So, you like it dark, huh? I wonder how many people will stop smoking and drinking after this season.";False;False;;;;1610201886;;False;{};ginnan3;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginnan3/;1610239764;10;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;I'd expect Horimiya, Mushoku Tensei and Slime to fit in the 4000-5000 range and for Dr. Stone's first episode to hit 7000 Karma. Its first episode hit 6865 Karma back in Summer 2019.;False;False;;;;1610201911;;False;{};ginnbxz;False;t3_ktrgan;False;True;t1_ginmo0u;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginnbxz/;1610239794;4;True;False;anime;t5_2qh22;;0;[]; -[];;;reddadz;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MysticEyes/;light;text;t2_oek5m;False;True;[];;Included it since the last weekly chart came out same day as the finale (and we almost didn’t have enough shows for a top 15).;False;False;;;;1610201939;;False;{};ginndfp;True;t3_ktrgan;False;True;t1_ginmiup;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginndfp/;1610239825;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Syokhan;;;[];;;;text;t2_b5zid;False;False;[];;"Otherside Picnic just barely in the top 10! I'm expecting it to drop next week, but hey, small victories. - -Very happy for Higurashi, it really deserved some love after that episode.";False;False;;;;1610201944;;False;{};ginndq0;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginndq0/;1610239829;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;"What I’ve figured out from the episode ratings from this chart over the past year, is that - -If the average episode ratings are less than 9, that means most people have made up their mind about what they will give the ratings to the show at the end, even if the episodes get better, they won’t think of it as any better (obviously subjective though). Most Harem romances experience this in this subreddit too. No matter how good they become, they won’t be able to cross into the 9+ range. - -I’m expecting this for Promised Neverland. The episodes will stay in the 8-9 range. The negativity around the manga ending is so much, that people are already affected with the “the story only goes downhill from here comments”, and will think twice before thinking the show in a very positive light, or thinking of giving it a 10, which is very sad. Idk what will happen in the manga, but I hope people don’t go off of what the manga readers keep saying, and instead watch the anime as its own thing. - -That said, glad that it’s got that much attention, looking forward to it !";False;False;;;;1610201963;;False;{};ginneqj;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginneqj/;1610239848;12;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;It certainly shows the hype. Hopefully, it lives up to it!;False;False;;;;1610201977;;False;{};ginnfix;False;t3_ktrgan;False;False;t1_ginn6qh;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginnfix/;1610239864;19;True;False;anime;t5_2qh22;;0;[]; -[];;;marcopolos059;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/marcopolos059;light;text;t2_aylv6;False;False;[];;"I'm so happy Yuru Camp is back after 2 years... Seeing Rin and her friends, the soothing BGM and background visuals... it's perfect to unwind. - -I'm glad it's well loved here too.";False;False;;;;1610201989;;False;{};ginng6w;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginng6w/;1610239876;73;True;False;anime;t5_2qh22;;0;[]; -[];;;Themousen;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;iyashikei worshipper;dark;text;t2_13xlbu;False;False;[];;"Love how this winter you'll get a lot of pain and suffering from SNK, Re:Zero and Cells at Work Black - -&#x200B; - -And then there are Yuru Camp and Non Non Biyori, chilling under a kotatsu";False;False;;;;1610201994;;False;{};ginngfl;False;t3_ktrgan;False;False;t1_ginmhfp;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginngfl/;1610239880;13;True;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;Attack on titan had twice as much karma as Re:Zero in it's first episode compared to the episode of Re:Zero. That's crazy and pretty telling for the overall hype surrounding attack on titan for this season. Some episodes might as well pass the 25k Karma mark. I think this is the last time we would see Re:Zero on top because what's coming next for attack on titan is that good.;False;False;;;;1610202001;;False;{};ginngui;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginngui/;1610239887;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Yeeaahduudee;;;[];;;;text;t2_58dwi607;False;False;[];;You also need a slight understanding of japanese to understand monogatari;False;False;;;;1610202009;;False;{};ginnh9x;False;t3_ktrlxb;False;True;t1_ginn51a;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/ginnh9x/;1610239895;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;"Monogatari. It’s extremely well known in the anime community. Oregairu is also popular, but not even close in cultural relevance or influencial power. - -Didn’t bakemonogatari sell more dvds than ANY other anime ever made?";False;False;;;;1610202013;;False;{};ginnhgn;False;t3_ktrlxb;False;False;t3_ktrlxb;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/ginnhgn/;1610239898;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Themousen;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;iyashikei worshipper;dark;text;t2_13xlbu;False;False;[];;It's Wakanim;False;False;;;;1610202026;;False;{};ginni77;False;t3_ktrgan;False;False;t1_ginmotd;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginni77/;1610239912;6;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;AoT being added to the list alone would have taken us over 50000 this week. We're definitely going to be averaging 60000+;False;False;;;;1610202047;;False;{};ginnj9b;False;t3_ktrgan;False;False;t1_ginn21c;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginnj9b/;1610239931;16;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610202088;;False;{};ginnliz;False;t3_ktrlxb;False;True;t3_ktrlxb;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/ginnliz/;1610239972;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"I'm still watching the OG series now after holding myself off from continuing Gou after Ep 11. Glad to hear its doing so well! - -My friends who watched it told me that this episode was amazing.";False;False;;;;1610202100;;1610207448.0;{};ginnm59;False;t3_ktrgan;False;False;t1_ginma34;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginnm59/;1610239982;13;True;False;anime;t5_2qh22;;0;[]; -[];;;MauledCharcoal;;;[];;;;text;t2_1uu3nanq;False;False;[];;AoT bout to cut ReZero's lead by at LEAST half tomorrow.;False;False;;;;1610202103;;1610204562.0;{};ginnm9t;False;t3_ktrgan;False;False;t1_ginmo0u;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginnm9t/;1610239985;11;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;Add in Higurashi in the suffering then its all good. This is gonna be the most depressing, hyped and relaxing season lol.;False;False;;;;1610202121;;False;{};ginnn97;False;t3_ktrgan;False;False;t1_ginngfl;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginnn97/;1610240003;6;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;Monogatari is much more... known to newbies than Oregairu... Why does Oregairu stand out to newbies? People rave on and on about the monogatari series, why would newbies single out Oregairu as an interesting anime from the premise or poster alone? Versus Bakemonogatari posters.;False;False;;;;1610202130;;False;{};ginnnqc;False;t3_ktrlxb;False;False;t1_ginn51a;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/ginnnqc/;1610240011;8;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Thing is that many a time anime gets lower upvotes compared to premiere. They have to do something exceptional to get to that many upvotes.;False;False;;;;1610202131;;False;{};ginnnso;False;t3_ktrgan;False;False;t1_ginn7tj;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginnnso/;1610240012;42;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Yeah, this season is just crazy [I'm already watching 14](https://imgur.com/a/cLXzxuq) I don't drop seasonals and there's still a lot to air!! Probably 20+ for me - -aot definitely will be on top for the most part, the fun will be on position 3-15, Jujutsu will probably be back at 3 (especially with tpn numbers) but the rest is totally free for all";False;False;;;;1610202174;;False;{};ginnq71;False;t3_ktrgan;False;False;t1_ginmxli;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginnq71/;1610240052;38;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;I think it'll reach 70k-80k per week with the way everything seems to be going.;False;False;;;;1610202191;;False;{};ginnr1x;False;t3_ktrgan;False;False;t1_ginn21c;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginnr1x/;1610240065;8;True;False;anime;t5_2qh22;;0;[]; -[];;;nafissyed;;;[];;;;text;t2_3axlgtoe;False;False;[];;Both episodes next week will be game changers in their own unique way. For AOT, if episode 5 is done justice, then yeah 20K+ karma is very possible. As for ReZero S2 Part 2 Ep 2, if that is also done justice, then I can see it getting 14K+ karma as a result. All in all, both of these series will be hitting one of their biggest strides next week, so it’s just going to be interesting to see how everything plays out by the end of next week.;False;False;;;;1610202193;;False;{};ginnr6j;False;t3_ktrgan;False;False;t1_ginmkk2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginnr6j/;1610240068;34;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Low, not many animes get a s2 to begin with, so the chances are slim as always;False;False;;;;1610202201;;False;{};ginnrmi;False;t3_ktrob2;False;True;t3_ktrob2;/r/anime/comments/ktrob2/maoujou_de_oyasumi_season_2/ginnrmi/;1610240075;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Themousen;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;iyashikei worshipper;dark;text;t2_13xlbu;False;False;[];;Makes sense, plus thanks to that Noblesse can finally show up in the poll;False;False;;;;1610202207;;False;{};ginnrwb;False;t3_ktrgan;False;True;t1_ginndfp;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginnrwb/;1610240079;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610202209;;False;{};ginns1e;False;t3_ktrlxb;False;True;t1_ginnliz;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/ginns1e/;1610240081;0;True;False;anime;t5_2qh22;;0;[]; -[];;;reddadz;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MysticEyes/;light;text;t2_oek5m;False;True;[];;Thankfully, the Thursday shows are strong enough this season to make huge impacts even with the usual disadvantage.;False;False;;;;1610202239;;False;{};ginntlw;True;t3_ktrgan;False;False;t1_ginn6sr;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginntlw/;1610240107;6;True;False;anime;t5_2qh22;;0;[]; -[];;;MauledCharcoal;;;[];;;;text;t2_1uu3nanq;False;False;[];;"20346 For AoT - -10789 for ReZero";False;False;;;;1610202239;;False;{};ginntnf;False;t3_ktrgan;False;False;t1_ginmkk2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginntnf/;1610240109;8;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;Maybe even 70k, with Log Horizon, Mushoku Tensei, Slime isekai, World Trigger, Horimiya, and Dr stone.;False;False;;;;1610202258;;False;{};ginnums;False;t3_ktrgan;False;False;t1_ginnj9b;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginnums/;1610240126;11;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;No doubt about it, AOT will be at top followed by ReZero. I'm betting on Horimiya for the third spot with either JJK or Dr Stone on 4th. Promised Neverland or Tensura at 6-7th or 7-6th spot I guess;False;False;;;;1610202264;;False;{};ginnuy4;False;t3_ktrgan;False;False;t1_ginmo0u;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginnuy4/;1610240133;9;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;The days they come out on is also great. Yuru Camp comes out the same day as Higurashi and Promised Neverland while Non Non Biyori comes out the same day as AoT. There's comfy to balance out the suffering.;False;False;;;;1610202281;;False;{};ginnvwj;False;t3_ktrgan;False;False;t1_ginngfl;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginnvwj/;1610240150;7;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;">Several big names are returning/debuting next week, where will they appear on this list? - -My prediction : - -1. AOT -2. ReZero -3. Dr.Stone -4. Jujutsu Kaisen -5. The Promised Neverland -6. Yuru Camp -7. Mushoku Tensei -8. Kumo desu ga, Nani ka -9. Horimiya -10. Tensura -11. Gotoubun -12. Log Horizon -13. Cells at Work Black -14. Cells at Work -15. Beastars - -With 10th place being at around 3k give or take. There will be 3 main groups : - -* 1-5 who will pretty much be set in stone (aside from peak episodes in case of 3-5) -* 6-11 who will switch around every week, it'll be really close -* 12-15 who will also switch around but very far from the 6-11 group. - -And of course since this sub has shit taste NNB S3 won't even be on the chart - -[](#kumikouninterested) - -Edit : Forgot a few important shows";False;False;;;;1610202309;;1610202845.0;{};ginnxi8;False;t3_ktrgan;False;False;t1_ginmo0u;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginnxi8/;1610240178;18;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;Very kind of AoT to take a week off so the newcomers have a chance to breathe. But by next week. . . Oh boy.;False;False;;;;1610202345;;False;{};ginnzha;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginnzha/;1610240210;135;True;False;anime;t5_2qh22;;0;[]; -[];;;Themousen;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;iyashikei worshipper;dark;text;t2_13xlbu;False;False;[];;"I'm surprised and glad Yuru Camp did so well - -Time to assemble the Secret Society BLANKET once again";False;False;;;;1610202345;;False;{};ginnzhw;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginnzhw/;1610240210;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;"Probably because of the fact that it has a ""simple plot"" it's more accessible to them as such it not something complicated or as much Japanese oriented, not only that a lot of newbies tend to watch dubs, and mono is so hard to translate that it didn't even got a dub";False;False;;;;1610202348;;False;{};ginnznl;False;t3_ktrlxb;False;False;t1_ginnnqc;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/ginnznl/;1610240213;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Damarugaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Damarugaki/;light;text;t2_6zyxfkgg;False;False;[];;Cant wait for the Internet to break;False;False;;;;1610202384;;False;{};gino1ny;False;t3_ktrgan;False;False;t1_ginmtbq;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gino1ny/;1610240245;29;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;"Yeah, there is a lot of sequel this season so they are probably gonna take most of the top here. Apart from Mushoku Tensei, the new shows this season isn't really hyped up. - -So yeah, let the karma war begin lol.";False;False;;;;1610202420;;False;{};gino3mo;False;t3_ktrgan;False;False;t1_ginnq71;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gino3mo/;1610240280;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"+jujutsu - -Edit: jjk will appear only on week 3 ranking";False;False;;;;1610202437;;1610202800.0;{};gino4kp;False;t3_ktrgan;False;False;t1_ginnums;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gino4kp/;1610240297;11;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;"That is indeed true, i’ll just see how many karma it will get next week. -And goddamn AOT trended in twitter again even though the episode hasnt been out yet, it really gives me high expectation for the ep 5 karma to break 20k++ 🗿";False;False;;;;1610202449;;False;{};gino583;False;t3_ktrgan;False;False;t1_ginnnso;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gino583/;1610240309;44;True;False;anime;t5_2qh22;;0;[]; -[];;;Siccerian;;;[];;;;text;t2_1rl0duq1;False;False;[];;Genuine question: why is Re:zero so popular?;False;False;;;;1610202481;;False;{};gino6zg;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gino6zg/;1610240341;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Ratnoodles-yt;;;[];;;;text;t2_8n42q069;False;False;[];;If u wanna watch the full vid check out the channel 🙏🏼🙏🏼🙏🏼;False;False;;;;1610202491;;False;{};gino7hb;True;t3_ktrsot;False;True;t3_ktrsot;/r/anime/comments/ktrsot/well_i_dont_know_what_i_made_but_i_love_it/gino7hb/;1610240349;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;Hmm.. but most anime with simple plots will never get a newcomers attention. What’s so standout about Oregairu? Unless you’ve been personally recommended it by a friend, what makes its listing on mal more eye-catching than natsume yuujinchou or fruits basket’s? Despite having less interesting of a plot than either?;False;False;;;;1610202507;;False;{};gino8dz;False;t3_ktrlxb;False;True;t1_ginnznl;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/gino8dz/;1610240364;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Da-Epik-Nub;;;[];;;;text;t2_73w0t2t2;False;False;[];;ok;False;False;;;;1610202557;;False;{};ginob2k;False;t3_ktrlxb;False;False;t1_ginns1e;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/ginob2k/;1610240410;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;~~can't wait for crunchyroll's servers to break~~;False;False;;;;1610202597;;False;{};ginoda3;False;t3_ktrgan;False;False;t1_gino1ny;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginoda3/;1610240449;15;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;Do split cour premiers normally act like regular premiers though? There's not much evidence to suggest that they do. To me, this was a set-up episode and should be treated on the same level as AoT's 13.5K episodes. I maintain that if AoT shows even the slightest weakness and puts another episode below 14K, Re:Zero will strike. It may only happen once this season, but I don't think Re:Zero will go winless.;False;False;;;;1610202621;;False;{};ginoenh;False;t3_ktrgan;False;False;t1_ginmp74;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginoenh/;1610240472;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Deshuro;;;[];;;;text;t2_j8xcz;False;False;[];;"Tbf, this episode of Re0 didn't reach the top post in its first 2 hours because of the Vinland Saga clip which really hurts its total karma, [just like the last episode of part 1](https://old.reddit.com/r/anime/comments/j4eomw/ranime_karma_poll_ranking_week_13_summer_2020/g7idyq0/). Also, its abnormal 96% upvote ratio was also not helping its case. - -Though I agree with you that AoT will probably win in the end considering how hyped it is in its final season.";False;False;;;;1610202681;;False;{};ginohwg;False;t3_ktrgan;False;False;t1_ginmp74;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginohwg/;1610240536;7;True;False;anime;t5_2qh22;;0;[]; -[];;;defeatingme;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/defeatingme;light;text;t2_31dwk2wd;False;False;[];;As an anime-only of both, I sure am super hyped rn, especially for Re Zero which I have completely no idea what would happen next episode.;False;False;;;;1610202723;;False;{};ginok42;False;t3_ktrgan;False;False;t1_ginmtvr;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginok42/;1610240577;8;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;"Yeah, most of the sequels haven't even started and we got 38k karma without AoT. At this point, ""this is a very amazing season"" is gonna be an understatement lol.";False;False;;;;1610202724;;False;{};ginok6m;False;t3_ktrgan;False;False;t1_ginnr1x;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginok6m/;1610240578;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Probably because it's more commonly talked about, natsume and fruit basket are further backwards in terms of popularity as much great as they maybe it's not in the trends , even if it does have a very intriguing plot or poster depending on how much it is talked about is how a newbie decides what to watch, for example have you ever seen a newbie starting off with logh or ping pong the animation?;False;False;;;;1610202774;;False;{};ginomu5;False;t3_ktrlxb;False;False;t1_gino8dz;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/ginomu5/;1610240633;4;True;False;anime;t5_2qh22;;0;[]; -[];;;WhyYouMadBroo;;;[];;;;text;t2_2kz98moi;False;False;[];;It has a nice artstyle and attractive girls. If I were new to anime and I wanted to watch one with a school setting I would be pretty interested in Oregairu.;False;False;;;;1610202832;;False;{};ginopzx;False;t3_ktrlxb;False;True;t1_gino8dz;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/ginopzx/;1610240696;4;True;False;anime;t5_2qh22;;0;[]; -[];;;johndrake666;;;[];;;;text;t2_178xlw;False;False;[];;Hope webtoon make their own anime adaptation not that trash crunchyroll.;False;False;;;;1610202833;;False;{};ginoq1g;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginoq1g/;1610240696;1;True;False;anime;t5_2qh22;;0;[]; -[];;;brotato96;;;[];;;;text;t2_16ylw4gr;False;False;[];;Monogatari: You will see constant discussions in anime communities and is there to remain in many peoples all time recommendations. Oregairu only got hyped during its release time and will be slowly forgotten.;False;False;;;;1610202836;;False;{};ginoq7z;False;t3_ktrlxb;False;True;t3_ktrlxb;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/ginoq7z/;1610240699;0;True;False;anime;t5_2qh22;;0;[]; -[];;;csdbcjkahsd;;;[];;;;text;t2_6o5ig4yp;False;False;[];;aot ep 16 will get 25k if it animates ch 120;False;False;;;;1610202866;;False;{};ginorxz;False;t3_ktrgan;False;False;t1_ginmtvr;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginorxz/;1610240727;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;This will be a good metric for us to check the number of edgy people here lol;False;False;;;;1610202866;;False;{};ginory0;False;t3_ktrgan;False;False;t1_ginnan3;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginory0/;1610240727;3;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;There’s millions of school shows with attractive girls;False;False;;;;1610202877;;False;{};ginoslg;False;t3_ktrlxb;False;True;t1_ginopzx;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/ginoslg/;1610240738;0;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;">Also, its abnormal 96% upvote ratio was also not helping its case - -Yeah, that 96% upvote rate for an episode that got 12,000 Karma is weird. It means that 500+ people downvoted it. That's more than just the usual trolls.";False;False;;;;1610202963;;False;{};ginoxcp;False;t3_ktrgan;False;False;t1_ginohwg;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginoxcp/;1610240817;24;True;False;anime;t5_2qh22;;0;[]; -[];;;csdbcjkahsd;;;[];;;;text;t2_6o5ig4yp;False;False;[];;"because its a good anime... - -world building is fantastic, characters have great depth, suspense is incredible, doesn't follow tropes. i could go on";False;False;;;;1610202968;;False;{};ginoxn3;False;t3_ktrgan;False;False;t1_gino6zg;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginoxn3/;1610240823;34;True;False;anime;t5_2qh22;;0;[]; -[];;;MauledCharcoal;;;[];;;;text;t2_1uu3nanq;False;False;[];;">Do split cour premiers normally act like regular premiers though? - -I know it's been just 3 months but it has felt like eternity since it last aired. That just might be me though.";False;False;;;;1610203013;;False;{};ginp08c;False;t3_ktrgan;False;False;t1_ginoenh;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginp08c/;1610240866;29;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Ep16 will end with ch 122 and that being the last episode has a huge chance to break 30K.;False;False;;;;1610203022;;False;{};ginp0pr;False;t3_ktrgan;False;False;t1_ginorxz;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginp0pr/;1610240874;11;True;False;anime;t5_2qh22;;0;[]; -[];;;spacedude997;;;[];;;;text;t2_2vc9b398;False;True;[];;New aot episode could low-key break the record set by the first episode.;False;False;;;;1610203024;;False;{};ginp0tq;False;t3_ktrgan;False;False;t1_ginmhoq;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginp0tq/;1610240875;18;True;False;anime;t5_2qh22;;0;[]; -[];;;sinbad199921;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Iroha_Pixie;light;text;t2_81hzhy80;False;False;[];;Yuru Camp starting at 3rd. Now thats a surprise.;False;False;;;;1610203032;;False;{};ginp1d8;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginp1d8/;1610240884;2;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;You misread the question completely.;False;False;;;;1610203064;;False;{};ginp38l;False;t3_ktrlxb;False;True;t1_ginoq7z;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/ginp38l/;1610240915;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;mrv3;;;[];;;;text;t2_fe649;False;True;[];;"Invest in the boonies kid anime, that would be a fun game to play, at the start of every season users get X point they use that to buy shares in the anime whose value is determined by their karma. - -#\#STONKS";False;False;;;;1610203113;;False;{};ginp61u;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginp61u/;1610240960;4;True;False;anime;t5_2qh22;;0;[]; -[];;;WhyYouMadBroo;;;[];;;;text;t2_2kz98moi;False;False;[];;If you search for rom com anime on Google, Oregairu is recommended in most of them, and it has one of the more attractive and modern artstyles compared to the rest. It'd certainly entice someone new to anime who's looking for a school romantic comedy.;False;False;;;;1610203116;;False;{};ginp67x;False;t3_ktrlxb;False;True;t1_ginoslg;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/ginp67x/;1610240963;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JuicyDragonCat;;;[];;;;text;t2_45tgc23z;False;False;[];;so are shows airing on friday, saturday sunday included in the list of the week after?;False;False;;;;1610203155;;False;{};ginp8f2;False;t3_ktrgan;False;True;t1_ginmv6c;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginp8f2/;1610240999;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;I think JJK will be #3 and Horimiya will be in Top 6 since it has quite some hype behind it but lets see what happens.;False;False;;;;1610203210;;False;{};ginpbku;False;t3_ktrgan;False;False;t1_ginnxi8;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginpbku/;1610241052;17;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;Yeah, Yuru Camp and Non Non Biyori is the healer of the pain of Subaru and Rika lol.;False;False;;;;1610203212;;False;{};ginpbno;False;t3_ktrgan;False;False;t1_ginnvwj;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginpbno/;1610241053;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Yes, very surprised with their performance, goes to show how crazy this season will be, and I am sure our data scientists in the sub will be working hard to provide us with facts and curious statistics every week haha;False;False;;;;1610203224;;False;{};ginpce3;False;t3_ktrgan;False;False;t1_ginntlw;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginpce3/;1610241066;4;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;What do I search up to get Oregairu to appear? I searched up Romcom anime and I can’t find it?;False;False;;;;1610203242;;False;{};ginpdfv;False;t3_ktrlxb;False;True;t1_ginp67x;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/ginpdfv/;1610241083;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MauledCharcoal;;;[];;;;text;t2_1uu3nanq;False;False;[];;Almost double the downvotes as what was normal last season.;False;False;;;;1610203251;;False;{};ginpdxe;False;t3_ktrgan;False;False;t1_ginoxcp;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginpdxe/;1610241092;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;"> Promised Neverland underperformed slightly compared with its lofty expectations as it “only” reached 5164 Karma after picking up 5389 Karma with its first episode back in Winter 2019. It will be interesting to see whether its Karma will go up or down from here. - -I'm pretty sure this is because of the weird release schedule, a lot of people thought it was gonna air on Thursday or Friday (and it did on other streaming services), Funimation just decided to air the premiere a day early which threw everyone for a loop.";False;False;;;;1610203278;;False;{};ginpfjl;False;t3_ktrgan;False;False;t1_ginm8f9;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginpfjl/;1610241119;30;True;False;anime;t5_2qh22;;0;[]; -[];;;MoneyMakerMaster;;;[];;;;text;t2_b7zxtmh;False;False;[];;"This is a crazy chart, so it's weird knowing that it's the calm before the storm. Winter season will be in full swing next week; I already can't wait for that chart.";False;False;;;;1610203281;;False;{};ginpfpi;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginpfpi/;1610241121;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"The studio and voice actors went all out. That was one hell of a ride to begin the year with. There's such a huge variety of quality shows on Thursdays. - -[](#panic)";False;False;;;;1610203292;;False;{};ginpgbe;False;t3_ktrgan;False;False;t1_ginmm17;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginpgbe/;1610241131;28;True;False;anime;t5_2qh22;;0;[]; -[];;;AkairoKami;;;[];;;;text;t2_w9047;False;False;[];;Two big shows avoided the crash against each other last week lol;False;False;;;;1610203330;;False;{};ginpig4;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginpig4/;1610241169;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JuicyDragonCat;;;[];;;;text;t2_45tgc23z;False;False;[];;"AOT: 19457 - -Re:Zero 14985";False;False;;;;1610203337;;False;{};ginpist;False;t3_ktrgan;False;False;t1_ginmkk2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginpist/;1610241178;18;True;False;anime;t5_2qh22;;0;[]; -[];;;MauledCharcoal;;;[];;;;text;t2_1uu3nanq;False;False;[];;What went wrong with Noblesse?;False;False;;;;1610203339;;False;{};ginpixh;False;t3_ktrgan;False;True;t1_ginoq1g;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginpixh/;1610241181;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WhyYouMadBroo;;;[];;;;text;t2_2kz98moi;False;False;[];;You click a couple of the links below on the first page. Most of them have Oregairu.;False;False;;;;1610203344;;False;{};ginpj8h;False;t3_ktrlxb;False;True;t1_ginpdfv;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/ginpj8h/;1610241187;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610203378;;False;{};ginpl56;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginpl56/;1610241218;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Iammonkforlifelol;;;[];;;;text;t2_554va627;False;False;[];;Episode 160-162 of black clover will top this easy.;False;False;;;;1610203385;;False;{};ginpljt;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginpljt/;1610241224;4;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;Yeah, I'm really not a fan of off-schedule releases;False;False;;;;1610203411;;False;{};ginpn0t;False;t3_ktrgan;False;False;t1_ginpfjl;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginpn0t/;1610241248;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Agreed, if the audience that loves kaguya embrace Horimiya as well, it can reach even a top 3 in later weeks;False;False;;;;1610203424;;False;{};ginpnrg;False;t3_ktrgan;False;False;t1_ginpbku;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginpnrg/;1610241262;11;True;False;anime;t5_2qh22;;0;[]; -[];;;brotato96;;;[];;;;text;t2_16ylw4gr;False;False;[];;care to explain?;False;False;;;;1610203452;;False;{};ginppen;False;t3_ktrlxb;False;True;t1_ginp38l;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/ginppen/;1610241289;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;"AoT went from 3k -> 8k in between S3P1 and S3P2, though granted there was a 6 month wait there. iirc the first episode of S3P2 was more of a setup episode as well. Granted this was the beginning of a totally new arc (one which manga readers were very hyped up for at the time) whereas R:Z is simply continuing on from the same arc.";False;False;;;;1610203466;;False;{};ginpq80;False;t3_ktrgan;False;False;t1_ginoenh;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginpq80/;1610241302;22;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;"I'm pretty sure Dr.Stone can break 6k with the first episode so I'll stick with my prediction regarding it, but Horimiya's a wildcard so you might be right there. - -I might also be underestimating Mushoku Tensei with its 8+ score on MAL after the preair.";False;False;;;;1610203501;;False;{};ginps97;False;t3_ktrgan;False;True;t1_ginpbku;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginps97/;1610241335;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;About dr stone we have to see how Tpn did, it was the most expected show of the season in many sites but opened with less karma than it did in 2019, so dr stone karma is not set in stone yet (i achieved comedy lol);False;False;;;;1610203509;;1610205042.0;{};ginpsqm;False;t3_ktrgan;False;False;t1_ginnbxz;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginpsqm/;1610241343;8;True;False;anime;t5_2qh22;;0;[]; -[];;;JuicyDragonCat;;;[];;;;text;t2_45tgc23z;False;False;[];;Because Re:Zero is a popular anime;False;False;;;;1610203548;;False;{};ginpuzi;False;t3_ktrgan;False;False;t1_gino6zg;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginpuzi/;1610241382;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610203572;;False;{};ginpwd1;False;t3_ktrlxb;False;True;t1_ginppen;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/ginpwd1/;1610241406;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ohaimike;;;[];;;;text;t2_5ovb2;False;False;[];;"Purchase the Blu-ray and all the manga volumes. Tell all your friends and family to do the same. - -If sales are good, they MIGHT consider a season 2.";False;False;;;;1610203615;;False;{};ginpytn;False;t3_ktrob2;False;True;t3_ktrob2;/r/anime/comments/ktrob2/maoujou_de_oyasumi_season_2/ginpytn/;1610241448;2;True;False;anime;t5_2qh22;;0;[]; -[];;;csdbcjkahsd;;;[];;;;text;t2_6o5ig4yp;False;False;[];;120 122 same difference;False;True;;comment score below threshold;;1610203624;;False;{};ginpzc6;False;t3_ktrgan;False;True;t1_ginp0pr;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginpzc6/;1610241456;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;WhyYouMadBroo;;;[];;;;text;t2_2kz98moi;False;False;[];;Not really, people were still recommending and talking about Oregairu in the downtime between Seasons 2 and 3. Hachiman himself is talked about a lot because of his personality.;False;False;;;;1610203646;;False;{};ginq0mk;False;t3_ktrlxb;False;False;t1_ginoq7z;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/ginq0mk/;1610241478;4;True;False;anime;t5_2qh22;;0;[]; -[];;;OrangeWild3060;;;[];;;;text;t2_9pwnju8u;False;False;[];;there is a bug regaining the bad score of higurashi they have inverted re zero and higurashi call a mod 8.73 IS re zero;False;True;;comment score below threshold;;1610203680;;False;{};ginq2ib;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginq2ib/;1610241509;-15;True;False;anime;t5_2qh22;;0;[]; -[];;;brotato96;;;[];;;;text;t2_16ylw4gr;False;False;[];;"I said Monogatari, read carefully there is a "" : "" befaore my explanation, and stop being so toxic were are just discussing anime here";False;False;;;;1610203693;;False;{};ginq3aa;False;t3_ktrlxb;False;True;t1_ginp38l;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/ginq3aa/;1610241521;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"Don't forget JJK coming back and the new seasons of Dr Stone and Tensei Slime fighting for the 4th-7th positions. The ismthe sequel war. - -[](#awe)";False;False;;;;1610203732;;False;{};ginq5f7;False;t3_ktrgan;False;False;t1_ginmhoq;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginq5f7/;1610241556;31;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610203849;;1610207219.0;{};ginqc7b;False;t3_ktrgan;False;True;t1_ginmpqo;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginqc7b/;1610241668;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;KittenBuns1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KittenBuns1;light;text;t2_5j04zssx;False;False;[];;Let's begin the r/anime tournament arc.;False;False;;;;1610203878;;False;{};ginqdx0;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginqdx0/;1610241695;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OrangeWild3060;;;[];;;;text;t2_9pwnju8u;False;False;[];;"it's an error look at the bad score of higurashi and the number of comments are those of zero it we invert the 2 it's a bug you have to call a moderator 8.73 = re zero on mal -the comments and the notes are reversed between re zero and higurashi same bc and tpn I invite you to go and check yourself if you do not believe me the 1800 comments were not on the episode of higurashi but that of re zero they have reverse seats (I don't speak English so sorry if that's not very understandable) https://amp.reddit.com/r/anime/comments/krq3pe/rezero_kara_hajimeru_isekai_seikatsu_season_2/higurashi is barely 300 comments it's a bug -https://amp.reddit.com/r/Higurashinonakakoroni/comments/kshra4/higurashi_no_naku_koro_ni_2020_episode_14/ -higurashi is barely 300 comments it's a bug";False;True;;comment score below threshold;;1610203883;;1610207243.0;{};ginqe7d;False;t3_ktrgan;False;True;t1_ginma34;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginqe7d/;1610241702;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;"> AoT went from 3k -> 8k in between S3P1 and S3P2, though granted there was a 6 month wait there - -I think that may just be because people didn't care much for S3P1 compared with S3P2. For reference, the first episode of S2 got 6000 Karma.";False;False;;;;1610203897;;False;{};ginqf0k;False;t3_ktrgan;False;False;t1_ginpq80;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginqf0k/;1610241715;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"Well that might be true for next week but after that who knows. JJK is already selling so well, even higher than Dr. Stone. - -Also my guess is that Mushoku might be getting between 5k-6k karma";False;False;;;;1610203908;;False;{};ginqfo5;False;t3_ktrgan;False;False;t1_ginps97;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginqfo5/;1610241727;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Aot first page can have a negative effect on Jobless reincarnation and Non Non biyori because they will air at the same time, it won't affect the other series;False;False;;;;1610203934;;False;{};ginqh4m;False;t3_ktrgan;False;False;t1_ginna96;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginqh4m/;1610241750;17;True;False;anime;t5_2qh22;;0;[]; -[];;;brotato96;;;[];;;;text;t2_16ylw4gr;False;False;[];;I only started oregairu during season 3 so maybe I dont know it enough;False;False;;;;1610203938;;False;{};ginqhdz;False;t3_ktrlxb;False;True;t1_ginq0mk;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/ginqhdz/;1610241755;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610204022;moderator;False;{};ginqma1;False;t3_kts8u3;False;True;t3_kts8u3;/r/anime/comments/kts8u3/what_is_the_anime_called_in/ginqma1/;1610241836;1;False;False;anime;t5_2qh22;;0;[]; -[];;;MauledCharcoal;;;[];;;;text;t2_1uu3nanq;False;False;[];;"Also worth adding on, AoT is a manga and has hundreds of thousands if not millions of vocal source readers that promote it. Share manga panels and links to read it. The huge uptick in karma between it's S3 P1 and S3 P2 is very very reliant on it's huge fanbase pushing it. - -Maybe SAO and Railgun are better examples for this comparison.";False;False;;;;1610204028;;False;{};ginqmmv;False;t3_ktrgan;False;False;t1_ginpq80;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginqmmv/;1610241842;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610204178;;False;{};ginqvj9;False;t3_ktrgan;False;True;t1_ginoq1g;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginqvj9/;1610241992;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;"I think it will be a little closer than people are predicting since AoT is handicapped by the thread dropping early and Re:Zero isn't. - -AoT: 18500 - -Re:Zero: 15000 (no clue what happens, I just hear source readers say this will be the peak of the season so far so I think it'll just eclipse the premiere).";False;False;;;;1610204179;;False;{};ginqvmn;False;t3_ktrgan;False;False;t1_ginmkk2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginqvmn/;1610241993;7;True;False;anime;t5_2qh22;;0;[]; -[];;;SuperWeeble12;;;[];;;;text;t2_4tsmsg;False;False;[];;I think he means why is that much more popular specifically on reddit than it is anywhere else ? Like AOT is hella popular here too but it also hella popular on twitter or irl or everywhere else. Re:zero hype is just that much stronger on reddit somehow;False;False;;;;1610204180;;False;{};ginqvp8;False;t3_ktrgan;False;False;t1_ginoxn3;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginqvp8/;1610241995;11;True;False;anime;t5_2qh22;;0;[]; -[];;;GMorelli;;;[];;;;text;t2_13n5gj;False;False;[];;Madoka Magica;False;False;;;;1610204185;;False;{};ginqvxs;False;t3_kts8u3;False;True;t3_kts8u3;/r/anime/comments/kts8u3/what_is_the_anime_called_in/ginqvxs/;1610241999;2;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;The next several episodes should all be bangers. Gonna be an epic run.;False;False;;;;1610204203;;False;{};ginqwyv;False;t3_ktrgan;False;False;t1_ginmtbq;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginqwyv/;1610242016;28;True;False;anime;t5_2qh22;;0;[]; -[];;;lucella713;;;[];;;;text;t2_yeml9;False;False;[];;[It was pretty high in USA trends and there were some unexpected results - no spoilers, screenshots](https://imgur.com/0e7ech8);False;False;;;;1610204261;;False;{};ginr09v;False;t3_ktrgan;False;False;t1_ginn6qh;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginr09v/;1610242069;33;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;All indications suggest the most hype episodes for both shows are yet to come, so we're gonna see some insane highs.;False;False;;;;1610204261;;False;{};ginr0ag;False;t3_ktrgan;False;False;t1_ginn21c;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginr0ag/;1610242069;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"Didn't expect Gotoubun (and Promised Neverland) to start that strong, 4k and 5k! And considering they're sequels, We shouldn't expect as big a drop of karma after the premiere I think, compared to new shows? - -Beastars getting 1.5k is sad... It's a fucking good show guys, don't let the CG and animal characters fool you! - -Surprised Otherside Picnic only got 1k; It was hyped quite a lot, wasn't it? - -Higurashi being #1 in score is pretty nice, wish more people watched it. - -Can't wait to see what this looks like when more shows are in!";False;False;;;;1610204267;;False;{};ginr0mr;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginr0mr/;1610242076;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Snipe-Out;;;[];;;dark;text;t2_5604j7dg;False;False;[];;"And with this, we are just a step away from the Biggest Karma war this sub has ever witnessed. - -And I just hope Horimiya doesn't get buried under this exceptionally well-stacked season.";False;False;;;;1610204362;;False;{};ginr649;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginr649/;1610242167;9;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;Yeah, I'm super hyped for the next Re:Zero episode, especially to see its god-tier [OP](https://www.youtube.com/watch?v=VZ1-FtA3yq4). This week of anime, starting basically now, may go down as one of the best weeks of anime ever.;False;False;;;;1610204376;;False;{};ginr6zi;False;t3_ktrgan;False;False;t1_ginmk53;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginr6zi/;1610242180;25;True;False;anime;t5_2qh22;;0;[]; -[];;;falkner97;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/falkner99;light;text;t2_6y92q69v;False;False;[];;Its trash anime but people love it;False;False;;;;1610204469;;False;{};ginrcg4;False;t3_kts9r0;False;True;t3_kts9r0;/r/anime/comments/kts9r0/warningore_dake_haireru_kakushi_dungeon_is_a_shi/ginrcg4/;1610242275;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;"Another thing is that the karma-ranking threads only really took off in popularity in 2019, shortly before S3P2 aired. AoT still had a huge number of fans when S3P1 aired, it's just they weren't that interested in upvoting the threads back then because this little subreddit competition wasn't a thing at that time. - -If r/manga had a weekly ranking thread like this I'm sure it would have got a lot more upvotes over there as well.";False;False;;;;1610204485;;False;{};ginrdg5;False;t3_ktrgan;False;False;t1_ginqmmv;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginrdg5/;1610242291;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"> Higurashi getting an episode ranking winner!!! - -Nice! Wish it scored higher on the Karma chart too. - -Sadly, as it's the second cour it might be too late for that to convince more people to pick it up. - -But hey, it's top 10 there too (at the moment anyway), not too bad!";False;False;;;;1610204486;;False;{};ginrdgb;False;t3_ktrgan;False;False;t1_ginma34;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginrdgb/;1610242291;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;It's really good as far as ecchi harem power fantasy goes;False;False;;;;1610204550;;False;{};ginrh7v;False;t3_kts9r0;False;True;t3_kts9r0;/r/anime/comments/kts9r0/warningore_dake_haireru_kakushi_dungeon_is_a_shi/ginrh7v/;1610242357;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;"AoT episode 5 : 19k because with the one week break and episode 5 being a hype episode. - -Re zero episode 2 : 14k i just pulled this out of my ass but someone said that the next episode is gonna be a hype episode.";False;False;;;;1610204609;;1610205090.0;{};ginrkp3;False;t3_ktrgan;False;False;t1_ginmkk2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginrkp3/;1610242417;8;True;False;anime;t5_2qh22;;0;[]; -[];;;I_Cognito;;;[];;;;text;t2_8anbytoj;False;False;[];;It's not an error...;False;False;;;;1610204624;;False;{};ginrlo2;False;t3_ktrgan;False;False;t1_ginqe7d;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginrlo2/;1610242435;8;True;False;anime;t5_2qh22;;0;[]; -[];;;BananaBoat42069;;;[];;;;text;t2_3uj7edj4;False;False;[];;I'm so happy Re:Zero is number one , I've watched it about 28 times because I love the show. Number one recommended anime to get into psychological in my opinion.;False;False;;;;1610204693;;False;{};ginrpqd;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginrpqd/;1610242500;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;I think the only way to watch Beastars right now is to sail the seas so 1.5k is actually pretty good lol;False;False;;;;1610204708;;False;{};ginrqnd;False;t3_ktrgan;False;False;t1_ginr0mr;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginrqnd/;1610242516;16;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;Many people needs to watch Higurashi because it is one of the best psychological mystery out there. It deserves more recognition.;False;False;;;;1610204767;;False;{};ginru4h;False;t3_ktrgan;False;False;t1_ginmpul;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginru4h/;1610242572;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Keep trying, people hating on shows before they even had 3 episodes worked very well for rent a girlfriend and talentless nana, so good luck;False;False;;;;1610204785;;False;{};ginrv64;False;t3_kts9r0;False;True;t3_kts9r0;/r/anime/comments/kts9r0/warningore_dake_haireru_kakushi_dungeon_is_a_shi/ginrv64/;1610242590;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OrangeWild3060;;;[];;;;text;t2_9pwnju8u;False;False;[];;"https://myanimelist.net/anime/39617/Yakusoku_no_Neverland_2nd_Season look -https://myanimelist.net/anime/42203/Re_Zero_kara_Hajimeru_Isekai_Seikatsu_2nd_Season_Part_2 -the score, votes, and comments of re zero is higurashi are reversed the same for promised and black clover -the comments and the notes are reversed between re zero and higurashi same bc and tpn I invite you to go and check yourself if you do not believe me the 1800 comments were not on the episode of higurashi but that of re zero they have reverse seats (I don't speak English so sorry if that's not very understandable) https://amp.reddit.com/r/anime/comments/krq3pe/rezero_kara_hajimeru_isekai_seikatsu_season_2/higurashi is barely 300 comments it's a bug -https://amp.reddit.com/r/Higurashinonakakoroni/comments/kshra4/higurashi_no_naku_koro_ni_2020_episode_14/ -higurashi is barely 300 comments it's a bug";False;True;;comment score below threshold;;1610204789;;1610207258.0;{};ginrvf9;False;t3_ktrgan;False;True;t1_ginrlo2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginrvf9/;1610242594;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;MauledCharcoal;;;[];;;;text;t2_1uu3nanq;False;False;[];;Twitter is far more manga focused than Reddit. A lot of Twitter just sticks to watching what's popular where as here, that's true, but the norm here is to watch a handful of seasonals. So this sub tends to have more exposure to non-mainstream and non-manga anime. Just look at how big originals get here vs Twitter. (Again this is just generally obviously a ton of people on Twitter watch their seasonals.);False;False;;;;1610204806;;False;{};ginrwgh;False;t3_ktrgan;False;False;t1_ginqvp8;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginrwgh/;1610242610;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;Re:zero needs to absolutely dial it up to 11 next episode to be competition;False;False;;;;1610204848;;False;{};ginrywd;False;t3_ktrgan;False;False;t1_ginqvmn;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginrywd/;1610242651;10;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;It is such a relaxing and pleasant to watch with those amazing atmosphere and visuals.;False;False;;;;1610204900;;False;{};gins1zj;False;t3_ktrgan;False;False;t1_ginng6w;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gins1zj/;1610242702;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;" ->We shouldn't expect as big a drop of karma after the premiere I think, compared to new shows? - -Premiere is drop is always significant especially for sequels";False;False;;;;1610204923;;False;{};gins3bq;False;t3_ktrgan;False;False;t1_ginr0mr;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gins3bq/;1610242722;5;True;False;anime;t5_2qh22;;0;[]; -[];;;13beachesz;;;[];;;;text;t2_jfwrzht;False;False;[];;Re:Zero #1 periyat;False;False;;;;1610204940;;False;{};gins4br;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gins4br/;1610242738;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chika2chi;;;[];;;;text;t2_4dkz2y8e;False;False;[];;reminded that the sub is gonna be absolutely filled to the brim with ReZero and AoT content this season and it's gonna suck;False;False;;;;1610204954;;False;{};gins572;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gins572/;1610242751;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ellefied;;;[];;;;text;t2_me4rp;False;False;[];;Next week is going to be lit with the influx of shows!;False;False;;;;1610205046;;False;{};ginsate;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginsate/;1610242848;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;Okay so I downvoted it. I didn't really like the episode and I expected it to have many more upvotes, so I didn't feel an episode like that deserved to be that high on the karma rankings tbh. Maybe it is a bad reason and that's not how upvotes should be used, but I mean we have these charts and we do use them to rank shows. Since the final count wasn't that high I took out my downvote. I just thought it was a pretty weak episode and didn't think it deserved 15k+ or something like that.;False;False;;;;1610205125;;1610219644.0;{};ginsfjq;False;t3_ktrgan;False;False;t1_ginoxcp;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginsfjq/;1610242924;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;It didn't even get a proper fansub release until very recently after the karma cut off ended too;False;False;;;;1610205164;;False;{};ginshy0;False;t3_ktrgan;False;False;t1_ginrqnd;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginshy0/;1610242965;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;It's sad that this will probably be the only time Re:zero takes the #1 spot this season due to AOT;False;False;;;;1610205167;;False;{};ginsi49;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginsi49/;1610242967;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;I'm exciting to see all the reactions in YT.;False;False;;;;1610205169;;False;{};ginsia3;False;t3_ktrgan;False;False;t1_ginoda3;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginsia3/;1610242970;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"On average these would be my predictions: - -1st-2nd: Attack on Titan will win most of the time with occasional bouts of Re: Zero overtaking it during hype episodes. - -3rd-4th: Jujutsu Kaisen and Dr. Stone will fight for that one. There might be weeks where TPN beats either of them but not both. - -5th-10th: This is where the biggest shifts will happen. The Promised Neverland, Tensei Slime, Yuru Camp and Go-Toubun will probably grab the upper rank seats most of the time. However I'm a Spider so what? and Hataraku Saibou Black have a fair chance. Wild cards like Horimiya, Non Non Biyori and Mushoku Tensei might upset the balance though.";False;False;;;;1610205184;;1610205367.0;{};ginsj8a;False;t3_ktrgan;False;False;t1_ginmk53;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginsj8a/;1610242986;73;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;It won't be competition I reckon. As popular as Re zero is, this is AoT's final season.;False;False;;;;1610205210;;False;{};ginskra;False;t3_ktrgan;False;False;t1_ginrywd;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginskra/;1610243010;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Ellefied;;;[];;;;text;t2_me4rp;False;False;[];;Feels like Winter 2019 again except way more insane. The karma wars would be insane.;False;False;;;;1610205212;;False;{};ginskvr;False;t3_ktrgan;False;False;t1_ginmxli;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginskvr/;1610243012;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;I'm loving the new look of the chart.;False;False;;;;1610205222;;False;{};ginslgj;False;t3_ktrgan;False;False;t1_ginm5iz;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginslgj/;1610243022;7;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;Episode 5 is tomorrow?;False;False;;;;1610205247;;False;{};ginsn2f;False;t3_ktrgan;False;False;t1_ginn7tj;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginsn2f/;1610243051;5;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Don't forget Horimiya, I think so it has some big chance to grab a position in the top 5.;False;False;;;;1610205284;;False;{};ginsp9z;False;t3_ktrgan;False;False;t1_ginsj8a;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginsp9z/;1610243087;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Ellefied;;;[];;;;text;t2_me4rp;False;False;[];;"Next episode is supposed to be hyped for ReZero. I'm going: - - -AoT: 21342 - -ReZero: 14645";False;False;;;;1610205300;;False;{};ginsqav;False;t3_ktrgan;False;False;t1_ginntnf;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginsqav/;1610243105;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;Let's see if neverland can maintain or will it fizz out as the episodes progress as Manga readers say it will;False;False;;;;1610205320;;False;{};ginsrmp;False;t3_ktrgan;False;False;t1_ginsj8a;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginsrmp/;1610243126;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"I don't think you read the graph well, check again and pay attention, there's nothing wrong - -I don't even know how you are mixing things up, so just do a slowly double check";False;False;;;;1610205323;;False;{};ginsrti;False;t3_ktrgan;False;False;t1_ginrvf9;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginsrti/;1610243129;11;True;False;anime;t5_2qh22;;0;[]; -[];;;reddadz;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MysticEyes/;light;text;t2_oek5m;False;True;[];;Thank you! I’m still not satisfied so there could be minor tweaks for next week.;False;False;;;;1610205348;;False;{};ginstdy;True;t3_ktrgan;False;False;t1_ginslgj;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginstdy/;1610243155;5;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;The NHK (raw) livestream will be tomorrow while the actual episode will still be the day after tomorrow;False;False;;;;1610205368;;False;{};ginsuny;False;t3_ktrgan;False;True;t1_ginsn2f;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginsuny/;1610243176;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"I think we will see more of it soon. AoT's fanboys will try to downvote ReZero's threads and vice versa. - -I don't like it but that's the reality of the whole karma war.";False;False;;;;1610205416;;1610206750.0;{};ginsxsb;False;t3_ktrgan;False;False;t1_ginpdxe;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginsxsb/;1610243223;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;I feel this sub probably circle jerks too much about it. It's good but it's not really THAT good. I mean.not for me at least. And it's not that popular outside of reddit. It is insanely popular, just not second most popular anime levels of popular.;False;False;;;;1610205418;;False;{};ginsxwe;False;t3_ktrgan;False;True;t1_gino6zg;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginsxwe/;1610243225;2;True;False;anime;t5_2qh22;;0;[]; -[];;;reddadz;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MysticEyes/;light;text;t2_oek5m;False;True;[];;Yeah, the spider isekai show from yesterday shows up on next week’s chart. Same as AoT tomorrow.;False;False;;;;1610205433;;1610209674.0;{};ginsyu3;True;t3_ktrgan;False;True;t1_ginp8f2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginsyu3/;1610243241;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Bruh, pretty sure even the author didn't thought of this much while writing it lol;False;False;;;;1610205436;;False;{};ginsz18;False;t3_ktsgs3;False;True;t3_ktsgs3;/r/anime/comments/ktsgs3/my_hero_academia_theories_i_have_theories_that_i/ginsz18/;1610243245;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;"Chad Noblesse somehow making the cut 😎🤟 - -This was an extremely strong start to the season with strong episodes for pretty much everything. - -Cells at work Code Black ended up beating Cells at Work S2 and I imagine it's going to keep going this way. Black is darker and also doesn't require you to watch one whole season before it, but that first episode was pretty heavy stuff. Only the strong will make it to the end of this one. - -TPN got absolutely fucked over by it's off schedule release and having to sit under ReZero for it's entire run. I imagine next episode might possibly do better but I guess it won't be making 10K anymore 😔 - -Oddly enough, it seems ReZero was the most controversial episode this week with some finding it mediocre and others finding it good. I personally really liked and found it to be better than most of the episodes S2P1 and I'm even more excited for what's next now. As for the Karma war though, despite having a premiere boost it was still over 1K less than AoT's lowest episode so far. I'm going to wait to see how the next one does but ReZero is going to have a tough time, especially since AoT will probably only be doing 14K+ from now on. - -As for next week, - -**AOT EPISODE 5 IS COMING LET'S FUCKING GOOOOOOO** - -Every manga reader I've seen is excited for this episode (for reference, #AOTDeclarationOfWar was trending on Twitter), I am pretty much trembling while writing this. This episode pretty much kick things off for the show, I can not wait to see how well MAPPA delivers";False;False;;;;1610205520;;False;{};gint45j;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gint45j/;1610243329;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"AoT: 20k+ (Its too hard it predict lol) - -ReZero: Around 13.5k karma";False;False;;;;1610205527;;1610206992.0;{};gint4iu;False;t3_ktrgan;False;False;t1_ginmkk2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gint4iu/;1610243334;11;True;False;anime;t5_2qh22;;0;[]; -[];;;GawoopyDawoopy;;;[];;;;text;t2_3o1hesio;False;False;[];;My brain does a lot of theorizing;False;False;;;;1610205590;;False;{};gint8fj;True;t3_ktsgs3;False;True;t1_ginsz18;/r/anime/comments/ktsgs3/my_hero_academia_theories_i_have_theories_that_i/gint8fj/;1610243399;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;For me it's that good, s2 hasn't yet met my expectations but might after this season is truly over it very well might be;False;False;;;;1610205607;;False;{};gint9j2;False;t3_ktrgan;False;False;t1_ginsxwe;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gint9j2/;1610243417;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;[The followers of campfire anon-kun too.](https://i.imgur.com/rxHbeHN.jpg);False;False;;;;1610205631;;False;{};gintb1m;False;t3_ktrgan;False;False;t1_ginmten;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gintb1m/;1610243440;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Not only that, even SoL shows tend to do well in r/anime compared to elsewhere. Just see Yuru Camp's karma.;False;False;;;;1610205747;;False;{};ginti7h;False;t3_ktrgan;False;False;t1_ginrwgh;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginti7h/;1610243562;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Drink_Glum;;;[];;;;text;t2_8t3affy8;False;False;[];; Honestly, with the spade arc black clover should constantly rank top 3-5 with some episodes No.1, if it doesn’t it’s criminally slept on.;False;False;;;;1610205890;;False;{};gintqze;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gintqze/;1610243712;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Vpeyjilji57;;;[];;;;text;t2_15ti6p1p;False;False;[];;"1. Just strait up wrong. Sorry, don't know how to put that lightly. There have been at least five generations - Deku's mom claims to be a 4th generation quirk user in the first chapter. The best guess for how long they've been around anyone has is over 120 years. - -2. That's just anime logic. Same reason Asta, an allegedly normal human can shatter stone and swing around a sword twice his height. Same reason Rock Lee is able to work as a ninja. Same reason Zoro can slice mountains in half. I dunno why people focus too hard on MHA for this. - -3. I don't care hard enough to read this. Those categories exist solely because trying to quickly and simply categorise a power system as varied as quirks is an exercise in futility and they just needed a way to explain what Eraserhead does and doesn't work on.";False;False;;;;1610205893;;False;{};gintr5w;False;t3_ktsgs3;False;False;t3_ktsgs3;/r/anime/comments/ktsgs3/my_hero_academia_theories_i_have_theories_that_i/gintr5w/;1610243715;6;False;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;No bro, the content is entirely different;False;False;;;;1610205910;;False;{};gintsaa;False;t3_ktrgan;False;False;t1_ginpzc6;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gintsaa/;1610243734;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Intelligent-Act-1810;;;[];;;;text;t2_9qm3915z;False;False;[];;"[WARNING]This post is a shi- - --tpost read it if u wanna lose brain cells.";False;False;;;;1610205940;;False;{};gintu6s;False;t3_kts9r0;False;True;t3_kts9r0;/r/anime/comments/kts9r0/warningore_dake_haireru_kakushi_dungeon_is_a_shi/gintu6s/;1610243765;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Those are pretty specific numbers;False;False;;;;1610205966;;False;{};gintvtn;False;t3_ktrgan;False;False;t1_ginntnf;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gintvtn/;1610243791;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;"Hopefully, people realize that Re:Zero S2 P2 is airing lol... I have a feeling it got low karma because of the split cour... Well I think next episode will most likely trend, so hopefully it's enough to boost it's karma so... - -AoT: 18k - -Re:Zero: 14k";False;False;;;;1610205997;;False;{};gintxrw;False;t3_ktrgan;False;False;t1_ginmkk2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gintxrw/;1610243823;2;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;FYI never go to the YouTube comment section of anything related to AoT as they have massive spoilers (some people are jerks who don't want anime-only to enjoy).;False;False;;;;1610206012;;False;{};gintyq4;False;t3_ktrgan;False;False;t1_ginsia3;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gintyq4/;1610243851;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"You forgot Redo of a healer! - -[](#slowgrin)";False;False;;;;1610206015;;False;{};gintyxl;False;t3_ktrgan;False;False;t1_ginnxi8;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gintyxl/;1610243855;8;True;False;anime;t5_2qh22;;0;[]; -[];;;discuss-not-concuss;;;[];;;;text;t2_4szhiuz1;False;False;[];;they release on different days though so unless there are troll downvoters, I don’t see how both cannot be possible;False;False;;;;1610206017;;False;{};gintz0h;False;t3_ktrgan;False;False;t1_ginskra;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gintz0h/;1610243856;4;True;False;anime;t5_2qh22;;0;[]; -[];;;juances19;;HB;[];;https://kitsu.io/users/juances;dark;text;t2_17a18d;False;False;[];;"I think this is just another case of ""op not checking the show's tags before watching"". - -> Genres: Action, Adventure, Harem, Ecchi, Fantasy - -You know what to expect from that ¯\\\_(ツ)_/¯";False;False;;;;1610206035;;False;{};ginu05l;False;t3_kts9r0;False;True;t3_kts9r0;/r/anime/comments/kts9r0/warningore_dake_haireru_kakushi_dungeon_is_a_shi/ginu05l/;1610243879;2;True;False;anime;t5_2qh22;;0;[]; -[];;;discuss-not-concuss;;;[];;;;text;t2_4szhiuz1;False;False;[];;"I’m sure many fans want to break the 20k record so 22k will definitely be possible. - -Re:Zero releases on a different day and if it is as hype as what people say 15k sounds possible.";False;False;;;;1610206047;;False;{};ginu0y4;False;t3_ktrgan;False;False;t1_gino583;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginu0y4/;1610243893;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Fabafaba;;;[];;;;text;t2_y3r4l;False;False;[];;Is it really low-key though ?;False;False;;;;1610206063;;False;{};ginu1xg;False;t3_ktrgan;False;False;t1_ginp0tq;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginu1xg/;1610243910;12;True;False;anime;t5_2qh22;;0;[]; -[];;;AlterSaber7;;;[];;;;text;t2_9cde5yfb;False;False;[];;So far most of s2 has been setup. S1 covered 3 different arcs while s2 covers one extremely long arc;False;False;;;;1610206078;;False;{};ginu2ww;False;t3_ktrgan;False;False;t1_gint9j2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginu2ww/;1610243926;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Snipe-Out;;;[];;;dark;text;t2_5604j7dg;False;False;[];;11k is low-balling for the next episode of rezero. Around 13-14k upvotes is a better guess imo.;False;False;;;;1610206082;;False;{};ginu358;False;t3_ktrgan;False;False;t1_ginntnf;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginu358/;1610243929;10;True;False;anime;t5_2qh22;;0;[]; -[];;;spacedude997;;;[];;;;text;t2_2vc9b398;False;True;[];;I don’t really know if pure episode hype can compete with new season hype you feel me;False;False;;;;1610206094;;False;{};ginu3xr;False;t3_ktrgan;False;False;t1_ginu1xg;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginu3xr/;1610243943;8;True;False;anime;t5_2qh22;;0;[]; -[];;;G102Y5568;;;[];;;;text;t2_5blex;False;False;[];;"There’s legitimate stakes and tension, Subaru’s ability to return only makes it so we see the consequences of his failures. Doomsday is no longer a “what if” but a “yes, unless”, and that makes the tension so much more palpable. - -Subaru himself is a weak character that has to rely on unconventional methods to overcome seemingly impossible challenges. Everything he accomplishes, he earns. - -Meanwhile, the world itself is full of wonder and mystery. Nothing is to be taken for granted, and we sometimes don’t find out what’s actually going on until after multiple failures. - -Meanwhile the constant doom and stink of death gives its characters their chance to shine in the spotlight. Seeing how a character handles certain death or losing a loved one isn’t something another show can really get away with. - -All in all, it’s a well written show that builds its emotional tension and delivers satisfying conclusions to its arcs.";False;False;;;;1610206102;;False;{};ginu4gj;False;t3_ktrgan;False;False;t1_gino6zg;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginu4gj/;1610243952;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;"The thing with AoT is that we already got past its expected ""low"" episodes for the season, yeah I know that's insane. Although I guess there are some episodes that might not be as hype depending on what chapters they adapt in each episode, but I think from now on the manga basically has a ""holy shit"" moment like every two chapters.";False;False;;;;1610206111;;1610206722.0;{};ginu51h;False;t3_ktrgan;False;False;t1_ginsj8a;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginu51h/;1610243960;67;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"Haven't watched it but from what people have been saying - -1. Having to watch an OVA before the series which threw of a lot people leaving them confused - -2. Hot on the trails of of ToG was considered OK and GoH which was considered a train wreck - -3. It adapted too much chapters as those two which cut and changed soo much from the webtoon which pissed off a lot people - -4. People considered the show to be absolutely bland";False;False;;;;1610206198;;False;{};ginuafa;False;t3_ktrgan;False;False;t1_ginpixh;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginuafa/;1610244049;7;True;False;anime;t5_2qh22;;0;[]; -[];;;_alua_;;;[];;;;text;t2_653aqv55;False;False;[];;Well I’m happy Beastars at least made it to the top 10, considering it’s in Netflix jail.;False;False;;;;1610206246;;False;{};ginudg0;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginudg0/;1610244100;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;">KING's episode 5 has been trending on Twitter - -Is it only in US or everywhere else?, since I haven't even seen it trending in my country.";False;False;;;;1610206273;;1610206622.0;{};ginuf6s;False;t3_ktrgan;False;False;t1_ginn6qh;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginuf6s/;1610244130;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"And soon minecraft with Dr. Stone. With Higurashi, Yuru Camp, Promised Neverland, Hataraku Saibou, Dr. Stone and 5Toubun all airing within hours of each other, Thursdays are gonna be stacked. I wonder if that could lead to some of them cannibalizing the karma of their peers due to viewers putting some shows for later. - -[](#comfortfood)";False;False;;;;1610206284;;False;{};ginufxr;False;t3_ktrgan;False;False;t1_ginn2kv;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginufxr/;1610244142;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;He is going to have to redo his comment now;False;False;;;;1610206295;;False;{};ginugm8;False;t3_ktrgan;False;True;t1_gintyxl;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginugm8/;1610244154;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bhupeshpr25;;;[];;;;text;t2_78m9sk7m;False;False;[];;#Black Clover YES;False;False;;;;1610206323;;False;{};ginuie2;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginuie2/;1610244184;63;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;According to manga readers the bad part is not this season, so it will be good, the problem is that they are unintentionally (or not) killing the show hype, which can be a problem even in this season;False;False;;;;1610206329;;False;{};ginuisp;False;t3_ktrgan;False;False;t1_ginsrmp;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginuisp/;1610244192;26;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;True, i also really want it to break 20k karma but too high expectation is never good for me since I’m afraid it’ll be never met. But that aside, seeing how the title itself trended in twitter leaves me a bit more optimistic;False;False;;;;1610206369;;False;{};ginul9q;False;t3_ktrgan;False;False;t1_ginu0y4;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginul9q/;1610244234;19;True;False;anime;t5_2qh22;;0;[]; -[];;;crescent-rain;;;[];;;;text;t2_qk4gz;False;False;[];;Next week AOT gonna be declaring war on the new kids;False;False;;;;1610206373;;False;{};ginulgt;False;t3_ktrgan;False;False;t1_ginnzha;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginulgt/;1610244237;85;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;I appreciate the honesty and the fact that you took out your downvote later. I love these Karma Charts, but it's definitely interesting how they skew peoples' upvoting/downvoting tendencies. I definitely started upvoting anime more after these weekly threads.;False;False;;;;1610206381;;False;{};ginulyh;False;t3_ktrgan;False;False;t1_ginsfjq;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginulyh/;1610244245;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"Lot of people were like wait re:zero is airing? in the comments - -I believe it may pick up later if more people become aware of it an rejoin soon";False;False;;;;1610206396;;False;{};ginumw7;False;t3_ktrgan;False;False;t1_gintxrw;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginumw7/;1610244259;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;I have a feeling it will go the AoT S3P2 route with EP1 being low compared to later episodes;False;False;;;;1610206500;;False;{};ginutfg;False;t3_ktrgan;False;False;t1_ginumw7;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginutfg/;1610244374;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;"I'm not saying it is bad it's just surprising for me that based on Karma this is the second best anime show. I mean they hype came from season 1 since S2 exploded since the beginning. I personally consider S2 to be better than season 1 but for me it's a really good show and that's it. Yeah the world building is amazing and the characters are solid but the dialogue and the direction is a bit lacking. Again, it's just my personal opinion but I can't help but being a bit underwhelmed when you consider the amount of hype it has. I mean if we are talking about first season then The Promised Neverland is miles ahead for me. And yet it's not even close in karma. You can think Re0 is better but do you really think it's over two times its karma kind of better? - -For a show that hyped I expected nothing short of an absolutely master piece and I just don't see that in it. But well, reddit clearly does. But I think it's not fair to say ""it just has that much karma because it's a good show"" since plenty of good shows don't and Re0 is not as hyped anywhere else as it is here. So I think something in Re0 appeals to the reddit demographic specifically.";False;False;;;;1610206517;;False;{};ginuui6;False;t3_ktrgan;False;False;t1_gint9j2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginuui6/;1610244390;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;Youtube recommends me AoT videos just by clicking any kind of anime videos really scary tbh;False;False;;;;1610206599;;False;{};ginuzqf;False;t3_ktrgan;False;False;t1_gintyq4;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginuzqf/;1610244477;10;True;False;anime;t5_2qh22;;0;[]; -[];;;GhostOfLight;;;[];;;;text;t2_go8xe;False;False;[];;I wouldn’t be surprised if the One Piece episode blows up, but it will probably get most of its karma on r/OnePiece rather than here as that’s where episodes usually get the most discussion.;False;False;;;;1610206607;;False;{};ginv080;False;t3_ktrgan;False;False;t1_ginm8f9;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginv080/;1610244488;31;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;"Going by what LN readers said, I think ReZero could crack 15K for the first time. - -As for AoT, I'm thinking it will break 20K again but I'll low-ball and expect something in the 18-19K range.";False;False;;;;1610206625;;False;{};ginv1d0;False;t3_ktrgan;False;False;t1_ginmkk2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginv1d0/;1610244508;9;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;It had a subpar animation and they removed the girl (i don't remember her name) in the anime adaptation. They skipped a hell lot of chapters. And they changed the finale. That's it. But i still enjoyed this more than God of Highschool as the comedic aspect and character interactions are great.;False;False;;;;1610206627;;False;{};ginv1hj;False;t3_ktrgan;False;False;t1_ginpixh;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginv1hj/;1610244510;4;True;False;anime;t5_2qh22;;0;[]; -[];;;discuss-not-concuss;;;[];;;;text;t2_4szhiuz1;False;False;[];;"I don’t think anyone thinks this particular episode deserves 15k+ either since this is still the buildup episode. (Re:Zero only broke 12k 5 times last cour) - -We are just starting to see the wheels ~~spin~~ being made, don’t really know what you are expecting to see here. I would say it was a pretty good episode with a number of issues addressed.";False;False;;;;1610206641;;1610207371.0;{};ginv2ej;False;t3_ktrgan;False;False;t1_ginsfjq;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginv2ej/;1610244527;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;">Most Harem romances experience this in this subreddit too. No matter how good they become, they won’t be able to cross into the 9+ range. - -I bet in 1-2 years when 100Kanojo gets an anime it will be able to cross that.";False;False;;;;1610206664;;False;{};ginv3x3;False;t3_ktrgan;False;True;t1_ginneqj;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginv3x3/;1610244552;2;True;False;anime;t5_2qh22;;0;[]; -[];;;juances19;;HB;[];;https://kitsu.io/users/juances;dark;text;t2_17a18d;False;False;[];;I think that's just by virtue of having the last season airing so recently. Somoene that started watching anime dunno, 6 months ago did not have a monogatari season thrown to their face by seasonal anime.;False;False;;;;1610206666;;False;{};ginv41o;False;t3_ktrlxb;False;True;t1_ginn51a;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/ginv41o/;1610244554;0;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;I did forget about it...I'll see if I can put it somewhere next to Ex-Arm;False;False;;;;1610206774;;False;{};ginvawr;False;t3_ktrgan;False;False;t1_gintyxl;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginvawr/;1610244667;6;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;At one point it was trending worldwide in the entertainment category with more than 30K tweets but now it's not even trending in the US( maybe because already more than 10 hours have passed).;False;False;;;;1610206781;;False;{};ginvbdu;False;t3_ktrgan;False;False;t1_ginuf6s;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginvbdu/;1610244675;15;True;False;anime;t5_2qh22;;0;[]; -[];;;PureVII;;;[];;;;text;t2_146w6f;False;False;[];;As a big Re:Zero fan, AoT will be #1 for most, if not all of the season because I think its popularity is on a whole different level compared to Re:Zero. But I do think Re:Zero will have some episodes that will compete and possibly be #1.;False;False;;;;1610206817;;1610207227.0;{};ginvdql;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginvdql/;1610244713;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;96% was pretty common for AoT as well during the 48 hour period and it just barely climbs back up to 98% after that.;False;False;;;;1610206841;;False;{};ginvfbm;False;t3_ktrgan;False;False;t1_ginoxcp;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginvfbm/;1610244738;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610206843;;False;{};ginvfew;False;t3_ktrgan;False;True;t1_ginuui6;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginvfew/;1610244741;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Llooyd_;;;[];;;;text;t2_757o4eob;False;False;[];;"Ishihama's OPs will never not be eye candy. - -The man really couldn't help himself from including some unsettling parts tho lol.";False;False;;;;1610206952;;False;{};ginvmfs;False;t3_ktszq1;False;False;t3_ktszq1;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/ginvmfs/;1610244860;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Irru;;;[];;;;text;t2_5so5d;False;False;[];;Oh man that's very good.;False;False;;;;1610206995;;False;{};ginvp9l;False;t3_ktszq1;False;True;t3_ktszq1;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/ginvp9l/;1610244905;2;True;False;anime;t5_2qh22;;0;[]; -[];;;discuss-not-concuss;;;[];;;;text;t2_4szhiuz1;False;False;[];;the problem would be troll downvoters who purposely try to suppress the 20k, which might account for around 1-2k votes and leave AoT barely scratching 20k;False;False;;;;1610207044;;False;{};ginvsew;False;t3_ktrgan;False;False;t1_ginul9q;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginvsew/;1610244955;21;True;False;anime;t5_2qh22;;0;[]; -[];;;OrangeWild3060;;;[];;;;text;t2_9pwnju8u;False;False;[];;"the comments and the notes are reversed between re zero and higurashi same bc and tpn I invite you to go and check yourself if you do not believe me the 1800 comments were not on the episode of higurashi but that of re zero they have reverse seats (I don't speak English so sorry if that's not very understandable) -https://amp.reddit.com/r/anime/comments/krq3pe/rezero_kara_hajimeru_isekai_seikatsu_season_2/";False;True;;comment score below threshold;;1610207046;;False;{};ginvska;False;t3_ktrgan;False;True;t1_ginsrti;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginvska/;1610244958;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610207096;;False;{};ginvvu4;False;t3_ktrgan;False;True;t1_ginnq71;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginvvu4/;1610245010;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mardybovvin;;;[];;;;text;t2_2w3aqqev;False;False;[];;Crayon Shin Chan;False;False;;;;1610207219;;False;{};ginw40j;False;t3_ktt54h;False;True;t3_ktt54h;/r/anime/comments/ktt54h/sauce_kobayashi_dragon_maid/ginw40j/;1610245149;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;I see. Thanks for the info.;False;False;;;;1610207248;;False;{};ginw5vv;False;t3_ktrgan;False;False;t1_ginvbdu;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginw5vv/;1610245181;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TheSinfulMicrowave;;;[];;;;text;t2_3llo9rft;False;False;[];;"The devil is apart-timer - -Synopsis: Satan and his bud get kicked out of hell and have to live in Japan. Hijinx ensue.";False;False;;;;1610207280;;False;{};ginw7z4;False;t3_ktt54h;False;True;t3_ktt54h;/r/anime/comments/ktt54h/sauce_kobayashi_dragon_maid/ginw7z4/;1610245214;2;True;False;anime;t5_2qh22;;0;[]; -[];;;easy_computer;;;[];;;;text;t2_1ye9dhf0;False;False;[];;Hinamatsuri was OK for me;False;False;;;;1610207282;;False;{};ginw84k;False;t3_ktt54h;False;True;t3_ktt54h;/r/anime/comments/ktt54h/sauce_kobayashi_dragon_maid/ginw84k/;1610245216;1;True;False;anime;t5_2qh22;;0;[]; -[];;;slinkroc;;;[];;;;text;t2_i289b;False;False;[];;Konosuba is pretty funny;False;False;;;;1610207364;;False;{};ginwdeh;False;t3_ktt54h;False;True;t3_ktt54h;/r/anime/comments/ktt54h/sauce_kobayashi_dragon_maid/ginwdeh/;1610245301;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iw2kl;;;[];;;;text;t2_9k8gikvs;False;False;[];;Asobi Asobase. You'll die from laughter. And saiki K is pretty funny. Lucky star is also another good comedy.;False;False;;;;1610207377;;False;{};ginwe9w;False;t3_ktt54h;False;True;t3_ktt54h;/r/anime/comments/ktt54h/sauce_kobayashi_dragon_maid/ginwe9w/;1610245315;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spinfinity;;;[];;;;text;t2_6czvz;False;False;[];;I must be the only one who's never seen Re:Zero but I'm happy to see a good amount of variety as well as Black Clover in the top 5! I haven't read the manga but I hope it stays in the top 10 at least, along with AoT and JJK.;False;False;;;;1610207417;;False;{};ginwgys;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginwgys/;1610245362;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;If it manages to keep above 1k it can be on the ranking, but will be very hard to be on the top 5, and it's impossible for number 1, we still have 7 of the biggest anime this season to premiere;False;False;;;;1610207480;;False;{};ginwkyf;False;t3_ktrgan;False;False;t1_gintqze;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginwkyf/;1610245431;2;True;False;anime;t5_2qh22;;0;[]; -[];;;who-is-spagetty;;;[];;;;text;t2_5v0nw4ez;False;False;[];;one piece, the promised neverland, clannad, tamako love story, full metal panic, toradora,;False;False;;;;1610207508;;False;{};ginwmur;False;t3_ktt54h;False;True;t3_ktt54h;/r/anime/comments/ktt54h/sauce_kobayashi_dragon_maid/ginwmur/;1610245465;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;Holy shit I love it. I don't know if it completely fits the tone of the show but who cares when it looks that good?;False;False;;;;1610207565;;False;{};ginwqm3;False;t3_ktszq1;False;False;t3_ktszq1;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/ginwqm3/;1610245529;45;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610207587;;False;{};ginws5n;False;t3_ktt54h;False;True;t1_ginw7z4;/r/anime/comments/ktt54h/sauce_kobayashi_dragon_maid/ginws5n/;1610245556;1;True;False;anime;t5_2qh22;;0;[]; -[];;;themanwhomfall;;;[];;;;text;t2_6gebybp0;False;False;[];;Sgt Frog also known as Sgt Keroro.;False;False;;;;1610207595;;False;{};ginwsmo;False;t3_ktt54h;False;True;t3_ktt54h;/r/anime/comments/ktt54h/sauce_kobayashi_dragon_maid/ginwsmo/;1610245565;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Sorry /u/dsahgiosahgioadsh, this comment has been removed because some spoiler tags did not include a description of the spoiler content inside the brackets. Please make sure to label all your spoilers so that other users know what is being spoiled and to ensure the visibility of the spoilers with mobile applications. - -[](#yanderebot) - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610207598;moderator;False;{};ginwsuy;False;t3_ktt54h;False;True;t1_ginws5n;/r/anime/comments/ktt54h/sauce_kobayashi_dragon_maid/ginwsuy/;1610245569;1;False;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;"You are dreaming. ""Zenon's Power 161"" episode and the love episode have a chance of reaching top 5 but just those. - -I doubt BC will even be on the top 5 again unless shows that this sub are obssesed with like Quintuplets or Slime skip a week or two.";False;False;;;;1610207605;;False;{};ginwtcg;False;t3_ktrgan;False;False;t1_gintqze;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginwtcg/;1610245578;5;True;False;anime;t5_2qh22;;0;[]; -[];;;dsahgiosahgioadsh;;;[];;;;text;t2_9aa6vk09;False;False;[];;"While it's a decent show, it feels like it completely squanders its premise. He goes to Earth and [TDIAPT](/s ""pretty much immediately becomes just a regular guy, with his origin having no effect on his personality or characterization at all and basically being nothing more than"") a thin excuse for a plot that could just as easily have been done in any of lots of other ways without the supposed premise giving the false impression that the show would be something it isn't. (I just sort of feel like people should be warned that the show won't be anything like they'd expect based on that premise.)";False;False;;;;1610207716;;False;{};ginx0n3;False;t3_ktt54h;False;True;t1_ginw7z4;/r/anime/comments/ktt54h/sauce_kobayashi_dragon_maid/ginx0n3/;1610245702;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CosmicPenguin_OV103;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cosmic_Penguin;light;text;t2_1ufwqhs7;False;True;[];;"[Steins;Gate spoilers](/s ""This is as emotional as I Failed I Failed I Failed....and from the same VA too, of course being so experienced there’s no doubt that Yukari Tamura would nail it every single time."")";False;False;;;;1610207719;;False;{};ginx0ve;False;t3_ktrgan;False;False;t1_ginmm17;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginx0ve/;1610245706;29;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;As long as it doesnt involve Emilia i'm cool with it.;False;True;;comment score below threshold;;1610207729;;False;{};ginx1m3;False;t3_ktrgan;False;True;t1_gins572;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginx1m3/;1610245717;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Now I understand where you are wrong, this light blue part is not referring to the series on the right, it's about the series on the left - -[it's a slight design change, but the positions are the same](https://www.reddit.com/r/anime/comments/kqyz2i/ranime_annual_karma_ranking_2020/?utm_medium=android_app&utm_source=share)";False;False;;;;1610207759;;False;{};ginx3mv;False;t3_ktrgan;False;False;t1_ginvska;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginx3mv/;1610245751;13;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;"EP5 will get 20k(I hope) but realistically I predict it will get about 17.5-18.5k, which is pretty insane anyway. The parts adapted will make the anime onlies go crazy, and they will also be things us manga readers have been waiting to be adapted for a very long time. - -""Episode 5"" has been hyped ever since we got the news of ""2 chapters per episode"" pacing, so I think it has chances of going infinity and beyond.";False;False;;;;1610207782;;False;{};ginx560;False;t3_ktrgan;False;False;t1_ginmkk2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginx560/;1610245776;22;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Inb4 it crosses 2k karma lol;False;False;;;;1610207813;;False;{};ginx7c3;False;t3_ktrgan;False;False;t1_ginvawr;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginx7c3/;1610245815;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"Amazing how Black Clover is actual doing well, I still remember the time when Black Clover was widely hated due to its early episodes and arc. - -Even more impressive that it's the standard Pierrot non-seasonal ongoing type of series, but it still had enough clout to make a mark in the reddit rankings. I mean in this week, it's #5 in the karma rankings and the 2nd most favorite episode, they are the dark horse winner of Winter Week #1. - -Black Clover really is an example and solid proof that ""it does gets better"", or ""when it hits, it really hits"".";False;False;;;;1610207856;;1610227062.0;{};ginxa6a;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginxa6a/;1610245863;73;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;"""only 5 times"" it's not only, that's actually a lot lol";False;False;;;;1610207865;;False;{};ginxat1;False;t3_ktrgan;False;False;t1_ginv2ej;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginxat1/;1610245873;6;True;False;anime;t5_2qh22;;0;[]; -[];;;smiley-rell;;;[];;;;text;t2_9iaznvjw;False;False;[];;Lol. Am I the only one that wanted to know the back story to why koizumi loved ramen so much? It could have been silly and I still would take it.;False;False;;;;1610207915;;False;{};ginxeb5;False;t3_ktt8mm;False;False;t3_ktt8mm;/r/anime/comments/ktt8mm/cant_help_not_to_sin_with_this_back_fat_koizumi/ginxeb5/;1610245930;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"While the top 2 will always be AOT and Re:Zero, it's the 3rd spot that becomes a battlefield. - -Jujutsu Kaisen, Neverland, Dr. Stone, Slime, and Quintuplets are all strong contenders for the bronze spot, there are some darkhorse competitors like Camp and Beastars, or even Black Clover.";False;False;;;;1610208009;;False;{};ginxkn4;False;t3_ktrgan;False;False;t1_ginmavp;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginxkn4/;1610246036;36;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;I think episode 6 and 7 will do much better honestly, what's happening here is that manga readers are still thinking with manga mind, episode 6 is much more appealing for anime onlies;False;False;;;;1610208078;;False;{};ginxp43;False;t3_ktrgan;False;False;t1_ginx560;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginxp43/;1610246110;35;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;Crazy that Noblesse made it in the top 15, and just in time for their season finale.;False;False;;;;1610208094;;False;{};ginxq8w;False;t3_ktrgan;False;True;t1_ginm5iz;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginxq8w/;1610246131;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610208214;;False;{};ginxy6j;False;t3_ktrgan;False;True;t1_ginrwgh;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginxy6j/;1610246268;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kanene09;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/;light;text;t2_pbrof;False;False;[];;As a Re Zero fan, I know pretty well Shingeki is gonna wreck the hell out of the karma this and the following weeks. There will be no competition. The most Re Zero can make is 15k, but SnK can reach up to 20k. Still a dream season.;False;False;;;;1610208233;;1610223983.0;{};ginxzgq;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginxzgq/;1610246288;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Lovro26;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Lovro26;light;text;t2_17kxi3pl;False;True;[];;"[ED - ""Yakusoku"" by Friends](https://streamable.com/er3lmm) - -[HQ ver. of the OP](https://streamable.com/4fe24v)";False;False;;;;1610208369;;False;{};giny8hp;True;t3_ktszq1;False;False;t3_ktszq1;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/giny8hp/;1610246442;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;The total average karma of the top 15 anime for the [WHOLE of 2020](https://www.reddit.com/r/anime/comments/kqyz2i/ranime_annual_karma_ranking_2020/) (spanning four seasons) was 68k, we might beat that with just shows from this season.;False;False;;;;1610208372;;False;{};giny8ov;False;t3_ktrgan;False;False;t1_ginnj9b;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giny8ov/;1610246446;10;True;False;anime;t5_2qh22;;0;[]; -[];;;PainStorm14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Gekkostate14?order=4&order2=9&";light;text;t2_x23w1;False;False;[];;After 6 decades of evolution we finally have perfect anime eye design;False;False;;;;1610208451;;False;{};ginydzc;False;t3_ktszq1;False;False;t3_ktszq1;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/ginydzc/;1610246534;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Mage_of_Shadows;;;[];;;;text;t2_n8o12;False;False;[];;"[Horimiya manga](/s ""Seems like a focus on the Yuki and Tooru sideship which makes me happy but also a little confused given the little progress that have."")";False;False;;;;1610208464;;False;{};ginyet3;False;t3_ktszq1;False;False;t3_ktszq1;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/ginyet3/;1610246548;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610208517;moderator;False;{};ginyig3;False;t3_kttjux;False;True;t3_kttjux;/r/anime/comments/kttjux/need_anime_to_watch_what_your_recommendations/ginyig3/;1610246610;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi TheNameIsVV123, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610208518;moderator;False;{};ginyih6;False;t3_kttjux;False;True;t3_kttjux;/r/anime/comments/kttjux/need_anime_to_watch_what_your_recommendations/ginyih6/;1610246610;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;Crazy to see Yuru Camp third in Karma. Definitely deserved.;False;False;;;;1610208548;;False;{};ginykit;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginykit/;1610246643;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;"I agree with you, but the thing here is that the abundance of manga readers who are so hyped for the episode can alone make it do very amazing. - -But yeah, Episode 6,7 and 8 will have more ""hype moments"" as they are, but tomorrow's ep if adapted good will be one of the best dialogue episodes of all time, so yeah I have sort of high expectations.";False;False;;;;1610208558;;False;{};ginyl5o;False;t3_ktrgan;False;False;t1_ginxp43;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginyl5o/;1610246655;18;True;False;anime;t5_2qh22;;0;[]; -[];;;UDani11;;;[];;;;text;t2_3urk0qno;False;False;[];;Where do you vote for these?;False;False;;;;1610208622;;False;{};ginyph2;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginyph2/;1610246730;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610208690;moderator;False;{};ginyu19;False;t3_kttlt0;False;True;t3_kttlt0;/r/anime/comments/kttlt0/where_can_i_watch_the_first_2_loghh_movies_for/ginyu19/;1610246809;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"> especially for sequels - -Ah, thought it wouldn't be as big a drop for sequels, given people who watch ep1 probably want to watch the whole thing (unlike new shows, for which a lot of people can watch ep1 but drop it).";False;False;;;;1610208770;;False;{};ginyzek;False;t3_ktrgan;False;True;t1_gins3bq;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginyzek/;1610246902;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FrenziedHero;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FrenziedHero;light;text;t2_11lsoj;False;False;[];;"The start of a new year and new season, and some interesting stuff in the rankings right now that I expect to change for next week's ranking; (low karma entries and episode scoring going down to 7.77 with a few low 8s). - -That aside, nice to see Black Clover have a strong start for the beginning of the year as 5th in karma and 2nd in ranking. It feels like a bit of a repeat from last year since it just so happens to be another canon episode. - -Re:Zero managed to open up at the top of the chart again, albeit AoT was on break, so I don't have too much expectation that it will happen again, but I welcome all surprises. - -Assuming the karma for Neverland, Yuru Camp, and Quints doesn't drop too much and stays pretty stable, combined with AoT and JJK returning; the top of the chart might actually have a relatively nice looking curve similar to Winter last year with not too much of a drop in between the higher entries. - -I can also foresee when Slime S2 begins proper that it will also join the others in the top of the chart.";False;False;;;;1610208793;;False;{};ginz10h;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginz10h/;1610246930;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;They are the value of karma for the first 48h after the thread for said anime is posted on r/anime;False;False;;;;1610208827;;False;{};ginz3bf;False;t3_ktrgan;False;False;t1_ginyph2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginz3bf/;1610246973;7;True;False;anime;t5_2qh22;;0;[]; -[];;;FireRifle64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FireRifle64;light;text;t2_29fr8mww;False;False;[];;OOOOO, Black Clover made its way, nice.;False;False;;;;1610208833;;False;{};ginz3qq;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginz3qq/;1610246980;23;True;False;anime;t5_2qh22;;0;[]; -[];;;chika2chi;;;[];;;;text;t2_4dkz2y8e;False;False;[];;didn't watch the later part of season 2, is she still boring?;False;False;;;;1610208877;;False;{};ginz6qn;False;t3_ktrgan;False;False;t1_ginx1m3;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginz6qn/;1610247029;0;True;False;anime;t5_2qh22;;0;[]; -[];;;crypto_261;;;[];;;;text;t2_89gxyqnf;False;False;[];;Boku no hero academia, Parasyte maxim, noragami;False;False;;;;1610208924;;False;{};ginza0q;False;t3_kttjux;False;False;t3_kttjux;/r/anime/comments/kttjux/need_anime_to_watch_what_your_recommendations/ginza0q/;1610247080;0;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;*sigh* yeah...;False;False;;;;1610208944;;False;{};ginzbcu;False;t3_ktrgan;False;False;t1_ginvsew;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginzbcu/;1610247101;7;True;False;anime;t5_2qh22;;0;[]; -[];;;YungFeetGod69;;;[];;;;text;t2_5j1ed3b6;False;False;[];;Not me. I'm an alcoholic and really looking forward to the drinking episode next week;False;False;;;;1610208960;;False;{};ginzcfo;False;t3_ktrgan;False;True;t1_ginnan3;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginzcfo/;1610247120;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Nick_Tam_Air;;;[];;;;text;t2_7kwcv6g;False;False;[];;does anyone have a link the episode? i cannot find it anywhere;False;False;;;;1610208985;;False;{};ginzeam;False;t3_ktszq1;False;False;t3_ktszq1;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/ginzeam/;1610247148;4;True;False;anime;t5_2qh22;;0;[]; -[];;;asscrackrash;;;[];;;;text;t2_9jhv8y1m;False;False;[];;"a few of ishihama's openings for people interested. - -[kamichu](https://animethemes.moe/video/Kamichu-OP1.webm) - -[a-channel](https://animethemes.moe/video/AChannel-OP1.webm) - -[aot op2](https://animethemes.moe/video/ShingekiNoKyojin-OP2.webm) - -[saekano op2](https://animethemes.moe/video/SaekanoS2-OP1-NCBD1080.webm) - -[psycho-pass op3](https://animethemes.moe/video/PsychoPassS2-OP1.webm) - -- - -and [more.](https://w.atwiki.jp/enshutsu/pages/471.html)";False;False;;;;1610209017;;1610209311.0;{};ginzgeh;False;t3_ktszq1;False;False;t1_ginvmfs;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/ginzgeh/;1610247182;12;True;False;anime;t5_2qh22;;0;[]; -[];;;ezouh75;;;[];;;;text;t2_1wuifo9u;False;False;[];;Looks like this might be worth watching. I always end up hungry for the food they show on these types of anime. Too bad I don’t live near a Ramen Shop.;False;False;;;;1610209029;;False;{};ginzh7v;False;t3_ktt8mm;False;True;t3_ktt8mm;/r/anime/comments/ktt8mm/cant_help_not_to_sin_with_this_back_fat_koizumi/ginzh7v/;1610247195;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;AND hataraku saibou black, that's actually doing better than the vanilla version, it has the edgY;False;False;;;;1610209113;;False;{};ginzmwp;False;t3_ktrgan;False;False;t1_ginufxr;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginzmwp/;1610247287;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"Re:zero anime and Kaguya manga are the absolute pinnacles of a series appealing to redditors - -It's hard to truly grasp the hype a series gets in it's demographic just look at demon slayer, the manga is the selling 10x the next series and mugen Train is going to be the highest grossing film of 2020 - -To on outsider it may seem confusing and wrong; to them the show might be undeserving of such a high honour because they themselves don't hold it to such high degree - -People can't always understand what everyone else appreciates since everyone has their own predetermined preferences";False;False;;;;1610209124;;False;{};ginznoz;False;t3_ktrgan;False;False;t1_ginuui6;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginznoz/;1610247300;10;True;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;Doubt that with jujitsu coming back.;False;False;;;;1610209124;;False;{};ginznpq;False;t3_ktrgan;False;True;t1_gintqze;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginznpq/;1610247301;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> I must be the only one who's never seen Re:Zero - -Nonsense, [Trailer](https://www.youtube.com/watch?v=ETWPtIfesyA) if you're interested.";False;False;;;;1610209143;;False;{};ginzozc;False;t3_ktrgan;False;False;t1_ginwgys;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginzozc/;1610247322;13;True;False;anime;t5_2qh22;;0;[]; -[];;;AlixJ;;;[];;;;text;t2_2al0em37;False;False;[];;Plot twist : this might be the last time ever re zero is first on this chart!;False;False;;;;1610209165;;False;{};ginzqiv;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginzqiv/;1610247349;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ohaimike;;;[];;;;text;t2_5ovb2;False;False;[];;"Ra-ra-ra-ramen. - -Daisuki. - -Koizumi-san.";False;False;;;;1610209185;;False;{};ginzrx8;False;t3_ktt8mm;False;False;t3_ktt8mm;/r/anime/comments/ktt8mm/cant_help_not_to_sin_with_this_back_fat_koizumi/ginzrx8/;1610247370;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeowlite;;;[];;;;text;t2_xyzpq;False;False;[];;Mushoku tensei ...which will be air tomorrow;False;False;;;;1610209195;;False;{};ginzsm7;False;t3_kttjux;False;True;t3_kttjux;/r/anime/comments/kttjux/need_anime_to_watch_what_your_recommendations/ginzsm7/;1610247382;0;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Banana Fish - -Vinland Saga - -The Promised Neverland - -Erased - -Seirei no Moribito - -Houseki no Kuni - -Made in Abyss - -Mahou Shoujo Madoka Magica - -Psycho-Pass - -Akatsuki no Yona - -Black Lagoon - -Assassination Claasroom - -One Punch Man";False;False;;;;1610209223;;1610212209.0;{};ginzujd;False;t3_kttjux;False;False;t3_kttjux;/r/anime/comments/kttjux/need_anime_to_watch_what_your_recommendations/ginzujd/;1610247413;5;True;False;anime;t5_2qh22;;0;[]; -[];;;bvblara;;;[];;;;text;t2_8d01xs66;False;False;[];;YES.;False;False;;;;1610209260;;False;{};ginzx42;False;t3_kttrln;False;True;t3_kttrln;/r/anime/comments/kttrln/would_you_want_to_join_a_watch_party/ginzx42/;1610247458;2;True;False;anime;t5_2qh22;;0;[]; -[];;;discuss-not-concuss;;;[];;;;text;t2_4szhiuz1;False;False;[];;"it isn’t “only 5 times” but “only 12k” which was in response to the comment of Re:Zero breaking 15k for this episode (which was just short of 12k) - -14k once for premiere and 13k twice iirc for episode Dadbaru & 8";False;False;;;;1610209260;;1610215792.0;{};ginzx46;False;t3_ktrgan;False;False;t1_ginxat1;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginzx46/;1610247458;7;True;False;anime;t5_2qh22;;0;[]; -[];;;gst4158;;;[];;;;text;t2_bcltr;False;False;[];;I didn't realize Fate Carnival was airing already. Is it streaming anywhere?;False;False;;;;1610209265;;False;{};ginzxeo;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/ginzxeo/;1610247463;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AngryNeko;;;[];;;;text;t2_r2ztu;False;False;[];;Fairy Tail;False;False;;;;1610209284;;False;{};ginzyq9;False;t3_kttjux;False;True;t3_kttjux;/r/anime/comments/kttjux/need_anime_to_watch_what_your_recommendations/ginzyq9/;1610247486;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spinfinity;;;[];;;;text;t2_6czvz;False;False;[];;Thanks. :) Looks epic, I do plan on checking it out soon, I just have a massive backlog and not enough time haha.;False;False;;;;1610209316;;False;{};gio00y7;False;t3_ktrgan;False;False;t1_ginzozc;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio00y7/;1610247523;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610209390;;False;{};gio0648;False;t3_kttlt0;False;True;t3_kttlt0;/r/anime/comments/kttlt0/where_can_i_watch_the_first_2_loghh_movies_for/gio0648/;1610247614;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;I get that, you might as well wait until this season is finished.;False;False;;;;1610209439;;False;{};gio09ic;False;t3_ktrgan;False;False;t1_gio00y7;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio09ic/;1610247682;7;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610209517;moderator;False;{};gio0ex3;False;t3_kttvqm;False;True;t3_kttvqm;/r/anime/comments/kttvqm/please_help_me_figure_out_what_this_was/gio0ex3/;1610247780;1;False;False;anime;t5_2qh22;;0;[]; -[];;;spinfinity;;;[];;;;text;t2_6czvz;False;False;[];;I probably will, I still need to catch up to some One Piece and I'm in the middle of Iron Blooded Orphans. I also need to make time for The Promised Neverland at some point.;False;False;;;;1610209524;;False;{};gio0fg2;False;t3_ktrgan;False;True;t1_gio09ic;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio0fg2/;1610247795;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sdd264;;;[];;;;text;t2_1g5wqrbo;False;False;[];;As predicted, Higurashi Gou got points improved as it entered Answer arcs part, really glad for it. However, it has already lost huge part of watchers, I even doubt whether it'll manage to remain in top 15 next week. Urusekai Picnic started decently, I hope it won't betray my expectations. Back Arrow got surprisingly no attention, maybe everyone will catch up after several episodes. Judjing from the first episode, it feels like I returned to 00s, when plenty of anime felt fresh, kinda nostalgia. Hope it'll develop into a nice story;False;False;;;;1610209526;;False;{};gio0fk4;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio0fk4/;1610247800;11;True;False;anime;t5_2qh22;;0;[]; -[];;;the_explorer2003;;;[];;;;text;t2_1pr2h29t;False;False;[];;Damn maybe jujutsu kaisen will never be able to reach second place and first, re zero and SNK will always be topping, idk about TPN since it could increase and give competition to JJK;False;False;;;;1610209539;;False;{};gio0gg4;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio0gg4/;1610247819;2;True;False;anime;t5_2qh22;;0;[]; -[];;;genasugelan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Genasugelan;light;text;t2_15kv3y;False;False;[];;What the hell is that episode 24.9 for Slime? Do I need to watch it?;False;False;;;;1610209587;;False;{};gio0jru;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio0jru/;1610247877;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Metal_dragon92;;;[];;;;text;t2_8yk8hjdt;False;False;[];;"One of my old favorites is “Yu Yu Hakusho: Ghost Files” -Formerly just called “Yu Yu Hakusho” -It’s older (1990’s) but it was made by the creator of Hunter X Hunter!";False;False;;;;1610209610;;False;{};gio0lcn;False;t3_kttjux;False;False;t3_kttjux;/r/anime/comments/kttjux/need_anime_to_watch_what_your_recommendations/gio0lcn/;1610247903;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tozerna7;;;[];;;;text;t2_8t85h1zu;False;False;[];;I’m thinking I wanna start doing it tbh. Kinda start like a random anime watch with people so that way they don’t have to watch alone. I typically always watch alone. What do you watch?;False;False;;;;1610209622;;False;{};gio0m5z;True;t3_kttrln;False;True;t1_ginzx42;/r/anime/comments/kttrln/would_you_want_to_join_a_watch_party/gio0m5z/;1610247919;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610209721;moderator;False;{};gio0t0q;False;t3_ktty89;False;True;t3_ktty89;/r/anime/comments/ktty89/is_banana_fish_a_good_watch_and_what_is_it_about/gio0t0q/;1610248039;1;False;False;anime;t5_2qh22;;0;[]; -[];;;MadHouseFire;;;[];;;;text;t2_2eklschr;False;False;[];;The problem for me is i watched 450+ anime so i can only watch new season anime or the reql underground stuff;False;False;;;;1610209794;;False;{};gio0y0h;False;t3_kttrln;False;True;t3_kttrln;/r/anime/comments/kttrln/would_you_want_to_join_a_watch_party/gio0y0h/;1610248125;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dangerous_ballsack69;;;[];;;;text;t2_71tc06ku;False;False;[];;It's not there;False;False;;;;1610209874;;False;{};gio13o3;True;t3_kttlt0;False;False;t1_gio0648;/r/anime/comments/kttlt0/where_can_i_watch_the_first_2_loghh_movies_for/gio13o3/;1610248221;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tozerna7;;;[];;;;text;t2_8t85h1zu;False;False;[];;Dang you’ve seen lots! That’s cool though, I wish I had more time to watch anime these days lol I get you though. But hey, if you liked what you saw would you be opposed to watching again? I have a few that I wouldn’t mind rewatching, some though..I wouldn’t waste my time 😂;False;False;;;;1610209921;;False;{};gio16xc;True;t3_kttrln;False;True;t1_gio0y0h;/r/anime/comments/kttrln/would_you_want_to_join_a_watch_party/gio16xc/;1610248278;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610209949;;False;{};gio18y0;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio18y0/;1610248312;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Sadly another recap of season 1.;False;False;;;;1610209953;;False;{};gio1980;False;t3_ktrgan;False;False;t1_gio0jru;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio1980/;1610248316;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MadHouseFire;;;[];;;;text;t2_2eklschr;False;False;[];;Well the first year i watched anime i had nothing better to do so i watched 250 anime in that year.;False;False;;;;1610209973;;1610211256.0;{};gio1akd;False;t3_kttrln;False;True;t1_gio16xc;/r/anime/comments/kttrln/would_you_want_to_join_a_watch_party/gio1akd/;1610248337;0;True;False;anime;t5_2qh22;;0;[]; -[];;;arakneo_;;;[];;;;text;t2_3ntg4oai;False;False;[];;no kumo? sad;False;False;;;;1610209977;;False;{};gio1ayk;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio1ayk/;1610248344;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DavidS0512;;;[];;;;text;t2_rhdoo;False;False;[];;It hasn't aired in english yet. I think 12pm eastern is when it airs on Funimation.;False;False;;;;1610210002;;False;{};gio1cm9;False;t3_ktszq1;False;False;t1_ginzeam;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/gio1cm9/;1610248373;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Eragonnogare;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/Eragon/;light;text;t2_cs0a4f;False;False;[];;Is it just me or is the airing period at the top sorta off?;False;False;;;;1610210013;;False;{};gio1dci;False;t3_ktrgan;False;True;t1_ginm5iz;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio1dci/;1610248391;2;True;False;anime;t5_2qh22;;0;[]; -[];;;genasugelan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Genasugelan;light;text;t2_15kv3y;False;False;[];;Oh ok, then I don't need to watch that.;False;False;;;;1610210031;;False;{};gio1ekp;False;t3_ktrgan;False;False;t1_gio1980;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio1ekp/;1610248414;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dister_;;;[];;;;text;t2_525l8hrt;False;False;[];;I still think it has the chance for 1 or 2 wins when hype episode airs and aot might have some slow episodes or depending of how both are adapted. But ye hard to compete vs a mainstream popular show in the final season. Re zero would need to be in its later arcs to have a chance to beat aot records;False;False;;;;1610210058;;False;{};gio1gf9;False;t3_ktrgan;False;True;t1_ginngui;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio1gf9/;1610248446;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Sure;False;False;;;;1610210060;;False;{};gio1ghv;False;t3_kttrln;False;True;t3_kttrln;/r/anime/comments/kttrln/would_you_want_to_join_a_watch_party/gio1ghv/;1610248447;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Neverx_13;;;[];;;;text;t2_8708yf9;False;False;[];;??? Episode 5 is going to be out everywhere tomorrow;False;False;;;;1610210071;;False;{};gio1hbn;False;t3_ktrgan;False;False;t1_ginsuny;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio1hbn/;1610248461;19;True;False;anime;t5_2qh22;;0;[]; -[];;;bvblara;;;[];;;;text;t2_8d01xs66;False;False;[];;Dark fantasy animes, Shonen, Sometimes romance, I like psychological animes too like steinsgate and classroom of the elite- anything tbh;False;False;;;;1610210073;;False;{};gio1hfb;False;t3_kttrln;False;True;t1_gio0m5z;/r/anime/comments/kttrln/would_you_want_to_join_a_watch_party/gio1hfb/;1610248462;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Back arrow is a Friday show, they are not in this ranking only next week, but either way the episode only has 330 karma so probably it won't make to the top 15 next week;False;False;;;;1610210077;;False;{};gio1hq4;False;t3_ktrgan;False;False;t1_gio0fk4;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio1hq4/;1610248468;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Banana fish is a crime thriller with gangstas and drugs and such, also it's low-key bl;False;False;;;;1610210162;;False;{};gio1nnh;False;t3_ktty89;False;False;t3_ktty89;/r/anime/comments/ktty89/is_banana_fish_a_good_watch_and_what_is_it_about/gio1nnh/;1610248572;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Fabafaba;;;[];;;;text;t2_y3r4l;False;False;[];;I mean didn't AOT do it in season 3 anyways?;False;False;;;;1610210187;;False;{};gio1pcz;False;t3_ktrgan;False;False;t1_ginu3xr;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio1pcz/;1610248599;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Spider is a Friday show, they are not in this ranking because the karma is from the first 48 hours, so only in the next one;False;False;;;;1610210217;;False;{};gio1rhg;False;t3_ktrgan;False;True;t1_gio18y0;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio1rhg/;1610248633;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;Hero mask perhaps;False;False;;;;1610210261;;False;{};gio1uiu;False;t3_kttvqm;False;True;t3_kttvqm;/r/anime/comments/kttvqm/please_help_me_figure_out_what_this_was/gio1uiu/;1610248684;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ikmal1997;;;[];;;;text;t2_80tamrb;False;False;[];;Slime S2 hasn't even aired yet right??;False;False;;;;1610210322;;False;{};gio1yr4;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio1yr4/;1610248752;1;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;"We certainly could. The below breakdown is a reasonable projection of the Top 12 and gets us to 70000 Karma. Throw in the best of the rest for the last 3 slots to fight over and we should be looking at a 75000 Average. - -Attack on Titan: 16000 - -Re:Zero: 13000 - -Jujutsu Kaisen: 7000 - -Dr. Stone: 6000* - -Promised Neverland: 5000 - -Slime: 4500* - -Horimiya: 4000* - -Mushoku Tensei: 3500* - -Quints: 3000 - -Yuru Camp: 3000 - -Spider: 2500 - -Log Horrizon: 2500* - -I've starred the Karma Scores that don't have a recent episode to go off of for the projection so those are most likely to be off.";False;False;;;;1610210343;;False;{};gio206x;False;t3_ktrgan;False;False;t1_giny8ov;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio206x/;1610248776;11;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610210345;;False;{};gio20as;False;t3_kttlt0;False;True;t1_gio13o3;/r/anime/comments/kttlt0/where_can_i_watch_the_first_2_loghh_movies_for/gio20as/;1610248778;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dister_;;;[];;;;text;t2_525l8hrt;False;False;[];;Let aot end with a bang re zero if fully adapted down the line almost sure would break its records due to inflation of the sub in the meantime i hope kids stop downvoting both series to see how much karma they can truly get. Like i belive next aot episode will fail 20 k because downvoters and same for re zero will have more downvotes as aot is a bigger series in term of people following it;False;False;;;;1610210364;;False;{};gio21mq;False;t3_ktrgan;False;False;t1_ginxzgq;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio21mq/;1610248799;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Tozerna7;;;[];;;;text;t2_8t85h1zu;False;False;[];;That’s crazy!! What would you recommend then? I’m always looking for new ones to check out :);False;False;;;;1610210400;;False;{};gio243o;True;t3_kttrln;False;True;t1_gio1akd;/r/anime/comments/kttrln/would_you_want_to_join_a_watch_party/gio243o/;1610248838;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SecreSwaIIowTail;;;[];;;;text;t2_5266i8xs;False;False;[];;I see peak fiction at number 5🔥🚬;False;False;;;;1610210416;;False;{};gio258a;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio258a/;1610248857;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;"uhhh dudes say its ""low-key"" BL, but its not that low key to me.";False;False;;;;1610210437;;False;{};gio26lt;False;t3_ktty89;False;True;t3_ktty89;/r/anime/comments/ktty89/is_banana_fish_a_good_watch_and_what_is_it_about/gio26lt/;1610248879;0;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"but the boys love thing shouldn't put anyone off from watching it. - -&#x200B; - -oh well, the OP has just dismissed it based on that.";False;False;;;;1610210457;;1610224917.0;{};gio280k;False;t3_ktty89;False;False;t1_gio1nnh;/r/anime/comments/ktty89/is_banana_fish_a_good_watch_and_what_is_it_about/gio280k/;1610248900;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Tozerna7;;;[];;;;text;t2_8t85h1zu;False;False;[];;I think I’m going to try making it happen. See how many people would like to join and watch;False;False;;;;1610210475;;False;{};gio29ck;True;t3_kttrln;False;True;t1_gio1ghv;/r/anime/comments/kttrln/would_you_want_to_join_a_watch_party/gio29ck/;1610248921;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zefur1497;;;[];;;;text;t2_2k1kzdha;False;False;[];;I could absolutely see it surpassing 25k with the events of tomorrow's episode;False;False;;;;1610210557;;False;{};gio2f1r;False;t3_ktrgan;False;False;t1_ginn89u;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio2f1r/;1610249013;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;Hidive is your only LEGAL option. Other than that, put on your pirate hat and sail the high seas yourself because it's against sub rules to name illegal sites;False;False;;;;1610210563;;False;{};gio2fiu;False;t3_kttlt0;False;False;t3_kttlt0;/r/anime/comments/kttlt0/where_can_i_watch_the_first_2_loghh_movies_for/gio2fiu/;1610249022;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Tozerna7;;;[];;;;text;t2_8t85h1zu;False;False;[];;That’s kinda like me, I like almost every type. I also give all types a shot before I give up on them lol you never know when you’re going to find something you like! But I think I will try this idea of streaming some and seeing if anybody would wanna join;False;False;;;;1610210572;;False;{};gio2g3m;True;t3_kttrln;False;True;t1_gio1hfb;/r/anime/comments/kttrln/would_you_want_to_join_a_watch_party/gio2g3m/;1610249031;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;"I didn't even realize it was her. Damn. - -&#x200B; - -Her as Boogiepop in Boogiepop and Others is my favorite, probably, though.";False;False;;;;1610210572;;False;{};gio2g48;False;t3_ktu3vo;False;False;t3_ktu3vo;/r/anime/comments/ktu3vo/aoi_yuuki_jokes_that_voicing_the_1st_episode_of/gio2g48/;1610249031;4;True;False;anime;t5_2qh22;;0;[]; -[];;;bvblara;;;[];;;;text;t2_8d01xs66;False;False;[];;Yep totally agree. And yeah you should definitely give it a go!;False;False;;;;1610210629;;False;{};gio2k6b;False;t3_kttrln;False;True;t1_gio2g3m;/r/anime/comments/kttrln/would_you_want_to_join_a_watch_party/gio2k6b/;1610249095;1;True;False;anime;t5_2qh22;;0;[]; -[];;;x10018ro3;;MAL;[];;https://myanimelist.net/profile/x10018ro;dark;text;t2_sgd83;False;False;[];;wait I thought Beastars hype was there, 8th place :/;False;False;;;;1610210634;;False;{};gio2kkt;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio2kkt/;1610249102;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DrJWilson;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/drjwilson/animelist;light;text;t2_6zykq;False;False;[];;"Sorry, your comment has been removed. - -- Direction toward specific sources of pirated content of any type is not allowed. This includes links to unofficial scanlations, streams, uploads, and download sources of any copyrighted content. It also includes direction towards specific sites offering this type of content, and watermarks mentioning such sites in uploaded images/videos. - - Discussion of piracy in general is allowed, **but naming, linking to, or hinting towards specific sources is not. Offering to send links via PM is also not allowed.** For more details, see our [full rules on illegal content](https://www.reddit.com/r/anime/wiki/rules#wiki_do_not_link_to_illegal_content). - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610210657;moderator;False;{};gio2m4n;False;t3_kttlt0;False;True;t1_gio0648;/r/anime/comments/kttlt0/where_can_i_watch_the_first_2_loghh_movies_for/gio2m4n/;1610249130;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610210662;moderator;False;{};gio2mhn;False;t3_ktu8vc;False;True;t3_ktu8vc;/r/anime/comments/ktu8vc/having_trouble_sticking_to_one_anime_need_a_good/gio2mhn/;1610249135;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi skaidan123, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610210662;moderator;False;{};gio2mj3;False;t3_ktu8vc;False;True;t3_ktu8vc;/r/anime/comments/ktu8vc/having_trouble_sticking_to_one_anime_need_a_good/gio2mj3/;1610249136;1;False;False;anime;t5_2qh22;;0;[]; -[];;;wintertime_1;;;[];;;;text;t2_99tc3e5w;False;False;[];;what does BL mean?;False;False;;;;1610210664;;False;{};gio2mmt;True;t3_ktty89;False;True;t1_gio26lt;/r/anime/comments/ktty89/is_banana_fish_a_good_watch_and_what_is_it_about/gio2mmt/;1610249137;1;True;False;anime;t5_2qh22;;0;[]; -[];;;XitaNull;;;[];;;;text;t2_huinh;False;False;[];;I’m not into it myself, but I feel like it has by far the most interesting concept out of all the isekai that have come out over the past few years.;False;False;;;;1610210682;;False;{};gio2nxd;False;t3_ktrgan;False;False;t1_gino6zg;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio2nxd/;1610249158;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;"boy love. - -romance between two guys.";False;False;;;;1610210706;;False;{};gio2pl1;False;t3_ktty89;False;True;t1_gio2mmt;/r/anime/comments/ktty89/is_banana_fish_a_good_watch_and_what_is_it_about/gio2pl1/;1610249188;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;"Are you sure about that ??? - -Was he the author's friend or something that thought that his story was used and he wasn't rewarded ???";False;False;;;;1610210718;;False;{};gio2qj4;False;t3_ktu54i;False;True;t3_ktu54i;/r/anime/comments/ktu54i/kyoto_animation_arsonists_motiv_was_the_tsurune/gio2qj4/;1610249202;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;# Kaguya goes DxD;False;False;;;;1610210781;;False;{};gio2uxk;False;t3_ktu19a;False;True;t3_ktu19a;/r/anime/comments/ktu19a/yay_i_saw_his_underpants_love_is_war_season_2/gio2uxk/;1610249278;0;True;False;anime;t5_2qh22;;0;[]; -[];;;MilkAzedo;;;[];;;;text;t2_2rfllvoe;False;False;[];;next episode AoT will be god tier;False;False;;;;1610210820;;False;{};gio2xro;False;t3_ktrgan;False;False;t1_ginr6zi;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio2xro/;1610249327;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;"Nice to see at least 4 anime top 4k in karma before the likes of Dr. Stone, JJK and Horimiya air. - -Was slightly disappointed in TPN's performance and thought that would get between 6-7k for it's premiere. - -Re: Zero was a bit of a surprise in how low it scored, I'd expected at least 14k, but I guess it wasn't technically a premiere, and was a continuation of a cour that ended a few months ago. - -Expected at least 2k for Beastars. - -Looking forward, Dr. Stone should hit around 4-5k comfortably. JJK will continue to post 6k+ scores, and Horimiya could be anywhere from 2-6k depending on how well it's received.";False;False;;;;1610210885;;False;{};gio32d8;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio32d8/;1610249416;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Domzxc104;;;[];;;;text;t2_3wx6qtxz;False;False;[];;Triage X ( 18+ ), Rokka no Yuusha, Blade and Soul and maybe jojo;False;False;;;;1610210911;;False;{};gio346v;False;t3_ktu8vc;False;True;t3_ktu8vc;/r/anime/comments/ktu8vc/having_trouble_sticking_to_one_anime_need_a_good/gio346v/;1610249447;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;I dont think so. At best BC can get 4-6k ? That could be not enough for top 6 even. Slime, jjk etc. will have more than that;False;False;;;;1610210953;;False;{};gio3711;False;t3_ktrgan;False;False;t1_gintqze;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio3711/;1610249499;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Blackkage1;;;[];;;;text;t2_5rhv16l9;False;False;[];;"Date a live -Food wars -Full metal alchemist -Akama ga kill -Higurashi -Danganropa";False;False;;;;1610210987;;False;{};gio39f2;False;t3_ktu8vc;False;True;t3_ktu8vc;/r/anime/comments/ktu8vc/having_trouble_sticking_to_one_anime_need_a_good/gio39f2/;1610249544;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheNameIsVV123;;;[];;;;text;t2_8c36mo3h;False;False;[];;Okay. Thank you for the recommendation.;False;False;;;;1610210989;;1610211334.0;{};gio39l4;True;t3_kttjux;False;True;t1_gio0lcn;/r/anime/comments/kttjux/need_anime_to_watch_what_your_recommendations/gio39l4/;1610249548;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;not yet, that was just a recap episode;False;False;;;;1610211016;;False;{};gio3bhh;False;t3_ktrgan;False;True;t1_gio1yr4;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio3bhh/;1610249586;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MrBananaSenpai_;;;[];;;;text;t2_9fhpjb5e;False;False;[];;"Uchiage Hanabi -Fuuka (its under rated but must watch) -Ao hiro ride";False;False;;;;1610211035;;False;{};gio3cti;False;t3_ktuat7;False;True;t3_ktuat7;/r/anime/comments/ktuat7/i_need_a_good_romance_to_watch_over_the_weekend/gio3cti/;1610249609;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Metal_dragon92;;;[];;;;text;t2_8yk8hjdt;False;False;[];;Forgot to say, it’s on Hulu now!;False;False;;;;1610211038;;False;{};gio3d1j;False;t3_kttjux;False;False;t1_gio39l4;/r/anime/comments/kttjux/need_anime_to_watch_what_your_recommendations/gio3d1j/;1610249613;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;"Recovery of an MMO Junkie - -&#x200B; - -Love is Hard for an Otaku";False;False;;;;1610211055;;False;{};gio3e95;False;t3_ktuat7;False;True;t3_ktuat7;/r/anime/comments/ktuat7/i_need_a_good_romance_to_watch_over_the_weekend/gio3e95/;1610249634;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610211076;;False;{};gio3fqt;False;t3_ktrgan;False;True;t1_ginpixh;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio3fqt/;1610249661;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;The promised neverland;False;False;;;;1610211096;;False;{};gio3h4f;False;t3_ktu8vc;False;True;t3_ktu8vc;/r/anime/comments/ktu8vc/having_trouble_sticking_to_one_anime_need_a_good/gio3h4f/;1610249684;2;True;False;anime;t5_2qh22;;0;[]; -[];;;wintertime_1;;;[];;;;text;t2_99tc3e5w;False;False;[];;so basically gay shit. do they kiss?;False;True;;comment score below threshold;;1610211113;;False;{};gio3icm;True;t3_ktty89;False;True;t1_gio2pl1;/r/anime/comments/ktty89/is_banana_fish_a_good_watch_and_what_is_it_about/gio3icm/;1610249704;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;Competitive_Carob116;;;[];;;;text;t2_7mmugn1d;False;False;[];;"Her face is just plain unremarkable when she says ""yay! I saw his underpants""";False;False;;;;1610211138;;False;{};gio3k3t;False;t3_ktu19a;False;True;t3_ktu19a;/r/anime/comments/ktu19a/yay_i_saw_his_underpants_love_is_war_season_2/gio3k3t/;1610249740;2;True;False;anime;t5_2qh22;;0;[]; -[];;;as1eep;;;[];;;;text;t2_pek5e8i;False;False;[];;Bruh if that isnt lowkey bl id love to know what does constitute it;False;False;;;;1610211168;;False;{};gio3m8g;False;t3_ktty89;False;True;t1_gio26lt;/r/anime/comments/ktty89/is_banana_fish_a_good_watch_and_what_is_it_about/gio3m8g/;1610249779;1;True;False;anime;t5_2qh22;;0;[]; -[];;;skaidan123;;;[];;;;text;t2_3wxbxx93;False;False;[];;I was looking at that. Does it have a good ending?;False;False;;;;1610211194;;False;{};gio3o3t;True;t3_ktu8vc;False;True;t1_gio3h4f;/r/anime/comments/ktu8vc/having_trouble_sticking_to_one_anime_need_a_good/gio3o3t/;1610249813;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;Free! was low-key BL;False;False;;;;1610211209;;False;{};gio3p5o;False;t3_ktty89;False;True;t1_gio3m8g;/r/anime/comments/ktty89/is_banana_fish_a_good_watch_and_what_is_it_about/gio3p5o/;1610249831;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;yeah.;False;False;;;;1610211218;;False;{};gio3pt5;False;t3_ktty89;False;True;t1_gio3icm;/r/anime/comments/ktty89/is_banana_fish_a_good_watch_and_what_is_it_about/gio3pt5/;1610249844;1;True;False;anime;t5_2qh22;;0;[]; -[];;;skaidan123;;;[];;;;text;t2_3wxbxx93;False;False;[];;Heard akame ga kill and full metal alchemist is good. I think I need to jsut try some more till I find the right one.;False;False;;;;1610211228;;False;{};gio3qhf;True;t3_ktu8vc;False;False;t1_gio39f2;/r/anime/comments/ktu8vc/having_trouble_sticking_to_one_anime_need_a_good/gio3qhf/;1610249856;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;It's not over yet so and season 2 is currently airing;False;False;;;;1610211244;;False;{};gio3rm7;False;t3_ktu8vc;False;True;t1_gio3o3t;/r/anime/comments/ktu8vc/having_trouble_sticking_to_one_anime_need_a_good/gio3rm7/;1610249878;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610211251;;False;{};gio3s4v;False;t3_ktrgan;False;True;t1_ginmpul;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio3s4v/;1610249887;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610211283;moderator;False;{};gio3ubm;False;t3_ktufsb;False;True;t3_ktufsb;/r/anime/comments/ktufsb/anime_suggestions_please_thank_you/gio3ubm/;1610249923;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Luke911666;;;[];;;;text;t2_4nhzay4;False;False;[];;The only week we’re JJK and AoT won’t tower over every other anime;False;False;;;;1610211283;;False;{};gio3ucm;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio3ucm/;1610249923;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610211293;;False;{};gio3v0a;False;t3_ktrgan;False;True;t1_ginm5iz;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio3v0a/;1610249934;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheNameIsVV123;;;[];;;;text;t2_8c36mo3h;False;False;[];;Watched Fairy Tail. Dropped it halfway at the Tenrou Island Arc. 8/10;False;False;;;;1610211303;;False;{};gio3vnu;True;t3_kttjux;False;False;t1_ginzyq9;/r/anime/comments/kttjux/need_anime_to_watch_what_your_recommendations/gio3vnu/;1610249944;2;True;False;anime;t5_2qh22;;0;[]; -[];;;wintertime_1;;;[];;;;text;t2_99tc3e5w;False;False;[];;ok thanks, show is not for me;False;False;;;;1610211330;;False;{};gio3xlc;True;t3_ktty89;False;True;t1_gio3pt5;/r/anime/comments/ktty89/is_banana_fish_a_good_watch_and_what_is_it_about/gio3xlc/;1610249980;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;TheNameIsVV123;;;[];;;;text;t2_8c36mo3h;False;False;[];;"Watched Gurren Lagann. Anime is very powerful. 9/10 - -Watched My Hero Academia. Mediocre, but very good at the same time. 8/10 - -Watched Death Parade. Didn't like the first 4 episodes. 7/10";False;False;;;;1610211392;;False;{};gio420a;True;t3_kttjux;False;True;t1_ginzujd;/r/anime/comments/kttjux/need_anime_to_watch_what_your_recommendations/gio420a/;1610250057;1;True;False;anime;t5_2qh22;;0;[]; -[];;;comandoram;;;[];;;;text;t2_7979ne0;False;False;[];;Lol.;False;False;;;;1610211441;;False;{};gio45fp;False;t3_ktrgan;False;False;t1_ginr09v;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio45fp/;1610250113;8;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;"MC is the ""casual"" leader of a gang of street type kids who are good at heart, whose brother dies because of some drug ""banana fish"", there is a Japanese journalist visiting doing a story and his son has his first gay experiences with the MC. oh, and prison gang rape.";False;False;;;;1610211476;;False;{};gio47xy;False;t3_ktty89;False;False;t1_gio3xlc;/r/anime/comments/ktty89/is_banana_fish_a_good_watch_and_what_is_it_about/gio47xy/;1610250155;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sdd264;;;[];;;;text;t2_1g5wqrbo;False;False;[];;Yeah, unfortunatelly. But I hope it'll do better;False;False;;;;1610211553;;False;{};gio4dbx;False;t3_ktrgan;False;True;t1_gio1hq4;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio4dbx/;1610250247;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;This is probably true. I'm thinking it probably won't have that big of an impact in the anime as manga readers think. But well, it's an iconic chapter, so of course everyone is hyped.;False;False;;;;1610211597;;False;{};gio4gdf;False;t3_ktrgan;False;True;t1_ginxp43;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio4gdf/;1610250297;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AngryNeko;;;[];;;;text;t2_r2ztu;False;False;[];;yeah. I feel you. a lot of series start strong and take a wrong turn that kills the magic.;False;False;;;;1610211654;;False;{};gio4ki7;False;t3_kttjux;False;True;t1_gio3vnu;/r/anime/comments/kttjux/need_anime_to_watch_what_your_recommendations/gio4ki7/;1610250364;1;True;False;anime;t5_2qh22;;0;[]; -[];;;delbones;;;[];;;;text;t2_14ckp1;False;False;[];;It’s funny, this season Quintuplets could have one of the biggest karma spikes ever, and it would probably only come in 3rd or 4th that week lol;False;False;;;;1610211660;;False;{};gio4kxn;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio4kxn/;1610250372;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;Well the great things about those chapters translate less into anime than other hype moments.;False;False;;;;1610211778;;False;{};gio4tas;False;t3_ktrgan;False;True;t1_ginu1xg;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio4tas/;1610250512;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lucidd420;;;[];;;;text;t2_2vsb37a5;False;False;[];;Darling in the franxx;False;False;;;;1610211784;;False;{};gio4tr3;False;t3_ktuat7;False;True;t3_ktuat7;/r/anime/comments/ktuat7/i_need_a_good_romance_to_watch_over_the_weekend/gio4tr3/;1610250520;1;True;False;anime;t5_2qh22;;0;[]; -[];;;reyxe;;;[];;;;text;t2_l05mm;False;False;[];;"Tsuki ga kirei is a really cute, down to earth, diabetes kind of romance. - -Sadly, Horimiya is just now starting too, but it's my personal favorite and I would recommend you start watching it. First episode should come out anytime now.";False;False;;;;1610211874;;False;{};gio500a;False;t3_ktuat7;False;True;t3_ktuat7;/r/anime/comments/ktuat7/i_need_a_good_romance_to_watch_over_the_weekend/gio500a/;1610250640;2;True;False;anime;t5_2qh22;;0;[]; -[];;;wintertime_1;;;[];;;;text;t2_99tc3e5w;False;False;[];;yep definitely not for me lol;False;False;;;;1610211899;;False;{};gio51qr;True;t3_ktty89;False;True;t1_gio47xy;/r/anime/comments/ktty89/is_banana_fish_a_good_watch_and_what_is_it_about/gio51qr/;1610250670;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;"https://myanimelist.net/anime/37972/Hoshiai_no_Sora - -this is really good.";False;False;;;;1610211955;;False;{};gio55qe;False;t3_ktty89;False;True;t1_gio51qr;/r/anime/comments/ktty89/is_banana_fish_a_good_watch_and_what_is_it_about/gio55qe/;1610250736;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kvicksilver;;;[];;;;text;t2_p8h0s;False;False;[];;Probably all depends on the number of sales the BD is getting, there are PLENTY of manga chapters to adapt if they decide to do it however, as \~35 out of \~210 chapters got adapted.;False;False;;;;1610211988;;False;{};gio57zq;False;t3_ktrob2;False;True;t3_ktrob2;/r/anime/comments/ktrob2/maoujou_de_oyasumi_season_2/gio57zq/;1610250772;1;True;False;anime;t5_2qh22;;0;[]; -[];;;moybull;;;[];;;;text;t2_wfco3w0;False;False;[];;It was indeed amazing. The poll score in the rewatcher thread is even better (58/60 votes atm are Excellent, and the remaining two are Great). Once you're done the OG and caught up this episode will hit you very hard.;False;False;;;;1610212037;;False;{};gio5blu;False;t3_ktrgan;False;False;t1_ginnm59;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio5blu/;1610250833;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;"I think that'll be an issue for both series to be honest, to some degree. - -However, I'm glad they're airing within 72, and not 24-48 hours of each other, otherwise there would be mass-downvoting going on to ensure their anime wins over the other before the cut-off. It'd become MAL like in it's childish-ness.";False;False;;;;1610212049;;False;{};gio5cgk;False;t3_ktrgan;False;False;t1_ginvsew;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio5cgk/;1610250847;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;I'd say AoT is going to be around 18-19k and Re: Zero will be 14-15k.;False;False;;;;1610212114;;False;{};gio5h25;False;t3_ktrgan;False;False;t1_ginmkk2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio5h25/;1610250921;6;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;Ah, you didn't have your MAL uploaded yet, so I didn't see what you've seen yet. Hope you enjoy the other choices.;False;False;;;;1610212192;;False;{};gio5moz;False;t3_kttjux;False;True;t1_gio420a;/r/anime/comments/kttjux/need_anime_to_watch_what_your_recommendations/gio5moz/;1610251013;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zairaner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/zairaner;light;text;t2_166xh0;False;False;[];;"I didn't really like the op song for the first part of re:zero, at least until I saw the op visuals which made everything so much better. - -Considering I already love just the song for part 2, I have a feeling I'm really going to find the entire op godlike";False;False;;;;1610212332;;False;{};gio5wjx;False;t3_ktrgan;False;True;t1_ginr6zi;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio5wjx/;1610251191;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Drink_Glum;;;[];;;;text;t2_8t3affy8;False;False;[];;I said should, meaning if it didn’t, it would mean a huge portion of the anime community is sleeping on black clover in other words they’re not watching black clover at all.;False;False;;;;1610212447;;False;{};gio64ix;False;t3_ktrgan;False;True;t1_ginznpq;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio64ix/;1610251326;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Drink_Glum;;;[];;;;text;t2_8t3affy8;False;False;[];;"I said ""should"" and not ""will"".";False;False;;;;1610212471;;False;{};gio6642;False;t3_ktrgan;False;False;t1_ginwtcg;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio6642/;1610251352;0;True;False;anime;t5_2qh22;;0;[]; -[];;;zairaner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/zairaner;light;text;t2_166xh0;False;False;[];;18k for aot, 15.5 k for re:zero;False;False;;;;1610212477;;False;{};gio66jt;False;t3_ktrgan;False;False;t1_ginmkk2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio66jt/;1610251359;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Drink_Glum;;;[];;;;text;t2_8t3affy8;False;False;[];;"That’s literally the most boring arc JJK has to offer. -The exciting arc, the shibuya arc is in the manga and I don’t know if the anime will even get into that part in the 2nd cour. -So imo, JJK doesn’t deserve to even rank top5, except if the animation for a certain episode blows everybody away. -Story wise, the plot isn’t moving further with this tournament shit";False;False;;;;1610212626;;False;{};gio6gla;False;t3_ktrgan;False;True;t1_ginznpq;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio6gla/;1610251531;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Caramelsnack;;;[];;;;text;t2_436yoa4j;False;False;[];;Aside from the first episode I’m not sure stone will put up much of a fight with JJK. Next few months are just nonstop action and hype;False;False;;;;1610212699;;False;{};gio6loj;False;t3_ktrgan;False;True;t1_ginsj8a;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio6loj/;1610251619;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PotatoKaboose;;;[];;;;text;t2_47iz2hsb;False;False;[];;Someone show this to the boys over at trash taste with trash takes like fat provides no flavor;False;False;;;;1610212774;;False;{};gio6qxp;False;t3_ktt8mm;False;True;t3_ktt8mm;/r/anime/comments/ktt8mm/cant_help_not_to_sin_with_this_back_fat_koizumi/gio6qxp/;1610251708;4;True;False;anime;t5_2qh22;;0;[]; -[];;;zairaner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/zairaner;light;text;t2_166xh0;False;False;[];;"Hey reddadz, I think it would be great if you added the fact that you have to vote in the first 48 hours of the thread is released to the ""How do I vote"" Question (I only found that out much later and I think it would be helpful to a lot of people). - -I still don't know wether the poll-ratings are also the ones after 48 hours for example.";False;False;;;;1610212783;;False;{};gio6rig;False;t3_ktrgan;False;True;t1_ginm5iz;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio6rig/;1610251719;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;I mean yes, you're right and I'm not even overhyping it. I'm a recently turned manga reader because I was impatient, and personally, everything chapter 100 onwards was insane. WFP arc will break the internet each episode, and it's definitely not out of reach.;False;False;;;;1610212806;;False;{};gio6t4e;False;t3_ktrgan;False;False;t1_ginu51h;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio6t4e/;1610251745;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Borna44_;;;[];;;;text;t2_3qq4vqe6;False;False;[];;I was expecting aot to be there, or does that count as autumn;False;False;;;;1610212831;;False;{};gio6uw1;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio6uw1/;1610251773;0;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;Oh, you didn't like the first OP? It's one of my favorites, even without the visuals, granted I really liked Redo and Konomi Suzuki as a singer overall.;False;False;;;;1610213182;;False;{};gio7jts;False;t3_ktrgan;False;True;t1_gio5wjx;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio7jts/;1610252196;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Brandis_;;;[];;;;text;t2_27oe4p27;False;False;[];;"I’ve read the PN manga and this season will be better than a bunch of other airing shows. - -That said, it’s hard to surpass the scenario and mind games of season 1. The characters were all designed for that story.";False;False;;;;1610213472;;False;{};gio84gj;False;t3_ktrgan;False;True;t1_ginneqj;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio84gj/;1610252548;2;True;False;anime;t5_2qh22;;0;[]; -[];;;opeth_syndrome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_7ymt570;False;False;[];;You are missing out on a very good anime.;False;False;;;;1610213528;;False;{};gio8884;False;t3_ktty89;False;False;t1_gio3xlc;/r/anime/comments/ktty89/is_banana_fish_a_good_watch_and_what_is_it_about/gio8884/;1610252610;5;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;AOT had a break this week.;False;False;;;;1610213604;;False;{};gio8dlc;False;t3_ktrgan;False;True;t1_gio6uw1;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio8dlc/;1610252697;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePreciseClimber;;;[];;;;text;t2_kjl4o;False;False;[];;Is there something like this but for Japan only?;False;False;;;;1610213643;;False;{};gio8gcp;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio8gcp/;1610252743;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePreciseClimber;;;[];;;;text;t2_kjl4o;False;False;[];;It was on a break last week, bro. :P;False;False;;;;1610213669;;False;{};gio8i5i;False;t3_ktrgan;False;False;t1_gio6uw1;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio8i5i/;1610252774;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Borna44_;;;[];;;;text;t2_3qq4vqe6;False;False;[];;Oh yeah true I kinda forgot about that;False;False;;;;1610213682;;False;{};gio8j1b;False;t3_ktrgan;False;True;t1_gio8dlc;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio8j1b/;1610252788;1;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;JJK is not touching Re:Zero.;False;False;;;;1610213686;;False;{};gio8ja0;False;t3_ktrgan;False;False;t1_gio3ucm;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio8ja0/;1610252791;13;True;False;anime;t5_2qh22;;0;[]; -[];;;-_Maria_-_;;;[];;;;text;t2_6xo6f9pc;False;False;[];;Both already watched -.- did you look at the list?;False;False;;;;1610213696;;False;{};gio8k2r;True;t3_ktuat7;False;True;t1_gio3e95;/r/anime/comments/ktuat7/i_need_a_good_romance_to_watch_over_the_weekend/gio8k2r/;1610252805;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-_Maria_-_;;;[];;;;text;t2_6xo6f9pc;False;False;[];;Watched;False;False;;;;1610213705;;False;{};gio8kp6;True;t3_ktuat7;False;True;t1_gio4tr3;/r/anime/comments/ktuat7/i_need_a_good_romance_to_watch_over_the_weekend/gio8kp6/;1610252815;0;True;False;anime;t5_2qh22;;0;[]; -[];;;-_Maria_-_;;;[];;;;text;t2_6xo6f9pc;False;False;[];;Watched and watching;False;False;;;;1610213722;;False;{};gio8lvv;True;t3_ktuat7;False;True;t1_gio500a;/r/anime/comments/ktuat7/i_need_a_good_romance_to_watch_over_the_weekend/gio8lvv/;1610252834;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aito_SAKO;;;[];;;;text;t2_3dycv044;False;False;[];;I say aot 15k+ and re zero 10k+;False;False;;;;1610213779;;False;{};gio8pwj;False;t3_ktrgan;False;False;t1_ginmryv;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio8pwj/;1610252911;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Lucidd420;;;[];;;;text;t2_2vsb37a5;False;False;[];;Uzaki asobitai;False;False;;;;1610213800;;False;{};gio8rcd;False;t3_ktuat7;False;True;t1_gio8kp6;/r/anime/comments/ktuat7/i_need_a_good_romance_to_watch_over_the_weekend/gio8rcd/;1610252936;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GrandAdmiralLuke;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4flykcj3;False;False;[];;"21298 aot -15597 re:zero";False;False;;;;1610213817;;False;{};gio8sl4;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio8sl4/;1610252960;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Fablihakhan;;;[];;;;text;t2_1stqz3r;False;False;[];;They don’t kiss romantically though?;False;False;;;;1610213860;;False;{};gio8vmw;False;t3_ktty89;False;True;t1_gio3pt5;/r/anime/comments/ktty89/is_banana_fish_a_good_watch_and_what_is_it_about/gio8vmw/;1610253012;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xkrowcitats;;;[];;;;text;t2_6fpg7;False;False;[];;White album 2;False;False;;;;1610213963;;False;{};gio92ws;False;t3_ktuat7;False;True;t3_ktuat7;/r/anime/comments/ktuat7/i_need_a_good_romance_to_watch_over_the_weekend/gio92ws/;1610253139;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;"nope. - -i did now, and https://myanimelist.net/anime/39710/Yesterday_wo_Utatte isn't on your list and a pretty good romance.";False;False;;;;1610213965;;False;{};gio930c;False;t3_ktuat7;False;True;t1_gio8k2r;/r/anime/comments/ktuat7/i_need_a_good_romance_to_watch_over_the_weekend/gio930c/;1610253141;0;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;How is that a plot twist?;False;False;;;;1610213988;;False;{};gio94p2;False;t3_ktrgan;False;False;t1_ginzqiv;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio94p2/;1610253169;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KlooKloo;;;[];;;;text;t2_6xd5w;False;False;[];;"on MAL: - -**Bakemonogatari** - -Ranked #175 Popularity #59 Members 1,027,661 - -**My Teen Romantic Comedy SNAFU** - -Ranked #452 Popularity #71 Members 931,106";False;False;;;;1610214027;;False;{};gio97e6;False;t3_ktrlxb;False;True;t3_ktrlxb;/r/anime/comments/ktrlxb/which_anime_is_more_popular_monogatari_series_or/gio97e6/;1610253212;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Humpa;;;[];;;;text;t2_3uz0p;False;False;[];;It goes so hard at 0:10;False;False;;;;1610214037;;False;{};gio984q;False;t3_ktszq1;False;True;t3_ktszq1;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/gio984q/;1610253225;4;True;False;anime;t5_2qh22;;0;[]; -[];;;qpx_boi;;;[];;;;text;t2_9ikw1kcd;False;False;[];; Teasing Master Takagi-san;False;False;;;;1610214060;;False;{};gio99pt;False;t3_ktuat7;False;True;t3_ktuat7;/r/anime/comments/ktuat7/i_need_a_good_romance_to_watch_over_the_weekend/gio99pt/;1610253252;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;"i mean, its not out of friendship...MC does it cuz he likes the kid and the kid is ""just coming out to his feelings"" - -its very much ""romantically"". - -maybe its not ""passionately""";False;False;;;;1610214134;;False;{};gio9f12;False;t3_ktty89;False;False;t1_gio8vmw;/r/anime/comments/ktty89/is_banana_fish_a_good_watch_and_what_is_it_about/gio9f12/;1610253340;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;Based on my timezone, the official episode 5 will air around 25 hours later, little bit over a day so i think it depends on your timezone. I should have stated it clearer so my apologize for the confusion;False;False;;;;1610214136;;False;{};gio9f70;False;t3_ktrgan;False;True;t1_gio1hbn;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio9f70/;1610253343;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610214155;;False;{};gio9gja;False;t3_ktrgan;False;True;t1_ginx1m3;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio9gja/;1610253366;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JapanCode;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TheJapanCode/;light;text;t2_bmu83;False;False;[];;"So I'm still kind of confused about Higurashi; is this a reboot or a sequel or an alternate universe? What is it exactly?";False;False;;;;1610214183;;False;{};gio9ii8;False;t3_ktrgan;False;True;t1_ginmm17;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio9ii8/;1610253399;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Chronoflyt;;;[];;;;text;t2_5apbu2fl;False;False;[];;They absolutely nailed the ED this time around too. I'm not sure if I'll like it as much as Fuyu Biyori (S1's ED), but hot damn did they pull it off. I can hardly imagine liking Yuru Camp as much as I did and do without the EDs. They really are part of the experience.;False;False;;;;1610214273;;False;{};gio9p2q;False;t3_ktrgan;False;False;t1_ginng6w;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio9p2q/;1610253507;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Etney;;;[];;;;text;t2_7k0nf;False;False;[];;"So it will be out ""tomorrow"" to literally every single part of the world except in the single timezone where it switches over to tomorrow in the next hour? It comes out tomorrow.";False;False;;;;1610214393;;False;{};gio9xq3;False;t3_ktrgan;False;False;t1_gio9f70;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gio9xq3/;1610253648;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Tomicida;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Tomicida/;light;text;t2_9gtm6;False;False;[];;"Lmao, Mushoku Tensei top6 in the polls without even airing. - -Nice to see Black Clover in the top 5, even if it's probably the last time it will appear in the Karma Ranks this season. Same for Higurashi.";False;False;;;;1610214601;;False;{};gioacuq;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioacuq/;1610253895;3;True;False;anime;t5_2qh22;;0;[]; -[];;;daskrip;;;[];;;;text;t2_5q7sh;False;False;[];;"Ahh, there are often great ramen places around me. Near Keio Uni was the best ramen I've ever had, called Yattoko. Also near there was Jiro Ramen, this famous place that always had a big line. Only 500 yen for a huge bowl, but it's 1600 damn calories. - -I know the feel. I got over it and have been dieting pretty well, cooking for myself. It's tough though.";False;False;;;;1610214602;;False;{};gioacvo;False;t3_ktt8mm;False;True;t3_ktt8mm;/r/anime/comments/ktt8mm/cant_help_not_to_sin_with_this_back_fat_koizumi/gioacvo/;1610253895;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kenjasama;;;[];;;;text;t2_9q2aelyc;False;False;[];;" -It's a spider, but something is over 3,000, and it will surely cut into the top. Otherside Picnic and Rasdan, it's a waste to be a ranking regular if it's not this season";False;False;;;;1610214698;;False;{};gioajru;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioajru/;1610254008;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LakerBlue;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LakerBlue;light;text;t2_afaca;False;False;[];;True. But I think ep5 or 6 of AoT are one of a few episodes this season that definitely will have a chance to break that premiere karma record.;False;False;;;;1610214701;;False;{};gioajz6;False;t3_ktrgan;False;True;t1_ginnnso;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioajz6/;1610254010;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;CG=Bad no matter the context according to the anime community. You won't be able to change those woke kids minds.;False;False;;;;1610214832;;False;{};gioatc3;False;t3_ktrgan;False;True;t1_ginr0mr;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioatc3/;1610254165;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ProfessionalCoat7;;;[];;;;text;t2_2i76qp3p;False;False;[];;Visually stunning is the only way to describe this series;False;False;;;;1610214901;;False;{};gioay9z;False;t3_ktszq1;False;False;t3_ktszq1;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/gioay9z/;1610254251;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;No chance. You are seriously under-estimating premier hype. Since the premiere had a slow episode too, It will most likely be in the same range of the premiere, but nowhere near 25k. The only episode that might get 25k+ is the finale because of that 3 episode arc buildup.;False;False;;;;1610214963;;False;{};giob2rg;False;t3_ktrgan;False;True;t1_gio2f1r;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giob2rg/;1610254324;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;I’m confused too. The person asked the question 2 hours ago. The raw livestream will air approximately 19 hours later while if we counts Crunchyroll sub which comes out 5 hours after the raw ( correct me if im wrong at this ) it’ll be 24 hours which will be the exact tomorrow. Since he asked the question 2 hours ago so technically it’s 2 hours after tomorrow based on solely that timeline. But yeah by the moment I answered his question and you corrected me, it’ll start tomorrow ( hope that makes sense 😂);False;False;;;;1610214974;;False;{};giob3b0;False;t3_ktrgan;False;True;t1_gio9xq3;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giob3b0/;1610254332;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lucky_howl;;;[];;;;text;t2_80xnwlla;False;False;[];;I’m so excited for episode 5 of AoT. Tbh, I don’t really care about the karma it’s gonna get. I just wanna see how well Mappa delivers that episode. I’m pretty sure they’ll do it well.;False;False;;;;1610215024;;False;{};giob75g;False;t3_ktrgan;False;False;t1_gint45j;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giob75g/;1610254395;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LakerBlue;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LakerBlue;light;text;t2_afaca;False;False;[];;Oh ok I was confused why my anime chart on senpai.moe said it was supposed to debut Thursday but it was clearly up on Wednesday.;False;False;;;;1610215085;;False;{};giobbkt;False;t3_ktrgan;False;True;t1_ginpfjl;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giobbkt/;1610254464;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;Try Samurai Champloo it has a pretty chill vibe and memorable characters;False;False;;;;1610215121;;False;{};giobebt;False;t3_ktu8vc;False;True;t3_ktu8vc;/r/anime/comments/ktu8vc/having_trouble_sticking_to_one_anime_need_a_good/giobebt/;1610254509;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zefur1497;;;[];;;;text;t2_2k1kzdha;False;False;[];;"To be entirely fair I'm not entirely sure how this whole system works, but given the week break, as well as the proposed content of episode 5 I still do think it could be in the realm of possibility. - - -I think of it as a non-zero chance";False;False;;;;1610215269;;False;{};giobp3w;False;t3_ktrgan;False;True;t1_giob2rg;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giobp3w/;1610254681;1;True;False;anime;t5_2qh22;;0;[]; -[];;;moybull;;;[];;;;text;t2_wfco3w0;False;False;[];;It's a sequel. A 4th season, technically (OG, then Kai, then Rei, and now Gou). Due to the nature of the show it was able to function as a pseudo-remake for a while, giving new watchers enough info to follow along and still enjoy the ride, but it definitely takes place after the events of the OG and directly references those events and builds off of them. That's been made clear, so it's highly recommended to watch/read the OG first.;False;False;;;;1610215503;;False;{};gioc60i;False;t3_ktrgan;False;False;t1_gio9ii8;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioc60i/;1610254963;14;True;False;anime;t5_2qh22;;0;[]; -[];;;LakerBlue;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LakerBlue;light;text;t2_afaca;False;False;[];;Oh man, Winter 2019 is one of my favorite seasons of the 4-ish years I have been following seasonal anime. Kaguya, Mob 2, TPN, SAO:A’s second cour, Date A Live 3, and Boogiepop were just a few of favorites from the 14 shows I watched that winter. It’s rare for me to watch so many shows and not have to drop any.;False;False;;;;1610215578;;False;{};giocbg4;False;t3_ktrgan;False;False;t1_ginskvr;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giocbg4/;1610255056;5;True;False;anime;t5_2qh22;;0;[]; -[];;;letouriste1;;;[];;;;text;t2_g1rr39u;False;False;[];;"""cells at work!"" is cheating lol";False;False;;;;1610215751;;False;{};giocnyh;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giocnyh/;1610255257;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;LakerBlue;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LakerBlue;light;text;t2_afaca;False;False;[];;"I tried to watch the first episode of the new one and the violence at the start pretty much made me feel the show is a bit too horrific for me. It took me forever to be on board AoT because of all the deaths but thankfully the deaths there are normally quick enough to not be too disturbing. - -I’d really like to try again because of the mystery elements though, I do love a great mystery show.";False;False;;;;1610215929;;False;{};giod0qv;False;t3_ktrgan;False;False;t1_ginmpul;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giod0qv/;1610255462;3;True;False;anime;t5_2qh22;;0;[]; -[];;;zairaner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/zairaner;light;text;t2_166xh0;False;False;[];; I do like the op now!;False;False;;;;1610215972;;False;{};giod3wj;False;t3_ktrgan;False;True;t1_gio7jts;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giod3wj/;1610255513;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HobnobsTheRed;;;[];;;;text;t2_1ftgjit5;False;False;[];;In my head, this was sung to the tune of the chorus of Rasputin by Boney M.;False;False;;;;1610215985;;False;{};giod4yy;False;t3_ktt8mm;False;True;t1_ginzrx8;/r/anime/comments/ktt8mm/cant_help_not_to_sin_with_this_back_fat_koizumi/giod4yy/;1610255529;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kipxx;;;[];;;;text;t2_o5tha;False;False;[];;"Here's some of my favourite ones -Konosuba -JoJo's bizarre adventure -Kimetsu no yaiba -Nanatsu no taizai -Hunter x hunter -Miss Kobayashi's dragon maid";False;False;;;;1610216051;;False;{};giod9t7;False;t3_kttjux;False;True;t3_kttjux;/r/anime/comments/kttjux/need_anime_to_watch_what_your_recommendations/giod9t7/;1610255609;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Squidward_T0rtellini;;;[];;;;text;t2_4xtu669t;False;False;[];;">if it doesn’t it’s criminally slept on. - -The current arc it’s adapting is painfully average. Saying it’s being “slept on” is a stretch.";False;False;;;;1610216107;;False;{};gioddvo;False;t3_ktrgan;False;True;t1_gintqze;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioddvo/;1610255679;0;True;False;anime;t5_2qh22;;0;[]; -[];;;CatSezWoof;;;[];;;;text;t2_ddlau;False;False;[];;It felt exactly like a few episodes from the first half - Subaru goes around talking to everyone, has confident smile when he figures out a plan, people start to execute plan without telling you what it is, end. Pretty disappointing but I’ve heard the next episodes should be better;False;False;;;;1610216109;;False;{};giode34;False;t3_ktrgan;False;True;t1_ginv2ej;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giode34/;1610255684;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;googolplexbyte;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Googolplexbyte;light;text;t2_61hum;False;False;[];;"> In a more intentional Karma War, both Cells at Work and Cells at Work Code Black - -With all the shows still missing from the chart, they'll be fighting not just to place above each other, but to place on the chart at all.";False;False;;;;1610216123;;False;{};giodf5d;False;t3_ktrgan;False;False;t1_ginm8f9;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giodf5d/;1610255702;4;True;False;anime;t5_2qh22;;0;[]; -[];;;kenjasama;;;[];;;;text;t2_9q2aelyc;False;False;[];;On Wednesdays and Thursdays, there may be too many good harvests and the votes may be scattered and the votes may not grow as expected. Armageddon!;False;False;;;;1610216271;;False;{};giodpz3;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giodpz3/;1610255884;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LakerBlue;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LakerBlue;light;text;t2_afaca;False;False;[];;"I read the AoT manga but not ReZero LN but I am willing to bet it can beat AoT once in the middle of the season. It is just a matter of ReZero’s hype episodes falling the same week as a more dialogue heavy episode like the last few of AoT where it “only” gets 13k. - -Assuming the ReZero LN’s are right this season will have a lot more pay-off for the set-up from the first cour.";False;False;;;;1610216305;;False;{};giodsjl;False;t3_ktrgan;False;True;t1_ginmdnx;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giodsjl/;1610255927;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;"Or AOT for that matter - -Hell it might even be beat by TPN S2 and Yuru Camp S2";False;False;;;;1610216331;;False;{};giodue2;False;t3_ktrgan;False;True;t1_gio8ja0;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giodue2/;1610255958;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Groenboys;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Groenboys;light;text;t2_175kob;False;False;[];;What;False;False;;;;1610216394;;False;{};giodyyk;False;t3_ktrgan;False;False;t1_ginq2ib;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giodyyk/;1610256030;6;True;False;anime;t5_2qh22;;0;[]; -[];;;AlixJ;;;[];;;;text;t2_2al0em37;False;False;[];;Re zero has always dominated the weekly karma popularity of episode discussion until now, but it will be airing at the same time as aot from now on, and will unlikely be ahead even once;False;False;;;;1610216407;;False;{};giodzxm;False;t3_ktrgan;False;True;t1_gio94p2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giodzxm/;1610256046;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ravioli_Heicho;;;[];;;;text;t2_3bls5ou;False;False;[];;That day, r/anime received a grim reminder...;False;False;;;;1610216423;;False;{};gioe15d;False;t3_ktrgan;False;False;t1_ginulgt;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioe15d/;1610256066;74;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"But that is not a plot twist when AOT has 3 weeks doing more than Re:Zero in average karma. - -Plot twist is Re:Zero WINNING some of the weeks.";False;False;;;;1610216797;;False;{};gioespv;False;t3_ktrgan;False;False;t1_giodzxm;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioespv/;1610256541;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Now you are exaggerating like the guy you are answering, unless they both grow spectacularly in the next episodes, the worst number for jjk was 5.5k, and the average 6.5k - -We have to see Slime, Dr Stone and Horimiya to see if they can reach those numbers";False;False;;;;1610216933;;False;{};giof2t0;False;t3_ktrgan;False;False;t1_giodue2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giof2t0/;1610256705;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Sujallamichhaneakasl;;;[];;;;text;t2_3i2s1kbj;False;False;[];;I'm not a manhwa reader and I liked the anime but it absolutely lacked inspiration and creativity. It's just a bland and uninspired production all around. Nothing stand out...the OVA by contrast was absolutely fantastic. At least you can tell TOG and GOHS had some amount of creativity put into them....the artstyle in TOG was unique and the OST was hella good, GOHS had fantastic animation when it mattered but Nobless is just a run of the mill anime that will just be a slog to go through if it's comedy and characters don't click with you and thankfully for me the comedy and characters absolutely hit home so I enjoyed it to a certain extent.;False;False;;;;1610217114;;False;{};giofg1r;False;t3_ktrgan;False;True;t1_ginpixh;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giofg1r/;1610256927;3;True;False;anime;t5_2qh22;;0;[]; -[];;;death556;;;[];;;;text;t2_y24tf;False;False;[];;That was boogiepop?! Holy shit.;False;False;;;;1610217529;;False;{};giogaxz;False;t3_ktu3vo;False;True;t1_gio2g48;/r/anime/comments/ktu3vo/aoi_yuuki_jokes_that_voicing_the_1st_episode_of/giogaxz/;1610257579;1;True;False;anime;t5_2qh22;;0;[]; -[];;;samiuddin_anwer;;;[];;;;text;t2_zj4zaai;False;False;[];;YES PLEASE THE BEST HAREM MANGA;False;False;;;;1610217614;;False;{};gioghel;False;t3_ktrgan;False;True;t1_ginv3x3;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioghel/;1610257694;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;That bitter laugh was so entertaining/sad;False;False;;;;1610217714;;False;{};giogoyt;False;t3_ktrgan;False;False;t1_ginpgbe;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giogoyt/;1610257831;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Hajimeri;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Montrachet;light;text;t2_ap99cz2;False;False;[];;man how dare you expect people to look at your anime list before suggesting you anime? You are forcing them to suggest you anime and expecting to get suggestions that you havent seen? Such sinful desires must not be left unpunished...;False;False;;;;1610217958;;False;{};gioh7bi;False;t3_ktuat7;False;True;t3_ktuat7;/r/anime/comments/ktuat7/i_need_a_good_romance_to_watch_over_the_weekend/gioh7bi/;1610258139;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kanene09;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/;light;text;t2_pbrof;False;False;[];;Correct!! I don't get why some people downvote a series they don't even follow, but it's maybe as you say, just kids...;False;False;;;;1610217994;;False;{};gioha21;False;t3_ktrgan;False;False;t1_gio21mq;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioha21/;1610258183;7;True;False;anime;t5_2qh22;;0;[]; -[];;;NatrenSR1;;;[];;;;text;t2_16p9se;False;False;[];;When AOT comes back next week we’re gonna see some serious competition;False;False;;;;1610218111;;False;{};giohitj;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giohitj/;1610258339;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UNDECIDEDgifts;;;[];;;;text;t2_k8hce;False;False;[];;Can someone explain to me this please? I am new to this sub and do not understand the picture fully. I only want to understand why is there a list on the left side and another list on the right side?;False;False;;;;1610218151;;False;{};giohlu0;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giohlu0/;1610258391;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ghost4night;;;[];;;;text;t2_7lsk9kxd;False;False;[];;"AOT 16.5 -Re:0 13.5";False;False;;;;1610218310;;False;{};giohy93;False;t3_ktrgan;False;False;t1_ginmkk2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giohy93/;1610258596;5;True;False;anime;t5_2qh22;;0;[]; -[];;;somotodsyo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/somotodsyo ;light;text;t2_w1q11;False;False;[];;"His stuff is so good. Just gonna leave three more favourites of mine: - -* [Encouragement of Climb OP2](https://animethemes.moe/video/YamaNoSusumeS2-OP1.webm) -* [Occultic;Nine OP](https://animethemes.moe/video/OcculticNine-OP1.webm) -* [Erased ED](https://animethemes.moe/video/BokuDakeGaInaiMachi-ED1.webm)";False;False;;;;1610218332;;False;{};giohzzn;False;t3_ktszq1;False;False;t1_ginzgeh;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/giohzzn/;1610258624;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610218477;;False;{};gioib42;False;t3_ktuat7;False;True;t3_ktuat7;/r/anime/comments/ktuat7/i_need_a_good_romance_to_watch_over_the_weekend/gioib42/;1610258810;1;True;False;anime;t5_2qh22;;0;[]; -[];;;won_hallyu;;;[];;;;text;t2_16wnuv;False;False;[];;really happy about that. It deserves the hype for Spade Arc and it will only got better. The OP trended no.1 in yt shows and stayed no.1 in crunchyroll for days. A lot really aniticpating this I'm so excited!;False;False;;;;1610218547;;False;{};gioigfj;False;t3_ktrgan;False;False;t1_ginuie2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioigfj/;1610258905;17;True;False;anime;t5_2qh22;;0;[]; -[];;;kenjasama;;;[];;;;text;t2_9q2aelyc;False;False;[];;The left side is the karma ranking, and the right side is the episode evaluation ranking.;False;False;;;;1610218580;;False;{};gioiiui;False;t3_ktrgan;False;False;t1_giohlu0;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioiiui/;1610258944;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Bwana_Robert;;;[];;;;text;t2_1796lw;False;False;[];;Next week it's gonna be an all out war for rankings. Honestly can't wait to see who comes out on top.;False;False;;;;1610218655;;False;{};gioioi8;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioioi8/;1610259031;1;True;False;anime;t5_2qh22;;0;[]; -[];;;won_hallyu;;;[];;;;text;t2_16wnuv;False;False;[];;OP 13 Trending no.1 just proves it. I mean it's not the best Black Clover OP song but a lot is really just hype about Spade Arc.;False;False;;;;1610218664;;False;{};gioip7y;False;t3_ktrgan;False;False;t1_ginxa6a;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioip7y/;1610259043;21;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610218967;;False;{};giojcjc;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giojcjc/;1610259411;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Ep 5 is maybe my most anticipated episode of the whole S4, or in the top 3 at least. Idc about karma, but the discussion should be as juicy as when the manga chapter released. It was also what got me to start reading manga in general in Dec 31st 2017, that chapter was released before New Years, a whole week in advance!;False;False;;;;1610218984;;False;{};giojds3;False;t3_ktrgan;False;False;t1_ginnnso;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giojds3/;1610259430;23;True;False;anime;t5_2qh22;;0;[]; -[];;;won_hallyu;;;[];;;;text;t2_16wnuv;False;False;[];;I wouldn't say that for black clover it will probably rank for the rest of the season.;False;False;;;;1610219035;;False;{};giojhkl;False;t3_ktrgan;False;False;t1_gioacuq;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giojhkl/;1610259487;6;True;False;anime;t5_2qh22;;0;[]; -[];;;T00thl3ss22;;;[];;;;text;t2_34t5wjud;False;False;[];;Hell yeah go promised never land;False;False;;;;1610219038;;False;{};giojhry;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giojhry/;1610259491;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Eps 6-7-8 are hype, but 5 is the one that kicks off the rest of the story. Only Eren's abs later on made me as hard.;False;False;;;;1610219135;;False;{};giojpdb;False;t3_ktrgan;False;False;t1_ginyl5o;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giojpdb/;1610259608;14;True;False;anime;t5_2qh22;;0;[]; -[];;;taotakeo;;;[];;;;text;t2_1hyt4ppt;False;False;[];;🤣;False;False;;;;1610219195;;False;{};giojtyq;False;t3_ktszq1;False;False;t1_ginydzc;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/giojtyq/;1610259679;7;True;False;anime;t5_2qh22;;0;[]; -[];;;taotakeo;;;[];;;;text;t2_1hyt4ppt;False;False;[];;yes but the tone really doesn't fit;False;False;;;;1610219235;;False;{};giojwy2;False;t3_ktszq1;False;False;t1_ginwqm3;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/giojwy2/;1610259725;21;True;False;anime;t5_2qh22;;0;[]; -[];;;won_hallyu;;;[];;;;text;t2_16wnuv;False;False;[];;only in this sub. Black Clover was trending everywhere when it premiered. facebook, twitter, youtube you named it. Those at the top barely made any noise outside of this sub.;False;False;;;;1610219302;;False;{};giok20i;False;t3_ktrgan;False;True;t1_gintqze;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giok20i/;1610259805;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;No worries, the violence is sporadic so you usually get a few episodes inbetween and it is not even that graphic every time. Watch it for the nonviolent parts!;False;False;;;;1610219360;;False;{};giok6i8;False;t3_ktrgan;False;False;t1_giod0qv;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giok6i8/;1610259872;6;True;False;anime;t5_2qh22;;0;[]; -[];;;OneMoreDuncanIdaho;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/a_trisolaran;light;text;t2_i31pk;False;False;[];;Manga readers better not be overhyping aot episode 5, cause all the talk about it has me very excited for tomorrow;False;False;;;;1610219365;;False;{};giok6w7;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giok6w7/;1610259878;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Did S2E6 get more karma than S2E1 for AoT?;False;False;;;;1610219418;;False;{};giokaxv;False;t3_ktrgan;False;True;t1_ginu3xr;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giokaxv/;1610259940;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;AoT bout to start dividing the animeonly fanbase like the Red Sea like it did the manga readers.;False;False;;;;1610219481;;False;{};giokfrd;False;t3_ktrgan;False;False;t1_ginnm9t;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giokfrd/;1610260015;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Iammonkforlifelol;;;[];;;;text;t2_554va627;False;False;[];;Episode 160 of black clover is going to blow some water.;False;False;;;;1610219505;;False;{};giokhle;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giokhle/;1610260043;5;True;False;anime;t5_2qh22;;0;[]; -[];;;dark77638;;;[];;;;text;t2_14cb1i;False;False;[];;Aot 17k;False;False;;;;1610220076;;False;{};giolovu;False;t3_ktrgan;False;True;t1_ginmkk2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giolovu/;1610260713;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];; I think that are trying to promote the show as a bit more serious than it actually is. Because even though the show is basically rom-com fluff it is more serious than the new shows that are exclusively fluff like Tonikawa. So they probably want to show that difference.;False;False;;;;1610220097;;1610224446.0;{};giolqjh;False;t3_ktszq1;False;False;t1_giojwy2;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/giolqjh/;1610260738;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Android19samus;;;[];;;;text;t2_aqbu1;False;False;[];;"Honestly, not surprised that Yuru Camp did well this week of all weeks. People needed something comfy and calming. Heaven or Hell season has begun, and we're already seeing a bunch of strong starts for shows like Cells at Work, and Cells at Work. Will be interesting to see if those two stay next to each other all season or if one falls by the wayside. Quints came out strong and I didn't even remember it was getting a new season this Winter, while Promised Neverland predictably kills it. There's a lot of mixed opinions on the second arc, but it's clear that any drop in quality will be happening over time rather than all at once. Re:Zero, naturally, cleans up with its return in an episode full of hope and determination. I'm sure that will last. And apparently Black Clover did something cool again, since it's gotten one of its 1000+ karma jumps. Good for you, Black Clover. See you in a few months. - -Still coming up we've got the proper return of Slime Tensei after what I assume is some kind of recap episode. I wonder if this will soften the first-episode bump that shows usually get. We've also got Dr. Stone coming up. If season 2 does as well as season 1, it's primed to take the #2 spot in the current rankings, but will such an unremarkable series have the same pull when it's competing against more than just Demon Slayer and an Amazon-exclusive Vinland Saga? Only time will tell. Well, either way it'll be at best #3 since Attack on Titan returns next week. Probably #4 because oh yeah, so does Jujutsu Kaisen. - -Then we've got the newcomers. Kumo Desu's first episode landed a healthy 3.2k karma despite a few bits of questionable CGI, which would have landed it at #5 this week had it come out a few days earlier. Jobless Reincarnation is the other new isekai with a lot of hype set to drop soon, and while Horimiya's still too fresh to have a number it looks like another one people are watching intently. Oh yeah, and Log Horizon's coming back. Returning after such a long break and such a widely disliked season 2, it'll be very interesting to see how it does. - -That's 7, maybe 8 big shows for this season that aren't even on the chart yet. Even factoring in karma dips after episode 1, we very well may be in for a top 15 comprised *entirely* out of shows that breach 1k karma.";False;False;;;;1610220152;;False;{};giolus6;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giolus6/;1610260814;4;True;False;anime;t5_2qh22;;0;[]; -[];;;dark77638;;;[];;;;text;t2_14cb1i;False;False;[];;100, 112, 119, 122 ep that contain these chap are going to skyrocketed. 119, 122 prob break 25k;False;False;;;;1610220222;;False;{};giom0e6;False;t3_ktrgan;False;False;t1_giojds3;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giom0e6/;1610260910;20;True;False;anime;t5_2qh22;;0;[]; -[];;;KrispyFishnuts;;;[];;;;text;t2_7zt7a1vf;False;False;[];;Im gonna be interested to see wether rezero or attack on titan has more clout, probably aot;False;False;;;;1610220356;;False;{};giomauc;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giomauc/;1610261071;3;True;False;anime;t5_2qh22;;0;[]; -[];;;imaforgetthis;;;[];;;;text;t2_2d7gcwde;False;False;[];;">I'm so happy Yuru Camp is back after 2 years - -It's closer to 3 years if you exclude those little side episodes. Never would have imagined a camping SoL would be so well-received.";False;False;;;;1610220424;;False;{};giomg1b;False;t3_ktrgan;False;False;t1_ginng6w;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giomg1b/;1610261160;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;112 is probably the beginning of despair to some fans ahah;False;False;;;;1610220428;;False;{};giomgde;False;t3_ktrgan;False;False;t1_giom0e6;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giomgde/;1610261166;13;True;False;anime;t5_2qh22;;0;[]; -[];;;imaforgetthis;;;[];;;;text;t2_2d7gcwde;False;False;[];;It's pretty crazy how much its karma can fluctuate. I guess that's to be expected with long-running series.;False;False;;;;1610220509;;False;{};giommaj;False;t3_ktrgan;False;True;t1_ginuie2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giommaj/;1610261271;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Android19samus;;;[];;;;text;t2_aqbu1;False;False;[];;I really wonder about Dr. Stone. It's... really not a great show. It's very okay, possibly the most okay shounen I've seen in years. And in its first season, it was up against Demon Slayer (which it lost to), Vinland Saga (which was on Amazon), and that's basically *it.* It was a big fish in a *very* small pond, and I can't help but feel that contributed to its success. It's not in a small pond anymore. If it holds its karma from first season it'll be a comfortable #4, but I don't think it will. This may be naive of me, but I think when given a season of actually good shows, people will be less likely to settle for putting Stone in their schedules.;False;False;;;;1610220709;;False;{};gion22p;False;t3_ktrgan;False;True;t1_ginsj8a;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gion22p/;1610261536;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rha_psody;;;[];;;;text;t2_98b54u1;False;False;[];;And since each episode aims to adapt ~2 chapters.... Yeah, there are no more brakes.;False;False;;;;1610220987;;False;{};gionnp9;False;t3_ktrgan;False;False;t1_ginu51h;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gionnp9/;1610261858;6;True;False;anime;t5_2qh22;;0;[]; -[];;;imaforgetthis;;;[];;;;text;t2_2d7gcwde;False;False;[];;I know best/most hyped anime season gets called out all the time, but this *seriously* has to be the most stacked season ever for r/anime. Arguably the top 2 most popular anime in the sub are airing simultaneously (with one in its finale) and a ridiculous amount of sequels. Looking at MAL as well, sorting by member count, 12 of the top 14 anime airing this season are sequels with pretty much all of them being previously well-received. This is crazy.;False;False;;;;1610221308;;False;{};gioobkj;False;t3_ktrgan;False;False;t1_ginmavp;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioobkj/;1610262241;12;True;False;anime;t5_2qh22;;0;[]; -[];;;PREM___;;;[];;;;text;t2_3pqnn53g;False;False;[];;e9 and 10 can be build up but after thats it’s all uphill. Re:zero kinda have chances for the first two weeks of feb so lets see;False;False;;;;1610221452;;False;{};gioom1g;False;t3_ktrgan;False;True;t1_gio6t4e;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioom1g/;1610262408;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Crisisofland;;;[];;;;text;t2_7jhkdpjn;False;False;[];;"AoT: 17-18 - -Re:zero: 12-13+";False;False;;;;1610221610;;False;{};giooxry;False;t3_ktrgan;False;False;t1_ginmkk2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giooxry/;1610262593;6;True;False;anime;t5_2qh22;;0;[]; -[];;;imaforgetthis;;;[];;;;text;t2_2d7gcwde;False;False;[];;">Amazing how Black Clover is actual doing well, I still remember the time when Black Clover was widely hated due to its early episodes and arc. - -It tends to fluctuate *a lot*, but it's to be expected with a long-running show. It will barely break a few hundred karma sometimes. Cranking out an episode almost every week of the year is bound to have a lot of boring moments, but when the hype moments come around, the fans show up.";False;False;;;;1610221789;;False;{};giopb45;False;t3_ktrgan;False;False;t1_ginxa6a;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giopb45/;1610262795;34;True;False;anime;t5_2qh22;;0;[]; -[];;;imaforgetthis;;;[];;;;text;t2_2d7gcwde;False;False;[];;Seriously, every mention of AoT by manga readers since the last episode aired has been hyping it up to no end. The AoT hype levels are higher than CP2077, but at least it's been delivering and more likely to deliver.;False;False;;;;1610222022;;False;{};gioprw2;False;t3_ktrgan;False;False;t1_ginu1xg;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioprw2/;1610263061;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Crisisofland;;;[];;;;text;t2_7jhkdpjn;False;False;[];;the battle between TPN and JJK will be interesting, i think that's where it'll zigzag the most.;False;False;;;;1610222147;;False;{};gioq0xk;False;t3_ktrgan;False;False;t1_ginmavp;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioq0xk/;1610263195;4;True;False;anime;t5_2qh22;;0;[]; -[];;;twigboy;;;[];;;;text;t2_4caar;False;False;[];;I needed it. The amount of great shows this season is insane;False;False;;;;1610222253;;False;{};gioq8s0;False;t3_ktrgan;False;False;t1_ginnzha;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioq8s0/;1610263310;11;True;False;anime;t5_2qh22;;0;[]; -[];;;UNDECIDEDgifts;;;[];;;;text;t2_k8hce;False;False;[];;Thank you for the information;False;False;;;;1610222318;;False;{};gioqdjz;False;t3_ktrgan;False;True;t1_gioiiui;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioqdjz/;1610263381;2;True;False;anime;t5_2qh22;;0;[]; -[];;;zairaner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/zairaner;light;text;t2_166xh0;False;False;[];;Pretty unlikely, considering re:zero will most likely get a season 3;False;False;;;;1610222370;;False;{};gioqhgx;False;t3_ktrgan;False;True;t1_ginzqiv;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioqhgx/;1610263441;3;True;False;anime;t5_2qh22;;0;[]; -[];;;imaforgetthis;;;[];;;;text;t2_2d7gcwde;False;False;[];;It's not even just the popularity. Comparing one show's grand finale to another show's 2nd season is going to make a huge difference. I'm an anime-only fan of both, but AoT will easily win out on most (if not all) weeks.;False;False;;;;1610222406;;False;{};gioqk5x;False;t3_ktrgan;False;False;t1_ginvdql;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioqk5x/;1610263480;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Plague_Lemon;;;[];;;;text;t2_7sv2eawm;False;False;[];;Promised Neverland S2's first episode was 🔥. Cant wait for the second episode.;False;False;;;;1610222465;;False;{};gioqoia;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioqoia/;1610263543;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dister_;;;[];;;;text;t2_525l8hrt;False;False;[];;Seeing their favorite series doing better gives them a feeling of superiority. You see them a lot in yutube comments liking to brag about the series they prefer and shiting for no reason other series and people who like them. As i said hope they are kids in which can grow out of it its sad to think that a fully grown adult does sth this petty;False;False;;;;1610222506;;False;{};gioqrid;False;t3_ktrgan;False;False;t1_gioha21;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioqrid/;1610263586;6;True;False;anime;t5_2qh22;;0;[]; -[];;;YeOldGravyBoat;;;[];;;;text;t2_3xw66uhi;False;False;[];;Can someone explain the difference between cells at work s2 and black?;False;False;;;;1610222637;;False;{};gior0x2;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gior0x2/;1610263724;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KurisuMakise-;;;[];;;;text;t2_2dbw81ht;False;False;[];;God I cant get over how stylish it is. So many beautiful shots.;False;False;;;;1610222681;;False;{};gior44b;False;t3_ktszq1;False;True;t3_ktszq1;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/gior44b/;1610263773;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NKTVS;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/fireb4llz/;light;text;t2_3as1eyfu;False;False;[];;And this is without AOT, JJK, and big shows like Dr Stone that haven't aired yet.;False;False;;;;1610222939;;False;{};giormys;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giormys/;1610264082;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;Feeling awful brave, are we?;False;False;;;;1610222988;;False;{};giorqf9;False;t3_ktrgan;False;False;t1_gio8pwj;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giorqf9/;1610264139;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;"That moment when USA's crap will give a ton more exposition to Attack on titan due to confused and scared people - -The hashtag (AOTDeclarationOfWar) surely looks intimidating if you have no clue what AOT is";False;False;;;;1610223034;;False;{};giortqx;False;t3_ktrgan;False;False;t1_ginr09v;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giortqx/;1610264191;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Ry-O-Ken;;;[];;;;text;t2_2lrnusrf;False;False;[];;Maybe it doesn’t fit the show as a whole but there are some moments like in the manga;False;False;;;;1610223045;;False;{};giorukh;False;t3_ktszq1;False;True;t1_giojwy2;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/giorukh/;1610264203;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;Re:Zero's last episode wasn't really a premiere episode though, it was just the second half of the cour. It might have gotten a boost but you can tell it wasn't nearly comparable to what S2E1 got. It's entirely possible that E14 was the lowest its karma will go for the rest of the season.;False;False;;;;1610223052;;False;{};giorv2s;False;t3_ktrgan;False;False;t1_ginnnso;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giorv2s/;1610264211;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Ry-O-Ken;;;[];;;;text;t2_2lrnusrf;False;False;[];;Good choices (although all ishihama OPs are good so you could never make a bad choice);False;False;;;;1610223124;;False;{};gios09r;False;t3_ktszq1;False;True;t1_giohzzn;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/gios09r/;1610264297;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;/u/miltonmerloxd has demonstrated their time travel abilities repeatedly, so I'm gonna agree with whatever they say. I know better than to go against time travel.;False;False;;;;1610223219;;False;{};gios7o7;False;t3_ktrgan;False;True;t1_ginmkk2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gios7o7/;1610264413;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;"> -> -> -> -> This suprised me because the discussion post was put up much later than when the episode came out. - - Came out at the same time as it was streaming in the west";False;False;;;;1610223252;;False;{};giosaa0;False;t3_ktrgan;False;True;t1_ginn08n;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giosaa0/;1610264453;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610223425;;False;{};giospho;False;t3_ktrgan;False;True;t1_giosaa0;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giospho/;1610264682;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;Re:Zero's the only thing that stands even a remote chance of winning a head-to-head week. If it can pull more than 1 or 2 victories I'll consider that a huge success.;False;False;;;;1610223478;;False;{};giostbd;False;t3_ktrgan;False;False;t1_gioe15d;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giostbd/;1610264740;11;True;False;anime;t5_2qh22;;0;[]; -[];;;taotakeo;;;[];;;;text;t2_1hyt4ppt;False;False;[];;who is ishihama;False;False;;;;1610223487;;False;{};giosty3;False;t3_ktszq1;False;True;t1_ginvmfs;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/giosty3/;1610264749;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Xzcarloszx;;;[];;;;text;t2_886vs;False;False;[];;Tommorow is not the peak of rezero unless I'm confused about what's next only having read the wn.;False;False;;;;1610223673;;False;{};giot77l;False;t3_ktrgan;False;False;t1_ginqvmn;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giot77l/;1610264948;5;True;False;anime;t5_2qh22;;0;[]; -[];;;asian_hans;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Shadow_Haunter12;light;text;t2_btv3xjy;False;False;[];;Can I watch the reboot even though I only watched the first two seasons from 2006?;False;False;;;;1610224658;;False;{};giov7ws;False;t3_ktrgan;False;False;t1_ginmm17;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giov7ws/;1610266045;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;Watch it get into the 6-11 crowd. At least at first, everyone will probably lose interest in it once the shock factor wears off.;False;False;;;;1610224737;;False;{};giovdyp;False;t3_ktrgan;False;True;t1_ginvawr;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giovdyp/;1610266134;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WeNTuS;;;[];;;;text;t2_btiic;False;False;[];;">I'm thinking of watching 18 anime this season and the number not including ongoing series. This is my new record - -20 so far here. I hope I won't like some to drop that number lol";False;False;;;;1610224901;;False;{};giovpza;False;t3_ktrgan;False;True;t1_ginna96;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giovpza/;1610266314;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Roboglenn;;;[];;;;text;t2_2tzu4yyq;False;False;[];;Yes, surrender to the flavor's tantalizing embrace.;False;False;;;;1610225013;;False;{};giovy97;False;t3_ktt8mm;False;True;t3_ktt8mm;/r/anime/comments/ktt8mm/cant_help_not_to_sin_with_this_back_fat_koizumi/giovy97/;1610266437;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;True;[];;"I think they're being a little misleading when he says they kiss. They technically do, but it's so the one who is in jail can pass along something without getting caught. It is anything but an intimate romantic encounter. There is also the case that one of the male characters is groomed and occasionally molested by a mafia leader and his lackeys. While the relationship between Ash and Eiji is very sweet and can reasonably be interpreted as gay, Banana Fish is *not* a romance show. It's a hardcore crime thriller, it's a violent show about characters fighting for freedom. I wouldn't say sexuality isn't a part of the story, it certainly is, but to say it's a gay romance and that the MC's kiss doesn't really paint an accurate picture of the series. - -That being said, it shouldn't matter weather they kiss or not. Gay romance isn't any different from straight romance. A good show with good character dynamics is good, and a strong romantic relationship is good no matter what the genders of the characters are. If you won't watch anything with hints of gay romance you're limiting yourself from a ton of great media. Idk about you, but I don't watch a romance to be turned on by it or to place myself in the relationship.";False;False;;;;1610225085;;False;{};giow3ba;False;t3_ktty89;False;False;t1_gio3xlc;/r/anime/comments/ktty89/is_banana_fish_a_good_watch_and_what_is_it_about/giow3ba/;1610266513;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;I wanna see Quints take the #3 spot for a week, just to see the salt.;False;False;;;;1610225114;;False;{};giow5fi;False;t3_ktrgan;False;False;t1_giof2t0;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giow5fi/;1610266545;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;It will involve Emilia, I guarantee it. I've heard she's a major focus of this cour.;False;False;;;;1610225525;;False;{};giowzqd;False;t3_ktrgan;False;False;t1_ginx1m3;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giowzqd/;1610267001;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Electric_Bagpipes;;;[];;;;text;t2_8gvtqvq4;False;False;[];;TPN fans where ya at?!;False;False;;;;1610225639;;False;{};giox8mo;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giox8mo/;1610267138;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mad_Scientist_Senku;;;[];;;;text;t2_3a2in6vv;False;False;[];;Ranking anime for me, this is like sports for other people. I could talk all day about what shows are going to place where.;False;False;;;;1610225747;;False;{};gioxgt4;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioxgt4/;1610267260;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Pyroluminous;;;[];;;;text;t2_rb4zi;False;True;[];;OH MY GOFNIFISUS IS IT OUT?!?! LONG HAVE I AWAITED THIS MOMENT, HOLY SHIT THIS IS HYPE;False;False;;;;1610225936;;False;{};gioxuev;False;t3_ktszq1;False;False;t3_ktszq1;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/gioxuev/;1610267470;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MiltonMerloXD;;;[];;;;text;t2_7p59l5sh;False;False;[];;A time traveler approves of this. Thanks for the support, bro. Maybe I can predict your future, who knows lol.;False;False;;;;1610225949;;False;{};gioxve7;False;t3_ktrgan;False;True;t1_gios7o7;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioxve7/;1610267484;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610226322;;False;{};gioymlt;False;t3_ktrgan;False;True;t1_gioigfj;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioymlt/;1610267893;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HMP12;;;[];;;;text;t2_qbo9z;False;False;[];;Black is seinen version cell at work. It have darker tone.;False;False;;;;1610226334;;False;{};gioyngg;False;t3_ktrgan;False;True;t1_gior0x2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioyngg/;1610267906;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hydraxiv;;;[];;;;text;t2_5wvchq00;False;False;[];;Noblesse just chilling;False;False;;;;1610226433;;False;{};gioyup4;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gioyup4/;1610268015;2;True;False;anime;t5_2qh22;;0;[]; -[];;;stefano_romani_;;;[];;;;text;t2_9b6n8s2o;False;False;[];;The Quints are fourth?! it's just because we all know who's the winner. ahahahahahha;False;False;;;;1610226683;;False;{};giozcfq;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giozcfq/;1610268289;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;nihaobrian94;;;[];;;;text;t2_13z7vr;False;False;[];;When will this song be fully released?;False;False;;;;1610226747;;False;{};giozh2a;False;t3_ktszq1;False;True;t3_ktszq1;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/giozh2a/;1610268357;1;True;False;anime;t5_2qh22;;0;[]; -[];;;somotodsyo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/somotodsyo ;light;text;t2_w1q11;False;False;[];;The director of this show, who has become known for his ability to create stunning OPs. If you're interested, here's [a great video about him](https://youtu.be/ssLHFN0zIbc).;False;False;;;;1610228202;;False;{};gip2l5g;False;t3_ktszq1;False;False;t1_giosty3;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/gip2l5g/;1610270069;4;True;False;anime;t5_2qh22;;0;[]; -[];;;DrizzyRhyme;;;[];;;;text;t2_ntwq6;False;False;[];;Higurashi’s latest episode was so good!;False;False;;;;1610228338;;False;{};gip2urw;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip2urw/;1610270222;10;True;False;anime;t5_2qh22;;0;[]; -[];;;-Danksouls-;;;[];;;;text;t2_4p7j9f3m;False;False;[];;"We have to consider the suprise factor. - -More people have read AOTs manga then have read Re:zeros light novel( as its easier to get into a book with pics than mostly words) - -So I really am giving re zero the benefit of the doubt thede coming weekd when competing with AOT because more people have not been spoiled on its plot";False;False;;;;1610228360;;False;{};gip2wd9;False;t3_ktrgan;False;True;t1_ginn7tj;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip2wd9/;1610270246;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610228805;;False;{};gip3s1l;False;t3_ktrgan;False;True;t1_gio32d8;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip3s1l/;1610270725;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ravioli_Heicho;;;[];;;;text;t2_3bls5ou;False;False;[];;I like Re:Zero a lot, but I really doubt it'll win any of the head-to-heads. The *premier* got over 2000 less than AoT's lowest episode so far.;False;False;;;;1610228867;;False;{};gip3wg0;False;t3_ktrgan;False;False;t1_giostbd;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip3wg0/;1610270793;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"Cells at work S2 is just like S1, everyday troubles in a normal body. - -Cells at work Black is a messed up body, from a smoker/alcoholic. It's not light-hearted at all like the original. Could be used as a PSA ""Take care of your body!"", because it's not happy in there.";False;False;;;;1610228935;;False;{};gip41cm;False;t3_ktrgan;False;False;t1_gior0x2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip41cm/;1610270868;9;True;False;anime;t5_2qh22;;0;[]; -[];;;zxHellboyxz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Mattinator95;light;text;t2_27t5u6vk;False;False;[];;Apprently it skipped chapters;False;False;;;;1610228999;;False;{};gip45wl;False;t3_ktrgan;False;True;t1_ginsrmp;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip45wl/;1610270938;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MaskOfIce42;;;[];;;;text;t2_gj6onc6;False;False;[];;I was so close to dropping Higurashi Gou because while I enjoyed the original Higurashi, so far it had felt stuck somewhere between a remake and sequel like it couldn't commit to either and was just not working for me. But did end up watching that most recent episode and it was good enough to convince me to stick with it since it feels like it's finally picking up.;False;False;;;;1610229016;;False;{};gip472f;False;t3_ktrgan;False;False;t1_ginmpul;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip472f/;1610270957;6;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"It's the best episode in Gou by FAAAR! Gou has a lot of problems, but last episode finally felt like a WTC quality episode. - -Hopefully it keeps this quality going forward";False;False;;;;1610229018;;False;{};gip4785;False;t3_ktrgan;False;False;t1_ginmm17;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip4785/;1610270959;6;True;False;anime;t5_2qh22;;0;[]; -[];;;LakerBlue;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LakerBlue;light;text;t2_afaca;False;False;[];;So a lot of the violence isn’t as bad as the opening baseball bat assault?;False;False;;;;1610229130;;False;{};gip4f9z;False;t3_ktrgan;False;True;t1_giok6i8;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip4f9z/;1610271098;3;True;False;anime;t5_2qh22;;0;[]; -[];;;zxHellboyxz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Mattinator95;light;text;t2_27t5u6vk;False;False;[];;Healthy body , non healthy body;False;False;;;;1610229171;;False;{};gip4i7k;False;t3_ktrgan;False;True;t1_gior0x2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip4i7k/;1610271142;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"Cells at work vs CAW black is the battle i'm more interested in. - -Also TPN didn't underperform that much. The first episode was a chill experience. I'm pretty sure it will pick up in karma in the following weeks. - -TPN vs JJK will be another interesting battle";False;False;;;;1610229175;;False;{};gip4iil;False;t3_ktrgan;False;True;t1_ginm8f9;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip4iil/;1610271147;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"Yeah akudama drive's spike in quality was insane! I'm glad all me and all the fellow fans came together to promote it. - -It deserves the popularity";False;False;;;;1610229266;;False;{};gip4oyy;False;t3_ktrgan;False;False;t1_ginn5f2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip4oyy/;1610271243;7;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"I'm not exaggerating, if you asked me JJK will be solid third and I don't see it losing it that spot anytime, unless something wild happens with other series. - -But JJK just topped 8k in its hype super sakuga episodes, Re:Zero have not had a below 11k for a while and starting next episode is a huge ass climax for Re:Zero that never stops until the end. - -So yeah I'm not joking when I say JJK is not touching it.";False;False;;;;1610229274;;False;{};gip4phi;False;t3_ktrgan;False;False;t1_giof2t0;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip4phi/;1610271250;6;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"If otherside picnic gets really good later on, then I wouldn't be surprising if a lot of fans promote it heavily; similar ot akudama drive. - -It had a strong introduction, now it just needs to deliver. - -I will do my part in promoting otherside picnic if it becomes amazing for sure";False;False;;;;1610229372;;False;{};gip4w9o;False;t3_ktrgan;False;True;t1_ginndq0;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip4w9o/;1610271353;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"One of the few great isekai anime. - -I personally have a lot of problems with S2, but if you're interested in a hype emotional unique anime. Then give S1 a try! - -It has a very strong hook, so don't be surprising if you binge it in a week or two.l";False;False;;;;1610229485;;False;{};gip54cx;False;t3_ktrgan;False;True;t1_gino6zg;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip54cx/;1610271476;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;That wasn't really the premiere though, it was just the start of the next cour. The actual premiere got 14.6K, which is a much more noticeable boost. Hell, 5 episodes from Cour 1 beat this one's karma and 2 more came really close, so even now this is a pretty mid-tier episode. Plus people are saying it's all gas from here, so if anything that might be the lowest point of cour 2.;False;False;;;;1610229772;;False;{};gip5our;False;t3_ktrgan;False;True;t1_gip3wg0;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip5our/;1610271791;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;"""this"" cour gives me hope for the rest of the series... - -I'm content with her being a plot device because i genuinely believe that this far in the story she can't be anything else.";False;True;;comment score below threshold;;1610229841;;False;{};gip5tqp;False;t3_ktrgan;False;True;t1_giowzqd;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip5tqp/;1610271865;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;unknown537;;;[];;;;text;t2_20519zb3;False;False;[];;Well, it's obvious AoT is gonna crush everyone next week. Anyway, I am so happy that Higurashi got what it deserved for the true suffering episode.;False;False;;;;1610229847;;False;{};gip5u46;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip5u46/;1610271871;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;You said AoT would hit 16-18K, right? Any info for Re:Zero?;False;False;;;;1610229968;;False;{};gip631s;False;t3_ktrgan;False;True;t1_gioxve7;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip631s/;1610272002;2;True;False;anime;t5_2qh22;;0;[]; -[];;;1832vin;;;[];;;;text;t2_drevq;False;False;[];;do you even need a backstory? try ramen once, you'll be hooked;False;False;;;;1610230523;;False;{};gip7809;False;t3_ktt8mm;False;False;t1_ginxeb5;/r/anime/comments/ktt8mm/cant_help_not_to_sin_with_this_back_fat_koizumi/gip7809/;1610272628;5;True;False;anime;t5_2qh22;;0;[]; -[];;;metalmonstar;;;[];;;;text;t2_55yjk;False;False;[];;Noblesse making the charts just barely after the fall season has ended is hilarious to me.;False;False;;;;1610230596;;False;{};gip7dce;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip7dce/;1610272708;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;This far? We're less than 1/4 of the way through. The source material is around halfway complete and the show isn't even halfway to *that*. I'm told that Emilia gets a lot of development soon, bare with it for a few more episodes. If you haven't seen it then you might consider checking out the Frozen Bonds OVA, which details part of her backstory.;False;False;;;;1610230730;;False;{};gip7n40;False;t3_ktrgan;False;False;t1_gip5tqp;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip7n40/;1610272861;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AlixJ;;;[];;;;text;t2_2al0em37;False;False;[];;Re zero might be my favorite anime, but i don’t believe any of the upcoming episodes will have higher karma than aot(haven’t read ahead in the light/web novels tho);False;False;;;;1610231222;;False;{};gip8n1m;False;t3_ktrgan;False;False;t1_gioespv;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip8n1m/;1610273411;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Lion10;;MAL;[];;http://myanimelist.net/animelist/lion_1000;dark;text;t2_7gvls;False;False;[];;"I am unsure if I am understanding you correctly, but if you have only seen the 24 episodes of the original then you should watch Higurashi: Kai before watching Gou. - -The first Higurashi from 2006 contain what's called the ""question arcs"" that build up the big mystery, after which Higurashi: Kai contain the ""answer arcs"" that solves said mystery. None of the other titles are really essential to the story. - -Gou is a sequel to Kai, and whilst it is kinda newcomer friendly I would say that you lose out on a lot of the impact without having seen the previous iterations. - -Hope that clears things up :)";False;False;;;;1610231246;;False;{};gip8or2;False;t3_ktrgan;False;False;t1_giov7ws;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip8or2/;1610273438;9;True;False;anime;t5_2qh22;;0;[]; -[];;;AlixJ;;;[];;;;text;t2_2al0em37;False;False;[];;I’ll come back to this comment in 3 months;False;False;;;;1610231298;;False;{};gip8shh;False;t3_ktrgan;False;True;t1_gioespv;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip8shh/;1610273495;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AlixJ;;;[];;;;text;t2_2al0em37;False;False;[];;Lets hope so;False;False;;;;1610231319;;False;{};gip8u08;False;t3_ktrgan;False;False;t1_gioqhgx;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip8u08/;1610273517;6;True;False;anime;t5_2qh22;;0;[]; -[];;;smiley-rell;;;[];;;;text;t2_9iaznvjw;False;False;[];;I mean no, but the shounen genre has tempted me into always getting one. The brainwashing of the genre.;False;False;;;;1610231569;;False;{};gip9c40;False;t3_ktt8mm;False;False;t1_gip7809;/r/anime/comments/ktt8mm/cant_help_not_to_sin_with_this_back_fat_koizumi/gip9c40/;1610273785;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;"I mean she already has an humongous amount of development even without the OVA, that's not the problem. - -She's extremely well written and all. It's just that i value entertainment over all of these things and on that department she's just extremely boring.";False;False;;;;1610231720;;False;{};gip9n2o;False;t3_ktrgan;False;True;t1_gip7n40;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gip9n2o/;1610273951;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ravioli_Heicho;;;[];;;;text;t2_3bls5ou;False;False;[];;I guess we'll just have to wait and see. My money's on a clean sweep for SnK though.;False;False;;;;1610231956;;False;{};gipa409;False;t3_ktrgan;False;False;t1_gip5our;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipa409/;1610274206;17;True;False;anime;t5_2qh22;;0;[]; -[];;;MiltonMerloXD;;;[];;;;text;t2_7p59l5sh;False;False;[];;Sure, it will have a karma between 12-14k, 100% certainty.;False;False;;;;1610232009;;False;{};gipa7tc;False;t3_ktrgan;False;True;t1_gip631s;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipa7tc/;1610274264;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MiltonMerloXD;;;[];;;;text;t2_7p59l5sh;False;False;[];;"**AoT:** 16-18k - -**Re:Zero:** 12-14k";False;False;;;;1610232158;;False;{};gipaide;False;t3_ktrgan;False;True;t1_ginmkk2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipaide/;1610274424;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Phinaeus;;;[];;;;text;t2_3jbc6;False;True;[];;I love the new comment icons, a lot easier to identify and stands out more. Also like the rounded icons. Does RedditAnimeList not update in the first week? I see a lot of -----;False;False;;;;1610232487;;False;{};gipb5sr;False;t3_ktrgan;False;False;t1_ginstdy;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipb5sr/;1610274779;7;True;False;anime;t5_2qh22;;0;[]; -[];;;zairaner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/zairaner;light;text;t2_166xh0;False;False;[];;Though it didn't beat the first re:zero op, but the next one might do it.;False;False;;;;1610232594;;False;{};gipbdy1;False;t3_ktrgan;False;True;t1_gio7jts;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipbdy1/;1610274900;2;True;False;anime;t5_2qh22;;0;[]; -[];;;XxMemeStar69xX;;;[];;;;text;t2_2wkyq0u;False;False;[];;Why does the thread drop early for AoT?;False;False;;;;1610232626;;False;{};gipbg8i;False;t3_ktrgan;False;True;t1_ginqvmn;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipbg8i/;1610274936;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rapedcorpse;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Kilimini;light;text;t2_9n73kr1;False;False;[];;AoT split season premier broke the record for a premier karma at the time so i dont think being a split season affects it.;False;False;;;;1610232650;;False;{};gipbhyq;False;t3_ktrgan;False;True;t1_ginoenh;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipbhyq/;1610274963;3;True;False;anime;t5_2qh22;;0;[]; -[];;;reddadz;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MysticEyes/;light;text;t2_oek5m;False;True;[];;"Glad you liked them. I tried to make the chart less crowded & went back to something similar to the 2019 version. - ->Does RedditAnimeList not update in the first week? - -Yeah, RAL tends to take the first week off every season. This time, the site didn't even load for me.";False;False;;;;1610232707;;False;{};gipbm09;True;t3_ktrgan;False;False;t1_gipb5sr;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipbm09/;1610275023;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuiger;;;[];;;;text;t2_nb484;False;False;[];;"It's really good but that chorus is really... weak - -It built up to more calmness.";False;False;;;;1610233124;;False;{};gipcf9s;False;t3_ktszq1;False;False;t3_ktszq1;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/gipcf9s/;1610275459;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;"Some is as bad, but a lot is not shown. Tbh if it really is too much, then I guess I can't say you won't drop the show later. But you can try! - -At least this one doesn't seem to have torture unlike the original .\_.";False;False;;;;1610233165;;False;{};gipci8q;False;t3_ktrgan;False;True;t1_gip4f9z;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipci8q/;1610275503;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lukas04;;;[];;;;text;t2_16mozp;False;False;[];;"Where did people watch Slime S2? -MAL says that it releases on the 12th of January and i dont find it anywhere, yet people seem to have watched the first episode according to this?";False;False;;;;1610233560;;False;{};gipda5k;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipda5k/;1610275920;2;True;False;anime;t5_2qh22;;0;[]; -[];;;asian_hans;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Shadow_Haunter12;light;text;t2_btv3xjy;False;False;[];;Yeah I did watch kai;False;False;;;;1610233741;;False;{};gipdmq0;False;t3_ktrgan;False;False;t1_gip8or2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipdmq0/;1610276110;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Drink_Glum;;;[];;;;text;t2_8t3affy8;False;False;[];;"Painfully average is your opinion. -And I strongly disagree with it.";False;False;;;;1610233782;;False;{};gipdpjb;False;t3_ktrgan;False;True;t1_gioddvo;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipdpjb/;1610276153;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610233915;;False;{};gipdz0n;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipdz0n/;1610276291;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;The threads always go up when the first english subtitled episode is available. In AoT's case there is a substantial delay between the japanese raw airing and the official crunchyroll subtitled stream going up (usually around 5 hours). What normally happens as a result of this is a fansub is made before the CR stream goes up and this is when the thread is created. For other shows the delay isn't usually so big and the first eng sub episode will be the one on the most popular streaming platform.;False;False;;;;1610234658;;False;{};gipfepd;False;t3_ktrgan;False;False;t1_gipbg8i;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipfepd/;1610277075;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarfaceTonyMontana;;;[];;;;text;t2_16b7bo;False;False;[];;fate grand carnival was just a trailer though, season 1 and 2 are coming this year in early summer;False;False;;;;1610234857;;False;{};gipfsgl;False;t3_ktrgan;False;False;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipfsgl/;1610277280;2;True;False;anime;t5_2qh22;;0;[]; -[];;;discuss-not-concuss;;;[];;;;text;t2_4szhiuz1;False;False;[];;"what do you mean? of course it is similar to the first half when he’s just starting the loop. And this is Subaru’s first thought-out plan. - -side note: non-comedic shows usually don’t monologue their plans until the action starts";False;False;;;;1610235022;;False;{};gipg3lf;False;t3_ktrgan;False;True;t1_giode34;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipg3lf/;1610277447;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tamac1703;;;[];;;;text;t2_2mdyo7bb;False;False;[];;Does anyone know the significance of the cubes/squares? Feel free to PM me if you're afraid of spoiling others, or you can spoiler tag.;False;False;;;;1610235159;;False;{};gipgct8;False;t3_ktszq1;False;True;t3_ktszq1;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/gipgct8/;1610277586;1;True;False;anime;t5_2qh22;;0;[]; -[];;;H-K_47;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"http://myanimelist.net/animelist/H-K_8472 <- Too lazy to update";light;text;t2_gljx5;False;False;[];;This is how I feel too. Even so, E5 should get crazy numbers, and it'll set the stage for the next 2-3 hype episodes.;False;False;;;;1610235425;;False;{};gipguwg;False;t3_ktrgan;False;False;t1_ginxp43;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipguwg/;1610277861;5;True;False;anime;t5_2qh22;;0;[]; -[];;;moybull;;;[];;;;text;t2_wfco3w0;False;False;[];;You can watch Gou after Kai but I'll also recommend Higurashi Rei since the canon episodes 2-4 are good and serve as an epilogue for Kai. Only 3 episodes. It also helps establish one important detail that may be brought up in Gou.;False;False;;;;1610236006;;False;{};giphyka;False;t3_ktrgan;False;False;t1_gipdmq0;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giphyka/;1610278463;5;True;False;anime;t5_2qh22;;0;[]; -[];;;asian_hans;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Shadow_Haunter12;light;text;t2_btv3xjy;False;False;[];;Oh okay, so rei is canon, I thought it would be just a bunch of filler. Guess I'm wrong about that;False;False;;;;1610236167;;False;{};gipi9j9;False;t3_ktrgan;False;True;t1_giphyka;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipi9j9/;1610278625;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cerdaco;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cerdaco;light;text;t2_n80h4;False;False;[];;I didn't even realize how sensual the music was for this scene;False;False;;;;1610236197;;False;{};gipibge;False;t3_ktt8mm;False;True;t3_ktt8mm;/r/anime/comments/ktt8mm/cant_help_not_to_sin_with_this_back_fat_koizumi/gipibge/;1610278653;2;True;False;anime;t5_2qh22;;0;[]; -[];;;moybull;;;[];;;;text;t2_wfco3w0;False;False;[];;Episode 1 is filler and it confuses a lot of people they stop watching without realizing that 2-4 is a serious, canon arc. Saikoroshi-hen, aka the Dice-Killing Chapter. It's an adaptation of a really good VN arc.;False;False;;;;1610236448;;False;{};gipiswb;False;t3_ktrgan;False;False;t1_gipi9j9;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipiswb/;1610278912;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Tacitus_;;;[];;;;text;t2_4v1er;False;False;[];;I'll hype So I'm a Spider, So What? to the end of my days.;False;False;;;;1610236855;;False;{};gipjl1p;False;t3_ktrgan;False;False;t1_gino3mo;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipjl1p/;1610279341;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Zmaki;;;[];;;;text;t2_f9zardz;False;False;[];;okay I'm confused, is beastars officially airing now or what;False;False;;;;1610237025;;False;{};gipjwvj;False;t3_ktrgan;False;True;t3_ktrgan;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipjwvj/;1610279520;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kingOlimbs;;;[];;;;text;t2_8m8v5;False;False;[];;in japan yes, but wont hit US netflix till they dub the whole season sadly;False;False;;;;1610237472;;False;{};gipkr3d;False;t3_ktrgan;False;False;t1_gipjwvj;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipkr3d/;1610279983;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Animegamingnerd;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/animegamingnerd;light;text;t2_k7u33;False;False;[];;"AoT is gonna be at least 20K for the next four episodes, the second half the Marley arc is that fucking hype. - -Re-Zero is gonna be in the 10K range next week I bet.";False;False;;;;1610237971;;1610239774.0;{};giplq55;False;t3_ktrgan;False;True;t1_ginmkk2;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/giplq55/;1610280538;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Animegamingnerd;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/animegamingnerd;light;text;t2_k7u33;False;False;[];;I can see some episodes of Re-Zero reaching the top if its hype moments happen at the same time that AoT's final arc starts since that arc has a pretty slow start. But both next few episodes and last couple episodes if the season ends I think its gonna end will definitely be at the top.;False;False;;;;1610238194;;False;{};gipm5sx;False;t3_ktrgan;False;True;t1_ginmdnx;/r/anime/comments/ktrgan/ranime_karma_poll_ranking_week_1_winter_2021/gipm5sx/;1610280775;1;True;False;anime;t5_2qh22;;0;[]; -[];;;guacamoles_constant;;;[];;;;text;t2_9pptc67;False;False;[];;Really interesting visuals, I think. The cubes don't really symbolise anything from the manga (that I remember), but they do a good job of showcasing the main theme of their romance. The opening shot I think is supposed to symbolise that for Miyamura at least, school is a lonely place where time is just kinda broken for him. The interesting bit I think, is when the squares are moving around, you'll see characters occupy the same space but not at the same time. This culminates in that shot where Hori, Miyamura, Yuki and Toru share the classroom, but they're in separate squares. Correct me if I'm wrong, but it looks like the lighting in Toru and Yuki's squares match, while the lighting in Hori's is slightly different, and Miyamura's is completely different (being much more blue), which I think is supposed to symbolise how Hori is a bit out of sync with her friends, but Miyamura is completely out of sync with the whole class. All the characters are also staring at the space where Miyamura would occupy if he shared their square, with Miyamura looking back at Hori. Then there's that shot with Miyamura trapped in the cube, which is kinda self-explanatory. He then sits on the ground, waiting, while people walk past him. It's not until AFTER we see people ignore him and walk right on by that Miyamura reaches for the red cube, which probably signifies how this loneliness is something that he reached for after being ignored, which then transforms into the windows of school (and I can't tell what comes after that)... until he FINALLY shares the same space as Hori, who can't and doesn't ignore him as HE walks past HER. His grip tightens on the cube, scared to let go of it. We see the characters all moody and dramatic, then we see Miyamura literally throwing flowers at the box. Literally breaking through his box with romance lol.;False;False;;;;1610243995;;False;{};gipx5yq;False;t3_ktszq1;False;True;t3_ktszq1;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/gipx5yq/;1610287282;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Flare_Knight;;;[];;;;text;t2_v5stf;False;False;[];;"And she had to voice a lot of over the top stuff in Symphogear so that says a lot. - -No shock though. She was fantastic in that first episode. But it was also a performance that you could imagine being difficult.";False;False;;;;1610245359;;False;{};gipzpmi;False;t3_ktu3vo;False;True;t3_ktu3vo;/r/anime/comments/ktu3vo/aoi_yuuki_jokes_that_voicing_the_1st_episode_of/gipzpmi/;1610288929;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreathbeast;;;[];;;;text;t2_2asptq4t;False;False;[];;Something about the music during the title sequence made this instantly jump to one of my favourite openings of all time.;False;False;;;;1610246939;;False;{};giq2nhw;False;t3_ktszq1;False;True;t3_ktszq1;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/giq2nhw/;1610291070;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ExplicitNuM5;;;[];;;;text;t2_nd4dj;False;False;[];;I'm curious too, but I didn't pay much attention of that curiosity. Why do I have a feeling her parents own ramen places haha;False;False;;;;1610248222;;False;{};giq4y9y;False;t3_ktt8mm;False;True;t1_ginxeb5;/r/anime/comments/ktt8mm/cant_help_not_to_sin_with_this_back_fat_koizumi/giq4y9y/;1610292580;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ExplicitNuM5;;;[];;;;text;t2_nd4dj;False;False;[];;"It's most likely too oily for me and I'll feel crappy after eating it lmao - -Still want to give it a shot though. The nice extra-thick pork broth flavor... - -Fun show, by the way. Glad a clip showed up on Reddit.";False;False;;;;1610248365;;False;{};giq57lj;False;t3_ktt8mm;False;True;t3_ktt8mm;/r/anime/comments/ktt8mm/cant_help_not_to_sin_with_this_back_fat_koizumi/giq57lj/;1610292756;2;True;False;anime;t5_2qh22;;0;[]; -[];;;axl625;;;[];;;;text;t2_tskg1;False;False;[];;I noted his style from Shinsekai Yori's ending songs, then Boku dake ga Inai Machi. They were very memorable;False;False;;;;1610249031;;False;{};giq6edm;False;t3_ktszq1;False;True;t1_ginvmfs;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/giq6edm/;1610293556;3;True;False;anime;t5_2qh22;;0;[]; -[];;;fukboi42969;;;[];;;;text;t2_79grem4z;False;False;[];;Hopefully the anime dose the manga justice;False;False;;;;1610252841;;False;{};giqd9sr;False;t3_ktszq1;False;True;t3_ktszq1;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/giqd9sr/;1610298371;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sanweih;;;[];;;;text;t2_3rflliwz;False;False;[];;I think they skiped a lot. Like wtf what she was saying at the end of the episode if he didn't start going to her house until 2/4 quarter of the episode.;False;False;;;;1610253395;;False;{};giqe8yn;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqe8yn/;1610299136;1;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;But they completely skipped over the actual event, which is why I was confused. They passed on the street, and then he was in her house.;False;False;;;;1610253441;;False;{};giqebvs;False;t3_ktunxs;False;True;t1_giqdta6;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqebvs/;1610299191;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chippedjosh;;;[];;;;text;t2_1uwchziq;False;False;[];;"Never thought I’d see the day where I would watch a full manga to anime adaptation of this. - -And it’s so damn beautiful.";False;False;;;;1610253543;;False;{};giqeia5;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqeia5/;1610299314;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Saucy_Totchie;;;[];;;;text;t2_n6mml;False;False;[];;"Wow... I love this so far. Favorite thing is just how much quicker this is. Usually romances taking fucking forever to progress but in this one episode we got: - -- Boy meets Girl's family, just sota. - -- Boy gets inside Girls house. - -- Boy becomes regular guest at Girls house. - -- Girl sees boy's bare body. - -- Semi confession between the two. - -- A rejection. - -I hope this pace continues. Each of those things usually take at least an episode in other romances. - -One thing I dont like is that Hori's secret side is pretty boring. Miya's side is at least a shocker. Like nothing we've seen from Hori's school life is much of a subversion of what she normally is. Sure she's popular but nothing kind of the opposite of her being pretty domestic. Its super sweet though and I want more.";False;False;;;;1610253750;;1610254661.0;{};giqeurr;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqeurr/;1610299556;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Blales;;;[];;;;text;t2_isy1j;False;False;[];;Welcome to the Hori club! I remember picking up the manga years ago and waiting for an anime adaptation so now that I get to see her and Miyamura animated my heart is so full!;False;False;;;;1610253899;;False;{};giqf3hz;False;t3_ktunxs;False;True;t1_gio8onh;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqf3hz/;1610299741;0;True;False;anime;t5_2qh22;;0;[]; -[];;;LumpyChicken;;;[];;;;text;t2_12phvscu;False;False;[];;that was another day;False;False;;;;1610253946;;False;{};giqf6at;False;t3_ktunxs;False;False;t1_giqebvs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqf6at/;1610299803;4;True;False;anime;t5_2qh22;;0;[]; -[];;;RikodouDragonZ;;;[];;;;text;t2_3p0z9apz;False;False;[];;I think Hori just wants to be seen as normal by other. She also has a Perfect girl reputation to her at school. So her secret is important to her social life in school and what people think about her.;False;False;;;;1610254023;;False;{};giqfat1;False;t3_ktunxs;False;True;t1_giodmwp;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqfat1/;1610299936;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sol_reddit;;;[];;;;text;t2_12grgt;False;False;[];;Idk, I really liked the pace. It's bang on when it comes to the manga adaptation. I've read Horimiya 50 times over so far so I might be a little biased.;False;False;;;;1610254259;;False;{};giqfogx;False;t3_ktunxs;False;False;t1_gio7xzy;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqfogx/;1610300178;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sid_killer18;;;[];;;;text;t2_i8iol;False;False;[];;Ok who made this version;False;False;;;;1610254288;;False;{};giqfq2k;False;t3_ktunxs;False;False;t1_giooyws;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqfq2k/;1610300207;6;True;False;anime;t5_2qh22;;0;[]; -[];;;HonestRage;;;[];;;;text;t2_73x1n;False;False;[];;I absolutely love the few seconds around the one minute mark;False;False;;;;1610254302;;False;{};giqfqvy;False;t3_ktszq1;False;True;t3_ktszq1;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/giqfqvy/;1610300223;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RikodouDragonZ;;;[];;;;text;t2_3p0z9apz;False;False;[];;This is how the manga was too. They skipped some portion of the second chapter, but seeing as to how that part was filler, it will be animated sooner or later.;False;False;;;;1610254435;;False;{};giqfyne;False;t3_ktunxs;False;True;t1_gipm4xp;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqfyne/;1610300375;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RikodouDragonZ;;;[];;;;text;t2_3p0z9apz;False;False;[];;That's just how the characters are written. Also many people say that they think they have x amount of things. And the cringey part is just her being embarrassed by what he was saying. And the phone part is really a very small nitpick by you.;False;False;;;;1610254637;;False;{};giqga9o;False;t3_ktunxs;False;True;t1_giqahvc;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqga9o/;1610300595;0;True;False;anime;t5_2qh22;;0;[]; -[];;;dadnaya;;MAL;[];;https://myanimelist.net/profile/dadnaya;dark;text;t2_cubnc;False;False;[];;"It's mostly wholesome fluff with a bit of drama sprinkled in - -It looks like the dramatic moments here were played more dramatically than the manga's, but overall, it should be mostly fluff";False;False;;;;1610254724;;False;{};giqgfaq;False;t3_ktunxs;False;True;t1_giq3mmx;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqgfaq/;1610300692;3;True;False;anime;t5_2qh22;;0;[]; -[];;;condoriano_ismyname;;;[];;;;text;t2_ispj5;False;False;[];;"> Like her home side and school side don't feel super different. - -Hi Amethyst, long time no see. So there's a 3 episodes OVA, a long time ago. I really love Horimiya off of that OVA based on relativity to personal experiences. I think you would love the anime. I'm like 90% sure of this. - -I'm mentioning it because Episode 1 of the OVA is a far better introduction to the Horimiya settings than this episode showed (the major plotbeat is the same, but the tone is more somber and more importantly portrays the contrast between Hori and Miyamura better). - -Basically you get to see the dynamic and contrast between Hori and Miyamura better in that it portrays Miyamura even gloomier and Hori slightly more quick-tempered and a lot more commanding/demanding. - -Also, the VA for Hori is the VA for Chihaya (from Chihayafuru) and you know as well as I do that Chihaya's VA can do soft-spoken very well (contrasting Hori's personality). - -But the most important part that wasn't reflected in this episode was that of Hori's appearance. She should have looked homely without makeup. Or at least not as pretty. - -That's the ""different side"" she doesn't want people to see. - -This adaptation though, she's still portrayed equally attractive both at school and at home. - -Had this adaptation made Hori looks just a bit more average at home and Miyamura far gloomier (and less attractive in general) than what we got would sell the concept why the two would fit for each other. - -This adaptation Miyamura is reaally good looking. - -I'm not a manga reader though so I don't know how accurate I'm describing the settings based on the only from the 3 eps OVA I watched. It's one of my favorite SOL-romance story though, for sure.";False;False;;;;1610254859;;False;{};giqgmvj;False;t3_ktunxs;False;True;t1_gio7xzy;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqgmvj/;1610300877;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hazeissmart;;;[];;;;text;t2_fdmls;False;False;[];;Man that first episode was amazing;False;False;;;;1610254882;;False;{};giqgo7g;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqgo7g/;1610300900;2;True;False;anime;t5_2qh22;;0;[]; -[];;;E9b7g5;;;[];;;;text;t2_8zr7f2z;False;False;[];;LETS FUCKING GOOOOOOOO!!!;False;False;;;;1610254998;;False;{};giqguu5;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqguu5/;1610301021;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LippyTitan;;;[];;;;text;t2_10wbs7;False;False;[];;Good to hear because between higurashi and re zero i don't know how much suffering I can go through in one season. I was kinda worried this episode was gonna end up with her saying yes to that dudes confession and the heart ache would begin ep 1;False;False;;;;1610255074;;False;{};giqgz6o;False;t3_ktunxs;False;True;t1_giqgfaq;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqgz6o/;1610301100;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yKikooo;;;[];;;;text;t2_8484q65k;False;False;[];;I loved it;False;False;;;;1610255195;;False;{};giqh5zr;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqh5zr/;1610301230;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610255202;;False;{};giqh6ex;False;t3_ktunxs;False;True;t1_giprizu;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqh6ex/;1610301238;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Eames11;;;[];;;;text;t2_noi1y;False;False;[];;Why is nobody talking about that incredibly cute ending animation??;False;False;;;;1610255273;;False;{};giqha6v;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqha6v/;1610301308;4;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;"Not all guys can pull off the ""egg time fence jump"".";False;False;;;;1610255286;;False;{};giqhaxs;False;t3_ktunxs;False;False;t1_gipv6ur;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqhaxs/;1610301323;24;True;False;anime;t5_2qh22;;0;[]; -[];;;dadnaya;;MAL;[];;https://myanimelist.net/profile/dadnaya;dark;text;t2_cubnc;False;False;[];;"Nah, remember that the anime is called HoriMiya, which is the names of the two main characters together. - -You'll be seeing a lot of the sweet moments we saw throughout the ep at Hori's home";False;False;;;;1610255355;;False;{};giqherv;False;t3_ktunxs;False;True;t1_giqgz6o;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqherv/;1610301393;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LippyTitan;;;[];;;;text;t2_10wbs7;False;False;[];;Will we be getting as much sweetness as konikawa from last season? That show was peak happiness;False;False;;;;1610255420;;False;{};giqhiat;False;t3_ktunxs;False;False;t1_giqherv;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqhiat/;1610301458;1;True;False;anime;t5_2qh22;;0;[]; -[];;;pa-sama3;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_6ffle8jt;False;False;[];;Loving the op;False;False;;;;1610255444;;False;{};giqhjlg;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqhjlg/;1610301481;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IIHURRlCANEII;;MAL;[];;http://myanimelist.net/animelist/Caerus--;dark;text;t2_6ivfh;False;True;[];;Cloverworks man, they rock.;False;False;;;;1610255463;;False;{};giqhkla;False;t3_ktunxs;False;True;t1_gio5j02;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqhkla/;1610301500;2;True;False;anime;t5_2qh22;;0;[]; -[];;;yuyoin;;;[];;;;text;t2_6du7bkny;False;False;[];;i’m pretty sure he will, seeing as to how he’s been in promotional images and stuff;False;False;;;;1610255486;;False;{};giqhlrz;False;t3_ktunxs;False;False;t1_gipnspe;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqhlrz/;1610301521;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Aschentei;;;[];;;;text;t2_z1t0l;False;False;[];;"I feel like its faster than when I read the manga, but honestly i cant complain. I love their characters already.. - -I also love the casual gay like ""oh are they asking each other out"" LOL";False;False;;;;1610255518;;False;{};giqhnkx;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqhnkx/;1610301551;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dadnaya;;MAL;[];;https://myanimelist.net/profile/dadnaya;dark;text;t2_cubnc;False;False;[];;"Hmmm, I don't think it'd be *as* wholesome as ToniKawa, as ToniKawa was 100% fluff and nothing else. - -Horimiya does have a little bit of drama in it, but it's still very wholesome. But overall it is *very* far from suffering like ReZero. So you should be good :P";False;False;;;;1610255544;;False;{};giqhoyy;False;t3_ktunxs;False;True;t1_giqhiat;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqhoyy/;1610301576;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OriolesFan83;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/NateDx;light;text;t2_1om7l1w;False;False;[];;Definitely loved this episode, it’s looking to be one of my 2021 favorites already.;False;False;;;;1610255781;;False;{};giqi220;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqi220/;1610301862;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Idomenos;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Lysias?order=4&order2=1&status";light;text;t2_xo7ptpo;False;False;[];;"holy shit Hori's VA did Zero Two. I goddamn *knew* I recognized that voice. -I am a happy man";False;False;;;;1610256018;;False;{};giqierb;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqierb/;1610302101;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cyberscythe;;;[];;;;text;t2_3fqst;False;False;[];;"That reaction shot was so good. It made visual that feeling I get when I hear something that's sounds like a big deal to me at first; it's a shot of anxiety that turbulently dissolves around when I start thinking about the implications. I instantly understood what sort of frame of mind she was in, and I think it's an amazing use of animation as a medium. - -There's a few other instances which use color in the white void (e.g. where Hori and Miya argue after Toru's confession) and it's a motif that's making this series stand out in my mind from a visual perspective.";False;False;;;;1610256116;;False;{};giqijth;False;t3_ktunxs;False;False;t1_gio7s97;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqijth/;1610302192;4;True;False;anime;t5_2qh22;;0;[]; -[];;;RazerHail;;;[];;;;text;t2_5ha1r;False;False;[];;Oh thank the writers. After watching Violet Evergarden and Your Lie In April back to back and the newest Re:zero episode this week, I need a nice rom com.;False;False;;;;1610256328;;False;{};giqiuvw;False;t3_ktunxs;False;True;t1_giqatfb;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqiuvw/;1610302409;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CabbageGuru;;;[];;;;text;t2_3varopg;False;False;[];;Wow, best 1st episode I think I've ever seen that was fantastic;False;False;;;;1610256474;;False;{};giqj2nq;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqj2nq/;1610302593;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AshleytheTaguel;;;[];;;;text;t2_teqty3s;False;False;[];;Miyamura absolute bicon;False;False;;;;1610256478;;False;{};giqj2wv;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqj2wv/;1610302598;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ColumbViv;;;[];;;;text;t2_4denykb1;False;False;[];;you know the real ship is miyamura x ishikawa;False;False;;;;1610256576;;False;{};giqj82l;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqj82l/;1610302689;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Rex_Deorum_X;;;[];;;;text;t2_35x95zxs;False;False;[];;I didn’t watch the anime but absolutely loved the manga. I hope it lives up to how good it was;False;False;;;;1610256937;;False;{};giqjqxy;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqjqxy/;1610303358;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rex_Deorum_X;;;[];;;;text;t2_35x95zxs;False;False;[];;I know I remember when I first read it I felt that this really needed an anime and finally it’s here;False;False;;;;1610256988;;False;{};giqjthu;False;t3_ktunxs;False;True;t1_gio5w5t;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqjthu/;1610303709;1;True;False;anime;t5_2qh22;;0;[]; -[];;;G4llade_;;;[];;;;text;t2_5kys0wx5;False;False;[];;Tbh I like everything but Miyamura’s “Bad Boy” look. I mean I though it was kinda funny seeing nerdy guy transform into fukboy, but something inside me just gets pissed off when I see people like that.;False;False;;;;1610257029;;False;{};giqjvmo;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqjvmo/;1610303779;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;atheistkrishna_47;;;[];;;;text;t2_224rg5cg;False;False;[];;"I am still in high school and we have both daily checks and weekly checks for our uniforms. -(South Asian country)";False;False;;;;1610257244;;False;{};giqk6k2;False;t3_ktunxs;False;True;t1_giod4p4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqk6k2/;1610304009;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mugen_Kreiss;;;[];;;;text;t2_5kjz18rp;False;False;[];;I think in Hori's case she's supposed to be a popular girl who you'd expect to always hang out with friends go to karaoke and just enjoy her life but what she really is a house-wife taking care of Souta.;False;False;;;;1610257254;;False;{};giqk74q;False;t3_ktunxs;False;True;t1_gio7xzy;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqk74q/;1610304020;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Subni1234;;;[];;;;text;t2_5u7cams2;False;False;[];;Oh i felt exactly the same way but i read the manga like 2 or 3 years ago so i dont know if is go faster than the manga;False;False;;;;1610257359;;False;{};giqkcdv;False;t3_ktunxs;False;False;t1_giqhnkx;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqkcdv/;1610304115;1;True;False;anime;t5_2qh22;;0;[]; -[];;;valask2;;;[];;;;text;t2_6k0xfhs1;False;False;[];;why is there a legal restriction against getting a tattoo?;False;False;;;;1610257417;;False;{};giqkfah;False;t3_ktunxs;False;True;t1_gip0qcq;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqkfah/;1610304169;4;True;False;anime;t5_2qh22;;0;[]; -[];;;OrangeAnonymous;;;[];;;;text;t2_605kz;False;False;[];;Yes;False;False;;;;1610257635;;False;{};giqkqe2;False;t3_ktunxs;False;True;t1_giq2dh3;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqkqe2/;1610304343;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CrimsonEclipse18;;;[];;;;text;t2_1rik8z2y;False;False;[];;Favorite moment was Yoshikawa calling out Ishikawa and their teacher by saying ‘God, they’re so dumb’ when everyone knows she’s not just a clown, but the whole circus.;False;False;;;;1610257655;;False;{};giqkrgd;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqkrgd/;1610304374;1;True;False;anime;t5_2qh22;;0;[]; -[];;;corruptbytes;;;[];;;;text;t2_11i5mn;False;False;[];;this episode felt like it was going 100mph;False;False;;;;1610257768;;False;{};giqkx45;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqkx45/;1610304474;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheGlassesGuy;;;[];;;;text;t2_xx7yj;False;False;[];;i think the first half is mostly rom and then once thee 'main story' ended it went into more com-focused;False;False;;;;1610257932;;False;{};giql5es;False;t3_ktunxs;False;True;t1_giox2x4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giql5es/;1610304605;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Phinaeus;;;[];;;;text;t2_3jbc6;False;True;[];;This is reverse Oregairu;False;False;;;;1610258335;;False;{};giqlpb5;False;t3_ktunxs;False;True;t1_gip1s7c;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqlpb5/;1610304957;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"If I ask you how many ears you have, would you say you *think* you have two? - -When you accuse someone of saying something cringey, you're accusing them of saying something that *they* should be embarrassed of saying, not something that *you're* embarrassed to hear. And, again, he said the same thing she did just without leaving things between the lines. - -And if *you* drop your phone and it loudly clanks against the floor, would you really not notice it? They should've made it something that would fall more silently, like a loose hairclip or whatever.";False;False;;;;1610258443;;False;{};giqlup1;False;t3_ktunxs;False;True;t1_giqga9o;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqlup1/;1610305059;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;sidz250;;;[];;;;text;t2_4xov6zdo;False;False;[];;first ep was really good imo. pacing could have been a bit slower if u ask me. kinda feel like they wanna try and fit all character development into1 or 2 ep and then make it a fluff kinda anime, not saying thats bad but ye;False;False;;;;1610258636;;False;{};giqm46t;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqm46t/;1610305232;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bigkitten8;;;[];;;;text;t2_3w40rc0i;False;False;[];;"My biggest problem with the show is the opening. I love it and it would work if the anime wasnt horimiya. Its too sullen. DONT GET ME WRONG the visuals are absolutely amazing and the song is a new favorite. I just wish it was up beat and super cute. (Or silly) - -I dunno. It was only the first episode. And horimiya (the manga) is almost at the end of the serialization. I hope they expand better on the story.";False;False;;;;1610258659;;False;{};giqm5bf;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqm5bf/;1610305251;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mudda-hello;;;[];;;;text;t2_wp4l6;False;False;[];;"Either they're gonna blow through a lot of these chapters, or they're gonna do a lot of re-arranging based from the opening and the cast announced beforehand. - -[Spoiler](/s ""Yanagi"") is in the opening, and he doesn't get introduced until the mid-40s, and [Spoiler](/s ""Motoko"") got casted and she doesn't show up way later on in like the 70s.";False;False;;;;1610258984;;1610259243.0;{};giqml27;False;t3_ktunxs;False;True;t1_giqdi6l;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqml27/;1610305533;2;True;False;anime;t5_2qh22;;0;[]; -[];;;princesslanaya;;;[];;;;text;t2_qcsje;False;False;[];;Haruka Tomatsu as Hori’s VA is just perfection. Btw love the first episode. Everything looks amazing. My only complaint would be the pacing. It was too fast :/;False;False;;;;1610259055;;False;{};giqmoh6;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqmoh6/;1610305596;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fall-Lumpy;;;[];;;;text;t2_9fnluk6k;False;False;[];;"Nice to see that its so normal and ingrained for younger girls in japan to be sexualized by older men that it just nonchalantly chucked in a teacher talking about wanting to go to the beach with his students because he wanted to be around the girls, and then the writer did a weird fantasy of the girls talking about how hot he is. - -And then of course he sexually harasses them as he walks past. Very cool and normal.";False;False;;;;1610259202;;False;{};giqmvp3;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqmvp3/;1610305732;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610259332;;1610259752.0;{};giqn1vc;False;t3_ktunxs;False;True;t1_gio53qi;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqn1vc/;1610305857;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mudda-hello;;;[];;;;text;t2_wp4l6;False;False;[];;"To add to your last point, I feel either the pacing is going to be very wack or a lot of re-arranging is gonna happen based from a [character](/s ""Yanagi"") being shown in the opening, and that [character](/s ""Motoko"") was casted.";False;False;;;;1610259426;;False;{};giqn6h6;False;t3_ktunxs;False;True;t1_gipx8wz;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqn6h6/;1610305948;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dragonite_Master;;;[];;;;text;t2_g6imb;False;False;[];;dang im gonna be crying in 13 weeks arent i;False;False;;;;1610259434;;False;{};giqn6wk;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqn6wk/;1610305956;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mike_2797;;;[];;;;text;t2_8qbcq38;False;False;[];;I guess we need a bakka count.;False;False;;;;1610259707;;False;{};giqnjna;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqnjna/;1610306184;3;True;False;anime;t5_2qh22;;0;[]; -[];;;thenewwwguy2;;;[];;;;text;t2_49p26v8j;False;False;[];;i think the song itself fits but the visuals don’t?;False;False;;;;1610259721;;False;{};giqnkah;False;t3_ktszq1;False;True;t1_ginwqm3;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/giqnkah/;1610306197;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shradow;;;[];;;;text;t2_cxkru;False;False;[];;"Didn't expect to immediately hear Kenjiro Tsuda as Yasuda. Daiki Yamashita is perfect for Iura, too. - -I forgot how quickly Miyamura and Toru became bros. Also, winter uniforms need to come quick, Yoshikawa isn't complete without her long sleeves.";False;False;;;;1610259858;;False;{};giqnqnv;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqnqnv/;1610306313;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kyzen142;;;[];;;;text;t2_16gzt2ir;False;False;[];;Just read the manga by far the first ep is probably going to be the best .;False;False;;;;1610260237;;False;{};giqo8l3;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqo8l3/;1610306640;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AmethystItalian;;MAL;[];;http://myanimelist.net/profile/AmethystItalian;dark;text;t2_ddzd5;False;False;[];;That's a lot...;False;False;;;;1610260312;;False;{};giqoc4j;False;t3_ktunxs;False;False;t1_giqfogx;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqoc4j/;1610306703;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SingularCheese;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/lonelyCheese;light;text;t2_rgv21;False;False;[];;Anime has been taming down the rainbow hair in recent years, but this show is really going all in on it.;False;False;;;;1610260548;;False;{};giqon4u;False;t3_ktunxs;False;False;t1_giolrer;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqon4u/;1610306916;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Hexcellion;;MAL;[];;http://myanimelist.net/animelist/Hexcellion;dark;text;t2_h1m4a;False;False;[];;"I've waited so long for a proper adaptation of Horimiya, and it sure delivered. - -This season might be the most that I follow anime with all these sequels and anime that I was familiar with during my manga reading days. - -5/5 episode and Hori/Mayumura best girl";False;False;;;;1610260558;;False;{};giqonla;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqonla/;1610306923;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;I mean the US does as well. You can't get one under a certain age without parental approving it plus you can't get it at such a young age as it could be dangerous. I think the whole idea behind doing this is so kids don't stupidly do something that could be permanent on a whim.;False;False;;;;1610260579;;False;{};giqoolw;False;t3_ktunxs;False;False;t1_giqkfah;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqoolw/;1610306941;12;True;False;anime;t5_2qh22;;0;[]; -[];;;xMxgxZx;;MAL;[];;http://myanimelist.net/animelist/-MgZ_;dark;text;t2_aiqyz;False;False;[];;Damn all these people commenting how Horimiya finally got an adaptation. Makes me realize how old I am...;False;False;;;;1610260651;;False;{};giqoryr;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqoryr/;1610307003;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;Turns out old guy used to be Yakuza and he was remembering his past fondly;False;False;;;;1610260786;;False;{};giqoy4a;False;t3_ktunxs;False;True;t1_giol30y;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqoy4a/;1610307146;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WhipsandPetals;;;[];;;;text;t2_4ivofw5e;False;False;[];;No! Power will be!;False;False;;;;1610261093;;False;{};giqpc7w;False;t3_ktunxs;False;True;t1_gio9i48;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqpc7w/;1610307406;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;I think Hori's secret makes sense like Assassination Classroom and other anime have shown me they don't like having students work or do things like this. They should focus on school and be kids. Her having to work seems to be because she doesn't have a dad, and her mom has to work extra hard for her family. Nothing wrong with a kid helping their parents over here, but the stigma is larger there.;False;False;;;;1610261134;;False;{};giqpe30;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqpe30/;1610307439;2;True;False;anime;t5_2qh22;;0;[]; -[];;;River_sounds;;;[];;;;text;t2_y4vd1;False;False;[];;"I found out about Yoh Kamiyama through the Drifting Dragons OP. It's called 'Gunjou' which he also made a [music video](https://www.youtube.com/watch?v=6LZSjZL7c-U&ab_channel=YohKamiyama) of it. Then i saw that other people knew him from another popular music video he made called ['Yellow'](https://www.youtube.com/watch?v=1_lap6dzSUc&ab_channel=YohKamiyama). Pretty cool.";False;False;;;;1610261161;;False;{};giqpfaq;False;t3_ktszq1;False;True;t3_ktszq1;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/giqpfaq/;1610307463;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rybackmonster;;;[];;;;text;t2_166ov7;False;False;[];;I'm gonna love this couple and this anime.;False;False;;;;1610261410;;False;{};giqpqgf;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqpqgf/;1610307677;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ry-O-Ken;;;[];;;;text;t2_2lrnusrf;False;False;[];;I think he meant the character acting animation, not the voice acting;False;False;;;;1610261636;;False;{};giqq0it;False;t3_ktunxs;False;True;t1_gip686u;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqq0it/;1610307867;2;True;False;anime;t5_2qh22;;0;[]; -[];;;puppyteef;;;[];;;;text;t2_4sq9zrff;False;False;[];;i really loved it! didn’t read the manga but i probably will after the anime’s done with;False;False;;;;1610261678;;False;{};giqq2dn;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqq2dn/;1610307904;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610261729;;False;{};giqq4o1;False;t3_ktunxs;False;True;t1_gioha2z;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqq4o1/;1610307947;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Daksh23;;;[];;;;text;t2_2ytnuyk4;False;False;[];;"Not saying it wasn't unbearable to look at but the manga is relatively old and that too was adapted from the web comic which is even older so such ""jokes"" were not criticised earlier and they stuck in the subsequent adaptations of the story. Also, the orginal creator, for all his semi-realistic relationship scenarios, does use a few pretty obnoxious scenarios for ""comedy"". I do hope some of those will be less prevalent in the anime though.";False;False;;;;1610261777;;False;{};giqq6ro;False;t3_ktunxs;False;True;t1_giqmvp3;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqq6ro/;1610307988;4;True;False;anime;t5_2qh22;;0;[];True -[];;;DFisBUSY;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ZENSX;light;text;t2_dwjvh;False;False;[];;"Horimiya is my favorite RomCom/SoL manga of all time so it's amazing to finally see it come to fruition. - ---- - -I'm digging the OP, it has a very nice casual SoL vibe to it. I wonder if they'll use the same intro for the entire cour. That ending is cozy as fuck, literally. - -All the VAs are sooo good. Pervy Sensei was spot on. I was expecting a slight more deeper voice for Tooru. Yuki's voice had that proper ratio of fluff:expressive. Souta has a very cute & innocent VA. Kyouko sounded just like how I thought she would; if it was too girly of a voice it wouldn't have matched her. Miyamura's VA did a good job here too; he has a great vocal range. - -Good usage of sounds though I'd prefer a little more ambient noise as it gets a little too quiet at times. The artwork is pretty good, though a bit ""rough around the edges""; totally gives off that Horimiya coziness though. - -My brain still can't register that Kyouko isn't a blondie/platinum, but rather a brunette and I also seem to have forgotten all about being gay for Miyamura, jesus. - ---- - -I was scrolling through the manga on another screen and it pretty much mirrored it completely. I didn't really notice how ""fast"" the beginning events went at the time, interesting.";False;False;;;;1610262199;;1610262381.0;{};giqqouw;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqqouw/;1610308328;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GreNinja_16;;;[];;;;text;t2_24bith79;False;False;[];;The OVAs are the adaptation of the original webcomic (manga is an adaptation of the webcomic too) which its plot is slightly different compared to the anime airing right now.;False;False;;;;1610262941;;False;{};giqrk11;False;t3_ktunxs;False;True;t1_giqbzw1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqrk11/;1610308954;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BeneathTheDirt;;;[];;;;text;t2_13hi1t;False;False;[];;It’s like this in the manga too;False;False;;;;1610263066;;False;{};giqrp9i;False;t3_ktunxs;False;True;t1_giqe8yn;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqrp9i/;1610309052;1;True;False;anime;t5_2qh22;;0;[]; -[];;;q1zb;;;[];;;;text;t2_6po7w98v;False;False;[];;What does gal mean?;False;False;;;;1610263393;;False;{};giqs2p0;False;t3_ktunxs;False;True;t1_gio9do1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqs2p0/;1610309364;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DoktorLuciferWong;;;[];;;;text;t2_3u73q;False;False;[];;I've never understood the motivation for this. Wouldn't a gangster be the exact type of person you wouldn't want to refuse?;False;False;;;;1610263936;;False;{};giqsp95;False;t3_ktunxs;False;True;t1_giohimf;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqsp95/;1610309830;0;True;False;anime;t5_2qh22;;0;[]; -[];;;takemeback2n0v;;;[];;;;text;t2_87eqv2dn;False;False;[];;miyamura is so fuckn cute tho :');False;False;;;;1610264149;;False;{};giqsxp4;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqsxp4/;1610310013;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;Maybe because it scares the other guests so they'll lose customers. Don't know what the policy is for having an actual yakuza customer though.;False;False;;;;1610264682;;False;{};giqtisl;False;t3_ktunxs;False;True;t1_giqsp95;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqtisl/;1610310448;0;True;False;anime;t5_2qh22;;0;[]; -[];;;KujoJoseph;;;[];;;;text;t2_2m0d6qts;False;False;[];;The teacher scene is weird and sets the wrong expectations, I'm not sure why it was added. I double-checked and in the manga it starts right before Hori drops her phone. It's been years so I can't remember if the teacher is a regular character, but the manga for sure doesn't start with his creepo shit. Nor is he even in the first chapter.;False;False;;;;1610264694;;False;{};giqtj8f;False;t3_ktunxs;False;True;t1_gipugmr;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqtj8f/;1610310459;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Krazee9;;;[];;;;text;t2_e3pld;False;False;[];;The ED reminded me a lot of The Sims, but cartoonier.;False;False;;;;1610264828;;False;{};giqtoj0;False;t3_ktunxs;False;True;t1_gio86s1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqtoj0/;1610310565;1;True;False;anime;t5_2qh22;;0;[]; -[];;;deFryism;;;[];;;;text;t2_g9ghx1w;False;False;[];;So funny it's almost criminal;False;False;;;;1610265160;;False;{};giqu1iw;False;t3_ktunxs;False;False;t1_gioxd53;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqu1iw/;1610310825;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ShaanOSRS;;MAL;[];;http://myanimelist.net/animelist/S_H_A_A_N;dark;text;t2_kiyij;False;False;[];;I really liked this episode and am sooooo glad this finally got a proper adaptation, but did anyone else feel the episode was rushed somewhat?;False;False;;;;1610265287;;False;{};giqu6f9;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqu6f9/;1610310926;2;True;False;anime;t5_2qh22;;0;[]; -[];;;deFryism;;;[];;;;text;t2_g9ghx1w;False;False;[];;"my only issue with the op is the logo (the current one probably fits the show more than the manga logo, so no gripes with the design itself). - -did it not have any animation or something? it just popped in, unceremoniously, unless my video lagged. I was expecting it to animate the logo as if it were being written in, but instead it just appeared.";False;False;;;;1610265387;;False;{};giquaa6;False;t3_ktunxs;False;False;t1_giobypo;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giquaa6/;1610311018;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SYZekrom;;;[];;;;text;t2_i5y6z;False;False;[];;Ah, makes sense, thanks!;False;False;;;;1610265590;;False;{};giqui5v;False;t3_ktunxs;False;True;t1_giqctz4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqui5v/;1610311166;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FountainsOfFluids;;;[];;;;text;t2_6sp2c;False;False;[];;The relationship plot moved so much faster than I'm used to! I have no idea what they're going to fill episodes with.;False;False;;;;1610265606;;False;{};giquiqw;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giquiqw/;1610311177;1;True;False;anime;t5_2qh22;;0;[]; -[];;;justabandit026;;;[];;;;text;t2_4q04qypm;False;False;[];;Not tryna phrase this wrong, but why is this adaptation getting so much attention?;False;False;;;;1610266068;;False;{};giqv0hd;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqv0hd/;1610311541;2;True;False;anime;t5_2qh22;;0;[]; -[];;;M_Bey;;;[];;;;text;t2_4hbwu1kt;False;False;[];;Yes, with a small nice but great rom moments.;False;False;;;;1610266266;;False;{};giqv83m;False;t3_ktunxs;False;True;t1_giql5es;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqv83m/;1610311678;2;True;False;anime;t5_2qh22;;0;[]; -[];;;skyfrost42;;;[];;;;text;t2_5gsu6cyt;False;False;[];;Cause this anime is fucking good;False;False;;;;1610266748;;False;{};giqvpzk;False;t3_ktunxs;False;True;t1_giqv0hd;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqvpzk/;1610312027;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexNae;;;[];;;;text;t2_13yqvf;False;False;[];;wow this is blowing up;False;False;;;;1610267380;;False;{};giqwdtn;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqwdtn/;1610312508;5;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;Very popular manga and based on episode 1 it's gonna be a good adaption.;False;False;;;;1610267414;;False;{};giqwf3t;False;t3_ktunxs;False;False;t1_giqv0hd;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqwf3t/;1610312530;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;The manga is arguably one of the better romance manga out right now and people have been wanting an adaptation for years.;False;False;;;;1610267423;;False;{};giqwfg1;False;t3_ktunxs;False;False;t1_giqv0hd;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqwfg1/;1610312538;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;best bromance;False;False;;;;1610267588;;False;{};giqwlky;False;t3_ktunxs;False;True;t1_giqj82l;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqwlky/;1610312670;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;She also did Asuna and its kind of amazing how different she sounds lol. She has a great vocal range;False;False;;;;1610267642;;False;{};giqwnin;False;t3_ktunxs;False;True;t1_giqierb;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqwnin/;1610312713;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;"Getting close to 7k now. - -edit: Aaand it's now over 7k. Still going at an impressive rate. I'd kill to see the karma progression chart for this one. - -Might even break 8k. All depends on how well it does until the big episodes later today drop. - -edit 2: Over 8k. Let's see what it'll have in the end.";False;False;;;;1610268043;;1610311725.0;{};giqx2fa;False;t3_ktunxs;False;True;t1_giq72lo;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqx2fa/;1610313005;2;True;False;anime;t5_2qh22;;0;[]; -[];;;erryky;;MAL;[];;https://myanimelist.net/profile/;dark;text;t2_rviqf;False;False;[];;"O;9? man I didnt even watch that show but that OP really brimmed with subtle hints if I get into it someday.";False;False;;;;1610268376;;False;{};giqxehu;False;t3_ktszq1;False;True;t1_giohzzn;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/giqxehu/;1610313254;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sarellion;;;[];;;;text;t2_100ib9;False;False;[];;"Apparently japan outlawed tattoos in the Meiji period to present a more respectable image to the west, but tattoing continued underground. It was legalized in 1948 when Japan was occupied, but it kept its image of criminality (like being associated with the yakuza). That image lingers on till today. - -You can get in hot waters, in other countries, in case you tattoo a minor without parental consent or it's forbidden until a certain age, but it's lower than 20. - -Not an expert onthe topic though.";False;False;;;;1610268651;;False;{};giqxot0;False;t3_ktunxs;False;True;t1_giqkfah;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqxot0/;1610313468;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610268854;;False;{};giqxw9d;False;t3_ktunxs;False;True;t1_gio9omu;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqxw9d/;1610313616;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Fall-Lumpy;;;[];;;;text;t2_9fnluk6k;False;False;[];;"I mean, its not like this sort of casual sexual harassment of (not only)younger girls isnt just portrayed casually like this as if there is nothing wrong with it in a lot of anime series. - -If you actually want to argue japan doesnt have massive cultural problems with this stuff your going to have a hard time. It manifests it self in anime and manga predominantly but its not a ""anime and manga"" problem its a japan problem. - -And because its so normalized in anime and manga though, it spreads to the anime and manga community.";False;False;;;;1610268952;;1610269327.0;{};giqxzul;False;t3_ktunxs;False;True;t1_giqq6ro;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqxzul/;1610313680;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;YanderesHaveMyHeart;;;[];;;;text;t2_55s5ncp7;False;False;[];;The thing is oregairu took what was bad about romance anime and executed it perfectly;False;False;;;;1610268956;;False;{};giqxzzc;False;t3_ktunxs;False;False;t1_giqlpb5;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqxzzc/;1610313683;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Daksh23;;;[];;;;text;t2_2ytnuyk4;False;False;[];;I don't have enough knowledge about the culture in Japan or anime/manga that portray such things this way to have a definitive argument for either side. This is my first time seeing this kind of casual harrassment in anime, maybe because I haven't seen many rom-coms where the possibility of these portrayals is present. So, this might just have been ignorance on my part that I assumed that this was due the orginal story being pretty old.;False;False;;;;1610269555;;False;{};giqylim;False;t3_ktunxs;False;True;t1_giqxzul;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqylim/;1610314098;0;True;False;anime;t5_2qh22;;0;[];True -[];;;Kronman590;;;[];;;;text;t2_7yancm;False;False;[];;"Damn so in the first episode we got: - -\- Intro of main gal and main boy - -\- MCs reveals quirks to one another, developing chemistry - -\- MCs have bonding moment at gal's home - -\- Boy deals with insecurities over gal - -\- Love triangle developed with competing boy - -\- Love triangle squashed - -\- Insecurities addressed - -\- Soft confession - -Am I watching a shojou anime?? This is like a season's worth of material right here. I'm not complaining at all though, all the sidestepping is always super unrealistic and dramatic for no reason, so this is a great breath of fresh air. Not to mention the animation is just gorgeous, good job Cloverworks.";False;False;;;;1610269695;;False;{};giqyqgu;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqyqgu/;1610314203;14;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;Thanks, that actually makes me more interested;False;False;;;;1610269723;;False;{};giqyrg7;False;t3_ktunxs;False;True;t1_gipv7k8;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqyrg7/;1610314223;1;True;False;anime;t5_2qh22;;0;[]; -[];;;eroc1990;;MAL;[];;http://myanimelist.net/profile/eroc1990;dark;text;t2_7k16p;False;False;[];;True. They literally call that kind of thing out within the first couple minutes of the show.;False;False;;;;1610270062;;False;{};giqz3b8;False;t3_ktunxs;False;True;t1_giq0d1v;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqz3b8/;1610314456;3;True;False;anime;t5_2qh22;;0;[]; -[];;;theironguard30;;;[];;;;text;t2_2z22ysp7;False;False;[];;Thought they record the ending using animal crossings;False;False;;;;1610270165;;False;{};giqz710;False;t3_ktunxs;False;True;t1_gioalv9;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqz710/;1610314530;1;True;False;anime;t5_2qh22;;0;[]; -[];;;theironguard30;;;[];;;;text;t2_2z22ysp7;False;False;[];;Volare via;False;False;;;;1610270189;;False;{};giqz7vl;False;t3_ktunxs;False;True;t1_gipf27y;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqz7vl/;1610314547;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Flint124;;;[];;;;text;t2_gh3bd;False;False;[];;She gets even better.;False;False;;;;1610270247;;False;{};giqz9w6;False;t3_ktunxs;False;True;t1_gio8onh;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqz9w6/;1610314585;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610270917;;False;{};giqzxt6;False;t3_ktunxs;False;True;t1_gioo1m0;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giqzxt6/;1610315048;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;"I can't seem to find any evidence of this now, but weren't [these called ""suicide chains"" back in the day?](https://i.imgur.com/pGEsljI.jpeg) Unusual for Japan to say the least - -[Secret kakkoii guy!](https://i.imgur.com/tm6d9pQ.jpg) - -[Well then what use are ya? 0/10 character](https://i.imgur.com/5oOzarq.jpeg) - -[Basically already married ❤](https://i.imgur.com/LDPnzdc.jpg) - -[…got your heart crushed? Yep, coulda guessed](https://i.imgur.com/pzpRn2P.jpeg) - -This seems very sweet, looking forward to more";False;False;;;;1610271116;;False;{};gir054b;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir054b/;1610315187;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Spiritual_Drummer_35;;;[];;;;text;t2_7a96dhqq;False;False;[];;Short for “Gyaru” it’s like the Japanese equivalent to the typical popular bitchy high school girl;False;False;;;;1610271204;;False;{};gir08b8;False;t3_ktunxs;False;True;t1_giqs2p0;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir08b8/;1610315247;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610271232;;False;{};gir09cs;False;t3_ktunxs;False;True;t1_giobzdd;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir09cs/;1610315266;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarfaceTonyMontana;;;[];;;;text;t2_16b7bo;False;False;[];;Horimiya is based around the concept of covering romance and highschool friendships more realistically. They aren't the usual anime couple you see go through the 5 million steps of romance you know.;False;False;;;;1610271287;;False;{};gir0ba6;False;t3_ktunxs;False;True;t1_gio9do1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir0ba6/;1610315302;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SMTG_18;;;[];;;;text;t2_2vqobb6u;False;False;[];;yes, and sadly he is on his period too (manga readers will get it xD);False;False;;;;1610271375;;False;{};gir0edb;False;t3_ktunxs;False;True;t1_giobzdd;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir0edb/;1610315370;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Espada_6;;;[];;;;text;t2_sb5ghaa;False;False;[];;I haven’t read the manga but it seems to me that her secret is more than just chores and being a sister. I think it’s that she doesn’t have time for anything outside of school and home because she’s doing everything around the house because her parents are never home and she’s afraid of being judged for that for some reason;False;False;;;;1610271416;;False;{};gir0frn;False;t3_ktunxs;False;False;t1_gio7ris;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir0frn/;1610315396;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610271433;;False;{};gir0gdb;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir0gdb/;1610315407;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;ScarfaceTonyMontana;;;[];;;;text;t2_16b7bo;False;False;[];;Sadly yeah.;False;False;;;;1610271525;;False;{};gir0jkj;False;t3_ktunxs;False;True;t1_giqe1d9;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir0jkj/;1610315465;1;True;False;anime;t5_2qh22;;0;[]; -[];;;oppar;;;[];;;;text;t2_69bll;False;False;[];;It's supposed to be funny but if this were real life it would be SUPER creepy of the teacher;False;False;;;;1610271600;;False;{};gir0m88;False;t3_ktunxs;False;False;t1_gio65pn;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir0m88/;1610315516;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Indeed. IRL it'd be creepy but since it's an anime it doesn't bother me much.;False;False;;;;1610271731;;False;{};gir0qzw;False;t3_ktunxs;False;True;t1_gir0m88;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir0qzw/;1610315603;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkAudit;;MAL;[];;https://myanimelist.net/animelist/DarkAudit;dark;text;t2_f48t6;False;False;[];;"Lest we forget everyone's favorite poisoner, [Miyakoshi Hana](https://wagnaria-www.com/sp/assets/img/story/02/img1.jpg)! - -(ETA: Hold on. BOTH leads were in WWW.Working!! Bonus!)";False;False;;;;1610271761;;1610272039.0;{};gir0s0w;False;t3_ktunxs;False;True;t1_giqwnin;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir0s0w/;1610315624;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sol_reddit;;;[];;;;text;t2_12grgt;False;False;[];;Yea it’s not healthy... it’s just so damn good.;False;False;;;;1610271954;;False;{};gir0ys8;False;t3_ktunxs;False;True;t1_giqoc4j;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir0ys8/;1610315748;2;True;False;anime;t5_2qh22;;0;[]; -[];;;q1zb;;;[];;;;text;t2_6po7w98v;False;False;[];;Ohh thanks;False;False;;;;1610272196;;False;{};gir17dt;False;t3_ktunxs;False;True;t1_gir08b8;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir17dt/;1610315910;2;True;False;anime;t5_2qh22;;0;[]; -[];;;markevans7799;;;[];;;;text;t2_4pxhvc5g;False;False;[];;I'm hooked into this show. I want MORE!;False;False;;;;1610272245;;False;{};gir195y;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir195y/;1610315943;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;That’s not how you tag spoilers...;False;False;;;;1610272649;;False;{};gir1nar;False;t3_ktunxs;False;False;t1_gir0gdb;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir1nar/;1610316226;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ScurBiceps;;;[];;;;text;t2_60152wbv;False;False;[];;The animation team behind it, is giving breath of fresh air with their animation.;False;False;;;;1610272663;;False;{};gir1nsn;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir1nsn/;1610316235;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Al-Pharazon;;;[];;;;text;t2_1s32gw1x;False;False;[];;"It's weird that they omitted an entire chapter of the manga outside of a few scenes, but I guess that they can be added in the next episode. - -Still I loved the adaptation.";False;False;;;;1610274335;;False;{};gir3aen;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir3aen/;1610317393;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610274360;;False;{};gir3b9d;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir3b9d/;1610317409;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Minorquery;;;[];;;;text;t2_213llb5f;False;False;[];;Its been a while since ive read the manga but did everything really happen this fast?;False;False;;;;1610274387;;False;{};gir3c7q;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir3c7q/;1610317427;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KinoHiroshino;;;[];;;;text;t2_6x5tw;False;False;[];;I guess that makes her this generation’s [Akane Tendou](https://youtu.be/DY8qPDrZH40).;False;False;;;;1610274639;;False;{};gir3ky8;False;t3_ktunxs;False;True;t1_gio8onh;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir3ky8/;1610317592;1;True;False;anime;t5_2qh22;;0;[]; -[];;;riiyoreo;;;[];;;;text;t2_15fhm6;False;False;[];;Hmu if you are Miyamura or close enough, that's all;False;False;;;;1610274660;;False;{};gir3lpz;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir3lpz/;1610317610;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610274709;;False;{};gir3nda;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir3nda/;1610317646;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jibseri;;;[];;;;text;t2_147sqy;False;False;[];;Sensei looks like Rin from Free!;False;False;;;;1610274717;;False;{};gir3nmr;False;t3_ktunxs;False;False;t1_gio65pn;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir3nmr/;1610317650;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;Wow looks like this is gonna break Tower of God's record for highest karma score in the premiere of a new show. This season is off the chain;False;False;;;;1610275360;;False;{};gir49vp;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir49vp/;1610318106;6;True;False;anime;t5_2qh22;;0;[]; -[];;;riflemandan;;;[];;;;text;t2_276eatmt;False;False;[];;ishikawa not being brown haired :(;False;False;;;;1610275383;;False;{};gir4ap0;False;t3_ktunxs;False;True;t1_giobryv;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir4ap0/;1610318121;2;True;False;anime;t5_2qh22;;0;[]; -[];;;__Raxy__;;;[];;;;text;t2_2ei6tsb7;False;False;[];;Finally;False;False;;;;1610276255;;False;{};gir55n3;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir55n3/;1610318699;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RikodouDragonZ;;;[];;;;text;t2_3p0z9apz;False;False;[];;....... you're just trying to find something wrong with this ep.;False;False;;;;1610276325;;False;{};gir587b;False;t3_ktunxs;False;True;t1_giqlup1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir587b/;1610318744;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;"Been a long time since I read the manga but from what I remember, I enjoyed it so much that hori and miya shot up into one of my fav ships. -The animation is good and the visuals are absolutely gorgeus, i’m so happy the studio keep the manga artstyle. And seeing all the characters again put a smile on my face. Looking forward for next ep!";False;False;;;;1610276583;;False;{};gir5hhs;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir5hhs/;1610318915;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;I had to pause sometimes to stop myself from over grinning and take some insulin;False;False;;;;1610276753;;False;{};gir5nl4;False;t3_ktunxs;False;True;t1_giox9to;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir5nl4/;1610319029;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;"JJK won't be in the next chart, no? Episode comes out on friday so it should be 2 weeks until it's back on the rankings. Question is where Dr. Stone will land. - -Mushoku Tensei might also be a wild card although that will have a tough time with the AoT thread coming up only 2-3 hours later.";False;False;;;;1610276761;;False;{};gir5nu2;False;t3_ktunxs;False;True;t1_gip9qa5;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir5nu2/;1610319033;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZapsZzz;;;[];;;;text;t2_g2hnymx;False;False;[];;"The way I read this is that in Japan most feel the need to conform. Girls form groups, hang out together, and do things together. The fact that Hori can't because of family circumstances is in a way getting her ostracized - if she makes it clear what things are like for her, she'll likely be not be in a group anymore and people will give her looks of pity, which for teenager there it's like being exiled. - -For similar show references, bunny girl senpai showed you 2 versions in the first 2 arcs - with Mai, who no one dared approach because she came in late and groups were already formed and she is super famous; and Tomoe who has to keep up appearances for her group. - -So while it sounds trivial for us here, for those in that society and circumstances, it's not all that trivial.";False;False;;;;1610276951;;False;{};gir5uji;False;t3_ktunxs;False;True;t1_gio8gjt;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir5uji/;1610319163;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;A bit too fast for my taste but I think they will probably slow down a bit next episode;False;False;;;;1610276969;;False;{};gir5v7e;False;t3_ktunxs;False;True;t1_giqyqgu;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir5v7e/;1610319175;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;"God of Highschool already did that. - -Horimiya is already past episode 1 of ToG but the new record is at 8851. That seems too much to reach at this point.";False;False;;;;1610277023;;1610277309.0;{};gir5x4g;False;t3_ktunxs;False;False;t1_gir49vp;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir5x4g/;1610319209;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;Impressive. I'd put the karma count for this show anywhere between 2 and 8k for the first episode because I had no idea how it would do. It would seem it's done very well.;False;False;;;;1610277314;;False;{};gir67jj;False;t3_ktunxs;False;True;t1_gir49vp;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir67jj/;1610319398;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HTC864;;;[];;;;text;t2_10yrg3;False;True;[];;I'm going to love this show. Smiling the whole time.;False;False;;;;1610277428;;False;{};gir6bqj;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir6bqj/;1610319474;4;True;False;anime;t5_2qh22;;0;[]; -[];;;XtremeLotus02;;;[];;;;text;t2_6nt4ymsj;False;False;[];;Just watched it. Definitely an interesting series! Loving it so far! That 1st episode almost made me read the manga but since the anime is so well done, Ill just watch it weekly.;False;False;;;;1610277502;;False;{};gir6edg;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir6edg/;1610319524;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheSwoleNerd0;;;[];;;;text;t2_2ncoivgo;False;False;[];;As someone who lived through a facade throughout HS, though not to the same extent as Miyamura, this will definitely be an interesting watch. I love how much was introduced to the first episode, but it felt like it escalated too quickly. How does helping a classmate’s brother turn to be him visiting their house daily and even having dinner at their place? Despite that, I love the personalities of both Hori with her dual emotions as seen towards the end and Miyamura’s empty-headedness but awfully caring and considerate for everyone around him. While I might lean towards Jaku-kyara Tomozaki-kun since I relate to the MC a bit too much in terms of changing self for better, I feel like this anime, if it keeps going at its current pace, will be a definitely second place for me this season;False;False;;;;1610278210;;False;{};gir73sw;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir73sw/;1610320011;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;Oh yes I forgot about that show since it tanked so hard after lol. Yeah 8851 will probably be out of reach now, especially with SnK around the corner.;False;False;;;;1610278254;;False;{};gir75cu;False;t3_ktunxs;False;False;t1_gir5x4g;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir75cu/;1610320041;5;True;False;anime;t5_2qh22;;0;[]; -[];;;somotodsyo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/somotodsyo ;light;text;t2_w1q11;False;False;[];;Kinda. It feels a bit different in manga format, but it jumps from scene to scene just as much.;False;False;;;;1610279145;;False;{};gir80po;False;t3_ktunxs;False;True;t1_gir3c7q;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir80po/;1610320620;1;True;False;anime;t5_2qh22;;0;[]; -[];;;secretghosts;;;[];;;;text;t2_ky9bmah;False;False;[];;its gonna be a good year;False;False;;;;1610279221;;False;{};gir83cm;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir83cm/;1610320672;5;True;False;anime;t5_2qh22;;0;[]; -[];;;emilia-sama;;;[];;;;text;t2_12ir39;False;False;[];;Hah.. To finally hear Hori's voice after reading Horimiya for almost a decade, I am so glad I make it past 2020.;False;False;;;;1610279449;;False;{};gir8bj0;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir8bj0/;1610320858;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610279492;;False;{};gir8d36;False;t3_ktunxs;False;True;t1_gioa1j4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir8d36/;1610320888;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Big_Zubka;;;[];;;;text;t2_2888b2um;False;False;[];;Man I remember reading the manga a few years back when it started, got busy and stopped. When I saw the announcement was really pumped up remembering it, and I have to say, they really delivered. Really enjoyable imo.;False;False;;;;1610279639;;False;{};gir8ibi;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir8ibi/;1610320981;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jakihaachan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/jakihaachan;light;text;t2_7yxdermv;False;False;[];;I had a good laugh, might now read the manga bc i can’t wait to see what will happen;False;False;;;;1610280080;;False;{};gir8ygr;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir8ygr/;1610321273;2;True;False;anime;t5_2qh22;;0;[]; -[];;;whowilleverknow;;MAL;[];;https://myanimelist.net/animelist/BignGay;dark;text;t2_o6bib;False;False;[];;I liked this episode, but boy howdy are the overhypers trying their best to make me not.;False;True;;comment score below threshold;;1610280674;;False;{};gir9jt7;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gir9jt7/;1610321661;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;Why tf do you feel the need to compare? It wasn't even a good episode, it felt like like it was speedrunning cause every scene was 2 minutes.;False;False;;;;1610281158;;False;{};gira1ex;False;t3_ktunxs;False;True;t1_gioe2hh;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gira1ex/;1610321977;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;bhupeshpr25;;;[];;;;text;t2_78m9sk7m;False;False;[];;Holy shit the Karma;False;False;;;;1610281459;;False;{};girach2;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girach2/;1610322173;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;">That makes her fun, and a good shoujo MC - -It's published in a shonen magazine though...";False;False;;;;1610281472;;False;{};giracya;False;t3_ktunxs;False;True;t1_giq35a4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giracya/;1610322181;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nory-chan993;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;Nino is gonna triumph in Season 2;light;text;t2_2m5u62cr;False;False;[];;It's been over four years since I first read the manga, but I still remember how much I love this series. Definitely one of the best ongoing romance manga. Having high hopes for this adaptation!;False;False;;;;1610282252;;False;{};girb6dd;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girb6dd/;1610322725;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shibuinuchan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/shibuinu;light;text;t2_loeguz2;False;False;[];;Don’t lie to me, I know the hairstyle of death when I see one.;False;False;;;;1610282414;;1610294784.0;{};girbcoh;False;t3_ktunxs;False;False;t1_gioyvyk;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girbcoh/;1610322859;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Oishi_Takoyaki;;;[];;;;text;t2_ezhaox;False;False;[];;Love souta's voice acting but find a lot of the hair colours feel really out of place- so far that would Ishikawa and souta. I know the different hair colours are canon from the colour manga pages but it still feels off.;False;False;;;;1610282476;;False;{};girbf1r;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girbf1r/;1610322902;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crobat3;;MAL;[];;http://myanimelist.net/animelist/crobat3;dark;text;t2_cs42y;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610282508;moderator;False;{};girbgb1;False;t3_ktunxs;False;True;t1_gir0gdb;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girbgb1/;1610322924;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CallMeHunky;;;[];;;;text;t2_chktry9;False;False;[];;I was smiling throughout the entire episode. Really excited to see where this goes;False;False;;;;1610282917;;False;{};girbw60;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girbw60/;1610323212;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sKyBlazer08;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sKyBlazer08;light;text;t2_17ibsr;False;False;[];;"Shit, that was so good. I really liked it. I'll probably hop on the manga once the season is finished... If I can restrain myself. Cause this is my type of shit. - -Hori and Miyamura are great, I really like them already. It was only the first episode and I feel like a lotta shit has already happened lmao. Well, really looking forward to the next episode.";False;False;;;;1610283659;;False;{};gircq1i;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gircq1i/;1610323763;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BabyGravyy;;;[];;;;text;t2_1xydqv05;False;False;[];;I've only been watching anime for a couple of years now and I've never watched this type of genre but I decided to give it a go because I've been interested in getting into some romance. And I have to say, I really really enjoyed the episode.;False;False;;;;1610283997;;False;{};gird4fk;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gird4fk/;1610324027;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AirShock_;;;[];;;;text;t2_1p8uer0w;False;False;[];;This had some really interesting directing, which isn't surprising considering it's the Shinsekai Yori guy. The main girl seems kind of annoying, and I didn't find any of the comedy very funny, but this definitely has potential.;False;False;;;;1610284777;;False;{};gire1tl;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gire1tl/;1610324632;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;"Him not being sure about his piercings is actually relevant to his character. You’ll learn why he’s *unsure*. - -Hori’s not in love. Not yet. Neither of them are. They both just found someone to share their secrets with. Ofcourse you’d blush if someone says you’re cute. Especially for Hori when she’s in her “home” version. She’s insecure about her home-self. Whereas Miyamura praises it. - -It won’t go off the deep end, rest assured.";False;False;;;;1610284807;;False;{};gire330;False;t3_ktunxs;False;True;t1_giqahvc;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gire330/;1610324653;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zukrad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_e8i4a;False;False;[];;"According to the info they gave about the series, the will definitely slow down from now - -Episode 1 was the entire first volume, but every other volume will take 2 to 3 episodes";False;False;;;;1610285167;;False;{};gireisc;False;t3_ktunxs;False;False;t1_gio9do1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gireisc/;1610324941;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Chinbie;;;[];;;;text;t2_12h6erpy;False;False;[];;"Love this 1st episode... Gonna watch this one... - -And by the way as of typing it have a 7.6k karma upvotes. Thats very great for Premiere episode";False;False;;;;1610285690;;False;{};girf635;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girf635/;1610325389;5;True;False;anime;t5_2qh22;;0;[]; -[];;;satowa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/enervatus;light;text;t2_tokdx82;False;False;[];;"happy new year wow i still can't believe i'm watching a horimiya anime adaptation, like it took so many years and is this real...and i like how they're still using flip phones. (that's how old horimiya manga is huh) the pacing feels fast so far but man the early stages of the story were so nostalgic to watch. the animation is also pretty stylistic at times, the op was really artistic while the ed was definitely unique and cute. overall seems to be a memorable watch so far even for source readers. ahh damn still can't believe it's real. and i grinned so many times throughout the episode even though i sort of know what's coming. i love how ishikawa and miyamura aren't drama/hostile towards each other as most people would expect for ""love rivals"". - -also...is that tsudaken voicing yasuda sensei??? very nice. the casting for all the characters are also really good esp tomatsu haruka as hori. - -super shook at the amount of karma this episode received so far too. never imagined it would rival jjk tbh because usually action is more popular than SOL shoujo stuff here. man the next karma chart is going to be TEA.";False;False;;;;1610287263;;False;{};girh7wp;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girh7wp/;1610326776;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SimoneNonvelodico;;;[];;;;text;t2_dahs5;False;False;[];;"> I guess Hori's supposed to be a perfect girl, but she's actually normal? - -Looks to me more like she's an orphan or has some family issues? She doesn't just live alone, she also takes care of her brother. No parents in sight. Even by anime standards it's a bit too much.";False;False;;;;1610288692;;False;{};girj8gv;False;t3_ktunxs;False;True;t1_gio9do1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girj8gv/;1610328043;1;True;False;anime;t5_2qh22;;0;[]; -[];;;satowa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/enervatus;light;text;t2_tokdx82;False;False;[];;"went to reread the manga and realised that the anime changed some stuff a bit, not sure if they'll cover the skipped parts but it was kinda a shame. no wonder the pacing felt a bit too fast, i wish they showed a bit more of the horimiya moments at home. and i was disappointed they didn't include [crying scene](/s ""miyamura panicking and thinking what do i do? i wanna cry too when hori started crying. i just really liked that small bit"")";False;False;;;;1610288944;;False;{};girjlwk;False;t3_ktunxs;False;True;t1_gio53qi;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girjlwk/;1610328271;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Fablihakhan;;;[];;;;text;t2_1stqz3r;False;False;[];;Umm at that moment I don’t think the kiss was done for romantic or passionate reasons. It was done as a clever way to do something (spoiler);False;False;;;;1610289138;;False;{};girjw5l;False;t3_ktty89;False;True;t1_gio9f12;/r/anime/comments/ktty89/is_banana_fish_a_good_watch_and_what_is_it_about/girjw5l/;1610328453;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jonjoy;;;[];;;;text;t2_ob4ey;False;False;[];;"i used to read the manga years ago, and I love it. - -This adaptation feels really promising, love the art style, and the casts they choose to voice the characters. The ed also looks really cute. - -I'm really look forward for this, and since i already forget the details of the story, it's gonna be a whole new experience for me.";False;False;;;;1610289397;;1610292683.0;{};girka2y;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girka2y/;1610328706;2;True;False;anime;t5_2qh22;;0;[]; -[];;;YgJb1691;;;[];;;;text;t2_k8dbo5z;False;False;[];;Wow 7.7k karma? I had no idea the demand for this was that high, after seeing Neverland’s Karma I figured JJK would pretty securely hold 3rd place(after AoT and Re:zero) but now I’m not so sure.;False;False;;;;1610289406;;False;{};girkaj6;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girkaj6/;1610328714;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Educational-Course-7;;;[];;;;text;t2_726zj6zl;False;False;[];;Well expected as Fate's queen of Tsundere's, Rin Tohsaka's Voice Actor!;False;False;;;;1610289644;;False;{};girknnj;False;t3_ktunxs;False;True;t1_gio8821;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girknnj/;1610328948;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610290591;;False;{};girlycu;False;t3_ktunxs;False;True;t1_giobryv;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girlycu/;1610329775;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Redo-Master;;;[];;;;text;t2_7yfxxyjj;False;False;[];;I couldn't control myself from smiling the entire episode. It was amazing and holy shit never expected 7.7k karma in the first premier. Horimiya deserves all the attention and Cloverworks really nailed this episode..!;False;False;;;;1610291263;;False;{};girmzyt;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girmzyt/;1610330472;5;True;False;anime;t5_2qh22;;0;[]; -[];;;YKSVOTRUGOY;;;[];;;;text;t2_7n5cxgqa;False;False;[];;"Long version: https://en.wikipedia.org/wiki/Irezumi - -Short version: Yakuza - -Also most countries have laws against tattooing minors without parental consent.";False;False;;;;1610291415;;1610291831.0;{};girn8vy;False;t3_ktunxs;False;False;t1_giqkfah;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girn8vy/;1610330633;8;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;"> I figured JJK would pretty securely hold 3rd place - -JJK won't be on the next chart.";False;False;;;;1610292279;;False;{};giroogv;False;t3_ktunxs;False;False;t1_girkaj6;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giroogv/;1610331546;4;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;It's the hyper-fashionable girl that's fairly common. Gals are usually mean or standoffish as a trope, so the disconnect between that and her home persona would be of a similar level to me as his quiet school persona and piercings/tattoos.;False;False;;;;1610292304;;False;{};giroq34;False;t3_ktunxs;False;False;t1_giqs2p0;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giroq34/;1610331575;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LeadingPlayer;;;[];;;;text;t2_c0osog1;False;False;[];;Ahhh this is so so cute!! Definitely prefer this over Bottom Tier Character Tomozaki. This is definitely one of my favorites so far so I can’t wait to see more!! :D;False;False;;;;1610292323;;False;{};giror97;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giror97/;1610331597;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Inconspicuous_blitz;;;[];;;;text;t2_4at6y9vm;False;False;[];;I think in Japanese high school ,you get expelled for having tatoos. Japan takes tatoos very seriously. People with tatoos are not allowed to enter onsens and they are looked as evil by elder japanese folks. It is because earlier having tatoos were signs that signified that you are a yakuza or something like that so I find Miya's reason quite big tbh. You don't attend highschool only to get expelled for getting tatoos.;False;False;;;;1610292360;;False;{};girotiu;False;t3_ktunxs;False;True;t1_giob3t1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girotiu/;1610331637;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lhbdawn;;;[];;;;text;t2_5nsijqo7;False;False;[];;"i would like them to slow down. the op and the ed are banger. especially the op. - -teh artstyle and the animation plus the ost are nice";False;False;;;;1610292525;;False;{};girp3li;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girp3li/;1610331811;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YgJb1691;;;[];;;;text;t2_k8dbo5z;False;False;[];;I mean for the entire winter season going forwards, not just this week.;False;False;;;;1610292928;;False;{};girpsnu;False;t3_ktunxs;False;False;t1_giroogv;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girpsnu/;1610332253;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiro_Kai;;;[];;;;text;t2_bevm2wi;False;False;[];;It's really cute. Someone gotta/will do her house at Animal Crossing XD;False;False;;;;1610293164;;False;{};girq7bh;False;t3_ktunxs;False;True;t1_giqha6v;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girq7bh/;1610332551;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nasif10;;MAL;[];;http://myanimelist.net/animelist/Nasif10;dark;text;t2_ovi4b;False;False;[];;from non manga perspective, it seems like A LOT to pact in that one episode with a few drastic emotional turns out of no where, gonna stay to watch as i still enjoyed it.;False;False;;;;1610293207;;False;{};girqa2k;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girqa2k/;1610332606;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KiwiAura;;;[];;;;text;t2_yyc17;False;False;[];;btw why did toru say he is such a nice guy at the end?;False;False;;;;1610293607;;False;{};girqzjw;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girqzjw/;1610333077;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;">is that tsudaken voicing yasuda sensei??? - -Yupp";False;False;;;;1610293964;;False;{};girrm4z;False;t3_ktunxs;False;True;t1_girh7wp;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girrm4z/;1610333511;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IgnoramusPolymath;;;[];;;;text;t2_12a9l5;False;False;[];;"A couple of months ago, I spoke to a Japanese guy on VR Chat about tattoos; they said that they enjoyed looking at Western tattoo designs on Instagram but said that they'd never get one because of the negative impact it would likely have on their life (e.g. work, how he would be perceived by others), and he also talked about tattoos and onsens (bathhouses/hot springs). - -They said that they had been told that yakuza were banned from onsen because, historically, there were quite a lot of incidents where a member of one ""clan"" would go to bathe at an onsen (unarmed, since they'd have to take everything off to go into the water) and end up being attacked and killed by a rival gang who'd likely just run in and stab them or something then run away. - -However, they said that they think that's probably just an urban legend and it's probably more that it's really kinda uncomfortable being around yakuza (for staff and other customers), and that businesses wouldn't want to become known as a hotspot for yakuza (both deters customers and makes owners/staff look bad because they are associating with yakuza). - -When I asked about why they banned tattoos rather than just yakuza, they said that it was kind of a non-hostility thing; you're not explicitly banning yakuza, but, since the vast majority of onsen customers are Japanese and the vast majority of tattooed Japanese belong to the yakuza, it pretty much prevents the yakuza from using your facilities. However, they also said that, even if they put up ""NO YAKUZA"" instead, they doubted it would cause that much of an issue (although it would seem more disrespectful), and that the vast majority of yakuza try not to cause a scene/create trouble in such an obtuse way.";False;False;;;;1610294944;;False;{};girte19;False;t3_ktunxs;False;False;t1_giqsp95;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girte19/;1610334674;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kakatoru;;;[];;;;text;t2_a4s34;False;False;[];;Do they really make high school students run a whole marathon in Japan?;False;False;;;;1610295019;;False;{};girtix5;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girtix5/;1610334756;1;True;False;anime;t5_2qh22;;0;[]; -[];;;InsomniaEmperor;;;[];;;;text;t2_5x68hmc4;False;False;[];;">It's nice to hear Kouki Uchiyama subvert his usual typecast as dead inside male - -I'm getting Charlotte PTSD just reading this.";False;False;;;;1610295533;;False;{};giruhgl;False;t3_ktunxs;False;True;t1_gio98iz;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giruhgl/;1610335368;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Haulbee;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Haulbee;light;text;t2_a5574z8;False;False;[];;"[spoilers](/s ""The whole 'Hori is abusive' echo chamber is what made me stop reading the discussion threads on r/manga. The stuff she does is standard tsundere gag violence, and I really don't understand why people get so hung up on it here compared to other romcoms. I'm personally not a fan of it either, but a bit of slapstick comedy isn't going to ruin the manga for me."")";False;False;;;;1610296993;;False;{};girx8hm;False;t3_ktunxs;False;False;t1_gipx8wz;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girx8hm/;1610337082;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610297397;;False;{};giry0n6;False;t3_ktunxs;False;True;t1_gir75cu;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giry0n6/;1610337570;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610297680;moderator;False;{};giryke5;False;t3_ktunxs;False;True;t1_giqxw9d;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giryke5/;1610337912;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610297690;moderator;False;{};giryl4o;False;t3_ktunxs;False;True;t1_gioz8fw;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giryl4o/;1610337923;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610297718;moderator;False;{};giryn4d;False;t3_ktunxs;False;True;t1_gioz8fw;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giryn4d/;1610337959;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610297821;moderator;False;{};giryude;False;t3_ktunxs;False;True;t1_giqq4o1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giryude/;1610338081;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;I meant in general, in the season review chart.;False;False;;;;1610297850;;False;{};girywgy;False;t3_ktunxs;False;False;t1_gir5nu2;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girywgy/;1610338115;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xehanz;;;[];;;;text;t2_rlxxb;False;False;[];;According to Mob Psyvho, probably yes.;False;False;;;;1610297946;;False;{};girz3e4;False;t3_ktunxs;False;False;t1_girtix5;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girz3e4/;1610338229;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610298172;moderator;False;{};girzjgv;False;t3_ktunxs;False;True;t1_giqzxt6;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girzjgv/;1610338513;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ch4rly727;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Ch4rly727;light;text;t2_v8xjq;False;False;[];;Its been a while since I read the manga, so I dont remember well but isn't that pace kinda really fast?;False;False;;;;1610298237;;False;{};girzo8d;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/girzo8d/;1610338594;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610298956;;False;{};gis13gv;False;t3_ktszq1;False;True;t1_gipgct8;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/gis13gv/;1610339483;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TangledPellicles;;;[];;;;text;t2_15k1ya;False;False;[];;That mag publishes shoujo stories as well, though not as many.;False;False;;;;1610299335;;False;{};gis1x4d;False;t3_ktunxs;False;False;t1_giracya;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gis1x4d/;1610339987;0;True;False;anime;t5_2qh22;;0;[]; -[];;;KamuiSC;;;[];;;;text;t2_grqgz;False;False;[];;Forget the first chapter. This 1 episode encompasses the entire first VOLUME;False;False;;;;1610299480;;False;{};gis285s;False;t3_ktunxs;False;True;t1_gioyjeo;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gis285s/;1610340174;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ahnahnah;;;[];;;;text;t2_nt9b9;False;False;[];;"He really hit her with the ""can't talk rn doin egg time shit""";False;False;;;;1610299839;;False;{};gis2ych;False;t3_ktunxs;False;False;t1_giqhaxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gis2ych/;1610340611;5;True;False;anime;t5_2qh22;;0;[]; -[];;;muazmueh;;;[];;;;text;t2_2tpmdr56;False;False;[];;After soo longg... my all time fav manga got adapted. Im in tearss;False;False;;;;1610300313;;False;{};gis3z5o;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gis3z5o/;1610341247;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cringecox;;;[];;;;text;t2_1ve8zv0e;False;False;[];;This looks really really good;False;False;;;;1610300479;;False;{};gis4ba9;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gis4ba9/;1610341471;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cire101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cire101;light;text;t2_oryv2;False;False;[];;"Not gonna lie, I almost stopped a few minutes in because that weird teacher shit. Hope it doesn't keep happening I hate that fucking trope. - -Besides that loved the first episode! Totally didn't see the piercings and tattoos coming tbh. Super cute chemistry from the main 2 so far!";False;False;;;;1610300829;;False;{};gis50tw;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gis50tw/;1610341918;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kakatoru;;;[];;;;text;t2_a4s34;False;False;[];;That sounds impossible to achieve unless their PE is way more intense than in my country;False;False;;;;1610301590;;False;{};gis6jtq;False;t3_ktunxs;False;True;t1_girz3e4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gis6jtq/;1610342859;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Miridian258;;;[];;;;text;t2_n8vf0;False;False;[];;Its finally here! :D;False;False;;;;1610302070;;False;{};gis7iuv;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gis7iuv/;1610343454;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Thany_Bomb;;;[];;;;text;t2_2b1f82em;False;False;[];;"[General spoilers](/s ""Well, gag violence doesn't sit well with me in any anime, really. It lowered my enjoyment of Working!! and Shigatsu wa Kimi no Uso, and it's also the reason why I can't watch Toradora. Horimiya was a bit different because I first read it when I was younger, so it wasn't as off-putting to me, but to current me, it's definitely problematic."") - -[General spoilers](/s ""That being said, just like with the fanservice anime trope, I recognize that despite being annoying, it's something imbued into the culture and I can tolerate it if the series is good enough (I still rate Shigatsu as a 10/10, for example)."")";False;False;;;;1610302134;;False;{};gis7nje;False;t3_ktunxs;False;True;t1_girx8hm;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gis7nje/;1610343533;0;True;False;anime;t5_2qh22;;0;[]; -[];;;onthoserainydays;;;[];;;;text;t2_8zyswoyn;False;False;[];;Hey, Overhaul's voice actor is the teacher, how about that;False;False;;;;1610302656;;False;{};gis8pqv;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gis8pqv/;1610344157;4;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;Lol no, they just call it that.;False;False;;;;1610302673;;False;{};gis8r16;False;t3_ktunxs;False;True;t1_girtix5;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gis8r16/;1610344178;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MidnightShout;;;[];;;;text;t2_d1c34;False;False;[];;Okay but how cute was this episode, hello?;False;False;;;;1610302700;;False;{};gis8t03;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gis8t03/;1610344210;4;True;False;anime;t5_2qh22;;0;[]; -[];;;kakatoru;;;[];;;;text;t2_a4s34;False;False;[];;Well that's unnecessarily confusing. You wouldn't call a bike-ride (even for a competition) tour de france;False;False;;;;1610303087;;False;{};gis9jcs;False;t3_ktunxs;False;True;t1_gis8r16;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gis9jcs/;1610344629;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OingoBoingo-;;;[];;;;text;t2_8cbjydnf;False;False;[];;I was about to go screenshot the scene with the tattoos and I figured my boy Leon would be here in the comments with a snap! Thank you! So refreshing to have a show where people are all very up front with each other from the start. Everything was moving pretty fast, and it was flawless. My heart feels so warm.;False;False;;;;1610303547;;False;{};gisa367;False;t3_ktunxs;False;False;t1_gioczkx;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gisa367/;1610344945;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ShinyMilo;;;[];;;;text;t2_16raer;False;False;[];;Can't believe I am finally watching a Horimiya anime. The quality is way higher than I expected. Pacing was a bit fast here and there but nothing to worry about. Can't wait for the rest.;False;False;;;;1610303722;;False;{};gisa8rz;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gisa8rz/;1610345031;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Beat_Saber_Music;;;[];;;;text;t2_3vi9adoi;False;False;[];;"I was bored as Attack on Titan's newest episode wasn't out yet and thus I randomly decided to check this anime because the pic for it on my used site looked good. I also obviously read much of the mange right after this. - -I must say it was my best random choice as I love this. I especially loved how in the span of one episode they had faster love progression than some other shows might have in their whole time (ie, a character managing to actually confess). I especially feel this way following how Tonikawa broke the pattern of a confession taking forever in the span of like 10-20 minutes of the first episode. - -Hori and Miyamura just feel so great together. - -Overall I just love it so far and can't wait for the rest of the anime";False;False;;;;1610304662;;False;{};gisbtuo;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gisbtuo/;1610345939;6;True;False;anime;t5_2qh22;;0;[]; -[];;;zairaner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/zairaner;light;text;t2_166xh0;False;False;[];;I don't know how good of a source MAl is for manga, but there it is the 13th most popular manga.;False;False;;;;1610305709;;False;{};gisdxam;False;t3_ktunxs;False;True;t1_girkaj6;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gisdxam/;1610347172;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Phinaeus;;;[];;;;text;t2_3jbc6;False;True;[];;What chapters does this first episode cover? I feel like the anime glossed over a bit and that their relationship is slightly fast.;False;False;;;;1610306291;;False;{};gisf3jb;False;t3_ktunxs;False;True;t1_gio53qi;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gisf3jb/;1610347823;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kickazzgoalie;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/kickazzgoalie;light;text;t2_5cyaq;False;False;[];;"I noticed from some of the other comments that some consider Hori's 'alter-ego' to not be as different as Miyamura's two versions. For me I thought her's just wasn't as loud as his but still a fair change; from the smart-attractive-highschool student to *single-mother-raising-a-small-child-on-her-own* vibes. It could make for an awkward situation if she ran into a classmate in ""mom-mode"", especially if she couldn't explain, or if she were also with a pierced and tattooed bad boy, ... That's gonna happen, isn't it? lol";False;False;;;;1610306375;;False;{};gisf9q5;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gisf9q5/;1610347918;3;True;False;anime;t5_2qh22;;0;[]; -[];;;onthoserainydays;;;[];;;;text;t2_8zyswoyn;False;False;[];;Talk about breakneck pace;False;False;;;;1610307285;;False;{};gish3ln;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gish3ln/;1610348940;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;"> ***Monthly GFantasy*** (月刊Gファンタジー, *Gekkan Jī Fantajī*), also known as ***Gangan Fantasy***, is a Japanese [shōnen manga](https://en.wikipedia.org/wiki/Sh%C5%8Dnen_manga) magazine published by [Square Enix](https://en.wikipedia.org/wiki/Square_Enix).";False;False;;;;1610307790;;False;{};gisi3nx;False;t3_ktunxs;False;True;t1_gis1x4d;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gisi3nx/;1610349496;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;I don't know how I missed this one but I love everything about this anime... especially the Ending visuals...;False;False;;;;1610309555;;False;{};gislnbu;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gislnbu/;1610351498;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;I didn't expect more fluff after Non Non and Yuru Camp, but there is a bonus amount going on.;False;False;;;;1610309645;;False;{};gisltyj;False;t3_ktunxs;False;True;t1_gio5hbm;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gisltyj/;1610351599;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CooroSnowFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/CooroSnowFox;light;text;t2_e46nr;False;False;[];;"I saw a screenshot on twitter... thats enough to get me hooked... - -That expression with the big eyes is just enough.";False;False;;;;1610309807;;False;{};gism681;False;t3_ktunxs;False;False;t1_gipkdla;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gism681/;1610351784;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Shizzi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://anilist.co/user/Mivy/;light;text;t2_gfpz3;False;False;[];;Manga readers did say this was gonna be good and im already sold. Like no bad tropes in the first ep whatsoever and the relationship between them is already freaking amazing and healthy lets go!;False;False;;;;1610310238;;False;{};gisn2k8;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gisn2k8/;1610352274;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hrhagadorn;;;[];;;;text;t2_smets;False;False;[];;Roxy might have something say about it or a certain redhead yet to show up. But Hori so far is the leader.;False;False;;;;1610311073;;False;{};gisosyu;False;t3_ktunxs;False;True;t1_gio9i48;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gisosyu/;1610353229;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hrhagadorn;;;[];;;;text;t2_smets;False;False;[];;Diito to DAF. Saw lots of comments figured I'd give it a shot. Enjoyed the first episode.;False;False;;;;1610311399;;False;{};gispiq3;False;t3_ktunxs;False;True;t1_giog7ty;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gispiq3/;1610353614;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;Above 8k now!;False;False;;;;1610311664;;False;{};gisq40k;False;t3_ktunxs;False;True;t1_girach2;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gisq40k/;1610353926;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cxxper01;;;[];;;;text;t2_14lyjl;False;False;[];;How can miyamura be so timid and rebellious at the same time lol, he is a cool nerd though;False;False;;;;1610313238;;False;{};gistf9p;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gistf9p/;1610355748;4;True;False;anime;t5_2qh22;;0;[]; -[];;;CobaltEdo;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/CobaltEdo;light;text;t2_15mgjbak;False;False;[];;"Never read the source, never even heard of this opera before -I watched the first episode, it was fucking amazing even if it wasn't anything special.";False;False;;;;1610316090;;False;{};giszauw;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giszauw/;1610358921;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;If Hori wasn't already in love she wouldn't have broken out into tears at the thought of him saying they wouldn't make a good couple.;False;False;;;;1610316232;;False;{};giszlsk;False;t3_ktunxs;False;True;t1_gire330;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giszlsk/;1610359078;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;Don't get me wrong, I liked this ep, at this point it might be the only Saturday show I'll be looking forward to this season, though that's not saying much and I don't know what may start airing next Saturday. But there *are* issues.;False;False;;;;1610316396;;False;{};giszxub;False;t3_ktunxs;False;True;t1_gir587b;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giszxub/;1610359262;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ObsidianSkyKing;;MAL;[];;"https://myanimelist.net/animelist/Freehaven&view=tile&status=7";dark;text;t2_6w6rr;False;False;[];;"you need to reexamine your usage of the term ""gyaru"" mate";False;False;;;;1610316795;;False;{};git0tfp;False;t3_ktunxs;False;False;t1_gionqpl;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/git0tfp/;1610359737;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ObsidianSkyKing;;MAL;[];;"https://myanimelist.net/animelist/Freehaven&view=tile&status=7";dark;text;t2_6w6rr;False;False;[];;luckily i'm not blind, my eyesight is just poor so I just have to wear glasses but I'm also loving it so far!;False;False;;;;1610317420;;False;{};git257g;False;t3_ktunxs;False;True;t1_gioat62;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/git257g/;1610360457;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;She didn’t feel sad on that. She was more angry on Miyamura saying stuff like that to save Hori’s reputation (since she was hanging out with a *gloomy* guy). Rewatch the scene.;False;False;;;;1610317432;;False;{};git263n;False;t3_ktunxs;False;True;t1_giszlsk;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/git263n/;1610360471;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ObsidianSkyKing;;MAL;[];;"https://myanimelist.net/animelist/Freehaven&view=tile&status=7";dark;text;t2_6w6rr;False;False;[];;While I love brunette Hori my brain still half believes she's blonde too xD;False;False;;;;1610317494;;False;{};git2an7;False;t3_ktunxs;False;True;t1_giobryv;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/git2an7/;1610360537;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"The reputation stuff was later. She definitely took the ""not a good couple"" thing personally.";False;False;;;;1610318876;;False;{};git57sk;False;t3_ktunxs;False;True;t1_git263n;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/git57sk/;1610362109;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatsmaboi23;;;[];;;;text;t2_7q0wdqa0;False;False;[];;They are both pretty straight with each other. While being neutral, no boundaries, if you value a relationship with someone, and then they say they don’t look good with you, you’ll definitely feel frustrated that they are undermining themselves while you treat them as a good friend. They don’t talk about being a couple, they talk about looking good together as in being together at school (as friends or just people talking with each other).;False;False;;;;1610319129;;False;{};git5qq7;False;t3_ktunxs;False;True;t1_git57sk;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/git5qq7/;1610362392;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;Not making a good couple does not necessarily have anything to do with looking good together. The most photogenic couple might be awful in a relationship with one another.;False;False;;;;1610319657;;False;{};git6u3h;False;t3_ktunxs;False;True;t1_git5qq7;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/git6u3h/;1610362995;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bbongal_kun;;;[];;;;text;t2_62kfnpnw;False;False;[];;because he knows what happened and saying something out loud just hurts more.;False;False;;;;1610319874;;False;{};git7agg;False;t3_ktunxs;False;True;t1_girqzjw;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/git7agg/;1610363242;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mindless-Eggplant202;;;[];;;;text;t2_9ree64ut;False;False;[];;The pacing is actually almost exactly like the manga so there isn’t anything in between the scenes when you count the manga. So is it pretty fast paced but it slows down when the romance starts and then you get all the good stuff. I was actually surprised how well it’s kept to the manga. But I am a bit confused with the opening it’s so serious but the manga isn’t at all it’s like they’re all gonna die at the end but I don’t know maybe I just don’t get it lol.;False;False;;;;1610319968;;False;{};git7h74;False;t3_ktunxs;False;True;t1_gio9do1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/git7h74/;1610363344;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HeyAshh1;;;[];;;;text;t2_4k4iq3yy;False;False;[];;That was so great, music choice got me by surprise in a good way :D;False;False;;;;1610321430;;False;{};gitag3d;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gitag3d/;1610364969;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Knightley4;;;[];;;;text;t2_5pve6;False;False;[];;"Wow, I'm going to enjoy this a lot. The dialogue feels fresh, pacing is great, and visuals are pleasing. - -Definitely getting manga after the season.";False;False;;;;1610321535;;False;{};gitanmw;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gitanmw/;1610365085;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vikkio92;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/vikkio92;light;text;t2_a5f5t;False;False;[];;I haven’t watched the first episode of all the shows I plan to watch this season yet, but I have the feeling this will end up being my AotS 😁;False;False;;;;1610323137;;False;{};gitdy02;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gitdy02/;1610366963;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fuckfuckfuckSHIT;;;[];;;;text;t2_9ko04;False;False;[];;It says in the episode how her mom works a lot and can’t say no when being asked to work.;False;False;;;;1610323476;;False;{};gitemgj;False;t3_ktunxs;False;True;t1_girj8gv;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gitemgj/;1610367356;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NaanBread13;;;[];;;;text;t2_ub2vb;False;False;[];;I've been reading this for so damn long, that is still surprises me that there is an anime. I'm super happy with this episode though and throughly enjoyed it! Characters and their voices really match. I like the art too. Can't wait for more!!;False;False;;;;1610324147;;False;{};gitfzbi;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gitfzbi/;1610368164;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610328381;;False;{};gitoi50;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gitoi50/;1610373704;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TangledPellicles;;;[];;;;text;t2_15k1ya;False;False;[];;And it contains some shoujo stories. Check what's been published in it and what it's considered, shoujo or shounen. Square Enix is known for aiming at all genders.;False;False;;;;1610329305;;False;{};gitqefd;False;t3_ktunxs;False;False;t1_gisi3nx;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gitqefd/;1610374938;0;True;False;anime;t5_2qh22;;0;[]; -[];;;MithrilEcho;;;[];;;;text;t2_zyn38;False;False;[];;"I'm not. - -I've eaten my fair share of slow-paced romance animes that this feels like fresh air. - -Otherwise you end up with romantic development on chapter 9 and hand-holding on chapter 12.";False;False;;;;1610329595;;False;{};gitr2ba;False;t3_ktunxs;False;True;t1_gio9do1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gitr2ba/;1610375372;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TangledPellicles;;;[];;;;text;t2_15k1ya;False;False;[];;Of a 15 volume ongoing series. What's your point? Do you consider the first volume of Fruits Basket to contain lots of character growth? The actual story doesn't even settle and get going until volume 3/23, and it's considered one of the best character manga out there. Yet by your standards it would be a failure.;False;False;;;;1610329613;;False;{};gitr3nv;False;t3_ktunxs;False;True;t1_gis285s;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gitr3nv/;1610375395;1;True;False;anime;t5_2qh22;;0;[]; -[];;;corruptbytes;;;[];;;;text;t2_11i5mn;False;False;[];;about 3 chapters;False;False;;;;1610330156;;False;{};gitsck9;False;t3_ktunxs;False;True;t1_gisf3jb;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gitsck9/;1610376209;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GoodTeletubby;;;[];;;;text;t2_dpof8;False;False;[];;">[Sorry dude, clearly you have no choice in the matter and you have already become her boyfriend without noticing](https://cdn.discordapp.com/attachments/621713361390010378/797538972217114654/unknown.png) - -I also appreciated the line just before that. 'Who'd wake me up when I fell asleep while watching a movie?'. The extra clue as to how close and comfortable their relationship has gotten.";False;False;;;;1610330164;;False;{};gitsd8z;False;t3_ktunxs;False;True;t1_giojdr7;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gitsd8z/;1610376223;2;True;False;anime;t5_2qh22;;0;[]; -[];;;rambonenix;;;[];;;;text;t2_wo7lr;False;False;[];;WOW WAIFU ALERT;False;False;;;;1610331516;;False;{};gitv6st;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gitv6st/;1610378116;1;True;False;anime;t5_2qh22;;0;[]; -[];;;THEGUYINTHEPICT;;;[];;;;text;t2_4059sf4r;False;False;[];;That was real fast. Also bi mc pog;False;False;;;;1610331989;;False;{};gitw5mg;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gitw5mg/;1610378772;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MlookSM;;;[];;;;text;t2_n54hnm5;False;False;[];;"I hate being the party pooper, but this was mediocre through and through. - -The plot played so incredibly fast there was no room for normal human interaction whatsoever. Such lack of devolopment will only hurt the progression of the series and will make everything feels forced af. - -Even the world feels too idealistic even for a romcom I would say. - -I hardly sat through it.";False;False;;;;1610332566;;1610360367.0;{};gitxaqy;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gitxaqy/;1610379532;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThoricMeerkat;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Thoric;light;text;t2_njjo0;False;False;[];;This episode gave me big Toradora vibes, with the house life and the genuine conversations that the characters can have. If the rest of the series is like this I am 100% on board.;False;False;;;;1610335672;;False;{};giu3aa0;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giu3aa0/;1610383807;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RikodouDragonZ;;;[];;;;text;t2_3p0z9apz;False;False;[];;But these aren't actual issues, except the phone one. But that's the type of thing that happens a lot in anime. They need to create coincidences to make sure that the two main pieces interact. In this case, it was used to introduce us to Miyamura and show us what kind of person he is, atleast from the perspective of an outsider.;False;False;;;;1610335900;;False;{};giu3pwn;False;t3_ktunxs;False;True;t1_giszxub;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giu3pwn/;1610384137;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-macaron;;;[];;;;text;t2_16miyj;False;False;[];;its gentler;False;False;;;;1610337825;;False;{};giu7etj;False;t3_ktunxs;False;True;t1_giqhiat;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giu7etj/;1610386834;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Vision75;;;[];;;;text;t2_7rjowz2;False;False;[];;"I’ve been looking forward to this for a while now, and the first episode was pretty good. The pace was lightning quick, but it’s not a bad thing. Hori is super cute and funny and Miyamura is pretty cool himself. - -The humor was solid, pretty simple but the delivery was on point. Whoever the VA for Hori is did a great job. I’m really excited for more!";False;False;;;;1610337909;;False;{};giu7kq4;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giu7kq4/;1610386957;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MickeyLALA;;;[];;;;text;t2_od4bg;False;False;[];;"[small spoiler](/s ""IIRC they've known each other for pretty long which is why he's comfortable with making jokes like that"")";False;False;;;;1610340938;;False;{};giud1fa;False;t3_ktunxs;False;True;t1_gir0m88;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giud1fa/;1610390968;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MickeyLALA;;;[];;;;text;t2_od4bg;False;False;[];;"The actual ""main storyline"" is pretty compact and sweet. What a lot of people complain about is that the webnovel has a ton of extra chapters without much plot which has been what the manga version has been adapting for the past while and people don't realize that the the story is basically complete and still want more plot progression from newer chapters";False;False;;;;1610341380;;False;{};giudql8;False;t3_ktunxs;False;True;t1_gior5xw;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giudql8/;1610391460;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cin_anime;;;[];;;;text;t2_93wi75rs;False;False;[];;I am thinking about watching this! should I?;False;False;;;;1610341953;;False;{};giuemi4;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giuemi4/;1610392084;3;True;False;anime;t5_2qh22;;0;[]; -[];;;glovecompartment00;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://myanimelist.net/profile/glovecompartment;light;text;t2_4bd984g8;False;False;[];;i knew i would like this, but i did not know i would fucking love this - third rom com that has made me fall in love with it on the first episode (the other two being yamada-kun 7 witches and kono oto tomare);False;False;;;;1610344330;;False;{};giui4kj;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giui4kj/;1610394561;4;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;" - -Yes";False;False;;;;1610344494;;False;{};giuicxx;False;t3_ktunxs;False;True;t1_giuemi4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giuicxx/;1610394726;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Fat_French_Fries;;;[];;;;text;t2_23h4at8b;False;False;[];;The swimming pool chapter with Yasuda, Sengoku, and Miyamura has got to be the funniest chapter out of all of them in my opinion, could not stop laughing the whole time.;False;False;;;;1610345478;;False;{};giujpe4;False;t3_ktunxs;False;True;t1_gioxd53;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giujpe4/;1610395700;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;"It's a shonen magazine, it doesn't have a page before horimiya saying ""btw this is a shoujo manga"". It can't be considered shoujo or shonen because they aren't genres, the only thing deciding what it is is the label the magazine markets itself as, in this case as shonen.";False;False;;;;1610345764;;1610350317.0;{};giuk3d4;False;t3_ktunxs;False;True;t1_gitqefd;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giuk3d4/;1610395982;0;True;False;anime;t5_2qh22;;0;[]; -[];;;shewy92;;;[];;;;text;t2_wd13k;False;False;[];;As a manga reader for both, No it doesn't. The later ones especially (ones that won't get adapted so dont delete this comment, no spoilers are being said) since they don't deal with the main couple.;False;False;;;;1610346428;;False;{};giukz0r;False;t3_ktunxs;False;True;t1_giow1tn;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giukz0r/;1610396612;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Azn17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Silent_Echo17;light;text;t2_6l0yu;False;False;[];;I'm here for the Yuki love. Best girl!;False;False;;;;1610350053;;False;{};giupjuk;False;t3_ktunxs;False;True;t1_gio7oe2;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giupjuk/;1610399843;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610352589;;False;{};giutdzz;False;t3_ktunxs;False;True;t1_gip1s7c;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giutdzz/;1610402320;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jun_One61;;;[];;;;text;t2_8250ir69;False;False;[];;"As a fan of the manga, I agree. Even the animation feels very boring. - -If you at least like the premise, I would recommend the Hori-san to Miyamura-kun OVAs that came out 8 years ago. It’s based of the same story as Horimiya, but the pacing is WAY better.";False;False;;;;1610359384;;False;{};giv1q4i;False;t3_ktunxs;False;True;t1_gitxaqy;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giv1q4i/;1610407599;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;"Well if they get together the rest is just extra, unless they pull the Clannad card of killing people. - -I just reached the part where Miya meets Horis dad and I am enjoying it";False;False;;;;1610361183;;False;{};giv48lc;False;t3_ktunxs;False;True;t1_giudql8;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giv48lc/;1610408942;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ganondurf4262;;;[];;;;text;t2_69300sor;False;False;[];;I watched this after seeing the high amount of upvotes, but the first episode was so good, I already love the characters;False;False;;;;1610363590;;False;{};giv7q70;False;t3_ktunxs;False;False;t1_giuemi4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giv7q70/;1610410786;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Ganondurf4262;;;[];;;;text;t2_69300sor;False;False;[];;">gap moe - -A new addition to my dictionary. Didn't know at first what it meant until I googled";False;False;;;;1610364272;;False;{};giv8pjh;False;t3_ktunxs;False;True;t1_gios4lp;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giv8pjh/;1610411293;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BerkofRivia;;;[];;;;text;t2_qjx0o;False;False;[];;It’s because she has to do chores while her classmates go out and have fun. She doesn’t wanna get pitied by “oh, she can’t hang out with us because she has to look after her brother and do chores” don’t forget they’re high schoolers;False;False;;;;1610368298;;False;{};givg74d;False;t3_ktunxs;False;True;t1_gipl06u;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/givg74d/;1610414886;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TangledPellicles;;;[];;;;text;t2_15k1ya;False;False;[];;No, it doesn't have a page in the magazine saying that. No magazine does. And yet when you look up any reference that's lists all the stories serialized in the manga, you see the mix of demographics that the stories are aimed at because there they are labelled as shoujo or shounen.;False;False;;;;1610370479;;False;{};givk2uu;False;t3_ktunxs;False;False;t1_giuk3d4;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/givk2uu/;1610417001;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;You don't make any sense dude, Gangan Fantasy is a shonen magazine and that's that.;False;False;;;;1610371218;;False;{};givlfoe;False;t3_ktunxs;False;True;t1_givk2uu;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/givlfoe/;1610417753;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TangledPellicles;;;[];;;;text;t2_15k1ya;False;False;[];;Not really. Whoever labelled the magazine can also label its contents, and evidently they have done so. The majority of the stories in it are shounen, but not all are.;False;False;;;;1610372233;;False;{};givncnc;False;t3_ktunxs;False;True;t1_givlfoe;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/givncnc/;1610418781;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;Post a link then;False;False;;;;1610372615;;False;{};givo3to;False;t3_ktunxs;False;False;t1_givncnc;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/givo3to/;1610419198;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TangledPellicles;;;[];;;;text;t2_15k1ya;False;False;[];;Go to the Square Enix magazine websiite and look at the individual title information, and above each title they have a category that they split that title into.;False;False;;;;1610375147;;False;{};givtdy2;False;t3_ktunxs;False;False;t1_givo3to;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/givtdy2/;1610422205;1;True;False;anime;t5_2qh22;;0;[]; -[];;;unicorn_manga;;;[];;;;text;t2_11mr78;False;False;[];;the first episode was literally the same as the beginning of the manga and it didn’t skip anything from there either so i think it’ll be fast paced in general;False;False;;;;1610377560;;False;{};givyv4f;False;t3_ktunxs;False;True;t1_gio9do1;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/givyv4f/;1610425267;2;True;False;anime;t5_2qh22;;0;[]; -[];;;unicorn_manga;;;[];;;;text;t2_11mr78;False;False;[];;i feel this - it’s a comfort manga for me and it’s just so calming to read and the angst of being a high school student is portrayed really well imo and now that i’m around the same age as them i relate so well to the pressures they’ve been feeling from school and all that;False;False;;;;1610378152;;False;{};giw08eu;False;t3_ktunxs;False;True;t1_giqfogx;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giw08eu/;1610426004;2;True;False;anime;t5_2qh22;;0;[]; -[];;;unicorn_manga;;;[];;;;text;t2_11mr78;False;False;[];;i’m pretty sure toru isn’t a childhood friend tho - they’ve just been friends longer than her and miya;False;False;;;;1610378232;;False;{};giw0f1g;False;t3_ktunxs;False;True;t1_giocl7m;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giw0f1g/;1610426104;1;True;False;anime;t5_2qh22;;0;[]; -[];;;unicorn_manga;;;[];;;;text;t2_11mr78;False;False;[];;i feel like the secret isn’t so much a secret on hori’s part to keep the realism and also to show how much people (high schoolers especially) care about their appearance and how silly that is;False;False;;;;1610378369;;False;{};giw0qun;False;t3_ktunxs;False;True;t1_gioz4ku;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giw0qun/;1610426281;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"I meant it as Miyamura filling in the ""childhood friend"" role as someone close to the family and visiting frequently.";False;False;;;;1610378377;;False;{};giw0rkz;False;t3_ktunxs;False;True;t1_giw0f1g;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giw0rkz/;1610426292;1;True;False;anime;t5_2qh22;;0;[]; -[];;;unicorn_manga;;;[];;;;text;t2_11mr78;False;False;[];;"that was the OVA and this will have 13 episodes -i hated the animation of the OVA ngl and i’m pretty sure the plot was different from the original manga";False;False;;;;1610378509;;False;{};giw12rn;False;t3_ktunxs;False;True;t1_giovpi7;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giw12rn/;1610426469;2;True;False;anime;t5_2qh22;;0;[]; -[];;;unicorn_manga;;;[];;;;text;t2_11mr78;False;False;[];;"ohhh i’m sorry i was a dumb-dumb and misunderstood but also that’s an interesting take to it -i really like the original (and i’m definitely biased because i’m a manga reader) so i think just wait and watch to see how it unfolds and i think you’ll see the perks -you could always just make an alt version of it in a fanfiction";False;False;;;;1610378769;;False;{};giw1ouj;False;t3_ktunxs;False;True;t1_giw0rkz;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giw1ouj/;1610426801;1;True;False;anime;t5_2qh22;;0;[]; -[];;;generalmillscrunch;;;[];;;;text;t2_zofoh;False;False;[];;This karma is absolutely insane for a romcom, bordering on kaguya-sama levels. much hype and much respect;False;False;;;;1610382866;;False;{};giwc02f;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giwc02f/;1610432506;3;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;"It fell just over 300 points short of being the highest karma ever for a debut episode. - -Never would I have expected that, these are outstanding numbers. Comments are very impressive too. - -Let's wait and see how big the drop is next week and where it'll slot in once all the shows are airing.";False;False;;;;1610384740;;False;{};giwgvh9;False;t3_ktunxs;False;False;t1_giwc02f;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giwgvh9/;1610435196;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610385210;;False;{};giwi3yq;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giwi3yq/;1610435838;0;True;False;anime;t5_2qh22;;0;[]; -[];;;nightstalker54;;;[];;;;text;t2_gebkh;False;False;[];;I think glasses AND ponytails are superior combination.;False;False;;;;1610388504;;False;{};giwpu9g;False;t3_ktunxs;False;True;t1_giooyws;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giwpu9g/;1610440074;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610395566;;False;{};gix5ikd;False;t3_ktszq1;False;True;t1_gipx5yq;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/gix5ikd/;1610448446;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aSyrupBoi;;;[];;;;text;t2_7hdxxuqv;False;False;[];;u/guacamoles_constant commented about it, and I think that captures the idea really well, I also left a reply under it about a specific scene;False;False;;;;1610395696;;False;{};gix5sne;False;t3_ktszq1;False;True;t1_gipgct8;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/gix5sne/;1610448599;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610403142;;False;{};gixlyiw;False;t3_ktszq1;False;True;t1_gix5sne;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/gixlyiw/;1610458142;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tamac1703;;;[];;;;text;t2_2mdyo7bb;False;False;[];;"For those curious and who don't want to scroll, it's the comments at [https://www.reddit.com/r/anime/comments/ktszq1/horimiya\_op\_iro\_kousui\_by\_you\_kamiyama/gix5ikd/?context=3](https://www.reddit.com/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/gix5ikd/?context=3): - ->Really interesting visuals, I think. The cubes don't really symbolise anything from the manga (that I remember), but they do a good job of showcasing the main theme of their romance. The opening shot I think is supposed to symbolise that for Miyamura at least, school is a lonely place where time is just kinda broken for him. The interesting bit I think, is when the squares are moving around, you'll see characters occupy the same space but not at the same time. This culminates in that shot where Hori, Miyamura, Yuki and Toru share the classroom, but they're in separate squares. Correct me if I'm wrong, but it looks like the lighting in Toru and Yuki's squares match, while the lighting in Hori's is slightly different, and Miyamura's is completely different (being much more blue), which I think is supposed to symbolise how Hori is a bit out of sync with her friends, but Miyamura is completely out of sync with the whole class. All the characters are also staring at the space where Miyamura would occupy if he shared their square, with Miyamura looking back at Hori. Then there's that shot with Miyamura trapped in the cube, which is kinda self-explanatory. He then sits on the ground, waiting, while people walk past him. It's not until AFTER we see people ignore him and walk right on by that Miyamura reaches for the red cube, which probably signifies how this loneliness is something that he reached for after being ignored, which then transforms into the windows of school (and I can't tell what comes after that)... until he FINALLY shares the same space as Hori, who can't and doesn't ignore him as HE walks past HER. His grip tightens on the cube, scared to let go of it. We see the characters all moody and dramatic, then we see Miyamura literally throwing flowers at the box. Literally breaking through his box with romance lol. - -and [u/aSyrupBoi](https://www.reddit.com/u/aSyrupBoi/)'s comment is \[spoiler source\](/s ""It reminds me of the scene with Miyamura and Tanihara where they're sitting in a tiny room and talking about the outside/inside"") - -(For some reason your comment doesn't appear so it's re-added here.)";False;False;;;;1610403240;;False;{};gixm5z1;False;t3_ktszq1;False;True;t1_gix5sne;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/gixm5z1/;1610458274;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HajimeteNHK;;;[];;;;text;t2_4tlyp7gb;False;False;[];;"Well! Here comes ol' Hori! -Good ol' Hori....yes, sir! -Good ol' Hori... -How i hate her!";False;False;;;;1610411488;;False;{};giy2obi;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giy2obi/;1610469908;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Salvo1218;;;[];;;;text;t2_7vqdb;False;False;[];;I knew nothing about this going in, except that people were exited. We got this, Yuru Camp S2, Non Non Biyori S3, and (for me) Azur Lane Slow Ahead....it's too much cozy cute fluff one season;False;False;;;;1610417667;;False;{};giyerhe;False;t3_ktunxs;False;True;t1_gioh97p;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giyerhe/;1610478528;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Salvo1218;;;[];;;;text;t2_7vqdb;False;False;[];;"""calm down, just imagine him as a regular romance MC"" - -""ON NO HE'S HOT!""";False;False;;;;1610417832;;False;{};giyf33x;False;t3_ktunxs;False;True;t1_gio9c15;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giyf33x/;1610478747;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Salvo1218;;;[];;;;text;t2_7vqdb;False;False;[];;"When our boy immediately realized that Toru was glaring at him because he had a crush on Hori and they'd been spending time together, I was like ""hol up, this dude is actually socially aware of his surroundings? This is going to take some getting used to""";False;False;;;;1610418319;;False;{};giyg2a8;False;t3_ktunxs;False;True;t1_gip1s7c;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giyg2a8/;1610479415;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610419614;;False;{};giyipr1;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giyipr1/;1610481310;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fools_Requiem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FoolsRequiem;light;text;t2_ynm3o;False;False;[];;"If anyone happens to see this that might be tempted to watch the 4 OVAs episodes, just so they watch more of this, I suggest not doing so at least until this season ends. - -I went to watch the first one thinking they would just adapt random chapters, but the first half of the first OVA was like watching a recap of this episode with a different and much less detailed art style with almost none of the humor and charm. I stopped when I got to the point where this episode ended, because I didn't want the remaining 3 and a half episodes to spoil the story. I'm just going to wait until the season is over before I watch the rest. Plus, two the remaining two OVAs are set to air in May anyways. - -Aside from this, this episode was amazing. Had a giant fucking smile on my face the whole time. I want more, and I demand this be a two cour season, seeing as how popular and long running this series seems to be, there is definitely enough material for a two cour season. It was like ""don't judge a book by it's cover"" the anime. For a first episode, they really knocked it out of the park. I thought Tonikawa's first episode was great, this one was better by a mile. I can't wait to watch more of these two dorks.";False;False;;;;1610429633;;False;{};giz0ps4;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giz0ps4/;1610493991;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nota7andomguy;;;[];;;;text;t2_mesnj;False;False;[];;I’m two days late so just about everything I would say has probably already been said, so I’ll just share this random little bit of linguistic trivia I noticed: the VAs place the stress in Hori’s name on the second syllable (ho-RI), while I, a native English-speaker, have been reading it with the stress on the first syllable (HO-ri). Just something I thought was interesting.;False;False;;;;1610431378;;False;{};giz36sd;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giz36sd/;1610495639;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cin_anime;;;[];;;;text;t2_93wi75rs;False;False;[];;THat was how I found this anime too. I have yet to watch episode one. Been working on a project;False;False;;;;1610431588;;False;{};giz3h1v;False;t3_ktunxs;False;True;t1_giv7q70;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giz3h1v/;1610495829;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sullan08;;;[];;;;text;t2_5go83;False;False;[];;This is how it happened in the manga pretty much. They just dive right into it. It's one of the more mature romance stories. No 12 episodes of awkwardness just to end with nothing really accomplished.;False;False;;;;1610434737;;False;{};giz7fgw;False;t3_ktunxs;False;True;t1_gio9omu;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giz7fgw/;1610498372;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Isogash;;MAL;[];;https://myanimelist.net/animelist/Isogash;dark;text;t2_b2n8a;False;False;[];;"Well god damn, this is already gonna be a favourite of the season. The character designs are absolutely gorgeous and I'm liking every character introduced so far a lot. Might have to pick up the manga for this already but it looks like it has a confusing history starting as 4-koma, then compiled, and then adapted as another manga. - -That pacing though, it feels like we watched a whole season arc in one episode, but I'm not even complaining. It seems to have forgone the slow monologue-heavy style of other romance in favour of suggesting that level of introspection through dialogue. I like that they muted the confession scene, which would otherwise have been a drawn-out moment. There's more balance between the characters this way. - -OP is passable but the ED is great.";False;False;;;;1610436703;;False;{};giz9nfi;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giz9nfi/;1610499734;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ItsDynamical;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ItsDynamical;light;text;t2_vfecf;False;False;[];;the blonde one looks like ritsu from k-on and it’s so cute, and hori san reminds me of kumiko in some shots;False;False;;;;1610455814;;False;{};giztnr5;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/giztnr5/;1610512489;1;True;False;anime;t5_2qh22;;0;[]; -[];;;abdulladam12;;;[];;;;text;t2_1hw3wbk3;False;False;[];;Deserves all the hype that people did first episode was good good thing they both know that they love each other;False;False;;;;1610457332;;False;{};gizvrp6;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gizvrp6/;1610513978;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aggravating-End-9299;;;[];;;;text;t2_8aw5n494;False;False;[];;When will it be fully released ,i mean the op;False;False;;;;1610463739;;False;{};gj06x6o;False;t3_ktszq1;False;False;t3_ktszq1;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/gj06x6o/;1610520638;1;True;False;anime;t5_2qh22;;0;[]; -[];;;midnightverses;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_7j0yg6zl;False;False;[];;Kwaaa;False;False;;;;1610468664;;False;{};gj0gnug;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gj0gnug/;1610525984;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">she always have a ""perfect"" outlook to others, but at home she doesn't keep up appearances - -It's a less extreme version of the scenario in Kare Kano";False;False;;;;1610468859;;False;{};gj0h2tu;False;t3_ktunxs;False;True;t1_gio8gjt;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gj0h2tu/;1610526207;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;Context?;False;False;;;;1610469135;;False;{};gj0hnwd;False;t3_ktunxs;False;True;t1_giqcor9;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gj0hnwd/;1610526521;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Whyterain;;;[];;;;text;t2_oiq41o5;False;False;[];;"After Miyamura says he & Ishikawa would make a bad couple, Hori thinks in her head 'What about gender?' because Miyamura didn't say it wouldn't work out because they're both dudes.";False;False;;;;1610470434;;False;{};gj0khau;False;t3_ktunxs;False;True;t1_gj0hnwd;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gj0khau/;1610528036;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kdash198700;;;[];;;;text;t2_3xbrgyvz;False;False;[];;"Honestly, I'm kinda thrown off. -Don't get me wrong, Horimiya is a great manga, and this anime adaptation \*looks\* \*\*beautiful.\*\* -Thing is, the theme is all over the place. The combo of stunning visuals and eyes (oh gods, the eyes), but with the little chibi reactions and comedic interactions that is more apparent in comedy. But judging by everyone else's reactions, I guess I'm just used to anime this pretty being more serious, like Violet Evergarden and Erased.";False;False;;;;1610470849;;False;{};gj0le7z;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gj0le7z/;1610528542;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;Huh, that's cool and would have been nice to keep indeed. Though I'm pretty sure the line she's responding to was cut as well.;False;False;;;;1610470959;;1610472197.0;{};gj0lmuw;False;t3_ktunxs;False;True;t1_gj0khau;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gj0lmuw/;1610528683;1;True;False;anime;t5_2qh22;;0;[]; -[];;;csgo_fckslivers;;;[];;;;text;t2_1fefa4b5;False;False;[];;just a girl marking her territory with a bite mark;False;False;;;;1610471828;;False;{};gj0nj9k;False;t3_ktunxs;False;True;t1_giqbqkr;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gj0nj9k/;1610529735;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kogasaka;;;[];;;;text;t2_m07zg;False;False;[];;That song that was playing during their conversation at the end was so good. I can't wait for the OST.;False;False;;;;1610474703;;False;{};gj0ty2p;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gj0ty2p/;1610533223;1;True;False;anime;t5_2qh22;;0;[]; -[];;;8giraffe8;;;[];;;;text;t2_1z0nfcn3;False;False;[];;# it's egg time;False;False;;;;1610485902;;False;{};gj1inkm;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gj1inkm/;1610548756;4;True;False;anime;t5_2qh22;;0;[]; -[];;;verunix;;;[];;;;text;t2_sq689;False;False;[];;Was wondering when they're animating this, I finally have something to look forward to this season :);False;False;;;;1610526871;;False;{};gj3fimp;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gj3fimp/;1610596449;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Isogash;;MAL;[];;https://myanimelist.net/animelist/Isogash;dark;text;t2_b2n8a;False;False;[];;Wait, who the hell is the girl sitting behind Hori-san? I don't recall her being in the manga but she has a speaking role already.;False;False;;;;1610534345;;False;{};gj3msl2;False;t3_ktunxs;False;True;t1_gio53qi;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gj3msl2/;1610600924;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yato_kami__;;;[];;;;text;t2_6wv3pl7d;False;False;[];;"don't know if I'm the only one but I saw the first episode and was kinda disappointed at the characters, I feel like the drawings and the voice actors are the only things that actually make the show decent, the dialogues are awful, and the characters look expressionless, or with expression that are extremely trivial and boring. - -I haven't read the manga so I knew nothing about it, but by only seeing the trailer I expected a bit more from the characters. - -it's only the first episode so i guess we'll see";False;False;;;;1610537041;;False;{};gj3pizm;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gj3pizm/;1610602530;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChristopherKClaw;;MAL;[];;http://myanimelist.net/profile/ChristopherKClaw;dark;text;t2_p7biz;False;False;[];;I'll do you one better, it's creepy even in an anime.;False;False;;;;1610575809;;False;{};gj5u2i6;False;t3_ktunxs;False;True;t1_gir0m88;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gj5u2i6/;1610650186;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_Kristian_;;;[];;;;text;t2_y6ai0;False;False;[];;lmfao that after credits scene;False;False;;;;1610578412;;False;{};gj5zqia;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gj5zqia/;1610654188;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Intelligent_Fuel3018;;;[];;;;text;t2_9t3wma9i;False;False;[];;Like man i feel fucked up sorry if im commenting in not right place because i dont usually use reddit im first time and im just saying that i watched your lie in april and i finished a few minutes ago and i feel so fking sad idk man i cant live with that ending im dreaming like it ended nice they kissed etc but its not fking helping and i will start others anime but much sad and etc i dont know what will happen but i cant stop and its so sad bye;False;False;;;;1610578806;;False;{};gj60kpc;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gj60kpc/;1610654760;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Fluffy9345;;;[];;;;text;t2_2od0d93r;False;False;[];;They skipped over chapter 2 :(;False;False;;;;1610598895;;False;{};gj72qrq;False;t3_ktunxs;False;False;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gj72qrq/;1610679944;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nananashi3;;;[];;;;text;t2_soegz;False;False;[];;[I admire Hori's kneepits.](https://i.imgur.com/5YtevUE.png);False;False;;;;1610608147;;False;{};gj7fgkg;False;t3_ktunxs;False;False;t1_gio65pn;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gj7fgkg/;1610687982;4;True;False;anime;t5_2qh22;;0;[]; -[];;;PrCitan;;;[];;;;text;t2_g7gxr;False;False;[];;"What a nice surprise this was! - -Watched this randomly because I remember a friend being excited this was coming out. Didn't think I'd particularly like it but it's super nice. I don't know, I really like the characters and the art style.";False;False;;;;1610641255;;False;{};gj8ohlx;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gj8ohlx/;1610714384;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MiracleD0nut;;;[];;;;text;t2_t244swk;False;False;[];;So excited about this adaptation. I read this manga back in highschool and I can already tell this is going to be a good adaptation. Big bother Miyamura is the best;False;False;;;;1610652751;;1610652933.0;{};gj9easw;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gj9easw/;1610732590;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mikasa_es_tu_casa;;;[];;;;text;t2_2bt137fr;False;False;[];;Ep 1 and someone got hit with the twisted tea;False;False;;;;1610677708;;False;{};gjauwqn;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gjauwqn/;1610768044;1;True;False;anime;t5_2qh22;;0;[]; -[];;;apinkparfait;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/beazacha/;light;text;t2_3p3fau4c;False;False;[];;More like she's a soft-spoken chill girl that doesn't really say no (it wasn't very flashed out but sharing the notes with the slackers was a hint) while at home she doesn't give a damn about how she looks and talks. The bit about reputation wasn't as much impactful because the anime didn't make the difference that clear.;False;False;;;;1610712698;;False;{};gjc45vo;False;t3_ktunxs;False;False;t1_giohxyn;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gjc45vo/;1610793779;3;True;False;anime;t5_2qh22;;0;[]; -[];;;apinkparfait;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/beazacha/;light;text;t2_3p3fau4c;False;False;[];;Horimiya making Jump titles eat dust in karma is something I wasn't expecting but also not mad about.;False;False;;;;1610712788;;False;{};gjc49lx;False;t3_ktunxs;False;True;t1_giqx2fa;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gjc49lx/;1610793838;2;True;False;anime;t5_2qh22;;0;[]; -[];;;apinkparfait;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/beazacha/;light;text;t2_3p3fau4c;False;False;[];;Is always great to see the team getting creative like this so they can put the animators to use on key moments and let the use of color set the tone for the more intimate dialogues in between.;False;False;;;;1610713092;;False;{};gjc4m7x;False;t3_ktunxs;False;True;t1_gio7s97;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gjc4m7x/;1610794029;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dare555;;;[];;;;text;t2_6k3zwl8o;False;False;[];;"Pacing is too quick,they even kinda skipped chapter 2 hmm... Not to say much because of spoilers but them already skipping chapters isn't good .Perhaps they will add it on next episode but that would be out of order.. - -Still great animation ,great music looks like it will be a big hit and deserves it !";False;False;;;;1610758607;;False;{};gjellun;False;t3_ktunxs;False;True;t1_gio7xzy;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gjellun/;1610852546;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dare555;;;[];;;;text;t2_6k3zwl8o;False;False;[];;they totally skipped one chapter for romancing progression which is bothering me already lol..well lets see if they add it in next episode...? tho that would be out of order;False;False;;;;1610759000;;False;{};gjembvc;False;t3_ktunxs;False;True;t1_gio7s97;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gjembvc/;1610853050;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dare555;;;[];;;;text;t2_6k3zwl8o;False;False;[];;"yes ! everything was perfect expect they skipped chapter 2 wth :<";False;False;;;;1610759027;;False;{};gjemdnx;False;t3_ktunxs;False;True;t1_gio6rje;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gjemdnx/;1610853084;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamera68;;;[];;;;text;t2_fzc26;False;False;[];;"Agreed! -Manga reader here as well, and it only gets better from here on out. - -IMHO, Cloverworks has done a great job of capturing the characters' personalities and facial expressions so far.";False;False;;;;1610764350;;False;{};gjew3ag;False;t3_ktunxs;False;True;t1_giow1tn;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gjew3ag/;1610859006;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamera68;;;[];;;;text;t2_fzc26;False;False;[];;"That's where I heard her VA before. - -Thank you, random reddit user.";False;False;;;;1610764509;;False;{};gjewdu0;False;t3_ktunxs;False;True;t1_gipcm7l;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gjewdu0/;1610859174;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamera68;;;[];;;;text;t2_fzc26;False;False;[];;"/u/AutoLovePon: - -'Horimiya' is also being streamed on Hulu. - -https://www.hulu.com/series/horimiya-b76b37a3-c529-4967-ab5c-bc734b79132d";False;False;;;;1610764690;;False;{};gjewpfs;False;t3_ktunxs;False;True;t3_ktunxs;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gjewpfs/;1610859360;1;True;False;anime;t5_2qh22;;0;[]; -[];;;not_a_killjoy;;;[];;;;text;t2_fbv1q;False;False;[];;I thought he was red-haired all the time I was reading the manga.;False;False;;;;1610775471;;False;{};gjfdxbm;False;t3_ktunxs;False;True;t1_gir4ap0;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gjfdxbm/;1610869077;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Phoenix__Wwrong;;;[];;;;text;t2_6z4tcv1o;False;False;[];;Yeah, when I read the manga I thought she has blonde hair and more gyaru look.;False;False;;;;1610778170;;False;{};gjfhhmw;False;t3_ktunxs;False;True;t1_gio8gjt;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gjfhhmw/;1610870989;1;True;False;anime;t5_2qh22;;0;[]; -[];;;scapegoat4;;;[];;;;text;t2_cn54j;False;False;[];;"I know this response is late as hell, but I saw a date of ""march 29th, 2021"" on genius, [here](https://genius.com/Genius-romanizations-yoh-kamiyama-iro-kousui-romanized-lyrics)... I don't think I can wait that long, this song sounds so good T.T";False;False;;;;1610782535;;False;{};gjfmhz8;False;t3_ktszq1;False;True;t1_giozh2a;/r/anime/comments/ktszq1/horimiya_op_iro_kousui_by_you_kamiyama/gjfmhz8/;1610873783;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-oddest-of-onions-;;;[];;;;text;t2_354i1r5d;False;False;[];;I 100% headcanon him as bi;False;False;;;;1610870958;;False;{};gjk394e;False;t3_ktunxs;False;True;t1_gipog59;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gjk394e/;1610967251;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shadyhawkins;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/shadyhawkins;light;text;t2_8nhct;False;False;[];;I read the manga as well and so far I’m happy with the quicker pacing since I found it dragged at times.;False;False;;;;1610955341;;False;{};gjp844c;False;t3_ktunxs;False;True;t1_gio67d6;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gjp844c/;1611071800;1;True;False;anime;t5_2qh22;;0;[]; -[];;;monsieurvampy;;;[];;;;text;t2_453ax;False;False;[];;will this hold up if Fruits Basket S3 is released this year?;False;False;;;;1611005011;;False;{};gjrdjre;False;t3_ktunxs;False;True;t1_gio9i48;/r/anime/comments/ktunxs/horimiya_episode_1_discussion/gjrdjre/;1611123349;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Paradoxer77;;;[];;;;text;t2_78tb2y44;False;False;[];;Gintama has filler only in seasons 1 and 2: The numbers 1-2, 50, 57, 75, 106, 114, 124-125, 135, 137, 150, 155, 164, 166, 171, 173-174, 176, 185, 209(S2 E8 ), 252(S2 E51). Don't binge watch gintama (and maybe even watch the fillers) because the starting episodes are quite slow and you will get burned out watching it. So, take your time and enjoy the story.;False;False;;;;1610079316;;1610103748.0;{};gii9nnz;True;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gii9nnz/;1610116078;261;True;False;anime;t5_2qh22;;0;[]; -[];;;mikeP1967;;;[];;;;text;t2_6hwp45ia;False;False;[];;If you have Amazon prime watch Dororo and Vinland Saga;False;False;;;;1610079708;;False;{};giiacs9;False;t3_ksux00;False;True;t3_ksux00;/r/anime/comments/ksux00/need_more_anime_to_watch_i_kinda_ran_out/giiacs9/;1610116537;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610079730;;False;{};giiae68;False;t3_ksux00;False;True;t3_ksux00;/r/anime/comments/ksux00/need_more_anime_to_watch_i_kinda_ran_out/giiae68/;1610116562;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Optimus2021;;;[];;;;text;t2_9pr9grj7;False;False;[];;Code geass, Psycho Pass, Oregairu, Gintama, Black Clover, Violet Evergarden and Monogatari series are some I would recommend.;False;False;;;;1610079733;;False;{};giiaeax;False;t3_ksux00;False;True;t3_ksux00;/r/anime/comments/ksux00/need_more_anime_to_watch_i_kinda_ran_out/giiaeax/;1610116564;1;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 80, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'Everything is better with a good hug', 'end_date': None, 'giver_coin_reward': 0, 'icon_format': 'PNG', 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png', 'icon_width': 2048, 'id': 'award_8352bdff-3e03-4189-8a08-82501dd8f835', 'is_enabled': True, 'is_new': False, 'name': 'Hugz', 'penny_donate': 0, 'penny_price': 0, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16&height=16&auto=webp&s=69997ace3ef4ffc099b81d774c2c8f1530602875', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32&height=32&auto=webp&s=e9519d1999ef9dce5c8a9f59369cb92f52d95319', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48&height=48&auto=webp&s=f076c6434fb2d2f9075991810fd845c40fa73fc6', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64&height=64&auto=webp&s=85527145e0c4b754306a30df29e584fd16187636', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128&height=128&auto=webp&s=b8843cdf82c3b741d7af057c14076dcd2621e811', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16&height=16&auto=webp&s=69997ace3ef4ffc099b81d774c2c8f1530602875', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32&height=32&auto=webp&s=e9519d1999ef9dce5c8a9f59369cb92f52d95319', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48&height=48&auto=webp&s=f076c6434fb2d2f9075991810fd845c40fa73fc6', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64&height=64&auto=webp&s=85527145e0c4b754306a30df29e584fd16187636', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128&height=128&auto=webp&s=b8843cdf82c3b741d7af057c14076dcd2621e811', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;"* too in love with the directing and pacing of the Benizakura *arc* to choose the movie over it (the movie's final fight is better though, so definitely check that out afterwards). Plus, there are some minor spoilers for later stuff in it, so I really don't think it should replace the arc -* you missed the love potion arc (released after 2015, but takes place before ep. 300) -* don't forget The Semi-Final before The Final -* if you choose to do Porori-hen before episode 300, skip the opening because it released after 2017 and assumes you watched everything up until that point (I personally like it as a breather season between 2017 and Silver Soul -- which is how it came out in the anime -- so I'll just suggest watching it there)";False;False;;;;1610079805;;1610079995.0;{};giiair1;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiair1/;1610116655;180;True;False;anime;t5_2qh22;;1;[]; -[];;;Bushmeat133;;;[];;;;text;t2_6arfq86d;False;False;[];;Akudama drive;False;False;;;;1610079814;;False;{};giiajdw;False;t3_ksux00;False;True;t3_ksux00;/r/anime/comments/ksux00/need_more_anime_to_watch_i_kinda_ran_out/giiajdw/;1610116666;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EfficientPossession1;;;[];;;;text;t2_4qn8avji;False;False;[];;"1. Vinland saga -2. Fate/0 -3. Devil man crybaby -4. Tower of god -5. Dorohedoro - -Start with that.";False;False;;;;1610079836;;False;{};giiakr0;False;t3_ksux00;False;True;t3_ksux00;/r/anime/comments/ksux00/need_more_anime_to_watch_i_kinda_ran_out/giiakr0/;1610116690;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OldFartMaster10K;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_1rp2hdu9;False;False;[];;Um, you can't find anything else to watch? I can tell you're into shonen, but 1. Try reading some manga, and 2. Explore the different areas a bit. For example, Oregairu, Gabriel Dropout, Dragon Maid;False;False;;;;1610079840;;False;{};giiakzo;False;t3_ksux00;False;True;t3_ksux00;/r/anime/comments/ksux00/need_more_anime_to_watch_i_kinda_ran_out/giiakzo/;1610116694;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MusubiKazesaru;;;[];;;;text;t2_oh8ti;False;False;[];;"Here's my list. Watch anything 7 and up and you're in for a good time even some of my 6s are rather good. 8-10s are must watches. -https://myanimelist.net/animelist/MusubiKazesaru";False;False;;;;1610079934;;False;{};giiaqrp;False;t3_ksux00;False;True;t3_ksux00;/r/anime/comments/ksux00/need_more_anime_to_watch_i_kinda_ran_out/giiaqrp/;1610116794;1;True;False;anime;t5_2qh22;;0;[]; -[];;;throwawayonxmasday;;;[];;;;text;t2_4k8pz3kg;False;False;[];;If you liked angel beats, you’ll like Charlotte;False;False;;;;1610080154;;False;{};giib4h8;False;t3_ksux00;False;True;t3_ksux00;/r/anime/comments/ksux00/need_more_anime_to_watch_i_kinda_ran_out/giib4h8/;1610117043;0;True;False;anime;t5_2qh22;;0;[]; -[];;;larsonbp;;;[];;;;text;t2_dvfo7;False;False;[];;Have you heard of gundam?;False;False;;;;1610080220;;False;{};giib8kn;False;t3_ksux00;False;True;t3_ksux00;/r/anime/comments/ksux00/need_more_anime_to_watch_i_kinda_ran_out/giib8kn/;1610117117;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610080304;moderator;False;{};giibdpp;False;t3_ksv574;False;True;t3_ksv574;/r/anime/comments/ksv574/power_fantasy_about_guns/giibdpp/;1610117208;1;False;False;anime;t5_2qh22;;0;[]; -[];;;fuusionn;;;[];;;;text;t2_7voo3w5a;False;False;[];;Thanks everyone for all the recommendations I think I am gonna start with devil man crybaby and go from there. Plenty of show to watch not thanks a bunch everyone!!!;False;False;;;;1610080386;;False;{};giibit8;True;t3_ksux00;False;True;t3_ksux00;/r/anime/comments/ksux00/need_more_anime_to_watch_i_kinda_ran_out/giibit8/;1610117299;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610080405;;False;{};giibjza;False;t3_ksv5jr;False;True;t3_ksv5jr;/r/anime/comments/ksv5jr/if_you_could_make_it_to_where_a_anime_character/giibjza/;1610117323;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fuusionn;;;[];;;;text;t2_7voo3w5a;False;False;[];;I agree I would love to widden the types of anime I watch.;False;False;;;;1610080456;;False;{};giibn5d;True;t3_ksux00;False;True;t1_giiakzo;/r/anime/comments/ksux00/need_more_anime_to_watch_i_kinda_ran_out/giibn5d/;1610117377;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AmazingPatatas;;;[];;;;text;t2_7m9g7m5v;False;False;[];;"L - -The show definitely went downhill after he died.";False;False;;;;1610080471;;False;{};giibo3h;False;t3_ksv5jr;False;False;t3_ksv5jr;/r/anime/comments/ksv5jr/if_you_could_make_it_to_where_a_anime_character/giibo3h/;1610117395;14;True;False;anime;t5_2qh22;;0;[]; -[];;;fuusionn;;;[];;;;text;t2_7voo3w5a;False;False;[];;Great list this is gonna help a bunch;False;False;;;;1610080479;;False;{};giiboko;True;t3_ksux00;False;True;t1_giiaqrp;/r/anime/comments/ksux00/need_more_anime_to_watch_i_kinda_ran_out/giiboko/;1610117403;1;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;L in death note. I loved that mf;False;False;;;;1610080486;;False;{};giibp01;False;t3_ksv5jr;False;False;t3_ksv5jr;/r/anime/comments/ksv5jr/if_you_could_make_it_to_where_a_anime_character/giibp01/;1610117412;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fuusionn;;;[];;;;text;t2_7voo3w5a;False;False;[];;Watching devil man now thanks a bunch!!!;False;False;;;;1610080502;;False;{};giibpy0;True;t3_ksux00;False;True;t1_giiakr0;/r/anime/comments/ksux00/need_more_anime_to_watch_i_kinda_ran_out/giibpy0/;1610117429;1;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;Also, you better tag this post for spoilers;False;False;;;;1610080524;;False;{};giibra2;False;t3_ksv5jr;False;True;t3_ksv5jr;/r/anime/comments/ksv5jr/if_you_could_make_it_to_where_a_anime_character/giibra2/;1610117453;3;True;False;anime;t5_2qh22;;0;[]; -[];;;upholdingthefaith;;;[];;;;text;t2_8hhp4dei;False;False;[];;"Between L and Hughes - - -😪";False;False;;;;1610080536;;False;{};giibs06;False;t3_ksv5jr;False;False;t3_ksv5jr;/r/anime/comments/ksv5jr/if_you_could_make_it_to_where_a_anime_character/giibs06/;1610117466;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MusubiKazesaru;;;[];;;;text;t2_oh8ti;False;False;[];;No problem. I've seen a lot so there's plenty to go on, and if you want anything specific juts let me know. I can narrow it down for you.;False;False;;;;1610080582;;False;{};giibuso;False;t3_ksux00;False;False;t1_giiboko;/r/anime/comments/ksux00/need_more_anime_to_watch_i_kinda_ran_out/giibuso/;1610117517;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nickaltaccount;;;[];;;;text;t2_710jxik6;False;False;[];;Can I retroactively kill Choji in Naruto during the Sasuke retrieval arc? Would have been a lot more impactful if the item that was supposed to kill him, you know, killed him?;False;False;;;;1610080719;;False;{};giic343;False;t3_ksv5jr;False;False;t3_ksv5jr;/r/anime/comments/ksv5jr/if_you_could_make_it_to_where_a_anime_character/giic343/;1610117677;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Renatodep;;;[];;;;text;t2_153yam;False;False;[];;Kaori from your lie in April;False;False;;;;1610080749;;False;{};giic4sh;False;t3_ksv5jr;False;True;t3_ksv5jr;/r/anime/comments/ksv5jr/if_you_could_make_it_to_where_a_anime_character/giic4sh/;1610117706;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Yri4lf12;;;[];;;;text;t2_6bfipjd7;False;False;[];;Simone and Princess Tepelin. The rest can go die in a super massive black hole or something.;False;False;;;;1610080752;;False;{};giic4zf;False;t3_ksv5jr;False;True;t3_ksv5jr;/r/anime/comments/ksv5jr/if_you_could_make_it_to_where_a_anime_character/giic4zf/;1610117709;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Yri4lf12;;;[];;;;text;t2_6bfipjd7;False;False;[];;Then I won't get Mustang Vs Envy fight . :(;False;False;;;;1610080795;;False;{};giic7k3;False;t3_ksv5jr;False;True;t1_giibs06;/r/anime/comments/ksv5jr/if_you_could_make_it_to_where_a_anime_character/giic7k3/;1610117756;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;"[Texhnolyze spoilers](/s ""Ran"")";False;False;;;;1610081000;;False;{};giick3k;False;t3_ksv5jr;False;False;t3_ksv5jr;/r/anime/comments/ksv5jr/if_you_could_make_it_to_where_a_anime_character/giick3k/;1610117989;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Spc_otter;;;[];;;;text;t2_5c505qx0;False;False;[];;I was actually fuckins sad cause I thought he died when that happened;False;False;;;;1610081025;;False;{};giiclm0;False;t3_ksv5jr;False;False;t1_giic343;/r/anime/comments/ksv5jr/if_you_could_make_it_to_where_a_anime_character/giiclm0/;1610118016;3;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;True;[];;Oh god. The only anime scene to make me cry...;False;False;;;;1610081037;;False;{};giicmc0;False;t3_ksv5jr;False;True;t1_giic343;/r/anime/comments/ksv5jr/if_you_could_make_it_to_where_a_anime_character/giicmc0/;1610118029;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mimdahey;;;[];;;;text;t2_8ar8dwwp;False;False;[];;I like how u start this at episode 3, I watch episode 1-2 and dropped it;False;True;;comment score below threshold;;1610081162;;False;{};giictog;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giictog/;1610118170;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610081325;;False;{};giid3jj;False;t3_ksuv1z;False;True;t1_giictog;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giid3jj/;1610118351;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Paradoxer77;;;[];;;;text;t2_78tb2y44;False;False;[];;I like to watch it before the crazy arcs so I put it that way. However you watch it should not affect the other arcs.;False;False;;;;1610081413;;False;{};giid8qw;True;t3_ksuv1z;False;False;t1_giiair1;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giid8qw/;1610118450;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;those first 2 episodes were made to celebrate the manga getting an anime. The story starts with ep 3;False;False;;;;1610081668;;False;{};giido3w;False;t3_ksuv1z;False;False;t1_giictog;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giido3w/;1610118726;23;True;False;anime;t5_2qh22;;0;[]; -[];;;perfectbluu;;MAL;[];;https://myanimelist.net/profile/MoghyBear;dark;text;t2_12b79d;False;False;[];;I love how they reveal the twist right away rather than dragging it out, and the story kept surprising me (in good ways) as it progressed. Definitely one of the best anime originals that I've seen.;False;False;;;;1610081911;;False;{};giie22x;False;t3_ksvasj;False;True;t3_ksvasj;/r/anime/comments/ksvasj/i_just_watched_decadence_and_i_really_need_to/giie22x/;1610118987;3;True;False;anime;t5_2qh22;;0;[]; -[];;;-Corbeau;;;[];;;;text;t2_15p38j;False;False;[];;"Has anyone watched this shit recently? -I'm down to chat about it";False;False;;;;1610081954;;False;{};giie4km;True;t3_ksvk1w;False;False;t3_ksvk1w;/r/anime/comments/ksvk1w/rascal_does_not_dream_of_a_dreaming_girl_ending/giie4km/;1610119033;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Alik013;;;[];;;;text;t2_3c8mctnf;False;False;[];;"One piece - -Naruto";False;False;;;;1610081961;;False;{};giie4xc;False;t3_ksux00;False;True;t3_ksux00;/r/anime/comments/ksux00/need_more_anime_to_watch_i_kinda_ran_out/giie4xc/;1610119041;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NekoWafers;;;[];;;;text;t2_iau18;False;False;[];;[There is a fantastic Bocchi edit for this scene](https://redd.it/e006bq);False;False;;;;1610082052;;False;{};giieacw;False;t3_ksvfai;False;False;t3_ksvfai;/r/anime/comments/ksvfai/in_anime_once_youre_grabbed_by_the_face_you_are/giieacw/;1610119140;17;True;False;anime;t5_2qh22;;0;[]; -[];;;nullablezk;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/nuwa;light;text;t2_yqgib;False;False;[];;Honestly I thought it sucked. Just really confusing and unnecessarily complicated. I watched it together with 4-5 people and by the end of it we were all just making fun of the bullshit that was happening. Dunno if we ruined it for each other but there was some dumb stuff happening.;False;False;;;;1610082162;;False;{};giiegrm;False;t3_ksvk1w;False;True;t3_ksvk1w;/r/anime/comments/ksvk1w/rascal_does_not_dream_of_a_dreaming_girl_ending/giiegrm/;1610119260;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mimdahey;;;[];;;;text;t2_8ar8dwwp;False;False;[];;I can see that from this post, but I dropped it thinking that that was what the entire show was going to be like. Defnitely a bad idea on their part from a get more viewers stand point.;False;True;;comment score below threshold;;1610082215;;False;{};giiejrf;False;t3_ksuv1z;False;True;t1_giido3w;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiejrf/;1610119315;-16;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610082331;moderator;False;{};giieqai;False;t3_ksvoj7;False;True;t3_ksvoj7;/r/anime/comments/ksvoj7/kamitachi_ni_hirowareta_otoko_by_the_grace_of_the/giieqai/;1610119439;1;False;False;anime;t5_2qh22;;0;[]; -[];;;-Corbeau;;;[];;;;text;t2_15p38j;False;False;[];;"Oh yeah, I saw tons of holes, but I was ok suspending my disbelief (maybe bc I had binged the whole series right before and was thus more invested). - - -I love and hate the bitch.";False;False;;;;1610082491;;False;{};giiezl9;True;t3_ksvk1w;False;True;t1_giiegrm;/r/anime/comments/ksvk1w/rascal_does_not_dream_of_a_dreaming_girl_ending/giiezl9/;1610119610;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Its a fall anime? 7 episodes already dubbed is a good pacing, same of Crunchyroll for example, don't know about that series but usually is one episode per week;False;False;;;;1610082648;;False;{};giif8ji;False;t3_ksvoj7;False;True;t3_ksvoj7;/r/anime/comments/ksvoj7/kamitachi_ni_hirowareta_otoko_by_the_grace_of_the/giif8ji/;1610119779;0;True;False;anime;t5_2qh22;;0;[]; -[];;;KrishKetchum;;;[];;;;text;t2_3iygk2o1;False;False;[];;"Yes. It was on Holiday break. Episodes 8-12 will be released on January 10. - -[Use this MAL forum for future dub updates](https://myanimelist.net/forum/?topicid=1692966)";False;False;;;;1610082709;;False;{};giifc2h;False;t3_ksvoj7;False;True;t3_ksvoj7;/r/anime/comments/ksvoj7/kamitachi_ni_hirowareta_otoko_by_the_grace_of_the/giifc2h/;1610119851;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hekishokuneko;;;[];;;;text;t2_3834ffwy;False;False;[];;I’m still not over Neji’s death.;False;False;;;;1610082745;;False;{};giife4l;False;t3_ksv5jr;False;True;t3_ksv5jr;/r/anime/comments/ksv5jr/if_you_could_make_it_to_where_a_anime_character/giife4l/;1610119895;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;"> Episodes 8-12 will be released on January 10. - -thanks friend.";False;False;;;;1610082767;;False;{};giiffdf;False;t3_ksvoj7;False;True;t1_giifc2h;/r/anime/comments/ksvoj7/kamitachi_ni_hirowareta_otoko_by_the_grace_of_the/giiffdf/;1610119919;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BickDuttkiss;;;[];;;;text;t2_8haya685;False;False;[];;"i realize ""one per week"" but its been more than 2 weeks i think now but thanks for your input someone else answered correctly.";False;False;;;;1610082821;;False;{};giifibp;False;t3_ksvoj7;False;True;t1_giif8ji;/r/anime/comments/ksvoj7/kamitachi_ni_hirowareta_otoko_by_the_grace_of_the/giifibp/;1610119973;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iHitTheFlats;;;[];;;;text;t2_675aqynk;False;False;[];;i just wanted to see kite get into a good fight 😔;False;False;;;;1610082971;;False;{};giifqq3;False;t3_ksv5jr;False;True;t3_ksv5jr;/r/anime/comments/ksv5jr/if_you_could_make_it_to_where_a_anime_character/giifqq3/;1610120124;3;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;America in hetalia is less racist than in real life.;False;False;;;;1610083398;;False;{};giigejs;False;t3_ksvmyv;False;True;t3_ksvmyv;/r/anime/comments/ksvmyv/redditors_who_watched_any_of_the_hetalia_series/giigejs/;1610120589;0;True;False;anime;t5_2qh22;;0;[]; -[];;;isyasad;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/isyasad;light;text;t2_179g0h;False;False;[];;Same thing happened to me. I watched it with two other people and none of us liked it. The show had interesting problems and even when they solved problems in the show, it was still often bittersweet and an imperfect solution. The movie ending was not well-explained, thematically inconsistent with the show, and just came across as lazy pandering writing to me. There was no reason (either thematically or logically) that everyone would end up happy at the end of the movie, but it happened anyway.;False;False;;;;1610083416;;False;{};giigfjn;False;t3_ksvk1w;False;True;t1_giiegrm;/r/anime/comments/ksvk1w/rascal_does_not_dream_of_a_dreaming_girl_ending/giigfjn/;1610120609;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Poli_Sci_27;;;[];;;;text;t2_3vook9u8;False;False;[];;Not in my opinion.;False;False;;;;1610083526;;False;{};giiglsu;False;t3_ksvxul;False;False;t3_ksvxul;/r/anime/comments/ksvxul/does_watching_kyoto_saga_ruin_the_anime_original/giiglsu/;1610120732;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;No? Why would it?;False;False;;;;1610083606;;False;{};giigq69;False;t3_ksvxul;False;True;t3_ksvxul;/r/anime/comments/ksvxul/does_watching_kyoto_saga_ruin_the_anime_original/giigq69/;1610120812;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jaienabzanx;;;[];;;;text;t2_1sm164lx;False;False;[];;Because the anime deviates after episode 17 and it has an original ending. And kyoto saga is set after episode 17;False;False;;;;1610083698;;False;{};giigv8t;True;t3_ksvxul;False;True;t1_giigq69;/r/anime/comments/ksvxul/does_watching_kyoto_saga_ruin_the_anime_original/giigv8t/;1610120906;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jaienabzanx;;;[];;;;text;t2_1sm164lx;False;False;[];;"Also, should I watch the movie? -Does it follow season 1 or 2?";False;False;;;;1610083737;;False;{};giigxcu;True;t3_ksvxul;False;True;t1_giiglsu;/r/anime/comments/ksvxul/does_watching_kyoto_saga_ruin_the_anime_original/giigxcu/;1610120946;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;Wait, what is this about? I thought this was about Rurouni Kenshin;False;False;;;;1610083860;;False;{};giih41l;False;t3_ksvxul;False;True;t1_giigv8t;/r/anime/comments/ksvxul/does_watching_kyoto_saga_ruin_the_anime_original/giih41l/;1610121070;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Adealow;;;[];;;;text;t2_qpdjd;False;False;[];;thank you, I don't give a shit about their plot but their comedy is a top tier;False;True;;comment score below threshold;;1610084071;;False;{};giihfhl;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giihfhl/;1610121298;-18;True;False;anime;t5_2qh22;;0;[]; -[];;;Somer-_-;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Somer-_-;light;text;t2_95bkc;False;False;[];;A lot of episodes in 2006 are filler.;False;False;;;;1610084287;;False;{};giihrcq;False;t3_ksuv1z;False;True;t1_giid3jj;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giihrcq/;1610121530;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610084325;;False;{};giihtfo;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giihtfo/;1610121566;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610084334;moderator;False;{};giihtza;False;t3_ksw6s0;False;True;t3_ksw6s0;/r/anime/comments/ksw6s0/does_anyone_know_who_this_is_its_been_bugging_me/giihtza/;1610121576;1;False;False;anime;t5_2qh22;;0;[]; -[];;;sick_rock;;;[];;;;text;t2_860c8pn5;False;False;[];;I have been hearing Final and Gintama together for a long time. What's the actual deal?;False;False;;;;1610084442;;False;{};giihzvq;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giihzvq/;1610121689;44;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;They are talking about Blue Exorcist.;False;False;;;;1610084454;;False;{};giii0jm;False;t3_ksvxul;False;True;t1_giih41l;/r/anime/comments/ksvxul/does_watching_kyoto_saga_ruin_the_anime_original/giii0jm/;1610121701;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tadabito;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Nephren/;light;text;t2_wa1fmkv;False;False;[];;[Izumi Sagiri](https://anidb.net/character/80893) from Eromanga Sensei;False;False;;;;1610084491;;False;{};giii2fc;False;t3_ksw6s0;False;True;t3_ksw6s0;/r/anime/comments/ksw6s0/does_anyone_know_who_this_is_its_been_bugging_me/giii2fc/;1610121738;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Byakko168;;;[];;;;text;t2_5b903zap;False;False;[];;Sagiri from Eromanga-sensei;False;False;;;;1610084507;;False;{};giii3ay;False;t3_ksw6s0;False;True;t3_ksw6s0;/r/anime/comments/ksw6s0/does_anyone_know_who_this_is_its_been_bugging_me/giii3ay/;1610121755;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"Just watch season 1, then the movie, then watch the later s2. It will undo a lot of the ending of s1 but thats fine, just watch and enjoy nd try to keep up with where the split happens in the story. - -Its essentially a Fullmetal Alchemist and Fullmetal Alchemist Brotherhood situation. You can enjoy both but just know 1 is more accurate. - -[](#meguminthumbsup)";False;False;;;;1610084528;;False;{};giii4ej;False;t3_ksvxul;False;True;t3_ksvxul;/r/anime/comments/ksvxul/does_watching_kyoto_saga_ruin_the_anime_original/giii4ej/;1610121777;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MoneyMakerMaster;;;[];;;;text;t2_b7zxtmh;False;False;[];;Time for the upper MAL rankings to get [Gintama'd](https://www.urbandictionary.com/define.php?term=Gintama%27d) by one last entry;False;False;;;;1610084609;;False;{};giii8pi;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giii8pi/;1610121863;510;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610085051;;False;{};giiiwel;False;t3_ksv5jr;False;True;t3_ksv5jr;/r/anime/comments/ksv5jr/if_you_could_make_it_to_where_a_anime_character/giiiwel/;1610122313;1;True;False;anime;t5_2qh22;;0;[]; -[];;;danny18wrx;;;[];;;;text;t2_74zifzz5;False;False;[];;You know I never thought of that but man that would indeed make it better;False;False;;;;1610085068;;False;{};giiixc1;False;t3_ksv5jr;False;True;t1_giic343;/r/anime/comments/ksv5jr/if_you_could_make_it_to_where_a_anime_character/giiixc1/;1610122331;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GhostOfLight;;;[];;;;text;t2_go8xe;False;False;[];;"I don't think they were looking at it form a get more viewers standpoint. They were adapting a hugely popular manga which basically guaranteed success. The first two episodes also aired on the same day and in a time before streaming was massive, which probably meant they weren't really relying on the first impressions people got from those episodes. - -And 300 something episodes later, I guess it worked out alright for them.";False;False;;;;1610085128;;False;{};giij0ms;False;t3_ksuv1z;False;False;t1_giiejrf;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giij0ms/;1610122399;15;True;False;anime;t5_2qh22;;0;[]; -[];;;jaienabzanx;;;[];;;;text;t2_1sm164lx;False;False;[];;Sorry i forgot to add the name of the anime;False;False;;;;1610085189;;False;{};giij3xo;True;t3_ksvxul;False;True;t1_giih41l;/r/anime/comments/ksvxul/does_watching_kyoto_saga_ruin_the_anime_original/giij3xo/;1610122468;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jaienabzanx;;;[];;;;text;t2_1sm164lx;False;False;[];;I got to know season 1 deviates from the manga after finishing it lol.;False;False;;;;1610085253;;False;{};giij7d7;True;t3_ksvxul;False;True;t1_giii4ej;/r/anime/comments/ksvxul/does_watching_kyoto_saga_ruin_the_anime_original/giij7d7/;1610122538;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Espada_6;;;[];;;;text;t2_sb5ghaa;False;False;[];;Not really. What kind of fool drops something after the first two episodes?;False;False;;;;1610085368;;False;{};giijdfo;False;t3_ksuv1z;False;False;t1_giiejrf;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giijdfo/;1610122651;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;Nah it goes a way different direction. It's pretty rushed but it's fine. Just be aware of when S2 takes place;False;False;;;;1610085411;;False;{};giijfow;False;t3_ksvxul;False;True;t3_ksvxul;/r/anime/comments/ksvxul/does_watching_kyoto_saga_ruin_the_anime_original/giijfow/;1610122693;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Hetalia is trashy fujoshi bait and nazis are not like they are portrayed in the anime;False;False;;;;1610085540;;False;{};giijmhq;False;t3_ksvmyv;False;True;t3_ksvmyv;/r/anime/comments/ksvmyv/redditors_who_watched_any_of_the_hetalia_series/giijmhq/;1610122820;0;True;False;anime;t5_2qh22;;0;[]; -[];;;cojoB_;;;[];;;;text;t2_27b35u6d;False;False;[];;After starting in September I got to the 2011 part in December. Didn't realize it would take 200 episodes to stop using 4:3;False;False;;;;1610086056;;False;{};giikd2z;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giikd2z/;1610123319;855;True;False;anime;t5_2qh22;;0;[]; -[];;;cxxper01;;;[];;;;text;t2_14lyjl;False;False;[];;Yeah I am legit confused about the ending, but at least shoko got saved;False;False;;;;1610086330;;False;{};giikqkv;False;t3_ksvk1w;False;True;t3_ksvk1w;/r/anime/comments/ksvk1w/rascal_does_not_dream_of_a_dreaming_girl_ending/giikqkv/;1610123572;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tradaaa;;MAL;[];;myanimelist.net/animelist/tradaaa;dark;text;t2_f9je6;False;False;[];;I feel like that's what make Gintama.. a Gintama. They are very different than any anime that they put filler for the first 2 episodes;False;False;;;;1610086599;;False;{};giil3zr;False;t3_ksuv1z;False;True;t1_giiejrf;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giil3zr/;1610123821;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Stealth_Robot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/StealthRobot/animelist;light;text;t2_14bta3;False;False;[];;I binged it;False;False;;;;1610086629;;False;{};giil5fh;False;t3_ksuv1z;False;False;t1_gii9nnz;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giil5fh/;1610123847;45;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610086652;moderator;False;{};giil6m2;False;t3_kswqkw;False;True;t3_kswqkw;/r/anime/comments/kswqkw/just_finished_watching_in_this_corner_of_the_world/giil6m2/;1610123871;1;False;False;anime;t5_2qh22;;0;[]; -[];;;IStandByJesus;;;[];;;;text;t2_pos5wsj;False;False;[];;Burner;False;False;;;;1610086964;;False;{};giilljz;False;t3_ksuv1z;False;False;t1_giil5fh;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giilljz/;1610124157;13;True;False;anime;t5_2qh22;;0;[]; -[];;;WACS_On;;;[];;;;text;t2_notm65o;False;False;[];;"Can't remember exactly which episode it was, but I remember them doing a parody of some sort of daytime television show with a weird theme song that pointed out something to the effect of ""why the hell are we still in 4:3 in this day and age."" - -Gintama is the king of meta humor, with Saiki K being the next closest competitor. The best part is that the 2 series acknowledged each other in their sharing of a time slot";False;False;;;;1610086964;;False;{};giillk6;False;t3_ksuv1z;False;False;t1_giikd2z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giillk6/;1610124157;573;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Agree. Watching SoL afterwards relieves the stress built up during the day.;False;False;;;;1610087009;;False;{};giilnr4;False;t3_kswsf8;False;False;t3_kswsf8;/r/anime/comments/kswsf8/nothing_beats_the_happiness_of_watch_slice_of_life/giilnr4/;1610124197;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LOTRfreak101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LOTRfreak101;light;text;t2_opd6l;False;False;[];;"[Akame ga kill](/s ""Scheele. not because I like her, but the opposite. her living meant that she would have made the choice to take the fraction of a second to kill seryuu that she needed rather than turning around and running all the way to save mine when that would have been automatically achieved by killing seryuu. even if not, seryuu was such an awful person it still would have been a decent trade off, even if mine was the shows best girl. it's would have led events to be wildly different for the show (I heard the manga is different but idk if that part is). scheele is in my opinion single handedly responsible for essentially every death of the assassins by being so stupid."")";False;False;;;;1610087017;;False;{};giilo2h;False;t3_ksv5jr;False;True;t3_ksv5jr;/r/anime/comments/ksv5jr/if_you_could_make_it_to_where_a_anime_character/giilo2h/;1610124203;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FuntasticoReddit;;;[];;;;text;t2_44rgdkne;False;False;[];;Isn't konosuba isekai/comedy?;False;False;;;;1610087179;;False;{};giilvq3;False;t3_kswsf8;False;False;t3_kswsf8;/r/anime/comments/kswsf8/nothing_beats_the_happiness_of_watch_slice_of_life/giilvq3/;1610124355;16;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;"Wait, I always thought that enchousen is just a rerun with new op and ed and skipped it altogether. Is it really worth, watching? - -FYI, I don't mind if it's filler as long as it's new material not covered in other episodes. - -Edit: one minute later and I realised that the rerun is called as Yorinuki Gintama. Nevermind my comment then, it turns out I've watched enchousen too lol.";False;False;;;;1610087192;;False;{};giilwd2;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giilwd2/;1610124366;4;True;False;anime;t5_2qh22;;0;[]; -[];;;IIILewis97III;;MAL;[];;http://myanimelist.net/animelist/IIILewis97III;dark;text;t2_brc8w;False;False;[];;Probably be a stupid question due to the name of the episodes but does the upcoming Gintama The Semi Final need to be watched before the Final?;False;False;;;;1610087221;;False;{};giilxri;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giilxri/;1610124392;74;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;Wtf lol;False;False;;;;1610087253;;False;{};giilzat;False;t3_ksuv1z;False;False;t1_giii8pi;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giilzat/;1610124420;60;True;False;anime;t5_2qh22;;0;[]; -[];;;Watchadoinfoo;;;[];;;;text;t2_g13gr;False;False;[];;This movie encapsulates the last arc of the manga;False;False;;;;1610087429;;False;{};giim7hm;False;t3_ksuv1z;False;False;t1_giihzvq;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giim7hm/;1610124575;54;True;False;anime;t5_2qh22;;0;[]; -[];;;exolomus;;MAL;[];;http://myanimelist.net/animelist/exolomus;dark;text;t2_mfdea;False;False;[];;">Don't binge watch gintama because the starting episodes are quite slow and you will get burned out watching it. - -That's what happened to me. I binged until Gintama° and even though I love the series, I haven't followed it since.";False;False;;;;1610087597;;False;{};giimfcj;False;t3_ksuv1z;False;False;t1_gii9nnz;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giimfcj/;1610124730;17;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;"Subaru from Re:Zero, just to see what would happen. Actually there's a video out there of just the ""Correct"" loop with all the death loops cut out, so it might look like that.";False;False;;;;1610087621;;False;{};giimgha;False;t3_ksv5jr;False;True;t3_ksv5jr;/r/anime/comments/ksv5jr/if_you_could_make_it_to_where_a_anime_character/giimgha/;1610124750;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610087678;;False;{};giimj93;False;t3_ksuv1z;False;True;t1_giilxri;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giimj93/;1610124803;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;You forgot the 2 semi final episodes to watch before the final movie;False;False;;;;1610088028;;False;{};giimzji;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giimzji/;1610125104;43;True;False;anime;t5_2qh22;;0;[]; -[];;;IamNotBrash;;;[];;;;text;t2_4aydi0ej;False;False;[];;Maid-sama is a good rom com, as well as monthly girls Nozaki-kun but these are the only ones I can think of off the top of my head.;False;False;;;;1610088151;;False;{};giin559;False;t3_kswy22;False;True;t3_kswy22;/r/anime/comments/kswy22/rom_com_wholesome_or_harem_animes/giin559/;1610125209;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Marc_Lim, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610088436;moderator;False;{};giini46;False;t3_ksx5ev;False;True;t3_ksx5ev;/r/anime/comments/ksx5ev/sad_romance_anime_recommendations/giini46/;1610125467;1;False;False;anime;t5_2qh22;;0;[]; -[];;;diceman89;;;[];;;;text;t2_9p4fh;False;False;[];;We don't really know. It's a prequel but being released after the movie.;False;False;;;;1610088453;;False;{};giiniwp;False;t3_ksuv1z;False;False;t1_giilxri;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiniwp/;1610125482;33;True;False;anime;t5_2qh22;;0;[]; -[];;;Mashu009;;;[];;;;text;t2_5tl07;False;False;[];;Don’t really feel it’s underrated. It’s a big genre;False;False;;;;1610088474;;False;{};giinjux;False;t3_kswsf8;False;False;t3_kswsf8;/r/anime/comments/kswsf8/nothing_beats_the_happiness_of_watch_slice_of_life/giinjux/;1610125501;8;True;False;anime;t5_2qh22;;0;[]; -[];;;internetpersonanona;;;[];;;;text;t2_5w6w1cap;False;False;[];;"given is pretty sad, and the music is good - -also try piano in the forest, or momento mori it might be under, very sad music anime - -and parasite the maxim is defintely a sad scenario, its a horror type show - -and tenga toppen gurran lagen makes me cry every time, in the manliest way";False;False;;;;1610088482;;False;{};giink8c;False;t3_ksx5ev;False;True;t3_ksx5ev;/r/anime/comments/ksx5ev/sad_romance_anime_recommendations/giink8c/;1610125508;2;True;False;anime;t5_2qh22;;0;[]; -[];;;justinCandy;;;[];;;;text;t2_fkq0o;False;False;[];;"https://www.reddit.com/r/funimation/comments/ic9tve/im_yuzuru_tachikawa_director_of_decadence_ama/ - -You may be interested in this AMA";False;False;;;;1610088489;;False;{};giinkib;False;t3_ksvasj;False;True;t3_ksvasj;/r/anime/comments/ksvasj/i_just_watched_decadence_and_i_really_need_to/giinkib/;1610125514;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bbharukaa;;;[];;;;text;t2_4ne3c4nt;False;False;[];;definitely a bit of sol mixed in;False;False;;;;1610088548;;False;{};giinn6g;True;t3_kswsf8;False;True;t1_giilvq3;/r/anime/comments/kswsf8/nothing_beats_the_happiness_of_watch_slice_of_life/giinn6g/;1610125564;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bbharukaa;;;[];;;;text;t2_4ne3c4nt;False;False;[];;probably, you're somewhat right though, underrated probably isn't the right term;False;False;;;;1610088596;;False;{};giinpc9;True;t3_kswsf8;False;True;t1_giinjux;/r/anime/comments/kswsf8/nothing_beats_the_happiness_of_watch_slice_of_life/giinpc9/;1610125603;2;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;Precure ED CG.;False;False;;;;1610088639;;False;{};giinrai;False;t3_ksx5yz;False;False;t3_ksx5yz;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/giinrai/;1610125640;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610088677;moderator;False;{};giint1h;False;t3_ksx7ea;False;True;t3_ksx7ea;/r/anime/comments/ksx7ea/can_anyone_tell_me_who_this_is_and_where_hes_from/giint1h/;1610125672;1;False;False;anime;t5_2qh22;;0;[]; -[];;;XLightThief;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/frozen_lights;light;text;t2_5o80b;False;False;[];;"White Album 2 - -Your Lie In April";False;False;;;;1610088763;;False;{};giinwv3;False;t3_ksx5ev;False;True;t3_ksx5ev;/r/anime/comments/ksx5ev/sad_romance_anime_recommendations/giinwv3/;1610125743;3;False;False;anime;t5_2qh22;;0;[]; -[];;;phoenixwaller;;;[];;;;text;t2_34autsr9;False;False;[];;"Your Lie in April - -Kids on the Slope has it's moments, but not as sad as some. - -And just because I recced it earlier, it's live action but based on a manga: Last Quarter. It's definitely a tragic love story";False;False;;;;1610088769;;False;{};giinx66;False;t3_ksx5ev;False;True;t3_ksx5ev;/r/anime/comments/ksx5ev/sad_romance_anime_recommendations/giinx66/;1610125749;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mashu009;;;[];;;;text;t2_5tl07;False;False;[];;Watch the movie;False;False;;;;1610088835;;False;{};giio04z;False;t3_ksvk1w;False;True;t3_ksvk1w;/r/anime/comments/ksvk1w/rascal_does_not_dream_of_a_dreaming_girl_ending/giio04z/;1610125804;0;True;False;anime;t5_2qh22;;0;[]; -[];;;androiduser243;;;[];;;;text;t2_3g8rexdf;False;False;[];;"White Album 2 is not just my favorite romance anime, but it's one of my favorite animes period (and I'm an action guy). Huge underrated gem IMO. - -Don't get confused by the ""2."" It's completely seperate from the first White Album, which is an entirely different show (and is not that good). The only similarity they share is that they take place in the same universe (albeit 30 years apart).";False;False;;;;1610088864;;False;{};giio1fk;False;t3_ksx5ev;False;False;t3_ksx5ev;/r/anime/comments/ksx5ev/sad_romance_anime_recommendations/giio1fk/;1610125831;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AGN30;;;[];;;;text;t2_77ec0pka;False;False;[];;This is the MC from Tokyo Ghoul I think.;False;False;;;;1610088939;;False;{};giio4su;False;t3_ksx7ea;False;True;t3_ksx7ea;/r/anime/comments/ksx7ea/can_anyone_tell_me_who_this_is_and_where_hes_from/giio4su/;1610125895;1;True;False;anime;t5_2qh22;;0;[]; -[];;;leapo9;;skip7;[];;;dark;text;t2_5zz3b29m;False;False;[];;Where can I find more info;False;False;;;;1610088948;;False;{};giio579;False;t3_ksx8uy;False;True;t3_ksx8uy;/r/anime/comments/ksx8uy/something_might_die_in_the_va_commuity/giio579/;1610125902;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ilyhiro;;;[];;;;text;t2_8waityyo;False;False;[];;Really? I was thinking that but it doesn’t really look like him compared to the manga versions of him that I’ve seen;False;False;;;;1610088997;;False;{};giio7e9;False;t3_ksx7ea;False;True;t1_giio4su;/r/anime/comments/ksx7ea/can_anyone_tell_me_who_this_is_and_where_hes_from/giio7e9/;1610125944;1;True;False;anime;t5_2qh22;;0;[]; -[];;;venom789123;;;[];;;;text;t2_58ye39j7;False;False;[];;[https://twitter.com/SoCassandra/status/1347427456517431300](https://twitter.com/SoCassandra/status/1347427456517431300);False;False;;;;1610089007;;False;{};giio7u9;True;t3_ksx8uy;False;True;t1_giio579;/r/anime/comments/ksx8uy/something_might_die_in_the_va_commuity/giio7u9/;1610125954;3;True;False;anime;t5_2qh22;;0;[]; -[];;;VeryFunnyValentine;;;[];;;;text;t2_4uph3tsh;False;True;[];;K-on is masterpiece and arguably the very best anime ever made;False;False;;;;1610089055;;False;{};giio9z3;False;t3_kswsf8;False;True;t3_kswsf8;/r/anime/comments/kswsf8/nothing_beats_the_happiness_of_watch_slice_of_life/giio9z3/;1610125994;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610089070;;False;{};giioamt;False;t3_ksx8uy;False;True;t1_giio579;/r/anime/comments/ksx8uy/something_might_die_in_the_va_commuity/giioamt/;1610126006;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OldPurpose1276;;;[];;;;text;t2_93o5yua7;False;False;[];;Attack on titan s4;False;True;;comment score below threshold;;1610089123;;False;{};giiocww;False;t3_ksx5yz;False;True;t3_ksx5yz;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/giiocww/;1610126049;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;AGN30;;;[];;;;text;t2_77ec0pka;False;False;[];;"Maybe its a fanart or something. - -Where did you get this from?";False;False;;;;1610089132;;False;{};giiodao;False;t3_ksx7ea;False;True;t1_giio7e9;/r/anime/comments/ksx7ea/can_anyone_tell_me_who_this_is_and_where_hes_from/giiodao/;1610126057;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi BakarinaLovesMaria, it looks like you might be interested in hosting a rewatch! [There's a longer guide on the wiki](https://www.reddit.com/r/anime/wiki/successfulrewatchguide) but here's some basic advice on how to make a good rewatch happen: - -* Include **basic information about the anime** such as a description for those that haven't heard of it as well as where it can be watched (if legally available). - -* Specify a **date and time** that rewatch threads will be posted. Consistency is good! - -* Check for **[previous rewatches](https://www.reddit.com/r/anime/wiki/rewatches)**. It's generally advised to wait a year between rewatches of the same anime. - -* If you want to have a rewatch for multiple anime, they should be **thematically connected**. You can also hold multiple unrelated rewatches if they aren't. - -* Ensuring **enough people are interested** is important. If only a few users say they *might* participate, you may end up with no one commenting once it starts. - -[](#bot-chan) - -I hope this helps! You may also want to talk to users that have hosted rewatches before for extra advice, also listed [on the rewatch wiki](https://www.reddit.com/r/anime/wiki/rewatches). - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610089139;moderator;False;{};giiodlw;False;t3_ksxavu;False;False;t3_ksxavu;/r/anime/comments/ksxavu/have_you_ever_rewatched_a_show_and_found_out_it/giiodlw/;1610126063;1;False;False;anime;t5_2qh22;;0;[]; -[];;;BakarinaLovesMaria;;;[];;;;text;t2_7aztnfnj;False;False;[];;My bad that was a Miss-tag. I meant to put it in discussion 😅;False;False;;;;1610089192;;False;{};giiofw1;True;t3_ksxavu;False;True;t1_giiodlw;/r/anime/comments/ksxavu/have_you_ever_rewatched_a_show_and_found_out_it/giiofw1/;1610126106;0;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;But not all slice of life is happy;False;False;;;;1610089250;;False;{};giioicu;False;t3_kswsf8;False;True;t3_kswsf8;/r/anime/comments/kswsf8/nothing_beats_the_happiness_of_watch_slice_of_life/giioicu/;1610126154;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;Link?;False;False;;;;1610089252;;False;{};giioifs;False;t3_ksx5yz;False;True;t1_giinrai;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/giioifs/;1610126155;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kmattmebro;;;[];;;;text;t2_gvxts;False;False;[];;"Kaguya-Sama is a little out-there as a romcom, but excellent nonetheless. - -Jitsu wa, Watashi wa (My Monster Secret) is a personal favorite as a more typical goofy harem romcom, but I'm told the anime doesn't do it justice.";False;False;;;;1610089260;;False;{};giioisd;False;t3_kswy22;False;True;t3_kswy22;/r/anime/comments/kswy22/rom_com_wholesome_or_harem_animes/giioisd/;1610126162;2;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Violet Evergarden, that parasol scene was a thing of beauty.;False;False;;;;1610089288;;False;{};giiojzu;False;t3_ksx5yz;False;False;t3_ksx5yz;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/giiojzu/;1610126186;24;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;[Here's](https://youtu.be/FqHR4xywsHs) Healin' Good's first ED.;False;False;;;;1610089315;;False;{};giiol7a;False;t3_ksx5yz;False;True;t1_giioifs;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/giiol7a/;1610126209;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ConclusionIcy2485;;;[];;;;text;t2_8s41vymw;False;False;[];;"Boarding school Juliet. -Masamune kun's revenge. -The pet girl of sakurasou.";False;False;;;;1610089343;;False;{};giiomh8;False;t3_kswy22;False;True;t3_kswy22;/r/anime/comments/kswy22/rom_com_wholesome_or_harem_animes/giiomh8/;1610126231;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Backupusername;;MAL;[];;http://myanimelist.net/profile/Backupusername;dark;text;t2_4fb2a;False;True;[];;It's actually ending for real this time. The manga ended months ago, and this is the anime adaptation of that.;False;False;;;;1610089415;;False;{};giiopjh;False;t3_ksuv1z;False;False;t1_giihzvq;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiopjh/;1610126289;72;True;False;anime;t5_2qh22;;0;[]; -[];;;RochHoch;;;[];;;;text;t2_ideh3;False;False;[];;"And for anyone seeing this and going ""eww filler"" I'd honestly recommend not skipping most of it. Gintama filler can actually be pretty good. - -Only the first two episodes (and I think there's a recap episode or two in there?) are worth skipping IMO";False;False;;;;1610089461;;False;{};giiorkl;False;t3_ksuv1z;False;False;t1_gii9nnz;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiorkl/;1610126330;255;True;False;anime;t5_2qh22;;0;[]; -[];;;alfaindomart;;;[];;;;text;t2_g9gs6;False;False;[];;I stopped at the middle of soul silver because i heard the manga is better for that arc. Is that true?;False;False;;;;1610089480;;False;{};giiosd4;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiosd4/;1610126343;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Benthekarateboy;;;[];;;;text;t2_1thpf4i2;False;False;[];;Thank you! Will watch it after I finish certain anime series!;False;False;;;;1610089480;;False;{};giiosed;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiosed/;1610126344;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Star_Lux22;;;[];;;;text;t2_22d262q9;False;False;[];;Smh at these comments. Anyways, Hetalia is basically a parody about the stereotypes of countries, so I don’t really see a problem with it tbh. I’m not offended at how America is portrayed lol (though it has been a while since I’ve seen it).;False;False;;;;1610089485;;1610090650.0;{};giiosmi;False;t3_ksvmyv;False;True;t3_ksvmyv;/r/anime/comments/ksvmyv/redditors_who_watched_any_of_the_hetalia_series/giiosmi/;1610126349;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Arcus_Deer;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Arcus_Deer;dark;text;t2_12h2f3;False;False;[];;The answer is always going to be subjective, of course. Your choices are excellent as well, but here’s a few more you may or may not have seen. Hyouka (and most other Kyoani works), One Punch Man, Jin-rou, GitS, Spirited Away (and most other Ghibli works), the Cowboy Bebop movie, Sword of the Stranger, Kizumonogatari, End of Evangelion, Flip Flappers and FLCL are all incredible standouts imo.;False;False;;;;1610089580;;False;{};giiowpr;False;t3_ksx5yz;False;False;t3_ksx5yz;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/giiowpr/;1610126437;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Optimus2021;;;[];;;;text;t2_9pr9grj7;False;False;[];;"1. Kimi no na wa - -2. Garden of Words - -3. 5 centimetres per second - -4. Anohana- the flower we saw that day - -5. Clannad - -6. Clannad after story - -7. Kanon(2006) - -8. Angel Beats - -9. Your Lie in April - -10. Air - -11. A silent voice (koe no katachi) - -12.Plastic Memories - -13. Violet Evergarden - -14. Hotarubi no Mori e";False;False;;;;1610089665;;False;{};giip0bu;False;t3_ksx5ev;False;True;t3_ksx5ev;/r/anime/comments/ksx5ev/sad_romance_anime_recommendations/giip0bu/;1610126509;1;True;False;anime;t5_2qh22;;0;[]; -[];;;YsDivers;;;[];;;;text;t2_789if379;False;True;[];;"Redline - -Kara no Kyoukai movies - -Attack on Titan S3 (S2 colossal CGI sucked, S4 is nowhere as fluid or smooth, S1 didn't have enough hype scenes like Levi vs Beast/Levi runs from Kenny/Eren vs Reiner) - -Madoka Magica - -Honourable mentions to Ping Ping the Anination and Your Name";False;False;;;;1610089698;;False;{};giip1sj;False;t3_ksx5yz;False;True;t3_ksx5yz;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/giip1sj/;1610126555;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610089844;;False;{};giip82z;False;t3_ksxf5z;False;True;t3_ksxf5z;/r/anime/comments/ksxf5z/we_lost_a_voice_actor_tonight/giip82z/;1610126687;4;True;False;anime;t5_2qh22;;0;[]; -[];;;irldani;;;[];;;;text;t2_2n8mojht;False;False;[];;English;False;False;;;;1610089860;;False;{};giip8uc;False;t3_ksxf5z;False;True;t1_giip82z;/r/anime/comments/ksxf5z/we_lost_a_voice_actor_tonight/giip8uc/;1610126700;6;True;False;anime;t5_2qh22;;0;[]; -[];;;RohanPravin1999;;;[];;;;text;t2_2d00qhpa;False;False;[];;Gintama filler *is* Gintama;False;False;;;;1610089948;;False;{};giipcle;False;t3_ksuv1z;False;False;t1_giiorkl;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giipcle/;1610126771;267;True;False;anime;t5_2qh22;;0;[]; -[];;;IIILewis97III;;MAL;[];;http://myanimelist.net/animelist/IIILewis97III;dark;text;t2_brc8w;False;False;[];;Yeah that's what has been confusing me. Since it's not that clear on MAL;False;False;;;;1610089954;;False;{};giipcvh;False;t3_ksuv1z;False;False;t1_giiniwp;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giipcvh/;1610126775;12;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610090030;;False;{};giipg6y;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giipg6y/;1610126842;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Iloveassyay, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610090031;moderator;False;{};giipg7y;False;t3_ksuv1z;False;True;t1_giipg6y;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giipg7y/;1610126842;0;False;False;anime;t5_2qh22;;0;[]; -[];;;RohanPravin1999;;;[];;;;text;t2_2d00qhpa;False;False;[];;Me too, I honestly couldn't stop. That was the last time I was able to watch 20+ eps a day;False;False;;;;1610090043;;False;{};giipgpu;False;t3_ksuv1z;False;False;t1_giil5fh;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giipgpu/;1610126851;22;True;False;anime;t5_2qh22;;0;[]; -[];;;partyfine;;;[];;;;text;t2_116m2i;False;False;[];;Friendly reminder to not be a dick and blow up VAs social media asking who it was. Apparently there are a lot of people who don't understand that tonight.;False;False;;;;1610090045;;False;{};giipgt9;False;t3_ksxf5z;False;True;t3_ksxf5z;/r/anime/comments/ksxf5z/we_lost_a_voice_actor_tonight/giipgt9/;1610126853;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Arcus_Deer;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Arcus_Deer;dark;text;t2_12h2f3;False;False;[];;"I thought the colossal cg was *far* worse in S3P2 than in S2, those wide shots were horrific... The first episode of season 3 is a masterclass in how to use cg backgrounds to elevate a scene though; the camera movements while Levi runs through the city are fantastic!";False;False;;;;1610090064;;False;{};giiphn2;False;t3_ksx5yz;False;False;t1_giip1sj;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/giiphn2/;1610126868;11;True;False;anime;t5_2qh22;;0;[]; -[];;;MN-Warrior;;;[];;;;text;t2_79pspv2p;False;False;[];;From a purely aesthetic view, I like Shinkai’s animations. I think Garden of Words looks the best.;False;False;;;;1610090114;;False;{};giipjtx;False;t3_ksx5yz;False;False;t3_ksx5yz;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/giipjtx/;1610126910;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Sinnaig;;;[];;;;text;t2_27rkwgdg;False;False;[];;That's how I learned about plastic nee-chan in the first place;False;False;;;;1610090121;;False;{};giipk4m;False;t3_ksvfai;False;False;t1_giieacw;/r/anime/comments/ksvfai/in_anime_once_youre_grabbed_by_the_face_you_are/giipk4m/;1610126916;5;True;False;anime;t5_2qh22;;0;[]; -[];;;irldani;;;[];;;;text;t2_2n8mojht;False;False;[];;oh yeah definitely. its very insensitive and people just don't seem to understand that they can't say who it is yet and to stop asking them.;False;False;;;;1610090132;;False;{};giipkm5;False;t3_ksxf5z;False;True;t1_giipgt9;/r/anime/comments/ksxf5z/we_lost_a_voice_actor_tonight/giipkm5/;1610126925;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AJTopisano;;;[];;;;text;t2_5dqjtbok;False;False;[];;GIVE THIS MAN AN AWARD...;False;False;;;;1610090159;;False;{};giiplps;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiplps/;1610126945;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610090164;;False;{};giiply1;False;t3_ksxavu;False;True;t3_ksxavu;/r/anime/comments/ksxavu/have_you_ever_rewatched_a_show_and_found_out_it/giiply1/;1610126949;1;True;False;anime;t5_2qh22;;0;[]; -[];;;partyfine;;;[];;;;text;t2_116m2i;False;False;[];;I love everyone in this community. Take care of each other!;False;False;;;;1610090180;;False;{};giipmm7;False;t3_ksxf5z;False;True;t1_giipkm5;/r/anime/comments/ksxf5z/we_lost_a_voice_actor_tonight/giipmm7/;1610126962;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Arcus_Deer;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Arcus_Deer;dark;text;t2_12h2f3;False;False;[];;"The background art in his movies are things of beauty; and Garden of Words had some incredible looking rain";False;False;;;;1610090198;;False;{};giipne2;False;t3_ksx5yz;False;False;t1_giipjtx;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/giipne2/;1610126977;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610090229;moderator;False;{};giipop2;False;t3_ksxj9t;False;True;t3_ksxj9t;/r/anime/comments/ksxj9t/dont_know_what_anime_to_watch/giipop2/;1610127002;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610090295;moderator;False;{};giiprit;False;t3_ksxjt7;False;True;t3_ksxjt7;/r/anime/comments/ksxjt7/is_inari_konkon_koi_iroha_season_2_completely/giiprit/;1610127060;3;False;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"I watched the original Fruits Basket when it came out and own it on dvd. - -It was okay but very lacking i felt. My friend was a big fan of the source back then. - -The reboot is a 1:1 remake of the original until it surpassed it and its been amazing. Its a full proper adaption. - -What sucks about the reboot? - -[](#whowouldathunkit)";False;False;;;;1610090395;;1610092559.0;{};giipvuq;False;t3_ksxk2m;False;False;t3_ksxk2m;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/giipvuq/;1610127142;5;True;False;anime;t5_2qh22;;0;[]; -[];;;boring_kun;;;[];;;;text;t2_6oh3fehe;False;False;[];;Mine fav slice of life are - march comes in like a lion, welcome to the nhk, barakamon, usagi drop (but the ending of manga is worst), natsume's book of friend, now planning to watch silver spoon;False;False;;;;1610090468;;False;{};giipyz7;False;t3_kswsf8;False;False;t3_kswsf8;/r/anime/comments/kswsf8/nothing_beats_the_happiness_of_watch_slice_of_life/giipyz7/;1610127208;5;True;False;anime;t5_2qh22;;0;[]; -[];;;TheFlyingButter;;;[];;;;text;t2_j5kl6;False;False;[];;I don't think the first two episodes are worth skipping personally, they were what really got me interested in the show;False;False;;;;1610090596;;False;{};giiq4g2;False;t3_ksuv1z;False;False;t1_giiorkl;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiq4g2/;1610127319;38;True;False;anime;t5_2qh22;;0;[]; -[];;;ShabiBoi;;;[];;;;text;t2_5imo8jqd;False;False;[];;I am gonna be sad when gintama ends I wish i could forgot and rewatch it one last time;False;False;;;;1610090608;;False;{};giiq4zg;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiq4zg/;1610127330;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Sodra;;MAL a-amq;[];;https://myanimelist.net/profile/sodra;dark;text;t2_5o34w;False;False;[];;Manga ended in 2015. Most anime don't get a second season.;False;False;;;;1610090617;;False;{};giiq5e5;False;t3_ksxjt7;False;False;t3_ksxjt7;/r/anime/comments/ksxjt7/is_inari_konkon_koi_iroha_season_2_completely/giiq5e5/;1610127338;4;True;False;anime;t5_2qh22;;0;[]; -[];;;blimpniffa;;;[];;;;text;t2_59obmhbb;False;False;[];;One punch man season 1 imo;False;False;;;;1610090620;;False;{};giiq5ii;False;t3_ksx5yz;False;True;t3_ksx5yz;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/giiq5ii/;1610127340;2;True;False;anime;t5_2qh22;;0;[]; -[];;;brokenjudge;;;[];;;;text;t2_7yhidk71;False;False;[];;i want this series to never end . also i want to pirate the movie since im broke but i want the producers of gintama to make profits;False;False;;;;1610090754;;False;{};giiqb7a;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiqb7a/;1610127447;14;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;S3 CGI sucked especially the [Colossal Titan](https://imgur.com/a/3UrD5oC) in both parts.;False;False;;;;1610090760;;False;{};giiqbfv;False;t3_ksx5yz;False;False;t1_giip1sj;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/giiqbfv/;1610127452;13;True;False;anime;t5_2qh22;;0;[]; -[];;;melcarba;;;[];;;;text;t2_ywnzr;False;False;[];;There was never a news about a season 2.;False;False;;;;1610090765;;False;{};giiqbna;False;t3_ksxjt7;False;True;t3_ksxjt7;/r/anime/comments/ksxjt7/is_inari_konkon_koi_iroha_season_2_completely/giiqbna/;1610127455;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Miidas-92;;MAL;[];;https://myanimelist.net/profile/Miidas;dark;text;t2_ja1jx;False;False;[];;"Best animated anime movies is indeed **Akira** and **Redline**. - -When it comes to anime shorts/MVs, I'd say **L'œil du cyclone** and **Gotcha** are the most impressive I've seen. - -For TV-anime I'd say **Ping Pong the Animation** is the most impressive 1-cour anime, **Space Dandy** most impressive 2-cour anime, while **Cardcaptor Sakura** is the most impressive for longer running anime.";False;False;;;;1610090772;;1610096016.0;{};giiqby5;False;t3_ksx5yz;False;False;t3_ksx5yz;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/giiqby5/;1610127461;7;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi buddawitness, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610090782;moderator;False;{};giiqcbd;False;t3_ksxngl;False;True;t3_ksxngl;/r/anime/comments/ksxngl/akudama_drive_has_made_me_feel_again/giiqcbd/;1610127468;1;False;False;anime;t5_2qh22;;0;[]; -[];;;phayzing;;;[];;;;text;t2_8qkl8g6s;False;False;[];;So long, mediaeval/modern/space samurai;False;False;;;;1610090806;;False;{};giiqdc7;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiqdc7/;1610127487;234;True;False;anime;t5_2qh22;;0;[]; -[];;;Rex_Eos;;;[];;;;text;t2_5oxgy;False;False;[];;How can the first 2 episodes of a show be filler? That's wild.;False;False;;;;1610090878;;False;{};giiqgel;False;t3_ksuv1z;False;False;t1_gii9nnz;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiqgel/;1610127545;49;True;False;anime;t5_2qh22;;0;[]; -[];;;ATargetFinderScrub;;ANI a-amq;[];;https://anilist.co/user/ATargetFinderScrub/animelist;dark;text;t2_5vo76d;False;False;[];;"Rising of the Shield Hero for me. Especially the earlier episodes, I felt incredibly frustrated at how Naofumi's story was being told and how very little progress was being made with him clearing his name up. I remembered hating episode 4 a lot watching it weekly and I said to myself ""why even bother with this show, if the guy we as the viewer knows is a good guy, is never allowed to succeed?"" - -On rewatch where I could binge more of it, I could appreciate the build up far more and episode 4 became one of my favorites as I could definitely see how it was meant to be used as a character development one for both Naofumi and Raph. 4 episodes really isn't that long in a 25 episode show, but watching it weekly took up a whole calendar month which probably led to a less enjoyable experience.";False;False;;;;1610090887;;False;{};giiqgrx;False;t3_ksxk2m;False;True;t3_ksxk2m;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/giiqgrx/;1610127552;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BakarinaLovesMaria;;;[];;;;text;t2_7aztnfnj;False;False;[];;Part of it is the same problem I have with brotherhood of blood. It has all the qualities of a one for one we make but it tells the stories poorly. To it on top of that none of the sad moments feel earned and every joke fell flat. Tohru is a completely different person. She’s gone from a tragic but lovable self-sacrificing flawed character with a good arc about self-respect to plane airhead. I couldn’t get past the reboot episode where Tohru goes back to her blood family because they treat it like a big thing when she’s barely been hanging out with the other main three for a weak. The Movements are over exaggerated because they want to show off their high budget and because of that the still shots that are supposed to stand out more are plane in comparison. It lacks comedic timing and likable characters and I could go on about this forever but I mostly want to reflect on the good parts of the original anime even though it’s missing a lot from the manga.;False;False;;;;1610090955;;False;{};giiqjmg;True;t3_ksxk2m;False;False;t1_giipvuq;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/giiqjmg/;1610127608;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;my__alt_;;;[];;;;text;t2_61t6nshf;False;False;[];;konosuba is pretty good;False;False;;;;1610090983;;False;{};giiqkss;False;t3_ksxj9t;False;False;t3_ksxj9t;/r/anime/comments/ksxj9t/dont_know_what_anime_to_watch/giiqkss/;1610127631;4;True;False;anime;t5_2qh22;;0;[]; -[];;;boring_kun;;;[];;;;text;t2_6oh3fehe;False;False;[];;"what if he say ""you know what, the cover is actually better than present""";False;False;;;;1610091109;;False;{};giiqq33;False;t3_ksxp2g;False;True;t3_ksxp2g;/r/anime/comments/ksxp2g/tomorrow_is_my_friends_birthday_and_his_favorite/giiqq33/;1610127742;1;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your submission has been removed. - -- This looks like it's - a single image. - This is a form of restricted content that isn't allowed as a full post on the sub. You might consider posting about this sort of thing in the [weekly Casual Discussion Fridays megathread](https://www.reddit.com/r/anime/search?q=title%3A%22Casual+Discussion+Fridays%22+subreddit%3Aanime+author%3AAnimeMod&restrict_sr=on&sort=new&t=week) if it applies. See [our rules page](https://www.reddit.com/r/anime/wiki/rules#wiki_restricted_content) for a full list of restricted content categories. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610091126;moderator;False;{};giiqqtc;False;t3_ksxp2g;False;True;t3_ksxp2g;/r/anime/comments/ksxp2g/tomorrow_is_my_friends_birthday_and_his_favorite/giiqqtc/;1610127756;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610091189;;False;{};giiqtbt;False;t3_ksxp2g;False;True;t3_ksxp2g;/r/anime/comments/ksxp2g/tomorrow_is_my_friends_birthday_and_his_favorite/giiqtbt/;1610127806;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kellerWB;;;[];;;;text;t2_5nct2zc8;False;False;[];;"He's wanted this for awhile so i think it will work out just fine😁, I'm worried tho he's gonna think it's a ""to pretty to break kinda thing""";False;False;;;;1610091228;;False;{};giiquxc;True;t3_ksxp2g;False;True;t1_giiqq33;/r/anime/comments/ksxp2g/tomorrow_is_my_friends_birthday_and_his_favorite/giiquxc/;1610127837;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thatShanksguy09;;;[];;;;text;t2_1j4pzlc9;False;False;[];;Semi Final is covering the comedy arcs that they couldn't adapt in the movie for pacing and/or time issues. These arcs would take place between Ep 367 of the anime and the movie. So, Id suggest to watch Semi Final first and then watch Gintama: The Final;False;False;;;;1610091359;;False;{};giir0g4;False;t3_ksuv1z;False;False;t1_giilxri;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giir0g4/;1610127945;78;True;False;anime;t5_2qh22;;0;[]; -[];;;Apex_Konchu;;;[];;;;text;t2_yrdsh;False;False;[];;They were more like OVAs, to celebrate the fact that it was getting an anime adaptation.;False;False;;;;1610091440;;False;{};giir3pi;False;t3_ksuv1z;False;False;t1_giiqgel;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giir3pi/;1610128010;84;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;"I have! Jojo part 1. - -My first time watching it, I thought it was kinda boring. But when I rewatched part 1 almost a year later, I loved it.";False;False;;;;1610091488;;False;{};giir5rt;False;t3_ksxavu;False;True;t3_ksxavu;/r/anime/comments/ksxavu/have_you_ever_rewatched_a_show_and_found_out_it/giir5rt/;1610128050;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HarbingerOfGachaHell;;;[];;;;text;t2_112g5tno;False;False;[];;"Is this a fucking joke? - -There's no such thing as watch order in Gintama. I have multiple friends who know as much as me about Gintama just from watching highlight clips.";False;False;;;;1610091587;;False;{};giir9vd;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giir9vd/;1610128126;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610091718;;1610092635.0;{};giirf5a;False;t3_ksx5yz;False;True;t3_ksx5yz;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/giirf5a/;1610128230;1;True;False;anime;t5_2qh22;;0;[]; -[];;;conflicter;;;[];;;;text;t2_eb844;False;False;[];;AwwwMG.... You are there best....est...ever.;False;False;;;;1610091765;;False;{};giirh3y;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giirh3y/;1610128265;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NickieBoy97;;;[];;;;text;t2_3hr85g0l;False;False;[];;Is it really the finale this time? I haven't watched the show in years but I remembered all the gags they did saying the show was ending or getting cancelled. Lol;False;False;;;;1610091767;;False;{};giirh6k;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giirh6k/;1610128267;2;True;False;anime;t5_2qh22;;0;[]; -[];;;roankun0;;;[];;;;text;t2_1l1acatr;False;False;[];;For the record, how many hours investment is this in total? Not sure if I'm ready to commit... *Nervously looks at huge anime backlog*;False;False;;;;1610091882;;False;{};giirlxt;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giirlxt/;1610128357;28;True;False;anime;t5_2qh22;;0;[]; -[];;;hitogomi911;;;[];;;;text;t2_83ec5qv5;False;False;[];;"Isekai Smartphone. At first I was put off by the ""I can do everything because God and have a smartphone"" without the bare minimum world building required. Later when I binge Watched it. It was fun and will gladly rewatch at a later time.";False;False;;;;1610091897;;1610092112.0;{};giirmlj;False;t3_ksxk2m;False;True;t3_ksxk2m;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/giirmlj/;1610128370;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NotCereal_;;;[];;;;text;t2_6cesagyh;False;False;[];;Gintama and AoT are literally the only animes that i watch just, everything. Ova, movie, specials, jump festa, even the freaking ads. Feeling both happy and sad now that Gintama's gonna end;False;False;;;;1610091909;;False;{};giirn45;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giirn45/;1610128380;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BakarinaLovesMaria;;;[];;;;text;t2_7aztnfnj;False;False;[];;Like on a ironic level?;False;False;;;;1610091941;;False;{};giirocq;True;t3_ksxk2m;False;False;t1_giirmlj;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/giirocq/;1610128405;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IIILewis97III;;MAL;[];;http://myanimelist.net/animelist/IIILewis97III;dark;text;t2_brc8w;False;False;[];;That clears things up. Thanks a lot dude!;False;False;;;;1610091956;;False;{};giiroz3;False;t3_ksuv1z;False;False;t1_giir0g4;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiroz3/;1610128417;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Channelistic;;;[];;;;text;t2_2svqmt8x;False;False;[];;i got pretty bored on the first 3 episodes of gintama, might decide to binge it again in the future;False;False;;;;1610091995;;False;{};giirqnb;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giirqnb/;1610128449;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610092044;moderator;False;{};giirso2;False;t3_ksxwt7;False;True;t3_ksxwt7;/r/anime/comments/ksxwt7/help_a_broke_weeb_try_and_watch_their_anime/giirso2/;1610128490;1;False;False;anime;t5_2qh22;;0;[]; -[];;;LS1k;;;[];;;;text;t2_4d7f5c2d;False;False;[];;Enjoyed it for the most part. Loved the characters and the visuals but lost interest when I found out there wasn’t a bigger mystery behind the kids and when the all the akudama died out;False;False;;;;1610092109;;False;{};giirvcy;False;t3_ksxngl;False;True;t3_ksxngl;/r/anime/comments/ksxngl/akudama_drive_has_made_me_feel_again/giirvcy/;1610128543;2;True;False;anime;t5_2qh22;;0;[]; -[];;;-Nivek;;;[];;;;text;t2_4euwu1zg;False;False;[];;I’m not familiar with the series, but I truly am sorry to hear that there will be a last movie to your long lasting franchise;False;False;;;;1610092144;;False;{};giirwsd;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giirwsd/;1610128570;57;True;False;anime;t5_2qh22;;0;[]; -[];;;jeygames;;;[];;;;text;t2_25479j5o;False;False;[];;Children of the Sea;False;False;;;;1610092196;;False;{};giiryv3;False;t3_ksx5yz;False;True;t3_ksx5yz;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/giiryv3/;1610128612;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaziezz;;;[];;;;text;t2_qyqfw;False;False;[];;"Recently rewatched kaleido star since I had the series on dvd. Probably haven’t watched it since maybe high school, so like 10 years ago, and I forgot how great it was. - -On the other side I rewatched outlaw star and it was just ok. Enjoyed it but I remember REALLY liking it when I was younger. - -I think fruits basket (the original) might be my next rewatch since I also have it on dvd (two sets somehow wtf...)";False;False;;;;1610092270;;False;{};giis1v7;False;t3_ksxavu;False;True;t3_ksxavu;/r/anime/comments/ksxavu/have_you_ever_rewatched_a_show_and_found_out_it/giis1v7/;1610128670;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dipshit42069;;;[];;;;text;t2_30tqri9e;False;False;[];;I watched in on and off until about ep 75, got hooked and finished it in a few weeks, except for silver soul bacause I didnt want it to end for me yet;False;False;;;;1610092296;;False;{};giis2wv;False;t3_ksuv1z;False;False;t1_giimfcj;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giis2wv/;1610128689;6;True;False;anime;t5_2qh22;;0;[]; -[];;;hitogomi911;;;[];;;;text;t2_83ec5qv5;False;False;[];;Not exactly. I love for what it is. Mindless fun. idc about plot in these types of things.;False;False;;;;1610092356;;False;{};giis5dm;False;t3_ksxk2m;False;True;t1_giirocq;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/giis5dm/;1610128734;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PotentialSuspect453;;;[];;;;text;t2_872fz37h;False;False;[];;I wish it would carry on forever.;False;False;;;;1610092385;;False;{};giis6k3;False;t3_ksuv1z;False;False;t1_giiq4zg;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giis6k3/;1610128756;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Black_Reaper_Rap;;;[];;;;text;t2_421ez04j;False;False;[];;Cruncyroll maybe? They have some parts behind premium too and idk about the promised neverland but give it a shot. Can't hurt-;False;False;;;;1610092390;;False;{};giis6r7;False;t3_ksxwt7;False;True;t3_ksxwt7;/r/anime/comments/ksxwt7/help_a_broke_weeb_try_and_watch_their_anime/giis6r7/;1610128759;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Deanomac2010;;;[];;;;text;t2_7w8w2jz4;False;False;[];;"I watched it all in the last 4 months :) first time watching! - -Glad the movie out in Japan any idea when its out in America ? :)";False;False;;;;1610092403;;False;{};giis79r;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giis79r/;1610128768;25;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610092421;moderator;False;{};giis7zj;False;t3_ksxzpf;False;True;t3_ksxzpf;/r/anime/comments/ksxzpf/repost_friends_birthday_tomorrow_and_his_favorite/giis7zj/;1610128781;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Micka7;;;[];;;;text;t2_1wapd1o5;False;False;[];;Oh hell yeah, I’m almost at the first movie;False;False;;;;1610092433;;False;{};giis8gf;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giis8gf/;1610128790;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610092455;;False;{};giis9av;False;t3_ksxwt7;False;True;t3_ksxwt7;/r/anime/comments/ksxwt7/help_a_broke_weeb_try_and_watch_their_anime/giis9av/;1610128807;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;GreasyWendigo;;;[];;;;text;t2_2jjyoaau;False;False;[];;I believe it is going to be Johnny Yong Bosch from what I have gathered online.;False;False;;;;1610092467;;False;{};giis9te;False;t3_ksxf5z;False;True;t3_ksxf5z;/r/anime/comments/ksxf5z/we_lost_a_voice_actor_tonight/giis9te/;1610128817;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BakarinaLovesMaria;;;[];;;;text;t2_7aztnfnj;False;False;[];;Cool. I feel the same way but for me it Hass to have lady a semi-evil protagonist that I can project onto.;False;False;;;;1610092473;;False;{};giisa2i;True;t3_ksxk2m;False;True;t1_giis5dm;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/giisa2i/;1610128823;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"Well i genuinely think the remake is doing a great job and im happy to see more of the series adapted as its a great story. - -The original was fun but it had lots of issues and thats why it never got more adapted, becuase the author wasnt happy. - -As for the art change, that was her choice. She wanted it to look like a modern anime, not just remaking the old art which she had some complaints about. - -A lot of the changes in the new one were all made by her. Since the old adaption caused so much issue for her, they wanted her to be fully on board with the remake and let her do anything she wanted so she would be happy with it. - -There is an interview from when it was announced with her that she mentions a lot of that stuff. - -So yeah, i think as long as shes happy with the remake, we should accept it.";False;False;;;;1610092481;;False;{};giisaee;False;t3_ksxk2m;False;True;t1_giiqjmg;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/giisaee/;1610128829;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PotentialSuspect453;;;[];;;;text;t2_872fz37h;False;False;[];;Supposedly it covers the last arc of the manga which ended. But I don’t know if it’s actually ending.;False;False;;;;1610092497;;False;{};giisb06;False;t3_ksuv1z;False;True;t1_giirh6k;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giisb06/;1610128840;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mcchubby;;;[];;;;text;t2_433gh;False;False;[];;Funimation has it.;False;False;;;;1610092542;;False;{};giiscvs;False;t3_ksxwt7;False;True;t3_ksxwt7;/r/anime/comments/ksxwt7/help_a_broke_weeb_try_and_watch_their_anime/giiscvs/;1610128877;5;True;False;anime;t5_2qh22;;0;[]; -[];;;zsvx;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/zsvx;light;text;t2_bmb0v9j;False;False;[];;ah man i absolutely love saiki k. easily top 5 anime imo. i remember that parody ep too, i really need to finish gintama. it seems right up my alley but i haven’t gotten past the first 20 or so episodes because of how long it is haha;False;False;;;;1610092545;;False;{};giiscz9;False;t3_ksuv1z;False;False;t1_giillk6;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiscz9/;1610128878;96;True;False;anime;t5_2qh22;;0;[]; -[];;;zsvx;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/zsvx;light;text;t2_bmb0v9j;False;False;[];;they were eps made for the manga readers;False;False;;;;1610092616;;False;{};giisfsl;False;t3_ksuv1z;False;False;t1_giiqgel;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giisfsl/;1610128935;30;True;False;anime;t5_2qh22;;0;[]; -[];;;yee_yee_im_eloise;;;[];;;;text;t2_5fq97oh3;False;False;[];;OMG this is adorable!!!! I'm sure they'll love it :D;False;False;;;;1610092656;;False;{};giisheq;False;t3_ksxzpf;False;True;t3_ksxzpf;/r/anime/comments/ksxzpf/repost_friends_birthday_tomorrow_and_his_favorite/giisheq/;1610128966;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chino-kafu;;;[];;;;text;t2_hgf2eos;False;False;[];;Always kinda put off by long running series, I mean even Monster which I have sitting around has been a struggle to pick up and that is only 70~ episodes but do hear a lot about this so may have to watch it over time I guess.;False;False;;;;1610092674;;False;{};giisi49;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giisi49/;1610128981;2;False;False;anime;t5_2qh22;;0;[]; -[];;;chizzdipplerscathaus;;;[];;;;text;t2_3cy2febb;False;False;[];;It’s a male voice actor going from the pronouns being used.;False;False;;;;1610092721;;False;{};giisjz7;False;t3_ksxf5z;False;True;t3_ksxf5z;/r/anime/comments/ksxf5z/we_lost_a_voice_actor_tonight/giisjz7/;1610129018;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chizzdipplerscathaus;;;[];;;;text;t2_3cy2febb;False;False;[];;What makes you think it’s him? Just curious.;False;False;;;;1610092755;;False;{};giislab;False;t3_ksxf5z;False;True;t1_giis9te;/r/anime/comments/ksxf5z/we_lost_a_voice_actor_tonight/giislab/;1610129043;3;True;False;anime;t5_2qh22;;0;[]; -[];;;yee_yee_im_eloise;;;[];;;;text;t2_5fq97oh3;False;False;[];;Thank you guys for the suggestions!!! Also, thanks for the good luck wishes, I hope I find it too lmao;False;False;;;;1610092781;;False;{};giismbl;True;t3_ksxwt7;False;True;t3_ksxwt7;/r/anime/comments/ksxwt7/help_a_broke_weeb_try_and_watch_their_anime/giismbl/;1610129062;1;True;False;anime;t5_2qh22;;0;[]; -[];;;laidbackkanga;;;[];;;;text;t2_rblnr;False;False;[];;Missing out, legitimately one of the funniest shows I've watched. In any medium. Interspersed with serious topics.;False;False;;;;1610092789;;False;{};giismoo;False;t3_ksuv1z;False;False;t1_giirwsd;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giismoo/;1610129068;58;True;False;anime;t5_2qh22;;0;[]; -[];;;bhupeshpr25;;;[];;;;text;t2_78m9sk7m;False;False;[];;lmao;False;False;;;;1610092881;;False;{};giisqch;False;t3_ksuv1z;False;False;t1_giii8pi;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giisqch/;1610129142;5;True;False;anime;t5_2qh22;;0;[]; -[];;;-Nivek;;;[];;;;text;t2_4euwu1zg;False;False;[];;"I’ll add it to my watch list, but again I can’t promise anything but I’ll consider it when I start watching a new anime ;)";False;False;;;;1610092892;;False;{};giisqqo;False;t3_ksuv1z;False;False;t1_giismoo;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giisqqo/;1610129148;15;True;False;anime;t5_2qh22;;0;[]; -[];;;laidbackkanga;;;[];;;;text;t2_rblnr;False;False;[];;1st 2 episodes aren't canon fyi;False;False;;;;1610092902;;False;{};giisr40;False;t3_ksuv1z;False;False;t1_giirqnb;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giisr40/;1610129155;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Cetio;;;[];;;;text;t2_yy4qn0;False;False;[];;Can i get this for fate?...;False;False;;;;1610092919;;False;{};giisrry;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giisrry/;1610129168;3;True;False;anime;t5_2qh22;;0;[]; -[];;;stormhunter2;;;[];;;;text;t2_2d0p5yp7;False;False;[];;With out self aware the show is, the filler ends up quite enjoyable.;False;False;;;;1610092955;;False;{};giist7v;False;t3_ksuv1z;False;False;t1_giiorkl;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giist7v/;1610129197;15;True;False;anime;t5_2qh22;;0;[]; -[];;;laidbackkanga;;;[];;;;text;t2_rblnr;False;False;[];;what about the final 150 or so episodes?;False;False;;;;1610093000;;False;{};giisuyd;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giisuyd/;1610129230;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KennyMcKiller;;;[];;;;text;t2_pm9liu9;False;False;[];;Enchousen has one of the best arcs and best ops lmaooo;False;False;;;;1610093061;;False;{};giisxbp;False;t3_ksuv1z;False;False;t1_giilwd2;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giisxbp/;1610129276;8;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Meemeli;;;[];;;;text;t2_2o1rogl;False;False;[];;I recall hearing that the newest episodes on Crunchyroll are locked behind premium for a week, and then they become available for free?;False;False;;;;1610093064;;False;{};giisxgz;False;t3_ksxwt7;False;True;t3_ksxwt7;/r/anime/comments/ksxwt7/help_a_broke_weeb_try_and_watch_their_anime/giisxgz/;1610129278;2;True;False;anime;t5_2qh22;;0;[]; -[];;;W33B520;;;[];;;;text;t2_5yrtpqbi;False;False;[];;Lmao;False;False;;;;1610093192;;False;{};giit2g1;False;t3_ksuv1z;False;True;t1_giii8pi;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giit2g1/;1610129376;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610093242;;False;{};giit4dr;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giit4dr/;1610129416;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BakarinaLovesMaria;;;[];;;;text;t2_7aztnfnj;False;False;[];;The Charlie and the chocolate factory reboot would have been the movie that Author of the book would’ve wanted but that doesn’t change how others will view the movie. I will never stop hating what they did to the protagonist because her just being an airhead with nothing behind the eyes detracts from the message of looking behind the surface mattering and how you you shouldn’t push or hurt yourself just for the sake of others. None of the characters retain there amazing inner contrasting conflict they had in the original or the manga. It’s all so surface level.;False;False;;;;1610093280;;False;{};giit5sq;True;t3_ksxk2m;False;True;t1_giisaee;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/giit5sq/;1610129447;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"[Violet Evergarden](https://anilist.co/anime/21827/Violet-Evergarden/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_violet_evergarden) -Drama, Fantasy, Slice of Life - -[A Silent Voice](https://anilist.co/anime/20954/A-Silent-Voice/) -Drama, Romance, Slice of Life - -[Your Name](https://anilist.co/anime/21519/Your-Name/) -Drama, Romance, Supernatural - -[Your Lie in April](https://anilist.co/anime/20665/Your-Lie-in-April/) -Drama, Music, Romance, Slice of Life - -[Rascal Does Not Dream of Bunny Girl Senpai](https://anilist.co/anime/101291/Rascal-Does-Not-Dream-of-Bunny-Girl-Senpai/) -Comedy, Mystery, Psychological, Romance, Slice of Life, Supernatural - -[Clannad](https://anilist.co/anime/2167/Clannad/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_clannad) -Comedy, Drama, Romance, Slice of Life, Supernatural";False;False;;;;1610093289;;False;{};giit64b;False;t3_ksx5ev;False;True;t3_ksx5ev;/r/anime/comments/ksx5ev/sad_romance_anime_recommendations/giit64b/;1610129452;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GreasyWendigo;;;[];;;;text;t2_2jjyoaau;False;False;[];;"Its a man. - -A woman Liisa Lee who only did voice over work on DMC 5 and nothing else said ""I loved working with him"" amongst other things. - -JYB himself has not retweeted anything. - -Lots of Persona cast members have also put similar posts up. - -Connecting this truly sad dots...hoping I am wrong.";False;False;;;;1610093297;;False;{};giit6gl;False;t3_ksxf5z;False;True;t1_giislab;/r/anime/comments/ksxf5z/we_lost_a_voice_actor_tonight/giit6gl/;1610129460;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bbharukaa;;;[];;;;text;t2_4ne3c4nt;False;False;[];;"definitely not all but the struggles of every day life are more than enough -happy or not, they still hold significance for me";False;False;;;;1610093306;;False;{};giit6ss;True;t3_kswsf8;False;True;t1_giioicu;/r/anime/comments/kswsf8/nothing_beats_the_happiness_of_watch_slice_of_life/giit6ss/;1610129466;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ima_forhonor_guy;;;[];;;;text;t2_3wmiu6ut;False;False;[];;Very helpful, i started gintama about 5 weeks ago;False;False;;;;1610093325;;False;{};giit7k5;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giit7k5/;1610129488;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610093325;;False;{};giit7kg;False;t3_ksxf5z;False;True;t1_giis9te;/r/anime/comments/ksxf5z/we_lost_a_voice_actor_tonight/giit7kg/;1610129488;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610093427;;False;{};giitbh6;False;t3_ksxf5z;False;True;t1_giis9te;/r/anime/comments/ksxf5z/we_lost_a_voice_actor_tonight/giitbh6/;1610129565;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hamsteralliance;;MAL;[];;http://myanimelist.net/profile/hamsteralliance;dark;text;t2_8m7p9;False;False;[];;"Perhaps the two most profound examples of that for me have been Ghost in the Shell and Chi’s Sweet Home. - -GitS as a teen: sexy robot lady fight spider tank naked. Nipples. Cyborgs cool. Birdcopters, Briefcase guns. His head asplode. - -GitS in my 20s: Ah yes, what is a human? Is this reality real? Existential quandaries. Love it. - -GitS in my 30s: Holy shit, the political stuff in here is really good. I used to consider this a slow movie, now it feels fast. Everything is so well foreshadowed. Hot damn. - -—- - -Chi’s Sweet Home in my 20s: I don’t get it, why would anyone watch this? - -Chi’s Sweet Home in my 30s: This is great, why isn’t everyone watching this??";False;False;;;;1610093459;;False;{};giitcoq;False;t3_ksxk2m;False;False;t3_ksxk2m;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/giitcoq/;1610129591;7;True;False;anime;t5_2qh22;;0;[]; -[];;;nachideku;;;[];;;;text;t2_6p2kphs;False;False;[];;Perfect and saved. Started watching yesterday. Hope to get more done soon;False;False;;;;1610093478;;False;{};giitdev;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giitdev/;1610129605;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hnryirawan;;;[];;;;text;t2_n0vam;False;True;[];;"The start of Gintama 2011 is basically ""Ah yes, we are 16:9 now""!!";False;False;;;;1610093605;;1610106564.0;{};giiticr;False;t3_ksuv1z;False;False;t1_giillk6;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiticr/;1610129698;237;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610093616;moderator;False;{};giitis7;False;t3_ksy8nr;False;True;t3_ksy8nr;/r/anime/comments/ksy8nr/gintama_the_final_is_upon_us_but_where_to_watch/giitis7/;1610129706;1;False;False;anime;t5_2qh22;;0;[]; -[];;;justinCandy;;;[];;;;text;t2_fkq0o;False;False;[];;Spice and Wolf has VR game on stream;False;False;;;;1610093618;;False;{};giititt;False;t3_ksxph9;False;True;t3_ksxph9;/r/anime/comments/ksxph9/anime_stuff_to_watch_on_vr/giititt/;1610129708;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crazywarriorxx;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/CrazyWarrior;light;text;t2_o7p8x;False;False;[];;"This is another one of those long running anime to add to my list, oh god. I've seen clips of it around and it'll probably be enjoyable for me but I'm just slowly burning through my to-watch, currently on the Monogatari series. - -Quick question - can anyone tell me roughly how many episodes the whole thing is, including fillers? Assuming one episode is the same \~20ish mins long.";False;False;;;;1610093665;;False;{};giitkn5;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giitkn5/;1610129742;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chizzdipplerscathaus;;;[];;;;text;t2_3cy2febb;False;False;[];;Sincerely hope this isn’t the case just because it would be crushing if true.;False;False;;;;1610093674;;False;{};giitkzx;False;t3_ksxf5z;False;True;t1_giit6gl;/r/anime/comments/ksxf5z/we_lost_a_voice_actor_tonight/giitkzx/;1610129749;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GreasyWendigo;;;[];;;;text;t2_2jjyoaau;False;False;[];;"A lot of tweets/connections are pointing to a ""He"" from the Devil May Cry and Persona Community.. - -JYB/Nero. - -Vash the stampede please don't let it be you..";False;False;;;;1610093682;;False;{};giitl9l;False;t3_ksx8uy;False;True;t3_ksx8uy;/r/anime/comments/ksx8uy/something_might_die_in_the_va_commuity/giitl9l/;1610129753;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Buy a plane ticket and go to japan;False;False;;;;1610093690;;False;{};giitllo;False;t3_ksy8nr;False;True;t3_ksy8nr;/r/anime/comments/ksy8nr/gintama_the_final_is_upon_us_but_where_to_watch/giitllo/;1610129759;11;True;False;anime;t5_2qh22;;0;[]; -[];;;chickyono;;;[];;;;text;t2_2podgmor;False;False;[];;Gintama final’s final’s final the movie;False;False;;;;1610093732;;False;{};giitn7k;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giitn7k/;1610129791;1;True;False;anime;t5_2qh22;;0;[]; -[];;;taco_toto;;;[];;;;text;t2_76gdjxgn;False;False;[];;Thank you, this is my new favorite word;False;False;;;;1610093777;;False;{};giitoxw;False;t3_ksuv1z;False;False;t1_giii8pi;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giitoxw/;1610129822;19;True;False;anime;t5_2qh22;;0;[]; -[];;;IMprovedMG;;;[];;;;text;t2_46tr155;False;False;[];;This is more confusing then the monogatari watch order;False;False;;;;1610093897;;False;{};giittkw;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giittkw/;1610129919;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;It’s only in theaters rn;False;False;;;;1610093901;;False;{};giittql;False;t3_ksy8nr;False;True;t3_ksy8nr;/r/anime/comments/ksy8nr/gintama_the_final_is_upon_us_but_where_to_watch/giittql/;1610129922;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bagofsoup4;;;[];;;;text;t2_5yvoa0hk;False;False;[];;Is this worth watching im a one piece guy but a friends been recommending Gintama for a while now;False;False;;;;1610093970;;False;{};giitwik;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giitwik/;1610129976;4;True;False;anime;t5_2qh22;;0;[]; -[];;;DT-Z0mby;;;[];;;;text;t2_ec9a0rg;False;False;[];;one small question about sangatsu no lion. does it start being really good later on or is it about even for the entire series? watched 10 eps and i gotta say not entirely convinced. its neat but nothing insane like i was expecting;False;False;;;;1610094063;;False;{};giiu00x;False;t3_kswsf8;False;True;t1_giipyz7;/r/anime/comments/kswsf8/nothing_beats_the_happiness_of_watch_slice_of_life/giiu00x/;1610130044;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;"> the reboot sucks. - -Wait what ?";False;False;;;;1610094076;;False;{};giiu0hc;False;t3_ksxavu;False;True;t3_ksxavu;/r/anime/comments/ksxavu/have_you_ever_rewatched_a_show_and_found_out_it/giiu0hc/;1610130052;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610094184;moderator;False;{};giiu4kz;False;t3_ksycwp;False;True;t3_ksycwp;/r/anime/comments/ksycwp/guys_is_one_piece_dubfunimation_good/giiu4kz/;1610130130;1;False;False;anime;t5_2qh22;;0;[]; -[];;;ZrishaAdams;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3jtna4ck;False;False;[];;About 150 hours;False;False;;;;1610094220;;False;{};giiu5y8;False;t3_ksuv1z;False;False;t1_giirlxt;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiu5y8/;1610130157;25;True;False;anime;t5_2qh22;;0;[]; -[];;;yotam5434;;;[];;;;text;t2_hku79;False;False;[];;No because one piece in general sucks;False;False;;;;1610094243;;False;{};giiu6v2;False;t3_ksycwp;False;True;t3_ksycwp;/r/anime/comments/ksycwp/guys_is_one_piece_dubfunimation_good/giiu6v2/;1610130175;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;AestheticOtakuTZZ;;;[];;;;text;t2_7vuma93m;False;False;[];;I’ve said it before I’ll say it again if you don’t watch Gintama you will regret it trust me;False;False;;;;1610094304;;False;{};giiu97e;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiu97e/;1610130224;3;True;False;anime;t5_2qh22;;0;[]; -[];;;asoloras;;;[];;;;text;t2_3ofv6g21;False;False;[];;glad to see an uncultured swine this morning;False;False;;;;1610094390;;False;{};giiucjs;False;t3_ksycwp;False;False;t1_giiu6v2;/r/anime/comments/ksycwp/guys_is_one_piece_dubfunimation_good/giiucjs/;1610130292;0;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;This is god's work. All people need to watch Gintama, it's like one of the best anime of all time and probably the best comedy for me.;False;False;;;;1610094406;;False;{};giiud6s;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiud6s/;1610130304;12;True;False;anime;t5_2qh22;;0;[]; -[];;;JorgeTan01;;;[];;;;text;t2_16cvgi;False;False;[];;367 episodes and 2 OVAs that are canon.;False;False;;;;1610094410;;False;{};giiuddk;False;t3_ksuv1z;False;False;t1_giitkn5;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiuddk/;1610130308;3;True;False;anime;t5_2qh22;;0;[]; -[];;;onionboys;;;[];;;;text;t2_njblg;False;True;[];;If there’s any anime that does dubs best it’s shonen. The only issue is the dub is hundreds of episodes behind;False;False;;;;1610094417;;False;{};giiudnu;False;t3_ksycwp;False;True;t3_ksycwp;/r/anime/comments/ksycwp/guys_is_one_piece_dubfunimation_good/giiudnu/;1610130314;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crazywarriorxx;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/CrazyWarrior;light;text;t2_o7p8x;False;False;[];;Holy that's pretty long. Thanks for that.;False;False;;;;1610094480;;False;{};giiug2i;False;t3_ksuv1z;False;True;t1_giiuddk;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiug2i/;1610130364;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ab2dii;;;[];;;;text;t2_1jfe14x;False;False;[];;is the movie canon ? like it was the final arc in the manga or what ?;False;False;;;;1610094538;;False;{};giiui92;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiui92/;1610130408;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610094553;moderator;False;{};giiuivq;False;t3_ksyfov;False;True;t3_ksyfov;/r/anime/comments/ksyfov/looking_for_an_anime_i_forgot_the_name_of/giiuivq/;1610130419;1;False;False;anime;t5_2qh22;;0;[]; -[];;;milady-newton;;;[];;;;text;t2_5itg3q7s;False;False;[];;nah man i cant do this no more. the GOAT GINTAMA is leaving us as well.;False;False;;;;1610094560;;False;{};giiuj6p;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiuj6p/;1610130425;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gkanai;;;[];;;;text;t2_34w8e;False;False;[];;[The Cast of「Gintama THE FINAL」Says Thanks](https://www.youtube.com/watch?v=vmlLjlsM3tk);False;False;;;;1610094589;;False;{};giiuk9q;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiuk9q/;1610130446;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Strongerhouseplants;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/whatthehell_;light;text;t2_8ihhjlp3;False;False;[];;"I always appreciate more things on a rewatch so technically all of them. The ones with the biggest change are: - -A Certain Scientific Railgun (1st season)-I was expecting action the whole way through, so when there was a substantial amount of SOL (I didn't really get the genre at the time since I had just begun watching anime), I thought that the show was slow and decent at best. I also recall being a bit sleepy with nothing better to do so there's that. It was pretty much a new experience watching it again several anime later, and I loved the SOL bits as well. went from 6-7/10 to a 10/10 - -Oregairu: First time watching, thought it was decently enjoyable. Once I got to the second season, I quickly realized that I didn't understand jack shit. I pretty much had to read in between each episode to just barely get through it. I rewatched the first two seasons before the third, and knowing what's going on changes everything. Knowing how the show does things, didn't struggle with the third season. 7/10 to a 9/10";False;False;;;;1610094590;;False;{};giiukb6;False;t3_ksxk2m;False;True;t3_ksxk2m;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/giiukb6/;1610130448;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;Sakurasou?;False;False;;;;1610094603;;False;{};giiukta;False;t3_ksyfov;False;True;t3_ksyfov;/r/anime/comments/ksyfov/looking_for_an_anime_i_forgot_the_name_of/giiukta/;1610130457;4;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;There are like 7 Gintama in the top 20 lmao. Hopefully the last movie will make it to top 10 because that's the end of the series.;False;False;;;;1610094603;;False;{};giiuktv;False;t3_ksuv1z;False;False;t1_giii8pi;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiuktv/;1610130457;198;True;False;anime;t5_2qh22;;0;[]; -[];;;ArkhamKnight1954;;;[];;;;text;t2_ptae0;False;False;[];;Don't do that to me...;False;False;;;;1610094613;;False;{};giiul81;False;t3_ksx8uy;False;True;t1_giitl9l;/r/anime/comments/ksx8uy/something_might_die_in_the_va_commuity/giiul81/;1610130464;1;True;False;anime;t5_2qh22;;0;[]; -[];;;A_kirE;;;[];;;;text;t2_8mklskhy;False;False;[];;watching neon genesis evangelion when i was 15 i never understand one bit of the story on why its happening i just liked the robot vs monsters (angels) fight and after rewarching it i finally enjoyed and understand everything with the help of some youtube videos;False;False;;;;1610094613;;False;{};giiul95;False;t3_ksxk2m;False;True;t3_ksxk2m;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/giiul95/;1610130465;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tealworm69;;;[];;;;text;t2_9c779n8b;False;False;[];;I should’ve came here a long time ago thank you;False;False;;;;1610094648;;False;{};giiumlz;True;t3_ksyfov;False;True;t1_giiukta;/r/anime/comments/ksyfov/looking_for_an_anime_i_forgot_the_name_of/giiumlz/;1610130488;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Deanomac2010;;;[];;;;text;t2_7w8w2jz4;False;False;[];;"I personally love the one piece dub! - -They have dub up to episode 651 out and its coming out every month or two with 13 episodes at a time! - -If you always prefer dub i say stick with it but if you prefer sub then your better of starting with sub as the sub as there 956 episodes out. - -Ultimately its your choice! Just dont let toxic fans decide for you who say dub is terrible cause its clearly not! Watch whatever version you like best! - -The dub is excellent imo! Sub is fantastic too.";False;False;;;;1610094668;;False;{};giiunc8;False;t3_ksycwp;False;True;t3_ksycwp;/r/anime/comments/ksycwp/guys_is_one_piece_dubfunimation_good/giiunc8/;1610130501;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dp_kl;;;[];;;;text;t2_mexrh;False;False;[];;If you mean the final movie then yes, it will adapt the final arc of the manga.;False;False;;;;1610094682;;False;{};giiunuz;False;t3_ksuv1z;False;False;t1_giiui92;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiunuz/;1610130511;5;True;False;anime;t5_2qh22;;0;[]; -[];;;JorgeTan01;;;[];;;;text;t2_16cvgi;False;False;[];;No problem, take your time when you decide to watch it.;False;False;;;;1610094704;;False;{};giiuoru;False;t3_ksuv1z;False;True;t1_giiug2i;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiuoru/;1610130528;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ab2dii;;;[];;;;text;t2_1jfe14x;False;False;[];;imma cry real quick. dont want gintama to finish :(;False;False;;;;1610094730;;False;{};giiupqz;False;t3_ksuv1z;False;True;t1_giiunuz;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiupqz/;1610130546;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Makimasfeet;;;[];;;;text;t2_95imk08u;False;False;[];;Kizumonogatari 3;False;False;;;;1610094757;;False;{};giiuqu8;False;t3_ksx5yz;False;False;t3_ksx5yz;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/giiuqu8/;1610130568;10;True;False;anime;t5_2qh22;;0;[]; -[];;;GreasyWendigo;;;[];;;;text;t2_2jjyoaau;False;False;[];;"https://twitter.com/Liisabelle/status/1347434209292345347?s=20 - -All I can see she has done that would be relevant would be DMC5 voice work as Death Scissors and the tweet makes it clear its a male. - -Could be Brad Venable as well people are stating who voiced the Griffon of V's in DMC5 also.";False;False;;;;1610094775;;False;{};giiurhm;False;t3_ksx8uy;False;True;t1_giiul81;/r/anime/comments/ksx8uy/something_might_die_in_the_va_commuity/giiurhm/;1610130579;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheOneAboveGod;;;[];;;;text;t2_grcpz;False;False;[];;Hey, you missed Love Potion Arc. It should be before SA Arc.;False;False;;;;1610094779;;False;{};giiurni;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiurni/;1610130583;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PuzzleheadedDentist1;;;[];;;;text;t2_4kwpxt8q;False;False;[];;Even if hes mean uncultered is personal. I mean u call him uncultered but others dont or they think the same;False;False;;;;1610094802;;False;{};giiusja;True;t3_ksycwp;False;True;t1_giiucjs;/r/anime/comments/ksycwp/guys_is_one_piece_dubfunimation_good/giiusja/;1610130600;0;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;yeah it's great, most of the main cast's voice actors even sound similar between the English dub and the sub (with a strong exception or two.) Generally I copy some variation of [this advice](https://www.reddit.com/r/anime/comments/jaranp/need_help_with_new_animes/g8raw3c?utm_medium=) whenever the subject on approaching One Piece comes up, basically I would give it between 30 and 70ish episodes and then make a judgement call on if it's worth your time (although just bear in mind that the show gets 3 or 4 times better once you reach episode 196 or so. You'll have to make an educated guess before then on if it's worth it though.);False;False;;;;1610094805;;False;{};giiusod;False;t3_ksycwp;False;True;t3_ksycwp;/r/anime/comments/ksycwp/guys_is_one_piece_dubfunimation_good/giiusod/;1610130604;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Spade-Demon;;;[];;;;text;t2_5tkn0i2y;False;False;[];;"Avatar the last airbender had consistently good animation while not having limited animation like the Japanese do. A ton of action sequences with revolutionary storyboarding and key-animation like say Naruto combined with brilliant character acting which is rarely done in anime. - -I would give a honourable mention to Mob Psycho 100 because you shouldn’t be called the best animated show without having the best animators in the industry in my opinion and this show featured both the animator’s I respect the most, Norio Matsumoto and Yutaka Nakamura.";False;True;;comment score below threshold;;1610094812;;1610095267.0;{};giiusy5;False;t3_ksx5yz;False;True;t3_ksx5yz;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/giiusy5/;1610130610;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;dp_kl;;;[];;;;text;t2_mexrh;False;False;[];;Same, I've been watching Gintama slowly for the last 3 years and I finally caught up some months ago. Now it's hitting hard that it's really over.;False;False;;;;1610094847;;False;{};giiuu7s;False;t3_ksuv1z;False;True;t1_giiupqz;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiuu7s/;1610130636;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PuzzleheadedDentist1;;;[];;;;text;t2_4kwpxt8q;False;False;[];;Wow you are like the same as me lol. Thx tho;False;False;;;;1610094854;;False;{};giiuui8;True;t3_ksycwp;False;True;t1_giiunc8;/r/anime/comments/ksycwp/guys_is_one_piece_dubfunimation_good/giiuui8/;1610130642;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Makimasfeet;;;[];;;;text;t2_95imk08u;False;False;[];;No;False;False;;;;1610094858;;False;{};giiuun4;False;t3_ksx5yz;False;False;t1_giiocww;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/giiuun4/;1610130646;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;"Also they literally go to Taki's grandmother's house and talk to him there. - -Shinkai likes to add little cameos, like Your Name had the teacher from Garden of Words in it.";False;False;;;;1610094886;;False;{};giiuvpg;False;t3_ksyh0u;False;True;t3_ksyh0u;/r/anime/comments/ksyh0u/oh_my_god_i_just_realized_the_world_from_your/giiuvpg/;1610130666;9;True;False;anime;t5_2qh22;;0;[]; -[];;;infinite_lyy;;;[];;;;text;t2_9lftz77s;False;False;[];;"Taki makes a cameo in Weathering With You as well! Pretty sure Mitsuha's friends appear for like a few seconds too - -And The teacher in Your Name is the deuteragonist of Garden of Words - -It's the MCU (MakotoShinkai Cinematic Universe)";False;False;;;;1610094898;;False;{};giiuw66;False;t3_ksyh0u;False;True;t3_ksyh0u;/r/anime/comments/ksyh0u/oh_my_god_i_just_realized_the_world_from_your/giiuw66/;1610130674;14;True;False;anime;t5_2qh22;;0;[]; -[];;;NavinHaze;;;[];;;;text;t2_1t1hfyih;False;False;[];;Thank you;False;False;;;;1610094966;;False;{};giiuyr3;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiuyr3/;1610130726;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ab2dii;;;[];;;;text;t2_1jfe14x;False;False;[];;yeah. last i watched is gintama 2017 and i think porori that came after that. so i only need to watch silver soul and the last movie but i havent watched any yet because i dont want it to end lol;False;False;;;;1610094971;;False;{};giiuyyq;False;t3_ksuv1z;False;False;t1_giiuu7s;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiuyyq/;1610130731;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Deanomac2010;;;[];;;;text;t2_7w8w2jz4;False;False;[];;If you havent started one piece yet and gonna do enjoy! Its one hell of a ride 😍;False;False;;;;1610094978;;False;{};giiuz7g;False;t3_ksycwp;False;True;t1_giiuui8;/r/anime/comments/ksycwp/guys_is_one_piece_dubfunimation_good/giiuz7g/;1610130735;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Onichanlikesme;;;[];;;;text;t2_ybtc2;False;False;[];;The setting is probably the best that is out there (and funniest) with Dragon Ball Z like Planets thrown into the mix;False;False;;;;1610095027;;False;{};giiv12a;False;t3_ksuv1z;False;False;t1_giiqdc7;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiv12a/;1610130769;64;True;False;anime;t5_2qh22;;0;[]; -[];;;iski4200;;;[];;;;text;t2_4o9c6mfh;False;False;[];;ohhhh my godddd I KNEW I RECOGNIZED THAT CHARACTER;False;False;;;;1610095086;;False;{};giiv3b7;True;t3_ksyh0u;False;True;t1_giiuvpg;/r/anime/comments/ksyh0u/oh_my_god_i_just_realized_the_world_from_your/giiv3b7/;1610130813;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iski4200;;;[];;;;text;t2_4o9c6mfh;False;False;[];;Omgomgomg this make me irrationally happy;False;False;;;;1610095120;;False;{};giiv4jt;True;t3_ksyh0u;False;True;t1_giiuw66;/r/anime/comments/ksyh0u/oh_my_god_i_just_realized_the_world_from_your/giiv4jt/;1610130837;3;True;False;anime;t5_2qh22;;0;[]; -[];;;A_kirE;;;[];;;;text;t2_8mklskhy;False;False;[];;land of lustrous;False;False;;;;1610095177;;False;{};giiv6me;False;t3_ksx5yz;False;True;t3_ksx5yz;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/giiv6me/;1610130880;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Masdeuss;;;[];;;;text;t2_7uxssy64;False;False;[];;"what about gintama the semi final[https://myanimelist.net/anime/44087/Gintama\_\_The\_Semi-Final](https://myanimelist.net/anime/44087/Gintama__The_Semi-Final) -since this ties into the final movie";False;False;;;;1610095280;;False;{};giivahp;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giivahp/;1610130955;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Xeroith;;;[];;;;text;t2_d8q1x;False;False;[];;"Brad Venable has passed. Some VAs decided to spill it on accident. Also somewhat confirmed by Liisa Lee working on DMC5 with him. - -https://i.imgur.com/P7yzNsr.png";False;False;;;;1610095297;;False;{};giivb4a;False;t3_ksx8uy;False;True;t3_ksx8uy;/r/anime/comments/ksx8uy/something_might_die_in_the_va_commuity/giivb4a/;1610130968;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610095324;;False;{};giivc34;False;t3_ksxwt7;False;True;t3_ksxwt7;/r/anime/comments/ksxwt7/help_a_broke_weeb_try_and_watch_their_anime/giivc34/;1610130987;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rv_gamez;;;[];;;;text;t2_5apw2xez;False;False;[];;one piece op stops;False;False;;;;1610095331;;False;{};giivcdm;True;t3_ksy8nr;False;True;t1_giitllo;/r/anime/comments/ksy8nr/gintama_the_final_is_upon_us_but_where_to_watch/giivcdm/;1610130992;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FprodTheDuck;;;[];;;;text;t2_2cpzaes;False;False;[];;You missed the Semi-Final (2 eps), that should be watched before The Final;False;False;;;;1610095355;;False;{};giivd8z;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giivd8z/;1610131010;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Star_Lux22;;;[];;;;text;t2_22d262q9;False;False;[];;I think your nostalgia glasses are on a bit too tight;False;False;;;;1610095458;;False;{};giivh68;False;t3_ksxk2m;False;True;t1_giit5sq;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/giivh68/;1610131087;2;True;False;anime;t5_2qh22;;0;[]; -[];;;internetpersonanona;;;[];;;;text;t2_5w6w1cap;False;False;[];;"nah, one piece is trash, its only got 1000 episodes because soemone sucked the prime ministers micro dingus. - -/s";False;False;;;;1610095476;;False;{};giivhvb;False;t3_ksycwp;False;True;t3_ksycwp;/r/anime/comments/ksycwp/guys_is_one_piece_dubfunimation_good/giivhvb/;1610131101;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;internetpersonanona;;;[];;;;text;t2_5w6w1cap;False;False;[];;"one piece dubs are garbage. - -sub/raw master race";False;False;;;;1610095499;;False;{};giiviqh;False;t3_ksycwp;False;True;t1_giiudnu;/r/anime/comments/ksycwp/guys_is_one_piece_dubfunimation_good/giiviqh/;1610131117;0;True;False;anime;t5_2qh22;;0;[]; -[];;;DeTroyes1;;;[];;;;text;t2_awtnhf;False;False;[];;"> And The teacher in Your Name is the deuteragonist of Garden of Words - -Holy shit, I didn't even notice that.";False;False;;;;1610095507;;False;{};giivj2n;False;t3_ksyh0u;False;True;t1_giiuw66;/r/anime/comments/ksyh0u/oh_my_god_i_just_realized_the_world_from_your/giivj2n/;1610131122;3;True;False;anime;t5_2qh22;;0;[]; -[];;;onionboys;;;[];;;;text;t2_njblg;False;True;[];;It’s almost impossible to say that shonen subs are better than dubs but ok;False;False;;;;1610095541;;False;{};giivkcr;False;t3_ksycwp;False;True;t1_giiviqh;/r/anime/comments/ksycwp/guys_is_one_piece_dubfunimation_good/giivkcr/;1610131145;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Makimasfeet;;;[];;;;text;t2_95imk08u;False;False;[];;"*Evangelion* - -Fr tho, watch FLCL next, one of Imaishi's greatest";False;False;;;;1610095571;;False;{};giivlhz;False;t3_ksxj9t;False;True;t3_ksxj9t;/r/anime/comments/ksxj9t/dont_know_what_anime_to_watch/giivlhz/;1610131169;1;True;False;anime;t5_2qh22;;0;[]; -[];;;shewy92;;;[];;;;text;t2_wd13k;False;False;[];;I can't stand how Saiki K seems to be on fast forward.;False;False;;;;1610095585;;False;{};giivm0f;False;t3_ksuv1z;False;False;t1_giillk6;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giivm0f/;1610131178;17;False;False;anime;t5_2qh22;;0;[]; -[];;;OISHOESSKE;;;[];;;;text;t2_7ruy2mx1;False;False;[];;Imma skip non fillers;False;False;;;;1610095585;;False;{};giivm10;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giivm10/;1610131178;3;True;False;anime;t5_2qh22;;0;[]; -[];;;rr151panda;;;[];;;;text;t2_4rq167iv;False;False;[];;Yup, and so is garden of words, although as far is I can tell there is no character cross over at all;False;False;;;;1610095596;;False;{};giivmfe;False;t3_ksyh0u;False;True;t3_ksyh0u;/r/anime/comments/ksyh0u/oh_my_god_i_just_realized_the_world_from_your/giivmfe/;1610131186;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PuzzleheadedDentist1;;;[];;;;text;t2_4kwpxt8q;False;False;[];;😳;False;False;;;;1610095722;;False;{};giivr3v;True;t3_ksycwp;False;True;t1_giivhvb;/r/anime/comments/ksycwp/guys_is_one_piece_dubfunimation_good/giivr3v/;1610131277;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tobby711;;;[];;;;text;t2_15qpr802;False;False;[];;Pirate that shit and watch it 4 free;False;False;;;;1610095723;;False;{};giivr4u;False;t3_ksxwt7;False;True;t3_ksxwt7;/r/anime/comments/ksxwt7/help_a_broke_weeb_try_and_watch_their_anime/giivr4u/;1610131277;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;Me too lol, I learned something;False;False;;;;1610095734;;False;{};giivrja;False;t3_ksyh0u;False;True;t1_giivj2n;/r/anime/comments/ksyh0u/oh_my_god_i_just_realized_the_world_from_your/giivrja/;1610131288;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kevuuu;;;[];;;;text;t2_4rzmk9nr;False;False;[];;Its around ep 160;False;False;;;;1610095809;;False;{};giivu8i;False;t3_ksuv1z;False;False;t1_giillk6;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giivu8i/;1610131343;6;True;False;anime;t5_2qh22;;0;[]; -[];;;nsallsIkKkNa;;;[];;;;text;t2_9bmwypoo;False;False;[];;So good you gotta post it twice.;False;False;;;;1610095838;;False;{};giivvde;False;t3_ksxavu;False;True;t3_ksxavu;/r/anime/comments/ksxavu/have_you_ever_rewatched_a_show_and_found_out_it/giivvde/;1610131365;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Inflated-Charisma;;;[];;;;text;t2_8m7docl1;False;False;[];;"I would literally kill to live in a mediaeval/modern world - -Edit: god I love gintamas setting so much. There's feudal Japan and samurais, there's a samurai police force with bazookas and shit. There's this old, peaceful, friendly environment in the series and there's also super advanced technology and universe travelling and shit. Awesome";False;False;;;;1610095913;;1610109133.0;{};giivy52;False;t3_ksuv1z;False;False;t1_giiqdc7;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giivy52/;1610131423;42;True;False;anime;t5_2qh22;;0;[]; -[];;;Tobby711;;;[];;;;text;t2_15qpr802;False;False;[];;Yep I second that;False;False;;;;1610095999;;False;{};giiw1bf;False;t3_ksxj9t;False;True;t1_giiqkss;/r/anime/comments/ksxj9t/dont_know_what_anime_to_watch/giiw1bf/;1610131484;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PursuitoftheMystical;;;[];;;;text;t2_5j5ishy8;False;False;[];;cool;False;False;;;;1610096010;;False;{};giiw1pn;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiw1pn/;1610131492;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SammyD95;;MAL;[];;http://myanimelist.net/animelist/sammyd95;dark;text;t2_elt4h;False;True;[];;I have an on and off again relationship with anime, but Gintama is one of those shows that had me hooked back in 2016, like binged 200+ episodes over a 2 week break hooked. I have been on my off phase for a while but something about this news that it's actually ending makes me want to do a whole rewatch over this year.;False;False;;;;1610096020;;False;{};giiw226;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiw226/;1610131502;2;True;False;anime;t5_2qh22;;0;[]; -[];;;whizmas;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/xjet465;light;text;t2_14gyc2;False;False;[];;Im sad saiki final season was so short lol;False;False;;;;1610096049;;False;{};giiw34g;False;t3_ksuv1z;False;False;t1_giiscz9;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiw34g/;1610131539;22;True;False;anime;t5_2qh22;;0;[]; -[];;;FprodTheDuck;;;[];;;;text;t2_2cpzaes;False;False;[];;gintama isn't popular in the west so we'll have to wait till blu rays are out and Jp fans sub it, pain 😭;False;False;;;;1610096050;;False;{};giiw360;False;t3_ksuv1z;False;False;t1_giis79r;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiw360/;1610131540;26;True;False;anime;t5_2qh22;;0;[]; -[];;;FalseKiller45;;;[];;;;text;t2_no0dru0;False;False;[];;Pain when it's your irl birthday and your favourite anime is getting a movie but only in japan;False;False;;;;1610096058;;False;{};giiw3gd;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiw3gd/;1610131545;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Frostivus;;;[];;;;text;t2_dpnfn;False;False;[];;"I've seen this pop up more than once: the final Gintama movie. Only for them to come back with another season and a self-depreciating stick about how they've deceived their fanbase or they need more money. - -If you're part of the inside joke, it's pretty funny. But I don't have the emotional energy to keep investing in yet another hoodwink.";False;False;;;;1610096107;;False;{};giiw569;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiw569/;1610131578;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BakarinaLovesMaria;;;[];;;;text;t2_7aztnfnj;False;False;[];;I think you need glasses if you’re going to call the reboot anything but a poorly told Shameless cash grab;False;False;;;;1610096138;;False;{};giiw6b7;True;t3_ksxk2m;False;True;t1_giivh68;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/giiw6b7/;1610131601;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;def_not_a_weeb;;;[];;;;text;t2_42xpucur;False;False;[];;I'm really planning on starting a new journey. It's been a while since I went on my naruto journey. So should I do gintama or one piece. Or maybe even bleach;False;False;;;;1610096163;;False;{};giiw78b;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiw78b/;1610131621;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BakarinaLovesMaria;;;[];;;;text;t2_7aztnfnj;False;False;[];;The rewatch tag is reserved for when you want to plan a rewatch session instead of discuss it;False;False;;;;1610096181;;False;{};giiw7vo;True;t3_ksxavu;False;True;t1_giivvde;/r/anime/comments/ksxavu/have_you_ever_rewatched_a_show_and_found_out_it/giiw7vo/;1610131634;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_hereforthehorror_;;;[];;;;text;t2_346fob6x;False;False;[];;It’s been a hell of a ride...DONDAKEEE!;False;False;;;;1610096191;;False;{};giiw88t;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiw88t/;1610131640;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610096196;;False;{};giiw8fa;False;t3_ksxwt7;False;True;t3_ksxwt7;/r/anime/comments/ksxwt7/help_a_broke_weeb_try_and_watch_their_anime/giiw8fa/;1610131645;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Icramy, your post has been removed because it links to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610096196;moderator;False;{};giiw8fx;False;t3_ksxwt7;False;True;t1_giiw8fa;/r/anime/comments/ksxwt7/help_a_broke_weeb_try_and_watch_their_anime/giiw8fx/;1610131646;1;False;False;anime;t5_2qh22;;0;[]; -[];;;FprodTheDuck;;;[];;;;text;t2_2cpzaes;False;False;[];;Bruh what, what are you even talking about;False;False;;;;1610096205;;False;{};giiw8s8;False;t3_ksuv1z;False;False;t1_giir9vd;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiw8s8/;1610131651;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610096216;;False;{};giiw97p;False;t3_ksxwt7;False;True;t3_ksxwt7;/r/anime/comments/ksxwt7/help_a_broke_weeb_try_and_watch_their_anime/giiw97p/;1610131659;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Icramy, your post has been removed because it links to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610096217;moderator;False;{};giiw98g;False;t3_ksxwt7;False;True;t1_giiw97p;/r/anime/comments/ksxwt7/help_a_broke_weeb_try_and_watch_their_anime/giiw98g/;1610131659;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Humg12;;MAL;[];;http://myanimelist.net/animelist/Humg12;dark;text;t2_d5fn6;False;False;[];;"So Gintama has done a few final seasons/episodes before. A couple of them came at the end of regular seasons when they hadn't been cleared for the next one yet and were mostly jokes. The one you're thinking of is the last season that aired was meant to be the final season. They spoke with the mangaka and he told them that it'd be wrapped up in x episodes. Then it went a bit longer than expected so they added another season. And then it went even longer and they went with the movie. - -I've probably gotten a few details wrong, but that's the general gist of it.";False;False;;;;1610096246;;False;{};giiwacf;False;t3_ksuv1z;False;False;t1_giihzvq;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiwacf/;1610131680;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Spade-Demon;;;[];;;;text;t2_5tkn0i2y;False;False;[];;If you enjoy dub go for it, but a word of advice avoid spoilers on Twitter and r/Onepiece since the dub is far behind sub, there’s a high chance of getting spoiled on important plot points.;False;False;;;;1610096308;;False;{};giiwco2;False;t3_ksycwp;False;True;t3_ksycwp;/r/anime/comments/ksycwp/guys_is_one_piece_dubfunimation_good/giiwco2/;1610131722;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610096323;;False;{};giiwd7l;False;t3_ksxwt7;False;True;t3_ksxwt7;/r/anime/comments/ksxwt7/help_a_broke_weeb_try_and_watch_their_anime/giiwd7l/;1610131732;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lakenzbur;;;[];;;;text;t2_wo7p2d;False;False;[];;The fansub who did gintama (2006) was really mvp. I spent around 4 months to finished and finding what references gintama are used. Also gintama was my first comedy anime i watched. It was 2011 during gintama (2011) also airing.;False;False;;;;1610096332;;False;{};giiwdk1;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiwdk1/;1610131738;6;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"How is it a shameless cash grab? - -The original was a bad adaption, so much so it caused the author to hate anime adaptions and refuse to let her works be adapted. - -After 20 years they got her to finally let them properly adapt it, but her conditions were to fully remake it with new studio, new cast, and her supervision. They accepted and this adaption is what we got, the one she wanted. - -Thats not shameless or a cash grab.";False;False;;;;1610096369;;False;{};giiwex8;False;t3_ksxk2m;False;False;t1_giiw6b7;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/giiwex8/;1610131764;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Itspoodie;;;[];;;;text;t2_7qq4dkmg;False;False;[];;Neji they did him wrong I feel like he should’ve had much more since he was the genius of the hyuga;False;False;;;;1610096378;;False;{};giiwfas;False;t3_ksv5jr;False;True;t3_ksv5jr;/r/anime/comments/ksv5jr/if_you_could_make_it_to_where_a_anime_character/giiwfas/;1610131773;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AikaSkies;;;[];;;;text;t2_3wbty3ew;False;False;[];;Should include that the second movie isn't necessary, even though its amazing. It could be watched after everything and it wouldn't really matter.;False;False;;;;1610096421;;False;{};giiwgxj;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiwgxj/;1610131804;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Icramy;;;[];;;;text;t2_7s3rwygr;False;False;[];;If u haven’t seen Your Name then u won’t know what good art means;False;False;;;;1610096512;;False;{};giiwkd8;False;t3_ksx5yz;False;True;t3_ksx5yz;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/giiwkd8/;1610131868;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610096607;moderator;False;{};giiwnvc;False;t3_ksyuwx;False;True;t3_ksyuwx;/r/anime/comments/ksyuwx/i_need_an_anime/giiwnvc/;1610131938;1;False;False;anime;t5_2qh22;;0;[]; -[];;;DeTroyes1;;;[];;;;text;t2_awtnhf;False;False;[];;Which means next film he'll probably reference the Mars base that got attacked in *Voices from a Distant Star*.;False;False;;;;1610096644;;False;{};giiwp7h;False;t3_ksyh0u;False;True;t1_giivrja;/r/anime/comments/ksyh0u/oh_my_god_i_just_realized_the_world_from_your/giiwp7h/;1610131971;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dave-not-a-barbarian;;;[];;;;text;t2_22jk7cmb;False;False;[];;You want a whole anime based around that?;False;False;;;;1610096671;;False;{};giiwq6o;False;t3_ksyuwx;False;False;t3_ksyuwx;/r/anime/comments/ksyuwx/i_need_an_anime/giiwq6o/;1610131988;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Isaac-loffredo;;;[];;;;text;t2_319fculw;False;False;[];;Lol;False;False;;;;1610096715;;False;{};giiwrus;False;t3_ksyuwx;False;True;t1_giiwq6o;/r/anime/comments/ksyuwx/i_need_an_anime/giiwrus/;1610132020;1;True;False;anime;t5_2qh22;;0;[]; -[];;;qidbwoaj;;;[];;;;text;t2_8p4zdunw;False;False;[];;If doesent exist i Just want that argument in the anime not the centrale plot;False;False;;;;1610096754;;False;{};giiwt80;False;t3_ksyuwx;False;True;t1_giiwq6o;/r/anime/comments/ksyuwx/i_need_an_anime/giiwt80/;1610132046;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;ShovelGames;;;[];;;;text;t2_qsgkohs;False;False;[];;Fate next please;False;False;;;;1610096774;;False;{};giiwtyh;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiwtyh/;1610132060;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Inflated-Charisma;;;[];;;;text;t2_8m7docl1;False;False;[];;Yo I hate to do this to you but.....Aot manga is ending on 9th April this year;False;False;;;;1610096814;;False;{};giiwvgk;False;t3_ksuv1z;False;True;t1_giirn45;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiwvgk/;1610132088;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jojo_is_trash;;;[];;;;text;t2_595dn1yo;False;False;[];;You need hentai;False;False;;;;1610096915;;False;{};giiwz2s;False;t3_ksyuwx;False;True;t3_ksyuwx;/r/anime/comments/ksyuwx/i_need_an_anime/giiwz2s/;1610132155;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610096948;moderator;False;{};giix09w;False;t3_ksyxk8;False;True;t3_ksyxk8;/r/anime/comments/ksyxk8/i_need_some_recommendations/giix09w/;1610132178;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi yodeling-yodas, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610096949;moderator;False;{};giix0ae;False;t3_ksyxk8;False;True;t3_ksyxk8;/r/anime/comments/ksyxk8/i_need_some_recommendations/giix0ae/;1610132178;1;False;False;anime;t5_2qh22;;0;[]; -[];;;gratifiedlonging;;;[];;;;text;t2_93iwn0o7;False;False;[];;"Note as well that the anime covers only the introductory chapter of the visual novel. If you liked the series, you should definitely check out the VN as there's a lot of content left out of the anime adaptation. - -If you didn't like Setsuna in the anime, give the VN a shot and see if you'd change your mind.";False;False;;;;1610096958;;False;{};giix0l7;False;t3_ksx5ev;False;True;t1_giio1fk;/r/anime/comments/ksx5ev/sad_romance_anime_recommendations/giix0l7/;1610132184;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Chrupiter;;;[];;;;text;t2_11e0wr;False;False;[];;Honestly I watched the Porori Hen in broadcast order, in the middle of the seriousness, and I didn't mind it.;False;False;;;;1610096968;;False;{};giix0yp;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giix0yp/;1610132190;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Parzivaal007;;;[];;;;text;t2_2kwdtxj8;False;False;[];;Live action lol;False;False;;;;1610096989;;False;{};giix1qa;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giix1qa/;1610132204;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;I’d give a shoutout to Children of The Sea movie, not only does the visual look gorgeous, the animation based on what i’ve seen is really fluid too;False;False;;;;1610097006;;False;{};giix2cy;False;t3_ksx5yz;False;False;t3_ksx5yz;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/giix2cy/;1610132216;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Deanomac2010;;;[];;;;text;t2_7w8w2jz4;False;False;[];;"Yehh that sucks :( suppose it be worth the wair eh ;)";False;False;;;;1610097022;;False;{};giix2xd;False;t3_ksuv1z;False;False;t1_giiw360;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giix2xd/;1610132226;8;True;False;anime;t5_2qh22;;0;[]; -[];;;infinite_lyy;;;[];;;;text;t2_9lftz77s;False;False;[];;totally!! when I watched in the cinema, when Taki appeared the audience went wild lol;False;False;;;;1610097122;;False;{};giix6is;False;t3_ksyh0u;False;True;t1_giiv4jt;/r/anime/comments/ksyh0u/oh_my_god_i_just_realized_the_world_from_your/giix6is/;1610132299;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gratifiedlonging;;;[];;;;text;t2_93iwn0o7;False;False;[];;"I just finished Plastic Nee-san earlier; it's hilarious. Definitely one of my top comedy anime. It's a short series (12 two-minute episodes), so it's pretty high octane in its delivery. Wish there was more of it or similar stuff.";False;False;;;;1610097145;;False;{};giix7bt;False;t3_ksvfai;False;False;t3_ksvfai;/r/anime/comments/ksvfai/in_anime_once_youre_grabbed_by_the_face_you_are/giix7bt/;1610132315;6;True;False;anime;t5_2qh22;;0;[]; -[];;;popupro21;;;[];;;;text;t2_6gnnnbg2;False;False;[];;"If you have the dedication I'd reccomend one piece - -If you want the adrenaline I'd reccomend haikyuu - -That's pretty much all I have up my sleeve";False;False;;;;1610097174;;False;{};giix8gc;False;t3_ksyxk8;False;True;t3_ksyxk8;/r/anime/comments/ksyxk8/i_need_some_recommendations/giix8gc/;1610132336;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ebisu_BISUKO;;;[];;;;text;t2_7hqu3pou;False;False;[];;To be honest I see gintama doing the fast and the furious route if the movie gets like blockbuster hits and most probably will name it the last last movie;False;False;;;;1610097177;;False;{};giix8jn;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giix8jn/;1610132337;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WorkAccount_NoNSFW;;;[];;;;text;t2_6cci20l;False;False;[];;Kisumonogatari;False;False;;;;1610097209;;False;{};giix9pd;False;t3_ksx5yz;False;False;t3_ksx5yz;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/giix9pd/;1610132357;8;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi FixingCarp, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610097252;moderator;False;{};giixb87;False;t3_ksyzow;False;True;t3_ksyzow;/r/anime/comments/ksyzow/something_similar_to_flcl/giixb87/;1610132385;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Magical_Griffin;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SpikyTurtle;light;text;t2_ii5jh1;False;False;[];;"Haikyuu, Assassination Classroom, Hunter x Hunter, Attack on Titan, Steins;Gate, Fullmetal Alchemist: Brotherhood.";False;False;;;;1610097272;;False;{};giixbz7;False;t3_ksyxk8;False;False;t3_ksyxk8;/r/anime/comments/ksyxk8/i_need_some_recommendations/giixbz7/;1610132399;4;True;False;anime;t5_2qh22;;0;[]; -[];;;falkner97;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/falkner99;light;text;t2_6y92q69v;False;False;[];;Also there is easter egg of ayane and kana hanazawa as well as godzilla, Aqua and Hatsune miku during the cosplay event segment for weathering with you;False;False;;;;1610097299;;False;{};giixcyw;False;t3_ksyh0u;False;True;t3_ksyh0u;/r/anime/comments/ksyh0u/oh_my_god_i_just_realized_the_world_from_your/giixcyw/;1610132417;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TDS_Reaper;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ramenn/;light;text;t2_2qks3axi;False;False;[];;Ive been wanting to do that, I watched Project K a long time ago and I thought it was mid so I didn't even check out the second season. Recently I've come across clips from the anime and I feel like I was too critical or I didn't pay attention while watching it but I don't have the motivation to rewatch it either;False;False;;;;1610097517;;False;{};giixkui;False;t3_ksxk2m;False;True;t3_ksxk2m;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/giixkui/;1610132569;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nsallsIkKkNa;;;[];;;;text;t2_9bmwypoo;False;False;[];;Anime is the plural of anime, regardless apostrophes show possesion.;False;False;;;;1610097658;;False;{};giixpvi;False;t3_kswy22;False;True;t3_kswy22;/r/anime/comments/kswy22/rom_com_wholesome_or_harem_animes/giixpvi/;1610132667;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nsallsIkKkNa;;;[];;;;text;t2_9bmwypoo;False;False;[];;Anime is the plural of anime, regardless apostrophes show possession.;False;False;;;;1610097660;;False;{};giixpyf;False;t3_kswy22;False;True;t3_kswy22;/r/anime/comments/kswy22/rom_com_wholesome_or_harem_animes/giixpyf/;1610132668;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hrsrocx49;;;[];;;;text;t2_4fzxiahi;False;False;[];;"Who would be dumb enough to skip fillers of this awesome art? -The fillers are pure comedy my dudes";False;False;;;;1610097689;;False;{};giixr13;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giixr13/;1610132689;5;True;False;anime;t5_2qh22;;0;[]; -[];;;asoloras;;;[];;;;text;t2_3ofv6g21;False;False;[];;yeah you’re right. he’s probably only watched hunter hunter or naruto so his op is invalid;False;False;;;;1610097726;;False;{};giixsby;False;t3_ksycwp;False;True;t1_giiusja;/r/anime/comments/ksycwp/guys_is_one_piece_dubfunimation_good/giixsby/;1610132715;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Quebec120;;;[];;;;text;t2_2iddjr1c;False;False;[];;Same. I've been watching it starting episode 1 and I'm almost on episode 70 now. Episode 1-2 introduce the world and characters to you, then episode 3-20 or so shows the build up to the main cast you see in episodes 1 and 2.;False;False;;;;1610097746;;False;{};giixt2f;False;t3_ksuv1z;False;False;t1_giiq4g2;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giixt2f/;1610132732;21;True;False;anime;t5_2qh22;;0;[]; -[];;;MarioLuigi0404;;;[];;;;text;t2_ny951;False;False;[];;I like the fast pace, personally. It can be hard to keep up with it if you’re watching subbed tho.;False;False;;;;1610097752;;False;{};giixtay;False;t3_ksuv1z;False;False;t1_giivm0f;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giixtay/;1610132738;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Riddler208;;;[];;;;text;t2_lpn1v;False;False;[];;"If you liked Gurren, the other Imaishi works (FLCL, Kill la Kill, Promare) would be a good starting point. Kill la Kill especially is a spiritual successor to Gurren in a lot of ways. - -Death Note is something that’s commonly recommended alongside Code Geass, as the two have a lot in common, but manage to be different enough to be their own things. - -For Great Pretender I might recommend Baccano, as both are really fast paced and character focused while having a fair amount of action.";False;False;;;;1610097902;;False;{};giixyj8;False;t3_ksxj9t;False;True;t3_ksxj9t;/r/anime/comments/ksxj9t/dont_know_what_anime_to_watch/giixyj8/;1610132843;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerdy314159265;;;[];;;;text;t2_752wc;False;False;[];;"Inb4 the last movie boosts the reception of older content retroactively and the top 10 becomes literally only Gintama and forces MAL to make a ""Top Anime that aren't Gintama"" list.";False;False;;;;1610097942;;False;{};giiy003;False;t3_ksuv1z;False;False;t1_giiuktv;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiy003/;1610132871;184;True;False;anime;t5_2qh22;;0;[]; -[];;;v_a_ibhav;;;[];;;;text;t2_3j6pg6aj;False;False;[];;">It's actually ending for real this time. - - - - - - Is it though?";False;False;;;;1610097943;;False;{};giiy025;False;t3_ksuv1z;False;True;t1_giiopjh;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiy025/;1610132871;0;True;False;anime;t5_2qh22;;0;[]; -[];;;bluephazon;;;[];;;;text;t2_54m44ye6;False;False;[];; Kyousougiga, kill la kill, Gurren Lagann off the top of my head.;False;False;;;;1610097949;;False;{};giiy09i;False;t3_ksyzow;False;True;t3_ksyzow;/r/anime/comments/ksyzow/something_similar_to_flcl/giiy09i/;1610132876;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Skyreader13;;;[];;;;text;t2_rixwo;False;False;[];;"But, the heart of Gintama is on those filler episodes tho - -Following these watch order will get you the main story faster, but you'll miss out so much fun.";False;False;;;;1610097984;;False;{};giiy1j9;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiy1j9/;1610132900;6;True;False;anime;t5_2qh22;;0;[]; -[];;;univoco;;;[];;;;text;t2_9nrjrmc9;False;False;[];;To me that's what makes it better than gintama. I have a really shorts attention span, so saiki is perfectfor me;False;False;;;;1610098064;;False;{};giiy4hp;False;t3_ksuv1z;False;False;t1_giivm0f;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiy4hp/;1610132957;33;True;False;anime;t5_2qh22;;0;[]; -[];;;Btw_kek;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SouvlakiSpace7;light;text;t2_i0pj6;False;False;[];;"* Kare Kano: Anno's anime after Evangelion, a romcom but stylistically Evangelion meets FLCL - -* Diebuster: same director as FLCL, sequel to Anno's debut anime Gunbuster. **WATCH GUNBUSTER FIRST** - -* Kyousougiga: similar levels of visual inventiveness and fun, coming of age but also a multi-generational story about family - -* Alien 9: a little more subdued and angsty, and unfortunately half-finished so you'll have to read the manga afterwards, but a very interesting 4 episode OVA about fighting aliens with alien hats as a metaphor for adolescence - -* Video Girl Ai: similar levels of teenage angst and I think the insert songs just hit very well - -* Sarazanmai: I don't even know how to describe this honestly. Just watch it and also watch every other Ikuhara anime if you haven't already";False;False;;;;1610098116;;False;{};giiy6ez;False;t3_ksyzow;False;True;t3_ksyzow;/r/anime/comments/ksyzow/something_similar_to_flcl/giiy6ez/;1610132994;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Skyreader13;;;[];;;;text;t2_rixwo;False;False;[];;The soul of gintama;False;False;;;;1610098163;;False;{};giiy85i;False;t3_ksuv1z;False;False;t1_giipcle;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiy85i/;1610133027;52;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610098248;;False;{};giiybbi;False;t3_ksuv1z;False;True;t1_giiy003;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiybbi/;1610133087;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610098348;;False;{};giiyewb;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiyewb/;1610133154;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NovaAnimePic;;;[];;;;text;t2_2zds72cv;False;False;[];;Would like one of these for the Fate series as well but I'm pretty sure that impossible;False;False;;;;1610098371;;False;{};giiyfqf;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiyfqf/;1610133168;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610098708;;False;{};giiyrox;False;t3_ksyzow;False;True;t3_ksyzow;/r/anime/comments/ksyzow/something_similar_to_flcl/giiyrox/;1610133393;1;True;False;anime;t5_2qh22;;0;[]; -[];;;void-hopper;;;[];;;;text;t2_3p5a13j9;False;False;[];;Death note;False;False;;;;1610098809;;False;{};giiyv7b;False;t3_ksyxk8;False;True;t3_ksyxk8;/r/anime/comments/ksyxk8/i_need_some_recommendations/giiyv7b/;1610133457;1;True;False;anime;t5_2qh22;;0;[]; -[];;;void-hopper;;;[];;;;text;t2_3p5a13j9;False;False;[];;Death note;False;False;;;;1610098817;;False;{};giiyv8j;False;t3_ksyxk8;False;True;t3_ksyxk8;/r/anime/comments/ksyxk8/i_need_some_recommendations/giiyv8j/;1610133458;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Niiiz;;;[];;;;text;t2_l5nyi;False;False;[];;"I've been playing a game since I joined Reddit some 6 or 7 years ago: every time I see a Gintama post with a gif or a clip, I watch it and try to figure out the plot of Gintama cuz I've never gotten around to reading any summary or the anime itself. - -I still have no fucking clue what's going on in the show.";False;False;;;;1610098885;;False;{};giiyxwx;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiyxwx/;1610133512;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hephaestus_God;;;[];;;;text;t2_wp7nx;False;True;[];;Start at episode 3?;False;False;;;;1610098914;;False;{};giiyyvd;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiyyvd/;1610133529;10;True;False;anime;t5_2qh22;;0;[]; -[];;;melvinlee88;;MAL a-amq;[];;https://myanimelist.net/profile/Ryan_Melvin15;dark;text;t2_156788;False;False;[];;"Penguin Highway and Soredemo Machi wa Mawatteiru for me. - -I gave Penguin Highway a 9 when I first watched it in cinemas but after I rewatched it with a friend, I had the biggest smile on my face as he enjoyed it as much as I did and as we talked more about the show, I realised I loved the movie more than I thought. I gave it a 10 and it's now my fav anime movie of all time. - -I'm a Soremachi shill at heart and I gave it a 10 the first time around but I wouldn't put it in my top 10. But after rewatching it and also with the manga as context, I can't believe how much I smiled and laughed at the same gags and the wholesomeness of the series and characters. It is now probably my top 5 anime, and well I shill it a lot on r/anime. Check Soremachi in search bar and I'm sure I am responsible for 90% of the Soremachi content here. Someone has to do it.";False;False;;;;1610098980;;False;{};giiz17e;False;t3_ksxk2m;False;True;t3_ksxk2m;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/giiz17e/;1610133575;2;True;False;anime;t5_2qh22;;0;[]; -[];;;internetpersonanona;;;[];;;;text;t2_5w6w1cap;False;False;[];;"one piece they literally make it retarded and put giant words on the screen every time someone throws an attack because apparently westerners need that sort of stimulation. - -it ruins the show.";False;False;;;;1610098997;;False;{};giiz1um;False;t3_ksycwp;False;True;t1_giivkcr;/r/anime/comments/ksycwp/guys_is_one_piece_dubfunimation_good/giiz1um/;1610133590;0;True;False;anime;t5_2qh22;;0;[]; -[];;;MarcosCruz901;;;[];;;;text;t2_8y3uki0;False;False;[];;Episode 50 is fucking hilarious, I'm glad I didn't skipped it;False;False;;;;1610099070;;False;{};giiz4jt;False;t3_ksuv1z;False;False;t1_gii9nnz;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiz4jt/;1610133642;5;True;False;anime;t5_2qh22;;0;[]; -[];;;christian_latinov;;;[];;;;text;t2_3z6s52;False;False;[];;"I watched a couple of episodes but I cannot find the clue in this. - -In Naruto we have ninjas. -In Bleach we have samurais kinda. -In Hunter X Hunter we have hunters -In Black Clover We have mages.. - -What we have in gintama?";False;False;;;;1610099154;;False;{};giiz7ld;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiz7ld/;1610133699;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JohannesVanDerWhales;;;[];;;;text;t2_25aq5co;False;False;[];;I've watched like 80 episodes of this. Does the show really have so much continuity that the watch order matters?;False;False;;;;1610099161;;False;{};giiz7vt;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiz7vt/;1610133705;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610099345;;False;{};giizehv;False;t3_ksuv1z;False;True;t1_giiz7ld;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giizehv/;1610133829;1;True;False;anime;t5_2qh22;;0;[]; -[];;;christian_latinov;;;[];;;;text;t2_3z6s52;False;False;[];;No, seriously what is gintama all about? Really make me watch it;False;False;;;;1610099404;;False;{};giizglf;False;t3_ksuv1z;False;True;t1_giizehv;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giizglf/;1610133875;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UltimateAnimeHero;;;[];;;;text;t2_oc4re;False;False;[];;Starts January 12.;False;False;;;;1610099588;;False;{};giizn8k;True;t3_kszgje;False;True;t3_kszgje;/r/anime/comments/kszgje/bungo_stray_dogs_wan_new_commercial/giizn8k/;1610134009;2;True;False;anime;t5_2qh22;;0;[]; -[];;;iamdandyking;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_r864k;False;True;[];;I would recommend watching Pororori hen between Gintama°. Gintama° is perfection and shouldn't be interrupted by anything else.;False;False;;;;1610099603;;False;{};giiznrr;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giiznrr/;1610134018;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Foreign-Isopod5599;;;[];;;;text;t2_7xrz9ia6;False;False;[];;">iS iT tHoUgH¿ - -GOAToki would be facepalming hard";False;False;;;;1610099639;;False;{};giizp09;False;t3_ksuv1z;False;False;t1_giiy025;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giizp09/;1610134048;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Foreign-Isopod5599;;;[];;;;text;t2_7xrz9ia6;False;False;[];;I mean, just go read the reviews on myanimelist. It pretty monopolises the top ten rankings;False;False;;;;1610099727;;False;{};giizs1j;False;t3_ksuv1z;False;True;t1_giizglf;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giizs1j/;1610134112;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Foreign-Isopod5599;;;[];;;;text;t2_7xrz9ia6;False;False;[];;"The only that’s a joke is your comment. - -Everybody laugh. - -Curtains.";False;False;;;;1610099740;;False;{};giizsht;False;t3_ksuv1z;False;True;t1_giir9vd;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giizsht/;1610134120;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;ilikeminecraft14;;;[];;;;text;t2_5n41ln9a;False;False;[];;Can you make one of the fate series;False;False;;;;1610099760;;False;{};giizt6r;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giizt6r/;1610134134;0;True;False;anime;t5_2qh22;;0;[]; -[];;;NotCereal_;;;[];;;;text;t2_6cesagyh;False;False;[];;**cries*;False;False;;;;1610099793;;False;{};giizueu;False;t3_ksuv1z;False;False;t1_giiwvgk;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giizueu/;1610134157;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Miru tighs and I want you to make a disgusted face and show me your underwear, both have unique and original premises - -Also good luck finding original things in other medium, don't know if you are aware but great shows are great because they don't come often";False;False;;;;1610099804;;False;{};giizusy;False;t3_kszbmc;False;True;t3_kszbmc;/r/anime/comments/kszbmc/anyone_else_think_anime_is_really_dull_lately/giizusy/;1610134165;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ConsiderationSmart26;;;[];;;;text;t2_7zpos1br;False;False;[];;There is no easy answer to what is gintama. At the lowest level you could say its about samurai but it is much more than that.;False;False;;;;1610099902;;False;{};giizy9b;False;t3_ksuv1z;False;True;t1_giiz7ld;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giizy9b/;1610134231;1;True;False;anime;t5_2qh22;;0;[]; -[];;;expressionofdeath;;;[];;;;text;t2_6cd7tds1;False;False;[];;One Piece and Gintama are tied for my favourites.;False;False;;;;1610099911;;False;{};giizykw;False;t3_ksuv1z;False;False;t1_giitwik;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giizykw/;1610134236;8;True;False;anime;t5_2qh22;;0;[]; -[];;;what_a_tuga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;I'm in despair;light;text;t2_25fqyhcq;False;False;[];;"So, you din't really watch Gintama -Gintama only really starts around episode 50. Before that, it's mostly character presentation";False;False;;;;1610099914;;False;{};giizyo0;False;t3_ksuv1z;False;False;t1_giiscz9;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giizyo0/;1610134238;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Akame_xo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Akamexo;light;text;t2_y49a2;False;False;[];;">My point is I can predict the end of most if not all anime I watch and I can literally predict the characters lines and what will happen next - -So don’t watch basic Shonen or other stuff that is generally targeted towards a younger crowd. The problem is with your choice of anime, not the anime itself";False;False;;;;1610099918;;False;{};giizytw;False;t3_kszbmc;False;True;t3_kszbmc;/r/anime/comments/kszbmc/anyone_else_think_anime_is_really_dull_lately/giizytw/;1610134241;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Topsi_Krett;light;text;t2_9p473xje;False;False;[];;Ok;False;False;;;;1610099962;;False;{};gij00bz;False;t3_kszig3;False;True;t3_kszig3;/r/anime/comments/kszig3/i_recently_found_mp4_files_of_forgotten_anime_on/gij00bz/;1610134268;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FprodTheDuck;;;[];;;;text;t2_2cpzaes;False;False;[];;At least we can still watch the Semi Final when it comes out next week, super hype for that;False;False;;;;1610100047;;False;{};gij03de;False;t3_ksuv1z;False;False;t1_giix2xd;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij03de/;1610134325;9;True;False;anime;t5_2qh22;;0;[]; -[];;;klaidas01;;;[];;;;text;t2_qggfx;False;False;[];;In any form of media, be it video games, books, movies or anything else, most of the content will be generic. It is easier to produce and still has an audience so it's a quick and relatively safe way to make money. This obviously happens even more with content geared towards a younger audience. This is nothing new, entertainment always works like this. The easy solution to this is to simply not watch them if you don't enjoy them. There are numerous quality shows getting released even at this moment, you only need to pick the ones you like.;False;False;;;;1610100081;;False;{};gij04mz;False;t3_kszbmc;False;True;t3_kszbmc;/r/anime/comments/kszbmc/anyone_else_think_anime_is_really_dull_lately/gij04mz/;1610134350;5;True;False;anime;t5_2qh22;;0;[]; -[];;;dv_recorder;;;[];;;;text;t2_8pd0s8e7;False;False;[];;Cool? I guess?;False;False;;;;1610100138;;False;{};gij06pf;False;t3_kszig3;False;False;t3_kszig3;/r/anime/comments/kszig3/i_recently_found_mp4_files_of_forgotten_anime_on/gij06pf/;1610134388;5;True;False;anime;t5_2qh22;;0;[]; -[];;;chooxy;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chooxy;light;text;t2_gg5tl;False;False;[];;Nah, the salty FMA:B stans will mass vote 1s or something.;False;False;;;;1610100315;;False;{};gij0cwr;False;t3_ksuv1z;False;False;t1_giiy003;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij0cwr/;1610134500;116;True;False;anime;t5_2qh22;;0;[]; -[];;;lhbdawn;;;[];;;;text;t2_5nsijqo7;False;False;[];;so long. gintama was a nice funny and a hilarious ride;False;False;;;;1610100378;;False;{};gij0f1t;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij0f1t/;1610134541;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;Outbreak Company. It was boring, somewhat confusing. After watching some other isekai maybe a year later somebody said that OC is a parody of the genre. So I watched it again, and it was funny, a lot more pleasant now that I had better context.;False;False;;;;1610100393;;False;{};gij0fk1;False;t3_ksxavu;False;True;t3_ksxavu;/r/anime/comments/ksxavu/have_you_ever_rewatched_a_show_and_found_out_it/gij0fk1/;1610134549;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hussefworx;;;[];;;;text;t2_5gleu8ro;False;False;[];;I’m currently on episode 70 do I need to go back and watch the movie i already passed ? Are all the movies listed here canon?;False;False;;;;1610100455;;False;{};gij0hpg;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij0hpg/;1610134592;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610100469;;False;{};gij0i84;False;t3_ksuv1z;False;True;t1_gij0cwr;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij0i84/;1610134602;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi bayek_of_manila, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610100471;moderator;False;{};gij0i9t;False;t3_ksuv1z;False;True;t1_gij0i84;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij0i9t/;1610134602;0;False;False;anime;t5_2qh22;;0;[]; -[];;;KK-Hunter;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/K-Khan&view=tile&status=7";light;text;t2_em45rsk;False;False;[];;"Fate/Stay Night (VN) > Fate/Hollow Ataraxia (VN) > Fate/Zero (Anime) is the best order for the main story. - -Anime-only: -Fate/Stay Night (2006) > Fate/Stay Night: Unlimited Bladeworks (not the movie version) > Fate/Stay Night: Heaven's Feel > Fate/Zero - -Just keep in mind that the anime-only order is nowhere near as good as the Visual Novel order, which I HIGHLY recommend.";False;False;;;;1610100487;;False;{};gij0ivb;False;t3_ksuv1z;False;True;t1_giiwtyh;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij0ivb/;1610134614;4;True;False;anime;t5_2qh22;;0;[]; -[];;;chooxy;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chooxy;light;text;t2_gg5tl;False;False;[];;The tama of gintama;False;False;;;;1610100501;;False;{};gij0jbn;False;t3_ksuv1z;False;False;t1_giiy85i;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij0jbn/;1610134623;33;True;False;anime;t5_2qh22;;0;[]; -[];;;jal90;;MAL;[];;http://myanimelist.net/profile/jal90;dark;text;t2_ijxq9;False;False;[];;It's a solid and useful thread, but I'm kind of bugged by the early decision to skip episodes 1 and 2. Why do people (like it's not only you, many people I've known in the fandom have this attitude toward these episodes as well). insist on not watching the first two episodes like they were the worst cancer to ever air in the show just bugs me. They are reasonably entertaining, and even if you don't know the characters, I think they still work as a funny introduction to their antics before the main story kicks in.;False;False;;;;1610100572;;False;{};gij0ls4;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij0ls4/;1610134669;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;Nice. I've heard good things about Key the metal idol.;False;False;;;;1610100594;;False;{};gij0mko;False;t3_kszig3;False;True;t3_kszig3;/r/anime/comments/kszig3/i_recently_found_mp4_files_of_forgotten_anime_on/gij0mko/;1610134685;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lcernosek7;;;[];;;;text;t2_dnhuw4m;False;False;[];;I’m genuinely can’t wait to dive in to this film. This anime has brought me so much joy over the last 2 years and no piece of media has ever affected me the way that Gintama. To all those out there looking to start this masterpiece of a show once you’re through your life will be impacted in some way or another. Thank you Yorozuya Gang for all the laughs,smiles and tears.;False;False;;;;1610100601;;False;{};gij0mu0;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij0mu0/;1610134689;5;True;False;anime;t5_2qh22;;0;[]; -[];;;mattmet08;;;[];;;;text;t2_498wjm3l;False;False;[];;Demon Slayer;False;False;;;;1610100610;;False;{};gij0n6e;False;t3_ksyxk8;False;True;t3_ksyxk8;/r/anime/comments/ksyxk8/i_need_some_recommendations/gij0n6e/;1610134696;1;True;False;anime;t5_2qh22;;0;[]; -[];;;androiduser243;;;[];;;;text;t2_3g8rexdf;False;False;[];;Attack on Titan is my personal favorite, other recs are Hunter x Hunter, Fate Series, Jojo's Bizarre Adventure, Vinland Saga, Parasyte, Demon Slayer, Death Note, Code Geass, and One Punch Man;False;False;;;;1610100621;;1610101219.0;{};gij0nj1;False;t3_ksyxk8;False;True;t3_ksyxk8;/r/anime/comments/ksyxk8/i_need_some_recommendations/gij0nj1/;1610134701;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Acxelion;;;[];;;;text;t2_ok2xa;False;False;[];;Damn I've got like a solid 3 seasons to watch thru before the movie.;False;False;;;;1610100637;;False;{};gij0o37;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij0o37/;1610134713;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Godzillamf3;;;[];;;;text;t2_201d4klb;False;False;[];;Oh really that's what sup.;False;False;;;;1610100648;;False;{};gij0ogj;True;t3_kszig3;False;True;t1_gij0mko;/r/anime/comments/kszig3/i_recently_found_mp4_files_of_forgotten_anime_on/gij0ogj/;1610134721;0;True;False;anime;t5_2qh22;;0;[]; -[];;;drSenku420_;;;[];;;;text;t2_8aw7tkyg;False;False;[];;Oh yea... Anime like gto(great teacher onizuka if you don't know the anime) will be in my heart just because I watch people having exciting relationships. Just like konosuba;False;False;;;;1610100660;;False;{};gij0ow5;False;t3_kswsf8;False;True;t3_kswsf8;/r/anime/comments/kswsf8/nothing_beats_the_happiness_of_watch_slice_of_life/gij0ow5/;1610134728;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OBrien;;;[];;;;text;t2_4r6se;False;False;[];;what a legend;False;False;;;;1610100705;;False;{};gij0qgl;False;t3_ksvfai;False;False;t1_giieacw;/r/anime/comments/ksvfai/in_anime_once_youre_grabbed_by_the_face_you_are/gij0qgl/;1610134764;5;True;False;anime;t5_2qh22;;0;[]; -[];;;graytotoro;;MAL;[];;https://myanimelist.net/animelist/graytotoro;dark;text;t2_6mvyf;False;False;[];;From the same director as *GuP* and *Shirobako*!;False;False;;;;1610100791;;False;{};gij0tgx;False;t3_ksvfai;False;True;t3_ksvfai;/r/anime/comments/ksvfai/in_anime_once_youre_grabbed_by_the_face_you_are/gij0tgx/;1610134828;3;True;False;anime;t5_2qh22;;0;[]; -[];;;aohige_rd;;;[];;;;text;t2_ttrmj;False;False;[];;The manga is still going by the way, and increasingly more psychotic and dark humor. Feels like more than half the cast are psychopaths now.;False;False;;;;1610100797;;False;{};gij0tpl;False;t3_ksvfai;False;True;t1_giix7bt;/r/anime/comments/ksvfai/in_anime_once_youre_grabbed_by_the_face_you_are/gij0tpl/;1610134834;3;True;False;anime;t5_2qh22;;0;[]; -[];;;R4K1B-;;;[];;;;text;t2_3ofrrmj7;False;False;[];;"Its a running joke on the show. - -But this time its ending for real";False;False;;;;1610100821;;False;{};gij0ulf;False;t3_ksuv1z;False;False;t1_giihzvq;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij0ulf/;1610134853;9;True;False;anime;t5_2qh22;;0;[]; -[];;;SocialLoser739;;;[];;;;text;t2_4ttuko0s;False;False;[];;"Boogiepop - -Kara no kyoukai - -Higurashi - -Rokka no yuusha - -Golden kamuy";False;False;;;;1610100890;;False;{};gij0wxx;False;t3_ksyxk8;False;True;t3_ksyxk8;/r/anime/comments/ksyxk8/i_need_some_recommendations/gij0wxx/;1610134907;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Miidas-92;;MAL;[];;https://myanimelist.net/profile/Miidas;dark;text;t2_ja1jx;False;False;[];;"It's normal to not like 90% of anime, but finding those 10% isn't that hard, unless you refuse to drop anime you dislike. There is more anime released now than before, so even if 90% is shit, I think there is more good anime overall. Here is 20 good anime, that's both pretty new and not generic: - -- Monogatari Series - -- The Tatami Galaxy - -- Mawaru Penguindrum - -- Humanity has Declined - -- Mahou Shoujo Madoka Magica - -- Mahoujin Guru Guru 2017 - -- Lupin III: The woman called Fujiko Mine - -- Ping Pong the Animation - -- Katanagatari - -- Teekyuu - -- Shirobako - -- Shouwa Genroku Rakugo Shinjuu - -- 3-Gatsu no Lion - -- Steins Gate - -- Girls Last Tour - -- Keep your hands off Eizouken! - -- Chihayafuru - -- Wandering Son - -- The eccentric family - -- Nichijou - -Avoided listing great anime, that you may consider ""generic"" like Heartcatch Precure, Hunter x Hunter 2011, Haikyuu and K-On! - -If you're ok with movies and MVs, here is 5 more - -- The case of Hana & Alice (movie) - -- Gotcha (Short) - -- Harmonia feat. Makoto (Short) - -- Kotobadori July 2019 (Short) - -- L'œil du cyclone (Short)";False;False;;;;1610100926;;1610101150.0;{};gij0y8p;False;t3_kszbmc;False;True;t3_kszbmc;/r/anime/comments/kszbmc/anyone_else_think_anime_is_really_dull_lately/gij0y8p/;1610134952;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SocialLoser739;;;[];;;;text;t2_4ttuko0s;False;False;[];;"Rezero - -Code geass - -Oregairu - -Hyouka";False;False;;;;1610100996;;False;{};gij10qk;False;t3_ksxk2m;False;True;t3_ksxk2m;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/gij10qk/;1610135000;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SocialLoser739;;;[];;;;text;t2_4ttuko0s;False;False;[];;"Overlord - - -Vinland saga - -Golden kamuy";False;False;;;;1610101015;;False;{};gij11dx;False;t3_ksxj9t;False;True;t3_ksxj9t;/r/anime/comments/ksxj9t/dont_know_what_anime_to_watch/gij11dx/;1610135012;1;True;False;anime;t5_2qh22;;0;[]; -[];;;boring_kun;;;[];;;;text;t2_6oh3fehe;False;False;[];;Well if you aren't convinced until ep 10 then maybe it isn't your cup of tea. But still I would prefer to watch it little more especially season 2. The major thing about the show is connectivity if you can relate to story then it would end up one of your most fav anime like me but if you don't then maybe you would find it little boring. It might not make you thrill like aot or death note nor will it make you cry like clanned or your lie in April but there is something about the story that make it one of its kind maybe it's the way it shows relation and especially the dialogs. The dialogs are one of the most beautiful thing about the anime so if you like philosophical stuff or are someone who enjoy reading books then you should defiantly watch it but if you are a action adventure kind of guy then maybe you won't find it very interesting.;False;False;;;;1610101025;;False;{};gij11qw;False;t3_kswsf8;False;False;t1_giiu00x;/r/anime/comments/kswsf8/nothing_beats_the_happiness_of_watch_slice_of_life/gij11qw/;1610135019;4;True;False;anime;t5_2qh22;;0;[]; -[];;;androiduser243;;;[];;;;text;t2_3g8rexdf;False;False;[];;Attack on Titan, Hunter x Hunter, Fate Series, Jojo's Bizarre Adventure, Vinland Saga, Parasyte, Demon Slayer, One Punch Man, Death Note, Your Name, A Silent Voice, I Want to Eat Your Pancreas;False;False;;;;1610101142;;False;{};gij15o9;False;t3_ksxj9t;False;True;t3_ksxj9t;/r/anime/comments/ksxj9t/dont_know_what_anime_to_watch/gij15o9/;1610135103;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SocialLoser739;;;[];;;;text;t2_4ttuko0s;False;False;[];;I need the band of the Hawk to be alive again;False;False;;;;1610101168;;False;{};gij16ms;False;t3_ksv5jr;False;True;t3_ksv5jr;/r/anime/comments/ksv5jr/if_you_could_make_it_to_where_a_anime_character/gij16ms/;1610135128;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DT-Z0mby;;;[];;;;text;t2_ec9a0rg;False;False;[];;thats the thing, i thought it should really fit my taste but it didnt click yet. gonna continue watching it at some point. thanks for the reply!;False;False;;;;1610101198;;False;{};gij17oi;False;t3_kswsf8;False;True;t1_gij11qw;/r/anime/comments/kswsf8/nothing_beats_the_happiness_of_watch_slice_of_life/gij17oi/;1610135147;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ignustax;;;[];;;;text;t2_91qin8cm;False;False;[];;Please. Help me. I don't understand what's so good about this anime. Everyone says it is brilliant, but I just simply don't get what's so good about the Gintama series.;False;False;;;;1610101407;;False;{};gij1f6i;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij1f6i/;1610135287;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Destrosymphony;;;[];;;;text;t2_q37j9;False;False;[];;But is it really the last...;False;False;;;;1610101729;;False;{};gij1qu4;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij1qu4/;1610135513;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheUltimateTeigu;;;[];;;;text;t2_jjzxh;False;False;[];;"The first season of One Punch Man is glorious. It has multiple free lance animators that came to work on the show for the sole purpose of animating it well. Each of the episodes stars pretty much a new set of excellent animators. It's a work of art, and when it comes to consistent quality in action I think there's few other shows you'll find that level of consistency. - -Second season...not so much.";False;False;;;;1610101789;;False;{};gij1t0w;False;t3_ksx5yz;False;False;t3_ksx5yz;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/gij1t0w/;1610135557;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Stupid_Otaku;;;[];;;;text;t2_82x0t;False;False;[];;"A bad adaptation is not necessarily a bad show. Karekano is a terrible adaptation yet the anime is still a cult classic. Full Moon is a terrible adaptation that went completely anime original after maybe 4 episodes yet the anime is still well-rated. Kodocha is a mediocre adaptation with a lot of anime-original elements yet the anime is still well-rated. The first FMA's ending is anime-original yet some still prefer the former for certain reasons. - -I think calling it shameless or a cash grab is a bit much, but your argument is basically the author didn't like the original, so she asked for it to be remade with her supervision. Therefore, your opinion is less valid for liking the older one because the author hated it. It's pretty obvious why someone would feel frustrated when they're talking to people who stubbornly appeal to authority to justify their opinion. - -And the nostalgia argument is a bit silly if they revisited the show later.";False;False;;;;1610101805;;1610102270.0;{};gij1tly;False;t3_ksxk2m;False;True;t1_giiwex8;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/gij1tly/;1610135567;0;False;False;anime;t5_2qh22;;0;[]; -[];;;Anon199760;;;[];;;;text;t2_49baaa9v;False;False;[];;{School-live} PTSD intensifies...;False;False;;;;1610101919;;False;{};gij1xpd;False;t3_kswsf8;False;True;t1_giioicu;/r/anime/comments/kswsf8/nothing_beats_the_happiness_of_watch_slice_of_life/gij1xpd/;1610135645;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CheValierXP;;;[];;;;text;t2_ha38f;False;False;[];;You are in for a treat, last summer I binge watched the whole series in less than a month, and felt like saying farewell to a friend I would never see again. Might rewatch it this summer too though.;False;False;;;;1610101976;;False;{};gij1zr4;False;t3_ksuv1z;False;False;t1_giiscz9;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij1zr4/;1610135689;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Rozinasran;;;[];;;;text;t2_njepf;False;False;[];;ikr, had to scroll so far down just to see someone else questioning this;False;False;;;;1610101992;;False;{};gij20c2;False;t3_ksuv1z;False;False;t1_giiyyvd;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij20c2/;1610135699;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Skyreader13;;;[];;;;text;t2_rixwo;False;False;[];;Exactly;False;False;;;;1610102054;;False;{};gij22gb;False;t3_ksuv1z;False;False;t1_gij0jbn;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij22gb/;1610135740;12;True;False;anime;t5_2qh22;;0;[]; -[];;;hitogomi911;;;[];;;;text;t2_83ec5qv5;False;False;[];;Have you seen Natsu no Arashi?;False;False;;;;1610102060;;False;{};gij22o4;False;t3_ksxk2m;False;True;t1_giiz17e;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/gij22o4/;1610135744;2;True;False;anime;t5_2qh22;;0;[]; -[];;;melvinlee88;;MAL a-amq;[];;https://myanimelist.net/profile/Ryan_Melvin15;dark;text;t2_156788;False;False;[];;"Have I ever. Check my MAL and I give it super high praise. S1 is a 10/10 and S2 is a 9/10. One of the best comedy period, and a gem not just from Shaft but for all anime. - -Also best time travelling system ever.";False;False;;;;1610102249;;False;{};gij29is;False;t3_ksxk2m;False;True;t1_gij22o4;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/gij29is/;1610135876;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Akai-AC;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Akai-AC;light;text;t2_3af1hwm4;False;False;[];;"This is getting me worried. - -I hope the whole ""winter is stacked"" thing doesn't stab us in the back.";False;False;;;;1610102312;;False;{};gij2bqt;False;t3_kszvbb;False;True;t3_kszvbb;/r/anime/comments/kszvbb/the_sakügan_production_presentation_that_was/gij2bqt/;1610135921;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LightningSalamander;;;[];;;;text;t2_3oirztky;False;False;[];;gintama is art;False;False;;;;1610102347;;False;{};gij2d2i;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij2d2i/;1610135947;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;But FMAB will probably stay at 1st, they will probably spam 1s if they saw Gintama rising which is pretty childish tbh.;False;False;;;;1610102379;;False;{};gij2e8j;False;t3_ksuv1z;False;False;t1_giiy003;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij2e8j/;1610135970;85;True;False;anime;t5_2qh22;;0;[]; -[];;;Straffick;;;[];;;;text;t2_cfgi0;False;False;[];;You would absolutely hate Teekyu. So fast paced but I guess it has to be since its a 2 minute show lol;False;False;;;;1610102456;;False;{};gij2h4h;False;t3_ksuv1z;False;False;t1_giivm0f;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij2h4h/;1610136029;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MrAuntJemima;;;[];;;;text;t2_53zrr;False;False;[];;Clearly you're never seen the new Charmed reboot 😂;False;False;;;;1610102472;;False;{};gij2hph;False;t3_ksuv1z;False;True;t1_giijdfo;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij2hph/;1610136042;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PsychosisCreamFloat;;;[];;;;text;t2_kmqtg63;False;False;[];;any reason to skip the first 2 episodes of the first gintama?;False;False;;;;1610102496;;False;{};gij2ikq;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij2ikq/;1610136060;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zombininja05;;;[];;;;text;t2_17vcwv8c;False;False;[];;Damn that's quite a few;False;False;;;;1610102572;;False;{};gij2lcq;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij2lcq/;1610136117;2;True;False;anime;t5_2qh22;;0;[]; -[];;;reddit_reaper;;;[];;;;text;t2_6vnju;False;False;[];;Pfft all i do is binge watch...i once binged 450 episodes of one piece in a week and a half lol;False;False;;;;1610102579;;False;{};gij2lki;False;t3_ksuv1z;False;True;t1_gii9nnz;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij2lki/;1610136121;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NightCupcake;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/NoodleGalaxy;light;text;t2_77fhp1wn;False;False;[];;L;False;False;;;;1610102608;;False;{};gij2ml9;False;t3_ksv5jr;False;True;t3_ksv5jr;/r/anime/comments/ksv5jr/if_you_could_make_it_to_where_a_anime_character/gij2ml9/;1610136139;2;True;False;anime;t5_2qh22;;0;[]; -[];;;__Raxy__;;;[];;;;text;t2_2ei6tsb7;False;False;[];;Maybe I'll watch it one day;False;False;;;;1610102634;;False;{};gij2nl7;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij2nl7/;1610136158;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NightCupcake;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/NoodleGalaxy;light;text;t2_77fhp1wn;False;False;[];;That's good to know.;False;False;;;;1610102862;;False;{};gij2vxg;False;t3_ksuv1z;False;True;t1_giiu5y8;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij2vxg/;1610136319;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AndreZB2000;;;[];;;;text;t2_2xdipwnx;False;False;[];;I got into this show 8 years ago when I was but a teen. It pains me to see it go, guys.;False;False;;;;1610102898;;False;{};gij2x9i;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij2x9i/;1610136342;2;True;False;anime;t5_2qh22;;0;[]; -[];;;zakattak456;;;[];;;;text;t2_jfm3oqv;False;False;[];;How many episodes? I don't really get the pic;False;False;;;;1610102902;;False;{};gij2xf5;False;t3_ksuv1z;False;True;t1_giiud6s;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij2xf5/;1610136345;2;True;False;anime;t5_2qh22;;0;[]; -[];;;namrucasterly;;;[];;;;text;t2_40ze1ant;False;False;[];;Tfw I was planning to simply watch the 365 episodes (if you discount the first 2 episodes) at a pace of 1 episode a day throughout the entire year lmao;False;False;;;;1610102989;;False;{};gij30ke;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij30ke/;1610136404;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NightCupcake;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/NoodleGalaxy;light;text;t2_77fhp1wn;False;False;[];;I fucked up by watching unlimited blade works first then? I only watched a few episodes though.;False;False;;;;1610102999;;False;{};gij30xn;False;t3_ksuv1z;False;True;t1_gij0ivb;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij30xn/;1610136411;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NightCupcake;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/NoodleGalaxy;light;text;t2_77fhp1wn;False;False;[];;Start at episode 3?;False;False;;;;1610103057;;False;{};gij3334;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij3334/;1610136459;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KK-Hunter;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/K-Khan&view=tile&status=7";light;text;t2_em45rsk;False;False;[];;There's no ideal anime-only order for Fate anyway so it's whatever as long as you've watched at least UBW before Heaven's Feel.;False;False;;;;1610103068;;False;{};gij33gn;False;t3_ksuv1z;False;True;t1_gij30xn;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij33gn/;1610136466;3;True;False;anime;t5_2qh22;;0;[]; -[];;;semprotanbayigonTM;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/levleft/;light;text;t2_6bjfk6ak;False;False;[];;"So, we dont have to watch the first 2 episodes? - -And what does Gintama Movie 1 (58-61) mean? What does that number mean?";False;False;;;;1610103068;;False;{};gij33h9;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij33h9/;1610136467;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;There are 367 episodes in total and 3 movie (Benizakura arc, Be Forever Yorozuya and the final movie).;False;False;;;;1610103192;;False;{};gij3806;False;t3_ksuv1z;False;False;t1_gij2xf5;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij3806/;1610136571;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hyliaforce;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Hyliaforce;light;text;t2_223him2r;False;False;[];;Dont forget the semi final, takes place befor the final movie;False;False;;;;1610103195;;False;{};gij384z;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij384z/;1610136573;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Darkside231001;;;[];;;;text;t2_4dj5ostf;False;False;[];;He never said he did. He said he would like to finish it and that he thought it would be up his alley.;False;False;;;;1610103200;;False;{};gij38bf;False;t3_ksuv1z;False;False;t1_giizyo0;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij38bf/;1610136576;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ChickenyIce;;;[];;;;text;t2_18r6o501;False;False;[];;Now hear me out Gintama fillers are actually good;False;False;;;;1610103286;;False;{};gij3bi4;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij3bi4/;1610136637;4;True;False;anime;t5_2qh22;;0;[]; -[];;;zakattak456;;;[];;;;text;t2_jfm3oqv;False;False;[];;Is Gintama (2015) onwards a remake?;False;False;;;;1610103303;;False;{};gij3c3t;False;t3_ksuv1z;False;True;t1_gij3806;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij3c3t/;1610136649;1;True;False;anime;t5_2qh22;;0;[]; -[];;;altriaa;;;[];;;;text;t2_3yk28pzo;False;False;[];;Does anyone have something like this but one piece movies?;False;False;;;;1610103396;;False;{};gij3fhq;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij3fhq/;1610136714;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"I didnt say it was a bad show, i said i enjoyed the original but it felt lacking. - -And she never asked for it to be remade. People kept asking her over the years and she turned them down until recently when she finally gave in but under some conditions. The people were happy to accept her conditions and wanted to make sure she was involved so she could see the proper adaption of the story she wrote. - -And while i did enjoy the older show when it came out, i didnt have any other options as it was all we had. When the remake came out, i immediately watched it and enjoyed the hell out of it, way preferring it over the original adaption. Just knowing eventually you will see the end is alone enough reason to watch it. The original series was cut short and left hanging and so people who watched that and swear up and down by it are missing HUGE chunks of the story, the characters, and the overall progression, and most of all, the author's story. - -Its fine to like unfinished and flawed adaptions of things, but it is rude to belittle the accurate product and the creator and blindly cling to the flawed one. - -Like i said, i liked Fruits Basket manga, i watched the original when it came out and liked it too and bought it. I wondered why it left off and looked into it and saw it had diverged and the author wasnt happy. I understood where she was coming from having seen the divergence and the source. I moved on with my life, never expecting to see an anime adaption finish it. 20 years later we see the opportunity rise for a proper adaption and the author is on board, i am beyond excited and i wait eagerly for it to finish so i can enjoy it, and i do. Now i eagerly await each new season to see the story grow closer to the end because seeing the end of a story really makes the whole journey worth it. - -Does me likeing the remake invalidate my experience with the original? Hell no. The original was how i met a person who would become one of my closest friends and developed a long friendship off anime. Does me likeing the original invalidate my experience with the remake? Hell no. Its fine to like something in the past, but its not right to blindly refuse to accept the present. Its like people who refuse to accept progression in the world and cling to the past. It just isnt right. And its less right to trash the present because of the past you cling so dearly too.";False;False;;;;1610103417;;False;{};gij3ga3;False;t3_ksxk2m;False;True;t1_gij1tly;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/gij3ga3/;1610136729;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GhostsInMyAss;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/momoguy123;light;text;t2_631oj5bx;False;False;[];;The first two episodes are purely to celebrate the adaptation of the manga. The story starts at ep.3;False;False;;;;1610103424;;False;{};gij3gi9;False;t3_ksuv1z;False;False;t1_gij20c2;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij3gi9/;1610136733;16;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;nope, it's all new content.;False;False;;;;1610103448;;False;{};gij3hem;False;t3_ksuv1z;False;False;t1_gij3c3t;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij3hem/;1610136752;2;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"[Koi Kaze](https://anilist.co/anime/634/Koi-Kaze/) -Drama, Psychological, Romance, Slice of Life - -[Kill la Kill](https://anilist.co/anime/18679/Kill-la-Kill/) -Action, Comedy, Ecchi - -[K-ON!](https://anilist.co/anime/5680/KON/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_k-on) -Comedy, Music, Slice of Life - -[Clannad](https://anilist.co/anime/2167/Clannad/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_clannad) -Comedy, Drama, Romance, Slice of Life, Supernatural - -[When They Cry](https://anilist.co/anime/934/When-They-Cry/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_higurashi_no_naku_no_koro_ni) -Horror, Mystery, Psychological, Supernatural, Thriller - -[Miru Tights](https://anilist.co/anime/106967/Miru-Tights/) -Ecchi, Slice of Life - -[Ao-chan Can't Study!](https://anilist.co/anime/105989/Aochan-Cant-Study/) -Comedy, Ecchi, Romance";False;False;;;;1610103462;;False;{};gij3hy0;False;t3_ksyxk8;False;True;t3_ksyxk8;/r/anime/comments/ksyxk8/i_need_some_recommendations/gij3hy0/;1610136762;2;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"[Kill la Kill](https://anilist.co/anime/18679/Kill-la-Kill/) -Action, Comedy, Ecchi - -[Gurren Lagann](https://anilist.co/anime/2001/Gurren-Lagann/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_tengen_toppa_gurren_lagann) -Action, Comedy, Drama, Mecha, Romance, Sci-Fi - -[Clannad](https://anilist.co/anime/2167/Clannad/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_clannad) -Comedy, Drama, Romance, Slice of Life, Supernatural";False;False;;;;1610103514;;False;{};gij3jwg;False;t3_ksyzow;False;True;t3_ksyzow;/r/anime/comments/ksyzow/something_similar_to_flcl/gij3jwg/;1610136799;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rozinasran;;;[];;;;text;t2_njepf;False;False;[];;Thank you, Ghostsinmyass.;False;False;;;;1610103579;;False;{};gij3m9x;False;t3_ksuv1z;False;True;t1_gij3gi9;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij3m9x/;1610136854;4;True;False;anime;t5_2qh22;;0;[]; -[];;;RaygunnerRei;;;[];;;;text;t2_ts5y7;False;False;[];;Look up choice paradoxx;False;False;;;;1610103615;;False;{};gij3njz;False;t3_ksxj9t;False;True;t3_ksxj9t;/r/anime/comments/ksxj9t/dont_know_what_anime_to_watch/gij3njz/;1610136879;1;True;False;anime;t5_2qh22;;0;[]; -[];;;destiny24;;;[];;;;text;t2_85zu3;False;False;[];;The answer is obviously Ping Pong;False;False;;;;1610103680;;False;{};gij3px5;False;t3_ksx5yz;False;True;t3_ksx5yz;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/gij3px5/;1610136927;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jad3su;;;[];;;;text;t2_8no25aej;False;False;[];;Fine I'll watch it. I can't seem to avoid it anymore 🤣;False;False;;;;1610103696;;False;{};gij3qib;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij3qib/;1610136938;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"They are still doing that? Don't know about anime, but back in the day they sold this combo version because not everyone had a blu ray but they wanted one (it was expensive af), so to avoid buying the DVD now and the blu ray later when you could afford one, they created this combo version. - -That's not a anime thing, I bought iron man that way over 10 years ago";False;False;;;;1610103760;;False;{};gij3syg;False;t3_kt0700;False;False;t3_kt0700;/r/anime/comments/kt0700/what_is_the_point_of_bluray_dvd_combi_editions/gij3syg/;1610136989;5;True;False;anime;t5_2qh22;;0;[]; -[];;;it_was_a_diversion;;;[];;;;text;t2_5hq9pytl;False;False;[];;"Currently in the middle of Gintama' - -This show is so meta all the time I love it - -*SPARKING!*";False;False;;;;1610103791;;False;{};gij3u4g;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij3u4g/;1610137012;3;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;I presume it's because a collector who would be buying a blu-ray copy would want every way of being able to watch it, plus it fills the box, to make it seem more impressive.;False;False;;;;1610103805;;False;{};gij3un1;False;t3_kt0700;False;True;t3_kt0700;/r/anime/comments/kt0700/what_is_the_point_of_bluray_dvd_combi_editions/gij3un1/;1610137024;2;True;False;anime;t5_2qh22;;0;[]; -[];;;validproof;;;[];;;;text;t2_t10l6;False;False;[];;Isn't just one of the funniest, it is THE funniest. No comedy comes close to Gintama.;False;False;;;;1610103858;;False;{};gij3wlq;False;t3_ksuv1z;False;False;t1_giismoo;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij3wlq/;1610137062;10;True;False;anime;t5_2qh22;;0;[]; -[];;;nathanb2004;;;[];;;;text;t2_4tr2p;False;False;[];;This;False;False;;;;1610103887;;False;{};gij3xp3;False;t3_ksuv1z;False;True;t1_giivm0f;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij3xp3/;1610137082;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Val;;;[];;;;text;t2_u8cip;False;False;[];;Dude, Gintama fillers are hilarious;False;False;;;;1610103960;;False;{};gij40ck;False;t3_ksuv1z;False;False;t1_giiorkl;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij40ck/;1610137136;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Deanomac2010;;;[];;;;text;t2_7w8w2jz4;False;False;[];;"Hows that even possibly lol! - -Great show those.";False;False;;;;1610103989;;False;{};gij41gu;False;t3_ksuv1z;False;False;t1_gij2lki;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij41gu/;1610137159;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FixingCarp;;;[];;;;text;t2_4iwg10iv;False;False;[];;thank you (´ω`*);False;False;;;;1610103994;;False;{};gij41o9;True;t3_ksyzow;False;True;t1_giiy09i;/r/anime/comments/ksyzow/something_similar_to_flcl/gij41o9/;1610137163;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FixingCarp;;;[];;;;text;t2_4iwg10iv;False;False;[];;thankss, i'll watch them all (´ω`*);False;False;;;;1610104018;;False;{};gij42mi;True;t3_ksyzow;False;True;t1_giiy6ez;/r/anime/comments/ksyzow/something_similar_to_flcl/gij42mi/;1610137180;1;True;False;anime;t5_2qh22;;0;[]; -[];;;degenerate-edgelord;;;[];;;;text;t2_1hbjff8i;False;False;[];;">FUCKIN GENERIC ASS REASON ANIME CHARACTERS DO THINGS FOR - -This does piss me off. Very much.";False;False;;;;1610104039;;False;{};gij43fm;False;t3_kszbmc;False;True;t3_kszbmc;/r/anime/comments/kszbmc/anyone_else_think_anime_is_really_dull_lately/gij43fm/;1610137198;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Val;;;[];;;;text;t2_u8cip;False;False;[];;It's the only anime I have to take breaks in between episodes sometimes.... because I'm tired from laughing hysterically.;False;False;;;;1610104062;;False;{};gij44ar;False;t3_ksuv1z;False;False;t1_giisqqo;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij44ar/;1610137224;10;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"K is an amazing series, and if youve only seen season 1 you are missing a lot of the story still. - -The first season is a lot of setup, but the movie after and the 2nd season, and then the 6 movies after that really bring it all to something bigger. It really is a very interesting story if you follow it. - -Here is a post i use for K threads with the order to watch the show in, trailers for each installment, and some choice music picks too because the soundtrack is amazing. - ----------- - -[**The K Series has some amazing action scenes.**](https://www.youtube.com/watch?v=r8I95WL9H08) - -If you dont know what K is, its a Action Supernatural Mystery Drama about 7 Kings who are chosen and given power and about how each chooses to rule thier clan and territory and the butting heads between the clans and kings. - -[**K PROJECT**](https://myanimelist.net/anime/14467/K) - [PV](https://www.youtube.com/watch?v=6g08heaNsbI) -[**K MISSING KINGS**](https://myanimelist.net/anime/16904/K__Missing_Kings) - [PV](https://www.youtube.com/watch?v=ErNI908qRgw) -[**K RETURN OF KINGS**](https://myanimelist.net/anime/27991/K__Return_of_Kings) - [PV](https://www.youtube.com/watch?v=v_J4Kf2SxE0) -[**K SEVEN STORIES**](https://myanimelist.net/anime/33248/K__Seven_Stories_Movie_1_-_R_B_-_Blaze) - [PV](https://www.youtube.com/watch?v=Ocn6OkCGRQI) - -Its very gorgeous series and i highly recommend anyone to check it out. Look at the PVs to get a feel for what kinda show it is. But as i said, its a gorgeous visual experience. The show also has gorgeous soundtrack too. - -[Tsumetai heya Hitori](https://www.youtube.com/watch?v=U84FL2Y2HHI) - [Flame of Red](https://soundcloud.com/cristalgt28/flame-of-red-kushina-anna) - [KIZUNA](https://youtu.be/l-w8A-vTB2s) - [Lost Small World](https://youtu.be/jIzxUIsDs78) - -[](#meguminthumbsup)";False;False;;;;1610104065;;False;{};gij44do;False;t3_ksxk2m;False;True;t1_giixkui;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/gij44do/;1610137227;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SoraForBestBoy;;;[];;;;text;t2_1a418t6t;False;True;[];;Gintama getting nice frame upgrades;False;False;;;;1610104071;;False;{};gij44mf;False;t3_ksuv1z;False;False;t1_giiticr;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij44mf/;1610137234;58;True;False;anime;t5_2qh22;;0;[]; -[];;;Jackblast2903;;;[];;;;text;t2_p4788;False;False;[];;Thanks! I was actually going to start watching this anime this week so this should come helpful;False;False;;;;1610104115;;False;{};gij468d;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij468d/;1610137267;2;True;False;anime;t5_2qh22;;0;[]; -[];;;notSylas;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/DyslexicOwl;light;text;t2_2yazvy7q;False;False;[];;Fck that, Just go to MyAnimelist and watch it with the Order it's not fkn Monogatari Series or Fate Series, don't confuse new comers;False;False;;;;1610104253;;False;{};gij4bdb;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij4bdb/;1610137368;1;True;False;anime;t5_2qh22;;0;[];True -[];;;infinite_lyy;;;[];;;;text;t2_9lftz77s;False;False;[];;Check out Wotakoi! Its adorable and wholesome;False;False;;;;1610104339;;False;{};gij4elr;False;t3_kswy22;False;True;t3_kswy22;/r/anime/comments/kswy22/rom_com_wholesome_or_harem_animes/gij4elr/;1610137437;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Leiothrix;;;[];;;;text;t2_1210nz;False;False;[];;"It means that they can collect audiences that have either a BluRay or DVD player. - -Adding a DVD adds a couple of cents, not a couple of dollars. - -The media and case are worth basically nothing, you're paying for licensing and distribution.";False;False;;;;1610104414;;False;{};gij4hfh;False;t3_kt0700;False;False;t3_kt0700;/r/anime/comments/kt0700/what_is_the_point_of_bluray_dvd_combi_editions/gij4hfh/;1610137489;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Val;;;[];;;;text;t2_u8cip;False;False;[];;"Why don't you just watch it? The worse that can happen is that you find thst it's not for you, and you stop after a few episodes... - -Actually, the absolute worst thing that can happen is that you end up falling in love with the charm of Gintama and the humor in it clicks with you so well that you constantly struggle to breathe because of uncontrollable laughter.";False;False;;;;1610104466;;False;{};gij4jet;False;t3_ksuv1z;False;False;t1_gij1f6i;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij4jet/;1610137526;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Leiothrix;;;[];;;;text;t2_1210nz;False;False;[];;Good for you.;False;False;;;;1610104482;;False;{};gij4jza;False;t3_kszig3;False;True;t3_kszig3;/r/anime/comments/kszig3/i_recently_found_mp4_files_of_forgotten_anime_on/gij4jza/;1610137537;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Deanomac2010;;;[];;;;text;t2_7w8w2jz4;False;False;[];;"Gintama or one piece! - -If you watch bleach just expect alot of plot holes..";False;False;;;;1610104616;;False;{};gij4p06;False;t3_ksuv1z;False;True;t1_giiw78b;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij4p06/;1610137639;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dooder39;;;[];;;;text;t2_9kxhf;False;False;[];;This watch order list is hella confusing if you're watching it on Crunchy.....;False;False;;;;1610104666;;False;{};gij4qxl;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij4qxl/;1610137675;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tyraster;;MAL;[];;https://myanimelist.net/animelist/Tyraster;dark;text;t2_ruzjf;False;False;[];;"So, question. - -Does Gintama have an actual serious story to tell? I know it starts off as episodic comedy because I tried watching a handful of episodes like a decade ago but the comedy just didn't resonate with me and I don't think it ever will. - -If yes, then when does it get serious and does it ever go back to being an episodic comedy?";False;False;;;;1610104709;;False;{};gij4sjz;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij4sjz/;1610137705;2;True;False;anime;t5_2qh22;;0;[]; -[];;;wack-scientist;;;[];;;;text;t2_8x78muq8;False;False;[];;I sort of felt the same reaction when I first watched it, but now I feel truly invested in the series.;False;False;;;;1610104741;;False;{};gij4tq6;False;t3_ksvk1w;False;True;t1_giiezl9;/r/anime/comments/ksvk1w/rascal_does_not_dream_of_a_dreaming_girl_ending/gij4tq6/;1610137727;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;VERY INTERESTING DUDE;False;False;;;;1610104822;;False;{};gij4wmh;False;t3_ksyh0u;False;True;t3_ksyh0u;/r/anime/comments/ksyh0u/oh_my_god_i_just_realized_the_world_from_your/gij4wmh/;1610137784;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MATO-18;;;[];;;;text;t2_5htvo9cc;False;False;[];;Saving this image incase I decide to start on Gintama later down the line I suppose;False;False;;;;1610104980;;False;{};gij52j4;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij52j4/;1610137895;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OrderofChaosdeath;;;[];;;;text;t2_1ddr197u;False;False;[];;So what streaming services can I watch these on? I’ve been meaning to check out this series after seeing all of the clips posted here.;False;False;;;;1610104995;;False;{};gij533m;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij533m/;1610137905;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dilroopgill;;;[];;;;text;t2_i6zl2;False;False;[];;I never watched the movies, I hella forgot the episodes referenced them and I meant to;False;False;;;;1610104997;;False;{};gij5362;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij5362/;1610137906;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Deanomac2010;;;[];;;;text;t2_7w8w2jz4;False;False;[];;"One Piece is a fantastic story with grand adventure lore and above all else world building that no other show will ever come close too! - -Its totally different from gintama for me but there both 10/10 shows! - -I love one piece anime but after the timeskip some of the pacing can be hit or miss!";False;False;;;;1610105007;;False;{};gij53jx;False;t3_ksuv1z;False;True;t1_giitwik;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij53jx/;1610137913;2;True;False;anime;t5_2qh22;;0;[]; -[];;;giangerd;;;[];;;;text;t2_1byk5f1m;False;False;[];;So you either watch movie 1 or the episodes 58-61? I am on episode 57;False;False;;;;1610105148;;False;{};gij58sh;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij58sh/;1610138010;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tr-juli;;;[];;;;text;t2_14dujk;False;False;[];;"If I were you I'd keep the movie you missed (Benizakura arc) for later when you feel like re-experiencing the story! There are some cameos of characters you haven't met yet in it. If you're interested though the movie version of the last fight of the arc is awesome and available on YT (Gintoki and Katsura vs Harusame). -The Benizakura movie is canon since it's just the arc redone, and the second movie is non-canon, it's a story written for the film. But it's awesome so I wouldn't advise skipping it! The final movie which came out today is canon, it adapts the final part of the manga.";False;False;;;;1610105206;;False;{};gij5ayl;False;t3_ksuv1z;False;True;t1_gij0hpg;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij5ayl/;1610138057;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MrCoolyp123;;;[];;;;text;t2_7ywfiysc;False;False;[];;DONDAKEEEEEE;False;False;;;;1610105390;;False;{};gij5hwi;False;t3_ksuv1z;False;True;t1_giiw88t;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij5hwi/;1610138187;1;True;False;anime;t5_2qh22;;0;[]; -[];;;syamimerinin;;;[];;;;text;t2_4teeffol;False;False;[];;I so love with Gintama!Thank you for this order,i am so freaking happy XD;False;False;;;;1610105512;;False;{};gij5mgc;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij5mgc/;1610138274;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lizz71;;;[];;;;text;t2_16pgar;False;False;[];;Gintama is mostly episodic stuff with great comedy, so there is no rush or pressure to finish it quickly. You can watch an episode whenever you need some laughs and enjoy it.;False;False;;;;1610105562;;False;{};gij5ocw;False;t3_ksuv1z;False;True;t1_giisi49;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij5ocw/;1610138310;1;True;False;anime;t5_2qh22;;0;[]; -[];;;memerobber69;;;[];;;;text;t2_42nrx9f9;False;True;[];;Gintama is one of the best anime to have ever existed. It has everything from drama to action to scifi to romance to comedy to horror to slice of life. I wish it wouldn't end.;False;False;;;;1610105675;;False;{};gij5sk6;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij5sk6/;1610138389;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610105723;moderator;False;{};gij5ue1;False;t3_kt0rmt;False;True;t3_kt0rmt;/r/anime/comments/kt0rmt/does_anyone_know_when_the_umibe_no_étranger_movie/gij5ue1/;1610138425;1;False;False;anime;t5_2qh22;;0;[]; -[];;;babydave371;;MAL a-amq;[];;https://myanimelist.net/profile/babydave371;dark;text;t2_sak6n;False;False;[];;"This got answered by Justin Sevaikis if I remember correctly. - -Basically the answer is that adding the DVD costs them next to nothing so it is a nice bonus for the consumer as it means you have more options to play the media on, for example playing on your laptop in bed or something. Plus, a lot of people just don't have a BD player, I certainly wouldn't unless I wanted to import releases from the USA and needed an international player.";False;False;;;;1610105738;;False;{};gij5uy2;False;t3_kt0700;False;False;t3_kt0700;/r/anime/comments/kt0700/what_is_the_point_of_bluray_dvd_combi_editions/gij5uy2/;1610138436;11;True;False;anime;t5_2qh22;;0;[]; -[];;;mrmcbreakfast;;;[];;;;text;t2_7yjx9;False;False;[];;For someone looking to jump in would it be better to read the manga first or watch the anime? One Piece is my favorite series of all time but I usually recommend the manga because of the anime's terrible pacing and inconsistent animation;False;False;;;;1610105746;;False;{};gij5v93;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij5v93/;1610138443;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610105794;moderator;False;{};gij5x2t;False;t3_kt0s5o;False;True;t3_kt0s5o;/r/anime/comments/kt0s5o/a_question_regarding_copyright_laws_of_animemanga/gij5x2t/;1610138475;0;False;False;anime;t5_2qh22;;0;[]; -[];;;VincentOfEngland;;;[];;;;text;t2_alo8i;False;False;[];;bro don't worry bro it gets good after 200 episodes bro the real show hasn't even begun yet bro;False;False;;;;1610105795;;False;{};gij5x4f;False;t3_ksuv1z;False;False;t1_giizyo0;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij5x4f/;1610138477;37;True;False;anime;t5_2qh22;;0;[]; -[];;;POTATOplays101;;;[];;;;text;t2_5waykguv;False;False;[];;Thanks for the comment 😂;False;False;;;;1610105799;;False;{};gij5xaa;True;t3_kszbmc;False;True;t1_gij43fm;/r/anime/comments/kszbmc/anyone_else_think_anime_is_really_dull_lately/gij5xaa/;1610138479;0;True;False;anime;t5_2qh22;;0;[]; -[];;;POTATOplays101;;;[];;;;text;t2_5waykguv;False;False;[];;Thanks this will help I see a good amount of new titles there;False;False;;;;1610105856;;False;{};gij5zff;True;t3_kszbmc;False;True;t1_gij0y8p;/r/anime/comments/kszbmc/anyone_else_think_anime_is_really_dull_lately/gij5zff/;1610138518;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lloydy33;;;[];;;;text;t2_135zaeb2;False;False;[];;Of course, it costs next to nothing for them to produce it, but it adds significantly more onto the price we have to pay for it. They should just stick to separate DVD and blu-ray editions as is the norm. It's especially worse when there is no alternative and if you want one or the other (blu-ray or dvd), you are going to pay extra and be stuck with 2 of the same series on different formats, one of which you'll likely never touch.;False;False;;;;1610105890;;False;{};gij60om;False;t3_kt0700;False;True;t1_gij4hfh;/r/anime/comments/kt0700/what_is_the_point_of_bluray_dvd_combi_editions/gij60om/;1610138541;2;True;False;anime;t5_2qh22;;0;[]; -[];;;POTATOplays101;;;[];;;;text;t2_5waykguv;False;False;[];;Idk when I was younger I loved it ate that shit up but now I guess I’m just growing out of the same old same old;False;False;;;;1610105907;;False;{};gij619w;True;t3_kszbmc;False;True;t1_gij04mz;/r/anime/comments/kszbmc/anyone_else_think_anime_is_really_dull_lately/gij619w/;1610138552;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;No game no life;False;False;;;;1610105913;;False;{};gij61i7;False;t3_ksyxk8;False;False;t3_ksyxk8;/r/anime/comments/ksyxk8/i_need_some_recommendations/gij61i7/;1610138556;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Strelok8;;;[];;;;text;t2_2ugdc8yk;False;False;[];;Bro ur going down;False;False;;;;1610105922;;False;{};gij61vn;False;t3_kt0s5o;False;True;t3_kt0s5o;/r/anime/comments/kt0s5o/a_question_regarding_copyright_laws_of_animemanga/gij61vn/;1610138562;7;True;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;What he did wasn't legal, but the police won't track him down.;False;False;;;;1610105927;;False;{};gij6235;False;t3_kt0s5o;False;True;t3_kt0s5o;/r/anime/comments/kt0s5o/a_question_regarding_copyright_laws_of_animemanga/gij6235/;1610138568;7;True;False;anime;t5_2qh22;;0;[]; -[];;;POTATOplays101;;;[];;;;text;t2_5waykguv;False;False;[];;There are anime with serious topics that target an old audience but you are right the ones made for younger people/kids are very simple and easy to see through;False;False;;;;1610105961;;False;{};gij63ex;True;t3_kszbmc;False;True;t1_giizytw;/r/anime/comments/kszbmc/anyone_else_think_anime_is_really_dull_lately/gij63ex/;1610138593;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Yeah the police of Japan will take a plane and arrest him in foreigner territory, his life is over unfortunately;False;False;;;;1610105979;;1610109535.0;{};gij643l;False;t3_kt0s5o;False;True;t3_kt0s5o;/r/anime/comments/kt0s5o/a_question_regarding_copyright_laws_of_animemanga/gij643l/;1610138606;12;True;False;anime;t5_2qh22;;0;[]; -[];;;POTATOplays101;;;[];;;;text;t2_5waykguv;False;False;[];;Hahah your right and thanks for the suggestions;False;False;;;;1610105997;;False;{};gij64v2;True;t3_kszbmc;False;True;t1_giizusy;/r/anime/comments/kszbmc/anyone_else_think_anime_is_really_dull_lately/gij64v2/;1610138620;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;"Everyone have their opinion. -For You is steins:gate, for another guy Attack on titan, for another HxH.....";False;False;;;;1610106004;;False;{};gij654d;False;t3_kt0sts;False;False;t3_kt0sts;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gij654d/;1610138624;11;True;False;anime;t5_2qh22;;0;[]; -[];;;UltimateAnimeHero;;;[];;;;text;t2_oc4re;False;False;[];;For you it apparently is, for others it may not be.;False;False;;;;1610106047;;False;{};gij66qa;False;t3_kt0sts;False;False;t3_kt0sts;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gij66qa/;1610138654;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;"Taste is subjective, there is no best anime or best TV show. You may think Steins;Gate is the best and that's fine but most don't. For me, it's not even in my top 10 of **anime**.";False;False;;;;1610106101;;False;{};gij68vv;False;t3_kt0sts;False;False;t3_kt0sts;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gij68vv/;1610138693;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Magile;;MAL;[];;https://myanimelist.net/profile/magile;dark;text;t2_mcm9u;False;False;[];;"It doesn't change the price at all. - -Compare Funimations Blu-ray + DVD set for Macadamia S4P2 - -https://shop.funimation.com/home-video/my-hero-academia-season-4-part-2/BLD-01011.html - -To there just Bluray release of Toilet Bound Hanako-kun - -https://shop.funimation.com/home-video/toilet-bound-hanako-kun-the-complete-series/BLR-00688.html - -Price variances you may see are coming from other factors. Not the addition of the DVD version.";False;False;;;;1610106134;;False;{};gij6a4i;False;t3_kt0700;False;True;t3_kt0700;/r/anime/comments/kt0700/what_is_the_point_of_bluray_dvd_combi_editions/gij6a4i/;1610138716;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok-Cantaloupe-8141;;;[];;;;text;t2_8a098d7v;False;False;[];;Should have written opinion on the post. Just wanted to see if other people like it or not;False;False;;;;1610106291;;False;{};gij6g7q;True;t3_kt0sts;False;True;t1_gij654d;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gij6g7q/;1610138830;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok-Cantaloupe-8141;;;[];;;;text;t2_8a098d7v;False;False;[];;Should have written opinion on the post. My bad;False;False;;;;1610106328;;False;{};gij6hmg;True;t3_kt0sts;False;True;t1_gij66qa;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gij6hmg/;1610138862;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SgtGawsty;;MAL;[];;http://myanimelist.net/profile/SgtGawsty;dark;text;t2_di5t5;False;False;[];;the start of Gintama' (2011) to be more precise;False;False;;;;1610106332;;False;{};gij6hsr;False;t3_ksuv1z;False;False;t1_giiticr;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij6hsr/;1610138865;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Lloydy33;;;[];;;;text;t2_135zaeb2;False;False;[];;"I would like to know if there's anything to back that up. or do you mean to tell me that if I bought a blu-ray of an anime that it would cost the same as a blu-ray + DVD version? - -By the way, those 2 links don't work for me. Maybe because I'm in a different country to the storefront.";False;False;;;;1610106337;;False;{};gij6i0f;False;t3_kt0700;False;True;t1_gij6a4i;/r/anime/comments/kt0700/what_is_the_point_of_bluray_dvd_combi_editions/gij6i0f/;1610138869;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;No. People who go after internet piracy 99% of the time go after people who *distribute* or *host* content. Your cousin has nothing to worry about.;False;False;;;;1610106350;;False;{};gij6ihp;False;t3_kt0s5o;False;True;t3_kt0s5o;/r/anime/comments/kt0s5o/a_question_regarding_copyright_laws_of_animemanga/gij6ihp/;1610138878;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Sir-Odin;;;[];;;;text;t2_909yanql;False;False;[];;Never heard anyone say slice of life is underrated, in the end I'm assuming you watched Anohana and A Silent Voice?;False;False;;;;1610106353;;False;{};gij6img;False;t3_kswsf8;False;True;t3_kswsf8;/r/anime/comments/kswsf8/nothing_beats_the_happiness_of_watch_slice_of_life/gij6img/;1610138880;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jicuhrabbitkim;;;[];;;;text;t2_6po9il13;False;False;[];;I’ve been watching anime in illegal sites for like 10 years already and Im still here watching anime in an illegal site;False;False;;;;1610106370;;False;{};gij6j8z;False;t3_kt0s5o;False;True;t3_kt0s5o;/r/anime/comments/kt0s5o/a_question_regarding_copyright_laws_of_animemanga/gij6j8z/;1610138893;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Magile;;MAL;[];;https://myanimelist.net/profile/magile;dark;text;t2_mcm9u;False;False;[];;"The links are Funimations pre-orders for new releases. Ones a DVD/Bluray combo pack ones just Bluray. They're both 48.74 - ->do you mean to tell me that if I bought a blu-ray of an anime that it would cost the same as a blu-ray + DVD version? - -So yes I am telling you exactly that.";False;False;;;;1610106473;;False;{};gij6nbe;False;t3_kt0700;False;True;t1_gij6i0f;/r/anime/comments/kt0700/what_is_the_point_of_bluray_dvd_combi_editions/gij6nbe/;1610138972;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Valk;;;[];;;;text;t2_36l47pm7;False;False;[];;I wouldn't call it the greatest, but I'd be lying if i said that i don't love it;False;False;;;;1610106480;;False;{};gij6nk4;False;t3_kt0sts;False;False;t3_kt0sts;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gij6nk4/;1610138976;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;many people like it, don't worry : );False;False;;;;1610106480;;False;{};gij6nkg;False;t3_kt0sts;False;False;t1_gij6g7q;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gij6nkg/;1610138976;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kvix45;;;[];;;;text;t2_55nambs9;False;False;[];;"Yeah like the ""fbi open up"" meme but it's gonna be at your cousin's place XD";False;False;;;;1610106483;;False;{};gij6nol;False;t3_kt0s5o;False;True;t1_gij643l;/r/anime/comments/kt0s5o/a_question_regarding_copyright_laws_of_animemanga/gij6nol/;1610138979;7;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610106511;moderator;False;{};gij6oqc;False;t3_kt0xw2;False;True;t3_kt0xw2;/r/anime/comments/kt0xw2/hi_my_name_is_flavio_and_i_want_to_know_some_anime/gij6oqc/;1610138999;0;False;False;anime;t5_2qh22;;0;[]; -[];;;hnryirawan;;;[];;;;text;t2_n0vam;False;True;[];;Ah yeah. Basically the Season 2 start. I forgot which year lol;False;False;;;;1610106546;;False;{};gij6q25;False;t3_ksuv1z;False;False;t1_gij6hsr;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij6q25/;1610139026;12;True;False;anime;t5_2qh22;;0;[]; -[];;;LewdestLoi;;;[];;;;text;t2_11fv6ua6;False;False;[];;Note: There is a semi-final special coming out january 15th, which I think is a prequel of the movie;False;False;;;;1610106553;;False;{};gij6qc7;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij6qc7/;1610139030;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Svobodic;;;[];;;;text;t2_6x54ppb2;False;False;[];;I didn't get through the boring start, heard that iz really starts on ep 50 or something and I just threw it away lol.;False;False;;;;1610106596;;False;{};gij6rz6;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij6rz6/;1610139063;2;True;False;anime;t5_2qh22;;0;[]; -[];;;deleted-user;;MAL;[];;http://myanimelist.net/animelist/AKC47;dark;text;t2_aj4jy;False;False;[];;Agreed. You're committing to 300+ episodes already, what's another 2. They are not up to the standard of the better later episodes, but it's still Gintama nonetheless.;False;False;;;;1610106627;;False;{};gij6t9a;False;t3_ksuv1z;False;False;t1_giiq4g2;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij6t9a/;1610139087;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Peacemkr45;;;[];;;;text;t2_15b5b7;False;False;[];;Only one I can even think of that's close would be Hundred.;False;False;;;;1610106651;;False;{};gij6u6w;False;t3_ksv574;False;True;t3_ksv574;/r/anime/comments/ksv574/power_fantasy_about_guns/gij6u6w/;1610139104;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MartialBob;;;[];;;;text;t2_h4z8t;False;False;[];;I've flirted with watching this series over the years but it's just so long.;False;False;;;;1610106680;;False;{};gij6vb0;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij6vb0/;1610139125;2;True;False;anime;t5_2qh22;;0;[]; -[];;;civildonut1999;;;[];;;;text;t2_6z4jpgd8;False;False;[];;I watched the old fruits basket when I was 13 and now as an adult I got my hands on the dvd and rewatched most of it, and it was a lot simpler than I remembered it but also better because I was in the mood for something like that, also there were things that I did not remember from before that I found funny like it shows Yuki getting away from someone trying to hug him if I rember correctly, so for me that one got better only the old one though I haven't watched the remake.;False;False;;;;1610106692;;False;{};gij6vqv;False;t3_ksxavu;False;True;t3_ksxavu;/r/anime/comments/ksxavu/have_you_ever_rewatched_a_show_and_found_out_it/gij6vqv/;1610139133;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok-Cantaloupe-8141;;;[];;;;text;t2_8a098d7v;False;False;[];;Interesting. what's your top 10?;False;False;;;;1610106699;;False;{};gij6vzy;True;t3_kt0sts;False;True;t1_gij68vv;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gij6vzy/;1610139137;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lloydy33;;;[];;;;text;t2_135zaeb2;False;False;[];;That is one single example. It doesn't account for all the times over the years where I have seen DVD/Blu-ray combos costing more than than just Blu-ray. If your argument is that the price variances are a result of other factors, I'd love to know a few examples.;False;False;;;;1610106786;;False;{};gij6zea;False;t3_kt0700;False;True;t1_gij6nbe;/r/anime/comments/kt0700/what_is_the_point_of_bluray_dvd_combi_editions/gij6zea/;1610139198;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BakarinaLovesMaria;;;[];;;;text;t2_7aztnfnj;False;False;[];;I’m beginning to think it hits harder with me because of the family I grew up in 😕;False;False;;;;1610106789;;False;{};gij6zi1;True;t3_ksxavu;False;True;t1_gij6vqv;/r/anime/comments/ksxavu/have_you_ever_rewatched_a_show_and_found_out_it/gij6zi1/;1610139200;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dv_recorder;;;[];;;;text;t2_8pd0s8e7;False;False;[];;Briatore?;False;False;;;;1610106823;;1610107088.0;{};gij70vp;False;t3_kt0xw2;False;True;t3_kt0xw2;/r/anime/comments/kt0xw2/hi_my_name_is_flavio_and_i_want_to_know_some_anime/gij70vp/;1610139226;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dv_recorder;;;[];;;;text;t2_8pd0s8e7;False;False;[];;Yeah.;False;False;;;;1610106840;;False;{};gij71j7;False;t3_kt0sts;False;True;t3_kt0sts;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gij71j7/;1610139240;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Goukenslay;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Goukenslay;light;text;t2_h8wgs;False;False;[];;There are no fillers in gintama...;False;False;;;;1610106860;;False;{};gij72cc;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij72cc/;1610139255;9;True;False;anime;t5_2qh22;;0;[]; -[];;;userusernomi;;;[];;;;text;t2_578ah7ab;False;False;[];;I remember Saiki Kusuo was the reason why I started Gintama. It had never really caught my eye but when I saw that one episode I thought “I have to watch this anime if it’s something that can be a part of a 4th wall break for Saiki Kusuo”. I’m so glad for that lol;False;False;;;;1610106894;;False;{};gij73m9;False;t3_ksuv1z;False;False;t1_giillk6;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij73m9/;1610139277;8;True;False;anime;t5_2qh22;;0;[]; -[];;;civildonut1999;;;[];;;;text;t2_6z4jpgd8;False;False;[];;there are too many for me, so I don't think I could choose since there are way too many when I think if all the times I've been crying my eyes out and someone asks me why because they don't know what just happened, even though the worst one for me was more like an almost death even though it took several episodes to figure that out and I don't think I have cried for that long since and that was a while ago now.;False;False;;;;1610106931;;False;{};gij752i;False;t3_ksv5jr;False;True;t3_ksv5jr;/r/anime/comments/ksv5jr/if_you_could_make_it_to_where_a_anime_character/gij752i/;1610139304;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AlphaxCeph1998;;;[];;;;text;t2_57wi3oxj;False;False;[];;Definitely the best show in my opinion. Although I would put DARK up there with it.;False;False;;;;1610106942;;False;{};gij75ht;False;t3_kt0sts;False;True;t3_kt0sts;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gij75ht/;1610139312;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;"1.Re:Zero -Starting Life in Another World- -2. Hunter x Hunter -3. March Comes in Like a Lion -4. Mob Psycho 100 -5. A Silent Voice -6. Attack on Titan -7. Kaguya-Sama: Love is War -8. Angel Beats -9. Your Name -10. Toradora";False;False;;;;1610106976;;False;{};gij76ub;False;t3_kt0sts;False;True;t1_gij6vzy;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gij76ub/;1610139336;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Flavio_raider;;;[];;;;text;t2_74tzf9kv;False;False;[];;">Briatrore - -xD, naaah.";False;False;;;;1610107003;;False;{};gij77wn;True;t3_kt0xw2;False;True;t1_gij70vp;/r/anime/comments/kt0xw2/hi_my_name_is_flavio_and_i_want_to_know_some_anime/gij77wn/;1610139355;2;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;Sad that saiki k will not be continuing. It's absolutely gold.;False;False;;;;1610107031;;False;{};gij78zt;False;t3_ksuv1z;False;False;t1_giillk6;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij78zt/;1610139374;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Omn1ks;;;[];;;;text;t2_10pozi71;False;False;[];;NUNS 4 in 2021 for real :);False;False;;;;1610107036;;False;{};gij797z;False;t3_kt0yhx;False;True;t3_kt0yhx;/r/anime/comments/kt0yhx/hi_reddit_id_like_to_share_with_you_my_1st_nsuns/gij797z/;1610139379;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OfficialJinji;;;[];;;;text;t2_4vz0g8p0;False;False;[];;Wait the movie is getting released into cinemas TODAY?!;False;False;;;;1610107062;;False;{};gij7aap;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij7aap/;1610139399;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tiarnmas;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tiarnnas;light;text;t2_14l0eo;False;False;[];;Yeah, but sadly the last translated chapter was from a year ago :/;False;False;;;;1610107103;;False;{};gij7bxw;False;t3_ksvfai;False;True;t1_gij0tpl;/r/anime/comments/ksvfai/in_anime_once_youre_grabbed_by_the_face_you_are/gij7bxw/;1610139428;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Blitzshock;;;[];;;;text;t2_33uehuz9;False;False;[];;Just started watching Gintama and I love it! This post could not have come at a better time, tnx a bunch :);False;False;;;;1610107125;;False;{};gij7ctp;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij7ctp/;1610139444;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kundara_thahab;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sharshabeel_67;light;text;t2_cpimqb2;False;False;[];;i could never get past the first 3 episodes lol. tried 4 times and always dropped. good to know that they're filler lol;False;False;;;;1610107159;;False;{};gij7e3h;False;t3_ksuv1z;False;True;t1_gii9nnz;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij7e3h/;1610139469;3;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;Garden of words was so beautiful. Incredible animation.;False;False;;;;1610107211;;False;{};gij7g4v;False;t3_ksx5yz;False;False;t1_giipjtx;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/gij7g4v/;1610139506;3;True;False;anime;t5_2qh22;;0;[]; -[];;;masoles;;;[];;;;text;t2_hh96k;False;False;[];;"gintama's filler episodes are hilarious and should be totally watched if you like its character interactions. - -now if only i can remove all the unnecessary action heavy episodes (nearly all of it) from gintama and just focus on the comedy...";False;False;;;;1610107223;;False;{};gij7gmb;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij7gmb/;1610139516;2;True;False;anime;t5_2qh22;;0;[]; -[];;;pandaleon;;;[];;;;text;t2_ff1zl;False;False;[];;Worth being best for someone. Definatly on my list of top anime. Cowboy Bebop and escaflowne are tied for my favorite of all time.;False;False;;;;1610107304;;False;{};gij7jy9;False;t3_kt0sts;False;True;t3_kt0sts;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gij7jy9/;1610139578;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ampang_boy;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ampang_boy;light;text;t2_8w8sc9b;False;False;[];;"I binge watch gintama including the filler.. lol - -Worth. Every. Minutes";False;False;;;;1610107330;;False;{};gij7l0o;False;t3_ksuv1z;False;False;t1_gii9nnz;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij7l0o/;1610139598;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok-Cantaloupe-8141;;;[];;;;text;t2_8a098d7v;False;False;[];;Well I gotta be honest I do like mob psycho and AOT and absolutely love a silent voice but strongly disagree. Nice list though;False;False;;;;1610107331;;False;{};gij7l27;True;t3_kt0sts;False;True;t1_gij76ub;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gij7l27/;1610139600;2;True;False;anime;t5_2qh22;;0;[]; -[];;;deleted-user;;MAL;[];;http://myanimelist.net/animelist/AKC47;dark;text;t2_aj4jy;False;False;[];;It's a lot of episodes, but I wouldn't view it as a commitment. Its mostly episodic, so you don't need to binge it. Personally, I just watched an episode of two whenever I wanted a pick-me-up. Eventually, I ran out of Gintama to watch, and it was a sad day.;False;False;;;;1610107345;;False;{};gij7lmw;False;t3_ksuv1z;False;False;t1_giirlxt;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij7lmw/;1610139610;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Ground-Rat;;;[];;;;text;t2_8goiu5v;False;False;[];;"The price of actual media is probably a dollar if not less, so it's actually cheaper to put both in a single edition/package so that both DVD and Blu-ray owners can buy the one set and play the disc(s) of their choice. - -If they made two different editions/packages, it would cost more, because they would have to print/make more packages, and then it would take up more space on the shelves, which means less space for other ""stuff"" and potential sales, because they might be out of the edition that a buyer was looking for. - -And for special sets like collectors editions, they already tend to be relatively limited runs, due to the extra ""stuff"" that they tend to include. - -I look at these combo sets as buying one and getting the other one for ""free"" or almost ""free"". - -You can Google ""how much does it cost to make a single Blu-ray"" or ""how much does it cost to make a single DVD"" to check for yourself. - -For personal duplication, I went here and the prices are lower than I expected: https://www.quickturnduplication.com/pricing/blu-ray-printing-and-duplication - -For actual disc making, there's a setup fee/price to make the glass master, so but the individual discs end up costing less, so this process only makes sense when/if you are making more than a certain number of discs. There are some additional per disc licensing fees, that apply to commercial DVDs and Blu-Rays, but even so, I'd guess that the disc price is probably something between $1 and $5 for Blu-Ray and likely less than a dollar for a DVD and that's being really generous. - -If the companies could make more money selling them as two individual sets they would do it, instead they sell the combo set for pretty much the same price as a single set, because that makes the most financial sense to them. And in this case the customer/consumer wins. - -Hope this made sense and was helpful. - -Cheers!";False;False;;;;1610107385;;False;{};gij7n62;False;t3_kt0700;False;False;t3_kt0700;/r/anime/comments/kt0700/what_is_the_point_of_bluray_dvd_combi_editions/gij7n62/;1610139638;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Kerbal92;;;[];;;;text;t2_85spe8v;False;False;[];;Lesson 1: never skip the filler episodes of gintama;False;False;;;;1610107405;;False;{};gij7nzp;False;t3_ksuv1z;False;True;t1_gii9nnz;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij7nzp/;1610139655;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Efficent_Tomato;;;[];;;;text;t2_7kxtgafp;False;False;[];;"Personally speaking I found it to be ok. Nothing remarkable, nor unexpected, nor new. - -Maybe it's because I watch a lot of sci-fi, but I don't really see what sets it apart from other shows that talked about similar themes.";False;False;;;;1610107433;;False;{};gij7p5m;False;t3_kt0sts;False;True;t3_kt0sts;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gij7p5m/;1610139675;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi NJBuoy, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610107530;moderator;False;{};gij7t4k;False;t3_kt171y;False;True;t3_kt171y;/r/anime/comments/kt171y/brutal_anime_recommendation_in_your_opinion/gij7t4k/;1610139751;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Miidas-92;;MAL;[];;https://myanimelist.net/profile/Miidas;dark;text;t2_ja1jx;False;False;[];;"It's my 46th favorite anime of all time, so no, I don't consider it to be the best TV-show of all time. That being said, I consider it to be an exceptional anime, that I would recommend most people to check out. - -What I personally consider the best TV-show (aka, my favorite TV-show) is Cardcaptor Sakura, since that resonated more with me, while also being very ""my type of show"".";False;False;;;;1610107599;;False;{};gij7vxe;False;t3_kt0sts;False;False;t3_kt0sts;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gij7vxe/;1610139804;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610107638;;False;{};gij7xi7;False;t3_ksvk1w;False;True;t3_ksvk1w;/r/anime/comments/ksvk1w/rascal_does_not_dream_of_a_dreaming_girl_ending/gij7xi7/;1610139834;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hadras;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/Hadras/;dark;text;t2_oph2o;False;False;[];;"Highly subjective but S;G is my top show aswell. - -If you loved it so much I would recommend playing the Visual Novel, characters are more fleshed out, there is more details and dialogs, you learn a lot about Okabe's inner thoughts, there is extra endings, a very good visual style, ect.";False;False;;;;1610107692;;False;{};gij7zqd;False;t3_kt0sts;False;True;t3_kt0sts;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gij7zqd/;1610139874;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TravisScotch--;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_7fexh1u7;False;False;[];;"Re:Zero - -Inuyashiki - -Monster - -Another - -Blood C";False;False;;;;1610107729;;False;{};gij819k;False;t3_kt171y;False;True;t3_kt171y;/r/anime/comments/kt171y/brutal_anime_recommendation_in_your_opinion/gij819k/;1610139901;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NJBuoy;;skip7;[];;;dark;text;t2_9i9ekg0o;False;False;[];;Tysm;False;False;;;;1610107778;;False;{};gij839t;True;t3_kt171y;False;True;t1_gij819k;/r/anime/comments/kt171y/brutal_anime_recommendation_in_your_opinion/gij839t/;1610139938;1;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;I still remember how easily he crushed Envy. That probably elevated his coolness to a new level for me.;False;False;;;;1610107848;;False;{};gij865c;False;t3_ksv5jr;False;True;t1_giic7k3;/r/anime/comments/ksv5jr/if_you_could_make_it_to_where_a_anime_character/gij865c/;1610139995;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lloydy33;;;[];;;;text;t2_135zaeb2;False;False;[];;"Thank you, that was very informative! On the site I've been using recently, the blu-ray / -DVD combo editions cost anywhere in the region of £5-£15 (about 7-20 USD) more than just buying the blu-ray version. However, in some cases, there was no standard blu-ray edition and you had to buy the combo version, which cost significantly more than the other standard versions listed on the site. It was easy to assume that this was a move by the company to make some extra money by charging extra for the additional dvds! Maybe that is not the case then, but it still begs the question of why it costs more than standard edition. - - -Anyway, thanks for the info!";False;False;;;;1610107868;;False;{};gij86y2;False;t3_kt0700;False;True;t1_gij7n62;/r/anime/comments/kt0700/what_is_the_point_of_bluray_dvd_combi_editions/gij86y2/;1610140010;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shazam635;;;[];;;;text;t2_5s8hl8z1;False;False;[];;My god thank you so much;False;False;;;;1610107940;;False;{};gij89xi;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij89xi/;1610140078;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KaptainTZ;;skip7;[];;;dark;text;t2_9fhynbf5;False;False;[];;Talk about a perfect time to have started watching;False;False;;;;1610107958;;False;{};gij8anz;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij8anz/;1610140092;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gintoki-Katsura;;;[];;;;text;t2_bntj6;False;False;[];;Wooo!!! Finally!!!!;False;False;;;;1610108124;;False;{};gij8hjk;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij8hjk/;1610140234;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610108130;moderator;False;{};gij8hsp;False;t3_kt1c2c;False;True;t3_kt1c2c;/r/anime/comments/kt1c2c/where_can_i_watch_bunny_girl_senpai_the_movie/gij8hsp/;1610140238;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Nome_de_utilizador;;;[];;;;text;t2_5z33g;False;False;[];;"Aside from the first 2 episodes, every gintama ""filler"" didn't feel like it and was as good as the rest of the series";False;False;;;;1610108135;;False;{};gij8hzx;False;t3_ksuv1z;False;False;t1_gii9nnz;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij8hzx/;1610140242;9;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;"Just watch Death Note to get into it. - -Unless you have particular genres you like?";False;False;;;;1610108207;;False;{};gij8kyn;False;t3_kt0xw2;False;False;t3_kt0xw2;/r/anime/comments/kt0xw2/hi_my_name_is_flavio_and_i_want_to_know_some_anime/gij8kyn/;1610140303;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Kangaroo-Awkward;;;[];;;;text;t2_83lcnsz3;False;False;[];;Higurashi when they cry;False;False;;;;1610108250;;False;{};gij8mtb;False;t3_kt171y;False;True;t3_kt171y;/r/anime/comments/kt171y/brutal_anime_recommendation_in_your_opinion/gij8mtb/;1610140338;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahou_Shoujo_Ramune;;;[];;;;text;t2_4vs4l2r6;False;False;[];;">lesser known shows - ->Code Geass - ->Vinland Saga - ->Violet Evergarden - -Yea.... - -Check out Madoka Magica tho";False;False;;;;1610108380;;False;{};gij8sdn;False;t3_kt0sts;False;False;t3_kt0sts;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gij8sdn/;1610140442;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Magile;;MAL;[];;https://myanimelist.net/profile/magile;dark;text;t2_mcm9u;False;False;[];;"OK. As a person who buys a ton of DVDs and Blurays I'd be happy to Comment. The reason I used Two specific shows was because - -1) DVD/Bluray combo packs are being drastically phased out. Like Sentai Filmworks has switched entirely to Bluray only unless youre buying there expensive limited editions at which point you are probably the type of person who wants both releases anyways. Funimation is only doing DVD/Bluray combo releases for bigger release. Things part of a long running series like Macadamia or Black Clover. Single season shows like Bofuri, Hanako-kun, Astroid in Love are getting just Bluray releases. And as mentioned above, these are the same price. You can pick any of Funimations pre-orders of the same or similar episode length and you'll find they are the same price regardless of being Bluray or BR/DVD combo packs. Aniplex has been doing the Bluray or DVD release thing for ages. Where you can't get both. And I don't keep up with Viz releases enough to comment on how they're doing things I imagine it's similar. - -2) In order to Guage what price companies are charging you need to look at prices in isolation. I picked two shows up for pre-order because that means they haven't been on sale yet. So you can look at there raw prices. As soon as they're officially release they're able to go on sale and that's where you hit you random price differences. - -Because after that point all the companies are going to be monitoring what shows of there's are the most and least popular. And when a sale hit Prices are going to reflect that. It has nothing to do with DVD/Combo packs. - -So now you may be asking why are they including DVDs for free? Well what you need to understand is DVDs are not popular anymore. On Funimations end the only things getting DVD releases anymore are One Piece, DragonBall and Macadamia. All the other shows which are getting Bluray/DVD combo packs, those are making $0 off the DVD release. So the DVD version is getting tossed in like all the extras that get tossed in to releases like Creditless OPs or commentaries to entice people to buy the product. Since they weren't going to make any money off of it anyways. - -Now what you've failed to provide me is any example where you are paying extra for DVDs while I've provided numerous examples of how that's not the case. So if you want to actually provide *examples* i will gladly explain why you are wrong.";False;False;;;;1610108410;;False;{};gij8tmj;False;t3_kt0700;False;True;t1_gij6zea;/r/anime/comments/kt0700/what_is_the_point_of_bluray_dvd_combi_editions/gij8tmj/;1610140465;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Some good brutal anime I suggest. - -* Rin: Daughters of Mnemosyne -* Parasyte: the Maxim -* Elfen Lied -* Hellsing (or Hellsing Ultimate) - -Devilman Crybaby is a hit or miss for some people though.";False;False;;;;1610108463;;False;{};gij8vu8;False;t3_kt171y;False;True;t3_kt171y;/r/anime/comments/kt171y/brutal_anime_recommendation_in_your_opinion/gij8vu8/;1610140508;3;True;False;anime;t5_2qh22;;0;[]; -[];;;udayEm;;;[];;;;text;t2_10hvtfsw;False;False;[];;When do they come out!?;False;False;;;;1610108492;;False;{};gij8x39;False;t3_ksuv1z;False;False;t1_giimzji;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij8x39/;1610140532;6;True;False;anime;t5_2qh22;;0;[]; -[];;;DeathbyShinyHunt;;;[];;;;text;t2_6amob4f5;False;False;[];;Blue Gender;False;False;;;;1610108508;;False;{};gij8xqw;False;t3_kt171y;False;True;t3_kt171y;/r/anime/comments/kt171y/brutal_anime_recommendation_in_your_opinion/gij8xqw/;1610140545;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;"I don’t believe any legal streaming service has it. - -You’re either gonna have to buy the Blu-ray or sail the seven seas";False;False;;;;1610108617;;False;{};gij92jl;False;t3_kt1c2c;False;False;t3_kt1c2c;/r/anime/comments/kt1c2c/where_can_i_watch_bunny_girl_senpai_the_movie/gij92jl/;1610140634;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Caveskelton;;;[];;;;text;t2_3bvuza1x;False;False;[];;The final season was funded by netflix just covered the few chapter than anime skipped the manga is over;False;False;;;;1610108631;;False;{};gij935v;False;t3_ksuv1z;False;False;t1_giiw34g;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij935v/;1610140646;9;True;False;anime;t5_2qh22;;0;[]; -[];;;BiddleBot300;;;[];;;;text;t2_28m9bgfz;False;False;[];;The opening doesn’t really show that much. It’s just 1 little hint about him that’s all I noticed;False;False;;;;1610108647;;False;{};gij93uz;False;t3_ksuv1z;False;False;t1_giiair1;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij93uz/;1610140659;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;"My top 5 brutal ones would be: - -1. Higurashi - -2. Made In Abyss - -3. Attack On Titan - -4. Gantz (highest brutality) - -5. Claymore - -Honorable mentions: Inuyashiki, Happy Sugar Life, School Days, Another";False;False;;;;1610108648;;False;{};gij93vo;False;t3_kt171y;False;False;t3_kt171y;/r/anime/comments/kt171y/brutal_anime_recommendation_in_your_opinion/gij93vo/;1610140659;7;True;False;anime;t5_2qh22;;0;[]; -[];;;sicklyfish;;MAL;[];;https://myanimelist.net/animelist/sicklyfish?status=2;dark;text;t2_6ns4f;False;False;[];;"Can't wait! - -Rewatched the entire series this year thanks to Covid. It was so worth it.";False;False;;;;1610108704;;False;{};gij96br;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij96br/;1610140707;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;Only if you don't like the actual story.;False;False;;;;1610108738;;False;{};gij97tk;False;t3_ksxavu;False;False;t1_giiu0hc;/r/anime/comments/ksxavu/have_you_ever_rewatched_a_show_and_found_out_it/gij97tk/;1610140732;0;True;False;anime;t5_2qh22;;0;[]; -[];;;BurnSomeBread;;;[];;;;text;t2_4ujja67;False;False;[];;Well you see that joke was all well and good when the manga was still going on so they could make those jokes much more easily. But this time the manga has literally been completed. In fact it's been done for almost a year now. And this movie will cover the last chapters of the last story arc. So I get where you're coming from but nah, this time it's for real.;False;False;;;;1610108787;;False;{};gij99xt;False;t3_ksuv1z;False;True;t1_giiw569;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij99xt/;1610140772;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TravisScotch--;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_7fexh1u7;False;False;[];;School days doesn’t have a good plot nor is it brutal up until the last episode.;False;False;;;;1610108877;;False;{};gij9du7;False;t3_kt171y;False;False;t1_gij93vo;/r/anime/comments/kt171y/brutal_anime_recommendation_in_your_opinion/gij9du7/;1610140846;2;True;False;anime;t5_2qh22;;0;[]; -[];;;senpaiking19;;;[];;;;text;t2_4vg5i8gw;False;False;[];;Iroe is so adorable as ever.;False;False;;;;1610108881;;False;{};gij9dzb;False;t3_ksvfai;False;True;t3_ksvfai;/r/anime/comments/ksvfai/in_anime_once_youre_grabbed_by_the_face_you_are/gij9dzb/;1610140848;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"Attack on titan, One punch man and Death note, this are the best for starters in my opinion - -They all have an English dub, don't know where you from though, your name is very common in my country";False;False;;;;1610108891;;False;{};gij9een;False;t3_kt0xw2;False;True;t3_kt0xw2;/r/anime/comments/kt0xw2/hi_my_name_is_flavio_and_i_want_to_know_some_anime/gij9een/;1610140856;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ExperienceLD;;;[];;;;text;t2_1dpsvmrp;False;False;[];;Just go on MAL and look there lol;False;False;;;;1610108948;;False;{};gij9gyy;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij9gyy/;1610140901;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Flavio_raider;;;[];;;;text;t2_74tzf9kv;False;False;[];;"I really like berserk for example but ok why not. -Ty :)";False;False;;;;1610108989;;False;{};gij9iq3;True;t3_kt0xw2;False;True;t1_gij8kyn;/r/anime/comments/kt0xw2/hi_my_name_is_flavio_and_i_want_to_know_some_anime/gij9iq3/;1610140933;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Xelioncito;;;[];;;;text;t2_ys6is;False;False;[];;Yes the first movie readapts the same Benizakura arc from the anime, I don't remember if those are the chapters but I trust they're right.;False;False;;;;1610108989;;False;{};gij9irs;False;t3_ksuv1z;False;True;t1_gij58sh;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij9irs/;1610140934;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;The extended version is near 3h or even over, no idea where to find it though.;False;False;;;;1610109102;;False;{};gij9nvf;False;t3_kswqkw;False;True;t3_kswqkw;/r/anime/comments/kswqkw/just_finished_watching_in_this_corner_of_the_world/gij9nvf/;1610141029;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ignustax;;;[];;;;text;t2_91qin8cm;False;False;[];;I tried. I watched the first episode and it left me too confused. I guess I will try to watch it again, not one, but few episodes, but I don't know if that will help.;False;False;;;;1610109114;;False;{};gij9odi;False;t3_ksuv1z;False;True;t1_gij4jet;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij9odi/;1610141038;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EffanByte;;;[];;;;text;t2_4aeskmk1;False;False;[];;Thanks! I just got into gintama. Just watched 10 episodes.;False;False;;;;1610109123;;False;{};gij9or1;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij9or1/;1610141043;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Flavio_raider;;;[];;;;text;t2_74tzf9kv;False;False;[];;"I'm italian btw there are no prob for it i'm ok with ing. -Btw Ty :)";False;False;;;;1610109169;;False;{};gij9qux;True;t3_kt0xw2;False;True;t1_gij9een;/r/anime/comments/kt0xw2/hi_my_name_is_flavio_and_i_want_to_know_some_anime/gij9qux/;1610141083;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kag5n;;;[];;;;text;t2_1urbtc3x;False;False;[];;January 15;False;False;;;;1610109185;;False;{};gij9rl7;False;t3_ksuv1z;False;False;t1_gij8x39;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij9rl7/;1610141096;9;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;"That's not how it works. - -If anyone goes after you it would be the license owner of the product in your country. - -And even though downloading stuff is also illegal, there are only very few cases where a company went after a single person downloading something. Usually they'd instead go after the people distributing things as shutting the websites down is much more profitable for them, than sueing some random guy for millions he'll never be able to pay in his life anyway. - -So even though your cousin isn't 100% safe, he's around 99.99999% safe. - -In the future I still suggest watching anime legally, especially if you're anxious. These days there are many streaming services that offer animes. Some are free, some are relatively cheap for the amount of animes you can watch (watching 20 animes in one month for $10 is much cheaper than buying a BluRay with only a bunch of episodes for $30 each). Since many subscriptions can be stopped monthly, you can even switch streaming sites each month and can pretty much watch everything licensed in your country that way.";False;False;;;;1610109205;;1610110830.0;{};gij9sj5;False;t3_kt0s5o;False;True;t3_kt0s5o;/r/anime/comments/kt0s5o/a_question_regarding_copyright_laws_of_animemanga/gij9sj5/;1610141112;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Ignustax;;;[];;;;text;t2_91qin8cm;False;False;[];;By the way, thanks.;False;False;;;;1610109280;;False;{};gij9vwd;False;t3_ksuv1z;False;True;t1_gij4jet;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gij9vwd/;1610141174;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;Well I'd say the plot is good but that's personal taste. But yes it's only brutal in the last episode.;False;False;;;;1610109324;;False;{};gij9xxo;False;t3_kt171y;False;True;t1_gij9du7;/r/anime/comments/kt171y/brutal_anime_recommendation_in_your_opinion/gij9xxo/;1610141213;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610109369;moderator;False;{};gija01h;False;t3_kt1n4z;False;False;t3_kt1n4z;/r/anime/comments/kt1n4z/why_do_people_dont_like_shippers/gija01h/;1610141250;0;False;False;anime;t5_2qh22;;0;[]; -[];;;as1eep;;;[];;;;text;t2_pek5e8i;False;False;[];;Idk about this one mannn. Breaking Bad kinda like considerably better.;False;False;;;;1610109423;;False;{};gija2f2;False;t3_kt0sts;False;True;t3_kt0sts;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gija2f2/;1610141295;1;True;False;anime;t5_2qh22;;0;[]; -[];;;as1eep;;;[];;;;text;t2_pek5e8i;False;False;[];;Bruh;False;False;;;;1610109454;;False;{};gija3u8;False;t3_kt0s5o;False;True;t3_kt0s5o;/r/anime/comments/kt0s5o/a_question_regarding_copyright_laws_of_animemanga/gija3u8/;1610141322;3;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;Another isn't really brutal, because it turns into an accidental comedy after the beach episode.;False;False;;;;1610109463;;False;{};gija49i;False;t3_kt171y;False;False;t1_gij93vo;/r/anime/comments/kt171y/brutal_anime_recommendation_in_your_opinion/gija49i/;1610141329;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BoopTheChicken;;;[];;;;text;t2_82olxgk9;False;False;[];;Because most people are there to discuss the show itself, not which two canonically heterosexual characters are packing each others fudge in your weird head-canon...;False;False;;;;1610109468;;False;{};gija4hj;False;t3_kt1n4z;False;False;t3_kt1n4z;/r/anime/comments/kt1n4z/why_do_people_dont_like_shippers/gija4hj/;1610141334;10;True;False;anime;t5_2qh22;;0;[]; -[];;;traghick;;;[];;;;text;t2_4bulroiz;False;False;[];;Gintama filler doesn’t feel like filler that’s what I love about it;False;False;;;;1610109538;;False;{};gija7tw;False;t3_ksuv1z;False;False;t1_giiorkl;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gija7tw/;1610141394;5;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;SoL is so vaguely defined that you can slap that shit on anything.;False;False;;;;1610109562;;False;{};gija8x0;False;t3_kswsf8;False;False;t1_giilvq3;/r/anime/comments/kswsf8/nothing_beats_the_happiness_of_watch_slice_of_life/gija8x0/;1610141421;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Dialsk;;;[];;;;text;t2_6ie03uya;False;False;[];;"This made my day, thanks. - -LMAO";False;False;;;;1610109616;;False;{};gijabe7;False;t3_kt0s5o;False;True;t3_kt0s5o;/r/anime/comments/kt0s5o/a_question_regarding_copyright_laws_of_animemanga/gijabe7/;1610141468;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;The death scenes are quite brutal. I didn't notice it being a comedy?;False;False;;;;1610109616;;False;{};gijabfa;False;t3_kt171y;False;True;t1_gija49i;/r/anime/comments/kt171y/brutal_anime_recommendation_in_your_opinion/gijabfa/;1610141469;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"Depends on the genre you want. Other people will cover the battle stuff, so I'll come at it from the romance/drama/slice of life angle. - -bonus: -[Kill la Kill](https://anilist.co/anime/18679/Kill-la-Kill/) -Action, Comedy, Ecchi - -[Rascal Does Not Dream of Bunny Girl Senpai](https://anilist.co/anime/101291/Rascal-Does-Not-Dream-of-Bunny-Girl-Senpai/) -Comedy, Mystery, Psychological, Romance, Slice of Life, Supernatural -(there's a film after, watch it!) - -[Toradora!](https://anilist.co/anime/4224/Toradora/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_toradora.21) -Comedy, Drama, Romance, Slice of Life - -[Violet Evergarden](https://anilist.co/anime/21827/Violet-Evergarden/) -[Watch Order](https://www.reddit.com/r/anime/wiki/watch_order#wiki_violet_evergarden) -Drama, Fantasy, Slice of Life - -[A Silent Voice](https://anilist.co/anime/20954/A-Silent-Voice/) -Drama, Romance, Slice of Life - -bonus pt2 -[High School DxD](https://anilist.co/anime/11617/High-School-DxD/) -Action, Comedy, Ecchi, Fantasy, Romance";False;False;;;;1610109656;;False;{};gijadbh;False;t3_kt0xw2;False;True;t3_kt0xw2;/r/anime/comments/kt0xw2/hi_my_name_is_flavio_and_i_want_to_know_some_anime/gijadbh/;1610141504;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ImmortalPharaoh;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GoldenBoi79;light;text;t2_neupz;False;False;[];;Heat action;False;False;;;;1610109777;;False;{};gijaj2o;False;t3_ksvfai;False;True;t3_ksvfai;/r/anime/comments/ksvfai/in_anime_once_youre_grabbed_by_the_face_you_are/gijaj2o/;1610141618;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610109812;;1610110034.0;{};gijakr2;False;t3_kt1n4z;False;True;t3_kt1n4z;/r/anime/comments/kt1n4z/why_do_people_dont_like_shippers/gijakr2/;1610141649;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;After Episode 6, when you have learnt about Mei, you have the beach episode, which ruined the serious nature of the show. In the last two episodes, the deaths actually became funny for me, and apparently others agree.;False;False;;;;1610109817;;False;{};gijakzz;False;t3_kt171y;False;False;t1_gijabfa;/r/anime/comments/kt171y/brutal_anime_recommendation_in_your_opinion/gijakzz/;1610141654;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Trafalgar_Lou1;;;[];;;;text;t2_4z15tejm;False;True;[];;Might want to read the Op again;False;False;;;;1610109882;;False;{};gijao1k;False;t3_kt1n4z;False;True;t1_gijakr2;/r/anime/comments/kt1n4z/why_do_people_dont_like_shippers/gijao1k/;1610141707;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Flavio_raider;;;[];;;;text;t2_74tzf9kv;False;False;[];;Well i'm more in to berserk stuff, but ty man. :);False;False;;;;1610110002;;False;{};gijatjj;True;t3_kt0xw2;False;True;t1_gijadbh;/r/anime/comments/kt0xw2/hi_my_name_is_flavio_and_i_want_to_know_some_anime/gijatjj/;1610141809;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Efficent_Tomato;;;[];;;;text;t2_7kxtgafp;False;False;[];;"Hello! Mind telling us what you like overall? Like, anime you enjoyed, but also TV shows are good too. So we can understand what to suggest to you. - -Because otherwise we are left to suggest you popular stuff hoping you'll like that, but it's just as good as telling someone who is asking for movie recommendation _Well, watch Twilight. It's famous, you might like it_. - -Not really the best.";False;False;;;;1610110024;;False;{};gijauln;False;t3_kt0xw2;False;True;t3_kt0xw2;/r/anime/comments/kt0xw2/hi_my_name_is_flavio_and_i_want_to_know_some_anime/gijauln/;1610141829;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ninjashouyo10;;;[];;;;text;t2_76jy6vte;False;False;[];;All right! Imma send this to him so that he will stop getting tantrums anymore 😪;False;False;;;;1610110027;;False;{};gijauqg;True;t3_kt0s5o;False;True;t1_gij6ihp;/r/anime/comments/kt0s5o/a_question_regarding_copyright_laws_of_animemanga/gijauqg/;1610141831;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Efficent_Tomato;;;[];;;;text;t2_7kxtgafp;False;False;[];;Pffft! I had opened another tab and replied in the wrong one lol;False;False;;;;1610110057;;False;{};gijaw3w;False;t3_kt1n4z;False;True;t1_gijao1k;/r/anime/comments/kt1n4z/why_do_people_dont_like_shippers/gijaw3w/;1610141856;0;True;False;anime;t5_2qh22;;0;[]; -[];;;selfaholic;;;[];;;;text;t2_1khhhf6;False;False;[];;Sure it's part of the fandom, but it makes sense to keep it in separate spaces from general discussions of canon. Most non-shippers seem to leave shippers alone as long as the shippers leave them alone.;False;False;;;;1610110216;;False;{};gijb3n8;False;t3_kt1n4z;False;False;t3_kt1n4z;/r/anime/comments/kt1n4z/why_do_people_dont_like_shippers/gijb3n8/;1610141995;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Yuukichiii;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MagicalYuuki;light;text;t2_4bdkwoj2;False;False;[];;"> canonically heterosexual characters - -I'm not the biggest shipper, but it's really rare that the sexuality of a character is specifically explained / mentioned. - -Obviously, plenty of characters show it with their action (any character being a pervert specifically towards woman, for example), but there are still plenty where it isn't clear, imo. - -Additionally, if you're there to discuss the show itself, just don't engage too much with the shippers in the thread? Maybe I always miss it, but I rarely see any shipper just randomly bring it up when it's not about that.";False;False;;;;1610110233;;False;{};gijb4ez;False;t3_kt1n4z;False;False;t1_gija4hj;/r/anime/comments/kt1n4z/why_do_people_dont_like_shippers/gijb4ez/;1610142010;7;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610110344;;False;{};gijb9pi;False;t3_kt1n4z;False;True;t3_kt1n4z;/r/anime/comments/kt1n4z/why_do_people_dont_like_shippers/gijb9pi/;1610142119;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;"Well yeah, I can see that. It isn't as impactful. That's why it also not in my top 5. - -But something can not be serious and still be brutal. For example Dorohedoro.";False;False;;;;1610110351;;False;{};gijba24;False;t3_kt171y;False;True;t1_gijakzz;/r/anime/comments/kt171y/brutal_anime_recommendation_in_your_opinion/gijba24/;1610142126;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aznmeep;;;[];;;;text;t2_6cryobhz;False;False;[];;So these are the episodes that are not filler?;False;False;;;;1610110424;;False;{};gijbdjv;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijbdjv/;1610142190;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fyrophor;;;[];;;;text;t2_11tdr7;False;False;[];;Yes, it does. The overarching plot is a slow burn that doesn't really start until about 60 episodes in, and even then it only advances very slowly. Even so, the development is there and new characters are introduced at a steady rate. Gintama also sets up a lot of running jokes that won't make sense if you drop in halfway through (which are imo the best part).;False;False;;;;1610110426;;False;{};gijbdo3;False;t3_ksuv1z;False;True;t1_giiz7vt;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijbdo3/;1610142193;3;True;False;anime;t5_2qh22;;0;[]; -[];;;senpaiking19;;;[];;;;text;t2_4vg5i8gw;False;False;[];;Nice! I enjoy watching it so I didn't notice that I'm in the middle.;False;False;;;;1610110434;;False;{};gijbe13;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijbe13/;1610142200;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bumbapoppa;;;[];;;;text;t2_53cmo78q;False;False;[];;they made me drop it immediately lol;False;False;;;;1610110435;;False;{};gijbe24;False;t3_ksuv1z;False;False;t1_giiq4g2;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijbe24/;1610142200;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Efficent_Tomato;;;[];;;;text;t2_7kxtgafp;False;False;[];;"It's a ""fun thing to do"" that is fun to people who enjoy it, and downright annoying to people who don't. - -Nobody have an issue with shippers that do their thing in their own private spaces, it becomes an issue when it _floods_ common spaces filled with people who don't enjoy the practice.";False;False;;;;1610110452;;False;{};gijbexi;False;t3_kt1n4z;False;False;t3_kt1n4z;/r/anime/comments/kt1n4z/why_do_people_dont_like_shippers/gijbexi/;1610142217;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Saberinbed;;;[];;;;text;t2_p00ls;False;False;[];;Attack on titan might beat fmab after a few episodes.;False;False;;;;1610110475;;False;{};gijbfzz;False;t3_ksuv1z;False;False;t1_gij2e8j;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijbfzz/;1610142237;33;True;False;anime;t5_2qh22;;0;[]; -[];;;ninjashouyo10;;;[];;;;text;t2_76jy6vte;False;False;[];;This is a lesson for him though. And for me too because I've teased him in the first place and didn't expect his tantrums. Thank you so much!;False;False;;;;1610110504;;False;{};gijbhej;True;t3_kt0s5o;False;True;t1_gij9sj5;/r/anime/comments/kt0s5o/a_question_regarding_copyright_laws_of_animemanga/gijbhej/;1610142264;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Suicd3grunt;;MAL;[];;http://myanimelist.net/animelist/Suicid3grunt;dark;text;t2_7mnlq;False;False;[];;"I kind of wish I would have started watching this a lot sooner, there is just too much to watch for me to consider it. - -Maybe someday when I have some more time.";False;False;;;;1610110504;;False;{};gijbhf7;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijbhf7/;1610142264;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dv_recorder;;;[];;;;text;t2_8pd0s8e7;False;False;[];;I don't really mind or care as long as the relevant discussion fora aren't being flooded by salty fans complaining that their ship didn't sail even though there was no evidence to support it in the first place.;False;False;;;;1610110521;;False;{};gijbi8a;False;t3_kt1n4z;False;True;t3_kt1n4z;/r/anime/comments/kt1n4z/why_do_people_dont_like_shippers/gijbi8a/;1610142279;1;True;False;anime;t5_2qh22;;0;[]; -[];;;east-blue-samurai;;;[];;;;text;t2_c5avy2;False;False;[];;"I suppose for that it depends what social media platforms you use. Because I see shippers hijacking canon discussion and gen posts and art all the time. But I also have a tumblr account where 90% of the fandom is shipping. Which means I hate shipping more than most because I’m inundated with it so much it fills me with rage. - -But tumblr is also my source of spoilers, official art, fan translations of extra canon material, and some very good meta so I’m not gonna stop using it. But I know I have a knee jerk intensely negative reaction to shipping because of that.";False;False;;;;1610110573;;False;{};gijbkof;False;t3_kt1n4z;False;True;t1_gijb4ez;/r/anime/comments/kt1n4z/why_do_people_dont_like_shippers/gijbkof/;1610142325;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ninjashouyo10;;;[];;;;text;t2_76jy6vte;False;False;[];;THIS IS WHAT I SAID TO HIM WHEN HE ASKED ME!! AHHAHAHHAHAHHHAHAHHAH AND BECAUSE OF THIS HIS TANTRUMS IS TOO HARD TO HANDLE 😭 HE EVEN TURNS TO ARGUMENTATIVE MODE FOR F\*CK SAKE;False;False;;;;1610110608;;False;{};gijbmdc;True;t3_kt0s5o;False;True;t1_gij643l;/r/anime/comments/kt0s5o/a_question_regarding_copyright_laws_of_animemanga/gijbmdc/;1610142361;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Distance yourself from your cousin or the Japenese FBI will arrest you too!;False;False;;;;1610110609;;False;{};gijbmfv;False;t3_kt0s5o;False;True;t3_kt0s5o;/r/anime/comments/kt0s5o/a_question_regarding_copyright_laws_of_animemanga/gijbmfv/;1610142362;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Flavio_raider;;;[];;;;text;t2_74tzf9kv;False;False;[];;"Well... i\`ve saw berserk(97), dbz(classic), trigun, cowboy bebop and steins gate. -But so far i\`ve never seen a popular stuff like twilight (and i don't like those). -:)";False;False;;;;1610110668;;False;{};gijbpad;True;t3_kt0xw2;False;True;t1_gijauln;/r/anime/comments/kt0xw2/hi_my_name_is_flavio_and_i_want_to_know_some_anime/gijbpad/;1610142435;0;True;False;anime;t5_2qh22;;0;[]; -[];;;jackycream;;;[];;;;text;t2_3f9hadto;False;False;[];;I’ve been thinking about starting the anime show, should I watch the entire show then movies or is there an accurate time line for it? The picture has me kinda confused ? Lmk in what order I should watch it all if you can.;False;False;;;;1610110690;;False;{};gijbqam;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijbqam/;1610142452;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Piromysl;;;[];;;;text;t2_4w6z82lr;False;False;[];;"1. Corpse Party OVA - -2. Blood C - -3. Parasyte - -4. Another - -5. Blade of the Immortal - -6. Higurashi - -7. Attack on Titan";False;False;;;;1610110732;;False;{};gijbscu;False;t3_kt171y;False;True;t3_kt171y;/r/anime/comments/kt171y/brutal_anime_recommendation_in_your_opinion/gijbscu/;1610142491;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610110789;;False;{};gijbv53;False;t3_kt171y;False;True;t3_kt171y;/r/anime/comments/kt171y/brutal_anime_recommendation_in_your_opinion/gijbv53/;1610142546;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Efficent_Tomato;;;[];;;;text;t2_7kxtgafp;False;False;[];;"You seems to enjoy action oriented shows with super powers, so you might be into huge recent hits like [Kimetsu no Yaiba](https://anilist.co/anime/101922/) or [Boku no Hero Academia](https://anilist.co/anime/21459/). - -Or classics like [Hunter x Hunter (2011)](https://anilist.co/anime/11061/) or [One Piece](https://anilist.co/anime/21/). - -These are all on the same wave of DBZ. - -If you need more ""gritty"" shows like Berserk, try Attack on Titan, or Fist of the North Star, or Baki.";False;False;;;;1610110845;;False;{};gijbxya;False;t3_kt0xw2;False;True;t1_gijbpad;/r/anime/comments/kt0xw2/hi_my_name_is_flavio_and_i_want_to_know_some_anime/gijbxya/;1610142596;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610110885;;1610111076.0;{};gijbzu0;False;t3_kt0sts;False;True;t3_kt0sts;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gijbzu0/;1610142631;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Shadow-Amulet-Ambush;;;[];;;;text;t2_1loou9xu;False;False;[];;I’m confused as to why this list seems to say to skip the first 2 episodes of the first season and has an episode list for the movie after it?;False;False;;;;1610110973;;False;{};gijc4d4;False;t3_ksuv1z;False;False;t1_giiscz9;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijc4d4/;1610142715;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Kaichou_of_Weebs;;;[];;;;text;t2_83p7tvn5;False;False;[];;MAL has a system in place to prevent vote manipulation. Idk what was if name.;False;False;;;;1610111027;;False;{};gijc749;False;t3_ksuv1z;False;False;t1_gij2e8j;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijc749/;1610142768;6;True;False;anime;t5_2qh22;;0;[]; -[];;;BoopTheChicken;;;[];;;;text;t2_82olxgk9;False;False;[];;It's not that rare. Most of the shows that have people engaging in ships in the first place usually establish the sexuality of their characters through those cues, but that does little to stop shippers turning them gay anyway. Now, I personally don't mind that, coming from the r/arknights community which has more or less convinced me that you have to be a lesbian to work for Rhodes Island despite the game having only one canonical lesbian afaik, but that still dosent belong in the same space as discussion of the show as presented.;False;False;;;;1610111076;;False;{};gijc9mp;False;t3_kt1n4z;False;True;t1_gijb4ez;/r/anime/comments/kt1n4z/why_do_people_dont_like_shippers/gijc9mp/;1610142816;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mugiwarajay;;;[];;;;text;t2_508q0zxp;False;False;[];;I’m really sad to see it go. It’s my favorite anime. Sorachi really goated;False;False;;;;1610111136;;False;{};gijccq5;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijccq5/;1610142875;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610111179;;False;{};gijceyd;False;t3_kt171y;False;True;t3_kt171y;/r/anime/comments/kt171y/brutal_anime_recommendation_in_your_opinion/gijceyd/;1610142918;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MeanMustacheMan;;;[];;;;text;t2_g5cn1;False;False;[];;"I would just like to say NEVER skip Gintama ""filler."" (I hate to call it that!) They're some of the most hilarious and fourth-wall breaking episodes of the show.";False;False;;;;1610111195;;False;{};gijcfqp;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijcfqp/;1610142937;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Flavio_raider;;;[];;;;text;t2_74tzf9kv;False;False;[];;Nice, ty for your advice! =);False;False;;;;1610111199;;False;{};gijcfyo;True;t3_kt0xw2;False;False;t1_gijbxya;/r/anime/comments/kt0xw2/hi_my_name_is_flavio_and_i_want_to_know_some_anime/gijcfyo/;1610142940;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SatouSmith;;;[];;;;text;t2_85ir9527;False;False;[];;I'm happy for this but r/Manga;False;False;;;;1610111293;;False;{};gijckp0;False;t3_kt1yad;False;True;t3_kt1yad;/r/anime/comments/kt1yad/3_demon_slayer_manga_volumes_are_1st_since_2008/gijckp0/;1610143035;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PepijnLinden;;;[];;;;text;t2_6wv5v;False;False;[];;"Yo, same here bro. Saiki K. is easily one of my favorite anime but somehow I couldn't really get started with Gintama. The first 20 - 50 or so episodes were okay but I wasn't really sure if it was just because it's the older episodes and it gets better overtime or how long it would take before I'd really get into it. - -But yeah, I know Gintama is well loved and I've seen some hilarious clips on YouTube so I'm sure it's worth watching in the long run. I'll probably try watching it again some day.";False;False;;;;1610111320;;False;{};gijcm20;False;t3_ksuv1z;False;True;t1_giiscz9;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijcm20/;1610143061;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Zig;;;[];;;;text;t2_r3byl;False;False;[];;"lmao, steins;gate wishes it could lace the boots of *the wire*";False;False;;;;1610111374;;False;{};gijcora;False;t3_kt0sts;False;False;t3_kt0sts;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gijcora/;1610143112;5;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;Attack on titan will beat FMAB but only for a short time. We can't do anything about the fanbase of FMAB, they always spam 1s on shows that are close to them.;False;False;;;;1610111388;;False;{};gijcphe;False;t3_ksuv1z;False;False;t1_gijbfzz;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijcphe/;1610143125;60;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610111420;;False;{};gijcr52;False;t3_kt1yad;False;True;t3_kt1yad;/r/anime/comments/kt1yad/3_demon_slayer_manga_volumes_are_1st_since_2008/gijcr52/;1610143159;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TophaFlop;;;[];;;;text;t2_701o27fy;False;False;[];;Tha Thats the outro... bit yeah that show is decent;False;False;;;;1610111520;;False;{};gijcw7a;False;t3_kt1yg5;False;True;t3_kt1yg5;/r/anime/comments/kt1yg5/watched_the_entire_series_never_skipped_the_outro/gijcw7a/;1610143257;3;True;False;anime;t5_2qh22;;0;[]; -[];;;_Zig;;;[];;;;text;t2_r3byl;False;False;[];;because a good portion of them start lambasting the story itself because it doesnt live up to what they want;False;False;;;;1610111580;;False;{};gijczcm;False;t3_kt1n4z;False;True;t3_kt1n4z;/r/anime/comments/kt1n4z/why_do_people_dont_like_shippers/gijczcm/;1610143322;1;True;False;anime;t5_2qh22;;0;[]; -[];;;baquea;;;[];;;;text;t2_j3k0u;False;False;[];;"> It's my 46th favorite anime of all time - -How do you even keep track that far down your list?";False;False;;;;1610111696;;False;{};gijd5f2;False;t3_kt0sts;False;True;t1_gij7vxe;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gijd5f2/;1610143437;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tomtomm9;;;[];;;;text;t2_3ycvxoo9;False;False;[];;Lol I remember being as pissed as you, but after asking people what actually happened in the movie I can appreciate it more.;False;False;;;;1610111752;;False;{};gijd8f0;False;t3_ksvk1w;False;True;t3_ksvk1w;/r/anime/comments/ksvk1w/rascal_does_not_dream_of_a_dreaming_girl_ending/gijd8f0/;1610143495;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;"I think it just rather annoying. People will ship anyone who talks to each other for a few lines one time. Then they go on to take it WAY too seriously. Also people can't just be platonic friends apparently. I always thought that stereotype of the girl who's into yaoi relationships too much was exaggerated but it's real - -It doesn't happen in this sub other thankfully. I think waifu wars are pretty dumb too though and they happen sometimes - -It also ended up upsetting me with Re Zero with that moment I'm S1 almost everyone knows. The show has the MC sink that ship super hard instead of unnecessarily dragging it out for 20 volumes, and people are still mad about it even though the character wasn't even and the MC actually acted more mature than he normally is";False;False;;;;1610111939;;1610112200.0;{};gijdi6u;False;t3_kt1n4z;False;True;t3_kt1n4z;/r/anime/comments/kt1n4z/why_do_people_dont_like_shippers/gijdi6u/;1610143685;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Skiibarou;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/NarikaShi;light;text;t2_36dcyuhb;False;False;[];;I heard the Gintama Live Action was really good compared to other live actions, does anyone know what anime episodes the live action covers?;False;False;;;;1610112023;;False;{};gijdmna;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijdmna/;1610143773;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610112249;;False;{};gijdywl;False;t3_kt171y;False;True;t3_kt171y;/r/anime/comments/kt171y/brutal_anime_recommendation_in_your_opinion/gijdywl/;1610144033;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xlaos;;;[];;;;text;t2_13f6j8;False;False;[];;">What I personally consider the best TV-show (aka, my favorite TV-show) is Cardcaptor Sakura - - Ive seen a lot of ppl, with whom i have similar taste, rate Cardcaptor Sakura really high but i still dont understand why. I watched around 50 episodes, it was alright but i still cant understand what is so exceptional about the series. Seemed like a typical mahou shoujo to me.";False;False;;;;1610112270;;False;{};gije003;False;t3_kt0sts;False;True;t1_gij7vxe;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gije003/;1610144053;1;True;False;anime;t5_2qh22;;0;[]; -[];;;valask2;;;[];;;;text;t2_6k0xfhs1;False;False;[];;I don't think that episode where Hasegawa and Gintoki look for a house is canon;False;False;;;;1610112285;;False;{};gije0rx;False;t3_ksuv1z;False;True;t1_giiuddk;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gije0rx/;1610144067;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Miidas-92;;MAL;[];;https://myanimelist.net/profile/Miidas;dark;text;t2_ja1jx;False;False;[];;"I keep track of my top 200 anime and top 200 characters. - -I like creating lists...";False;False;;;;1610112349;;False;{};gije4bv;False;t3_kt0sts;False;True;t1_gijd5f2;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gije4bv/;1610144134;1;True;False;anime;t5_2qh22;;0;[]; -[];;;johndrake666;;;[];;;;text;t2_178xlw;False;False;[];;It might be my age but I find Gintama corny and not funny.;False;False;;;;1610112429;;False;{};gije8rv;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gije8rv/;1610144216;1;True;False;anime;t5_2qh22;;0;[]; -[];;;valask2;;;[];;;;text;t2_6k0xfhs1;False;False;[];;Because there's an overarching plot in Gintama. The majority of the show is episodic but there's short 2-4 episode serious arcs in between them.;False;False;;;;1610112456;;False;{};gijea7t;False;t3_ksuv1z;False;True;t1_giiyewb;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijea7t/;1610144246;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Saberinbed;;;[];;;;text;t2_p00ls;False;False;[];;Who knows. Maybe MAL will finally start to implement a system that prevents this, or some AoT fan will create a bot to keep it at the top.;False;False;;;;1610112470;;False;{};gijeazn;False;t3_ksuv1z;False;False;t1_gijcphe;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijeazn/;1610144262;34;True;False;anime;t5_2qh22;;0;[]; -[];;;Erufailon4;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Erufailon4;light;text;t2_rtyakcn;False;False;[];;I've been thinking about watching Gintama after I catch up with One Piece... nice to have a long running story you can occasionally return to in between the other stuff you're watching/reading;False;False;;;;1610112480;;False;{};gijebjq;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijebjq/;1610144271;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AmpzieBoy;;;[];;;;text;t2_30ghs985;False;False;[];;I planned to watch it but I don’t want another one piece binge lol;False;False;;;;1610112483;;False;{};gijebq6;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijebq6/;1610144275;1;True;False;anime;t5_2qh22;;0;[]; -[];;;baquea;;;[];;;;text;t2_j3k0u;False;False;[];;Damn, meanwhile I'd struggle to give even my top 5 in order.;False;False;;;;1610112768;;False;{};gijerpv;False;t3_kt0sts;False;True;t1_gije4bv;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gijerpv/;1610144576;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cessicka;;;[];;;;text;t2_4kxvge30;False;False;[];;Hm what genre is this?;False;False;;;;1610112882;;False;{};gijey6s;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijey6s/;1610144694;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kouzuk4zu;;;[];;;;text;t2_5ndtk1em;False;False;[];;"""To be Continued? What kind of nonsense is this?"" -Been waiting on season 2 since season 1 stopped finished going online years ago, guess i'll wait some more ^^""";False;False;;;;1610112916;;False;{};gijf03g;False;t3_kt1yg5;False;True;t3_kt1yg5;/r/anime/comments/kt1yg5/watched_the_entire_series_never_skipped_the_outro/gijf03g/;1610144729;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IrisuKyouko;;;[];;;;text;t2_kmejo;False;False;[];;"From what I remember, the first season starts with a 2-part filler that (very confusingly for a new viewer) is set much later in the continuity, and uses a lot of characters and elements that normally don't appear until dozens of episodes into the series. - -Episode 3 is the actual beginning, and everything is introduced gradually after that. - -The first movie is a retelling of episodes 58-61, so they cover the same story arc.";False;False;;;;1610112973;;False;{};gijf3b2;False;t3_ksuv1z;False;False;t1_gijc4d4;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijf3b2/;1610144792;13;True;False;anime;t5_2qh22;;0;[]; -[];;;WorshiperOfHitagi;;;[];;;;text;t2_7y260mtj;False;False;[];;Also watch the Love Potion Ova before episode 38 of Gintama 2015.;False;False;;;;1610113140;;False;{};gijfcsd;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijfcsd/;1610144970;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gpsz6629;;;[];;;;text;t2_6hnfrrvt;False;False;[];;Gotta say I love L’s theme so this makes me pretty happy;False;False;;;;1610113264;;False;{};gijfjze;False;t3_kt28ut;False;True;t3_kt28ut;/r/anime/comments/kt28ut/levi_vs_luffy_i_love_levi_but_id_go_for_luffy/gijfjze/;1610145104;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok-Cantaloupe-8141;;;[];;;;text;t2_8a098d7v;False;False;[];;I didn't mean lesser known shows just wanted to say .....idk how to word it.....less superior??;False;False;;;;1610113389;;False;{};gijfr6l;True;t3_kt0sts;False;True;t1_gij8sdn;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gijfr6l/;1610145237;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;Wait what giant words are you talking about;False;False;;;;1610113398;;False;{};gijfrpi;False;t3_ksycwp;False;True;t1_giiz1um;/r/anime/comments/ksycwp/guys_is_one_piece_dubfunimation_good/gijfrpi/;1610145247;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;AOT isn't brutal. It is PATRIOTIC.;False;False;;;;1610113502;;False;{};gijfxtd;False;t3_kt171y;False;True;t1_gij93vo;/r/anime/comments/kt171y/brutal_anime_recommendation_in_your_opinion/gijfxtd/;1610145359;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rotten_riot;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/RottenOrange/;light;text;t2_20f93nxp;False;False;[];;Yeah, the only filler I ended up skipping is the Hasegawa recap;False;False;;;;1610113552;;False;{};gijg0s6;False;t3_ksuv1z;False;True;t1_giiorkl;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijg0s6/;1610145413;1;True;False;anime;t5_2qh22;;0;[]; -[];;;stilltemporary_;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/;light;text;t2_3aho68kc;False;False;[];;give it a chance, guys, gintama changed my life :D;False;False;;;;1610113553;;False;{};gijg0uy;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijg0uy/;1610145414;3;True;False;anime;t5_2qh22;;0;[]; -[];;;gustafrex;;;[];;;;text;t2_16i8fl;False;False;[];;"Oh i was gonna say that ""I'm watching it in the wrong order?!?!"" - -But now i understand :D";False;False;;;;1610113761;;False;{};gijgd2a;False;t3_ksuv1z;False;True;t1_giid8qw;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijgd2a/;1610145646;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cybersteel;;;[];;;;text;t2_dpy8o;False;False;[];;Once you move here you're like oh, it's not like they're brilliantly creative or anything but they're masters of incorporating their experiences and surroundings into their art. It's sad but I can't get into such shows anymore.;False;False;;;;1610113892;;False;{};gijgkop;False;t3_kswsf8;False;True;t3_kswsf8;/r/anime/comments/kswsf8/nothing_beats_the_happiness_of_watch_slice_of_life/gijgkop/;1610145788;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SilentPalmolive;;;[];;;;text;t2_2dc8pgb;False;False;[];;If I were to watch this on crunchyroll? Would it be in the order I needed?;False;False;;;;1610114130;;False;{};gijgyu3;False;t3_ksuv1z;False;True;t1_giid8qw;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijgyu3/;1610146045;1;True;False;anime;t5_2qh22;;0;[]; -[];;;River_sounds;;;[];;;;text;t2_y4vd1;False;False;[];;The ED definitely did stick out since i remember it after all these years, it's very catchy. I still have the song in my archive. Would love a season 2 for this series but highly unlikely imo.;False;False;;;;1610114254;;False;{};gijh6df;False;t3_kt1yg5;False;True;t3_kt1yg5;/r/anime/comments/kt1yg5/watched_the_entire_series_never_skipped_the_outro/gijh6df/;1610146180;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zurajanaikatsura_da;;;[];;;;text;t2_8zard2g7;False;False;[];;Guys please watch gintama!;False;False;;;;1610114354;;False;{};gijhcea;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijhcea/;1610146292;3;True;False;anime;t5_2qh22;;0;[]; -[];;;angrypaaanda;;;[];;;;text;t2_148pdf;False;False;[];;Sorry if this has been asked, but are all the Gintama movies anime arcs molded into a movie or they’re stand apart story lines? Thanks!;False;False;;;;1610114500;;False;{};gijhl5p;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijhl5p/;1610146451;1;True;False;anime;t5_2qh22;;0;[];True -[];;;ricochet48;;;[];;;;text;t2_7e1sp;False;False;[];;"I just wish there was a way to filter this out of MAL. These clutter up the tops spots so much haha. - -Maybe I'll give it a chance some day, but it doesn't look like my cup of tea at the moment, so it's not top of the queue.";False;False;;;;1610114537;;False;{};gijhnc6;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijhnc6/;1610146490;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LilQuasar;;;[];;;;text;t2_tzbr5mp;False;False;[];;Gintama is the only anime i havent skipped the filler. i cant tell the difference;False;False;;;;1610114672;;False;{};gijhvl8;False;t3_ksuv1z;False;True;t1_giiorkl;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijhvl8/;1610146640;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LilQuasar;;;[];;;;text;t2_tzbr5mp;False;False;[];;devil is a part timer is as funny imo, main difference is length;False;False;;;;1610114801;;False;{};giji3g8;False;t3_ksuv1z;False;True;t1_gij3wlq;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giji3g8/;1610146784;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Kariston;;;[];;;;text;t2_b4j0j;False;True;[];;Can someone explain this to a layman or entry level anime enthusiast? Should these movies be watched as opposed to the episodes listed underneath?;False;False;;;;1610114812;;False;{};giji45u;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giji45u/;1610146797;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SAMAS_zero;;;[];;;;text;t2_3dtc3dnl;False;False;[];;So is there a Gintama: Heart Gold?;False;False;;;;1610114860;;False;{};giji772;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giji772/;1610146851;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahou_Shoujo_Ramune;;;[];;;;text;t2_4vs4l2r6;False;False;[];;Regarding your selection of shows. I get the impression you haven't watched a lot of anime.;False;False;;;;1610114885;;False;{};giji8oj;False;t3_kt0sts;False;True;t1_gijfr6l;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/giji8oj/;1610146879;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;"You don't know what ""Shonen"" means.";False;False;;;;1610114899;;False;{};giji9lh;False;t3_kszbmc;False;True;t3_kszbmc;/r/anime/comments/kszbmc/anyone_else_think_anime_is_really_dull_lately/giji9lh/;1610146896;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;definitely not just a hint. I wouldn't mention it if it was simply that. It's a full-on spoiler;False;False;;;;1610115000;;False;{};gijifvz;False;t3_ksuv1z;False;False;t1_gij93uz;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijifvz/;1610147006;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Miidas-92;;MAL;[];;https://myanimelist.net/profile/Miidas;dark;text;t2_ja1jx;False;False;[];;"Considering I have 5 mahou shoujo in my top 10, being a mahou shoujo is the opposite of a negative for me. While many people with similar taste to you like CCS, doesn't mean that you'll necessarily enjoy it as well, since no anime is for everyone. No matter the anime, there will be people that think it sucks or think it's mediocre. Here is a small description of what makes it special to me: - -Many shows have made me reminisce of the past, but Cardcaptor Sakura captured a sense of nostalgia, greater than what I’ve felt from any other medium. There is an abnormal amount of innocence and acceptance, making it capable of tactfully dealing with mature themes through the eyes of a child, while remaining a relaxing and fun watch, as you know everything will be alright. It naturally juggles relaxing, comedic and dramatic moments, and all of these enhance each other to greater highs, making you truly care about its characters and the events unfolding. Both the magic system and world gradually expand on its possibilities, making sure there is always something new around the corner, not growing stale despite its episodic structure. - -CCS also got top notch production values, and is a contender for most gorgeous wardrobe and color palette in all of anime. It was also my gateway into more lighthearted magical girl anime.";False;False;;;;1610115342;;False;{};gijj1kw;False;t3_kt0sts;False;True;t1_gije003;/r/anime/comments/kt0sts/is_steinsgate_the_best_tv_show_of_all_time/gijj1kw/;1610147404;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gobledygork;;;[];;;;text;t2_3n0tttjk;False;False;[];;What about the live action movie (which was actually ok dont @ me);False;False;;;;1610115623;;False;{};gijjjmr;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijjjmr/;1610147772;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hopeless_dick_dancer;;;[];;;;text;t2_fk5gw;False;False;[];;If I just start at the beginning of the series and watch straight through(including filler) will I need to watch any movies in addition? Am I missing anything by not watching movies?;False;False;;;;1610115796;;False;{};gijjut4;False;t3_ksuv1z;False;True;t1_giiair1;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijjut4/;1610148009;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610116020;;False;{};gijk9e8;False;t3_ksuv1z;False;True;t1_gij78zt;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijk9e8/;1610148277;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AmeyWankhede;;;[];;;;text;t2_3eqeil1y;False;False;[];;I really hoped that a new season would come rather than a movie;False;False;;;;1610116058;;False;{};gijkbvm;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijkbvm/;1610148322;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Demolution-Gamer786;;;[];;;;text;t2_2y4pbcre;False;False;[];;I feel overwhelmed by all these anime I don’t have time to watch all and I almost want to quite watching anime but then I watch riverdale or stranger things I realize how good anime is;False;False;;;;1610116313;;False;{};gijkshm;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijkshm/;1610148683;2;True;False;anime;t5_2qh22;;0;[];True -[];;;Lambo256;;;[];;;;text;t2_3jot49a9;False;False;[];;The Final is the only canon movie that you need to watch. The benizakura movie is a retelling of the arc in the show, and the Be Forever Yorozuya is a standalone. They’re both really good though so I suggest you watching them.;False;False;;;;1610116492;;False;{};gijl45e;False;t3_ksuv1z;False;False;t1_gijjut4;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijl45e/;1610148918;3;True;False;anime;t5_2qh22;;0;[]; -[];;;reddit_reaper;;;[];;;;text;t2_6vnju;False;False;[];;By not sleeping lol i have a tv binging addiction;False;False;;;;1610116522;;False;{};gijl64e;False;t3_ksuv1z;False;True;t1_gij41gu;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijl64e/;1610148952;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hopeless_dick_dancer;;;[];;;;text;t2_fk5gw;False;False;[];;Thanks!;False;False;;;;1610116539;;False;{};gijl78m;False;t3_ksuv1z;False;True;t1_gijl45e;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijl78m/;1610148973;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Therandomfox;;;[];;;;text;t2_olosp;False;False;[];;Gintama is finally ending huh? End of an era...;False;False;;;;1610116726;;False;{};gijljir;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijljir/;1610149217;1;True;False;anime;t5_2qh22;;0;[]; -[];;;whowilleverknow;;MAL;[];;https://myanimelist.net/animelist/BignGay;dark;text;t2_o6bib;False;False;[];;This sub is largely straight men and the shipping community is more the domain of women and gay men. They will try to explain it away with a few examples of the more annoying behaviour of a portion of shippers, but it's very clear that that is not the only issue.;False;False;;;;1610116757;;False;{};gijllmg;False;t3_kt1n4z;False;True;t3_kt1n4z;/r/anime/comments/kt1n4z/why_do_people_dont_like_shippers/gijllmg/;1610149257;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;Be Forever Yorozuya is great, so definitely watch it. It was originally intended as the ending of the anime (not the manga) when it was uncertain that more would be made;False;False;;;;1610116902;;False;{};gijlvfs;False;t3_ksuv1z;False;False;t1_gijjut4;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijlvfs/;1610149449;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;Fruits basket remake is literally perfect.;False;False;;;;1610116912;;False;{};gijlw53;False;t3_ksxk2m;False;True;t3_ksxk2m;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/gijlw53/;1610149466;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RoxazXeron;;;[];;;;text;t2_6x9tvqm9;False;False;[];;Now show me the watch order for fate. I wanna get back into that but don't know where to start.;False;False;;;;1610116924;;False;{};gijlwym;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijlwym/;1610149482;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sarugetchu;;;[];;;;text;t2_8oe7ks4;False;False;[];;"So I just started watching on crunchyroll and the first episode has a ""recap"" after the OP...am I watching the wrong thing?";False;False;;;;1610117301;;False;{};gijmmfe;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijmmfe/;1610149970;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Riffle_X;;;[];;;;text;t2_5x53gx3k;False;False;[];;what is gintanma about;False;False;;;;1610117348;;False;{};gijmpn4;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijmpn4/;1610150032;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yeetmaster05;;;[];;;;text;t2_3djhn2oa;False;False;[];;Can someone tell me what soul silver is?? I can’t seem to find any info on it;False;False;;;;1610117378;;False;{};gijmrqj;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijmrqj/;1610150071;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AgentJin;;;[];;;;text;t2_psqw5;False;False;[];;After Gintama Silver Soul, before Gintama: The Final;False;False;;;;1610117409;;False;{};gijmtu2;False;t3_ksuv1z;False;True;t1_giivahp;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijmtu2/;1610150108;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Boriswc;;;[];;;;text;t2_bh76q;False;False;[];;Saving for the day I decide to watch Gintama lol;False;False;;;;1610117460;;False;{};gijmx9a;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijmx9a/;1610150181;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Isogash;;MAL;[];;https://myanimelist.net/animelist/Isogash;dark;text;t2_b2n8a;False;False;[];;Non Non Biyori;False;False;;;;1610117619;;False;{};gijn86k;False;t3_ksyxk8;False;False;t3_ksyxk8;/r/anime/comments/ksyxk8/i_need_some_recommendations/gijn86k/;1610150397;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AgentJin;;;[];;;;text;t2_psqw5;False;False;[];;"First 2 episodes were a filler special to celebrate that the manga was able to get a show. - -The first Gintama movie is a remake/retelling of the arc that happens in episodes 58-61. Personally I’d watch both the TV episodes and the movie because both are good.";False;False;;;;1610117679;;False;{};gijncfn;False;t3_ksuv1z;False;True;t1_gij33h9;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijncfn/;1610150474;3;True;False;anime;t5_2qh22;;0;[]; -[];;;arkker811;;;[];;;;text;t2_52737nq3;False;False;[];;tamatama gintama;False;False;;;;1610117693;;False;{};gijndc3;False;t3_ksuv1z;False;True;t1_gij0jbn;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijndc3/;1610150491;1;True;False;anime;t5_2qh22;;0;[]; -[];;;3bbd;;;[];;;;text;t2_q6fhi86;False;False;[];;Last SoL I watched was Princess Connect, quite beautiful and fun, highly recommend;False;False;;;;1610117746;;False;{};gijnh3a;False;t3_kswsf8;False;True;t3_kswsf8;/r/anime/comments/kswsf8/nothing_beats_the_happiness_of_watch_slice_of_life/gijnh3a/;1610150577;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phrog-and-phish;;;[];;;;text;t2_3w1qgmoj;False;False;[];;God;False;False;;;;1610117757;;False;{};gijnhv1;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijnhv1/;1610150591;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jetsfan051;;;[];;;;text;t2_2b129pza;False;False;[];;And they turned that into content. Only Gintama can be so big brained;False;False;;;;1610117786;;False;{};gijnjw5;False;t3_ksuv1z;False;True;t1_giikd2z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijnjw5/;1610150630;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BiddleBot300;;;[];;;;text;t2_28m9bgfz;False;False;[];;Yeah that’s fair because if you read into it then it’ll definitely ruin one of the best moments in the entire show.;False;False;;;;1610117805;;False;{};gijnl7z;False;t3_ksuv1z;False;True;t1_gijifvz;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijnl7z/;1610150659;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mysterious_Ball;;;[];;;;text;t2_2pah01bb;False;False;[];;Wait what the movies are canon :0 ? I'm on ep 250+ and haven't seen any of the movies :/. Should I go back and watch them?;False;False;;;;1610117863;;False;{};gijnoyx;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijnoyx/;1610150724;1;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Shows the Silver Award... and that's it."", 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'icon_width': 512, 'id': 'gid_1', 'is_enabled': True, 'is_new': False, 'name': 'Silver', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;SexyWhitedemoman;;;[];;;;text;t2_85s1v;False;False;[];;https://www.reddit.com/r/fatestaynight/comments/df8rvo/rfatestaynights_official_viewing_order_guide_v2/;False;False;;;;1610117896;;False;{'gid_1': 1};gijnr3s;False;t3_ksuv1z;False;True;t1_giisrry;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijnr3s/;1610150762;2;True;False;anime;t5_2qh22;;1;[]; -[];;;SexyWhitedemoman;;;[];;;;text;t2_85s1v;False;False;[];;https://www.reddit.com/r/fatestaynight/comments/df8rvo/rfatestaynights_official_viewing_order_guide_v2/;False;False;;;;1610117968;;False;{};gijnvzm;False;t3_ksuv1z;False;True;t1_gijlwym;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijnvzm/;1610150855;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SexyWhitedemoman;;;[];;;;text;t2_85s1v;False;False;[];;https://www.reddit.com/r/fatestaynight/comments/df8rvo/rfatestaynights_official_viewing_order_guide_v2/;False;False;;;;1610117979;;False;{};gijnwqm;False;t3_ksuv1z;False;True;t1_giiyfqf;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijnwqm/;1610150869;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cetio;;;[];;;;text;t2_yy4qn0;False;False;[];;Thank you;False;False;;;;1610117980;;False;{};gijnwtl;False;t3_ksuv1z;False;True;t1_gijnr3s;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijnwtl/;1610150870;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SexyWhitedemoman;;;[];;;;text;t2_85s1v;False;False;[];;https://www.reddit.com/r/fatestaynight/comments/df8rvo/rfatestaynights_official_viewing_order_guide_v2/;False;False;;;;1610118002;;False;{};gijnybw;False;t3_ksuv1z;False;True;t1_giizt6r;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijnybw/;1610150897;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vilnae;;;[];;;;text;t2_6mygzpi8;False;False;[];;">Maybe MAL will finally start to implement a system that prevents - -They did about half a year ago. It's not perfect but it works, although it needs to be manually turned on for the problematic show. They released it when Reviewers came out and was spammed 10s by nux fans while the third season of Chihayafuru got spammed with 1s by Vinland Saga fans. - -I like to think Chihaya was the straw that broke the camel's back.";False;False;;;;1610118039;;1610122769.0;{};gijo0vg;False;t3_ksuv1z;False;False;t1_gijeazn;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijo0vg/;1610150951;14;True;False;anime;t5_2qh22;;0;[]; -[];;;AgentJin;;;[];;;;text;t2_psqw5;False;False;[];;" Gintama does have a serious story tell, and it does have serious arcs. However the formula for the episodes is usually “handful of standalone comedy episodes,” “maybe a short comedy arc that lasts 2-ish episodes,” and then “serious story arc that lasts 5+ episodes.” - -If you didn’t like the comedy towards the beginning, it’s probably not worth sitting through it just to get to the serious arcs since the show is mostly comedy episodes. And the serious/main story arcs only make sense if you’ve watched the comedy episodes.";False;False;;;;1610118162;;False;{};gijo9i3;False;t3_ksuv1z;False;True;t1_gij4sjz;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijo9i3/;1610151119;1;True;False;anime;t5_2qh22;;0;[]; -[];;;expressionofdeath;;;[];;;;text;t2_6cd7tds1;False;False;[];;The first two episodes are filler. Start from the third one.;False;False;;;;1610118187;;False;{};gijob7m;False;t3_ksuv1z;False;True;t1_gij9vwd;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijob7m/;1610151156;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MrSlay;;;[];;;;text;t2_9014g;False;False;[];;I tried watching it but it really isnt my type of humor dropped it after around 10 episodes.;False;False;;;;1610118370;;False;{};gijonvc;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijonvc/;1610151394;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bbharukaa;;;[];;;;text;t2_4ne3c4nt;False;False;[];;"yeah I've watch anohana, great show. Haven't gotten to silent voice - -Though when I say sol, Im refering to stuff like zombieland saga,or saiki k.";False;False;;;;1610118383;;False;{};gijoori;True;t3_kswsf8;False;True;t1_gij6img;/r/anime/comments/kswsf8/nothing_beats_the_happiness_of_watch_slice_of_life/gijoori/;1610151409;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;BiscuitsAnimeAlt;;skip7;[];;;dark;text;t2_5bg27zau;False;False;[];;Yes!!! Thank you Ive wanted to start gintama for a long time but never knew enough to do it;False;False;;;;1610118467;;False;{};gijouoi;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijouoi/;1610151511;2;True;False;anime;t5_2qh22;;0;[]; -[];;;emeraldwolf34;;;[];;;;text;t2_5ii972bi;False;False;[];;I actually just finished in December and started in March, although I don't know where I can find the movies.;False;False;;;;1610118475;;False;{};gijov7p;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijov7p/;1610151521;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IdkPotato2000;;;[];;;;text;t2_6o6fmjwc;False;False;[];;Unrelated, but a bot just asked me if r/anime is about anime. Also, this is helpful. Thank you.;False;False;;;;1610118544;;False;{};gijp03n;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijp03n/;1610151604;1;True;False;anime;t5_2qh22;;0;[]; -[];;;violettheory;;MAL;[];;https://myanimelist.net/profile/violettheory;dark;text;t2_agc6t;False;False;[];;I know zero about this show, not even what genre it is. How are the first two episodes of an absolutely massive show like this worth skipping? Do they not introduce the characters and set up the story or something?;False;False;;;;1610118836;;False;{};gijpkv3;False;t3_ksuv1z;False;True;t1_giiorkl;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijpkv3/;1610151961;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Underblade;;;[];;;;text;t2_goj8v;False;False;[];;Ah yes final;False;False;;;;1610118933;;False;{};gijprtv;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijprtv/;1610152097;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DumbClamCollector;;;[];;;;text;t2_14u8h0;False;False;[];;Never seen gintama... anyone have a recommendation why I should try watching it ?;False;False;;;;1610119343;;False;{};gijqlo7;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijqlo7/;1610152634;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mukerman;;;[];;;;text;t2_13fad3;False;False;[];;I just watched all 362-ish episodes that are on Crunchyroll. For some reason they don't use the same naming system, so it's difficult to know which parts of Gintama I have actually watched lol. Can anyone let me know how only watching the stuff on Crunchyroll compares to this list, ie what I missed?;False;False;;;;1610119413;;False;{};gijqqqd;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijqqqd/;1610152722;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Happyfever;;;[];;;;text;t2_tzso1;False;False;[];;Thank you! But why don’t we just watch from 1-200 like normal? I know the story is not in order but it just how the creator wants us to see right? From 1-200 like normal? 🤷‍♂️;False;False;;;;1610119435;;False;{};gijqs9q;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijqs9q/;1610152751;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rom439;;;[];;;;text;t2_app5v;False;False;[];;Gintama has no filler because it's all filler. Even the parts that aren't filler. That's why it's untouchable;False;False;;;;1610119499;;False;{};gijqwx4;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijqwx4/;1610152839;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SP0KEN57;;;[];;;;text;t2_7phrvrty;False;False;[];;So is this show good or what’s it like;False;False;;;;1610119523;;False;{};gijqypq;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijqypq/;1610152870;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Getrolledumbass;;;[];;;;text;t2_zq9g0d6;False;False;[];;They don't make anime like this anymore, great show.;False;False;;;;1610119541;;False;{};gijqzz3;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijqzz3/;1610152893;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Patrickcau;;;[];;;;text;t2_221m2sim;False;False;[];;What do I do if I have watched most of the episodes but forgot the main story? Are there recaps?;False;False;;;;1610119595;;False;{};gijr3wm;False;t3_ksuv1z;False;True;t1_gii9nnz;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijr3wm/;1610152963;1;True;False;anime;t5_2qh22;;0;[]; -[];;;warm-ice;;;[];;;;text;t2_14py3p;False;False;[];;Gintama is one of the very few anime that genuinely benefit from anime original content. Otae beating up the director and causing the art style to change to Fist of the North Star is absolute gold;False;False;;;;1610119614;;False;{};gijr5bb;False;t3_ksuv1z;False;True;t1_gij72cc;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijr5bb/;1610152989;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Snipe-Out;;;[];;;dark;text;t2_5604j7dg;False;False;[];;Wait, why did Vinland Saga fans down rate chiyafuru?;False;False;;;;1610119642;;False;{};gijr7fo;False;t3_ksuv1z;False;False;t1_gijo0vg;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijr7fo/;1610153030;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Perfect600;;;[];;;;text;t2_dkq29;False;False;[];;Try the dub;False;False;;;;1610119786;;False;{};gijri2h;False;t3_ksuv1z;False;True;t1_giivm0f;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijri2h/;1610153233;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ignustax;;;[];;;;text;t2_91qin8cm;False;False;[];;Thanks for the advice.;False;False;;;;1610120090;;False;{};gijs4aq;False;t3_ksuv1z;False;True;t1_gijob7m;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijs4aq/;1610153626;1;True;False;anime;t5_2qh22;;0;[]; -[];;;easyusername15;;;[];;;;text;t2_u634w;False;False;[];;I feel like one should watch the first two episodes after they watch the whole first series or first 20 episodes. When I first was watching I didnt know what the fuck was going on in those first two episodes and it wasnt really funny because I didnt know the characters. First time I watched, the first 20 episodes really werent funny for me but on rewatches those episodes are hilarious.;False;False;;;;1610120173;;False;{};gijsae7;False;t3_ksuv1z;False;True;t1_giiq4g2;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijsae7/;1610153733;1;True;False;anime;t5_2qh22;;0;[]; -[];;;indi_n0rd;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Get wild and tough;dark;text;t2_ewftfzy;False;False;[];;First two episode were kind of celebration episode for anime adaptation.;False;False;;;;1610120181;;False;{};gijsazc;False;t3_ksuv1z;False;False;t1_gijf3b2;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijsazc/;1610153745;5;True;False;anime;t5_2qh22;;0;[]; -[];;;TheLastAshaman;;;[];;;;text;t2_7u1g0294;False;False;[];;Is that what OVAs are? Those movies serve as a replacement for some episodes?;False;False;;;;1610120293;;False;{};gijsj5r;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijsj5r/;1610153886;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tastycow204;;;[];;;;text;t2_34c6umsi;False;False;[];;is gintama 2017 a remake or a sequel?;False;False;;;;1610120303;;False;{};gijsjyf;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijsjyf/;1610153899;2;True;False;anime;t5_2qh22;;0;[]; -[];;;notpretentious;;MAL;[];;http://myanimelist.net/animelist/not-pretentious;dark;text;t2_jk1vl;False;False;[];;has it been announced whether or not there will be a season following this? Or is this, like, it?;False;False;;;;1610120331;;False;{};gijsly8;False;t3_ksuv1z;False;True;t1_giiqdc7;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijsly8/;1610153932;3;True;False;anime;t5_2qh22;;0;[]; -[];;;easyusername15;;;[];;;;text;t2_u634w;False;False;[];;Prison school is pretty funny too, only other anime I laughed at just as hard as gintama.;False;False;;;;1610120331;;False;{};gijslys;False;t3_ksuv1z;False;True;t1_gij3wlq;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijslys/;1610153932;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gamebond89;;;[];;;;text;t2_1g3oy5ey;False;False;[];;"Animation vise probably one punch man as it had dozen of different anime artists and different studios. They did Murata's incredible art justice! -This is kinda off topic but my favourite in terms of visuals is probably Kimi No Na Wa. Just drop dead gorgeous.";False;False;;;;1610120498;;False;{};gijsyiq;False;t3_ksx5yz;False;True;t3_ksx5yz;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/gijsyiq/;1610154152;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Megarboh;;;[];;;;text;t2_1a4c1mhh;False;False;[];;What’s up with the first 2 episodes;False;False;;;;1610120541;;False;{};gijt1qf;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijt1qf/;1610154208;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hublaka;;;[];;;;text;t2_4neoyjr0;False;False;[];;What about the live action?;False;False;;;;1610120787;;False;{};gijtk7i;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijtk7i/;1610154522;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aTrustfulFriend;;;[];;;;text;t2_oppp4;False;False;[];;I also remember Ghost in the Shell feeling like a longer movie. Probably my favorite anime movie out there, followed by Sword of the Stranger;False;False;;;;1610120965;;False;{};gijtxub;False;t3_ksxk2m;False;True;t1_giitcoq;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/gijtxub/;1610154755;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dragonduelistman;;;[];;;;text;t2_6l4h6;False;False;[];;If you watch popori hen before 300 and then you dont get a breather until silver soul then that first episode of that arc should hit so much better imo;False;False;;;;1610120968;;False;{};gijty1z;False;t3_ksuv1z;False;False;t1_giiair1;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijty1z/;1610154758;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sharebear42019;;;[];;;;text;t2_z1jb0;False;False;[];;Is there a way to see a list with episode number and not by season? I remember leaving off around ep 300 shogun arc;False;False;;;;1610121292;;False;{};gijumrw;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijumrw/;1610155195;1;True;False;anime;t5_2qh22;;0;[]; -[];;;A_M_Speedy;;;[];;;;text;t2_3hx4pt9u;False;False;[];;"To add to that. in real time porori came out after 2015&2017 even makes some small references to it. Nothing spoilery tho. Still you should definitely watch it as this img says because it breaks the flow of what the series has been leading to.";False;False;;;;1610121363;;False;{};gijus6a;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijus6a/;1610155289;2;True;False;anime;t5_2qh22;;0;[]; -[];;;A_M_Speedy;;;[];;;;text;t2_3hx4pt9u;False;False;[];;The manga has been over for like a year now. So this is it.;False;False;;;;1610121461;;False;{};gijuzs1;False;t3_ksuv1z;False;False;t1_gijsly8;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijuzs1/;1610155422;7;True;False;anime;t5_2qh22;;0;[]; -[];;;issa_mimzy;;;[];;;;text;t2_18zc23qd;False;False;[];;Im on episode 150 ish and i cant get enough and now it ends? :,(;False;False;;;;1610121598;;False;{};gijvadd;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijvadd/;1610155605;2;True;False;anime;t5_2qh22;;0;[]; -[];;;A_M_Speedy;;;[];;;;text;t2_3hx4pt9u;False;False;[];;"I rate it higher as well, and I'm not even a manga reader. Just what i've seen upto now. S3 solidified it as my favorite plot anime if you know what i mean. In terms of story progression, foreshadowing, build up to revelations, and a cohesive storyline that only keeps getting more & more interesting.";False;False;;;;1610121659;;False;{};gijveyt;False;t3_ksuv1z;False;True;t1_gijbfzz;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijveyt/;1610155697;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ParkyClaus;;;[];;;;text;t2_xkyys;False;False;[];;I think its funnier if you watch the slip arc when it actually aired lol;False;False;;;;1610121694;;False;{};gijvhpz;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijvhpz/;1610155744;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WACS_On;;;[];;;;text;t2_notm65o;False;False;[];;Try the manga. Pretty much the exact same dialogue but you can read at your pace;False;False;;;;1610121707;;False;{};gijvior;False;t3_ksuv1z;False;False;t1_giivm0f;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijvior/;1610155759;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nicolasnunez4;;;[];;;;text;t2_i51f8;False;False;[];;Thank you soooo much!!!!!;False;False;;;;1610121728;;False;{};gijvkbc;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijvkbc/;1610155786;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mikharv31;;;[];;;;text;t2_ggdg6;False;False;[];;Saving this for whenever i decide to binge gintama;False;False;;;;1610121915;;False;{};gijvyeo;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijvyeo/;1610156024;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FireRifle64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FireRifle64;light;text;t2_29fr8mww;False;False;[];;AS long as we get High School DxD, I am fine with anything.;False;False;;;;1610121920;;False;{};gijvytb;False;t3_ksxph9;False;True;t3_ksxph9;/r/anime/comments/ksxph9/anime_stuff_to_watch_on_vr/gijvytb/;1610156031;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RochHoch;;;[];;;;text;t2_ideh3;False;False;[];;The first two episodes are anime-only filler that were written for people who already knew the series through the manga. They can be off-putting to new viewers, since the actual beginning of the story isn't until episode 3.;False;False;;;;1610121940;;False;{};gijw0e1;False;t3_ksuv1z;False;True;t1_gijpkv3;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijw0e1/;1610156059;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FireRifle64;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/FireRifle64;light;text;t2_29fr8mww;False;False;[];;I agree man, fuck that ending to Usagi drop in the manga. But man, the anime was so adorable tho.;False;False;;;;1610122031;;False;{};gijw76o;False;t3_kswsf8;False;True;t1_giipyz7;/r/anime/comments/kswsf8/nothing_beats_the_happiness_of_watch_slice_of_life/gijw76o/;1610156173;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jamieb1994;;;[];;;;text;t2_15b38m;False;False;[];;Is Gintama (2015) the sequel series to the 2006 version or is it like a reboot of the original anime?;False;False;;;;1610122218;;False;{};gijwloo;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijwloo/;1610156421;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iStaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/iStaki;light;text;t2_ioondgh;False;False;[];;I only got to episode 17, someone said I should first watch most of popular and big animes before watching Gintama so I could understand all the references and humor. Idk if thats true or not. I only have Dragon Ball and One Piece left of the big ones, One Piece I'm watching now with 80 episodes in, I'm rly enjoying it. I will probably never understand every single reference but I saw that sometimes in episode they put whats the reference about on top which is nice. I'm thinking of watching every few days one or two episodes when I want to take some time of One Piece. Is that good idea?;False;False;;;;1610122265;;False;{};gijwpbj;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijwpbj/;1610156483;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LeoGiacometti;;;[];;;;text;t2_13n8qv;False;False;[];;"I never understood why people would skip ""filler"" episodes, specially in a comedy show.";False;False;;;;1610122286;;False;{};gijwqw0;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijwqw0/;1610156508;3;True;False;anime;t5_2qh22;;0;[]; -[];;;collapsedblock6;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/collapsedblock;light;text;t2_pqur4;False;False;[];;"With long running shows you want to pace yourself. I myself watch long running shows for breakfast and did with Gintama for a long while, which caused to take quite a while to finish the first season (5 months). - -But Gintama is a show that really improves on itself and learns to use its strengths better, by the time I reached the 200 mark I was watching several episodes per day, and before I knew it, I watched the remaining 150 episodes in *3 weeks*. A number that could have totally been smaller but I legit told myself I was finishing it too fast.";False;False;;;;1610122422;;False;{};gijx1ch;False;t3_ksuv1z;False;False;t1_giirlxt;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijx1ch/;1610156683;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Viron_22;;;[];;;;text;t2_eyjtt;False;False;[];;Pretty sure I stopped keeping up with it back in 2008-2009, is it really too hard to ask that they just keep the same name?;False;False;;;;1610122423;;False;{};gijx1fq;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijx1fq/;1610156684;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mynameisjoeeeeeee;;MAL;[];;http://myanimelist.net/profile/Joeeeeeee;dark;text;t2_9tgkk;False;False;[];;I hope that they do another gag where this is just the last movie, but then they announce another season again lol;False;False;;;;1610122424;;False;{};gijx1i6;False;t3_ksuv1z;False;False;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijx1i6/;1610156685;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bmcgrill05;;;[];;;;text;t2_410ds77z;False;False;[];;You don’t have to look for a favorable genre right away, but in order to love anime watch an addicting and awesome show. Attack on Titan is what I started with and I highly recommend u do the same;False;False;;;;1610123994;;False;{};gik0ge6;False;t3_kt0xw2;False;True;t3_kt0xw2;/r/anime/comments/kt0xw2/hi_my_name_is_flavio_and_i_want_to_know_some_anime/gik0ge6/;1610158829;2;True;False;anime;t5_2qh22;;0;[]; -[];;;limberwisk;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/limberwisk;light;text;t2_15b7pb77;False;False;[];;Watched the show because of this scene. It was very short and all of it was great. Need more very short shows. Recommend me if you have some;False;False;;;;1610124662;;False;{};gik1xcb;False;t3_ksvfai;False;True;t3_ksvfai;/r/anime/comments/ksvfai/in_anime_once_youre_grabbed_by_the_face_you_are/gik1xcb/;1610159769;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Marc_Lim;;;[];;;;text;t2_3z6hktr9;False;False;[];;I have just watched a silent voice and i have heard it was very sad but man sadness level was like only a 5/10;False;False;;;;1610124714;;False;{};gik21gn;True;t3_ksx5ev;False;True;t1_giit64b;/r/anime/comments/ksx5ev/sad_romance_anime_recommendations/gik21gn/;1610159845;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bropex;;null a-amq;[];;;dark;text;t2_nynmr;False;False;[];;Macross DYRL;False;False;;;;1610124769;;False;{};gik25tg;False;t3_ksx5yz;False;True;t3_ksx5yz;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/gik25tg/;1610159930;2;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;It only really works if you relate to bullying fully in some way.;False;False;;;;1610125420;;False;{};gik3lre;False;t3_ksx5ev;False;True;t1_gik21gn;/r/anime/comments/ksx5ev/sad_romance_anime_recommendations/gik3lre/;1610160834;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cold_Saber;;;[];;;;text;t2_3oclhqjh;False;False;[];;You couldn't make a comment anymore false than this one.;False;False;;;;1610128217;;False;{};gik9yzo;False;t3_ksycwp;False;True;t1_giivkcr;/r/anime/comments/ksycwp/guys_is_one_piece_dubfunimation_good/gik9yzo/;1610164806;1;True;False;anime;t5_2qh22;;0;[]; -[];;;8andahalfby11;;MAL;[];;https://myanimelist.net/animelist/thereIwasnt;dark;text;t2_kvyfg;False;False;[];;Berserk is my favorite Slice of Life manga.;False;False;;;;1610129050;;False;{};gikbwct;False;t3_kswsf8;False;False;t1_gija8x0;/r/anime/comments/kswsf8/nothing_beats_the_happiness_of_watch_slice_of_life/gikbwct/;1610165969;8;True;False;anime;t5_2qh22;;0;[]; -[];;;BigRoninMan1;;;[];;;;text;t2_6oxkljbv;False;False;[];;Broly;False;False;;;;1610130257;;False;{};gikene6;False;t3_ksvfai;False;True;t3_ksvfai;/r/anime/comments/ksvfai/in_anime_once_youre_grabbed_by_the_face_you_are/gikene6/;1610167606;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Marc_Lim;;;[];;;;text;t2_3z6hktr9;False;False;[];;"Just watched 5cm per second and it wasnt sad at all though.. at least not very sad - -Sadness level 4/10";False;False;;;;1610130305;;False;{};gikere7;True;t3_ksx5ev;False;True;t1_giip0bu;/r/anime/comments/ksx5ev/sad_romance_anime_recommendations/gikere7/;1610167670;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VaNd3n1S;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_5rzpwzfv;False;False;[];;Guys, guys, guys, guys. HAVE YALL SEEN PROMARE?;False;False;;;;1610130862;;False;{};gikg1rh;False;t3_ksx5yz;False;False;t3_ksx5yz;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/gikg1rh/;1610168448;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Butt_Chug_Brother;;;[];;;;text;t2_69wfaxjk;False;False;[];;/u/downloadvideo;False;False;;;;1610131724;;False;{};giki1o5;False;t3_ksvfai;False;True;t3_ksvfai;/r/anime/comments/ksvfai/in_anime_once_youre_grabbed_by_the_face_you_are/giki1o5/;1610169620;1;True;False;anime;t5_2qh22;;0;[]; -[];;;downloadvideo;;;[];;;;text;t2_642dzjl8;False;False;[];;"*beep. boop.* 🤖 I'm a bot that helps you download videos! - -##[Download Video](https://www.reddit.watch/r/anime/comments/ksvfai/in_anime_once_youre_grabbed_by_the_face_you_are/?utm_source=bot) - - Please join [**/r/DownloadVideo**](https://np.reddit.com/r/DownloadVideo) . You can *Share->Crosspost* videos there to get an immediate reply and help reduce comment spam :) - - I work with links sent by PM too. - - *** -[**Feedback**](https://np.reddit.com/message/compose?to=RedditVideoDownloadr)&#32;|&#32;[**DMCA**](https://np.reddit.com/message/compose?to=RedditVideoDownloadr)";False;False;;;;1610131917;;False;{};gikihwx;False;t3_ksvfai;False;True;t1_giki1o5;/r/anime/comments/ksvfai/in_anime_once_youre_grabbed_by_the_face_you_are/gikihwx/;1610169874;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Double0Peter;;;[];;;;text;t2_1qynvj6x;False;False;[];;I'm still relatively new to anime so I haven't seen all of the older classics, but of recent years I think the fate heavens feel movies are top notch.;False;False;;;;1610132821;;False;{};gikkkbi;False;t3_ksx5yz;False;True;t3_ksx5yz;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/gikkkbi/;1610171089;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UrAvgHighSchooler;;;[];;;;text;t2_7n9g8e8a;False;False;[];;O ok;False;False;;;;1610133531;;False;{};gikm643;True;t3_kswy22;False;True;t1_giixpvi;/r/anime/comments/kswy22/rom_com_wholesome_or_harem_animes/gikm643/;1610172014;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SpaceMarine_CR;;;[];;;;text;t2_1la1dh3q;False;False;[];;Even Goblin Slayer has slife of life elements lol;False;False;;;;1610135239;;False;{};gikq2a9;False;t3_kswsf8;False;True;t1_gija8x0;/r/anime/comments/kswsf8/nothing_beats_the_happiness_of_watch_slice_of_life/gikq2a9/;1610174240;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BakarinaLovesMaria;;;[];;;;text;t2_7aztnfnj;False;False;[];;🗑;False;False;;;;1610137341;;False;{};gikuutm;True;t3_ksxk2m;False;True;t1_gijlw53;/r/anime/comments/ksxk2m/have_you_ever_rewatched_a_show_and_found_out_it/gikuutm/;1610176938;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;UrAvgHighSchooler;;;[];;;;text;t2_7n9g8e8a;False;False;[];;I already watched it and it was super good!;False;False;;;;1610137902;;False;{};gikw4p2;True;t3_kswy22;False;True;t1_gij4elr;/r/anime/comments/kswy22/rom_com_wholesome_or_harem_animes/gikw4p2/;1610177622;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jeesan;;;[];;;;text;t2_qqt7p;False;False;[];;I was kind of in your shoes at that point and now I've completed both seasons completely. I would say the style is more of the same, but later on it is kind of just a better version of what you see right now. More relatable themes, better execution of balancing SoL/drama/comedy, plot that is more emotionally engaging, etc. Even though it is better in almost every way later, if you don't fundamentally enjoy watching the series (or get really bored watching it), then I don't recommend continuing because the style of storytelling is more of the same.;False;False;;;;1610138810;;False;{};giky5h8;False;t3_kswsf8;False;True;t1_giiu00x;/r/anime/comments/kswsf8/nothing_beats_the_happiness_of_watch_slice_of_life/giky5h8/;1610178750;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;False;[];;"SAO after Ordinal Scale came out has been absolutely gorgeous. - -Demon Slayer deserves a mention for sure. - -Violet Evergarden is a serious feast for the eyes. - -Fate/Zero and UBW are also amazingly well done. Oh and Heaven's Feel.";False;False;;;;1610155641;;False;{};gilwxba;False;t3_ksx5yz;False;True;t3_ksx5yz;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/gilwxba/;1610198134;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sir_aphim;;;[];;;;text;t2_7qpo130j;False;False;[];;Dusk maiden of amnesia;False;False;;;;1610155793;;False;{};gilx7vz;False;t3_ksx5ev;False;True;t3_ksx5ev;/r/anime/comments/ksx5ev/sad_romance_anime_recommendations/gilx7vz/;1610198310;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jimmysface;;;[];;;;text;t2_27xlukxq;False;False;[];;I’m so dumb I thought they were releasing the whole season at once, all I’ve caused is pain for myself;False;False;;;;1610167055;;False;{};gimi80q;False;t3_kt292n;False;False;t1_gilkvkb;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimi80q/;1610212102;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rattpack18;;;[];;;;text;t2_2uahjdtr;False;False;[];;Wish I’d seen this before asking;False;False;;;;1610167646;;False;{};gimj83y;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimj83y/;1610212792;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Flam360;;;[];;;;text;t2_39sv5bk9;False;False;[];;U down terrible 🤣🤣🤣🤣;False;False;;;;1610168423;;False;{};gimkifa;False;t3_kt292n;False;True;t1_gik62up;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimkifa/;1610213712;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MemedCodes;;;[];;;;text;t2_3e32vyg2;False;False;[];;Watch Tatoeba Last Dungeon Mae no Mura be on top of this list this season;False;False;;;;1610168578;;False;{};gimkrif;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimkrif/;1610213877;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zagewastaken;;;[];;;;text;t2_7vrp1bf9;False;False;[];;Mappa is hella scary these days;False;False;;;;1610168655;;False;{};gimkw1w;False;t3_kt292n;False;True;t1_gikbrcz;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimkw1w/;1610213960;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MiltonMerloXD;;;[];;;;text;t2_7p59l5sh;False;False;[];;"Have you even read the reviews ??, all the reviews are according to what was read at most up to arc 4. It can be deduced that the majority who rated it have not yet reached arc 6. Also following the logic of MyAnimeList, Re:Zero novel > AoT manga. So Re:Zero keeps winning lol.";False;False;;;;1610168958;;False;{};gimldhu;False;t3_kt292n;False;False;t1_gim5cq1;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimldhu/;1610214289;3;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;"It's not about who wins, and you should not look at the review as if you look at the review of attack on Titan manga most of the reviews are from the early chapters, by your logic most people aren't caught up or are even far into the manga which is false. - -You say it's the Pinnacle and I have seen many light novel readers say what comes later is really, good but it's still not better that the materials that is to come in this season of attack on Titan and I'm sure others may disagree and share your opinion too. - -But you are acting like it's a fact and that anyone who is caught up will also think it's the best thing since slice bread, which is not true, one man's treasure is another man trash.";False;False;;;;1610169171;;False;{};gimlpu0;False;t3_kt292n;False;True;t1_gimldhu;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimlpu0/;1610214516;2;True;False;anime;t5_2qh22;;0;[]; -[];;;veenadaiya;;;[];;;;text;t2_60hyf11u;False;False;[];;anyone have opinions on whether or not Jaku-Chara Tomozaki will do better next week in the rankings?;False;False;;;;1610169267;;False;{};gimlv8t;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimlv8t/;1610214620;1;True;False;anime;t5_2qh22;;0;[]; -[];;;psychsucks;;;[];;;;text;t2_7pinf0kz;False;False;[];;What about Redo of Healer;False;False;;;;1610169319;;False;{};gimly40;False;t3_kt292n;False;True;t1_gijelco;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimly40/;1610214670;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MiltonMerloXD;;;[];;;;text;t2_7p59l5sh;False;False;[];;Keep crying hater;False;False;;;;1610169534;;False;{};gimma1d;False;t3_kt292n;False;False;t1_gijwvcb;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimma1d/;1610214897;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sassysmolgirl;;;[];;;;text;t2_1fx5db2i;False;False;[];;I really enjoyed the first episode of 2.43: seiin hs boys volleyball club!;False;False;;;;1610169829;;False;{};gimmqgs;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimmqgs/;1610215227;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610169860;;False;{};gimms5t;False;t3_kt292n;False;True;t1_gikmw37;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimms5t/;1610215255;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeoGiacometti;;;[];;;;text;t2_13n8qv;False;False;[];;I don't even know what series that is lol;False;False;;;;1610169888;;False;{};gimmtsl;False;t3_kt292n;False;True;t1_gimma1d;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimmtsl/;1610215286;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;You are just toxic as AOT toxic fans, not surprised tho, the toxic side of both fandoms just love to downplay other series;False;False;;;;1610169969;;False;{};gimmyju;False;t3_kt292n;False;False;t1_gimldhu;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimmyju/;1610215372;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;iamlarsen;;;[];;;;text;t2_uc5cx;False;False;[];;"I still enjoy those chapters of Horimiya. Compared to the main arc where there was like... Plot, then yeah it might not be what you're looking for. It did pull a genre shift straight into a slice of life/light romance. - -But it is nice to have a story that [spoilers for likely ending of the anime](/s ""continues after a couple gets together"") and the stories in the later chapters are really sweet and it's nice that it doesn't just focus on one couple. It feels like a real group of friends who are all different people. Gives me the warm and fuzzies to read.";False;False;;;;1610170128;;False;{};gimn7ny;False;t3_kt292n;False;True;t1_gikmw37;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimn7ny/;1610215544;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MrPanda663;;;[];;;;text;t2_eqi5g;False;False;[];;Shhhhhhh quiet;False;False;;;;1610170293;;False;{};gimnh1p;False;t3_kt292n;False;False;t1_gimh48q;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimnh1p/;1610215718;3;True;False;anime;t5_2qh22;;0;[];True -[];;;MiltonMerloXD;;;[];;;;text;t2_7p59l5sh;False;False;[];;I have known cases of people who hated it the first time they watched it but then rewatched it and loved the program. Maybe it's your case, who knows.;False;False;;;;1610170306;;False;{};gimnht0;False;t3_kt292n;False;True;t1_gik1fvn;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimnht0/;1610215731;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MiltonMerloXD;;;[];;;;text;t2_7p59l5sh;False;False;[];;SAO fan???;False;False;;;;1610170492;;False;{};gimnsdk;False;t3_kt292n;False;True;t1_gik4kpf;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimnsdk/;1610215947;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;funny_cavalary;;;[];;;;text;t2_447eza0p;False;False;[];;Why is black clover not here??;False;False;;;;1610170528;;False;{};gimnudz;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimnudz/;1610215985;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TheHaywireProton;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/LordOfDarkness_;light;text;t2_3y8998je;False;False;[];;Don't write off jujutsu yet. Pretty sure it would frequently be in top 3 this season;False;False;;;;1610170703;;False;{};gimo3up;False;t3_kt292n;False;True;t1_gijelco;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimo3up/;1610216181;1;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 100, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': ""Shows the Silver Award... and that's it."", 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 512, 'icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'icon_width': 512, 'id': 'gid_1', 'is_enabled': True, 'is_new': False, 'name': 'Silver', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_16.png', 'width': 16}, {'height': 32, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_32.png', 'width': 32}, {'height': 48, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_48.png', 'width': 48}, {'height': 64, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_64.png', 'width': 64}, {'height': 128, 'url': 'https://www.redditstatic.com/gold/awards/icon/silver_128.png', 'width': 128}], 'start_date': None, 'static_icon_height': 512, 'static_icon_url': 'https://www.redditstatic.com/gold/awards/icon/silver_512.png', 'static_icon_width': 512, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;ToddYates;;;[];;;;text;t2_3yld5v9o;False;False;[];;No, but someone who knows the correct JoJos watch order;False;False;;;;1610170864;;False;{'gid_1': 1};gimocfn;False;t3_kt292n;False;True;t1_gimnsdk;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimocfn/;1610216345;1;True;False;anime;t5_2qh22;;1;[]; -[];;;MiltonMerloXD;;;[];;;;text;t2_7p59l5sh;False;False;[];;Cause it's great, that's it;False;False;;;;1610170896;;False;{};gimoe4v;False;t3_kt292n;False;True;t1_gilmu5s;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimoe4v/;1610216374;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;I can see if people prefer the majority of Rezero casts due to its really interesting personalities similar to HxH. However, I’d still give AOT a big respect for giving the fans some fantastic side characters and one of the most well-written protagonist given that AOT is a lot more plot-driven story compared to Rezero. And the general consensus is the worldbuilding in AOT is top-tier proven by in all seasons, there are always in-depth explanations ( in the middle of episode ) of how the society, politic, titan, etc work. The world building in AOT is just more detailed and thoughtful than most people think, hence it even gives us some easter eggs by its worldbuilding alone.;False;False;;;;1610170920;;False;{};gimofdm;False;t3_kt292n;False;True;t1_gikrm8c;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimofdm/;1610216399;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dreathbeast;;;[];;;;text;t2_2asptq4t;False;False;[];;Just assume the manga ends at chapter 64;False;False;;;;1610171550;;False;{};gimpcvm;False;t3_kt292n;False;False;t1_gikmw37;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimpcvm/;1610217046;1;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;It's not even that, those series are not airing right now.;False;False;;;;1610171667;;False;{};gimpisx;False;t3_kt292n;False;True;t1_gil92wb;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimpisx/;1610217167;1;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;Almost every single studio had a break, it's tradition.;False;False;;;;1610171862;;False;{};gimpsu5;False;t3_kt292n;False;True;t1_gikrl3u;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimpsu5/;1610217357;2;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"Well he is talking arc 6, which it's not even translated in english so that rating is not really relevant. ( heck the currently anime arc is not translated yet either ) - -Besides Light novel ratings on myanimelist are not the most accurate thing. - -But it's annoying how suddenly AOT and Re:Zero fans are against each other.";False;False;;;;1610172049;;False;{};gimq2ic;False;t3_kt292n;False;False;t1_gim5cq1;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimq2ic/;1610217533;5;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;Ehh Aot will be first, Re:Zero will be second, Jujutsu will be third. maybe slime can fight forth with the promised neverland if not it will be fifth.;False;False;;;;1610172213;;False;{};gimqapd;False;t3_kt292n;False;True;t1_gim24z2;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimqapd/;1610217694;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;Okay. AOT is still the better series. Stop responding to me. You'll be fine, trust me, you'll cope.;False;False;;;;1610172704;;False;{};gimqza9;False;t3_kt292n;False;True;t1_gilz3fk;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimqza9/;1610218169;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ezicriel;;;[];;;;text;t2_835qi5za;False;False;[];;I really love The Promised Neverland, I hope sonju and musica will get more screentime;False;False;;;;1610173216;;False;{};gimro8p;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimro8p/;1610218627;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kermit-Jones;;;[];;;;text;t2_5sc0qlt3;False;False;[];;Yeah i read to chapter 102 and cant really say i enjoyed it;False;False;;;;1610173987;;False;{};gimsokx;False;t3_kt292n;False;True;t1_gimpcvm;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimsokx/;1610219307;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kermit-Jones;;;[];;;;text;t2_5sc0qlt3;False;False;[];;I started it because of the romance between the two mcs and that gave me this warm fuzzie feeling but like you said the genre kinda changed. Its like if you would start a sports anime but it suddenly changes to an anime/manga about economy;False;False;;;;1610174700;;False;{};gimtle9;False;t3_kt292n;False;True;t1_gimn7ny;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimtle9/;1610219921;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MiltonMerloXD;;;[];;;;text;t2_7p59l5sh;False;False;[];;???? Am I toxic for telling you facts??, you yourself were using MAL as a base, what such a hypocrisy, lmao.;False;False;;;;1610174787;;False;{};gimtpe9;False;t3_kt292n;False;True;t1_gimmyju;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimtpe9/;1610219993;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MiltonMerloXD;;;[];;;;text;t2_7p59l5sh;False;False;[];;Lmao;False;False;;;;1610174890;;False;{};gimttyi;False;t3_kt292n;False;True;t1_gimmtsl;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimttyi/;1610220090;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;"Lol, see my nick and see other nick, please use your eyes first. I have seen your other comments and you stated over and over again Rezero >> AoT, similar to what toxic AoT fans thinking AOT >> Rezero. Both are great shows but their vocal fanbases are just cancerous";False;False;;;;1610175033;;False;{};gimu0em;False;t3_kt292n;False;True;t1_gimtpe9;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimu0em/;1610220214;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Eboglaz;;;[];;;;text;t2_2kahaqr2;False;False;[];;Yes you really can't when one of them is only half done.;False;False;;;;1610175945;;False;{};gimv4n3;False;t3_kt292n;False;True;t1_gim5o1s;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimv4n3/;1610220966;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MiltonMerloXD;;;[];;;;text;t2_7p59l5sh;False;False;[];;Mate, I was just saying what I thought, that really seems toxic to you?, anyway... Plus sorry for the previous message, I have confused you with another person.;False;False;;;;1610175999;;False;{};gimv6wk;False;t3_kt292n;False;False;t1_gimu0em;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimv6wk/;1610221007;5;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;"You replied to someone who stated ‘do people think Rezero and AoT in the same league bruh?’ with ‘rezero novel > aot manga’. Let’s have a reverse role there, someone says ‘omg, do people think Rezero is the same tier as AoT’ and i replied ‘AoT manga > Rezero novel lol’. People with common sense can already pretty much see some toxicity there. -No worries for the confused part, just be careful next time";False;False;;;;1610176485;;False;{};gimvrgn;False;t3_kt292n;False;True;t1_gimv6wk;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimvrgn/;1610221384;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MarthLikinte1;;;[];;;;text;t2_2irtw6kg;False;False;[];;Yeah but I’ve been listening to the op and Ed enough to make up for it lol;False;False;;;;1610177506;;False;{};gimwx4p;False;t3_kt292n;False;True;t1_gim4bd3;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimwx4p/;1610222182;0;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;"For starters, they don't expect most of the kids to find out in the first place; the kids all found out by accident. There's no indication that the aliens are more intelligent - if they are indeed supreme it could just be due to physical strength - and even if they were a more intelligent species, they're probably not going through the processes that produce prodigies. Isabelle never notified them that the kids found out, so it was basically just the kids vs. her, and separately, the kids vs. Krone, who both outsmarted each other. - -Even if you're intelligent, you can be lulled into a false sense of security. If Isabelle hadn't bought Emma's act, who's to say she wouldn't have thought of the same way for them to cross the cliff? What's more, being intelligent doesn't mean you consider all possibilities; it just may not have occurred to her that so many of the children were working together to escape due to her experience as a child.";False;False;;;;1610177697;;False;{};gimx4t8;False;t3_kt292n;False;True;t1_gikra5c;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimx4t8/;1610222344;1;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;"Some series peak at their beginning and turn to shit by time it reaches to the middle part for the story, not saying that is the case for re zero, but assuming a series only gets better the deeper into the story it goes is false. - -Death note is one example of that, it didn't turn to shit but it's early part is better than it's later part. - -Many are saying the same for The promised Neverland as well.";False;False;;;;1610177740;;False;{};gimx6is;False;t3_kt292n;False;True;t1_gimv4n3;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimx6is/;1610222388;3;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;"What upset me and why I started to attack him is your very point, he isn't even talking about the arcs that are going to be animated in these seasons but later arc in both series. - -He is shitting on snk saying it's final arc isn't as good while praising the future Arc of another series which has no relevance to none of these current season.";False;False;;;;1610178002;;False;{};gimxgyw;False;t3_kt292n;False;True;t1_gimq2ic;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimxgyw/;1610222583;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MiltonMerloXD;;;[];;;;text;t2_7p59l5sh;False;False;[];;I disagree it's just an opinion, plus It's not like I'm saying it just to say. I mean I've read the entire AoT manga and Re:Zero novel, and can assure you that Re:Zero arc 6 is superior in everything than the arc that will be adapted for AoT season 4 imao, it's just like that.;False;False;;;;1610178029;;False;{};gimxi2m;False;t3_kt292n;False;False;t1_gimvrgn;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimxi2m/;1610222603;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MiltonMerloXD;;;[];;;;text;t2_7p59l5sh;False;False;[];;I mean I've read the entire AoT manga and Re:Zero novel, and can assure you that Re:Zero arc 6 is superior in everything than the arc that will be adapted for AoT season 4 imao, it's just like that. Also simply Re:Zero doesn't have a better score due to having many haters, even more than AoT.;False;False;;;;1610178711;;False;{};gimy8pc;False;t3_kt292n;False;False;t1_gimlpu0;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimy8pc/;1610223130;4;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;"Then I’d keep my expectation high af such as AOT level twist and recontextualization or Monster level kind of twist & suspense, add on Evangelion mindfuck ending, oh also i’d expect the first episode title to give such a mindblowing twist later on like AOT which I dont think it will so I disagree too. This kind of gatekeeping attitude is what makes you toxic, you can have an opinion of Rezero is another whole galaxy while AOT only being the earth as far as i care but downplaying other series is just a straight coward thing to do. I’d give a shoutout to some respectable diehard Rezero fans who never said one is on another league etc, they say arc 6 is the best arc without saying Rezero > AOT";False;False;;;;1610178844;;False;{};gimydwg;False;t3_kt292n;False;True;t1_gimxi2m;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimydwg/;1610223237;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LuvRice4Life;;;[];;;;text;t2_3uucfbcf;False;False;[];;Damn. BEASTARS is way too low on the list imo.;False;False;;;;1610180624;;False;{};gin09oc;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin09oc/;1610224641;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MiltonMerloXD;;;[];;;;text;t2_7p59l5sh;False;False;[];;Ok, it's understandable but I don't see it that way, I see it more as expression freedom. At the end of the day they are only opinions and if you look closely, I only replied that way to those AoT fans who in one way or another said that AoT was very superior lmao.;False;False;;;;1610180649;;1610180922.0;{};gin0al1;False;t3_kt292n;False;True;t1_gimydwg;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin0al1/;1610224661;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LuvRice4Life;;;[];;;;text;t2_3uucfbcf;False;False;[];;God when I read that it would only be available on netflix in July I fucking cried.;False;False;;;;1610180717;;False;{};gin0d4m;False;t3_kt292n;False;True;t1_gijhvx3;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin0d4m/;1610224725;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LuvRice4Life;;;[];;;;text;t2_3uucfbcf;False;False;[];;BEASTARS OP's are cracked out of their minds. Both Season 1 and 2 songs were crazy good, and I loved the stop motion animation for season 1. Unfortunately the animation for the season 2 OP isn't great but it's whatever, the song is an absolute bop tho.;False;False;;;;1610180790;;False;{};gin0fsg;False;t3_kt292n;False;True;t1_gijhi60;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin0fsg/;1610224779;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LuvRice4Life;;;[];;;;text;t2_3uucfbcf;False;False;[];;Pretty sure the next season is pretty much a completely different genre then S1 for Promised.;False;False;;;;1610180869;;False;{};gin0ior;False;t3_kt292n;False;True;t1_gijkca2;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin0ior/;1610224836;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Haveri23;;;[];;;;text;t2_2ppmyn2b;False;False;[];;Gotta bump the furry anime up a few spots, it is really good;False;False;;;;1610180884;;False;{};gin0j87;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin0j87/;1610224846;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;Which is back to my first comment to you, you are doing similar things like them by being toxic. And fyi, i’m not defending their actions either, I have called out some toxic AOT fans for downplaying Rezero so if you understand what i mean, i’m grateful. Keep doing things similar like them and you’ll see the consequences sooner or later;False;False;;;;1610180965;;1610181208.0;{};gin0m6e;False;t3_kt292n;False;True;t1_gin0al1;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin0m6e/;1610224900;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MiltonMerloXD;;;[];;;;text;t2_7p59l5sh;False;False;[];;Well, it's a matter of perspectives I guess. Have a nice day, bro. Bye;False;False;;;;1610181266;;False;{};gin0x98;False;t3_kt292n;False;True;t1_gin0m6e;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin0x98/;1610225100;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;Have a nice day and goodluck for your future too;False;False;;;;1610181517;;False;{};gin16aq;False;t3_kt292n;False;True;t1_gin0x98;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin16aq/;1610225307;2;True;False;anime;t5_2qh22;;0;[]; -[];;;iBlack92O;;;[];;;;text;t2_3ixt8nyz;False;False;[];;GET YURU CAMP UP THERE YOU DEGENERATES!;False;False;;;;1610182016;;False;{};gin1o9z;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin1o9z/;1610225683;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iBlack92O;;;[];;;;text;t2_3ixt8nyz;False;False;[];;"""This season is massive it's got AOT, Re:Zero, and The Promised Neverland! HYPE!"" - -Are ya'll really forgetting that Yuru Camp season 2 is airing this season?!? - -Fuck action anime. We need comfy time.";False;False;;;;1610182231;;False;{};gin1w08;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin1w08/;1610225846;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MABfan11;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MABfan11;light;text;t2_xdlmc;False;False;[];;alternatively: split AoT into 11 parts to match them up with Re:Zero's planned 11 arcs, then see how far into Re:Zero we are for comparison;False;False;;;;1610182341;;False;{};gin1zuv;False;t3_kt292n;False;True;t1_gily2tx;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin1zuv/;1610225916;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ravioli_Heicho;;;[];;;;text;t2_3bls5ou;False;False;[];;Everything that covers Chapter 119 through wherever they end it is going to smash the Premier's record. This will likely be episodes 14, 15, and 16.;False;False;;;;1610182517;;False;{};gin262d;False;t3_kt292n;False;True;t1_gim1geh;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin262d/;1610226041;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iBlack92O;;;[];;;;text;t2_3ixt8nyz;False;False;[];;"I was smiling throughout the whole episode. Its just so beautiful and wholesome and comfy. Oh and the aesthetics. I missed the how visually appealing this show is. The semi realistic background in every single scene is ART. Literally. Every scene looks like a highly detailed painting. - -I'm a shounen dominant kind of guy but gawd damn. I think the best show to come out this season is not Aot or A Promised Neverland but a show about some wholesome girls doing some wholesome camping.";False;False;;;;1610182662;;False;{};gin2bb6;False;t3_kt292n;False;True;t1_gijw1jk;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin2bb6/;1610226134;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ucvius;;;[];;;;text;t2_46p4yczj;False;False;[];;I disagree with the list. I think The Promised Neverland should be at the top but only this one.;False;False;;;;1610182898;;False;{};gin2jp6;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin2jp6/;1610226294;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HishigiRyuuji;;;[];;;;text;t2_11ebnz;False;False;[];;Anyone know when AoT and JJK will resume to air?;False;False;;;;1610183004;;False;{};gin2nhk;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin2nhk/;1610226366;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SucyTA;;;[];;;;text;t2_j7lhuj0;False;False;[];;https://www.reddit.com/r/manga/comments/kl2zwb/news_oricons_top_selling_30_media_franchises_in/;False;False;;;;1610183006;;False;{};gin2nkn;False;t3_kt292n;False;True;t1_gimhbvb;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin2nkn/;1610226367;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lokhlass;;;[];;;;text;t2_pasrz;False;False;[];;They should do one without the sequels, to see the new popular anime;False;False;;;;1610184085;;False;{};gin3p5z;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin3p5z/;1610227071;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Eboglaz;;;[];;;;text;t2_2kahaqr2;False;False;[];;"But this is completely wrong with re zero. Every new arc is far better than previous and author says there is not been his favourite arc yet. - -One of the reason why i can\`t wait for more re zero WN because it never stops getting better.";False;False;;;;1610185349;;False;{};gin4xlf;False;t3_kt292n;False;False;t1_gimx6is;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin4xlf/;1610227888;5;True;False;anime;t5_2qh22;;0;[]; -[];;;fredetona;;;[];;;;text;t2_5c3qvhtp;False;False;[];;I miss Higurashi in this chat, this First Episode was awesome;False;False;;;;1610186276;;False;{};gin5tv2;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin5tv2/;1610228477;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610187868;;False;{};gin7cjz;False;t3_kt292n;False;True;t1_gin2nkn;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin7cjz/;1610229480;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610187870;;False;{};gin7cm6;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin7cm6/;1610229481;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bamshak9F;;;[];;;;text;t2_7wwezmm8;False;False;[];;Funnily enough if next week’s episode is adapted properly, it easily has the potential to be one of the best in the entire series;False;False;;;;1610188110;;False;{};gin7kv5;False;t3_kt292n;False;True;t1_gimemf2;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin7kv5/;1610229631;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ani_support;;;[];;;;text;t2_9ikc0wvl;False;False;[];;No them jjk and aot r continuing next week;False;False;;;;1610189388;;False;{};gin8u0t;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin8u0t/;1610230440;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Goldenfox299;;;[];;;;text;t2_21fpin3p;False;False;[];;"Yh we're just not going to agree I guess so this is my final comment. - -All of this would make more sense to me if it was OP himself that made these comments but to hear it from someone else is kind of weird to me. - -Oh well, moving on...";False;False;;;;1610189416;;False;{};gin8uzu;False;t3_kt292n;False;True;t1_giky45g;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin8uzu/;1610230457;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePreciseClimber;;;[];;;;text;t2_kjl4o;False;False;[];;">Re:Zero is very much organized like AOT S3, where the entire first part served as heavy dialogue/build up episodes for the grand finale in the second part - -Yeah, I don't think I can agree with that. Had they adapted the AoT manga properly, sure. But they rushed through a lot of slow (yet interesting) build-up for the sake of getting to action setpieces faster. S3P1 had way faster pacing than any previous AoT cour.";False;False;;;;1610189668;;False;{};gin93tt;False;t3_kt292n;False;True;t1_gijhz31;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin93tt/;1610230610;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ThePreciseClimber;;;[];;;;text;t2_kjl4o;False;False;[];;Thankfully, the season is going to stop before the writing gets bad, in the last 4 volumes of the manga.;False;False;;;;1610189848;;False;{};gin9a5k;False;t3_kt292n;False;False;t1_gik2yk1;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gin9a5k/;1610230722;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Neovongolaprimo;;;[];;;;text;t2_qvu9i;False;False;[];;"Uh, is there an official website for the promised neverland? - -Because it looks like cr doesn’t have it.";False;False;;;;1610191202;;False;{};ginambq;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/ginambq/;1610231610;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;"Right now only the finale looks a near certainty IMO, I'll wait and see how episode 5 does tomorrow but there are a few more that will be on that level. - -[AoT episodes](/s ""episode 6/7 that adapt chapters 101-104, episode ~11 that adapts 112 and episode 14/15/16 that will adapt the chapters leading up to 122."")";False;False;;;;1610192084;;False;{};ginbiop;False;t3_kt292n;False;True;t1_gim1geh;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/ginbiop/;1610232194;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Eboglaz;;;[];;;;text;t2_2kahaqr2;False;False;[];;A lot of reasons tbh.;False;False;;;;1610192577;;False;{};ginc0xb;False;t3_kt292n;False;True;t1_gilmu5s;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/ginc0xb/;1610232533;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Because is a very dense show, where every minute thing is connect to something else, if you get into the lore is the same as bigger pieces of media like game of thrones, or you can watch it casually.;False;False;;;;1610193285;;False;{};gincqyk;False;t3_kt292n;False;True;t1_gilmu5s;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gincqyk/;1610233005;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Arsh36160;;;[];;;;text;t2_4e6hj6ao;False;False;[];;Um, i didn't mean to come off as I'm shitting on any series, my favorite right now is Attack on titan as I've been keeping up with the manga but i just recently started reading arc 6 of Re:Zero which makes me indecisive. Anyway it's my opinion and i don't care about what ratings my favorite shows get, i mean FMAB has a higher rating than Aot, you don't see me complaining about that.;False;False;;;;1610194448;;False;{};gindza1;False;t3_kt292n;False;False;t1_gimxgyw;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gindza1/;1610233806;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Arsh36160;;;[];;;;text;t2_4e6hj6ao;False;False;[];;Bruh, you need to calm it down with the passive aggressive tone.;False;False;;;;1610194816;;False;{};ginedix;False;t3_kt292n;False;True;t1_gin16aq;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/ginedix/;1610234064;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;Err.. i’m calm tho..? The opposite side claimed he understand my point so I dont see any reason why i should be very aggressive;False;False;;;;1610195395;;False;{};ginf0cz;False;t3_kt292n;False;True;t1_ginedix;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/ginf0cz/;1610234469;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;"Initially I was primarily pointing out that OP wasn't the only one who thought this episode was just okay. My other comments were about explaining why you were downvoted by people, so I'm not sure why it would matter who explained. If anything, someone other than OP would have a more objective picture of why you were downvoted. - -Anyway, you were downvoted and I offered a likely explanation. Hopefully you can take something away from it.";False;False;;;;1610196690;;False;{};gingh8l;False;t3_kt292n;False;True;t1_gin8uzu;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gingh8l/;1610235409;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yodeling-yodas;;;[];;;;text;t2_60lvzhcn;False;False;[];;Just finished assassination classroom only complaint is that it’s too short;False;False;;;;1610205343;;False;{};ginst3g;True;t3_ksyxk8;False;True;t1_giixbz7;/r/anime/comments/ksyxk8/i_need_some_recommendations/ginst3g/;1610243150;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Magical_Griffin;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SpikyTurtle;light;text;t2_ii5jh1;False;False;[];;idk how it's too short, it's more like the perfect length for a story that takes 1 year. The ending was perfect.;False;False;;;;1610205877;;False;{};gintq5i;False;t3_ksyxk8;False;True;t1_ginst3g;/r/anime/comments/ksyxk8/i_need_some_recommendations/gintq5i/;1610243696;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yodeling-yodas;;;[];;;;text;t2_60lvzhcn;False;False;[];;It was mainly with the ending, the final few episodes felt rushed to me it could have done with an extra like one to two but that’s just my opinion still one of my favorite anime;False;False;;;;1610205969;;False;{};gintw0f;True;t3_ksyxk8;False;True;t1_gintq5i;/r/anime/comments/ksyxk8/i_need_some_recommendations/gintw0f/;1610243794;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OmegaQuake;;;[];;;;text;t2_cq53u;False;False;[];;it currently has 3.2K upvotes so if it had made the cutoff for the other chart it would be sitting in 5th place.;False;False;;;;1610210294;;False;{};gio1wtc;False;t3_kt292n;False;True;t1_giltkg5;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gio1wtc/;1610248721;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fyts17;;;[];;;;text;t2_16z6h0sh;False;False;[];;Aot will be tomorrow and jjk i think next week;False;False;;;;1610211729;;False;{};gio4py2;False;t3_kt292n;False;True;t1_gin2nhk;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gio4py2/;1610250457;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Random_Queen123;;;[];;;;text;t2_8y1j366x;False;False;[];;Oh sorry i had a hard time understanding. sorry.;False;False;;;;1610215196;;False;{};giobjq9;False;t3_kt292n;False;True;t1_gimpisx;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giobjq9/;1610254596;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kenjasama;;;[];;;;text;t2_9q2aelyc;False;False;[];;As far as the karma of the first episode is seen, it is tough. It didn't grow very well;False;False;;;;1610216757;;False;{};gioeprj;False;t3_kt292n;False;True;t1_gimlv8t;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gioeprj/;1610256489;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;that's only in japan... Jujutsu isn't even on the list of anime franchises sales globally. I don't understand why you would just show japan's media sales. I'm not trying to argue here, I even complimented you and you just send a link which was not what I was talking about at all..? Good day/night fellow redditor, no need to respond, it would be time waste for both of us.;False;False;;;;1610219123;;1610219323.0;{};giojogj;False;t3_kt292n;False;True;t1_gin2nkn;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giojogj/;1610259594;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SucyTA;;;[];;;;text;t2_j7lhuj0;False;False;[];;Jujutsu is still destroying AOT at the moment in Japan, the country of anime/manga, that's what matters.;False;False;;;;1610219803;;False;{};giol42p;False;t3_kt292n;False;True;t1_giojogj;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giol42p/;1610260391;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok_Session_8524;;;[];;;;text;t2_978ae09v;False;False;[];;MHA for me.;False;False;;;;1610220780;;False;{};gion7ji;False;t3_ksx5yz;False;False;t3_ksx5yz;/r/anime/comments/ksx5yz/whats_the_greatest_anime_of_all_time_in_terms_of/gion7ji/;1610261617;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OtakuKing613;;;[];;;;text;t2_3o6ulo8v;False;False;[];;AoT bout to dominate after ep 5 (and also 6);False;False;;;;1610224916;;False;{};giovr15;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giovr15/;1610266330;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;"This is the thing.. we just watched the last of AoT ""slow"" episodes. This thing won't stop anymore.";False;False;;;;1610226322;;False;{};gioymmt;False;t3_kt292n;False;True;t1_gikia7s;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gioymmt/;1610267894;2;True;False;anime;t5_2qh22;;0;[]; -[];;;M_Bey;;;[];;;;text;t2_4hbwu1kt;False;False;[];;"Top 7? - - Now after I've seen episode 1, I'm 100% sure about it being nb 1. Cuz its 10 million times better than quintessential quintipullets.";False;False;;;;1610226688;;False;{};giozcss;False;t3_kt292n;False;True;t1_gijeqih;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giozcss/;1610268295;2;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;??? AoT still has dialogue heavy episodes left before starting the wildness again, I'm a manga reader.;False;False;;;;1610229432;;False;{};gip50iu;False;t3_kt292n;False;True;t1_gioymmt;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gip50iu/;1610271417;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pouncyktn;;;[];;;;text;t2_5btgmt28;False;False;[];;Even though it has some dialogue heavy episodes there are big scenes in most of them. It's 2 chapters per episode. You really think people won't freak out with things like chapter 108?;False;False;;;;1610231475;;False;{};gip956k;False;t3_kt292n;False;True;t1_gip50iu;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gip956k/;1610273685;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BakaFame;;;[];;;;text;t2_zfj4h;False;False;[];;What happened in it again? I'm up to date.;False;False;;;;1610251234;;False;{};giqae5k;False;t3_kt292n;False;True;t1_gikg20u;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giqae5k/;1610296326;1;True;False;anime;t5_2qh22;;0;[]; -[];;;woancue;;;[];;;;text;t2_121itc;False;False;[];;EMA (and gabi who's just sitting there lmao) convo where eren says that he's always you know what mikasa;False;False;;;;1610252069;;False;{};giqbw46;False;t3_kt292n;False;True;t1_giqae5k;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giqbw46/;1610297349;1;True;False;anime;t5_2qh22;;0;[]; -[];;;satisfiedjelly;;;[];;;;text;t2_3ja5djgx;False;False;[];;Dr stone will join the mix soon too;False;False;;;;1610268224;;False;{};giqx8wf;False;t3_kt292n;False;True;t1_gijfzkx;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giqx8wf/;1610313136;1;True;False;anime;t5_2qh22;;0;[]; -[];;;D3linax;;;[];;;;text;t2_ryu0m7u;False;False;[];;Because people had to wait way longer for 2nd season of TPN while we just had rezero s2 p1 very recently. Technically TPN should easily win in karma points if its more popular than rezero, especially with the banger 1st episode they had.;False;False;;;;1610330992;;False;{};gitu3dr;False;t3_kt292n;False;False;t1_gijfzkx;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gitu3dr/;1610377384;1;True;False;anime;t5_2qh22;;0;[]; -[];;;StormSlasher563;;;[];;;;text;t2_95d3d48;False;False;[];;Mid;False;False;;;;1610351124;;False;{};giur5mp;False;t3_kt292n;False;True;t1_gin1w08;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giur5mp/;1610400867;1;True;False;anime;t5_2qh22;;0;[]; -[];;;not_martian;;;[];;;;text;t2_1korsrrj;False;False;[];;2 days later , ep 5 has 20k Karma in just over 14 hours .;False;False;;;;1610355511;;False;{};giuxjsq;False;t3_kt292n;False;True;t1_gikubfx;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giuxjsq/;1610404864;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;"Feels pretty good to have faith ngl. Breaking previous records in less than 24 hours, classic attack on titan. - - -It's still got another 30 or so hours to rack up karma though, let's see how far it goes.";False;False;;;;1610356507;;False;{};giuypam;False;t3_kt292n;False;True;t1_giuxjsq;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giuypam/;1610405606;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;"ngl I m sure that the episode adapting chapter 112 will demolish the comment record and then episode 16 is gonna cause a hurricane. - -AoT just keeps moving forward!";False;False;;;;1610359250;;False;{};giv1jec;False;t3_kt292n;False;True;t1_giuypam;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giv1jec/;1610407500;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Opposite-Ant5355;;;[];;;;text;t2_5grat9wo;False;False;[];;"I agree. - -I started reading Narou novels because of this one.";False;False;;;;1610386241;;False;{};giwksvc;False;t3_kt292n;False;True;t1_gijh891;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giwksvc/;1610437277;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Opposite-Ant5355;;;[];;;;text;t2_5grat9wo;False;False;[];;"compared with the past - -There are fewer animators who can create monsters and robots than before. - -It's a shame, but it can't be helped.";False;False;;;;1610386399;;False;{};giwl5g6;False;t3_kt292n;False;True;t1_gil5n4a;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giwl5g6/;1610437476;1;True;False;anime;t5_2qh22;;0;[]; -[];;;internetpersonanona;;;[];;;;text;t2_5w6w1cap;False;False;[];;"try watching the first few episodes of the english dubs, every time someone goes to attack they disco flash the name of the attack in huge capslocked bold neon fonts. - -i figured they did this for the entire dub, or did they get sued for causing seizures?";False;False;;;;1610588826;;False;{};gj6kfwn;False;t3_ksycwp;False;True;t1_gijfrpi;/r/anime/comments/ksycwp/guys_is_one_piece_dubfunimation_good/gj6kfwn/;1610668447;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;They definitely didn't do this for the entire dub I don't even remember them doing this in the early seasons;False;False;;;;1610589406;;False;{};gj6lkk8;False;t3_ksycwp;False;True;t1_gj6kfwn;/r/anime/comments/ksycwp/guys_is_one_piece_dubfunimation_good/gj6lkk8/;1610669152;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"# Source Material Corner - -Reply to this comment for any source-related discussion, future spoilers (including future characters, events and general hype about future content), comparison of the anime adaptation to the original, or just general talk about the source material. **You are still required to tag all spoilers.** Discussions about the source outside of this comment tree will be removed, and replying with spoilers outside of the source corner will lead to bans. - -The spoiler syntax is: -`[Spoiler source](/s ""Spoiler goes here"")` - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610134200;moderator;False;{};giknpew;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giknpew/;1610172898;1;False;True;anime;t5_2qh22;;0;[]; -[];;;joey_joestar1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Joey_Joestar1;light;text;t2_thsqo0;False;False;[];;As a manga reader, I would advise withholding your judgement until the next episode.;False;False;;;;1610134472;;False;{};gikobl3;False;t3_kt9txf;False;False;t3_kt9txf;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/gikobl3/;1610173248;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Clutch_;;;[];;;;text;t2_chaww;False;False;[];;Thanks - did you guys have similar thoughts early on when reading the manga?;False;False;;;;1610134618;;False;{};gikono3;True;t3_kt9txf;False;True;t1_gikobl3;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/gikono3/;1610173433;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610134624;moderator;False;{};gikoo6d;False;t3_kt9wy7;False;True;t3_kt9wy7;/r/anime/comments/kt9wy7/is_there_a_way_to_find_an_anime_through_the_names/gikoo6d/;1610173440;1;False;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;"Search for characters here: - -* https://myanimelist.net/ -* https://anidb.net/character - -It'll show you all the anime they're in.";False;False;;;;1610134716;;False;{};gikovmb;False;t3_kt9wy7;False;True;t3_kt9wy7;/r/anime/comments/kt9wy7/is_there_a_way_to_find_an_anime_through_the_names/gikovmb/;1610173558;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RasmusFPS;;;[];;;;text;t2_7di5r6fe;False;False;[];;Yea search the name of the character and if you're Lucky there is no other anime character with the same name;False;False;;;;1610134769;;False;{};gikozxg;False;t3_kt9wy7;False;False;t3_kt9wy7;/r/anime/comments/kt9wy7/is_there_a_way_to_find_an_anime_through_the_names/gikozxg/;1610173630;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RasmusFPS;;;[];;;;text;t2_7di5r6fe;False;False;[];;Use Google;False;False;;;;1610134791;;False;{};gikp1oh;False;t3_kt9wy7;False;True;t1_gikozxg;/r/anime/comments/kt9wy7/is_there_a_way_to_find_an_anime_through_the_names/gikp1oh/;1610173658;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610134933;;False;{};gikpd7f;False;t3_kta0qf;False;True;t3_kta0qf;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gikpd7f/;1610173843;0;False;False;anime;t5_2qh22;;0;[]; -[];;;YoCodingJosh;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/CodingJosh;light;text;t2_4oan1u9a;False;True;[];;kissing speedrun any% world record holy shit;False;False;;;;1610135013;;False;{};gikpjoe;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikpjoe/;1610173948;225;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;Sao;False;False;;;;1610135017;;False;{};gikpjwx;False;t3_kta14g;False;True;t3_kta14g;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikpjwx/;1610173951;3;True;False;anime;t5_2qh22;;0;[]; -[];;;biancoviskk;;;[];;;;text;t2_9gqv52au;False;False;[];;many people don't like kakegurui, but I liked it;False;False;;;;1610135041;;False;{};gikplvt;False;t3_kta14g;False;False;t3_kta14g;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikplvt/;1610173982;6;True;False;anime;t5_2qh22;;0;[]; -[];;;kneelhitler;;;[];;;;text;t2_2y0cogxa;False;False;[];;"For me this is the most interesting season becuz you rarely see an anime shift all there focus on the ""bad guys"" and completely remove the main cast plus the whole reinar conflict was really good";False;False;;;;1610135054;;False;{};gikpn0h;False;t3_kt9txf;False;False;t3_kt9txf;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/gikpn0h/;1610174001;5;True;False;anime;t5_2qh22;;0;[]; -[];;;akaslayboss;;;[];;;;text;t2_6cyot4rf;False;False;[];;Kakegurui;False;False;;;;1610135056;;False;{};gikpn4e;False;t3_kta14g;False;True;t3_kta14g;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikpn4e/;1610174003;2;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"Akira, some call it a rushed mess, some call it one of the best movies of all time. - -&#x200B; - -I personally really liked the detail, and it looked stunning in the cinema.";False;False;;;;1610135058;;False;{};gikpnbg;False;t3_kta14g;False;True;t3_kta14g;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikpnbg/;1610174006;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PaulWalkerIV;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MasonCrosbysFoot;light;text;t2_11thw0;False;False;[];;i felt pretty meh throughout the whole manga. really only the premise kept me hooked;False;True;;comment score below threshold;;1610135088;;False;{};gikppuq;False;t3_kt9txf;False;True;t1_gikono3;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/gikppuq/;1610174047;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;akaslayboss;;;[];;;;text;t2_6cyot4rf;False;False;[];;Same it’s not even that bad;False;False;;;;1610135110;;False;{};gikprmu;False;t3_kta14g;False;True;t1_gikplvt;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikprmu/;1610174076;1;True;False;anime;t5_2qh22;;0;[]; -[];;;biancoviskk;;;[];;;;text;t2_9gqv52au;False;False;[];;sad that it was canceled;False;False;;;;1610135148;;False;{};gikpus8;False;t3_kta14g;False;False;t1_gikprmu;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikpus8/;1610174127;1;True;False;anime;t5_2qh22;;0;[]; -[];;;akaslayboss;;;[];;;;text;t2_6cyot4rf;False;False;[];;Wait it was;False;False;;;;1610135175;;False;{};gikpwxa;False;t3_kta14g;False;True;t1_gikpus8;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikpwxa/;1610174160;1;True;False;anime;t5_2qh22;;0;[]; -[];;;joey_joestar1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Joey_Joestar1;light;text;t2_thsqo0;False;False;[];;I will say I was skeptical at first seeing things from Reiner’s perspective, but later on I was thankful for the slower start post time skip. We got to see the POV of a tortured individual who we thought was an traitorous bastard previously. These episodes recontextualize the Warriors’ actions in S1-3 and set up events later on in the season.;False;False;;;;1610135222;;False;{};gikq0x1;False;t3_kt9txf;False;False;t1_gikono3;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/gikq0x1/;1610174220;4;True;False;anime;t5_2qh22;;0;[]; -[];;;oddtoddlr;;;[];;;;text;t2_37afeqck;False;False;[];;Same!;False;False;;;;1610135254;;False;{};gikq3h5;False;t3_kta14g;False;True;t1_gikplvt;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikq3h5/;1610174259;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;"> kakegurui - -Manga is still ongoing, same for everything else related to it.";False;False;;;;1610135255;;False;{};gikq3l5;False;t3_kta14g;False;True;t1_gikplvt;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikq3l5/;1610174261;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Clutch_;;;[];;;;text;t2_chaww;False;False;[];;Honestly, I get why they want to show the backstory, but it's not a good setup for weekly 20 minute episodes imo.;False;False;;;;1610135280;;False;{};gikq5nc;True;t3_kt9txf;False;True;t1_gikq0x1;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/gikq5nc/;1610174292;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;Find me somebody who hates Akira. Seriously, it was a mess, but it's still a fucking amazing movie.;False;False;;;;1610135287;;False;{};gikq66k;False;t3_kta14g;False;False;t1_gikpnbg;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikq66k/;1610174301;3;True;False;anime;t5_2qh22;;0;[]; -[];;;QueasyStress0;;;[];;;;text;t2_6ju5a8wu;False;False;[];;Here’s mine:I would rate Tokyo Ghoul Root A with at least a 7.YES,I know it is anime original,that the manga did a better job at the story and that it is certainly superior.On the other hand,I just can’t dismiss the beautiful animation,the amazing characters and of course the god tier soundtrack.The season is nowhere near perfect,as some plot points are generally hollow,but it is nowhere near the trash people are making it to be.That being said,I hope we can one day get another anime adaptation that follows the manga closer.;False;False;;;;1610135308;;False;{};gikq7yt;True;t3_kta14g;False;False;t3_kta14g;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikq7yt/;1610174331;2;True;False;anime;t5_2qh22;;0;[]; -[];;;oddtoddlr;;;[];;;;text;t2_37afeqck;False;False;[];;Rokka no yuusha, i really liked it but it got canceled;False;False;;;;1610135319;;False;{};gikq8u2;False;t3_kta14g;False;False;t3_kta14g;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikq8u2/;1610174346;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Illustrious_Cause976;;;[];;;;text;t2_7lut7w1w;False;False;[];;The Testament of Sister New Devil. Yeah it trash but I knew what I watched it for and got it lol.;False;False;;;;1610135321;;False;{};gikq8zs;False;t3_kta14g;False;True;t3_kta14g;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikq8zs/;1610174349;2;True;False;anime;t5_2qh22;;0;[]; -[];;;biancoviskk;;;[];;;;text;t2_9gqv52au;False;False;[];;I read that yes, but went to search to confirm and says that it is not certain, but apparently yes;False;False;;;;1610135338;;False;{};gikqae2;False;t3_kta14g;False;True;t1_gikpwxa;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikqae2/;1610174373;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;Tokyo Ghoul;False;False;;;;1610135341;;False;{};gikqano;False;t3_kta14g;False;False;t3_kta14g;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikqano/;1610174378;2;True;False;anime;t5_2qh22;;0;[]; -[];;;akaslayboss;;;[];;;;text;t2_6cyot4rf;False;False;[];;Oh that’s sucks a lot;False;False;;;;1610135363;;False;{};gikqch2;False;t3_kta14g;False;True;t1_gikqae2;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikqch2/;1610174406;1;True;False;anime;t5_2qh22;;0;[]; -[];;;critians5;;;[];;;;text;t2_218lkj09;False;False;[];;perplexing;False;False;;;;1610135363;;False;{};gikqcjp;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikqcjp/;1610174407;5;True;False;anime;t5_2qh22;;0;[]; -[];;;biancoviskk;;;[];;;;text;t2_9gqv52au;False;False;[];;is good, could be better? YES, but it's good;False;False;;;;1610135369;;False;{};gikqd1m;False;t3_kta14g;False;False;t1_gikq3h5;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikqd1m/;1610174416;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610135381;;1610143104.0;{};gikqe2m;False;t3_kta14g;False;True;t3_kta14g;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikqe2m/;1610174433;1;True;False;anime;t5_2qh22;;0;[]; -[];;;biancoviskk;;;[];;;;text;t2_9gqv52au;False;False;[];;yesss, but I still have a little hope;False;False;;;;1610135395;;False;{};gikqf8d;False;t3_kta14g;False;True;t1_gikqch2;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikqf8d/;1610174453;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;The current arc was the last time where I thought the manga had the potential to be the decent;False;False;;;;1610135561;;False;{};gikqsui;False;t3_kt9txf;False;True;t3_kt9txf;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/gikqsui/;1610174688;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Armdel;;MAL;[];;https://myanimelist.net/animelist/Armdel;dark;text;t2_9fsd5;False;False;[];;Pretty entertaining first episode i must say, and refreshing to have two characters kissing this early into a show, by anime standards at least. gonna keep watching this one for sure;False;False;;;;1610135647;;False;{};gikqzwm;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikqzwm/;1610174800;66;True;False;anime;t5_2qh22;;0;[]; -[];;;messem10;;;[];;;;text;t2_6pcwi;False;False;[];;Wouldn’t [Sakura Trick](https://myanimelist.net/anime/20047/Sakura_Trick) have that record?;False;False;;;;1610135650;;False;{};gikr06y;False;t3_kt9rcs;False;False;t1_gikpjoe;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikr06y/;1610174804;56;True;False;anime;t5_2qh22;;0;[]; -[];;;sofastsomaybe;;;[];;;;text;t2_pn79k;False;False;[];;"I thought God of High School was a fun watch. I binged it after the season was over so I was expecting a trainwreck of epic proportions, but it wasn't nearly as bad as the MAL reviews led me to believe. Yes, the fights were rushed and lacked tension, yes, the characters were underdeveloped, and yes, there was some convoluted fuckery happening toward the end, but maybe I've watched too much anime because I've seen shows that were *far* more incoherent. It was generic shounen eye candy, but sometimes I like watching the eye candy and not caring about the finer details. At the very least, it kept me engaged for 13 episodes. Far from ""worst anime of 2020"" if you ask me, not even close. - -tl;dr - expected a 2/10, got a solid 6.5/10";False;False;;;;1610135951;;False;{};gikroup;False;t3_kta14g;False;True;t3_kta14g;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikroup/;1610175189;3;True;False;anime;t5_2qh22;;0;[]; -[];;;YoCodingJosh;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/CodingJosh;light;text;t2_4oan1u9a;False;True;[];;Haven't watched it yet haha. It's on the top of my list, since it has kissing early on and it's a yuri.;False;False;;;;1610136027;;False;{};gikruwa;False;t3_kt9rcs;False;False;t1_gikr06y;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikruwa/;1610175281;7;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Kush_Dealer_, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610136065;moderator;False;{};gikry2e;False;t3_ktaey8;False;True;t3_ktaey8;/r/anime/comments/ktaey8/can_you_guys_give_me_recommendations_for_me_and/gikry2e/;1610175331;1;False;False;anime;t5_2qh22;;0;[]; -[];;;joey_joestar1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Joey_Joestar1;light;text;t2_thsqo0;False;False;[];;Hm. Rereading your post, are you not very invested in Reiner’s character and what things are like in Marley? I mean no disrespect, just want to know more of your thoughts thus far.;False;False;;;;1610136100;;False;{};giks0ue;False;t3_kt9txf;False;False;t1_gikq5nc;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/giks0ue/;1610175373;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Ryuuta_Yosei;;;[];;;;text;t2_105b3i;False;False;[];;"YouTube link: -[https://youtu.be/pG3baPYzXrc](https://youtu.be/pG3baPYzXrc)";False;False;;;;1610136127;;False;{};giks34u;True;t3_ktafk7;False;True;t3_ktafk7;/r/anime/comments/ktafk7/accelerator_encounter/giks34u/;1610175408;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"# Source Material Corner - -Reply to this comment for any source-related discussion, future spoilers (including future characters, events and general hype about future content), comparison of the anime adaptation to the original, or just general talk about the source material. **You are still required to tag all spoilers.** Discussions about the source outside of this comment tree will be removed, and replying with spoilers outside of the source corner will lead to bans. - -The spoiler syntax is: -`[Spoiler source](/s ""Spoiler goes here"")` - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610136135;moderator;False;{};giks3t1;False;t3_ktafwf;False;True;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/giks3t1/;1610175419;1;False;True;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610136211;;False;{};giks9qx;False;t3_kta14g;False;True;t1_gikroup;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/giks9qx/;1610175513;0;True;False;anime;t5_2qh22;;0;[]; -[];;;HereticalAegis;;;[];;;;text;t2_6xeubalv;False;False;[];;"Normal logic: my girl's shoulders ache, I'll use my editor skill to learn massage technique - -Noir logic: my girl's shoulders ache, time to downsize - -Wow, they're just going for it with this one. I honestly appreciate shows like this that don't bother with pretense. It knows what it wants to be and does just that to the best of its ability. Emma is also on the fast track to best girl of the season for me.";False;False;;;;1610136226;;False;{};giksayj;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giksayj/;1610175533;143;True;False;anime;t5_2qh22;;0;[]; -[];;;Midori-4;;;[];;;;text;t2_3ffbl678;False;False;[];;Astarotte’s Toy. Anime was pretty good. I started the manga and I can see it’s verrrrryyyy different.;False;False;;;;1610136302;;False;{};giksh49;False;t3_kta14g;False;True;t3_kta14g;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/giksh49/;1610175629;1;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;"""Master, it seems you're stuck in there? Can I help you?"" - -Damn it, I didn't think this is an ecchi anime when I started. The humour is funny and not cringy though. - -Might continue to watch if the lewdness level does not become annoying in future episode.";False;False;;;;1610136325;;1610152398.0;{};giksiyh;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giksiyh/;1610175657;39;True;False;anime;t5_2qh22;;0;[]; -[];;;GMorelli;;;[];;;;text;t2_13n5gj;False;False;[];;"Berserk 2016/2017 are considered to be an abomination of anime, and while I personally won't go as far as calling it ***good***, I can say that I liked and enjoyed them. Definitely a 6/10 for me, just not enough to be a 7/10. - -Same goes for Nora (the first Nora, the second was complete trash for me), Kandagawa Jet Girls and Seven Mortal Sins for example. They were all pretty fun watches, solid 6/10s for me.";False;False;;;;1610136381;;False;{};giksndq;False;t3_kta14g;False;True;t3_kta14g;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/giksndq/;1610175724;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Frontier246;;;[];;;;text;t2_an8rjvo;False;False;[];;"So we've got dungeons + cute girls/Harem like DanMachi, Great Sage like *Reincarnated as a Slime* (except an old dude instead of Megumi Toyoguchi) and Noble politics like *8th Son.* - -It's nice to hear Ryota Ohsaka and Yui Horie in something again. Funnily enough, we have Hocchan playing a busty blue-haired lady when she was also the voice of Fumino's mom in *We Never Learn*. - -You'd think Noir would be your typical pure-hearted adventurer until he starts trashing his dad. I am also convinced he didn't still have a headache before his last kiss with Emma. Plus he seems totally comfortable taking advantage of his sister Alice being a big brocon for some intimate sibling bonding. - -Having an ability that works when you make out with girls and life points that can be restored through intimacy...not without its perks, I'd say. - -Emma is Noir's cute, bubbly, childhood friend who is very obviously into him as more than just a friend, whether it be the when she first suggests they kiss to help him with his abilities, wearing a dress that shows off her cleavage when he's around, or when she drops her potential job security to become an adventurer with him. I'm definitely getting the sense that she's the main girl of the ladies in the series when it comes to prominence and her relationship with Noir, and I'm rooting for Emma to get closer to Noir as the series continues. - -Brief Emma panty shot! Thank you, short skirt. - -I feel bad for Olivia that she's been stuck in that dungeon for 200 years until Noir came, but she still seemingly can't free herself from those Death Chains. Will Noir find some way to free her? Not that seems too bothered by it now that she has someone to talk to, but that might be because she already lived it up on the outside when she was free as basically a hedonist, powerful, adventurer. - -I kinda get where Noir was coming from in trying to shrink Emma's boobs to make her feel better physically...but I don't think any girl would appreciate getting their boobs downsized without their permission, let alone the fact that they probably would prefer to have boobs to being flat as a board (not to mention her crush outright saying he prefers them big). - -The Ending was pretty nice, showing Noir and Emma growing up together (I kinda wish she'd kept her hair long) as well as the rest of Noir's future Harem. Lenore's not in there, so I guess that team doesn't last long past this episode. I also love that shot of them gazing out into the sky with Emma's breasts resting on the column. - -Looks like we're meeting the next girl, the guild receptionist, in the following episode.";False;False;;;;1610136404;;1610136639.0;{};giksp9a;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giksp9a/;1610175752;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Agreeable-Highlight;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/STARFLIGHT1111/;light;text;t2_2xajbknh;False;False;[];;"I’m too lazy to come up with recommendations myself but here’s another Reddit thread with a similar question: - -https://www.reddit.com/r/anime/comments/1bxok9/could_anyone_recommend_some_pg_rated_anime_for_my/?utm_source=amp&utm_medium=&utm_content=post_num_comments - -Edit: I’m seeing some anime being mentioned on that thread that I would NOT recommend for a 9 year old, namely Sword Art Online, Fairy Tail, and Soul Eater. All three are pretty violent (nothing beyond the typical shounen stuff) and have some pretty sexual content.";False;False;;;;1610136447;;1610136849.0;{};gikssq3;False;t3_ktaey8;False;False;t3_ktaey8;/r/anime/comments/ktaey8/can_you_guys_give_me_recommendations_for_me_and/gikssq3/;1610175804;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Little Witch Academia - -K-On - -Flying Witch - -Avatar the Last Airbender (Not anime)";False;False;;;;1610136458;;False;{};gikstir;False;t3_ktaey8;False;False;t3_ktaey8;/r/anime/comments/ktaey8/can_you_guys_give_me_recommendations_for_me_and/gikstir/;1610175816;17;True;False;anime;t5_2qh22;;0;[]; -[];;;TDS_Reaper;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ramenn/;light;text;t2_2qks3axi;False;False;[];;bruh wtf is up with this animation;False;False;;;;1610136477;;False;{};giksv2m;False;t3_ktafwf;False;False;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/giksv2m/;1610175841;13;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610136491;moderator;False;{};giksw5g;False;t3_ktakif;False;True;t3_ktakif;/r/anime/comments/ktakif/where_to_find_my_anime_brethren/giksw5g/;1610175856;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Soccertaz89;;;[];;;;text;t2_epuro;False;False;[];;My Neighbor Totoro or Kiki’s Delivery Service. Both are Miyazaki films and pretty cool.;False;False;;;;1610136494;;False;{};gikswdv;False;t3_ktaey8;False;True;t3_ktaey8;/r/anime/comments/ktaey8/can_you_guys_give_me_recommendations_for_me_and/gikswdv/;1610175860;2;True;False;anime;t5_2qh22;;0;[];True -[];;;Kush_Dealer_;;;[];;;;text;t2_2zu59x7i;False;False;[];;Thank you;False;False;;;;1610136502;;False;{};giksxsm;True;t3_ktaey8;False;True;t1_gikssq3;/r/anime/comments/ktaey8/can_you_guys_give_me_recommendations_for_me_and/giksxsm/;1610175878;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kush_Dealer_;;;[];;;;text;t2_2zu59x7i;False;False;[];;Thank you;False;False;;;;1610136517;;False;{};giksz12;True;t3_ktaey8;False;True;t1_gikstir;/r/anime/comments/ktaey8/can_you_guys_give_me_recommendations_for_me_and/giksz12/;1610175896;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Birdking111;;;[];;;;text;t2_hshxo9v;False;False;[];;3D CG makes anime more expensive? Really? I never heard about this before. Do you have any articles on it?;False;False;;;;1610136526;;False;{};gikszr8;False;t3_kta0qf;False;False;t3_kta0qf;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gikszr8/;1610175907;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Kush_Dealer_;;;[];;;;text;t2_2zu59x7i;False;False;[];;Thank You and Happy Cake Day!;False;False;;;;1610136544;;False;{};gikt18b;True;t3_ktaey8;False;True;t1_gikswdv;/r/anime/comments/ktaey8/can_you_guys_give_me_recommendations_for_me_and/gikt18b/;1610175931;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;You're welcome.;False;False;;;;1610136569;;False;{};gikt37v;False;t3_ktaey8;False;True;t1_giksz12;/r/anime/comments/ktaey8/can_you_guys_give_me_recommendations_for_me_and/gikt37v/;1610175962;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sourmilkandcereal;;MAL;[];;http://myanimelist.net/animelist/sourmilkncereal;dark;text;t2_h2p62;False;False;[];;I suggest Little Witch Academia and Princess Tutu. I think most Ghibli movies should be okay I would go with Kiki's Delivery Service to show.;False;False;;;;1610136571;;False;{};gikt3da;False;t3_ktaey8;False;False;t3_ktaey8;/r/anime/comments/ktaey8/can_you_guys_give_me_recommendations_for_me_and/gikt3da/;1610175964;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Ex-Kal;;;[];;;;text;t2_lougl6x;False;False;[];;From what I can tell it just looks like a top from a standard karate gi;False;False;;;;1610136594;;False;{};gikt58w;False;t3_ktaiqb;False;True;t3_ktaiqb;/r/anime/comments/ktaiqb/what_kind_of_kimono_jacket/gikt58w/;1610175994;2;True;False;anime;t5_2qh22;;0;[]; -[];;;QueasyStress0;;;[];;;;text;t2_6ju5a8wu;False;False;[];;I was thinking of watching GOHS and since I rarely find MAL reviews matching my opinion I didn’t get too discouraged by it.;False;False;;;;1610136622;;False;{};gikt7db;True;t3_kta14g;False;True;t1_gikroup;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikt7db/;1610176026;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Permanoxx;;;[];;;;text;t2_3hwherkr;False;False;[];;Guilty crown.... and Kuzu no Honkai;False;False;;;;1610136645;;False;{};gikt965;False;t3_kta14g;False;True;t3_kta14g;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikt965/;1610176058;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Average_Animefan;;;[];;;;text;t2_k7ishl;False;False;[];;"I saw the thumbnail and thought: that's got to be a Go-Hands anime. - -And it sure is. - -I'm neither particularly impressed nor disgusted by it, so I'll just keep watching. Maybe it's gonna be my secret hit of the season like Hypnosis Mic was last season.";False;False;;;;1610136646;;False;{};gikt98k;False;t3_ktafwf;False;False;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gikt98k/;1610176059;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610136684;;False;{};giktcgk;False;t3_ktaey8;False;True;t3_ktaey8;/r/anime/comments/ktaey8/can_you_guys_give_me_recommendations_for_me_and/giktcgk/;1610176108;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"...well, anime aren't really ""cancelled"" in the first place. They're just not renewed. There's a subtle but important difference.";False;False;;;;1610136784;;False;{};giktksl;False;t3_kta14g;False;True;t1_gikpus8;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/giktksl/;1610176239;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;"Let me rephrase: It's more expensive to do it *right*. Look at Ex-Arm's first trailer as an example, that's everything wrong with 3DCG Anime, a director who has never worked on anime, a team that most likely has no experience. - - -It's cheaper overall to use 3DCG, it's why shows like Love Live do it for dance scenes, because complex movements such as dancing or fighting takes more time. - - -I can't really find much saying if it is or is not more expensive, just speculating, unsure if we've ever seen actual numbers. Found [this](https://anime.stackexchange.com/questions/8273/are-3dcg-based-animes-cheaper-to-produce) though";False;False;;;;1610136797;;False;{};giktlti;True;t3_kta0qf;False;False;t1_gikszr8;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/giktlti/;1610176255;13;True;False;anime;t5_2qh22;;0;[]; -[];;;wendigo72;;;[];;;;text;t2_146gw8;False;False;[];;Tokyo Ghoul Root A has many problems including being a horrible adaptation that butchers the manga BUT I still enjoyed it. Better than the TG RE anime which is just sub par all around.;False;False;;;;1610136838;;False;{};giktpbi;False;t3_kta14g;False;True;t3_kta14g;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/giktpbi/;1610176311;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fozzzyyy;;;[];;;;text;t2_de6jh;False;False;[];;[Generic isekai city detected](https://i.imgur.com/7LwPpxu.png);False;False;;;;1610136839;;False;{};giktpez;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giktpez/;1610176313;194;True;False;anime;t5_2qh22;;0;[]; -[];;;Birdking111;;;[];;;;text;t2_hshxo9v;False;False;[];;Okay, that makes more sense.;False;False;;;;1610136942;;False;{};giktxoi;False;t3_kta0qf;False;True;t1_giktlti;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/giktxoi/;1610176442;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;False;[];;"New season of Hero Academia looking kinda different. - -[Great Sage] is like having access to the wiki of the game you're playing. Seems overpowered so I'm glad there's a drawback. - -I wonder why he didn't even consider to use the Great Sage ability to ask how to undo the Death Chains. - -Olivia's abilities basically give you admin privileges. - -Get Creative? But a talking sketchbook made me agree to never do that again. - -[I can't believe he nerfed Emma like that.](https://i.imgur.com/TQzlluj.png) - -That was much more enjoyable than I was expecting. All the characters seem likable. I especially like how the MC was shit talking his dad.";False;False;;;;1610136954;;False;{};giktyst;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giktyst/;1610176458;65;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;"Wow, I was expecting some lewdness, but I really wasn't expecting any kissing. And let alone for it to be a requirement for him to use his skill. I really hope that Noir is aware that Emma loves him. - -[Olivia is so funny.](https://imgur.com/a/dZdoWTY) The fact that she cannot break the seal of those chains even with her broken skill and OP power probably means that Noir will need a lot of LP points to eventually free her. - -By the way, here is a screenshot of [the illustration that they mentioned the title of the next episode](https://i.imgur.com/koDQe7w.png) and[ today's end card.](https://imgur.com/a/UgckmPD)";False;False;;;;1610136965;;False;{};giktzub;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giktzub/;1610176474;17;True;False;anime;t5_2qh22;;0;[]; -[];;;sofastsomaybe;;;[];;;;text;t2_pn79k;False;False;[];;"Yeah I'd heard all the criticism beforehand, and I acknowledge that those problems certainly do exist, but as I was watching the show, they didn't really bother me as much as they seemed to bother other people. - -Then again I'm anime only, so I don't know what exactly was left on the cutting room floor.";False;False;;;;1610136972;;False;{};giku0gc;False;t3_kta14g;False;True;t1_giks9qx;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/giku0gc/;1610176484;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chika2chi;;;[];;;;text;t2_4dkz2y8e;False;False;[];;"I got downvoted when I said it but the early episodes were always going to be boring. they throw you in unfamiliar territory and introduce you to a bunch of characters that you don't give a shit about. I know it's kinda necessary to do their Epic Twists, but Isayama is at his worst when he's not doing Plot Happenings. - -don't worry though it'll pick up very soon and the usual AoT feel will be back even more.";False;False;;;;1610136976;;False;{};giku0sz;False;t3_kt9txf;False;True;t3_kt9txf;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/giku0sz/;1610176489;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;False;[];;What a Chad. Could he be the Anos Voldigoad of the season?;False;False;;;;1610137008;;False;{};giku3e7;False;t3_kt9rcs;False;False;t1_gikpjoe;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giku3e7/;1610176527;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;"Kiki’s Delivery Service, Power Puff Girls Z, & Ponyo";False;False;;;;1610137018;;False;{};giku45g;False;t3_ktaey8;False;True;t3_ktaey8;/r/anime/comments/ktaey8/can_you_guys_give_me_recommendations_for_me_and/giku45g/;1610176538;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RoastingUrGhost;;;[];;;;text;t2_6xhzl7u3;False;False;[];;I tought about it, but the sleeves look a bit off, maybe art style from the charc? or my wrong impression dunno;False;False;;;;1610137041;;False;{};giku605;True;t3_ktaiqb;False;True;t1_gikt58w;/r/anime/comments/ktaiqb/what_kind_of_kimono_jacket/giku605/;1610176566;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vikingslayerz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_r89cv;False;False;[];;So Hayasaka gets to be a main character in this, and gets a bubbly personality. Definitely lots I didn't like (the sheer amount of ecchi) but still has some promise so long as there is some sorta plot and not _only_ SoL fantasy power trip;False;False;;;;1610137072;;False;{};giku8nj;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giku8nj/;1610176609;2;True;False;anime;t5_2qh22;;0;[]; -[];;;QueasyStress0;;;[];;;;text;t2_6ju5a8wu;False;False;[];;Well,I don’t view Root A as an adaptation and I don’t get why people do.It would have been better if we had gotten the anime adaptation of the manga,sure,but that doesn’t mean Root a is shit because it deviates.My problems with it are more about the pace and many of the plot points.;False;False;;;;1610137080;;False;{};giku9b7;True;t3_kta14g;False;True;t1_giktpbi;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/giku9b7/;1610176619;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;From what I can tell, 3DCG can be more expensive, depending on what you're doing. If it's a Polygon Pictures series, that's going to be incredibly expensive, due to needing more computers. Something like Love Live, where you're using a combination of digital animation and 3DCG isn't in the same ballpark as the new Ghost in the Shell, financially.;False;False;;;;1610137112;;False;{};gikubws;True;t3_kta0qf;False;True;t1_giktxoi;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gikubws/;1610176659;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;False;[];;Hopefully becoming a couple on the first episode means there won't be an unnecessary romance subplot and we can focus on the main story.;False;False;;;;1610137128;;False;{};gikud5f;False;t3_kt9rcs;False;False;t1_gikqzwm;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikud5f/;1610176677;31;True;False;anime;t5_2qh22;;0;[]; -[];;;IndomitableINFJ;;;[];;;;text;t2_8e4x4ze5;False;True;[];;I watched sailor moon when I was 5-7, Pokémon, yugioh. Those were pretty common shows kids that age watched and aren’t too scary or violent at many points I’d say!;False;False;;;;1610137144;;False;{};gikuejj;False;t3_ktaey8;False;False;t3_ktaey8;/r/anime/comments/ktaey8/can_you_guys_give_me_recommendations_for_me_and/gikuejj/;1610176699;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PrimeInsanity;;;[];;;;text;t2_d1ga2;False;False;[];;"Emma is already best girl and I'm amazed she has won me over thos fast. It's not even because of the ""plot"" but that it's so rare to see a heroine these days who just steps up.";False;False;;;;1610137170;;False;{};gikuglp;False;t3_kt9rcs;False;False;t1_giksp9a;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikuglp/;1610176729;15;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;It's the art style, I think the closest thing would be a gi.;False;False;;;;1610137191;;False;{};gikui8w;False;t3_ktaiqb;False;True;t1_giku605;/r/anime/comments/ktaiqb/what_kind_of_kimono_jacket/gikui8w/;1610176755;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;"[Bofuri](https://myanimelist.net/anime/38790/Itai_no_wa_Iya_nano_de_Bougyoryoku_ni_Kyokufuri_Shitai_to_Omoimasu) is an anime that I often recommend to people wanting to get much-younger siblings into anime (it's tame and legitimately good... [here's a link to its IMDB Parents Guide](https://imdb.com/title/tt11428630/parentalguide) if that helps, that show is totally clean.) [Land of the Lustrous](https://myanimelist.net/anime/35557/Houseki_no_Kuni_TV) might be a decent anime to show her too, basically its whole cast is a bunch of ""technically gender-fluid"" gem girls so it could be similar to Steven Universe in those regards (it is PG-13, [link to its Parents Guide if that helps](https://imdb.com/title/tt7790776/parentalguide).)";False;False;;;;1610137191;;1610146145.0;{};gikuia0;False;t3_ktaey8;False;False;t3_ktaey8;/r/anime/comments/ktaey8/can_you_guys_give_me_recommendations_for_me_and/gikuia0/;1610176755;3;True;False;anime;t5_2qh22;;0;[]; -[];;;farson135;;;[];;;;text;t2_bp6v36d;False;False;[];;"I have a couple, but I will focus on [Gilgamesh](https://myanimelist.net/anime/385/Gilgamesh). - -You could consider Gilgamesh more or less a prototype for Evangelion (its source material is from the 70s). And like many prototypes, it is rough. For one thing, while Evangelion still looks pretty good, Gilgamesh is ugly despite the anime being more recent. - -I like it for many of the same reasons I like Evangelion. Its slow, if at times confusing, character drama.";False;False;;;;1610137229;;False;{};gikule0;False;t3_kta14g;False;True;t3_kta14g;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikule0/;1610176800;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PrimeInsanity;;;[];;;;text;t2_d1ga2;False;False;[];;When they showed the work around for great sage's drawback, I really understood what I was in for.;False;False;;;;1610137238;;False;{};gikum2t;False;t3_kt9rcs;False;False;t1_giktyst;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikum2t/;1610176812;41;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;False;[];;Olivia stole the show for me. There's just something about powerful mages with an ego...;False;False;;;;1610137332;;False;{};gikuu67;False;t3_kt9rcs;False;False;t1_giksayj;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikuu67/;1610176928;52;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi berttmanD2, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610137355;moderator;False;{};gikuvxx;False;t3_ktavp6;False;True;t3_ktavp6;/r/anime/comments/ktavp6/good_anime_recommendations_please/gikuvxx/;1610176955;1;False;False;anime;t5_2qh22;;0;[]; -[];;;The-artful-hoxha;;;[];;;;text;t2_15jmmm;False;False;[];;Ascendance of a Bookworm;False;False;;;;1610137358;;False;{};gikuw8z;False;t3_ktaey8;False;True;t3_ktaey8;/r/anime/comments/ktaey8/can_you_guys_give_me_recommendations_for_me_and/gikuw8z/;1610176960;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ex-Kal;;;[];;;;text;t2_lougl6x;False;False;[];;I’ve seen him wearing full sleeve and 3/4 sleeve so I dunno which one is correct but depending on the brand you should be able to find something suitable... I’ve only bought one gi so I’m no expert but it seems like Century brand has really wide sleeves;False;False;;;;1610137375;;False;{};gikuxl1;False;t3_ktaiqb;False;True;t1_giku605;/r/anime/comments/ktaiqb/what_kind_of_kimono_jacket/gikuxl1/;1610176980;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dekalabia;;;[];;;;text;t2_qqkbdrk;False;False;[];;Baccano is full of swag and dandy with a good helping of insanity. Set during the prohibition period in america history, so expect all the great gangster goodness. With how the episode are set, you are left with tons of mystery so each episode will fill in a certain point of the timeline but each episode isn't exactly chronological.;False;False;;;;1610137584;;False;{};gikveds;False;t3_ktavp6;False;True;t3_ktavp6;/r/anime/comments/ktavp6/good_anime_recommendations_please/gikveds/;1610177233;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;"> I wonder why he didn't even consider to use the Great Sage ability to ask how to undo the Death Chains. - -My bet is that he is already able to do it with Olivia's skill, but it requires an insane amount of points to do so.";False;False;;;;1610137598;;False;{};gikvfef;False;t3_kt9rcs;False;False;t1_giktyst;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikvfef/;1610177247;32;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Please create an anime list at either myanimelist.net, anilist.co, kitsu or anime-planet. All 4 are free and useful to have. I know you're new but it's good to create one now instead of later - -Death Note - -The Promised Neverland - -Dororo - -Psycho-Pass - -Banana Fish - -Vinland Saga";False;False;;;;1610137609;;False;{};gikvgc3;False;t3_ktavp6;False;True;t3_ktavp6;/r/anime/comments/ktavp6/good_anime_recommendations_please/gikvgc3/;1610177261;1;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;It's not as good (the first half is actually pretty fun, but it suffers in the second half due to a lack luster villain), but [Kabaneri of the Iron Fortress](https://myanimelist.net/anime/28623/Koutetsujou_no_Kabaneri) was made by the same people and has the same sort of visuals and feel.;False;False;;;;1610137610;;False;{};gikvgfk;False;t3_ktavp6;False;True;t3_ktavp6;/r/anime/comments/ktavp6/good_anime_recommendations_please/gikvgfk/;1610177263;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;True;[];;Kabenieri of the Iron Fortress is kind of like a Zombie AoT and it's even on Netflix;False;False;;;;1610137662;;False;{};gikvkpm;False;t3_ktavp6;False;True;t3_ktavp6;/r/anime/comments/ktavp6/good_anime_recommendations_please/gikvkpm/;1610177327;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;False;[];;This show knows exactly what it wants to be and it's doing an exceedingly good job at it.;False;False;;;;1610137689;;False;{};gikvmzf;False;t3_kt9rcs;False;False;t1_gikum2t;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikvmzf/;1610177360;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;I mean is a medieval town, so city walls and easy access to a river are to be expected.;False;False;;;;1610137713;;False;{};gikvowr;False;t3_kt9rcs;False;False;t1_giktpez;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikvowr/;1610177388;32;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;False;[];;"""Oh, step protagonist...""";False;False;;;;1610137741;;False;{};gikvr83;False;t3_kt9rcs;False;False;t1_giksiyh;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikvr83/;1610177421;36;True;False;anime;t5_2qh22;;0;[]; -[];;;MaiValentineHusband;;;[];;;;text;t2_9ktbpab3;False;False;[];;"School Days, everyone hates it but i thought it was interesting. For as flawed and stupid as it got, it was never boring or predictable. - -Does Yugioh count? Everyone memes and makes fun of how ridiculous it is, but i love it to death.";False;False;;;;1610137794;;False;{};gikvvsb;False;t3_kta14g;False;True;t3_kta14g;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikvvsb/;1610177489;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NotAMoron2;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/SudoSen;dark;text;t2_2l3p4ut;False;False;[];;"Enjoyed it a lot - -Seriously, good MC";False;False;;;;1610137798;;False;{};gikvw23;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikvw23/;1610177493;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610137800;;1610138000.0;{};gikvw7p;False;t3_kt9rcs;False;True;t1_gikud5f;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikvw7p/;1610177495;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;"Honestly I have no idea what would be a similar recommendation to AOT. I only finished season 3 a couple of days ago (and I'm waiting for the full release of the dub for the final season before diving back into it.) - -Hope this isn't spoilerish for AOT's first 3 seasons, but I've *heard* people compare the series to [Evangelion](https://myanimelist.net/anime/30/Neon_Genesis_Evangelion) (haven't seen it but I've seen plenty of spoilers) and [Code Geass](https://myanimelist.net/anime/1575/Code_Geass__Hangyaku_no_Lelouch) (have seen it and loved it, generally I recommend at least watching the last Code Geass movie after the main series even though those movies technically cannot be canon), and something about AOT thus far has reminded me a little bit of [this other anime](https://myanimelist.net/anime/33502/Shuumatsu_Nani_Shitemasu_ka_Isogashii_Desu_ka_Sukutte_Moratte_Ii_Desu_ka) but idk. - -Best of luck in finding some more good shows :-)";False;False;;;;1610137822;;False;{};gikvy38;False;t3_ktavp6;False;True;t3_ktavp6;/r/anime/comments/ktavp6/good_anime_recommendations_please/gikvy38/;1610177523;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;False;[];;Nothing wrong with kissing your homies, I guess.;False;False;;;;1610137837;;False;{};gikvzcl;False;t3_kt9rcs;False;False;t1_gikvw7p;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikvzcl/;1610177542;5;True;False;anime;t5_2qh22;;0;[]; -[];;;atropicalpenguin;;MAL;[];;http://myanimelist.net/animelist/atropicalpenguin;dark;text;t2_vxkvm;False;False;[];;There is no way this isn't trashy, just look at the animation in that kiss, but between a VA cast as stacked as Emma and a Coala Mode ending I need to watch this.;False;False;;;;1610137958;;False;{};gikw995;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikw995/;1610177689;91;True;False;anime;t5_2qh22;;0;[]; -[];;;Chem_chem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Throwawaybathtow;light;text;t2_f8b00;False;False;[];;From the studio that brought you Hand Shakers . . .;False;False;;;;1610138165;;False;{};gikwpts;False;t3_ktafwf;False;False;t1_giksv2m;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gikwpts/;1610177936;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610138206;;False;{};gikwt45;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikwt45/;1610177983;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;So was the 2016 berserk a good adaptation of the manga? I know about the crappy cgi, but was the story well paced and accurate?;False;False;;;;1610138259;;False;{};gikwx87;False;t3_kta14g;False;True;t1_giksndq;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikwx87/;1610178058;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PoliteDudeInTheMood;;;[];;;;text;t2_h2065;False;False;[];;"[Spoiler source](/s ""I think this was a pretty good adaptation so far, they didn't change much from the LN. Moved some scenes around, but didn't skip any. I'm interested to see how much they show. I mean that kiss was pretty basic compared to what it turns into."")";False;False;;;;1610138336;;False;{};gikx3b6;False;t3_kt9rcs;False;True;t1_giknpew;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikx3b6/;1610178163;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Chem_chem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Throwawaybathtow;light;text;t2_f8b00;False;False;[];;"So, as someone who loves garbage media this show is ticking all the boxes. Not only does it look like crap, it's also incomprehensible, smug, and so grossly and unironically edgy. - -Look like I'm grabbing my popcorn bucket for this and ex-arm for the seasonal dumpster fires.";False;False;;;;1610138345;;False;{};gikx41d;False;t3_ktafwf;False;False;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gikx41d/;1610178174;21;True;False;anime;t5_2qh22;;0;[]; -[];;;SgtExo;;;[];;;;text;t2_cnfzs;False;False;[];;But why are they always so round, real cities are never so round.;False;False;;;;1610138543;;False;{};gikxjyt;False;t3_kt9rcs;False;False;t1_gikvowr;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikxjyt/;1610178422;44;True;False;anime;t5_2qh22;;0;[]; -[];;;GMorelli;;;[];;;;text;t2_13n5gj;False;False;[];;I know it skips a lot though, but no Idea how much since I haven't read the manga. Probably one of the reasons I was able to enjoy for what it was. But those who have read the manga say that this adaptation should not have existed, so I guess its not a proper adaptation. As for the CGI, it was pretty bad in my opinion, but it made me laugh quite a bit which is also one of the reasons I could enjoy it.;False;False;;;;1610138639;;False;{};gikxrn7;False;t3_kta14g;False;True;t1_gikwx87;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikxrn7/;1610178539;1;True;False;anime;t5_2qh22;;0;[]; -[];;;messem10;;;[];;;;text;t2_6pcwi;False;False;[];;"> Normal logic: my girl’s shoulders ache, I’ll use my editor skill to learn massage technique -> -> Noir logic: my girl’s shoulders ache, time to downsize - -Giving a man a fish versus teaching him to fish. Now the problem is gone forever, or until he reverts it.";False;False;;;;1610138651;;False;{};gikxsmq;False;t3_kt9rcs;False;False;t1_giksayj;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikxsmq/;1610178554;14;True;False;anime;t5_2qh22;;0;[]; -[];;;aniMayor;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aniMayor/;light;text;t2_oymny;False;True;[];;"The problem with linking an OP for each title of a super robot retrospective is that most of them are awesome OPs so I want to stop and listen to ALL of them, and hence it takes a long time to read through. - -[**Not that I'm complaining!**](#justright) - -This was an amazingly comprehensive read. Some of these I only knew a little bit about and learned more, and there's a few here I'd never even heard of. I'm especially fascinated by Dancouga and Godannar now, the designs on those look really interesting. Godannar especially seems like it's perhaps deliberately pulling from different influences for each of its different robots. - -On the subgenre being dead/dying, I think it's also worth highlighting that there are far fewer mechanical designers left in the industry now compared to its heydey, and those that have still stuck around might not even be as accustomed to designing for a 3D or 2D-3D-mix production as for 2D, so that becomes another hurdle. - -So many of these series were heavily tied-in to merchandising, too - particularly toys for kids. I don't know what the toy market in Japan is like these days, but I imagine toy robots with anime tie-ins have a lot less market share today than they did back when the subgenre was at its peak.";False;False;;;;1610138663;;False;{};gikxtic;False;t3_kta0qf;False;True;t3_kta0qf;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gikxtic/;1610178567;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;I feel like the only reason Seita was so prideful was because he was looking up to his dad who was fighting in the war. Setsuko was Seita’s only source of happiness after most of his relatives/family members died. His aunt was an asshole but I agree that he should have stayed if it wasn’t for his pride and Setsuko’s death was so heart breaking because Seita was trying his hardest to keep them alive also when Setsuko asked “why do fireflies have to die so young” I felt like that was foreshadowing her death. It hurts seeing a child slowly dying and knowing that this happened irl during WW2. I recommend you watch Barefoot Gen if you have not it takes place after WW2 in Japan.;False;False;;;;1610138673;;False;{};gikxubz;False;t3_ktai3c;False;True;t3_ktai3c;/r/anime/comments/ktai3c/thoughts_on_grave_of_fireflies/gikxubz/;1610178580;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CroweMorningstar;;;[];;;;text;t2_6i1rh;False;False;[];;That doesn’t mean it can’t have some originality/differentiation from other shows (see: Ascendance of a Bookworm).;False;False;;;;1610138719;;False;{};gikxy43;False;t3_kt9rcs;False;False;t1_gikvowr;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikxy43/;1610178639;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;That was very dumb... also very fun!;False;False;;;;1610138768;;False;{};giky21i;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giky21i/;1610178700;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;Sakura Trick is a different kind of beast, no anime will beat that kissing record any time soon.;False;False;;;;1610138825;;False;{};giky6px;False;t3_kt9rcs;False;False;t1_gikruwa;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giky6px/;1610178769;7;True;False;anime;t5_2qh22;;0;[]; -[];;;HereticalAegis;;;[];;;;text;t2_6xeubalv;False;False;[];;Ngl, Olivia is pretty great. Being voiced by Horie Yui helps.;False;False;;;;1610138844;;False;{};giky89v;False;t3_kt9rcs;False;False;t1_gikuu67;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giky89v/;1610178794;41;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;Becoming a couple? MC doesn't even seem to realize Emma likes him...;False;False;;;;1610138892;;False;{};gikyc4s;False;t3_kt9rcs;False;False;t1_gikud5f;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikyc4s/;1610178851;36;True;False;anime;t5_2qh22;;0;[]; -[];;;BiggerG7;;;[];;;;text;t2_3sbx0men;False;False;[];;"An Isekai fantasy harem show without the Isekai part eh? I’m sold. - -I thought this was gonna get more ecchi when the girl told him he had to do lewd things to get his LP up (giggity) but I kind of like how innocent he is that hugging a girl or putting his head on his sisters lap is all it takes.";False;False;;;;1610138960;;False;{};gikyhmb;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikyhmb/;1610178945;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Dylangillian;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/dylangillian;light;text;t2_14buwl;False;False;[];;"Doesn't seem like they are a couple yet. Emma seems to think so, but I'm sure the MC is your standard MC idiot in that regard, meaning he props didn't realize what Emma's intentions were. - -I'd love to be wrong though.";False;False;;;;1610138962;;False;{};gikyhqs;False;t3_kt9rcs;False;False;t1_gikud5f;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikyhqs/;1610178947;17;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;These days the only consistent mecha you're getting is Shinkalion, which is a kids anime(around the age that Detective Conan is marketed to), but it's also a smash hit. They had an Evangelion crossover.;False;False;;;;1610138969;;False;{};gikyidt;True;t3_kta0qf;False;True;t1_gikxtic;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gikyidt/;1610178956;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"> There is no way this isn't trashy - -That's what makes it good, tho.";False;False;;;;1610138973;;False;{};gikyiof;False;t3_kt9rcs;False;False;t1_gikw995;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikyiof/;1610178962;35;True;False;anime;t5_2qh22;;0;[]; -[];;;dualcalamity;;;[];;;;text;t2_fyzzi;False;False;[];;Maybe the [Haori](https://en.wikipedia.org/wiki/Haori).;False;False;;;;1610139033;;False;{};gikyo1l;False;t3_ktaiqb;False;True;t3_ktaiqb;/r/anime/comments/ktaiqb/what_kind_of_kimono_jacket/gikyo1l/;1610179040;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahdii-;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Mahdi89;light;text;t2_1r1bjoie;False;False;[];;This is just fantasy harem. There is no need to add the isekai part.;False;False;;;;1610139110;;False;{};gikyv6k;False;t3_kt9rcs;False;False;t1_gikyhmb;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikyv6k/;1610179146;13;False;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;"###Stitches! - -* [Blushing Emma](https://i.imgur.com/fhTAaXZ.jpg) - -* [Panchira Emma](https://i.imgur.com/mZ34Qul.jpg) - -* [Emma & Noir Kiss](https://i.imgur.com/CHtnVNz.jpg) - -* [Olivia Boob Shot](https://i.imgur.com/L2OQaTb.jpg) - -* [Chained Olivia 1](https://i.imgur.com/sq7zZOJ.jpg) - -* [Chained Olivia 2](https://i.imgur.com/xdDTkvS.jpg) - -* [Lewd Olivia](https://i.imgur.com/imRpnI4.jpg) - -* [Imouto Lap Pillow](https://i.imgur.com/id0LPiZ.jpg) - -* [Red Dress Emma](https://i.imgur.com/gPLEJqN.jpg) - -[Noir being a bit cheeky with his own dad.](https://i.imgur.com/z1rQitu.png) I think I already like this MC! - -We're only a few minutes in and they've already introduced [the classic brocon imouto character](https://i.imgur.com/KGGoYmS.png) and a [genki bid tiddy childhood friend?](https://i.imgur.com/NbpbOfu.png) Wait... Is this show a harem anime? - -[So Noir has the same skill as Rimuru](https://i.imgur.com/qpuyH4n.png) except Noir has the handicap of [getting brain splitting headaches](https://i.imgur.com/F1IUSXs.png) whenever he uses his Great Sage skill. I think that's a fair price to pay for an OP ability. - - -[The great sage Marlin demanded kisses from his ***wives*** to relieve his headaches.](https://i.imgur.com/cboXnO8.png) Again that's plural. Emma said wives. Yep this is definitely a harem anime. And here I thought when I played this episode that this was just a fantasy dungeon crawling anime! - -[**HOLY SHIT! NOIR ACTUALLY WENT FOR IT!**](https://i.imgur.com/WlMb1Ep.png) The childhood friend actually got to get the first kiss on the freaking first episode! And he didn't just go for it once! [They did it twice!](https://i.imgur.com/67RFKCS.png) While this isn't the first time the MC of a harem anime got a kiss on episode one but I think this is the first time I've seen it happen with a childhood friend! I am legit freaking out right now! O_O - -[Aaaand we're back to where the episode started.](https://i.imgur.com/2dHGtEO.png) I love that the password for the Hidden Dungeon [is basically Noir name dropping the title of the show!](https://i.imgur.com/m8gycEB.png) - -[Olivia is a pretty fun character!](https://i.imgur.com/yiHl08Q.png) I'm really liking her a lot especially since she's voiced by Yui Horie. I didn't expect that she'd just grant Noir her skills though! [And they're pretty OP skills too!](https://i.imgur.com/xjxLEgN.png) Being able to create any skill, bestow that skill, and edit that skill? Nice. - -[That LP system is pretty fun too!](https://i.imgur.com/rB2vTSD.png) Considering kissing relives his headaches, this LP system pretty much syncs well with his own original skill. And what a fucking chad Noir is! He wastes no time in trying to recover his LP by [getting a lap pillow from his imouto](https://i.imgur.com/5vT4mmY.png) and a good night hug too! This dude is amazing! - -While lap pillows and hugs from Noir's imouto nets him 50LP each, it looks like [a big hug from Emma while getting to feel her boobs](https://i.imgur.com/ySnS4yB.png) on his chest nets a whooping 350LP! So the more pleasurable the higher the LP eh? Oh my... ( ͡° ͜ʖ ͡°) - - -[HAHAHAHAHAHA!](https://i.imgur.com/o2Mw160.png) THIS FUCKING SHOW! Holy shit! Noir just casually shrinking Emma's boobs to relieve her of her back pain had me legit laughing out loud! They're really just going for it! I fucking love this show already! - -[](#laughter) - - -Final scene was pretty much expected though. Noir going back to the dungeon to [hunt a rare monster material](https://i.imgur.com/BkKYsWo.png) for the Hero Academy exam and then coming back to find out [that the skull was worth a lot](https://i.imgur.com/HtByvsD.png) is pretty standard. [I do love their reactions though!](https://i.imgur.com/GpoL1Gy.png) That was pretty funny! - - -You know what? I came in expecting nothing and came out getting waaaaaaaaaaaaay more entertained than any of the shows that aired this morning combined! This show is absolutely my jam and I am definitely following it till the end! Looking forward to the hilarity and harem antics this anime will show me!";False;False;;;;1610139137;;False;{};gikyxjp;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikyxjp/;1610179181;54;True;False;anime;t5_2qh22;;0;[]; -[];;;MattyJ613;;MAL;[];;http://myanimelist.net/animelist/MattyJ613;dark;text;t2_jswry;False;False;[];;"Unless you count the OP of Sakura Trick it doesn't have a kiss until 13 minutes into the first episode. The one here came 6:25 in so it halved it. - -~~no I didn't check or anything~~";False;False;;;;1610139180;;False;{};gikz0zj;False;t3_kt9rcs;False;False;t1_gikr06y;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikz0zj/;1610179238;38;True;False;anime;t5_2qh22;;0;[]; -[];;;LeafVillage4ever;;;[];;;;text;t2_63m78cca;False;False;[];;"I never thought of it that way but I’d have to totally agree. Seita had a lot of responsibility to take on, when he was just a child as well. -And yes the fireflies were so symbolic in this movie and they really did represent Seita and Setsuko , children that died way too soon in their lives. They’re family now completely wiped off the planet and forgotten :/ . Yeah I will totally check that out, thanks";False;False;;;;1610139204;;False;{};gikz31q;True;t3_ktai3c;False;True;t1_gikxubz;/r/anime/comments/ktai3c/thoughts_on_grave_of_fireflies/gikz31q/;1610179270;1;True;False;anime;t5_2qh22;;0;[]; -[];;;messem10;;;[];;;;text;t2_6pcwi;False;False;[];;"Including the OP, Sakura Trick is 2:40. - -~~I too didn’t check or anything.~~";False;False;;;;1610139255;;False;{};gikz76x;False;t3_kt9rcs;False;False;t1_gikz0zj;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikz76x/;1610179337;21;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610139305;;False;{};gikzb8k;False;t3_kt9rcs;False;True;t1_giku8nj;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikzb8k/;1610179402;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610139353;moderator;False;{};gikzf61;False;t3_ktbkhe;False;True;t3_ktbkhe;/r/anime/comments/ktbkhe/does_anyone_know_what_animemanga_this_is_from_my/gikzf61/;1610179469;1;False;False;anime;t5_2qh22;;0;[]; -[];;;fayezabdd;;;[];;;;text;t2_1vo7dygx;False;False;[];;AHAHHAHS I LIKE THIS SHOW ALREADY;False;False;;;;1610139392;;False;{};gikzi9o;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikzi9o/;1610179528;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Runn1ngmad;;;[];;;;text;t2_1uyc4xpo;False;False;[];;Devil man crybaby I think;False;False;;;;1610139400;;False;{};gikziwd;False;t3_ktbkhe;False;True;t3_ktbkhe;/r/anime/comments/ktbkhe/does_anyone_know_what_animemanga_this_is_from_my/gikziwd/;1610179537;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;"This is an isekai without the reincarnation plot element. Like it hits the same beats. Nothing wrong with that tbh I kinda like it. I was honestly thinking wtf when they were doing cinematic shots wondering if this would be like high grade shit, and I started laughing at myself when all the things I've come to see and love in isekai and harem shows do. Only thing I need to know is if Lenore who wasn't in the ed to my knowledge is gonna be relevant and turn around from being a bitch. - -Also is Olivia's VA the one who does the Pan paka pan from that ship waifu anime. Like it sounded very similar and I need to know so I can give her my full support from this day onward";False;False;;;;1610139404;;False;{};gikzj98;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gikzj98/;1610179543;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IXajll;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ixajii;light;text;t2_ob6j8;False;False;[];;Children of the Whales. Also Fate/Apocrypha, it’s actually my favorite Fate along with HF and Zero.;False;False;;;;1610139406;;False;{};gikzjdk;False;t3_kta14g;False;True;t3_kta14g;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gikzjdk/;1610179545;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xGligar;;;[];;;;text;t2_173z11;False;False;[];;Devilman crybaby;False;False;;;;1610139435;;False;{};gikzlqo;False;t3_ktbkhe;False;True;t3_ktbkhe;/r/anime/comments/ktbkhe/does_anyone_know_what_animemanga_this_is_from_my/gikzlqo/;1610179582;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RoastingUrGhost;;;[];;;;text;t2_6xhzl7u3;False;False;[];;Im afraid it isnt that, the ''jacket'' Beni uses ends at the a bit under the waist while the Haori goes a bit furder down.;False;False;;;;1610139496;;False;{};gikzqle;True;t3_ktaiqb;False;False;t1_gikyo1l;/r/anime/comments/ktaiqb/what_kind_of_kimono_jacket/gikzqle/;1610179668;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Se7en_Sinner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Se7en_Sinner;light;text;t2_5k5vy;False;False;[];;MC gains LP by doing pleasurable things, camera angles are sus, and he's a siscon. It's trash but man is it entertaining trash.;False;False;;;;1610139698;;False;{};gil06ux;False;t3_kt9rcs;False;False;t1_gikw995;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil06ux/;1610179936;58;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;"**Episode 3 (first timer)** - -* Honoka uses the yuri bait switch strategy to surprise Maki. -* A *full day* to do desensitization therapy? -* And the first attempt results in rejection by angry shades girl. Bad luck. -* They were already on the ranking website before having a song, before having a flyer, and way before having their first performance. I’d love to call this unrealistic, but … knowing way too many crazy internet people, this is entirely possible. -* Honoka giving Umi the “sex sells, jump on board the showing-skin-to-get-success train” pep talk. -* Peer pressure worked. -* Handholding at shrine butt shot brought to you by: anime camera angles^TM -* “snatch up our potential members” – Obviously, Honoka already has expansion plans in mind. -* Nyan-girl with the hiss. Not sure this would impress a real cat, but glasses girl is an easy mark. -* An audience of 1 is still an audience. -* More creepy CGI dancing. At least they are not wearing the Clockwork Orange costumes here. -* Two watching, three attendants, four people hiding. - -Their performance song was aptly inspiring so they could cheer themselves on. Standing in front of one or two people and still performing is hard, especially if the room is clearly meant for more. If you know your routine, you will still be able to pull it off regardless, but it leaves an emptiness in your stomach that is supposed to be filled by that warm feeling created when you look into the faced of your audience enjoying what you do. - -> Have you been in a similar situation where you were nervous before a certain event? What did you do to overcome your anxieties? - -Years and years of trying. Sorry, there is no easy way to overcome fear and anxiety. - -> Everything seemed to be crashing down around Honoka and co. before their performance and all of their hard work and effort seemed to be going to waste. How would you feel in a situation like that. - -See above.";False;False;;;;1610139747;;False;{};gil0ao1;False;t3_ktbp1n;False;False;t3_ktbp1n;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil0ao1/;1610179994;9;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkFuzz;;MAL;[];;http://myanimelist.net/profile/DarkFuzz;dark;text;t2_dvv5i;False;True;[];;"**Rewatcher** - -**Note to First timers:** My comments below talk about some of the themes of Love Live evident from the first three episodes. Some of my comments can be considered “spoilers” if you think about them too hard, but they’re nothing more than vague extrapolations of said themes from the first three episodes. But to be courteous to those who want a true first time, no hints experience, I’ll leave those parts spoilered out. However, I urge you to read them if you want to appreciate what the series is trying to do and what stories it is trying to tell. - ------ - -I don’t remember which comment I read this from so many years ago, but one guy commented that one of the reasons why he likes Love Live so much is that it allows its main characters to fail, and after stewing over it for the past few years, I’m going to have to agree. - -Think about it: this is Episode 3. Think about how most anime go right around now. Episode 1 is usually expositional, posing some sort of problem the main characters must overcome. Episode 2 is working towards overcoming the first major hurdle towards achieving that goal. Episode 3 (sometimes Episode 4) is the culmination of all that hard work packed into that one sakuga-laden moment where the main characters succeed in their first trial. - -That’s not the case with Love Live though. Love Live is perfectly fine with allowing the main characters to experience failure when they should be experiencing success. [vague spoiler](/s ""And if we’re going to take the premise behind the “three episode rule” somewhat literally, this should condition you for what to expect thematically from the rest of the series."") - -Often a complaint levied against Love Live in favor of something like Idolm@ster is that the Idolm@ster is a more realistic expectation of idol culture due to its portrayal of idols as a marketable industry and not just a happy-go-lucky school club, which is pretty valid to some extent. But if we’re being honest here, failure is a vital part of the idol industry, or even just life in general. Failure is just not a theme that is touched upon in the Idolm@ster franchise, or at least not to the extent of Love Live where it just flat out tells its main characters that they didn’t succeed. So in that sense, the argument can be made that Love Live is indeed a realistic experience of an idol’s struggles. - -[vague spoiler](/s ""With the introduction of failure to the series, you can’t just expect everything to be daijoubu like in most CGDCT shows. Our heroines will not always win. Honoka will fall flat on her face a lot, and not just in the clumsy kind of way. But part of the journey revolves around how Honoka is able to pick herself up, dust herself off, and strive towards a goal that is bigger than herself. That makes her human. That makes her likeable. That makes me want to root for her."")";False;False;;;;1610139749;;False;{};gil0au1;False;t3_ktbp1n;False;False;t3_ktbp1n;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil0au1/;1610179996;9;True;False;anime;t5_2qh22;;0;[]; -[];;;onionboys;;;[];;;;text;t2_njblg;False;True;[];;Gon, HxH;False;False;;;;1610139753;;False;{};gil0b6w;False;t3_ktboqh;False;True;t3_ktboqh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil0b6w/;1610180002;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;"**7th SIP rewatch** - -We start this episode with the sneaky tsundere, Maki, who in the previous episode claimed to dislike pop music, spying on μ's' practice. Of course she gets caught and tries to play it off, but we all know she's becoming interested in idols. **Pressing play on the music player to kick off the OP was a nice touch.** [Comment Face Spotted](https://imgur.com/a/dSUxbm6) - -[Poor Umi.](http://imgur.com/a/CVcxtWe) She's always so steadfast until she has to do something potentially embrassing. I wish I could give her a nice head pat and tell her everything will be okay. - -We get a sneak peek at the costumes μ's will be wearing! But there's a problem. [Kotori and Honoka love it,](https://imgur.com/a/SFgFTcP) but the [skirt is too short for Umi.](http://imgur.com/a/t65PCJ8) Luckily, with a little convincing, Umi begrudgingly agrees to wear it and [all is well.](http://imgur.com/a/g2wtbeg) **I've always found it weird that Umi is okay with wearing the school uniform, which is just as short as their costumes, but you just have to chalk up that kind of thing to anime logic and let it go.** - -Concert day! All of their hard work and preparation is about to pay off! μ's starts their pre-show ritual, the curtain draws back, [and...](http://imgur.com/a/z7pIB5p) -**My heart sank when I first saw this. It hurt to see Honoka look so sad after being so excited.** - -Hanayo's late arrival reignites the school idol flame inside Honoka and they put on a great performance for just her and all of the sneaky students Honoka has come across that don't want to be noticed. **Start:Dash is a middle-of-the-road μ's song to me. Not bad, but pales in comparison to their true greats. The choreography is pretty good, though. The costumes are kind of plain, but not awful. Everyone should know by now that SIP has notoriously bad dance CGI that persists throughout the series, so I'm not going to mention it often.** - -The student council president may not believe in μ's, but I do! I know you'll fill that auditorium some day! - ->Have you been in a similar situation where you were nervous before a certain event? What did you do to overcome your anxieties? - -Many times. The anxiety never goes away until I actually start doing whatever it is. - ->all of their hard work and effort seemed to be going to waste. How would you feel in a situation like that. - -I'd be annoyed at working so hard for nothing and probably quit, knowing me.";False;False;;;;1610139772;;1610143105.0;{};gil0cpm;False;t3_ktbp1n;False;False;t3_ktbp1n;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil0cpm/;1610180026;7;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"Sorry, your submission has been removed. - -- This looks like it's - a screenshot. - This is a form of restricted content that isn't allowed as a full post on the sub. You might consider posting about this sort of thing in the [weekly Casual Discussion Fridays megathread](https://www.reddit.com/r/anime/search?q=title%3A%22Casual+Discussion+Fridays%22+subreddit%3Aanime+author%3AAnimeMod&restrict_sr=on&sort=new&t=week) if it applies. See [our rules page](https://www.reddit.com/r/anime/wiki/rules#wiki_restricted_content) for a full list of restricted content categories. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610139786;moderator;False;{};gil0drr;False;t3_ktbnjm;False;True;t3_ktbnjm;/r/anime/comments/ktbnjm/what_would_happen_if_naruto_were_to_make_a/gil0drr/;1610180041;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;True;[];;"###First Timer -Time too see their concert somehow not be a disaster. Onto episode 3. - -You [say that](https://i.imgur.com/RDOsvvk.png), but I've still seen none of you sing. That's terrifying. - -Can you still save a school if you [fail out](https://i.imgur.com/Gm3ottI.png)? -[](#harukathink) - -I'm so ready for it to [sound horrible](https://i.imgur.com/cVwjO2z.png). -And we cut to the OP... I wanted to hear where they were. - -[How?](https://i.imgur.com/FkJUCgV.png) Like seriously, how? They haven't even performed yet. - -The [inevitable stage fright](https://i.imgur.com/JNaoatr.png). This just means she's gonna be the character who enjoys it the most, no? - -I really [sympathize](https://i.imgur.com/Nv0hk4g.png) with Umi right now. This seems terrifying. - -Nico's [default state](https://i.imgur.com/hnsUMNA.png) is grumpy, apparently. -[](#nicoisdone) describes her a bit too well. - -[Too smart](https://i.imgur.com/VOTXbDk.png) for your own damn good. - -So, [more than twice](https://i.imgur.com/WSqJtFV.png) the length of the skirt you wear for school? I mean, [look at yourself](https://i.imgur.com/MnXHnIS.png) right now. - -I'll be honest, I thought the sign she was holding was a [shitty typeset](https://i.imgur.com/5UGVFQY.png), but apparently it's actually in the show. Please say it was supposed to look bad. - -Seeing Honoka properly support Umi is really nice. - -[wwwwwwwwwwwwwwwwwww](https://i.imgur.com/NXncwrp.png) - -The episode director has a thighs fetish. - -Please let there [actually be people](https://i.imgur.com/qiO4NDH.png). -[Fuck.](https://i.imgur.com/3OYBxlJ.png) I know people will come in in the middle of their performence, but still... This has got to hurt. - -This is where Honoka has to [decide](https://i.imgur.com/f6rr6DK.png) to do it anyway. - -[She made it!](https://i.imgur.com/kRCQnDw.png) - -And Nico pops up like the [little gremlin](https://i.imgur.com/5FU1FFC.png) she is. - -The song itself was fine, if not inspired. The CG was significantly worse than the OP, it felt rather weird watching it. - -[Because](https://i.imgur.com/AScxnwE.png) it's fun. - -####Thoughts -The shows finally coming into it's own a little bit. This episode was by far the best so far. We finally get to see the fruits of their labor, and we've move past doing to save the school to doing it because we love it (and to save the school). -Next up, we finally pick up more group members. If we don't start picking them up soon, them even being in the OP is pretty weird. - -1. For me, it's usually a matter of reminding myself I'm overreacting and something's not nearly as bad as I think it's gonna be. -2. Absolutely crushed. All of that work coming to nothing is the worst feeling in the world.";False;False;;;;1610139829;;1610141620.0;{};gil0h9k;False;t3_ktbp1n;False;False;t3_ktbp1n;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil0h9k/;1610180096;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;Zenitsu from Demon Slayer single-handedly ruined the series for me. The show would be a 9/10 if he just never existed, but every moment he's on-screen and every moment his voice can be heard is absolutely unbearable. I can't even justify giving the series more than a 6/10 solely because of that annoying little bitch.;False;False;;;;1610139939;;False;{};gil0q1h;False;t3_ktboqh;False;False;t3_ktboqh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil0q1h/;1610180232;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Shodan30;;;[];;;;text;t2_103ceu;False;False;[];;Apparently this guy STARTS with a harem.;False;False;;;;1610139956;;False;{};gil0rdh;False;t3_kt9rcs;False;False;t1_gikpjoe;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil0rdh/;1610180254;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Lustrick;;;[];;;;text;t2_6y9by;False;False;[];;"I won't shit on people for being confused, but the situation right now should be very interesting with a growing sense of dread or excitement. - -You're introduced to where Reiner grew up, shown how Eldians are treated outside of Paradis Island, and new key characters; the upcoming warrior kids, and the other current titan users. We've now seen how titan powers are used openly as a weapon of war, and how other countries are combatting titans with modern weaponry. - -As of the latest episode (warning) - -you should have a good idea of whats about to happen, especially if you have watched the trailer. Trailer content aside, new characters personalities, goals, and status have been established. Its been revealed Eren is among them, he even sat next to and spoke to his grandfather unbeknownst to him. Currently happening is a festival that Gabi and her friends are experiencing; one of the best days of their lives. And Eren with the Attack titan is sitting right in the middle of it all.";False;False;;;;1610139992;;1610140199.0;{};gil0ubk;False;t3_kt9txf;False;False;t3_kt9txf;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/gil0ubk/;1610180302;5;True;False;anime;t5_2qh22;;0;[]; -[];;;cojoB_;;;[];;;;text;t2_27b35u6d;False;False;[];;It reminds me of the rising of the shield hero if it was mixed with konosuba;False;False;;;;1610139994;;False;{};gil0ufq;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil0ufq/;1610180304;1;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;"**First-Timer Who Was Just Here for the Ships** - -I wish I got [spied on by Maki.](https://i.imgur.com/XAhaRlH.png) [](#sadholo) - -True fear is [being molested by an anime girl.](https://i.imgur.com/rnJLlnl.png) - -Umi, the pretty girl with long, black hari who writes the ~~band's~~ group's music is stricken the stage fright. Hmm, where have I seen this before? [](#csikon) - -Umi has [quite the active imagination.](https://i.imgur.com/ciAoFdg.png) Guess it’s a good thing she’s the lyricist. - -[There probably is, though.](https://i.imgur.com/Xp1Df8D.png) Dancing in a longer skirt would be dangerous! - -[Oof.](https://i.imgur.com/pIm89KW.png) This kills the [Honoka.](https://i.imgur.com/dXd3icV.png) - -[It’s not like you’re in an anime.](https://i.imgur.com/LBcPHe8.png) - -But of course Shy Girl shows up, and of course they perform. I do question their superhuman ability to project. I’d invest in some mics. - -[Lots of people](https://i.imgur.com/6K2l3i2.png) who [pretended not to care](https://i.imgur.com/mQQTLhZ.png) who showed up anyway. - -All in all, it looks like [the entire freshman class attended!](https://i.imgur.com/1hc5vCm.png) [](#cateyes) - -The song was nice. I’ve never understood the whats and whys of idol dance routines (most of it doesn’t add anything to the song for me), so nothing to comment on there. - -The shifting between 2D and CG is still jarring, especially when they have [both on screen at the same time.](https://i.imgur.com/9vV7WQM.png) I get that it’s tough to do what Idolm@ster did in having all the dancing be 2D, but there has to be a better way than this hodgepodge. I’d rather they have the sequences entirely CG. - -QOTD: - -1) I'm terrified of doing things in public. I hate public speaking. I am also trying to become a full-time teacher and am currently teaching as a grad student. I still get jitters, but it was my first failure that helped me. I lost my train of thought, stumbled over my words, and nothing bad happened. The students still listened to what I had to say. Maybe less stress than trying to save your school through music and dance, but Umi will be fine. - -2) I'm the kind of person who tries to do everything I do for my own benefit, so if no one showed up to my concert, I'd be a little sad, but ultimately, if I enjoyed the process of hanging out with my friends and creating something, fuck everybody else.";False;False;;;;1610140043;;False;{};gil0ydg;False;t3_ktbp1n;False;False;t3_ktbp1n;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil0ydg/;1610180364;16;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;I considered that too. His powers are cool, but he’s so damn annoying and boring.;False;False;;;;1610140081;;False;{};gil11g0;True;t3_ktboqh;False;True;t1_gil0b6w;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil11g0/;1610180413;2;True;False;anime;t5_2qh22;;0;[]; -[];;;raichudoggy;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/raichudoggy;light;text;t2_93aur;False;False;[];;"**First Timer** - -Not that big of an update to the [Chart](https://i.imgur.com/blmtddi.png) today, but I will add that I liked the performance of START:DASH!! - -[](#mugiwait ""Nico when?"")";False;False;;;;1610140104;;False;{};gil139w;False;t3_ktbp1n;False;False;t3_ktbp1n;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil139w/;1610180440;15;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;For real! I had to mute it while that guy spoke. But when he’s asleep he’s a total badass tho;False;False;;;;1610140147;;False;{};gil16q2;True;t3_ktboqh;False;True;t1_gil0q1h;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil16q2/;1610180493;0;True;False;anime;t5_2qh22;;0;[]; -[];;;berttmanD2;;;[];;;;text;t2_42jd0epz;False;False;[];;Thanks so much I appreciate it!;False;False;;;;1610140186;;False;{};gil19uz;True;t3_ktavp6;False;True;t1_gikvy38;/r/anime/comments/ktavp6/good_anime_recommendations_please/gil19uz/;1610180544;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dv_recorder;;;[];;;;text;t2_8pd0s8e7;False;False;[];;Get it the fucking robot, Shinji;False;False;;;;1610140205;;False;{};gil1bdv;False;t3_ktboqh;False;True;t3_ktboqh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil1bdv/;1610180571;4;True;False;anime;t5_2qh22;;0;[]; -[];;;berttmanD2;;;[];;;;text;t2_42jd0epz;False;False;[];;Oh yeah I think I’ll check it out later tonight! Thanks;False;False;;;;1610140205;;False;{};gil1bek;True;t3_ktavp6;False;True;t1_gikvkpm;/r/anime/comments/ktavp6/good_anime_recommendations_please/gil1bek/;1610180571;2;True;False;anime;t5_2qh22;;0;[]; -[];;;berttmanD2;;;[];;;;text;t2_42jd0epz;False;False;[];;Thanks so much! I’ll check it out 🤠;False;False;;;;1610140224;;False;{};gil1cwf;True;t3_ktavp6;False;True;t1_gikvgfk;/r/anime/comments/ktavp6/good_anime_recommendations_please/gil1cwf/;1610180593;2;True;False;anime;t5_2qh22;;0;[]; -[];;;berttmanD2;;;[];;;;text;t2_42jd0epz;False;False;[];;I don’t usually like mystery shows but I’ll give it a try. Thanks!!!😎;False;False;;;;1610140265;;False;{};gil1g3s;True;t3_ktavp6;False;True;t1_gikveds;/r/anime/comments/ktavp6/good_anime_recommendations_please/gil1g3s/;1610180643;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkFuzz;;MAL;[];;http://myanimelist.net/profile/DarkFuzz;dark;text;t2_dvv5i;False;True;[];;"I went and took some of your suggestions from last time and am going to give this one or two more tries. No need for logins this time. - -[**Take today’s survey here!**](https://docs.google.com/forms/d/e/1FAIpQLScrrrM2uCvDr6PAjzz36GiROJ0n9FcRHjpZrZd45BcOLkz_qw/viewform?usp=sf_link)";False;False;;;;1610140281;;False;{};gil1hcr;False;t3_ktbp1n;False;False;t3_ktbp1n;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil1hcr/;1610180663;3;True;False;anime;t5_2qh22;;0;[]; -[];;;berttmanD2;;;[];;;;text;t2_42jd0epz;False;False;[];;I’ll be sure to check these out homie. Thanks!🥸;False;False;;;;1610140311;;False;{};gil1jqq;True;t3_ktavp6;False;True;t1_gikvgc3;/r/anime/comments/ktavp6/good_anime_recommendations_please/gil1jqq/;1610180702;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610140330;;False;{};gil1l6i;False;t3_ktboqh;False;True;t1_gil0q1h;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil1l6i/;1610180727;0;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;"> How? Like seriously, how? They haven't even performed yet. - -They've been talking about some online ranking thing, so I guess there's a popularity poll for school idols that they're somehow in even though they hadn't performed yet. - ->This just means she's gonna be the character who enjoys it the most, no? - -She did fantasize about it during archery practice. - ->The episode director has a thighs fetish. - -[](#mangaka)";False;False;;;;1610140409;;False;{};gil1ri7;False;t3_ktbp1n;False;False;t1_gil0h9k;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil1ri7/;1610180824;4;True;False;anime;t5_2qh22;;0;[]; -[];;;EatMePlsDaddy;;;[];;;;text;t2_15sof4;False;False;[];;I think Sleeping Princess in Demon Castle actually fits the bill perfectly here.;False;False;;;;1610140425;;False;{};gil1ss7;False;t3_ktaey8;False;True;t3_ktaey8;/r/anime/comments/ktaey8/can_you_guys_give_me_recommendations_for_me_and/gil1ss7/;1610180842;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MuchLolage;;;[];;;;text;t2_ac44g;False;False;[];;I was thinking of suggesting sleepy princess in the demon castle to my little sister, think it would be good for a young girl and is nice and short;False;False;;;;1610140431;;False;{};gil1t6i;False;t3_ktaey8;False;True;t3_ktaey8;/r/anime/comments/ktaey8/can_you_guys_give_me_recommendations_for_me_and/gil1t6i/;1610180848;1;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;"[](#mugiwait ""More Maki when?"")";False;False;;;;1610140483;;False;{};gil1xcd;False;t3_ktbp1n;False;False;t1_gil139w;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil1xcd/;1610180912;3;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;Is that a good show overall? Should I add it to my watch list?;False;False;;;;1610140489;;False;{};gil1xuu;True;t3_ktboqh;False;True;t1_gil1bdv;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil1xuu/;1610180920;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;Kaname from vampire knight. He was just so stupid I hate him so much!;False;False;;;;1610140510;;False;{};gil1zfj;False;t3_ktboqh;False;True;t3_ktboqh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil1zfj/;1610180943;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ComfortablyRotten;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Leuwtian;light;text;t2_78zrok5y;False;False;[];;"**Rewatcher** - -This episode... so good. - -Their first live is also the first bump on the road to becoming School Idols and saving the school, something I didn't expect the first time, considering how well it went until now. With an audience of barely nine students, it's not exactly a success, and it hurts after spending so much effort, but they're not letting that stop them! In fact, they have a goal now, to fill up the auditorium! - -**Questions of the day** - -1) Most speaking events make me nervous, but I can usually ignore it after a deep breath. Not enough to be able to sing and dance in front of a crowd, of course, but I can at least talk coherently. - -2) That would be devastating... making so much effort for that? Especially since, like Honoka, I'm on the lazier side? After learning to sing and dance in less than a month? So painful.";False;False;;;;1610140544;;False;{};gil225l;False;t3_ktbp1n;False;False;t3_ktbp1n;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil225l/;1610180985;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;You're welcome, hope you find some that you enjoy.;False;False;;;;1610140556;;False;{};gil230r;False;t3_ktavp6;False;True;t1_gil1jqq;/r/anime/comments/ktavp6/good_anime_recommendations_please/gil230r/;1610180997;1;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;[](#helmetbro );False;False;;;;1610140556;;False;{};gil232r;False;t3_ktbp1n;False;True;t1_gil1hcr;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil232r/;1610180998;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SeynaAyse;;;[];;;;text;t2_4ozfkqft;False;False;[];;The most annoying are some tsunderes (not all) who precisely hit the main character without reason and insult him every time to have an attitude. And they fell in love quickly while forgetting the wrongs they did.;False;False;;;;1610140565;;False;{};gil23t1;False;t3_ktboqh;False;False;t3_ktboqh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil23t1/;1610181010;5;True;False;anime;t5_2qh22;;0;[]; -[];;;dv_recorder;;;[];;;;text;t2_8pd0s8e7;False;False;[];;It's fine, I guess. It's a bit horny but nothing special. Apparently there are supposed to be some sad and depressing moments but I don't really see it.;False;False;;;;1610140593;;False;{};gil260x;False;t3_ktboqh;False;True;t1_gil1xuu;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil260x/;1610181044;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FrumpY__;;ANI a-1milquiz;[];;https://anilist.co/user/FrumpY/;dark;text;t2_n5qjp;False;False;[];;"> The shifting between 2D and CG is still jarring, especially when they have both on screen at the same time. - -oh god, in my many viewings of this scene I had never noticed that.";False;False;;;;1610140601;;False;{};gil26mt;True;t3_ktbp1n;False;False;t1_gil0ydg;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil26mt/;1610181054;5;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;Nice lurker at the bot left.;False;False;;;;1610140607;;False;{};gil275l;False;t3_ktbp1n;False;False;t1_gil139w;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil275l/;1610181062;6;True;False;anime;t5_2qh22;;0;[]; -[];;;H0V3R03;;;[];;;;text;t2_5ezf8x99;False;False;[];;Naruto?;False;False;;;;1610140656;;False;{};gil2b01;False;t3_ktc04w;False;True;t3_ktc04w;/r/anime/comments/ktc04w/doe_anyone_know_what_these_are_from/gil2b01/;1610181120;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dunnylunny;;;[];;;;text;t2_dh1cz;False;False;[];;These as well[https://i.imgur.com/H2zYU5N.jpg](https://i.imgur.com/H2zYU5N.jpg)[https://i.imgur.com/AmOgbEd.jpg](https://i.imgur.com/AmOgbEd.jpg);False;False;;;;1610140663;;False;{};gil2bhs;False;t3_ktc04w;False;True;t3_ktc04w;/r/anime/comments/ktc04w/doe_anyone_know_what_these_are_from/gil2bhs/;1610181128;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;Sakura from Naruto, I'd say?;False;False;;;;1610140669;;False;{};gil2bzb;False;t3_ktc04w;False;True;t3_ktc04w;/r/anime/comments/ktc04w/doe_anyone_know_what_these_are_from/gil2bzb/;1610181136;1;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;Fair! Although I’d rather hate a character than have no opinion at all;False;False;;;;1610140697;;False;{};gil2e9l;True;t3_ktboqh;False;True;t1_gil1zfj;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil2e9l/;1610181169;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;Yep, definitely Naruto.;False;False;;;;1610140701;;False;{};gil2eig;False;t3_ktc04w;False;True;t1_gil2bhs;/r/anime/comments/ktc04w/doe_anyone_know_what_these_are_from/gil2eig/;1610181173;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610140711;;False;{};gil2fdn;False;t3_ktbp1n;False;True;t3_ktbp1n;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil2fdn/;1610181186;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kiss-Shot_Hisoka;;;[];;;;text;t2_8zkyvfpm;False;False;[];;Couldn't Noir ask the sage how to ease/reduce the headache ? I mean the sage should be like omniscient?;False;False;;;;1610140730;;False;{};gil2gvk;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil2gvk/;1610181208;29;True;False;anime;t5_2qh22;;0;[]; -[];;;fakesowdy;;;[];;;;text;t2_5yj4qgj1;False;False;[];;It’s naruto as for where they bought them no clue;False;False;;;;1610140736;;False;{};gil2hdt;False;t3_ktc04w;False;True;t3_ktc04w;/r/anime/comments/ktc04w/doe_anyone_know_what_these_are_from/gil2hdt/;1610181216;1;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;"FrumpY hates Love Live! now. Rewatch over, people! - -[](#azusalaugh) - -I guess that means they did a good job of keep your attention on the foreground, then.";False;False;;;;1610140744;;False;{};gil2hza;False;t3_ktbp1n;False;False;t1_gil26mt;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil2hza/;1610181225;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Ok-Mud2423;;;[];;;;text;t2_71ibihvi;False;False;[];;Shinchan doraemon conan;False;False;;;;1610140773;;False;{};gil2k7m;False;t3_ktaey8;False;True;t3_ktaey8;/r/anime/comments/ktaey8/can_you_guys_give_me_recommendations_for_me_and/gil2k7m/;1610181258;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;Surprise of the season so far, and a welcome one;False;False;;;;1610140783;;False;{};gil2l1c;False;t3_kt9rcs;False;False;t1_gikvmzf;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil2l1c/;1610181270;8;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Taiga from Toradora. She's an abusive bully.;False;False;;;;1610140786;;False;{};gil2l8x;False;t3_ktboqh;False;False;t3_ktboqh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil2l8x/;1610181273;7;True;False;anime;t5_2qh22;;0;[]; -[];;;biancoviskk;;;[];;;;text;t2_9gqv52au;False;False;[];;oh ok, thank you for the right information;False;False;;;;1610140821;;False;{};gil2o0z;False;t3_kta14g;False;True;t1_giktksl;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gil2o0z/;1610181315;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RyaReisender;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RyaReisender;light;text;t2_lwvbi;False;False;[];;Magical Circle Guru-Guru;False;False;;;;1610140831;;False;{};gil2oqq;False;t3_ktaey8;False;True;t3_ktaey8;/r/anime/comments/ktaey8/can_you_guys_give_me_recommendations_for_me_and/gil2oqq/;1610181326;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;Nina Einstein is still the worst character ever even nearly fifteen years after Code Geass’s release date.;False;False;;;;1610140833;;False;{};gil2ou9;False;t3_ktboqh;False;False;t3_ktboqh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil2ou9/;1610181327;6;True;False;anime;t5_2qh22;;0;[]; -[];;;raichudoggy;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/raichudoggy;light;text;t2_93aur;False;False;[];;"One of the things that's surprised me most over these first 3 discussions is the CG. - -I feel like I'm the only one unbothered by the CG, and I didn't find the transitions between 2D and CG to be a noticeable difference at all (For both the OP and this performance.) - -I also have a feeling I'm the only one that escaped from Nozomi's sexual assault unbothered, too. Have I just become desensitized? - -[](#dontgetit ""Like obviously groping boobs from behind is bad but I'm still OK With it somehow and I don't know why"")";False;False;;;;1610140855;;False;{};gil2qje;False;t3_ktbp1n;False;False;t1_gil0ydg;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil2qje/;1610181352;8;True;False;anime;t5_2qh22;;0;[]; -[];;;fredthefishlord;;;[];;;;text;t2_ba5at3b;False;False;[];;it isn't an isekai at all. it's a power fantasy.;False;False;;;;1610140865;;False;{};gil2rc5;False;t3_kt9rcs;False;False;t1_gikzj98;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil2rc5/;1610181364;9;True;False;anime;t5_2qh22;;0;[]; -[];;;1jopii;;;[];;;;text;t2_6di5vmzx;False;False;[];;yes, watch to the most recent op ep then go to the manga chapter following that one;False;False;;;;1610140874;;False;{};gil2s0f;False;t3_ktc1oa;False;True;t3_ktc1oa;/r/anime/comments/ktc1oa/is_it_worth_it_to_read_the_one_piece_manga_after/gil2s0f/;1610181375;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dv_recorder;;;[];;;;text;t2_8pd0s8e7;False;False;[];;Thanks for reminding me.;False;False;;;;1610140878;;False;{};gil2sao;False;t3_ktboqh;False;True;t1_gil2l8x;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil2sao/;1610181378;0;True;False;anime;t5_2qh22;;0;[]; -[];;;deathnate4;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/deathnate4;light;text;t2_djj9g;False;False;[];;Super generic power fantasy, trope central. Dropping.;False;False;;;;1610140880;;False;{};gil2sf6;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil2sf6/;1610181381;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;Right! I these are particularly annoying because it hits close to home in real life;False;False;;;;1610140888;;False;{};gil2t2q;True;t3_ktboqh;False;True;t1_gil23t1;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil2t2q/;1610181391;1;True;False;anime;t5_2qh22;;0;[]; -[];;;throwawayonxmasday;;;[];;;;text;t2_4k8pz3kg;False;False;[];;The MC from Seraph of the End. He has the thiccest plot armor. His stupidity has caused a number of deaths and people seem okay with it because he did it for his “family”. The story treats him stupidly in the manga;False;False;;;;1610140893;;False;{};gil2ter;False;t3_ktboqh;False;True;t3_ktboqh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil2ter/;1610181396;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ParamountPotato;;;[];;;;text;t2_eua9zhw;False;False;[];;Dude, DON'T watch Akame ga Kill! :D;False;False;;;;1610140902;;False;{};gil2u50;False;t3_ktc1q9;False;True;t3_ktc1q9;/r/anime/comments/ktc1q9/darkness_from_konosuba_has_made_me_restart_my/gil2u50/;1610181408;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;deathnate4;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/deathnate4;light;text;t2_djj9g;False;False;[];;How dare you insult Anos like that.;False;False;;;;1610140913;;False;{};gil2uyg;False;t3_kt9rcs;False;False;t1_giku3e7;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil2uyg/;1610181419;43;True;False;anime;t5_2qh22;;0;[]; -[];;;Iamamathlover;;;[];;;;text;t2_7s2w3jug;False;False;[];;Yes to what? Read manga or read manga at where the show is at now?;False;False;;;;1610140913;;False;{};gil2uza;True;t3_ktc1oa;False;True;t1_gil2s0f;/r/anime/comments/ktc1oa/is_it_worth_it_to_read_the_one_piece_manga_after/gil2uza/;1610181420;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;the-legend42;;;[];;;;text;t2_35ci0hxe;False;False;[];;Tower of God was Anime of the Year for me.;False;False;;;;1610140935;;False;{};gil2ws6;False;t3_kta14g;False;True;t3_kta14g;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gil2ws6/;1610181447;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GravvyMilkInflate;;;[];;;;text;t2_36uodilq;False;False;[];;Why;False;False;;;;1610140943;;False;{};gil2xcy;True;t3_ktc1q9;False;True;t1_gil2u50;/r/anime/comments/ktc1q9/darkness_from_konosuba_has_made_me_restart_my/gil2xcy/;1610181456;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;"> I'll be honest, I thought the sign she was holding was a shitty typeset, but apparently it's actually in the show. Please say it was supposed to look bad. - -Fansubbers have more pride than that (usually).";False;False;;;;1610140968;;False;{};gil2z93;False;t3_ktbp1n;False;True;t1_gil0h9k;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil2z93/;1610181483;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Iamamathlover;;;[];;;;text;t2_7s2w3jug;False;False;[];;Okay, thanks.;False;False;;;;1610140971;;False;{};gil2ziy;True;t3_ktc1oa;False;True;t1_gil2s0f;/r/anime/comments/ktc1oa/is_it_worth_it_to_read_the_one_piece_manga_after/gil2ziy/;1610181487;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;True;[];;">Dancing in a longer skirt would be dangerous! - -An extra 4 inches would be perfectly safe. - ->All in all, it looks like the entire freshman class attended! - -[](#breakingnews)[bad ghetti](#yanderebot)";False;False;;;;1610140972;;False;{};gil2zm7;False;t3_ktbp1n;False;False;t1_gil0ydg;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil2zm7/;1610181489;2;True;False;anime;t5_2qh22;;0;[]; -[];;;13rahma;;;[];;;;text;t2_1wqu8d41;False;True;[];;Well you're a year behind. So either start reading the manga where you left off, or restart the manga over. The manga is really good.;False;False;;;;1610140976;;False;{};gil2zvb;False;t3_ktc1oa;False;True;t1_gil2uza;/r/anime/comments/ktc1oa/is_it_worth_it_to_read_the_one_piece_manga_after/gil2zvb/;1610181493;1;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;Well, Darkness is only 18, so not a milf technically.;False;False;;;;1610140993;;False;{};gil318k;False;t3_ktc1q9;False;False;t3_ktc1q9;/r/anime/comments/ktc1q9/darkness_from_konosuba_has_made_me_restart_my/gil318k/;1610181514;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Ishuzoku-Connoisseur;;;[];;;;text;t2_65qsew7y;False;False;[];;Not yet anyway;False;False;;;;1610141027;;False;{};gil33s3;False;t3_ktc1q9;False;True;t1_gil318k;/r/anime/comments/ktc1q9/darkness_from_konosuba_has_made_me_restart_my/gil33s3/;1610181553;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;True;[];;"> One instance of ""I love you"" does not a ship make, - -/u/theangryeditor would beg to differ.";False;False;;;;1610141028;;False;{};gil33uk;False;t3_ktbp1n;False;False;t1_gil139w;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil33uk/;1610181554;4;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Meemeli;;;[];;;;text;t2_2o1rogl;False;False;[];;">I am a little worried for my own sanity. - -Considering your Reddit history, I think you should be more than a little worried. Unless you're trolling.";False;False;;;;1610141044;;False;{};gil353v;False;t3_ktc1q9;False;False;t3_ktc1q9;/r/anime/comments/ktc1q9/darkness_from_konosuba_has_made_me_restart_my/gil353v/;1610181573;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;I know it’s not an isekai. I’m just saying the structure is almost exactly the same as an isekai just without the reincarnation. The special unique skill, gain of rare skills, can get stronger in a way no normal person can, etc. Like power fantasies are pretty much just isekais as isekais are meant to be self insert power fantasies most of the time;False;False;;;;1610141048;;False;{};gil35hc;False;t3_kt9rcs;False;True;t1_gil2rc5;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil35hc/;1610181579;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;punkgibson11;;;[];;;;text;t2_6ke7rwal;False;False;[];;Koichi for me as well, he is my least favorite JoJo character. Sanji is my favourite one piece character but I can understand why you don't like his simp moments.;False;False;;;;1610141058;;1610141622.0;{};gil3685;False;t3_ktboqh;False;True;t3_ktboqh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil3685/;1610181591;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RimuZ;;MAL;[];;http://myanimelist.net/animelist/LtCrabcake;dark;text;t2_8df66;False;False;[];;Mineta from Hero Academia. I hate every second he's on screen.;False;False;;;;1610141061;;False;{};gil36fc;False;t3_ktboqh;False;False;t3_ktboqh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil36fc/;1610181594;22;True;False;anime;t5_2qh22;;0;[]; -[];;;ParamountPotato;;;[];;;;text;t2_eua9zhw;False;False;[];;Because of Esdeath;False;False;;;;1610141074;;False;{};gil37go;False;t3_ktc1q9;False;True;t1_gil2xcy;/r/anime/comments/ktc1q9/darkness_from_konosuba_has_made_me_restart_my/gil37go/;1610181610;1;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;"Smh. Not even anime can let us escape from -bullies lol";False;False;;;;1610141086;;False;{};gil38cz;True;t3_ktboqh;False;True;t1_gil2l8x;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil38cz/;1610181624;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610141097;;False;{};gil395c;False;t3_ktc1oa;False;True;t3_ktc1oa;/r/anime/comments/ktc1oa/is_it_worth_it_to_read_the_one_piece_manga_after/gil395c/;1610181636;1;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;Touché.;False;False;;;;1610141102;;False;{};gil39gd;False;t3_ktc1q9;False;True;t1_gil33s3;/r/anime/comments/ktc1q9/darkness_from_konosuba_has_made_me_restart_my/gil39gd/;1610181641;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lewis_Parker;;;[];;;;text;t2_ydwru96;False;True;[];;Im sold, this one is getting watched 100%;False;False;;;;1610141103;;False;{};gil39kx;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil39kx/;1610181643;8;True;False;anime;t5_2qh22;;0;[]; -[];;;BiggerG7;;;[];;;;text;t2_3sbx0men;False;False;[];;That’s the joke. Can’t remember the last time we had a fantasy harem show where the MC was OP and it wasn’t an Isekai.;False;False;;;;1610141127;;False;{};gil3bb3;False;t3_kt9rcs;False;False;t1_gikyv6k;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil3bb3/;1610181668;7;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;Would recommend watching Code Geass?;False;False;;;;1610141170;;False;{};gil3ehc;True;t3_ktboqh;False;False;t1_gil2ou9;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil3ehc/;1610181715;3;True;False;anime;t5_2qh22;;0;[]; -[];;;theangryeditor;;;[];;;;text;t2_e370y;False;False;[];;"I don't even need one instance of ""I love you"" for a ship.";False;False;;;;1610141186;;False;{};gil3foi;False;t3_ktbp1n;False;False;t1_gil33uk;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil3foi/;1610181732;4;True;False;anime;t5_2qh22;;0;[]; -[];;;dxing2;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/dxing;light;text;t2_sbxd9;False;False;[];;That scream by Maki still haunts me to this day;False;False;;;;1610141199;;False;{};gil3goe;False;t3_ktbp1n;False;True;t3_ktbp1n;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil3goe/;1610181748;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;" -Sorry bulletprove-1, you've activated my trap card! - -Memes are not allowed on /r/anime and we have implemented this flair to catch people who do in order to make removals quicker for us. Sorry for this inconvenience. - -[**Memes are not allowed on /r/anime, even with the meme flair!**](https://www.reddit.com/r/anime/wiki/rules#wiki_no_memes.2C_image_macros...) You might want to go to /r/animemes, /r/animememes, /r/goodanimemes or /r/anime_irl instead. - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610141219;moderator;False;{};gil3i9u;False;t3_ktc7fs;False;True;t3_ktc7fs;/r/anime/comments/ktc7fs/iykyk/gil3i9u/;1610181771;1;False;False;anime;t5_2qh22;;0;[]; -[];;;GravvyMilkInflate;;;[];;;;text;t2_36uodilq;False;False;[];;Omg I have to research her more now. Thanks;False;False;;;;1610141242;;False;{};gil3k35;True;t3_ktc1q9;False;True;t1_gil37go;/r/anime/comments/ktc1q9/darkness_from_konosuba_has_made_me_restart_my/gil3k35/;1610181799;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;True;[];;I can't stand Sanji for those moments. After the time skip i was so excited to see him grow, but he got even worse around girls. He's easily my least favourite of the strawhats;False;False;;;;1610141279;;False;{};gil3n2g;False;t3_ktboqh;False;False;t1_gil3685;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil3n2g/;1610181843;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GravvyMilkInflate;;;[];;;;text;t2_36uodilq;False;False;[];;What do you mean “not yet” she’s 18 or older;False;True;;comment score below threshold;;1610141282;;False;{};gil3n9k;True;t3_ktc1q9;False;True;t1_gil33s3;/r/anime/comments/ktc1q9/darkness_from_konosuba_has_made_me_restart_my/gil3n9k/;1610181846;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;I FEEL THAT! Repeatedly making stupid decisions is so infuriating to watch lol;False;False;;;;1610141287;;False;{};gil3noy;True;t3_ktboqh;False;True;t1_gil2ter;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil3noy/;1610181853;2;True;False;anime;t5_2qh22;;0;[]; -[];;;theangryeditor;;;[];;;;text;t2_e370y;False;False;[];;"Nozomi's washi washi has never bothered me too much either for some reason. - -[](#hardthink)";False;False;;;;1610141303;;False;{};gil3oxo;False;t3_ktbp1n;False;True;t1_gil2qje;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil3oxo/;1610181872;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ComfortablyRotten;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Leuwtian;light;text;t2_78zrok5y;False;False;[];;" ->both on screen at the same time. - -Never realized that either... not that I care anyway, since I'm mostly focusing on whether or not the song is boppable. Which it was.";False;False;;;;1610141325;;False;{};gil3qoq;False;t3_ktbp1n;False;False;t1_gil0ydg;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil3qoq/;1610181898;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Raik0u1;;;[];;;;text;t2_9d6iksq2;False;False;[];;dont restart the whole manga. big waste of time. just read from where you left off.;False;False;;;;1610141380;;False;{};gil3uy0;False;t3_ktc1oa;False;True;t3_ktc1oa;/r/anime/comments/ktc1oa/is_it_worth_it_to_read_the_one_piece_manga_after/gil3uy0/;1610181963;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Iamamathlover;;;[];;;;text;t2_7s2w3jug;False;False;[];;Will do;False;False;;;;1610141406;;False;{};gil3wz8;True;t3_ktc1oa;False;True;t1_gil3uy0;/r/anime/comments/ktc1oa/is_it_worth_it_to_read_the_one_piece_manga_after/gil3wz8/;1610181994;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;True;[];;2013's still early enough that that TS wouldn't be surprising. Though I should have noticed that the perspective wouldn't be that good with a font that bad. A good TS would certainly not be willing to release something that looks like that.;False;False;;;;1610141439;;False;{};gil3zjq;False;t3_ktbp1n;False;True;t1_gil2z93;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil3zjq/;1610182034;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FrumpY__;;ANI a-1milquiz;[];;https://anilist.co/user/FrumpY/;dark;text;t2_n5qjp;False;False;[];;"> FrumpY hates Love Live! - -You know, I don't think it is physically possible for that to happen.";False;False;;;;1610141449;;False;{};gil40a2;True;t3_ktbp1n;False;False;t1_gil2hza;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil40a2/;1610182045;6;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;Koichi is so indecisive, and is probably slightly retarded lol;False;False;;;;1610141469;;False;{};gil41x5;True;t3_ktboqh;False;True;t1_gil3685;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil41x5/;1610182070;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hintofinsanity;;;[];;;;text;t2_b5isf;False;False;[];;">Little Witch Academia -> ->K-On -> ->Flying Witch -> ->Avatar the Last Airbender - -Ftfy ;)";False;False;;;;1610141471;;False;{};gil423m;False;t3_ktaey8;False;False;t1_gikstir;/r/anime/comments/ktaey8/can_you_guys_give_me_recommendations_for_me_and/gil423m/;1610182073;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Hattakiri;;;[];;;;text;t2_wuy07;False;False;[];;"Again: old.reddit.com is the best way to make this subreddit's mandatory spoiler tag readable. In the new Reddit design you gotta drag the mouse arrow on the spoiler area to make it appear in a box; but somehow sometimes it's not gonna show the whole thing; whereas it's the uttermost pain in the arse in the mobile version XD - -Cause if you click on it, only a ""this link don't exist"" kinda thing will show up... - -[Here's also the Love Live Fandom Wikia but beware of spoilers](https://love-live.fandom.com/wiki/Main_Page) - -Ok into the matter of splatter lol: - -Ep3 is called ""First Live"" and this is indeed finally taking place. And the dynamics between the characters is getting more and more intense and imo surprising: - -* Honk keeps on pushing her friends, especially a shy Umi who's afraid of crowds and also of short skirts. I consider Honoka [an intriguing variation of the Lancer trope](https://tvtropes.org/pmwiki/pmwiki.php/Main/TheLancer) – but if you read the [article...](/s ""...how this is supposed to get along with the Lancer being capable of becoming the protag's deputy (!) only temporalily (!) - well wait and see..."") -* Kotori aka Birb (fan name) convinced Umi in ep1. Background tune: Osanaki hi no Yuuhi, one of the most memorable and iconic music pieces of all of LL imo. Birb in general seems to be ""the persuader"". ""Umi-chan: ONEGAI!!!"" and Umi reacted with ""You ALWAYS do this to me"" XD However keep this in mind... -* First performance onstage – no one shows up. The helpers say it's all they could possibly do. Honk quickly about to implode inside, something her friends seem to know. And then... -* ...Kayo-chin shows up not a second too early. Another most intriguing take, this time on the so called [Deus Ex Machina](https://tvtropes.org/pmwiki/pmwiki.php/Main/DeusExMachina) imo -* Rin seems to always drag Kayo along with her... -* Eli visiting the technicians... -* Maki there -* A girl from before UTX, Arise's school there, hiding... -* Nozomi there - -The Love Live train was gaining velocity back in 2013. The frachise had been around since 2010 already, Emitsun's dad helped them out by bying 10 copies or so of Borarara (you can read this on Love Live Wikia), yet the anime was launched only [in 2013....](/s ""...would it become a success? Would a second season be worth the effort and risk? Similar to the original Star Wars which was called just ""Star Wars"". Only after a few months in the cinemas ""Ep4 – A New Hope"" was added. It seems to me the exact same thing happened to Love Live School Idol Project's very first anime season. And there's another ""Starwarsian"" aspect imo: The ""Defective Protag"": Anakin Skywalker turns into Darth Vader at the end of Ep3 and thus becomes incapable of fulfilling the protag position; yet at the same time he's too important to be fully ""degraded"". So Luke becomes the ""Decoy Protagonist"". Feel free to look this up on TV Tropes. Anakin will take back his protag and anti-hero position in the very moment he's deciding to toss the Emperor into the trash can, literally. Anakin's protag position was later confirmed in the eps 1-3, before Disney took over. So – am I really comparing Love Live to Star Wars in terms of unique story concepts? That's a rhetorical question XD"")";False;False;;;;1610141478;;1610147302.0;{};gil42l9;False;t3_ktbp1n;False;False;t3_ktbp1n;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil42l9/;1610182081;4;True;False;anime;t5_2qh22;;0;[]; -[];;;JackDockz;;;[];;;;text;t2_1wmsbygp;False;False;[];;He would've been kinda ok if they did not show his character quirk every 5 minutes.;False;False;;;;1610141521;;False;{};gil45zc;False;t3_ktboqh;False;True;t1_gil1l6i;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil45zc/;1610182132;0;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;When he’s fighting, he’s so cool. And I like the whole chef theme. But damn after the time skip he almost got everyone killed lol;False;False;;;;1610141527;;False;{};gil46hr;True;t3_ktboqh;False;True;t1_gil3n2g;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil46hr/;1610182139;2;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;18 or older isn't what defines a milf, it tends to refer towards older, middle age, women, specifically mothers.;False;False;;;;1610141534;;False;{};gil472s;False;t3_ktc1q9;False;False;t1_gil3n9k;/r/anime/comments/ktc1q9/darkness_from_konosuba_has_made_me_restart_my/gil472s/;1610182146;7;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;"**First-time watcher** - -First part feels so plain-to-derivative I'm practically getting déja vu. I swear this exact plot happened in K-On somewhere, and the whole ""tiny miniskirts"" part (as an FMA fan I did have to laugh a little there) is also mirrored in the icky ""forced cosplay"" bits of particularly the K-On first season (even both most notably applied to the Mio), and of course is there to appeal to the ""horny humiliation fetishist"" crowd. Most blatantly the forced pants removal scene, I was not surprised yet still disappointed the show went there. On the other hand, worrying about short skirts but being fine with those very not-knee-length uniforms will never not be silly - are we to assume that the way they are depicted in the anime is merely artistic license? - -Skipping right over the actual effort involved in getting to this point (besides advertisement I guess) really blunts the impact of everyone reaffirming they've worked so hard. And here I was thinking this series would actually take effort seriously. I do appreciate the brief shot of the girls actually exhausted after their performance, but this is really rushing it, with little downtime to actually connect with the characters too. To make another K-ON comparison, that show only had its first concert in the sixth episode, a more successful one but besides that the dynamic was similar. - -Hmm, maybe Rin is the Ritsu? Of course has her very own Mio-chew-toy and is not part of the main group (yet?) - -Overall, I am still underwhelmed, and if this series ever aims to grow beyond ""off-brand K-On"", it had better start quickly. Not sure how longer I'd want to put in the effort to watch and comment even if it did, though, because I'm not a huge fan of the original anyway. Well OK, I guess not immediately finding success is something new, but I'd be hard-pressed to call it a big deal. - -Q1 - rarely has come up but I've found summoning as much narcissism as I can manage works well - -Q2 - obviously you can't expect to land a huge success right away, but it would certainly weaken my resolve.";False;False;;;;1610141572;;1610160639.0;{};gil49wz;False;t3_ktbp1n;False;True;t3_ktbp1n;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil49wz/;1610182190;2;True;False;anime;t5_2qh22;;0;[]; -[];;;punkgibson11;;;[];;;;text;t2_6ke7rwal;False;False;[];;"Yeah fishman island was the worst for him. He has gotten a bit better but it still is annoying. Though gags aside he is a well fleshed out character. I can relate to him the most and I love his interactions with Zoro. -On a side note who's your favourite strawhat.";False;False;;;;1610141597;;False;{};gil4bun;False;t3_ktboqh;False;False;t1_gil3n2g;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil4bun/;1610182219;2;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;True;[];;The main character from Deadman Wonderland. Greg Ayres does best in a supporting character role. Hearing his voice front and center is awful. Plus the character is terrible. Man what an awful show...;False;False;;;;1610141603;;False;{};gil4cbs;False;t3_ktboqh;False;True;t3_ktboqh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil4cbs/;1610182226;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZaphodBeebblebrox;;;[];;;;text;t2_12o02o;False;True;[];;">Have I just become desensitized? - -The power of watching dozens of mediocre seasonals each season! -[](#mugistronk)";False;False;;;;1610141606;;False;{};gil4ciw;False;t3_ktbp1n;False;False;t1_gil2qje;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil4ciw/;1610182229;11;True;False;anime;t5_2qh22;;0;[]; -[];;;GravvyMilkInflate;;;[];;;;text;t2_36uodilq;False;False;[];;Age doesn’t matter , what matters is if she can DOMINATE, if yes she’s a milf;False;True;;comment score below threshold;;1610141612;;False;{};gil4czv;True;t3_ktc1q9;False;True;t1_gil472s;/r/anime/comments/ktc1q9/darkness_from_konosuba_has_made_me_restart_my/gil4czv/;1610182237;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;djkoz78;;;[];;;;text;t2_dm17y;False;False;[];;Ussop;False;False;;;;1610141616;;False;{};gil4day;False;t3_ktboqh;False;True;t3_ktboqh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil4day/;1610182242;3;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;I can see why people hate him. But I kinda love him lol. He’s so disgusting, pervy, cowardly and selfish, but in the most relatable way.;False;False;;;;1610141625;;False;{};gil4e1g;True;t3_ktboqh;False;False;t1_gil36fc;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil4e1g/;1610182252;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610141652;moderator;False;{};gil4g2f;False;t3_ktccnx;False;True;t3_ktccnx;/r/anime/comments/ktccnx/what_is_green_guy_doing/gil4g2f/;1610182283;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Uyq62048;;;[];;;;text;t2_3kvtpc3n;False;False;[];;Jesus fucking christ, this script.;False;False;;;;1610141669;;False;{};gil4hbx;False;t3_ktafwf;False;False;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gil4hbx/;1610182301;9;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your submission has been removed. - -- This looks like it's - a single image. - This is a form of restricted content that isn't allowed as a full post on the sub. You might consider posting about this sort of thing in the [weekly Casual Discussion Fridays megathread](https://www.reddit.com/r/anime/search?q=title%3A%22Casual+Discussion+Fridays%22+subreddit%3Aanime+author%3AAnimeMod&restrict_sr=on&sort=new&t=week) if it applies. See [our rules page](https://www.reddit.com/r/anime/wiki/rules#wiki_restricted_content) for a full list of restricted content categories. - - - -- Direction toward specific sources of pirated content of any type is not allowed. This includes links to unofficial scanlations, streams, uploads, and download sources of any copyrighted content. It also includes direction towards specific sites offering this type of content, and watermarks mentioning such sites in uploaded images/videos. - - Discussion of piracy in general is allowed, **but naming, linking to, or hinting towards specific sources is not. Offering to send links via PM is also not allowed.** For more details, see our [full rules on illegal content](https://www.reddit.com/r/anime/wiki/rules#wiki_do_not_link_to_illegal_content). - - - -- **Piracy watermark** - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610141680;moderator;False;{};gil4i7r;False;t3_ktccnx;False;True;t3_ktccnx;/r/anime/comments/ktccnx/what_is_green_guy_doing/gil4i7r/;1610182313;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BasicallyBasix;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/HeyImBasix;light;text;t2_u0q3d1w;False;False;[];;"A List of my Favorites (in no particular order): - -Assassination Classroom - -My Love Story - -Ascendance of a Bookworm - -Rising of the Shield Hero - -Erased - -Astra Lost In Space - -Dr. Stone - -Death Note - -Attack on Titan - -Flip Flappers - -GATE - -War on Geminar - -Restaurant From Another World - -Demon Slayer - -Prison School - -ReLIFE - -Somali and the Forest Spirit - -That Time I Got Reincarnated as a Slime - -Violet Evergarden - -Death Parade - -The Promised Neverland - -My Teen Romantic Comedy SNAFU - -I Want To Eat Your Pancreas - -The Saga of Tanya the Evil - -Drifters - -Modoka Magica - -Teasing Master Takagi-san - -Welcome to the N.H.K. - -Parasyte - -A Silent Voice - -Darling in the FranXX - -Run with the Wind - -Chihayafuru - -Hinamatsuri - -Domestic Girlfriend - -Welcome to Demon School! Iruma-kun - -Clannad - -Death Parade - -ReZero - -Maid Sama - -Naruto - -Golden Kamuy - -Your Name - -The Ancient Magus’ Bride - -Spirited Away - -My Neighbor Totoro - -Weathering With You - -Hunter x Hunter - -Tsuki Ga Kirei - -Everything here might not be exactly what you’re looking for, but they all have my stamp of approval as I’ve rated each of them at least an 8/10! So, hopefully you’ll enjoy some of them :) - -These all have dubbed versions too if you prefer that!";False;False;;;;1610141724;;False;{};gil4li3;False;t3_ktavp6;False;True;t3_ktavp6;/r/anime/comments/ktavp6/good_anime_recommendations_please/gil4li3/;1610182362;1;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"[I'm afraid domination or submission has nothing to do with it either.](https://www.urbandictionary.com/define.php?term=milf&utm_source=search-action)";False;False;;;;1610141740;;False;{};gil4mqv;False;t3_ktc1q9;False;True;t1_gil4czv;/r/anime/comments/ktc1q9/darkness_from_konosuba_has_made_me_restart_my/gil4mqv/;1610182380;6;True;False;anime;t5_2qh22;;0;[]; -[];;;PvtHudson093;;;[];;;;text;t2_hbmmd;False;False;[];;If anything Darkness is more of a Onee-san.;False;False;;;;1610141745;;False;{};gil4n5y;False;t3_ktc1q9;False;True;t3_ktc1q9;/r/anime/comments/ktc1q9/darkness_from_konosuba_has_made_me_restart_my/gil4n5y/;1610182386;1;True;False;anime;t5_2qh22;;0;[]; -[];;;throwawayonxmasday;;;[];;;;text;t2_4k8pz3kg;False;False;[];;Dazai from Bungou Stray Dogs. Although things would always work out in the end. It would piss me off if someone kept disappearing without telling me what was going on or the expected outcome;False;False;;;;1610141768;;False;{};gil4oxf;False;t3_ktcbdf;False;True;t3_ktcbdf;/r/anime/comments/ktcbdf/what_is_a_favorite_anime_character_of_yours_that/gil4oxf/;1610182414;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610141782;moderator;False;{};gil4pze;False;t3_ktce9t;False;True;t3_ktce9t;/r/anime/comments/ktce9t/what_is_this_one_from_i_used_all_the_tools_i/gil4pze/;1610182429;1;False;False;anime;t5_2qh22;;0;[]; -[];;;throwawayonxmasday;;;[];;;;text;t2_4k8pz3kg;False;False;[];;Honestly that series gets under my skin so bad lol;False;False;;;;1610141801;;False;{};gil4rgr;False;t3_ktboqh;False;True;t1_gil3noy;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil4rgr/;1610182451;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610141826;;False;{};gil4tc7;False;t3_ktcbdf;False;True;t3_ktcbdf;/r/anime/comments/ktcbdf/what_is_a_favorite_anime_character_of_yours_that/gil4tc7/;1610182479;0;True;False;anime;t5_2qh22;;0;[]; -[];;;berttmanD2;;;[];;;;text;t2_42jd0epz;False;False;[];;I just got one question!🥸 which one should I watch first?!?😂😂😂🤮;False;False;;;;1610141830;;False;{};gil4tmm;True;t3_ktavp6;False;True;t1_gil4li3;/r/anime/comments/ktavp6/good_anime_recommendations_please/gil4tmm/;1610182483;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;True;[];;Guilty crown is nice, in the background. The music is awesome and it's nice to look up every once in a while and see the character designs (Inori has the prettiest design I have ever seen);False;False;;;;1610141833;;False;{};gil4tv2;False;t3_kta14g;False;True;t1_gikt965;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gil4tv2/;1610182486;1;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;Hahahahahaha bruh 😂I can’t think of so many supporting characters that would fill the main character role better!!!!!;False;False;;;;1610141842;;False;{};gil4ukj;True;t3_ktboqh;False;True;t1_gil4cbs;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil4ukj/;1610182496;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"They didn't waste time [establishing Emma's personality!](https://imgur.com/6uuWJ4r) - -Not only [they kissed](https://imgur.com/OCNuWyB) 6 minutes in, but they did it 3-4 times? Impressive! - -[*Dear diary: Jackpot!*](https://imgur.com/69zBLBB) - -[Ah, I see it's gonna be ""that kind of show""!](https://imgur.com/1as4geS) Well, all seasons need one, and I like ecchi trash, so let's hope they keep it interesting! - -First (and probably last) time [I see this line in anime - or anywhere!](https://imgur.com/F8f1poG) - -[Lenore isn't up to a good start](https://imgur.com/V2ilUmf)... She better drastically improve if she wants a spot in the best girl competition; So far she's in my 'worst girl' competition. The ending might hint at her paying for their admission fee, which would be nice, but it doesn't excuse her shitty personality. - -Plus, Emma's so much fun, it'll be hard for other girls to compete! - -[That's why you needed Emma with you](https://imgur.com/3dnTEmK), dummy! Could've increased his LP levels by a lot before going there. And considering how Emma is with Noir, I'm sure she would've been happy to help! *""Are you sure 1 million points is enough? We could do more stuff!""* - -[This should be illegal](https://imgur.com/zcjan9z). I know he was trying to help her, but come on, [that line](https://imgur.com/SL2hgPe) is code for *""GIMME A MASSAGE!""* - -If Noir doesn't realize Emma's [in](https://imgur.com/NjygJN5) [love](https://imgur.com/LfhwIWv) with him, he's denser than anime romance MC I've ever seen. - -[Brocon sis?](https://imgur.com/xcfjKdu) And [he's kinda encouraging it too](https://imgur.com/jyJcK19)? Will he ask her for 'favors' as well to increase his LP? I wonder how many points he gets for incest. - -[Emma and Noir](https://imgur.com/a4FdseW) are so cute together, I kinda want them to be the main/only pairing... it's a harem show so more girls are expected to meddle in, but usually ecchi harems shows don't make me feel *that* strongly about one pairing/one girl, that I want them to be exclusive... This one does though. Like, I'll feel sad for Emma if the other girls gets Noir's attention. - -Well, perhaps some of the others will be good as well! - -Anyway, this was fun! Better than I expected; Cute, fun, sexy, everything you can expect from a ecchi harem. Will definitely watch more, and hope they keep things fun!";False;False;;;;1610141850;;1610142354.0;{};gil4v6a;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil4v6a/;1610182506;11;True;False;anime;t5_2qh22;;0;[]; -[];;;GMorelli;;;[];;;;text;t2_13n5gj;False;False;[];;Puparia;False;False;;;;1610141867;;False;{};gil4wiy;False;t3_ktce9t;False;True;t3_ktce9t;/r/anime/comments/ktce9t/what_is_this_one_from_i_used_all_the_tools_i/gil4wiy/;1610182525;2;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;"Sniper king > usopp";False;False;;;;1610141887;;False;{};gil4y3z;True;t3_ktboqh;False;True;t1_gil4day;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil4y3z/;1610182551;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;Toga from Boku no Hero. I love her character to death (have the tattoo to prove it), but she's not someone I would want to hang around with in reality.;False;False;;;;1610141902;;False;{};gil4z9v;False;t3_ktcbdf;False;True;t3_ktcbdf;/r/anime/comments/ktcbdf/what_is_a_favorite_anime_character_of_yours_that/gil4z9v/;1610182569;1;True;False;anime;t5_2qh22;;0;[]; -[];;;echykr4;;;[];;;;text;t2_k4xht;False;False;[];;"Ecchi fantasy show where the male lead doesn't even hesitate in kissing or hugging girls when he needs to? I'm sold. - -Emma Best Girl so far, though she's burdened by the Childhood Friend Curse. But it looks like she's the main cover girl of the series, so she's got a shot at winning the ship wars. - -Olivia is too THICC to be stuck in those chains for eternity. Sooner or later, Noir will have to stock up on enough LP to develop OP skills to free her.";False;False;;;;1610141903;;False;{};gil4zdj;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil4zdj/;1610182570;36;True;False;anime;t5_2qh22;;0;[]; -[];;;BasicallyBasix;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/HeyImBasix;light;text;t2_u0q3d1w;False;False;[];;Since you’re new to anime, I always suggest Death Note as a top tier starter anime. Most people enjoy it, and it’s one of the most popular anime ever made.;False;False;;;;1610141919;;False;{};gil50no;False;t3_ktavp6;False;True;t1_gil4tmm;/r/anime/comments/ktavp6/good_anime_recommendations_please/gil50no/;1610182588;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dv_recorder;;;[];;;;text;t2_8pd0s8e7;False;False;[];;Cool? I guess?;False;False;;;;1610141940;;False;{};gil529c;False;t3_ktcau7;False;True;t3_ktcau7;/r/anime/comments/ktcau7/gintama_it_reminds_me_of_a_certain_mecha_anime/gil529c/;1610182613;1;True;False;anime;t5_2qh22;;0;[]; -[];;;echykr4;;;[];;;;text;t2_k4xht;False;False;[];;">This is an isekai without the reincarnation plot element. - -We call that the ""fantasy"" genre here.";False;False;;;;1610141952;;False;{};gil5376;False;t3_kt9rcs;False;False;t1_gikzj98;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil5376/;1610182628;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;Agreed. I'm not a fan of the tsundere archetype in general, and the very few that I actually enjoy (like Misaka and Shana) are characters that I like *in spite* of their tsundere traits and not because of them.;False;False;;;;1610141978;;False;{};gil558k;False;t3_ktboqh;False;True;t1_gil23t1;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil558k/;1610182659;2;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;Tried everything except a Google search, it comes right up. Puparia.;False;False;;;;1610141983;;False;{};gil55ky;False;t3_ktce9t;False;True;t3_ktce9t;/r/anime/comments/ktce9t/what_is_this_one_from_i_used_all_the_tools_i/gil55ky/;1610182665;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dv_recorder;;;[];;;;text;t2_8pd0s8e7;False;False;[];;Derederes. I don't have the energy to put up with them.;False;False;;;;1610142008;;False;{};gil57ic;False;t3_ktcbdf;False;True;t3_ktcbdf;/r/anime/comments/ktcbdf/what_is_a_favorite_anime_character_of_yours_that/gil57ic/;1610182694;0;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;True;[];;Probably most of them. They're so standoffish. The only reason i like them is I know their depth of character. But Kakashi, Levi, Lelouch? They probably wouldn't open up very easily.;False;False;;;;1610142028;;False;{};gil591c;False;t3_ktcbdf;False;True;t3_ktcbdf;/r/anime/comments/ktcbdf/what_is_a_favorite_anime_character_of_yours_that/gil591c/;1610182717;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;I know what fantasy anime are. I’m making a comment on how this is structured like most generic Isekai.;False;False;;;;1610142074;;False;{};gil5cnm;False;t3_kt9rcs;False;True;t1_gil5376;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil5cnm/;1610182771;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;echykr4;;;[];;;;text;t2_k4xht;False;False;[];;What Hayasaka? What are you talking about?;False;False;;;;1610142113;;False;{};gil5fof;False;t3_kt9rcs;False;False;t1_giku8nj;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil5fof/;1610182816;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"> the sheer amount of ecchi - -Personally I thought it was fine, and a fun show, but if you don't like the ecchi, don't think this show's gonna get any better for you; Fantasy/Harem/Ecchi tags usually means a huge focus on the ecchi. The other episodes will probably have even more.";False;False;;;;1610142113;;False;{};gil5fp2;False;t3_kt9rcs;False;False;t1_giku8nj;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil5fp2/;1610182816;10;True;False;anime;t5_2qh22;;0;[]; -[];;;SYZekrom;;;[];;;;text;t2_i5y6z;False;False;[];;"**First Timer** - -[Omg this entire time she was a little gremlin](https://cdn.discordapp.com/attachments/621713361390010378/797207486196875325/unknown.png) - -[So they're not ready at all are they](https://cdn.discordapp.com/attachments/621713361390010378/797210838590291999/unknown.png) - -[What's with this anime and these... over-the-ass shots](https://cdn.discordapp.com/attachments/621713361390010378/797211059475578910/unknown.png) - -[Well can't wait to see her crash on stage](https://cdn.discordapp.com/attachments/621713361390010378/797211499495292968/unknown.png) - -No way their first show goes well, we gotta disappoint people first - -[What a mood, girl](https://cdn.discordapp.com/attachments/621713361390010378/797211801997017108/unknown.png) - -[Can this girl stop making amazing faces](https://cdn.discordapp.com/attachments/621713361390010378/797212428411600956/unknown.png) - -[Short skirts are 100% required](https://cdn.discordapp.com/attachments/621713361390010378/797212865277722634/unknown.png) - -Why does this bgm before their show lowkey sound like some fantasy marching theme - -Bro how does nobody show up when like literally everyone was talking about them last episode and this - -[The 2D animated bits make them look so cool](https://cdn.discordapp.com/attachments/621713361390010378/797216625908121670/unknown.png) - -Got kinda catchy at the end, feel like that tune would've fit better as some orchestrated sad-sounding boss theme";False;False;;;;1610142126;;False;{};gil5gof;False;t3_ktbp1n;False;False;t3_ktbp1n;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil5gof/;1610182831;10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610142199;;False;{};gil5ma7;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil5ma7/;1610182918;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vindicare605;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/aresendez88;light;text;t2_656ck;False;False;[];;"Darkness is not a milf, she's just a sexy masochistic knight. She's barely older than the teenage Kazuma. - -Now Whis on the other hand...";False;False;;;;1610142223;;False;{};gil5o3r;False;t3_ktc1q9;False;True;t3_ktc1q9;/r/anime/comments/ktc1q9/darkness_from_konosuba_has_made_me_restart_my/gil5o3r/;1610182945;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GHDpro;;;[];;;;text;t2_49j5t;False;True;[];;And it's a city with a river right through, but no bridges in sight. How are you supposed to go from one end to another? (yes I guess via the walls would work, but not terribly convenient)... anyway overthinking things too much.;False;False;;;;1610142247;;1610144238.0;{};gil5pxn;False;t3_kt9rcs;False;False;t1_giktpez;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil5pxn/;1610182972;102;True;False;anime;t5_2qh22;;0;[]; -[];;;trubbsgubbs;;;[];;;;text;t2_ewdqc;False;False;[];;I took a screenshot of the image cause I couldn't save it from a chat so I didn't think it would work! I even did the little questionnaire. Thanks for the help;False;False;;;;1610142315;;False;{};gil5v0w;True;t3_ktce9t;False;True;t1_gil55ky;/r/anime/comments/ktce9t/what_is_this_one_from_i_used_all_the_tools_i/gil5v0w/;1610183049;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FrumpY__;;ANI a-1milquiz;[];;https://anilist.co/user/FrumpY/;dark;text;t2_n5qjp;False;False;[];;"> More creepy CGI dancing - -The worst part about it is the lifeless eyes that stare forward, looking nowhere. - -[they scare me bro](#regretdecisions)";False;False;;;;1610142326;;False;{};gil5vtm;True;t3_ktbp1n;False;False;t1_gil0ao1;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil5vtm/;1610183061;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SeynaAyse;;;[];;;;text;t2_4ozfkqft;False;False;[];;Do you mean Misaka Mikoto from Railgun? If so high five 🙌😁she is the only tsundere who is my favorite character.;False;False;;;;1610142343;;False;{};gil5x4f;False;t3_ktboqh;False;True;t1_gil558k;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil5x4f/;1610183080;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThbDragon;;;[];;;;text;t2_2gwx9kir;False;False;[];;Did you think you kissing me will take away my first kiss;False;False;;;;1610142420;;False;{};gil62rw;False;t3_kt9rcs;False;False;t1_giku3e7;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil62rw/;1610183164;11;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610142426;moderator;False;{};gil63ag;False;t3_ktcm63;False;False;t3_ktcm63;/r/anime/comments/ktcm63/promised_neverland_air_date/gil63ag/;1610183172;1;False;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;I think robin! Her powers are cool, I love how she was introduced to the crew and it always feels like she knows more than what she’s letting on;False;False;;;;1610142430;;False;{};gil63nv;True;t3_ktboqh;False;False;t1_gil4bun;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil63nv/;1610183177;2;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;True;[];;"Does he get better? I stopped watching there when the dub ran out. - -God, i love all of the strawhats. The one I connected with most though, is Usopp. Coincidentally, someone mentioned him as the most annoying further down this thread. I love him though.";False;False;;;;1610142438;;False;{};gil647u;False;t3_ktboqh;False;True;t1_gil4bun;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil647u/;1610183186;2;True;False;anime;t5_2qh22;;0;[]; -[];;;N7CombatWombat;;;[];;;;text;t2_gnfer;False;True;[];;"If you use Chrome, then you can right click on an image and there's a link to ""reverse image search"", it doesn't always work, but it's a quick way to take a look before you dive into the websites like suacenao.com.";False;False;;;;1610142497;;False;{};gil68pu;False;t3_ktce9t;False;True;t1_gil5v0w;/r/anime/comments/ktce9t/what_is_this_one_from_i_used_all_the_tools_i/gil68pu/;1610183257;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;True;[];;God i hate Minorin;False;False;;;;1610142565;;False;{};gil6dwp;False;t3_ktboqh;False;True;t1_gil2l8x;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil6dwp/;1610183334;0;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;True;[];;Lol he's my fav;False;False;;;;1610142580;;False;{};gil6f0v;False;t3_ktboqh;False;True;t1_gil4day;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil6f0v/;1610183352;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Most people say to watch G8 but skip all the other filler;False;False;;;;1610142591;;False;{};gil6fw6;False;t3_ktcmnj;False;True;t3_ktcmnj;/r/anime/comments/ktcmnj/one_piece_filer_arcs/gil6fw6/;1610183364;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;G-8 is great, so definitely watch that when you get to it. The rest can be skipped;False;False;;;;1610142637;;False;{};gil6jij;False;t3_ktcmnj;False;True;t3_ktcmnj;/r/anime/comments/ktcmnj/one_piece_filer_arcs/gil6jij/;1610183421;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"> Emma is already best girl and I'm amazed she has won me over thos fast. - -I know right? How can the other girls even compete! - -They better be great if they even want a chance! Well, Olivia was pretty good too, but Emma is on another level.";False;False;;;;1610142647;;False;{};gil6k98;False;t3_kt9rcs;False;False;t1_gikuglp;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil6k98/;1610183433;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610142671;;False;{};gil6m39;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil6m39/;1610183461;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Espada_6;;;[];;;;text;t2_sb5ghaa;False;False;[];;So the MC has Rimuru’s ability and has ~~Darknesses from Konosuba~~ Brightness. I liked this episode more than I thought I would.;False;False;;;;1610142732;;False;{};gil6qna;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil6qna/;1610183532;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hanr10;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/hanr10;light;text;t2_v93hb;False;False;[];;"Yes, the manga is amazing, you can just pick up from where you stopped in the anime. - -> I hate waiting an entire week for a new episode - -...you'll probably hate waiting an entire week (or two weeks, because Oda takes breaks regularly) for one new chapter though";False;False;;;;1610142783;;False;{};gil6uj3;False;t3_ktc1oa;False;True;t3_ktc1oa;/r/anime/comments/ktc1oa/is_it_worth_it_to_read_the_one_piece_manga_after/gil6uj3/;1610183592;1;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;"It was very boppable. - -[](#dancewithit)";False;False;;;;1610142784;;False;{};gil6ulw;False;t3_ktbp1n;False;True;t1_gil3qoq;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil6ulw/;1610183593;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Iamamathlover;;;[];;;;text;t2_7s2w3jug;False;False;[];;Thanks :);False;False;;;;1610142820;;False;{};gil6x9x;True;t3_ktc1oa;False;True;t1_gil6uj3;/r/anime/comments/ktc1oa/is_it_worth_it_to_read_the_one_piece_manga_after/gil6x9x/;1610183633;1;True;False;anime;t5_2qh22;;0;[]; -[];;;punkgibson11;;;[];;;;text;t2_6ke7rwal;False;False;[];;"If I remember correctly then dub is at punk hazard right. -The next arc his simp moments become useful. Then in Whole Cake Island which is an arc dedicated to Sanji it reduces alot you will appreciate Sanji alot after this arc. -His simp moments return in Wano but decreased to a certain extent. He will shine alot not just in strength but also as a character in the next few arcs. -Also Usopp is in my top 5 SH.";False;False;;;;1610142831;;False;{};gil6y52;False;t3_ktboqh;False;True;t1_gil647u;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil6y52/;1610183646;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fredthefishlord;;;[];;;;text;t2_ba5at3b;False;False;[];;And I'm saying it's idiotic to call it an isekai without reincarnation. Just call it a power fantasy, the isekai genre isn't all just power fantasies, and it is insulting to call it as such;False;False;;;;1610142882;;False;{};gil71zt;False;t3_kt9rcs;False;False;t1_gil35hc;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil71zt/;1610183705;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"> All the characters seem likable. - -All but one, I'd say; Lenore was utter trash. - -(Or am I the only one who hates her? Do people just see her as a quirky tsundere or something? Personally I see her as an ass, for now anyway!)";False;False;;;;1610142922;;False;{};gil750z;False;t3_kt9rcs;False;False;t1_giktyst;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil750z/;1610183753;10;True;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;that's the joke;False;False;;;;1610142923;;False;{};gil7536;False;t3_ktcau7;False;True;t3_ktcau7;/r/anime/comments/ktcau7/gintama_it_reminds_me_of_a_certain_mecha_anime/gil7536/;1610183754;1;True;False;anime;t5_2qh22;;0;[]; -[];;;keithohara;;;[];;;;text;t2_gbzf7q;False;True;[];;Fun fact: Madao's VA played Shinji's Dad in Evangelion, so that's why his voice was deepened in this scene;False;False;;;;1610142939;;False;{};gil76ec;False;t3_ktcau7;False;True;t3_ktcau7;/r/anime/comments/ktcau7/gintama_it_reminds_me_of_a_certain_mecha_anime/gil76ec/;1610183773;2;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;"I've had enough bad CG experience that most CG catches my eye, for better or worse. - -And it's not that I'm bothered by Nozomi's assault in some deep moral way, but it's Best Girl we're talking about. Show some respect!";False;False;;;;1610142954;;False;{};gil77ld;False;t3_ktbp1n;False;True;t1_gil2qje;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil77ld/;1610183791;2;True;False;anime;t5_2qh22;;0;[]; -[];;;technardo08;;;[];;;;text;t2_69sxhi4z;False;False;[];;This guy is reaching chad levels that can only be countered by NASA kun. Finally a MC who does it with the girls he like instead of being a pussy.;False;False;;;;1610142966;;False;{};gil78gf;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil78gf/;1610183806;3;True;False;anime;t5_2qh22;;0;[]; -[];;;YoukaiZone;;;[];;;;text;t2_afydf;False;False;[];;"Voltes V and Daimos were pretty well known in the Philippines. - -Voltes V actually ended up getting banned by the then President of the Philippines. Recommend reading about it, definitely a weird moment in history.";False;False;;;;1610143079;;1610144283.0;{};gil7gxm;False;t3_kta0qf;False;True;t3_kta0qf;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gil7gxm/;1610183943;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Espada_6;;;[];;;;text;t2_sb5ghaa;False;False;[];;Emma is way more Darkness than Hayasaka;False;False;;;;1610143086;;False;{};gil7heb;False;t3_kt9rcs;False;True;t1_giku8nj;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil7heb/;1610183949;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Espada_6;;;[];;;;text;t2_sb5ghaa;False;False;[];;Hayasaka from Kaguya sama I assume;False;False;;;;1610143101;;False;{};gil7ij3;False;t3_kt9rcs;False;True;t1_gil5fof;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil7ij3/;1610183966;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;"> The show would be a 9/10 if he just never existed - -I feel like if he didn't then Inosuke would have suddenly felt much worse. He was just less bad in contrast.";False;False;;;;1610143132;;False;{};gil7kxs;False;t3_ktboqh;False;True;t1_gil0q1h;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil7kxs/;1610184000;4;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;What’s your list of favourite strawhats?;False;False;;;;1610143167;;False;{};gil7nh4;True;t3_ktboqh;False;True;t1_gil6y52;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil7nh4/;1610184038;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;Yes I do, and she's definitely best girl. Her tsundere aspects are minor in comparison to some others (like that bitch Taiga) and most of them only happen in Index when she interacts with Touma. In her own series, she can barely be called a tsundere at all.;False;False;;;;1610143178;;False;{};gil7oc7;False;t3_ktboqh;False;True;t1_gil5x4f;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil7oc7/;1610184050;3;True;False;anime;t5_2qh22;;0;[]; -[];;;icepick314;;;[];;;;text;t2_4gq7g;False;False;[];;"Interesting choice using Kriss Vector rifles. - -It's going to be one of those filler series of the season. - -At least it looks pretty.";False;False;;;;1610143205;;False;{};gil7qbd;False;t3_ktafwf;False;False;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gil7qbd/;1610184079;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Calamityx7;;;[];;;;text;t2_9t5bgl;False;False;[];;That was surprisingly a lot better than I thought it would be.;False;False;;;;1610143254;;False;{};gil7u05;False;t3_ktafwf;False;False;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gil7u05/;1610184136;10;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610143289;moderator;False;{};gil7wqh;False;t3_ktcwol;False;True;t3_ktcwol;/r/anime/comments/ktcwol/season_2_of_the_promised_neverland/gil7wqh/;1610184178;1;False;False;anime;t5_2qh22;;0;[]; -[];;;itzxzac;;;[];;;;text;t2_9rs87;False;False;[];;The combat system in the show is really cool, love the idea of the mc being able to edit, but not at free will since it costs him points. I see trashy goodness in the future of this show :D;False;False;;;;1610143300;;False;{};gil7xku;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil7xku/;1610184191;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;Ive already posted this but havent seemed to get a useful answer that worked;False;False;;;;1610143315;;False;{};gil7yod;True;t3_ktcwol;False;False;t3_ktcwol;/r/anime/comments/ktcwol/season_2_of_the_promised_neverland/gil7yod/;1610184209;1;True;False;anime;t5_2qh22;;0;[]; -[];;;a_rescue_penguin;;;[];;;;text;t2_blymi;False;False;[];;Now I'm curious, because I feel like I have seen that EXACT same city in the openings of various shows. Are all those shows made by the same studio or group of studios and they just reuse it to save a bit of time?;False;False;;;;1610143327;;False;{};gil7zl4;False;t3_kt9rcs;False;False;t1_gikxy43;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil7zl4/;1610184223;7;True;False;anime;t5_2qh22;;0;[]; -[];;;baniRien;;;[];;;;text;t2_wxbyg;False;False;[];;"**Rewatcher/Co-host** - ---- - -- Very cute call between our main couple. - -- For the duel, the First is back in full shape. And he has his real voice. - -- [Very strong Gaen](https://imgur.com/a/knaHrCw). And she enchants the sword at the same time. - -- More [timeline placement](https://imgur.com/a/50t68f2). - -- And we again see the more utilitarian side of Gaen. She's perfectly willing to let people get in danger to accomplish her goals. And they need Dilemnaragi to live. - -- I'm pretty sure we also see him wear Kanbaru's shoes in NekoWhite. However, in that, he does not actually have a shirt under the hoodie, so art inconsistency, I guess. Blame it on Hanekawa imagining him with less clothes. - -- Also, do notice he's been sitting on [the roller](https://imgur.com/a/M0K5bNa) he wielded against Dramathurgy. - -- And a small admission by Gaen that the reason she has all those cellphones is that they are all burners, as she doesn't trust anyone enough to really have her number. - -- Shinobu shows her notice, and [raises the stakes](https://imgur.com/a/UnaAtX3) to something lethal. - -- Also, no one acknowledges that Shinobu is no longer the master. - -- Abandoning the suit of armour in secret, for [extra speed](https://imgur.com/a/0JiN5kc). - -- Two can [play dirty](https://imgur.com/a/LxbDZ3Q). - -- Shinobu finally showing herself, after the decision was made for her, and [crying](https://imgur.com/a/jmnHS1i) for this final parting, closure as much for her as for the First. - -- This was mentioned way before, but glossed over when it actually happens, but somewhere after he rushes over to save Hanekawa, Gaen reestablishes the link between Shinobu and him. - -- And we go back to Ougi, as this was still being told to her. Not sure about the meaning of [Koyomist](https://imgur.com/a/qJYxFZ7) here. - -- Ougi just dropping ""if we're still alive"" casually like that, and it doesn't even fell so out of place, given how pessimistic she usually is. Of course, in release order, this was actually before Koyomimonogatari. - -- And Ougi tells us how Gaen got her hands on Kokorowatari. - -- How does Ougi know the full name of the First, Shishirui Seishirou? Even Shinobu only mentioned his first name. [Spoilers Owari](/s ""How does she actually know? Did her own research on the side? Or did Araragi know it deep down, from his link with Shinobu? Second is more likely true, but I don't think we get an official answer"") - -- Ononoki apparently switched to Shinobu-sensei at some point. - -- Excusaragi acting like Sodachi, refusing to acknowledge his own possibility for happiness, and still saying that being with Shinobu is a burden to the both of them, when both are visibly happier that way, and chose each other repeatedly. - ---- - -So what's the epilogue, or rather the punchline of this arc? I'd say it's the fact that Araragi hasn't changed, or rather that he's changed a lot, but doesn't want to acknowledge it. - -###Relationships - -A lot of this arc is about relationships, and closure. This season is not just about the end of the story, but stories of endings. At the forefront is obviously the interaction, or the lack thereof, between Shinobu and the First. Theirs was a special bond, although different from the one between Shinobu and Araragi, and one we don't know a lot about, as Shinobu has stayed as stingy as she could with information. It might be out of a desire to forget and a way of dealing with the grief of losing him, or it might be out of a sense of loyalty to Araragi, like how Senjougahara downplays what she might've felt for Kaiki. Only the present matters, even more so for an hedonistic, multiple centuries old vampire. She refuses any interaction with him, but finally finds an opportunity to get closure on 400 years of grief once he's almost dead and unable to confront her. In accordance with her personality, she is selfish, and deals with her relationships in a selfish way. - -The First, meanwhile, also suffered from this lack of closure. While his behavior is far from commendable, it is possible that things could've turned out better if Shinobu had just accepted to meet him, and tell him the truth. She found someone else, after 400 years, and he should move on too. He didn't seem that insane, after all, and might've listened. But without any explicit rejection, he just saw Araragi as an obstacle and tried to prove himself. As is normal for an oddity, he was single-minded to his death, thinking only of Kiss-Shot. - -There are obvious parallels to make with Kanbaru, as she too tried to rekindle an old relationship in violent ways. It was discussed in more details in the other post, but the importance of this was not the amount of similar details we can find or not, but in-narrative, for Shinobu herself to realise that she should see the situation in a human manner, with emotions being important. - -Finally, there are the relationships that matter to Araragi. First, theses events reaffirmed his bond with Shinobu. Both had a choice to make, and chose each other above anyone else, no matter how superior. But that's not the whole truth in the matter. Araragi did not exactly abandon Hanekawa and Senjougahara, but rather showed in trust that they would be able to deal with the situation by themselves. He doesn't have to be the hero, people can only save themselves. And the call right before, with Senjougahara, made it very clear that he still loved her, even though he was risking his life for Shinobu. In a way, with Shinobu being such a big part of him, this is saying that no matter the strength of a relationship, you should always prioritise yourself. - -###Deceit and Treachery. - -There's a lot of people lying and tricking each other in this arc. They lie about their emotions, they lie to themselves, they lie about their methods and their goals to accomplish their objectives. Shinobu took until the very end to acknowledge that she felt something for the First. The First employed trickery time and again to try and defeat araragi, only to lose to a trick himself in the end. Gaen lied about her real goal for the whole situation, which was not exactly to get rid of the First. In fact, her final goal is not exactly known, though you can make good guesses. And Ougi is Ougi. - -Overall, I fell this arc was a bit more plot-focused than many others. The themes we have are few and heavily repeated, but it's all still just a crescendo, culminating in an ending we haven't reached yet. We know Araragi dies right after this, so what is going to happen now? Does the story just end this way for him, abruptly, and we switch to another character as our main? Of course not, we know from Hana he is alive somehow, but that idea is fun to think about.";False;False;;;;1610143341;;False;{};gil80n8;False;t3_ktcwa0;False;False;t3_ktcwa0;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gil80n8/;1610184238;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Giroln;;;[];;;;text;t2_2vcvxbnr;False;False;[];;"**Rewatcher** - -Really nice Senjou scene here, Feels like she always knows just the thing to say to Araragi to get him going. ""You can't be special, but others can see you as something special"" true that. Senjou definitely has a better grasp on her emotions and relationships at this point. Remember thinking Hanekawa would be a better match for Araragi in the earlier parts of my first watch, now I can't imagine him with anyone but Senjou (and Shinobu in a platonic sense). - -Feel like the First really continues to underestimate Araragi and his bond with Shinobu. He sees her not renewing their bond before the fight as her not caring, when it seems more like she is confident that he can win without it. Gaen looked pretty cool with the wooden sword though. Also, if we were watching airing order, her being able to create a facsimile of Heartspan would be some nice foreshadowing for her having them in KoyomiMono. - -Almost forgot about that text Hanekawa sent him. Also Gaen was really cruel putting him into a bind like that. I still stand by my opinion from my first watch that I really still don't like her. ""I trust that they understand that the man Araragi prioritizes little girls over lovers and friends"" and this man continues to deny being a lolicon lol. - -Feel like she sent the real Heartspan because using the fake wouldn't solve anything, both would live on. This matter would not end until one died, and she already chose Araragi to win. Seishirou continues to underestimate Araragi, allowing him to slap him with the shrines seal, ending the match in one blow. While Shinobu couldn't speak with him one last time she was able to tell him she forgave him. And she eats him so he can truly die, given that he would eventually recover from heartspan, giving him what he truly wants. - -And with Ougi's help, we now know where she got her Heartspan from. [Owari s2](/s ""As well as dreamspan."") Yotsugi telling Araragi that he is not happy because he is not trying to be happy is a nice callback to Sodachi. He really shoulders way too much with his feelings that he can't be happy because being a vampire puts a burden on others. Feel like relationships causing burdens is just a matter of course, and not something to be lamented. He's not trying to kill himself anymore, but he still doesn't love himself. - -Next episode starts season 2 of OwariMonogatari. Definitely feels different watching in this order rather than Airing, but I like it a lot more. The setups flow much better into each other and it gives the Hachikuji cliffhanger time to breath instead of being followed up next episode.";False;False;;;;1610143341;;False;{};gil80ng;False;t3_ktcwa0;False;False;t3_ktcwa0;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gil80ng/;1610184238;6;True;False;anime;t5_2qh22;;0;[]; -[];;;raichudoggy;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/raichudoggy;light;text;t2_93aur;False;False;[];;"Soon, I'm sure. - -[](#romance)";False;False;;;;1610143355;;False;{};gil81no;False;t3_ktbp1n;False;True;t1_gil1xcd;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil81no/;1610184254;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Earthborn92;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EarthB;light;text;t2_al1wj;False;False;[];;"Partial Rewatcher here. **First timer** for this episode. - -End of Owari Part 1. Here we go… - -Senjou after [quite](https://i.imgur.com/rXgiM2y.jpg) a long time. Relevant to discuss the parallels between the three of them and [the Shinobu situation](https://i.imgur.com/EknxXR6.jpg), so that’s good to bring up. - -Senjou’s [outlook](https://i.imgur.com/OgyrpJR.jpeg) on relationships is understandable not not even unexpected for someone of her turbulent family background, but it isn’t easy to “just switch” because it takes time before you’re sure someone is a better match or for feelings to change. Well, she’s saying in her roundabout way of [encouragement](https://i.imgur.com/6ZyYJYZ.jpg). So it comes off as [very sweet](https://i.imgur.com/VOlEkDt.jpeg) in the end. Also, we get Hanekawa’s confession to him directly after this arc, and he has no hesitation in rejecting her, so it is quite relevant a conversation. - -He’s in the full [suit of armor](https://i.imgur.com/9uhj2Fs.jpg) for this duel. - -Yeah, but you’re gonna be [using that regen](https://i.imgur.com/LKJt3Ug.jpg), aren’t you? How can he even fight without that? - -By having Gaen frame the rules [like this](https://i.imgur.com/RrWUM7z.jpeg), I see. Seems very, very tame by Monogatari standards. Almost civilized, even. - -I like the fact that we’re having Kanbaru [coach him](https://i.imgur.com/wIAWcNz.jpg) on sprinting - the sport she was actually the best at before the monkey paw made her switch to basketball. - -Does wearing supernatural armor [stretch your muscles](https://i.imgur.com/fRqSm1d.jpeg) when you stand there doing nothing? Does he even have muscles? Has he evolved from his shota form? - -[Does she have big feet or does Araragi have small feet?](https://i.imgur.com/r6tXBdD.jpeg) - -Now’s not the time for [distractions](https://i.imgur.com/KvZIlMK.jpeg). You’ll find out [soon enough](https://i.imgur.com/CDQrDf9.jpeg). - -Haha, [yeah](https://i.imgur.com/4ytdYzF.jpeg) I noticed. Let’s get this [over with](https://i.imgur.com/r0Xbtsy.jpeg) quickly. He can’t simply abandon those who need immediate attention, so Gaen [set this up](https://i.imgur.com/OHvfEXs.jpg) pretty well to get him to choose what she wants. - -But she pushed her [luck](https://i.imgur.com/Z9Xdyi6.jpeg) too much. I don’t think she does know everything about the [strength](https://i.imgur.com/Vb0c3ER.jpg) of their [relationship](https://i.imgur.com/f2zvdXl.jpg). Or maybe she *does* know everything and she devised this whole thing as a test for Koyomi. Idk. - -Shinobu is a *[bit](https://i.imgur.com/oBKCQOg.jpeg)* dramatic don’t you think? Looks like it is easy to just pick one when the other will be killed. - -[What.](https://i.imgur.com/nNTFGaT.jpg) - -[Haha.](https://i.imgur.com/jvnYM8R.jpg) - -What a cheater. Koyomi, you [fight dirty](https://i.imgur.com/hlLy1ZH.jpg). - -That’s a lot of [vampire goop](https://i.imgur.com/zMSvzDF.jpeg). - -Good, she actually [did show up](https://i.imgur.com/YrXwC2Q.jpeg) at the end. And she didn’t [forget his name](https://i.imgur.com/KgU4O32.jpg) like she claimed, huh? Very Shakespearian tragedy end for him. - -[Oh damn.](https://i.imgur.com/Pch2np9.jpg) So he was spilling all the juicy details to Ougi all along. That’s why there was Ougi in his room at the beginning. We were never jumping between the timeline, it was just a fancy flashback. And now we will finally get to know what happens [after he ded](https://i.imgur.com/WgE94f5.jpeg). - -Now [THAT](https://i.imgur.com/AdEi22V.jpeg) is some [new information](https://i.imgur.com/it8aDfR.jpg). Is that why Gaen has an “original” sword? Because she made it out of the armor, maybe I’m right that she wanted Araragi to fight after all (and win in some way) just to obtain the armor. - -Has Araragi inherited a bit of his [shadow](https://i.imgur.com/Hz03qOi.jpg) Shinobu’s [tsundere](https://i.imgur.com/2wjpVYD.jpeg)? - -Well, we end with that and [the mystery](https://i.imgur.com/G1DoKZl.jpg) of if Ononoki is happy about being dolled up by Tsukihi. I doubt it. - -Oh yeah, and the whole afterlife with Hachikuji. What’s up with that? - -See you tomorrow!";False;False;;;;1610143358;;False;{};gil81vb;False;t3_ktcwa0;False;False;t3_ktcwa0;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gil81vb/;1610184257;16;True;False;anime;t5_2qh22;;0;[]; -[];;;GodOfSnails;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/GodOfSnails;light;text;t2_kpwl6kz;False;False;[];;I finished school days yesterday and my lord. It made my blood boil but I did enjoy it.;False;False;;;;1610143363;;False;{};gil829e;False;t3_kta14g;False;True;t1_gikvvsb;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gil829e/;1610184263;1;True;False;anime;t5_2qh22;;0;[]; -[];;;redlaWw;;;[];;;;text;t2_9wwod;False;False;[];;Perhaps they have fords instead.;False;False;;;;1610143365;;False;{};gil82gr;False;t3_kt9rcs;False;False;t1_gil5pxn;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil82gr/;1610184266;24;True;False;anime;t5_2qh22;;0;[]; -[];;;echykr4;;;[];;;;text;t2_k4xht;False;False;[];;"Except that Hayasaka's VA Hanamori Yumiri is not even in the main cast at all, which is why I asked what he is talking about. - -OTOH Tomita Miyu (Emma) voiced Miko in Kaguya-sama.";False;False;;;;1610143375;;1610181738.0;{};gil835t;False;t3_kt9rcs;False;True;t1_gil7ij3;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil835t/;1610184277;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PacoTaco321;;;[];;;;text;t2_8yxkb;False;False;[];;I'm gonna come back to this series later and see how it goes...;False;False;;;;1610143394;;False;{};gil84lb;False;t3_ktafwf;False;True;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gil84lb/;1610184299;1;True;False;anime;t5_2qh22;;0;[]; -[];;;i_love_rem;;;[];;;;text;t2_yb6o5zf;False;False;[];;I mean, they're not going to be a couple, this is clearly aiming to be a harem series.;False;False;;;;1610143409;;False;{};gil85p8;False;t3_kt9rcs;False;False;t1_gikud5f;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil85p8/;1610184314;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;Find your stream here: https://www.livechart.me/anime/9395/streams;False;False;;;;1610143411;;False;{};gil85uz;False;t3_ktcwol;False;True;t1_gil7yod;/r/anime/comments/ktcwol/season_2_of_the_promised_neverland/gil85uz/;1610184317;1;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;If you don’t know it’s filler, it’s usually pretty good. I’d watch it;False;False;;;;1610143436;;False;{};gil87qy;False;t3_ktcmnj;False;True;t3_ktcmnj;/r/anime/comments/ktcmnj/one_piece_filer_arcs/gil87qy/;1610184344;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"I actually rather enjoyed Inosuke's antics. It might be partly because I watched Demon Slayer dubbed and Bryce Papenbrook did such a good job in the role, but I didn't find him annoying at all. I also sampled the subbed version and Inosuke sounded worse on that side, but still not quite to the point of being annoying. - -Zenitsu was awful in Japanese or English though.";False;False;;;;1610143442;;False;{};gil886g;False;t3_ktboqh;False;True;t1_gil7kxs;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil886g/;1610184350;1;True;False;anime;t5_2qh22;;0;[]; -[];;;death556;;;[];;;;text;t2_y24tf;False;False;[];;Hulu has season 2. I think funimation aswell.;False;False;;;;1610143454;;False;{};gil891k;False;t3_ktcwol;False;True;t3_ktcwol;/r/anime/comments/ktcwol/season_2_of_the_promised_neverland/gil891k/;1610184363;1;True;False;anime;t5_2qh22;;0;[]; -[];;;punkgibson11;;;[];;;;text;t2_6ke7rwal;False;False;[];;"Sanji Luffy Zoro Usopp Nami Robin Franky Brook Chopper. In that order. - -If you are caught up with anime then the new recruit is in between Franky and Brook.";False;False;;;;1610143474;;False;{};gil8akb;False;t3_ktboqh;False;True;t1_gil7nh4;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil8akb/;1610184386;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vikingslayerz;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_r89cv;False;False;[];;Usually I am alright with it so long as it has plot or something to make the ecchi worth it. Gonna keep going for a few more to see if I like it;False;False;;;;1610143487;;False;{};gil8blu;False;t3_kt9rcs;False;True;t1_gil5fp2;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil8blu/;1610184402;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;Hulu and Funimation are streaming the subbed version. If you're looking for the dub, it'll air on Toonami later in the year (no date announced yet);False;False;;;;1610143532;;False;{};gil8evy;False;t3_ktcwol;False;True;t3_ktcwol;/r/anime/comments/ktcwol/season_2_of_the_promised_neverland/gil8evy/;1610184452;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FrumpY__;;ANI a-1milquiz;[];;https://anilist.co/user/FrumpY/;dark;text;t2_n5qjp;False;False;[];;"> Often a complaint levied against Love Live in favor of something like Idolm@ster is that the Idolm@ster is a more realistic expectation of idol culture due to its portrayal of idols as a marketable industry and not just a happy-go-lucky school club - -I understand that people like to make this complaint and it is valid, but Love Live! pretty early on establishes that its not exactly trying to be a realistic portrayal of what idols are.";False;False;;;;1610143546;;False;{};gil8fxl;True;t3_ktbp1n;False;False;t1_gil0au1;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil8fxl/;1610184469;7;True;False;anime;t5_2qh22;;0;[]; -[];;;vajoxx;;;[];;;;text;t2_8vxku4hx;False;False;[];;Filler being lol we are not in the same universe;False;False;;;;1610143564;;False;{};gil8hbc;True;t3_ktcmnj;False;False;t1_gil87qy;/r/anime/comments/ktcmnj/one_piece_filer_arcs/gil8hbc/;1610184489;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;True;[];;">top 5 SH - -LOL aren't there only 10 of them! Top 50%! - -I have a friend who has a crush on Sanji, so you are definitely not alone in liking him - -I love Usopp because i can relate to him so hard. Sometimes i exaggerate my stories and make my life sound better than it is. But in reality, I am a coward. I'm not Luffy. I'm not Zoro. I probably couldn't do the things they do, even if I had superpowers. - -During the Arlong Arc he had such a beautiful character development, and what he went through for the Going Merry at Water 7 made me realize he was my favourite. God i love Usopp. I hope to try as hard as he does, and be as brave as him. Plus maybe I'll get a cool theme song as well loo loo loo loo lee";False;False;;;;1610143590;;False;{};gil8j9z;False;t3_ktboqh;False;True;t1_gil6y52;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil8j9z/;1610184519;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;Ah okay thanks i just checked funimation thanks;False;False;;;;1610143607;;False;{};gil8khj;True;t3_ktcwol;False;False;t1_gil891k;/r/anime/comments/ktcwol/season_2_of_the_promised_neverland/gil8khj/;1610184537;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610143609;;False;{};gil8kns;False;t3_ktcwol;False;True;t3_ktcwol;/r/anime/comments/ktcwol/season_2_of_the_promised_neverland/gil8kns/;1610184541;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi swaggest_b1tc, your post has been removed because it links to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610143610;moderator;False;{};gil8kpp;False;t3_ktcwol;False;False;t1_gil8kns;/r/anime/comments/ktcwol/season_2_of_the_promised_neverland/gil8kpp/;1610184541;2;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610143618;;False;{};gil8l9j;False;t3_ktcbdf;False;True;t3_ktcbdf;/r/anime/comments/ktcbdf/what_is_a_favorite_anime_character_of_yours_that/gil8l9j/;1610184548;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Kenalskii;;;[];;;;text;t2_19yhhygi;False;False;[];;"**REWATCHER** - -Honoka attacking Maki, I find it adorable - -I love the friendship shown between Honoka, Umi and Kotori, helping each other and try to solve their Problems together - -So our girls had their first concert, but no one showed up except for a few =( - -First question: Being nervous can be frustrating, but it is always better when you have friends to help you. Also being in front of people a lot can help you - -Second question: Hard work should always pay off. But huge respect to those who keep working when no results show immediatly. So respect for our trio for continuing to work hard to save the school";False;False;;;;1610143643;;False;{};gil8n58;False;t3_ktbp1n;False;False;t3_ktbp1n;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil8n58/;1610184576;3;True;False;anime;t5_2qh22;;0;[]; -[];;;echykr4;;;[];;;;text;t2_k4xht;False;False;[];;Lenore isn't even part of the main cast, so probably won't be seeing her often.;False;False;;;;1610143688;;False;{};gil8qf6;False;t3_kt9rcs;False;False;t1_gil4v6a;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil8qf6/;1610184627;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610143702;;False;{};gil8rfk;False;t3_ktcwol;False;True;t3_ktcwol;/r/anime/comments/ktcwol/season_2_of_the_promised_neverland/gil8rfk/;1610184642;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;blackmagemasta;;MAL;[];;https://myanimelist.net/profile/blackmagemasta;dark;text;t2_aceb1;False;False;[];;"**Rewatcher** - -""There are no absolutes in human relationships."" How true. Only the sith deal in absolutes. - -Goodbye, mein schatz. You will be missed. - -It's important to always stretch before a duel. If Minion#1 gets a cramp and loses, he only has himself to blame. - -I don't know if it's from Nisioisin, the writers for the anime, or the translators, but I applaud whoever decided to use the phrase ""[burning bright](https://i.imgur.com/QSI24fG.png)"" to talk about Hanekawa and Senjougahara's conflict with the tiger oddity. It's a reference to the first line of *[The Tyger](https://www.poetryfoundation.org/poems/43687/the-tyger)* by William Blake. - -> Tyger Tyger, burning bright, ->In the forests of the night; ->What immortal hand or eye, ->Could frame thy fearful symmetry? - -[It's time to duel!](https://www.youtube.com/watch?v=SFkdcQgNJHo&ab_channel=sarvaia) - -Is someone going to fix the track? Or is the track team going to come out tomorrow and find a crater? Is that why Gaen brought episode along? To do track maintenance. - -I guess Gaen really doesn't know everything if she didn't know how Araragi was planning to win. - -And now we're back to March 13th. Later today Araragi will climb the steps to the shrine, meet Gaen, and be killed. - -""We still have time."" Says the guy about to die. - -What is a Polar Snake? Are they like polar bears?";False;False;;;;1610143799;;False;{};gil8ysh;False;t3_ktcwa0;False;False;t3_ktcwa0;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gil8ysh/;1610184756;6;True;False;anime;t5_2qh22;;0;[]; -[];;;CraftEssenceEssence;;;[];;;;text;t2_3866gha;False;False;[];;"> Olivia - -When she said ""I am Olivia servant"" I got some Fate Grand Order summoning flash backs.";False;False;;;;1610143802;;False;{};gil8z0k;False;t3_kt9rcs;False;False;t1_gikuu67;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil8z0k/;1610184759;9;True;False;anime;t5_2qh22;;0;[]; -[];;;FrumpY__;;ANI a-1milquiz;[];;https://anilist.co/user/FrumpY/;dark;text;t2_n5qjp;False;False;[];;"> Got kinda catchy at the end, feel like that tune would've fit better as some orchestrated sad-sounding boss theme - -Idol shows get a reputation for being a bit dramatic, but I don't think they'd go that far in this show.";False;False;;;;1610143847;;False;{};gil92d2;True;t3_ktbp1n;False;False;t1_gil5gof;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gil92d2/;1610184816;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;Thanks so much:)) Got it now;False;False;;;;1610143851;;False;{};gil92oi;True;t3_ktcwol;False;True;t1_gil8rfk;/r/anime/comments/ktcwol/season_2_of_the_promised_neverland/gil92oi/;1610184820;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SYZekrom;;;[];;;;text;t2_i5y6z;False;False;[];;"**First Timer** - -Arc finale time - -[So uh, guy's got shadow wings now huh? And is the bottom part supposed to be a tail? Secondary wings?](https://cdn.discordapp.com/attachments/621713361390010378/797220166843760650/unknown.png) - -Man that was tense, wish the dude got to say something after Shinobu appeared - -[The answer is yes](https://cdn.discordapp.com/attachments/621713361390010378/797224781212549130/unknown.png) - -And omg that outfit with that angle is so cute";False;False;;;;1610143866;;False;{};gil93ui;False;t3_ktcwa0;False;False;t3_ktcwa0;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gil93ui/;1610184837;19;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> Does wearing supernatural armor stretch your muscles -> when you stand there doing nothing? Does he even have muscles? Has he evolved from his shota form? - -vampire magic - -> Does she have big feet or does Araragi have small feet? - -Kanbaru is only a smidge smaller so if they both are a bit of an outlier it works out - -> so Gaen set this up pretty well to get him to choose what she wants. - -only shortly after the same question was asked by Ononoki - -> Because she made it out of the armor, maybe I’m right that she wanted Araragi to fight after all (and win in some way) just to obtain the armor. - -Gaen playing Araragi like a hand puppet - -> I doubt it. - -[Unadapted spoiler](/s ""Ononoki hates being Tsukihi's doll"")";False;False;;;;1610143914;;False;{};gil97gx;True;t3_ktcwa0;False;False;t1_gil81vb;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gil97gx/;1610184893;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mori_Forest;;;[];;;;text;t2_3foohwla;False;False;[];;You just have it backwards to be honest. Most generic isekai is structured like fantasy.;False;False;;;;1610143922;;False;{};gil983t;False;t3_kt9rcs;False;False;t1_gil5cnm;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil983t/;1610184901;5;True;False;anime;t5_2qh22;;0;[]; -[];;;punkgibson11;;;[];;;;text;t2_6ke7rwal;False;False;[];;"Yeah there are only ten but ranking them is really hard because I like them so much. The rankings fluctuate whenever there is a character moment . - -At first I didn't really care about Usopp but Water 7 made me like him.";False;False;;;;1610143943;;False;{};gil99lg;False;t3_ktboqh;False;True;t1_gil8j9z;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil99lg/;1610184925;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Frontier246;;;[];;;;text;t2_an8rjvo;False;False;[];;I think it’s telling that she doesn’t seem to be part of the main Harem, judging by the Ending.;False;False;;;;1610143967;;False;{};gil9bd8;False;t3_kt9rcs;False;False;t1_gil750z;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil9bd8/;1610184951;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Itspoodie;;;[];;;;text;t2_7qq4dkmg;False;False;[];;Hulu,Funimation and Katsu are all I know of that have it;False;False;;;;1610143979;;False;{};gil9c9x;False;t3_ktcwol;False;True;t3_ktcwol;/r/anime/comments/ktcwol/season_2_of_the_promised_neverland/gil9c9x/;1610184964;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;I can’t think of non power fantasy isekai. Like even if they don’t focus on fighting like Bookworm the mc is overpowered just due to their knowledge and such. Like maybe prior to the 2010s there are non power fantasy isekais, but everything isekai now is mc is special and unique whether it be special skills or knowledge that lets them gain advantage in the world. Granted I haven’t seen every isekai every season just about 75% every season cause they’re the ones I go to watch usually as they’re easy to just watch. I just know that isekais are self insert power fantasies now, and this is a power fantasy without the self insert. Like it wouldn’t change the overall plot that much at all if the mc was isekaied or not.;False;False;;;;1610143986;;False;{};gil9csu;False;t3_kt9rcs;False;True;t1_gil71zt;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil9csu/;1610184972;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610144108;moderator;False;{};gil9ly0;False;t3_ktd6t6;False;False;t3_ktd6t6;/r/anime/comments/ktd6t6/how_to_enjoy_aot/gil9ly0/;1610185111;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi EquivalentGur3072, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610144109;moderator;False;{};gil9m03;False;t3_ktd6t6;False;True;t3_ktd6t6;/r/anime/comments/ktd6t6/how_to_enjoy_aot/gil9m03/;1610185112;0;False;False;anime;t5_2qh22;;0;[]; -[];;;Woprok;;;[];;;;text;t2_3tv8e6p;False;False;[];;"Gif is better -[https://imgur.com/5nnXeR7](https://imgur.com/5nnXeR7)";False;False;;;;1610144114;;False;{};gil9mfh;False;t3_kt9rcs;False;False;t1_giktyst;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil9mfh/;1610185118;14;True;False;anime;t5_2qh22;;0;[]; -[];;;apurplerosefor_her;;;[];;;;text;t2_48eicaez;False;False;[];;They even got Yui and Gendo next to each other;False;False;;;;1610144164;;False;{};gil9q2m;False;t3_ktcau7;False;True;t3_ktcau7;/r/anime/comments/ktcau7/gintama_it_reminds_me_of_a_certain_mecha_anime/gil9q2m/;1610185173;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> her being able to create a facsimile of Heartspan would be some nice foreshadowing for her having them in KoyomiMono. - -But now we had the buildup how the sword got into existence in the first place. Also Gaen is much more ominous in Owari after knowing what she does on the 13th of May - -> Feel like she sent the real Heartspan because using the fake wouldn't solve anything, - -but she does not have the real one, never had - -> gives the Hachikuji cliffhanger time to breath instead of being followed up next episode. - -people looking at the name of the next arc";False;False;;;;1610144173;;False;{};gil9qr1;True;t3_ktcwa0;False;True;t1_gil80ng;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gil9qr1/;1610185182;3;True;False;anime;t5_2qh22;;0;[]; -[];;;thatguywithawatch;;;[];;;;text;t2_roht2;False;False;[];;"Asia from DxD. - -Can't even remember what the story is about but I just remember how much I hated her by the third season lol.";False;False;;;;1610144225;;False;{};gil9unn;False;t3_ktboqh;False;True;t3_ktboqh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil9unn/;1610185243;1;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;"My list; robin, luffy, zoro, franky, usopp, Nami, sanji, brook, new guy, chopper. - -I like sanji until he has his outbursts lol";False;False;;;;1610144226;;False;{};gil9uo5;True;t3_ktboqh;False;True;t1_gil8akb;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gil9uo5/;1610185243;0;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;I get that I was trying to say that this fantasy is farther from traditional fantasy and as a power fantasy is pretty much just an isekai without reincarnation. The way everything is structured between tropes and mc abilities is very much like modern isekais rather than fantasy type shows. I don’t know when power fantasies started, but if they all are similar to this than they have the same exact beats an isekai has. The reincarnation part doesn’t ruin or enhance these stories for me, so it doesn’t matter too much to me. I’m not trying to be deep or anything with my original comment;False;False;;;;1610144240;;False;{};gil9vow;False;t3_kt9rcs;False;True;t1_gil983t;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gil9vow/;1610185259;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610144274;moderator;False;{};gil9y61;False;t3_ktd8wk;False;True;t3_ktd8wk;/r/anime/comments/ktd8wk/anime_even_remotely_similar_to_gintama/gil9y61/;1610185297;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Dzonochi, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610144313;moderator;False;{};gila105;False;t3_ktd9en;False;True;t3_ktd9en;/r/anime/comments/ktd9en/any_recommendations_for_anime_to_watch/gila105/;1610185340;1;False;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;Philippines has gotten a lot of anime over the years, that didn't see American shores for decades. The Cardcaptor Sakura dub on Netflix is a good example of it, because that was dubbed by Animax who aired a lot of anime throughout Asia in English. Albeit the English wasn't very good and the quality of the dubs was bad, but they were meant to air once, without a home release.;False;False;;;;1610144319;;False;{};gila1g8;True;t3_kta0qf;False;True;t1_gil7gxm;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gila1g8/;1610185347;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610144330;;False;{};gila293;False;t3_ktd6t6;False;True;t3_ktd6t6;/r/anime/comments/ktd6t6/how_to_enjoy_aot/gila293/;1610185358;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Best_in_Za_Warudo;;;[];;;;text;t2_12b21a;False;False;[];;Zenitsu from Demon Slayer;False;False;;;;1610144348;;False;{};gila3n5;False;t3_ktboqh;False;True;t3_ktboqh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gila3n5/;1610185379;1;True;False;anime;t5_2qh22;;0;[]; -[];;;punkgibson11;;;[];;;;text;t2_6ke7rwal;False;False;[];;Guess we both don't care about Chopper. I like him but not as much as others.;False;False;;;;1610144349;;False;{};gila3q3;False;t3_ktboqh;False;True;t1_gil9uo5;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gila3q3/;1610185381;0;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> What is a Polar Snake? Are they like polar bears? - -well they are white and have a shrine in Araragi's hometown";False;False;;;;1610144376;;False;{};gila5p3;True;t3_ktcwa0;False;True;t1_gil8ysh;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gila5p3/;1610185410;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610144399;;False;{};gila7c9;False;t3_kt9rcs;False;True;t1_gil82gr;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gila7c9/;1610185434;0;True;False;anime;t5_2qh22;;0;[]; -[];;;WhackaWhack;;;[];;;;text;t2_ngxv2;False;False;[];;"**FIRST TIMER** - -*Reactions during episode* - -So Araragi wanted Senjougahara perspective on heavy love before, I'm guessing, trying to have Shinobu confront hers. - -Don't worry Araragi, Senjougahara will probably never have a ""knight in shining armor"" moment again so you will stay as number one. - -That's actually a nice thought ""You will never be special but you can be special in somebody else eyes"", you can be normal for most people but only need to be special for the important ones. - -I'm guessing Araragi is special in Hanekawa's and the imotos eyes too, Araragi really is loved. (Maybe even by Ougi?!?) - -Could the sword be some kind of trap? Seeing as Gaen wouldn't want Araragi just to lose I'm guessing. - -Time for a ""I love/likes them all equally"" so lets save everyone cliche? -(Update: It was worse, he went the lolicon way, not that I shouldn't have seen this coming...) - -No I want be betraying her trust, just waiting for the opportune moment to save the day! - -Again I really like the points of how Araragi isn't special but he is Araragi nobody else so he is special in that one way that nobody else can. - -That talisman attack was just too good but does that mean that Araragi let Kuchinawa get powerful enough after the shine was ""free game"" again? - -Ougi knows what will go down, ""Let's meet again if we are alive"". - -That's right how did Gaen use a heart span to kill Araragi in Koyomimonogatari, she must have done as Ougi says since Shinobu didn't eat the armor in the draining part. - -Or maybe this is part of how Araragi can come back to life by making a dream span to heal and save Araragi in the next(?) arc. - -*Questions* - -1. First of all they really do fit nicely together. It's also nice seeing how Araragi is more and more willing to ask others for their opinion and help now (even if this is an ""old"" arc). - -2. It was nice that First One could have his last moment with Shinobu before leaving for the afterlife and the Shinobu managed to get over her fear of not loving Araragi if she meet First One. - -3. I think she wanted Araragi to leave the duel but she knew from experience with Araragi that he is hard to predict so she was ready, heart span wooden, to give him a fighting chance anyways. Still holding onto the theory that Gaen just have very good information gathering and prediction abilities instead of full knowledge. - -4. I did feel like Ougi knew about what where going to happen but I didn't think about Ononoki predicting it herself and trying to call ""dibs"" before Gaen could. - -5. Mental state before or after meeting Gaen. Before he is probable pretty calm but a little stressed about the exam while after he is just happy to see Mayoi again before remembering that he left everyone and stresses about that. Next arc will probably be just a resurrection arc with mostly Mayoi and some part of how the rest of the cast reacts and tries to help, after that I'm not really sure. The one thing I feel sure about with Gaen and Ougis endgame is that Araragi is an important part of it since they both wanted/wants things from him. What it is that they want is harder to guess maybe it has something todo with balance between aberrations and human and either to keep it or disrupt it as an end goal. Maybe that's why Ougi has faked being Memes niece she actually wants to keep the balance and stop Gaen from doing whatever she wants? - -6. It was a very good arc with many interesting moments for lots characters but I do feel that it as a long arc maybe ended up with even more of the ""useless"" dialog that monogatari often has for good or bad.";False;False;;;;1610144406;;False;{};gila7ui;False;t3_ktcwa0;False;False;t3_ktcwa0;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gila7ui/;1610185443;27;True;False;anime;t5_2qh22;;0;[]; -[];;;amhpanther;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/amhpanther;light;text;t2_i19ga;False;False;[];;"[taimu to crye](#akkotears) - -[This track is so powerful.](https://www.youtube.com/watch?v=1nrhTT3DbZI) - ->Umi seemed very nervous before their first live, but was able to overcome her fear and perform with the help of her friends. Have you been in a similar situation where you were nervous before a certain event? What did you do to overcome your anxieties? - -A) of course, B) I probably ran away - -[](#eheheh) - - ->Everything seemed to be crashing down around Honoka and co. before their performance and all of their hard work and effort seemed to be going to waste. How would you feel in a situation like that. - -​ -Gee I wonder. I'mma gonna say *bad.*";False;False;;;;1610144419;;False;{};gila8v4;False;t3_ktbp1n;False;False;t3_ktbp1n;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gila8v4/;1610185459;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Best_in_Za_Warudo;;;[];;;;text;t2_12b21a;False;False;[];;Nah he's great;False;False;;;;1610144424;;False;{};gila98b;False;t3_ktboqh;False;True;t1_gil4day;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gila98b/;1610185466;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;If it's directed by Hideaki Anno or Masaki Yuasa.;False;True;;comment score below threshold;;1610144426;;False;{};gila9bh;False;t3_ktd9z7;False;True;t3_ktd9z7;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gila9bh/;1610185467;-17;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;"If you dont enjoy it, dont watch it. -But the season 3 and 4 are fucking amazing, and aot is one step away to be' a masterpiece. -Did you watch all the season? -If you dont like it also after seeing all the season, aot is not for you";False;False;;;;1610144442;;False;{};gilaajl;False;t3_ktd6t6;False;False;t3_ktd6t6;/r/anime/comments/ktd6t6/how_to_enjoy_aot/gilaajl/;1610185487;12;True;False;anime;t5_2qh22;;0;[]; -[];;;CroweMorningstar;;;[];;;;text;t2_6i1rh;False;False;[];;They’re not all used by the same studios, and they’re not all exactly the same, but they are very similar. It’s a bit like using a template/stencil and not changing it very much afterwards. Isekai’s selling point is that it’s easily made and consumed, so a lot of the time elements like the setting can be generic. Sometimes there’s more effort though, like the author of [Bookworm](https://www.pinterest.com/pin/498562621254700348/) put a lot of time and effort into their world because it’s important to the story.;False;False;;;;1610144484;;False;{};giladnw;False;t3_kt9rcs;False;False;t1_gil7zl4;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giladnw/;1610185533;8;True;False;anime;t5_2qh22;;0;[]; -[];;;amhpanther;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/amhpanther;light;text;t2_i19ga;False;False;[];;bro sometimes ships are made just because two characters speak to each other;False;False;;;;1610144553;;False;{};gilaiw1;False;t3_ktbp1n;False;False;t1_gil139w;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gilaiw1/;1610185612;4;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;Water 7 was awesome for his character development. And I agree, they’re all well written and can change ranking amongst themselves;False;False;;;;1610144612;;False;{};gilan6d;True;t3_ktboqh;False;True;t1_gil99lg;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gilan6d/;1610185676;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;Isekai;False;False;;;;1610144652;;False;{};gilaq3x;False;t3_ktd9z7;False;True;t3_ktd9z7;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gilaq3x/;1610185721;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;LordJayfeather;;;[];;;;text;t2_o18msku;False;False;[];;"I have, in fact, just started Asterisk War last week due to it being similar to other things I'd just watched, so here you go: - -Irregular at Magic Academy and Anti-Magic Academy: 35th Test Platoon are definite picks. - -Akashic Records of Bastard Magic Instructor and Misfit at Demon Academy are pretty close too. - -Tbh, Index/Railgun/Accelerator is kinda close too. Unless you specifically want the tourney aspect. Then just certain episodes and seasons. - -And while I haven't yet watched them, Strike The Blood, ""Knight's & Magic"" (yes that's not a typo; that's what Crunchyroll calls it) and Black Bullet *seem* rather similar, as it was recommended alongside some of the other ones I've listed. - -If you don't care so much about the school aspect, just the inter-character dialogue that makes Asterisk War great, with the same post-disaster magic combat; then Franxx, Strike-Witches and Schwarzes-Marken might be good too.";False;False;;;;1610144672;;1610145210.0;{};gilarmb;False;t3_ktd9en;False;True;t3_ktd9en;/r/anime/comments/ktd9en/any_recommendations_for_anime_to_watch/gilarmb/;1610185742;1;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;Who’s the best character in Za Warudo?;False;False;;;;1610144710;;False;{};gilauk0;True;t3_ktboqh;False;True;t1_gila3n5;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gilauk0/;1610185786;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;Excel Saga and Cromartie High School to an extent.;False;False;;;;1610144721;;False;{};gilavbv;False;t3_ktd8wk;False;False;t3_ktd8wk;/r/anime/comments/ktd8wk/anime_even_remotely_similar_to_gintama/gilavbv/;1610185797;4;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;True;[];;Chivalry of a Failed Knight. Infinite Stratos.;False;False;;;;1610144729;;False;{};gilavzq;False;t3_ktd9en;False;True;t3_ktd9en;/r/anime/comments/ktd9en/any_recommendations_for_anime_to_watch/gilavzq/;1610185808;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dandeeo;;;[];;;;text;t2_lt3rd;False;False;[];;"**First Timer** - -**Give your thoughts about the phone call between Araragi and Senjougahara** - -I awwww'd. Did anyone else awwwww? They're just so cute together. I feel like it's growing increasingly rare to see Araragi and Senjou interact, but whenever they do they just kind of punch you in the feels. They make such a grounded couple. I stan. - -**What do you think about the resolution of the duel and Shinobu's part in it?** - -No part of me expected Araragi to liquify his opponent, my goodness. Where did he even think to use that? Araragi using his brain AND not getting immediately folded in a fight, all in the same episode? I - - Shinobu's involvement was barely anything; I was a little disappointed. I don't feel that her swooping in after the dude has already been liquified and was in a semi-catotinic was the kind of closure needed. Ultimately this conflict was between Shinobu and First, so I would have preferred that Shinobu and First resolved it themselves. It kind of cops out of the parallels with Senjou and Kanbaru; in that ""fight"", it's only Senjou's intervention that gave Kanbaru what she needed to move on. I get that it might be redundant to repeat the same events all over again, but I think Shinobu having an actual interaction with First would have been more powerful overall. - -**Do you think Gaen was playing 3D chess and bluffing Araragi into abandoning the duel out of concern for Hanekawa and Senjougahara or what has her plan with omitting info until it was almost too late?** - -Hmm maybe she was after the armor all along? If Araragi knew about the Tiger incidents earlier then he might have bailed on the duel. - -Follow up question: why does Ougi think that that's why Gaen brought Episode? What's the connection? (Follow up to the follow up: will Episode ever be useful or relevant or do they just keep him around because he's pretty?) - -**What is the respective end game of Gaen and Ougi, what will happen in the next arcs? Also, give your judgement about Araragi's mental state at this moment.** - -Gaen - at this point I think Gaen cares more about eliminating potential oddities than she cares about anything or anyone else. So I think she'll do anything to achieve those ends, even at the cost of the living. - -Ougi - who the hell knows. The relationship between Ougi and Araragi seems unique to them; I don't think Ougi is hanging around in anyone else's house to make them recount their tales of woe. I said before that if the ""misery collector"" idea hadn't been taken by Rouka then it would suit Ougi perfectly, but now it seems like the only misery Ougi collects is Araragi's. Why is Ougi so determined to wrest every single detail out of Araragi's misadventures? - -Araragi - Depressed, but certainly more mature. Welcome to adulthood. - -**How did you like this 6 episode long arc?** - -It was good and tied up a lot of loose ends, but in my opinion it was the weakest in Owarimonogatari. That is probably due to (1) Gaen, who took almost 2 full episodes to give a pretty boring info dump and (2) what I felt was an unsatisfying conclusion to the First One issue. I was so intrigued by him since Kizu and this kind of fell flat for me. Kanbaru's message to Shinobu yesterday was really strong, but it didn't seem to persist into this episode.";False;False;;;;1610144760;;False;{};gilaybf;False;t3_ktcwa0;False;False;t3_ktcwa0;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gilaybf/;1610185847;20;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;True;[];;Seconding Cromartie because it is hilarious af;False;False;;;;1610144771;;False;{};gilaz5o;False;t3_ktd8wk;False;True;t1_gilavbv;/r/anime/comments/ktd8wk/anime_even_remotely_similar_to_gintama/gilaz5o/;1610185860;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dv_recorder;;;[];;;;text;t2_8pd0s8e7;False;False;[];;"* Pierrot is doing it -* Harem + Ecchi combo -* It's a Trigger original";False;True;;comment score below threshold;;1610144802;;False;{};gilb1f9;False;t3_ktd9z7;False;True;t3_ktd9z7;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gilb1f9/;1610185895;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;Even if he’s not the best, the strawhats wouldn’t feel the same without him. Each crew member really adds a lot;False;False;;;;1610144826;;False;{};gilb35q;True;t3_ktboqh;False;True;t1_gila3q3;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gilb35q/;1610185921;1;True;False;anime;t5_2qh22;;0;[]; -[];;;amhpanther;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/amhpanther;light;text;t2_i19ga;False;False;[];;"Rewatches are generally the kind of environment where viewers are prepped to latch onto stuff like this because we're all desperately trying to find something to say in our comments haha. The School Idol Project CG is bad, yes, but I'm certain were this show to be viewed in any other environment it would just be ignored as part of the package. - -[](#cantbehelped)";False;False;;;;1610144872;;False;{};gilb6k6;False;t3_ktbp1n;False;False;t1_gil2qje;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gilb6k6/;1610185975;8;True;False;anime;t5_2qh22;;0;[]; -[];;;amhpanther;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/amhpanther;light;text;t2_i19ga;False;False;[];;"Nico is getting there! - -[](#makicry)";False;False;;;;1610144910;;False;{};gilb9ga;False;t3_ktbp1n;False;True;t1_gil139w;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gilb9ga/;1610186019;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Best_in_Za_Warudo;;;[];;;;text;t2_12b21a;False;False;[];;"Me of course..... - - - - -Or is it?";False;False;;;;1610144937;;False;{};gilbbjg;False;t3_ktboqh;False;True;t1_gilauk0;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gilbbjg/;1610186050;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuck_Shinji;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Fuck Shinji(fate);light;text;t2_7xrbju2m;False;False;[];;As someone who doen't know shit about directors whats bad about them;False;False;;;;1610144950;;False;{};gilbcfm;False;t3_ktd9z7;False;True;t1_gila9bh;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gilbcfm/;1610186064;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuck_Shinji;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Fuck Shinji(fate);light;text;t2_7xrbju2m;False;False;[];;Ecchi,Harem,Isekai combo;False;False;;;;1610144962;;False;{};gilbdd6;False;t3_ktd9z7;False;False;t3_ktd9z7;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gilbdd6/;1610186078;8;True;False;anime;t5_2qh22;;0;[]; -[];;;amhpanther;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/amhpanther;light;text;t2_i19ga;False;False;[];;"I get you're going haha funny keion parody because that's been mentioned every single episode but wtf bro Umi's hair is blue. It's not an in-universe black either since we see characters with actual black hair. - -[](#niatilt)";False;False;;;;1610144979;;False;{};gilbenn;False;t3_ktbp1n;False;True;t1_gil0ydg;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gilbenn/;1610186097;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Luukuton;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;Hatchless;light;text;t2_kjwpo;False;False;[];;"## REWATCHER - -### EPISODE - -This and episode 9 (2nd ep of this arc) are my favorites during this arc. - -A straigth and honest answer from Senjougahara. I like it. - -Gaen asks the same question as Shinobu in Onimonogatari EP03. _""Shinobu, Hanekawa or Senjougahara?""_"" - -Ah yes, sometimes Araragi has to prioritize young girls too. - -Gaen is actually surprised. She's wondering if Araragi misunderstood her ""hito**tachi**"" (one stroke of sword / 一太刀) as hito**tacchi** (one touch / 一タッチ). - -_""If we can meet again, let's meet.""_ - -Shishirui Seishirou (死屍累 生死郎). 死屍 (corpse) + 累 (trouble; harmful effect), and 生死 (life and death) + 郎 (archaic word for man) - -_""Shinobu Sensei""_, regards Ononoki. Also have [a stitch of her](https://i.imgur.com/XEV7uc1.jpg). - -- The ominous song [Bouyomi](https://www.youtube.com/watch?v=Q4j3Z79xMZs&t=1019s) (""Reading in Monotone"") when Araragi gets [this picture](https://i.imgur.com/MugxuTV.png) from Hanekawa -- [Saigo no Kaiwa](https://www.youtube.com/watch?v=Q4j3Z79xMZs&t=2605s) / 最後の会話 / ""Last Conversation"" I just love this song - -### COMMENTARY / SUPPLEMENT AUDIO - -**Guide on getting subtitles and the audio for commentaries [here on /r/araragi](https://np.reddit.com/r/araragi/comments/i2balw/monogatari_series_audio_commentaries_masterpost/)** - -Hosts: Kanbaru Suruga and Oshino Shinobu. - -Kanbaru thinks that the picture Araragi got from Hanekawa is a small reward for making it through so much carnage since Kabukimonogatari. - -> Shinobu: After getting sent back to 11 years ago, hit by a truck, destroying the world, getting almost consumed by the Darkness, losing a friend, trapped in a building fire, fighting a monkey-crab chimera, being made to buy BL books, and almost getting assassinated, _he gets a photo of his friend in casual clothes as a reward?_ Don't you think it's too small a reward? - -Apparently in Hanamonogatari the opening and ending themes were flipped between the TV version and the packaged version. - -Shinobu wonders if, just like Kagenui Yozuru and Teori Tadatsuru being unable to walk on the ground, Oshino Meme is bound by some kind of spell too. - -> Kanbaru: In that case, we'll have to wait for the side story! - -> Shinobu: ...but wouldn't that be even denser than the main story? It's like ""Who even wants to watch Kaiki Deishuu's schooldays?"" - -I want to! - -Shinobu explains that ultimately, if she keeps eating oddities, there's a high chance of she regaining her former power, but fundamentally, her existence is bound to the name of Oshino Shinobu and to Araragi's blood. - -By the way, the Brutal Garçon Series is now up to Volume 25 as Shishirui Seishirou as the model on the cover page.";False;False;;;;1610144997;;1610145518.0;{};gilbfxn;False;t3_ktcwa0;False;False;t3_ktcwa0;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gilbfxn/;1610186115;9;True;False;anime;t5_2qh22;;0;[]; -[];;;baniRien;;;[];;;;text;t2_wxbyg;False;False;[];;###Edit Trivia Box;False;False;;;;1610145081;;False;{};gilbm7y;False;t3_ktcwa0;False;True;t1_gil80n8;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gilbm7y/;1610186219;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;Never stick with something you're clearly not enjoying. Doing so will just make you miserable;False;False;;;;1610145151;;False;{};gilbr96;False;t3_ktd6t6;False;True;t3_ktd6t6;/r/anime/comments/ktd6t6/how_to_enjoy_aot/gilbr96/;1610186294;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610145162;;1610152075.0;{};gilbs45;False;t3_ktd6t6;False;False;t3_ktd6t6;/r/anime/comments/ktd6t6/how_to_enjoy_aot/gilbs45/;1610186307;2;False;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;I find that their stories are often unnecessarily convoluted and prioritize style over substance.;False;True;;comment score below threshold;;1610145167;;False;{};gilbshh;False;t3_ktd9z7;False;True;t1_gilbcfm;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gilbshh/;1610186313;-15;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;">blue - -[This looks pretty black to me.](https://i.imgur.com/a3yxnMd.png)";False;False;;;;1610145233;;False;{};gilbx81;False;t3_ktbp1n;False;True;t1_gilbenn;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gilbx81/;1610186387;3;True;False;anime;t5_2qh22;;0;[]; -[];;;raichudoggy;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/raichudoggy;light;text;t2_93aur;False;False;[];;"Ah, so all of my green lines are definitely ships for a lot of people, that's good to know. - -[](#anko)";False;False;;;;1610145264;;False;{};gilbzil;False;t3_ktbp1n;False;True;t1_gilaiw1;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gilbzil/;1610186420;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LordJayfeather;;;[];;;;text;t2_o18msku;False;False;[];;"Space Dandy has the same vibes, different setting. - -It's basically just Gintama in space, yet there isn't any *at all* connection between episodes with a handful of exceptions that are sometimes arguable.";False;False;;;;1610145269;;False;{};gilbzvn;False;t3_ktd8wk;False;True;t3_ktd8wk;/r/anime/comments/ktd8wk/anime_even_remotely_similar_to_gintama/gilbzvn/;1610186425;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MikeHawk1221;;;[];;;;text;t2_1d25wax6;False;False;[];;Lmao yessss;False;False;;;;1610145274;;False;{};gilc08v;False;t3_ktboqh;False;True;t1_gil0b6w;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gilc08v/;1610186431;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;zzzorin;;;[];;;;text;t2_f7n9f8c;False;False;[];;"HxH and Steins;gate are also my favorites. - -And coincidence or not I’ve also dropped AOT after one and a half season.";False;False;;;;1610145297;;False;{};gilc1zy;False;t3_ktd6t6;False;True;t3_ktd6t6;/r/anime/comments/ktd6t6/how_to_enjoy_aot/gilc1zy/;1610186459;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;Why do you need tips from other people that did enjoy the anime on how to finish an anime you clearly don't enjoy? STOP WATCHING IT!;False;False;;;;1610145316;;False;{};gilc3bt;False;t3_ktd6t6;False;False;t3_ktd6t6;/r/anime/comments/ktd6t6/how_to_enjoy_aot/gilc3bt/;1610186479;5;True;False;anime;t5_2qh22;;0;[]; -[];;;zzzorin;;;[];;;;text;t2_f7n9f8c;False;False;[];;How many seasons are there?;False;False;;;;1610145323;;False;{};gilc3rq;False;t3_ktd6t6;False;True;t1_gilaajl;/r/anime/comments/ktd6t6/how_to_enjoy_aot/gilc3rq/;1610186485;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> I'm guessing Araragi is special in Hanekawa's and the imotos eyes too, Araragi really is loved. (Maybe even by Ougi?!?) - -he is pretty popular - -> time for a ""I love/likes them all equally"" so lets save everyone cliche? (Update - -Well, he is ultimately putting trust in them, he just can't say that without irony - -> That talisman attack was just too good but does that mean that Araragi let Kuchinawa get powerful enough after the shine was ""free game"" again? - -this is all just mere days before Nadeko Medusa and Kuchinawa only became ""real"" through Nadeko, but First One was eating most oddities and destroying the temple so now there should be even more of a vacuum than before - -> Mental state before or after meeting Gaen - -well in this episode he is all ""nobody is happy"" ""I am a burden to everyone"", he seemed down since late October basically";False;False;;;;1610145379;;False;{};gilc80n;True;t3_ktcwa0;False;False;t1_gila7ui;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gilc80n/;1610186550;5;True;False;anime;t5_2qh22;;0;[]; -[];;;feurouge;;;[];;;;text;t2_4o84zty;False;False;[];;Sergeant Frog;False;False;;;;1610145394;;False;{};gilc950;False;t3_ktd8wk;False;True;t3_ktd8wk;/r/anime/comments/ktd8wk/anime_even_remotely_similar_to_gintama/gilc950/;1610186566;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Game2015;;;[];;;;text;t2_poe9a;False;False;[];;I wish she was stuck in a wall instead...;False;False;;;;1610145394;;False;{};gilc95l;False;t3_kt9rcs;False;False;t1_gikvr83;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilc95l/;1610186566;7;True;False;anime;t5_2qh22;;0;[]; -[];;;obviouslypineapple;;;[];;;;text;t2_wv6l8;False;False;[];;"> A ford is a shallow place with good footing where a river or stream may be crossed by wading, or inside a vehicle getting its wheels wet. - -from [Wikipedia](https://en.wikipedia.org/wiki/Ford_\(crossing\)) - -Like the Oregon Trail meme on fording the river to cross.";False;False;;;;1610145399;;False;{};gilc9hl;False;t3_kt9rcs;False;False;t1_gila7c9;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilc9hl/;1610186571;18;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;"Season 1 - - -Season 2 - - -Season 3 part 1 - - -Season 3 part 2 - - -Season 4 ( It is still in progress )";False;False;;;;1610145428;;False;{};gilcbop;False;t3_ktd6t6;False;True;t1_gilc3rq;/r/anime/comments/ktd6t6/how_to_enjoy_aot/gilcbop/;1610186605;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ultraman9513;;;[];;;;text;t2_5b2pn87v;False;False;[];;Since you’ve read some I’d like to ask, how likely is this to get a harem end?;False;False;;;;1610145457;;False;{};gilcdrf;False;t3_kt9rcs;False;True;t1_gikx3b6;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilcdrf/;1610186637;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zzzorin;;;[];;;;text;t2_f7n9f8c;False;False;[];;Is the fourth the last one?;False;False;;;;1610145464;;False;{};gilce9z;False;t3_ktd6t6;False;False;t1_gilcbop;/r/anime/comments/ktd6t6/how_to_enjoy_aot/gilce9z/;1610186645;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;"Yes. -It probabily wiil have a part 2";False;False;;;;1610145525;;False;{};gilcipp;False;t3_ktd6t6;False;True;t1_gilce9z;/r/anime/comments/ktd6t6/how_to_enjoy_aot/gilcipp/;1610186710;2;True;False;anime;t5_2qh22;;0;[]; -[];;;baniRien;;;[];;;;text;t2_wxbyg;False;False;[];;"> I don't know if it's from Nisioisin, the writers for the anime, or the translators, but I applaud whoever decided to use the phrase ""burning bright -> "" to talk about Hanekawa and Senjougahara's conflict with the tiger oddity. It's a reference to the first line of The Tyger by William Blake. - -The Japanese does say burning, to be precise the same ""moe"" that was used as a pun back in Neko White, but I'm not sure about the exact intention of the reference. Could go one way or another.";False;False;;;;1610145591;;False;{};gilcngh;False;t3_ktcwa0;False;False;t1_gil8ysh;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gilcngh/;1610186786;5;True;False;anime;t5_2qh22;;0;[]; -[];;;amhpanther;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/amhpanther;light;text;t2_i19ga;False;False;[];;"I disagree but genuinely arguing colours never turns out well. - -[](#hideintoilet)";False;False;;;;1610145655;;False;{};gilcs8i;False;t3_ktbp1n;False;True;t1_gilbx81;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gilcs8i/;1610186859;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cosmiczar;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;http://anilist.co/user/Xavier;light;text;t2_12g9y9;False;False;[];;3D animators are paid much, much better than 2D ones.;False;False;;;;1610145658;;False;{};gilcses;False;t3_kta0qf;False;True;t1_gikszr8;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gilcses/;1610186861;3;False;False;anime;t5_2qh22;;0;[]; -[];;;Birdking111;;;[];;;;text;t2_hshxo9v;False;False;[];;That’s a big oof. Then again, when your system of pay depends on number of frames...;False;False;;;;1610145698;;False;{};gilcvet;False;t3_kta0qf;False;True;t1_gilcses;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gilcvet/;1610186906;3;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;"I await one of the girl mentioning her blue hair. She's pretty either way. - -[](#mugiwait)";False;False;;;;1610145716;;False;{};gilcwst;False;t3_ktbp1n;False;True;t1_gilcs8i;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gilcwst/;1610186925;2;True;False;anime;t5_2qh22;;0;[]; -[];;;redlaWw;;;[];;;;text;t2_9wwod;False;False;[];;No, fords. Shallow water crossings. You find them all over the UK for rivers in the countryside - most in more populated areas have been replaced with bridges in modern times, but it wasn't rare to have fords instead of bridges in towns in the past.;False;False;;;;1610145735;;False;{};gilcy8v;False;t3_kt9rcs;False;False;t1_gila7c9;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilcy8v/;1610186947;17;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> They make such a grounded couple. I stan. - -It's also an interesting way of professing her love. Not being just unconditional but saying that you do not expect someone better to be possible as long as both persons strive for growth - -> but I think Shinobu having an actual interaction with First would have been more powerful overall. - -the question is, could Shinobu actually resolve her conflict? - -> why does Ougi think that that's why Gaen brought Episode? What's the connection? - -He can transform into mist so maybe a sneaky way of acquiring the armor. Also a vampire hunter could come in handy. But he was mostly here to be bishie. Maybe you need vampiric blood to forge the sword or something like that who knows - -> Why is Ougi so determined to wrest every single detail out of Araragi's misadventures? - -to be fair, we are the same in some sense. But just being a meta stand-in for the author/critic/audience won't do it";False;False;;;;1610145739;;False;{};gilcyjn;True;t3_ktcwa0;False;False;t1_gilaybf;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gilcyjn/;1610186952;6;True;False;anime;t5_2qh22;;0;[]; -[];;;_Ridley;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/_Ridley_;light;text;t2_pmg6p5;False;False;[];;That wasn't quite Gibiate bad, but it wasn't far off.;False;False;;;;1610145771;;False;{};gild0wk;False;t3_ktafwf;False;False;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gild0wk/;1610186989;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BeardedMajin;;;[];;;;text;t2_13g74w;False;False;[];;This is why I refuse to watch Toradora. One character can definitely ruin a show.;False;False;;;;1610145806;;False;{};gild3f5;False;t3_ktboqh;False;False;t1_gil2l8x;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gild3f5/;1610187026;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Rigoku;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Elitar;light;text;t2_2j07de1;False;False;[];;If she was real person you would have no choice anyway;False;False;;;;1610145852;;False;{};gild6ss;False;t3_ktcbdf;False;True;t1_gil4z9v;/r/anime/comments/ktcbdf/what_is_a_favorite_anime_character_of_yours_that/gild6ss/;1610187077;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;Then perhaps you should binge watch the show when it's done.;False;False;;;;1610145855;;False;{};gild701;False;t3_kt9txf;False;True;t1_gikq5nc;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/gild701/;1610187080;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610145881;;False;{};gild8z4;False;t3_ktbp1n;False;True;t1_gil0h9k;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gild8z4/;1610187109;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TangledPellicles;;;[];;;;text;t2_15k1ya;False;False;[];;I lasted 10 minutes. I just can't...;False;False;;;;1610145898;;False;{};gilda5q;False;t3_ktafwf;False;True;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gilda5q/;1610187127;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BeardedMajin;;;[];;;;text;t2_13g74w;False;False;[];;The classic anime double standard.;False;False;;;;1610145910;;False;{};gildb1s;False;t3_ktboqh;False;True;t1_gil23t1;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gildb1s/;1610187140;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;If people are confused then they aren't paying attention to the dialogue. The where, how and why have all been explicitly stated by Zeke and Magath, with a bit of Willy thrown in to explain what's to come.;False;False;;;;1610145942;;False;{};gildde5;False;t3_kt9txf;False;True;t1_gil0ubk;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/gildde5/;1610187174;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FatherDotComical;;;[];;;;text;t2_2w4u4081;False;False;[];;"He’s actively the reason I don’t recommend the anime to non anime fans. - -Like so much in the show could be great for older kids, but I don’t feel ok with weird lechery vibes. - - -Even worse, he’s a big crybaby and I question how he’s considered class A rank.";False;False;;;;1610145975;;False;{};gildftj;False;t3_ktboqh;False;True;t1_gil36fc;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gildftj/;1610187213;4;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> but wouldn't that be even denser than the main story? It's like ""Who even wants to watch Kaiki Deishuu's schooldays?"" - -you say there's hope? If I get the meta of NisiOisiN";False;False;;;;1610145979;;False;{};gildg6j;True;t3_ktcwa0;False;False;t1_gilbfxn;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gildg6j/;1610187218;5;True;False;anime;t5_2qh22;;0;[]; -[];;;BeardedMajin;;;[];;;;text;t2_13g74w;False;False;[];;For me it's probably Shinji from the fate series. Every time he's on screen he becomes a problem.;False;False;;;;1610146088;;False;{};gildo4u;False;t3_ktboqh;False;True;t3_ktboqh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gildo4u/;1610187338;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GotHands;;;[];;;;text;t2_nn85h;False;False;[];;I really liked the show but fuuko from clannad ( mostly afterstory);False;False;;;;1610146090;;False;{};gildo9f;False;t3_ktboqh;False;True;t3_ktboqh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gildo9f/;1610187340;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BigFellaCommenter;;;[];;;dark;text;t2_84z8vv5c;False;False;[];;No problem! If you end up checking any of those shows out I'd be a little curious to hear how it goes (but no obligation ofc), have a good one 😎;False;False;;;;1610146106;;False;{};gildpex;False;t3_ktavp6;False;True;t1_gil19uz;/r/anime/comments/ktavp6/good_anime_recommendations_please/gildpex/;1610187356;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rigoku;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Elitar;light;text;t2_2j07de1;False;False;[];;Probably Raito - and I don't think any explanation is needed.;False;False;;;;1610146149;;False;{};gildsld;False;t3_ktcbdf;False;True;t3_ktcbdf;/r/anime/comments/ktcbdf/what_is_a_favorite_anime_character_of_yours_that/gildsld/;1610187403;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TravisScotch--;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/TravisScotch/;light;text;t2_7fexh1u7;False;False;[];;Only one trigger original is awful. And that anime is pretty good up till a certain point. BNA and Kiznaiver are at worst average;False;False;;;;1610146183;;False;{};gildv5c;False;t3_ktd9z7;False;True;t1_gilb1f9;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gildv5c/;1610187441;2;True;False;anime;t5_2qh22;;0;[]; -[];;;amhpanther;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/amhpanther;light;text;t2_i19ga;False;False;[];;I suppose she's not singing and dancing in front of a ^theoretical audience while wearing her uniform though.;False;False;;;;1610146271;;1610147112.0;{};gile1ks;False;t3_ktbp1n;False;True;t1_gil0cpm;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gile1ks/;1610187538;2;True;False;anime;t5_2qh22;;0;[]; -[];;;djkoz78;;;[];;;;text;t2_dm17y;False;False;[];;I cannot stand him. One of the reasons i can't get thru the show.;False;False;;;;1610146274;;False;{};gile1tn;False;t3_ktboqh;False;True;t1_gila98b;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gile1tn/;1610187542;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Petricality;;;[];;;;text;t2_3ebx5s48;False;False;[];;"Great Teacher Onizuka has some similar elements. In particular the whole lesson thing gintoki does. The comedy is also pretty similar at times. - -Just be aware that the first few episodes feel pretty uncomfortable (for me at least) but just bare with it.";False;False;;;;1610146287;;False;{};gile2r4;False;t3_ktd8wk;False;True;t3_ktd8wk;/r/anime/comments/ktd8wk/anime_even_remotely_similar_to_gintama/gile2r4/;1610187556;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;The concentric structure was popularized by Attack on Titan. However, unlike AoT which uses rough edges, a lot medieval fantasy anime artists prefer to use perfectly round circles as they can be drawn and added more easily, saving time.;False;False;;;;1610146347;;False;{};gile782;False;t3_kt9rcs;False;False;t1_gikxjyt;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gile782/;1610187622;20;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> How does Ougi know the full name of the First, Shishirui Seishirou? Even Shinobu only mentioned his first name. - -[Owari ""2""](/s ""Maybe the name is such a core part of the being that spawning out of Araragi also gave her that as residue memory from Shinobu Seishirou who she ate?"") - -> Of course not, we know from Hana he is alive somehow, but that idea is fun to think about. - -It was all a dream of Kanbaru, Kanbaru was actually run over by some stranger instead of being picked up by Araragi";False;False;;;;1610146395;;False;{};gileat1;True;t3_ktcwa0;False;False;t1_gil80n8;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gileat1/;1610187678;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Luukuton;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;Hatchless;light;text;t2_kjwpo;False;False;[];;I have know clue myself, but I hope so!;False;False;;;;1610146396;;False;{};gileaum;False;t3_ktcwa0;False;False;t1_gildg6j;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gileaum/;1610187678;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Rigoku;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Elitar;light;text;t2_2j07de1;False;False;[];;Tsunayoshi Sawada - first 2 eps of this character made me drop Katekyo Hitman Reborn!. Such a pussy character;False;False;;;;1610146403;;False;{};gilebby;False;t3_ktboqh;False;True;t3_ktboqh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gilebby/;1610187685;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Espada_6;;;[];;;;text;t2_sb5ghaa;False;False;[];;Exactly. Idk where they would get Hayasaka from if they’re talking about the one from Kaguya sama. Nothing about Emma is like Hayasaka but the hair;False;False;;;;1610146452;;False;{};gileezm;False;t3_kt9rcs;False;True;t1_gil835t;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gileezm/;1610187741;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TravisScotch--;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/TravisScotch/;light;text;t2_7fexh1u7;False;False;[];;I think you got them confused with Makoto Shinkai ( He is still an other worldly director) Masaki Yuasa style is abstract but in no way does he prioritize style over substance. Tatami Galaxy, Ping Pong, and Devilman Crybaby are no where near close to valuing style over substance. Anon is just a straight up lie. Either you’ve never seen a Anon directed anime or you are just trying to stir up some shit.;False;False;;;;1610146458;;False;{};gileffw;False;t3_ktd9z7;False;True;t1_gilbshh;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gileffw/;1610187748;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sisoko2;;;[];;;;text;t2_6f6px6b;False;False;[];;"**Rewatcher** - -So do you think the first kin lost intentionally or just really sucked at fighting with swords? - -[Senjougahara](https://i.imgur.com/4sLfccg.png) saying some pretty good stuff about relationships. Answering Araragi's question a bit too cold and calculated at first but reassuring him later and getting lovey-dovey at the end. - -[Gaen](https://i.imgur.com/y2mMdTL.png) was so [badass](https://i.imgur.com/ltIU8wx.png) this episode. [This](https://i.imgur.com/feYwKRg.png) doesn't look like the reaction of a person who knows everything. - -[Beautiful](https://i.imgur.com/4uGwCPn.png) and [disturbing] (https://i.imgur.com/xk1bNVG.png) at the same time goodbye between Shinobu and Seishirou. - -Honestly the arc isn't my favorite part of the series. There are some great moments but there is also too much exposition and I don't think the pay-off is worth half a season.";False;False;;;;1610146503;;1610149121.0;{};gileir7;False;t3_ktcwa0;False;False;t3_ktcwa0;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gileir7/;1610187798;5;True;False;anime;t5_2qh22;;0;[]; -[];;;leave1me1alone;;;[];;;;text;t2_74bvy75;False;False;[];;I still hate her with a passion;False;False;;;;1610146527;;False;{};gilekg9;False;t3_ktboqh;False;True;t1_gil2ou9;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gilekg9/;1610187824;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Genericsimp;;;[];;;;text;t2_72navos4;False;False;[];;Never thought that this anime and redo of healer will aire at the same time. Boy, we're gonna ride a rollercoaster of emotions this season.;False;False;;;;1610146538;;False;{};gilela4;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilela4/;1610187837;2;True;False;anime;t5_2qh22;;0;[]; -[];;;mMeister_5;;;[];;;;text;t2_49p4u9ur;False;False;[];;Don’t watch it. Just because most people think it’s phenomenal doesn’t mean you have to.;False;False;;;;1610146554;;False;{};gilemf1;False;t3_ktd6t6;False;True;t3_ktd6t6;/r/anime/comments/ktd6t6/how_to_enjoy_aot/gilemf1/;1610187853;3;True;False;anime;t5_2qh22;;0;[]; -[];;;androiduser243;;;[];;;;text;t2_3g8rexdf;False;False;[];;Eren Jaeger in real life would be annoying asf;False;False;;;;1610146631;;False;{};giles54;False;t3_ktcbdf;False;False;t3_ktcbdf;/r/anime/comments/ktcbdf/what_is_a_favorite_anime_character_of_yours_that/giles54/;1610187940;2;True;False;anime;t5_2qh22;;0;[]; -[];;;leave1me1alone;;;[];;;;text;t2_74bvy75;False;False;[];;"Kuroko Shirai from railgun/index - -I know of way too many people who dropped the entire franchise because of her...";False;False;;;;1610146636;;False;{};gilesip;False;t3_ktboqh;False;True;t3_ktboqh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gilesip/;1610187945;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;"> Masaki Yuasa style is abstract but in no way does he prioritize style over substance. Tatami Galaxy, Ping Pong, and Devilman Crybaby are no where near close to valuing style over substance. - -Haven't seen TTG ro Devilman, but I'd say Ping Pong is. Really boring characters and bad drama with the only real noteworthy thing about it being the art style and animation. - ->Anon is just a straight up lie. Either you’ve never seen a Anon directed anime or you are just trying to stir up some shit. - -I've seen his biggest shows in Gunbuster and NGE. Both pretty convoluted in their own ways and both have tons of budgeting issues because he's terrible at that.";False;True;;comment score below threshold;;1610146642;;False;{};gileswx;False;t3_ktd9z7;False;False;t1_gileffw;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gileswx/;1610187951;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> So do you think the first kin lost intentionally or just really sucked at fighting with swords? - -""ha, dude lost his shoe, I will make him look really stupid with a very bad attack""";False;False;;;;1610146656;;False;{};giletxd;True;t3_ktcwa0;False;False;t1_gileir7;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/giletxd/;1610187967;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"Anos-sama wouldn't employ such disingenuous stratagems to kiss someone. He doesn't even have to ask, he sends a glance in their general direction and the waifus voluntarily come to him. - -[](#umucool)";False;False;;;;1610146666;;False;{};gileumu;False;t3_kt9rcs;False;False;t1_gil2uyg;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gileumu/;1610187977;21;True;False;anime;t5_2qh22;;0;[]; -[];;;nuxxism;;;[];;;;text;t2_mnnci;False;False;[];;"ngl...when they move to the overlook, and he took her shoulders, and moved in to kiss her, all I could think was ""Wind slash! Wind slash! Wind slash!""";False;False;;;;1610146675;;False;{};gilev9o;False;t3_kt9rcs;False;False;t1_gikpjoe;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilev9o/;1610187987;10;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;100% worth it;False;False;;;;1610146701;;False;{};gilexaf;False;t3_ktboqh;False;True;t1_gil3ehc;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gilexaf/;1610188018;2;True;False;anime;t5_2qh22;;0;[]; -[];;;leave1me1alone;;;[];;;;text;t2_74bvy75;False;False;[];;"I wouldn't call shinji just ""annoying"" - -He's an actual problem. A real menace who caused way too many major issues";False;False;;;;1610146705;;False;{};gilexjt;False;t3_ktboqh;False;True;t1_gildo4u;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gilexjt/;1610188022;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sarellion;;;[];;;;text;t2_100ib9;False;False;[];;"If it wasn't a girl and that kind of show, the comments would be filled by ""How can the MC be so stupid? She's obviously setting him up and he will release some ancient evil as soon as the chains are undone.""";False;False;;;;1610146743;;False;{};gilf09v;False;t3_kt9rcs;False;True;t1_giksiyh;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilf09v/;1610188063;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nettysocks;;;[];;;;text;t2_s8d167o;False;False;[];;Mami;False;False;;;;1610146802;;False;{};gilf4le;False;t3_ktcbdf;False;True;t3_ktcbdf;/r/anime/comments/ktcbdf/what_is_a_favorite_anime_character_of_yours_that/gilf4le/;1610188127;0;True;False;anime;t5_2qh22;;0;[]; -[];;;consolefreakedorigin;;;[];;;;text;t2_2baqt95w;False;False;[];;"We are going places fellas -Not decent ones but it’s still places";False;False;;;;1610146862;;False;{};gilf8wm;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilf8wm/;1610188191;1;True;False;anime;t5_2qh22;;0;[]; -[];;;consolefreakedorigin;;;[];;;;text;t2_2baqt95w;False;False;[];;Also Mc is not g@y and afraid to approach a woman;False;True;;comment score below threshold;;1610146916;;1610148119.0;{};gilfczm;False;t3_kt9rcs;False;True;t1_giksayj;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilfczm/;1610188250;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;fredthefishlord;;;[];;;;text;t2_ba5at3b;False;False;[];;Me next life as a villainous is a very good example of a recent non power fantasy isekai. Special skills or advantage is something that nearly all fantasy shonen have, so obviously most isekai do themselves, because they are fantasy. Saying it's just isekai without isekai as a generalization is just saying they are like your average fantasy manga. That's why saying it's isekai without isekai is stupid. It also makes newer people not understand what isekai actually is, which is quite annoying;False;False;;;;1610146927;;False;{};gilfdrt;False;t3_kt9rcs;False;True;t1_gil9csu;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilfdrt/;1610188260;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ultraman9513;;;[];;;;text;t2_5b2pn87v;False;False;[];;Honestly probably my favorite yuri anime, ik most say Bloom into you or Citrus and they’re definitely both great but I feel like Sakura Trick probably has the most enjoyable cast out of all of them;False;False;;;;1610146976;;False;{};gilfh8t;False;t3_kt9rcs;False;False;t1_gikruwa;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilfh8t/;1610188311;5;True;False;anime;t5_2qh22;;0;[]; -[];;;androiduser243;;;[];;;;text;t2_3g8rexdf;False;False;[];;Vinland Saga;False;False;;;;1610147000;;False;{};gilfiyj;False;t3_ktavp6;False;True;t3_ktavp6;/r/anime/comments/ktavp6/good_anime_recommendations_please/gilfiyj/;1610188337;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mahdii-;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Mahdi89;light;text;t2_1r1bjoie;False;False;[];;We had Maou Gakuin in Summer as I recall but yea I get you.;False;False;;;;1610147014;;False;{};gilfjxl;False;t3_kt9rcs;False;False;t1_gil3bb3;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilfjxl/;1610188352;6;False;False;anime;t5_2qh22;;0;[]; -[];;;dandeeo;;;[];;;;text;t2_lt3rd;False;False;[];;"> the question is, could Shinobu actually resolve her conflict? -> -> - -Maybe not, but I would have wanted the other characters to acknowledge that weakness in-series. For me this episode would have been vastly improved in Kanbaru had stuck around and then expressed some disappointment at Shinobu's cowardice. But I think this moment was probably meant to be perceived as Shinobu doing what Kanbaru said; I personally just don't think this was enough.";False;False;;;;1610147034;;False;{};gilflf8;False;t3_ktcwa0;False;False;t1_gilcyjn;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gilflf8/;1610188373;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;">we're all desperately trying to find something to say in our comments - -This is one of the main reasons why I rarely participate in rewatches. I already feel like having to overanalyze each episode to come up with a comment is dampening the overall experience.";False;False;;;;1610147050;;1610169419.0;{};gilfmkl;False;t3_ktbp1n;False;False;t1_gilb6k6;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gilfmkl/;1610188391;8;True;False;anime;t5_2qh22;;0;[]; -[];;;HereticalAegis;;;[];;;;text;t2_6xeubalv;False;False;[];;The fuck does that have to do with anything?;False;False;;;;1610147063;;False;{};gilfnh5;False;t3_kt9rcs;False;False;t1_gilfczm;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilfnh5/;1610188405;9;True;False;anime;t5_2qh22;;0;[]; -[];;;chibijosh;;;[];;;;text;t2_bkmc0;False;False;[];;Media Blasters released all of GaoGaiGar. They released the first half of the series as individual DVDs with a dub, but later released the second half as a sub only box set.;False;False;;;;1610147071;;False;{};gilfo1f;False;t3_kta0qf;False;True;t3_kta0qf;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gilfo1f/;1610188414;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TravisScotch--;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/TravisScotch/;light;text;t2_7fexh1u7;False;False;[];;"You haven’t seen any of Yuasu’s other works...... so I don’t think you are qualified to speak on his style when you’ve only seen one. - - -Never knew being convoluted is a flaw. You could have legit said it was boring and that would be a better point. Anon under a budget still managed to make episodes 25 and 26 into masterpieces that fit in directly with the movie. It’s easy to nitpick at them up until you see EoE then you realize that there is not a single way they could have done it better";False;False;;;;1610147085;;False;{};gilfp1k;False;t3_ktd9z7;False;True;t1_gileswx;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gilfp1k/;1610188429;3;True;False;anime;t5_2qh22;;0;[]; -[];;;consolefreakedorigin;;;[];;;;text;t2_2baqt95w;False;False;[];;"Glad you asked my good sire . -Imagine is it wrong to try pick up girls in a dungeon but with this dude behavior and mood - -Thanks me later - -Us fans hate wussies";False;True;;comment score below threshold;;1610147128;;False;{};gilfs77;False;t3_kt9rcs;False;True;t1_gilfnh5;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilfs77/;1610188477;-17;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"[T-Posing Mage Legend](https://i.imgur.com/4NZ7VfR.jpg) - -[](#utahapraises)";False;False;;;;1610147165;;False;{};gilfusz;False;t3_kt9rcs;False;False;t1_giky89v;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilfusz/;1610188516;30;True;False;anime;t5_2qh22;;0;[]; -[];;;amhpanther;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/amhpanther;light;text;t2_i19ga;False;False;[];;"just do one-liner ""brb crying"" comments and respond to the daily prompts like I am then. - -[](#papithumbsup)";False;False;;;;1610147176;;False;{};gilfvmx;False;t3_ktbp1n;False;False;t1_gilfmkl;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gilfvmx/;1610188528;6;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"I actually think this perpetuates the whole ""nobody is happy with it in the end"" mindset that everything with vampires seemingly has to have in this universe";False;False;;;;1610147193;;False;{};gilfwtp;True;t3_ktcwa0;False;False;t1_gilflf8;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gilfwtp/;1610188546;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;Most of the times yes, but there is rare exceptions like Konosuba. Granted that this is a parody of the genre;False;False;;;;1610147213;;False;{};gilfy80;False;t3_ktd9z7;False;False;t1_gilbdd6;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gilfy80/;1610188565;4;True;False;anime;t5_2qh22;;0;[]; -[];;;HereticalAegis;;;[];;;;text;t2_6xeubalv;False;False;[];;So you're implying that other male leads in harem anime are gay because they don't act as forward as Noir??;False;False;;;;1610147288;;False;{};gilg3qa;False;t3_kt9rcs;False;False;t1_gilfs77;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilg3qa/;1610188648;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuck_Shinji;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Fuck Shinji(fate);light;text;t2_7xrbju2m;False;False;[];;yeah but that raely happens;False;False;;;;1610147325;;False;{};gilg6eq;False;t3_ktd9z7;False;False;t1_gilfy80;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gilg6eq/;1610188687;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610147344;;False;{};gilg7tt;False;t3_ktcbdf;False;True;t3_ktcbdf;/r/anime/comments/ktcbdf/what_is_a_favorite_anime_character_of_yours_that/gilg7tt/;1610188710;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wutzabut4;;;[];;;;text;t2_152egp;False;False;[];;"**Rewatcher** - -The camera pan, the piano BGM, the expressions... Did anyone notice how no one directly remarked on the audience being empty? This episode hits *hard*, and for all the right reasons. Showing and not telling is fantastic storytelling. Hanayo's arrival is all that's needed to reinvigorate the trio on stage, and they deliver. Dated, unsettling CGI aside, I think the dance to START:DASH!! is great, and the song is too with a pretty sound and hopeful and inspiring lyrics. Eli's confrontation with μ's is just what we need to conclude the episode and to demonstrate Honoka's determination going forward. - -DQ1: Oddly enough, I've never had anxiety so bad that I couldn't demonstrate or perform something in front of people. I guess I'm always just in a ""let's get this over with"" mindset regarding those kinds of things. - -DQ2: While I am generally optimistic, I'm more of a realist and less cheerful than Honoka. I'd understand from the get-go that we'd have to start small, and that if the audience was that empty, I wouldn't be so crushed by it. I'd probably look back and think what we did wrong or what we could have done better for garnering attention and popularity, and start strategizing for the future for growth.";False;False;;;;1610147349;;False;{};gilg85z;False;t3_ktbp1n;False;False;t3_ktbp1n;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gilg85z/;1610188715;4;True;False;anime;t5_2qh22;;0;[]; -[];;;consolefreakedorigin;;;[];;;;text;t2_2baqt95w;False;False;[];;"Wow don’t forget to add the @ -Don’t be rude -Also yes";False;True;;comment score below threshold;;1610147353;;False;{};gilg8jd;False;t3_kt9rcs;False;True;t1_gilg3qa;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilg8jd/;1610188720;-13;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;"> You haven’t seen any of Yuasu’s other works...... - -Yes I have. I've seen Kemonozume and Eizouken as well. He hasn't only made the 3 shows people actually care about. - -They make boring shows too. - -End of Eva was just a mess. It's literally just an hour and a half of colorful vomit on a screen and it's impossible to tell what is happening. The ending of the series was actually interesting and unique. But it doesn't change the fact that he can't manage a budget to save his life.";False;False;;;;1610147363;;False;{};gilg98q;False;t3_ktd9z7;False;True;t1_gilfp1k;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gilg98q/;1610188731;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerdy314159265;;;[];;;;text;t2_752wc;False;False;[];;"> he's a siscon - -I'm pretty sure it's actually the reverse based on how his little sister was acting.";False;False;;;;1610147455;;False;{};gilgg04;False;t3_kt9rcs;False;False;t1_gil06ux;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilgg04/;1610188834;38;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;Rin from blue exorcist, because if he was real he would scare the crap out of me;False;False;;;;1610147485;;False;{};gilgi6p;False;t3_ktcbdf;False;True;t3_ktcbdf;/r/anime/comments/ktcbdf/what_is_a_favorite_anime_character_of_yours_that/gilgi6p/;1610188866;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Nerdy314159265;;;[];;;;text;t2_752wc;False;False;[];;"> Ah, I see it's gonna be ""that kind of show""! Well, all seasons need one, and I like ecchi trash, so let's hope they keep it interesting! - -I think that's also the moment I realized this was an ecchi.";False;False;;;;1610147597;;False;{};gilgqhv;False;t3_kt9rcs;False;False;t1_gil4v6a;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilgqhv/;1610188988;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;I get the feeling that most waifus would be completely unbearable IRL. In addition, most shounen protagonists would also be unbearable.;False;False;;;;1610147607;;False;{};gilgr7p;False;t3_ktcbdf;False;True;t3_ktcbdf;/r/anime/comments/ktcbdf/what_is_a_favorite_anime_character_of_yours_that/gilgr7p/;1610188999;3;True;False;anime;t5_2qh22;;0;[]; -[];;;pastazenko;;;[];;;;text;t2_nowwb6;False;False;[];;Chivalry is basically just a shorter Ass. War;False;False;;;;1610147674;;False;{};gilgvrw;False;t3_ktd9en;False;True;t1_gilavzq;/r/anime/comments/ktd9en/any_recommendations_for_anime_to_watch/gilgvrw/;1610189069;1;True;False;anime;t5_2qh22;;0;[]; -[];;;porcul_italian;;;[];;;;text;t2_7pidt2e6;False;False;[];;Something is stoping him: the plot;False;False;;;;1610147816;;False;{};gilh5vj;False;t3_kt9rcs;False;False;t1_gil2gvk;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilh5vj/;1610189224;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"> he can't manage a budget to save his life. - -That's more a Gainax thing than an Anno thing... - -Managing budgets is the producer's role. - -Also, you haven't seen Kare Kano, which I'd consider to be one of his best.";False;False;;;;1610147850;;False;{};gilh8a2;False;t3_ktd9z7;False;False;t1_gilg98q;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gilh8a2/;1610189260;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDampGod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheDampGod;light;text;t2_im4vi;False;False;[];;MC falling on boobs scene as an introduction to one of the main girls.;False;False;;;;1610147930;;False;{};gilhe1m;False;t3_ktd9z7;False;False;t3_ktd9z7;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gilhe1m/;1610189347;8;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;"> Managing budgets is the producer's role. -> -> - -Pretty sure it was entirely Anno's decision to specifically use more expensive paint in Gunbuster to make the final episode look worse. That's bad budgeting and a waste of money. - ->Also, you haven't seen Kare Kano, which I'd consider to be one of his best. - -Have not, but I've seen more than my fair share of clips and screenshots. There's a reason the author was really upset at the way he made the anime and wouldn't let them make more of it.";False;False;;;;1610148038;;False;{};gilhlqg;False;t3_ktd9z7;False;True;t1_gilh8a2;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gilhlqg/;1610189461;0;True;False;anime;t5_2qh22;;0;[]; -[];;;HereticalAegis;;;[];;;;text;t2_6xeubalv;False;False;[];;"Yeah, I pretty strongly disagree with your take. Whether you do or do not enjoy how protags are written in other shows doesn't matter to me in slightest. However, your insistence that characters are gay for failing to be adequately sexually forward is gross and the inherent homophobia in your use of the word ""gay"" as a derogatory term is appalling. Call me rude or whatever, I don't care. That kind of shit is disgusting.";False;False;;;;1610148056;;False;{};gilhn25;False;t3_kt9rcs;False;False;t1_gilg8jd;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilhn25/;1610189480;8;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDampGod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheDampGod;light;text;t2_im4vi;False;False;[];;I used to hate Kuroko, but I found she improved a lot in Railgun T.;False;False;;;;1610148073;;False;{};gilhob8;False;t3_ktboqh;False;False;t1_gilesip;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gilhob8/;1610189498;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610148124;;False;{};gilhry1;False;t3_ktd6t6;False;True;t1_gilemf1;/r/anime/comments/ktd6t6/how_to_enjoy_aot/gilhry1/;1610189554;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SungBlue;;;[];;;;text;t2_4t5s3f;False;False;[];;"Having special skills and advantages also doesn't necessarily make something a power fantasy. I imagine most people wouldn't want to have the life of, say, Subaru from Re: Zero. - -I know it's not recent, but The Vision of Escaflowne is another show that is more about the price of power than how great being powerful is.";False;False;;;;1610148150;;False;{};gilhtu8;False;t3_kt9rcs;False;False;t1_gilfdrt;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilhtu8/;1610189581;4;True;False;anime;t5_2qh22;;0;[]; -[];;;RogueSpartan;;MAL;[];;http://myanimelist.net/profile/roguespartan;dark;text;t2_d6226;False;False;[];;mmm. I love me some good trashy anime.;False;False;;;;1610148165;;False;{};gilhuy4;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilhuy4/;1610189598;2;True;False;anime;t5_2qh22;;0;[]; -[];;;consolefreakedorigin;;;[];;;;text;t2_2baqt95w;False;False;[];;"Well that’s your opinion -(͠≖ ͜ʖ͠≖) -Also for Pete sake use the freaking @ -Stop showing your hate for indifference ( ͡~ ͜ʖ ͡°)";False;True;;comment score below threshold;;1610148173;;False;{};gilhvhw;False;t3_kt9rcs;False;True;t1_gilhn25;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilhvhw/;1610189606;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;I personally was not a huge fan of Code Geass. It wasn’t particularly bad, but I am not a fan of mecha, so most of the fights uninterested me. I also felt there was a lot of unnecessary fan service and sexualization of underage characters. Lelouch is a pretty cool MC though, so there’s that.;False;False;;;;1610148211;;False;{};gilhy8r;False;t3_ktboqh;False;False;t1_gil3ehc;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gilhy8r/;1610189645;5;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;True;[];;False. [This is the real Ass War](https://myanimelist.net/anime/32686/Keijo);False;False;;;;1610148430;;False;{};giliecf;False;t3_ktd9en;False;True;t1_gilgvrw;/r/anime/comments/ktd9en/any_recommendations_for_anime_to_watch/giliecf/;1610189881;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDampGod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheDampGod;light;text;t2_im4vi;False;False;[];;"I'm finding the use of photographed scenery and furniture really distracting while also fascinating. I wonder where they got the silver Morgan with purple upholstery? - -The rest of show is pretty much your usual edgy gun-fu fair. Bets on whether the BL will be bait or go somewhere, I think it's going to be bait.";False;False;;;;1610148506;;False;{};gilik2c;False;t3_ktafwf;False;False;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gilik2c/;1610189967;4;True;False;anime;t5_2qh22;;0;[]; -[];;;QuadraKev_;;;[];;;;text;t2_pdajvvt;False;False;[];;gay;False;False;;;;1610148549;;False;{};gilin5j;False;t3_kt9rcs;False;False;t1_gilhvhw;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilin5j/;1610190012;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"[If your crush looks at you like that,](https://i.imgur.com/HjMWyDL.jpg) then she either likes you too or she's canadian and is being polite. To play it safe, assume the latter. - -[](#helmetbro)";False;False;;;;1610148567;;False;{};gilioiy;False;t3_kt9rcs;False;False;t1_gikyc4s;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilioiy/;1610190032;29;True;False;anime;t5_2qh22;;0;[]; -[];;;consolefreakedorigin;;;[];;;;text;t2_2baqt95w;False;False;[];;( ͡~ ͜ʖ ͡°) my bro;False;False;;;;1610148586;;False;{};gilipun;False;t3_kt9rcs;False;True;t1_gilin5j;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilipun/;1610190052;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Best_in_Za_Warudo;;;[];;;;text;t2_12b21a;False;False;[];;"He's a bit annoying at times but the show never beats you in the head with him as opposed to something like Zenitsu in Demon Slayer. - -Also his banter with Luffy and Chopper is great in my opinion.";False;False;;;;1610148661;;False;{};gilivet;False;t3_ktboqh;False;True;t1_gile1tn;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gilivet/;1610190137;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kadmos1;;;[];;;;text;t2_95i99;False;False;[];;" - -First kiss was with the childhood friend that is also the female protagonist? I might be wrong but I believe that rarely happens in harem series. If anyone knows other series that has had this happen, please list some! For those that the web/light novels, does Noir get to actually go full lewd with his harem one at a time excluding his sister, and if so, is Emma is his first? Were I am Noir and Emma was willing, I would be getting as lewd with her as often as possible, including pregnancy.";False;False;;;;1610148684;;False;{};gilix5x;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilix5x/;1610190164;17;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;This is the quality content we need more of in this sub, amazing write-up!;False;False;;;;1610148797;;False;{};gilj5e8;False;t3_kta0qf;False;True;t3_kta0qf;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gilj5e8/;1610190292;3;True;False;anime;t5_2qh22;;0;[]; -[];;;OingoBoingo-;;;[];;;;text;t2_8cbjydnf;False;False;[];;Well reading all 10 of these comments for a new show and they are mostly not great, I am too scared to watch. Please someone say something positive! lol;False;False;;;;1610148799;;False;{};gilj5jd;False;t3_ktafwf;False;True;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gilj5jd/;1610190294;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;Made me go watch [that video](https://www.youtube.com/watch?v=xa-4IAR_9Yw) again, it is a fun one.;False;False;;;;1610148847;;False;{};gilj96a;False;t3_kt9rcs;False;False;t1_gilioiy;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilj96a/;1610190351;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Kadmos1;;;[];;;;text;t2_95i99;False;False;[];;"u/echykr4 said ""Ecchi fantasy show where the male lead doesn't even hesitate in kissing or hugging girls when he needs to? I'm sold. "" - - -Rito Yuuki could learn a thing or two from that. It is obvious that Rito wants to get it on with his harem (except with his sister Mikan because that would horrible) and vice versa. However, Rito is too much of a wuss to let Little Rito to do the talking!";False;False;;;;1610148856;;False;{};gilj9tu;False;t3_kt9rcs;False;False;t1_gil4zdj;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilj9tu/;1610190361;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Royal_Heritage;;;[];;;;text;t2_8wglzuge;False;False;[];;Myne from bookworm wasn't powerful, it was the total opposite. She had to earn her place thru sweat and tears with trial an error in order to find the right answer to create books. Her whole learning arc in her very first years was totally filled with hurdles aside from her debilitating sickness. If she had been OP as you claim she would had dominated the market from the very first episode.;False;False;;;;1610148859;;False;{};gilja1v;False;t3_kt9rcs;False;True;t1_gil9csu;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilja1v/;1610190365;2;False;False;anime;t5_2qh22;;0;[]; -[];;;QuadraKev_;;;[];;;;text;t2_pdajvvt;False;False;[];;It's not worth it man. Dude's like 12 either mentally or physically;False;False;;;;1610148877;;False;{};giljben;False;t3_kt9rcs;False;False;t1_gilhn25;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giljben/;1610190385;12;True;False;anime;t5_2qh22;;0;[]; -[];;;IXajll;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ixajii;light;text;t2_ob6j8;False;False;[];;Also I wouldn’t really call Konksuba a Harem since the girls aren’t really after his dick.;False;False;;;;1610148900;;False;{};giljd58;False;t3_ktd9z7;False;False;t1_gilfy80;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/giljd58/;1610190411;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tehsigzorz;;;[];;;;text;t2_gwxqygy;False;False;[];;"First Timer - -I am a little burnt out from writing reactions but had to today cuz best girl is back. - -Questions: - -1. I absolutely love whenever the concept of self improvement is brought up in any medium. You have to keep working on yourself and be the best version possible. There is no end goal but you still have to keep striving for greatness. Their convo was adorable and it showed that even though they are together (which many series consider to be endgame) you still have to keep working on it and make sure the 2 are still compatible. This is especially important considering they are at life-stage where they are most prone to change so its vital they change positively. - -Its also nice to see araragi ask for some advice/opinion right after he failed to asked kanbaru for help. Hes slowly growing out of his selfish yet ironically selfless approach to problems. - -I am excited to rewatch to see all the subtle foreshadowing and hints I may have missed but I am also really excited to see how much more I appreciate the date episode in bakemonogatari since I am more attached to araragi and senjougahara as well as their relationship. - -&#x200B; - -2. Its great to see a tactical battle play out. I didnt give my predictions on how the fight will pan out but I expected shinobu to take araragi's place kiss shot style (due to severed link), fight the first servant and then the heartfelt rejection. Its also the first time that araragi doesnt get his guts spilled out so yay. I was kinda hoping for a longer convo between the 2 tbh if not a half episode dialogue between the 2. - -&#x200B; - -3. I am not sure exactly how her powers work but I read that as oshino having a 1 up over gaen by entrusting the city and its problems to araragi as well as giving him the talisman (he left it for araragi and its different to Gaen's right?). He believed in araragi and in turn araragi was able to take care of it. Gaen looked specially surprised instead of sly so I feel like she was genuine in that reaction. She hasnt spent enough time with araragi's unpredictability making it hard for her to see what will happen next. I may be reading this totally wrong tho. - -&#x200B; - -4. Ougi definitely knew about everything given that araragi only knew the first servant's first name while ougi said his full name. If my theories are right and ougi and araragi share memories due to their mental connection then she couldve obtained that info after shinobu talked more about the first servant to araragi later on. - -&#x200B; - -5. So araragi was in an awful place before kizu and slowly form there it seemed like he was improving as he got new friends and started opening up more and changing. He has definitely matured throughout but it seems like he is in a worse spot after hachikuji's disappearance highlighted by his bleak ending monologue. It also fits into my thoughts on ougi being formed by ararargi same way hanekawa creates oddities. The connection between ougi and araragi is too great for me to dismiss this and it fits in so far. Or I could be interpreting the story so it fits this idea...we will find out very soon it seems like. - -'I know everything' verus 'I dont know anything'. I still dont know if darkness is involved with ougi so its a 50/50 on that but her motivations are still not clear cut. She wants balance just like Oshino but what does she want with araragi? Both her and Gaen have araragi in their main plans. I feel like ougi needs araragi whereas Gaen is needs araragi to disrupt ougi's plan rather than benefit her. - -Now if we consider ougi to be some extension to araragi's mental (considering many hints on shared memories and both referring to time a lot) then is she doing whatever she is for the benefit of araragi or the opposite? At first it seemed like maybe she was helping ararag in a roundabout way most evidently from the first 2 episodes of this installment but just did it in a roundabout way without considering everyone else. Like I said above araragi is selfess to the point where its selfish so ougi could be simply the selfish part without the selfless aspect. She could be trying to help araragi better himself after hachikuji (which is probably when ougi was created) but at the cost of his relationships with others. - -We know hachikuji and araragi will meet in the afterlife so I could def see araragi finding peace and closure from her which will help him in removing ougi as she has a direct link with his mental state/memory. - -As for Gaen she realizes that araragi is the center of the supernatural aspect of the town so if ougi was to have her way then he would no longer be the person oshino entrusted this town with and it would spiral out of control or turn for the worse so I think Gaen is purely a reaction to ougi's appearance which would be ironic given Gaen has the ability to be on top of everything. - -&#x200B; - -6. I did quite enjoy the comedy that was missing from the first half but I didnt enjoy it as much as I thought I would. Kanbaru's entire monologue was amazing as well as every scene araragi was in but I was hoping for a bit more out of shinobu. It doesnt help that Gaen was a huge part of this arc and personally isnt as engaging as any of the other great characters. - -Its not as good as tsubasa tiger, medusa, hitagi end or sudachi arc but it was still very enjoyable and on line with what this series generally offers. I am wondering if a different placement of this arc mightve improved by opinion given that its tonal shift and quality contrasted so much with the perfection of sudachi arc.";False;False;;;;1610148918;;False;{};giljeea;False;t3_ktcwa0;False;False;t3_ktcwa0;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/giljeea/;1610190429;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuck_Shinji;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Fuck Shinji(fate);light;text;t2_7xrbju2m;False;False;[];;God the fucking dialogue the 24 min felt a hour long;False;False;;;;1610148998;;False;{};giljke1;False;t3_ktafwf;False;False;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/giljke1/;1610190520;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;"Some signs that a show is probably going to suck: - -- Light novel adaptation basically lowers the chances of it being good - -- Isekai with a generic setting is never a good sign - -- Cg animation is a huge red flag most of the time - -- Generic kirito Looking protagonist shows that the writers didn’t care about the story - -- Fans that claim it gets “Good” later";False;False;;;;1610149025;;False;{};giljmff;False;t3_ktd9z7;False;False;t3_ktd9z7;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/giljmff/;1610190550;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Buglante;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Vinland saga goat;light;text;t2_6nah75po;False;False;[];;"Vinland saga if you want something similar in terms of character development, complexity, visuals and maybe instrumentals. It's plot is amazing as well and Thorfin past s1 having some of the best development in anime/manga i've seen. - -Check it out, is very good";False;False;;;;1610149093;;False;{};giljrna;False;t3_ktavp6;False;True;t3_ktavp6;/r/anime/comments/ktavp6/good_anime_recommendations_please/giljrna/;1610190630;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Purest_Prodigy;;MAL;[];;"http://myanimelist.net/animelist/Purest_Prodigy?&order=4";dark;text;t2_bt3t9;False;False;[];;Getting *strong* Smartphone Isekai vibes from this.;False;False;;;;1610149099;;False;{};giljs0g;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giljs0g/;1610190635;5;True;False;anime;t5_2qh22;;0;[]; -[];;;IXajll;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ixajii;light;text;t2_ob6j8;False;False;[];;Really bad CGI.;False;False;;;;1610149099;;False;{};giljs0t;False;t3_ktd9z7;False;True;t3_ktd9z7;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/giljs0t/;1610190635;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HalfAssedSetting;;MAL;[];;https://myanimelist.net/profile/Germs_N_Spices;dark;text;t2_stu9a;False;False;[];;eey that reminds me of Tribal Wars;False;False;;;;1610149132;;False;{};giljuh4;False;t3_kt9rcs;False;True;t1_giktpez;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giljuh4/;1610190678;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RimuZ;;MAL;[];;http://myanimelist.net/animelist/LtCrabcake;dark;text;t2_8df66;False;False;[];;The cowardly but rises to the occasion mentality is a great thing to have in shounen shows and especially one about heroes. I just wish they didn't waste it on such a unlikeable character.;False;False;;;;1610149199;;False;{};giljzj8;False;t3_ktboqh;False;True;t1_gil4e1g;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/giljzj8/;1610190757;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610149207;;False;{};gilk07e;False;t3_ktd8wk;False;True;t3_ktd8wk;/r/anime/comments/ktd8wk/anime_even_remotely_similar_to_gintama/gilk07e/;1610190767;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IXajll;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ixajii;light;text;t2_ob6j8;False;False;[];;Wait so there isn’t any overarching storyline at all in Space Dandy? I really hoped there would be one since I am pretty hit or miss with episodic shows.;False;False;;;;1610149218;;False;{};gilk11i;False;t3_ktd8wk;False;False;t1_gilbzvn;/r/anime/comments/ktd8wk/anime_even_remotely_similar_to_gintama/gilk11i/;1610190778;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BakarinaLovesMaria;;;[];;;;text;t2_7aztnfnj;False;False;[];;Especially that last one. Like I want to watch something good now not halfway in when I’m too invested to give up after it’s still terrible.;False;False;;;;1610149310;;False;{};gilk7v1;True;t3_ktd9z7;False;True;t1_giljmff;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gilk7v1/;1610190886;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Peacemkr45;;;[];;;;text;t2_15b5b7;False;False;[];;Chivalry was a MUCH better anime. forget that they both released around the same time and EP1 of each starts almost identically.;False;False;;;;1610149340;;False;{};gilka0t;False;t3_ktd9en;False;False;t1_gilgvrw;/r/anime/comments/ktd9en/any_recommendations_for_anime_to_watch/gilka0t/;1610190917;1;True;False;anime;t5_2qh22;;0;[]; -[];;;baniRien;;;[];;;;text;t2_wxbyg;False;False;[];;"> It kind of cops out of the parallels with Senjou and Kanbaru - -That is the point, isn't it? Both because you can't always repeat the same narrative, but also because Shinobu is the type to cop out of feelings. That she even showed up at all could be considered progression.";False;False;;;;1610149420;;False;{};gilkg3a;False;t3_ktcwa0;False;False;t1_gilaybf;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gilkg3a/;1610191005;9;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;Well shit, here I was under the impression that they never fully released it. Still I have to imagine it's hard to find now.;False;False;;;;1610149428;;False;{};gilkgng;True;t3_kta0qf;False;False;t1_gilfo1f;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gilkgng/;1610191014;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> She hasnt spent enough time with araragi's unpredictability making it hard for her to see what will happen next. I may be reading this totally wrong tho. -> ​ - -she was already saying that he is unpredictable and sometimes causes the unexpected outcome so this is probably right. - -> I am wondering if a different placement of this arc mightve improved by opinion given that its tonal shift and quality contrasted so much with the perfection of sudachi arc. - -hmm I think the core problem is that the exposition was a tad too long and Shinobu did not shine enough but I think this arc leads well into the next. We have been retracing events step by step in this Final Season so far and now we managed to get to the place where Koyomimonogatari ended.";False;False;;;;1610149445;;False;{};gilkhxf;True;t3_ktcwa0;False;False;t1_giljeea;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gilkhxf/;1610191033;5;True;False;anime;t5_2qh22;;0;[]; -[];;;baniRien;;;[];;;;text;t2_wxbyg;False;False;[];;"> A straight and honest answer from Senjougahara - -Senjougahara is always honest. Maybe not straight.";False;False;;;;1610149464;;False;{};gilkjen;False;t3_ktcwa0;False;False;t1_gilbfxn;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gilkjen/;1610191057;7;True;False;anime;t5_2qh22;;0;[]; -[];;;JadeDragon56;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/JadeDragon56;light;text;t2_ee93o;False;False;[];;What didn't you like about it?;False;False;;;;1610149503;;False;{};gilkma9;False;t3_ktd6t6;False;True;t3_ktd6t6;/r/anime/comments/ktd6t6/how_to_enjoy_aot/gilkma9/;1610191098;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;Even if she didn't have knowledge on paper making she had tons of knowledge about other things which made her op. Her recipes and designs for such gave her backing in the merchant business. No one especially a little girl comes up with revolutionary new ideas and recipes. She's not op in the general route of gaining some gift from god, but she's op for having otherworldly(our earth) knowledge that let her gain power in the medieval style world. She depending on her life experiences and what she read and learned in school could improve healthcare, military tactics, efficient work practices and tools. She's already shown techniques and ideas completely unheard of. The lack of knowing how to make paper is fine, but she still knew the general process. Also the disease is more so a thing to do just magic in that world, so I can't say it's a valid point as all people with mana experience it. Just that rich people have the care to survive it. With the hints that trombe fruit absorbs mana and that it's useful for her paper she will surely come up with that idea eliminating that weakness entirely.;False;False;;;;1610149532;;False;{};gilkohd;False;t3_kt9rcs;False;True;t1_gilja1v;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilkohd/;1610191131;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;"Villainess could be argued since she uses her knowledge of the game to make everyone love her. Obviously after the first season I don’t think it could continue like that as the games plot should be done, and she never mentioned sequels or spinoffs of the original dating game. - -Anyway alright I get that I’m just generalizing it as a fantasy series, but it being a power fantasy, which are rarely done outside of isekai as far as I know, compared to fantasy shows that focus more on actual fantasy. You can hate it it wasn’t meant to be anything deep like I don’t get what’s the big idea. Like if you think this is gonna be someone’s first look at anime specifically power fantasy and they think it’s an isekai because of my comment even though my comment states why it’s not an Isekai that’s a stretch of an argument. This thread is gonna be people who watch tons of anime each season and especially those who like power fantasies to an extent. Normal fantasy lovers like people who might like Yona or Made in Abyss probably don’t like power fantasies just due to power fantasies being the same on plot direction as most modern isekais. Like describing power fantasies just sounds like describing the modern isekai. Only difference is the another world aspect. Again I have no issues with the show and wasn’t even trying to be super deep, but it seems like people replying are trying to make my comment more intense than it was. Like if I added sarcasm or a joke tag would it be better. - -I just pointed out things which I don’t know if are present in power fantasies, but I know they aren’t in fantasy anime, which those things are like baseline isekai nowadays which might be because that’s how all isekai are structured. We had hints to a harem, unique overpowered skills, special grinding place to grow exponentially faster than the average person in said world, etc. Tbh I also see these some of qualities in power cultivation manwha. These kind of power fantasies all have similarities with one another, it’s just this series was pretty much borderline your typical op isekai character premise. Nothing wrong with that as I watch these kinds of shows, and I came in expecting this to be an isekai just from the synopsis. Like the tags are the same just without isekai. What makes an isekai any different besides the reincarnation part? It’s the same formula and show if you add or remove dying. Dying doesn’t add much to the characters besides like one this season which would be the Mushoku Tensei anime. Most of them don’t even care about trying to go back so it just becomes a power fantasy show with references to our world. - -Like this show could be an isekai. The main character knew of bullets yet we’ve seen no guns from any of the nobility around him. If guns are scarce the word of bullet just happened to show up in his life. Like guns even primitive ones should be better than some of the fighting we will see minus the magic. I would see them trying to implement guns just like we did around this time period. This could just be a nonsensical thing with the character knowing the word bullet, and that’s fine to me. I’m just saying if guns never show up in the show the idea shouldn’t be there unless he was isekaied or the author slipped up. Not that big of a deal, but you get what I’m saying.";False;False;;;;1610149565;;False;{};gilkqx8;False;t3_kt9rcs;False;True;t1_gilfdrt;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilkqx8/;1610191167;0;True;False;anime;t5_2qh22;;0;[]; -[];;;pbryjtime;;;[];;;;text;t2_9mguzr7n;False;False;[];;This one looks like it has potential, I absolutely love comedy ~~isekai's~~ fantasy (my bad lol). Might be this seasons surprise GOAT for me.;False;False;;;;1610149582;;False;{};gilksbb;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilksbb/;1610191189;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;I know right it’s the worst defense for a bad anime;False;False;;;;1610149607;;False;{};gilku7u;False;t3_ktd9z7;False;True;t1_gilk7v1;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gilku7u/;1610191217;1;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"If you don't enjoy it you don't enjoy it. If you want to say does it get better I would say yes but again depends on what you aren't enjoying. - -You are going to find highly acclaimed shows and films that don't work for you everyone does. I personally don't like Akira, FLCL and recently Dr Stone. That's going to be true in any media. It's okay to just drop something instead of forcing yourself to waste time on media you don't like.";False;False;;;;1610149725;;False;{};gill35d;False;t3_ktd6t6;False;True;t3_ktd6t6;/r/anime/comments/ktd6t6/how_to_enjoy_aot/gill35d/;1610191356;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SapiMan;;;[];;;;text;t2_5y0iyzwc;False;False;[];;I just want to point out that the talisman in the shrine is not the talisman Nadeko eats in Medusa. The novel really makes this clear.;False;False;;;;1610149741;;False;{};gill4c2;False;t3_ktcwa0;False;False;t3_ktcwa0;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gill4c2/;1610191374;8;True;False;anime;t5_2qh22;;0;[]; -[];;;SleepyPanda333;;;[];;;;text;t2_1gs0rqmo;False;False;[];;"Ep1 - -It’s nice to see that over a decade later, GoHands is still a total boss at animating fight and action scenes. - -Though I wish GoHands would go back to their old [art style (K project s1 on the left and top and K project Seven Stories on the right and bottom)](https://www.reddit.com/r/Kproject/comments/ktf1x9/gohands_art_style_changes_k_s1_vs_k_seven_stories/). I’m not sure why they changed... - -Still, the anime is visually beautiful (especially the backgrounds) and is an interesting story so I’ll keep watching.";False;False;;;;1610149803;;False;{};gill93c;False;t3_ktafwf;False;False;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gill93c/;1610191444;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Yeah he took the Oshino's talisman from the shrine but he got the Kuchinawa one from Gaen;False;False;;;;1610149858;;False;{};gilldao;True;t3_ktcwa0;False;False;t1_gill4c2;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gilldao/;1610191507;5;True;False;anime;t5_2qh22;;0;[]; -[];;;fredthefishlord;;;[];;;;text;t2_ba5at3b;False;False;[];;">Villainess could be argued since she uses her knowledge of the game to make everyone love her - -She most certainly does not. She's dense as fuck, they fell in love with her because of her personality, not - because of some in game knowledge that she used. - -And you're trying to say isekai=power fantasy, which is completely wrong. Take a look at konosuba for a very popular example of a not power fantasy isekai. Just because what you notice are the power fantasy ones, doesn't suddenly make it so that it's reasonable to say any power fantasy is just isekai without isekai.";False;False;;;;1610149883;;False;{};gillf82;False;t3_kt9rcs;False;True;t1_gilkqx8;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gillf82/;1610191537;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;Domestic Girlfriend tho.;False;False;;;;1610149902;;False;{};gillgpc;False;t3_kt9rcs;False;False;t1_gikpjoe;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gillgpc/;1610191560;10;True;False;anime;t5_2qh22;;0;[]; -[];;;BakarinaLovesMaria;;;[];;;;text;t2_7aztnfnj;False;False;[];;Someone could make the argument that hooks are the best part of any decent show. A fun concept with lovable characters used is all you really need to make a good show. That doesn’t need 10 episodes to be established.;False;False;;;;1610149908;;False;{};gillh4n;True;t3_ktd9z7;False;True;t1_gilku7u;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gillh4n/;1610191567;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PizzaInSoup;;;[];;;;text;t2_5dks7kbe;False;False;[];;getting mono: the anime;False;False;;;;1610149943;;False;{};gilljqn;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilljqn/;1610191608;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;Emotions in *this* anime? I don't believe it.;False;False;;;;1610149958;;False;{};gillkxf;False;t3_kt9rcs;False;False;t1_gilela4;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gillkxf/;1610191626;4;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"Self-insert generic bland MC starting out with a beautiful childhood friend in love with him >_> - -""How can I use my Great Sage Skill without the headache sideffect?"" - is that so hard? Would probably have just told him about the kissing thing. - -200 years chained up in one place and she *wouldn't* rather die than stay chained up? ""Great Sage - how do I undo the chains on this girl without harming her?"" But of course then he wouldn't have exclusive access to a chained up hot chick, would he. - -""Create Skill. You can create pretty much any skill you mind can think of."" How about a skill to escape the death chains? - -What ""materials"" are they supposed to gather? - -Super Rare Level 99 Dead Reaper being one-shot by rock >_> - -This feels like it's supposed to be a gag comedy but it's waaay too low energy to be one. A super bland I-can't-believe-it's-not-isekai with the occasional kiss/boob/incest gag. I'll give it one more ep against my better judgement.";False;False;;;;1610149987;;False;{};gilln23;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilln23/;1610191659;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"""Kiss random THOTs.""";False;False;;;;1610150059;;False;{};gillsj8;False;t3_kt9rcs;False;False;t1_gil2gvk;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gillsj8/;1610191742;41;True;False;anime;t5_2qh22;;0;[]; -[];;;mangiamelicarmelo;;;[];;;;text;t2_5u87xke3;False;False;[];;I have the idea that the last thing, it's about an anime in generaly, 🤔;False;False;;;;1610150114;;False;{};gillwnc;False;t3_ktd9z7;False;True;t1_giljmff;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gillwnc/;1610191804;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"> Olivia is so funny. The fact that she cannot break the seal of those chains even with her broken skill and OP power probably means that Noir will need a lot of LP points to eventually free her. - -I'm guessing it's more likely the writer didn't even consider that her OP skills and/or Noir's Great Saging could be used to free her because she's only there to be a hot chained up plot device and nothing more.";False;False;;;;1610150151;;False;{};gillzee;False;t3_kt9rcs;False;False;t1_giktzub;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gillzee/;1610191845;5;True;False;anime;t5_2qh22;;0;[]; -[];;;ragnar4king;;;[];;;;text;t2_1tdy6v1;False;False;[];;Well, that whole car ride scene did feel pretty dream-like tbf;False;False;;;;1610150228;;False;{};gilm4yv;False;t3_ktcwa0;False;False;t1_gileat1;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gilm4yv/;1610191932;5;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;Light - death note;False;False;;;;1610150340;;False;{};gilmdcm;False;t3_ktcbdf;False;True;t3_ktcbdf;/r/anime/comments/ktcbdf/what_is_a_favorite_anime_character_of_yours_that/gilmdcm/;1610192062;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Royal_Heritage;;;[];;;;text;t2_8wglzuge;False;False;[];;"> Even if she didn't have knowledge on paper making she had tons of knowledge about other things which made her op. - -That would be the equivalent of getting a degree on any field and being immediately OP because you have knowledge avobe the average highschool student and people below. But in reality job hunting and doing minial jobs until someone actually notices your actual skills is the harsh reality. Same principle applies to Myne's vast knowledge. She earned her place with hard work and a lot of trial and error. - ->Also the disease is more so a thing to do just magic in that world, so I can't say it's a valid point as all people with mana experience it. Just that rich people have the care to survive it. - -Wich pretty much proves my point, that she had a severe handicap in a long run for success. She didn't trade any of her long and hard working inventions in the early episodes in order to secure her life in the long run. Did she? - ->With the hints that trombe fruit absorbs mana and that it's useful for her paper she will surely come up with that idea eliminating that weakness entirely. - -This is pretty much a speculation not an actual fact. And given how the second part of the second season expanded the world in magic elements there can be many ramifications on how to deal with that handicap. - -Again, having knowledge doesn't make anyone OP if you can't stand on your own two feet and even depend on some help on people who are avobe your own level, just like in real life.";False;False;;;;1610150421;;False;{};gilmjej;False;t3_kt9rcs;False;True;t1_gilkohd;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilmjej/;1610192156;1;False;False;anime;t5_2qh22;;0;[]; -[];;;SapiMan;;;[];;;;text;t2_5y0iyzwc;False;False;[];;"[Spoiler reply](/s ""maybe it is because she herself was made from his essence, so she got her memory or something? That could explain how vast her knowledge is considering Seishirou claimed to be near omnipotent regarding the aberration in the town in the novel"")";False;False;;;;1610150428;;False;{};gilmjyf;False;t3_ktcwa0;False;False;t1_gil80n8;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gilmjyf/;1610192165;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610150499;;False;{};gilmp2u;False;t3_ktcbdf;False;True;t3_ktcbdf;/r/anime/comments/ktcbdf/what_is_a_favorite_anime_character_of_yours_that/gilmp2u/;1610192243;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;I agree the most important part of any story is the beginning;False;False;;;;1610150514;;False;{};gilmq7i;False;t3_ktd9z7;False;True;t1_gillh4n;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gilmq7i/;1610192260;2;True;False;anime;t5_2qh22;;0;[]; -[];;;valask2;;;[];;;;text;t2_6k0xfhs1;False;False;[];;I know about it,tbh anyone that has watched Gintama knows about it because they had a crossover episode. Also the author of Sket Dance worked as Sorachi's assistant.;False;False;;;;1610150548;;False;{};gilmsel;True;t3_ktd8wk;False;True;t1_gilk07e;/r/anime/comments/ktd8wk/anime_even_remotely_similar_to_gintama/gilmsel/;1610192294;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Roronoa_Zoro-;;skip7;[];;;dark;text;t2_6glp1tyo;False;False;[];;"Drop it and just pick it up whenever you’re ready again.. Forcing yourself to start a series isn’t going to make it more enjoyable - -Let me tell you now though, Attack on Titan is incredibly well thought out.. People praise the shit out of the show because future reveals and plot twist turn everything they knew about the show upside down - - -But if you aren’t already enjoying Season 1, I’d just suggest to drop it, it simply isn’t worth the hassle";False;False;;;;1610150581;;1610169448.0;{};gilmuwv;False;t3_ktd6t6;False;True;t3_ktd6t6;/r/anime/comments/ktd6t6/how_to_enjoy_aot/gilmuwv/;1610192331;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Purest_Prodigy;;MAL;[];;"http://myanimelist.net/animelist/Purest_Prodigy?&order=4";dark;text;t2_bt3t9;False;False;[];;I would consider that a different category speedrun;False;False;;;;1610150597;;False;{};gilmw0i;False;t3_kt9rcs;False;False;t1_gikz76x;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilmw0i/;1610192349;17;True;False;anime;t5_2qh22;;0;[]; -[];;;valask2;;;[];;;;text;t2_6k0xfhs1;False;False;[];;Are you referring to the blackmail scene? I've watched some clips of Great Teacher Onizuka and I liked all of them.;False;False;;;;1610150617;;False;{};gilmxhc;True;t3_ktd8wk;False;True;t1_gile2r4;/r/anime/comments/ktd8wk/anime_even_remotely_similar_to_gintama/gilmxhc/;1610192371;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;we even had the drive through the tunnel and all but that seems to always happen with cars in Monogatari;False;False;;;;1610150633;;False;{};gilmym7;True;t3_ktcwa0;False;False;t1_gilm4yv;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gilmym7/;1610192388;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;"She specifically knew the characters and their traumas which she handled to make sure they can’t hate her. I know she doesn’t realize they love her, but she use otherworldly knowledge to gain favor in them. - -Like I said not all isekai are power fantasies, but most modern ones are. Like all the ones you’ll name as outside this group are all the mainstream ones which make sense since people don’t wanna watch power fantasy three times each season. Just cause 5 isekai within the past ten years aren’t power fantasy does not define the trend. The trend is they are power fantasy because of SAO’s popularity that’s why the explosion of isekai happened. When people complain about isekai they don’t mean ReZero or Konosuba they mean all the power fantasy types that followed in SAO’s fame cause that’s what most isekai released each season are. Plus again power fantasy is not equivalent to fantasy for people who like fantasy series. Power fantasy is seen primarily portrayed in isekai. Besides this show I can’t think of another within the 2010s. There is another this season which I say feels the same as this show just with different levels of op mc. It’s the one with the kid from a village that is near the world’s last dungeon. Other than those two which are both airing now it’s hard to think of any that aren’t also isekai. Like not all isekai are fantasy, but since most of them are people think of fantasy settings for isekai when you bring it up. Genuine power fantasies are rarer than isekais with power fantasies. Like when was the first power fantasy manga/ln cause if it’s after the trend of isekai power fantasies than my statement isn’t false anymore. We just assume power fantasies existed prior to these types of isekais, but if it’s the reverse my statement is fine in all regards.";False;False;;;;1610150695;;False;{};giln33y;False;t3_kt9rcs;False;True;t1_gillf82;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giln33y/;1610192459;1;True;False;anime;t5_2qh22;;0;[]; -[];;;valask2;;;[];;;;text;t2_6k0xfhs1;False;False;[];;Thanks,it looks good!;False;False;;;;1610150707;;False;{};giln425;True;t3_ktd8wk;False;True;t1_gilbzvn;/r/anime/comments/ktd8wk/anime_even_remotely_similar_to_gintama/giln425/;1610192474;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KingOfOddities;;;[];;;;text;t2_mxvhzxf;False;False;[];;"Only Araragi can look badass while saying: ""I trust that they understand that the man Araragi Kotomi prioritizes little girls over lovers and friends.""";False;False;;;;1610150722;;False;{};giln55x;False;t3_ktcwa0;False;False;t3_ktcwa0;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/giln55x/;1610192492;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;I wasn’t thinking of any show in specific when I typed that up it’s a statement that I can’t stand seeing because if you have ask the question does a good a series get “good” later on then the show has probably failed;False;False;;;;1610150749;;False;{};giln74b;False;t3_ktd9z7;False;True;t1_gillwnc;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/giln74b/;1610192521;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheCaptain53;;;[];;;;text;t2_pnjkt;False;False;[];;"I saw the title of the show and immediately through trashy, low quality harem fantasy anime. But this is so much more interesting. Its built on an interesting premise, an MC who's legitimately funny, and the first side character that isn't overwhelmingly obnoxious. I have high hopes for this show. - -Kind of reminds me of the flip or Oresuki where it seems to present itself as a trashy harem anime, and then revealed itself to be so much more. I think this show also has an element of self awareness that will make it very funny and very entertaining.";False;False;;;;1610150874;;False;{};gilng25;False;t3_kt9rcs;False;False;t1_gikyxjp;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilng25/;1610192658;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Areouf;;;[];;;;text;t2_3nyxnua3;False;False;[];;"I don't think it was specifically explained in the light novel, but I presume it's something like the whole ""you can't ask a genie for more wishes"" kind of thing. - -Also, if I remember correctly, the magnitude of the headache is directly proportional to how difficult to answer the question is. With this in mind, another possibility is that asking about the headaches would give him such a bad headache so quickly that he would be physically incapable of lasting long enough to get the answer without already knowing a way of alleviating the headaches?";False;False;;;;1610151114;;False;{};gilnxan;False;t3_kt9rcs;False;False;t1_gil2gvk;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilnxan/;1610192920;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Satai4561;;;[];;;;text;t2_1ue1rlm;False;False;[];;"Anime in Germany had a rough start. In 1971 the first anime ever shown in german TV was [speed racer](https://myanimelist.net/anime/1445/Mach_GoGoGo) (Mach go go go). - -""Immediately after the broadcast, protests began from parents, educators, and the media: Bayerischer Rundfunk spoke of a ""scandal,"" the newspaper Die Welt believed to see the ""pure pleasure of a raw manslaughter mindset,"" Der Spiegel called the series a ""horror comic"" and a ""blood and carom spectacle,"" and the Pressedienst Kirche und Fernsehen (Church and Television Press Service) wrote that Speed Racer was ""comparable only to fascist hold-out films."" - from the german wikipedia page - -So yeah, the same bunch of Karens, boomers and religious nutjobs, that later on would do the same with video games btw, went ahead and did what they could do best: ruining the fun of others. - -So a really shitty start. That slowly but surely changed. Mainly with anime from the [world masterpiece theater](https://en.wikipedia.org/wiki/World_Masterpiece_Theater) and others (look at the chart of nippon animation there between 1970-80 there are quite a few that are considered german classics today) Here and there they still were censored, just to be on the safe side. - -Early 2000 was probably the golden age of anime in germany (well if you exclude recent years atleast). All the big shonen airing in free TV in the afternoon when kids got out of school. Good times \*wipes nostalgic tear like a boomer\*. Quite a few TV channels had dedicated time slots for anime. - -But that all changed when the internet nation attacked. TV gettting less popular and having less time / money forced them to go with less niche stuff. Also the fact that it is straight up easier to translate / localise western cartoons from english to german and replace anime content with those instead. - -Well, in recent years it's going uphill for anime in germany again. But I guess that is hardly a Germany specific thing and more like a general occurence.";False;False;;;;1610151167;;False;{};gilo18c;False;t3_ktagg3;False;False;t3_ktagg3;/r/anime/comments/ktagg3/did_you_know_that_70s_childrens_classic_maya_the/gilo18c/;1610192980;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610151191;;False;{};gilo2u3;False;t3_kt9rcs;False;True;t1_gil9bd8;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilo2u3/;1610193004;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ragnar4king;;;[];;;;text;t2_1tdy6v1;False;False;[];;"Plot twist: not Rouka, but Kanbaru was the ghost the whole time - -Kaiki actually died at the end of Koimonogatari, Araragi’s been dead since March as well, and that’s how she was able to meet them";False;False;;;;1610151210;;False;{};gilo49l;False;t3_ktcwa0;False;False;t1_gilmym7;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gilo49l/;1610193026;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Areouf;;;[];;;;text;t2_3nyxnua3;False;False;[];;"I suspect that they were using ""emotions"" as a euphemism for fanservice? Otherwise no idea .-.";False;False;;;;1610151295;;False;{};giloaal;False;t3_kt9rcs;False;True;t1_gillkxf;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giloaal/;1610193119;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;That's grim as hell and super contrived, I love to hate it;False;False;;;;1610151439;;False;{};gilokjx;True;t3_ktcwa0;False;True;t1_gilo49l;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gilokjx/;1610193276;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BlazeKnightX;;;[];;;;text;t2_2j1wqmla;False;False;[];;"I disagree knowledge is entirely op in a world that lacks knowledge. Your case of the degree only applies because others have that degree. Senku from Dr Stone is op because no one has that knowledge. Hard work is necessary, but they are just remaking/imitating things they’ve seen/know. Inventions and revolutionary ideas don’t appear within months of each other. They take years for the inventor to know what to do and trial and error. The fact Myne knows these things work and just needs to recreate the steps to succeed gives her an advantage to anyone in her new world trying to create similar things from scratch. - -The disease has never gone away and she hasn’t found a solution, so she hasn’t overcome it and is just dealing with it. This doesn’t diminish her overwhelming knowledge and feats. It just means she’s slower to succeed. She’s still succeeding far faster than anyone in that world should be able to. - -She’s a 20 something year old and has tons of knowledge and makes good decisions. I doubt she wants to be tied to the church forever or get stuck with a noble, so she’ll definitely try to either make the money needed to buy magic artifacts that assist her or realize trombe could save everyone. Using magic doesn’t help with the condition otherwise magical artifacts wouldn’t be the cure for nobles. So she’ll have to get to this at some point probably not in a season 3 or 4 as this show is a slow burn. I would just go spoil myself to see if she actually ever uses the trombe, but I don’t read much and don’t think I’d be interested to read this series. So I’m just going off on what the show showed me. Tbh the trombe point doesn’t even matter in the is she op or not. She’s just less op and isekai Senku.";False;False;;;;1610151458;;False;{};gilolw8;False;t3_kt9rcs;False;False;t1_gilmjej;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilolw8/;1610193296;1;True;False;anime;t5_2qh22;;0;[]; -[];;;messem10;;;[];;;;text;t2_6pcwi;False;False;[];;Any% glitched, I guess.;False;False;;;;1610151467;;False;{};gilomia;False;t3_kt9rcs;False;False;t1_gilmw0i;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilomia/;1610193306;21;True;False;anime;t5_2qh22;;0;[]; -[];;;cbumpa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cbumpa;light;text;t2_4uaglc4u;False;False;[];;"This is probably true 9 times out of 10... - -But I’m on episode 17 of Gurren Lagann and this show is great";False;False;;;;1610151715;;False;{};gilp4at;False;t3_ktd9z7;False;True;t1_gilhe1m;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gilp4at/;1610193598;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Petricality;;;[];;;;text;t2_3ebx5s48;False;False;[];;Nah the pedo shit. For like the first 3 or so episodes there’s some questionable decisions and morals Onizuka has. He grows out of them quickly tho;False;False;;;;1610151780;;False;{};gilp8ws;False;t3_ktd8wk;False;True;t1_gilmxhc;/r/anime/comments/ktd8wk/anime_even_remotely_similar_to_gintama/gilp8ws/;1610193673;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fredthefishlord;;;[];;;;text;t2_ba5at3b;False;False;[];;I was wrong to state most fantasy are power fantasies. But you're saying that the isekai I was mentioning were just the main stream ones, so you shouldn't count them towards the not equating isekai with power fantasy? That's just throwing out popular examples.;False;False;;;;1610151893;;False;{};gilph33;False;t3_kt9rcs;False;True;t1_giln33y;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilph33/;1610193801;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aluminum-Chair;;;[];;;;text;t2_63qs0yl8;False;False;[];;Basically any tsundere character...;False;False;;;;1610151984;;False;{};gilpnpu;False;t3_ktcbdf;False;True;t3_ktcbdf;/r/anime/comments/ktcbdf/what_is_a_favorite_anime_character_of_yours_that/gilpnpu/;1610193901;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;Well, he gained pleasure level from doing that. So....;False;False;;;;1610152054;;False;{};gilpsmw;False;t3_kt9rcs;False;False;t1_gilgg04;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilpsmw/;1610193979;26;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;False;[];;I can already tell this is going to be one hell of a trashy show.... but you know what I AM ALSO TRASH AND WILL FOLLOW THIS TO THE TRASHY END;False;False;;;;1610152055;;False;{};gilpspx;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilpspx/;1610193982;2;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;He continued the kissing even though his headache was already gone. He knew what he's doing.;False;False;;;;1610152179;;False;{};gilq1ia;False;t3_kt9rcs;False;False;t1_gikyc4s;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilq1ia/;1610194117;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Strickout;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Strickout?status=2;light;text;t2_1szolp7k;False;False;[];;"Pretty much any Tsundere type - -As much as people here love to gush about Tsunderes(I am one of those people) they would fucking insufferable to deal with IRL";False;False;;;;1610152233;;1610153432.0;{};gilq5ft;False;t3_ktcbdf;False;True;t3_ktcbdf;/r/anime/comments/ktcbdf/what_is_a_favorite_anime_character_of_yours_that/gilq5ft/;1610194180;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Strickout;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Strickout?status=2;light;text;t2_1szolp7k;False;False;[];;Asia Argento(She's awesome in the books but the anime kinda ruins her);False;False;;;;1610152293;;False;{};gilq9q1;False;t3_ktboqh;False;True;t3_ktboqh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gilq9q1/;1610194245;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lenne18;;;[];;;;text;t2_o2hru;False;False;[];;"**Lurker** - -First timers might be confused but µ's itself is a group composed of 2 sets of 9 people. The first set is the characters you see in the anime. The second set is the voice actresses. In some ways, the anime world is influenced by what happened in our world through the experiences of their voice actresses. This is one of those cases. - -Anime µ's started rough with having little audience for their first live. This parallels how real-life µ's also started rough, with their first single being a financial failure and most of them concerned if the project will be cancelled. - -Of course, this tale has a happy ending with the franchise still going strong. They even have another group (Liella!) that will have their debut single this year. - -Speaking of Liella!, [happy birthday to Keke's voice actress, Liyuu.](https://twitter.com/Liyu0109/status/1347559150062948352) She's a cutie. - -&nbsp; - -###B-Side Jukebox, Music Start! - -&nbsp; - -[Yume Naki Yume wa Yume ja nai - Honoka Kousaka](https://www.youtube.com/watch?v=7zCym-RwpTE) - -* This song is a bonus song when buying the limited edition version of SIP S1 BD1. -* Faito dayo!! This is Honoka's call and response during lives. -* It's a very Honoka-ish song, isn't it? -* [3rd live performance](https://www.youtube.com/watch?v=BJtCYWsiE2g), where Emi Nitta rode a bike onstage. - -[Watashitachi wa Mirai no Hana - Umi Sonoda](https://www.youtube.com/watch?v=C14xftSCLCA) - -* This is Umi's solo song from her solo album. -* Rock by itself doesn't suit Umi but the inclusion of Japanese elements into the music turn this song into a modern Japanese beauty, which is *exactly* like Umi. -* [3rd live performance.](https://www.youtube.com/watch?v=u_V_W6mo-_I) Mimori Suzuko's voice is awesome! - -[Blueberry♥Train - Kotori Minami](https://youtu.be/L8JfI5aJoVg) - -* Kotori's solo song from the *Kokuhaku Biyori, desu!* single. -* The song is just too cute! It's an 11 out of 10 in the kawaii meter. -* [3rd Live performance.](https://www.youtube.com/watch?v=eIGr70wjnho) Aya Uchida brought a whistle to make a cute moment at 0:22.";False;False;;;;1610152357;;1610152555.0;{};gilqebc;False;t3_ktbp1n;False;False;t3_ktbp1n;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gilqebc/;1610194317;8;True;False;anime;t5_2qh22;;0;[]; -[];;;TheBlueHue;;;[];;;;text;t2_darqf;False;False;[];;He was testing the amount, it's why hugs Emma right after;False;False;;;;1610152412;;False;{};gilqiat;False;t3_kt9rcs;False;False;t1_gilpsmw;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilqiat/;1610194376;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Strickout;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Strickout?status=2;light;text;t2_1szolp7k;False;False;[];;"Isekai wa Sumatofon to Tomo ni(In Another World with My Smartphone) - -I get that its a generic isekai harem with a Mega OP MC but I liked it";False;False;;;;1610152440;;False;{};gilqkap;False;t3_kta14g;False;True;t3_kta14g;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gilqkap/;1610194407;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Areouf;;;[];;;;text;t2_3nyxnua3;False;False;[];;"This series definitely isn't for everyone I guess, but for what it's worth, pretty much everything you brought up can be explained easily enough: - -> Headaches -One would reasonably presume that he (or someone else with that skill, who then put out a notice about it) had already done that and that it didn't work. For example, it could be like the ""you can't ask a genie for more wishes"" thing or similar. - -> Olivia being stuck -Those chains are clearly seriously OP if they were able to trap her for 200 years, so just assume that it would be similarly impossible for Noir to do anything about them at the time. Freeing Olivia might even become a later plot point of the series, when Noir is strong enough to actually be able to do it. Also re: Olivia not preferring death, well, that's just a trope about long-lived characters sometimes being imprisoned for very long times, yeah? - -> Materials -As in drop items. - -> Fragile level 99 monster -It's a glass cannon. If you're in a game where all growth is achieved by skill points and equipment (which the monster didn't seem to have much of other than the scythe), and you don't put many points into defensive stats, this is what will happen. Also, depending on the exact power scaling of this world, it's possible that the fact that he modified the rock using his special editing skill broke the damage calculation formula in some way. For example, imagine if the skill is something like ""damage is directly proportional to the mass of the rock generated"". If I remember correctly, he increased the standard diameter of the rock by 10, so assuming a perfect sphere, that would increase the mass, and therefore the damage, of the skill by a factor of 1000, which is a lot. That said, I think it's mainly that the monster was a glass cannon.";False;False;;;;1610152674;;False;{};gilr1bc;False;t3_kt9rcs;False;False;t1_gilln23;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilr1bc/;1610194676;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;Would you say Steins Gate has a good begining?;False;False;;;;1610152675;;False;{};gilr1dr;False;t3_ktd9z7;False;True;t1_gilmq7i;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gilr1dr/;1610194677;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ParticularCod6;;;[];;;;text;t2_3cf9jv94;False;False;[];;I see what you mean and I might need to take my statement back;False;False;;;;1610152709;;False;{};gilr3s0;False;t3_ktd9z7;False;True;t1_giljd58;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gilr3s0/;1610194715;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dontloseyourway1610;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Marinate1016;light;text;t2_4wegnp53;False;False;[];;Wait, it’s on crunchyroll?;False;False;;;;1610152741;;False;{};gilr64x;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilr64x/;1610194750;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;Actually yes it was honestly a decent show from the start;False;False;;;;1610152792;;False;{};gilr9vl;False;t3_ktd9z7;False;True;t1_gilr1dr;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gilr9vl/;1610194807;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SoylentVerdigris;;;[];;;;text;t2_3rvy6wyk;False;False;[];;Hence all the towns ending in -ford.;False;False;;;;1610152811;;False;{};gilrb71;False;t3_kt9rcs;False;False;t1_gilcy8v;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilrb71/;1610194827;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;You have too much faith in generic fantasy anime MC.;False;False;;;;1610152831;;False;{};gilrcp3;False;t3_kt9rcs;False;False;t1_gilq1ia;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilrcp3/;1610194850;18;True;False;anime;t5_2qh22;;0;[]; -[];;;darthvall;;;[];;;;text;t2_6418rnwg;False;False;[];;I have to admit that it's getting boring to see generic dense MC, so I'm hoping this one is different.;False;False;;;;1610152972;;False;{};gilrmrs;False;t3_kt9rcs;False;False;t1_gilrcp3;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilrmrs/;1610195009;14;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomWolf83;;;[];;;;text;t2_wxq1l;False;False;[];;Holy crap, this might be one of my new favourite harem anime of all time, no joke. It's both trashy and hilarious at the same time, plus the hot childhood friend wins within the first 10 minutes of Episode 1. We also get a chad MC, a sister with a serious case of brocon, a cocky master who communicates only through telepathy, and two girls in the ED that we haven't seen yet who are cute AF. I'm going to have a lot of fun with this show.;False;False;;;;1610153009;;False;{};gilrpc0;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilrpc0/;1610195049;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Eazydoesit88;;;[];;;;text;t2_507pyn1j;False;False;[];;I enjoy entertaining trash. As a man of culture I shall endeavor to enjoy the shit out of this shameless trash.;False;False;;;;1610153010;;False;{};gilrpef;False;t3_kt9rcs;False;False;t1_gil06ux;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilrpef/;1610195050;9;True;False;anime;t5_2qh22;;0;[]; -[];;;hekishokuneko;;;[];;;;text;t2_3834ffwy;False;False;[];;I really love how awkward and not good with words Kageyama is in Haikyuu but he would be insufferable to be around in real life.;False;False;;;;1610153013;;False;{};gilrpl9;False;t3_ktcbdf;False;True;t3_ktcbdf;/r/anime/comments/ktcbdf/what_is_a_favorite_anime_character_of_yours_that/gilrpl9/;1610195052;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;Just because, off the top of my head I wanna say Centaur no Nayami would be the record (or at most tied in 1st place), pretty sure it starts in the middle of a kiss.;False;False;;;;1610153064;;False;{};gilrt85;False;t3_kt9rcs;False;False;t1_gikpjoe;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilrt85/;1610195108;6;True;False;anime;t5_2qh22;;0;[]; -[];;;SoylentVerdigris;;;[];;;;text;t2_3rvy6wyk;False;False;[];;Konosuba, Shield hero, and Kenja no Majo all use the exact same base image (with a couple of minor details altered) as each other, which is very similar to this one.;False;False;;;;1610153174;;False;{};gils149;False;t3_kt9rcs;False;False;t1_gil7zl4;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gils149/;1610195236;7;True;False;anime;t5_2qh22;;0;[]; -[];;;diavolodeejay;;MAL a-amq;[];;https://myanimelist.net/animelist/diavolodeejay;dark;text;t2_blqwe;False;False;[];;"Maybe she sees the school uniform as sort of an ""armor"", or something that everyone has, so it's not as strange as an idol costume. - -Or maybe I'm overanalyzing that and it's just a way to portray her shyness. ~~We know that Love Live isn't the place to look for important and deep plot, we are here for cute anime girl singing and their seiyuus~~";False;False;;;;1610153210;;False;{};gils3mg;False;t3_ktbp1n;False;False;t1_gil0cpm;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gils3mg/;1610195275;4;True;False;anime;t5_2qh22;;0;[]; -[];;;mr_beanoz;;;[];;;;text;t2_21j5jy0f;False;False;[];;So... Hand Shakers bad?;False;False;;;;1610153220;;False;{};gils4cf;False;t3_ktafwf;False;False;t1_gild0wk;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gils4cf/;1610195287;5;True;False;anime;t5_2qh22;;0;[]; -[];;;RxMidnight;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/RxMidnight;light;text;t2_77kf70hc;False;False;[];;"**First Timer** - --Intimate moments between Senjougahara and Araragi are a lot more sparse throughout this series than I expected, but when they do happen they hit so deep in the feels. - --Ok so first minion and Araragi actually are having a serious fighting duel. The voice in the back of my head had been wondering if they were gonna even out the odds by doing something silly like playing soccer or video games. - --Interesting that first minion is willing to duel honorably by allowing a handicap, considering he earlier tried to trick Araragi into killing himself by drinking holy water. - --Izuko's motivations are as enigmatic as always. It's ironic she put so much effort to keeping Araragi alive here when she's the one who ends up killing him in the future. But with Mayoi Hell up next I guess we'll be getting some answers soon. Maybe. - --Nice callback to Shinobu Time, with Araragi having to choose between Hanekawa, Senjougahara, or Shinobu. The foreshadowing in this show is a treat. - --Shinobu saying goodbye to Seishirou was the biggest tearjerker in this show yet. All those years of buried feelings, even to the extent that she pretended to forget his name, coming out all at once was such an intense moment. - --Sooo did they ever explain how Shinobu and Araragi restored their link?";False;False;;;;1610153300;;False;{};gilsa3c;False;t3_ktcwa0;False;False;t3_ktcwa0;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gilsa3c/;1610195379;9;True;False;anime;t5_2qh22;;0;[]; -[];;;EldritchCarver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Pilomotor;light;text;t2_4epcw;False;False;[];;"[Manga spoilers](/s ""Super likely. Although the hidden dungeon remains a secret, Noir doesn't hide the fact that he has a superpower literally fueled by eroticism. Doing the same lewd thing with the same girl can only give him life points once a day, so most of his female allies are resigned to the fact that an exclusive relationship with him isn't as important as Noir being able to routinely pull off impossible stunts by permanently empowering himself and others. However, Brightness is firmly Noir's favorite. Also, Noir's little sister is a bit of a yandere when it comes to sharing Noir, although it's mostly played for laughs."")";False;False;;;;1610153363;;False;{};gilselg;False;t3_kt9rcs;False;True;t1_gilcdrf;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilselg/;1610195452;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GinsuFe;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Ginsu48;light;text;t2_fzazd;False;False;[];;"She's honestly not as bad as it seems. There's a surprising amount of depth to her and the other characters that you probably wouldn't expect going into it. Some of the violent moments are mainly played up just for laughs. The initial punch most people have probably seen doesn't even happen in the manga though. - -Taiga seems hateful at first, but that couldn't be farther from the truth. She's mostly a malfunctioning weirdo who just wants her friends to be happy, even at her own expense.";False;False;;;;1610153430;;False;{};gilsjgz;False;t3_ktboqh;False;True;t1_gild3f5;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gilsjgz/;1610195532;1;True;False;anime;t5_2qh22;;0;[]; -[];;;diavolodeejay;;MAL a-amq;[];;https://myanimelist.net/animelist/diavolodeejay;dark;text;t2_blqwe;False;False;[];;"**Rewatcher** - -The first time I saw the emtpy audience I felt very bad and betrayed. I couldn't believe. I tought it was goint to be easier for them... - -Luckly at the end the audience was just shy and some people came over! - ---- - -Questions of the day: - -*Umi seemed very nervous before their first live, but was able to overcome her fear and perform with the help of her friends. Have you been in a similar situation where you were nervous before a certain event? What did you do to overcome your anxieties?* - -To overcome the anxiety I repeat to myself till the last moment what do I have to do and I do deep breaths. It usually helps. - -*Umi seemed very nervous before their first live, but was able to overcome her fear and perform with the help of her friends. Have you been in a similar situation where you were nervous before a certain event? What did you do to overcome your anxieties?* - -I would have felt very demoralized. I don't know if I would have been able to say ""I'll continue! It's just the first time!"" immediatly like Honoka.";False;False;;;;1610153479;;False;{};gilsn1a;False;t3_ktbp1n;False;True;t3_ktbp1n;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gilsn1a/;1610195588;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Soap646464;;;[];;;;text;t2_2nr0birw;False;False;[];;Watching the episode right now , wow this is just … wow;False;False;;;;1610153543;;False;{};gilsrnl;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilsrnl/;1610195667;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ultraman9513;;;[];;;;text;t2_5b2pn87v;False;False;[];;Could you private message me it? I can’t see it on mobile and the way that everyone tells you to see them don’t work either;False;False;;;;1610153575;;False;{};gilstxu;False;t3_kt9rcs;False;False;t1_gilselg;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilstxu/;1610195703;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GinsuFe;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Ginsu48;light;text;t2_fzazd;False;False;[];;"Pretty much every single male character in Grand Blue except the 2 buff guys annoyed me greatly. I couldn't get behind the characters nor the show's humor. - -100% not for me.";False;False;;;;1610153617;;False;{};gilswyp;False;t3_ktboqh;False;True;t3_ktboqh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gilswyp/;1610195749;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_Ridley;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/_Ridley_;light;text;t2_pmg6p5;False;False;[];;Never seen that one.;False;False;;;;1610153762;;False;{};gilt7dv;False;t3_ktafwf;False;True;t1_gils4cf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gilt7dv/;1610195920;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> Nice callback to Shinobu Time, with Araragi having to choose between Hanekawa, Senjougahara, or Shinobu - -and y'all thought it was just a joke! - -> -Sooo did they ever explain how Shinobu and Araragi restored their link? - -Gaen did it offscreen after Araragi put his sword into the tiger";False;False;;;;1610153783;;False;{};gilt8yx;True;t3_ktcwa0;False;True;t1_gilsa3c;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gilt8yx/;1610195949;3;True;False;anime;t5_2qh22;;0;[]; -[];;;EldritchCarver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Pilomotor;light;text;t2_4epcw;False;False;[];;Sent.;False;False;;;;1610153856;;False;{};gilte6u;False;t3_kt9rcs;False;True;t1_gilstxu;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilte6u/;1610196036;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;"**First-time watcher** - -This is only the second fully serious conversation between Koyomi and Hitagi since the beginning of the series, isn't it? They certainly could stand to talk more, but at the very least they can share their worries with each other without losing their resolve, in particular their worries about others. Also Koyomi harem confirmed by her personally. I don't see the ""specialness"" in him that much/often but she here really is right in the middle of doing a lot for someone. And indeed, personal relationships can also take a lot of effort, to really understand and deal with the others' feelings and know what you want yourself. - -The reason behind Gaen not intervening earlier and leaving out info here is... still not obvious, honestly. Is it just supposed to be a test of Koyomi's character, whether she can work with him? Still not sure what she was going for here. Anyway, Operation Pick-A-Waifu begins. Truly, what even is the point of this fight, really? Koyomi figures out the trick anyway; Shinobu merely gets a sort of half-closure arriving fashionably late. - -So about the ending, this is the very day Gaen killed Koyomi in Koyomimonogatari, in the end he is walking toward the very incident. Ougi clearly has figured out how she will go about it, with that reforged armor and such. Ononoki's words are essentially a callback to the first arc of the season where Hanekawa told Oikura that ""no one can become happy unless they want to"", or try. I suppose if he had answered differently, she would have stopped Gaen, or at least made her best effort to do so. Gaen probably is still trying to go after Ougi and Ougi trying to get ahead of her? - -I found a lot of the drama in this episode a bit undercooked except for the end, and as a supposed resolution it doesn't do very much. Generally speaking, emotional drama is not a strength of this series, I find. The arc should have focused some more on that, maybe with a quicker beginning. I don't mind the exposition as much, though.";False;False;;;;1610153970;;1610155706.0;{};giltmbu;False;t3_ktcwa0;False;False;t3_ktcwa0;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/giltmbu/;1610196165;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;Fairy Tail;False;False;;;;1610154049;;False;{};giltry1;False;t3_kta14g;False;True;t3_kta14g;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/giltry1/;1610196258;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EldritchCarver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Pilomotor;light;text;t2_4epcw;False;False;[];;How many LP will it cost to give himself an STD immunity skill?;False;False;;;;1610154131;;False;{};giltxxf;False;t3_kt9rcs;False;False;t1_gilljqn;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giltxxf/;1610196359;4;True;False;anime;t5_2qh22;;0;[]; -[];;;smiley-rell;;;[];;;;text;t2_9iaznvjw;False;False;[];;">Light novel adaptation basically lowers the chances of it being good - - -Agreed. Every since the last season of snafu and SAO I have decided to forgo watching all anime with a light novel source and just read them instead.";False;False;;;;1610154166;;False;{};gilu0cn;False;t3_ktd9z7;False;True;t1_giljmff;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gilu0cn/;1610196397;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ultraman9513;;;[];;;;text;t2_5b2pn87v;False;False;[];;Thanks;False;False;;;;1610154347;;False;{};giludao;False;t3_kt9rcs;False;True;t1_gilte6u;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giludao/;1610196605;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EldritchCarver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Pilomotor;light;text;t2_4epcw;False;False;[];;She never asked him to undo the chains.;False;False;;;;1610154366;;False;{};gilueo3;False;t3_kt9rcs;False;False;t1_gilf09v;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilueo3/;1610196628;10;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;False;[];;I disagree. I felt it was massively underwhelming until like eight episodes in.;False;False;;;;1610154393;;False;{};gilugoe;False;t3_ktd9z7;False;True;t1_gilr9vl;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gilugoe/;1610196660;0;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;"Rewatches work better for the ""deep"" kind of anime that invites discussion (think Lain, Evangelion, Madoka). For slice-of-life, there is always the problem of finding something to say that is more elaborate then ""I liked/disliked this"".";False;False;;;;1610154506;;False;{};giluorf;False;t3_ktbp1n;False;False;t1_gilfmkl;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/giluorf/;1610196794;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PaulWalkerIV;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MasonCrosbysFoot;light;text;t2_11thw0;False;False;[];;taiga from toradora. main reason why i dropped the show. no, physical and verbal abuse does not constitute as “romance”...;False;False;;;;1610154535;;False;{};giluqv1;False;t3_ktboqh;False;True;t3_ktboqh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/giluqv1/;1610196829;3;True;False;anime;t5_2qh22;;0;[]; -[];;;babydave371;;MAL a-amq;[];;https://myanimelist.net/profile/babydave371;dark;text;t2_sak6n;False;False;[];;"Good write up overall, it is always nice to see super robots getting some rep. I do have a few things to point out though: - -- You never really mentioned the fact that kids super robot shows are still a near constat thing basically. We never see them because they never get licensed but there is always a show like Shinkalion on to be the boys equivilent of PreCure. Many of these have been made post Captain Earth. - -- Going further I think you really did disregard quite how many super robot shows there have been recently. Gundam Build Fighters Try came out at the same time and moved almost entirely into the super robot space, which they lapshaded with Tryon 3. Mashin Eiyuuden Wataru, Tomica Kizuna Gattai, Shinkalion, Promare, Tomica Hyper Rescue Drive Head, Planet With, the Mecard franchise, and Mazinger Z Infinity have all come out in recent years. Not a huge amount but not nothing. It is a more complicated picture though with shows like Cross Ange, Evangelion, and Valvrave which take elements from real robot and super robot and combine them into something a bit different. - -- In the old school section I would definitely have brought up the robot romance trilogy given how wildly influential thatey were, they had the scary thought of giving pilots actual character writing outside of ""I yell and punch things a lot"". - -- With Godannar I think there are two important points to make. First is that it is basically Gurren Lagann in its high level aims: it is a loving homage to the genre. It goes about it in a different way to Gurren Lagann but it may be even nerdier in its references, it genuinly uses audio queues from some truly terrible 70s shows. The second important point to make is that the second season was genuinly funded by the staff selling doujinishi of the show.";False;False;;;;1610154578;;1610155540.0;{};gilutxr;False;t3_kta0qf;False;False;t3_kta0qf;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gilutxr/;1610196879;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;I think I found the early episodes to be enjoyable because everyone kept saying they were worse than they actual in other words I went in with low expectations;False;False;;;;1610154602;;False;{};giluvql;False;t3_ktd9z7;False;True;t1_gilugoe;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/giluvql/;1610196907;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;False;[];;As much as I hate to admit it Subaru would be so fucking hard to put up with, at least early Subaru anyway.;False;False;;;;1610154612;;False;{};giluwey;False;t3_ktcbdf;False;True;t3_ktcbdf;/r/anime/comments/ktcbdf/what_is_a_favorite_anime_character_of_yours_that/giluwey/;1610196919;0;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;False;[];;Good point. His power pales in comparision to what some of the class B kids can do. How the hell did that turd make it to class A?;False;False;;;;1610154710;;False;{};gilv3hh;False;t3_ktboqh;False;True;t1_gildftj;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gilv3hh/;1610197032;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;False;[];;Dude his hero costume is a diaper.;False;False;;;;1610154733;;False;{};gilv52q;False;t3_ktboqh;False;True;t1_gil4e1g;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gilv52q/;1610197059;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;That’s exactly why I would I put in that Statement there, specifically because of sao’s war arc cutting out essential scenes and explanations;False;False;;;;1610154792;;False;{};gilv94b;False;t3_ktd9z7;False;True;t1_gilu0cn;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gilv94b/;1610197125;1;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;Harem speedruns too apparently.;False;False;;;;1610154830;;False;{};gilvbsa;False;t3_kt9rcs;False;False;t1_gil0rdh;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilvbsa/;1610197168;12;True;False;anime;t5_2qh22;;0;[]; -[];;;diglyd;;;[];;;;text;t2_5zkvd;False;False;[];;"Great writeup thank you! Gunbuster was one of the first shows I watched on VHS when anime first started coming into the US along with the Fist of the North Star movie, and Akira. Reading your post brought back a lot of memories of shows I haven't seen in years. So thank you. - -I will always remember Gunbuster and that boobie bounce/jiggle in the opening and those awesome cockpit screens and sense of dread and amazing animation. - -I don't think the genre is dead as everything is cyclical and everything is connected and builds upon itself. I think it will come back around except it will be more of a fusion of pilot and mecha, except on a more seamless level of mind and body as these are the type of ideas that are currently being explored with technologies like Neuralink. - -Just like Evangelion pushed the genre with more biomechanical designs, the next big thing is going to be a more seamless connection and integration of pilot and mech that is a more of a fusion of man and machine then just them sitting in a cockpit, almost like a suit or a direct brain interface of man and machine and exploring the ideas that come from that such as where man ends and machine begins or vice versa. Humanity in general I think is heading into some direction of direct integration with machines and there are still many areas in anime that can be explored in that regards including in the giant robo subgenre. - -Btw you missed this masterpiece: - -Kenzen Robo Daimidaler - [https://www.youtube.com/watch?v=f1DGAJqJeng](https://www.youtube.com/watch?v=f1DGAJqJeng) - -I love the opening for this thing [https://www.youtube.com/watch?v=0RTrl-NHPIA](https://www.youtube.com/watch?v=0RTrl-NHPIA)";False;False;;;;1610154863;;False;{};gilve3o;False;t3_kta0qf;False;True;t3_kta0qf;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gilve3o/;1610197205;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;False;[];;"Opposite of my experience lol. This was back when it was pretty new so people wouldn't STFU about how amazing it is so I was overhyped. Those first episodes I was like ""the fuck is this?""";False;False;;;;1610154917;;False;{};gilvhwh;False;t3_ktd9z7;False;True;t1_giluvql;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gilvhwh/;1610197272;0;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;"> Skipping right over the actual effort involved in getting to this point really blunts the impact of everyone reaffirming they've worked so hard. - -I was surprised that we saw zero vocal training. Could be that they all are naturals or had training before, but that was the one I expected the most.";False;False;;;;1610154928;;False;{};gilviq7;False;t3_ktbp1n;False;False;t1_gil49wz;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gilviq7/;1610197285;2;True;False;anime;t5_2qh22;;0;[]; -[];;;edwardjhahm;;;[];;;;text;t2_n9ek6pf;False;False;[];;She's what inspired me to watch the show. It was on the sidebar, and she looked nice so uh...decided, why not?;False;False;;;;1610154951;;False;{};gilvkcg;False;t3_kt9rcs;False;False;t1_gikuu67;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilvkcg/;1610197311;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">I feel like it's growing increasingly rare to see Araragi and Senjou interact - -It's never been common in the first place.";False;False;;;;1610155060;;False;{};gilvs64;False;t3_ktcwa0;False;False;t1_gilaybf;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gilvs64/;1610197442;5;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;"> -> I will always remember Gunbuster and that boobie bounce/jiggle in the opening and those awesome cockpit screens and sense of dread and amazing animation. - -If you haven't yet, watch Diebuster, in the final episode there's a homage to the Gunbuster and I cheered so loud for it. - -And yeah, the genre isn't really ""dead"", it's on a downswing, but it'll come around again eventually. It's just, with not many mech designers left in the industry and good CG being expensive, it's rough.";False;False;;;;1610155091;;False;{};gilvudj;True;t3_kta0qf;False;False;t1_gilve3o;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gilvudj/;1610197482;2;True;False;anime;t5_2qh22;;0;[]; -[];;;infinite_lyy;;;[];;;;text;t2_9lftz77s;False;False;[];;Have to go with Fairy Tail. I don't get all the hate when it's just meant to be fun! Lots of battle shounen have the same concept of power of friendship and I think as long as you're expecting as much the characters and the setting is pretty interesting it is. The OPs/EDs are fire too;False;False;;;;1610155095;;False;{};gilvunp;False;t3_kta14g;False;True;t3_kta14g;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gilvunp/;1610197486;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> This is only the second fully serious conversation between Koyomi and Hitagi since the beginning of the series, isn't it? - -Depends on how you count, but more or less yes. I'd count the talk before meeting Kaiki as well. It all happens off screen though as this is the part of his life that is rather smooth and happy for him I guess. - -The Shinobu part of the drama did not work completely, at least her showing up at all is more progress than just being in denial";False;False;;;;1610155127;;False;{};gilvx16;True;t3_ktcwa0;False;False;t1_giltmbu;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gilvx16/;1610197526;5;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;"> -> Going further I think you really did disregard quite ho many super robot shows there have been recently. - -You're definitely right, in an effort to keep this under the post limit, I had to omit some stuff. And I could have sworn I mentioned Infinity, but that may have been removed during my last editing sweep. - -Originally my section on Mazinger was much longer and I didn't think about including the robot romance trilogy, I'm not sure why I completely skipped over them, considering their influence. - - -> Evangelion - -Evangelion is the most complicated here, it takes so many tropes from the super genre, mixed with some of the real tropes and puts them under a darker lense. - - -I'm thinking of doing a second part for this, covering what I missed, so thank you for the response.";False;False;;;;1610155153;;False;{};gilvyuo;True;t3_kta0qf;False;True;t1_gilutxr;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gilvyuo/;1610197559;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FoundOmega;;;[];;;;text;t2_5r8oh;False;False;[];;Spoiler question for anyone who's read it, is Olivia ever going to get released or does she remain permanently trapped in the dungeon?;False;False;;;;1610155220;;False;{};gilw3nz;False;t3_kt9rcs;False;True;t1_giknpew;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilw3nz/;1610197643;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">a person who knows everything - -She may know the fact that he had the talisman available, but can she also judge whether he's good enough to figure out to use it?";False;False;;;;1610155464;;False;{};gilwks2;False;t3_ktcwa0;False;True;t1_gileir7;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gilwks2/;1610197927;3;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;"> Anime µ's started rough with having little audience for their first live. This parallels how real-life µ's also started rough, with their first single being a financial failure and most of them concerned if the project will be cancelled. - -Meh, you'll excuse me if I reserve my sympathy for rags to riches stories that do not [start with](https://en.wikipedia.org/wiki/Love_Live!#Franchise_history) one of Japans biggest animation studios cooperating with a subsidiary of the worlds largest toy company to create a casted band via outsorcing the character creation to the readers of a gal game magazine. - -I'll not hold it against this anime, but I have not drunk enough corporate cool aid to become emotionally attached to a 100% plastic project.";False;False;;;;1610155465;;False;{};gilwkt7;False;t3_ktbp1n;False;True;t1_gilqebc;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gilwkt7/;1610197928;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;zuruka1;;;[];;;;text;t2_3faf5se;False;False;[];;"Just like a min in I had a feeling I have seen this mess before. - -So after some quick googling, sure enough it is made by GoHands, the same studio that made W'z and Hand Shakers. - -I can't believe anyone is sane enough to still pay them, just to make yet another mess like this.";False;False;;;;1610155655;;False;{};gilwycs;False;t3_ktafwf;False;True;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gilwycs/;1610198152;1;True;False;anime;t5_2qh22;;0;[]; -[];;;smiley-rell;;;[];;;;text;t2_9iaznvjw;False;False;[];;Yes. And it's sad because in my opinion light novel adaptations have the most potential to be better than manga adaptations in my opinion;False;False;;;;1610155808;;False;{};gilx8z2;False;t3_ktd9z7;False;False;t1_gilv94b;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gilx8z2/;1610198328;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rustic_Professional;;;[];;;;text;t2_pajnr;False;False;[];;"Wow, Noir actually kissed her. I'm impressed. As soon as she hesitated on the bench, I figured it'd be one of those things where they're just perpetually interrupted. It's nice to see an MC that really has some romantic guts. - -I have to admit that I'm disappointed in him for not immediately trying to use his powers to free Olivia. If he can create powerful new spells at will, he should have tried something like a Cleanse or Dispel. - -Hah, level 99 monsters with instakill attacks, hanging out one floor above where Noir fought that slime. Talk about broken game balance. - -Good first episode. I'll be really pleased if they can successfully meld Konosuba, Oresuki and something that takes its world seriously, like SAO or Log Horizon.";False;False;;;;1610155848;;False;{};gilxbt6;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilxbt6/;1610198375;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;False;[];;I watched it once. It was amazing. I ain't never doing that shit again.;False;False;;;;1610155939;;False;{};gilxi78;False;t3_ktai3c;False;True;t3_ktai3c;/r/anime/comments/ktai3c/thoughts_on_grave_of_fireflies/gilxi78/;1610198478;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rmTizi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/rmTizi;light;text;t2_5hqlk;False;False;[];;Yeah, nope, I already forced myself to complete Gibiate last summer, I have reached my quota of train wrecks for the next 5 years.;False;False;;;;1610156003;;False;{};gilxmo3;False;t3_ktafwf;False;True;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gilxmo3/;1610198549;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;True and that’s what’s really depressing about that;False;False;;;;1610156021;;False;{};gilxnxm;False;t3_ktd9z7;False;True;t1_gilx8z2;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gilxnxm/;1610198570;1;True;False;anime;t5_2qh22;;0;[]; -[];;;valask2;;;[];;;;text;t2_6k0xfhs1;False;False;[];;not what I was expecting;False;False;;;;1610156236;;False;{};gily2zm;True;t3_ktd8wk;False;True;t1_gilp8ws;/r/anime/comments/ktd8wk/anime_even_remotely_similar_to_gintama/gily2zm/;1610198826;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;False;[];;I love SAO. Unironically, unapologetically. It's heaps of fun and has genuinely heartwarming and heartrending moments all throughout. The animation is top notch, the concept is awesome, the music is amazing, and I like the characters. Especially Asuna. Only behind Re:Zero it's my second favorite series.;False;False;;;;1610156289;;False;{};gily6ob;False;t3_kta14g;False;True;t1_gikpjwx;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gily6ob/;1610198890;1;True;False;anime;t5_2qh22;;0;[]; -[];;;UberDueler;;;[];;;;text;t2_bs1ea;False;False;[];;We have a second show exactly like that this season. Cannot remember the exact name, but it's about the Adventurer from the boonies near the last dungeon moving to the starter town.;False;False;;;;1610156383;;False;{};gilyd49;False;t3_kt9rcs;False;False;t1_gil3bb3;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilyd49/;1610199029;1;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;He’s in class A because he’s the author’s favourite;False;False;;;;1610156578;;False;{};gilyqm2;True;t3_ktboqh;False;True;t1_gilv3hh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gilyqm2/;1610199259;1;True;False;anime;t5_2qh22;;0;[]; -[];;;diglyd;;;[];;;;text;t2_5zkvd;False;False;[];;"> If you haven't yet, watch Diebuster, in the final episode there's a homage to the Gunbuster and I cheered so loud for it. - -I watched a few episodes of Diebuster years ago but never finished as I think at the time I was into something else and the colorful cheery tone in the beginning turned me off. I always meant to go back to it. I will check it out. Right now I am going to check out Dancouga: Super Beast Machine God that you linked in your post. - -Again thank you for your post and the reply :)";False;False;;;;1610156678;;False;{};gilyxg5;False;t3_kta0qf;False;False;t1_gilvudj;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gilyxg5/;1610199373;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;False;[];;*suprised Pikachu face*;False;False;;;;1610156757;;False;{};gilz2vi;False;t3_ktboqh;False;False;t1_gilyqm2;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gilz2vi/;1610199463;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;I think some people hate on it bc of the rape scenes or certain arcs;False;False;;;;1610156902;;False;{};gilzcz8;False;t3_kta14g;False;True;t1_gily6ob;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gilzcz8/;1610199636;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610156919;;False;{};gilze4l;False;t3_ktcwa0;False;True;t1_gilkg3a;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gilze4l/;1610199656;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EldritchCarver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Pilomotor;light;text;t2_4epcw;False;False;[];;"> I have to admit that I'm disappointed in him for not immediately trying to use his powers to free Olivia. If he can create powerful new spells at will, he should have tried something like a Cleanse or Dispel. - -To be clear, the skills Olivia gave Noir belonged to her originally. If freeing her was so simple that Noir could do it right away, Olivia would have done it herself centuries ago.";False;False;;;;1610157052;;False;{};gilzn8w;False;t3_kt9rcs;False;True;t1_gilxbt6;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gilzn8w/;1610199805;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jonjoy;;;[];;;;text;t2_ob4ey;False;False;[];;Side by side [Comparisson](https://youtu.be/UlgVO64tsUk) of anime ver and irl ver of start dash.;False;False;;;;1610157074;;False;{};gilzorh;False;t3_ktbp1n;False;True;t3_ktbp1n;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gilzorh/;1610199831;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;False;[];;I get that stuff really bothers some people, it was uncomfortable for me at certain parts as well. I still love it though. There was no arc that I outright disliked, some just felt weaker than others. With this show IMO the higher the stakes the better it gets.;False;False;;;;1610157193;;False;{};gilzwyi;False;t3_kta14g;False;True;t1_gilzcz8;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gilzwyi/;1610199973;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phoenix8107;;;[];;;;text;t2_65kab3aq;False;False;[];;"Any particular genre? -Off the top of my head covering a few genres would be Flying Witch, Kids on the Slope, Mushishi, Eden of the East, Anohana, School Rumble, K series, Fruits Basket, Ergo Proxy (a top fave of mine), and Rahxephon (another top fave).";False;False;;;;1610157208;;False;{};gilzy13;False;t3_ktdvy4;False;True;t3_ktdvy4;/r/anime/comments/ktdvy4/underrated_anime_suggestions_to_watch/gilzy13/;1610199991;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akriosken;;;[];;;;text;t2_57yayxjl;False;False;[];;Hopefully Back Arrow from this season fills the Super Robot-shaped hole in our hearts. That first episode was definitely something.;False;False;;;;1610157233;;False;{};gilzzou;False;t3_kta0qf;False;True;t3_kta0qf;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gilzzou/;1610200021;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jonjoy;;;[];;;;text;t2_ob4ey;False;False;[];;Even until now, mirai no hana is one of my favourite love live solo song;False;False;;;;1610157404;;False;{};gim0bdi;False;t3_ktbp1n;False;True;t1_gilqebc;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gim0bdi/;1610200226;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Hytheter;;;[];;;;text;t2_hrdao;False;False;[];;Man, what a review.;False;False;;;;1610157605;;False;{};gim0pbs;False;t3_ktafwf;False;True;t1_gikx41d;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gim0pbs/;1610200465;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;From what I can tell, based on the PV and description it looks more toku inspired, no?;False;False;;;;1610157665;;False;{};gim0tim;True;t3_kta0qf;False;True;t1_gilzzou;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gim0tim/;1610200536;1;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;" - -watch next episode and pls pls tell me how you feel about it !remindme two days";False;False;;;;1610157721;;False;{};gim0xax;False;t3_kt9txf;False;True;t3_kt9txf;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/gim0xax/;1610200602;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CalmingVisionary;;;[];;;;text;t2_vy281c9;False;False;[];;"To quote an author: - ->“If it’s not good in the first 400 pages, then why expect it to be good in the next 400 pages?” - -It’s a bad defense when the author or creators fail to make an entertaining introduction when arguably that’s the easiest part of the story to write.";False;False;;;;1610157749;;False;{};gim0z8w;False;t3_ktd9z7;False;True;t1_gilk7v1;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gim0z8w/;1610200634;2;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;and then?;False;False;;;;1610157770;;False;{};gim10o9;False;t3_kt9txf;False;True;t1_gikqsui;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/gim10o9/;1610200657;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BakarinaLovesMaria;;;[];;;;text;t2_7aztnfnj;False;False;[];;it’s even worse when they steal a good set up and still fail to make it interesting. Like every “subversive” magical girl series that came after Madoka.;False;False;;;;1610157869;;False;{};gim17ge;True;t3_ktd9z7;False;True;t1_gim0z8w;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gim17ge/;1610200773;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;It disappointed me with dropping thematic threads left and right, wasting time on unfinished character arcs and Isayama's inability to make his figures feel like they have an inner life, so like the most of the manga before that arc;False;False;;;;1610158107;;False;{};gim1nx6;False;t3_kt9txf;False;True;t1_gim10o9;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/gim1nx6/;1610201058;0;True;False;anime;t5_2qh22;;0;[]; -[];;;mrzero713;;;[];;;;text;t2_13bbf8;False;False;[];;This anime is trash and so am I!!!;False;False;;;;1610158174;;False;{};gim1sk9;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim1sk9/;1610201138;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Soap646464;;;[];;;;text;t2_2nr0birw;False;False;[];;If we don't count the Bloom into You manga then i can certainly see your point but if we count the manga...;False;False;;;;1610158358;;False;{};gim25ar;False;t3_kt9rcs;False;False;t1_gilfh8t;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim25ar/;1610201363;4;True;False;anime;t5_2qh22;;0;[]; -[];;;animubro;;MAL;[];;http://myanimelist.net/profile/Mallony;dark;text;t2_9x3ck;False;False;[];;Wow... This really is bottom tier level of garbage;False;False;;;;1610158457;;False;{};gim2c2h;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim2c2h/;1610201481;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;sadly_streets_behind;;;[];;;;text;t2_2xhe6bg;False;False;[];;Inuyasha;False;False;;;;1610158518;;False;{};gim2gar;False;t3_ktaey8;False;False;t3_ktaey8;/r/anime/comments/ktaey8/can_you_guys_give_me_recommendations_for_me_and/gim2gar/;1610201555;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phoenix8107;;;[];;;;text;t2_65kab3aq;False;False;[];;Asuka from Eva or Shirley from Code Geass;False;False;;;;1610158554;;False;{};gim2ira;False;t3_ktboqh;False;True;t3_ktboqh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gim2ira/;1610201599;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Paxton-176;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;MOE FOR THE MOE GODS DOUJINS FOR THE DOUJIN THRONE!;dark;text;t2_kmgwm;False;False;[];;Don't for get its squeal W'z.;False;False;;;;1610158597;;False;{};gim2lqo;False;t3_ktafwf;False;True;t1_gikwpts;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gim2lqo/;1610201650;3;True;False;anime;t5_2qh22;;0;[]; -[];;;swordmalice;;MAL;[];;http://myanimelist.net/animelist/swordmalice;dark;text;t2_doqci;False;False;[];;Same! This is 100% entertaining trash and I am fully on board. Emma best girl don't @ me.;False;False;;;;1610158600;;False;{};gim2lz9;False;t3_kt9rcs;False;False;t1_gilrpef;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim2lz9/;1610201653;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ultraman9513;;;[];;;;text;t2_5b2pn87v;False;False;[];;"I finished the manga and while I loved the play arc and ending I didn’t feel much connection to anyone outside of our main leads. - -That’ll probably change when I finally reread it and go thru the Citrus manga since I recently completely ordered both.";False;False;;;;1610158614;;False;{};gim2mwx;False;t3_kt9rcs;False;False;t1_gim25ar;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim2mwx/;1610201669;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Paxton-176;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;MOE FOR THE MOE GODS DOUJINS FOR THE DOUJIN THRONE!;dark;text;t2_kmgwm;False;False;[];;Yes! More GoHands bullshit!;False;False;;;;1610158642;;1610174298.0;{};gim2oum;False;t3_ktafwf;False;False;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gim2oum/;1610201701;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Pyro81300;;;[];;;;text;t2_7u7o64mm;False;False;[];;Great analysis OP. I plan to watch most of these eventually so I don't get spoiled on the plots in SRW, but this was such a fun write up to read. I don't think super robots (or mecha in general really) are dead, just in a bit of a recession period atm. 2021 has a lot of cool stuff planned for mecha and Back Arrow premiered today, so I'm not too worried about the state of the genre.;False;False;;;;1610158669;;False;{};gim2qrh;False;t3_kta0qf;False;False;t3_kta0qf;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gim2qrh/;1610201734;2;True;False;anime;t5_2qh22;;0;[]; -[];;;djkoz78;;;[];;;;text;t2_dm17y;False;False;[];;I agree Zenitsu is also rage inducing.;False;False;;;;1610158759;;False;{};gim2x31;False;t3_ktboqh;False;True;t1_gilivet;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gim2x31/;1610201853;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Paxton-176;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;MOE FOR THE MOE GODS DOUJINS FOR THE DOUJIN THRONE!;dark;text;t2_kmgwm;False;False;[];;You know what takes Gibiate to the next level is that the creators are(were?) planning on making a MCU style franchise.;False;False;;;;1610158775;;False;{};gim2y6p;False;t3_ktafwf;False;False;t1_gild0wk;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gim2y6p/;1610201872;5;True;False;anime;t5_2qh22;;0;[]; -[];;;SolomonSinclair;;;[];;;;text;t2_1lf7i8;False;False;[];;"Hot damn. I don't know how many times I've said this exact thing to dozens of manga commentators who insist on calling any male protagonist who doesn't fuck anything in a skirt gay or impotent. - -It's honestly a little saddening that I've had to vehemently defend this position more times than I can count. I've practically given up at this point.";False;False;;;;1610158785;;False;{};gim2yxn;False;t3_kt9rcs;False;False;t1_gilhn25;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim2yxn/;1610201885;5;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;"> I plan to watch most of these eventually so I don't get spoiled on the plots in SRW - -SRW doesn't really do too much with the plot of these, aside from the bare minimum.";False;False;;;;1610158786;;False;{};gim2yzn;True;t3_kta0qf;False;True;t1_gim2qrh;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gim2yzn/;1610201886;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Pyro81300;;;[];;;;text;t2_7u7o64mm;False;False;[];;It's def more Toku/Power armor ala something like Tekkaman Blade. Might at least have some similar elements to super robot shows though.;False;False;;;;1610158828;;False;{};gim31w3;False;t3_kta0qf;False;True;t1_gim0tim;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gim31w3/;1610201939;2;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;how far in was this after 100? and also i do think it’s a good idea to finish unfinished character arcs;False;False;;;;1610158998;;False;{};gim3dqn;False;t3_kt9txf;False;True;t1_gim1nx6;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/gim3dqn/;1610202142;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;Well once GDQ is over, I'll have a chance to watch weeklies, but Back Arrow looks hype as hell.;False;False;;;;1610159023;;False;{};gim3fj4;True;t3_kta0qf;False;True;t1_gim31w3;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gim3fj4/;1610202172;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ABitOddish;;;[];;;;text;t2_5xjwakl;False;False;[];;Green is not a creative color;False;False;;;;1610159091;;False;{};gim3k4v;False;t3_kt9rcs;False;False;t1_giktyst;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim3k4v/;1610202248;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Rare_Panda100;;;[];;;;text;t2_8me2vq5m;False;False;[];;Don't listen to the comments, the show is actually decent. The bg is unique and beautiful, the characters are three-dimensional and not card-board cut-outs, and there are scenes that are interesting/emotional. I'm usually drawn to plot-driven series, this one is character driven, but still has a good enough plot considering it's only the first episode. No fanservice so far, which is good.;False;False;;;;1610159272;;1610159514.0;{};gim3wmh;False;t3_ktafwf;False;True;t1_gilj5jd;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gim3wmh/;1610202468;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EldritchCarver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Pilomotor;light;text;t2_4epcw;False;False;[];;Naw, this is top tier garbage.;False;False;;;;1610159395;;False;{};gim451a;False;t3_kt9rcs;False;False;t1_gim2c2h;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim451a/;1610202612;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Relevant-Locksmith95;;;[];;;;text;t2_4364hmg1;False;False;[];;Emma is amazing. Noir, you'd better be good to her!;False;False;;;;1610159454;;False;{};gim4950;False;t3_kt9rcs;False;False;t1_gikw995;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim4950/;1610202687;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Nixpheo;;;[];;;;text;t2_4wedsl4o;False;False;[];;I can't say because spoilers but I wouldn't worry about it.;False;False;;;;1610159706;;False;{};gim4qwb;False;t3_kt9rcs;False;False;t1_gil2gvk;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim4qwb/;1610203005;9;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> and also i do think it’s a good idea to finish unfinished character arcs - -well yeah he left them unfinished until now - -I always found the plot and characters the weakest parts of the series. I give credit for the foreshadowing of some things but it was mostly mystery driven and the mystery is rather meh to me as far as the reveal goes and now it's just deus ex time, one after another. - -My favorite arcs were uprising and the current one and the next one combined because the cut-off is a bit difficult, probably the ""Chad"" panel that was also in the PV - -but even in the current arc it's all just shock value while the favorites get plot armor, in the first three season he killed just red shirts and the B team with very few exceptions";False;False;;;;1610159709;;False;{};gim4r4p;False;t3_kt9txf;False;True;t1_gim3dqn;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/gim4r4p/;1610203010;0;True;False;anime;t5_2qh22;;0;[]; -[];;;CakeBoss16;;;[];;;;text;t2_9kc33;False;False;[];;Someone needs to call the city planner and give them a talking too for sure.;False;False;;;;1610159768;;False;{};gim4v74;False;t3_kt9rcs;False;False;t1_gil5pxn;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim4v74/;1610203079;13;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">Umi has quite the active imagination - -I hate to say it but that kind of thing was also done better in K-ON - ->I’ve never understood the whats and whys of idol dance routines - -It's art right, doesn't have to have a specific reason?";False;False;;;;1610159786;;False;{};gim4wgb;False;t3_ktbp1n;False;True;t1_gil0ydg;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gim4wgb/;1610203100;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">Have I just become desensitized? - -Then you've been watching the wrong shows";False;False;;;;1610159874;;False;{};gim52k2;False;t3_ktbp1n;False;True;t1_gil2qje;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gim52k2/;1610203205;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;At best it's dark bluish gray;False;False;;;;1610159912;;False;{};gim55bt;False;t3_ktbp1n;False;True;t1_gilbenn;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gim55bt/;1610203254;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">All of that work coming to nothing - -Though, once you've got a song and routine going shouldn't it at least be easier to repeat it?";False;False;;;;1610159967;;False;{};gim597l;False;t3_ktbp1n;False;True;t1_gil0h9k;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gim597l/;1610203327;2;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;"i can see where ur coming from tbh, and i felt the same with aot, that sometimes it should have been given a bit more time to show the lives of the characters, especially the 104th together. And thats why i assume you prefer the uprising, which is unsurprisingly an unpopular favourite - -so are you still reading the manga when you say the current arc? or do you mean the current arc being the anime arc?";False;False;;;;1610160003;;False;{};gim5buk;False;t3_kt9txf;False;False;t1_gim4r4p;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/gim5buk/;1610203374;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ds0990;;;[];;;;text;t2_3mqzj;False;False;[];;Also why would he ever be having money problems? Hey great sage, which nobles are plotting against the king? I bet he would pay to have that information, or they would pay to keep it under wraps. The price for basically unlimited wealth is a few headaches. You don't need any other powers damnit you are already the perfect spymaster.;False;False;;;;1610160019;;False;{};gim5cy1;False;t3_kt9rcs;False;False;t1_gil2gvk;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim5cy1/;1610203394;4;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">Love Live is perfectly fine with allowing the main characters to experience failure when they should be experiencing success - -I do like when ""cute stuff"" doesn't just mean conflict-free, but that's at most bringing it to the level of any old regular show.";False;False;;;;1610160060;;False;{};gim5frz;False;t3_ktbp1n;False;True;t1_gil0au1;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gim5frz/;1610203442;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ZBLongladder;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/zblongladder;dark;text;t2_6tmso;False;False;[];;I mean, I've seen [a Love Live Sunshine character shipped with another character's *mother*](https://www.reddit.com/r/Otonokizaka/comments/fcvsi6/shes_always_watching/fjd8ttj/), so yeah, any two given characters in Love Live have probably been shipped by *somebody*. For μ's, though, most people seem to go for the more popular ships / ships that are hinted at in the anime. Aqours seems to be a bit more fluid, and Nijigasaki so far mostly seems to be people joking about the whole group being Yu's harem.;False;False;;;;1610160123;;False;{};gim5kay;False;t3_ktbp1n;False;True;t1_gilbzil;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gim5kay/;1610203529;3;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">Bro how does nobody show up when like literally everyone was talking about them last episode and this - -Drama and also talk is cheap, action takes effort. Still, with that advertisement effort it was a bit much.";False;False;;;;1610160222;;False;{};gim5rc0;False;t3_ktbp1n;False;True;t1_gil5gof;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gim5rc0/;1610203654;2;True;False;anime;t5_2qh22;;0;[]; -[];;;raichudoggy;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/raichudoggy;light;text;t2_93aur;False;False;[];;"Hah. - -Just to be clear. No, the reason isn't because I've been desensitized, I don't watch *that* much ecchi, and I don't watch hentai at all. - -The reason I didn't mind is because I knew it was ultimately harmless fun in-universe. Nothing bad or twisted will come of it (and I expect it will probably happen again), so there's no need to sweat the small stuff.";False;False;;;;1610160309;;False;{};gim5xj6;False;t3_ktbp1n;False;True;t1_gim52k2;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gim5xj6/;1610203762;2;True;False;anime;t5_2qh22;;0;[]; -[];;;A_kirE;;;[];;;;text;t2_8mklskhy;False;False;[];;whats the name of that racist girl in the code geass lelouch of rebelion? shes so annoying really wanted to see her get punched in the anime;False;False;;;;1610160343;;False;{};gim5zv9;False;t3_ktboqh;False;True;t3_ktboqh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gim5zv9/;1610203810;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ArchadianJudge;;;[];;;;text;t2_dk2pa;False;True;[];;"Thanks for the writeup! Lots of them are my childhood favorites. - -Though my favorite mecha show I'm not sure if you'd classify as Super Robot. Tekkaman Blade. (I guess he was in the super robot wars game) I love that show so much along with the story and designs. Even the English dub was pretty good. I really wish it got a modern reboot.";False;False;;;;1610160376;;False;{};gim6283;False;t3_kta0qf;False;True;t3_kta0qf;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gim6283/;1610203851;2;True;False;anime;t5_2qh22;;0;[]; -[];;;OniiChanStopNotThere;;;[];;;;text;t2_rn5xr;False;False;[];;"I love shows where the little sister isn't a tsundere and ""gets along"" with her brother.";False;False;;;;1610160400;;False;{};gim63y7;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim63y7/;1610203882;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BeerGrils;;MAL;[];;http://myanimelist.net/animelist/Gesus;dark;text;t2_lv7i4;False;False;[];;Yeah, a welcome change. So tired of completly dense pussy MCs who to scared to ever do something with their harems.;False;False;;;;1610160470;;False;{};gim68su;False;t3_kt9rcs;False;False;t1_gilfczm;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim68su/;1610203964;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rustic_Professional;;;[];;;;text;t2_pajnr;False;False;[];;Isn't the point of Get Creative that he can create skills? He didn't have the LP needed to edit the reaper, so dispelling her chains may have been beyond him as well. Having her stuck there is probably necessary for the plot, and it's as simple as that, but I'm surprised that he doesn't seem to have considered trying.;False;False;;;;1610160510;;False;{};gim6bkn;False;t3_kt9rcs;False;True;t1_gilzn8w;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim6bkn/;1610204013;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;But the narrative!;False;False;;;;1610160533;;False;{};gim6d87;False;t3_ktbp1n;False;True;t1_gilwkt7;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gim6d87/;1610204044;0;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"Yeah Uprising was where the whole thing just could breathe, had the most intense fights with the least amount of red shirt killing off and it also could just be the Mecha show that AoT always wanted to be - -I am up to date with the manga and it does not help my impression, it shows that Isayama is taking strongly from mecha tropes and war movies and thinks subtlety is for others";False;False;;;;1610160538;;False;{};gim6djo;False;t3_kt9txf;False;True;t1_gim5buk;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/gim6djo/;1610204049;1;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;">It's art right, doesn't have to have a specific reason? - -Art has a reason. Poets don't just break a line when they feel like it, and dancers don't just flop around. There's a purpose. - -Like, what information is the dance supposed to present? Is it just an aesthetic thing, or are the dance moves supposed to tell a story as well? - -It's more that I just don't know the language of idol dance.";False;False;;;;1610160628;;False;{};gim6jtj;False;t3_ktbp1n;False;True;t1_gim4wgb;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gim6jtj/;1610204161;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;Town's clearly in the pocket of Big Ferry;False;False;;;;1610160724;;False;{};gim6qld;False;t3_kt9rcs;False;False;t1_gil5pxn;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim6qld/;1610204284;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Nixpheo;;;[];;;;text;t2_4wedsl4o;False;False;[];;"The headache should be addressed in the next episode if they don't decide to cut it out. I mean they cut out the part where he asks her if she would like smaller breast and she says that would be nice. - -The death chains cost so much to break that not even Olivia can break them there's no way he can at the moment. - -It can be material from any monster doesn't matter - -He slowed it down first and then used editing to make his rock bullet 100cm which is a little over 3ft and launch it at high speed of course its going to go through something like a skeleton.";False;False;;;;1610160761;;False;{};gim6t9j;False;t3_kt9rcs;False;True;t1_gilln23;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim6t9j/;1610204332;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CarioGod;;;[];;;;text;t2_ktg8q;False;False;[];;I can't believe a novel like this got an anime adaption;False;False;;;;1610160779;;False;{};gim6ug9;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim6ug9/;1610204353;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">Showing and not telling is fantastic storytelling - -Do you really want to give it a pat on the back for not going ""Oh no, the room is empty, how terrible""? This is why people complain about anime storytelling being low-quality on average, or anime watchers having low standards.";False;False;;;;1610160807;;False;{};gim6wda;False;t3_ktbp1n;False;True;t1_gilg85z;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gim6wda/;1610204389;0;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;"> Tekkaman Blade - -Tekkaman Blade fall under ""transforming hero"" more than anything.";False;False;;;;1610160814;;False;{};gim6ww4;True;t3_kta0qf;False;True;t1_gim6283;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gim6ww4/;1610204398;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;https://en.wikipedia.org/wiki/List_of_circular_cities;False;False;;;;1610160815;;False;{};gim6wx7;False;t3_kt9rcs;False;True;t1_gikxjyt;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim6wx7/;1610204400;3;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;That doesn't mean it should be treated that way.;False;False;;;;1610160840;;False;{};gim6ynx;False;t3_ktbp1n;False;True;t1_gim5xj6;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gim6ynx/;1610204433;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;"Maybe so, but at least it means there isn't a ""right way""";False;False;;;;1610160965;;False;{};gim77do;False;t3_ktbp1n;False;False;t1_gim6jtj;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gim77do/;1610204589;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;"I wish people would stop equating sexual/sensual appeal with ""trash""";False;False;;;;1610161007;;False;{};gim7aei;False;t3_kt9rcs;False;False;t1_gikw995;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim7aei/;1610204642;14;True;False;anime;t5_2qh22;;0;[]; -[];;;FountainsOfFluids;;;[];;;;text;t2_6sp2c;False;False;[];;And the universe's best superpower! Knowledge is power, folks.;False;False;;;;1610161043;;False;{};gim7cyq;False;t3_kt9rcs;False;False;t1_gil0rdh;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim7cyq/;1610204685;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;I still have hope that it is also the case here, just show me some of the MCs from Hand Shakers/W'z!;False;False;;;;1610161082;;False;{};gim7fqh;False;t3_ktafwf;False;False;t1_gim2y6p;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gim7fqh/;1610204734;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Paxton-176;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;MOE FOR THE MOE GODS DOUJINS FOR THE DOUJIN THRONE!;dark;text;t2_kmgwm;False;False;[];;There is still a chance that this takes place in the same universe.;False;False;;;;1610161134;;False;{};gim7jaz;False;t3_ktafwf;False;True;t1_gim7fqh;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gim7jaz/;1610204795;3;True;False;anime;t5_2qh22;;0;[]; -[];;;FountainsOfFluids;;;[];;;;text;t2_6sp2c;False;False;[];;"There are several bridges, they're just painted ""water blue"".";False;False;;;;1610161144;;False;{};gim7jz8;False;t3_kt9rcs;False;False;t1_gil5pxn;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim7jz8/;1610204806;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;Eh, someone tell me if it ends up being another secret sequel to Hand Shakers/W'z, otherwise don't really feel like watching it.;False;False;;;;1610161172;;False;{};gim7lxt;False;t3_ktafwf;False;True;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gim7lxt/;1610204840;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AuburnTheWolf;;;[];;;;text;t2_2t6f5c;False;False;[];;"Short response from me tonight on this one because of life. I just want to state that nothing makes my heart drop harder than seeing that empty auditorium after how hard those girls worked. And those damn echoing piano notes… gets me every time. But they continue on and give a great show, good on them! - -Discussion Questions: - -1. I used to be a musician myself (classical bass player in an orchestra), and dear lord, there was a seating audition back when I was in high school that made me so nervous, I could not play right, and to make it worse, we had to do sightreading, which I am usually good at... It was handwritten. Sloppily. Like, here I am, a high schooler, nervous, and I get a piece in front of me that I just *can't* read. Easy to say I bombed that seating placement. However, going forward, I have never been that nervous because I say to myself that it can't be as bad as that one time. -2. Being in their situation, I think I would just have to keep pushing forward, and try my best to make the live show work, which is what they did.";False;False;;;;1610161181;;False;{};gim7mlk;False;t3_ktbp1n;False;False;t3_ktbp1n;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gim7mlk/;1610204851;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Nixpheo;;;[];;;;text;t2_4wedsl4o;False;False;[];;He made the rock 100cm which is a little over 3ft. Think about a pebble being thrown at you 80 miles an hour it would just leave a welt but a rock the size of a fist thrown the same speed would probably break bone. Now just image the one he made forget a skeleton that would probably go through a house.;False;False;;;;1610161204;;False;{};gim7o6l;False;t3_kt9rcs;False;True;t1_gilr1bc;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim7o6l/;1610204879;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;I am not continuing this unless someone tells me characters from those shows showed up!;False;False;;;;1610161223;;False;{};gim7pia;False;t3_ktafwf;False;True;t1_gim7jaz;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gim7pia/;1610204900;3;True;False;anime;t5_2qh22;;0;[]; -[];;;EldritchCarver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Pilomotor;light;text;t2_4epcw;False;False;[];;They probably didn't have time to cram that detail into the first episode.;False;False;;;;1610161247;;False;{};gim7r7v;False;t3_kt9rcs;False;False;t1_gim6bkn;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim7r7v/;1610204930;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Giroln;;;[];;;;text;t2_2vcvxbnr;False;False;[];;Was meaning the real heartspan as in not the wooden facsimile Gean made.;False;False;;;;1610161275;;False;{};gim7t6w;False;t3_ktcwa0;False;True;t1_gil9qr1;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gim7t6w/;1610204965;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Paxton-176;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;MOE FOR THE MOE GODS DOUJINS FOR THE DOUJIN THRONE!;dark;text;t2_kmgwm;False;False;[];;Maybe we will get an update on the brother and sister relationship.;False;False;;;;1610161285;;False;{};gim7tu9;False;t3_ktafwf;False;False;t1_gim7pia;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gim7tu9/;1610204976;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;I honestly ended up liking those characters way more than I should have. Give me them, Koyori and the guy or the girl duo from W'z and I am all in.;False;False;;;;1610161390;;False;{};gim8129;False;t3_ktafwf;False;True;t1_gim7tu9;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gim8129/;1610205105;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Spoon_Elemental;;;[];;;;text;t2_ft38m;False;False;[];;"Ah yes, a likely trash tier generic harem anime with an OP protag. - -*grabs popcorn*";False;False;;;;1610161442;;False;{};gim84ms;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim84ms/;1610205170;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;True lol, i personally loved it. Think its just a trend to hate it :( it be sad;False;False;;;;1610161537;;False;{};gim8b5e;False;t3_kta14g;False;True;t1_gilzwyi;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gim8b5e/;1610205288;1;True;False;anime;t5_2qh22;;0;[]; -[];;;larvyde;;;[];;;;text;t2_60zt3;False;False;[];;and lose an excuse to kiss a cute girl every time something comes up? why would he do that?;False;False;;;;1610161586;;False;{};gim8ei9;False;t3_kt9rcs;False;False;t1_gil2gvk;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim8ei9/;1610205344;16;True;False;anime;t5_2qh22;;0;[]; -[];;;NeverGonnaSimp;;;[];;;;text;t2_9pkuih4r;False;False;[];;"""What does the board say about the reaper skull's points level?"" - -**""IT'S OVER 9000!""**";False;False;;;;1610161660;;False;{};gim8jjr;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gim8jjr/;1610205433;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"ah, the ""real replica""";False;False;;;;1610161716;;False;{};gim8nei;True;t3_ktcwa0;False;True;t1_gim7t6w;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gim8nei/;1610205499;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BlueDragon101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;"https://myanimelist.net/animelist/Xcal1bur?status=7&order=4&orde";light;text;t2_11q4nx;False;False;[];;"I mean the two have terrible animation for the exact opposite reasons. Handshakers has really fluid animation that looks like fucking ass cuz it makes you motion sick and has the worst compositing in existence and a camera on fucking drugs. - -Gibiate actually has really nice background art that the characters fit onto in a way that isn't...that...jarring, but the ""animation"" is a fucking slideshow and the CG belongs in the fucking 90's and the models often aren't even animated.";False;False;;;;1610161737;;False;{};gim8oxm;False;t3_ktafwf;False;False;t1_gils4cf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gim8oxm/;1610205525;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;Darling in the franxx;False;False;;;;1610161890;;False;{};gim8zcz;False;t3_kta14g;False;True;t3_kta14g;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gim8zcz/;1610205710;0;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;Usopp gets better as the show continues. Now the strawhats would feel incomplete without him;False;False;;;;1610161892;;False;{};gim8zii;True;t3_ktboqh;False;True;t1_gim2x31;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gim8zii/;1610205713;1;True;False;anime;t5_2qh22;;0;[]; -[];;;punching_spaghetti;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/punch_spaghetti;light;text;t2_3n9ifhct;False;True;[];;"I'm not saying there is; I'm just saying that's not a part of the performance that I can comment on.";False;False;;;;1610162031;;False;{};gim98vn;False;t3_ktbp1n;False;True;t1_gim77do;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gim98vn/;1610205877;2;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;Many highly paid marketing graduates worked so hard on it!;False;False;;;;1610162079;;False;{};gim9c4m;False;t3_ktbp1n;False;True;t1_gim6d87;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gim9c4m/;1610205935;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;hollowXvictory;;MAL;[];;http://myanimelist.net/animelist/h0ll0wxvict0ry;dark;text;t2_6hn3t;False;False;[];;Now we just need Summoning Salt to make a video on this.;False;False;;;;1610162465;;False;{};gima1uh;False;t3_kt9rcs;False;False;t1_gilomia;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gima1uh/;1610206423;12;True;False;anime;t5_2qh22;;0;[]; -[];;;SgtExo;;;[];;;;text;t2_cnfzs;False;False;[];;There is round, then there is generic fantasy round. Its like they drew a wall, then put a city in it.;False;False;;;;1610162821;;False;{};gimapn8;False;t3_kt9rcs;False;False;t1_gim6wx7;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimapn8/;1610206856;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Knifoon_;;;[];;;;text;t2_ynfa0;False;False;[];;Or chevys;False;False;;;;1610162859;;False;{};gimas9g;False;t3_kt9rcs;False;False;t1_gil82gr;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimas9g/;1610206905;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;I didn't even know Maya the bee was anime (guess I learned just now), I thought it was some cartoon!;False;False;;;;1610163074;;False;{};gimb6hj;False;t3_ktagg3;False;False;t3_ktagg3;/r/anime/comments/ktagg3/did_you_know_that_70s_childrens_classic_maya_the/gimb6hj/;1610207174;7;True;False;anime;t5_2qh22;;0;[]; -[];;;wutzabut4;;;[];;;;text;t2_152egp;False;False;[];;"It's more than just that, though. I literally listed the camera pan, the BGM, and their expressions; I felt they had perfect delivery and spot-on timing. The little amount of dialogue with no fluff was just the icing on the cake. - -Besides, who really cares about standards around here? It's literally a show about dancing and singing high schoolers. You can afford to think of it much more lightly. It's not a Shakespeare, and it doesn't need to be since that isn't what the series is trying to be in the first place. The fact that a scene like this can come from what appears to be a light series *is* totally great. Being elitist gets nobody anywhere and just kills the enjoyment in others and oneself.";False;False;;;;1610163435;;False;{};gimbub5;False;t3_ktbp1n;False;True;t1_gim6wda;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gimbub5/;1610207634;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ground-Rat;;;[];;;;text;t2_8goiu5v;False;False;[];;"Go back and watch the beginning again, and pay attention to the candy tin, there was a reason that Seita had kept it, and unfortunately you totally missed/didn't see it. - -If the station worker had been able to get the tin open, he would have immediately recognized what it was, and he would have been mortified, and then would have put it back with Seita's body, which then would have totally changed the film's opening. - -I usually tell people to go back and watch the beginning of the film, up to the point where they board the train. Because the second time they watch it, they should be able to see/understand what the candy tin was, and why Setsuko appeared when she did. - -I recommend that you go and watch the opening again, but if you don't want to here's what the tin was and what was inside it. - -(/s ""The candy tin actually contained the ashes of Setsuko, and some of the things that were important to her. This is why she appeared after it had been thrown and the lid popped off, it wasn't a random chicken bone that was shown"") - -It's a great film, one that I watch every so often, because it is so good.";False;False;;;;1610163486;;False;{};gimbxo8;False;t3_ktai3c;False;True;t3_ktai3c;/r/anime/comments/ktai3c/thoughts_on_grave_of_fireflies/gimbxo8/;1610207697;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SparrowSensei;;;[];;;;text;t2_3revu2sh;False;False;[];;Hope i am not the only one who dropped this trash in 5 minutes.;False;True;;comment score below threshold;;1610163494;;False;{};gimby6z;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimby6z/;1610207707;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;DArkingMan;;;[];;;;text;t2_en8o8;False;False;[];;This had some funny notes, but I am **so tired** with all the sexist bullshit being peddled to appeal to pre-/pubescent fantasies.;False;True;;comment score below threshold;;1610163633;;False;{};gimc79j;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimc79j/;1610207885;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;CrasianLe;;;[];;;;text;t2_379z3crt;False;False;[];;As you get older you start to realize what truly makes you happy and sometimes its the most simpliest things. And mine is having mangas that ive been reading for years be animated. This is one of the few things in life that truly and genuinely make me happy as an adult, whether it's a good or bad adaptation. Just being able to see it and watch it, is good enough. Great first episode by the way, right off the rip there was a kissing scene and he wasnt a lil immature dense running away pussy about it. Already gonna love it especially if it follows the manga close enough;False;False;;;;1610163721;;1610164376.0;{};gimcd4b;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimcd4b/;1610207991;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;"[Pretty good job on the subtle 3D moves with the dungeon walls here](https://i.imgur.com/xDCAjAT.jpg) - -[Nnnnnnice!](https://i.imgur.com/zMIzqKb.jpeg) - -[Forget powerful attacks, you can alter reality](https://i.imgur.com/XQbghlW.jpeg) - -[""Create Skill: Instant Orgy!""](https://i.imgur.com/m4GP7W4.jpeg) - -[Wh-what the heck is this dude??](https://i.imgur.com/WyDlOt1.jpeg) - -[You know, you could just give her the ability to size her boobs at will…](https://i.imgur.com/qJhlxYR.jpeg) - -[""Create Skill: Win Lottery!""](https://i.imgur.com/LBQUfSF.jpg)";False;False;;;;1610163863;;False;{};gimcm8v;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimcm8v/;1610208164;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TempestoLord;;;[];;;;text;t2_36iuel06;False;False;[];;I should have done the same. Horrible character.;False;False;;;;1610163965;;False;{};gimcsvs;False;t3_ktboqh;False;True;t1_gild3f5;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gimcsvs/;1610208294;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PantherIscariot;;;[];;;;text;t2_145hss;False;False;[];;"I think Ougi saying ""if we're still alive"" was intended to be an echo of what Araragi was saying to Seishirou right before Shinobu showed up. It works especially well because they're both going to die soon just as it's being said to them. - - -Also a pianist plays a piano. What does a koyomist play?";False;False;;;;1610163984;;1610164286.0;{};gimcu3h;False;t3_ktcwa0;False;False;t1_gil80n8;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimcu3h/;1610208317;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Pyro81300;;;[];;;;text;t2_7u7o64mm;False;False;[];;Fair, but watching them helps me appreciate how they tie all the stories together a lot more and enhances the experience for me.;False;False;;;;1610163985;;False;{};gimcu6c;False;t3_kta0qf;False;True;t1_gim2yzn;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gimcu6c/;1610208319;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LeafVillage4ever;;;[];;;;text;t2_63m78cca;False;False;[];;yeah I remember now when he says that after he cremates her on that hill. I honestly forgot and such an important thing to remember. Thanks for pointing that out lol . It is definitely a movie I will return to every so often as well;False;False;;;;1610164006;;False;{};gimcvjh;True;t3_ktai3c;False;True;t1_gimbxo8;/r/anime/comments/ktai3c/thoughts_on_grave_of_fireflies/gimcvjh/;1610208346;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Seraph_CR;;;[];;;;text;t2_whocm;False;False;[];;As someone who loved K, I'm already sold on this. I keep seeing mixed reviews on the animation but I'm personally loving it so far. Went in blind not knowing it was GoHands(should have known from the Reds and Blues in the thumbnail) So I'm going to keep my expectations set at 0 and just see how this goes.;False;False;;;;1610164155;;False;{};gimd57t;False;t3_ktafwf;False;True;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gimd57t/;1610208527;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;It helps that their skillset is more valuable. In the sense that they're not as replaceable, since it takes time to train a 3D animator, compared to 2D Animation, which is still very complicated, but nowhere near what 3D is like.;False;False;;;;1610164383;;False;{};gimdjxx;True;t3_kta0qf;False;True;t1_gilcses;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gimdjxx/;1610208808;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lenne18;;;[];;;;text;t2_o2hru;False;False;[];;And yet it still happened. Now what?;False;False;;;;1610164500;;False;{};gimdrf6;False;t3_ktbp1n;False;True;t1_gilwkt7;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gimdrf6/;1610208942;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"> The death chains cost so much to break that not even Olivia can break them there's no way he can at the moment. - -""Create Skill: Vibrator"" - she now has access to unlimited LP. - -> He slowed it down first and then used editing to make his rock bullet 100cm which is a little over 3ft and launch it at high speed of course its going to go through something like a skeleton. - -Yeah, try that against Ainz-sama why don't you?";False;False;;;;1610164703;;False;{};gime4dy;False;t3_kt9rcs;False;True;t1_gim6t9j;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gime4dy/;1610209191;0;True;False;anime;t5_2qh22;;0;[]; -[];;;soudaivm;;;[];;;;text;t2_683f3l6x;False;False;[];;"The MC is a chad. - -Girl: I want you to kiss me... - -MC: Ok - -Haha, I'm loving this anime already.";False;False;;;;1610164877;;False;{};gimefmi;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimefmi/;1610209405;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TroyElric;;;[];;;;text;t2_2zusjlry;False;False;[];;"Cardcaptor Sakura -A place further than the universe";False;False;;;;1610165796;;False;{};gimg1xg;False;t3_ktaey8;False;True;t3_ktaey8;/r/anime/comments/ktaey8/can_you_guys_give_me_recommendations_for_me_and/gimg1xg/;1610210650;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Purest_Prodigy;;MAL;[];;"http://myanimelist.net/animelist/Purest_Prodigy?&order=4";dark;text;t2_bt3t9;False;False;[];;kinky;False;False;;;;1610166418;;False;{};gimh4km;False;t3_kt9rcs;False;False;t1_gilueo3;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimh4km/;1610211364;7;True;False;anime;t5_2qh22;;0;[]; -[];;;raknor88;;;[];;;;text;t2_67otf;False;False;[];;"Everything about this anime says that it should be a dirty and raunchy anime, but with the mc's innocence it'll be hilariously wholesome while he blue balls his growing harem. - -And I say innocence because of the fact that instead of rubbing her aching shoulders he reduced the size of his friend's boobs.";False;False;;;;1610166588;;False;{};gimhf2k;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimhf2k/;1610211570;1;True;False;anime;t5_2qh22;;0;[]; -[];;;raknor88;;;[];;;;text;t2_67otf;False;False;[];;Yup. He's totally oblivious that Emma is into him. He thought the kissing was just to see if he could use his Great Sage skill and kept kissing her so he could get all the details to get into the dungeon. It was purely scientific for him. Hence why he was so surprised when she joined the academy with him.;False;False;;;;1610166868;;False;{};gimhwh6;False;t3_kt9rcs;False;False;t1_gikyc4s;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimhwh6/;1610211888;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ben99ny22;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ben99ny;light;text;t2_14rmpidg;False;False;[];;didn't araragi say he was happy in sodachi's arc. How come he says he ain't happy now?;False;False;;;;1610166962;;False;{};gimi2df;False;t3_ktcwa0;False;False;t3_ktcwa0;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimi2df/;1610211996;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Gyakuten;;MAL;[];;http://myanimelist.net/animelist/Kiyomaru;dark;text;t2_avs2t;False;False;[];;"> I felt they had perfect delivery and spot-on timing. - -I think this is one aspect of Love Live's anime, particularly SIP, that isn't appreciated enough. These first two seasons were directed by Takahiko Kyogoku, who would go on to direct the audio-visual marvel of Houseki no Kuni. His pedigree isn't very apparent in these first three episodes, but already you can see hints of it in that moment you mentioned: dramatic but smooth storyboarding choices like that camera pan; well-placed and well-timed music; and eschewing redundant dialogue for sustained focus on extremely expressive facial expressions. (The close-up on Honoka's face in that scene is admittedly a little goofy, but this aspect becomes much better and more evocative as the show progresses.) Despite the very dated CG, there's a lot to appreciate and discuss about the show aesthetically, especially later on.";False;False;;;;1610167225;;False;{};gimiig2;False;t3_ktbp1n;False;False;t1_gimbub5;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gimiig2/;1610212292;3;True;False;anime;t5_2qh22;;0;[]; -[];;;E123-Omega;;;[];;;;text;t2_12ndi1;False;False;[];;Just toss your stuff on the other side.;False;False;;;;1610167514;;False;{};gimj02h;False;t3_kt9rcs;False;False;t1_gil5pxn;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimj02h/;1610212634;4;True;False;anime;t5_2qh22;;0;[]; -[];;;raknor88;;;[];;;;text;t2_67otf;False;False;[];;"> he's denser than anime romance MC I've ever seen. - -I've seen worse. The villainess one from a couple seasons back where she ended up getting every single character to fall in love with her and she had zero clue.";False;False;;;;1610167619;;False;{};gimj6ey;False;t3_kt9rcs;False;True;t1_gil4v6a;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimj6ey/;1610212758;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MissMads2024;;;[];;;;text;t2_81qn52rc;False;False;[];;I don’t really mind the genre, more adventurous would be good but anything would work;False;False;;;;1610167718;;False;{};gimjcfe;True;t3_ktdvy4;False;True;t1_gilh8ly;/r/anime/comments/ktdvy4/underrated_anime_suggestions_to_watch/gimjcfe/;1610212873;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Quiddity131;;MAL;[];;http://myanimelist.net/profile/Quiddity131;dark;text;t2_f3bdc;False;False;[];;"Great write up! - -Some other super robot shows I'd recommend to people that weren't mentioned: - -* Ideon -* Baldios -* RahXephon -* Star Driver -* Bokurano";False;False;;;;1610167848;;False;{};gimjk4y;False;t3_kta0qf;False;False;t3_kta0qf;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gimjk4y/;1610213026;2;True;False;anime;t5_2qh22;;0;[]; -[];;;generalmillscrunch;;;[];;;;text;t2_zofoh;False;False;[];;"**Rewatcher** - - -Owari was always the section of Monogatari that hit home for me the most thematically, and this rewatch only verified and expanded on that. The first cour is the purest distillation of one of the most core concepts of the Monogatari series: juxtaposing the monstrous aspects of humanity with the humanity of monsters. The psychological examination of repressed memories, the tolls of domestic abuse, the trials of adolescence, the difficulties in unpacking the ingredients of what makes us who we are, and learning to love ourselves despite our faults and past transgressions, are all explored at length through the simple mystery of Araragi's past, and the history of the people and locations that led him through the story. - - -The repackaging of the harem constructs is also one of the primary through lines of the series, and Gaen playfully touches on that at the end by trying to make Araragi choose one of them. But I have always felt that it is a bit overblown and overshadows in the minds of its fans the other more intrinsic themes throughout the series. This cour sets up the payoff for what is in my mind the biggest theme throughout the show, and at risk of spoiling, I'll let the first-timers uncover that for themselves. I'm looking forward to the remaining episodes.";False;False;;;;1610167879;;False;{};gimjm03;False;t3_ktcwa0;False;False;t3_ktcwa0;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimjm03/;1610213063;4;True;False;anime;t5_2qh22;;0;[]; -[];;;joseto1945;;;[];;;;text;t2_819on36;False;False;[];;"This is a fucking hentai... without hentai - -I'm in!";False;False;;;;1610168006;;False;{};gimjth6;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimjth6/;1610213213;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;Ideon is...a trip. It's Tomino at his most fucked up, I've only seen clips, but jesus christ. As for Star Driver, I really couldn't get into it, none of it seemed good to me.;False;False;;;;1610168034;;False;{};gimjv4x;True;t3_kta0qf;False;True;t1_gimjk4y;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gimjv4x/;1610213243;2;True;False;anime;t5_2qh22;;0;[]; -[];;;reconman;;;[];;;;text;t2_a8p2j;False;False;[];;I see you also started watching subbed anime in the 00s.;False;False;;;;1610168198;;False;{};gimk4ys;False;t3_ktdvy4;False;False;t1_gilh8ly;/r/anime/comments/ktdvy4/underrated_anime_suggestions_to_watch/gimk4ys/;1610213447;1;True;False;anime;t5_2qh22;;0;[]; -[];;;evl4evr;;;[];;;;text;t2_6p3c5;False;False;[];;I took mine to the levee, but the levee was dry.;False;False;;;;1610168301;;False;{};gimkb3t;False;t3_kt9rcs;False;False;t1_gimas9g;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimkb3t/;1610213576;12;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Well for one he is a huge hypocrite which we saw as early as Suruga Monkey and Nisemonogatari, also he is saying that now on his own after taking losses with Hachikuji, Nadeko, Tsukimonogatari... he is not that happy about things internally and he played it up for Sodachi;False;False;;;;1610168345;;False;{};gimkdqd;True;t3_ktcwa0;False;False;t1_gimi2df;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimkdqd/;1610213627;6;True;False;anime;t5_2qh22;;0;[]; -[];;;LokamiLa;;;[];;;;text;t2_19dmh38g;False;False;[];;"Let me say that I loved the OST. It was seriously top notch. It took my breath away at some scenes! -The character designs are beautiful and the seiyuu(s) did an incredible job at bringing out each character's personality. - -The only thing I didn't like is the heavy CGI especially during the first minutes that are supposed to introduce us to the show. The director should know that first impressions count the most. That CGI sequence was the worse I've seen in modern anime. - -Not sure what to think of the plot yet. But one thing that startled me the most is the death of Eiji ! I was not expecting that. I thought he's a main character (?). I wasn't even sure if he's dead until I checked Wiki. - -Anyhow, I'll keep watching this show because it's got my attention. Let's see if the story improves in the next EP. - -EDIT : what's up with their bouncing hair btw?!";False;False;;;;1610168475;;False;{};gimkli8;False;t3_ktafwf;False;False;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gimkli8/;1610213768;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PawnOfTheThree;;;[];;;;text;t2_6lbwj;False;False;[];;"To be fair, he's cuddling his cute sister. - -He's also able to gain LP by eating fancy food or buying frivolous shit. - -It's more of ""LP == Serotonin"", just lewd is the most profitable.";False;False;;;;1610168554;;False;{};gimkq5b;False;t3_kt9rcs;False;False;t1_gilpsmw;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimkq5b/;1610213854;18;True;False;anime;t5_2qh22;;0;[]; -[];;;LokamiLa;;;[];;;;text;t2_19dmh38g;False;False;[];;As a demanding person who likes a fluid animation I honestly enjoyed the fight scenes. What I didn't like is the CGI. It was plainly awful.;False;False;;;;1610168793;;False;{};giml40d;False;t3_ktafwf;False;True;t1_giksv2m;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/giml40d/;1610214115;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TDS_Reaper;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ramenn/;light;text;t2_2qks3axi;False;False;[];;It felt like a cinematic of a videogame from 2007 it was so baddd, and they should stick to one thing why is there a 2d dude walking in a 3d world it makes my head hurt;False;False;;;;1610169039;;False;{};gimli5x;False;t3_ktafwf;False;True;t1_giml40d;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gimli5x/;1610214378;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LokamiLa;;;[];;;;text;t2_19dmh38g;False;False;[];;"The characters in their old style look more mature. Now they all have a baby face. It's not a bad thing though, I think it's pretty. -Besides the beautiful art, did you notice the OST? It was surprisingly gorgeous imho.";False;False;;;;1610169134;;False;{};gimlnpo;False;t3_ktafwf;False;True;t1_gill93c;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gimlnpo/;1610214480;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mayo_Ryuu;;;[];;;;text;t2_61hvrcab;False;False;[];;K Project was alright, story was okay, the things I liked were music, artstyle and animation though. Here everything looks bad. Why they just can't make an anime with a style of first K season.;False;False;;;;1610169163;;False;{};gimlpd2;False;t3_ktafwf;False;True;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gimlpd2/;1610214508;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LokamiLa;;;[];;;;text;t2_19dmh38g;False;False;[];;"I personally liked the first EP. Yes there are moments you wanna just scream at the studio *cough* that horrible CG *cough* but nonetheless the characters are nicely written (so far) and the music is gorgeous no joke. - -The fight scenes are beautifully animated too. Give it a try, maybe you'll like it. But please overlook the first 4 or 5 minutes.";False;False;;;;1610169609;;False;{};gimmebc;False;t3_ktafwf;False;True;t1_gilj5jd;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gimmebc/;1610214991;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Mayo_Ryuu;;;[];;;;text;t2_61hvrcab;False;False;[];;"Occultic;Nine - very good Occultic/mystery themed anime made by Steins;Gate creator. People hated it because of very fast pace, for me it only adds this crazy vibe when you add great music, art, shots and animation. - -Blood Lad - good comedy, something like Gintama/Saiki";False;False;;;;1610169609;;False;{};gimmecr;False;t3_ktdvy4;False;True;t3_ktdvy4;/r/anime/comments/ktdvy4/underrated_anime_suggestions_to_watch/gimmecr/;1610214992;1;True;False;anime;t5_2qh22;;0;[]; -[];;;maximus_md;;;[];;;;text;t2_3nhroflm;False;False;[];;"Ah man I used to fucking love RTL2 whenever I was in Germany for the summer as a kid; don’t think I’d love anime as much if it wasn’t for those lineups";False;False;;;;1610170335;;False;{};gimnjk1;False;t3_ktagg3;False;False;t1_gilo18c;/r/anime/comments/ktagg3/did_you_know_that_70s_childrens_classic_maya_the/gimnjk1/;1610215765;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Ask Kagenui, she is experienced in folding Koyomi after all;False;False;;;;1610170370;;False;{};gimnll7;True;t3_ktcwa0;False;False;t1_gimcu3h;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimnll7/;1610215809;5;True;False;anime;t5_2qh22;;0;[]; -[];;;zest88;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/zesty79740555;light;text;t2_5tcnkyer;False;False;[];; [**Oniisama e...**](https://myanimelist.net/anime/795/Oniisama_e);False;False;;;;1610170391;;False;{};gimnmqe;False;t3_ktdvy4;False;True;t3_ktdvy4;/r/anime/comments/ktdvy4/underrated_anime_suggestions_to_watch/gimnmqe/;1610215832;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;"**First Timer (caught up just in time for the finale)** - -> Give your thoughts about the phone call between Araragi and Senjougahara - -I really loved this phone call. Of course Senjou loves Araragi and was just being super Tsun about saying that she would immediately leave him. They both know that she'd never leave. I loved her sentiment about being special for *someone*. I'm also always happy to hear them say they love each other. It's so sweet! - -> What do you think about the resolution of the duel and Shinobu's part in it? - -I noticed the talisman on the shrine in the previous episode and wondered if it was more prominent than I remembered. Great move by Araragi. Not sure on the logistics of how he got within arm's reach when Kokoro Watari is **freaking massive** but I'll chalk that up to the first being arrogant. Speaking of, I loved how he started to sound like a classic Dracula for his laugh. I also don't get why Shinobu started getting a rash while eating him. I am glad that she confronted him/her feelings in the end. Even being 400 years old she has room to grow and I think that was great for her. - -> Do you think Gaen was playing 3D chess and bluffing Araragi into abandoning the duel out of concern for Hanekawa and Senjougahara or what has her plan with omitting info until it was almost too late? - -I truly think Gaen is the biggest mystery. I have a feeling we will learn more about Ougi in the next part or maybe after that. But Gaen? I think she and the rest of the specialists will just remain mysteries. If I were to guess Gaen's big brain play, it was to tell Araragi about all of that to make sure that *he* got Kanbaru away. Kanbaru served her purpose: talking to Shinobu. So with that out of the way, she was just another witness. Gaen relies on Araragi's shoddy memory (i.e. she got the armor). - -> Araragi tells the whole story to Ougi while he is in pajamas, on the day of his finals. How much did Ougi know about what would happen and did Ononoki know (regarding her comment about stepping on him)? - -Ya that's not weird or anything that Ougi is just in his house. No big deal right? Ougi knowing the first's full name is weird. She's only supposed to know what Araragi knows. So how did she learn? The only plausible answer: Nadeko told her. The lying snake. - -> What is the respective end game of Gaen and Ougi, what will happen in the next arcs? Also, give your judgement about Araragi's mental state at this moment. - -Poor Araragi is in a terrible state mentally. I wouldn't be surprised if he were clinically depressed. Even just losing Hachikuji was enough to be sad about. Combine that with the stress of entrance exams, Nadeko nearly killing him, another specialist trying to kill him, Gaen actually killing him.... that's a lot. At least he gets to see his best friend. Considering Ononoki mentioned both swords, I wouldn't be surprised if the goal was to kill Araragi with Kokoro Watararargi just to ""heal"" him with the other sword. (Is that what the other sword did? I can't remember.) What does that mean for Ougi? I'm unsure. At this point my guess for Ougi is that she's either the dark side of a person's emotional state (that's really vague) or someone's depression manifested (I think it works for Kanbaru and Araragi, but Nadeko?) or a reflection of someone's past regrets/mistakes. - -> How did you like this 6 episode long arc? - -This arc is hard for me. I can't help but feel an extreme amount of whiplash. We just came off a more grounded story with Sodachi and now we're back in full throttle craziness again. I did love learning more about the first/Shinobu. Additionally, it was extremely gratifying to learn about these ""missing chapters"" after so long (I *cannot* imagine the anguish of waiting for this to air).";False;False;;;;1610170477;;False;{};gimnrkk;False;t3_ktcwa0;False;False;t3_ktcwa0;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimnrkk/;1610215930;7;True;False;anime;t5_2qh22;;0;[]; -[];;;TokiWaKita;;;[];;;;text;t2_5x93wszo;False;False;[];;[I heard it's better than a Lambo!](https://imgur.com/CdmlwOI);False;False;;;;1610170517;;False;{};gimntru;False;t3_kt9rcs;False;False;t1_gim7cyq;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimntru/;1610215974;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Quiddity131;;MAL;[];;http://myanimelist.net/profile/Quiddity131;dark;text;t2_f3bdc;False;False;[];;"Ideon sure is a blast, has been one of my faves for a great many years now. - -I'd lean more towards Victory Gundam being Tomino at his most fucked up though given all the craziness that goes on in that show and all the production issues Tomino had surrounding it.";False;False;;;;1610171201;;False;{};gimoug4;False;t3_kta0qf;False;True;t1_gimjv4x;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gimoug4/;1610216679;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;Nina?;False;False;;;;1610171228;;False;{};gimovvi;False;t3_ktboqh;False;True;t1_gim5zv9;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gimovvi/;1610216708;0;True;False;anime;t5_2qh22;;0;[]; -[];;;FemaleTigress;;;[];;;;text;t2_3x9x5br9;False;False;[];;Olivia Servant is definitely best girl. I love her personality.;False;False;;;;1610171236;;False;{};gimow9r;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimow9r/;1610216715;4;True;False;anime;t5_2qh22;;0;[]; -[];;;chrngfrthnmy;;;[];;;;text;t2_3fyogxaw;False;False;[];;"\*\*First Timer\*\* - -Gah, I'm so late! I'm bad at keeping up so far, as I'm not used to dedicating so much time to group activities, lol. - -I remember sleeping in class. I used to wear spiked bracelets and I'd have indents on my cheeks. \*\*Very\*\* cool. - -I could definitely do without Awesomesauce, haha, but that's OK. Lots of my favorite shows have a little cringe to 'em. But I don't have access to the sub, so here we are! - -Did Umi like, forget the part where she has to be in front of people to be an idol? I'm with her, though...it's pretty scary to perform. Her freaking out over the short skirt is an even sillier gag now that she said she'd perform in her school uniform, haha. - -&#x200B; - -I'm glad we won't have to wait long for the first live performance. Even though no one showed up! - -&#x200B; - -OH GOD IT WAS SO CUTE IMMEDIATELY I loved this song! - -&#x200B; - -I like when anime decides to emphasize someone's passion by giving them more defined lips. - -&#x200B; - -I'm looking forward to seeing how Maki enters in! - -\*\*Discussion Questions\*\* - -&#x200B; - -\>Umi seemed very nervous before their first live, but was able to overcome her fear and perform with the help of her friends. Have you been in a similar situation where you were nervous before a certain event? What did you do to overcome your anxieties? - -&#x200B; - -I used to do solo songs at choir concerts in high school. A friend of mine was the pianist. It was really fun! At the time, I knew I had a pretty good voice, so I knew I'd be met with applause, and I wasn't quite as outwardly nervous. But literally the day before every performance, I'd have a ""sore throat."" It had to have been psychosomatic. Because I always did just fine when the time came. But I always started off so shaky because of nerves. I don't really know what I did. I just...did it. This is gonna sound made up, ~~but why would I make something up about some bs that happened in high school~~ but once, a lady came up to me and told me she thought I did a better job than her daughter, who was also a soloist, lol. I didn't know what to say so I just nervous laughed and said ""Oh no! Thank you!"" And now I sing karaoke when I drink enough, so that's basically the same thing. - -\>Everything seemed to be crashing down around Honoka and co. before their performance and all of their hard work and effort seemed to be going to waste. How would you feel in a situation like that. - -&#x200B; - -I think it depends. There is a chance that I would be upset and give up. But I think I may also have just done it anyway...if it was something I really wanted to do! If I was doing something for me and not other people, then I think it wouldn't matter if my cause fell through or not. Maybe. - -\*I do not know what happened with this formatting and I apologize, what even is technology, how does a message board";False;False;;;;1610171263;;False;{};gimoxpv;False;t3_ktbp1n;False;False;t3_ktbp1n;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gimoxpv/;1610216749;6;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"Senjougahara veils the declaration of love into the threat of them both continuing to grow as people, her shell is much harder than the core - -> I also don't get why Shinobu started getting a rash while eating him - -That's just vampire goo on her face - -> Gaen relies on Araragi's shoddy memory (i.e. she got the armor). - -that's an interesting point - -> Is that what the other sword did? I can't remember.) - -Dream Span heals and revives oddities - -> extreme amount of whiplash. - -the thing is if we would watch Koyomi only now we suddenly have lots of filler that then leads directly into the 2nd part of Owari our way at least prepares us for the more mundane background of Sodachi before then shifting to the supernatural mysteries";False;False;;;;1610171297;;False;{};gimozjp;True;t3_ktcwa0;False;True;t1_gimnrkk;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimozjp/;1610216796;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> The repackaging of the harem constructs is also one of the primary through lines of the series, and Gaen playfully touches on that at the end by trying to make Araragi choose one of them - -it's also coming full circle with Shinobu Time that had the same question and lead him into this arc and presents the question for the rest of Owari: Embrace the vampire or become human? Which in large parts stands for adolescence and emotions in my opinon";False;False;;;;1610171441;;False;{};gimp726;True;t3_ktcwa0;False;False;t1_gimjm03;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimp726/;1610216941;4;True;False;anime;t5_2qh22;;0;[]; -[];;;chrngfrthnmy;;;[];;;;text;t2_3fyogxaw;False;False;[];;"\>I do question their superhuman ability to project. -HA I didn't even notice there were no mics! - -That still with the 2D/CG mixed is ROUGH. - - -\>and nothing bad happened -Yay!! That's a happy story.";False;False;;;;1610171603;;False;{};gimpfl0;False;t3_ktbp1n;False;True;t1_gil0ydg;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gimpfl0/;1610217104;2;True;False;anime;t5_2qh22;;0;[]; -[];;;masterofbeast;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/masterofbeast;light;text;t2_enu6l;False;True;[];;"Anime: Woman in chains - -Me: It's not that type of anime, I will ignore it. - -Me also: ignores little sister - -Anime: Dude can only heal his headaches with kisses. - -Me: Wait a minute.... - -Anime: Dude manipulates boob sizes - -Me: Damnit";False;False;;;;1610171805;;False;{};gimppxq;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimppxq/;1610217303;4;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;"Goddannar is available on Blu-Ray (Sentai) - -As is Dai-Guard (Discotek) - -One could mention Gun X Sword which is a really good mix of Space Western & homages to various Mecha types.";False;False;;;;1610172062;;False;{};gimq36l;False;t3_kta0qf;False;True;t3_kta0qf;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gimq36l/;1610217545;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;"Yeah some of these are available physically, I kept the links to streaming for ease. - -Gun X Sword is an interesting one.";False;False;;;;1610172237;;False;{};gimqbxf;True;t3_kta0qf;False;True;t1_gimq36l;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gimqbxf/;1610217716;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;"> vampire goo - -Ah that makes a lot more sense! - -> if we would watch Koyomi now - -Oh ya I definitely can't imagine watching Koyomi now! I do think I get why the watch order is so highly debated. I'm glad this rewatch chose the novel order. It is nice to consume it in the way it was originally written!";False;False;;;;1610172458;;False;{};gimqn54;False;t3_ktcwa0;False;True;t1_gimozjp;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimqn54/;1610217920;2;True;False;anime;t5_2qh22;;0;[]; -[];;;imaforgetthis;;;[];;;;text;t2_2d7gcwde;False;False;[];;">Wow, they're just going for it with this one. I honestly appreciate shows like this that don't bother with pretense. It knows what it wants to be and does just that to the best of its ability. - -This first episode was basically spoon-feeding all types of fan service. They even set it up so that fan service powers him up/recovers LP. This obviously won't be anything special or good by most standards, but it's got that ""just for fun"" vibe that The Misfit of Demon King Academy had going for it.";False;False;;;;1610172558;;False;{};gimqs2i;False;t3_kt9rcs;False;False;t1_giksayj;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimqs2i/;1610218022;6;True;False;anime;t5_2qh22;;0;[]; -[];;;megamnd;;;[];;;;text;t2_n2jv9;False;False;[];;Bokurano, man what a ride that was.;False;False;;;;1610172728;;False;{};gimr0fg;False;t3_kta0qf;False;False;t1_gimjk4y;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gimr0fg/;1610218191;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Koyomi feels a bit redundant, just like Hana, if you follow airing order. The themes flow much better the way it was written, which is not surprising. Koyomi is so contentious because of the very plot relevant episodes in the end and I just have to say that I prefer the novel order;False;False;;;;1610172737;;False;{};gimr0vs;True;t3_ktcwa0;False;True;t1_gimqn54;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimr0vs/;1610218199;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;"> Could the sword be some kind of trap? Seeing as Gaen wouldn't want Araragi just to lose I'm guessing. - -Yet Gaen seemed legit shocked when Araragi won. I wonder what was up with that. Maybe she was just shocked by *how* he won. - -> Or maybe this is part of how Araragi can come back to life by making a dream span to heal and save Araragi in the next(?) arc. - -I'm with you there. My guess is he'll come back and the death was to separate him from Shinobu. - -> Still holding onto the theory that Gaen just have very good information gathering and prediction abilities instead of full knowledge. - -I'm also with you here. There's no way that she literally knows everything. She's either pretentious or Araragi's narration is putting her at godlike status.";False;False;;;;1610172822;;False;{};gimr533;False;t3_ktcwa0;False;False;t1_gila7ui;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimr533/;1610218272;7;True;False;anime;t5_2qh22;;0;[]; -[];;;NicDwolfwood;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/NicDwolfwood;light;text;t2_m1pib;False;False;[];;"**Rewatcher** - -**Shinobu Mail pt.6** - -* That phone call between Araragi and Senjougahara was sweet -* [gotta love Senjougahara's honesty](https://imgur.com/a/EQ3746b) -* ""You will never be special, but you can be special in the eyes of someone else"" -* First Minion is back in the giant samurai form -* [Hanekawa's photo from Araragi's room](https://i.imgur.com/owgyoCA.jpg) -* So Gaen didn't want Araragi to go forth with the duel to begin with and asks him if his duel is more important than saving his friend and girlfriend -* [LOL Araragi](https://i.imgur.com/pQ6zOBg.jpg) -* [Shinobu is near by after all](https://i.imgur.com/izqHp2k.jpg) -* [Clever Araragi](https://i.imgur.com/DdeEq2h.jpg) -* First Minion's name is Shishirui Seishirou -* [Araragi is special to Shinobu](https://i.imgur.com/ToWdAxc.jpg) -* So Araragi told Ougi this story the morning of his exam, the day he died at the hands of Gaen -* Ononoki with some good advice to Araragi - -&#x200B; - -**Questions:** - -1. It's lovely, they have a really good relationship and since she isn't highly involved, so scenes with her and Araragi are nice. -2. Credit to Araragi, A good example of him using his brain and not simply diving into things head first with reckless abandon. I have somewhat mixed feelings on Shinobu's involvement this episode. She kinda got to avoid doing much until Seishirou was dying. Then she swooped in, told him that she forgave him, but Araragi is important to her now and then consumed him. -3. It would have been inconvenient to her if Araragi died, since all hell would have broken loose. She probably was hoping he would choose to abandon the fight that way she could proceed with her plan. -4. I think Ougi might have known something, I dont remember really. Ononoki was most likely filled in on it I'm sure. -5. It seemed like Gaen was angling towards acquiring the armour of the first minion, based on what Ougi said. Ougi is hard to pin down for me. What we know is that she actively went against Gaen's plans, and has contributed to Araragi's current mental state. -6. It's a bit slow and filled with alot of Gaen info dumps in the middle, but It's good overall. It ties up what happened currently to Tsubasa Tiger, and it tied up Shinobu's past with Seishirou.";False;False;;;;1610172852;;False;{};gimr6ji;False;t3_ktcwa0;False;False;t3_ktcwa0;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimr6ji/;1610218300;5;True;False;anime;t5_2qh22;;0;[]; -[];;;imaforgetthis;;;[];;;;text;t2_2d7gcwde;False;False;[];;">While this isn't the first time the MC of a harem anime got a kiss on episode one but I think this is the first time I've seen it happen with a childhood friend! - -Two very rare scenarios, but they crossed both off simultaneously less than 10 minutes into its premiere. It's speed-running with the fan service.";False;False;;;;1610172883;;False;{};gimr81m;False;t3_kt9rcs;False;False;t1_gikyxjp;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimr81m/;1610218329;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;"> this is all just mere days before Nadeko Medusa and Kuchinawa only became ""real"" through Nadeko, but First One was eating most oddities and destroying the temple so now there should be even more of a vacuum than before - -Oh gosh, I hadn't even thought of what that would mean for the shrine. Is that why Kagenui was staying there? Was she helping keep the balance? I wonder why she left then. Interesting!";False;False;;;;1610172898;;False;{};gimr8qs;False;t3_ktcwa0;False;True;t1_gilc80n;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimr8qs/;1610218345;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Audrey_spino;;;[];;;;text;t2_11jl4w;False;False;[];;Back Arrow is directed by the creator of Code Geass and written by the creator of Gurren Lagann, so I expect it to be more mecha than toku.;False;False;;;;1610172902;;False;{};gimr8yk;False;t3_kta0qf;False;True;t1_gim0tim;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gimr8yk/;1610218349;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> I wonder why she left then - -she did not leave, it is more accurate to say she disappeared . The temple is a place of constant ""spirit warfare"" due to that magic air pocket it has so the place might be bound for trouble";False;False;;;;1610173131;;False;{};gimrk1u;True;t3_ktcwa0;False;True;t1_gimr8qs;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimrk1u/;1610218557;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;The cultured variety;False;False;;;;1610173254;;False;{};gimrq2q;False;t3_kt9rcs;False;True;t1_gim451a;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimrq2q/;1610218661;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> I have somewhat mixed feelings on Shinobu's involvement this episode. - -on one hand it's the thing about teaching old dogs new tricks, but it was somewhat half-hearted";False;False;;;;1610173297;;False;{};gimrs6k;True;t3_ktcwa0;False;True;t1_gimr6ji;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimrs6k/;1610218699;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> She's either pretentious or Araragi's narration is putting her at godlike status. - -""I'm Gaen Izuoko. I know everything. I have come to negotiate"" you know something is up when she introduces herself like that to First One";False;False;;;;1610173396;;False;{};gimrwxu;True;t3_ktcwa0;False;True;t1_gimr533;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimrwxu/;1610218792;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Clutch_;;;[];;;;text;t2_chaww;False;False;[];;I'll be honest - I'm not a fan of the anime format of waiting a week for a 20 minute episode. I usually wait for them to rack up - so i might be watch in a month when more episodes are out.;False;False;;;;1610173414;;False;{};gimrxrw;True;t3_kt9txf;False;True;t1_gim0xax;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/gimrxrw/;1610218806;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;"> I awwww'd. Did anyone else awwwww? - -I awww'd. You're not alone. I was smiling from ear to ear at the exchanged ""I love you"" and then the following ""we should talk like this more often"". It was just so sweet! - -> I get that it might be redundant to repeat the same events all over again, but I think Shinobu having an actual interaction with First would have been more powerful overall. - -Rather than avoiding redundancy, I think this moment really humanized Shinobu. Saying goodbye is hard and moving on is hard. By never seeing him again, she can stay mad at him and lie to herself saying ""he left he. He hated me!"" After hearing from him, it doesn't seem like that was the case at all. I wouldn't be surprised if the first killed himself because he confessed his love to Kiss-Shot 400 years ago and she didn't give him an answer. So her finally talking to him was her finally confronting that lingering thread of her life. A bit of a stretch, but it might even be analogous to saying that ignoring someone's feelings and ghosting them makes you the same as a monster. - -> I don't think Ougi is hanging around in anyone else's house to make them recount their tales of woe - -Ougi has been unique for each person. Ougi appears as Araragi's shadow, knows his private information, and gets him to talk. Ougi ""stole time"" from Nadeko. Ougi changed genders for Kanbaru (I don't quite remember these encounters too well). - -> It was good and tied up a lot of loose ends, but in my opinion it was the weakest in Owarimonogatari. - -I think I agree there. I thought I was biased towards the Sodachi arcs because I loved the contrast of that arc, so it's good to hear another voice agree.";False;False;;;;1610173554;;False;{};gims4ei;False;t3_ktcwa0;False;False;t1_gilaybf;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gims4ei/;1610218927;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;After spending 400 years alone, it makes sense for Shinobu to become quite shut off to her emotions. I think this step was huge for her and I think it really humanized her (as funny as that is to say).;False;False;;;;1610173635;;False;{};gims89h;False;t3_ktcwa0;False;True;t1_gilkg3a;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gims89h/;1610218998;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;"She disappeared because Gaen cut Kagenui apart while practicing with Kokoro Watari. Oops. - -In all seriousness, disappeared sounds very ominous. I hope it's more like she went somewhere else rather than she died. (Though if my random joke turns out true and she meets Araragi in the afterlife with Hachikuji, I'm going to freak out.)";False;False;;;;1610173858;;False;{};gimsipc;False;t3_ktcwa0;False;False;t1_gimrk1u;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimsipc/;1610219192;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;"I might've missed something but I never understood what the duel was exactly. Why did the specialists not just kill the first one on their own? Because they wanted Shinbu to eat him, thus giving him a true death, is my only guess. - -Also, I saw no incentive for Araragi to agree to the duel. Did he agree just because Gaen told him to?";False;False;;;;1610174006;;False;{};gimsphn;False;t3_ktcwa0;False;True;t1_gimrwxu;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimsphn/;1610219323;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;Does that mean the big brain move is to be a half vampire so you can just ~~live your life~~ be hot like Episode?;False;False;;;;1610174207;;False;{};gimsyqj;False;t3_ktcwa0;False;False;t1_gilfwtp;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimsyqj/;1610219495;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;That's the true reason everybody hates Dhampirs, they are cocky Bishonen;False;False;;;;1610174374;;False;{};gimt6h1;True;t3_ktcwa0;False;True;t1_gimsyqj;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimt6h1/;1610219651;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"Well the dude is still a considerable danger and Gaen does not strike me as the combat specialist. It's the same in Kizu when Meme made them duel even though he seemed to always have the upper hand. - -And for Araragi it is personal, can't just be wimp and run from confrontation and all that, he has that need to prove himself";False;False;;;;1610174538;;False;{};gimte4e;True;t3_ktcwa0;False;True;t1_gimsphn;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimte4e/;1610219791;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;"What you say might apply to some people. I just read the manga about 8 months ago and disagree with what you said in the first half, it’s pretty clear to me that we are going to see Marleyan’s side after S3p2 while i do admit i was a bit confused when i first read it. The premise of Warrior candidates and Reiner’s backstory are absolutely engaging for me and that’s when I thought AOT is more than what i thought. - -So far from the what i’ve heard, most anime-onlies are interested on this tone shift.";False;False;;;;1610174750;;False;{};gimtnos;False;t3_kt9txf;False;True;t1_giku0sz;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/gimtnos/;1610219964;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yu-chan;;;[];;;;text;t2_c5cao;False;False;[];;I find tsunderes to be really annoying and Wolfram von Bielefeld was the first tsundere that seriously pissed me off.;False;False;;;;1610174926;;False;{};gimtvl5;False;t3_ktboqh;False;True;t3_ktboqh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gimtvl5/;1610220118;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;">so art inconsistency, I guess. Blame it on Hanekawa imagining him with less clothes. - -Oh I definitely thought it was just Hanekawa fantasizing about her knight in shining armor. I thought it was hilarious how ""normal"" he looked by the end of this duel compared to how Hanekawa saw him. - -> [the roller](https://imgur.com/a/M0K5bNa) he wielded against Dramathurgy. - -I never would've remembered that, and that's hilarious. - -> Shinobu finally showing herself, after the decision was made for her, and [crying](https://imgur.com/a/jmnHS1i) for this final parting, closure as much for her as for the First. - -This is the first time we've seen her cry, right? Really it's the first emotion beyond condescending laughter and ~~petty~~ doughnut-induced rage. - -> But without any explicit rejection, he just saw Araragi as an obstacle and tried to prove himself. - -I really enjoyed this aspect of the story. Shinobu is flawed and, in a way, is representative of how monstrous it can be to ""ghost"" someone and never respond to their professions of love/endearment/etc. - -> In a way, with Shinobu being such a big part of him, this is saying that no matter the strength of a relationship, you should always prioritise yourself. - -Wow, I absolutely love this take. For a while now, I've been challenging myself to think about this series as if none of the apparitions really existed (since it is the exaggerated story of teenagers after all, Kaiki's narrative excluded). I never really understood what Shinobu could be and I think this interpretation is perfect.";False;False;;;;1610175016;;False;{};gimtznx;False;t3_ktcwa0;False;False;t1_gil80n8;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimtznx/;1610220200;5;True;False;anime;t5_2qh22;;0;[]; -[];;;baniRien;;;[];;;;text;t2_wxbyg;False;False;[];;"> This is the first time we've seen her cry, right? Really it's the first emotion beyond condescending laughter and petty doughnut-induced rage. - -She did cry as Kiss-Shot, both in Kizu and Mayoi Jiangshi, but not as Shinobu. She did also show some shame when she realised she'd destroyed the world in the other timeline. - -Glad to see you've caught up btw, see you tomorrow";False;False;;;;1610175264;;False;{};gimuaq7;False;t3_ktcwa0;False;False;t1_gimtznx;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimuaq7/;1610220404;4;True;False;anime;t5_2qh22;;0;[]; -[];;;PantherIscariot;;;[];;;;text;t2_145hss;False;False;[];;She could play him like an accordion.;False;False;;;;1610175350;;False;{};gimueix;False;t3_ktcwa0;False;True;t1_gimnll7;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimueix/;1610220471;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;"I absolutely love where Koyomi fell and how Sodachi's arc followed it. As many of you rewatchers alluded, it was buttering us up for an arc without apparitions. -For Hana, I imagine that Ougi is not as interesting if you watch that later. I won't speak as if I know, but I can imagine that could happen. The only piece of Hana that I question is how it makes us know that Araragi and Kaiki are safe. On the one hand it shows that Kaiki straight up lied to us about dying, but it also completely removed any suspense I had during Nadeko Medusa or even now that Araragi is dead. I'm not saying that I should have suspense, as that's NisiOisiN's decision. I'm just saying that's the only part I find questionable.";False;False;;;;1610175400;;False;{};gimugpg;False;t3_ktcwa0;False;True;t1_gimr0vs;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimugpg/;1610220510;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;It is statement that this is about the destination as much as about the journey but that the big twist will not be a life or death situation of Araragi. Because life goes on even after graduating;False;False;;;;1610175644;;False;{};gimurnl;True;t3_ktcwa0;False;True;t1_gimugpg;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimurnl/;1610220716;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chiffen_n_wackles;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/SlammyHammy;light;text;t2_4291vt7n;False;False;[];;Wow, I've totally forgotten all about that show. I gave it a 9 so apparently I had liked it a lot.;False;False;;;;1610176014;;False;{};gimv7jv;False;t3_kta14g;False;True;t1_gikule0;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gimv7jv/;1610221019;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;">Now if we consider ougi to be some extension to araragi's mental (considering many hints on shared memories and both referring to time a lot) then is she doing whatever she is for the benefit of araragi or the opposite? - -This helped me come up with a new theory: what if Ougi is the part of a human-apparition hybrid and she tries to egg the person into becoming more apparition-like?";False;False;;;;1610176234;;False;{};gimvh0b;False;t3_ktcwa0;False;True;t1_giljeea;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimvh0b/;1610221187;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;I do wonder if that was a feint by Araragi or if that meant that the shoes actually barely fit him at all. I don't know which answer I like more, honestly.;False;False;;;;1610176768;;False;{};gimw35l;False;t3_ktcwa0;False;True;t1_giletxd;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimw35l/;1610221596;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chiffen_n_wackles;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/SlammyHammy;light;text;t2_4291vt7n;False;False;[];;"[Avenger](https://myanimelist.net/anime/56/Avenger?q=avenger&cat=anime) - -Doesn't seem like anybody enjoyed it but I did (8/10). Naturally this was back in the early days of my anime life so I took what I could get. Even though I can agree with most of the criticisms I had a good enough time.";False;False;;;;1610176776;;False;{};gimw3gp;False;t3_kta14g;False;True;t3_kta14g;/r/anime/comments/kta14g/what_is_an_anime_that_is_mostly_dislikedbut_you/gimw3gp/;1610221602;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SleepyPanda333;;;[];;;;text;t2_1gs0rqmo;False;False;[];;"Yeah the old art style gives off a more “mature” vibe and their faces are more unique from one another. - -The OST is awesome! There’s some rock tunes and also jazz tunes which is great! This studio is known for having great music and visuals (most of the time) so even if the story + characters are a complete disaster, at least it was an aesthetically pleasing one.";False;False;;;;1610176859;;False;{};gimw6wt;False;t3_ktafwf;False;True;t1_gimlnpo;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gimw6wt/;1610221665;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;I want to believe it was premeditated as he seemed rather nonplussed by losing the shoe;False;False;;;;1610176879;;False;{};gimw7od;True;t3_ktcwa0;False;True;t1_gimw35l;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimw7od/;1610221679;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;">""Who even wants to watch Kaiki Deishuu's schooldays? - -Where the hell do I sign the petition to get this aired?";False;False;;;;1610176997;;False;{};gimwckz;False;t3_ktcwa0;False;True;t1_gilbfxn;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimwckz/;1610221769;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;"I can safely say that Owari has been my favorite season so far from what you've mentioned. Sodachi's arc was so beautiful and it only works *because* we've spent many seasons dealing with apparitions and crazy fantasy. The lack of any fantastical elements really drove home just how messed up Sodachi's life was for me. - -If we examine this story as Araragi fluffing the story with fantasy elements to make it more entertaining, then that also says something about how he viewed Sodachi. She was so tragic that he couldn't say anything but the truth. He couldn't downplay her story by injecting fantasy elements. What we're left with is such a raw story that hits so much harder.";False;False;;;;1610177441;;False;{};gimwug8;False;t3_ktcwa0;False;False;t1_gimjm03;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimwug8/;1610222134;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LeonKevlar;;MAL;[];;http://myanimelist.net/profile/LeonKevlar;dark;text;t2_6avje;False;False;[];;"People like to shit on GoHands but everyone seems to forget that they're still the same studio that animated Seitokai Yakuindomo and just had their second movie released at the start of the year [and is currently #1 on Japan's Mini-Theatre rankings.](https://i.imgur.com/fldyeHl.png) - -With that said, I am not watching this show any further. I'm like one of the three people on this sub that unironically loves Hand Shakers and W'z but it looks like this show is not related to that franchise so it's a pass for me.";False;False;;;;1610177469;;False;{};gimwvn6;False;t3_ktafwf;False;True;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gimwvn6/;1610222156;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;">She probably was hoping he would choose to abandon the fight that way she could proceed with her plan. - -What the heck could her plan even be anyway? Did she want to the first to survive and give him the talisman so he could be a god instead of Shinobu? Or was this the outcome she secretly wanted? I can't imagine we'll find out but it's fun to speculate.";False;False;;;;1610177579;;False;{};gimx01w;False;t3_ktcwa0;False;True;t1_gimr6ji;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimx01w/;1610222238;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"Well, it's way better than Handshakers ep 1 was, so unlike that one I'll keep watching. - -Fight scene action's pretty good, but in one early scene where MC was walking while the camera was panning vertically, his steps weren't lined up with the ground moving under him.... - -Annoying mornic dude who insists on hitting murderous mafiosos with the back of his sword might make me drop the show though.";False;False;;;;1610178043;;False;{};gimxill;False;t3_ktafwf;False;True;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gimxill/;1610222612;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;"Thanks for sharing. That honestly has completely resolved any lingering doubt I had about that. I love that interpretation and hadn't even considered the question of ""if Araragi's surviving isn't the twist, then what is?"" - -This also has me thinking more about the juxtaposition mentioned elsewhere in this post. I love the symbolism that the entrance exam day is literal death for Araragi. The stress of those tests is no joke. After spending months studying and stressing over them with Senjougahara and Hanekawa, I imagine that this test does feel like life or death. - -Additionally, it's fun to see parallels to Nadeko's threat of death and graduation day too. That's another point in life that could feel like an impending doom to a high schooler. - -The more I let this story sit with me, the more I love the symbolism used all over. I can definitely see why a rewatch would be fun!";False;False;;;;1610178046;;False;{};gimxipy;False;t3_ktcwa0;False;True;t1_gimurnl;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimxipy/;1610222615;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;It was much better than Handshakers ep 1.;False;False;;;;1610178082;;False;{};gimxk8a;False;t3_ktafwf;False;True;t1_gilj5jd;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gimxk8a/;1610222643;0;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;These exams are really harsh. Some say harder than actually graduating from college. So the anxiety building up can make you easily feel liking dying;False;False;;;;1610178463;;False;{};gimxz2l;True;t3_ktcwa0;False;True;t1_gimxipy;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gimxz2l/;1610222951;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/TopsiKrett/;light;text;t2_9p473xje;False;False;[];;">I could definitely do without Awesomesauce, haha - -You wouldn't believe how much shit people have given the dub of SIP over that one word.";False;False;;;;1610178973;;False;{};gimyiw6;False;t3_ktbp1n;False;True;t1_gimoxpv;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gimyiw6/;1610223334;3;True;False;anime;t5_2qh22;;0;[]; -[];;;No-Celebration-8527;;;[];;;;text;t2_7vaj8qdm;False;False;[];;"Rewatch - -I don't really have too much to say, mainly cause some of the interesting stuff has already been said or would be spoilers, or it would just be general observations. I never participated in a rewatch before so its a bit weird for me. I don't think I probably will comment every episode, or at least for these earlier episodes. - -For me re-watching it is pretty interesting noticing some stuff about the characters after you see the whole thing. Like how [spoilers](/s ""Nico was pissed off when seeing A-RISE (contrasting Hanayo & Honoka) cause she had already tried and failed to become an idol in the past""). And also moments which surprised me cause I completely forgot like Hanayo sneaking up on the notice board to get a flyer for μ's. I feel like I could give other examples of this but I forgot. I could probably write them down next time but I don't really like doing that cause it makes the experience worse. I think I prefer writing about it after watching the whole thing but there are still some things to talk about during these episodes, maybe moreso in season 2. - -Oh yeah another thing I noticed I guess was that they were practicing the moves for START:DASH!!. And Nozomi said she would go home but obviously didn't. I really liked how they presented the performance, the whole setup and failure thing has been discussed already but I also thing scenery was great. Maki was actually impressed or at least happy for them, Nico hiding behind the chairs [spoliers](/s ""cause she doesn't want them to know that she's interested in their group, and how she's puzzled and absolutely jealous that they were able to perform as a team while she was failing to even form a group""). And obv. Eli & Honoka and also Nozomi.., I think I'm gonna start liking Nozomi a lot more as the episodes go by. - -Also I think START:DASH!! has the worst CG, most probably because it's reinforced by its dark background. Also damn Honoka looks tired af at 19:40. I think it looks the worst at 19:44. But I really wouldn't say it's ""creepy"" or ""robotic"", to me that sounds like an over-exaggeration although I don't really make myself very bothered about it. And it gets better over time especially in Sunshine!!. This is said before a lot but its surprising to see how the animation and more especially the CG improves as time goes on, even a bit as soon as SIP S2. - -This ep. has my 2nd favourite OST track, when Umi doesn't want to wear the costume (hmm a bit selfish that Umi was getting Honoka & Kotori to work physically hard for the live now) but Honoka & Kotori don't want it all to go to waste because of her. My 1st favourite is near the end of season 2 though. I *really* like the OST of this anime (that's not including the insert songs or OP/ED, and they are also really good).";False;False;;;;1610179004;;False;{};gimyk45;False;t3_ktbp1n;False;True;t3_ktbp1n;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/gimyk45/;1610223358;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chika2chi;;;[];;;;text;t2_4dkz2y8e;False;False;[];;I don't know it could be. also remember it's different for those who binge-read through the manga and those who had to wait months to figure things out and adjust.;False;False;;;;1610179450;;False;{};gimz18n;False;t3_kt9txf;False;True;t1_gimtnos;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/gimz18n/;1610223728;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;Absolutely, that even happens in the recent chapters too. However, I can say that anime-onlies wont have the struggle of manga readers to painfully wait each chapter per month while they can get 2 chapters animated per week;False;False;;;;1610181119;;False;{};gin0rss;False;t3_kt9txf;False;True;t1_gimz18n;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/gin0rss/;1610225004;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LordJayfeather;;;[];;;;text;t2_o18msku;False;False;[];;"I mean, there kinda is in the end, and some episodes do reference others. I mean, Gintama really doesn't have an overarching story by and large. You can watch pretty much any episode and understand exactly as much as the person watching all of them; which is little to nothing.";False;False;;;;1610182125;;False;{};gin1s4j;False;t3_ktd8wk;False;False;t1_gilk11i;/r/anime/comments/ktd8wk/anime_even_remotely_similar_to_gintama/gin1s4j/;1610225753;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chika2chi;;;[];;;;text;t2_4dkz2y8e;False;False;[];;for sure, shit will start happening next episode and then it's non stop plot. Where we disagree I guess that you found the Marley set up engaging and I don't. and that's not an accident. I think Isayama is good at thinking through a tightly-knitted plot where twists and mysteries unravel in a satisfying way and everything sort of fits together. but he is not good at characterization at all in my opinion, that's why in chapters where there is no plot happening - and they're few - they fall flat.;False;False;;;;1610182316;;False;{};gin1yyg;False;t3_kt9txf;False;True;t1_gin0rss;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/gin1yyg/;1610225901;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yinnous;;;[];;;;text;t2_5ed126cw;False;False;[];;if i'm being honest, so far it seems really good. the script and audio of the characters during fights and the abruptness and awkwardness of the script kind of throws me off a bit. animation-wise i actually kind of enjoy it. it's something new and interesting. and in my opinion the cgi sort of fits. of course there were moments where it felt odd but other than that, it looks pretty good so far. i'll keep watching to see what happens;False;False;;;;1610182464;;False;{};gin2465;False;t3_ktafwf;False;False;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gin2465/;1610226003;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;I can see your criticism and agree that some characters could be developed a bit more. For the flat chapters, luckily i dont find them boring at all, it’s not as amazing as the hype chapters ofc but to me, it’s pretty much necessary there especially those politic talks ( i hate politics but these talks provided some solutions for the characters be it flawed or not ). I’d argue that Isayama can do a great job with many characters such as Kenny, Grisha, Carla, Kruger, Shadis ( all have little screentime but they are still fantastic side characters ), uprising Historia, Erwin, Reiner and Eren heck even Floch ( I dont like Floch personality but i do admit he has a good characterization which is why there is a Floch cult in the fanbase 😭 );False;False;;;;1610182987;;False;{};gin2mwp;False;t3_kt9txf;False;True;t1_gin1yyg;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/gin2mwp/;1610226354;1;True;False;anime;t5_2qh22;;0;[]; -[];;;selfaholic;;;[];;;;text;t2_1khhhf6;False;False;[];;"This looks and feels like a josei. It has the pretty boy cast, the kinda-sorta-politically-and-socially-engaged spin, that one SI boss-lady, and a few moral heroes with a tragic backstory and a propensity for self-sacrifice. - -The worldbuilding is actually interesting, but the characters and exposition dumps make it barely watchable. The realistic backgrounds are palatable, even slightly interesting at times, the character design is lazy (same-face syndrome strikes hard here), and what's up with all the swaying hair? - -It's one of those things I might watch for the sole reason of fanfiction that keeps the cool setting and fixes everything else.";False;False;;;;1610185051;;False;{};gin4n5h;False;t3_ktafwf;False;True;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gin4n5h/;1610227700;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RimuZ;;MAL;[];;http://myanimelist.net/animelist/LtCrabcake;dark;text;t2_8df66;False;False;[];;"**Rewatcher/First Timer (finished this show in a binge around Koyomimonogatar in the rewatch)** - -I had mixed feelings about this arc. It did have two of my favorite things going for it which is lots Kanbaru (seriously, best kohai ever, no contest) and its Shinobu focused and that character is the most fascinating to me. - -The arc was very long and had some great moments but it did drag on a bit and was overly long. Araragis words in the conclusion of the fight is pretty much how the arc felt: ""Without a fulfilling conclusion, without providing relief through honesty and without any kind of salvation."" - -Strangely enough this makes it kind of perfect. I see a lot of mixed feelings regarding the First Ones end but to me its thematically brilliant. Shinobu doesn't have a confrontation with him, she only provides some words of closure for herself and perhaps even to the First One. Her confrontation with Kanbaru got to her but barely. In the end the most powerful being in the world is just terrible with relationships and afraid of being hurt. She tried to change but took the easy way out. Its not nearly enough to wash away all the hurt and grief and it will forever be a lose end since he's gone forever and Shinobu didn't get to know if he actually forgave her. We don't even know if he heard her words either. It's a Shakespearean tragedy and I personally love it. - -The scene itself is probably the most beautiful in the entire show so far. Him desperately calling her name in his broken state and her coming down to forgive him in a blaze of gold was hauntingly beautiful. It was like a fairy tail. The voice actress killed it with those few words too, especially when she said his name. The name she stubbornly claimed she had forgotten but said it such regret and affection. - -The art looked absolutely stellar here and [this track](https://www.youtube.com/watch?v=RSuJp8_ufOo&list=PLO3TXPR1yTD_ubBP3d3y-l-FLMPvZ6w5B&index=107) being played her elevated the scene from great to masterful in my opinion. It perfectly encompasses the tragedy that is their relationship and has become one of my all time favorite tracks in anime. - -All in all another good arc that suffered a bit from its length and from it having to follow up the incredible Sodachi arc.";False;False;;;;1610185394;;1610188102.0;{};gin4z6n;False;t3_ktcwa0;False;False;t3_ktcwa0;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gin4z6n/;1610227917;5;True;False;anime;t5_2qh22;;0;[]; -[];;;filimaua13;;;[];;;;text;t2_2aq8dlok;False;False;[];;"Accelerator from Index/Railgun. Be too scared shitless and hate his guts due to his horrible ""villain"" reputation.";False;False;;;;1610185976;;False;{};gin5jkj;False;t3_ktcbdf;False;True;t3_ktcbdf;/r/anime/comments/ktcbdf/what_is_a_favorite_anime_character_of_yours_that/gin5jkj/;1610228290;0;True;False;anime;t5_2qh22;;0;[]; -[];;;filimaua13;;;[];;;;text;t2_2aq8dlok;False;False;[];;Makise Kurisu. A good tsundere character;False;False;;;;1610186158;;False;{};gin5prx;False;t3_ktboqh;False;True;t1_gil558k;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gin5prx/;1610228403;1;True;False;anime;t5_2qh22;;0;[]; -[];;;majora24;;;[];;;;text;t2_34gogo6f;False;False;[];;"bruh MOST OF HER CHARACTER IN THE SHOW IS ABOUT BEING A MASOCHIST - -as much as I hate arguing about your weird and pointless sex posts on anime subs, I have to argue. 1st, being a milf doesn't mean dominating, it means older woman (and if your criteria for milf was over 18, and you didn't have a milf kink... did you fap to children for 3 years?) and hey from your posts you probably look like an ugly bastard so if she was real she'd be into you because she's a MASOCHIST, who DOESN'T want to sexually dominate anyone so... congrats";False;False;;;;1610187038;;1610187901.0;{};gin6k18;False;t3_ktc1q9;False;True;t1_gil4czv;/r/anime/comments/ktc1q9/darkness_from_konosuba_has_made_me_restart_my/gin6k18/;1610228964;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cheetah357;;;[];;;;text;t2_6h532l18;False;False;[];;" **First Timer** - ->Give your thoughts about the phone call between Araragi and Senjougahara - -I love all their moments together but their intimate heart to heart moments are the best. - ->What do you think about the resolution of the duel and Shinobu's part in it? - -Shinobu is selfish all the way to the end. She only confronts The First until it's too late for him to talk to her. What was the reason for switching the wooden sword for the replica? - ->Do you think Gaen was playing 3D chess and bluffing Araragi into abandoning the duel out of concern for Hanekawa and Senjougahara or what has her plan with omitting info until it was almost too late? - -It felt like Gaen was trying to manipulate Araragi to leave the duel to go to Senjougahara and Hanekawa. Gaen always holds information until the last second or too late for what seems to be her own entertainment. I don't know if her withholding info goes further than just entertainment. - ->Araragi tells the whole story to Ougi while he is in pajamas, on the day of his finals. How much did Ougi know about what would happen and did Ononoki know (regarding her comment about stepping on him)? - -My guess is that Ougi knew most if not all that would happen. She knew everything many times before, so why not now? Ononoki probably didn't know anything except that there would be a duel. She has never been known to be omniscient so I find her knowing most of what is going to happen a bit weird. - ->What is the respective end game of Gaen and Ougi, what will happen in the next arcs? Also, give your judgement about Araragi's mental state at this moment. - -I don't really have any idea of what the end game is for Gaen and Ougi. They're both so mysterious to me. The next arc will be after Koyomi Death right? If so, the arc will focus on Araragi coming back from ""heaven"" and will feature a lot of Hachikuji. I don't know how he will get back. My guess is that they forge Dream Span and bring him back somehow. The only problem is that Gaen might've forged the armour into the Heart Span that we see the Koyomi Death. Unless she already had the real Heart Span before all this, which I find odd if she did, they won't have a Dream Span to bring Araragi back. - ->How did you like this 6 episode long arc? - -It's been a while since we had an arc longer than 2 or 3 episodes. There was probably more useless banter than the other 3 arcs in owari because of the episode count. I liked this arc mostly because it lets us know how Kiss-Shot thinks of The First and vice versa.";False;False;;;;1610190923;;False;{};ginacej;False;t3_ktcwa0;False;False;t3_ktcwa0;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/ginacej/;1610231429;6;True;False;anime;t5_2qh22;;0;[]; -[];;;shibuinuchan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/shibuinu;light;text;t2_loeguz2;False;False;[];;">this is all just mere days before Nadeko Medusa - -Shinobu Mail took place at the same time as Tsubasa Tiger, at the end of August which is two months before Nadeko Medusa. The arcs mere days before Nadeko Medusa were Sodachi’s arcs.";False;False;;;;1610192678;;False;{};ginc4om;False;t3_ktcwa0;False;False;t1_gilc80n;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/ginc4om/;1610232601;4;True;False;anime;t5_2qh22;;0;[]; -[];;;shibuinuchan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/shibuinu;light;text;t2_loeguz2;False;False;[];;I think she was “disposed of” by Ougi since Ougi didn’t like how they sent Yotsugi to protect Araragi. The master had to be rid of to render the familiar useless, hence Ougi could continue whatever plans she had in her mind.;False;False;;;;1610192900;;False;{};ginccrd;False;t3_ktcwa0;False;False;t1_gimsipc;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/ginccrd/;1610232753;3;True;False;anime;t5_2qh22;;0;[]; -[];;;shibuinuchan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/shibuinu;light;text;t2_loeguz2;False;False;[];;Wait why does the First have a shadow? He’s a vampire right lol?;False;False;;;;1610193312;;False;{};gincrz1;False;t3_ktcwa0;False;True;t1_gil93ui;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gincrz1/;1610233023;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bringbackdigimon;;;[];;;;text;t2_i5d2hu;False;False;[];;Imagine having bad opinions;False;False;;;;1610194794;;False;{};ginecog;False;t3_ktboqh;False;True;t1_gil0q1h;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/ginecog/;1610234050;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610195001;;1610195321.0;{};ginekry;False;t3_kta0qf;False;True;t3_kta0qf;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/ginekry/;1610234199;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;This is only true if you have the attention span of a goldfish or want braindead action in every anime you watch.;False;False;;;;1610195593;;False;{};ginf89x;False;t3_ktd9z7;False;False;t1_gilugoe;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/ginf89x/;1610234612;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;Mushoku Tensei is the exception for the first two.;False;False;;;;1610195651;;False;{};ginfam8;False;t3_ktd9z7;False;True;t1_giljmff;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/ginfam8/;1610234654;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"*mere months - -The timeline got me";False;False;;;;1610196308;;False;{};ging1f9;True;t3_ktcwa0;False;False;t1_ginc4om;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/ging1f9/;1610235131;2;True;False;anime;t5_2qh22;;0;[]; -[];;;No_Rex;;;[];;;;text;t2_5q08y;False;False;[];;[](#nocomment);False;False;;;;1610196415;;False;{};ging5un;False;t3_ktbp1n;False;True;t1_gimdrf6;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/ging5un/;1610235210;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pixelsaber;;;[];;;;text;t2_ofuxw;False;False;[];;"Let me preface my criticisms by saying that I love the post. There's very evident effort and love poured out in text for the genre, and I will always be incredibly appreciative and supportive of that. This is the type of post I find myself wanting to write but don't have the skill and drive to pull off. - -That said, I do still find myself a bit confounded at the structure and intent of the post, since it reads more like a genre recommendations list as opposed to a proper retrospective, owing to not only to titles being presented out of chronological order, but also missing quite crucial entries as to the development of the genre like Combattler V, Voltes V, Brave Reideen, and Brave Exkaiser. I recognize that you couldn't have possibly dedicated time to each show that impacted the genre, but if you found the space for stuff like Golion and Dendoh which had minimal if any impact on the genre's development, then I believe several shows are owed some attention as well. - -With that out of the way, some additional comments and corrections on top of what u/Babydave371 pointed out: - -> There's also Getter Robo Go, a show that I have no idea on, but it was what helped revive Getter. - -Getter Robo Go, though not thought of too fondly by the larger Getter Fandom, introduced several narrative elements integral to later entries. - -> The franchise as a whole never proved popular enough to milk, like so many others and was revived in 2004 for a 26 episode remake, - -You forgot Tetsujin 28-Gou FX, its 90s incarnation. - -> Due to the success of the TV series, - -The series was actually unpopular enough to be cut short of its projected fifty-two episode run, as ratings where not great, the toys were not selling at all, and one of the sponsors wanted to cash in on the Soul of Chogokin boom instead. Requiem for the Victims was produced because there were already plans to produce one, and instead of the initial side-story they opted to finish the TV series' narrative, and the rest followed because that proved lucrative enough. - -> This also began the steady decline in the Super Robot subgenre, in favor of more Real Robot style shows. - -The 90s actually saw a resurgence in Super Robot shows, in part spearheaded by Sunrise's work on the Brave and Eldran franchises, as well as the revival of older IPs like Getter Robo. There's several years in the decade where the super robot Shows outnumber the real robot shows —likely most years.";False;False;;;;1610198412;;False;{};ginijmc;False;t3_kta0qf;False;True;t3_kta0qf;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/ginijmc/;1610236720;2;True;False;anime;t5_2qh22;;0;[]; -[];;;iholuvas;;;[];;;dark;text;t2_g3s1j;False;False;[];;"Agreed on the arc conclusion. I think it's a strong arc overall and has some incredible moments (the Kanbaru-Shinobu talk being a contender for one of the best in the entire series), but it stumbles a bit at the finish line. For Araragi this duel was personal, and it was his way of proving to himself and Shinobu that while he may not be a warrior or a ""chosen one"", she can still rely on him. That's fine but I don't think it's worth sacrificing what I think is the main theme of the entire arc. You could say Shinobu showing up at all is progress for her, and the scene is good and emotional, but the conclusion could've been stronger if she'd been the one who dealt with the First instead of Araragi. The whole thing about confronting your problems head on and the importance of communication is left a little bit half-assed as a result. - -Still, I really do like the arc regardless.";False;False;;;;1610198881;;False;{};ginj4kf;False;t3_ktcwa0;False;False;t1_gilaybf;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/ginj4kf/;1610237113;4;True;False;anime;t5_2qh22;;0;[]; -[];;;iholuvas;;;[];;;dark;text;t2_g3s1j;False;False;[];;"I wasn't sure which comment in the chain to reply to, but I just wanted to share my thoughts regarding this whole thing. - -I think it shows what Monogatari considers important. It's not about whether characters live or die, but about *how* they live, the choices they make and how they change as a result.";False;False;;;;1610200612;;False;{};ginlfwv;False;t3_ktcwa0;False;True;t1_gimxipy;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/ginlfwv/;1610238611;3;True;False;anime;t5_2qh22;;0;[]; -[];;;safinhh;;;[];;;;text;t2_2o6s94hf;False;False;[];;"come onn at least watch episode 5 🥺 - -everyone says it’s going to be the greatest episode of all of aot so far, so it would be good if you avoided spoilers - -oh well though i respect your decision";False;False;;;;1610203281;;False;{};ginpfpq;False;t3_kt9txf;False;True;t1_gimrxrw;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/ginpfpq/;1610241121;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aydrz;;;[];;;;text;t2_48lagalo;False;False;[];;I actually stopped watching at episode 3\~5 since I disliked that Yoko was just walking fanservice. Should I continue?;False;False;;;;1610204634;;False;{};ginrmar;False;t3_ktd9z7;False;True;t1_gilp4at;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/ginrmar/;1610242445;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeyDee9;;;[];;;;text;t2_jv98y;False;False;[];;Four people. I really liked Hand Shakers and W'z. Deciding if I want to try out another crazy ride or not currently.;False;False;;;;1610204726;;False;{};ginrros;False;t3_ktafwf;False;True;t1_gimwvn6;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/ginrros/;1610242532;1;True;False;anime;t5_2qh22;;0;[]; -[];;;generalmillscrunch;;;[];;;;text;t2_zofoh;False;False;[];;The harem deconstruction and examination is just a vehicle by which to examine the finer points of the characters and themes. It is most certainly present, but whether or not Araragi chooses to become human again, or what girl he chooses, or what happens to the girls he doesn’t choose, is all there for a thematic purpose that is beyond simply a discussion of genre archetypes. This is what I mean when I say it is overblown in the minds of its fans. It’s certainly a cool concept, and well written, but as Evangelion picks apart the concepts in the mecha genre to examine depression, Monogatari unpacks the harem genre to explore its own themes of adolescence and mental illness. It is not the picking apart of the genre that should be praised, but the reason and purpose behind putting it back together in a different way.;False;False;;;;1610205746;;False;{};ginti3b;False;t3_ktcwa0;False;True;t1_gimp726;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/ginti3b/;1610243561;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;Nah he would just be a normal person. The fake previews of the manga have an high school AU and the author said they have the same personalities.;False;False;;;;1610207041;;False;{};ginvs6r;False;t3_ktcbdf;False;False;t1_giles54;/r/anime/comments/ktcbdf/what_is_a_favorite_anime_character_of_yours_that/ginvs6r/;1610244951;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;">Levi - -I don't know about the other ones but Levi is pretty chill.";False;False;;;;1610207124;;False;{};ginvxpp;False;t3_ktcbdf;False;True;t1_gil591c;/r/anime/comments/ktcbdf/what_is_a_favorite_anime_character_of_yours_that/ginvxpp/;1610245042;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;Class A and B are supposed to be equal the letters aren't rankings.;False;False;;;;1610207386;;False;{};ginwev2;False;t3_ktboqh;False;True;t1_gilv3hh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/ginwev2/;1610245326;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;"Black Star from Soul Eater. He's an asshole with completely unreasonable goal, thinks he's better than anyone else, does everything without thinking and he's never punished for it in fact he is rewarded for his stupidity. - -His manga counterpart was much better not because he was a better character but because he became so OP that I figured he wasn't to be taken seriously as a character and that made me enjoy him much more. ***HE GRABBED A FRICKING LASER AND LEARNED HOW TO FLY JUST BECAUSE.***";False;False;;;;1610207937;;False;{};ginxft1;False;t3_ktboqh;False;True;t3_ktboqh;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/ginxft1/;1610245955;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Munstachan;;;[];;;;text;t2_qcfb3a6;False;False;[];;Interesting thoughts. This would mean that Ougi is more powerful than Kagenui. If that’s true, can Ougi really be stopped?;False;False;;;;1610208116;;False;{};ginxrmh;False;t3_ktcwa0;False;True;t1_ginccrd;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/ginxrmh/;1610246157;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;False;[];;I do have the memory of a goldfish, it's literally a disability that I have so thanks for that. I feel like my existence is very unique because I have high social skills combined with a near calculator-like mathematical ability, yet my short term memory is fried. My memory issues have caused me a lot of problems in the past so I carry a small notepad and try to make note of things that might be important going forward. Sorry I'm ranting. I believe these issues stem from repeated concussions from when I was playing football in high school and college, but I have no proof. I honestly can't remember what Stein's Gate was about outside of the girl with the time machine towards the end and something about the microwave and a banana. I do remember one thing though, that I didn't become emotionally invested until the tail end of it.;False;False;;;;1610209480;;False;{};gio0cb4;False;t3_ktd9z7;False;True;t1_ginf89x;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gio0cb4/;1610247732;0;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;False;[];;Maybe you're right, but class A has clearly become distinguished from the things that have happened to them. I guess if that's the case it didn't matter which one Mineta was in.;False;False;;;;1610209659;;False;{};gio0onc;False;t3_ktboqh;False;True;t1_ginwev2;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gio0onc/;1610247962;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;"That's why i put ""supposed"". But tbh next arc will show us that class b isn't that far behind but i would have liked if there were some powerhouses in it like Deku, Bakugo, Shoto and even Tokoyami to sime extent they gave somenuce quirks but none packs much punch.";False;False;;;;1610209856;;False;{};gio12dd;False;t3_ktboqh;False;True;t1_gio0onc;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gio12dd/;1610248197;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Quiddity131;;MAL;[];;http://myanimelist.net/profile/Quiddity131;dark;text;t2_f3bdc;False;False;[];;In the middle of my first viewing of it now, its amazing.;False;False;;;;1610210752;;False;{};gio2sww;False;t3_kta0qf;False;True;t1_gimr0fg;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gio2sww/;1610249243;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;False;[];;If I'm correct, the way Japanese schools are structured is in a way that the best students are always in the A class. I could be wrong about that, considering that this is an impression I got strictly from watching anime.;False;False;;;;1610211040;;False;{};gio3d5h;False;t3_ktboqh;False;True;t1_gio12dd;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gio3d5h/;1610249615;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Azevedo128;;;[];;;;text;t2_5qmnn8zk;False;False;[];;They are equals especially because things like the support course are the other letters.;False;False;;;;1610211175;;False;{};gio3mqd;False;t3_ktboqh;False;True;t1_gio3d5h;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gio3mqd/;1610249787;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;False;[];;But doesn't that reinforce my point? The hero course is the end-all be-all of UA so therefore their best students would be in A, followed by B? The support students are relegated to subsequent classes and so on and so forth?;False;False;;;;1610211752;;False;{};gio4rkg;False;t3_ktboqh;False;True;t1_gio3mqd;/r/anime/comments/ktboqh/what_is_the_most_annoying_character_in_anime/gio4rkg/;1610250484;0;True;False;anime;t5_2qh22;;0;[]; -[];;;monsieurvampy;;;[];;;;text;t2_453ax;False;False;[];;"Season just started and I'm already can't watch episodes the same day they air. - - -I'm conflicted on this. I wasn't feeling it at all but the last five minutes or so were interesting enough to continue. I never seen Hand Shakers before. I have seen Gibate (like two episodes) which had a similar event. The last few minutes of an episode were interesting enough to want to watch the next episode. Though I made the smart choice and gave up. - - -I will try to give ep 2 a shot. This season I plan on watching 21 shows plus a rewatch for January and February. Plus continuing King's Raid (no idea how I'm still watching this) and Jujutsu Taisen.";False;False;;;;1610213440;;False;{};gio826g;False;t3_ktafwf;False;True;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gio826g/;1610252509;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cbumpa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cbumpa;light;text;t2_4uaglc4u;False;False;[];;Yes! TBH I heard a lot of good things about Gurren Lagann so I was like hell I’ll check it out. The first bit, like you said, wasn’t really anything special for me. But, it actually is building up to some really good stuff later on. One scene was actually so emotional I was tearing up... it for sure gets better;False;False;;;;1610213868;;False;{};gio8w8x;False;t3_ktd9z7;False;True;t1_ginrmar;/r/anime/comments/ktd9z7/what_are_some_signs_that_an_anime_is_going_to_suck/gio8w8x/;1610253026;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> In the end the most powerful being in the world is just terrible with relationships and afraid of being hurt. - -That's a good point and in line with the thematic undergrowth of the season";False;False;;;;1610214012;;False;{};gio969t;True;t3_ktcwa0;False;True;t1_gin4z6n;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gio969t/;1610253194;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> What was the reason for switching the wooden sword for the replica? - -Drama? I do not know except that she raised the stakes for some reason - -> the next arc will be after Koyomi Death right? - -yes. It's been a while since we got to meet the snail properly";False;False;;;;1610214251;;False;{};gio9nj8;True;t3_ktcwa0;False;True;t1_ginacej;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gio9nj8/;1610253481;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AoiSpeakers;;;[];;;;text;t2_hiub9;False;False;[];;"I expected this but this anime is an eyecandy despite the eyes XD - -It reminds me of Grand Chase Rufus in Dimensional Chaser";False;False;;;;1610214599;;False;{};gioacnc;False;t3_ktafwf;False;True;t1_gikx41d;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gioacnc/;1610253891;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AoiSpeakers;;;[];;;;text;t2_hiub9;False;False;[];;I love it. This is why I refrain from viewing reddit. Finishing WiXoSS made me peekxcheck reddit. At least, no one trashtalked Diva a Live. Praeter is an eyecandy, Watched it again legally in YT and on TV;False;False;;;;1610214722;;False;{};gioalgb;False;t3_ktafwf;False;True;t1_gilj5jd;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gioalgb/;1610254033;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NeverGonnaSimp;;;[];;;;text;t2_9pkuih4r;False;False;[];;Don't forget they also animated Seitokai Yakuindomo;False;False;;;;1610215068;;False;{};giobadx;False;t3_ktafwf;False;True;t1_gim2lqo;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/giobadx/;1610254446;3;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"> everyone says it’s going to be the greatest episode of all of aot so far - -that has yet to come, but the next one will be really hype";False;False;;;;1610215093;;False;{};giobc7i;False;t3_kt9txf;False;True;t1_ginpfpq;/r/anime/comments/kt9txf/i_know_its_early_but_anyone_else_very/giobc7i/;1610254475;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Paxton-176;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;MOE FOR THE MOE GODS DOUJINS FOR THE DOUJIN THRONE!;dark;text;t2_kmgwm;False;False;[];;"They also did K. - -Turns out Gohands can only do Source material well. But there original stuff is always a treat.";False;False;;;;1610215151;;False;{};giobghk;False;t3_ktafwf;False;True;t1_giobadx;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/giobghk/;1610254544;3;True;False;anime;t5_2qh22;;0;[];True -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610215184;;False;{};giobiw6;False;t3_ktafwf;False;True;t1_gilxmo3;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/giobiw6/;1610254582;0;True;False;anime;t5_2qh22;;0;[]; -[];;;NeverGonnaSimp;;;[];;;;text;t2_9pkuih4r;False;False;[];;">That wasn't quite Gibiate bad - -That level of abomination is reserved for Ex Arm this season.";False;False;;;;1610215279;;False;{};giobpub;False;t3_ktafwf;False;True;t1_gild0wk;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/giobpub/;1610254693;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BroYouDroppedTheKek;;;[];;;;text;t2_8cjbse7w;False;False;[];;Yup even more reason to believe that show was actually backed by the Yakuza.;False;False;;;;1610215933;;False;{};giod13c;False;t3_ktafwf;False;True;t1_gim2y6p;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/giod13c/;1610255467;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Martinik29;;;[];;;;text;t2_ujpqt;False;False;[];;Classic GoHands. Seriously whoever funds them probably doesn't give a shit about money;False;False;;;;1610222551;;False;{};gioquqe;False;t3_ktafwf;False;True;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gioquqe/;1610263634;1;True;False;anime;t5_2qh22;;0;[]; -[];;;voornaam1;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://www.anime-planet.com/users/FirstnamLastname;dark;text;t2_3yiwp1ue;False;False;[];;Cute psycho characters. Only one I can think of right now is Cutthroat from Akudama Drive, he's a funny character but if he were real I wouldn't want to get near him.;False;False;;;;1610222688;;False;{};gior4ni;False;t3_ktcbdf;False;True;t3_ktcbdf;/r/anime/comments/ktcbdf/what_is_a_favorite_anime_character_of_yours_that/gior4ni/;1610263780;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Toonamigamerrr;;;[];;;;text;t2_ssw2vcw;False;False;[];;Don’t forget K too;False;False;;;;1610223323;;False;{};giosfo3;False;t3_ktafwf;False;True;t1_gilwycs;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/giosfo3/;1610264535;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThirtyThree111;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Thirty-three;light;text;t2_72yjoip0;False;False;[];;"> viewers are prepped to latch onto stuff like this because we're all desperately trying to find something to say - -I mean the CG was *really* bad and *very* noticeable I'd say even for people who don't actively try to distinguish the animation styles when watching something. I wouldn't say I'm just trying to find something to say 'cause yeah it is very noticeable even on my first watch and it almost made me drop because of how bad it looks. The lyrics on the screen helps 'cause I just read that instead and divert my attention away from the CG.";False;False;;;;1610224659;;False;{};giov7zd;False;t3_ktbp1n;False;True;t1_gilb6k6;/r/anime/comments/ktbp1n/love_live_sip_sunshine_rewatch_sip_season_1/giov7zd/;1610266046;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rinarin;;MAL;[];;http://myanimelist.net/profile/Rinarin;dark;text;t2_72e61;False;False;[];;"/u/aniMayor brought this to my attention and I have to say great write up! It feels a bit more like a recommendation list than a retrospective but that doesn't change the quality at all! - -As for the subgenre being dead, I don't think that's the case (but it's not as packed as it used to be). Thinking about all the kids shows and the tons of merch a lot of the shows were and still are getting (not to mention the tons of titles that aren't in this but are still popular/fun), I'd say there's still lots to the subgenre but it depends on what you focus on and which perspective. There might be a lack of titles that are critically acclaimed or lack of titles that hardcore fans of the subgenre value, but I don't think there's lack of titles overall...they just appeal to a more domestic (for there) audience and probably aren't too popular in the west or are too kiddy for the audience that manages to consume them (due to lack of official translations). I don't think there are a lot of mecha titles coming out in general but there is still a slow but steady stream of them, which I appreciate. - -Also, I sure am hoping for a new Aquarion. Logos might have not worked for me but I miss the craze and one of my favourite mechanical designers. Maybe not as majestic as the old designs but I still can't get enough. Now I'll go relisten to some of those tracks! - -P.S. : I don't often visit the sub so being notified of two great articles at once is like a gift for the new year! Keep it up!";False;False;;;;1610225849;;False;{};gioxo7v;False;t3_kta0qf;False;True;t3_kta0qf;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gioxo7v/;1610267376;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Tartaras1;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Tartaras;light;text;t2_kwwlu;False;False;[];;"**First-Timer** - -I know I'm super late to this, and I would have just skipped this episode discussion if it weren't the finale of the arc. - -- I like the little phone call that Araragi and Senjougahara had at the beginning. It's like he's coming to terms with the fact that hey may actually die, since he isn't linked to Shinobu at all. - -- Kanbaru just succintly informing Araragi of literally everything that happened while he was away. - -- So this entire arc has just been Araragi telling Ougi what happened? Of course it was. - -Questions: - -- I thought it was really wholesome. The two of them really do love and care for each other. - -- I thought it was alright. Shinobu dropping the sword made it more interesting for the First One, and it probably would have helped Araragi, but it might have also worked in Araragi's favor. Perhaps the First One was so focused on that, that he lost sight of the possibility for Araragi to use the talisman.";False;False;;;;1610227478;;False;{};gip13z2;False;t3_ktcwa0;False;False;t3_ktcwa0;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gip13z2/;1610269236;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> So this entire arc has just been Araragi telling Ougi what happened? Of course it was. - -On the morning of exam day before Gaen kills him";False;False;;;;1610228103;;False;{};gip2dyq;True;t3_ktcwa0;False;True;t1_gip13z2;/r/anime/comments/ktcwa0/monogatari_series_2020_novel_order_rewatch/gip2dyq/;1610269958;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JRavec;;;[];;;;text;t2_64fpcd54;False;False;[];;Izaya from Durarara i would move to another town if i ever meet him.;False;False;;;;1610228380;;False;{};gip2xqb;False;t3_ktcbdf;False;True;t3_ktcbdf;/r/anime/comments/ktcbdf/what_is_a_favorite_anime_character_of_yours_that/gip2xqb/;1610270267;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Puzzleheaded_Bar_610;;;[];;;;text;t2_6p7yk9hc;False;False;[];;I'm conflicted about the animation and art style. On one hand, I like it because it reminds me of K project and on the other hand it just looks weird. Will I watch it? Idk;False;False;;;;1610229928;;False;{};gip6017;False;t3_ktafwf;False;True;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gip6017/;1610271958;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iameatingchocolate;;;[];;;;text;t2_1vx3tqle;False;False;[];;This reminds me of K Project. But I liked K. This one, am not feeling it. I’m weirded out by the animation and visuals. Had to stop after 5 minutes then came here to check if I should push through but I don’t think I’ll miss anything by dropping it.;False;False;;;;1610231914;;False;{};gipa10v;False;t3_ktafwf;False;True;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gipa10v/;1610274161;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Reed1981;;;[];;;;text;t2_tkg7kxi;False;False;[];;I couldn't separate the characters. They looked so much the same lol;False;False;;;;1610234417;;False;{};gipey5j;False;t3_ktafwf;False;True;t1_gilxmo3;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gipey5j/;1610276822;1;True;False;anime;t5_2qh22;;0;[]; -[];;;reversal_banana;;;[];;;;text;t2_xo3g4;False;False;[];;when they were in the train yard I thought I was looking at a screenshot for half-life 2, but with worse textures.;False;False;;;;1610236263;;False;{};gipifz0;False;t3_ktafwf;False;True;t1_gimli5x;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gipifz0/;1610278720;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Xaxos92;;;[];;;;text;t2_egfzdgi;False;True;[];;Isn't Evangelion considered a Super Robot anime albeit a deconstruction of the genre?;False;False;;;;1610255091;;False;{};giqh056;False;t3_kta0qf;False;True;t3_kta0qf;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/giqh056/;1610301120;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;"That is a very good point. It uses Super tropes, mysterious alien bad guys, a robot only Shinji can pilot(ish). - -Fuck I can't believe I didn't think about it.";False;False;;;;1610255326;;False;{};giqhd68;True;t3_kta0qf;False;True;t1_giqh056;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/giqhd68/;1610301362;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;True;[];;"> -> The series was actually unpopular enough to be cut short of its projected fifty-two episode run, as ratings where not great, the toys were not selling at all, and one of the sponsors wanted to cash in on the Soul of Chogokin boom instead. Requiem for the Victims was produced because there were already plans to produce one, and instead of the initial side-story they opted to finish the TV series' narrative, and the rest followed because that proved lucrative enough. - -How do you find all this? I admit I didn't look too hard, but I didn't realize I was completely wrong here. - -Not sure how I missed FX either. Thank you!";False;False;;;;1610255443;;False;{};giqhjhp;True;t3_kta0qf;False;True;t1_ginijmc;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/giqhjhp/;1610301480;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kuddlesworth9419;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kuddlesworth;light;text;t2_btage;False;False;[];;Princess Lover, Mardock Scramble, Seitokai Yakuindomo and Asa made Jugyou are the only descent shows they have made. Everything else is pretty terrible. K wasn't terrible the original anyway.;False;False;;;;1610265415;;1610265621.0;{};giqubci;False;t3_ktafwf;False;True;t1_giobghk;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/giqubci/;1610311037;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spacepenguin87;;;[];;;;text;t2_qxd3i;False;False;[];;I love seeing my gun i shows.;False;False;;;;1610269034;;False;{};giqy2sg;False;t3_ktafwf;False;True;t1_gil7qbd;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/giqy2sg/;1610313738;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pixelsaber;;;[];;;;text;t2_ofuxw;False;False;[];;"> How do you find all this? - -Haha, well, I tend to dig real deep when researching a show. As a result I've accumulated a lot of this type of knowledge as I made my way through many of these series. For production info like this? I probably found a decent article on the matter, came across an obscure twitter thread, or gleamed it from the Japanese Wikipedia page. - -> Thank you! - -Any time!";False;False;;;;1610282615;;False;{};girbkcl;False;t3_kta0qf;False;True;t1_giqhjhp;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/girbkcl/;1610322997;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;Like the walking... it's so bad...;False;False;;;;1610286175;;False;{};girfsas;False;t3_ktafwf;False;True;t1_giksv2m;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/girfsas/;1610325795;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;And as a railfan I'm scratching my head why they used a model of a Soviet [ER2 suburban train](https://en.wikipedia.org/wiki/ER2_electric_trainset) instead of something Japanese. Maybe the studio really just bought the rights to an existing model.;False;False;;;;1610286460;;False;{};girg5sx;False;t3_ktafwf;False;True;t1_gipifz0;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/girg5sx/;1610326044;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610286525;;False;{};girg8wc;False;t3_ktafwf;False;False;t1_gipey5j;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/girg8wc/;1610326101;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">The worldbuilding is actually interesting - -You think? Obviously there was some sort of government experiment that created all these superpower guys and now they're sealed off because dangerous. That's about all I would expect.";False;False;;;;1610286572;;False;{};girgb50;False;t3_ktafwf;False;True;t1_gin4n5h;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/girgb50/;1610326150;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">The fight scenes are beautifully animated - -Randomly rotating a 3D background while the characters do something resembling fighting is ""beautiful"" now?";False;False;;;;1610286664;;False;{};girgfgz;False;t3_ktafwf;False;True;t1_gimmebc;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/girgfgz/;1610326238;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">eyecandy - -Either you don't know the meaning of that word, or your perception is insanely off.";False;False;;;;1610286685;;False;{};girggh3;False;t3_ktafwf;False;True;t1_gioalgb;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/girggh3/;1610326256;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;">The bg is unique and beautiful - -The music is pretty good. Unless you somehow mean the actual visuals - ->the characters are three-dimensional and not card-board cut-outs - -LOL - ->there are scenes that are interesting/emotional - -""Not all of it is uninteresting""";False;False;;;;1610286770;;False;{};girgkgz;False;t3_ktafwf;False;True;t1_gim3wmh;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/girgkgz/;1610326330;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;It's like garbage Banana Fish with superpowers;False;False;;;;1610286828;;False;{};girgn91;False;t3_ktafwf;False;True;t1_gikx41d;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/girgn91/;1610326389;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Toonamigamerrr;;;[];;;;text;t2_ssw2vcw;False;False;[];;The MC didn’t say Handshakers/W’Z infamous line “Mesh” . Not a sequel;False;False;;;;1610288566;;1610289019.0;{};girj1us;False;t3_ktafwf;False;True;t1_gim7lxt;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/girj1us/;1610327925;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AoiSpeakers;;;[];;;;text;t2_hiub9;False;False;[];;😂😂😂 Okay, exclude the CLAMP Eyes, still an eyecandy. I don't want to argue. Almost everything is visually stunning.;False;False;;;;1610310043;;False;{};gismnu1;False;t3_ktafwf;False;True;t1_girggh3;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gismnu1/;1610352051;1;True;False;anime;t5_2qh22;;0;[]; -[];;;petran79;;;[];;;;text;t2_2wh063u;False;False;[];;"Thanks for the detailed info. Unfortunately Maya the Bee novel in Germany had a sinful past as well. Maya symbolised the German psyche. In the end one bee is nothing, the Volk are everything. Author Waldemar Bonsel was also a Hitler sympathizer or rather an opportunist. He even got a praising letter from Goebbels in 1941 for his 60th birthday. - -Despite that all his book were burned by the Nazis, including the few copies of Maya and 100 years later only one copy of the book had survived. - -One reason author and the book remained forgotten in Germany, till in 1973 a ZDF employee named Gohlen, who responsible for children's broadcast, remembered Maya while inside a taxi and asked US American Matt Murphy who had worked at Disney to design the characters and Nippon Animation took the production with dialog by Eberhard Storeck. - -Hence why it is odd that they edited it since it was a German-USA-Japan coproduction.";False;False;;;;1610310137;;False;{};gismv34;True;t3_ktagg3;False;True;t1_gilo18c;/r/anime/comments/ktagg3/did_you_know_that_70s_childrens_classic_maya_the/gismv34/;1610352163;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;Then I reiterate the second clause of that comment;False;False;;;;1610310821;;False;{};gisoa8i;False;t3_ktafwf;False;True;t1_gismnu1;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gisoa8i/;1610352939;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AoiSpeakers;;;[];;;;text;t2_hiub9;False;False;[];;"To each their own - Dear, this is not an academe. Save the energy for formal things. It's like your paid to be like this. A professional elitist";False;False;;;;1610310990;;False;{};gisomud;False;t3_ktafwf;False;True;t1_gisoa8i;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gisomud/;1610353136;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IndependentMacaroon;;;[];;;;text;t2_262jwa04;False;False;[];;"If you think that takes ""energy"" you're dead wrong. Just as it doesn't take much ""elitism"" to see terrible visuals for what they are.";False;False;;;;1610311649;;False;{};gisq2xe;False;t3_ktafwf;False;False;t1_gisomud;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gisq2xe/;1610353910;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RTT197;;;[];;;;text;t2_1jqn719v;False;False;[];;Underrated imo;False;False;;;;1610312168;;False;{};gisr7qb;False;t3_ktafwf;False;False;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gisr7qb/;1610354530;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zzonkers;;;[];;;;text;t2_igx14;False;False;[];;Yeah actually watched Gibiate?! I couldn't make it past the second episode lol.;False;False;;;;1610318292;;False;{};git3zjg;False;t3_ktafwf;False;True;t1_gilxmo3;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/git3zjg/;1610361444;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gxmwp;;MAL;[];;http://myanimelist.net/profile/Gxmwp;dark;text;t2_ont1n;False;False;[];;I don't understand. What happened to Go Hands? I've never thought their stories were the best, but the fights and some of the tracking scenes in K were pretty cool to watch. Between this and Hand Shakers though...;False;False;;;;1610336252;;False;{};giu4dm3;False;t3_ktafwf;False;True;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/giu4dm3/;1610384631;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BigBat6;;;[];;;;text;t2_5kzs0gd2;False;False;[];;Can someone explain the plot here. I just couldn't figure out what was going on?;False;False;;;;1610336291;;False;{};giu4g6d;False;t3_ktafwf;False;True;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/giu4g6d/;1610384684;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheWrittenLore;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Traynjos000;light;text;t2_ouc2a;False;False;[];;I don't think this is even close to being as bad as Handshakers. I mean it's not K season 1, but its watchable. And I didn't get a headache. My only problem is that all the characters look the same.;False;False;;;;1610342520;;False;{};giufhld;False;t3_ktafwf;False;True;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/giufhld/;1610392693;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610367614;;False;{};givetlh;False;t3_ktc1q9;False;True;t1_gil3n9k;/r/anime/comments/ktc1q9/darkness_from_konosuba_has_made_me_restart_my/givetlh/;1610414213;1;True;False;anime;t5_2qh22;;0;[]; -[];;;selfaholic;;;[];;;;text;t2_1khhhf6;False;False;[];;"I think so. I'm not saying it's gonna be utilised to its full potential - probably not - but the potential is there. Closed ghetto with its micro-society, the tensions between this district and others, how much outside/legal control is there.... How they get their food, how the economy works... - -It reminds me a little of the setting in Togainu no Chi (which was pretty much the only interesting thing about that shitshow).";False;False;;;;1610466218;;False;{};gj0bpk4;False;t3_ktafwf;False;False;t1_girgb50;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gj0bpk4/;1610523263;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PinkieLopBun;;;[];;;;text;t2_6grvmir1;False;False;[];;"With the caterpillar thing, I’m guessing they were trying to make it more reflective of actual nature. If I’m remembering correctly from elementary school, butterflies die after laying their eggs, so caterpillars never meet their mothers. I was actually surprised to find out the Japanese version ended the way it did because I thought it was clear what they were going for. Interestingly, the European version has some stuff that the Japanese version does not. There might be more examples that I’m forgetting, but Flip’s song in the first episode isn’t in the Japanese version. And episodes 48-50 aren’t in the Japanese version at all (it still has the same amount of episodes, both versions just have episodes that aren’t in the other, although the European version retains a few scenes from the Japanese episodes it didn’t cover). - -Also, Flip is a grasshopper, not a locust (although there is an episode about his cousin who’s a locust).";False;False;;;;1610539836;;1610540197.0;{};gj3skmi;False;t3_ktagg3;False;True;t3_ktagg3;/r/anime/comments/ktagg3/did_you_know_that_70s_childrens_classic_maya_the/gj3skmi/;1610604384;2;True;False;anime;t5_2qh22;;0;[]; -[];;;petran79;;;[];;;;text;t2_2wh063u;False;False;[];;"Japanese dvd rip I found has all 52 episodes.From a glimpse in Japanese episode 2, German version does a re-edit,like it happened with Sindbad and Captain Future. Eg German episode 2 skips the scene with the Queen Bee and does not include her at all. Probably because she should appear much later for continuity reasons. As a result German episode 2 begins in the middle of Japanese episode 2 and all Japanese episodes have different order number as well because of this. As it happens in such cases, German version takes few random scenes and redubs them to extend time. Moero Top Striker French version added 4 extra episodes this way. -I'll rewatch the Japanese version from the beginning because they all have the same length. German episodes have differences in length,ranging from 20 seconds to 1 minute, hinting at minor or major edits.";False;False;;;;1610540532;;False;{};gj3teaf;True;t3_ktagg3;False;True;t1_gj3skmi;/r/anime/comments/ktagg3/did_you_know_that_70s_childrens_classic_maya_the/gj3teaf/;1610604860;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZzzBillCosbyZzz;;;[];;;;text;t2_16cqah;False;False;[];;"Don't worry, they confirmed they aren't brothers by blood. So yeah, we know why they dropped that. - - - I won't be back for ep2";False;False;;;;1610574321;;False;{};gj5qnp6;False;t3_ktafwf;False;False;t1_gilda5q;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gj5qnp6/;1610647727;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZzzBillCosbyZzz;;;[];;;;text;t2_16cqah;False;False;[];;"Watching it and thinking Strangely a lot of dudes... oh, that's why. Especially when they dropped the ""not brothers by blood"" line.";False;False;;;;1610574500;;False;{};gj5r2yo;False;t3_ktafwf;False;True;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gj5r2yo/;1610648044;1;True;False;anime;t5_2qh22;;0;[]; -[];;;aka-el;;;[];;;;text;t2_wko7y;False;False;[];;">Getter Robo Go, though not thought of too fondly by the larger Getter Fandom, introduced several narrative elements integral to later entries. - -You mean the anime or the manga? I'm sure most of the Getter fandom considers the Go manga a massive improvement in quality of writing and art compared to the previous entries. The anime, however, is much longer and harder to find, so very few western fans are familiar with it at all.";False;False;;;;1610696203;;False;{};gjbnagg;False;t3_kta0qf;False;True;t1_ginijmc;/r/anime/comments/kta0qf/a_retrospective_on_super_robot_anime/gjbnagg/;1610784473;2;True;False;anime;t5_2qh22;;0;[]; -[];;;singinglunatic2506;;;[];;;;text;t2_6lx9wo3p;False;False;[];;"I think I am the only one thinks this. Also the character designs hurt my eyes, their pretty eyes are like those anime characters' eyes in 90s, really not suitable for the 3d buildings and the 2020 fashion style. - -But people in Muse Indonesia praise it tho, they say ""wow the graphic is the best"". Here I meet a fellow who has similar opiniom.";False;False;;;;1610840076;;False;{};gjiolbe;False;t3_ktafwf;False;True;t1_gimli5x;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gjiolbe/;1610938115;1;True;False;anime;t5_2qh22;;0;[]; -[];;;singinglunatic2506;;;[];;;;text;t2_6lx9wo3p;False;False;[];;That swaying hair made me stop watching. I can't stand it.;False;False;;;;1610840220;;False;{};gjiov4y;False;t3_ktafwf;False;True;t1_gin4n5h;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gjiov4y/;1610938283;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ClemCa1;;;[];;;;text;t2_1mq70li;False;False;[];;With the art style, I really thought for a while I clicked on the wrong anime and it was yaoi... Tho globally it's not bad, so I'll see if it ends up being good at some point.;False;False;;;;1610879122;;False;{};gjkbvpl;False;t3_ktafwf;False;False;t3_ktafwf;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gjkbvpl/;1610971841;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nintendofanpokemon1;;;[];;;;text;t2_8mgr8pma;False;False;[];;I hate this show;False;False;;;;1610924780;;False;{};gjnstet;False;t3_ktagg3;False;True;t3_ktagg3;/r/anime/comments/ktagg3/did_you_know_that_70s_childrens_classic_maya_the/gjnstet/;1611040991;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nintendofanpokemon1;;;[];;;;text;t2_8mgr8pma;False;False;[];;It is a cartoon this ain’t no anime at all;False;False;;;;1610924797;;False;{};gjnsuuc;False;t3_ktagg3;False;True;t3_ktagg3;/r/anime/comments/ktagg3/did_you_know_that_70s_childrens_classic_maya_the/gjnsuuc/;1611041013;1;True;False;anime;t5_2qh22;;0;[]; -[];;;petran79;;;[];;;;text;t2_2wh063u;False;False;[];;They turned it into a cartoon with all that editing. They removed scenes like 1. A worm taking a crap and being laughed at. 2. Shortened the scene where a human kid tries to tear the wings from a dragonfly and changing the thriller music too. 3. The same dragonfly eats an insect maya met a while ago. 4. A scene where ants capture Willy and there is a room with dead insects in their nest. 5. A bug talking to Maya about love and she imagines it means just lying in bed with a fever. 6. Maya and all the beekids crying about hurt Cassandra and Maya visiting her in her sleep to say goodbye thinking she was sleeping and Cassandra sheding tears. I stopped counting and decided to continue with the Japanese version. 3D remake is even worse in that regard. Though 1982 series seems to be untouched. Apparently they yelled to the Japanese studio to stop messing with kids hearts;False;False;;;;1610942342;;False;{};gjopuhz;True;t3_ktagg3;False;True;t1_gjnstet;/r/anime/comments/ktagg3/did_you_know_that_70s_childrens_classic_maya_the/gjopuhz/;1611059545;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nintendofanpokemon1;;;[];;;;text;t2_8mgr8pma;False;False;[];;It’s a stupid cartoon;False;False;;;;1610949311;;False;{};gjp0fng;False;t3_ktagg3;False;True;t1_gjopuhz;/r/anime/comments/ktagg3/did_you_know_that_70s_childrens_classic_maya_the/gjp0fng/;1611066518;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nintendofanpokemon1;;;[];;;;text;t2_8mgr8pma;False;False;[];;My lil sis watch this dumb show;False;False;;;;1610949326;;False;{};gjp0ges;False;t3_ktagg3;False;True;t1_gjopuhz;/r/anime/comments/ktagg3/did_you_know_that_70s_childrens_classic_maya_the/gjp0ges/;1611066534;1;True;False;anime;t5_2qh22;;0;[]; -[];;;petran79;;;[];;;;text;t2_2wh063u;False;False;[];;You mean the 3d remake? Hope they removed the penis scene!;False;False;;;;1610986865;;False;{};gjqcfvd;True;t3_ktagg3;False;True;t1_gjp0ges;/r/anime/comments/ktagg3/did_you_know_that_70s_childrens_classic_maya_the/gjqcfvd/;1611100427;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tokimedotozu;;;[];;;;text;t2_63lf9n1n;False;False;[];;Touché;False;False;;;;1611175744;;False;{};gjzi5f5;False;t3_ktafwf;False;True;t1_gin4n5h;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gjzi5f5/;1611303932;2;True;False;anime;t5_2qh22;;0;[]; -[];;;wansen5;;;[];;;;text;t2_13akbj;False;False;[];;I always get happy when gohands comes with something new, how they produce their anime is just really THEM. It stands out and even if it fails, you can see they atleast tried their best. With this one anime they reallly refined their work, everything is just *chef kiss*;False;False;;;;1611187182;;False;{};gk06dtk;False;t3_ktafwf;False;True;t1_gill93c;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gk06dtk/;1611317471;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cam_and_mum;;;[];;;;text;t2_gn5odx;False;False;[];;"Agree with u/AoiSpeakers. - -it seems that liking and appreciating a unique and different animation style is the unpopular opinion. Haven't people watched Project K? this anime resembles it a lot (GoHands was also involved in there so the animation style and character design are similar), and Project K has a sizable fan base (at least in Japan, where it really matters for the continuity of the franchise) - -u/IndependentMacaroon should learn that not everyone would think the same";False;False;;;;1611212780;;False;{};gk1esua;False;t3_ktafwf;False;True;t1_girggh3;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gk1esua/;1611346110;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cam_and_mum;;;[];;;;text;t2_gn5odx;False;False;[];;Project K was a good one, there's a sizable fanbase;False;False;;;;1611213094;;False;{};gk1f5f9;False;t3_ktafwf;False;True;t1_giosfo3;/r/anime/comments/ktafwf/project_scard_praeter_no_kizu_episode_1_discussion/gk1f5f9/;1611346332;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610118692;;False;{};gijpakl;False;t3_kt4b9w;False;True;t3_kt4b9w;/r/anime/comments/kt4b9w/what_anime_is_this_girl_from/gijpakl/;1610151782;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610118825;;False;{};gijpk36;False;t3_kt4bkg;False;True;t3_kt4bkg;/r/anime/comments/kt4bkg/if_youre_offended_by_this_that_means_its_true/gijpk36/;1610151948;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Sorry, your submission has been removed. - -- This looks like it's - a single image. - This is a form of restricted content that isn't allowed as a full post on the sub. You might consider posting about this sort of thing in the [weekly Casual Discussion Fridays megathread](https://www.reddit.com/r/anime/search?q=title%3A%22Casual+Discussion+Fridays%22+subreddit%3Aanime+author%3AAnimeMod&restrict_sr=on&sort=new&t=week) if it applies. See [our rules page](https://www.reddit.com/r/anime/wiki/rules#wiki_restricted_content) for a full list of restricted content categories. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610118832;moderator;False;{};gijpklg;False;t3_kt4bkg;False;True;t3_kt4bkg;/r/anime/comments/kt4bkg/if_youre_offended_by_this_that_means_its_true/gijpklg/;1610151957;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dv_recorder;;;[];;;;text;t2_8pd0s8e7;False;False;[];;"COVID-19: *Exists* - -Literally everything: *Delayed*";False;False;;;;1610118909;;False;{};gijpq57;False;t3_kt4buh;False;False;t3_kt4buh;/r/anime/comments/kt4buh/space_battleship_yamato_2202_compilation_film_has/gijpq57/;1610152067;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PsychoGeek;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/profile/PsychoGeek;dark;text;t2_lyjee;False;False;[];;So it begins again. At this rate I don't think we're going to see Thrice in a Lifetime within our lifetimes.;False;False;;;;1610118974;;False;{};gijpuqy;False;t3_kt4buh;False;True;t3_kt4buh;/r/anime/comments/kt4buh/space_battleship_yamato_2202_compilation_film_has/gijpuqy/;1610152147;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610119365;moderator;False;{};gijqnat;False;t3_kt4icc;False;True;t3_kt4icc;/r/anime/comments/kt4icc/anyone_know_what_this_really_famous_classical/gijqnat/;1610152661;1;False;False;anime;t5_2qh22;;0;[]; -[];;;keithohara;;;[];;;;text;t2_gbzf7q;False;True;[];;"250 episodes in? - -The best is yet to come";False;False;;;;1610120152;;False;{};gijs8vt;False;t3_kt4a31;False;False;t3_kt4a31;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gijs8vt/;1610153709;52;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610120776;;1610143184.0;{};gijtje5;False;t3_kt4snx;False;True;t3_kt4snx;/r/anime/comments/kt4snx/great_pretender_is_good_but_is_it_great/gijtje5/;1610154506;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610120942;moderator;False;{};gijtw4q;False;t3_kt52vq;False;True;t3_kt52vq;/r/anime/comments/kt52vq/can_anyone_tell_me_who_is_this_character/gijtw4q/;1610154725;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Misses_Lena;;;[];;;;text;t2_9l9cndok;False;False;[];;Ino from Naruto, forgot her last name tho;False;False;;;;1610120968;;False;{};gijty2k;False;t3_kt52vq;False;True;t3_kt52vq;/r/anime/comments/kt52vq/can_anyone_tell_me_who_is_this_character/gijty2k/;1610154758;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Royal_Heritage;;;[];;;;text;t2_8wglzuge;False;False;[];;"All the titles you wrote are just shonen... - -[](#whowouldathunkit)";False;True;;comment score below threshold;;1610120979;;False;{};gijtyvp;False;t3_kt4a31;False;True;t3_kt4a31;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gijtyvp/;1610154773;-18;False;False;anime;t5_2qh22;;0;[]; -[];;;Square-Control-7774;;;[];;;;text;t2_7ax78hxn;False;False;[];;ino from naruto...;False;False;;;;1610120985;;False;{};gijtzee;False;t3_kt52vq;False;True;t3_kt52vq;/r/anime/comments/kt52vq/can_anyone_tell_me_who_is_this_character/gijtzee/;1610154782;2;True;False;anime;t5_2qh22;;0;[]; -[];;;preferto9;;;[];;;;text;t2_9gom33a5;False;False;[];;Thnx;False;False;;;;1610121031;;False;{};giju2x1;True;t3_kt52vq;False;True;t1_gijty2k;/r/anime/comments/kt52vq/can_anyone_tell_me_who_is_this_character/giju2x1/;1610154844;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hivesz;;;[];;;;text;t2_8drgthqx;False;False;[];;Ino yamanaka from naruto;False;False;;;;1610121130;;False;{};gijuagk;False;t3_kt52vq;False;True;t3_kt52vq;/r/anime/comments/kt52vq/can_anyone_tell_me_who_is_this_character/gijuagk/;1610154978;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Equal_Advice_5967;;;[];;;;text;t2_89turaeg;False;False;[];;That’s Sakura;False;False;;;;1610121138;;False;{};gijub3v;False;t3_kt52vq;False;True;t3_kt52vq;/r/anime/comments/kt52vq/can_anyone_tell_me_who_is_this_character/gijub3v/;1610154991;0;True;False;anime;t5_2qh22;;0;[]; -[];;;CosmicPenguin_OV103;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cosmic_Penguin;light;text;t2_1ufwqhs7;False;True;[];;"I have a feeling that this (along with another under-advertised new original title, *Wonder Egg Priority*) is gonna explode into life later on. I mean, this is something worked on by the director of *that* Code Geass and the one who lead the story writing of *that* Gurren Lagann and Kill la Kill! And a full *2 seasons* of mecha! How rare is that nowadays! - -I'm eagerly awaiting the 1st episode to drop in the next hour or so.";False;False;;;;1610121848;;False;{};gijvtbt;False;t3_kt5ab0;False;False;t3_kt5ab0;/r/anime/comments/kt5ab0/original_tv_anime_back_arrow_is_listed_with_a/gijvtbt/;1610155940;33;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610121887;moderator;False;{};gijvwcm;False;t3_kt5emn;False;True;t3_kt5emn;/r/anime/comments/kt5emn/busy_having_an_existential_crisis/gijvwcm/;1610155990;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610121952;moderator;False;{};gijw18i;False;t3_kt5fee;False;True;t3_kt5fee;/r/anime/comments/kt5fee/is_there_anime_about_sleight_of_hand_and/gijw18i/;1610156074;1;False;False;anime;t5_2qh22;;0;[]; -[];;;SunYeee;;;[];;;;text;t2_5ofnhuak;False;False;[];;magic kaito;False;False;;;;1610122055;;False;{};gijw91t;False;t3_kt5fee;False;True;t3_kt5fee;/r/anime/comments/kt5fee/is_there_anime_about_sleight_of_hand_and/gijw91t/;1610156206;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610122147;;1610143179.0;{};gijwg8b;False;t3_kt5fee;False;True;t3_kt5fee;/r/anime/comments/kt5fee/is_there_anime_about_sleight_of_hand_and/gijwg8b/;1610156328;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Epik17;;;[];;;;text;t2_60vstot1;False;False;[];;"Well, the feeling of ""oh, i know how this one works"" will compensate the fact that they are making fun of smth i love xd -Thx anyways <3";False;False;;;;1610122284;;False;{};gijwqsd;True;t3_kt5fee;False;True;t1_gijwg8b;/r/anime/comments/kt5fee/is_there_anime_about_sleight_of_hand_and/gijwqsd/;1610156506;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Dmalikhammer4, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610122364;moderator;False;{};gijwww3;False;t3_kt5kmj;False;True;t3_kt5kmj;/r/anime/comments/kt5kmj/people_need_to_utilize_the_subs_recommendation/gijwww3/;1610156609;1;False;False;anime;t5_2qh22;;0;[]; -[];;;findercutename;;;[];;;;text;t2_8rmmqqbt;False;False;[];;"A mountain of spoilers😬. -Luckily I've watched it and it's very interesting. -Absolutely recommend for anyone to watch.";False;False;;;;1610122446;;False;{};gijx35d;False;t3_kt4snx;False;False;t3_kt4snx;/r/anime/comments/kt4snx/great_pretender_is_good_but_is_it_great/gijx35d/;1610156713;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dragonfire535;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/dragonfire535/;light;text;t2_zu8n4;False;False;[];;I spoiler tagged it though.;False;False;;;;1610122474;;False;{};gijx5a7;True;t3_kt4snx;False;True;t1_gijx35d;/r/anime/comments/kt4snx/great_pretender_is_good_but_is_it_great/gijx5a7/;1610156749;1;True;False;anime;t5_2qh22;;0;[]; -[];;;findercutename;;;[];;;;text;t2_8rmmqqbt;False;False;[];;"M new in reddit. -Sorry, didnt see that one";False;False;;;;1610122508;;False;{};gijx7up;False;t3_kt4snx;False;False;t1_gijx5a7;/r/anime/comments/kt4snx/great_pretender_is_good_but_is_it_great/gijx7up/;1610156793;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"A lot of people are first-timers on here or don't bother to look at what this reddit has to offer. Often times, asking a question or certain recommendations and then being gone. - -Heck, we have a frequently asked question thread as well that would solve a lot of issues. Similar to us having Watch Order guide for various of series, and yet a surprisingly high number of people don't know about those. - -Watch Order Guide for various series: https://www.reddit.com/r/anime/wiki/watch_order - -Frequently Asked Questions: https://www.reddit.com/r/anime/wiki/faaq - -I wish more people would look at the bot and see what it shows. That'd be very helpful.";False;False;;;;1610122579;;1610122756.0;{};gijxdbu;False;t3_kt5kmj;False;True;t3_kt5kmj;/r/anime/comments/kt5kmj/people_need_to_utilize_the_subs_recommendation/gijxdbu/;1610156902;8;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610122600;moderator;False;{};gijxevo;False;t3_kt5nhe;False;True;t3_kt5nhe;/r/anime/comments/kt5nhe/is_monogatari_series_worth_watching/gijxevo/;1610156928;1;False;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;I actually think this is AOT in disguise.;False;False;;;;1610122606;;False;{};gijxfd2;False;t3_kt5ab0;False;True;t3_kt5ab0;/r/anime/comments/kt5ab0/original_tv_anime_back_arrow_is_listed_with_a/gijxfd2/;1610156936;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MillenniumKing;;MAL;[];;http://myanimelist.net/profile/MillenniumKing;dark;text;t2_czok6;False;False;[];;"If you like supernatural mystery comedy drama action type stuff that is 100 episodes long and a full adaption of a story then yes, give it a go. - -botchan here can lead you to the watch order wiki to find an order. - -[](#meguminthumbsup)";False;False;;;;1610122717;;False;{};gijxo0k;False;t3_kt5nhe;False;True;t3_kt5nhe;/r/anime/comments/kt5nhe/is_monogatari_series_worth_watching/gijxo0k/;1610157079;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AnonXD69;;;[];;;;text;t2_4dbhmee9;False;False;[];;yes!! great series. just look up on google watch order monogatari series.;False;False;;;;1610122721;;False;{};gijxod0;False;t3_kt5nhe;False;True;t3_kt5nhe;/r/anime/comments/kt5nhe/is_monogatari_series_worth_watching/gijxod0/;1610157084;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EdoPhantom;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Edo;light;text;t2_4v8gnh0;False;True;[];;Yup, it’s consistently one of the highest rated and best selling anime series of all time for a reason. There are approximately 100 episodes so far. [See this guide for the watch order.](https://edomonogatari.wordpress.com/2020/05/12/monogatari-anime-guide/);False;False;;;;1610122824;;False;{};gijxwg9;False;t3_kt5nhe;False;True;t3_kt5nhe;/r/anime/comments/kt5nhe/is_monogatari_series_worth_watching/gijxwg9/;1610157221;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;Yes;False;False;;;;1610122832;;False;{};gijxx2k;False;t3_kt5nhe;False;True;t3_kt5nhe;/r/anime/comments/kt5nhe/is_monogatari_series_worth_watching/gijxx2k/;1610157232;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Liberty_Bibberty;;;[];;;;text;t2_64ltckvk;False;False;[];;How much of this show(asking LN readers) is about love rivals/love triangles? I'm not a fan of that kind of drama so I'm wondering.;False;False;;;;1610122863;;False;{};gijxzhi;False;t3_kt5lak;False;True;t3_kt5lak;/r/anime/comments/kt5lak/bottomtier_character_tomozakikun_op_jinsei_easy/gijxzhi/;1610157273;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PAN_cake_103;;;[];;;;text;t2_6q3ngpk2;False;False;[];;I'd like to know why u needed her name;False;False;;;;1610123029;;False;{};gijycgv;False;t3_kt52vq;False;True;t1_giju2x1;/r/anime/comments/kt52vq/can_anyone_tell_me_who_is_this_character/gijycgv/;1610157491;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aridato;;;[];;;;text;t2_oefh6;False;False;[];;Watch Bakemonogatari. If you liked it, then it's definitely worth watching the rest. If not, then stop right there.;False;False;;;;1610123062;;False;{};gijyf1c;False;t3_kt5nhe;False;False;t3_kt5nhe;/r/anime/comments/kt5nhe/is_monogatari_series_worth_watching/gijyf1c/;1610157534;6;True;False;anime;t5_2qh22;;0;[]; -[];;;yiendubuu;;;[];;;;text;t2_7ancze9l;False;False;[];;"I recently gave it a chance after some thinking. The synopsis weren't interesting so I had been procrastinating on watching it. My biggest mistake. I haven't finished it yet(I'm somewhere around the end of Arc3) but it's amazing. It's funny, it gets emotional, amazing character development for all of the mains and even some of the side characters. As you mentioned its visuals are godly. Edamura and Abbie's ""story"" was so touching especially when he told her about the little green figures. On that note, these little figures appear so often in the show and I love their symbolism. And to anyone that is still not sure if they want to watch it, give it a chance! It isn't just ""scammers scamming people"", it's a lot more than that.";False;False;;;;1610123098;;False;{};gijyhwi;False;t3_kt4snx;False;True;t3_kt4snx;/r/anime/comments/kt4snx/great_pretender_is_good_but_is_it_great/gijyhwi/;1610157581;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Redr1k;;;[];;;;text;t2_15tjjgv7;False;False;[];;"> Is Monogatari series worth watching? - -Well, if you like anime at all, you should at least try it. - -> what order do I watch the series in? - - Bake -> Kizu I-II-III -> Nise -> Neko -> Second Season(Neko White, Kabuki, Otori, Oni, Koi) -> Hana -> Tsuki -> Owari -> Koyomi -> Owari S2 -> Zoku - -> how many epsiodes will be included in total? - -100 or so.";False;False;;;;1610123136;;False;{};gijykx4;False;t3_kt5nhe;False;True;t3_kt5nhe;/r/anime/comments/kt5nhe/is_monogatari_series_worth_watching/gijykx4/;1610157634;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dragonfire535;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/dragonfire535/;light;text;t2_zu8n4;False;False;[];;Keep in mind people hate on the last arc but it's actually really good. Enjoy the show :);False;False;;;;1610123165;;False;{};gijyn5w;True;t3_kt4snx;False;False;t1_gijyhwi;/r/anime/comments/kt4snx/great_pretender_is_good_but_is_it_great/gijyn5w/;1610157675;1;True;False;anime;t5_2qh22;;0;[]; -[];;;throwawayonxmasday;;;[];;;;text;t2_4k8pz3kg;False;False;[];;It’s a hit or miss when I recommend it to people . While it does have action moments, there tends to be long spans of dialogue where it changes pace from supernatural/action to more of a comedy. Most of it is relevant to the plot so there usually isn’t a reason to skip it.;False;False;;;;1610123206;;False;{};gijyqft;False;t3_kt5nhe;False;True;t3_kt5nhe;/r/anime/comments/kt5nhe/is_monogatari_series_worth_watching/gijyqft/;1610157731;2;True;False;anime;t5_2qh22;;0;[]; -[];;;atropicalpenguin;;MAL;[];;http://myanimelist.net/animelist/atropicalpenguin;dark;text;t2_vxkvm;False;False;[];;The painful thing is that automod posts those links, but no one bothers to check it.;False;False;;;;1610123474;;False;{};gijzbia;False;t3_kt5kmj;False;True;t1_gijxdbu;/r/anime/comments/kt5kmj/people_need_to_utilize_the_subs_recommendation/gijzbia/;1610158121;3;True;False;anime;t5_2qh22;;0;[]; -[];;;smiley-rell;;;[];;;;text;t2_9iaznvjw;False;False;[];;I think reddit such do a better job of showing people where the wiki is especially on mobile.;False;False;;;;1610123634;;False;{};gijzo5c;False;t3_kt5kmj;False;True;t3_kt5kmj;/r/anime/comments/kt5kmj/people_need_to_utilize_the_subs_recommendation/gijzo5c/;1610158341;1;True;False;anime;t5_2qh22;;0;[]; -[];;;preferto9;;;[];;;;text;t2_9gom33a5;False;False;[];;Actually I found it in a meme....;False;False;;;;1610123670;;False;{};gijzqxy;True;t3_kt52vq;False;True;t1_gijycgv;/r/anime/comments/kt52vq/can_anyone_tell_me_who_is_this_character/gijzqxy/;1610158392;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IXajll;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ixajii;light;text;t2_ob6j8;False;False;[];;I feel like it's 50/50 if this actually becomes good. Could be Code Geass level of epic or just dissapointing since both the director and the writer did amazing shows but also some pretty bad ones so personally I will keep my hype in check for this one. It being 2-cour is definitely a good sign though.;False;False;;;;1610123680;;False;{};gijzroy;False;t3_kt5ab0;False;False;t1_gijvtbt;/r/anime/comments/kt5ab0/original_tv_anime_back_arrow_is_listed_with_a/gijzroy/;1610158406;25;True;False;anime;t5_2qh22;;0;[]; -[];;;CT_BINO;;MAL;[];;https://myanimelist.net/profile/CT_BINO;dark;text;t2_pa5vv;False;False;[];;"I found it good, but just it. really like the art style but arc 3 was the only one I found great. Arc 1 was a good introduction but never felt that the heroes were going to ""lose"", they were always playing ahead in all of the arcs , which after seeing once or twice it makes the rest less interesting.";False;False;;;;1610123682;;False;{};gijzruc;False;t3_kt4snx;False;True;t3_kt4snx;/r/anime/comments/kt4snx/great_pretender_is_good_but_is_it_great/gijzruc/;1610158408;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610123915;;1610143164.0;{};gik0a60;False;t3_kt5fee;False;True;t1_gijwqsd;/r/anime/comments/kt5fee/is_there_anime_about_sleight_of_hand_and/gik0a60/;1610158721;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Midori-4;;;[];;;;text;t2_3ffbl678;False;False;[];;"A lot of people say it’s great and a must watch. I tried and have to keep forcing myself every so often to keep watching. - -I prefer reading the Light Novels";False;False;;;;1610123969;;False;{};gik0ei5;False;t3_kt5nhe;False;True;t3_kt5nhe;/r/anime/comments/kt5nhe/is_monogatari_series_worth_watching/gik0ei5/;1610158796;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Darkjetson01;;;[];;;;text;t2_cia6mw7;False;False;[];;If it weren't for One Piece, Gintama would be my favorite anime/manga.;False;False;;;;1610124197;;False;{};gik0wg8;False;t3_kt4a31;False;False;t3_kt4a31;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gik0wg8/;1610159106;18;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRealEbad;;;[];;;;text;t2_4bezjw12;False;False;[];;2 😔 but at late night at least 7;False;False;;;;1610124302;;False;{};gik14nc;False;t3_kt66x2;False;False;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik14nc/;1610159261;2;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;3.;False;False;;;;1610124318;;False;{};gik15tv;False;t3_kt66x2;False;True;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik15tv/;1610159280;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jetsfan051;;;[];;;;text;t2_2b129pza;False;False;[];;Well let’s see? How many hours in a day again?;False;False;;;;1610124319;;False;{};gik15y5;False;t3_kt66x2;False;True;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik15y5/;1610159282;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lenright7;;;[];;;;text;t2_422c9r1o;False;False;[];;It's always good to break it up and take breaks;False;False;;;;1610124346;;False;{};gik184k;True;t3_kt66x2;False;True;t1_gik14nc;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik184k/;1610159319;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lenright7;;;[];;;;text;t2_422c9r1o;False;False;[];;Whaaaat;False;False;;;;1610124359;;False;{};gik192c;True;t3_kt66x2;False;True;t1_gik15y5;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik192c/;1610159335;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Massaman95;;;[];;;;text;t2_zxb3m;False;False;[];;Don't do it often as I usually have work and friends, but I wouldn't have a problem binging from say 11AM until 2AM if I'd be in quarantaine.;False;False;;;;1610124362;;False;{};gik19dh;False;t3_kt66x2;False;False;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik19dh/;1610159340;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Epik17;;;[];;;;text;t2_60vstot1;False;False;[];;I never read Manga Before, but i read light novels and books so it cant be that bad. I like when it touches the surface of different kinds of magic tricks, we have to keep it Interesting, and only card tricks get boring over time.;False;False;;;;1610124396;;False;{};gik1c38;True;t3_kt5fee;False;True;t1_gik0a60;/r/anime/comments/kt5fee/is_there_anime_about_sleight_of_hand_and/gik1c38/;1610159386;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;In one sitting around 2-3 episodes.;False;False;;;;1610124397;;False;{};gik1c3r;False;t3_kt66x2;False;False;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik1c3r/;1610159386;5;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRealEbad;;;[];;;;text;t2_4bezjw12;False;False;[];;All is good until you fall asleep and wake up at a spoiler;False;False;;;;1610124409;;False;{};gik1d59;False;t3_kt66x2;False;True;t1_gik184k;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik1d59/;1610159403;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jetsfan051;;;[];;;;text;t2_2b129pza;False;False;[];;Only kidding lol. I’m not a monster.;False;False;;;;1610124412;;False;{};gik1dbc;False;t3_kt66x2;False;True;t1_gik192c;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik1dbc/;1610159406;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PaulWalkerIV;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MasonCrosbysFoot;light;text;t2_11thw0;False;False;[];;4-5;False;False;;;;1610124447;;False;{};gik1g61;False;t3_kt66x2;False;True;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik1g61/;1610159463;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lenright7;;;[];;;;text;t2_422c9r1o;False;False;[];;Yeah that's understandable. I fluctuate between watching no anime for a couple of months and completely binging shows;False;False;;;;1610124489;;False;{};gik1jhd;True;t3_kt66x2;False;True;t1_gik19dh;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik1jhd/;1610159521;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lenright7;;;[];;;;text;t2_422c9r1o;False;False;[];;Quarintine has gotten me bored out of my mind;False;False;;;;1610124512;;False;{};gik1lat;True;t3_kt66x2;False;True;t1_gik1jhd;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik1lat/;1610159554;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610124528;;False;{};gik1mmo;False;t3_kt5nhe;False;True;t3_kt5nhe;/r/anime/comments/kt5nhe/is_monogatari_series_worth_watching/gik1mmo/;1610159577;1;True;False;anime;t5_2qh22;;0;[]; -[];;;reliweeb;;;[];;;;text;t2_9ai93fa8;False;False;[];;When I started naruto I would watch 50 episode per day, now I rarely watch anime😭😭;False;False;;;;1610124538;;False;{};gik1ni9;False;t3_kt66x2;False;True;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik1ni9/;1610159592;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610124544;;False;{};gik1ny2;False;t3_kt66x2;False;True;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik1ny2/;1610159600;1;True;False;anime;t5_2qh22;;0;[]; -[];;;findercutename;;;[];;;;text;t2_8rmmqqbt;False;False;[];;"I can at least binge 12. -I have lots of time as a kid and h.w and projects are not that big of a problem. I have most of my time free and I chose to use the moment of my life when I'm free to watching anime. Btw I've binged 16 episodes at most.";False;False;;;;1610124580;;False;{};gik1qum;False;t3_kt66x2;False;False;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik1qum/;1610159651;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610124667;;False;{};gik1xr2;False;t3_kt66x2;False;True;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik1xr2/;1610159777;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lenright7;;;[];;;;text;t2_422c9r1o;False;False;[];;WHAT THE FUCK HOW IS THAT EVEN POSSIBLE LMAOO. I would watch around 15ish episodes per day but 50?;False;False;;;;1610124670;;False;{};gik1xyt;True;t3_kt66x2;False;True;t1_gik1ni9;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik1xyt/;1610159780;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;It was gonna go down as great for me but I really hated the ending with all the villians suddenly deciding to meet up and help and the whole fake building shenanigans;False;False;;;;1610124776;;False;{};gik26bk;False;t3_kt4snx;False;False;t3_kt4snx;/r/anime/comments/kt4snx/great_pretender_is_good_but_is_it_great/gik26bk/;1610159941;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Massaman95;;;[];;;;text;t2_zxb3m;False;False;[];;That's almost 21 hours a day.;False;False;;;;1610124816;;False;{};gik29i6;False;t3_kt66x2;False;True;t1_gik1ni9;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik29i6/;1610159997;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheRealEbad;;;[];;;;text;t2_4bezjw12;False;False;[];;LMAO SAME I WATCH LIKE 3 A DAY NOW;False;False;;;;1610124819;;False;{};gik29qk;False;t3_kt66x2;False;True;t1_gik1ni9;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik29qk/;1610160001;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;I can do up to 30 if I'm really going for it, but I plan on consistently doing 7 every day, or around 50 a week.;False;False;;;;1610124881;;False;{};gik2emj;False;t3_kt66x2;False;True;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik2emj/;1610160090;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi SCampo98, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610124896;moderator;False;{};gik2fte;False;t3_kt6fin;False;True;t3_kt6fin;/r/anime/comments/kt6fin/recommendations_for_a_newbie/gik2fte/;1610160110;1;False;False;anime;t5_2qh22;;0;[]; -[];;;reliweeb;;;[];;;;text;t2_9ai93fa8;False;False;[];;I didnt have nothing to do and it was Christmas break, I wanted to break my brother record of finishing naruto classic (220 episodes) in a week, so I broke it and it made me hooked to continue shippuden, in middle of shippuden school started, I would watch 30 in weekdays;False;False;;;;1610124897;;False;{};gik2fws;False;t3_kt66x2;False;True;t1_gik1xyt;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik2fws/;1610160111;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Depends on if I'm interested. I watch seasonal and usually have one or two catch up shows. I've been making my way through Monogatari which for me is hard to watch a lot at once, I can do like 3 max in a row. But with Toradora which I recently finished i could do 5 or 6 if I had the time;False;False;;;;1610124938;;False;{};gik2ja7;False;t3_kt66x2;False;True;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik2ja7/;1610160174;1;True;False;anime;t5_2qh22;;0;[]; -[];;;theaussieguy11;;;[];;;;text;t2_3h03ovc6;False;False;[];;High school dxd:);False;False;;;;1610124963;;False;{};gik2lam;False;t3_kt6fin;False;False;t3_kt6fin;/r/anime/comments/kt6fin/recommendations_for_a_newbie/gik2lam/;1610160211;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;Kids need to go back to school and get off Reddit.;False;False;;;;1610125001;;False;{};gik2oc6;False;t3_kt6fin;False;True;t1_gik2lam;/r/anime/comments/kt6fin/recommendations_for_a_newbie/gik2oc6/;1610160263;2;True;False;anime;t5_2qh22;;0;[]; -[];;;reliweeb;;;[];;;;text;t2_9ai93fa8;False;False;[];;Around 17;False;False;;;;1610125024;;False;{};gik2q4a;False;t3_kt66x2;False;True;t1_gik29i6;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik2q4a/;1610160294;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KyleR9173;;;[];;;;text;t2_hd6ic37;False;False;[];;Try Code Geass or Gurren Lagann if they interest you, try Toradora if you want to see a romance anime. Code Geass and Gurren Lagann have great dubs, but I'd watch Toradora subtitled.;False;False;;;;1610125065;;False;{};gik2thr;False;t3_kt6fin;False;True;t3_kt6fin;/r/anime/comments/kt6fin/recommendations_for_a_newbie/gik2thr/;1610160351;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610125066;;False;{};gik2tk4;False;t3_kt66x2;False;True;t1_gik29i6;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik2tk4/;1610160352;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610125085;moderator;False;{};gik2v1y;False;t3_kt6hts;False;True;t3_kt6hts;/r/anime/comments/kt6hts/whats_her_name_shes_from_that_time_i_got/gik2v1y/;1610160376;1;False;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;You just sold me;False;False;;;;1610125092;;False;{};gik2vll;False;t3_kt5ab0;False;False;t1_gijvtbt;/r/anime/comments/kt5ab0/original_tv_anime_back_arrow_is_listed_with_a/gik2vll/;1610160385;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Goldenfox299;;;[];;;;text;t2_21fpin3p;False;False;[];;I mean I can do non stop throughout the day if I wanted to but I would just burn myself out so what's the point.;False;False;;;;1610125101;;False;{};gik2wcx;False;t3_kt66x2;False;True;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik2wcx/;1610160398;1;True;False;anime;t5_2qh22;;0;[]; -[];;;theaussieguy11;;;[];;;;text;t2_3h03ovc6;False;False;[];;You mean high school dxd;False;False;;;;1610125107;;False;{};gik2wtz;False;t3_kt6fin;False;True;t1_gik2oc6;/r/anime/comments/kt6fin/recommendations_for_a_newbie/gik2wtz/;1610160405;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nightlink011;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/nightlink011;light;text;t2_gshqkgk;False;False;[];;"Parasyte - -Psycho pass - -Zankyou no Terror - -Ajin - -Baccano - -Durarara";False;False;;;;1610125155;;False;{};gik30pt;False;t3_kt6fin;False;False;t3_kt6fin;/r/anime/comments/kt6fin/recommendations_for_a_newbie/gik30pt/;1610160471;3;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Valk;;;[];;;;text;t2_36l47pm7;False;False;[];;My record lies at 40, which happened twice. Once at black cover and once at world trigger;False;False;;;;1610125156;;False;{};gik30tk;False;t3_kt66x2;False;True;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik30tk/;1610160473;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Goldenfox299;;;[];;;;text;t2_21fpin3p;False;False;[];;I'm not a huge fan but I will say it's worth trying as it's sort of unique. Most people end up liking it and the production is great.;False;False;;;;1610125166;;False;{};gik31n8;False;t3_kt5nhe;False;True;t3_kt5nhe;/r/anime/comments/kt5nhe/is_monogatari_series_worth_watching/gik31n8/;1610160486;1;True;False;anime;t5_2qh22;;0;[]; -[];;;abdikmo;;;[];;;;text;t2_6j26hd85;False;False;[];;Most I ever did was 26 eps, 6 eps of Aot then got bored and decided to watch the last season of Naruto ship which I never thought I would like since I was thinking the main story was over but yea I watch the first n watch the rest in one go and looked at my phone and it was 5-6 am ... the good days 🐸;False;False;;;;1610125182;;False;{};gik32zt;False;t3_kt66x2;False;True;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik32zt/;1610160508;1;True;False;anime;t5_2qh22;;0;[]; -[];;;reliweeb;;;[];;;;text;t2_9ai93fa8;False;False;[];;There was a time where I was studying and working at the same time which made my time at home only to sleep, so I switched to manga and LNs, and still read them since it's very much easier reading them in a train or a bus than watching anime, same when you are in public areas;False;False;;;;1610125218;;False;{};gik35w7;False;t3_kt66x2;False;True;t1_gik29qk;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik35w7/;1610160557;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610125255;;False;{};gik38u5;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gik38u5/;1610160609;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;Personally I wasn't a huge fan of Case 1 or Case 4. I think Edamura's character disparity at times really hurts the show. Overall, I'd give it a 7/10. It had a good premise, good art, some great stories, but a lot of problems that couldn't be overlooked for me to love it as much as you do;False;False;;;;1610125288;;False;{};gik3bgd;False;t3_kt4snx;False;True;t3_kt4snx;/r/anime/comments/kt4snx/great_pretender_is_good_but_is_it_great/gik3bgd/;1610160653;2;True;False;anime;t5_2qh22;;0;[]; -[];;;findercutename;;;[];;;;text;t2_8rmmqqbt;False;False;[];;"Oh my god! I just watched this. -I'd like to say that this anime is good, for changing your life in a minor way. As expected the mc is a jerk who cant read the atmosphere and a complete otaku freak. -That much I expected. -I expected more tbh...";False;False;;;;1610125315;;False;{};gik3dj1;False;t3_kt5lak;False;True;t3_kt5lak;/r/anime/comments/kt5lak/bottomtier_character_tomozakikun_op_jinsei_easy/gik3dj1/;1610160689;2;True;False;anime;t5_2qh22;;0;[]; -[];;;harudxd;;;[];;;;text;t2_5i4pt6fd;False;False;[];;yes it is. it’s a good watch with a very interesting story with great characters.;False;False;;;;1610125319;;False;{};gik3duo;False;t3_kt6j2z;False;False;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gik3duo/;1610160694;46;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;It is;False;False;;;;1610125319;;False;{};gik3dvg;False;t3_kt6j2z;False;False;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gik3dvg/;1610160694;138;True;False;anime;t5_2qh22;;0;[]; -[];;;iStaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/iStaki;light;text;t2_ioondgh;False;False;[];;I haven't seen it myself but I plan to and it has great score on myanimelist so I guess it's good. Just watch it and see for yourself.;False;False;;;;1610125341;;False;{};gik3fjx;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gik3fjx/;1610160724;2;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;Yes, especially if you are fed up with the overly perverted main characters. It's considerably easier to watch than Monogatari, and it works really well.;False;False;;;;1610125374;;False;{};gik3i6k;False;t3_kt6j2z;False;False;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gik3i6k/;1610160767;9;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610125498;moderator;False;{};gik3s00;False;t3_kt6nj6;False;True;t3_kt6nj6;/r/anime/comments/kt6nj6/how_to_read_the_anime_of_gakuen_babysitters/gik3s00/;1610160940;1;False;False;anime;t5_2qh22;;0;[]; -[];;;whatdoidowtfhelp;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/afraaz;light;text;t2_3sb7jh9;False;False;[];;"Sorry, your submission has been removed. - -- This doesn't appear to be about [anime per our definition](https://www.reddit.com/r/anime/wiki/rules#wiki_everything_posted_here_must_be_anime_specific). - - -- This looks like meta content. Comments about the sub itself should be posted in the [monthly Meta Megathread](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year), which we keep an eye on all month long. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610125580;moderator;False;{};gik3ym5;False;t3_kt5kmj;False;True;t3_kt5kmj;/r/anime/comments/kt5kmj/people_need_to_utilize_the_subs_recommendation/gik3ym5/;1610161051;2;True;False;anime;t5_2qh22;;0;[]; -[];;;limberwisk;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/limberwisk;light;text;t2_15b7pb77;False;False;[];;"I can use MAL for just a list. The wiki might be a bit more specific but not so much. Some people just need personal suggestions and maybe reasoning for the suggestion. -Edit:- r/animesuggest is a better place .";False;False;;;;1610125580;;False;{};gik3yo9;False;t3_kt5kmj;False;True;t3_kt5kmj;/r/anime/comments/kt5kmj/people_need_to_utilize_the_subs_recommendation/gik3yo9/;1610161052;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"""kids"" wouldn't be watching that show anyway. - -&#x200B; - -edit: just gone through his profile, I stand corrected.";False;False;;;;1610125599;;False;{};gik4041;False;t3_kt6fin;False;True;t1_gik2oc6;/r/anime/comments/kt6fin/recommendations_for_a_newbie/gik4041/;1610161076;2;True;False;anime;t5_2qh22;;0;[]; -[];;;findercutename;;;[];;;;text;t2_8rmmqqbt;False;False;[];;"From your text. I can probably deduce it to ""AMAGAMI SS"" I think it has all the girls in different angles in its opening in the anime. Not sure though... sorry";False;False;;;;1610125611;;False;{};gik410p;False;t3_kt5emn;False;True;t3_kt5emn;/r/anime/comments/kt5emn/busy_having_an_existential_crisis/gik410p/;1610161092;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dragonfire535;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/dragonfire535/;light;text;t2_zu8n4;False;False;[];;"I liked it, felt fitting for the show to end with a con of the audience as well. Only one of the villains helped anyway. They just want money. - -I can see why you'd think that but that's one tiny stain on an otherwise incredible show, it shouldn't kill the show completely.";False;False;;;;1610125612;;False;{};gik413v;True;t3_kt4snx;False;True;t1_gik26bk;/r/anime/comments/kt4snx/great_pretender_is_good_but_is_it_great/gik413v/;1610161093;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ADelicateOrange;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ADelicateOrange not updated;light;text;t2_h8xom;False;False;[];;If its good. I'll buy a pizza and binge the whole thing. However, if its your average show, 2 or 3 episodes max. Im outta the game.;False;False;;;;1610125622;;False;{};gik41xp;False;t3_kt66x2;False;True;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik41xp/;1610161107;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Lightningforanimes, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610125629;moderator;False;{};gik42go;False;t3_kt6pa5;False;True;t3_kt6pa5;/r/anime/comments/kt6pa5/does_anyone_knows_romance_anime_similar_to_as_the/gik42go/;1610161116;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Rigoku;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Elitar;light;text;t2_2j07de1;False;False;[];;"Math doesnt add. According to MAL it would be slightly over 19 hours, but if we remove openings and endings (according to yt both first op and ed are 1:45 which gives us 3:30) then it's 16 hours 15 minutes. But in those 23 minutes there is probably (i dont remember) what happened in last episode and what will happen in next episode, so we can assume time will drop to 15 hours. - -And while 15 hours is still a lot - it's managable for young person.";False;False;;;;1610125639;;False;{};gik439z;False;t3_kt66x2;False;True;t1_gik29i6;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik439z/;1610161130;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Melonmans;;;[];;;;text;t2_9kom32s2;False;False;[];;Yes;False;False;;;;1610125647;;False;{};gik43wy;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gik43wy/;1610161140;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dragonfire535;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/dragonfire535/;light;text;t2_zu8n4;False;False;[];;I don't really think the problems were problems, I liked it for the same reason others don't like it, seems like lol;False;False;;;;1610125670;;False;{};gik45sw;True;t3_kt4snx;False;True;t1_gik3bgd;/r/anime/comments/kt4snx/great_pretender_is_good_but_is_it_great/gik45sw/;1610161172;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610125734;;False;{};gik4awv;False;t3_kt6nj6;False;True;t3_kt6nj6;/r/anime/comments/kt6nj6/how_to_read_the_anime_of_gakuen_babysitters/gik4awv/;1610161260;0;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;1 or 2 at maximum. There's just too much to do, in too little time.;False;False;;;;1610125744;;False;{};gik4bpq;False;t3_kt66x2;False;True;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik4bpq/;1610161275;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Melonmans;;;[];;;;text;t2_9kom32s2;False;False;[];;Probably like 20 to thirty;False;False;;;;1610125863;;False;{};gik4l4g;False;t3_kt66x2;False;True;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik4l4g/;1610161434;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;I agree, the meta jokes work better, plus most of the books is internal thoughts anyway.;False;False;;;;1610125881;;False;{};gik4mic;False;t3_kt5nhe;False;True;t1_gik0ei5;/r/anime/comments/kt5nhe/is_monogatari_series_worth_watching/gik4mic/;1610161458;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FalseKiller45;;;[];;;;text;t2_no0dru0;False;False;[];;Other way around for me, but Gintoki places it just that little bit higher;False;False;;;;1610125994;;False;{};gik4vh6;False;t3_kt4a31;False;False;t1_gik0wg8;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gik4vh6/;1610161614;19;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"It's mostly 12 year old children with terrible grammar and spelling, asking ""Is SHOWX worth watching"" or ""What should I watch next?"".";False;False;;;;1610125997;;False;{};gik4vsx;False;t3_kt5kmj;False;True;t1_gik3yo9;/r/anime/comments/kt5kmj/people_need_to_utilize_the_subs_recommendation/gik4vsx/;1610161618;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;I mean Makoto did end up trafficking children. I'd say that's a pretty big problem in the character writing considering it's so against anything he'd do from what we know;False;False;;;;1610126007;;False;{};gik4wkh;False;t3_kt4snx;False;True;t1_gik45sw;/r/anime/comments/kt4snx/great_pretender_is_good_but_is_it_great/gik4wkh/;1610161632;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dragonfire535;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/dragonfire535/;light;text;t2_zu8n4;False;False;[];;This is actually a common misconception. The kids he supposedly trafficked are saved, and one is with Cynthia at the end. I don't think he actually did anything.;False;False;;;;1610126068;;False;{};gik51eh;True;t3_kt4snx;False;True;t1_gik4wkh;/r/anime/comments/kt4snx/great_pretender_is_good_but_is_it_great/gik51eh/;1610161717;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610126206;moderator;False;{};gik5cn4;False;t3_kt6wyh;False;True;t3_kt6wyh;/r/anime/comments/kt6wyh/re_series_watch_order_guide/gik5cn4/;1610161909;1;False;False;anime;t5_2qh22;;0;[]; -[];;;jicuhrabbitkim;;;[];;;;text;t2_6po9il13;False;False;[];;What re series ?? You mean Re: Zero ?;False;False;;;;1610126234;;False;{};gik5evj;False;t3_kt6wyh;False;True;t3_kt6wyh;/r/anime/comments/kt6wyh/re_series_watch_order_guide/gik5evj/;1610161946;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;He was with that mafia trafficking group for months. I fully believe other children were being trafficked and he did nothing about it. Plus he had no way of knowing the plan until Oz told him. So if Oz, Abbey, and Cynthia were really dead he would have just stayed with the group of child traffickers and trafficked the children. He was willingly part of a criminal organization and it made no sense;False;False;;;;1610126259;;False;{};gik5gze;False;t3_kt4snx;False;True;t1_gik51eh;/r/anime/comments/kt4snx/great_pretender_is_good_but_is_it_great/gik5gze/;1610161979;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shadowwolf5928;;;[];;;;text;t2_7zx2lcp3;False;False;[];;I haven’t watched it but it has a bunny girl who’s a senpai so in conclusion yes;False;False;;;;1610126298;;False;{};gik5k2q;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gik5k2q/;1610162030;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Renn_Renn23;;;[];;;;text;t2_5316qeyo;False;False;[];;Re:Zero, ReLife, Tokyo Ghoul:Re? You're gonna have to be a little more specific;False;False;;;;1610126398;;False;{};gik5s7t;False;t3_kt6wyh;False;False;t3_kt6wyh;/r/anime/comments/kt6wyh/re_series_watch_order_guide/gik5s7t/;1610162163;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Boi if this ain’t the dumbest comment I’ve ever seen on this subreddit;False;False;;;;1610126399;;False;{};gik5s9v;False;t3_kt4a31;False;False;t1_gijtyvp;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gik5s9v/;1610162164;6;True;False;anime;t5_2qh22;;0;[]; -[];;;dragonfire535;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/dragonfire535/;light;text;t2_zu8n4;False;False;[];;I disagree, but there's not exactly evidence in the show either way so neither point is proven. I think it was hinted he knew the whole time and was attempting to one-up Laurent. He needed to get the leader's trust for that plan to work, but given the kid at the end I think Cynthia and co were there buying the kids. They say they freed them.;False;False;;;;1610126421;;False;{};gik5u0o;True;t3_kt4snx;False;True;t1_gik5gze;/r/anime/comments/kt4snx/great_pretender_is_good_but_is_it_great/gik5u0o/;1610162192;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;I’m working on it but early Gintama is so damn weird in its storytelling/such a drag;False;False;;;;1610126464;;False;{};gik5xj8;False;t3_kt4a31;False;False;t3_kt4a31;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gik5xj8/;1610162248;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;"There's no ""Re"" series. It's just a naming convention. - -Things like Re:Zero and ReLIFE have no relation to each other";False;False;;;;1610126473;;False;{};gik5y88;False;t3_kt6wyh;False;False;t3_kt6wyh;/r/anime/comments/kt6wyh/re_series_watch_order_guide/gik5y88/;1610162259;9;True;False;anime;t5_2qh22;;0;[]; -[];;;FlyngGamer10;;;[];;;;text;t2_exl01ml;False;False;[];;"If you mean series like: -Re:Zero, -Re:Creators, -ReLIFE, -They are not conected and have nothing to do with each other. Not in the same universe. Done by different writers.";False;False;;;;1610126533;;False;{};gik630n;False;t3_kt6wyh;False;False;t3_kt6wyh;/r/anime/comments/kt6wyh/re_series_watch_order_guide/gik630n/;1610162336;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Physical-Ad9730;;;[];;;;text;t2_76jhejrs;False;False;[];;I really hate the seinen elitists, I love my seinen but I am totally fine with people prefering shonen series and I love how you justa said that all the series he mentioned are shonen when berserk one of the most well known seinen is on the list;False;False;;;;1610126547;;False;{};gik646d;False;t3_kt4a31;False;False;t1_gijtyvp;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gik646d/;1610162356;8;True;False;anime;t5_2qh22;;0;[]; -[];;;A_kirE;;;[];;;;text;t2_8mklskhy;False;False;[];;if you meant about the animes with RE in the title, well they dont have a connection to each other except if its a different season;False;False;;;;1610126708;;False;{};gik6hfz;False;t3_kt6wyh;False;False;t3_kt6wyh;/r/anime/comments/kt6wyh/re_series_watch_order_guide/gik6hfz/;1610162592;4;True;False;anime;t5_2qh22;;0;[]; -[];;;juances19;;HB;[];;https://kitsu.io/users/juances;dark;text;t2_17a18d;False;False;[];;Resident Evil? At least the cg movies are more faithfully than mila Jovovich's live action franchise.;False;False;;;;1610126710;;False;{};gik6hjn;False;t3_kt6wyh;False;True;t3_kt6wyh;/r/anime/comments/kt6wyh/re_series_watch_order_guide/gik6hjn/;1610162595;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"People watch fate once - -Same people trying to watch a new show after it:";False;False;;;;1610126803;;False;{};gik6p9d;False;t3_kt6wyh;False;True;t3_kt6wyh;/r/anime/comments/kt6wyh/re_series_watch_order_guide/gik6p9d/;1610162726;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;It’s amazing and there is a LOT. There’s also like 4 movies;False;False;;;;1610126822;;False;{};gik6qtr;False;t3_kt5nhe;False;True;t3_kt5nhe;/r/anime/comments/kt5nhe/is_monogatari_series_worth_watching/gik6qtr/;1610162752;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AconexOfficial;;;[];;;;text;t2_ybela;False;False;[];;"First half is great, second half is okay. -Also the movie is insane, even though the first halt of it is quite slow";False;False;;;;1610126967;;False;{};gik72qt;False;t3_kt6j2z;False;False;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gik72qt/;1610162956;34;True;False;anime;t5_2qh22;;0;[]; -[];;;A_kirE;;;[];;;;text;t2_8mklskhy;False;False;[];;i could finish 12 episodes of an anime in one sitting at the peak of my anime addiction but its impossible right now;False;False;;;;1610126974;;False;{};gik73d4;False;t3_kt66x2;False;True;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik73d4/;1610162969;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;False;[];;It absolutely is worth the watch. Don't forget about the movie as well!!!!;False;False;;;;1610126984;;False;{};gik747f;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gik747f/;1610162982;0;True;False;anime;t5_2qh22;;0;[]; -[];;;makaveli999X;;;[];;;;text;t2_ccg35ho;False;False;[];;"check this guide to get through the first 50 episodes thats what i did ! - -&#x200B; - -[https://sotaku.com/gintama-complete-skippable-episode-guide/](https://sotaku.com/gintama-complete-skippable-episode-guide/)";False;False;;;;1610127012;;False;{};gik76ig;True;t3_kt4a31;False;True;t1_gik5xj8;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gik76ig/;1610163019;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blackmagemasta;;MAL;[];;https://myanimelist.net/profile/blackmagemasta;dark;text;t2_aceb1;False;False;[];;"I made a flow chart to help you find the answer. - -Do you enjoy watching it? → Yes → It's worth watching. -↓ -No -↓ -It's not worth watching.";False;False;;;;1610127041;;False;{};gik78vr;False;t3_kt6j2z;False;False;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gik78vr/;1610163057;64;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"ANIKI GANGA rise up! - -Holy shit this is looking even better than I imagined, mappa really flexing on JJK - -And the op appears to be a new banger, hope the visuals are also great!!";False;False;;;;1610127049;;False;{};gik79ku;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gik79ku/;1610163072;195;True;False;anime;t5_2qh22;;0;[]; -[];;;messem10;;;[];;;;text;t2_6pcwi;False;False;[];;[Tomozaki Spoilers](/s “None. It is more of a self-help series than a romance one.”);False;False;;;;1610127084;;False;{};gik7ch9;False;t3_kt5lak;False;True;t1_gijxzhi;/r/anime/comments/kt5lak/bottomtier_character_tomozakikun_op_jinsei_easy/gik7ch9/;1610163119;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Damarugaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Damarugaki/;light;text;t2_6zyxfkgg;False;False;[];;MY FURENDO;False;False;;;;1610127129;;False;{};gik7g4g;False;t3_kt75px;False;False;t1_gik79ku;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gik7g4g/;1610163180;89;True;False;anime;t5_2qh22;;0;[]; -[];;;HoloandMaiFan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AntonRuscov;light;text;t2_7wt2wd3p;False;False;[];;I am not a big fan of it but I still enjoyed it for the most part. I would still personally say it is worth a try. Just watch the first season, Bakemonogatari, and if you do not like it then don't bother continuing because you will almost certainly not like the rest of it.;False;False;;;;1610127156;;1610135728.0;{};gik7ic9;False;t3_kt5nhe;False;True;t3_kt5nhe;/r/anime/comments/kt5nhe/is_monogatari_series_worth_watching/gik7ic9/;1610163215;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jfl7723;;;[];;;;text;t2_7q3rjkpr;False;False;[];;The promised neverland;False;False;;;;1610127172;;False;{};gik7jnt;False;t3_kt6fin;False;True;t3_kt6fin;/r/anime/comments/kt6fin/recommendations_for_a_newbie/gik7jnt/;1610163238;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Damarugaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Damarugaki/;light;text;t2_6zyxfkgg;False;False;[];;This arc looks like it is going to be very hype, hope the staff got a well-deserved rest during the 2 week break.;False;False;;;;1610127177;;False;{};gik7k2m;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gik7k2m/;1610163244;75;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610127206;;False;{};gik7me4;False;t3_kt75px;False;True;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gik7me4/;1610163286;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Same hair color, they are exactly the same, in the manga colored illustration the colors are more similar than in the anime, but this is just for illustration purposes;False;False;;;;1610127268;;False;{};gik7rj4;False;t3_kt78pl;False;False;t3_kt78pl;/r/anime/comments/kt78pl/i_honestly_dont_understand_how_this_is_even_a/gik7rj4/;1610163376;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Curious211;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_ih7wb;False;True;[];;The animation looks slick. I’m glad the quality of the show is being continued.;False;False;;;;1610127282;;False;{};gik7spl;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gik7spl/;1610163395;87;True;False;anime;t5_2qh22;;0;[]; -[];;;Aerohed;;;[];;;;text;t2_xjmyo;False;False;[];;Well, now I'm absolutely going to watch it. Thanks for the heads up!;False;False;;;;1610127288;;False;{};gik7t6j;False;t3_kt5ab0;False;False;t1_gijvtbt;/r/anime/comments/kt5ab0/original_tv_anime_back_arrow_is_listed_with_a/gik7t6j/;1610163405;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Liberty_Bibberty;;;[];;;;text;t2_64ltckvk;False;False;[];;Thanks!;False;False;;;;1610127316;;False;{};gik7vcg;False;t3_kt5lak;False;True;t1_gik7ch9;/r/anime/comments/kt5lak/bottomtier_character_tomozakikun_op_jinsei_easy/gik7vcg/;1610163440;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610127324;moderator;False;{};gik7w14;False;t3_kt7bby;False;True;t3_kt7bby;/r/anime/comments/kt7bby/what_should_i_get/gik7w14/;1610163453;1;False;False;anime;t5_2qh22;;0;[]; -[];;;zakattak456;;;[];;;;text;t2_jfm3oqv;False;False;[];;Love me some Shonen tournament arcs. My favourite one is the MHA Sports festival, I wonder if this will top it;False;False;;;;1610127346;;False;{};gik7xs6;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gik7xs6/;1610163484;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Garlicbread10;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;echidna cultist;dark;text;t2_8zn7f5o;False;False;[];;Animation looks absolutely sick! Can’t wait to see the fights animated and the OP slaps. Goodwill hype;False;False;;;;1610127383;;False;{};gik80t8;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gik80t8/;1610163537;41;True;False;anime;t5_2qh22;;0;[]; -[];;;blackmagemasta;;MAL;[];;https://myanimelist.net/profile/blackmagemasta;dark;text;t2_aceb1;False;False;[];;At this point in time, Funimation has not gained CR's catalogue. Go with the one that has more things that you want to watch and gives you a better value for your money.;False;False;;;;1610127422;;False;{};gik844x;False;t3_kt7bby;False;True;t3_kt7bby;/r/anime/comments/kt7bby/what_should_i_get/gik844x/;1610163617;1;True;False;anime;t5_2qh22;;0;[]; -[];;;oujicrows;;;[];;;;text;t2_9nz9ftrh;False;False;[];;Sailor Moon;False;False;;;;1610127561;;False;{};gik8fuz;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gik8fuz/;1610163820;2;True;False;anime;t5_2qh22;;0;[]; -[];;;turiyoOTAKU;;;[];;;;text;t2_45xtwg9u;False;False;[];;Yu Yu hakusho;False;False;;;;1610127566;;False;{};gik8g8f;False;t3_kt7djy;False;False;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gik8g8f/;1610163826;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Nihhrt;;MAL;[];;http://myanimelist.net/animelist/Nihhrt;dark;text;t2_8p0ab;False;False;[];;"Dirty Pair - -Edit: Why am I getting downvoted for this? It's a great sci-fi anime from the 80's that still holds up in my opinion. Are you people just judging from the title?";False;False;;;;1610127592;;1610128794.0;{};gik8ig5;False;t3_kt7djy;False;False;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gik8ig5/;1610163864;4;True;False;anime;t5_2qh22;;0;[]; -[];;;LChxvez;;;[];;;;text;t2_72e40hs9;False;False;[];;alright ty;False;False;;;;1610127611;;False;{};gik8jzg;True;t3_kt7bby;False;True;t1_gik844x;/r/anime/comments/kt7bby/what_should_i_get/gik8jzg/;1610163888;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610127627;;False;{};gik8ld7;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gik8ld7/;1610163914;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Great Teacher Onizuka (GTO);False;False;;;;1610127654;;False;{};gik8nmn;False;t3_kt7djy;False;False;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gik8nmn/;1610163953;6;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;True;[];;">retro - ->before 2009 - -Lol - -If it can be that recent I'm giving it to Higurashi";False;False;;;;1610127658;;False;{};gik8nzc;False;t3_kt7djy;False;False;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gik8nzc/;1610163960;21;True;False;anime;t5_2qh22;;0;[]; -[];;;iamastud;;;[];;;;text;t2_7oknq6v4;False;False;[];;anything aired on toonami or adult swim action;False;False;;;;1610127672;;False;{};gik8p3p;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gik8p3p/;1610163980;2;True;False;anime;t5_2qh22;;0;[]; -[];;;themostimmorel;;;[];;;;text;t2_52xzeln6;False;False;[];;Berserk;False;False;;;;1610127684;;False;{};gik8q3i;False;t3_kt7djy;False;False;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gik8q3i/;1610163997;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610127696;;False;{};gik8r5j;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gik8r5j/;1610164017;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DJSERRANO547;;;[];;;;text;t2_5qyy1wc5;False;False;[];;I wouldnt sau its too old but if its before 2009 than toradora def my favorite;False;False;;;;1610127731;;False;{};gik8u1c;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gik8u1c/;1610164065;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JuicyDragonCat;;;[];;;;text;t2_45tgc23z;False;False;[];;BESTO FRENDO;False;False;;;;1610127742;;False;{};gik8uxp;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gik8uxp/;1610164079;196;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610127761;;False;{};gik8wju;False;t3_kt75px;False;True;t1_gik7xs6;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gik8wju/;1610164107;6;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;Pokémon: Indigo League;False;False;;;;1610127766;;False;{};gik8wwq;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gik8wwq/;1610164114;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GenericMemesxd;;;[];;;;text;t2_15kk68;False;False;[];;Anime-onlies are in for another wild ride. Hyped;False;False;;;;1610127766;;False;{};gik8wy8;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gik8wy8/;1610164116;32;True;False;anime;t5_2qh22;;0;[]; -[];;;Strickout;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Strickout?status=2;light;text;t2_1szolp7k;False;False;[];;"The most I've ever done was all 48 episodes of Fairy Tail that are on Netflix in ""one sitting""(About 16 hours of watch time, but obvious I used the bathroom and ate) - -But on average I'll usually watch about 8-12 episodes";False;False;;;;1610127788;;False;{};gik8yu8;False;t3_kt66x2;False;True;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik8yu8/;1610164147;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cold_Saber;;;[];;;;text;t2_3oclhqjh;False;False;[];;The most I've done in one sitting is 36 episodes, but I think I could probably get to the forties.;False;False;;;;1610127848;;False;{};gik93xn;False;t3_kt66x2;False;True;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gik93xn/;1610164233;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;But to be be fair that was 2009 12 years ago and also Hirgurashi is a pretty good show;False;False;;;;1610127853;;False;{};gik94du;True;t3_kt7djy;False;True;t1_gik8nzc;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gik94du/;1610164242;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610127862;;False;{};gik953t;False;t3_kt78pl;False;False;t1_gik7rj4;/r/anime/comments/kt78pl/i_honestly_dont_understand_how_this_is_even_a/gik953t/;1610164254;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;lexluther4291;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/lexluther4291;light;text;t2_6l1fp;False;False;[];;SANKA YU SO MUCH-A;False;False;;;;1610127888;;False;{};gik979v;False;t3_kt75px;False;False;t1_gik8uxp;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gik979v/;1610164299;83;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610127904;;1610143159.0;{};gik98kk;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gik98kk/;1610164321;4;True;False;anime;t5_2qh22;;0;[]; -[];;;zakattak456;;;[];;;;text;t2_jfm3oqv;False;False;[];;Ahh ok, that'll be really fun. Can't wait;False;False;;;;1610127904;;False;{};gik98ko;False;t3_kt75px;False;True;t1_gik8wju;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gik98ko/;1610164321;4;True;False;anime;t5_2qh22;;0;[]; -[];;;YUM0N;;;[];;;;text;t2_diwhw;False;False;[];;Miwa looking dope.;False;False;;;;1610127904;;False;{};gik98mm;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gik98mm/;1610164322;58;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;Vampire knight;False;False;;;;1610127920;;False;{};gik99yl;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gik99yl/;1610164344;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tekkenjin;;;[];;;;text;t2_ymz1t;False;False;[];;Attack on titan;False;False;;;;1610127932;;False;{};gik9b0u;False;t3_kt6fin;False;True;t3_kt6fin;/r/anime/comments/kt6fin/recommendations_for_a_newbie/gik9b0u/;1610164365;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;"> and the one who lead the story writing of *that* Gurren Lagann and Kill la Kill! - -That explains why it feels like a Trigger show";False;False;;;;1610127959;;False;{};gik9d8s;False;t3_kt5ab0;False;False;t1_gijvtbt;/r/anime/comments/kt5ab0/original_tv_anime_back_arrow_is_listed_with_a/gik9d8s/;1610164403;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610127981;;1610143154.0;{};gik9f34;False;t3_kt78pl;False;True;t3_kt78pl;/r/anime/comments/kt78pl/i_honestly_dont_understand_how_this_is_even_a/gik9f34/;1610164443;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;JuicyDragonCat;;;[];;;;text;t2_45tgc23z;False;False;[];;This MAPPA studio kinda has potential, maybe they should try animating 10 anime in 1 year;False;True;;comment score below threshold;;1610128020;;False;{};gik9ibi;False;t3_kt75px;False;True;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gik9ibi/;1610164522;-30;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Yeah, look at their loli version, they all look like that nowadays, the colors are just changed to help the viewers differentiate them;False;False;;;;1610128125;;False;{};gik9r8o;False;t3_kt78pl;False;False;t1_gik953t;/r/anime/comments/kt78pl/i_honestly_dont_understand_how_this_is_even_a/gik9r8o/;1610164678;10;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610128151;;False;{};gik9tg9;False;t3_kt6j2z;False;True;t1_gik38u5;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gik9tg9/;1610164715;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;">2009 -> ->retro - -I'm slowly moving to the older half of this sub aren't I... - -As for your question, K-On!";False;False;;;;1610128166;;False;{};gik9uq3;False;t3_kt7djy;False;False;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gik9uq3/;1610164736;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Handsome-_-awkward;;;[];;;;text;t2_52f0dxfa;False;False;[];;Crunchy roll is free is it not;False;False;;;;1610128187;;False;{};gik9wgq;False;t3_kt7bby;False;False;t3_kt7bby;/r/anime/comments/kt7bby/what_should_i_get/gik9wgq/;1610164766;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vestalla4;;;[];;;;text;t2_12ecb1ji;False;False;[];;Also he's not even really trying right now to find even physical differences. You see in the scene where he names them wrong Yotsuba is pointing at the numbers on her hoodie. The numbers on Hoodie can be read as Yotsuba;False;False;;;;1610128203;;1610133944.0;{};gik9xs8;False;t3_kt78pl;False;True;t1_gik953t;/r/anime/comments/kt78pl/i_honestly_dont_understand_how_this_is_even_a/gik9xs8/;1610164786;2;True;False;anime;t5_2qh22;;0;[]; -[];;;r4wrFox;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/PinkDandere/animelist;light;text;t2_b0tfl;False;False;[];;Fuck I'm old.;False;False;;;;1610128251;;False;{};gika1ut;False;t3_kt7djy;False;True;t1_gik94du;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gika1ut/;1610164854;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;Can't wait for the full song of the new op 🔥🔥;False;False;;;;1610128256;;False;{};gika28u;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gika28u/;1610164861;21;True;False;anime;t5_2qh22;;0;[]; -[];;;nikihs;;;[];;;;text;t2_4rzw7sdk;False;False;[];;Cowboy bebop;False;False;;;;1610128257;;False;{};gika2bd;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gika2bd/;1610164862;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Medabots;False;False;;;;1610128287;;False;{};gika4w6;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gika4w6/;1610164909;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rigoku;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Elitar;light;text;t2_2j07de1;False;False;[];;"This questions are weirder each day. I just wait to find ""Akudama Drive watch order??""";False;False;;;;1610128312;;False;{};gika6xh;False;t3_kt6wyh;False;False;t3_kt6wyh;/r/anime/comments/kt6wyh/re_series_watch_order_guide/gika6xh/;1610164944;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DatBoiZz;;;[];;;;text;t2_28yrt2we;False;False;[];;For me the most i have done is probably around 40 to 48 ep a day;False;False;;;;1610128329;;False;{};gika8ai;False;t3_kt66x2;False;True;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gika8ai/;1610164968;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DeathByTerror;;;[];;;;text;t2_5ivgsmbd;False;False;[];;Urusei Yatsura;False;False;;;;1610128336;;False;{};gika8y3;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gika8y3/;1610164981;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;"2009 really doesn't feel old to me, that lets Macross Frontier fit since it was from 2008 and that just doesn't feel right... I guess it's because I've watched a lot of pre-2000s anime and *those* are what feel old to me? - -Legend of the Galactic Heroes would be my answer. Along with a bunch of the older Gundam stuff.";False;False;;;;1610128360;;False;{};gikaaww;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikaaww/;1610165014;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;"So can this WiXOSS be watched if I have only watched like the very first two WIXOSS anime? - -It is entirely possible the only reason I want to watch it is because I saw [a screenshot of JK-gumi being background characters in this...](https://cdn.discordapp.com/attachments/553481420241371138/792058585735364608/unknown.png)";False;False;;;;1610128384;;False;{};gikacyy;False;t3_kt7bpo;False;False;t3_kt7bpo;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gikacyy/;1610165049;4;True;False;anime;t5_2qh22;;0;[]; -[];;;DarToad;;;[];;;;text;t2_9nn7vh4m;False;False;[];;"/r/anime's wiki for [ReLIFE](/r/anime/wiki/watch_order#wiki_relife) and [Re:Zero](/r/anime/wiki/watch_order#wiki_re.3Azero_kara_hajimeru_isekai_seikatsu). - -[Anime Maru](https://www.animemaru.com/anime-marus-guide-to-the-re-cinematic-universe/) for the whole Re cinematic universe.";False;False;;;;1610128415;;False;{};gikafhn;False;t3_kt6wyh;False;True;t3_kt6wyh;/r/anime/comments/kt6wyh/re_series_watch_order_guide/gikafhn/;1610165092;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;My personal number to consider something old is 21 years, time for someone to be born and start drinking, so for me 2000 and earlier are old;False;False;;;;1610128427;;False;{};gikagg7;False;t3_kt7djy;False;False;t1_gik94du;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikagg7/;1610165107;6;True;False;anime;t5_2qh22;;0;[]; -[];;;vagabondeluxe;;;[];;;;text;t2_6xj8vlb9;False;False;[];;*Legend of the Galactic Heroes*;False;False;;;;1610128431;;False;{};gikagsv;False;t3_kt7djy;False;False;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikagsv/;1610165112;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;Fantastic show;False;False;;;;1610128533;;False;{};gikapgj;True;t3_kt7djy;False;True;t1_gikagsv;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikapgj/;1610165264;3;True;False;anime;t5_2qh22;;0;[]; -[];;;xEnshaedn;;;[];;;;text;t2_3nu8msxv;False;False;[];;Yea this is the one, promotional material for it featured each of the characters like OP described. A collage of those posters made it to r/all in a different sub, that's the only reason I remember it lol;False;False;;;;1610128605;;False;{};gikavjf;False;t3_kt5emn;False;True;t1_gik410p;/r/anime/comments/kt5emn/busy_having_an_existential_crisis/gikavjf/;1610165364;2;True;False;anime;t5_2qh22;;0;[]; -[];;;danny18wrx;;;[];;;;text;t2_74zifzz5;False;False;[];;I have both and tbh I like Crunchyroll better;False;False;;;;1610128618;;False;{};gikawpi;False;t3_kt7bby;False;True;t3_kt7bby;/r/anime/comments/kt7bby/what_should_i_get/gikawpi/;1610165383;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blackpants101;;;[];;;;text;t2_3dck62x2;False;False;[];;Vampire princess miyu;False;False;;;;1610128648;;False;{};gikaz5d;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikaz5d/;1610165423;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blackpants101;;;[];;;;text;t2_3dck62x2;False;False;[];;Oh come on! The good version isn't *that* old. :p;False;False;;;;1610128681;;False;{};gikb1ys;False;t3_kt7djy;False;False;t1_gik8q3i;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikb1ys/;1610165472;2;True;False;anime;t5_2qh22;;0;[]; -[];;;A_kirE;;;[];;;;text;t2_8mklskhy;False;False;[];;yuyu hakusho;False;False;;;;1610128745;;False;{};gikb7ap;False;t3_kt7djy;False;False;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikb7ap/;1610165561;5;True;False;anime;t5_2qh22;;0;[]; -[];;;blackpants101;;;[];;;;text;t2_3dck62x2;False;False;[];;That makes me feel decrepit.;False;False;;;;1610128746;;False;{};gikb7cv;False;t3_kt7djy;False;True;t1_gikagg7;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikb7cv/;1610165562;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"> So can this WiXOSS be watched if I have only watched like the very first two WIXOSS anime? - -I'm 99.9999% sure that this series is its own thing entirely, not related to the original at all aside from being based on the same card game. So you can jump in even if you haven't seen a single minute of the previous WIXOSS series. - -**EDIT:** [One very familiar name](https://i.imgur.com/2DDhz57.png) showed up in a random comment on the board, but I think that's just a small cameo and not a sign of the stories being connected.";False;False;;;;1610128752;;1610132404.0;{};gikb7u3;False;t3_kt7bpo;False;False;t1_gikacyy;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gikb7u3/;1610165570;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Cryzzalis;;MAL a-amq;[];;http://myanimelist.net/animelist/Charaxify;dark;text;t2_7j04d;False;False;[];;"I gotta say it feels weird calling stuff before 2009 retro, but I'll play along. - -My favorite anime of all time and favorite pre-09 anime is Clannad, nothing has ever quite struck me the way it did.";False;False;;;;1610128771;;False;{};gikb9h5;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikb9h5/;1610165596;2;True;False;anime;t5_2qh22;;0;[]; -[];;;themostimmorel;;;[];;;;text;t2_52xzeln6;False;False;[];;1997 is pretty old;False;False;;;;1610128775;;False;{};gikb9tf;False;t3_kt7djy;False;True;t1_gikb1ys;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikb9tf/;1610165602;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blackpants101;;;[];;;;text;t2_3dck62x2;False;False;[];;That's the original though! What about the awesome reboot?;False;False;;;;1610128819;;False;{};gikbdij;False;t3_kt7djy;False;False;t1_gikb1ys;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikbdij/;1610165665;2;True;False;anime;t5_2qh22;;0;[]; -[];;;findercutename;;;[];;;;text;t2_8rmmqqbt;False;False;[];;Thanks for the confirmation😊;False;False;;;;1610128864;;False;{};gikbh8e;False;t3_kt5emn;False;True;t1_gikavjf;/r/anime/comments/kt5emn/busy_having_an_existential_crisis/gikbh8e/;1610165727;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crispy_doggo1;;;[];;;;text;t2_2nw4rbfu;False;False;[];;If it's hard to get into it at first you can have it playing in the background or the corner of your screen with picture-in-picture mode or a second monitor if you have one.;False;False;;;;1610128957;;False;{};gikbot9;False;t3_kt4a31;False;True;t1_gik5xj8;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gikbot9/;1610165849;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;Clannad is a solid show;False;False;;;;1610128965;;False;{};gikbpd6;True;t3_kt7djy;False;True;t1_gikb9h5;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikbpd6/;1610165858;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Considering I’m watching it in subbed that’s pretty difficult;False;False;;;;1610129009;;False;{};gikbsz5;False;t3_kt4a31;False;True;t1_gikbot9;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gikbsz5/;1610165915;1;True;False;anime;t5_2qh22;;0;[]; -[];;;juances19;;HB;[];;https://kitsu.io/users/juances;dark;text;t2_17a18d;False;False;[];;It's the same color in-universe. It's like we're watching the anime with cheats that lets us tell the color apart.;False;False;;;;1610129157;;False;{};gikc51u;False;t3_kt78pl;False;False;t3_kt78pl;/r/anime/comments/kt78pl/i_honestly_dont_understand_how_this_is_even_a/gikc51u/;1610166114;10;True;False;anime;t5_2qh22;;0;[]; -[];;;crispy_doggo1;;;[];;;;text;t2_2nw4rbfu;False;False;[];;You can afford to miss a couple lines here and there, or just speed-read the subtitles. That's how I watch the show most of the time. Still, when there is a particularly important part of the show, it's more than entertaining enough to keep my eyes on it.;False;False;;;;1610129306;;False;{};gikch3i;False;t3_kt4a31;False;True;t1_gikbsz5;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gikch3i/;1610166313;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kairyu_gen1;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/kairyu_gen1;dark;text;t2_v5hbm;False;False;[];;Definitely worth giving a try. I liked it, millions of other people liked it, there's a good chance you'll like it too.;False;False;;;;1610129406;;False;{};gikcpa1;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gikcpa1/;1610166446;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LelouchXYZ;;;[];;;;text;t2_9jd604m9;False;False;[];;Death note;False;False;;;;1610129449;;False;{};gikcsqi;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikcsqi/;1610166503;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"# Source Material Corner - -Reply to this comment for any source-related discussion, future spoilers (including future characters, events and general hype about future content), comparison of the anime adaptation to the original, or just general talk about the source material. **You are still required to tag all spoilers.** Discussions about the source outside of this comment tree will be removed, and replying with spoilers outside of the source corner will lead to bans. - -The spoiler syntax is: -`[Spoiler source](/s ""Spoiler goes here"")` - - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610129619;moderator;False;{};gikd6sk;False;t3_kt84wj;False;True;t3_kt84wj;/r/anime/comments/kt84wj/kings_raid_ishi_wo_tsugumonotachi_episode_15/gikd6sk/;1610166734;1;False;True;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610129630;moderator;False;{};gikd7p4;False;t3_kt8507;False;True;t3_kt8507;/r/anime/comments/kt8507/ayo_people_i_have_a_quick_question_about_red_eyes/gikd7p4/;1610166748;0;False;False;anime;t5_2qh22;;0;[]; -[];;;CT_BINO;;MAL;[];;https://myanimelist.net/profile/CT_BINO;dark;text;t2_pa5vv;False;False;[];;Princess Tutu;False;False;;;;1610129671;;False;{};gikdb2y;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikdb2y/;1610166806;2;True;False;anime;t5_2qh22;;0;[]; -[];;;legwkio2;;;[];;;;text;t2_3winxodf;False;False;[];;Not to discredit the TV series but what cemented Bunny Girl senpai as must watch for me was the movie. It's up there for me with Disappearance of Suzumiya Haruhi, arguably the best anime movie of all time.;False;False;;;;1610129705;;False;{};gikddys;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gikddys/;1610166854;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Leonie_Chan;;;[];;;;text;t2_5uhxdwg1;False;False;[];;It does sort of sound like an ecchi anime ngl. Great show tho, basically peak 80’s and I love that about it;False;False;;;;1610129739;;False;{};gikdgs9;False;t3_kt7djy;False;True;t1_gik8ig5;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikdgs9/;1610166902;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PeterGriffenttv;;;[];;;;text;t2_5gvxyq1r;False;False;[];;What did the character look like did they have a helmet on or were they a skeleton?;False;False;;;;1610129762;;False;{};gikdinc;False;t3_kt8507;False;False;t3_kt8507;/r/anime/comments/kt8507/ayo_people_i_have_a_quick_question_about_red_eyes/gikdinc/;1610166932;4;True;False;anime;t5_2qh22;;0;[]; -[];;;kucingmaut;;;[];;;;text;t2_10iyon9y;False;False;[];;"I thought they going to use 'tomo' as in best friend, always hearing it like that when reading the manga - -at least it got adapted thx mappa!";False;False;;;;1610129777;;False;{};gikdjxs;False;t3_kt75px;False;False;t1_gik7g4g;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikdjxs/;1610166952;29;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;Yeah, no one reads what the automod says.;False;False;;;;1610129781;;False;{};gikdk7b;False;t3_kt5kmj;False;True;t1_gijzbia;/r/anime/comments/kt5kmj/people_need_to_utilize_the_subs_recommendation/gikdk7b/;1610166956;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;"Well, that sure was... *something.* - -I really liked the character designs (both in real life and inside the game) and the battle animation looked pretty nice. Despite all the bright colors and music, I still did see some tiny hints of that darker aspect that lurked behind first few episodes of the original series, so maybe things really aren't as bright as they seem? Guess we'll find out later. All in all, I'm excited to see more.";False;False;;;;1610129823;;False;{};gikdnnr;False;t3_kt7bpo;False;False;t3_kt7bpo;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gikdnnr/;1610167013;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ThatWrestlingGuy15;;;[];;;;text;t2_321pl5tw;False;False;[];;BEST FRIENDO ❤️❤️❤️ MANGA READERS IT’S TIME;False;False;;;;1610129831;;False;{};gikdo9r;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikdo9r/;1610167022;50;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;Damn downvoted for spitting fax;False;True;;comment score below threshold;;1610129862;;False;{};gikdqri;False;t3_kt75px;False;True;t1_gik9ibi;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikdqri/;1610167062;-24;True;False;anime;t5_2qh22;;0;[]; -[];;;ThatWrestlingGuy15;;;[];;;;text;t2_321pl5tw;False;False;[];;I wonder how many “Where is Junpei?” Comments will I see in this comment section.;False;False;;;;1610129868;;False;{};gikdram;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikdram/;1610167071;5;True;False;anime;t5_2qh22;;0;[]; -[];;;cyang1213;;;[];;;;text;t2_mujff0x;False;False;[];;"Gundam 1981 movies. - -I haven't watched the 1979 show though.";False;False;;;;1610129884;;False;{};gikdsnv;False;t3_kt7djy;False;False;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikdsnv/;1610167093;3;True;False;anime;t5_2qh22;;0;[]; -[];;;t0b3k1nd;;;[];;;;text;t2_24xoeb7d;False;False;[];;"Where's Tatsuya Yoshihara's credit? I would've expect him to be billed if he was a ""key animator"" like someone said a few weeks ago.";False;False;;;;1610129896;;False;{};gikdtm3;False;t3_kt75px;False;True;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikdtm3/;1610167108;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610129943;;False;{};gikdxgb;False;t3_kt88z3;False;True;t3_kt88z3;/r/anime/comments/kt88z3/animated_music_videos_2020/gikdxgb/;1610167172;0;False;False;anime;t5_2qh22;;0;[]; -[];;;death556;;;[];;;;text;t2_y24tf;False;False;[];;I know goblin slayer had this effect. Aswell as naruto characters sometimes.;False;False;;;;1610129959;;False;{};gikdyra;False;t3_kt8507;False;True;t3_kt8507;/r/anime/comments/kt8507/ayo_people_i_have_a_quick_question_about_red_eyes/gikdyra/;1610167195;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nihhrt;;MAL;[];;http://myanimelist.net/animelist/Nihhrt;dark;text;t2_8p0ab;False;False;[];;It does have some skimpy clothes and some typical anime tropes, but despite the name it's not an ecchi anime.;False;False;;;;1610129967;;False;{};gikdzfj;False;t3_kt7djy;False;True;t1_gikdgs9;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikdzfj/;1610167206;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;Guess that means watching prior entries doesn't seem to be required.;False;False;;;;1610129979;;False;{};gike0ck;False;t3_kt7bpo;False;True;t1_gikdnnr;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gike0ck/;1610167223;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SamIAm54;;;[];;;;text;t2_3ds6kbuh;False;False;[];;Oh shoot. Thanks mate;False;False;;;;1610130014;;False;{};gike3d5;True;t3_kt8507;False;True;t1_gikdyra;/r/anime/comments/kt8507/ayo_people_i_have_a_quick_question_about_red_eyes/gike3d5/;1610167270;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SamIAm54;;;[];;;;text;t2_3ds6kbuh;False;False;[];;I’m just looking for anime’s that had that effect in them;False;False;;;;1610130038;;False;{};gike59t;True;t3_kt8507;False;True;t1_gikdinc;/r/anime/comments/kt8507/ayo_people_i_have_a_quick_question_about_red_eyes/gike59t/;1610167303;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610130071;;False;{};gike80j;False;t3_kt75px;False;True;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gike80j/;1610167351;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;Cynderaquil;;;[];;;;text;t2_3hyccqum;False;False;[];;Maybe Hunter x Hunter? I know one of the characters has glowy red eyes when they don’t wear contacts but that’s about all I really remember;False;False;;;;1610130111;;False;{};gikeb7l;False;t3_kt8507;False;True;t3_kt8507;/r/anime/comments/kt8507/ayo_people_i_have_a_quick_question_about_red_eyes/gikeb7l/;1610167404;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SamIAm54;;;[];;;;text;t2_3ds6kbuh;False;False;[];;Thanks for helping me with my list friend.;False;False;;;;1610130151;;False;{};gikeejf;True;t3_kt8507;False;True;t1_gikeb7l;/r/anime/comments/kt8507/ayo_people_i_have_a_quick_question_about_red_eyes/gikeejf/;1610167461;1;True;False;anime;t5_2qh22;;0;[]; -[];;;derekschroer;;MAL;[];;https://myanimelist.net/animelist/rarekumiko;dark;text;t2_bcbhe;False;False;[];;well...that was, something, not sure what, but it was something.;False;False;;;;1610130196;;False;{};gikeia2;False;t3_kt5lad;False;False;t3_kt5lad;/r/anime/comments/kt5lad/idolls_episode_1_discussion/gikeia2/;1610167523;4;True;False;anime;t5_2qh22;;0;[]; -[];;;sharafi04;;;[];;;;text;t2_4949iljy;False;False;[];;Who's the voice at 0:31? Feels familiar;False;False;;;;1610130222;;False;{};gikekiv;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikekiv/;1610167559;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Agreeable-Highlight;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/STARFLIGHT1111/;light;text;t2_2xajbknh;False;False;[];;"There’s not a specific name for it that I am aware of, but here’s a tv tropes page that seems pretty close to what you’re referring to. - -https://tvtropes.org/pmwiki/pmwiki.php/Main/MagicalEyeStreamers";False;False;;;;1610130225;;False;{};gikekpr;False;t3_kt8507;False;True;t3_kt8507;/r/anime/comments/kt8507/ayo_people_i_have_a_quick_question_about_red_eyes/gikekpr/;1610167562;3;True;False;anime;t5_2qh22;;0;[]; -[];;;WeeabooVoid;;;[];;;;text;t2_6hwibewj;False;False;[];;It's easily one of my favorites, give it a try.;False;False;;;;1610130233;;False;{};gikelfo;False;t3_kt6j2z;False;False;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gikelfo/;1610167574;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ATargetFinderScrub;;ANI a-amq;[];;https://anilist.co/user/ATargetFinderScrub/animelist;dark;text;t2_5vo76d;False;False;[];;"I would say it is very arc dependent. Your mileage may vary depending on how much you enjoy each character arc. For me the arcs i liked were phenomenal while the ones i disliked were incredibly underwhelming. - -Either way i still think it is worth experiencing.";False;False;;;;1610130250;;False;{};gikems4;False;t3_kt6j2z;False;False;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gikems4/;1610167597;54;True;False;anime;t5_2qh22;;0;[]; -[];;;SamIAm54;;;[];;;;text;t2_3ds6kbuh;False;False;[];;Thanks a lot. That’s actually very helpful now that I have a name for it.;False;False;;;;1610130351;;False;{};gikev7u;True;t3_kt8507;False;True;t1_gikekpr;/r/anime/comments/kt8507/ayo_people_i_have_a_quick_question_about_red_eyes/gikev7u/;1610167737;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lovro26;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Lovro26;light;text;t2_17kxi3pl;False;True;[];;"Its [Yoshitsugu Matsuoka](https://myanimelist.net/people/11817/Yoshitsugu_Matsuoka?q=Yoshitsugu%20Matsuoka&cat=person)";False;False;;;;1610130387;;False;{};gikeyab;True;t3_kt75px;False;False;t1_gikekiv;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikeyab/;1610167788;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610130399;;False;{};gikez92;False;t3_kt8507;False;False;t3_kt8507;/r/anime/comments/kt8507/ayo_people_i_have_a_quick_question_about_red_eyes/gikez92/;1610167804;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fuck_Shinji;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;Fuck Shinji(fate);light;text;t2_7xrbju2m;False;False;[];;When is the 2nd cour starting;False;False;;;;1610130436;;False;{};gikf2ci;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikf2ci/;1610167855;18;True;False;anime;t5_2qh22;;0;[]; -[];;;PeterGriffenttv;;;[];;;;text;t2_5gvxyq1r;False;False;[];;"I mean there’s overlord that has the main character sometimes have a moving red eye. - -The other one that I know of is goblin slayer and the main character does the red eye thing as well";False;False;;;;1610130466;;False;{};gikf4uo;False;t3_kt8507;False;True;t1_gike59t;/r/anime/comments/kt8507/ayo_people_i_have_a_quick_question_about_red_eyes/gikf4uo/;1610167895;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lovro26;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Lovro26;light;text;t2_17kxi3pl;False;True;[];;Next friday (January 15);False;False;;;;1610130473;;False;{};gikf5fp;True;t3_kt75px;False;False;t1_gikf2ci;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikf5fp/;1610167905;39;True;False;anime;t5_2qh22;;0;[]; -[];;;SamIAm54;;;[];;;;text;t2_3ds6kbuh;False;False;[];;Is goblin slayer good?;False;False;;;;1610130509;;False;{};gikf8fc;True;t3_kt8507;False;True;t1_gikf4uo;/r/anime/comments/kt8507/ayo_people_i_have_a_quick_question_about_red_eyes/gikf8fc/;1610167955;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hokoriwa;;;[];;;;text;t2_89aj2n94;False;False;[];;Cowboy Bebop;False;False;;;;1610130568;;False;{};gikfdc4;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikfdc4/;1610168038;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DoubleOverTop;;;[];;;;text;t2_9nxytvhm;False;False;[];;Somebody checked the raws and said that they basically referred to each other in engrish like Bruthur;False;False;;;;1610130592;;False;{};gikffeb;False;t3_kt75px;False;False;t1_gikdjxs;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikffeb/;1610168071;48;True;False;anime;t5_2qh22;;0;[]; -[];;;east-blue-samurai;;;[];;;;text;t2_c5avy2;False;False;[];;"It happens with Zoro in One Piece on occasion and I think Kurapika from Hunter x Hunter but I can’t remember if his eyes ever stream. The Uchiha get red eyes but I cant remember if they ever stream. - -It is admittedly a Very Cool affect :)";False;False;;;;1610130628;;False;{};gikfihc;False;t3_kt8507;False;True;t3_kt8507;/r/anime/comments/kt8507/ayo_people_i_have_a_quick_question_about_red_eyes/gikfihc/;1610168122;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;I'm planning to host a rewatch for the show in April, if you want to give it a shot while also having a bunch of peeps to discuss each episode with.;False;False;;;;1610130637;;False;{};gikfj6x;False;t3_kt7djy;False;True;t1_gikdsnv;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikfj6x/;1610168133;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"Anohana - -Your Lie in April - -A Silent Voice - -Erased - -Sora yori mo Tooi Basho - -The Promised Neverland - -Banana Fish - -Vinland Saga - -Dororo - -Psycho-Pass - -Re Zero Starting Life in Another World - -Cowboy Bebop - -Gurren Lagann - -Tried giving a variety just in case, never know unless you give it a try.";False;False;;;;1610130656;;False;{};gikfksb;False;t3_kt6fin;False;True;t3_kt6fin;/r/anime/comments/kt6fin/recommendations_for_a_newbie/gikfksb/;1610168160;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HereticalAegis;;;[];;;;text;t2_6xeubalv;False;False;[];;This doesn't seem like it'll be getting many viewers, but I'm sold. If it's anything like the mind fuck that was the original WIXOSS, this could end up being a hidden gem, or at the very least an intriguing watch.;False;False;;;;1610130669;;False;{};gikflt8;False;t3_kt7bpo;False;False;t3_kt7bpo;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gikflt8/;1610168176;11;True;False;anime;t5_2qh22;;0;[]; -[];;;sofastsomaybe;;;[];;;;text;t2_pn79k;False;False;[];;Dunno his involvement, but no key animators are credited in a trailer. They are credited in EDs, only in the episodes they've worked on.;False;False;;;;1610130707;;False;{};gikfp4k;False;t3_kt75px;False;False;t1_gikdtm3;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikfp4k/;1610168233;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Piromysl;;;[];;;;text;t2_4w6z82lr;False;False;[];;First time seeing sense MC?;False;False;;;;1610130710;;False;{};gikfpf1;False;t3_kt78pl;False;True;t3_kt78pl;/r/anime/comments/kt78pl/i_honestly_dont_understand_how_this_is_even_a/gikfpf1/;1610168238;1;True;False;anime;t5_2qh22;;0;[]; -[];;;east-blue-samurai;;;[];;;;text;t2_c5avy2;False;False;[];;The anime is absolutely beautiful to watch. Story is pretty good for the most part but while I wasnt following the manga, I heard from some people the ending was kind of a let down. Though probs no more than Naruto and Bleach so who knows.;False;False;;;;1610130752;;False;{};gikfsuf;False;t3_kt8507;False;True;t1_gikf8fc;/r/anime/comments/kt8507/ayo_people_i_have_a_quick_question_about_red_eyes/gikfsuf/;1610168297;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Florac;;;[];;;;text;t2_vy0sf;False;False;[];;It seems to be entirely unrelated, even the battles seem to be different. Wouldn't be surprised me if it shares themes with the previous series though;False;False;;;;1610130764;;False;{};gikftsb;False;t3_kt7bpo;False;False;t1_gikacyy;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gikftsb/;1610168314;5;True;False;anime;t5_2qh22;;0;[]; -[];;;sharafi04;;;[];;;;text;t2_4949iljy;False;False;[];;Oh yeah I just watched QQ. Thanks!;False;False;;;;1610130809;;False;{};gikfxep;False;t3_kt75px;False;False;t1_gikeyab;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikfxep/;1610168375;6;True;False;anime;t5_2qh22;;0;[]; -[];;;SamIAm54;;;[];;;;text;t2_3ds6kbuh;False;False;[];;Thanks mate;False;False;;;;1610130867;;False;{};gikg251;True;t3_kt8507;False;True;t1_gikfsuf;/r/anime/comments/kt8507/ayo_people_i_have_a_quick_question_about_red_eyes/gikg251/;1610168454;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GABST3RFTW;;;[];;;;text;t2_1m4gwvgv;False;False;[];;Short answer yes, long answer yesssssssssssssssssssssss.;False;False;;;;1610130871;;False;{};gikg2hk;False;t3_kt6j2z;False;False;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gikg2hk/;1610168461;4;True;False;anime;t5_2qh22;;0;[]; -[];;;SamIAm54;;;[];;;;text;t2_3ds6kbuh;False;False;[];;Thanks. It’s super cool to me too;False;False;;;;1610130905;;False;{};gikg5bn;True;t3_kt8507;False;True;t1_gikfihc;/r/anime/comments/kt8507/ayo_people_i_have_a_quick_question_about_red_eyes/gikg5bn/;1610168510;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;Not if you care about the bunny girl part;False;False;;;;1610131115;;False;{};gikgmnb;False;t3_kt6j2z;False;False;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gikgmnb/;1610168798;5;True;False;anime;t5_2qh22;;0;[]; -[];;;SmurfRockRune;;MAL a-amq;[];;http://myanimelist.net/profile/Smurf;dark;text;t2_75wfg;False;False;[];;"> The anime is absolutely beautiful to watch - -Really? Feel like visuals for it were really weak with how often it jumps back and forth between 2D and 3D. It can be really jarring at times.";False;False;;;;1610131184;;False;{};gikgsex;False;t3_kt8507;False;False;t1_gikfsuf;/r/anime/comments/kt8507/ayo_people_i_have_a_quick_question_about_red_eyes/gikgsex/;1610168890;5;True;False;anime;t5_2qh22;;0;[]; -[];;;VaNd3n1S;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_5rzpwzfv;False;False;[];;From this post I realized just how few old animes I've actually seen. All of my 10/10s on mal are from 2013 or higher.;False;False;;;;1610131212;;False;{};gikguvg;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikguvg/;1610168931;3;True;False;anime;t5_2qh22;;0;[]; -[];;;_Pinguino_;;skip7;[];;;dark;text;t2_8rggs9k7;False;False;[];;"2009, huh in that case - -Mind Game";False;False;;;;1610131235;;False;{};gikgwuf;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikgwuf/;1610168962;2;True;False;anime;t5_2qh22;;0;[]; -[];;;east-blue-samurai;;;[];;;;text;t2_c5avy2;False;False;[];;I found it very cool. I loved the effect. But I’ve also seen Land of the Lustrous and found that effect more jarring there. So I like how Demon Slayer incorporated it.;False;False;;;;1610131260;;False;{};gikgyyj;False;t3_kt8507;False;True;t1_gikgsex;/r/anime/comments/kt8507/ayo_people_i_have_a_quick_question_about_red_eyes/gikgyyj/;1610168996;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;ANINETEEN;;;[];;;;text;t2_4g33jvxm;False;False;[];;We back and ready to take over 🔥 MAPPA gave this show all the love. And another banger OP is the icing on top;False;False;;;;1610131263;;False;{};gikgz6h;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikgz6h/;1610168998;30;True;False;anime;t5_2qh22;;0;[]; -[];;;normyMacDonald;;;[];;;;text;t2_1cxdswh9;False;False;[];;Ah, my favorite shonen, Berserk;False;False;;;;1610131375;;False;{};gikh8io;False;t3_kt4a31;False;False;t1_gijtyvp;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gikh8io/;1610169148;10;True;False;anime;t5_2qh22;;0;[]; -[];;;hungryhippos1751;;;[];;;;text;t2_g5466;False;False;[];;Hmm... this seems like a good flow chart to me.;False;False;;;;1610131544;;False;{};gikhmkj;False;t3_kt6j2z;False;False;t1_gik78vr;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gikhmkj/;1610169375;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Mercernary76;;;[];;;;text;t2_4pt6p5cp;False;False;[];;VRV;False;False;;;;1610131553;;False;{};gikhnb2;False;t3_kt7bby;False;True;t3_kt7bby;/r/anime/comments/kt7bby/what_should_i_get/gikhnb2/;1610169387;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rmTizi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/rmTizi;light;text;t2_5hqlk;False;False;[];;I've been spoiled by the CG quality of D4DJ, this hurt my eyes;False;False;;;;1610131579;;False;{};gikhphs;False;t3_kt5lad;False;True;t3_kt5lad;/r/anime/comments/kt5lad/idolls_episode_1_discussion/gikhphs/;1610169424;2;True;False;anime;t5_2qh22;;0;[]; -[];;;VaNd3n1S;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_5rzpwzfv;False;False;[];;It is, but I think he wants, to buy premium.;False;False;;;;1610131581;;False;{};gikhpmy;False;t3_kt7bby;False;True;t1_gik9wgq;/r/anime/comments/kt7bby/what_should_i_get/gikhpmy/;1610169426;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Sorry, your comment has been removed. - -- Direction toward specific sources of pirated content of any type is not allowed. This includes links to unofficial scanlations, streams, uploads, and download sources of any copyrighted content. It also includes direction towards specific sites offering this type of content, and watermarks mentioning such sites in uploaded images/videos. - - Discussion of piracy in general is allowed, **but naming, linking to, or hinting towards specific sources is not. Offering to send links via PM is also not allowed.** For more details, see our [full rules on illegal content](https://www.reddit.com/r/anime/wiki/rules#wiki_do_not_link_to_illegal_content). - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610131612;moderator;False;{};gikhs6p;False;t3_kt6nj6;False;True;t1_gik4awv;/r/anime/comments/kt6nj6/how_to_read_the_anime_of_gakuen_babysitters/gikhs6p/;1610169465;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VaNd3n1S;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_5rzpwzfv;False;False;[];;Get vrv, it has both.;False;False;;;;1610131632;;False;{};gikhtyy;False;t3_kt7bby;False;True;t3_kt7bby;/r/anime/comments/kt7bby/what_should_i_get/gikhtyy/;1610169493;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610131636;;False;{};gikhucc;False;t3_kt8tt2;False;True;t3_kt8tt2;/r/anime/comments/kt8tt2/need_an_anime_recommendation_with_a_similar_plot/gikhucc/;1610169499;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Veronica_voorhees;;;[];;;;text;t2_2gzc8uv7;False;False;[];;Code geass is one of the top tier anime’s ever made in my opinion , the plot is chef kiss , lelouch becoming evil for good is wild and I love a well orchestrated protagonist , no surprise but I also really loved death note and lights complex . A fun FYI creators are preparing for a new code geass series this year;False;False;;;;1610131638;;False;{};gikhui2;False;t3_kt7qbe;False;False;t3_kt7qbe;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gikhui2/;1610169501;27;True;False;anime;t5_2qh22;;0;[]; -[];;;lettucedestroyer;;;[];;;;text;t2_3qf4cyzf;False;False;[];;Sorry;False;False;;;;1610131642;;False;{};gikhuup;False;t3_kt6nj6;False;True;t1_gikhs6p;/r/anime/comments/kt6nj6/how_to_read_the_anime_of_gakuen_babysitters/gikhuup/;1610169508;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AlexNae;;;[];;;;text;t2_13yqvf;False;False;[];;*YOOOOOOOOOOOOO LET'S FUCKING GOOOOOOOOO*;False;False;;;;1610131658;;False;{};gikhw60;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikhw60/;1610169530;12;True;False;anime;t5_2qh22;;0;[]; -[];;;LelouchXYZ;;;[];;;;text;t2_9jd604m9;False;False;[];;Strike The Blood. This is where the main character has glowing red eyes.;False;False;;;;1610131658;;False;{};gikhw67;False;t3_kt8507;False;True;t3_kt8507;/r/anime/comments/kt8507/ayo_people_i_have_a_quick_question_about_red_eyes/gikhw67/;1610169530;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;Gundam Wing included?;False;False;;;;1610131673;;False;{};gikhxdx;False;t3_kt7djy;False;False;t1_gikfj6x;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikhxdx/;1610169548;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Handsome-_-awkward;;;[];;;;text;t2_52f0dxfa;False;False;[];;I see;False;False;;;;1610131679;;False;{};gikhxxd;False;t3_kt7bby;False;True;t1_gikhpmy;/r/anime/comments/kt7bby/what_should_i_get/gikhxxd/;1610169557;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;A man of fine taste;False;False;;;;1610131688;;False;{};gikhyoy;False;t3_kt7djy;False;True;t1_gikapgj;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikhyoy/;1610169571;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;A true gem;False;False;;;;1610131703;;False;{};gikhzz6;False;t3_kt7djy;False;True;t1_gikb7ap;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikhzz6/;1610169591;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Zinek-Karyn;;;[];;;;text;t2_ylaskxo;False;False;[];;That’s just zoro from one piece and his life story lol;False;False;;;;1610131746;;False;{};giki3jc;False;t3_kt8tt2;False;True;t3_kt8tt2;/r/anime/comments/kt8tt2/need_an_anime_recommendation_with_a_similar_plot/giki3jc/;1610169648;1;True;False;anime;t5_2qh22;;0;[]; -[];;;XLightThief;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/frozen_lights;light;text;t2_5o80b;False;False;[];;Just watch it. :);False;False;;;;1610131777;;False;{};giki62q;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/giki62q/;1610169688;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;Looks like some kind of One Piece AU.;False;False;;;;1610131802;;False;{};giki85j;False;t3_kt8tt2;False;True;t3_kt8tt2;/r/anime/comments/kt8tt2/need_an_anime_recommendation_with_a_similar_plot/giki85j/;1610169721;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Teath123;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/MahoHiyajo/animelist;light;text;t2_5ryna;False;False;[];;Quite literally One Piece.;False;False;;;;1610131805;;False;{};giki8fg;False;t3_kt8tt2;False;True;t3_kt8tt2;/r/anime/comments/kt8tt2/need_an_anime_recommendation_with_a_similar_plot/giki8fg/;1610169725;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hersonlaef;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/LLEENN;light;text;t2_pyvb1;False;False;[];;"50+ episodes if I feel like it. - -I know this because I've done stuff like binge Hunter x Hunter (148 eps) in 3 days. Binge Zero no Tsukaima (48 eps) in a single sitting. Fairy Tail Final Season (51 eps) also in a single sitting. - -Otherwise I'd typically do 12-24 episodes a day if I have a list of titles I want to finish. - -[This is what I've been doing for the past 2 days](http://imgur.com/a/L1LprIN)";False;False;;;;1610131822;;1610132075.0;{};giki9tn;False;t3_kt66x2;False;False;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/giki9tn/;1610169749;1;True;False;anime;t5_2qh22;;0;[]; -[];;;knightkoala;;MAL;[];;http://myanimelist.net/profile/koalaruler;dark;text;t2_8ng09;False;False;[];;Well looks like the second cour will have even more hype moments. I can’t wait!;False;False;;;;1610131824;;False;{};gikia02;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikia02/;1610169752;8;True;False;anime;t5_2qh22;;0;[]; -[];;;VaNd3n1S;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_5rzpwzfv;False;False;[];;We're talking over reddit tf do you see? Are you spying on me?! Are you seeing me? GET OUT OF MY HOUSE!!;False;False;;;;1610131825;;False;{};gikia1t;False;t3_kt7bby;False;True;t1_gikhxxd;/r/anime/comments/kt7bby/what_should_i_get/gikia1t/;1610169753;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lunar_eclipse9;;;[];;;;text;t2_49og6dsx;False;False;[];;I just marathon watched it a few weeks ago (saw it when it both seasons came out) and I was reminded of why I loved it so much. Everything about it was amazing.;False;False;;;;1610131843;;False;{};gikibmg;False;t3_kt7qbe;False;False;t3_kt7qbe;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gikibmg/;1610169776;8;True;False;anime;t5_2qh22;;0;[]; -[];;;cbumpa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cbumpa;light;text;t2_4uaglc4u;False;False;[];;No way lmao I’m dead;False;False;;;;1610131844;;False;{};gikibom;True;t3_kt8tt2;False;True;t1_giki8fg;/r/anime/comments/kt8tt2/need_an_anime_recommendation_with_a_similar_plot/gikibom/;1610169777;1;True;False;anime;t5_2qh22;;0;[]; -[];;;knightkoala;;MAL;[];;http://myanimelist.net/profile/koalaruler;dark;text;t2_8ng09;False;False;[];;This break is killing me 😭😭;False;False;;;;1610131845;;False;{};gikibra;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikibra/;1610169778;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;You might want to go watch some classics when you get some time;False;False;;;;1610131847;;False;{};gikibxe;True;t3_kt7djy;False;True;t1_gikguvg;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikibxe/;1610169780;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cbumpa;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/cbumpa;light;text;t2_4uaglc4u;False;False;[];;Tell me this is taken directly from the show imma look dumb;False;False;;;;1610131870;;False;{};gikidz7;True;t3_kt8tt2;False;True;t1_giki3jc;/r/anime/comments/kt8tt2/need_an_anime_recommendation_with_a_similar_plot/gikidz7/;1610169812;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610132021;moderator;False;{};gikiqib;False;t3_kt8z4s;False;True;t3_kt8z4s;/r/anime/comments/kt8z4s/what_anime_is_this/gikiqib/;1610170013;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Zinek-Karyn;;;[];;;;text;t2_ylaskxo;False;False;[];;The character moments are but not exactly the same background and time period. For example the moment he’s in school he’s not at a desk with a window in the show he’s in a dojo. Just google life of zoro one piece I’m sure someone did a big old YouTube video about him and you’ll see the parallels;False;False;;;;1610132023;;False;{};gikiqop;False;t3_kt8tt2;False;True;t1_gikidz7;/r/anime/comments/kt8tt2/need_an_anime_recommendation_with_a_similar_plot/gikiqop/;1610170015;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610132030;moderator;False;{};gikirag;False;t3_kt8z8a;False;True;t3_kt8z8a;/r/anime/comments/kt8z8a/give_me_all_that_amazing_ass_anime_music_openings/gikirag/;1610170024;1;False;False;anime;t5_2qh22;;0;[]; -[];;;VaNd3n1S;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_5rzpwzfv;False;False;[];;I'm actually watching a classic by your standarts right now, gurren Lagaan. A person told me it's really similiar too darling in the franxx but I see no resemblance. Well yes it is a mecha Anime, but rhat doesn't mean they're the same. Except the opening, the openings are wayyyyyy to fking similiar.;False;False;;;;1610132034;;False;{};gikirmm;False;t3_kt7djy;False;True;t1_gikibxe;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikirmm/;1610170030;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Karma110;;;[];;;;text;t2_1q9bre0q;False;False;[];;Yo this adaptation man holy shit;False;False;;;;1610132093;;False;{};gikiwl4;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikiwl4/;1610170105;63;True;False;anime;t5_2qh22;;0;[]; -[];;;Naylen_2244;;;[];;;;text;t2_8opznvba;False;False;[];;Noragami op’s go hard;False;False;;;;1610132098;;False;{};gikiwyx;False;t3_kt8z8a;False;True;t3_kt8z8a;/r/anime/comments/kt8z8a/give_me_all_that_amazing_ass_anime_music_openings/gikiwyx/;1610170111;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ioxem;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Loxem/;light;text;t2_3pjj7qvf;False;False;[];;It's more of a short look on how Zoro's story could be displayed if One Piece was set in the modern day.;False;False;;;;1610132125;;False;{};gikiz7u;False;t3_kt8tt2;False;True;t1_gikidz7;/r/anime/comments/kt8tt2/need_an_anime_recommendation_with_a_similar_plot/gikiz7u/;1610170147;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZigomarTS2;;;[];;;;text;t2_4qg37k26;False;False;[];;Yes a very good anime in my top 5 of 2018;False;False;;;;1610132143;;False;{};gikj0op;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gikj0op/;1610170171;3;True;False;anime;t5_2qh22;;0;[]; -[];;;beyziiscrazy;;;[];;;;text;t2_5h3vpbns;False;False;[];;Lost in Paradise from the anime Jujutsu Kaisen;False;False;;;;1610132264;;False;{};gikjaoc;False;t3_kt8z8a;False;True;t3_kt8z8a;/r/anime/comments/kt8z8a/give_me_all_that_amazing_ass_anime_music_openings/gikjaoc/;1610170334;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;I love Gurren Lagann but it’s a completely different beast from Franxx that’s a bizarre recommendation. If you mecha that’s has closer feel to Franxx I would recommend Eureka Seven instead;False;False;;;;1610132278;;False;{};gikjbtk;True;t3_kt7djy;False;True;t1_gikirmm;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikjbtk/;1610170352;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bha7kar;;;[];;;;text;t2_7cirupt8;False;False;[];;That's a clickbait, you will know when you watch;False;False;;;;1610132308;;False;{};gikje8u;False;t3_kt6j2z;False;False;t1_gik5k2q;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gikje8u/;1610170391;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Stratus_254;;;[];;;;text;t2_9j48dp46;False;False;[];;The first re zero op, shinzou wo sasageyo from aot,and the second hxh ending, just to name a few good ops and eds;False;False;;;;1610132359;;False;{};gikjij5;False;t3_kt8z8a;False;True;t3_kt8z8a;/r/anime/comments/kt8z8a/give_me_all_that_amazing_ass_anime_music_openings/gikjij5/;1610170462;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;Attack on Titan ED 6 is something else;False;False;;;;1610132395;;False;{};gikjlj4;False;t3_kt8z8a;False;True;t3_kt8z8a;/r/anime/comments/kt8z8a/give_me_all_that_amazing_ass_anime_music_openings/gikjlj4/;1610170510;2;True;False;anime;t5_2qh22;;0;[]; -[];;;VaNd3n1S;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_5rzpwzfv;False;False;[];;I just like trigger, so I'm binging everything they release. No thank you, I watched darliFra and it gave me Post-Anime depression syndrome, and I still haven't fully recovered even though I watched 3 fking seasons of saiki k. Like, that's bizzare, even saiki k wasn't able to cure me. That's how depression is cured right? You watch saiki k?;False;False;;;;1610132421;;False;{};gikjnou;False;t3_kt7djy;False;True;t1_gikjbtk;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikjnou/;1610170546;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GenkiSam123;;;[];;;;text;t2_ad4s9yi;False;False;[];;The eyes were kind of scary :-o Nothing particularly “bad” plot/character-wise pretty par for the course and unoriginal in terms of idol animes so far. That mocap/hololive live acting style is pretty intriguing though. What surprised at how not that cringy that was other than the empty eyes but hey, new technology. Will stick around to see what else they do with it.;False;False;;;;1610132421;;False;{};gikjnqv;False;t3_kt5lad;False;False;t3_kt5lad;/r/anime/comments/kt5lad/idolls_episode_1_discussion/gikjnqv/;1610170547;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Re:Life spoils the ending of Re:Zero so you should watch that after, before re:zero you have to watch Fate/Zero too to get the MC's backstory then for Re:Creators its an alternate time line for Re:Zero it's recommended to watch it before Ep 69 of the Re series /s;False;False;;;;1610132425;;False;{};gikjo1g;False;t3_kt6wyh;False;True;t3_kt6wyh;/r/anime/comments/kt6wyh/re_series_watch_order_guide/gikjo1g/;1610170551;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;Goat Geass. One of the best anime of all time imo and my favorite mc.;False;False;;;;1610132451;;False;{};gikjq7b;False;t3_kt7qbe;False;False;t3_kt7qbe;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gikjq7b/;1610170588;10;True;False;anime;t5_2qh22;;0;[]; -[];;;ExplorersxMuse;;;[];;;;text;t2_6qa2gbdc;False;False;[];;Cop Craft. Highly underrated OP[Rakuen Toshi](https://youtu.be/ImE5s4QIglc);False;False;;;;1610132467;;False;{};gikjrhm;False;t3_kt8z8a;False;True;t3_kt8z8a;/r/anime/comments/kt8z8a/give_me_all_that_amazing_ass_anime_music_openings/gikjrhm/;1610170609;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;dark;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610132475;moderator;False;{};gikjs3n;False;t3_kt951d;False;True;t3_kt951d;/r/anime/comments/kt951d/does_anyone_know_what_animehentai_this_is_from/gikjs3n/;1610170619;1;False;False;anime;t5_2qh22;;0;[]; -[];;;PreludeToHell;;;[];;;;text;t2_yec5f;False;False;[];;"[2.43 Seiin Koukou Danshi Volley-bu op](https://www.youtube.com/watch?v=CLZBJb1zeU0) - -[Back Arrow op](https://www.youtube.com/watch?v=n0NlM4541Zw) - -two new ones that stood out to me";False;False;;;;1610132502;;False;{};gikjudz;False;t3_kt8z8a;False;True;t3_kt8z8a;/r/anime/comments/kt8z8a/give_me_all_that_amazing_ass_anime_music_openings/gikjudz/;1610170664;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jay4792;;;[];;;;text;t2_3pymzetn;False;False;[];;Around 24 episodes during one piece marineford arc but now only 2 or 3 episodes;False;False;;;;1610132503;;False;{};gikjuen;False;t3_kt66x2;False;True;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gikjuen/;1610170664;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;[To LOVE-Ru](https://myanimelist.net/anime/3455);False;False;;;;1610132509;;False;{};gikjuxt;False;t3_kt951d;False;True;t3_kt951d;/r/anime/comments/kt951d/does_anyone_know_what_animehentai_this_is_from/gikjuxt/;1610170675;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;Nope actually haven’t seen that show;False;False;;;;1610132513;;False;{};gikjv8p;True;t3_kt7djy;False;True;t1_gikjnou;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikjv8p/;1610170682;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hajimeri;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Montrachet;light;text;t2_ap99cz2;False;False;[];;"Spice and Wolf - -A Certain Scientific Railgun - -crazy how its been 12 years huh";False;False;;;;1610132571;;False;{};gikjzys;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikjzys/;1610170759;3;True;False;anime;t5_2qh22;;0;[]; -[];;;VaNd3n1S;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_5rzpwzfv;False;False;[];;If you ever get PADS now you know how to cure it! Just drink a, shit ton of water and watch saiki k.;False;False;;;;1610132574;;False;{};gikk07y;False;t3_kt7djy;False;True;t1_gikjv8p;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikk07y/;1610170763;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;"There are people who consider pre-2009 anime to be ""retro""?? Hahahahaha please, *please* tell me you are joking. - -Retro anime usually refers to pre-2000s cel animation. There's is no distinct difference between 2000-2009 and current anime after all, they were both made in the digital era. - -Favorite **actual** retro anime (pre-2000s) - -Gundam compilation trilogy -Urusei Yatsura and everything Mamoru Oshii directed -Gunbuster -Patlabor -Macross DYRL and Macross Plus -Golden Boy -Ghost in the Shell 1995 -Perfect Blue -Anything from Hayao Miyazaki/Ghibli -Yokohama Kaidashi Kikou";False;False;;;;1610132577;;False;{};gikk0fy;False;t3_kt7djy;False;False;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikk0fy/;1610170766;3;True;False;anime;t5_2qh22;;0;[]; -[];;;CartoonGirlSimp;;;[];;;;text;t2_9khdmxwi;False;False;[];;thanks for the sauce, time to whip my stick out;False;False;;;;1610132582;;False;{};gikk0w0;True;t3_kt951d;False;True;t1_gikjuxt;/r/anime/comments/kt951d/does_anyone_know_what_animehentai_this_is_from/gikk0w0/;1610170773;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;Ok I’ll take that into consideration in the future;False;False;;;;1610132635;;False;{};gikk5az;True;t3_kt7djy;False;True;t1_gikk07y;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikk5az/;1610170844;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Emi_Ibarazakiii;;;[];;;;text;t2_5kgc4v9;False;False;[];;"Not a lot of comments, guessing the animation style turned a lot of people off. - -Well, personally I don't care about that stuff (I barely notice animation style, and whether it's good or bad), but idol shows aren't really my thing, so we'll see... - -Still, it's a short, and the girls were cute/fun. I liked the last song too. - -[She's my favorite](https://imgur.com/CblVHIw) so far! Liked how she [makes fun of them](https://imgur.com/RCeo2RJ) and all that. Ruka was fine too. Basically I think I liked them all except the leader maybe. - -I'll probably check out another episode, see what it's like.";False;False;;;;1610132826;;False;{};gikkkqo;False;t3_kt5lad;False;True;t3_kt5lad;/r/anime/comments/kt5lad/idolls_episode_1_discussion/gikkkqo/;1610171095;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Karma110;;;[];;;;text;t2_1q9bre0q;False;False;[];;Why is a Japanese person calling someone best friend in broken English so hype?;False;False;;;;1610132841;;False;{};gikklw0;False;t3_kt75px;False;False;t1_gik8uxp;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikklw0/;1610171115;52;True;False;anime;t5_2qh22;;0;[]; -[];;;crazy_earl_;;;[];;;;text;t2_4jt5ph5c;False;False;[];;Oooo i watched noragami back before i was completely absorbed into anime and didn’t like the music. Now im excited asf;False;False;;;;1610132894;;False;{};gikkq50;True;t3_kt8z8a;False;False;t1_gikiwyx;/r/anime/comments/kt8z8a/give_me_all_that_amazing_ass_anime_music_openings/gikkq50/;1610171184;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Karma110;;;[];;;;text;t2_1q9bre0q;False;False;[];;He said he was going to be in the second season on Twitter.;False;False;;;;1610132931;;False;{};gikkt15;False;t3_kt75px;False;False;t1_gikdtm3;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikkt15/;1610171229;3;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi alawsman, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610132944;moderator;False;{};gikku4g;False;t3_kt9b65;False;True;t3_kt9b65;/r/anime/comments/kt9b65/should_i_read_the_manga_of_bloom_into_you_after/gikku4g/;1610171245;0;False;False;anime;t5_2qh22;;0;[]; -[];;;Urameshi9762;;;[];;;;text;t2_8egcx3r9;False;False;[];;Of course, because all the animes are made by the same staff, I don't know who is more stupid if you 2 or the same monkeys who repeat the same shit on twitter.;False;False;;;;1610132944;;False;{};gikku5c;False;t3_kt75px;False;False;t1_gikdqri;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikku5c/;1610171247;11;True;False;anime;t5_2qh22;;0;[]; -[];;;kadenzm;;;[];;;;text;t2_4gqbw6fv;False;False;[];;I read the manga and the ending was very suprising;False;False;;;;1610132988;;False;{};gikkxoi;False;t3_kt9b65;False;True;t3_kt9b65;/r/anime/comments/kt9b65/should_i_read_the_manga_of_bloom_into_you_after/gikkxoi/;1610171303;3;True;False;anime;t5_2qh22;;0;[]; -[];;;vonov129;;;[];;;;text;t2_20el2rr3;False;False;[];;"To think that someday in the future someone will ask the same question and the answers will contain anime that is just airing today. - -Anyway, Serial Experiments Lain (1998)";False;False;;;;1610132996;;False;{};gikkydo;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikkydo/;1610171315;2;True;False;anime;t5_2qh22;;0;[]; -[];;;crazy_earl_;;;[];;;;text;t2_4jt5ph5c;False;False;[];;Lmao at first i was like “hmm nice” but then i was like “omfg this shit hits different”;False;False;;;;1610133036;;False;{};gikl1ks;True;t3_kt8z8a;False;True;t1_gikjlj4;/r/anime/comments/kt8z8a/give_me_all_that_amazing_ass_anime_music_openings/gikl1ks/;1610171375;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crazy_earl_;;;[];;;;text;t2_4jt5ph5c;False;False;[];;First 25 seconds already told me im adding it to my playlist;False;False;;;;1610133117;;False;{};gikl84h;True;t3_kt8z8a;False;True;t1_gikjrhm;/r/anime/comments/kt8z8a/give_me_all_that_amazing_ass_anime_music_openings/gikl84h/;1610171481;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nanaten;;;[];;;;text;t2_8erp878f;False;False;[];;I wrote a bible just to realize that you were not talking about Btooom!;False;False;;;;1610133119;;False;{};gikl8b0;False;t3_kt9b65;False;True;t3_kt9b65;/r/anime/comments/kt9b65/should_i_read_the_manga_of_bloom_into_you_after/gikl8b0/;1610171484;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;All we were saying is that it isnt normal for a studio to take on multiple large projects at the same time.;False;True;;comment score below threshold;;1610133119;;False;{};gikl8bi;False;t3_kt75px;False;True;t1_gikku5c;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikl8bi/;1610171485;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;WrickyB;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;Custom list link;dark;text;t2_ydllb;False;False;[];;No, because they're games and not shows.;False;False;;;;1610133152;;False;{};giklayn;False;t3_kt9d3g;False;True;t3_kt9d3g;/r/anime/comments/kt9d3g/is_gacha_videos_considered_anime/giklayn/;1610171526;2;True;False;anime;t5_2qh22;;0;[]; -[];;;muwatali;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/marcus_a;light;text;t2_8boqxhex;False;False;[];;Battle Girls: Time Paradox has a good catchy ED;False;False;;;;1610133203;;False;{};giklf5r;False;t3_kt8z8a;False;False;t3_kt8z8a;/r/anime/comments/kt8z8a/give_me_all_that_amazing_ass_anime_music_openings/giklf5r/;1610171591;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MJayDee82;;;[];;;;text;t2_sm9bq;False;False;[];;I'm stuck at work for another couple hours before I can watch it, but I'm glad I once again get a weekly dose of Cute Girls Doing Suffering things again!;False;False;;;;1610133280;;False;{};gikllhd;False;t3_kt7bpo;False;False;t3_kt7bpo;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gikllhd/;1610171693;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;"Sorry, your submission has been removed. - -- This doesn't appear to be about [anime per our definition](https://www.reddit.com/r/anime/wiki/rules#wiki_everything_posted_here_must_be_anime_specific). - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610133322;moderator;False;{};giklovn;False;t3_kt9d3g;False;True;t3_kt9d3g;/r/anime/comments/kt9d3g/is_gacha_videos_considered_anime/giklovn/;1610171745;0;True;False;anime;t5_2qh22;;0;[]; -[];;;alawsman;;;[];;;;text;t2_30g93e42;False;False;[];;omg im so sorry!!;False;False;;;;1610133348;;False;{};giklr15;True;t3_kt9b65;False;True;t1_gikl8b0;/r/anime/comments/kt9b65/should_i_read_the_manga_of_bloom_into_you_after/giklr15/;1610171780;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;I can see it in 15 years someone will say there favorite retro anime is Something random like Attack on Titan or Demon Slayer;False;False;;;;1610133363;;False;{};gikls8w;True;t3_kt7djy;False;True;t1_gikkydo;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikls8w/;1610171798;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CpnLag;;;[];;;dark;text;t2_lk08y;False;False;[];;">EDIT: For those of you who think 2009 is too recent let me remind you that 2009 was 12 years - -2009 was too recent";False;False;;;;1610133370;;False;{};giklsv8;False;t3_kt7djy;False;False;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/giklsv8/;1610171807;4;True;False;anime;t5_2qh22;;0;[]; -[];;;parzi_3;;;[];;;;text;t2_7kt8xwsd;False;False;[];;Nah, because even if it's in a chibish anime art style it's not hand-drawn, it's a game, and not professionally animated (no offense gacha players);False;False;;;;1610133371;;False;{};giklsxg;False;t3_kt9d3g;False;True;t3_kt9d3g;/r/anime/comments/kt9d3g/is_gacha_videos_considered_anime/giklsxg/;1610171808;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FarrelMFajar;;;[];;;;text;t2_13bxx0;False;False;[];;"You know it's post-Okada WIXOSS when: - -* The whole system is arbitrary and will remain unexplained until end of season - -* Tries to incorporate real cards to sell packs and starter decks - -* Newbie hunter with ""I'm a bully"" personality - -* Main character won by topdecking - -* Lures viewers with ""look at me! I'm dark! Watch me please!""";False;False;;;;1610133397;;False;{};giklv1x;False;t3_kt7bpo;False;False;t3_kt7bpo;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/giklv1x/;1610171842;4;True;False;anime;t5_2qh22;;0;[]; -[];;;alawsman;;;[];;;;text;t2_30g93e42;False;False;[];;ok i'm getting real curious now! do you think there will be a season 2?;False;False;;;;1610133402;;False;{};giklvei;True;t3_kt9b65;False;True;t1_gikkxoi;/r/anime/comments/kt9b65/should_i_read_the_manga_of_bloom_into_you_after/giklvei/;1610171848;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Regulus1947;;;[];;;;text;t2_8t8i9s3y;False;False;[];;"The seasons die off one by one/Kisetsu wa tsugitsugi shindeiku :- Tokyo Ghoul √A ed. - -Shinzou wo sasageyo :- Attack on Titan S2 op. - -Alive :- Naruto S1 op1. - -Sihouette :- Naruto Shippuden op. - -Guren no Yumiya :- Attack on Titan op1. - -All Naruto background themes (loneliness, sadness and sorrow, senya etc). - -A cruel angels thesis :- Neon Genesis Evanglion op. - -Hikaru nara :- Your lie in April op. - -Lilium :- Elfen Lied op. - -Hacking to the gate :- Stein's;Gate op - -The following are not ed/op. - -All songs in Your Name ( Sparkle, Nandemonaiya, Kataware-doki etc). - -All songs in Weathering with you (Daijoubu, Grand Escape etc). - -Friend A, Orange, My lie, my truth :- Your lie in April. - -Speak, Next to you :-. Parasyte: the maxim. - -Kokoronashi, Hated by life itself :- not from anime, but still worth hearing.";False;False;;;;1610133420;;False;{};giklwzk;False;t3_kt8z8a;False;True;t3_kt8z8a;/r/anime/comments/kt8z8a/give_me_all_that_amazing_ass_anime_music_openings/giklwzk/;1610171874;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;Let’s just agree to disagree;False;False;;;;1610133445;;False;{};giklyzz;True;t3_kt7djy;False;True;t1_giklsv8;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/giklyzz/;1610171905;1;True;False;anime;t5_2qh22;;0;[]; -[];;;crazy_earl_;;;[];;;;text;t2_4jt5ph5c;False;False;[];;I should’ve mentioned the aot opening lmao that shit is one of the best;False;False;;;;1610133446;;False;{};giklz37;True;t3_kt8z8a;False;True;t1_gikjij5;/r/anime/comments/kt8z8a/give_me_all_that_amazing_ass_anime_music_openings/giklz37/;1610171907;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Agreeable-Highlight;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/STARFLIGHT1111/;light;text;t2_2xajbknh;False;False;[];;"First off, thank you for all your hard work on this quite long and detailed post. It was a really interesting read, and I now have a long list of music videos to watch! - -Secondly, I just wanted to let you know that YouTube says the Baby I Love You Daze video you linked is unavailable.";False;False;;;;1610133459;;False;{};gikm07r;False;t3_kt88z3;False;False;t3_kt88z3;/r/anime/comments/kt88z3/animated_music_videos_2020/gikm07r/;1610171925;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;No, just the first Gundam series since it was recently added to Funimation. I'm not prepared to host a rewatch of the *entire* franchise or even just of mainline UC.;False;False;;;;1610133484;;False;{};gikm26x;False;t3_kt7djy;False;False;t1_gikhxdx;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikm26x/;1610171955;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cornbread3600;;;[];;;;text;t2_52wl70ko;False;False;[];;Theres a dude on YouTube called CHEFPK and he cooks food from anime, shokugeki included.;False;False;;;;1610133675;;False;{};gikmhtc;False;t3_kt9dkq;False;False;t3_kt9dkq;/r/anime/comments/kt9dkq/anime_food_for_real/gikmhtc/;1610172208;5;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610133684;moderator;False;{};gikmijm;False;t3_kt9khc;False;True;t3_kt9khc;/r/anime/comments/kt9khc/what_anime_is_this/gikmijm/;1610172219;1;False;False;anime;t5_2qh22;;0;[]; -[];;;crazy_earl_;;;[];;;;text;t2_4jt5ph5c;False;False;[];;Holy shit that’s a lot thank you lol;False;False;;;;1610133689;;False;{};gikmj01;True;t3_kt8z8a;False;True;t1_giklwzk;/r/anime/comments/kt8z8a/give_me_all_that_amazing_ass_anime_music_openings/gikmj01/;1610172226;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thesanmich;;;[];;;;text;t2_de43k;False;False;[];;Looks amazing!;False;False;;;;1610133715;;False;{};gikml56;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikml56/;1610172262;8;True;False;anime;t5_2qh22;;0;[]; -[];;;MejaBersihBanget;;;[];;;;text;t2_4a6wkvny;False;False;[];;Goro Taniguchi's last 24-episode original anime wasn't that great (Active Raid).;False;False;;;;1610133720;;False;{};gikmll6;False;t3_kt5ab0;False;True;t1_gijvtbt;/r/anime/comments/kt5ab0/original_tv_anime_back_arrow_is_listed_with_a/gikmll6/;1610172270;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Samuawesome;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EroMangaFan;light;text;t2_16ero1;False;False;[];;Daily lives of high school boys;False;False;;;;1610133723;;False;{};gikmlua;False;t3_kt9khc;False;True;t3_kt9khc;/r/anime/comments/kt9khc/what_anime_is_this/gikmlua/;1610172274;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CapClock;;;[];;;;text;t2_65r4x74g;False;False;[];;"One Piece - - -Yes it’s popular, yes people prejudged it, even i did at one point and i even said i would never watch it. But after watching it’s the best experience i’ve ever had consuming any form of media";False;False;;;;1610133731;;False;{};gikmmfs;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikmmfs/;1610172283;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Naylen_2244;;;[];;;;text;t2_8opznvba;False;False;[];;Try gto great teacher onizuka;False;False;;;;1610133744;;False;{};gikmnhv;False;t3_kt8z8a;False;True;t1_gikkq50;/r/anime/comments/kt8z8a/give_me_all_that_amazing_ass_anime_music_openings/gikmnhv/;1610172300;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;"The Promised Neverland - -Sora yori mo Tooi Basho - -Yuru Camp - -Fullmetal Alchemist Brotherhood - -Hunter x Hunter 2011 - -Haikyuu - -Mahou Shoujo Madoka Magica - -Psycho-Pass - -Banana Fish - -Vinland Saga - -Death Parade";False;False;;;;1610133783;;False;{};gikmqq6;False;t3_kt8z8a;False;True;t3_kt8z8a;/r/anime/comments/kt8z8a/give_me_all_that_amazing_ass_anime_music_openings/gikmqq6/;1610172355;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Puddo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Puddo/animelist;light;text;t2_8uro4;False;False;[];;Ah thanks for the heads up. Guess I linked to the old version. It should work now.;False;False;;;;1610133789;;False;{};gikmr9p;True;t3_kt88z3;False;True;t1_gikm07r;/r/anime/comments/kt88z3/animated_music_videos_2020/gikmr9p/;1610172364;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Regulus1947;;;[];;;;text;t2_8t8i9s3y;False;False;[];;No prob, keep finding more gems :);False;False;;;;1610133809;;False;{};gikmswg;False;t3_kt8z8a;False;True;t1_gikmj01;/r/anime/comments/kt8z8a/give_me_all_that_amazing_ass_anime_music_openings/gikmswg/;1610172389;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CapClock;;;[];;;;text;t2_65r4x74g;False;False;[];;Depends if you like sub or dub more, crunchyroll doesn’t have many dubs, but as a platform it’s way better. And funimation has dubs but you don’t get as much as crunchyroll;False;False;;;;1610133843;;False;{};gikmvqz;False;t3_kt7bby;False;True;t3_kt7bby;/r/anime/comments/kt7bby/what_should_i_get/gikmvqz/;1610172433;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610133876;;False;{};gikmyj7;False;t3_kt7bby;False;True;t3_kt7bby;/r/anime/comments/kt7bby/what_should_i_get/gikmyj7/;1610172476;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi BrutalBane, your post has been removed because it links to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610133876;moderator;False;{};gikmyks;False;t3_kt7bby;False;True;t1_gikmyj7;/r/anime/comments/kt7bby/what_should_i_get/gikmyks/;1610172476;1;False;False;anime;t5_2qh22;;0;[]; -[];;;ScarRufus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ScarRufus;light;text;t2_2u0vy1pk;False;False;[];;10/10 for sure.;False;False;;;;1610133973;;False;{};gikn6jb;False;t3_kt7qbe;False;False;t3_kt7qbe;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gikn6jb/;1610172604;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Nanaten;;;[];;;;text;t2_8erp878f;False;False;[];;Why would you sorry if it was clearly my fault XD;False;False;;;;1610134031;;False;{};giknb9d;False;t3_kt9b65;False;True;t1_giklr15;/r/anime/comments/kt9b65/should_i_read_the_manga_of_bloom_into_you_after/giknb9d/;1610172678;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello PMIMH, your post has been removed because posts without a detailed body of text are considered low-effort and are not allowed. You're welcome to amend your post and resubmit it. - -Not sure what to say? If you're posting a discussion post or question, consider answering your own question or providing some discussion starters. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610134062;moderator;False;{};gikndvh;False;t3_kt9pn1;False;True;t3_kt9pn1;/r/anime/comments/kt9pn1/is_there_a_way_to_find_an_anime_through_the_names/gikndvh/;1610172723;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Legendseekersiege5;;;[];;;;text;t2_5nio4gd;False;False;[];;Is this a TOURNAMENT ARC???;False;False;;;;1610134161;;False;{};giknm3g;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/giknm3g/;1610172850;13;True;False;anime;t5_2qh22;;0;[]; -[];;;unkri;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/unkri;light;text;t2_12o64r;False;False;[];;I'd say only the first part is worth watching, the rest is... average at best, it was very dissapointing for me, but depends on the person, you may like it.;False;False;;;;1610134170;;False;{};giknmwr;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/giknmwr/;1610172862;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;if youre mildly interested, we live in a world where watching anime is easy, watch first episode or 2 and u will know if its worth watching;False;False;;;;1610134222;;False;{};giknr87;False;t3_kt6j2z;False;False;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/giknr87/;1610172926;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;[Character search on MyAnimeList](https://myanimelist.net/character.php) or [Anime Character Database](https://www.animecharactersdatabase.com).;False;False;;;;1610134306;;False;{};gikny2e;False;t3_kt9pn1;False;True;t3_kt9pn1;/r/anime/comments/kt9pn1/is_there_a_way_to_find_an_anime_through_the_names/gikny2e/;1610173036;1;True;False;anime;t5_2qh22;;0;[]; -[];;;alawsman;;;[];;;;text;t2_30g93e42;False;False;[];;lmaooo;False;False;;;;1610134373;;False;{};giko3hm;True;t3_kt9b65;False;True;t1_giknb9d;/r/anime/comments/kt9b65/should_i_read_the_manga_of_bloom_into_you_after/giko3hm/;1610173124;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PeterGriffenttv;;;[];;;;text;t2_5gvxyq1r;False;False;[];;At least bleach is gonna come back lol;False;False;;;;1610134397;;False;{};giko5hb;False;t3_kt8507;False;True;t1_gikfsuf;/r/anime/comments/kt8507/ayo_people_i_have_a_quick_question_about_red_eyes/giko5hb/;1610173154;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610134398;;False;{};giko5ix;False;t3_kt9pn1;False;True;t1_gikny2e;/r/anime/comments/kt9pn1/is_there_a_way_to_find_an_anime_through_the_names/giko5ix/;1610173155;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sahilvenkat;;;[];;;;text;t2_6lvir1yb;False;False;[];;My hero academia s3 op1;False;False;;;;1610134482;;False;{};gikocei;False;t3_kt8z8a;False;True;t3_kt8z8a;/r/anime/comments/kt8z8a/give_me_all_that_amazing_ass_anime_music_openings/gikocei/;1610173261;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Urameshi9762;;;[];;;;text;t2_8egcx3r9;False;False;[];;"It is something super normal for an animation studio to work on several projects at the same time, this is how this works, they hire different staff, is that good? I don't know, I just enjoy what a studio offers me. -I would not go as a hypocrite criticizing either, I did not do it before and I will not do it now";False;False;;;;1610134487;;False;{};gikocro;False;t3_kt75px;False;False;t1_gikl8bi;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikocro/;1610173267;9;True;False;anime;t5_2qh22;;0;[]; -[];;;DMking;;;[];;;;text;t2_8buww;False;False;[];;I almost forgot how much i loved Kyoto Goodwill during the manga. This animations is gonna be amazing;False;False;;;;1610134514;;False;{};gikof1a;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikof1a/;1610173303;13;True;False;anime;t5_2qh22;;0;[]; -[];;;DMking;;;[];;;;text;t2_8buww;False;False;[];;Yes.;False;False;;;;1610134541;;False;{};gikohbc;False;t3_kt75px;False;False;t1_giknm3g;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikohbc/;1610173337;5;True;False;anime;t5_2qh22;;0;[]; -[];;;The-Last-Lion-Turtle;;;[];;;;text;t2_3ql3azqo;False;False;[];;"Steins gate is an interesting one. - -The anime is a puzzle. Looking forward you can’t predict much, but looking back it all starts to piece together.";False;False;;;;1610134553;;False;{};gikoic0;False;t3_kt6fin;False;True;t3_kt6fin;/r/anime/comments/kt6fin/recommendations_for_a_newbie/gikoic0/;1610173353;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Peachykinz;;;[];;;;text;t2_5foyvjus;False;False;[];;Kinda yes, kinda no;False;False;;;;1610134595;;False;{};gikolsf;False;t3_kt75px;False;False;t1_giknm3g;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikolsf/;1610173405;29;True;False;anime;t5_2qh22;;0;[]; -[];;;SpaceMarine_CR;;;[];;;;text;t2_1la1dh3q;False;False;[];;2 years? Holy shit time moves fast;False;False;;;;1610134615;;False;{};gikong1;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gikong1/;1610173430;2;True;False;anime;t5_2qh22;;0;[]; -[];;;metehandemirtola;;;[];;;;text;t2_81gl0was;False;False;[];;"The god of highschool op -Hellsing op -Drifters op -Overlord s3 op -Goblin slayer op";False;False;;;;1610134692;;False;{};gikotr6;False;t3_kt8z8a;False;True;t3_kt8z8a;/r/anime/comments/kt8z8a/give_me_all_that_amazing_ass_anime_music_openings/gikotr6/;1610173527;1;True;False;anime;t5_2qh22;;0;[]; -[];;;technardo08;;;[];;;;text;t2_69sxhi4z;False;False;[];;The fact that people still talk about it more than 10 years later is proof itself of how good it is.;False;False;;;;1610134774;;False;{};gikp09z;False;t3_kt7qbe;False;False;t3_kt7qbe;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gikp09z/;1610173636;11;True;False;anime;t5_2qh22;;0;[]; -[];;;jojoismyreligion;;;[];;;;text;t2_5j56wzq4;False;False;[];;6-7 episodes at max and even that's on days I have a lot of free time. I just can't watch too much of anything.;False;False;;;;1610134869;;False;{};gikp83j;False;t3_kt66x2;False;True;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gikp83j/;1610173760;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;"In my opinion in Goblin Slayer the change of timeline in the anime compared to the manga was beneficial for the MC's development. But might be just me, I liked both equally. - -""Beautiful to watch"" indeed, not because of the animation quality, but for many other things.";False;False;;;;1610134998;;False;{};gikpiio;False;t3_kt8507;False;True;t1_gikg251;/r/anime/comments/kt8507/ayo_people_i_have_a_quick_question_about_red_eyes/gikpiio/;1610173929;0;True;False;anime;t5_2qh22;;0;[]; -[];;;panosk1304;;;[];;;;text;t2_19qvhtzg;False;False;[];;Its a masterpiece to say the least with the best ending i have seen in anything. Ok maybe art isnt as great cause the long arm/legs but man such good jp vas and story. Deathnote arc1 was amazing and masterpiece and maybe looks better cause the less episode it took to finish it but unfortunately arc2 and ending weren't that good but still great anime.;False;False;;;;1610135038;;False;{};gikplm5;False;t3_kt7qbe;False;True;t3_kt7qbe;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gikplm5/;1610173978;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mr_sto0pid;;;[];;;dark;text;t2_13ckn3;False;True;[];;Is that a bad thing?;False;False;;;;1610135156;;False;{};gikpvcs;False;t3_kt4a31;False;True;t1_gijtyvp;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gikpvcs/;1610174136;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gamerunglued;;MAL a-1milquiz;[];;https://myanimelist.net/profile/GamerUnglued;dark;text;t2_o5l12x;False;True;[];;"I don't think 12 years is old by media standards. It's not new, but I wouldn't call it old or retro either. I feel like 20 years is closer to where that would start. But by your standard, top 10 old anime: - -1. K-On! (2009) -2. Clannad (2007) -3. Aria (2005) -4. Fullmetal Alchemist Brotherhood (2009) -5. Serial Experiments Lain (1998) -6. Toradora (2008) -7. Monogatari series (2009) -8. Baccano (2007) -9. Neon Genesis Evangelion (1995) -10. Nana (2006)";False;False;;;;1610135183;;False;{};gikpxkv;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gikpxkv/;1610174169;1;True;False;anime;t5_2qh22;;0;[]; -[];;;find_me_on_jupiter;;;[];;;;text;t2_7rk9d2qd;False;False;[];;yes thank you!;False;False;;;;1610135194;;False;{};gikpyj4;True;t3_kt9d3g;False;True;t1_giklayn;/r/anime/comments/kt9d3g/is_gacha_videos_considered_anime/gikpyj4/;1610174184;1;True;False;anime;t5_2qh22;;0;[]; -[];;;find_me_on_jupiter;;;[];;;;text;t2_7rk9d2qd;False;False;[];;I agree!;False;False;;;;1610135204;;False;{};gikpze2;True;t3_kt9d3g;False;True;t1_giklsxg;/r/anime/comments/kt9d3g/is_gacha_videos_considered_anime/gikpze2/;1610174197;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Hailgod;;;[];;;;text;t2_86po8;False;False;[];;wow how dead is this anime?;False;False;;;;1610135396;;False;{};gikqfbw;False;t3_kt84wj;False;True;t3_kt84wj;/r/anime/comments/kt84wj/kings_raid_ishi_wo_tsugumonotachi_episode_15/gikqfbw/;1610174455;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;Most studios dont work on more than 3 projects at a time. Mappa is notorious for overworking their animators and reports of this haven't gone away. It doesn't matter if it looks good if the staff are abused.;False;True;;comment score below threshold;;1610135468;;False;{};gikql9b;False;t3_kt75px;False;True;t1_gikocro;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikql9b/;1610174564;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;find_me_on_jupiter;;;[];;;;text;t2_7rk9d2qd;False;False;[];;why;False;False;;;;1610135521;;False;{};gikqpm5;True;t3_kt9d3g;False;True;t1_giklovn;/r/anime/comments/kt9d3g/is_gacha_videos_considered_anime/gikqpm5/;1610174633;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Durinthal;;mal;[];;https://myanimelist.net/animelist/Durinthal;dark;text;t2_4iudi;False;True;[];;Because they're games, not animation. The /r/anime rules agree with you.;False;False;;;;1610135598;moderator;False;{};gikqvx2;False;t3_kt9d3g;False;True;t1_gikqpm5;/r/anime/comments/kt9d3g/is_gacha_videos_considered_anime/gikqvx2/;1610174738;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KnightHart00;;;[];;;;text;t2_107tdd;False;False;[];;Good time to invest in Miwa and Utahime stocks. Their time has finally come;False;False;;;;1610135619;;False;{};gikqxk8;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikqxk8/;1610174763;45;True;False;anime;t5_2qh22;;0;[]; -[];;;SamIAm54;;;[];;;;text;t2_3ds6kbuh;False;False;[];;I’m going have to check it out. Thanks friend;False;False;;;;1610135635;;False;{};gikqyye;True;t3_kt8507;False;True;t1_gikpiio;/r/anime/comments/kt8507/ayo_people_i_have_a_quick_question_about_red_eyes/gikqyye/;1610174786;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SamIAm54;;;[];;;;text;t2_3ds6kbuh;False;False;[];;Thanks;False;False;;;;1610135692;;False;{};gikr3ne;True;t3_kt8507;False;True;t1_gikhw67;/r/anime/comments/kt8507/ayo_people_i_have_a_quick_question_about_red_eyes/gikr3ne/;1610174858;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hellthrower;;MAL;[];;https://myanimelist.net/profile/Hellthrower;dark;text;t2_kguh4;False;False;[];;yes;False;False;;;;1610135729;;False;{};gikr6rk;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gikr6rk/;1610174904;2;True;False;anime;t5_2qh22;;0;[]; -[];;;drakon3rd;;;[];;;;text;t2_10vwyl;False;False;[];;"Yup, saw it last weekend and I REALLY liked it for some reason. Maybe the dynamic with the MC and gf. That and ReLIFE are definitely my favorite romcom/sol shows. - -The name was going to be why I wasn’t going to check it out until I saw some solid reviews and found out the name is basically clickbait-ish.";False;False;;;;1610135879;;False;{};gikrj0z;False;t3_kt6j2z;False;False;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gikrj0z/;1610175101;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;That was surprisingly charming. And only 8 minutes per episode, guess I am watching this.;False;False;;;;1610136003;;False;{};gikrt2b;False;t3_kt5lad;False;True;t3_kt5lad;/r/anime/comments/kt5lad/idolls_episode_1_discussion/gikrt2b/;1610175252;2;True;False;anime;t5_2qh22;;0;[]; -[];;;digbicks845;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;god ussop;dark;text;t2_12n6ju;False;False;[];;Wait till they find out shounen and seinen literally refer to the magazine they’re published in;False;False;;;;1610136023;;False;{};gikrukv;False;t3_kt4a31;False;True;t1_gik646d;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gikrukv/;1610175275;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;I haven't caught up and made it past the anime yet, but I *am* reading the manga now--because I *don't* think the show has a conclusive ending.;False;False;;;;1610136042;;False;{};gikrw64;False;t3_kt9b65;False;True;t3_kt9b65;/r/anime/comments/kt9b65/should_i_read_the_manga_of_bloom_into_you_after/gikrw64/;1610175302;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Buddy_Waters;;;[];;;;text;t2_qkttj;False;False;[];;I thought the novels were way better, but...novel fans always say that, so...;False;False;;;;1610136090;;False;{};giks01o;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/giks01o/;1610175361;3;True;False;anime;t5_2qh22;;0;[]; -[];;;oj_da_juiceman10;;;[];;;;text;t2_at2wb;False;False;[];;There are a lot of plot issues but its wildly entertaining. It also has a really good ending which is hard to come by in fiction it seems like.;False;False;;;;1610136297;;False;{};giksgng;False;t3_kt7qbe;False;False;t3_kt7qbe;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/giksgng/;1610175622;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Ominous_Strix;;;[];;;;text;t2_3km5xr5i;False;False;[];;Patlabor;False;False;;;;1610136509;;False;{};giksydb;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/giksydb/;1610175886;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mmodude101;;;[];;;;text;t2_7wha4;False;False;[];;If you like 1v1 fights yall are gonna love this arc;False;False;;;;1610136745;;False;{};gikthai;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikthai/;1610176185;19;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDampGod;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheDampGod;light;text;t2_im4vi;False;False;[];;Was one of the girls wearing a Nirvana T-shirt at the end there, never expected that in idol anime. Seems fun though the Hololive style mo-cap kept making me think that Marine was about to grab the camera and start lewding.;False;False;;;;1610136761;;False;{};giktio6;False;t3_kt5lad;False;True;t3_kt5lad;/r/anime/comments/kt5lad/idolls_episode_1_discussion/giktio6/;1610176208;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;"> retro - -> K-On! - -fml I think it was yesterday when K-On! killed anime";False;False;;;;1610136798;;False;{};giktlww;False;t3_kt7djy;False;True;t1_gik9uq3;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/giktlww/;1610176257;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LegendaryRQA;;;[];;;;text;t2_hszyq;False;False;[];;Yes but not over Haruhi, Monogatari, and Spice and Wolf if you haven't seen those.;False;False;;;;1610136819;;False;{};giktnnm;False;t3_kt6j2z;False;False;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/giktnnm/;1610176286;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sadly_streets_behind;;;[];;;;text;t2_2xhe6bg;False;False;[];;I personally don't have a limit. My wife and kids on the other hand...;False;False;;;;1610136883;;False;{};giktswl;False;t3_kt66x2;False;True;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/giktswl/;1610176371;2;True;False;anime;t5_2qh22;;0;[]; -[];;;xMasuraox;;HB;[];;http://hummingbird.me/users/Masurao;dark;text;t2_9ly9p;False;False;[];;I watched the first 50 and then dropped it for like a year for that same reason. If it makes you feel any better, I am now 340 episodes in and holy crap it just keeps getting better and better from that 50 ep mark. Gintama is now one of my favorite animes and Gintoki is one of my top 3 fav anime protags;False;False;;;;1610137700;;False;{};gikvnv9;False;t3_kt4a31;False;False;t1_gik5xj8;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gikvnv9/;1610177373;5;True;False;anime;t5_2qh22;;0;[]; -[];;;xMasuraox;;HB;[];;http://hummingbird.me/users/Masurao;dark;text;t2_9ly9p;False;False;[];;I am currently 340 episodes in and let me tell you, if Gintama is your favorite now, wait till you get to the 300s... it's incredibly good;False;False;;;;1610137802;;False;{};gikvwcx;False;t3_kt4a31;False;False;t3_kt4a31;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gikvwcx/;1610177497;9;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Loli_Otaku;;;[];;;;text;t2_t7kfd;False;True;[];;When I'm in a binging mood I watch anime in bundles of 7. Then again my go-to series tend to be 50 episode mecha or maho shoujo series that requires that kind of viewing schedule. Watch Sailor Moon once a day and your brain will rot.;False;False;;;;1610138026;;False;{};gikweni;False;t3_kt66x2;False;True;t3_kt66x2;/r/anime/comments/kt66x2/how_many_episode_can_you_binge_watch_in_one/gikweni/;1610177770;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Rasera;;;[];;;;text;t2_665iy;False;False;[];;"Watch the first three episodes; it's the arc that encompasses all of LN Volume 1. If that doesn't do it for you, the rest of the show won't, as the first 3 episodes are probably the highlight of the anime. - -Episodes 1 - 3 are fantastic, 4 - 6 are really good, ep 7 - 10 were a bit rushed, cramming 2 LN volumes into 4 episodes, but still a decent watch, and then it finishes strong with ep 11 - 13. - -The movie is a fantastic and very emotional rollercoaster, but requires watching the anime first. - -Bunny Girl is in my top 5 of anime watched, so I'd highly recommend it.";False;False;;;;1610138171;;False;{};gikwqak;False;t3_kt6j2z;False;False;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gikwqak/;1610177942;5;True;False;anime;t5_2qh22;;0;[]; -[];;;gopivot;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/gopivot;light;text;t2_7tclu;False;False;[];;"First thing first the OST is banger like always and just like other WIXOSS they didn't focus on the game itself too much but damn it's one certainly throw it out the video and just didn't really explain much of anything still that might be saved for next episode but that isn't bad per say it's always like this - -I guess it's kind of spin-off but I wonder if they gonna reference anything from the past series, I mean could see it become darker as it go on (the cheering point, selectors, it dark side of being Idol and stuff?) like other WIXOSS but I don't want to expect too much - -because one of the things is the characters in this episode is straight come out of a kid show (like characters in YGO Seven from the first episode might even have more dept than them) and this might be intentional maybe? I don't know - -I'll continue watching because I'm really curious how it's turnout though I don't think I'll be disappointed that much if it's turnout to be just a normal idol show as well";False;False;;;;1610138195;;False;{};gikws8v;False;t3_kt7bpo;False;False;t3_kt7bpo;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gikws8v/;1610177971;8;True;False;anime;t5_2qh22;;0;[]; -[];;;CordobezEverdeen;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/CordobezEverdeen;light;text;t2_158l81;False;False;[];;"If you like the current state of romance anime then ya. - -If you don't like how anime portrays romance. Well no.";False;False;;;;1610138257;;False;{};gikwx29;False;t3_kt6j2z;False;False;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gikwx29/;1610178055;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mopey_;;;[];;;;text;t2_7mvhxodj;False;False;[];;Shit has it actually been two years...;False;False;;;;1610138268;;False;{};gikwxyz;False;t3_kt6j2z;False;False;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gikwxyz/;1610178070;4;True;False;anime;t5_2qh22;;0;[]; -[];;;KaptainTZ;;skip7;[];;;dark;text;t2_9fhynbf5;False;False;[];;This interschool competition looks... not very friendly..;False;False;;;;1610138329;;False;{};gikx2od;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikx2od/;1610178153;5;True;False;anime;t5_2qh22;;0;[]; -[];;;El_grandepadre;;;[];;;;text;t2_5bikpicr;False;False;[];;I came here for one reason and that's brother supremacy.;False;False;;;;1610138547;;False;{};gikxk9x;False;t3_kt75px;False;False;t1_gik79ku;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikxk9x/;1610178427;24;True;False;anime;t5_2qh22;;0;[]; -[];;;L0G1C_lolilover;;;[];;;;text;t2_1mn4jph1;False;False;[];;"I m ready brother - -Jennifer Lawrence here i come!";False;False;;;;1610138574;;False;{};gikxmd8;False;t3_kt75px;False;False;t1_gikdo9r;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikxmd8/;1610178460;35;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;Final arc is a whole lot of mid, and was convoluted. The ending saved it, but all the geass magic plotlines were severely dissatisfying. 8/10 the rest is good.;False;False;;;;1610138644;;False;{};gikxs1f;False;t3_kt7qbe;False;True;t3_kt7qbe;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gikxs1f/;1610178545;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KaptainTZ;;skip7;[];;;dark;text;t2_9fhynbf5;False;False;[];;"Gintama's amazing - -It has an advantage over short shows because it's run for so many damn episodes - -It has an advantage over long series because it maintains a high quality xD";False;False;;;;1610138646;;False;{};gikxs81;False;t3_kt4a31;False;False;t3_kt4a31;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gikxs81/;1610178548;12;True;False;anime;t5_2qh22;;0;[]; -[];;;rmTizi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/rmTizi;light;text;t2_5hqlk;False;False;[];;Well, the story is finally picking up. I'm glad that I stuck with this show.;False;False;;;;1610138886;;False;{};gikybns;False;t3_kt84wj;False;False;t3_kt84wj;/r/anime/comments/kt84wj/kings_raid_ishi_wo_tsugumonotachi_episode_15/gikybns/;1610178844;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Brillux;;;[];;;;text;t2_vb5a4bd;False;False;[];;"I read the manga but if i hadn't, hearing ""Itadori Yuji"" and ""korosu"" in one sentence would make me go ""NANI?""";False;False;;;;1610138905;;False;{};gikyd4t;False;t3_kt75px;False;False;t1_gikx2od;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikyd4t/;1610178867;13;True;False;anime;t5_2qh22;;0;[]; -[];;;stephenthatfoste;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Rexagonal;light;text;t2_kqk1f;False;False;[];;"Thought they might have been exaggerating the proportions on the blonde girl for the promo art, but nope, that's what they're going with. - -Not sure what to expect from it, but whatever. I need a dumb idol show this season.";False;False;;;;1610138906;;False;{};gikyd7q;False;t3_kt7bpo;False;False;t3_kt7bpo;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gikyd7q/;1610178868;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;Mappa has been really killing it last year and they don't look like they are planning on stopping this year either;False;False;;;;1610138929;;False;{};gikyf47;False;t3_kt75px;False;False;t1_gik79ku;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikyf47/;1610178904;29;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;The animation felt even better then the last part which is pretty impressive;False;False;;;;1610138954;;False;{};gikyh2h;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikyh2h/;1610178936;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Urameshi9762;;;[];;;;text;t2_8egcx3r9;False;False;[];;dawg you have no idea what you are talking about, DAVID PRODUCTION HAS 4 projects in development simultaneously, the same with liden films, studio bones also has 4 projects in development, what are you telling me? It is normal, it has always been like that and that will never change because an animation studio is maintained on that.;False;False;;;;1610139129;;False;{};gikywuv;False;t3_kt75px;False;False;t1_gikql9b;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikywuv/;1610179171;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Astrayed_Zoro;;;[];;;;text;t2_5ypafin3;False;False;[];;found a reason to skip this;False;True;;comment score below threshold;;1610139177;;False;{};gikz0sa;False;t3_kt7bpo;False;False;t1_gikb7u3;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gikz0sa/;1610179235;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;Great first season, terrible regurgitated mess of a second season but then they string their first 4 competent episodes together to end on a high note.;False;False;;;;1610139188;;False;{};gikz1ni;False;t3_kt7qbe;False;True;t3_kt7qbe;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gikz1ni/;1610179248;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vaadwaur;;;[];;;;text;t2_123u5o;False;True;[];;Maybe it just didn't track on this sub? That sometimes happens.;False;False;;;;1610139233;;False;{};gikz5gl;False;t3_kt84wj;False;True;t1_gikqfbw;/r/anime/comments/kt84wj/kings_raid_ishi_wo_tsugumonotachi_episode_15/gikz5gl/;1610179308;3;True;False;anime;t5_2qh22;;0;[]; -[];;;BerserkKid;;;[];;;;text;t2_vdapxpn;False;False;[];;Anywhere I can find this translated?;False;False;;;;1610139267;;False;{};gikz86i;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikz86i/;1610179354;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;And that is...?;False;False;;;;1610139284;;False;{};gikz9jj;False;t3_kt7bpo;False;False;t1_gikz0sa;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gikz9jj/;1610179376;4;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;i thought new ep is gonna be today....;False;False;;;;1610139328;;False;{};gikzd2x;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikzd2x/;1610179434;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Septaluna;;;[];;;;text;t2_7wai0fs4;False;False;[];;This is probably not an idol anime, not when it has Wixoss in it's same, so better get preapred just in case.;False;False;;;;1610139351;;False;{};gikzeyf;False;t3_kt7bpo;False;True;t1_gikyd7q;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gikzeyf/;1610179464;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Druv27;;;[];;;;text;t2_76xer1sk;False;False;[];;The most groovy ED I've ever heard;False;False;;;;1610139412;;False;{};gikzjw5;False;t3_kt86nl;False;False;t3_kt86nl;/r/anime/comments/kt86nl/lost_in_paradise_ed_dancing_animation_referenced/gikzjw5/;1610179553;11;True;False;anime;t5_2qh22;;0;[]; -[];;;hpanandikar;;;[];;;;text;t2_d5qxl;False;False;[];;Miwa gang rise up;False;False;;;;1610139432;;False;{};gikzlhl;False;t3_kt75px;False;False;t1_gik98mm;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gikzlhl/;1610179578;44;True;False;anime;t5_2qh22;;0;[]; -[];;;dantemp;;;[];;;;text;t2_7cg0z;False;False;[];;The first arc is amazing, then it gets a bit dumb but doesn't look like many people could tell the difference;False;False;;;;1610139551;;False;{};gikzv0o;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gikzv0o/;1610179743;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;east-blue-samurai;;;[];;;;text;t2_c5avy2;False;False;[];;https://i0.kym-cdn.com/photos/images/original/001/279/386/6aa.jpg;False;False;;;;1610139914;;False;{};gil0nyz;False;t3_kt8507;False;True;t1_gikgyyj;/r/anime/comments/kt8507/ayo_people_i_have_a_quick_question_about_red_eyes/gil0nyz/;1610180199;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mythriz;;;[];;;;text;t2_d37v0;False;False;[];;*Karamatsu intensifies*;False;False;;;;1610139922;;False;{};gil0on1;False;t3_kt75px;False;False;t1_gikffeb;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil0on1/;1610180210;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;"Bones and David pro had 2 anime last year. mappa produced 7. You didnt even mention my main point about the animators being abused. Linden films is also a notoriously bad studio when it comes to overwork. Your missing my point here. -Edit: actually 8. Mappa produced 8 anime in one year.";False;True;;comment score below threshold;;1610140161;;False;{};gil17t8;False;t3_kt75px;False;True;t1_gikywuv;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil17t8/;1610180511;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;ThatWrestlingGuy15;;;[];;;;text;t2_321pl5tw;False;False;[];;🤝;False;False;;;;1610140274;;False;{};gil1guc;False;t3_kt75px;False;False;t1_gikxmd8;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil1guc/;1610180655;11;True;False;anime;t5_2qh22;;0;[]; -[];;;KSI-FAN-BABATUNDEE;;;[];;;;text;t2_8q8y7p04;False;False;[];;I watched the 1st episode and idk what to feel so shall i watch the first 3 episodes and tell you how i thought it was like and by that please can you tell me to watch it or not? :) because seems from your comment you seem like an anime expert.;False;False;;;;1610140404;;False;{};gil1r5i;True;t3_kt6j2z;False;False;t1_gikems4;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gil1r5i/;1610180817;9;True;False;anime;t5_2qh22;;0;[]; -[];;;RedPhantom081;;;[];;;;text;t2_kkg9a8o;False;False;[];;"Very arc dependant like /u/ATargetFinderScrub said. - -I really enjoyed the first few arcs but the last arcs were really boring and extremely underwhelming compared to early arcs which ultimately dropped the overall rating for me. I rated it 6/10 so not worth watching in my opinion.";False;False;;;;1610140562;;False;{};gil23jf;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gil23jf/;1610181005;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KSI-FAN-BABATUNDEE;;;[];;;;text;t2_8q8y7p04;False;False;[];;">I watched the 1st episode and idk what to feel so shall i watch the first 3 episodes and tell you how i thought it was like and by that please can you tell me to watch it or not? :) because seems from your comment you seem like an anime expert. So again I'm asking you please can you tell me to watch it or not after i watch the first 3 episodes and tell you what I think as I'm not too sure in deciding animes to watch. Thxs:).";False;False;;;;1610140664;;False;{};gil2bku;True;t3_kt6j2z;False;True;t1_gikwqak;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gil2bku/;1610181130;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Meemeli;;;[];;;;text;t2_2o1rogl;False;False;[];;"After watching the anime, I picked up the manga starting from the aquarium chapter (I heard that they had changed its ending for the anime, to make it a bit more conclusive) and I finished it during the same day. It was so damn good. The art is just as good as in the anime, and the ending was great. - -If you loved the anime, you 100% need to read the manga.";False;False;;;;1610140703;;False;{};gil2eoc;False;t3_kt9b65;False;True;t3_kt9b65;/r/anime/comments/kt9b65/should_i_read_the_manga_of_bloom_into_you_after/gil2eoc/;1610181175;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Luke911666;;;[];;;;text;t2_4nhzay4;False;False;[];;It is definitely worth it - also it’s similar to Bakemonogatri;False;False;;;;1610140709;;False;{};gil2f7t;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gil2f7t/;1610181183;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;RedPhantom081;;;[];;;;text;t2_kkg9a8o;False;False;[];;One of the three animes i rate 10/10. Fantastic.;False;False;;;;1610140754;;False;{};gil2iqi;False;t3_kt7qbe;False;True;t3_kt7qbe;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gil2iqi/;1610181236;1;True;False;anime;t5_2qh22;;0;[]; -[];;;punkgibson11;;;[];;;;text;t2_6ke7rwal;False;False;[];;What are the other ones?;False;False;;;;1610140822;;False;{};gil2o1p;False;t3_kt7qbe;False;True;t1_gil2iqi;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gil2o1p/;1610181315;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TohaHeavyIndustries_;;;[];;;;text;t2_1f3b6iu;False;False;[];;It absolutely is, a beautiful Drama/Romance show with focus on very natural and engaging character interaction, spiced up with supernatural elements. It's a bit as if Monogatari took its pills. Just keep in mind, that there's less than two minutes of Senpai actually being a Bunny Girl in it, so if you want to watch for that reason, you're gonna be disappointed;False;False;;;;1610140833;;False;{};gil2ov7;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gil2ov7/;1610181327;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;lukeuntld072;;;[];;;;text;t2_y8pgd;False;False;[];;I dont know i think its pretty good. Atleast better then some animes in the top 10;False;False;;;;1610140833;;False;{};gil2ovd;False;t3_kt84wj;False;True;t1_gikqfbw;/r/anime/comments/kt84wj/kings_raid_ishi_wo_tsugumonotachi_episode_15/gil2ovd/;1610181328;2;True;False;anime;t5_2qh22;;0;[]; -[];;;RedPhantom081;;;[];;;;text;t2_kkg9a8o;False;False;[];;"Devilman Crybaby and Demon Slayer. - -Edit: I dont understand this subreddit, people just downvote anyones opinion like its nothing. Fuck you all, i am outta this sub. Anime watchers are majority of the most shitiest people, fucking weird and assholes who can't respect anyones opinion.";False;False;;;;1610140867;;1610144212.0;{};gil2rh7;False;t3_kt7qbe;False;True;t1_gil2o1p;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gil2rh7/;1610181367;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bob8644;;null a-amq;[];;;dark;text;t2_q5pk2;False;False;[];;I hope none of these cuts are from the opening;False;False;;;;1610140891;;False;{};gil2t8r;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil2t8r/;1610181394;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610140900;;False;{};gil2tz6;False;t3_kt84wj;False;True;t3_kt84wj;/r/anime/comments/kt84wj/kings_raid_ishi_wo_tsugumonotachi_episode_15/gil2tz6/;1610181406;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KSI-FAN-BABATUNDEE;;;[];;;;text;t2_8q8y7p04;False;False;[];;I watched the 1st episode and idk what to feel so shall i watch the first 3 episodes and tell you how i thought it was like and by that please can you tell me to watch it or not? :) because seems from your comment you seem like an anime expert. pls;False;False;;;;1610140905;;False;{};gil2uej;True;t3_kt6j2z;False;True;t1_gil2ov7;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gil2uej/;1610181412;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bob8644;;null a-amq;[];;;dark;text;t2_q5pk2;False;False;[];;Source? Though it is headed by an ex-Madhouse employee so it's not too unreasonable.;False;False;;;;1610140967;;False;{};gil2z8h;False;t3_kt75px;False;True;t1_gikql9b;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil2z8h/;1610181483;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Roblox_lad;;;[];;;;text;t2_kx374kj;False;False;[];;Aye;False;False;;;;1610141033;;False;{};gil349l;False;t3_kt75px;False;False;t1_gikzlhl;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil349l/;1610181560;8;True;False;anime;t5_2qh22;;0;[]; -[];;;deStiny8068;;;[];;;;text;t2_2yaxkyp;False;False;[];;u/sharke000 Wow art and animation look absolutely top class and the song sounds lit too;False;False;;;;1610141058;;False;{};gil366k;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil366k/;1610181591;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Roblox_lad;;;[];;;;text;t2_kx374kj;False;False;[];;I can barely contain my excitement. And what I assume is the new op sounds dope asf too;False;False;;;;1610141080;;False;{};gil37xn;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil37xn/;1610181617;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SeynaAyse;;;[];;;;text;t2_4ozfkqft;False;False;[];;"Watamote op. 🙂 - -Nil admirari no tenbin op. - -Sengoku night blood op and Ed 1. - -Kamigami no asobi op and ed. - -EF a tale of memories op. - -Prince of the stride op and Ed. - -If you are satisfied with those, I can give some as well 😁";False;False;;;;1610141189;;False;{};gil3fyi;False;t3_kt8z8a;False;False;t3_kt8z8a;/r/anime/comments/kt8z8a/give_me_all_that_amazing_ass_anime_music_openings/gil3fyi/;1610181737;2;True;False;anime;t5_2qh22;;0;[]; -[];;;tomtomm9;;;[];;;;text;t2_3ycvxoo9;False;False;[];;If ur not enjoying after the first 3 than it’s most likely not for you.;False;False;;;;1610141258;;False;{};gil3ldt;False;t3_kt6j2z;False;False;t1_gil1r5i;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gil3ldt/;1610181818;51;True;False;anime;t5_2qh22;;0;[]; -[];;;sebasq10;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sebasq10;light;text;t2_13xv89;False;False;[];;Damn, this flow chart is kinda complicated but I think it's pretty well structured and composed.;False;False;;;;1610141296;;False;{};gil3og0;False;t3_kt6j2z;False;False;t1_gik78vr;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gil3og0/;1610181865;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;General knowledge in the sakuga community. You are right about the madhouse comparison 100%. This is exactly what happened to madhouse in the early 2010s.;False;False;;;;1610141388;;False;{};gil3vit;False;t3_kt75px;False;True;t1_gil2z8h;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil3vit/;1610181971;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tomtomm9;;;[];;;;text;t2_3ycvxoo9;False;False;[];;It’s 100% not meh but idk about masterpiece. The last 4 episodes make me forget about every single fault of the series anyway so it’s a 9/10 for me.;False;False;;;;1610141396;;False;{};gil3w4b;False;t3_kt7qbe;False;True;t3_kt7qbe;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gil3w4b/;1610181981;3;True;False;anime;t5_2qh22;;0;[]; -[];;;JackDockz;;;[];;;;text;t2_1wmsbygp;False;False;[];;It's decent and Lelouch is definitely a great character. 8/10;False;False;;;;1610141408;;False;{};gil3x3e;False;t3_kt7qbe;False;False;t3_kt7qbe;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gil3x3e/;1610181995;0;True;False;anime;t5_2qh22;;0;[]; -[];;;SeynaAyse;;;[];;;;text;t2_4ozfkqft;False;False;[];;"Maison Ikkoku. - -Inuyasha";False;False;;;;1610141414;;False;{};gil3xle;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gil3xle/;1610182004;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bob8644;;null a-amq;[];;;dark;text;t2_q5pk2;False;False;[];;""" Bro trust me """;False;False;;;;1610141434;;False;{};gil3z5n;False;t3_kt75px;False;True;t1_gil3vit;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil3z5n/;1610182028;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsukkji;;;[];;;;text;t2_7tfrp6p9;False;False;[];;I am interested in watching Gintama but I’m not sure what genre the series is. Is it like shounen or like comedy (like Saiki K.)?;False;False;;;;1610141482;;False;{};gil42yd;False;t3_kt4a31;False;False;t3_kt4a31;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gil42yd/;1610182085;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Septaluna;;;[];;;;text;t2_7wai0fs4;False;False;[];;"I think it's just strange they mentioned Eternal Girls and Selectors. This anime could work completely without them-i mean, there's no such thing is the card game right?\[did not find anything\] So it is kinda a clue. - -We got Tama cameo-so this for sure is this same universe at least. - -BUT in the OP or in the preview there are so sings of real world. Only idol stuff. It all could be collected from just 4 episodes. Also I don't think they would go full idol route knowing what they are known for. They might pull off SAO with dying a game after a lost match or something. - -Hence, music is on fucking point, animation is great, this is WIXOSS and i am gonna watch it till the end, weather it gets dark or not.";False;False;;;;1610141501;;False;{};gil44gk;False;t3_kt7bpo;False;False;t1_gikws8v;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gil44gk/;1610182109;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TohaHeavyIndustries_;;;[];;;;text;t2_1f3b6iu;False;False;[];;"I wouldn't call myself an expert, I'm just some Turbo Weeb :D - -Sounds like a nice idea to me, but generally I would say, that the first three episodes(which is the complete first Arc) give a nice overview over the atmosphere and structure of the show in general. If you don't get a feeling for the show in those first three episodes, I don't think you will later on. But thinking back at my watching experience, I only really got sold on the show after watching episode three. The show just knows how to resolve its conflicts very well. - -I'm really interested to see how you feel after the first arc.";False;False;;;;1610141509;;False;{};gil453o;False;t3_kt6j2z;False;True;t1_gil2uej;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gil453o/;1610182119;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Pahlkus;;;[];;;;text;t2_6nztzo3z;False;False;[];;From episode 300, your mind is blown with each episode;False;False;;;;1610141538;;False;{};gil47e0;False;t3_kt4a31;False;False;t3_kt4a31;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gil47e0/;1610182152;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;Idk what to tell ya go pm a freelancer and ask them about mappa.;False;False;;;;1610141561;;False;{};gil493h;False;t3_kt75px;False;True;t1_gil3z5n;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil493h/;1610182178;1;True;False;anime;t5_2qh22;;0;[]; -[];;;popoapoooo;;;[];;;;text;t2_5ecepg0p;False;False;[];;Gintoki is my favourite MC, Hijikata is my favourite side character.;False;False;;;;1610141604;;False;{};gil4cdu;False;t3_kt4a31;False;False;t3_kt4a31;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gil4cdu/;1610182227;4;True;False;anime;t5_2qh22;;0;[];True -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;I see you like Rumiko Takahashi’s works;False;False;;;;1610141607;;False;{};gil4ckt;True;t3_kt7djy;False;True;t1_gil3xle;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gil4ckt/;1610182230;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ZeroSplash1007;;;[];;;;text;t2_4qpkpugv;False;False;[];;It's the GOAT anime. Has everything.;False;False;;;;1610141712;;False;{};gil4knz;False;t3_kt7qbe;False;False;t3_kt7qbe;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gil4knz/;1610182349;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Insecticide;;;[];;;;text;t2_a6x2b;False;False;[];;Yes, it is a show that is way above average.;False;False;;;;1610141737;;False;{};gil4mil;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gil4mil/;1610182377;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DMking;;;[];;;;text;t2_8buww;False;False;[];;Well thr Kyoto principal did try to have him get killed by that special grade. He clearly wants Yuji dead;False;False;;;;1610141744;;False;{};gil4n5g;False;t3_kt75px;False;False;t1_gikx2od;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil4n5g/;1610182386;11;True;False;anime;t5_2qh22;;0;[]; -[];;;narutomaki;;;[];;;;text;t2_qoq8w;False;False;[];;really great anime imo;False;False;;;;1610141854;;False;{};gil4vi9;False;t3_kt7qbe;False;True;t3_kt7qbe;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gil4vi9/;1610182510;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FreeK200;;;[];;;;text;t2_743x5;False;False;[];;Same. Still more interested in the Black Edge storyline. Based off the ED it looks like the sister is dead though? Wonder how that will work out...;False;False;;;;1610141915;;False;{};gil50cc;False;t3_kt84wj;False;True;t1_gikybns;/r/anime/comments/kt84wj/kings_raid_ishi_wo_tsugumonotachi_episode_15/gil50cc/;1610182584;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bob8644;;null a-amq;[];;;dark;text;t2_q5pk2;False;False;[];;"Did YOU ask them about MAPPA? - -If you presumably did, YOU'RE withholding crucial evidence to the case that needs to be made, which is "" Mappa is overworking its animators "". - -Is drama going to explode if it leaks out? Hush money? What is holding you back from presenting it, if you even have the word?";False;False;;;;1610142057;;False;{};gil5bbn;False;t3_kt75px;False;True;t1_gil493h;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil5bbn/;1610182751;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Recyclonaught;;;[];;;;text;t2_ds34k;False;False;[];;Q and A in palindrome: is it? It is. Poetic quaintness.;False;False;;;;1610142113;;False;{};gil5fpk;False;t3_kt6j2z;False;False;t1_gik3dvg;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gil5fpk/;1610182817;37;True;False;anime;t5_2qh22;;0;[]; -[];;;KaptainTZ;;skip7;[];;;dark;text;t2_9fhynbf5;False;False;[];;Tsk tsk for jumping ahead;False;False;;;;1610142199;;False;{};gil5ma3;False;t3_kt75px;False;True;t1_gikyd4t;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil5ma3/;1610182918;2;True;False;anime;t5_2qh22;;0;[]; -[];;;misteranthropocene;;;[];;;;text;t2_4an0a610;False;False;[];;"I watched CG while it was airing in the US 10+ years ago and was a huuuuge fan, had it on my top anime list, rated the seasons 9s/10s on MAL, etc. - - -In retrospective, it has a lot of flaws. I think its still enjoyable and I still love it and it'll be a classic, but I think it's far from a masterpiece. Too much messy parts in the middle. I agree that the ending was iconic though and really brought the entire show together.";False;False;;;;1610142210;;False;{};gil5n6h;False;t3_kt7qbe;False;True;t3_kt7qbe;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gil5n6h/;1610182931;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SeynaAyse;;;[];;;;text;t2_4ozfkqft;False;False;[];;Yes 😁;False;False;;;;1610142237;;False;{};gil5p79;False;t3_kt7djy;False;True;t1_gil4ckt;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gil5p79/;1610182962;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610142353;;False;{};gil5xvi;False;t3_kt4a31;False;True;t1_gil42yd;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gil5xvi/;1610183092;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BasicallyBasix;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/HeyImBasix;light;text;t2_u0q3d1w;False;False;[];;I think I’m in the minority but for me Code Geass was super mid-tier. I feel like it tried so hard to make situations more complex than they needed to be in order to make Lelouch seem like a genius. I think I have it like a 6-7/10 iirc;False;False;;;;1610142383;;False;{};gil604s;False;t3_kt7qbe;False;False;t3_kt7qbe;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gil604s/;1610183125;11;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;Reddit is really sleeping on Maki.;False;False;;;;1610142420;;False;{};gil62qs;False;t3_kt75px;False;False;t1_gikqxk8;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil62qs/;1610183164;50;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;"I dont talk to people on twitter but one person I know of actually did have to delete a series of tweets because they were in trouble with their employer after proclaiming they were a ""professional mappa slave"" so there's that. They will remain unnamed. I've heard stories about long hours from forums on sakugabooru, so if you know where to look you'll find. -Edit: this is a representation of the average animator life, and this woman has worked for mappa iirc https://youtu.be/Tvj-XnVKQI8";False;False;;;;1610142430;;1610149629.0;{};gil63m3;False;t3_kt75px;False;True;t1_gil5bbn;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil63m3/;1610183177;1;True;False;anime;t5_2qh22;;0;[]; -[];;;theanimegamer-___-;;;[];;;dark;text;t2_3vm3lj8d;False;False;[];;How about one the the greatest of all time? It's a legit masterpiece.;False;False;;;;1610142465;;False;{};gil669h;False;t3_kt7qbe;False;True;t3_kt7qbe;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gil669h/;1610183220;1;True;False;anime;t5_2qh22;;0;[]; -[];;;droppedmyravioli;;;[];;;;text;t2_4k4dy12u;False;False;[];;"Same reason why it’s cool when Arnold says ‘Hasta la vista’ - -No idea";False;False;;;;1610142467;;False;{};gil66dl;False;t3_kt75px;False;False;t1_gikklw0;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil66dl/;1610183222;74;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;Youtube auto translation.;False;False;;;;1610142474;;False;{};gil66y3;False;t3_kt75px;False;True;t1_gikz86i;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil66y3/;1610183230;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsukkji;;;[];;;;text;t2_7tfrp6p9;False;False;[];;Ohhh that sounds interesting and I liked Saiki a lot. Does Gintama have plots/arcs that build character development and is carried over onto the next arc? Haha sorry I’m just interested.;False;False;;;;1610142474;;False;{};gil66yu;False;t3_kt4a31;False;True;t1_gil5xvi;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gil66yu/;1610183230;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Karma110;;;[];;;;text;t2_1q9bre0q;False;False;[];;Good point.;False;False;;;;1610142489;;False;{};gil683n;False;t3_kt75px;False;False;t1_gil66dl;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil683n/;1610183248;9;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;They released a special today. It's a collab between Yuji and Todo VAs.;False;False;;;;1610142493;;False;{};gil68g5;False;t3_kt75px;False;False;t1_gikzd2x;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil68g5/;1610183253;8;True;False;anime;t5_2qh22;;0;[]; -[];;;BasicallyBasix;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/HeyImBasix;light;text;t2_u0q3d1w;False;False;[];;"A List of my Favorites (in no particular order): - -Assassination Classroom - -My Love Story - -Ascendance of a Bookworm - -Rising of the Shield Hero - -Erased - -Astra Lost In Space - -Dr. Stone - -Death Note - -Attack on Titan - -Flip Flappers - -GATE - -War on Geminar - -Restaurant From Another World - -Demon Slayer - -Prison School - -ReLIFE - -Somali and the Forest Spirit - -That Time I Got Reincarnated as a Slime - -Violet Evergarden - -Death Parade - -The Promised Neverland - -My Teen Romantic Comedy SNAFU - -I Want To Eat Your Pancreas - -The Saga of Tanya the Evil - -Drifters - -Modoka Magica - -Teasing Master Takagi-san - -Welcome to the N.H.K. - -Parasyte - -A Silent Voice - -Darling in the FranXX - -Run with the Wind - -Chihayafuru - -Hinamatsuri - -Domestic Girlfriend - -Welcome to Demon School! Iruma-kun - -Clannad - -Death Parade - -ReZero - -Maid Sama - -Naruto - -Golden Kamuy - -Your Name - -The Ancient Magus’ Bride - -Spirited Away - -My Neighbor Totoro - -Weathering With You - -Hunter x Hunter - -Tsuki Ga Kirei - -Everything here might not be exactly what you’re looking for, but they all have my stamp of approval as I’ve rated each of them at least an 8/10! So, hopefully you’ll enjoy some of them :) - -These all have dubbed versions too if you prefer that!";False;False;;;;1610142507;;False;{};gil69hq;False;t3_kt6fin;False;True;t3_kt6fin;/r/anime/comments/kt6fin/recommendations_for_a_newbie/gil69hq/;1610183269;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BerserkKid;;;[];;;;text;t2_vdapxpn;False;False;[];;Theres only Japanese auto translation. Not all videos have auto translation;False;False;;;;1610142571;;False;{};gil6eea;False;t3_kt75px;False;True;t1_gil66y3;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil6eea/;1610183341;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Brillux;;;[];;;;text;t2_vb5a4bd;False;False;[];;I didn't jump ahead though...it's right there in the PV 🙈;False;False;;;;1610142587;;False;{};gil6fjf;False;t3_kt75px;False;False;t1_gil5ma3;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil6fjf/;1610183359;9;True;False;anime;t5_2qh22;;0;[]; -[];;;misteranthropocene;;;[];;;;text;t2_4an0a610;False;False;[];;"Sigh just seemed like 2009 was yesterday, I'm oldddd - - -When I hear retro I still think 90s and earlier haha. - - -Here's mine in order: - - -Revolutionary Girl Utena -Rose of Versailles (a classic!) -LOTGH";False;False;;;;1610142708;;False;{};gil6otp;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gil6otp/;1610183502;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dieorelse;;;[];;;;text;t2_x3pb6;False;False;[];;When you watch too much Hololive, and this starts to sound really familiar.;False;False;;;;1610142714;;False;{};gil6p9h;False;t3_kt75px;False;False;t1_gik8uxp;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil6p9h/;1610183510;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Bob8644;;null a-amq;[];;;dark;text;t2_q5pk2;False;False;[];;"...this is the weirdest forum I'm ever seen. - -Only 5-6 pages, completely inconsistent with how the dates are listed (one thread which hasn't been updated in years is above one which was updated days ago), not to mention no mention of MAPPA, crunch, overwork, karoshi, or any other similar terms. - -I apologize for pestering you about this, but the last thing I'll ask is that you PM me an example of a story like what we've discussed.";False;False;;;;1610142829;;False;{};gil6xzj;False;t3_kt75px;False;False;t1_gil63m3;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil6xzj/;1610183644;4;True;False;anime;t5_2qh22;;0;[]; -[];;;monke_with_beans;;;[];;;;text;t2_7psipa72;False;False;[];;yeah it's really popular and when i watched it it wasn't bad, but i just didn't get the hype at all. lelouch did a ton of really dumb things that were convenient to the plot. i just doin't get why he's so popular. he's just edgy to the point where i cringed sometimes. but the show asn't bad or anything overall. the ending was cool, but other than that, i forced myself through some of it;False;False;;;;1610142898;;False;{};gil737c;False;t3_kt7qbe;False;False;t1_gil604s;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gil737c/;1610183726;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ppaannggwwiinn;;;[];;;;text;t2_2t4kkwdz;False;False;[];;Using your flow chart I would have missed out on a lot of anime I ended up really, really liking. I think you can only apply this flow chart after like 3 episodes tbh, but some anime take even longer than that to really get rolling.;False;False;;;;1610142910;;False;{};gil745f;False;t3_kt6j2z;False;True;t1_gik78vr;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gil745f/;1610183741;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KelloPudgerro;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/KelloPudgerro;light;text;t2_dxxwh;False;False;[];;"so when is 2nd cour? - -edit: apparently starts off next week";False;False;;;;1610143054;;False;{};gil7f1a;False;t3_kt75px;False;True;t1_gil68g5;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil7f1a/;1610183915;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sworp123;;;[];;;;text;t2_70kjkn0w;False;False;[];;damn that's really smooth;False;False;;;;1610143077;;False;{};gil7gqe;False;t3_kt86nl;False;False;t3_kt86nl;/r/anime/comments/kt86nl/lost_in_paradise_ed_dancing_animation_referenced/gil7gqe/;1610183940;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610143079;;False;{};gil7gv8;False;t3_kt4a31;False;True;t1_gil66yu;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gil7gv8/;1610183942;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BasicallyBasix;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/HeyImBasix;light;text;t2_u0q3d1w;False;False;[];;Basically the same here, I think it’s just hard for me to like it as much as everyone else bc I always compare Lelouch to Light and Light is just a far smarter and more interesting MC imo. And yeah, I totally agree with you on the “doing dumb things for the plot” part. I watched it a while ago, but I remember being super confused and annoyed as to why Lelouch wouldn’t just brainwashed his buddy who was fighting for the empire to secretly help him from the very beginning. Like so much conflict could’ve been avoided had that happened.;False;False;;;;1610143229;;False;{};gil7s4i;False;t3_kt7qbe;False;True;t1_gil737c;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gil7s4i/;1610184109;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;"I have English translations. - - -[https://i.imgur.com/E30zGOg.png](https://i.imgur.com/E30zGOg.png)";False;False;;;;1610143229;;False;{};gil7s5e;False;t3_kt75px;False;True;t1_gil6eea;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil7s5e/;1610184109;2;True;False;anime;t5_2qh22;;0;[]; -[];;;BerserkKid;;;[];;;;text;t2_vdapxpn;False;False;[];;How comes u got them and I only got the Japanese ones 😭;False;False;;;;1610143283;;False;{};gil7w81;False;t3_kt75px;False;True;t1_gil7s5e;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil7w81/;1610184171;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ZedelPilfer;;;[];;;;text;t2_8mels7iv;False;False;[];;Honestly it kinda looks like they thought ahead and saved some budget.;False;True;;comment score below threshold;;1610143433;;False;{};gil87j6;False;t3_kt75px;False;True;t1_gik7spl;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil87j6/;1610184341;-68;True;False;anime;t5_2qh22;;0;[]; -[];;;JokerGH23;;;[];;;;text;t2_370zlarb;False;False;[];;SANK YOU SO MUCH BESTO FURENDO!;False;False;;;;1610143505;;False;{};gil8cvv;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil8cvv/;1610184422;4;True;False;anime;t5_2qh22;;0;[]; -[];;;NameIsAlreadyInUse;;;[];;;;text;t2_tp2upmr;False;False;[];;"That's...not how it works. They must have had a good schedule,""budget"" isn't really a factor.";False;False;;;;1610143554;;False;{};gil8gkr;False;t3_kt75px;False;False;t1_gil87j6;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil8gkr/;1610184478;34;True;False;anime;t5_2qh22;;0;[]; -[];;;ISAvsOver;;;[];;;;text;t2_b1sly;False;False;[];;Aw man the Elves got slaughtered so quickly I barely got time to enjoy it. (Except Tamm, F for Tamm);False;False;;;;1610143605;;False;{};gil8kd2;False;t3_kt84wj;False;False;t3_kt84wj;/r/anime/comments/kt84wj/kings_raid_ishi_wo_tsugumonotachi_episode_15/gil8kd2/;1610184535;4;True;False;anime;t5_2qh22;;0;[]; -[];;;GodOfSnails;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/GodOfSnails;light;text;t2_kpwl6kz;False;False;[];;Lovely complex is one of mine;False;False;;;;1610143792;;False;{};gil8y7q;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gil8y7q/;1610184746;1;True;False;anime;t5_2qh22;;0;[]; -[];;;rinmperdinck;;;[];;;;text;t2_6zv5a5ul;False;False;[];;Instructions unclear. Dick now stuck in a blender. Halp.;False;False;;;;1610143986;;False;{};gil9csb;False;t3_kt6j2z;False;False;t1_gik78vr;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gil9csb/;1610184972;11;True;False;anime;t5_2qh22;;0;[]; -[];;;diableslasher;;;[];;;;text;t2_hnvhy;False;False;[];;"Dude it's so crazy, I was just thinking to myself ""Man I wish there was a trailer for the next cour of JJK(since we're on break this week)"" and then I come to the subreddit and lo and behold";False;False;;;;1610144005;;False;{};gil9e7l;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gil9e7l/;1610184992;12;True;False;anime;t5_2qh22;;0;[]; -[];;;rinmperdinck;;;[];;;;text;t2_6zv5a5ul;False;False;[];;I just started watching anime this year since I have so much extra time now. But huge series like this with hundreds of episodes still seem overwhelming to me.;False;False;;;;1610144137;;False;{};gil9o3f;False;t3_kt4a31;False;True;t3_kt4a31;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gil9o3f/;1610185144;1;True;False;anime;t5_2qh22;;0;[]; -[];;;themostimmorel;;;[];;;;text;t2_52xzeln6;False;False;[];;The 3d stuff put me off but its still on my list.;False;False;;;;1610144194;;False;{};gil9sbt;False;t3_kt7djy;False;True;t1_gikbdij;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gil9sbt/;1610185207;2;True;False;anime;t5_2qh22;;0;[]; -[];;;destiny24;;;[];;;;text;t2_85zu3;False;False;[];;Yeah she's probably in that outfit for probably 2 scenes.;False;False;;;;1610144466;;False;{};gilac97;False;t3_kt6j2z;False;True;t1_gikje8u;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gilac97/;1610185513;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jayson_2004;;;[];;;;text;t2_3pijy2at;False;False;[];;The color of the hair of the quintuplets is actually the same in-universe.;False;False;;;;1610144589;;False;{};gilali0;False;t3_kt78pl;False;True;t3_kt78pl;/r/anime/comments/kt78pl/i_honestly_dont_understand_how_this_is_even_a/gilali0/;1610185650;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZedelPilfer;;;[];;;;text;t2_8mels7iv;False;False;[];;"Budget is commonly used as a metaphor for good animation. I know that the actual ""budget"" isn't a factor.";False;True;;comment score below threshold;;1610144814;;False;{};gilb2b9;False;t3_kt75px;False;True;t1_gil8gkr;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gilb2b9/;1610185908;-35;True;False;anime;t5_2qh22;;0;[]; -[];;;Komorebi_LJP;;;[];;;;text;t2_2mz8156e;False;False;[];;"It's only two people downvoted you, it sucks, but thats just reddit in general. - -No need to overgeneralize.";False;False;;;;1610144831;;False;{};gilb3je;False;t3_kt7qbe;False;False;t1_gil2rh7;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gilb3je/;1610185928;8;True;False;anime;t5_2qh22;;0;[]; -[];;;RedPhantom081;;;[];;;;text;t2_kkg9a8o;False;False;[];;No thats not reddit in general, everytime i have commented on this subreddit, same thing happened. Downvotes, no comments. Just its simple that anime watchers are a bunch of weirdos with their weeb trash and generally cringe things.;False;True;;comment score below threshold;;1610144935;;False;{};gilbbd9;False;t3_kt7qbe;False;True;t1_gilb3je;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gilbbd9/;1610186047;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;KamKKF;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/kamkkf/;light;text;t2_13xmiv;False;False;[];;its misleading, so if you know its not a factor, dont use it.;False;False;;;;1610144944;;1610149372.0;{};gilbc03;False;t3_kt75px;False;False;t1_gilb2b9;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gilbc03/;1610186057;10;True;False;anime;t5_2qh22;;0;[]; -[];;;death556;;;[];;;;text;t2_y24tf;False;False;[];;One can hope but not likely. Manga is definitely worth it. Tge one and only time iv ever read a manga was for bloom into you.;False;False;;;;1610145027;;False;{};gilbi79;False;t3_kt9b65;False;True;t1_giklvei;/r/anime/comments/kt9b65/should_i_read_the_manga_of_bloom_into_you_after/gilbi79/;1610186160;2;True;False;anime;t5_2qh22;;0;[]; -[];;;eh_whatever17;;;[];;;;text;t2_63o5bktw;False;False;[];;Just watch it for C2, what else do you need?;False;False;;;;1610145058;;False;{};gilbkgg;False;t3_kt7qbe;False;True;t3_kt7qbe;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gilbkgg/;1610186193;1;True;False;anime;t5_2qh22;;0;[]; -[];;;stephenthatfoste;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Rexagonal;light;text;t2_kqk1f;False;False;[];;I'm ready for WIXOSS parts, too. But it definitely looks idol-y so far. Even got the teams and glow sticks and everything.;False;False;;;;1610145060;;False;{};gilbkm7;False;t3_kt7bpo;False;True;t1_gikzeyf;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gilbkm7/;1610186196;2;True;False;anime;t5_2qh22;;0;[]; -[];;;death556;;;[];;;;text;t2_y24tf;False;False;[];;It does not. It cuts out what feels like the middle of an arc.;False;False;;;;1610145075;;False;{};gilblqy;False;t3_kt9b65;False;False;t1_gikrw64;/r/anime/comments/kt9b65/should_i_read_the_manga_of_bloom_into_you_after/gilblqy/;1610186212;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MikeHawk1221;;;[];;;;text;t2_1d25wax6;False;False;[];;Re:zero should be next on your list, it's similar to my interests;False;False;;;;1610145127;;False;{};gilbpik;False;t3_kt4a31;False;True;t3_kt4a31;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gilbpik/;1610186267;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Verzwei;;;[];;;;text;t2_cmzqb;False;False;[];;"I think the anime is far better than the manga (for the content it adapts) because the performances added a lot of nuance to the characters and the anime's directing resulted in some shots that really played to the strength of the medium. - -That said, if you want the whole story, you really have to go into the manga. The anime kind shored up or glossed over some content near its ending, and certain events such as [Bloom Into You](/s ""the script changes to the play"") were much more drawn out, dramatic affairs in the manga. There's somewhat of a ""montage"" that occurs during the final moments of the anime, and that montage plays out without any spoken dialogue, but nearly all of those shots represent full, plot-relevant scenes that occurred in the manga. - -Since you asked in another comment about a season 2, I'd say it's extremely unlikely. There's just not enough content. Bloom's anime adapted into parts of volume 5, and the whole series ended at 8 volumes. At _most_, there'd be enough material for an OVA series. But it's typically unusual for completed manga to get new anime unless the manga is lastingly and overwhelmingly popular.";False;False;;;;1610145499;;False;{};gilcgtj;False;t3_kt9b65;False;True;t3_kt9b65;/r/anime/comments/kt9b65/should_i_read_the_manga_of_bloom_into_you_after/gilcgtj/;1610186682;2;True;False;anime;t5_2qh22;;0;[]; -[];;;H4wx;;;[];;;;text;t2_ehuq5;False;False;[];;I binged all 13 eps last Sunday because I thought it's coming back this week, terrible timing on my part.;False;False;;;;1610145502;;False;{};gilcgzo;False;t3_kt75px;False;False;t1_gikibra;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gilcgzo/;1610186685;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Frozenkex;;;[];;;;text;t2_66clq;False;False;[];;the original is rotoscoped.;False;False;;;;1610145589;;False;{};gilcndc;False;t3_kt86nl;False;True;t3_kt86nl;/r/anime/comments/kt86nl/lost_in_paradise_ed_dancing_animation_referenced/gilcndc/;1610186785;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lcernosek7;;;[];;;;text;t2_dnhuw4m;False;False;[];;Wow you’re not even at the best arcs yet tbh. You’ll love it.;False;False;;;;1610146001;;False;{};gildhsr;False;t3_kt4a31;False;True;t3_kt4a31;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gildhsr/;1610187242;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Aizenchair-sama;;;[];;;;text;t2_1l97otho;False;False;[];;The world, general overlying story, characters and themes are amazing but there’s quite a few plot inconsistencies and I think it should’ve been fleshed out more, especially R2.;False;False;;;;1610146010;;False;{};gildig6;False;t3_kt7qbe;False;True;t3_kt7qbe;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gildig6/;1610187252;1;True;False;anime;t5_2qh22;;0;[]; -[];;;wildbee12;;;[];;;;text;t2_2xgka2r;False;False;[];;Did you actually skip all those episodes? lol;False;False;;;;1610146046;;False;{};gildl1g;False;t3_kt4a31;False;True;t1_gik76ig;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gildl1g/;1610187290;0;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;The manga is hot;False;False;;;;1610146059;;False;{};gildlzj;False;t3_kt75px;False;False;t1_gilcgzo;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gildlzj/;1610187304;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Tikitooki42;;;[];;;;text;t2_rw0zgo6;False;False;[];;It's more like chuninn exams tbh;False;False;;;;1610146165;;False;{};gildtvj;False;t3_kt75px;False;False;t1_gik7xs6;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gildtvj/;1610187422;10;True;False;anime;t5_2qh22;;0;[]; -[];;;rv0celot;;;[];;;;text;t2_ikknf;False;False;[];;That's gonna change soon;False;False;;;;1610146184;;False;{};gildv84;False;t3_kt75px;False;False;t1_gil62qs;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gildv84/;1610187442;13;True;False;anime;t5_2qh22;;0;[]; -[];;;N4mFlashback;;;[];;;;text;t2_35i32vyw;False;False;[];;First 3 is first arc (imo best one).;False;False;;;;1610146223;;False;{};gildy1u;False;t3_kt6j2z;False;False;t1_gil1r5i;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gildy1u/;1610187483;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Urameshi9762;;;[];;;;text;t2_8egcx3r9;False;False;[];;Each anime has a couple of years in development, that they come out the same year does not mean shit, you only mention the animes that CAME OUT THIS YEAR, and those that are in development do you not name them? come on go to the fucking street dawg, you are embarrassing me with your stupidity, whenever you answer me it is with nonsense, it does not matter if an animation studio is bad as you mentioned, it DOES NOT MATTER A SHIT or now because a studio is bad it does not count the number of projects? is that I just have to laugh.;False;False;;;;1610146462;;False;{};gilefs3;False;t3_kt75px;False;False;t1_gil17t8;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gilefs3/;1610187753;5;True;False;anime;t5_2qh22;;0;[]; -[];;;blackpants101;;;[];;;;text;t2_3dck62x2;False;False;[];;Yeah I know the feeling. It was a drastic change.;False;False;;;;1610146468;;False;{};gileg6a;False;t3_kt7djy;False;True;t1_gil9sbt;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gileg6a/;1610187758;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lawvamat;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Lavamat;light;text;t2_pbxhw;False;False;[];;should've been the finale;False;False;;;;1610146475;;False;{};gilegr1;False;t3_kt6j2z;False;True;t1_gildy1u;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gilegr1/;1610187768;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Urameshi9762;;;[];;;;text;t2_8egcx3r9;False;False;[];;damn seriously.;False;False;;;;1610146563;;False;{};gilen4k;False;t3_kt75px;False;False;t1_gil17t8;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gilen4k/;1610187864;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ManjingSang;;;[];;;;text;t2_5pw8ibu9;False;False;[];;The animation is looking so good. Can't wait for the new season;False;False;;;;1610146570;;False;{};gilenmz;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gilenmz/;1610187871;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Gabistan;;;[];;;;text;t2_8m3o393y;False;False;[];;Okay you've lost me now that you resorted to insults and weird grammar.;False;False;;;;1610146920;;False;{};gilfdbf;False;t3_kt75px;False;False;t1_gilefs3;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gilfdbf/;1610188254;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;cubikxtheking;;;[];;;;text;t2_12sl2c;False;False;[];;Maybe it was because I binged it on a road trip. But It was fine. Only standout thing was the ending for me.;False;False;;;;1610147301;;False;{};gilg4ny;False;t3_kt7qbe;False;True;t3_kt7qbe;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gilg4ny/;1610188662;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;jsmith4567;;;[];;;;text;t2_mw9uj;False;False;[];;And it stopped running year round when it ran out of Manga to come back seasonally.;False;False;;;;1610147455;;False;{};gilgfzk;False;t3_kt4a31;False;True;t1_gikxs81;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gilgfzk/;1610188833;2;True;False;anime;t5_2qh22;;0;[]; -[];;;lukeuntld072;;;[];;;;text;t2_y8pgd;False;False;[];;Its going to be interesting. are they still going to try to take over the kingdom or work together with the princess.;False;False;;;;1610147517;;False;{};gilgkjv;False;t3_kt84wj;False;True;t1_gil50cc;/r/anime/comments/kt84wj/kings_raid_ishi_wo_tsugumonotachi_episode_15/gilgkjv/;1610188900;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Man_Without_Fear;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PlsBuff;light;text;t2_a37ql;False;False;[];;OH GOD MY EMOTIONS. Well done OP.;False;False;;;;1610147531;;False;{};gilgll0;False;t3_kt4tt9;False;True;t3_kt4tt9;/r/anime/comments/kt4tt9/i_played_dango_daikazoku_on_the_kalimba_theres/gilgll0/;1610188915;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Justin2212;;;[];;;;text;t2_4qoww62f;False;False;[];;We all know he died;False;False;;;;1610147735;;False;{};gilh02w;False;t3_kt75px;False;False;t1_gikdram;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gilh02w/;1610189134;7;True;False;anime;t5_2qh22;;0;[]; -[];;;IKeepIt99;;;[];;;;text;t2_9bczrrgj;False;False;[];;OH MY GOD I WAS WORRIED THAT THE NEW OP WOULDNT BE AS GOOD AS THE FIRST BUT I GOTTA HAND IT TO EVERYONE AROUND JJK ITS JUST STRAIGHT 10s IN EVERY ASPECT OH MY LORD!!!!!;False;False;;;;1610147978;;False;{};gilhhg4;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gilhhg4/;1610189398;7;True;False;anime;t5_2qh22;;0;[]; -[];;;n080dy123;;;[];;;;text;t2_139f6y;False;False;[];;The thing that concerns me is the writer's works relied heavily on the crazy animation Trigger/Gainax was able to bring to the table, I have much less faith in Studio Voln considering their only notable work was been Karakuri Circus and Ushio and Tora.;False;False;;;;1610148358;;False;{};gili90y;False;t3_kt5ab0;False;True;t1_gijvtbt;/r/anime/comments/kt5ab0/original_tv_anime_back_arrow_is_listed_with_a/gili90y/;1610189802;1;True;False;anime;t5_2qh22;;0;[]; -[];;;k4r6000;;;[];;;;text;t2_3q0qar7q;False;False;[];;Definitely read it to get to the conclusion. It isn't that long.;False;False;;;;1610148517;;False;{};gilikvb;False;t3_kt9b65;False;False;t3_kt9b65;/r/anime/comments/kt9b65/should_i_read_the_manga_of_bloom_into_you_after/gilikvb/;1610189979;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Curious211;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_ih7wb;False;True;[];;Which I find surprising considering they have AOT ongoing and Chainsaw man upcoming. They must have had a pretty good head start on Jujutsu Kaisen.;False;False;;;;1610148853;;False;{};gilj9li;False;t3_kt75px;False;False;t1_gil8gkr;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gilj9li/;1610190358;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ZedelPilfer;;;[];;;;text;t2_8mels7iv;False;False;[];;My bad I guess. Was just trying to compliment the studios work.;False;False;;;;1610149255;;False;{};gilk3rn;False;t3_kt75px;False;False;t1_gilbc03;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gilk3rn/;1610190819;6;True;False;anime;t5_2qh22;;0;[]; -[];;;KamKKF;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/kamkkf/;light;text;t2_13xmiv;False;False;[];;I'm hoping her spotlight this cour will at least convert a few over to see whos best girl.....;False;False;;;;1610149278;;False;{};gilk5i7;False;t3_kt75px;False;False;t1_gildv84;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gilk5i7/;1610190847;9;True;False;anime;t5_2qh22;;0;[]; -[];;;NameIsAlreadyInUse;;;[];;;;text;t2_tp2upmr;False;False;[];;AoT is being handled by a different team,and even then,i won't be surprised if we get a quality drop by episode 9 or so during the middle stretch of the show.;False;False;;;;1610149355;;False;{};gilkb40;False;t3_kt75px;False;False;t1_gilj9li;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gilkb40/;1610190933;10;True;False;anime;t5_2qh22;;0;[]; -[];;;RPTGB;;;[];;;;text;t2_a9w1beb;False;False;[];;Make a seat at the table for the new guest!;False;False;;;;1610149549;;False;{};gilkpsj;False;t3_kt4a31;False;True;t3_kt4a31;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gilkpsj/;1610191150;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sfantul119;;;[];;;;text;t2_7v7j5h;False;False;[];;give it a try,its actually good and extremely underrated.;False;False;;;;1610149803;;False;{};gill919;False;t3_kt84wj;False;False;t3_kt84wj;/r/anime/comments/kt84wj/kings_raid_ishi_wo_tsugumonotachi_episode_15/gill919/;1610191443;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Boujoulo;;;[];;;;text;t2_6iczsif5;False;False;[];;Nothing beats the kaede arc;False;False;;;;1610150083;;False;{};gilluc2;False;t3_kt6j2z;False;False;t1_gildy1u;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gilluc2/;1610191768;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Curious211;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_ih7wb;False;True;[];;Yea, hopefully not.;False;False;;;;1610150309;;False;{};gilmaz5;False;t3_kt75px;False;True;t1_gilkb40;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gilmaz5/;1610192027;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeftAssist;;;[];;;;text;t2_3akhfyjj;False;False;[];;Dammit I’m mad;False;False;;;;1610150405;;False;{};gilmi4t;False;t3_kt6j2z;False;False;t1_gil5fpk;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gilmi4t/;1610192135;8;True;False;anime;t5_2qh22;;0;[]; -[];;;North514;;;[];;;;text;t2_ssv6qna;False;False;[];;"Would give these handful of shows a look. Openings/trailers are linked to give you a feel. - -- Full Metal Alchemist Brotherhood (2009) Two boys Ed and Alphonse make a Faustian bargain that deeply curse both of them. To revert the consequences they must go on an adventure to find a mystical stone of alchemy the philosopher stone. The show deals with imperialism, militarism, redemption, forgiveness, the value of human life and the danger of the extremes of pure faith and rationality. (recommend the dub as a sub watcher) - (Crunchyroll/VRV, Hulu, Netflix ) - -[FMAB OP 1](https://www.youtube.com/watch?v=X59yPeVk_70) - -- Redline (2009) Every five years one insane race is held called Redline. There is only one rule that there are no rules. Adrenaline the anime with some of the most amazing animation out there. (Amazon Prime) - -[Redline Trailer](https://www.youtube.com/watch?v=2t26m_Q6ENo) - -- Cowboy Bebop (1998) Spike Spiegel a former syndicate member gangs up with a small crew known as Jet, Faye and Ed as they pursue various criminals around the Solar system while he keeps an eye out for former syndicate member Vicious. Mostly episodic but with an an overarching plotline. (recommend the dub as a sub watcher) -(Funimation) - -[Cowboy Bebop OP]( https://www.youtube.com/watch?v=NRI_8PUXx2A) - - -- Monster (2004) Kenzo Tenma a Japanese surgeon living in Germany life changes drastically after he saves an incredibly dangerous man known as Johan Liebert. After learning the truth about Johan Kenzo decides no matter what he must find and kill him. - (going to have to sail the seas) (crime drama like Death Note) - -[Monster OP](https://www.youtube.com/watch?v=msTB5r8nUHU) - -- Girls Last Tour (2017) After the world has been destroyed by an apocalyptic war two girls traverse the broken world laid out before them. Both relaxing and wholesome but also can be quite sad. (HiDive/Prime) - -[Girls Last Tour OP](https://www.youtube.com/watch?v=mF5MKNwbRhg) - -- Legend of the Galactic Heroes (OVA 1988-1997) A great epic space opera with a conflict focused on a corrupt democracy fighting an enlightened despot. Discussions on both the benefits and issues of both systems with a huge epic scale war. Recent remake not a bad adaptation but it is a bit rushed and only covers the first two books of 10 original has covered all. (Watch the first two prequel films My Conquest is A Sea of Stars and Overture to a New War and skip the first two episodes of the main series after seeing the films. Overture covers the first two episodes better. Extra content you can watch after the fact is the prequel Gaiden and the remake). (mind games like DN) -(Hidive/VRV) - - [Legend of the Galactic Heroes OP 3]( https://www.youtube.com/watch?v=Hryo6H57y6I) - -- Mushishi (2005) Ambient supernatural show about a Mushishi a doctor who specializes in healing the afflicted of diseases usually caused by supernatural beings called Mushi. Stories can range from heartwarming to tragic with various messages about family or the relation between humanity and nature. -(Crunchyroll/VRV, Hulu, Funimation) (Slice of Life) - -[Mushishi Trailer](https://www.youtube.com/watch?v=CXhPRWY1L0E) - -- Psycho Pass (2012) A cyberpunk detective story in an over monitored state that actively tracks your brain and marks you out as a criminal if your criminality potential goes overboard. Series focuses on Inspector Akane and Kogami an enforcer a controlled agent whose criminal coefficient has gone overboard as they try to track down a prolific criminal mastermind. -(Funimation/Hulu) (crime drama like DN) - -[Psycho Pass OP 2]( https://www.youtube.com/watch?v=3DSQmBQ9EJk) - -- Mob Psycho 100 (2016) Action comedy about a psychic boy and his mentor a con artist fighting other psychics and the various spirits that plague their city while he learns to grow as a person. (Crunchyroll/Funimation) (Action/Adventure Other) (same creator as OPM) - -[Mob Psycho 100 OP] (https://www.youtube.com/watch?v=0lpApXzwAP0&index=2&list=FLsNBO_i0YOwmyoaxjB-AZ7g&t=0s) - -- Showa Genroku Rakugo Shinjuu (2016) Period drama that focuses on Rakugo actors. Takes place throughout the entire Showa Period (1920’s-80’s) and beyond as these actors attempt to preserve the dying theater art form through interpersonal and historic struggles. -(Crunchyroll/VRV) - -[Shouwa Genroku Rakugo Shinjuu S2 OP](https://www.youtube.com/watch?v=t1HjJfGt_xk) - - -- The Great Pretender (2020) Edamura Masato a Japanese con man gets himself swindled by an infamous French Mafia member and gets pulled into his line of dirty work. -(Netflix) (WIT same studio that animated AOT) - -[The Great Pretender OP](https://www.youtube.com/watch?v=Yjv_yFgHYc0) - -- Sword of the Stranger (2007) A boy Kotarou is on the run stealing from various villagers just to survive however is constantly on the run pursued by Ming assassins. Luckily the group meets up with Nanashi a nameless ronin who after being offered a gem he decides to join them as a bodyguard. (Funimation) (if you like this Ninja Scroll and the Dororo remake are worth checking out as well) - -[Sword of the Stranger English Trailer](https://www.youtube.com/watch?v=3vUpmcZRkRY) - -- Kimetsu no Yaiba (2019) Action shonen set during Taisho Era Japan about a young demon slayer who after finding his family murdered must find a cure to save his sister from turning into a demon. (Crunchyroll/VRV, Hulu, Funimation) (Historical) - -[Kimetsu no Yaiba OP]( https://www.youtube.com/watch?v=pmanD_s7G3U) - -- Vinland Saga(2019) Takes place in the early 11th century towards the end of the Viking Age. Thorfinn a young Icelander aims to take the head of Askeladd a leader of a band of Viking pirates to one day avenge his father Thors. - (Amazon Prime) (WIT same studio that did AOT) - -[Vinland Saga OP]( https://www.youtube.com/watch?v=7U7BDn-gU18)";False;False;;;;1610150470;;False;{};gilmmwn;False;t3_kt6fin;False;True;t3_kt6fin;/r/anime/comments/kt6fin/recommendations_for_a_newbie/gilmmwn/;1610192210;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Solomon_Black;;;[];;;;text;t2_zf8hk;False;False;[];;I think she’s the hottest in the show so far tbh;False;False;;;;1610150563;;False;{};gilmtln;False;t3_kt75px;False;False;t1_gil62qs;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gilmtln/;1610192311;7;True;False;anime;t5_2qh22;;0;[]; -[];;;JackandFred;;;[];;;;text;t2_qe3v8;False;False;[];;I would say mostly just a bit above average with some weird parts but it’s really elevated by the best parts like the ending;False;False;;;;1610150826;;False;{};gilnckb;False;t3_kt7qbe;False;True;t3_kt7qbe;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gilnckb/;1610192604;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Caramelsnack;;;[];;;;text;t2_436yoa4j;False;False;[];;They’ve apparently talked about adapting it since volume 2 lol. Which came out in summer 2018;False;False;;;;1610151276;;False;{};gilo8wk;False;t3_kt75px;False;False;t1_gilj9li;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gilo8wk/;1610193098;7;True;False;anime;t5_2qh22;;0;[]; -[];;;TheOneAboveGod;;;[];;;;text;t2_grcpz;False;False;[];;It's Ex-Wife now tho.;False;False;;;;1610151306;;False;{};gilob1k;False;t3_kt75px;False;False;t1_gil6p9h;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gilob1k/;1610193131;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Mikeng_0106;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MichaelK0106;light;text;t2_5ktn94g8;False;False;[];;Unpopular opinion but I don’t think the audience is involved enough in the strategy, all of us cluelessly love seeing Lelouche being awesome. We know the Death Note and we’re involved in it as Kira is exploring the limitations and rules of the power himself, which is what I’m looking for.;False;False;;;;1610151862;;1610152180.0;{};gilpevk;False;t3_kt7qbe;False;True;t3_kt7qbe;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gilpevk/;1610193768;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sigma621;;;[];;;;text;t2_8bzbhjen;False;False;[];;it's ok. not bad, not good. average;False;False;;;;1610152010;;False;{};gilppm2;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gilppm2/;1610193933;2;True;False;anime;t5_2qh22;;0;[]; -[];;;drink_bleach_and_die;;;[];;;;text;t2_bdftnf2;False;False;[];;That's the intuitive course of action for most people, but you miss out on a lot of great things that take time to properly develop. I can think of dozens of shows that didn't catch my attention in the first episode that I ended up enjoying.;False;False;;;;1610152071;;False;{};gilptsc;False;t3_kt6j2z;False;True;t1_gik78vr;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gilptsc/;1610193997;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AvatarAarow1;;;[];;;;text;t2_3ve7o5xz;False;False;[];;Just to echo, yes, it’s really solid. The dynamic between the main pair is one of my favorite in anime, and the dry deadpan humor is surprisingly good to me. One of my personal favorites;False;False;;;;1610152305;;False;{};gilqakq;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gilqakq/;1610194259;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AnchorBS;;;[];;;;text;t2_39fj211q;False;False;[];;Dude, there's nothing wrong with us holding our own opinions too. I don't really expect people to agree with me all the time either...;False;False;;;;1610152631;;False;{};gilqy69;False;t3_kt7qbe;False;False;t1_gilbbd9;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gilqy69/;1610194626;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;False;[];;"As a senior weeb at 40 it is my time to shine. - -Evangelion - -Slayers - -Rurouni Kenshin - -GTO";False;False;;;;1610152956;;False;{};gilrlmx;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gilrlmx/;1610194992;2;True;False;anime;t5_2qh22;;0;[]; -[];;;perlenYurifan4life;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/kiyuri/;light;text;t2_4qwrk23m;False;False;[];;Short but brilliant video. On the topic of Japanese forest, for those who are interested, I would like to share another great video on it: [Why Japan Isn't Cutting Down Enough of its Trees](https://www.youtube.com/watch?v=VC4gRGPbTqE) by *Life Where I'm From*.;False;False;;;;1610153031;;False;{};gilrqwp;False;t3_kt7xm7;False;True;t3_kt7xm7;/r/anime/comments/kt7xm7/yuru_camp_and_the_secret_life_of_japanese_forests/gilrqwp/;1610195073;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;I see your a fan of late 90’s anime and Evangelion, Kenshin and Gto are great series. Never seen Slayers tho;False;False;;;;1610153182;;False;{};gils1od;True;t3_kt7djy;False;True;t1_gilrlmx;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gils1od/;1610195245;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Leaves_Swype_Typos;;;[];;;;text;t2_arcs5;False;True;[];;"In a sense it is. You can't know how overrated something is until you've seen it yourself, and it's one of the most overrated shows in recent memory. - -^^^^^^^^^^^^incoming ^^^^^^^^^^^^downvotes";False;False;;;;1610154003;;False;{};giltonf;False;t3_kt6j2z;False;False;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/giltonf/;1610196204;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sharke000;;;[];;;;text;t2_1fpzutri;False;False;[];;Not even a surprise anymore lol. Keep jumping over the bar they set for themselves. Senkyu besto frendo.;False;False;;;;1610154030;;False;{};giltql3;False;t3_kt75px;False;False;t1_gil366k;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/giltql3/;1610196236;4;True;False;anime;t5_2qh22;;0;[]; -[];;;purinrinnn;;;[];;;;text;t2_8is753dc;False;False;[];;o7;False;False;;;;1610154084;;False;{};giltuh0;False;t3_kt75px;False;False;t1_gikzlhl;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/giltuh0/;1610196300;9;True;False;anime;t5_2qh22;;0;[]; -[];;;abockk;;;[];;;;text;t2_n6ln9;False;False;[];;it’s so good please watch it;False;False;;;;1610154217;;False;{};gilu40r;False;t3_kt6j2z;False;False;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gilu40r/;1610196458;2;True;False;anime;t5_2qh22;;0;[]; -[];;;uwatfordm8;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/luxwfc;light;text;t2_gviay;False;False;[];;"Lelouch himsrlf is great but I found most of the other main characters extremely unlikeable. If not unlikeable, then forgettable. - -The story was really good though, which certainly made up for most of that.";False;False;;;;1610154254;;False;{};gilu6ou;False;t3_kt7qbe;False;True;t3_kt7qbe;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gilu6ou/;1610196500;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;False;[];;I dropped off the map from about 2005 until around 2013, when I started watching stuff again. SAO was actually the show that got me back into anime. It still holds a special place in my heart because of that so it makes me sad when people hate on it.;False;False;;;;1610154270;;False;{};gilu7tu;False;t3_kt7djy;False;False;t1_gils1od;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gilu7tu/;1610196519;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;I also like sao and it’s kind of ridiculous that still gets as much hate as does;False;False;;;;1610154670;;False;{};gilv0kq;True;t3_kt7djy;False;True;t1_gilu7tu;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gilv0kq/;1610196984;1;True;False;anime;t5_2qh22;;0;[]; -[];;;God1is1love;;;[];;;;text;t2_49sqgiwk;False;False;[];;"I understood that reference. -&nbsp; -I'm not big on cussing but in my opinion it is the best poem.";False;False;;;;1610155118;;False;{};gilvwde;False;t3_kt6j2z;False;True;t1_gilmi4t;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gilvwde/;1610197514;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;False;[];;I did a full rewatch last Spring before War of Underworld part 2 aired, and I had forgotten how genuinely moved I was by certain parts of that show. Kirito and Asuna's relationship, Yuuki in Mother's Rosario, Red Nosed Reindeer, Gleam Eyes, there are some genuinely powerful moments in SAO. Alicization had a lot of them as well, especially toward the end.;False;False;;;;1610155186;;False;{};gilw176;False;t3_kt7djy;False;True;t1_gilv0kq;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gilw176/;1610197599;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Waaiez;;;[];;;;text;t2_vxz7w;False;False;[];;The ED looked amazing, I guess we know where most of their budget went;False;False;;;;1610155223;;False;{};gilw3uv;False;t3_kt5lad;False;False;t3_kt5lad;/r/anime/comments/kt5lad/idolls_episode_1_discussion/gilw3uv/;1610197646;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ngedown;;;[];;;;text;t2_12f3kt;False;False;[];;Yes;False;False;;;;1610155297;;False;{};gilw95g;False;t3_kt6j2z;False;True;t1_gik3dvg;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gilw95g/;1610197734;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;True sao has some great moments, my favorite scene in the whole franchise would to the final battle of ordinal scale;False;False;;;;1610155355;;False;{};gilwd5j;True;t3_kt7djy;False;True;t1_gilw176;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gilwd5j/;1610197800;1;True;False;anime;t5_2qh22;;0;[]; -[];;;infinite_lyy;;;[];;;;text;t2_9lftz77s;False;False;[];;"2009 is too recent by definition of the term retro! Lol most everything I watched is pre 2009 :( - -But my favorite actual retro anime should be the original Sailor Moon :))";False;False;;;;1610155428;;False;{};gilwi9g;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gilwi9g/;1610197885;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"Is it going just this tournament arc this cour? - -Or is there more arcs??";False;False;;;;1610155601;;False;{};gilwuf3;False;t3_kt75px;False;True;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gilwuf3/;1610198088;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;False;[];;I have to go back and watch that every once in a while. I wish it hadn't gone by so fast but holy shit was it good.;False;False;;;;1610155689;;False;{};gilx0nu;False;t3_kt7djy;False;True;t1_gilwd5j;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gilx0nu/;1610198191;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;Have you read the manga?;False;False;;;;1610155787;;False;{};gilx7h2;False;t3_kt75px;False;True;t1_gilwuf3;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gilx7h2/;1610198302;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Anon199760;;;[];;;;text;t2_49baaa9v;False;False;[];;As bad as when theres no comments on the episode after watching it;False;False;;;;1610156037;;False;{};gilxp2k;False;t3_kt84wj;False;True;t1_gikqfbw;/r/anime/comments/kt84wj/kings_raid_ishi_wo_tsugumonotachi_episode_15/gilxp2k/;1610198588;1;True;False;anime;t5_2qh22;;0;[]; -[];;;IOnlyDrinkJesusMilk;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3ksul5pu;False;False;[];;"I'm in the weird group of people that thought this show was ""fine"". I think it's an enjoyable watch, sure, but I really don't think it's as amazing as some people say.";False;False;;;;1610156076;;False;{};gilxrti;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gilxrti/;1610198633;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;No that is why I am asking;False;False;;;;1610156243;;False;{};gily3hm;False;t3_kt75px;False;True;t1_gilx7h2;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gily3hm/;1610198835;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;Go to that and as a light reader for sao you can look forward to even more great moments from progressive when that comes out;False;False;;;;1610156285;;False;{};gily6f4;True;t3_kt7djy;False;True;t1_gilx0nu;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gily6f4/;1610198886;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;False;[];;I'm halfway through Progressive 6 :-);False;False;;;;1610156401;;False;{};gilyedl;False;t3_kt7djy;False;True;t1_gily6f4;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gilyedl/;1610199050;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ygsil;;;[];;;;text;t2_494tbz80;False;False;[];;This trailer gives me nostalgic vibes for shaman king for some reason, might just be because it's coming soon and Mai reminding me of Jun and the girl on the broom of Matilda and even just the chill as hell MC;False;False;;;;1610156461;;False;{};gilyikz;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gilyikz/;1610199122;6;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;"The anime has currently adapted 31 chapters. - -The Kyoto Goodwill is 23 chapters long and goes up to chapter 54. The following arc is a short one, consisting of 9 chapters so in total, it will go up to chapter 64. - -So no one really knows what they'll do. They can in theory cover one more arc but who knows whether they plan to and who knows whether the animation will suffer but it's a possibility. TOHO and Mappa may only cover the Kyoto Goodwill Arc but they currently have a lot of episodes for only 23 chapters... maybe they'll go for slower pacing but no one really knows.";False;False;;;;1610156918;;False;{};gilze20;False;t3_kt75px;False;False;t1_gily3hm;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gilze20/;1610199655;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;Don’t spoil it I’m still on vol 4;False;False;;;;1610157153;;False;{};gilzu6q;True;t3_kt7djy;False;True;t1_gilyedl;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gilzu6q/;1610199924;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PhantomWolf83;;;[];;;;text;t2_wxq1l;False;False;[];;Well, that was okay, I guess. The characters and humor were average and I found the motion capture animation to be quite good, at least it's hell of a lot better than the trainwrecks that Naria Girls and Dimension High School were. Since it's so short, I think I can give it a shot.;False;False;;;;1610157293;;False;{};gim03sb;False;t3_kt5lad;False;True;t3_kt5lad;/r/anime/comments/kt5lad/idolls_episode_1_discussion/gim03sb/;1610200093;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;False;[];;"I won't. 7 comes out this March so I'm trying not to hurry through it. I finished all of the so far written Re:Zero web novel so I'm starved for something good to read since I often read about 2-3 hours every night, making it hard for me not to tear through Progressive. - -Maybe I'll pick up Shield Hero...";False;False;;;;1610157343;;False;{};gim07ad;False;t3_kt7djy;False;True;t1_gilzu6q;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gim07ad/;1610200152;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;You should read Konosuba it’s only book that has ever made laugh out loud;False;False;;;;1610157446;;False;{};gim0ecx;True;t3_kt7djy;False;True;t1_gim07ad;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gim0ecx/;1610200277;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;False;[];;I tried volume 6 after the movie came out and it just wasn't for me. I LOVE the show, but the novel just didn't hold my attention.;False;False;;;;1610157536;;False;{};gim0kj4;False;t3_kt7djy;False;True;t1_gim0ecx;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gim0kj4/;1610200383;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;That’s a shame another one I recommend is no game no life as also a fun a read;False;False;;;;1610157616;;False;{};gim0q27;True;t3_kt7djy;False;False;t1_gim0kj4;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gim0q27/;1610200478;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigdanrog;;;[];;;;text;t2_6jawo;False;False;[];;I own but still haven't read Moon Cradle maybe I'll jump on that. I watched NGNL so long and so many beers ago I can't remember much of it at all.;False;False;;;;1610157789;;False;{};gim11zu;False;t3_kt7djy;False;True;t1_gim0q27;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gim11zu/;1610200680;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Jacktwelve17;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Jacktwelve17;light;text;t2_5bm469h7;False;False;[];;Well I think NGNL is worth a read. Moon cradle was a decent sao side story that I hope get adapted eventually;False;False;;;;1610157944;;False;{};gim1cnj;True;t3_kt7djy;False;True;t1_gim11zu;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gim1cnj/;1610200863;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FunnunoTsumi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Bakusatsuou;light;text;t2_3tfzpdgh;False;False;[];;Not probably, exactly 2 scenes lol;False;False;;;;1610158139;;False;{};gim1q67;False;t3_kt6j2z;False;False;t1_gilac97;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gim1q67/;1610201098;4;True;False;anime;t5_2qh22;;0;[]; -[];;;TheCrows7;;;[];;;;text;t2_57cnvnvx;False;False;[];;It’s amazing, the further into the anime you get the better it becomes. It’s currently in my top 5 and something I am considering rewatching in the future;False;False;;;;1610158436;;False;{};gim2ant;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gim2ant/;1610201455;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fatboi173;;;[];;;;text;t2_30p4dsh2;False;False;[];;Yes. If anything the First 3 eps are a must;False;False;;;;1610158596;;False;{};gim2lnp;False;t3_kt6j2z;False;False;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gim2lnp/;1610201649;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Soap646464;;;[];;;;text;t2_2nr0birw;False;False;[];;yes;False;False;;;;1610158817;;False;{};gim312y;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gim312y/;1610201922;1;True;False;anime;t5_2qh22;;0;[]; -[];;;supagramm;;;[];;;;text;t2_7rfatdzr;False;True;[];;Not liking that show that much. It was bit overhyped, people claiming it would be the big next thing, but overall , I don't think the main characters are that interesting or that it is doing something that has never been done before. It feels generic.;False;True;;comment score below threshold;;1610159055;;False;{};gim3hpr;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gim3hpr/;1610202208;-12;True;False;anime;t5_2qh22;;0;[]; -[];;;Viovallo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/LordVallo/;light;text;t2_ri2a8vg;False;False;[];;"Yeah I also highly doubt that there is gonna be more of the original lineup. - -Will see how all of turns out this time, not sure if I like all the idol stuff, but I will watch anyways. Good OST as usual!";False;False;;;;1610159124;;False;{};gim3mf7;False;t3_kt7bpo;False;False;t1_gikb7u3;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gim3mf7/;1610202290;5;True;False;anime;t5_2qh22;;0;[]; -[];;;LeoGiacometti;;;[];;;;text;t2_13n8qv;False;False;[];;Depends on what you expect from it. It's good in a way, but if you're not looking specifically for existential/psychological drama it could be really boring. Also, characters are well written but I could easily see people finding some of them annoying.;False;False;;;;1610159164;;False;{};gim3p9t;False;t3_kt6j2z;False;False;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gim3p9t/;1610202341;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LeoGiacometti;;;[];;;;text;t2_13n8qv;False;False;[];;Just watch it bro, if you like you like it. If you don't, there are hundreds of shows out there waiting for you.;False;False;;;;1610159288;;False;{};gim3xrg;False;t3_kt6j2z;False;True;t1_gil2uej;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gim3xrg/;1610202487;0;True;False;anime;t5_2qh22;;0;[]; -[];;;tsogo111;;;[];;;;text;t2_2prh558z;False;False;[];;After all the messed up shit happening, we gonna get a tournament arc?;False;False;;;;1610159934;;False;{};gim56x8;False;t3_kt75px;False;True;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gim56x8/;1610203284;3;True;False;anime;t5_2qh22;;0;[]; -[];;;haitamsusanoo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/hsusanoo/;light;text;t2_1x2dcesp;False;False;[];;So we're getting a my hero academia arc?;False;False;;;;1610160169;;False;{};gim5nl4;False;t3_kt75px;False;True;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gim5nl4/;1610203586;1;True;False;anime;t5_2qh22;;0;[]; -[];;;knokaka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/knokaka?order=4;light;text;t2_ytri4;False;False;[];;idk how man can dedicated their time to make that complicated chart. total dedication.;False;False;;;;1610160234;;False;{};gim5s5f;False;t3_kt6j2z;False;True;t1_gik78vr;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gim5s5f/;1610203667;1;True;False;anime;t5_2qh22;;0;[]; -[];;;knokaka;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/knokaka?order=4;light;text;t2_ytri4;False;False;[];;"if you want a funny & comprehensive review. watch gigguk video about bunny girl senpai.";False;False;;;;1610160334;;False;{};gim5z8x;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gim5z8x/;1610203798;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Astray;;;[];;;;text;t2_5dl7y;False;False;[];;Certainly looks like a TOURNAMENT ARC to me.;False;False;;;;1610160747;;False;{};gim6s73;False;t3_kt75px;False;False;t1_giknm3g;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gim6s73/;1610204313;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Akio_Kizu;;;[];;;;text;t2_645h2ay4;False;False;[];;"It’s pure brilliance -And don’t get the movie spoiled -But if you do -Watch it anyway -Worth every minute";False;False;;;;1610160968;;False;{};gim77mo;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gim77mo/;1610204594;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Lohtric;;;[];;;;text;t2_10buyw;False;False;[];;Too bad Attack on Titan is suffering because of this;False;True;;comment score below threshold;;1610160979;;False;{};gim78dz;False;t3_kt75px;False;True;t1_gik7spl;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gim78dz/;1610204607;-60;True;False;anime;t5_2qh22;;0;[]; -[];;;L_0ken;;;[];;;;text;t2_xcsrt;False;False;[];;I mean same could be said about Demon Slayer, yet look how things turned out to be... Jujutsu already selling like a hot cakes but I doubt it will reach the insanity that is Demon Slayer popularity.;False;False;;;;1610161702;;False;{};gim8mel;False;t3_kt75px;False;False;t1_gim3hpr;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gim8mel/;1610205480;8;True;False;anime;t5_2qh22;;0;[]; -[];;;drybones2015;;;[];;;;text;t2_g9k7t;False;False;[];;It's not at all.;False;False;;;;1610161943;;False;{};gim931j;False;t3_kt75px;False;False;t1_gikolsf;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gim931j/;1610205774;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Peachykinz;;;[];;;;text;t2_5foyvjus;False;False;[];;i am trying to stay neutral in answer so i don't spoil anything;False;False;;;;1610161998;;False;{};gim96nl;False;t3_kt75px;False;True;t1_gim931j;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gim96nl/;1610205839;2;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;Cuz of what?;False;False;;;;1610162054;;False;{};gim9acs;False;t3_kt75px;False;False;t1_gim78dz;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gim9acs/;1610205904;12;True;False;anime;t5_2qh22;;0;[]; -[];;;DiMezenburg;;;[];;;;text;t2_8l9xqmbn;False;False;[];;hype;False;False;;;;1610162061;;False;{};gim9avp;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gim9avp/;1610205913;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;A Yu Yu Hakusho arc;False;False;;;;1610162099;;False;{};gim9dft;False;t3_kt75px;False;False;t1_gim5nl4;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gim9dft/;1610205959;11;True;False;anime;t5_2qh22;;0;[]; -[];;;sunjay140;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/sunjay140/;light;text;t2_cg1ro;False;False;[];;" ->people claiming it would be the big next thing - -It already is. Have you seen the sales numbers? Jujutsu Kaisen is sold out everywhere in Japan. Book stores are limiting manga copies to 1 copy per person and yet they're still running out of copies, it's almost impossible to walk into a book store and get a copy of Jujutsu Kaisen since stores don't have anymore copies left. [JJK has outsold Black Clover's lifetime sales without much help from the anime](https://pbs.twimg.com/media/EqApxjHW8AAAgOn?format=jpg&name=4096x4096). Jujutsu Kaisen sold 5 million copies in just [over a month,](https://www.crunchyroll.com/en-gb/anime-news/2020/12/16/jujutsu-kaisen-manga-boasts-more-than-15-million-copies-printed-and-sold) that's almost half of Black Clover's lifetime sales... those kinds of sales numbers are not normal for a series. - -It's no Demon Slayer but Jujutsu Kaisen is currently more popular than My Hero Academia when it was at the point that JJK is currently at.";False;False;;;;1610162185;;1610169152.0;{};gim9j76;False;t3_kt75px;False;False;t1_gim3hpr;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gim9j76/;1610206064;9;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610162188;;False;{};gim9je7;False;t3_kt75px;False;True;t1_gikdqri;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gim9je7/;1610206068;1;True;False;anime;t5_2qh22;;0;[]; -[];;;drybones2015;;;[];;;;text;t2_g9k7t;False;False;[];;They did ask after all. Even then I think there are ways to not spoil without being misleading.;False;False;;;;1610162301;;False;{};gim9r1q;False;t3_kt75px;False;True;t1_gim96nl;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gim9r1q/;1610206215;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JuicyDragonCat;;;[];;;;text;t2_45tgc23z;False;False;[];;Nah you're more stupid here for failing to pick up obvious sarcasm and a joke;False;False;;;;1610162347;;False;{};gim9u76;False;t3_kt75px;False;True;t1_gikku5c;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gim9u76/;1610206276;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;He doesn't want to brainwash his best friend.;False;False;;;;1610162493;;False;{};gima3po;False;t3_kt7qbe;False;True;t1_gil7s4i;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gima3po/;1610206459;2;True;False;anime;t5_2qh22;;0;[]; -[];;;420weerrr;;;[];;;;text;t2_664t3ze;False;False;[];;I personally thought it was pretty cliched and dating sim esque. Not a low brow dating sim by any means but it was trying to emulate those old school dating sins that I used to like as a teen that now make me cringe because nobody acts like the characters do in real life. Like it tried to be like grisaia or that type of thing you know? A very old fashioned style remade in the modern day but without anything much actually new to the formula. In comparison monogatari takes the same formula but makes it a lot more interesting by deviating from it. Grisaia makes me cringe and similarly so does BGS, it's appealing to a very specific age group I feel though (teenage boys usually highschoolers). Meanwhile I watched the last seasons of monogatari now as a post college grad and it felt even more relevant to me now than it did when I first started it in highschool lol;False;False;;;;1610162945;;1610163219.0;{};gimaxzr;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gimaxzr/;1610207009;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Chihiro9942;;;[];;;;text;t2_9egvhru4;False;False;[];;"Naruhisa Arakawa was responsible for Series Composition in Active Raid. - -Goro was only directing. - -So what you'll want to look at is Kazuki Nakashima who's responsible for Series Composition and Skript in Back Arrow. - -I'm personally not really a fan of Trigger Shows or Lagann for that matter, but looking at Kazuki is probably a much better indicator of Story & Plot. - -Although i actually think they came up with this story together, at least i wouldn't be surprised, someone had to have the idea at first and no one is credited as the oc so it would make sense.";False;False;;;;1610163097;;False;{};gimb824;False;t3_kt5ab0;False;True;t1_gikmll6;/r/anime/comments/kt5ab0/original_tv_anime_back_arrow_is_listed_with_a/gimb824/;1610207203;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Webfat;;;[];;;;text;t2_9dj2dha;False;False;[];;"Yeah this is will be a pass to me, I not a fan of idols shows but I give a chance to this one because of Wixoss, but there are somethings that is bothering me on this one. - - -1- This first episode feels incredibly rushed, I don't have time to connect with any of the charactes and a lot of things happens in the first episode, decisive party is set up, some bully characters appears but has so little screentime that is hard to compare with some intenses characters like Akira Aoi. - - -2- SP system, one of the things I like Wixoss is because the battles give the sentiment of loneliness and despair when somenone loses and this someone can't do anything about it. Seen this types of battles with so many people seeing and cheering... It kinda loses the tension of the battle, seems like nothing really major is on the line. - - -3- Animation, is more for the bad side than for the good side, some frames are reused on the same episode, this is definitely not a good sign. - - -Overall Im kinda sad, really like Wixoss when it was airing and when I seeing new anime with the branch I kinda have my expectations up. I really hope I am wrong on this one and it turns to be a hidden gem";False;False;;;;1610163400;;1610163644.0;{};gimbs0k;False;t3_kt7bpo;False;False;t3_kt7bpo;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gimbs0k/;1610207594;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Caramelsnack;;;[];;;;text;t2_436yoa4j;False;False;[];;We don’t care. Why you here if you don’t like it anyway lol;False;False;;;;1610163469;;False;{};gimbwj2;False;t3_kt75px;False;False;t1_gim3hpr;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimbwj2/;1610207675;9;True;False;anime;t5_2qh22;;0;[]; -[];;;supagramm;;;[];;;;text;t2_7rfatdzr;False;True;[];;"> We don’t care. Why you here if you don’t like it anyway lol - - -Who's we? You care enough to comment.";False;True;;comment score below threshold;;1610163900;;False;{};gimcorp;False;t3_kt75px;False;False;t1_gimbwj2;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimcorp/;1610208217;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;newtangclan;;;[];;;;text;t2_4004ba8t;False;False;[];;I'm guessing they are saying the budget is going to this instead of AoT;False;False;;;;1610164065;;False;{};gimczgr;False;t3_kt75px;False;False;t1_gim9acs;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimczgr/;1610208416;10;True;False;anime;t5_2qh22;;0;[]; -[];;;ffflecks;;;[];;;;text;t2_5g5he;False;False;[];;yup;False;False;;;;1610164400;;False;{};gimdl0b;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gimdl0b/;1610208825;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Lohtric;;;[];;;;text;t2_10buyw;False;False;[];;the shitty CGi;False;True;;comment score below threshold;;1610164678;;False;{};gime2rn;False;t3_kt75px;False;True;t1_gim9acs;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gime2rn/;1610209159;-15;True;False;anime;t5_2qh22;;0;[]; -[];;;Royal_Heritage;;;[];;;;text;t2_8wglzuge;False;False;[];;It felt incredibly average on all departments, from animation to storywriting to relatable characters.;False;False;;;;1610164698;;False;{};gime43v;False;t3_kt6j2z;False;True;t1_gil4mil;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gime43v/;1610209186;3;False;False;anime;t5_2qh22;;0;[]; -[];;;leon950611;;;[];;;;text;t2_vdza5;False;False;[];;Final season of aot has more budget than any of the previous seasons;False;False;;;;1610164738;;False;{};gime6p9;False;t3_kt75px;False;False;t1_gim78dz;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gime6p9/;1610209233;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Lohtric;;;[];;;;text;t2_10buyw;False;False;[];;and it looks shittier than the previous ones;False;True;;comment score below threshold;;1610164879;;False;{};gimeft7;False;t3_kt75px;False;True;t1_gime6p9;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimeft7/;1610209409;-53;True;False;anime;t5_2qh22;;0;[]; -[];;;spinfinity;;;[];;;;text;t2_6czvz;False;False;[];;"""BEST-O FRIEND-O!!!"" - -Hell. Yeah. I can't wait.";False;False;;;;1610164908;;False;{};gimehmw;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimehmw/;1610209441;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610165071;;False;{};gimeryk;False;t3_kt75px;False;True;t1_gilmtln;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimeryk/;1610209657;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MSB1101;;;[];;;;text;t2_28mbhxhi;False;False;[];;You might need to change the quality to 720p;False;False;;;;1610165561;;False;{};gimfn8v;False;t3_kt75px;False;False;t1_gimeft7;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimfn8v/;1610210332;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Brandon_2149;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Brandon2149;light;text;t2_162r8p;False;False;[];;Series is decent, movie is a disaster. Watch it, maybe you will like it more than me.;False;False;;;;1610165851;;False;{};gimg5co;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gimg5co/;1610210716;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lohtric;;;[];;;;text;t2_10buyw;False;False;[];;but its already in 4k;False;True;;comment score below threshold;;1610166269;;False;{};gimgv6m;False;t3_kt75px;False;True;t1_gimfn8v;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimgv6m/;1610211197;-32;True;False;anime;t5_2qh22;;0;[]; -[];;;itsNezu;;;[];;;;text;t2_btyb68d;False;False;[];;uhm, pretty sure these are all things Akira did in the first season as well lmao;False;False;;;;1610166672;;False;{};gimhkaq;False;t3_kt7bpo;False;True;t1_giklv1x;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gimhkaq/;1610211664;3;True;False;anime;t5_2qh22;;0;[]; -[];;;adeleke5140;;;[];;;;text;t2_10tpx9;False;False;[];;Really? I couldn't get last the first episode;False;False;;;;1610166745;;False;{};gimhoty;False;t3_kt84wj;False;True;t1_gill919;/r/anime/comments/kt84wj/kings_raid_ishi_wo_tsugumonotachi_episode_15/gimhoty/;1610211748;1;True;False;anime;t5_2qh22;;0;[]; -[];;;souther1983;;;[];;;;text;t2_g62in;False;False;[];;That was a different type of series, from another genre, not even from the same studio, and Taniguchi was only chief director rather than the main director.;False;False;;;;1610166854;;False;{};gimhvl3;False;t3_kt5ab0;False;True;t1_gikmll6;/r/anime/comments/kt5ab0/original_tv_anime_back_arrow_is_listed_with_a/gimhvl3/;1610211873;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AdamGoodtime123;;;[];;;;text;t2_3okyaqk1;False;False;[];;I think I'm going to drop this one. It's not particularly bad per se, but it hasn't caught my interest and this season is stacked with anime more worth my time.;False;False;;;;1610166949;;False;{};gimi1is;False;t3_kt5lad;False;False;t3_kt5lad;/r/anime/comments/kt5lad/idolls_episode_1_discussion/gimi1is/;1610211979;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheWrittenLore;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Traynjos000;light;text;t2_ouc2a;False;False;[];;Remember, Studio VOLN did I Want to Eat Your Pancreas as well.;False;False;;;;1610167422;;False;{};gimiuif;False;t3_kt5ab0;False;True;t3_kt5ab0;/r/anime/comments/kt5ab0/original_tv_anime_back_arrow_is_listed_with_a/gimiuif/;1610212509;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sitwm;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/BlueMoon01;light;text;t2_xft1z;False;False;[];;Nothing tops Eve I guess :(;False;False;;;;1610167510;;False;{};gimizt3;False;t3_kt75px;False;True;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimizt3/;1610212630;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Caramelsnack;;;[];;;;text;t2_436yoa4j;False;False;[];;That ain’t what we discussing buddy lol. Why are you here;False;False;;;;1610167872;;False;{};gimjllo;False;t3_kt75px;False;False;t1_gimcorp;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimjllo/;1610213056;7;True;False;anime;t5_2qh22;;0;[]; -[];;;country-toad;;;[];;;;text;t2_5o1t7lb7;False;False;[];;"How I'm imagining how Toudo's and Yuji's first interaction will be like - -Toudou: What type of girls do you like, Itadori? - -Yuji: JENIFER LAWRENCE";False;False;;;;1610168665;;False;{};gimkwnu;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimkwnu/;1610213971;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Xavion15;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_mrb4o;False;False;[];;"No it literally does not - -It has looked just as good as always - -The difference is you aren’t seeing a lot of combat yet";False;False;;;;1610168734;;False;{};giml0ls;False;t3_kt75px;False;False;t1_gimeft7;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/giml0ls/;1610214052;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Cuddlyaxe;;;[];;;;text;t2_ftpsl;False;True;[];;Turn it on;False;False;;;;1610169394;;False;{};gimm2a8;False;t3_kt6j2z;False;True;t1_gil9csb;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gimm2a8/;1610214749;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Lohtric;;;[];;;;text;t2_10buyw;False;False;[];;every time there is a titan on screen it looks horrible, besides some scenes. the next episodes will look so awkward its not even funny;False;True;;comment score below threshold;;1610169401;;False;{};gimm2oy;False;t3_kt75px;False;True;t1_giml0ls;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimm2oy/;1610214757;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;Cire101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cire101;light;text;t2_oryv2;False;False;[];;I think Sakuta is hilarious, with his super dry and perverted humor lol. I'd say at least watch 3 episodes, if you don't like it from there you could drop.;False;False;;;;1610169768;;False;{};gimmn7a;False;t3_kt6j2z;False;False;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gimmn7a/;1610215164;6;True;False;anime;t5_2qh22;;0;[]; -[];;;samflowerseeds;;;[];;;;text;t2_10lcv8;False;False;[];;It’s an anime that I didn’t have the energy to finish... I did enjoy it a bit at first but I don’t know, it fell off..;False;False;;;;1610170058;;False;{};gimn3ov;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gimn3ov/;1610215469;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610170559;;False;{};gimnw2j;False;t3_kt75px;False;True;t1_gimm2oy;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimnw2j/;1610216024;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xavion15;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_mrb4o;False;False;[];;Alright man, whatever you say;False;False;;;;1610170588;;False;{};gimnxoo;False;t3_kt75px;False;False;t1_gimm2oy;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimnxoo/;1610216052;13;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610170680;;False;{};gimo2ll;False;t3_kt75px;False;True;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimo2ll/;1610216159;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hahajustburn;;;[];;;;text;t2_4n5tnnwp;False;False;[];;Well, yes and no.;False;False;;;;1610170682;;False;{};gimo2qt;False;t3_kt75px;False;False;t1_gim56x8;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimo2qt/;1610216161;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Lohtric;;;[];;;;text;t2_10buyw;False;False;[];;yeah for 10 whole seconds. PogChamp;False;False;;;;1610170780;;False;{};gimo7up;False;t3_kt75px;False;True;t1_gimnw2j;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimo7up/;1610216260;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lohtric;;;[];;;;text;t2_10buyw;False;False;[];;conceding are we?;False;True;;comment score below threshold;;1610170831;;False;{};gimoam1;False;t3_kt75px;False;True;t1_gimnxoo;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimoam1/;1610216312;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;zest88;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/zesty79740555;light;text;t2_5tcnkyer;False;False;[];;" [**Oniisama e...**](https://myanimelist.net/anime/795/Oniisama_e) - - -is my favourite retro anime";False;False;;;;1610170932;;False;{};gimog28;False;t3_kt7djy;False;True;t3_kt7djy;/r/anime/comments/kt7djy/what_is_your_favorite_old_anime/gimog28/;1610216413;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610171129;;False;{};gimoqp2;False;t3_kt75px;False;True;t1_gimo7up;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimoqp2/;1610216611;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bleachalternative;;;[];;;;text;t2_l4hf0u7;False;False;[];;"LET THE UTAHIME BRAINROT COMMENCE - -Ready to see the badassery unfold! Maki and Panda let’s go!!!";False;False;;;;1610171345;;False;{};gimp22r;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimp22r/;1610216847;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Bite490;;;[];;;;text;t2_5ncilkgd;False;False;[];;"I actually just finished rewatching it yesterday. I saw a comment say it really depends on what arcs you like, and while that's very true, I'd say if you don't like the first three episodes then don't bother. The movie is the best part of the series, and it's tied into the first arc way more than any other part of the show. - -If you're talking about just the series on its own it's sort of the same deal. There are five arcs in the show each dedicated to one girl and they only have 13 episodes to tell all their stories. Ultimately they can only get so deep into them, so while you won't have to suffer very long through an arc you find boring, you also probably won't be satisfied with the arcs that you do end up liking since it'll be focused on for only 2-3 episodes. The overall effect is a somewhat rushed show in nearly every aspect, such as in character development, depth, plot, and character relationships. The movie is a kind of essential supplement as while it doesn't expand on every arc, it rounds out the story in general for a bit more of a satisfying conclusion. - -So in the end, I'd say check out the first three episodes. If you like them, I'd highly recommend watching the whole series and the movie afterwards. If you don't care for them, you can check out a couple of the first minutes of the others arcs to see if you wanna watch them individually but I would say it's probably not worth your time.";False;False;;;;1610171795;;False;{};gimppei;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gimppei/;1610217294;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Xavion15;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_mrb4o;False;False;[];;No, I can recognize when it’s pointless to waste my time on someone;False;False;;;;1610172031;;False;{};gimq1jj;False;t3_kt75px;False;False;t1_gimoam1;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimq1jj/;1610217517;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Lohtric;;;[];;;;text;t2_10buyw;False;False;[];;lmao nice downvote. looks like i hit a nerve. also you are lying. you still are wasting time talking to me;False;True;;comment score below threshold;;1610172204;;False;{};gimqa8h;False;t3_kt75px;False;True;t1_gimq1jj;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimqa8h/;1610217684;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;Funlife2003;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/andril;dark;text;t2_2vz3e4x7;False;False;[];;Yes;False;False;;;;1610172788;;False;{};gimr3e3;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gimr3e3/;1610218242;1;True;False;anime;t5_2qh22;;0;[]; -[];;;penis111111111111111;;;[];;;;text;t2_16fwgk;False;False;[];;"Nobara has her dynamic with yuji and miwa has her cuteness with gojo. Mai didnt really stand out in comparison. - -Ah shit you said maki lol. Though she didnt stand out much either, she had a cute moment with nobara saying that she looked up to her";False;False;;;;1610172870;;1610202065.0;{};gimr7ea;False;t3_kt75px;False;True;t1_gilmtln;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimr7ea/;1610218316;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Sfantul119;;;[];;;;text;t2_7v7j5h;False;False;[];;Maybe start watching from episode 13 onwards since 13, is recap of 1-12;False;False;;;;1610173398;;False;{};gimrx0g;False;t3_kt84wj;False;True;t1_gimhoty;/r/anime/comments/kt84wj/kings_raid_ishi_wo_tsugumonotachi_episode_15/gimrx0g/;1610218793;2;True;False;anime;t5_2qh22;;0;[]; -[];;;miragebreaker;;;[];;;;text;t2_d9b003q;False;False;[];;Who Ya for OP is hype.;False;False;;;;1610173417;;False;{};gimrxx3;False;t3_kt75px;False;False;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimrxx3/;1610218809;6;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;Yes, it very much is. It's like a bastard child of Monogatari and Oregairu, though not as good as them. (Well, IMO it's better than Oregairu S2-3, but I know I'm in the minority there.);False;False;;;;1610173647;;False;{};gims8sn;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gims8sn/;1610219008;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"I only watched the first two Wixxoss'. Wonder if there's any relation tho. - -Anyway, this wasn't bad. And so far there's no indication that it will go dark. The ""Accepted"" thing probably means some supernatural stuff will happen, but no foreshadowing that it'll be suffering.";False;False;;;;1610173934;;False;{};gimsm4j;False;t3_kt7bpo;False;True;t3_kt7bpo;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gimsm4j/;1610219260;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"> Main character won by topdecking - -Was that what it was? I mean there's no way the ""Piece"" is just a ""You Win Once You Draw This"" card, is it? It can't be *that* dumb!";False;False;;;;1610174012;;False;{};gimspqg;False;t3_kt7bpo;False;True;t1_giklv1x;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gimspqg/;1610219329;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Mai says ara ara, this means 10 points ahead of the competition;False;False;;;;1610174196;;1610177242.0;{};gimsy88;False;t3_kt75px;False;False;t1_gimr7ea;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimsy88/;1610219484;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610174319;;False;{};gimt3x3;False;t3_kt75px;False;True;t1_gim931j;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimt3x3/;1610219601;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DerfK;;;[];;;;text;t2_cm26w;False;False;[];;Instructions unclear. I thought I pushed all the right buttons but she's leaving me for the toaster.;False;False;;;;1610174392;;False;{};gimt7am;False;t3_kt6j2z;False;True;t1_gimm2a8;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gimt7am/;1610219666;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Preg_Chad;;;[];;;;text;t2_7j5armi4;False;False;[];;"> including pregnancy - -Patrician taste";False;False;;;;1610174683;;False;{};gimtkm7;False;t3_kt9rcs;False;False;t1_gilix5x;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimtkm7/;1610219907;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Redmon425;;;[];;;;text;t2_15ro6h;False;False;[];;"I am actually surprised by what I am about to say... I low-key liked this a lot! - -First off, the MC already is making out with the thick childhood friend. Like hell yeah! Give me that fast paced action. - -Then the girl even states how the other sage overcome the headaches by kissing his ""wives"", hinting right away that our dude will get a harem!!! - -Plus we got a sister who has the hots for her brother, while the brother doesn't seem to mine ;) Wonder where that will take us... - -And lastly, an ARA ARA Waifu locked up in a dungeon... what more can I say! - -I AM SO IN ON THIS SERIES!";False;False;;;;1610174759;;False;{};gimto3y;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimto3y/;1610219971;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Solomon_Black;;;[];;;;text;t2_zf8hk;False;False;[];;She simply looks the best to me. She’s hot in those shorts and glasses in general.;False;False;;;;1610174856;;False;{};gimtsg8;False;t3_kt75px;False;True;t1_gimr7ea;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimtsg8/;1610220062;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Delcan_;;;[];;;;text;t2_1hhpxlj0;False;False;[];;That's.. not a palindrome;False;False;;;;1610175215;;False;{};gimu8ky;False;t3_kt6j2z;False;False;t1_gil5fpk;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gimu8ky/;1610220362;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Xarionel;;;[];;;;text;t2_35dbg0au;False;False;[];;Great Sage doesn't need LP tho. I'm still wondering why didn't Noir just ask Great Sage how to free her;False;False;;;;1610175665;;False;{};gimusl3;False;t3_kt9rcs;False;True;t1_giktzub;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimusl3/;1610220733;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saga999;;;[];;;;text;t2_9ppe9;False;False;[];;I demand a crisis event to merge all those cities into the same world.;False;False;;;;1610176161;;False;{};gimvdt0;False;t3_kt9rcs;False;True;t1_giktpez;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimvdt0/;1610221132;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Domia_abr_Wyrda;;;[];;;;text;t2_64sij927;False;False;[];;Take a bath with the toaster first.;False;False;;;;1610176226;;False;{};gimvgoo;False;t3_kt6j2z;False;True;t1_gimt7am;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gimvgoo/;1610221182;1;True;False;anime;t5_2qh22;;0;[]; -[];;;saga999;;;[];;;;text;t2_9ppe9;False;False;[];;I thought he would massage her shoulder and get some sweet sweet LP while at it.;False;False;;;;1610176256;;False;{};gimvhwu;False;t3_kt9rcs;False;False;t1_giksayj;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimvhwu/;1610221205;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Shreks-SwampAss;;;[];;;;text;t2_8q3ppmac;False;False;[];;Yes. It's good, but it's not amazing like the circlejerkers would have you believe. After the first six episodes the arcs are significantly worse.;False;False;;;;1610176498;;False;{};gimvs0n;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gimvs0n/;1610221394;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shreks-SwampAss;;;[];;;;text;t2_8q3ppmac;False;False;[];;Interesting that you would compare it to Monogatari, since Mai and Sakuta are just watered down versions of Senjougahara and Araragi.;False;False;;;;1610176693;;False;{};gimw03z;False;t3_kt6j2z;False;False;t1_gik3i6k;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gimw03z/;1610221541;9;True;False;anime;t5_2qh22;;0;[]; -[];;;machopsychologist;;;[];;;;text;t2_1nsz447e;False;False;[];;Great that's 3 great sages we got this season... ... so far;False;False;;;;1610176836;;False;{};gimw5xh;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimw5xh/;1610221648;2;True;False;anime;t5_2qh22;;0;[]; -[];;;semprotanbayigonTM;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/levleft/;light;text;t2_6bjfk6ak;False;False;[];;It's manga thingy. You'll find out later.;False;False;;;;1610177158;;False;{};gimwj1d;False;t3_kt75px;False;True;t1_gikklw0;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimwj1d/;1610221897;3;True;False;anime;t5_2qh22;;0;[]; -[];;;LittleWompRat;;;[];;;;text;t2_54bxq18h;False;False;[];;Her voice is asmr to my ear.;False;False;;;;1610177198;;False;{};gimwklv;False;t3_kt75px;False;False;t1_gilmtln;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimwklv/;1610221943;3;True;False;anime;t5_2qh22;;0;[]; -[];;;asslavz;;;[];;;;text;t2_6z9yqdla;False;False;[];;We have to see then start the kiss it doesnt coumt if it starts from the middle;False;False;;;;1610177209;;False;{};gimwl10;False;t3_kt9rcs;False;False;t1_gilrt85;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimwl10/;1610221950;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Karma110;;;[];;;;text;t2_1q9bre0q;False;False;[];;Oh I’m actually caught up I meant specifically in the anime with voice acting.;False;False;;;;1610177213;;False;{};gimwl83;False;t3_kt75px;False;False;t1_gimwj1d;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimwl83/;1610221955;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Cybersteel;;;[];;;;text;t2_dpy8o;False;False;[];;Still technically an isakai. But to the future instead of another world.;False;False;;;;1610177360;;False;{};gimwr8d;False;t3_kt9rcs;False;True;t1_gilfjxl;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimwr8d/;1610222066;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SMRchdon075;;;[];;;;text;t2_76awkk6i;False;False;[];;Yessssss boi;False;False;;;;1610177363;;False;{};gimwrc6;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gimwrc6/;1610222068;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LittleWompRat;;;[];;;;text;t2_54bxq18h;False;False;[];;" ->maybe they'll go for slower pacing but no one really knows. - -This arc will be full of fight. Slower pacing would only drag it. I believe they're gonna also adapt the next arc.";False;False;;;;1610177396;;False;{};gimwsnv;False;t3_kt75px;False;True;t1_gilze20;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gimwsnv/;1610222101;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;"Don't know why you're getting downvoted for simply saying that it's similar to most isekai (only because most isekai is bottom-of-the-barrel power fantasy). - -Although I don't know what traditional fantasy consists of in Japan, what I assume it is is what JRPGs stories are so it might actually be close to that. The one that comes closest to a western traditional fantasy I've read is Mushoku Tensei (though I only read ASOIAF and about half of Malazan so I could be wrong).";False;False;;;;1610178078;;1610179491.0;{};gimxk21;False;t3_kt9rcs;False;True;t1_gil9vow;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimxk21/;1610222639;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RedPhantom081;;;[];;;;text;t2_kkg9a8o;False;False;[];;"Yeah it's fine that everyone holds their own opinion but its not right to abuse someone for it or downvote him without explaining crap. That's literally my complaint. - -The two cunts downvoted my comment just because they thought devilman and demon slayer are not as good of shows to rate 10, it just shows how anime community is filled up with piece of shits like those who can't respect other people's opinion.";False;False;;;;1610178129;;1610178339.0;{};gimxm25;False;t3_kt7qbe;False;True;t1_gilqy69;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gimxm25/;1610222690;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;What I think makes even less sense is him continuing to fight after putting the Heavy skill on the Reaper. Just run, gather more LP then come back and hit him with a stronger skill. Maybe in the ln there was a barrier or something idk.;False;False;;;;1610178234;;False;{};gimxq52;False;t3_kt9rcs;False;True;t1_gilln23;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimxq52/;1610222770;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;Don't know why you would be confused by the synopsis when it clearly says what this anime is and have to try it.;False;False;;;;1610178305;;False;{};gimxsup;False;t3_kt9rcs;False;True;t1_gimby6z;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimxsup/;1610222824;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Amauri14;;;[];;;;text;t2_bdz90;False;False;[];;"Because in order to use it he needs to kiss her. Now if you asking why didn't do it after leaving the dungeon my guess is that he didn't do it because he sees that she really doesn't care. - - -You know, now I'm wondering if with Olivia's skill he could fix the headache issue of the Great Sage, then again he can get a lot of LP thanks to it, so that's probably why he would not fix it.";False;False;;;;1610179774;;False;{};gimzdmn;False;t3_kt9rcs;False;True;t1_gimusl3;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gimzdmn/;1610223958;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vaguejizz;;;[];;;;text;t2_8pi6m;False;False;[];;Mai sanpai best gurl;False;False;;;;1610180445;;False;{};gin02xp;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gin02xp/;1610224507;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Primus81;;;[];;;;text;t2_pa1b3;False;False;[];;start seemed okay to me then, it just seemed to nonsensical nothing interesting really. But other love it - try it and see;False;False;;;;1610180555;;False;{};gin072t;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gin072t/;1610224593;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Aschentei;;;[];;;;text;t2_z1t0l;False;False;[];;lmfao..cuz AGDQ is on yall be finding categories for anime now;False;False;;;;1610180957;;False;{};gin0lv0;False;t3_kt9rcs;False;False;t1_gikpjoe;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gin0lv0/;1610224895;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Aschentei;;;[];;;;text;t2_z1t0l;False;False;[];;and that was some STEAMY kissing too, none of that half second bullshit...dam;False;False;;;;1610180972;;False;{};gin0mh1;False;t3_kt9rcs;False;False;t1_gikpjoe;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gin0mh1/;1610224905;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Aschentei;;;[];;;;text;t2_z1t0l;False;False;[];;i love that shes carefree..almost reminds me of Darkness but shes not an M;False;False;;;;1610181024;;False;{};gin0oer;False;t3_kt9rcs;False;False;t1_gikuu67;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gin0oer/;1610224941;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Aschentei;;;[];;;;text;t2_z1t0l;False;False;[];;"that was some STEAMY kissing, holy fuck. - -but yea this is trashy. gotta say Olivia makes this enjoyable though, i love her carefree attitude. hope shes actually freed later on - -Wish the leveling and skill differences were more realistic though. That SAO reaper should've insta-killed Nori. Like you cant just say a 100 LP stone bullet one-shots a lvl 99 reaper with 0 explanation...";False;False;;;;1610181214;;False;{};gin0vbf;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gin0vbf/;1610225067;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LuvRice4Life;;;[];;;;text;t2_3uucfbcf;False;False;[];;Dude, I don't know how you think the interactions between Sakuta and Mai aren't realistic, you gotten be trippin.;False;False;;;;1610181490;;False;{};gin15c2;False;t3_kt6j2z;False;True;t1_gimaxzr;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gin15c2/;1610225288;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThemistoArc;;;[];;;;text;t2_c6a6j;False;False;[];;Yes;False;False;;;;1610181995;;False;{};gin1nio;False;t3_kt6j2z;False;False;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gin1nio/;1610225668;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RDOoM;;;[];;;;text;t2_i9bs4;False;False;[];;"This was great. Lewd, and somehow sweet (so far at least), and it's funny as well. I would appreciate if it didn't go too far into lewdness, but I can deal with that as well if it comes to it. - -One thing I do disapprove of, is the hierarchy of nobles in the story. Like, was it really necessary for the story to involve the MC being treated like garbage by nobles? Were nobles necessary at all for a adventure anime? - -Real men use no mana, they life tap then tap that ass to fill their LP. - -And MC is a twink of Olivia. She got bored of being OP so she created an alt. I hope Olivia wakes up soon, tho. Her being in chains like that, not very nice. At least maybe MC can take her home or sth.";False;False;;;;1610182250;;False;{};gin1wom;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gin1wom/;1610225859;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkBladeEkkusu;;;[];;;;text;t2_r60ay;False;False;[];;Considering it had a cost of 4000 LP to get rid of a skill on an enemy Olivia considered fodder, whatever is restricting her would definitely be of a higher tier than that.;False;False;;;;1610182296;;False;{};gin1y9i;False;t3_kt9rcs;False;False;t1_gikvfef;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gin1y9i/;1610225888;12;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"And the abbhorations, all of them being girls, the sister character... - -A lot of inspiration was taken from it. Still, I can’t recommend Monogatari to someone who may still be somewhat new to anime; the more shows you watch, the more you appreciate it’s clever writing.";False;False;;;;1610182397;;False;{};gin21vb;False;t3_kt6j2z;False;False;t1_gimw03z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gin21vb/;1610225963;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RDOoM;;;[];;;;text;t2_i9bs4;False;False;[];;Well, to be devil's advocate, I don't read the synopsis of any seasonal anime either before watching the first episode. And in this case I happened to be pleasantly surprised. u/SparrowSensei wasn't... apparently.;False;False;;;;1610182405;;False;{};gin2255;False;t3_kt9rcs;False;True;t1_gimxsup;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gin2255/;1610225969;3;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your comment has been removed. - -- Your comment looks like it might include untagged or wrongly-tagged spoilers. - - When spoiler-tagging comments, you'll have to use a specific format around the text you want to tag. [Use the editor's Markdown mode if you're on new Reddit](https://i.imgur.com/aRggLtq.gifv), and then use the `[Work title here](/s ""tagged text goes here"")` format to tag specific parts of your text. This will come out looking like just a link on new Reddit, but it will show up correctly on other platforms. Links don't work with this format, so for links and images, just call them out as spoilers without any special formatting. [Find more information here.](https://www.reddit.com/r/anime/wiki/rules#wiki_tagging_comments) - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610182614;moderator;False;{};gin29le;False;t3_kt9rcs;False;True;t1_gilo2u3;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gin29le/;1610226104;2;True;False;anime;t5_2qh22;;0;[]; -[];;;shewy92;;;[];;;;text;t2_wd13k;False;False;[];;A blonde rich female character with big boobs and whose name is a light describer? I wonder if she's a dom to go along with her last name?;False;False;;;;1610182857;;False;{};gin2i86;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gin2i86/;1610226259;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RomanoffBlitzer;;;[];;;;text;t2_drm6k;False;False;[];;Piece cards are put in the LRIG deck, whose contents are always accessible. They're good finishers but can't win the game on their own.;False;False;;;;1610182914;;False;{};gin2ka1;False;t3_kt7bpo;False;True;t1_gimspqg;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gin2ka1/;1610226305;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RDOoM;;;[];;;;text;t2_i9bs4;False;False;[];;"> I have to admit that I'm disappointed in him for not immediately trying to use his powers to free Olivia. If he can create powerful new spells at will, he should have tried something like a Cleanse or Dispel. - -Well, for starters Olivia warned him of the dangers posed to her being freed, and he has nowhere near the experience to try and to that. At best, it should have been Olivia to direct him on how to try and free her. Him doing on his own would seem reckless to me. - -He offered once to free her, tho with brute force. He may offer again, in the future. - -Oh, and if the spell to bind Olivia was strong enough that she couldn't escape at the time, there's like no chance MC with no experience and low LP would manage. He could get himself killed unless he started the debaucherous LP gaining early.";False;False;;;;1610182947;;False;{};gin2lgo;False;t3_kt9rcs;False;False;t1_gilxbt6;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gin2lgo/;1610226327;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"Well in this case it seems they won the game almost on their own, as MC only got 1 attack in on the other team beforehand, right? Unless the support attacks were individual instead of part of the ""piece""?";False;False;;;;1610182983;;False;{};gin2mqv;False;t3_kt7bpo;False;False;t1_gin2ka1;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gin2mqv/;1610226351;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ddejong42;;;[];;;;text;t2_wyf5f;False;False;[];;Them good old weebs were drinking sake and rye.;False;False;;;;1610183286;;False;{};gin2xb5;False;t3_kt9rcs;False;False;t1_gimkb3t;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gin2xb5/;1610226556;7;True;False;anime;t5_2qh22;;0;[]; -[];;;cppn02;;;[];;;;text;t2_g4wzq;False;False;[];;That's not how this works...;False;False;;;;1610183349;;False;{};gin2zke;False;t3_kt75px;False;False;t1_gimczgr;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gin2zke/;1610226598;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Qwterty14;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Kaendas;light;text;t2_66z72akn;False;False;[];;Honestly at this point, if it's a long title it's most likely a power fantasy, also applies if the image is the MC surrounded by a lot of girls.;False;False;;;;1610183716;;False;{};gin3cbz;False;t3_kt9rcs;False;False;t1_gin2255;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gin3cbz/;1610226821;4;True;False;anime;t5_2qh22;;0;[]; -[];;;BetaXP;;;[];;;;text;t2_f9r03;False;False;[];;this is gonna be a 6/10 AT BEST and I'm still gonna watch all of it;False;False;;;;1610184055;;False;{};gin3o4o;False;t3_kt9rcs;False;False;t1_gil06ux;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gin3o4o/;1610227051;6;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkAudit;;MAL;[];;https://myanimelist.net/animelist/DarkAudit;dark;text;t2_f48t6;False;False;[];;"Save some for me! - -[](#popcorn2)";False;False;;;;1610184986;;False;{};gin4kwk;False;t3_kt9rcs;False;False;t1_gim84ms;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gin4kwk/;1610227658;4;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkAudit;;MAL;[];;https://myanimelist.net/animelist/DarkAudit;dark;text;t2_f48t6;False;False;[];;"> Super Rare Level 99 Dead Reaper being one-shot by rock - -It was a big rock.";False;False;;;;1610185100;;False;{};gin4ouo;False;t3_kt9rcs;False;True;t1_gilln23;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gin4ouo/;1610227729;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DarkAudit;;MAL;[];;https://myanimelist.net/animelist/DarkAudit;dark;text;t2_f48t6;False;False;[];;She's called Bakarina for good reason. :);False;False;;;;1610185355;;False;{};gin4xt0;False;t3_kt9rcs;False;True;t1_gimj6ey;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gin4xt0/;1610227891;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ucvius;;;[];;;;text;t2_46p4yczj;False;False;[];;I like Code Geass a lot because of the wits battle. I like watching strategies and tactics employed by the characters. Even though I don't like Mecha, I some how managed to watch this series because of the intellect battles. I enjoyed all parts of the series;False;False;;;;1610185558;;False;{};gin54zw;False;t3_kt7qbe;False;True;t3_kt7qbe;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gin54zw/;1610228021;1;True;False;anime;t5_2qh22;;0;[]; -[];;;antthegoat527;;;[];;;;text;t2_2imkdyim;False;False;[];;This was way more enjoyable then it needed to be;False;False;;;;1610185656;;False;{};gin58eg;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gin58eg/;1610228082;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sankalp4;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/dirtymelody;light;text;t2_a05xtsb;False;False;[];;Bruh Mai and Sakuta conversations are one of the most realistic ones I've seen in anime. And yes I say this as a monogatari fan.;False;False;;;;1610186077;;False;{};gin5n0f;False;t3_kt6j2z;False;True;t1_gimaxzr;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gin5n0f/;1610228351;0;True;False;anime;t5_2qh22;;0;[]; -[];;;sankalp4;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/dirtymelody;light;text;t2_a05xtsb;False;False;[];;"I love it because the main character and the main girl have a fantastic rapport and a mature relationship which I usually don't see in most anime (I'm looking at you, toradora). They don't fuck around or act tsun, they both are mature and talk shit out. The other characters are also great, I could listen to the characters interact with each other for hours. The first and the ending arc of the first season was the highlight for me, the last arc is especially bittersweet. The movie was also fantastic. I also like the OST though some people think it's average. I might be biased cause yknow I'm a huge fan of both the anime (10/10) and mai senpai (10/10) but I definitely think you should give it a watch. To echo most sentiments here, if you don't like the first 3 episodes just drop it, it's not for you. - -Sorry for the wall of text.";False;False;;;;1610186384;;False;{};gin5xmu;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gin5xmu/;1610228544;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Quebec120;;;[];;;;text;t2_2iddjr1c;False;False;[];;"The whole show is just a less abstract Monogatari, with ""science"" phenomena instead of mythological phenomena. I mean, look at the show structure and all the main characters. It lines up entirely.";False;False;;;;1610187259;;False;{};gin6rju;False;t3_kt6j2z;False;True;t1_gimw03z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gin6rju/;1610229104;3;True;False;anime;t5_2qh22;;0;[]; -[];;;tahirs;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/tahirs;light;text;t2_3112zzkc;False;False;[];;yes.;False;False;;;;1610188187;;False;{};gin7niv;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gin7niv/;1610229681;0;True;False;anime;t5_2qh22;;0;[]; -[];;;DMking;;;[];;;;text;t2_8buww;False;False;[];;The next arc is pretty short, lots of action and good character moments for the trio. Pretty strong place to end at;False;False;;;;1610188224;;False;{};gin7ovc;False;t3_kt75px;False;True;t1_gimwsnv;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gin7ovc/;1610229704;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;Not a level 99 rock tho. Unless level 99 is lower mid-tier in this game.;False;False;;;;1610188342;;False;{};gin7t2s;False;t3_kt9rcs;False;True;t1_gin4ouo;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gin7t2s/;1610229775;1;True;False;anime;t5_2qh22;;0;[]; -[];;;csdragon123456;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_kgbt7;False;False;[];;Get more powerful just by being a hedonist oh my god I love it;False;False;;;;1610188506;;False;{};gin7yqi;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gin7yqi/;1610229871;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hiimdiaoxeuw;;;[];;;;text;t2_izvhr;False;False;[];;Yes it surely is. First 3 episodes as a standalone are amazing;False;False;;;;1610189491;;False;{};gin8xky;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gin8xky/;1610230501;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Dylangillian;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/dylangillian;light;text;t2_14buwl;False;False;[];;So in that case, the MC also understands that the girls love him and want to be in a relationship? or is he the usual dense MC in that regard?;False;False;;;;1610190161;;False;{};gin9lg6;False;t3_kt9rcs;False;True;t1_gilselg;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gin9lg6/;1610230928;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zenon22;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Zenon22/animelist;light;text;t2_11xo36;False;False;[];;Someone call Rimiru because great sage was used by someone else without permission. Funny first ep though.;False;False;;;;1610190665;;False;{};gina36x;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gina36x/;1610231257;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Games_and_anime;;;[];;;;text;t2_3dv1yh1l;False;False;[];;I like it too, although I understood... Like nothing, film is good too;False;False;;;;1610191307;;False;{};ginaq8i;False;t3_kt6j2z;False;True;t1_gik3duo;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/ginaq8i/;1610231682;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610193926;;False;{};gindevp;False;t3_kt9rcs;False;True;t1_gin0vbf;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gindevp/;1610233437;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ksaraf23;;;[];;;;text;t2_hgpch;False;False;[];;I actually enjoyed this episode more than I thought I would!;False;False;;;;1610193941;;False;{};gindfhi;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gindfhi/;1610233447;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ksaraf23;;;[];;;;text;t2_hgpch;False;False;[];;Nice!;False;False;;;;1610193954;;False;{};gindfy1;False;t3_kt9rcs;False;True;t1_gil0rdh;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gindfy1/;1610233454;1;True;False;anime;t5_2qh22;;0;[]; -[];;;420weerrr;;;[];;;;text;t2_664t3ze;False;False;[];;"it's just my opinion lol, I felt like the show was not as deep as people say, it felt deep in a ""highschool"" sort of way. Just how I felt.";False;False;;;;1610194029;;False;{};gindisw;False;t3_kt6j2z;False;True;t1_gin15c2;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gindisw/;1610233504;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ksaraf23;;;[];;;;text;t2_hgpch;False;False;[];;I was WONDERING why that smugness sounded familiar!!;False;False;;;;1610194229;;False;{};gindqn5;False;t3_kt9rcs;False;True;t1_giky89v;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gindqn5/;1610233643;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Ksaraf23;;;[];;;;text;t2_hgpch;False;False;[];;Considering how shitty this year has started, we need a show like this tbh!;False;False;;;;1610194267;;False;{};ginds5c;False;t3_kt9rcs;False;False;t1_gimqs2i;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginds5c/;1610233672;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610194374;;1610195849.0;{};gindwck;False;t3_kt9rcs;False;True;t1_gin0vbf;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gindwck/;1610233750;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Loremeister;;;[];;;;text;t2_tfhkl;False;False;[];;I'm feeling offended that someone would even dare to think Anos would need to use such tricks. Im calling the fanclub on the dude;False;False;;;;1610194395;;False;{};gindx5u;False;t3_kt9rcs;False;False;t1_gileumu;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gindx5u/;1610233766;6;True;False;anime;t5_2qh22;;0;[]; -[];;;blaen;;;[];;;;text;t2_9606u;False;False;[];;"Feels pretty much like not an edgelord Arifureta with older looking love interests. loli vampire was a bit much for me - -I'm down with this.";False;False;;;;1610194759;;False;{};gineb7w;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gineb7w/;1610234025;1;True;False;anime;t5_2qh22;;0;[]; -[];;;casualphilosopher1;;;[];;;;text;t2_1tw5fjdk;False;False;[];;Let's hope it gets a second season. Most series like this don't. :/;False;False;;;;1610194760;;False;{};gineba0;False;t3_kt9rcs;False;True;t1_gim84ms;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gineba0/;1610234026;3;True;False;anime;t5_2qh22;;0;[]; -[];;;casualphilosopher1;;;[];;;;text;t2_1tw5fjdk;False;False;[];;I wonder if this anime is going to follow the original web novel or the manga adaptation, which makes a number of little changes to the story and adds a lot more fanservice.;False;False;;;;1610194825;;False;{};ginedve;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginedve/;1610234069;1;True;False;anime;t5_2qh22;;0;[]; -[];;;stopeatingbuttspls;;;[];;;;text;t2_6bq60emj;False;False;[];;A kiss is a kiss. You can't say it's only half.;False;False;;;;1610195229;;False;{};ginetqm;False;t3_kt9rcs;False;False;t1_gimwl10;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginetqm/;1610234356;6;True;False;anime;t5_2qh22;;0;[]; -[];;;inuyashaschwarz;;;[];;;;text;t2_r7vwusv;False;False;[];;I was thinking so much about her. She would be perfect as the villain (cute idol that is a bitch in the backstage);False;False;;;;1610195274;;False;{};ginevif;False;t3_kt7bpo;False;True;t1_gimhkaq;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/ginevif/;1610234387;1;True;False;anime;t5_2qh22;;0;[]; -[];;;casualphilosopher1;;;[];;;;text;t2_1tw5fjdk;False;False;[];;"It's definitely refreshing to have a main couple who actually act like a couple. - -[spoiler](/s ""However they still deny that they're actually going out, keep justifying their kisses using Noru's power and don't go further than kissing and cuddling."")";False;False;;;;1610195836;;False;{};ginfi6r;False;t3_kt9rcs;False;False;t1_gikqzwm;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginfi6r/;1610234789;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KnightKal;;;[];;;;text;t2_pwr4duc;False;False;[];;and lets make round walls in a small town, which makes a lot easier (not) to defend it, right? You need a straight line (square) or something like a star fort in order for more people to be able to help with ranged attacks (be it magic or arrows), but with that wall it becomes much easier to break in.;False;False;;;;1610195924;;False;{};ginflp0;False;t3_kt9rcs;False;True;t1_giktpez;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginflp0/;1610234851;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Considered_Dissent;;;[];;;;text;t2_3ri9v346;False;False;[];;"Im guessing it falls into ""wishing for more wishes"" but you'd think his second question ever to the Sage wouldve been how to stop the migraines. - -This is very comfortably into mid tier ""watchable"" imo. - -Though it's fascinating to compare it to ep1 of Tatoeba Last Dungeon, they both have a similar tier of concept but its execution/product value blows this one away for now - though this show definitely has a lot of heart, esp shown in bits like the end song, even if it doesnt have the ability/budget to fully realise that.";False;False;;;;1610197202;;False;{};ginh2r9;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginh2r9/;1610235790;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Pristine-Throat3706;;;[];;;;text;t2_4rnd1xdu;False;False;[];;Come for the girl in a bunny outfit. Stay for the psychological themes about the human condition, depicted masterfully through super natural plot devices.;False;False;;;;1610197295;;False;{};ginh6t7;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/ginh6t7/;1610235866;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TrickyMississipi;;;[];;;;text;t2_42mmtsqj;False;False;[];;these are the 3 shows I told my friend to watch, these three specific ones at one time, you psychic?;False;False;;;;1610198177;;False;{};gini95g;False;t3_kt6j2z;False;True;t1_giktnnm;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gini95g/;1610236539;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KnightKal;;;[];;;;text;t2_pwr4duc;False;False;[];;I am surprised he didnt ask his master help on farming LP points ... I mean ... she was right there ... a hug ... and a bit more ... for LP points ... going both ways ... lol;False;False;;;;1610199179;;False;{};ginjhwn;False;t3_kt9rcs;False;True;t1_gikyxjp;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginjhwn/;1610237368;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KnightKal;;;[];;;;text;t2_pwr4duc;False;False;[];;it was quite a good adaption of a silly story, it skips to the good moments (you can notice how fast the story went today), the art was great too. Looks like it will be a good anime.;False;False;;;;1610199283;;False;{};ginjmtf;False;t3_kt9rcs;False;False;t1_gilng25;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginjmtf/;1610237456;7;True;False;anime;t5_2qh22;;0;[]; -[];;;KnightKal;;;[];;;;text;t2_pwr4duc;False;False;[];;"it is not pleasure level, it is doing things that make him feel good/be happy. Sex, good food, buying expensive stuff, are just examples his master mentioned of things that made her happy. - -getting a hug from his little sister or his mother will work for the MC because those things make HIM happy.";False;False;;;;1610199398;;False;{};ginjs1r;False;t3_kt9rcs;False;False;t1_gilpsmw;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginjs1r/;1610237550;5;True;False;anime;t5_2qh22;;0;[]; -[];;;KnightKal;;;[];;;;text;t2_pwr4duc;False;False;[];;that would create a loop and blow his head (literally). Now you have a dead headless sage. Congratz!;False;False;;;;1610199472;;False;{};ginjvs5;False;t3_kt9rcs;False;False;t1_gil2gvk;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginjvs5/;1610237613;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KnightKal;;;[];;;;text;t2_pwr4duc;False;False;[];;"she is a higher noble than him, meaning they can't really marry (that easily). So I bet he just considers her a very very very close friend. If he ever thinks about actually going on a romantic relationship with her, then he will have to find a way to impress her father and stop other nobles interference. - -just like a small viscount's son could just steal his job - -she is ... a baron's daugther? Whoever marries her gets the title. No way other nobles wouldnt try to push their second/third sons on her. - -he is a baronet. That is basically a peasant. Thus why the other noble kids called him trash of nobility. No land, no money, ...";False;False;;;;1610199667;;False;{};gink58f;False;t3_kt9rcs;False;True;t1_gikud5f;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gink58f/;1610237778;0;True;False;anime;t5_2qh22;;0;[]; -[];;;KnightKal;;;[];;;;text;t2_pwr4duc;False;False;[];;"well the silly explanation is that she is already dead, as in, frozen in time for 2 centuries. So if he breaks the chains ... she will turn into ash. - -if it was a simple thingy as create a skill and break the trap ... she would have done that herself, right? No way she was walking around a dungeon with low LP points ... unless she is also a musclehead. - -now try to explain why is she trying to stay alive if it means being stuck in that room forever ...";False;False;;;;1610199868;;False;{};ginkeuy;False;t3_kt9rcs;False;False;t1_gikvfef;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginkeuy/;1610237957;6;True;False;anime;t5_2qh22;;0;[]; -[];;;i-have-severe-stupid;;;[];;;;text;t2_5glau57a;False;False;[];;this is entertaining trash;False;False;;;;1610199914;;False;{};ginkh2r;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginkh2r/;1610237996;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Evilemper0r;;;[];;;;text;t2_jh5df;False;False;[];;Is this anime Yuri ?;False;False;;;;1610199979;;False;{};ginkk9e;False;t3_kt9rcs;False;True;t1_gikr06y;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginkk9e/;1610238051;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KnightKal;;;[];;;;text;t2_pwr4duc;False;False;[];;in love or not, she is a higher noble than him, so I wouldn't bet in them getting married ... well until episode 1, where he gets cheat skills and thus will have a chance to do stuff to improve his position.;False;False;;;;1610200056;;False;{};ginko3y;False;t3_kt9rcs;False;True;t1_gil4v6a;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginko3y/;1610238116;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SirAwesome789;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/SirAwesomeness;light;text;t2_ra3np;False;False;[];;The post said 95 comments, I came to see 95 comments saying the exact same thing: yes.;False;False;;;;1610200239;;False;{};ginkx5n;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/ginkx5n/;1610238276;1;True;False;anime;t5_2qh22;;0;[]; -[];;;diglyd;;;[];;;;text;t2_5zkvd;False;False;[];;Peter Grill at 8 minutes in is already in the sack in a threesome.;False;False;;;;1610200459;;False;{};ginl867;False;t3_kt9rcs;False;False;t1_gilrt85;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginl867/;1610238476;6;True;False;anime;t5_2qh22;;0;[]; -[];;;messem10;;;[];;;;text;t2_6pcwi;False;False;[];;Sakura Trick? Yes, very.;False;False;;;;1610201205;;False;{};ginmaov;False;t3_kt9rcs;False;True;t1_ginkk9e;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginmaov/;1610239155;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sKyBlazer08;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/sKyBlazer08;light;text;t2_17ibsr;False;False;[];;Well, to say the least... I enjoyed it lmao. Definitely going to be a guilty pleasure show. I mean we got a steamy kiss in the first fucking episode with a childhood friend, sign me the fuck up. Emma is great too and I assume all the other girls will too, MC is also good. Overall this is going to be your average harem but, your enjoyable average harem.;False;False;;;;1610201705;;False;{};ginn0xz;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginn0xz/;1610239602;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ImKnottt;;;[];;;;text;t2_80glhny6;False;False;[];;"Ngl, thought that the story was leading to an h anime plot because of that kiss. I don't mind how he gets his LP and I do prefer my anime with a side of ecchi moments every now and then... BUT!!! I do hope their execution of said moments is better than the latter seasons of high school dxd. I've been cringing so hard at moments where the characters just says, ""Show him your t*ts"" to increase his power. Now that is just poor writing.";False;False;;;;1610201837;;False;{};ginn80k;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginn80k/;1610239721;1;True;False;anime;t5_2qh22;;0;[]; -[];;;meimi132;;;[];;;;text;t2_6fwxe;False;False;[];;So.... This guy has gotten more action in the first 10 minutes than most anime protag-kun's. Noice.;False;False;;;;1610202447;;False;{};gino54g;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gino54g/;1610240306;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shreks-SwampAss;;;[];;;;text;t2_8q3ppmac;False;False;[];;I agree. I know I wouldn't have liked monogatari when I was still a casual anime fan, but a couple hundred series later and I really enjoy what I've watches.;False;False;;;;1610203291;;False;{};ginpg9t;False;t3_kt6j2z;False;False;t1_gin21vb;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/ginpg9t/;1610241130;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Royal_Heritage;;;[];;;;text;t2_8wglzuge;False;False;[];;"> I disagree knowledge is entirely op in a world that lacks knowledge. - -How about looking it from another perspective without the whole reincarnation setting that is the staple for isekai. - -Walter White from Breaking Bad went from being a highschool teacher diagnosed with terminal cancer to the most wanted drug dealer in Albuquerque. Initially he didn't know how to ""cook"" meth, he did however have the basic chemistry knowledge. Pinkman is an already stablished low life cook and distributor on the streets, sharing their knowledge Walter improves Pinkman's recepie, and Pinkman's new role is to distribute it. It takes 5 seasons for Walter to perfect his ""blue sky"" meth and overcome all of his enemies and business adversaries like Tuco, Mike, Gus Fring, and many others, but he wouldn't have made it without all the street knowledge of Pinkman, or the distribution channels of Stella, Skyler & Saul money laundrying schemes. It was all a team effort based on a single guy that had an idea. - -Now Comparing it to Myne and her basic ideas of new products it's exactly the same thing. She must rely on the workforce of Lutz and the other kids, she has to gather reading and writing knowledge from Otosan, she definitely needs the bargain skills from Benio and the lore information from Ferdinand about the noble class and magic. A truly overpowered main character would have all this knowledge and skills right off the bat and wouldn't need the help of anyone at all. Characters like the MC of Isekai Smartphone that's pretty much a walking Jesus that fits the title of being OP. - -Being knowledgeable in a world that needs this skill doesn't make a character or a real person overpower. Think of Lunk from Genesis Climber Mospeada, he was the only mechanic able to repair all the mechs in their long travel, without him the whole group would have been stranded from day one without anyone being capable of doing the most complex repairs. Another example, Professor Yumi form Mazinger Z, he's the one in charge along with his staff to repair and upgrade the Mazinger after every single battle, without them Koji and the Mazinger wouldn't be able to actually defeat the monster/robot of the weak in a flawlessly manner. Knowledge is needed in these fictionalworlds, but they aren't the actual source of power.";False;False;;;;1610203428;;False;{};ginpnzt;False;t3_kt9rcs;False;True;t1_gilolw8;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginpnzt/;1610241266;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Gaporigo;;MAL a-amq;[];;http://myanimelist.net/profile/Gaporigo;dark;text;t2_ineqy;False;False;[];;Just checked, anime starts with a close up of centaur girl's lips as they approach the other girl.;False;False;;;;1610203580;;False;{};ginpwsd;False;t3_kt9rcs;False;True;t1_gimwl10;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginpwsd/;1610241414;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HattoriSaizoII;;;[];;;;text;t2_72680hhu;False;False;[];;a.k.a. Konosuba City;False;False;;;;1610203607;;False;{};ginpye2;False;t3_kt9rcs;False;True;t1_giktpez;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginpye2/;1610241441;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EmiliaIsBestWaifu;;;[];;;;text;t2_11epezho;False;False;[];;I hope we get another gojo;False;False;;;;1610203671;;False;{};ginq228;False;t3_kt75px;False;True;t3_kt75px;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/ginq228/;1610241502;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HattoriSaizoII;;;[];;;;text;t2_72680hhu;False;False;[];;So MC gets recharged by feelings of pleasure? Why does this sound familiar?;False;False;;;;1610204164;;False;{};ginqup7;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginqup7/;1610241979;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Royal_Heritage;;;[];;;;text;t2_8wglzuge;False;False;[];;">the most realistic ones I've seen in anime - -Sounds more like you've just watched garbage fantasy anime (specially the Monogatari series) so you don't have a grasp of what stands for realistic";False;False;;;;1610205800;;False;{};gintlg5;False;t3_kt6j2z;False;True;t1_gin5n0f;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gintlg5/;1610243619;0;False;False;anime;t5_2qh22;;0;[]; -[];;;generalmillscrunch;;;[];;;;text;t2_zofoh;False;False;[];;"The first episode was awful in pretty much every fathomable way. - - -milk toast protagonist - -the value of every female character is determined by breast size - -rudimentary copy paste power system - -zero dramatic stakes - -incestuous sister - -unearned harem setup - - -Looks like I may have found my hate-watch for the season.";False;False;;;;1610205978;;False;{};gintwk4;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gintwk4/;1610243803;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiro_Kai;;;[];;;;text;t2_bevm2wi;False;False;[];;">[Is that Rei-san in the real world?](https://i.imgur.com/NMEHYh0.jpg) - -Lol, poor Rei-san XD";False;False;;;;1610206119;;False;{};ginu5hv;False;t3_kt7bpo;False;True;t3_kt7bpo;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/ginu5hv/;1610243967;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Akashic101;;;[];;;;text;t2_t0781;False;False;[];;Then let me take over. Please show me just a single one bad animated titan which is without any doubt a lot worse than s1-s3 titans;False;False;;;;1610206934;;False;{};ginvlbc;False;t3_kt75px;False;True;t1_gimqa8h;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/ginvlbc/;1610244842;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RickSnacchez;;;[];;;;text;t2_69s9zugh;False;False;[];;This was a way better adaptation then I thought it would be. I love it;False;False;;;;1610207404;;False;{};ginwg0y;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginwg0y/;1610245345;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Etereke32;;;[];;;;text;t2_11qhl2;False;False;[];;True, but some of the most upvoted comments straight up deny it's trashy. I mean, Eromanga-sensei is one of the trashiest shows I've seen, and that didn't stop me from enjoying the hell out of it. Admitting something is bad and still enjoying it are not necessarily contradictory thoughts/feelings.;False;False;;;;1610207752;;False;{};ginx36x;False;t3_kt9rcs;False;False;t1_gikyiof;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginx36x/;1610245743;5;True;False;anime;t5_2qh22;;0;[]; -[];;;EldritchCarver;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Pilomotor;light;text;t2_4epcw;False;False;[];;"[Manga spoilers](/s ""I wouldn't go so far as to say that ALL of the girls in his harem actually love him, rather than seeing their relationship as a mutually beneficial arrangement. But he'll definitely acknowledge Brightness's feelings before long."")";False;False;;;;1610207947;;False;{};ginxgdg;False;t3_kt9rcs;False;True;t1_gin9lg6;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginxgdg/;1610245964;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Etereke32;;;[];;;;text;t2_11qhl2;False;False;[];;I always lol when the big-boobed companion first shows up and the first thing the camera focuses on are the boobs, with the boing boing sounds coming in... Man, I don't understand how can people claim this is not a trashy show. The MC literally gets the fuel for his power by doing ecchi stuff (well, not just that, but the show seems to be focusing on that). Anybody who says it's not a trashy show is in denial. That said, at least it seems like it's aware of itself kinda, and it seems fun enough. Probably gonna be a guilty pleasure like Eromanga sensei used to be. I'm up for the ride.;False;False;;;;1610208345;;False;{};giny6tf;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giny6tf/;1610246414;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lohtric;;;[];;;;text;t2_10buyw;False;False;[];;Literally this entire video https://www.youtube.com/watch?v=fjiFN7FNLxY;False;False;;;;1610208452;;False;{};ginye0q;False;t3_kt75px;False;True;t1_ginvlbc;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/ginye0q/;1610246535;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RickSnacchez;;;[];;;;text;t2_69s9zugh;False;False;[];;Can you dm me that spoiler please? Wont show up on mobile.;False;False;;;;1610208542;;False;{};ginyk3c;False;t3_kt9rcs;False;True;t1_gindwck;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginyk3c/;1610246637;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kuddlesworth9419;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kuddlesworth;light;text;t2_btage;False;False;[];;No.;False;False;;;;1610208589;;False;{};ginyn5x;False;t3_kt5lad;False;True;t3_kt5lad;/r/anime/comments/kt5lad/idolls_episode_1_discussion/ginyn5x/;1610246689;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Areouf;;;[];;;;text;t2_3nyxnua3;False;False;[];;"Not that I'm complaining or anything, but unless I've seriously messed up somewhere, didn't the anime essentially adapt the first five chapters of the first light novel volume? Presuming this to be the case, according to my reading app, that is 17% of the first volume, which is right on track for 6 episodes per light novel volume (which is a lot). - - -So with this in mind, out of curiosity, what about the adaptation pace did you think was fast?";False;False;;;;1610208976;;False;{};ginzdmk;False;t3_kt9rcs;False;False;t1_ginjmtf;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/ginzdmk/;1610247138;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Shizzi;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://anilist.co/user/Mivy/;light;text;t2_gfpz3;False;False;[];;This is exactly what i expected so im onboard and happy ngl the Doujins write themselves this time and u could even say they would be even more canon just imagine the LP from a Nakadashi;False;False;;;;1610210362;;False;{};gio21im;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gio21im/;1610248797;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Areouf;;;[];;;;text;t2_3nyxnua3;False;False;[];;"> unlimited LP -Big numbers exist, you know? Let's be unreasonably generous and say that she can get 10^99 LP per year from whatever perverted stuff the two of them can imagine. Well guess what — if the number required to free her is a million times that number (10^105), it's still going to take a million years to free her, even though she'd be earning an absurd number of LP per day. (Also, it's quite likely that creating a vibrator would _also_ cost an insane amount of LP, since it can be used to generate LP. Obviously, the more useful and/or difficult something is, the more LP it generally costs. Not to mention, this is a mediaeval fantasy world, so how tf would Noir magically dream up a vibrator, anyway?) - - -> Ainz -Well firstly, yes he would instantly die from a dangerous-enough rock, and that is determined by... the author of the series in question... And the author of this series said that the rock was dangerous enough to destroy this particular skeleton. Not to mention, this series at no point mentioned anything related to a game. Hence, unless otherwise specified, your default point of comparison should be real life (in which a huge rock can definitely destroy a skeleton), seeing as this series is set in real life (in another world) and so some semblance of real-world physics should apply to some extent unless established otherwise early on in the series. - -Also, for what it's worth, level 99 is not the level cap in this series. Olivia did call that skeleton thingy weak, remember?";False;False;;;;1610211162;;False;{};gio3ltd;False;t3_kt9rcs;False;False;t1_gime4dy;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gio3ltd/;1610249772;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dont-Censor-Hentai;;;[];;;;text;t2_54tnznxy;False;False;[];;I don't think so, I tried watching it again and it is kinda unbearable when you're not 14 years old lmao;False;False;;;;1610211188;;False;{};gio3no0;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gio3no0/;1610249805;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Dont-Censor-Hentai;;;[];;;;text;t2_54tnznxy;False;False;[];;more detailed: the arcs are very great, but I feel like the execution of it is horrible, it is very cliché and very clearly has an intended audience of preteens;False;False;;;;1610211272;;False;{};gio3tkw;False;t3_kt6j2z;False;True;t1_gio3no0;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gio3tkw/;1610249909;0;True;False;anime;t5_2qh22;;0;[]; -[];;;StellarSunDance;;;[];;;;text;t2_6htvlrzl;False;False;[];;No love for Momo? =(;False;False;;;;1610212000;;False;{};gio58yu;False;t3_kt75px;False;False;t1_gikqxk8;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gio58yu/;1610250787;2;False;False;anime;t5_2qh22;;0;[]; -[];;;karmakeeper1;;;[];;;;text;t2_7td83;False;True;[];;They didn't kiss the first time, that's actually a plot point a couple episodes later;False;False;;;;1610212430;;False;{};gio63b4;False;t3_kt9rcs;False;False;t1_gillgpc;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gio63b4/;1610251307;5;True;False;anime;t5_2qh22;;0;[]; -[];;;randompos;;;[];;;;text;t2_9po42;False;False;[];;"Nah, Anos bent the world to his command. - -This guy is in a convenient world that just caters to his fantasies.";False;False;;;;1610212462;;False;{};gio65jt;False;t3_kt9rcs;False;True;t1_giku3e7;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gio65jt/;1610251342;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vantheman9;;;[];;;;text;t2_pqcqs;False;False;[];;"Really surprised at the r/anime reception of this being so large and positive. When I read the manga I enjoyed it but thought it didn't stand out at all. - -The adaptation has no obvious flaws but definitely isn't setting the world on fire either. Highlight for me is Horie Yui bringing the personality of Olivia out. Feel like she's the only interesting character in the work and having a toplist VA is helping it a lot. In the manga that personality was there but it wasn't alive like this. - -Was surprised to even see this getting adapted. It's only a few steps less bland than Kenja no Mago or Isekai Cheat Magician...but I guess in a world where those got adapted, this one getting its turn doesn't seem so weird.";False;False;;;;1610212601;;False;{};gio6evu;False;t3_kt9rcs;False;True;t1_giknpew;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gio6evu/;1610251503;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PoliteDudeInTheMood;;;[];;;;text;t2_h2065;False;False;[];;"[Spoiler LN](/s ""I dunno, he's pretty oblivious in the LN, even as of book 3 he's still getting upset and insisting they're just 'Best Friends'"")";False;False;;;;1610212788;;False;{};gio6rvk;False;t3_kt9rcs;False;True;t1_ginxgdg;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gio6rvk/;1610251724;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kuddlesworth9419;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kuddlesworth;light;text;t2_btage;False;False;[];;When they did a fade cut while still kissing they definitely had sex.;False;False;;;;1610212887;;False;{};gio6yro;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gio6yro/;1610251837;1;True;False;anime;t5_2qh22;;0;[]; -[];;;swordmalice;;MAL;[];;http://myanimelist.net/animelist/swordmalice;dark;text;t2_doqci;False;False;[];;"I think ""trash"" in this context is used affectionately, at least that's how I interpret it.";False;False;;;;1610213171;;False;{};gio7j14;False;t3_kt9rcs;False;True;t1_gim7aei;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gio7j14/;1610252179;3;True;False;anime;t5_2qh22;;0;[]; -[];;;akoba15;;;[];;;;text;t2_638rml5e;False;False;[];;To be fair tho, if we going by age rather than Anime time, I think Anos Voldigord technically has him beat... Even if Anos is a reincarnation of sorts lol;False;False;;;;1610213418;;False;{};gio80lm;False;t3_kt9rcs;False;True;t1_gilvbsa;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gio80lm/;1610252481;2;True;False;anime;t5_2qh22;;0;[]; -[];;;akoba15;;;[];;;;text;t2_638rml5e;False;False;[];;"Disagree. Watch [SM64 - Watch for Rolling Rocks - .5x Presses of an A Press](https://www.youtube.com/watch?v=kpk2tdsPh0A) - -Thats sure to change your mind.";False;False;;;;1610213534;;False;{};gio88ne;False;t3_kt9rcs;False;True;t1_ginetqm;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gio88ne/;1610252616;1;True;False;anime;t5_2qh22;;0;[]; -[];;;akoba15;;;[];;;;text;t2_638rml5e;False;False;[];;Okay, Peter Grill is just as much a Hentai as it is an anime though. You cant really count it I don't think.;False;False;;;;1610213587;;False;{};gio8cfd;False;t3_kt9rcs;False;True;t1_ginl867;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gio8cfd/;1610252678;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RandomRon005;;;[];;;;text;t2_2mk4myep;False;False;[];;"Tell me about it. I've been reading the manga for a while & even I'm shocked this got an anime.";False;False;;;;1610213625;;False;{};gio8f4o;False;t3_kt9rcs;False;True;t1_giky6px;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gio8f4o/;1610252721;2;True;False;anime;t5_2qh22;;0;[]; -[];;;akoba15;;;[];;;;text;t2_638rml5e;False;False;[];;"Couldn't he also like, idk, give her stronger back muscles with that ability? - -I feel like this show is taking a fantasy would and shamelessly giving the characters modern day logic, such as ""bullets"" and, well, fucking boob reductions. - -Its funny enough though, more like a comedy bit amongst DnD players rather than an attempt to make a good story. Worth the watch I think.";False;False;;;;1610213778;;False;{};gio8pu6;False;t3_kt9rcs;False;True;t1_gikxsmq;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gio8pu6/;1610252910;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Tacsk0;;;[];;;;text;t2_1ghptda;False;False;[];;"> Is Bunny Girl Senpai worth watching? - -What makes the difference for me is watching anime like BGS (x) or High Score Girl felt **sincere**. When that one condition is met, I can forgive Long Riders grade buggiest animation or Kemofurenzu grade heionus CGI or massive story inconsistencies with nonsensical narration. - -In contrast, the first (few) eps of *Oreigaru, Bakemonogatari, Haruhi, Jaku-chara, Garupan, etc.* always got me to think I'm watching something industrially manufactured that was carefully designed to be spoon-fed to weaboo but ended up repulsively artificial, so I dropped them. - -(x) Ps: I have to note though that the second /Koga/ arc of BGS is a total shame and should have been dropped from the anime adaptation - or at least exiled to an OVA/ONA, in case that one moment she has in the movie is truly that important.";False;False;;;;1610213839;;False;{};gio8u7b;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gio8u7b/;1610252986;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AoiSpeakers;;;[];;;;text;t2_hiub9;False;False;[];;"wdym, I love all the WiXoSS plot all the way to catharsis but dayum, I kno this diva a live will appeal because it is timely and creators know their shat. - -ngl, I cried because of the prot. I extended my hand. I like the SP System. - -Save me from this WiXoSS pit.";False;False;;;;1610214195;;False;{};gio9jg2;False;t3_kt7bpo;False;True;t1_gikflt8;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gio9jg2/;1610253414;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AoiSpeakers;;;[];;;;text;t2_hiub9;False;False;[];;"I like the post Okada. I love Okada but anything WiXoSS count me in. - -And here I thought it ended with Catharsisuuu";False;False;;;;1610214266;;False;{};gio9on3;False;t3_kt7bpo;False;True;t1_giklv1x;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gio9on3/;1610253500;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AoiSpeakers;;;[];;;;text;t2_hiub9;False;False;[];;"At first I have my reservations of the SP system but ngl I cried. Y'know, it's like a metaphor for streamers. Who are thirsty for external validation and stars. I even extended my hand for the prot - -TT - -saving my tears for mushoku tensei. Watched praeter and kumo. Hortensia Saga can wait. My beloved 2017 game ( I mean I knew it by 2017 in my Jan FB memories but could be earlier because it was a dankland meme)";False;False;;;;1610214388;;False;{};gio9xca;False;t3_kt7bpo;False;False;t1_gimbs0k;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gio9xca/;1610253641;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AoiSpeakers;;;[];;;;text;t2_hiub9;False;False;[];;anw, it was obv that it was the rep hahaha during that scene. sorry in adv for being capt obv;False;False;;;;1610214428;;False;{};gioa0cc;False;t3_kt7bpo;False;True;t1_ginu5hv;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gioa0cc/;1610253690;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AoiSpeakers;;;[];;;;text;t2_hiub9;False;False;[];;"I guess it will be parallel to burnout streamers plight - -Aki lucky?";False;False;;;;1610214467;;False;{};gioa33y;False;t3_kt7bpo;False;True;t1_gimsm4j;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gioa33y/;1610253734;1;True;False;anime;t5_2qh22;;0;[]; -[];;;messem10;;;[];;;;text;t2_6pcwi;False;False;[];;"He could also use his skill creation to make skills to passively generate LP, another to multiply LP earned and maybe even one to lessen the cost of LP as well. - -That'd give him almost infinite LP, but I doubt it'd go that way.";False;False;;;;1610214679;;False;{};gioaif8;False;t3_kt9rcs;False;False;t1_gio8pu6;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gioaif8/;1610253985;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610215577;;False;{};giocbcb;False;t3_kt7bpo;False;True;t3_kt7bpo;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/giocbcb/;1610255053;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shiro_Kai;;;[];;;;text;t2_bevm2wi;False;False;[];;"ikr, I'm just surprised how silly they have to be to even make that joke. XD - -Hope they keep the dog.";False;False;;;;1610215714;;False;{};giocl8n;False;t3_kt7bpo;False;False;t1_gioa0cc;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/giocl8n/;1610255212;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AoiSpeakers;;;[];;;;text;t2_hiub9;False;False;[];;inb4 dog is the main antagonist. spoopy intensifies XD;False;False;;;;1610215785;;False;{};giocqgr;False;t3_kt7bpo;False;True;t1_giocl8n;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/giocqgr/;1610255300;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AoiSpeakers;;;[];;;;text;t2_hiub9;False;False;[];;"Basically, SP System is SimP System. - -Loving the concept of Selector Points. - -I'm reminded of Dragon Ball and Fairy Tail (Fairy Sphere vs Acno) - -*extends my right hand*";False;False;;;;1610215865;;False;{};giocw9b;False;t3_kt7bpo;False;True;t3_kt7bpo;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/giocw9b/;1610255393;2;True;False;anime;t5_2qh22;;0;[]; -[];;;evl4evr;;;[];;;;text;t2_6p3c5;False;False;[];;Singing soon I'm going to in isekai;False;False;;;;1610216039;;False;{};giod8yw;False;t3_kt9rcs;False;True;t1_gin2xb5;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giod8yw/;1610255595;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KnightKal;;;[];;;;text;t2_pwr4duc;False;False;[];;"typical JP MC too, to reveal the secret of his amazing powers on first day. I bet that by episode 3 we will have a team of people already in the know and by episode 10 the king will send his knights to capture him. - -I mean his power is such a dangerous cheat. If someone with power actually learns about it, his life is over, right? - -So what did he do? Used his power for a silly joke (boobs joke). No way he can keep that secret!";False;False;;;;1610216285;;False;{};giodr0v;False;t3_kt9rcs;False;True;t1_giksayj;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giodr0v/;1610255902;1;True;False;anime;t5_2qh22;;0;[]; -[];;;consolefreakedorigin;;;[];;;;text;t2_2baqt95w;False;False;[];;Thank you;False;False;;;;1610216428;;False;{};gioe1i1;False;t3_kt9rcs;False;False;t1_gim68su;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gioe1i1/;1610256072;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dylangillian;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/dylangillian;light;text;t2_14buwl;False;False;[];;hmm, well. Guess we'll just have to wait and see then. I should probably just expect him to be dense.;False;False;;;;1610218790;;False;{};gioiypj;False;t3_kt9rcs;False;True;t1_gio6rvk;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gioiypj/;1610259192;1;True;False;anime;t5_2qh22;;0;[];True -[];;;itsfrizzy;;;[];;;;text;t2_1hi0h1b4;False;False;[];;right, a palindrome is a word or phrase that reads the same backwards and forwards(google example: madam or nurses run), this is merely reversing the words. was still funny tho;False;False;;;;1610218853;;False;{};gioj3lo;False;t3_kt6j2z;False;True;t1_gimu8ky;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gioj3lo/;1610259269;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Viewland;;;[];;;;text;t2_sghto92;False;False;[];;I can't believe this isn't hentai;False;False;;;;1610219823;;False;{};giol5ni;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giol5ni/;1610260416;3;True;False;anime;t5_2qh22;;0;[]; -[];;;sten_whik;;;[];;;;text;t2_rwzx3;False;False;[];;"Round perimeter walls were a thing. There's several structural benefits but more importantly there's also cost saving benefits as the perimeter of a circle is shorter than that of a square with the same area. However despite any structural benefits the defensive value of a round wall is significantly less than that of any other shape. The reason for that is that the curvature of the circle creates a consistent blind spot where defenders can't see along the outer base of the wall. This is what towers (and bastions) that extend beyond the edges of walls are for, they allow the tower's occupants to see if anybody is messing with the wall. Straighter walls mean that you don't have to build as many towers to cover them (with a square wall one in each corner does the trick) thus possibly saving more on construction costs than having the wall circular. - -By the way the same arguments apply for choosing circular towers (and bastions) or square ones and designers of defences flip flopped between using both for thousands of years until they realised that star points were best.";False;False;;;;1610219886;;1610222057.0;{};giolaiw;False;t3_kt9rcs;False;True;t1_gikxjyt;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giolaiw/;1610260489;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Atharaphelun;;;[];;;;text;t2_gawd5;False;False;[];;[Baghdad](https://www.ancient-origins.net/sites/default/files/field/image/ancient-city-Madinat-al-Salam-Baghdad-Round-City.jpg) was a perfectly circular city. Likewise, the ancient city of [Gur](https://followinghadrianphotographycom.files.wordpress.com/2020/10/dsojmd-ucaaqalv.jpg?w=1075) was also perfectly circular, and you can even still see [its perfectly circular outline to this day](https://www.researchgate.net/profile/Houshmand_Masoumi/publication/231169819/figure/fig43/AS:668909036384281@1536491750847/3-The-city-of-Gur-next-to-the-present-Firuzabad-city-in-Fars-province-in-south-of-Iran_Q640.jpg).;False;False;;;;1610223913;;False;{};giotoe3;False;t3_kt9rcs;False;False;t1_gimapn8;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giotoe3/;1610265202;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610225348;;False;{};giowmwm;False;t3_kt9rcs;False;True;t1_gil2uyg;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giowmwm/;1610266808;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dem00z;;;[];;;;text;t2_2irk13sj;False;False;[];;Are they just giving away the items to pass the entrance exam or at least keep it?;False;False;;;;1610227513;;False;{};gip16ma;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gip16ma/;1610269278;2;True;False;anime;t5_2qh22;;0;[]; -[];;;badspler;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Badspler/;light;text;t2_6vt9r;False;False;[];;"Sorry, your comment has been removed. - -- This belongs in the Source Corner at the top of this thread. In discussion threads for currently airing anime, discussions about source material, spin-offs, and unadapted content must be posted there, and not outside it. This applies specifically to comparisons to the anime or hints about future events, even if such hints are vague. Please note that you still have to tag your spoilers in the source corner. - - - - - -- - -^(Questions? Reply to this message, )[**^(send a modmail)**](http://www.reddit.com/message/compose?to=%2Fr%2Fanime)^(, or leave a comment in the )[**^(meta thread)**](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+title%3A%22Meta+Thread%22&restrict_sr=on&sort=new&t=year)^(. Don't know the rules? Read them )[**^(here)**](/r/anime/wiki/rules)^.";False;False;;;;1610227926;moderator;False;{};gip214l;False;t3_kt9rcs;False;True;t1_gindwck;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gip214l/;1610269763;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ksnh;;;[];;;;text;t2_s8i04;False;False;[];;"The boob resizing was straight up sexual harassment. No wonder anime turns people into incels. - -I don't know how an anime can be so bad/generic-feeling but also decent. The whole skill thing is broken from the get-go/bland & there's some typical ecchi stuff but for some reason I thought the action scenes was actually kind of good? I don't mind ecchi but the whole op skill is too offputting (or at least how it's introduced).";False;False;;;;1610228589;;1610229076.0;{};gip3clu;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gip3clu/;1610270489;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KSI-FAN-BABATUNDEE;;;[];;;;text;t2_8q8y7p04;False;False;[];;guys i watched the first 3 episodes its kinda interesting ngl but some of the cokmments saying its broing and they dropped so should i watch it or not? and imma keep up the daily comments here so if you wanna see what i think of the anime so far(which most of u dont care about) come back to this post everyday and it will only take like 4 or 6 days for me to finsh anime and movie. but if i dont feel in mood to watch the anime ill tell u guys. :) have a good day.;False;False;;;;1610228713;;False;{};gip3liy;True;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gip3liy/;1610270627;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KSI-FAN-BABATUNDEE;;;[];;;;text;t2_8q8y7p04;False;False;[];;hey bro i watched the first 3 eps and its kinds interesting i will be coming back to this post and tellin u what i thnk of it so fa and maybe u can tell me aswell by replying to my comments so i know wht u thnk? :);False;False;;;;1610228866;;False;{};gip3wdb;True;t3_kt6j2z;False;True;t1_gik3fjx;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gip3wdb/;1610270792;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MrPicklesAndTea;;MAL;[];;http://myanimelist.net/profile/MrPicklesAndTea;dark;text;t2_7cn2y;False;False;[];;That's because Little Rito hasn't yet evolved into Big Rito yet.;False;False;;;;1610229071;;False;{};gip4b1t;False;t3_kt9rcs;False;True;t1_gilj9tu;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gip4b1t/;1610271019;1;True;False;anime;t5_2qh22;;0;[]; -[];;;penis111111111111111;;;[];;;;text;t2_16fwgk;False;False;[];;When they gave her that voice I was like ooook. I didn’t expect it but I ain’t complaining;False;False;;;;1610229133;;False;{};gip4fih;False;t3_kt75px;False;False;t1_gimsy88;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/gip4fih/;1610271101;5;True;False;anime;t5_2qh22;;0;[]; -[];;;iStaki;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/iStaki;light;text;t2_ioondgh;False;False;[];;sry but I won't be watching it yet for some time but would love to hear what u think. :);False;False;;;;1610231612;;False;{};gip9fdj;False;t3_kt6j2z;False;True;t1_gip3wdb;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gip9fdj/;1610273834;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Reed1981;;;[];;;;text;t2_tkg7kxi;False;False;[];;Bridges are a strain on artists' wrists.;False;False;;;;1610232988;;False;{};gipc5qm;False;t3_kt9rcs;False;True;t1_gil5pxn;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gipc5qm/;1610275320;1;True;False;anime;t5_2qh22;;0;[]; -[];;;metalmonstar;;;[];;;;text;t2_55yjk;False;False;[];;So is Wixoss like an actual card game? I am so lost, felt like every anime was crammed into 1 episode.;False;False;;;;1610235007;;False;{};gipg2jn;False;t3_kt7bpo;False;True;t3_kt7bpo;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/gipg2jn/;1610277432;1;True;False;anime;t5_2qh22;;0;[]; -[];;;midtharp;;;[];;;;text;t2_2tkeqy5s;False;False;[];;Noir's androgyny (esp. in the ED) makes this a curious hybrid of harem and shoujo;False;False;;;;1610236671;;False;{};gipj885;False;t3_kt9rcs;False;True;t1_gio65jt;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gipj885/;1610279146;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The-Knight-OfZer0;;;[];;;;text;t2_1odqettd;False;False;[];;Somethings really bugging me about this one can’t he ask the sage how to free the blue haired chick ? Like he just causally leaves her chained up there.;False;False;;;;1610238015;;False;{};giplt8a;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giplt8a/;1610280585;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ksaraf23;;;[];;;;text;t2_hgpch;False;False;[];;"Oh I’m so glad someone else remembers that show! - -I loved that show when it aired!";False;False;;;;1610238869;;False;{};gipngho;False;t3_kt9rcs;False;False;t1_gikr06y;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gipngho/;1610281489;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ksaraf23;;;[];;;;text;t2_hgpch;False;False;[];;I’m hoping the childhood friend gets better luck this time around. I’m sure my hope won’t amount to much, but I’ll still do it.;False;False;;;;1610238945;;False;{};gipnlp2;False;t3_kt9rcs;False;False;t1_gikyxjp;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gipnlp2/;1610281572;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Considered_Dissent;;;[];;;;text;t2_3ri9v346;False;False;[];;Any% glitched would probably go to Quintessential Quintuplets since the very first scene of the show is a flashforward to him getting married.;False;False;;;;1610239302;;False;{};gipoah9;False;t3_kt9rcs;False;True;t1_gilomia;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gipoah9/;1610281963;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Danilieri;;;[];;;;text;t2_14efkm;False;False;[];;This is so disgustingly trashy that I kinda want to watch it.it feels like it was made by a love starved horny twelve year old who had completley free reign on whatever he wants to put into this anime.;False;False;;;;1610240388;;False;{};gipqfcx;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gipqfcx/;1610283180;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thewindssong;;;[];;;;text;t2_70r8j;False;False;[];;With that in mind, I wonder if Great Sage draws on LP as well, and if so, how long until he realizes that is why he was getting headaches.;False;False;;;;1610241295;;False;{};gips5d7;False;t3_kt9rcs;False;True;t1_gillsj8;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gips5d7/;1610284198;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;He doesn't get headaches when he uses LP-draining skills tho, he just gets tired.;False;False;;;;1610241606;;False;{};gipsqgo;False;t3_kt9rcs;False;True;t1_gips5d7;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gipsqgo/;1610284547;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thewindssong;;;[];;;;text;t2_70r8j;False;False;[];;My guess is because skills are physical he gets tired, where as Great Sage is taxing mentally, so he gets headaches.;False;False;;;;1610241730;;False;{};gipsyi4;False;t3_kt9rcs;False;True;t1_gipsqgo;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gipsyi4/;1610284686;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"""Create Skill"" is not physical tho.";False;False;;;;1610242136;;False;{};giptpku;False;t3_kt9rcs;False;True;t1_gipsyi4;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giptpku/;1610285126;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thewindssong;;;[];;;;text;t2_70r8j;False;False;[];;I mean in such that Create can add physical effects, such as wings, or the physical ability to use stone bullet, given that there seems to be no other way to learn skills so far.;False;False;;;;1610242536;;False;{};gipug7s;False;t3_kt9rcs;False;False;t1_giptpku;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gipug7s/;1610285572;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"How is the *ability* to use stone bullet ""physical""?";False;False;;;;1610242957;;False;{};gipv865;False;t3_kt9rcs;False;True;t1_gipug7s;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gipv865/;1610286044;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AffineTransformer;;;[];;;;text;t2_4fku2x0m;False;False;[];;"For newer anime watchers i'd even recommend it as it's more accessible than other anime with very similar plots so serves as an introduction and reference point. - -But if you have watched a bit of anime already, the hard edges(the bully scene and explanations using ""science"" were the worst) makes it somewhat difficult to watch. There's also the lack of originality: [bunny girl senpai & monogatari high level overview with spoilers](/s ""MC runs into a girl that experiences a supernatural phenomenon. After consulting someone, they explain that the supernatural events are a manifestation of the person's emotional problems. After solving the dilemma, the first girl to be saved becomes the MC-s girlfriend. The story continues as the cast solve other girls' problems."") - -Some say the movie is good, but for me it was the weakest part of the series.";False;False;;;;1610243522;;False;{};gipwab1;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gipwab1/;1610286715;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thewindssong;;;[];;;;text;t2_70r8j;False;False;[];;"As in people are born with it, so it is something physically integrated into his dna or wherever skills are stored/decided. - -Could also be that the headaches are a built in failsafe of Great Sage, to stop the user from reaching that exhaustion state of using LP. I don't know, I didn't read the source ¯\_(ツ)_/¯";False;False;;;;1610244273;;False;{};gipxozd;False;t3_kt9rcs;False;True;t1_gipv865;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gipxozd/;1610287610;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LOTRfreak101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LOTRfreak101;light;text;t2_opd6l;False;False;[];;waifus? you mean friends, right?;False;False;;;;1610244951;;False;{};gipyyjv;False;t3_kt9rcs;False;True;t1_gileumu;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gipyyjv/;1610288445;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LOTRfreak101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LOTRfreak101;light;text;t2_opd6l;False;False;[];;and now my trauma is back. thanks.;False;False;;;;1610245426;;False;{};gipzuam;False;t3_kt9rcs;False;True;t1_gim3k4v;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gipzuam/;1610289016;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Considered_Dissent;;;[];;;;text;t2_3ri9v346;False;False;[];;"Ok so this team scored 11 *Times* the next team's score and set an all-time record for our school, however we've never heard of the concept of a scholarship so they better pay up or they're not coming here. - -I think it's good in a sense to give the MC hardship and obstacles but this sort of thing can seem a bit arbitrary/manufactured. -Im guessing it's setup for the great sage to give him a wacky scheme to make some quick cash in Ep2, though it does annoy slightly because it gives more opportunity for hammering home of the ""poor me, I'm above 99% of this society, but the 0.9% above me are sooooo snobby and mean to me!!!"".";False;False;;;;1610245602;;False;{};giq06an;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giq06an/;1610289245;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Considered_Dissent;;;[];;;;text;t2_3ri9v346;False;False;[];;"I think it's landed well because while it isnt going to top any ""anime of the season"" lists it seems set to be a solid ""also ran"" that is establishing a pace/quality that it should be able to successfully maintain - not to mention that it doesnt appear to be ashamed of what it is and has also cut through some nonsense/tropes that other shows may take several seasons to even attempt.";False;False;;;;1610245979;;False;{};giq0vxp;False;t3_kt9rcs;False;False;t1_gio6evu;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giq0vxp/;1610289693;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lukeuntld072;;;[];;;;text;t2_y8pgd;False;False;[];;Tamm is really unlucky. He got stabbed by bandits for no reason. Got a cute girl he had to leave because of his clan duties. Then got killed;False;False;;;;1610248556;;False;{};giq5jwd;False;t3_kt84wj;False;True;t1_gil8kd2;/r/anime/comments/kt84wj/kings_raid_ishi_wo_tsugumonotachi_episode_15/giq5jwd/;1610292993;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lukeuntld072;;;[];;;;text;t2_y8pgd;False;False;[];;U should atleast try a few episodes.;False;False;;;;1610248610;;False;{};giq5ned;False;t3_kt84wj;False;True;t1_gimhoty;/r/anime/comments/kt84wj/kings_raid_ishi_wo_tsugumonotachi_episode_15/giq5ned/;1610293057;2;True;False;anime;t5_2qh22;;0;[]; -[];;;monsieurvampy;;;[];;;;text;t2_453ax;False;False;[];;"I somehow keep coming back. I think I""m just being stubborn. It's not bad, I just think in a packed season as in Fall 2020 and now Winter 2021 its not even mid-tier.";False;False;;;;1610248992;;False;{};giq6bub;False;t3_kt84wj;False;True;t1_gill919;/r/anime/comments/kt84wj/kings_raid_ishi_wo_tsugumonotachi_episode_15/giq6bub/;1610293507;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SYZekrom;;;[];;;;text;t2_i5y6z;False;False;[];;"[POG SISTER](https://cdn.discordapp.com/attachments/621713361390010378/797646916225597490/image0.jpg) - -[Oh](https://cdn.discordapp.com/attachments/621713361390010378/797647276130041896/image0.jpg) - -[Wow an anime where the mc starts with a gf cool](https://cdn.discordapp.com/attachments/621713361390010378/797648331757191218/image0.jpg) - -Wait so there are more than one of these hidden dungeons yea? Do they all have that spell and can anyone who knows it use it - -Is it just ‘only I can enter bc only I know the spell’ or is it actually someplace only he can enter - -Well I guess there’s this girl that’s chained here so that answers that - -Ok but what if instead you kissed her and then asked the great sage if there was some way to free her - -[This was really her first example over food and money huh](https://cdn.discordapp.com/attachments/621713361390010378/797653817617022976/image0.jpg) - -Also so could her powers theoretically be spread to all of humanity - -[BUT IS HE NORMALLY LIKE THIS OR DID HE ONLY START BC OF HIS LP](https://cdn.discordapp.com/attachments/621713361390010378/797654484155105290/image0.jpg) - - -BRO DON’T JUST - -CHANGE HER CHEST SIZE WTF ASK HER LMFAO - - -THIS GUY IS LITERALLY STRUGGLING AND STILL SAID ‘I NEED A COOL LINE BEFORE I ATTEMPT TO KILL THIS DANGEROUS MONSTER’ - -YOU FUCKING IDIOT BROUGHT THE SKULL OF A LEVEL 99 MONSTER LIKE ‘THIS SHOULD BE OK’ BRUH - -[WHO IS THIS](https://cdn.discordapp.com/attachments/621713361390010378/797657771884675072/image0.jpg) - -Oh young Emma probably duh - -So does he not actually have an upper limit to LP that grows with leveling or anything? - -Well I welcome our new OP protagonist, fueled by the power of lewd";False;False;;;;1610249748;;False;{};giq7q0f;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giq7q0f/;1610294436;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sfantul119;;;[];;;;text;t2_7v7j5h;False;False;[];;I mean the more anime you got to watch the better?Aslong it isnt garbage its worth the time i think;False;False;;;;1610250447;;False;{};giq8zyl;False;t3_kt84wj;False;True;t1_giq6bub;/r/anime/comments/kt84wj/kings_raid_ishi_wo_tsugumonotachi_episode_15/giq8zyl/;1610295349;1;True;False;anime;t5_2qh22;;0;[]; -[];;;fridchikn24;;;[];;;;text;t2_b0c3x;False;False;[];;OHAYO HAMBORGAAAAA;False;False;;;;1610250605;;False;{};giq9a76;False;t3_kt75px;False;True;t1_gil6p9h;/r/anime/comments/kt75px/jujutsu_kaisen_pv_4/giq9a76/;1610295541;1;True;False;anime;t5_2qh22;;0;[]; -[];;;stopeatingbuttspls;;;[];;;;text;t2_6bq60emj;False;False;[];;Sorry, I'm too busy building speed for 12 hours to watch it.;False;False;;;;1610251659;;False;{};giqb5v3;False;t3_kt9rcs;False;True;t1_gio88ne;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giqb5v3/;1610296850;3;True;False;anime;t5_2qh22;;0;[]; -[];;;linkmaster144;;;[];;;;text;t2_okriu;False;False;[];;He has a limited amount of time for the exam. If he ran away now, he wasn't going to be able to come back and kill it in time later.;False;False;;;;1610254513;;False;{};giqg35h;False;t3_kt9rcs;False;True;t1_gimxq52;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giqg35h/;1610300459;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ShinJiwon;;;[];;;;text;t2_iad3y;False;False;[];;Or better, Rito could kick the bucket and ToLove Ru turns into a yuri orgy.;False;False;;;;1610255270;;False;{};giqha0z;False;t3_kt9rcs;False;True;t1_gilj9tu;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giqha0z/;1610301306;1;True;False;anime;t5_2qh22;;0;[]; -[];;;the_swizzler;;MAL;[];;http://myanimelist.net/animelist/Swiftarm;dark;text;t2_kpweq;False;False;[];;[It is indeed](https://www.amazon.com/WIXOSS-Structure-BLACK-DESIRE-Japan/dp/B00JTWZJ1K);False;False;;;;1610258730;;False;{};giqm8vi;False;t3_kt7bpo;False;True;t1_gipg2jn;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/giqm8vi/;1610305312;2;True;False;anime;t5_2qh22;;0;[]; -[];;;the_swizzler;;MAL;[];;http://myanimelist.net/animelist/Swiftarm;dark;text;t2_kpweq;False;False;[];;Probably, though personally I would recommend the last two seasons as well. Maybe they aren't as good as S1 and S2, but I thought they were pretty interesting and did some cool things. Especially in S4.;False;False;;;;1610259017;;False;{};giqmmoy;False;t3_kt7bpo;False;True;t1_gike0ck;/r/anime/comments/kt7bpo/wixoss_divaalive_episode_1_discussion/giqmmoy/;1610305562;2;True;False;anime;t5_2qh22;;0;[]; -[];;;-BeezusHrist;;;[];;;;text;t2_7zvek0yg;False;False;[];;"People have been saying this show is bad, but I think it's a sleeper gem. It has been building up to this episode since the very beginning and it did it in a very cool way. I like how they've managed to flesh out both groups of characters and I guess they'll come together in the end. - -Hope they can stick the landing in 10 episodes";False;False;;;;1610261218;;False;{};giqphwy;False;t3_kt84wj;False;True;t3_kt84wj;/r/anime/comments/kt84wj/kings_raid_ishi_wo_tsugumonotachi_episode_15/giqphwy/;1610307512;1;True;False;anime;t5_2qh22;;0;[]; -[];;;InsomniaEmperor;;;[];;;;text;t2_5x68hmc4;False;False;[];;She sounds like Wiz in this one.;False;False;;;;1610262352;;False;{};giqqveg;False;t3_kt9rcs;False;True;t1_giky89v;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giqqveg/;1610308462;1;True;False;anime;t5_2qh22;;0;[]; -[];;;InsomniaEmperor;;;[];;;;text;t2_5x68hmc4;False;False;[];;"Ryota Osaka plays another mega chad MC after Chivalry of a Failed Knight and Snow White With Red Hair. Interestingly, he continues his record of MC whose imouto is bro con like Chivalry of a Failed Knight, OniAi, and Bokuben. The female seiyuu cast looks pretty solid too. - -It is very entertaining. Looks like a generic isekai in terms of setting (though it's not isekai) but is very fun to watch, the MC is a chad, and his childhood friend isn't an annoying tsundere. It's gonna be a harem but I really hope the harem is more like I'm Standing On A Million Lives where only one girl is interested in the MC and the girls aren't throwing themselves into the MC just because. - -The ED was pretty solid. We didn't get an OP but I hope it's really good.";False;False;;;;1610263210;;False;{};giqrv7g;False;t3_kt9rcs;False;False;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giqrv7g/;1610309173;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MonaganX;;;[];;;;text;t2_y3plh;False;False;[];;I don't think Anos Voldigoad would feel up his sister so he could shrink his girlfriend's boobs without her consent.;False;False;;;;1610264651;;False;{};giqthkz;False;t3_kt9rcs;False;True;t1_giku3e7;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giqthkz/;1610310418;1;True;False;anime;t5_2qh22;;0;[]; -[];;;casualphilosopher1;;;[];;;;text;t2_1tw5fjdk;False;False;[];;"This. I don't care for the overblown 'noble hierarchy' stuff in this series where nearly every noble treats Noru like trash for being a the son of a Baronet. It's not like everyone they meet and work with every day will be a noble; most citizens, soldiers and adventurers in this world are still commoners.";False;False;;;;1610264954;;False;{};giqttiq;False;t3_kt9rcs;False;True;t1_giq06an;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giqttiq/;1610310661;2;True;False;anime;t5_2qh22;;0;[]; -[];;;casualphilosopher1;;;[];;;;text;t2_1tw5fjdk;False;False;[];;"Note that there are some obvious storytelling flaws with this series if you think about it. The MC has 4 very broken skills(He can learn anything, create any skill and give / take / modify skills and attributes of others) and in most cases is limited only by his imagination. There may be many moments when you want to ask 'Why didn't he just do ____?' - -That said this is the sort of series you don't think too hard about; just sit back and enjoy for the humour, fanservice and girls.";False;False;;;;1610265225;;False;{};giqu3zv;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giqu3zv/;1610310875;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fatalystic;;;[];;;;text;t2_xy716;False;False;[];;"Typical noble in a show with a medieval setting, looking down on and abusing everyone of a lower rank. - -She's clearly not meant to be sympathetic.";False;False;;;;1610267105;;False;{};giqw3g8;False;t3_kt9rcs;False;True;t1_gil750z;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giqw3g8/;1610312295;2;True;False;anime;t5_2qh22;;0;[]; -[];;;fatalystic;;;[];;;;text;t2_xy716;False;False;[];;"I'm not sure why the subbers felt the need to ""get creative"" with those skill names. They're literally just ""Create"", ""Bestow"", and ""Edit"". - -The show itself is...I mean, like other people in this thread have said, it's trashy. But it's not terrible either at this juncture, especially since they've laid out the premise right away within the first half of the episode and told us flat-out that there's going to be a harem, and it's necessary to fuel the MC's abilities. - -It also felt like it was going a little fast, but as I'm not familiar with the source material, I can't say for certain whether that's actually the case.";False;False;;;;1610267473;;False;{};giqwhbo;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giqwhbo/;1610312579;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gorexxar;;;[];;;;text;t2_okdwe;False;False;[];;">Normal logic: my girl's shoulders ache, I'll use my editor skill to learn massage technique -> ->Noir logic: my girl's shoulders ache, time to downsize - -He has the power to bend reality to his whim. - -Reality Bender: Bestow power of no-back pain.";False;False;;;;1610267474;;False;{};giqwhco;False;t3_kt9rcs;False;True;t1_giksayj;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giqwhco/;1610312580;1;True;False;anime;t5_2qh22;;0;[]; -[];;;adeleke5140;;;[];;;;text;t2_10tpx9;False;False;[];;I'd try that. Thanks.;False;False;;;;1610269702;;False;{};giqyqrf;False;t3_kt84wj;False;True;t1_gimrx0g;/r/anime/comments/kt84wj/kings_raid_ishi_wo_tsugumonotachi_episode_15/giqyqrf/;1610314208;1;True;False;anime;t5_2qh22;;0;[]; -[];;;basuga_BFE;;;[];;;;text;t2_l8vzif1;False;True;[];;">every time something comes up - -""Hey, I have an idea: kiss me!""";False;False;;;;1610272598;;False;{};gir1lm7;False;t3_kt9rcs;False;True;t1_gim8ei9;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gir1lm7/;1610316191;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PhilosopherJack;;MAL;[];;http://myanimelist.net/animelist/philosopherjack;dark;text;t2_mx4ip;False;False;[];;"C-tier fantasy title with generic looking self-insert MC and ~~lewd~~ wholesome harem? - -##itadakimasu";False;False;;;;1610281355;;False;{};gira8ln;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gira8ln/;1610322106;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PhilosopherJack;;MAL;[];;http://myanimelist.net/animelist/philosopherjack;dark;text;t2_mx4ip;False;False;[];;Even though that's probably the first skill anyone should try, I'm gonna slide it under the rug and say those type of skills might cost an exponential amount like an idle clicker game;False;False;;;;1610281586;;False;{};girah9u;False;t3_kt9rcs;False;True;t1_gioaif8;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/girah9u/;1610322258;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PhilosopherJack;;MAL;[];;http://myanimelist.net/animelist/philosopherjack;dark;text;t2_mx4ip;False;False;[];;"> trashy, low quality harem fantasy anime - -jokes on you I'm into that shit";False;False;;;;1610281732;;False;{};giramod;False;t3_kt9rcs;False;True;t1_gilng25;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giramod/;1610322364;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PhilosopherJack;;MAL;[];;http://myanimelist.net/animelist/philosopherjack;dark;text;t2_mx4ip;False;False;[];;"I'm leaning towards the chains being ridiculously OP but I have no doubt that it could easily be just a trivial plot device - -If Noir needed 4000 to edit the reaper's skill, and Olivia considers reapers to be low-tier fodder, then imagine how strong those chains must be - -Though I feel Great Sage could easily figure out the solution";False;False;;;;1610282324;;False;{};girb998;False;t3_kt9rcs;False;False;t1_gillzee;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/girb998/;1610322794;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PhilosopherJack;;MAL;[];;http://myanimelist.net/animelist/philosopherjack;dark;text;t2_mx4ip;False;False;[];;"""In order to use my skill without immense pain I need to kiss you"" - -400 IQ plays";False;False;;;;1610282394;;False;{};girbbx0;False;t3_kt9rcs;False;True;t1_gimzdmn;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/girbbx0/;1610322843;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phoenixwaller;;;[];;;;text;t2_34autsr9;False;False;[];;"I guess since it's source, but in the preview. - -I hope they made [Assassin's name from preview](/s ""Reina"") less annoying in the show than in the game. I couldn't get through that chapter fast enough. - -I am glad to see Scarlet, Demia and the remnants of Black Edge in Galluah Plains though, because that hopefully means that we'll soon get a couple other major characters teased in the OP.";False;False;;;;1610284884;;False;{};gire6g1;False;t3_kt84wj;False;True;t1_gikd6sk;/r/anime/comments/kt84wj/kings_raid_ishi_wo_tsugumonotachi_episode_15/gire6g1/;1610324712;1;True;False;anime;t5_2qh22;;0;[]; -[];;;phoenixwaller;;;[];;;;text;t2_34autsr9;False;False;[];;"Also, anybody else not impressed with Malduk's redesign? I mean he looks like a perverted creep in the anime. - -He actually looks like a baddie in the game.";False;False;;;;1610285930;;False;{};girfgy0;False;t3_kt84wj;False;True;t1_gikd6sk;/r/anime/comments/kt84wj/kings_raid_ishi_wo_tsugumonotachi_episode_15/girfgy0/;1610325582;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KSI-FAN-BABATUNDEE;;;[];;;;text;t2_8q8y7p04;False;False;[];;hello pls can u help me i had 195 karma yesterday but now i have 165 and i am losing more every hour why is this happening pls can you tell me as im new to reddit.;False;False;;;;1610298109;;False;{};girzezz;True;t3_kt6j2z;False;True;t1_gik3duo;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/girzezz/;1610338435;1;True;False;anime;t5_2qh22;;0;[]; -[];;;psihius;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/psihius;light;text;t2_ebp2e;False;False;[];;"So, this is ""the trash anime"" for this season to watch. - -Perfect! :D";False;False;;;;1610305416;;False;{};gisdbdc;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gisdbdc/;1610346816;2;True;False;anime;t5_2qh22;;0;[]; -[];;;shaxmeister;;;[];;;;text;t2_11pnhv;False;False;[];;First episode and I already know im gonna end reading the manga/LN when the season ends.;False;False;;;;1610308230;;False;{};gisizhs;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gisizhs/;1610350017;1;True;False;anime;t5_2qh22;;0;[]; -[];;;souther1983;;;[];;;;text;t2_g62in;False;False;[];;"It is indeed a minority view, but you're free to think so. That's fine. - -I don't personally agree and could debate it. There's plenty of situations where Lelouch makes a mistake, whether big or small, so he's not always perfect. - -Just don't feel like arguing about it at the moment.";False;False;;;;1610309760;;False;{};gism2r9;False;t3_kt7qbe;False;True;t1_gil604s;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gism2r9/;1610351731;1;True;False;anime;t5_2qh22;;0;[]; -[];;;souther1983;;;[];;;;text;t2_g62in;False;False;[];;All I'll say is Light might be smarter but he's a lot less interesting as an individual. Which would also explain the answer to your question, since Lelouch's personality isn't the same as Light's.;False;False;;;;1610309850;;False;{};gism9fz;False;t3_kt7qbe;False;True;t1_gil7s4i;/r/anime/comments/kt7qbe/code_geass_opinions_good_or_just_meh/gism9fz/;1610351832;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WACS_On;;;[];;;;text;t2_notm65o;False;False;[];;"Magic Hanekawa - -Magic Hanekawa";False;False;;;;1610310001;;False;{};gismkkp;False;t3_kt9rcs;False;True;t1_giky89v;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gismkkp/;1610352003;3;True;False;anime;t5_2qh22;;0;[]; -[];;;silent_assasin29;;;[];;;;text;t2_1rnbkx8a;False;False;[];;City Surrounded by the wall , must be reiner's nigtmare;False;False;;;;1610310200;;False;{};gismzt8;False;t3_kt9rcs;False;True;t1_giktpez;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gismzt8/;1610352233;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WACS_On;;;[];;;;text;t2_notm65o;False;False;[];;Trashy garbage like this is my go-to palate cleanser so that I can properly appreciate the really good stuff. And as far as trashy garbage goes this is just what the doctor ordered;False;False;;;;1610310321;;False;{};gisn8rs;False;t3_kt9rcs;False;True;t1_giramod;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gisn8rs/;1610352369;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LOTRfreak101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LOTRfreak101;light;text;t2_opd6l;False;False;[];;"> lose an excuse to kiss a cute girl every time something comes up? - -generic harem anime protagonist: Where do I sign up?";False;False;;;;1610319500;;False;{};git6id9;False;t3_kt9rcs;False;True;t1_gim8ei9;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/git6id9/;1610362812;1;True;False;anime;t5_2qh22;;0;[]; -[];;;LOTRfreak101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/LOTRfreak101;light;text;t2_opd6l;False;False;[];;mikan definitely seems very interested in it though.;False;False;;;;1610319550;;False;{};git6m8g;False;t3_kt9rcs;False;True;t1_gilj9tu;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/git6m8g/;1610362874;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CTMacUser;;;[];;;;text;t2_aqb3t;False;False;[];;"The MC is eventually going to repay the dungeon chick by using his base skill to learn how to defuse the Death Chains so she can be freed without getting killed, right? (This doesn’t necessarily mean he can do the feat right away, though.) - -I’m still trying to figure out the magic system. General spells seem to be a thing; that’s what the MC used to open the door. What are the range of feats that can be done via skills, and via regular spells? It seemed that fueling feats with LP is rare, so the MC should focus on adding skill sets that have general utility but are fueled by conventional mana (or whatever) instead of LP. Like Avatar powers (think Aang or Korra), for example.";False;False;;;;1610319965;;False;{};git7gyc;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/git7gyc/;1610363340;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hintofinsanity;;;[];;;;text;t2_b5isf;False;False;[];;"""This show is trash and so am I"" is the itadakimasu for my anime consumption.";False;False;;;;1610331500;;False;{};gitv5fm;False;t3_kt9rcs;False;True;t1_gilpspx;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gitv5fm/;1610378092;3;True;False;anime;t5_2qh22;;0;[]; -[];;;hintofinsanity;;;[];;;;text;t2_b5isf;False;False;[];;Emma reminds me a lot of Kirara from Hxeros before she experienced the tragedy that ended up changing her personality in the aftermath.;False;False;;;;1610331620;;False;{};gitveoy;False;t3_kt9rcs;False;True;t1_gilix5x;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gitveoy/;1610378270;1;True;False;anime;t5_2qh22;;0;[]; -[];;;hintofinsanity;;;[];;;;text;t2_b5isf;False;False;[];;Horny is an emotion.;False;False;;;;1610331827;;False;{};gitvtrz;False;t3_kt9rcs;False;True;t1_giloaal;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gitvtrz/;1610378548;2;True;False;anime;t5_2qh22;;0;[]; -[];;;hintofinsanity;;;[];;;;text;t2_b5isf;False;False;[];;I know slime is 2, but what is the third, Senku?;False;False;;;;1610331903;;False;{};gitvzb6;False;t3_kt9rcs;False;True;t1_gimw5xh;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gitvzb6/;1610378651;1;True;False;anime;t5_2qh22;;0;[]; -[];;;machopsychologist;;;[];;;;text;t2_1nsz447e;False;False;[];;Spider isekai;False;False;;;;1610333654;;False;{};gitzgu8;False;t3_kt9rcs;False;True;t1_gitvzb6;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gitzgu8/;1610381041;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Areouf;;;[];;;;text;t2_3nyxnua3;False;False;[];;"""A strong feeling deriving from one's circumstances, mood, or relationships with others."" - -Sure, why not :')";False;False;;;;1610343851;;False;{};giuhgce;False;t3_kt9rcs;False;True;t1_gitvtrz;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giuhgce/;1610394082;1;True;False;anime;t5_2qh22;;0;[]; -[];;;slimes007;;;[];;;;text;t2_tgoqs;False;False;[];;There are only 3 translated volumes so far and I've read them all. She hasn't been released yet as far as I read but if they adapt till volume 4 then Maybe...?;False;False;;;;1610354399;;False;{};giuvxxr;False;t3_kt9rcs;False;True;t1_gilw3nz;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giuvxxr/;1610403947;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SnooDrawings6980;;;[];;;;text;t2_7wtnhe4e;False;False;[];;must i say eww and disgusting i get u r friends but u don't just kiss someone for a stupid headache eww and i already don't like the blond hair girl, if she is the main i am out srsly the guy is a pervert and is disgusting I will not really recommend but if u want to give it a try sure.;False;False;;;;1610362548;;False;{};giv67wx;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giv67wx/;1610409969;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SnooDrawings6980;;;[];;;;text;t2_7wtnhe4e;False;False;[];;well what happens and who does he end up with i don't like the blonde girl so i would want to know so i wouldn't waste my time and start to hate the anime if the blonde girl is main which already seems to be the case;False;False;;;;1610362737;;False;{};giv6hp1;False;t3_kt9rcs;False;True;t1_gio8f4o;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giv6hp1/;1610410114;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SnooDrawings6980;;;[];;;;text;t2_7wtnhe4e;False;False;[];;"well please tell what happens - -plss - -like who he ends up with";False;False;;;;1610362796;;False;{};giv6klt;False;t3_kt9rcs;False;True;t1_gim2mwx;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giv6klt/;1610410175;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ultraman9513;;;[];;;;text;t2_5b2pn87v;False;False;[];;Who’s he? What series?;False;False;;;;1610362856;;False;{};giv6njp;False;t3_kt9rcs;False;True;t1_giv6klt;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giv6njp/;1610410221;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Brauka_;;;[];;;;text;t2_y41ft;False;False;[];;Excellent, trash anime for the season has been found and locked in.;False;False;;;;1610364074;;False;{};giv8flc;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giv8flc/;1610411151;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610394194;;False;{};gix2i0l;False;t3_kt9rcs;False;True;t1_gim6t9j;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gix2i0l/;1610446801;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lenopix;;;[];;;;text;t2_7jbg6;False;True;[];;my eyes hurt from crying;False;False;;;;1610399010;;False;{};gixd3sa;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gixd3sa/;1610452663;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoJoMan42;;;[];;;;text;t2_2eafdmy7;False;False;[];;Your posts/comments are probably getting downvoted by people. You just have to accept this, some people on reddit downvote for literally no reason;False;False;;;;1610400781;;False;{};gixgxyk;False;t3_kt6j2z;False;True;t1_girzezz;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gixgxyk/;1610454943;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoJoMan42;;;[];;;;text;t2_2eafdmy7;False;False;[];;Have you watched Kaguya sama love is war? its a pretty good romcom/sol;False;False;;;;1610400853;;False;{};gixh3mr;False;t3_kt6j2z;False;True;t1_gikrj0z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gixh3mr/;1610455043;2;True;False;anime;t5_2qh22;;0;[]; -[];;;drakon3rd;;;[];;;;text;t2_10vwyl;False;False;[];;Yessir it’s a good show. Still don’t like it as much as the other two only because I don’t see the relationship between the two develop as much lmao;False;False;;;;1610401343;;False;{};gixi5mp;False;t3_kt6j2z;False;True;t1_gixh3mr;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gixi5mp/;1610455710;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610401609;;False;{};gixiq8j;False;t3_kt6j2z;False;False;t1_gixi5mp;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gixiq8j/;1610456065;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoJoMan42;;;[];;;;text;t2_2eafdmy7;False;False;[];;"Haha that i can agree with... the development is a little too slow in s1 and s2. - -Having read the manga, There will be atleast more progress than both s1 and s2 in s3 (whenever that comes out). Its pretty much my favourite romcom/sol series right now lol";False;False;;;;1610401930;;False;{};gixjf0z;False;t3_kt6j2z;False;True;t1_gixi5mp;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gixjf0z/;1610456496;2;True;False;anime;t5_2qh22;;0;[]; -[];;;drakon3rd;;;[];;;;text;t2_10vwyl;False;False;[];;Oh shit now I’m excited now. That’s some good news right there! It’ll definitely have a season 3 at least lol.;False;False;;;;1610402759;;False;{};gixl630;False;t3_kt6j2z;False;True;t1_gixjf0z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gixl630/;1610457646;2;True;False;anime;t5_2qh22;;0;[]; -[];;;JoJoMan42;;;[];;;;text;t2_2eafdmy7;False;False;[];;And indeed it will. Season 3 is already confirmed for 2021;False;False;;;;1610402832;;False;{};gixlbpe;False;t3_kt6j2z;False;True;t1_gixl630;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gixlbpe/;1610457742;2;True;False;anime;t5_2qh22;;0;[]; -[];;;drakon3rd;;;[];;;;text;t2_10vwyl;False;False;[];;HELL YEAH!;False;False;;;;1610402987;;False;{};gixln93;False;t3_kt6j2z;False;True;t1_gixlbpe;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gixln93/;1610457951;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nbsdx;;AP;[];;http://www.anime-planet.com/users/nbsdx/anime;dark;text;t2_9d5cb;False;False;[];;Dominance status: Asserted.;False;False;;;;1610427779;;False;{};giyxvip;False;t3_kt9rcs;False;True;t1_gilfusz;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/giyxvip/;1610492042;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ClemCa1;;;[];;;;text;t2_1mq70li;False;False;[];;He's so OP and he doesn't even notice it. Every obstacle he encounters literally shouldn't be a problem to someone with such an op skillset.;False;False;;;;1610452340;;False;{};gizpikv;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gizpikv/;1610509855;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Unit88;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Intelligent_One;light;text;t2_5fhy6;False;False;[];;"> Noir logic: my girl's shoulders ache, time to downsize - -Tbf, she complained a fair bit about the size of her chest in that scene, not *just* the shoulder ache";False;False;;;;1610453757;;False;{};gizr44y;False;t3_kt9rcs;False;True;t1_giksayj;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gizr44y/;1610510860;2;True;False;anime;t5_2qh22;;0;[]; -[];;;F_IS_FOR_FLIP;;;[];;;;text;t2_9p7282vy;False;False;[];;dogshit, too fast of a romance this is high potential for an hanime and honestly should just reach for that point instead. I rate this a 3/10 pros: big boobs cons: too many big boobs, goddamn op skill that breaks all boundaries, it filled me with no enjoyment and only disappointment as again this is a dogshit show.;False;False;;;;1610463944;;False;{};gj07bmh;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gj07bmh/;1610520857;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SkyLETV;;MAL;[];;https://myanimelist.net/profile/SkyLETV;dark;text;t2_bn8y64t;False;False;[];;"Huh... that wasn't bad at all, in fact I loved it. It even has a great cast with Yui Horie, Rumi Ookubo, Akari Kitou and Miyu Tomita... and to think I was going to skip it, but I'm sold! - -Already a kiss in the first episode? And with the childhood friend? Yes! I love that the MC didn't hesitate and went for it... repeatedly. And she said wives, so if this is a real harem I really look forward to it. - -Emma is already best girl, she is so cute and hot (that red dress damn!) but Olivia is great too, and she is chained, I can't imagine how great she will be once she is free. - -Plenty of fanservice with nice shots which I appreciate, this show knows what it is and goes for it. The ending song is pretty nice and the visuals go very well, the beginning showing how they grew up together is cute... and lol Emma's breasts resting on that wall xD.";False;False;;;;1610518878;;False;{};gj36pj2;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gj36pj2/;1610590698;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChairForceOne;;;[];;;;text;t2_5dwfa;False;False;[];;I think it's the other way. IIRC from the books it's his sister that's a brocon. Pretty trashy but oddly enjoyable.;False;False;;;;1610522715;;False;{};gj3b70b;False;t3_kt9rcs;False;True;t1_gil06ux;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gj3b70b/;1610593614;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kadmos1;;;[];;;;text;t2_95i99;False;False;[];;Also, Noir asked to kiss Emma. What a gent.;False;False;;;;1610549427;;False;{};gj47dr7;False;t3_kt9rcs;False;True;t3_kt9rcs;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gj47dr7/;1610612769;1;True;False;anime;t5_2qh22;;0;[]; -[];;;1darklight1;;;[];;;;text;t2_prrvn;False;False;[];;Tbf the main reason for star points is to deflect cannonballs. If nobody is shooting cannons at your castle you don't need to build the walls in order to deflect cannon shot.;False;False;;;;1610568782;;False;{};gj5e2fg;False;t3_kt9rcs;False;True;t1_giolaiw;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gj5e2fg/;1610638803;1;True;False;anime;t5_2qh22;;0;[]; -[];;;1darklight1;;;[];;;;text;t2_prrvn;False;False;[];;Not Noir though lol.;False;False;;;;1610568885;;False;{};gj5eas6;False;t3_kt9rcs;False;True;t1_git6id9;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gj5eas6/;1610638958;1;True;False;anime;t5_2qh22;;0;[]; -[];;;1darklight1;;;[];;;;text;t2_prrvn;False;False;[];;Olivia implied that, at least relative to her, that reaper he killed was nothing. Granted she's probably the most powerful person in the show so far by a long shot.;False;False;;;;1610569592;;False;{};gj5fvkj;False;t3_kt9rcs;False;True;t1_gin7t2s;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gj5fvkj/;1610640077;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sten_whik;;;[];;;;text;t2_rwzx3;False;False;[];;"I'm afraid that's Incorrect. The reason for angled walls is to deflect cannonballs. If the star points weren't also angled themselves (as in they were still horizontally star shaped but with vertical walls) they'd risk deflecting cannonballs into other walls. This is called a Shot Trap. - -Additionally the cannonball isn't the only type of heavy ranged projectile. The crusader castles were amongst many to utilise angled walls long before the cannon came on to the scene. Trebuchets aren't just a meme, they existed and were powerful enough to take down a wall, although usually defenders would surrender before that happened as it took a while (several days/weeks/months) and was scary. However despite the memes it's actually unclear if the trebuchet is the strongest projectile thrower. Something you don't see in movies is the rock throwing Ballista, they were massive torsion machines ([here's an image of a replica](https://elitechoice.org/wp-content/uploads/2008/10/ballista-1.jpg)). They were phased out in favour the easier to make (as it only uses one torsion spring) Onager which is your classic movie catapult (although they are all technically catapults). The Onager was phased out for the trebuchet so when I say it isn't clear which is better I say that because it isn't clear if the trebuchet was stronger than the onager or if it was just easier to make.";False;False;;;;1610592459;;1610592677.0;{};gj6rcvl;False;t3_kt9rcs;False;False;t1_gj5e2fg;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gj6rcvl/;1610672690;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610635052;;False;{};gj8bedi;False;t3_kt84wj;False;False;t3_kt84wj;/r/anime/comments/kt84wj/kings_raid_ishi_wo_tsugumonotachi_episode_15/gj8bedi/;1610706539;1;True;False;anime;t5_2qh22;;0;[]; -[];;;brownarrows;;;[];;;;text;t2_8xkjx;False;False;[];;Yeah, beat Naruto's old record by like 8 minutes.;False;False;;;;1610660726;;False;{};gj9xky9;False;t3_kt9rcs;False;True;t1_gikpjoe;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gj9xky9/;1610745828;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fluffy9345;;;[];;;;text;t2_2od0d93r;False;False;[];;Fingers crossed for season 2 next year.;False;False;;;;1610665358;;False;{};gja75na;False;t3_kt6j2z;False;True;t1_gikwxyz;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gja75na/;1610752462;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zoolinz;;;[];;;;text;t2_j38iz;False;False;[];;At the end of the episode where she goes “Whatever”. I was dying;False;False;;;;1610669746;;False;{};gjafonc;False;t3_kt9rcs;False;True;t1_gikuu67;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gjafonc/;1610758184;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yozuu1;;;[];;;;text;t2_5knybyn1;False;False;[];;I got enough time to watch ep 1 of bakemonogatari and i was so confused 😅 should i keep watching or is it like that the whole series;False;False;;;;1610829427;;False;{};gji290b;True;t3_kt5nhe;False;True;t1_gijyf1c;/r/anime/comments/kt5nhe/is_monogatari_series_worth_watching/gji290b/;1610924236;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Trobis;;;[];;;;text;t2_qjlnr;False;False;[];;">Admitting something is bad - -Because a show has sexual content doesn't make it bad, man prudes are weird.";False;False;;;;1610885966;;False;{};gjkpws6;False;t3_kt9rcs;False;True;t1_ginx36x;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gjkpws6/;1610978628;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Etereke32;;;[];;;;text;t2_11qhl2;False;False;[];;"Ok, what is bad is subjective. For me, if the only appeal of a show is to your most primal instinct, then I consider it bad. This show has mediocre visuals, weak plot and lots of fanservice. That's not a good show in my book. But it doesn't stop me from enjoying it. - -Just to reiterate, everything I wrote here is my opinion, and by no means am I trying to present it as subjective truth. While I disagree with people who say it's not trashy, I have nothing against them personally for holding that opinion.";False;False;;;;1610892557;;False;{};gjl7748;False;t3_kt9rcs;False;False;t1_gjkpws6;/r/anime/comments/kt9rcs/ore_dake_haireru_kakushi_dungeon_kossori_kitaete/gjl7748/;1610987868;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lighty64;;;[];;;;text;t2_yyakw;False;False;[];;I literally started and then finished this within 2 days on Saturday just gone. One of the best animes I've seen in a long time and far different than what the title suggests it'll be like. The movie is amazing too, biggest emotional rollercoaster I've been on in a long time. You can probably tell if you'll like it by the 2nd episode though.;False;False;;;;1611092744;;False;{};gjvk7y9;False;t3_kt6j2z;False;True;t3_kt6j2z;/r/anime/comments/kt6j2z/is_bunny_girl_senpai_worth_watching/gjvk7y9/;1611217600;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Marc_Lim, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610076855;moderator;False;{};gii55qr;False;t3_ksu6hz;False;False;t3_ksu6hz;/r/anime/comments/ksu6hz/i_want_to_eat_your_pancreas/gii55qr/;1610113175;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi TheMiracleworker101, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610076975;moderator;False;{};gii5dqo;False;t3_ksu7pw;False;True;t3_ksu7pw;/r/anime/comments/ksu7pw/i_need_some_recommendations/gii5dqo/;1610113315;1;False;False;anime;t5_2qh22;;0;[]; -[];;;made-with-jeans;#13e9f7;AP;[];cd781046-757e-11e1-bbf9-12313d2c1af1;http://www.anime-planet.com/forum/members/;light;text;t2_6y5uft6g;False;False;[];;Yugo the negotiator, bus gamer, legendary gambler tetsuya, Sakigake otokojuku;False;False;;;;1610077032;;False;{};gii5hjt;False;t3_ksu6rf;False;True;t3_ksu6rf;/r/anime/comments/ksu6rf/tell_me_some_undertheradar_anime/gii5hjt/;1610113384;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tadabito;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Nephren/;light;text;t2_wa1fmkv;False;False;[];;"[Shinigami no Ballad](https://anidb.net/anime/3572) - -Never seen anyone talking about this before. It's not amazing but still good.";False;False;;;;1610077074;;False;{};gii5kbg;False;t3_ksu6rf;False;True;t3_ksu6rf;/r/anime/comments/ksu6rf/tell_me_some_undertheradar_anime/gii5kbg/;1610113430;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Garenmain180k;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PhantomDancer04;light;text;t2_7v58rk4z;False;False;[];;You gotta spoiler flair this my dude.;False;False;;;;1610077117;;False;{};gii5n40;False;t3_ksu6hz;False;True;t3_ksu6hz;/r/anime/comments/ksu6hz/i_want_to_eat_your_pancreas/gii5n40/;1610113483;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Marc_Lim;;;[];;;;text;t2_3z6hktr9;False;False;[];;Oops. I just marked it as spoiler;False;False;;;;1610077165;;False;{};gii5q50;True;t3_ksu6hz;False;True;t1_gii5n40;/r/anime/comments/ksu6hz/i_want_to_eat_your_pancreas/gii5q50/;1610113536;2;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Yato and Bishamon from [Noragami](https://m.youtube.com/watch?v=JIHlOJxNN54), that scene was amazing and fun to watch.;False;False;;;;1610077336;;False;{};gii61hb;False;t3_ksu9o1;False;True;t3_ksu9o1;/r/anime/comments/ksu9o1/what_was_the_best_anime_kiss_scene_in_your_opinion/gii61hb/;1610113745;1;True;False;anime;t5_2qh22;;0;[]; -[];;;oujicrows;;;[];;;;text;t2_9nz9ftrh;False;False;[];;The Yuri on Ice! scene was emotionally wholesome;False;False;;;;1610077356;;False;{};gii62t9;False;t3_ksu9o1;False;True;t3_ksu9o1;/r/anime/comments/ksu9o1/what_was_the_best_anime_kiss_scene_in_your_opinion/gii62t9/;1610113770;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610077359;;False;{};gii62zv;False;t3_ksu9o1;False;True;t3_ksu9o1;/r/anime/comments/ksu9o1/what_was_the_best_anime_kiss_scene_in_your_opinion/gii62zv/;1610113774;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610077403;;False;{};gii660x;False;t3_ksu6hz;False;True;t3_ksu6hz;/r/anime/comments/ksu6hz/i_want_to_eat_your_pancreas/gii660x/;1610113828;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;True;[];;Final episode of Shakugan No Shana;False;False;;;;1610077440;;False;{};gii68fp;False;t3_ksu9o1;False;True;t3_ksu9o1;/r/anime/comments/ksu9o1/what_was_the_best_anime_kiss_scene_in_your_opinion/gii68fp/;1610113871;1;True;False;anime;t5_2qh22;;0;[]; -[];;;inspyral;;;[];;;;text;t2_8q4qq;False;False;[];;[OP by Azuna Riko](https://www.youtube.com/watch?v=ulQjPuWTfEY), with an illustration by LN artist Kiryuu Tsukasa.;False;False;;;;1610077458;;False;{};gii69mn;True;t3_ksuaon;False;True;t3_ksuaon;/r/anime/comments/ksuaon/kumo_desu_ganani_kaed_by_yuuki_aoi_with_an/gii69mn/;1610113900;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Ishuzoku-Connoisseur;;;[];;;;text;t2_65qsew7y;False;False;[];;Ryuujis and Taigas in Toradora is the cutest thing ever.;False;False;;;;1610077522;;False;{};gii6dse;False;t3_ksu9o1;False;False;t3_ksu9o1;/r/anime/comments/ksu9o1/what_was_the_best_anime_kiss_scene_in_your_opinion/gii6dse/;1610113972;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Treyman1115;#dadada;;[];be3d8e7e-3848-11e8-bf1b-0e416e33973c;https://myanimelist.net/animelist/Treyman-XIII;dark;text;t2_kdyeg;False;False;[];;Dragon Dentist;False;False;;;;1610077835;;False;{};gii6yet;False;t3_ksu6rf;False;True;t3_ksu6rf;/r/anime/comments/ksu6rf/tell_me_some_undertheradar_anime/gii6yet/;1610114335;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MusubiKazesaru;;;[];;;;text;t2_oh8ti;False;False;[];;"Zettai Karen Children (and its spinoff The Unlimited), Space Runaway Ideon (and its sequel movie in particular, Be Invoked), Shadow Skill: Engi, Kimi ga Nozomu Eien, Taishou Yakyuu Musume, Future GPX Cyber Formula (and its various OVA sequels) - -Those are some of the ones I saw last year. - -Also try Seisenshi Dunbine, Onihei, Noein: Mou Hitori no Kimi e, Hataraki Man, Tytania, Guin Saga, and Garo: Vanishing Line - -Some aren't quite as unknown as you're asking for, but they're all good or great shows and very seldom mentioned.";False;False;;;;1610077916;;False;{};gii73rt;False;t3_ksu6rf;False;True;t3_ksu6rf;/r/anime/comments/ksu6rf/tell_me_some_undertheradar_anime/gii73rt/;1610114428;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AmourIsAnime;;;[];;;;text;t2_o8m38;False;False;[];;"Re:zero taste of death >.>";False;False;;;;1610077919;;False;{};gii73ye;False;t3_ksu9o1;False;False;t3_ksu9o1;/r/anime/comments/ksu9o1/what_was_the_best_anime_kiss_scene_in_your_opinion/gii73ye/;1610114432;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"[World Conquest Zvezda Plot](https://myanimelist.net/anime/20973/Sekai_Seifuku__Bouryaku_no_Zvezda?q=world%20con&cat=anime)";False;False;;;;1610078007;;False;{};gii79ok;False;t3_ksu6rf;False;True;t3_ksu6rf;/r/anime/comments/ksu6rf/tell_me_some_undertheradar_anime/gii79ok/;1610114539;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Aluminum-Chair;;;[];;;;text;t2_63qs0yl8;False;False;[];;"At varying levels of obsurity... - -Araburu Kisetsu no Otome-domo yo, Boogiepop Phantom, DNA\^2, Sayonara Zetsubou-sensei, Time of Eve, Zaregoto";False;False;;;;1610078112;;1610078421.0;{};gii7gr8;False;t3_ksu6rf;False;True;t3_ksu6rf;/r/anime/comments/ksu6rf/tell_me_some_undertheradar_anime/gii7gr8/;1610114667;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kirigiriimpact;;;[];;;;text;t2_9bxj9g0c;False;False;[];;kimetsu no yaiba, i became a weeb in quarantine.;False;False;;;;1610078250;;False;{};gii7q24;False;t3_ksuiur;False;True;t3_ksuiur;/r/anime/comments/ksuiur/the_first_anime_you_watched_by_genre/gii7q24/;1610114830;1;True;False;anime;t5_2qh22;;0;[]; -[];;;throwawayonxmasday;;;[];;;;text;t2_4k8pz3kg;False;False;[];;The first anime I watched that wasn’t shounen was Amagi Brilliant Park when it first came out. It wasn’t the best slice of life I’ve seen, but it felt generally entertaining and definitely worth a watch;False;False;;;;1610078336;;False;{};gii7vqt;False;t3_ksuiur;False;True;t3_ksuiur;/r/anime/comments/ksuiur/the_first_anime_you_watched_by_genre/gii7vqt/;1610114931;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Skylair13;;;[];;;;text;t2_1xfa6ths;False;False;[];;"Inu to Hasami wa Tsukaiyo - -Area 88 - -Sentou Yosei Yukikaze";False;False;;;;1610078415;;False;{};gii8113;False;t3_ksu6rf;False;True;t3_ksu6rf;/r/anime/comments/ksu6rf/tell_me_some_undertheradar_anime/gii8113/;1610115024;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FlendersonDeku09;;;[];;;;text;t2_97zgmphe;False;False;[];;My goes between slice of life, over the top action, and the ones that make you think psychologically. My top 5 anime I watched this year was in no order was Parasyte, Toradora, Gurren Lagann, Mha Season 4, and Attack on Titan season 3;False;False;;;;1610078489;;False;{};gii85x3;False;t3_ksuky1;False;True;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/gii85x3/;1610115111;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Slice of life, it's relaxing, relatable and interesting to watch.;False;False;;;;1610078566;;False;{};gii8awh;False;t3_ksuky1;False;False;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/gii8awh/;1610115198;9;True;False;anime;t5_2qh22;;0;[]; -[];;;throwawayonxmasday;;;[];;;;text;t2_4k8pz3kg;False;False;[];;I’d say the monogatari series although it’s very hit or miss for people. It tends to be more dialogue driven than Re:Zero but is a decent series to get yourself wrapped up in;False;False;;;;1610078617;;False;{};gii8e7n;False;t3_ksul4e;False;True;t3_ksul4e;/r/anime/comments/ksul4e/one_of_a_kind_anime/gii8e7n/;1610115256;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dv_recorder;;;[];;;;text;t2_8pd0s8e7;False;False;[];;They pre-aired in Japan, AFAIK. You'll need to pirate fansubbed versions unless you're willing to wait for each respective episode to air properly.;False;False;;;;1610078621;;False;{};gii8ehb;False;t3_ksunk1;False;True;t3_ksunk1;/r/anime/comments/ksunk1/where_are_people_watching_jobless_reincarnation/gii8ehb/;1610115260;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FlendersonDeku09;;;[];;;;text;t2_97zgmphe;False;False;[];;Attack on Titan was my first anime so, way to jump in ig😅;False;False;;;;1610078641;;False;{};gii8fqv;False;t3_ksuiur;False;False;t3_ksuiur;/r/anime/comments/ksuiur/the_first_anime_you_watched_by_genre/gii8fqv/;1610115283;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KikiFlowers;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/AprilDruid;light;text;t2_bzjzx;False;False;[];;"> Sayonara Zetsubou-sensei - -This is definitely obscure, because there are no legal means to view it. Fansubs or wait for the Nozomi physical release.";False;False;;;;1610078705;;False;{};gii8jws;False;t3_ksu6rf;False;False;t1_gii7gr8;/r/anime/comments/ksu6rf/tell_me_some_undertheradar_anime/gii8jws/;1610115354;3;True;False;anime;t5_2qh22;;0;[]; -[];;;whittleseys;;;[];;;;text;t2_2jvujxyt;False;False;[];;Oh okay thank you!;False;False;;;;1610078722;;False;{};gii8kzh;False;t3_ksunk1;False;True;t1_gii8ehb;/r/anime/comments/ksunk1/where_are_people_watching_jobless_reincarnation/gii8kzh/;1610115373;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Thunderbuoy;;;[];;;;text;t2_8g37d39d;False;False;[];;Im right with you there. Mecha is my fav too.;False;False;;;;1610078738;;False;{};gii8m34;False;t3_ksuky1;False;True;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/gii8m34/;1610115393;3;True;False;anime;t5_2qh22;;0;[]; -[];;;throwawayonxmasday;;;[];;;;text;t2_4k8pz3kg;False;False;[];;Supernatural or police/psychological;False;False;;;;1610078758;;False;{};gii8nce;False;t3_ksuky1;False;True;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/gii8nce/;1610115416;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SatouSmith;;;[];;;;text;t2_85ir9527;False;False;[];;Bakarina is one of a kind anime for *now*.;False;False;;;;1610078784;;False;{};gii8p22;False;t3_ksul4e;False;True;t3_ksul4e;/r/anime/comments/ksul4e/one_of_a_kind_anime/gii8p22/;1610115450;2;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;My first anime was Death Note so it comes under shonen and for me, the best anime in shonen is Attack on Titan.;False;False;;;;1610078833;;False;{};gii8saq;False;t3_ksuiur;False;True;t3_ksuiur;/r/anime/comments/ksuiur/the_first_anime_you_watched_by_genre/gii8saq/;1610115511;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610078843;moderator;False;{};gii8sz7;False;t3_ksuqr1;False;True;t3_ksuqr1;/r/anime/comments/ksuqr1/attack_on_titan_episodes/gii8sz7/;1610115524;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Topsi_Krett;light;text;t2_9p473xje;False;False;[];;Slice of Life, because nothing beats that comfortable feeling I get when I watch them.;False;False;;;;1610078850;;False;{};gii8teu;False;t3_ksuky1;False;False;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/gii8teu/;1610115532;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Wtfislifewotequila;;;[];;;;text;t2_7vm2jeph;False;False;[];;What are some of your favorites?;False;False;;;;1610078899;;False;{};gii8wmx;True;t3_ksuky1;False;True;t1_gii8m34;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/gii8wmx/;1610115587;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Thunderbuoy;;;[];;;;text;t2_8g37d39d;False;False;[];;All the Gundams, but Gurren Lagann is prob my fave of all time.;False;False;;;;1610079062;;1610114615.0;{};gii979r;False;t3_ksuky1;False;True;t1_gii8wmx;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/gii979r/;1610115783;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VAPLAO;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;type_xe;light;text;t2_ext9q;False;False;[];;Yes;False;False;;;;1610079109;;False;{};gii9a90;False;t3_ksuqr1;False;True;t3_ksuqr1;/r/anime/comments/ksuqr1/attack_on_titan_episodes/gii9a90/;1610115835;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Topsi_Krett;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/Topsi_Krett;light;text;t2_9p473xje;False;False;[];;[Ouran High School Host Club](https://youtu.be/Za4hdKMQ7ZQ);False;False;;;;1610079112;;False;{};gii9ahi;False;t3_ksu9o1;False;True;t3_ksu9o1;/r/anime/comments/ksu9o1/what_was_the_best_anime_kiss_scene_in_your_opinion/gii9ahi/;1610115839;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;In my country Crunchyroll and Funimation have all of them;False;False;;;;1610079114;;False;{};gii9an4;False;t3_ksuqr1;False;False;t3_ksuqr1;/r/anime/comments/ksuqr1/attack_on_titan_episodes/gii9an4/;1610115842;2;True;False;anime;t5_2qh22;;0;[]; -[];;;leomonster;;;[];;;;text;t2_7la98;False;False;[];;"Boogiepop Phantom was critically acclaimed and pretty well known when it came out. I wouldn't say it went ""under the radar"", it's just that over 20 years passed since it came out.";False;False;;;;1610079133;;False;{};gii9byp;False;t3_ksu6rf;False;True;t1_gii7gr8;/r/anime/comments/ksu6rf/tell_me_some_undertheradar_anime/gii9byp/;1610115866;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TravisScotch--;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_7fexh1u7;False;False;[];;"First anime: SAO -Last seen anime: Vinland Saga -Favorites by genre - -Action: Naruto ( I never watch action ) - - -Adventure: One Piece - - -Romance: Oregairu - - -Ecchi: High DXD ( only one I’ve ever watched) - - -Supernatural: Monogatari - - -Mystery: Perfect Blue - - -Isekai: Re:Zero - - -SOL: ToraDora - - -Fantasy: KonoSuba - - -Favorite stand alone movie besides Perfect Blue: 5CM Per second - - -Mecha: Code Geass, Gurren Laggen or Eva";False;False;;;;1610079139;;False;{};gii9ccq;False;t3_ksuiur;False;True;t3_ksuiur;/r/anime/comments/ksuiur/the_first_anime_you_watched_by_genre/gii9ccq/;1610115873;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheTealAnusLearn;;;[];;;;text;t2_8910u693;False;False;[];;Doesn't aot have 75 and crunchyroll has 65? at least that what it shows me.;False;False;;;;1610079351;;False;{};gii9pv9;True;t3_ksuqr1;False;True;t1_gii9a90;/r/anime/comments/ksuqr1/attack_on_titan_episodes/gii9pv9/;1610116117;0;True;False;anime;t5_2qh22;;0;[]; -[];;;4rtiphi5hal;;;[];;;;text;t2_18pv6v8q;False;False;[];;Slice of life, I watch anime just to chill so if it's action or anything crazy i'd rather read it so I don't miss anything;False;False;;;;1610079380;;False;{};gii9rop;False;t3_ksuky1;False;True;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/gii9rop/;1610116151;1;True;False;anime;t5_2qh22;;0;[]; -[];;;weebakage;;;[];;;;text;t2_88v8ygn9;False;False;[];;funimation and crunchyroll;False;False;;;;1610079423;;False;{};gii9uhm;False;t3_ksuqr1;False;True;t3_ksuqr1;/r/anime/comments/ksuqr1/attack_on_titan_episodes/gii9uhm/;1610116204;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wtfislifewotequila;;;[];;;;text;t2_7vm2jeph;False;False;[];;"I see - -I usually watch or read whatever I’m in the mood for";False;False;;;;1610079430;;False;{};gii9uwt;True;t3_ksuky1;False;True;t1_gii9rop;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/gii9uwt/;1610116212;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Godprime;;;[];;;;text;t2_dezxafd;False;False;[];;There’s only 65;False;False;;;;1610079462;;False;{};gii9wzt;False;t3_ksuqr1;False;False;t1_gii9pv9;/r/anime/comments/ksuqr1/attack_on_titan_episodes/gii9wzt/;1610116250;4;True;False;anime;t5_2qh22;;0;[]; -[];;;nomorekawaii;;;[];;;;text;t2_6bsx0bio;False;False;[];;kill la kill;False;False;;;;1610079603;;False;{};giia613;False;t3_ksuiur;False;True;t3_ksuiur;/r/anime/comments/ksuiur/the_first_anime_you_watched_by_genre/giia613/;1610116416;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shimmering-Sky;;MAL a-amq;[];;https://myanimelist.net/profile/Shimmering-Sky;dark;text;t2_i232866;False;False;[];;Yup Mecha is my favorite too. Both because giant robots are cool as fuck and also because the stories they tend to tell are just *right* up my alley. Military/space stuff is my aesthetic and it goes hand-in-hand with a lot of the genre.;False;False;;;;1610079784;;False;{};giiahgm;False;t3_ksuky1;False;True;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giiahgm/;1610116631;2;True;False;anime;t5_2qh22;;0;[]; -[];;;nosolovro;;;[];;;;text;t2_yeh3e;False;False;[];;Karekano;False;False;;;;1610079805;;False;{};giiairu;False;t3_ksu9o1;False;False;t3_ksu9o1;/r/anime/comments/ksu9o1/what_was_the_best_anime_kiss_scene_in_your_opinion/giiairu/;1610116656;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bushmeat133;;;[];;;;text;t2_6arfq86d;False;False;[];;"Akiba’s Trip, - punch line";False;False;;;;1610079936;;False;{};giiaqwn;False;t3_ksu6rf;False;False;t3_ksu6rf;/r/anime/comments/ksu6rf/tell_me_some_undertheradar_anime/giiaqwn/;1610116796;2;True;False;anime;t5_2qh22;;0;[]; -[];;;melvinlee88;;MAL a-amq;[];;https://myanimelist.net/profile/Ryan_Melvin15;dark;text;t2_156788;False;False;[];;From TWGOK, most of them were great. My fav was Chihiro.;False;False;;;;1610079950;;False;{};giiarts;False;t3_ksu9o1;False;True;t3_ksu9o1;/r/anime/comments/ksu9o1/what_was_the_best_anime_kiss_scene_in_your_opinion/giiarts/;1610116813;2;True;False;anime;t5_2qh22;;0;[]; -[];;;brucebananaray;;;[];;;;text;t2_15bpgp5p;False;True;[];;"Mechas are my favorite too. Favorites like Macross Plus, Eva, and Gundam War in Pocket. - -I think my second favorite is the shounen action genre. When it is done right then they can be good.";False;False;;;;1610080054;;False;{};giiay7b;False;t3_ksuky1;False;False;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giiay7b/;1610116926;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OrcBerg;;;[];;;;text;t2_8ju9jtm5;False;False;[];;">Ecchi: High DXD ( only one I’ve ever watched) - -The only one that's good.";False;False;;;;1610080142;;False;{};giib3se;False;t3_ksuiur;False;True;t1_gii9ccq;/r/anime/comments/ksuiur/the_first_anime_you_watched_by_genre/giib3se/;1610117031;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TravisScotch--;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_7fexh1u7;False;False;[];;Looking back at it. DxD wasn’t that good either;False;False;;;;1610080186;;False;{};giib6hm;False;t3_ksuiur;False;False;t1_giib3se;/r/anime/comments/ksuiur/the_first_anime_you_watched_by_genre/giib6hm/;1610117081;1;True;False;anime;t5_2qh22;;0;[]; -[];;;weebu4laifu;;;[];;;;text;t2_7nij0alj;False;True;[];;Might wanna give Dai-Guard a watch too if you can find it.;False;False;;;;1610080324;;False;{};giibf0m;False;t3_ksuky1;False;True;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giibf0m/;1610117230;1;True;False;anime;t5_2qh22;;0;[]; -[];;;OrcBerg;;;[];;;;text;t2_8ju9jtm5;False;False;[];;Haven't found one better than DxD. Seikon no Qwaser is pathetic btw.;False;False;;;;1610080379;;False;{};giibidk;False;t3_ksuiur;False;True;t1_giib6hm;/r/anime/comments/ksuiur/the_first_anime_you_watched_by_genre/giibidk/;1610117292;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Spartastic-4;;;[];;;;text;t2_2aeskfy3;False;False;[];;Some that you might like would be *Birdy the Mighty: Decode*, *Bodacious Space Pirates*, or *Oda Nobuna no Yabou*. I would throw *Bleach* in there as well but it is one of the biggest factors in what inspired most todays anime about afterlife-esquí anime.;False;False;;;;1610080439;;False;{};giibm4o;False;t3_ksul4e;False;True;t3_ksul4e;/r/anime/comments/ksul4e/one_of_a_kind_anime/giibm4o/;1610117359;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TravisScotch--;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_7fexh1u7;False;False;[];;Its probably is the best one by default because the rest of the competition is shit;False;False;;;;1610080466;;False;{};giibnqx;False;t3_ksuiur;False;True;t1_giibidk;/r/anime/comments/ksuiur/the_first_anime_you_watched_by_genre/giibnqx/;1610117389;1;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;True;[];;"Superpower (My Hero Academia/Attack on Titan) or Thriller (Higurashi). I like people overcoming obstacles with fantastical abilities, and sometimes I like to take a break and be creeped out - -I personally hate mecha, with one exception being G Fighter Gundam";False;False;;;;1610080679;;False;{};giic0og;False;t3_ksuky1;False;True;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giic0og/;1610117634;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Wtfislifewotequila;;;[];;;;text;t2_7vm2jeph;False;False;[];;I respect your opinion but why exactly do you hate mecha?;False;False;;;;1610080769;;False;{};giic60z;True;t3_ksuky1;False;True;t1_giic0og;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giic60z/;1610117727;2;True;False;anime;t5_2qh22;;0;[]; -[];;;matttvk;;;[];;;;text;t2_3igh6aw2;False;False;[];;When Dio stole a kiss from Erina in the first episode;False;False;;;;1610080965;;False;{};giichys;False;t3_ksu9o1;False;False;t3_ksu9o1;/r/anime/comments/ksu9o1/what_was_the_best_anime_kiss_scene_in_your_opinion/giichys/;1610117949;6;True;False;anime;t5_2qh22;;0;[]; -[];;;WeNeedMoreYuri;;;[];;;;text;t2_6p8v5q22;False;False;[];;Yuri because its cute/interesting;False;False;;;;1610081062;;False;{};giicntb;False;t3_ksuky1;False;False;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giicntb/;1610118059;3;True;False;anime;t5_2qh22;;0;[]; -[];;;okayyoga;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/okayyoga;light;text;t2_cx709r5;False;True;[];;"I don't like giant robots. When they fight my brain just doesn't register it. I prefer people interacting/ fighting - -Not one to shy away from my least favourite genre, I watched through the entire gundam series in 2020, and I found maybe 2 that I liked. Mecha gets a pretty low score from me consistently. Really don't like Gundam Unicorn or Gurren Lagann";False;False;;;;1610081435;;False;{};giida12;False;t3_ksuky1;False;True;t1_giic60z;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giida12/;1610118473;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610081907;;False;{};giie1vm;False;t3_ksuky1;False;True;t1_giicntb;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giie1vm/;1610118983;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aluminum-Chair;;;[];;;;text;t2_63qs0yl8;False;False;[];;Oh really? I never knew. Makes sense though, since Boogiepop as a franchise has been pretty prominent since it debuted. I feel like it's fairly obscure in the West though (less so since the 2019 anime series);False;False;;;;1610081924;;False;{};giie2to;False;t3_ksu6rf;False;True;t1_gii9byp;/r/anime/comments/ksu6rf/tell_me_some_undertheradar_anime/giie2to/;1610119001;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Aluminum-Chair;;;[];;;;text;t2_63qs0yl8;False;False;[];;Punch Line isn't really obscure but it's so good it warrants mention anyway.;False;False;;;;1610081987;;False;{};giie6gt;False;t3_ksu6rf;False;True;t1_giiaqwn;/r/anime/comments/ksu6rf/tell_me_some_undertheradar_anime/giie6gt/;1610119069;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_just_my_2_cents;;;[];;;;text;t2_3elve21e;False;True;[];;Mystery thriller/ Psychological. I’ve always been a huge fan of an intricate well written mystery and it’s always interesting when psychological elements are thrown in as well;False;False;;;;1610081991;;1610083294.0;{};giie6py;False;t3_ksuky1;False;False;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giie6py/;1610119073;5;True;False;anime;t5_2qh22;;0;[]; -[];;;_Zig;;;[];;;;text;t2_r3byl;False;False;[];;The purest form of romance in fiction.;False;False;;;;1610082003;;False;{};giie7el;False;t3_ksuky1;False;True;t1_giicntb;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giie7el/;1610119086;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ConclusionIcy2485;;;[];;;;text;t2_8s41vymw;False;False;[];;Romcom.These animes heal my life.;False;False;;;;1610082020;;False;{};giie8gy;False;t3_ksuky1;False;True;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giie8gy/;1610119106;1;True;False;anime;t5_2qh22;;0;[]; -[];;;WeNeedMoreYuri;;;[];;;;text;t2_6p8v5q22;False;False;[];;I've haven't watched those;False;False;;;;1610082023;;False;{};giie8n3;False;t3_ksuky1;False;False;t1_giie1vm;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giie8n3/;1610119110;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_Zig;;;[];;;;text;t2_r3byl;False;False;[];;Gattsu and Caskets;False;False;;;;1610082106;;False;{};giiedly;False;t3_ksu9o1;False;True;t3_ksu9o1;/r/anime/comments/ksu9o1/what_was_the_best_anime_kiss_scene_in_your_opinion/giiedly/;1610119204;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Yri4lf12;;;[];;;;text;t2_6bfipjd7;False;False;[];;"Magical girls. Not just Precure. It's a mix of cutev girls powerv fantasy, SoL, some have heavy Yuri Subtext, the plot can vary grill light hearted comedy to dark ones, many times the girls attain enough power to beat demigods by the end the show. - -Like the guy who like superpower. I hate Mechas with a passion. 90% of them don't have a happy ending for the MC.";False;False;;;;1610082163;;False;{};giiegu0;False;t3_ksuky1;False;True;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giiegu0/;1610119261;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ConclusionIcy2485;;;[];;;;text;t2_8s41vymw;False;False;[];;"First anime: dbz(shounen) -First episode:When goku turned super saiyan for the first time. - -Last anime:Rascal does not dream of bunny girl senpai (Romance)";False;False;;;;1610082223;;False;{};giiek9q;False;t3_ksuiur;False;True;t3_ksuiur;/r/anime/comments/ksuiur/the_first_anime_you_watched_by_genre/giiek9q/;1610119324;1;True;False;anime;t5_2qh22;;0;[]; -[];;;realrimurutempest;;;[];;;;text;t2_4bauklbm;False;False;[];;Yuuki Aoi sounded like she was having the time of her life recording that lol.;False;False;;;;1610082613;;False;{};giif6nk;False;t3_ksuaon;False;True;t3_ksuaon;/r/anime/comments/ksuaon/kumo_desu_ganani_kaed_by_yuuki_aoi_with_an/giif6nk/;1610119742;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iw2kl;;;[];;;;text;t2_9k8gikvs;False;False;[];;Drama x supernatural. Anything like aot or promised neverland.;False;False;;;;1610082626;;False;{};giif7bf;False;t3_ksuky1;False;True;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giif7bf/;1610119757;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cyang1213;;;[];;;;text;t2_mujff0x;False;False;[];;"Yay, a fellow Mecha fan (Though mostly Gundam, trying to find other mecha to watch) - -Aside from having to choose Mecha , I like Slice of Life.";False;False;;;;1610082997;;False;{};giifs9t;False;t3_ksuky1;False;False;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giifs9t/;1610120152;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wtfislifewotequila;;;[];;;;text;t2_7vm2jeph;False;False;[];;All of the ones I listed are great choices I highly recommend them all;False;False;;;;1610083053;;False;{};giifvfk;True;t3_ksuky1;False;True;t1_giifs9t;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giifvfk/;1610120212;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheTealAnusLearn;;;[];;;;text;t2_8910u693;False;False;[];;oh thanks i guess the website was wrong;False;False;;;;1610083498;;False;{};giigk7k;True;t3_ksuqr1;False;True;t1_gii9wzt;/r/anime/comments/ksuqr1/attack_on_titan_episodes/giigk7k/;1610120699;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"Sci-Fi/Mecha with a touch of Mystery or SoL. - -I prefer stories set in our world (or something similar) and people fighting each other using high tech weapons rather than someone using magic & swords to steamroll others. Personally I like swords but I hate how its used in Fantasy. - -SoL because they are comfy to watch.";False;False;;;;1610083513;;1610083907.0;{};giigl1k;False;t3_ksuky1;False;True;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giigl1k/;1610120716;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ChainsawTitan;;;[];;;;text;t2_9f14kbmc;False;False;[];;I don’t even know if Subaru could remember it tbh;False;False;;;;1610084351;;False;{};giihuwx;False;t3_ksu9o1;False;True;t1_gii73ye;/r/anime/comments/ksu9o1/what_was_the_best_anime_kiss_scene_in_your_opinion/giihuwx/;1610121593;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ominous_Strix;;;[];;;;text;t2_3km5xr5i;False;False;[];;Side note, what sites have the OVAs?;False;False;;;;1610084540;;False;{};giii53b;False;t3_ksuqr1;False;True;t3_ksuqr1;/r/anime/comments/ksuqr1/attack_on_titan_episodes/giii53b/;1610121793;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JoeSantoasty;;;[];;;;text;t2_3jocbhs1;False;False;[];;When this season finishes airing there will be a total of 75, so that's probably where that number came from;False;False;;;;1610084845;;False;{};giiilck;False;t3_ksuqr1;False;True;t1_giigk7k;/r/anime/comments/ksuqr1/attack_on_titan_episodes/giiilck/;1610122106;1;True;False;anime;t5_2qh22;;0;[]; -[];;;infinite_lyy;;;[];;;;text;t2_9lftz77s;False;False;[];;I really liked when Usui kissed Misaki then jumped off the roof in ep 6 of Maid-sama!;False;False;;;;1610085171;;False;{};giij2z4;False;t3_ksu9o1;False;True;t3_ksu9o1;/r/anime/comments/ksu9o1/what_was_the_best_anime_kiss_scene_in_your_opinion/giij2z4/;1610122450;2;True;False;anime;t5_2qh22;;0;[]; -[];;;danny18wrx;;;[];;;;text;t2_74zifzz5;False;False;[];;Okabe and Kurisu 🥲;False;False;;;;1610085254;;False;{};giij7f0;False;t3_ksu9o1;False;False;t3_ksu9o1;/r/anime/comments/ksu9o1/what_was_the_best_anime_kiss_scene_in_your_opinion/giij7f0/;1610122539;7;True;False;anime;t5_2qh22;;0;[]; -[];;;nafissyed;;;[];;;;text;t2_3axlgtoe;False;False;[];;Another brilliant scene as well. White Fox did that scene the justice it deserved imo.;False;False;;;;1610085306;;False;{};giija71;True;t3_ksu9o1;False;True;t1_giij7f0;/r/anime/comments/ksu9o1/what_was_the_best_anime_kiss_scene_in_your_opinion/giija71/;1610122591;3;True;False;anime;t5_2qh22;;0;[]; -[];;;danny18wrx;;;[];;;;text;t2_74zifzz5;False;False;[];;I just watched it about a month or two ago I loved it so much it’s not even funny lol.;False;False;;;;1610085355;;False;{};giijcqs;False;t3_ksu9o1;False;False;t1_giija71;/r/anime/comments/ksu9o1/what_was_the_best_anime_kiss_scene_in_your_opinion/giijcqs/;1610122639;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Verzwei;;;[];;;;text;t2_cmzqb;False;False;[];;Romance, because watching fictional characters be sweet on each other and (usually) work things out warms my shitty, asocial heart.;False;False;;;;1610085529;;False;{};giijlv0;False;t3_ksuky1;False;True;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giijlv0/;1610122808;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Avery-Bradley;;;[];;;;text;t2_175rqp;False;False;[];;"I liked Glepnir, the ecchi is bad the first 2 episodes but lessens as the plot thickens. You might like Steins;Gate!";False;False;;;;1610085596;;False;{};giijpdm;False;t3_ksul4e;False;True;t3_ksul4e;/r/anime/comments/ksul4e/one_of_a_kind_anime/giijpdm/;1610122874;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nafissyed;;;[];;;;text;t2_3axlgtoe;False;False;[];;I can’t blame you tbh, that scene was just straight up beautiful that it gets even better by rewatching it.;False;False;;;;1610085701;;False;{};giijuwx;True;t3_ksu9o1;False;True;t1_giijcqs;/r/anime/comments/ksu9o1/what_was_the_best_anime_kiss_scene_in_your_opinion/giijuwx/;1610122978;3;True;False;anime;t5_2qh22;;0;[]; -[];;;danny18wrx;;;[];;;;text;t2_74zifzz5;False;False;[];;You’re like the second person to tell me this and believe I can’t wait to rewatch it but I’m trying to pass the time so I can enjoy the rewatch and forget a little bit about the plot;False;False;;;;1610085748;;False;{};giijx9q;False;t3_ksu9o1;False;True;t1_giijuwx;/r/anime/comments/ksu9o1/what_was_the_best_anime_kiss_scene_in_your_opinion/giijx9q/;1610123024;3;True;False;anime;t5_2qh22;;0;[]; -[];;;nafissyed;;;[];;;;text;t2_3axlgtoe;False;False;[];;"Understandable. Steins;Gate is what got me into watching Re:Zero which is made by the same studio as well. So If you want, you can try watching this show in the meantime if you’re interested that is.";False;False;;;;1610085886;;False;{};giik4fp;True;t3_ksu9o1;False;True;t1_giijx9q;/r/anime/comments/ksu9o1/what_was_the_best_anime_kiss_scene_in_your_opinion/giik4fp/;1610123159;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610086064;;False;{};giikdh1;False;t3_ksul4e;False;True;t3_ksul4e;/r/anime/comments/ksul4e/one_of_a_kind_anime/giikdh1/;1610123326;1;True;False;anime;t5_2qh22;;0;[]; -[];;;A-ReDDIT_account134;;;[];;;;text;t2_28yqkrv2;False;False;[];;"Dark Fantasy. - -Made in Abyss, Re:Zero, Fate/Zero, Madoka Magica";False;False;;;;1610087000;;False;{};giilnad;False;t3_ksuky1;False;False;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giilnad/;1610124189;8;True;False;anime;t5_2qh22;;0;[]; -[];;;A-ReDDIT_account134;;;[];;;;text;t2_28yqkrv2;False;False;[];;"Dark Fantasy. - -Made in Abyss, Re:Zero, Fate/Zero, Madoka Magica";False;False;;;;1610087016;;False;{};giilo0w;False;t3_ksuky1;False;True;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giilo0w/;1610124202;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TheTealAnusLearn;;;[];;;;text;t2_8910u693;False;False;[];;thanks so much for explaining it, dude!;False;False;;;;1610087045;;False;{};giilpci;True;t3_ksuqr1;False;True;t1_giiilck;/r/anime/comments/ksuqr1/attack_on_titan_episodes/giilpci/;1610124226;1;True;False;anime;t5_2qh22;;0;[]; -[];;;A-ReDDIT_account134;;;[];;;;text;t2_28yqkrv2;False;False;[];;"Dark Fantasy. - -Made in Abyss, Re:Zero, Fate/Zero, Madoka Magica";False;False;;;;1610087061;;False;{};giilq56;False;t3_ksuky1;False;True;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giilq56/;1610124243;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hakaimaster;;;[];;;;text;t2_4wwfdnix;False;False;[];;"Angel’s Egg, A Kite, Tsumiki no Ie, Cat Shit One, Robot Carnival, Ginga no Uo Urga Minor Blue, Nekojiru-sou, Cencoroll, & Onara Gorou (an anime about a talking fart)";False;False;;;;1610088048;;1610088349.0;{};giin0h1;False;t3_ksu6rf;False;True;t3_ksu6rf;/r/anime/comments/ksu6rf/tell_me_some_undertheradar_anime/giin0h1/;1610125122;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Noriakikukyoin;;;[];;;;text;t2_3nu5xp1t;False;False;[];;Sweet and cute yuri series and comfy relaxing CGDCT.;False;False;;;;1610089929;;False;{};giipbsq;False;t3_ksuky1;False;True;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giipbsq/;1610126755;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Noriakikukyoin;;;[];;;;text;t2_3nu5xp1t;False;False;[];;"And the sweetest. <3";False;False;;;;1610089954;;False;{};giipcvr;False;t3_ksuky1;False;True;t1_giie7el;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giipcvr/;1610126776;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Alforce007;;;[];;;;text;t2_42wfp0dw;False;False;[];;"comedy, school, slice of life, isekai and harem stuff for me primarily. - -I am open to romance as well, good ones like shirayukihime, kaichou wa maid sama, etc, but not tragedy ones please";False;False;;;;1610090726;;False;{};giiq9zi;False;t3_ksuky1;False;True;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giiq9zi/;1610127424;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jojoismyreligion;;;[];;;;text;t2_5j56wzq4;False;False;[];;I mean....Attack on titan is kind of a mecha if you think about it.;False;False;;;;1610091199;;False;{};giiqtq4;False;t3_ksuky1;False;True;t1_giic0og;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giiqtq4/;1610127814;3;True;False;anime;t5_2qh22;;0;[]; -[];;;hamsteralliance;;MAL;[];;http://myanimelist.net/profile/hamsteralliance;dark;text;t2_8m7p9;False;False;[];;"Mermaid’s Scar, Gosho Aoyama’s Collection of Short Stories, Animal Treasure Island, Ringing Bell, Yamatarou Comes Back, Crusher Joe Movie, Green Cat, Rain Boy, Girl From Fantasia, Sexy Commando Gaiden, Ruin Explorers, Little Women 2: Jo’s Boys. - -Just a bit of scrolling through what I’ve watched most recently and picking out the good ones. Hopefully you haven’t seen them all already. :)";False;False;;;;1610091561;;False;{};giir8tv;False;t3_ksu6rf;False;True;t3_ksu6rf;/r/anime/comments/ksu6rf/tell_me_some_undertheradar_anime/giir8tv/;1610128108;2;True;False;anime;t5_2qh22;;0;[]; -[];;;danny18wrx;;;[];;;;text;t2_74zifzz5;False;False;[];;I’ve actually never wanted to watch Re:Zero but I might consider it now;False;False;;;;1610092850;;False;{};giisp54;False;t3_ksu9o1;False;False;t1_giik4fp;/r/anime/comments/ksu9o1/what_was_the_best_anime_kiss_scene_in_your_opinion/giisp54/;1610129117;3;True;False;anime;t5_2qh22;;0;[]; -[];;;nafissyed;;;[];;;;text;t2_3axlgtoe;False;False;[];;I mean it’s up to you tbh, I just suggested it now since S2 part 2 is airing atm.;False;False;;;;1610092911;;False;{};giisrh6;True;t3_ksu9o1;False;False;t1_giisp54;/r/anime/comments/ksu9o1/what_was_the_best_anime_kiss_scene_in_your_opinion/giisrh6/;1610129162;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Makimasfeet;;;[];;;;text;t2_95imk08u;False;False;[];;Weird. Guess what all my favourite anime (Jojo's, Monogatari, Eva, Flcl) have in common - they can't for the love of God be explained to someone who hasn't seen them;False;False;;;;1610095089;;False;{};giiv3f3;False;t3_ksuky1;False;True;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/giiv3f3/;1610130815;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;Of the 40+ genres listed on MAL I stay away from 2 if I see them among the tags of an anime. Everything else is fair game. My 6 favourite anime has the tags action, slice of life, comedy, fantasy, military, adventure, sports, school, ecchi, harem, drama... All across the pallet. If the story is good, the characters are interesting and the art style is to my liking the genre, what the story is about is irrelevant.;False;False;;;;1610100126;;False;{};gij06ai;False;t3_ksuky1;False;True;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/gij06ai/;1610134380;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SocialLoser739;;;[];;;;text;t2_4ttuko0s;False;False;[];;"Dark fantasy/pshycological - -To name a few: -Berserk - -Overlord - -Rezero - -Boogiepop - -Higurashi - -Kara no kyoukai - -Durarara";False;False;;;;1610101249;;False;{};gij19h9;False;t3_ksuky1;False;True;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/gij19h9/;1610135181;3;True;False;anime;t5_2qh22;;0;[]; -[];;;SocialLoser739;;;[];;;;text;t2_4ttuko0s;False;False;[];;"Boogiepop - -Rokka no yuusha - -Golden kamuy - -Chihayafuru - -Honzuki no gekokujo - -Kara no kyoukai";False;False;;;;1610101337;;False;{};gij1cog;False;t3_ksu6rf;False;True;t3_ksu6rf;/r/anime/comments/ksu6rf/tell_me_some_undertheradar_anime/gij1cog/;1610135243;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;jamesinsights;;;[];;;;text;t2_7ls3n;False;False;[];;As someone who finds slice of life boring, what is interesting about it? Is it an acquired taste;False;False;;;;1610102831;;False;{};gij2uqg;False;t3_ksuky1;False;True;t1_gii8awh;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/gij2uqg/;1610136295;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RaygunnerRei;;;[];;;;text;t2_ts5y7;False;False;[];;Science Fiction. Because it's such a broad genre. With all sorts of potential to tell different stories in it;False;False;;;;1610103593;;False;{};gij3mqs;False;t3_ksuky1;False;True;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/gij3mqs/;1610136864;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lavygirl;;;[];;;;text;t2_asl2x;False;False;[];;What’s your favorite??;False;False;;;;1610104046;;False;{};gij43of;False;t3_ksuky1;False;True;t1_giie6py;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/gij43of/;1610137206;2;True;False;anime;t5_2qh22;;0;[]; -[];;;celerym;;;[];;;;text;t2_a9tbm;False;False;[];;My understanding is that the main audience for those kinds of shows are people with anxiety;False;False;;;;1610105228;;False;{};gij5brp;False;t3_ksuky1;False;True;t1_gij2uqg;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/gij5brp/;1610138072;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;Akashic records of the bastard magic instructor.;False;False;;;;1610108012;;False;{};gij8cx1;False;t3_ksu6rf;False;True;t3_ksu6rf;/r/anime/comments/ksu6rf/tell_me_some_undertheradar_anime/gij8cx1/;1610140139;1;True;False;anime;t5_2qh22;;0;[]; -[];;;indianastate;;;[];;;;text;t2_54risxfr;False;False;[];;"Genre you're looking for is called isekai. If you search ""isekai recommendations"" on this subreddit I'm sure you'll get a lot of good threads";False;False;;;;1610110815;;False;{};gijbwem;False;t3_ksu7pw;False;True;t3_ksu7pw;/r/anime/comments/ksu7pw/i_need_some_recommendations/gijbwem/;1610142568;1;True;False;anime;t5_2qh22;;0;[]; -[];;;whirlwind24;;;[];;;;text;t2_l6l3l;False;False;[];;"I think this is the genre I am going to like. I watched the first episode of Re:Zero last night and it was amazing. - -Do you have any suggestions for anime with a lot of magic in it? I am going to put Madoka Magica on my watch list if it is on Crunchyroll. - -I watched Burn the Witch which was cool but more of a tease than anything. - -Just started my 2 week premium free trial so trying to devour everything I can";False;False;;;;1610116003;;False;{};gijk86p;False;t3_ksuky1;False;True;t1_giilnad;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/gijk86p/;1610148256;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;Sayonara Zetsubou Sensei is really good!;False;False;;;;1610119225;;False;{};gijqd2f;False;t3_ksu6rf;False;False;t1_gii7gr8;/r/anime/comments/ksu6rf/tell_me_some_undertheradar_anime/gijqd2f/;1610152484;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GPSWarriors;;;[];;;;text;t2_7p8ct5su;False;False;[];;"- Gegege no Kitarou - -- Ima, Soko ni Iru Boku - -- Kemonozume - -- I also second Sayonara Zetsubou Sensei as some people have already mentioned it.";False;False;;;;1610119660;;False;{};gijr8sg;False;t3_ksu6rf;False;True;t3_ksu6rf;/r/anime/comments/ksu6rf/tell_me_some_undertheradar_anime/gijr8sg/;1610153054;1;True;False;anime;t5_2qh22;;0;[]; -[];;;timecronus;;;[];;;;text;t2_6b4j5;False;False;[];;Probably spend half a year just catching up on Gintama if you are starting from the beginning;False;False;;;;1610122571;;False;{};gijxcpf;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijxcpf/;1610156890;1;True;False;anime;t5_2qh22;;0;[]; -[];;;collapsedblock6;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/collapsedblock;light;text;t2_pqur4;False;False;[];;Gintama doesn't play by the rules. They will play cards like having 5 minutes of the episode be a still frame because of planning issues or making fun of how they forget of worldbuilding elements due to its length.;False;False;;;;1610122655;;False;{};gijxj4e;False;t3_ksuv1z;False;True;t1_gij20c2;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijxj4e/;1610156998;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Vilnae;;;[];;;;text;t2_6mygzpi8;False;False;[];;People have been waiting a *long* time for Vinland to be adapted, only for Chihayafuru to completely blow it out of the water in the seasonal rankings. The Vinland fans [didn't take that too well](https://twitter.com/cjquines/status/1207803421668986880), to say the least. The show's score went up 1.23 points on MAL when they activated their anti-brigaiding thing.;False;False;;;;1610122667;;1610123210.0;{};gijxk35;False;t3_ksuv1z;False;False;t1_gijr7fo;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijxk35/;1610157014;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Cynaren;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cynamel;light;text;t2_zkr5b;False;False;[];;Are these all separate content movies or episodes packed into movie kinda deal?;False;False;;;;1610122758;;False;{};gijxr6n;False;t3_ksuv1z;False;True;t1_giiqdc7;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijxr6n/;1610157133;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ikineba;;;[];;;;text;t2_sweav;False;False;[];;"That's absolutely childish wtf. I like both shows but man that is cringe to hear. - -I hope we have sth to filter out the mass spam 1s for suspicious periods like steam does";False;False;;;;1610122845;;False;{};gijxy0s;False;t3_ksuv1z;False;False;t1_gijxk35;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijxy0s/;1610157248;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Kashifrehman;;;[];;;;text;t2_1kuxgz6t;False;False;[];;Where's the Love potion OVA? You can watch it in between gintama 2015 or after.;False;False;;;;1610123095;;False;{};gijyhoj;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijyhoj/;1610157578;1;True;False;anime;t5_2qh22;;0;[]; -[];;;h_hue;;;[];;;;text;t2_965gj878;False;False;[];;I started in October and caught up in December. This anime has something about it that makes me want to watch 10 episode a day.;False;False;;;;1610123124;;False;{};gijyjzf;False;t3_ksuv1z;False;False;t1_giikd2z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijyjzf/;1610157619;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Paradoxer77;;;[];;;;text;t2_78tb2y44;False;False;[];;It is a sequel.;False;False;;;;1610123132;;False;{};gijykmj;True;t3_ksuv1z;False;True;t1_gijwloo;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijykmj/;1610157630;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Paradoxer77;;;[];;;;text;t2_78tb2y44;False;False;[];;The movie is just a reanimated version of those episodes and it has better animation.;False;False;;;;1610123187;;False;{};gijyowa;True;t3_ksuv1z;False;True;t1_gijqs9q;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijyowa/;1610157704;1;True;False;anime;t5_2qh22;;0;[]; -[];;;cojoB_;;;[];;;;text;t2_27b35u6d;False;False;[];;It really is easy to digest. Especially when we get into some arcs or something. I end up staying up all night to finish them;False;False;;;;1610123213;;False;{};gijyqzv;False;t3_ksuv1z;False;True;t1_gijyjzf;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijyqzv/;1610157740;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bmcgrill05;;;[];;;;text;t2_410ds77z;False;False;[];;Impossible for me to decide a favorite, it all depends on how well-written the plot and characters are. Is shonen (DBz, MHA, Naruto, etc) my favorite thing ever? Totally not. Is One Piece one of my favorite shows of all time? Yes. Do I find Isekai (Dr Stone, RE:Zero, etc) shows interesting? Absolutely. Do I find SAO to have a psychologically provoking or fluently structured plot? NOT AT ALL. Oh wait, there’s one genre I just can’t stand no matter what and that’s romance anime. WESTERN CULTURE IS PSYCHOTICALLY OBSESSED WITH ROMANCE AND 85+% OF NETFLIX SHOWS HAVE ROMANCE IN THEM EVEN IF IT’S NOT LISTED AS ONE OF THE CATEGORIES LIKE WTF. If you want romance click on a god damn Netflix show cause you’re gonna get some, and at least it’s with real people and not animated characters. Anyways like I said no clear favorite, but the most consistently good ones for me have to go to psychological, mystery, Isekai and slice of life;False;False;;;;1610123577;;False;{};gijzjne;False;t3_ksuky1;False;True;t3_ksuky1;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/gijzjne/;1610158262;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zer0Templar;;;[];;;;text;t2_hgns8;False;False;[];;I have tried any times to get into Gintama, but the start is rough - I've always heard if you make it through the like first 50 episodes it's a really enjoyable watch, is this true? Should I suck it up?;False;False;;;;1610123614;;False;{};gijzmj0;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gijzmj0/;1610158314;1;True;False;anime;t5_2qh22;;0;[]; -[];;;apthomp13;;;[];;;;text;t2_2s2sqy27;False;False;[];;Same, it especially bothers me when people say to skip the first 24 episodes because they're not as good. It's still Gintama and absolutely hilarious, even if it's not quite as much as the rest of the show.;False;False;;;;1610123983;;False;{};gik0fkt;False;t3_ksuv1z;False;True;t1_giiq4g2;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gik0fkt/;1610158814;1;True;False;anime;t5_2qh22;;0;[]; -[];;;StarMagus;;;[];;;;text;t2_7lvim;False;False;[];;Why are episodes 1 and 2 missing?;False;False;;;;1610124107;;False;{};gik0paw;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gik0paw/;1610158981;1;True;False;anime;t5_2qh22;;0;[]; -[];;;umakunaritai;;;[];;;;text;t2_2kmnb5nm;False;False;[];;"I am not gonna lie, I cried reading the last two chapters. Gintama is the only long running manga I have read that ended so satisfyingly yet left a hole in me that can never be filled. - -I know I will cry watching the movie because the PV revealed it will be a complete adaptation.";False;False;;;;1610124446;;False;{};gik1g0d;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gik1g0d/;1610159460;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cr34t1ve_username;;;[];;;;text;t2_5jhonubm;False;False;[];;Holy fuck. Thank you man;False;False;;;;1610124547;;False;{};gik1o6a;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gik1o6a/;1610159603;2;True;False;anime;t5_2qh22;;0;[]; -[];;;davpyu_;;;[];;;;text;t2_6mbfwm02;False;False;[];;Its prequel but it released after movie;False;False;;;;1610124621;;False;{};gik1u3o;False;t3_ksuv1z;False;True;t1_giivahp;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gik1u3o/;1610159710;1;True;False;anime;t5_2qh22;;0;[]; -[];;;davpyu_;;;[];;;;text;t2_6mbfwm02;False;False;[];;*Donald zurump janai katsura da*;False;False;;;;1610124724;;False;{};gik227r;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gik227r/;1610159859;2;True;False;anime;t5_2qh22;;0;[]; -[];;;davpyu_;;;[];;;;text;t2_6mbfwm02;False;False;[];;In japan;False;False;;;;1610124762;;False;{};gik258k;False;t3_ksuv1z;False;True;t1_gij7aap;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gik258k/;1610159920;1;True;False;anime;t5_2qh22;;0;[]; -[];;;c_whtkr;;;[];;;;text;t2_5clhwl0h;False;False;[];;are the movies cannon\\;False;False;;;;1610124837;;False;{};gik2b5f;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gik2b5f/;1610160029;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610126194;;False;{};gik5bm9;False;t3_ksuv1z;False;True;t1_gijea7t;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gik5bm9/;1610161892;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jakarar;;;[];;;;text;t2_90djg453;False;False;[];;this is sooo helpful, thank you!;False;False;;;;1610126330;;False;{};gik5mom;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gik5mom/;1610162075;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fast_af_boii;;;[];;;;text;t2_56uwpgim;False;False;[];;Not all hero's wear capes;False;False;;;;1610126692;;False;{};gik6g3b;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gik6g3b/;1610162569;2;True;False;anime;t5_2qh22;;0;[]; -[];;;notpretentious;;MAL;[];;http://myanimelist.net/animelist/not-pretentious;dark;text;t2_jk1vl;False;False;[];;Thanks appreciate it.;False;False;;;;1610126802;;False;{};gik6p4c;False;t3_ksuv1z;False;True;t1_gijuzs1;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gik6p4c/;1610162723;2;True;False;anime;t5_2qh22;;0;[]; -[];;;cool-is-the-new-sexy;;;[];;;;text;t2_2mhqo2a1;False;False;[];;epic;False;False;;;;1610127027;;False;{};gik77s3;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gik77s3/;1610163039;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kuges;;;[];;;;text;t2_64i4v;False;False;[];;"Still not up to that point yet, but reminds me of ""A job 2 days in a row? This must be a special episode!""";False;False;;;;1610127106;;False;{};gik7e7k;False;t3_ksuv1z;False;True;t1_giiticr;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gik7e7k/;1610163147;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bagofsoup4;;;[];;;;text;t2_5yvoa0hk;False;False;[];;I agree one piece is my favourite of all time, and I'll give Gintama a watch when I have free time;False;False;;;;1610127185;;False;{};gik7knm;False;t3_ksuv1z;False;True;t1_gij53jx;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gik7knm/;1610163255;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Agreeable-Ad-2483;;;[];;;;text;t2_8mbl17bv;False;False;[];;Share for Fate. Series please ✌️😂;False;False;;;;1610127361;;False;{};gik7z1h;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gik7z1h/;1610163505;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SNB43;;;[];;;;text;t2_e1unr;False;False;[];;People generally say not to watch eps 1 and 2 if you're anime only since they're kind of a celebration of the adaptation for manga readers, as opposed to the beginning of the story, which is ep 3. Although I watched Gintama as an anime only and the first 2 eps weren't a problem for me.;False;False;;;;1610127366;;False;{};gik7zgc;False;t3_ksuv1z;False;True;t1_gik0paw;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gik7zgc/;1610163512;3;True;False;anime;t5_2qh22;;0;[]; -[];;;dood1337;;;[];;;;text;t2_h8e7n;False;False;[];;It’s all of it, minus the three movies.;False;False;;;;1610128613;;False;{};gikaw7o;False;t3_ksuv1z;False;True;t1_gijqqqd;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gikaw7o/;1610165376;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mukerman;;;[];;;;text;t2_13fad3;False;False;[];;Awesome, thanks! Are the movies available on any official sites?;False;False;;;;1610128772;;False;{};gikb9ir;False;t3_ksuv1z;False;True;t1_gikaw7o;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gikb9ir/;1610165597;1;True;False;anime;t5_2qh22;;0;[]; -[];;;dood1337;;;[];;;;text;t2_h8e7n;False;False;[];;This is release order. If you watch it on Crunchyroll, it is automatically ordered episodes 1-366(?) for you.;False;False;;;;1610128899;;False;{};gikbk02;False;t3_ksuv1z;False;False;t1_gik5bm9;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gikbk02/;1610165772;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Oh ok cool;False;False;;;;1610128961;;False;{};gikbp2p;False;t3_ksuv1z;False;False;t1_gikbk02;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gikbp2p/;1610165853;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TomiWasTaken;;;[];;;;text;t2_13zogj;False;False;[];;I still wonder to this day just how can people actually like Gintama;False;False;;;;1610128985;;False;{};gikbr24;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gikbr24/;1610165885;0;True;False;anime;t5_2qh22;;0;[]; -[];;;zsvx;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/zsvx;light;text;t2_bmb0v9j;False;False;[];;other guy answered the movie part but just for clarification, the first two reps are basically for the manga readers, you wouldn’t really get them so just skip them;False;False;;;;1610129470;;False;{};gikcufd;False;t3_ksuv1z;False;False;t1_gijc4d4;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gikcufd/;1610166531;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shadow-Amulet-Ambush;;;[];;;;text;t2_1loou9xu;False;False;[];;They don’t offer an exposition to the story and world?;False;False;;;;1610129530;;False;{};gikczam;False;t3_ksuv1z;False;False;t1_gikcufd;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gikczam/;1610166610;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zsvx;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/zsvx;light;text;t2_bmb0v9j;False;False;[];;yeah i want more saiki haha. at least all the manga was adapted so i can’t complain too much;False;False;;;;1610129536;;False;{};gikczuh;False;t3_ksuv1z;False;True;t1_giiw34g;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gikczuh/;1610166619;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shadow-Amulet-Ambush;;;[];;;;text;t2_1loou9xu;False;False;[];;Gotcha ty;False;False;;;;1610129577;;False;{};gikd37w;False;t3_ksuv1z;False;True;t1_gijsazc;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gikd37w/;1610166675;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Shadow-Amulet-Ambush;;;[];;;;text;t2_1loou9xu;False;False;[];;So no need to watch the first movie if I just watch the show;False;False;;;;1610129605;;False;{};gikd5n1;False;t3_ksuv1z;False;True;t1_gijf3b2;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gikd5n1/;1610166715;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zsvx;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/zsvx;light;text;t2_bmb0v9j;False;False;[];;yeah it’s so fun (even if the show hasn’t picked up yet or whatever) but such a daunting task. i really need to just commit to watching a couple eps a day haha;False;False;;;;1610129610;;False;{};gikd635;False;t3_ksuv1z;False;True;t1_gij1zr4;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gikd635/;1610166721;2;True;False;anime;t5_2qh22;;0;[]; -[];;;zsvx;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/zsvx;light;text;t2_bmb0v9j;False;False;[];;yeah i started watching both series because of hilarious clips on youtube. i’ve heard that the start on gintama is slow but really i feel like after the first 30eps you will either like the rest or won’t lol. i like it but it def feels a tad slow. hoping i can watch some more and then it will pick up;False;False;;;;1610129775;;False;{};gikdjpu;False;t3_ksuv1z;False;True;t1_gijcm20;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gikdjpu/;1610166949;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bhamey;;;[];;;;text;t2_4mwyu4ua;False;False;[];;The only thing missing is the Gintama Semi Final which will also air in January;False;False;;;;1610129913;;False;{};gikdv22;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gikdv22/;1610167133;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dood1337;;;[];;;;text;t2_h8e7n;False;False;[];;I don't think so. The first one is just an adaptation of an arc which is already in the anime (Benizakura) so it's not a big deal, but the second one is original and is kind of hard to find online. I think it only has fansubs available;False;False;;;;1610131723;;False;{};giki1kw;False;t3_ksuv1z;False;True;t1_gikb9ir;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giki1kw/;1610169617;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CheValierXP;;;[];;;;text;t2_ha38f;False;False;[];;"Some episodes are plain stupid (not much and some people might actually like the humor, like the sleep paralysis sketch where nothing happens except gintama talking, and then he asks if it's been 5 minutes, and they are happy they were able to stall the episode 5 minutes). - -But the serious parts were top notch and engaging, i just had to know what would happen, hopefully the final movie answers the open questions.";False;False;;;;1610132015;;False;{};gikiq10;False;t3_ksuv1z;False;True;t1_gikd635;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gikiq10/;1610170005;2;True;False;anime;t5_2qh22;;0;[]; -[];;;diceman89;;;[];;;;text;t2_9p4fh;False;False;[];;The first movie is worth watching after episode 201 (when it was released) as there are some new scenes added worth checking out, and the final fight is better. I wouldn't recommend it before this, though, as the extra scenes bring in characters that hadn't been introduced yet when the arc originally aired.;False;False;;;;1610132019;;False;{};gikiqc8;False;t3_ksuv1z;False;True;t1_gikd5n1;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gikiqc8/;1610170010;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mukerman;;;[];;;;text;t2_13fad3;False;False;[];;Thanks. That's unfortunate, but I'm glad to know I didn't miss too much. I've already read the manga and can't wait to see how the ending is adapted in the final movie. Even though the manga finished a few months ago, it still feels like a journey is coming to an end with this one.;False;False;;;;1610132044;;False;{};gikisfy;False;t3_ksuv1z;False;True;t1_giki1kw;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gikisfy/;1610170042;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mindful-O-Melancholy;;;[];;;;text;t2_16h9gg;False;False;[];;"Gintama is one of my favourite comedies, it gets so ridiculous and pokes fun at other anime series, but still manages to have some intense/serious moments. - -A couple of my other favourites that I think are just as funny or maybe even funnier are Nichijou and Plastic Nee-san, with Plastic Nee-san being the most impressive since the entire season is only 30 minutes and has an impressive amount of comedy for the amount of time.";False;False;;;;1610132282;;False;{};gikjc4u;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gikjc4u/;1610170357;2;True;False;anime;t5_2qh22;;0;[]; -[];;;zsvx;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/zsvx;light;text;t2_bmb0v9j;False;False;[];;those first two eps, like other have said, are more to celebrate gintama having an anime and are more made for the manga readers. the 3rd episode starts the story off from the beginning and i promise you won’t be missing anything skipping those first two;False;False;;;;1610133063;;False;{};gikl3rm;False;t3_ksuv1z;False;True;t1_gikczam;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gikl3rm/;1610171414;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zsvx;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/zsvx;light;text;t2_bmb0v9j;False;False;[];;yeah the highlights of the show so far are just amazing. also, i initially started gintama because of youtube clips so i know that this show has a ton of gold haha. just gotta make time;False;False;;;;1610133290;;False;{};giklmco;False;t3_ksuv1z;False;True;t1_gikiq10;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giklmco/;1610171706;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Puzzleheaded-Suit-67;;;[];;;;text;t2_74evp922;False;False;[];;Those 2 are my favorite anime, enjoy;False;False;;;;1610134414;;False;{};giko6ul;False;t3_ksuv1z;False;True;t1_giitkn5;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giko6ul/;1610173176;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mystic8ball;;;[];;;;text;t2_hpgps;False;False;[];;"Telling people to skip Gintama filler is like advising people to skip the ""filler"" in K-On. Like, come on already lol. - -I'm starting to think that the prevalence of these charts are starting to give people brain worms. Not every show has a complicated watch order or things you need to skip, just start at EP1 and keep going.";False;False;;;;1610134462;;False;{};gikoaqs;False;t3_ksuv1z;False;False;t1_giiorkl;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gikoaqs/;1610173237;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Puzzleheaded-Suit-67;;;[];;;;text;t2_74evp922;False;False;[];;Only the first movie is. 2nd is standalone. Last one is final arc exclusive.;False;False;;;;1610135169;;False;{};gikpwg8;False;t3_ksuv1z;False;True;t1_gijhl5p;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gikpwg8/;1610174152;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chinatownjon;;;[];;;;text;t2_2llv7rko;False;False;[];;"I think it depends on what you're defining it by. Shows like wagnaria or teasing master takagi san remind me of past times working with friends in a restaurant, or having a playful friendship with someone back in grade school. Brings me good laughs and good vibes. The genre is so vague bc everyone has a different definition for it and different lives of course so I think it's more about just finding a series you can enjoy or relate with. - -Like I consider haikyu a sol, even though it might not technically be one, bc it's about volleyball and high school sports, both of which I have enjoyed so in addition to a fun story and lovable characters, it offers that feeling of being in the locker room with friends, training hard to improve, wanting to win, and enjoying youth. Slices of life I can see in my own past. D-frag, himouto umaru-chan, and eizouken are also some I would recommend. Even though they don't really relate directly to my past, I really thoroughly enjoyed them. Hope this helps!";False;False;;;;1610135727;;False;{};gikr6lx;False;t3_ksuky1;False;True;t1_gij2uqg;/r/anime/comments/ksuky1/whats_your_favorite_anime_genre_and_why/gikr6lx/;1610174902;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lord_Val;;;[];;;;text;t2_u8cip;False;False;[];;The first and second episodes are literally fillers that celebrate the manga becoming an anime lol;False;False;;;;1610136173;;False;{};giks6pl;False;t3_ksuv1z;False;True;t1_gij9odi;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giks6pl/;1610175464;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jsmith4567;;;[];;;;text;t2_mw9uj;False;False;[];;Don't forget how Ketsuna Ana brings in magic and fantasy.;False;False;;;;1610139926;;False;{};gil0oxw;False;t3_ksuv1z;False;True;t1_giiqdc7;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gil0oxw/;1610180214;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VariousMeet;;;[];;;;text;t2_63veb3s5;False;False;[];;Yeah I never got why FMAB has such a high ranking. Like, It's a good show, but I didn't think it was THAT good.;False;False;;;;1610141263;;False;{};gil3lpn;False;t3_ksuv1z;False;True;t1_gij2e8j;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gil3lpn/;1610181823;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mythriz;;;[];;;;text;t2_d37v0;False;False;[];;Gin-tan's epic quest to find a sunny planet in order to get a tan;False;False;;;;1610142038;;False;{};gil59to;False;t3_ksuv1z;False;False;t1_gijmpn4;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gil59to/;1610182729;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheGoofySage;;;[];;;;text;t2_nbyup;False;False;[];;They should look it up on there own, it's easy and part of being interested.;False;False;;;;1610143256;;1610143634.0;{};gil7u6p;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gil7u6p/;1610184140;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TenVV;;;[];;;;text;t2_4jj2xug8;False;False;[];;Yo are the movies canon;False;False;;;;1610145638;;False;{};gilcr00;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gilcr00/;1610186840;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SquishedMemoryFoam;;;[];;;;text;t2_yihfqlf;False;False;[];;Isn't 166 the Gintoki Toshi handcuffed together episode? Some of the fillers were really boring but this one was funny.;False;False;;;;1610147712;;False;{};gilgyhf;False;t3_ksuv1z;False;False;t1_giiorkl;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gilgyhf/;1610189111;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FrankSandCastle;;;[];;;;text;t2_11dhzjpy;False;False;[];;"Movie 1 is just a better animated retelling of one of the anime/manga arcs so yeah it is canon. The final film (#3) is adapting the conclusion of the manga so that is also canon. - -Movie 2 is an original story, so by definition it isn't canon as it isn't sourced from the manga. I'd still watch it though.";False;False;;;;1610147931;;False;{};gilhe3n;False;t3_ksuv1z;False;True;t1_gilcr00;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gilhe3n/;1610189348;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FrankSandCastle;;;[];;;;text;t2_11dhzjpy;False;False;[];;Film 1 and 3 yes, the second film no. I'd still watch it though.;False;False;;;;1610148044;;False;{};gilhm6j;False;t3_ksuv1z;False;True;t1_gik2b5f;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gilhm6j/;1610189467;2;True;False;anime;t5_2qh22;;0;[]; -[];;;death1864;;;[];;;;text;t2_53wyepyq;False;False;[];;If you guys know where to watch this hit me up;False;False;;;;1610148148;;False;{};gilhtnf;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gilhtnf/;1610189578;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CelioHogane;;;[];;;;text;t2_e9z2u;False;False;[];;TOO MANY AND NOT ENOUGH;False;False;;;;1610149185;;False;{};giljyi1;False;t3_ksuv1z;False;True;t1_gij2xf5;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giljyi1/;1610190740;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CelioHogane;;;[];;;;text;t2_e9z2u;False;False;[];;"The first 2 episodes are pretty boring in general, and some pseudo-OVA bullshit - -Episode 3 is the first episode for real.";False;False;;;;1610149223;;False;{};gilk1d9;False;t3_ksuv1z;False;True;t1_giiyyvd;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gilk1d9/;1610190783;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CelioHogane;;;[];;;;text;t2_e9z2u;False;False;[];;The entire manga is filler for the heart.;False;False;;;;1610149261;;False;{};gilk45p;False;t3_ksuv1z;False;True;t1_gij72cc;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gilk45p/;1610190825;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FrankSandCastle;;;[];;;;text;t2_11dhzjpy;False;False;[];;"The 1st film is just a better animated version of the Benizakura arc (first serious arc). - -Gintama: The Final (3rd film) and Gintama: The Semi-Final (a 2-episode special not included on the chart) will be adapting the remainder of the manga the anime left off. Just so you know, the anime ended abruptly in the middle of the final arc do to production problems more than 2 years ago. So Gintama fans are glad that the ending is finally be animated. - -Movie 2 is an original story so it isn't canon by definition but I'd still recommend watching it. I'd go by release date, so you'd watch that movie after Episode 265. - -Something also missing is the Love Potion OVA. It is a canon 2 episode (comedy) arc and you should watch it between episode 295 and 296. - -Movie 2 and the OVA aren't legally streaming so you'll have to find it on ""other"" sites. Movie 1 is legally streaming on HIDIVE, so you could use a free trial to be able to watch it. Movie 3 released today, so it will not be available for a while. The 2 epsiode Semi-Final though will be be available for streaming online on January 15th and 20th meaning it will be available for fansubbers to acquire and work on.";False;False;;;;1610149694;;False;{};gill0s9;False;t3_ksuv1z;False;True;t1_gijnoyx;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gill0s9/;1610191320;1;True;False;anime;t5_2qh22;;0;[]; -[];;;FrankSandCastle;;;[];;;;text;t2_11dhzjpy;False;False;[];;"The story starts at Episode 3, Episode 1 and 2 are basically celebrations that the manga got an anime. - -You probably figured this out by now as your comment is 8 hours old at the current time I'm typing this, but I figured I'd just tell you incase.";False;False;;;;1610149825;;False;{};gillaqx;False;t3_ksuv1z;False;False;t1_gijmmfe;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gillaqx/;1610191469;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blackfairy20;;;[];;;;text;t2_mwkt2h;False;False;[];;I think one of the episodes i keep coming back is when Gintoki and the prisoner is doing manga.;False;False;;;;1610150586;;False;{};gilmv93;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gilmv93/;1610192337;2;True;False;anime;t5_2qh22;;0;[]; -[];;;FrankSandCastle;;;[];;;;text;t2_11dhzjpy;False;False;[];;"Movie 1 is the only one that is a retelling of an anime/manga arc and I'd recommend watching it by release date. The movie version has new canon scenes that show characters that aren't yet introduced in the show at that point so it is best to watch it by release date. (After Episode 202) - -Movie 2 is an original story so there is no manga material it is adapted from. I'd also watch it in relation to its release date compared to the show itself. (After Episode 265) - -Gintama: The Final (3rd film) as well as Gintama: The Semi-Final (2 episode special) will adapt the remainder of the manga that the anime wasn't able to adapt when it abruptly ended in the middle of the final arc 2 years ago due to production issues.";False;False;;;;1610150625;;False;{};gilmy1a;False;t3_ksuv1z;False;True;t1_giji45u;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gilmy1a/;1610192380;1;True;False;anime;t5_2qh22;;0;[]; -[];;;I_am_BEOWULF;;;[];;;;text;t2_5923a;False;False;[];;"> I would literally kill to live in a mediaeval - -Do you like dysentery? - ->/modern world - -At least you have Britas.";False;False;;;;1610152052;;False;{};gilpshk;False;t3_ksuv1z;False;True;t1_giivy52;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gilpshk/;1610193978;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jamsinthekitchen;;;[];;;;text;t2_67k4bq7l;False;False;[];;I still don’t get how to watch this. So what’s in brackets is non-filler?;False;False;;;;1610154299;;False;{};gilu9wl;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gilu9wl/;1610196551;1;True;False;anime;t5_2qh22;;0;[]; -[];;;centfox;;;[];;;;text;t2_5rzs9;False;True;[];;I finally finished it a few months ago and I really enjoyed it. I feel like (Similar to Saiki) it's not great for binging since it is pretty episodic, but some of the arcs are binge-worthy.;False;False;;;;1610154459;;False;{};gilulcc;False;t3_ksuv1z;False;True;t1_giiscz9;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gilulcc/;1610196738;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Chuusei-chao;;;[];;;;text;t2_553z5ia3;False;False;[];;What about the semifinal tie in episodes?;False;False;;;;1610157143;;False;{};gilztgz;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gilztgz/;1610199913;1;True;False;anime;t5_2qh22;;0;[]; -[];;;juicy_tin;;;[];;;;text;t2_12z09xfi;False;False;[];;Aside from episodes 1-2 the rest of the filler is perfectly fine to watch never noticed a dip in quality;False;False;;;;1610163848;;False;{};gimcl9p;False;t3_ksuv1z;False;True;t1_gii9nnz;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gimcl9p/;1610208146;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NeutralJazzhands;;;[];;;;text;t2_dy7h060;False;False;[];;"PS is great! Same with Asobi Asobe, Konosuba, Kaguya-sama, Nichijou, and (controversal pick) Pop Team Epic - - -But Ginatama is definitely still on another level for me. Nothing can truly compare to how much this series has made me lose it laughing as well as how much its made me come to dearly love all the characters";False;False;;;;1610168846;;False;{};giml74c;False;t3_ksuv1z;False;True;t1_gijslys;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/giml74c/;1610214174;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BomberJ16;;;[];;;;text;t2_1134ki;False;False;[];;"I binged the first ~100 (till the Shinsegumi Civil War arc), stopped for a few months, watched another big batch, and so on for 2 years. The """"sequel series"""" I watched them as one batch. - -I'll admit I got a bit burned out after ep.200 or so, but after a good half-year break I enjoyed it again. I just know I'll watch it again in the future, such a fun show";False;False;;;;1610179618;;False;{};gimz7m8;False;t3_ksuv1z;False;True;t1_giimfcj;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gimz7m8/;1610223851;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Morfix22;;;[];;;;text;t2_o2fsk;False;False;[];;Only one movie re adapts an anime arc with better animation. The 2nd movie is an original arc and the 3rd that releases this month is the last arc of the manga;False;False;;;;1610188198;;False;{};gin7nxf;False;t3_ksuv1z;False;True;t1_gijxr6n;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gin7nxf/;1610229688;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Inflated-Charisma;;;[];;;;text;t2_8m7docl1;False;False;[];;">Do you like dysentery? - -Mediaeval/modern means mediaeval times but with modern or more advanced than modern technology";False;False;;;;1610199131;;False;{};ginjfqn;False;t3_ksuv1z;False;True;t1_gilpshk;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/ginjfqn/;1610237329;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mysterious_Ball;;;[];;;;text;t2_2pah01bb;False;False;[];;Thanks!;False;False;;;;1610227916;;False;{};gip20fy;False;t3_ksuv1z;False;True;t1_gill0s9;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gip20fy/;1610269752;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lumpy_Seaworthiness6;;;[];;;;text;t2_838etija;False;False;[];;The Semi-Final released some short trailers and from the scenes I saw they were a continuation that take place from right when Gintama episode 367 got cut short to before the movie takes place. These two special episodes haven’t come out yet but I suggest you watch this before the Final movie because it fills in the gaps of what should have been shown before the series ended. I’m caught up with the finished manga and I could recognize certain moments and characters reappearing and I can confirm the Semi-Final is a must watch before the Final or else it won’t make sense.;False;False;;;;1610272843;;False;{};gir1uaz;False;t3_ksuv1z;False;True;t1_giipcvh;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gir1uaz/;1610316366;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IIILewis97III;;MAL;[];;http://myanimelist.net/animelist/IIILewis97III;dark;text;t2_brc8w;False;False;[];;"Since you recognised certain scenes that's some good clarification for the upcoming episodes & watch order - now I won't accidently spoil myself by watching them the wrong way around! - -Thanks dude :)";False;False;;;;1610278045;;False;{};gir6xua;False;t3_ksuv1z;False;True;t1_gir1uaz;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gir6xua/;1610319900;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JosseCoupe;;;[];;;;text;t2_16id6o;False;False;[];;Watching the first 30 episode has been rather rough thus far, hope the comedy kicks up from being occasionally hilarious to just being funny all the time;False;False;;;;1610323966;;False;{};gitfm02;False;t3_ksuv1z;False;True;t3_ksuv1z;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gitfm02/;1610367946;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Riffle_X;;;[];;;;text;t2_5x53gx3k;False;False;[];;🧢;False;False;;;;1610459221;;False;{};gizyp3o;False;t3_ksuv1z;False;True;t1_gil59to;/r/anime/comments/ksuv1z/the_final_gintanma_movie_will_be_releasing_today/gizyp3o/;1610515803;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HayashiSawaryo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/HayashiSawaryo/;light;text;t2_74ql25l0;False;True;[];;Wait for next week, the battle of the decade will begin, Aot vs Rezero place your bets;False;False;;;;1610111861;;False;{};gijde64;True;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijde64/;1610143608;48;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Since there's no seasons in hunter x hunter, rate the show as a whole;False;False;;;;1610112040;;False;{};gijdnko;False;t3_kt2ag9;False;True;t3_kt2ag9;/r/anime/comments/kt2ag9/how_would_you_rate_hunter_x_hunter/gijdnko/;1610143791;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;"Re:Zero back on top. With what should be the last exposition/dialogue heavy episode of the cour. Nice job WF. - -Good to see that the artwork/animation was some of the best we've ever seen in Re:Zero as well. Especially in the only episode of this cour which fans would have given WF leeway in regards to cutting corners, production wise. Really excited to see how they adapt the rest of the cour, many scenes to come that are some of the best in the entire series. - -Both AOT and Re:Zero are due to have series defining episodes next week. Incredibly looking forward to both.";False;False;;;;1610112092;;1610112384.0;{};gijdqbs;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijdqbs/;1610143844;375;True;False;anime;t5_2qh22;;0;[]; -[];;;defeatingme;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/defeatingme;light;text;t2_31dwk2wd;False;False;[];;Seeing those top 3 with close no. of scores/percents makes this more interesting!;False;False;;;;1610112126;;False;{};gijds5z;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijds5z/;1610143891;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;"Damn, Cells at Work S2 beat Code Black, didn't see that coming. - -Gotta hand it to TPN, it came very close to ReZero.";False;False;;;;1610112184;;False;{};gijdvdr;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijdvdr/;1610143957;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"Glad to see Yuru Camp in the Top 10. - -Can't wait for next week when the two titans i.e. ReZero and AoT will be there together.";False;False;;;;1610112225;;1610126121.0;{};gijdxiv;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijdxiv/;1610143998;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;I know right? The top 3 are separated by mere decimals, don't think this has happened before.;False;False;;;;1610112236;;False;{};gijdy5m;False;t3_kt292n;False;False;t1_gijds5z;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijdy5m/;1610144018;4;True;False;anime;t5_2qh22;;0;[]; -[];;;defeatingme;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/defeatingme;light;text;t2_31dwk2wd;False;False;[];;Glad to see Beastars and Cells at Work Black making it to the list;False;False;;;;1610112315;;False;{};gije2fo;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gije2fo/;1610144098;5;True;False;anime;t5_2qh22;;0;[]; -[];;;spacedude997;;;[];;;;text;t2_2vc9b398;False;True;[];;Aot will obviously win. Re zero can barely compete with Aots dialogue and build up episodes let alone compete with the absolute hypefest that is the next episode.;False;False;;;;1610112338;;False;{};gije3px;False;t3_kt292n;False;False;t1_gijde64;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gije3px/;1610144121;49;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610112360;;False;{};gije4y4;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gije4y4/;1610144145;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;AoT, I mean it's ep5.;False;False;;;;1610112455;;False;{};gijea5f;False;t3_kt292n;False;False;t1_gijde64;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijea5f/;1610144244;37;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610112517;moderator;False;{};gijedpb;False;t3_kt2fqo;False;True;t3_kt2fqo;/r/anime/comments/kt2fqo/does_anyone_know_were_i_can_watch_seven_deadly/gijedpb/;1610144314;1;False;False;anime;t5_2qh22;;0;[]; -[];;;indianastate;;;[];;;;text;t2_54risxfr;False;False;[];;I would rate it a 9. All the arcs of HxH are solid (at first I didn't like the Chimera Arc either but the final episode really redeemed the entire arc for me) and there's no useless filler episodes iirc. The character development is really interesting and realistic, and personally I love shounen anime where you can actually see the MC grow and get stronger. I actually really like how it blends slice of life and a mature action plot together.;False;False;;;;1610112561;;1610112783.0;{};gijeg7u;False;t3_kt2ag9;False;True;t3_kt2ag9;/r/anime/comments/kt2ag9/how_would_you_rate_hunter_x_hunter/gijeg7u/;1610144360;4;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;"I'm a huge AOT fan myself and episode 5 will likely blow every other anime out of the water next week (the content is incredible if done well) but... - ->Re zero can barely compete with Aots dialogue and build up episodes - -Fun fact: Every episode of Re:Zero S2 so far has actually been a heavy dialogue/build up episode to the latter stages of the arc. Episode 2 of the second cour next week will be the first true episode of the S2 end game if you will. From there on the arc is pretty relentless in every way until the arc is completely finished. - -For reference, S2 of Re:Zero is built up in a way very similar to how AOT had it's split cour for S3. But we shall see next week just how much potential S2 actually has in regards to upvotes on r/anime and % of votes on Anime Corner. - -Either way, I'm hype as fuck to have 2 GOATed series to be airing side by side each week until April.";False;False;;;;1610112586;;1610113534.0;{};gijehjy;False;t3_kt292n;False;False;t1_gije3px;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijehjy/;1610144388;29;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Promised Neverland had a great episode, even then Re:zero tops the list, shows you the dominance and hype of Re:zero.;False;False;;;;1610112598;;False;{};gijei6o;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijei6o/;1610144400;223;True;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;The only legal place will be Netflix, once it's done airing weekly.;False;False;;;;1610112602;;False;{};gijeif3;False;t3_kt2fqo;False;True;t3_kt2fqo;/r/anime/comments/kt2fqo/does_anyone_know_were_i_can_watch_seven_deadly/gijeif3/;1610144405;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;I think next week there will only be sequels in this chart.;False;False;;;;1610112654;;False;{};gijelco;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijelco/;1610144457;852;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Don't forget Horimiya, it will be in the top 7 for sure.;False;False;;;;1610112747;;False;{};gijeqih;False;t3_kt292n;False;False;t1_gijelco;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijeqih/;1610144556;374;True;False;anime;t5_2qh22;;0;[]; -[];;;mindiBobo;;;[];;;;text;t2_7gwhxrkv;False;False;[];;"As an overall series I would rate it as a 6, due to the uneven arcs, each one is almost like a separate show. I especially liked the Exam arc as a whole and the Auction/Mafia story parts for Kurapika. Those were both solid 8. The Heavens arena was uninteresting to me and Greed Island was alright but adding all the complicated cards and rules seemed like too much to add to the story at that point. By this arc I really got bored with the shifting story line. - -I have yet what the Chimera arc as I am taking a break and hoping that taking some time away will make me miss the characters a little more enough that I might enjoy it. - -Speaking of missing characters, Leorio is not shown nearly enough after the exam arc. That arc really made him a part of the team and they all go mostly separate ways. I had no knowledge of the show before hand and only saw images, they were all together so I had a preconceived notion that that’s what the show would be. Instead I got the Gon and Killua show, with a side of Kurapika, and a dash of Leorio. - -I will end this with my opinion that Hisoka was gravely under used. He is such an interesting character, it would have been better to watch a show that was about him instead.";False;False;;;;1610112803;;False;{};gijetpx;False;t3_kt2ag9;False;True;t3_kt2ag9;/r/anime/comments/kt2ag9/how_would_you_rate_hunter_x_hunter/gijetpx/;1610144613;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DrHob0;;;[];;;;text;t2_2lwemn5l;False;False;[];;I cried harder at the Chimera Ant Arc than when my ex-gf left me. 11/10;False;False;;;;1610113158;;False;{};gijfdv1;False;t3_kt2ag9;False;False;t3_kt2ag9;/r/anime/comments/kt2ag9/how_would_you_rate_hunter_x_hunter/gijfdv1/;1610144989;6;True;False;anime;t5_2qh22;;0;[]; -[];;;DerMusti-63;;;[];;;;text;t2_b2lkpy2;False;False;[];;"They better get us a season 3 on Re zero after this season ends. - -I can't wait another 4 years";False;False;;;;1610113229;;False;{};gijfhzk;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijfhzk/;1610145064;118;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;"Not Gonna Lie, it is only Hyped Non-sequel that can compete against the sequels. - -#";False;False;;;;1610113310;;False;{};gijfmmw;False;t3_kt292n;False;False;t1_gijeqih;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijfmmw/;1610145153;179;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;"I am telling you - -# REDO OF THE HEALER TOP 5 Next Week.";False;True;;comment score below threshold;;1610113336;;False;{};gijfo2k;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijfo2k/;1610145181;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"Re:zero very very marginally beating the promised never land and QQ absolutely tailing close behind - -Half the season hasn't been released yet the competition will be insane in the coming weeks";False;False;;;;1610113360;;False;{};gijfpgq;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijfpgq/;1610145205;12;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610113366;moderator;False;{};gijfpth;False;t3_kt2nto;False;True;t3_kt2nto;/r/anime/comments/kt2nto/im_looking_for_an_anime_i_saw_a_clip_of_can/gijfpth/;1610145212;1;False;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Independent of who wins, it's going to be a very good season.;False;False;;;;1610113374;;False;{};gijfqag;False;t3_kt292n;False;False;t1_gije3px;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijfqag/;1610145221;16;True;False;anime;t5_2qh22;;0;[]; -[];;;snsjsnsjnsns;;;[];;;;text;t2_8316nfhu;False;False;[];;Demon king Daimao?;False;False;;;;1610113441;;False;{};gijfu5r;False;t3_kt2nto;False;False;t3_kt2nto;/r/anime/comments/kt2nto/im_looking_for_an_anime_i_saw_a_clip_of_can/gijfu5r/;1610145291;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;Redo of the healer is gonna blow every other anime in discussions;False;False;;;;1610113448;;False;{};gijfuld;False;t3_kt292n;False;False;t1_gijfo2k;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijfuld/;1610145299;7;True;False;anime;t5_2qh22;;0;[]; -[];;;yesisdrugsyes;;;[];;;;text;t2_48tlrk87;False;False;[];;"Oh boy -I think im gonna start seeing new sacred codes";False;False;;;;1610113485;;False;{};gijfwsa;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijfwsa/;1610145340;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DemiKoro;;;[];;;;text;t2_5jhswuda;False;False;[];;Demon king daimao;False;False;;;;1610113494;;False;{};gijfxcz;False;t3_kt2nto;False;True;t3_kt2nto;/r/anime/comments/kt2nto/im_looking_for_an_anime_i_saw_a_clip_of_can/gijfxcz/;1610145351;1;True;False;anime;t5_2qh22;;0;[]; -[];;;InsomniaEmperor;;;[];;;;text;t2_5x68hmc4;False;False;[];;Really pleased to see Otherside Picnic at 4th place. I didn't think it would place that high due to having so many sequels but it's the highest ranking non sequel.;False;False;;;;1610113502;;False;{};gijfxta;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijfxta/;1610145359;149;True;False;anime;t5_2qh22;;0;[]; -[];;;StrayGod360;;;[];;;;text;t2_2dcnh85y;False;False;[];;Re Zero barely beat the Promised Neverland, damn. It would be hella interesting to see three powerhouses battling it out this season. Attack on Titan, Re Zero and Promised Neverland.;False;False;;;;1610113531;;False;{};gijfzkx;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijfzkx/;1610145391;216;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"I expected a dial it up to 11 episode for re:zero but I guess it wanted to compete with AoT EP 5 next week - -Next week is going to giga hype";False;False;;;;1610113564;;False;{};gijg1hb;False;t3_kt292n;False;False;t1_gijdqbs;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijg1hb/;1610145425;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;There is a high chance, the source material currently is enough for 2 more seasons and the series has had really good sales so far, I think it's going the AoT route with the long wait between S1 and S2 and not so much for the next seasons.;False;False;;;;1610113584;;1610113924.0;{};gijg2ow;False;t3_kt292n;False;False;t1_gijfhzk;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijg2ow/;1610145446;45;True;False;anime;t5_2qh22;;0;[]; -[];;;HayashiSawaryo;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/HayashiSawaryo/;light;text;t2_74ql25l0;False;True;[];;"[Twitter source](https://twitter.com/cellsatworkbla1/status/1347528732337000448) - -[Youtube link - Geoblocked](https://www.youtube.com/watch?v=zl6aoeX0j_Y&feature=youtu.be)";False;False;;;;1610113638;;False;{};gijg5tu;True;t3_kt2pwz;False;True;t3_kt2pwz;/r/anime/comments/kt2pwz/cells_at_work_code_black_anime_special_pv/gijg5tu/;1610145504;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;The peak of Season 2 starts next week and lasts until the end of the season, get hyped.;False;False;;;;1610113678;;False;{};gijg849;False;t3_kt292n;False;False;t1_gijdqbs;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijg849/;1610145547;38;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"I guess I've been used to anime not finishing their stories, so enjoy the journey for what it is. - -If you're looking for some anime with definitive endings, your best bet is to find anime originals as they usually have an ending in mind. - -Usually novel adaptations are able to be concluded because they're quite short in comparison with light novels. - -Most Visual novel adaptations have an ending because they're quite short but they're usually bad adaptations of the original visual novel.";False;False;;;;1610113710;;False;{};gijga1r;False;t3_kt2nsp;False;True;t3_kt2nsp;/r/anime/comments/kt2nsp/waiting_for_seasons_of_ongoing_anime/gijga1r/;1610145584;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610113719;;False;{};gijgam0;False;t3_kt2nsp;False;True;t3_kt2nsp;/r/anime/comments/kt2nsp/waiting_for_seasons_of_ongoing_anime/gijgam0/;1610145594;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;">Next week is going to giga hype - -Agreed man! Both the chapters that AOT and Re:Zero will cover next week, were for me turning points in both series to ""masterpiece"" status. - -So hyped.";False;False;;;;1610113773;;1610115125.0;{};gijgdqy;False;t3_kt292n;False;False;t1_gijg1hb;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijgdqy/;1610145659;33;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;Re:Zero wasn't as high as people said it would be.;False;False;;;;1610113788;;False;{};gijgeki;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijgeki/;1610145674;48;True;False;anime;t5_2qh22;;0;[]; -[];;;KaptainTZ;;skip7;[];;;dark;text;t2_9fhynbf5;False;False;[];;AoT question mark;False;False;;;;1610113801;;False;{};gijgfbo;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijgfbo/;1610145688;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;AOT is going to blow this out of the water next week.;False;False;;;;1610113825;;False;{};gijggpi;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijggpi/;1610145714;121;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"I think Mushoku Tensei can do it. There's also quite some hype behind it. - -Jaku-Chara Tomozaki-kun is also one I think will gain popularity over time.";False;False;;;;1610113900;;1610115950.0;{};gijgl6j;False;t3_kt292n;False;False;t1_gijfmmw;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijgl6j/;1610145796;121;True;False;anime;t5_2qh22;;0;[]; -[];;;StrayGod360;;;[];;;;text;t2_2dcnh85y;False;False;[];;"I'm guessing it will go like this **most of the week**: Attack on Titan > Re Zero > Promised Neverland.";False;False;;;;1610113905;;False;{};gijglgq;False;t3_kt292n;False;False;t1_gijei6o;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijglgq/;1610145801;208;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;"Yep, it's due to adapt two of my favourite ever chapters next week! - -Been waiting 3 years for these scenes to be adapted. Cannot wait.";False;False;;;;1610113913;;1610114034.0;{};gijglzh;False;t3_kt292n;False;False;t1_gijg849;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijglzh/;1610145811;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;That's just how it works, its not a anime thing, even TV series don't release the whole narrative at once, if they are a success there will be sequels, this is also common in movies and games, doesn't matter where you run, you'll have to wait, unless of course you only watch finished stories if this really bothers you;False;False;;;;1610113921;;False;{};gijgmep;False;t3_kt2nsp;False;False;t3_kt2nsp;/r/anime/comments/kt2nsp/waiting_for_seasons_of_ongoing_anime/gijgmep/;1610145819;4;True;False;anime;t5_2qh22;;0;[]; -[];;;nafissyed;;;[];;;;text;t2_3axlgtoe;False;False;[];;Like legit, if your a fan of Re:Zero and AOT, next week will be the best time to be a hyped fan for both anime series imo.;False;False;;;;1610113953;;False;{};gijgoa2;False;t3_kt292n;False;False;t1_gijdqbs;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijgoa2/;1610145854;248;True;False;anime;t5_2qh22;;0;[]; -[];;;StrayGod360;;;[];;;;text;t2_2dcnh85y;False;False;[];;It's gonna cause a lot of controversies which will generate more viewers.;False;False;;;;1610114025;;False;{};gijgsja;False;t3_kt292n;False;False;t1_gijfuld;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijgsja/;1610145931;7;True;False;anime;t5_2qh22;;0;[]; -[];;;nafissyed;;;[];;;;text;t2_3axlgtoe;False;False;[];;I find it really cathartic how next week, we will be getting GOAT episodes from two very hyped series, Re:Zero S2 Part 2 and AOT S4 respectively. The true Karma war shall start next week people!;False;False;;;;1610114027;;False;{};gijgsmv;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijgsmv/;1610145933;28;True;False;anime;t5_2qh22;;0;[]; -[];;;sharafi04;;;[];;;;text;t2_4949iljy;False;False;[];;">Episode 2 of the second cour next week will be the first true episode of the S2 end game if you will. From there on the arc is pretty relentless in every way until the arc is completely finished. - -So you're saying we haven't seen anything yet? And I thought ep 8 was peak rezero";False;False;;;;1610114059;;False;{};gijgukn;False;t3_kt292n;False;False;t1_gijehjy;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijgukn/;1610145969;9;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;It's going to be amazing having both these GOATed series airing side by side every week until April. We are truly spoilt.;False;False;;;;1610114082;;False;{};gijgvxu;False;t3_kt292n;False;False;t1_gijgoa2;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijgvxu/;1610145995;105;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;AoT 100% has it in the bag not just for episode 5 but 6, 7 and 8. It'll be AoT's hype episodes against ReZero's hype episodes, there will probably be more intense competition when ReZero is up against AoT EP 9-12;False;False;;;;1610114086;;False;{};gijgw5j;False;t3_kt292n;False;False;t1_gijde64;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijgw5j/;1610145998;75;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;To be fair, a majority of the highly anticipated non-sequels haven't come out yet (e.g Horimiya, Mushoku Tensei, Spider, etc) but still a good start.;False;False;;;;1610114096;;False;{};gijgwte;False;t3_kt292n;False;False;t1_gijfxta;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijgwte/;1610146011;70;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;Seeing how AoT S3P2 did I have high expectations for Re:zero S2P2;False;False;;;;1610114103;;False;{};gijgx7z;False;t3_kt292n;False;False;t1_gijehjy;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijgx7z/;1610146017;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;I think it will consistently be AoT and Re:Zero at the top 2, unless the shows below them get much more hyped episodes compared to what's coming in those two shows.;False;False;;;;1610114112;;False;{};gijgxs7;False;t3_kt292n;False;False;t1_gijglgq;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijgxs7/;1610146028;87;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;I wonder what the Karma : Comment ratio will be.;False;False;;;;1610114120;;1610114313.0;{};gijgy7d;False;t3_kt292n;False;False;t1_gijfuld;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijgy7d/;1610146034;5;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;I think so Horimiya will compete against Promised Neverland and they can even win as well with all the hype they have gathered so far.;False;False;;;;1610114130;;False;{};gijgyry;False;t3_kt292n;False;False;t1_gijglgq;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijgyry/;1610146044;8;True;False;anime;t5_2qh22;;0;[]; -[];;;imskyrim;;;[];;;;text;t2_7ipm9psk;False;False;[];;Mushoku Tensei?;False;False;;;;1610114153;;False;{};gijh07z;False;t3_kt292n;False;False;t1_gijfmmw;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijh07z/;1610146069;7;True;False;anime;t5_2qh22;;0;[]; -[];;;nafissyed;;;[];;;;text;t2_3axlgtoe;False;False;[];;Indeed we are bro, 2021 is off to a great start for anime fans.;False;False;;;;1610114207;;False;{};gijh3gv;False;t3_kt292n;False;False;t1_gijgvxu;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijh3gv/;1610146125;50;True;False;anime;t5_2qh22;;0;[]; -[];;;zairaner;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/zairaner;light;text;t2_166xh0;False;False;[];;I'm always shocked to see that it is the 13th most popular manga on myanimelist! So I'm looking forward to seeing what it is about.;False;False;;;;1610114214;;False;{};gijh3wj;False;t3_kt292n;False;False;t1_gijfmmw;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijh3wj/;1610146134;7;True;False;anime;t5_2qh22;;0;[]; -[];;;StrayGod360;;;[];;;;text;t2_2dcnh85y;False;False;[];;2021 is off to a great start.;False;False;;;;1610114215;;False;{};gijh3yq;False;t3_kt292n;False;False;t1_gijgdqy;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijh3yq/;1610146135;18;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;For me ep 4 of S2 and ep 16 of S1 were the peak of Re:zero. I loved those episodes a lot.;False;False;;;;1610114228;;False;{};gijh4r7;False;t3_kt292n;False;False;t1_gijgukn;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijh4r7/;1610146150;16;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_sugiru;;;[];;;;text;t2_90bod0ge;False;False;[];;"The jobless one. - -I don't know. I haven't checked the source,, so I ain't sure about that. But, I have read Horimiya's Start, and it is pretty sweet.";False;False;;;;1610114240;;False;{};gijh5hq;False;t3_kt292n;False;False;t1_gijgl6j;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijh5hq/;1610146163;25;True;False;anime;t5_2qh22;;0;[]; -[];;;Warrior7872;;;[];;;;text;t2_6160rqx1;False;False;[];;The anime’s seem shitty this season tbh;False;True;;comment score below threshold;;1610114248;;False;{};gijh5zp;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijh5zp/;1610146173;-20;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;I'm calling it now, it will break the comment record with 6900 comments.;False;False;;;;1610114279;;False;{};gijh7ww;False;t3_kt292n;False;False;t1_gijgy7d;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijh7ww/;1610146208;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"Mushoku Tensei, as per the readers, is one of the best Isekai out there. - -Personally I haven't read it but I'm still excited nonetheless.";False;False;;;;1610114285;;1610115889.0;{};gijh891;False;t3_kt292n;False;False;t1_gijh5hq;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijh891/;1610146214;49;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;"> leeway to cut corners production-wise - -WF: That sounds like a 28 minute episode with no OP, no ED and an insert song to me!";False;False;;;;1610114291;;False;{};gijh8m6;False;t3_kt292n;False;False;t1_gijdqbs;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijh8m6/;1610146222;63;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;"Well. Before the season began someone on r/Re_Zero posted and asked what our most anticipated arc 4 scenes to be animated were. - -As I listed my top 10 scenes, only two of them were from what the first cour covered and even those two scenes didn't make it into my top 5 for the entire arc. - -All I'll say is, look forward to it.";False;False;;;;1610114307;;False;{};gijh9j5;False;t3_kt292n;False;False;t1_gijgukn;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijh9j5/;1610146238;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;Nice;False;False;;;;1610114315;;False;{};gijha0l;False;t3_kt292n;False;True;t1_gijh7ww;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijha0l/;1610146247;2;True;False;anime;t5_2qh22;;0;[]; -[];;;StrayGod360;;;[];;;;text;t2_2dcnh85y;False;False;[];;From what I've heard from fans, Re Zero might do better than Attack on Titan on **some** weeks. Regardless, our watchlist is packed. 2021 is off to a great start.;False;False;;;;1610114368;;False;{};gijhda5;False;t3_kt292n;False;False;t1_gijgxs7;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijhda5/;1610146307;50;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Let's see what happens. ReZero and Healer on the same day is already exciting lol.;False;False;;;;1610114407;;1610116454.0;{};gijhfmx;False;t3_kt292n;False;True;t1_gijh7ww;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijhfmx/;1610146350;2;True;False;anime;t5_2qh22;;0;[]; -[];;;StrayGod360;;;[];;;;text;t2_2dcnh85y;False;False;[];;First week of Horimiya will answer that question. We shall see.;False;False;;;;1610114425;;False;{};gijhgpf;False;t3_kt292n;False;False;t1_gijgyry;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijhgpf/;1610146368;12;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;"Whoa 3 anime above 10%, and Yurisekai in 4th is quite surprising. - -Seiin Highschool is gonna be a drama-heavy sports anime huh? It's gonna be in the same veins as Hoshiai no Sora but volleyball. - -Quite shocked that Beastars is so far down, well fuck Netflix jail lol. - -Yahey for Yuru Camp. The atmosphere is just amazing and the OP and ED is just chill and relaxing af.";False;False;;;;1610114449;;1610115825.0;{};gijhi60;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijhi60/;1610146394;17;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;Re:Zero fans are truly blessed by WF.;False;False;;;;1610114462;;False;{};gijhiz1;False;t3_kt292n;False;False;t1_gijh8m6;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijhiz1/;1610146409;68;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Re:zero have a chance to beat AoT only in February even then it would be really difficult as they have to get more than 14-15Kupvotes to snatch the top position from the KING.;False;False;;;;1610114537;;False;{};gijhndf;False;t3_kt292n;False;False;t1_gijhda5;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijhndf/;1610146491;80;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610114619;moderator;False;{};gijhscb;False;t3_kt30uk;False;False;t3_kt30uk;/r/anime/comments/kt30uk/donr_know_if_this_is_the_right_place_but_i_need/gijhscb/;1610146583;1;False;False;anime;t5_2qh22;;0;[]; -[];;;zolbor;;;[];;;;text;t2_4sl7tf2o;False;False;[];;9.5;False;False;;;;1610114654;;False;{};gijhufu;False;t3_kt2ag9;False;True;t3_kt2ag9;/r/anime/comments/kt2ag9/how_would_you_rate_hunter_x_hunter/gijhufu/;1610146619;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;" ->Quite shocked that Beastars is so far down, well furries does put off a lot of people. - -It doesn't help that it has been in Netflix jail **again** - -It is doing very well for a show that can only be watched via pirating - -Edit: [PAS] hasn't released their fansub for it yet too, some rando decided to pick up the first EP only probably affected it a bit too";False;False;;;;1610114678;;1610115271.0;{};gijhvx3;False;t3_kt292n;False;False;t1_gijhi60;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijhvx3/;1610146646;14;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610114682;;False;{};gijhw5v;False;t3_kt292n;False;False;t1_gijh07z;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijhw5v/;1610146651;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610114719;moderator;False;{};gijhyhn;False;t3_kt3204;False;True;t3_kt3204;/r/anime/comments/kt3204/is_this_just_art_or_is_this_girl_from_an_anime/gijhyhn/;1610146693;1;False;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;">Re Zero might do better than Attack on Titan on some weeks - -As someone who keeps up to date with *both* sources, I agree. AOT has some truly mindblowing chapters but also some more slow (not sure if that's the right word?) chapters inbetween them. - -Re:Zero is very much organized like AOT S3, where the entire first part served as heavy dialogue/build up episodes for the *grand finale* in the second part. The premier this week will likely be Re:Zeros last build up episode in the entire second cour, so it will be pretty relentless until the last episode. - -In the weeks where AOT has it's slower episodes, Re:Zero is more than capable of beating it. With AOT being in the final season, it will be very hard for Re:Zero episodes to outright win when the *hype* episodes air though, like this Sunday coming.";False;False;;;;1610114729;;1610115203.0;{};gijhz31;False;t3_kt292n;False;False;t1_gijhda5;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijhz31/;1610146706;50;True;False;anime;t5_2qh22;;0;[]; -[];;;StrayGod360;;;[];;;;text;t2_2dcnh85y;False;False;[];;Wish Mappa would do this with Attack on Titan too tbh;False;False;;;;1610114741;;False;{};gijhzu5;False;t3_kt292n;False;False;t1_gijhiz1;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijhzu5/;1610146719;18;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;"Wow, I did not expect Quints to keep pace this well with Re:Zero and Promised Neverland, but it was a great first episode so that makes sense. - -Other notes from the week include Laid Back Camp not doing as well on anime corner as r/anime, Cells at Work beating Cells at Work Black and Higurashi not being able to seize its golden opportunity to place (11th). - -With so many highly anticipated anime still to come, my guess is that only the top 3 will remain on next week's chart.";False;False;;;;1610114747;;False;{};giji05x;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giji05x/;1610146725;65;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;Um excuse me but the battle of the decade already started yesterday in **Cells at Work S2 vs. Cells at Work Black**.;False;False;;;;1610114770;;False;{};giji1jo;False;t3_kt292n;False;False;t1_gijde64;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giji1jo/;1610146749;76;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610114780;moderator;False;{};giji265;False;t3_kt32sn;False;False;t3_kt32sn;/r/anime/comments/kt32sn/when_should_i_watch_steins_gate_movie_deja_vu/giji265/;1610146761;1;False;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi NJBuoy, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610114780;moderator;False;{};giji276;False;t3_kt32sn;False;False;t3_kt32sn;/r/anime/comments/kt32sn/when_should_i_watch_steins_gate_movie_deja_vu/giji276/;1610146761;1;False;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;"It's just art :) - -If you reverse image search it, you'll find the same image just with different colors.";False;False;;;;1610114909;;False;{};gijia6s;False;t3_kt3204;False;True;t3_kt3204;/r/anime/comments/kt3204/is_this_just_art_or_is_this_girl_from_an_anime/gijia6s/;1610146905;2;True;False;anime;t5_2qh22;;0;[]; -[];;;LightThatIgnitesAll;;;[];;;;text;t2_86woj349;False;False;[];;Noragami;False;False;;;;1610114923;;False;{};gijib2i;False;t3_kt30uk;False;True;t3_kt30uk;/r/anime/comments/kt30uk/donr_know_if_this_is_the_right_place_but_i_need/gijib2i/;1610146921;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610114924;;False;{};gijib51;False;t3_kt292n;False;True;t1_gijhndf;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijib51/;1610146922;36;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;"Re:Zero despite it's popularity now is certainly a ""passion project"" for WF, which is why I think they put so much care and detail into it. Kind of hard for MAPPA to do the same for a series they've only picked up 3 seasons in. They're doing a great job so far though.";False;False;;;;1610114935;;False;{};gijibui;False;t3_kt292n;False;False;t1_gijhzu5;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijibui/;1610146934;27;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;Quints came really close to both of them too!;False;False;;;;1610114993;;False;{};gijifhq;False;t3_kt292n;False;False;t1_gijdvdr;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijifhq/;1610146999;7;True;False;anime;t5_2qh22;;0;[]; -[];;;StrayGod360;;;[];;;;text;t2_2dcnh85y;False;False;[];;White Fox has been really committed and passionate about Re Zero. They could pull it off given enough time.;False;False;;;;1610115017;;False;{};gijigzs;False;t3_kt292n;False;False;t1_gijfhzk;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijigzs/;1610147026;74;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;It's not MAPPA's fault as OP belongs to PonyCanyon(music company and top 2 in production committee) and their revenue is 100% from the sales of OP, so it's pretty obvious that they want to show it as much as possible to get the sales. Whereas with Re:zero OP/ED belongs to Kadokawa(publisher of Re:zero) so it's up to anime to show OP as per their wish.;False;False;;;;1610115037;;False;{};gijii7t;False;t3_kt292n;False;False;t1_gijhzu5;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijii7t/;1610147049;48;True;False;anime;t5_2qh22;;0;[]; -[];;;nafissyed;;;[];;;;text;t2_3axlgtoe;False;False;[];;I mean it’s facing of against what is fairly a mainstream Shonen anime series, so I can see the close marginal difference making sense here. The real test however will be next week, when most of the sequels such as AOT and non-sequels like Horimiya are set to make their triumphant return and debut in what will be a very stacked and competitive anime leaderboard.;False;False;;;;1610115043;;1610118646.0;{};gijiilu;False;t3_kt292n;False;False;t1_gijgeki;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijiilu/;1610147056;50;True;False;anime;t5_2qh22;;0;[]; -[];;;dv_recorder;;;[];;;;text;t2_8pd0s8e7;False;False;[];;After finishing Episode 25 of the original steins gate.;False;False;;;;1610115084;;False;{};gijil4m;False;t3_kt32sn;False;True;t3_kt32sn;/r/anime/comments/kt32sn/when_should_i_watch_steins_gate_movie_deja_vu/gijil4m/;1610147106;1;True;False;anime;t5_2qh22;;0;[]; -[];;;StrayGod360;;;[];;;;text;t2_2dcnh85y;False;False;[];;Episode 6, 7, and 8 have it in the bag as well tbh.;False;False;;;;1610115116;;False;{};gijin7f;False;t3_kt292n;False;False;t1_gijea5f;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijin7f/;1610147145;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Nihhrt;;MAL;[];;http://myanimelist.net/animelist/Nihhrt;dark;text;t2_8p0ab;False;False;[];;Yeah it's just a generic colorable template anime styled bored girl wearing headphones.;False;False;;;;1610115123;;False;{};gijinmy;False;t3_kt3204;False;True;t1_gijia6s;/r/anime/comments/kt3204/is_this_just_art_or_is_this_girl_from_an_anime/gijinmy/;1610147152;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610115204;;False;{};gijisqe;False;t3_kt292n;False;True;t1_gijgw5j;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijisqe/;1610147244;2;True;False;anime;t5_2qh22;;0;[]; -[];;;imskyrim;;;[];;;;text;t2_7ipm9psk;False;False;[];;I wasn’t asking what it was, I was saying it’s got just as much hype behind it as Horimiya;False;False;;;;1610115210;;False;{};gijit5d;False;t3_kt292n;False;False;t1_gijhw5v;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijit5d/;1610147251;6;True;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;"Try: - -* [Baccano!](http://myanimelist.net/anime/2251/Baccano!) -* [Barakamon](https://myanimelist.net/anime/22789) -* [Daily Lives of High School Boys](http://myanimelist.net/anime/11843/Danshi_Koukousei_no_Nichijou) -* [Death Parade](https://myanimelist.net/anime/28223) -* [Devil is a Part Timer](https://myanimelist.net/anime/15809) -* [Devilman: Crybaby](https://myanimelist.net/anime/35120) -* [Eizouken ni wa Te wo Dasu na!](https://myanimelist.net/anime/39792) -* [FLCL](https://myanimelist.net/anime/227) -* [Flip Flappers](https://myanimelist.net/anime/32979) -* [Gekkan Shoujo Nozaki-kun](https://myanimelist.net/anime/23289) -* [Golden Boy](http://myanimelist.net/anime/268/Golden_Boy) -* [Gundam 08th MS Team](https://myanimelist.net/anime/81) -* [Hinamatsuri](https://myanimelist.net/anime/36296) -* [Kaiba](https://myanimelist.net/anime/3701) -* [Kemonozume](http://myanimelist.net/anime/1454/Kemonozume) -* [Kino no Tabi](https://myanimelist.net/anime/486) -* [Koi wa Ameagari no You ni](https://myanimelist.net/anime/34984) -* [Kyousou Giga](http://myanimelist.net/anime/19703/Kyousou_Giga_%28TV%29) -* [Mahou Shoujo Lyrical Nanoha](http://myanimelist.net/anime/76/Mahou_Shoujo_Lyrical_Nanoha) -* [Mahou Shoujo Madoka Magica](https://myanimelist.net/anime/9756) -* [Megalo Box](https://myanimelist.net/anime/36563) -* [Mob Psycho 100](https://myanimelist.net/anime/32182) -* [Paranoia Agent](http://myanimelist.net/anime/323/Mousou_Dairinin) -* [Ping Pong The Animation](http://myanimelist.net/anime/22135/Ping_Pong_The_Animation) -* [Serial Experiments Lain](https://myanimelist.net/anime/339) -* [Shouwa Genroku Rakugo Shinjuu](https://myanimelist.net/anime/28735) -* [Silver Spoon](http://myanimelist.net/anime/16918/Gin_no_Saji) -* [SSSS.Gridman](https://myanimelist.net/anime/35847) -* [The Tatami Galaxy](http://myanimelist.net/anime/7785/Yojouhan_Shinwa_Taikei) -* [Top wo Nerae! Gunbuster](http://myanimelist.net/anime/949/Top_wo_Nerae!_Gunbuster!) -* [Wotaku ni Koi wa Muzukashii](https://myanimelist.net/anime/35968)";False;False;;;;1610115279;;False;{};gijixgw;False;t3_kt37nm;False;False;t3_kt37nm;/r/anime/comments/kt37nm/any_good_short_ones/gijixgw/;1610147329;6;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Valk;;;[];;;;text;t2_36l47pm7;False;False;[];;Munou no nana;False;False;;;;1610115305;;False;{};gijiz7p;False;t3_kt37nm;False;True;t3_kt37nm;/r/anime/comments/kt37nm/any_good_short_ones/gijiz7p/;1610147360;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;">The anime’s seem shitty this season tbh - -Everyone's welcome to their opinion but I 100% disagree. This season by the time it ends could go down as one of the best seasons anime has *ever* had.";False;False;;;;1610115390;;False;{};gijj4n3;False;t3_kt292n;False;False;t1_gijh5zp;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijj4n3/;1610147462;17;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;This season is one of the strongest seasons we will see in past 4-5 years imo. Maybe you're thinking that because half of the winter shows haven't started yet;False;False;;;;1610115392;;False;{};gijj4s2;False;t3_kt292n;False;False;t1_gijh5zp;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijj4s2/;1610147465;4;True;False;anime;t5_2qh22;;0;[]; -[];;;StrayGod360;;;[];;;;text;t2_2dcnh85y;False;False;[];;I've heard about this. They want to show the OP for advertisement. But wouldn't it be possible to cut the ED at least?;False;False;;;;1610115399;;False;{};gijj571;False;t3_kt292n;False;False;t1_gijii7t;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijj571/;1610147473;7;True;False;anime;t5_2qh22;;0;[]; -[];;;plopperi;;;[];;;;text;t2_7du1vmy8;False;False;[];;[Minor re:zero and aot spoilers](/s Please tag even minor spoilers, talking about how something big is going to happen next episode is most definitely a spoiler!);False;False;;;;1610115434;;False;{};gijj7hk;False;t3_kt292n;False;False;t1_gijdqbs;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijj7hk/;1610147518;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Warrior7872;;;[];;;;text;t2_6160rqx1;False;False;[];;Im just looking at what we have based on the picture. The only anime’s I’m really excited for are promised neverland and aot. I never got into rezero the rest nothing seems interesting. What else are you excited for maybe I’ll give it a watch;False;False;;;;1610115503;;False;{};gijjbuv;False;t3_kt292n;False;False;t1_gijj4s2;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijjbuv/;1610147601;4;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;">Glad to see Yuru Camp - -Didn't expected it to manage 4K+ karma here on reddit honestly, I underestimated it";False;False;;;;1610115522;;False;{};gijjd5n;False;t3_kt292n;False;False;t1_gijdxiv;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijjd5n/;1610147625;8;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;They can cut and they have done in a small amount as well for the ep1 and ep4.;False;False;;;;1610115527;;False;{};gijjdht;False;t3_kt292n;False;False;t1_gijj571;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijjdht/;1610147632;5;True;False;anime;t5_2qh22;;0;[]; -[];;;lanoxparadox;;;[];;;;text;t2_835dya1u;False;False;[];;Kinda forgot about the Netflix jail. That sucks, if it wasn't for that, it would be up there with those 3 lol.;False;False;;;;1610115571;;False;{};gijjg9q;False;t3_kt292n;False;False;t1_gijhvx3;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijjg9q/;1610147712;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Erufailon4;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Erufailon4;light;text;t2_rtyakcn;False;False;[];;They have been cutting half of the ED in certain recent episodes (the season premiere and the latest episode), and it's not unheard of for the entire ED to be cut in this series (S1E1 and S3E1 for example). So, it is possible.;False;False;;;;1610115572;;False;{};gijjgdt;False;t3_kt292n;False;False;t1_gijj571;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijjgdt/;1610147714;33;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Yeah I didn't expect it to as well but I'm happy it did. Now if Non Non Biyori also manages it then this Season will be the best thing ever.;False;False;;;;1610115665;;False;{};gijjmb2;False;t3_kt292n;False;True;t1_gijjd5n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijjmb2/;1610147836;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Cayde-O;;;[];;;;text;t2_8nd7u4kp;False;False;[];;Erased;False;False;;;;1610115800;;False;{};gijjv0l;False;t3_kt37nm;False;True;t3_kt37nm;/r/anime/comments/kt37nm/any_good_short_ones/gijjv0l/;1610148013;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610115931;moderator;False;{};gijk3hn;False;t3_kt3f7z;False;True;t3_kt3f7z;/r/anime/comments/kt3f7z/anyone_know_the_name_of_this_anime/gijk3hn/;1610148167;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Okeanix;;;[];;;;text;t2_yleud;False;False;[];;I can't understand people get into AoT and Promised Neverland but can't get in Re:Zero. That's pretty bullshit if you ask me.;False;True;;comment score below threshold;;1610115957;;False;{};gijk57k;False;t3_kt292n;False;True;t1_gijjbuv;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijk57k/;1610148198;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;Greedy_Santoryuu;;;[];;;;text;t2_54uzrtvd;False;False;[];;Mirai Nikki;False;False;;;;1610115958;;False;{};gijk58q;False;t3_kt3f7z;False;True;t3_kt3f7z;/r/anime/comments/kt3f7z/anyone_know_the_name_of_this_anime/gijk58q/;1610148198;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Erufailon4;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Erufailon4;light;text;t2_rtyakcn;False;False;[];;People have been making a big deal about how it'll be super controversial and stuff, but forget it's gonna air on the same day as 3 sequels (one of them Re:Zero). This is a very stacked season, and non-sequels with as narrow of an appeal as Redo of Healer get easily buried.;False;False;;;;1610115969;;False;{};gijk5xt;False;t3_kt292n;False;False;t1_gijfo2k;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijk5xt/;1610148212;5;True;False;anime;t5_2qh22;;0;[]; -[];;;DreamyKnightmare;;;[];;;;text;t2_5pu3zzi8;False;False;[];;I'd really recommend ReZero, it's easily one of the best fantasy or isekai shows out there. A great main character which is rare in the genre and great world building. Though I can't guarantee that you'd surely love it, taste are ofc subjective. There's a highly anticipated new anime coming out called Horimiya. The manga is very famous and loved among manga readers. Two new originals, Wonder Egg Priority ( by Cloverworks ) and SK8 ( Studio Bones iirc ) also seems worth checking out;False;False;;;;1610115974;;False;{};gijk6aw;False;t3_kt292n;False;True;t1_gijjbuv;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijk6aw/;1610148219;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ZedelPilfer;;;[];;;;text;t2_8mels7iv;False;False;[];;Damn right Quint is in the top 3. I’m sure it won’t be for long but I’ll enjoy it while it lasts.;False;False;;;;1610115977;;False;{};gijk6hl;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijk6hl/;1610148223;78;True;False;anime;t5_2qh22;;0;[]; -[];;;keithohara;;;[];;;;text;t2_gbzf7q;False;True;[];;"Monday: Nothing - -Tuesday: Black Clover and Wonder Eggs - -Wednesday: Re Zero and Redo of Healer - -Thursday: Promised Neverland and 2.43 Volleyball - -Friday: Jujustu Kaisen and Black Arrow - -Saturday: Dragon Quest - -Sunday: AOT and Horyimia";False;False;;;;1610115985;;False;{};gijk70d;False;t3_kt3eie;False;True;t3_kt3eie;/r/anime/comments/kt3eie/what_is_your_daily_watching_schedule_for_this/gijk70d/;1610148233;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SrCannon;;;[];;;;text;t2_21ftvglj;False;False;[];;"I thought Re Zero would have much more hype like the fans said it'd be. I like Re Zero, but the first ep was not that amazing. - -About Promissed, I really like the starting point, it kinda feels different the tone of the show, I really curious!!!";False;False;;;;1610116064;;False;{};gijkca2;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijkca2/;1610148330;21;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi Cute-Comb, it seems like you might be looking for anime recommendations! I have changed the flair on your post to indicate that, but if I'm wrong, feel free to change it back! - -The users of this subreddit came up with [an awesome recommendations flowchart](https://imgur.com/q9Xjv4p). Maybe you can find something there that you'll like \^.\^ - -[](#bot-chan ""Urban s-s-s-senpai made me do it!"") - -You might also find our [Recommendation Wiki](https://www.reddit.com/r/anime/wiki/recommendations) or [Weekly Recommendation Thread](https://www.reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) helpful. - -The following may be of interest: - -* [List of legal streams and downloads](https://www.reddit.com/r/anime/wiki/legal_streams) - -* [A useful website where you can enter an anime and see where it's legally streaming](https://because.moe) - -* [List of currently airing anime](https://www.livechart.me) - -* [A useful wiki page with watch orders for many anime.](https://www.reddit.com/r/anime/wiki/watch_order) - -* [A list of tracking sites so others can more easily recommend shows you haven't watched.](https://www.reddit.com/r/anime/wiki/related_sites#wiki_tracking_sites) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610116133;moderator;False;{};gijkguc;False;t3_kt3hwl;False;True;t3_kt3hwl;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gijkguc/;1610148425;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Yeah if ReZero has a hype episode in a week where AoT has a buildup episode then ReZero will have a much higher chance to win. ReZero also can't win against AoT's hype episodes since AoT is far more mainstream.;False;False;;;;1610116136;;1610120937.0;{};gijkh1f;False;t3_kt292n;False;False;t1_gijhz31;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijkh1f/;1610148430;40;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Meemeli;;;[];;;;text;t2_2o1rogl;False;False;[];;Good list right here, although I would add [Sora yori mo Tooi Basho](https://myanimelist.net/anime/35839/Sora_yori_mo_Tooi_Basho);False;False;;;;1610116192;;False;{};gijkkqe;False;t3_kt37nm;False;True;t1_gijixgw;/r/anime/comments/kt37nm/any_good_short_ones/gijkkqe/;1610148525;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dawnstorm111;;;[];;;;text;t2_4g8vg5x9;False;False;[];;Kenichi Natsuki may have been a chad and an amazing dad in one fantastic Re:Zero episode, but Anos was a chad the entire series, so I doubt anyone is surprised by this result. I can't say I'm upset though!;False;False;;;;1610116218;;False;{};gijkmfa;True;t3_kt3hho;False;True;t3_kt3hho;/r/anime/comments/kt3hho/and_the_best_boy_of_summer_2020_is/gijkmfa/;1610148556;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ywpgsre;;;[];;;;text;t2_8yvtxm0w;False;False;[];;Mirai Nikki/Future Diary released in 2011. Popularized Yandere characters due to a MC/Antagonist perse of the anime. I believe it has 1 or 2 ovas as well.;False;False;;;;1610116227;;False;{};gijkn04;False;t3_kt3f7z;False;True;t3_kt3f7z;/r/anime/comments/kt3f7z/anyone_know_the_name_of_this_anime/gijkn04/;1610148576;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"Whenever I see this type of comment, I always ask, do animation studios do more than just doing the ""animation"", are they the ones responsible for the time duration of an episode, whether they will play an OP/ED, etc.? - -It's interesting studios like White Fox, ufotable, David Prod, and A-1 are praised by a lot of people for what they did to their adaptations like Re:Zero, Demon Slayer, Jojo/Fire Force, and Kaguya/SAO, respectively. But whenever an adaptation does gets some faults and flaws, people don't blame the studios but rather the production committee, like in God of High School's case.";False;False;;;;1610116244;;False;{};gijko5b;False;t3_kt292n;False;False;t1_gijhiz1;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijko5b/;1610148596;24;True;False;anime;t5_2qh22;;0;[]; -[];;;Swiggy1957;;;[];;;;text;t2_bbysi;False;False;[];;Definitely Hinamatsuri!;False;False;;;;1610116250;;False;{};gijkohs;False;t3_kt37nm;False;True;t1_gijixgw;/r/anime/comments/kt37nm/any_good_short_ones/gijkohs/;1610148602;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Yeah lets not forget this epic battle, though personally I haven't watched it yet. Will clear my backlog tomorrow.;False;False;;;;1610116250;;False;{};gijkoif;False;t3_kt292n;False;False;t1_giji1jo;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijkoif/;1610148603;16;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;I mean when people like me were hyping up Re:Zero we weren't referring to EP14, rest assured, that's the final build-up episode of Season 2, starting next episode is the peak of Re:Zero Season 2.;False;False;;;;1610116280;;False;{};gijkqbq;False;t3_kt292n;False;False;t1_gijkca2;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijkqbq/;1610148637;21;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;I think the top 2 will often switch between AOT and Re:Zero, while the 3rd spot can be Neverland, Dr. Stone, or Slime, depending on the episode.;False;False;;;;1610116297;;1610134927.0;{};gijkrh3;False;t3_kt292n;False;True;t1_gijglgq;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijkrh3/;1610148660;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"> For me ep 4 of S2 - -Same. That was an amazing episode.";False;False;;;;1610116298;;False;{};gijkrk2;False;t3_kt292n;False;False;t1_gijh4r7;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijkrk2/;1610148661;12;True;False;anime;t5_2qh22;;0;[]; -[];;;emilio2710;;;[];;;;text;t2_4sgdoh0z;False;False;[];;Yeah I think people underestimate TPN just because it doesn’t do as good as Rezero and AoT in karma, but it has a huge fandom. In MAL this second season is placed above ReZero S2 part 2;False;False;;;;1610116381;;False;{};gijkwwy;False;t3_kt292n;False;False;t1_gijfzkx;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijkwwy/;1610148787;126;True;False;anime;t5_2qh22;;0;[]; -[];;;Warrior7872;;;[];;;;text;t2_6160rqx1;False;False;[];;I watched rezero season 1 I think it was the anime about the guy who died each episode and relives it everyday with rem and stuff. It was just overall repetitive and boring and I had no motivation to keep watching after season 1.;False;False;;;;1610116403;;False;{};gijkyck;False;t3_kt292n;False;False;t1_gijk57k;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijkyck/;1610148814;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;r/anime seems to like SoL shows more I guess. And I'm sad for Higurashi. I wonder how its karma would be like without the whole sequel/reboot debate.;False;False;;;;1610116405;;False;{};gijkyj4;False;t3_kt292n;False;False;t1_giji05x;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijkyj4/;1610148818;29;True;False;anime;t5_2qh22;;0;[]; -[];;;SatouSmith;;;[];;;;text;t2_85ir9527;False;False;[];;"Kuma Kuma Kuma Bear. Watch the first episode only after second and third episode. The studio decided to switch up the order in their infinite wisdom. - -By God's Grace. The guy is OP but it's more SoL type";False;False;;;;1610116406;;False;{};gijkyke;False;t3_kt3hwl;False;True;t3_kt3hwl;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gijkyke/;1610148819;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;"[Fate/ series wiki entry.](https://www.reddit.com/r/anime/wiki/seriesfaq/fate) - -[/r/fatestaynight](https://www.reddit.com/r/fatestaynight/comments/df8rvo/rfatestaynights_official_viewing_order_guide_v2/) - -_______________________ - -> and I STILL DON'T GET IT - -""Fate/Stay Night is originally a visual novel with 3 routes: Fate, Unlimited Blade Works, and Heaven's Feel. The story basically separates at a point early on into each of the three routes. Each route have the same setting and characters, but completely different stories and themes. They must be played in that order as they build off of the previous route."" - -""Fate/Zero was written afterwards as a light novel by Urobuchi Gen. It was a prequel that expanded on past events talked about in the F/SN VN, and was written with the intent that readers finished all 3 routes of the visual novel.""";False;False;;;;1610116410;;False;{};gijkyta;False;t3_kt3kg8;False;True;t3_kt3kg8;/r/anime/comments/kt3kg8/fate_franchise_how_to_get_into_it/gijkyta/;1610148823;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Sannekem123;;;[];;;;text;t2_4yu2f0i5;False;False;[];;I'd recommend Overlord;False;False;;;;1610116420;;False;{};gijkzg1;False;t3_kt3hwl;False;True;t3_kt3hwl;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gijkzg1/;1610148834;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Asosas;;;[];;;;text;t2_12nhiq;False;False;[];;">Promised Neverland had a great episode - - Unfortunately the drop in quality after the first arc is rather big, i wont spoil anything but i will be surprised if its still at the top after 2-3 months.";False;False;;;;1610116436;;False;{};gijl0g8;False;t3_kt292n;False;False;t1_gijei6o;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijl0g8/;1610148851;35;True;False;anime;t5_2qh22;;0;[]; -[];;;Demolution-Gamer786;;;[];;;;text;t2_2y4pbcre;False;False;[];;Does anyone know when the dub version of the promised neverland s2 comes out?;False;False;;;;1610116477;;False;{};gijl35o;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijl35o/;1610148900;-1;True;False;anime;t5_2qh22;;0;[];True -[];;;ywpgsre;;;[];;;;text;t2_8yvtxm0w;False;False;[];;So, I can start wherever I want then? Can I start with Fate Zero?;False;False;;;;1610116540;;False;{};gijl7b7;True;t3_kt3kg8;False;True;t1_gijkyta;/r/anime/comments/kt3kg8/fate_franchise_how_to_get_into_it/gijl7b7/;1610148974;3;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"Basically, if you can play the Visual Novel, the order becomes super simple, it’s the first one on r/fatestaynight. - -Otherwise, you need to watch the fan cut of Fate/Zero, then Stay Night, then go from there. - -r/fatestaynight has all of the details.";False;False;;;;1610116548;;False;{};gijl7ti;False;t3_kt3kg8;False;True;t3_kt3kg8;/r/anime/comments/kt3kg8/fate_franchise_how_to_get_into_it/gijl7ti/;1610148982;4;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Well, I have commented on the [same](https://www.reddit.com/r/anime/comments/krpmqj/comment/gibkgh2?context=1) thing in the discussion post of TPN and every manga reader assured me that this arc will not suffer from any drop in the quality.;False;False;;;;1610116600;;1610116844.0;{};gijlb86;False;t3_kt292n;False;False;t1_gijl0g8;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijlb86/;1610149047;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;I hope so. If it comes out in 2022/23 then it'd be great for us.;False;False;;;;1610116604;;False;{};gijlbh2;False;t3_kt292n;False;False;t1_gijfhzk;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijlbh2/;1610149052;11;True;False;anime;t5_2qh22;;0;[]; -[];;;River_sounds;;;[];;;;text;t2_y4vd1;False;False;[];;"[The Legend of the Legendary Heroes](https://myanimelist.net/anime/8086/Densetsu_no_Yuusha_no_Densetsu) while not exactly isekai is an adventure fantasy series. It is a great watch imo. - -The MC can be OP... at times. He does go to a magic school for a short while and it has magic as well. It has the requirements you mentioned and i hope you give it a try.";False;False;;;;1610116608;;False;{};gijlbr0;False;t3_kt3hwl;False;True;t3_kt3hwl;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gijlbr0/;1610149057;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610116627;;False;{};gijlcz3;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijlcz3/;1610149079;1;True;False;anime;t5_2qh22;;0;[]; -[];;;StrayGod360;;;[];;;;text;t2_2dcnh85y;False;False;[];;TPN's current arc in the anime is pretty much its peak.;False;False;;;;1610116653;;False;{};gijleqo;False;t3_kt292n;False;False;t1_gijkwwy;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijleqo/;1610149115;23;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;It’ll air next week?? I can finally see one of my fav couple getting animated 😭;False;False;;;;1610116663;;False;{};gijlfel;False;t3_kt292n;False;False;t1_gijeqih;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijlfel/;1610149134;13;True;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;"It's not recommended, but you can. - -Fate/Zero is a prequel written with the intent that readers finished all 3 routes of the visual novel. - - -Imo best is just going in VN order.";False;False;;;;1610116669;;False;{};gijlfsh;False;t3_kt3kg8;False;True;t1_gijl7b7;/r/anime/comments/kt3kg8/fate_franchise_how_to_get_into_it/gijlfsh/;1610149146;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;That's not really quite accurate since Re:Zero was split cour, Season 2 originally had 400k+ starting members 6 months ago, and S2P2 only had 3 months to gain members while TPN S2 had more than a year to gain members, and it's not always about the # of members, for example Re:Zero S2P2 has 180K members and 60k watching while TPN has 300K+ members and also 60k watching.;False;False;;;;1610116675;;False;{};gijlg7i;False;t3_kt292n;False;False;t1_gijkwwy;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijlg7i/;1610149154;76;True;False;anime;t5_2qh22;;0;[]; -[];;;N0a_senpai;;;[];;;;text;t2_7wm4uspf;False;False;[];;oof i though quintessential quintuplets would make it to at least to 10 (πーπ);False;False;;;;1610116680;;False;{};gijlghq;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijlghq/;1610149159;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cute-Comb;;;[];;;;text;t2_5qeetd4o;False;False;[];;Thanks for the recommendation!;False;False;;;;1610116683;;False;{};gijlgoy;True;t3_kt3hwl;False;False;t1_gijlbr0;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gijlgoy/;1610149162;2;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;"Lbx girls - -Infinite dendogram - -Restaurant to another world - -Isekai izakaya - -By the grace of the gods - -Log horizon - -8th son? Are your kidding me? - -Ascendance of a bookworm - -Didn’t I say to make my abilities average in the next life? - -Highschool Prodigies have it easy Even in another world - -Kuma kuma kuma bear - -Overlord - -Konosuba - -Cautious hero - -Tanya the evil";False;False;;;;1610116696;;1610135580.0;{};gijlhig;False;t3_kt3hwl;False;True;t3_kt3hwl;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gijlhig/;1610149178;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Catnelac;;;[];;;;text;t2_9ibx94s5;False;False;[];;No surprise that YNN is the actual lead but I honestly liked more the awaited return of the camping girls 😌;False;False;;;;1610116707;;False;{};gijlia6;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijlia6/;1610149193;6;True;False;anime;t5_2qh22;;0;[]; -[];;;saintrotation;;;[];;;;text;t2_7km54342;False;False;[];;"End of Steins;Gate, before Zero.";False;False;;;;1610116732;;False;{};gijljw5;False;t3_kt32sn;False;True;t3_kt32sn;/r/anime/comments/kt32sn/when_should_i_watch_steins_gate_movie_deja_vu/gijljw5/;1610149222;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Cute-Comb;;;[];;;;text;t2_5qeetd4o;False;False;[];;"Thanks for the recommendation; I've seen gods grace already, and I really liked it";False;False;;;;1610116732;;False;{};gijljxa;True;t3_kt3hwl;False;True;t1_gijkyke;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gijljxa/;1610149223;1;True;False;anime;t5_2qh22;;0;[]; -[];;;StrayGod360;;;[];;;;text;t2_2dcnh85y;False;False;[];;This calls for a rewatch.;False;False;;;;1610116734;;False;{};gijlk2j;False;t3_kt292n;False;False;t1_gijh4r7;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijlk2j/;1610149225;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Once those, AoT and JJK returns, the chart will start to look quite different.;False;False;;;;1610116736;;1610123840.0;{};gijlk7l;False;t3_kt292n;False;False;t1_gijgwte;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijlk7l/;1610149227;42;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;"Main story: - -* Fate/stay night (2006) **(DISCLAIMER: primarily follows the Fate Route, but incorporates some elements from the other two. I like it enough to recommend it, so I will. However, I do concede that a better alternative would be to watch/read/play the Fate Route of the VN.)** -* Unlimited Blade Works (2014) -* Heaven's Feel Trilogy - -Prequel: - -* Fate/Zero **(DISCLAIMER: if you just want to watch one great show and then dip from the franchise, it's a perfectly fine standalone (not gonna gatekeep). However, don't start with it if you plan to commit)** - -Spinoffs: - -* Fate/kaleid liner Prisma Illya -* Carnival Phantasm (needs some knowledge from Tsukihime as well, but there's no anime of that 😎) -* Fate/Apocrypha -* Today's Menu for the Emiya Family (jokingly referred to as ""Fate/Cooking"") -* Fate/Extra: Last Encore -* Lord El-Melloi II Case Files: Rail Zeppelin Grace Note (needs Fate/Zero for context) -* Fate/Grand Order **(which is a whole different can of worms with enough in-depth lore and story to surpass the Main Story)** - - First Order - - Moonlight/Lostroom **(DISCLAIMER: should be watched last out of the ones currently listed here)** - - Absolute Demonic Front - Babylonia - - Divine Realm of the Round Table - Camelot - - The Grand Temple of Time - Solomon";False;False;;;;1610116750;;False;{};gijll4z;False;t3_kt3kg8;False;True;t3_kt3kg8;/r/anime/comments/kt3kg8/fate_franchise_how_to_get_into_it/gijll4z/;1610149247;4;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Horimiya will air this week only, in Google it's saying it'll air on the 9th of January in Japan. So most probably it'll air today.;False;False;;;;1610116757;;False;{};gijllnu;False;t3_kt292n;False;False;t1_gijlfel;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijllnu/;1610149258;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Cute-Comb;;;[];;;;text;t2_5qeetd4o;False;False;[];;Thank you for the recommendation! I've already seen overlord. I'm honestly confused how I forgot about it because I loved it;False;False;;;;1610116776;;False;{};gijlmwo;True;t3_kt3hwl;False;True;t1_gijkzg1;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gijlmwo/;1610149281;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chriskor025;;;[];;;;text;t2_3e63sf67;False;False;[];;Give reasons of drop of goldy pond arc?;False;False;;;;1610116783;;False;{};gijlnge;False;t3_kt292n;False;False;t1_gijl0g8;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijlnge/;1610149291;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;it's 3rd...;False;False;;;;1610116841;;False;{};gijlrcr;False;t3_kt292n;False;False;t1_gijlghq;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijlrcr/;1610149372;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Cute-Comb;;;[];;;;text;t2_5qeetd4o;False;False;[];;Thanks for all of the amazing recommendations!!;False;False;;;;1610116852;;False;{};gijls3r;True;t3_kt3hwl;False;True;t1_gijlhig;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gijls3r/;1610149386;1;True;False;anime;t5_2qh22;;0;[]; -[];;;StrayGod360;;;[];;;;text;t2_2dcnh85y;False;False;[];;This arc will most likely do fine. It will get weaker after that.;False;False;;;;1610116854;;False;{};gijls8g;False;t3_kt292n;False;False;t1_gijl0g8;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijls8g/;1610149388;16;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;Hell yeah!! Horimiya today/tmr then AOT raw livestream 2 days later, i’m trully blessed!;False;False;;;;1610116866;;False;{};gijlszj;False;t3_kt292n;False;False;t1_gijllnu;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijlszj/;1610149404;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MadKingTylor;;;[];;;;text;t2_6zv37z9;False;False;[];;In Another World With My Smartphone;False;False;;;;1610116877;;False;{};gijltrx;False;t3_kt3hwl;False;True;t3_kt3hwl;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gijltrx/;1610149419;1;True;False;anime;t5_2qh22;;0;[]; -[];;;25NOVember;;;[];;;;text;t2_1unxu1nj;False;False;[];;I mean I am one of those people. But that's just because I am staying away from everything with even a little romance in it.;False;False;;;;1610116883;;False;{};gijlu6n;False;t3_kt292n;False;True;t1_gijk57k;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijlu6n/;1610149426;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610116901;moderator;False;{};gijlvcu;False;t3_kt3qgg;False;True;t3_kt3qgg;/r/anime/comments/kt3qgg/eternal_quon_netflix_which_country/gijlvcu/;1610149448;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Asosas;;;[];;;;text;t2_12nhiq;False;False;[];;Well im also a manga reader so i guess that i view things differently. But from the replies, the one thing that we can all agree on is that the rest of the series is different from the first arc (in terms of tone, character development, focus etc);False;False;;;;1610116904;;False;{};gijlvjo;False;t3_kt292n;False;False;t1_gijlb86;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijlvjo/;1610149451;17;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610116910;moderator;False;{};gijlw0e;False;t3_kt3qla;False;True;t3_kt3qla;/r/anime/comments/kt3qla/where_can_i_watch_season_2_of_the_promised/gijlw0e/;1610149464;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Cute-Comb;;;[];;;;text;t2_5qeetd4o;False;False;[];;Hm, I've been hearing good things about that show, will probably watch it. Thanks for the recommendation!;False;False;;;;1610116942;;False;{};gijly6w;True;t3_kt3hwl;False;True;t1_gijltrx;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gijly6w/;1610149504;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;">Whenever I see this type of comment, I always ask, do animation studios do more than just doing the ""animation"", are they the ones responsible for the time duration of an episode, whether they will play an OP/ED, etc.? - -Depends on how it's organized but obviously everything has to be agreed through the committee. In WFs case they most likely brought the idea to the table and it was then sanctioned by the production committee. Which is almost even more impressive because they are all onboard and same wavelength with the Re Zero project. - ->people don't blame the studios but rather the production committee, like in God of High School's case. - -GoHS is a very different case. Crunchyroll being as weird as they are made a decision that another production committee that cares about the product wouldn't make. GoHS main problems all stemmed from Crunchyroll once again cutting corners on a webtoon adaptation by enforcing one cour seasons. Almost as a quick money grab. Probably worked for them but yeah it's not MAPPA's fault they were given such conditions. In most other cases, GoHS would have been given a 24 episode season, everyone knew one cour was never going to cut it.";False;False;;;;1610116944;;False;{};gijlydh;False;t3_kt292n;False;False;t1_gijko5b;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijlydh/;1610149507;21;True;False;anime;t5_2qh22;;0;[]; -[];;;PaulWalkerIV;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MasonCrosbysFoot;light;text;t2_11thw0;False;False;[];;this season will be as good as or arguably better than the first, season 3 is where it goes downhill fast;False;False;;;;1610116967;;False;{};gijlzvl;False;t3_kt292n;False;True;t1_gijl0g8;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijlzvl/;1610149535;2;True;False;anime;t5_2qh22;;0;[]; -[];;;strike77778;;;[];;;;text;t2_9oz47p2z;False;False;[];;Start with fate zero then go fate stay night, then unlimited blade works, then heavensfeels. That's how I did it and it worked for me. The rest are spin offs;False;False;;;;1610117005;;False;{};gijm2dh;False;t3_kt3kg8;False;True;t3_kt3kg8;/r/anime/comments/kt3kg8/fate_franchise_how_to_get_into_it/gijm2dh/;1610149582;0;True;False;anime;t5_2qh22;;0;[]; -[];;;StrayGod360;;;[];;;;text;t2_2dcnh85y;False;False;[];;There are lot of Isekai series this season and most of them have some amount of hype behind them.;False;False;;;;1610117019;;False;{};gijm380;False;t3_kt292n;False;False;t1_gijh891;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijm380/;1610149596;5;True;False;anime;t5_2qh22;;0;[]; -[];;;OXx_d_Legend;;;[];;;;text;t2_52wwfsa6;False;False;[];;Re:zero season 2 was such a disapointment and the fact that part 2 is in 1st on this list ahead of some great animes makes me sick!;False;True;;comment score below threshold;;1610117032;;False;{};gijm44g;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijm44g/;1610149612;-17;True;False;anime;t5_2qh22;;0;[]; -[];;;N0a_senpai;;;[];;;;text;t2_7wm4uspf;False;False;[];;oh jesus why am i soo blind (≧▽≦).;False;False;;;;1610117054;;False;{};gijm5mm;False;t3_kt292n;False;False;t1_gijlrcr;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijm5mm/;1610149639;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Lazy_Sans;;;[];;;;text;t2_14i72c;False;False;[];;I am surprised 2nd season CaW airing at the same time as Code Black.;False;False;;;;1610117058;;False;{};gijm5vm;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijm5vm/;1610149643;9;True;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;https://www.hidive.com/movies/towanoquon;False;False;;;;1610117068;;False;{};gijm6io;False;t3_kt3qgg;False;True;t3_kt3qgg;/r/anime/comments/kt3qgg/eternal_quon_netflix_which_country/gijm6io/;1610149655;2;True;False;anime;t5_2qh22;;0;[]; -[];;;michhoffman;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/michhoffman/;light;text;t2_yhj9y;False;True;[];;At least for next week, I would expect it to follow the most anticipated [anime list](https://static.animecorner.me/wp-content/uploads/2021/01/Winter-2021-Most-Anticipated-Anime-Top-10.jpg) rather closely meaning for non-sequels Mushoku Tensei will definitely make the list, Horimiya will most likely make the list and Spider (12th) has an outside chance of making the list.;False;False;;;;1610117145;;False;{};gijmbro;False;t3_kt292n;False;False;t1_gijelco;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijmbro/;1610149754;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Asosas;;;[];;;;text;t2_12nhiq;False;False;[];;"Its just that the series changes from a psychological thriller, founded on mind games and slow character exploration, to something else, something generic and uninspired in my opinion. Its like the writer run out of steam after the first arc and didnt know what to do, so he just followed the easy and safe route - -As i said i wont give specifics because i dont want to spoil anything";False;False;;;;1610117175;;False;{};gijmdqu;False;t3_kt292n;False;False;t1_gijlnge;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijmdqu/;1610149788;18;True;False;anime;t5_2qh22;;0;[]; -[];;;anonymous1742;;;[];;;;text;t2_9lwh73xf;False;False;[];;It’s demon king daimao and the whole season are on yt:);False;False;;;;1610117176;;False;{};gijmdtf;False;t3_kt2nto;False;True;t3_kt2nto;/r/anime/comments/kt2nto/im_looking_for_an_anime_i_saw_a_clip_of_can/gijmdtf/;1610149789;0;True;False;anime;t5_2qh22;;0;[]; -[];;;emilio2710;;;[];;;;text;t2_4sgdoh0z;False;False;[];;Oh I see, my bad then. I don’t watch ReZero so I didn’t know hahaha. But still it’s safe to say that TPN is top 3 this season in terms of popularity, maybe tied with Dr Stone. People talking about AoT vs ReZero but I think TPN vs Dr Stone is just as interesting😂;False;False;;;;1610117177;;False;{};gijmdvg;False;t3_kt292n;False;False;t1_gijlg7i;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijmdvg/;1610149790;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"That's true but I think Mushoku is probably bigger since people have been asking for an anime adaptation of it for years. - -IIRC the WN was extremely popular back in 2013/14 and the author, I think he said he'd like an anime adaptation only if it gets adapted in full.";False;False;;;;1610117240;;1610123523.0;{};gijmi96;False;t3_kt292n;False;False;t1_gijm380;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijmi96/;1610149870;7;True;False;anime;t5_2qh22;;0;[]; -[];;;wodime;;;[];;;;text;t2_6mnjfeny;False;False;[];;Just watch zero don't bother with other not worth imo but if you are still interested after watching zero watch ubw,hf;False;False;;;;1610117306;;False;{};gijmmrg;False;t3_kt3kg8;False;True;t3_kt3kg8;/r/anime/comments/kt3kg8/fate_franchise_how_to_get_into_it/gijmmrg/;1610149976;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;Just a heads-up, Netflix is not a anime service, even with vpn will be hard to find series there outside of the ultra popular ones;False;False;;;;1610117361;;False;{};gijmqig;False;t3_kt3qgg;False;True;t3_kt3qgg;/r/anime/comments/kt3qgg/eternal_quon_netflix_which_country/gijmqig/;1610150048;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;Bruh, how was it a disappointment? Season 2 had generally positive feedback from the viewers, with some people saying it's better than Season 1. But I don't think it's fair to judge Re:Zero Season 2 yet when it's not even done...;False;False;;;;1610117415;;False;{};gijmu68;False;t3_kt292n;False;False;t1_gijm44g;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijmu68/;1610150114;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;The majority of people start with Zero, don't worry;False;False;;;;1610117464;;False;{};gijmxk8;False;t3_kt3kg8;False;True;t1_gijl7b7;/r/anime/comments/kt3kg8/fate_franchise_how_to_get_into_it/gijmxk8/;1610150189;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kiminobokuwa;;;[];;;;text;t2_142x5m;False;False;[];;No. Not just One Piece. If u had any official manga pages on your Twitter from any of their titles (Dragonball, Kimetsu nk Yaiba, Naruto, etc.) They will lock your twitter account until u remove each one. Also they DMCA'ed their own official manga artists as well. Also a few fan artists. They also take into account any anime video snippets as well from what I've seen online.;False;False;;;;1610117477;;False;{};gijmyg2;False;t3_kt3sy5;False;False;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gijmyg2/;1610150209;231;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610117506;;False;{};gijn0g5;False;t3_kt292n;False;True;t1_gijmdqu;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijn0g5/;1610150251;2;True;False;anime;t5_2qh22;;0;[]; -[];;;jicuhrabbitkim;;;[];;;;text;t2_6po9il13;False;False;[];;Just a tip if you can find the original source materials of the anime and if you have time to read all of that then please do. Reading the source material still the best way to enjoy the series and you’ll learn more about Shirou as a character if you read the VN.;False;False;;;;1610117530;;False;{};gijn20x;False;t3_kt3kg8;False;True;t3_kt3kg8;/r/anime/comments/kt3kg8/fate_franchise_how_to_get_into_it/gijn20x/;1610150283;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SatouSmith;;;[];;;;text;t2_85ir9527;False;False;[];;Is this the results of the new copyright law they enforced this year?;False;False;;;;1610117534;;False;{};gijn2bq;False;t3_kt3sy5;False;False;t1_gijmyg2;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gijn2bq/;1610150288;18;True;False;anime;t5_2qh22;;0;[]; -[];;;Final-Solid;;;[];;;;text;t2_yw0ryp5;False;False;[];;Hot take: Re Zero ep1 was ok. Like a 6/10. I’m sure the arc gets better and that this is probably the weakest episode, but it doesn’t change that fact.;False;False;;;;1610117587;;False;{};gijn5xz;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijn5xz/;1610150356;12;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610117630;moderator;False;{};gijn8xi;False;t3_kt3yll;False;True;t3_kt3yll;/r/anime/comments/kt3yll/do_someone_know_this_4_girls_i_search_it_but/gijn8xi/;1610150411;1;False;False;anime;t5_2qh22;;0;[]; -[];;;TheDevilPhoenix;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/TheDevilPhoenix;light;text;t2_56341q6r;False;False;[];;Yuru Camp, S2 started yesterday;False;False;;;;1610117641;;False;{};gijn9ps;False;t3_kt37nm;False;False;t3_kt37nm;/r/anime/comments/kt37nm/any_good_short_ones/gijn9ps/;1610150426;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MaximalDisguised;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MaximalDisguised;light;text;t2_nvuwp;False;False;[];;It's the cast of [Lucky☆Star](https://myanimelist.net/anime/1887).;False;False;;;;1610117691;;False;{};gijnd9m;False;t3_kt3yll;False;True;t3_kt3yll;/r/anime/comments/kt3yll/do_someone_know_this_4_girls_i_search_it_but/gijnd9m/;1610150489;1;True;False;anime;t5_2qh22;;0;[]; -[];;;zenithtb;;;[];;;;text;t2_3b29idg8;False;False;[];;Lucky Star, I think.;False;False;;;;1610117706;;False;{};gijne82;False;t3_kt3yll;False;True;t3_kt3yll;/r/anime/comments/kt3yll/do_someone_know_this_4_girls_i_search_it_but/gijne82/;1610150507;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kiminobokuwa;;;[];;;;text;t2_142x5m;False;False;[];;To be honest, I'm not sure. It seems like they hired some 3rd party company who goes around filing these claims because I wouldn't think they would lock their own manga artists accounts. Though it could be a response to the One Piece 1000 chapter leak the other day.;False;False;;;;1610117725;;False;{};gijnfl3;False;t3_kt3sy5;False;False;t1_gijn2bq;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gijnfl3/;1610150534;78;True;False;anime;t5_2qh22;;0;[]; -[];;;PREM___;;;[];;;;text;t2_3pqnn53g;False;False;[];;First 3 weeks of February will be AoT’s build up possibly? After thats its all uphill. On the karma side of r/anime, AoT’s build up episodes got \~13k karma in dec, wonder what Re:zero’s hype episodes will be;False;False;;;;1610117741;;False;{};gijngra;False;t3_kt292n;False;False;t1_gijkh1f;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijngra/;1610150570;31;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;In my opinion, this episode is good because it serves as a final build-up for what's to come in the 2nd half. The pieces start to fall into place because of this week's episode.;False;False;;;;1610117794;;1610118687.0;{};gijnkhf;False;t3_kt292n;False;False;t1_gijn5xz;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijnkhf/;1610150641;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Around 15k-16k is my guess.;False;False;;;;1610117822;;False;{};gijnmd6;False;t3_kt292n;False;False;t1_gijngra;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijnmd6/;1610150680;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"I still believe Mappa does have a fair share of blame in what happened to God of High School. - -Since they are the ones animating the scenes in which will end up in the official release, does the animators know which scene will be adapted and animated, do they know the context and story of the scene they are adapting? Animation does help in storytelling, and it would be weird that none of the animators knew something was wrong or missing when they are adapting from the source, like it didn't clicked to them some scenes feel disjointed when put together or how the scenes they are animating are affecting the pacing of the overall story. In that case, the story scenes they animated from the source material (outside of the hype fights) definitely had some issues. And if the animation studio and production committee aren't in sync or harmony with each other, the result will be a disaster and both sides will take fault for what happened. - -It's also jarring that GoHS and Jujutsu Kaisen, another Mappa-animated show, both share the same director. It's weird that GoHS direction ended up a total chaos, meanwhile in Jujutsu Kaisen, the direction is actually fine and going smoothly. - -In Tower of God's case tho, it's neutral, no significant praises nor criticism for the studio nor the Crunchyroll committee, but the overall reception to the anime is still positive. - -Edit: Alright, I'm being downvoted. Fine, I know some of what I said may not be factually or entirely correct, but there is still some sensible argument in it.";False;False;;;;1610117895;;1610126275.0;{};gijnr24;False;t3_kt292n;False;False;t1_gijlydh;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijnr24/;1610150760;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610117912;;False;{};gijns7r;False;t3_kt292n;False;True;t1_gijin7f;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijns7r/;1610150783;1;True;False;anime;t5_2qh22;;0;[]; -[];;;iskoa;;;[];;;;text;t2_2hobvjin;False;False;[];;Isn't that from Lucky star?;False;False;;;;1610117974;;False;{};gijnwel;False;t3_kt3yll;False;True;t3_kt3yll;/r/anime/comments/kt3yll/do_someone_know_this_4_girls_i_search_it_but/gijnwel/;1610150863;1;True;False;anime;t5_2qh22;;0;[]; -[];;;gangrainette;;MAL;[];;https://myanimelist.net/profile/bouletos;dark;text;t2_vlti1;False;False;[];;[Start with Fate/Zero](https://www.reddit.com/r/anime/comments/kplnlp/how_do_people_actually_start_the_fate_franchise_a/);False;False;;;;1610118046;;False;{};gijo1ei;False;t3_kt3kg8;False;True;t3_kt3kg8;/r/anime/comments/kt3kg8/fate_franchise_how_to_get_into_it/gijo1ei/;1610150961;1;True;False;anime;t5_2qh22;;0;[]; -[];;;superfan808;;;[];;;;text;t2_36g7vehj;False;False;[];;"Monday: Jobless Reincarnation, (Attack on Titan), Non non Biyori - -Tuesday: Last dungeon..., Otherside Picnic - -Wednesday: Gekidol, Slime isekai, World Witches (maybe) - -Thursday: Log Horizon, Redo of a Healer, (LBX), Hortensia SAGA, Beastars - -Friday: Dr Stone, Yuru Camp, Higurashi, The Promised Netherland, Quints, Cells at Work + Code Black - -Saturday: Tomozaki, Spider Isekai, (WIXOSS), Hidden Dungeon - -Sunday: Horimiya, (World Trigger) - -Brackets for shows that I expect a delay before starting due to catch up";False;False;;;;1610118119;;False;{};gijo6fy;False;t3_kt3eie;False;True;t3_kt3eie;/r/anime/comments/kt3eie/what_is_your_daily_watching_schedule_for_this/gijo6fy/;1610151059;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EatMePlsDaddy;;;[];;;;text;t2_15sof4;False;False;[];;Hell no? So much stories never get fully adapted, animes biggest and notorious flaw is that things almost never get adapted fully. No point in constantly waiting for new anime seasons which may never come.;False;False;;;;1610118186;;False;{};gijob2z;False;t3_kt2nsp;False;True;t3_kt2nsp;/r/anime/comments/kt2nsp/waiting_for_seasons_of_ongoing_anime/gijob2z/;1610151154;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;"Direction can seem much worse when you're trying to cram so much content into 12 episodes. - -I enjoyed ToG myself but again the pacing was all over the place, not as bad as GoHS, though.";False;False;;;;1610118323;;False;{};gijokh8;False;t3_kt292n;False;False;t1_gijnr24;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijokh8/;1610151333;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Okeanix;;;[];;;;text;t2_yleud;False;False;[];;"You clearly misunderstood the entire series. You should watch videos about explaining Re:Zero in many depths. Mother's Basement video for example. - -Re:Zero Season 1 is just a prologue for future 7 seasons. There is nothing repetitive. It is better than AoT and Promised Neverland in my opinion.";False;True;;comment score below threshold;;1610118422;;False;{};gijorhi;False;t3_kt292n;False;True;t1_gijkyck;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijorhi/;1610151456;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;"I'd expect JJK to continue to pull in at least 6k+ karma each week until it ends. - -It'll be something like AoT > Re:Zero >JJK > TPN > The Rest.";False;False;;;;1610118453;;False;{};gijoto5;False;t3_kt292n;False;False;t1_gijglgq;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijoto5/;1610151494;15;True;False;anime;t5_2qh22;;0;[]; -[];;;Thiccc_Duccc;;;[];;;;text;t2_5j1asylw;False;False;[];;Mushoku tensei and the spider isekei have potential to be very popular;False;False;;;;1610118489;;False;{};gijow7x;False;t3_kt292n;False;False;t1_gijfmmw;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijow7x/;1610151538;11;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hello! If you ever find yourself needing anime related help, here are a few resources to save you a LOT of time. - -* Have **any anime related question?** Try our weekly [Miscellaneous Anime Questions thread](https://www.reddit.com/r/anime/search/?q=author%3AAnimeMod+Miscellaneous+Anime+Questions&include_over_18=on&restrict_sr=on&t=week&sort=new) -* **Need something new to watch?** [Check the Recommendation wiki](https://www.reddit.com/r/anime/wiki/recommendations) or try our [Recommendation Tuesdays thread!](https://reddit.com/r/anime/search?q=subreddit%3Aanime+author%3AAnimeMod+Recommendation+Tuesdays&restrict_sr=on&sort=new&t=week) -* For **where to watch anime**, see [our list of streaming sites](https://www.reddit.com/r/anime/wiki/legal_streams) or [search on Livechart.me](https://www.livechart.me/search) for specific shows. -* For **source of fanarts**, try [SauceNAO](https://saucenao.com/) -* For **source of anime screenshots**, try [trace.moe](https://trace.moe/) or [other image search tools](https://www.reddit.com/r/anime/wiki/reverse_image_searching) -* For **watch orders**, try [our Watch Order wiki](https://www.reddit.com/r/anime/wiki/watch_order) -* For other questions, check if they are answered in the [FAAQ](https://www.reddit.com/r/anime/wiki/faaq) -Do none of these answer your question? If that's the case, you can resubmit your question as a **text post** instead of an image to ask help from the /r/anime community. - -[](#bot-chan) - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610118555;moderator;False;{};gijp0v2;False;t3_kt49r3;False;True;t3_kt49r3;/r/anime/comments/kt49r3/no_spoilers_pls_attack_on_titan_question/gijp0v2/;1610151617;0;False;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;65 episodes X 20 min;False;False;;;;1610118649;;False;{};gijp7lm;False;t3_kt49r3;False;True;t3_kt49r3;/r/anime/comments/kt49r3/no_spoilers_pls_attack_on_titan_question/gijp7lm/;1610151732;9;True;False;anime;t5_2qh22;;0;[]; -[];;;PREM___;;;[];;;;text;t2_3pqnn53g;False;False;[];;Well then I wonder if Re:zero’s premiere can beat AoT’s premier;False;False;;;;1610118681;;False;{};gijp9t5;False;t3_kt292n;False;True;t1_gijnmd6;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijp9t5/;1610151769;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Final-Solid;;;[];;;;text;t2_yw0ryp5;False;False;[];;Yea but I felt like the pacing was all around the place and the dialogue scenes could’ve been directed better while toning down the exposition a bit. The only scene that felt impactful to me was Otto-Subaru at the beginning and a to a much lesser extent the Emilia-Subaru scenes. Emilia is the weakest point of Re:Zero IMO so I’m definitely interested to see if S2P2 can change that.;False;False;;;;1610118682;;False;{};gijp9wq;False;t3_kt292n;False;False;t1_gijnkhf;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijp9wq/;1610151771;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;What didn't you like about it?;False;False;;;;1610118705;;False;{};gijpbim;False;t3_kt292n;False;False;t1_gijm44g;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijpbim/;1610151799;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Biobait;;;[];;;;text;t2_n7wph;False;False;[];;Just read the Visual Novel. It's that simple.;False;False;;;;1610118746;;False;{};gijpeff;False;t3_kt3kg8;False;True;t1_gijl7b7;/r/anime/comments/kt3kg8/fate_franchise_how_to_get_into_it/gijpeff/;1610151850;4;True;False;anime;t5_2qh22;;0;[]; -[];;;rideaway1;;;[];;;;text;t2_852n1c;False;False;[];;BONUS QUESTION? what order to watch includeing the movies and stuff and is the game important;False;False;;;;1610118801;;False;{};gijpicf;True;t3_kt49r3;False;True;t3_kt49r3;/r/anime/comments/kt49r3/no_spoilers_pls_attack_on_titan_question/gijpicf/;1610151918;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"You mean Re:zero hype ep vs AoT hype ep - -Cos Re:zero premiere is no where near AoT premiere";False;False;;;;1610118817;;False;{};gijpjjn;False;t3_kt292n;False;False;t1_gijp9t5;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijpjjn/;1610151939;23;True;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;Why is it hard to understand?;False;False;;;;1610118838;;False;{};gijpkza;False;t3_kt292n;False;False;t1_gijk57k;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijpkza/;1610151963;7;True;False;anime;t5_2qh22;;0;[]; -[];;;EconomyProcedure9;;;[];;;;text;t2_3dsxr7rn;False;False;[];;"How NOT To Summon A Demon Lord - -GATE";False;False;;;;1610118892;;False;{};gijpovg;False;t3_kt3hwl;False;True;t3_kt3hwl;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gijpovg/;1610152046;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;"Going by 2 chapters per episode, 7th february will be covering chapters 107-108, 14th february will cover 109-110 and 21th february will cover 111-112. - -I haven't read Re Zero's source material, but even if Re Zero wins first two weeks of feb, theres no way it will win in the third week, where 112 will be adapted. That episode will break the internet into pieces.";False;False;;;;1610118892;;False;{};gijpovt;False;t3_kt292n;False;False;t1_gijngra;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijpovt/;1610152046;20;True;False;anime;t5_2qh22;;0;[]; -[];;;Syokhan;;;[];;;;text;t2_b5zid;False;False;[];;I'm going to savor this as one of the only times Otherside Picnic ranks pretty well, before the more hyped-up non-sequels arrive.;False;False;;;;1610118907;;False;{};gijppzu;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijppzu/;1610152065;14;True;False;anime;t5_2qh22;;0;[]; -[];;;PREM___;;;[];;;;text;t2_3pqnn53g;False;False;[];;I just too realized. Estimates for re:zero’s premier tho?;False;False;;;;1610118960;;False;{};gijptqa;False;t3_kt292n;False;True;t1_gijpjjn;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijptqa/;1610152130;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;The pacing felt off because this episode was a bit rushed, they adapted 100 pages. Next two episodes at least however should have much better pacing.;False;False;;;;1610118999;;False;{};gijpwlr;False;t3_kt292n;False;False;t1_gijp9wq;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijpwlr/;1610152180;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Don't forget Jujutsu Kaisen. It'll most likely be No.3 on this list and r/anime's once it returns.;False;False;;;;1610119025;;False;{};gijpyiy;False;t3_kt292n;False;False;t1_gijmdvg;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijpyiy/;1610152216;41;True;False;anime;t5_2qh22;;0;[]; -[];;;CT_BINO;;MAL;[];;https://myanimelist.net/profile/CT_BINO;dark;text;t2_pa5vv;False;False;[];;"For now: - -Wednesday: Beastars s2 - -Thursday: Higurashi - -Friday: Jujutsu Kaisen";False;False;;;;1610119080;;False;{};gijq2g3;False;t3_kt3eie;False;True;t3_kt3eie;/r/anime/comments/kt3eie/what_is_your_daily_watching_schedule_for_this/gijq2g3/;1610152295;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sarbar3258;;;[];;;;text;t2_84t2gknk;False;False;[];;commentttt;False;False;;;;1610119177;;False;{};gijq9ku;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijq9ku/;1610152421;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;"There's no ""movies"", only recaps, so you can watch from episode 1 to 65";False;False;;;;1610119188;;False;{};gijqag6;False;t3_kt49r3;False;True;t1_gijpicf;/r/anime/comments/kt49r3/no_spoilers_pls_attack_on_titan_question/gijqag6/;1610152436;5;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610119214;;False;{};gijqcb9;False;t3_kt49r3;False;True;t1_gijpicf;/r/anime/comments/kt49r3/no_spoilers_pls_attack_on_titan_question/gijqcb9/;1610152469;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"Wish other studios or producers would do more this type for their shows, the only ones I can think of are Jojo, Fate, and SAO. - -Much as I love Re:Zero, I think the only reason it's got a great reception and reputation of being the ""greatest/best"" in its genre or the year, is because of the special treatment it got in their episodes, which gives me a mixed feeling because it feels very unfair.";False;True;;comment score below threshold;;1610119297;;False;{};gijqic1;False;t3_kt292n;False;True;t1_gijibui;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijqic1/;1610152575;-15;True;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;This year is going to be a good year for anime. RE:ZERO is at the top as expect, but the episode was weak so i hope it improves. From next week onwards i doubt RE:ZERO will be able to reach the first place though.;False;False;;;;1610119315;;False;{};gijqjnq;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijqjnq/;1610152599;6;True;False;anime;t5_2qh22;;0;[]; -[];;;apurplerosefor_her;;;[];;;;text;t2_48eicaez;False;False;[];;When is the demon slayer movie coming? Is it not in winter 2021 season?;False;False;;;;1610119412;;False;{};gijqqnh;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijqqnh/;1610152720;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Cute-Comb;;;[];;;;text;t2_5qeetd4o;False;False;[];;Thanks for the recommendation!;False;False;;;;1610119418;;False;{};gijqr14;True;t3_kt3hwl;False;False;t1_gijpovg;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gijqr14/;1610152726;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;AoT episode 9 will cover chapters 107-108, 10 will cover 109-110 and 11 will cover chapter 111-112. I haven't read Re Zero's source material, but considering its hype AoT will definitely win with its 10th and 11th episode. 11th will break the internet with whats is going to be adapted.;False;False;;;;1610119454;;False;{};gijqto7;False;t3_kt292n;False;False;t1_gijgw5j;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijqto7/;1610152776;23;True;False;anime;t5_2qh22;;0;[]; -[];;;PREM___;;;[];;;;text;t2_3pqnn53g;False;False;[];;Yeah I kinda forgot about chapters 105-106 and since they are not that build up, re:zero still have very less chances, but that episode airs on 1 feb for me :/ so for some reasons I presumed it 1st weak nvm. Re:zero does have chances on c107-110. After that 112,114 and beyond are kinda impossible;False;False;;;;1610119475;;False;{};gijqv3q;False;t3_kt292n;False;False;t1_gijpovt;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijqv3q/;1610152801;8;True;False;anime;t5_2qh22;;0;[]; -[];;;rideaway1;;;[];;;;text;t2_852n1c;False;False;[];;"thats wierd my friend told me to watch ""the levi movie""";False;False;;;;1610119486;;False;{};gijqvwe;True;t3_kt49r3;False;True;t1_gijqag6;/r/anime/comments/kt49r3/no_spoilers_pls_attack_on_titan_question/gijqvwe/;1610152818;1;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;I don't think Re Zero has the power to beat AoT. I see it consistently being below AoT, but above others.;False;False;;;;1610119489;;False;{};gijqw6w;False;t3_kt292n;False;False;t1_gijhndf;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijqw6w/;1610152824;75;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;">Much as I love Re:Zero, I think the only reason it's got a great reception and reputation of being the ""greatest/best"" in its genre or the year, is because of the special treatment it got in their episodes, which gives me a mixed feeling because it feels very unfair. - -I don't think so man. Since S1 aired it's been in the top 5 best selling LNs for each of the past 4 years in Japan and it now has 25 volumes released (arc 6 just ended, anime currently on arc 4). Being the highest selling LN in two of those 4 years and only came second this year (instead of first) due to the novelization of Demon Slayer. You don't have that much success so consistently in the source material for the popularity reason you stated towards the anime. The story and characters are fantastic. Fully deserves its title as ""Best Isekai"". In my opinion. - -The source is top tier and the anime does a good job of being a passionate and faithful adaptation. Don't think WFs attention to detail carries it as hard as you say, the source material does.";False;False;;;;1610119514;;1610120521.0;{};gijqy0c;False;t3_kt292n;False;False;t1_gijqic1;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijqy0c/;1610152858;15;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;Jesus I am so fucking excited. Both have started of very well and my hype is only increasing.;False;False;;;;1610119575;;False;{};gijr2ft;False;t3_kt292n;False;False;t1_gijgoa2;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijr2ft/;1610152935;19;True;False;anime;t5_2qh22;;0;[]; -[];;;FuntasticoReddit;;;[];;;;text;t2_44rgdkne;False;False;[];;That's the OVA. You can watch it anytime after season 1, but it isn't necessary for you to understand the plot so I would suggest you catch up on the main episodes first and watch the OVA if you want more;False;False;;;;1610119885;;False;{};gijrpcl;False;t3_kt49r3;False;True;t1_gijqvwe;/r/anime/comments/kt49r3/no_spoilers_pls_attack_on_titan_question/gijrpcl/;1610153362;7;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;I’m praying for them to cut both op and ed for that final episode which is ch 121/122, preferably for next ep too but it seems impossible;False;False;;;;1610119963;;False;{};gijrv5j;False;t3_kt292n;False;False;t1_gijhzu5;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijrv5j/;1610153460;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;Currently it is going to end at 12.3k compared to AoT 20.3k;False;False;;;;1610119985;;False;{};gijrwql;False;t3_kt292n;False;False;t1_gijptqa;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijrwql/;1610153488;5;True;False;anime;t5_2qh22;;0;[]; -[];;;reliweeb;;;[];;;;text;t2_9ai93fa8;False;False;[];;You have ovas, the number of where to watch the ova will appear in the start, like the number of an episode, normally something like **5.5**;False;False;;;;1610120053;;False;{};gijs1jk;False;t3_kt49r3;False;True;t1_gijpicf;/r/anime/comments/kt49r3/no_spoilers_pls_attack_on_titan_question/gijs1jk/;1610153573;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Shinkopeshon;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Diable-Jambe;light;text;t2_zfb9m;False;False;[];;"Tuesday: Black Clover: Spade Kingdom - -Wednesday: ReZero S2 - -Thursday: Yakusoku no Neverland S2, Dr. Stone, Yuru Camp S2, Hataraku Saibou Black - -Friday: Jujutsu Kaisen - -Sunday: One Piece: Wano Kuni, Shingeki no Kyojin S4 - -I'm not sure if I'll continue Black though. While it's more intriguing than the main series, the art style didn't do anything for me at all and it might be a dealbreaker - especially with so many Thursday shows this season and if I don't watch a new episode on release day, I tend to forget about it. I also don't mind that Beastars S2 is in Netflix jail, this schedule is stacked enough for my liking lol - and I like having some anime-free days too.";False;False;;;;1610120185;;False;{};gijsb7l;False;t3_kt3eie;False;True;t3_kt3eie;/r/anime/comments/kt3eie/what_is_your_daily_watching_schedule_for_this/gijsb7l/;1610153749;1;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;">in its genre or the year, is because of the special treatment it got in their episodes, which gives me a mixed feeling because it feels very unfair - -i mean any good source material that gets a great adaptation would do well. - -look at AOT S1-3";False;False;;;;1610120190;;False;{};gijsbn2;False;t3_kt292n;False;False;t1_gijqic1;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijsbn2/;1610153757;20;True;False;anime;t5_2qh22;;0;[]; -[];;;ItchyPlatypus;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/ItchyPlatypus;light;text;t2_x6uza5h;False;False;[];;I rewatched every episode last week. It didn’t take that long, 60ish episodes at 20 minutes a piece. So around 20 hours, watch enough at night before bed for it to be the length of a film (2-3 hours each) and you’ll be done in no time tbh.;False;False;;;;1610120221;;False;{};gijsdvk;False;t3_kt49r3;False;True;t3_kt49r3;/r/anime/comments/kt49r3/no_spoilers_pls_attack_on_titan_question/gijsdvk/;1610153794;1;True;False;anime;t5_2qh22;;0;[]; -[];;;emilio2710;;;[];;;;text;t2_4sgdoh0z;False;False;[];;True as well, Idk why I forgot. Then it will probably be 1. AoT 2. ReZero 3. JJK 4. TPN/Dr Stone;False;False;;;;1610120227;;False;{};gijsedd;False;t3_kt292n;False;False;t1_gijpyiy;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijsedd/;1610153803;21;True;False;anime;t5_2qh22;;0;[]; -[];;;IJustJason;;;[];;;;text;t2_fpfam;False;False;[];;Out of all the shows im excited to watch, Slime and Yuru Camp are shows im looking to a lot more than the rest;False;False;;;;1610120232;;False;{};gijseo7;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijseo7/;1610153807;4;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;what do you mean?;False;False;;;;1610120246;;False;{};gijsfp0;False;t3_kt292n;False;True;t1_gijgeki;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijsfp0/;1610153826;5;True;False;anime;t5_2qh22;;0;[]; -[];;;frncsnthnl;;;[];;;;text;t2_45nm7tng;False;False;[];;Didnt know that there are two different cells at work;False;False;;;;1610120318;;False;{};gijskzk;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijskzk/;1610153917;1;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"> Re zero can barely compete with Aots dialogue and build up episodes let alone compete with the absolute hypefest that is the next episode - -that would make sense if the majority of ReZero episodes including the newest one weren't heavy dialogue based too";False;False;;;;1610120445;;False;{};gijsuhq;False;t3_kt292n;False;True;t1_gije3px;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijsuhq/;1610154080;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Sin778;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/Philipp2002;light;text;t2_42jtk419;False;False;[];;"As an entire show: 8/10 - -Each individual arc: - -1. Hunter Exam Arc: 5.5/10 -2. Zoldyck Family Arc: 5.5/10 -3. Heavens Arena Arc: 7/10 -4. New Yorkshin Arc: 9/10 -5. Greed Island Arc: 7/10 -6. Chimera Ant Arc: 8/10 (but with some 10/10 episodes, and a 10/10 climax) -7. 13th Chairman Election Arc: 8.5/10";False;False;;;;1610120465;;False;{};gijsw1f;False;t3_kt2ag9;False;True;t3_kt2ag9;/r/anime/comments/kt2ag9/how_would_you_rate_hunter_x_hunter/gijsw1f/;1610154108;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;That's around 22 hours, might be longer if you don't skip the openings.;False;False;;;;1610120511;;False;{};gijszhn;False;t3_kt49r3;False;True;t1_gijp7lm;/r/anime/comments/kt49r3/no_spoilers_pls_attack_on_titan_question/gijszhn/;1610154169;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610120595;;1610143191.0;{};gijt5od;False;t3_kt3eie;False;False;t3_kt3eie;/r/anime/comments/kt3eie/what_is_your_daily_watching_schedule_for_this/gijt5od/;1610154275;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;You should probably edit your copy and paste to say that Fate/Stay Night (2006) has a fan edit.;False;False;;;;1610120648;;False;{};gijt9oj;False;t3_kt3kg8;False;True;t1_gijll4z;/r/anime/comments/kt3kg8/fate_franchise_how_to_get_into_it/gijt9oj/;1610154341;0;True;False;anime;t5_2qh22;;0;[]; -[];;;ikal_man;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/ikal_man;light;text;t2_8xz07xi5;False;False;[];;[Ao-chan Can't Study](https://myanimelist.net/anime/38778/Midara_na_Ao-chan_wa_Benkyou_ga_Dekinai) \- funny romcom, 12x12 minutes (minus OP/ED). I'd call it short.;False;False;;;;1610120789;;False;{};gijtke9;False;t3_kt37nm;False;True;t1_gijixgw;/r/anime/comments/kt37nm/any_good_short_ones/gijtke9/;1610154525;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;"the elements from the other two routes are too intrinsically tied to the story, that the fan edit comes off as really janky. You'd be constantly wondering how we got from point A to B at a few occasions. - -Watching 2006 as it is isn't that big of a deal, honestly";False;False;;;;1610120860;;False;{};gijtpso;False;t3_kt3kg8;False;True;t1_gijt9oj;/r/anime/comments/kt3kg8/fate_franchise_how_to_get_into_it/gijtpso/;1610154619;3;True;False;anime;t5_2qh22;;0;[]; -[];;;PMmeYourpussy-_-;;;[];;;;text;t2_89uynt0o;False;False;[];;i gotta watch otherside picnic. S.T.A.L.K.E.R. The Anime;False;False;;;;1610120892;;False;{};gijtsah;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijtsah/;1610154661;3;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"> I thought Re Zero would have much more hype like the fans said it'd be. I like Re Zero, but the first ep was not that amazing. - -really? - -[ReZero! Ep. 14](/s ""had so much going on, Otto and Subaru conflict, the straight Bet, Emilia focus and bit of her past coming to light, heavy insight on the Ryuzu clones Garfiel's situation, Cornering Garfiel, Puck leaving"")";False;False;;;;1610120915;;1610124969.0;{};gijtu1h;False;t3_kt292n;False;False;t1_gijkca2;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijtu1h/;1610154691;9;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"Gets better? -Yeah, Clearly the mystery and the characters are not interesting enough for you, that's fine.";False;True;;comment score below threshold;;1610120978;;False;{};gijtyvi;False;t3_kt292n;False;True;t1_gijn5xz;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijtyvi/;1610154773;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;I mean you could probably add a note saying something about a fan edit existing.;False;False;;;;1610121087;;False;{};giju73e;False;t3_kt3kg8;False;True;t1_gijtpso;/r/anime/comments/kt3kg8/fate_franchise_how_to_get_into_it/giju73e/;1610154921;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;the 48-hours just ended, it scored [11962](https://animetrics.co/anime/624) in S2P2 ep 1;False;False;;;;1610121117;;False;{};giju9ic;False;t3_kt292n;False;False;t1_gijptqa;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giju9ic/;1610154962;6;True;False;anime;t5_2qh22;;0;[]; -[];;;YuriAddict7;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/R1seKujikawa/;light;text;t2_3zn8celm;False;False;[];;whats laid back camp about? SoL cgdct?;False;False;;;;1610121123;;False;{};giju9we;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giju9we/;1610154968;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nomar_95;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Nomar_95;light;text;t2_2d5oc83;False;False;[];;I used too, but then got rid of it;False;False;;;;1610121195;;False;{};gijufdf;False;t3_kt3kg8;False;True;t1_giju73e;/r/anime/comments/kt3kg8/fate_franchise_how_to_get_into_it/gijufdf/;1610155065;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Wing-Dismal;;;[];;;;text;t2_8inen8ad;False;False;[];;"Understandable. - -Should probably explain the original Visual Novel and its routes as well but I guess it might come off as too ""vn purist-y"".";False;False;;;;1610121323;;False;{};gijup3s;False;t3_kt3kg8;False;True;t1_gijufdf;/r/anime/comments/kt3kg8/fate_franchise_how_to_get_into_it/gijup3s/;1610155236;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PotatoKaboose;;;[];;;;text;t2_47iz2hsb;False;False;[];;Redo will probably show up on the charts due to it's controversy;False;False;;;;1610121355;;False;{};gijuriw;False;t3_kt292n;False;False;t1_gijfmmw;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijuriw/;1610155277;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Okeanix;;;[];;;;text;t2_yleud;False;False;[];;"Well if someone loves AoT and Promised Neverland there is %99 Chance they will love Re:Zero too. If they don't than there is a problem with their PRIDE or something. Which ironic because the show i referenced. This three series are amazing on what they are doing. AoT doing Freedom very well, Promised Neverland doing Survival very well and Re:Zero doing everything else very well. - -As for you, i think you are too prideful to accept Re:Zero is great show and have so many depths in every episode. You are hating series which each 20-25 minute episode can be reviewed for 30+ Minutes. - -Your other comments shows you misunderstood Re:Zero by a lot, and fixed by other reddit users. If you throw your pride away and look at it in different perspective maybe you can understand why Re:Zero is so great.";False;True;;comment score below threshold;;1610121635;;1610121852.0;{};gijvd5y;False;t3_kt292n;False;True;t1_gijpkza;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijvd5y/;1610155666;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;WatchDude22;;;[];;;;text;t2_jhmn0p3;False;False;[];;Yeah, alot of other sites user bases seem younger and not as interested in the more relaxed stuff. Their loss I suppose.;False;False;;;;1610121712;;False;{};gijvj2x;False;t3_kt292n;False;False;t1_gijkyj4;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijvj2x/;1610155766;13;True;False;anime;t5_2qh22;;0;[]; -[];;;WatchDude22;;;[];;;;text;t2_jhmn0p3;False;False;[];;I prefer Laidback Camp but NNB posts seem to be getting more karma so we will see;False;False;;;;1610121767;;False;{};gijvn6n;False;t3_kt292n;False;True;t1_gijjmb2;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijvn6n/;1610155836;3;True;False;anime;t5_2qh22;;0;[]; -[];;;raceraot;;;[];;;;text;t2_61r8xh6u;False;False;[];;Can't wait till the 10th.;False;False;;;;1610121810;;False;{};gijvqik;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijvqik/;1610155894;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mystic8ball;;;[];;;;text;t2_hpgps;False;False;[];;A lot of people on twitter tend to share leaked chapters around a lot, so I imagine that this is in response to that and in typical Japanese corporate fashion overeached way too hard.;False;False;;;;1610121810;;False;{};gijvqjm;False;t3_kt3sy5;False;False;t1_gijnfl3;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gijvqjm/;1610155895;37;True;False;anime;t5_2qh22;;0;[]; -[];;;MapoTofuMan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/animelist/BaronBrixius;light;text;t2_1ipqr6ej;False;False;[];;[When you see Yuru Camp not even in top 5](https://i.redd.it/0cewfi8p58u11.jpg);False;False;;;;1610121956;;False;{};gijw1jk;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijw1jk/;1610156079;42;True;False;anime;t5_2qh22;;0;[]; -[];;;PREM___;;;[];;;;text;t2_3pqnn53g;False;False;[];;Wasn’t re:zero season 2 premiere 15.6k? So instead of an increase we are going to see a smaller premier?;False;False;;;;1610121993;;False;{};gijw4cd;False;t3_kt292n;False;True;t1_gijrwql;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijw4cd/;1610156125;1;True;False;anime;t5_2qh22;;0;[]; -[];;;toutoune134;;;[];;;;text;t2_fokbo;False;False;[];;S2 premier was an event after waiting for more than 3 years. It had much more hype.;False;False;;;;1610122084;;False;{};gijwbd1;False;t3_kt292n;False;False;t1_gijw4cd;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijwbd1/;1610156246;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"~14.6k yeah a smaller premiere compared to cour 1 - -Maybe it will end up doing better next ep or even later hype ep";False;False;;;;1610122160;;False;{};gijwh5x;False;t3_kt292n;False;True;t1_gijw4cd;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijwh5x/;1610156342;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MjolnirDK;;;[];;;;text;t2_hdfrq;False;False;[];;What I just read was that this bot shouldn't target fanart. At least it wasn't their intent. Whether that is japanese corporate tactic, a japanese language misunderstanding or japanese tech savvyness is for you to decide.;False;False;;;;1610122221;;False;{};gijwlxg;False;t3_kt3sy5;False;False;t1_gijn2bq;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gijwlxg/;1610156424;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Slash_lag;;;[];;;;text;t2_17avzi;False;False;[];;"100 pages?? Is that a lot compared to normal episodes? - -100 pages seems like a really long read for a single episode";False;False;;;;1610122332;;False;{};gijwued;False;t3_kt292n;False;False;t1_gijpwlr;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijwued/;1610156567;7;True;False;anime;t5_2qh22;;0;[]; -[];;;LeoGiacometti;;;[];;;;text;t2_13n8qv;False;False;[];;wtf is that isekai title;False;False;;;;1610122344;;False;{};gijwvcb;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijwvcb/;1610156582;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lemonioneater;;;[];;;;text;t2_2bc17h4u;False;False;[];;Most of us dont mean this season content. we mean like the last 3 arcs. it wasn't horrible but not as good as 1. I think the arc s2 is covering is amazing;False;False;;;;1610122418;;False;{};gijx12p;False;t3_kt292n;False;False;t1_gijlb86;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijx12p/;1610156679;6;True;False;anime;t5_2qh22;;0;[]; -[];;;TheBlaaah;;MAL;[];;http://myanimelist.net/profile/TheBlah;dark;text;t2_cuu4j;False;False;[];;"These artist are literally costing the companies BILLIONS of yen EACH MINUTE!!! /s - -Anyways, wasting company time and resources to copyright strike free advertisement seems to be the go to tactic for big companies.";False;False;;;;1610122420;;False;{};gijx15v;False;t3_kt3sy5;False;False;t1_gijmyg2;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gijx15v/;1610156680;182;True;False;anime;t5_2qh22;;0;[]; -[];;;jicuhrabbitkim;;;[];;;;text;t2_6po9il13;False;False;[];;I manage to rewatch all current episode in 2.5 two days .;False;False;;;;1610122489;;False;{};gijx6ei;False;t3_kt49r3;False;True;t3_kt49r3;/r/anime/comments/kt49r3/no_spoilers_pls_attack_on_titan_question/gijx6ei/;1610156767;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GhostOfLight;;;[];;;;text;t2_go8xe;False;False;[];;I’ve seen this repeated by manga readers so much in the past year that now my expectations are so low that it’s almost certain to be better than I expect.;False;False;;;;1610122517;;False;{};gijx8kf;False;t3_kt292n;False;False;t1_gijl0g8;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijx8kf/;1610156806;33;True;False;anime;t5_2qh22;;0;[]; -[];;;SherrinfordxD;;;[];;;;text;t2_7wsjvtmk;False;False;[];;" - -Thursday: Promised Neverland - -Friday: Spider Isekai, Tomozaki-kun - -Saturday: Horiyama - -Sunday: Moshuko Tensei and SK8 (not sure of either)";False;False;;;;1610122748;;False;{};gijxqgg;False;t3_kt3eie;False;True;t3_kt3eie;/r/anime/comments/kt3eie/what_is_your_daily_watching_schedule_for_this/gijxqgg/;1610157120;1;True;False;anime;t5_2qh22;;0;[]; -[];;;darthgera;;;[];;;;text;t2_2zl52zv6;False;False;[];;Next episode is the best manga chapter for AoT;False;False;;;;1610122881;;False;{};gijy0ur;False;t3_kt292n;False;False;t1_gijhda5;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijy0ur/;1610157296;12;True;False;anime;t5_2qh22;;0;[]; -[];;;amirokia;;;[];;;;text;t2_3innu2wt;False;False;[];;"I heard that the reason is that S1 quickly catched up to the sources so they have to wait for a long time to have more things to adapt. - -Seriously, the fact that they adapted a 9 volume light novel in a 2-cour anime and still be this good is insane! The only one I can think that pull off something like this was ToraDora which consists of 10 volumes";False;False;;;;1610122929;;False;{};gijy4me;False;t3_kt292n;False;False;t1_gijfhzk;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijy4me/;1610157359;19;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610122933;;False;{};gijy4xm;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijy4xm/;1610157365;0;True;False;anime;t5_2qh22;;0;[]; -[];;;I_Cognito;;;[];;;;text;t2_8anbytoj;False;False;[];;Watch Higurashi. For me it's by far the best anime of this season. Though you should definitely watch the original first.;False;False;;;;1610122945;;False;{};gijy5ua;False;t3_kt3eie;False;True;t1_gijt5od;/r/anime/comments/kt3eie/what_is_your_daily_watching_schedule_for_this/gijy5ua/;1610157379;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cire101;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Cire101;light;text;t2_oryv2;False;False;[];;"There's a little merit to this tho. If someone shares a massive spoiler, or even a clip of the ending, why would you check it out? Or you might be so angry to get a show spoiled you drop it. - -These copyright laws have been there, they just haven't been enforced, which is what is causing the kneejerk reaction imo";False;True;;comment score below threshold;;1610122971;;False;{};gijy7ve;False;t3_kt3sy5;False;True;t1_gijx15v;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gijy7ve/;1610157413;-47;True;False;anime;t5_2qh22;;0;[]; -[];;;PMmeYourpussy-_-;;;[];;;;text;t2_89uynt0o;False;False;[];;cour1 s2 is some of my favorite rezero. Love that dialogue;False;False;;;;1610123017;;False;{};gijybin;False;t3_kt292n;False;True;t1_gijehjy;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijybin/;1610157475;1;True;False;anime;t5_2qh22;;0;[]; -[];;;amirokia;;;[];;;;text;t2_3innu2wt;False;False;[];;AoT will probably win because I haven't heard servers breaking when Re:Zero returned;False;False;;;;1610123026;;False;{};gijyc9b;False;t3_kt292n;False;False;t1_gijde64;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijyc9b/;1610157486;19;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610123052;;1610143171.0;{};gijyea1;False;t3_kt3eie;False;True;t1_gijy5ua;/r/anime/comments/kt3eie/what_is_your_daily_watching_schedule_for_this/gijyea1/;1610157521;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Castform5;;MAL;[];;https://myanimelist.net/animelist/Castform5;dark;text;t2_141rtc;False;False;[];;Especially japanese companies. They don't usually understand how the internet and fan interaction works.;False;False;;;;1610123071;;False;{};gijyfsf;False;t3_kt3sy5;False;False;t1_gijx15v;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gijyfsf/;1610157546;136;True;False;anime;t5_2qh22;;0;[]; -[];;;Sharebear42019;;;[];;;;text;t2_z1jb0;False;False;[];;Is jjk on break?;False;False;;;;1610123260;;False;{};gijyuov;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijyuov/;1610157804;3;True;False;anime;t5_2qh22;;0;[]; -[];;;fredthefishlord;;;[];;;;text;t2_ba5at3b;False;False;[];;It's definitely one of the best isekai, but there are a couple parts of it that are.... Questionable. The plot is quite amazing, but some of the smaller bits of the story make you wonder how a writer can be so good and so bad. I can't say more without going into spoilers;False;False;;;;1610123295;;False;{};gijyxe6;False;t3_kt292n;False;False;t1_gijh891;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijyxe6/;1610157852;36;True;False;anime;t5_2qh22;;0;[]; -[];;;Lostmaniac9;;;[];;;;text;t2_1lpplc65;False;False;[];;I'm willing to bet that a chunk of the hype for the quints comes from manga readers like myself raving about how good the manga, up until the end at least.;False;False;;;;1610123319;;False;{};gijyzad;False;t3_kt292n;False;True;t1_giji05x;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijyzad/;1610157890;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Caveskelton;;;[];;;;text;t2_3bvuza1x;False;False;[];;Am I the only who is surprised that laid back is more popular than beastars;False;False;;;;1610123324;;False;{};gijyzor;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijyzor/;1610157898;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Lostmaniac9;;;[];;;;text;t2_1lpplc65;False;False;[];;Is Otherside Picnic some sort of comfy SOL like Yuru Camp, but with picnics instead?;False;False;;;;1610123373;;False;{};gijz3iw;False;t3_kt292n;False;False;t1_gijfxta;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijz3iw/;1610157969;16;True;False;anime;t5_2qh22;;0;[]; -[];;;MaskOfIce42;;;[];;;;text;t2_gj6onc6;False;False;[];;Yep. About girls who enjoy winter camping and the slow deepening of their friendship. And as far as I'm concerned it is close to the pinnacle of the genre.;False;False;;;;1610123411;;False;{};gijz6gi;False;t3_kt292n;False;True;t1_giju9we;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijz6gi/;1610158021;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Are the LN and WN versions similar or did the LN change some things?;False;False;;;;1610123436;;False;{};gijz8j5;False;t3_kt292n;False;False;t1_gijyxe6;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijz8j5/;1610158060;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ernie2492;;;[];;;;text;t2_s9bqe;False;False;[];;"> Also they DMCA'ed their own official manga artists as well. - -*How to make your manga artist jumping ship to other publisher..*";False;False;;;;1610123449;;False;{};gijz9jl;False;t3_kt3sy5;False;False;t1_gijmyg2;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gijz9jl/;1610158077;131;True;False;anime;t5_2qh22;;0;[]; -[];;;Gosutoo;;;[];;;;text;t2_hcu39gx;False;False;[];;"Monday: Last dungeon in the boonies, Other side picnic - -Tuesday: Black clover - -Wednesday: Log Horizon, Re zero, redo of a healer - -Thursday: Dr stone, the promised neverland, Hataraku saibou black - -Friday: Kumo desu ga, Jaku chara, Jujutsu kaisen - -Saturday: Horimiya - -Sunday: Snk, Mushoku tensei, Kemono jihen";False;False;;;;1610123466;;1610124865.0;{};gijzauk;False;t3_kt3eie;False;True;t3_kt3eie;/r/anime/comments/kt3eie/what_is_your_daily_watching_schedule_for_this/gijzauk/;1610158110;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610123471;;False;{};gijzbam;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijzbam/;1610158118;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610123471;;False;{};gijzbaq;False;t3_kt292n;False;True;t1_gijybin;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijzbaq/;1610158118;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RandomPost416;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_pez84vq;False;False;[];;"Yeah it's a great manga, but damn man, Why does Rudeus have to be such a sleazebag, like don't get me wrong he's a pretty great character, but seriously I hate it whenever they focus more on the sleazy shit he pulls like that worshipping thing with his teacher and his so called ""relic"" of hers.";False;False;;;;1610123484;;False;{};gijzcad;False;t3_kt292n;False;False;t1_gijyxe6;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijzcad/;1610158134;6;True;False;anime;t5_2qh22;;0;[]; -[];;;-FuzzyDuck-;;;[];;;;text;t2_81w14;False;False;[];;Goddam what a fucking stacked season. I wait until season finish to watch it in a binge session, cannot wait to see all of these;False;False;;;;1610123530;;False;{};gijzfyw;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijzfyw/;1610158199;1;True;False;anime;t5_2qh22;;0;[]; -[];;;heyAcee;;;[];;;;text;t2_5r0hbw36;False;False;[];;Double Cells at Work lol;False;False;;;;1610123567;;False;{};gijzitv;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijzitv/;1610158248;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Mikeng_0106;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MichaelK0106;light;text;t2_5ktn94g8;False;False;[];;gotta finish cells at work and yuru camp 1 to make this my best anime season and escape from the current mess america is in;False;False;;;;1610123567;;False;{};gijzivf;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijzivf/;1610158249;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jslice4ever;;;[];;;;text;t2_2wvi51tm;False;False;[];;Cells at Work actually comes out Saturdays. It's only the first episode that was released early.;False;False;;;;1610123582;;False;{};gijzk32;True;t3_kt3eie;False;True;t1_gijzauk;/r/anime/comments/kt3eie/what_is_your_daily_watching_schedule_for_this/gijzk32/;1610158271;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kenjasama;;;[];;;;text;t2_9q2aelyc;False;False;[];;On myanimelist, the pre-broadcast popularity rankings for non-sequels are Hori-san, Mushoku Tensei, Redo of Healer, and Spider. These will appear in the rankings next week;False;False;;;;1610123723;;False;{};gijzv1d;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gijzv1d/;1610158463;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TheSoaringDingo;;;[];;;;text;t2_2yc2u07x;False;False;[];;re zero is the best thank god it is on the top of that list;False;False;;;;1610123812;;False;{};gik01x5;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik01x5/;1610158582;6;True;False;anime;t5_2qh22;;0;[]; -[];;;bmcgrill05;;;[];;;;text;t2_410ds77z;False;False;[];;I was just there for the Phantom Troupe and Chimera Ant arcs, beautifully written plots but like they kinda popped outta nowhere, there was no progressive world-build leading to a sense-making initiation of those arcs (kind of except for the phantom troupe one). Overall 7/10, Phantom troupe arc 8/10, ant arc 8.5/10, Idk, maybe my mind set the bar really high for world building after watching One Piece;False;False;;;;1610123849;;False;{};gik04vf;False;t3_kt2ag9;False;True;t3_kt2ag9;/r/anime/comments/kt2ag9/how_would_you_rate_hunter_x_hunter/gik04vf/;1610158633;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610123902;;False;{};gik093d;False;t3_kt292n;False;True;t1_gijwh5x;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik093d/;1610158704;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;You might want to spoiler tag that. Some people might not have watched the episode yet.;False;False;;;;1610123938;;False;{};gik0c11;False;t3_kt292n;False;False;t1_gijtu1h;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik0c11/;1610158754;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Blueberry--Chan;;;[];;;;text;t2_99hczff9;False;False;[];;Re:Zero started amazing;False;False;;;;1610124019;;False;{};gik0iep;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik0iep/;1610158863;8;True;False;anime;t5_2qh22;;0;[]; -[];;;SrCannon;;;[];;;;text;t2_21ftvglj;False;False;[];;That's it. The ep kinda seemed rushed, u know? They put so much stuff and none had a great impact on me.;False;False;;;;1610124027;;False;{};gik0j18;False;t3_kt292n;False;True;t1_gijtu1h;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik0j18/;1610158874;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Iandoesthedishes;;;[];;;;text;t2_4wo0bvxz;False;False;[];;Trust me it's really good, especially the main character;False;False;;;;1610124078;;False;{};gik0n13;False;t3_kt292n;False;True;t1_gijh5hq;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik0n13/;1610158943;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;FetchFrosh;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Fetch;light;text;t2_b3tjw;False;True;[];;Fate/Zero is the most common starting point for anime only viewers. It's a perfectly accessible starting point.;False;False;;;;1610124188;;False;{};gik0vno;False;t3_kt3kg8;False;True;t1_gijl7b7;/r/anime/comments/kt3kg8/fate_franchise_how_to_get_into_it/gik0vno/;1610159091;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Syokhan;;;[];;;;text;t2_b5zid;False;False;[];;It's sci-fi horror, so nope, not really.;False;False;;;;1610124254;;False;{};gik10xy;False;t3_kt292n;False;False;t1_gijz3iw;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik10xy/;1610159187;81;True;False;anime;t5_2qh22;;0;[]; -[];;;Warrior7872;;;[];;;;text;t2_6160rqx1;False;False;[];;Been a while since I watched it tbh I watched it when it came out and I just kept seeing him die in a similar but different scenario. I will give a try. I am currently watching monster and im loving it so once I am done I’ll give it a try. Thanks;False;False;;;;1610124444;;False;{};gik1fvn;False;t3_kt292n;False;False;t1_gijorhi;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik1fvn/;1610159458;2;True;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;Why is it hard to accept that some people don't like it that much? I understand everything but i still don't view as a masterpiece. It's a good show, but not that great.;False;False;;;;1610124608;;False;{};gik1t1h;False;t3_kt292n;False;True;t1_gijvd5y;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik1t1h/;1610159692;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610124618;;False;{};gik1tum;False;t3_kt292n;False;True;t1_gik0c11;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik1tum/;1610159706;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;Lostmaniac9;;;[];;;;text;t2_1lpplc65;False;False;[];;Oh wait, really? It's some kind of psychological horror anime? I'm always looking for a good psych-horror.;False;False;;;;1610124623;;False;{};gik1u9b;False;t3_kt292n;False;False;t1_gik10xy;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik1u9b/;1610159713;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Goldenfox299;;;[];;;;text;t2_21fpin3p;False;False;[];;"Yh I don't know what he's talking about, this episode felt no different to any of the Part 1 episodes... - -He just seems to dislike Emilia though so whatever.";False;True;;comment score below threshold;;1610124694;;False;{};gik1zwl;False;t3_kt292n;False;True;t1_gijtyvi;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik1zwl/;1610159816;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;MaxyIsAlive;;;[];;;;text;t2_14qxv5;False;False;[];;It's a shame that higurashi didn't make it. Yesterday's episode was probably the best of it's season so far. It seems like the somewhat popularity it had has now died off because of the two week break.;False;False;;;;1610124714;;False;{};gik21h2;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik21h2/;1610159845;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Goldenfox299;;;[];;;;text;t2_21fpin3p;False;False;[];;"Camping slice of life. I don't know really know what makes an anime ""cgdct"" but the girls are cute so it fits I guess.";False;False;;;;1610124764;;False;{};gik25gb;False;t3_kt292n;False;True;t1_giju9we;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik25gb/;1610159924;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610124784;;False;{};gik26zm;False;t3_kt292n;False;True;t1_gijy0ur;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik26zm/;1610159953;8;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"It's an anime adaptation, things will move fast. -WF and the production committee is already doing so much by extending episode runtime and skipping OP and ED - -if you really want a clear understanding of everything that's going on, Novels are the alternative. - -But i will say this, the next two episodes will most likely have good pacing.";False;False;;;;1610124788;;False;{};gik279h;False;t3_kt292n;False;False;t1_gik0j18;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik279h/;1610159958;13;True;False;anime;t5_2qh22;;0;[]; -[];;;Goldenfox299;;;[];;;;text;t2_21fpin3p;False;False;[];;S2 is far better than S1.;False;False;;;;1610124805;;False;{};gik28mg;False;t3_kt292n;False;True;t1_gijm44g;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik28mg/;1610159982;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;"This thread is a general discussion thread for *all Winter 2021 anime*, not only ReZero. If it was ReZero S2-specific then it should be fair. - -I made comments like these in the past and mods removed them later so I got some experience in this.";False;False;;;;1610124820;;False;{};gik29tr;False;t3_kt292n;False;False;t1_gik1tum;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik29tr/;1610160004;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Kiminobokuwa;;;[];;;;text;t2_142x5m;False;False;[];;Yeah. I think the bot was just targeting people who had keywords on their art and just gave them a copystrike. I hope they reverse it but who knows if they will.;False;False;;;;1610124835;;False;{};gik2azb;False;t3_kt3sy5;False;False;t1_gijwlxg;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gik2azb/;1610160025;11;True;False;anime;t5_2qh22;;0;[]; -[];;;R3pN1xC;;;[];;;;text;t2_36jvxgl5;False;False;[];;They are removing free advertising, that's so fucking dumb;False;False;;;;1610124855;;False;{};gik2ckf;False;t3_kt3sy5;False;False;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gik2ckf/;1610160054;127;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;"I don't remember exactly what the those chapters covered, did 111-112 do the Jacket scene or the Table scene? Either way, I'm sure both can be pretty big moments but not to the level of the next 4 episodes or the 117-122 set. - -WFP arc in general is filled with big moments and I imagine it'll do better than Marley arc has been doing so far, I do wonder if the Marley arc payoff or WFP payoff will do better here though.";False;False;;;;1610124935;;False;{};gik2j1i;False;t3_kt292n;False;True;t1_gijqto7;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik2j1i/;1610160168;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Goldenfox299;;;[];;;;text;t2_21fpin3p;False;False;[];;I mean there has hardly been any romance, it's just characters being obsessed with each other, you know like with Mikasa and Eren.;False;False;;;;1610124959;;False;{};gik2l0r;False;t3_kt292n;False;True;t1_gijlu6n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik2l0r/;1610160206;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;done;False;False;;;;1610124976;;False;{};gik2mda;False;t3_kt292n;False;True;t1_gik29tr;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik2mda/;1610160230;2;True;False;anime;t5_2qh22;;0;[]; -[];;;not_martian;;;[];;;;text;t2_1korsrrj;False;False;[];;"Do you guys think the next AoT episode will break the record of the first episode of aot final season? . -I'm sooooo hyped for this one !!!";False;False;;;;1610124996;;False;{};gik2nx9;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik2nx9/;1610160256;50;True;False;anime;t5_2qh22;;0;[]; -[];;;Goldenfox299;;;[];;;;text;t2_21fpin3p;False;False;[];;So far i'm only watching sequels, and I'll try some of the most anticipated new shows like Horimiya and Mushoku Tensei but for the rest I will wait a bit, until the first 3 or 4 episodes drop and see what's worth trying.;False;False;;;;1610125049;;False;{};gik2s4d;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik2s4d/;1610160328;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Syokhan;;;[];;;;text;t2_b5zid;False;False;[];;"Yes. To make it simple and because you won't be able to escape the comparisons, it's yuri ""Roadside Picnic""/""STALKER"", but with Japanese urban legends and creepypasta. It's the ""mess with your head"" kind of horror rather than gore and jumps scares, so if you like that sort of stuff you could give it a try.";False;False;;;;1610125083;;1610125231.0;{};gik2uv1;False;t3_kt292n;False;False;t1_gik1u9b;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik2uv1/;1610160373;61;True;False;anime;t5_2qh22;;0;[]; -[];;;CyberpunkV2077;;;[];;;;text;t2_2r9n2te8;False;False;[];;People are overestimating it's popularity;False;False;;;;1610125097;;False;{};gik2w1d;False;t3_kt292n;False;False;t1_gijgeki;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik2w1d/;1610160392;23;False;False;anime;t5_2qh22;;0;[]; -[];;;Melbuf;;;[];;;;text;t2_j03jl;False;False;[];;"looks at nintendo - --_-";False;False;;;;1610125125;;False;{};gik2ya6;False;t3_kt3sy5;False;False;t1_gijyfsf;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gik2ya6/;1610160428;100;True;False;anime;t5_2qh22;;0;[]; -[];;;CyberpunkV2077;;;[];;;;text;t2_2r9n2te8;False;False;[];;And every other week until all episodes are released;False;False;;;;1610125128;;False;{};gik2yk1;False;t3_kt292n;False;False;t1_gijggpi;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik2yk1/;1610160434;62;False;False;anime;t5_2qh22;;0;[]; -[];;;Tribork;;;[];;;;text;t2_1hhrwkl7;False;False;[];;New cells at work yay;False;False;;;;1610125277;;False;{};gik3alf;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik3alf/;1610160639;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Melbuf;;;[];;;;text;t2_j03jl;False;False;[];;they seem to be going after fanart which should not be legal as its a derivative work;False;False;;;;1610125278;;False;{};gik3alv;False;t3_kt3sy5;False;False;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gik3alv/;1610160639;66;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;Comes back next week!;False;False;;;;1610125324;;False;{};gik3e8w;False;t3_kt292n;False;False;t1_gijyuov;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik3e8w/;1610160701;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WeNeedMoreYuri;;;[];;;;text;t2_6p8v5q22;False;False;[];;That anime ain't even airing...;False;False;;;;1610125337;;False;{};gik3fal;False;t3_kt292n;False;True;t1_gijzbam;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik3fal/;1610160720;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Random_Person_191;;;[];;;;text;t2_5liy6swh;False;False;[];;Cells At Work! - Show so nice, you say it twice;False;False;;;;1610125408;;False;{};gik3kuz;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik3kuz/;1610160818;1;True;False;anime;t5_2qh22;;0;[]; -[];;;_JerichoCross_;;;[];;;;text;t2_yscq9;False;False;[];;That's no a good way to thank their fans for the support;False;False;;;;1610125469;;False;{};gik3pqs;False;t3_kt3sy5;False;False;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gik3pqs/;1610160902;35;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;"For me ""That Day"" was enough for AOT to become a masterpiece.";False;False;;;;1610125491;;False;{};gik3ri9;False;t3_kt292n;False;False;t1_gijgdqy;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik3ri9/;1610160932;23;True;False;anime;t5_2qh22;;0;[]; -[];;;Mazen141;;;[];;;;text;t2_1gyk011d;False;False;[];;"For the Main series - -- Attack on titan S1 (25 Episodes) -- Attack on tian S2 (12 Episodes) -- Attack on titan S3 Part 1 (12 Episodes) -- Attack on titan S3 Part 2 (10 Episodes) -- Attack on titan finale season (16 episodes) - -The finale season is currently airing with 4 episodes out of the 16 being out and releasing an episode weekily, Please note that a part 2 or a movie contiuation of the finale season is expected since it won't be able to adapt all what's left in the manga - -For OVA's you got: - -- Attack on titan No regrets (2 Episodes, You should watch it after S1 or 2 imo) - -- Attack on titan S1 OVA (3 Episodes, should watcg after S1, 2 of them are basically filler but the third one ilse's journal I highly recommend watching) - -- Attack on titan Lost girls (3 Episodes, can watch anytime after S1, not really important to story but I'd recommend watching them anywat)";False;False;;;;1610125507;;False;{};gik3sqv;False;t3_kt49r3;False;True;t3_kt49r3;/r/anime/comments/kt49r3/no_spoilers_pls_attack_on_titan_question/gik3sqv/;1610160953;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610125523;;False;{};gik3u16;False;t3_kt3sy5;False;True;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gik3u16/;1610160976;-10;True;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;Attack on titan will remain on top for the rest of the season. What's coming is that good.;False;False;;;;1610125535;;False;{};gik3uxn;False;t3_kt292n;False;False;t1_gijde64;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik3uxn/;1610160990;14;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;"It will go - -AOT - -- - -Re:Zero - -- - -The rest";False;False;;;;1610125551;;False;{};gik3wam;False;t3_kt292n;False;False;t1_gijgxs7;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik3wam/;1610161012;36;True;False;anime;t5_2qh22;;0;[]; -[];;;ToastInSpace;;;[];;;;text;t2_ym4g8;False;False;[];;I’m shocked tbh, I love the LN but the 3DGC in that was just awful;False;False;;;;1610125561;;False;{};gik3x45;False;t3_kt292n;False;True;t1_gijfxta;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik3x45/;1610161026;0;True;False;anime;t5_2qh22;;0;[]; -[];;;rideaway1;;;[];;;;text;t2_852n1c;False;False;[];;thx but 2 questions what does imo mean and what about junior high(ik its not canon but when can i watch it);False;False;;;;1610125648;;False;{};gik441p;True;t3_kt49r3;False;True;t1_gik3sqv;/r/anime/comments/kt49r3/no_spoilers_pls_attack_on_titan_question/gik441p/;1610161142;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Meem_mEMe;;;[];;;;text;t2_2xxglqlb;False;False;[];;Do you think It is better than Rezero? Considering Rezero is my favorite isekai tied with konosuba, im pretty hyped about it;False;False;;;;1610125664;;False;{};gik45d0;False;t3_kt292n;False;False;t1_gijyxe6;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik45d0/;1610161165;7;True;False;anime;t5_2qh22;;0;[]; -[];;;GlassCannon642;;;[];;;;text;t2_3nez30e9;False;False;[];;Damn I thought Urasekai Picnic was gonna be a criminally underrated show but it looks like it's well-received so far;False;False;;;;1610125689;;False;{};gik479a;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik479a/;1610161198;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Lapiz_lasuli;;;[];;;;text;t2_ammk071;False;False;[];;[Visuals](https://youtu.be/kjyeCdd-dl8?t=385) for anyone confused on what is happening.;False;False;;;;1610125705;;False;{};gik48jw;False;t3_kt3sy5;False;False;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gik48jw/;1610161220;17;True;False;anime;t5_2qh22;;0;[]; -[];;;kvbt7;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kvbt;light;text;t2_446n5ucc;False;False;[];;People overrate this anime.;False;False;;;;1610125732;;False;{};gik4apw;False;t3_kt292n;False;True;t1_gijgeki;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik4apw/;1610161257;4;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;Dr. Stone should sit comfortably above the all the others (except AoT and Re:Zero);False;False;;;;1610125736;;False;{};gik4b21;False;t3_kt292n;False;True;t1_gijkrh3;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik4b21/;1610161264;4;True;False;anime;t5_2qh22;;0;[]; -[];;;fredthefishlord;;;[];;;;text;t2_ba5at3b;False;False;[];;It could've been around the level of ReZero if it weren't for it's issues. But because of them, it is certainly not as good as ReZero, though I would say the plot is definitely nearly as good as ReZero's.;False;False;;;;1610125783;;False;{};gik4evb;False;t3_kt292n;False;False;t1_gik45d0;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik4evb/;1610161329;10;True;False;anime;t5_2qh22;;0;[]; -[];;;FarrelMFajar;;;[];;;;text;t2_13bxx0;False;False;[];;The true battle of the decade is Cells at Work vs. its Black counterpart.;False;False;;;;1610125784;;False;{};gik4exn;False;t3_kt292n;False;False;t1_gijde64;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik4exn/;1610161330;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ToddYates;;;[];;;;text;t2_3yld5v9o;False;False;[];;Try Dr Stone;False;False;;;;1610125818;;False;{};gik4hnd;False;t3_kt292n;False;True;t1_gijjbuv;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik4hnd/;1610161377;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;Isn't Arc 5 only half as long as Arc 4? Which means you can get a half season, or maybe a 16 episode season from that. And I don't think Arc 6 is done yet;False;False;;;;1610125846;;False;{};gik4jsa;False;t3_kt292n;False;False;t1_gijg2ow;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik4jsa/;1610161412;8;True;False;anime;t5_2qh22;;0;[]; -[];;;FarrelMFajar;;;[];;;;text;t2_13bxx0;False;False;[];;I think it's because other non-sequels haven't started airing yet.;False;False;;;;1610125846;;False;{};gik4ju4;False;t3_kt292n;False;False;t1_gijfxta;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik4ju4/;1610161413;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Warrior7872;;;[];;;;text;t2_6160rqx1;False;False;[];;Tried that got bored as well watched most of season 1 dropped it;False;False;;;;1610125849;;False;{};gik4k0q;False;t3_kt292n;False;True;t1_gik4hnd;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik4k0q/;1610161417;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ToddYates;;;[];;;;text;t2_3yld5v9o;False;False;[];;Mothers Basement has no clue what he’s talking about;False;False;;;;1610125858;;False;{};gik4kpf;False;t3_kt292n;False;True;t1_gijorhi;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik4kpf/;1610161427;0;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;"It does make sense, though. Re:Zero's dialogue episodes have been falling short of AoT's dialogue episodes. So if AoT has an ""absolute hypefest"" next week and spikes in karma Re:Zero will need an even bigger spike. - -[vague spoilers](/s ""Although AoT's next episode is still basically all dialogue. I'm not sure if the cliffhanger hype will translate to karma the same way action does, like we'll probably see with episode 6."")";False;False;;;;1610125874;;1610126401.0;{};gik4lzq;False;t3_kt292n;False;False;t1_gijsuhq;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik4lzq/;1610161449;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ToddYates;;;[];;;;text;t2_3yld5v9o;False;False;[];;Oh dang, maybe this season ain’t for you than. That’s cool, maybe try some older stuff you have yet to watch.;False;False;;;;1610125903;;False;{};gik4obj;False;t3_kt292n;False;True;t1_gik4k0q;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik4obj/;1610161489;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Sillyvanya;;;[];;;;text;t2_16hyoe;False;False;[];;Man. I think I might cancel my Crunchyroll account. Shit's boring lately.;False;True;;comment score below threshold;;1610125908;;False;{};gik4opb;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik4opb/;1610161496;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;It’s the definition of isekai trash. Probably the worst out of all isekai and I’m one who’s like super heavy into the genre.;False;False;;;;1610125964;;False;{};gik4t55;False;t3_kt3hwl;False;True;t1_gijly6w;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gik4t55/;1610161574;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kvbt7;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kvbt;light;text;t2_446n5ucc;False;False;[];;Re:Zero barely beat Promised Neverland and people think it will compete with AoT? Dfkm.;False;False;;;;1610125970;;False;{};gik4tl4;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik4tl4/;1610161582;4;True;False;anime;t5_2qh22;;0;[]; -[];;;drybones2015;;;[];;;;text;t2_g9k7t;False;False;[];;"One Piece youtubers: -""Haha I'm in danger!""";False;False;;;;1610125999;;False;{};gik4vxd;False;t3_kt3sy5;False;False;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gik4vxd/;1610161620;26;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;I wish we had more of legend of legendary heroes. Like we has done and then it ended and the manga isn’t anywhere near the anime and I haven’t looked for the LN yet;False;False;;;;1610126016;;False;{};gik4x8z;False;t3_kt3hwl;False;True;t1_gijlbr0;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gik4x8z/;1610161644;2;True;False;anime;t5_2qh22;;0;[]; -[];;;GrimCreeperyt;;;[];;;;text;t2_7gxy9uca;False;False;[];;Where tf is aot;False;False;;;;1610126031;;False;{};gik4ygd;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik4ygd/;1610161665;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;If you’re into manga, look up reincarnated as a sword. It’s pretty good and I wouldn’t be surprised if it got an adaptation sometime.;False;False;;;;1610126055;;False;{};gik50dl;False;t3_kt3hwl;False;True;t1_gijls3r;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gik50dl/;1610161700;2;True;False;anime;t5_2qh22;;0;[]; -[];;;coolcollin007;;;[];;;;text;t2_13nyxr;False;False;[];;"Next weeks re zero episode will be the start of what everyone has been waiting for. The dialogue episodes are over. - -Oh and AOT will be lit as hell too";False;False;;;;1610126060;;False;{};gik50ua;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik50ua/;1610161708;4;True;False;anime;t5_2qh22;;0;[]; -[];;;PerroXX;;;[];;;;text;t2_byqd0;False;False;[];;Is quite shocking that the Quints is so near in popularity than Re:Zero and TPN, but i'm really hyped about those 3;False;False;;;;1610126131;;False;{};gik56kq;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik56kq/;1610161806;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RyanCreamer202;;;[];;;;text;t2_61v4osnh;False;False;[];;My fav right now is the starter town one. I just love the super over powered character that super oblivious to the fact that he is overpowered. Its hilarious to see everyone reaction to it;False;False;;;;1610126195;;False;{};gik5bqb;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik5bqb/;1610161894;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Jujutsu Kaisen, Horimiya, Mushoku Tensei;False;False;;;;1610126242;;False;{};gik5fjc;False;t3_kt292n;False;False;t1_gijelco;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik5fjc/;1610161956;28;True;False;anime;t5_2qh22;;0;[]; -[];;;siegure9;;;[];;;;text;t2_476ned2q;False;False;[];;Do you know why aot didn’t have an episode this week?;False;False;;;;1610126292;;False;{};gik5jm5;False;t3_kt292n;False;True;t1_gijdqbs;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik5jm5/;1610162022;1;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;">It does make sense, though. Re:Zero's dialogue episodes have been falling short of AoT's dialogue episodes. So if AoT has an ""absolute hypefest"" next week and spikes in karma Re:Zero will need an even bigger spike. - -AOT being more popular than ReZero? wow. - -Not the point i was making, the above user is mentioning both ReZero's Dialogue based and hype episodes even though they can both at times. - -We still don't know how ReZero's S2 part 2 hype episodes will do against AOT's dialogue-based. - -if even that can't come close to overtaking AOT's average karma, then i would agree with the 'barely competing' claim.";False;False;;;;1610126293;;1610129639.0;{};gik5jq4;False;t3_kt292n;False;True;t1_gik4lzq;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik5jq4/;1610162024;2;True;False;anime;t5_2qh22;;0;[]; -[];;;coolcollin007;;;[];;;;text;t2_13nyxr;False;False;[];;Oh boy you are gonna be blown away with what’s to come lol;False;False;;;;1610126309;;False;{};gik5l12;False;t3_kt292n;False;True;t1_gijgukn;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik5l12/;1610162046;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Zercomnexus;;;[];;;;text;t2_8g4me;False;False;[];;never heard of any of these. well except the original cells at work;False;False;;;;1610126432;;False;{};gik5uw9;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik5uw9/;1610162205;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;coolcollin007;;;[];;;;text;t2_13nyxr;False;False;[];;Re:Zero just finished up the dialogue heavy episodes, it’s only gonna get better next week. Trust me 😁;False;False;;;;1610126456;;False;{};gik5wtj;False;t3_kt292n;False;True;t1_gijqjnq;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik5wtj/;1610162237;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;You're absolutely forgetting the war in the stone world. JJK won't beat Dr. Stone. Not even 1 millimeter;False;True;;comment score below threshold;;1610126530;;False;{};gik62up;False;t3_kt292n;False;True;t1_gijpyiy;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik62up/;1610162334;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;coolcollin007;;;[];;;;text;t2_13nyxr;False;False;[];;They needed to get all the talking finished for next weeks episode. Some stuff was cut so that they could achieve this;False;False;;;;1610126585;;False;{};gik67ct;False;t3_kt292n;False;True;t1_gijwued;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik67ct/;1610162411;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Electric_Bagpipes;;;[];;;;text;t2_8gvtqvq4;False;False;[];;TPN WOOHOOO!!;False;False;;;;1610126607;;False;{};gik695t;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik695t/;1610162440;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Nufulini;;;[];;;;text;t2_12lzy7;False;False;[];;I think 120-122 and 130-131 are better but nevertheless the next 3 episodes will be basement level of hype;False;False;;;;1610126625;;False;{};gik6alr;False;t3_kt292n;False;False;t1_gijy0ur;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik6alr/;1610162463;33;True;False;anime;t5_2qh22;;0;[]; -[];;;mattwrld25;;;[];;;;text;t2_7apbhygb;False;False;[];;Agreed;False;False;;;;1610126632;;False;{};gik6b6x;False;t3_kt292n;False;False;t1_gik3ri9;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik6b6x/;1610162474;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Lets see what happens.;False;False;;;;1610126633;;False;{};gik6b8f;False;t3_kt292n;False;False;t1_gik62up;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik6b8f/;1610162474;8;True;False;anime;t5_2qh22;;0;[]; -[];;;coolcollin007;;;[];;;;text;t2_13nyxr;False;False;[];;"Redo of healer will be the final blow to Twitter and cause the apocalypse. - -I can’t wait lol";False;False;;;;1610126657;;False;{};gik6da7;False;t3_kt292n;False;True;t1_gijzv1d;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik6da7/;1610162518;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thatdude173;;;[];;;;text;t2_11vyoed5;False;False;[];;2021 is gonna be the year of anime sequels;False;False;;;;1610126671;;False;{};gik6eer;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik6eer/;1610162538;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Phantomskyler;;;[];;;;text;t2_rx0g8;False;False;[];;"I can already tell it will get up there based off of shitposters & edgelords all clamoring to piss people off about it, then it'll pitter out after half of them get bored and move on and the other half realize it isn't actually good. Lol";False;False;;;;1610126674;;False;{};gik6eoi;False;t3_kt292n;False;False;t1_gijuriw;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik6eoi/;1610162543;22;True;False;anime;t5_2qh22;;0;[]; -[];;;coolcollin007;;;[];;;;text;t2_13nyxr;False;False;[];;Next Episode, if done correctly could very well break the Internet;False;False;;;;1610126690;;False;{};gik6fzg;False;t3_kt292n;False;False;t1_gik2nx9;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik6fzg/;1610162568;50;True;False;anime;t5_2qh22;;0;[]; -[];;;Pollsmor;;;[];;;;text;t2_pvhag;False;False;[];;Arc 6 ended when volume 25 of the LN came out on the 25th of December, 2020.;False;False;;;;1610126752;;False;{};gik6l0i;False;t3_kt292n;False;False;t1_gik4jsa;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik6l0i/;1610162656;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;Yeah I like the ED this season but I can't help but think it would be out of place to play it at the end of ch122 lol;False;False;;;;1610126792;;False;{};gik6oc2;False;t3_kt292n;False;False;t1_gijrv5j;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik6oc2/;1610162709;14;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;Well, S2P1 wasn't entirely dialogue, there were still episodes with action or shocking moments that barely did better than the last 3 AoT episodes, even though they did noticeably better than Re:Zero's baseline. Granted that was 3-6 months ago, so we'll see.;False;False;;;;1610126802;;False;{};gik6p4m;False;t3_kt292n;False;False;t1_gik5jq4;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik6p4m/;1610162724;4;True;False;anime;t5_2qh22;;0;[]; -[];;;AHappyMango;;;[];;;;text;t2_bbd30;False;False;[];;"Wait, Beastars aired!? - -Edit: and so did the promised never land!? - -Edit2: ah, Japan only.... I can wait";False;False;;;;1610126805;;False;{};gik6pcr;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik6pcr/;1610162727;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cold_Saber;;;[];;;;text;t2_3oclhqjh;False;False;[];;They're removing advertising and appreciation of their shows, that's so dumb. It's crazy how we're in 2021 and companies are still so out of touch with their consumers.;False;False;;;;1610126998;;False;{};gik75d9;False;t3_kt3sy5;False;False;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gik75d9/;1610163001;20;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610127043;;False;{};gik791k;False;t3_kt3sy5;False;True;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gik791k/;1610163059;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MABfan11;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MABfan11;light;text;t2_xdlmc;False;False;[];;"Quintessential Quintuplets in #3 is well deserved - -Re:Zero on top, as expected";False;False;;;;1610127059;;False;{};gik7aex;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik7aex/;1610163086;14;True;False;anime;t5_2qh22;;0;[]; -[];;;dark77638;;;[];;;;text;t2_14cb1i;False;False;[];;Table scene and ending with forest scene;False;False;;;;1610127135;;False;{};gik7gmr;False;t3_kt292n;False;False;t1_gik2j1i;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik7gmr/;1610163188;11;True;False;anime;t5_2qh22;;0;[]; -[];;;MABfan11;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MABfan11;light;text;t2_xdlmc;False;False;[];;"> I can't wait another 4 years - -hey, that's another thing Re:Zero and Attack on Titan shares, 4 years for season 2";False;False;;;;1610127137;;False;{};gik7grk;False;t3_kt292n;False;False;t1_gijfhzk;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik7grk/;1610163190;12;True;False;anime;t5_2qh22;;0;[]; -[];;;NerevarineVivec;;;[];;;;text;t2_irfln;False;False;[];;Probably some covid shenanigans;False;False;;;;1610127147;;False;{};gik7hmc;False;t3_kt292n;False;False;t1_gijm5vm;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik7hmc/;1610163204;7;True;False;anime;t5_2qh22;;0;[]; -[];;;SeyiDALegend;;;[];;;;text;t2_n7n3u;False;False;[];;As someone who enjoyed the second half of ReZero S1 but felt the world building lacking, is season 2 worth getting into? All I remember is Subaru going through hell so wondered what else is there to look forward to?;False;False;;;;1610127211;;False;{};gik7mwb;False;t3_kt292n;False;True;t1_gijdqbs;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik7mwb/;1610163294;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kurosaki1990;;MAL;[];;http://myanimelist.net/animelist/afroboy;dark;text;t2_fuh2t;False;False;[];;Is Re:Zero a weeb anime or something? i just got impressed how popular is here, i couldn't see what exactly is special about it. it look very generic plus those stupid waifu shit and their dresses just put me off.;False;True;;comment score below threshold;;1610127408;;False;{};gik82yq;False;t3_kt292n;False;True;t1_gijdqbs;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik82yq/;1610163591;-9;True;False;anime;t5_2qh22;;0;[]; -[];;;XxRapidfire209Xx;;;[];;;;text;t2_703o57fd;False;False;[];;Wait when does season two come out;False;False;;;;1610127430;;False;{};gik84tp;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik84tp/;1610163628;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MABfan11;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MABfan11;light;text;t2_xdlmc;False;False;[];;episode 17 and 23 of season 1 is underrated, though it's hard to beat any of the episodes from 13 to 18, they are amazing;False;False;;;;1610127436;;False;{};gik859t;False;t3_kt292n;False;True;t1_gijh4r7;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik859t/;1610163636;3;True;False;anime;t5_2qh22;;0;[]; -[];;;eliteteamob;;;[];;;;text;t2_ekami;False;False;[];;They took a break to let Re:Zero have #1 for one week :);False;False;;;;1610127439;;False;{};gik85mr;False;t3_kt292n;False;False;t1_gijggpi;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik85mr/;1610163642;41;True;False;anime;t5_2qh22;;0;[]; -[];;;stevethebandit;;;[];;;;text;t2_8zmld;False;False;[];;Step aside, Yurucamp's meteoric rise has come;False;False;;;;1610127467;;False;{};gik87vf;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik87vf/;1610163681;3;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;"It was less interesting than a lot of Part 1 episodes for me, though expectations and probably needing a refresher on part 1 (particularly regarding Ryuzu) may have played a part in that. Weird of you to just assume OP dislikes Emilia. - -Edit: just saw their other comment where they mentioned her being a weak point of S2. Still, it sounds like the Emilia part of the episode was the 2nd most impactful for them, so a dislike for Emilia is clearly not driving their evaluation.";False;False;;;;1610127529;;1610127967.0;{};gik8d2u;False;t3_kt292n;False;False;t1_gik1zwl;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik8d2u/;1610163774;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Terutz;;;[];;;;text;t2_44rkgba5;False;False;[];;Aot/Snk: Kawaiiiii *boss sound intensives*;False;False;;;;1610127558;;False;{};gik8fkk;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik8fkk/;1610163816;6;True;False;anime;t5_2qh22;;0;[]; -[];;;vawtots;;;[];;;;text;t2_2gtzx9vv;False;False;[];;New Years;False;False;;;;1610127608;;False;{};gik8jsl;False;t3_kt292n;False;False;t1_gik5jm5;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik8jsl/;1610163885;8;True;False;anime;t5_2qh22;;0;[]; -[];;;itachi099;;;[];;;;text;t2_1nys6a73;False;False;[];;They gave the staff off for New year's it's really common a lot of anime did it this time too black clover jujutsu kaisen boruto attack on Titan;False;False;;;;1610127636;;False;{};gik8m6u;False;t3_kt292n;False;False;t1_gik5jm5;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik8m6u/;1610163929;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Arealsavage777;;;[];;;;text;t2_5aa7o5pt;False;False;[];;No one is talking about Quints ? 5 hot simblings come on ! Iam so glad our girls are back;False;False;;;;1610127664;;False;{};gik8oeu;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik8oeu/;1610163967;12;True;False;anime;t5_2qh22;;0;[]; -[];;;FloofSquad;;;[];;;;text;t2_8yfnc745;False;False;[];;I'm not finding Promised Neverland or the Dungeon Kid animes on Crunchyroll, are they not on there?;False;False;;;;1610127683;;False;{};gik8q1o;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik8q1o/;1610163997;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Turquoise2_;;;[];;;;text;t2_n6dvp;False;False;[];;they are my #1 and #2 anime. every week i feel like i'm just going to melt into a mess of pure excitement and the only thing keeping me together is that i actually need to *watch* these shows.;False;False;;;;1610127708;;False;{};gik8s4u;False;t3_kt292n;False;False;t1_gijgoa2;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik8s4u/;1610164033;15;True;False;anime;t5_2qh22;;0;[]; -[];;;iwantapie76;;;[];;;;text;t2_2i6fs2ib;False;False;[];;i'm surprised beastars is on the list;False;False;;;;1610127718;;False;{};gik8szc;False;t3_kt292n;False;False;t1_gijyzor;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik8szc/;1610164048;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cin_anime;;;[];;;;text;t2_93wi75rs;False;False;[];;I have watched number 2 and 4. Any other ones I should be watching?;False;False;;;;1610127729;;False;{};gik8tvj;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik8tvj/;1610164063;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;"It seems to the best isekai like Love Hina is the best harem. Both genres are so popular yet so challenging to find products that I like. It's not the writing, it's the wish fulfillment/power fantasy aspect. At least harem is basically softcore porn/eye candy and I can fap to it while ignoring the plot completely. - -Making me masturbate is honest work, but selling me a self-insert character does not even give me a chubby.";False;False;;;;1610127751;;False;{};gik8vp3;False;t3_kt292n;False;True;t1_gijyxe6;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik8vp3/;1610164092;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;Ugh, if they don't reverse this soon I'm cancelling my Viz SJ sub. Sure it's only $2/month, but I don't want a cent of that going to Shueisha.;False;False;;;;1610127754;;False;{};gik8vyn;False;t3_kt3sy5;False;False;t1_gijmyg2;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gik8vyn/;1610164097;5;True;False;anime;t5_2qh22;;0;[]; -[];;;LordChickenCurry;;;[];;;;text;t2_14hpcu;False;False;[];;that “forest scene” is something anime watchers are not ready for...;False;False;;;;1610127851;;False;{};gik945t;False;t3_kt292n;False;False;t1_gik7gmr;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik945t/;1610164238;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Cin_anime;;;[];;;;text;t2_93wi75rs;False;False;[];;">Horimiya - -I am grateful for you bringing up Horimiya I didn't know it was getting an anime";False;False;;;;1610127856;;False;{};gik94lg;False;t3_kt292n;False;False;t1_gijeqih;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik94lg/;1610164246;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Tbf with AoT there's no way you don't expect something *interesting* to go down on Sunday after last episode.;False;False;;;;1610128016;;False;{};gik9i1w;False;t3_kt292n;False;False;t1_gijj7hk;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik9i1w/;1610164518;17;True;False;anime;t5_2qh22;;0;[]; -[];;;Erufailon4;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Erufailon4;light;text;t2_rtyakcn;False;False;[];;Probably a bot.;False;False;;;;1610128020;;False;{};gik9iap;False;t3_kt3sy5;False;False;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gik9iap/;1610164521;14;True;False;anime;t5_2qh22;;0;[]; -[];;;b4k6;;;[];;;;text;t2_62u8w0qu;False;False;[];;Re:zero is fun i guess but i get a bit irritated that like at least 7% (or more) is just filled with subaru historically crying.;False;False;;;;1610128028;;False;{};gik9j0o;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik9j0o/;1610164536;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;MeAnIntellectual1;;;[];;;;text;t2_4hoihisd;False;False;[];;Ah ok. I'm not caught up right now;False;False;;;;1610128039;;False;{};gik9jzf;False;t3_kt292n;False;True;t1_gik6l0i;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik9jzf/;1610164554;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"Check out *Isekai Ojisan, Kage no Jitsuryokusha ni Naritakute, Yakuza Reincarnation* and *Saihate no Paladin.* Some of my favorite isekai. Half of them are unlikely to get adaptations, unfortunately. - -[](#shatteredsaten)";False;False;;;;1610128100;;False;{};gik9p3n;False;t3_kt292n;False;False;t1_gijz8j5;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik9p3n/;1610164642;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Silent_Shadow05;;;[];;;;text;t2_83jqhuf4;False;False;[];;Added to my PTR list. Thanks!;False;False;;;;1610128171;;False;{};gik9v3v;False;t3_kt292n;False;True;t1_gik9p3n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gik9v3v/;1610164742;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"Now the issue is that the season is so stacked, especially on Thursdays. - -[](#nobully)";False;False;;;;1610128247;;False;{};gika1ie;False;t3_kt292n;False;False;t1_gijh3gv;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gika1ie/;1610164849;19;True;False;anime;t5_2qh22;;0;[]; -[];;;Mad_Scientist_Senku;;;[];;;;text;t2_3a2in6vv;False;False;[];;Re:Zero Back on top baby!;False;False;;;;1610128300;;False;{};gika5xm;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gika5xm/;1610164927;7;True;False;anime;t5_2qh22;;0;[]; -[];;;J3wFro8332;;;[];;;;text;t2_55992ei;False;False;[];;The slug fest between AoT and Re:Zero is gonna be interesting. Having caught up on the source material for both, it'll be interesting what happens going forward as these both are entering some of the most memorable sections of their respective stories;False;False;;;;1610128311;;False;{};gika6u7;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gika6u7/;1610164943;8;True;False;anime;t5_2qh22;;0;[]; -[];;;ZackDB201;;;[];;;;text;t2_1sxfbwvn;False;False;[];;nah not really it was the best when the chapter came out but some chapters later on are way better, but its still top 5 chapter definitely better than anything from the previous seasons;False;False;;;;1610128315;;False;{};gika75z;False;t3_kt292n;False;False;t1_gijy0ur;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gika75z/;1610164949;14;True;False;anime;t5_2qh22;;0;[]; -[];;;W33B520;;;[];;;;text;t2_5yrtpqbi;False;False;[];;Didn't they copyright strike one of their artist?;False;False;;;;1610128316;;False;{};gika7b1;False;t3_kt3sy5;False;False;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gika7b1/;1610164952;19;True;False;anime;t5_2qh22;;0;[]; -[];;;deedman1024;;;[];;;;text;t2_34pyrrsy;False;False;[];;SPIDER ANIME;False;False;;;;1610128317;;False;{};gika7d7;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gika7d7/;1610164953;1;True;False;anime;t5_2qh22;;0;[]; -"[{'award_sub_type': 'GLOBAL', 'award_type': 'global', 'awardings_required_to_grant_benefits': None, 'coin_price': 125, 'coin_reward': 0, 'count': 1, 'days_of_drip_extension': 0, 'days_of_premium': 0, 'description': 'When you come across a feel-good thing.', 'end_date': None, 'giver_coin_reward': None, 'icon_format': None, 'icon_height': 2048, 'icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'icon_width': 2048, 'id': 'award_5f123e3d-4f48-42f4-9c11-e98b566d5897', 'is_enabled': True, 'is_new': False, 'name': 'Wholesome', 'penny_donate': None, 'penny_price': None, 'resized_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'resized_static_icons': [{'height': 16, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16&height=16&auto=webp&s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0', 'width': 16}, {'height': 32, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32&height=32&auto=webp&s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef', 'width': 32}, {'height': 48, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48&height=48&auto=webp&s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63', 'width': 48}, {'height': 64, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64&height=64&auto=webp&s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb', 'width': 64}, {'height': 128, 'url': 'https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128&height=128&auto=webp&s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b', 'width': 128}], 'start_date': None, 'static_icon_height': 2048, 'static_icon_url': 'https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png', 'static_icon_width': 2048, 'subreddit_coin_reward': 0, 'subreddit_id': None, 'tiers_by_required_awardings': None}]";;;BazWorkAcntPlsBePG;;;[];;;;text;t2_3ky6kku8;False;False;[];;"Charts are temporarily; Miku is forever";False;False;;;;1610128323;;False;{};gika7su;False;t3_kt292n;False;False;t1_gijk6hl;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gika7su/;1610164961;73;True;False;anime;t5_2qh22;;1;[]; -[];;;STODD3;;;[];;;;text;t2_3s3bhn0w;False;False;[];;"Season 2 -Season 2 -Season 2 -Season 2";False;False;;;;1610128353;;False;{};gikaacu;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikaacu/;1610165005;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ineedsomehelpers;;;[];;;;text;t2_4970gmqg;False;False;[];;Wait where is the second season of beastars at? I thought it was gonna be on Netflix now.;False;False;;;;1610128405;;False;{};gikaens;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikaens/;1610165078;2;True;False;anime;t5_2qh22;;0;[]; -[];;;CanIstealYourDog;;;[];;;;text;t2_8rsiggx9;False;False;[];;"Jjk>TPN possible too";False;False;;;;1610128475;;False;{};gikaklr;False;t3_kt292n;False;False;t1_gijoto5;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikaklr/;1610165184;7;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;Extending runtime to 28 minutes would add more than cutting OP/ED, so I feel like that would still be possible, though of course not expected.;False;False;;;;1610128515;;False;{};gikanxm;False;t3_kt292n;False;True;t1_gijii7t;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikanxm/;1610165239;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;DMCAing their own artists is what makes me think this shit will be reversed. If it doesn’t then fucking hell I’m lost for words, but there’s a good chance that I’ll cancel my shonen jump app subscription then;False;False;;;;1610128569;;False;{};gikashf;False;t3_kt3sy5;False;False;t1_gijmyg2;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gikashf/;1610165312;45;True;False;anime;t5_2qh22;;0;[]; -[];;;MABfan11;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MABfan11;light;text;t2_xdlmc;False;False;[];;"> Didn't expected it to manage 4K+ karma here on reddit honestly, I underestimated it - -the first season was really loved on reddit, [it even beat A Place Further Than the Universe quite a few times](https://animekarmalist.com/2018/Winter/1) (A Place Further Than the Universe is really underrated, more people need to watch it)";False;False;;;;1610128580;;False;{};gikatfs;False;t3_kt292n;False;False;t1_gijjd5n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikatfs/;1610165329;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610128586;;False;{};gikatxr;False;t3_kt292n;False;True;t1_gikaens;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikatxr/;1610165337;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ZackDB201;;;[];;;;text;t2_1sxfbwvn;False;False;[];;it didn't have an episode this week;False;False;;;;1610128605;;False;{};gikaviw;False;t3_kt292n;False;False;t1_gik4ygd;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikaviw/;1610165363;9;True;False;anime;t5_2qh22;;0;[]; -[];;;bitchiestofallasses;;;[];;;;text;t2_7h2fpedf;False;False;[];;I believe that the promised neverland is on Funimation;False;False;;;;1610128640;;False;{};gikaygl;False;t3_kt292n;False;True;t1_gik8q1o;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikaygl/;1610165412;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bitchiestofallasses;;;[];;;;text;t2_7h2fpedf;False;False;[];;YESSIR;False;False;;;;1610128652;;False;{};gikazhc;False;t3_kt292n;False;True;t1_gik87vf;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikazhc/;1610165429;1;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;They have a time slot of only 25 minutes on NHK, they can't extend it as it'll affect the time slot of other shows.;False;False;;;;1610128665;;False;{};gikb0kj;False;t3_kt292n;False;False;t1_gikanxm;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikb0kj/;1610165448;5;True;False;anime;t5_2qh22;;0;[]; -[];;;MABfan11;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MABfan11;light;text;t2_xdlmc;False;False;[];;[ahem](https://comicbook.com/anime/news/crunchyroll-down-not-responding-anime-july-2020/);False;False;;;;1610128672;;False;{};gikb15n;False;t3_kt292n;False;False;t1_gijyc9b;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikb15n/;1610165458;12;True;False;anime;t5_2qh22;;0;[]; -[];;;bitchiestofallasses;;;[];;;;text;t2_7h2fpedf;False;False;[];;Ngl quints’ s2e1 was a lot better than what I expected, better than season 1 as well;False;False;;;;1610128725;;False;{};gikb5kb;False;t3_kt292n;False;True;t1_gik56kq;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikb5kb/;1610165534;3;True;False;anime;t5_2qh22;;0;[]; -[];;;bitchiestofallasses;;;[];;;;text;t2_7h2fpedf;False;False;[];;It didn’t air this week;False;False;;;;1610128741;;False;{};gikb6zg;False;t3_kt292n;False;False;t1_gik4ygd;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikb6zg/;1610165556;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;Nah I'd say the peak of the manga is 99-100 in terms of character development (which hits hardest emotionally for me). Plotwise of course there are even worse mindfucks in 121-122 or later.;False;False;;;;1610128778;;False;{};gikba02;False;t3_kt292n;False;True;t1_gik26zm;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikba02/;1610165605;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Kuyosaki;;AP;[];;;dark;text;t2_then8;False;False;[];;"I read mango but remind me please what the ""forest scene"" is";False;False;;;;1610128811;;False;{};gikbcuy;False;t3_kt292n;False;True;t1_gik945t;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikbcuy/;1610165654;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;"Indeed, they put a lot of care into that adaptation. After all it's one of their biggest hits since Steins;Gate. It would be wise for them to capitalize on the momentum with seasons close to each other rather than a long hiatus.";False;False;;;;1610128874;;False;{};gikbi1f;False;t3_kt292n;False;False;t1_gijigzs;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikbi1f/;1610165741;28;True;False;anime;t5_2qh22;;0;[]; -[];;;D3ATHSTR0KE_;;;[];;;;text;t2_3tbb9f2v;False;False;[];;Wasn’t A-1 responsible for the subpar Fairy Tail and Persona 5 animation;False;False;;;;1610128895;;False;{};gikbjo6;False;t3_kt292n;False;False;t1_gijko5b;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikbjo6/;1610165767;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Mundology;;;[];;;;text;t2_blfku;False;True;[];;">Looks at Mappa Shows - -*On that day, seasonal newcomers will receive a grim reminder* - -[](#deadlystare)";False;False;;;;1610128989;;False;{};gikbrcz;False;t3_kt292n;False;False;t1_gijlk7l;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikbrcz/;1610165889;47;True;False;anime;t5_2qh22;;0;[]; -[];;;hydraxiv;;;[];;;;text;t2_5wvchq00;False;False;[];;I should really watch Promised Neverland. I hear its amazing;False;False;;;;1610129028;;False;{};gikbuhf;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikbuhf/;1610165938;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DatBoiZz;;;[];;;;text;t2_28yrt2we;False;False;[];;True yuru camp is pog and wholesome af;False;False;;;;1610129053;;False;{};gikbwlj;False;t3_kt37nm;False;True;t1_gijn9ps;/r/anime/comments/kt37nm/any_good_short_ones/gikbwlj/;1610165974;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Hungry_chan;;;[];;;;text;t2_9jwfsxkz;False;False;[];;Terror in resonance, given, the promised neverland, no game no life;False;False;;;;1610129060;;False;{};gikbx6t;False;t3_kt37nm;False;True;t3_kt37nm;/r/anime/comments/kt37nm/any_good_short_ones/gikbx6t/;1610165983;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610129101;;False;{};gikc0iz;False;t3_kt292n;False;True;t1_gikbcuy;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikc0iz/;1610166037;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheFlyingButter;;;[];;;;text;t2_j5kl6;False;False;[];;It is on Japanese Netflix, but it's not legally available anywhere outside of Japan;False;False;;;;1610129112;;False;{};gikc1eg;False;t3_kt292n;False;False;t1_gikaens;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikc1eg/;1610166052;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ineedsomehelpers;;;[];;;;text;t2_4970gmqg;False;False;[];;Ouch guess I gotta wait, kinda prefer the dub anyway IMO maybe it’s just because bin diskin is funni;False;False;;;;1610129163;;False;{};gikc5kz;False;t3_kt292n;False;True;t1_gikc1eg;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikc5kz/;1610166124;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;Yeah, ED aside. I hope ‘call of silence’ ost with some re-arrange will be used for that scene;False;False;;;;1610129180;;False;{};gikc6wc;False;t3_kt292n;False;False;t1_gik6oc2;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikc6wc/;1610166145;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Xmay18;;;[];;;;text;t2_4vy5a25n;False;False;[];;Yo this season (winter 2021) is fire;False;False;;;;1610129192;;False;{};gikc7zg;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikc7zg/;1610166164;1;True;False;anime;t5_2qh22;;0;[]; -[];;;SurealGod;;;[];;;;text;t2_g60ag;False;False;[];;Oh god. I'm currently only following those two shows. If you're right, it looks like I'm going to have a great time;False;False;;;;1610129245;;False;{};gikcc3n;False;t3_kt292n;False;False;t1_gijgoa2;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikcc3n/;1610166232;8;True;False;anime;t5_2qh22;;0;[]; -[];;;8andahalfby11;;MAL;[];;https://myanimelist.net/animelist/thereIwasnt;dark;text;t2_kvyfg;False;False;[];;"Monday: Otherside Picnic - -Wednesday: Re: Zero - -Thursday: Higurashi - -My own personal constraints let me pick up one more midseason if I feel like it.";False;False;;;;1610129245;;False;{};gikcc4k;False;t3_kt3eie;False;True;t3_kt3eie;/r/anime/comments/kt3eie/what_is_your_daily_watching_schedule_for_this/gikcc4k/;1610166233;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Voi69;;;[];;;;text;t2_lcnz6;False;False;[];;AoT will keep moving forward until all episodes are released;False;False;;;;1610129275;;False;{};gikcek8;False;t3_kt292n;False;False;t1_gik2yk1;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikcek8/;1610166273;79;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;TPN S1 was one of the best seasons of anime I have ever seen. It deserves the mass fandom.. for now.;False;False;;;;1610129278;;False;{};gikceuw;False;t3_kt292n;False;False;t1_gijkwwy;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikceuw/;1610166277;20;True;False;anime;t5_2qh22;;0;[]; -[];;;raymondl942;;;[];;;;text;t2_jhwws;False;False;[];;This season is stacked;False;False;;;;1610129307;;False;{};gikch5x;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikch5x/;1610166314;3;True;False;anime;t5_2qh22;;0;[]; -[];;;zuuu34;;;[];;;;text;t2_8yg2pslu;False;False;[];;I wish kaguya is here. Feels bad man;False;False;;;;1610129336;;False;{};gikcjnr;False;t3_kt292n;False;True;t1_gijgxs7;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikcjnr/;1610166353;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Voi69;;;[];;;;text;t2_lcnz6;False;False;[];;"[Spoiler source](/s ""Levi vs Zeke"")";False;False;;;;1610129341;;False;{};gikck2k;False;t3_kt292n;False;True;t1_gikbcuy;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikck2k/;1610166359;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DatBoiZz;;;[];;;;text;t2_28yrt2we;False;False;[];;Cowboy bebop, akudama drive, talentless nana, vinland saga, dororo, angel beats, kakushigoto, somali and the forest spirit, dr stone, promised neverland. The last two is cause s2 for it drops next week or already drop this week.;False;False;;;;1610129341;;False;{};gikck2l;False;t3_kt37nm;False;True;t3_kt37nm;/r/anime/comments/kt37nm/any_good_short_ones/gikck2l/;1610166359;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Marcus-Kobe;;;[];;;;text;t2_30287jwj;False;True;[];;Wait for Mushoku Tensei. Top 1 every week;False;False;;;;1610129352;;False;{};gikckzm;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikckzm/;1610166375;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;HeroVonZero;;;[];;;;text;t2_ofbiw;False;False;[];;Is 8 on crunchy? Havent heard of it yet;False;False;;;;1610129411;;False;{};gikcpp1;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikcpp1/;1610166453;1;True;False;anime;t5_2qh22;;0;[]; -[];;;I-ce-SCREAM;;;[];;;;text;t2_8r3t4wm8;False;False;[];;Well, people in this sub tend to like the show which are more animeish (I don't know any better word), so isekai and romcom are discussed more, I personally don't like isekai shows but you could call me a romcom trash;False;True;;comment score below threshold;;1610129441;;False;{};gikcs2m;False;t3_kt292n;False;True;t1_gik82yq;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikcs2m/;1610166492;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;HeroVonZero;;;[];;;;text;t2_ofbiw;False;False;[];;Do you have any idea how much rem blew up the anime industry?;False;False;;;;1610129458;;False;{};gikcth1;False;t3_kt292n;False;False;t1_gijigzs;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikcth1/;1610166515;20;True;False;anime;t5_2qh22;;0;[]; -[];;;C4eaglem;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/c4eaglem;light;text;t2_umiazaz;False;False;[];;Can we please stop releasing episodes one at a time!!;False;False;;;;1610129511;;False;{};gikcxok;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikcxok/;1610166584;1;True;False;anime;t5_2qh22;;0;[]; -[];;;new_shinigami;;;[];;;;text;t2_y2o79n;False;False;[];;AoT, Re Zero, and The Promised Neverland, what a start of the year for Anime fans. These are best series that shock audience in every ep with unexpected events.;False;False;;;;1610129515;;False;{};gikcy20;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikcy20/;1610166590;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;And 11-12.;False;False;;;;1610129522;;False;{};gikcymr;False;t3_kt292n;False;True;t1_gijin7f;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikcymr/;1610166599;3;True;False;anime;t5_2qh22;;0;[]; -[];;;HeroVonZero;;;[];;;;text;t2_ofbiw;False;False;[];;And arc 6 is also the longest so far iirc?;False;False;;;;1610129523;;False;{};gikcypn;False;t3_kt292n;False;False;t1_gik6l0i;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikcypn/;1610166601;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Deadbox_88;;;[];;;;text;t2_4ci7coi7;False;False;[];;Wait I thought Code Black *was* season two of Cells At Work? Did I miss something?;False;False;;;;1610129560;;False;{};gikd1tj;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikd1tj/;1610166652;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cool-E;;;[];;;;text;t2_13jon4;False;False;[];;Asian companies are Uber conservative for whatever reason and often act against their best interests when it comes to internet interactions;False;False;;;;1610129587;;False;{};gikd44p;False;t3_kt3sy5;False;False;t1_gik2ckf;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gikd44p/;1610166690;63;True;False;anime;t5_2qh22;;0;[]; -[];;;DatBoiZz;;;[];;;;text;t2_28yrt2we;False;False;[];;Rip classroom of the elite;False;False;;;;1610129603;;False;{};gikd5j1;False;t3_kt2nsp;False;True;t1_gijob2z;/r/anime/comments/kt2nsp/waiting_for_seasons_of_ongoing_anime/gikd5j1/;1610166713;1;True;False;anime;t5_2qh22;;0;[]; -[];;;HeroVonZero;;;[];;;;text;t2_ofbiw;False;False;[];;"Honestly a lot of people will die and never gets to experience the suffering and joy of rezeros completion. - -This makes me sad.";False;False;;;;1610129608;;False;{};gikd5y5;False;t3_kt292n;False;False;t1_gik7grk;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikd5y5/;1610166719;6;True;False;anime;t5_2qh22;;0;[]; -[];;;GrimCreeperyt;;;[];;;;text;t2_7gxy9uca;False;False;[];;I know, I’m just surprised not having an episode caused it to fall behind so far;False;True;;comment score below threshold;;1610129627;;False;{};gikd7h2;False;t3_kt292n;False;False;t1_gikaviw;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikd7h2/;1610166744;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;Bayou-Bulldog;;;[];;;;text;t2_qtugg;False;False;[];;This is Yotsuba territory friend;False;False;;;;1610129644;;False;{};gikd8ta;False;t3_kt292n;False;False;t1_gika7su;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikd8ta/;1610166768;15;True;False;anime;t5_2qh22;;0;[]; -[];;;GrimCreeperyt;;;[];;;;text;t2_7gxy9uca;False;False;[];;I know, I’m just surprised not having an episode caused it to fall behind so far;False;True;;comment score below threshold;;1610129656;;False;{};gikd9st;False;t3_kt292n;False;True;t1_gikb6zg;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikd9st/;1610166784;-7;True;False;anime;t5_2qh22;;0;[]; -[];;;plopperi;;;[];;;;text;t2_7du1vmy8;False;False;[];;People have been talking about that episode without any spoiler tags since the start of the season. Just use the fucking spoiler tags if you know something is going to happen.;False;False;;;;1610129680;;False;{};gikdbv9;False;t3_kt292n;False;True;t1_gik9i1w;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikdbv9/;1610166820;4;True;False;anime;t5_2qh22;;0;[]; -[];;;funterxd;;;[];;;;text;t2_11jmgc;False;False;[];;"I haven’t seen shield Hero in your list, also Re:Zero -And if you feeling up to it watch Kyou Kara maou! Or the familiar of zero; they are both an oldie when isekai wasn’t even a genre";False;False;;;;1610129715;;False;{};gikdet0;False;t3_kt3hwl;False;False;t3_kt3hwl;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gikdet0/;1610166868;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610129869;;False;{};gikdreb;False;t3_kt292n;False;True;t1_gikcek8;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikdreb/;1610167073;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RicardoRealMen;;;[];;;;text;t2_665dpp8k;False;False;[];;OwO beastars season on place 9;False;False;;;;1610130018;;False;{};gike3oa;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gike3oa/;1610167276;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;Jenny_Tulls69420;;;[];;;;text;t2_5ingwix7;False;False;[];;6 and 5 should be switched;False;False;;;;1610130123;;False;{};gikecbk;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikecbk/;1610167423;1;True;False;anime;t5_2qh22;;0;[]; -[];;;PerroXX;;;[];;;;text;t2_byqd0;False;False;[];;r/anime is not interested in Quints that much as you may notice. Same goes for MAL which is their main source for popularity, but is ok, you can enjoy this season as a dark horse;False;False;;;;1610130182;;False;{};gikeh2i;False;t3_kt292n;False;False;t1_gik8oeu;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikeh2i/;1610167502;8;True;False;anime;t5_2qh22;;0;[]; -[];;;BigRoninMan1;;;[];;;;text;t2_6oxkljbv;False;False;[];;Am i the only one who isnt really excited bout the new animes this season?;False;False;;;;1610130216;;False;{};gikejzt;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikejzt/;1610167550;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Runbern;;;[];;;;text;t2_77cqfhat;False;False;[];;That isn't relevant for this thread. The other karma post is tomorrow which has the cumulative list.;False;False;;;;1610130251;;False;{};gikemwo;False;t3_kt292n;False;False;t1_gikd9st;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikemwo/;1610167599;5;True;False;anime;t5_2qh22;;0;[]; -[];;;GrimCreeperyt;;;[];;;;text;t2_7gxy9uca;False;False;[];;Oh ok thanks;False;False;;;;1610130298;;False;{};gikequj;False;t3_kt292n;False;True;t1_gikemwo;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikequj/;1610167662;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Arsh36160;;;[];;;;text;t2_4e6hj6ao;False;False;[];;Obviously everyone is gonna say yes, you'll need to watch it again with a different outlook other than Subaru's suffering is the only thing to look forward to. Maybe you might notice the deep themes, plot and messages of the show.;False;False;;;;1610130341;;False;{};gikeubt;False;t3_kt292n;False;False;t1_gik7mwb;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikeubt/;1610167723;6;True;False;anime;t5_2qh22;;0;[]; -[];;;TheMilkuSauce;;skip7;[];;;dark;text;t2_8wle3g50;False;False;[];;When will Horimiya come out?;False;False;;;;1610130383;;False;{};gikexzq;False;t3_kt292n;False;False;t1_gijeqih;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikexzq/;1610167783;7;True;False;anime;t5_2qh22;;0;[]; -[];;;BazWorkAcntPlsBePG;;;[];;;;text;t2_3ky6kku8;False;False;[];;*watches your daily routine from a distance*;False;False;;;;1610130398;;False;{};gikez5y;False;t3_kt292n;False;False;t1_gikd8ta;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikez5y/;1610167803;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Ben99ny22;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ben99ny;light;text;t2_14rmpidg;False;False;[];;i guess it depends on where you look but attack on titan and re zero are on an entirely different level than promised neverland.;False;False;;;;1610130529;;False;{};gikfa3g;False;t3_kt292n;False;False;t1_gijfzkx;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikfa3g/;1610167982;5;True;False;anime;t5_2qh22;;0;[]; -[];;;YuinoSery;;MAL;[];;http://myanimelist.net/profile/YuinoSery;dark;text;t2_i5r9b;False;False;[];;It's lesbians with guns in a SCP-world, highly recmmended;False;False;;;;1610130571;;False;{};gikfdm2;False;t3_kt292n;False;False;t1_gik1u9b;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikfdm2/;1610168042;29;True;False;anime;t5_2qh22;;0;[]; -[];;;Pollsmor;;;[];;;;text;t2_pvhag;False;False;[];;"Arc 4 is actually by far the longest, it's just that arc 6 has taken forever for the author to write (it started in 2016!). Some speculate that he's been waiting for the LN to catch up to the WN in content, which it now has. - -Here's a breakdown of the length of all 6 arcs so far by WN chapters (the anime adapts the LN but there's only 25 volumes to break down): - -&#x200B; - -|Arc|Chapters| -|:-|:-| -|1|24| -|2|50| -|3|89| -|4|142| -|5|87| -|6|97|";False;False;;;;1610130574;;False;{};gikfdux;False;t3_kt292n;False;False;t1_gikcypn;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikfdux/;1610168046;10;True;False;anime;t5_2qh22;;0;[]; -[];;;giangerd;;;[];;;;text;t2_1byk5f1m;False;False;[];;Early scans and spoilers come out for every chapter of One Piece and get massive attention. Its not about 1000, and it's not about One Piece only apparently;False;False;;;;1610130599;;False;{};gikffxz;False;t3_kt3sy5;False;False;t1_gik3u16;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gikffxz/;1610168080;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Arsh36160;;;[];;;;text;t2_4e6hj6ao;False;False;[];;"Bruh, i think by weeb you mean high school dxd or high school of the dead, this show is on par with Aot's seriousness when it comes to the plot and the portrayal of it's themes, characters act like how you would expect people to react, all in all it's a more realistic take like Aot. - - - -Also try to ignore the waifu wars stuff and not let it affect how you view the show.";False;False;;;;1610130604;;False;{};gikfgfw;False;t3_kt292n;False;False;t1_gik82yq;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikfgfw/;1610168089;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Ben99ny22;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/Ben99ny;light;text;t2_14rmpidg;False;False;[];;"lol, what? Chances are it will be attack on titan and re zero taking 1st and second. I can't say the next three for sure but i think promised neverland might take last in that. - -Attack on titan fucking demolished jjk the past 4 weeks.";False;False;;;;1610130632;;False;{};gikfis1;False;t3_kt292n;False;False;t1_gijsedd;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikfis1/;1610168126;4;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610130647;;1610130928.0;{};gikfk1h;False;t3_kt292n;False;True;t1_gik1t1h;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikfk1h/;1610168147;0;True;False;anime;t5_2qh22;;0;[]; -[];;;thicccduccc;;;[];;;;text;t2_5a57mf33;False;False;[];;Idk, Dr Stone was surprisingly low on the pre-season hype charts;False;False;;;;1610130726;;False;{};gikfqpg;False;t3_kt292n;False;False;t1_gik62up;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikfqpg/;1610168262;10;True;False;anime;t5_2qh22;;0;[]; -[];;;steven4869;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Maskirade;light;text;t2_65zvgowl;False;False;[];;Probably tomorrow.;False;False;;;;1610130732;;False;{};gikfr57;False;t3_kt292n;False;False;t1_gikexzq;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikfr57/;1610168268;8;True;False;anime;t5_2qh22;;0;[]; -[];;;dkaran_0102;;;[];;;;text;t2_7u3nnrtm;False;False;[];;The world building of re zero is 2nd best for me(onepiece is at the top) The first season was more of a prologue.i'd recommend you watching it since from next ep(i'm talking about the chap in light novel) is where this series turned for me into a masterpiece.;False;False;;;;1610130807;;False;{};gikfx9y;False;t3_kt292n;False;False;t1_gik7mwb;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikfx9y/;1610168372;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Requlish;;;[];;;;text;t2_9gmtswqj;False;False;[];;I don't even know that the promised neverland ss2 is released! i need to watch it rn;False;False;;;;1610130826;;False;{};gikfytb;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikfytb/;1610168399;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Emilygarcias;;;[];;;;text;t2_5sy92v0b;False;False;[];;where can I watch these animes;False;False;;;;1610130860;;False;{};gikg1m5;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikg1m5/;1610168446;1;True;False;anime;t5_2qh22;;0;[]; -[];;;woancue;;;[];;;;text;t2_121itc;False;False;[];;112 will have the BEST discussion thread holy shittt LMAO;False;False;;;;1610130865;;False;{};gikg20u;False;t3_kt292n;False;False;t1_gijpovt;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikg20u/;1610168453;14;True;False;anime;t5_2qh22;;0;[]; -[];;;SquishyLara;;;[];;;;text;t2_3dkr8zgu;False;False;[];;Darling in the franxx please come back 😭;False;False;;;;1610130902;;False;{};gikg51q;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikg51q/;1610168505;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jslice4ever;;;[];;;;text;t2_2wvi51tm;False;False;[];;A lot of people thought the first episode of part 2 would get to 15K - 16K and it ended up not even getting to 12K. Which makes me think that unless it has an extremely good episode, it's not going to beat AOT in karma at all this season.;False;False;;;;1610130938;;False;{};gikg7y2;False;t3_kt292n;False;False;t1_gijsfp0;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikg7y2/;1610168554;7;True;False;anime;t5_2qh22;;0;[]; -[];;;sandieeeee;;;[];;;;text;t2_naxvz;False;False;[];;After that last scene from ep 4 oh boy;False;False;;;;1610130954;;False;{};gikg9av;False;t3_kt292n;False;False;t1_gijggpi;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikg9av/;1610168578;16;True;False;anime;t5_2qh22;;0;[]; -[];;;fubes2000;;;[];;;;text;t2_4b90u;False;False;[];;"Up until yesterday I assumed that Hataraku Saibou S2 and Black debuting on the same day in the same season was a typo. - -My cup runneth over.";False;False;;;;1610131132;;False;{};gikgo3a;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikgo3a/;1610168823;1;True;False;anime;t5_2qh22;;0;[]; -[];;;jslice4ever;;;[];;;;text;t2_2wvi51tm;False;False;[];;AOT won't be on that list either. Because as everyone else has been stating, it didn't have an episode this week. So don't expect to see it there.;False;False;;;;1610131211;;False;{};gikguq6;False;t3_kt292n;False;False;t1_gikequj;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikguq6/;1610168928;5;True;False;anime;t5_2qh22;;0;[]; -[];;;TheWorldisFullofWar;;;[];;;;text;t2_77qmq;False;False;[];;If they adapt the series faithfully, some of the dialogue will be beneath whatever your expectations are at now.;False;False;;;;1610131229;;False;{};gikgw9t;False;t3_kt292n;False;False;t1_gijx8kf;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikgw9t/;1610168953;6;True;False;anime;t5_2qh22;;0;[]; -[];;;TheWorldisFullofWar;;;[];;;;text;t2_77qmq;False;False;[];;It becomes a blatant generic battle manga. Like a completely different show entirely.;False;False;;;;1610131300;;False;{};gikh26m;False;t3_kt292n;False;False;t1_gijlvjo;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikh26m/;1610169045;11;True;False;anime;t5_2qh22;;0;[]; -[];;;sevenpointfiveinches;;;[];;;;text;t2_694do426;False;False;[];;Arigatou Gozaimasu! Now I have plenty to watch.;False;False;;;;1610131301;;False;{};gikh28g;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikh28g/;1610169046;1;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"> Also they DMCA'ed their own official manga artists - -That is so... Damn.";False;False;;;;1610131313;;False;{};gikh3a9;False;t3_kt3sy5;False;False;t1_gijmyg2;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gikh3a9/;1610169063;7;True;False;anime;t5_2qh22;;0;[]; -[];;;GrimCreeperyt;;;[];;;;text;t2_7gxy9uca;False;False;[];;Episode 1 caused Crunchyroll to crash for 20 minutes and a global level;False;False;;;;1610131333;;False;{};gikh500;False;t3_kt292n;False;False;t1_gik6fzg;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikh500/;1610169091;35;True;False;anime;t5_2qh22;;0;[]; -[];;;Arsh36160;;;[];;;;text;t2_4e6hj6ao;False;False;[];;Nah, its as great as Aot that's all there is;False;False;;;;1610131462;;False;{};gikhfrp;False;t3_kt292n;False;False;t1_gik4apw;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikhfrp/;1610169265;3;True;False;anime;t5_2qh22;;0;[]; -[];;;KrzyDankus;;;[];;;;text;t2_146zps;False;False;[];;no;False;True;;comment score below threshold;;1610131467;;False;{};gikhg6o;False;t3_kt292n;False;False;t1_gik2nx9;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikhg6o/;1610169272;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;TheWorldisFullofWar;;;[];;;;text;t2_77qmq;False;False;[];;It is the biggest sleeper hit anime of all time, at least in the english community, which may have led to people overestimating how popular it would become. It had an extremely steep ramp up in popularity from the absolutely nonexistent hype for season 1 up until halfway through the season where it set new karma records for episode discussions. People who expected it to continue to grow in popularity at that rate were delusional.;False;False;;;;1610131481;;False;{};gikhhg0;False;t3_kt292n;False;False;t1_gik2w1d;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikhhg0/;1610169293;15;True;False;anime;t5_2qh22;;0;[]; -[];;;MABfan11;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MABfan11;light;text;t2_xdlmc;False;False;[];;i still think people are underestimating Re:Zero, it dominated the Spring and Summer 2016, including when Mob Psycho 100 got into it's good episodes, it's finale was even the most upvoted episode for several years;False;False;;;;1610131542;;False;{};gikhmev;False;t3_kt292n;False;False;t1_gik2w1d;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikhmev/;1610169373;24;True;False;anime;t5_2qh22;;0;[]; -[];;;ThomasTheTrashEngine;;;[];;;;text;t2_82jlxp8;False;False;[];;Code black is a spin off, season 2 of the main series is also airing this season;False;False;;;;1610131549;;False;{};gikhmzb;False;t3_kt292n;False;True;t1_gikd1tj;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikhmzb/;1610169382;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Deadbox_88;;;[];;;;text;t2_4ci7coi7;False;False;[];;That changes everything;False;False;;;;1610131587;;False;{};gikhq4r;False;t3_kt292n;False;True;t1_gikhmzb;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikhq4r/;1610169434;1;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"""It looks""... Maybe you can watch it to judge outside the designs, Re:Zero is the opposite of generic, that is one of the reasons why people like it. - -The waifu shit is created by the fans, that has nothing to do with the story itself and should not matter to judge the quality of the anime.";False;False;;;;1610131589;;False;{};gikhqa8;False;t3_kt292n;False;False;t1_gik82yq;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikhqa8/;1610169436;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ThomasTheTrashEngine;;;[];;;;text;t2_82jlxp8;False;False;[];;I don't know if it's available in every region but it's on Funimation and possibly some other places;False;False;;;;1610131603;;False;{};gikhrh7;False;t3_kt292n;False;True;t1_gikcpp1;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikhrh7/;1610169454;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Arsh36160;;;[];;;;text;t2_4e6hj6ao;False;False;[];;It did? Damn;False;False;;;;1610131663;;False;{};gikhwkd;False;t3_kt292n;False;False;t1_gikb15n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikhwkd/;1610169536;7;True;False;anime;t5_2qh22;;0;[]; -[];;;GhostOfLight;;;[];;;;text;t2_go8xe;False;False;[];;You'd think that, but this is just another comment that lowers my expectations. I'm approaching Gibiate levels of hype now.;False;False;;;;1610131689;;False;{};gikhyse;False;t3_kt292n;False;False;t1_gikgw9t;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikhyse/;1610169572;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;My thoughts exactly.;False;False;;;;1610131714;;False;{};giki0vh;False;t3_kt3sy5;False;False;t1_gik2ya6;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/giki0vh/;1610169607;21;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"I mean there are zero doubts Re:Zero will be above everything that is not AOT, but AOT ""slow"" episodes got 13k which gives Re:Zero an opportunity depending on the match, ofc it has no chances against the ""wildest"" AOT episodes.";False;False;;;;1610131826;;False;{};gikia7s;False;t3_kt292n;False;False;t1_gijqw6w;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikia7s/;1610169754;19;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;oh yeah, but this isn't a karma thread which is why i got confused;False;False;;;;1610131826;;False;{};gikia7t;False;t3_kt292n;False;True;t1_gikg7y2;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikia7t/;1610169754;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Xenosys83;;;[];;;;text;t2_2oq7u6e;False;False;[];;The only anime I'm watching this season are AoT, Re:Zero and TPN. I may watch the first few episodes of Dr. Stone, and if it's decent, I'll carry on watching.;False;False;;;;1610131886;;False;{};gikif9u;False;t3_kt3eie;False;True;t3_kt3eie;/r/anime/comments/kt3eie/what_is_your_daily_watching_schedule_for_this/gikif9u/;1610169832;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nimbasacity;;;[];;;;text;t2_2l28cw3f;False;False;[];;i am today years old when i found out cells at work has a 2nd season lmao thank you;False;False;;;;1610131888;;False;{};gikifdd;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikifdd/;1610169833;1;True;False;anime;t5_2qh22;;0;[]; -[];;;swat1611;;;[];;;;text;t2_1bnugr9p;False;False;[];;It's gonna be tough for sure. I am skeptical as the premiere didn't even beat the dialogue heavy episodes. We'll see.;False;False;;;;1610131898;;False;{};gikig88;False;t3_kt292n;False;False;t1_gikia7s;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikig88/;1610169848;13;True;False;anime;t5_2qh22;;0;[]; -[];;;xAquaf0rteSx;;;[];;;;text;t2_11nlkz;False;False;[];;Why AOT did not air last week?;False;False;;;;1610131941;;False;{};gikijwi;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikijwi/;1610169905;0;True;False;anime;t5_2qh22;;0;[]; -[];;;InfamousGhost07;;;[];;;;text;t2_345fbq2g;False;False;[];;Doesn't Laid back camp have 3d real women in it?;False;False;;;;1610131947;;False;{};gikikex;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikikex/;1610169914;1;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"> As someone who enjoyed the second half of ReZero S1 but felt the world building lacking - -Because it wasn't the main focus in S1 of the anime. - -plus it's a long-running series so expecting the world to be made very clear to you is ngl kinda hilarious.";False;False;;;;1610131976;;1610133544.0;{};gikims9;False;t3_kt292n;False;False;t1_gik7mwb;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikims9/;1610169952;8;True;False;anime;t5_2qh22;;0;[]; -[];;;kvbt7;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/kvbt;light;text;t2_446n5ucc;False;False;[];;"AoT runs circles around Re:Zero. Re:Zero is decent. AoT is the best anime of all time. - -Edit: It's my opinion, should have clarified that.";False;False;;;;1610131992;;1610135361.0;{};gikio5f;False;t3_kt292n;False;True;t1_gikhfrp;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikio5f/;1610169973;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610132009;;False;{};gikipkm;False;t3_kt292n;False;True;t1_gijlb86;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikipkm/;1610169997;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MiltonMerloXD;;;[];;;;text;t2_7p59l5sh;False;False;[];;**Correction**: *People underrate this anime.*;False;False;;;;1610132026;;False;{};gikiqzp;False;t3_kt292n;False;False;t1_gik4apw;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikiqzp/;1610170020;6;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;I'm anime only and the first episode was weak and the animation/direction seem like went below average as well ( not even talking about the CGI );False;False;;;;1610132029;;False;{};gikir6o;False;t3_kt292n;False;False;t1_gijei6o;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikir6o/;1610170023;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Malhi_;;;[];;;;text;t2_56zaduo6;False;False;[];;Lol aot and juju gonna be at the top;False;False;;;;1610132116;;False;{};gikiyk0;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikiyk0/;1610170137;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"The least you can do is check out the anime instead of looking it from the most superficial lens possible and judging it through that. - - -Also if the artstyle for some reason isn't for you, that's a different issue althogether";False;False;;;;1610132116;;False;{};gikiyk3;False;t3_kt292n;False;False;t1_gik82yq;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikiyk3/;1610170137;9;True;False;anime;t5_2qh22;;0;[]; -[];;;PeteSK164;;;[];;;;text;t2_qrqpd;False;False;[];;Don't get comfortable Re zero. Rimuru is coming for ya;False;True;;comment score below threshold;;1610132120;;False;{};gikiytn;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikiytn/;1610170141;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;It's funny because Re:Zero is going to have a big episode as well, but that AOT episode is just too much to compete.;False;False;;;;1610132121;;False;{};gikiyy9;False;t3_kt292n;False;False;t1_gijggpi;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikiyy9/;1610170144;45;True;False;anime;t5_2qh22;;0;[]; -[];;;crymothy;;;[];;;;text;t2_5wwzo3mb;False;False;[];;"Of course everyone missed re:zero and loves it when it came back! - -Including me";False;False;;;;1610132256;;False;{};gikj9zx;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikj9zx/;1610170323;3;True;False;anime;t5_2qh22;;0;[]; -[];;;acs20596;;;[];;;;text;t2_77um1do;False;False;[];;Cells at work got another season? The first one is so ridiculous it’s hard to watch many in 1 sitting. On ep 5;False;False;;;;1610132263;;False;{};gikjakj;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikjakj/;1610170332;1;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"> I heard that the reason is that S1 quickly catched up to the sources so they have to wait for a long time to have more things to adapt. - -They adapted 6 novel volumes in 13 episodes (Ep 13-25 of S1), it was terribly rushed, but they did it in a way where Anime onlys didn't feel like anything really got cut and hence it caught up.";False;False;;;;1610132329;;False;{};gikjfzz;False;t3_kt292n;False;True;t1_gijy4me;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikjfzz/;1610170421;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Arsh36160;;;[];;;;text;t2_4e6hj6ao;False;False;[];;I don't wanna debate which is better cause that's you're opinion but for me their both the best shows. In terms of source material, Arc 6 of Re:Zero is the pinnacle of writing as cringy as it sounds, while for me Aot kinda fell of in the recent chapters.;False;False;;;;1610132363;;False;{};gikjiub;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikjiub/;1610170467;4;True;False;anime;t5_2qh22;;0;[]; -[];;;foxfoxal;;;[];;;;text;t2_16h4p9;False;False;[];;"Well this is not the karma thread. - -I mean I'm a big Re:Zero fans and I was calling out those people, this was the continuation, Re:Zero just went gone 3 months there was no reason why it would jump that much, let alone that the episode was full dialogue. - -Re:Zero had an amazing strike of above 12k+ and 5k comments in a row at the end of part1 but the break ""softed"" the hype instead of increasing it, starting next episode the hype will come back and barely stops, there are no more ""full dialogue"" episodes in this season of Re:Zero. - -AOT can be beaten if it does below 14k when a strong episode of Re:Zero appears, ofc it won't beat it in average that was never possible.";False;False;;;;1610132430;;False;{};gikjoez;False;t3_kt292n;False;False;t1_gikg7y2;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikjoez/;1610170557;11;True;False;anime;t5_2qh22;;0;[]; -[];;;davidorii;;;[];;;;text;t2_5urymj5n;False;False;[];;BEASTSTARS???.;False;False;;;;1610132460;;False;{};gikjqxd;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikjqxd/;1610170600;1;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"AOT is at it's final season, pretty much done with a large part of it's story. - -ReZero is 3/11 done (Ex novels need to be adapted too), you think this is fair comparison to make? - - -And as a novel reader i would disagree, there are various aspects in writing where i find ReZero coming out on top, Worldbuilding, Side characters, Lore.";False;False;;;;1610132547;;1610135956.0;{};gikjy03;False;t3_kt292n;False;False;t1_gikio5f;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikjy03/;1610170727;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610132550;;False;{};gikjyai;False;t3_kt292n;False;True;t1_gikd7h2;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikjyai/;1610170732;1;True;False;anime;t5_2qh22;;0;[]; -[];;;halbeshendel;;;[];;;;text;t2_y3351;False;False;[];;A yuri at #4. Life is good, life is good.;False;False;;;;1610132654;;False;{};gikk6sl;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikk6sl/;1610170868;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jslice4ever;;;[];;;;text;t2_2wvi51tm;False;False;[];;">Well this is not the karma thread. - -I'm aware, but it's quite obvious that original commenter is referring to the karma thread. He said ""Re:Zero wasn't as high as people thought it would be."" There's no way he would be referring to this list as it's number 1 on here. The other person was confused apparently so I was clearing up that confusion.";False;False;;;;1610132689;;False;{};gikk9o5;False;t3_kt292n;False;True;t1_gikjoez;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikk9o5/;1610170914;2;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;Even if it didn't it's a weird comparison to make, considering Crunchyroll servers and Reddit karma are a different matter altogether;False;False;;;;1610132924;;False;{};gikksk8;False;t3_kt292n;False;False;t1_gikhwkd;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikksk8/;1610171222;5;True;False;anime;t5_2qh22;;0;[]; -[];;;-Scaggy-;;;[];;;;text;t2_5nl3ajvt;False;False;[];;"This list isnt overall popularity of the season, its a list of which episodes did the best each week. -Since there is no aot episode this week, there is no option to vote for it";False;False;;;;1610132934;;False;{};gikktcd;False;t3_kt292n;False;False;t1_gikd7h2;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikktcd/;1610171234;5;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;">Well, S2P1 wasn't entirely dialogue, there were still episodes with action or shocking moments that barely did better than the last 3 AoT episodes, even though they did noticeably better than Re:Zero's baseline. Granted that was 3-6 months ago, so we'll see. - - - -You answered your question yourself, not the only difference in popularity is huge, but AOT's actions scenes are much different than ReZero's. - -There's not even been a single One to One fight in this current season uptil now.";False;False;;;;1610133029;;False;{};gikl11f;False;t3_kt292n;False;True;t1_gik6p4m;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikl11f/;1610171365;3;True;False;anime;t5_2qh22;;0;[]; -[];;;RickyR0lled;;;[];;;;text;t2_1amp99ua;False;False;[];;No one can say that, it’s entirely subjective, from an objective standpoint, the quality of the two series are pretty much on par with each other. It’s just that AOT is way more popular than Re:Zero.;False;False;;;;1610133033;;False;{};gikl1bp;False;t3_kt292n;False;False;t1_gikio5f;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikl1bp/;1610171370;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Metroplex7;;;[];;;;text;t2_73res;False;False;[];;Yuru Camp is number 1 in my heart.;False;False;;;;1610133072;;False;{};gikl4hi;False;t3_kt292n;False;False;t1_gijw1jk;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikl4hi/;1610171424;26;True;False;anime;t5_2qh22;;0;[]; -[];;;Arsh36160;;;[];;;;text;t2_4e6hj6ao;False;False;[];;True, but it's cool to know just like how it's interesting to see the karma rankings though in the end they're all superficial.;False;False;;;;1610133123;;False;{};gikl8m4;False;t3_kt292n;False;False;t1_gikksk8;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikl8m4/;1610171490;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ffebe;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/strawberrrymilk;light;text;t2_4fd1sa4q;False;True;[];;hell yes, yuru camp season 2 is gonna make the year start off great;False;False;;;;1610133125;;False;{};gikl8ry;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikl8ry/;1610171492;1;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"Dude just because it's dialogue-based doesn't mean you gotta entertain these people by saying it's going to get 'better' - -Rezero is at it's best with it's dialgoue. - -This isn't anime for shonen fans if they're constantly looking for high stimulating action";False;False;;;;1610133154;;False;{};giklb4v;False;t3_kt292n;False;False;t1_gik5wtj;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giklb4v/;1610171529;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MarshallLeeVampKing;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MarshallLeeee;light;text;t2_ipaq5;False;False;[];;As much as I hate to admit it, you're right. AOT is so popular that even non anime fans know it. I'm really hoping this cour will help Re:Zero reach that level of popularity.;False;False;;;;1610133185;;False;{};gikldnu;False;t3_kt292n;False;False;t1_gik2w1d;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikldnu/;1610171568;6;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;people were talking about Reddit, not Anime corner.;False;False;;;;1610133192;;False;{};gikle7k;False;t3_kt292n;False;False;t1_gik4tl4;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikle7k/;1610171577;6;True;False;anime;t5_2qh22;;0;[]; -[];;;TheHighGroundwins;;;[];;;;text;t2_71awoup1;False;False;[];;Wait quintissential quintuplets s2 is out?;False;False;;;;1610133195;;False;{};giklehk;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giklehk/;1610171580;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Illusion911;;;[];;;;text;t2_11mcny;False;False;[];;Surprised to not see black clover here despite the great work on ep 158.;False;False;;;;1610133211;;False;{};giklftw;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giklftw/;1610171603;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Thatweasel;;;[];;;;text;t2_ecqnm;False;False;[];;Why is everyone sleeping on kumo desu ga?;False;False;;;;1610133303;;False;{};giklne1;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giklne1/;1610171723;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;bluepsycho65;;;[];;;;text;t2_3exex6qy;False;False;[];;I already know next week top 3 1.AoT 2.Re zero 3. Promise Neverland;False;False;;;;1610133320;;False;{};gikloon;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikloon/;1610171742;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Hephaestus_God;;;[];;;;text;t2_wp7nx;False;True;[];;More people need to watch cells at work. Also code black.;False;False;;;;1610133354;;False;{};giklrjh;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giklrjh/;1610171786;3;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"Bro ReZero could never compete with AOT in popularity aside from karma rankings, that's the point. - -So this shouldn't be suprising.";False;False;;;;1610133384;;False;{};gikltzv;False;t3_kt292n;False;False;t1_gikl8m4;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikltzv/;1610171825;2;True;False;anime;t5_2qh22;;0;[]; -[];;;bluepsycho65;;;[];;;;text;t2_3exex6qy;False;False;[];;I’m fine with it because it’s the sequels I want;False;False;;;;1610133386;;False;{};giklu4z;False;t3_kt292n;False;True;t1_gijelco;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giklu4z/;1610171827;2;True;False;anime;t5_2qh22;;0;[]; -[];;;aohige_rd;;;[];;;;text;t2_ttrmj;False;False;[];;Mushoku Tensei was way more popular than any others coming out back when they were all running on the same site. (Re:zero, slime, Log Horizon, and Mushoku all ran on Narou website at the same time);False;False;;;;1610133409;;False;{};giklw1r;False;t3_kt292n;False;False;t1_gijm380;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giklw1r/;1610171859;11;True;False;anime;t5_2qh22;;0;[]; -[];;;Nikibugs;;;[];;;;text;t2_ghicd;False;False;[];;"Did Attack on Titan skip a week? - -So happy Re:Zero is back around, waiting for my watch group to catch Promised Neverland. Then That Time I Got Reincarnated as a Slime Next week! - -I’ll be in my corner watching So I’m a Spider So What? alone lol";False;False;;;;1610133528;;1610137418.0;{};gikm5tz;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikm5tz/;1610172011;17;True;False;anime;t5_2qh22;;0;[]; -[];;;-Scaggy-;;;[];;;;text;t2_5nl3ajvt;False;False;[];;"As a Re:Zero fan I predict that it will do no more than hug AoT in the charts, only passing it if AoT gets a slow episode and Re:Zero gets a hype one. -I apologize for our community overestimating our own popularity, it gets a little annoying, but i think they just want a friendly competition";False;False;;;;1610133618;;False;{};gikmd5w;False;t3_kt292n;False;True;t1_gik4tl4;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikmd5w/;1610172133;-4;True;False;anime;t5_2qh22;;0;[]; -[];;;lemondrop23;;;[];;;;text;t2_23w99oz6;False;True;[];;The world building is probably the biggest strength of S2 Part 1. So much world lore and character building.;False;False;;;;1610133652;;False;{};gikmfzy;False;t3_kt292n;False;False;t1_gik7mwb;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikmfzy/;1610172179;6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610133681;;False;{};gikmiay;False;t3_kt292n;False;True;t1_giji05x;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikmiay/;1610172215;1;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"it's kinda your fault to even think ReZero was anywhere near AOT in popularity. - -Note to yourself, Reddit karma means jack shit in the end of the day.";False;False;;;;1610133690;;False;{};gikmj10;False;t3_kt292n;False;False;t1_gikldnu;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikmj10/;1610172226;8;True;False;anime;t5_2qh22;;0;[]; -[];;;dem00z;;;[];;;;text;t2_2irk13sj;False;False;[];;How does the new japanese copyright law work? It just look like they are senselessly going after people with little to no return.;False;False;;;;1610133708;;False;{};gikmkjr;False;t3_kt3sy5;False;False;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gikmkjr/;1610172253;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeta42;;;[];;;;text;t2_bjdm4;False;False;[];;I propose to fight this bullshit by posting on Twitter One Piece hentai.;False;False;;;;1610133737;;False;{};gikmmzk;False;t3_kt3sy5;False;False;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gikmmzk/;1610172292;14;True;False;anime;t5_2qh22;;0;[]; -[];;;Eboglaz;;;[];;;;text;t2_2kahaqr2;False;False;[];;Maybe, but i bet mushoku tensei at least will get in top 5.;False;False;;;;1610133793;;False;{};gikmrlh;False;t3_kt292n;False;True;t1_gikloon;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikmrlh/;1610172369;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cute-Comb;;;[];;;;text;t2_5qeetd4o;False;False;[];;Thanks for the recommendation!;False;False;;;;1610133832;;False;{};gikmus4;True;t3_kt3hwl;False;True;t1_gikdet0;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gikmus4/;1610172419;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Rickyaura;;;[];;;;text;t2_10p64e;False;False;[];;this year winter anime ARE SO GOOOD;False;False;;;;1610133844;;False;{};gikmvtf;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikmvtf/;1610172434;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kermit-Jones;;;[];;;;text;t2_5sc0qlt3;False;False;[];;"Dont forget to actually stop horimiya before it becomes a hot mess of ""hey do you really want to know these 12 side characters better here we have 50 chapters about them""";False;False;;;;1610133847;;False;{};gikmw37;False;t3_kt292n;False;False;t1_gijeqih;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikmw37/;1610172439;8;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610133860;;False;{};gikmx79;False;t3_kt292n;False;True;t1_giji05x;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikmx79/;1610172456;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Eboglaz;;;[];;;;text;t2_2kahaqr2;False;False;[];;I agree. And its not even the best part of the story by author. I really cant wait for arc 7!;False;False;;;;1610133862;;False;{};gikmxcj;False;t3_kt292n;False;False;t1_gikjiub;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikmxcj/;1610172458;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Cute-Comb;;;[];;;;text;t2_5qeetd4o;False;False;[];;Oh dang, it must really be terrible huh;False;False;;;;1610133868;;False;{};gikmxtw;True;t3_kt3hwl;False;False;t1_gik4t55;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gikmxtw/;1610172465;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cute-Comb;;;[];;;;text;t2_5qeetd4o;False;False;[];;Sure thing!;False;False;;;;1610133885;;False;{};gikmz8x;True;t3_kt3hwl;False;False;t1_gik50dl;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gikmz8x/;1610172488;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Arsh36160;;;[];;;;text;t2_4e6hj6ao;False;False;[];;Bruh, i never said otherwise, it's obvious a shonen mainstream show will have more popularity, i was surprised by the servers crashing.;False;False;;;;1610133900;;False;{};gikn0jv;False;t3_kt292n;False;True;t1_gikltzv;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikn0jv/;1610172508;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WACS_On;;;[];;;;text;t2_notm65o;False;False;[];;Modern problems require modern solutions;False;False;;;;1610133958;;False;{};gikn5df;False;t3_kt3sy5;False;False;t1_gikmmzk;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gikn5df/;1610172586;8;True;False;anime;t5_2qh22;;0;[]; -[];;;nimrag_is_coming;;;[];;;;text;t2_2ty9jhb3;False;False;[];;Bruh we’re getting a lotta sequels this season;False;False;;;;1610133970;;False;{};gikn6cs;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikn6cs/;1610172601;1;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;it's not like this is the first time their servers have crashed but alright then.;False;False;;;;1610133985;;False;{};gikn7gn;False;t3_kt292n;False;True;t1_gikn0jv;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikn7gn/;1610172619;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bobert789;;;[];;;;text;t2_2tsyn73z;False;False;[];;Promised Neverland has started????????;False;False;;;;1610134021;;False;{};giknaew;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giknaew/;1610172665;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Eboglaz;;;[];;;;text;t2_2kahaqr2;False;False;[];;How can you compare them tho? Aot is almost finished while re zero has only completed half of its planned story.;False;False;;;;1610134087;;False;{};giknfzd;False;t3_kt292n;False;False;t1_gika6u7;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giknfzd/;1610172755;6;True;False;anime;t5_2qh22;;0;[]; -[];;;im-a-notsee;;;[];;;;text;t2_7zmszjhw;False;False;[];;Is the number 9 a furry anime /s;False;False;;;;1610134138;;False;{};giknk3h;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giknk3h/;1610172819;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;It’s not bad it’s just super tropey and the pinnacle of “op main character does whatever he wants with his harem but he’s not a bad guy”;False;False;;;;1610134191;;False;{};giknomy;False;t3_kt3hwl;False;True;t1_gikmxtw;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/giknomy/;1610172887;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Cute-Comb;;;[];;;;text;t2_5qeetd4o;False;False;[];;Ohhh, I see what you mean now. I don't really like harem anime, but my isekai addition will make me watch anything lol;False;False;;;;1610134258;;False;{};giknu7g;True;t3_kt3hwl;False;True;t1_giknomy;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/giknu7g/;1610172973;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chinatownjon;;;[];;;;text;t2_2llv7rko;False;False;[];;"Not exactly isekai but I'm pretty sure you would enjoy irregular at magic high school as well as akashic records of a bastard magic instructor. I enjoyed many of the titles you listed and loved them both, although they aren't technically isekai, but involve strong mcs and magic. A lot of people also enjoy and recommend konosuba, but it wasnt really for me, tho I may try to pick it up again simply because so many people love it. I'd also recommend the smartphone isekai - like some say it's kinda hot garbage but done in a really fun way in my opinion so I enjoyed it. High school prodigies have it easy in another world is on a similar wavelength as well. I also really enjoyed gate and saga of tanya the evil, both are more mature. My next life as a villainess is also a great anime. It is romance centered but very funny so I would at least say check it out. Log horizon and SAO can sort of be grouped into this, and both are good in my opinion, especially if you enjoy that kind of ""gamer"" element. - -Hope this helps! Also, you have watched a few that are on my list, buy I haven't gotten to yet. Any titles you would say are not worth watching, or you would highly recommend?";False;False;;;;1610134332;;False;{};giko06j;False;t3_kt3hwl;False;True;t3_kt3hwl;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/giko06j/;1610173069;2;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;Why would slime pose a thread to ReZero? what were it's karma rankings even?;False;False;;;;1610134357;;False;{};giko27j;False;t3_kt292n;False;False;t1_gikiytn;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giko27j/;1610173102;4;True;False;anime;t5_2qh22;;0;[]; -[];;;HeroVonZero;;;[];;;;text;t2_ofbiw;False;False;[];;Ew. Funimation :/;False;False;;;;1610134429;;False;{};giko811;False;t3_kt292n;False;True;t1_gikhrh7;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giko811/;1610173195;0;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"a mentally traumatized individual who's been killed several times, cries multiple times? - -NANI??! not in my anime";False;False;;;;1610134449;;False;{};giko9n8;False;t3_kt292n;False;True;t1_gik9j0o;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giko9n8/;1610173219;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Singular-cat-lady;;;[];;;;text;t2_55q97c2t;False;False;[];;Wait it's out? Where did can I watch it?;False;False;;;;1610134541;;False;{};gikohbl;False;t3_kt292n;False;True;t1_gijei6o;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikohbl/;1610173337;2;True;False;anime;t5_2qh22;;0;[]; -[];;;gamaknightgaming;;;[];;;;text;t2_nqb3e;False;False;[];;I kinda think you should combine both the cells at work shows into one, it sort of splits the vote, as I’m sure people would love to vote both rather than having to pick one;False;False;;;;1610134551;;False;{};gikoi5q;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikoi5q/;1610173349;1;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"> I apologize for our community overestimating our own popularity, - -What is this? LMAOOO - -Tf are you apologizing for LOL, let people hype their shows, this is cringe behavior ngl. - -Not only that, but Reddit karma rankings are what people are talking about, not Anime Corner lol";False;False;;;;1610134562;;False;{};gikoj39;False;t3_kt292n;False;False;t1_gikmd5w;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikoj39/;1610173364;8;True;False;anime;t5_2qh22;;0;[]; -[];;;CorbenikTheRebirth;;;[];;;;text;t2_g98wg;False;False;[];;The later arcs are not as good as the first one, sure, but I also think a lot of the negativity is overblown. I still found the rest of the manga enjoyable, and I'm sure it will translate to anime well.;False;False;;;;1610134631;;False;{};gikooqm;False;t3_kt292n;False;False;t1_gijx8kf;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikooqm/;1610173448;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;I agree, idk why people are saying jjk is so popular like, a jjk episode me and many other jjk manga readers were looking forward to as it is a very important point in the story, got 7k upvotes. Meanwhile an AoT episode which was world building got 14k, DOUBLE the amount, absolutely demolished.;False;False;;;;1610134662;;False;{};gikorai;False;t3_kt292n;False;True;t1_gikfis1;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikorai/;1610173489;2;True;False;anime;t5_2qh22;;0;[]; -[];;;PeteSK164;;;[];;;;text;t2_qrqpd;False;False;[];;People who read LNs understand others will have to wait;False;True;;comment score below threshold;;1610134782;;False;{};gikp0zf;False;t3_kt292n;False;True;t1_giko27j;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikp0zf/;1610173646;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610134823;;False;{};gikp49y;False;t3_kt3sy5;False;True;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gikp49y/;1610173699;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cute-Comb;;;[];;;;text;t2_5qeetd4o;False;False;[];;Thanks for so many recommendations!! I'd love to give you some recommendations as well! I'd personally recommend Overlord, Reincarnated as a slime, Devil is a part-timer, and cautious hero. Thank again for the recommendations!!;False;False;;;;1610134829;;False;{};gikp4s6;True;t3_kt3hwl;False;True;t1_giko06j;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gikp4s6/;1610173707;1;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"unless it's karma ain't on the similar numbers as ReZero. - -there's no point in this comparison.";False;False;;;;1610134917;;False;{};gikpbwn;False;t3_kt292n;False;False;t1_gikp0zf;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikpbwn/;1610173821;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;Don't know bout that one chief, ep 5 onwards AoT I'm predicting extremely high upvotes. And our watchlist is indeed stacked, completely agree;False;False;;;;1610134991;;False;{};gikphw0;False;t3_kt292n;False;True;t1_gijhda5;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikphw0/;1610173919;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ReneeJae;;;[];;;;text;t2_59mcvs8y;False;False;[];;It’s gonna be a good season;False;False;;;;1610135005;;False;{};gikpj0p;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikpj0p/;1610173938;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;Then you don't know what he's talking about. Every single manga readers of AoT I've spoken to agrees on the fact that this episode is going to break the internet if it's done right.;False;False;;;;1610135066;;False;{};gikpo1l;False;t3_kt292n;False;False;t1_gikhg6o;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikpo1l/;1610174018;7;True;False;anime;t5_2qh22;;0;[]; -[];;;Hailgod;;;[];;;;text;t2_86po8;False;False;[];;">wasting company time and resources to copyright strike - -probably outsourced, and uses an algorithm to do it automatically. nobody is scrolling twitter 1 by 1.";False;False;;;;1610135127;;False;{};gikpt07;False;t3_kt3sy5;False;False;t1_gijx15v;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gikpt07/;1610174099;26;True;False;anime;t5_2qh22;;0;[]; -[];;;BrutalBane;;;[];;;;text;t2_5dah5rg4;False;False;[];;"Slime isekai - -Sword art online - -Overlord - -DanMachi - -Konosuba (focuses on the fan service) - -Thr rising of the shield hero - -Arifureta - -No game no life (must watch) - -How not to summon a demon lord - -Kenja no mago (not as good as the others) - - -Those are the best isekai you'll ever find";False;False;;;;1610135151;;False;{};gikpuya;False;t3_kt3hwl;False;False;t3_kt3hwl;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gikpuya/;1610174129;1;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610135236;;False;{};gikq209;False;t3_kt3eie;False;True;t3_kt3eie;/r/anime/comments/kt3eie/what_is_your_daily_watching_schedule_for_this/gikq209/;1610174236;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cute-Comb;;;[];;;;text;t2_5qeetd4o;False;False;[];;Thanks for the recommendations! I've unfortunately seen almost all of these besides kenja no mago;False;False;;;;1610135273;;False;{};gikq4z8;True;t3_kt3hwl;False;True;t1_gikpuya;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gikq4z8/;1610174283;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MuffinFIN;;;[];;;;text;t2_52y6nba;False;False;[];;Probably, he will need to maintain contact with Kyouyas body during the entire process tho, and even then we dont know how exactly his talent works. Maybe he will revive the moment Nanao stops touching him. Didnt read the manga so dont know about that one;False;False;;;;1610135276;;False;{};gikq5ah;False;t3_kt3ouv;False;False;t3_kt3ouv;/r/anime/comments/kt3ouv/talentless_nana_could_nanao_kill_kyouya/gikq5ah/;1610174287;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610135289;;False;{};gikq6df;False;t3_kt3sy5;False;True;t1_gikffxz;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gikq6df/;1610174304;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Eboglaz;;;[];;;;text;t2_2kahaqr2;False;False;[];;Wow, this is a huge statement. I liked aot a lot and read all the manga available but i would never said that.;False;False;;;;1610135316;;False;{};gikq8m0;False;t3_kt292n;False;True;t1_gikio5f;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikq8m0/;1610174342;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kawaii_bbc;;;[];;;;text;t2_iiu6x;False;False;[];;Interested in seeing how Cells at work black does vs the original, now that we know what to expect from it;False;False;;;;1610135363;;False;{};gikqcj4;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikqcj4/;1610174406;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;Worldbuilding, side characters, and lore? Did you just take the absolute best and perfect aspects of attack on titan and call them ReZeros best? Jokes aside, I'm a manga readers for AoT and a novel reader for ReZero, both are very well written and very well executed. For me, AoT takes the cake as it's just written to orgasm level perfection. Everything just *makes sense.* I completely understand if someone likes ReZero more, both are stellar series.;False;False;;;;1610135366;;False;{};gikqcq4;False;t3_kt292n;False;False;t1_gikjy03;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikqcq4/;1610174409;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Artistic_Sandwich_47;;;[];;;;text;t2_8h7bipfq;False;False;[];;PURRRRRRR;False;False;;;;1610135390;;False;{};gikqeum;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikqeum/;1610174447;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KrzyDankus;;;[];;;;text;t2_146zps;False;False;[];;"i know what happens, but im trying to be realistic. - -i see it getting 17k-18k personally.";False;False;;;;1610135446;;False;{};gikqjg5;False;t3_kt292n;False;False;t1_gikpo1l;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikqjg5/;1610174529;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Dwarf_forge;;;[];;;;text;t2_3chzvbls;False;False;[];;Why is there two different cells at work airing at the same time;False;False;;;;1610135464;;False;{};gikqkxs;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikqkxs/;1610174558;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AbysmalVixen;;;[];;;;text;t2_n37va;False;True;[];;Kenja no mago is wisemans grandchild;False;False;;;;1610135541;;False;{};gikqr6v;False;t3_kt3hwl;False;True;t1_gikq4z8;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gikqr6v/;1610174662;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-Scaggy-;;;[];;;;text;t2_5nl3ajvt;False;False;[];;"I was also referring to the karma ranking charts, I should have specified that, sorry. - -Hype competitions are fun, but overhype without delivery can disappoint people. - -Of course it was still a good episode, but we should know that the hype of waiting 3 months is nothing compared to the hype of 4 years, even with growth in the community. - -Also, AoT is on its final season, there is a lot of hype regarding the conclusion of a series that has built itself an incredibly high reputation. - -Re:Zero is also highly regarded in this sub and elsewhere, but its only on its second season, wait a few years and we will be at the popularity of AoT or higher when more of our content is adapted.";False;False;;;;1610135562;;1610144068.0;{};gikqsyv;False;t3_kt292n;False;False;t1_gikoj39;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikqsyv/;1610174690;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Nielloscape;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Niello;light;text;t2_160hhg;False;False;[];;I've never seen Japanese company that handle this in a non-idiotic way.;False;False;;;;1610135766;;False;{};gikr9s0;False;t3_kt3sy5;False;False;t1_gijx15v;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gikr9s0/;1610174951;30;True;False;anime;t5_2qh22;;0;[]; -[];;;Sakkarashi;;;[];;;;text;t2_q7wid;False;False;[];;I don't really get why TPN is so popular. Makes no sense how these kids are outsmarting the adults who went through the same processes and this supreme alien race that should be much more intelligent. Unless the adults and aliens are letting it happen on purpose, I guess. If someone could clear it up for me I would appreciate it.;False;False;;;;1610135770;;False;{};gikra5c;False;t3_kt292n;False;False;t1_gikceuw;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikra5c/;1610174956;4;True;False;anime;t5_2qh22;;0;[]; -[];;;DrThots;;;[];;;;text;t2_1s9eq1rf;False;False;[];;Sein might be higher if people stopped comparing it to Haikyuu but only an assumption, personally it got me drawn in on the first ep and i'll continue to enjoy the anime as it is without comparing it;False;False;;;;1610135789;;False;{};gikrbny;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikrbny/;1610174980;1;True;False;anime;t5_2qh22;;0;[]; -[];;;chinatownjon;;;[];;;;text;t2_2llv7rko;False;False;[];;No problem! And hell yeah man I've seen all of the ones you just recommended haha and I'm stoked for the next season of slime!!! Happy watching my friend! :);False;False;;;;1610135791;;False;{};gikrbsv;False;t3_kt3hwl;False;True;t1_gikp4s6;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gikrbsv/;1610174982;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;*Hype of one year, an AoT season came out in 2019. Other than that, well said, you conveyed your opinion very well.;False;False;;;;1610135800;;False;{};gikrcjg;False;t3_kt292n;False;True;t1_gikqsyv;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikrcjg/;1610174994;2;True;False;anime;t5_2qh22;;0;[]; -[];;;csdbcjkahsd;;;[];;;;text;t2_6o5ig4yp;False;False;[];;tatakae...;False;False;;;;1610135870;;False;{};gikribn;False;t3_kt292n;False;False;t1_gikcek8;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikribn/;1610175090;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;The studio which produces attack on titan took a new years break, they earned it :);False;False;;;;1610135905;;False;{};gikrl3u;False;t3_kt292n;False;False;t1_gikm5tz;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikrl3u/;1610175133;13;True;False;anime;t5_2qh22;;0;[]; -[];;;9vincent9;;;[];;;;text;t2_3o1g9p3r;False;False;[];;"It's a preference at the end of the day but i prefer the larger scope ReZero has, It's shown more detail, perhaps in the culture and places it's dealing with, Aside from the capital of luginica, Sloth IF focuses on Kararagi and Arc 6, you already know - -and Arc 7 is going for new territory. - -EX Novels and Side stories go into depth regarding the past of the main side characters and their journey. - -They're way more fleshed out than the majority of the cast in AOT. - - -And Lore, well that's going in a lot of spoiler territory.";False;False;;;;1610135918;;False;{};gikrm8c;False;t3_kt292n;False;True;t1_gikqcq4;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikrm8c/;1610175150;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Cute-Comb;;;[];;;;text;t2_5qeetd4o;False;False;[];;Same to you! I'm honestly so excited for season two lol. I guess we're both isekai addicts lmao;False;False;;;;1610135936;;False;{};gikrnoa;True;t3_kt3hwl;False;True;t1_gikrbsv;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gikrnoa/;1610175171;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cute-Comb;;;[];;;;text;t2_5qeetd4o;False;False;[];;Ohh, thanks for clearing that up!;False;False;;;;1610135954;;False;{};gikrp54;True;t3_kt3hwl;False;True;t1_gikqr6v;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gikrp54/;1610175193;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Kingturboturtle13;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_4v2mq4oo;False;False;[];;I know nothing about #8 and I'd bet money its a Light Novel Adaptation from the title alone;False;False;;;;1610135975;;False;{};gikrqud;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikrqud/;1610175218;1;True;False;anime;t5_2qh22;;0;[]; -[];;;-Scaggy-;;;[];;;;text;t2_5nl3ajvt;False;False;[];;"Well, with the 3 months/4 years thing I was referring to Re:Zero and the gap between s1-s2 and s2p1-s2p2. - -But thank you.";False;False;;;;1610136051;;1610136572.0;{};gikrwxh;False;t3_kt292n;False;True;t1_gikrcjg;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikrwxh/;1610175314;2;True;False;anime;t5_2qh22;;0;[]; -[];;;xmycolumbianx;;;[];;;;text;t2_6cfd0;False;False;[];;I'm so excited!;False;False;;;;1610136136;;False;{};giks3uj;False;t3_kt292n;False;False;t1_gijgoa2;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giks3uj/;1610175419;5;True;False;anime;t5_2qh22;;0;[]; -[];;;FeelsGoodMan243;;;[];;;;text;t2_efp1aj;False;False;[];;"I wonder what this means for youtubers. - -Usually I post 5 second clips of anime and I have no issue. - -However, I have no doubts this could escalate towards all platforms. - -Hopefully that doesn't come, because the video essay format having clips of the topic you're talking about is bread and butter. - -Losing the ability to post anime clips would suck ass for many of us anitubers";False;False;;;;1610136166;;False;{};giks657;False;t3_kt3sy5;False;False;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/giks657/;1610175455;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Beautiful-Ad8048;;;[];;;;text;t2_9hgyizxc;False;False;[];;What? People were constantly shitting on mappa because of God of highschool, even though it was great and not their fault lol;False;False;;;;1610136190;;False;{};giks821;False;t3_kt292n;False;False;t1_gijko5b;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giks821/;1610175487;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Beautiful-Ad8048;;;[];;;;text;t2_9hgyizxc;False;False;[];;No, there is NO argument here.;False;False;;;;1610136219;;False;{};giksafq;False;t3_kt292n;False;True;t1_gijnr24;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giksafq/;1610175525;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeeesys1234;#fd755c;HB;[];9421e088-b812-11e2-b831-12313b0b21ae;https://kitsu.io/users/;light;text;t2_36nm1ic6;False;False;[];;Im waiting for rimuru to steal that top spot;False;False;;;;1610136356;;False;{};giksled;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giksled/;1610175694;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Beautiful-Ad8048;;;[];;;;text;t2_9hgyizxc;False;False;[];;Pathetic;False;False;;;;1610136380;;False;{};giksnc8;False;t3_kt292n;False;False;t1_gijl0g8;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giksnc8/;1610175723;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"...considering the fact that the manga industry is [literally supported](https://www.wired.com/2007/10/ff-manga/) by the creative/cultural energy that is Comiket and the doujinshi scene, this is a really bad idea. - -Also, they're *not* just going after fanart, but also official art.";False;False;;;;1610136522;;False;{};gikszf8;False;t3_kt3sy5;False;False;t1_gik3alv;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gikszf8/;1610175902;60;True;False;anime;t5_2qh22;;0;[]; -[];;;Goldenfox299;;;[];;;;text;t2_21fpin3p;False;False;[];;"Nah I just rewatched the episode and I do not see a dip in quality at all. - -I know a lot of Rem fans are annoyed by her lack of screen time and the guy himself said he's not impressed with Emilia so I'm not sure why my previous comment is so controversial... but that's Reddit for you.";False;False;;;;1610136557;;False;{};gikt29j;False;t3_kt292n;False;True;t1_gik8d2u;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikt29j/;1610175948;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Beautiful-Ad8048;;;[];;;;text;t2_9hgyizxc;False;False;[];;Bitch please;False;False;;;;1610136642;;False;{};gikt8x4;False;t3_kt292n;False;True;t1_gijkca2;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikt8x4/;1610176054;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Beautiful-Ad8048;;;[];;;;text;t2_9hgyizxc;False;False;[];;Lmao;False;False;;;;1610136656;;False;{};gikta29;False;t3_kt292n;False;True;t1_gik0j18;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikta29/;1610176072;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;chinatownjon;;;[];;;;text;t2_2llv7rko;False;False;[];;Heck yeah and I happily acknowledge it lmao! One of my fav/guilty pleasure genres especially with those op MCs haha;False;False;;;;1610136689;;False;{};giktcum;False;t3_kt3hwl;False;True;t1_gikrnoa;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/giktcum/;1610176114;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;"You're probably downvoted because you're dismissing someone's *opinion* as wrong with a bullshit reason. - -> Nah I just rewatched the episode and I do not see a dip in quality at all. - -You're perfectly entitled to your own opinion. Please respect others.";False;False;;;;1610136708;;False;{};giktee6;False;t3_kt292n;False;True;t1_gikt29j;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giktee6/;1610176138;3;True;False;anime;t5_2qh22;;0;[]; -[];;;DrewbieWanKenobie;;;[];;;;text;t2_8lei7;False;False;[];;"i didn't even know beastars started, i assume there's a lot of people like me who just didn't know since it's in Netflix jail - -anyway, guess I'll be busting ep 1 out of jail tonight...";False;False;;;;1610136736;;False;{};giktgmh;False;t3_kt292n;False;True;t1_gije2fo;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giktgmh/;1610176174;2;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;The first season was incredibly popular as it aired. Causing people to even link their camping trips that they had. As well as inspire people to go camping for the first time.;False;False;;;;1610136808;;False;{};giktms0;False;t3_kt292n;False;True;t1_gijjd5n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giktms0/;1610176272;3;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;I think you'd cry too if you've been killed and mentally tortured over and over again in the anime like Subaru has.;False;False;;;;1610136940;;False;{};giktxhe;False;t3_kt292n;False;True;t1_gik9j0o;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giktxhe/;1610176439;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ravioli_Heicho;;;[];;;;text;t2_3bls5ou;False;False;[];;Holiday break. It’ll be airing every week again starting this Sunday.;False;False;;;;1610136970;;False;{};giku0cu;False;t3_kt292n;False;True;t1_gikijwi;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giku0cu/;1610176481;3;True;False;anime;t5_2qh22;;0;[]; -[];;;redder_dominator;;;[];;;;text;t2_16uxzs;False;False;[];;i didnt even know beastars season 2 came out;False;False;;;;1610136983;;False;{};giku1ee;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giku1ee/;1610176498;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;It didn't have a episode this week. That's why.;False;False;;;;1610137000;;False;{};giku2ok;False;t3_kt292n;False;False;t1_gijgfbo;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giku2ok/;1610176516;1;True;False;anime;t5_2qh22;;0;[]; -[];;;b4k6;;;[];;;;text;t2_62u8w0qu;False;False;[];;Yes prob but I don’t say I don’t enjoy the anime. Or hate the entire fact that he cries but sometimes it just seems like a lot of the episode is just crying;False;False;;;;1610137050;;False;{};giku6ov;False;t3_kt292n;False;True;t1_giktxhe;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giku6ov/;1610176579;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Dracoscale;;;[];;;;text;t2_1ph8t8mq;False;False;[];;"IDK why people still expect it to be 'realistic', it broke the karma record, the comment record and the award record in one episode and it's 6K karma higher than the previous record holder. For reference, when ReZero broke the Karma Record it did so by 500 or so, when AoT S3P2 broke the karma record, it too only did so by a thousand or so. - -At this point, S4 can just do whatever it wants.";False;False;;;;1610137106;;False;{};gikubfx;False;t3_kt292n;False;False;t1_gikqjg5;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikubfx/;1610176652;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Ravioli_Heicho;;;[];;;;text;t2_3bls5ou;False;False;[];;It’s not gonna break the premier Karma, but it should get 17-19k. Episodes 14, 15, and 16, on the other hand, *absolutely* will break the record.;False;False;;;;1610137132;;False;{};gikudh8;False;t3_kt292n;False;True;t1_gik2nx9;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikudh8/;1610176683;1;True;False;anime;t5_2qh22;;0;[]; -[];;;NotSoSnarky;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/BookLover/;light;text;t2_7gn9mu1f;False;False;[];;After experiencing something awful like he does constantly, it's pretty understandable imo.;False;False;;;;1610137240;;False;{};gikum7n;False;t3_kt292n;False;True;t1_giku6ov;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikum7n/;1610176814;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Cute-Comb;;;[];;;;text;t2_5qeetd4o;False;False;[];;Same!;False;False;;;;1610137256;;False;{};gikunlu;True;t3_kt3hwl;False;True;t1_giktcum;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gikunlu/;1610176835;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MABfan11;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MABfan11;light;text;t2_xdlmc;False;False;[];;*Attack on Titan and Re:Zero has entered the chat*;False;False;;;;1610137269;;False;{};gikuolj;False;t3_kt292n;False;False;t1_gikckzm;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikuolj/;1610176848;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Cheeba_Addict;;;[];;;;text;t2_jvtre;False;False;[];;i am very shallow in the anime pool but how is attack on titan not on here?;False;False;;;;1610137280;;False;{};gikupnu;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikupnu/;1610176863;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;b4k6;;;[];;;;text;t2_62u8w0qu;False;False;[];;Yeah;False;False;;;;1610137292;;False;{};gikuqry;False;t3_kt292n;False;True;t1_gikum7n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikuqry/;1610176878;3;True;False;anime;t5_2qh22;;0;[]; -[];;;yeetomfg2;;;[];;;;text;t2_1ibhn134;False;False;[];;Is that volleyball anime actually good, or just Haikyuu , but again?;False;False;;;;1610137383;;False;{};gikuyaw;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikuyaw/;1610176991;1;True;False;anime;t5_2qh22;;0;[]; -[];;;four-lokos;;;[];;;;text;t2_2lmsysym;False;False;[];;are seiin high school and other side picnic good so far? they’re the only two titles I haven’t watched on this list;False;False;;;;1610137385;;False;{};gikuyf7;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikuyf7/;1610176993;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DANIEL_KEMP_REDDIT;;;[];;;;text;t2_8psqjjlk;False;False;[];;I've been binging re zero part 2 and it's great but BEASTARS SEASON 2?? SINCE WHEN WAS THAT OUT?? I thought it came out in March!;False;False;;;;1610137435;;False;{};gikv2cq;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikv2cq/;1610177054;2;True;False;anime;t5_2qh22;;0;[]; -[];;;chiliehead;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/chiliehead;light;text;t2_n06w8;False;False;[];;It's Japan, might as well be manual;False;False;;;;1610137454;;False;{};gikv3xc;False;t3_kt3sy5;False;False;t1_gikpt07;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gikv3xc/;1610177078;29;True;False;anime;t5_2qh22;;0;[]; -[];;;danktuna4;;;[];;;;text;t2_10882q;False;False;[];;They have also been striking fan art accounts from what I've seen.;False;False;;;;1610137456;;False;{};gikv42j;False;t3_kt3sy5;False;False;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gikv42j/;1610177079;3;True;False;anime;t5_2qh22;;0;[]; -[];;;esdeath888;;;[];;;;text;t2_55etn0ie;False;False;[];;Is no one gonna talk about how good the 1st episode of The Quintessential Quintuplets is? !!;False;False;;;;1610137576;;False;{};gikvdqu;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikvdqu/;1610177223;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Sarge212;;;[];;;;text;t2_100dgj;False;False;[];;Are these only available in Japanese so far? Or do I just have to look outside Crunchyroll for em. Lol;False;False;;;;1610137650;;False;{};gikvjqk;False;t3_kt292n;False;False;t1_gik10xy;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikvjqk/;1610177312;1;True;False;anime;t5_2qh22;;0;[]; -[];;;esdeath888;;;[];;;;text;t2_55etn0ie;False;False;[];;Me too, i reaaally love this anime, I've even finished all the manga. I hope it does really well this time with the new studio;False;False;;;;1610137747;;False;{};gikvrr0;False;t3_kt292n;False;True;t1_gik8oeu;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikvrr0/;1610177429;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;"Chapter 100 is in my top 3 manga chapters from the series and I think if executed well it could well become one of the most memorable anime episodes of all time, on par with things like Re zero episode 15, AOT S2 episode 6 and Demon Slayer episode 19. With that said I'm going to say **no** for these reasons: - -- [Summary of episode 5 spoilers, no plot details but if you want to go in completely blind don't read this](/s ""episode 5 will be 95% dialogue minus the final scene. Dialogue-heavy episodes of AoT typically perform worse than action episodes so I think this will go against it."") - -- the premiere made 20k karma not because the episode was exceptional (even though it was a fantastic premiere) but because of the incredible levels of hype from fans prior to it airing. I can't imagine how many new manga readers the series must have had in between the end of S3P2 and S4 but given how well received the former was I can imagine a huge portion of the fanbase are now manga readers. As a result they are regularly following the series and would highly anticipate the start of the new season (especially when this season will adapt the best parts of the manga according to most readers.) - -- Moreover crunchyroll (which is how most people watch AoT) released the premiere at around the same time as fansubs, so the karma growth was natural, see [here](https://cdn.discordapp.com/attachments/476391825590976522/793854102308126730/karma_track.png). Later episodes have seen stunted karma growths because fansubs come out several hours before the crunchyroll stream. This results in a much shallower karma curve before the CR release, putting the karma scores of these episodes several thousand points behind the premiere after only a couple hours. Don't be surprised to see episode 5 only have around ~1k karma after 1 hour when the premiere had nearly 3k at that time. - -- Having a slower karma curve means it will take longer for the episode to reach the #1 post on hot (and thus be visible to people who don't lurk the sub on their home feed). This means that the episode will be visible for a shorter period of time and have less exposure - this means fewer upvotes. - -- Even if the episode causes massive waves across the rest of the internet the thread won't break out into mainstream reddit because the mods of r/anime decided to ban posts on this sub reaching r/all. - -To beat the premiere it is going to need to have **even more** hype than what went in to S4 episode 1 to offset the stunted karma growth it will receive, unless fansubbers have a slow day. Also bare in mind that a lot of the hype that went into the premier was also based on things manga readers were anticipating will come in later episodes, including episode 5. The odds are quite stacked against the episode breaking the record, all things considered, but I still think it could rack up something in the region of 16-18k if adapted well and *maybe* go over 20k if it is exceptional.";False;False;;;;1610137803;;1610137993.0;{};gikvwi6;False;t3_kt292n;False;False;t1_gik2nx9;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikvwi6/;1610177500;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Illuminastrid;;;[];;;;text;t2_11l9oz;False;False;[];;"And who are these people you talking about? - -Whenever God of High School is bought up here or anywhere, the blame is on Crunchyroll rather than Mappa.";False;False;;;;1610137874;;False;{};gikw2en;False;t3_kt292n;False;False;t1_giks821;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikw2en/;1610177587;4;False;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610137915;;False;{};gikw5q8;False;t3_kt3sy5;False;True;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gikw5q8/;1610177638;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;LiterallyKesha;;;[];;;;text;t2_77qoj;False;True;[];;Haha, manga readers never ever give up a chance to say this in anything TPN related. It's like clockwork.;False;False;;;;1610138084;;False;{};gikwjcf;False;t3_kt292n;False;False;t1_gijl0g8;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikwjcf/;1610177839;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Calwings;;;[];;;;text;t2_jprro;False;False;[];;Otherside Picnic is on Funimation subbed (no dub announced yet);False;False;;;;1610138174;;False;{};gikwqlc;False;t3_kt292n;False;True;t1_gikvjqk;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikwqlc/;1610177946;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KaptainTZ;;skip7;[];;;dark;text;t2_9fhynbf5;False;False;[];;"""How dare you advertise our product""";False;False;;;;1610138186;;False;{};gikwrip;False;t3_kt3sy5;False;False;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gikwrip/;1610177960;8;True;False;anime;t5_2qh22;;0;[]; -[];;;SexyJarJarBinks;;;[];;;;text;t2_75f1ldlc;False;False;[];;Yes, my second most favorite anjme re:zero at the TOP! (bet you couldn't guess what is my most favorite anime);False;False;;;;1610138216;;False;{};gikwtv9;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikwtv9/;1610177994;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Syokhan;;;[];;;;text;t2_b5zid;False;False;[];;It's available on Funimation.;False;False;;;;1610138266;;False;{};gikwxsv;False;t3_kt292n;False;True;t1_gikvjqk;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikwxsv/;1610178067;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Goldenfox299;;;[];;;;text;t2_21fpin3p;False;False;[];;"So my first comment managed to offend someone, I didn't think it was possible but whatever, just Reddit things. - -I'm not sure why you're acting like I attacked someone. - -> You're perfectly entitled to your own opinion. Please respect others. - -You and the people downvoting me need this advice, not me. I don't go around downvoting people because I disagreed with their comments but ok.";False;False;;;;1610138272;;False;{};gikwybb;False;t3_kt292n;False;True;t1_giktee6;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikwybb/;1610178075;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;KrzyDankus;;;[];;;;text;t2_146zps;False;False;[];;"i think the ep15 or 16 would easily break the karma record. - -this next episode i see doing really well, but not enough to break the karma record, but i also didnt expect the first episode to be 5k karma more than the previous record, so yeah anything can happen";False;False;;;;1610138592;;False;{};gikxnt9;False;t3_kt292n;False;False;t1_gikubfx;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikxnt9/;1610178481;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Far_Mistake_8245;;;[];;;;text;t2_7w4bnbd6;False;False;[];;What site are you guys watching these shows on;False;False;;;;1610138787;;False;{};giky3m3;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giky3m3/;1610178723;1;True;False;anime;t5_2qh22;;0;[]; -[];;;spunker325;;;[];;;;text;t2_tajnl;False;False;[];;"You're missing the point. Sure, lots of people do downvote opinions they disagree with and should stop. I wouldn't downvote you for simply saying you disagreed and that you felt there was no dip in quality. The problem is your dismissive tone, acting as if someone who disagreed with you is simply blinded to their biases, even when OP clearly stated reasons for finding the episode mediocre that had nothing to do with Emilia, who they are actually hopeful about. - -It's not quite an attack, but it's not constructive at all.";False;False;;;;1610138794;;False;{};giky45g;False;t3_kt292n;False;True;t1_gikwybb;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giky45g/;1610178731;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AlterSaber7;;;[];;;;text;t2_9cde5yfb;False;False;[];;This is probably the last setup type episode. It’ll definitely be the weakest episode of the cour and the last heavily dialogue oriented episode;False;False;;;;1610138813;;False;{};giky5pk;False;t3_kt292n;False;True;t1_gijn5xz;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giky5pk/;1610178753;2;True;False;anime;t5_2qh22;;0;[]; -[];;;emilio2710;;;[];;;;text;t2_4sgdoh0z;False;False;[];;"I said -1. AoT -2. ReZero -3. JJK -4. TPN/Dr Stone";False;False;;;;1610138844;;False;{};giky8bb;False;t3_kt292n;False;False;t1_gikfis1;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giky8bb/;1610178795;20;True;False;anime;t5_2qh22;;0;[]; -[];;;_1_APOLLO_1_;;;[];;;;text;t2_3q6iuq43;False;False;[];;When they do chapter 112(probably in Feburary) that will actually Break the internet .Also 122 will end the internet lol.;False;False;;;;1610139366;;False;{};gikzg67;False;t3_kt292n;False;False;t1_gik6fzg;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikzg67/;1610179487;5;True;False;anime;t5_2qh22;;0;[]; -[];;;cl0ckvvork;;;[];;;;text;t2_40aepiis;False;False;[];;Holy fuck this season is stacked;False;False;;;;1610139415;;False;{};gikzk4v;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikzk4v/;1610179556;6;True;False;anime;t5_2qh22;;0;[]; -[];;;FloofSquad;;;[];;;;text;t2_8yfnc745;False;False;[];;oh dang, probably on Hulu too then. thanks!;False;False;;;;1610139539;;False;{};gikzu43;False;t3_kt292n;False;True;t1_gikaygl;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gikzu43/;1610179726;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cahnis;;;[];;;;text;t2_84knb;False;False;[];;Whats up with otherside picnic ? should I pick it up?;False;False;;;;1610139634;;False;{};gil01ob;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil01ob/;1610179854;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MarthLikinte1;;;[];;;;text;t2_2irtw6kg;False;False;[];;Jujutsu Kaisen should be on this list;False;True;;comment score below threshold;;1610139708;;False;{};gil07oh;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil07oh/;1610179948;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;omgwtfwaffles;;;[];;;;text;t2_51sxm;False;False;[];;This is honestly the most hype anime season in years for me specifically for that reason!;False;False;;;;1610139767;;False;{};gil0ca2;False;t3_kt292n;False;True;t1_gijelco;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil0ca2/;1610180019;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Bertdog211;;;[];;;;text;t2_108m49;False;False;[];;There is new cells at work and no one told me?!?;False;False;;;;1610139844;;False;{};gil0iev;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil0iev/;1610180113;6;True;False;anime;t5_2qh22;;0;[]; -[];;;ttheory715;;;[];;;;text;t2_1s9xbs4z;False;False;[];;I'm confused did Re Zero season 2 part 2 actually drop? I don't see it on vrv;False;False;;;;1610139984;;False;{};gil0tn1;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil0tn1/;1610180292;3;True;False;anime;t5_2qh22;;0;[]; -[];;;lukeuntld072;;;[];;;;text;t2_y8pgd;False;False;[];;No kingsraid? I find that show better then others here in the top 10;False;False;;;;1610140168;;False;{};gil18d3;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil18d3/;1610180520;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cheesemacher;;;[];;;;text;t2_b4wfb;False;False;[];;I keep forgetting about the new Promised Neverland season because the show is not on my Crunchyroll. Gotta find it somewhere else;False;False;;;;1610140198;;False;{};gil1ass;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil1ass/;1610180561;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AbaddonFamiLy;;;[];;;;text;t2_1glh6qwc;False;False;[];;you mean the merch industry?;False;False;;;;1610140235;;False;{};gil1drl;False;t3_kt292n;False;False;t1_gikcth1;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil1drl/;1610180607;9;True;False;anime;t5_2qh22;;0;[]; -[];;;NerdDexter;;;[];;;;text;t2_1y4e64pq;False;False;[];;"I don't stay too up to date on these things. - -What happened to Jujutsu Kaisen? - -Is the first season over?";False;False;;;;1610140250;;False;{};gil1ez4;False;t3_kt292n;False;True;t1_gijfzkx;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil1ez4/;1610180626;1;True;False;anime;t5_2qh22;;0;[]; -[];;;nashbeez;;;[];;;;text;t2_10awl4;False;False;[];;Thank you for sharing this video.;False;False;;;;1610140371;;False;{};gil1ohn;False;t3_kt3sy5;False;False;t1_gik48jw;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gil1ohn/;1610180778;9;True;False;anime;t5_2qh22;;0;[]; -[];;;stiveooo;;;[];;;;text;t2_9amaa;False;False;[];;yes;False;False;;;;1610140423;;False;{};gil1smj;False;t3_kt3sy5;False;True;t1_gijn2bq;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gil1smj/;1610180840;0;True;False;anime;t5_2qh22;;0;[]; -[];;;AbaddonFamiLy;;;[];;;;text;t2_1glh6qwc;False;False;[];;"Arc 5 has more than enough content for a full 2-cour season (24 episodes). - -Remember that with S2 and S1, a lot of OPs and EDs were skipped, and that the cut content isn't negligible (some really important info got cut in S1 and S2 aswell).";False;False;;;;1610140451;;False;{};gil1utm;False;t3_kt292n;False;True;t1_gik4jsa;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil1utm/;1610180874;3;True;False;anime;t5_2qh22;;0;[]; -[];;;stiveooo;;;[];;;;text;t2_9amaa;False;False;[];;"""jump"" stuff is more dangerous";False;False;;;;1610140493;;False;{};gil1y6i;False;t3_kt3sy5;False;False;t1_giks657;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gil1y6i/;1610180924;10;True;False;anime;t5_2qh22;;0;[]; -[];;;GoldenDude;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/GoldenBoy808;light;text;t2_ay8d1;False;False;[];;It was on break last week;False;False;;;;1610140538;;False;{};gil21oo;False;t3_kt292n;False;True;t1_gikupnu;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil21oo/;1610180977;3;True;False;anime;t5_2qh22;;0;[]; -[];;;mantisman;;;[];;;;text;t2_6jvk8;False;False;[];;If you support any Shonen Jump series then you’re giving money to Shueisha, if you’re going to boycott ALL of those then you’re hurting a whole lot more people than whoever’s behind this mess.;False;False;;;;1610140596;;1610144995.0;{};gil268b;False;t3_kt3sy5;False;False;t1_gik8vyn;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gil268b/;1610181047;9;True;False;anime;t5_2qh22;;0;[]; -[];;;Bypes;;;[];;;;text;t2_4hv39;False;False;[];;I do see why the spam can be annoying even without revealing anything.;False;False;;;;1610140640;;False;{};gil29lt;False;t3_kt292n;False;False;t1_gikdbv9;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil29lt/;1610181099;5;True;False;anime;t5_2qh22;;0;[]; -[];;;PerroXX;;;[];;;;text;t2_byqd0;False;False;[];;This happens for only Shonen Jump titles or they are banning any title from Shueisha?;False;False;;;;1610140771;;False;{};gil2k2i;False;t3_kt3sy5;False;False;t1_gijmyg2;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gil2k2i/;1610181256;7;True;False;anime;t5_2qh22;;0;[]; -[];;;johnwb388;;;[];;;;text;t2_10bwsf;False;False;[];;"Where do I find out more about re: zero? - -Is the series complete already? Is it a manga?";False;False;;;;1610140880;;False;{};gil2sf0;False;t3_kt292n;False;True;t1_gijdqbs;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil2sf0/;1610181381;1;True;False;anime;t5_2qh22;;0;[]; -[];;;extraspaghettisauce;;;[];;;;text;t2_47ixyqzn;False;False;[];;There are 2 cells at work animes? Wut;False;False;;;;1610141187;;False;{};gil3fso;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil3fso/;1610181734;2;True;False;anime;t5_2qh22;;0;[]; -[];;;kalirion;;MAL;[];;http://myanimelist.net/animelist/kalinime;dark;text;t2_ao71h;False;False;[];;"The only ""relatively direct"" monitory support I give is through the $2 Viz subscription. Otherwise I read their free stuff on manga+ and viz apps and watch their anime on Crunchyroll.";False;False;;;;1610141233;;False;{};gil3jem;False;t3_kt3sy5;False;False;t1_gil268b;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gil3jem/;1610181788;10;True;False;anime;t5_2qh22;;0;[]; -[];;;CarcosanAnarchist;;;[];;;;text;t2_fmrcc;False;False;[];;It’s a broken bot. It’s also hitting official employees of Shueisha.;False;False;;;;1610141259;;False;{};gil3lfh;False;t3_kt3sy5;False;False;t1_gijx15v;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gil3lfh/;1610181819;10;True;False;anime;t5_2qh22;;0;[]; -[];;;CarcosanAnarchist;;;[];;;;text;t2_fmrcc;False;False;[];;They did. It’s a broken bot.;False;False;;;;1610141285;;False;{};gil3ni3;False;t3_kt3sy5;False;False;t1_gika7b1;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gil3ni3/;1610181850;21;True;False;anime;t5_2qh22;;0;[]; -[];;;PrasantGrg;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/PrasantGrG;light;text;t2_127zip;False;False;[];;"[Shueisha can't stop shooting themselves](https://twitter.com/newworldartur/status/1347598186823770117?s=19) - -[Screenshots of the stream](https://twitter.com/takigare3/status/1347575832714244096?s=19)";False;False;;;;1610141286;;False;{};gil3nm8;False;t3_kt3sy5;False;False;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gil3nm8/;1610181852;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Vital_Blinks;;;[];;;;text;t2_79acq3hi;False;False;[];;Spider isekei is out now;False;False;;;;1610141380;;False;{};gil3uy2;False;t3_kt292n;False;True;t1_gijgwte;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil3uy2/;1610181963;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;On the 6, two days ago, check crunchyroll maybe or netfilx?;False;False;;;;1610141709;;False;{};gil4kdj;False;t3_kt292n;False;True;t1_gil0tn1;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil4kdj/;1610182344;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;There's a the cute one and the dark one.;False;False;;;;1610141746;;False;{};gil4n9y;False;t3_kt292n;False;False;t1_gil3fso;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil4n9y/;1610182388;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Efreet0;;;[];;;;text;t2_fdxuh;False;False;[];;"Only ep1 is out :P - -It feels like a generic sport anime, i hated Hinata with passion but this new MC is absolutely boring. - -The animation was not bad but not exactly good, the CO-MC is basically a Kageyama ripoff. - -Also the whole thing dragged with gloom and no hint of being funny. - -It's definitely too soon to tell but i wasn't enchanted by it.";False;False;;;;1610141748;;False;{};gil4nep;False;t3_kt292n;False;True;t1_gikuyaw;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil4nep/;1610182390;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Noisycow777;;;[];;;;text;t2_1t15g78u;False;False;[];;It’s not gonna be much of a battle for Attack on Titan after what’s going to happen in next week’s episode;False;False;;;;1610141815;;False;{};gil4sii;False;t3_kt292n;False;False;t1_gijfzkx;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil4sii/;1610182466;5;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;There's two baby, the classic and black.;False;False;;;;1610141821;;False;{};gil4sx2;False;t3_kt292n;False;True;t1_gil0iev;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil4sx2/;1610182472;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Noisycow777;;;[];;;;text;t2_1t15g78u;False;False;[];;No, they took a 2 week break and will resume next week;False;False;;;;1610141834;;False;{};gil4tyn;False;t3_kt292n;False;True;t1_gil1ez4;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil4tyn/;1610182487;1;True;False;anime;t5_2qh22;;0;[]; -[];;;undertoned-;;;[];;;;text;t2_8wxzh8fi;False;False;[];;Hope you are right.;False;False;;;;1610141842;;False;{};gil4uj6;False;t3_kt292n;False;True;t1_gik5wtj;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil4uj6/;1610182495;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;extraspaghettisauce;;;[];;;;text;t2_47ixyqzn;False;False;[];;I see , I've never watched any of them, are they any good?;False;False;;;;1610141851;;False;{};gil4v9w;False;t3_kt292n;False;True;t1_gil4n9y;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil4v9w/;1610182507;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> bet you couldn't guess what is my most favorite anime - -JoJo";False;False;;;;1610141874;;False;{};gil4x3h;False;t3_kt292n;False;False;t1_gikwtv9;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil4x3h/;1610182533;4;True;False;anime;t5_2qh22;;0;[]; -[];;;PeteyGANG;;;[];;;;text;t2_20krzyez;False;False;[];;There are some. Capcom helped fund the Street FIghter x Mega Man crossover fan game. They also politely asked the Resident Evil Remake fangame to be taken down so as not to compete with sales of the official one, also giving them a holiday to Japan to have a tour of their studio. Probably others.;False;False;;;;1610141911;;False;{};gil500u;False;t3_kt3sy5;False;False;t1_gikr9s0;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gil500u/;1610182579;34;True;False;anime;t5_2qh22;;0;[]; -[];;;SexyJarJarBinks;;;[];;;;text;t2_75f1ldlc;False;False;[];;What? How can you tell?;False;False;;;;1610141925;;False;{};gil513t;False;t3_kt292n;False;False;t1_gil4x3h;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil513t/;1610182595;6;True;False;anime;t5_2qh22;;0;[]; -[];;;_ItsEnder;;;[];;;;text;t2_1qbau6jf;False;False;[];;Well said;False;False;;;;1610141952;;False;{};gil537o;False;t3_kt292n;False;False;t1_gikfdm2;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil537o/;1610182628;7;True;False;anime;t5_2qh22;;0;[]; -[];;;kiyotaka-6;;;[];;;;text;t2_7t4ayv4o;False;False;[];;I thought I was the only one who liked Jaku Chara despite the MC's cringe;False;False;;;;1610141976;;False;{};gil5546;False;t3_kt292n;False;True;t1_gijgl6j;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil5546/;1610182656;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kiyotaka-6;;;[];;;;text;t2_7t4ayv4o;False;False;[];;Whats the issue ? I want to know;False;False;;;;1610142032;;False;{};gil59ea;False;t3_kt292n;False;True;t1_gik4evb;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil59ea/;1610182722;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Noisycow777;;;[];;;;text;t2_1t15g78u;False;False;[];;The manga readers, me being one of them, are just upset about the last third of the series. Season 2 will still be very good and enjoyable.;False;False;;;;1610142033;;False;{};gil59f7;False;t3_kt292n;False;True;t1_gikhyse;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil59f7/;1610182722;0;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"I'm just that good. - -You 27 days ago wrote: **Where JoJo** on /r/anime Karma & Poll Ranking | Week 10 [Fall 2020]";False;False;;;;1610142146;;False;{};gil5i8s;False;t3_kt292n;False;False;t1_gil513t;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil5i8s/;1610182857;4;True;False;anime;t5_2qh22;;0;[]; -[];;;kiyotaka-6;;;[];;;;text;t2_7t4ayv4o;False;False;[];;Damn people will definitely dont like spider as much as mushoku because of the CG;False;False;;;;1610142210;;False;{};gil5n4a;False;t3_kt292n;False;False;t1_gijow7x;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil5n4a/;1610182930;14;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;I really like black, the classic is just more of the same so if you like the first you'll probably enjoy this too.;False;False;;;;1610142241;;False;{};gil5phk;False;t3_kt292n;False;True;t1_gil4v9w;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil5phk/;1610182966;2;True;False;anime;t5_2qh22;;0;[]; -[];;;trialv2170;;;[];;;;text;t2_4uefcpbb;False;False;[];;oh definitely that's true next week. Boy the next few moments after the previous episode is explosive. Can't wait for the next episode.;False;False;;;;1610142244;;False;{};gil5ppa;False;t3_kt292n;False;True;t1_gijglgq;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil5ppa/;1610182969;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CorbenikTheRebirth;;;[];;;;text;t2_g98wg;False;False;[];;Copyright is a lot more strict in Japan, so that likely has a lot to do with it.;False;False;;;;1610142245;;False;{};gil5pry;False;t3_kt3sy5;False;False;t1_gikd44p;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gil5pry/;1610182970;22;True;False;anime;t5_2qh22;;0;[]; -[];;;GonTheDinosaur;;MAL;[];;http://myanimelist.net/animelist/gon7T;dark;text;t2_dzokm;False;False;[];;Unless Redo Healer rapes the chart;False;False;;;;1610142247;;False;{};gil5pxi;False;t3_kt292n;False;True;t1_gijelco;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil5pxi/;1610182972;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Thiccc_Duccc;;;[];;;;text;t2_5j1asylw;False;False;[];;I thought the cgi didn’t look great but even so, it didn’t really bother me;False;False;;;;1610142279;;False;{};gil5se6;False;t3_kt292n;False;False;t1_gil5n4a;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil5se6/;1610183009;17;True;False;anime;t5_2qh22;;0;[]; -[];;;extraspaghettisauce;;;[];;;;text;t2_47ixyqzn;False;False;[];;Will check it out , thanks mate.;False;False;;;;1610142283;;False;{};gil5so9;False;t3_kt292n;False;True;t1_gil5phk;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil5so9/;1610183013;2;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;">It’s just that AOT is way more popular than Re:Zero. - -Probably for a reason?...";False;False;;;;1610142296;;False;{};gil5tl4;False;t3_kt292n;False;True;t1_gikl1bp;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil5tl4/;1610183028;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kiyotaka-6;;;[];;;;text;t2_7t4ayv4o;False;False;[];;It didn't bother me too but some people hate it;False;False;;;;1610142328;;False;{};gil5w1f;False;t3_kt292n;False;False;t1_gil5se6;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil5w1f/;1610183064;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Thiccc_Duccc;;;[];;;;text;t2_5j1asylw;False;False;[];;Yeah but people will complain about everything cgi related. Aot s4 ep1 cgi was amazing IMO but a lot of people acted like it was the worst thing ever;False;False;;;;1610142418;;False;{};gil62jg;False;t3_kt292n;False;False;t1_gil5w1f;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil62jg/;1610183161;8;True;False;anime;t5_2qh22;;0;[]; -[];;;trialv2170;;;[];;;;text;t2_4uefcpbb;False;False;[];;the show is just that popular. I knew some people who doesn't watch anime mentioned AOT out of nowhere. They were really hyped and pumped about after binge watching it from s1-s3. Sadly I can't discuss season 4 with them because they try to watch it dub.;False;False;;;;1610142441;;False;{};gil64gi;False;t3_kt292n;False;True;t1_gijqw6w;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil64gi/;1610183191;2;True;False;anime;t5_2qh22;;0;[]; -[];;;SexyJarJarBinks;;;[];;;;text;t2_75f1ldlc;False;False;[];;Let me guess, your favorite anime is re:zero;False;False;;;;1610142578;;False;{};gil6eup;False;t3_kt292n;False;False;t1_gil5i8s;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil6eup/;1610183348;6;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"crunchyroll, funimation, nextflix, hulu.. * - -It depends on your geographic location really and what show you wanna watch.";False;False;;;;1610142649;;False;{};gil6kcy;False;t3_kt292n;False;True;t1_giky3m3;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil6kcy/;1610183435;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;Bingo!;False;False;;;;1610142685;;False;{};gil6n5d;False;t3_kt292n;False;False;t1_gil6eup;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil6n5d/;1610183477;4;True;False;anime;t5_2qh22;;0;[]; -[];;;fredthefishlord;;;[];;;;text;t2_ba5at3b;False;False;[];;Badly written perversion, worships his mentor's panties.;False;False;;;;1610142761;;False;{};gil6sv3;False;t3_kt292n;False;False;t1_gil59ea;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil6sv3/;1610183566;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Karl_the_stingray;;;[];;;;text;t2_5y6ceb3k;False;False;[];;Any title from Shueisha from what I have gathered;False;False;;;;1610142906;;False;{};gil73uf;False;t3_kt3sy5;False;False;t1_gil2k2i;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gil73uf/;1610183736;6;True;False;anime;t5_2qh22;;0;[]; -[];;;imwatching4you;;;[];;;;text;t2_422nydwa;False;False;[];;"How is cells at work? -As recommendable as it's position on the chart?";False;False;;;;1610142958;;False;{};gil77wx;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil77wx/;1610183797;1;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> Next weeks re zero episode will be the start of what everyone has been waiting for. The dialogue episodes are over. - -I'm counting the minutes!";False;False;;;;1610142966;;False;{};gil78h2;False;t3_kt292n;False;False;t1_gik50ua;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil78h2/;1610183806;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Karl_the_stingray;;;[];;;;text;t2_5y6ceb3k;False;False;[];;Man this season is so stacked, and right when I have the most schoolwork too... Fml I probably won't be able to watch much this season;False;False;;;;1610143055;;False;{};gil7f3p;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil7f3p/;1610183916;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kiyotaka-6;;;[];;;;text;t2_7t4ayv4o;False;False;[];;"I voted AOT for this week I mean you know why. next ep will be on same level of ""Hero"" so yeah..";False;False;;;;1610143216;;False;{};gil7r5b;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil7r5b/;1610184093;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Laughing_Koffin;;;[];;;;text;t2_8335f3y8;False;False;[];;The first episode of both Jaku-Chara and Oregairu were so similar;False;False;;;;1610143269;;False;{};gil7v6t;False;t3_kt292n;False;True;t1_gijgl6j;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil7v6t/;1610184154;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;"> Rezero is at it's best with it's dialgoue. - -Very true.";False;False;;;;1610143350;;False;{};gil81ax;False;t3_kt292n;False;False;t1_giklb4v;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil81ax/;1610184248;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kiyotaka-6;;;[];;;;text;t2_7t4ayv4o;False;False;[];;Imagine chapter 122 it will get 69k karma lol;False;False;;;;1610143490;;False;{};gil8bu2;False;t3_kt292n;False;True;t1_gijqv3q;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil8bu2/;1610184405;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GachaBrain;;;[];;;;text;t2_7lb27oea;False;False;[];;Dude one piece is the best all other anime are trash its the most popular dont @ me;False;False;;;;1610143514;;False;{};gil8djj;False;t3_kt292n;False;True;t1_gil5tl4;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil8djj/;1610184432;0;True;False;anime;t5_2qh22;;0;[]; -[];;;HeroVonZero;;;[];;;;text;t2_ofbiw;False;False;[];;"I would imagine every form of an IP would have a fair amount of royalties to the author and the production team. - -So yes.";False;False;;;;1610143546;;False;{};gil8fxt;False;t3_kt292n;False;False;t1_gil1drl;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil8fxt/;1610184469;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Tsubasa_sama;;;[];;;;text;t2_fbdp5;False;False;[];;Completely unrelated to TPN but kids outsmarting adults who went through the same process as them happens plenty of times in the real world. In chess for example 12-year old prodigies beat grandmasters who have spent decades studying the game.;False;False;;;;1610143564;;False;{};gil8hb8;False;t3_kt292n;False;False;t1_gikra5c;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil8hb8/;1610184489;17;True;False;anime;t5_2qh22;;0;[]; -[];;;GachaBrain;;;[];;;;text;t2_7lb27oea;False;False;[];;I absolutely love both AoT and ReZero and I hate the way people have to put down other series to elevate their favorite one. No one cares about your tribalistic fanboying.;False;False;;;;1610143642;;False;{};gil8n1q;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil8n1q/;1610184575;17;True;False;anime;t5_2qh22;;0;[]; -[];;;kaneki34;;;[];;;;text;t2_5mo1jfk1;False;False;[];; death March;False;False;;;;1610143810;;False;{};gil8zhh;False;t3_kt3hwl;False;False;t3_kt3hwl;/r/anime/comments/kt3hwl/looking_for_some_isekai_anime/gil8zhh/;1610184767;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Random_Queen123;;;[];;;;text;t2_8y1j366x;False;False;[];;Ahem what about Naruto and HunterxHunter hello anyone forget about My Hero Acadimea??? Attack on Titan;False;True;;comment score below threshold;;1610143834;;False;{};gil91c0;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil91c0/;1610184798;-8;True;False;anime;t5_2qh22;;0;[]; -[];;;Far_Mistake_8245;;;[];;;;text;t2_7w4bnbd6;False;False;[];;I use those sites but they don't seem to have the new winter animes;False;False;;;;1610143845;;False;{};gil9256;False;t3_kt292n;False;True;t1_gil6kcy;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil9256/;1610184812;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Random_Queen123;;;[];;;;text;t2_8y1j366x;False;False;[];;Other animes exist to ya know;False;False;;;;1610143854;;False;{};gil92wb;False;t3_kt292n;False;True;t1_gil91c0;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil92wb/;1610184823;1;True;False;anime;t5_2qh22;;0;[]; -[];;;lilibz;;;[];;;;text;t2_5cvs23zw;False;False;[];;HUHHHHH I thought it was a great build up episode;False;False;;;;1610143882;;False;{};gil951u;False;t3_kt292n;False;False;t1_gijkca2;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil951u/;1610184856;7;True;False;anime;t5_2qh22;;0;[]; -[];;;mydckisvrysmol;;;[];;;;text;t2_72ugq78o;False;False;[];;Attack on Titan gonna smash the chart this week;False;False;;;;1610143932;;False;{};gil98tt;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil98tt/;1610184913;1;True;False;anime;t5_2qh22;;0;[]; -[];;;EhDbl;;;[];;;;text;t2_lguip;False;False;[];;What's with all these crazy ass names;False;False;;;;1610144126;;False;{};gil9nbq;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil9nbq/;1610185133;1;True;False;anime;t5_2qh22;;0;[]; -[];;;VortechsTG;;;[];;;;text;t2_2hyzevmv;False;False;[];;Yikes. I'll never understand why so many light novels have sexual fanservice.;False;False;;;;1610144241;;False;{};gil9vpy;False;t3_kt292n;False;False;t1_gil6sv3;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gil9vpy/;1610185259;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Niiphox;;;[];;;;text;t2_4ufsw4qj;False;False;[];;OMFG RE ZERO PART 2 and quintessential quintuplets season 2 YES YES YES YES !!!!;False;False;;;;1610144310;;False;{};gila0s8;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gila0s8/;1610185336;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Noneerror;;;[];;;;text;t2_ab6v8;False;False;[];;"> 158 - -Well, there's your [problem](https://images.cdn.circlesix.co/image/1/700/0/uploads/posts/2017/06/be4fe1c390db651ad31ed6331421e445.png).";False;False;;;;1610144533;;False;{};gilahdb;False;t3_kt292n;False;False;t1_giklftw;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilahdb/;1610185589;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ic3paw;;;[];;;;text;t2_4rkbzkjs;False;False;[];;Nice;False;False;;;;1610144826;;False;{};gilb35c;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilb35c/;1610185921;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DoombotBL;;;[];;;;text;t2_imbw7;False;False;[];;What a joke;False;False;;;;1610145218;;False;{};gilbw6e;False;t3_kt3sy5;False;True;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gilbw6e/;1610186370;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610145221;;False;{};gilbwc6;False;t3_kt3sy5;False;True;t1_gil500u;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gilbwc6/;1610186374;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Petricality;;;[];;;;text;t2_3ebx5s48;False;False;[];;I always knew MAL was shit but holy fk the difference between the results in this post and MAL scores is fucking atrocious.;False;False;;;;1610145301;;False;{};gilc27u;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilc27u/;1610186462;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CommandLionInterface;;;[];;;;text;t2_yol77;False;False;[];;THEY MADE A SEQUEL OF QUINTESSENTIAL QUINTUPLETS!?’?!?!?;False;False;;;;1610145311;;False;{};gilc2xo;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilc2xo/;1610186473;1;True;False;anime;t5_2qh22;;0;[]; -[];;;blueooze;;;[];;;;text;t2_4txgx;False;False;[];;why do you guys care about a ranking that has 1500 votes;False;False;;;;1610145371;;False;{};gilc7ed;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilc7ed/;1610186539;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheIIArencibia;;;[];;;;text;t2_o97xk4b;False;False;[];;When you are in the internet you fight pirates!;False;False;;;;1610145428;;False;{};gilcboq;False;t3_kt3sy5;False;False;t1_gik4vxd;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gilcboq/;1610186605;8;True;False;anime;t5_2qh22;;0;[]; -[];;;Hezull;;;[];;;;text;t2_xe00l;False;False;[];;"This. A great part of the DCMA madness. There is never any consequence for false claims so scumy music labels and outdated japanese companies like Nintendo just use bots. - -Those bots act like bot and make ridiculous strikes like against an official Dragon Ball artist here.";False;False;;;;1610145777;;False;{};gild1bb;False;t3_kt3sy5;False;False;t1_gikpt07;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gild1bb/;1610186995;18;True;False;anime;t5_2qh22;;0;[]; -[];;;KilluaOG;;;[];;;;text;t2_39m3fg6w;False;False;[];;Holy ruck me. So many good anime this season;False;False;;;;1610145884;;False;{};gild959;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gild959/;1610187112;1;True;False;anime;t5_2qh22;;0;[]; -[];;;benbot5097;;;[];;;;text;t2_6nxuyorg;False;False;[];;Wait is quintuplets s2 out?;False;False;;;;1610146068;;False;{};gildmlz;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gildmlz/;1610187314;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Bertdog211;;;[];;;;text;t2_108m49;False;False;[];;I loved cells at work where can I watch more cells at the work;False;False;;;;1610146079;;False;{};gildnh2;False;t3_kt292n;False;True;t1_gil4sx2;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gildnh2/;1610187328;2;True;False;anime;t5_2qh22;;0;[]; -[];;;whhhhhh-jskeifysj;;;[];;;;text;t2_5gcyn740;False;False;[];;Promised Neverland is pog;False;False;;;;1610146239;;False;{};gildz6a;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gildz6a/;1610187501;1;True;False;anime;t5_2qh22;;0;[]; -[];;;14MySterY-;;;[];;;;text;t2_b3n4y;False;False;[];;Until the last episode.;False;False;;;;1610146455;;False;{};gilef94;False;t3_kt292n;False;True;t1_gijggpi;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilef94/;1610187744;3;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;" - -It depends on your geographic location really but check crunchyroll, funimation, nextflix, hulu.. *";False;False;;;;1610146521;;False;{};gilek12;False;t3_kt292n;False;False;t1_gildnh2;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilek12/;1610187818;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ultimatemegax;;;[];;;;text;t2_6g6sj;False;False;[];;No, that law (and previous ones) allowed for usage like on social media sites. The law passed last year helped clarify that it's meant to be illegal to upload chapters of manga and such, not that people can't share a panel or so of a series.;False;False;;;;1610146662;;False;{};gileudt;False;t3_kt3sy5;False;False;t1_gijn2bq;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gileudt/;1610187974;8;False;False;anime;t5_2qh22;;0;[]; -[];;;trixfyy;;;[];;;;text;t2_1m1n0b9f;False;False;[];;Don't know anything about this. Can you give me a clue so I can search?;False;False;;;;1610146677;;False;{};gilevfz;False;t3_kt3sy5;False;True;t1_gik2ya6;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gilevfz/;1610187989;2;True;False;anime;t5_2qh22;;0;[]; -[];;;liyewac926;;;[];;;;text;t2_769h2ors;False;False;[];;In the grand scheme it wont affect them much, but yeah they are both juicy shows.;False;False;;;;1610146689;;False;{};gilewe1;False;t3_kt292n;False;False;t1_gil8n1q;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilewe1/;1610188004;10;True;False;anime;t5_2qh22;;0;[]; -[];;;Bertdog211;;;[];;;;text;t2_108m49;False;False;[];;It seems like it funimation which is the one service I don’t have;False;False;;;;1610146813;;False;{};gilf5dp;False;t3_kt292n;False;True;t1_gilek12;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilf5dp/;1610188138;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Fistful-of-Flan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Fistful-of-Flan;light;text;t2_4izmti5h;False;False;[];;I'm not up to date on the LN version, but from what I remember it was pretty similar to the WN. In addition to the standard refinements, iirc, it toned down some of the controversial stuff from the WN and added a mini arc in volume 7. At the very least, the LN covers still seem to be following the events as they occur in the WN.;False;False;;;;1610146895;;False;{};gilfbdl;False;t3_kt292n;False;True;t1_gijz8j5;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilfbdl/;1610188227;2;True;False;anime;t5_2qh22;;0;[]; -[];;;scorcher117;;MAL;[];;http://myanimelist.net/animelist/scorcher117;dark;text;t2_d46kf;False;False;[];;Everything about how they handled youtubers in the past 5 years, that alone gives an idea.;False;False;;;;1610146902;;False;{};gilfbwu;False;t3_kt3sy5;False;False;t1_gilevfz;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gilfbwu/;1610188235;14;True;False;anime;t5_2qh22;;0;[]; -[];;;SucyTA;;;[];;;;text;t2_j7lhuj0;False;False;[];;"I don't understand your point, jjk is really popular and is probably going to be more popular, for a new show it has a lot of karma on reddit, it's doing great on MAL, a lot of views on youtube, episodes trending on twitter and the franchise is selling a lot (sold a looot more than Aot's franchise in 2020, edit: a little less than double the amount). AOT being more popular and ""demolishing"" in karma jjk doesn't change the fact that at the moment JJK is really popular";False;False;;;;1610146937;;1610184038.0;{};gilfejd;False;t3_kt292n;False;False;t1_gikorai;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilfejd/;1610188272;10;True;False;anime;t5_2qh22;;0;[]; -[];;;KUIDORI;;;[];;;;text;t2_7r36gixx;False;False;[];;is Other side Picnic good?;False;False;;;;1610146995;;False;{};gilfikr;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilfikr/;1610188331;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MajesticEagle13;;;[];;;;text;t2_34r5805c;False;False;[];;Winter seasons looking sick;False;False;;;;1610147026;;False;{};gilfksy;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilfksy/;1610188364;1;True;False;anime;t5_2qh22;;0;[]; -[];;;capttaain;;;[];;;;text;t2_pzne71r;False;False;[];;I can somewhat understand if its manga;False;False;;;;1610147211;;False;{};gilfy3p;False;t3_kt3sy5;False;True;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gilfy3p/;1610188564;2;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610147288;;False;{};gilg3qu;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilg3qu/;1610188649;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KawaiiMajinken;;;[];;;;text;t2_102m81;False;False;[];;From zero to hero man. The good old hero's journey, problem is... Rudeus is a big ZERO.;False;False;;;;1610147421;;False;{};gilgdgu;False;t3_kt292n;False;True;t1_gijzcad;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilgdgu/;1610188794;2;True;False;anime;t5_2qh22;;0;[]; -[];;;KawaiiMajinken;;;[];;;;text;t2_102m81;False;False;[];;Chuuni Isekai is the best, wish it got an anime.;False;False;;;;1610147457;;False;{};gilgg5d;False;t3_kt292n;False;True;t1_gik9p3n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilgg5d/;1610188836;1;True;False;anime;t5_2qh22;;0;[]; -[];;;darkbladetrey;;;[];;;;text;t2_pnr27;False;False;[];;Thank you! I’m so sad that many people will watch this anime and be entertained and then watch the show take a sharp decline soon. This story had so much potential.;False;False;;;;1610147708;;False;{};gilgy9b;False;t3_kt292n;False;True;t1_gijleqo;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilgy9b/;1610189107;2;True;False;anime;t5_2qh22;;0;[]; -[];;;xRyozuo;;;[];;;;text;t2_y1ldm;False;False;[];;I started otherside picnic and kinda like it, feels like a change of pace from all I’ve been watching lately;False;False;;;;1610147753;;False;{};gilh1bs;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilh1bs/;1610189154;1;True;False;anime;t5_2qh22;;0;[]; -[];;;DaRkHuMuR_LoVeR;;;[];;;;text;t2_6wqabp3q;False;False;[];;Is cells at work good?;False;False;;;;1610147858;;False;{};gilh8uo;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilh8uo/;1610189269;1;True;False;anime;t5_2qh22;;0;[]; -[];;;trixfyy;;;[];;;;text;t2_1m1n0b9f;False;False;[];;Uh, ok thanks.;False;False;;;;1610148044;;False;{};gilhm5l;False;t3_kt3sy5;False;False;t1_gilfbwu;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gilhm5l/;1610189467;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Argengumentum;;;[];;;;text;t2_te9gh;False;False;[];;that is indeed very yikes;False;False;;;;1610148341;;False;{};gili7rn;False;t3_kt3sy5;False;True;t1_gikh3a9;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gili7rn/;1610189784;1;True;False;anime;t5_2qh22;;0;[]; -[];;;sonberta;;;[];;;;text;t2_6brozub8;False;False;[];;Goated season.;False;False;;;;1610148400;;False;{};gilic2d;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilic2d/;1610189846;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AlessandroLuz;;;[];;;;text;t2_7aik3ftq;False;False;[];;"I loved the two first episodes of mushoku tensei, the story seem interesting and the animation is really good, I'm already growing interest in it's source. - -And I love Tomozaki-kun but the first episode was just the introduction to the logic of the story, they really took their time in this setting, which I appreciate, the real things will still come";False;False;;;;1610148416;;False;{};gilidco;False;t3_kt292n;False;False;t1_gijgl6j;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilidco/;1610189866;2;True;False;anime;t5_2qh22;;0;[]; -[];;;astront1553;;;[];;;;text;t2_1a87rxuw;False;False;[];;"We should do a ""Top 10 anime of the week that are not second seasons""";False;False;;;;1610148469;;False;{};gilihat;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilihat/;1610189924;1;True;False;anime;t5_2qh22;;0;[]; -[];;;RickyR0lled;;;[];;;;text;t2_1amp99ua;False;False;[];;"Better advertising, a more broad and widespread appeal as it’s very action oriented and not an isekai, lots of other variables that have nothing to do with each anime’s respective quality. - -AOT has also been going/been around for a lot longer, and with wide gaps in between updates, makes AOT extremely hyped up every time there’s a new season/episode.";False;False;;;;1610148653;;False;{};giliuty;False;t3_kt292n;False;False;t1_gil5tl4;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giliuty/;1610190128;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Madnishi_02;;;[];;;;text;t2_3ion838m;False;False;[];;Where are y'all watching beastars season 2?;False;False;;;;1610148859;;False;{};gilja17;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilja17/;1610190364;1;True;False;anime;t5_2qh22;;0;[]; -[];;;CoolFiverIsABabe;;;[];;;;text;t2_11jwf7gv;False;False;[];;Anyone who's watching quintessential is it close to the Manga? If you were to choose a starting point would you do anime or manga?;False;False;;;;1610149049;;False;{};giljoa2;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giljoa2/;1610190577;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Melbuf;;;[];;;;text;t2_j03jl;False;False;[];;"this one is recent - -https://www.techdirt.com/articles/20201209/12005845853/nintendo-hates-you-dmca-takedowns-game-music-continue-while-nintendo-offers-no-legit-way-to-listen.shtml - -last year - -https://www.mcvuk.com/business-news/nintendo-issues-hundreds-of-copyright-strikes-against-youtube-creators-sharing-nintendo-music/ - -2017 - -https://www.polygon.com/2017/11/6/16612080/youtube-nintendo-super-mario-odyssey-demonetization - -2015 - -https://www.forbes.com/sites/insertcoin/2015/02/06/nintendo-updates-their-bad-youtube-policies-by-making-them-worse/?sh=aed9742c76f6 - -2013 - -https://readwrite.com/2013/05/23/nintendo-goes-for-epic-fail-grabs-copyright-from-its-youtube-fans/ - - -i could prob go on but you get the idea";False;False;;;;1610149201;;False;{};giljzo9;False;t3_kt3sy5;False;False;t1_gilevfz;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/giljzo9/;1610190759;30;True;False;anime;t5_2qh22;;0;[]; -[];;;MelonElbows;;;[];;;;text;t2_5leqv6e;False;False;[];;Where is the dungeon kid from the boonies streaming? Not on crunchyroll;False;False;;;;1610149277;;False;{};gilk5ek;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilk5ek/;1610190846;1;True;False;anime;t5_2qh22;;0;[]; -[];;;xariixx;;;[];;;;text;t2_8i1fu47q;False;False;[];;promised neverland didn’t take #1? hmm, cant wait for them to come out with the rest of the eps;False;False;;;;1610149326;;False;{};gilk92c;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilk92c/;1610190903;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Flying-Camel;;;[];;;;text;t2_eukbw;False;False;[];;Log horizon is up as well! Database!!!;False;False;;;;1610149410;;False;{};gilkfcy;False;t3_kt292n;False;True;t1_gikm5tz;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilkfcy/;1610190994;2;True;False;anime;t5_2qh22;;0;[]; -[];;;dark77638;;;[];;;;text;t2_14cb1i;False;False;[];;Basically chapter 113;False;False;;;;1610149448;;False;{};gilki77;False;t3_kt292n;False;True;t1_gikbcuy;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilki77/;1610191037;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Smart4ssgamer;;;[];;;;text;t2_1p1ph6f7;False;False;[];;WAIT QQ HAS A SEASON 2!?!!;False;False;;;;1610149624;;False;{};gilkvkb;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilkvkb/;1610191239;1;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Lords_Cumstain;;;[];;;;text;t2_5nh3i1hd;False;False;[];;Questionable how?;False;False;;;;1610149863;;False;{};gilldom;False;t3_kt292n;False;True;t1_gijyxe6;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilldom/;1610191513;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MABfan11;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MABfan11;light;text;t2_xdlmc;False;False;[];;"the WN is available at [witchculttranslation.com](https://witchculttranslation.com/) - -both the LN and WN are on Arc 6 out of 11 - -the anime is currently in Arc 4 - -the manga is behind the anime at this point";False;False;;;;1610149870;;False;{};gille7p;False;t3_kt292n;False;True;t1_gil2sf0;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gille7p/;1610191521;3;True;False;anime;t5_2qh22;;0;[]; -[];;;fredthefishlord;;;[];;;;text;t2_ba5at3b;False;False;[];;Perversion. Shitty, terribly done, godawful perversion. It'd at least be fine if it was done with even a tenth of the skill of writing as the rest of the story;False;False;;;;1610149911;;False;{};gillhf8;False;t3_kt292n;False;True;t1_gilldom;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gillhf8/;1610191572;3;True;False;anime;t5_2qh22;;0;[]; -[];;;kirsion;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/RicardosFlick;light;text;t2_fhdkw;False;False;[];;That's why you hardly see fan posted Japanese music on youtube. Whereas korean music, anyone can use it but ad money will go to the music company. Partially why I think kpop music is more popular than jpop since it's free to listen and discover on youtube.;False;False;;;;1610150256;;False;{};gilm72f;False;t3_kt3sy5;False;False;t1_gil5pry;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gilm72f/;1610191964;23;True;False;anime;t5_2qh22;;0;[]; -[];;;AyyIsForApple;;;[];;;;text;t2_9qaf1ep;False;False;[];;Interesting that the top three are all sequels, and there’s a huge drop off in vote percentage from 3rd to 4th place. This season definitely seems like a season dominated by sequels, more so when AoT final season comes out;False;False;;;;1610150527;;False;{};gilmr5p;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilmr5p/;1610192275;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vtoutdoorsman;;;[];;;;text;t2_1srl6ltw;False;False;[];;Idk why people like Re:zero. Can somebody please tell me why they like it.;False;False;;;;1610150571;;False;{};gilmu5s;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilmu5s/;1610192320;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Lords_Cumstain;;;[];;;;text;t2_5nh3i1hd;False;False;[];;Do you mean an event concerning a Perversion, a la goblin slayer? Or a perverted character? Or the author wrote in some weird fetish they have? I’m not getting what you mean.;False;False;;;;1610150605;;False;{};gilmwlh;False;t3_kt292n;False;True;t1_gillhf8;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilmwlh/;1610192358;1;True;False;anime;t5_2qh22;;0;[]; -[];;;echonian;;;[];;;;text;t2_8bf7y;False;False;[];;"Using the WN length I think is a bad idea, when the Light Novels have different lengths due to story changes, and the anime is based on the LN. - -Though even with that, Arc 4 is long. But it isn't as much longer as Arcs 5 or 6 as in the WN original. - -Then again, Arc 5 has a lot of battles to adapt - which could make it take longer than you would think.";False;False;;;;1610150844;;False;{};gilndur;False;t3_kt292n;False;False;t1_gikfdux;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilndur/;1610192624;4;True;False;anime;t5_2qh22;;0;[]; -[];;;echonian;;;[];;;;text;t2_8bf7y;False;False;[];;"Yeah, Re:Zero definitely fleshes out its world a lot more. - -But Attack on Titan manages to do just as well, if not better, at fleshing out characters. - -They are ultimately series with different aims and styles, so I don't see the need to fight over it. I love both series, though prefer Re:Zero for the most part.";False;False;;;;1610151099;;False;{};gilnw6e;False;t3_kt292n;False;False;t1_gikrm8c;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilnw6e/;1610192903;12;True;False;anime;t5_2qh22;;0;[]; -[];;;Thematrix756;;;[];;;;text;t2_9p50e1gw;False;False;[];;Check out my new YouTube vid https://youtu.be/f0m1Bfok4yg;False;False;;;;1610151233;;False;{};gilo5td;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilo5td/;1610193050;-1;True;False;anime;t5_2qh22;;0;[]; -[];;;SODRAthegiantweeb;;;[];;;;text;t2_6giicnnw;False;False;[];;Probably soon. Idk why you were downvoted.;False;False;;;;1610151407;;False;{};giloidk;False;t3_kt292n;False;True;t1_gijl35o;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giloidk/;1610193242;2;True;False;anime;t5_2qh22;;0;[]; -[];;;I_AM_A_TOASTER42069;;;[];;;;text;t2_4pw275zj;False;False;[];;Pain;False;False;;;;1610151849;;False;{};gilpdyc;False;t3_kt292n;False;True;t1_gilmu5s;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilpdyc/;1610193754;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;fredthefishlord;;;[];;;;text;t2_ba5at3b;False;False;[];;Perverted character. And probably perverted author. Shit like worshiping panties, some cringe stuff especially in the start. The way he is towards his mentor is weird and creepy. Then a major spoiler plot later in it that's some pretty not side plot stuff that's really stupid.;False;False;;;;1610152093;;False;{};gilpvet;False;t3_kt292n;False;False;t1_gilmwlh;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilpvet/;1610194021;4;True;False;anime;t5_2qh22;;0;[]; -[];;;xAquaf0rteSx;;;[];;;;text;t2_11nlkz;False;False;[];;Ah nice, thanks for the info;False;False;;;;1610152119;;False;{};gilpx9t;False;t3_kt292n;False;True;t1_giku0cu;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilpx9t/;1610194052;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ENKlDU;;;[];;;;text;t2_4scvchzo;False;False;[];;people get caught up on reddit karma lmao jjk is stupid popular;False;False;;;;1610152162;;False;{};gilq0b1;False;t3_kt292n;False;False;t1_gilfejd;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilq0b1/;1610194098;10;True;False;anime;t5_2qh22;;0;[]; -[];;;MejaBersihBanget;;;[];;;;text;t2_4a6wkvny;False;False;[];;Yup which is why I have low expectations for their 86 adaptation;False;False;;;;1610152343;;False;{};gilqde6;False;t3_kt292n;False;True;t1_gikbjo6;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilqde6/;1610194302;3;True;False;anime;t5_2qh22;;0;[]; -[];;;jellyolo12;;;[];;;;text;t2_3f4o5og2;False;False;[];;"Me too! -1. One piece 2. Gintama nothing will come close to them";False;False;;;;1610152423;;False;{};gilqj1e;False;t3_kt4a31;False;True;t1_gik0wg8;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gilqj1e/;1610194388;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ReTheMuss;;;[];;;;text;t2_5kqs11sm;False;False;[];;A lot of people didn't know re zero was getting a second cour to s2 for some reason;False;False;;;;1610152553;;False;{};gilqsgt;False;t3_kt292n;False;False;t1_gijfzkx;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilqsgt/;1610194535;4;True;False;anime;t5_2qh22;;0;[]; -[];;;pyromancerstrike;;;[];;;;text;t2_3f3mlb86;False;False;[];;What happened to attack on titan?;False;False;;;;1610152706;;False;{};gilr3in;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilr3in/;1610194711;2;True;False;anime;t5_2qh22;;0;[]; -[];;;vellsii;;;[];;;;text;t2_2tid8dx4;False;False;[];;And yuri!;False;False;;;;1610152869;;False;{};gilrfdl;False;t3_kt292n;False;True;t1_gik10xy;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilrfdl/;1610194896;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Orsonius2;;;[];;;;text;t2_204y9owl;False;False;[];;">With what should be the last exposition/dialogue heavy episode of the cour - -I hope so. Tired of it. Have to say a lot of the last rezero ep were a bit boring (I knew some spoilers so it's not as fun to learn stuff you already know without any action)";False;False;;;;1610153343;;False;{};gilsd7k;False;t3_kt292n;False;True;t1_gijdqbs;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilsd7k/;1610195430;1;True;False;anime;t5_2qh22;;0;[]; -[];;;GenrlWashington;;;[];;;;text;t2_5a21o;False;False;[];;There's a second season of laid back camp?!!! How did I miss the memo?!!!;False;False;;;;1610153454;;False;{};gilsl8e;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilsl8e/;1610195560;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;Also because people like it more, probably.;False;False;;;;1610153704;;False;{};gilt39h;False;t3_kt292n;False;True;t1_giliuty;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilt39h/;1610195853;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Alkazzi;;;[];;;;text;t2_2bt2ntfk;False;False;[];;Lol re zero is shit;False;True;;comment score below threshold;;1610153723;;False;{};gilt4nr;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilt4nr/;1610195876;-6;True;False;anime;t5_2qh22;;0;[]; -[];;;Euferes;;;[];;;;text;t2_68pdt0b7;False;False;[];;Love how 6/10 are second seasons;False;False;;;;1610153801;;False;{};giltaaa;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giltaaa/;1610195970;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Potato_Lord587;;;[];;;;text;t2_8eeirgsm;False;False;[];;Where are people watching Promised Neverland? It’s not on Crunchyroll for me;False;False;;;;1610153839;;False;{};giltcze;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giltcze/;1610196016;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Phenomenian;;;[];;;;text;t2_3lufdggr;False;False;[];;Is this the mythical chapter 100 I keep hearing about? Anime only here;False;False;;;;1610153852;;False;{};giltdwz;False;t3_kt292n;False;True;t1_gijy0ur;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giltdwz/;1610196032;2;True;False;anime;t5_2qh22;;0;[]; -[];;;The_Lords_Cumstain;;;[];;;;text;t2_5nh3i1hd;False;False;[];;Well that’s wack;False;False;;;;1610153864;;False;{};gilterh;False;t3_kt292n;False;True;t1_gilpvet;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilterh/;1610196044;1;True;False;anime;t5_2qh22;;0;[]; -[];;;yakabo;;;[];;;;text;t2_b25eb;False;False;[];;Kumo desu ka, nani ka will definitely jump up the list.;False;False;;;;1610153944;;False;{};giltkg5;False;t3_kt292n;False;True;t1_gijfmmw;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giltkg5/;1610196135;2;True;False;anime;t5_2qh22;;0;[]; -[];;;princeouji;;;[];;;;text;t2_5wrf3eaj;False;False;[];;"The reason the perversion is extreme is because he's actually human garbage in his previous life. The plot is he is trying to change his life from human garbage, to actual decent human being. What's bad writing is when he magically removes his perversion which he doesn't. - -There's alot of fanservice in this story but this ain't one.";False;False;;;;1610154094;;False;{};giltv7q;False;t3_kt292n;False;True;t1_gil9vpy;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giltv7q/;1610196312;3;True;False;anime;t5_2qh22;;0;[]; -[];;;VortechsTG;;;[];;;;text;t2_2hyzevmv;False;False;[];;"If it's for the plot then I guess it's okay. -But what you're saying for the bad writing part is that he supposedly magically removed his perversion but is still perverted? Correct me if I'm wrong.";False;False;;;;1610154230;;False;{};gilu4xk;False;t3_kt292n;False;True;t1_giltv7q;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilu4xk/;1610196473;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Marcus-Kobe;;;[];;;;text;t2_30287jwj;False;True;[];;Oh I forgot about AOT lol. 2nd place it is;False;False;;;;1610154630;;False;{};giluxpx;False;t3_kt292n;False;True;t1_gikuolj;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/giluxpx/;1610196939;0;True;False;anime;t5_2qh22;;0;[]; -[];;;mimdahey;;;[];;;;text;t2_8ar8dwwp;False;False;[];;Don't worry about all the down votes champ I'm starting to realize why Ive stayed away from most of those titles, the fan base couldn't be more toxic;False;False;;;;1610154649;;False;{};giluz2o;False;t3_kt4a31;False;True;t1_gijtyvp;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/giluz2o/;1610196959;0;True;False;anime;t5_2qh22;;0;[]; -[];;;princeouji;;;[];;;;text;t2_5wrf3eaj;False;False;[];;"Ah no, what i'm saying is its bad writing if the author made him perverted in his previous life then in the next life he magically isn't a pervert. He actually goes to character development. From a common harem protagonist, to a chad loyal main character. - -The only ""problem"" is that it takes a long time, that's why many people are afraid that the adaptation will skip many things from the novel. So far the 2 episode pre-air has great pacing so i have faith.";False;False;;;;1610154812;;False;{};gilvakg;False;t3_kt292n;False;False;t1_gilu4xk;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilvakg/;1610197149;5;True;False;anime;t5_2qh22;;0;[]; -[];;;VortechsTG;;;[];;;;text;t2_2hyzevmv;False;False;[];;Ah okay that makes sense;False;False;;;;1610154868;;False;{};gilveib;False;t3_kt292n;False;True;t1_gilvakg;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilveib/;1610197212;2;True;False;anime;t5_2qh22;;0;[]; -[];;;IOnlyDrinkJesusMilk;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/;light;text;t2_3ksul5pu;False;False;[];;Why did this thread, which almost treated the two series like competitors in a horse race, genuinely interest me?;False;False;;;;1610154980;;False;{};gilvmgg;False;t3_kt292n;False;False;t1_gikig88;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilvmgg/;1610197347;1;True;False;anime;t5_2qh22;;0;[]; -[];;;INFINITEACCOUNTS123;;;[];;;;text;t2_8ua160t3;False;False;[];;Radical liberal.;False;False;;;;1610155022;;False;{};gilvphz;False;t3_kt292n;False;True;t1_gilt39h;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilvphz/;1610197398;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;I disagree with your AOT take but you do you!;False;False;;;;1610155057;;False;{};gilvrwq;False;t3_kt292n;False;True;t1_gikjiub;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilvrwq/;1610197438;1;True;False;anime;t5_2qh22;;0;[]; -[];;;thesagenibba;;;[];;;;text;t2_27x7m2b3;False;True;[];;oxymoron;False;False;;;;1610155115;;False;{};gilvw5j;False;t3_kt292n;False;True;t1_gilvphz;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilvw5j/;1610197511;2;True;False;anime;t5_2qh22;;0;[]; -[];;;DevinSimatupang;;;[];;;;text;t2_87uouqvz;False;False;[];;This is japanese company. Different laws over there.;False;True;;comment score below threshold;;1610155138;;False;{};gilvxsb;False;t3_kt3sy5;False;False;t1_gik75d9;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gilvxsb/;1610197541;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;Re:Zero fans like us waiting for new Arcs is like JoJo fans waiting for new parts lol;False;False;;;;1610155317;;False;{};gilwajg;False;t3_kt292n;False;True;t1_gikmxcj;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilwajg/;1610197758;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;Well you obviously have not read the Re:Zero WN/LN either, you need to read both to make a proper comparison.;False;False;;;;1610155411;;False;{};gilwh2l;False;t3_kt292n;False;True;t1_gikp0zf;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilwh2l/;1610197864;2;True;False;anime;t5_2qh22;;0;[]; -[];;;wandering_person;;;[];;;;text;t2_2cu01ls8;False;False;[];;Just wait until AoT regains the spot later on.;False;False;;;;1610155463;;False;{};gilwkoe;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilwkoe/;1610197926;0;True;False;anime;t5_2qh22;;0;[]; -[];;;sire_tonberry;;;[];;;;text;t2_4susf1gi;False;False;[];;Sqenix;False;False;;;;1610155473;;False;{};gilwlea;False;t3_kt3sy5;False;True;t1_gikr9s0;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gilwlea/;1610197937;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gilgameshuuu;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gilgameshuu;light;text;t2_7ajldwjm;False;False;[];;I don't know if it'll be able to take 2nd Place considering that starting next episode Re:Zero Season 2 will be at it's peak every episode;False;False;;;;1610155511;;False;{};gilwo74;False;t3_kt292n;False;True;t1_giluxpx;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilwo74/;1610197985;3;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;"Imagine a life of deciding just from first appearances. Attack on Titan is some kids fighting giant zombies. Game of Thrones just looks like boring medieval politics. Steins;Gate is a guy living the same day over and over. Breaking Bad is an old dude selling drugs. Shawshank Redemption is a dude in prison. Seems sad, you'd miss out on so much good stuff.";False;False;;;;1610155590;;False;{};gilwtns;False;t3_kt292n;False;False;t1_gikhqa8;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilwtns/;1610198075;7;True;False;anime;t5_2qh22;;0;[]; -[];;;asscrackrash;;;[];;;;text;t2_9jhv8y1m;False;False;[];;"how can *you* understand re:zero if you can't even understand the english language? - -fuck that was a doozy to read fam, don't skip the next english class.";False;False;;;;1610155600;;False;{};gilwucu;False;t3_kt292n;False;True;t1_gijvd5y;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilwucu/;1610198088;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Backha;;;[];;;;text;t2_ij8tx;False;False;[];;"One piece anime dropped the ball midway through. - -For me it's still the no.1 manga though.";False;False;;;;1610155627;;False;{};gilwwb9;False;t3_kt4a31;False;True;t1_gik0wg8;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gilwwb9/;1610198118;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;Damnit, so close to breaking 12K.;False;False;;;;1610155838;;False;{};gilxb69;False;t3_kt292n;False;True;t1_giju9ic;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilxb69/;1610198364;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ShinaMashir0;;;[];;;;text;t2_rhsd8;False;False;[];;Wait people really think that Re:zero and AOT are in the same category ? huh;False;False;;;;1610155876;;False;{};gilxdru;False;t3_kt292n;False;True;t1_gikio5f;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilxdru/;1610198408;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Zeke-Freek;;HB;[];;ZekeFreek;dark;text;t2_10s78i;False;False;[];;But then Capcom just unveiled their own stupid fanart guidelines recently so;False;False;;;;1610156138;;False;{};gilxw7j;False;t3_kt3sy5;False;False;t1_gil500u;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gilxw7j/;1610198708;7;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;"Following that trend, the second half of S3 will be what pushes Re:Zero into next level fame and S4 will make it dominate like nothing else in the world. - -Actually that tracks pretty well. Not sure where S2P2 fits in, but we'll iron the kinks out later.";False;False;;;;1610156233;;False;{};gily2tx;False;t3_kt292n;False;True;t1_gik7grk;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gily2tx/;1610198824;3;True;False;anime;t5_2qh22;;0;[]; -[];;;TichoSlicer;;;[];;;;text;t2_14tpdf;False;False;[];;"Japanese companies think they own the internet... -and it seems that they really do ;/-";False;False;;;;1610156370;;False;{};gilyc7p;False;t3_kt3sy5;False;False;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gilyc7p/;1610199013;4;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;In fairness AoT's popularity tanked HARD between S1 and S2, so for a time Re:Zero might have genuinely had it beat.;False;False;;;;1610156378;;False;{};gilycsz;False;t3_kt292n;False;False;t1_gikmj10;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilycsz/;1610199024;11;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;Sure, just like how Avatar was the best movie ever until Endgame came out, and Force Awakens is still the 4th best. You and I both know popularity and quality are tangentially related at best. If you're gonna argue for AoT use a better metric, going by popularity Demon Slayer left it in the dust a while ago.;False;False;;;;1610156765;;1610157065.0;{};gilz3fk;False;t3_kt292n;False;False;t1_gil5tl4;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilz3fk/;1610199474;10;True;False;anime;t5_2qh22;;0;[]; -[];;;_Zig;;;[];;;;text;t2_r3byl;False;False;[];;"goatama>your fave";False;False;;;;1610156835;;False;{};gilz868;False;t3_kt4a31;False;False;t1_gijtyvp;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gilz868/;1610199551;0;True;False;anime;t5_2qh22;;0;[]; -[];;;zsvx;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/zsvx;light;text;t2_bmb0v9j;False;False;[];;i feel like beastars would be higher if people actually watched the episode. PAS subs weren’t out lol;False;False;;;;1610156965;;False;{};gilzh77;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gilzh77/;1610199706;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Omoshiroineko;;;[];;;;text;t2_vbz28;False;False;[];;Isn't it literally illegal to do that? Why is twitter complying with these DMCA strikes? Why is there no proper way for these fan artists to defend themselves? Broken system.;False;False;;;;1610157164;;False;{};gilzuyx;False;t3_kt3sy5;False;False;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gilzuyx/;1610199937;4;True;False;anime;t5_2qh22;;0;[]; -[];;;OoieGooie;;;[];;;;text;t2_u90ah;False;False;[];;Phycopathic management seek control over logic.;False;False;;;;1610157335;;False;{};gim06py;False;t3_kt3sy5;False;True;t1_gijx15v;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gim06py/;1610200143;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Sandtalon;;MAL;[];;https://myanimelist.net/profile/sandtalon;dark;text;t2_dqo1b;False;False;[];;"> I've never seen Japanese company that handle this in a non-idiotic way. - -...that might be more confirmation bias than anything else? Most Japanese companies literally turn a blind eye to doujinshi, etc.--they handle it through inaction. The very existence of something like Comiket proves that Japanese companies mostly handle this stuff in very non-idiotic ways. (The US might have better fair use laws than Japan, but even with those laws, American IP holders would probably completely and utterly C&D an event like Comiket if it were held in the US.) - -Plus, there are also explicit policies like Crypton Future Media's policy on Vocaloid stuff (which is pretty free and open), and the [Japanese branch of NBC making Serial Experiments Lain open source for remixing](https://www.otaquest.com/serial-experiments-lain-open-source/).";False;False;;;;1610157348;;1610157803.0;{};gim07lr;False;t3_kt3sy5;False;True;t1_gikr9s0;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gim07lr/;1610200157;2;True;False;anime;t5_2qh22;;0;[]; -[];;;_JK17_;;;[];;;;text;t2_70lef3kb;False;False;[];;aot???;False;False;;;;1610157389;;False;{};gim0aca;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim0aca/;1610200205;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Minisabel;;;[];;;;text;t2_2a3z01mv;False;False;[];;I'd say that's pretty unlikely. Starting from next week it's going to be a hype train all the way to the end.;False;False;;;;1610157624;;False;{};gim0qlq;False;t3_kt292n;False;True;t1_gijhda5;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim0qlq/;1610200487;1;True;False;anime;t5_2qh22;;0;[]; -[];;;mUffin_Kid123;;;[];;;;text;t2_74qjl8fd;False;False;[];;Cells at work is a lit show;False;False;;;;1610157853;;False;{};gim16cc;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim16cc/;1610200755;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;Are there any episodes that you think will break the premier? The finale will, most likely, and I hear Chapter 112 is big too. Any others to look out for?;False;False;;;;1610157998;;False;{};gim1geh;False;t3_kt292n;False;True;t1_gikvwi6;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim1geh/;1610200929;2;True;False;anime;t5_2qh22;;0;[]; -[];;;ThespianException;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/EMTIsBestWaifu;light;text;t2_4xg57c8;False;False;[];;More specifically the LN is about halfway done. The anime is about halfway to the LN.;False;False;;;;1610158290;;False;{};gim20pf;False;t3_kt292n;False;True;t1_giknfzd;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim20pf/;1610201284;1;True;False;anime;t5_2qh22;;0;[]; -[];;;vboogie16;;;[];;;;text;t2_mgq7l4t;False;False;[];;Where can you stream The Promised Nederland Season 2?;False;False;;;;1610158329;;False;{};gim23cx;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim23cx/;1610201330;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Okeanix;;;[];;;;text;t2_yleud;False;False;[];;You forgot to logout from your fake account. Do i need perfect grammar for trash reddit comments? Lmao, gtfo clown.;False;False;;;;1610158342;;False;{};gim249c;False;t3_kt292n;False;True;t1_gilwucu;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim249c/;1610201346;0;True;False;anime;t5_2qh22;;0;[]; -[];;;PeteSK164;;;[];;;;text;t2_qrqpd;False;False;[];;The polls will decide. I believe. It's at least gonna be 2nd if not I'm gonna commit seppukku;False;False;;;;1610158353;;False;{};gim24z2;False;t3_kt292n;False;True;t1_gilwh2l;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim24z2/;1610201358;1;True;False;anime;t5_2qh22;;0;[]; -[];;;asscrackrash;;;[];;;;text;t2_9jhv8y1m;False;False;[];;just a dude passing by reading some garbage takes.;False;False;;;;1610158406;;False;{};gim28j3;False;t3_kt292n;False;True;t1_gim249c;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim28j3/;1610201417;0;True;False;anime;t5_2qh22;;0;[]; -[];;;TricoMex;;;[];;;;text;t2_yite1;False;False;[];;I never truly understood the fear and anticipation some LN, WN or other source readers had when an adaptation was announced of something they had read. I also didn't understand their eventual disappointment and anger at the result, when in and of itself it was Ok. (Arifureta, etc) That is, until Mushoku Tensei was announced. Good Lord. I'm in their team now. It's one of my most beloved series.;False;False;;;;1610158604;;False;{};gim2m7t;False;t3_kt292n;False;True;t1_gijgl6j;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim2m7t/;1610201658;2;True;False;anime;t5_2qh22;;0;[]; -[];;;WordProfessional8927;;;[];;;;text;t2_8wocmf2y;False;False;[];;Hat jemand auf korrekt Crunchyroll Premium ?;False;False;;;;1610158879;;False;{};gim35dh;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim35dh/;1610202000;1;True;False;anime;t5_2qh22;;0;[]; -[];;;bigbeanis1136;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/Gamma_Panther/;light;text;t2_4qgkrgcw;False;False;[];;Bottom tier character tomozaki was surprisingly good, needs more love ngl.;False;False;;;;1610158935;;False;{};gim39cf;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim39cf/;1610202069;1;True;False;anime;t5_2qh22;;0;[]; -[];;;kSIBIGforeheaddebt;;;[];;;;text;t2_3uiuh226;False;False;[];;I can't wait for anime onlies to react to certain scenes....;False;False;;;;1610159129;;False;{};gim3msn;False;t3_kt292n;False;True;t1_gikg20u;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim3msn/;1610202297;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Amonia_Ed;;;[];;;;text;t2_7rmub5mo;False;False;[];;There is anime about fucking furries in this but not about dr stone fuck you;False;False;;;;1610159168;;False;{};gim3phj;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim3phj/;1610202344;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;sticktoyaguns;;;[];;;;text;t2_d9wcb;False;False;[];;"I'd say [TPN manga spoilers](/s ""Goldy Pond"") is the peak and I expected that Season 3 but considering the first episode adapted 8 chapters, that might happen this season.";False;False;;;;1610159168;;False;{};gim3pio;False;t3_kt292n;False;True;t1_gijleqo;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim3pio/;1610202344;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Status_Committee_544;;;[];;;;text;t2_6ygtaf23;False;False;[];;That was really only hype for the final season. The next episode will only break sites if all the manga readers and anime onlies go crazy over it. No one can hop on and watch this episode like Dbs hype episodes the buildup is necessary.;False;False;;;;1610159242;;False;{};gim3uke;False;t3_kt292n;False;False;t1_gikh500;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim3uke/;1610202432;6;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;Funimation, hulu or piracy. Crunchyroll doesn't have the license.;False;False;;;;1610159299;;False;{};gim3yi6;False;t3_kt292n;False;True;t1_giltcze;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim3yi6/;1610202503;3;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;No episode that's why because of holiday same for jjk.;False;False;;;;1610159328;;False;{};gim40hz;False;t3_kt292n;False;True;t1_gilr3in;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim40hz/;1610202536;2;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;9k now.;False;False;;;;1610159415;;False;{};gim46g1;False;t3_kt292n;False;True;t1_gilc7ed;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim46g1/;1610202636;2;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;holiday, no episode just like attack on titan.;False;False;;;;1610159485;;False;{};gim4bd3;False;t3_kt292n;False;True;t1_gil07oh;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim4bd3/;1610202725;2;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;"Many light novel readers will disagree with you based off its ratings. If its the pinnacle it should be atleast rated 9.00 by the majority of light novel readers. [https://myanimelist.net/manga/74697/Re\_Zero\_kara\_Hajimeru\_Isekai\_Seikatsu](https://myanimelist.net/manga/74697/Re_Zero_kara_Hajimeru_Isekai_Seikatsu) - -No need to shit on a next series to try and make the other series looks better, all you are doing is over hyping the series. - -Plus can any characters actually die? Or the series will continue to shock us with death and then time reset everything back to normal? Because its get a bit tiring.";False;False;;;;1610160016;;False;{};gim5cq1;False;t3_kt292n;False;True;t1_gikjiub;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim5cq1/;1610203390;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Chicken_Katsura;;;[];;;;text;t2_80tit928;False;False;[];;SA and FS arcs are my absolute favs 🔥🔥;False;False;;;;1610160084;;False;{};gim5hgv;False;t3_kt4a31;False;False;t1_gijs8vt;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gim5hgv/;1610203473;8;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;So we can't compare stories now? People were comparing snk when it had its first season with full metal alchemist brotherhood that was already finish.;False;False;;;;1610160176;;False;{};gim5o1s;False;t3_kt292n;False;False;t1_giknfzd;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim5o1s/;1610203594;9;True;False;anime;t5_2qh22;;0;[]; -[];;;jrevv;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/jrevv;light;text;t2_bd6cpb3;False;False;[];;Sounds interesting, I’m in;False;False;;;;1610160338;;False;{};gim5zjf;False;t3_kt292n;False;True;t1_gik10xy;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim5zjf/;1610203804;1;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;Episode 15 as well.;False;False;;;;1610160445;;False;{};gim6721;False;t3_kt292n;False;True;t1_gim1geh;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim6721/;1610203935;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TexhnolyzeAndKaiba;;;[];;;;text;t2_781er1nk;False;True;[];;It really helps that the characters can chime in with any criticisms about how long the show's been airing and trying to sustain its marketability. I honestly don't see why other battle shonens aren't trying this formula...;False;False;;;;1610160557;;False;{};gim6ev5;False;t3_kt4a31;False;False;t1_gikxs81;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gim6ev5/;1610204075;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Abysswatcherbel;;;[];;;;text;t2_3lu8nsu8;False;False;[];;They still believe that a show that do well in karma in our bubble here is guaranteed to get a 2 season season, because somehow karma = revenue;False;False;;;;1610161395;;False;{};gim81db;False;t3_kt292n;False;False;t1_gilq0b1;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim81db/;1610205109;6;True;False;anime;t5_2qh22;;0;[]; -[];;;Espada_6;;;[];;;;text;t2_sb5ghaa;False;False;[];;Looks like they’re learning from Nintendo;False;False;;;;1610161831;;False;{};gim8vch;False;t3_kt3sy5;False;True;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gim8vch/;1610205638;3;True;False;anime;t5_2qh22;;0;[]; -[];;;chickenfoot4less;;;[];;;;text;t2_13cms4;False;False;[];;I bet cells ar work fans are happy for a second season. I heard about being on Netflix YEARS ago. God damns;False;False;;;;1610161841;;False;{};gim8w16;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim8w16/;1610205650;1;True;False;anime;t5_2qh22;;0;[]; -[];;;theHypatia;;;[];;;;text;t2_3gdbi72k;False;False;[];;Beastars needs to be higher;False;False;;;;1610161915;;False;{};gim914g;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim914g/;1610205740;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MarkDave16;;;[];;;;text;t2_3hq0mi5e;False;False;[];;Everything is depth.;False;False;;;;1610162130;;False;{};gim9fhv;False;t3_kt292n;False;True;t1_gilmu5s;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gim9fhv/;1610205998;3;True;False;anime;t5_2qh22;;0;[]; -[];;;MiltonMerloXD;;;[];;;;text;t2_7p59l5sh;False;False;[];;"Re:Zero novel > AoT manga";False;False;;;;1610162578;;False;{};gima9cn;False;t3_kt292n;False;True;t1_gilxdru;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gima9cn/;1610206561;-2;True;False;anime;t5_2qh22;;0;[]; -[];;;Demolosse001;;;[];;;;text;t2_9e8zjkly;False;False;[];;Cells at work is so entertaining while being highly educational. I welcome more shows like that.;False;False;;;;1610162631;;False;{};gimacyt;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimacyt/;1610206624;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KingKongsro;;;[];;;;text;t2_128c2b;False;False;[];;I’m really interested in seeing where the new volleyball anime goes, haven’t seen Haikyuu yet tho so can’t really compare them;False;False;;;;1610162662;;False;{};gimaf1x;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimaf1x/;1610206663;1;True;False;anime;t5_2qh22;;0;[]; -[];;;TheDudeman0101;;;[];;;;text;t2_8e2ax2jk;False;False;[];;Cells at Work stronk since it up there twice;False;False;;;;1610163283;;False;{};gimbkbp;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimbkbp/;1610207448;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ccpossible;;;[];;;;text;t2_h8ytu;False;False;[];;I have trouble thinking I could like it, I am just not into comedy at all... I get there's plot but won't I just have to watch through a shitload of random comedy to get any real story?;False;False;;;;1610163340;;False;{};gimbo28;False;t3_kt4a31;False;False;t3_kt4a31;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gimbo28/;1610207520;1;True;False;anime;t5_2qh22;;0;[]; -[];;;JustOutThere25;;;[];;;;text;t2_351lqdty;False;False;[];;Where am I supposed to watch most of these if they aren't on Crunchyroll? Like, I can't find Cells at Work or Beastars so how do I watch?;False;False;;;;1610163417;;False;{};gimbt30;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimbt30/;1610207613;1;True;False;anime;t5_2qh22;;0;[]; -[];;;l___I;;;[];;;;text;t2_11v4z8;False;False;[];;Bro, same;False;False;;;;1610163712;;False;{};gimccie;False;t3_kt4a31;False;True;t1_gilqj1e;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gimccie/;1610207980;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Weinersaurus;;;[];;;;text;t2_7sha14xt;False;False;[];;saw someone in the comments say that AOT is worse than redo the healer...;False;False;;;;1610163824;;False;{};gimcjr9;False;t3_kt292n;False;True;t1_gik6eoi;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimcjr9/;1610208112;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Potato_Lord587;;;[];;;;text;t2_8eeirgsm;False;False;[];;Will it be coming to Crunchyroll?;False;False;;;;1610164023;;False;{};gimcwmh;False;t3_kt292n;False;False;t1_gim3yi6;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimcwmh/;1610208365;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Darkerdead;;;[];;;;text;t2_13b1ko;False;False;[];;Yea re zeros plot is getting started back up again while aot has a moment everyone has been waiting for lmao;False;False;;;;1610164024;;False;{};gimcwqk;False;t3_kt292n;False;True;t1_gil4sii;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimcwqk/;1610208366;2;True;False;anime;t5_2qh22;;0;[]; -[];;;eoten;;;[];;;;text;t2_fhswm;False;False;[];;Not anytime soon.;False;False;;;;1610164087;;False;{};gimd0wg;False;t3_kt292n;False;True;t1_gimcwmh;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimd0wg/;1610208448;1;True;False;anime;t5_2qh22;;0;[]; -[];;;myst-spaghetti;;;[];;;;text;t2_41uyo6dw;False;False;[];;I’m hopin black clover gets some love soon;False;False;;;;1610164626;;False;{};gimdzgy;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimdzgy/;1610209096;1;True;False;anime;t5_2qh22;;0;[]; -[];;;slimes007;;;[];;;;text;t2_tgoqs;False;False;[];;Glad to see Otherside Picnic there.;False;False;;;;1610164706;;False;{};gime4lc;False;t3_kt292n;False;False;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gime4lc/;1610209194;1;True;False;anime;t5_2qh22;;0;[]; -[];;;KitC4t_TV;;;[];;;;text;t2_8ki91lyo;False;False;[];;That's because Japanese companies just don't internet in general.;False;False;;;;1610164756;;False;{};gime7vt;False;t3_kt3sy5;False;True;t1_gikr9s0;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gime7vt/;1610209255;3;True;False;anime;t5_2qh22;;0;[]; -[];;;GhostlyPirateship;;;[];;;;text;t2_14ij9t;False;False;[];;The next three episodes of AoT will all be absolute bangers, Re:Zero is going to have to pull something insane for it to have a chance.;False;False;;;;1610164984;;False;{};gimemf2;False;t3_kt292n;False;False;t1_gimcwqk;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimemf2/;1610209533;4;True;False;anime;t5_2qh22;;0;[]; -[];;;Royal_Heritage;;;[];;;;text;t2_8wglzuge;False;False;[];;"The word seinen wasn't even thrown out on the discussion table. There's more stuff out there than just meta and by the book shonen demographic - -Next time you jump in a conversation, at least make the effort to understand what people are talking about and also use your real account, not a throwaway one.";False;False;;;;1610165003;;1610165957.0;{};gimenm2;False;t3_kt4a31;False;True;t1_gik646d;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gimenm2/;1610209555;1;False;False;anime;t5_2qh22;;0;[]; -[];;;Royal_Heritage;;;[];;;;text;t2_8wglzuge;False;False;[];;If you're going to make an alligation like OP did, then yes, you're just encasing yourself in a very structured demographic that very rarely goes out of it's way to create something out of the mold.;False;False;;;;1610165103;;False;{};gimetz9;False;t3_kt4a31;False;True;t1_gikpvcs;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gimetz9/;1610209693;0;False;False;anime;t5_2qh22;;0;[]; -[];;;kitzz11;;;[];;;;text;t2_4gz1dy0b;False;False;[];;Next week is gonna be an explosion of karma with horimiya and Dr. stone joining and who knows, there maybe a dark horse anime with a big karma joins the game;False;False;;;;1610165176;;False;{};gimeyln;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimeyln/;1610209782;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Royal_Heritage;;;[];;;;text;t2_8wglzuge;False;False;[];;"Coming from a guy who didn't have any originality to come up with a better redditor name, your salty comment is just hilarious - -Without even scooping too long in your history, I'd say you've made even dumber remarks - -https://old.reddit.com/r/anime/comments/ksi7i2/hataraku_saibou_black_episode_1_discussion/gihf2be/";False;False;;;;1610165204;;1610165585.0;{};gimf0cs;False;t3_kt4a31;False;True;t1_gik5s9v;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gimf0cs/;1610209822;0;False;False;anime;t5_2qh22;;0;[]; -[];;;WoodenRocketShip;;;[];;;;text;t2_1ayd8yd4;False;False;[];;There are times where they actually do understand the merits, but they'll still act against it because they care so much about their image, and there are so many things they don't want to be associated with. It can get pretty ridiculous honestly when you have situations that are very lowkey and actually help them a lot, and out of nowhere they decide to take action, leaving everyone to just be baffled at the really dumb business decision.;False;False;;;;1610165235;;False;{};gimf2bu;False;t3_kt3sy5;False;False;t1_gikd44p;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gimf2bu/;1610209858;5;True;False;anime;t5_2qh22;;0;[]; -[];;;Royal_Heritage;;;[];;;;text;t2_8wglzuge;False;False;[];;Aw, someone's mad.;False;False;;;;1610165287;;False;{};gimf5qn;False;t3_kt4a31;False;True;t1_gilz868;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gimf5qn/;1610209942;0;False;False;anime;t5_2qh22;;0;[]; -[];;;darkslayer125;;;[];;;;text;t2_mrdv1;False;False;[];;weakest week so far;False;False;;;;1610165418;;False;{};gimfe2c;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimfe2c/;1610210141;0;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[deleted];False;True;;;;1610165505;;False;{};gimfjly;False;t3_kt3sy5;False;True;t1_gijz9jl;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gimfjly/;1610210258;1;True;False;anime;t5_2qh22;;0;[]; -[];;;MiltonMerloXD;;;[];;;;text;t2_7p59l5sh;False;False;[];;Still annoying, I'm mostly referring to toxic fanboys saying that Re:Zero is garbage compared to AoT just because it doesn't have as much world building and character development as AoT, wtf.;False;False;;;;1610165690;;False;{};gimfvc9;False;t3_kt292n;False;True;t1_gim5o1s;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimfvc9/;1610210517;2;True;False;anime;t5_2qh22;;0;[]; -[];;;leon950611;;;[];;;;text;t2_vdza5;False;False;[];;yes;False;False;;;;1610165712;;False;{};gimfwp6;False;t3_kt292n;False;True;t1_giltdwz;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimfwp6/;1610210541;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cine11;;;[];;;;text;t2_4yism;False;False;[];;Oh shit, season 2 of Promised Neverland! What a treat!;False;False;;;;1610165902;;False;{};gimg8f8;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimg8f8/;1610210772;1;True;False;anime;t5_2qh22;;0;[]; -[];;;ExaSarus;;;[];;;;text;t2_9zo1d1o;False;False;[];;I'll watch it they go a different route in the Anime;False;False;;;;1610166412;;False;{};gimh48q;False;t3_kt292n;False;True;t1_gikd8ta;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimh48q/;1610211359;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Deca-Dence-Fan;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Omegeria;light;text;t2_72d1mg6w;False;False;[];;Fair haha, but it’s more of an action rather than a remark. And not about anime, but I digress;False;False;;;;1610166431;;False;{};gimh5dz;False;t3_kt4a31;False;True;t1_gimf0cs;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gimh5dz/;1610211379;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Zan_tgg;;;[];;;;text;t2_5tkvkv4d;False;False;[];;Well said. Thank you for telling me that even if AoT is more popular, it doesn't change the fact of JJKs popularity. Mind giving the source for the franchise information? From my source, AoT is the 18th highest selling anime franchise while jjk isn't even on the list. I'll pm you the picture;False;False;;;;1610166537;;False;{};gimhbvb;False;t3_kt292n;False;True;t1_gilfejd;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimhbvb/;1610211504;0;True;False;anime;t5_2qh22;;0;[]; -[];;;kiyotaka_07;;;[];;;;text;t2_8jgjs9s1;False;False;[];;It's like The calmness before the storm.;False;False;;;;1610167015;;False;{};gimi5lh;False;t3_kt292n;False;True;t3_kt292n;/r/anime/comments/kt292n/top_10_anime_week_1_winter_2021_anime_corner/gimi5lh/;1610212058;1;True;False;anime;t5_2qh22;;0;[]; -[];;;apinkparfait;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/beazacha/;light;text;t2_3p3fau4c;False;False;[];;I wonder when the Japanese will fucking learn...;False;False;;;;1610168235;;False;{};gimk77k;False;t3_kt3sy5;False;True;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gimk77k/;1610213504;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Nielloscape;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Niello;light;text;t2_160hhg;False;False;[];;Eh...doushinji are fan works. That's extremely different, pretty much like we are entirely talking about completely different things and totally irrelevant.;False;False;;;;1610169354;;False;{};gimm01t;False;t3_kt3sy5;False;True;t1_gim07lr;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gimm01t/;1610214707;0;True;False;anime;t5_2qh22;;0;[]; -[];;;Cuddlyaxe;;;[];;;;text;t2_ftpsl;False;True;[];;"Both honestly - -It's comedy is fairly Saiki like but there's also more serious arcs throughout";False;False;;;;1610169815;;False;{};gimmpq4;False;t3_kt4a31;False;True;t1_gil42yd;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gimmpq4/;1610215213;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Cuddlyaxe;;;[];;;;text;t2_ftpsl;False;True;[];;When will Madao bloom;False;False;;;;1610169849;;False;{};gimmrl4;False;t3_kt4a31;False;False;t3_kt4a31;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gimmrl4/;1610215246;3;True;False;anime;t5_2qh22;;0;[]; -[];;;[deleted];;;;;;dark;;;;;[];;[removed];False;True;;;;1610169857;;False;{};gimms05;False;t3_kt3sy5;False;True;t1_gilm72f;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gimms05/;1610215253;1;True;False;anime;t5_2qh22;;0;[]; -[];;;AutoModerator;;;[];;;;text;t2_6l4z3;False;True;[];;"Hi apinkparfait, your post has been removed because it provides directions to a site that hosts pirated content. - -Please visit [the rules page](https://reddit.com/r/anime/wiki/rules) for more information. - -*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/anime) if you have any questions or concerns.*";False;False;;;;1610169857;moderator;False;{};gimms1b;False;t3_kt3sy5;False;True;t1_gimms05;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gimms1b/;1610215254;0;False;False;anime;t5_2qh22;;0;[]; -[];;;apinkparfait;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/beazacha/;light;text;t2_3p3fau4c;False;False;[];;Sucks to One Piece mostly because the manga just got to a historical milestone and this put a massive stop in all the fanarts and edits going on.... way to piss on the cereal of thousands of people that were just celebrating :(;False;False;;;;1610170056;;False;{};gimn3ka;False;t3_kt3sy5;False;False;t1_gik75d9;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gimn3ka/;1610215466;5;True;False;anime;t5_2qh22;;0;[]; -[];;;CaptainDino123;;;[];;;;text;t2_eouc4;False;False;[];;They are sending Cease and Desists to Smash tournaments and copy striking shit like crazy;False;False;;;;1610170157;;False;{};gimn9c7;False;t3_kt3sy5;False;True;t1_gilhm5l;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gimn9c7/;1610215575;3;True;False;anime;t5_2qh22;;0;[]; -[];;;apinkparfait;#02a9ff;ANI;[];38d447e6-1c23-11e3-89d8-12313d096169;https://anilist.co/user/beazacha/;light;text;t2_3p3fau4c;False;False;[];;"Yeah now we see games like Genshin taking the world an if you search the top titles on reader sites (til you can't mention the names otherwise the bot will remove your original comment) the top results will always have manwha or manhua on it.... other Northeast countries are catching up and pumping money to do it so faster. - - -I know the higher ups don't really care since Japan is a self-sufficient market but they literally limit the range their artists can reach with their antics.";False;False;;;;1610170196;;False;{};gimnbip;False;t3_kt3sy5;False;False;t1_gilm72f;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gimnbip/;1610215620;3;True;False;anime;t5_2qh22;;0;[]; -[];;;xXxXx_Edgelord_xXxXx;;;[];;;;text;t2_5eqttswx;False;False;[];;I mean, China is a state-capitalist regime so it's bad but Japan still didn't pay for WWII, so Korea's manhwa can take all the cake if it depended on me.;False;True;;comment score below threshold;;1610172342;;False;{};gimqh60;False;t3_kt3sy5;False;False;t1_gimnbip;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gimqh60/;1610217811;-5;True;False;anime;t5_2qh22;;0;[]; -[];;;weeb_isekai;;;[];;;;text;t2_8xhy127m;False;False;[];;That's how artist's get demotivated;False;False;;;;1610172504;;False;{};gimqpfk;False;t3_kt3sy5;False;True;t1_gilzuyx;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gimqpfk/;1610217971;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;"I had no idea Twitter even had ""copyright strikes""";False;False;;;;1610173559;;False;{};gims4nc;False;t3_kt3sy5;False;True;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gims4nc/;1610218931;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Atario;;MAL;[];;http://myanimelist.net/animelist/TheGreatAtario;dark;text;t2_4a2ps;False;False;[];;But at the same time, Comiket is a venerable institution and is based on copyright violation;False;False;;;;1610173675;;False;{};gimsa5h;False;t3_kt3sy5;False;False;t1_gil5pry;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gimsa5h/;1610219032;5;True;False;anime;t5_2qh22;;0;[]; -[];;;CorbenikTheRebirth;;;[];;;;text;t2_g98wg;False;False;[];;"That's the thing. The industry turns a blind eye to copyright when it comes to Comiket for a few reasons, but there's generally an unspoken agreement that doujinshi authors won't try to directly compete with the series whose characters they're using and won't sell doujin based on works whose creators have explicitly asked them not to. -Many mangaka and animators got their start creating doujinshi, so it's very ingrained in the industry. Stirring up trouble would likely turn the community against them. -That's not the norm, though. Generally Japanese companies enforce copyright pretty strictly.";False;False;;;;1610173984;;False;{};gimsog3;False;t3_kt3sy5;False;False;t1_gimsa5h;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gimsog3/;1610219304;7;True;False;anime;t5_2qh22;;0;[]; -[];;;landragoran;;;[];;;;text;t2_4dzsd;False;False;[];;"DMCA\* - -(**D**igital **M**illennium **C**opyright **A**ct)";False;False;;;;1610176698;;False;{};gimw0bf;False;t3_kt3sy5;False;False;t1_gild1bb;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gimw0bf/;1610221544;5;True;False;anime;t5_2qh22;;0;[]; -[];;;BomberJ16;;;[];;;;text;t2_1134ki;False;False;[];;"The music one is by far the most disappointing. Nintendo Music is top tier quality (any gen, any game), and almost all of them are still praised and listened to this day. - -I read that a likely reason for them not releasing it legally themselves is that, by doing so, they'd be opening the door for other companies buying the rights to use said music for their products (think using the Mario theme in a Transformers film legally), and Nintendo won't allow their brand to be 'compromised' like that. - -I'm no legal expert and I don't know if that is actually true; but if so, while understandable, it's still disappointing";False;False;;;;1610179998;;False;{};gimzm1z;False;t3_kt3sy5;False;False;t1_giljzo9;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gimzm1z/;1610224129;5;True;False;anime;t5_2qh22;;0;[]; -[];;;BomberJ16;;;[];;;;text;t2_1134ki;False;False;[];;SA's end hit me HARD, FS has an amazing opening, but then Silver Soul (part 1) came and maaaaaan, it had everything (also another banger of an OP);False;False;;;;1610180492;;False;{};gin04pc;False;t3_kt4a31;False;True;t1_gim5hgv;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gin04pc/;1610224547;2;True;False;anime;t5_2qh22;;0;[]; -[];;;trixfyy;;;[];;;;text;t2_1m1n0b9f;False;False;[];;It is ridiculous. No one makes a huge profit from 2-3 pictures or videos but they could have earned so much players. That explains why I don't see and hear about nintendo much.;False;False;;;;1610180585;;False;{};gin087i;False;t3_kt3sy5;False;False;t1_gimn9c7;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gin087i/;1610224615;2;True;False;anime;t5_2qh22;;0;[]; -[];;;HishigiRyuuji;;;[];;;;text;t2_11ebnz;False;False;[];;The law itself is fine, but they're using a broken bot.;False;False;;;;1610181636;;False;{};gin1alb;False;t3_kt3sy5;False;True;t1_gikmkjr;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gin1alb/;1610225385;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Ucvius;;;[];;;;text;t2_46p4yczj;False;False;[];;I still have not watched this. But everyone tells me this series is really good. What I heard is this guy is like Saitama, lazy but over powered some how in battles. Don't know if I will ever have the time to watch it;False;False;;;;1610183204;;False;{};gin2udz;False;t3_kt4a31;False;True;t3_kt4a31;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/gin2udz/;1610226496;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Dio5000;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/Gundam336;light;text;t2_5czjwh85;False;False;[];;"* the promised Neverland season 2 - -* black arrow - -* Yashahime (hey I'm an old school fan of inuyasha so hey I can live with it) - -* attack on titan final season on toonami - -* the spider anime one (sorry forgot the name)";False;False;;;;1610186635;;False;{};gin66df;False;t3_kt3eie;False;True;t3_kt3eie;/r/anime/comments/kt3eie/what_is_your_daily_watching_schedule_for_this/gin66df/;1610228707;1;True;False;anime;t5_2qh22;;0;[]; -[];;;h00n23;;;[];;;;text;t2_5wbxz569;False;False;[];;I don't think that South Korean and Chinese are it is just that Japan companies are filled with old people;False;False;;;;1610189290;;False;{};gin8qjx;False;t3_kt3sy5;False;True;t1_gikd44p;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gin8qjx/;1610230381;1;True;False;anime;t5_2qh22;;0;[]; -[];;;Gmayor61;;;[];;;;text;t2_hsup8;False;False;[];;"> They don't usually understand how the internet and fan interaction works. - -It's the other way around. This is how DMCA and copyright is supposed to work from the legal perspective. It'd be accurate to say that Japanese companies are catching up rather than going backwards. - -I'm not particularly fond of it either, but they can't just ignore their own rules. Don't take it up with those who uphold the rules, do that with those who manage the rules.";False;False;;;;1610189873;;False;{};gin9b19;False;t3_kt3sy5;False;False;t1_gijyfsf;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gin9b19/;1610230736;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Gmayor61;;;[];;;;text;t2_hsup8;False;False;[];;Comiket as a whole falls under fair use, for the most part. The thing they're hunting for is unofficial distributors of official content, largely torrents and now apparently twitter.;False;False;;;;1610190077;;False;{};gin9ieh;False;t3_kt3sy5;False;True;t1_gimsa5h;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gin9ieh/;1610230874;2;True;False;anime;t5_2qh22;;0;[]; -[];;;EasternOtaku1422;;;[];;;;text;t2_2vuogh9i;False;False;[];;">Yeah now we see games like Genshin taking the world an if you search the top titles on reader sites (til you can't mention the names otherwise the bot will remove your original comment) the top results will always have manwha or manhua on it.... other Northeast countries are catching up and pumping money to do it so faster - -This reminded me of how Azur Lane and Girls' Frontline got so popular even in Japan. - -Kancolle was originally a niche game for IJN otaku. When the game got popular outside of its target audience, Kadokawa squandered it. They approved a botched adaptation which many fans didn't like and didn't bother to promote the game globally (although it may be for justified reasons). - -When another shipfu game, Azur Lane (by Yostar), came out, it became very popular in Japan to the point where it eclipsed Kancolle in popularity. - -Kancolle is still popular, but not to the amount it attained during its peak.";False;False;;;;1610191012;;False;{};ginafjj;False;t3_kt3sy5;False;True;t1_gimnbip;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/ginafjj/;1610231483;2;True;False;anime;t5_2qh22;;0;[]; -[];;;MABfan11;#2e51a2;MAL;[];eb56b178-4b3d-11e1-98ee-12313b08a511;https://myanimelist.net/profile/MABfan11;light;text;t2_xdlmc;False;False;[];;[obligatory Tom Scott copyright video](https://www.youtube.com/watch?v=1Jwo5qc78QU);False;False;;;;1610193610;;False;{};gind2vz;False;t3_kt3sy5;False;True;t3_kt3sy5;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gind2vz/;1610233225;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;every big website has something like that, im pretty sure that it's required by the law;False;False;;;;1610195007;;False;{};ginel11;False;t3_kt3sy5;False;True;t1_gims4nc;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/ginel11/;1610234203;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;it's completely legal;False;False;;;;1610195040;;False;{};ginema5;False;t3_kt3sy5;False;True;t1_gilzuyx;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/ginema5/;1610234224;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;Fanart artists have no right to the characters so im pretty sure it's legal;False;False;;;;1610195117;;False;{};ginepcb;False;t3_kt3sy5;False;True;t1_gik3alv;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/ginepcb/;1610234277;-3;True;False;anime;t5_2qh22;;0;[]; -[];;;Darkjetson01;;;[];;;;text;t2_cia6mw7;False;False;[];;I get your point with the so so animation after the timeskip and the pacing. Thank God Wano arc is here with great animation and the pacing doesn't feel as dragged as before. I still have nightmares of Dressrosa's debris flying for like 4 episodes;False;False;;;;1610199063;;False;{};ginjckh;False;t3_kt4a31;False;True;t1_gilwwb9;/r/anime/comments/kt4a31/gintama_is_my_new_favorite_animemanga/ginjckh/;1610237270;3;True;False;anime;t5_2qh22;;0;[]; -[];;;Inferno792;;MAL;[];;https://myanimelist.net/profile/Inferno792;dark;text;t2_148vlb;False;False;[];;I don't think so. Fan arts are people's own creations. Much like fanfiction.;False;False;;;;1610199502;;False;{};ginjxdh;False;t3_kt3sy5;False;True;t1_ginepcb;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/ginjxdh/;1610237638;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Melbuf;;;[];;;;text;t2_j03jl;False;False;[];;They do not have rights to the characters that is correct but their fanart falls under the fair use clause of a derivative work;False;False;;;;1610199659;;1610200137.0;{};gink4tw;False;t3_kt3sy5;False;True;t1_ginepcb;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gink4tw/;1610237772;2;True;False;anime;t5_2qh22;;0;[]; -[];;;Idaret;;;[];;;;text;t2_fbfcd;False;False;[];;"Most of fanart is just anime girl in a slightly different pose than original, maybe some different background. Nobody challenged that in the court so far but im pretty sure that most fanarts are not protected by fair use - -Oh, and coloured manga pages are completely not fair use";False;False;;;;1610200466;;False;{};ginl8iq;False;t3_kt3sy5;False;True;t1_gink4tw;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/ginl8iq/;1610238481;1;True;False;anime;t5_2qh22;;0;[]; -[];;;BasroilII;;;[];;;;text;t2_2yjoujdz;False;False;[];;It's unintentional. They probably have some bot program that just fires these off indiscriminately for anything resembling their IPS.;False;False;;;;1610202129;;False;{};ginnnp0;False;t3_kt3sy5;False;True;t1_gikh3a9;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/ginnnp0/;1610240011;1;True;False;anime;t5_2qh22;;0;[];True -[];;;TSPhoenix;;;[];;;;text;t2_3tob1;False;False;[];;I just looked it up and all looks pretty boilerplate cover-you-ass kind of stuff. Unless they actually start enforcing it in stupid ways I wouldn't read much into it.;False;False;;;;1610242219;;False;{};giptv5d;False;t3_kt3sy5;False;False;t1_gilxw7j;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/giptv5d/;1610285216;2;True;False;anime;t5_2qh22;;0;[]; -[];;;TSPhoenix;;;[];;;;text;t2_3tob1;False;False;[];;The lack of a comma in your original comment makes it completely unclear if you think Capcom or fan artists are in the wrong.;False;False;;;;1610242374;;False;{};gipu5km;False;t3_kt3sy5;False;True;t1_gink4tw;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gipu5km/;1610285393;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tenkensmile;;;[];;;dark;text;t2_j0mmc;False;False;[];;"> pretty sure that most fanarts are not protected by fair use - -You are correct. Speaking as a fan-artist myself, the original authors 100% own the copyright, and I respect their copyright for coming up with the original ideas of the characters in the first place. - -I created an original character of my own, and I sure as hell don't want other people to re-draw my character *and* claim they have the right over it.";False;False;;;;1610408717;;1610461878.0;{};gixx9i8;False;t3_kt3sy5;False;True;t1_ginl8iq;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gixx9i8/;1610466164;1;True;False;anime;t5_2qh22;;0;[]; -[];;;tenkensmile;;;[];;;dark;text;t2_j0mmc;False;False;[];;"Fanartist here. That's false. - -If you created a character of your own, you wouldn't want other people to claim copyright or commercialization of it, derivative work or not. - -Think about it, what's the first thing that any fanartist does? Copy the art & ideas of the original art. - -The reason the original authors aren't doing anything about fanart is because it doesn't hinder their sales. But if it does (eg, you making significant profits from fanart) or for whatever reason, they 100% have the rights to take it down.";False;False;;;;1610461995;;1610477383.0;{};gj03ki5;False;t3_kt3sy5;False;False;t1_ginjxdh;/r/anime/comments/kt3sy5/people_are_being_copyright_striked_for_sharing/gj03ki5/;1610518702;1;True;False;anime;t5_2qh22;;0;[]; From 260b41a52b44c46548d013ff6d9af608bd153173 Mon Sep 17 00:00:00 2001 From: Matthew Podolak Date: Tue, 7 Sep 2021 10:39:35 -0400 Subject: [PATCH 09/18] updated documentation --- CHANGES.md | 4 +++- README.md | 40 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 9d77e5a..c5cde34 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,8 @@ -## 2.0.0 (2021/08/xx) +## 2.0.0 (2021/09/xx) - Added support for enriching result metadata using PRAW +- Implemented functional tests +- Reduced `max_ids_per_request` to 500 ## 1.1.0 (2021/05/27) diff --git a/README.md b/README.md index c691b69..5cff6cc 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,12 @@ - [Features](#features) - [Parameters](#parameters) - [Examples](#examples) + - [Comments](#comments) + - [Submissions](#submissions) - [Advanced Examples](#advanced-examples) + - [PRAW Enrichment](#praw-enrichment) + - [Memory Safety](#memory-safety) + - [Safe Exiting](#safe-exiting) - [Benchmarks](#benchmarks) - [Deprecated Examples](#deprecated-examples) @@ -134,6 +139,7 @@ Similarly to the memory safety feature, a `Response` generator object is returne - `jitter` (str, optional): Jitter to use with backoff, options are None, 'full', 'equal', 'decorr'. Defaults to None. - `checkpoint` (int, optional): Size of interval in batches to print a checkpoint with stats, defaults to 10 - `file_checkpoint` (int, optional) - Size of interval in batches to cache responses when using mem_safe, defaults to 20 +- `praw` (praw.Reddit, optional) - Used to enrich the Pushshift items retrieved with metadata directly from Reddit ### `Response` @@ -175,6 +181,8 @@ The following examples are for `pmaw` version >= 1.0.0. ### Search Comments ```python +from pmaw import PushshiftAPI + api = PushshiftAPI() comments = api.search_comments(subreddit="science", limit=1000) comment_list = [comment for comment in comments] @@ -183,6 +191,8 @@ comment_list = [comment for comment in comments] ### Search Comments by IDs ```python +from pmaw import PushshiftAPI + api = PushshiftAPI() comment_ids = ['gjacwx5','gjad2l6','gjadatw','gjadc7w','gjadcwh', 'gjadgd7','gjadlbc','gjadnoc','gjadog1','gjadphb'] @@ -197,6 +207,8 @@ You can supply a single comment by passing the id as a string or an array with a ### Search Comment IDs by Submission ID ```python +from pmaw import PushshiftAPI + api = PushshiftAPI() post_ids = ['kxi2w8','kxi2g1','kxhzrl','kxhyh6','kxhwh0', 'kxhv53','kxhm7b','kxhm3s','kxhg37','kxhak9'] @@ -213,6 +225,8 @@ You can supply a single submission by passing the id as a string or an array wit ### Search Submissions ```python +from pmaw import PushshiftAPI + api = PushshiftAPI() posts = api.search_submissions(subreddit="science", limit=1000) post_list = [post for post in posts] @@ -221,6 +235,8 @@ post_list = [post for post in posts] ### Search Submissions by IDs ```python +from pmaw import PushshiftAPI + api = PushshiftAPI() post_ids = ['kxi2w8','kxi2g1','kxhzrl','kxhyh6','kxhwh0', 'kxhv53','kxhm7b','kxhm3s','kxhg37','kxhak9'] @@ -234,11 +250,33 @@ You can supply a single submission by passing the id as a string or an array wit # Advanced Examples +## PRAW Enrichment + +Enrich results with the most recent metadata from Reddit by passing a PRAW Reddit instance when instantiating the PushshiftAPI. + +If you don’t already have a client ID and client secret, follow Reddit’s [First Steps Guide](https://github.com/reddit-archive/reddit/wiki/OAuth2-Quick-Start-Example#first-steps) to create them. A user agent is a unique identifier that helps Reddit determine the source of network requests. To use Reddit’s API, you need a unique and descriptive user agent. + +```python +import praw +from pmaw import PushshiftAPI + +reddit = praw.Reddit( + client_id='YOUR_CLIENT_ID', + client_secret='YOUR_CLIENT_SECRET', + user_agent=f'python: PMAW request enrichment (by u/YOUR_USERNAME)' +) + +api_praw = PushshiftAPI(praw=reddit) +comments = api_praw.search_comments(q="quantum", subreddit="science", limit=100, before=1629990795) +``` + ## Memory Safety If you are pulling large amounts of data or have a limited amount of RAM, using the memory safety feature will help you avoid an out of memory error from being thrown during data retrieval. ```python +from pmaw import PushshiftAPI + api = PushshiftAPI() posts = api.search_submissions(subreddit="science", limit=700000, mem_safe=True) print(f'{len(posts)} posts retrieved from Pushshift') @@ -263,6 +301,8 @@ api = PushshiftAPI(file_checkpoint=10) If you expect that your query may be interrupted while its running, setting `safe_exit=True` will cache responses and unfinished requests before exiting when an interrupt signal is received. Re-running a `search` method with the exact same parameters that you have ran before will load previous responses and any unfinished requests from the cache, allowing it to resume if all the required responses have not yet been retrieved. ```python +from pmaw import PushshiftAPI + api = PushshiftAPI() posts = api.search_submissions(subreddit="science", limit=700000, before=1613234822, safe_exit=True) print(f'{len(posts)} posts retrieved from Pushshift') From 04d15aa38cd3e6735a69e4f8d8520269d3a59372 Mon Sep 17 00:00:00 2001 From: Matthew Podolak Date: Tue, 7 Sep 2021 10:40:10 -0400 Subject: [PATCH 10/18] added automated testing --- .github/workflows/build.yml | 33 +++++++++++++++++++++++++++++++++ CHANGES.md | 1 + 2 files changed, 34 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..2ccf9b9 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,33 @@ +version: 2.1 +orbs: + codecov: codecov/codecov@1.0.2 +jobs: + build: + docker: + - image: circleci/python:3.6.4 + steps: + - checkout + - run: + name: install dependencies + command: | + sudo pip install --upgrade pip + python setup.py sdist bdist_wheel + sudo pip install coverage pytest praw vcr dotenv + sudo pip install . + - run: + name: run tests + command: | + mkdir test-results + coverage run --source=. -m pytest --junitxml=test-results/junit.xml + coverage html + coverage xml + - codecov/upload: + file: coverage.xml + - store_test_results: + path: test-results + - store_artifacts: + path: htmlcov +workflows: + build_test: + jobs: + - build diff --git a/CHANGES.md b/CHANGES.md index c5cde34..9086e92 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,6 +3,7 @@ - Added support for enriching result metadata using PRAW - Implemented functional tests - Reduced `max_ids_per_request` to 500 +- Added automated testing ## 1.1.0 (2021/05/27) From a03b24d20ec61db4c6fd46332fc54bf40d38ed64 Mon Sep 17 00:00:00 2001 From: Matthew Podolak Date: Tue, 7 Sep 2021 10:41:53 -0400 Subject: [PATCH 11/18] fixed circleci config --- .github/workflows/build.yml => .circleci/config.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/build.yml => .circleci/config.yml (100%) diff --git a/.github/workflows/build.yml b/.circleci/config.yml similarity index 100% rename from .github/workflows/build.yml rename to .circleci/config.yml From a1be6869192c66b5ba3347088248265847a887a6 Mon Sep 17 00:00:00 2001 From: Matthew Podolak Date: Tue, 7 Sep 2021 10:44:18 -0400 Subject: [PATCH 12/18] fixed dependencies --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2ccf9b9..0e71635 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,7 +12,7 @@ jobs: command: | sudo pip install --upgrade pip python setup.py sdist bdist_wheel - sudo pip install coverage pytest praw vcr dotenv + sudo pip install coverage pytest praw vcrpy python-dotenv sudo pip install . - run: name: run tests From dd871516c88c10618010c4f0189789770a814e52 Mon Sep 17 00:00:00 2001 From: Matthew Podolak Date: Tue, 7 Sep 2021 10:59:52 -0400 Subject: [PATCH 13/18] added shields --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5cff6cc..f0559d9 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@

PMAW: Pushshift Multithread API Wrapper

+[![CircleCI](https://circleci.com/gh/mattpodolak/pmaw.svg?style=shield)](https://circleci.com/gh/mattpodolak/pmaw) +[![codecov.io](https://codecov.io/github/mattpodolak/pmaw/coverage.svg?branch=master)](https://codecov.io/github/mattpodolak/pmaw) [![PyPI Version](https://img.shields.io/pypi/v/pmaw?color=blue)](https://pypi.org/project/pmaw/) [![Python Version](https://img.shields.io/pypi/pyversions/pmaw?color=blue)](https://www.python.org/) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) @@ -22,7 +24,7 @@ # Description -**PMAW** is an ultra minimalist wrapper for the Pushshift API which uses multithreading to retrieve Reddit comments and submissions. General usage is through the `PushshiftAPI` class which provides methods for interacting with different `Pushshift` endpoints, please view the [Pushshift Docs](https://github.com/pushshift/api) for more details on the endpoints and accepted parameters. Parameters are provided through keyword arguments when calling the method, some methods will have required parameters. When using a method **PMAW** will complete all the required API calls to complete the query before returning a `Response` generator object. +**PMAW** is a wrapper for the Pushshift API which uses multithreading to retrieve Reddit comments and submissions. General usage is through the `PushshiftAPI` class which provides methods for interacting with different `Pushshift` endpoints, please view the [Pushshift Docs](https://github.com/pushshift/api) for more details on the endpoints and accepted parameters. Parameters are provided through keyword arguments when calling the method, some methods will have required parameters. When using a method **PMAW** will complete all the required API calls to complete the query before returning a `Response` generator object. The following three methods are currently supported: From f4b9f5a8690fad3ca22234ec64d10dbf01e3f50c Mon Sep 17 00:00:00 2001 From: Matthew Podolak Date: Tue, 7 Sep 2021 20:07:58 -0400 Subject: [PATCH 14/18] increased exception specificity --- CHANGES.md | 1 + pmaw/Cache.py | 9 +++------ pmaw/PushshiftAPI.py | 12 +++++++----- pmaw/PushshiftAPIBase.py | 16 +++++++++++----- pmaw/RateLimit.py | 2 +- pmaw/Request.py | 24 +++++++++++++++++++++--- pmaw/utils/filter.py | 12 ++++++++++++ 7 files changed, 56 insertions(+), 20 deletions(-) create mode 100644 pmaw/utils/filter.py diff --git a/CHANGES.md b/CHANGES.md index 9086e92..6c71de9 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,7 @@ - Implemented functional tests - Reduced `max_ids_per_request` to 500 - Added automated testing +- Increased exception handling specificity ## 1.1.0 (2021/05/27) diff --git a/pmaw/Cache.py b/pmaw/Cache.py index bf6c8a1..a30eccb 100644 --- a/pmaw/Cache.py +++ b/pmaw/Cache.py @@ -22,10 +22,7 @@ def __init__(self, payload, safe_exit, cache_dir=None): # create cache folder self.folder = str(cache_dir) if cache_dir else "./cache" - try: - Path(self.folder).mkdir(exist_ok=True, parents=True) - except Exception as exc: - log.debug(f'Folder creation failed - {exc}') + Path(self.folder).mkdir(exist_ok=True, parents=True) self.response_cache = [] self.size = 0 @@ -51,7 +48,7 @@ def load_info(self): try: with gzip.open(f'{self.folder}/{self.key}_info.pickle.gz', 'rb') as handle: return pickle.load(handle) - except Exception: + except FileNotFoundError: log.info('No previous requests to load') def load_resp(self, cache_num): @@ -59,7 +56,7 @@ def load_resp(self, cache_num): try: with gzip.open(f'{self.folder}/{filename}', 'rb') as handle: return pickle.load(handle) - except Exception as exc: + except FileNotFoundError as exc: warnings.warn(f'Failed to load responses from {filename} - {exc}') def save_info(self, **kwargs): diff --git a/pmaw/PushshiftAPI.py b/pmaw/PushshiftAPI.py index 9dabfe1..27666fa 100644 --- a/pmaw/PushshiftAPI.py +++ b/pmaw/PushshiftAPI.py @@ -34,9 +34,9 @@ def search_submission_comment_ids(self, ids, **kwargs): Response generator object """ kwargs['ids'] = ids - return self._search(kind='submission_comment_ids', **kwargs) + return self._search(filter_fn=None, kind='submission_comment_ids', **kwargs) - def search_comments(self, **kwargs): + def search_comments(self, filter_fn=None, **kwargs): """ Method for searching comments, returns an array of comments @@ -46,12 +46,13 @@ def search_comments(self, **kwargs): mem_safe (boolean, optional) - If True, stores responses in cache during operation, defaults to False search_window (int, optional) - Size in days for search window for submissions / comments in non-id based search, defaults to 365 safe_exit (boolean, optional) - If True, will safely exit if interrupted by storing current responses and requests in the cache. Will also load previous requests / responses if found in cache, defaults to False + filter_fn (function, optional) - Function that filters results before saving them, accept a comment parameter, return False to filter the item, otherwise return True Output: Response generator object """ - return self._search(kind='comment', **kwargs) + return self._search(filter_fn, kind='comment', **kwargs) - def search_submissions(self, **kwargs): + def search_submissions(self, filter_fn=None, **kwargs): """ Method for searching submissions, returns an array of submissions @@ -61,7 +62,8 @@ def search_submissions(self, **kwargs): mem_safe (boolean, optional) - If True, stores responses in cache during operation, defaults to False search_window (int, optional) - Size in days for search window for submissions / comments in non-id based search, defaults to 365 safe_exit (boolean, optional) - If True, will safely exit if interrupted by storing current responses and requests in the cache. Will also load previous requests / responses if found in cache, defaults to False + filter_fn (function, optional) - Function that filters results before saving them, accept a submission parameter, return False to filter the item, otherwise return True Output: Response generator object """ - return self._search(kind='submission', **kwargs) + return self._search(filter_fn, kind='submission', **kwargs) diff --git a/pmaw/PushshiftAPIBase.py b/pmaw/PushshiftAPIBase.py index 101090d..6b9edd6 100644 --- a/pmaw/PushshiftAPIBase.py +++ b/pmaw/PushshiftAPIBase.py @@ -1,5 +1,5 @@ -import time import requests +from requests import HTTPError import json from concurrent.futures import ThreadPoolExecutor, as_completed import copy @@ -70,7 +70,7 @@ def _get(self, url, payload={}): return r['data'] else: - raise Exception(f"HTTP {status} - {reason}") + raise HTTPError(f"HTTP {status} - {reason}") @property def shards_are_down(self): @@ -170,7 +170,7 @@ def _futures_handler(self, futures, check_total): # generate payloads self.req.gen_slices( url, payload, after, before, num) - except Exception as exc: + except HTTPError as exc: log.debug(f"Request Failed -- {exc}") self._rate_limit._req_fail() self.req.req_list.appendleft(url_pay) @@ -178,8 +178,9 @@ def _futures_handler(self, futures, check_total): def _shutdown(self, exc, wait=False, cancel_futures=True): # shutdown executor try: + # pass cancel_futures keywords avail in python 3.9 exc.shutdown(wait=wait, cancel_futures=cancel_futures) - except Exception: + except TypeError: # TODO: manually cancel pending futures exc.shutdown(wait=wait) @@ -194,6 +195,10 @@ def _print_stats(self, prefix): remaining = 0 # don't print a neg number print( f'{prefix}:: Success Rate: {rate:.2f}% - Requests: {self.num_req} - Batches: {self.num_batches} - Items Remaining: {remaining}') + if(self.req.praw and len(self.req.enrich_list) > 0): + # let the user know praw enrichment is still in progress so it doesnt appear to hang after + # finishing retrieval from Pushshift + print(f'Finishing enrichment for {len(self.req.enrich_list)} items') def _reset(self): self.num_suc = 0 @@ -201,6 +206,7 @@ def _reset(self): self.num_batches = 0 def _search(self, + filter_fn, kind, max_ids_per_request=500, max_results_per_request=100, @@ -218,7 +224,7 @@ def _search(self, self.metadata_ = {} self.resp_dict = {} - self.req = Request(copy.deepcopy(kwargs), kind, + self.req = Request(copy.deepcopy(kwargs), filter_fn, kind, max_results_per_request, max_ids_per_request, mem_safe, safe_exit, cache_dir, self.praw) # reset stat tracking diff --git a/pmaw/RateLimit.py b/pmaw/RateLimit.py index 7ecc382..636a736 100644 --- a/pmaw/RateLimit.py +++ b/pmaw/RateLimit.py @@ -80,7 +80,7 @@ def _average(self): try: self.cache.remove(first_req) - except Exception: + except ValueError: log.debug(f'{first_req} has already been removed RL cache') num_req = len(self.cache) diff --git a/pmaw/Request.py b/pmaw/Request.py index d57c950..e738165 100644 --- a/pmaw/Request.py +++ b/pmaw/Request.py @@ -7,8 +7,11 @@ import signal import time +from praw.exceptions import RedditAPIException + from pmaw.Cache import Cache from pmaw.utils.slices import timeslice, mapslice +from pmaw.utils.filter import apply_filter from pmaw.Response import Response @@ -18,7 +21,7 @@ class Request(object): """Request: Handles request information, response saving, and cache usage.""" - def __init__(self, payload, kind, max_results_per_request, max_ids_per_request, mem_safe, safe_exit, cache_dir=None, praw=None): + def __init__(self, payload, filter_fn, kind, max_results_per_request, max_ids_per_request, mem_safe, safe_exit, cache_dir=None, praw=None): self.kind = kind self.max_ids_per_request = min(500, max_ids_per_request) self.max_results_per_request = min(100, max_results_per_request) @@ -29,6 +32,15 @@ def __init__(self, payload, kind, max_results_per_request, max_ids_per_request, self.limit = payload.get('limit', None) self.exit = Event() self.praw = praw + self._filter = filter_fn + + if safe_exit and self.payload.get('before', None) is None: + # warn the user not to use safe_exit without setting before, + # doing otherwise will make it impossible to resume without modifying + # future query to use before value from first run + before = int(dt.datetime.now().timestamp()) + payload['before'] = before + warnings.warn(f'Using safe_exit without setting before value is not recommended. Setting before to {before}') if self.praw is not None: if safe_exit: @@ -72,7 +84,7 @@ def check_sigs(self): try: getattr(signal, 'SIGHUP') sigs = ('TERM', 'HUP', 'INT') - except Exception: + except AttributeError: sigs = ('TERM', 'INT') for sig in sigs: @@ -97,7 +109,7 @@ def _enrich_data(self): praw_data = [vars(obj) for obj in resp_gen] self.resp.responses.extend(praw_data) - except Exception as exc: + except RedditAPIException: self.enrich_list.extend(fullnames) def _idle_task(self, interval): @@ -140,10 +152,16 @@ def _exit(self, signo, _frame): self.exit.set() def save_resp(self, results): + # dont filter results before updating limit: limit is the max number of results + # extracted from Pushshift, filtering can reduce the results < limit if self.kind == 'submission_comment_ids': self.limit -= 1 else: self.limit -= len(results) + + # apply user defined filter function before storing + if(self._filter is not None): + results = apply_filter(results, self._filter) if self.praw: # save fullnames of objects to be enriched with metadata by PRAW diff --git a/pmaw/utils/filter.py b/pmaw/utils/filter.py new file mode 100644 index 0000000..2e56648 --- /dev/null +++ b/pmaw/utils/filter.py @@ -0,0 +1,12 @@ +def apply_filter(array, filter_fn): + filtered_array = [] + for item in array: + try: + if(filter_fn(item)): + filtered_array.append(item) + except TypeError as exc: + raise Exception('An error occured while filtering:\n', exc) + except KeyError as exc: + raise Exception(f'The {exc} key does not exist for the item you are filtering') + + return filtered_array From 0a6ebab0814ec608f9ef848d6028634400f2aa95 Mon Sep 17 00:00:00 2001 From: Matthew Podolak Date: Fri, 10 Sep 2021 15:25:36 -0400 Subject: [PATCH 15/18] fixed filter_fn implementation --- pmaw/Request.py | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/pmaw/Request.py b/pmaw/Request.py index e738165..0a0c0b1 100644 --- a/pmaw/Request.py +++ b/pmaw/Request.py @@ -34,6 +34,9 @@ def __init__(self, payload, filter_fn, kind, max_results_per_request, max_ids_pe self.praw = praw self._filter = filter_fn + if filter_fn and not callable(filter_fn): + raise Exception('filter_fn must be a callable function') + if safe_exit and self.payload.get('before', None) is None: # warn the user not to use safe_exit without setting before, # doing otherwise will make it impossible to resume without modifying @@ -151,6 +154,13 @@ def save_cache(self): def _exit(self, signo, _frame): self.exit.set() + def _apply_filter(self, results): + # apply user defined filter function before storing + if(self._filter is not None): + return apply_filter(results, self._filter) + else: + return results + def save_resp(self, results): # dont filter results before updating limit: limit is the max number of results # extracted from Pushshift, filtering can reduce the results < limit @@ -158,18 +168,16 @@ def save_resp(self, results): self.limit -= 1 else: self.limit -= len(results) - - # apply user defined filter function before storing - if(self._filter is not None): - results = apply_filter(results, self._filter) if self.praw: # save fullnames of objects to be enriched with metadata by PRAW if self.kind == 'submission_comment_ids': self.enrich_list.extend([self.prefix+res for res in results]) else: + results = self._apply_filter(results) self.enrich_list.extend([self.prefix+res['id'] for res in results]) else: + results = self._apply_filter(results) self.resp.responses.extend(results) def _add_nec_args(self, payload): From 49a3dbeb346a75b90556e66799214026c377f817 Mon Sep 17 00:00:00 2001 From: Matthew Podolak Date: Sat, 11 Sep 2021 11:00:58 -0400 Subject: [PATCH 16/18] updated custom filter function --- README.md | 40 +++++++++++++++--- pmaw/PushshiftAPI.py | 19 +++++---- pmaw/PushshiftAPIBase.py | 2 +- pmaw/Request.py | 8 ++-- pmaw/utils/filter.py | 4 +- tests/test_filter_fn.py | 46 +++++++++++++++++++++ tests/test_search_submission_comment_ids.py | 4 +- 7 files changed, 101 insertions(+), 22 deletions(-) create mode 100644 tests/test_filter_fn.py diff --git a/README.md b/README.md index f0559d9..636daf7 100644 --- a/README.md +++ b/README.md @@ -11,12 +11,18 @@ - [Description](#description) - [Getting Started](#getting-started) - [Features](#features) + - [Multithreading](#multithreading) + - [Rate Limiting](#rate-limiting) + - [PRAW Enrichment](#praw-enrichment) + - [Custom Filtering](#custom-filtering) + - [Unsupported Parameters](#unsupported-parameters) - [Parameters](#parameters) - [Examples](#examples) - [Comments](#comments) - [Submissions](#submissions) - [Advanced Examples](#advanced-examples) - - [PRAW Enrichment](#praw-enrichment) + - [PRAW](#praw) + - [Custom Filter](#custom-filter) - [Memory Safety](#memory-safety) - [Safe Exiting](#safe-exiting) - [Benchmarks](#benchmarks) @@ -115,6 +121,16 @@ A `before` value is required to load previous responses / requests when using no Similarly to the memory safety feature, a `Response` generator object is returned. When iterating through the responses using this generator, responses from the cache will be loaded in 1 cache file at a time. +## PRAW Enrichment + +Enrich results with the most recent metadata from Reddit by passing a PRAW Reddit instance when instantiating the PushshiftAPI. Results not found on Reddit will not be enriched or returned. + +If you don’t already have a client ID and client secret, follow Reddit’s [First Steps Guide](https://github.com/reddit-archive/reddit/wiki/OAuth2-Quick-Start-Example#first-steps) to create them. A user agent is a unique identifier that helps Reddit determine the source of network requests. To use Reddit’s API, you need a unique and descriptive user agent. + +## Custom Filtering + +A user-defined function can be provided using the `filter_fn` parameter for either the `search_submissions` or `search_comments` method. This function will be used to filter results before they are saved by passing each item to the function and filtering it out if a `False` value is returned, saving the value if `True` is returned. The `limit` parameter does not take into account any results that are filtered out. + ## Unsupported Parameters - `sort='asc'` is unsupported as it can have unexpected results @@ -156,6 +172,8 @@ Similarly to the memory safety feature, a `Response` generator object is returne - `mem_safe` (boolean, optional): If True, stores responses in cache during operation, defaults to False - `search_window` (int, optional): Size in days for search window for submissions / comments in non-id based search, defaults to 365 - `safe_exit` (boolean, optional): If True, will safely exit if interrupted by storing current responses and requests in the cache. Will also load previous requests / responses if found in cache, defaults to False +- `cache_dir` (str, optional) - An absolute or relative folder path to cache responses in when `mem_safe` or `safe_exit` is enabled +- `filter_fn` (function, optional) - A function used for custom filtering the results before saving them. Accepts a single comment or submission parameter and returns False to filter out the item, otherwise returns True. ### Keyword Arguments @@ -169,6 +187,7 @@ Similarly to the memory safety feature, a `Response` generator object is returne - `max_ids_per_request` (int, optional): Maximum number of ids to use in a single request, defaults to 500, maximum 500. - `mem_safe` (boolean, optional): If True, stores responses in cache during operation, defaults to False - `safe_exit` (boolean, optional): If True, will safely exit if interrupted by storing current responses and requests in the cache. Will also load previous requests / responses if found in cache, defaults to False +- `cache_dir` (str, optional) - An absolute or relative folder path to cache responses in when `mem_safe` or `safe_exit` is enabled ### Keyword Arguments @@ -252,11 +271,7 @@ You can supply a single submission by passing the id as a string or an array wit # Advanced Examples -## PRAW Enrichment - -Enrich results with the most recent metadata from Reddit by passing a PRAW Reddit instance when instantiating the PushshiftAPI. - -If you don’t already have a client ID and client secret, follow Reddit’s [First Steps Guide](https://github.com/reddit-archive/reddit/wiki/OAuth2-Quick-Start-Example#first-steps) to create them. A user agent is a unique identifier that helps Reddit determine the source of network requests. To use Reddit’s API, you need a unique and descriptive user agent. +## PRAW ```python import praw @@ -272,6 +287,19 @@ api_praw = PushshiftAPI(praw=reddit) comments = api_praw.search_comments(q="quantum", subreddit="science", limit=100, before=1629990795) ``` +## Custom Filter + +The user defined function must accept a single item (comment / submission) and return either True or False, returning False will filter out the item passed to it. + +```python +from pmaw import PushshiftAPI + +api = PushshiftAPI() +def fxn(item): + return item['score'] > 2 +posts = api.search_submissions(ids=post_ids, filter_fn=fxn) +``` + ## Memory Safety If you are pulling large amounts of data or have a limited amount of RAM, using the memory safety feature will help you avoid an out of memory error from being thrown during data retrieval. diff --git a/pmaw/PushshiftAPI.py b/pmaw/PushshiftAPI.py index 27666fa..1a829e4 100644 --- a/pmaw/PushshiftAPI.py +++ b/pmaw/PushshiftAPI.py @@ -30,13 +30,16 @@ def search_submission_comment_ids(self, ids, **kwargs): max_ids_per_request (int, optional) - Maximum number of ids to use in a single request, defaults to 500, maximum 500. mem_safe (boolean, optional) - If True, stores responses in cache during operation, defaults to False safe_exit (boolean, optional) - If True, will safely exit if interrupted by storing current responses and requests in the cache. Will also load previous requests / responses if found in cache, defaults to False + cache_dir (str, optional) - An absolute or relative folder path to cache responses in when mem_safe or safe_exit is enabled Output: Response generator object """ kwargs['ids'] = ids - return self._search(filter_fn=None, kind='submission_comment_ids', **kwargs) + if('filter_fn' in kwargs): + raise ValueError('filter_fn not supported for search_submission_comment_ids') + return self._search( kind='submission_comment_ids', **kwargs) - def search_comments(self, filter_fn=None, **kwargs): + def search_comments(self, **kwargs): """ Method for searching comments, returns an array of comments @@ -46,13 +49,14 @@ def search_comments(self, filter_fn=None, **kwargs): mem_safe (boolean, optional) - If True, stores responses in cache during operation, defaults to False search_window (int, optional) - Size in days for search window for submissions / comments in non-id based search, defaults to 365 safe_exit (boolean, optional) - If True, will safely exit if interrupted by storing current responses and requests in the cache. Will also load previous requests / responses if found in cache, defaults to False - filter_fn (function, optional) - Function that filters results before saving them, accept a comment parameter, return False to filter the item, otherwise return True + filter_fn (function, optional) - A function used for custom filtering the results before saving them. Accepts a single comment parameter and returns False to filter out the item, otherwise returns True. + cache_dir (str, optional) - An absolute or relative folder path to cache responses in when mem_safe or safe_exit is enabled Output: Response generator object """ - return self._search(filter_fn, kind='comment', **kwargs) + return self._search(kind='comment', **kwargs) - def search_submissions(self, filter_fn=None, **kwargs): + def search_submissions(self, **kwargs): """ Method for searching submissions, returns an array of submissions @@ -62,8 +66,9 @@ def search_submissions(self, filter_fn=None, **kwargs): mem_safe (boolean, optional) - If True, stores responses in cache during operation, defaults to False search_window (int, optional) - Size in days for search window for submissions / comments in non-id based search, defaults to 365 safe_exit (boolean, optional) - If True, will safely exit if interrupted by storing current responses and requests in the cache. Will also load previous requests / responses if found in cache, defaults to False - filter_fn (function, optional) - Function that filters results before saving them, accept a submission parameter, return False to filter the item, otherwise return True + filter_fn (function, optional) - A function used for custom filtering the results before saving them. Accepts a single submission parameter and returns False to filter out the item, otherwise returns True. + cache_dir (str, optional) - An absolute or relative folder path to cache responses in when mem_safe or safe_exit is enabled Output: Response generator object """ - return self._search(filter_fn, kind='submission', **kwargs) + return self._search(kind='submission', **kwargs) diff --git a/pmaw/PushshiftAPIBase.py b/pmaw/PushshiftAPIBase.py index 6b9edd6..bbb3cff 100644 --- a/pmaw/PushshiftAPIBase.py +++ b/pmaw/PushshiftAPIBase.py @@ -206,7 +206,6 @@ def _reset(self): self.num_batches = 0 def _search(self, - filter_fn, kind, max_ids_per_request=500, max_results_per_request=100, @@ -215,6 +214,7 @@ def _search(self, dataset='reddit', safe_exit=False, cache_dir=None, + filter_fn=None, **kwargs): # raise error if aggs are requested diff --git a/pmaw/Request.py b/pmaw/Request.py index 0a0c0b1..aeffa9c 100644 --- a/pmaw/Request.py +++ b/pmaw/Request.py @@ -34,8 +34,8 @@ def __init__(self, payload, filter_fn, kind, max_results_per_request, max_ids_pe self.praw = praw self._filter = filter_fn - if filter_fn and not callable(filter_fn): - raise Exception('filter_fn must be a callable function') + if filter_fn is not None and not callable(filter_fn): + raise ValueError('filter_fn must be a callable function') if safe_exit and self.payload.get('before', None) is None: # warn the user not to use safe_exit without setting before, @@ -110,7 +110,8 @@ def _enrich_data(self): # TODO: may need to change praw usage based on multithread performance resp_gen = self.praw.info(fullnames=fullnames) praw_data = [vars(obj) for obj in resp_gen] - self.resp.responses.extend(praw_data) + results = self._apply_filter(praw_data) + self.resp.responses.extend(results) except RedditAPIException: self.enrich_list.extend(fullnames) @@ -174,7 +175,6 @@ def save_resp(self, results): if self.kind == 'submission_comment_ids': self.enrich_list.extend([self.prefix+res for res in results]) else: - results = self._apply_filter(results) self.enrich_list.extend([self.prefix+res['id'] for res in results]) else: results = self._apply_filter(results) diff --git a/pmaw/utils/filter.py b/pmaw/utils/filter.py index 2e56648..b9bc450 100644 --- a/pmaw/utils/filter.py +++ b/pmaw/utils/filter.py @@ -5,8 +5,8 @@ def apply_filter(array, filter_fn): if(filter_fn(item)): filtered_array.append(item) except TypeError as exc: - raise Exception('An error occured while filtering:\n', exc) + raise TypeError('An error occured while filtering:\n', exc) except KeyError as exc: - raise Exception(f'The {exc} key does not exist for the item you are filtering') + raise KeyError(f'The {exc} key does not exist for the item you are filtering') return filtered_array diff --git a/tests/test_filter_fn.py b/tests/test_filter_fn.py new file mode 100644 index 0000000..7b1cb1b --- /dev/null +++ b/tests/test_filter_fn.py @@ -0,0 +1,46 @@ +from .config import tape, reddit, post_ids, comment_ids +from pmaw import PushshiftAPI +import pytest + +@tape.use_cassette('test_comment_praw_ids') +def test_praw_ids_filter(): + def fxn(item): + return item['ups'] > 2 + api_praw = PushshiftAPI(praw=reddit) + comments = api_praw.search_comments(ids=comment_ids, filter_fn=fxn) + assert(len(comments) == 4) + +@tape.use_cassette('test_submission_search_ids') +def test_search_ids_filter(): + api = PushshiftAPI() + def fxn(item): + return item['score'] > 2 + posts = api.search_submissions(ids=post_ids, filter_fn=fxn) + assert(len(posts) == 2) + +def test_submission_comment_id_exception(): + with pytest.raises(ValueError): + api = PushshiftAPI() + def fxn(item): + return item['score'] > 2 + posts = api.search_submission_comment_ids(ids=post_ids, filter_fn=fxn) + +def test_filter_callable(): + with pytest.raises(ValueError): + api = PushshiftAPI() + posts = api.search_submissions(ids=post_ids, filter_fn='fxn') + +def test_filter_param_exception(): + with pytest.raises(TypeError): + api = PushshiftAPI() + def fxn(): + return True + posts = api.search_submissions(ids=post_ids, filter_fn=fxn) + +def test_filter_key_exception(): + with pytest.raises(KeyError): + api = PushshiftAPI() + def fxn(item): + return item['badkeydoesntexist'] > 2 + posts = api.search_submissions(ids=post_ids, filter_fn=fxn) + diff --git a/tests/test_search_submission_comment_ids.py b/tests/test_search_submission_comment_ids.py index a35bb41..fdf3534 100644 --- a/tests/test_search_submission_comment_ids.py +++ b/tests/test_search_submission_comment_ids.py @@ -13,13 +13,13 @@ def test_submission_comment_ids_praw(): comments = api_praw.search_submission_comment_ids(ids=post_ids) assert(len(comments) == 66) -@tape.use_cassette() +@tape.use_cassette('test_submission_comment_ids_search') def test_submission_comment_ids_search_mem_safe(): api = PushshiftAPI(file_checkpoint=1) comments = api.search_submission_comment_ids(ids=post_ids, mem_safe=True) assert(len(comments) == 66) -@tape.use_cassette() +@tape.use_cassette('test_submission_comment_ids_praw') def test_submission_comment_ids_praw_mem_safe(): api_praw = PushshiftAPI(file_checkpoint=1, praw=reddit) comments = api_praw.search_submission_comment_ids(ids=post_ids, mem_safe=True) From e8fe888180fe66e9101da1ab89f578a918471f29 Mon Sep 17 00:00:00 2001 From: Matthew Podolak Date: Sat, 11 Sep 2021 11:06:38 -0400 Subject: [PATCH 17/18] updated changelog --- CHANGES.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 6c71de9..9ab7969 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,10 +1,11 @@ -## 2.0.0 (2021/09/xx) +## 2.0.0 (2021/09/11) - Added support for enriching result metadata using PRAW - Implemented functional tests - Reduced `max_ids_per_request` to 500 - Added automated testing - Increased exception handling specificity +- Added `filter_fn` for custom filtering ## 1.1.0 (2021/05/27) From 963cca74934e263ecf6d1b7a661d28a2bdc9c397 Mon Sep 17 00:00:00 2001 From: Matthew Podolak Date: Sat, 11 Sep 2021 11:10:15 -0400 Subject: [PATCH 18/18] removed extra cassettes --- .../test_submission_comment_ids_praw_mem_safe | 1935 ----------------- ...est_submission_comment_ids_search_mem_safe | 430 ---- 2 files changed, 2365 deletions(-) delete mode 100644 cassettes/test_submission_comment_ids_praw_mem_safe delete mode 100644 cassettes/test_submission_comment_ids_search_mem_safe diff --git a/cassettes/test_submission_comment_ids_praw_mem_safe b/cassettes/test_submission_comment_ids_praw_mem_safe deleted file mode 100644 index de083d2..0000000 --- a/cassettes/test_submission_comment_ids_praw_mem_safe +++ /dev/null @@ -1,1935 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.25.1 - method: GET - uri: https://api.pushshift.io/reddit/submission/comment_ids/kxi2w8 - response: - body: - string: !!binary | - H4sIAAAAAAAAA2XQuw6CMACF4Z2naDo7IFiJvoph6EULQi/UAlXju5uwcTqeb/pzvgUhhFDFI6dX - ctvWJvrJ5ZoYPexIVeMZiccVSTY5rR2SVg3SKCSSdRk5fUTynUCKnxpplgNS4iXQXdQ+I+aQNFMZ - KYtkhohkF44UvEFK1RvowewC1JsSI3xiL6ApzFgfpn73ane69GlOdJO2+P0Bm838pRcCAAA= - headers: - CF-Cache-Status: - - EXPIRED - CF-RAY: - - 68aac0b95f7e5401-YYZ - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 06 Sep 2021 21:22:28 GMT - Expect-CT: - - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" - Last-Modified: - - Mon, 06 Sep 2021 21:22:17 GMT - NEL: - - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' - Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ebQa1tXOf5yPQx5sWqhucEAgbFkAysWwx3JAcbFRWQUnPqvlD1m5fffFH4o%2Fv0GMs7T682vPA1lQOUIPvaql6RO1jVThVMnaTPx158yRpPtdui0VHYpUZgI1F4lSYeD1mvMt"}],"group":"cf-nel","max_age":604800}' - Server: - - cloudflare - Vary: - - Accept-Encoding - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; - ma=86400 - cache-control: - - public, max-age=1, s-maxage=1 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.25.1 - method: GET - uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhwh0 - response: - body: - string: !!binary | - H4sIAAAAAAAAA6vmUlBQUFBKSSxJVLJSiAbzwCLpWYn5ybnpSjrIQklGWcVZaEKZxUXlaEJZSdkW - SmCRWK5aAIGijjJiAAAA - headers: - CF-Cache-Status: - - EXPIRED - CF-RAY: - - 68aac0d8ab2bcab8-YYZ - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 06 Sep 2021 21:22:33 GMT - Expect-CT: - - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" - Last-Modified: - - Mon, 06 Sep 2021 21:22:25 GMT - NEL: - - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' - Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Kde2TH%2FEfSpQqwOGQMC5Kt0BCREVFPktwnuEuvS0o99isDZoKqVlc9JW2AWPRp0xnVI%2FfXDExan0q91EaoZoonGNU33AZi7f24B0hpceQnzOqUUtm1D%2FRlOOzXLmyZiXJ%2F9N"}],"group":"cf-nel","max_age":604800}' - Server: - - cloudflare - Vary: - - Accept-Encoding - access-control-allow-origin: - - '*' - alt-svc: - - h3-27=":443"; ma=86400, h3-28=":443"; ma=86400, h3-29=":443"; ma=86400, h3=":443"; - ma=86400 - cache-control: - - public, max-age=1, s-maxage=1 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.25.1 - method: GET - uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhv53 - response: - body: - string: !!binary | - H4sIAAAAAAAAA13MsQ6CMBRG4Z2nuOnMUBsC1VcxDhcwUlqbgkWLxHc36dZ/PN9wjoqISIwcWVzo - mivLY+bBmEXUJTnXIvmwAY3SGSS14muKCyN92zOQeU4NUlABKTncz80pAVmpIlB6dxJo12kvqde2 - fwF97L0raZBeb0gre5HlVv3+Po7oeGwBAAA= - headers: - CF-Cache-Status: - - EXPIRED - CF-RAY: - - 68aac0defbd1caa0-YYZ - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 06 Sep 2021 21:22:34 GMT - Expect-CT: - - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" - Last-Modified: - - Mon, 06 Sep 2021 21:22:25 GMT - NEL: - - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' - Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=bnIg2i6CSzVV4JzWECMxKdgWon4MDbkjNxfLLx5A9lTUsqkGt0BJWfo4GtowZs%2BycT%2FhJVBt7Nr%2BunvByalpYob5FqAddM5qQKfLpK9%2FdzVxc1LQcqUCM0Y5ITr8xNzJiScp"}],"group":"cf-nel","max_age":604800}' - Server: - - cloudflare - Vary: - - Accept-Encoding - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; - ma=86400 - cache-control: - - public, max-age=1, s-maxage=1 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.25.1 - method: GET - uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhm7b - response: - body: - string: !!binary | - H4sIAAAAAAAAA6vmUlBQUFBKSSxJVLJSiAbzwCLpWYmWBVUpSjqoQoUGOWhCSan5lWhCyWmm2WhC - KRYVZmhCqcVmpmhC6cVVBahCyXklyYVKYJFYrloAdvPG464AAAA= - headers: - CF-Cache-Status: - - EXPIRED - CF-RAY: - - 68aac0e51e7854a9-YYZ - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 06 Sep 2021 21:22:38 GMT - Expect-CT: - - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" - Last-Modified: - - Mon, 06 Sep 2021 21:22:25 GMT - NEL: - - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' - Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=NJJwbST%2B7Y7roDwrWziEk%2Bvf6LvxLV495hI1V5tzt%2F9hlPTq%2FUhBvGdKJ8KWpKLx1BG1aNF%2FwVi80P5rvNHNQk8b7VJNcWkpl%2BJjW79vjUUchgSdzmdLaI0O%2BFyQr7Hi%2FqZz"}],"group":"cf-nel","max_age":604800}' - Server: - - cloudflare - Vary: - - Accept-Encoding - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; - ma=86400 - cache-control: - - public, max-age=1, s-maxage=1 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.25.1 - method: GET - uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhm3s - response: - body: - string: "{\n \"data\": []\n}" - headers: - Accept-Ranges: - - bytes - CF-Cache-Status: - - EXPIRED - CF-RAY: - - 68aac0eb5b144009-YYZ - Connection: - - keep-alive - Content-Length: - - '18' - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 06 Sep 2021 21:22:38 GMT - Expect-CT: - - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" - Last-Modified: - - Mon, 06 Sep 2021 21:22:25 GMT - NEL: - - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' - Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=wCiui9x6WIz7jWLFNbVbJ6Pdkw9eCbAicpQ5IhJVZ54p4zT%2FmPE9BYR8bcH3laKTEbFlRPGVTk5PMpfjVj%2Bk2ydPdG3Jx5bkUjr0K58Js8SprIcYfNPah8vfNgcsH9%2FXdE7w"}],"group":"cf-nel","max_age":604800}' - Server: - - cloudflare - Vary: - - Accept-Encoding - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; - ma=86400 - cache-control: - - public, max-age=1, s-maxage=1 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.25.1 - method: GET - uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhg37 - response: - body: - string: "{\n \"data\": [\n \"gja8u8b\"\n ]\n}" - headers: - Accept-Ranges: - - bytes - CF-Cache-Status: - - EXPIRED - CF-RAY: - - 68aac0f19dd3f999-YYZ - Connection: - - keep-alive - Content-Length: - - '41' - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 06 Sep 2021 21:22:38 GMT - Expect-CT: - - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" - Last-Modified: - - Mon, 06 Sep 2021 21:22:26 GMT - NEL: - - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' - Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=qakZ%2B4iWxepPYSOMnow1pYW5bFCk3Cr8bWFV4MMelfN5OC5K2o5sdDaYpbE9xqINfAlO1QfGkTpXswXTBgBpMLSKEJymyMUV%2FHydAZEtIkrp8Din0u5Ep5UgyucLloWZeVVb"}],"group":"cf-nel","max_age":604800}' - Server: - - cloudflare - Vary: - - Accept-Encoding - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; - ma=86400 - cache-control: - - public, max-age=1, s-maxage=1 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.25.1 - method: GET - uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhak9 - response: - body: - string: "{\n \"data\": [\n \"gja7tcu\"\n ]\n}" - headers: - Accept-Ranges: - - bytes - CF-Cache-Status: - - EXPIRED - CF-RAY: - - 68aac0f7dd5d5425-YYZ - Connection: - - keep-alive - Content-Length: - - '41' - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 06 Sep 2021 21:22:38 GMT - Expect-CT: - - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" - Last-Modified: - - Mon, 06 Sep 2021 21:22:27 GMT - NEL: - - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' - Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ba%2Bz1cMpauIZ%2FsRFb4iWp5u3ZK96reRDgSqhOl934F0g9KISmBsQNeK%2BVhCAvN%2BjDLc3gnrNplfsNM4DIrZrKz0t1vA8k0OP0hGXD2BoYuO07oU2rwZ%2BRiwlZTxfC61CsEkF"}],"group":"cf-nel","max_age":604800}' - Server: - - cloudflare - Vary: - - Accept-Encoding - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; - ma=86400 - cache-control: - - public, max-age=1, s-maxage=1 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Cookie: - - csv=1; edgebucket=OMsZOoVYIjD58gEF6j; loid=0000000000edlr3smv.2.1630963335757.Z0FBQUFBQmhOb2FJdk11b2p1ZEhCaEhqamNYeHdraEFBZ01wbV9WX2ppMURnaEpXMzM4bFpRUUxCeTdiOHZBa1l4OXhUR2dZa0xfSzdCRHd2ZDFtTmNlMXBSU0ZjODBJS3lRaFNOQTRyQ3VPR2drcjJnbDZOenBqejhkaHVRVTdJM2xKUzVVSHhrSlk; - session_tracker=hrmpjhapbalbrenlmk.0.1630963335869.Z0FBQUFBQmhOb2FJeFlYVklfUGhjWmVjaTdubDF2anRmejRXWkRhWExwODhUVVZFaEgzcWgxbkVMaGF4SFlaNXRaeWVCcVYwOXRHbTlzVW9zV1FReUNoTlRvUTRQV0FsT0E2VlBFV3pwanBmY1hKQjJuM1dNUEJET3IyRV9zZUZvenRQX3loYmd0QkQ - User-Agent: - - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' - method: GET - uri: https://oauth.reddit.com/api/info/?id=t1_gjac9d6%2Ct1_gjacn1r%2Ct1_gjacwx5%2Ct1_gjad2l6%2Ct1_gjadatw%2Ct1_gjadc7w%2Ct1_gjadcwh%2Ct1_gjadgd7%2Ct1_gjadlbc%2Ct1_gjadnoc%2Ct1_gjadog1%2Ct1_gjadphb%2Ct1_gjadtz3%2Ct1_gjaduck%2Ct1_gjadxa0%2Ct1_gjaeb3p%2Ct1_gjaeb5o%2Ct1_gjaeg5d%2Ct1_gjaegdn%2Ct1_gjaemkt%2Ct1_gjaenva%2Ct1_gjaerpm%2Ct1_gjaex2y%2Ct1_gjaf5nv%2Ct1_gjaim0d%2Ct1_gjapx5s%2Ct1_gjaqruo%2Ct1_gjarqic%2Ct1_h49ixux%2Ct1_gjac5fb%2Ct1_gjacdy5%2Ct1_gjaco45%2Ct1_gjasj4f%2Ct1_gjbxfeg%2Ct1_gjaocmg%2Ct1_gjb2jsj%2Ct1_gjbisrw%2Ct1_gjbjbk8%2Ct1_gjaciiq%2Ct1_gjacll6%2Ct1_gjacnpu%2Ct1_gjad0li%2Ct1_gjad2rq%2Ct1_gjahtqa%2Ct1_gjahz69%2Ct1_gjaimh4%2Ct1_gjaip2p%2Ct1_gjaixlq%2Ct1_gjaj41x%2Ct1_gjak02t%2Ct1_gjaxv70%2Ct1_gjay8xy%2Ct1_gjb8kbs%2Ct1_gjbwke7%2Ct1_gjc0n8u%2Ct1_gjc0ran%2Ct1_gja9pzd%2Ct1_gja9q0l%2Ct1_gjabeoy%2Ct1_gjacf5k%2Ct1_gjad8x6%2Ct1_gjaes65%2Ct1_gjagszp%2Ct1_gjcntcq%2Ct1_gja8u8b%2Ct1_gja7tcu&raw_json=1 - response: - body: - string: !!binary | - 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 - sv773/8P5/o1dlV4AgA= - headers: - Accept-Ranges: - - bytes - Connection: - - keep-alive - Content-Length: - - '17570' - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 06 Sep 2021 21:22:38 GMT - Server: - - snooserv - Set-Cookie: - - session_tracker=hrmpjhapbalbrenlmk.0.1630963358739.Z0FBQUFBQmhOb2FlZ2Y3akFDN29aTWd3ZHNPekVIQnVlU0hsUXkwLXZyMUlpWl9oVVFaWHNWbDdYZ1JNSkYwWVZFcGllNmdSR0RHUHNhWVdqNFRrRkVIN1pfem1SS25XbEt4STUxbVhCX2FIdEpLNE1UV0VlbDJoOW5QS1F5b1poSUFFcGltVFZqUDg; - Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 23:22:38 - GMT; secure; SameSite=None; Secure - Strict-Transport-Security: - - max-age=15552000; includeSubDomains; preload - Vary: - - accept-encoding - Via: - - 1.1 varnish - X-Clacks-Overhead: - - GNU Terry Pratchett - X-Moose: - - majestic - access-control-allow-origin: - - '*' - access-control-expose-headers: - - X-Moose - cache-control: - - max-age=0, must-revalidate - content-encoding: - - gzip - x-content-type-options: - - nosniff - x-frame-options: - - SAMEORIGIN - x-ratelimit-remaining: - - '298' - x-ratelimit-reset: - - '442' - x-ratelimit-used: - - '2' - x-ua-compatible: - - IE=edge - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Cookie: - - csv=1; edgebucket=OMsZOoVYIjD58gEF6j; loid=0000000000edlr3smv.2.1630963335757.Z0FBQUFBQmhOb2NnMFVGWlRoTXROc3VsbWNaQ1BZb0Q3MlNrMzc0ZEI3TUFJWXVBR0dfeVcxWFVmUFFycmZIYmRCV2phOE5JcjF6S2lrcU5Da0lfejlMRFYySjFpSG9EWjhZbkhBR0YxcHcweGxiX1pORkV3WlQzODF1Ulp4VHZrNWZldk1lai11TUc; - session_tracker=cpeaoegmkakciohion.0.1630963488446.Z0FBQUFBQmhOb2NnOVo4V256a1FCYm91X0c3b3gwcEdUOEdaMmRmNVJyR3Z5V0VMSlYydVo3dzVPTkpkSVpydVFyT29OS3BWSUNELWwxWm50cGpBN19sbWRyejdzczllcEF2YXFuU1NZRXI5VUIwM2taeWpJWHhxWGxZdXRoMjJyQnY3RlQ3bHFoei0 - User-Agent: - - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' - method: GET - uri: https://oauth.reddit.com/api/info/?id=t1_gjacwx5%2Ct1_gjad2l6%2Ct1_gjadatw%2Ct1_gjadc7w%2Ct1_gjadcwh%2Ct1_gjadgd7%2Ct1_gjadlbc%2Ct1_gjadnoc%2Ct1_gjadog1%2Ct1_gjadphb%2Ct1_gjadtz3%2Ct1_gjaduck%2Ct1_gjadxa0%2Ct1_gjaeb3p%2Ct1_gjaeb5o%2Ct1_gjaeg5d%2Ct1_gjaegdn%2Ct1_gjaemkt%2Ct1_gjaenva%2Ct1_gjaerpm%2Ct1_gjaex2y%2Ct1_gjaf5nv%2Ct1_gjaim0d%2Ct1_gjapx5s%2Ct1_gjaqruo%2Ct1_gjarqic%2Ct1_h49ixux%2Ct1_gjacn1r%2Ct1_gjac9d6%2Ct1_gjac5fb%2Ct1_gjacdy5%2Ct1_gjaco45%2Ct1_gjasj4f%2Ct1_gjbxfeg%2Ct1_gjaocmg%2Ct1_gjb2jsj%2Ct1_gjbisrw%2Ct1_gjbjbk8%2Ct1_gjaciiq%2Ct1_gjacll6%2Ct1_gjacnpu%2Ct1_gjad0li%2Ct1_gjad2rq%2Ct1_gjahtqa%2Ct1_gjahz69%2Ct1_gjaimh4%2Ct1_gjaip2p%2Ct1_gjaixlq%2Ct1_gjaj41x%2Ct1_gjak02t%2Ct1_gjaxv70%2Ct1_gjay8xy%2Ct1_gjb8kbs%2Ct1_gjbwke7%2Ct1_gjc0n8u%2Ct1_gjc0ran%2Ct1_gja9pzd%2Ct1_gja9q0l%2Ct1_gjabeoy%2Ct1_gjacf5k%2Ct1_gjad8x6%2Ct1_gjaes65%2Ct1_gjagszp%2Ct1_gjcntcq%2Ct1_gja8u8b%2Ct1_gja7tcu&raw_json=1 - response: - body: - string: !!binary | - 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 - lvXf//5/LNX5/zB4AgA= - headers: - Accept-Ranges: - - bytes - Connection: - - keep-alive - Content-Length: - - '17285' - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 06 Sep 2021 21:25:09 GMT - Server: - - snooserv - Set-Cookie: - - session_tracker=cpeaoegmkakciohion.0.1630963509305.Z0FBQUFBQmhOb2MxbFhtdlBBb0RVRkkyVno5OVZsNDBDQ2w3RktNekdocllKYlFrdkNKU0s4Y2EyMXI1WUI3VnAwTjlhemc4V1RhTS1YbGNFSVdtOTRKSXhsTG1ZRWNIcWZiLXltLVFkYlNFN2k2bFZvLUJCallJOVBHcG1NZ2hNZmFkNVhJOGNmWHU; - Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 23:25:09 - GMT; secure; SameSite=None; Secure - Strict-Transport-Security: - - max-age=15552000; includeSubDomains; preload - Vary: - - accept-encoding - Via: - - 1.1 varnish - X-Clacks-Overhead: - - GNU Terry Pratchett - X-Moose: - - majestic - access-control-allow-origin: - - '*' - access-control-expose-headers: - - X-Moose - cache-control: - - max-age=0, must-revalidate - content-encoding: - - gzip - x-content-type-options: - - nosniff - x-frame-options: - - SAMEORIGIN - x-ratelimit-remaining: - - '296' - x-ratelimit-reset: - - '291' - x-ratelimit-used: - - '4' - x-ua-compatible: - - IE=edge - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.25.1 - method: GET - uri: https://api.pushshift.io/reddit/submission/comment_ids/kxi2g1 - response: - body: - string: "{\n \"data\": [\n \"gjacn1r\"\n ]\n}" - headers: - Accept-Ranges: - - bytes - CF-Cache-Status: - - EXPIRED - CF-RAY: - - 68aac71329c45401-YYZ - Connection: - - keep-alive - Content-Length: - - '41' - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 06 Sep 2021 21:26:51 GMT - Expect-CT: - - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" - Last-Modified: - - Mon, 06 Sep 2021 21:26:38 GMT - NEL: - - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' - Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=rQvzKw0OMZ8nHCQJw%2BIQu00wHzUZ%2Foph3igEjFM%2FFc6MtdIJTrS4d9ppd0AxS2nY6CxPoUdMHd4hC%2B8j261i%2FV4B5rh9ydgxNXlykSFNwn2Ct5bfN4s4PbPvDCLrEiudf3a7"}],"group":"cf-nel","max_age":604800}' - Server: - - cloudflare - Vary: - - Accept-Encoding - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; - ma=86400 - cache-control: - - public, max-age=1, s-maxage=1 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Cookie: - - csv=1; edgebucket=OMsZOoVYIjD58gEF6j; loid=0000000000edlr3smv.2.1630963335757.Z0FBQUFBQmhOb2VOQ3htY0pnVEVGdkd4VnV2YTllR25CcnE1NGRjdTlsMWdSVXhEbkJQc2VCS0FaUVpuQ1hNRUIyMF9ENGt1bV9Ic05JQ05aVE83TzZRSTVKdWY5bWM5VGtvSDU3ZGlaaV9VT3JSTDFuQnMwZDJEMDF2eFNPc3RJZWhYdG11NkUxczU; - session_tracker=lqkbpjrrapcpqordli.0.1630963597170.Z0FBQUFBQmhOb2VOcGY2Z0dHSTZNZDM2VDJfT0QzNUN5bDZya3ZQSUxybmFqb2Y0WFo4Tk83RnNjMFhsOWc0ZUJPR2c5d0VDay0zNzRBSDJ5RXFvNjZnUTNkOC12U0VZbTJMaV9CdE9XUGhka09xY0RpbW5GRVJDMnI5ZlhKRDA2bGNBVDZnUHNULTY - User-Agent: - - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' - method: GET - uri: https://oauth.reddit.com/api/info/?id=t1_gjac5fb%2Ct1_gjacdy5%2Ct1_gjaco45%2Ct1_gjasj4f%2Ct1_gjbxfeg%2Ct1_gjacn1r%2Ct1_gjac9d6%2Ct1_gjacwx5%2Ct1_gjad2l6%2Ct1_gjadatw%2Ct1_gjadc7w%2Ct1_gjadcwh%2Ct1_gjadgd7%2Ct1_gjadlbc%2Ct1_gjadnoc%2Ct1_gjadog1%2Ct1_gjadphb%2Ct1_gjadtz3%2Ct1_gjaduck%2Ct1_gjadxa0%2Ct1_gjaeb3p%2Ct1_gjaeb5o%2Ct1_gjaeg5d%2Ct1_gjaegdn%2Ct1_gjaemkt%2Ct1_gjaenva%2Ct1_gjaerpm%2Ct1_gjaex2y%2Ct1_gjaf5nv%2Ct1_gjaim0d%2Ct1_gjapx5s%2Ct1_gjaqruo%2Ct1_gjarqic%2Ct1_h49ixux%2Ct1_gjaocmg%2Ct1_gjb2jsj%2Ct1_gjbisrw%2Ct1_gjbjbk8%2Ct1_gjaciiq%2Ct1_gjacll6%2Ct1_gjacnpu%2Ct1_gjad0li%2Ct1_gjad2rq%2Ct1_gjahtqa%2Ct1_gjahz69%2Ct1_gjaimh4%2Ct1_gjaip2p%2Ct1_gjaixlq%2Ct1_gjaj41x%2Ct1_gjak02t%2Ct1_gjaxv70%2Ct1_gjay8xy%2Ct1_gjb8kbs%2Ct1_gjbwke7%2Ct1_gjc0n8u%2Ct1_gjc0ran%2Ct1_gja9pzd%2Ct1_gja9q0l%2Ct1_gjabeoy%2Ct1_gjacf5k%2Ct1_gjad8x6%2Ct1_gjaes65%2Ct1_gjagszp%2Ct1_gjcntcq%2Ct1_gja8u8b%2Ct1_gja7tcu&raw_json=1 - response: - body: - string: !!binary | - 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 - 1rfEB/tiqEg9lvXf//5//ArHy1N4AgA= - headers: - Accept-Ranges: - - bytes - Connection: - - keep-alive - Content-Length: - - '17351' - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 06 Sep 2021 21:26:57 GMT - Server: - - snooserv - Set-Cookie: - - session_tracker=lqkbpjrrapcpqordli.0.1630963617627.Z0FBQUFBQmhOb2VoRVIwS0k2dnAzd2o1Y0JZdkwyRnJmd0lLc1dCdkVUUnZVQklmMnA3NTNDYzMwc0pTaGhfbmNyMUlPelJyOGxoN1I2X2tqZUtsM0NvbTJxaE5jckRJZTg3RVo2dDRRUGt2aks3Y0JDbFJZV0dlYXl6aThmUU1sdVNDLXd3VjJIVVQ; - Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 23:26:57 - GMT; secure; SameSite=None; Secure - Strict-Transport-Security: - - max-age=15552000; includeSubDomains; preload - Vary: - - accept-encoding - Via: - - 1.1 varnish - X-Clacks-Overhead: - - GNU Terry Pratchett - X-Moose: - - majestic - access-control-allow-origin: - - '*' - access-control-expose-headers: - - X-Moose - cache-control: - - max-age=0, must-revalidate - content-encoding: - - gzip - x-content-type-options: - - nosniff - x-frame-options: - - SAMEORIGIN - x-ratelimit-remaining: - - '294' - x-ratelimit-reset: - - '183' - x-ratelimit-used: - - '6' - x-ua-compatible: - - IE=edge - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Cookie: - - csv=1; edgebucket=R5kcDw7QjgxxWJEznS; loid=0000000000edkcdvnr.2.1630959355267.Z0FBQUFBQmhObmI3dlYzVktBdWRhMi0yZloyRnhkNV93ZFY5eS1YMjNNRi1tSUJjWC01SER6SmN3R0RrVGdYcGN5WExXRUtQcEtsNWdwQXQyeXQyUUN1UmN0Z2xyRkNYcHExV2xTeEZqM004MUQ5RV9CNVoyYUpkVHVIOU1GRFhHcm94ZjU3dERJdUM; - session_tracker=rhfglgfbfcbqimjrmb.0.1630964626386.Z0FBQUFBQmhOb3VTbUVBNGR3ZVowd2ZLVzRrTlk4WmJKS0hIRFZESEgzaFZfNFNKZDJXYVc1SDh1OGlDWFdLVVVtX29qSDJSeTBNYk9zVmxkbmtESDFPWEpTSGo0TEJGRldaYjl5V1pVTGpSc19vd01vSXZ1eGhYdjZlOURWWEw4Ti1kcE42X2hiNUY - User-Agent: - - 'python: PMAW v2 endpoint testing (by u/potato-sword) PRAW/7.4.0 prawcore/2.3.0' - method: GET - uri: https://oauth.reddit.com/api/info/?id=t1_gjacwx5%2Ct1_gjad2l6%2Ct1_gjadatw%2Ct1_gjadc7w%2Ct1_gjadcwh%2Ct1_gjadgd7%2Ct1_gjadlbc%2Ct1_gjadnoc%2Ct1_gjadog1%2Ct1_gjadphb%2Ct1_gjadtz3%2Ct1_gjaduck%2Ct1_gjadxa0%2Ct1_gjaeb3p%2Ct1_gjaeb5o%2Ct1_gjaeg5d%2Ct1_gjaegdn%2Ct1_gjaemkt%2Ct1_gjaenva%2Ct1_gjaerpm%2Ct1_gjaex2y%2Ct1_gjaf5nv%2Ct1_gjaim0d%2Ct1_gjapx5s%2Ct1_gjaqruo%2Ct1_gjarqic%2Ct1_h49ixux%2Ct1_gjac5fb%2Ct1_gjacdy5%2Ct1_gjaco45%2Ct1_gjasj4f%2Ct1_gjbxfeg%2Ct1_gjac9d6%2Ct1_gjacn1r%2Ct1_gjaocmg%2Ct1_gjb2jsj%2Ct1_gjbisrw%2Ct1_gjbjbk8%2Ct1_gjaciiq%2Ct1_gjacll6%2Ct1_gjacnpu%2Ct1_gjad0li%2Ct1_gjad2rq%2Ct1_gjahtqa%2Ct1_gjahz69%2Ct1_gjaimh4%2Ct1_gjaip2p%2Ct1_gjaixlq%2Ct1_gjaj41x%2Ct1_gjak02t%2Ct1_gjaxv70%2Ct1_gjay8xy%2Ct1_gjb8kbs%2Ct1_gjbwke7%2Ct1_gjc0n8u%2Ct1_gjc0ran%2Ct1_gja9pzd%2Ct1_gja9q0l%2Ct1_gjabeoy%2Ct1_gjacf5k%2Ct1_gjad8x6%2Ct1_gjaes65%2Ct1_gjagszp%2Ct1_gjcntcq%2Ct1_gja8u8b%2Ct1_gja7tcu&raw_json=1 - response: - body: - string: !!binary | - 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 - 8C03+pb44ECMJKnHsv773/8PGqp3bFF4AgA= - headers: - Accept-Ranges: - - bytes - Connection: - - keep-alive - Content-Length: - - '17354' - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 06 Sep 2021 21:44:07 GMT - Server: - - snooserv - Set-Cookie: - - session_tracker=rhfglgfbfcbqimjrmb.0.1630964646909.Z0FBQUFBQmhOb3VuTkhnNUV1UWQ5NEJnc0c3WEZhZWktNm90NVJZUUc0XzVrZEZQNElBbGVYbzI1dzVBQmVUVmVkbmNPaFVzZEJzR3VxZDBQWlIxSVFKMVl3QkJUMVFTa0lzQWh0VnhHdHQwMTNELTVoTEs5a0VHSG8zV3IzeHFRRkd3ckM4c2JGVEY; - Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Sep-2021 23:44:07 - GMT; secure; SameSite=None; Secure - Strict-Transport-Security: - - max-age=15552000; includeSubDomains; preload - Vary: - - accept-encoding - Via: - - 1.1 varnish - X-Clacks-Overhead: - - GNU Terry Pratchett - X-Moose: - - majestic - access-control-allow-origin: - - '*' - access-control-expose-headers: - - X-Moose - cache-control: - - max-age=0, must-revalidate - content-encoding: - - gzip - x-content-type-options: - - nosniff - x-frame-options: - - SAMEORIGIN - x-ratelimit-remaining: - - '298' - x-ratelimit-reset: - - '354' - x-ratelimit-used: - - '2' - x-ua-compatible: - - IE=edge - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -version: 1 diff --git a/cassettes/test_submission_comment_ids_search_mem_safe b/cassettes/test_submission_comment_ids_search_mem_safe deleted file mode 100644 index 6191eba..0000000 --- a/cassettes/test_submission_comment_ids_search_mem_safe +++ /dev/null @@ -1,430 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.25.1 - method: GET - uri: https://api.pushshift.io/reddit/submission/comment_ids/kxi2w8 - response: - body: - string: !!binary | - H4sIAAAAAAAAA2XQuw6CMACF4Z2naDo7IFiJvoph6EULQi/UAlXju5uwcTqeb/pzvgUhhFDFI6dX - ctvWJvrJ5ZoYPexIVeMZiccVSTY5rR2SVg3SKCSSdRk5fUTynUCKnxpplgNS4iXQXdQ+I+aQNFMZ - KYtkhohkF44UvEFK1RvowewC1JsSI3xiL6ApzFgfpn73ane69GlOdJO2+P0Bm838pRcCAAA= - headers: - CF-Cache-Status: - - EXPIRED - CF-RAY: - - 68aac0734be1546d-YYZ - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 06 Sep 2021 21:22:17 GMT - Expect-CT: - - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" - Last-Modified: - - Mon, 06 Sep 2021 21:22:05 GMT - NEL: - - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' - Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=kgXb4iMGgGB0M5nxrFB4Phs%2BjngXYp1%2FQIAuC%2Brcv5FvwBbblFqVhO5wk2eZLncR4fZBgFqTS%2FMt3eqbZIgqMeQ9TwpRzNCqel7A9Pc53QlfNuPh27si%2FQKDHJCqkhVPGLs5"}],"group":"cf-nel","max_age":604800}' - Server: - - cloudflare - Transfer-Encoding: - - chunked - Vary: - - Accept-Encoding - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; - ma=86400 - cache-control: - - public, max-age=1, s-maxage=1 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.25.1 - method: GET - uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhm7b - response: - body: - string: !!binary | - H4sIAAAAAAAAA6vmUlBQUFBKSSxJVLJSiAbzwCLpWYmWBVUpSjqoQoUGOWhCSan5lWhCyWmm2WhC - KRYVZmhCqcVmpmhC6cVVBahCyXklyYVKYJFYrloAdvPG464AAAA= - headers: - CF-Cache-Status: - - EXPIRED - CF-RAY: - - 68aac09f0c9e549d-YYZ - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 06 Sep 2021 21:22:25 GMT - Expect-CT: - - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" - Last-Modified: - - Mon, 06 Sep 2021 21:22:12 GMT - NEL: - - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' - Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=XYSedK8u33nu7BBLZLAVuPiwYkzNsGuVOwj2B3cqd%2Fko9gk2F7%2BUxqAfRsQKPKdzSQSsxdm1EBsBcPbCaKOTQ0D0ALOfA%2B0CohPoeGGmDsXO1bIpMX7HNJX6976Q%2FKOJAYHf"}],"group":"cf-nel","max_age":604800}' - Server: - - cloudflare - Vary: - - Accept-Encoding - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; - ma=86400 - cache-control: - - public, max-age=1, s-maxage=1 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.25.1 - method: GET - uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhwh0 - response: - body: - string: !!binary | - H4sIAAAAAAAAA6vmUlBQUFBKSSxJVLJSiAbzwCLpWYn5ybnpSjrIQklGWcVZaEKZxUXlaEJZSdkW - SmCRWK5aAIGijjJiAAAA - headers: - CF-Cache-Status: - - EXPIRED - CF-RAY: - - 68aac092996d4004-YYZ - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 06 Sep 2021 21:22:25 GMT - Expect-CT: - - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" - Last-Modified: - - Mon, 06 Sep 2021 21:22:11 GMT - NEL: - - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' - Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=XmyH%2BuI%2Fw7tvv8%2FFOMUU1K0XUad5i6VezZRoZKLxD9Kcn1Bp9R5cVEpXfDx7uASLl%2F047svnil4lERIsRI3TGCTB5u6klYGVieEgAHB%2B4fUiuHwBWrRUFV%2Fj4Ub1ZwxNsND%2B"}],"group":"cf-nel","max_age":604800}' - Server: - - cloudflare - Vary: - - Accept-Encoding - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; - ma=86400 - cache-control: - - public, max-age=1, s-maxage=1 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.25.1 - method: GET - uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhv53 - response: - body: - string: !!binary | - H4sIAAAAAAAAA13MsQ6CMBRG4Z2nuOnMUBsC1VcxDhcwUlqbgkWLxHc36dZ/PN9wjoqISIwcWVzo - mivLY+bBmEXUJTnXIvmwAY3SGSS14muKCyN92zOQeU4NUlABKTncz80pAVmpIlB6dxJo12kvqde2 - fwF97L0raZBeb0gre5HlVv3+Po7oeGwBAAA= - headers: - CF-Cache-Status: - - EXPIRED - CF-RAY: - - 68aac098ec0454a9-YYZ - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 06 Sep 2021 21:22:25 GMT - Expect-CT: - - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" - Last-Modified: - - Mon, 06 Sep 2021 21:22:11 GMT - NEL: - - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' - Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=NJgbx1pPPWK8tzxMu0uieClFHgmWvvXk9yC5fFJxE9dF4l71dJ8hbSQTjyhZwE6KmIxOirC99v7p3zW5y10w9v9YI2KLUE56leAMmYpeE6rFP5EhUiBeBSlvxIfYCeDsuc42"}],"group":"cf-nel","max_age":604800}' - Server: - - cloudflare - Vary: - - Accept-Encoding - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; - ma=86400 - cache-control: - - public, max-age=1, s-maxage=1 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.25.1 - method: GET - uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhm3s - response: - body: - string: "{\n \"data\": []\n}" - headers: - Accept-Ranges: - - bytes - CF-Cache-Status: - - EXPIRED - CF-RAY: - - 68aac0a54ca6548b-YYZ - Connection: - - keep-alive - Content-Length: - - '18' - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 06 Sep 2021 21:22:25 GMT - Expect-CT: - - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" - Last-Modified: - - Mon, 06 Sep 2021 21:22:13 GMT - NEL: - - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' - Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=4j5NSVVrQHyUAtVcxHg8iapHfC4xajuZAc8g%2B3jZSixUESwdBDe3sPUD9t0Mz6LVI6QfCt8Btwyq%2FisCLoS7H%2BVGjuShcfvH874KdGcQOMChMTaWVuQugTO%2Fhumes8gcuNXI"}],"group":"cf-nel","max_age":604800}' - Server: - - cloudflare - Vary: - - Accept-Encoding - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; - ma=86400 - cache-control: - - public, max-age=1, s-maxage=1 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.25.1 - method: GET - uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhg37 - response: - body: - string: "{\n \"data\": [\n \"gja8u8b\"\n ]\n}" - headers: - Accept-Ranges: - - bytes - CF-Cache-Status: - - EXPIRED - CF-RAY: - - 68aac0ab8b7053fb-YYZ - Connection: - - keep-alive - Content-Length: - - '41' - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 06 Sep 2021 21:22:26 GMT - Expect-CT: - - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" - Last-Modified: - - Mon, 06 Sep 2021 21:22:14 GMT - NEL: - - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' - Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=x7z9etb3Lv3R9lpy5AMzsiv0pR1Qo65TBh%2F%2F6pUducQJV%2BddbiifW%2BlQ9I5JZgQLVZxRcDEzZZsByWgTTcG7CrR%2Bb6KuwbG3WYaN28BrgxoQZl5UrHf0sT8Ivn1A0dIraqGv"}],"group":"cf-nel","max_age":604800}' - Server: - - cloudflare - Vary: - - Accept-Encoding - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; - ma=86400 - cache-control: - - public, max-age=1, s-maxage=1 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.25.1 - method: GET - uri: https://api.pushshift.io/reddit/submission/comment_ids/kxhak9 - response: - body: - string: "{\n \"data\": [\n \"gja7tcu\"\n ]\n}" - headers: - Accept-Ranges: - - bytes - CF-Cache-Status: - - EXPIRED - CF-RAY: - - 68aac0b1ca7ccab4-YYZ - Connection: - - keep-alive - Content-Length: - - '41' - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 06 Sep 2021 21:22:27 GMT - Expect-CT: - - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" - Last-Modified: - - Mon, 06 Sep 2021 21:22:15 GMT - NEL: - - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' - Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ONpseJcSyq%2F2P8T7Thbsf0JKAXTyuRNP3uN1njwRczN68Z0Y8u26JS5KinkcUncum1Y32QSYMhUACvLQg%2FdZ2ku809ebCuY9JutqB58Oszxzd%2FfHl%2BlOT8agz7keAOMtNy%2Fd"}],"group":"cf-nel","max_age":604800}' - Server: - - cloudflare - Vary: - - Accept-Encoding - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; - ma=86400 - cache-control: - - public, max-age=1, s-maxage=1 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.25.1 - method: GET - uri: https://api.pushshift.io/reddit/submission/comment_ids/kxi2g1 - response: - body: - string: "{\n \"data\": [\n \"gjacn1r\"\n ]\n}" - headers: - Accept-Ranges: - - bytes - CF-Cache-Status: - - EXPIRED - CF-RAY: - - 68aaca046904f98d-YYZ - Connection: - - keep-alive - Content-Length: - - '41' - Content-Type: - - application/json; charset=UTF-8 - Date: - - Mon, 06 Sep 2021 21:28:50 GMT - Expect-CT: - - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" - Last-Modified: - - Mon, 06 Sep 2021 21:28:38 GMT - NEL: - - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}' - Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=jOLEowvySlu1BZBsekUFZ650ytyplKbB5cJw50I7oOrerRy0egKqqEZAGHK62lBk2b6QO5OBDvJIb9C%2BG2%2FFLHt8ocIYZ26zDb2VaLoLaMpuaPAVCVXYT%2BuKadA9z%2FqgY9f4"}],"group":"cf-nel","max_age":604800}' - Server: - - cloudflare - Vary: - - Accept-Encoding - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; - ma=86400 - cache-control: - - public, max-age=1, s-maxage=1 - status: - code: 200 - message: OK -version: 1